From c89610ca309d18d12d766aa1e100cba60fdda645 Mon Sep 17 00:00:00 2001 From: brandonspark Date: Wed, 29 Apr 2026 17:36:38 -0700 Subject: [PATCH] Release files generated by ocaml-tree-sitter 9244700. --- .../src/semgrep-cpp/grammar.js | 49 +- fyi/versions | 46 +- lib/Boilerplate.ml | 544 +- lib/CST.ml | 210 +- lib/Parse.ml | 907 +- lib/parser.c | 886746 +++++++-------- 6 files changed, 426253 insertions(+), 462249 deletions(-) diff --git a/fyi/semgrep-grammars/src/semgrep-cpp/grammar.js b/fyi/semgrep-grammars/src/semgrep-cpp/grammar.js index 61d8eed..2093f29 100644 --- a/fyi/semgrep-grammars/src/semgrep-cpp/grammar.js +++ b/fyi/semgrep-grammars/src/semgrep-cpp/grammar.js @@ -33,7 +33,10 @@ module.exports = grammar(base_grammar, { // Typed metavariables - semgrep_metavar: $ => /\$[A-Z_][A-Z_0-9]*/, + // Token precedence so the lexer prefers `semgrep_metavar` over the + // `identifier` rule (whose regex also accepts a leading `$`) when + // the surrounding rule allows a metavar (e.g. inside an enum body). + semgrep_metavar: $ => token(prec(1, /\$[A-Z_][A-Z_0-9]*/)), semgrep_typed_metavar: $ => seq( @@ -99,6 +102,50 @@ module.exports = grammar(base_grammar, { $.semgrep_ellipsis ), + // Allow `...` and `$X` inside class/struct bodies, e.g. + // class C { ... } + // struct S { $X } + // The lexer prefers `semgrep_metavar` over `identifier` thanks to + // the token precedence on `semgrep_metavar`, so a bare `$X` ends + // up here rather than as a malformed field_declaration. + _field_declaration_list_item: ($, previous) => choice( + previous, + $.semgrep_ellipsis, + $.semgrep_metavar + ), + + // Allow `...` and `$X` inside enum bodies, e.g. + // enum E { ... } + // The upstream rule is a `seq` so we must override it wholesale + // (copied from tree-sitter-c with semgrep alternatives added). + enumerator_list: $ => seq( + '{', + repeat(choice( + seq($.enumerator, ','), + alias($.preproc_if_in_enumerator_list, $.preproc_if), + alias($.preproc_ifdef_in_enumerator_list, $.preproc_ifdef), + seq($.preproc_call, ','), + seq($.semgrep_ellipsis, ','), + seq($.semgrep_metavar, ','), + )), + optional(choice( + $.enumerator, + alias($.preproc_if_in_enumerator_list_no_comma, $.preproc_if), + alias($.preproc_ifdef_in_enumerator_list_no_comma, $.preproc_ifdef), + $.preproc_call, + $.semgrep_ellipsis, + $.semgrep_metavar, + )), + '}', + ), + + // Allow `operator $OP` as an operator name, e.g. + // T operator $OP(T x); + operator_name: ($, previous) => choice( + previous, + prec(1, seq('operator', $.semgrep_metavar)), + ), + // So we prefer to parse a unary left fold for // 1 + ... // rather than the addition of an ellipsis diff --git a/fyi/versions b/fyi/versions index 625d674..99a7523 100644 --- a/fyi/versions +++ b/fyi/versions @@ -2,11 +2,11 @@ File: semgrep-grammars/src/tree-sitter-c/LICENSE Git repo name: tree-sitter-c Latest commit in repo: ecdd500806cf8154d944344f1df6418b32e0e9a7 Last change in file: - commit ecdd500806cf8154d944344f1df6418b32e0e9a7 - Author: Brandon Wu <49291449+brandonspark@users.noreply.github.com> - Date: Fri Jan 26 12:20:17 2024 -0800 + commit af2904ca831cbb33cdc3bb7bacc2ed9840bd0a3c + Author: Max Brunsfeld + Date: Fri Sep 5 23:53:51 2014 -0700 - fix: properly suffix elifdef + Initial commit --- File: semgrep-grammars/src/tree-sitter-c/grammar.js Git repo name: tree-sitter-c @@ -22,11 +22,11 @@ File: semgrep-grammars/src/tree-sitter-cpp/LICENSE Git repo name: tree-sitter-cpp Latest commit in repo: 4ca37be8e70e5a40ae95688bec56b886ba945888 Last change in file: - commit 4ca37be8e70e5a40ae95688bec56b886ba945888 - Author: Brandon Wu <49291449+brandonspark@users.noreply.github.com> - Date: Fri Jan 26 08:33:26 2024 -0800 + commit d8966822015417d060ffaafd95a71a49dd28ec99 + Author: Max Brunsfeld + Date: Fri Jan 15 11:04:19 2016 -0800 - disambiguate fold vs parenthesized assignment (#239) + Initial commit --- File: semgrep-grammars/src/tree-sitter-cpp/grammar.js Git repo name: tree-sitter-cpp @@ -39,12 +39,30 @@ Last change in file: disambiguate fold vs parenthesized assignment (#239) --- File: semgrep-grammars/src/semgrep-cpp/grammar.js -Git repo name: ocaml-tree-sitter-semgrep -Latest commit in repo: 091f5438fc0c15b80217f00e5b94ec0e55517383 +Git repo name: agent-aab45847a71009554 +Latest commit in repo: 9244700fc8ed0c101f640a33c6f4c115ad73d3b5 Last change in file: - commit 5f3836d894376e97f7582fd32c2bd01b98697886 - Author: brandonspark - Date: Mon Jan 29 15:03:38 2024 -0800 + commit 9244700fc8ed0c101f640a33c6f4c115ad73d3b5 + Author: brandonspark + Date: Wed Apr 29 17:34:00 2026 -0700 - remove redundant choice + fix(cpp): allow Semgrep patterns in class/struct/enum bodies and operator overloads + + Augments the C++ grammar so canonical Semgrep patterns parse cleanly: + + - LANG-486: `...` and `$X` inside class/struct bodies (via + `_field_declaration_list_item`) and enum bodies (via a wholesale + override of `enumerator_list`, since the upstream rule is a `seq`). + - LANG-497: `operator $OP` as an operator name (via a `previous`-style + augmentation of `operator_name`). + + The `semgrep_metavar` token gets a precedence bump so the lexer prefers + it over `identifier` (whose regex also accepts a leading `$`) when both + are valid at a position; this is what lets a bare `$X` parse as a + metavariable inside enum/struct bodies instead of as a malformed + declaration or enumerator. + + Adds 6 corpus tests covering the minimal ticket repros. + + Co-Authored-By: Claude Opus 4.7 (1M context) --- diff --git a/lib/Boilerplate.ml b/lib/Boilerplate.ml index c682872..d441d84 100644 --- a/lib/Boilerplate.ml +++ b/lib/Boilerplate.ml @@ -387,7 +387,7 @@ let map_break_statement (env : env) ((v1, v2) : CST.break_statement) = R.Tuple [v1; v2] let map_semgrep_metavar (env : env) (tok : CST.semgrep_metavar) = - (* pattern \$[A-Z_][A-Z_0-9]* *) token env tok + (* semgrep_metavar *) token env tok let map_imm_tok_pat_36637e2 (env : env) (tok : CST.imm_tok_pat_36637e2) = (* pattern "[^\\n']" *) token env tok @@ -735,193 +735,202 @@ let map_field_identifier (env : env) (x : CST.field_identifier) = ) ) -let map_operator_name (env : env) ((v1, v2) : CST.operator_name) = - let v1 = (* "operator" *) token env v1 in - let v2 = - (match v2 with - | `Co_await tok -> R.Case ("Co_await", - (* "co_await" *) token env tok - ) - | `PLUS tok -> R.Case ("PLUS", - (* "+" *) token env tok - ) - | `DASH tok -> R.Case ("DASH", - (* "-" *) token env tok - ) - | `STAR tok -> R.Case ("STAR", - (* "*" *) token env tok - ) - | `SLASH tok -> R.Case ("SLASH", - (* "/" *) token env tok - ) - | `PERC tok -> R.Case ("PERC", - (* "%" *) token env tok - ) - | `HAT tok -> R.Case ("HAT", - (* "^" *) token env tok - ) - | `AMP tok -> R.Case ("AMP", - (* "&" *) token env tok - ) - | `BAR tok -> R.Case ("BAR", - (* "|" *) token env tok - ) - | `TILDE tok -> R.Case ("TILDE", - (* "~" *) token env tok - ) - | `BANG tok -> R.Case ("BANG", - (* "!" *) token env tok - ) - | `EQ tok -> R.Case ("EQ", - (* "=" *) token env tok - ) - | `LT tok -> R.Case ("LT", - (* "<" *) token env tok - ) - | `GT tok -> R.Case ("GT", - (* ">" *) token env tok - ) - | `PLUSEQ tok -> R.Case ("PLUSEQ", - (* "+=" *) token env tok - ) - | `DASHEQ tok -> R.Case ("DASHEQ", - (* "-=" *) token env tok - ) - | `STAREQ tok -> R.Case ("STAREQ", - (* "*=" *) token env tok - ) - | `SLASHEQ tok -> R.Case ("SLASHEQ", - (* "/=" *) token env tok - ) - | `PERCEQ tok -> R.Case ("PERCEQ", - (* "%=" *) token env tok - ) - | `HATEQ tok -> R.Case ("HATEQ", - (* "^=" *) token env tok - ) - | `AMPEQ tok -> R.Case ("AMPEQ", - (* "&=" *) token env tok - ) - | `BAREQ tok -> R.Case ("BAREQ", - (* "|=" *) token env tok - ) - | `LTLT tok -> R.Case ("LTLT", - (* "<<" *) token env tok - ) - | `GTGT tok -> R.Case ("GTGT", - (* ">>" *) token env tok - ) - | `GTGTEQ tok -> R.Case ("GTGTEQ", - (* ">>=" *) token env tok - ) - | `LTLTEQ tok -> R.Case ("LTLTEQ", - (* "<<=" *) token env tok - ) - | `EQEQ tok -> R.Case ("EQEQ", - (* "==" *) token env tok - ) - | `BANGEQ tok -> R.Case ("BANGEQ", - (* "!=" *) token env tok - ) - | `LTEQ tok -> R.Case ("LTEQ", - (* "<=" *) token env tok - ) - | `GTEQ tok -> R.Case ("GTEQ", - (* ">=" *) token env tok - ) - | `LTEQGT tok -> R.Case ("LTEQGT", - (* "<=>" *) token env tok - ) - | `AMPAMP tok -> R.Case ("AMPAMP", - (* "&&" *) token env tok - ) - | `BARBAR tok -> R.Case ("BARBAR", - (* "||" *) token env tok - ) - | `PLUSPLUS tok -> R.Case ("PLUSPLUS", - (* "++" *) token env tok - ) - | `DASHDASH tok -> R.Case ("DASHDASH", - (* "--" *) token env tok - ) - | `COMMA tok -> R.Case ("COMMA", - (* "," *) token env tok - ) - | `DASHGTSTAR tok -> R.Case ("DASHGTSTAR", - (* "->*" *) token env tok - ) - | `DASHGT tok -> R.Case ("DASHGT", - (* "->" *) token env tok - ) - | `LPARRPAR tok -> R.Case ("LPARRPAR", - (* "()" *) token env tok - ) - | `LBRACKRBRACK tok -> R.Case ("LBRACKRBRACK", - (* "[]" *) token env tok - ) - | `Xor tok -> R.Case ("Xor", - (* "xor" *) token env tok - ) - | `Bitand tok -> R.Case ("Bitand", - (* "bitand" *) token env tok - ) - | `Bitor tok -> R.Case ("Bitor", - (* "bitor" *) token env tok - ) - | `Compl tok -> R.Case ("Compl", - (* "compl" *) token env tok - ) - | `Not tok -> R.Case ("Not", - (* "not" *) token env tok - ) - | `Xor_eq tok -> R.Case ("Xor_eq", - (* "xor_eq" *) token env tok - ) - | `And_eq tok -> R.Case ("And_eq", - (* "and_eq" *) token env tok - ) - | `Or_eq tok -> R.Case ("Or_eq", - (* "or_eq" *) token env tok - ) - | `Not_eq tok -> R.Case ("Not_eq", - (* "not_eq" *) token env tok - ) - | `And tok -> R.Case ("And", - (* "and" *) token env tok - ) - | `Or tok -> R.Case ("Or", - (* "or" *) token env tok - ) - | `Choice_new_opt_LBRACKRBRACK (v1, v2) -> R.Case ("Choice_new_opt_LBRACKRBRACK", - let v1 = - (match v1 with - | `New tok -> R.Case ("New", - (* "new" *) token env tok - ) - | `Delete tok -> R.Case ("Delete", - (* "delete" *) token env tok - ) +let map_operator_name (env : env) (x : CST.operator_name) = + (match x with + | `Op_choice_co_await (v1, v2) -> R.Case ("Op_choice_co_await", + let v1 = (* "operator" *) token env v1 in + let v2 = + (match v2 with + | `Co_await tok -> R.Case ("Co_await", + (* "co_await" *) token env tok ) - in - let v2 = - (match v2 with - | Some tok -> R.Option (Some ( - (* "[]" *) token env tok - )) - | None -> R.Option None) - in - R.Tuple [v1; v2] - ) - | `DQUOTDQUOT_id (v1, v2) -> R.Case ("DQUOTDQUOT_id", - let v1 = (* "\"\"" *) token env v1 in - let v2 = - (* pattern \$?(\p{XID_Start}|_|\\u[0-9A-Fa-f]{4}|\\U[0-9A-Fa-f]{8})(\p{XID_Continue}|\\u[0-9A-Fa-f]{4}|\\U[0-9A-Fa-f]{8})* *) token env v2 - in - R.Tuple [v1; v2] - ) + | `PLUS tok -> R.Case ("PLUS", + (* "+" *) token env tok + ) + | `DASH tok -> R.Case ("DASH", + (* "-" *) token env tok + ) + | `STAR tok -> R.Case ("STAR", + (* "*" *) token env tok + ) + | `SLASH tok -> R.Case ("SLASH", + (* "/" *) token env tok + ) + | `PERC tok -> R.Case ("PERC", + (* "%" *) token env tok + ) + | `HAT tok -> R.Case ("HAT", + (* "^" *) token env tok + ) + | `AMP tok -> R.Case ("AMP", + (* "&" *) token env tok + ) + | `BAR tok -> R.Case ("BAR", + (* "|" *) token env tok + ) + | `TILDE tok -> R.Case ("TILDE", + (* "~" *) token env tok + ) + | `BANG tok -> R.Case ("BANG", + (* "!" *) token env tok + ) + | `EQ tok -> R.Case ("EQ", + (* "=" *) token env tok + ) + | `LT tok -> R.Case ("LT", + (* "<" *) token env tok + ) + | `GT tok -> R.Case ("GT", + (* ">" *) token env tok + ) + | `PLUSEQ tok -> R.Case ("PLUSEQ", + (* "+=" *) token env tok + ) + | `DASHEQ tok -> R.Case ("DASHEQ", + (* "-=" *) token env tok + ) + | `STAREQ tok -> R.Case ("STAREQ", + (* "*=" *) token env tok + ) + | `SLASHEQ tok -> R.Case ("SLASHEQ", + (* "/=" *) token env tok + ) + | `PERCEQ tok -> R.Case ("PERCEQ", + (* "%=" *) token env tok + ) + | `HATEQ tok -> R.Case ("HATEQ", + (* "^=" *) token env tok + ) + | `AMPEQ tok -> R.Case ("AMPEQ", + (* "&=" *) token env tok + ) + | `BAREQ tok -> R.Case ("BAREQ", + (* "|=" *) token env tok + ) + | `LTLT tok -> R.Case ("LTLT", + (* "<<" *) token env tok + ) + | `GTGT tok -> R.Case ("GTGT", + (* ">>" *) token env tok + ) + | `GTGTEQ tok -> R.Case ("GTGTEQ", + (* ">>=" *) token env tok + ) + | `LTLTEQ tok -> R.Case ("LTLTEQ", + (* "<<=" *) token env tok + ) + | `EQEQ tok -> R.Case ("EQEQ", + (* "==" *) token env tok + ) + | `BANGEQ tok -> R.Case ("BANGEQ", + (* "!=" *) token env tok + ) + | `LTEQ tok -> R.Case ("LTEQ", + (* "<=" *) token env tok + ) + | `GTEQ tok -> R.Case ("GTEQ", + (* ">=" *) token env tok + ) + | `LTEQGT tok -> R.Case ("LTEQGT", + (* "<=>" *) token env tok + ) + | `AMPAMP tok -> R.Case ("AMPAMP", + (* "&&" *) token env tok + ) + | `BARBAR tok -> R.Case ("BARBAR", + (* "||" *) token env tok + ) + | `PLUSPLUS tok -> R.Case ("PLUSPLUS", + (* "++" *) token env tok + ) + | `DASHDASH tok -> R.Case ("DASHDASH", + (* "--" *) token env tok + ) + | `COMMA tok -> R.Case ("COMMA", + (* "," *) token env tok + ) + | `DASHGTSTAR tok -> R.Case ("DASHGTSTAR", + (* "->*" *) token env tok + ) + | `DASHGT tok -> R.Case ("DASHGT", + (* "->" *) token env tok + ) + | `LPARRPAR tok -> R.Case ("LPARRPAR", + (* "()" *) token env tok + ) + | `LBRACKRBRACK tok -> R.Case ("LBRACKRBRACK", + (* "[]" *) token env tok + ) + | `Xor tok -> R.Case ("Xor", + (* "xor" *) token env tok + ) + | `Bitand tok -> R.Case ("Bitand", + (* "bitand" *) token env tok + ) + | `Bitor tok -> R.Case ("Bitor", + (* "bitor" *) token env tok + ) + | `Compl tok -> R.Case ("Compl", + (* "compl" *) token env tok + ) + | `Not tok -> R.Case ("Not", + (* "not" *) token env tok + ) + | `Xor_eq tok -> R.Case ("Xor_eq", + (* "xor_eq" *) token env tok + ) + | `And_eq tok -> R.Case ("And_eq", + (* "and_eq" *) token env tok + ) + | `Or_eq tok -> R.Case ("Or_eq", + (* "or_eq" *) token env tok + ) + | `Not_eq tok -> R.Case ("Not_eq", + (* "not_eq" *) token env tok + ) + | `And tok -> R.Case ("And", + (* "and" *) token env tok + ) + | `Or tok -> R.Case ("Or", + (* "or" *) token env tok + ) + | `Choice_new_opt_LBRACKRBRACK (v1, v2) -> R.Case ("Choice_new_opt_LBRACKRBRACK", + let v1 = + (match v1 with + | `New tok -> R.Case ("New", + (* "new" *) token env tok + ) + | `Delete tok -> R.Case ("Delete", + (* "delete" *) token env tok + ) + ) + in + let v2 = + (match v2 with + | Some tok -> R.Option (Some ( + (* "[]" *) token env tok + )) + | None -> R.Option None) + in + R.Tuple [v1; v2] + ) + | `DQUOTDQUOT_id (v1, v2) -> R.Case ("DQUOTDQUOT_id", + let v1 = (* "\"\"" *) token env v1 in + let v2 = + (* pattern \$?(\p{XID_Start}|_|\\u[0-9A-Fa-f]{4}|\\U[0-9A-Fa-f]{8})(\p{XID_Continue}|\\u[0-9A-Fa-f]{4}|\\U[0-9A-Fa-f]{8})* *) token env v2 + in + R.Tuple [v1; v2] + ) + ) + in + R.Tuple [v1; v2] ) - in - R.Tuple [v1; v2] + | `Op_semg_meta (v1, v2) -> R.Case ("Op_semg_meta", + let v1 = (* "operator" *) token env v1 in + let v2 = (* semgrep_metavar *) token env v2 in + R.Tuple [v1; v2] + ) + ) let map_type_parameter_declaration (env : env) ((v1, v2) : CST.type_parameter_declaration) = let v1 = map_anon_choice_type_a2fe5d4 env v1 in @@ -2983,13 +2992,23 @@ and map_enumerator_list (env : env) ((v1, v2, v3, v4) : CST.enumerator_list) = let v2 = (* "," *) token env v2 in R.Tuple [v1; v2] ) + | `Semg_ellips_COMMA (v1, v2) -> R.Case ("Semg_ellips_COMMA", + let v1 = (* "..." *) token env v1 in + let v2 = (* "," *) token env v2 in + R.Tuple [v1; v2] + ) + | `Semg_meta_COMMA (v1, v2) -> R.Case ("Semg_meta_COMMA", + let v1 = (* semgrep_metavar *) token env v1 in + let v2 = (* "," *) token env v2 in + R.Tuple [v1; v2] + ) ) ) v2) in let v3 = (match v3 with - | Some v1 -> R.Option (Some ( - (match v1 with + | Some x -> R.Option (Some ( + (match x with | `Enum x -> R.Case ("Enum", map_enumerator env x ) @@ -3002,6 +3021,12 @@ and map_enumerator_list (env : env) ((v1, v2, v3, v4) : CST.enumerator_list) = | `Prep_call x -> R.Case ("Prep_call", map_preproc_call env x ) + | `Semg_ellips tok -> R.Case ("Semg_ellips", + (* "..." *) token env tok + ) + | `Semg_meta tok -> R.Case ("Semg_meta", + (* semgrep_metavar *) token env tok + ) ) )) | None -> R.Option None) @@ -3282,80 +3307,75 @@ and map_field_declaration_list (env : env) ((v1, v2, v3) : CST.field_declaration and map_field_declaration_list_item (env : env) (x : CST.field_declaration_list_item) = (match x with - | `Choice_field_decl x -> R.Case ("Choice_field_decl", + | `Choice_choice_field_decl x -> R.Case ("Choice_choice_field_decl", (match x with - | `Field_decl x -> R.Case ("Field_decl", - map_field_declaration env x + | `Choice_field_decl x -> R.Case ("Choice_field_decl", + (match x with + | `Field_decl x -> R.Case ("Field_decl", + map_field_declaration env x + ) + | `Prep_def x -> R.Case ("Prep_def", + map_preproc_def env x + ) + | `Prep_func_def x -> R.Case ("Prep_func_def", + map_preproc_function_def env x + ) + | `Prep_call x -> R.Case ("Prep_call", + map_preproc_call env x + ) + | `Prep_if_in_field_decl_list x -> R.Case ("Prep_if_in_field_decl_list", + map_preproc_if_in_field_declaration_list env x + ) + | `Prep_ifdef_in_field_decl_list x -> R.Case ("Prep_ifdef_in_field_decl_list", + map_preproc_ifdef_in_field_declaration_list env x + ) + ) ) - | `Prep_def x -> R.Case ("Prep_def", - map_preproc_def env x + | `Temp_decl x -> R.Case ("Temp_decl", + map_template_declaration env x ) - | `Prep_func_def x -> R.Case ("Prep_func_def", - map_preproc_function_def env x + | `Inline_meth_defi x -> R.Case ("Inline_meth_defi", + map_inline_method_definition env x ) - | `Prep_call x -> R.Case ("Prep_call", - map_preproc_call env x + | `Cons_or_dest_defi x -> R.Case ("Cons_or_dest_defi", + map_constructor_or_destructor_definition env x ) - | `Prep_if_in_field_decl_list x -> R.Case ("Prep_if_in_field_decl_list", - map_preproc_if_in_field_declaration_list env x + | `Cons_or_dest_decl x -> R.Case ("Cons_or_dest_decl", + map_constructor_or_destructor_declaration env x ) - | `Prep_ifdef_in_field_decl_list x -> R.Case ("Prep_ifdef_in_field_decl_list", - map_preproc_ifdef_in_field_declaration_list env x + | `Op_cast_defi x -> R.Case ("Op_cast_defi", + map_operator_cast_definition env x ) - ) - ) - | `Temp_decl x -> R.Case ("Temp_decl", - map_template_declaration env x - ) - | `Inline_meth_defi (v1, v2, v3) -> R.Case ("Inline_meth_defi", - let v1 = map_declaration_specifiers env v1 in - let v2 = map_field_declarator env v2 in - let v3 = - (match v3 with - | `Choice_comp_stmt x -> R.Case ("Choice_comp_stmt", - map_anon_choice_comp_stmt_e6a11e2 env x - ) - | `Defa_meth_clause x -> R.Case ("Defa_meth_clause", - map_default_method_clause env x - ) - | `Delete_meth_clause x -> R.Case ("Delete_meth_clause", - map_delete_method_clause env x - ) + | `Op_cast_decl x -> R.Case ("Op_cast_decl", + map_operator_cast_declaration env x ) - in - R.Tuple [v1; v2; v3] - ) - | `Cons_or_dest_defi x -> R.Case ("Cons_or_dest_defi", - map_constructor_or_destructor_definition env x - ) - | `Cons_or_dest_decl x -> R.Case ("Cons_or_dest_decl", - map_constructor_or_destructor_declaration env x - ) - | `Op_cast_defi x -> R.Case ("Op_cast_defi", - map_operator_cast_definition env x - ) - | `Op_cast_decl x -> R.Case ("Op_cast_decl", - map_operator_cast_declaration env x - ) - | `Friend_decl x -> R.Case ("Friend_decl", - map_friend_declaration env x - ) - | `Access_spec_COLON (v1, v2) -> R.Case ("Access_spec_COLON", - let v1 = map_access_specifier env v1 in - let v2 = (* ":" *) token env v2 in - R.Tuple [v1; v2] - ) - | `Alias_decl x -> R.Case ("Alias_decl", - map_alias_declaration env x - ) - | `Using_decl x -> R.Case ("Using_decl", - map_using_declaration env x + | `Friend_decl x -> R.Case ("Friend_decl", + map_friend_declaration env x + ) + | `Access_spec_COLON (v1, v2) -> R.Case ("Access_spec_COLON", + let v1 = map_access_specifier env v1 in + let v2 = (* ":" *) token env v2 in + R.Tuple [v1; v2] + ) + | `Alias_decl x -> R.Case ("Alias_decl", + map_alias_declaration env x + ) + | `Using_decl x -> R.Case ("Using_decl", + map_using_declaration env x + ) + | `Type_defi x -> R.Case ("Type_defi", + map_type_definition env x + ) + | `Static_assert_decl x -> R.Case ("Static_assert_decl", + map_static_assert_declaration env x + ) + ) ) - | `Type_defi x -> R.Case ("Type_defi", - map_type_definition env x + | `Semg_ellips tok -> R.Case ("Semg_ellips", + (* "..." *) token env tok ) - | `Static_assert_decl x -> R.Case ("Static_assert_decl", - map_static_assert_declaration env x + | `Semg_meta tok -> R.Case ("Semg_meta", + (* semgrep_metavar *) token env tok ) ) @@ -3992,6 +4012,24 @@ and map_initializer_pair (env : env) (x : CST.initializer_pair) = ) ) +and map_inline_method_definition (env : env) ((v1, v2, v3) : CST.inline_method_definition) = + let v1 = map_declaration_specifiers env v1 in + let v2 = map_field_declarator env v2 in + let v3 = + (match v3 with + | `Choice_comp_stmt x -> R.Case ("Choice_comp_stmt", + map_anon_choice_comp_stmt_e6a11e2 env x + ) + | `Defa_meth_clause x -> R.Case ("Defa_meth_clause", + map_default_method_clause env x + ) + | `Delete_meth_clause x -> R.Case ("Delete_meth_clause", + map_delete_method_clause env x + ) + ) + in + R.Tuple [v1; v2; v3] + and map_labeled_statement (env : env) ((v1, v2, v3) : CST.labeled_statement) = let v1 = (* pattern \$?(\p{XID_Start}|_|\\u[0-9A-Fa-f]{4}|\\U[0-9A-Fa-f]{8})(\p{XID_Continue}|\\u[0-9A-Fa-f]{4}|\\U[0-9A-Fa-f]{8})* *) token env v1 @@ -4942,7 +4980,7 @@ and map_seh_try_statement (env : env) ((v1, v2, v3) : CST.seh_try_statement) = and map_semgrep_typed_metavar (env : env) ((v1, v2) : CST.semgrep_typed_metavar) = let v1 = map_type_descriptor env v1 in - let v2 = (* pattern \$[A-Z_][A-Z_0-9]* *) token env v2 in + let v2 = (* semgrep_metavar *) token env v2 in R.Tuple [v1; v2] and map_sizeof_expression (env : env) (x : CST.sizeof_expression) = diff --git a/lib/CST.ml b/lib/CST.ml index 665f977..4cacd88 100644 --- a/lib/CST.ml +++ b/lib/CST.ml @@ -162,7 +162,7 @@ type type_qualifier = [ type break_statement = (Token.t (* "break" *) * Token.t (* ";" *)) -type semgrep_metavar = Token.t (* pattern \$[A-Z_][A-Z_0-9]* *) +type semgrep_metavar = Token.t type imm_tok_pat_36637e2 = Token.t (* pattern "[^\\n']" *) @@ -339,70 +339,73 @@ type field_identifier = [ | `Semg_ellips of Token.t (* "..." *) ] -type operator_name = ( - Token.t (* "operator" *) - * [ - `Co_await of Token.t (* "co_await" *) - | `PLUS of Token.t (* "+" *) - | `DASH of Token.t (* "-" *) - | `STAR of Token.t (* "*" *) - | `SLASH of Token.t (* "/" *) - | `PERC of Token.t (* "%" *) - | `HAT of Token.t (* "^" *) - | `AMP of Token.t (* "&" *) - | `BAR of Token.t (* "|" *) - | `TILDE of Token.t (* "~" *) - | `BANG of Token.t (* "!" *) - | `EQ of Token.t (* "=" *) - | `LT of Token.t (* "<" *) - | `GT of Token.t (* ">" *) - | `PLUSEQ of Token.t (* "+=" *) - | `DASHEQ of Token.t (* "-=" *) - | `STAREQ of Token.t (* "*=" *) - | `SLASHEQ of Token.t (* "/=" *) - | `PERCEQ of Token.t (* "%=" *) - | `HATEQ of Token.t (* "^=" *) - | `AMPEQ of Token.t (* "&=" *) - | `BAREQ of Token.t (* "|=" *) - | `LTLT of Token.t (* "<<" *) - | `GTGT of Token.t (* ">>" *) - | `GTGTEQ of Token.t (* ">>=" *) - | `LTLTEQ of Token.t (* "<<=" *) - | `EQEQ of Token.t (* "==" *) - | `BANGEQ of Token.t (* "!=" *) - | `LTEQ of Token.t (* "<=" *) - | `GTEQ of Token.t (* ">=" *) - | `LTEQGT of Token.t (* "<=>" *) - | `AMPAMP of Token.t (* "&&" *) - | `BARBAR of Token.t (* "||" *) - | `PLUSPLUS of Token.t (* "++" *) - | `DASHDASH of Token.t (* "--" *) - | `COMMA of Token.t (* "," *) - | `DASHGTSTAR of Token.t (* "->*" *) - | `DASHGT of Token.t (* "->" *) - | `LPARRPAR of Token.t (* "()" *) - | `LBRACKRBRACK of Token.t (* "[]" *) - | `Xor of Token.t (* "xor" *) - | `Bitand of Token.t (* "bitand" *) - | `Bitor of Token.t (* "bitor" *) - | `Compl of Token.t (* "compl" *) - | `Not of Token.t (* "not" *) - | `Xor_eq of Token.t (* "xor_eq" *) - | `And_eq of Token.t (* "and_eq" *) - | `Or_eq of Token.t (* "or_eq" *) - | `Not_eq of Token.t (* "not_eq" *) - | `And of Token.t (* "and" *) - | `Or of Token.t (* "or" *) - | `Choice_new_opt_LBRACKRBRACK of ( - [ - `New of Token.t (* "new" *) - | `Delete of Token.t (* "delete" *) - ] - * Token.t (* "[]" *) option - ) - | `DQUOTDQUOT_id of (Token.t (* "\"\"" *) * identifier (*tok*)) - ] -) +type operator_name = [ + `Op_choice_co_await of ( + Token.t (* "operator" *) + * [ + `Co_await of Token.t (* "co_await" *) + | `PLUS of Token.t (* "+" *) + | `DASH of Token.t (* "-" *) + | `STAR of Token.t (* "*" *) + | `SLASH of Token.t (* "/" *) + | `PERC of Token.t (* "%" *) + | `HAT of Token.t (* "^" *) + | `AMP of Token.t (* "&" *) + | `BAR of Token.t (* "|" *) + | `TILDE of Token.t (* "~" *) + | `BANG of Token.t (* "!" *) + | `EQ of Token.t (* "=" *) + | `LT of Token.t (* "<" *) + | `GT of Token.t (* ">" *) + | `PLUSEQ of Token.t (* "+=" *) + | `DASHEQ of Token.t (* "-=" *) + | `STAREQ of Token.t (* "*=" *) + | `SLASHEQ of Token.t (* "/=" *) + | `PERCEQ of Token.t (* "%=" *) + | `HATEQ of Token.t (* "^=" *) + | `AMPEQ of Token.t (* "&=" *) + | `BAREQ of Token.t (* "|=" *) + | `LTLT of Token.t (* "<<" *) + | `GTGT of Token.t (* ">>" *) + | `GTGTEQ of Token.t (* ">>=" *) + | `LTLTEQ of Token.t (* "<<=" *) + | `EQEQ of Token.t (* "==" *) + | `BANGEQ of Token.t (* "!=" *) + | `LTEQ of Token.t (* "<=" *) + | `GTEQ of Token.t (* ">=" *) + | `LTEQGT of Token.t (* "<=>" *) + | `AMPAMP of Token.t (* "&&" *) + | `BARBAR of Token.t (* "||" *) + | `PLUSPLUS of Token.t (* "++" *) + | `DASHDASH of Token.t (* "--" *) + | `COMMA of Token.t (* "," *) + | `DASHGTSTAR of Token.t (* "->*" *) + | `DASHGT of Token.t (* "->" *) + | `LPARRPAR of Token.t (* "()" *) + | `LBRACKRBRACK of Token.t (* "[]" *) + | `Xor of Token.t (* "xor" *) + | `Bitand of Token.t (* "bitand" *) + | `Bitor of Token.t (* "bitor" *) + | `Compl of Token.t (* "compl" *) + | `Not of Token.t (* "not" *) + | `Xor_eq of Token.t (* "xor_eq" *) + | `And_eq of Token.t (* "and_eq" *) + | `Or_eq of Token.t (* "or_eq" *) + | `Not_eq of Token.t (* "not_eq" *) + | `And of Token.t (* "and" *) + | `Or of Token.t (* "or" *) + | `Choice_new_opt_LBRACKRBRACK of ( + [ + `New of Token.t (* "new" *) + | `Delete of Token.t (* "delete" *) + ] + * Token.t (* "[]" *) option + ) + | `DQUOTDQUOT_id of (Token.t (* "\"\"" *) * identifier (*tok*)) + ] + ) + | `Op_semg_meta of (Token.t (* "operator" *) * semgrep_metavar (*tok*)) +] type type_parameter_declaration = ( anon_choice_type_a2fe5d4 @@ -1302,6 +1305,8 @@ and enumerator_list = ( | `Prep_if_in_enum_list of preproc_if_in_enumerator_list | `Prep_ifdef_in_enum_list of preproc_ifdef_in_enumerator_list | `Prep_call_COMMA of (preproc_call * Token.t (* "," *)) + | `Semg_ellips_COMMA of (Token.t (* "..." *) * Token.t (* "," *)) + | `Semg_meta_COMMA of (semgrep_metavar (*tok*) * Token.t (* "," *)) ] list (* zero or more *) * [ @@ -1311,6 +1316,8 @@ and enumerator_list = ( | `Prep_ifdef_in_enum_list_no_comma of preproc_ifdef_in_enumerator_list_no_comma | `Prep_call of preproc_call + | `Semg_ellips of Token.t (* "..." *) + | `Semg_meta of semgrep_metavar (*tok*) ] option * Token.t (* "}" *) @@ -1419,35 +1426,32 @@ and field_declaration_list = ( ) and field_declaration_list_item = [ - `Choice_field_decl of [ - `Field_decl of field_declaration - | `Prep_def of preproc_def - | `Prep_func_def of preproc_function_def - | `Prep_call of preproc_call - | `Prep_if_in_field_decl_list of preproc_if_in_field_declaration_list - | `Prep_ifdef_in_field_decl_list of - preproc_ifdef_in_field_declaration_list - ] - | `Temp_decl of template_declaration - | `Inline_meth_defi of ( - declaration_specifiers - * field_declarator - * [ - `Choice_comp_stmt of anon_choice_comp_stmt_e6a11e2 - | `Defa_meth_clause of default_method_clause - | `Delete_meth_clause of delete_method_clause + `Choice_choice_field_decl of [ + `Choice_field_decl of [ + `Field_decl of field_declaration + | `Prep_def of preproc_def + | `Prep_func_def of preproc_function_def + | `Prep_call of preproc_call + | `Prep_if_in_field_decl_list of + preproc_if_in_field_declaration_list + | `Prep_ifdef_in_field_decl_list of + preproc_ifdef_in_field_declaration_list ] - ) - | `Cons_or_dest_defi of constructor_or_destructor_definition - | `Cons_or_dest_decl of constructor_or_destructor_declaration - | `Op_cast_defi of operator_cast_definition - | `Op_cast_decl of operator_cast_declaration - | `Friend_decl of friend_declaration - | `Access_spec_COLON of (access_specifier * Token.t (* ":" *)) - | `Alias_decl of alias_declaration - | `Using_decl of using_declaration - | `Type_defi of type_definition - | `Static_assert_decl of static_assert_declaration + | `Temp_decl of template_declaration + | `Inline_meth_defi of inline_method_definition + | `Cons_or_dest_defi of constructor_or_destructor_definition + | `Cons_or_dest_decl of constructor_or_destructor_declaration + | `Op_cast_defi of operator_cast_definition + | `Op_cast_decl of operator_cast_declaration + | `Friend_decl of friend_declaration + | `Access_spec_COLON of (access_specifier * Token.t (* ":" *)) + | `Alias_decl of alias_declaration + | `Using_decl of using_declaration + | `Type_defi of type_definition + | `Static_assert_decl of static_assert_declaration + ] + | `Semg_ellips of Token.t (* "..." *) + | `Semg_meta of semgrep_metavar (*tok*) ] and field_declarator = [ @@ -1715,6 +1719,16 @@ and initializer_pair = [ ) ] +and inline_method_definition = ( + declaration_specifiers + * field_declarator + * [ + `Choice_comp_stmt of anon_choice_comp_stmt_e6a11e2 + | `Defa_meth_clause of default_method_clause + | `Delete_meth_clause of delete_method_clause + ] +) + and labeled_statement = (identifier (*tok*) * Token.t (* ":" *) * statement) and lambda_capture_specifier = ( @@ -2594,16 +2608,6 @@ type function_type_declarator (* inlined *) = ( type_declarator * parameter_list ) -type inline_method_definition (* inlined *) = ( - declaration_specifiers - * field_declarator - * [ - `Choice_comp_stmt of anon_choice_comp_stmt_e6a11e2 - | `Defa_meth_clause of default_method_clause - | `Delete_meth_clause of delete_method_clause - ] -) - type new_expression (* inlined *) = ( Token.t (* "::" *) option * Token.t (* "new" *) diff --git a/lib/Parse.ml b/lib/Parse.ml index de6a099..bf1e42a 100644 --- a/lib/Parse.ml +++ b/lib/Parse.ml @@ -298,75 +298,81 @@ let children_regexps : (string * Run.exp option) list = [ ); "operator_name", Some ( - Seq [ - Token (Literal "operator"); - Alt [| - Token (Literal "co_await"); - Token (Literal "+"); - Token (Literal "-"); - Token (Literal "*"); - Token (Literal "/"); - Token (Literal "%"); - Token (Literal "^"); - Token (Literal "&"); - Token (Literal "|"); - Token (Literal "~"); - Token (Literal "!"); - Token (Literal "="); - Token (Literal "<"); - Token (Literal ">"); - Token (Literal "+="); - Token (Literal "-="); - Token (Literal "*="); - Token (Literal "/="); - Token (Literal "%="); - Token (Literal "^="); - Token (Literal "&="); - Token (Literal "|="); - Token (Literal "<<"); - Token (Literal ">>"); - Token (Literal ">>="); - Token (Literal "<<="); - Token (Literal "=="); - Token (Literal "!="); - Token (Literal "<="); - Token (Literal ">="); - Token (Literal "<=>"); - Token (Literal "&&"); - Token (Literal "||"); - Token (Literal "++"); - Token (Literal "--"); - Token (Literal ","); - Token (Literal "->*"); - Token (Literal "->"); - Token (Literal "()"); - Token (Literal "[]"); - Token (Literal "xor"); - Token (Literal "bitand"); - Token (Literal "bitor"); - Token (Literal "compl"); - Token (Literal "not"); - Token (Literal "xor_eq"); - Token (Literal "and_eq"); - Token (Literal "or_eq"); - Token (Literal "not_eq"); - Token (Literal "and"); - Token (Literal "or"); - Seq [ - Alt [| - Token (Literal "new"); - Token (Literal "delete"); - |]; - Opt ( - Token (Literal "[]"); - ); - ]; - Seq [ - Token (Literal "\"\""); - Token (Name "identifier"); - ]; - |]; - ]; + Alt [| + Seq [ + Token (Literal "operator"); + Alt [| + Token (Literal "co_await"); + Token (Literal "+"); + Token (Literal "-"); + Token (Literal "*"); + Token (Literal "/"); + Token (Literal "%"); + Token (Literal "^"); + Token (Literal "&"); + Token (Literal "|"); + Token (Literal "~"); + Token (Literal "!"); + Token (Literal "="); + Token (Literal "<"); + Token (Literal ">"); + Token (Literal "+="); + Token (Literal "-="); + Token (Literal "*="); + Token (Literal "/="); + Token (Literal "%="); + Token (Literal "^="); + Token (Literal "&="); + Token (Literal "|="); + Token (Literal "<<"); + Token (Literal ">>"); + Token (Literal ">>="); + Token (Literal "<<="); + Token (Literal "=="); + Token (Literal "!="); + Token (Literal "<="); + Token (Literal ">="); + Token (Literal "<=>"); + Token (Literal "&&"); + Token (Literal "||"); + Token (Literal "++"); + Token (Literal "--"); + Token (Literal ","); + Token (Literal "->*"); + Token (Literal "->"); + Token (Literal "()"); + Token (Literal "[]"); + Token (Literal "xor"); + Token (Literal "bitand"); + Token (Literal "bitor"); + Token (Literal "compl"); + Token (Literal "not"); + Token (Literal "xor_eq"); + Token (Literal "and_eq"); + Token (Literal "or_eq"); + Token (Literal "not_eq"); + Token (Literal "and"); + Token (Literal "or"); + Seq [ + Alt [| + Token (Literal "new"); + Token (Literal "delete"); + |]; + Opt ( + Token (Literal "[]"); + ); + ]; + Seq [ + Token (Literal "\"\""); + Token (Name "identifier"); + ]; + |]; + ]; + Seq [ + Token (Literal "operator"); + Token (Name "semgrep_metavar"); + ]; + |]; ); "variadic_type_parameter_declaration", Some ( @@ -2222,17 +2228,25 @@ let children_regexps : (string * Run.exp option) list = [ Token (Name "preproc_call"); Token (Literal ","); ]; + Seq [ + Token (Name "semgrep_ellipsis"); + Token (Literal ","); + ]; + Seq [ + Token (Name "semgrep_metavar"); + Token (Literal ","); + ]; |]; ); Opt ( - Seq [ - Alt [| - Token (Name "enumerator"); - Token (Name "preproc_if_in_enumerator_list_no_comma"); - Token (Name "preproc_ifdef_in_enumerator_list_no_comma"); - Token (Name "preproc_call"); - |]; - ]; + Alt [| + Token (Name "enumerator"); + Token (Name "preproc_if_in_enumerator_list_no_comma"); + Token (Name "preproc_ifdef_in_enumerator_list_no_comma"); + Token (Name "preproc_call"); + Token (Name "semgrep_ellipsis"); + Token (Name "semgrep_metavar"); + |]; ); Token (Literal "}"); ]; @@ -2378,28 +2392,32 @@ let children_regexps : (string * Run.exp option) list = [ Some ( Alt [| Alt [| - Token (Name "field_declaration"); - Token (Name "preproc_def"); - Token (Name "preproc_function_def"); - Token (Name "preproc_call"); - Token (Name "preproc_if_in_field_declaration_list"); - Token (Name "preproc_ifdef_in_field_declaration_list"); + Alt [| + Token (Name "field_declaration"); + Token (Name "preproc_def"); + Token (Name "preproc_function_def"); + Token (Name "preproc_call"); + Token (Name "preproc_if_in_field_declaration_list"); + Token (Name "preproc_ifdef_in_field_declaration_list"); + |]; + Token (Name "template_declaration"); + Token (Name "inline_method_definition"); + Token (Name "constructor_or_destructor_definition"); + Token (Name "constructor_or_destructor_declaration"); + Token (Name "operator_cast_definition"); + Token (Name "operator_cast_declaration"); + Token (Name "friend_declaration"); + Seq [ + Token (Name "access_specifier"); + Token (Literal ":"); + ]; + Token (Name "alias_declaration"); + Token (Name "using_declaration"); + Token (Name "type_definition"); + Token (Name "static_assert_declaration"); |]; - Token (Name "template_declaration"); - Token (Name "inline_method_definition"); - Token (Name "constructor_or_destructor_definition"); - Token (Name "constructor_or_destructor_declaration"); - Token (Name "operator_cast_definition"); - Token (Name "operator_cast_declaration"); - Token (Name "friend_declaration"); - Seq [ - Token (Name "access_specifier"); - Token (Literal ":"); - ]; - Token (Name "alias_declaration"); - Token (Name "using_declaration"); - Token (Name "type_definition"); - Token (Name "static_assert_declaration"); + Token (Name "semgrep_ellipsis"); + Token (Name "semgrep_metavar"); |]; ); "field_declarator", @@ -5632,248 +5650,265 @@ let trans_operator_name ((kind, body) : mt) : CST.operator_name = match body with | Children v -> (match v with - | Seq [v0; v1] -> - ( - Run.trans_token (Run.matcher_token v0), - (match v1 with - | Alt (0, v) -> - `Co_await ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (1, v) -> - `PLUS ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (2, v) -> - `DASH ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (3, v) -> - `STAR ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (4, v) -> - `SLASH ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (5, v) -> - `PERC ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (6, v) -> - `HAT ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (7, v) -> - `AMP ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (8, v) -> - `BAR ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (9, v) -> - `TILDE ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (10, v) -> - `BANG ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (11, v) -> - `EQ ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (12, v) -> - `LT ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (13, v) -> - `GT ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (14, v) -> - `PLUSEQ ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (15, v) -> - `DASHEQ ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (16, v) -> - `STAREQ ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (17, v) -> - `SLASHEQ ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (18, v) -> - `PERCEQ ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (19, v) -> - `HATEQ ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (20, v) -> - `AMPEQ ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (21, v) -> - `BAREQ ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (22, v) -> - `LTLT ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (23, v) -> - `GTGT ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (24, v) -> - `GTGTEQ ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (25, v) -> - `LTLTEQ ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (26, v) -> - `EQEQ ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (27, v) -> - `BANGEQ ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (28, v) -> - `LTEQ ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (29, v) -> - `GTEQ ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (30, v) -> - `LTEQGT ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (31, v) -> - `AMPAMP ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (32, v) -> - `BARBAR ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (33, v) -> - `PLUSPLUS ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (34, v) -> - `DASHDASH ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (35, v) -> - `COMMA ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (36, v) -> - `DASHGTSTAR ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (37, v) -> - `DASHGT ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (38, v) -> - `LPARRPAR ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (39, v) -> - `LBRACKRBRACK ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (40, v) -> - `Xor ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (41, v) -> - `Bitand ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (42, v) -> - `Bitor ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (43, v) -> - `Compl ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (44, v) -> - `Not ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (45, v) -> - `Xor_eq ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (46, v) -> - `And_eq ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (47, v) -> - `Or_eq ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (48, v) -> - `Not_eq ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (49, v) -> - `And ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (50, v) -> - `Or ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (51, v) -> - `Choice_new_opt_LBRACKRBRACK ( - (match v with - | Seq [v0; v1] -> - ( - (match v0 with - | Alt (0, v) -> - `New ( - Run.trans_token (Run.matcher_token v) + | Alt (0, v) -> + `Op_choice_co_await ( + (match v with + | Seq [v0; v1] -> + ( + Run.trans_token (Run.matcher_token v0), + (match v1 with + | Alt (0, v) -> + `Co_await ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `PLUS ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (2, v) -> + `DASH ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (3, v) -> + `STAR ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (4, v) -> + `SLASH ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (5, v) -> + `PERC ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (6, v) -> + `HAT ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (7, v) -> + `AMP ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (8, v) -> + `BAR ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (9, v) -> + `TILDE ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (10, v) -> + `BANG ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (11, v) -> + `EQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (12, v) -> + `LT ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (13, v) -> + `GT ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (14, v) -> + `PLUSEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (15, v) -> + `DASHEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (16, v) -> + `STAREQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (17, v) -> + `SLASHEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (18, v) -> + `PERCEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (19, v) -> + `HATEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (20, v) -> + `AMPEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (21, v) -> + `BAREQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (22, v) -> + `LTLT ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (23, v) -> + `GTGT ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (24, v) -> + `GTGTEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (25, v) -> + `LTLTEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (26, v) -> + `EQEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (27, v) -> + `BANGEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (28, v) -> + `LTEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (29, v) -> + `GTEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (30, v) -> + `LTEQGT ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (31, v) -> + `AMPAMP ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (32, v) -> + `BARBAR ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (33, v) -> + `PLUSPLUS ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (34, v) -> + `DASHDASH ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (35, v) -> + `COMMA ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (36, v) -> + `DASHGTSTAR ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (37, v) -> + `DASHGT ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (38, v) -> + `LPARRPAR ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (39, v) -> + `LBRACKRBRACK ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (40, v) -> + `Xor ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (41, v) -> + `Bitand ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (42, v) -> + `Bitor ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (43, v) -> + `Compl ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (44, v) -> + `Not ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (45, v) -> + `Xor_eq ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (46, v) -> + `And_eq ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (47, v) -> + `Or_eq ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (48, v) -> + `Not_eq ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (49, v) -> + `And ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (50, v) -> + `Or ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (51, v) -> + `Choice_new_opt_LBRACKRBRACK ( + (match v with + | Seq [v0; v1] -> + ( + (match v0 with + | Alt (0, v) -> + `New ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `Delete ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + , + Run.opt + (fun v -> Run.trans_token (Run.matcher_token v)) + v1 ) - | Alt (1, v) -> - `Delete ( - Run.trans_token (Run.matcher_token v) + | _ -> assert false + ) + ) + | Alt (52, v) -> + `DQUOTDQUOT_id ( + (match v with + | Seq [v0; v1] -> + ( + Run.trans_token (Run.matcher_token v0), + trans_identifier (Run.matcher_token v1) ) | _ -> assert false ) - , - Run.opt - (fun v -> Run.trans_token (Run.matcher_token v)) - v1 ) | _ -> assert false ) ) - | Alt (52, v) -> - `DQUOTDQUOT_id ( - (match v with - | Seq [v0; v1] -> - ( - Run.trans_token (Run.matcher_token v0), - trans_identifier (Run.matcher_token v1) - ) - | _ -> assert false - ) + | _ -> assert false + ) + ) + | Alt (1, v) -> + `Op_semg_meta ( + (match v with + | Seq [v0; v1] -> + ( + Run.trans_token (Run.matcher_token v0), + trans_semgrep_metavar (Run.matcher_token v1) ) | _ -> assert false ) @@ -10321,6 +10356,28 @@ and trans_enumerator_list ((kind, body) : mt) : CST.enumerator_list = | _ -> assert false ) ) + | Alt (4, v) -> + `Semg_ellips_COMMA ( + (match v with + | Seq [v0; v1] -> + ( + trans_semgrep_ellipsis (Run.matcher_token v0), + Run.trans_token (Run.matcher_token v1) + ) + | _ -> assert false + ) + ) + | Alt (5, v) -> + `Semg_meta_COMMA ( + (match v with + | Seq [v0; v1] -> + ( + trans_semgrep_metavar (Run.matcher_token v0), + Run.trans_token (Run.matcher_token v1) + ) + | _ -> assert false + ) + ) | _ -> assert false ) ) @@ -10329,27 +10386,29 @@ and trans_enumerator_list ((kind, body) : mt) : CST.enumerator_list = Run.opt (fun v -> (match v with - | Seq [v0] -> - ( - (match v0 with - | Alt (0, v) -> - `Enum ( - trans_enumerator (Run.matcher_token v) - ) - | Alt (1, v) -> - `Prep_if_in_enum_list_no_comma ( - trans_preproc_if_in_enumerator_list_no_comma (Run.matcher_token v) - ) - | Alt (2, v) -> - `Prep_ifdef_in_enum_list_no_comma ( - trans_preproc_ifdef_in_enumerator_list_no_comma (Run.matcher_token v) - ) - | Alt (3, v) -> - `Prep_call ( - trans_preproc_call (Run.matcher_token v) - ) - | _ -> assert false - ) + | Alt (0, v) -> + `Enum ( + trans_enumerator (Run.matcher_token v) + ) + | Alt (1, v) -> + `Prep_if_in_enum_list_no_comma ( + trans_preproc_if_in_enumerator_list_no_comma (Run.matcher_token v) + ) + | Alt (2, v) -> + `Prep_ifdef_in_enum_list_no_comma ( + trans_preproc_ifdef_in_enumerator_list_no_comma (Run.matcher_token v) + ) + | Alt (3, v) -> + `Prep_call ( + trans_preproc_call (Run.matcher_token v) + ) + | Alt (4, v) -> + `Semg_ellips ( + trans_semgrep_ellipsis (Run.matcher_token v) + ) + | Alt (5, v) -> + `Semg_meta ( + trans_semgrep_metavar (Run.matcher_token v) ) | _ -> assert false ) @@ -10749,89 +10808,103 @@ and trans_field_declaration_list_item ((kind, body) : mt) : CST.field_declaratio | Children v -> (match v with | Alt (0, v) -> - `Choice_field_decl ( + `Choice_choice_field_decl ( (match v with | Alt (0, v) -> - `Field_decl ( - trans_field_declaration (Run.matcher_token v) + `Choice_field_decl ( + (match v with + | Alt (0, v) -> + `Field_decl ( + trans_field_declaration (Run.matcher_token v) + ) + | Alt (1, v) -> + `Prep_def ( + trans_preproc_def (Run.matcher_token v) + ) + | Alt (2, v) -> + `Prep_func_def ( + trans_preproc_function_def (Run.matcher_token v) + ) + | Alt (3, v) -> + `Prep_call ( + trans_preproc_call (Run.matcher_token v) + ) + | Alt (4, v) -> + `Prep_if_in_field_decl_list ( + trans_preproc_if_in_field_declaration_list (Run.matcher_token v) + ) + | Alt (5, v) -> + `Prep_ifdef_in_field_decl_list ( + trans_preproc_ifdef_in_field_declaration_list (Run.matcher_token v) + ) + | _ -> assert false + ) ) | Alt (1, v) -> - `Prep_def ( - trans_preproc_def (Run.matcher_token v) + `Temp_decl ( + trans_template_declaration (Run.matcher_token v) ) | Alt (2, v) -> - `Prep_func_def ( - trans_preproc_function_def (Run.matcher_token v) + `Inline_meth_defi ( + trans_inline_method_definition (Run.matcher_token v) ) | Alt (3, v) -> - `Prep_call ( - trans_preproc_call (Run.matcher_token v) + `Cons_or_dest_defi ( + trans_constructor_or_destructor_definition (Run.matcher_token v) ) | Alt (4, v) -> - `Prep_if_in_field_decl_list ( - trans_preproc_if_in_field_declaration_list (Run.matcher_token v) + `Cons_or_dest_decl ( + trans_constructor_or_destructor_declaration (Run.matcher_token v) ) | Alt (5, v) -> - `Prep_ifdef_in_field_decl_list ( - trans_preproc_ifdef_in_field_declaration_list (Run.matcher_token v) + `Op_cast_defi ( + trans_operator_cast_definition (Run.matcher_token v) + ) + | Alt (6, v) -> + `Op_cast_decl ( + trans_operator_cast_declaration (Run.matcher_token v) + ) + | Alt (7, v) -> + `Friend_decl ( + trans_friend_declaration (Run.matcher_token v) + ) + | Alt (8, v) -> + `Access_spec_COLON ( + (match v with + | Seq [v0; v1] -> + ( + trans_access_specifier (Run.matcher_token v0), + Run.trans_token (Run.matcher_token v1) + ) + | _ -> assert false + ) + ) + | Alt (9, v) -> + `Alias_decl ( + trans_alias_declaration (Run.matcher_token v) + ) + | Alt (10, v) -> + `Using_decl ( + trans_using_declaration (Run.matcher_token v) + ) + | Alt (11, v) -> + `Type_defi ( + trans_type_definition (Run.matcher_token v) + ) + | Alt (12, v) -> + `Static_assert_decl ( + trans_static_assert_declaration (Run.matcher_token v) ) | _ -> assert false ) ) | Alt (1, v) -> - `Temp_decl ( - trans_template_declaration (Run.matcher_token v) + `Semg_ellips ( + trans_semgrep_ellipsis (Run.matcher_token v) ) | Alt (2, v) -> - `Inline_meth_defi ( - trans_inline_method_definition (Run.matcher_token v) - ) - | Alt (3, v) -> - `Cons_or_dest_defi ( - trans_constructor_or_destructor_definition (Run.matcher_token v) - ) - | Alt (4, v) -> - `Cons_or_dest_decl ( - trans_constructor_or_destructor_declaration (Run.matcher_token v) - ) - | Alt (5, v) -> - `Op_cast_defi ( - trans_operator_cast_definition (Run.matcher_token v) - ) - | Alt (6, v) -> - `Op_cast_decl ( - trans_operator_cast_declaration (Run.matcher_token v) - ) - | Alt (7, v) -> - `Friend_decl ( - trans_friend_declaration (Run.matcher_token v) - ) - | Alt (8, v) -> - `Access_spec_COLON ( - (match v with - | Seq [v0; v1] -> - ( - trans_access_specifier (Run.matcher_token v0), - Run.trans_token (Run.matcher_token v1) - ) - | _ -> assert false - ) - ) - | Alt (9, v) -> - `Alias_decl ( - trans_alias_declaration (Run.matcher_token v) - ) - | Alt (10, v) -> - `Using_decl ( - trans_using_declaration (Run.matcher_token v) - ) - | Alt (11, v) -> - `Type_defi ( - trans_type_definition (Run.matcher_token v) - ) - | Alt (12, v) -> - `Static_assert_decl ( - trans_static_assert_declaration (Run.matcher_token v) + `Semg_meta ( + trans_semgrep_metavar (Run.matcher_token v) ) | _ -> assert false ) diff --git a/lib/parser.c b/lib/parser.c index df403d3..40b080d 100644 --- a/lib/parser.c +++ b/lib/parser.c @@ -13,8 +13,8 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 10694 -#define LARGE_STATE_COUNT 2260 +#define STATE_COUNT 10103 +#define LARGE_STATE_COUNT 2487 #define SYMBOL_COUNT 531 #define ALIAS_COUNT 15 #define TOKEN_COUNT 218 @@ -4814,284 +4814,284 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [30] = 20, [31] = 17, [32] = 18, - [33] = 20, - [34] = 16, + [33] = 16, + [34] = 20, [35] = 17, [36] = 36, - [37] = 36, + [37] = 37, [38] = 36, - [39] = 39, + [39] = 37, [40] = 36, - [41] = 39, - [42] = 42, - [43] = 39, - [44] = 44, + [41] = 37, + [42] = 37, + [43] = 37, + [44] = 36, [45] = 36, [46] = 46, [47] = 47, [48] = 48, [49] = 49, - [50] = 39, + [50] = 50, [51] = 51, - [52] = 39, - [53] = 51, + [52] = 52, + [53] = 52, [54] = 54, [55] = 55, - [56] = 51, - [57] = 57, - [58] = 58, + [56] = 52, + [57] = 54, + [58] = 52, [59] = 55, - [60] = 54, - [61] = 51, - [62] = 62, - [63] = 57, + [60] = 60, + [61] = 61, + [62] = 61, + [63] = 54, [64] = 55, - [65] = 54, - [66] = 62, - [67] = 62, - [68] = 55, - [69] = 57, - [70] = 70, - [71] = 55, - [72] = 57, - [73] = 62, - [74] = 57, - [75] = 55, - [76] = 54, - [77] = 62, + [65] = 60, + [66] = 66, + [67] = 60, + [68] = 61, + [69] = 54, + [70] = 55, + [71] = 60, + [72] = 72, + [73] = 61, + [74] = 54, + [75] = 60, + [76] = 61, + [77] = 54, [78] = 55, [79] = 54, - [80] = 57, - [81] = 55, - [82] = 57, + [80] = 55, + [81] = 54, + [82] = 55, [83] = 55, - [84] = 57, + [84] = 54, [85] = 55, - [86] = 57, + [86] = 54, [87] = 55, - [88] = 57, + [88] = 54, [89] = 55, - [90] = 57, + [90] = 54, [91] = 55, - [92] = 57, + [92] = 54, [93] = 55, - [94] = 57, + [94] = 54, [95] = 55, - [96] = 57, + [96] = 54, [97] = 55, - [98] = 57, + [98] = 54, [99] = 55, - [100] = 57, + [100] = 54, [101] = 55, - [102] = 57, + [102] = 54, [103] = 55, - [104] = 57, + [104] = 54, [105] = 55, - [106] = 57, + [106] = 54, [107] = 55, - [108] = 57, + [108] = 54, [109] = 55, - [110] = 57, + [110] = 54, [111] = 55, - [112] = 57, + [112] = 54, [113] = 55, - [114] = 57, + [114] = 54, [115] = 55, - [116] = 57, - [117] = 57, + [116] = 116, + [117] = 117, [118] = 118, [119] = 119, [120] = 120, [121] = 121, [122] = 122, - [123] = 123, - [124] = 124, - [125] = 123, - [126] = 120, - [127] = 121, + [123] = 119, + [124] = 118, + [125] = 121, + [126] = 122, + [127] = 120, [128] = 122, - [129] = 124, - [130] = 122, - [131] = 122, - [132] = 123, - [133] = 124, - [134] = 123, - [135] = 124, - [136] = 124, - [137] = 120, - [138] = 121, - [139] = 121, - [140] = 123, - [141] = 120, - [142] = 122, - [143] = 121, - [144] = 120, - [145] = 121, - [146] = 120, - [147] = 122, - [148] = 124, - [149] = 123, - [150] = 150, - [151] = 150, - [152] = 150, - [153] = 150, - [154] = 150, - [155] = 150, - [156] = 150, + [129] = 122, + [130] = 120, + [131] = 118, + [132] = 121, + [133] = 119, + [134] = 121, + [135] = 120, + [136] = 119, + [137] = 122, + [138] = 118, + [139] = 119, + [140] = 120, + [141] = 121, + [142] = 118, + [143] = 119, + [144] = 121, + [145] = 120, + [146] = 122, + [147] = 118, + [148] = 148, + [149] = 148, + [150] = 148, + [151] = 148, + [152] = 148, + [153] = 148, + [154] = 148, + [155] = 155, + [156] = 156, [157] = 157, - [158] = 158, - [159] = 158, - [160] = 158, - [161] = 158, - [162] = 158, - [163] = 158, - [164] = 164, - [165] = 158, - [166] = 158, - [167] = 158, - [168] = 158, - [169] = 158, - [170] = 158, - [171] = 171, - [172] = 172, - [173] = 171, - [174] = 172, + [158] = 157, + [159] = 157, + [160] = 157, + [161] = 157, + [162] = 157, + [163] = 157, + [164] = 157, + [165] = 157, + [166] = 157, + [167] = 157, + [168] = 168, + [169] = 169, + [170] = 168, + [171] = 169, + [172] = 169, + [173] = 173, + [174] = 169, [175] = 175, - [176] = 171, - [177] = 171, - [178] = 178, - [179] = 172, - [180] = 172, - [181] = 181, - [182] = 181, - [183] = 181, - [184] = 171, + [176] = 168, + [177] = 168, + [178] = 169, + [179] = 179, + [180] = 179, + [181] = 179, + [182] = 182, + [183] = 183, + [184] = 183, [185] = 185, [186] = 186, - [187] = 186, - [188] = 188, - [189] = 186, + [187] = 187, + [188] = 183, + [189] = 189, [190] = 190, - [191] = 191, - [192] = 190, - [193] = 193, + [191] = 190, + [192] = 192, + [193] = 190, [194] = 194, - [195] = 190, - [196] = 194, - [197] = 197, - [198] = 186, + [195] = 195, + [196] = 196, + [197] = 192, + [198] = 198, [199] = 199, - [200] = 200, - [201] = 197, - [202] = 197, - [203] = 199, - [204] = 191, - [205] = 197, + [200] = 198, + [201] = 201, + [202] = 183, + [203] = 196, + [204] = 204, + [205] = 189, [206] = 199, - [207] = 200, - [208] = 208, - [209] = 209, - [210] = 200, - [211] = 208, - [212] = 191, - [213] = 213, - [214] = 197, - [215] = 194, - [216] = 209, - [217] = 191, - [218] = 213, - [219] = 194, - [220] = 199, - [221] = 199, - [222] = 200, - [223] = 208, - [224] = 213, - [225] = 200, - [226] = 190, - [227] = 199, - [228] = 213, - [229] = 190, - [230] = 197, - [231] = 209, - [232] = 191, - [233] = 208, - [234] = 213, + [207] = 183, + [208] = 192, + [209] = 194, + [210] = 195, + [211] = 196, + [212] = 201, + [213] = 198, + [214] = 201, + [215] = 204, + [216] = 192, + [217] = 194, + [218] = 195, + [219] = 196, + [220] = 198, + [221] = 201, + [222] = 204, + [223] = 189, + [224] = 199, + [225] = 192, + [226] = 194, + [227] = 195, + [228] = 196, + [229] = 198, + [230] = 201, + [231] = 204, + [232] = 189, + [233] = 199, + [234] = 192, [235] = 194, - [236] = 208, - [237] = 208, - [238] = 213, - [239] = 190, - [240] = 199, - [241] = 186, - [242] = 200, - [243] = 213, - [244] = 197, - [245] = 209, - [246] = 208, - [247] = 191, - [248] = 209, - [249] = 191, - [250] = 194, - [251] = 200, - [252] = 209, - [253] = 194, - [254] = 193, - [255] = 209, - [256] = 193, - [257] = 193, - [258] = 193, - [259] = 193, - [260] = 190, - [261] = 186, - [262] = 186, - [263] = 186, - [264] = 264, - [265] = 186, - [266] = 266, - [267] = 264, + [236] = 195, + [237] = 194, + [238] = 196, + [239] = 198, + [240] = 201, + [241] = 204, + [242] = 189, + [243] = 199, + [244] = 192, + [245] = 194, + [246] = 195, + [247] = 196, + [248] = 198, + [249] = 201, + [250] = 204, + [251] = 189, + [252] = 199, + [253] = 199, + [254] = 204, + [255] = 189, + [256] = 190, + [257] = 190, + [258] = 190, + [259] = 195, + [260] = 183, + [261] = 183, + [262] = 183, + [263] = 263, + [264] = 183, + [265] = 265, + [266] = 265, + [267] = 267, [268] = 268, - [269] = 266, - [270] = 264, - [271] = 266, - [272] = 264, - [273] = 273, - [274] = 264, - [275] = 266, - [276] = 264, - [277] = 266, - [278] = 266, - [279] = 266, - [280] = 264, - [281] = 264, - [282] = 264, - [283] = 264, - [284] = 266, - [285] = 264, - [286] = 266, - [287] = 264, - [288] = 264, - [289] = 264, - [290] = 266, - [291] = 266, - [292] = 266, - [293] = 266, - [294] = 266, - [295] = 266, - [296] = 264, - [297] = 266, - [298] = 264, - [299] = 299, + [269] = 267, + [270] = 265, + [271] = 267, + [272] = 267, + [273] = 265, + [274] = 267, + [275] = 265, + [276] = 267, + [277] = 267, + [278] = 267, + [279] = 265, + [280] = 267, + [281] = 265, + [282] = 267, + [283] = 265, + [284] = 267, + [285] = 265, + [286] = 267, + [287] = 265, + [288] = 265, + [289] = 265, + [290] = 265, + [291] = 267, + [292] = 265, + [293] = 265, + [294] = 267, + [295] = 267, + [296] = 265, + [297] = 267, + [298] = 265, + [299] = 267, [300] = 300, [301] = 301, [302] = 302, [303] = 303, - [304] = 268, - [305] = 305, - [306] = 273, - [307] = 305, - [308] = 308, + [304] = 186, + [305] = 263, + [306] = 306, + [307] = 185, + [308] = 268, [309] = 309, - [310] = 310, + [310] = 301, [311] = 311, [312] = 312, [313] = 313, @@ -5103,10 +5103,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [319] = 319, [320] = 320, [321] = 321, - [322] = 322, + [322] = 300, [323] = 323, [324] = 324, - [325] = 299, + [325] = 325, [326] = 326, [327] = 327, [328] = 328, @@ -5118,7 +5118,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [334] = 334, [335] = 335, [336] = 336, - [337] = 300, + [337] = 337, [338] = 338, [339] = 339, [340] = 340, @@ -5129,10352 +5129,9761 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [345] = 345, [346] = 346, [347] = 347, - [348] = 348, + [348] = 263, [349] = 349, [350] = 350, [351] = 351, [352] = 352, - [353] = 273, + [353] = 347, [354] = 354, [355] = 355, [356] = 356, [357] = 357, - [358] = 358, - [359] = 359, - [360] = 351, + [358] = 351, + [359] = 355, + [360] = 302, [361] = 361, [362] = 362, - [363] = 363, + [363] = 354, [364] = 364, [365] = 365, [366] = 366, - [367] = 367, - [368] = 368, - [369] = 369, - [370] = 370, - [371] = 371, - [372] = 372, - [373] = 373, - [374] = 273, - [375] = 375, - [376] = 351, + [367] = 355, + [368] = 350, + [369] = 351, + [370] = 303, + [371] = 268, + [372] = 347, + [373] = 354, + [374] = 374, + [375] = 355, + [376] = 376, [377] = 377, [378] = 378, - [379] = 379, - [380] = 380, + [379] = 268, + [380] = 263, [381] = 381, - [382] = 382, + [382] = 355, [383] = 383, [384] = 384, [385] = 385, [386] = 386, - [387] = 387, + [387] = 355, [388] = 388, [389] = 389, - [390] = 351, + [390] = 390, [391] = 391, - [392] = 392, + [392] = 355, [393] = 393, [394] = 394, - [395] = 395, + [395] = 355, [396] = 396, - [397] = 397, + [397] = 355, [398] = 398, - [399] = 273, - [400] = 351, - [401] = 351, - [402] = 301, - [403] = 351, - [404] = 305, - [405] = 351, - [406] = 303, - [407] = 268, - [408] = 351, - [409] = 268, - [410] = 351, - [411] = 351, - [412] = 351, - [413] = 351, - [414] = 351, - [415] = 351, - [416] = 351, - [417] = 351, - [418] = 351, + [399] = 399, + [400] = 355, + [401] = 401, + [402] = 355, + [403] = 403, + [404] = 404, + [405] = 405, + [406] = 355, + [407] = 355, + [408] = 408, + [409] = 409, + [410] = 355, + [411] = 411, + [412] = 412, + [413] = 355, + [414] = 414, + [415] = 415, + [416] = 355, + [417] = 417, + [418] = 355, [419] = 419, [420] = 420, - [421] = 351, - [422] = 302, - [423] = 351, - [424] = 351, - [425] = 268, - [426] = 351, - [427] = 351, - [428] = 351, - [429] = 351, - [430] = 351, - [431] = 351, - [432] = 351, - [433] = 351, - [434] = 351, - [435] = 351, - [436] = 351, - [437] = 351, + [421] = 355, + [422] = 422, + [423] = 355, + [424] = 424, + [425] = 355, + [426] = 426, + [427] = 427, + [428] = 355, + [429] = 429, + [430] = 430, + [431] = 355, + [432] = 432, + [433] = 433, + [434] = 434, + [435] = 435, + [436] = 436, + [437] = 350, [438] = 351, - [439] = 351, - [440] = 351, - [441] = 351, - [442] = 351, - [443] = 351, - [444] = 351, + [439] = 268, + [440] = 347, + [441] = 354, + [442] = 442, + [443] = 443, + [444] = 444, [445] = 445, - [446] = 446, - [447] = 447, - [448] = 448, + [446] = 185, + [447] = 186, + [448] = 263, [449] = 449, [450] = 450, - [451] = 451, - [452] = 452, - [453] = 308, - [454] = 351, + [451] = 355, + [452] = 306, + [453] = 350, + [454] = 454, [455] = 455, - [456] = 456, - [457] = 457, - [458] = 301, - [459] = 299, - [460] = 460, - [461] = 342, - [462] = 313, - [463] = 317, - [464] = 318, - [465] = 319, - [466] = 320, - [467] = 322, - [468] = 323, - [469] = 345, - [470] = 300, - [471] = 328, + [456] = 319, + [457] = 317, + [458] = 318, + [459] = 301, + [460] = 315, + [461] = 300, + [462] = 333, + [463] = 329, + [464] = 339, + [465] = 334, + [466] = 316, + [467] = 327, + [468] = 336, + [469] = 337, + [470] = 338, + [471] = 331, [472] = 330, - [473] = 332, - [474] = 299, - [475] = 338, - [476] = 329, - [477] = 477, - [478] = 335, - [479] = 339, - [480] = 321, - [481] = 481, - [482] = 326, - [483] = 340, - [484] = 324, - [485] = 327, - [486] = 331, - [487] = 315, - [488] = 341, + [473] = 323, + [474] = 474, + [475] = 321, + [476] = 312, + [477] = 311, + [478] = 300, + [479] = 479, + [480] = 345, + [481] = 342, + [482] = 314, + [483] = 341, + [484] = 484, + [485] = 326, + [486] = 343, + [487] = 320, + [488] = 301, [489] = 309, - [490] = 344, - [491] = 481, - [492] = 310, - [493] = 312, - [494] = 334, - [495] = 316, - [496] = 336, - [497] = 300, - [498] = 386, - [499] = 301, - [500] = 367, - [501] = 373, - [502] = 419, - [503] = 420, - [504] = 308, - [505] = 349, - [506] = 303, - [507] = 302, - [508] = 366, - [509] = 302, - [510] = 355, - [511] = 393, - [512] = 375, - [513] = 447, - [514] = 448, - [515] = 378, - [516] = 380, - [517] = 384, - [518] = 364, - [519] = 387, - [520] = 457, - [521] = 395, - [522] = 398, - [523] = 301, - [524] = 302, - [525] = 303, - [526] = 455, - [527] = 350, - [528] = 305, - [529] = 385, - [530] = 446, - [531] = 449, - [532] = 352, - [533] = 354, - [534] = 303, - [535] = 392, - [536] = 451, - [537] = 346, - [538] = 347, - [539] = 358, - [540] = 305, - [541] = 382, - [542] = 379, - [543] = 356, + [490] = 313, + [491] = 328, + [492] = 324, + [493] = 474, + [494] = 332, + [495] = 430, + [496] = 419, + [497] = 422, + [498] = 424, + [499] = 435, + [500] = 444, + [501] = 303, + [502] = 361, + [503] = 366, + [504] = 376, + [505] = 377, + [506] = 378, + [507] = 381, + [508] = 383, + [509] = 384, + [510] = 385, + [511] = 306, + [512] = 399, + [513] = 455, + [514] = 404, + [515] = 405, + [516] = 408, + [517] = 409, + [518] = 411, + [519] = 302, + [520] = 433, + [521] = 442, + [522] = 449, + [523] = 450, + [524] = 349, + [525] = 352, + [526] = 362, + [527] = 429, + [528] = 346, + [529] = 185, + [530] = 186, + [531] = 306, + [532] = 302, + [533] = 306, + [534] = 302, + [535] = 396, + [536] = 394, + [537] = 303, + [538] = 420, + [539] = 426, + [540] = 436, + [541] = 443, + [542] = 445, + [543] = 454, [544] = 357, - [545] = 452, - [546] = 381, - [547] = 348, - [548] = 359, - [549] = 445, - [550] = 308, - [551] = 361, - [552] = 397, - [553] = 377, - [554] = 362, - [555] = 368, - [556] = 369, - [557] = 383, - [558] = 370, - [559] = 371, - [560] = 391, - [561] = 394, - [562] = 363, - [563] = 450, - [564] = 396, - [565] = 365, - [566] = 372, - [567] = 389, - [568] = 456, - [569] = 308, - [570] = 388, - [571] = 317, - [572] = 334, - [573] = 336, - [574] = 338, - [575] = 313, - [576] = 336, - [577] = 317, - [578] = 318, - [579] = 319, - [580] = 320, - [581] = 322, + [545] = 364, + [546] = 365, + [547] = 374, + [548] = 386, + [549] = 388, + [550] = 389, + [551] = 390, + [552] = 391, + [553] = 393, + [554] = 398, + [555] = 401, + [556] = 403, + [557] = 412, + [558] = 414, + [559] = 415, + [560] = 417, + [561] = 186, + [562] = 303, + [563] = 427, + [564] = 432, + [565] = 434, + [566] = 356, + [567] = 185, + [568] = 330, + [569] = 321, + [570] = 326, + [571] = 327, + [572] = 326, + [573] = 320, + [574] = 321, + [575] = 311, + [576] = 339, + [577] = 336, + [578] = 337, + [579] = 342, + [580] = 342, + [581] = 338, [582] = 323, - [583] = 345, - [584] = 338, - [585] = 342, - [586] = 330, - [587] = 332, - [588] = 313, - [589] = 317, - [590] = 318, - [591] = 319, - [592] = 340, - [593] = 341, - [594] = 309, - [595] = 344, - [596] = 310, - [597] = 312, - [598] = 320, - [599] = 338, - [600] = 316, - [601] = 322, - [602] = 323, - [603] = 345, - [604] = 326, - [605] = 326, - [606] = 335, - [607] = 342, - [608] = 328, - [609] = 329, - [610] = 328, - [611] = 330, - [612] = 329, - [613] = 339, - [614] = 315, - [615] = 342, - [616] = 332, - [617] = 321, - [618] = 339, - [619] = 340, - [620] = 620, - [621] = 621, - [622] = 341, - [623] = 309, - [624] = 344, - [625] = 625, - [626] = 626, - [627] = 331, - [628] = 312, - [629] = 324, - [630] = 313, - [631] = 315, - [632] = 316, - [633] = 327, - [634] = 318, - [635] = 319, - [636] = 320, - [637] = 620, - [638] = 621, - [639] = 322, - [640] = 625, - [641] = 626, - [642] = 323, - [643] = 345, - [644] = 326, - [645] = 620, - [646] = 621, - [647] = 625, - [648] = 626, - [649] = 331, - [650] = 335, - [651] = 334, - [652] = 329, - [653] = 330, - [654] = 328, - [655] = 620, - [656] = 621, - [657] = 332, - [658] = 334, - [659] = 336, - [660] = 339, - [661] = 340, - [662] = 625, - [663] = 626, - [664] = 341, - [665] = 309, - [666] = 344, - [667] = 310, - [668] = 312, - [669] = 315, - [670] = 316, - [671] = 335, - [672] = 321, + [583] = 337, + [584] = 584, + [585] = 312, + [586] = 345, + [587] = 341, + [588] = 309, + [589] = 311, + [590] = 312, + [591] = 313, + [592] = 314, + [593] = 315, + [594] = 316, + [595] = 317, + [596] = 596, + [597] = 318, + [598] = 598, + [599] = 320, + [600] = 345, + [601] = 327, + [602] = 321, + [603] = 326, + [604] = 323, + [605] = 319, + [606] = 596, + [607] = 598, + [608] = 337, + [609] = 338, + [610] = 324, + [611] = 332, + [612] = 309, + [613] = 328, + [614] = 339, + [615] = 596, + [616] = 598, + [617] = 341, + [618] = 342, + [619] = 336, + [620] = 329, + [621] = 312, + [622] = 313, + [623] = 596, + [624] = 329, + [625] = 315, + [626] = 316, + [627] = 317, + [628] = 318, + [629] = 345, + [630] = 327, + [631] = 598, + [632] = 632, + [633] = 633, + [634] = 634, + [635] = 635, + [636] = 636, + [637] = 637, + [638] = 339, + [639] = 330, + [640] = 338, + [641] = 309, + [642] = 332, + [643] = 319, + [644] = 324, + [645] = 328, + [646] = 343, + [647] = 329, + [648] = 332, + [649] = 323, + [650] = 343, + [651] = 331, + [652] = 333, + [653] = 320, + [654] = 341, + [655] = 334, + [656] = 336, + [657] = 311, + [658] = 313, + [659] = 331, + [660] = 314, + [661] = 330, + [662] = 333, + [663] = 334, + [664] = 343, + [665] = 315, + [666] = 316, + [667] = 317, + [668] = 331, + [669] = 333, + [670] = 318, + [671] = 334, + [672] = 319, [673] = 324, - [674] = 327, - [675] = 321, - [676] = 324, - [677] = 327, - [678] = 331, - [679] = 310, - [680] = 299, - [681] = 367, - [682] = 393, - [683] = 368, - [684] = 395, - [685] = 369, - [686] = 398, - [687] = 352, - [688] = 451, - [689] = 370, - [690] = 368, - [691] = 419, - [692] = 420, - [693] = 371, - [694] = 372, - [695] = 447, - [696] = 448, - [697] = 369, - [698] = 455, - [699] = 370, - [700] = 371, - [701] = 373, - [702] = 372, - [703] = 446, - [704] = 392, - [705] = 373, - [706] = 397, - [707] = 186, - [708] = 452, - [709] = 352, - [710] = 375, - [711] = 377, - [712] = 378, - [713] = 379, - [714] = 380, - [715] = 381, - [716] = 382, - [717] = 375, - [718] = 383, - [719] = 384, - [720] = 385, - [721] = 386, - [722] = 387, - [723] = 346, - [724] = 388, - [725] = 378, - [726] = 450, - [727] = 380, - [728] = 456, - [729] = 449, - [730] = 347, - [731] = 386, - [732] = 387, - [733] = 346, - [734] = 388, - [735] = 348, - [736] = 354, - [737] = 391, - [738] = 392, - [739] = 393, - [740] = 394, - [741] = 456, - [742] = 395, - [743] = 396, - [744] = 450, - [745] = 356, - [746] = 397, + [674] = 328, + [675] = 314, + [676] = 415, + [677] = 384, + [678] = 433, + [679] = 434, + [680] = 436, + [681] = 434, + [682] = 346, + [683] = 442, + [684] = 385, + [685] = 386, + [686] = 388, + [687] = 399, + [688] = 455, + [689] = 404, + [690] = 405, + [691] = 342, + [692] = 389, + [693] = 408, + [694] = 409, + [695] = 411, + [696] = 432, + [697] = 365, + [698] = 430, + [699] = 390, + [700] = 433, + [701] = 301, + [702] = 391, + [703] = 449, + [704] = 450, + [705] = 374, + [706] = 442, + [707] = 374, + [708] = 356, + [709] = 376, + [710] = 377, + [711] = 449, + [712] = 450, + [713] = 396, + [714] = 419, + [715] = 349, + [716] = 352, + [717] = 386, + [718] = 300, + [719] = 349, + [720] = 352, + [721] = 443, + [722] = 393, + [723] = 362, + [724] = 362, + [725] = 422, + [726] = 424, + [727] = 435, + [728] = 444, + [729] = 356, + [730] = 429, + [731] = 388, + [732] = 389, + [733] = 390, + [734] = 391, + [735] = 378, + [736] = 346, + [737] = 393, + [738] = 357, + [739] = 445, + [740] = 381, + [741] = 183, + [742] = 364, + [743] = 454, + [744] = 427, + [745] = 361, + [746] = 394, [747] = 398, - [748] = 357, - [749] = 457, - [750] = 391, - [751] = 366, - [752] = 394, - [753] = 355, - [754] = 350, - [755] = 396, - [756] = 445, - [757] = 347, - [758] = 389, - [759] = 356, - [760] = 357, - [761] = 446, - [762] = 449, - [763] = 451, - [764] = 452, - [765] = 457, - [766] = 349, - [767] = 358, - [768] = 328, - [769] = 359, - [770] = 348, - [771] = 419, - [772] = 420, - [773] = 355, - [774] = 358, - [775] = 349, - [776] = 186, - [777] = 447, - [778] = 448, - [779] = 361, - [780] = 455, - [781] = 362, - [782] = 363, - [783] = 364, - [784] = 365, + [748] = 396, + [749] = 419, + [750] = 365, + [751] = 420, + [752] = 422, + [753] = 398, + [754] = 361, + [755] = 424, + [756] = 399, + [757] = 366, + [758] = 401, + [759] = 401, + [760] = 403, + [761] = 455, + [762] = 403, + [763] = 426, + [764] = 404, + [765] = 435, + [766] = 436, + [767] = 394, + [768] = 443, + [769] = 444, + [770] = 445, + [771] = 405, + [772] = 408, + [773] = 409, + [774] = 357, + [775] = 420, + [776] = 412, + [777] = 414, + [778] = 411, + [779] = 417, + [780] = 412, + [781] = 454, + [782] = 414, + [783] = 415, + [784] = 417, [785] = 366, - [786] = 367, - [787] = 350, - [788] = 359, - [789] = 361, - [790] = 362, - [791] = 300, - [792] = 445, - [793] = 363, - [794] = 364, - [795] = 389, - [796] = 377, - [797] = 379, - [798] = 381, - [799] = 382, - [800] = 365, - [801] = 383, - [802] = 384, - [803] = 385, - [804] = 354, - [805] = 389, - [806] = 349, - [807] = 186, - [808] = 808, - [809] = 809, - [810] = 810, + [786] = 364, + [787] = 376, + [788] = 377, + [789] = 378, + [790] = 381, + [791] = 383, + [792] = 384, + [793] = 426, + [794] = 385, + [795] = 427, + [796] = 429, + [797] = 430, + [798] = 432, + [799] = 383, + [800] = 183, + [801] = 356, + [802] = 444, + [803] = 584, + [804] = 183, + [805] = 584, + [806] = 366, + [807] = 807, + [808] = 415, + [809] = 417, + [810] = 454, [811] = 811, - [812] = 812, + [812] = 807, [813] = 813, - [814] = 814, - [815] = 815, - [816] = 815, - [817] = 815, - [818] = 808, - [819] = 808, - [820] = 820, - [821] = 808, - [822] = 815, - [823] = 396, - [824] = 348, - [825] = 447, - [826] = 350, - [827] = 455, - [828] = 354, - [829] = 355, - [830] = 356, - [831] = 357, - [832] = 358, - [833] = 419, - [834] = 359, - [835] = 361, - [836] = 362, - [837] = 363, - [838] = 364, - [839] = 365, - [840] = 366, - [841] = 367, - [842] = 368, - [843] = 420, - [844] = 445, - [845] = 369, - [846] = 370, - [847] = 371, - [848] = 372, - [849] = 186, - [850] = 373, - [851] = 446, - [852] = 449, - [853] = 450, - [854] = 854, - [855] = 451, - [856] = 375, - [857] = 377, - [858] = 452, - [859] = 378, - [860] = 379, - [861] = 380, - [862] = 381, - [863] = 382, - [864] = 383, - [865] = 384, - [866] = 385, - [867] = 386, - [868] = 387, - [869] = 346, - [870] = 388, - [871] = 456, - [872] = 457, - [873] = 391, - [874] = 392, - [875] = 393, - [876] = 394, - [877] = 395, - [878] = 347, - [879] = 352, - [880] = 397, - [881] = 398, - [882] = 448, - [883] = 186, - [884] = 820, - [885] = 186, - [886] = 186, - [887] = 887, - [888] = 887, - [889] = 889, - [890] = 887, - [891] = 887, - [892] = 889, - [893] = 887, - [894] = 889, - [895] = 889, - [896] = 887, - [897] = 889, - [898] = 889, - [899] = 889, - [900] = 820, - [901] = 887, - [902] = 889, - [903] = 887, - [904] = 889, - [905] = 889, - [906] = 887, - [907] = 889, - [908] = 887, - [909] = 887, - [910] = 910, - [911] = 911, - [912] = 889, - [913] = 887, - [914] = 887, - [915] = 889, - [916] = 889, - [917] = 820, + [814] = 362, + [815] = 807, + [816] = 361, + [817] = 813, + [818] = 813, + [819] = 819, + [820] = 427, + [821] = 429, + [822] = 807, + [823] = 430, + [824] = 432, + [825] = 374, + [826] = 813, + [827] = 433, + [828] = 434, + [829] = 394, + [830] = 807, + [831] = 376, + [832] = 422, + [833] = 813, + [834] = 834, + [835] = 807, + [836] = 346, + [837] = 813, + [838] = 377, + [839] = 378, + [840] = 381, + [841] = 807, + [842] = 442, + [843] = 424, + [844] = 813, + [845] = 383, + [846] = 807, + [847] = 807, + [848] = 384, + [849] = 813, + [850] = 385, + [851] = 807, + [852] = 813, + [853] = 419, + [854] = 807, + [855] = 807, + [856] = 357, + [857] = 388, + [858] = 813, + [859] = 807, + [860] = 389, + [861] = 390, + [862] = 391, + [863] = 426, + [864] = 813, + [865] = 349, + [866] = 393, + [867] = 435, + [868] = 584, + [869] = 352, + [870] = 436, + [871] = 364, + [872] = 813, + [873] = 443, + [874] = 807, + [875] = 420, + [876] = 445, + [877] = 398, + [878] = 399, + [879] = 401, + [880] = 455, + [881] = 396, + [882] = 365, + [883] = 403, + [884] = 404, + [885] = 405, + [886] = 408, + [887] = 813, + [888] = 813, + [889] = 409, + [890] = 449, + [891] = 183, + [892] = 450, + [893] = 411, + [894] = 412, + [895] = 414, + [896] = 386, + [897] = 183, + [898] = 183, + [899] = 183, + [900] = 183, + [901] = 901, + [902] = 902, + [903] = 902, + [904] = 904, + [905] = 905, + [906] = 906, + [907] = 906, + [908] = 906, + [909] = 906, + [910] = 906, + [911] = 906, + [912] = 906, + [913] = 906, + [914] = 906, + [915] = 915, + [916] = 916, + [917] = 917, [918] = 918, - [919] = 887, - [920] = 887, - [921] = 889, - [922] = 889, - [923] = 887, + [919] = 919, + [920] = 920, + [921] = 918, + [922] = 918, + [923] = 923, [924] = 924, - [925] = 924, + [925] = 915, [926] = 926, - [927] = 927, - [928] = 928, - [929] = 928, - [930] = 928, - [931] = 928, - [932] = 928, - [933] = 928, - [934] = 928, - [935] = 928, - [936] = 928, - [937] = 937, - [938] = 938, - [939] = 939, - [940] = 940, - [941] = 937, - [942] = 942, - [943] = 938, - [944] = 940, - [945] = 937, - [946] = 938, - [947] = 940, - [948] = 937, - [949] = 938, + [927] = 918, + [928] = 918, + [929] = 929, + [930] = 930, + [931] = 930, + [932] = 932, + [933] = 923, + [934] = 923, + [935] = 935, + [936] = 923, + [937] = 920, + [938] = 930, + [939] = 923, + [940] = 918, + [941] = 930, + [942] = 929, + [943] = 918, + [944] = 930, + [945] = 918, + [946] = 930, + [947] = 932, + [948] = 918, + [949] = 923, [950] = 950, - [951] = 938, - [952] = 938, - [953] = 940, - [954] = 938, - [955] = 937, - [956] = 939, - [957] = 957, - [958] = 958, - [959] = 959, - [960] = 940, - [961] = 961, - [962] = 962, - [963] = 957, - [964] = 959, - [965] = 938, - [966] = 958, - [967] = 937, - [968] = 940, - [969] = 969, - [970] = 937, - [971] = 971, - [972] = 940, - [973] = 938, - [974] = 268, - [975] = 975, - [976] = 975, - [977] = 273, - [978] = 302, - [979] = 301, - [980] = 303, - [981] = 308, - [982] = 305, - [983] = 315, - [984] = 338, - [985] = 344, - [986] = 326, - [987] = 341, - [988] = 340, - [989] = 324, - [990] = 330, - [991] = 335, - [992] = 327, - [993] = 331, - [994] = 309, - [995] = 317, - [996] = 313, - [997] = 316, - [998] = 319, - [999] = 320, - [1000] = 339, - [1001] = 310, - [1002] = 318, - [1003] = 321, - [1004] = 334, - [1005] = 927, - [1006] = 332, - [1007] = 322, - [1008] = 329, - [1009] = 926, - [1010] = 323, - [1011] = 962, - [1012] = 345, - [1013] = 312, - [1014] = 342, - [1015] = 336, - [1016] = 1016, - [1017] = 1016, - [1018] = 1018, - [1019] = 1019, - [1020] = 1016, - [1021] = 1018, - [1022] = 1018, - [1023] = 1018, - [1024] = 1024, - [1025] = 1019, - [1026] = 1016, - [1027] = 1019, - [1028] = 1018, - [1029] = 1019, - [1030] = 1016, - [1031] = 1018, - [1032] = 1019, + [951] = 268, + [952] = 950, + [953] = 263, + [954] = 302, + [955] = 186, + [956] = 306, + [957] = 185, + [958] = 303, + [959] = 327, + [960] = 905, + [961] = 312, + [962] = 339, + [963] = 345, + [964] = 319, + [965] = 324, + [966] = 328, + [967] = 329, + [968] = 332, + [969] = 323, + [970] = 341, + [971] = 330, + [972] = 336, + [973] = 343, + [974] = 331, + [975] = 333, + [976] = 334, + [977] = 311, + [978] = 320, + [979] = 321, + [980] = 904, + [981] = 338, + [982] = 309, + [983] = 326, + [984] = 313, + [985] = 314, + [986] = 315, + [987] = 316, + [988] = 317, + [989] = 318, + [990] = 337, + [991] = 919, + [992] = 992, + [993] = 992, + [994] = 994, + [995] = 992, + [996] = 994, + [997] = 994, + [998] = 994, + [999] = 999, + [1000] = 992, + [1001] = 999, + [1002] = 994, + [1003] = 999, + [1004] = 999, + [1005] = 994, + [1006] = 994, + [1007] = 999, + [1008] = 992, + [1009] = 1009, + [1010] = 994, + [1011] = 999, + [1012] = 999, + [1013] = 994, + [1014] = 999, + [1015] = 994, + [1016] = 999, + [1017] = 992, + [1018] = 994, + [1019] = 999, + [1020] = 992, + [1021] = 994, + [1022] = 999, + [1023] = 992, + [1024] = 994, + [1025] = 999, + [1026] = 994, + [1027] = 999, + [1028] = 999, + [1029] = 992, + [1030] = 1030, + [1031] = 992, + [1032] = 1032, [1033] = 1033, - [1034] = 1018, - [1035] = 1016, - [1036] = 1018, - [1037] = 1018, - [1038] = 1019, - [1039] = 1016, - [1040] = 1018, - [1041] = 1019, - [1042] = 1016, - [1043] = 1019, - [1044] = 1016, - [1045] = 1016, - [1046] = 1018, - [1047] = 1016, - [1048] = 1019, - [1049] = 1018, - [1050] = 1016, - [1051] = 1016, - [1052] = 1019, - [1053] = 1016, - [1054] = 1019, - [1055] = 1016, - [1056] = 1018, - [1057] = 1018, - [1058] = 1019, - [1059] = 1018, - [1060] = 1060, - [1061] = 1061, - [1062] = 1060, - [1063] = 1061, - [1064] = 1060, - [1065] = 1060, - [1066] = 1061, - [1067] = 1060, - [1068] = 1060, - [1069] = 1061, - [1070] = 1060, - [1071] = 1060, - [1072] = 1061, - [1073] = 1061, - [1074] = 1061, - [1075] = 1061, - [1076] = 1060, - [1077] = 1061, - [1078] = 1061, - [1079] = 1061, - [1080] = 1060, - [1081] = 1061, - [1082] = 1060, - [1083] = 1060, + [1034] = 1032, + [1035] = 1033, + [1036] = 1032, + [1037] = 1033, + [1038] = 1032, + [1039] = 1033, + [1040] = 1033, + [1041] = 1032, + [1042] = 1033, + [1043] = 1032, + [1044] = 1032, + [1045] = 1033, + [1046] = 1033, + [1047] = 1033, + [1048] = 1033, + [1049] = 1032, + [1050] = 1032, + [1051] = 1032, + [1052] = 1052, + [1053] = 1053, + [1054] = 1054, + [1055] = 1055, + [1056] = 1056, + [1057] = 1055, + [1058] = 1054, + [1059] = 1054, + [1060] = 1056, + [1061] = 1055, + [1062] = 1055, + [1063] = 1055, + [1064] = 1064, + [1065] = 1064, + [1066] = 1055, + [1067] = 1055, + [1068] = 1055, + [1069] = 1054, + [1070] = 1064, + [1071] = 1064, + [1072] = 1054, + [1073] = 1054, + [1074] = 1055, + [1075] = 1055, + [1076] = 1055, + [1077] = 1077, + [1078] = 1056, + [1079] = 1077, + [1080] = 1077, + [1081] = 1064, + [1082] = 1077, + [1083] = 1077, [1084] = 1084, - [1085] = 1085, + [1085] = 1077, [1086] = 1086, - [1087] = 1087, - [1088] = 1086, - [1089] = 1086, - [1090] = 1087, - [1091] = 1091, - [1092] = 1092, + [1087] = 1086, + [1088] = 1088, + [1089] = 1089, + [1090] = 1090, + [1091] = 1090, + [1092] = 1088, [1093] = 1086, - [1094] = 1092, - [1095] = 1086, - [1096] = 1091, + [1094] = 1089, + [1095] = 1095, + [1096] = 1096, [1097] = 1086, - [1098] = 1092, - [1099] = 1091, - [1100] = 1091, + [1098] = 1098, + [1099] = 1088, + [1100] = 1090, [1101] = 1086, - [1102] = 1086, - [1103] = 1086, - [1104] = 1092, - [1105] = 1092, - [1106] = 1086, + [1102] = 1102, + [1103] = 1103, + [1104] = 1088, + [1105] = 1090, + [1106] = 1090, [1107] = 1086, - [1108] = 1086, - [1109] = 1086, - [1110] = 1092, - [1111] = 1111, - [1112] = 1112, - [1113] = 1111, - [1114] = 1087, - [1115] = 1111, - [1116] = 1091, - [1117] = 1111, - [1118] = 1111, - [1119] = 1111, - [1120] = 1120, - [1121] = 1121, - [1122] = 1122, - [1123] = 1121, - [1124] = 1124, - [1125] = 1125, - [1126] = 1121, - [1127] = 1122, - [1128] = 1124, - [1129] = 1121, - [1130] = 1125, - [1131] = 1124, - [1132] = 1132, - [1133] = 1122, - [1134] = 1120, - [1135] = 1125, - [1136] = 1121, - [1137] = 1125, - [1138] = 1125, - [1139] = 1121, - [1140] = 1132, - [1141] = 1124, - [1142] = 1125, - [1143] = 1122, - [1144] = 1132, - [1145] = 1121, - [1146] = 1125, - [1147] = 1132, - [1148] = 1122, - [1149] = 1121, - [1150] = 1125, - [1151] = 1151, - [1152] = 1132, - [1153] = 1125, - [1154] = 1122, - [1155] = 1124, - [1156] = 1121, - [1157] = 1125, - [1158] = 1125, - [1159] = 1121, - [1160] = 1132, - [1161] = 1161, - [1162] = 1122, - [1163] = 1132, - [1164] = 1122, - [1165] = 1132, - [1166] = 1132, - [1167] = 1132, - [1168] = 1121, - [1169] = 1125, - [1170] = 1132, - [1171] = 1122, - [1172] = 1132, - [1173] = 1122, - [1174] = 1121, - [1175] = 1175, - [1176] = 1122, - [1177] = 1120, - [1178] = 1161, - [1179] = 1125, - [1180] = 1120, - [1181] = 1122, - [1182] = 1161, - [1183] = 1122, - [1184] = 1122, - [1185] = 1120, - [1186] = 1161, - [1187] = 1120, - [1188] = 1121, - [1189] = 1120, - [1190] = 1120, - [1191] = 1120, - [1192] = 1120, - [1193] = 1120, - [1194] = 1120, - [1195] = 1120, - [1196] = 1120, - [1197] = 1120, - [1198] = 1124, - [1199] = 1121, + [1108] = 1089, + [1109] = 1089, + [1110] = 1088, + [1111] = 1090, + [1112] = 1086, + [1113] = 1089, + [1114] = 1086, + [1115] = 1088, + [1116] = 1088, + [1117] = 1090, + [1118] = 1086, + [1119] = 1090, + [1120] = 1088, + [1121] = 1090, + [1122] = 1086, + [1123] = 1089, + [1124] = 1088, + [1125] = 1088, + [1126] = 1090, + [1127] = 1098, + [1128] = 1086, + [1129] = 1088, + [1130] = 1089, + [1131] = 1131, + [1132] = 1089, + [1133] = 1131, + [1134] = 1131, + [1135] = 1090, + [1136] = 1089, + [1137] = 1137, + [1138] = 1131, + [1139] = 1088, + [1140] = 1089, + [1141] = 1086, + [1142] = 1086, + [1143] = 1089, + [1144] = 1098, + [1145] = 1095, + [1146] = 1086, + [1147] = 1090, + [1148] = 1090, + [1149] = 1089, + [1150] = 1089, + [1151] = 1089, + [1152] = 1098, + [1153] = 1095, + [1154] = 1098, + [1155] = 1095, + [1156] = 1098, + [1157] = 1098, + [1158] = 1088, + [1159] = 1098, + [1160] = 1098, + [1161] = 1098, + [1162] = 1098, + [1163] = 1098, + [1164] = 1098, + [1165] = 1098, + [1166] = 1086, + [1167] = 1089, + [1168] = 1088, + [1169] = 1090, + [1170] = 1131, + [1171] = 1086, + [1172] = 1089, + [1173] = 1088, + [1174] = 1090, + [1175] = 1088, + [1176] = 1086, + [1177] = 1089, + [1178] = 1088, + [1179] = 1090, + [1180] = 1090, + [1181] = 1181, + [1182] = 1182, + [1183] = 1183, + [1184] = 1184, + [1185] = 1185, + [1186] = 1185, + [1187] = 1181, + [1188] = 1188, + [1189] = 1189, + [1190] = 1185, + [1191] = 1181, + [1192] = 1181, + [1193] = 1181, + [1194] = 1185, + [1195] = 1181, + [1196] = 1196, + [1197] = 1185, + [1198] = 1198, + [1199] = 1181, [1200] = 1200, - [1201] = 1132, - [1202] = 1122, - [1203] = 1132, - [1204] = 1122, - [1205] = 1121, - [1206] = 1125, - [1207] = 1125, + [1201] = 1181, + [1202] = 1185, + [1203] = 1181, + [1204] = 1204, + [1205] = 1205, + [1206] = 1181, + [1207] = 1185, [1208] = 1208, - [1209] = 1132, - [1210] = 1121, - [1211] = 1125, - [1212] = 1132, + [1209] = 1181, + [1210] = 1181, + [1211] = 1181, + [1212] = 1181, [1213] = 1213, - [1214] = 1213, - [1215] = 1213, - [1216] = 1213, - [1217] = 1217, - [1218] = 1218, + [1214] = 1214, + [1215] = 1181, + [1216] = 1216, + [1217] = 1185, + [1218] = 1185, [1219] = 1219, - [1220] = 1220, - [1221] = 1213, - [1222] = 1222, + [1220] = 1181, + [1221] = 1221, + [1222] = 1181, [1223] = 1223, - [1224] = 1213, + [1224] = 1224, [1225] = 1223, [1226] = 1226, [1227] = 1227, [1228] = 1228, - [1229] = 1229, - [1230] = 1230, + [1229] = 1226, + [1230] = 1223, [1231] = 1231, - [1232] = 1213, - [1233] = 1233, - [1234] = 1213, - [1235] = 1235, - [1236] = 1213, - [1237] = 1213, - [1238] = 1223, - [1239] = 1213, - [1240] = 1240, - [1241] = 1223, - [1242] = 1213, - [1243] = 1213, - [1244] = 1213, + [1232] = 1232, + [1233] = 1224, + [1234] = 1226, + [1235] = 1228, + [1236] = 1236, + [1237] = 1237, + [1238] = 1238, + [1239] = 1231, + [1240] = 1224, + [1241] = 1241, + [1242] = 1224, + [1243] = 1231, + [1244] = 1224, [1245] = 1245, - [1246] = 1223, - [1247] = 1213, - [1248] = 1223, - [1249] = 1223, - [1250] = 1223, - [1251] = 1213, + [1246] = 1231, + [1247] = 1226, + [1248] = 1236, + [1249] = 1231, + [1250] = 1237, + [1251] = 1231, [1252] = 1252, - [1253] = 1253, - [1254] = 1254, - [1255] = 1253, + [1253] = 1231, + [1254] = 1236, + [1255] = 1231, [1256] = 1256, - [1257] = 1256, - [1258] = 1258, - [1259] = 1259, - [1260] = 1260, - [1261] = 1261, - [1262] = 1262, - [1263] = 1263, - [1264] = 1264, - [1265] = 1259, - [1266] = 1256, - [1267] = 1261, - [1268] = 1254, - [1269] = 1269, - [1270] = 1263, - [1271] = 1253, - [1272] = 1254, - [1273] = 1259, - [1274] = 1274, - [1275] = 1263, - [1276] = 1262, - [1277] = 1254, - [1278] = 1263, - [1279] = 1261, - [1280] = 1259, - [1281] = 1263, - [1282] = 1282, - [1283] = 1262, - [1284] = 1263, - [1285] = 1260, - [1286] = 1262, - [1287] = 1263, - [1288] = 1254, - [1289] = 1263, - [1290] = 1269, - [1291] = 1263, - [1292] = 1253, - [1293] = 1262, - [1294] = 1294, - [1295] = 1263, - [1296] = 1258, - [1297] = 1263, - [1298] = 1262, - [1299] = 1263, - [1300] = 1263, - [1301] = 1261, - [1302] = 1254, - [1303] = 1253, - [1304] = 1254, - [1305] = 1253, + [1257] = 1231, + [1258] = 1237, + [1259] = 1231, + [1260] = 1224, + [1261] = 1231, + [1262] = 1226, + [1263] = 1228, + [1264] = 1231, + [1265] = 1236, + [1266] = 1237, + [1267] = 1232, + [1268] = 1224, + [1269] = 1237, + [1270] = 1231, + [1271] = 1271, + [1272] = 1223, + [1273] = 1228, + [1274] = 1271, + [1275] = 1236, + [1276] = 1223, + [1277] = 1277, + [1278] = 1231, + [1279] = 1245, + [1280] = 1237, + [1281] = 1224, + [1282] = 1224, + [1283] = 1224, + [1284] = 1224, + [1285] = 1223, + [1286] = 1224, + [1287] = 1224, + [1288] = 1224, + [1289] = 1289, + [1290] = 1226, + [1291] = 1224, + [1292] = 1292, + [1293] = 1293, + [1294] = 1236, + [1295] = 1256, + [1296] = 1224, + [1297] = 1224, + [1298] = 1231, + [1299] = 1299, + [1300] = 1300, + [1301] = 1301, + [1302] = 1302, + [1303] = 1301, + [1304] = 1304, + [1305] = 1305, [1306] = 1306, - [1307] = 1259, + [1307] = 1307, [1308] = 1308, - [1309] = 1254, - [1310] = 1261, - [1311] = 1254, + [1309] = 1309, + [1310] = 1310, + [1311] = 1311, [1312] = 1312, - [1313] = 1254, - [1314] = 1254, - [1315] = 1306, - [1316] = 1259, - [1317] = 1253, - [1318] = 1254, - [1319] = 1254, - [1320] = 1254, + [1313] = 1313, + [1314] = 1314, + [1315] = 1315, + [1316] = 1316, + [1317] = 1317, + [1318] = 1318, + [1319] = 1319, + [1320] = 1320, [1321] = 1321, - [1322] = 1254, - [1323] = 1256, - [1324] = 1261, + [1322] = 1322, + [1323] = 1323, + [1324] = 1324, [1325] = 1325, - [1326] = 1263, - [1327] = 1259, - [1328] = 1254, - [1329] = 1263, - [1330] = 1263, + [1326] = 1326, + [1327] = 1327, + [1328] = 1328, + [1329] = 1329, + [1330] = 1330, [1331] = 1331, [1332] = 1332, [1333] = 1333, [1334] = 1334, - [1335] = 1335, + [1335] = 1305, [1336] = 1336, - [1337] = 1337, - [1338] = 1338, + [1337] = 1304, + [1338] = 1305, [1339] = 1339, [1340] = 1340, - [1341] = 1341, - [1342] = 1342, - [1343] = 1343, - [1344] = 1344, - [1345] = 1345, - [1346] = 1346, - [1347] = 1347, - [1348] = 1348, - [1349] = 1349, - [1350] = 1350, - [1351] = 1351, - [1352] = 1336, - [1353] = 1337, + [1341] = 1309, + [1342] = 1310, + [1343] = 1311, + [1344] = 1312, + [1345] = 1313, + [1346] = 1314, + [1347] = 1315, + [1348] = 1316, + [1349] = 1317, + [1350] = 1318, + [1351] = 1319, + [1352] = 1352, + [1353] = 1353, [1354] = 1354, - [1355] = 1339, - [1356] = 1336, - [1357] = 1337, - [1358] = 1339, - [1359] = 1344, - [1360] = 1360, - [1361] = 1350, - [1362] = 1351, - [1363] = 1336, - [1364] = 1337, - [1365] = 1339, - [1366] = 1366, - [1367] = 1344, - [1368] = 1368, - [1369] = 1369, - [1370] = 1370, - [1371] = 1371, - [1372] = 1372, - [1373] = 1350, - [1374] = 1374, - [1375] = 1375, - [1376] = 1331, - [1377] = 1351, - [1378] = 1378, - [1379] = 1344, - [1380] = 1339, + [1355] = 1330, + [1356] = 1356, + [1357] = 1357, + [1358] = 1333, + [1359] = 1336, + [1360] = 1304, + [1361] = 1361, + [1362] = 1336, + [1363] = 1304, + [1364] = 1305, + [1365] = 1305, + [1366] = 1319, + [1367] = 1330, + [1368] = 1336, + [1369] = 1309, + [1370] = 1310, + [1371] = 1311, + [1372] = 1312, + [1373] = 1313, + [1374] = 1314, + [1375] = 1333, + [1376] = 1315, + [1377] = 1316, + [1378] = 1317, + [1379] = 1318, + [1380] = 1319, [1381] = 1336, - [1382] = 1337, - [1383] = 1339, - [1384] = 1344, - [1385] = 1350, - [1386] = 1386, + [1382] = 1304, + [1383] = 1305, + [1384] = 1319, + [1385] = 1330, + [1386] = 1333, [1387] = 1387, - [1388] = 1337, - [1389] = 1351, - [1390] = 1390, - [1391] = 1391, - [1392] = 1336, - [1393] = 1337, - [1394] = 1339, - [1395] = 1344, - [1396] = 1350, - [1397] = 1351, - [1398] = 1336, - [1399] = 1337, - [1400] = 1339, - [1401] = 1344, - [1402] = 1350, - [1403] = 1351, - [1404] = 1336, - [1405] = 1337, - [1406] = 1339, - [1407] = 1407, - [1408] = 1344, + [1388] = 1336, + [1389] = 1304, + [1390] = 1305, + [1391] = 1319, + [1392] = 1330, + [1393] = 1393, + [1394] = 1304, + [1395] = 1333, + [1396] = 1396, + [1397] = 1336, + [1398] = 1304, + [1399] = 1305, + [1400] = 1319, + [1401] = 1330, + [1402] = 1333, + [1403] = 1336, + [1404] = 1304, + [1405] = 1305, + [1406] = 1319, + [1407] = 1330, + [1408] = 1333, [1409] = 1409, - [1410] = 1410, - [1411] = 1350, - [1412] = 1351, - [1413] = 1336, - [1414] = 1337, - [1415] = 1339, - [1416] = 1344, - [1417] = 1417, - [1418] = 1350, - [1419] = 1351, - [1420] = 1336, - [1421] = 1337, - [1422] = 1339, - [1423] = 1344, - [1424] = 1350, - [1425] = 1351, - [1426] = 1426, - [1427] = 1427, - [1428] = 1428, - [1429] = 1429, - [1430] = 1430, - [1431] = 1431, - [1432] = 1350, - [1433] = 1333, - [1434] = 1334, - [1435] = 1335, - [1436] = 1338, - [1437] = 1341, - [1438] = 1342, - [1439] = 1343, - [1440] = 1345, - [1441] = 1346, - [1442] = 1347, - [1443] = 1443, - [1444] = 1444, - [1445] = 1336, - [1446] = 1337, - [1447] = 1428, - [1448] = 1339, - [1449] = 1449, - [1450] = 1366, - [1451] = 1368, - [1452] = 1369, - [1453] = 1370, - [1454] = 1371, - [1455] = 1372, - [1456] = 1374, - [1457] = 1375, - [1458] = 1331, - [1459] = 1378, - [1460] = 1409, - [1461] = 1426, - [1462] = 1427, - [1463] = 1428, - [1464] = 1429, - [1465] = 1431, - [1466] = 1466, - [1467] = 1351, - [1468] = 1429, - [1469] = 1427, - [1470] = 1366, - [1471] = 1368, - [1472] = 1369, - [1473] = 1370, - [1474] = 1371, - [1475] = 1372, - [1476] = 1374, - [1477] = 1375, - [1478] = 1331, - [1479] = 1378, - [1480] = 1426, - [1481] = 1428, - [1482] = 1429, - [1483] = 1366, - [1484] = 1431, - [1485] = 1368, - [1486] = 1369, - [1487] = 1370, - [1488] = 1371, - [1489] = 1372, - [1490] = 1374, - [1491] = 1375, - [1492] = 1331, - [1493] = 1366, - [1494] = 1368, - [1495] = 1369, - [1496] = 1370, - [1497] = 1371, - [1498] = 1372, - [1499] = 1374, - [1500] = 1375, - [1501] = 1331, - [1502] = 1378, - [1503] = 1426, - [1504] = 1428, - [1505] = 1429, - [1506] = 1431, - [1507] = 1378, - [1508] = 1336, - [1509] = 1337, - [1510] = 1339, - [1511] = 1344, - [1512] = 1366, - [1513] = 1368, - [1514] = 1366, - [1515] = 1368, - [1516] = 1369, - [1517] = 1370, - [1518] = 1371, - [1519] = 1372, - [1520] = 1374, - [1521] = 1375, - [1522] = 1331, - [1523] = 1378, - [1524] = 1344, - [1525] = 1366, - [1526] = 1368, - [1527] = 1369, - [1528] = 1370, - [1529] = 1371, - [1530] = 1372, - [1531] = 1374, - [1532] = 1375, - [1533] = 1331, - [1534] = 1378, - [1535] = 1426, - [1536] = 1428, - [1537] = 1429, - [1538] = 1538, - [1539] = 1431, - [1540] = 1369, - [1541] = 1370, - [1542] = 1371, - [1543] = 1372, - [1544] = 1374, - [1545] = 1375, - [1546] = 1366, - [1547] = 1368, - [1548] = 1369, - [1549] = 1370, - [1550] = 1371, - [1551] = 1372, - [1552] = 1374, - [1553] = 1375, - [1554] = 1331, - [1555] = 1378, - [1556] = 1426, - [1557] = 1428, - [1558] = 1429, - [1559] = 1431, - [1560] = 1350, - [1561] = 1331, - [1562] = 1378, - [1563] = 1366, - [1564] = 1368, - [1565] = 1369, - [1566] = 1370, - [1567] = 1371, - [1568] = 1372, - [1569] = 1374, - [1570] = 1375, - [1571] = 1331, - [1572] = 1378, - [1573] = 1426, - [1574] = 1428, - [1575] = 1429, - [1576] = 1344, - [1577] = 1351, - [1578] = 1366, - [1579] = 1368, - [1580] = 1369, - [1581] = 1370, - [1582] = 1371, - [1583] = 1340, - [1584] = 1374, - [1585] = 1375, - [1586] = 1331, - [1587] = 1378, - [1588] = 1426, - [1589] = 1428, - [1590] = 1429, - [1591] = 1351, - [1592] = 1592, - [1593] = 1593, - [1594] = 1336, - [1595] = 1366, - [1596] = 1368, - [1597] = 1369, - [1598] = 1370, - [1599] = 1371, - [1600] = 1372, - [1601] = 1374, - [1602] = 1375, - [1603] = 1331, - [1604] = 1378, - [1605] = 1426, - [1606] = 1428, - [1607] = 1429, - [1608] = 1608, - [1609] = 1350, - [1610] = 1366, - [1611] = 1368, - [1612] = 1369, - [1613] = 1370, - [1614] = 1371, - [1615] = 1372, - [1616] = 1374, - [1617] = 1375, - [1618] = 1331, - [1619] = 1378, - [1620] = 1426, - [1621] = 1428, - [1622] = 1429, - [1623] = 1623, - [1624] = 1624, - [1625] = 1426, - [1626] = 1428, - [1627] = 1429, - [1628] = 1426, - [1629] = 1428, - [1630] = 1429, - [1631] = 1336, - [1632] = 1337, - [1633] = 1426, - [1634] = 1428, - [1635] = 1429, - [1636] = 1339, - [1637] = 1637, - [1638] = 1426, - [1639] = 1366, - [1640] = 1368, - [1641] = 1369, - [1642] = 1370, - [1643] = 1371, - [1644] = 1372, - [1645] = 1374, - [1646] = 1375, - [1647] = 1331, - [1648] = 1378, - [1649] = 1344, - [1650] = 1431, - [1651] = 1332, + [1410] = 1336, + [1411] = 1304, + [1412] = 1305, + [1413] = 1319, + [1414] = 1330, + [1415] = 1415, + [1416] = 1333, + [1417] = 1336, + [1418] = 1304, + [1419] = 1305, + [1420] = 1420, + [1421] = 1319, + [1422] = 1330, + [1423] = 1333, + [1424] = 1336, + [1425] = 1304, + [1426] = 1305, + [1427] = 1319, + [1428] = 1330, + [1429] = 1333, + [1430] = 1336, + [1431] = 1304, + [1432] = 1305, + [1433] = 1319, + [1434] = 1434, + [1435] = 1330, + [1436] = 1333, + [1437] = 1361, + [1438] = 1387, + [1439] = 1439, + [1440] = 1440, + [1441] = 1300, + [1442] = 1301, + [1443] = 1330, + [1444] = 1307, + [1445] = 1308, + [1446] = 1320, + [1447] = 1321, + [1448] = 1322, + [1449] = 1323, + [1450] = 1324, + [1451] = 1325, + [1452] = 1327, + [1453] = 1328, + [1454] = 1330, + [1455] = 1455, + [1456] = 1309, + [1457] = 1310, + [1458] = 1311, + [1459] = 1312, + [1460] = 1313, + [1461] = 1314, + [1462] = 1315, + [1463] = 1316, + [1464] = 1317, + [1465] = 1318, + [1466] = 1309, + [1467] = 1310, + [1468] = 1311, + [1469] = 1312, + [1470] = 1313, + [1471] = 1314, + [1472] = 1315, + [1473] = 1316, + [1474] = 1317, + [1475] = 1318, + [1476] = 1361, + [1477] = 1387, + [1478] = 1439, + [1479] = 1440, + [1480] = 1300, + [1481] = 1481, + [1482] = 1482, + [1483] = 1483, + [1484] = 1484, + [1485] = 1333, + [1486] = 1309, + [1487] = 1310, + [1488] = 1311, + [1489] = 1312, + [1490] = 1313, + [1491] = 1314, + [1492] = 1315, + [1493] = 1316, + [1494] = 1317, + [1495] = 1318, + [1496] = 1361, + [1497] = 1439, + [1498] = 1440, + [1499] = 1300, + [1500] = 1332, + [1501] = 1309, + [1502] = 1310, + [1503] = 1311, + [1504] = 1312, + [1505] = 1313, + [1506] = 1314, + [1507] = 1315, + [1508] = 1316, + [1509] = 1317, + [1510] = 1318, + [1511] = 1361, + [1512] = 1439, + [1513] = 1440, + [1514] = 1300, + [1515] = 1515, + [1516] = 1516, + [1517] = 1455, + [1518] = 1309, + [1519] = 1310, + [1520] = 1311, + [1521] = 1312, + [1522] = 1313, + [1523] = 1314, + [1524] = 1315, + [1525] = 1316, + [1526] = 1317, + [1527] = 1318, + [1528] = 1361, + [1529] = 1439, + [1530] = 1440, + [1531] = 1300, + [1532] = 1336, + [1533] = 1309, + [1534] = 1310, + [1535] = 1311, + [1536] = 1312, + [1537] = 1313, + [1538] = 1314, + [1539] = 1315, + [1540] = 1316, + [1541] = 1317, + [1542] = 1318, + [1543] = 1361, + [1544] = 1304, + [1545] = 1439, + [1546] = 1440, + [1547] = 1300, + [1548] = 1305, + [1549] = 1309, + [1550] = 1310, + [1551] = 1311, + [1552] = 1312, + [1553] = 1313, + [1554] = 1314, + [1555] = 1315, + [1556] = 1316, + [1557] = 1317, + [1558] = 1318, + [1559] = 1361, + [1560] = 1439, + [1561] = 1440, + [1562] = 1309, + [1563] = 1310, + [1564] = 1311, + [1565] = 1312, + [1566] = 1313, + [1567] = 1314, + [1568] = 1315, + [1569] = 1316, + [1570] = 1317, + [1571] = 1318, + [1572] = 1361, + [1573] = 1439, + [1574] = 1440, + [1575] = 1309, + [1576] = 1310, + [1577] = 1311, + [1578] = 1312, + [1579] = 1313, + [1580] = 1314, + [1581] = 1315, + [1582] = 1316, + [1583] = 1317, + [1584] = 1309, + [1585] = 1310, + [1586] = 1311, + [1587] = 1312, + [1588] = 1313, + [1589] = 1314, + [1590] = 1315, + [1591] = 1316, + [1592] = 1317, + [1593] = 1318, + [1594] = 1361, + [1595] = 1318, + [1596] = 1439, + [1597] = 1440, + [1598] = 1319, + [1599] = 1309, + [1600] = 1361, + [1601] = 1439, + [1602] = 1440, + [1603] = 1361, + [1604] = 1439, + [1605] = 1440, + [1606] = 1310, + [1607] = 1311, + [1608] = 1312, + [1609] = 1361, + [1610] = 1439, + [1611] = 1440, + [1612] = 1313, + [1613] = 1314, + [1614] = 1315, + [1615] = 1316, + [1616] = 1317, + [1617] = 1318, + [1618] = 1361, + [1619] = 1439, + [1620] = 1440, + [1621] = 1319, + [1622] = 1330, + [1623] = 1515, + [1624] = 1393, + [1625] = 1409, + [1626] = 1305, + [1627] = 1481, + [1628] = 1309, + [1629] = 1310, + [1630] = 1311, + [1631] = 1312, + [1632] = 1313, + [1633] = 1314, + [1634] = 1315, + [1635] = 1316, + [1636] = 1317, + [1637] = 1318, + [1638] = 1319, + [1639] = 1639, + [1640] = 1334, + [1641] = 1415, + [1642] = 1420, + [1643] = 1330, + [1644] = 1299, + [1645] = 1333, + [1646] = 1483, + [1647] = 1353, + [1648] = 1439, + [1649] = 1639, + [1650] = 1515, + [1651] = 1393, [1652] = 1409, - [1653] = 1592, - [1654] = 1654, - [1655] = 1417, - [1656] = 1654, - [1657] = 1348, - [1658] = 1593, - [1659] = 1387, - [1660] = 1608, - [1661] = 1623, - [1662] = 1662, - [1663] = 1390, - [1664] = 1350, - [1665] = 1592, - [1666] = 1654, - [1667] = 1417, - [1668] = 1348, - [1669] = 1593, - [1670] = 1387, - [1671] = 1608, - [1672] = 1623, - [1673] = 1662, - [1674] = 1390, - [1675] = 1350, - [1676] = 1592, - [1677] = 1654, - [1678] = 1417, - [1679] = 1348, - [1680] = 1593, - [1681] = 1387, - [1682] = 1608, - [1683] = 1623, - [1684] = 1662, - [1685] = 1390, - [1686] = 1592, - [1687] = 1654, - [1688] = 1417, - [1689] = 1348, - [1690] = 1593, - [1691] = 1387, - [1692] = 1608, - [1693] = 1623, - [1694] = 1662, - [1695] = 1390, - [1696] = 1538, - [1697] = 1592, - [1698] = 1654, - [1699] = 1417, - [1700] = 1700, - [1701] = 1593, - [1702] = 1387, - [1703] = 1608, - [1704] = 1623, - [1705] = 1662, - [1706] = 1390, - [1707] = 1417, - [1708] = 1593, - [1709] = 1387, - [1710] = 1608, - [1711] = 1623, - [1712] = 1662, - [1713] = 1390, - [1714] = 1417, - [1715] = 1593, - [1716] = 1387, - [1717] = 1608, - [1718] = 1623, - [1719] = 1662, - [1720] = 1390, - [1721] = 1417, - [1722] = 1593, - [1723] = 1387, - [1724] = 1608, - [1725] = 1623, - [1726] = 1662, - [1727] = 1390, - [1728] = 1417, - [1729] = 1387, - [1730] = 1623, - [1731] = 1390, - [1732] = 1417, - [1733] = 1387, - [1734] = 1623, - [1735] = 1390, - [1736] = 1417, - [1737] = 1387, - [1738] = 1623, - [1739] = 1390, - [1740] = 1387, - [1741] = 1351, - [1742] = 1410, - [1743] = 1426, - [1744] = 1428, - [1745] = 1429, - [1746] = 1410, - [1747] = 1410, - [1748] = 1410, - [1749] = 1410, - [1750] = 1410, - [1751] = 1410, - [1752] = 1410, - [1753] = 1753, - [1754] = 1431, - [1755] = 1339, - [1756] = 1662, - [1757] = 1366, - [1758] = 1368, - [1759] = 1369, - [1760] = 1370, - [1761] = 1371, - [1762] = 1372, - [1763] = 1374, - [1764] = 1375, - [1765] = 1378, - [1766] = 1344, - [1767] = 1350, - [1768] = 1351, - [1769] = 1366, - [1770] = 1368, - [1771] = 1369, - [1772] = 1370, - [1773] = 1371, - [1774] = 1372, - [1775] = 1374, - [1776] = 1375, - [1777] = 1331, - [1778] = 1378, - [1779] = 1336, - [1780] = 1337, - [1781] = 1339, - [1782] = 1344, - [1783] = 1350, - [1784] = 1351, - [1785] = 1351, - [1786] = 1426, - [1787] = 1428, - [1788] = 1429, - [1789] = 1336, - [1790] = 1337, - [1791] = 1332, - [1792] = 1332, - [1793] = 1332, - [1794] = 1332, - [1795] = 1332, - [1796] = 1332, - [1797] = 1332, - [1798] = 1332, - [1799] = 1332, - [1800] = 1332, - [1801] = 1372, - [1802] = 326, - [1803] = 392, - [1804] = 329, - [1805] = 397, - [1806] = 315, - [1807] = 342, - [1808] = 1808, - [1809] = 339, - [1810] = 335, - [1811] = 1811, - [1812] = 1811, - [1813] = 1811, - [1814] = 1811, - [1815] = 1811, - [1816] = 1816, - [1817] = 1817, - [1818] = 1817, - [1819] = 1819, - [1820] = 1820, - [1821] = 1821, - [1822] = 1822, - [1823] = 1823, - [1824] = 1817, - [1825] = 1825, - [1826] = 1826, - [1827] = 1087, - [1828] = 1828, - [1829] = 1820, - [1830] = 1823, - [1831] = 1817, - [1832] = 1822, - [1833] = 1825, - [1834] = 1826, - [1835] = 1816, - [1836] = 1828, - [1837] = 1828, - [1838] = 1819, - [1839] = 1087, - [1840] = 1828, - [1841] = 1087, + [1653] = 1639, + [1654] = 1334, + [1655] = 1415, + [1656] = 1420, + [1657] = 1299, + [1658] = 1353, + [1659] = 1515, + [1660] = 1393, + [1661] = 1409, + [1662] = 1639, + [1663] = 1334, + [1664] = 1415, + [1665] = 1420, + [1666] = 1299, + [1667] = 1353, + [1668] = 1455, + [1669] = 1515, + [1670] = 1393, + [1671] = 1409, + [1672] = 1639, + [1673] = 1334, + [1674] = 1415, + [1675] = 1420, + [1676] = 1299, + [1677] = 1353, + [1678] = 1515, + [1679] = 1393, + [1680] = 1409, + [1681] = 1639, + [1682] = 1334, + [1683] = 1415, + [1684] = 1420, + [1685] = 1299, + [1686] = 1353, + [1687] = 1409, + [1688] = 1639, + [1689] = 1334, + [1690] = 1415, + [1691] = 1420, + [1692] = 1299, + [1693] = 1353, + [1694] = 1409, + [1695] = 1639, + [1696] = 1334, + [1697] = 1415, + [1698] = 1420, + [1699] = 1299, + [1700] = 1353, + [1701] = 1409, + [1702] = 1639, + [1703] = 1334, + [1704] = 1415, + [1705] = 1420, + [1706] = 1299, + [1707] = 1353, + [1708] = 1409, + [1709] = 1334, + [1710] = 1420, + [1711] = 1353, + [1712] = 1334, + [1713] = 1361, + [1714] = 1439, + [1715] = 1440, + [1716] = 1336, + [1717] = 1304, + [1718] = 1484, + [1719] = 1361, + [1720] = 1439, + [1721] = 1440, + [1722] = 1310, + [1723] = 1484, + [1724] = 1484, + [1725] = 1484, + [1726] = 1484, + [1727] = 1484, + [1728] = 1484, + [1729] = 1484, + [1730] = 1300, + [1731] = 1309, + [1732] = 1310, + [1733] = 1311, + [1734] = 1312, + [1735] = 1313, + [1736] = 1314, + [1737] = 1315, + [1738] = 1316, + [1739] = 1317, + [1740] = 1318, + [1741] = 1336, + [1742] = 1304, + [1743] = 1305, + [1744] = 1319, + [1745] = 1333, + [1746] = 1330, + [1747] = 1333, + [1748] = 1305, + [1749] = 1309, + [1750] = 1311, + [1751] = 1312, + [1752] = 1313, + [1753] = 1314, + [1754] = 1315, + [1755] = 1316, + [1756] = 1317, + [1757] = 1318, + [1758] = 1319, + [1759] = 1330, + [1760] = 1333, + [1761] = 1333, + [1762] = 1361, + [1763] = 1439, + [1764] = 1440, + [1765] = 1336, + [1766] = 1304, + [1767] = 1440, + [1768] = 1301, + [1769] = 1301, + [1770] = 1301, + [1771] = 1301, + [1772] = 1301, + [1773] = 1301, + [1774] = 1301, + [1775] = 1336, + [1776] = 429, + [1777] = 346, + [1778] = 1778, + [1779] = 1779, + [1780] = 1779, + [1781] = 1779, + [1782] = 1779, + [1783] = 1779, + [1784] = 1784, + [1785] = 1784, + [1786] = 1786, + [1787] = 1787, + [1788] = 1788, + [1789] = 1789, + [1790] = 1790, + [1791] = 1791, + [1792] = 1792, + [1793] = 1793, + [1794] = 1784, + [1795] = 1795, + [1796] = 1795, + [1797] = 1784, + [1798] = 1790, + [1799] = 1786, + [1800] = 1795, + [1801] = 1787, + [1802] = 1793, + [1803] = 1792, + [1804] = 1788, + [1805] = 1791, + [1806] = 1056, + [1807] = 1795, + [1808] = 1056, + [1809] = 1809, + [1810] = 1056, + [1811] = 1809, + [1812] = 1795, + [1813] = 1787, + [1814] = 1790, + [1815] = 1786, + [1816] = 1791, + [1817] = 1788, + [1818] = 1792, + [1819] = 1793, + [1820] = 1787, + [1821] = 1788, + [1822] = 1786, + [1823] = 1790, + [1824] = 1792, + [1825] = 1791, + [1826] = 1793, + [1827] = 1827, + [1828] = 1827, + [1829] = 1827, + [1830] = 1827, + [1831] = 1827, + [1832] = 1832, + [1833] = 1833, + [1834] = 1832, + [1835] = 1832, + [1836] = 1832, + [1837] = 1832, + [1838] = 1832, + [1839] = 1832, + [1840] = 1832, + [1841] = 1832, [1842] = 1842, - [1843] = 1842, - [1844] = 1819, - [1845] = 1816, - [1846] = 1825, - [1847] = 1828, - [1848] = 1820, - [1849] = 1826, - [1850] = 1823, - [1851] = 1822, - [1852] = 1852, - [1853] = 1852, - [1854] = 1852, - [1855] = 1852, - [1856] = 1852, + [1843] = 1843, + [1844] = 1844, + [1845] = 1845, + [1846] = 1792, + [1847] = 1791, + [1848] = 1793, + [1849] = 1786, + [1850] = 1790, + [1851] = 1787, + [1852] = 1788, + [1853] = 1853, + [1854] = 1854, + [1855] = 1855, + [1856] = 1856, [1857] = 1857, - [1858] = 1857, - [1859] = 1857, - [1860] = 1820, - [1861] = 1823, - [1862] = 1857, - [1863] = 1822, - [1864] = 1857, - [1865] = 1857, - [1866] = 1857, - [1867] = 1819, - [1868] = 1857, - [1869] = 1857, - [1870] = 1825, - [1871] = 1826, - [1872] = 1816, - [1873] = 926, - [1874] = 1874, - [1875] = 1875, - [1876] = 927, - [1877] = 1819, - [1878] = 1820, - [1879] = 1823, - [1880] = 1822, - [1881] = 1825, - [1882] = 1826, - [1883] = 1816, - [1884] = 1884, + [1858] = 1858, + [1859] = 1859, + [1860] = 1860, + [1861] = 1861, + [1862] = 1855, + [1863] = 1863, + [1864] = 1864, + [1865] = 1865, + [1866] = 1866, + [1867] = 1867, + [1868] = 1868, + [1869] = 1869, + [1870] = 1870, + [1871] = 1795, + [1872] = 1790, + [1873] = 1787, + [1874] = 1788, + [1875] = 301, + [1876] = 1876, + [1877] = 1877, + [1878] = 1878, + [1879] = 1795, + [1880] = 1792, + [1881] = 1791, + [1882] = 1793, + [1883] = 1883, + [1884] = 300, [1885] = 1885, - [1886] = 1886, - [1887] = 1887, - [1888] = 1887, - [1889] = 1889, + [1886] = 1795, + [1887] = 268, + [1888] = 1786, + [1889] = 263, [1890] = 1890, - [1891] = 1816, - [1892] = 1826, - [1893] = 1819, - [1894] = 1820, - [1895] = 1828, - [1896] = 1823, - [1897] = 1825, - [1898] = 1822, - [1899] = 1828, - [1900] = 1900, - [1901] = 1901, - [1902] = 1828, - [1903] = 1903, - [1904] = 1904, - [1905] = 1904, - [1906] = 1904, - [1907] = 1904, - [1908] = 1908, - [1909] = 1904, - [1910] = 1904, - [1911] = 1904, - [1912] = 268, - [1913] = 300, - [1914] = 1914, + [1891] = 1877, + [1892] = 1890, + [1893] = 342, + [1894] = 1890, + [1895] = 1890, + [1896] = 1890, + [1897] = 1897, + [1898] = 1890, + [1899] = 342, + [1900] = 302, + [1901] = 300, + [1902] = 1788, + [1903] = 263, + [1904] = 301, + [1905] = 268, + [1906] = 1791, + [1907] = 1907, + [1908] = 1793, + [1909] = 185, + [1910] = 1790, + [1911] = 186, + [1912] = 1907, + [1913] = 1907, + [1914] = 1795, [1915] = 1915, - [1916] = 1915, + [1916] = 1916, [1917] = 1917, - [1918] = 1828, - [1919] = 1919, - [1920] = 1908, - [1921] = 1819, - [1922] = 1820, - [1923] = 1823, - [1924] = 1822, - [1925] = 1825, - [1926] = 1826, - [1927] = 1816, - [1928] = 273, - [1929] = 299, - [1930] = 1817, - [1931] = 1915, - [1932] = 328, - [1933] = 1933, + [1918] = 1786, + [1919] = 1784, + [1920] = 1792, + [1921] = 1787, + [1922] = 1922, + [1923] = 1923, + [1924] = 1792, + [1925] = 1791, + [1926] = 1793, + [1927] = 1786, + [1928] = 378, + [1929] = 1929, + [1930] = 399, + [1931] = 430, + [1932] = 432, + [1933] = 337, [1934] = 1934, - [1935] = 1823, - [1936] = 1822, - [1937] = 1933, - [1938] = 1934, - [1939] = 1934, - [1940] = 1934, + [1935] = 1935, + [1936] = 455, + [1937] = 1929, + [1938] = 1929, + [1939] = 1787, + [1940] = 403, [1941] = 1941, - [1942] = 1934, - [1943] = 328, - [1944] = 1915, - [1945] = 1933, - [1946] = 1816, - [1947] = 1934, - [1948] = 1933, - [1949] = 1934, - [1950] = 1933, - [1951] = 1934, - [1952] = 1820, - [1953] = 1825, - [1954] = 1934, - [1955] = 1817, - [1956] = 1819, - [1957] = 1826, - [1958] = 1915, - [1959] = 305, - [1960] = 1817, - [1961] = 273, + [1942] = 433, + [1943] = 312, + [1944] = 429, + [1945] = 1929, + [1946] = 169, + [1947] = 408, + [1948] = 1941, + [1949] = 1941, + [1950] = 1950, + [1951] = 1951, + [1952] = 1952, + [1953] = 1953, + [1954] = 1954, + [1955] = 345, + [1956] = 1956, + [1957] = 1929, + [1958] = 1958, + [1959] = 1959, + [1960] = 346, + [1961] = 376, [1962] = 1962, - [1963] = 1915, - [1964] = 1828, - [1965] = 301, - [1966] = 300, - [1967] = 299, - [1968] = 1962, - [1969] = 268, - [1970] = 1970, - [1971] = 308, - [1972] = 1972, - [1973] = 1973, - [1974] = 1974, - [1975] = 1975, - [1976] = 1976, + [1963] = 409, + [1964] = 1784, + [1965] = 1965, + [1966] = 1966, + [1967] = 1967, + [1968] = 1968, + [1969] = 442, + [1970] = 404, + [1971] = 405, + [1972] = 362, + [1973] = 1941, + [1974] = 352, + [1975] = 342, + [1976] = 1929, [1977] = 1977, [1978] = 1978, - [1979] = 1979, + [1979] = 1929, [1980] = 1980, - [1981] = 326, - [1982] = 1982, - [1983] = 1983, + [1981] = 1981, + [1982] = 383, + [1983] = 411, [1984] = 1984, [1985] = 1985, [1986] = 1986, - [1987] = 1987, + [1987] = 326, [1988] = 1988, [1989] = 1989, - [1990] = 392, + [1990] = 1990, [1991] = 1991, - [1992] = 397, + [1992] = 1992, [1993] = 1993, [1994] = 1994, [1995] = 1995, [1996] = 1996, [1997] = 1997, - [1998] = 329, - [1999] = 328, - [2000] = 2000, - [2001] = 2001, - [2002] = 339, - [2003] = 2003, - [2004] = 315, - [2005] = 2005, - [2006] = 2006, - [2007] = 455, + [1998] = 1941, + [1999] = 384, + [2000] = 449, + [2001] = 450, + [2002] = 2002, + [2003] = 385, + [2004] = 377, + [2005] = 1788, + [2006] = 1929, + [2007] = 2007, [2008] = 2008, - [2009] = 2009, - [2010] = 389, - [2011] = 1817, - [2012] = 446, - [2013] = 449, - [2014] = 450, + [2009] = 356, + [2010] = 2010, + [2011] = 396, + [2012] = 1790, + [2013] = 419, + [2014] = 1929, [2015] = 2015, - [2016] = 451, - [2017] = 2017, - [2018] = 2018, - [2019] = 1885, - [2020] = 2020, - [2021] = 1884, - [2022] = 457, - [2023] = 328, - [2024] = 1875, - [2025] = 349, - [2026] = 355, - [2027] = 2006, - [2028] = 358, - [2029] = 359, - [2030] = 361, - [2031] = 2031, - [2032] = 362, - [2033] = 363, - [2034] = 2034, - [2035] = 364, - [2036] = 365, - [2037] = 366, - [2038] = 367, - [2039] = 2039, - [2040] = 2006, - [2041] = 377, - [2042] = 379, - [2043] = 380, - [2044] = 2044, - [2045] = 419, - [2046] = 1828, - [2047] = 420, - [2048] = 381, - [2049] = 382, - [2050] = 2034, - [2051] = 383, - [2052] = 384, - [2053] = 385, - [2054] = 393, - [2055] = 394, - [2056] = 395, - [2057] = 2057, - [2058] = 447, - [2059] = 448, - [2060] = 398, - [2061] = 452, - [2062] = 2062, - [2063] = 1962, - [2064] = 2017, - [2065] = 300, - [2066] = 1890, - [2067] = 1903, - [2068] = 2068, - [2069] = 1875, - [2070] = 1915, - [2071] = 1885, - [2072] = 2072, - [2073] = 1885, - [2074] = 2017, - [2075] = 1884, - [2076] = 2076, - [2077] = 2077, - [2078] = 300, - [2079] = 1908, - [2080] = 2017, - [2081] = 301, - [2082] = 305, - [2083] = 2083, - [2084] = 1915, - [2085] = 2085, - [2086] = 2062, - [2087] = 2087, - [2088] = 1828, - [2089] = 2089, - [2090] = 268, - [2091] = 1875, - [2092] = 273, - [2093] = 2093, - [2094] = 2094, - [2095] = 2095, - [2096] = 2017, - [2097] = 1884, - [2098] = 2062, - [2099] = 1901, - [2100] = 2062, - [2101] = 2062, - [2102] = 2062, - [2103] = 2062, - [2104] = 2062, - [2105] = 2062, - [2106] = 1900, - [2107] = 2107, - [2108] = 2108, - [2109] = 268, - [2110] = 299, - [2111] = 2072, - [2112] = 1915, - [2113] = 2017, + [2016] = 420, + [2017] = 349, + [2018] = 422, + [2019] = 424, + [2020] = 435, + [2021] = 444, + [2022] = 342, + [2023] = 2023, + [2024] = 361, + [2025] = 366, + [2026] = 374, + [2027] = 381, + [2028] = 1793, + [2029] = 1788, + [2030] = 169, + [2031] = 1907, + [2032] = 301, + [2033] = 302, + [2034] = 300, + [2035] = 1907, + [2036] = 268, + [2037] = 263, + [2038] = 301, + [2039] = 1795, + [2040] = 2040, + [2041] = 300, + [2042] = 1784, + [2043] = 185, + [2044] = 186, + [2045] = 2045, + [2046] = 2046, + [2047] = 2047, + [2048] = 1833, + [2049] = 2040, + [2050] = 2050, + [2051] = 1877, + [2052] = 1790, + [2053] = 268, + [2054] = 263, + [2055] = 1792, + [2056] = 1791, + [2057] = 1907, + [2058] = 1786, + [2059] = 1787, + [2060] = 435, + [2061] = 405, + [2062] = 1952, + [2063] = 408, + [2064] = 409, + [2065] = 411, + [2066] = 349, + [2067] = 352, + [2068] = 430, + [2069] = 432, + [2070] = 1953, + [2071] = 433, + [2072] = 362, + [2073] = 442, + [2074] = 1954, + [2075] = 1956, + [2076] = 326, + [2077] = 1958, + [2078] = 1959, + [2079] = 356, + [2080] = 396, + [2081] = 419, + [2082] = 337, + [2083] = 420, + [2084] = 312, + [2085] = 422, + [2086] = 429, + [2087] = 345, + [2088] = 346, + [2089] = 424, + [2090] = 342, + [2091] = 1784, + [2092] = 1922, + [2093] = 1965, + [2094] = 1843, + [2095] = 1844, + [2096] = 1845, + [2097] = 1966, + [2098] = 1967, + [2099] = 1968, + [2100] = 342, + [2101] = 444, + [2102] = 361, + [2103] = 169, + [2104] = 366, + [2105] = 374, + [2106] = 1795, + [2107] = 376, + [2108] = 1980, + [2109] = 1981, + [2110] = 2110, + [2111] = 1984, + [2112] = 404, + [2113] = 1986, [2114] = 2114, - [2115] = 2017, - [2116] = 2116, - [2117] = 273, - [2118] = 308, - [2119] = 1915, - [2120] = 299, - [2121] = 2068, - [2122] = 1975, - [2123] = 367, - [2124] = 1875, - [2125] = 446, - [2126] = 389, - [2127] = 449, - [2128] = 2015, - [2129] = 2085, - [2130] = 450, - [2131] = 1994, - [2132] = 358, - [2133] = 455, - [2134] = 328, - [2135] = 419, - [2136] = 420, - [2137] = 392, - [2138] = 1885, - [2139] = 447, - [2140] = 2018, - [2141] = 328, - [2142] = 397, - [2143] = 451, - [2144] = 1995, - [2145] = 2094, + [2115] = 1988, + [2116] = 1989, + [2117] = 1990, + [2118] = 1991, + [2119] = 1992, + [2120] = 1993, + [2121] = 1995, + [2122] = 377, + [2123] = 2123, + [2124] = 2124, + [2125] = 1997, + [2126] = 378, + [2127] = 381, + [2128] = 2128, + [2129] = 2008, + [2130] = 342, + [2131] = 2131, + [2132] = 2015, + [2133] = 383, + [2134] = 2134, + [2135] = 2023, + [2136] = 384, + [2137] = 2137, + [2138] = 1978, + [2139] = 2134, + [2140] = 2140, + [2141] = 385, + [2142] = 1935, + [2143] = 1950, + [2144] = 2144, + [2145] = 342, [2146] = 1996, - [2147] = 377, - [2148] = 452, - [2149] = 2149, - [2150] = 457, - [2151] = 1884, - [2152] = 349, - [2153] = 355, - [2154] = 379, - [2155] = 398, - [2156] = 380, - [2157] = 381, - [2158] = 382, - [2159] = 329, - [2160] = 328, - [2161] = 1972, - [2162] = 2008, - [2163] = 2039, - [2164] = 1977, - [2165] = 1979, - [2166] = 448, - [2167] = 1984, - [2168] = 1989, - [2169] = 1997, - [2170] = 385, - [2171] = 2057, - [2172] = 328, - [2173] = 2149, - [2174] = 1993, - [2175] = 2005, - [2176] = 2031, - [2177] = 2000, - [2178] = 315, - [2179] = 1988, - [2180] = 2087, - [2181] = 2001, - [2182] = 2114, - [2183] = 2044, - [2184] = 1915, - [2185] = 2020, - [2186] = 2085, - [2187] = 1915, - [2188] = 2009, - [2189] = 2087, - [2190] = 2114, - [2191] = 1973, - [2192] = 1974, - [2193] = 1991, - [2194] = 1976, - [2195] = 359, - [2196] = 361, - [2197] = 2149, - [2198] = 393, - [2199] = 362, - [2200] = 363, - [2201] = 1978, - [2202] = 1980, - [2203] = 1982, - [2204] = 364, - [2205] = 394, - [2206] = 1983, - [2207] = 383, - [2208] = 365, - [2209] = 326, - [2210] = 384, - [2211] = 366, - [2212] = 395, - [2213] = 1985, - [2214] = 1986, - [2215] = 1987, - [2216] = 339, - [2217] = 2076, - [2218] = 1962, - [2219] = 2077, - [2220] = 2087, - [2221] = 2107, - [2222] = 2076, - [2223] = 2114, - [2224] = 2108, - [2225] = 1915, - [2226] = 1885, - [2227] = 1875, - [2228] = 1908, - [2229] = 2089, - [2230] = 301, - [2231] = 2107, - [2232] = 2232, - [2233] = 2083, - [2234] = 305, - [2235] = 2093, - [2236] = 1915, - [2237] = 2085, - [2238] = 308, - [2239] = 2077, - [2240] = 1962, - [2241] = 2083, - [2242] = 1903, - [2243] = 1900, - [2244] = 2068, - [2245] = 1890, - [2246] = 2089, - [2247] = 1901, - [2248] = 2248, - [2249] = 1884, - [2250] = 1915, - [2251] = 2093, - [2252] = 2116, - [2253] = 2108, - [2254] = 1908, - [2255] = 308, - [2256] = 2248, - [2257] = 301, - [2258] = 2232, - [2259] = 305, - [2260] = 359, - [2261] = 446, - [2262] = 2089, - [2263] = 379, - [2264] = 2083, - [2265] = 380, - [2266] = 2093, - [2267] = 381, - [2268] = 382, - [2269] = 381, - [2270] = 2005, - [2271] = 419, - [2272] = 447, - [2273] = 382, - [2274] = 2031, - [2275] = 2076, - [2276] = 2077, - [2277] = 383, - [2278] = 384, - [2279] = 2000, - [2280] = 385, - [2281] = 394, - [2282] = 355, - [2283] = 449, - [2284] = 339, - [2285] = 383, - [2286] = 2116, - [2287] = 2057, - [2288] = 1884, - [2289] = 2289, - [2290] = 2005, - [2291] = 384, - [2292] = 2031, - [2293] = 2008, - [2294] = 385, - [2295] = 2295, - [2296] = 1997, - [2297] = 1975, - [2298] = 1903, - [2299] = 447, - [2300] = 355, - [2301] = 326, - [2302] = 1988, - [2303] = 448, - [2304] = 2304, - [2305] = 358, - [2306] = 1972, - [2307] = 358, - [2308] = 2000, - [2309] = 2044, - [2310] = 446, - [2311] = 2001, - [2312] = 2009, - [2313] = 361, - [2314] = 359, - [2315] = 2020, - [2316] = 361, - [2317] = 362, - [2318] = 2094, - [2319] = 326, - [2320] = 392, - [2321] = 393, - [2322] = 363, - [2323] = 1900, - [2324] = 1901, - [2325] = 364, - [2326] = 365, - [2327] = 366, - [2328] = 367, - [2329] = 393, - [2330] = 2001, - [2331] = 394, - [2332] = 2009, - [2333] = 449, - [2334] = 448, - [2335] = 362, - [2336] = 395, - [2337] = 395, - [2338] = 363, - [2339] = 455, - [2340] = 392, - [2341] = 315, - [2342] = 451, - [2343] = 1972, - [2344] = 2008, - [2345] = 2039, - [2346] = 1977, - [2347] = 1979, - [2348] = 1984, - [2349] = 1989, - [2350] = 1903, - [2351] = 1900, - [2352] = 1997, - [2353] = 397, - [2354] = 2044, - [2355] = 397, - [2356] = 1890, - [2357] = 1901, - [2358] = 2020, - [2359] = 2039, - [2360] = 1977, - [2361] = 1875, - [2362] = 398, - [2363] = 1979, - [2364] = 450, - [2365] = 1973, - [2366] = 1974, - [2367] = 1975, - [2368] = 379, - [2369] = 1976, - [2370] = 1978, - [2371] = 1980, - [2372] = 1982, - [2373] = 1983, - [2374] = 398, - [2375] = 1985, - [2376] = 1986, - [2377] = 1987, - [2378] = 1991, + [2147] = 449, + [2148] = 2007, + [2149] = 2010, + [2150] = 450, + [2151] = 2002, + [2152] = 1951, + [2153] = 399, + [2154] = 455, + [2155] = 403, + [2156] = 2140, + [2157] = 2134, + [2158] = 1985, + [2159] = 2110, + [2160] = 1843, + [2161] = 2045, + [2162] = 2144, + [2163] = 2163, + [2164] = 185, + [2165] = 2165, + [2166] = 2166, + [2167] = 2040, + [2168] = 2168, + [2169] = 2169, + [2170] = 2170, + [2171] = 2144, + [2172] = 2172, + [2173] = 1844, + [2174] = 2174, + [2175] = 2175, + [2176] = 2144, + [2177] = 2177, + [2178] = 2178, + [2179] = 2179, + [2180] = 2180, + [2181] = 2181, + [2182] = 2182, + [2183] = 1907, + [2184] = 2184, + [2185] = 2185, + [2186] = 2186, + [2187] = 1907, + [2188] = 2188, + [2189] = 2189, + [2190] = 2190, + [2191] = 2191, + [2192] = 186, + [2193] = 1845, + [2194] = 2194, + [2195] = 2046, + [2196] = 2196, + [2197] = 2047, + [2198] = 2198, + [2199] = 2144, + [2200] = 2200, + [2201] = 2196, + [2202] = 302, + [2203] = 1843, + [2204] = 2144, + [2205] = 2205, + [2206] = 2206, + [2207] = 1885, + [2208] = 1876, + [2209] = 1907, + [2210] = 2210, + [2211] = 1878, + [2212] = 2212, + [2213] = 2213, + [2214] = 302, + [2215] = 2144, + [2216] = 1845, + [2217] = 2210, + [2218] = 185, + [2219] = 186, + [2220] = 1795, + [2221] = 1844, + [2222] = 2182, + [2223] = 2182, + [2224] = 2182, + [2225] = 2182, + [2226] = 2182, + [2227] = 2182, + [2228] = 2182, + [2229] = 2182, + [2230] = 1907, + [2231] = 1883, + [2232] = 2124, + [2233] = 2233, + [2234] = 2234, + [2235] = 2235, + [2236] = 1965, + [2237] = 169, + [2238] = 1966, + [2239] = 378, + [2240] = 381, + [2241] = 383, + [2242] = 384, + [2243] = 385, + [2244] = 435, + [2245] = 1967, + [2246] = 1968, + [2247] = 2007, + [2248] = 1980, + [2249] = 1981, + [2250] = 1984, + [2251] = 1985, + [2252] = 1986, + [2253] = 442, + [2254] = 2254, + [2255] = 449, + [2256] = 1988, + [2257] = 1989, + [2258] = 450, + [2259] = 1990, + [2260] = 1991, + [2261] = 1992, + [2262] = 1993, + [2263] = 1995, + [2264] = 1997, + [2265] = 2010, + [2266] = 2266, + [2267] = 1845, + [2268] = 399, + [2269] = 2269, + [2270] = 455, + [2271] = 377, + [2272] = 1950, + [2273] = 403, + [2274] = 404, + [2275] = 405, + [2276] = 2276, + [2277] = 2277, + [2278] = 2002, + [2279] = 408, + [2280] = 409, + [2281] = 411, + [2282] = 349, + [2283] = 2283, + [2284] = 2284, + [2285] = 352, + [2286] = 2286, + [2287] = 2287, + [2288] = 352, + [2289] = 1951, + [2290] = 430, + [2291] = 1952, + [2292] = 1953, + [2293] = 2254, + [2294] = 432, + [2295] = 1954, + [2296] = 362, + [2297] = 433, + [2298] = 362, + [2299] = 326, + [2300] = 2300, + [2301] = 442, + [2302] = 378, + [2303] = 444, + [2304] = 361, + [2305] = 381, + [2306] = 326, + [2307] = 383, + [2308] = 399, + [2309] = 1956, + [2310] = 455, + [2311] = 404, + [2312] = 1958, + [2313] = 384, + [2314] = 1959, + [2315] = 405, + [2316] = 385, + [2317] = 349, + [2318] = 2318, + [2319] = 408, + [2320] = 366, + [2321] = 2321, + [2322] = 2322, + [2323] = 2323, + [2324] = 2008, + [2325] = 409, + [2326] = 2326, + [2327] = 2327, + [2328] = 2328, + [2329] = 2329, + [2330] = 411, + [2331] = 376, + [2332] = 2332, + [2333] = 1922, + [2334] = 2254, + [2335] = 1965, + [2336] = 1966, + [2337] = 2015, + [2338] = 1967, + [2339] = 1968, + [2340] = 1980, + [2341] = 1981, + [2342] = 1984, + [2343] = 1985, + [2344] = 1986, + [2345] = 312, + [2346] = 1988, + [2347] = 1935, + [2348] = 1989, + [2349] = 1990, + [2350] = 1991, + [2351] = 1992, + [2352] = 1993, + [2353] = 337, + [2354] = 2354, + [2355] = 2355, + [2356] = 2356, + [2357] = 356, + [2358] = 337, + [2359] = 2359, + [2360] = 2360, + [2361] = 1935, + [2362] = 1996, + [2363] = 2363, + [2364] = 312, + [2365] = 2365, + [2366] = 2366, + [2367] = 2367, + [2368] = 429, + [2369] = 2369, + [2370] = 345, + [2371] = 1995, + [2372] = 1997, + [2373] = 2373, + [2374] = 346, + [2375] = 356, + [2376] = 1996, + [2377] = 2002, + [2378] = 1843, [2379] = 2379, - [2380] = 2380, + [2380] = 2008, [2381] = 2381, [2382] = 2382, - [2383] = 452, - [2384] = 1993, - [2385] = 364, - [2386] = 365, - [2387] = 1994, - [2388] = 1995, - [2389] = 1996, - [2390] = 366, - [2391] = 450, - [2392] = 2085, - [2393] = 329, - [2394] = 1908, - [2395] = 380, - [2396] = 1819, - [2397] = 457, - [2398] = 1820, - [2399] = 1823, - [2400] = 1822, - [2401] = 1825, - [2402] = 1826, - [2403] = 1816, - [2404] = 367, - [2405] = 2087, - [2406] = 389, - [2407] = 1908, - [2408] = 2015, - [2409] = 1885, - [2410] = 1976, - [2411] = 349, - [2412] = 1978, - [2413] = 1980, - [2414] = 329, - [2415] = 1973, - [2416] = 1982, - [2417] = 2018, - [2418] = 451, - [2419] = 1983, - [2420] = 1974, - [2421] = 2015, - [2422] = 452, - [2423] = 1985, - [2424] = 420, - [2425] = 389, - [2426] = 1962, - [2427] = 2427, - [2428] = 2428, - [2429] = 1986, - [2430] = 1987, - [2431] = 419, - [2432] = 1991, - [2433] = 339, - [2434] = 420, - [2435] = 377, - [2436] = 2232, - [2437] = 315, - [2438] = 1988, - [2439] = 2439, - [2440] = 2440, - [2441] = 455, - [2442] = 457, - [2443] = 349, - [2444] = 2444, - [2445] = 2057, - [2446] = 1989, - [2447] = 2018, - [2448] = 2108, - [2449] = 1890, - [2450] = 2248, - [2451] = 1984, - [2452] = 1993, - [2453] = 377, - [2454] = 1994, - [2455] = 1995, - [2456] = 1996, - [2457] = 2457, - [2458] = 2458, - [2459] = 1908, - [2460] = 2460, - [2461] = 2248, - [2462] = 2462, - [2463] = 2232, - [2464] = 2232, - [2465] = 2085, - [2466] = 2087, - [2467] = 2467, - [2468] = 1908, - [2469] = 2469, - [2470] = 1908, + [2383] = 2383, + [2384] = 2015, + [2385] = 2385, + [2386] = 2023, + [2387] = 2387, + [2388] = 1978, + [2389] = 2389, + [2390] = 2390, + [2391] = 396, + [2392] = 419, + [2393] = 420, + [2394] = 2394, + [2395] = 2395, + [2396] = 1907, + [2397] = 422, + [2398] = 449, + [2399] = 2007, + [2400] = 424, + [2401] = 450, + [2402] = 2010, + [2403] = 435, + [2404] = 2404, + [2405] = 2405, + [2406] = 444, + [2407] = 1844, + [2408] = 420, + [2409] = 2409, + [2410] = 1897, + [2411] = 2411, + [2412] = 2254, + [2413] = 361, + [2414] = 366, + [2415] = 429, + [2416] = 430, + [2417] = 2023, + [2418] = 374, + [2419] = 374, + [2420] = 2163, + [2421] = 2421, + [2422] = 433, + [2423] = 345, + [2424] = 403, + [2425] = 1950, + [2426] = 396, + [2427] = 419, + [2428] = 2194, + [2429] = 1951, + [2430] = 432, + [2431] = 1952, + [2432] = 1953, + [2433] = 1907, + [2434] = 1954, + [2435] = 2435, + [2436] = 1956, + [2437] = 1958, + [2438] = 1959, + [2439] = 2110, + [2440] = 346, + [2441] = 376, + [2442] = 2124, + [2443] = 1978, + [2444] = 422, + [2445] = 424, + [2446] = 377, + [2447] = 1922, + [2448] = 1907, + [2449] = 2449, + [2450] = 2450, + [2451] = 1843, + [2452] = 2212, + [2453] = 1897, + [2454] = 2198, + [2455] = 2206, + [2456] = 2198, + [2457] = 2233, + [2458] = 1883, + [2459] = 2212, + [2460] = 1876, + [2461] = 2175, + [2462] = 2178, + [2463] = 2186, + [2464] = 1844, + [2465] = 2465, + [2466] = 2210, + [2467] = 2233, + [2468] = 1907, + [2469] = 2040, + [2470] = 1885, [2471] = 2471, - [2472] = 1890, - [2473] = 2473, - [2474] = 2474, - [2475] = 2475, - [2476] = 2476, - [2477] = 2379, - [2478] = 2381, - [2479] = 2479, - [2480] = 1903, - [2481] = 2068, - [2482] = 1820, - [2483] = 1823, - [2484] = 1822, - [2485] = 2485, - [2486] = 2486, - [2487] = 2457, - [2488] = 2427, - [2489] = 2489, - [2490] = 1825, - [2491] = 2444, - [2492] = 1900, - [2493] = 1826, - [2494] = 1816, - [2495] = 2428, - [2496] = 2440, - [2497] = 2497, - [2498] = 2498, - [2499] = 2499, - [2500] = 2379, - [2501] = 2462, - [2502] = 2382, - [2503] = 2381, - [2504] = 2504, + [2472] = 2471, + [2473] = 2465, + [2474] = 2175, + [2475] = 2178, + [2476] = 1877, + [2477] = 2206, + [2478] = 2478, + [2479] = 1845, + [2480] = 2186, + [2481] = 1907, + [2482] = 2040, + [2483] = 1878, + [2484] = 2189, + [2485] = 1795, + [2486] = 1907, + [2487] = 1787, + [2488] = 1883, + [2489] = 1885, + [2490] = 1790, + [2491] = 1786, + [2492] = 1788, + [2493] = 1792, + [2494] = 1791, + [2495] = 1793, + [2496] = 1876, + [2497] = 1878, + [2498] = 1876, + [2499] = 1845, + [2500] = 2500, + [2501] = 2501, + [2502] = 2471, + [2503] = 2131, + [2504] = 2128, [2505] = 2505, - [2506] = 2506, - [2507] = 2507, - [2508] = 2460, - [2509] = 2457, - [2510] = 2248, - [2511] = 2107, - [2512] = 1819, - [2513] = 2295, - [2514] = 1962, - [2515] = 2457, - [2516] = 2114, - [2517] = 2517, - [2518] = 2382, - [2519] = 2519, - [2520] = 2520, - [2521] = 301, - [2522] = 2522, - [2523] = 305, - [2524] = 2524, + [2506] = 1878, + [2507] = 1844, + [2508] = 2040, + [2509] = 2189, + [2510] = 2465, + [2511] = 905, + [2512] = 2512, + [2513] = 2513, + [2514] = 2514, + [2515] = 2515, + [2516] = 2194, + [2517] = 904, + [2518] = 1883, + [2519] = 1885, + [2520] = 2110, + [2521] = 2521, + [2522] = 2124, + [2523] = 1843, + [2524] = 1877, [2525] = 2525, - [2526] = 1903, - [2527] = 1900, - [2528] = 2379, - [2529] = 2108, - [2530] = 2089, - [2531] = 2083, - [2532] = 2093, - [2533] = 2076, - [2534] = 2077, - [2535] = 1890, - [2536] = 1901, - [2537] = 1903, - [2538] = 1900, - [2539] = 2085, + [2526] = 2526, + [2527] = 2527, + [2528] = 1790, + [2529] = 2529, + [2530] = 2530, + [2531] = 2531, + [2532] = 2050, + [2533] = 2533, + [2534] = 2534, + [2535] = 2535, + [2536] = 2514, + [2537] = 2174, + [2538] = 1792, + [2539] = 1791, [2540] = 2540, - [2541] = 2289, - [2542] = 2087, - [2543] = 1890, - [2544] = 1901, - [2545] = 1819, - [2546] = 1820, - [2547] = 1823, - [2548] = 1822, - [2549] = 1825, - [2550] = 1826, - [2551] = 1816, - [2552] = 2381, - [2553] = 2382, + [2541] = 2541, + [2542] = 2542, + [2543] = 2177, + [2544] = 2124, + [2545] = 2179, + [2546] = 2180, + [2547] = 2547, + [2548] = 1854, + [2549] = 2181, + [2550] = 2550, + [2551] = 2551, + [2552] = 2552, + [2553] = 2553, [2554] = 2554, - [2555] = 2555, + [2555] = 2188, [2556] = 2556, - [2557] = 2557, - [2558] = 2558, - [2559] = 1901, - [2560] = 2379, - [2561] = 2087, - [2562] = 1908, - [2563] = 1908, - [2564] = 2564, + [2557] = 1877, + [2558] = 2190, + [2559] = 2515, + [2560] = 1883, + [2561] = 2123, + [2562] = 2562, + [2563] = 2563, + [2564] = 1885, [2565] = 2565, - [2566] = 2085, - [2567] = 1875, - [2568] = 1819, - [2569] = 2462, - [2570] = 2380, - [2571] = 1820, - [2572] = 1823, - [2573] = 2304, - [2574] = 1822, - [2575] = 2439, - [2576] = 2068, + [2566] = 2047, + [2567] = 169, + [2568] = 2568, + [2569] = 2569, + [2570] = 2570, + [2571] = 2571, + [2572] = 2172, + [2573] = 2110, + [2574] = 2471, + [2575] = 2575, + [2576] = 2576, [2577] = 2577, - [2578] = 1825, - [2579] = 2579, - [2580] = 2580, - [2581] = 1826, - [2582] = 2582, - [2583] = 2583, - [2584] = 2584, + [2578] = 1876, + [2579] = 2465, + [2580] = 2172, + [2581] = 2137, + [2582] = 2050, + [2583] = 1859, + [2584] = 1867, [2585] = 2585, - [2586] = 1816, - [2587] = 1884, - [2588] = 2085, - [2589] = 2460, - [2590] = 2382, + [2586] = 1878, + [2587] = 2110, + [2588] = 185, + [2589] = 2589, + [2590] = 1865, [2591] = 2591, - [2592] = 1903, - [2593] = 1900, - [2594] = 2108, - [2595] = 2248, - [2596] = 2089, - [2597] = 2457, - [2598] = 2457, - [2599] = 2460, - [2600] = 2083, - [2601] = 2093, - [2602] = 2602, + [2592] = 1866, + [2593] = 1833, + [2594] = 185, + [2595] = 2595, + [2596] = 2185, + [2597] = 2597, + [2598] = 2191, + [2599] = 2165, + [2600] = 1878, + [2601] = 186, + [2602] = 2124, [2603] = 2603, - [2604] = 2604, + [2604] = 1897, [2605] = 2605, - [2606] = 2381, - [2607] = 2607, - [2608] = 2608, + [2606] = 2606, + [2607] = 1864, + [2608] = 1856, [2609] = 2609, - [2610] = 2076, - [2611] = 2077, + [2610] = 1858, + [2611] = 186, [2612] = 2612, - [2613] = 2304, + [2613] = 1863, [2614] = 2614, [2615] = 2615, - [2616] = 1962, + [2616] = 2616, [2617] = 2617, - [2618] = 2114, - [2619] = 2116, - [2620] = 2289, - [2621] = 1890, - [2622] = 2232, - [2623] = 2295, - [2624] = 1901, - [2625] = 2625, - [2626] = 2087, + [2618] = 2234, + [2619] = 2619, + [2620] = 2620, + [2621] = 2621, + [2622] = 2198, + [2623] = 2623, + [2624] = 2206, + [2625] = 2210, + [2626] = 2233, [2627] = 2627, - [2628] = 1903, - [2629] = 1900, + [2628] = 2212, + [2629] = 2629, [2630] = 2630, [2631] = 2631, - [2632] = 2380, + [2632] = 2175, [2633] = 2633, - [2634] = 2439, - [2635] = 1890, - [2636] = 2636, - [2637] = 2462, - [2638] = 1901, - [2639] = 2382, - [2640] = 1885, - [2641] = 2379, - [2642] = 1908, - [2643] = 2643, - [2644] = 2644, - [2645] = 2381, - [2646] = 2646, + [2634] = 2634, + [2635] = 2178, + [2636] = 2186, + [2637] = 1793, + [2638] = 2046, + [2639] = 2639, + [2640] = 2168, + [2641] = 2641, + [2642] = 2040, + [2643] = 1883, + [2644] = 1885, + [2645] = 2181, + [2646] = 2050, [2647] = 2647, - [2648] = 1819, - [2649] = 1820, - [2650] = 1823, - [2651] = 1822, - [2652] = 1825, - [2653] = 2653, - [2654] = 2654, - [2655] = 2655, - [2656] = 2094, - [2657] = 2657, - [2658] = 1826, - [2659] = 1816, - [2660] = 2660, - [2661] = 2076, - [2662] = 2087, - [2663] = 1890, - [2664] = 2458, - [2665] = 2085, - [2666] = 2077, - [2667] = 2519, - [2668] = 2504, - [2669] = 1903, - [2670] = 1900, - [2671] = 2087, - [2672] = 2460, - [2673] = 2489, - [2674] = 2085, - [2675] = 2485, - [2676] = 2114, - [2677] = 2520, - [2678] = 2444, - [2679] = 2504, - [2680] = 1890, - [2681] = 2506, - [2682] = 2507, - [2683] = 2485, - [2684] = 1901, - [2685] = 2505, - [2686] = 2486, - [2687] = 2108, - [2688] = 2517, - [2689] = 2248, - [2690] = 1908, - [2691] = 2691, - [2692] = 2462, - [2693] = 2107, - [2694] = 2458, - [2695] = 2089, - [2696] = 2083, - [2697] = 2093, - [2698] = 1903, - [2699] = 1900, - [2700] = 2108, - [2701] = 2554, - [2702] = 2506, - [2703] = 2703, - [2704] = 2089, - [2705] = 2068, - [2706] = 2093, - [2707] = 2232, - [2708] = 2076, - [2709] = 2077, - [2710] = 2248, - [2711] = 2519, - [2712] = 2507, - [2713] = 1901, - [2714] = 2474, - [2715] = 2554, - [2716] = 2428, - [2717] = 2486, - [2718] = 1908, - [2719] = 2460, - [2720] = 2505, - [2721] = 2721, - [2722] = 2520, - [2723] = 2474, - [2724] = 2462, - [2725] = 2380, - [2726] = 2094, - [2727] = 2440, - [2728] = 2107, - [2729] = 2232, - [2730] = 2232, - [2731] = 2731, - [2732] = 2732, - [2733] = 2733, - [2734] = 2522, - [2735] = 1908, - [2736] = 2517, - [2737] = 2427, - [2738] = 2479, - [2739] = 2114, - [2740] = 1908, - [2741] = 2741, - [2742] = 2083, - [2743] = 1820, - [2744] = 1816, - [2745] = 2114, - [2746] = 2085, - [2747] = 2747, - [2748] = 1901, - [2749] = 2612, - [2750] = 2647, - [2751] = 2379, - [2752] = 2630, - [2753] = 2565, - [2754] = 2625, - [2755] = 2646, - [2756] = 2379, - [2757] = 2381, - [2758] = 1819, - [2759] = 1826, - [2760] = 2479, - [2761] = 2094, - [2762] = 1823, - [2763] = 1822, - [2764] = 1825, - [2765] = 2457, - [2766] = 1826, - [2767] = 1816, - [2768] = 2489, - [2769] = 2087, - [2770] = 2379, - [2771] = 2085, - [2772] = 2381, - [2773] = 1908, - [2774] = 2577, - [2775] = 2582, - [2776] = 2732, - [2777] = 2627, - [2778] = 2602, - [2779] = 2703, - [2780] = 2607, - [2781] = 2781, - [2782] = 2660, - [2783] = 2783, + [2648] = 2648, + [2649] = 1860, + [2650] = 2169, + [2651] = 1868, + [2652] = 1861, + [2653] = 1787, + [2654] = 1877, + [2655] = 1786, + [2656] = 1876, + [2657] = 1878, + [2658] = 1883, + [2659] = 1885, + [2660] = 1788, + [2661] = 1869, + [2662] = 1857, + [2663] = 1877, + [2664] = 2664, + [2665] = 2665, + [2666] = 2666, + [2667] = 1876, + [2668] = 2166, + [2669] = 2123, + [2670] = 1793, + [2671] = 2383, + [2672] = 1897, + [2673] = 2269, + [2674] = 2050, + [2675] = 2365, + [2676] = 2321, + [2677] = 2322, + [2678] = 2385, + [2679] = 2046, + [2680] = 2047, + [2681] = 2366, + [2682] = 2521, + [2683] = 2367, + [2684] = 1883, + [2685] = 1885, + [2686] = 2465, + [2687] = 2329, + [2688] = 2189, + [2689] = 1877, + [2690] = 1833, + [2691] = 2387, + [2692] = 2355, + [2693] = 2389, + [2694] = 2235, + [2695] = 2390, + [2696] = 2137, + [2697] = 2369, + [2698] = 2326, + [2699] = 1786, + [2700] = 2110, + [2701] = 2040, + [2702] = 2359, + [2703] = 2137, + [2704] = 1787, + [2705] = 2360, + [2706] = 2514, + [2707] = 1876, + [2708] = 1791, + [2709] = 1788, + [2710] = 2356, + [2711] = 2515, + [2712] = 1878, + [2713] = 1792, + [2714] = 2394, + [2715] = 2373, + [2716] = 2395, + [2717] = 2471, + [2718] = 1844, + [2719] = 2194, + [2720] = 1876, + [2721] = 2210, + [2722] = 2163, + [2723] = 2328, + [2724] = 1790, + [2725] = 2283, + [2726] = 2284, + [2727] = 1878, + [2728] = 2327, + [2729] = 1843, + [2730] = 2450, + [2731] = 2521, + [2732] = 2286, + [2733] = 2266, + [2734] = 2287, + [2735] = 2354, + [2736] = 1845, + [2737] = 2381, + [2738] = 2382, + [2739] = 2323, + [2740] = 1883, + [2741] = 2277, + [2742] = 1885, + [2743] = 2124, + [2744] = 2206, + [2745] = 1994, + [2746] = 1877, + [2747] = 2137, + [2748] = 2186, + [2749] = 2198, + [2750] = 2750, + [2751] = 1962, + [2752] = 2124, + [2753] = 1876, + [2754] = 1883, + [2755] = 1885, + [2756] = 2110, + [2757] = 2465, + [2758] = 1878, + [2759] = 2206, + [2760] = 1878, + [2761] = 2194, + [2762] = 2123, + [2763] = 1885, + [2764] = 1883, + [2765] = 2521, + [2766] = 2175, + [2767] = 2198, + [2768] = 1934, + [2769] = 2210, + [2770] = 2186, + [2771] = 2178, + [2772] = 1897, + [2773] = 1876, + [2774] = 2233, + [2775] = 2775, + [2776] = 2212, + [2777] = 1977, + [2778] = 2233, + [2779] = 2212, + [2780] = 2175, + [2781] = 2471, + [2782] = 1897, + [2783] = 2178, [2784] = 2784, - [2785] = 1903, - [2786] = 2653, - [2787] = 2522, - [2788] = 2654, - [2789] = 2655, - [2790] = 2653, + [2785] = 1833, + [2786] = 1792, + [2787] = 1791, + [2788] = 2050, + [2789] = 1793, + [2790] = 2123, [2791] = 2791, - [2792] = 2657, - [2793] = 2381, - [2794] = 2591, - [2795] = 2457, - [2796] = 1900, - [2797] = 2636, - [2798] = 2564, - [2799] = 2799, - [2800] = 1825, - [2801] = 2304, - [2802] = 2691, - [2803] = 2439, - [2804] = 2631, - [2805] = 2633, - [2806] = 2721, - [2807] = 2577, - [2808] = 2579, - [2809] = 2809, - [2810] = 2462, - [2811] = 2382, - [2812] = 2116, - [2813] = 335, - [2814] = 2108, - [2815] = 2289, - [2816] = 2816, - [2817] = 2817, - [2818] = 2382, - [2819] = 2089, - [2820] = 2580, - [2821] = 2083, - [2822] = 2093, - [2823] = 2602, - [2824] = 342, + [2792] = 2175, + [2793] = 2047, + [2794] = 1833, + [2795] = 1878, + [2796] = 2178, + [2797] = 2186, + [2798] = 1790, + [2799] = 2210, + [2800] = 336, + [2801] = 2194, + [2802] = 2802, + [2803] = 2471, + [2804] = 2189, + [2805] = 1897, + [2806] = 1877, + [2807] = 2807, + [2808] = 2050, + [2809] = 339, + [2810] = 1786, + [2811] = 2206, + [2812] = 1787, + [2813] = 2515, + [2814] = 1876, + [2815] = 2233, + [2816] = 2212, + [2817] = 2046, + [2818] = 1784, + [2819] = 1883, + [2820] = 2046, + [2821] = 2047, + [2822] = 2131, + [2823] = 1885, + [2824] = 2824, [2825] = 2825, - [2826] = 2295, - [2827] = 2603, - [2828] = 2457, - [2829] = 2582, - [2830] = 2830, - [2831] = 2831, - [2832] = 2583, - [2833] = 2460, - [2834] = 1819, - [2835] = 2835, - [2836] = 2076, - [2837] = 2077, - [2838] = 1820, - [2839] = 2604, - [2840] = 2605, - [2841] = 1823, - [2842] = 2248, - [2843] = 2068, - [2844] = 1822, - [2845] = 1908, - [2846] = 2584, - [2847] = 1825, - [2848] = 1817, - [2849] = 1826, - [2850] = 2607, - [2851] = 2585, - [2852] = 2608, - [2853] = 2232, - [2854] = 2609, - [2855] = 1816, - [2856] = 2856, - [2857] = 2660, - [2858] = 2614, - [2859] = 2107, - [2860] = 2615, - [2861] = 2116, - [2862] = 2379, - [2863] = 2381, - [2864] = 2087, - [2865] = 2617, - [2866] = 1908, - [2867] = 2867, - [2868] = 2382, - [2869] = 2643, - [2870] = 2644, - [2871] = 1890, + [2826] = 2110, + [2827] = 2198, + [2828] = 2137, + [2829] = 2465, + [2830] = 2128, + [2831] = 2514, + [2832] = 1788, + [2833] = 2124, + [2834] = 2189, + [2835] = 1994, + [2836] = 2180, + [2837] = 2515, + [2838] = 1787, + [2839] = 1788, + [2840] = 1878, + [2841] = 2188, + [2842] = 2050, + [2843] = 2190, + [2844] = 2046, + [2845] = 2137, + [2846] = 2175, + [2847] = 1784, + [2848] = 1877, + [2849] = 1962, + [2850] = 2189, + [2851] = 1977, + [2852] = 2047, + [2853] = 1934, + [2854] = 2465, + [2855] = 2194, + [2856] = 1792, + [2857] = 1791, + [2858] = 1793, + [2859] = 2185, + [2860] = 2191, + [2861] = 1790, + [2862] = 1833, + [2863] = 1883, + [2864] = 1885, + [2865] = 2198, + [2866] = 2165, + [2867] = 2166, + [2868] = 2186, + [2869] = 2178, + [2870] = 2870, + [2871] = 2871, [2872] = 2872, [2873] = 2873, [2874] = 2874, - [2875] = 1819, - [2876] = 1820, - [2877] = 1823, - [2878] = 1822, - [2879] = 2382, - [2880] = 2107, - [2881] = 2646, - [2882] = 2609, - [2883] = 2647, - [2884] = 2614, - [2885] = 2083, - [2886] = 2615, - [2887] = 2460, - [2888] = 2831, - [2889] = 2440, - [2890] = 1908, - [2891] = 2617, - [2892] = 2093, - [2893] = 2076, - [2894] = 2085, - [2895] = 2077, - [2896] = 2873, - [2897] = 2625, - [2898] = 1828, - [2899] = 2899, - [2900] = 2232, - [2901] = 2089, - [2902] = 2654, - [2903] = 2655, - [2904] = 2612, - [2905] = 2457, - [2906] = 2657, - [2907] = 2460, - [2908] = 2248, - [2909] = 2591, - [2910] = 2636, - [2911] = 1908, - [2912] = 2564, - [2913] = 2627, - [2914] = 2835, - [2915] = 2631, - [2916] = 2633, - [2917] = 2630, - [2918] = 2295, - [2919] = 2791, - [2920] = 2382, - [2921] = 2232, - [2922] = 2462, - [2923] = 2608, - [2924] = 2381, - [2925] = 2605, - [2926] = 2486, - [2927] = 2579, - [2928] = 2580, - [2929] = 2781, - [2930] = 2583, - [2931] = 2504, - [2932] = 2505, - [2933] = 2584, - [2934] = 2506, - [2935] = 2428, - [2936] = 2507, - [2937] = 1817, - [2938] = 2087, - [2939] = 2585, - [2940] = 2517, - [2941] = 2427, - [2942] = 1903, - [2943] = 2458, - [2944] = 2519, - [2945] = 2520, - [2946] = 2554, - [2947] = 2474, - [2948] = 2462, - [2949] = 1890, - [2950] = 2116, - [2951] = 2094, - [2952] = 2462, - [2953] = 2867, - [2954] = 2289, - [2955] = 2565, - [2956] = 2108, - [2957] = 1901, - [2958] = 2603, - [2959] = 1900, - [2960] = 2604, - [2961] = 2379, - [2962] = 2643, - [2963] = 2644, - [2964] = 2444, - [2965] = 2485, - [2966] = 1823, - [2967] = 2379, - [2968] = 1822, - [2969] = 2969, - [2970] = 2440, - [2971] = 2479, - [2972] = 2077, - [2973] = 2381, - [2974] = 2974, - [2975] = 2248, - [2976] = 2976, - [2977] = 2489, - [2978] = 2379, - [2979] = 2979, - [2980] = 2381, - [2981] = 2981, - [2982] = 2982, - [2983] = 1908, - [2984] = 2577, - [2985] = 2582, - [2986] = 2986, - [2987] = 2987, - [2988] = 2988, - [2989] = 2989, - [2990] = 2990, - [2991] = 2991, - [2992] = 2992, - [2993] = 2993, - [2994] = 2994, + [2875] = 2875, + [2876] = 1876, + [2877] = 2514, + [2878] = 2168, + [2879] = 2169, + [2880] = 2471, + [2881] = 2206, + [2882] = 2882, + [2883] = 2174, + [2884] = 2123, + [2885] = 2233, + [2886] = 2177, + [2887] = 2212, + [2888] = 2179, + [2889] = 1786, + [2890] = 2890, + [2891] = 1786, + [2892] = 2128, + [2893] = 2874, + [2894] = 2233, + [2895] = 2895, + [2896] = 2870, + [2897] = 2205, + [2898] = 2172, + [2899] = 904, + [2900] = 2212, + [2901] = 2873, + [2902] = 2902, + [2903] = 1787, + [2904] = 2206, + [2905] = 2905, + [2906] = 2534, + [2907] = 1790, + [2908] = 2184, + [2909] = 2909, + [2910] = 2910, + [2911] = 2554, + [2912] = 2170, + [2913] = 2514, + [2914] = 2234, + [2915] = 2128, + [2916] = 2465, + [2917] = 2046, + [2918] = 1792, + [2919] = 2050, + [2920] = 905, + [2921] = 1791, + [2922] = 1793, + [2923] = 1792, + [2924] = 1788, + [2925] = 1833, + [2926] = 2926, + [2927] = 2321, + [2928] = 1791, + [2929] = 1793, + [2930] = 1833, + [2931] = 2050, + [2932] = 2178, + [2933] = 2200, + [2934] = 2381, + [2935] = 2935, + [2936] = 2936, + [2937] = 1787, + [2938] = 1786, + [2939] = 1934, + [2940] = 2940, + [2941] = 1994, + [2942] = 2875, + [2943] = 2047, + [2944] = 2326, + [2945] = 2137, + [2946] = 2882, + [2947] = 2947, + [2948] = 2948, + [2949] = 2562, + [2950] = 2950, + [2951] = 2186, + [2952] = 2952, + [2953] = 2953, + [2954] = 2954, + [2955] = 2955, + [2956] = 2956, + [2957] = 2957, + [2958] = 2354, + [2959] = 2046, + [2960] = 2123, + [2961] = 2175, + [2962] = 2553, + [2963] = 2198, + [2964] = 2131, + [2965] = 2131, + [2966] = 2047, + [2967] = 2471, + [2968] = 2189, + [2969] = 2359, + [2970] = 2871, + [2971] = 1977, + [2972] = 2365, + [2973] = 2872, + [2974] = 1962, + [2975] = 1790, + [2976] = 2515, + [2977] = 2181, + [2978] = 1788, + [2979] = 2614, + [2980] = 2895, + [2981] = 2174, + [2982] = 2177, + [2983] = 2179, + [2984] = 2180, + [2985] = 2165, + [2986] = 2188, + [2987] = 2190, + [2988] = 1962, + [2989] = 2166, + [2990] = 2188, + [2991] = 2905, + [2992] = 2123, + [2993] = 2174, + [2994] = 2128, [2995] = 2995, - [2996] = 2602, - [2997] = 2997, - [2998] = 2427, - [2999] = 2607, - [3000] = 2986, - [3001] = 2660, - [3002] = 3002, - [3003] = 2522, - [3004] = 3004, - [3005] = 3005, - [3006] = 3006, - [3007] = 2653, - [3008] = 3008, - [3009] = 3009, - [3010] = 2457, - [3011] = 2457, - [3012] = 1828, - [3013] = 2116, - [3014] = 3014, - [3015] = 2732, - [3016] = 2382, - [3017] = 2232, - [3018] = 3018, - [3019] = 2304, - [3020] = 3020, - [3021] = 1825, - [3022] = 2304, - [3023] = 927, - [3024] = 2987, - [3025] = 2439, - [3026] = 2428, - [3027] = 3008, - [3028] = 3028, - [3029] = 3029, - [3030] = 3030, - [3031] = 2382, - [3032] = 1819, - [3033] = 1820, - [3034] = 1823, - [3035] = 1822, - [3036] = 1825, - [3037] = 1826, - [3038] = 1816, - [3039] = 2382, - [3040] = 2108, - [3041] = 926, - [3042] = 2462, - [3043] = 2107, - [3044] = 2289, - [3045] = 2089, - [3046] = 2691, - [3047] = 2460, - [3048] = 3014, - [3049] = 1826, - [3050] = 2721, - [3051] = 3051, - [3052] = 1819, - [3053] = 1816, - [3054] = 1820, - [3055] = 3055, - [3056] = 1823, - [3057] = 1822, - [3058] = 1825, - [3059] = 1826, - [3060] = 1816, - [3061] = 3061, - [3062] = 2439, - [3063] = 1819, - [3064] = 1820, - [3065] = 2248, - [3066] = 2083, - [3067] = 1823, - [3068] = 1822, - [3069] = 1825, - [3070] = 1826, - [3071] = 2093, - [3072] = 2295, - [3073] = 1820, - [3074] = 2981, - [3075] = 1816, - [3076] = 2703, - [3077] = 1819, - [3078] = 2379, - [3079] = 2381, - [3080] = 2899, - [3081] = 3061, - [3082] = 3018, - [3083] = 2232, - [3084] = 1908, - [3085] = 2076, - [3086] = 2444, - [3087] = 3087, - [3088] = 2520, - [3089] = 2473, - [3090] = 3090, - [3091] = 2558, - [3092] = 3092, - [3093] = 2579, - [3094] = 1828, - [3095] = 2462, - [3096] = 2580, - [3097] = 2988, - [3098] = 171, - [3099] = 3099, - [3100] = 2485, - [3101] = 2486, - [3102] = 2540, - [3103] = 3103, - [3104] = 3104, - [3105] = 301, - [3106] = 3106, - [3107] = 3107, - [3108] = 2856, - [3109] = 3051, - [3110] = 3110, - [3111] = 927, - [3112] = 3112, - [3113] = 2504, - [3114] = 3114, - [3115] = 2505, - [3116] = 2583, - [3117] = 2506, - [3118] = 2507, + [2996] = 2266, + [2997] = 2269, + [2998] = 2177, + [2999] = 2277, + [3000] = 2283, + [3001] = 2284, + [3002] = 2286, + [3003] = 2287, + [3004] = 2235, + [3005] = 2190, + [3006] = 2322, + [3007] = 2323, + [3008] = 2327, + [3009] = 2328, + [3010] = 2329, + [3011] = 1790, + [3012] = 2355, + [3013] = 2356, + [3014] = 2360, + [3015] = 2450, + [3016] = 2179, + [3017] = 2366, + [3018] = 2367, + [3019] = 2168, + [3020] = 2369, + [3021] = 2169, + [3022] = 1786, + [3023] = 1787, + [3024] = 1788, + [3025] = 2995, + [3026] = 2373, + [3027] = 2180, + [3028] = 2382, + [3029] = 2383, + [3030] = 2385, + [3031] = 2387, + [3032] = 2389, + [3033] = 2390, + [3034] = 1792, + [3035] = 1791, + [3036] = 1793, + [3037] = 2394, + [3038] = 2395, + [3039] = 3039, + [3040] = 2131, + [3041] = 2123, + [3042] = 2940, + [3043] = 2595, + [3044] = 2047, + [3045] = 2185, + [3046] = 2163, + [3047] = 2191, + [3048] = 2123, + [3049] = 2926, + [3050] = 3050, + [3051] = 1790, + [3052] = 1786, + [3053] = 1787, + [3054] = 1788, + [3055] = 2189, + [3056] = 1791, + [3057] = 1793, + [3058] = 2046, + [3059] = 2947, + [3060] = 1934, + [3061] = 2047, + [3062] = 1833, + [3063] = 2935, + [3064] = 2950, + [3065] = 2952, + [3066] = 2953, + [3067] = 2954, + [3068] = 2955, + [3069] = 2956, + [3070] = 2957, + [3071] = 2936, + [3072] = 2890, + [3073] = 3039, + [3074] = 1790, + [3075] = 2411, + [3076] = 2050, + [3077] = 2909, + [3078] = 3050, + [3079] = 2421, + [3080] = 3039, + [3081] = 1784, + [3082] = 2276, + [3083] = 3039, + [3084] = 2435, + [3085] = 1786, + [3086] = 1787, + [3087] = 1788, + [3088] = 3039, + [3089] = 1795, + [3090] = 2449, + [3091] = 1792, + [3092] = 1791, + [3093] = 1793, + [3094] = 2050, + [3095] = 2591, + [3096] = 2902, + [3097] = 2137, + [3098] = 2137, + [3099] = 2137, + [3100] = 2046, + [3101] = 2185, + [3102] = 2191, + [3103] = 2514, + [3104] = 2629, + [3105] = 2123, + [3106] = 1977, + [3107] = 2165, + [3108] = 2948, + [3109] = 2166, + [3110] = 1994, + [3111] = 2515, + [3112] = 2409, + [3113] = 2910, + [3114] = 2168, + [3115] = 2169, + [3116] = 1792, + [3117] = 2905, + [3118] = 2940, [3119] = 3119, - [3120] = 3120, - [3121] = 2428, - [3122] = 2584, - [3123] = 3123, - [3124] = 2585, - [3125] = 2997, - [3126] = 2504, - [3127] = 2505, - [3128] = 2295, - [3129] = 2506, - [3130] = 2507, - [3131] = 2474, - [3132] = 3132, - [3133] = 3104, - [3134] = 3134, - [3135] = 2457, - [3136] = 2440, - [3137] = 926, - [3138] = 3138, - [3139] = 2517, - [3140] = 2460, - [3141] = 2475, - [3142] = 2458, - [3143] = 2643, - [3144] = 2524, - [3145] = 2791, - [3146] = 3146, - [3147] = 3147, - [3148] = 3148, - [3149] = 2519, - [3150] = 3150, - [3151] = 3104, - [3152] = 3152, - [3153] = 2554, - [3154] = 2474, - [3155] = 3155, - [3156] = 2644, - [3157] = 3152, - [3158] = 3104, - [3159] = 3159, - [3160] = 2565, - [3161] = 2289, - [3162] = 2831, - [3163] = 2476, - [3164] = 3164, - [3165] = 3165, - [3166] = 2462, - [3167] = 3138, - [3168] = 3168, - [3169] = 3169, - [3170] = 3170, - [3171] = 2835, - [3172] = 2799, - [3173] = 3173, - [3174] = 3002, - [3175] = 3104, - [3176] = 2989, - [3177] = 2990, - [3178] = 2381, - [3179] = 2646, - [3180] = 2603, - [3181] = 3181, - [3182] = 3182, - [3183] = 2982, - [3184] = 2460, - [3185] = 2604, - [3186] = 3186, - [3187] = 2116, - [3188] = 2991, - [3189] = 3189, - [3190] = 2647, - [3191] = 3191, - [3192] = 2525, - [3193] = 2608, - [3194] = 3020, - [3195] = 2609, - [3196] = 2872, - [3197] = 3197, - [3198] = 3198, - [3199] = 3199, - [3200] = 2427, - [3201] = 3201, - [3202] = 3202, - [3203] = 2614, - [3204] = 2969, - [3205] = 2615, - [3206] = 2627, - [3207] = 3207, - [3208] = 2617, - [3209] = 2992, - [3210] = 2462, - [3211] = 2605, - [3212] = 2874, - [3213] = 2625, - [3214] = 2612, - [3215] = 2379, - [3216] = 2555, - [3217] = 305, - [3218] = 3055, - [3219] = 3030, - [3220] = 2457, - [3221] = 2517, - [3222] = 2630, - [3223] = 3223, - [3224] = 2654, - [3225] = 3225, - [3226] = 2655, - [3227] = 2458, - [3228] = 3228, - [3229] = 3229, - [3230] = 2657, - [3231] = 2591, - [3232] = 2519, - [3233] = 2520, - [3234] = 3169, - [3235] = 2636, - [3236] = 1817, - [3237] = 3123, - [3238] = 2564, - [3239] = 3004, - [3240] = 2993, - [3241] = 2382, - [3242] = 3242, - [3243] = 3197, - [3244] = 2379, - [3245] = 2381, - [3246] = 3246, - [3247] = 2631, - [3248] = 2633, - [3249] = 2304, - [3250] = 2497, - [3251] = 2467, - [3252] = 2747, - [3253] = 2781, - [3254] = 3254, - [3255] = 2498, - [3256] = 2499, - [3257] = 1908, - [3258] = 3258, - [3259] = 2556, - [3260] = 3260, - [3261] = 3005, - [3262] = 3262, - [3263] = 2816, - [3264] = 3264, - [3265] = 3265, - [3266] = 2469, - [3267] = 2867, - [3268] = 3009, - [3269] = 2382, - [3270] = 2471, - [3271] = 1819, - [3272] = 1820, - [3273] = 1823, - [3274] = 1822, - [3275] = 1825, - [3276] = 1826, - [3277] = 2817, - [3278] = 1816, - [3279] = 2994, - [3280] = 3280, - [3281] = 2995, - [3282] = 2485, - [3283] = 3029, - [3284] = 2486, - [3285] = 3285, - [3286] = 3028, - [3287] = 3087, - [3288] = 2444, - [3289] = 2873, - [3290] = 3290, - [3291] = 3291, - [3292] = 2554, - [3293] = 3006, - [3294] = 3294, - [3295] = 3295, - [3296] = 2439, - [3297] = 2557, - [3298] = 3298, - [3299] = 3207, - [3300] = 3028, - [3301] = 3197, - [3302] = 3242, - [3303] = 3119, - [3304] = 3199, - [3305] = 1820, - [3306] = 2474, - [3307] = 2979, - [3308] = 2989, - [3309] = 2485, - [3310] = 2990, - [3311] = 2486, - [3312] = 2991, - [3313] = 3182, - [3314] = 2232, - [3315] = 3191, - [3316] = 3018, - [3317] = 171, - [3318] = 3223, - [3319] = 2577, - [3320] = 3246, - [3321] = 3298, - [3322] = 3106, - [3323] = 1823, - [3324] = 2489, - [3325] = 2475, - [3326] = 2582, - [3327] = 2524, - [3328] = 2476, - [3329] = 3120, - [3330] = 2525, - [3331] = 2992, - [3332] = 2899, - [3333] = 2993, - [3334] = 2994, - [3335] = 2995, - [3336] = 2517, - [3337] = 2557, - [3338] = 2558, - [3339] = 2479, - [3340] = 2519, - [3341] = 3280, - [3342] = 2602, - [3343] = 1822, - [3344] = 3099, - [3345] = 3150, - [3346] = 3092, - [3347] = 3029, - [3348] = 2602, - [3349] = 3103, - [3350] = 3294, - [3351] = 3295, - [3352] = 3291, - [3353] = 2458, - [3354] = 2607, - [3355] = 3087, - [3356] = 3168, - [3357] = 3114, - [3358] = 3170, - [3359] = 2607, - [3360] = 2427, - [3361] = 1828, - [3362] = 3229, - [3363] = 2974, - [3364] = 2660, - [3365] = 2660, - [3366] = 3110, - [3367] = 3202, - [3368] = 3368, - [3369] = 3134, - [3370] = 2304, - [3371] = 1826, - [3372] = 3165, - [3373] = 3264, - [3374] = 3374, - [3375] = 2732, - [3376] = 3202, - [3377] = 3290, - [3378] = 3164, - [3379] = 2522, - [3380] = 2522, - [3381] = 3368, - [3382] = 3004, - [3383] = 3090, - [3384] = 2460, - [3385] = 2497, - [3386] = 3386, - [3387] = 3265, - [3388] = 2691, - [3389] = 2499, - [3390] = 3005, - [3391] = 3123, - [3392] = 1825, - [3393] = 3225, - [3394] = 2504, - [3395] = 2981, - [3396] = 2505, - [3397] = 2469, - [3398] = 2506, - [3399] = 2471, - [3400] = 2507, - [3401] = 3006, - [3402] = 2653, - [3403] = 3403, - [3404] = 3198, - [3405] = 3009, - [3406] = 3201, - [3407] = 2473, - [3408] = 2703, - [3409] = 2520, - [3410] = 3148, - [3411] = 2986, - [3412] = 2540, - [3413] = 3132, - [3414] = 3368, - [3415] = 3155, - [3416] = 3260, - [3417] = 2489, - [3418] = 3368, - [3419] = 2248, - [3420] = 2440, - [3421] = 2462, - [3422] = 2721, - [3423] = 2439, - [3424] = 3262, - [3425] = 2982, - [3426] = 3008, - [3427] = 3159, - [3428] = 1817, - [3429] = 2479, - [3430] = 2577, - [3431] = 3146, - [3432] = 2428, - [3433] = 3173, - [3434] = 2460, - [3435] = 2976, - [3436] = 3147, - [3437] = 2462, - [3438] = 2582, - [3439] = 3030, - [3440] = 3254, - [3441] = 3061, - [3442] = 1816, - [3443] = 2498, - [3444] = 2988, - [3445] = 3181, - [3446] = 3258, - [3447] = 3368, - [3448] = 3186, - [3449] = 3285, - [3450] = 2444, - [3451] = 2653, - [3452] = 2555, - [3453] = 3014, - [3454] = 2987, - [3455] = 2556, - [3456] = 1817, - [3457] = 2554, - [3458] = 301, - [3459] = 3107, - [3460] = 305, - [3461] = 1819, - [3462] = 3112, - [3463] = 3368, - [3464] = 3189, - [3465] = 3228, - [3466] = 2467, - [3467] = 2479, - [3468] = 3468, - [3469] = 3051, - [3470] = 3152, - [3471] = 3138, - [3472] = 2627, - [3473] = 2630, - [3474] = 2643, - [3475] = 2644, - [3476] = 2646, - [3477] = 2647, - [3478] = 2612, - [3479] = 2579, - [3480] = 2580, - [3481] = 1819, - [3482] = 2583, - [3483] = 2584, - [3484] = 2585, - [3485] = 3485, - [3486] = 2603, - [3487] = 2604, - [3488] = 2608, - [3489] = 2609, - [3490] = 2614, - [3491] = 2615, - [3492] = 2617, - [3493] = 2625, - [3494] = 2654, - [3495] = 2655, - [3496] = 2657, - [3497] = 2591, - [3498] = 2636, - [3499] = 2564, - [3500] = 2631, - [3501] = 2633, - [3502] = 927, - [3503] = 926, - [3504] = 2969, - [3505] = 3169, - [3506] = 1817, - [3507] = 2831, - [3508] = 2304, - [3509] = 2605, - [3510] = 2068, - [3511] = 2997, - [3512] = 2457, - [3513] = 2094, - [3514] = 2439, - [3515] = 1820, - [3516] = 1823, - [3517] = 1822, - [3518] = 2379, - [3519] = 2381, - [3520] = 3055, - [3521] = 2382, - [3522] = 3002, - [3523] = 2565, - [3524] = 2485, - [3525] = 2486, - [3526] = 1825, - [3527] = 1826, - [3528] = 1816, - [3529] = 3468, - [3530] = 2504, - [3531] = 2505, - [3532] = 2506, - [3533] = 2507, - [3534] = 2872, - [3535] = 2517, - [3536] = 2458, - [3537] = 3468, - [3538] = 2519, - [3539] = 2520, - [3540] = 2627, - [3541] = 2630, - [3542] = 2554, - [3543] = 2873, - [3544] = 2565, - [3545] = 3468, - [3546] = 3546, - [3547] = 2643, - [3548] = 2644, - [3549] = 2646, - [3550] = 2647, - [3551] = 3202, - [3552] = 2489, - [3553] = 1962, - [3554] = 2612, - [3555] = 3468, - [3556] = 2577, - [3557] = 2582, - [3558] = 2791, - [3559] = 3020, - [3560] = 2605, - [3561] = 2602, - [3562] = 3468, - [3563] = 2607, - [3564] = 2660, - [3565] = 2522, - [3566] = 2579, - [3567] = 2580, - [3568] = 2583, - [3569] = 2584, - [3570] = 2585, - [3571] = 3468, - [3572] = 2781, - [3573] = 2653, - [3574] = 2856, - [3575] = 3468, - [3576] = 1962, - [3577] = 3468, - [3578] = 1828, - [3579] = 2703, - [3580] = 2835, - [3581] = 2603, - [3582] = 2604, - [3583] = 2608, - [3584] = 2609, - [3585] = 2614, - [3586] = 2615, - [3587] = 2617, - [3588] = 2625, - [3589] = 2816, - [3590] = 2817, - [3591] = 2732, - [3592] = 2654, - [3593] = 2655, - [3594] = 2657, - [3595] = 2591, - [3596] = 2636, - [3597] = 2564, - [3598] = 2691, - [3599] = 2867, - [3600] = 2631, - [3601] = 2633, - [3602] = 2721, - [3603] = 2799, - [3604] = 2874, - [3605] = 2747, - [3606] = 2474, - [3607] = 3020, - [3608] = 3181, - [3609] = 3225, - [3610] = 2987, - [3611] = 2831, - [3612] = 2517, - [3613] = 3103, - [3614] = 2460, - [3615] = 2458, - [3616] = 3114, - [3617] = 3146, - [3618] = 2519, - [3619] = 2520, - [3620] = 3198, - [3621] = 3201, - [3622] = 3260, - [3623] = 301, - [3624] = 305, - [3625] = 3262, - [3626] = 2974, - [3627] = 2462, - [3628] = 3159, - [3629] = 2554, - [3630] = 2474, - [3631] = 3199, - [3632] = 2479, - [3633] = 3106, - [3634] = 3182, - [3635] = 2489, - [3636] = 2969, - [3637] = 2976, - [3638] = 2979, - [3639] = 3223, - [3640] = 3207, - [3641] = 2577, - [3642] = 1875, - [3643] = 3242, - [3644] = 2582, - [3645] = 3246, - [3646] = 2791, - [3647] = 3020, - [3648] = 3374, - [3649] = 2835, - [3650] = 3119, - [3651] = 3186, - [3652] = 2602, - [3653] = 3294, - [3654] = 3030, - [3655] = 3028, - [3656] = 3029, - [3657] = 3087, - [3658] = 2982, - [3659] = 2607, - [3660] = 3295, - [3661] = 2660, - [3662] = 3290, - [3663] = 3228, - [3664] = 2522, - [3665] = 2867, - [3666] = 3061, - [3667] = 2873, - [3668] = 3280, - [3669] = 2653, - [3670] = 3090, - [3671] = 3258, - [3672] = 3107, - [3673] = 3298, - [3674] = 3112, - [3675] = 3189, - [3676] = 2627, - [3677] = 2630, - [3678] = 2899, - [3679] = 3110, - [3680] = 3018, - [3681] = 2643, - [3682] = 2644, - [3683] = 2646, - [3684] = 2647, - [3685] = 3092, - [3686] = 1828, - [3687] = 2969, - [3688] = 3148, - [3689] = 2612, - [3690] = 3020, - [3691] = 3197, - [3692] = 3009, - [3693] = 2988, - [3694] = 3164, - [3695] = 3155, - [3696] = 2579, - [3697] = 2580, - [3698] = 2583, - [3699] = 2584, - [3700] = 3147, - [3701] = 3701, - [3702] = 3123, - [3703] = 2703, - [3704] = 2475, - [3705] = 2524, - [3706] = 2603, - [3707] = 2604, - [3708] = 2476, - [3709] = 2608, - [3710] = 2609, - [3711] = 2525, - [3712] = 2614, - [3713] = 2615, - [3714] = 2617, - [3715] = 3028, - [3716] = 2625, - [3717] = 1817, - [3718] = 2986, - [3719] = 2989, - [3720] = 2990, - [3721] = 2540, - [3722] = 2485, - [3723] = 2991, - [3724] = 2992, - [3725] = 2993, - [3726] = 2486, - [3727] = 2555, - [3728] = 2994, - [3729] = 2995, - [3730] = 2556, - [3731] = 2557, - [3732] = 2558, - [3733] = 2654, - [3734] = 2655, - [3735] = 3029, - [3736] = 2657, - [3737] = 2591, - [3738] = 2636, - [3739] = 2564, - [3740] = 3087, - [3741] = 2631, - [3742] = 2633, - [3743] = 2497, - [3744] = 3020, - [3745] = 3202, - [3746] = 2467, - [3747] = 3374, - [3748] = 2499, - [3749] = 2469, - [3750] = 2471, - [3751] = 3008, - [3752] = 2473, - [3753] = 3265, - [3754] = 2981, - [3755] = 3014, - [3756] = 2498, - [3757] = 2605, - [3758] = 2732, - [3759] = 2565, - [3760] = 3191, - [3761] = 2982, - [3762] = 2068, - [3763] = 3030, - [3764] = 2988, - [3765] = 2504, - [3766] = 2505, - [3767] = 171, - [3768] = 2989, - [3769] = 2990, - [3770] = 2991, - [3771] = 2992, - [3772] = 2993, - [3773] = 2994, - [3774] = 2995, - [3775] = 3004, - [3776] = 3004, - [3777] = 3005, - [3778] = 3006, - [3779] = 2506, - [3780] = 2507, - [3781] = 2781, - [3782] = 3009, - [3783] = 2691, - [3784] = 3168, - [3785] = 3170, - [3786] = 3229, - [3787] = 3202, - [3788] = 3005, - [3789] = 3173, - [3790] = 3134, - [3791] = 3254, - [3792] = 1885, - [3793] = 2721, - [3794] = 3006, - [3795] = 3264, - [3796] = 3291, - [3797] = 3132, - [3798] = 3165, - [3799] = 3099, - [3800] = 2114, - [3801] = 3120, - [3802] = 1884, - [3803] = 3150, - [3804] = 3285, - [3805] = 2585, - [3806] = 3138, - [3807] = 2995, - [3808] = 3029, - [3809] = 1828, - [3810] = 3087, - [3811] = 2747, - [3812] = 3812, - [3813] = 3008, - [3814] = 2094, - [3815] = 2630, - [3816] = 2835, - [3817] = 2981, - [3818] = 2867, - [3819] = 2603, - [3820] = 2604, - [3821] = 3812, - [3822] = 2602, - [3823] = 3823, - [3824] = 2643, - [3825] = 2644, - [3826] = 2646, - [3827] = 3020, - [3828] = 3020, - [3829] = 2647, - [3830] = 3061, - [3831] = 2608, - [3832] = 2609, - [3833] = 3833, - [3834] = 3018, - [3835] = 2660, - [3836] = 2614, - [3837] = 2615, - [3838] = 3265, - [3839] = 1817, - [3840] = 2617, - [3841] = 1828, - [3842] = 2625, - [3843] = 3030, - [3844] = 2781, - [3845] = 3004, - [3846] = 3169, - [3847] = 2987, - [3848] = 2872, - [3849] = 3812, - [3850] = 3005, - [3851] = 3152, - [3852] = 1908, - [3853] = 3812, - [3854] = 3006, - [3855] = 3051, - [3856] = 3123, - [3857] = 3812, - [3858] = 2612, - [3859] = 3138, - [3860] = 2654, - [3861] = 2565, - [3862] = 3862, - [3863] = 2655, - [3864] = 3864, - [3865] = 1885, - [3866] = 1890, - [3867] = 3812, - [3868] = 2657, - [3869] = 1903, - [3870] = 2591, - [3871] = 3812, - [3872] = 1884, - [3873] = 2489, - [3874] = 2087, - [3875] = 3812, - [3876] = 2831, - [3877] = 3812, - [3878] = 1875, - [3879] = 3197, - [3880] = 3812, - [3881] = 2636, - [3882] = 3812, - [3883] = 3883, - [3884] = 3812, - [3885] = 2068, - [3886] = 3374, - [3887] = 2564, - [3888] = 3055, - [3889] = 2791, - [3890] = 3890, - [3891] = 2899, - [3892] = 3890, - [3893] = 3833, - [3894] = 3020, - [3895] = 3009, - [3896] = 2114, - [3897] = 2856, - [3898] = 2094, - [3899] = 3169, - [3900] = 3191, - [3901] = 927, - [3902] = 2631, - [3903] = 2633, - [3904] = 2982, - [3905] = 2085, - [3906] = 2577, - [3907] = 2873, - [3908] = 2799, - [3909] = 2605, - [3910] = 2874, - [3911] = 2653, - [3912] = 2607, - [3913] = 2579, - [3914] = 2248, - [3915] = 3812, - [3916] = 2580, - [3917] = 926, - [3918] = 2232, - [3919] = 2068, - [3920] = 2582, - [3921] = 2522, - [3922] = 2583, - [3923] = 2584, - [3924] = 2585, - [3925] = 2969, - [3926] = 3265, - [3927] = 3002, - [3928] = 2816, - [3929] = 3014, - [3930] = 2988, - [3931] = 3165, - [3932] = 2085, - [3933] = 1901, - [3934] = 3812, - [3935] = 2817, - [3936] = 1962, - [3937] = 2627, - [3938] = 3191, - [3939] = 3028, - [3940] = 2986, - [3941] = 2989, - [3942] = 2990, - [3943] = 2087, - [3944] = 2997, - [3945] = 3945, - [3946] = 2479, - [3947] = 2991, - [3948] = 2992, - [3949] = 2993, - [3950] = 1900, - [3951] = 3951, - [3952] = 3864, - [3953] = 3833, - [3954] = 3165, - [3955] = 3812, - [3956] = 3020, - [3957] = 2994, - [3958] = 3958, - [3959] = 927, - [3960] = 2583, - [3961] = 2584, - [3962] = 1828, - [3963] = 2585, - [3964] = 2988, - [3965] = 3090, - [3966] = 3103, - [3967] = 2107, - [3968] = 3028, - [3969] = 2986, - [3970] = 2989, - [3971] = 2990, - [3972] = 2991, - [3973] = 2992, - [3974] = 2993, - [3975] = 2994, - [3976] = 2995, - [3977] = 3029, - [3978] = 3087, - [3979] = 3020, - [3980] = 3014, - [3981] = 2116, - [3982] = 3008, - [3983] = 2856, - [3984] = 3107, - [3985] = 2475, - [3986] = 2835, - [3987] = 2603, - [3988] = 2604, - [3989] = 2524, - [3990] = 2608, - [3991] = 2609, - [3992] = 3112, - [3993] = 3114, - [3994] = 2614, - [3995] = 2615, - [3996] = 2617, - [3997] = 2625, - [3998] = 3004, - [3999] = 2476, - [4000] = 3168, - [4001] = 3005, - [4002] = 926, - [4003] = 3264, - [4004] = 2816, - [4005] = 2817, - [4006] = 3006, - [4007] = 2083, - [4008] = 2654, - [4009] = 2655, - [4010] = 2093, - [4011] = 2657, - [4012] = 2591, - [4013] = 2636, - [4014] = 2564, - [4015] = 2899, - [4016] = 3009, - [4017] = 2799, - [4018] = 2874, - [4019] = 2631, - [4020] = 2633, - [4021] = 2747, - [4022] = 2085, - [4023] = 3138, - [4024] = 3189, - [4025] = 3198, - [4026] = 2087, - [4027] = 3864, - [4028] = 3291, - [4029] = 1875, - [4030] = 3201, - [4031] = 3181, - [4032] = 3186, - [4033] = 3191, - [4034] = 3862, - [4035] = 3864, - [4036] = 3202, - [4037] = 2867, - [4038] = 2525, - [4039] = 4039, - [4040] = 2089, - [4041] = 3170, - [4042] = 4042, - [4043] = 3134, - [4044] = 3173, - [4045] = 4045, - [4046] = 4046, - [4047] = 3197, - [4048] = 4045, - [4049] = 4039, - [4050] = 3229, - [4051] = 2094, - [4052] = 2979, - [4053] = 2540, - [4054] = 2873, - [4055] = 2232, - [4056] = 2108, - [4057] = 2248, - [4058] = 3020, - [4059] = 3207, - [4060] = 3260, - [4061] = 3262, - [4062] = 4039, - [4063] = 4042, - [4064] = 2087, - [4065] = 3099, - [4066] = 4045, - [4067] = 301, - [4068] = 3020, - [4069] = 3165, - [4070] = 2473, - [4071] = 4071, - [4072] = 3051, - [4073] = 3110, - [4074] = 4042, - [4075] = 2565, - [4076] = 4045, - [4077] = 3159, - [4078] = 3199, - [4079] = 2969, - [4080] = 3254, - [4081] = 3020, - [4082] = 3120, - [4083] = 171, - [4084] = 2627, - [4085] = 1884, - [4086] = 2076, - [4087] = 2077, - [4088] = 4042, - [4089] = 4045, - [4090] = 3150, - [4091] = 2630, - [4092] = 2085, - [4093] = 2555, - [4094] = 2556, - [4095] = 3123, - [4096] = 3092, - [4097] = 3258, - [4098] = 3202, - [4099] = 3106, - [4100] = 3132, - [4101] = 305, - [4102] = 2981, - [4103] = 1908, - [4104] = 3152, - [4105] = 2791, - [4106] = 2089, - [4107] = 3148, - [4108] = 3155, - [4109] = 2557, - [4110] = 2558, - [4111] = 2643, - [4112] = 2644, - [4113] = 3119, - [4114] = 3265, - [4115] = 4042, - [4116] = 2997, - [4117] = 2646, - [4118] = 3147, - [4119] = 3169, - [4120] = 2647, - [4121] = 3164, - [4122] = 3061, - [4123] = 3228, - [4124] = 2605, - [4125] = 2605, - [4126] = 3018, - [4127] = 3182, - [4128] = 2076, - [4129] = 3030, - [4130] = 2987, - [4131] = 2108, - [4132] = 2077, - [4133] = 1908, - [4134] = 4134, - [4135] = 3055, - [4136] = 4046, - [4137] = 4039, - [4138] = 3280, - [4139] = 4134, - [4140] = 2107, - [4141] = 4046, - [4142] = 4039, - [4143] = 3223, - [4144] = 4134, - [4145] = 3225, - [4146] = 4046, - [4147] = 2612, - [4148] = 4134, - [4149] = 2605, - [4150] = 4046, - [4151] = 3002, - [4152] = 3242, - [4153] = 3246, - [4154] = 2497, - [4155] = 2467, - [4156] = 2498, - [4157] = 2499, - [4158] = 3202, - [4159] = 4159, - [4160] = 2974, - [4161] = 2083, - [4162] = 3146, - [4163] = 3298, - [4164] = 2981, - [4165] = 3061, - [4166] = 3018, - [4167] = 3030, - [4168] = 2987, - [4169] = 2982, - [4170] = 2988, - [4171] = 3028, - [4172] = 2986, - [4173] = 2989, - [4174] = 2990, - [4175] = 2991, - [4176] = 2992, - [4177] = 2993, - [4178] = 2994, - [4179] = 2995, - [4180] = 3029, - [4181] = 3087, - [4182] = 3008, - [4183] = 2976, - [4184] = 3004, - [4185] = 3005, - [4186] = 3006, - [4187] = 3009, - [4188] = 2469, - [4189] = 2471, - [4190] = 4159, - [4191] = 2872, - [4192] = 3014, - [4193] = 2982, - [4194] = 3294, - [4195] = 3295, - [4196] = 1885, - [4197] = 2093, - [4198] = 3290, - [4199] = 4159, - [4200] = 4159, - [4201] = 4134, - [4202] = 4159, - [4203] = 4159, - [4204] = 4159, - [4205] = 4159, - [4206] = 4159, - [4207] = 2579, - [4208] = 2580, - [4209] = 3285, - [4210] = 2473, - [4211] = 3005, - [4212] = 1819, - [4213] = 3120, - [4214] = 3150, - [4215] = 2555, - [4216] = 2556, - [4217] = 3285, - [4218] = 2557, - [4219] = 2558, - [4220] = 3006, - [4221] = 3147, - [4222] = 1890, - [4223] = 3164, - [4224] = 3134, - [4225] = 3182, - [4226] = 3181, - [4227] = 3186, - [4228] = 4228, - [4229] = 4229, - [4230] = 1901, - [4231] = 3223, - [4232] = 1820, - [4233] = 1823, - [4234] = 1822, - [4235] = 3242, - [4236] = 3246, - [4237] = 1875, - [4238] = 2467, - [4239] = 3202, - [4240] = 4240, - [4241] = 2469, - [4242] = 2471, - [4243] = 3294, - [4244] = 3295, - [4245] = 3290, - [4246] = 2114, - [4247] = 2899, - [4248] = 1884, - [4249] = 3090, - [4250] = 1825, - [4251] = 1826, - [4252] = 1816, - [4253] = 3009, - [4254] = 3258, - [4255] = 2116, - [4256] = 3107, - [4257] = 3112, - [4258] = 4229, - [4259] = 3189, - [4260] = 3110, - [4261] = 3092, - [4262] = 1962, - [4263] = 2232, - [4264] = 2988, - [4265] = 2068, - [4266] = 3265, - [4267] = 3864, - [4268] = 3864, + [3120] = 2873, + [3121] = 3121, + [3122] = 3122, + [3123] = 2935, + [3124] = 2359, + [3125] = 2131, + [3126] = 2172, + [3127] = 2354, + [3128] = 3119, + [3129] = 3119, + [3130] = 3122, + [3131] = 2326, + [3132] = 2184, + [3133] = 2936, + [3134] = 2365, + [3135] = 1994, + [3136] = 3136, + [3137] = 1962, + [3138] = 2890, + [3139] = 2174, + [3140] = 2874, + [3141] = 2181, + [3142] = 2381, + [3143] = 2875, + [3144] = 3119, + [3145] = 2170, + [3146] = 2365, + [3147] = 2926, + [3148] = 2177, + [3149] = 1934, + [3150] = 2188, + [3151] = 3119, + [3152] = 2947, + [3153] = 2870, + [3154] = 2950, + [3155] = 2952, + [3156] = 2185, + [3157] = 2953, + [3158] = 3158, + [3159] = 2954, + [3160] = 2234, + [3161] = 2955, + [3162] = 2190, + [3163] = 2191, + [3164] = 2956, + [3165] = 2872, + [3166] = 2165, + [3167] = 2478, + [3168] = 2205, + [3169] = 3119, + [3170] = 2902, + [3171] = 3119, + [3172] = 2948, + [3173] = 2179, + [3174] = 2910, + [3175] = 3122, + [3176] = 2137, + [3177] = 3177, + [3178] = 1795, + [3179] = 2629, + [3180] = 2180, + [3181] = 2166, + [3182] = 2234, + [3183] = 1977, + [3184] = 3122, + [3185] = 3119, + [3186] = 3122, + [3187] = 3187, + [3188] = 2321, + [3189] = 2321, + [3190] = 2871, + [3191] = 1784, + [3192] = 2123, + [3193] = 2595, + [3194] = 2359, + [3195] = 2168, + [3196] = 1784, + [3197] = 2200, + [3198] = 2381, + [3199] = 2326, + [3200] = 2128, + [3201] = 2169, + [3202] = 2882, + [3203] = 2354, + [3204] = 2571, + [3205] = 2957, + [3206] = 2323, + [3207] = 2382, + [3208] = 2389, + [3209] = 2390, + [3210] = 2163, + [3211] = 2383, + [3212] = 2276, + [3213] = 2909, + [3214] = 2366, + [3215] = 2367, + [3216] = 2385, + [3217] = 2387, + [3218] = 2421, + [3219] = 2389, + [3220] = 2390, + [3221] = 2269, + [3222] = 2369, + [3223] = 2409, + [3224] = 2394, + [3225] = 2395, + [3226] = 2205, + [3227] = 2354, + [3228] = 2995, + [3229] = 2383, + [3230] = 2355, + [3231] = 2359, + [3232] = 2356, + [3233] = 2355, + [3234] = 2040, + [3235] = 2277, + [3236] = 2356, + [3237] = 2184, + [3238] = 2040, + [3239] = 2435, + [3240] = 2277, + [3241] = 2385, + [3242] = 2170, + [3243] = 2177, + [3244] = 2365, + [3245] = 2394, + [3246] = 2188, + [3247] = 2283, + [3248] = 2321, + [3249] = 2360, + [3250] = 2284, + [3251] = 2450, + [3252] = 1795, + [3253] = 3050, + [3254] = 2300, + [3255] = 2181, + [3256] = 2449, + [3257] = 2326, + [3258] = 2163, + [3259] = 2366, + [3260] = 2360, + [3261] = 2286, + [3262] = 2172, + [3263] = 2287, + [3264] = 905, + [3265] = 2128, + [3266] = 2329, + [3267] = 2373, + [3268] = 2179, + [3269] = 2367, + [3270] = 2500, + [3271] = 2369, + [3272] = 2450, + [3273] = 2180, + [3274] = 904, + [3275] = 2381, + [3276] = 2318, + [3277] = 2387, + [3278] = 2131, + [3279] = 2190, + [3280] = 2174, + [3281] = 2505, + [3282] = 2235, + [3283] = 2379, + [3284] = 2363, + [3285] = 2327, + [3286] = 2322, + [3287] = 2527, + [3288] = 2404, + [3289] = 2405, + [3290] = 2501, + [3291] = 2332, + [3292] = 2266, + [3293] = 2269, + [3294] = 2373, + [3295] = 2185, + [3296] = 2328, + [3297] = 2283, + [3298] = 2284, + [3299] = 2286, + [3300] = 2287, + [3301] = 2329, + [3302] = 2191, + [3303] = 2411, + [3304] = 2235, + [3305] = 2234, + [3306] = 2382, + [3307] = 2512, + [3308] = 1784, + [3309] = 2266, + [3310] = 2322, + [3311] = 2895, + [3312] = 2323, + [3313] = 2165, + [3314] = 2166, + [3315] = 2200, + [3316] = 2168, + [3317] = 2169, + [3318] = 2327, + [3319] = 2328, + [3320] = 2395, + [3321] = 2168, + [3322] = 2137, + [3323] = 3323, + [3324] = 2172, + [3325] = 2882, + [3326] = 1858, + [3327] = 3177, + [3328] = 1863, + [3329] = 2948, + [3330] = 2359, + [3331] = 2366, + [3332] = 2367, + [3333] = 2381, + [3334] = 1860, + [3335] = 2617, + [3336] = 1868, + [3337] = 1861, + [3338] = 2185, + [3339] = 2191, + [3340] = 2620, + [3341] = 2540, + [3342] = 1869, + [3343] = 1857, + [3344] = 3344, + [3345] = 1843, + [3346] = 2576, + [3347] = 1854, + [3348] = 2369, + [3349] = 1784, + [3350] = 2905, + [3351] = 2512, + [3352] = 2235, + [3353] = 2955, + [3354] = 2952, + [3355] = 2615, + [3356] = 2322, + [3357] = 2577, + [3358] = 2323, + [3359] = 2266, + [3360] = 2616, + [3361] = 2956, + [3362] = 2957, + [3363] = 2585, + [3364] = 2910, + [3365] = 2589, + [3366] = 2373, + [3367] = 2631, + [3368] = 2181, + [3369] = 2664, + [3370] = 2269, + [3371] = 2421, + [3372] = 1844, + [3373] = 2513, + [3374] = 2947, + [3375] = 2210, + [3376] = 2327, + [3377] = 2328, + [3378] = 3378, + [3379] = 2365, + [3380] = 2954, + [3381] = 2329, + [3382] = 2526, + [3383] = 2629, + [3384] = 2541, + [3385] = 2234, + [3386] = 2553, + [3387] = 2200, + [3388] = 2435, + [3389] = 2597, + [3390] = 2165, + [3391] = 2166, + [3392] = 2909, + [3393] = 2169, + [3394] = 2409, + [3395] = 2871, + [3396] = 2872, + [3397] = 1845, + [3398] = 2542, + [3399] = 2603, + [3400] = 2605, + [3401] = 2926, + [3402] = 2609, + [3403] = 2909, + [3404] = 2551, + [3405] = 2552, + [3406] = 2875, + [3407] = 2621, + [3408] = 2277, + [3409] = 2641, + [3410] = 2623, + [3411] = 2449, + [3412] = 2534, + [3413] = 2627, + [3414] = 2614, + [3415] = 2382, + [3416] = 2639, + [3417] = 2940, + [3418] = 2940, + [3419] = 2873, + [3420] = 2383, + [3421] = 2174, + [3422] = 2563, + [3423] = 2385, + [3424] = 2647, + [3425] = 2648, + [3426] = 2935, + [3427] = 2936, + [3428] = 2177, + [3429] = 2179, + [3430] = 2180, + [3431] = 2890, + [3432] = 2355, + [3433] = 2276, + [3434] = 2950, + [3435] = 2356, + [3436] = 2665, + [3437] = 2666, + [3438] = 2554, + [3439] = 2525, + [3440] = 169, + [3441] = 2547, + [3442] = 2630, + [3443] = 2633, + [3444] = 2387, + [3445] = 2411, + [3446] = 2634, + [3447] = 2568, + [3448] = 2389, + [3449] = 2188, + [3450] = 2390, + [3451] = 2190, + [3452] = 2569, + [3453] = 1897, + [3454] = 2163, + [3455] = 2478, + [3456] = 1859, + [3457] = 2575, + [3458] = 2283, + [3459] = 2535, + [3460] = 2562, + [3461] = 2612, + [3462] = 1867, + [3463] = 2595, + [3464] = 2606, + [3465] = 2284, + [3466] = 2277, + [3467] = 3467, + [3468] = 2354, + [3469] = 2550, + [3470] = 2556, + [3471] = 2286, + [3472] = 1865, + [3473] = 2172, + [3474] = 2170, + [3475] = 2210, + [3476] = 1795, + [3477] = 2287, + [3478] = 3177, + [3479] = 2905, + [3480] = 2902, + [3481] = 2394, + [3482] = 185, + [3483] = 2360, + [3484] = 186, + [3485] = 2948, + [3486] = 2570, + [3487] = 2571, + [3488] = 1866, + [3489] = 2395, + [3490] = 2181, + [3491] = 2910, + [3492] = 2619, + [3493] = 2571, + [3494] = 2234, + [3495] = 2926, + [3496] = 2512, + [3497] = 2935, + [3498] = 2874, + [3499] = 2950, + [3500] = 2529, + [3501] = 2952, + [3502] = 2530, + [3503] = 2953, + [3504] = 2953, + [3505] = 2450, + [3506] = 2954, + [3507] = 2909, + [3508] = 2909, + [3509] = 2955, + [3510] = 2956, + [3511] = 2957, + [3512] = 2936, + [3513] = 2902, + [3514] = 2890, + [3515] = 2205, + [3516] = 2533, + [3517] = 2321, + [3518] = 2870, + [3519] = 1864, + [3520] = 2326, + [3521] = 1856, + [3522] = 2571, + [3523] = 2531, + [3524] = 2591, + [3525] = 2184, + [3526] = 2947, + [3527] = 2565, + [3528] = 2895, + [3529] = 1897, + [3530] = 2181, + [3531] = 2269, + [3532] = 3177, + [3533] = 2163, + [3534] = 2389, + [3535] = 2512, + [3536] = 2902, + [3537] = 2390, + [3538] = 2394, + [3539] = 2957, + [3540] = 2381, + [3541] = 2382, + [3542] = 3542, + [3543] = 2909, + [3544] = 3542, + [3545] = 3542, + [3546] = 2383, + [3547] = 1795, + [3548] = 2321, + [3549] = 3549, + [3550] = 2210, + [3551] = 2395, + [3552] = 2385, + [3553] = 1876, + [3554] = 2381, + [3555] = 2360, + [3556] = 2382, + [3557] = 2287, + [3558] = 3558, + [3559] = 2326, + [3560] = 2354, + [3561] = 2321, + [3562] = 2390, + [3563] = 1784, + [3564] = 2355, + [3565] = 2449, + [3566] = 2394, + [3567] = 2366, + [3568] = 2882, + [3569] = 2591, + [3570] = 2266, + [3571] = 2367, + [3572] = 2565, + [3573] = 3050, + [3574] = 3542, + [3575] = 1844, + [3576] = 2395, + [3577] = 2040, + [3578] = 2870, + [3579] = 2327, + [3580] = 2266, + [3581] = 1843, + [3582] = 2614, + [3583] = 2948, + [3584] = 2995, + [3585] = 2269, + [3586] = 3542, + [3587] = 2478, + [3588] = 3588, + [3589] = 3542, + [3590] = 3590, + [3591] = 2926, + [3592] = 2369, + [3593] = 2905, + [3594] = 2194, + [3595] = 2322, + [3596] = 2871, + [3597] = 2323, + [3598] = 2277, + [3599] = 2359, + [3600] = 2286, + [3601] = 2936, + [3602] = 2872, + [3603] = 2379, + [3604] = 2363, + [3605] = 2365, + [3606] = 2355, + [3607] = 3542, + [3608] = 2328, + [3609] = 2110, + [3610] = 2527, + [3611] = 2910, + [3612] = 2890, + [3613] = 2300, + [3614] = 3542, + [3615] = 2404, + [3616] = 2540, + [3617] = 2329, + [3618] = 2373, + [3619] = 2405, + [3620] = 2210, + [3621] = 3542, + [3622] = 2283, + [3623] = 2284, + [3624] = 2409, + [3625] = 2909, + [3626] = 2326, + [3627] = 2935, + [3628] = 2505, + [3629] = 2360, + [3630] = 2450, + [3631] = 2286, + [3632] = 2356, + [3633] = 3549, + [3634] = 2287, + [3635] = 2318, + [3636] = 3636, + [3637] = 2124, + [3638] = 2373, + [3639] = 3558, + [3640] = 2366, + [3641] = 2389, + [3642] = 2619, + [3643] = 2874, + [3644] = 2110, + [3645] = 2950, + [3646] = 3050, + [3647] = 2995, + [3648] = 2387, + [3649] = 2435, + [3650] = 2235, + [3651] = 1883, + [3652] = 3542, + [3653] = 2276, + [3654] = 2356, + [3655] = 2172, + [3656] = 2947, + [3657] = 2387, + [3658] = 2354, + [3659] = 2367, + [3660] = 2500, + [3661] = 2952, + [3662] = 1845, + [3663] = 2383, + [3664] = 2421, + [3665] = 1795, + [3666] = 3542, + [3667] = 2450, + [3668] = 3542, + [3669] = 2540, + [3670] = 2956, + [3671] = 2359, + [3672] = 905, + [3673] = 2501, + [3674] = 2940, + [3675] = 2369, + [3676] = 3542, + [3677] = 2909, + [3678] = 2322, + [3679] = 2323, + [3680] = 2332, + [3681] = 2365, + [3682] = 2234, + [3683] = 3558, + [3684] = 2327, + [3685] = 2328, + [3686] = 2329, + [3687] = 2283, + [3688] = 2284, + [3689] = 2619, + [3690] = 904, + [3691] = 2953, + [3692] = 2954, + [3693] = 3542, + [3694] = 2955, + [3695] = 1885, + [3696] = 2124, + [3697] = 2873, + [3698] = 2385, + [3699] = 2565, + [3700] = 2909, + [3701] = 1878, + [3702] = 2875, + [3703] = 2411, + [3704] = 2235, + [3705] = 3705, + [3706] = 3706, + [3707] = 2530, + [3708] = 3708, + [3709] = 2513, + [3710] = 2533, + [3711] = 1858, + [3712] = 1863, + [3713] = 1844, + [3714] = 3714, + [3715] = 2902, + [3716] = 3716, + [3717] = 3717, + [3718] = 3716, + [3719] = 2621, + [3720] = 2411, + [3721] = 2623, + [3722] = 2948, + [3723] = 2206, + [3724] = 2627, + [3725] = 2194, + [3726] = 3050, + [3727] = 1866, + [3728] = 2910, + [3729] = 2909, + [3730] = 3714, + [3731] = 2175, + [3732] = 2178, + [3733] = 2639, + [3734] = 3708, + [3735] = 2641, + [3736] = 2505, + [3737] = 2614, + [3738] = 2478, + [3739] = 2568, + [3740] = 2905, + [3741] = 3716, + [3742] = 2647, + [3743] = 2648, + [3744] = 2569, + [3745] = 1860, + [3746] = 1868, + [3747] = 2629, + [3748] = 1861, + [3749] = 2525, + [3750] = 2664, + [3751] = 2909, + [3752] = 2526, + [3753] = 1869, + [3754] = 1857, + [3755] = 3714, + [3756] = 2995, + [3757] = 2665, + [3758] = 2666, + [3759] = 2547, + [3760] = 3708, + [3761] = 1859, + [3762] = 2421, + [3763] = 1867, + [3764] = 3716, + [3765] = 2595, + [3766] = 2570, + [3767] = 2630, + [3768] = 2633, + [3769] = 2634, + [3770] = 2355, + [3771] = 2356, + [3772] = 3708, + [3773] = 2909, + [3774] = 2571, + [3775] = 2379, + [3776] = 2360, + [3777] = 2450, + [3778] = 2363, + [3779] = 2575, + [3780] = 2366, + [3781] = 2367, + [3782] = 2531, + [3783] = 2300, + [3784] = 1854, + [3785] = 2369, + [3786] = 2535, + [3787] = 2612, + [3788] = 3708, + [3789] = 2585, + [3790] = 186, + [3791] = 2606, + [3792] = 1845, + [3793] = 2616, + [3794] = 3716, + [3795] = 2631, + [3796] = 2373, + [3797] = 2895, + [3798] = 2435, + [3799] = 2562, + [3800] = 2541, + [3801] = 2542, + [3802] = 2527, + [3803] = 2550, + [3804] = 3708, + [3805] = 2551, + [3806] = 2552, + [3807] = 2556, + [3808] = 2563, + [3809] = 3716, + [3810] = 2449, + [3811] = 2382, + [3812] = 2383, + [3813] = 2385, + [3814] = 2589, + [3815] = 2387, + [3816] = 2404, + [3817] = 2389, + [3818] = 2390, + [3819] = 2617, + [3820] = 2620, + [3821] = 2405, + [3822] = 1865, + [3823] = 2882, + [3824] = 2332, + [3825] = 2603, + [3826] = 2186, + [3827] = 2266, + [3828] = 2394, + [3829] = 2395, + [3830] = 3830, + [3831] = 2269, + [3832] = 169, + [3833] = 1877, + [3834] = 185, + [3835] = 2870, + [3836] = 2277, + [3837] = 2553, + [3838] = 2500, + [3839] = 2597, + [3840] = 2283, + [3841] = 2284, + [3842] = 2871, + [3843] = 2872, + [3844] = 3705, + [3845] = 2286, + [3846] = 2501, + [3847] = 2287, + [3848] = 2619, + [3849] = 2194, + [3850] = 2940, + [3851] = 2873, + [3852] = 2615, + [3853] = 3717, + [3854] = 3706, + [3855] = 3714, + [3856] = 2576, + [3857] = 2554, + [3858] = 1843, + [3859] = 2212, + [3860] = 2926, + [3861] = 905, + [3862] = 2110, + [3863] = 3717, + [3864] = 2124, + [3865] = 3706, + [3866] = 3714, + [3867] = 3717, + [3868] = 2534, + [3869] = 2235, + [3870] = 3706, + [3871] = 2512, + [3872] = 3717, + [3873] = 2591, + [3874] = 2318, + [3875] = 3706, + [3876] = 2947, + [3877] = 3706, + [3878] = 904, + [3879] = 3830, + [3880] = 2935, + [3881] = 1795, + [3882] = 2874, + [3883] = 2950, + [3884] = 2952, + [3885] = 2953, + [3886] = 2954, + [3887] = 2955, + [3888] = 2956, + [3889] = 2957, + [3890] = 2936, + [3891] = 2890, + [3892] = 2909, + [3893] = 2940, + [3894] = 2926, + [3895] = 2947, + [3896] = 2935, + [3897] = 2950, + [3898] = 2952, + [3899] = 2953, + [3900] = 2954, + [3901] = 2955, + [3902] = 2956, + [3903] = 2957, + [3904] = 2936, + [3905] = 2890, + [3906] = 2902, + [3907] = 2948, + [3908] = 2910, + [3909] = 2905, + [3910] = 3705, + [3911] = 2875, + [3912] = 2163, + [3913] = 2322, + [3914] = 2323, + [3915] = 2540, + [3916] = 3590, + [3917] = 2327, + [3918] = 2605, + [3919] = 2328, + [3920] = 2329, + [3921] = 1864, + [3922] = 2571, + [3923] = 1856, + [3924] = 2609, + [3925] = 2565, + [3926] = 2233, + [3927] = 3705, + [3928] = 2529, + [3929] = 3705, + [3930] = 3705, + [3931] = 3714, + [3932] = 3705, + [3933] = 3705, + [3934] = 3705, + [3935] = 2198, + [3936] = 2577, + [3937] = 2571, + [3938] = 2379, + [3939] = 1867, + [3940] = 2890, + [3941] = 904, + [3942] = 2300, + [3943] = 3943, + [3944] = 2630, + [3945] = 2206, + [3946] = 2471, + [3947] = 2585, + [3948] = 2589, + [3949] = 2575, + [3950] = 2568, + [3951] = 1865, + [3952] = 1854, + [3953] = 2569, + [3954] = 2535, + [3955] = 2612, + [3956] = 2947, + [3957] = 2465, + [3958] = 2606, + [3959] = 2478, + [3960] = 2570, + [3961] = 2571, + [3962] = 2550, + [3963] = 2556, + [3964] = 1845, + [3965] = 2040, + [3966] = 2664, + [3967] = 2198, + [3968] = 2902, + [3969] = 2533, + [3970] = 3970, + [3971] = 1866, + [3972] = 2206, + [3973] = 3830, + [3974] = 2871, + [3975] = 2233, + [3976] = 2212, + [3977] = 2895, + [3978] = 2163, + [3979] = 2872, + [3980] = 1877, + [3981] = 2526, + [3982] = 905, + [3983] = 2471, + [3984] = 2175, + [3985] = 2597, + [3986] = 2629, + [3987] = 2909, + [3988] = 2233, + [3989] = 2591, + [3990] = 2212, + [3991] = 2175, + [3992] = 2178, + [3993] = 3993, + [3994] = 2940, + [3995] = 2186, + [3996] = 2873, + [3997] = 2186, + [3998] = 2178, + [3999] = 1860, + [4000] = 4000, + [4001] = 2615, + [4002] = 169, + [4003] = 1861, + [4004] = 185, + [4005] = 2948, + [4006] = 3830, + [4007] = 1897, + [4008] = 2571, + [4009] = 1897, + [4010] = 2318, + [4011] = 186, + [4012] = 3050, + [4013] = 2529, + [4014] = 2465, + [4015] = 4015, + [4016] = 2935, + [4017] = 2198, + [4018] = 2619, + [4019] = 2874, + [4020] = 2603, + [4021] = 2910, + [4022] = 2950, + [4023] = 2952, + [4024] = 2210, + [4025] = 2953, + [4026] = 2534, + [4027] = 2576, + [4028] = 4028, + [4029] = 2605, + [4030] = 2641, + [4031] = 2527, + [4032] = 2926, + [4033] = 2513, + [4034] = 2547, + [4035] = 1856, + [4036] = 2609, + [4037] = 2405, + [4038] = 4038, + [4039] = 2540, + [4040] = 4040, + [4041] = 4000, + [4042] = 2505, + [4043] = 2954, + [4044] = 2955, + [4045] = 2531, + [4046] = 2571, + [4047] = 2956, + [4048] = 2957, + [4049] = 2525, + [4050] = 4000, + [4051] = 2936, + [4052] = 2562, + [4053] = 1858, + [4054] = 1863, + [4055] = 4000, + [4056] = 2577, + [4057] = 2189, + [4058] = 2189, + [4059] = 2617, + [4060] = 2620, + [4061] = 2621, + [4062] = 2554, + [4063] = 2478, + [4064] = 2623, + [4065] = 4000, + [4066] = 2614, + [4067] = 2633, + [4068] = 2634, + [4069] = 4069, + [4070] = 2501, + [4071] = 1859, + [4072] = 1883, + [4073] = 1885, + [4074] = 1795, + [4075] = 904, + [4076] = 2616, + [4077] = 2631, + [4078] = 2627, + [4079] = 2541, + [4080] = 2542, + [4081] = 2905, + [4082] = 1876, + [4083] = 1844, + [4084] = 2551, + [4085] = 1878, + [4086] = 2552, + [4087] = 2563, + [4088] = 3467, + [4089] = 1795, + [4090] = 2512, + [4091] = 2595, + [4092] = 4000, + [4093] = 2500, + [4094] = 4000, + [4095] = 4000, + [4096] = 4000, + [4097] = 2639, + [4098] = 2530, + [4099] = 2647, + [4100] = 2648, + [4101] = 2404, + [4102] = 2553, + [4103] = 1868, + [4104] = 2995, + [4105] = 2363, + [4106] = 2875, + [4107] = 2332, + [4108] = 2565, + [4109] = 1843, + [4110] = 1869, + [4111] = 1857, + [4112] = 2665, + [4113] = 2666, + [4114] = 905, + [4115] = 2870, + [4116] = 1864, + [4117] = 2589, + [4118] = 2648, + [4119] = 1833, + [4120] = 2639, + [4121] = 2554, + [4122] = 2047, + [4123] = 2050, + [4124] = 2547, + [4125] = 3970, + [4126] = 1833, + [4127] = 1868, + [4128] = 2575, + [4129] = 1854, + [4130] = 2641, + [4131] = 2615, + [4132] = 2535, + [4133] = 2529, + [4134] = 2619, + [4135] = 2995, + [4136] = 2501, + [4137] = 1860, + [4138] = 2612, + [4139] = 2629, + [4140] = 1861, + [4141] = 2568, + [4142] = 2569, + [4143] = 2617, + [4144] = 2620, + [4145] = 2606, + [4146] = 2570, + [4147] = 2616, + [4148] = 2631, + [4149] = 2571, + [4150] = 4015, + [4151] = 2513, + [4152] = 2541, + [4153] = 2540, + [4154] = 2465, + [4155] = 2534, + [4156] = 2576, + [4157] = 2542, + [4158] = 2591, + [4159] = 2577, + [4160] = 2550, + [4161] = 2551, + [4162] = 2552, + [4163] = 2556, + [4164] = 2563, + [4165] = 2553, + [4166] = 2565, + [4167] = 2189, + [4168] = 185, + [4169] = 4169, + [4170] = 1867, + [4171] = 3830, + [4172] = 2530, + [4173] = 2533, + [4174] = 186, + [4175] = 2514, + [4176] = 2585, + [4177] = 3830, + [4178] = 1865, + [4179] = 2471, + [4180] = 1869, + [4181] = 2597, + [4182] = 1866, + [4183] = 3830, + [4184] = 3830, + [4185] = 1857, + [4186] = 2465, + [4187] = 3830, + [4188] = 2194, + [4189] = 2501, + [4190] = 2665, + [4191] = 2110, + [4192] = 3830, + [4193] = 2666, + [4194] = 2124, + [4195] = 1877, + [4196] = 2515, + [4197] = 3830, + [4198] = 2603, + [4199] = 2634, + [4200] = 2605, + [4201] = 2571, + [4202] = 1864, + [4203] = 1856, + [4204] = 2609, + [4205] = 2547, + [4206] = 2046, + [4207] = 2627, + [4208] = 1790, + [4209] = 1786, + [4210] = 1787, + [4211] = 1788, + [4212] = 1792, + [4213] = 1791, + [4214] = 1793, + [4215] = 2514, + [4216] = 1858, + [4217] = 1863, + [4218] = 2515, + [4219] = 1859, + [4220] = 2595, + [4221] = 3830, + [4222] = 1883, + [4223] = 1885, + [4224] = 2647, + [4225] = 1876, + [4226] = 1878, + [4227] = 2612, + [4228] = 2562, + [4229] = 2621, + [4230] = 2630, + [4231] = 2664, + [4232] = 2525, + [4233] = 2623, + [4234] = 2526, + [4235] = 2633, + [4236] = 169, + [4237] = 2627, + [4238] = 2614, + [4239] = 3636, + [4240] = 2531, + [4241] = 2571, + [4242] = 2040, + [4243] = 3050, + [4244] = 2471, + [4245] = 2597, + [4246] = 1876, + [4247] = 2575, + [4248] = 2194, + [4249] = 2568, + [4250] = 2639, + [4251] = 2641, + [4252] = 2589, + [4253] = 2569, + [4254] = 2605, + [4255] = 2514, + [4256] = 2621, + [4257] = 1854, + [4258] = 1859, + [4259] = 2595, + [4260] = 2665, + [4261] = 2577, + [4262] = 2556, + [4263] = 2623, + [4264] = 1860, + [4265] = 2570, + [4266] = 2568, + [4267] = 2606, + [4268] = 2569, [4269] = 4269, - [4270] = 3864, - [4271] = 4229, - [4272] = 3138, - [4273] = 1970, - [4274] = 3055, - [4275] = 3169, - [4276] = 2379, - [4277] = 2982, - [4278] = 3152, - [4279] = 2381, - [4280] = 2085, - [4281] = 3132, - [4282] = 3191, - [4283] = 4229, - [4284] = 3146, - [4285] = 2872, - [4286] = 3207, - [4287] = 3008, - [4288] = 2997, - [4289] = 2248, - [4290] = 3225, - [4291] = 301, - [4292] = 2108, - [4293] = 3148, - [4294] = 3958, - [4295] = 2976, - [4296] = 171, - [4297] = 2089, - [4298] = 1885, - [4299] = 3123, - [4300] = 4229, - [4301] = 2083, - [4302] = 2093, - [4303] = 3155, - [4304] = 305, - [4305] = 3103, - [4306] = 3114, - [4307] = 2087, - [4308] = 3165, - [4309] = 4229, - [4310] = 3099, - [4311] = 3201, - [4312] = 3260, - [4313] = 3262, - [4314] = 3159, - [4315] = 3199, - [4316] = 3106, - [4317] = 2076, - [4318] = 2077, - [4319] = 4229, - [4320] = 2475, - [4321] = 2476, - [4322] = 3864, - [4323] = 3020, - [4324] = 2969, - [4325] = 2856, - [4326] = 3028, - [4327] = 2107, - [4328] = 3119, - [4329] = 2986, - [4330] = 2989, - [4331] = 2497, - [4332] = 2498, - [4333] = 2499, - [4334] = 2990, - [4335] = 2991, - [4336] = 2992, - [4337] = 4337, - [4338] = 2993, - [4339] = 2289, - [4340] = 3051, - [4341] = 2295, - [4342] = 2974, - [4343] = 3152, - [4344] = 2816, - [4345] = 2817, - [4346] = 3280, - [4347] = 3864, - [4348] = 2994, - [4349] = 2799, - [4350] = 2874, - [4351] = 2995, - [4352] = 3298, - [4353] = 3168, - [4354] = 3197, - [4355] = 3170, - [4356] = 3029, - [4357] = 2747, - [4358] = 3229, - [4359] = 4359, - [4360] = 3202, - [4361] = 3087, - [4362] = 2981, - [4363] = 2979, - [4364] = 2457, - [4365] = 3173, - [4366] = 3254, - [4367] = 1908, - [4368] = 4368, - [4369] = 926, - [4370] = 2382, - [4371] = 3004, - [4372] = 2524, - [4373] = 1903, - [4374] = 4229, - [4375] = 2114, - [4376] = 4229, - [4377] = 3061, - [4378] = 1900, - [4379] = 3018, - [4380] = 926, - [4381] = 3264, - [4382] = 3291, - [4383] = 927, - [4384] = 1828, - [4385] = 3030, - [4386] = 2987, - [4387] = 2525, - [4388] = 3864, - [4389] = 4389, - [4390] = 3002, - [4391] = 3228, - [4392] = 2540, - [4393] = 927, - [4394] = 3198, - [4395] = 1816, - [4396] = 2558, - [4397] = 2382, - [4398] = 2094, - [4399] = 1819, - [4400] = 3298, - [4401] = 2457, - [4402] = 1823, - [4403] = 2232, - [4404] = 2460, - [4405] = 3169, - [4406] = 3285, - [4407] = 3173, - [4408] = 3242, - [4409] = 3150, - [4410] = 4410, - [4411] = 3246, - [4412] = 3090, - [4413] = 3181, - [4414] = 3120, - [4415] = 3103, - [4416] = 3114, - [4417] = 2382, - [4418] = 1825, - [4419] = 2467, - [4420] = 3223, - [4421] = 1826, - [4422] = 3202, - [4423] = 171, - [4424] = 3265, - [4425] = 2444, - [4426] = 1822, - [4427] = 3823, - [4428] = 3258, - [4429] = 1820, - [4430] = 2473, - [4431] = 3147, - [4432] = 3254, - [4433] = 1823, - [4434] = 3165, - [4435] = 3107, - [4436] = 3112, - [4437] = 1822, - [4438] = 3197, - [4439] = 3051, - [4440] = 2248, - [4441] = 2440, - [4442] = 3123, - [4443] = 3280, - [4444] = 2379, - [4445] = 3164, - [4446] = 3146, - [4447] = 3189, - [4448] = 3198, - [4449] = 2976, - [4450] = 2248, - [4451] = 3201, - [4452] = 3225, - [4453] = 2428, - [4454] = 2108, - [4455] = 1820, - [4456] = 301, - [4457] = 3260, - [4458] = 1908, - [4459] = 2089, - [4460] = 3262, - [4461] = 2462, - [4462] = 2083, - [4463] = 2093, - [4464] = 2524, - [4465] = 1819, - [4466] = 1820, - [4467] = 1823, - [4468] = 1822, - [4469] = 305, - [4470] = 1825, - [4471] = 1826, - [4472] = 1816, - [4473] = 3264, - [4474] = 2076, - [4475] = 2077, - [4476] = 3110, - [4477] = 3159, - [4478] = 3199, - [4479] = 3291, - [4480] = 3092, - [4481] = 3106, - [4482] = 1890, - [4483] = 2525, - [4484] = 2085, - [4485] = 1819, - [4486] = 2555, - [4487] = 1970, - [4488] = 3168, - [4489] = 3138, - [4490] = 3228, - [4491] = 2379, - [4492] = 3170, - [4493] = 3186, - [4494] = 2497, - [4495] = 2469, - [4496] = 2471, - [4497] = 2540, - [4498] = 2381, - [4499] = 2381, - [4500] = 2974, - [4501] = 2460, - [4502] = 2087, - [4503] = 1825, - [4504] = 1901, - [4505] = 3229, - [4506] = 3182, - [4507] = 1826, - [4508] = 2427, - [4509] = 1908, - [4510] = 1816, - [4511] = 2462, - [4512] = 2556, - [4513] = 2557, - [4514] = 2457, - [4515] = 2475, - [4516] = 1903, - [4517] = 2476, - [4518] = 2116, - [4519] = 1900, - [4520] = 2289, - [4521] = 3148, - [4522] = 3294, - [4523] = 2498, - [4524] = 3202, - [4525] = 2499, - [4526] = 3155, - [4527] = 3134, - [4528] = 3295, - [4529] = 1962, - [4530] = 3119, - [4531] = 2295, - [4532] = 2979, - [4533] = 3099, - [4534] = 3191, - [4535] = 3290, - [4536] = 2232, - [4537] = 3207, - [4538] = 3202, - [4539] = 3132, - [4540] = 2428, - [4541] = 2085, - [4542] = 3147, - [4543] = 2469, - [4544] = 3150, - [4545] = 3298, - [4546] = 3112, - [4547] = 2107, - [4548] = 3295, - [4549] = 3260, - [4550] = 2471, - [4551] = 3258, - [4552] = 2497, - [4553] = 2473, - [4554] = 3199, - [4555] = 2444, - [4556] = 3092, - [4557] = 3106, - [4558] = 3262, - [4559] = 2540, - [4560] = 1908, - [4561] = 305, - [4562] = 3182, - [4563] = 1962, - [4564] = 2304, - [4565] = 4565, - [4566] = 3168, - [4567] = 3170, - [4568] = 2427, - [4569] = 3229, - [4570] = 3290, - [4571] = 2232, - [4572] = 4565, - [4573] = 4565, - [4574] = 2555, - [4575] = 1890, - [4576] = 3280, - [4577] = 2108, - [4578] = 2475, - [4579] = 2556, - [4580] = 1903, - [4581] = 4565, - [4582] = 2498, - [4583] = 3223, - [4584] = 3189, - [4585] = 2460, - [4586] = 301, - [4587] = 3225, - [4588] = 1890, - [4589] = 3103, - [4590] = 3285, - [4591] = 4565, - [4592] = 1908, - [4593] = 4565, - [4594] = 4565, - [4595] = 1900, - [4596] = 2077, - [4597] = 2499, - [4598] = 171, - [4599] = 3198, - [4600] = 2304, - [4601] = 2289, - [4602] = 2295, - [4603] = 2439, - [4604] = 3201, - [4605] = 3173, - [4606] = 3114, - [4607] = 2462, - [4608] = 3120, - [4609] = 3242, - [4610] = 3246, - [4611] = 3110, - [4612] = 4565, - [4613] = 3254, - [4614] = 4565, - [4615] = 1901, - [4616] = 2439, - [4617] = 2476, - [4618] = 3294, - [4619] = 2083, - [4620] = 2467, - [4621] = 2093, - [4622] = 3090, - [4623] = 3099, - [4624] = 2248, - [4625] = 2232, - [4626] = 3107, - [4627] = 2440, - [4628] = 1900, - [4629] = 2524, - [4630] = 2087, - [4631] = 1903, - [4632] = 1901, - [4633] = 2248, - [4634] = 3164, - [4635] = 3207, - [4636] = 2525, - [4637] = 3159, - [4638] = 1901, - [4639] = 2557, - [4640] = 2558, - [4641] = 3264, - [4642] = 1890, - [4643] = 3119, - [4644] = 3291, - [4645] = 2076, - [4646] = 2089, - [4647] = 2540, - [4648] = 2460, - [4649] = 2474, - [4650] = 1820, - [4651] = 1823, - [4652] = 1822, - [4653] = 2295, - [4654] = 2557, - [4655] = 2558, - [4656] = 2525, - [4657] = 2382, - [4658] = 2382, - [4659] = 2458, - [4660] = 2076, - [4661] = 2517, - [4662] = 2379, - [4663] = 2556, - [4664] = 2381, - [4665] = 2475, - [4666] = 3546, - [4667] = 927, - [4668] = 2068, - [4669] = 2381, - [4670] = 1908, - [4671] = 3485, - [4672] = 2489, - [4673] = 4071, - [4674] = 2524, - [4675] = 2085, - [4676] = 2519, - [4677] = 2116, - [4678] = 2504, - [4679] = 1890, - [4680] = 2304, - [4681] = 1901, - [4682] = 2473, - [4683] = 2382, - [4684] = 2439, - [4685] = 2289, - [4686] = 926, - [4687] = 2522, - [4688] = 2505, - [4689] = 2486, - [4690] = 2506, - [4691] = 2507, - [4692] = 2520, - [4693] = 2379, - [4694] = 2462, - [4695] = 1819, - [4696] = 3864, - [4697] = 3864, - [4698] = 1820, - [4699] = 1823, - [4700] = 1822, - [4701] = 1825, - [4702] = 1826, - [4703] = 1816, - [4704] = 305, - [4705] = 1825, - [4706] = 1826, - [4707] = 2499, - [4708] = 301, - [4709] = 1816, - [4710] = 2087, + [4270] = 2575, + [4271] = 2534, + [4272] = 2623, + [4273] = 2535, + [4274] = 2562, + [4275] = 2609, + [4276] = 2627, + [4277] = 2541, + [4278] = 2563, + [4279] = 2542, + [4280] = 2137, + [4281] = 2612, + [4282] = 185, + [4283] = 1867, + [4284] = 2471, + [4285] = 4269, + [4286] = 2552, + [4287] = 2606, + [4288] = 1883, + [4289] = 2616, + [4290] = 1885, + [4291] = 1856, + [4292] = 2515, + [4293] = 2631, + [4294] = 4269, + [4295] = 2198, + [4296] = 2206, + [4297] = 4269, + [4298] = 2233, + [4299] = 2212, + [4300] = 3830, + [4301] = 1877, + [4302] = 2175, + [4303] = 2178, + [4304] = 2186, + [4305] = 2123, + [4306] = 1977, + [4307] = 2585, + [4308] = 2535, + [4309] = 169, + [4310] = 2647, + [4311] = 2630, + [4312] = 2589, + [4313] = 1876, + [4314] = 2648, + [4315] = 3830, + [4316] = 3830, + [4317] = 1865, + [4318] = 2585, + [4319] = 2541, + [4320] = 169, + [4321] = 1878, + [4322] = 2131, + [4323] = 2570, + [4324] = 2465, + [4325] = 2550, + [4326] = 2550, + [4327] = 1866, + [4328] = 2551, + [4329] = 186, + [4330] = 3830, + [4331] = 4269, + [4332] = 2551, + [4333] = 2552, + [4334] = 2556, + [4335] = 2563, + [4336] = 1883, + [4337] = 1885, + [4338] = 1863, + [4339] = 2616, + [4340] = 1994, + [4341] = 2666, + [4342] = 2605, + [4343] = 2665, + [4344] = 2554, + [4345] = 1962, + [4346] = 2629, + [4347] = 1876, + [4348] = 4269, + [4349] = 1878, + [4350] = 2630, + [4351] = 2128, + [4352] = 2633, + [4353] = 2631, + [4354] = 2639, + [4355] = 2641, + [4356] = 2633, + [4357] = 2553, + [4358] = 2634, + [4359] = 2040, + [4360] = 2634, + [4361] = 4269, + [4362] = 2597, + [4363] = 1861, + [4364] = 1934, + [4365] = 4269, + [4366] = 2603, + [4367] = 1878, + [4368] = 2603, + [4369] = 2576, + [4370] = 4269, + [4371] = 2647, + [4372] = 2648, + [4373] = 2577, + [4374] = 1868, + [4375] = 2609, + [4376] = 2621, + [4377] = 1858, + [4378] = 2547, + [4379] = 2666, + [4380] = 1869, + [4381] = 1857, + [4382] = 1864, + [4383] = 2194, + [4384] = 2576, + [4385] = 2542, + [4386] = 2046, + [4387] = 1792, + [4388] = 1791, + [4389] = 1868, + [4390] = 2131, + [4391] = 1934, + [4392] = 1865, + [4393] = 1833, + [4394] = 1793, + [4395] = 1962, + [4396] = 3943, + [4397] = 1861, + [4398] = 3830, + [4399] = 185, + [4400] = 2050, + [4401] = 2128, + [4402] = 2471, + [4403] = 1867, + [4404] = 1994, + [4405] = 1863, + [4406] = 1866, + [4407] = 4407, + [4408] = 3830, + [4409] = 1858, + [4410] = 1860, + [4411] = 1878, + [4412] = 2189, + [4413] = 1878, + [4414] = 3943, + [4415] = 2514, + [4416] = 186, + [4417] = 1977, + [4418] = 2210, + [4419] = 2515, + [4420] = 1869, + [4421] = 1883, + [4422] = 2047, + [4423] = 1856, + [4424] = 1883, + [4425] = 1876, + [4426] = 1857, + [4427] = 1885, + [4428] = 1885, + [4429] = 1864, + [4430] = 2128, + [4431] = 1854, + [4432] = 2131, + [4433] = 1859, + [4434] = 1790, + [4435] = 1786, + [4436] = 1787, + [4437] = 1788, + [4438] = 2465, + [4439] = 1876, + [4440] = 2168, + [4441] = 1897, + [4442] = 2180, + [4443] = 2165, + [4444] = 2166, + [4445] = 2435, + [4446] = 2168, + [4447] = 2169, + [4448] = 2165, + [4449] = 1876, + [4450] = 2166, + [4451] = 1962, + [4452] = 1878, + [4453] = 3830, + [4454] = 2421, + [4455] = 1885, + [4456] = 1934, + [4457] = 2137, + [4458] = 3830, + [4459] = 2174, + [4460] = 2110, + [4461] = 2210, + [4462] = 2177, + [4463] = 2179, + [4464] = 2180, + [4465] = 2191, + [4466] = 3943, + [4467] = 2194, + [4468] = 1883, + [4469] = 2191, + [4470] = 2185, + [4471] = 2165, + [4472] = 2166, + [4473] = 2191, + [4474] = 2168, + [4475] = 2169, + [4476] = 2174, + [4477] = 2177, + [4478] = 2179, + [4479] = 2180, + [4480] = 2188, + [4481] = 2190, + [4482] = 2123, + [4483] = 2185, + [4484] = 2188, + [4485] = 2188, + [4486] = 2411, + [4487] = 2190, + [4488] = 4488, + [4489] = 2177, + [4490] = 2169, + [4491] = 1977, + [4492] = 2174, + [4493] = 2190, + [4494] = 2449, + [4495] = 2124, + [4496] = 2179, + [4497] = 1877, + [4498] = 1994, + [4499] = 2185, + [4500] = 4500, + [4501] = 4501, + [4502] = 2128, + [4503] = 2365, + [4504] = 4504, + [4505] = 4505, + [4506] = 4506, + [4507] = 4507, + [4508] = 4508, + [4509] = 4504, + [4510] = 4508, + [4511] = 4506, + [4512] = 2181, + [4513] = 4508, + [4514] = 4504, + [4515] = 4506, + [4516] = 2321, + [4517] = 4504, + [4518] = 3344, + [4519] = 4506, + [4520] = 2471, + [4521] = 4521, + [4522] = 4504, + [4523] = 4523, + [4524] = 4504, + [4525] = 4508, + [4526] = 2277, + [4527] = 3830, + [4528] = 4505, + [4529] = 1784, + [4530] = 4506, + [4531] = 4521, + [4532] = 4508, + [4533] = 4533, + [4534] = 4504, + [4535] = 4038, + [4536] = 2326, + [4537] = 4506, + [4538] = 4538, + [4539] = 4504, + [4540] = 4508, + [4541] = 4028, + [4542] = 4504, + [4543] = 4505, + [4544] = 2514, + [4545] = 4505, + [4546] = 4508, + [4547] = 2515, + [4548] = 2381, + [4549] = 2172, + [4550] = 4521, + [4551] = 4506, + [4552] = 4523, + [4553] = 4506, + [4554] = 4521, + [4555] = 4523, + [4556] = 2354, + [4557] = 4521, + [4558] = 4523, + [4559] = 4508, + [4560] = 3830, + [4561] = 4521, + [4562] = 2234, + [4563] = 4523, + [4564] = 3830, + [4565] = 4521, + [4566] = 4523, + [4567] = 4505, + [4568] = 4521, + [4569] = 4523, + [4570] = 4521, + [4571] = 4523, + [4572] = 4504, + [4573] = 4521, + [4574] = 4523, + [4575] = 4521, + [4576] = 4523, + [4577] = 4505, + [4578] = 4505, + [4579] = 2045, + [4580] = 4500, + [4581] = 4538, + [4582] = 4506, + [4583] = 4523, + [4584] = 2131, + [4585] = 4585, + [4586] = 4504, + [4587] = 4505, + [4588] = 2465, + [4589] = 2359, + [4590] = 4505, + [4591] = 4506, + [4592] = 4506, + [4593] = 4505, + [4594] = 4508, + [4595] = 4500, + [4596] = 4538, + [4597] = 4500, + [4598] = 4500, + [4599] = 4538, + [4600] = 4500, + [4601] = 4538, + [4602] = 2194, + [4603] = 4538, + [4604] = 4500, + [4605] = 4538, + [4606] = 4500, + [4607] = 4538, + [4608] = 4505, + [4609] = 4500, + [4610] = 4538, + [4611] = 4500, + [4612] = 4538, + [4613] = 1897, + [4614] = 4508, + [4615] = 4505, + [4616] = 3830, + [4617] = 4505, + [4618] = 2327, + [4619] = 2266, + [4620] = 2277, + [4621] = 2175, + [4622] = 2515, + [4623] = 2168, + [4624] = 2198, + [4625] = 2163, + [4626] = 2178, + [4627] = 2191, + [4628] = 2166, + [4629] = 2190, + [4630] = 2874, + [4631] = 2875, + [4632] = 2283, + [4633] = 2284, + [4634] = 2185, + [4635] = 2286, + [4636] = 4636, + [4637] = 2169, + [4638] = 2186, + [4639] = 2269, + [4640] = 2287, + [4641] = 2514, + [4642] = 2328, + [4643] = 2382, + [4644] = 2383, + [4645] = 4636, + [4646] = 2385, + [4647] = 2387, + [4648] = 2389, + [4649] = 2390, + [4650] = 4636, + [4651] = 1962, + [4652] = 2329, + [4653] = 4636, + [4654] = 2355, + [4655] = 2356, + [4656] = 2471, + [4657] = 4636, + [4658] = 1934, + [4659] = 2322, + [4660] = 2323, + [4661] = 1977, + [4662] = 2188, + [4663] = 4636, + [4664] = 1795, + [4665] = 2450, + [4666] = 4666, + [4667] = 2235, + [4668] = 2870, + [4669] = 2871, + [4670] = 2872, + [4671] = 2873, + [4672] = 2366, + [4673] = 4636, + [4674] = 2367, + [4675] = 2394, + [4676] = 2514, + [4677] = 2395, + [4678] = 2233, + [4679] = 2212, + [4680] = 2174, + [4681] = 2165, + [4682] = 2515, + [4683] = 2369, + [4684] = 4636, + [4685] = 4636, + [4686] = 4636, + [4687] = 2465, + [4688] = 2177, + [4689] = 4636, + [4690] = 4636, + [4691] = 4636, + [4692] = 4636, + [4693] = 2373, + [4694] = 2179, + [4695] = 4636, + [4696] = 2206, + [4697] = 4636, + [4698] = 1994, + [4699] = 2180, + [4700] = 2360, + [4701] = 2910, + [4702] = 2870, + [4703] = 4703, + [4704] = 1962, + [4705] = 2381, + [4706] = 2950, + [4707] = 2321, + [4708] = 2875, + [4709] = 4709, + [4710] = 2449, [4711] = 4711, - [4712] = 1890, - [4713] = 2379, - [4714] = 2554, - [4715] = 2381, - [4716] = 1901, - [4717] = 1903, - [4718] = 1900, - [4719] = 1819, - [4720] = 2479, - [4721] = 1903, - [4722] = 1908, - [4723] = 1819, - [4724] = 1820, - [4725] = 1823, - [4726] = 2497, - [4727] = 1822, - [4728] = 1825, - [4729] = 1826, - [4730] = 1816, - [4731] = 2457, - [4732] = 2077, - [4733] = 2108, - [4734] = 2467, - [4735] = 1900, - [4736] = 2457, - [4737] = 2089, - [4738] = 2083, - [4739] = 2093, - [4740] = 2555, - [4741] = 2469, - [4742] = 2457, - [4743] = 2471, - [4744] = 2485, - [4745] = 2504, - [4746] = 2585, - [4747] = 2068, - [4748] = 2631, - [4749] = 2660, - [4750] = 2114, - [4751] = 2565, - [4752] = 2504, - [4753] = 2614, - [4754] = 2653, - [4755] = 2615, - [4756] = 2085, - [4757] = 2489, - [4758] = 1908, - [4759] = 2604, - [4760] = 2517, - [4761] = 2636, - [4762] = 2564, - [4763] = 2612, - [4764] = 2633, - [4765] = 2577, - [4766] = 2608, - [4767] = 2085, - [4768] = 2474, - [4769] = 2654, - [4770] = 2579, - [4771] = 2607, - [4772] = 2094, - [4773] = 2580, - [4774] = 2485, - [4775] = 2486, - [4776] = 2458, - [4777] = 2655, - [4778] = 4071, - [4779] = 2505, - [4780] = 1903, - [4781] = 2462, - [4782] = 2643, - [4783] = 2617, - [4784] = 2427, - [4785] = 2609, - [4786] = 2644, - [4787] = 1901, - [4788] = 2444, - [4789] = 2485, - [4790] = 2647, - [4791] = 1900, - [4792] = 2591, - [4793] = 2505, - [4794] = 2630, - [4795] = 2506, - [4796] = 2507, - [4797] = 2486, - [4798] = 2554, - [4799] = 2607, - [4800] = 2087, - [4801] = 2428, - [4802] = 2462, - [4803] = 2440, - [4804] = 2517, - [4805] = 2627, - [4806] = 2458, - [4807] = 2519, - [4808] = 2520, - [4809] = 2460, - [4810] = 2603, - [4811] = 2657, - [4812] = 2625, - [4813] = 2554, - [4814] = 2474, - [4815] = 2519, - [4816] = 2520, - [4817] = 2232, - [4818] = 1890, - [4819] = 1817, - [4820] = 2248, - [4821] = 2582, - [4822] = 2460, - [4823] = 2087, - [4824] = 1908, - [4825] = 2602, - [4826] = 2583, - [4827] = 2506, - [4828] = 2507, - [4829] = 4829, - [4830] = 2584, - [4831] = 2232, - [4832] = 2646, - [4833] = 2564, - [4834] = 4834, - [4835] = 4834, - [4836] = 2627, - [4837] = 2565, - [4838] = 2114, - [4839] = 2382, - [4840] = 2479, - [4841] = 2791, - [4842] = 2489, - [4843] = 2457, - [4844] = 2577, - [4845] = 4845, - [4846] = 2582, - [4847] = 4847, - [4848] = 2873, - [4849] = 2602, - [4850] = 4834, - [4851] = 2607, - [4852] = 2660, - [4853] = 2479, - [4854] = 2612, - [4855] = 2522, - [4856] = 2835, - [4857] = 2653, - [4858] = 2625, - [4859] = 2631, - [4860] = 2085, - [4861] = 2591, - [4862] = 2248, - [4863] = 2577, - [4864] = 4864, - [4865] = 2579, - [4866] = 2602, - [4867] = 2603, - [4868] = 4868, - [4869] = 4869, - [4870] = 2604, - [4871] = 4868, - [4872] = 2379, - [4873] = 2630, - [4874] = 2633, - [4875] = 1908, - [4876] = 4864, - [4877] = 2304, - [4878] = 4869, - [4879] = 4868, - [4880] = 2381, - [4881] = 1819, - [4882] = 4864, - [4883] = 4864, - [4884] = 4869, - [4885] = 4868, - [4886] = 2608, - [4887] = 2609, - [4888] = 4869, - [4889] = 4864, - [4890] = 4890, - [4891] = 2580, - [4892] = 1820, - [4893] = 4869, - [4894] = 4868, - [4895] = 2439, - [4896] = 2653, - [4897] = 1823, - [4898] = 4864, - [4899] = 4869, - [4900] = 4868, - [4901] = 4864, - [4902] = 4869, - [4903] = 4834, - [4904] = 4834, - [4905] = 4868, - [4906] = 4864, - [4907] = 4907, - [4908] = 4869, - [4909] = 4909, - [4910] = 4868, - [4911] = 4864, - [4912] = 4869, - [4913] = 1825, - [4914] = 2867, - [4915] = 4868, - [4916] = 4864, - [4917] = 2654, - [4918] = 4869, - [4919] = 2655, - [4920] = 4868, - [4921] = 1819, - [4922] = 4864, - [4923] = 4869, - [4924] = 2582, - [4925] = 4868, - [4926] = 1820, - [4927] = 4864, - [4928] = 1823, - [4929] = 1822, - [4930] = 1825, - [4931] = 4847, - [4932] = 2605, + [4712] = 2874, + [4713] = 2935, + [4714] = 4709, + [4715] = 2515, + [4716] = 4703, + [4717] = 2936, + [4718] = 2553, + [4719] = 2926, + [4720] = 4703, + [4721] = 2947, + [4722] = 2435, + [4723] = 4709, + [4724] = 2890, + [4725] = 4703, + [4726] = 4709, + [4727] = 2354, + [4728] = 2411, + [4729] = 4709, + [4730] = 4711, + [4731] = 3136, + [4732] = 4732, + [4733] = 2952, + [4734] = 2421, + [4735] = 2905, + [4736] = 2514, + [4737] = 2871, + [4738] = 1833, + [4739] = 2534, + [4740] = 4732, + [4741] = 4732, + [4742] = 4742, + [4743] = 2954, + [4744] = 4744, + [4745] = 2181, + [4746] = 2359, + [4747] = 2326, + [4748] = 2172, + [4749] = 2955, + [4750] = 4732, + [4751] = 1977, + [4752] = 2365, + [4753] = 4703, + [4754] = 2956, + [4755] = 4703, + [4756] = 2940, + [4757] = 2957, + [4758] = 2554, + [4759] = 4709, + [4760] = 2953, + [4761] = 2873, + [4762] = 2046, + [4763] = 1934, + [4764] = 2948, + [4765] = 2902, + [4766] = 2047, + [4767] = 3187, + [4768] = 2189, + [4769] = 4732, + [4770] = 2562, + [4771] = 2234, + [4772] = 4732, + [4773] = 1994, + [4774] = 2872, + [4775] = 3050, + [4776] = 2450, + [4777] = 2322, + [4778] = 2515, + [4779] = 2449, + [4780] = 1784, + [4781] = 2286, + [4782] = 2383, + [4783] = 1977, + [4784] = 2329, + [4785] = 2421, + [4786] = 2595, + [4787] = 3050, + [4788] = 2366, + [4789] = 1784, + [4790] = 2394, + [4791] = 2367, + [4792] = 2323, + [4793] = 2411, + [4794] = 1934, + [4795] = 3705, + [4796] = 2284, + [4797] = 2995, + [4798] = 2387, + [4799] = 2328, + [4800] = 1994, + [4801] = 2123, + [4802] = 2235, + [4803] = 1962, + [4804] = 2266, + [4805] = 2435, + [4806] = 2369, + [4807] = 2629, + [4808] = 2327, + [4809] = 2389, + [4810] = 2373, + [4811] = 2514, + [4812] = 2995, + [4813] = 2163, + [4814] = 2385, + [4815] = 2287, + [4816] = 2355, + [4817] = 2390, + [4818] = 2283, + [4819] = 2269, + [4820] = 2382, + [4821] = 2356, + [4822] = 2277, + [4823] = 2360, + [4824] = 2395, + [4825] = 3705, + [4826] = 2954, + [4827] = 2890, + [4828] = 1778, + [4829] = 1859, + [4830] = 1867, + [4831] = 2595, + [4832] = 1865, + [4833] = 1866, + [4834] = 2926, + [4835] = 2128, + [4836] = 2947, + [4837] = 1864, + [4838] = 1856, + [4839] = 2950, + [4840] = 2952, + [4841] = 2953, + [4842] = 2954, + [4843] = 2955, + [4844] = 2956, + [4845] = 2957, + [4846] = 1858, + [4847] = 1863, + [4848] = 2131, + [4849] = 2902, + [4850] = 1860, + [4851] = 1868, + [4852] = 1861, + [4853] = 2948, + [4854] = 1869, + [4855] = 1857, + [4856] = 2910, + [4857] = 2905, + [4858] = 1854, + [4859] = 4859, + [4860] = 2629, + [4861] = 2123, + [4862] = 2902, + [4863] = 337, + [4864] = 2926, + [4865] = 185, + [4866] = 186, + [4867] = 2948, + [4868] = 1795, + [4869] = 312, + [4870] = 429, + [4871] = 345, + [4872] = 2910, + [4873] = 346, + [4874] = 4859, + [4875] = 4875, + [4876] = 4876, + [4877] = 4877, + [4878] = 4878, + [4879] = 4879, + [4880] = 4880, + [4881] = 4879, + [4882] = 4880, + [4883] = 4875, + [4884] = 4876, + [4885] = 4878, + [4886] = 4879, + [4887] = 4880, + [4888] = 4878, + [4889] = 2905, + [4890] = 4742, + [4891] = 2940, + [4892] = 4877, + [4893] = 4878, + [4894] = 2947, + [4895] = 2870, + [4896] = 2871, + [4897] = 2872, + [4898] = 2940, + [4899] = 2873, + [4900] = 2874, + [4901] = 2875, + [4902] = 4902, + [4903] = 2478, + [4904] = 1784, + [4905] = 2935, + [4906] = 2936, + [4907] = 2890, + [4908] = 2935, + [4909] = 2950, + [4910] = 2952, + [4911] = 2953, + [4912] = 2955, + [4913] = 2956, + [4914] = 2957, + [4915] = 2936, + [4916] = 4916, + [4917] = 2465, + [4918] = 2188, + [4919] = 4879, + [4920] = 4880, + [4921] = 2190, + [4922] = 2174, + [4923] = 2234, + [4924] = 2165, + [4925] = 2210, + [4926] = 3378, + [4927] = 2177, + [4928] = 3050, + [4929] = 3467, + [4930] = 2179, + [4931] = 2180, + [4932] = 1795, [4933] = 4933, - [4934] = 1826, - [4935] = 1816, - [4936] = 2660, - [4937] = 2657, - [4938] = 1826, - [4939] = 2522, - [4940] = 1816, - [4941] = 2379, - [4942] = 2643, - [4943] = 4847, - [4944] = 4933, - [4945] = 4847, - [4946] = 4933, - [4947] = 4847, - [4948] = 4933, - [4949] = 2614, - [4950] = 2615, - [4951] = 4847, - [4952] = 4933, - [4953] = 4847, - [4954] = 2617, - [4955] = 4933, - [4956] = 4847, - [4957] = 4933, - [4958] = 2644, - [4959] = 4847, - [4960] = 2583, - [4961] = 4933, - [4962] = 2584, - [4963] = 4847, - [4964] = 4933, - [4965] = 4847, - [4966] = 4933, - [4967] = 4847, - [4968] = 4933, - [4969] = 2381, - [4970] = 2636, - [4971] = 4907, - [4972] = 2382, - [4973] = 4909, - [4974] = 2087, - [4975] = 4975, - [4976] = 2232, - [4977] = 2585, - [4978] = 4834, - [4979] = 4933, - [4980] = 2646, - [4981] = 2647, - [4982] = 4907, - [4983] = 4909, - [4984] = 4907, - [4985] = 4909, - [4986] = 4907, - [4987] = 4909, - [4988] = 4907, - [4989] = 4909, - [4990] = 4907, - [4991] = 4909, - [4992] = 4907, - [4993] = 4909, - [4994] = 4907, - [4995] = 4909, - [4996] = 4907, - [4997] = 4909, - [4998] = 2094, - [4999] = 4907, - [5000] = 4909, - [5001] = 4907, - [5002] = 4909, - [5003] = 4834, - [5004] = 5004, - [5005] = 1822, - [5006] = 2519, - [5007] = 4389, - [5008] = 2093, - [5009] = 2505, - [5010] = 2603, - [5011] = 2604, - [5012] = 2506, - [5013] = 2507, - [5014] = 1828, - [5015] = 2460, - [5016] = 927, - [5017] = 5017, - [5018] = 1970, - [5019] = 2248, - [5020] = 2565, - [5021] = 3883, - [5022] = 5017, - [5023] = 5017, - [5024] = 2608, - [5025] = 2462, - [5026] = 2609, - [5027] = 2643, - [5028] = 2873, - [5029] = 2076, - [5030] = 2614, - [5031] = 2077, - [5032] = 2615, - [5033] = 2644, - [5034] = 2617, - [5035] = 2646, - [5036] = 2625, - [5037] = 2647, - [5038] = 3701, - [5039] = 2107, - [5040] = 2654, - [5041] = 2517, - [5042] = 2655, - [5043] = 5017, - [5044] = 2657, - [5045] = 2591, - [5046] = 5017, - [5047] = 2458, - [5048] = 2636, - [5049] = 2605, - [5050] = 2504, - [5051] = 2564, - [5052] = 2631, - [5053] = 2633, - [5054] = 2089, - [5055] = 2605, - [5056] = 2612, - [5057] = 2899, - [5058] = 2232, - [5059] = 2462, - [5060] = 4269, - [5061] = 3958, - [5062] = 2108, - [5063] = 4337, - [5064] = 1908, - [5065] = 2485, - [5066] = 2554, - [5067] = 2083, - [5068] = 2474, - [5069] = 2486, - [5070] = 2835, - [5071] = 2579, - [5072] = 2580, - [5073] = 1828, - [5074] = 2627, - [5075] = 2583, - [5076] = 2584, - [5077] = 5017, - [5078] = 2585, - [5079] = 2791, - [5080] = 4240, - [5081] = 2630, - [5082] = 2289, - [5083] = 2295, - [5084] = 5017, - [5085] = 5085, - [5086] = 5017, - [5087] = 2867, - [5088] = 2232, - [5089] = 3945, - [5090] = 926, - [5091] = 2520, - [5092] = 1828, - [5093] = 2489, - [5094] = 1819, - [5095] = 2232, - [5096] = 2899, - [5097] = 3008, - [5098] = 3061, - [5099] = 2382, - [5100] = 2982, - [5101] = 5101, - [5102] = 5102, - [5103] = 1820, - [5104] = 1826, - [5105] = 2577, - [5106] = 5102, - [5107] = 3061, - [5108] = 2582, - [5109] = 2444, - [5110] = 5102, - [5111] = 2988, - [5112] = 3290, - [5113] = 2427, - [5114] = 5114, - [5115] = 5101, - [5116] = 3051, - [5117] = 5102, - [5118] = 3028, - [5119] = 2989, - [5120] = 2990, - [5121] = 2991, - [5122] = 2992, - [5123] = 2602, - [5124] = 2993, - [5125] = 2994, - [5126] = 2995, - [5127] = 3029, - [5128] = 1823, - [5129] = 2607, - [5130] = 3087, - [5131] = 2660, - [5132] = 5114, - [5133] = 1820, - [5134] = 3546, - [5135] = 2522, - [5136] = 1823, - [5137] = 3030, - [5138] = 2440, - [5139] = 1822, - [5140] = 2116, - [5141] = 2653, - [5142] = 1822, - [5143] = 1825, - [5144] = 1825, - [5145] = 2428, - [5146] = 5114, - [5147] = 1826, - [5148] = 2987, - [5149] = 1816, - [5150] = 2379, - [5151] = 3018, - [5152] = 2986, - [5153] = 2248, - [5154] = 2289, - [5155] = 3004, - [5156] = 5156, + [4934] = 2166, + [4935] = 2501, + [4936] = 2191, + [4937] = 4937, + [4938] = 2168, + [4939] = 2169, + [4940] = 4937, + [4941] = 2194, + [4942] = 2471, + [4943] = 4943, + [4944] = 2995, + [4945] = 2194, + [4946] = 2185, + [4947] = 4501, + [4948] = 4585, + [4949] = 3323, + [4950] = 2394, + [4951] = 1860, + [4952] = 1868, + [4953] = 1861, + [4954] = 1795, + [4955] = 1859, + [4956] = 1867, + [4957] = 2595, + [4958] = 1869, + [4959] = 1865, + [4960] = 1857, + [4961] = 1866, + [4962] = 2553, + [4963] = 2449, + [4964] = 4964, + [4965] = 1864, + [4966] = 1856, + [4967] = 1858, + [4968] = 1863, + [4969] = 1854, + [4970] = 1860, + [4971] = 1868, + [4972] = 1861, + [4973] = 1869, + [4974] = 1857, + [4975] = 2411, + [4976] = 1854, + [4977] = 1864, + [4978] = 1856, + [4979] = 4979, + [4980] = 4980, + [4981] = 2629, + [4982] = 2124, + [4983] = 1877, + [4984] = 169, + [4985] = 186, + [4986] = 2321, + [4987] = 185, + [4988] = 186, + [4989] = 4989, + [4990] = 2266, + [4991] = 2269, + [4992] = 2326, + [4993] = 2283, + [4994] = 2284, + [4995] = 2940, + [4996] = 2286, + [4997] = 2287, + [4998] = 2181, + [4999] = 4989, + [5000] = 5000, + [5001] = 5000, + [5002] = 5002, + [5003] = 5003, + [5004] = 2235, + [5005] = 5005, + [5006] = 4902, + [5007] = 2554, + [5008] = 5008, + [5009] = 1858, + [5010] = 1863, + [5011] = 2321, + [5012] = 2322, + [5013] = 2323, + [5014] = 2326, + [5015] = 2327, + [5016] = 2328, + [5017] = 2329, + [5018] = 2562, + [5019] = 2354, + [5020] = 4989, + [5021] = 5000, + [5022] = 5002, + [5023] = 5003, + [5024] = 5005, + [5025] = 4902, + [5026] = 5026, + [5027] = 5008, + [5028] = 2354, + [5029] = 2355, + [5030] = 2356, + [5031] = 2359, + [5032] = 2360, + [5033] = 2450, + [5034] = 2365, + [5035] = 5035, + [5036] = 2366, + [5037] = 2367, + [5038] = 2369, + [5039] = 2373, + [5040] = 4989, + [5041] = 5000, + [5042] = 5002, + [5043] = 5003, + [5044] = 5005, + [5045] = 2359, + [5046] = 5008, + [5047] = 5047, + [5048] = 2381, + [5049] = 2382, + [5050] = 2383, + [5051] = 2385, + [5052] = 2387, + [5053] = 2389, + [5054] = 2390, + [5055] = 5055, + [5056] = 5056, + [5057] = 4989, + [5058] = 5000, + [5059] = 5002, + [5060] = 5003, + [5061] = 5005, + [5062] = 5008, + [5063] = 2365, + [5064] = 2395, + [5065] = 4989, + [5066] = 5000, + [5067] = 5002, + [5068] = 5005, + [5069] = 5008, + [5070] = 5070, + [5071] = 5002, + [5072] = 4989, + [5073] = 5000, + [5074] = 5002, + [5075] = 5075, + [5076] = 5005, + [5077] = 5008, + [5078] = 4989, + [5079] = 5000, + [5080] = 5002, + [5081] = 5005, + [5082] = 5008, + [5083] = 4989, + [5084] = 5000, + [5085] = 5002, + [5086] = 5005, + [5087] = 5008, + [5088] = 4989, + [5089] = 5000, + [5090] = 5002, + [5091] = 5005, + [5092] = 5008, + [5093] = 4989, + [5094] = 5002, + [5095] = 5005, + [5096] = 2568, + [5097] = 2569, + [5098] = 2570, + [5099] = 5002, + [5100] = 2110, + [5101] = 2576, + [5102] = 5002, + [5103] = 5103, + [5104] = 2577, + [5105] = 2421, + [5106] = 5002, + [5107] = 185, + [5108] = 5002, + [5109] = 5008, + [5110] = 5002, + [5111] = 2585, + [5112] = 5002, + [5113] = 2589, + [5114] = 5002, + [5115] = 5002, + [5116] = 5002, + [5117] = 5002, + [5118] = 5002, + [5119] = 5002, + [5120] = 2926, + [5121] = 2597, + [5122] = 2947, + [5123] = 2603, + [5124] = 2605, + [5125] = 2609, + [5126] = 5005, + [5127] = 2935, + [5128] = 2950, + [5129] = 2952, + [5130] = 2953, + [5131] = 2954, + [5132] = 2955, + [5133] = 2956, + [5134] = 2957, + [5135] = 2936, + [5136] = 2890, + [5137] = 5137, + [5138] = 2621, + [5139] = 2623, + [5140] = 2627, + [5141] = 5141, + [5142] = 2639, + [5143] = 2902, + [5144] = 2647, + [5145] = 2648, + [5146] = 2948, + [5147] = 2910, + [5148] = 2665, + [5149] = 2666, + [5150] = 2547, + [5151] = 2630, + [5152] = 2575, + [5153] = 2905, + [5154] = 2535, + [5155] = 2612, + [5156] = 2606, [5157] = 2381, - [5158] = 5114, - [5159] = 3005, - [5160] = 3006, - [5161] = 3018, - [5162] = 5101, - [5163] = 1819, - [5164] = 1819, - [5165] = 1820, - [5166] = 1816, - [5167] = 2379, - [5168] = 1823, - [5169] = 1822, - [5170] = 3009, - [5171] = 3112, - [5172] = 1825, - [5173] = 1826, - [5174] = 2381, - [5175] = 2295, - [5176] = 1816, - [5177] = 3485, - [5178] = 2987, - [5179] = 5101, - [5180] = 2479, - [5181] = 5181, - [5182] = 2986, - [5183] = 2981, - [5184] = 5184, - [5185] = 2457, - [5186] = 3099, - [5187] = 2981, - [5188] = 3008, - [5189] = 5101, - [5190] = 3182, - [5191] = 2382, - [5192] = 5102, - [5193] = 5181, - [5194] = 5114, - [5195] = 3009, - [5196] = 3147, - [5197] = 2603, - [5198] = 2604, - [5199] = 2379, - [5200] = 2991, - [5201] = 3170, - [5202] = 2608, - [5203] = 2609, - [5204] = 5204, - [5205] = 2615, - [5206] = 2617, - [5207] = 3295, - [5208] = 2988, - [5209] = 2476, - [5210] = 3207, - [5211] = 2625, - [5212] = 3173, - [5213] = 2462, - [5214] = 2579, - [5215] = 2835, - [5216] = 2580, - [5217] = 3246, - [5218] = 3223, - [5219] = 2428, - [5220] = 2565, - [5221] = 3298, - [5222] = 3258, - [5223] = 2654, - [5224] = 2655, - [5225] = 2583, - [5226] = 2657, - [5227] = 2591, - [5228] = 2584, - [5229] = 2636, - [5230] = 2585, - [5231] = 2564, - [5232] = 2982, - [5233] = 2631, - [5234] = 2633, - [5235] = 3150, - [5236] = 3164, - [5237] = 2992, - [5238] = 3005, - [5239] = 3051, - [5240] = 3092, - [5241] = 3138, - [5242] = 2381, - [5243] = 2867, - [5244] = 2382, - [5245] = 2498, - [5246] = 1817, - [5247] = 3189, - [5248] = 3106, - [5249] = 2994, - [5250] = 3169, - [5251] = 3168, - [5252] = 5252, - [5253] = 2873, - [5254] = 2605, - [5255] = 2462, - [5256] = 2995, - [5257] = 2612, - [5258] = 3225, - [5259] = 3029, - [5260] = 3229, - [5261] = 3254, - [5262] = 3294, - [5263] = 2990, - [5264] = 5252, - [5265] = 3107, - [5266] = 171, - [5267] = 3280, - [5268] = 2427, - [5269] = 3138, - [5270] = 3030, - [5271] = 3264, - [5272] = 3103, - [5273] = 3260, - [5274] = 2457, - [5275] = 3262, - [5276] = 2627, - [5277] = 2440, - [5278] = 2791, - [5279] = 3087, - [5280] = 3199, - [5281] = 3285, - [5282] = 2630, - [5283] = 3242, - [5284] = 3198, - [5285] = 2993, - [5286] = 2289, - [5287] = 3201, - [5288] = 5288, - [5289] = 2460, - [5290] = 3120, - [5291] = 3169, - [5292] = 3028, - [5293] = 4159, - [5294] = 4159, - [5295] = 2444, - [5296] = 2643, - [5297] = 4159, - [5298] = 2644, - [5299] = 2646, - [5300] = 3006, - [5301] = 2647, - [5302] = 3090, - [5303] = 2989, - [5304] = 3119, - [5305] = 3291, - [5306] = 2295, - [5307] = 5204, - [5308] = 3114, - [5309] = 3004, - [5310] = 3110, - [5311] = 3159, - [5312] = 2614, - [5313] = 3207, - [5314] = 315, - [5315] = 3028, - [5316] = 3092, - [5317] = 3291, - [5318] = 2304, - [5319] = 3294, - [5320] = 2232, - [5321] = 3006, - [5322] = 5322, - [5323] = 3112, - [5324] = 305, - [5325] = 3242, - [5326] = 3295, - [5327] = 3061, - [5328] = 3103, - [5329] = 3114, - [5330] = 2248, - [5331] = 2469, - [5332] = 1819, - [5333] = 329, - [5334] = 2497, - [5335] = 3254, - [5336] = 339, - [5337] = 3005, - [5338] = 3290, - [5339] = 2899, - [5340] = 3099, - [5341] = 3018, - [5342] = 3120, - [5343] = 3198, - [5344] = 3201, - [5345] = 171, - [5346] = 3260, - [5347] = 3262, - [5348] = 5348, - [5349] = 3159, - [5350] = 3199, - [5351] = 3106, - [5352] = 3264, - [5353] = 301, - [5354] = 3225, - [5355] = 1820, - [5356] = 1822, - [5357] = 3107, - [5358] = 3029, - [5359] = 3004, - [5360] = 2471, - [5361] = 2475, - [5362] = 2524, - [5363] = 2476, - [5364] = 3168, - [5365] = 3170, - [5366] = 3009, - [5367] = 2525, - [5368] = 3119, - [5369] = 3246, - [5370] = 3229, - [5371] = 1826, - [5372] = 2087, - [5373] = 1828, - [5374] = 2499, - [5375] = 2540, + [5158] = 2550, + [5159] = 2556, + [5160] = 4879, + [5161] = 4879, + [5162] = 4880, + [5163] = 2534, + [5164] = 2234, + [5165] = 5165, + [5166] = 5003, + [5167] = 2641, + [5168] = 2435, + [5169] = 1859, + [5170] = 1867, + [5171] = 2633, + [5172] = 2634, + [5173] = 2616, + [5174] = 2631, + [5175] = 2541, + [5176] = 2542, + [5177] = 2551, + [5178] = 2552, + [5179] = 1865, + [5180] = 2563, + [5181] = 2172, + [5182] = 1866, + [5183] = 4880, + [5184] = 2956, + [5185] = 5185, + [5186] = 5186, + [5187] = 5187, + [5188] = 5188, + [5189] = 5189, + [5190] = 2950, + [5191] = 5191, + [5192] = 5186, + [5193] = 5193, + [5194] = 2952, + [5195] = 5195, + [5196] = 5185, + [5197] = 5197, + [5198] = 5198, + [5199] = 4879, + [5200] = 2327, + [5201] = 5201, + [5202] = 5193, + [5203] = 2995, + [5204] = 5188, + [5205] = 5191, + [5206] = 5206, + [5207] = 2355, + [5208] = 2328, + [5209] = 2356, + [5210] = 2875, + [5211] = 5211, + [5212] = 5212, + [5213] = 3050, + [5214] = 2373, + [5215] = 5215, + [5216] = 5216, + [5217] = 5217, + [5218] = 4902, + [5219] = 5219, + [5220] = 2411, + [5221] = 5185, + [5222] = 2910, + [5223] = 2948, + [5224] = 3549, + [5225] = 2163, + [5226] = 5186, + [5227] = 5188, + [5228] = 2329, + [5229] = 5191, + [5230] = 2478, + [5231] = 2953, + [5232] = 2954, + [5233] = 5219, + [5234] = 5201, + [5235] = 5193, + [5236] = 5186, + [5237] = 5201, + [5238] = 5238, + [5239] = 5193, + [5240] = 5186, + [5241] = 5241, + [5242] = 2926, + [5243] = 2947, + [5244] = 5244, + [5245] = 5245, + [5246] = 2947, + [5247] = 2935, + [5248] = 2935, + [5249] = 2950, + [5250] = 2952, + [5251] = 2953, + [5252] = 2954, + [5253] = 2955, + [5254] = 2956, + [5255] = 2957, + [5256] = 2936, + [5257] = 2905, + [5258] = 2890, + [5259] = 5259, + [5260] = 5201, + [5261] = 5193, + [5262] = 5262, + [5263] = 5263, + [5264] = 5185, + [5265] = 2360, + [5266] = 2902, + [5267] = 2450, + [5268] = 2948, + [5269] = 5185, + [5270] = 2910, + [5271] = 1795, + [5272] = 2905, + [5273] = 2421, + [5274] = 5201, + [5275] = 5193, + [5276] = 5185, + [5277] = 5188, + [5278] = 2955, + [5279] = 5279, + [5280] = 5280, + [5281] = 2283, + [5282] = 5191, + [5283] = 5244, + [5284] = 5284, + [5285] = 5186, + [5286] = 2284, + [5287] = 5244, + [5288] = 2936, + [5289] = 5201, + [5290] = 5193, + [5291] = 5189, + [5292] = 5292, + [5293] = 5185, + [5294] = 5186, + [5295] = 2435, + [5296] = 4742, + [5297] = 2890, + [5298] = 5298, + [5299] = 2266, + [5300] = 5244, + [5301] = 5201, + [5302] = 5185, + [5303] = 2286, + [5304] = 2874, + [5305] = 5244, + [5306] = 4880, + [5307] = 5211, + [5308] = 5212, + [5309] = 2322, + [5310] = 2926, + [5311] = 5244, + [5312] = 2449, + [5313] = 5216, + [5314] = 5217, + [5315] = 5315, + [5316] = 5244, + [5317] = 5244, + [5318] = 5244, + [5319] = 2382, + [5320] = 5188, + [5321] = 2940, + [5322] = 2383, + [5323] = 5191, + [5324] = 5186, + [5325] = 2287, + [5326] = 2385, + [5327] = 2387, + [5328] = 2870, + [5329] = 2366, + [5330] = 2389, + [5331] = 2390, + [5332] = 5188, + [5333] = 5201, + [5334] = 2394, + [5335] = 2395, + [5336] = 5211, + [5337] = 5212, + [5338] = 5193, + [5339] = 2902, + [5340] = 2871, + [5341] = 2872, + [5342] = 2367, + [5343] = 2940, + [5344] = 2873, + [5345] = 5345, + [5346] = 2269, + [5347] = 5191, + [5348] = 5216, + [5349] = 5201, + [5350] = 5193, + [5351] = 5188, + [5352] = 5186, + [5353] = 5353, + [5354] = 5217, + [5355] = 2210, + [5356] = 2369, + [5357] = 2323, + [5358] = 2235, + [5359] = 5185, + [5360] = 2277, + [5361] = 5361, + [5362] = 2957, + [5363] = 5363, + [5364] = 5364, + [5365] = 5365, + [5366] = 5366, + [5367] = 5367, + [5368] = 5368, + [5369] = 5369, + [5370] = 5370, + [5371] = 5371, + [5372] = 5372, + [5373] = 5364, + [5374] = 5374, + [5375] = 5375, [5376] = 5376, - [5377] = 2982, - [5378] = 5348, - [5379] = 2981, - [5380] = 2462, - [5381] = 2460, + [5377] = 5377, + [5378] = 5378, + [5379] = 1916, + [5380] = 5380, + [5381] = 5381, [5382] = 5382, - [5383] = 2558, - [5384] = 3090, - [5385] = 1817, - [5386] = 5386, - [5387] = 3150, - [5388] = 2439, - [5389] = 2460, - [5390] = 5184, - [5391] = 5386, - [5392] = 2986, - [5393] = 3147, - [5394] = 3189, - [5395] = 2462, - [5396] = 5396, - [5397] = 3030, - [5398] = 5398, - [5399] = 2498, - [5400] = 2988, - [5401] = 5204, - [5402] = 2467, - [5403] = 1808, - [5404] = 2987, - [5405] = 3298, - [5406] = 3173, - [5407] = 3258, - [5408] = 3285, - [5409] = 392, - [5410] = 3164, - [5411] = 397, - [5412] = 3182, - [5413] = 1825, - [5414] = 2085, - [5415] = 1816, - [5416] = 5382, - [5417] = 1823, - [5418] = 2473, - [5419] = 3008, - [5420] = 3280, - [5421] = 5252, - [5422] = 5386, - [5423] = 2555, - [5424] = 2556, - [5425] = 5386, - [5426] = 3223, - [5427] = 5376, - [5428] = 2989, - [5429] = 2990, - [5430] = 2991, - [5431] = 2992, - [5432] = 2993, - [5433] = 2994, - [5434] = 2995, - [5435] = 3110, - [5436] = 5396, - [5437] = 2557, - [5438] = 3087, - [5439] = 2520, - [5440] = 2379, - [5441] = 2381, + [5383] = 5383, + [5384] = 5384, + [5385] = 5385, + [5386] = 5365, + [5387] = 5366, + [5388] = 5370, + [5389] = 5371, + [5390] = 5372, + [5391] = 5378, + [5392] = 5392, + [5393] = 5393, + [5394] = 5394, + [5395] = 3050, + [5396] = 2194, + [5397] = 5364, + [5398] = 5374, + [5399] = 5375, + [5400] = 5376, + [5401] = 5377, + [5402] = 5380, + [5403] = 5382, + [5404] = 5383, + [5405] = 5365, + [5406] = 5366, + [5407] = 5372, + [5408] = 5378, + [5409] = 5393, + [5410] = 2163, + [5411] = 2175, + [5412] = 2178, + [5413] = 2471, + [5414] = 2465, + [5415] = 4879, + [5416] = 5416, + [5417] = 5364, + [5418] = 1877, + [5419] = 5374, + [5420] = 5375, + [5421] = 5376, + [5422] = 5377, + [5423] = 4880, + [5424] = 5424, + [5425] = 5380, + [5426] = 5382, + [5427] = 5383, + [5428] = 5428, + [5429] = 5365, + [5430] = 5366, + [5431] = 5372, + [5432] = 5378, + [5433] = 5393, + [5434] = 5392, + [5435] = 5364, + [5436] = 5374, + [5437] = 5375, + [5438] = 5376, + [5439] = 5377, + [5440] = 5393, + [5441] = 2186, [5442] = 5442, - [5443] = 2554, - [5444] = 2505, - [5445] = 5252, - [5446] = 2519, - [5447] = 3883, - [5448] = 2457, - [5449] = 2517, - [5450] = 4845, - [5451] = 2458, - [5452] = 2085, - [5453] = 3138, - [5454] = 2474, - [5455] = 2486, - [5456] = 2504, - [5457] = 5204, - [5458] = 3051, - [5459] = 2382, - [5460] = 2485, - [5461] = 3945, - [5462] = 4975, - [5463] = 3958, - [5464] = 2506, - [5465] = 5465, - [5466] = 1828, - [5467] = 3169, - [5468] = 1908, - [5469] = 2507, - [5470] = 5470, - [5471] = 5471, - [5472] = 2479, - [5473] = 5473, - [5474] = 2489, - [5475] = 2577, - [5476] = 2582, - [5477] = 2602, - [5478] = 2607, - [5479] = 2660, - [5480] = 2522, - [5481] = 2653, - [5482] = 171, - [5483] = 5483, - [5484] = 5484, - [5485] = 1908, - [5486] = 2460, - [5487] = 2462, - [5488] = 5488, - [5489] = 5489, - [5490] = 301, - [5491] = 2085, - [5492] = 305, - [5493] = 2087, - [5494] = 1908, - [5495] = 2085, - [5496] = 5496, - [5497] = 2087, - [5498] = 1908, - [5499] = 5499, - [5500] = 2982, - [5501] = 3030, - [5502] = 2988, - [5503] = 5503, - [5504] = 5504, - [5505] = 3028, - [5506] = 2989, - [5507] = 2990, - [5508] = 5483, - [5509] = 2991, - [5510] = 2992, - [5511] = 2993, - [5512] = 2994, - [5513] = 2995, - [5514] = 3029, - [5515] = 5515, - [5516] = 3087, + [5443] = 5380, + [5444] = 5382, + [5445] = 5383, + [5446] = 5365, + [5447] = 5366, + [5448] = 5372, + [5449] = 5378, + [5450] = 5393, + [5451] = 5364, + [5452] = 5374, + [5453] = 5375, + [5454] = 5376, + [5455] = 5377, + [5456] = 5456, + [5457] = 5211, + [5458] = 5212, + [5459] = 5380, + [5460] = 5374, + [5461] = 5382, + [5462] = 5383, + [5463] = 5216, + [5464] = 5217, + [5465] = 5365, + [5466] = 5366, + [5467] = 5372, + [5468] = 5378, + [5469] = 5469, + [5470] = 5393, + [5471] = 2870, + [5472] = 5377, + [5473] = 5380, + [5474] = 5382, + [5475] = 5383, + [5476] = 5365, + [5477] = 5366, + [5478] = 5372, + [5479] = 2212, + [5480] = 5380, + [5481] = 2871, + [5482] = 2872, + [5483] = 2940, + [5484] = 5377, + [5485] = 5381, + [5486] = 2873, + [5487] = 5380, + [5488] = 5382, + [5489] = 5383, + [5490] = 5365, + [5491] = 5366, + [5492] = 5372, + [5493] = 5493, + [5494] = 5377, + [5495] = 5380, + [5496] = 5382, + [5497] = 5383, + [5498] = 5365, + [5499] = 5366, + [5500] = 5372, + [5501] = 2926, + [5502] = 5377, + [5503] = 5380, + [5504] = 5382, + [5505] = 2501, + [5506] = 5366, + [5507] = 5380, + [5508] = 5382, + [5509] = 2233, + [5510] = 5380, + [5511] = 5511, + [5512] = 5382, + [5513] = 2947, + [5514] = 5380, + [5515] = 5382, + [5516] = 2110, [5517] = 5517, - [5518] = 5398, - [5519] = 5496, - [5520] = 5520, - [5521] = 5521, - [5522] = 5522, - [5523] = 5523, - [5524] = 3004, - [5525] = 3005, - [5526] = 5204, - [5527] = 3006, - [5528] = 5515, - [5529] = 5252, - [5530] = 5503, - [5531] = 5504, - [5532] = 3009, - [5533] = 5483, - [5534] = 5515, - [5535] = 5517, - [5536] = 5398, - [5537] = 3168, - [5538] = 3170, - [5539] = 5496, - [5540] = 3229, - [5541] = 2460, - [5542] = 3173, - [5543] = 3254, - [5544] = 5520, - [5545] = 3264, - [5546] = 3291, - [5547] = 2462, - [5548] = 5503, - [5549] = 5504, - [5550] = 5483, - [5551] = 3099, - [5552] = 5515, - [5553] = 5517, - [5554] = 2475, - [5555] = 2524, - [5556] = 3120, - [5557] = 3150, - [5558] = 5496, - [5559] = 3285, - [5560] = 5521, - [5561] = 5561, - [5562] = 3147, - [5563] = 2525, - [5564] = 3164, - [5565] = 3182, - [5566] = 2540, - [5567] = 5503, - [5568] = 5504, - [5569] = 5483, - [5570] = 3223, - [5571] = 5515, - [5572] = 5517, - [5573] = 3242, - [5574] = 3246, - [5575] = 5496, - [5576] = 3294, - [5577] = 2498, - [5578] = 5517, - [5579] = 3290, - [5580] = 5580, - [5581] = 3090, - [5582] = 3258, - [5583] = 3107, - [5584] = 3112, - [5585] = 5503, - [5586] = 5504, - [5587] = 3189, - [5588] = 5483, - [5589] = 5515, - [5590] = 5590, - [5591] = 5517, - [5592] = 3110, - [5593] = 5593, - [5594] = 3092, - [5595] = 5496, - [5596] = 2791, - [5597] = 2555, - [5598] = 2556, - [5599] = 2557, - [5600] = 5503, - [5601] = 5504, - [5602] = 2558, - [5603] = 5483, - [5604] = 5517, - [5605] = 5496, - [5606] = 2835, - [5607] = 5503, - [5608] = 5504, - [5609] = 5522, - [5610] = 5483, - [5611] = 5517, - [5612] = 5496, - [5613] = 5503, - [5614] = 5504, - [5615] = 5483, - [5616] = 5517, - [5617] = 5496, - [5618] = 2867, - [5619] = 2497, - [5620] = 2467, - [5621] = 2499, - [5622] = 2469, - [5623] = 2471, - [5624] = 5503, - [5625] = 5504, - [5626] = 5483, - [5627] = 3225, - [5628] = 5517, - [5629] = 5523, - [5630] = 5496, - [5631] = 2873, - [5632] = 5503, - [5633] = 5504, - [5634] = 5483, - [5635] = 5517, - [5636] = 5496, - [5637] = 3103, - [5638] = 3114, - [5639] = 5503, - [5640] = 5504, - [5641] = 5483, - [5642] = 5517, - [5643] = 5496, - [5644] = 3198, - [5645] = 3201, - [5646] = 3260, - [5647] = 3262, - [5648] = 3159, - [5649] = 3199, - [5650] = 5503, - [5651] = 3106, - [5652] = 5483, - [5653] = 5517, - [5654] = 2473, - [5655] = 5655, - [5656] = 5483, - [5657] = 301, - [5658] = 5483, - [5659] = 5483, - [5660] = 5483, - [5661] = 5483, - [5662] = 5483, - [5663] = 5483, - [5664] = 5483, - [5665] = 5483, - [5666] = 5483, - [5667] = 5483, - [5668] = 5483, - [5669] = 5483, - [5670] = 5483, - [5671] = 5483, - [5672] = 5483, - [5673] = 5483, - [5674] = 5483, - [5675] = 5675, - [5676] = 5483, - [5677] = 5483, - [5678] = 5483, - [5679] = 5483, - [5680] = 5483, - [5681] = 5483, - [5682] = 305, - [5683] = 5483, - [5684] = 5483, - [5685] = 5483, - [5686] = 5483, - [5687] = 1919, - [5688] = 5503, - [5689] = 1828, - [5690] = 2475, - [5691] = 2524, - [5692] = 2476, - [5693] = 2525, - [5694] = 2085, - [5695] = 2540, - [5696] = 3207, - [5697] = 5504, - [5698] = 2555, - [5699] = 2556, - [5700] = 2557, - [5701] = 2558, - [5702] = 3119, - [5703] = 2497, - [5704] = 2467, - [5705] = 2499, - [5706] = 2469, - [5707] = 2471, - [5708] = 3280, - [5709] = 2473, - [5710] = 3298, - [5711] = 5711, - [5712] = 3295, - [5713] = 2617, - [5714] = 2993, - [5715] = 2994, - [5716] = 2995, - [5717] = 3029, - [5718] = 3087, - [5719] = 5719, - [5720] = 2605, - [5721] = 2087, - [5722] = 1828, - [5723] = 2627, + [5518] = 5518, + [5519] = 5382, + [5520] = 2935, + [5521] = 2874, + [5522] = 2950, + [5523] = 2952, + [5524] = 2953, + [5525] = 2954, + [5526] = 2955, + [5527] = 2956, + [5528] = 2957, + [5529] = 2210, + [5530] = 2936, + [5531] = 2890, + [5532] = 5375, + [5533] = 5376, + [5534] = 2124, + [5535] = 2875, + [5536] = 2514, + [5537] = 2515, + [5538] = 1795, + [5539] = 5539, + [5540] = 2902, + [5541] = 2948, + [5542] = 2910, + [5543] = 5543, + [5544] = 5544, + [5545] = 5377, + [5546] = 2478, + [5547] = 2905, + [5548] = 5548, + [5549] = 5382, + [5550] = 2995, + [5551] = 2926, + [5552] = 2947, + [5553] = 2935, + [5554] = 2950, + [5555] = 2952, + [5556] = 2953, + [5557] = 2954, + [5558] = 2955, + [5559] = 2956, + [5560] = 2957, + [5561] = 2936, + [5562] = 2890, + [5563] = 2902, + [5564] = 2948, + [5565] = 2910, + [5566] = 2905, + [5567] = 2940, + [5568] = 5382, + [5569] = 5383, + [5570] = 5384, + [5571] = 5382, + [5572] = 5382, + [5573] = 2189, + [5574] = 2198, + [5575] = 1916, + [5576] = 5456, + [5577] = 5456, + [5578] = 5456, + [5579] = 5456, + [5580] = 5456, + [5581] = 5456, + [5582] = 5456, + [5583] = 5456, + [5584] = 5456, + [5585] = 2206, + [5586] = 5586, + [5587] = 2541, + [5588] = 2542, + [5589] = 2527, + [5590] = 2605, + [5591] = 3050, + [5592] = 5217, + [5593] = 2550, + [5594] = 2551, + [5595] = 2552, + [5596] = 2556, + [5597] = 2563, + [5598] = 5598, + [5599] = 5216, + [5600] = 2995, + [5601] = 4879, + [5602] = 2547, + [5603] = 2553, + [5604] = 4880, + [5605] = 2597, + [5606] = 2505, + [5607] = 5607, + [5608] = 2534, + [5609] = 5609, + [5610] = 2554, + [5611] = 2562, + [5612] = 2621, + [5613] = 5598, + [5614] = 169, + [5615] = 2500, + [5616] = 2501, + [5617] = 5212, + [5618] = 5609, + [5619] = 5619, + [5620] = 1897, + [5621] = 2575, + [5622] = 2666, + [5623] = 5212, + [5624] = 5216, + [5625] = 5217, + [5626] = 2568, + [5627] = 2569, + [5628] = 2623, + [5629] = 2603, + [5630] = 2609, + [5631] = 2630, + [5632] = 2535, + [5633] = 2647, + [5634] = 2648, + [5635] = 2612, + [5636] = 2570, + [5637] = 2633, + [5638] = 2576, + [5639] = 2634, + [5640] = 2577, + [5641] = 5586, + [5642] = 2595, + [5643] = 5619, + [5644] = 2585, + [5645] = 5211, + [5646] = 2589, + [5647] = 2629, + [5648] = 2606, + [5649] = 2616, + [5650] = 2631, + [5651] = 2639, + [5652] = 2627, + [5653] = 2641, + [5654] = 2665, + [5655] = 5211, + [5656] = 2535, + [5657] = 5211, + [5658] = 2577, + [5659] = 2665, + [5660] = 2666, + [5661] = 2547, + [5662] = 4880, + [5663] = 5216, + [5664] = 2045, + [5665] = 2175, + [5666] = 2630, + [5667] = 2633, + [5668] = 2634, + [5669] = 2603, + [5670] = 2575, + [5671] = 2178, + [5672] = 1854, + [5673] = 1792, + [5674] = 2612, + [5675] = 2568, + [5676] = 5212, + [5677] = 2606, + [5678] = 2616, + [5679] = 2631, + [5680] = 2569, + [5681] = 2514, + [5682] = 1859, + [5683] = 2541, + [5684] = 2542, + [5685] = 2570, + [5686] = 4879, + [5687] = 4880, + [5688] = 1787, + [5689] = 1788, + [5690] = 1793, + [5691] = 1791, + [5692] = 4879, + [5693] = 2550, + [5694] = 2551, + [5695] = 2552, + [5696] = 2515, + [5697] = 2556, + [5698] = 2605, + [5699] = 2563, + [5700] = 169, + [5701] = 1867, + [5702] = 5598, + [5703] = 1858, + [5704] = 1857, + [5705] = 2198, + [5706] = 185, + [5707] = 2595, + [5708] = 5598, + [5709] = 2233, + [5710] = 2212, + [5711] = 2621, + [5712] = 2623, + [5713] = 2585, + [5714] = 2589, + [5715] = 1865, + [5716] = 2194, + [5717] = 2554, + [5718] = 1864, + [5719] = 186, + [5720] = 2627, + [5721] = 2045, + [5722] = 2050, + [5723] = 1897, [5724] = 5724, - [5725] = 2579, - [5726] = 5726, - [5727] = 3008, - [5728] = 5728, - [5729] = 5719, - [5730] = 2580, - [5731] = 2630, - [5732] = 5732, - [5733] = 5724, - [5734] = 2583, - [5735] = 5735, - [5736] = 3169, - [5737] = 5728, - [5738] = 5724, - [5739] = 1908, - [5740] = 5520, - [5741] = 5521, - [5742] = 3004, - [5743] = 5522, - [5744] = 5728, - [5745] = 5724, - [5746] = 5523, - [5747] = 5747, - [5748] = 2289, - [5749] = 3005, - [5750] = 2981, - [5751] = 5751, - [5752] = 5752, - [5753] = 5753, - [5754] = 2584, - [5755] = 2585, - [5756] = 5756, - [5757] = 2295, - [5758] = 5719, - [5759] = 3006, - [5760] = 3061, - [5761] = 5398, - [5762] = 5762, - [5763] = 3018, - [5764] = 5764, - [5765] = 2791, - [5766] = 5766, - [5767] = 5767, - [5768] = 2603, - [5769] = 5719, - [5770] = 3030, - [5771] = 2987, - [5772] = 3138, - [5773] = 2604, - [5774] = 2835, - [5775] = 5775, - [5776] = 2899, - [5777] = 5752, - [5778] = 5753, - [5779] = 5728, - [5780] = 5724, - [5781] = 2068, - [5782] = 5747, - [5783] = 2608, - [5784] = 2609, - [5785] = 3009, - [5786] = 5719, - [5787] = 5787, - [5788] = 5752, - [5789] = 5789, - [5790] = 2087, - [5791] = 2867, - [5792] = 5792, - [5793] = 5753, - [5794] = 2643, - [5795] = 5719, - [5796] = 3890, - [5797] = 5752, - [5798] = 2614, - [5799] = 2615, - [5800] = 2991, - [5801] = 2992, - [5802] = 2625, - [5803] = 2982, - [5804] = 2644, - [5805] = 2646, - [5806] = 2654, - [5807] = 2085, - [5808] = 2655, - [5809] = 2657, - [5810] = 2591, - [5811] = 2636, - [5812] = 2564, - [5813] = 5728, - [5814] = 5724, - [5815] = 5747, - [5816] = 2631, - [5817] = 2873, - [5818] = 2633, - [5819] = 5752, - [5820] = 5753, - [5821] = 2988, - [5822] = 2647, - [5823] = 5823, - [5824] = 5719, - [5825] = 5756, - [5826] = 5747, - [5827] = 5728, - [5828] = 5724, - [5829] = 5747, - [5830] = 5753, - [5831] = 5719, - [5832] = 5719, - [5833] = 5756, - [5834] = 5728, - [5835] = 5724, - [5836] = 5747, - [5837] = 5837, - [5838] = 5764, - [5839] = 5756, - [5840] = 5840, - [5841] = 5841, - [5842] = 5842, - [5843] = 5756, - [5844] = 5756, - [5845] = 5751, - [5846] = 5756, - [5847] = 5756, - [5848] = 1908, - [5849] = 5747, - [5850] = 5728, - [5851] = 5724, - [5852] = 5756, - [5853] = 5853, - [5854] = 5747, - [5855] = 5855, - [5856] = 2612, - [5857] = 5747, - [5858] = 5858, - [5859] = 5859, - [5860] = 5860, - [5861] = 5728, - [5862] = 5752, - [5863] = 5753, - [5864] = 2085, - [5865] = 5719, - [5866] = 5728, - [5867] = 5724, - [5868] = 5868, - [5869] = 5747, - [5870] = 3028, - [5871] = 2986, - [5872] = 5872, - [5873] = 5873, - [5874] = 2989, - [5875] = 5752, - [5876] = 5184, - [5877] = 2990, - [5878] = 2565, - [5879] = 5879, - [5880] = 5880, - [5881] = 5881, - [5882] = 5882, - [5883] = 2988, + [5725] = 2576, + [5726] = 2046, + [5727] = 2186, + [5728] = 1856, + [5729] = 2047, + [5730] = 2553, + [5731] = 1833, + [5732] = 2639, + [5733] = 2534, + [5734] = 2641, + [5735] = 2206, + [5736] = 2210, + [5737] = 2647, + [5738] = 1866, + [5739] = 1790, + [5740] = 2648, + [5741] = 2562, + [5742] = 1860, + [5743] = 1868, + [5744] = 2629, + [5745] = 1786, + [5746] = 2597, + [5747] = 2609, + [5748] = 1861, + [5749] = 5217, + [5750] = 1869, + [5751] = 1863, + [5752] = 5598, + [5753] = 2137, + [5754] = 2123, + [5755] = 5598, + [5756] = 2471, + [5757] = 2465, + [5758] = 5758, + [5759] = 2515, + [5760] = 2189, + [5761] = 5598, + [5762] = 5598, + [5763] = 2471, + [5764] = 5598, + [5765] = 2465, + [5766] = 5598, + [5767] = 5598, + [5768] = 4879, + [5769] = 4880, + [5770] = 5598, + [5771] = 5211, + [5772] = 5212, + [5773] = 2514, + [5774] = 5216, + [5775] = 5217, + [5776] = 2128, + [5777] = 2131, + [5778] = 5778, + [5779] = 5779, + [5780] = 5780, + [5781] = 5781, + [5782] = 4879, + [5783] = 5783, + [5784] = 5784, + [5785] = 2465, + [5786] = 5211, + [5787] = 5212, + [5788] = 5216, + [5789] = 5217, + [5790] = 5790, + [5791] = 5790, + [5792] = 2110, + [5793] = 5598, + [5794] = 5784, + [5795] = 4880, + [5796] = 2185, + [5797] = 2191, + [5798] = 5779, + [5799] = 4879, + [5800] = 5783, + [5801] = 2165, + [5802] = 2166, + [5803] = 2471, + [5804] = 2168, + [5805] = 2169, + [5806] = 5598, + [5807] = 2174, + [5808] = 5598, + [5809] = 2177, + [5810] = 2179, + [5811] = 2180, + [5812] = 2188, + [5813] = 2190, + [5814] = 5598, + [5815] = 2124, + [5816] = 2194, + [5817] = 5781, + [5818] = 4880, + [5819] = 5217, + [5820] = 5820, + [5821] = 5821, + [5822] = 5821, + [5823] = 5821, + [5824] = 5820, + [5825] = 5821, + [5826] = 5821, + [5827] = 5820, + [5828] = 5821, + [5829] = 5820, + [5830] = 5821, + [5831] = 5820, + [5832] = 5821, + [5833] = 5820, + [5834] = 5821, + [5835] = 5820, + [5836] = 2128, + [5837] = 5821, + [5838] = 5598, + [5839] = 5598, + [5840] = 2194, + [5841] = 5216, + [5842] = 5820, + [5843] = 5843, + [5844] = 1897, + [5845] = 5821, + [5846] = 1916, + [5847] = 4879, + [5848] = 5211, + [5849] = 5212, + [5850] = 5216, + [5851] = 5217, + [5852] = 5790, + [5853] = 5790, + [5854] = 5820, + [5855] = 5821, + [5856] = 5783, + [5857] = 4880, + [5858] = 2194, + [5859] = 5820, + [5860] = 5821, + [5861] = 5820, + [5862] = 5783, + [5863] = 5820, + [5864] = 5820, + [5865] = 5211, + [5866] = 5212, + [5867] = 2131, + [5868] = 2185, + [5869] = 2514, + [5870] = 2515, + [5871] = 5871, + [5872] = 2165, + [5873] = 2166, + [5874] = 2168, + [5875] = 2169, + [5876] = 5783, + [5877] = 2471, + [5878] = 5783, + [5879] = 5783, + [5880] = 5783, + [5881] = 5790, + [5882] = 5783, + [5883] = 5790, [5884] = 5884, - [5885] = 5885, - [5886] = 5522, - [5887] = 5523, - [5888] = 2087, - [5889] = 5889, - [5890] = 5890, - [5891] = 5891, - [5892] = 5892, - [5893] = 5893, - [5894] = 5894, - [5895] = 5895, - [5896] = 5896, - [5897] = 3028, - [5898] = 2986, - [5899] = 2989, - [5900] = 2990, - [5901] = 5901, - [5902] = 5902, - [5903] = 2991, - [5904] = 2992, - [5905] = 5905, + [5885] = 5211, + [5886] = 5212, + [5887] = 5216, + [5888] = 5217, + [5889] = 5871, + [5890] = 2174, + [5891] = 2177, + [5892] = 5884, + [5893] = 2179, + [5894] = 5871, + [5895] = 2180, + [5896] = 2465, + [5897] = 5790, + [5898] = 5598, + [5899] = 5871, + [5900] = 5783, + [5901] = 2188, + [5902] = 5790, + [5903] = 5871, + [5904] = 2190, + [5905] = 5211, [5906] = 5906, - [5907] = 5907, - [5908] = 5908, - [5909] = 5894, - [5910] = 2993, - [5911] = 2994, - [5912] = 2995, - [5913] = 5881, - [5914] = 5882, - [5915] = 3029, - [5916] = 3087, - [5917] = 5884, - [5918] = 5885, - [5919] = 5919, - [5920] = 5890, - [5921] = 5891, - [5922] = 5892, - [5923] = 5893, - [5924] = 5895, - [5925] = 3008, - [5926] = 5926, - [5927] = 5901, - [5928] = 5906, - [5929] = 5907, - [5930] = 5908, - [5931] = 5894, - [5932] = 5901, - [5933] = 5881, - [5934] = 5882, - [5935] = 5906, - [5936] = 5907, - [5937] = 5908, - [5938] = 5881, - [5939] = 3004, - [5940] = 5894, - [5941] = 5884, - [5942] = 5885, + [5907] = 5871, + [5908] = 5871, + [5909] = 5871, + [5910] = 4879, + [5911] = 2515, + [5912] = 4880, + [5913] = 5783, + [5914] = 5884, + [5915] = 5783, + [5916] = 5790, + [5917] = 5598, + [5918] = 5884, + [5919] = 5884, + [5920] = 2514, + [5921] = 5884, + [5922] = 5790, + [5923] = 1916, + [5924] = 5216, + [5925] = 5925, + [5926] = 2191, + [5927] = 5790, + [5928] = 5790, + [5929] = 5871, + [5930] = 5930, + [5931] = 2515, + [5932] = 5932, + [5933] = 2359, + [5934] = 5934, + [5935] = 5930, + [5936] = 2365, + [5937] = 5932, + [5938] = 5938, + [5939] = 5930, + [5940] = 5790, + [5941] = 5934, + [5942] = 5942, [5943] = 5943, - [5944] = 5890, - [5945] = 5891, - [5946] = 5892, - [5947] = 5893, - [5948] = 5895, - [5949] = 5949, - [5950] = 5881, - [5951] = 5882, - [5952] = 5894, - [5953] = 5953, - [5954] = 5954, - [5955] = 5881, - [5956] = 5884, - [5957] = 5885, - [5958] = 5884, - [5959] = 5890, - [5960] = 5891, - [5961] = 5892, - [5962] = 5893, - [5963] = 5895, - [5964] = 5885, - [5965] = 5965, - [5966] = 5966, - [5967] = 5894, - [5968] = 3005, - [5969] = 5881, - [5970] = 5884, - [5971] = 5885, - [5972] = 5972, - [5973] = 5890, - [5974] = 5891, - [5975] = 5892, - [5976] = 5890, - [5977] = 5891, - [5978] = 5978, - [5979] = 5979, - [5980] = 5894, - [5981] = 5892, - [5982] = 3006, - [5983] = 5893, - [5984] = 5881, - [5985] = 5884, - [5986] = 5885, - [5987] = 5890, - [5988] = 5891, - [5989] = 5892, - [5990] = 5990, - [5991] = 5894, - [5992] = 5965, - [5993] = 5895, - [5994] = 5881, - [5995] = 3169, - [5996] = 5884, - [5997] = 5891, - [5998] = 5894, - [5999] = 5999, - [6000] = 5881, - [6001] = 5884, - [6002] = 2981, - [6003] = 5891, - [6004] = 5907, - [6005] = 2068, - [6006] = 6006, - [6007] = 2094, - [6008] = 5881, - [6009] = 5884, - [6010] = 5891, - [6011] = 2899, - [6012] = 3009, - [6013] = 5906, - [6014] = 5881, - [6015] = 5884, - [6016] = 5895, - [6017] = 5901, - [6018] = 5908, - [6019] = 3061, - [6020] = 5884, - [6021] = 5906, - [6022] = 5881, - [6023] = 5884, - [6024] = 5907, - [6025] = 5908, - [6026] = 5881, - [6027] = 3051, - [6028] = 5894, - [6029] = 5881, - [6030] = 5885, - [6031] = 3018, - [6032] = 5881, - [6033] = 5882, - [6034] = 5966, - [6035] = 5884, - [6036] = 5885, - [6037] = 5901, - [6038] = 5890, - [6039] = 5891, - [6040] = 5892, - [6041] = 1828, - [6042] = 5893, - [6043] = 5890, - [6044] = 5891, + [5944] = 5942, + [5945] = 5930, + [5946] = 5932, + [5947] = 5934, + [5948] = 5938, + [5949] = 2234, + [5950] = 5934, + [5951] = 5932, + [5952] = 5938, + [5953] = 5930, + [5954] = 5942, + [5955] = 2381, + [5956] = 5943, + [5957] = 5783, + [5958] = 5598, + [5959] = 5942, + [5960] = 5930, + [5961] = 5942, + [5962] = 5934, + [5963] = 2172, + [5964] = 5932, + [5965] = 5930, + [5966] = 5942, + [5967] = 5938, + [5968] = 5968, + [5969] = 5969, + [5970] = 5970, + [5971] = 5934, + [5972] = 5598, + [5973] = 5942, + [5974] = 5938, + [5975] = 5212, + [5976] = 5930, + [5977] = 5943, + [5978] = 5930, + [5979] = 5943, + [5980] = 5790, + [5981] = 5942, + [5982] = 5982, + [5983] = 5943, + [5984] = 5938, + [5985] = 5930, + [5986] = 5212, + [5987] = 2514, + [5988] = 5938, + [5989] = 5930, + [5990] = 5942, + [5991] = 5932, + [5992] = 5930, + [5993] = 2354, + [5994] = 5943, + [5995] = 5942, + [5996] = 5943, + [5997] = 5930, + [5998] = 5943, + [5999] = 5942, + [6000] = 5930, + [6001] = 5783, + [6002] = 5211, + [6003] = 2181, + [6004] = 5598, + [6005] = 5943, + [6006] = 5930, + [6007] = 3590, + [6008] = 5216, + [6009] = 5790, + [6010] = 5930, + [6011] = 5783, + [6012] = 5943, + [6013] = 5932, + [6014] = 2321, + [6015] = 5930, + [6016] = 5930, + [6017] = 5938, + [6018] = 5930, + [6019] = 5943, + [6020] = 5930, + [6021] = 5783, + [6022] = 1916, + [6023] = 5598, + [6024] = 5216, + [6025] = 5790, + [6026] = 5932, + [6027] = 5217, + [6028] = 5932, + [6029] = 5943, + [6030] = 5938, + [6031] = 5934, + [6032] = 5942, + [6033] = 5930, + [6034] = 6034, + [6035] = 2326, + [6036] = 5934, + [6037] = 5930, + [6038] = 5217, + [6039] = 5211, + [6040] = 5934, + [6041] = 5930, + [6042] = 5943, + [6043] = 5942, + [6044] = 5930, [6045] = 6045, - [6046] = 3030, - [6047] = 5895, - [6048] = 2987, + [6046] = 6046, + [6047] = 6047, + [6048] = 2369, [6049] = 6049, - [6050] = 3138, + [6050] = 6050, [6051] = 6051, - [6052] = 5990, - [6053] = 5978, - [6054] = 5979, - [6055] = 2248, - [6056] = 2232, - [6057] = 5892, - [6058] = 2982, - [6059] = 2982, - [6060] = 2988, - [6061] = 3028, - [6062] = 2986, - [6063] = 2989, - [6064] = 2990, - [6065] = 2991, - [6066] = 2992, - [6067] = 2993, - [6068] = 2994, - [6069] = 2995, - [6070] = 3029, - [6071] = 3087, - [6072] = 3008, - [6073] = 3004, - [6074] = 3005, - [6075] = 3006, - [6076] = 3009, - [6077] = 5893, - [6078] = 5901, - [6079] = 6079, - [6080] = 5906, - [6081] = 5907, - [6082] = 5908, - [6083] = 5894, - [6084] = 5520, - [6085] = 2981, - [6086] = 5521, - [6087] = 3061, - [6088] = 3018, - [6089] = 3030, - [6090] = 2987, - [6091] = 6091, - [6092] = 5884, - [6093] = 6093, - [6094] = 5954, - [6095] = 5884, - [6096] = 5954, - [6097] = 5954, - [6098] = 5954, - [6099] = 5954, - [6100] = 5954, - [6101] = 5954, - [6102] = 5954, - [6103] = 5954, - [6104] = 5954, - [6105] = 5954, - [6106] = 5894, - [6107] = 3159, - [6108] = 3170, - [6109] = 5252, - [6110] = 5204, - [6111] = 3264, - [6112] = 2087, - [6113] = 3099, - [6114] = 3107, - [6115] = 3229, - [6116] = 3002, - [6117] = 2094, - [6118] = 3254, - [6119] = 3147, - [6120] = 3112, - [6121] = 3294, - [6122] = 3189, - [6123] = 3198, - [6124] = 3295, - [6125] = 3290, - [6126] = 6126, - [6127] = 3201, - [6128] = 3280, - [6129] = 3223, - [6130] = 3225, - [6131] = 3260, - [6132] = 3262, - [6133] = 3110, - [6134] = 3285, - [6135] = 3168, - [6136] = 3092, - [6137] = 5520, - [6138] = 3173, - [6139] = 3106, - [6140] = 3164, - [6141] = 3051, - [6142] = 5521, - [6143] = 3169, - [6144] = 3207, - [6145] = 5990, - [6146] = 3182, - [6147] = 3138, - [6148] = 2087, - [6149] = 3291, - [6150] = 5522, - [6151] = 5523, - [6152] = 3090, - [6153] = 3103, - [6154] = 3114, - [6155] = 2997, - [6156] = 171, - [6157] = 3120, - [6158] = 5990, - [6159] = 3298, - [6160] = 2476, - [6161] = 3242, - [6162] = 3246, - [6163] = 3258, - [6164] = 2498, - [6165] = 3119, - [6166] = 3150, - [6167] = 3055, - [6168] = 3199, - [6169] = 3229, - [6170] = 2107, - [6171] = 2473, - [6172] = 927, - [6173] = 2556, - [6174] = 3285, - [6175] = 3107, - [6176] = 3112, - [6177] = 3223, - [6178] = 4337, - [6179] = 5990, - [6180] = 1970, - [6181] = 3170, - [6182] = 2469, - [6183] = 2471, - [6184] = 3298, - [6185] = 3225, - [6186] = 2381, - [6187] = 3189, - [6188] = 3198, - [6189] = 2382, - [6190] = 3201, - [6191] = 2379, - [6192] = 2557, - [6193] = 3120, - [6194] = 3150, - [6195] = 3254, - [6196] = 2558, - [6197] = 2295, - [6198] = 1819, - [6199] = 1820, - [6200] = 1823, - [6201] = 1822, - [6202] = 3242, - [6203] = 4240, - [6204] = 5252, - [6205] = 1825, - [6206] = 1908, - [6207] = 2555, - [6208] = 3294, - [6209] = 3246, - [6210] = 3260, - [6211] = 1826, - [6212] = 3262, - [6213] = 2108, - [6214] = 926, - [6215] = 1816, - [6216] = 3207, - [6217] = 2497, - [6218] = 3110, - [6219] = 3159, - [6220] = 3199, - [6221] = 3119, - [6222] = 2289, - [6223] = 2295, - [6224] = 2467, - [6225] = 3295, - [6226] = 3701, - [6227] = 3290, - [6228] = 2498, - [6229] = 2475, - [6230] = 2232, - [6231] = 3092, - [6232] = 2524, - [6233] = 171, - [6234] = 2499, - [6235] = 2476, - [6236] = 3264, - [6237] = 3291, - [6238] = 2605, - [6239] = 2457, - [6240] = 2525, - [6241] = 2087, - [6242] = 5990, - [6243] = 2289, - [6244] = 2540, - [6245] = 5990, - [6246] = 3090, - [6247] = 4269, - [6248] = 2089, - [6249] = 3103, - [6250] = 2083, - [6251] = 2093, - [6252] = 6252, - [6253] = 3114, - [6254] = 2076, - [6255] = 5204, - [6256] = 2077, - [6257] = 3147, - [6258] = 3164, - [6259] = 2068, - [6260] = 3099, - [6261] = 3173, - [6262] = 5990, - [6263] = 3182, - [6264] = 4389, - [6265] = 2114, - [6266] = 1908, - [6267] = 3168, - [6268] = 301, - [6269] = 5990, - [6270] = 3280, - [6271] = 2085, - [6272] = 5990, - [6273] = 3258, - [6274] = 2248, - [6275] = 305, - [6276] = 3106, - [6277] = 6277, - [6278] = 6278, - [6279] = 2295, - [6280] = 2462, - [6281] = 6281, - [6282] = 2289, - [6283] = 2087, - [6284] = 6277, - [6285] = 2460, - [6286] = 2116, - [6287] = 1908, - [6288] = 6278, - [6289] = 2248, - [6290] = 2232, - [6291] = 6277, - [6292] = 6292, - [6293] = 6278, - [6294] = 2085, - [6295] = 6292, - [6296] = 6278, - [6297] = 5520, - [6298] = 6298, - [6299] = 5521, - [6300] = 5522, - [6301] = 5523, - [6302] = 2094, - [6303] = 6303, - [6304] = 6304, - [6305] = 6277, - [6306] = 5252, - [6307] = 2087, - [6308] = 6303, - [6309] = 5204, - [6310] = 6298, - [6311] = 6311, - [6312] = 6312, - [6313] = 6277, - [6314] = 6278, - [6315] = 5522, - [6316] = 6311, - [6317] = 6278, - [6318] = 5520, - [6319] = 6311, - [6320] = 6312, - [6321] = 6311, - [6322] = 6277, - [6323] = 6323, - [6324] = 6277, - [6325] = 2439, - [6326] = 5523, - [6327] = 2114, - [6328] = 6278, - [6329] = 6277, - [6330] = 6312, - [6331] = 2304, - [6332] = 6311, - [6333] = 6278, - [6334] = 6312, - [6335] = 6311, - [6336] = 6312, - [6337] = 6278, - [6338] = 6312, - [6339] = 6311, - [6340] = 6311, - [6341] = 6341, - [6342] = 2289, - [6343] = 6312, - [6344] = 6312, - [6345] = 5990, - [6346] = 2295, - [6347] = 6311, - [6348] = 6312, - [6349] = 6312, - [6350] = 1919, - [6351] = 5521, - [6352] = 6311, - [6353] = 6278, - [6354] = 2087, - [6355] = 5990, - [6356] = 6277, - [6357] = 6277, - [6358] = 6311, - [6359] = 6311, - [6360] = 6312, - [6361] = 6312, - [6362] = 6311, - [6363] = 6311, - [6364] = 6312, - [6365] = 6312, - [6366] = 2504, - [6367] = 5522, - [6368] = 1819, - [6369] = 2087, - [6370] = 2485, - [6371] = 2486, - [6372] = 2087, - [6373] = 2505, - [6374] = 2506, - [6375] = 2507, - [6376] = 1820, - [6377] = 1823, - [6378] = 1822, - [6379] = 2517, - [6380] = 2458, - [6381] = 2519, - [6382] = 6382, - [6383] = 2520, - [6384] = 2554, - [6385] = 2474, - [6386] = 1825, - [6387] = 1826, - [6388] = 1816, - [6389] = 6389, - [6390] = 2248, - [6391] = 6382, - [6392] = 4337, - [6393] = 2232, - [6394] = 6394, - [6395] = 6382, - [6396] = 6382, - [6397] = 6394, - [6398] = 6394, - [6399] = 2289, - [6400] = 2295, - [6401] = 6382, - [6402] = 6394, - [6403] = 6394, - [6404] = 6394, - [6405] = 6394, - [6406] = 4240, - [6407] = 6394, - [6408] = 6394, - [6409] = 4389, - [6410] = 3701, - [6411] = 4269, - [6412] = 5520, - [6413] = 6382, - [6414] = 6414, - [6415] = 6415, - [6416] = 6416, - [6417] = 6417, - [6418] = 6417, - [6419] = 6415, - [6420] = 2489, - [6421] = 6415, - [6422] = 2522, - [6423] = 2653, - [6424] = 6416, - [6425] = 6425, - [6426] = 6417, - [6427] = 3862, - [6428] = 6425, - [6429] = 6416, - [6430] = 6430, - [6431] = 6431, - [6432] = 5523, - [6433] = 6417, - [6434] = 6415, - [6435] = 6415, - [6436] = 2577, - [6437] = 1970, - [6438] = 6431, - [6439] = 6416, - [6440] = 6415, - [6441] = 6417, - [6442] = 6425, - [6443] = 6430, - [6444] = 6430, - [6445] = 6416, - [6446] = 6431, - [6447] = 6415, - [6448] = 6415, - [6449] = 6415, - [6450] = 6415, - [6451] = 6416, - [6452] = 6417, - [6453] = 6425, - [6454] = 6425, - [6455] = 6417, - [6456] = 6415, - [6457] = 6416, + [6052] = 6052, + [6053] = 6053, + [6054] = 2373, + [6055] = 2210, + [6056] = 6046, + [6057] = 6046, + [6058] = 6058, + [6059] = 6059, + [6060] = 2515, + [6061] = 6061, + [6062] = 2322, + [6063] = 2323, + [6064] = 6046, + [6065] = 6051, + [6066] = 6052, + [6067] = 5212, + [6068] = 6047, + [6069] = 6045, + [6070] = 6058, + [6071] = 6059, + [6072] = 6053, + [6073] = 6061, + [6074] = 2327, + [6075] = 6047, + [6076] = 6052, + [6077] = 2328, + [6078] = 2382, + [6079] = 2383, + [6080] = 2329, + [6081] = 2385, + [6082] = 6045, + [6083] = 6058, + [6084] = 6059, + [6085] = 2277, + [6086] = 2387, + [6087] = 6046, + [6088] = 6052, + [6089] = 6045, + [6090] = 6058, + [6091] = 2389, + [6092] = 6059, + [6093] = 6045, + [6094] = 6058, + [6095] = 6059, + [6096] = 6047, + [6097] = 5778, + [6098] = 3590, + [6099] = 6053, + [6100] = 6052, + [6101] = 6046, + [6102] = 2390, + [6103] = 6045, + [6104] = 6058, + [6105] = 6059, + [6106] = 6047, + [6107] = 6052, + [6108] = 6046, + [6109] = 6053, + [6110] = 6052, + [6111] = 6047, + [6112] = 6046, + [6113] = 6047, + [6114] = 6045, + [6115] = 6058, + [6116] = 6059, + [6117] = 6053, + [6118] = 6046, + [6119] = 6053, + [6120] = 6051, + [6121] = 6047, + [6122] = 5783, + [6123] = 6046, + [6124] = 6047, + [6125] = 5211, + [6126] = 6053, + [6127] = 5790, + [6128] = 2283, + [6129] = 6047, + [6130] = 6046, + [6131] = 2514, + [6132] = 2515, + [6133] = 6047, + [6134] = 6053, + [6135] = 2266, + [6136] = 5783, + [6137] = 2284, + [6138] = 5790, + [6139] = 6046, + [6140] = 6046, + [6141] = 6047, + [6142] = 6046, + [6143] = 6047, + [6144] = 6053, + [6145] = 6053, + [6146] = 6047, + [6147] = 6053, + [6148] = 6053, + [6149] = 6046, + [6150] = 5217, + [6151] = 6053, + [6152] = 2286, + [6153] = 2287, + [6154] = 6053, + [6155] = 2394, + [6156] = 6061, + [6157] = 6053, + [6158] = 6046, + [6159] = 6047, + [6160] = 6045, + [6161] = 6046, + [6162] = 6047, + [6163] = 6053, + [6164] = 2395, + [6165] = 6058, + [6166] = 6053, + [6167] = 6059, + [6168] = 6046, + [6169] = 6047, + [6170] = 6053, + [6171] = 6046, + [6172] = 6047, + [6173] = 6053, + [6174] = 2355, + [6175] = 6061, + [6176] = 2356, + [6177] = 6046, + [6178] = 6047, + [6179] = 6053, + [6180] = 6051, + [6181] = 6047, + [6182] = 6052, + [6183] = 6047, + [6184] = 6053, + [6185] = 6061, + [6186] = 6053, + [6187] = 5216, + [6188] = 6046, + [6189] = 6046, + [6190] = 6190, + [6191] = 6046, + [6192] = 2360, + [6193] = 2450, + [6194] = 6047, + [6195] = 6045, + [6196] = 6058, + [6197] = 6059, + [6198] = 6051, + [6199] = 2163, + [6200] = 6053, + [6201] = 2366, + [6202] = 6052, + [6203] = 6046, + [6204] = 2235, + [6205] = 2269, + [6206] = 6047, + [6207] = 6061, + [6208] = 2367, + [6209] = 6053, + [6210] = 2514, + [6211] = 6047, + [6212] = 6212, + [6213] = 5790, + [6214] = 6214, + [6215] = 6212, + [6216] = 6212, + [6217] = 6212, + [6218] = 6212, + [6219] = 3590, + [6220] = 6212, + [6221] = 6212, + [6222] = 6214, + [6223] = 6223, + [6224] = 6212, + [6225] = 6212, + [6226] = 6226, + [6227] = 6212, + [6228] = 5212, + [6229] = 5217, + [6230] = 6212, + [6231] = 5211, + [6232] = 5216, + [6233] = 6212, + [6234] = 5783, + [6235] = 6212, + [6236] = 6212, + [6237] = 6226, + [6238] = 6212, + [6239] = 6223, + [6240] = 6212, + [6241] = 6212, + [6242] = 6212, + [6243] = 6212, + [6244] = 6212, + [6245] = 2409, + [6246] = 6212, + [6247] = 5783, + [6248] = 6212, + [6249] = 6212, + [6250] = 6212, + [6251] = 5790, + [6252] = 5783, + [6253] = 6223, + [6254] = 5783, + [6255] = 5790, + [6256] = 6214, + [6257] = 5783, + [6258] = 2128, + [6259] = 6226, + [6260] = 6214, + [6261] = 6223, + [6262] = 5790, + [6263] = 5790, + [6264] = 5783, + [6265] = 2194, + [6266] = 6226, + [6267] = 5790, + [6268] = 2131, + [6269] = 6226, + [6270] = 5970, + [6271] = 6214, + [6272] = 6223, + [6273] = 6214, + [6274] = 6226, + [6275] = 6223, + [6276] = 6214, + [6277] = 2186, + [6278] = 2178, + [6279] = 2206, + [6280] = 2124, + [6281] = 6223, + [6282] = 6214, + [6283] = 6226, + [6284] = 6223, + [6285] = 5969, + [6286] = 6214, + [6287] = 6226, + [6288] = 6214, + [6289] = 6223, + [6290] = 6226, + [6291] = 6226, + [6292] = 2198, + [6293] = 6226, + [6294] = 2233, + [6295] = 6295, + [6296] = 6223, + [6297] = 2175, + [6298] = 2212, + [6299] = 6223, + [6300] = 6214, + [6301] = 4501, + [6302] = 6302, + [6303] = 6214, + [6304] = 2110, + [6305] = 6223, + [6306] = 6226, + [6307] = 6307, + [6308] = 6307, + [6309] = 6307, + [6310] = 2165, + [6311] = 2179, + [6312] = 2168, + [6313] = 2191, + [6314] = 2169, + [6315] = 6307, + [6316] = 6307, + [6317] = 6307, + [6318] = 6307, + [6319] = 2188, + [6320] = 6223, + [6321] = 2180, + [6322] = 6214, + [6323] = 6214, + [6324] = 6226, + [6325] = 2177, + [6326] = 2185, + [6327] = 6223, + [6328] = 6214, + [6329] = 2166, + [6330] = 6214, + [6331] = 6226, + [6332] = 6307, + [6333] = 6226, + [6334] = 2190, + [6335] = 1916, + [6336] = 6226, + [6337] = 6223, + [6338] = 4585, + [6339] = 2174, + [6340] = 6307, + [6341] = 6223, + [6342] = 6307, + [6343] = 6307, + [6344] = 6307, + [6345] = 6226, + [6346] = 6226, + [6347] = 6347, + [6348] = 6347, + [6349] = 6223, + [6350] = 6214, + [6351] = 6347, + [6352] = 6223, + [6353] = 2189, + [6354] = 6214, + [6355] = 6226, + [6356] = 6226, + [6357] = 6223, + [6358] = 6214, + [6359] = 2045, + [6360] = 6360, + [6361] = 6347, + [6362] = 6223, + [6363] = 6214, + [6364] = 6364, + [6365] = 6223, + [6366] = 6366, + [6367] = 6367, + [6368] = 6368, + [6369] = 6368, + [6370] = 6370, + [6371] = 6366, + [6372] = 6366, + [6373] = 6367, + [6374] = 6226, + [6375] = 6366, + [6376] = 6223, + [6377] = 6368, + [6378] = 6368, + [6379] = 6367, + [6380] = 6366, + [6381] = 6381, + [6382] = 6366, + [6383] = 6366, + [6384] = 6384, + [6385] = 6367, + [6386] = 6367, + [6387] = 6368, + [6388] = 6366, + [6389] = 6381, + [6390] = 6368, + [6391] = 6366, + [6392] = 6366, + [6393] = 6367, + [6394] = 6368, + [6395] = 6368, + [6396] = 6367, + [6397] = 6366, + [6398] = 6384, + [6399] = 6366, + [6400] = 6214, + [6401] = 6368, + [6402] = 6214, + [6403] = 6368, + [6404] = 6223, + [6405] = 6214, + [6406] = 6406, + [6407] = 6366, + [6408] = 6368, + [6409] = 6366, + [6410] = 6226, + [6411] = 6368, + [6412] = 6412, + [6413] = 6366, + [6414] = 6368, + [6415] = 6366, + [6416] = 6366, + [6417] = 6347, + [6418] = 6347, + [6419] = 6368, + [6420] = 6368, + [6421] = 6412, + [6422] = 6366, + [6423] = 6368, + [6424] = 6368, + [6425] = 6367, + [6426] = 6226, + [6427] = 6366, + [6428] = 6226, + [6429] = 6368, + [6430] = 6368, + [6431] = 6381, + [6432] = 6366, + [6433] = 6223, + [6434] = 6367, + [6435] = 6366, + [6436] = 6368, + [6437] = 6384, + [6438] = 6438, + [6439] = 6412, + [6440] = 6384, + [6441] = 6368, + [6442] = 6370, + [6443] = 6438, + [6444] = 6412, + [6445] = 6445, + [6446] = 6214, + [6447] = 6447, + [6448] = 6448, + [6449] = 6449, + [6450] = 6406, + [6451] = 6451, + [6452] = 6449, + [6453] = 6453, + [6454] = 6447, + [6455] = 6448, + [6456] = 6451, + [6457] = 6449, [6458] = 6458, - [6459] = 6417, - [6460] = 6430, - [6461] = 6461, - [6462] = 6415, - [6463] = 6430, - [6464] = 6425, - [6465] = 6431, - [6466] = 6415, - [6467] = 2660, - [6468] = 6431, - [6469] = 5520, - [6470] = 5522, - [6471] = 2582, - [6472] = 6415, - [6473] = 6417, - [6474] = 6425, - [6475] = 6430, - [6476] = 6416, - [6477] = 6431, - [6478] = 6415, - [6479] = 6417, - [6480] = 6425, - [6481] = 6415, - [6482] = 6425, - [6483] = 6431, - [6484] = 6430, - [6485] = 6431, - [6486] = 6416, - [6487] = 6415, - [6488] = 6416, - [6489] = 2602, - [6490] = 6417, - [6491] = 6430, - [6492] = 6415, - [6493] = 6425, - [6494] = 6416, - [6495] = 6495, - [6496] = 6415, - [6497] = 6416, - [6498] = 6415, - [6499] = 6430, - [6500] = 2607, - [6501] = 6431, - [6502] = 6415, - [6503] = 6415, - [6504] = 6416, - [6505] = 1919, - [6506] = 6415, - [6507] = 6431, - [6508] = 5521, - [6509] = 6416, - [6510] = 6415, - [6511] = 6415, - [6512] = 6417, - [6513] = 6417, - [6514] = 6415, - [6515] = 6415, - [6516] = 2479, - [6517] = 6417, - [6518] = 6430, - [6519] = 1819, - [6520] = 2295, - [6521] = 2617, - [6522] = 6522, - [6523] = 2625, - [6524] = 6524, - [6525] = 6525, - [6526] = 6526, - [6527] = 3862, - [6528] = 2654, - [6529] = 2615, - [6530] = 2657, - [6531] = 2591, - [6532] = 2087, - [6533] = 2636, - [6534] = 6534, - [6535] = 6524, - [6536] = 6525, - [6537] = 6526, - [6538] = 2564, - [6539] = 2631, - [6540] = 2633, - [6541] = 6524, - [6542] = 6525, - [6543] = 6526, - [6544] = 6524, - [6545] = 6525, - [6546] = 6526, - [6547] = 6547, - [6548] = 2579, - [6549] = 6524, - [6550] = 6525, - [6551] = 6526, - [6552] = 2580, - [6553] = 1825, - [6554] = 2565, - [6555] = 6524, - [6556] = 6525, - [6557] = 6526, - [6558] = 1826, - [6559] = 1816, - [6560] = 2068, - [6561] = 6524, - [6562] = 6525, - [6563] = 6526, - [6564] = 6564, - [6565] = 6524, - [6566] = 6525, - [6567] = 6526, - [6568] = 6524, - [6569] = 6525, - [6570] = 6526, - [6571] = 6524, - [6572] = 6525, - [6573] = 6526, - [6574] = 2583, - [6575] = 6524, - [6576] = 6525, - [6577] = 6526, - [6578] = 6524, - [6579] = 6525, - [6580] = 6526, - [6581] = 2584, - [6582] = 6526, - [6583] = 6524, + [6459] = 6451, + [6460] = 6449, + [6461] = 6453, + [6462] = 6447, + [6463] = 6448, + [6464] = 6458, + [6465] = 6451, + [6466] = 6449, + [6467] = 6453, + [6468] = 6447, + [6469] = 6448, + [6470] = 6453, + [6471] = 6447, + [6472] = 6453, + [6473] = 6451, + [6474] = 6449, + [6475] = 6453, + [6476] = 6447, + [6477] = 6448, + [6478] = 6453, + [6479] = 6447, + [6480] = 6480, + [6481] = 6451, + [6482] = 6449, + [6483] = 6453, + [6484] = 6448, + [6485] = 6448, + [6486] = 6451, + [6487] = 6449, + [6488] = 6453, + [6489] = 6447, + [6490] = 6448, + [6491] = 6451, + [6492] = 6449, + [6493] = 6453, + [6494] = 6447, + [6495] = 6448, + [6496] = 6451, + [6497] = 6449, + [6498] = 6447, + [6499] = 6453, + [6500] = 6447, + [6501] = 6448, + [6502] = 6480, + [6503] = 6451, + [6504] = 6449, + [6505] = 6448, + [6506] = 6453, + [6507] = 6447, + [6508] = 6448, + [6509] = 6448, + [6510] = 6447, + [6511] = 6451, + [6512] = 6449, + [6513] = 6453, + [6514] = 6514, + [6515] = 6448, + [6516] = 6347, + [6517] = 6448, + [6518] = 6453, + [6519] = 6447, + [6520] = 6448, + [6521] = 6451, + [6522] = 6449, + [6523] = 6453, + [6524] = 6447, + [6525] = 6448, + [6526] = 6451, + [6527] = 6449, + [6528] = 6458, + [6529] = 6453, + [6530] = 6453, + [6531] = 6447, + [6532] = 6448, + [6533] = 6451, + [6534] = 6449, + [6535] = 6451, + [6536] = 6449, + [6537] = 6453, + [6538] = 6447, + [6539] = 6448, + [6540] = 6453, + [6541] = 6447, + [6542] = 6448, + [6543] = 6451, + [6544] = 6449, + [6545] = 6451, + [6546] = 6449, + [6547] = 6451, + [6548] = 6449, + [6549] = 6453, + [6550] = 6447, + [6551] = 6453, + [6552] = 6447, + [6553] = 6448, + [6554] = 6451, + [6555] = 6448, + [6556] = 6453, + [6557] = 6447, + [6558] = 6451, + [6559] = 6449, + [6560] = 6449, + [6561] = 6451, + [6562] = 6449, + [6563] = 6448, + [6564] = 6451, + [6565] = 6453, + [6566] = 6447, + [6567] = 6448, + [6568] = 6453, + [6569] = 6449, + [6570] = 6480, + [6571] = 6451, + [6572] = 6451, + [6573] = 6449, + [6574] = 6447, + [6575] = 6447, + [6576] = 6576, + [6577] = 6577, + [6578] = 6578, + [6579] = 6579, + [6580] = 6580, + [6581] = 6581, + [6582] = 6576, + [6583] = 6583, [6584] = 6584, - [6585] = 6585, - [6586] = 6525, - [6587] = 1919, - [6588] = 6524, - [6589] = 6526, - [6590] = 6525, - [6591] = 6526, + [6585] = 6576, + [6586] = 6586, + [6587] = 6587, + [6588] = 6588, + [6589] = 6589, + [6590] = 6590, + [6591] = 3050, [6592] = 6592, - [6593] = 2585, - [6594] = 6547, - [6595] = 6584, - [6596] = 2379, - [6597] = 6524, - [6598] = 6525, - [6599] = 6526, + [6593] = 6576, + [6594] = 6576, + [6595] = 6576, + [6596] = 6596, + [6597] = 6597, + [6598] = 6598, + [6599] = 6599, [6600] = 6600, [6601] = 6601, [6602] = 6602, - [6603] = 2643, - [6604] = 6524, - [6605] = 6278, - [6606] = 6277, - [6607] = 6278, - [6608] = 6277, - [6609] = 2644, - [6610] = 6525, + [6603] = 6603, + [6604] = 6604, + [6605] = 6605, + [6606] = 6598, + [6607] = 6607, + [6608] = 6608, + [6609] = 6609, + [6610] = 6589, [6611] = 6611, - [6612] = 6592, - [6613] = 2381, - [6614] = 6600, - [6615] = 6547, - [6616] = 6584, - [6617] = 2382, - [6618] = 2232, - [6619] = 6600, - [6620] = 6601, - [6621] = 6602, - [6622] = 6601, - [6623] = 6602, + [6612] = 6612, + [6613] = 6599, + [6614] = 6614, + [6615] = 6576, + [6616] = 6616, + [6617] = 6617, + [6618] = 6598, + [6619] = 6619, + [6620] = 6576, + [6621] = 6621, + [6622] = 6622, + [6623] = 6617, [6624] = 6624, - [6625] = 2289, - [6626] = 6524, - [6627] = 6592, - [6628] = 6525, - [6629] = 6526, - [6630] = 1820, - [6631] = 6547, - [6632] = 6584, - [6633] = 6600, - [6634] = 6601, - [6635] = 6602, - [6636] = 6636, - [6637] = 6592, - [6638] = 6547, - [6639] = 6584, - [6640] = 6600, - [6641] = 6601, - [6642] = 6602, + [6625] = 6587, + [6626] = 6626, + [6627] = 6598, + [6628] = 2409, + [6629] = 6629, + [6630] = 6576, + [6631] = 6576, + [6632] = 6598, + [6633] = 6633, + [6634] = 6598, + [6635] = 6635, + [6636] = 6347, + [6637] = 6637, + [6638] = 6576, + [6639] = 6598, + [6640] = 6640, + [6641] = 6641, + [6642] = 6642, [6643] = 6643, - [6644] = 6584, - [6645] = 6600, - [6646] = 6601, - [6647] = 6602, - [6648] = 6592, - [6649] = 6584, - [6650] = 6526, - [6651] = 6600, - [6652] = 6601, - [6653] = 6602, - [6654] = 2646, - [6655] = 6584, - [6656] = 6600, - [6657] = 6601, - [6658] = 6602, - [6659] = 6584, - [6660] = 1823, - [6661] = 2647, - [6662] = 6600, - [6663] = 6601, - [6664] = 6602, - [6665] = 2603, - [6666] = 2604, - [6667] = 6525, - [6668] = 2608, - [6669] = 6524, - [6670] = 6525, - [6671] = 6526, - [6672] = 2612, - [6673] = 2609, - [6674] = 1822, - [6675] = 6524, - [6676] = 6636, - [6677] = 2289, - [6678] = 6323, - [6679] = 6525, - [6680] = 2605, - [6681] = 6526, - [6682] = 6524, - [6683] = 6522, - [6684] = 6643, - [6685] = 2614, - [6686] = 2457, - [6687] = 2295, - [6688] = 2627, - [6689] = 2630, - [6690] = 2248, - [6691] = 2655, - [6692] = 1970, - [6693] = 6693, - [6694] = 6693, - [6695] = 2295, - [6696] = 6693, - [6697] = 6693, - [6698] = 6693, - [6699] = 6522, - [6700] = 6693, - [6701] = 6693, - [6702] = 6693, - [6703] = 2289, - [6704] = 6693, - [6705] = 6643, - [6706] = 6693, - [6707] = 3862, - [6708] = 6693, - [6709] = 6693, - [6710] = 2462, - [6711] = 6693, - [6712] = 6693, - [6713] = 6522, - [6714] = 6693, - [6715] = 6636, - [6716] = 6693, - [6717] = 6693, - [6718] = 6693, - [6719] = 6636, - [6720] = 6693, - [6721] = 6323, - [6722] = 6643, - [6723] = 2460, - [6724] = 6693, - [6725] = 6643, - [6726] = 1819, - [6727] = 1970, - [6728] = 2379, - [6729] = 6643, - [6730] = 2457, - [6731] = 2439, - [6732] = 2382, - [6733] = 6636, - [6734] = 1820, - [6735] = 1823, - [6736] = 1822, - [6737] = 6643, - [6738] = 6636, - [6739] = 1825, - [6740] = 1826, - [6741] = 6522, - [6742] = 6522, - [6743] = 6636, - [6744] = 6522, - [6745] = 6643, - [6746] = 6643, - [6747] = 6636, - [6748] = 6636, - [6749] = 6522, - [6750] = 2304, - [6751] = 6522, - [6752] = 6522, - [6753] = 2382, - [6754] = 6643, - [6755] = 2381, - [6756] = 2094, - [6757] = 6636, - [6758] = 1816, - [6759] = 2087, - [6760] = 4975, - [6761] = 6585, - [6762] = 2089, - [6763] = 2085, - [6764] = 2232, - [6765] = 2460, - [6766] = 6766, - [6767] = 2108, - [6768] = 2083, - [6769] = 2076, + [6644] = 6598, + [6645] = 6599, + [6646] = 6617, + [6647] = 6599, + [6648] = 6617, + [6649] = 6599, + [6650] = 6576, + [6651] = 6576, + [6652] = 6652, + [6653] = 6653, + [6654] = 6654, + [6655] = 6655, + [6656] = 6576, + [6657] = 6576, + [6658] = 6598, + [6659] = 6659, + [6660] = 6660, + [6661] = 6588, + [6662] = 6590, + [6663] = 6581, + [6664] = 6629, + [6665] = 6576, + [6666] = 6666, + [6667] = 6667, + [6668] = 6580, + [6669] = 6608, + [6670] = 6609, + [6671] = 6612, + [6672] = 6666, + [6673] = 6576, + [6674] = 6667, + [6675] = 6675, + [6676] = 6675, + [6677] = 6677, + [6678] = 186, + [6679] = 6654, + [6680] = 6680, + [6681] = 6621, + [6682] = 6596, + [6683] = 6683, + [6684] = 6684, + [6685] = 6685, + [6686] = 6686, + [6687] = 6687, + [6688] = 6677, + [6689] = 6683, + [6690] = 6685, + [6691] = 6687, + [6692] = 6677, + [6693] = 6683, + [6694] = 6685, + [6695] = 6687, + [6696] = 6677, + [6697] = 6683, + [6698] = 6685, + [6699] = 6687, + [6700] = 6700, + [6701] = 2629, + [6702] = 185, + [6703] = 6643, + [6704] = 6704, + [6705] = 2595, + [6706] = 6611, + [6707] = 6707, + [6708] = 6347, + [6709] = 6709, + [6710] = 6704, + [6711] = 6711, + [6712] = 6677, + [6713] = 6713, + [6714] = 6714, + [6715] = 6680, + [6716] = 6683, + [6717] = 6717, + [6718] = 1860, + [6719] = 6685, + [6720] = 6707, + [6721] = 6721, + [6722] = 6687, + [6723] = 6686, + [6724] = 2629, + [6725] = 1861, + [6726] = 6677, + [6727] = 6683, + [6728] = 6685, + [6729] = 6687, + [6730] = 6709, + [6731] = 6680, + [6732] = 6603, + [6733] = 6637, + [6734] = 6717, + [6735] = 6709, + [6736] = 3050, + [6737] = 6653, + [6738] = 6709, + [6739] = 6721, + [6740] = 6704, + [6741] = 6707, + [6742] = 1867, + [6743] = 1865, + [6744] = 6578, + [6745] = 1866, + [6746] = 6604, + [6747] = 6704, + [6748] = 6748, + [6749] = 1859, + [6750] = 6721, + [6751] = 6713, + [6752] = 6686, + [6753] = 2595, + [6754] = 6635, + [6755] = 6755, + [6756] = 1864, + [6757] = 1856, + [6758] = 6758, + [6759] = 6759, + [6760] = 6717, + [6761] = 6761, + [6762] = 6711, + [6763] = 6713, + [6764] = 6764, + [6765] = 1858, + [6766] = 1863, + [6767] = 6713, + [6768] = 6605, + [6769] = 6717, [6770] = 6770, - [6771] = 2462, - [6772] = 2107, - [6773] = 2077, - [6774] = 6611, - [6775] = 2093, - [6776] = 6776, - [6777] = 6776, - [6778] = 6611, - [6779] = 6776, - [6780] = 6776, - [6781] = 2519, - [6782] = 2607, - [6783] = 6776, - [6784] = 2458, - [6785] = 6776, - [6786] = 6776, - [6787] = 2474, - [6788] = 2485, - [6789] = 2507, - [6790] = 2486, - [6791] = 6776, - [6792] = 6776, + [6771] = 6659, + [6772] = 6680, + [6773] = 6707, + [6774] = 6721, + [6775] = 6686, + [6776] = 6602, + [6777] = 6777, + [6778] = 6597, + [6779] = 6709, + [6780] = 6600, + [6781] = 1868, + [6782] = 1869, + [6783] = 1857, + [6784] = 6579, + [6785] = 6704, + [6786] = 6704, + [6787] = 1854, + [6788] = 6758, + [6789] = 6601, + [6790] = 6655, + [6791] = 6791, + [6792] = 6792, [6793] = 6793, - [6794] = 6793, - [6795] = 6776, - [6796] = 6585, - [6797] = 2506, - [6798] = 2517, - [6799] = 4845, - [6800] = 2520, - [6801] = 6776, - [6802] = 2504, - [6803] = 6776, - [6804] = 2554, - [6805] = 2505, - [6806] = 2582, - [6807] = 2522, - [6808] = 6643, - [6809] = 6636, - [6810] = 2089, - [6811] = 2489, - [6812] = 6793, - [6813] = 2116, - [6814] = 6522, - [6815] = 2602, - [6816] = 2479, - [6817] = 6643, - [6818] = 6636, - [6819] = 2379, - [6820] = 2083, - [6821] = 2093, + [6794] = 6794, + [6795] = 6577, + [6796] = 6660, + [6797] = 6797, + [6798] = 6347, + [6799] = 6677, + [6800] = 6683, + [6801] = 6677, + [6802] = 6347, + [6803] = 6803, + [6804] = 904, + [6805] = 905, + [6806] = 6685, + [6807] = 6685, + [6808] = 6687, + [6809] = 6687, + [6810] = 6683, + [6811] = 6811, + [6812] = 6812, + [6813] = 6685, + [6814] = 6814, + [6815] = 6815, + [6816] = 6816, + [6817] = 6817, + [6818] = 6816, + [6819] = 6811, + [6820] = 6820, + [6821] = 6817, [6822] = 6822, - [6823] = 2085, - [6824] = 2381, - [6825] = 2653, - [6826] = 6522, - [6827] = 2076, - [6828] = 6828, - [6829] = 2077, - [6830] = 2660, - [6831] = 2087, - [6832] = 2577, - [6833] = 2108, - [6834] = 2564, - [6835] = 2605, - [6836] = 2614, - [6837] = 2655, - [6838] = 2462, - [6839] = 2627, - [6840] = 2604, - [6841] = 2643, - [6842] = 2644, - [6843] = 2584, - [6844] = 2617, - [6845] = 6793, - [6846] = 2585, - [6847] = 2646, - [6848] = 2615, - [6849] = 2636, - [6850] = 2647, - [6851] = 2608, - [6852] = 2625, - [6853] = 2603, - [6854] = 2630, - [6855] = 6855, - [6856] = 2565, - [6857] = 2631, - [6858] = 1919, - [6859] = 6859, - [6860] = 2633, - [6861] = 2612, - [6862] = 2583, - [6863] = 2591, - [6864] = 2654, - [6865] = 2579, - [6866] = 2580, - [6867] = 2657, - [6868] = 2609, - [6869] = 6869, - [6870] = 6869, - [6871] = 6871, - [6872] = 1919, - [6873] = 6869, - [6874] = 6871, - [6875] = 6875, - [6876] = 6876, - [6877] = 6875, + [6823] = 6816, + [6824] = 6811, + [6825] = 6820, + [6826] = 6820, + [6827] = 6817, + [6828] = 6811, + [6829] = 6820, + [6830] = 6816, + [6831] = 6816, + [6832] = 6817, + [6833] = 6811, + [6834] = 6820, + [6835] = 6835, + [6836] = 6817, + [6837] = 6817, + [6838] = 6817, + [6839] = 6820, + [6840] = 6811, + [6841] = 6820, + [6842] = 6687, + [6843] = 6811, + [6844] = 6816, + [6845] = 6820, + [6846] = 6347, + [6847] = 6816, + [6848] = 6811, + [6849] = 6849, + [6850] = 6677, + [6851] = 6851, + [6852] = 6852, + [6853] = 6817, + [6854] = 6687, + [6855] = 6816, + [6856] = 6347, + [6857] = 6820, + [6858] = 6816, + [6859] = 6816, + [6860] = 6677, + [6861] = 6700, + [6862] = 6862, + [6863] = 6817, + [6864] = 6817, + [6865] = 6683, + [6866] = 6866, + [6867] = 6867, + [6868] = 6817, + [6869] = 6817, + [6870] = 6870, + [6871] = 6816, + [6872] = 6816, + [6873] = 6873, + [6874] = 6677, + [6875] = 6683, + [6876] = 6685, + [6877] = 6687, [6878] = 6878, - [6879] = 6869, - [6880] = 6871, - [6881] = 6878, + [6879] = 6879, + [6880] = 6816, + [6881] = 6881, [6882] = 6882, - [6883] = 6878, - [6884] = 6884, - [6885] = 6876, - [6886] = 6884, - [6887] = 6869, - [6888] = 6878, - [6889] = 6878, - [6890] = 6871, - [6891] = 6876, - [6892] = 6869, - [6893] = 6871, - [6894] = 6894, - [6895] = 6895, - [6896] = 6869, - [6897] = 6875, - [6898] = 6869, - [6899] = 6871, - [6900] = 6871, - [6901] = 6901, - [6902] = 6902, - [6903] = 2781, - [6904] = 6869, - [6905] = 6884, - [6906] = 6871, - [6907] = 6869, - [6908] = 6871, - [6909] = 6884, - [6910] = 6869, - [6911] = 6871, - [6912] = 6869, - [6913] = 3119, - [6914] = 6869, - [6915] = 3280, - [6916] = 6871, - [6917] = 3298, - [6918] = 6869, - [6919] = 6871, - [6920] = 6869, - [6921] = 6871, - [6922] = 6869, - [6923] = 6875, - [6924] = 6871, - [6925] = 6793, - [6926] = 6871, - [6927] = 6869, - [6928] = 6871, - [6929] = 6871, - [6930] = 2525, - [6931] = 2471, - [6932] = 2467, - [6933] = 6933, - [6934] = 6934, - [6935] = 6935, - [6936] = 6936, - [6937] = 6934, - [6938] = 6934, - [6939] = 6935, - [6940] = 6940, - [6941] = 6941, - [6942] = 6940, + [6883] = 6883, + [6884] = 6816, + [6885] = 6885, + [6886] = 6816, + [6887] = 6677, + [6888] = 6683, + [6889] = 6685, + [6890] = 6687, + [6891] = 6811, + [6892] = 6892, + [6893] = 6893, + [6894] = 6811, + [6895] = 6683, + [6896] = 6811, + [6897] = 6685, + [6898] = 6817, + [6899] = 6761, + [6900] = 6820, + [6901] = 6817, + [6902] = 6817, + [6903] = 6820, + [6904] = 6904, + [6905] = 6905, + [6906] = 6683, + [6907] = 2629, + [6908] = 6686, + [6909] = 6909, + [6910] = 1866, + [6911] = 6911, + [6912] = 6909, + [6913] = 6913, + [6914] = 6913, + [6915] = 6683, + [6916] = 6911, + [6917] = 6677, + [6918] = 6909, + [6919] = 6913, + [6920] = 6713, + [6921] = 6913, + [6922] = 6909, + [6923] = 6909, + [6924] = 1865, + [6925] = 6909, + [6926] = 6913, + [6927] = 6909, + [6928] = 6913, + [6929] = 6909, + [6930] = 6677, + [6931] = 6909, + [6932] = 6721, + [6933] = 1869, + [6934] = 6687, + [6935] = 1845, + [6936] = 6347, + [6937] = 6911, + [6938] = 6909, + [6939] = 1860, + [6940] = 2629, + [6941] = 6685, + [6942] = 6913, [6943] = 6943, - [6944] = 2475, - [6945] = 6934, - [6946] = 6943, - [6947] = 6943, - [6948] = 6948, - [6949] = 6941, - [6950] = 6935, - [6951] = 2476, - [6952] = 6943, - [6953] = 6953, - [6954] = 6934, - [6955] = 6935, - [6956] = 6940, - [6957] = 6941, - [6958] = 3207, - [6959] = 6935, - [6960] = 6943, - [6961] = 6934, - [6962] = 6940, - [6963] = 6941, - [6964] = 6948, - [6965] = 301, - [6966] = 6966, - [6967] = 6943, - [6968] = 6935, - [6969] = 6943, - [6970] = 6934, - [6971] = 2498, - [6972] = 6972, - [6973] = 6973, - [6974] = 2540, - [6975] = 6934, - [6976] = 6935, - [6977] = 305, - [6978] = 6941, - [6979] = 6943, - [6980] = 2555, - [6981] = 2499, - [6982] = 6940, - [6983] = 6941, - [6984] = 6940, - [6985] = 6941, - [6986] = 6934, - [6987] = 2556, - [6988] = 6935, - [6989] = 6943, - [6990] = 6934, - [6991] = 6935, - [6992] = 6934, - [6993] = 6935, + [6944] = 6685, + [6945] = 6943, + [6946] = 6707, + [6947] = 6717, + [6948] = 6913, + [6949] = 186, + [6950] = 6911, + [6951] = 6909, + [6952] = 1856, + [6953] = 6913, + [6954] = 185, + [6955] = 6911, + [6956] = 6909, + [6957] = 6713, + [6958] = 1857, + [6959] = 6959, + [6960] = 6911, + [6961] = 6913, + [6962] = 6911, + [6963] = 1861, + [6964] = 1858, + [6965] = 1843, + [6966] = 6911, + [6967] = 6687, + [6968] = 1863, + [6969] = 6909, + [6970] = 6943, + [6971] = 6971, + [6972] = 6909, + [6973] = 1864, + [6974] = 6913, + [6975] = 6347, + [6976] = 6909, + [6977] = 6913, + [6978] = 6909, + [6979] = 6721, + [6980] = 6911, + [6981] = 1844, + [6982] = 6911, + [6983] = 2512, + [6984] = 6911, + [6985] = 6717, + [6986] = 6943, + [6987] = 2595, + [6988] = 6911, + [6989] = 6909, + [6990] = 1854, + [6991] = 6913, + [6992] = 6909, + [6993] = 6707, [6994] = 6943, - [6995] = 6995, - [6996] = 6936, - [6997] = 6934, - [6998] = 6935, - [6999] = 2469, - [7000] = 1970, - [7001] = 6940, - [7002] = 6941, - [7003] = 6934, - [7004] = 6940, - [7005] = 6941, - [7006] = 2497, - [7007] = 6940, - [7008] = 6943, - [7009] = 6941, - [7010] = 2557, - [7011] = 2558, - [7012] = 6995, - [7013] = 6934, - [7014] = 6935, - [7015] = 6943, - [7016] = 6934, - [7017] = 6940, - [7018] = 6941, - [7019] = 6936, - [7020] = 6935, - [7021] = 6943, - [7022] = 6935, - [7023] = 6941, - [7024] = 6934, - [7025] = 6943, - [7026] = 6935, - [7027] = 6943, - [7028] = 6940, - [7029] = 6940, - [7030] = 6941, - [7031] = 6966, - [7032] = 6943, - [7033] = 6953, - [7034] = 6934, - [7035] = 6934, - [7036] = 6935, - [7037] = 6895, - [7038] = 6940, - [7039] = 6941, - [7040] = 6941, - [7041] = 6935, - [7042] = 6943, - [7043] = 6933, - [7044] = 6940, - [7045] = 6935, - [7046] = 6934, - [7047] = 6935, - [7048] = 6941, - [7049] = 6940, - [7050] = 6940, - [7051] = 6940, - [7052] = 6941, - [7053] = 2473, - [7054] = 6941, - [7055] = 6943, - [7056] = 6940, - [7057] = 6941, - [7058] = 6995, - [7059] = 6934, - [7060] = 6935, - [7061] = 6943, - [7062] = 2524, - [7063] = 6940, - [7064] = 6941, - [7065] = 6943, - [7066] = 6972, - [7067] = 6940, - [7068] = 7068, - [7069] = 7069, - [7070] = 7070, - [7071] = 7071, + [6995] = 6943, + [6996] = 1868, + [6997] = 6909, + [6998] = 6998, + [6999] = 6999, + [7000] = 6909, + [7001] = 6909, + [7002] = 6911, + [7003] = 6909, + [7004] = 6911, + [7005] = 6909, + [7006] = 1859, + [7007] = 1867, + [7008] = 2595, + [7009] = 6913, + [7010] = 6686, + [7011] = 7011, + [7012] = 6677, + [7013] = 7011, + [7014] = 7011, + [7015] = 7011, + [7016] = 6687, + [7017] = 6812, + [7018] = 7018, + [7019] = 7019, + [7020] = 7011, + [7021] = 6852, + [7022] = 7018, + [7023] = 6893, + [7024] = 7018, + [7025] = 7018, + [7026] = 7011, + [7027] = 7019, + [7028] = 7019, + [7029] = 7018, + [7030] = 7019, + [7031] = 7031, + [7032] = 7011, + [7033] = 7018, + [7034] = 2565, + [7035] = 2619, + [7036] = 7036, + [7037] = 7019, + [7038] = 7038, + [7039] = 7039, + [7040] = 7019, + [7041] = 7041, + [7042] = 7042, + [7043] = 6881, + [7044] = 7044, + [7045] = 6687, + [7046] = 7018, + [7047] = 7047, + [7048] = 2909, + [7049] = 6822, + [7050] = 6879, + [7051] = 6866, + [7052] = 6685, + [7053] = 7018, + [7054] = 2205, + [7055] = 6867, + [7056] = 6905, + [7057] = 6882, + [7058] = 7018, + [7059] = 7018, + [7060] = 7011, + [7061] = 6677, + [7062] = 6683, + [7063] = 6347, + [7064] = 7018, + [7065] = 2184, + [7066] = 7011, + [7067] = 6883, + [7068] = 6904, + [7069] = 7036, + [7070] = 7019, + [7071] = 6815, [7072] = 7072, - [7073] = 7073, - [7074] = 7074, - [7075] = 7075, - [7076] = 7076, - [7077] = 7077, - [7078] = 7078, - [7079] = 7078, - [7080] = 7080, - [7081] = 7081, - [7082] = 7070, - [7083] = 7080, - [7084] = 7084, - [7085] = 7085, - [7086] = 7086, - [7087] = 7087, - [7088] = 7069, - [7089] = 7078, - [7090] = 7090, - [7091] = 7091, - [7092] = 7078, - [7093] = 7093, - [7094] = 7094, - [7095] = 7069, + [7073] = 6814, + [7074] = 2170, + [7075] = 7038, + [7076] = 6885, + [7077] = 7039, + [7078] = 6878, + [7079] = 7041, + [7080] = 7042, + [7081] = 7036, + [7082] = 7018, + [7083] = 7038, + [7084] = 7039, + [7085] = 7041, + [7086] = 7044, + [7087] = 7042, + [7088] = 7044, + [7089] = 7047, + [7090] = 7047, + [7091] = 6683, + [7092] = 7018, + [7093] = 7019, + [7094] = 6835, + [7095] = 7019, [7096] = 7096, - [7097] = 7069, - [7098] = 7090, - [7099] = 7071, - [7100] = 7100, - [7101] = 7101, - [7102] = 7069, - [7103] = 7103, - [7104] = 7104, - [7105] = 7073, - [7106] = 7106, - [7107] = 7074, - [7108] = 7108, + [7097] = 7011, + [7098] = 7098, + [7099] = 7099, + [7100] = 6851, + [7101] = 2200, + [7102] = 7011, + [7103] = 6849, + [7104] = 6862, + [7105] = 7018, + [7106] = 7018, + [7107] = 7019, + [7108] = 6685, [7109] = 7109, [7110] = 7110, - [7111] = 1970, - [7112] = 7112, - [7113] = 7078, + [7111] = 7019, + [7112] = 2409, + [7113] = 6892, [7114] = 7114, - [7115] = 7069, + [7115] = 6713, [7116] = 7116, - [7117] = 7078, - [7118] = 7118, - [7119] = 7119, - [7120] = 7078, - [7121] = 7075, - [7122] = 7072, - [7123] = 7071, - [7124] = 7077, - [7125] = 7068, - [7126] = 7103, - [7127] = 7071, - [7128] = 7078, - [7129] = 7078, - [7130] = 7114, - [7131] = 7103, - [7132] = 7071, - [7133] = 7133, - [7134] = 7078, + [7117] = 7116, + [7118] = 6685, + [7119] = 7116, + [7120] = 6687, + [7121] = 7116, + [7122] = 7114, + [7123] = 7123, + [7124] = 7116, + [7125] = 1795, + [7126] = 6713, + [7127] = 7114, + [7128] = 7116, + [7129] = 6713, + [7130] = 7130, + [7131] = 7123, + [7132] = 6686, + [7133] = 6686, + [7134] = 7114, [7135] = 7135, - [7136] = 7136, + [7136] = 7123, [7137] = 7137, - [7138] = 7078, + [7138] = 6677, [7139] = 7114, - [7140] = 3169, - [7141] = 7141, + [7140] = 7116, + [7141] = 7123, [7142] = 7114, - [7143] = 7119, - [7144] = 7069, - [7145] = 7119, - [7146] = 7069, - [7147] = 7147, - [7148] = 7069, - [7149] = 7149, - [7150] = 7103, - [7151] = 7151, - [7152] = 7152, - [7153] = 7090, - [7154] = 7154, - [7155] = 7155, + [7143] = 7123, + [7144] = 6683, + [7145] = 7114, + [7146] = 6685, + [7147] = 7116, + [7148] = 7148, + [7149] = 7116, + [7150] = 7123, + [7151] = 6687, + [7152] = 7116, + [7153] = 7114, + [7154] = 7123, + [7155] = 7130, [7156] = 7156, - [7157] = 7119, - [7158] = 7158, - [7159] = 7077, - [7160] = 7078, - [7161] = 7094, - [7162] = 7078, - [7163] = 7156, - [7164] = 7104, - [7165] = 7078, - [7166] = 7112, - [7167] = 7077, - [7168] = 7168, - [7169] = 7078, - [7170] = 7170, - [7171] = 7171, - [7172] = 7078, - [7173] = 7090, - [7174] = 7174, + [7157] = 7114, + [7158] = 7116, + [7159] = 7123, + [7160] = 6707, + [7161] = 6717, + [7162] = 7162, + [7163] = 7137, + [7164] = 7116, + [7165] = 6347, + [7166] = 7148, + [7167] = 7167, + [7168] = 7116, + [7169] = 7167, + [7170] = 7116, + [7171] = 6717, + [7172] = 6721, + [7173] = 6721, + [7174] = 6686, [7175] = 7175, - [7176] = 7176, - [7177] = 7151, - [7178] = 7178, - [7179] = 7109, + [7176] = 7116, + [7177] = 7116, + [7178] = 7116, + [7179] = 7116, [7180] = 7180, - [7181] = 7096, - [7182] = 7182, - [7183] = 7136, - [7184] = 7184, - [7185] = 7077, - [7186] = 7158, - [7187] = 7187, - [7188] = 7182, - [7189] = 7168, - [7190] = 7119, - [7191] = 7191, - [7192] = 7176, - [7193] = 7180, - [7194] = 7182, - [7195] = 7084, - [7196] = 7182, - [7197] = 7197, - [7198] = 7198, - [7199] = 7199, - [7200] = 6793, - [7201] = 7180, - [7202] = 7180, - [7203] = 3169, - [7204] = 7171, - [7205] = 7180, - [7206] = 7119, - [7207] = 7207, - [7208] = 7208, - [7209] = 7100, - [7210] = 7174, - [7211] = 7211, - [7212] = 7212, - [7213] = 7114, + [7181] = 7116, + [7182] = 7116, + [7183] = 2276, + [7184] = 7114, + [7185] = 7116, + [7186] = 7175, + [7187] = 6707, + [7188] = 6713, + [7189] = 7116, + [7190] = 7036, + [7191] = 6717, + [7192] = 7167, + [7193] = 7167, + [7194] = 7123, + [7195] = 7195, + [7196] = 7167, + [7197] = 7123, + [7198] = 7167, + [7199] = 7167, + [7200] = 7135, + [7201] = 7167, + [7202] = 7167, + [7203] = 6707, + [7204] = 2629, + [7205] = 6721, + [7206] = 6686, + [7207] = 7038, + [7208] = 7039, + [7209] = 6721, + [7210] = 7041, + [7211] = 7042, + [7212] = 7114, + [7213] = 7213, [7214] = 7214, - [7215] = 7215, - [7216] = 7216, - [7217] = 7217, - [7218] = 7178, - [7219] = 7182, - [7220] = 7114, - [7221] = 7155, - [7222] = 7191, - [7223] = 7223, - [7224] = 7106, - [7225] = 7191, - [7226] = 7090, - [7227] = 7137, - [7228] = 7090, - [7229] = 7191, - [7230] = 7135, - [7231] = 7077, - [7232] = 7101, - [7233] = 7110, - [7234] = 7234, - [7235] = 7091, + [7215] = 7116, + [7216] = 7044, + [7217] = 7047, + [7218] = 7116, + [7219] = 6677, + [7220] = 6717, + [7221] = 7123, + [7222] = 6707, + [7223] = 2595, + [7224] = 7224, + [7225] = 6683, + [7226] = 7226, + [7227] = 7036, + [7228] = 2318, + [7229] = 7229, + [7230] = 7230, + [7231] = 6685, + [7232] = 7232, + [7233] = 7233, + [7234] = 7229, + [7235] = 7235, [7236] = 7236, - [7237] = 7118, - [7238] = 7238, - [7239] = 7214, - [7240] = 7238, - [7241] = 7180, - [7242] = 7077, - [7243] = 7114, - [7244] = 7244, - [7245] = 7077, - [7246] = 6793, - [7247] = 7119, - [7248] = 7090, - [7249] = 7119, - [7250] = 7114, - [7251] = 7090, - [7252] = 7090, + [7237] = 7235, + [7238] = 7229, + [7239] = 1885, + [7240] = 1876, + [7241] = 2379, + [7242] = 6687, + [7243] = 7041, + [7244] = 2363, + [7245] = 7236, + [7246] = 6677, + [7247] = 7236, + [7248] = 2200, + [7249] = 6683, + [7250] = 1883, + [7251] = 7229, + [7252] = 2205, [7253] = 7253, - [7254] = 7254, - [7255] = 7255, - [7256] = 7255, - [7257] = 2498, - [7258] = 7077, - [7259] = 7253, - [7260] = 7119, - [7261] = 7253, - [7262] = 7253, - [7263] = 7253, - [7264] = 7264, - [7265] = 7253, - [7266] = 7255, - [7267] = 7267, - [7268] = 7114, - [7269] = 7198, - [7270] = 7270, - [7271] = 7271, - [7272] = 7272, - [7273] = 7273, - [7274] = 7274, - [7275] = 7275, - [7276] = 2476, - [7277] = 7277, - [7278] = 7278, - [7279] = 7277, + [7254] = 7038, + [7255] = 2404, + [7256] = 7042, + [7257] = 6677, + [7258] = 2405, + [7259] = 7235, + [7260] = 7260, + [7261] = 6685, + [7262] = 7235, + [7263] = 6687, + [7264] = 7235, + [7265] = 7236, + [7266] = 7044, + [7267] = 7235, + [7268] = 7039, + [7269] = 2614, + [7270] = 7229, + [7271] = 6685, + [7272] = 7236, + [7273] = 2184, + [7274] = 1878, + [7275] = 6683, + [7276] = 6683, + [7277] = 2170, + [7278] = 7229, + [7279] = 6685, [7280] = 7280, - [7281] = 7119, - [7282] = 7215, - [7283] = 7255, - [7284] = 7253, - [7285] = 7271, - [7286] = 7277, - [7287] = 7255, - [7288] = 7255, - [7289] = 7289, - [7290] = 7290, - [7291] = 7271, - [7292] = 7277, - [7293] = 7293, - [7294] = 7255, - [7295] = 7295, - [7296] = 7296, - [7297] = 7297, - [7298] = 7298, - [7299] = 7271, - [7300] = 7271, - [7301] = 7253, - [7302] = 7271, - [7303] = 7090, - [7304] = 7277, - [7305] = 6793, - [7306] = 7255, - [7307] = 7271, - [7308] = 7277, - [7309] = 7077, - [7310] = 7310, - [7311] = 7271, - [7312] = 7277, - [7313] = 7253, - [7314] = 7255, - [7315] = 7271, - [7316] = 7277, - [7317] = 7271, - [7318] = 7277, - [7319] = 7271, - [7320] = 7277, - [7321] = 7255, - [7322] = 7271, - [7323] = 7277, - [7324] = 7324, - [7325] = 7114, - [7326] = 7253, - [7327] = 7253, - [7328] = 7253, - [7329] = 7253, - [7330] = 7255, - [7331] = 7255, - [7332] = 7253, - [7333] = 7333, - [7334] = 7253, - [7335] = 7335, - [7336] = 7255, - [7337] = 7255, - [7338] = 7338, - [7339] = 7339, - [7340] = 7255, - [7341] = 7277, - [7342] = 2469, - [7343] = 7343, - [7344] = 7343, - [7345] = 2555, - [7346] = 6966, - [7347] = 2473, + [7281] = 6677, + [7282] = 6687, + [7283] = 7229, + [7284] = 2332, + [7285] = 7285, + [7286] = 7236, + [7287] = 2540, + [7288] = 7036, + [7289] = 7235, + [7290] = 7235, + [7291] = 7236, + [7292] = 7038, + [7293] = 6687, + [7294] = 7039, + [7295] = 7041, + [7296] = 7047, + [7297] = 2300, + [7298] = 7042, + [7299] = 2591, + [7300] = 7236, + [7301] = 7229, + [7302] = 6683, + [7303] = 7044, + [7304] = 7047, + [7305] = 7305, + [7306] = 7236, + [7307] = 6677, + [7308] = 7308, + [7309] = 7229, + [7310] = 7235, + [7311] = 7311, + [7312] = 6713, + [7313] = 6717, + [7314] = 7311, + [7315] = 7315, + [7316] = 6707, + [7317] = 6721, + [7318] = 7162, + [7319] = 7315, + [7320] = 6686, + [7321] = 7311, + [7322] = 7311, + [7323] = 7036, + [7324] = 7311, + [7325] = 7311, + [7326] = 7315, + [7327] = 7311, + [7328] = 7328, + [7329] = 7328, + [7330] = 7038, + [7331] = 7039, + [7332] = 7041, + [7333] = 7311, + [7334] = 7042, + [7335] = 6713, + [7336] = 7328, + [7337] = 7328, + [7338] = 6717, + [7339] = 7044, + [7340] = 7047, + [7341] = 7311, + [7342] = 2184, + [7343] = 6707, + [7344] = 2205, + [7345] = 6721, + [7346] = 6686, + [7347] = 7311, [7348] = 7348, - [7349] = 2556, - [7350] = 7350, - [7351] = 7343, - [7352] = 7348, - [7353] = 6972, - [7354] = 7354, - [7355] = 7348, - [7356] = 2475, - [7357] = 2524, - [7358] = 2476, - [7359] = 305, - [7360] = 7343, - [7361] = 7348, - [7362] = 1875, - [7363] = 2525, - [7364] = 7343, - [7365] = 7343, - [7366] = 7343, - [7367] = 6793, + [7349] = 7137, + [7350] = 7148, + [7351] = 7351, + [7352] = 7311, + [7353] = 7175, + [7354] = 7311, + [7355] = 7130, + [7356] = 7311, + [7357] = 6677, + [7358] = 6683, + [7359] = 6685, + [7360] = 6687, + [7361] = 7311, + [7362] = 7311, + [7363] = 7311, + [7364] = 2200, + [7365] = 7311, + [7366] = 7311, + [7367] = 7311, [7368] = 7368, - [7369] = 2557, - [7370] = 7370, - [7371] = 2558, - [7372] = 7343, - [7373] = 2540, - [7374] = 7374, - [7375] = 7343, - [7376] = 7376, - [7377] = 301, - [7378] = 6948, - [7379] = 7379, - [7380] = 7354, - [7381] = 6953, - [7382] = 7348, - [7383] = 7348, - [7384] = 7343, - [7385] = 7350, - [7386] = 7386, - [7387] = 7343, - [7388] = 7368, - [7389] = 2969, - [7390] = 7370, - [7391] = 6966, - [7392] = 7343, - [7393] = 7374, - [7394] = 7343, - [7395] = 6972, - [7396] = 7376, - [7397] = 7343, - [7398] = 1885, - [7399] = 2497, - [7400] = 2467, - [7401] = 2498, - [7402] = 7343, - [7403] = 2499, - [7404] = 7343, - [7405] = 7343, - [7406] = 7379, - [7407] = 7343, - [7408] = 6953, - [7409] = 2471, - [7410] = 6933, - [7411] = 7348, - [7412] = 6948, - [7413] = 7343, - [7414] = 7414, - [7415] = 6933, - [7416] = 7343, - [7417] = 7343, - [7418] = 7343, - [7419] = 1884, - [7420] = 7343, - [7421] = 7290, - [7422] = 7270, - [7423] = 7423, - [7424] = 7424, - [7425] = 3165, - [7426] = 7424, - [7427] = 7427, - [7428] = 6933, + [7369] = 7311, + [7370] = 6677, + [7371] = 6683, + [7372] = 6685, + [7373] = 6687, + [7374] = 2276, + [7375] = 7375, + [7376] = 7311, + [7377] = 7315, + [7378] = 2170, + [7379] = 7311, + [7380] = 7311, + [7381] = 2595, + [7382] = 7328, + [7383] = 7383, + [7384] = 7384, + [7385] = 7385, + [7386] = 2629, + [7387] = 7311, + [7388] = 7315, + [7389] = 7135, + [7390] = 6686, + [7391] = 7391, + [7392] = 7036, + [7393] = 7393, + [7394] = 7044, + [7395] = 7047, + [7396] = 7391, + [7397] = 7038, + [7398] = 7398, + [7399] = 7399, + [7400] = 7039, + [7401] = 7401, + [7402] = 7391, + [7403] = 7403, + [7404] = 6713, + [7405] = 7405, + [7406] = 7039, + [7407] = 6713, + [7408] = 6717, + [7409] = 7391, + [7410] = 169, + [7411] = 7041, + [7412] = 6707, + [7413] = 6721, + [7414] = 6686, + [7415] = 2525, + [7416] = 7416, + [7417] = 6713, + [7418] = 7042, + [7419] = 6717, + [7420] = 7416, + [7421] = 6707, + [7422] = 6721, + [7423] = 7416, + [7424] = 7391, + [7425] = 7416, + [7426] = 7391, + [7427] = 7416, + [7428] = 2595, [7429] = 7429, [7430] = 7430, - [7431] = 7427, - [7432] = 7432, - [7433] = 7424, - [7434] = 7427, - [7435] = 7350, - [7436] = 7430, - [7437] = 7427, - [7438] = 7368, - [7439] = 7370, - [7440] = 7427, - [7441] = 7424, - [7442] = 7374, - [7443] = 7376, - [7444] = 7338, - [7445] = 6953, - [7446] = 7430, - [7447] = 7424, - [7448] = 6948, - [7449] = 7379, - [7450] = 7280, - [7451] = 7354, - [7452] = 7452, - [7453] = 7430, - [7454] = 6953, - [7455] = 7455, - [7456] = 7427, - [7457] = 6972, - [7458] = 7424, - [7459] = 7430, - [7460] = 7289, - [7461] = 7430, - [7462] = 7333, - [7463] = 6933, - [7464] = 7278, - [7465] = 7424, - [7466] = 7272, - [7467] = 7273, - [7468] = 7274, - [7469] = 7427, - [7470] = 7275, - [7471] = 7471, - [7472] = 7293, - [7473] = 7424, - [7474] = 7430, - [7475] = 3265, - [7476] = 7427, - [7477] = 7324, - [7478] = 6948, - [7479] = 7298, - [7480] = 7424, - [7481] = 6966, - [7482] = 7430, - [7483] = 7267, - [7484] = 7484, - [7485] = 7430, - [7486] = 7335, - [7487] = 7487, - [7488] = 7427, - [7489] = 7489, - [7490] = 6966, - [7491] = 7310, - [7492] = 7424, - [7493] = 7427, - [7494] = 7424, - [7495] = 7295, - [7496] = 7430, - [7497] = 7296, - [7498] = 7498, - [7499] = 7424, - [7500] = 7427, - [7501] = 7501, - [7502] = 7427, - [7503] = 7430, - [7504] = 7424, - [7505] = 7264, - [7506] = 7297, - [7507] = 6972, - [7508] = 7427, - [7509] = 7424, - [7510] = 7424, - [7511] = 7430, - [7512] = 7430, - [7513] = 7513, - [7514] = 7514, - [7515] = 7514, + [7431] = 7431, + [7432] = 7416, + [7433] = 7433, + [7434] = 7135, + [7435] = 6717, + [7436] = 7416, + [7437] = 7130, + [7438] = 2595, + [7439] = 7439, + [7440] = 7137, + [7441] = 6707, + [7442] = 2276, + [7443] = 7416, + [7444] = 2629, + [7445] = 6721, + [7446] = 7391, + [7447] = 7391, + [7448] = 6686, + [7449] = 7449, + [7450] = 6713, + [7451] = 7148, + [7452] = 2629, + [7453] = 7453, + [7454] = 7454, + [7455] = 6717, + [7456] = 7456, + [7457] = 6707, + [7458] = 6721, + [7459] = 7044, + [7460] = 7391, + [7461] = 7461, + [7462] = 7462, + [7463] = 7416, + [7464] = 6686, + [7465] = 7175, + [7466] = 7038, + [7467] = 7467, + [7468] = 7468, + [7469] = 1791, + [7470] = 7044, + [7471] = 7468, + [7472] = 7472, + [7473] = 7047, + [7474] = 7472, + [7475] = 7475, + [7476] = 7476, + [7477] = 1788, + [7478] = 7478, + [7479] = 1786, + [7480] = 7472, + [7481] = 7481, + [7482] = 7468, + [7483] = 7468, + [7484] = 7472, + [7485] = 1790, + [7486] = 7472, + [7487] = 1793, + [7488] = 7472, + [7489] = 7472, + [7490] = 7490, + [7491] = 7042, + [7492] = 7492, + [7493] = 7493, + [7494] = 7468, + [7495] = 7472, + [7496] = 7472, + [7497] = 7472, + [7498] = 7472, + [7499] = 7499, + [7500] = 7036, + [7501] = 7038, + [7502] = 7468, + [7503] = 7472, + [7504] = 7039, + [7505] = 7041, + [7506] = 7472, + [7507] = 1787, + [7508] = 7472, + [7509] = 7509, + [7510] = 7478, + [7511] = 7472, + [7512] = 7512, + [7513] = 7472, + [7514] = 7472, + [7515] = 1792, [7516] = 7516, [7517] = 7516, - [7518] = 7516, - [7519] = 7514, - [7520] = 7379, - [7521] = 7521, + [7518] = 7044, + [7519] = 7047, + [7520] = 7520, + [7521] = 7516, [7522] = 7522, [7523] = 7516, - [7524] = 7354, + [7524] = 7516, [7525] = 7516, - [7526] = 7522, - [7527] = 7514, - [7528] = 7522, - [7529] = 7522, - [7530] = 7516, - [7531] = 7514, - [7532] = 7516, - [7533] = 7522, - [7534] = 7077, - [7535] = 7350, - [7536] = 7452, - [7537] = 7537, - [7538] = 7514, - [7539] = 7114, + [7526] = 7516, + [7527] = 7036, + [7528] = 7516, + [7529] = 7520, + [7530] = 7038, + [7531] = 7039, + [7532] = 7041, + [7533] = 7042, + [7534] = 7534, + [7535] = 7044, + [7536] = 7047, + [7537] = 7520, + [7538] = 7036, + [7539] = 7516, [7540] = 7522, - [7541] = 7514, - [7542] = 2691, - [7543] = 7516, - [7544] = 7522, + [7541] = 7516, + [7542] = 7516, + [7543] = 7520, + [7544] = 7516, [7545] = 7516, [7546] = 7516, [7547] = 7516, [7548] = 7522, - [7549] = 7514, - [7550] = 7522, - [7551] = 7514, - [7552] = 7489, - [7553] = 7368, - [7554] = 7514, - [7555] = 7522, - [7556] = 7556, - [7557] = 7498, - [7558] = 7514, - [7559] = 7522, - [7560] = 7516, - [7561] = 7516, - [7562] = 7077, - [7563] = 7516, - [7564] = 7564, - [7565] = 7556, - [7566] = 7501, - [7567] = 7514, - [7568] = 7374, - [7569] = 2732, - [7570] = 7556, - [7571] = 7522, - [7572] = 7556, - [7573] = 7376, - [7574] = 7556, - [7575] = 2068, - [7576] = 7556, - [7577] = 7556, - [7578] = 7556, - [7579] = 7556, - [7580] = 7516, - [7581] = 7581, - [7582] = 7516, - [7583] = 7516, - [7584] = 7516, - [7585] = 7514, - [7586] = 7516, - [7587] = 7513, - [7588] = 7516, - [7589] = 7516, + [7549] = 7516, + [7550] = 7520, + [7551] = 7516, + [7552] = 7516, + [7553] = 7520, + [7554] = 7520, + [7555] = 6998, + [7556] = 7516, + [7557] = 7516, + [7558] = 7516, + [7559] = 7520, + [7560] = 7560, + [7561] = 7561, + [7562] = 7038, + [7563] = 7563, + [7564] = 7039, + [7565] = 7516, + [7566] = 6959, + [7567] = 7041, + [7568] = 7520, + [7569] = 7516, + [7570] = 7042, + [7571] = 7516, + [7572] = 7516, + [7573] = 7522, + [7574] = 7516, + [7575] = 7522, + [7576] = 7576, + [7577] = 7577, + [7578] = 7578, + [7579] = 7579, + [7580] = 7580, + [7581] = 7044, + [7582] = 7582, + [7583] = 7583, + [7584] = 7582, + [7585] = 6998, + [7586] = 7586, + [7587] = 7180, + [7588] = 7583, + [7589] = 7195, [7590] = 7590, [7591] = 7591, - [7592] = 1828, - [7593] = 2721, - [7594] = 7119, - [7595] = 7516, - [7596] = 7596, - [7597] = 7119, - [7598] = 7516, - [7599] = 7114, - [7600] = 7522, - [7601] = 7516, - [7602] = 7090, - [7603] = 7090, - [7604] = 2703, - [7605] = 7370, - [7606] = 2087, + [7592] = 7047, + [7593] = 7036, + [7594] = 7594, + [7595] = 7595, + [7596] = 7214, + [7597] = 7582, + [7598] = 7175, + [7599] = 7599, + [7600] = 7582, + [7601] = 7601, + [7602] = 7602, + [7603] = 7224, + [7604] = 7591, + [7605] = 7591, + [7606] = 7606, [7607] = 7607, - [7608] = 7608, + [7608] = 7591, [7609] = 7609, - [7610] = 7379, - [7611] = 7354, - [7612] = 7607, - [7613] = 7609, + [7610] = 7610, + [7611] = 7611, + [7612] = 7591, + [7613] = 7613, [7614] = 7614, - [7615] = 7607, - [7616] = 7607, - [7617] = 2085, - [7618] = 7607, - [7619] = 7609, + [7615] = 7583, + [7616] = 7213, + [7617] = 7617, + [7618] = 2909, + [7619] = 7619, [7620] = 7620, [7621] = 7621, - [7622] = 7609, - [7623] = 3123, - [7624] = 7609, - [7625] = 7625, - [7626] = 7625, - [7627] = 7607, - [7628] = 7609, - [7629] = 2872, - [7630] = 7630, - [7631] = 7607, - [7632] = 7632, - [7633] = 3197, + [7622] = 7038, + [7623] = 7130, + [7624] = 7039, + [7625] = 7591, + [7626] = 7041, + [7627] = 7627, + [7628] = 7628, + [7629] = 7629, + [7630] = 7591, + [7631] = 7631, + [7632] = 7582, + [7633] = 7633, [7634] = 7634, - [7635] = 7614, - [7636] = 7636, - [7637] = 2816, - [7638] = 1908, - [7639] = 7630, - [7640] = 7609, - [7641] = 2817, - [7642] = 7374, - [7643] = 7607, - [7644] = 7609, - [7645] = 7607, - [7646] = 7609, - [7647] = 7609, - [7648] = 7607, - [7649] = 7630, - [7650] = 7607, - [7651] = 7630, - [7652] = 7652, - [7653] = 7630, - [7654] = 7614, - [7655] = 7607, - [7656] = 7625, - [7657] = 7609, - [7658] = 7614, + [7635] = 7635, + [7636] = 7042, + [7637] = 7637, + [7638] = 7638, + [7639] = 7639, + [7640] = 7640, + [7641] = 7641, + [7642] = 7591, + [7643] = 7643, + [7644] = 7137, + [7645] = 7148, + [7646] = 7591, + [7647] = 7135, + [7648] = 7648, + [7649] = 7649, + [7650] = 6959, + [7651] = 7651, + [7652] = 7583, + [7653] = 7653, + [7654] = 7583, + [7655] = 7655, + [7656] = 7042, + [7657] = 7038, + [7658] = 7039, [7659] = 7659, - [7660] = 7630, + [7660] = 7660, [7661] = 7661, - [7662] = 7614, - [7663] = 7630, - [7664] = 2799, - [7665] = 2874, - [7666] = 1890, - [7667] = 7607, - [7668] = 7350, - [7669] = 7625, - [7670] = 7625, - [7671] = 2747, - [7672] = 7609, - [7673] = 7614, - [7674] = 7625, - [7675] = 7368, - [7676] = 7630, - [7677] = 7677, - [7678] = 7607, - [7679] = 7609, - [7680] = 7609, - [7681] = 7614, - [7682] = 1901, - [7683] = 7376, - [7684] = 1900, - [7685] = 2856, - [7686] = 7630, - [7687] = 7607, - [7688] = 7609, - [7689] = 1903, - [7690] = 7614, - [7691] = 3020, - [7692] = 2831, - [7693] = 7693, - [7694] = 7625, - [7695] = 7609, - [7696] = 7625, - [7697] = 7370, - [7698] = 3191, - [7699] = 7614, - [7700] = 7607, - [7701] = 7625, - [7702] = 7702, - [7703] = 7703, - [7704] = 7702, - [7705] = 7702, - [7706] = 7706, - [7707] = 2498, - [7708] = 7702, - [7709] = 4240, - [7710] = 2476, - [7711] = 171, - [7712] = 7706, - [7713] = 7702, - [7714] = 7677, - [7715] = 7715, - [7716] = 7702, - [7717] = 7702, + [7662] = 7662, + [7663] = 7663, + [7664] = 2200, + [7665] = 7665, + [7666] = 7663, + [7667] = 7667, + [7668] = 7668, + [7669] = 7663, + [7670] = 7661, + [7671] = 7671, + [7672] = 2909, + [7673] = 7673, + [7674] = 2184, + [7675] = 7038, + [7676] = 7039, + [7677] = 7668, + [7678] = 7661, + [7679] = 7044, + [7680] = 2784, + [7681] = 2750, + [7682] = 7047, + [7683] = 7683, + [7684] = 7661, + [7685] = 7663, + [7686] = 7036, + [7687] = 7668, + [7688] = 2170, + [7689] = 7661, + [7690] = 7044, + [7691] = 7668, + [7692] = 2205, + [7693] = 7668, + [7694] = 7694, + [7695] = 7036, + [7696] = 7041, + [7697] = 7697, + [7698] = 2775, + [7699] = 7041, + [7700] = 7047, + [7701] = 7701, + [7702] = 7663, + [7703] = 7042, + [7704] = 7661, + [7705] = 7705, + [7706] = 7705, + [7707] = 7707, + [7708] = 7707, + [7709] = 7709, + [7710] = 2909, + [7711] = 7707, + [7712] = 2276, + [7713] = 7633, + [7714] = 7709, + [7715] = 7707, + [7716] = 7709, + [7717] = 7707, [7718] = 7718, - [7719] = 7702, - [7720] = 7720, - [7721] = 7706, - [7722] = 7720, - [7723] = 7702, - [7724] = 2781, - [7725] = 7702, - [7726] = 2248, - [7727] = 7702, - [7728] = 6972, - [7729] = 7729, - [7730] = 6966, - [7731] = 6953, - [7732] = 7702, - [7733] = 7706, - [7734] = 6933, - [7735] = 6948, - [7736] = 6972, - [7737] = 7702, - [7738] = 6966, - [7739] = 6953, - [7740] = 6933, - [7741] = 7702, - [7742] = 6948, - [7743] = 7702, - [7744] = 7702, - [7745] = 7702, - [7746] = 7720, - [7747] = 7702, - [7748] = 7702, - [7749] = 7702, - [7750] = 2605, - [7751] = 7720, - [7752] = 7752, - [7753] = 7702, - [7754] = 7702, - [7755] = 7702, - [7756] = 7720, - [7757] = 7757, - [7758] = 7702, - [7759] = 7759, - [7760] = 7706, + [7719] = 7719, + [7720] = 7709, + [7721] = 7721, + [7722] = 7707, + [7723] = 7709, + [7724] = 7724, + [7725] = 7707, + [7726] = 7039, + [7727] = 7727, + [7728] = 7724, + [7729] = 7631, + [7730] = 7044, + [7731] = 7705, + [7732] = 7724, + [7733] = 7718, + [7734] = 7734, + [7735] = 7047, + [7736] = 7718, + [7737] = 7041, + [7738] = 7709, + [7739] = 7705, + [7740] = 7724, + [7741] = 7036, + [7742] = 7368, + [7743] = 7724, + [7744] = 7707, + [7745] = 7709, + [7746] = 7724, + [7747] = 7705, + [7748] = 7038, + [7749] = 7042, + [7750] = 7750, + [7751] = 7718, + [7752] = 7724, + [7753] = 7705, + [7754] = 7707, + [7755] = 7709, + [7756] = 7707, + [7757] = 2909, + [7758] = 7705, + [7759] = 7718, + [7760] = 7724, [7761] = 7761, - [7762] = 2691, - [7763] = 7763, - [7764] = 2732, - [7765] = 7761, - [7766] = 7761, - [7767] = 7761, + [7762] = 7709, + [7763] = 7384, + [7764] = 7764, + [7765] = 7705, + [7766] = 7718, + [7767] = 7709, [7768] = 7768, - [7769] = 7769, - [7770] = 7770, - [7771] = 7771, - [7772] = 7772, - [7773] = 2087, - [7774] = 7774, - [7775] = 7775, - [7776] = 7368, - [7777] = 7761, - [7778] = 7581, - [7779] = 1908, - [7780] = 2974, + [7769] = 7638, + [7770] = 7707, + [7771] = 7761, + [7772] = 7724, + [7773] = 7721, + [7774] = 7705, + [7775] = 7709, + [7776] = 7776, + [7777] = 7044, + [7778] = 7778, + [7779] = 7778, + [7780] = 7780, [7781] = 7781, - [7782] = 7379, + [7782] = 7782, [7783] = 7783, - [7784] = 2703, - [7785] = 7761, - [7786] = 7770, - [7787] = 7770, - [7788] = 7596, - [7789] = 7370, + [7784] = 7784, + [7785] = 7785, + [7786] = 7786, + [7787] = 7787, + [7788] = 7781, + [7789] = 7789, [7790] = 7790, [7791] = 7791, - [7792] = 7792, + [7792] = 7784, [7793] = 7793, - [7794] = 7794, - [7795] = 7770, - [7796] = 2781, - [7797] = 7797, - [7798] = 2721, - [7799] = 7761, - [7800] = 7800, - [7801] = 7801, - [7802] = 7770, - [7803] = 7761, - [7804] = 2085, - [7805] = 7770, - [7806] = 7770, + [7794] = 7781, + [7795] = 7795, + [7796] = 7784, + [7797] = 7781, + [7798] = 7798, + [7799] = 7799, + [7800] = 7782, + [7801] = 7683, + [7802] = 7784, + [7803] = 7793, + [7804] = 7804, + [7805] = 7805, + [7806] = 7799, [7807] = 7807, - [7808] = 7761, - [7809] = 2781, - [7810] = 7770, - [7811] = 7770, - [7812] = 7812, - [7813] = 2703, - [7814] = 7814, - [7815] = 7815, - [7816] = 7816, - [7817] = 7817, - [7818] = 7818, - [7819] = 7819, - [7820] = 2721, - [7821] = 1823, - [7822] = 2289, - [7823] = 7817, - [7824] = 7824, - [7825] = 7812, - [7826] = 2295, - [7827] = 7827, - [7828] = 7828, - [7829] = 7812, - [7830] = 1820, - [7831] = 7812, - [7832] = 1826, - [7833] = 7815, - [7834] = 2732, - [7835] = 1816, - [7836] = 7812, - [7837] = 7815, - [7838] = 2691, - [7839] = 7812, - [7840] = 1825, - [7841] = 2831, - [7842] = 1822, - [7843] = 7812, - [7844] = 7812, + [7808] = 7783, + [7809] = 2909, + [7810] = 7778, + [7811] = 7787, + [7812] = 7805, + [7813] = 7036, + [7814] = 7038, + [7815] = 7780, + [7816] = 7778, + [7817] = 7782, + [7818] = 7042, + [7819] = 2909, + [7820] = 7793, + [7821] = 7821, + [7822] = 7047, + [7823] = 7780, + [7824] = 7793, + [7825] = 7039, + [7826] = 7799, + [7827] = 7787, + [7828] = 7780, + [7829] = 7807, + [7830] = 7805, + [7831] = 7805, + [7832] = 7782, + [7833] = 7782, + [7834] = 7787, + [7835] = 7835, + [7836] = 7799, + [7837] = 7835, + [7838] = 7041, + [7839] = 7839, + [7840] = 7840, + [7841] = 7841, + [7842] = 7842, + [7843] = 7843, + [7844] = 7844, [7845] = 7845, - [7846] = 7812, - [7847] = 7812, - [7848] = 2721, - [7849] = 7815, - [7850] = 7850, - [7851] = 2732, - [7852] = 7350, - [7853] = 7812, - [7854] = 7368, - [7855] = 2691, - [7856] = 7370, - [7857] = 7374, - [7858] = 7376, - [7859] = 7379, - [7860] = 7354, - [7861] = 3020, - [7862] = 7812, - [7863] = 7815, - [7864] = 7815, - [7865] = 7865, - [7866] = 7812, - [7867] = 7812, - [7868] = 7812, - [7869] = 2703, - [7870] = 1819, - [7871] = 7812, - [7872] = 7815, - [7873] = 7873, - [7874] = 7596, - [7875] = 7873, - [7876] = 7873, - [7877] = 926, - [7878] = 7873, - [7879] = 7873, - [7880] = 927, - [7881] = 7873, - [7882] = 7882, - [7883] = 7873, - [7884] = 7873, + [7846] = 7840, + [7847] = 7847, + [7848] = 7848, + [7849] = 7849, + [7850] = 7847, + [7851] = 7851, + [7852] = 7852, + [7853] = 7842, + [7854] = 7854, + [7855] = 7852, + [7856] = 7854, + [7857] = 7857, + [7858] = 7858, + [7859] = 7859, + [7860] = 7860, + [7861] = 7839, + [7862] = 7840, + [7863] = 7859, + [7864] = 7864, + [7865] = 7842, + [7866] = 7854, + [7867] = 7864, + [7868] = 7868, + [7869] = 7841, + [7870] = 7843, + [7871] = 7845, + [7872] = 7847, + [7873] = 7848, + [7874] = 7851, + [7875] = 7852, + [7876] = 7841, + [7877] = 7877, + [7878] = 7878, + [7879] = 7843, + [7880] = 7858, + [7881] = 7881, + [7882] = 7844, + [7883] = 7840, + [7884] = 7859, [7885] = 7885, - [7886] = 7873, - [7887] = 7887, - [7888] = 7887, - [7889] = 7873, - [7890] = 2831, - [7891] = 7873, - [7892] = 7581, - [7893] = 7873, - [7894] = 7354, - [7895] = 7379, - [7896] = 7873, - [7897] = 7897, - [7898] = 7873, - [7899] = 7882, - [7900] = 7350, - [7901] = 7374, - [7902] = 7873, - [7903] = 7873, - [7904] = 7873, - [7905] = 7873, - [7906] = 7882, - [7907] = 7882, - [7908] = 7873, - [7909] = 7873, - [7910] = 7873, - [7911] = 7873, - [7912] = 7912, - [7913] = 7887, + [7886] = 7842, + [7887] = 7854, + [7888] = 7864, + [7889] = 7841, + [7890] = 7843, + [7891] = 7845, + [7892] = 7847, + [7893] = 7848, + [7894] = 6998, + [7895] = 7851, + [7896] = 7852, + [7897] = 7864, + [7898] = 7845, + [7899] = 7899, + [7900] = 7847, + [7901] = 7848, + [7902] = 7858, + [7903] = 7839, + [7904] = 7840, + [7905] = 7859, + [7906] = 7868, + [7907] = 7842, + [7908] = 7854, + [7909] = 7841, + [7910] = 7843, + [7911] = 7845, + [7912] = 7851, + [7913] = 7858, [7914] = 7914, - [7915] = 7873, - [7916] = 7873, - [7917] = 7873, - [7918] = 7873, - [7919] = 7873, - [7920] = 7873, - [7921] = 7376, - [7922] = 7873, - [7923] = 7873, - [7924] = 2831, - [7925] = 927, - [7926] = 7873, - [7927] = 926, - [7928] = 4337, - [7929] = 7887, - [7930] = 7370, - [7931] = 7882, - [7932] = 7882, - [7933] = 7873, - [7934] = 7882, - [7935] = 7873, - [7936] = 7873, - [7937] = 7873, - [7938] = 7882, - [7939] = 7887, - [7940] = 7882, - [7941] = 7873, - [7942] = 7873, - [7943] = 7368, - [7944] = 7873, + [7915] = 7851, + [7916] = 7839, + [7917] = 7840, + [7918] = 7859, + [7919] = 7842, + [7920] = 7854, + [7921] = 7852, + [7922] = 7841, + [7923] = 7843, + [7924] = 7845, + [7925] = 7851, + [7926] = 7841, + [7927] = 7858, + [7928] = 7839, + [7929] = 7840, + [7930] = 7859, + [7931] = 7842, + [7932] = 7854, + [7933] = 7841, + [7934] = 7843, + [7935] = 7845, + [7936] = 7851, + [7937] = 7858, + [7938] = 7858, + [7939] = 7840, + [7940] = 7859, + [7941] = 7854, + [7942] = 7843, + [7943] = 7845, + [7944] = 7851, [7945] = 7945, - [7946] = 7946, - [7947] = 7947, - [7948] = 7581, - [7949] = 7946, - [7950] = 7513, - [7951] = 7951, - [7952] = 7952, - [7953] = 7953, - [7954] = 7954, - [7955] = 7955, - [7956] = 7956, - [7957] = 7957, - [7958] = 7958, - [7959] = 7959, - [7960] = 7951, - [7961] = 7961, - [7962] = 7498, - [7963] = 7591, - [7964] = 7537, - [7965] = 7951, - [7966] = 7951, - [7967] = 7967, - [7968] = 7946, - [7969] = 7452, - [7970] = 7501, - [7971] = 7971, - [7972] = 3020, - [7973] = 7946, - [7974] = 7974, - [7975] = 7975, - [7976] = 7946, - [7977] = 7977, - [7978] = 7564, - [7979] = 7489, - [7980] = 7521, - [7981] = 7981, - [7982] = 7981, - [7983] = 7981, - [7984] = 7984, + [7946] = 7858, + [7947] = 7840, + [7948] = 7859, + [7949] = 7843, + [7950] = 7843, + [7951] = 7858, + [7952] = 7914, + [7953] = 7859, + [7954] = 7878, + [7955] = 7843, + [7956] = 7858, + [7957] = 7859, + [7958] = 7843, + [7959] = 7858, + [7960] = 7860, + [7961] = 7859, + [7962] = 7962, + [7963] = 7843, + [7964] = 7964, + [7965] = 7858, + [7966] = 7858, + [7967] = 7859, + [7968] = 7844, + [7969] = 7843, + [7970] = 7858, + [7971] = 7878, + [7972] = 7859, + [7973] = 7843, + [7974] = 7858, + [7975] = 7859, + [7976] = 7843, + [7977] = 7858, + [7978] = 7859, + [7979] = 7843, + [7980] = 7858, + [7981] = 7860, + [7982] = 7859, + [7983] = 7858, + [7984] = 7859, [7985] = 7985, - [7986] = 7986, - [7987] = 7590, - [7988] = 7988, - [7989] = 7946, - [7990] = 7596, - [7991] = 7946, - [7992] = 7992, + [7986] = 7851, + [7987] = 7839, + [7988] = 7839, + [7989] = 7989, + [7990] = 7990, + [7991] = 7840, + [7992] = 7859, [7993] = 7993, - [7994] = 7946, - [7995] = 7981, - [7996] = 7981, - [7997] = 7997, - [7998] = 7951, - [7999] = 7999, - [8000] = 8000, - [8001] = 7946, - [8002] = 8002, - [8003] = 8003, - [8004] = 8004, - [8005] = 8005, - [8006] = 8006, - [8007] = 8007, - [8008] = 7374, - [8009] = 8009, - [8010] = 8007, - [8011] = 7376, - [8012] = 8012, - [8013] = 8007, - [8014] = 8003, - [8015] = 8003, - [8016] = 3020, - [8017] = 2731, - [8018] = 7379, + [7994] = 7849, + [7995] = 7840, + [7996] = 7996, + [7997] = 7859, + [7998] = 7842, + [7999] = 7868, + [8000] = 7914, + [8001] = 7849, + [8002] = 7854, + [8003] = 7868, + [8004] = 7842, + [8005] = 7864, + [8006] = 7845, + [8007] = 7868, + [8008] = 7857, + [8009] = 7841, + [8010] = 7854, + [8011] = 7843, + [8012] = 7844, + [8013] = 7845, + [8014] = 7847, + [8015] = 7858, + [8016] = 7859, + [8017] = 7848, + [8018] = 7848, [8019] = 8019, - [8020] = 7350, - [8021] = 8007, - [8022] = 8006, + [8020] = 8020, + [8021] = 7864, + [8022] = 8022, [8023] = 8023, - [8024] = 8007, - [8025] = 2733, - [8026] = 8026, - [8027] = 2741, - [8028] = 3020, - [8029] = 8003, - [8030] = 8007, - [8031] = 7354, - [8032] = 8003, - [8033] = 8006, - [8034] = 8034, - [8035] = 7368, - [8036] = 8006, - [8037] = 7370, - [8038] = 8038, - [8039] = 8006, - [8040] = 8007, - [8041] = 8041, - [8042] = 8042, - [8043] = 7992, - [8044] = 8044, - [8045] = 8045, - [8046] = 8046, - [8047] = 171, - [8048] = 7959, - [8049] = 8049, + [8024] = 7851, + [8025] = 7852, + [8026] = 7868, + [8027] = 8027, + [8028] = 7841, + [8029] = 7843, + [8030] = 8030, + [8031] = 7858, + [8032] = 7844, + [8033] = 7844, + [8034] = 7878, + [8035] = 7860, + [8036] = 7839, + [8037] = 7840, + [8038] = 7859, + [8039] = 7845, + [8040] = 8040, + [8041] = 7842, + [8042] = 7860, + [8043] = 7854, + [8044] = 7996, + [8045] = 7914, + [8046] = 7847, + [8047] = 7848, + [8048] = 7864, + [8049] = 7868, [8050] = 8050, - [8051] = 8051, - [8052] = 8050, - [8053] = 8053, - [8054] = 8049, - [8055] = 8042, + [8051] = 7841, + [8052] = 7843, + [8053] = 7844, + [8054] = 7878, + [8055] = 8055, [8056] = 8056, - [8057] = 8057, - [8058] = 8042, - [8059] = 2232, - [8060] = 8053, - [8061] = 8053, - [8062] = 8062, - [8063] = 8063, - [8064] = 8064, - [8065] = 2248, - [8066] = 8066, - [8067] = 8053, - [8068] = 8068, - [8069] = 8049, - [8070] = 8046, + [8057] = 7841, + [8058] = 7845, + [8059] = 7847, + [8060] = 7848, + [8061] = 7996, + [8062] = 7914, + [8063] = 7851, + [8064] = 7852, + [8065] = 7842, + [8066] = 7851, + [8067] = 7996, + [8068] = 7914, + [8069] = 7852, + [8070] = 8070, [8071] = 8071, - [8072] = 8057, - [8073] = 8073, - [8074] = 8057, - [8075] = 8053, - [8076] = 8046, - [8077] = 8077, - [8078] = 8057, - [8079] = 8057, - [8080] = 7703, - [8081] = 8081, - [8082] = 8082, - [8083] = 8053, - [8084] = 8053, - [8085] = 8046, - [8086] = 8057, - [8087] = 8049, - [8088] = 8042, - [8089] = 8057, - [8090] = 8057, - [8091] = 8046, - [8092] = 8092, - [8093] = 8053, - [8094] = 8057, - [8095] = 8053, - [8096] = 8046, - [8097] = 8049, - [8098] = 8053, + [8072] = 8072, + [8073] = 7864, + [8074] = 7996, + [8075] = 7914, + [8076] = 7851, + [8077] = 7858, + [8078] = 7858, + [8079] = 7878, + [8080] = 7996, + [8081] = 7914, + [8082] = 7852, + [8083] = 7860, + [8084] = 7860, + [8085] = 7843, + [8086] = 7839, + [8087] = 7996, + [8088] = 7914, + [8089] = 7840, + [8090] = 7859, + [8091] = 8091, + [8092] = 7842, + [8093] = 8093, + [8094] = 7854, + [8095] = 7996, + [8096] = 7864, + [8097] = 7841, + [8098] = 7843, [8099] = 8099, - [8100] = 8046, - [8101] = 8057, - [8102] = 8049, - [8103] = 8103, - [8104] = 7953, - [8105] = 8105, - [8106] = 8106, - [8107] = 8057, - [8108] = 8053, - [8109] = 8109, - [8110] = 8049, + [8100] = 7844, + [8101] = 7845, + [8102] = 7847, + [8103] = 7848, + [8104] = 7854, + [8105] = 8040, + [8106] = 7851, + [8107] = 7852, + [8108] = 7857, + [8109] = 7849, + [8110] = 8110, [8111] = 8111, - [8112] = 8042, - [8113] = 8046, - [8114] = 7715, - [8115] = 8049, - [8116] = 8116, - [8117] = 8042, - [8118] = 8057, - [8119] = 8049, - [8120] = 8120, - [8121] = 8046, - [8122] = 8053, - [8123] = 8057, - [8124] = 8042, - [8125] = 8053, - [8126] = 8126, - [8127] = 8127, - [8128] = 8128, + [8112] = 7858, + [8113] = 7839, + [8114] = 7878, + [8115] = 7848, + [8116] = 7860, + [8117] = 8117, + [8118] = 7839, + [8119] = 8119, + [8120] = 7840, + [8121] = 7859, + [8122] = 7842, + [8123] = 7854, + [8124] = 7864, + [8125] = 7839, + [8126] = 7841, + [8127] = 7841, + [8128] = 7843, [8129] = 8129, - [8130] = 8130, - [8131] = 8131, - [8132] = 8130, - [8133] = 8133, - [8134] = 8126, - [8135] = 8135, - [8136] = 8133, - [8137] = 8137, - [8138] = 8138, - [8139] = 8139, - [8140] = 8140, - [8141] = 8137, - [8142] = 8142, - [8143] = 8127, - [8144] = 8128, - [8145] = 8129, - [8146] = 8127, - [8147] = 8128, - [8148] = 8129, - [8149] = 8131, - [8150] = 8130, - [8151] = 8133, - [8152] = 8126, - [8153] = 8135, - [8154] = 8129, - [8155] = 8130, - [8156] = 8133, - [8157] = 8126, - [8158] = 8135, - [8159] = 8159, - [8160] = 8160, - [8161] = 8161, - [8162] = 8137, - [8163] = 8140, - [8164] = 8161, - [8165] = 8165, - [8166] = 3020, - [8167] = 8009, - [8168] = 8161, - [8169] = 8161, - [8170] = 8137, - [8171] = 8161, - [8172] = 8172, - [8173] = 8173, - [8174] = 8139, - [8175] = 8175, - [8176] = 3020, - [8177] = 8137, - [8178] = 8135, - [8179] = 8179, + [8130] = 7844, + [8131] = 8040, + [8132] = 7857, + [8133] = 7858, + [8134] = 7996, + [8135] = 8040, + [8136] = 7857, + [8137] = 7845, + [8138] = 7847, + [8139] = 8040, + [8140] = 7857, + [8141] = 7848, + [8142] = 8040, + [8143] = 7857, + [8144] = 7840, + [8145] = 8040, + [8146] = 7857, + [8147] = 8040, + [8148] = 7857, + [8149] = 7859, + [8150] = 7851, + [8151] = 8040, + [8152] = 7857, + [8153] = 7852, + [8154] = 8040, + [8155] = 7857, + [8156] = 8040, + [8157] = 7839, + [8158] = 7878, + [8159] = 7841, + [8160] = 7839, + [8161] = 7734, + [8162] = 7845, + [8163] = 8163, + [8164] = 7860, + [8165] = 7858, + [8166] = 7878, + [8167] = 7860, + [8168] = 8168, + [8169] = 8169, + [8170] = 8170, + [8171] = 7849, + [8172] = 7839, + [8173] = 7839, + [8174] = 7840, + [8175] = 7859, + [8176] = 7842, + [8177] = 7854, + [8178] = 7864, + [8179] = 7847, [8180] = 8180, - [8181] = 8131, - [8182] = 8127, - [8183] = 8128, - [8184] = 8131, + [8181] = 8181, + [8182] = 8182, + [8183] = 8180, + [8184] = 8184, [8185] = 8185, [8186] = 8186, [8187] = 8187, - [8188] = 3701, + [8188] = 8185, [8189] = 8189, [8190] = 8190, - [8191] = 8191, + [8191] = 8185, [8192] = 8192, [8193] = 8193, - [8194] = 8186, - [8195] = 8192, + [8194] = 8194, + [8195] = 8195, [8196] = 8196, [8197] = 8197, [8198] = 8198, - [8199] = 8199, + [8199] = 8195, [8200] = 8200, [8201] = 8201, [8202] = 8202, [8203] = 8203, [8204] = 8204, - [8205] = 8191, - [8206] = 8198, - [8207] = 8185, - [8208] = 8208, + [8205] = 8205, + [8206] = 8206, + [8207] = 8207, + [8208] = 8197, [8209] = 8209, [8210] = 8210, - [8211] = 8202, + [8211] = 8195, [8212] = 8212, - [8213] = 8213, - [8214] = 8187, - [8215] = 8189, + [8213] = 8196, + [8214] = 8214, + [8215] = 8209, [8216] = 8216, - [8217] = 8208, - [8218] = 8190, - [8219] = 8219, - [8220] = 8185, - [8221] = 8190, - [8222] = 8201, - [8223] = 8193, - [8224] = 8193, - [8225] = 8186, - [8226] = 8192, - [8227] = 8199, - [8228] = 8201, - [8229] = 8202, - [8230] = 8186, - [8231] = 8192, - [8232] = 8209, - [8233] = 8210, - [8234] = 8204, - [8235] = 8191, + [8217] = 8205, + [8218] = 8218, + [8219] = 8209, + [8220] = 8220, + [8221] = 8221, + [8222] = 8221, + [8223] = 8197, + [8224] = 8181, + [8225] = 8185, + [8226] = 8216, + [8227] = 8227, + [8228] = 8196, + [8229] = 8187, + [8230] = 8197, + [8231] = 8231, + [8232] = 8232, + [8233] = 8233, + [8234] = 8203, + [8235] = 8235, [8236] = 8236, - [8237] = 8208, - [8238] = 8209, - [8239] = 8210, - [8240] = 8213, - [8241] = 8187, - [8242] = 8199, - [8243] = 8243, - [8244] = 8201, - [8245] = 8245, - [8246] = 8246, - [8247] = 8185, + [8237] = 8221, + [8238] = 8238, + [8239] = 8239, + [8240] = 8209, + [8241] = 8190, + [8242] = 8201, + [8243] = 8207, + [8244] = 8233, + [8245] = 8235, + [8246] = 8236, + [8247] = 8231, [8248] = 8248, - [8249] = 8190, - [8250] = 8193, - [8251] = 8186, - [8252] = 8192, - [8253] = 8202, - [8254] = 8199, - [8255] = 8201, - [8256] = 8202, + [8249] = 8249, + [8250] = 8221, + [8251] = 8192, + [8252] = 8252, + [8253] = 8193, + [8254] = 8254, + [8255] = 8216, + [8256] = 8231, [8257] = 8257, - [8258] = 8204, - [8259] = 8191, - [8260] = 8208, - [8261] = 8209, - [8262] = 8210, - [8263] = 8263, - [8264] = 8213, - [8265] = 8187, - [8266] = 8204, + [8258] = 8233, + [8259] = 8235, + [8260] = 8236, + [8261] = 8192, + [8262] = 8181, + [8263] = 8249, + [8264] = 8252, + [8265] = 8254, + [8266] = 8181, [8267] = 8185, - [8268] = 8191, - [8269] = 8190, - [8270] = 8270, - [8271] = 8193, - [8272] = 8198, - [8273] = 8186, + [8268] = 8193, + [8269] = 8216, + [8270] = 8196, + [8271] = 8271, + [8272] = 8272, + [8273] = 8273, [8274] = 8192, - [8275] = 8213, - [8276] = 8199, - [8277] = 8201, - [8278] = 8202, - [8279] = 8204, - [8280] = 8187, - [8281] = 8281, - [8282] = 8191, - [8283] = 8208, - [8284] = 8208, - [8285] = 8209, - [8286] = 8210, - [8287] = 8213, - [8288] = 8187, - [8289] = 8209, - [8290] = 8210, - [8291] = 8185, - [8292] = 8193, - [8293] = 8186, - [8294] = 8192, - [8295] = 8199, - [8296] = 8296, - [8297] = 8201, - [8298] = 8204, - [8299] = 8299, - [8300] = 8191, - [8301] = 8208, - [8302] = 8213, - [8303] = 8213, - [8304] = 8187, - [8305] = 8305, - [8306] = 8185, - [8307] = 8204, - [8308] = 8193, - [8309] = 8186, - [8310] = 8192, - [8311] = 8199, - [8312] = 8201, - [8313] = 8204, - [8314] = 8191, - [8315] = 8191, - [8316] = 8193, - [8317] = 8198, - [8318] = 8208, - [8319] = 8213, - [8320] = 8185, - [8321] = 8199, - [8322] = 8322, - [8323] = 8193, - [8324] = 8186, - [8325] = 8192, - [8326] = 8199, - [8327] = 8201, - [8328] = 8204, - [8329] = 8191, - [8330] = 8208, - [8331] = 8208, - [8332] = 8213, - [8333] = 8185, - [8334] = 8199, - [8335] = 8209, - [8336] = 8193, - [8337] = 8186, - [8338] = 8192, - [8339] = 8204, - [8340] = 8191, - [8341] = 8185, - [8342] = 8185, - [8343] = 8210, - [8344] = 8192, - [8345] = 8191, - [8346] = 8189, - [8347] = 8185, - [8348] = 8192, - [8349] = 8191, - [8350] = 8190, - [8351] = 8185, - [8352] = 8192, - [8353] = 8353, - [8354] = 8354, - [8355] = 8191, - [8356] = 8193, - [8357] = 8185, - [8358] = 8192, - [8359] = 8186, - [8360] = 8192, - [8361] = 8361, - [8362] = 8362, - [8363] = 8191, - [8364] = 8364, - [8365] = 8185, + [8275] = 8197, + [8276] = 8182, + [8277] = 8200, + [8278] = 8205, + [8279] = 8239, + [8280] = 8280, + [8281] = 8193, + [8282] = 8231, + [8283] = 8192, + [8284] = 8284, + [8285] = 8285, + [8286] = 8286, + [8287] = 8203, + [8288] = 8233, + [8289] = 8233, + [8290] = 8221, + [8291] = 8235, + [8292] = 8236, + [8293] = 8209, + [8294] = 8294, + [8295] = 8295, + [8296] = 8209, + [8297] = 8271, + [8298] = 306, + [8299] = 8190, + [8300] = 8180, + [8301] = 8201, + [8302] = 8192, + [8303] = 8207, + [8304] = 8235, + [8305] = 8216, + [8306] = 8221, + [8307] = 8271, + [8308] = 8231, + [8309] = 8195, + [8310] = 8271, + [8311] = 8233, + [8312] = 8235, + [8313] = 8313, + [8314] = 8236, + [8315] = 8187, + [8316] = 8189, + [8317] = 8317, + [8318] = 8233, + [8319] = 8319, + [8320] = 8320, + [8321] = 8235, + [8322] = 8239, + [8323] = 8236, + [8324] = 8324, + [8325] = 8325, + [8326] = 8209, + [8327] = 8327, + [8328] = 8272, + [8329] = 8329, + [8330] = 8330, + [8331] = 8187, + [8332] = 8332, + [8333] = 8272, + [8334] = 8203, + [8335] = 8181, + [8336] = 8185, + [8337] = 8273, + [8338] = 8232, + [8339] = 8192, + [8340] = 8273, + [8341] = 8197, + [8342] = 8193, + [8343] = 8182, + [8344] = 8203, + [8345] = 8200, + [8346] = 8221, + [8347] = 8347, + [8348] = 8348, + [8349] = 8190, + [8350] = 8350, + [8351] = 8351, + [8352] = 8352, + [8353] = 8201, + [8354] = 8187, + [8355] = 8189, + [8356] = 8205, + [8357] = 8239, + [8358] = 8216, + [8359] = 8231, + [8360] = 8209, + [8361] = 8233, + [8362] = 8193, + [8363] = 8235, + [8364] = 8216, + [8365] = 8236, [8366] = 8192, - [8367] = 8191, - [8368] = 8236, - [8369] = 8185, - [8370] = 8192, - [8371] = 8191, - [8372] = 8185, - [8373] = 8192, - [8374] = 8374, - [8375] = 8191, - [8376] = 8185, - [8377] = 8199, - [8378] = 8192, - [8379] = 8191, - [8380] = 8185, - [8381] = 8192, - [8382] = 8191, - [8383] = 8191, - [8384] = 8191, - [8385] = 8204, - [8386] = 8201, - [8387] = 8191, - [8388] = 8388, - [8389] = 8191, - [8390] = 8191, - [8391] = 8191, - [8392] = 8185, - [8393] = 8191, - [8394] = 8191, - [8395] = 8210, - [8396] = 8191, - [8397] = 8202, - [8398] = 8191, - [8399] = 8191, - [8400] = 8191, - [8401] = 8257, - [8402] = 8191, - [8403] = 8191, - [8404] = 8191, - [8405] = 8191, + [8367] = 8221, + [8368] = 8193, + [8369] = 8216, + [8370] = 8231, + [8371] = 8233, + [8372] = 8232, + [8373] = 8235, + [8374] = 8236, + [8375] = 8249, + [8376] = 8249, + [8377] = 8252, + [8378] = 8182, + [8379] = 8187, + [8380] = 8189, + [8381] = 8381, + [8382] = 8209, + [8383] = 8200, + [8384] = 8249, + [8385] = 8252, + [8386] = 8254, + [8387] = 8271, + [8388] = 8233, + [8389] = 8272, + [8390] = 8273, + [8391] = 8235, + [8392] = 8252, + [8393] = 8254, + [8394] = 8182, + [8395] = 8200, + [8396] = 8236, + [8397] = 8285, + [8398] = 8205, + [8399] = 8239, + [8400] = 8400, + [8401] = 8203, + [8402] = 8232, + [8403] = 8196, + [8404] = 8189, + [8405] = 8271, [8406] = 8406, [8407] = 8407, - [8408] = 8204, - [8409] = 8191, - [8410] = 8198, - [8411] = 8270, - [8412] = 8189, - [8413] = 8257, - [8414] = 8299, - [8415] = 8208, - [8416] = 8263, - [8417] = 8209, - [8418] = 8210, - [8419] = 8185, - [8420] = 8202, - [8421] = 8213, - [8422] = 8187, - [8423] = 8423, - [8424] = 8189, - [8425] = 8236, - [8426] = 8190, - [8427] = 8190, - [8428] = 8185, - [8429] = 8270, - [8430] = 8299, - [8431] = 8189, - [8432] = 8190, - [8433] = 8193, - [8434] = 8193, - [8435] = 8193, - [8436] = 8186, - [8437] = 8192, - [8438] = 8270, - [8439] = 8186, - [8440] = 8192, - [8441] = 8299, - [8442] = 8185, - [8443] = 8199, - [8444] = 8236, - [8445] = 8201, + [8408] = 8232, + [8409] = 303, + [8410] = 8221, + [8411] = 8236, + [8412] = 8231, + [8413] = 8205, + [8414] = 8414, + [8415] = 8272, + [8416] = 8273, + [8417] = 8272, + [8418] = 8209, + [8419] = 8232, + [8420] = 8420, + [8421] = 8285, + [8422] = 8189, + [8423] = 8233, + [8424] = 8424, + [8425] = 8273, + [8426] = 8221, + [8427] = 8235, + [8428] = 8428, + [8429] = 8239, + [8430] = 8233, + [8431] = 8431, + [8432] = 8432, + [8433] = 8235, + [8434] = 8232, + [8435] = 8236, + [8436] = 8180, + [8437] = 8189, + [8438] = 8236, + [8439] = 8182, + [8440] = 8221, + [8441] = 8209, + [8442] = 8442, + [8443] = 8209, + [8444] = 8181, + [8445] = 8209, [8446] = 8446, - [8447] = 8202, - [8448] = 8199, - [8449] = 8257, - [8450] = 8270, - [8451] = 8257, - [8452] = 8299, - [8453] = 8213, - [8454] = 8186, - [8455] = 8105, - [8456] = 8192, - [8457] = 8204, - [8458] = 8458, - [8459] = 8191, - [8460] = 8198, - [8461] = 8461, - [8462] = 8270, - [8463] = 8201, - [8464] = 8299, - [8465] = 8187, - [8466] = 8466, - [8467] = 8208, - [8468] = 8209, - [8469] = 8270, - [8470] = 8210, - [8471] = 8299, - [8472] = 8236, - [8473] = 8270, - [8474] = 8299, - [8475] = 8213, - [8476] = 8189, - [8477] = 8187, - [8478] = 8213, - [8479] = 8479, - [8480] = 8270, - [8481] = 8481, - [8482] = 8202, - [8483] = 8199, - [8484] = 8201, - [8485] = 8257, - [8486] = 8486, - [8487] = 8198, - [8488] = 8185, - [8489] = 8204, - [8490] = 8189, - [8491] = 8190, - [8492] = 8190, + [8447] = 8447, + [8448] = 8195, + [8449] = 8200, + [8450] = 8232, + [8451] = 8271, + [8452] = 8452, + [8453] = 8189, + [8454] = 8454, + [8455] = 8221, + [8456] = 8233, + [8457] = 8235, + [8458] = 8209, + [8459] = 8459, + [8460] = 8236, + [8461] = 8232, + [8462] = 8462, + [8463] = 8181, + [8464] = 8189, + [8465] = 8205, + [8466] = 8185, + [8467] = 8197, + [8468] = 8239, + [8469] = 8469, + [8470] = 8232, + [8471] = 8471, + [8472] = 8203, + [8473] = 8189, + [8474] = 8203, + [8475] = 8475, + [8476] = 8193, + [8477] = 8189, + [8478] = 8221, + [8479] = 8189, + [8480] = 8327, + [8481] = 8189, + [8482] = 8209, + [8483] = 8189, + [8484] = 8189, + [8485] = 8190, + [8486] = 8201, + [8487] = 8487, + [8488] = 8203, + [8489] = 8221, + [8490] = 8185, + [8491] = 8192, + [8492] = 8193, [8493] = 8493, - [8494] = 8201, - [8495] = 8191, - [8496] = 8493, - [8497] = 8193, - [8498] = 8204, - [8499] = 8186, - [8500] = 8263, - [8501] = 8192, - [8502] = 8187, - [8503] = 8198, - [8504] = 8191, - [8505] = 8199, - [8506] = 8506, - [8507] = 8201, - [8508] = 8186, - [8509] = 8202, - [8510] = 8493, - [8511] = 8263, - [8512] = 8493, - [8513] = 8263, - [8514] = 8208, - [8515] = 8204, - [8516] = 8493, - [8517] = 8263, - [8518] = 8191, - [8519] = 8493, - [8520] = 8263, - [8521] = 8198, - [8522] = 8493, - [8523] = 8263, - [8524] = 8493, - [8525] = 8263, - [8526] = 8192, - [8527] = 8493, - [8528] = 8263, - [8529] = 8208, - [8530] = 8493, - [8531] = 8263, - [8532] = 8209, - [8533] = 8210, - [8534] = 8493, - [8535] = 8209, - [8536] = 8210, - [8537] = 8213, - [8538] = 8187, - [8539] = 8208, - [8540] = 8299, - [8541] = 7596, - [8542] = 8202, - [8543] = 8543, + [8494] = 8216, + [8495] = 8231, + [8496] = 8325, + [8497] = 8233, + [8498] = 8235, + [8499] = 8236, + [8500] = 8209, + [8501] = 8252, + [8502] = 8252, + [8503] = 8203, + [8504] = 8271, + [8505] = 8272, + [8506] = 8273, + [8507] = 8182, + [8508] = 8200, + [8509] = 8221, + [8510] = 8205, + [8511] = 8239, + [8512] = 8180, + [8513] = 8272, + [8514] = 8273, + [8515] = 8515, + [8516] = 8233, + [8517] = 8235, + [8518] = 8518, + [8519] = 8236, + [8520] = 8325, + [8521] = 8201, + [8522] = 8522, + [8523] = 8195, + [8524] = 169, + [8525] = 8525, + [8526] = 8209, + [8527] = 8221, + [8528] = 8221, + [8529] = 2909, + [8530] = 8180, + [8531] = 8233, + [8532] = 8182, + [8533] = 8200, + [8534] = 8235, + [8535] = 8236, + [8536] = 8198, + [8537] = 8537, + [8538] = 8195, + [8539] = 8182, + [8540] = 8540, + [8541] = 8541, + [8542] = 8180, + [8543] = 8207, [8544] = 8544, - [8545] = 8193, - [8546] = 8185, - [8547] = 8189, - [8548] = 8190, - [8549] = 8213, - [8550] = 8257, - [8551] = 8209, - [8552] = 8552, - [8553] = 8553, - [8554] = 8554, - [8555] = 8555, - [8556] = 8554, - [8557] = 8557, - [8558] = 8558, - [8559] = 8559, + [8545] = 8209, + [8546] = 8546, + [8547] = 8547, + [8548] = 8181, + [8549] = 8201, + [8550] = 8252, + [8551] = 8200, + [8552] = 8185, + [8553] = 8197, + [8554] = 8195, + [8555] = 8203, + [8556] = 8556, + [8557] = 8209, + [8558] = 8271, + [8559] = 8221, [8560] = 8560, [8561] = 8561, - [8562] = 8560, - [8563] = 8563, - [8564] = 8564, - [8565] = 8565, - [8566] = 8561, - [8567] = 8560, - [8568] = 8568, - [8569] = 8569, - [8570] = 8555, - [8571] = 8557, - [8572] = 8558, - [8573] = 8559, - [8574] = 8574, - [8575] = 8575, - [8576] = 8569, - [8577] = 8577, - [8578] = 8560, - [8579] = 8579, - [8580] = 8555, - [8581] = 8581, - [8582] = 8557, - [8583] = 8558, - [8584] = 8559, - [8585] = 8585, + [8562] = 8221, + [8563] = 8233, + [8564] = 8235, + [8565] = 8205, + [8566] = 8236, + [8567] = 8201, + [8568] = 8192, + [8569] = 8201, + [8570] = 8216, + [8571] = 8231, + [8572] = 8572, + [8573] = 8181, + [8574] = 8233, + [8575] = 8209, + [8576] = 8235, + [8577] = 8221, + [8578] = 8239, + [8579] = 8192, + [8580] = 8193, + [8581] = 8233, + [8582] = 8235, + [8583] = 8236, + [8584] = 8216, + [8585] = 8231, [8586] = 8586, - [8587] = 8587, - [8588] = 8588, - [8589] = 8589, - [8590] = 8590, - [8591] = 8591, - [8592] = 8569, - [8593] = 8560, - [8594] = 8555, - [8595] = 8595, - [8596] = 8554, - [8597] = 8577, - [8598] = 8555, - [8599] = 8581, - [8600] = 8557, - [8601] = 8558, - [8602] = 8559, - [8603] = 8603, - [8604] = 8555, - [8605] = 8605, - [8606] = 8606, - [8607] = 8607, - [8608] = 8608, - [8609] = 8609, - [8610] = 8560, - [8611] = 8611, - [8612] = 8612, - [8613] = 8613, - [8614] = 8552, - [8615] = 8555, - [8616] = 8557, - [8617] = 8557, - [8618] = 8558, - [8619] = 8559, - [8620] = 8620, - [8621] = 8613, - [8622] = 8558, + [8587] = 8197, + [8588] = 8233, + [8589] = 8235, + [8590] = 8207, + [8591] = 8236, + [8592] = 8236, + [8593] = 8325, + [8594] = 8272, + [8595] = 8249, + [8596] = 8252, + [8597] = 8209, + [8598] = 8209, + [8599] = 8180, + [8600] = 8271, + [8601] = 8271, + [8602] = 8221, + [8603] = 8233, + [8604] = 8325, + [8605] = 8272, + [8606] = 8273, + [8607] = 8235, + [8608] = 8182, + [8609] = 8200, + [8610] = 8236, + [8611] = 8272, + [8612] = 8205, + [8613] = 8239, + [8614] = 8614, + [8615] = 8187, + [8616] = 8616, + [8617] = 8273, + [8618] = 8618, + [8619] = 8209, + [8620] = 8182, + [8621] = 8221, + [8622] = 8195, [8623] = 8623, - [8624] = 8552, - [8625] = 8559, - [8626] = 8560, - [8627] = 8577, - [8628] = 8555, - [8629] = 8557, - [8630] = 8558, - [8631] = 8559, - [8632] = 8586, - [8633] = 8633, - [8634] = 8553, - [8635] = 8560, - [8636] = 8636, - [8637] = 8555, - [8638] = 8557, - [8639] = 8558, - [8640] = 8559, - [8641] = 8641, + [8624] = 8624, + [8625] = 8625, + [8626] = 8233, + [8627] = 7638, + [8628] = 8180, + [8629] = 8235, + [8630] = 8630, + [8631] = 8236, + [8632] = 8200, + [8633] = 8205, + [8634] = 8180, + [8635] = 8189, + [8636] = 8273, + [8637] = 8221, + [8638] = 8638, + [8639] = 8233, + [8640] = 8235, + [8641] = 8236, [8642] = 8642, - [8643] = 8557, + [8643] = 8195, [8644] = 8644, - [8645] = 8645, - [8646] = 8554, - [8647] = 8555, - [8648] = 8557, - [8649] = 8558, - [8650] = 8559, - [8651] = 8586, - [8652] = 8652, - [8653] = 8591, - [8654] = 8558, - [8655] = 8623, - [8656] = 8555, - [8657] = 8557, - [8658] = 8558, - [8659] = 8559, + [8645] = 8185, + [8646] = 8209, + [8647] = 8647, + [8648] = 8181, + [8649] = 8185, + [8650] = 8254, + [8651] = 8197, + [8652] = 8190, + [8653] = 8653, + [8654] = 8654, + [8655] = 8655, + [8656] = 8656, + [8657] = 8657, + [8658] = 8658, + [8659] = 8659, [8660] = 8660, [8661] = 8661, - [8662] = 8559, - [8663] = 8586, - [8664] = 8555, - [8665] = 8555, - [8666] = 8557, - [8667] = 8558, - [8668] = 8559, + [8662] = 8662, + [8663] = 8663, + [8664] = 8664, + [8665] = 8665, + [8666] = 8666, + [8667] = 8667, + [8668] = 8653, [8669] = 8669, - [8670] = 8591, - [8671] = 8555, - [8672] = 8557, - [8673] = 8558, - [8674] = 8559, + [8670] = 8664, + [8671] = 8671, + [8672] = 8672, + [8673] = 8673, + [8674] = 8674, [8675] = 8675, - [8676] = 8555, - [8677] = 8557, - [8678] = 8558, - [8679] = 8559, - [8680] = 8586, - [8681] = 8561, - [8682] = 8682, - [8683] = 8555, - [8684] = 8557, - [8685] = 8558, - [8686] = 8559, - [8687] = 8669, - [8688] = 8560, - [8689] = 8689, - [8690] = 8555, - [8691] = 8557, - [8692] = 8558, - [8693] = 8559, - [8694] = 8555, - [8695] = 8555, - [8696] = 8557, - [8697] = 8558, - [8698] = 8559, - [8699] = 8699, - [8700] = 8591, - [8701] = 8555, - [8702] = 8557, - [8703] = 8558, - [8704] = 8559, - [8705] = 8623, + [8676] = 8662, + [8677] = 8665, + [8678] = 8678, + [8679] = 8679, + [8680] = 8680, + [8681] = 8663, + [8682] = 8654, + [8683] = 8683, + [8684] = 8656, + [8685] = 8685, + [8686] = 8659, + [8687] = 8678, + [8688] = 8673, + [8689] = 8660, + [8690] = 8660, + [8691] = 8691, + [8692] = 8692, + [8693] = 8693, + [8694] = 8654, + [8695] = 8695, + [8696] = 8656, + [8697] = 8697, + [8698] = 8667, + [8699] = 8663, + [8700] = 8667, + [8701] = 8653, + [8702] = 8702, + [8703] = 8703, + [8704] = 2633, + [8705] = 8660, [8706] = 8706, - [8707] = 8555, - [8708] = 8557, - [8709] = 8558, - [8710] = 8559, - [8711] = 8553, - [8712] = 8712, - [8713] = 8713, - [8714] = 8555, - [8715] = 8557, - [8716] = 8558, - [8717] = 8559, - [8718] = 8581, - [8719] = 8669, - [8720] = 8555, - [8721] = 8557, - [8722] = 8558, - [8723] = 8559, - [8724] = 8560, - [8725] = 8560, - [8726] = 8555, - [8727] = 8557, - [8728] = 8558, - [8729] = 8559, - [8730] = 8561, - [8731] = 8561, - [8732] = 8555, - [8733] = 8557, - [8734] = 8558, - [8735] = 8559, - [8736] = 8609, - [8737] = 8669, - [8738] = 8555, - [8739] = 8557, - [8740] = 8558, - [8741] = 8559, - [8742] = 8569, - [8743] = 8743, - [8744] = 8569, + [8707] = 8674, + [8708] = 8664, + [8709] = 8666, + [8710] = 8710, + [8711] = 2634, + [8712] = 8662, + [8713] = 8665, + [8714] = 8679, + [8715] = 8671, + [8716] = 8664, + [8717] = 8663, + [8718] = 8692, + [8719] = 8710, + [8720] = 8654, + [8721] = 8721, + [8722] = 8662, + [8723] = 8665, + [8724] = 8679, + [8725] = 8674, + [8726] = 8660, + [8727] = 8654, + [8728] = 8656, + [8729] = 8683, + [8730] = 8730, + [8731] = 8731, + [8732] = 8656, + [8733] = 8733, + [8734] = 8685, + [8735] = 8685, + [8736] = 8678, + [8737] = 8733, + [8738] = 8655, + [8739] = 8739, + [8740] = 8683, + [8741] = 8662, + [8742] = 8693, + [8743] = 8706, + [8744] = 8665, [8745] = 8745, - [8746] = 8555, - [8747] = 8557, - [8748] = 8558, - [8749] = 8559, - [8750] = 8588, - [8751] = 8577, - [8752] = 8555, - [8753] = 8557, - [8754] = 8558, - [8755] = 8559, - [8756] = 8756, - [8757] = 8555, - [8758] = 8557, - [8759] = 8558, - [8760] = 8559, - [8761] = 8577, - [8762] = 8756, - [8763] = 8555, - [8764] = 8557, - [8765] = 8558, - [8766] = 8559, + [8746] = 8746, + [8747] = 8654, + [8748] = 8679, + [8749] = 8662, + [8750] = 8660, + [8751] = 8665, + [8752] = 8673, + [8753] = 8685, + [8754] = 8691, + [8755] = 8755, + [8756] = 8678, + [8757] = 8757, + [8758] = 8675, + [8759] = 8759, + [8760] = 8755, + [8761] = 8675, + [8762] = 8663, + [8763] = 8763, + [8764] = 8685, + [8765] = 8765, + [8766] = 8680, [8767] = 8767, - [8768] = 8641, - [8769] = 8769, - [8770] = 8661, - [8771] = 8771, - [8772] = 8591, - [8773] = 8561, - [8774] = 8591, - [8775] = 8586, - [8776] = 8555, - [8777] = 8777, - [8778] = 8612, - [8779] = 8779, - [8780] = 8661, - [8781] = 8636, - [8782] = 8555, - [8783] = 8569, - [8784] = 8644, - [8785] = 8574, - [8786] = 8633, - [8787] = 8560, - [8788] = 8661, - [8789] = 8581, - [8790] = 8790, - [8791] = 303, - [8792] = 3020, - [8793] = 8613, - [8794] = 8669, - [8795] = 8756, - [8796] = 8575, - [8797] = 8577, - [8798] = 8609, - [8799] = 8799, - [8800] = 8612, - [8801] = 8613, - [8802] = 8552, - [8803] = 8609, - [8804] = 8552, - [8805] = 8612, - [8806] = 8613, - [8807] = 8552, - [8808] = 8808, - [8809] = 8557, - [8810] = 8558, - [8811] = 8559, - [8812] = 8812, - [8813] = 8557, - [8814] = 8660, - [8815] = 8675, - [8816] = 8682, - [8817] = 8558, - [8818] = 8559, - [8819] = 8633, - [8820] = 8820, - [8821] = 8821, - [8822] = 8553, - [8823] = 8636, - [8824] = 8574, - [8825] = 8641, - [8826] = 8644, + [8768] = 8768, + [8769] = 8671, + [8770] = 8770, + [8771] = 8667, + [8772] = 8772, + [8773] = 8693, + [8774] = 8679, + [8775] = 8659, + [8776] = 2616, + [8777] = 8657, + [8778] = 8660, + [8779] = 8658, + [8780] = 2631, + [8781] = 8663, + [8782] = 8661, + [8783] = 8667, + [8784] = 8685, + [8785] = 8669, + [8786] = 8660, + [8787] = 8653, + [8788] = 8664, + [8789] = 8664, + [8790] = 8692, + [8791] = 8654, + [8792] = 8662, + [8793] = 8665, + [8794] = 8679, + [8795] = 8795, + [8796] = 8662, + [8797] = 8665, + [8798] = 8679, + [8799] = 8656, + [8800] = 8660, + [8801] = 8683, + [8802] = 8691, + [8803] = 8757, + [8804] = 8675, + [8805] = 8703, + [8806] = 8755, + [8807] = 8659, + [8808] = 8685, + [8809] = 8673, + [8810] = 8654, + [8811] = 8680, + [8812] = 8767, + [8813] = 8768, + [8814] = 8656, + [8815] = 8656, + [8816] = 8685, + [8817] = 8772, + [8818] = 8678, + [8819] = 8692, + [8820] = 8657, + [8821] = 8654, + [8822] = 8658, + [8823] = 8667, + [8824] = 8656, + [8825] = 8661, + [8826] = 8669, [8827] = 8827, - [8828] = 8645, - [8829] = 8554, - [8830] = 8633, - [8831] = 8831, - [8832] = 8553, - [8833] = 8560, - [8834] = 8636, - [8835] = 8557, - [8836] = 8558, - [8837] = 8661, - [8838] = 8771, - [8839] = 8839, - [8840] = 8840, - [8841] = 8841, - [8842] = 8586, - [8843] = 8641, - [8844] = 8644, - [8845] = 8586, - [8846] = 8645, - [8847] = 8559, - [8848] = 8554, - [8849] = 8609, - [8850] = 8799, - [8851] = 8609, - [8852] = 8591, - [8853] = 8586, - [8854] = 8854, - [8855] = 8623, - [8856] = 8856, + [8828] = 8685, + [8829] = 8667, + [8830] = 8830, + [8831] = 8691, + [8832] = 8757, + [8833] = 8675, + [8834] = 2541, + [8835] = 8755, + [8836] = 8836, + [8837] = 8837, + [8838] = 8666, + [8839] = 8660, + [8840] = 8710, + [8841] = 8680, + [8842] = 8767, + [8843] = 8768, + [8844] = 2542, + [8845] = 8693, + [8846] = 8772, + [8847] = 8733, + [8848] = 8685, + [8849] = 8678, + [8850] = 8657, + [8851] = 8658, + [8852] = 8661, + [8853] = 8669, + [8854] = 8685, + [8855] = 8691, + [8856] = 8757, [8857] = 8857, - [8858] = 8661, - [8859] = 8561, - [8860] = 8771, - [8861] = 8609, - [8862] = 8862, - [8863] = 8863, - [8864] = 8660, - [8865] = 8612, - [8866] = 8771, - [8867] = 8623, - [8868] = 8586, - [8869] = 8636, - [8870] = 8645, - [8871] = 8623, - [8872] = 8569, - [8873] = 8577, - [8874] = 8555, - [8875] = 8875, - [8876] = 8569, - [8877] = 8756, - [8878] = 8623, - [8879] = 8675, - [8880] = 8880, - [8881] = 8799, - [8882] = 8613, - [8883] = 8883, - [8884] = 8799, - [8885] = 8609, - [8886] = 8661, - [8887] = 8771, - [8888] = 8560, - [8889] = 8612, - [8890] = 8561, - [8891] = 8560, - [8892] = 8569, - [8893] = 8557, - [8894] = 8560, - [8895] = 8577, - [8896] = 8558, - [8897] = 8559, - [8898] = 8898, - [8899] = 8561, - [8900] = 8900, - [8901] = 8569, - [8902] = 8613, - [8903] = 8552, - [8904] = 8904, - [8905] = 8591, - [8906] = 8799, - [8907] = 8907, - [8908] = 8591, - [8909] = 8771, - [8910] = 8910, - [8911] = 8609, - [8912] = 8555, - [8913] = 8555, - [8914] = 8914, - [8915] = 8553, - [8916] = 8660, - [8917] = 8675, - [8918] = 8612, - [8919] = 8581, - [8920] = 8920, - [8921] = 8682, - [8922] = 8636, - [8923] = 8923, - [8924] = 8609, - [8925] = 8669, - [8926] = 8623, - [8927] = 8799, - [8928] = 8756, - [8929] = 8675, - [8930] = 8560, - [8931] = 8771, - [8932] = 8932, - [8933] = 8613, - [8934] = 8633, - [8935] = 8682, - [8936] = 8613, - [8937] = 8552, - [8938] = 8557, - [8939] = 8939, - [8940] = 8558, - [8941] = 8609, - [8942] = 8612, - [8943] = 8799, - [8944] = 8559, - [8945] = 8945, - [8946] = 8771, - [8947] = 8613, - [8948] = 8552, - [8949] = 8557, - [8950] = 8558, - [8951] = 8559, - [8952] = 8574, - [8953] = 8552, - [8954] = 8633, - [8955] = 8660, - [8956] = 8675, - [8957] = 8682, - [8958] = 8553, - [8959] = 8959, - [8960] = 8636, - [8961] = 8641, - [8962] = 8799, - [8963] = 8644, - [8964] = 8633, - [8965] = 8771, - [8966] = 8588, - [8967] = 8967, - [8968] = 8553, - [8969] = 8636, - [8970] = 8645, - [8971] = 8612, - [8972] = 8641, - [8973] = 8644, - [8974] = 8974, - [8975] = 8645, - [8976] = 8554, - [8977] = 8557, - [8978] = 8633, - [8979] = 8799, - [8980] = 8980, - [8981] = 8561, - [8982] = 8771, - [8983] = 8633, - [8984] = 8569, - [8985] = 8558, - [8986] = 8586, - [8987] = 8588, - [8988] = 8745, - [8989] = 8799, - [8990] = 8990, - [8991] = 8771, - [8992] = 8577, - [8993] = 8553, - [8994] = 8612, - [8995] = 8995, - [8996] = 8799, - [8997] = 8771, - [8998] = 8998, - [8999] = 8559, - [9000] = 8557, - [9001] = 8799, - [9002] = 8591, - [9003] = 8771, - [9004] = 8577, - [9005] = 8771, - [9006] = 8558, - [9007] = 8771, - [9008] = 8771, - [9009] = 8633, - [9010] = 8553, - [9011] = 8586, - [9012] = 8591, - [9013] = 8636, - [9014] = 8553, - [9015] = 8636, - [9016] = 8555, - [9017] = 8560, - [9018] = 8636, - [9019] = 8561, - [9020] = 8641, - [9021] = 8560, - [9022] = 8641, - [9023] = 8644, - [9024] = 8645, - [9025] = 8623, - [9026] = 8555, - [9027] = 8555, - [9028] = 9028, - [9029] = 8554, - [9030] = 9030, - [9031] = 9031, - [9032] = 8559, - [9033] = 7953, - [9034] = 8581, - [9035] = 8641, - [9036] = 8633, - [9037] = 8557, - [9038] = 9038, - [9039] = 8560, - [9040] = 8669, - [9041] = 8558, - [9042] = 8559, - [9043] = 9043, - [9044] = 9044, - [9045] = 8561, - [9046] = 8756, - [9047] = 8569, - [9048] = 9048, - [9049] = 8577, - [9050] = 8644, - [9051] = 302, - [9052] = 9052, - [9053] = 8675, - [9054] = 8623, - [9055] = 8586, - [9056] = 9056, - [9057] = 8555, - [9058] = 8591, - [9059] = 8645, - [9060] = 8560, - [9061] = 8560, - [9062] = 8555, - [9063] = 9063, - [9064] = 8633, - [9065] = 8554, - [9066] = 8574, - [9067] = 9067, - [9068] = 8581, - [9069] = 9069, - [9070] = 8561, - [9071] = 9071, - [9072] = 8560, - [9073] = 8669, - [9074] = 8561, - [9075] = 8591, + [8858] = 8755, + [8859] = 8679, + [8860] = 8860, + [8861] = 8710, + [8862] = 8663, + [8863] = 2551, + [8864] = 8680, + [8865] = 8767, + [8866] = 8662, + [8867] = 8679, + [8868] = 8772, + [8869] = 8660, + [8870] = 8674, + [8871] = 8678, + [8872] = 8657, + [8873] = 8658, + [8874] = 8660, + [8875] = 8660, + [8876] = 8661, + [8877] = 8669, + [8878] = 2552, + [8879] = 8733, + [8880] = 8691, + [8881] = 8733, + [8882] = 8755, + [8883] = 8680, + [8884] = 8685, + [8885] = 8772, + [8886] = 8664, + [8887] = 8887, + [8888] = 8678, + [8889] = 8658, + [8890] = 8683, + [8891] = 2563, + [8892] = 8669, + [8893] = 8661, + [8894] = 8669, + [8895] = 8660, + [8896] = 8662, + [8897] = 8663, + [8898] = 8665, + [8899] = 8679, + [8900] = 8691, + [8901] = 8755, + [8902] = 8680, + [8903] = 8692, + [8904] = 8772, + [8905] = 8693, + [8906] = 8685, + [8907] = 8658, + [8908] = 8908, + [8909] = 8664, + [8910] = 8661, + [8911] = 8911, + [8912] = 8674, + [8913] = 8691, + [8914] = 8755, + [8915] = 8660, + [8916] = 8663, + [8917] = 8680, + [8918] = 8671, + [8919] = 8678, + [8920] = 8772, + [8921] = 8710, + [8922] = 8658, + [8923] = 8659, + [8924] = 8924, + [8925] = 8661, + [8926] = 8660, + [8927] = 8653, + [8928] = 8691, + [8929] = 8755, + [8930] = 8693, + [8931] = 8680, + [8932] = 8664, + [8933] = 8658, + [8934] = 8667, + [8935] = 8654, + [8936] = 8662, + [8937] = 8680, + [8938] = 8665, + [8939] = 8679, + [8940] = 8656, + [8941] = 8660, + [8942] = 8680, + [8943] = 8680, + [8944] = 8944, + [8945] = 8680, + [8946] = 8680, + [8947] = 8654, + [8948] = 8948, + [8949] = 8665, + [8950] = 8678, + [8951] = 8673, + [8952] = 8772, + [8953] = 8953, + [8954] = 8954, + [8955] = 8767, + [8956] = 8956, + [8957] = 8692, + [8958] = 8663, + [8959] = 8654, + [8960] = 8659, + [8961] = 8656, + [8962] = 8667, + [8963] = 8679, + [8964] = 8964, + [8965] = 8733, + [8966] = 8710, + [8967] = 8710, + [8968] = 8657, + [8969] = 8660, + [8970] = 8733, + [8971] = 8971, + [8972] = 8673, + [8973] = 8674, + [8974] = 8693, + [8975] = 8733, + [8976] = 8976, + [8977] = 8685, + [8978] = 8685, + [8979] = 8768, + [8980] = 8678, + [8981] = 8656, + [8982] = 8671, + [8983] = 8706, + [8984] = 8984, + [8985] = 8693, + [8986] = 8659, + [8987] = 8987, + [8988] = 8678, + [8989] = 8663, + [8990] = 8685, + [8991] = 8671, + [8992] = 8674, + [8993] = 8678, + [8994] = 8994, + [8995] = 8659, + [8996] = 8660, + [8997] = 2641, + [8998] = 8685, + [8999] = 8666, + [9000] = 8692, + [9001] = 8693, + [9002] = 8767, + [9003] = 8662, + [9004] = 8665, + [9005] = 8679, + [9006] = 8656, + [9007] = 8685, + [9008] = 8654, + [9009] = 8664, + [9010] = 8662, + [9011] = 8665, + [9012] = 8679, + [9013] = 8664, + [9014] = 8693, + [9015] = 8678, + [9016] = 8683, + [9017] = 8679, + [9018] = 8661, + [9019] = 8691, + [9020] = 8662, + [9021] = 8665, + [9022] = 8673, + [9023] = 8663, + [9024] = 8757, + [9025] = 8679, + [9026] = 8675, + [9027] = 8671, + [9028] = 8673, + [9029] = 8654, + [9030] = 8755, + [9031] = 8656, + [9032] = 8693, + [9033] = 8660, + [9034] = 8733, + [9035] = 8693, + [9036] = 8666, + [9037] = 8667, + [9038] = 8768, + [9039] = 8685, + [9040] = 8706, + [9041] = 9041, + [9042] = 8706, + [9043] = 8675, + [9044] = 8680, + [9045] = 8656, + [9046] = 8767, + [9047] = 8658, + [9048] = 8664, + [9049] = 9041, + [9050] = 8693, + [9051] = 8768, + [9052] = 8683, + [9053] = 8662, + [9054] = 8665, + [9055] = 8656, + [9056] = 8685, + [9057] = 8693, + [9058] = 9058, + [9059] = 8678, + [9060] = 8678, + [9061] = 8674, + [9062] = 8655, + [9063] = 8662, + [9064] = 9064, + [9065] = 8772, + [9066] = 8665, + [9067] = 8664, + [9068] = 8733, + [9069] = 8673, + [9070] = 8679, + [9071] = 8685, + [9072] = 8678, + [9073] = 9073, + [9074] = 8757, + [9075] = 8674, [9076] = 9076, - [9077] = 8669, - [9078] = 8586, - [9079] = 8577, - [9080] = 8613, - [9081] = 8555, - [9082] = 8552, - [9083] = 8557, - [9084] = 8609, - [9085] = 8641, - [9086] = 8612, - [9087] = 8713, - [9088] = 8641, - [9089] = 9089, - [9090] = 8613, - [9091] = 8552, - [9092] = 9092, - [9093] = 8557, - [9094] = 8558, - [9095] = 8644, - [9096] = 8559, - [9097] = 8609, - [9098] = 8660, - [9099] = 8675, - [9100] = 8644, - [9101] = 8557, - [9102] = 8612, - [9103] = 8633, - [9104] = 8645, - [9105] = 8558, - [9106] = 8559, - [9107] = 8553, - [9108] = 8636, - [9109] = 8641, - [9110] = 8644, - [9111] = 8645, - [9112] = 8554, - [9113] = 8553, - [9114] = 8558, - [9115] = 8554, - [9116] = 8588, - [9117] = 8559, - [9118] = 8613, - [9119] = 8636, - [9120] = 8641, - [9121] = 8557, - [9122] = 8558, - [9123] = 8559, + [9077] = 8655, + [9078] = 9078, + [9079] = 9041, + [9080] = 8663, + [9081] = 9081, + [9082] = 8693, + [9083] = 9041, + [9084] = 8655, + [9085] = 9041, + [9086] = 8664, + [9087] = 8693, + [9088] = 9041, + [9089] = 9041, + [9090] = 8663, + [9091] = 9041, + [9092] = 8706, + [9093] = 9041, + [9094] = 8671, + [9095] = 9095, + [9096] = 9041, + [9097] = 9041, + [9098] = 9041, + [9099] = 9041, + [9100] = 9041, + [9101] = 9041, + [9102] = 9041, + [9103] = 9041, + [9104] = 9041, + [9105] = 9041, + [9106] = 9041, + [9107] = 9041, + [9108] = 9041, + [9109] = 9041, + [9110] = 8659, + [9111] = 8660, + [9112] = 8671, + [9113] = 8768, + [9114] = 9114, + [9115] = 9115, + [9116] = 9116, + [9117] = 9117, + [9118] = 9118, + [9119] = 9119, + [9120] = 9120, + [9121] = 9114, + [9122] = 9122, + [9123] = 9123, [9124] = 9124, - [9125] = 8645, - [9126] = 8644, - [9127] = 8561, - [9128] = 8644, - [9129] = 8660, - [9130] = 8675, - [9131] = 8682, - [9132] = 8645, - [9133] = 8554, - [9134] = 8569, - [9135] = 8645, - [9136] = 8586, - [9137] = 8560, - [9138] = 8745, - [9139] = 8552, - [9140] = 9140, + [9125] = 9125, + [9126] = 9126, + [9127] = 9127, + [9128] = 9128, + [9129] = 9129, + [9130] = 9130, + [9131] = 9131, + [9132] = 9132, + [9133] = 9133, + [9134] = 9134, + [9135] = 9135, + [9136] = 9136, + [9137] = 9137, + [9138] = 9138, + [9139] = 9139, + [9140] = 9136, [9141] = 9141, [9142] = 9142, - [9143] = 9143, + [9143] = 9138, [9144] = 9144, [9145] = 9145, - [9146] = 9145, - [9147] = 9142, - [9148] = 9148, + [9146] = 9129, + [9147] = 9147, + [9148] = 9142, [9149] = 9149, [9150] = 9150, [9151] = 9151, - [9152] = 9148, - [9153] = 9148, - [9154] = 9154, + [9152] = 9134, + [9153] = 9153, + [9154] = 9120, [9155] = 9155, - [9156] = 9154, + [9156] = 9156, [9157] = 9157, - [9158] = 9155, + [9158] = 9158, [9159] = 9159, [9160] = 9160, [9161] = 9161, - [9162] = 9142, - [9163] = 9163, - [9164] = 9148, + [9162] = 9162, + [9163] = 9138, + [9164] = 9157, [9165] = 9165, - [9166] = 9148, - [9167] = 9161, - [9168] = 9142, + [9166] = 9117, + [9167] = 9145, + [9168] = 9168, [9169] = 9169, - [9170] = 9165, - [9171] = 9148, + [9170] = 9170, + [9171] = 9171, [9172] = 9172, - [9173] = 9148, + [9173] = 9173, [9174] = 9174, - [9175] = 9160, - [9176] = 9174, - [9177] = 9160, + [9175] = 9175, + [9176] = 9176, + [9177] = 9177, [9178] = 9142, - [9179] = 9179, - [9180] = 9169, + [9179] = 9135, + [9180] = 9180, [9181] = 9181, - [9182] = 9148, - [9183] = 9181, - [9184] = 9184, + [9182] = 9182, + [9183] = 9119, + [9184] = 9137, [9185] = 9185, - [9186] = 9142, - [9187] = 9187, + [9186] = 9126, + [9187] = 9162, [9188] = 9188, - [9189] = 9148, - [9190] = 9165, - [9191] = 9165, + [9189] = 9142, + [9190] = 9190, + [9191] = 9122, [9192] = 9192, - [9193] = 9142, + [9193] = 9193, [9194] = 9194, - [9195] = 9148, - [9196] = 9163, - [9197] = 9197, - [9198] = 9150, - [9199] = 9161, - [9200] = 9200, - [9201] = 9142, - [9202] = 9187, - [9203] = 9148, - [9204] = 9142, - [9205] = 9148, - [9206] = 9142, + [9195] = 9195, + [9196] = 9125, + [9197] = 9160, + [9198] = 9125, + [9199] = 9134, + [9200] = 9120, + [9201] = 9201, + [9202] = 9114, + [9203] = 9120, + [9204] = 9204, + [9205] = 9132, + [9206] = 9118, [9207] = 9207, - [9208] = 9208, - [9209] = 9148, - [9210] = 9210, + [9208] = 9182, + [9209] = 9138, + [9210] = 9193, [9211] = 9211, - [9212] = 9142, - [9213] = 9208, - [9214] = 9148, - [9215] = 3198, - [9216] = 9197, - [9217] = 9142, - [9218] = 9148, - [9219] = 9174, - [9220] = 9160, - [9221] = 3201, - [9222] = 9181, - [9223] = 9142, - [9224] = 9159, - [9225] = 9148, - [9226] = 9165, - [9227] = 3260, - [9228] = 9142, - [9229] = 9141, - [9230] = 9148, - [9231] = 9142, - [9232] = 9143, - [9233] = 9142, - [9234] = 9145, - [9235] = 9150, - [9236] = 9148, - [9237] = 9163, - [9238] = 9142, - [9239] = 9161, - [9240] = 3262, - [9241] = 9148, - [9242] = 9141, - [9243] = 9154, - [9244] = 9148, - [9245] = 9148, - [9246] = 9163, - [9247] = 3159, + [9212] = 9212, + [9213] = 9137, + [9214] = 9155, + [9215] = 9139, + [9216] = 9132, + [9217] = 9217, + [9218] = 9149, + [9219] = 9219, + [9220] = 9193, + [9221] = 9194, + [9222] = 9222, + [9223] = 9160, + [9224] = 9139, + [9225] = 9133, + [9226] = 9194, + [9227] = 9123, + [9228] = 9228, + [9229] = 9229, + [9230] = 9168, + [9231] = 9231, + [9232] = 9232, + [9233] = 9233, + [9234] = 9195, + [9235] = 9117, + [9236] = 9236, + [9237] = 9133, + [9238] = 9238, + [9239] = 9128, + [9240] = 9240, + [9241] = 9162, + [9242] = 9180, + [9243] = 9185, + [9244] = 9201, + [9245] = 9245, + [9246] = 9246, + [9247] = 9247, [9248] = 9248, - [9249] = 9163, - [9250] = 3199, - [9251] = 9187, - [9252] = 9148, - [9253] = 9253, - [9254] = 9169, - [9255] = 3103, - [9256] = 9174, - [9257] = 9165, - [9258] = 9184, - [9259] = 9174, - [9260] = 9160, - [9261] = 9181, - [9262] = 3106, - [9263] = 9160, - [9264] = 9165, - [9265] = 9197, - [9266] = 9253, - [9267] = 9181, - [9268] = 9268, - [9269] = 9210, - [9270] = 9270, + [9249] = 9161, + [9250] = 9250, + [9251] = 9195, + [9252] = 9135, + [9253] = 9245, + [9254] = 9254, + [9255] = 9125, + [9256] = 9132, + [9257] = 9114, + [9258] = 9258, + [9259] = 9259, + [9260] = 9171, + [9261] = 9261, + [9262] = 9182, + [9263] = 9161, + [9264] = 9124, + [9265] = 9142, + [9266] = 9125, + [9267] = 9267, + [9268] = 9137, + [9269] = 9207, + [9270] = 9139, [9271] = 9271, - [9272] = 9174, - [9273] = 9160, - [9274] = 9181, - [9275] = 9142, - [9276] = 9141, - [9277] = 9155, - [9278] = 9150, + [9272] = 9272, + [9273] = 9149, + [9274] = 9274, + [9275] = 9275, + [9276] = 9276, + [9277] = 9277, + [9278] = 9278, [9279] = 9279, - [9280] = 9172, - [9281] = 9200, - [9282] = 9161, + [9280] = 9277, + [9281] = 9281, + [9282] = 9282, [9283] = 9283, - [9284] = 9284, - [9285] = 9142, - [9286] = 3114, - [9287] = 9287, - [9288] = 9284, - [9289] = 9169, - [9290] = 9290, - [9291] = 9207, - [9292] = 9210, + [9284] = 9177, + [9285] = 9285, + [9286] = 9286, + [9287] = 9161, + [9288] = 9142, + [9289] = 9185, + [9290] = 9161, + [9291] = 9291, + [9292] = 9157, [9293] = 9293, - [9294] = 9143, - [9295] = 9295, - [9296] = 9197, - [9297] = 9140, + [9294] = 9248, + [9295] = 9195, + [9296] = 9132, + [9297] = 9297, [9298] = 9298, - [9299] = 9187, - [9300] = 9300, - [9301] = 9150, - [9302] = 9302, - [9303] = 9161, - [9304] = 9142, - [9305] = 9300, - [9306] = 9187, - [9307] = 9194, - [9308] = 9150, - [9309] = 9141, + [9299] = 9299, + [9300] = 9134, + [9301] = 9114, + [9302] = 9177, + [9303] = 9125, + [9304] = 9248, + [9305] = 9117, + [9306] = 9207, + [9307] = 9307, + [9308] = 9308, + [9309] = 9177, [9310] = 9310, - [9311] = 9311, - [9312] = 9142, - [9313] = 9143, - [9314] = 9194, - [9315] = 9143, - [9316] = 9268, - [9317] = 9270, - [9318] = 9169, - [9319] = 9319, + [9311] = 9299, + [9312] = 9137, + [9313] = 9132, + [9314] = 9139, + [9315] = 9248, + [9316] = 9149, + [9317] = 9267, + [9318] = 9318, + [9319] = 9151, [9320] = 9320, - [9321] = 9161, - [9322] = 9155, - [9323] = 9154, - [9324] = 9279, - [9325] = 9142, - [9326] = 9143, - [9327] = 9174, - [9328] = 9155, - [9329] = 9253, - [9330] = 9197, - [9331] = 9268, - [9332] = 9210, - [9333] = 9141, - [9334] = 9271, - [9335] = 9163, - [9336] = 9142, - [9337] = 9279, - [9338] = 9172, - [9339] = 9200, - [9340] = 9143, - [9341] = 9341, + [9321] = 9321, + [9322] = 9322, + [9323] = 9321, + [9324] = 9324, + [9325] = 9325, + [9326] = 9326, + [9327] = 9119, + [9328] = 9142, + [9329] = 9125, + [9330] = 9236, + [9331] = 9162, + [9332] = 9185, + [9333] = 9333, + [9334] = 9308, + [9335] = 9326, + [9336] = 9336, + [9337] = 9177, + [9338] = 9195, + [9339] = 9136, + [9340] = 9238, + [9341] = 9142, [9342] = 9283, - [9343] = 9148, - [9344] = 9344, - [9345] = 9141, - [9346] = 9346, - [9347] = 9287, - [9348] = 9284, - [9349] = 9160, - [9350] = 9350, - [9351] = 9207, - [9352] = 9142, - [9353] = 9295, - [9354] = 9143, - [9355] = 9187, - [9356] = 9356, + [9343] = 9343, + [9344] = 9114, + [9345] = 9345, + [9346] = 9228, + [9347] = 9347, + [9348] = 9348, + [9349] = 9122, + [9350] = 9277, + [9351] = 9322, + [9352] = 9125, + [9353] = 9353, + [9354] = 9137, + [9355] = 9246, + [9356] = 9139, [9357] = 9357, - [9358] = 9295, - [9359] = 9194, - [9360] = 9154, - [9361] = 9165, - [9362] = 9300, - [9363] = 9200, - [9364] = 9364, - [9365] = 9365, - [9366] = 9253, - [9367] = 9268, - [9368] = 9174, - [9369] = 9210, - [9370] = 9160, - [9371] = 9159, - [9372] = 9271, - [9373] = 9154, - [9374] = 9181, - [9375] = 9159, - [9376] = 9279, - [9377] = 9172, - [9378] = 9200, - [9379] = 9379, - [9380] = 9154, - [9381] = 9283, - [9382] = 9208, - [9383] = 9154, - [9384] = 9154, - [9385] = 9287, - [9386] = 9284, - [9387] = 9387, - [9388] = 9207, - [9389] = 9200, - [9390] = 9295, - [9391] = 9150, - [9392] = 9161, - [9393] = 9270, - [9394] = 9163, - [9395] = 9159, - [9396] = 9208, - [9397] = 9179, - [9398] = 9253, - [9399] = 9159, - [9400] = 9268, - [9401] = 9210, - [9402] = 9271, - [9403] = 9145, - [9404] = 9148, - [9405] = 9279, + [9358] = 9149, + [9359] = 9359, + [9360] = 9162, + [9361] = 9267, + [9362] = 9283, + [9363] = 9142, + [9364] = 9128, + [9365] = 9333, + [9366] = 9119, + [9367] = 9129, + [9368] = 9119, + [9369] = 9369, + [9370] = 9201, + [9371] = 9371, + [9372] = 9372, + [9373] = 9373, + [9374] = 9185, + [9375] = 9124, + [9376] = 9376, + [9377] = 9373, + [9378] = 9195, + [9379] = 9144, + [9380] = 9343, + [9381] = 9119, + [9382] = 9373, + [9383] = 9383, + [9384] = 9114, + [9385] = 9247, + [9386] = 9193, + [9387] = 9126, + [9388] = 9145, + [9389] = 9278, + [9390] = 9171, + [9391] = 9142, + [9392] = 9392, + [9393] = 9125, + [9394] = 9137, + [9395] = 9134, + [9396] = 9139, + [9397] = 9132, + [9398] = 9219, + [9399] = 9133, + [9400] = 9247, + [9401] = 1878, + [9402] = 9402, + [9403] = 9120, + [9404] = 9165, + [9405] = 9371, [9406] = 9172, - [9407] = 9200, - [9408] = 9163, - [9409] = 9163, - [9410] = 9283, - [9411] = 9165, - [9412] = 9141, - [9413] = 9287, - [9414] = 9284, - [9415] = 9141, - [9416] = 9148, - [9417] = 9295, - [9418] = 9174, - [9419] = 9160, - [9420] = 9148, - [9421] = 9208, - [9422] = 9181, - [9423] = 9270, - [9424] = 9253, - [9425] = 9268, - [9426] = 9181, - [9427] = 9271, - [9428] = 9142, - [9429] = 9143, - [9430] = 9279, - [9431] = 9172, - [9432] = 9283, - [9433] = 9287, - [9434] = 9284, - [9435] = 9169, - [9436] = 9436, - [9437] = 9207, - [9438] = 9142, - [9439] = 9295, - [9440] = 9154, - [9441] = 9143, - [9442] = 9253, - [9443] = 9271, - [9444] = 9279, - [9445] = 9165, - [9446] = 9197, - [9447] = 9163, - [9448] = 9283, - [9449] = 9449, - [9450] = 9148, - [9451] = 9284, - [9452] = 9300, - [9453] = 9207, - [9454] = 9150, - [9455] = 9295, - [9456] = 9145, + [9407] = 9185, + [9408] = 9408, + [9409] = 9135, + [9410] = 9195, + [9411] = 9157, + [9412] = 9250, + [9413] = 9343, + [9414] = 9114, + [9415] = 9180, + [9416] = 9416, + [9417] = 9120, + [9418] = 9136, + [9419] = 9139, + [9420] = 9373, + [9421] = 9117, + [9422] = 9171, + [9423] = 6655, + [9424] = 9182, + [9425] = 9156, + [9426] = 9185, + [9427] = 9133, + [9428] = 9277, + [9429] = 9236, + [9430] = 9247, + [9431] = 9114, + [9432] = 9432, + [9433] = 9138, + [9434] = 9139, + [9435] = 9194, + [9436] = 9180, + [9437] = 9437, + [9438] = 9185, + [9439] = 9114, + [9440] = 9162, + [9441] = 9139, + [9442] = 9171, + [9443] = 9156, + [9444] = 9238, + [9445] = 9185, + [9446] = 9114, + [9447] = 9149, + [9448] = 9139, + [9449] = 9142, + [9450] = 9150, + [9451] = 9125, + [9452] = 9185, + [9453] = 9114, + [9454] = 9139, + [9455] = 9250, + [9456] = 9151, [9457] = 9161, - [9458] = 9210, - [9459] = 9253, - [9460] = 9165, - [9461] = 9271, - [9462] = 9279, - [9463] = 9174, - [9464] = 9187, - [9465] = 9283, - [9466] = 9160, - [9467] = 9179, - [9468] = 9174, - [9469] = 9181, - [9470] = 9284, - [9471] = 9160, - [9472] = 9207, - [9473] = 9181, - [9474] = 9145, - [9475] = 9148, - [9476] = 9270, - [9477] = 9253, - [9478] = 9271, - [9479] = 9150, - [9480] = 9279, - [9481] = 9161, - [9482] = 9283, + [9458] = 9114, + [9459] = 9139, + [9460] = 9142, + [9461] = 9114, + [9462] = 9139, + [9463] = 9114, + [9464] = 9139, + [9465] = 9114, + [9466] = 9139, + [9467] = 9114, + [9468] = 9139, + [9469] = 9114, + [9470] = 9139, + [9471] = 9114, + [9472] = 9139, + [9473] = 9157, + [9474] = 9139, + [9475] = 9114, + [9476] = 9139, + [9477] = 9308, + [9478] = 9478, + [9479] = 9479, + [9480] = 9480, + [9481] = 9168, + [9482] = 9482, [9483] = 9271, - [9484] = 9284, - [9485] = 9207, - [9486] = 9184, - [9487] = 9154, - [9488] = 9163, - [9489] = 9184, - [9490] = 9253, - [9491] = 9271, - [9492] = 9279, + [9484] = 9267, + [9485] = 9283, + [9486] = 9486, + [9487] = 9136, + [9488] = 9488, + [9489] = 9324, + [9490] = 9119, + [9491] = 9308, + [9492] = 9133, [9493] = 9142, - [9494] = 9284, - [9495] = 9184, - [9496] = 9496, - [9497] = 9497, - [9498] = 9253, - [9499] = 9179, - [9500] = 9279, - [9501] = 9155, - [9502] = 9165, - [9503] = 9154, - [9504] = 9504, - [9505] = 9253, - [9506] = 9300, - [9507] = 9279, - [9508] = 9208, - [9509] = 9154, - [9510] = 9253, - [9511] = 9279, - [9512] = 9141, - [9513] = 9174, - [9514] = 9163, - [9515] = 9160, - [9516] = 9253, - [9517] = 9150, - [9518] = 9279, - [9519] = 9253, - [9520] = 9161, - [9521] = 9279, - [9522] = 9142, - [9523] = 9148, - [9524] = 9279, - [9525] = 9279, - [9526] = 9279, - [9527] = 9279, - [9528] = 9279, - [9529] = 9143, - [9530] = 9172, - [9531] = 9531, - [9532] = 9181, - [9533] = 9165, - [9534] = 9287, - [9535] = 9154, - [9536] = 9174, - [9537] = 9160, - [9538] = 9154, - [9539] = 9293, - [9540] = 9179, - [9541] = 9187, - [9542] = 9542, - [9543] = 9150, - [9544] = 9161, - [9545] = 9163, - [9546] = 9165, - [9547] = 9150, - [9548] = 9548, - [9549] = 9145, - [9550] = 9208, - [9551] = 9169, - [9552] = 9181, - [9553] = 9553, - [9554] = 9145, - [9555] = 9148, - [9556] = 9142, - [9557] = 9165, - [9558] = 9197, - [9559] = 3225, - [9560] = 9148, - [9561] = 9155, - [9562] = 9174, - [9563] = 9160, - [9564] = 9154, - [9565] = 9181, - [9566] = 9197, - [9567] = 9148, - [9568] = 9568, - [9569] = 9270, - [9570] = 9165, - [9571] = 9174, - [9572] = 9160, - [9573] = 9169, - [9574] = 9574, - [9575] = 9145, + [9494] = 9494, + [9495] = 9115, + [9496] = 9123, + [9497] = 9155, + [9498] = 9115, + [9499] = 9310, + [9500] = 9343, + [9501] = 9165, + [9502] = 9372, + [9503] = 9160, + [9504] = 9132, + [9505] = 9505, + [9506] = 9506, + [9507] = 9132, + [9508] = 9172, + [9509] = 9117, + [9510] = 9118, + [9511] = 9125, + [9512] = 9512, + [9513] = 9494, + [9514] = 9279, + [9515] = 9126, + [9516] = 9333, + [9517] = 9248, + [9518] = 9161, + [9519] = 9267, + [9520] = 9283, + [9521] = 9182, + [9522] = 9522, + [9523] = 9126, + [9524] = 9524, + [9525] = 9136, + [9526] = 9138, + [9527] = 9293, + [9528] = 9142, + [9529] = 9482, + [9530] = 9530, + [9531] = 9238, + [9532] = 9532, + [9533] = 9533, + [9534] = 9142, + [9535] = 9125, + [9536] = 9115, + [9537] = 9125, + [9538] = 9168, + [9539] = 9539, + [9540] = 9201, + [9541] = 9541, + [9542] = 9135, + [9543] = 9333, + [9544] = 9134, + [9545] = 9182, + [9546] = 9512, + [9547] = 9279, + [9548] = 9293, + [9549] = 9122, + [9550] = 9125, + [9551] = 9336, + [9552] = 9552, + [9553] = 9134, + [9554] = 9120, + [9555] = 9126, + [9556] = 9120, + [9557] = 9217, + [9558] = 9123, + [9559] = 9171, + [9560] = 9560, + [9561] = 9135, + [9562] = 9562, + [9563] = 9563, + [9564] = 9564, + [9565] = 9565, + [9566] = 9566, + [9567] = 9228, + [9568] = 9532, + [9569] = 9569, + [9570] = 9115, + [9571] = 9182, + [9572] = 9322, + [9573] = 9573, + [9574] = 9123, + [9575] = 9171, [9576] = 9576, - [9577] = 9197, - [9578] = 9163, - [9579] = 9150, - [9580] = 9161, - [9581] = 9581, - [9582] = 9582, - [9583] = 9300, - [9584] = 9163, - [9585] = 9150, - [9586] = 9586, - [9587] = 9140, - [9588] = 9161, - [9589] = 9181, - [9590] = 9142, - [9591] = 9187, - [9592] = 9181, - [9593] = 9300, - [9594] = 9208, - [9595] = 9141, - [9596] = 9150, - [9597] = 9270, - [9598] = 9148, - [9599] = 9599, - [9600] = 9143, - [9601] = 9155, - [9602] = 9161, - [9603] = 9140, - [9604] = 9140, - [9605] = 9143, - [9606] = 9148, - [9607] = 9140, - [9608] = 9161, - [9609] = 9140, - [9610] = 9208, - [9611] = 9140, + [9577] = 9310, + [9578] = 9310, + [9579] = 9162, + [9580] = 9372, + [9581] = 9279, + [9582] = 9480, + [9583] = 9286, + [9584] = 9291, + [9585] = 9585, + [9586] = 9142, + [9587] = 9125, + [9588] = 6621, + [9589] = 9333, + [9590] = 9195, + [9591] = 9177, + [9592] = 9149, + [9593] = 9120, + [9594] = 9177, + [9595] = 9286, + [9596] = 9310, + [9597] = 9291, + [9598] = 9132, + [9599] = 9299, + [9600] = 9119, + [9601] = 9321, + [9602] = 9372, + [9603] = 9308, + [9604] = 9333, + [9605] = 9605, + [9606] = 9293, + [9607] = 9326, + [9608] = 9608, + [9609] = 9609, + [9610] = 9246, + [9611] = 9611, [9612] = 9612, - [9613] = 9150, - [9614] = 9140, - [9615] = 9140, - [9616] = 9140, - [9617] = 9155, - [9618] = 9140, - [9619] = 9140, - [9620] = 9140, - [9621] = 9140, - [9622] = 9140, - [9623] = 9140, - [9624] = 9140, - [9625] = 9140, - [9626] = 9140, - [9627] = 9140, - [9628] = 9140, - [9629] = 9140, - [9630] = 9187, - [9631] = 9194, - [9632] = 9143, - [9633] = 9142, - [9634] = 9142, - [9635] = 9142, - [9636] = 9141, - [9637] = 9174, - [9638] = 9142, - [9639] = 9143, - [9640] = 9143, - [9641] = 9283, - [9642] = 9207, - [9643] = 9643, - [9644] = 9644, + [9613] = 9135, + [9614] = 9155, + [9615] = 9333, + [9616] = 9117, + [9617] = 9371, + [9618] = 9618, + [9619] = 9267, + [9620] = 9185, + [9621] = 9343, + [9622] = 9142, + [9623] = 9122, + [9624] = 9125, + [9625] = 9277, + [9626] = 9118, + [9627] = 9125, + [9628] = 9128, + [9629] = 9117, + [9630] = 9248, + [9631] = 9248, + [9632] = 9333, + [9633] = 9132, + [9634] = 9118, + [9635] = 9373, + [9636] = 9228, + [9637] = 9248, + [9638] = 9240, + [9639] = 9129, + [9640] = 9373, + [9641] = 9131, + [9642] = 9371, + [9643] = 9132, + [9644] = 9171, [9645] = 9645, - [9646] = 9646, - [9647] = 9647, - [9648] = 9648, - [9649] = 9649, - [9650] = 9650, - [9651] = 9651, - [9652] = 9652, - [9653] = 9653, - [9654] = 9654, - [9655] = 9655, + [9646] = 9488, + [9647] = 9283, + [9648] = 9193, + [9649] = 9194, + [9650] = 9130, + [9651] = 9195, + [9652] = 9117, + [9653] = 9124, + [9654] = 9133, + [9655] = 9162, [9656] = 9656, - [9657] = 9657, - [9658] = 9657, - [9659] = 9659, - [9660] = 7158, - [9661] = 9661, - [9662] = 9662, - [9663] = 9663, - [9664] = 9652, - [9665] = 9665, - [9666] = 9666, - [9667] = 9667, - [9668] = 9668, - [9669] = 9669, - [9670] = 9670, - [9671] = 9671, - [9672] = 9653, - [9673] = 9652, - [9674] = 9674, - [9675] = 9675, - [9676] = 9676, - [9677] = 9659, - [9678] = 9657, - [9679] = 9679, - [9680] = 9680, - [9681] = 9681, - [9682] = 9665, - [9683] = 9683, - [9684] = 9684, - [9685] = 9648, - [9686] = 9686, - [9687] = 9649, - [9688] = 9688, - [9689] = 9689, - [9690] = 9659, - [9691] = 9691, - [9692] = 9692, - [9693] = 9657, - [9694] = 9694, - [9695] = 9695, - [9696] = 9696, - [9697] = 9697, - [9698] = 1901, - [9699] = 9653, - [9700] = 9649, + [9657] = 9171, + [9658] = 9114, + [9659] = 9142, + [9660] = 9278, + [9661] = 9371, + [9662] = 9144, + [9663] = 9125, + [9664] = 9664, + [9665] = 9157, + [9666] = 9145, + [9667] = 9219, + [9668] = 9180, + [9669] = 9134, + [9670] = 9134, + [9671] = 9240, + [9672] = 9672, + [9673] = 9171, + [9674] = 9133, + [9675] = 9126, + [9676] = 9247, + [9677] = 9250, + [9678] = 9157, + [9679] = 9480, + [9680] = 9271, + [9681] = 9486, + [9682] = 9308, + [9683] = 9488, + [9684] = 9247, + [9685] = 9182, + [9686] = 9371, + [9687] = 9162, + [9688] = 9506, + [9689] = 9118, + [9690] = 9182, + [9691] = 9322, + [9692] = 9149, + [9693] = 9512, + [9694] = 9494, + [9695] = 9248, + [9696] = 9161, + [9697] = 9144, + [9698] = 9532, + [9699] = 9150, + [9700] = 9151, [9701] = 9701, - [9702] = 9702, - [9703] = 9703, - [9704] = 9704, - [9705] = 9705, - [9706] = 9646, - [9707] = 9665, - [9708] = 9659, - [9709] = 9709, - [9710] = 9665, - [9711] = 9667, - [9712] = 9712, - [9713] = 9695, - [9714] = 9714, - [9715] = 9715, - [9716] = 9716, - [9717] = 9717, - [9718] = 9718, - [9719] = 9719, - [9720] = 9720, - [9721] = 9721, - [9722] = 9722, - [9723] = 9723, - [9724] = 9688, - [9725] = 9647, - [9726] = 9726, - [9727] = 9646, - [9728] = 9728, - [9729] = 9729, - [9730] = 9730, - [9731] = 9652, - [9732] = 9653, - [9733] = 9733, - [9734] = 9734, - [9735] = 9735, + [9702] = 9336, + [9703] = 9217, + [9704] = 9372, + [9705] = 9118, + [9706] = 9480, + [9707] = 9486, + [9708] = 9530, + [9709] = 9488, + [9710] = 9207, + [9711] = 9711, + [9712] = 9506, + [9713] = 9119, + [9714] = 9267, + [9715] = 9283, + [9716] = 9512, + [9717] = 9494, + [9718] = 9245, + [9719] = 9532, + [9720] = 9228, + [9721] = 9277, + [9722] = 9119, + [9723] = 9336, + [9724] = 9217, + [9725] = 9322, + [9726] = 9165, + [9727] = 9480, + [9728] = 9486, + [9729] = 9171, + [9730] = 9488, + [9731] = 1876, + [9732] = 9172, + [9733] = 9506, + [9734] = 9371, + [9735] = 9115, [9736] = 9736, - [9737] = 9737, - [9738] = 9738, - [9739] = 9728, - [9740] = 9652, - [9741] = 9738, - [9742] = 9712, - [9743] = 9692, - [9744] = 9650, - [9745] = 9745, - [9746] = 9746, - [9747] = 9747, - [9748] = 9712, - [9749] = 9749, - [9750] = 9749, - [9751] = 7136, - [9752] = 9695, - [9753] = 9667, - [9754] = 9671, - [9755] = 9653, - [9756] = 9663, - [9757] = 9702, + [9737] = 9512, + [9738] = 9494, + [9739] = 9532, + [9740] = 9299, + [9741] = 9136, + [9742] = 9157, + [9743] = 9336, + [9744] = 9217, + [9745] = 9160, + [9746] = 9480, + [9747] = 9486, + [9748] = 9133, + [9749] = 9488, + [9750] = 9750, + [9751] = 9120, + [9752] = 9506, + [9753] = 9157, + [9754] = 9115, + [9755] = 9512, + [9756] = 9494, + [9757] = 9532, [9758] = 9758, [9759] = 9759, - [9760] = 9760, - [9761] = 9669, - [9762] = 9670, - [9763] = 9763, - [9764] = 9695, - [9765] = 9679, - [9766] = 9674, - [9767] = 9675, - [9768] = 9676, - [9769] = 9769, - [9770] = 9671, - [9771] = 9771, - [9772] = 9772, - [9773] = 9773, - [9774] = 9649, - [9775] = 9683, - [9776] = 9665, - [9777] = 9777, - [9778] = 9647, - [9779] = 9779, - [9780] = 9758, - [9781] = 9721, - [9782] = 9696, - [9783] = 9659, - [9784] = 9723, - [9785] = 9671, - [9786] = 9730, - [9787] = 9787, - [9788] = 9701, - [9789] = 9789, - [9790] = 9703, - [9791] = 9695, - [9792] = 9792, - [9793] = 9666, - [9794] = 9715, - [9795] = 9717, - [9796] = 9718, - [9797] = 9719, - [9798] = 9649, - [9799] = 9799, - [9800] = 9712, - [9801] = 9674, - [9802] = 9760, - [9803] = 9652, - [9804] = 9804, - [9805] = 9787, - [9806] = 9728, - [9807] = 9807, - [9808] = 9652, - [9809] = 9760, - [9810] = 9810, - [9811] = 9747, - [9812] = 9666, - [9813] = 9647, - [9814] = 9737, - [9815] = 9749, - [9816] = 9733, - [9817] = 9671, - [9818] = 9712, - [9819] = 9749, - [9820] = 9643, - [9821] = 9650, - [9822] = 9654, - [9823] = 9667, - [9824] = 9824, - [9825] = 9825, - [9826] = 9826, - [9827] = 9827, - [9828] = 9787, - [9829] = 9647, - [9830] = 9830, - [9831] = 9676, - [9832] = 9832, - [9833] = 9663, - [9834] = 9653, - [9835] = 9653, - [9836] = 9667, - [9837] = 9837, - [9838] = 9667, - [9839] = 9787, - [9840] = 9840, - [9841] = 9674, - [9842] = 9675, - [9843] = 9676, - [9844] = 9844, - [9845] = 9652, - [9846] = 9827, - [9847] = 9847, - [9848] = 9848, - [9849] = 9712, - [9850] = 9683, - [9851] = 9679, - [9852] = 9653, - [9853] = 9675, - [9854] = 9646, - [9855] = 9855, - [9856] = 9647, - [9857] = 9857, - [9858] = 9837, - [9859] = 9859, - [9860] = 9860, - [9861] = 9701, - [9862] = 9647, - [9863] = 9703, - [9864] = 9646, - [9865] = 9738, - [9866] = 9717, - [9867] = 9867, - [9868] = 9695, + [9760] = 9117, + [9761] = 9336, + [9762] = 9217, + [9763] = 9118, + [9764] = 9480, + [9765] = 9486, + [9766] = 9130, + [9767] = 9488, + [9768] = 9137, + [9769] = 9126, + [9770] = 9156, + [9771] = 9250, + [9772] = 9512, + [9773] = 9494, + [9774] = 9532, + [9775] = 9775, + [9776] = 9139, + [9777] = 9286, + [9778] = 9336, + [9779] = 9217, + [9780] = 9157, + [9781] = 9480, + [9782] = 9486, + [9783] = 9168, + [9784] = 9488, + [9785] = 9171, + [9786] = 9321, + [9787] = 9130, + [9788] = 9136, + [9789] = 9512, + [9790] = 9494, + [9791] = 9532, + [9792] = 9136, + [9793] = 7821, + [9794] = 9138, + [9795] = 9336, + [9796] = 9217, + [9797] = 9117, + [9798] = 9480, + [9799] = 9486, + [9800] = 9142, + [9801] = 9488, + [9802] = 9138, + [9803] = 9133, + [9804] = 9180, + [9805] = 9267, + [9806] = 9512, + [9807] = 9494, + [9808] = 9532, + [9809] = 9809, + [9810] = 9150, + [9811] = 9136, + [9812] = 9336, + [9813] = 9217, + [9814] = 9185, + [9815] = 9480, + [9816] = 9486, + [9817] = 9278, + [9818] = 9488, + [9819] = 9138, + [9820] = 9293, + [9821] = 9494, + [9822] = 9532, + [9823] = 9219, + [9824] = 9142, + [9825] = 9336, + [9826] = 9217, + [9827] = 9750, + [9828] = 9480, + [9829] = 9135, + [9830] = 9488, + [9831] = 9373, + [9832] = 9162, + [9833] = 9494, + [9834] = 9118, + [9835] = 9336, + [9836] = 9480, + [9837] = 9488, + [9838] = 9494, + [9839] = 9336, + [9840] = 9480, + [9841] = 9488, + [9842] = 9494, + [9843] = 9336, + [9844] = 9480, + [9845] = 9488, + [9846] = 9494, + [9847] = 9336, + [9848] = 9480, + [9849] = 9488, + [9850] = 9494, + [9851] = 9336, + [9852] = 9494, + [9853] = 9336, + [9854] = 9494, + [9855] = 9336, + [9856] = 9494, + [9857] = 9336, + [9858] = 9494, + [9859] = 9336, + [9860] = 9494, + [9861] = 9336, + [9862] = 9494, + [9863] = 9336, + [9864] = 9494, + [9865] = 9336, + [9866] = 9494, + [9867] = 9336, + [9868] = 9182, [9869] = 9869, - [9870] = 9728, - [9871] = 9671, - [9872] = 9872, - [9873] = 9873, + [9870] = 9271, + [9871] = 9357, + [9872] = 9369, + [9873] = 9245, [9874] = 9874, - [9875] = 9844, - [9876] = 9679, - [9877] = 9695, - [9878] = 9760, - [9879] = 9787, - [9880] = 9657, - [9881] = 9881, - [9882] = 9882, - [9883] = 9735, - [9884] = 9884, - [9885] = 9667, - [9886] = 9886, - [9887] = 9663, - [9888] = 9749, - [9889] = 9758, - [9890] = 9890, + [9875] = 9122, + [9876] = 9125, + [9877] = 9283, + [9878] = 9142, + [9879] = 9161, + [9880] = 9134, + [9881] = 9611, + [9882] = 9157, + [9883] = 9120, + [9884] = 9343, + [9885] = 9291, + [9886] = 9142, + [9887] = 9530, + [9888] = 9888, + [9889] = 9170, + [9890] = 9371, [9891] = 9891, - [9892] = 9892, - [9893] = 9893, - [9894] = 9717, - [9895] = 9676, - [9896] = 9686, - [9897] = 9718, - [9898] = 9779, - [9899] = 9792, - [9900] = 9719, - [9901] = 9683, + [9892] = 9193, + [9893] = 9177, + [9894] = 9122, + [9895] = 9125, + [9896] = 9896, + [9897] = 9308, + [9898] = 9898, + [9899] = 9899, + [9900] = 9278, + [9901] = 9219, [9902] = 9902, - [9903] = 9903, - [9904] = 9684, - [9905] = 9905, - [9906] = 9695, - [9907] = 9760, + [9903] = 9176, + [9904] = 9122, + [9905] = 9246, + [9906] = 9162, + [9907] = 9132, [9908] = 9908, - [9909] = 9738, - [9910] = 9749, - [9911] = 9718, - [9912] = 9701, - [9913] = 9643, - [9914] = 9703, - [9915] = 9647, - [9916] = 9657, - [9917] = 9717, - [9918] = 9655, - [9919] = 9646, - [9920] = 9760, - [9921] = 9810, - [9922] = 9719, - [9923] = 9679, - [9924] = 9924, - [9925] = 9643, - [9926] = 9728, - [9927] = 9733, - [9928] = 9653, - [9929] = 9684, - [9930] = 9867, - [9931] = 9715, - [9932] = 9667, - [9933] = 9663, - [9934] = 9825, - [9935] = 9935, - [9936] = 9671, - [9937] = 9937, - [9938] = 9726, + [9909] = 9909, + [9910] = 9343, + [9911] = 9911, + [9912] = 9267, + [9913] = 9326, + [9914] = 9914, + [9915] = 9283, + [9916] = 9125, + [9917] = 9308, + [9918] = 9277, + [9919] = 9919, + [9920] = 9149, + [9921] = 9150, + [9922] = 9151, + [9923] = 9402, + [9924] = 9185, + [9925] = 9134, + [9926] = 9926, + [9927] = 9131, + [9928] = 9228, + [9929] = 9157, + [9930] = 9119, + [9931] = 9119, + [9932] = 9177, + [9933] = 9933, + [9934] = 9888, + [9935] = 9132, + [9936] = 9322, + [9937] = 9124, + [9938] = 9171, [9939] = 9939, - [9940] = 9676, - [9941] = 9666, - [9942] = 9696, - [9943] = 9671, + [9940] = 9160, + [9941] = 6675, + [9942] = 9119, + [9943] = 9373, [9944] = 9944, - [9945] = 9666, - [9946] = 9683, - [9947] = 9867, - [9948] = 9948, - [9949] = 9737, - [9950] = 9844, - [9951] = 9696, - [9952] = 9697, - [9953] = 9953, - [9954] = 9747, - [9955] = 9646, - [9956] = 9716, - [9957] = 9701, - [9958] = 9759, - [9959] = 9703, - [9960] = 9747, - [9961] = 9726, - [9962] = 9717, - [9963] = 7135, - [9964] = 9667, - [9965] = 9726, - [9966] = 9667, - [9967] = 9824, - [9968] = 9692, - [9969] = 9824, - [9970] = 9655, - [9971] = 9702, - [9972] = 9735, - [9973] = 9696, - [9974] = 9903, - [9975] = 9721, - [9976] = 9650, - [9977] = 9735, - [9978] = 9663, - [9979] = 9723, - [9980] = 9721, - [9981] = 9652, - [9982] = 9982, - [9983] = 9715, - [9984] = 9676, - [9985] = 9695, + [9945] = 9114, + [9946] = 9130, + [9947] = 9207, + [9948] = 9162, + [9949] = 9271, + [9950] = 9357, + [9951] = 9369, + [9952] = 6579, + [9953] = 9162, + [9954] = 9954, + [9955] = 9530, + [9956] = 9888, + [9957] = 9124, + [9958] = 9135, + [9959] = 9959, + [9960] = 9271, + [9961] = 9357, + [9962] = 9369, + [9963] = 9168, + [9964] = 9964, + [9965] = 9530, + [9966] = 9888, + [9967] = 9117, + [9968] = 9333, + [9969] = 9162, + [9970] = 9271, + [9971] = 9357, + [9972] = 9369, + [9973] = 9126, + [9974] = 9114, + [9975] = 9530, + [9976] = 9888, + [9977] = 9343, + [9978] = 9194, + [9979] = 9277, + [9980] = 9357, + [9981] = 9369, + [9982] = 9115, + [9983] = 9277, + [9984] = 9530, + [9985] = 9888, [9986] = 9986, [9987] = 9987, - [9988] = 9771, - [9989] = 9675, - [9990] = 9683, - [9991] = 9695, - [9992] = 9992, - [9993] = 9726, - [9994] = 9824, - [9995] = 9646, - [9996] = 9837, - [9997] = 9763, - [9998] = 9760, - [9999] = 9837, - [10000] = 9701, - [10001] = 9649, - [10002] = 9703, + [9988] = 9357, + [9989] = 9369, + [9990] = 9157, + [9991] = 9991, + [9992] = 9530, + [9993] = 9888, + [9994] = 9347, + [9995] = 9156, + [9996] = 9357, + [9997] = 9369, + [9998] = 9170, + [9999] = 9136, + [10000] = 9530, + [10001] = 9888, + [10002] = 9333, [10003] = 10003, - [10004] = 9772, - [10005] = 9717, - [10006] = 9735, - [10007] = 9758, - [10008] = 9825, - [10009] = 10009, - [10010] = 10010, - [10011] = 9671, - [10012] = 9738, - [10013] = 10013, - [10014] = 9696, - [10015] = 9663, - [10016] = 9679, - [10017] = 9758, - [10018] = 10018, - [10019] = 9844, - [10020] = 9701, - [10021] = 9663, - [10022] = 10022, - [10023] = 9695, - [10024] = 9859, - [10025] = 9676, - [10026] = 9653, - [10027] = 9652, - [10028] = 9652, - [10029] = 9837, - [10030] = 10030, - [10031] = 9683, - [10032] = 9653, - [10033] = 9787, - [10034] = 9844, - [10035] = 10035, - [10036] = 9686, - [10037] = 9671, - [10038] = 9643, - [10039] = 9653, - [10040] = 9650, - [10041] = 9701, - [10042] = 10042, - [10043] = 9703, - [10044] = 9721, - [10045] = 10045, - [10046] = 9651, - [10047] = 9669, - [10048] = 9730, - [10049] = 9987, - [10050] = 9670, - [10051] = 9760, - [10052] = 10035, - [10053] = 9738, - [10054] = 9663, - [10055] = 9657, - [10056] = 7091, - [10057] = 9676, - [10058] = 9695, - [10059] = 9737, - [10060] = 9779, - [10061] = 9683, - [10062] = 9847, - [10063] = 10063, - [10064] = 9760, - [10065] = 9674, - [10066] = 9703, - [10067] = 9903, - [10068] = 9675, - [10069] = 9676, - [10070] = 9647, - [10071] = 9787, - [10072] = 9792, - [10073] = 9837, - [10074] = 9726, - [10075] = 9647, - [10076] = 9663, - [10077] = 9721, - [10078] = 9779, - [10079] = 9676, - [10080] = 9646, - [10081] = 9667, - [10082] = 9683, - [10083] = 9792, - [10084] = 9652, - [10085] = 9827, - [10086] = 10086, - [10087] = 9703, - [10088] = 10088, - [10089] = 9760, - [10090] = 10090, - [10091] = 10091, - [10092] = 9683, - [10093] = 9648, - [10094] = 10094, - [10095] = 10042, - [10096] = 9648, - [10097] = 9663, - [10098] = 9892, - [10099] = 9691, - [10100] = 9676, - [10101] = 9735, - [10102] = 9683, - [10103] = 10103, - [10104] = 9649, - [10105] = 9844, - [10106] = 9703, - [10107] = 10107, - [10108] = 10108, - [10109] = 9679, - [10110] = 9730, - [10111] = 9654, - [10112] = 9723, - [10113] = 9663, - [10114] = 9779, - [10115] = 9653, - [10116] = 9683, - [10117] = 9758, - [10118] = 9703, - [10119] = 9655, - [10120] = 9792, - [10121] = 9684, - [10122] = 9696, - [10123] = 9663, - [10124] = 9683, - [10125] = 9686, - [10126] = 9703, - [10127] = 9733, - [10128] = 9654, - [10129] = 10022, - [10130] = 9874, - [10131] = 9663, - [10132] = 9683, - [10133] = 9703, - [10134] = 9837, - [10135] = 9771, - [10136] = 1890, - [10137] = 9663, - [10138] = 9683, - [10139] = 9703, - [10140] = 9772, - [10141] = 9683, - [10142] = 9703, - [10143] = 9657, - [10144] = 9683, - [10145] = 9703, - [10146] = 9723, - [10147] = 9683, - [10148] = 9703, - [10149] = 9697, - [10150] = 9683, - [10151] = 9703, - [10152] = 9683, - [10153] = 9703, - [10154] = 9683, - [10155] = 9703, - [10156] = 9683, - [10157] = 9703, - [10158] = 9701, - [10159] = 9657, - [10160] = 9789, - [10161] = 10086, - [10162] = 10162, - [10163] = 10163, - [10164] = 10164, - [10165] = 10165, - [10166] = 10166, - [10167] = 9671, - [10168] = 9674, - [10169] = 9675, - [10170] = 9892, - [10171] = 10171, - [10172] = 9703, - [10173] = 9702, - [10174] = 9844, - [10175] = 10045, - [10176] = 9992, - [10177] = 9646, - [10178] = 9810, - [10179] = 10090, - [10180] = 9667, - [10181] = 10181, - [10182] = 9720, - [10183] = 9738, - [10184] = 9726, - [10185] = 9665, - [10186] = 10186, - [10187] = 10010, - [10188] = 10188, - [10189] = 9695, - [10190] = 10190, - [10191] = 10191, - [10192] = 9987, - [10193] = 9652, - [10194] = 9760, - [10195] = 9810, - [10196] = 9810, - [10197] = 9763, - [10198] = 9695, - [10199] = 9763, - [10200] = 9696, - [10201] = 10181, - [10202] = 9697, - [10203] = 10203, - [10204] = 9758, - [10205] = 9738, - [10206] = 9832, - [10207] = 10010, - [10208] = 9760, - [10209] = 9735, - [10210] = 9649, - [10211] = 9653, - [10212] = 10212, - [10213] = 10213, - [10214] = 9721, - [10215] = 9671, - [10216] = 10216, - [10217] = 9696, - [10218] = 9686, - [10219] = 9759, - [10220] = 9666, - [10221] = 9652, - [10222] = 9779, - [10223] = 9787, - [10224] = 9667, - [10225] = 10225, - [10226] = 9726, - [10227] = 9884, - [10228] = 10228, - [10229] = 9779, - [10230] = 9758, - [10231] = 9792, - [10232] = 9666, - [10233] = 9652, - [10234] = 10091, - [10235] = 10235, - [10236] = 9760, - [10237] = 9653, - [10238] = 9810, - [10239] = 10239, - [10240] = 10086, - [10241] = 10162, - [10242] = 10163, - [10243] = 9643, - [10244] = 10165, - [10245] = 10166, - [10246] = 10246, - [10247] = 9666, - [10248] = 10171, - [10249] = 9692, - [10250] = 9758, - [10251] = 9653, - [10252] = 10045, - [10253] = 9992, - [10254] = 9810, - [10255] = 9671, - [10256] = 9720, - [10257] = 10257, - [10258] = 9787, - [10259] = 9760, - [10260] = 10203, - [10261] = 9832, - [10262] = 10042, - [10263] = 10263, - [10264] = 9789, - [10265] = 10086, - [10266] = 10163, - [10267] = 9696, - [10268] = 10165, - [10269] = 10166, - [10270] = 9679, - [10271] = 10271, - [10272] = 10171, - [10273] = 9647, - [10274] = 9692, - [10275] = 9651, - [10276] = 10045, - [10277] = 9992, - [10278] = 9716, - [10279] = 9720, - [10280] = 9738, - [10281] = 9721, - [10282] = 9667, - [10283] = 10203, - [10284] = 9832, - [10285] = 9723, - [10286] = 9715, - [10287] = 9789, - [10288] = 10086, - [10289] = 10163, - [10290] = 9847, - [10291] = 10165, - [10292] = 10166, - [10293] = 9987, - [10294] = 9702, - [10295] = 10171, - [10296] = 9903, - [10297] = 9652, - [10298] = 9652, - [10299] = 10045, - [10300] = 9992, - [10301] = 9720, - [10302] = 9649, - [10303] = 9792, - [10304] = 9679, - [10305] = 10203, - [10306] = 9832, - [10307] = 9696, - [10308] = 9789, - [10309] = 10163, - [10310] = 9646, - [10311] = 10165, - [10312] = 9837, - [10313] = 10313, - [10314] = 10171, - [10315] = 9653, - [10316] = 9684, - [10317] = 10045, - [10318] = 9992, - [10319] = 9720, - [10320] = 9735, - [10321] = 9653, - [10322] = 10322, - [10323] = 10203, - [10324] = 9832, - [10325] = 9666, - [10326] = 9789, - [10327] = 10163, - [10328] = 9695, - [10329] = 10165, - [10330] = 9647, - [10331] = 9684, - [10332] = 9671, - [10333] = 9691, - [10334] = 10045, - [10335] = 9992, - [10336] = 9720, - [10337] = 9827, - [10338] = 9667, - [10339] = 9735, - [10340] = 10203, - [10341] = 9832, - [10342] = 9733, - [10343] = 9789, - [10344] = 10163, - [10345] = 10345, - [10346] = 10165, - [10347] = 9771, - [10348] = 9837, - [10349] = 9772, - [10350] = 10090, - [10351] = 10045, - [10352] = 9992, - [10353] = 9720, - [10354] = 10354, - [10355] = 9671, - [10356] = 9779, - [10357] = 10203, - [10358] = 9832, - [10359] = 9657, - [10360] = 9789, - [10361] = 10163, - [10362] = 9792, - [10363] = 10165, - [10364] = 9716, - [10365] = 10091, - [10366] = 9760, - [10367] = 9837, - [10368] = 10045, - [10369] = 9992, - [10370] = 9720, - [10371] = 9648, - [10372] = 9657, - [10373] = 9844, - [10374] = 10203, - [10375] = 9832, - [10376] = 9837, - [10377] = 9789, - [10378] = 10163, - [10379] = 9695, - [10380] = 10165, - [10381] = 10381, - [10382] = 10382, - [10383] = 9992, - [10384] = 9720, - [10385] = 10385, - [10386] = 9760, - [10387] = 10203, - [10388] = 9832, - [10389] = 9684, - [10390] = 9789, - [10391] = 10163, - [10392] = 9697, - [10393] = 10165, - [10394] = 9651, - [10395] = 9696, - [10396] = 9992, - [10397] = 9720, - [10398] = 9908, - [10399] = 10203, - [10400] = 9832, - [10401] = 9654, - [10402] = 9789, - [10403] = 10163, - [10404] = 9844, - [10405] = 10165, - [10406] = 9652, - [10407] = 9738, - [10408] = 9992, - [10409] = 9720, - [10410] = 10203, - [10411] = 9832, - [10412] = 9789, - [10413] = 9891, - [10414] = 10165, - [10415] = 9787, - [10416] = 9992, - [10417] = 10203, - [10418] = 9789, - [10419] = 10165, - [10420] = 9992, - [10421] = 10203, - [10422] = 9789, - [10423] = 10165, - [10424] = 9992, - [10425] = 10203, - [10426] = 9789, - [10427] = 10165, - [10428] = 9992, - [10429] = 10203, - [10430] = 9789, - [10431] = 9992, - [10432] = 10203, - [10433] = 9789, - [10434] = 9992, - [10435] = 10203, - [10436] = 9789, - [10437] = 9992, - [10438] = 10203, - [10439] = 9789, - [10440] = 9992, - [10441] = 10203, - [10442] = 9992, - [10443] = 10203, - [10444] = 9992, - [10445] = 10203, - [10446] = 9992, - [10447] = 10203, - [10448] = 10448, - [10449] = 9679, - [10450] = 10162, - [10451] = 9729, - [10452] = 10452, - [10453] = 9884, - [10454] = 9696, - [10455] = 9697, - [10456] = 9652, - [10457] = 9825, - [10458] = 9653, - [10459] = 9726, - [10460] = 9655, - [10461] = 10461, - [10462] = 9771, - [10463] = 9787, - [10464] = 9810, - [10465] = 9844, - [10466] = 9697, - [10467] = 9684, - [10468] = 10468, - [10469] = 10469, - [10470] = 10470, - [10471] = 10471, - [10472] = 9654, - [10473] = 9721, - [10474] = 9723, - [10475] = 10162, - [10476] = 10181, - [10477] = 9643, - [10478] = 9652, - [10479] = 10479, - [10480] = 9653, - [10481] = 10481, - [10482] = 10482, - [10483] = 9691, - [10484] = 9908, - [10485] = 9891, - [10486] = 10479, - [10487] = 10487, - [10488] = 9837, - [10489] = 9759, - [10490] = 9696, - [10491] = 9703, - [10492] = 10492, - [10493] = 10493, - [10494] = 10494, - [10495] = 9669, - [10496] = 9670, - [10497] = 9844, - [10498] = 10498, - [10499] = 10499, - [10500] = 9844, - [10501] = 9738, - [10502] = 9671, - [10503] = 10503, - [10504] = 10504, - [10505] = 8165, - [10506] = 9696, - [10507] = 9679, - [10508] = 10508, - [10509] = 9697, - [10510] = 10510, - [10511] = 9908, - [10512] = 9686, - [10513] = 10162, - [10514] = 9729, - [10515] = 10452, - [10516] = 9657, - [10517] = 9874, - [10518] = 10181, - [10519] = 10479, - [10520] = 10090, - [10521] = 9643, - [10522] = 9653, - [10523] = 10162, - [10524] = 9729, - [10525] = 10452, - [10526] = 10526, - [10527] = 9674, - [10528] = 10181, - [10529] = 10479, - [10530] = 9837, - [10531] = 10531, - [10532] = 9684, - [10533] = 10162, - [10534] = 9729, - [10535] = 10452, - [10536] = 9691, - [10537] = 9844, - [10538] = 10181, - [10539] = 10479, - [10540] = 9825, - [10541] = 10452, - [10542] = 9884, - [10543] = 9729, - [10544] = 10452, - [10545] = 9657, - [10546] = 9646, - [10547] = 10181, - [10548] = 10479, - [10549] = 9892, - [10550] = 10165, - [10551] = 9729, - [10552] = 10452, - [10553] = 10553, - [10554] = 9717, - [10555] = 10181, - [10556] = 10479, - [10557] = 10557, - [10558] = 9721, - [10559] = 9729, - [10560] = 10452, - [10561] = 9759, - [10562] = 9696, - [10563] = 10181, - [10564] = 10479, - [10565] = 9759, - [10566] = 9648, - [10567] = 9729, - [10568] = 10452, - [10569] = 9663, - [10570] = 9652, - [10571] = 10181, - [10572] = 10479, - [10573] = 9671, - [10574] = 9726, - [10575] = 9702, - [10576] = 9653, - [10577] = 10181, - [10578] = 10479, - [10579] = 10010, - [10580] = 9874, - [10581] = 9659, - [10582] = 10582, - [10583] = 10479, - [10584] = 9683, - [10585] = 9686, - [10586] = 9726, - [10587] = 9772, - [10588] = 10479, - [10589] = 9643, - [10590] = 9717, - [10591] = 10479, - [10592] = 9718, - [10593] = 10479, - [10594] = 9719, - [10595] = 10479, - [10596] = 10163, - [10597] = 10479, - [10598] = 10042, - [10599] = 10479, - [10600] = 9723, - [10601] = 10479, - [10602] = 9667, - [10603] = 10479, - [10604] = 9702, - [10605] = 10479, - [10606] = 10606, - [10607] = 10479, - [10608] = 9810, - [10609] = 10479, - [10610] = 10203, - [10611] = 10479, - [10612] = 9686, - [10613] = 9847, - [10614] = 10166, - [10615] = 9891, - [10616] = 10498, - [10617] = 9697, - [10618] = 9728, - [10619] = 9716, - [10620] = 9726, - [10621] = 9652, - [10622] = 9671, - [10623] = 9721, - [10624] = 9702, - [10625] = 10239, - [10626] = 9655, - [10627] = 9723, - [10628] = 10628, - [10629] = 9652, - [10630] = 10498, - [10631] = 10239, - [10632] = 9665, - [10633] = 10498, - [10634] = 10239, - [10635] = 9730, - [10636] = 10498, - [10637] = 10239, - [10638] = 10638, - [10639] = 10498, - [10640] = 10239, - [10641] = 9653, - [10642] = 10498, - [10643] = 10239, - [10644] = 9686, - [10645] = 10498, - [10646] = 10239, - [10647] = 10171, - [10648] = 10498, - [10649] = 10239, - [10650] = 10091, - [10651] = 10498, - [10652] = 10239, - [10653] = 10653, - [10654] = 10498, - [10655] = 10239, - [10656] = 9657, - [10657] = 10498, - [10658] = 10239, - [10659] = 9691, - [10660] = 10239, - [10661] = 10239, - [10662] = 10239, - [10663] = 10239, - [10664] = 10239, - [10665] = 10239, - [10666] = 10239, - [10667] = 10239, - [10668] = 10239, - [10669] = 10239, - [10670] = 10239, - [10671] = 9737, - [10672] = 9657, - [10673] = 9810, - [10674] = 9702, - [10675] = 9779, - [10676] = 9671, - [10677] = 9867, - [10678] = 9738, - [10679] = 9671, - [10680] = 9792, - [10681] = 9827, - [10682] = 9944, - [10683] = 9944, - [10684] = 9944, - [10685] = 9944, - [10686] = 9944, - [10687] = 9944, - [10688] = 9944, - [10689] = 9944, - [10690] = 9944, - [10691] = 9944, - [10692] = 9944, - [10693] = 9789, + [10004] = 9357, + [10005] = 9369, + [10006] = 9117, + [10007] = 9250, + [10008] = 9530, + [10009] = 9888, + [10010] = 9486, + [10011] = 9371, + [10012] = 10012, + [10013] = 9115, + [10014] = 9530, + [10015] = 9888, + [10016] = 9506, + [10017] = 9126, + [10018] = 9139, + [10019] = 9888, + [10020] = 9135, + [10021] = 9888, + [10022] = 9246, + [10023] = 9888, + [10024] = 9142, + [10025] = 9888, + [10026] = 9185, + [10027] = 9888, + [10028] = 9137, + [10029] = 9888, + [10030] = 9125, + [10031] = 9888, + [10032] = 9182, + [10033] = 9888, + [10034] = 10034, + [10035] = 9888, + [10036] = 9240, + [10037] = 9888, + [10038] = 9131, + [10039] = 9888, + [10040] = 9122, + [10041] = 9888, + [10042] = 9125, + [10043] = 9888, + [10044] = 9181, + [10045] = 9939, + [10046] = 9236, + [10047] = 9181, + [10048] = 9939, + [10049] = 9373, + [10050] = 9181, + [10051] = 9939, + [10052] = 9155, + [10053] = 9181, + [10054] = 9939, + [10055] = 9193, + [10056] = 9181, + [10057] = 9939, + [10058] = 9322, + [10059] = 9181, + [10060] = 9939, + [10061] = 9171, + [10062] = 9181, + [10063] = 9939, + [10064] = 9278, + [10065] = 9181, + [10066] = 9939, + [10067] = 9219, + [10068] = 9181, + [10069] = 9939, + [10070] = 9194, + [10071] = 9939, + [10072] = 9939, + [10073] = 9939, + [10074] = 9939, + [10075] = 9939, + [10076] = 9939, + [10077] = 9939, + [10078] = 9939, + [10079] = 9939, + [10080] = 9939, + [10081] = 9939, + [10082] = 9939, + [10083] = 9939, + [10084] = 10084, + [10085] = 9159, + [10086] = 9170, + [10087] = 9171, + [10088] = 9371, + [10089] = 10089, + [10090] = 9119, + [10091] = 9195, + [10092] = 9157, + [10093] = 9229, + [10094] = 9229, + [10095] = 9229, + [10096] = 9229, + [10097] = 9229, + [10098] = 9229, + [10099] = 9229, + [10100] = 9229, + [10101] = 9229, + [10102] = 9117, }; static TSCharacterRange sym_identifier_character_set_2[] = { @@ -15667,19737 +15076,11340 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(523); ADVANCE_MAP( - '!', 1137, - '"', 1347, - '#', 804, - '$', 742, - '%', 1161, - '&', 1170, - '\'', 1338, - '(', 1068, - ')', 1072, - '*', 1157, - '+', 1151, - ',', 1071, - '-', 1140, - '.', 1311, - '/', 1159, - '0', 1320, - ':', 1242, - ';', 1190, - '<', 1180, - '=', 1216, - '>', 1689, - '?', 1243, - 'F', 1389, - 'L', 1361, - 'R', 1364, - 'T', 1397, - 'U', 1365, - '[', 1212, + '!', 596, + '"', 718, + '#', 437, + '$', 405, + '%', 620, + '&', 629, + '\'', 709, + '(', 527, + ')', 531, + '*', 616, + '+', 610, + ',', 530, + '-', 599, + '.', 682, + '/', 618, + '0', 691, + ':', 665, + ';', 649, + '<', 639, + '=', 661, + '>', 831, + '?', 666, + 'F', 758, + 'L', 732, + 'R', 735, + 'T', 762, + 'U', 736, + '[', 657, '\\', 2, - ']', 1214, - '^', 1167, - '_', 1390, - 'a', 1532, - 'b', 1502, - 'c', 1489, - 'd', 1451, - 'f', 1415, - 'i', 1543, - 'l', 1567, - 'm', 1418, - 'n', 1556, - 'o', 1591, - 'p', 1627, - 'r', 1453, - 's', 1493, - 't', 1491, - 'u', 1368, - 'v', 1557, - 'x', 1566, - '{', 1200, - '|', 1164, - '}', 1201, - '~', 1138, + ']', 659, + '^', 626, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 767, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 't', 809, + 'u', 739, + 'v', 801, + '{', 653, + '|', 623, + '}', 654, + '~', 597, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1040); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + lookahead == ' ') SKIP(495); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(694); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 1: - if (lookahead == '\n') SKIP(469); + if (lookahead == '\n') SKIP(257); END_STATE(); case 2: - if (lookahead == '\n') SKIP(469); + if (lookahead == '\n') SKIP(257); if (lookahead == '\r') SKIP(1); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 3: - if (lookahead == '\n') SKIP(489); + if (lookahead == '\n') SKIP(274); END_STATE(); case 4: - if (lookahead == '\n') SKIP(489); + if (lookahead == '\n') SKIP(274); if (lookahead == '\r') SKIP(3); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 5: - if (lookahead == '\n') SKIP(488); + if (lookahead == '\n') SKIP(273); END_STATE(); case 6: - if (lookahead == '\n') SKIP(488); + if (lookahead == '\n') SKIP(273); if (lookahead == '\r') SKIP(5); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 7: - if (lookahead == '\n') SKIP(490); + if (lookahead == '\n') SKIP(275); END_STATE(); case 8: - if (lookahead == '\n') SKIP(490); + if (lookahead == '\n') SKIP(275); if (lookahead == '\r') SKIP(7); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 9: - if (lookahead == '\n') SKIP(497); + if (lookahead == '\n') SKIP(258); END_STATE(); case 10: - if (lookahead == '\n') SKIP(497); + if (lookahead == '\n') SKIP(258); if (lookahead == '\r') SKIP(9); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 11: - if (lookahead == '\n') SKIP(470); + if (lookahead == '\n') SKIP(259); END_STATE(); case 12: - if (lookahead == '\n') SKIP(470); + if (lookahead == '\n') SKIP(259); if (lookahead == '\r') SKIP(11); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 13: - if (lookahead == '\n') SKIP(471); + if (lookahead == '\n') SKIP(278); END_STATE(); case 14: - if (lookahead == '\n') SKIP(471); + if (lookahead == '\n') SKIP(278); if (lookahead == '\r') SKIP(13); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 15: - if (lookahead == '\n') SKIP(493); + if (lookahead == '\n') SKIP(263); END_STATE(); case 16: - if (lookahead == '\n') SKIP(493); + if (lookahead == '\n') SKIP(263); if (lookahead == '\r') SKIP(15); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 17: - if (lookahead == '\n') SKIP(473); + if (lookahead == '\n') SKIP(266); END_STATE(); case 18: - if (lookahead == '\n') SKIP(473); + if (lookahead == '\n') SKIP(266); if (lookahead == '\r') SKIP(17); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 19: - if (lookahead == '\n') SKIP(499); + if (lookahead == '\n') SKIP(267); END_STATE(); case 20: - if (lookahead == '\n') SKIP(499); + if (lookahead == '\n') SKIP(267); if (lookahead == '\r') SKIP(19); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 21: - if (lookahead == '\n') SKIP(475); + if (lookahead == '\n') SKIP(268); END_STATE(); case 22: - if (lookahead == '\n') SKIP(475); + if (lookahead == '\n') SKIP(268); if (lookahead == '\r') SKIP(21); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 23: - if (lookahead == '\n') SKIP(480); + if (lookahead == '\n') SKIP(279); END_STATE(); case 24: - if (lookahead == '\n') SKIP(480); + if (lookahead == '\n') SKIP(279); if (lookahead == '\r') SKIP(23); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 25: - if (lookahead == '\n') SKIP(478); + if (lookahead == '\n') SKIP(319); END_STATE(); case 26: - if (lookahead == '\n') SKIP(478); + if (lookahead == '\n') SKIP(319); if (lookahead == '\r') SKIP(25); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 27: - if (lookahead == '\n') SKIP(481); + if (lookahead == '\n') SKIP(383); END_STATE(); case 28: - if (lookahead == '\n') SKIP(481); + if (lookahead == '\n') SKIP(383); if (lookahead == '\r') SKIP(27); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 29: - if (lookahead == '\n') SKIP(482); + if (lookahead == '\n') SKIP(381); END_STATE(); case 30: - if (lookahead == '\n') SKIP(482); + if (lookahead == '\n') SKIP(381); if (lookahead == '\r') SKIP(29); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 31: - if (lookahead == '\n') SKIP(500); + if (lookahead == '\n') SKIP(379); END_STATE(); case 32: - if (lookahead == '\n') SKIP(500); + if (lookahead == '\n') SKIP(379); if (lookahead == '\r') SKIP(31); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 33: - if (lookahead == '\n') SKIP(495); + if (lookahead == '\n') SKIP(271); END_STATE(); case 34: - if (lookahead == '\n') SKIP(495); + if (lookahead == '\n') SKIP(271); if (lookahead == '\r') SKIP(33); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 35: - if (lookahead == '\n') SKIP(657); + if (lookahead == '\n') SKIP(387); END_STATE(); case 36: - if (lookahead == '\n') SKIP(657); + if (lookahead == '\n') SKIP(387); if (lookahead == '\r') SKIP(35); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 37: - if (lookahead == '\n') SKIP(603); + if (lookahead == '\n') SKIP(296); END_STATE(); case 38: - if (lookahead == '\n') SKIP(603); + if (lookahead == '\n') SKIP(296); if (lookahead == '\r') SKIP(37); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 39: - if (lookahead == '\n') SKIP(655); + if (lookahead == '\n') SKIP(292); END_STATE(); case 40: - if (lookahead == '\n') SKIP(655); + if (lookahead == '\n') SKIP(292); if (lookahead == '\r') SKIP(39); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 41: - if (lookahead == '\n') SKIP(658); + if (lookahead == '\n') SKIP(320); END_STATE(); case 42: - if (lookahead == '\n') SKIP(658); + if (lookahead == '\n') SKIP(320); if (lookahead == '\r') SKIP(41); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 43: - if (lookahead == '\n') SKIP(486); + if (lookahead == '\n') SKIP(308); END_STATE(); case 44: - if (lookahead == '\n') SKIP(486); + if (lookahead == '\n') SKIP(308); if (lookahead == '\r') SKIP(43); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 45: - if (lookahead == '\n') SKIP(697); + if (lookahead == '\n') SKIP(289); END_STATE(); case 46: - if (lookahead == '\n') SKIP(697); + if (lookahead == '\n') SKIP(289); if (lookahead == '\r') SKIP(45); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 47: - if (lookahead == '\n') SKIP(501); + if (lookahead == '\n') SKIP(297); END_STATE(); case 48: - if (lookahead == '\n') SKIP(501); + if (lookahead == '\n') SKIP(297); if (lookahead == '\r') SKIP(47); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 49: - if (lookahead == '\n') SKIP(494); + if (lookahead == '\n') SKIP(361); END_STATE(); case 50: - if (lookahead == '\n') SKIP(494); + if (lookahead == '\n') SKIP(361); if (lookahead == '\r') SKIP(49); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 51: - if (lookahead == '\n') SKIP(496); + if (lookahead == '\n') SKIP(282); END_STATE(); case 52: - if (lookahead == '\n') SKIP(496); + if (lookahead == '\n') SKIP(282); if (lookahead == '\r') SKIP(51); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 53: - if (lookahead == '\n') SKIP(517); + if (lookahead == '\n') SKIP(307); END_STATE(); case 54: - if (lookahead == '\n') SKIP(517); + if (lookahead == '\n') SKIP(307); if (lookahead == '\r') SKIP(53); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 55: - if (lookahead == '\n') SKIP(498); + if (lookahead == '\n') SKIP(332); END_STATE(); case 56: - if (lookahead == '\n') SKIP(498); + if (lookahead == '\n') SKIP(332); if (lookahead == '\r') SKIP(55); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 57: - if (lookahead == '\n') SKIP(512); + if (lookahead == '\n') SKIP(316); END_STATE(); case 58: - if (lookahead == '\n') SKIP(512); + if (lookahead == '\n') SKIP(316); if (lookahead == '\r') SKIP(57); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 59: - if (lookahead == '\n') SKIP(610); + if (lookahead == '\n') SKIP(333); END_STATE(); case 60: - if (lookahead == '\n') SKIP(610); + if (lookahead == '\n') SKIP(333); if (lookahead == '\r') SKIP(59); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 61: - if (lookahead == '\n') SKIP(531); + if (lookahead == '\n') SKIP(284); END_STATE(); case 62: - if (lookahead == '\n') SKIP(531); + if (lookahead == '\n') SKIP(284); if (lookahead == '\r') SKIP(61); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 63: - if (lookahead == '\n') SKIP(604); + if (lookahead == '\n') SKIP(335); END_STATE(); case 64: - if (lookahead == '\n') SKIP(604); + if (lookahead == '\n') SKIP(335); if (lookahead == '\r') SKIP(63); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 65: - if (lookahead == '\n') SKIP(530); + if (lookahead == '\n') SKIP(285); END_STATE(); case 66: - if (lookahead == '\n') SKIP(530); + if (lookahead == '\n') SKIP(285); if (lookahead == '\r') SKIP(65); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 67: - if (lookahead == '\n') SKIP(537); + if (lookahead == '\n') SKIP(336); END_STATE(); case 68: - if (lookahead == '\n') SKIP(537); + if (lookahead == '\n') SKIP(336); if (lookahead == '\r') SKIP(67); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 69: - if (lookahead == '\n') SKIP(504); + if (lookahead == '\n') SKIP(294); END_STATE(); case 70: - if (lookahead == '\n') SKIP(504); + if (lookahead == '\n') SKIP(294); if (lookahead == '\r') SKIP(69); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 71: - if (lookahead == '\n') SKIP(552); + if (lookahead == '\n') SKIP(298); END_STATE(); case 72: - if (lookahead == '\n') SKIP(552); + if (lookahead == '\n') SKIP(298); if (lookahead == '\r') SKIP(71); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 73: - if (lookahead == '\n') SKIP(505); + if (lookahead == '\n') SKIP(301); END_STATE(); case 74: - if (lookahead == '\n') SKIP(505); + if (lookahead == '\n') SKIP(301); if (lookahead == '\r') SKIP(73); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 75: - if (lookahead == '\n') SKIP(553); + if (lookahead == '\n') SKIP(322); END_STATE(); case 76: - if (lookahead == '\n') SKIP(553); + if (lookahead == '\n') SKIP(322); if (lookahead == '\r') SKIP(75); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 77: - if (lookahead == '\n') SKIP(665); + if (lookahead == '\n') SKIP(300); END_STATE(); case 78: - if (lookahead == '\n') SKIP(665); + if (lookahead == '\n') SKIP(300); if (lookahead == '\r') SKIP(77); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 79: - if (lookahead == '\n') SKIP(536); + if (lookahead == '\n') SKIP(314); END_STATE(); case 80: - if (lookahead == '\n') SKIP(536); + if (lookahead == '\n') SKIP(314); if (lookahead == '\r') SKIP(79); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 81: - if (lookahead == '\n') SKIP(508); + if (lookahead == '\n') SKIP(323); END_STATE(); case 82: - if (lookahead == '\n') SKIP(508); + if (lookahead == '\n') SKIP(323); if (lookahead == '\r') SKIP(81); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 83: - if (lookahead == '\n') SKIP(556); + if (lookahead == '\n') SKIP(380); END_STATE(); case 84: - if (lookahead == '\n') SKIP(556); + if (lookahead == '\n') SKIP(380); if (lookahead == '\r') SKIP(83); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 85: - if (lookahead == '\n') SKIP(513); + if (lookahead == '\n') SKIP(368); END_STATE(); case 86: - if (lookahead == '\n') SKIP(513); + if (lookahead == '\n') SKIP(368); if (lookahead == '\r') SKIP(85); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 87: - if (lookahead == '\n') SKIP(518); + if (lookahead == '\n') SKIP(365); END_STATE(); case 88: - if (lookahead == '\n') SKIP(518); + if (lookahead == '\n') SKIP(365); if (lookahead == '\r') SKIP(87); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 89: - if (lookahead == '\n') SKIP(560); + if (lookahead == '\n') SKIP(341); END_STATE(); case 90: - if (lookahead == '\n') SKIP(560); + if (lookahead == '\n') SKIP(341); if (lookahead == '\r') SKIP(89); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 91: - if (lookahead == '\n') SKIP(520); + if (lookahead == '\n') SKIP(346); END_STATE(); case 92: - if (lookahead == '\n') SKIP(520); + if (lookahead == '\n') SKIP(346); if (lookahead == '\r') SKIP(91); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 93: - if (lookahead == '\n') SKIP(557); + if (lookahead == '\n') SKIP(349); END_STATE(); case 94: - if (lookahead == '\n') SKIP(557); + if (lookahead == '\n') SKIP(349); if (lookahead == '\r') SKIP(93); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 95: - if (lookahead == '\n') SKIP(532); + if (lookahead == '\n') SKIP(283); END_STATE(); case 96: - if (lookahead == '\n') SKIP(532); + if (lookahead == '\n') SKIP(283); if (lookahead == '\r') SKIP(95); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 97: - if (lookahead == '\n') SKIP(542); + if (lookahead == '\n') SKIP(356); END_STATE(); case 98: - if (lookahead == '\n') SKIP(542); + if (lookahead == '\n') SKIP(356); if (lookahead == '\r') SKIP(97); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 99: - if (lookahead == '\n') SKIP(522); + if (lookahead == '\n') SKIP(353); END_STATE(); case 100: - if (lookahead == '\n') SKIP(522); + if (lookahead == '\n') SKIP(353); if (lookahead == '\r') SKIP(99); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 101: - if (lookahead == '\n') SKIP(696); + if (lookahead == '\n') SKIP(337); END_STATE(); case 102: - if (lookahead == '\n') SKIP(696); + if (lookahead == '\n') SKIP(337); if (lookahead == '\r') SKIP(101); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 103: - if (lookahead == '\n') SKIP(538); + if (lookahead == '\n') SKIP(374); END_STATE(); case 104: - if (lookahead == '\n') SKIP(538); + if (lookahead == '\n') SKIP(374); if (lookahead == '\r') SKIP(103); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 105: - if (lookahead == '\n') SKIP(561); + if (lookahead == '\n') SKIP(390); END_STATE(); case 106: - if (lookahead == '\n') SKIP(561); + if (lookahead == '\n') SKIP(390); if (lookahead == '\r') SKIP(105); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 107: - if (lookahead == '\n') SKIP(661); + if (lookahead == '\n') SKIP(272); END_STATE(); case 108: - if (lookahead == '\n') SKIP(661); + if (lookahead == '\n') SKIP(272); if (lookahead == '\r') SKIP(107); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 109: - if (lookahead == '\n') SKIP(586); + if (lookahead == '\n') SKIP(348); END_STATE(); case 110: - if (lookahead == '\n') SKIP(586); + if (lookahead == '\n') SKIP(348); if (lookahead == '\r') SKIP(109); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 111: - if (lookahead == '\n') SKIP(540); + if (lookahead == '\n') SKIP(325); END_STATE(); case 112: - if (lookahead == '\n') SKIP(540); + if (lookahead == '\n') SKIP(325); if (lookahead == '\r') SKIP(111); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 113: - if (lookahead == '\n') SKIP(606); + if (lookahead == '\n') SKIP(388); END_STATE(); case 114: - if (lookahead == '\n') SKIP(606); + if (lookahead == '\n') SKIP(388); if (lookahead == '\r') SKIP(113); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 115: - if (lookahead == '\n') SKIP(587); + if (lookahead == '\n') SKIP(347); END_STATE(); case 116: - if (lookahead == '\n') SKIP(587); + if (lookahead == '\n') SKIP(347); if (lookahead == '\r') SKIP(115); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 117: - if (lookahead == '\n') SKIP(558); + if (lookahead == '\n') SKIP(355); END_STATE(); case 118: - if (lookahead == '\n') SKIP(558); + if (lookahead == '\n') SKIP(355); if (lookahead == '\r') SKIP(117); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 119: - if (lookahead == '\n') SKIP(543); + if (lookahead == '\n') SKIP(340); END_STATE(); case 120: - if (lookahead == '\n') SKIP(543); + if (lookahead == '\n') SKIP(340); if (lookahead == '\r') SKIP(119); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 121: - if (lookahead == '\n') SKIP(624); + if (lookahead == '\n') SKIP(384); END_STATE(); case 122: - if (lookahead == '\n') SKIP(624); + if (lookahead == '\n') SKIP(384); if (lookahead == '\r') SKIP(121); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 123: - if (lookahead == '\n') SKIP(607); + if (lookahead == '\n') SKIP(360); END_STATE(); case 124: - if (lookahead == '\n') SKIP(607); + if (lookahead == '\n') SKIP(360); if (lookahead == '\r') SKIP(123); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 125: - if (lookahead == '\n') SKIP(506); + if (lookahead == '\n') SKIP(389); END_STATE(); case 126: - if (lookahead == '\n') SKIP(506); + if (lookahead == '\n') SKIP(389); if (lookahead == '\r') SKIP(125); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 127: - if (lookahead == '\n') SKIP(612); + if (lookahead == '\n') SKIP(385); END_STATE(); case 128: - if (lookahead == '\n') SKIP(612); + if (lookahead == '\n') SKIP(385); if (lookahead == '\r') SKIP(127); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 129: - if (lookahead == '\n') SKIP(628); + if (lookahead == '\n') SKIP(391); END_STATE(); case 130: - if (lookahead == '\n') SKIP(628); + if (lookahead == '\n') SKIP(391); if (lookahead == '\r') SKIP(129); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 131: - if (lookahead == '\n') SKIP(614); + if (lookahead == '\n') SKIP(393); END_STATE(); case 132: - if (lookahead == '\n') SKIP(614); + if (lookahead == '\n') SKIP(393); if (lookahead == '\r') SKIP(131); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 133: - if (lookahead == '\n') SKIP(613); + if (lookahead == '\n') SKIP(135); END_STATE(); case 134: - if (lookahead == '\n') SKIP(613); + if (lookahead == '\n') SKIP(135); if (lookahead == '\r') SKIP(133); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); END_STATE(); case 135: - if (lookahead == '\n') SKIP(632); + ADVANCE_MAP( + '\n', 533, + '!', 425, + '%', 619, + '&', 628, + '(', 594, + '*', 615, + '+', 608, + '-', 598, + '/', 617, + '<', 644, + '=', 426, + '>', 632, + ); + if (lookahead == '\\') SKIP(134); + if (lookahead == '^') ADVANCE(625); + if (lookahead == '|') ADVANCE(624); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(135); END_STATE(); case 136: - if (lookahead == '\n') SKIP(632); - if (lookahead == '\r') SKIP(135); + if (lookahead == '\n') SKIP(280); END_STATE(); case 137: - if (lookahead == '\n') SKIP(622); + if (lookahead == '\n') SKIP(280); + if (lookahead == '\r') SKIP(136); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 138: - if (lookahead == '\n') SKIP(622); - if (lookahead == '\r') SKIP(137); + if (lookahead == '\n') SKIP(386); END_STATE(); case 139: - if (lookahead == '\n') SKIP(625); + if (lookahead == '\n') SKIP(386); + if (lookahead == '\r') SKIP(138); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 140: - if (lookahead == '\n') SKIP(625); - if (lookahead == '\r') SKIP(139); + if (lookahead == '\n') SKIP(375); END_STATE(); case 141: - if (lookahead == '\n') SKIP(615); + if (lookahead == '\n') SKIP(375); + if (lookahead == '\r') SKIP(140); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 142: - if (lookahead == '\n') SKIP(615); - if (lookahead == '\r') SKIP(141); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(392); END_STATE(); case 143: - if (lookahead == '\n') SKIP(611); + if (lookahead == '\n') SKIP(392); + if (lookahead == '\r') SKIP(142); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 144: - if (lookahead == '\n') SKIP(611); - if (lookahead == '\r') SKIP(143); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(376); END_STATE(); case 145: - if (lookahead == '\n') SKIP(551); + if (lookahead == '\n') SKIP(376); + if (lookahead == '\r') SKIP(144); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 146: - if (lookahead == '\n') SKIP(551); - if (lookahead == '\r') SKIP(145); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(394); + if (lookahead == '\'') ADVANCE(709); + if (lookahead == '/') ADVANCE(712); + if (lookahead == '\\') ADVANCE(711); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(713); + if (lookahead != 0) ADVANCE(710); END_STATE(); case 147: - if (lookahead == '\n') SKIP(559); + if (lookahead == '\n') ADVANCE(725); + if (lookahead == '\r') ADVANCE(724); + if (lookahead == 'U') ADVANCE(492); + if (lookahead == 'u') ADVANCE(484); + if (lookahead == 'x') ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(727); + if (lookahead != 0) ADVANCE(724); END_STATE(); case 148: - if (lookahead == '\n') SKIP(559); - if (lookahead == '\r') SKIP(147); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(377); + if (lookahead == '"') ADVANCE(718); + if (lookahead == '/') ADVANCE(719); + if (lookahead == '\\') ADVANCE(147); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(722); + if (lookahead != 0) ADVANCE(723); END_STATE(); case 149: - if (lookahead == '\n') SKIP(585); + if (lookahead == '\n') ADVANCE(525); + if (lookahead == '\r') ADVANCE(153); + if (lookahead == '(') ADVANCE(527); + if (lookahead == '/') ADVANCE(556); + if (lookahead == '\\') ADVANCE(551); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(417); + if (lookahead != 0) ADVANCE(558); END_STATE(); case 150: - if (lookahead == '\n') SKIP(585); - if (lookahead == '\r') SKIP(149); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') ADVANCE(525); + if (lookahead == '\r') ADVANCE(153); + if (lookahead == '/') ADVANCE(556); + if (lookahead == '\\') ADVANCE(551); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(417); + if (lookahead != 0) ADVANCE(558); END_STATE(); case 151: - if (lookahead == '\n') SKIP(639); + if (lookahead == '\n') ADVANCE(525); + if (lookahead == '\r') ADVANCE(152); + if (lookahead == '(') ADVANCE(594); + if (lookahead == '/') ADVANCE(400); + if (lookahead == '\\') SKIP(155); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(397); END_STATE(); case 152: - if (lookahead == '\n') SKIP(639); - if (lookahead == '\r') SKIP(151); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') ADVANCE(525); + if (lookahead == '(') ADVANCE(594); + if (lookahead == '/') ADVANCE(400); + if (lookahead == '\\') SKIP(155); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(397); END_STATE(); case 153: - if (lookahead == '\n') SKIP(487); + if (lookahead == '\n') ADVANCE(525); + if (lookahead == '/') ADVANCE(556); + if (lookahead == '\\') ADVANCE(551); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(417); + if (lookahead != 0) ADVANCE(558); END_STATE(); case 154: - if (lookahead == '\n') SKIP(487); - if (lookahead == '\r') SKIP(153); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(397); END_STATE(); case 155: - if (lookahead == '\n') SKIP(662); + if (lookahead == '\n') SKIP(397); + if (lookahead == '\r') SKIP(154); END_STATE(); case 156: - if (lookahead == '\n') SKIP(662); - if (lookahead == '\r') SKIP(155); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(261); END_STATE(); case 157: - if (lookahead == '\n') SKIP(668); + if (lookahead == '\n') SKIP(261); + if (lookahead == '\r') SKIP(156); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 158: - if (lookahead == '\n') SKIP(668); - if (lookahead == '\r') SKIP(157); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(276); END_STATE(); case 159: - if (lookahead == '\n') SKIP(630); + if (lookahead == '\n') SKIP(276); + if (lookahead == '\r') SKIP(158); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 160: - if (lookahead == '\n') SKIP(630); - if (lookahead == '\r') SKIP(159); + if (lookahead == '\n') SKIP(260); END_STATE(); case 161: - if (lookahead == '\n') SKIP(629); + if (lookahead == '\n') SKIP(260); + if (lookahead == '\r') SKIP(160); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 162: - if (lookahead == '\n') SKIP(629); - if (lookahead == '\r') SKIP(161); + if (lookahead == '\n') SKIP(264); END_STATE(); case 163: - if (lookahead == '\n') SKIP(626); + if (lookahead == '\n') SKIP(264); + if (lookahead == '\r') SKIP(162); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 164: - if (lookahead == '\n') SKIP(626); - if (lookahead == '\r') SKIP(163); + if (lookahead == '\n') SKIP(269); END_STATE(); case 165: - if (lookahead == '\n') SKIP(633); + if (lookahead == '\n') SKIP(269); + if (lookahead == '\r') SKIP(164); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 166: - if (lookahead == '\n') SKIP(633); - if (lookahead == '\r') SKIP(165); + if (lookahead == '\n') SKIP(270); END_STATE(); case 167: - if (lookahead == '\n') SKIP(664); + if (lookahead == '\n') SKIP(270); + if (lookahead == '\r') SKIP(166); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 168: - if (lookahead == '\n') SKIP(664); - if (lookahead == '\r') SKIP(167); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(290); END_STATE(); case 169: - if (lookahead == '\n') SKIP(663); + if (lookahead == '\n') SKIP(290); + if (lookahead == '\r') SKIP(168); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 170: - if (lookahead == '\n') SKIP(663); - if (lookahead == '\r') SKIP(169); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(281); END_STATE(); case 171: - if (lookahead == '\n') SKIP(717); + if (lookahead == '\n') SKIP(281); + if (lookahead == '\r') SKIP(170); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 172: - if (lookahead == '\n') SKIP(717); - if (lookahead == '\r') SKIP(171); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(312); END_STATE(); case 173: - if (lookahead == '\n') SKIP(669); + if (lookahead == '\n') SKIP(312); + if (lookahead == '\r') SKIP(172); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 174: - if (lookahead == '\n') SKIP(669); - if (lookahead == '\r') SKIP(173); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(345); END_STATE(); case 175: - if (lookahead == '\n') SKIP(675); + if (lookahead == '\n') SKIP(345); + if (lookahead == '\r') SKIP(174); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 176: - if (lookahead == '\n') SKIP(675); - if (lookahead == '\r') SKIP(175); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(311); END_STATE(); case 177: - if (lookahead == '\n') SKIP(631); + if (lookahead == '\n') SKIP(311); + if (lookahead == '\r') SKIP(176); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 178: - if (lookahead == '\n') SKIP(631); - if (lookahead == '\r') SKIP(177); + if (lookahead == '\n') SKIP(363); END_STATE(); case 179: - if (lookahead == '\n') SKIP(718); + if (lookahead == '\n') SKIP(363); + if (lookahead == '\r') SKIP(178); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 180: - if (lookahead == '\n') SKIP(718); - if (lookahead == '\r') SKIP(179); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(362); END_STATE(); case 181: - if (lookahead == '\n') SKIP(676); + if (lookahead == '\n') SKIP(362); + if (lookahead == '\r') SKIP(180); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 182: - if (lookahead == '\n') SKIP(676); - if (lookahead == '\r') SKIP(181); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(287); END_STATE(); case 183: - if (lookahead == '\n') SKIP(729); + if (lookahead == '\n') SKIP(287); + if (lookahead == '\r') SKIP(182); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 184: - if (lookahead == '\n') SKIP(729); - if (lookahead == '\r') SKIP(183); + if (lookahead == '\n') SKIP(334); END_STATE(); case 185: - if (lookahead == '\n') SKIP(677); + if (lookahead == '\n') SKIP(334); + if (lookahead == '\r') SKIP(184); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 186: - if (lookahead == '\n') SKIP(677); - if (lookahead == '\r') SKIP(185); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(303); END_STATE(); case 187: - if (lookahead == '\n') SKIP(719); + if (lookahead == '\n') SKIP(303); + if (lookahead == '\r') SKIP(186); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 188: - if (lookahead == '\n') SKIP(719); - if (lookahead == '\r') SKIP(187); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(305); END_STATE(); case 189: - if (lookahead == '\n') SKIP(637); + if (lookahead == '\n') SKIP(305); + if (lookahead == '\r') SKIP(188); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 190: - if (lookahead == '\n') SKIP(637); - if (lookahead == '\r') SKIP(189); + if (lookahead == '\n') SKIP(321); END_STATE(); case 191: - if (lookahead == '\n') SKIP(701); + if (lookahead == '\n') SKIP(321); + if (lookahead == '\r') SKIP(190); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 192: - if (lookahead == '\n') SKIP(701); - if (lookahead == '\r') SKIP(191); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(313); END_STATE(); case 193: - if (lookahead == '\n') SKIP(693); + if (lookahead == '\n') SKIP(313); + if (lookahead == '\r') SKIP(192); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 194: - if (lookahead == '\n') SKIP(693); - if (lookahead == '\r') SKIP(193); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(382); END_STATE(); case 195: - if (lookahead == '\n') SKIP(695); + if (lookahead == '\n') SKIP(382); + if (lookahead == '\r') SKIP(194); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 196: - if (lookahead == '\n') SKIP(695); - if (lookahead == '\r') SKIP(195); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(370); END_STATE(); case 197: - if (lookahead == '\n') SKIP(666); + if (lookahead == '\n') SKIP(370); + if (lookahead == '\r') SKIP(196); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 198: - if (lookahead == '\n') SKIP(666); - if (lookahead == '\r') SKIP(197); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(364); END_STATE(); case 199: - if (lookahead == '\n') SKIP(687); + if (lookahead == '\n') SKIP(364); + if (lookahead == '\r') SKIP(198); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 200: - if (lookahead == '\n') SKIP(687); - if (lookahead == '\r') SKIP(199); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(354); END_STATE(); case 201: - if (lookahead == '\n') SKIP(692); + if (lookahead == '\n') SKIP(354); + if (lookahead == '\r') SKIP(200); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 202: - if (lookahead == '\n') SKIP(692); - if (lookahead == '\r') SKIP(201); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(351); END_STATE(); case 203: - if (lookahead == '\n') SKIP(694); + if (lookahead == '\n') SKIP(351); + if (lookahead == '\r') SKIP(202); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 204: - if (lookahead == '\n') SKIP(694); - if (lookahead == '\r') SKIP(203); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(326); END_STATE(); case 205: - if (lookahead == '\n') SKIP(635); + if (lookahead == '\n') SKIP(326); + if (lookahead == '\r') SKIP(204); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 206: - if (lookahead == '\n') SKIP(635); - if (lookahead == '\r') SKIP(205); + if (lookahead == '\n') SKIP(358); END_STATE(); case 207: - if (lookahead == '\n') SKIP(721); + if (lookahead == '\n') SKIP(358); + if (lookahead == '\r') SKIP(206); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 208: - if (lookahead == '\n') SKIP(721); - if (lookahead == '\r') SKIP(207); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(344); END_STATE(); case 209: - if (lookahead == '\n') SKIP(680); + if (lookahead == '\n') SKIP(344); + if (lookahead == '\r') SKIP(208); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 210: - if (lookahead == '\n') SKIP(680); - if (lookahead == '\r') SKIP(209); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(262); END_STATE(); case 211: - if (lookahead == '\n') SKIP(688); + if (lookahead == '\n') SKIP(262); + if (lookahead == '\r') SKIP(210); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 212: - if (lookahead == '\n') SKIP(688); - if (lookahead == '\r') SKIP(211); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(291); END_STATE(); case 213: - if (lookahead == '\n') SKIP(689); + if (lookahead == '\n') SKIP(291); + if (lookahead == '\r') SKIP(212); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 214: - if (lookahead == '\n') SKIP(689); - if (lookahead == '\r') SKIP(213); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(309); END_STATE(); case 215: - if (lookahead == '\n') SKIP(681); + if (lookahead == '\n') SKIP(309); + if (lookahead == '\r') SKIP(214); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 216: - if (lookahead == '\n') SKIP(681); - if (lookahead == '\r') SKIP(215); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(339); END_STATE(); case 217: - if (lookahead == '\n') SKIP(708); + if (lookahead == '\n') SKIP(339); + if (lookahead == '\r') SKIP(216); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 218: - if (lookahead == '\n') SKIP(708); - if (lookahead == '\r') SKIP(217); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(327); END_STATE(); case 219: - if (lookahead == '\n') SKIP(690); + if (lookahead == '\n') SKIP(327); + if (lookahead == '\r') SKIP(218); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 220: - if (lookahead == '\n') SKIP(690); - if (lookahead == '\r') SKIP(219); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(329); END_STATE(); case 221: - if (lookahead == '\n') SKIP(723); + if (lookahead == '\n') SKIP(329); + if (lookahead == '\r') SKIP(220); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 222: - if (lookahead == '\n') SKIP(723); - if (lookahead == '\r') SKIP(221); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(318); END_STATE(); case 223: - if (lookahead == '\n') SKIP(726); + if (lookahead == '\n') SKIP(318); + if (lookahead == '\r') SKIP(222); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 224: - if (lookahead == '\n') SKIP(726); - if (lookahead == '\r') SKIP(223); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(371); END_STATE(); case 225: - if (lookahead == '\n') SKIP(728); + if (lookahead == '\n') SKIP(371); + if (lookahead == '\r') SKIP(224); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 226: - if (lookahead == '\n') SKIP(728); - if (lookahead == '\r') SKIP(225); + if (lookahead == '\n') SKIP(352); END_STATE(); case 227: - if (lookahead == '\n') SKIP(724); + if (lookahead == '\n') SKIP(352); + if (lookahead == '\r') SKIP(226); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 228: - if (lookahead == '\n') SKIP(724); - if (lookahead == '\r') SKIP(227); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(331); END_STATE(); case 229: - if (lookahead == '\n') SKIP(700); + if (lookahead == '\n') SKIP(331); + if (lookahead == '\r') SKIP(228); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 230: - if (lookahead == '\n') SKIP(700); - if (lookahead == '\r') SKIP(229); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(359); END_STATE(); case 231: - if (lookahead == '\n') SKIP(725); + if (lookahead == '\n') SKIP(359); + if (lookahead == '\r') SKIP(230); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 232: - if (lookahead == '\n') SKIP(725); - if (lookahead == '\r') SKIP(231); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(343); END_STATE(); case 233: - if (lookahead == '\n') SKIP(712); + if (lookahead == '\n') SKIP(343); + if (lookahead == '\r') SKIP(232); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 234: - if (lookahead == '\n') SKIP(712); - if (lookahead == '\r') SKIP(233); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(293); END_STATE(); case 235: - if (lookahead == '\n') SKIP(707); + if (lookahead == '\n') SKIP(293); + if (lookahead == '\r') SKIP(234); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 236: - if (lookahead == '\n') SKIP(707); - if (lookahead == '\r') SKIP(235); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(310); END_STATE(); case 237: - if (lookahead == '\n') SKIP(706); + if (lookahead == '\n') SKIP(310); + if (lookahead == '\r') SKIP(236); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 238: - if (lookahead == '\n') SKIP(706); - if (lookahead == '\r') SKIP(237); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(338); END_STATE(); case 239: - if (lookahead == '\n') SKIP(727); + if (lookahead == '\n') SKIP(338); + if (lookahead == '\r') SKIP(238); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 240: - if (lookahead == '\n') SKIP(727); - if (lookahead == '\r') SKIP(239); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(328); END_STATE(); case 241: - if (lookahead == '\n') SKIP(710); + if (lookahead == '\n') SKIP(328); + if (lookahead == '\r') SKIP(240); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 242: - if (lookahead == '\n') SKIP(710); - if (lookahead == '\r') SKIP(241); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(369); END_STATE(); case 243: - if (lookahead == '\n') SKIP(660); + if (lookahead == '\n') SKIP(369); + if (lookahead == '\r') SKIP(242); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 244: - if (lookahead == '\n') SKIP(660); - if (lookahead == '\r') SKIP(243); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(367); END_STATE(); case 245: - if (lookahead == '\n') SKIP(685); + if (lookahead == '\n') SKIP(367); + if (lookahead == '\r') SKIP(244); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 246: - if (lookahead == '\n') SKIP(685); - if (lookahead == '\r') SKIP(245); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(373); END_STATE(); case 247: - if (lookahead == '\n') SKIP(686); + if (lookahead == '\n') SKIP(373); + if (lookahead == '\r') SKIP(246); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 248: - if (lookahead == '\n') SKIP(686); - if (lookahead == '\r') SKIP(247); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(317); END_STATE(); case 249: - if (lookahead == '\n') SKIP(720); + if (lookahead == '\n') SKIP(317); + if (lookahead == '\r') SKIP(248); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 250: - if (lookahead == '\n') SKIP(720); - if (lookahead == '\r') SKIP(249); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(315); END_STATE(); case 251: - if (lookahead == '\n') SKIP(667); + if (lookahead == '\n') SKIP(315); + if (lookahead == '\r') SKIP(250); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 252: - if (lookahead == '\n') SKIP(667); - if (lookahead == '\r') SKIP(251); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(277); END_STATE(); case 253: - if (lookahead == '\n') SKIP(698); + if (lookahead == '\n') SKIP(277); + if (lookahead == '\r') SKIP(252); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 254: - if (lookahead == '\n') SKIP(698); - if (lookahead == '\r') SKIP(253); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\n') SKIP(265); END_STATE(); case 255: - if (lookahead == '\n') SKIP(714); + if (lookahead == '\n') SKIP(265); + if (lookahead == '\r') SKIP(254); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 256: - if (lookahead == '\n') SKIP(714); - if (lookahead == '\r') SKIP(255); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\r') ADVANCE(830); + if (lookahead == '\\') ADVANCE(824); + if (lookahead != 0) ADVANCE(829); END_STATE(); case 257: - if (lookahead == '\n') SKIP(503); + ADVANCE_MAP( + '!', 596, + '"', 718, + '#', 437, + '$', 405, + '%', 620, + '&', 629, + '\'', 709, + '(', 594, + ')', 531, + '*', 616, + '+', 610, + ',', 530, + '-', 599, + '.', 682, + '/', 618, + '0', 691, + ':', 665, + ';', 649, + '<', 639, + '=', 661, + '>', 831, + '?', 666, + 'F', 758, + 'L', 732, + 'R', 735, + 'T', 762, + 'U', 736, + '[', 657, + '\\', 2, + ']', 659, + '^', 626, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 767, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 't', 809, + 'u', 739, + 'v', 801, + '{', 653, + '|', 623, + '}', 654, + '~', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(257); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(694); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 258: - if (lookahead == '\n') SKIP(503); - if (lookahead == '\r') SKIP(257); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 596, + '"', 718, + '#', 437, + '$', 406, + '%', 619, + '&', 628, + '\'', 709, + '(', 594, + '*', 615, + '+', 611, + ',', 530, + '-', 601, + '.', 684, + '/', 617, + '0', 691, + ':', 424, + ';', 649, + '<', 640, + '=', 426, + '>', 632, + '?', 666, + 'F', 758, + 'L', 732, + 'R', 735, + 'T', 762, + 'U', 736, + '[', 656, + '\\', 10, + '^', 625, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 767, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 't', 809, + 'u', 739, + 'v', 801, + '{', 653, + '|', 624, + '~', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(258); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(694); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 259: - if (lookahead == '\n') SKIP(261); + ADVANCE_MAP( + '!', 596, + '"', 718, + '#', 443, + '$', 406, + '%', 619, + '&', 628, + '\'', 709, + '(', 594, + ')', 531, + '*', 615, + '+', 611, + ',', 530, + '-', 601, + '.', 684, + '/', 617, + '0', 691, + ':', 665, + ';', 649, + '<', 640, + '=', 426, + '>', 632, + '?', 666, + 'F', 758, + 'L', 732, + 'R', 735, + 'T', 762, + 'U', 736, + '[', 656, + '\\', 12, + '^', 625, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 767, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 't', 809, + 'u', 739, + 'v', 801, + '{', 653, + '|', 624, + '}', 654, + '~', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(259); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(694); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 260: - if (lookahead == '\n') SKIP(261); - if (lookahead == '\r') SKIP(259); + ADVANCE_MAP( + '!', 596, + '"', 718, + '#', 439, + '$', 406, + '%', 619, + '&', 628, + '\'', 709, + '(', 594, + '*', 615, + '+', 611, + ',', 530, + '-', 601, + '.', 684, + '/', 617, + '0', 691, + ':', 424, + ';', 649, + '<', 640, + '=', 426, + '>', 632, + '?', 666, + 'F', 758, + 'L', 732, + 'R', 735, + 'T', 762, + 'U', 736, + '[', 656, + '\\', 161, + '^', 625, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 767, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 't', 809, + 'u', 739, + 'v', 801, + '{', 653, + '|', 624, + '~', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(260); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(694); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 261: ADVANCE_MAP( - '\n', 1074, - '!', 762, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1149, - '-', 1139, - '/', 1158, - '<', 1185, - '=', 763, - '>', 1173, + '!', 596, + '"', 718, + '#', 448, + '$', 406, + '%', 620, + '&', 629, + '\'', 709, + '(', 594, + ')', 531, + '*', 616, + '+', 610, + ',', 530, + '-', 600, + '.', 684, + '/', 618, + '0', 691, + ':', 665, + ';', 649, + '<', 639, + '=', 661, + '>', 633, + '?', 666, + 'F', 758, + 'L', 732, + 'R', 735, + 'T', 762, + 'U', 736, + '[', 655, + '\\', 157, + ']', 659, + '^', 626, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 767, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 't', 809, + 'u', 739, + 'v', 801, + '{', 653, + '|', 623, + '}', 654, + '~', 597, ); - if (lookahead == '\\') SKIP(260); - if (lookahead == '^') ADVANCE(1166); - if (lookahead == '|') ADVANCE(1165); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(261); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(694); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 262: - if (lookahead == '\n') SKIP(704); + ADVANCE_MAP( + '!', 596, + '"', 718, + '#', 448, + '$', 406, + '%', 619, + '&', 628, + '\'', 709, + '(', 594, + ')', 531, + '*', 615, + '+', 611, + ',', 530, + '-', 601, + '.', 684, + '/', 617, + '0', 691, + ':', 665, + ';', 649, + '<', 640, + '=', 426, + '>', 632, + '?', 666, + 'F', 758, + 'L', 732, + 'R', 735, + 'T', 762, + 'U', 736, + '[', 655, + '\\', 211, + ']', 659, + '^', 625, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 767, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 't', 809, + 'u', 739, + 'v', 801, + '{', 653, + '|', 624, + '}', 654, + '~', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(262); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(694); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 263: - if (lookahead == '\n') SKIP(704); - if (lookahead == '\r') SKIP(262); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 596, + '"', 718, + '#', 452, + '$', 406, + '%', 620, + '&', 629, + '\'', 709, + '(', 594, + '*', 616, + '+', 610, + ',', 530, + '-', 600, + '.', 684, + '/', 618, + '0', 691, + ':', 424, + '<', 639, + '=', 661, + '>', 633, + '?', 666, + 'F', 758, + 'L', 732, + 'R', 735, + 'T', 762, + 'U', 736, + '[', 655, + '\\', 16, + '^', 626, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 767, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 't', 809, + 'u', 739, + 'v', 801, + '{', 653, + '|', 623, + '~', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(263); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(694); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 264: - if (lookahead == '\n') SKIP(715); + ADVANCE_MAP( + '!', 596, + '"', 718, + '#', 452, + '$', 406, + '%', 619, + '&', 628, + '\'', 709, + '(', 594, + '*', 615, + '+', 611, + ',', 530, + '-', 601, + '.', 684, + '/', 617, + '0', 691, + ':', 424, + '<', 640, + '=', 426, + '>', 632, + '?', 666, + 'F', 758, + 'L', 732, + 'R', 735, + 'T', 762, + 'U', 736, + '[', 655, + '\\', 163, + '^', 625, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 767, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 't', 809, + 'u', 739, + 'v', 801, + '{', 653, + '|', 624, + '~', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(264); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(694); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 265: - if (lookahead == '\n') SKIP(715); - if (lookahead == '\r') SKIP(264); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 596, + '"', 718, + '#', 441, + '$', 406, + '%', 619, + '&', 628, + '\'', 709, + '(', 594, + '*', 615, + '+', 611, + ',', 530, + '-', 601, + '.', 684, + '/', 617, + '0', 691, + ':', 424, + ';', 649, + '<', 640, + '=', 426, + '>', 632, + '?', 666, + 'F', 758, + 'L', 732, + 'R', 735, + 'T', 762, + 'U', 736, + '[', 656, + '\\', 255, + '^', 625, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 767, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 't', 809, + 'u', 739, + 'v', 801, + '{', 653, + '|', 624, + '~', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(265); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(694); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 266: - if (lookahead == '\n') SKIP(656); + ADVANCE_MAP( + '!', 596, + '"', 718, + '$', 406, + '%', 620, + '&', 629, + '\'', 709, + '(', 594, + ')', 531, + '*', 616, + '+', 610, + ',', 530, + '-', 599, + '.', 684, + '/', 618, + '0', 691, + ':', 424, + '<', 639, + '=', 661, + '>', 633, + '?', 666, + 'F', 758, + 'L', 732, + 'R', 735, + 'T', 762, + 'U', 736, + '[', 655, + '\\', 18, + '^', 626, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 767, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 't', 809, + 'u', 739, + 'v', 801, + '{', 653, + '|', 623, + '~', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(266); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(694); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 267: - if (lookahead == '\n') SKIP(656); - if (lookahead == '\r') SKIP(266); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 596, + '"', 718, + '$', 406, + '%', 620, + '&', 629, + '\'', 709, + '(', 594, + '*', 616, + '+', 610, + ',', 530, + '-', 600, + '.', 684, + '/', 618, + '0', 691, + ':', 424, + '<', 639, + '=', 661, + '>', 831, + '?', 666, + 'F', 758, + 'L', 732, + 'R', 735, + 'T', 762, + 'U', 736, + '[', 655, + '\\', 20, + '^', 626, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 767, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 't', 809, + 'u', 739, + 'v', 801, + '{', 653, + '|', 623, + '~', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(267); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(694); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 268: - if (lookahead == '\n') SKIP(709); + ADVANCE_MAP( + '!', 596, + '"', 718, + '$', 406, + '%', 620, + '&', 629, + '\'', 709, + '(', 594, + '*', 616, + '+', 610, + '-', 600, + '.', 682, + '/', 618, + '0', 691, + ':', 424, + '<', 639, + '=', 661, + '>', 633, + '?', 666, + 'F', 758, + 'L', 732, + 'R', 735, + 'T', 762, + 'U', 736, + '[', 655, + '\\', 22, + '^', 626, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 767, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 't', 809, + 'u', 739, + 'v', 801, + '{', 653, + '|', 623, + '~', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(268); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(694); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 269: - if (lookahead == '\n') SKIP(709); - if (lookahead == '\r') SKIP(268); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 596, + '"', 718, + '$', 406, + '%', 619, + '&', 628, + '\'', 709, + '(', 594, + '*', 615, + '+', 611, + ',', 530, + '-', 601, + '.', 684, + '/', 617, + '0', 691, + ':', 424, + '<', 640, + '=', 426, + '>', 831, + '?', 666, + 'F', 758, + 'L', 732, + 'R', 735, + 'T', 762, + 'U', 736, + '[', 655, + '\\', 165, + '^', 625, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 767, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 't', 809, + 'u', 739, + 'v', 801, + '{', 653, + '|', 624, + '~', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(269); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(694); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 270: - if (lookahead == '\n') SKIP(699); + ADVANCE_MAP( + '!', 596, + '"', 718, + '$', 406, + '%', 619, + '&', 628, + '\'', 709, + '(', 594, + '*', 615, + '+', 611, + '-', 601, + '.', 682, + '/', 617, + '0', 691, + ':', 424, + '<', 640, + '=', 426, + '>', 632, + '?', 666, + 'F', 758, + 'L', 732, + 'R', 735, + 'T', 762, + 'U', 736, + '[', 655, + '\\', 167, + '^', 625, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 767, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 't', 809, + 'u', 739, + 'v', 801, + '{', 653, + '|', 624, + '~', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(270); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(694); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 271: - if (lookahead == '\n') SKIP(699); - if (lookahead == '\r') SKIP(270); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 596, + '"', 378, + '$', 433, + '%', 620, + '&', 629, + '(', 398, + '*', 616, + '+', 612, + ',', 530, + '-', 603, + '/', 618, + ':', 424, + '<', 641, + '=', 661, + '>', 633, + '[', 432, + '\\', 34, + '^', 626, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 796, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 'u', 789, + 'v', 801, + '|', 623, + '~', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(271); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 272: - if (lookahead == '\n') SKIP(716); + ADVANCE_MAP( + '!', 596, + '"', 378, + '$', 433, + '%', 620, + '&', 629, + '(', 398, + '*', 616, + '+', 612, + ',', 530, + '-', 603, + '/', 618, + '<', 641, + '=', 661, + '>', 633, + '[', 435, + '\\', 108, + '^', 626, + '|', 623, + '~', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(272); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 273: - if (lookahead == '\n') SKIP(716); - if (lookahead == '\r') SKIP(272); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 595, + '"', 718, + '#', 437, + '$', 406, + '&', 628, + '\'', 709, + '(', 594, + '*', 615, + '+', 611, + ',', 530, + '-', 602, + '.', 415, + '/', 400, + '0', 691, + ':', 424, + ';', 649, + '<', 416, + 'F', 758, + 'L', 732, + 'R', 735, + 'T', 762, + 'U', 736, + '[', 656, + '\\', 6, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 767, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 't', 809, + 'u', 739, + 'v', 801, + '{', 653, + '~', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(273); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(694); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 274: - if (lookahead == '\n') SKIP(640); + ADVANCE_MAP( + '!', 595, + '"', 718, + '#', 443, + '$', 406, + '&', 628, + '\'', 709, + '(', 594, + ')', 531, + '*', 615, + '+', 611, + ',', 530, + '-', 602, + '.', 685, + '/', 400, + '0', 691, + ':', 424, + ';', 649, + '<', 416, + '=', 660, + '>', 831, + 'F', 758, + 'L', 732, + 'R', 735, + 'T', 762, + 'U', 736, + '[', 656, + '\\', 4, + ']', 436, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 767, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 't', 809, + 'u', 739, + 'v', 801, + '{', 653, + '|', 466, + '}', 654, + '~', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(274); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(694); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 275: - if (lookahead == '\n') SKIP(640); - if (lookahead == '\r') SKIP(274); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 595, + '"', 718, + '#', 447, + '$', 406, + '&', 627, + '\'', 709, + '(', 594, + ')', 531, + '*', 615, + '+', 611, + '-', 602, + '.', 415, + '/', 400, + '0', 691, + ':', 424, + ';', 649, + '<', 416, + 'F', 758, + 'L', 732, + 'R', 735, + 'T', 762, + 'U', 736, + '[', 656, + '\\', 8, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 767, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 't', 809, + 'u', 739, + 'v', 801, + '{', 653, + '~', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(275); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(694); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 276: - if (lookahead == '\n') SKIP(654); + ADVANCE_MAP( + '!', 595, + '"', 718, + '#', 439, + '$', 406, + '&', 628, + '\'', 709, + '(', 594, + '*', 615, + '+', 611, + ',', 530, + '-', 602, + '.', 415, + '/', 400, + '0', 691, + ':', 424, + ';', 649, + '<', 416, + 'F', 758, + 'L', 732, + 'R', 735, + 'T', 762, + 'U', 736, + '[', 656, + '\\', 159, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 767, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 't', 809, + 'u', 739, + 'v', 801, + '{', 653, + '~', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(276); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(694); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 277: - if (lookahead == '\n') SKIP(654); - if (lookahead == '\r') SKIP(276); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 595, + '"', 718, + '#', 441, + '$', 406, + '&', 628, + '\'', 709, + '(', 594, + '*', 615, + '+', 611, + ',', 530, + '-', 602, + '.', 415, + '/', 400, + '0', 691, + ':', 424, + ';', 649, + '<', 416, + 'F', 758, + 'L', 732, + 'R', 735, + 'T', 762, + 'U', 736, + '[', 656, + '\\', 253, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 767, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 't', 809, + 'u', 739, + 'v', 801, + '{', 653, + '~', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(277); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(694); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 278: - if (lookahead == '\n') SKIP(713); + ADVANCE_MAP( + '!', 595, + '"', 718, + '$', 406, + '&', 628, + '\'', 709, + '(', 594, + ')', 531, + '*', 615, + '+', 611, + ',', 530, + '-', 602, + '.', 415, + '/', 400, + '0', 691, + ':', 424, + ';', 649, + '<', 638, + '=', 660, + '>', 831, + 'F', 758, + 'L', 732, + 'R', 735, + 'T', 762, + 'U', 736, + '[', 655, + '\\', 14, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 767, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 't', 809, + 'u', 739, + 'v', 801, + '{', 653, + '~', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(278); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(694); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 279: - if (lookahead == '\n') SKIP(713); - if (lookahead == '\r') SKIP(278); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 595, + '"', 718, + '$', 406, + '&', 627, + '\'', 709, + '(', 594, + ')', 531, + '*', 615, + '+', 611, + ',', 530, + '-', 602, + '.', 685, + '/', 400, + '0', 691, + ':', 665, + ';', 649, + '<', 638, + '=', 660, + '>', 831, + 'F', 758, + 'L', 732, + 'R', 735, + 'T', 762, + 'U', 736, + '[', 655, + '\\', 24, + ']', 659, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 767, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 't', 809, + 'u', 739, + 'v', 801, + '{', 653, + '}', 654, + '~', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(279); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(694); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 280: - if (lookahead == '\n') SKIP(659); + ADVANCE_MAP( + '!', 595, + '$', 434, + '\'', 709, + '(', 594, + ')', 531, + '+', 613, + '-', 606, + '.', 472, + '/', 400, + '0', 691, + 'L', 750, + 'U', 751, + '\\', 137, + 'u', 752, + '~', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(280); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(694); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 281: - if (lookahead == '\n') SKIP(659); - if (lookahead == '\r') SKIP(280); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 425, + '"', 718, + '#', 448, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + ')', 531, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + ':', 665, + ';', 649, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + 'L', 733, + 'R', 735, + 'U', 737, + '[', 655, + '\\', 171, + ']', 659, + '^', 626, + 'u', 740, + '{', 653, + '|', 623, + '}', 654, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(281); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 282: - if (lookahead == '\n') SKIP(641); + ADVANCE_MAP( + '!', 425, + '"', 718, + '#', 448, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + ')', 531, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + ':', 664, + ';', 649, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + 'L', 733, + 'R', 735, + 'U', 737, + '[', 655, + '\\', 52, + ']', 659, + '^', 626, + 'u', 740, + '{', 653, + '|', 623, + '}', 654, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(282); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 283: - if (lookahead == '\n') SKIP(641); - if (lookahead == '\r') SKIP(282); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 425, + '"', 718, + '#', 448, + '$', 434, + '%', 619, + '&', 628, + '(', 594, + ')', 531, + '*', 615, + '+', 609, + ',', 530, + '-', 605, + '.', 683, + '/', 617, + ':', 664, + ';', 649, + '<', 643, + '=', 426, + '>', 632, + '?', 666, + 'L', 733, + 'R', 735, + 'U', 737, + '[', 655, + '\\', 96, + ']', 659, + '^', 625, + 'u', 740, + '|', 624, + '}', 654, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(283); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 284: - if (lookahead == '\n') SKIP(711); + ADVANCE_MAP( + '!', 425, + '"', 718, + '#', 452, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + ':', 424, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + 'L', 733, + 'R', 735, + 'U', 737, + '[', 655, + '\\', 62, + '^', 626, + 'u', 740, + '{', 653, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(284); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 285: - if (lookahead == '\n') SKIP(711); - if (lookahead == '\r') SKIP(284); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 425, + '"', 718, + '#', 452, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + 'L', 733, + 'R', 735, + 'U', 737, + '[', 655, + '\\', 66, + '^', 626, + 'u', 740, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(285); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 286: - if (lookahead == '\n') SKIP(642); - if (lookahead == '"') ADVANCE(1347); - if (lookahead == '/') ADVANCE(1348); - if (lookahead == '\\') ADVANCE(287); + ADVANCE_MAP( + '!', 425, + '"', 718, + '#', 452, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + 'L', 841, + 'R', 842, + 'U', 843, + '[', 655, + '\\', 66, + '^', 626, + 'u', 844, + '|', 623, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1351); - if (lookahead != 0) ADVANCE(1352); + lookahead == ' ') SKIP(285); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(850); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 287: - if (lookahead == '\n') ADVANCE(1354); - if (lookahead == '\r') ADVANCE(1353); - if (lookahead == 'U') ADVANCE(1020); - if (lookahead == 'u') ADVANCE(1012); - if (lookahead == 'x') ADVANCE(1008); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1356); - if (lookahead != 0) ADVANCE(1353); + ADVANCE_MAP( + '!', 425, + '"', 718, + '#', 452, + '$', 434, + '%', 619, + '&', 628, + '(', 594, + '*', 615, + '+', 609, + ',', 530, + '-', 605, + '.', 683, + '/', 617, + '<', 643, + '=', 426, + '>', 632, + '?', 666, + 'L', 733, + 'R', 735, + 'U', 737, + '[', 655, + '\\', 183, + '^', 625, + 'u', 740, + '|', 624, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(287); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 288: - if (lookahead == '\n') SKIP(731); - if (lookahead == '\'') ADVANCE(1338); - if (lookahead == '/') ADVANCE(1341); - if (lookahead == '\\') ADVANCE(1340); + ADVANCE_MAP( + '!', 425, + '"', 718, + '#', 452, + '$', 434, + '%', 619, + '&', 628, + '(', 594, + '*', 615, + '+', 609, + ',', 530, + '-', 605, + '.', 683, + '/', 617, + '<', 643, + '=', 426, + '>', 632, + '?', 666, + 'L', 841, + 'R', 842, + 'U', 843, + '[', 655, + '\\', 183, + '^', 625, + 'u', 844, + '|', 624, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1342); - if (lookahead != 0) ADVANCE(1339); + lookahead == ' ') SKIP(287); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(850); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 289: - if (lookahead == '\n') ADVANCE(1066); - if (lookahead == '\r') ADVANCE(293); - if (lookahead == '(') ADVANCE(1068); - if (lookahead == '/') ADVANCE(1097); - if (lookahead == '\\') ADVANCE(1092); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(754); - if (lookahead != 0) ADVANCE(1099); + ADVANCE_MAP( + '!', 425, + '"', 718, + '$', 433, + '%', 620, + '&', 629, + '(', 594, + ')', 531, + '*', 616, + '+', 612, + ',', 530, + '-', 603, + '.', 683, + '/', 618, + ':', 424, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + 'L', 733, + 'R', 735, + 'U', 737, + '[', 656, + '\\', 46, + '^', 626, + 'u', 740, + '{', 653, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(289); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 290: - if (lookahead == '\n') ADVANCE(1066); - if (lookahead == '\r') ADVANCE(293); - if (lookahead == '/') ADVANCE(1097); - if (lookahead == '\\') ADVANCE(1092); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(754); - if (lookahead != 0) ADVANCE(1099); + ADVANCE_MAP( + '!', 425, + '"', 718, + '$', 433, + '%', 620, + '&', 629, + '(', 594, + ')', 531, + '*', 616, + '+', 612, + ',', 530, + '-', 603, + '.', 683, + '/', 618, + ':', 424, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + 'L', 733, + 'R', 735, + 'U', 737, + '[', 655, + '\\', 169, + '^', 626, + 'u', 740, + '{', 653, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(290); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 291: - if (lookahead == '\n') ADVANCE(1066); - if (lookahead == '\r') ADVANCE(292); - if (lookahead == '(') ADVANCE(1135); - if (lookahead == '/') ADVANCE(737); - if (lookahead == '\\') SKIP(295); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(734); + ADVANCE_MAP( + '!', 425, + '"', 718, + '$', 433, + '%', 620, + '&', 629, + '(', 594, + ')', 531, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + ':', 424, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + 'L', 733, + 'R', 735, + 'U', 737, + '[', 655, + '\\', 213, + '^', 626, + 'u', 740, + '{', 653, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(291); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 292: - if (lookahead == '\n') ADVANCE(1066); - if (lookahead == '(') ADVANCE(1135); - if (lookahead == '/') ADVANCE(737); - if (lookahead == '\\') SKIP(295); + ADVANCE_MAP( + '!', 425, + '"', 718, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + ')', 531, + '*', 616, + '+', 612, + ',', 530, + '-', 603, + '.', 683, + '/', 618, + ':', 424, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + 'L', 733, + 'R', 735, + 'U', 737, + '[', 656, + '\\', 40, + '^', 626, + 'u', 740, + '{', 653, + '|', 623, + '~', 597, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(734); + lookahead == ' ') SKIP(292); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 293: - if (lookahead == '\n') ADVANCE(1066); - if (lookahead == '/') ADVANCE(1097); - if (lookahead == '\\') ADVANCE(1092); + ADVANCE_MAP( + '!', 425, + '"', 718, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + ')', 531, + '*', 616, + '+', 612, + ',', 530, + '-', 603, + '.', 683, + '/', 618, + ':', 424, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + 'L', 733, + 'R', 735, + 'U', 737, + '[', 655, + '\\', 235, + '^', 626, + 'u', 740, + '{', 653, + '|', 623, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(754); - if (lookahead != 0) ADVANCE(1099); + lookahead == ' ') SKIP(293); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 294: - if (lookahead == '\n') SKIP(734); + ADVANCE_MAP( + '!', 425, + '"', 718, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + ')', 531, + '*', 616, + '+', 612, + ',', 530, + '-', 603, + '.', 683, + '/', 618, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + 'L', 733, + 'R', 735, + 'U', 737, + '[', 655, + '\\', 70, + '^', 626, + 'u', 740, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(294); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 295: - if (lookahead == '\n') SKIP(734); - if (lookahead == '\r') SKIP(294); + ADVANCE_MAP( + '!', 425, + '"', 718, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + ')', 531, + '*', 616, + '+', 612, + ',', 530, + '-', 603, + '.', 683, + '/', 618, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + 'L', 841, + 'R', 842, + 'U', 843, + '[', 655, + '\\', 70, + '^', 626, + 'u', 844, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(294); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(850); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 296: - if (lookahead == '\n') SKIP(491); + ADVANCE_MAP( + '!', 425, + '"', 718, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + ')', 531, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + ':', 665, + ';', 649, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + 'L', 733, + 'R', 735, + 'U', 737, + '[', 656, + '\\', 38, + '^', 626, + 'u', 740, + '{', 653, + '|', 623, + '}', 654, + '~', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(296); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 297: - if (lookahead == '\n') SKIP(491); - if (lookahead == '\r') SKIP(296); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 425, + '"', 718, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + ':', 424, + '<', 641, + '=', 661, + '>', 831, + '?', 666, + 'L', 733, + 'R', 735, + 'U', 737, + '[', 655, + '\\', 48, + '^', 626, + 'u', 740, + '{', 653, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(297); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 298: - if (lookahead == '\n') SKIP(472); + ADVANCE_MAP( + '!', 425, + '"', 718, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + '<', 641, + '=', 661, + '>', 831, + '?', 666, + 'L', 733, + 'R', 735, + 'U', 737, + '[', 655, + '\\', 72, + '^', 626, + 'u', 740, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(298); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 299: - if (lookahead == '\n') SKIP(472); - if (lookahead == '\r') SKIP(298); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 425, + '"', 718, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + '<', 641, + '=', 661, + '>', 831, + '?', 666, + 'L', 841, + 'R', 842, + 'U', 843, + '[', 655, + '\\', 72, + '^', 626, + 'u', 844, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(298); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(850); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 300: - if (lookahead == '\n') SKIP(474); + ADVANCE_MAP( + '!', 425, + '"', 718, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + '*', 616, + '+', 612, + '-', 604, + '.', 681, + '/', 618, + ':', 424, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + 'L', 733, + 'R', 735, + 'U', 737, + '[', 655, + '\\', 78, + '^', 626, + 'u', 740, + '{', 653, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(300); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 301: - if (lookahead == '\n') SKIP(474); - if (lookahead == '\r') SKIP(300); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 425, + '"', 718, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + '*', 616, + '+', 612, + '-', 604, + '.', 681, + '/', 618, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + 'L', 733, + 'R', 735, + 'U', 737, + '[', 655, + '\\', 74, + '^', 626, + 'u', 740, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(301); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 302: - if (lookahead == '\n') SKIP(476); + ADVANCE_MAP( + '!', 425, + '"', 718, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + '*', 616, + '+', 612, + '-', 604, + '.', 681, + '/', 618, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + 'L', 841, + 'R', 842, + 'U', 843, + '[', 655, + '\\', 74, + '^', 626, + 'u', 844, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(301); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(850); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 303: - if (lookahead == '\n') SKIP(476); - if (lookahead == '\r') SKIP(302); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 425, + '"', 718, + '$', 434, + '%', 619, + '&', 628, + '(', 594, + '*', 615, + '+', 609, + ',', 530, + '-', 605, + '.', 683, + '/', 617, + '<', 643, + '=', 426, + '>', 831, + '?', 666, + 'L', 733, + 'R', 735, + 'U', 737, + '[', 655, + '\\', 187, + '^', 625, + 'u', 740, + '|', 624, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(303); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 304: - if (lookahead == '\n') SKIP(483); + ADVANCE_MAP( + '!', 425, + '"', 718, + '$', 434, + '%', 619, + '&', 628, + '(', 594, + '*', 615, + '+', 609, + ',', 530, + '-', 605, + '.', 683, + '/', 617, + '<', 643, + '=', 426, + '>', 831, + '?', 666, + 'L', 841, + 'R', 842, + 'U', 843, + '[', 655, + '\\', 187, + '^', 625, + 'u', 844, + '|', 624, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(303); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(850); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 305: - if (lookahead == '\n') SKIP(483); - if (lookahead == '\r') SKIP(304); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 425, + '"', 718, + '$', 434, + '%', 619, + '&', 628, + '(', 594, + '*', 615, + '+', 609, + '-', 605, + '.', 681, + '/', 617, + '<', 643, + '=', 426, + '>', 632, + '?', 666, + 'L', 733, + 'R', 735, + 'U', 737, + '[', 655, + '\\', 189, + '^', 625, + 'u', 740, + '|', 624, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(305); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 306: - if (lookahead == '\n') SKIP(479); + ADVANCE_MAP( + '!', 425, + '"', 718, + '$', 434, + '%', 619, + '&', 628, + '(', 594, + '*', 615, + '+', 609, + '-', 605, + '.', 681, + '/', 617, + '<', 643, + '=', 426, + '>', 632, + '?', 666, + 'L', 841, + 'R', 842, + 'U', 843, + '[', 655, + '\\', 189, + '^', 625, + 'u', 844, + '|', 624, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(305); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(850); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 307: - if (lookahead == '\n') SKIP(479); - if (lookahead == '\r') SKIP(306); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 425, + '#', 462, + '$', 433, + '%', 620, + '&', 629, + '(', 594, + ')', 531, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + ':', 665, + ';', 649, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + '[', 655, + '\\', 54, + ']', 659, + '^', 626, + '{', 653, + '|', 623, + '}', 654, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(307); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 308: - if (lookahead == '\n') SKIP(484); + ADVANCE_MAP( + '!', 425, + '#', 448, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + ')', 531, + '*', 616, + '+', 612, + ',', 530, + '-', 603, + '.', 683, + '/', 618, + ':', 424, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + '[', 656, + '\\', 44, + '^', 626, + '{', 653, + '|', 623, + '~', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(308); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 309: - if (lookahead == '\n') SKIP(484); - if (lookahead == '\r') SKIP(308); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 425, + '#', 448, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + ')', 531, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + ':', 665, + ';', 649, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + '[', 655, + '\\', 215, + ']', 659, + '^', 626, + '{', 653, + '|', 623, + '}', 654, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(309); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 310: - if (lookahead == '\n') SKIP(485); + ADVANCE_MAP( + '!', 425, + '#', 448, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + ')', 531, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + ':', 664, + ';', 649, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + '[', 656, + '\\', 237, + ']', 659, + '^', 626, + '{', 653, + '|', 623, + '}', 654, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(310); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 311: - if (lookahead == '\n') SKIP(485); - if (lookahead == '\r') SKIP(310); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 425, + '#', 448, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + ')', 531, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + ':', 664, + ';', 649, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + '[', 655, + '\\', 177, + ']', 659, + '^', 626, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 796, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 'u', 789, + 'v', 801, + '{', 653, + '|', 623, + '}', 654, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(311); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 312: - if (lookahead == '\n') SKIP(502); + ADVANCE_MAP( + '!', 425, + '#', 448, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + ')', 531, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + ':', 664, + ';', 649, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + '[', 655, + '\\', 173, + ']', 659, + '^', 626, + '{', 653, + '|', 623, + '}', 654, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(312); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 313: - if (lookahead == '\n') SKIP(502); - if (lookahead == '\r') SKIP(312); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 425, + '#', 448, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + ')', 531, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + ':', 664, + ';', 649, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + '[', 655, + '\\', 193, + ']', 659, + '^', 626, + '|', 623, + '}', 654, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(313); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 314: - if (lookahead == '\n') SKIP(616); + ADVANCE_MAP( + '!', 425, + '#', 448, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + ')', 531, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + ':', 664, + ';', 649, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + '[', 658, + '\\', 80, + ']', 659, + '^', 626, + '|', 623, + '}', 654, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(314); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 315: - if (lookahead == '\n') SKIP(616); - if (lookahead == '\r') SKIP(314); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 425, + '#', 448, + '$', 434, + '%', 619, + '&', 628, + '(', 594, + ')', 531, + '*', 615, + '+', 609, + ',', 530, + '-', 605, + '.', 683, + '/', 617, + ':', 665, + ';', 649, + '<', 643, + '=', 426, + '>', 632, + '?', 666, + '[', 655, + '\\', 251, + ']', 659, + '^', 625, + '{', 653, + '|', 624, + '}', 654, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(315); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 316: - if (lookahead == '\n') SKIP(605); + ADVANCE_MAP( + '!', 425, + '#', 448, + '$', 434, + '%', 619, + '&', 628, + '(', 594, + ')', 531, + '*', 615, + '+', 609, + ',', 530, + '-', 605, + '.', 683, + '/', 617, + ':', 664, + ';', 649, + '<', 643, + '=', 426, + '>', 632, + '?', 666, + '[', 655, + '\\', 58, + ']', 659, + '^', 625, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 796, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 'u', 789, + 'v', 801, + '{', 653, + '|', 624, + '}', 654, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(316); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 317: - if (lookahead == '\n') SKIP(605); - if (lookahead == '\r') SKIP(316); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 425, + '#', 448, + '$', 434, + '%', 619, + '&', 628, + '(', 594, + ')', 531, + '*', 615, + '+', 609, + ',', 530, + '-', 605, + '.', 683, + '/', 617, + ':', 664, + ';', 649, + '<', 643, + '=', 426, + '>', 632, + '?', 666, + '[', 655, + '\\', 249, + ']', 659, + '^', 625, + '{', 653, + '|', 624, + '}', 654, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(317); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 318: - if (lookahead == '\n') SKIP(565); + ADVANCE_MAP( + '!', 425, + '#', 448, + '$', 434, + '%', 619, + '&', 628, + '(', 594, + ')', 531, + '*', 615, + '+', 609, + ',', 530, + '-', 605, + '.', 683, + '/', 617, + ':', 664, + ';', 649, + '<', 643, + '=', 426, + '>', 632, + '?', 666, + '[', 655, + '\\', 223, + ']', 659, + '^', 625, + '|', 624, + '}', 654, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(318); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 319: - if (lookahead == '\n') SKIP(565); - if (lookahead == '\r') SKIP(318); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 425, + '#', 438, + '$', 433, + '%', 619, + '&', 628, + '(', 594, + ')', 531, + '*', 615, + '+', 608, + ',', 530, + '-', 598, + '.', 414, + '/', 617, + ':', 424, + ';', 649, + '<', 644, + '=', 426, + '>', 632, + '[', 656, + '\\', 26, + '^', 625, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 796, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 'u', 789, + 'v', 801, + '|', 624, + '~', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(319); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 320: - if (lookahead == '\n') SKIP(566); + ADVANCE_MAP( + '!', 425, + '#', 452, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + ')', 531, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + ':', 665, + ';', 649, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + '[', 656, + '\\', 42, + '^', 626, + '{', 653, + '|', 623, + '}', 654, + '~', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(320); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 321: - if (lookahead == '\n') SKIP(566); - if (lookahead == '\r') SKIP(320); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 425, + '#', 452, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + ':', 665, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + '[', 655, + '\\', 191, + '^', 626, + '{', 653, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(321); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 322: - if (lookahead == '\n') SKIP(510); + ADVANCE_MAP( + '!', 425, + '#', 452, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + ':', 664, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + '[', 655, + '\\', 76, + '^', 626, + '{', 653, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(322); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 323: - if (lookahead == '\n') SKIP(510); - if (lookahead == '\r') SKIP(322); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 425, + '#', 452, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + '[', 655, + '\\', 82, + '^', 626, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 796, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 'u', 789, + 'v', 801, + '{', 653, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(323); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 324: - if (lookahead == '\n') SKIP(569); + ADVANCE_MAP( + '!', 425, + '#', 452, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + '[', 655, + '\\', 112, + '^', 626, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(325); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(850); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 325: - if (lookahead == '\n') SKIP(569); - if (lookahead == '\r') SKIP(324); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 425, + '#', 452, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + '[', 655, + '\\', 112, + '^', 626, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(325); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 326: - if (lookahead == '\n') SKIP(524); + ADVANCE_MAP( + '!', 425, + '#', 452, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + '[', 658, + '\\', 205, + '^', 626, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(326); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 327: - if (lookahead == '\n') SKIP(524); - if (lookahead == '\r') SKIP(326); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 425, + '#', 452, + '$', 434, + '%', 619, + '&', 628, + '(', 594, + ')', 531, + '*', 615, + '+', 609, + ',', 530, + '-', 605, + '.', 683, + '/', 617, + ':', 665, + ';', 649, + '<', 643, + '=', 426, + '>', 632, + '?', 666, + '[', 655, + '\\', 219, + ']', 659, + '^', 625, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 796, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 'u', 789, + 'v', 801, + '{', 653, + '|', 624, + '}', 654, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(327); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 328: - if (lookahead == '\n') SKIP(554); + ADVANCE_MAP( + '!', 425, + '#', 452, + '$', 434, + '%', 619, + '&', 628, + '(', 594, + '*', 615, + '+', 609, + ',', 530, + '-', 605, + '.', 683, + '/', 617, + ':', 665, + '<', 643, + '=', 426, + '>', 632, + '?', 666, + '[', 655, + '\\', 241, + '^', 625, + '{', 653, + '|', 624, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(328); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 329: - if (lookahead == '\n') SKIP(554); - if (lookahead == '\r') SKIP(328); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 425, + '#', 452, + '$', 434, + '%', 619, + '&', 628, + '(', 594, + '*', 615, + '+', 609, + ',', 530, + '-', 605, + '.', 683, + '/', 617, + ':', 664, + '<', 643, + '=', 426, + '>', 632, + '?', 666, + '[', 655, + '\\', 221, + '^', 625, + '{', 653, + '|', 624, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(329); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 330: - if (lookahead == '\n') SKIP(526); + ADVANCE_MAP( + '!', 425, + '#', 452, + '$', 434, + '%', 619, + '&', 628, + '(', 594, + '*', 615, + '+', 609, + ',', 530, + '-', 605, + '.', 683, + '/', 617, + '<', 643, + '=', 426, + '>', 632, + '?', 666, + '[', 655, + '\\', 229, + '^', 625, + '|', 624, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(331); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(850); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 331: - if (lookahead == '\n') SKIP(526); - if (lookahead == '\r') SKIP(330); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 425, + '#', 452, + '$', 434, + '%', 619, + '&', 628, + '(', 594, + '*', 615, + '+', 609, + ',', 530, + '-', 605, + '.', 683, + '/', 617, + '<', 643, + '=', 426, + '>', 632, + '?', 666, + '[', 655, + '\\', 229, + '^', 625, + '|', 624, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(331); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 332: - if (lookahead == '\n') SKIP(570); + ADVANCE_MAP( + '!', 425, + '$', 433, + '%', 620, + '&', 629, + '(', 594, + ')', 531, + '*', 616, + '+', 612, + ',', 530, + '-', 603, + '.', 683, + '/', 618, + ':', 665, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + '[', 655, + '\\', 56, + '^', 626, + '{', 653, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(332); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 333: - if (lookahead == '\n') SKIP(570); - if (lookahead == '\r') SKIP(332); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 425, + '$', 433, + '%', 620, + '&', 629, + '(', 594, + ')', 531, + '*', 616, + '+', 612, + ',', 530, + '-', 603, + '.', 683, + '/', 618, + ':', 424, + ';', 649, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + '[', 656, + '\\', 60, + '^', 626, + '{', 653, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(333); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 334: - if (lookahead == '\n') SKIP(533); + ADVANCE_MAP( + '!', 425, + '$', 433, + '%', 619, + '&', 628, + '(', 594, + ')', 531, + '*', 615, + '+', 609, + ',', 530, + '-', 605, + '.', 683, + '/', 617, + ':', 665, + ';', 649, + '<', 643, + '=', 426, + '>', 632, + '?', 666, + '[', 655, + '\\', 185, + ']', 659, + '^', 625, + '{', 653, + '|', 624, + '}', 654, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(334); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 335: - if (lookahead == '\n') SKIP(533); - if (lookahead == '\r') SKIP(334); + ADVANCE_MAP( + '!', 425, + '$', 433, + '%', 619, + '&', 628, + '(', 594, + ')', 531, + '*', 615, + '+', 609, + ',', 530, + '-', 605, + '.', 683, + '/', 617, + ':', 664, + ';', 649, + '<', 643, + '=', 426, + '>', 632, + '?', 666, + '[', 655, + '\\', 64, + ']', 659, + '^', 625, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 796, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 'u', 789, + 'v', 801, + '{', 653, + '|', 624, + '}', 654, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(335); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 336: - if (lookahead == '\n') SKIP(528); + ADVANCE_MAP( + '!', 425, + '$', 433, + '%', 619, + '&', 628, + '(', 594, + ')', 531, + '*', 615, + '+', 609, + ',', 530, + '-', 605, + '.', 683, + '/', 617, + ':', 664, + ';', 649, + '<', 643, + '=', 426, + '>', 632, + '?', 666, + '[', 655, + '\\', 68, + ']', 659, + '^', 625, + '{', 653, + '|', 624, + '}', 654, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(336); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 337: - if (lookahead == '\n') SKIP(528); - if (lookahead == '\r') SKIP(336); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 425, + '$', 433, + '%', 619, + '&', 628, + '(', 594, + ')', 531, + '*', 615, + '+', 609, + '-', 605, + '.', 681, + '/', 617, + ':', 665, + '<', 643, + '=', 426, + '>', 632, + '?', 666, + '[', 655, + '\\', 102, + '^', 625, + '{', 653, + '|', 624, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(337); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 338: - if (lookahead == '\n') SKIP(545); + ADVANCE_MAP( + '!', 425, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + ')', 531, + '*', 616, + '+', 612, + ',', 530, + '-', 603, + '.', 683, + '/', 618, + ':', 665, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + '[', 655, + '\\', 239, + '^', 626, + '{', 653, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(338); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 339: - if (lookahead == '\n') SKIP(545); - if (lookahead == '\r') SKIP(338); + ADVANCE_MAP( + '!', 425, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + ')', 531, + '*', 616, + '+', 612, + ',', 530, + '-', 603, + '.', 683, + '/', 618, + ':', 664, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + '[', 655, + '\\', 217, + '^', 626, + '{', 653, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(339); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 340: - if (lookahead == '\n') SKIP(555); + ADVANCE_MAP( + '!', 425, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + ')', 531, + '*', 616, + '+', 612, + ',', 530, + '-', 603, + '.', 683, + '/', 618, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + '[', 657, + '\\', 120, + '^', 626, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(340); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 341: - if (lookahead == '\n') SKIP(555); - if (lookahead == '\r') SKIP(340); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 425, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + ')', 531, + '*', 616, + '+', 612, + ',', 530, + '-', 603, + '.', 683, + '/', 618, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + '[', 655, + '\\', 90, + '^', 626, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 796, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 'u', 789, + 'v', 801, + '{', 653, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(341); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 342: - if (lookahead == '\n') SKIP(599); + ADVANCE_MAP( + '!', 425, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + ')', 531, + '*', 616, + '+', 612, + ',', 530, + '-', 603, + '.', 683, + '/', 618, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + '[', 655, + '\\', 233, + '^', 626, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(343); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(850); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 343: - if (lookahead == '\n') SKIP(599); - if (lookahead == '\r') SKIP(342); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 425, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + ')', 531, + '*', 616, + '+', 612, + ',', 530, + '-', 603, + '.', 683, + '/', 618, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + '[', 655, + '\\', 233, + '^', 626, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(343); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 344: - if (lookahead == '\n') SKIP(547); + ADVANCE_MAP( + '!', 425, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + ')', 531, + '*', 616, + '+', 612, + ',', 530, + '-', 603, + '.', 683, + '/', 618, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + '[', 658, + '\\', 209, + '^', 626, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(344); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 345: - if (lookahead == '\n') SKIP(547); - if (lookahead == '\r') SKIP(344); + ADVANCE_MAP( + '!', 425, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + ')', 531, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + ':', 665, + '<', 641, + '=', 661, + '>', 831, + '?', 666, + '[', 655, + '\\', 175, + '^', 626, + '{', 653, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(345); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 346: - if (lookahead == '\n') SKIP(608); + ADVANCE_MAP( + '!', 425, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + ':', 664, + '<', 641, + '=', 661, + '>', 831, + '?', 666, + '[', 655, + '\\', 92, + '^', 626, + '{', 653, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(346); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 347: - if (lookahead == '\n') SKIP(608); - if (lookahead == '\r') SKIP(346); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 425, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + ';', 649, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + '[', 657, + '\\', 116, + '^', 626, + '|', 623, + '}', 654, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(347); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 348: - if (lookahead == '\n') SKIP(600); + ADVANCE_MAP( + '!', 425, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + '<', 641, + '=', 661, + '>', 831, + '?', 666, + '[', 656, + '\\', 110, + '^', 626, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(348); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 349: - if (lookahead == '\n') SKIP(600); - if (lookahead == '\r') SKIP(348); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 425, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + '<', 641, + '=', 661, + '>', 831, + '?', 666, + '[', 655, + '\\', 94, + '^', 626, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 796, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 'u', 789, + 'v', 801, + '{', 653, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(349); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 350: - if (lookahead == '\n') SKIP(571); + ADVANCE_MAP( + '!', 425, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + '<', 641, + '=', 661, + '>', 831, + '?', 666, + '[', 655, + '\\', 203, + '^', 626, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(351); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(850); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 351: - if (lookahead == '\n') SKIP(571); - if (lookahead == '\r') SKIP(350); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 425, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + '<', 641, + '=', 661, + '>', 831, + '?', 666, + '[', 655, + '\\', 203, + '^', 626, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(351); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 352: - if (lookahead == '\n') SKIP(549); + ADVANCE_MAP( + '!', 425, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + '<', 641, + '=', 661, + '>', 831, + '?', 666, + '[', 658, + '\\', 227, + '^', 626, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(352); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 353: - if (lookahead == '\n') SKIP(549); - if (lookahead == '\r') SKIP(352); + ADVANCE_MAP( + '!', 425, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + '*', 616, + '+', 612, + '-', 604, + '.', 681, + '/', 618, + ':', 665, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + '[', 655, + '\\', 100, + '^', 626, + '{', 653, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(353); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 354: - if (lookahead == '\n') SKIP(609); + ADVANCE_MAP( + '!', 425, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + '*', 616, + '+', 612, + '-', 604, + '.', 681, + '/', 618, + ':', 664, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + '[', 655, + '\\', 201, + '^', 626, + '{', 653, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(354); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 355: - if (lookahead == '\n') SKIP(609); - if (lookahead == '\r') SKIP(354); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 425, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + '*', 616, + '+', 612, + '-', 604, + '.', 681, + '/', 618, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + '[', 656, + '\\', 118, + '^', 626, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(355); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 356: - if (lookahead == '\n') SKIP(617); + ADVANCE_MAP( + '!', 425, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + '*', 616, + '+', 612, + '-', 604, + '.', 681, + '/', 618, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + '[', 655, + '\\', 98, + '^', 626, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 796, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 'u', 789, + 'v', 801, + '{', 653, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(356); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 357: - if (lookahead == '\n') SKIP(617); - if (lookahead == '\r') SKIP(356); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 425, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + '*', 616, + '+', 612, + '-', 604, + '.', 681, + '/', 618, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + '[', 655, + '\\', 207, + '^', 626, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(358); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(850); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 358: - if (lookahead == '\n') SKIP(619); + ADVANCE_MAP( + '!', 425, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + '*', 616, + '+', 612, + '-', 604, + '.', 681, + '/', 618, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + '[', 655, + '\\', 207, + '^', 626, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(358); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 359: - if (lookahead == '\n') SKIP(619); - if (lookahead == '\r') SKIP(358); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 425, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + '*', 616, + '+', 612, + '-', 604, + '.', 681, + '/', 618, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + '[', 658, + '\\', 231, + '^', 626, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(359); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 360: - if (lookahead == '\n') SKIP(618); + ADVANCE_MAP( + '!', 425, + '$', 434, + '%', 620, + '&', 629, + ')', 531, + '*', 616, + '+', 614, + ',', 530, + '-', 607, + '.', 399, + '/', 618, + '<', 642, + '=', 661, + '>', 633, + '\\', 124, + '^', 626, + '|', 623, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(360); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 361: - if (lookahead == '\n') SKIP(618); - if (lookahead == '\r') SKIP(360); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 425, + '$', 434, + '%', 619, + '&', 628, + '(', 594, + ')', 531, + '*', 615, + '+', 609, + ',', 530, + '-', 605, + '.', 683, + '/', 617, + ':', 665, + ';', 649, + '<', 643, + '=', 661, + '>', 632, + '?', 666, + '[', 656, + '\\', 50, + '^', 625, + '{', 653, + '|', 624, + '}', 654, + '~', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(361); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 362: - if (lookahead == '\n') SKIP(638); + ADVANCE_MAP( + '!', 425, + '$', 434, + '%', 619, + '&', 628, + '(', 594, + ')', 531, + '*', 615, + '+', 609, + ',', 530, + '-', 605, + '.', 683, + '/', 617, + ':', 424, + ';', 649, + '<', 643, + '=', 426, + '>', 632, + '?', 666, + '[', 655, + '\\', 181, + ']', 436, + '^', 625, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 796, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 'u', 789, + 'v', 801, + '{', 653, + '|', 624, + '}', 654, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(362); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 363: - if (lookahead == '\n') SKIP(638); - if (lookahead == '\r') SKIP(362); + ADVANCE_MAP( + '!', 425, + '$', 434, + '%', 619, + '&', 628, + '(', 594, + ')', 531, + '*', 615, + '+', 609, + ',', 530, + '-', 605, + '.', 683, + '/', 617, + ':', 664, + ';', 649, + '<', 643, + '=', 426, + '>', 831, + '?', 666, + '[', 655, + '\\', 179, + '^', 625, + '{', 653, + '|', 624, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(363); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 364: - if (lookahead == '\n') SKIP(621); + ADVANCE_MAP( + '!', 425, + '$', 434, + '%', 619, + '&', 628, + '(', 594, + '*', 615, + '+', 609, + ',', 530, + '-', 605, + '.', 683, + '/', 617, + ':', 665, + '<', 643, + '=', 426, + '>', 831, + '?', 666, + '[', 655, + '\\', 199, + '^', 625, + '{', 653, + '|', 624, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(364); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 365: - if (lookahead == '\n') SKIP(621); - if (lookahead == '\r') SKIP(364); + ADVANCE_MAP( + '!', 425, + '$', 434, + '%', 619, + '&', 628, + '(', 594, + '*', 615, + '+', 609, + ',', 530, + '-', 605, + '.', 683, + '/', 617, + ':', 424, + '<', 643, + '=', 426, + '>', 831, + '?', 666, + '[', 655, + '\\', 88, + '^', 625, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 796, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 'u', 789, + 'v', 801, + '{', 653, + '|', 624, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(365); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 366: - if (lookahead == '\n') SKIP(623); + ADVANCE_MAP( + '!', 425, + '$', 434, + '%', 619, + '&', 628, + '(', 594, + '*', 615, + '+', 609, + ',', 530, + '-', 605, + '.', 683, + '/', 617, + '<', 643, + '=', 426, + '>', 831, + '?', 666, + '[', 655, + '\\', 245, + '^', 625, + '|', 624, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(367); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(850); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 367: - if (lookahead == '\n') SKIP(623); - if (lookahead == '\r') SKIP(366); + ADVANCE_MAP( + '!', 425, + '$', 434, + '%', 619, + '&', 628, + '(', 594, + '*', 615, + '+', 609, + ',', 530, + '-', 605, + '.', 683, + '/', 617, + '<', 643, + '=', 426, + '>', 831, + '?', 666, + '[', 655, + '\\', 245, + '^', 625, + '|', 624, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(367); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 368: - if (lookahead == '\n') SKIP(620); + ADVANCE_MAP( + '!', 425, + '$', 434, + '%', 619, + '&', 628, + '(', 594, + '*', 615, + '+', 609, + '-', 605, + '.', 681, + '/', 617, + ':', 665, + '<', 643, + '=', 426, + '>', 632, + '?', 666, + '[', 655, + '\\', 86, + '^', 625, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 796, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 'u', 789, + 'v', 801, + '{', 653, + '|', 624, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(368); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 369: - if (lookahead == '\n') SKIP(620); - if (lookahead == '\r') SKIP(368); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 425, + '$', 434, + '%', 619, + '&', 628, + '(', 594, + '*', 615, + '+', 609, + '-', 605, + '.', 681, + '/', 617, + ':', 665, + '<', 643, + '=', 426, + '>', 632, + '?', 666, + '[', 655, + '\\', 243, + '^', 625, + '{', 653, + '|', 624, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(369); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 370: - if (lookahead == '\n') SKIP(572); + ADVANCE_MAP( + '!', 425, + '$', 434, + '%', 619, + '&', 628, + '(', 594, + '*', 615, + '+', 609, + '-', 605, + '.', 681, + '/', 617, + ':', 664, + '<', 643, + '=', 426, + '>', 632, + '?', 666, + '[', 655, + '\\', 197, + '^', 625, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 796, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 'u', 789, + 'v', 801, + '{', 653, + '|', 624, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(370); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 371: - if (lookahead == '\n') SKIP(572); - if (lookahead == '\r') SKIP(370); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 425, + '$', 434, + '%', 619, + '&', 628, + '(', 594, + '*', 615, + '+', 609, + '-', 605, + '.', 681, + '/', 617, + ':', 664, + '<', 643, + '=', 426, + '>', 632, + '?', 666, + '[', 655, + '\\', 225, + '^', 625, + '{', 653, + '|', 624, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(371); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 372: - if (lookahead == '\n') SKIP(563); + ADVANCE_MAP( + '!', 425, + '$', 434, + '%', 619, + '&', 628, + '(', 594, + '*', 615, + '+', 609, + '-', 605, + '.', 681, + '/', 617, + '<', 643, + '=', 426, + '>', 632, + '?', 666, + '[', 655, + '\\', 247, + '^', 625, + '|', 624, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(373); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(850); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 373: - if (lookahead == '\n') SKIP(563); - if (lookahead == '\r') SKIP(372); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '!', 425, + '$', 434, + '%', 619, + '&', 628, + '(', 594, + '*', 615, + '+', 609, + '-', 605, + '.', 681, + '/', 617, + '<', 643, + '=', 426, + '>', 632, + '?', 666, + '[', 655, + '\\', 247, + '^', 625, + '|', 624, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(373); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 374: - if (lookahead == '\n') SKIP(672); + ADVANCE_MAP( + '"', 718, + '$', 434, + '&', 628, + '(', 594, + '*', 615, + '/', 400, + ':', 424, + 'L', 734, + 'U', 738, + '[', 656, + '\\', 104, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 796, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 'u', 741, + 'v', 801, + '~', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(374); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 375: - if (lookahead == '\n') SKIP(672); - if (lookahead == '\r') SKIP(374); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '"', 718, + '$', 434, + ')', 531, + '/', 400, + ':', 664, + 'L', 733, + 'R', 735, + 'U', 737, + '\\', 141, + 'u', 740, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(375); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 376: - if (lookahead == '\n') SKIP(636); + ADVANCE_MAP( + '"', 718, + '$', 434, + '/', 400, + '<', 428, + 'L', 734, + 'U', 738, + '\\', 145, + 'u', 742, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(376); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 377: - if (lookahead == '\n') SKIP(636); - if (lookahead == '\r') SKIP(376); + if (lookahead == '"') ADVANCE(718); + if (lookahead == '/') ADVANCE(400); + if (lookahead == '\\') ADVANCE(147); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(377); END_STATE(); case 378: - if (lookahead == '\n') SKIP(627); + if (lookahead == '"') ADVANCE(840); END_STATE(); case 379: - if (lookahead == '\n') SKIP(627); - if (lookahead == '\r') SKIP(378); + ADVANCE_MAP( + '#', 444, + '$', 433, + '&', 628, + '(', 594, + ')', 531, + '*', 615, + ',', 530, + '.', 414, + '/', 400, + ':', 424, + ';', 649, + '<', 637, + '[', 656, + '\\', 32, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 796, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 'u', 789, + 'v', 801, + '{', 653, + '}', 654, + '~', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(379); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 380: - if (lookahead == '\n') SKIP(634); + ADVANCE_MAP( + '#', 448, + '$', 434, + '&', 628, + '(', 594, + ')', 531, + '*', 615, + ',', 530, + '-', 427, + '.', 414, + '/', 400, + ':', 665, + ';', 649, + '<', 637, + '=', 660, + '>', 831, + '[', 655, + '\\', 84, + '{', 653, + '|', 466, + '~', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(380); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 381: - if (lookahead == '\n') SKIP(634); - if (lookahead == '\r') SKIP(380); + ADVANCE_MAP( + '#', 440, + '$', 433, + '&', 628, + '(', 594, + '*', 615, + ',', 530, + '.', 414, + '/', 400, + ':', 424, + ';', 649, + '[', 656, + '\\', 30, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 796, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 'u', 789, + 'v', 801, + '~', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(381); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 382: - if (lookahead == '\n') SKIP(670); + ADVANCE_MAP( + '#', 452, + '$', 434, + '&', 628, + '(', 594, + ')', 531, + '*', 615, + ',', 530, + '-', 427, + '.', 414, + '/', 400, + ':', 665, + ';', 649, + '<', 637, + '=', 660, + '>', 831, + '[', 656, + '\\', 195, + '{', 653, + '|', 466, + '~', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(382); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 383: - if (lookahead == '\n') SKIP(670); - if (lookahead == '\r') SKIP(382); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '#', 442, + '$', 433, + '&', 628, + '(', 594, + ')', 531, + '*', 615, + ',', 530, + '.', 414, + '/', 400, + ':', 665, + ';', 649, + '<', 637, + '=', 660, + '[', 656, + '\\', 28, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 796, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 'u', 789, + 'v', 801, + '{', 653, + '~', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(383); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 384: - if (lookahead == '\n') SKIP(671); + ADVANCE_MAP( + '$', 433, + '&', 628, + '(', 594, + ')', 531, + '*', 615, + ',', 530, + '-', 427, + '.', 414, + '/', 400, + ':', 664, + ';', 649, + '=', 660, + '>', 831, + '[', 656, + '\\', 122, + '{', 653, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(384); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 385: - if (lookahead == '\n') SKIP(671); - if (lookahead == '\r') SKIP(384); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '$', 433, + '&', 628, + '(', 594, + ')', 531, + '*', 615, + ',', 530, + '.', 414, + '/', 400, + ':', 665, + ';', 649, + '<', 637, + '>', 831, + '[', 655, + '\\', 128, + '{', 653, + '|', 466, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(385); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 386: - if (lookahead == '\n') SKIP(684); + ADVANCE_MAP( + '$', 433, + '(', 594, + ')', 531, + ',', 530, + '.', 414, + '/', 400, + ':', 664, + ';', 649, + '=', 660, + '>', 831, + '[', 655, + '\\', 139, + '{', 653, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(386); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 387: - if (lookahead == '\n') SKIP(684); - if (lookahead == '\r') SKIP(386); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '$', 434, + '&', 628, + '(', 594, + ')', 531, + '*', 615, + ',', 530, + '-', 427, + '.', 414, + '/', 400, + ':', 665, + ';', 649, + '<', 637, + '=', 660, + '>', 831, + '[', 656, + '\\', 36, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 796, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 'u', 789, + 'v', 801, + '{', 653, + '|', 466, + '~', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(387); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 388: - if (lookahead == '\n') SKIP(722); + ADVANCE_MAP( + '$', 434, + '&', 628, + '(', 594, + ')', 531, + '*', 615, + ',', 530, + '-', 427, + '.', 414, + '/', 400, + ':', 664, + ';', 649, + '<', 637, + '=', 660, + '>', 831, + '[', 656, + '\\', 114, + '{', 653, + '|', 466, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(388); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 389: - if (lookahead == '\n') SKIP(722); - if (lookahead == '\r') SKIP(388); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '$', 434, + '&', 628, + '(', 594, + ')', 531, + '*', 615, + ',', 530, + '.', 680, + '/', 400, + ';', 649, + '<', 637, + '=', 660, + '>', 831, + '[', 655, + '\\', 126, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 796, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 'u', 789, + 'v', 801, + '{', 653, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(389); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 390: - if (lookahead == '\n') SKIP(682); + ADVANCE_MAP( + '$', 434, + '&', 628, + '(', 594, + ')', 531, + '*', 615, + ',', 530, + '/', 400, + ':', 664, + ';', 649, + '<', 637, + '=', 660, + '>', 831, + '[', 656, + '\\', 106, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 796, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 'u', 789, + 'v', 801, + '{', 653, + '|', 466, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(390); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 391: - if (lookahead == '\n') SKIP(682); - if (lookahead == '\r') SKIP(390); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '$', 434, + '&', 628, + '(', 594, + ')', 531, + '*', 615, + ',', 530, + '/', 400, + ':', 664, + ';', 649, + '=', 660, + '>', 831, + '[', 655, + '\\', 130, + '{', 653, + '|', 466, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(391); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 392: - if (lookahead == '\n') SKIP(703); + ADVANCE_MAP( + '$', 434, + '(', 594, + ')', 531, + ',', 530, + '/', 400, + ':', 664, + ';', 649, + '<', 637, + '=', 660, + '>', 831, + '[', 657, + '\\', 143, + '{', 653, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(392); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 393: - if (lookahead == '\n') SKIP(703); - if (lookahead == '\r') SKIP(392); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ADVANCE_MAP( + '$', 434, + '(', 594, + '/', 400, + ':', 424, + 'F', 758, + 'T', 762, + '[', 655, + '\\', 132, + 'f', 768, + 't', 809, + '{', 653, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(393); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 394: - if (lookahead == '\n') SKIP(573); + if (lookahead == '\'') ADVANCE(709); + if (lookahead == '/') ADVANCE(400); + if (lookahead == '\\') ADVANCE(147); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(394); END_STATE(); case 395: - if (lookahead == '\n') SKIP(573); - if (lookahead == '\r') SKIP(394); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\'') ADVANCE(477); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(467); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(395); END_STATE(); case 396: - if (lookahead == '\n') SKIP(574); + if (lookahead == '\'') ADVANCE(473); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(467); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(396); END_STATE(); case 397: - if (lookahead == '\n') SKIP(574); - if (lookahead == '\r') SKIP(396); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '(') ADVANCE(594); + if (lookahead == '/') ADVANCE(400); + if (lookahead == '\\') SKIP(155); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(397); END_STATE(); case 398: - if (lookahead == '\n') SKIP(564); + if (lookahead == ')') ADVANCE(838); END_STATE(); case 399: - if (lookahead == '\n') SKIP(564); - if (lookahead == '\r') SKIP(398); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '*') ADVANCE(686); END_STATE(); case 400: - if (lookahead == '\n') SKIP(673); + if (lookahead == '*') ADVANCE(403); + if (lookahead == '/') ADVANCE(829); END_STATE(); case 401: - if (lookahead == '\n') SKIP(673); - if (lookahead == '\r') SKIP(400); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '*') ADVANCE(837); END_STATE(); case 402: - if (lookahead == '\n') SKIP(678); + if (lookahead == '*') ADVANCE(402); + if (lookahead == '/') ADVANCE(822); + if (lookahead != 0) ADVANCE(403); END_STATE(); case 403: - if (lookahead == '\n') SKIP(678); - if (lookahead == '\r') SKIP(402); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '*') ADVANCE(402); + if (lookahead != 0) ADVANCE(403); END_STATE(); case 404: - if (lookahead == '\n') SKIP(702); + if (lookahead == '*') ADVANCE(402); + if (lookahead != 0) ADVANCE(549); END_STATE(); case 405: - if (lookahead == '\n') SKIP(702); - if (lookahead == '\r') SKIP(404); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '.') ADVANCE(412); + if (lookahead == '\\') ADVANCE(431); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(851); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 406: - if (lookahead == '\n') SKIP(567); + if (lookahead == '.') ADVANCE(412); + if (lookahead == '\\') ADVANCE(431); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 407: - if (lookahead == '\n') SKIP(567); - if (lookahead == '\r') SKIP(406); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '.') ADVANCE(529); END_STATE(); case 408: - if (lookahead == '\n') SKIP(568); + if (lookahead == '.') ADVANCE(493); END_STATE(); case 409: - if (lookahead == '\n') SKIP(568); - if (lookahead == '\r') SKIP(408); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '.') ADVANCE(852); END_STATE(); case 410: - if (lookahead == '\n') SKIP(575); + if (lookahead == '.') ADVANCE(528); END_STATE(); case 411: - if (lookahead == '\n') SKIP(575); - if (lookahead == '\r') SKIP(410); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '.') ADVANCE(477); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(696); END_STATE(); case 412: - if (lookahead == '\n') SKIP(679); + if (lookahead == '.') ADVANCE(408); END_STATE(); case 413: - if (lookahead == '\n') SKIP(679); - if (lookahead == '\r') SKIP(412); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '.') ADVANCE(409); END_STATE(); case 414: - if (lookahead == '\n') SKIP(674); + if (lookahead == '.') ADVANCE(410); END_STATE(); case 415: - if (lookahead == '\n') SKIP(674); - if (lookahead == '\r') SKIP(414); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '.') ADVANCE(410); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(690); END_STATE(); case 416: - if (lookahead == '\n') SKIP(683); + if (lookahead == '.') ADVANCE(413); END_STATE(); case 417: - if (lookahead == '\n') SKIP(683); - if (lookahead == '\r') SKIP(416); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '/') ADVANCE(556); + if (lookahead == '\\') ADVANCE(551); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(417); + if (lookahead != 0) ADVANCE(558); END_STATE(); case 418: - if (lookahead == '\n') SKIP(514); + if (lookahead == '1') ADVANCE(422); END_STATE(); case 419: - if (lookahead == '\n') SKIP(514); - if (lookahead == '\r') SKIP(418); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '2') ADVANCE(689); END_STATE(); case 420: - if (lookahead == '\n') SKIP(691); + if (lookahead == '2') ADVANCE(423); + if (lookahead == '6') ADVANCE(689); END_STATE(); case 421: - if (lookahead == '\n') SKIP(691); - if (lookahead == '\r') SKIP(420); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '4') ADVANCE(689); END_STATE(); case 422: - if (lookahead == '\n') SKIP(705); + if (lookahead == '6') ADVANCE(689); END_STATE(); case 423: - if (lookahead == '\n') SKIP(705); - if (lookahead == '\r') SKIP(422); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '8') ADVANCE(689); END_STATE(); case 424: - if (lookahead == '\n') SKIP(593); + if (lookahead == ':') ADVANCE(650); END_STATE(); case 425: - if (lookahead == '\n') SKIP(593); - if (lookahead == '\r') SKIP(424); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '=') ADVANCE(631); END_STATE(); case 426: - if (lookahead == '\n') SKIP(577); + if (lookahead == '=') ADVANCE(630); END_STATE(); case 427: - if (lookahead == '\n') SKIP(577); - if (lookahead == '\r') SKIP(426); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '>') ADVANCE(687); END_STATE(); case 428: - if (lookahead == '\n') SKIP(594); + if (lookahead == '>') ADVANCE(728); + if (lookahead == '\\') ADVANCE(429); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(428); END_STATE(); case 429: - if (lookahead == '\n') SKIP(594); - if (lookahead == '\r') SKIP(428); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '>') ADVANCE(729); + if (lookahead == '\\') ADVANCE(429); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(428); END_STATE(); case 430: - if (lookahead == '\n') SKIP(578); + if (lookahead == 'F') ADVANCE(418); END_STATE(); case 431: - if (lookahead == '\n') SKIP(578); - if (lookahead == '\r') SKIP(430); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'U') ADVANCE(491); + if (lookahead == 'u') ADVANCE(483); END_STATE(); case 432: - if (lookahead == '\n') SKIP(595); + if (lookahead == '[') ADVANCE(651); + if (lookahead == ']') ADVANCE(839); END_STATE(); case 433: - if (lookahead == '\n') SKIP(595); - if (lookahead == '\r') SKIP(432); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '\\') ADVANCE(431); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(851); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 434: - if (lookahead == '\n') SKIP(596); + if (lookahead == '\\') ADVANCE(431); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 435: - if (lookahead == '\n') SKIP(596); - if (lookahead == '\r') SKIP(434); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == ']') ADVANCE(839); END_STATE(); case 436: - if (lookahead == '\n') SKIP(589); + if (lookahead == ']') ADVANCE(652); END_STATE(); case 437: - if (lookahead == '\n') SKIP(589); - if (lookahead == '\r') SKIP(436); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'd') ADVANCE(565); + if (lookahead == 'e') ADVANCE(587); + if (lookahead == 'i') ADVANCE(573); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(437); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 438: - if (lookahead == '\n') SKIP(597); + if (lookahead == 'd') ADVANCE(565); + if (lookahead == 'e') ADVANCE(587); + if (lookahead == 'i') ADVANCE(574); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(438); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 439: - if (lookahead == '\n') SKIP(597); - if (lookahead == '\r') SKIP(438); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'd') ADVANCE(565); + if (lookahead == 'e') ADVANCE(590); + if (lookahead == 'i') ADVANCE(573); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(439); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 440: - if (lookahead == '\n') SKIP(598); + if (lookahead == 'd') ADVANCE(565); + if (lookahead == 'e') ADVANCE(590); + if (lookahead == 'i') ADVANCE(574); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(440); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 441: - if (lookahead == '\n') SKIP(598); - if (lookahead == '\r') SKIP(440); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'd') ADVANCE(565); + if (lookahead == 'e') ADVANCE(589); + if (lookahead == 'i') ADVANCE(573); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(441); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 442: - if (lookahead == '\n') SKIP(590); + if (lookahead == 'd') ADVANCE(565); + if (lookahead == 'e') ADVANCE(589); + if (lookahead == 'i') ADVANCE(574); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(442); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 443: - if (lookahead == '\n') SKIP(590); - if (lookahead == '\r') SKIP(442); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'd') ADVANCE(565); + if (lookahead == 'i') ADVANCE(573); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(443); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 444: - if (lookahead == '\n') SKIP(591); + if (lookahead == 'd') ADVANCE(565); + if (lookahead == 'i') ADVANCE(574); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(444); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 445: - if (lookahead == '\n') SKIP(591); - if (lookahead == '\r') SKIP(444); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'd') ADVANCE(459); END_STATE(); case 446: - if (lookahead == '\n') SKIP(592); + if (lookahead == 'd') ADVANCE(451); END_STATE(); case 447: - if (lookahead == '\n') SKIP(592); - if (lookahead == '\r') SKIP(446); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'e') ADVANCE(465); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(447); END_STATE(); case 448: - if (lookahead == '\n') SKIP(601); + if (lookahead == 'e') ADVANCE(463); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(448); END_STATE(); case 449: - if (lookahead == '\n') SKIP(601); - if (lookahead == '\r') SKIP(448); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'e') ADVANCE(538); END_STATE(); case 450: - if (lookahead == '\n') SKIP(492); + if (lookahead == 'e') ADVANCE(456); END_STATE(); case 451: - if (lookahead == '\n') SKIP(492); - if (lookahead == '\r') SKIP(450); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'e') ADVANCE(457); END_STATE(); case 452: - if (lookahead == '\n') SKIP(477); + if (lookahead == 'e') ADVANCE(464); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(452); END_STATE(); case 453: - if (lookahead == '\n') SKIP(477); - if (lookahead == '\r') SKIP(452); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'f') ADVANCE(418); END_STATE(); case 454: - if (lookahead == '\n') SKIP(507); + if (lookahead == 'f') ADVANCE(534); END_STATE(); case 455: - if (lookahead == '\n') SKIP(507); - if (lookahead == '\r') SKIP(454); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'f') ADVANCE(541); END_STATE(); case 456: - if (lookahead == '\n') SKIP(579); + if (lookahead == 'f') ADVANCE(544); END_STATE(); case 457: - if (lookahead == '\n') SKIP(579); - if (lookahead == '\r') SKIP(456); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'f') ADVANCE(546); END_STATE(); case 458: - if (lookahead == '\n') SKIP(583); + if (lookahead == 'f') ADVANCE(540); END_STATE(); case 459: - if (lookahead == '\n') SKIP(583); - if (lookahead == '\r') SKIP(458); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'i') ADVANCE(454); END_STATE(); case 460: - if (lookahead == '\n') SKIP(580); + if (lookahead == 'i') ADVANCE(455); + if (lookahead == 's') ADVANCE(449); END_STATE(); case 461: - if (lookahead == '\n') SKIP(580); - if (lookahead == '\r') SKIP(460); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'i') ADVANCE(458); + if (lookahead == 's') ADVANCE(449); END_STATE(); case 462: - if (lookahead == '\n') SKIP(584); + if (lookahead == 'i') ADVANCE(574); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(462); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 463: - if (lookahead == '\n') SKIP(584); - if (lookahead == '\r') SKIP(462); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'l') ADVANCE(460); + if (lookahead == 'n') ADVANCE(445); END_STATE(); case 464: - if (lookahead == '\n') SKIP(581); + if (lookahead == 'l') ADVANCE(461); + if (lookahead == 'n') ADVANCE(445); END_STATE(); case 465: - if (lookahead == '\n') SKIP(581); - if (lookahead == '\r') SKIP(464); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == 'n') ADVANCE(445); END_STATE(); case 466: - if (lookahead == '\n') SKIP(582); + if (lookahead == '|') ADVANCE(621); END_STATE(); case 467: - if (lookahead == '\n') SKIP(582); - if (lookahead == '\r') SKIP(466); - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + if (lookahead == '+' || + lookahead == '-') ADVANCE(474); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(695); END_STATE(); case 468: - if (lookahead == '\r') ADVANCE(1680); - if (lookahead == '\\') ADVANCE(1674); - if (lookahead != 0) ADVANCE(1679); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(467); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(395); END_STATE(); case 469: - ADVANCE_MAP( - '!', 1137, - '"', 1347, - '#', 804, - '$', 742, - '%', 1161, - '&', 1170, - '\'', 1338, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1151, - ',', 1071, - '-', 1140, - '.', 1311, - '/', 1159, - '0', 1320, - ':', 1242, - ';', 1190, - '<', 1180, - '=', 1216, - '>', 1689, - '?', 1243, - 'F', 1389, - 'L', 1361, - 'R', 1364, - 'T', 1397, - 'U', 1365, - '[', 1212, - '\\', 2, - ']', 1214, - '^', 1167, - '_', 1390, - 'a', 1532, - 'b', 1502, - 'c', 1489, - 'd', 1451, - 'f', 1415, - 'i', 1543, - 'l', 1567, - 'm', 1418, - 'n', 1556, - 'o', 1591, - 'p', 1627, - 'r', 1453, - 's', 1493, - 't', 1491, - 'u', 1368, - 'v', 1557, - 'x', 1566, - '{', 1200, - '|', 1164, - '}', 1201, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(469); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (lookahead == '0' || + lookahead == '1') ADVANCE(693); END_STATE(); case 470: - ADVANCE_MAP( - '!', 1137, - '"', 1347, - '#', 804, - '$', 743, - '%', 1160, - '&', 1169, - '\'', 1338, - '(', 1135, - '*', 1156, - '+', 1152, - ',', 1071, - '-', 1142, - '.', 1313, - '/', 1158, - '0', 1320, - ':', 761, - ';', 1190, - '<', 1181, - '=', 763, - '>', 1173, - '?', 1243, - 'F', 1389, - 'L', 1361, - 'R', 1364, - 'T', 1397, - 'U', 1365, - '[', 1211, - '\\', 12, - '^', 1166, - '_', 1390, - 'a', 1546, - 'b', 1502, - 'c', 1489, - 'd', 1451, - 'f', 1416, - 'i', 1543, - 'l', 1567, - 'm', 1418, - 'n', 1560, - 'o', 1598, - 'p', 1627, - 'r', 1453, - 's', 1493, - 't', 1491, - 'u', 1368, - 'v', 1557, - 'x', 1576, - '{', 1200, - '|', 1165, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(470); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (lookahead == '8' || + lookahead == '9') ADVANCE(396); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(692); END_STATE(); case 471: - ADVANCE_MAP( - '!', 1137, - '"', 1347, - '#', 810, - '$', 743, - '%', 1160, - '&', 1169, - '\'', 1338, - '(', 1135, - ')', 1072, - '*', 1156, - '+', 1152, - ',', 1071, - '-', 1142, - '.', 1313, - '/', 1158, - '0', 1320, - ':', 1242, - ';', 1190, - '<', 1181, - '=', 763, - '>', 1173, - '?', 1243, - 'F', 1389, - 'L', 1361, - 'R', 1364, - 'T', 1397, - 'U', 1365, - '[', 1211, - '\\', 14, - '^', 1166, - '_', 1390, - 'a', 1546, - 'b', 1502, - 'c', 1489, - 'd', 1451, - 'f', 1416, - 'i', 1543, - 'l', 1567, - 'm', 1418, - 'n', 1560, - 'o', 1598, - 'p', 1627, - 'r', 1453, - 's', 1493, - 't', 1491, - 'u', 1368, - 'v', 1557, - 'x', 1576, - '{', 1200, - '|', 1165, - '}', 1201, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(471); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(694); END_STATE(); case 472: - ADVANCE_MAP( - '!', 1137, - '"', 1347, - '#', 806, - '$', 743, - '%', 1160, - '&', 1169, - '\'', 1338, - '(', 1135, - '*', 1156, - '+', 1152, - ',', 1071, - '-', 1142, - '.', 1313, - '/', 1158, - '0', 1320, - ':', 761, - ';', 1190, - '<', 1181, - '=', 763, - '>', 1173, - '?', 1243, - 'F', 1389, - 'L', 1361, - 'R', 1364, - 'T', 1397, - 'U', 1365, - '[', 1211, - '\\', 299, - '^', 1166, - '_', 1390, - 'a', 1546, - 'b', 1502, - 'c', 1489, - 'd', 1451, - 'f', 1416, - 'i', 1543, - 'l', 1567, - 'm', 1418, - 'n', 1560, - 'o', 1598, - 'p', 1627, - 'r', 1453, - 's', 1493, - 't', 1491, - 'u', 1368, - 'v', 1557, - 'x', 1576, - '{', 1200, - '|', 1165, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(472); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(690); END_STATE(); case 473: - ADVANCE_MAP( - '!', 1137, - '"', 1347, - '#', 821, - '$', 743, - '%', 1161, - '&', 1170, - '\'', 1338, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1151, - ',', 1071, - '-', 1141, - '.', 1313, - '/', 1159, - '0', 1320, - ':', 1242, - ';', 1190, - '<', 1180, - '=', 1216, - '>', 1174, - '?', 1243, - 'F', 1389, - 'L', 1361, - 'R', 1364, - 'T', 1397, - 'U', 1365, - '[', 1210, - '\\', 18, - ']', 1214, - '^', 1167, - '_', 1406, - 'a', 1533, - 'b', 1502, - 'c', 1490, - 'd', 1451, - 'f', 1416, - 'i', 1543, - 'm', 1419, - 'n', 1574, - 'o', 1592, - 'p', 1627, - 'r', 1474, - 's', 1495, - 't', 1601, - 'u', 1369, - 'v', 1573, - 'x', 1566, - '{', 1200, - '|', 1164, - '}', 1201, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(473); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(396); END_STATE(); case 474: - ADVANCE_MAP( - '!', 1137, - '"', 1347, - '#', 821, - '$', 743, - '%', 1160, - '&', 1169, - '\'', 1338, - '(', 1135, - ')', 1072, - '*', 1156, - '+', 1152, - ',', 1071, - '-', 1142, - '.', 1313, - '/', 1158, - '0', 1320, - ':', 1242, - ';', 1190, - '<', 1181, - '=', 763, - '>', 1173, - '?', 1243, - 'F', 1389, - 'L', 1361, - 'R', 1364, - 'T', 1397, - 'U', 1365, - '[', 1210, - '\\', 301, - ']', 1214, - '^', 1166, - '_', 1406, - 'a', 1547, - 'b', 1502, - 'c', 1490, - 'd', 1451, - 'f', 1416, - 'i', 1543, - 'm', 1419, - 'n', 1574, - 'o', 1598, - 'p', 1627, - 'r', 1474, - 's', 1495, - 't', 1601, - 'u', 1369, - 'v', 1573, - 'x', 1576, - '{', 1200, - '|', 1165, - '}', 1201, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(474); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(695); END_STATE(); case 475: - ADVANCE_MAP( - '!', 1137, - '"', 1347, - '#', 849, - '$', 743, - '%', 1161, - '&', 1170, - '\'', 1338, - '(', 1135, - '*', 1157, - '+', 1151, - ',', 1071, - '-', 1141, - '.', 1313, - '/', 1159, - '0', 1320, - ':', 761, - '<', 1180, - '=', 1216, - '>', 1174, - '?', 1243, - 'F', 1389, - 'L', 1361, - 'R', 1364, - 'T', 1397, - 'U', 1365, - '[', 1210, - '\\', 22, - '^', 1167, - '_', 1406, - 'a', 1533, - 'b', 1502, - 'c', 1490, - 'd', 1451, - 'f', 1416, - 'i', 1543, - 'm', 1419, - 'n', 1574, - 'o', 1592, - 'p', 1627, - 'r', 1474, - 's', 1495, - 't', 1601, - 'u', 1369, - 'v', 1573, - 'x', 1566, - '{', 1200, - '|', 1164, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(475); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(821); END_STATE(); case 476: - ADVANCE_MAP( - '!', 1137, - '"', 1347, - '#', 849, - '$', 743, - '%', 1160, - '&', 1169, - '\'', 1338, - '(', 1135, - '*', 1156, - '+', 1152, - ',', 1071, - '-', 1142, - '.', 1313, - '/', 1158, - '0', 1320, - ':', 761, - '<', 1181, - '=', 763, - '>', 1173, - '?', 1243, - 'F', 1389, - 'L', 1361, - 'R', 1364, - 'T', 1397, - 'U', 1365, - '[', 1210, - '\\', 303, - '^', 1166, - '_', 1406, - 'a', 1547, - 'b', 1502, - 'c', 1490, - 'd', 1451, - 'f', 1416, - 'i', 1543, - 'm', 1419, - 'n', 1574, - 'o', 1598, - 'p', 1627, - 'r', 1474, - 's', 1495, - 't', 1601, - 'u', 1369, - 'v', 1573, - 'x', 1576, - '{', 1200, - '|', 1165, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(476); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(696); END_STATE(); case 477: - ADVANCE_MAP( - '!', 1137, - '"', 1347, - '#', 808, - '$', 743, - '%', 1160, - '&', 1169, - '\'', 1338, - '(', 1135, - '*', 1156, - '+', 1152, - ',', 1071, - '-', 1142, - '.', 1313, - '/', 1158, - '0', 1320, - ':', 761, - ';', 1190, - '<', 1181, - '=', 763, - '>', 1173, - '?', 1243, - 'F', 1389, - 'L', 1361, - 'R', 1364, - 'T', 1397, - 'U', 1365, - '[', 1211, - '\\', 453, - '^', 1166, - '_', 1390, - 'a', 1546, - 'b', 1502, - 'c', 1489, - 'd', 1451, - 'f', 1416, - 'i', 1543, - 'l', 1567, - 'm', 1418, - 'n', 1560, - 'o', 1598, - 'p', 1627, - 'r', 1453, - 's', 1493, - 't', 1491, - 'u', 1368, - 'v', 1557, - 'x', 1576, - '{', 1200, - '|', 1165, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(477); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(395); END_STATE(); case 478: - ADVANCE_MAP( - '!', 1137, - '"', 1347, - '$', 743, - '%', 1161, - '&', 1170, - '\'', 1338, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1151, - ',', 1071, - '-', 1140, - '.', 1313, - '/', 1159, - '0', 1320, - ':', 761, - '<', 1180, - '=', 1216, - '>', 1174, - '?', 1243, - 'F', 1389, - 'L', 1361, - 'R', 1364, - 'T', 1397, - 'U', 1365, - '[', 1210, - '\\', 26, - '^', 1167, - '_', 1406, - 'a', 1533, - 'b', 1502, - 'c', 1490, - 'd', 1451, - 'f', 1416, - 'i', 1543, - 'm', 1419, - 'n', 1574, - 'o', 1592, - 'p', 1627, - 'r', 1474, - 's', 1495, - 't', 1601, - 'u', 1369, - 'v', 1573, - 'x', 1566, - '{', 1200, - '|', 1164, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(478); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(724); END_STATE(); case 479: - ADVANCE_MAP( - '!', 1137, - '"', 1347, - '$', 743, - '%', 1161, - '&', 1170, - '\'', 1338, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1151, - ',', 1071, - '-', 1140, - '.', 1313, - '/', 1159, - '0', 1320, - ':', 761, - '<', 1180, - '=', 1216, - '>', 1174, - '?', 1243, - 'F', 1389, - 'L', 1361, - 'R', 1364, - 'T', 1397, - 'U', 1365, - '[', 1210, - '\\', 307, - '^', 1167, - '_', 1406, - 'a', 1547, - 'b', 1502, - 'c', 1490, - 'd', 1451, - 'f', 1416, - 'i', 1543, - 'm', 1419, - 'n', 1574, - 'o', 1598, - 'p', 1627, - 'r', 1474, - 's', 1495, - 't', 1601, - 'u', 1369, - 'v', 1573, - 'x', 1576, - '{', 1200, - '|', 1164, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(479); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(475); END_STATE(); case 480: - ADVANCE_MAP( - '!', 1137, - '"', 1347, - '$', 743, - '%', 1161, - '&', 1170, - '\'', 1338, - '(', 1135, - '*', 1157, - '+', 1151, - ',', 1071, - '-', 1141, - '.', 1313, - '/', 1159, - '0', 1320, - ':', 761, - ';', 1190, - '<', 1180, - '=', 1216, - '>', 1174, - '?', 1243, - 'F', 1389, - 'L', 1361, - 'R', 1364, - 'T', 1397, - 'U', 1365, - '[', 1210, - '\\', 24, - '^', 1167, - '_', 1408, - 'a', 1533, - 'b', 1502, - 'c', 1490, - 'd', 1451, - 'f', 1416, - 'i', 1543, - 'm', 1419, - 'n', 1574, - 'o', 1592, - 'p', 1627, - 'r', 1474, - 's', 1495, - 't', 1601, - 'u', 1369, - 'v', 1573, - 'x', 1566, - '{', 1200, - '|', 1164, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(480); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(478); END_STATE(); case 481: - ADVANCE_MAP( - '!', 1137, - '"', 1347, - '$', 743, - '%', 1161, - '&', 1170, - '\'', 1338, - '(', 1135, - '*', 1157, - '+', 1151, - ',', 1071, - '-', 1141, - '.', 1313, - '/', 1159, - '0', 1320, - ':', 761, - '<', 1180, - '=', 1216, - '>', 1689, - '?', 1243, - 'F', 1389, - 'L', 1361, - 'R', 1364, - 'T', 1397, - 'U', 1365, - '[', 1210, - '\\', 28, - '^', 1167, - '_', 1406, - 'a', 1533, - 'b', 1502, - 'c', 1490, - 'd', 1451, - 'f', 1416, - 'i', 1543, - 'm', 1419, - 'n', 1574, - 'o', 1592, - 'p', 1627, - 'r', 1474, - 's', 1495, - 't', 1601, - 'u', 1369, - 'v', 1573, - 'x', 1566, - '{', 1200, - '|', 1164, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(481); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(479); END_STATE(); case 482: - ADVANCE_MAP( - '!', 1137, - '"', 1347, - '$', 743, - '%', 1161, - '&', 1170, - '\'', 1338, - '(', 1135, - '*', 1157, - '+', 1151, - '-', 1141, - '.', 1311, - '/', 1159, - '0', 1320, - ':', 761, - '<', 1180, - '=', 1216, - '>', 1174, - '?', 1243, - 'F', 1389, - 'L', 1361, - 'R', 1364, - 'T', 1397, - 'U', 1365, - '[', 1210, - '\\', 30, - '^', 1167, - '_', 1406, - 'a', 1533, - 'b', 1502, - 'c', 1490, - 'd', 1451, - 'f', 1416, - 'i', 1543, - 'm', 1419, - 'n', 1574, - 'o', 1592, - 'p', 1627, - 'r', 1474, - 's', 1495, - 't', 1601, - 'u', 1369, - 'v', 1573, - 'x', 1566, - '{', 1200, - '|', 1164, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(482); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(480); END_STATE(); case 483: - ADVANCE_MAP( - '!', 1137, - '"', 1347, - '$', 743, - '%', 1160, - '&', 1169, - '\'', 1338, - '(', 1135, - '*', 1156, - '+', 1152, - ',', 1071, - '-', 1142, - '.', 1313, - '/', 1158, - '0', 1320, - ':', 761, - ';', 1190, - '<', 1181, - '=', 763, - '>', 1173, - '?', 1243, - 'F', 1389, - 'L', 1361, - 'R', 1364, - 'T', 1397, - 'U', 1365, - '[', 1210, - '\\', 305, - '^', 1166, - '_', 1408, - 'a', 1547, - 'b', 1502, - 'c', 1490, - 'd', 1451, - 'f', 1416, - 'i', 1543, - 'm', 1419, - 'n', 1574, - 'o', 1598, - 'p', 1627, - 'r', 1474, - 's', 1495, - 't', 1601, - 'u', 1369, - 'v', 1573, - 'x', 1576, - '{', 1200, - '|', 1165, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(483); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(481); END_STATE(); case 484: - ADVANCE_MAP( - '!', 1137, - '"', 1347, - '$', 743, - '%', 1160, - '&', 1169, - '\'', 1338, - '(', 1135, - '*', 1156, - '+', 1152, - ',', 1071, - '-', 1142, - '.', 1313, - '/', 1158, - '0', 1320, - ':', 761, - '<', 1181, - '=', 763, - '>', 1689, - '?', 1243, - 'F', 1389, - 'L', 1361, - 'R', 1364, - 'T', 1397, - 'U', 1365, - '[', 1210, - '\\', 309, - '^', 1166, - '_', 1406, - 'a', 1547, - 'b', 1502, - 'c', 1490, - 'd', 1451, - 'f', 1416, - 'i', 1543, - 'm', 1419, - 'n', 1574, - 'o', 1598, - 'p', 1627, - 'r', 1474, - 's', 1495, - 't', 1601, - 'u', 1369, - 'v', 1573, - 'x', 1576, - '{', 1200, - '|', 1165, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(484); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(482); END_STATE(); case 485: - ADVANCE_MAP( - '!', 1137, - '"', 1347, - '$', 743, - '%', 1160, - '&', 1169, - '\'', 1338, - '(', 1135, - '*', 1156, - '+', 1152, - '-', 1142, - '.', 1311, - '/', 1158, - '0', 1320, - ':', 761, - '<', 1181, - '=', 763, - '>', 1173, - '?', 1243, - 'F', 1389, - 'L', 1361, - 'R', 1364, - 'T', 1397, - 'U', 1365, - '[', 1210, - '\\', 311, - '^', 1166, - '_', 1406, - 'a', 1547, - 'b', 1502, - 'c', 1490, - 'd', 1451, - 'f', 1416, - 'i', 1543, - 'm', 1419, - 'n', 1574, - 'o', 1598, - 'p', 1627, - 'r', 1474, - 's', 1495, - 't', 1601, - 'u', 1369, - 'v', 1573, - 'x', 1576, - '{', 1200, - '|', 1165, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(485); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(483); END_STATE(); case 486: - ADVANCE_MAP( - '!', 1137, - '"', 653, - '$', 774, - '%', 1161, - '&', 1170, - '(', 735, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1144, - '/', 1159, - ':', 761, - '<', 1182, - '=', 1216, - '>', 1174, - '[', 772, - '\\', 44, - '^', 1167, - '_', 1393, - 'a', 1534, - 'b', 1502, - 'c', 1489, - 'd', 1451, - 'f', 1521, - 'i', 1543, - 'l', 1567, - 'm', 1418, - 'n', 1560, - 'o', 1592, - 'p', 1627, - 'r', 1481, - 's', 1493, - 'u', 1511, - 'v', 1557, - 'x', 1566, - '|', 1164, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(486); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(484); END_STATE(); case 487: - ADVANCE_MAP( - '!', 1137, - '"', 653, - '$', 774, - '%', 1161, - '&', 1170, - '(', 735, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1144, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1174, - '[', 775, - '\\', 154, - '^', 1167, - 'a', 1535, - 'b', 1503, - 'n', 1575, - 'o', 1592, - 'x', 1566, - '|', 1164, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(487); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(485); END_STATE(); case 488: - ADVANCE_MAP( - '!', 1136, - '"', 1347, - '#', 804, - '$', 743, - '&', 1169, - '\'', 1338, - '(', 1135, - '*', 1156, - '+', 1152, - ',', 1071, - '-', 1143, - '.', 752, - '/', 737, - '0', 1320, - ':', 761, - ';', 1190, - '<', 753, - 'F', 1389, - 'L', 1361, - 'R', 1364, - 'T', 1397, - 'U', 1365, - '[', 1211, - '\\', 6, - '_', 1390, - 'a', 1616, - 'b', 1568, - 'c', 1489, - 'd', 1451, - 'f', 1416, - 'i', 1543, - 'l', 1567, - 'm', 1418, - 'n', 1579, - 'p', 1627, - 'r', 1453, - 's', 1493, - 't', 1491, - 'u', 1368, - 'v', 1557, - '{', 1200, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(488); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(486); END_STATE(); case 489: - ADVANCE_MAP( - '!', 1136, - '"', 1347, - '#', 810, - '$', 743, - '&', 1169, - '\'', 1338, - '(', 1135, - ')', 1072, - '*', 1156, - '+', 1152, - ',', 1071, - '-', 1143, - '.', 1314, - '/', 737, - '0', 1320, - ':', 761, - ';', 1190, - '<', 753, - '=', 1215, - '>', 1689, - 'F', 1389, - 'L', 1361, - 'R', 1364, - 'T', 1397, - 'U', 1365, - '[', 1211, - '\\', 4, - ']', 776, - '_', 1390, - 'a', 1616, - 'b', 1568, - 'c', 1489, - 'd', 1451, - 'f', 1416, - 'i', 1543, - 'l', 1567, - 'm', 1418, - 'n', 1579, - 'p', 1627, - 'r', 1453, - 's', 1493, - 't', 1491, - 'u', 1368, - 'v', 1557, - '{', 1200, - '}', 1201, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(489); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(487); END_STATE(); case 490: - ADVANCE_MAP( - '!', 1136, - '"', 1347, - '#', 820, - '$', 743, - '&', 1168, - '\'', 1338, - '(', 1135, - '*', 1156, - '+', 1152, - '-', 1143, - '.', 752, - '/', 737, - '0', 1320, - ':', 761, - ';', 1190, - '<', 753, - 'F', 1389, - 'L', 1361, - 'R', 1364, - 'T', 1397, - 'U', 1365, - '[', 1211, - '\\', 8, - '_', 1390, - 'a', 1616, - 'b', 1568, - 'c', 1489, - 'd', 1451, - 'f', 1416, - 'i', 1543, - 'l', 1567, - 'm', 1418, - 'n', 1579, - 'p', 1627, - 'r', 1453, - 's', 1493, - 't', 1491, - 'u', 1368, - 'v', 1557, - '{', 1200, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(490); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(488); END_STATE(); case 491: - ADVANCE_MAP( - '!', 1136, - '"', 1347, - '#', 806, - '$', 743, - '&', 1169, - '\'', 1338, - '(', 1135, - '*', 1156, - '+', 1152, - ',', 1071, - '-', 1143, - '.', 752, - '/', 737, - '0', 1320, - ':', 761, - ';', 1190, - '<', 753, - 'F', 1389, - 'L', 1361, - 'R', 1364, - 'T', 1397, - 'U', 1365, - '[', 1211, - '\\', 297, - '_', 1390, - 'a', 1616, - 'b', 1568, - 'c', 1489, - 'd', 1451, - 'f', 1416, - 'i', 1543, - 'l', 1567, - 'm', 1418, - 'n', 1579, - 'p', 1627, - 'r', 1453, - 's', 1493, - 't', 1491, - 'u', 1368, - 'v', 1557, - '{', 1200, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(491); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(489); END_STATE(); case 492: - ADVANCE_MAP( - '!', 1136, - '"', 1347, - '#', 808, - '$', 743, - '&', 1169, - '\'', 1338, - '(', 1135, - '*', 1156, - '+', 1152, - ',', 1071, - '-', 1143, - '.', 752, - '/', 737, - '0', 1320, - ':', 761, - ';', 1190, - '<', 753, - 'F', 1389, - 'L', 1361, - 'R', 1364, - 'T', 1397, - 'U', 1365, - '[', 1211, - '\\', 451, - '_', 1390, - 'a', 1616, - 'b', 1568, - 'c', 1489, - 'd', 1451, - 'f', 1416, - 'i', 1543, - 'l', 1567, - 'm', 1418, - 'n', 1579, - 'p', 1627, - 'r', 1453, - 's', 1493, - 't', 1491, - 'u', 1368, - 'v', 1557, - '{', 1200, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(492); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(490); END_STATE(); case 493: - ADVANCE_MAP( - '!', 1136, - '"', 1347, - '$', 743, - '&', 1169, - '\'', 1338, - '(', 1135, - ')', 1072, - '*', 1156, - '+', 1152, - ',', 1071, - '-', 1143, - '.', 752, - '/', 737, - '0', 1320, - ':', 761, - '<', 753, - '=', 1215, - '>', 1689, - 'F', 1389, - 'L', 1361, - 'R', 1364, - 'T', 1397, - 'U', 1365, - '[', 1210, - '\\', 16, - '_', 1392, - 'a', 1616, - 'b', 1568, - 'c', 1489, - 'd', 1451, - 'f', 1416, - 'i', 1543, - 'l', 1567, - 'm', 1418, - 'n', 1579, - 'p', 1627, - 'r', 1453, - 's', 1493, - 't', 1601, - 'u', 1368, - 'v', 1557, - '{', 1200, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(493); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(854); END_STATE(); case 494: - ADVANCE_MAP( - '!', 1136, - '"', 1347, - '$', 743, - '&', 1169, - '\'', 1338, - '(', 1135, - '*', 1156, - '+', 1152, - '-', 1143, - '.', 752, - '/', 737, - '0', 1320, - ':', 761, - '<', 1179, - 'F', 1389, - 'L', 1361, - 'R', 1364, - 'T', 1397, - 'U', 1365, - '[', 1210, - '\\', 50, - '_', 1406, - 'a', 1617, - 'b', 1568, - 'c', 1490, - 'd', 1451, - 'f', 1416, - 'i', 1543, - 'm', 1419, - 'n', 1654, - 'p', 1627, - 'r', 1474, - 's', 1495, - 't', 1601, - 'u', 1369, - 'v', 1573, - '{', 1200, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(494); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (lookahead != 0 && + lookahead != '*') ADVANCE(558); END_STATE(); case 495: + if (eof) ADVANCE(523); ADVANCE_MAP( - '!', 1136, - '"', 1347, - '$', 743, - '&', 1169, - '\'', 1338, - '(', 1135, - '*', 1156, - '+', 1152, - '-', 1143, - '.', 752, - '/', 737, - '0', 1320, - ':', 761, - '<', 753, - 'F', 1389, - 'L', 1361, - 'R', 1364, - 'T', 1397, - 'U', 1365, - '[', 1210, - '\\', 34, - '_', 1392, - 'a', 1617, - 'b', 1568, - 'c', 1489, - 'd', 1451, - 'f', 1416, - 'i', 1543, - 'm', 1418, - 'n', 1579, - 'p', 1627, - 'r', 1453, - 's', 1495, - 't', 1601, - 'u', 1369, - 'v', 1557, - '~', 1138, + '!', 596, + '"', 718, + '#', 437, + '$', 405, + '%', 620, + '&', 629, + '\'', 709, + '(', 594, + ')', 531, + '*', 616, + '+', 610, + ',', 530, + '-', 599, + '.', 682, + '/', 618, + '0', 691, + ':', 665, + ';', 649, + '<', 639, + '=', 661, + '>', 831, + '?', 666, + 'F', 758, + 'L', 732, + 'R', 735, + 'T', 762, + 'U', 736, + '[', 657, + '\\', 2, + ']', 659, + '^', 626, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 767, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 't', 809, + 'u', 739, + 'v', 801, + '{', 653, + '|', 623, + '}', 654, + '~', 597, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(495); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(694); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 496: + if (eof) ADVANCE(523); ADVANCE_MAP( - '!', 1136, - '"', 1347, - '$', 743, - '&', 1168, - '\'', 1338, - '(', 1135, - ')', 1072, - '*', 1156, - '+', 1152, - ',', 1071, - '-', 1143, - '.', 1314, - '/', 737, - '0', 1320, - ':', 1242, - ';', 1190, - '<', 1179, - '=', 1215, - 'F', 1389, - 'L', 1361, - 'R', 1364, - 'T', 1397, - 'U', 1365, - '[', 1210, - '\\', 52, - ']', 1214, - '_', 1406, - 'a', 1617, - 'b', 1568, - 'c', 1490, - 'd', 1451, - 'f', 1416, - 'i', 1543, - 'm', 1419, - 'n', 1654, - 'p', 1627, - 'r', 1474, - 's', 1495, - 't', 1601, - 'u', 1369, - 'v', 1573, - '{', 1200, - '}', 1201, - '~', 1138, + '!', 596, + '"', 718, + '#', 443, + '$', 406, + '%', 619, + '&', 628, + '\'', 709, + '(', 594, + ')', 531, + '*', 615, + '+', 611, + ',', 530, + '-', 601, + '.', 684, + '/', 617, + '0', 691, + ':', 665, + ';', 649, + '<', 640, + '=', 426, + '>', 632, + '?', 666, + 'F', 758, + 'L', 732, + 'R', 735, + 'T', 762, + 'U', 736, + '[', 656, + '\\', 12, + '^', 625, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 767, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 't', 809, + 'u', 739, + 'v', 801, + '{', 653, + '|', 624, + '}', 654, + '~', 597, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(496); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(694); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 497: + if (eof) ADVANCE(523); ADVANCE_MAP( - '!', 1136, - '"', 1347, - '$', 743, - '&', 1168, - '\'', 1338, - '(', 1135, - ')', 1072, - '*', 1156, - '+', 1152, - '-', 1143, - '.', 752, - '/', 737, - '0', 1320, - ':', 761, - ';', 1190, - '<', 753, - 'F', 1389, - 'L', 1361, - 'R', 1364, - 'T', 1397, - 'U', 1365, - '[', 1211, - '\\', 10, - '_', 1390, - 'a', 1616, - 'b', 1568, - 'c', 1489, - 'd', 1451, - 'f', 1416, - 'i', 1543, - 'l', 1567, - 'm', 1418, - 'n', 1579, - 'p', 1627, - 'r', 1453, - 's', 1493, - 't', 1601, - 'u', 1368, - 'v', 1557, - '{', 1200, - '~', 1138, + '!', 596, + '"', 718, + '#', 448, + '$', 406, + '%', 620, + '&', 629, + '\'', 709, + '(', 594, + ')', 531, + '*', 616, + '+', 610, + ',', 530, + '-', 600, + '.', 684, + '/', 618, + '0', 691, + ':', 665, + ';', 649, + '<', 639, + '=', 661, + '>', 633, + '?', 666, + 'F', 758, + 'L', 732, + 'R', 735, + 'T', 762, + 'U', 736, + '[', 655, + '\\', 157, + ']', 659, + '^', 626, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 767, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 't', 809, + 'u', 739, + 'v', 801, + '{', 653, + '|', 623, + '}', 654, + '~', 597, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(497); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(694); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 498: + if (eof) ADVANCE(523); ADVANCE_MAP( - '!', 1136, - '"', 1347, - '$', 743, - '&', 1168, - '\'', 1338, - '(', 1135, - ')', 1072, - '*', 1156, - '+', 1152, - '-', 1143, - '.', 752, - '/', 737, - '0', 1320, - ':', 761, - '<', 753, - 'F', 1389, - 'L', 1361, - 'R', 1364, - 'T', 1397, - 'U', 1365, - '[', 1210, - '\\', 56, - '_', 1404, - 'a', 1617, - 'b', 1568, - 'c', 1490, - 'd', 1451, - 'f', 1416, - 'i', 1543, - 'm', 1419, - 'n', 1654, - 'p', 1627, - 'r', 1474, - 's', 1495, - 't', 1601, - 'u', 1369, - 'v', 1573, - '{', 1200, - '~', 1138, + '!', 596, + '"', 718, + '#', 448, + '$', 406, + '%', 619, + '&', 628, + '\'', 709, + '(', 594, + ')', 531, + '*', 615, + '+', 611, + ',', 530, + '-', 601, + '.', 684, + '/', 617, + '0', 691, + ':', 665, + ';', 649, + '<', 640, + '=', 426, + '>', 632, + '?', 666, + 'F', 758, + 'L', 732, + 'R', 735, + 'T', 762, + 'U', 736, + '[', 655, + '\\', 211, + ']', 659, + '^', 625, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 767, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 't', 809, + 'u', 739, + 'v', 801, + '{', 653, + '|', 624, + '}', 654, + '~', 597, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(498); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(694); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 499: + if (eof) ADVANCE(523); ADVANCE_MAP( - '!', 1136, - '"', 1347, - '$', 743, - '&', 1168, - '\'', 1338, - '(', 1135, - '*', 1156, - '+', 1152, - '-', 1143, - '.', 752, - '/', 737, - '0', 1320, - ':', 761, - ';', 1190, - '<', 753, - 'F', 1389, - 'L', 1361, - 'R', 1364, - 'T', 1397, - 'U', 1365, - '[', 1211, - '\\', 20, - '_', 1406, - 'a', 1617, - 'b', 1568, - 'c', 1490, - 'd', 1451, - 'f', 1416, - 'i', 1543, - 'm', 1419, - 'n', 1654, - 'p', 1627, - 'r', 1474, - 's', 1495, - 't', 1491, - 'u', 1369, - 'v', 1573, - '{', 1200, - '~', 1138, + '!', 595, + '"', 718, + '#', 443, + '$', 406, + '&', 628, + '\'', 709, + '(', 594, + ')', 531, + '*', 615, + '+', 611, + ',', 530, + '-', 602, + '.', 685, + '/', 400, + '0', 691, + ':', 424, + ';', 649, + '<', 416, + '=', 660, + '>', 831, + 'F', 758, + 'L', 732, + 'R', 735, + 'T', 762, + 'U', 736, + '[', 656, + '\\', 4, + ']', 436, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 767, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 't', 809, + 'u', 739, + 'v', 801, + '{', 653, + '|', 466, + '}', 654, + '~', 597, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(499); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(694); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 500: + if (eof) ADVANCE(523); ADVANCE_MAP( - '!', 1136, - '"', 1347, - '$', 743, - '&', 1168, - '\'', 1338, - '(', 1135, - '*', 1156, - '+', 1152, - '-', 1143, - '.', 752, - '/', 737, - '0', 1320, - ':', 761, - '<', 753, - '>', 1689, - 'F', 1389, - 'L', 1361, - 'R', 1364, - 'T', 1397, - 'U', 1365, - '[', 1210, - '\\', 32, - '_', 1392, - 'a', 1616, - 'b', 1568, - 'c', 1489, - 'd', 1451, - 'f', 1416, - 'i', 1543, - 'l', 1567, - 'm', 1418, - 'n', 1579, - 'p', 1627, - 'r', 1453, - 's', 1493, - 't', 1601, - 'u', 1368, - 'v', 1557, - '~', 1138, + '!', 425, + '"', 718, + '#', 448, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + ')', 531, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + ':', 665, + ';', 649, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + 'L', 733, + 'R', 735, + 'U', 737, + '[', 655, + '\\', 171, + ']', 659, + '^', 626, + 'u', 740, + '{', 653, + '|', 623, + '}', 654, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(500); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 501: + if (eof) ADVANCE(523); ADVANCE_MAP( - '!', 1136, - '"', 1347, - '$', 743, - '&', 1168, - '\'', 1338, - '(', 1135, - '*', 1156, - '+', 1152, - '-', 1143, - '.', 752, - '/', 737, - '0', 1320, - ':', 761, - '<', 753, - 'F', 1389, - 'L', 1361, - 'R', 1364, - 'T', 1397, - 'U', 1365, - '[', 1210, - '\\', 48, - ']', 1214, - '_', 1392, - 'a', 1617, - 'b', 1568, - 'c', 1489, - 'd', 1451, - 'f', 1416, - 'i', 1543, - 'm', 1418, - 'n', 1579, - 'p', 1627, - 'r', 1453, - 's', 1495, - 't', 1601, - 'u', 1369, - 'v', 1557, - '~', 1138, + '!', 425, + '"', 718, + '#', 448, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + ')', 531, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + ':', 664, + ';', 649, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + 'L', 733, + 'R', 735, + 'U', 737, + '[', 655, + '\\', 52, + ']', 659, + '^', 626, + 'u', 740, + '{', 653, + '|', 623, + '}', 654, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(501); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 502: + if (eof) ADVANCE(523); ADVANCE_MAP( - '!', 1136, - '"', 1347, - '$', 743, - '&', 1168, - '\'', 1338, - '(', 1135, - '*', 1156, - '+', 1152, - '-', 1143, - '.', 752, - '/', 737, - '0', 1320, - ':', 761, - '<', 753, - 'F', 1389, - 'L', 1361, - 'R', 1364, - 'T', 1397, - 'U', 1365, - '[', 1210, - '\\', 313, - '_', 1406, - 'a', 1616, - 'b', 1568, - 'c', 1490, - 'd', 1451, - 'f', 1416, - 'i', 1543, - 'm', 1419, - 'n', 1654, - 'p', 1627, - 'r', 1474, - 's', 1495, - 't', 1601, - 'u', 1369, - 'v', 1573, - '~', 1138, + '!', 425, + '"', 718, + '#', 448, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + ')', 531, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + ':', 664, + ';', 649, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + 'L', 841, + 'R', 842, + 'U', 843, + '[', 655, + '\\', 52, + ']', 659, + '^', 626, + 'u', 844, + '{', 653, + '|', 623, + '}', 654, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(502); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + lookahead == ' ') SKIP(501); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(850); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 503: + if (eof) ADVANCE(523); ADVANCE_MAP( - '!', 1136, - '$', 774, - '\'', 1338, - '(', 1135, - ')', 1072, - '+', 1154, - '-', 1147, - '.', 1000, - '/', 737, - '0', 1320, - 'L', 1381, - 'U', 1382, - '\\', 258, - 'u', 1383, - '~', 1138, + '!', 425, + '"', 718, + '#', 448, + '$', 434, + '%', 619, + '&', 628, + '(', 594, + ')', 531, + '*', 615, + '+', 609, + ',', 530, + '-', 605, + '.', 683, + '/', 617, + ':', 664, + ';', 649, + '<', 643, + '=', 426, + '>', 632, + '?', 666, + 'L', 733, + 'R', 735, + 'U', 737, + '[', 655, + '\\', 96, + ']', 659, + '^', 625, + 'u', 740, + '|', 624, + '}', 654, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(503); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 504: + if (eof) ADVANCE(523); ADVANCE_MAP( - '!', 762, - '"', 1347, - '#', 821, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ':', 1241, - ';', 1190, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - 'L', 1362, - 'R', 1364, - 'U', 1366, - '[', 1210, - '\\', 70, - ']', 1214, - '^', 1167, - 'a', 1535, - 'b', 1503, - 'n', 1575, - 'o', 1592, - 'u', 1371, - 'x', 1566, - '{', 1200, - '|', 1164, - '}', 1201, + '!', 425, + '"', 718, + '#', 448, + '$', 434, + '%', 619, + '&', 628, + '(', 594, + ')', 531, + '*', 615, + '+', 609, + ',', 530, + '-', 605, + '.', 683, + '/', 617, + ':', 664, + ';', 649, + '<', 643, + '=', 426, + '>', 632, + '?', 666, + 'L', 841, + 'R', 842, + 'U', 843, + '[', 655, + '\\', 96, + ']', 659, + '^', 625, + 'u', 844, + '|', 624, + '}', 654, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(504); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + lookahead == ' ') SKIP(503); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(850); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 505: + if (eof) ADVANCE(523); ADVANCE_MAP( - '!', 762, - '"', 1347, - '#', 821, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ':', 761, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - 'L', 1362, - 'R', 1364, - 'U', 1366, - '[', 1210, - '\\', 74, - '^', 1167, - 'a', 1535, - 'b', 1503, - 'n', 1575, - 'o', 1592, - 'u', 1371, - 'x', 1566, - '{', 1200, - '|', 1164, + '!', 425, + '#', 462, + '$', 433, + '%', 620, + '&', 629, + '(', 594, + ')', 531, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + ':', 665, + ';', 649, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + '[', 655, + '\\', 54, + ']', 659, + '^', 626, + '{', 653, + '|', 623, + '}', 654, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(505); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 506: + if (eof) ADVANCE(523); ADVANCE_MAP( - '!', 762, - '"', 1347, - '#', 821, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - ':', 1241, - ';', 1190, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - 'L', 1362, - 'R', 1364, - 'U', 1366, - '[', 1210, - '\\', 126, - ']', 1214, - '^', 1166, - 'a', 1549, - 'b', 1503, - 'n', 1575, - 'o', 1598, - 'u', 1371, - 'x', 1576, - '|', 1165, - '}', 1201, + '!', 425, + '#', 448, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + ')', 531, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + ':', 665, + ';', 649, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + '[', 655, + '\\', 215, + ']', 659, + '^', 626, + '{', 653, + '|', 623, + '}', 654, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(506); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 507: + if (eof) ADVANCE(523); ADVANCE_MAP( - '!', 762, - '"', 1347, - '#', 849, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ':', 761, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - 'L', 1362, - 'R', 1364, - 'U', 1366, - '[', 1210, - '\\', 455, - '^', 1167, - 'a', 1535, - 'b', 1503, - 'n', 1575, - 'o', 1592, - 'u', 1371, - 'x', 1566, - '{', 1200, - '|', 1164, + '!', 425, + '#', 448, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + ')', 531, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + ':', 664, + ';', 649, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + '[', 656, + '\\', 237, + ']', 659, + '^', 626, + '{', 653, + '|', 623, + '}', 654, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(507); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 508: + if (eof) ADVANCE(523); ADVANCE_MAP( - '!', 762, - '"', 1347, - '#', 849, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - 'L', 1362, - 'R', 1364, - 'U', 1366, - '[', 1210, - '\\', 82, - '^', 1167, - 'a', 1535, - 'b', 1503, - 'n', 1575, - 'o', 1592, - 'u', 1371, - 'x', 1566, - '|', 1164, + '!', 425, + '#', 448, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + ')', 531, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + ':', 664, + ';', 649, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + '[', 655, + '\\', 177, + ']', 659, + '^', 626, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 796, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 'u', 789, + 'v', 801, + '{', 653, + '|', 623, + '}', 654, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(508); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 509: + if (eof) ADVANCE(523); ADVANCE_MAP( - '!', 762, - '"', 1347, - '#', 849, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - 'L', 1705, - 'R', 1707, - 'U', 1709, - '[', 1210, - '\\', 82, - '^', 1167, - 'a', 1740, - 'b', 1738, - 'n', 1744, - 'o', 1750, - 'u', 1711, - 'x', 1743, - '|', 1164, + '!', 425, + '#', 448, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + ')', 531, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + ':', 664, + ';', 649, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + '[', 655, + '\\', 173, + ']', 659, + '^', 626, + '{', 653, + '|', 623, + '}', 654, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(508); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + lookahead == ' ') SKIP(509); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 510: + if (eof) ADVANCE(523); ADVANCE_MAP( - '!', 762, - '"', 1347, - '#', 849, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - 'L', 1362, - 'R', 1364, - 'U', 1366, - '[', 1210, - '\\', 323, - '^', 1166, - 'a', 1549, - 'b', 1503, - 'n', 1575, - 'o', 1598, - 'u', 1371, - 'x', 1576, - '|', 1165, + '!', 425, + '#', 448, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + ')', 531, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + ':', 664, + ';', 649, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + '[', 655, + '\\', 193, + ']', 659, + '^', 626, + '|', 623, + '}', 654, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(510); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + lookahead == ' ') SKIP(511); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(850); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 511: + if (eof) ADVANCE(523); ADVANCE_MAP( - '!', 762, - '"', 1347, - '#', 849, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - 'L', 1705, - 'R', 1707, - 'U', 1709, - '[', 1210, - '\\', 323, - '^', 1166, - 'a', 1742, - 'b', 1738, - 'n', 1744, - 'o', 1753, - 'u', 1711, - 'x', 1745, - '|', 1165, + '!', 425, + '#', 448, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + ')', 531, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + ':', 664, + ';', 649, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + '[', 655, + '\\', 193, + ']', 659, + '^', 626, + '|', 623, + '}', 654, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(510); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + lookahead == ' ') SKIP(511); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 512: + if (eof) ADVANCE(523); ADVANCE_MAP( - '!', 762, - '"', 1347, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1144, - '.', 1312, - '/', 1159, - ':', 761, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - 'L', 1362, - 'R', 1364, - 'U', 1366, - '[', 1211, - '\\', 58, - '^', 1167, - '_', 1393, - 'a', 1534, - 'b', 1503, - 'c', 1562, - 'd', 1452, - 'l', 1567, - 'm', 1656, - 'n', 1561, - 'o', 1592, - 'r', 1481, - 's', 1494, - 'u', 1370, - 'v', 1571, - 'x', 1566, - '{', 1200, - '|', 1164, - '~', 1138, + '!', 425, + '#', 448, + '$', 434, + '%', 620, + '&', 629, + '(', 594, + ')', 531, + '*', 616, + '+', 612, + ',', 530, + '-', 604, + '.', 683, + '/', 618, + ':', 664, + ';', 649, + '<', 641, + '=', 661, + '>', 633, + '?', 666, + '[', 658, + '\\', 80, + ']', 659, + '^', 626, + '|', 623, + '}', 654, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(512); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 513: + if (eof) ADVANCE(523); ADVANCE_MAP( - '!', 762, - '"', 1347, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1144, - '.', 1312, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - 'L', 1362, - 'R', 1364, - 'U', 1366, - '[', 1210, - '\\', 86, - '^', 1167, - 'a', 1535, - 'b', 1503, - 'n', 1575, - 'o', 1592, - 'u', 1371, - 'x', 1566, - '|', 1164, + '!', 425, + '#', 448, + '$', 434, + '%', 619, + '&', 628, + '(', 594, + ')', 531, + '*', 615, + '+', 609, + ',', 530, + '-', 605, + '.', 683, + '/', 617, + ':', 665, + ';', 649, + '<', 643, + '=', 426, + '>', 632, + '?', 666, + '[', 655, + '\\', 251, + ']', 659, + '^', 625, + '{', 653, + '|', 624, + '}', 654, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(513); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 514: + if (eof) ADVANCE(523); ADVANCE_MAP( - '!', 762, - '"', 1347, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1144, - '.', 1312, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - 'L', 1362, - 'R', 1364, - 'U', 1366, - '[', 1210, - '\\', 419, - '^', 1167, - 'a', 1549, - 'b', 1503, - 'n', 1575, - 'o', 1598, - 'u', 1371, - 'x', 1576, - '|', 1164, + '!', 425, + '#', 448, + '$', 434, + '%', 619, + '&', 628, + '(', 594, + ')', 531, + '*', 615, + '+', 609, + ',', 530, + '-', 605, + '.', 683, + '/', 617, + ':', 664, + ';', 649, + '<', 643, + '=', 426, + '>', 632, + '?', 666, + '[', 655, + '\\', 58, + ']', 659, + '^', 625, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 796, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 'u', 789, + 'v', 801, + '{', 653, + '|', 624, + '}', 654, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(514); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 515: + if (eof) ADVANCE(523); ADVANCE_MAP( - '!', 762, - '"', 1347, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1144, - '.', 1312, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - 'L', 1705, - 'R', 1707, - 'U', 1709, - '[', 1210, - '\\', 86, - '^', 1167, - 'a', 1740, - 'b', 1738, - 'n', 1744, - 'o', 1750, - 'u', 1711, - 'x', 1743, - '|', 1164, + '!', 425, + '#', 448, + '$', 434, + '%', 619, + '&', 628, + '(', 594, + ')', 531, + '*', 615, + '+', 609, + ',', 530, + '-', 605, + '.', 683, + '/', 617, + ':', 664, + ';', 649, + '<', 643, + '=', 426, + '>', 632, + '?', 666, + '[', 655, + '\\', 249, + ']', 659, + '^', 625, + '{', 653, + '|', 624, + '}', 654, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(513); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + lookahead == ' ') SKIP(515); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 516: + if (eof) ADVANCE(523); ADVANCE_MAP( - '!', 762, - '"', 1347, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1144, - '.', 1312, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - 'L', 1705, - 'R', 1707, - 'U', 1709, - '[', 1210, - '\\', 419, - '^', 1167, - 'a', 1742, - 'b', 1738, - 'n', 1744, - 'o', 1753, - 'u', 1711, - 'x', 1745, - '|', 1164, + '!', 425, + '#', 448, + '$', 434, + '%', 619, + '&', 628, + '(', 594, + ')', 531, + '*', 615, + '+', 609, + ',', 530, + '-', 605, + '.', 683, + '/', 617, + ':', 664, + ';', 649, + '<', 643, + '=', 426, + '>', 632, + '?', 666, + '[', 655, + '\\', 223, + ']', 659, + '^', 625, + '|', 624, + '}', 654, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(514); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + lookahead == ' ') SKIP(517); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(850); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 517: + if (eof) ADVANCE(523); ADVANCE_MAP( - '!', 762, - '"', 1347, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ':', 1242, - ';', 1190, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - 'L', 1362, - 'R', 1364, - 'U', 1366, - '[', 1211, - '\\', 54, - '^', 1167, - '_', 1393, - 'a', 1534, - 'b', 1503, - 'c', 1562, - 'd', 1452, - 'l', 1567, - 'm', 1656, - 'n', 1561, - 'o', 1592, - 'r', 1481, - 's', 1494, - 'u', 1370, - 'v', 1571, - 'x', 1566, - '{', 1200, - '|', 1164, - '}', 1201, - '~', 1138, + '!', 425, + '#', 448, + '$', 434, + '%', 619, + '&', 628, + '(', 594, + ')', 531, + '*', 615, + '+', 609, + ',', 530, + '-', 605, + '.', 683, + '/', 617, + ':', 664, + ';', 649, + '<', 643, + '=', 426, + '>', 632, + '?', 666, + '[', 655, + '\\', 223, + ']', 659, + '^', 625, + '|', 624, + '}', 654, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(517); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 518: + if (eof) ADVANCE(523); ADVANCE_MAP( - '!', 762, - '"', 1347, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ';', 1190, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - 'L', 1362, - 'R', 1364, - 'U', 1366, - '[', 1210, - '\\', 88, - '^', 1167, - '_', 1414, - 'a', 1535, - 'b', 1503, - 'n', 1575, - 'o', 1592, - 'u', 1371, - 'x', 1566, - '|', 1164, + '!', 425, + '#', 452, + '$', 434, + '%', 619, + '&', 628, + '(', 594, + ')', 531, + '*', 615, + '+', 609, + ',', 530, + '-', 605, + '.', 683, + '/', 617, + ':', 665, + ';', 649, + '<', 643, + '=', 426, + '>', 632, + '?', 666, + '[', 655, + '\\', 219, + ']', 659, + '^', 625, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 796, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 'u', 789, + 'v', 801, + '{', 653, + '|', 624, + '}', 654, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(518); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 519: + if (eof) ADVANCE(523); ADVANCE_MAP( - '!', 762, - '"', 1347, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ';', 1190, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - 'L', 1705, - 'R', 1707, - 'U', 1709, - '[', 1210, - '\\', 88, - '^', 1167, - '_', 1723, - 'a', 1740, - 'b', 1738, - 'n', 1744, - 'o', 1750, - 'u', 1711, - 'x', 1743, - '|', 1164, + '!', 425, + '$', 433, + '%', 619, + '&', 628, + '(', 594, + ')', 531, + '*', 615, + '+', 609, + ',', 530, + '-', 605, + '.', 683, + '/', 617, + ':', 665, + ';', 649, + '<', 643, + '=', 426, + '>', 632, + '?', 666, + '[', 655, + '\\', 185, + ']', 659, + '^', 625, + '{', 653, + '|', 624, + '}', 654, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(518); - if (('A' <= lookahead && lookahead <= 'Z') || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + lookahead == ' ') SKIP(519); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 520: + if (eof) ADVANCE(523); ADVANCE_MAP( - '!', 762, - '"', 1347, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1689, - '?', 1243, - 'L', 1362, - 'R', 1364, - 'U', 1366, - '[', 1210, - '\\', 92, - '^', 1167, - 'a', 1535, - 'b', 1503, - 'n', 1575, - 'o', 1592, - 'u', 1371, - 'x', 1566, - '|', 1164, + '!', 425, + '$', 433, + '%', 619, + '&', 628, + '(', 594, + ')', 531, + '*', 615, + '+', 609, + ',', 530, + '-', 605, + '.', 683, + '/', 617, + ':', 664, + ';', 649, + '<', 643, + '=', 426, + '>', 632, + '?', 666, + '[', 655, + '\\', 64, + ']', 659, + '^', 625, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 796, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 'u', 789, + 'v', 801, + '{', 653, + '|', 624, + '}', 654, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(520); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 521: + if (eof) ADVANCE(523); ADVANCE_MAP( - '!', 762, - '"', 1347, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1689, - '?', 1243, - 'L', 1705, - 'R', 1707, - 'U', 1709, - '[', 1210, - '\\', 92, - '^', 1167, - 'a', 1740, - 'b', 1738, - 'n', 1744, - 'o', 1750, - 'u', 1711, - 'x', 1743, - '|', 1164, + '!', 425, + '$', 433, + '%', 619, + '&', 628, + '(', 594, + ')', 531, + '*', 615, + '+', 609, + ',', 530, + '-', 605, + '.', 683, + '/', 617, + ':', 664, + ';', 649, + '<', 643, + '=', 426, + '>', 632, + '?', 666, + '[', 655, + '\\', 68, + ']', 659, + '^', 625, + '{', 653, + '|', 624, + '}', 654, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(520); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + lookahead == ' ') SKIP(521); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 522: + if (eof) ADVANCE(523); ADVANCE_MAP( - '!', 762, - '"', 1347, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - '-', 1145, - '.', 1310, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - 'L', 1362, - 'R', 1364, - 'U', 1366, - '[', 1210, - '\\', 100, - '^', 1167, - 'a', 1535, - 'b', 1503, - 'n', 1575, - 'o', 1592, - 'u', 1371, - 'x', 1566, - '|', 1164, + '!', 425, + '$', 434, + '%', 619, + '&', 628, + '(', 594, + ')', 531, + '*', 615, + '+', 609, + ',', 530, + '-', 605, + '.', 683, + '/', 617, + ':', 424, + ';', 649, + '<', 643, + '=', 426, + '>', 632, + '?', 666, + '[', 655, + '\\', 181, + ']', 436, + '^', 625, + 'b', 804, + 'c', 783, + 'd', 800, + 'f', 796, + 'i', 797, + 'm', 769, + 'n', 817, + 'p', 814, + 's', 784, + 'u', 789, + 'v', 801, + '{', 653, + '|', 624, + '}', 654, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(522); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(821); END_STATE(); case 523: - ADVANCE_MAP( - '!', 762, - '"', 1347, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - '-', 1145, - '.', 1310, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - 'L', 1705, - 'R', 1707, - 'U', 1709, - '[', 1210, - '\\', 100, - '^', 1167, - 'a', 1740, - 'b', 1738, - 'n', 1744, - 'o', 1750, - 'u', 1711, - 'x', 1743, - '|', 1164, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(522); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 524: - ADVANCE_MAP( - '!', 762, - '"', 1347, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - ';', 1190, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - 'L', 1362, - 'R', 1364, - 'U', 1366, - '[', 1210, - '\\', 327, - '^', 1166, - '_', 1414, - 'a', 1549, - 'b', 1503, - 'n', 1575, - 'o', 1598, - 'u', 1371, - 'x', 1576, - '|', 1165, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(524); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(aux_sym_preproc_include_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 525: - ADVANCE_MAP( - '!', 762, - '"', 1347, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - ';', 1190, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - 'L', 1705, - 'R', 1707, - 'U', 1709, - '[', 1210, - '\\', 327, - '^', 1166, - '_', 1723, - 'a', 1742, - 'b', 1738, - 'n', 1744, - 'o', 1753, - 'u', 1711, - 'x', 1745, - '|', 1165, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(524); - if (('A' <= lookahead && lookahead <= 'Z') || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(aux_sym_preproc_include_token2); END_STATE(); case 526: - ADVANCE_MAP( - '!', 762, - '"', 1347, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - '<', 1184, - '=', 763, - '>', 1689, - '?', 1243, - 'L', 1362, - 'R', 1364, - 'U', 1366, - '[', 1210, - '\\', 331, - '^', 1166, - 'a', 1549, - 'b', 1503, - 'n', 1575, - 'o', 1598, - 'u', 1371, - 'x', 1576, - '|', 1165, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(526); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(aux_sym_preproc_def_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 527: - ADVANCE_MAP( - '!', 762, - '"', 1347, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - '<', 1184, - '=', 763, - '>', 1689, - '?', 1243, - 'L', 1705, - 'R', 1707, - 'U', 1709, - '[', 1210, - '\\', 331, - '^', 1166, - 'a', 1742, - 'b', 1738, - 'n', 1744, - 'o', 1753, - 'u', 1711, - 'x', 1745, - '|', 1165, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(526); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 528: - ADVANCE_MAP( - '!', 762, - '"', 1347, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - '-', 1146, - '.', 1310, - '/', 1158, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - 'L', 1362, - 'R', 1364, - 'U', 1366, - '[', 1210, - '\\', 337, - '^', 1166, - 'a', 1549, - 'b', 1503, - 'n', 1575, - 'o', 1598, - 'u', 1371, - 'x', 1576, - '|', 1165, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(528); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 529: - ADVANCE_MAP( - '!', 762, - '"', 1347, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - '-', 1146, - '.', 1310, - '/', 1158, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - 'L', 1705, - 'R', 1707, - 'U', 1709, - '[', 1210, - '\\', 337, - '^', 1166, - 'a', 1742, - 'b', 1738, - 'n', 1744, - 'o', 1753, - 'u', 1711, - 'x', 1745, - '|', 1165, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(528); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + if (lookahead == '>') ADVANCE(853); END_STATE(); case 530: - ADVANCE_MAP( - '!', 762, - '"', 1347, - '$', 1022, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1144, - '.', 1312, - '/', 1159, - ':', 1242, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - 'L', 643, - 'R', 644, - 'U', 645, - '[', 1210, - ); - if (lookahead == '\\') SKIP(66); - if (lookahead == '^') ADVANCE(1167); - if (lookahead == '_') ADVANCE(767); - if (lookahead == 'a') ADVANCE(896); - if (lookahead == 'b') ADVANCE(863); - if (lookahead == 'c') ADVANCE(915); - if (lookahead == 'd') ADVANCE(823); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'l') ADVANCE(917); - if (lookahead == 'm') ADVANCE(983); - if (lookahead == 'n') ADVANCE(907); - if (lookahead == 'o') ADVANCE(934); - if (lookahead == 'r') ADVANCE(824); - if (lookahead == 's') ADVANCE(860); - if (lookahead == 'u') ADVANCE(647); - if (lookahead == 'v') ADVANCE(908); - if (lookahead == 'x') ADVANCE(916); - if (lookahead == '{') ADVANCE(1200); - if (lookahead == '|') ADVANCE(1164); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(530); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 531: - ADVANCE_MAP( - '!', 762, - '"', 1347, - '$', 1022, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1144, - '.', 1312, - '/', 1159, - ':', 761, - ';', 1190, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - 'L', 643, - 'R', 644, - 'U', 645, - '[', 1211, - ); - if (lookahead == '\\') SKIP(62); - if (lookahead == '^') ADVANCE(1167); - if (lookahead == '_') ADVANCE(767); - if (lookahead == 'a') ADVANCE(896); - if (lookahead == 'b') ADVANCE(863); - if (lookahead == 'c') ADVANCE(915); - if (lookahead == 'd') ADVANCE(823); - if (lookahead == 'l') ADVANCE(917); - if (lookahead == 'm') ADVANCE(983); - if (lookahead == 'n') ADVANCE(907); - if (lookahead == 'o') ADVANCE(933); - if (lookahead == 'r') ADVANCE(824); - if (lookahead == 's') ADVANCE(860); - if (lookahead == 'u') ADVANCE(647); - if (lookahead == 'v') ADVANCE(908); - if (lookahead == 'x') ADVANCE(916); - if (lookahead == '{') ADVANCE(1200); - if (lookahead == '|') ADVANCE(1164); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(531); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 532: - ADVANCE_MAP( - '!', 762, - '"', 1347, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1144, - '.', 1312, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - 'L', 643, - 'R', 644, - 'U', 645, - '[', 1210, - ); - if (lookahead == '\\') SKIP(96); - if (lookahead == '^') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(894); - if (lookahead == 'b') ADVANCE(863); - if (lookahead == 'n') ADVANCE(922); - if (lookahead == 'o') ADVANCE(933); - if (lookahead == 'u') ADVANCE(646); - if (lookahead == 'x') ADVANCE(916); - if (lookahead == '|') ADVANCE(1164); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(532); + ACCEPT_TOKEN(aux_sym_preproc_if_token1); + if (lookahead == 'd') ADVANCE(569); + if (lookahead == 'n') ADVANCE(563); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 533: - ADVANCE_MAP( - '!', 762, - '"', 1347, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1144, - '.', 1312, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - 'L', 643, - 'R', 644, - 'U', 645, - '[', 1210, - ); - if (lookahead == '\\') SKIP(335); - if (lookahead == '^') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(898); - if (lookahead == 'b') ADVANCE(863); - if (lookahead == 'n') ADVANCE(922); - if (lookahead == 'o') ADVANCE(938); - if (lookahead == 'u') ADVANCE(646); - if (lookahead == 'x') ADVANCE(921); - if (lookahead == '|') ADVANCE(1164); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(533); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(533); END_STATE(); case 534: - ADVANCE_MAP( - '!', 762, - '"', 1347, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1144, - '.', 1312, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - 'L', 1706, - 'R', 1708, - 'U', 1710, - '[', 1210, - ); - if (lookahead == '\\') SKIP(96); - if (lookahead == '^') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(1780); - if (lookahead == 'b') ADVANCE(1778); - if (lookahead == 'n') ADVANCE(1784); - if (lookahead == 'o') ADVANCE(1790); - if (lookahead == 'u') ADVANCE(1712); - if (lookahead == 'x') ADVANCE(1783); - if (lookahead == '|') ADVANCE(1164); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(532); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1802); + ACCEPT_TOKEN(aux_sym_preproc_if_token2); END_STATE(); case 535: - ADVANCE_MAP( - '!', 762, - '"', 1347, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1144, - '.', 1312, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - 'L', 1706, - 'R', 1708, - 'U', 1710, - '[', 1210, - ); - if (lookahead == '\\') SKIP(335); - if (lookahead == '^') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(1782); - if (lookahead == 'b') ADVANCE(1778); - if (lookahead == 'n') ADVANCE(1784); - if (lookahead == 'o') ADVANCE(1793); - if (lookahead == 'u') ADVANCE(1712); - if (lookahead == 'x') ADVANCE(1785); - if (lookahead == '|') ADVANCE(1164); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(533); - if (('A' <= lookahead && lookahead <= 'Z') || + ACCEPT_TOKEN(aux_sym_preproc_if_token2); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1802); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 536: - ADVANCE_MAP( - '!', 762, - '"', 1347, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ':', 1242, - ';', 1190, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - 'L', 643, - 'R', 644, - 'U', 645, - '[', 1211, - ); - if (lookahead == '\\') SKIP(80); - if (lookahead == '^') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(894); - if (lookahead == 'b') ADVANCE(863); - if (lookahead == 'n') ADVANCE(922); - if (lookahead == 'o') ADVANCE(933); - if (lookahead == 'u') ADVANCE(646); - if (lookahead == 'x') ADVANCE(916); - if (lookahead == '{') ADVANCE(1200); - if (lookahead == '|') ADVANCE(1164); - if (lookahead == '}') ADVANCE(1201); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(536); + ACCEPT_TOKEN(aux_sym_preproc_ifdef_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 537: - ADVANCE_MAP( - '!', 762, - '"', 1347, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ':', 1242, - '<', 1182, - '=', 1216, - '>', 1689, - '?', 1243, - 'L', 643, - 'R', 644, - 'U', 645, - '[', 1210, - ); - if (lookahead == '\\') SKIP(68); - if (lookahead == '^') ADVANCE(1167); - if (lookahead == '_') ADVANCE(767); - if (lookahead == 'a') ADVANCE(896); - if (lookahead == 'b') ADVANCE(863); - if (lookahead == 'c') ADVANCE(915); - if (lookahead == 'd') ADVANCE(823); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'l') ADVANCE(917); - if (lookahead == 'm') ADVANCE(983); - if (lookahead == 'n') ADVANCE(907); - if (lookahead == 'o') ADVANCE(934); - if (lookahead == 'r') ADVANCE(830); - if (lookahead == 's') ADVANCE(860); - if (lookahead == 'u') ADVANCE(647); - if (lookahead == 'v') ADVANCE(908); - if (lookahead == 'x') ADVANCE(916); - if (lookahead == '{') ADVANCE(1200); - if (lookahead == '|') ADVANCE(1164); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(537); + ACCEPT_TOKEN(aux_sym_preproc_ifdef_token2); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 538: - ADVANCE_MAP( - '!', 762, - '"', 1347, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ';', 1190, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - 'L', 643, - 'R', 644, - 'U', 645, - '[', 1210, - ); - if (lookahead == '\\') SKIP(104); - if (lookahead == '^') ADVANCE(1167); - if (lookahead == '_') ADVANCE(787); - if (lookahead == 'a') ADVANCE(894); - if (lookahead == 'b') ADVANCE(863); - if (lookahead == 'n') ADVANCE(922); - if (lookahead == 'o') ADVANCE(933); - if (lookahead == 'u') ADVANCE(646); - if (lookahead == 'x') ADVANCE(916); - if (lookahead == '|') ADVANCE(1164); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(538); + ACCEPT_TOKEN(aux_sym_preproc_else_token1); END_STATE(); case 539: - ADVANCE_MAP( - '!', 762, - '"', 1347, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ';', 1190, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - 'L', 1706, - 'R', 1708, - 'U', 1710, - '[', 1210, - ); - if (lookahead == '\\') SKIP(104); - if (lookahead == '^') ADVANCE(1167); - if (lookahead == '_') ADVANCE(1763); - if (lookahead == 'a') ADVANCE(1780); - if (lookahead == 'b') ADVANCE(1778); - if (lookahead == 'n') ADVANCE(1784); - if (lookahead == 'o') ADVANCE(1790); - if (lookahead == 'u') ADVANCE(1712); - if (lookahead == 'x') ADVANCE(1783); - if (lookahead == '|') ADVANCE(1164); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(538); - if (('A' <= lookahead && lookahead <= 'Z') || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1802); + ACCEPT_TOKEN(aux_sym_preproc_else_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 540: - ADVANCE_MAP( - '!', 762, - '"', 1347, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1689, - '?', 1243, - 'L', 643, - 'R', 644, - 'U', 645, - '[', 1210, - ); - if (lookahead == '\\') SKIP(112); - if (lookahead == '^') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(894); - if (lookahead == 'b') ADVANCE(863); - if (lookahead == 'n') ADVANCE(922); - if (lookahead == 'o') ADVANCE(933); - if (lookahead == 'u') ADVANCE(646); - if (lookahead == 'x') ADVANCE(916); - if (lookahead == '|') ADVANCE(1164); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(540); + ACCEPT_TOKEN(aux_sym_preproc_elif_token1); END_STATE(); case 541: - ADVANCE_MAP( - '!', 762, - '"', 1347, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1689, - '?', 1243, - 'L', 1706, - 'R', 1708, - 'U', 1710, - '[', 1210, - ); - if (lookahead == '\\') SKIP(112); - if (lookahead == '^') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(1780); - if (lookahead == 'b') ADVANCE(1778); - if (lookahead == 'n') ADVANCE(1784); - if (lookahead == 'o') ADVANCE(1790); - if (lookahead == 'u') ADVANCE(1712); - if (lookahead == 'x') ADVANCE(1783); - if (lookahead == '|') ADVANCE(1164); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(540); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1802); + ACCEPT_TOKEN(aux_sym_preproc_elif_token1); + if (lookahead == 'd') ADVANCE(450); + if (lookahead == 'n') ADVANCE(446); END_STATE(); case 542: - ADVANCE_MAP( - '!', 762, - '"', 1347, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - '-', 1145, - '.', 1310, - '/', 1159, - ':', 1242, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - 'L', 643, - 'R', 644, - 'U', 645, - '[', 1210, - ); - if (lookahead == '\\') SKIP(98); - if (lookahead == '^') ADVANCE(1167); - if (lookahead == '_') ADVANCE(787); - if (lookahead == 'a') ADVANCE(896); - if (lookahead == 'b') ADVANCE(863); - if (lookahead == 'd') ADVANCE(823); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'l') ADVANCE(917); - if (lookahead == 'n') ADVANCE(922); - if (lookahead == 'o') ADVANCE(934); - if (lookahead == 's') ADVANCE(860); - if (lookahead == 'u') ADVANCE(647); - if (lookahead == 'x') ADVANCE(916); - if (lookahead == '{') ADVANCE(1200); - if (lookahead == '|') ADVANCE(1164); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(542); + ACCEPT_TOKEN(aux_sym_preproc_elif_token1); + if (lookahead == 'd') ADVANCE(571); + if (lookahead == 'n') ADVANCE(564); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 543: - ADVANCE_MAP( - '!', 762, - '"', 1347, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - '-', 1145, - '.', 1310, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - 'L', 643, - 'R', 644, - 'U', 645, - '[', 1210, - ); - if (lookahead == '\\') SKIP(120); - if (lookahead == '^') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(894); - if (lookahead == 'b') ADVANCE(863); - if (lookahead == 'n') ADVANCE(922); - if (lookahead == 'o') ADVANCE(933); - if (lookahead == 'u') ADVANCE(646); - if (lookahead == 'x') ADVANCE(916); - if (lookahead == '|') ADVANCE(1164); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(543); + ACCEPT_TOKEN(aux_sym_preproc_elif_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 544: - ADVANCE_MAP( - '!', 762, - '"', 1347, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - '-', 1145, - '.', 1310, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - 'L', 1706, - 'R', 1708, - 'U', 1710, - '[', 1210, - ); - if (lookahead == '\\') SKIP(120); - if (lookahead == '^') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(1780); - if (lookahead == 'b') ADVANCE(1778); - if (lookahead == 'n') ADVANCE(1784); - if (lookahead == 'o') ADVANCE(1790); - if (lookahead == 'u') ADVANCE(1712); - if (lookahead == 'x') ADVANCE(1783); - if (lookahead == '|') ADVANCE(1164); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(543); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1802); + ACCEPT_TOKEN(aux_sym_preproc_elifdef_token1); END_STATE(); case 545: - ADVANCE_MAP( - '!', 762, - '"', 1347, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - ';', 1190, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - 'L', 643, - 'R', 644, - 'U', 645, - '[', 1210, - ); - if (lookahead == '\\') SKIP(339); - if (lookahead == '^') ADVANCE(1166); - if (lookahead == '_') ADVANCE(787); - if (lookahead == 'a') ADVANCE(898); - if (lookahead == 'b') ADVANCE(863); - if (lookahead == 'n') ADVANCE(922); - if (lookahead == 'o') ADVANCE(938); - if (lookahead == 'u') ADVANCE(646); - if (lookahead == 'x') ADVANCE(921); - if (lookahead == '|') ADVANCE(1165); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(545); + ACCEPT_TOKEN(aux_sym_preproc_elifdef_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 546: - ADVANCE_MAP( - '!', 762, - '"', 1347, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - ';', 1190, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - 'L', 1706, - 'R', 1708, - 'U', 1710, - '[', 1210, - ); - if (lookahead == '\\') SKIP(339); - if (lookahead == '^') ADVANCE(1166); - if (lookahead == '_') ADVANCE(1763); - if (lookahead == 'a') ADVANCE(1782); - if (lookahead == 'b') ADVANCE(1778); - if (lookahead == 'n') ADVANCE(1784); - if (lookahead == 'o') ADVANCE(1793); - if (lookahead == 'u') ADVANCE(1712); - if (lookahead == 'x') ADVANCE(1785); - if (lookahead == '|') ADVANCE(1165); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(545); - if (('A' <= lookahead && lookahead <= 'Z') || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1802); + ACCEPT_TOKEN(aux_sym_preproc_elifdef_token2); END_STATE(); case 547: - ADVANCE_MAP( - '!', 762, - '"', 1347, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - '<', 1184, - '=', 763, - '>', 1689, - '?', 1243, - 'L', 643, - 'R', 644, - 'U', 645, - '[', 1210, - ); - if (lookahead == '\\') SKIP(345); - if (lookahead == '^') ADVANCE(1166); - if (lookahead == 'a') ADVANCE(898); - if (lookahead == 'b') ADVANCE(863); - if (lookahead == 'n') ADVANCE(922); - if (lookahead == 'o') ADVANCE(938); - if (lookahead == 'u') ADVANCE(646); - if (lookahead == 'x') ADVANCE(921); - if (lookahead == '|') ADVANCE(1165); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(547); + ACCEPT_TOKEN(aux_sym_preproc_elifdef_token2); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 548: - ADVANCE_MAP( - '!', 762, - '"', 1347, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - '<', 1184, - '=', 763, - '>', 1689, - '?', 1243, - 'L', 1706, - 'R', 1708, - 'U', 1710, - '[', 1210, - ); - if (lookahead == '\\') SKIP(345); - if (lookahead == '^') ADVANCE(1166); - if (lookahead == 'a') ADVANCE(1782); - if (lookahead == 'b') ADVANCE(1778); - if (lookahead == 'n') ADVANCE(1784); - if (lookahead == 'o') ADVANCE(1793); - if (lookahead == 'u') ADVANCE(1712); - if (lookahead == 'x') ADVANCE(1785); - if (lookahead == '|') ADVANCE(1165); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(547); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1802); + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\n') ADVANCE(403); + if (lookahead == '*') ADVANCE(548); + if (lookahead == '/') ADVANCE(822); + if (lookahead == '\\') ADVANCE(554); + if (lookahead != 0) ADVANCE(549); END_STATE(); case 549: - ADVANCE_MAP( - '!', 762, - '"', 1347, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - '-', 1146, - '.', 1310, - '/', 1158, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - 'L', 643, - 'R', 644, - 'U', 645, - '[', 1210, - ); - if (lookahead == '\\') SKIP(353); - if (lookahead == '^') ADVANCE(1166); - if (lookahead == 'a') ADVANCE(898); - if (lookahead == 'b') ADVANCE(863); - if (lookahead == 'n') ADVANCE(922); - if (lookahead == 'o') ADVANCE(938); - if (lookahead == 'u') ADVANCE(646); - if (lookahead == 'x') ADVANCE(921); - if (lookahead == '|') ADVANCE(1165); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(549); + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\n') ADVANCE(403); + if (lookahead == '*') ADVANCE(548); + if (lookahead == '/') ADVANCE(404); + if (lookahead == '\\') ADVANCE(554); + if (lookahead != 0) ADVANCE(549); END_STATE(); case 550: - ADVANCE_MAP( - '!', 762, - '"', 1347, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - '-', 1146, - '.', 1310, - '/', 1158, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - 'L', 1706, - 'R', 1708, - 'U', 1710, - '[', 1210, - ); - if (lookahead == '\\') SKIP(353); - if (lookahead == '^') ADVANCE(1166); - if (lookahead == 'a') ADVANCE(1782); - if (lookahead == 'b') ADVANCE(1778); - if (lookahead == 'n') ADVANCE(1784); - if (lookahead == 'o') ADVANCE(1793); - if (lookahead == 'u') ADVANCE(1712); - if (lookahead == 'x') ADVANCE(1785); - if (lookahead == '|') ADVANCE(1165); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(549); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1802); + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\n') ADVANCE(829); + if (lookahead == '\r') ADVANCE(823); + if (lookahead == '/') ADVANCE(826); + if (lookahead == '\\') ADVANCE(825); + if (lookahead != 0) ADVANCE(827); END_STATE(); case 551: - ADVANCE_MAP( - '!', 762, - '#', 821, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ':', 1241, - ';', 1190, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1211, - '\\', 146, - '^', 1167, - 'a', 1535, - 'b', 1503, - 'n', 1575, - 'o', 1592, - 'x', 1566, - '{', 1200, - '|', 1164, - '}', 1201, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(551); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\n') SKIP(417); + if (lookahead == '\r') ADVANCE(552); + if (lookahead == '/') ADVANCE(494); + if (lookahead == '\\') ADVANCE(553); + if (lookahead != 0) ADVANCE(558); END_STATE(); case 552: - ADVANCE_MAP( - '!', 762, - '#', 821, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ':', 1241, - ';', 1190, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1210, - '\\', 72, - ']', 1214, - '^', 1167, - '_', 1414, - 'a', 1534, - 'b', 1502, - 'c', 1490, - 'd', 1451, - 'f', 1521, - 'i', 1543, - 'l', 1567, - 'm', 1419, - 'n', 1574, - 'o', 1592, - 'p', 1627, - 's', 1493, - 'u', 1511, - 'v', 1573, - 'x', 1566, - '{', 1200, - '|', 1164, - '}', 1201, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(552); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\n') SKIP(417); + if (lookahead == '/') ADVANCE(494); + if (lookahead == '\\') ADVANCE(553); + if (lookahead != 0) ADVANCE(558); END_STATE(); case 553: - ADVANCE_MAP( - '!', 762, - '#', 821, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ':', 1241, - ';', 1190, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1210, - '\\', 76, - ']', 1214, - '^', 1167, - 'a', 1534, - 'b', 1502, - 'c', 1490, - 'd', 1451, - 'f', 1521, - 'i', 1543, - 'l', 1567, - 'm', 1419, - 'n', 1574, - 'o', 1592, - 'p', 1627, - 's', 1493, - 'u', 1511, - 'v', 1573, - 'x', 1566, - '{', 1200, - '|', 1164, - '}', 1201, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(553); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\r') ADVANCE(559); + if (lookahead == '/') ADVANCE(494); + if (lookahead == '\\') ADVANCE(553); + if (lookahead != 0) ADVANCE(558); END_STATE(); case 554: - ADVANCE_MAP( - '!', 762, - '#', 821, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ':', 1242, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1210, - '\\', 329, - '^', 1167, - '_', 1414, - 'a', 1534, - 'b', 1503, - 'd', 1452, - 'f', 1501, - 'n', 1575, - 'o', 1591, - 'x', 1566, - '{', 1200, - '|', 1164, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(554); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\r') ADVANCE(557); + if (lookahead == '*') ADVANCE(548); + if (lookahead == '/') ADVANCE(404); + if (lookahead == '\\') ADVANCE(554); + if (lookahead != 0) ADVANCE(549); END_STATE(); case 555: - ADVANCE_MAP( - '!', 762, - '#', 821, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ':', 1242, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1210, - '\\', 341, - '^', 1167, - '_', 1414, - 'a', 1534, - 'b', 1503, - 'd', 1452, - 'n', 1575, - 'o', 1592, - 'x', 1566, - '{', 1200, - '|', 1164, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(555); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\r') ADVANCE(828); + if (lookahead == '/') ADVANCE(826); + if (lookahead == '\\') ADVANCE(825); + if (lookahead != 0) ADVANCE(827); END_STATE(); case 556: - ADVANCE_MAP( - '!', 762, - '#', 821, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ':', 761, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1210, - '\\', 84, - '^', 1167, - '_', 1414, - 'a', 1534, - 'b', 1503, - 'd', 1452, - 'l', 1567, - 'n', 1575, - 'o', 1592, - 's', 1494, - 'u', 1536, - 'x', 1566, - '{', 1200, - '|', 1164, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(556); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '*') ADVANCE(549); + if (lookahead == '/') ADVANCE(826); + if (lookahead == '\\') ADVANCE(553); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(558); END_STATE(); case 557: - ADVANCE_MAP( - '!', 762, - '#', 821, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ':', 761, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1210, - '\\', 94, - '^', 1167, - 'a', 1534, - 'b', 1503, - 'd', 1452, - 'l', 1567, - 'n', 1575, - 'o', 1592, - 's', 1494, - 'u', 1536, - 'x', 1566, - '{', 1200, - '|', 1164, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(557); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '*') ADVANCE(548); + if (lookahead == '/') ADVANCE(404); + if (lookahead == '\\') ADVANCE(554); + if (lookahead != 0) ADVANCE(549); END_STATE(); case 558: - ADVANCE_MAP( - '!', 762, - '#', 821, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ':', 761, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1210, - '\\', 118, - '^', 1167, - 'a', 1534, - 'b', 1503, - 'd', 1452, - 'n', 1575, - 'o', 1592, - 'x', 1566, - '{', 1200, - '|', 1164, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(558); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '/') ADVANCE(494); + if (lookahead == '\\') ADVANCE(553); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(558); END_STATE(); case 559: - ADVANCE_MAP( - '!', 762, - '#', 821, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ':', 761, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1210, - '\\', 148, - '^', 1167, - 'a', 1535, - 'b', 1503, - 'n', 1575, - 'o', 1592, - 'x', 1566, - '{', 1200, - '|', 1164, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(559); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '/') ADVANCE(494); + if (lookahead == '\\') ADVANCE(553); + if (lookahead != 0) ADVANCE(558); END_STATE(); case 560: - ADVANCE_MAP( - '!', 762, - '#', 821, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ':', 1241, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1210, - '\\', 90, - '^', 1167, - '_', 1414, - 'a', 1534, - 'b', 1503, - 'd', 1452, - 'f', 1501, - 'n', 1575, - 'o', 1591, - 'x', 1566, - '{', 1200, - '|', 1164, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(560); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'c') ADVANCE(588); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 561: - ADVANCE_MAP( - '!', 762, - '#', 821, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ':', 1241, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1210, - '\\', 106, - '^', 1167, - '_', 1414, - 'a', 1534, - 'b', 1503, - 'd', 1452, - 'n', 1575, - 'o', 1592, - 'x', 1566, - '{', 1200, - '|', 1164, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(561); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'd') ADVANCE(585); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 562: - ADVANCE_MAP( - '!', 762, - '#', 821, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1210, - '\\', 373, - '^', 1167, - 'a', 1740, - 'b', 1738, - 'n', 1744, - 'o', 1750, - 'x', 1743, - '|', 1164, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(563); - if (('A' <= lookahead && lookahead <= 'Z') || + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'd') ADVANCE(568); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 563: - ADVANCE_MAP( - '!', 762, - '#', 821, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1210, - '\\', 373, - '^', 1167, - 'a', 1535, - 'b', 1503, - 'n', 1575, - 'o', 1592, - 'x', 1566, - '|', 1164, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(563); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'd') ADVANCE(570); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 564: - ADVANCE_MAP( - '!', 762, - '#', 821, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1213, - '\\', 399, - '^', 1167, - 'a', 1535, - 'b', 1503, - 'n', 1575, - 'o', 1592, - 'x', 1566, - '|', 1164, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(564); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'd') ADVANCE(572); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 565: - ADVANCE_MAP( - '!', 762, - '#', 821, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - ':', 1241, - ';', 1190, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - '[', 1210, - '\\', 319, - ']', 1214, - '^', 1166, - '_', 1414, - 'a', 1548, - 'b', 1502, - 'c', 1490, - 'd', 1451, - 'f', 1521, - 'i', 1543, - 'l', 1567, - 'm', 1419, - 'n', 1574, - 'o', 1598, - 'p', 1627, - 's', 1493, - 'u', 1511, - 'v', 1573, - 'x', 1576, - '{', 1200, - '|', 1165, - '}', 1201, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(565); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(575); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 566: - ADVANCE_MAP( - '!', 762, - '#', 821, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - ':', 1241, - ';', 1190, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - '[', 1210, - '\\', 321, - ']', 1214, - '^', 1166, - 'a', 1548, - 'b', 1502, - 'c', 1490, - 'd', 1451, - 'f', 1521, - 'i', 1543, - 'l', 1567, - 'm', 1419, - 'n', 1574, - 'o', 1598, - 'p', 1627, - 's', 1493, - 'u', 1511, - 'v', 1573, - 'x', 1576, - '{', 1200, - '|', 1165, - '}', 1201, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(566); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(539); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 567: - ADVANCE_MAP( - '!', 762, - '#', 821, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - ':', 1242, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - '[', 1210, - '\\', 407, - '^', 1166, - '_', 1414, - 'a', 1548, - 'b', 1503, - 'd', 1452, - 'f', 1501, - 'n', 1575, - 'o', 1597, - 'x', 1576, - '{', 1200, - '|', 1165, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(567); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(526); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 568: - ADVANCE_MAP( - '!', 762, - '#', 821, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - ':', 1242, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - '[', 1210, - '\\', 409, - '^', 1166, - '_', 1414, - 'a', 1548, - 'b', 1503, - 'd', 1452, - 'n', 1575, - 'o', 1598, - 'x', 1576, - '{', 1200, - '|', 1165, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(568); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(524); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 569: - ADVANCE_MAP( - '!', 762, - '#', 821, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - ':', 761, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - '[', 1210, - '\\', 325, - '^', 1166, - '_', 1414, - 'a', 1548, - 'b', 1503, - 'd', 1452, - 'l', 1567, - 'n', 1575, - 'o', 1598, - 's', 1494, - 'u', 1536, - 'x', 1576, - '{', 1200, - '|', 1165, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(569); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(578); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 570: - ADVANCE_MAP( - '!', 762, - '#', 821, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - ':', 761, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - '[', 1210, - '\\', 333, - '^', 1166, - 'a', 1548, - 'b', 1503, - 'd', 1452, - 'l', 1567, - 'n', 1575, - 'o', 1598, - 's', 1494, - 'u', 1536, - 'x', 1576, - '{', 1200, - '|', 1165, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(570); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(579); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 571: - ADVANCE_MAP( - '!', 762, - '#', 821, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - ':', 761, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - '[', 1210, - '\\', 351, - '^', 1166, - 'a', 1548, - 'b', 1503, - 'd', 1452, - 'n', 1575, - 'o', 1598, - 'x', 1576, - '{', 1200, - '|', 1165, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(571); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(580); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 572: - ADVANCE_MAP( - '!', 762, - '#', 821, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - ':', 761, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - '[', 1210, - '\\', 371, - '^', 1166, - 'a', 1549, - 'b', 1503, - 'n', 1575, - 'o', 1598, - 'x', 1576, - '{', 1200, - '|', 1165, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(572); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(581); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 573: - ADVANCE_MAP( - '!', 762, - '#', 821, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - ':', 1241, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - '[', 1210, - '\\', 395, - '^', 1166, - '_', 1414, - 'a', 1548, - 'b', 1503, - 'd', 1452, - 'f', 1501, - 'n', 1575, - 'o', 1597, - 'x', 1576, - '{', 1200, - '|', 1165, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(573); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(532); + if (lookahead == 'n') ADVANCE(560); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 574: - ADVANCE_MAP( - '!', 762, - '#', 821, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - ':', 1241, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - '[', 1210, - '\\', 397, - '^', 1166, - '_', 1414, - 'a', 1548, - 'b', 1503, - 'd', 1452, - 'n', 1575, - 'o', 1598, - 'x', 1576, - '{', 1200, - '|', 1165, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(574); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(532); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 575: - ADVANCE_MAP( - '!', 762, - '#', 821, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - '[', 1210, - '\\', 411, - '^', 1166, - 'a', 1549, - 'b', 1503, - 'n', 1575, - 'o', 1598, - 'x', 1576, - '|', 1165, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(575); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(583); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 576: - ADVANCE_MAP( - '!', 762, - '#', 821, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - '[', 1210, - '\\', 411, - '^', 1166, - 'a', 1742, - 'b', 1738, - 'n', 1744, - 'o', 1753, - 'x', 1745, - '|', 1165, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(575); - if (('A' <= lookahead && lookahead <= 'Z') || + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(542); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 577: - ADVANCE_MAP( - '!', 762, - '#', 849, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ':', 1242, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1210, - '\\', 427, - '^', 1167, - '_', 1414, - 'a', 1534, - 'b', 1503, - 'd', 1452, - 'f', 1501, - 'n', 1575, - 'o', 1591, - 'x', 1566, - '{', 1200, - '|', 1164, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(577); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(535); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 578: - ADVANCE_MAP( - '!', 762, - '#', 849, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ':', 1242, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1210, - '\\', 431, - '^', 1167, - '_', 1414, - 'a', 1534, - 'b', 1503, - 'd', 1452, - 'n', 1575, - 'o', 1592, - 'x', 1566, - '{', 1200, - '|', 1164, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(578); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(536); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 579: - ADVANCE_MAP( - '!', 762, - '#', 849, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ':', 761, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1210, - '\\', 457, - '^', 1167, - '_', 1414, - 'a', 1534, - 'b', 1503, - 'd', 1452, - 'l', 1567, - 'n', 1575, - 'o', 1592, - 's', 1494, - 'u', 1536, - 'x', 1566, - '{', 1200, - '|', 1164, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(579); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(537); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 580: - ADVANCE_MAP( - '!', 762, - '#', 849, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ':', 761, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1210, - '\\', 461, - '^', 1167, - 'a', 1534, - 'b', 1503, - 'd', 1452, - 'l', 1567, - 'n', 1575, - 'o', 1592, - 's', 1494, - 'u', 1536, - 'x', 1566, - '{', 1200, - '|', 1164, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(580); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(545); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 581: - ADVANCE_MAP( - '!', 762, - '#', 849, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ':', 761, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1210, - '\\', 465, - '^', 1167, - 'a', 1534, - 'b', 1503, - 'd', 1452, - 'n', 1575, - 'o', 1592, - 'x', 1566, - '{', 1200, - '|', 1164, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(581); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(547); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 582: - ADVANCE_MAP( - '!', 762, - '#', 849, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ':', 761, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1210, - '\\', 467, - '^', 1167, - 'a', 1535, - 'b', 1503, - 'n', 1575, - 'o', 1592, - 'x', 1566, - '{', 1200, - '|', 1164, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(582); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(543); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 583: - ADVANCE_MAP( - '!', 762, - '#', 849, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ':', 1241, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1210, - '\\', 459, - '^', 1167, - '_', 1414, - 'a', 1534, - 'b', 1503, - 'd', 1452, - 'f', 1501, - 'n', 1575, - 'o', 1591, - 'x', 1566, - '{', 1200, - '|', 1164, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(583); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'i') ADVANCE(591); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 584: - ADVANCE_MAP( - '!', 762, - '#', 849, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ':', 1241, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1210, - '\\', 463, - '^', 1167, - '_', 1414, - 'a', 1534, - 'b', 1503, - 'd', 1452, - 'n', 1575, - 'o', 1592, - 'x', 1566, - '{', 1200, - '|', 1164, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(584); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'i') ADVANCE(576); + if (lookahead == 's') ADVANCE(566); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 585: - ADVANCE_MAP( - '!', 762, - '#', 849, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1211, - '\\', 150, - '^', 1167, - 'a', 1535, - 'b', 1503, - 'n', 1575, - 'o', 1592, - 'x', 1566, - '|', 1164, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(585); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'i') ADVANCE(577); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 586: - ADVANCE_MAP( - '!', 762, - '#', 849, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1210, - '\\', 110, - '^', 1167, - '_', 1414, - 'a', 1534, - 'b', 1502, - 'c', 1490, - 'd', 1451, - 'f', 1521, - 'i', 1543, - 'l', 1567, - 'm', 1419, - 'n', 1574, - 'o', 1592, - 'p', 1627, - 's', 1493, - 'u', 1511, - 'v', 1573, - 'x', 1566, - '{', 1200, - '|', 1164, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(586); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 's') ADVANCE(566); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 587: - ADVANCE_MAP( - '!', 762, - '#', 849, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1210, - '\\', 116, - '^', 1167, - 'a', 1534, - 'b', 1502, - 'c', 1490, - 'd', 1451, - 'f', 1521, - 'i', 1543, - 'l', 1567, - 'm', 1419, - 'n', 1574, - 'o', 1592, - 'p', 1627, - 's', 1493, - 'u', 1511, - 'v', 1573, - 'x', 1566, - '{', 1200, - '|', 1164, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(587); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'l') ADVANCE(584); + if (lookahead == 'n') ADVANCE(561); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 588: - ADVANCE_MAP( - '!', 762, - '#', 849, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1210, - '\\', 437, - '^', 1167, - 'a', 1740, - 'b', 1738, - 'n', 1744, - 'o', 1750, - 'x', 1743, - '|', 1164, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(589); - if (('A' <= lookahead && lookahead <= 'Z') || + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'l') ADVANCE(592); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 589: - ADVANCE_MAP( - '!', 762, - '#', 849, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1210, - '\\', 437, - '^', 1167, - 'a', 1535, - 'b', 1503, - 'n', 1575, - 'o', 1592, - 'x', 1566, - '|', 1164, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(589); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'l') ADVANCE(586); + if (lookahead == 'n') ADVANCE(561); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 590: - ADVANCE_MAP( - '!', 762, - '#', 849, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1213, - '\\', 443, - '^', 1167, - 'a', 1535, - 'b', 1503, - 'n', 1575, - 'o', 1592, - 'x', 1566, - '|', 1164, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(590); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'n') ADVANCE(561); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 591: - ADVANCE_MAP( - '!', 762, - '#', 849, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - ':', 1242, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - '[', 1210, - '\\', 445, - '^', 1166, - '_', 1414, - 'a', 1548, - 'b', 1503, - 'd', 1452, - 'f', 1501, - 'n', 1575, - 'o', 1597, - 'x', 1576, - '{', 1200, - '|', 1165, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(591); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'n') ADVANCE(567); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 592: - ADVANCE_MAP( - '!', 762, - '#', 849, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - ':', 1242, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - '[', 1210, - '\\', 447, - '^', 1166, - '_', 1414, - 'a', 1548, - 'b', 1503, - 'd', 1452, - 'n', 1575, - 'o', 1598, - 'x', 1576, - '{', 1200, - '|', 1165, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(592); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'u') ADVANCE(562); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 593: - ADVANCE_MAP( - '!', 762, - '#', 849, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - ':', 761, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - '[', 1210, - '\\', 425, - '^', 1166, - '_', 1414, - 'a', 1548, - 'b', 1503, - 'd', 1452, - 'l', 1567, - 'n', 1575, - 'o', 1598, - 's', 1494, - 'u', 1536, - 'x', 1576, - '{', 1200, - '|', 1165, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(593); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_preproc_directive); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(593); END_STATE(); case 594: - ADVANCE_MAP( - '!', 762, - '#', 849, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - ':', 761, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - '[', 1210, - '\\', 429, - '^', 1166, - 'a', 1548, - 'b', 1503, - 'd', 1452, - 'l', 1567, - 'n', 1575, - 'o', 1598, - 's', 1494, - 'u', 1536, - 'x', 1576, - '{', 1200, - '|', 1165, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(594); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); case 595: - ADVANCE_MAP( - '!', 762, - '#', 849, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - ':', 761, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - '[', 1210, - '\\', 433, - '^', 1166, - 'a', 1548, - 'b', 1503, - 'd', 1452, - 'n', 1575, - 'o', 1598, - 'x', 1576, - '{', 1200, - '|', 1165, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(595); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 596: - ADVANCE_MAP( - '!', 762, - '#', 849, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - ':', 761, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - '[', 1210, - '\\', 435, - '^', 1166, - 'a', 1549, - 'b', 1503, - 'n', 1575, - 'o', 1598, - 'x', 1576, - '{', 1200, - '|', 1165, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(596); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(631); END_STATE(); case 597: - ADVANCE_MAP( - '!', 762, - '#', 849, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - ':', 1241, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - '[', 1210, - '\\', 439, - '^', 1166, - '_', 1414, - 'a', 1548, - 'b', 1503, - 'd', 1452, - 'f', 1501, - 'n', 1575, - 'o', 1597, - 'x', 1576, - '{', 1200, - '|', 1165, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(597); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 598: - ADVANCE_MAP( - '!', 762, - '#', 849, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - ':', 1241, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - '[', 1210, - '\\', 441, - '^', 1166, - '_', 1414, - 'a', 1548, - 'b', 1503, - 'd', 1452, - 'n', 1575, - 'o', 1598, - 'x', 1576, - '{', 1200, - '|', 1165, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(598); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 599: - ADVANCE_MAP( - '!', 762, - '#', 849, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - '[', 1210, - '\\', 343, - '^', 1166, - '_', 1414, - 'a', 1548, - 'b', 1502, - 'c', 1490, - 'd', 1451, - 'f', 1521, - 'i', 1543, - 'l', 1567, - 'm', 1419, - 'n', 1574, - 'o', 1598, - 'p', 1627, - 's', 1493, - 'u', 1511, - 'v', 1573, - 'x', 1576, - '{', 1200, - '|', 1165, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(599); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(678); + if (lookahead == '.') ADVANCE(472); + if (lookahead == '0') ADVANCE(691); + if (lookahead == '=') ADVANCE(671); + if (lookahead == '>') ADVANCE(688); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(694); END_STATE(); case 600: - ADVANCE_MAP( - '!', 762, - '#', 849, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - '[', 1210, - '\\', 349, - '^', 1166, - 'a', 1548, - 'b', 1502, - 'c', 1490, - 'd', 1451, - 'f', 1521, - 'i', 1543, - 'l', 1567, - 'm', 1419, - 'n', 1574, - 'o', 1598, - 'p', 1627, - 's', 1493, - 'u', 1511, - 'v', 1573, - 'x', 1576, - '{', 1200, - '|', 1165, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(600); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(678); + if (lookahead == '.') ADVANCE(472); + if (lookahead == '0') ADVANCE(691); + if (lookahead == '=') ADVANCE(671); + if (lookahead == '>') ADVANCE(687); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(694); END_STATE(); case 601: - ADVANCE_MAP( - '!', 762, - '#', 849, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - '[', 1210, - '\\', 449, - '^', 1166, - 'a', 1549, - 'b', 1503, - 'n', 1575, - 'o', 1598, - 'x', 1576, - '|', 1165, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(601); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(678); + if (lookahead == '.') ADVANCE(472); + if (lookahead == '0') ADVANCE(691); + if (lookahead == '>') ADVANCE(687); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(694); END_STATE(); case 602: - ADVANCE_MAP( - '!', 762, - '#', 849, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - '[', 1210, - '\\', 449, - '^', 1166, - 'a', 1742, - 'b', 1738, - 'n', 1744, - 'o', 1753, - 'x', 1745, - '|', 1165, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(601); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(678); + if (lookahead == '.') ADVANCE(472); + if (lookahead == '0') ADVANCE(691); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(694); END_STATE(); case 603: - ADVANCE_MAP( - '!', 762, - '#', 809, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - '+', 1149, - ',', 1071, - '-', 1139, - '/', 1158, - ':', 761, - ';', 1190, - '<', 1185, - '=', 763, - '>', 1173, - '[', 1211, - '\\', 38, - '^', 1166, - '_', 1393, - 'a', 1660, - 'b', 1568, - 'c', 1489, - 'd', 1451, - 'f', 1521, - 'i', 1543, - 'l', 1567, - 'm', 1418, - 'n', 1579, - 'p', 1627, - 'r', 1481, - 's', 1493, - 'u', 1511, - 'v', 1557, - '|', 1165, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(603); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(678); + if (lookahead == '=') ADVANCE(671); + if (lookahead == '>') ADVANCE(688); END_STATE(); case 604: - ADVANCE_MAP( - '!', 762, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1144, - '.', 1312, - '/', 1159, - ':', 761, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1211, - '\\', 64, - '^', 1167, - '_', 1393, - 'a', 1534, - 'b', 1503, - 'c', 1562, - 'd', 1452, - 'm', 1656, - 'n', 1561, - 'o', 1592, - 'r', 1481, - 'v', 1571, - 'x', 1566, - '{', 1200, - '|', 1164, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(604); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(678); + if (lookahead == '=') ADVANCE(671); + if (lookahead == '>') ADVANCE(687); END_STATE(); case 605: - ADVANCE_MAP( - '!', 762, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1144, - '.', 1312, - '/', 1159, - ':', 761, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1211, - '\\', 317, - '^', 1167, - '_', 1393, - 'a', 1548, - 'b', 1503, - 'c', 1562, - 'd', 1452, - 'm', 1656, - 'n', 1561, - 'o', 1598, - 'r', 1481, - 'v', 1571, - 'x', 1576, - '{', 1200, - '|', 1164, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(605); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(678); + if (lookahead == '>') ADVANCE(687); END_STATE(); case 606: - ADVANCE_MAP( - '!', 762, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1144, - '.', 1312, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1210, - '\\', 114, - '^', 1167, - '_', 1414, - 'a', 1534, - 'b', 1502, - 'c', 1490, - 'd', 1451, - 'f', 1521, - 'i', 1543, - 'l', 1567, - 'm', 1419, - 'n', 1574, - 'o', 1592, - 'p', 1627, - 's', 1493, - 'u', 1511, - 'v', 1573, - 'x', 1566, - '{', 1200, - '|', 1164, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(606); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '.') ADVANCE(472); + if (lookahead == '0') ADVANCE(691); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(694); END_STATE(); case 607: - ADVANCE_MAP( - '!', 762, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1144, - '.', 1312, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1210, - '\\', 124, - '^', 1167, - 'a', 1534, - 'b', 1502, - 'c', 1490, - 'd', 1451, - 'f', 1521, - 'i', 1543, - 'l', 1567, - 'm', 1419, - 'n', 1574, - 'o', 1592, - 'p', 1627, - 's', 1493, - 'u', 1511, - 'v', 1573, - 'x', 1566, - '{', 1200, - '|', 1164, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(607); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(671); + if (lookahead == '>') ADVANCE(401); END_STATE(); case 608: - ADVANCE_MAP( - '!', 762, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1144, - '.', 1312, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1210, - '\\', 347, - '^', 1167, - '_', 1414, - 'a', 1548, - 'b', 1502, - 'c', 1490, - 'd', 1451, - 'f', 1521, - 'i', 1543, - 'l', 1567, - 'm', 1419, - 'n', 1574, - 'o', 1598, - 'p', 1627, - 's', 1493, - 'u', 1511, - 'v', 1573, - 'x', 1576, - '{', 1200, - '|', 1164, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(608); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 609: - ADVANCE_MAP( - '!', 762, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1144, - '.', 1312, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1210, - '\\', 355, - '^', 1167, - 'a', 1548, - 'b', 1502, - 'c', 1490, - 'd', 1451, - 'f', 1521, - 'i', 1543, - 'l', 1567, - 'm', 1419, - 'n', 1574, - 'o', 1598, - 'p', 1627, - 's', 1493, - 'u', 1511, - 'v', 1573, - 'x', 1576, - '{', 1200, - '|', 1164, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(609); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(679); END_STATE(); case 610: - ADVANCE_MAP( - '!', 762, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ':', 761, - ';', 1190, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1211, - '\\', 60, - '^', 1167, - '_', 1393, - 'a', 1534, - 'b', 1503, - 'c', 1562, - 'd', 1452, - 'm', 1656, - 'n', 1561, - 'o', 1592, - 'r', 1481, - 'v', 1571, - 'x', 1566, - '{', 1200, - '|', 1164, - '}', 1201, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(610); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(679); + if (lookahead == '.') ADVANCE(472); + if (lookahead == '0') ADVANCE(691); + if (lookahead == '=') ADVANCE(670); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(694); END_STATE(); case 611: - ADVANCE_MAP( - '!', 762, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ':', 1241, - ';', 1190, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1211, - '\\', 144, - ']', 1214, - '^', 1167, - '_', 1414, - 'a', 1535, - 'b', 1503, - 'n', 1575, - 'o', 1592, - 'x', 1566, - '{', 1200, - '|', 1164, - '}', 1201, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(611); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(679); + if (lookahead == '.') ADVANCE(472); + if (lookahead == '0') ADVANCE(691); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(694); END_STATE(); case 612: - ADVANCE_MAP( - '!', 762, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1689, - '?', 1243, - '[', 1210, - '\\', 128, - '^', 1167, - '_', 1414, - 'a', 1534, - 'b', 1502, - 'c', 1490, - 'd', 1451, - 'f', 1521, - 'i', 1543, - 'l', 1567, - 'm', 1419, - 'n', 1574, - 'o', 1592, - 'p', 1627, - 's', 1493, - 'u', 1511, - 'v', 1573, - 'x', 1566, - '{', 1200, - '|', 1164, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(612); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(679); + if (lookahead == '=') ADVANCE(670); END_STATE(); case 613: - ADVANCE_MAP( - '!', 762, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1689, - '?', 1243, - '[', 1210, - '\\', 134, - '^', 1167, - 'a', 1534, - 'b', 1502, - 'c', 1490, - 'd', 1451, - 'f', 1521, - 'i', 1543, - 'l', 1567, - 'm', 1419, - 'n', 1574, - 'o', 1592, - 'p', 1627, - 's', 1493, - 'u', 1511, - 'v', 1573, - 'x', 1566, - '{', 1200, - '|', 1164, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(613); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '.') ADVANCE(472); + if (lookahead == '0') ADVANCE(691); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(694); END_STATE(); case 614: - ADVANCE_MAP( - '!', 762, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - '-', 1145, - '.', 1310, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1210, - '\\', 132, - '^', 1167, - '_', 1414, - 'a', 1534, - 'b', 1502, - 'c', 1490, - 'd', 1451, - 'f', 1521, - 'i', 1543, - 'l', 1567, - 'm', 1419, - 'n', 1574, - 'o', 1592, - 'p', 1627, - 's', 1493, - 'u', 1511, - 'v', 1573, - 'x', 1566, - '{', 1200, - '|', 1164, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(614); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(670); END_STATE(); case 615: - ADVANCE_MAP( - '!', 762, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - '-', 1145, - '.', 1310, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1210, - '\\', 142, - '^', 1167, - 'a', 1534, - 'b', 1502, - 'c', 1490, - 'd', 1451, - 'f', 1521, - 'i', 1543, - 'l', 1567, - 'm', 1419, - 'n', 1574, - 'o', 1592, - 'p', 1627, - 's', 1493, - 'u', 1511, - 'v', 1573, - 'x', 1566, - '{', 1200, - '|', 1164, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(615); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 616: - ADVANCE_MAP( - '!', 762, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - ':', 1242, - ';', 1190, - '<', 1184, - '=', 1216, - '>', 1173, - '?', 1243, - '[', 1211, - '\\', 315, - '^', 1166, - '_', 1393, - 'a', 1548, - 'b', 1503, - 'c', 1562, - 'd', 1452, - 'm', 1656, - 'n', 1561, - 'o', 1598, - 'r', 1481, - 'v', 1571, - 'x', 1576, - '{', 1200, - '|', 1165, - '}', 1201, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(616); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(667); END_STATE(); case 617: - ADVANCE_MAP( - '!', 762, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - '<', 1184, - '=', 763, - '>', 1689, - '?', 1243, - '[', 1210, - '\\', 357, - '^', 1166, - '_', 1414, - 'a', 1548, - 'b', 1502, - 'c', 1490, - 'd', 1451, - 'f', 1521, - 'i', 1543, - 'l', 1567, - 'm', 1419, - 'n', 1574, - 'o', 1598, - 'p', 1627, - 's', 1493, - 'u', 1511, - 'v', 1573, - 'x', 1576, - '{', 1200, - '|', 1165, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(617); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(403); + if (lookahead == '/') ADVANCE(829); END_STATE(); case 618: - ADVANCE_MAP( - '!', 762, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - '<', 1184, - '=', 763, - '>', 1689, - '?', 1243, - '[', 1210, - '\\', 361, - '^', 1166, - 'a', 1548, - 'b', 1502, - 'c', 1490, - 'd', 1451, - 'f', 1521, - 'i', 1543, - 'l', 1567, - 'm', 1419, - 'n', 1574, - 'o', 1598, - 'p', 1627, - 's', 1493, - 'u', 1511, - 'v', 1573, - 'x', 1576, - '{', 1200, - '|', 1165, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(618); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(403); + if (lookahead == '/') ADVANCE(829); + if (lookahead == '=') ADVANCE(668); END_STATE(); case 619: - ADVANCE_MAP( - '!', 762, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - '-', 1146, - '.', 1310, - '/', 1158, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - '[', 1210, - '\\', 359, - '^', 1166, - '_', 1414, - 'a', 1548, - 'b', 1502, - 'c', 1490, - 'd', 1451, - 'f', 1521, - 'i', 1543, - 'l', 1567, - 'm', 1419, - 'n', 1574, - 'o', 1598, - 'p', 1627, - 's', 1493, - 'u', 1511, - 'v', 1573, - 'x', 1576, - '{', 1200, - '|', 1165, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(619); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 620: - ADVANCE_MAP( - '!', 762, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - '-', 1146, - '.', 1310, - '/', 1158, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - '[', 1210, - '\\', 369, - '^', 1166, - 'a', 1548, - 'b', 1502, - 'c', 1490, - 'd', 1451, - 'f', 1521, - 'i', 1543, - 'l', 1567, - 'm', 1419, - 'n', 1574, - 'o', 1598, - 'p', 1627, - 's', 1493, - 'u', 1511, - 'v', 1573, - 'x', 1576, - '{', 1200, - '|', 1165, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(620); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(669); END_STATE(); case 621: - ADVANCE_MAP( - '!', 762, - '$', 1022, - '%', 1160, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - ':', 1242, - '<', 1184, - '=', 763, - '>', 1689, - '?', 1243, - '[', 1210, - ); - if (lookahead == '\\') SKIP(365); - if (lookahead == '^') ADVANCE(1166); - if (lookahead == '_') ADVANCE(767); - if (lookahead == 'a') ADVANCE(899); - if (lookahead == 'b') ADVANCE(863); - if (lookahead == 'c') ADVANCE(915); - if (lookahead == 'd') ADVANCE(823); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'l') ADVANCE(917); - if (lookahead == 'm') ADVANCE(983); - if (lookahead == 'n') ADVANCE(907); - if (lookahead == 'o') ADVANCE(939); - if (lookahead == 'r') ADVANCE(830); - if (lookahead == 's') ADVANCE(860); - if (lookahead == 'u') ADVANCE(892); - if (lookahead == 'v') ADVANCE(908); - if (lookahead == 'x') ADVANCE(921); - if (lookahead == '{') ADVANCE(1200); - if (lookahead == '|') ADVANCE(1165); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(621); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 622: - ADVANCE_MAP( - '!', 762, - '$', 1022, - '%', 1160, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - ':', 1241, - '<', 1184, - '=', 763, - '>', 1689, - '?', 1243, - '[', 1210, - ); - if (lookahead == '\\') SKIP(138); - if (lookahead == '^') ADVANCE(1166); - if (lookahead == '_') ADVANCE(767); - if (lookahead == 'a') ADVANCE(899); - if (lookahead == 'b') ADVANCE(863); - if (lookahead == 'c') ADVANCE(915); - if (lookahead == 'd') ADVANCE(823); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'l') ADVANCE(917); - if (lookahead == 'm') ADVANCE(983); - if (lookahead == 'n') ADVANCE(907); - if (lookahead == 'o') ADVANCE(939); - if (lookahead == 'r') ADVANCE(830); - if (lookahead == 's') ADVANCE(860); - if (lookahead == 'u') ADVANCE(892); - if (lookahead == 'v') ADVANCE(908); - if (lookahead == 'x') ADVANCE(921); - if (lookahead == '{') ADVANCE(1200); - if (lookahead == '|') ADVANCE(1165); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(622); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 623: - ADVANCE_MAP( - '!', 762, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1144, - '.', 1312, - '/', 1159, - ':', 1242, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1210, - ); - if (lookahead == '\\') SKIP(367); - if (lookahead == '^') ADVANCE(1167); - if (lookahead == '_') ADVANCE(787); - if (lookahead == 'a') ADVANCE(899); - if (lookahead == 'b') ADVANCE(863); - if (lookahead == 'd') ADVANCE(823); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'l') ADVANCE(917); - if (lookahead == 'n') ADVANCE(922); - if (lookahead == 'o') ADVANCE(939); - if (lookahead == 's') ADVANCE(860); - if (lookahead == 'u') ADVANCE(892); - if (lookahead == 'x') ADVANCE(921); - if (lookahead == '{') ADVANCE(1200); - if (lookahead == '|') ADVANCE(1164); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(623); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(676); + if (lookahead == '|') ADVANCE(621); END_STATE(); case 624: - ADVANCE_MAP( - '!', 762, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1144, - '.', 1312, - '/', 1159, - ':', 1241, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1210, - ); - if (lookahead == '\\') SKIP(122); - if (lookahead == '^') ADVANCE(1167); - if (lookahead == '_') ADVANCE(787); - if (lookahead == 'a') ADVANCE(896); - if (lookahead == 'b') ADVANCE(863); - if (lookahead == 'd') ADVANCE(823); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'n') ADVANCE(922); - if (lookahead == 'o') ADVANCE(934); - if (lookahead == 'x') ADVANCE(916); - if (lookahead == '{') ADVANCE(1200); - if (lookahead == '|') ADVANCE(1164); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(624); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(621); END_STATE(); case 625: - ADVANCE_MAP( - '!', 762, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1144, - '.', 1312, - '/', 1159, - ':', 1241, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1210, - ); - if (lookahead == '\\') SKIP(140); - if (lookahead == '^') ADVANCE(1167); - if (lookahead == '_') ADVANCE(787); - if (lookahead == 'a') ADVANCE(899); - if (lookahead == 'b') ADVANCE(863); - if (lookahead == 'd') ADVANCE(823); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'l') ADVANCE(917); - if (lookahead == 'n') ADVANCE(922); - if (lookahead == 'o') ADVANCE(939); - if (lookahead == 's') ADVANCE(860); - if (lookahead == 'u') ADVANCE(892); - if (lookahead == 'x') ADVANCE(921); - if (lookahead == '{') ADVANCE(1200); - if (lookahead == '|') ADVANCE(1164); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(625); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 626: - ADVANCE_MAP( - '!', 762, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1144, - '.', 1312, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1212, - ); - if (lookahead == '\\') SKIP(164); - if (lookahead == '^') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(894); - if (lookahead == 'b') ADVANCE(863); - if (lookahead == 'n') ADVANCE(922); - if (lookahead == 'o') ADVANCE(933); - if (lookahead == 'x') ADVANCE(916); - if (lookahead == '|') ADVANCE(1164); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(626); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(675); END_STATE(); case 627: - ADVANCE_MAP( - '!', 762, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1144, - '.', 1312, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1213, - ); - if (lookahead == '\\') SKIP(379); - if (lookahead == '^') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(894); - if (lookahead == 'b') ADVANCE(863); - if (lookahead == 'n') ADVANCE(922); - if (lookahead == 'o') ADVANCE(933); - if (lookahead == 'x') ADVANCE(916); - if (lookahead == '|') ADVANCE(1164); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(627); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 628: - ADVANCE_MAP( - '!', 762, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ':', 1241, - '<', 1182, - '=', 1216, - '>', 1689, - '?', 1243, - '[', 1210, - ); - if (lookahead == '\\') SKIP(130); - if (lookahead == '^') ADVANCE(1167); - if (lookahead == '_') ADVANCE(787); - if (lookahead == 'a') ADVANCE(896); - if (lookahead == 'b') ADVANCE(863); - if (lookahead == 'd') ADVANCE(823); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'n') ADVANCE(922); - if (lookahead == 'o') ADVANCE(934); - if (lookahead == 'x') ADVANCE(916); - if (lookahead == '{') ADVANCE(1200); - if (lookahead == '|') ADVANCE(1164); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(628); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(622); END_STATE(); case 629: - ADVANCE_MAP( - '!', 762, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ';', 1190, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1212, - ); - if (lookahead == '\\') SKIP(162); - if (lookahead == '^') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(894); - if (lookahead == 'b') ADVANCE(863); - if (lookahead == 'n') ADVANCE(922); - if (lookahead == 'o') ADVANCE(933); - if (lookahead == 'x') ADVANCE(916); - if (lookahead == '|') ADVANCE(1164); - if (lookahead == '}') ADVANCE(1201); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(629); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(622); + if (lookahead == '=') ADVANCE(674); END_STATE(); case 630: - ADVANCE_MAP( - '!', 762, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1689, - '?', 1243, - '[', 1211, - ); - if (lookahead == '\\') SKIP(160); - if (lookahead == '^') ADVANCE(1167); - if (lookahead == '_') ADVANCE(782); - if (lookahead == 'a') ADVANCE(895); - if (lookahead == 'b') ADVANCE(863); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'n') ADVANCE(912); - if (lookahead == 'o') ADVANCE(934); - if (lookahead == 'r') ADVANCE(843); - if (lookahead == 't') ADVANCE(861); - if (lookahead == 'x') ADVANCE(916); - if (lookahead == '|') ADVANCE(1164); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(630); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 631: - ADVANCE_MAP( - '!', 762, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1689, - '?', 1243, - '[', 1213, - ); - if (lookahead == '\\') SKIP(178); - if (lookahead == '^') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(894); - if (lookahead == 'b') ADVANCE(863); - if (lookahead == 'n') ADVANCE(922); - if (lookahead == 'o') ADVANCE(933); - if (lookahead == 'x') ADVANCE(916); - if (lookahead == '|') ADVANCE(1164); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(631); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 632: - ADVANCE_MAP( - '!', 762, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - '-', 1145, - '.', 1310, - '/', 1159, - ':', 1241, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1210, - ); - if (lookahead == '\\') SKIP(136); - if (lookahead == '^') ADVANCE(1167); - if (lookahead == '_') ADVANCE(787); - if (lookahead == 'a') ADVANCE(896); - if (lookahead == 'b') ADVANCE(863); - if (lookahead == 'd') ADVANCE(823); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'n') ADVANCE(922); - if (lookahead == 'o') ADVANCE(934); - if (lookahead == 'x') ADVANCE(916); - if (lookahead == '{') ADVANCE(1200); - if (lookahead == '|') ADVANCE(1164); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(632); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(634); + if (lookahead == '>') ADVANCE(647); END_STATE(); case 633: - ADVANCE_MAP( - '!', 762, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - '-', 1145, - '.', 1310, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1211, - ); - if (lookahead == '\\') SKIP(166); - if (lookahead == '^') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(894); - if (lookahead == 'b') ADVANCE(863); - if (lookahead == 'n') ADVANCE(922); - if (lookahead == 'o') ADVANCE(933); - if (lookahead == 'x') ADVANCE(916); - if (lookahead == '|') ADVANCE(1164); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(633); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(634); + if (lookahead == '>') ADVANCE(648); END_STATE(); case 634: - ADVANCE_MAP( - '!', 762, - '%', 1161, - '&', 1170, - '(', 1135, - '*', 1157, - '+', 1153, - '-', 1145, - '.', 1310, - '/', 1159, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1213, - ); - if (lookahead == '\\') SKIP(381); - if (lookahead == '^') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(894); - if (lookahead == 'b') ADVANCE(863); - if (lookahead == 'n') ADVANCE(922); - if (lookahead == 'o') ADVANCE(933); - if (lookahead == 'x') ADVANCE(916); - if (lookahead == '|') ADVANCE(1164); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(634); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 635: - ADVANCE_MAP( - '!', 762, - '%', 1161, - '&', 1170, - ')', 1072, - '*', 1157, - '+', 1155, - ',', 1071, - '-', 1148, - '.', 736, - '/', 1159, - '<', 1183, - '=', 1216, - '>', 1174, - ); - if (lookahead == '\\') SKIP(206); - if (lookahead == '^') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(898); - if (lookahead == 'b') ADVANCE(863); - if (lookahead == 'n') ADVANCE(922); - if (lookahead == 'o') ADVANCE(938); - if (lookahead == 'x') ADVANCE(921); - if (lookahead == '|') ADVANCE(1164); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(635); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 636: - ADVANCE_MAP( - '!', 762, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - ';', 1190, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - '[', 1211, - ); - if (lookahead == '\\') SKIP(377); - if (lookahead == '^') ADVANCE(1166); - if (lookahead == 'a') ADVANCE(898); - if (lookahead == 'b') ADVANCE(863); - if (lookahead == 'n') ADVANCE(922); - if (lookahead == 'o') ADVANCE(938); - if (lookahead == 'x') ADVANCE(921); - if (lookahead == '|') ADVANCE(1165); - if (lookahead == '}') ADVANCE(1201); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(636); + ACCEPT_TOKEN(anon_sym_LT_EQ); + if (lookahead == '>') ADVANCE(677); END_STATE(); case 637: - ADVANCE_MAP( - '!', 762, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - '-', 1146, - '.', 1310, - '/', 1158, - ':', 1242, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - '[', 1210, - ); - if (lookahead == '\\') SKIP(190); - if (lookahead == '^') ADVANCE(1166); - if (lookahead == '_') ADVANCE(787); - if (lookahead == 'a') ADVANCE(899); - if (lookahead == 'b') ADVANCE(863); - if (lookahead == 'd') ADVANCE(823); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'l') ADVANCE(917); - if (lookahead == 'n') ADVANCE(922); - if (lookahead == 'o') ADVANCE(939); - if (lookahead == 's') ADVANCE(860); - if (lookahead == 'u') ADVANCE(892); - if (lookahead == 'x') ADVANCE(921); - if (lookahead == '{') ADVANCE(1200); - if (lookahead == '|') ADVANCE(1165); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(637); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 638: - ADVANCE_MAP( - '!', 762, - '%', 1160, - '&', 1169, - '(', 1135, - '*', 1156, - '+', 1150, - '-', 1146, - '.', 1310, - '/', 1158, - ':', 1241, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - '[', 1210, - ); - if (lookahead == '\\') SKIP(363); - if (lookahead == '^') ADVANCE(1166); - if (lookahead == '_') ADVANCE(787); - if (lookahead == 'a') ADVANCE(899); - if (lookahead == 'b') ADVANCE(863); - if (lookahead == 'd') ADVANCE(823); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'n') ADVANCE(922); - if (lookahead == 'o') ADVANCE(939); - if (lookahead == 'x') ADVANCE(921); - if (lookahead == '{') ADVANCE(1200); - if (lookahead == '|') ADVANCE(1165); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(638); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '.') ADVANCE(413); END_STATE(); case 639: - ADVANCE_MAP( - '"', 1347, - '$', 774, - '&', 1169, - '(', 1135, - '*', 1156, - '/', 737, - ':', 761, - 'L', 1363, - 'U', 1367, - '[', 1211, - '\\', 152, - '_', 1393, - 'a', 1660, - 'b', 1568, - 'c', 1489, - 'd', 1451, - 'f', 1521, - 'i', 1543, - 'l', 1567, - 'm', 1418, - 'n', 1579, - 'p', 1627, - 'r', 1481, - 's', 1493, - 'u', 1372, - 'v', 1557, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(639); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '.') ADVANCE(413); + if (lookahead == '<') ADVANCE(646); + if (lookahead == '=') ADVANCE(636); END_STATE(); case 640: - ADVANCE_MAP( - '"', 1347, - '$', 774, - ')', 1072, - '/', 737, - ':', 1241, - 'L', 1362, - 'R', 1364, - 'U', 1366, - '\\', 275, - 'u', 1371, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(640); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '.') ADVANCE(413); + if (lookahead == '<') ADVANCE(645); + if (lookahead == '=') ADVANCE(636); END_STATE(); case 641: - ADVANCE_MAP( - '"', 1347, - '$', 774, - '/', 737, - '<', 765, - 'L', 1363, - 'U', 1367, - '\\', 283, - 'u', 1373, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(641); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(646); + if (lookahead == '=') ADVANCE(636); END_STATE(); case 642: - if (lookahead == '"') ADVANCE(1347); - if (lookahead == '/') ADVANCE(737); - if (lookahead == '\\') ADVANCE(287); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(642); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(646); + if (lookahead == '=') ADVANCE(635); END_STATE(); case 643: - if (lookahead == '"') ADVANCE(1343); - if (lookahead == 'R') ADVANCE(648); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(645); + if (lookahead == '=') ADVANCE(636); END_STATE(); case 644: - if (lookahead == '"') ADVANCE(1694); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(645); + if (lookahead == '=') ADVANCE(635); END_STATE(); case 645: - if (lookahead == '"') ADVANCE(1345); - if (lookahead == 'R') ADVANCE(649); + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); case 646: - if (lookahead == '"') ADVANCE(1344); - if (lookahead == '8') ADVANCE(650); - if (lookahead == 'R') ADVANCE(651); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(672); END_STATE(); case 647: - if (lookahead == '"') ADVANCE(1344); - if (lookahead == '8') ADVANCE(650); - if (lookahead == 'R') ADVANCE(651); - if (lookahead == 'n') ADVANCE(956); + ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); case 648: - if (lookahead == '"') ADVANCE(1695); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(673); END_STATE(); case 649: - if (lookahead == '"') ADVANCE(1697); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 650: - if (lookahead == '"') ADVANCE(1346); - if (lookahead == 'R') ADVANCE(652); + ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); case 651: - if (lookahead == '"') ADVANCE(1696); + ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); END_STATE(); case 652: - if (lookahead == '"') ADVANCE(1698); + ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); END_STATE(); case 653: - if (lookahead == '"') ADVANCE(1704); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 654: - ADVANCE_MAP( - '#', 869, - '$', 774, - '(', 1135, - ')', 1072, - ',', 1071, - '/', 737, - ':', 1241, - ';', 1190, - '<', 1178, - '=', 1215, - '>', 1689, - '[', 1211, - '\\', 277, - '{', 1200, - '}', 1201, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(654); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 655: - ADVANCE_MAP( - '#', 811, - '$', 774, - '&', 1169, - '(', 1135, - '*', 1156, - ',', 1071, - '/', 737, - ':', 761, - ';', 1190, - '[', 1211, - '\\', 40, - '_', 1393, - 'a', 1660, - 'b', 1568, - 'c', 1489, - 'd', 1451, - 'f', 1521, - 'i', 1543, - 'l', 1567, - 'm', 1418, - 'n', 1579, - 'p', 1627, - 'r', 1481, - 's', 1493, - 'u', 1511, - 'v', 1557, - '}', 1201, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(655); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 656: - ADVANCE_MAP( - '#', 821, - '$', 774, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - ',', 1071, - '.', 751, - '/', 737, - ':', 761, - ';', 1190, - '<', 1178, - '=', 1215, - '>', 1689, - '[', 1210, - '\\', 267, - '{', 1200, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(656); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == '[') ADVANCE(651); END_STATE(); case 657: - ADVANCE_MAP( - '#', 805, - '$', 774, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - ',', 1071, - '.', 751, - '/', 737, - ':', 1242, - ';', 1190, - '<', 1178, - '=', 1215, - '>', 1689, - '[', 1211, - '\\', 36, - '_', 1393, - 'a', 1660, - 'b', 1568, - 'c', 1489, - 'd', 1451, - 'f', 1521, - 'i', 1543, - 'l', 1567, - 'm', 1418, - 'n', 1579, - 'p', 1627, - 'r', 1481, - 's', 1493, - 'u', 1511, - 'v', 1557, - '{', 1200, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(657); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == '[') ADVANCE(651); + if (lookahead == ']') ADVANCE(839); END_STATE(); case 658: - ADVANCE_MAP( - '#', 807, - '$', 774, - '&', 1169, - '(', 1135, - '*', 1156, - ',', 1071, - '/', 737, - ':', 761, - ';', 1190, - '[', 1211, - '\\', 42, - '_', 1393, - 'a', 1660, - 'b', 1568, - 'c', 1489, - 'd', 1451, - 'f', 1521, - 'i', 1543, - 'l', 1567, - 'm', 1418, - 'n', 1579, - 'p', 1627, - 'r', 1481, - 's', 1493, - 'u', 1511, - 'v', 1557, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(658); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == ']') ADVANCE(839); END_STATE(); case 659: - ADVANCE_MAP( - '#', 849, - '$', 774, - '(', 1135, - ',', 1071, - '/', 737, - ':', 761, - '<', 1178, - '=', 1215, - '[', 1211, - '\\', 281, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(659); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 660: - ADVANCE_MAP( - '$', 774, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - ',', 1071, - '-', 764, - '/', 737, - ':', 1241, - ';', 1190, - '=', 1215, - '>', 1689, - '[', 1211, - '\\', 244, - 'f', 1501, - 'o', 1662, - 'r', 1474, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(660); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 661: - ADVANCE_MAP( - '$', 774, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - ',', 1071, - '.', 1309, - '/', 737, - ':', 761, - '<', 1178, - '=', 1215, - '>', 1689, - '[', 1210, - '\\', 108, - '_', 1391, - 'c', 1562, - 'd', 1452, - 'm', 1656, - 'n', 1580, - 'r', 1481, - 'v', 1571, - '{', 1200, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(661); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(630); END_STATE(); case 662: - ADVANCE_MAP( - '$', 774, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - ',', 1071, - '.', 751, - '/', 737, - ':', 1242, - ';', 1190, - '<', 1178, - '=', 1215, - '>', 1689, - '[', 1211, - '\\', 156, - '_', 1393, - 'a', 1660, - 'c', 1562, - 'd', 1452, - 'm', 1656, - 'n', 1580, - 'r', 1481, - 'v', 1571, - '{', 1200, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(662); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_primitive_type); + if (lookahead == '1') ADVANCE(757); + if (lookahead == '3') ADVANCE(755); + if (lookahead == '6') ADVANCE(756); + if (lookahead == '8') ADVANCE(766); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'p') ADVANCE(815); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 663: - ADVANCE_MAP( - '$', 774, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - ',', 1071, - '.', 751, - '/', 737, - ':', 1242, - ';', 1190, - '<', 1178, - '=', 1215, - '>', 1689, - '[', 1211, - '\\', 170, - '_', 1393, - 'a', 1660, - 'c', 1562, - 'd', 1452, - 'f', 1501, - 'm', 1656, - 'n', 1580, - 'o', 1662, - 'r', 1481, - 'v', 1571, - '{', 1200, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(663); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_primitive_type); + if (lookahead == '\\') ADVANCE(431); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 664: - ADVANCE_MAP( - '$', 774, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - ',', 1071, - '.', 751, - '/', 737, - ':', 761, - ';', 1190, - '<', 1178, - '=', 1215, - '>', 1689, - '[', 1211, - '\\', 168, - '_', 1393, - 'a', 1660, - 'c', 1562, - 'd', 1452, - 'l', 1567, - 'm', 1656, - 'n', 1580, - 'r', 1481, - 's', 1494, - 'u', 1536, - 'v', 1571, - '{', 1200, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(664); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 665: - ADVANCE_MAP( - '$', 774, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - ',', 1071, - '.', 751, - '/', 737, - ':', 761, - '=', 1215, - '>', 1689, - '[', 1211, - '\\', 78, - '_', 1393, - 'c', 1562, - 'd', 1452, - 'm', 1656, - 'n', 1580, - 'r', 1481, - 'v', 1571, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(665); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(650); END_STATE(); case 666: - ADVANCE_MAP( - '$', 774, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - ',', 1071, - '.', 751, - '/', 737, - ':', 761, - '=', 1215, - '>', 1689, - '[', 1210, - '\\', 198, - 'd', 1452, - '{', 1200, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(666); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 667: - ADVANCE_MAP( - '$', 774, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - ',', 1071, - '.', 751, - '/', 737, - ':', 1241, - ';', 1190, - '<', 1178, - '=', 1215, - '[', 1211, - '\\', 252, - '_', 1414, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(667); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 668: - ADVANCE_MAP( - '$', 774, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - ',', 1071, - '/', 737, - ':', 1242, - ';', 1190, - '<', 1178, - '=', 1215, - '>', 1689, - '[', 1211, - '\\', 158, - '_', 1390, - 'a', 1616, - 'c', 1562, - 'd', 1452, - 'f', 1501, - 'l', 1567, - 'm', 1656, - 'n', 1580, - 'o', 1662, - 'r', 1453, - 's', 1494, - 'u', 1536, - 'v', 1571, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(668); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 669: - ADVANCE_MAP( - '$', 774, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - ',', 1071, - '/', 737, - ':', 1242, - ';', 1190, - '<', 1178, - '=', 1215, - '>', 1689, - '[', 1211, - '\\', 174, - '_', 1390, - 'a', 1546, - 'c', 1562, - 'd', 1452, - 'f', 1501, - 'm', 1656, - 'n', 1580, - 'o', 1597, - 'r', 1453, - 'v', 1571, - '{', 1200, - '|', 994, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(669); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 670: - ADVANCE_MAP( - '$', 774, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - ',', 1071, - '/', 737, - ':', 1242, - ';', 1190, - '<', 1178, - '=', 1215, - '>', 1689, - '[', 1210, - '\\', 383, - '_', 1393, - 'a', 1548, - 'c', 1562, - 'd', 1452, - 'f', 1501, - 'm', 1656, - 'n', 1580, - 'o', 1597, - 'r', 1453, - 'v', 1571, - '{', 1200, - '|', 994, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(670); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 671: - ADVANCE_MAP( - '$', 774, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - ',', 1071, - '/', 737, - ':', 1242, - ';', 1190, - '=', 1215, - '>', 1689, - '[', 1211, - '\\', 385, - '_', 1390, - 'a', 1616, - 'c', 1562, - 'd', 1452, - 'f', 1501, - 'm', 1656, - 'n', 1580, - 'o', 1662, - 'r', 1453, - 'v', 1571, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(671); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 672: - ADVANCE_MAP( - '$', 774, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - ',', 1071, - '/', 737, - ':', 761, - ';', 1190, - '<', 1178, - '=', 1215, - '>', 1689, - '[', 1210, - '\\', 375, - '_', 1393, - 'a', 1660, - 'c', 1562, - 'd', 1452, - 'f', 1501, - 'l', 1567, - 'm', 1656, - 'n', 1580, - 'o', 1662, - 'r', 1453, - 's', 1494, - 'u', 1536, - 'v', 1571, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(672); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 673: - ADVANCE_MAP( - '$', 774, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - ',', 1071, - '/', 737, - ':', 761, - ';', 1190, - '<', 1178, - '=', 1215, - '>', 1689, - '[', 1210, - '\\', 401, - '_', 1391, - 'a', 1660, - 'c', 1562, - 'd', 1452, - 'f', 1501, - 'l', 1567, - 'm', 1656, - 'n', 1580, - 'o', 1662, - 'r', 1453, - 's', 1494, - 'u', 1536, - 'v', 1571, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(673); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 674: - ADVANCE_MAP( - '$', 774, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - ',', 1071, - '/', 737, - ':', 761, - ';', 1190, - '=', 1215, - '>', 1689, - '[', 1210, - '\\', 415, - '_', 1391, - 'a', 1660, - 'c', 1562, - 'd', 1452, - 'f', 1501, - 'm', 1656, - 'n', 1580, - 'o', 1662, - 'r', 1453, - 'v', 1571, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(674); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 675: - ADVANCE_MAP( - '$', 774, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - ',', 1071, - '/', 737, - ':', 1241, - ';', 1190, - '=', 1215, - '>', 1689, - '[', 1211, - '\\', 176, - '_', 1390, - 'a', 1616, - 'c', 1562, - 'd', 1452, - 'f', 1501, - 'l', 1567, - 'm', 1656, - 'n', 1580, - 'o', 1662, - 'r', 1453, - 's', 1494, - 'u', 1536, - 'v', 1571, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(675); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 676: - ADVANCE_MAP( - '$', 774, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - ',', 1071, - '/', 737, - ':', 1241, - ';', 1190, - '=', 1215, - '>', 1689, - '[', 1211, - '\\', 182, - '_', 1390, - 'a', 1616, - 'c', 1562, - 'd', 1452, - 'f', 1501, - 'm', 1656, - 'n', 1580, - 'o', 1662, - 'r', 1453, - 'v', 1571, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(676); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 677: - ADVANCE_MAP( - '$', 774, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - ',', 1071, - '/', 737, - ':', 1241, - ';', 1190, - '=', 1215, - '>', 1689, - '[', 1211, - '\\', 186, - '_', 1390, - 'a', 1546, - 'c', 1562, - 'd', 1452, - 'f', 1501, - 'm', 1656, - 'n', 1580, - 'o', 1597, - 'r', 1453, - 'v', 1571, - '{', 1200, - '|', 994, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(677); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_LT_EQ_GT); END_STATE(); case 678: - ADVANCE_MAP( - '$', 774, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - ',', 1071, - '/', 737, - ':', 1241, - ';', 1190, - '=', 1215, - '>', 1689, - '[', 1211, - '\\', 403, - '_', 1391, - 'a', 1660, - 'c', 1562, - 'd', 1452, - 'f', 1501, - 'm', 1656, - 'n', 1580, - 'o', 1662, - 'r', 1453, - 'v', 1571, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(678); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 679: - ADVANCE_MAP( - '$', 774, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - ',', 1071, - '/', 737, - ':', 1241, - ';', 1190, - '=', 1215, - '>', 1689, - '[', 1211, - '\\', 413, - '_', 1393, - 'a', 1660, - 'c', 1562, - 'd', 1452, - 'f', 1501, - 'm', 1656, - 'n', 1580, - 'o', 1662, - 'r', 1453, - 'v', 1571, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(679); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 680: - ADVANCE_MAP( - '$', 774, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - ',', 1071, - '/', 737, - ':', 1241, - ';', 1190, - '=', 1215, - '>', 1689, - '[', 1211, - '\\', 210, - '_', 1393, - 'a', 1660, - 'b', 1568, - 'c', 1489, - 'd', 1451, - 'f', 1500, - 'i', 1543, - 'l', 1567, - 'm', 1418, - 'n', 1579, - 'o', 1662, - 'p', 1627, - 'r', 1453, - 's', 1493, - 'u', 1511, - 'v', 1557, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(680); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 681: - ADVANCE_MAP( - '$', 774, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - ',', 1071, - '/', 737, - ':', 1241, - ';', 1190, - '=', 1215, - '>', 1689, - '[', 1211, - '\\', 216, - '_', 1391, - 'c', 1562, - 'f', 1501, - 'm', 1656, - 'n', 1580, - 'o', 1662, - 'r', 1453, - 'v', 1571, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(681); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '*') ADVANCE(686); + if (lookahead == '.') ADVANCE(407); END_STATE(); case 682: - ADVANCE_MAP( - '$', 774, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - ',', 1071, - '/', 737, - ':', 1241, - ';', 1190, - '=', 1215, - '>', 1689, - '[', 1211, - '\\', 391, - '_', 1391, - 'a', 1660, - 'b', 1568, - 'c', 1489, - 'd', 1451, - 'f', 1500, - 'i', 1543, - 'l', 1567, - 'm', 1418, - 'n', 1579, - 'o', 1662, - 'p', 1627, - 'r', 1453, - 's', 1493, - 'u', 1511, - 'v', 1557, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(682); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '*') ADVANCE(686); + if (lookahead == '.') ADVANCE(407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(690); END_STATE(); case 683: - ADVANCE_MAP( - '$', 774, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - ',', 1071, - '/', 737, - ':', 1241, - ';', 1190, - '=', 1215, - '>', 1689, - '[', 1210, - '\\', 417, - '_', 1393, - 'a', 1660, - 'c', 1562, - 'd', 1452, - 'f', 1501, - 'm', 1656, - 'n', 1580, - 'o', 1662, - 'r', 1453, - 'v', 1571, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(683); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '*') ADVANCE(686); + if (lookahead == '.') ADVANCE(410); END_STATE(); case 684: - ADVANCE_MAP( - '$', 774, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - ',', 1071, - '/', 737, - ':', 1241, - ';', 1190, - '=', 1215, - '>', 1689, - '[', 1210, - '\\', 387, - '_', 1393, - 'a', 1548, - 'c', 1562, - 'd', 1452, - 'f', 1501, - 'm', 1656, - 'n', 1580, - 'o', 1597, - 'r', 1453, - 'v', 1571, - '{', 1200, - '|', 994, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(684); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '*') ADVANCE(686); + if (lookahead == '.') ADVANCE(410); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(690); END_STATE(); case 685: - ADVANCE_MAP( - '$', 774, - '&', 1169, - '(', 1135, - '*', 1156, - ',', 1071, - '-', 764, - '/', 737, - ':', 1241, - ';', 1190, - '=', 1215, - '[', 1211, - '\\', 246, - '_', 1406, - 'a', 1617, - 'f', 1501, - 'o', 1662, - 'r', 1474, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(685); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(410); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(690); END_STATE(); case 686: - ADVANCE_MAP( - '$', 774, - '&', 1169, - '(', 1135, - '*', 1156, - ',', 1071, - '-', 764, - '/', 737, - ':', 1241, - ';', 1190, - '=', 1215, - '[', 1211, - '\\', 248, - '_', 1414, - 'f', 1501, - 'o', 1662, - 'r', 1474, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(686); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_DOT_STAR); END_STATE(); case 687: - ADVANCE_MAP( - '$', 774, - '&', 1169, - '(', 1135, - '*', 1156, - ',', 1071, - '/', 737, - ':', 1241, - ';', 1190, - '=', 1215, - '[', 1211, - '\\', 200, - '_', 1392, - 'a', 1616, - 'c', 1562, - 'd', 1452, - 'f', 1501, - 'm', 1656, - 'n', 1580, - 'o', 1662, - 'r', 1453, - 'v', 1571, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(687); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 688: - ADVANCE_MAP( - '$', 774, - '&', 1169, - '(', 1135, - '*', 1156, - ',', 1071, - '/', 737, - ':', 1241, - ';', 1190, - '=', 1215, - '[', 1211, - '\\', 212, - '_', 1390, - 'a', 1616, - 'b', 1568, - 'c', 1489, - 'd', 1451, - 'f', 1500, - 'i', 1543, - 'l', 1567, - 'm', 1418, - 'n', 1579, - 'o', 1662, - 'p', 1627, - 'r', 1453, - 's', 1493, - 'u', 1511, - 'v', 1557, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(688); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_DASH_GT); + if (lookahead == '*') ADVANCE(837); END_STATE(); case 689: - ADVANCE_MAP( - '$', 774, - '&', 1169, - '(', 1135, - '*', 1156, - ',', 1071, - '/', 737, - ':', 1241, - ';', 1190, - '=', 1215, - '[', 1211, - '\\', 214, - '_', 1392, - 'a', 1617, - 'c', 1562, - 'f', 1501, - 'm', 1656, - 'n', 1580, - 'o', 1662, - 'r', 1453, - 'v', 1571, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(689); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_number_literal); END_STATE(); case 690: + ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( - '$', 774, - '&', 1169, - '(', 1135, - '*', 1156, - ',', 1071, - '/', 737, - ':', 1241, - ';', 1190, - '=', 1215, - '[', 1211, - '\\', 220, - '_', 1393, - 'c', 1562, - 'f', 1501, - 'm', 1656, - 'n', 1580, - 'o', 1662, - 'r', 1453, - 'v', 1571, - '{', 1200, + '\'', 472, + 'B', 430, + 'b', 453, + 'E', 467, + 'e', 467, + 'F', 697, + 'f', 697, + 'L', 689, + 'l', 689, ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(690); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(690); END_STATE(); case 691: + ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( - '$', 774, - '&', 1169, - '(', 1135, - '*', 1156, - ',', 1071, - '/', 737, - ':', 1241, - ';', 1190, - '=', 1215, - '[', 1211, - '\\', 421, - '_', 1392, - 'a', 1616, - 'b', 1568, - 'c', 1489, - 'd', 1451, - 'f', 1500, - 'i', 1543, - 'l', 1567, - 'm', 1418, - 'n', 1579, - 'o', 1662, - 'p', 1627, - 'r', 1453, - 's', 1493, - 'u', 1511, - 'v', 1557, - '{', 1200, + '\'', 470, + '.', 698, + 'L', 699, + 'l', 702, + 'B', 469, + 'b', 469, + 'E', 467, + 'e', 467, + 'U', 701, + 'u', 701, + 'X', 411, + 'x', 411, + 'Z', 704, + 'z', 704, + '8', 396, + '9', 396, ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(691); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(692); END_STATE(); case 692: + ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( - '$', 774, - '&', 1169, - '(', 1135, - '*', 1156, - '.', 751, - '/', 737, - ':', 1241, - ';', 1190, - '[', 1211, - '\\', 202, - '_', 1393, - 'a', 1660, - 'c', 1562, - 'd', 1452, - 'm', 1656, - 'n', 1580, - 'r', 1481, - 'v', 1571, - '{', 1200, + '\'', 470, + '.', 698, + 'L', 699, + 'l', 702, + 'E', 467, + 'e', 467, + 'U', 701, + 'u', 701, + 'Z', 704, + 'z', 704, + '8', 396, + '9', 396, ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(692); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(692); END_STATE(); case 693: + ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( - '$', 774, - '&', 1169, - '(', 1135, - '*', 1156, - '.', 751, - '/', 737, - ':', 1241, - ';', 1190, - '[', 771, - '\\', 194, - '_', 1393, - 'a', 1660, - 'c', 1562, - 'd', 1452, - 'f', 1501, - 'm', 1656, - 'n', 1580, - 'o', 1662, - 'r', 1481, - 'v', 1571, - '{', 1200, + '\'', 469, + 'L', 699, + 'l', 702, + 'U', 701, + 'u', 701, + 'Z', 704, + 'z', 704, + '0', 693, + '1', 693, ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(693); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); END_STATE(); case 694: + ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( - '$', 774, - '&', 1169, - '(', 1135, - '*', 1156, - '.', 751, - '/', 737, - ';', 1190, - '=', 1215, - '[', 1210, - '\\', 204, - '_', 1391, - 'c', 1562, - 'm', 1656, - 'n', 1580, - 'r', 1481, - 'v', 1571, - '{', 1200, + '\'', 471, + '.', 698, + 'L', 699, + 'l', 702, + 'E', 467, + 'e', 467, + 'U', 701, + 'u', 701, + 'Z', 704, + 'z', 704, ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(694); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(694); END_STATE(); case 695: - ADVANCE_MAP( - '$', 774, - '&', 1169, - '(', 1135, - '*', 1156, - '.', 751, - '/', 737, - ';', 1190, - '[', 1211, - '\\', 196, - '_', 1393, - 'c', 1562, - 'm', 1656, - 'n', 1580, - 'r', 1481, - 'v', 1571, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(695); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == '\'') ADVANCE(474); + if (lookahead == 'B') ADVANCE(430); + if (lookahead == 'b') ADVANCE(453); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(697); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(689); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(695); END_STATE(); case 696: + ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( - '$', 774, - '&', 1169, - '(', 1135, - '*', 1156, - '/', 737, - ':', 761, - '<', 1178, - '[', 1211, - '\\', 102, - '_', 1393, - 'a', 1548, - 'b', 1568, - 'c', 1489, - 'd', 1451, - 'f', 1521, - 'i', 1543, - 'l', 1567, - 'm', 1418, - 'n', 1579, - 'o', 1598, - 'p', 1627, - 'r', 1481, - 's', 1493, - 'u', 1511, - 'v', 1557, - '|', 994, - '~', 1138, + '\'', 476, + '.', 468, + 'L', 699, + 'l', 702, + 'P', 467, + 'p', 467, + 'U', 701, + 'u', 701, + 'Z', 704, + 'z', 704, ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(696); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(696); END_STATE(); case 697: - ADVANCE_MAP( - '$', 774, - '&', 1169, - '(', 1135, - '*', 1156, - '/', 737, - ':', 761, - '[', 1211, - '\\', 46, - '_', 1393, - 'a', 1660, - 'b', 1568, - 'c', 1489, - 'd', 1451, - 'f', 1521, - 'i', 1543, - 'l', 1567, - 'm', 1418, - 'n', 1579, - 'p', 1627, - 'r', 1453, - 's', 1493, - 'u', 1511, - 'v', 1557, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(697); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == '1') ADVANCE(420); + if (lookahead == '3') ADVANCE(419); + if (lookahead == '6') ADVANCE(421); END_STATE(); case 698: + ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( - '$', 774, - '&', 730, - '(', 1135, - ')', 1072, - ',', 1071, - '/', 737, - ':', 1241, - ';', 1190, - '=', 1215, - '>', 1689, - '[', 1211, - '\\', 254, - '_', 1408, - 'a', 1547, - 'f', 1501, - 'o', 1597, - 'r', 1474, - '{', 1200, - '|', 994, + 'B', 430, + 'b', 453, + 'E', 467, + 'e', 467, + 'F', 697, + 'f', 697, + 'L', 689, + 'l', 689, ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(698); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(690); END_STATE(); case 699: - ADVANCE_MAP( - '$', 774, - '&', 730, - '(', 1135, - ')', 1072, - ',', 1071, - '/', 737, - ';', 1190, - '=', 1215, - '>', 1689, - '[', 1210, - '\\', 271, - 'a', 1549, - 'f', 1501, - 'o', 1597, - 'r', 1474, - '{', 1200, - '|', 994, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(699); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == 'L') ADVANCE(704); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(689); END_STATE(); case 700: - ADVANCE_MAP( - '$', 774, - '(', 1135, - ')', 1072, - '*', 1156, - ',', 1071, - '.', 751, - '/', 737, - ':', 761, - ';', 1190, - '=', 1215, - '>', 1689, - '\\', 230, - ']', 776, - 'a', 1660, - 'b', 1568, - 'c', 1490, - 'd', 1451, - 'f', 1521, - 'i', 1543, - 'l', 1567, - 'm', 1419, - 'n', 1654, - 'p', 1627, - 's', 1493, - 'u', 1511, - 'v', 1573, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(700); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == 'L') ADVANCE(689); END_STATE(); case 701: - ADVANCE_MAP( - '$', 774, - '(', 1135, - ')', 1072, - '*', 1156, - ',', 1071, - '.', 751, - '/', 737, - ':', 761, - '<', 1178, - '=', 1215, - '>', 1689, - '[', 1211, - '\\', 192, - '_', 1391, - 'a', 1660, - 'b', 1568, - 'c', 1489, - 'd', 1451, - 'f', 1521, - 'i', 1543, - 'l', 1567, - 'm', 1418, - 'n', 1579, - 'p', 1627, - 'r', 1481, - 's', 1493, - 'u', 1511, - 'v', 1557, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(701); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == 'L') ADVANCE(700); + if (lookahead == 'l') ADVANCE(703); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(689); END_STATE(); case 702: - ADVANCE_MAP( - '$', 774, - '(', 1135, - ')', 1072, - ',', 1071, - '/', 737, - ':', 1242, - ';', 1190, - '<', 1178, - '=', 1215, - '>', 1689, - '[', 1211, - '\\', 405, - '_', 1406, - 'a', 1617, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(702); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == 'l') ADVANCE(704); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(689); END_STATE(); case 703: - ADVANCE_MAP( - '$', 774, - '(', 1135, - ')', 1072, - ',', 1071, - '/', 737, - ':', 1241, - ';', 1190, - '<', 1178, - '=', 1215, - '>', 1689, - '[', 1212, - '\\', 393, - '_', 1408, - 'a', 1617, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(703); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == 'l') ADVANCE(689); END_STATE(); case 704: - ADVANCE_MAP( - '$', 774, - '(', 1135, - ')', 1072, - ',', 1071, - '/', 737, - ':', 1241, - ';', 1190, - '<', 1178, - '=', 1215, - '>', 1689, - '[', 1211, - '\\', 263, - '_', 1406, - 'a', 1617, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(704); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(689); END_STATE(); case 705: - ADVANCE_MAP( - '$', 774, - '(', 1135, - ')', 1072, - ',', 1071, - '/', 737, - ':', 1241, - ';', 1190, - '<', 1178, - '=', 1215, - '>', 1689, - '[', 1211, - '\\', 423, - '_', 1408, - 'a', 1617, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(705); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_L_SQUOTE); END_STATE(); case 706: - ADVANCE_MAP( - '$', 774, - '(', 1135, - '*', 1156, - '/', 737, - ':', 1242, - '<', 1178, - '\\', 238, - '_', 1393, - 'a', 1660, - 'b', 1568, - 'c', 1489, - 'd', 1451, - 'f', 1500, - 'i', 1543, - 'l', 1567, - 'm', 1418, - 'n', 1579, - 'o', 1662, - 'p', 1627, - 'r', 1481, - 's', 1493, - 'u', 1511, - 'v', 1557, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(706); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_u_SQUOTE); END_STATE(); case 707: - ADVANCE_MAP( - '$', 774, - '(', 1135, - '*', 1156, - '/', 737, - ':', 1241, - '\\', 236, - '_', 1393, - 'a', 1660, - 'b', 1568, - 'c', 1489, - 'd', 1451, - 'f', 1500, - 'i', 1543, - 'l', 1567, - 'm', 1418, - 'n', 1579, - 'o', 1662, - 'p', 1627, - 'r', 1481, - 's', 1493, - 'u', 1511, - 'v', 1557, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(707); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_U_SQUOTE); END_STATE(); case 708: - ADVANCE_MAP( - '$', 774, - '(', 1135, - '*', 1156, - '/', 737, - '\\', 218, - '_', 1391, - 'b', 1568, - 'c', 1489, - 'd', 1555, - 'f', 1521, - 'i', 1543, - 'l', 1567, - 'm', 1418, - 'n', 1579, - 'p', 1627, - 'r', 1481, - 's', 1493, - 'u', 1511, - 'v', 1557, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(708); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_u8_SQUOTE); END_STATE(); case 709: - ADVANCE_MAP( - '$', 774, - '(', 1135, - '*', 1156, - '/', 737, - '\\', 269, - 'b', 1568, - 'c', 1490, - 'd', 1555, - 'f', 1521, - 'i', 1543, - 'l', 1567, - 'm', 1419, - 'n', 1654, - 'p', 1627, - 's', 1493, - 'u', 1511, - 'v', 1573, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(709); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); case 710: - ADVANCE_MAP( - '$', 774, - '(', 1135, - '/', 737, - ':', 761, - 'F', 1389, - 'T', 1397, - '[', 1210, - '\\', 242, - 'd', 1452, - 'f', 1417, - 'r', 1474, - 't', 1601, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(710); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(aux_sym_char_literal_token1); END_STATE(); case 711: - if (lookahead == '$') ADVANCE(774); - if (lookahead == '(') ADVANCE(1135); - if (lookahead == '/') ADVANCE(737); - if (lookahead == '\\') ADVANCE(285); - if (lookahead == 'v') ADVANCE(1571); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(711); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(aux_sym_char_literal_token1); + if (lookahead == '\n') ADVANCE(725); + if (lookahead == '\r') ADVANCE(724); + if (lookahead == 'U') ADVANCE(492); + if (lookahead == 'u') ADVANCE(484); + if (lookahead == 'x') ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(727); + if (lookahead != 0) ADVANCE(724); END_STATE(); case 712: - ADVANCE_MAP( - '$', 774, - ',', 1071, - '.', 751, - '/', 737, - ':', 1242, - '=', 1215, - '>', 1689, - '[', 771, - '\\', 234, - '_', 1414, - 'd', 1452, - 'f', 1501, - 'o', 1662, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(712); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(aux_sym_char_literal_token1); + if (lookahead == '*') ADVANCE(403); + if (lookahead == '/') ADVANCE(829); END_STATE(); case 713: - ADVANCE_MAP( - '$', 774, - ',', 1071, - '/', 737, - '>', 1689, - '\\', 279, - '_', 1414, - 'a', 1660, - 'b', 1568, - 'c', 1490, - 'd', 1451, - 'f', 1521, - 'i', 1543, - 'l', 1567, - 'm', 1419, - 'n', 1654, - 'p', 1627, - 's', 1493, - 'u', 1511, - 'v', 1573, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(713); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(aux_sym_char_literal_token1); + if (lookahead == '\\') ADVANCE(147); END_STATE(); case 714: - ADVANCE_MAP( - '$', 774, - '/', 737, - ':', 1242, - '[', 771, - '\\', 256, - 'd', 1452, - 'f', 1501, - 'o', 1662, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(714); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_L_DQUOTE); END_STATE(); case 715: - if (lookahead == '$') ADVANCE(774); - if (lookahead == '/') ADVANCE(737); - if (lookahead == ':') ADVANCE(761); - if (lookahead == '[') ADVANCE(771); - if (lookahead == '\\') ADVANCE(265); - if (lookahead == 'd') ADVANCE(1452); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(715); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_u_DQUOTE); END_STATE(); case 716: - ADVANCE_MAP( - '$', 774, - '/', 737, - ':', 761, - '\\', 273, - 'b', 1568, - 'c', 1490, - 'd', 1451, - 'f', 1521, - 'i', 1543, - 'l', 1567, - 'm', 1419, - 'n', 1654, - 'p', 1627, - 's', 1493, - 'u', 1511, - 'v', 1573, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(716); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_U_DQUOTE); END_STATE(); case 717: - ADVANCE_MAP( - '$', 773, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - ',', 1071, - '-', 764, - '.', 751, - '/', 737, - ':', 1241, - ';', 1190, - '<', 1178, - '=', 1215, - '>', 1689, - '[', 1211, - '\\', 172, - '_', 1390, - 'a', 1617, - 'c', 1562, - 'f', 1501, - 'm', 1656, - 'n', 1578, - 'o', 1662, - 'r', 1453, - 't', 1492, - 'v', 1571, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(717); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_u8_DQUOTE); END_STATE(); case 718: - ADVANCE_MAP( - '$', 773, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - ',', 1071, - '-', 764, - '.', 751, - '/', 737, - ':', 1241, - ';', 1190, - '=', 1215, - '>', 1689, - '[', 1211, - '\\', 180, - '_', 1390, - 'a', 1616, - 'c', 1562, - 'd', 1452, - 'f', 1501, - 'm', 1656, - 'n', 1578, - 'o', 1662, - 'r', 1453, - 't', 1492, - 'v', 1571, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(718); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); case 719: - ADVANCE_MAP( - '$', 773, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - ',', 1071, - '-', 764, - '.', 751, - '/', 737, - ':', 1241, - ';', 1190, - '=', 1215, - '>', 1689, - '[', 1211, - '\\', 188, - '_', 1390, - 'a', 1617, - 'c', 1562, - 'f', 1501, - 'm', 1656, - 'n', 1580, - 'o', 1662, - 'r', 1453, - 'v', 1571, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(719); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '*') ADVANCE(721); + if (lookahead == '/') ADVANCE(723); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(723); END_STATE(); case 720: - ADVANCE_MAP( - '$', 773, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - ',', 1071, - '-', 764, - '.', 751, - '/', 737, - ':', 1241, - ';', 1190, - '=', 1215, - '>', 1689, - '[', 1210, - '\\', 250, - 'f', 1501, - 'o', 1662, - 'r', 1474, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(720); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '*') ADVANCE(720); + if (lookahead == '/') ADVANCE(723); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(721); END_STATE(); case 721: - ADVANCE_MAP( - '$', 773, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - ',', 1071, - '.', 751, - '/', 737, - ':', 1241, - ';', 1190, - '=', 1215, - '>', 1689, - '[', 1210, - '\\', 208, - '_', 1393, - 'a', 1660, - 'b', 1568, - 'c', 1489, - 'd', 1451, - 'f', 1500, - 'i', 1543, - 'l', 1567, - 'm', 1418, - 'n', 1579, - 'o', 1662, - 'p', 1627, - 'r', 1453, - 's', 1493, - 'u', 1511, - 'v', 1557, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(721); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '*') ADVANCE(720); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(721); END_STATE(); case 722: - ADVANCE_MAP( - '$', 773, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - ',', 1071, - '.', 751, - '/', 737, - ':', 1241, - ';', 1190, - '=', 1215, - '>', 1689, - '[', 1210, - '\\', 389, - '_', 1391, - 'a', 1660, - 'b', 1568, - 'c', 1489, - 'd', 1451, - 'f', 1500, - 'i', 1543, - 'l', 1567, - 'm', 1418, - 'n', 1579, - 'o', 1662, - 'p', 1627, - 'r', 1453, - 's', 1493, - 'u', 1511, - 'v', 1557, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(722); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '/') ADVANCE(719); + if (lookahead == '\t' || + (0x0b <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(722); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != '"' && + lookahead != '\\') ADVANCE(723); END_STATE(); case 723: - ADVANCE_MAP( - '$', 773, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - ',', 1071, - '.', 751, - '/', 737, - ':', 1241, - ';', 1190, - '=', 1215, - '>', 1689, - '[', 1210, - '\\', 222, - '_', 1391, - 'c', 1562, - 'f', 1501, - 'm', 1656, - 'n', 1580, - 'o', 1662, - 'r', 1453, - 'v', 1571, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(723); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(723); END_STATE(); case 724: - ADVANCE_MAP( - '$', 773, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - ',', 1071, - '.', 751, - '/', 737, - ':', 1241, - ';', 1190, - '>', 1689, - '[', 1210, - '\\', 228, - '_', 1393, - 'a', 1660, - 'b', 1568, - 'c', 1489, - 'd', 1451, - 'f', 1521, - 'i', 1543, - 'l', 1567, - 'm', 1418, - 'n', 1579, - 'p', 1627, - 'r', 1481, - 's', 1493, - 'u', 1511, - 'v', 1557, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(724); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); case 725: - ADVANCE_MAP( - '$', 773, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - ',', 1071, - '.', 751, - '/', 737, - ':', 1241, - ';', 1190, - '>', 1689, - '[', 1210, - '\\', 232, - '_', 1391, - 'a', 1660, - 'b', 1568, - 'c', 1489, - 'd', 1451, - 'f', 1521, - 'i', 1543, - 'l', 1567, - 'm', 1418, - 'n', 1579, - 'p', 1627, - 'r', 1481, - 's', 1493, - 'u', 1511, - 'v', 1557, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(725); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_escape_sequence); + if (lookahead == '\\') ADVANCE(147); END_STATE(); case 726: - ADVANCE_MAP( - '$', 773, - '&', 1169, - '(', 1135, - ')', 1072, - ',', 1071, - '-', 764, - '.', 751, - '/', 737, - ':', 1241, - ';', 1190, - '=', 1215, - '>', 1689, - '[', 1211, - '\\', 224, - '_', 1408, - 'a', 1617, - 'f', 1501, - 'n', 1577, - 'o', 1662, - 'r', 1474, - 't', 1492, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(726); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(724); END_STATE(); case 727: - ADVANCE_MAP( - '$', 773, - '(', 1135, - ')', 1072, - ',', 1071, - '-', 764, - '.', 751, - '/', 737, - ':', 1241, - ';', 1190, - '=', 1215, - '>', 1689, - '[', 1211, - '\\', 240, - '_', 1408, - 'a', 1617, - 'f', 1501, - 'o', 1662, - 'r', 1474, - '{', 1200, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(727); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(726); END_STATE(); case 728: - ADVANCE_MAP( - '$', 1022, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - ',', 1071, - '.', 751, - '/', 737, - ':', 1242, - ';', 1190, - '<', 1178, - '>', 1689, - '[', 1210, - ); - if (lookahead == '\\') SKIP(226); - if (lookahead == '_') ADVANCE(767); - if (lookahead == 'a') ADVANCE(899); - if (lookahead == 'c') ADVANCE(915); - if (lookahead == 'd') ADVANCE(823); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'l') ADVANCE(917); - if (lookahead == 'm') ADVANCE(983); - if (lookahead == 'n') ADVANCE(923); - if (lookahead == 'o') ADVANCE(939); - if (lookahead == 'r') ADVANCE(830); - if (lookahead == 's') ADVANCE(860); - if (lookahead == 'u') ADVANCE(892); - if (lookahead == 'v') ADVANCE(908); - if (lookahead == '{') ADVANCE(1200); - if (lookahead == '|') ADVANCE(994); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(728); + ACCEPT_TOKEN(sym_system_lib_string); END_STATE(); case 729: - ADVANCE_MAP( - '$', 1022, - '&', 1169, - '(', 1135, - ')', 1072, - ',', 1071, - '-', 764, - '.', 751, - '/', 737, - ':', 1241, - ';', 1190, - '=', 1215, - '>', 1689, - '[', 1211, - ); - if (lookahead == '\\') SKIP(184); - if (lookahead == '_') ADVANCE(768); - if (lookahead == 'a') ADVANCE(955); - if (lookahead == 'c') ADVANCE(915); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'm') ADVANCE(983); - if (lookahead == 'n') ADVANCE(914); - if (lookahead == 'o') ADVANCE(989); - if (lookahead == 'r') ADVANCE(830); - if (lookahead == 't') ADVANCE(861); - if (lookahead == 'v') ADVANCE(908); - if (lookahead == '{') ADVANCE(1200); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(729); + ACCEPT_TOKEN(sym_system_lib_string); + if (lookahead == '>') ADVANCE(728); + if (lookahead == '\\') ADVANCE(429); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(428); END_STATE(); case 730: - if (lookahead == '&') ADVANCE(1163); + ACCEPT_TOKEN(sym_true); + if (lookahead == '\\') ADVANCE(431); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 731: - if (lookahead == '\'') ADVANCE(1338); - if (lookahead == '/') ADVANCE(737); - if (lookahead == '\\') ADVANCE(287); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(731); + ACCEPT_TOKEN(sym_false); + if (lookahead == '\\') ADVANCE(431); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 732: - if (lookahead == '\'') ADVANCE(1005); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(995); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(732); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(714); + if (lookahead == '\'') ADVANCE(705); + if (lookahead == 'R') ADVANCE(743); + if (lookahead == '\\') ADVANCE(431); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 733: - if (lookahead == '\'') ADVANCE(1001); - if (lookahead == '.') ADVANCE(1327); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(995); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(733); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(714); + if (lookahead == 'R') ADVANCE(743); + if (lookahead == '\\') ADVANCE(431); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 734: - if (lookahead == '(') ADVANCE(1135); - if (lookahead == '/') ADVANCE(737); - if (lookahead == '\\') SKIP(295); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(734); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(714); + if (lookahead == '\\') ADVANCE(431); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 735: - if (lookahead == ')') ADVANCE(1702); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(832); + if (lookahead == '\\') ADVANCE(431); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 736: - if (lookahead == '*') ADVANCE(1315); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(716); + if (lookahead == '\'') ADVANCE(707); + if (lookahead == 'R') ADVANCE(744); + if (lookahead == '\\') ADVANCE(431); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 737: - if (lookahead == '*') ADVANCE(740); - if (lookahead == '/') ADVANCE(1679); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(716); + if (lookahead == 'R') ADVANCE(744); + if (lookahead == '\\') ADVANCE(431); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 738: - if (lookahead == '*') ADVANCE(1701); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(716); + if (lookahead == '\\') ADVANCE(431); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 739: - if (lookahead == '*') ADVANCE(739); - if (lookahead == '/') ADVANCE(1672); - if (lookahead != 0) ADVANCE(740); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(715); + if (lookahead == '\'') ADVANCE(706); + if (lookahead == '8') ADVANCE(745); + if (lookahead == 'R') ADVANCE(748); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'i') ADVANCE(799); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 740: - if (lookahead == '*') ADVANCE(739); - if (lookahead != 0) ADVANCE(740); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(715); + if (lookahead == '8') ADVANCE(746); + if (lookahead == 'R') ADVANCE(748); + if (lookahead == '\\') ADVANCE(431); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 741: - if (lookahead == '*') ADVANCE(739); - if (lookahead != 0) ADVANCE(1090); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(715); + if (lookahead == '8') ADVANCE(747); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'i') ADVANCE(799); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 742: - if (lookahead == '.') ADVANCE(749); - if (lookahead == '\\') ADVANCE(770); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(1670); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(715); + if (lookahead == '8') ADVANCE(747); + if (lookahead == '\\') ADVANCE(431); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 743: - if (lookahead == '.') ADVANCE(749); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(833); + if (lookahead == '\\') ADVANCE(431); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 744: - if (lookahead == '.') ADVANCE(1070); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(835); + if (lookahead == '\\') ADVANCE(431); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 745: - if (lookahead == '.') ADVANCE(1021); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(717); + if (lookahead == '\'') ADVANCE(708); + if (lookahead == 'R') ADVANCE(749); + if (lookahead == '\\') ADVANCE(431); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 746: - if (lookahead == '.') ADVANCE(1804); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(717); + if (lookahead == 'R') ADVANCE(749); + if (lookahead == '\\') ADVANCE(431); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 747: - if (lookahead == '.') ADVANCE(1069); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(717); + if (lookahead == '\\') ADVANCE(431); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 748: - if (lookahead == '.') ADVANCE(1005); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1325); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(834); + if (lookahead == '\\') ADVANCE(431); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 749: - if (lookahead == '.') ADVANCE(745); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(836); + if (lookahead == '\\') ADVANCE(431); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 750: - if (lookahead == '.') ADVANCE(746); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\'') ADVANCE(705); + if (lookahead == '\\') ADVANCE(431); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 751: - if (lookahead == '.') ADVANCE(747); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\'') ADVANCE(707); + if (lookahead == '\\') ADVANCE(431); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 752: - if (lookahead == '.') ADVANCE(747); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1319); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\'') ADVANCE(706); + if (lookahead == '8') ADVANCE(753); + if (lookahead == '\\') ADVANCE(431); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 753: - if (lookahead == '.') ADVANCE(750); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\'') ADVANCE(708); + if (lookahead == '\\') ADVANCE(431); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 754: - if (lookahead == '/') ADVANCE(1097); - if (lookahead == '\\') ADVANCE(1092); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(754); - if (lookahead != 0) ADVANCE(1099); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '1') ADVANCE(757); + if (lookahead == '3') ADVANCE(755); + if (lookahead == '6') ADVANCE(756); + if (lookahead == '8') ADVANCE(766); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'p') ADVANCE(815); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 755: - if (lookahead == '1') ADVANCE(759); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '2') ADVANCE(766); + if (lookahead == '\\') ADVANCE(431); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 756: - if (lookahead == '2') ADVANCE(1318); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '4') ADVANCE(766); + if (lookahead == '\\') ADVANCE(431); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 757: - if (lookahead == '2') ADVANCE(760); - if (lookahead == '6') ADVANCE(1318); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '6') ADVANCE(766); + if (lookahead == '\\') ADVANCE(431); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 758: - if (lookahead == '4') ADVANCE(1318); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'A') ADVANCE(761); + if (lookahead == '\\') ADVANCE(431); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 759: - if (lookahead == '6') ADVANCE(1318); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'E') ADVANCE(730); + if (lookahead == '\\') ADVANCE(431); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 760: - if (lookahead == '8') ADVANCE(1318); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'E') ADVANCE(731); + if (lookahead == '\\') ADVANCE(431); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 761: - if (lookahead == ':') ADVANCE(1197); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'L') ADVANCE(763); + if (lookahead == '\\') ADVANCE(431); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 762: - if (lookahead == '=') ADVANCE(1172); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R') ADVANCE(764); + if (lookahead == '\\') ADVANCE(431); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 763: - if (lookahead == '=') ADVANCE(1171); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'S') ADVANCE(760); + if (lookahead == '\\') ADVANCE(431); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 764: - if (lookahead == '>') ADVANCE(1316); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'U') ADVANCE(759); + if (lookahead == '\\') ADVANCE(431); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 765: - if (lookahead == '>') ADVANCE(1357); - if (lookahead == '\\') ADVANCE(766); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(765); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == '_') ADVANCE(772); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 766: - if (lookahead == '>') ADVANCE(1358); - if (lookahead == '\\') ADVANCE(766); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(765); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == '_') ADVANCE(812); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 767: - if (lookahead == 'A') ADVANCE(975); - if (lookahead == 'N') ADVANCE(918); - if (lookahead == '_') ADVANCE(792); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'a') ADVANCE(790); + if (lookahead == 'l') ADVANCE(802); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 768: - if (lookahead == 'A') ADVANCE(975); - if (lookahead == 'N') ADVANCE(918); - if (lookahead == '_') ADVANCE(790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'a') ADVANCE(790); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 769: - if (lookahead == 'F') ADVANCE(755); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'a') ADVANCE(819); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 770: - if (lookahead == 'U') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1011); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'a') ADVANCE(806); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 771: - if (lookahead == '[') ADVANCE(1198); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'a') ADVANCE(812); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 772: - if (lookahead == '[') ADVANCE(1198); - if (lookahead == ']') ADVANCE(1703); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'a') ADVANCE(794); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 773: - if (lookahead == '\\') ADVANCE(770); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(1670); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'b') ADVANCE(795); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 774: - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'd') ADVANCE(663); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 775: - if (lookahead == ']') ADVANCE(1703); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'd') ADVANCE(786); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 776: - if (lookahead == ']') ADVANCE(1199); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'e') ADVANCE(730); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 777: - if (lookahead == '_') ADVANCE(1225); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'e') ADVANCE(663); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 778: - if (lookahead == '_') ADVANCE(1193); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'e') ADVANCE(731); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 779: - if (lookahead == '_') ADVANCE(1191); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'e') ADVANCE(766); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 780: - if (lookahead == '_') ADVANCE(1307); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'f') ADVANCE(766); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 781: - if (lookahead == '_') ADVANCE(777); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'f') ADVANCE(780); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 782: - if (lookahead == '_') ADVANCE(789); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'g') ADVANCE(798); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 783: - if (lookahead == '_') ADVANCE(778); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'h') ADVANCE(770); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 784: - if (lookahead == '_') ADVANCE(779); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'i') ADVANCE(820); + if (lookahead == 's') ADVANCE(785); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 785: - if (lookahead == '_') ADVANCE(836); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'i') ADVANCE(820); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 786: - if (lookahead == '_') ADVANCE(780); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'i') ADVANCE(781); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 787: - if (lookahead == '_') ADVANCE(791); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'i') ADVANCE(782); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 788: - if (lookahead == 'a') ADVANCE(797); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'i') ADVANCE(774); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 789: - if (lookahead == 'a') ADVANCE(957); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'i') ADVANCE(799); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 790: - if (lookahead == 'a') ADVANCE(957); - if (lookahead == 'e') ADVANCE(992); - if (lookahead == 'r') ADVANCE(850); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'l') ADVANCE(810); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 791: - if (lookahead == 'a') ADVANCE(981); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'l') ADVANCE(663); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 792: - if (lookahead == 'a') ADVANCE(981); - if (lookahead == 'e') ADVANCE(992); - if (lookahead == 'r') ADVANCE(850); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'l') ADVANCE(805); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 793: - if (lookahead == 'a') ADVANCE(879); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'l') ADVANCE(792); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 794: - if (lookahead == 'a') ADVANCE(880); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'l') ADVANCE(787); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 795: - if (lookahead == 'a') ADVANCE(973); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'l') ADVANCE(777); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 796: - if (lookahead == 'a') ADVANCE(897); - if (lookahead == 'o') ADVANCE(936); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'l') ADVANCE(802); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 797: - if (lookahead == 'b') ADVANCE(883); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'n') ADVANCE(811); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 798: - if (lookahead == 'b') ADVANCE(987); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'n') ADVANCE(766); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 799: - if (lookahead == 'c') ADVANCE(1227); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'n') ADVANCE(813); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 800: - if (lookahead == 'c') ADVANCE(882); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'o') ADVANCE(816); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 801: - if (lookahead == 'c') ADVANCE(968); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'o') ADVANCE(788); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 802: - if (lookahead == 'c') ADVANCE(972); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'o') ADVANCE(771); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 803: - if (lookahead == 'c') ADVANCE(837); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'o') ADVANCE(791); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 804: - if (lookahead == 'd') ADVANCE(1106); - if (lookahead == 'e') ADVANCE(1128); - if (lookahead == 'i') ADVANCE(1114); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(804); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'o') ADVANCE(803); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 805: - if (lookahead == 'd') ADVANCE(1106); - if (lookahead == 'e') ADVANCE(1128); - if (lookahead == 'i') ADVANCE(1115); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(805); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'p') ADVANCE(815); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 806: - if (lookahead == 'd') ADVANCE(1106); - if (lookahead == 'e') ADVANCE(1131); - if (lookahead == 'i') ADVANCE(1114); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(806); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'r') ADVANCE(662); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 807: - if (lookahead == 'd') ADVANCE(1106); - if (lookahead == 'e') ADVANCE(1131); - if (lookahead == 'i') ADVANCE(1115); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(807); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'r') ADVANCE(775); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 808: - if (lookahead == 'd') ADVANCE(1106); - if (lookahead == 'e') ADVANCE(1130); - if (lookahead == 'i') ADVANCE(1114); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(808); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'r') ADVANCE(766); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 809: - if (lookahead == 'd') ADVANCE(1106); - if (lookahead == 'e') ADVANCE(1130); - if (lookahead == 'i') ADVANCE(1115); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(809); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'r') ADVANCE(818); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 810: - if (lookahead == 'd') ADVANCE(1106); - if (lookahead == 'i') ADVANCE(1114); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(810); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 's') ADVANCE(778); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 811: - if (lookahead == 'd') ADVANCE(1106); - if (lookahead == 'i') ADVANCE(1115); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(811); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 't') ADVANCE(662); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 812: - if (lookahead == 'd') ADVANCE(862); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 't') ADVANCE(663); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 813: - if (lookahead == 'd') ADVANCE(1280); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 't') ADVANCE(754); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 814: - if (lookahead == 'd') ADVANCE(1295); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 't') ADVANCE(807); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 815: - if (lookahead == 'd') ADVANCE(1202); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 't') ADVANCE(808); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 816: - if (lookahead == 'd') ADVANCE(1204); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'u') ADVANCE(773); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 817: - if (lookahead == 'd') ADVANCE(1275); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'u') ADVANCE(793); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 818: - if (lookahead == 'd') ADVANCE(829); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'u') ADVANCE(776); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 819: - if (lookahead == 'd') ADVANCE(840); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'x') ADVANCE(765); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 820: - if (lookahead == 'e') ADVANCE(889); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(820); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (lookahead == 'z') ADVANCE(779); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 821: - if (lookahead == 'e') ADVANCE(878); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(821); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(431); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 822: - if (lookahead == 'e') ADVANCE(1079); + ACCEPT_TOKEN(sym_comment); END_STATE(); case 823: - if (lookahead == 'e') ADVANCE(800); + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\n') ADVANCE(829); + if (lookahead == '/') ADVANCE(826); + if (lookahead == '\\') ADVANCE(555); + if (lookahead != 0) ADVANCE(827); END_STATE(); case 824: - if (lookahead == 'e') ADVANCE(958); + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\r') ADVANCE(830); + if (lookahead == '\\') ADVANCE(824); + if (lookahead != 0) ADVANCE(829); END_STATE(); case 825: - if (lookahead == 'e') ADVANCE(927); + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\r') ADVANCE(828); + if (lookahead == '/') ADVANCE(826); + if (lookahead == '\\') ADVANCE(825); + if (lookahead != 0) ADVANCE(827); END_STATE(); case 826: - if (lookahead == 'e') ADVANCE(1233); + ACCEPT_TOKEN(sym_comment); + if (lookahead == '*') ADVANCE(829); + if (lookahead == '\\') ADVANCE(550); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(827); END_STATE(); case 827: - if (lookahead == 'e') ADVANCE(1683); + ACCEPT_TOKEN(sym_comment); + if (lookahead == '/') ADVANCE(826); + if (lookahead == '\\') ADVANCE(555); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(827); END_STATE(); case 828: - if (lookahead == 'e') ADVANCE(1221); + ACCEPT_TOKEN(sym_comment); + if (lookahead == '/') ADVANCE(826); + if (lookahead == '\\') ADVANCE(555); + if (lookahead != 0) ADVANCE(827); END_STATE(); case 829: - if (lookahead == 'e') ADVANCE(1687); + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\\') ADVANCE(256); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(829); END_STATE(); case 830: - if (lookahead == 'e') ADVANCE(932); + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\\') ADVANCE(256); + if (lookahead != 0) ADVANCE(829); END_STATE(); case 831: - if (lookahead == 'e') ADVANCE(991); - if (lookahead == 'r') ADVANCE(845); + ACCEPT_TOKEN(anon_sym_GT2); END_STATE(); case 832: - if (lookahead == 'e') ADVANCE(991); - if (lookahead == 'r') ADVANCE(845); - if (lookahead == 't') ADVANCE(785); + ACCEPT_TOKEN(anon_sym_R_DQUOTE); END_STATE(); case 833: - if (lookahead == 'e') ADVANCE(991); - if (lookahead == 't') ADVANCE(785); + ACCEPT_TOKEN(anon_sym_LR_DQUOTE); END_STATE(); case 834: - if (lookahead == 'e') ADVANCE(928); + ACCEPT_TOKEN(anon_sym_uR_DQUOTE); END_STATE(); case 835: - if (lookahead == 'e') ADVANCE(954); + ACCEPT_TOKEN(anon_sym_UR_DQUOTE); END_STATE(); case 836: - if (lookahead == 'e') ADVANCE(929); + ACCEPT_TOKEN(anon_sym_u8R_DQUOTE); END_STATE(); case 837: - if (lookahead == 'e') ADVANCE(926); + ACCEPT_TOKEN(anon_sym_DASH_GT_STAR); END_STATE(); case 838: - if (lookahead == 'e') ADVANCE(854); + ACCEPT_TOKEN(anon_sym_LPAREN_RPAREN); END_STATE(); case 839: - if (lookahead == 'e') ADVANCE(930); + ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK); END_STATE(); case 840: - if (lookahead == 'e') ADVANCE(855); + ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE); END_STATE(); case 841: - if (lookahead == 'e') ADVANCE(904); + ACCEPT_TOKEN(sym_literal_suffix); + if (lookahead == '"') ADVANCE(714); + if (lookahead == 'R') ADVANCE(845); + if (lookahead == '\\') ADVANCE(431); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(850); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 842: - if (lookahead == 'e') ADVANCE(815); + ACCEPT_TOKEN(sym_literal_suffix); + if (lookahead == '"') ADVANCE(832); + if (lookahead == '\\') ADVANCE(431); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(850); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 843: - if (lookahead == 'e') ADVANCE(931); + ACCEPT_TOKEN(sym_literal_suffix); + if (lookahead == '"') ADVANCE(716); + if (lookahead == 'R') ADVANCE(846); + if (lookahead == '\\') ADVANCE(431); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(850); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 844: - if (lookahead == 'e') ADVANCE(816); + ACCEPT_TOKEN(sym_literal_suffix); + if (lookahead == '"') ADVANCE(715); + if (lookahead == '8') ADVANCE(847); + if (lookahead == 'R') ADVANCE(848); + if (lookahead == '\\') ADVANCE(431); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(850); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 845: - if (lookahead == 'e') ADVANCE(971); + ACCEPT_TOKEN(sym_literal_suffix); + if (lookahead == '"') ADVANCE(833); + if (lookahead == '\\') ADVANCE(431); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(850); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 846: - if (lookahead == 'e') ADVANCE(949); + ACCEPT_TOKEN(sym_literal_suffix); + if (lookahead == '"') ADVANCE(835); + if (lookahead == '\\') ADVANCE(431); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(850); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 847: - if (lookahead == 'e') ADVANCE(783); + ACCEPT_TOKEN(sym_literal_suffix); + if (lookahead == '"') ADVANCE(717); + if (lookahead == 'R') ADVANCE(849); + if (lookahead == '\\') ADVANCE(431); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(850); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 848: - if (lookahead == 'e') ADVANCE(980); + ACCEPT_TOKEN(sym_literal_suffix); + if (lookahead == '"') ADVANCE(834); + if (lookahead == '\\') ADVANCE(431); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(850); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 849: - if (lookahead == 'e') ADVANCE(885); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(849); + ACCEPT_TOKEN(sym_literal_suffix); + if (lookahead == '"') ADVANCE(836); + if (lookahead == '\\') ADVANCE(431); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(850); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 850: - if (lookahead == 'e') ADVANCE(961); + ACCEPT_TOKEN(sym_literal_suffix); + if (lookahead == '\\') ADVANCE(431); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(850); + if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(821); END_STATE(); case 851: - if (lookahead == 'f') ADVANCE(755); + ACCEPT_TOKEN(sym_semgrep_metavar); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(851); END_STATE(); case 852: - if (lookahead == 'f') ADVANCE(1075); + ACCEPT_TOKEN(anon_sym_LT_DOT_DOT_DOT); END_STATE(); case 853: - if (lookahead == 'f') ADVANCE(1082); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_GT); END_STATE(); case 854: - if (lookahead == 'f') ADVANCE(1085); + ACCEPT_TOKEN(sym_semgrep_named_ellipsis); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(854); END_STATE(); - case 855: - if (lookahead == 'f') ADVANCE(1087); + default: + return false; + } +} + +static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + if (lookahead == 'N') ADVANCE(1); + if (lookahead == '\\') SKIP(2); + if (lookahead == '_') ADVANCE(3); + if (lookahead == 'a') ADVANCE(4); + if (lookahead == 'b') ADVANCE(5); + if (lookahead == 'c') ADVANCE(6); + if (lookahead == 'd') ADVANCE(7); + if (lookahead == 'e') ADVANCE(8); + if (lookahead == 'f') ADVANCE(9); + if (lookahead == 'g') ADVANCE(10); + if (lookahead == 'i') ADVANCE(11); + if (lookahead == 'l') ADVANCE(12); + if (lookahead == 'm') ADVANCE(13); + if (lookahead == 'n') ADVANCE(14); + if (lookahead == 'o') ADVANCE(15); + if (lookahead == 'p') ADVANCE(16); + if (lookahead == 'r') ADVANCE(17); + if (lookahead == 's') ADVANCE(18); + if (lookahead == 't') ADVANCE(19); + if (lookahead == 'u') ADVANCE(20); + if (lookahead == 'v') ADVANCE(21); + if (lookahead == 'w') ADVANCE(22); + if (lookahead == 'x') ADVANCE(23); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(0); END_STATE(); - case 856: - if (lookahead == 'f') ADVANCE(1081); + case 1: + if (lookahead == 'U') ADVANCE(24); END_STATE(); - case 857: - if (lookahead == 'g') ADVANCE(1206); + case 2: + if (lookahead == '\n') SKIP(0); + if (lookahead == '\r') SKIP(25); END_STATE(); - case 858: - if (lookahead == 'g') ADVANCE(900); + case 3: + if (lookahead == 'A') ADVANCE(26); + if (lookahead == 'G') ADVANCE(27); + if (lookahead == 'N') ADVANCE(28); + if (lookahead == '_') ADVANCE(29); + if (lookahead == 'a') ADVANCE(30); + if (lookahead == 'u') ADVANCE(31); END_STATE(); - case 859: - if (lookahead == 'g') ADVANCE(901); + case 4: + if (lookahead == 'l') ADVANCE(32); + if (lookahead == 'n') ADVANCE(33); + if (lookahead == 's') ADVANCE(34); + if (lookahead == 'u') ADVANCE(35); END_STATE(); - case 860: - if (lookahead == 'h') ADVANCE(919); - if (lookahead == 'i') ADVANCE(858); + case 5: + if (lookahead == 'i') ADVANCE(36); + if (lookahead == 'r') ADVANCE(37); END_STATE(); - case 861: - if (lookahead == 'h') ADVANCE(950); + case 6: + if (lookahead == 'a') ADVANCE(38); + if (lookahead == 'l') ADVANCE(39); + if (lookahead == 'o') ADVANCE(40); END_STATE(); - case 862: - if (lookahead == 'i') ADVANCE(852); + case 7: + if (lookahead == 'e') ADVANCE(41); + if (lookahead == 'o') ADVANCE(42); END_STATE(); - case 863: - if (lookahead == 'i') ADVANCE(962); + case 8: + if (lookahead == 'l') ADVANCE(43); + if (lookahead == 'n') ADVANCE(44); + if (lookahead == 'x') ADVANCE(45); END_STATE(); - case 864: - if (lookahead == 'i') ADVANCE(799); + case 9: + if (lookahead == 'i') ADVANCE(46); + if (lookahead == 'o') ADVANCE(47); + if (lookahead == 'r') ADVANCE(48); END_STATE(); - case 865: - if (lookahead == 'i') ADVANCE(798); + case 10: + if (lookahead == 'o') ADVANCE(49); END_STATE(); - case 866: - if (lookahead == 'i') ADVANCE(853); - if (lookahead == 's') ADVANCE(822); + case 11: + if (lookahead == 'f') ADVANCE(50); + if (lookahead == 'n') ADVANCE(51); END_STATE(); - case 867: - if (lookahead == 'i') ADVANCE(801); + case 12: + if (lookahead == 'o') ADVANCE(52); END_STATE(); - case 868: - if (lookahead == 'i') ADVANCE(856); - if (lookahead == 's') ADVANCE(822); + case 13: + if (lookahead == 'u') ADVANCE(53); END_STATE(); - case 869: - if (lookahead == 'i') ADVANCE(1115); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(869); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 14: + if (lookahead == 'a') ADVANCE(54); + if (lookahead == 'e') ADVANCE(55); + if (lookahead == 'o') ADVANCE(56); + if (lookahead == 'u') ADVANCE(57); END_STATE(); - case 870: - if (lookahead == 'i') ADVANCE(905); + case 15: + if (lookahead == 'f') ADVANCE(58); + if (lookahead == 'p') ADVANCE(59); + if (lookahead == 'r') ADVANCE(60); + if (lookahead == 'v') ADVANCE(61); END_STATE(); - case 871: - if (lookahead == 'i') ADVANCE(969); + case 16: + if (lookahead == 'r') ADVANCE(62); + if (lookahead == 'u') ADVANCE(63); END_STATE(); - case 872: - if (lookahead == 'i') ADVANCE(818); + case 17: + if (lookahead == 'e') ADVANCE(64); END_STATE(); - case 873: - if (lookahead == 'i') ADVANCE(951); + case 18: + if (lookahead == 'h') ADVANCE(65); + if (lookahead == 'i') ADVANCE(66); + if (lookahead == 't') ADVANCE(67); + if (lookahead == 'w') ADVANCE(68); END_STATE(); - case 874: - if (lookahead == 'i') ADVANCE(802); + case 19: + if (lookahead == 'e') ADVANCE(69); + if (lookahead == 'h') ADVANCE(70); + if (lookahead == 'r') ADVANCE(71); + if (lookahead == 'y') ADVANCE(72); END_STATE(); - case 875: - if (lookahead == 'i') ADVANCE(884); + case 20: + if (lookahead == 'n') ADVANCE(73); + if (lookahead == 's') ADVANCE(74); END_STATE(); - case 876: - if (lookahead == 'i') ADVANCE(920); + case 21: + if (lookahead == 'i') ADVANCE(75); + if (lookahead == 'o') ADVANCE(76); END_STATE(); - case 877: - if (lookahead == 'i') ADVANCE(859); + case 22: + if (lookahead == 'h') ADVANCE(77); END_STATE(); - case 878: - if (lookahead == 'l') ADVANCE(866); - if (lookahead == 'n') ADVANCE(812); + case 23: + if (lookahead == 'o') ADVANCE(78); END_STATE(); - case 879: - if (lookahead == 'l') ADVANCE(1237); + case 24: + if (lookahead == 'L') ADVANCE(79); END_STATE(); - case 880: - if (lookahead == 'l') ADVANCE(1685); + case 25: + if (lookahead == '\n') SKIP(0); END_STATE(); - case 881: - if (lookahead == 'l') ADVANCE(795); + case 26: + if (lookahead == 'l') ADVANCE(80); + if (lookahead == 't') ADVANCE(81); END_STATE(); - case 882: - if (lookahead == 'l') ADVANCE(966); + case 27: + if (lookahead == 'e') ADVANCE(82); END_STATE(); - case 883: - if (lookahead == 'l') ADVANCE(826); + case 28: + if (lookahead == 'o') ADVANCE(83); END_STATE(); - case 884: - if (lookahead == 'l') ADVANCE(828); + case 29: + ADVANCE_MAP( + 'S', 84, + 'a', 85, + 'b', 86, + 'c', 87, + 'd', 88, + 'e', 89, + 'f', 90, + 'i', 91, + 'l', 92, + 'r', 93, + 's', 94, + 't', 95, + 'u', 96, + 'v', 97, + ); END_STATE(); - case 885: - if (lookahead == 'l') ADVANCE(868); - if (lookahead == 'n') ADVANCE(812); + case 30: + if (lookahead == 'l') ADVANCE(98); END_STATE(); - case 886: - if (lookahead == 'm') ADVANCE(1305); + case 31: + if (lookahead == 'n') ADVANCE(99); END_STATE(); - case 887: - if (lookahead == 'm') ADVANCE(864); + case 32: + if (lookahead == 'i') ADVANCE(100); END_STATE(); - case 888: - if (lookahead == 'm') ADVANCE(786); + case 33: + if (lookahead == 'd') ADVANCE(101); END_STATE(); - case 889: - if (lookahead == 'n') ADVANCE(812); + case 34: + if (lookahead == 'm') ADVANCE(102); END_STATE(); - case 890: - if (lookahead == 'n') ADVANCE(1231); + case 35: + if (lookahead == 't') ADVANCE(103); END_STATE(); - case 891: - if (lookahead == 'n') ADVANCE(1229); + case 36: + if (lookahead == 't') ADVANCE(104); END_STATE(); - case 892: - if (lookahead == 'n') ADVANCE(956); + case 37: + if (lookahead == 'e') ADVANCE(105); END_STATE(); - case 893: - if (lookahead == 'n') ADVANCE(857); + case 38: + if (lookahead == 's') ADVANCE(106); + if (lookahead == 't') ADVANCE(107); END_STATE(); - case 894: - if (lookahead == 'n') ADVANCE(813); + case 39: + if (lookahead == 'a') ADVANCE(108); END_STATE(); - case 895: - if (lookahead == 'n') ADVANCE(813); - if (lookahead == 's') ADVANCE(886); + case 40: + if (lookahead == '_') ADVANCE(109); + if (lookahead == 'm') ADVANCE(110); + if (lookahead == 'n') ADVANCE(111); END_STATE(); - case 896: - if (lookahead == 'n') ADVANCE(813); - if (lookahead == 'u') ADVANCE(977); + case 41: + if (lookahead == 'c') ADVANCE(112); + if (lookahead == 'f') ADVANCE(113); + if (lookahead == 'l') ADVANCE(114); END_STATE(); - case 897: - if (lookahead == 'n') ADVANCE(814); + case 42: + ACCEPT_TOKEN(anon_sym_do); END_STATE(); - case 898: - if (lookahead == 'n') ADVANCE(817); + case 43: + if (lookahead == 's') ADVANCE(115); END_STATE(); - case 899: - if (lookahead == 'n') ADVANCE(817); - if (lookahead == 'u') ADVANCE(977); + case 44: + if (lookahead == 'u') ADVANCE(116); END_STATE(); - case 900: - if (lookahead == 'n') ADVANCE(842); + case 45: + if (lookahead == 'p') ADVANCE(117); + if (lookahead == 't') ADVANCE(118); END_STATE(); - case 901: - if (lookahead == 'n') ADVANCE(844); + case 46: + if (lookahead == 'n') ADVANCE(119); END_STATE(); - case 902: - if (lookahead == 'n') ADVANCE(959); + case 47: + if (lookahead == 'r') ADVANCE(120); END_STATE(); - case 903: - if (lookahead == 'n') ADVANCE(871); + case 48: + if (lookahead == 'i') ADVANCE(121); END_STATE(); - case 904: - if (lookahead == 'n') ADVANCE(960); + case 49: + if (lookahead == 't') ADVANCE(122); END_STATE(); - case 905: - if (lookahead == 'n') ADVANCE(794); + case 50: + ACCEPT_TOKEN(anon_sym_if); END_STATE(); - case 906: - if (lookahead == 'n') ADVANCE(784); + case 51: + if (lookahead == 'l') ADVANCE(123); END_STATE(); - case 907: - if (lookahead == 'o') ADVANCE(943); + case 52: + if (lookahead == 'n') ADVANCE(124); END_STATE(); - case 908: - if (lookahead == 'o') ADVANCE(881); + case 53: + if (lookahead == 't') ADVANCE(125); END_STATE(); - case 909: - if (lookahead == 'o') ADVANCE(887); + case 54: + if (lookahead == 'm') ADVANCE(126); END_STATE(); - case 910: - if (lookahead == 'o') ADVANCE(1681); + case 55: + if (lookahead == 'w') ADVANCE(127); END_STATE(); - case 911: - if (lookahead == 'o') ADVANCE(832); + case 56: + if (lookahead == 'e') ADVANCE(128); + if (lookahead == 'r') ADVANCE(129); + if (lookahead == 't') ADVANCE(130); END_STATE(); - case 912: - if (lookahead == 'o') ADVANCE(833); + case 57: + if (lookahead == 'l') ADVANCE(131); END_STATE(); - case 913: - if (lookahead == 'o') ADVANCE(990); + case 58: + if (lookahead == 'f') ADVANCE(132); END_STATE(); - case 914: - if (lookahead == 'o') ADVANCE(831); + case 59: + if (lookahead == 'e') ADVANCE(133); END_STATE(); - case 915: - if (lookahead == 'o') ADVANCE(902); + case 60: + ACCEPT_TOKEN(anon_sym_or); + if (lookahead == '_') ADVANCE(134); END_STATE(); - case 916: - if (lookahead == 'o') ADVANCE(935); + case 61: + if (lookahead == 'e') ADVANCE(135); END_STATE(); - case 917: - if (lookahead == 'o') ADVANCE(893); + case 62: + if (lookahead == 'i') ADVANCE(136); + if (lookahead == 'o') ADVANCE(137); END_STATE(); - case 918: - if (lookahead == 'o') ADVANCE(953); + case 63: + if (lookahead == 'b') ADVANCE(138); END_STATE(); - case 919: - if (lookahead == 'o') ADVANCE(948); + case 64: + if (lookahead == 'g') ADVANCE(139); + if (lookahead == 'q') ADVANCE(140); + if (lookahead == 's') ADVANCE(141); + if (lookahead == 't') ADVANCE(142); END_STATE(); - case 920: - if (lookahead == 'o') ADVANCE(906); + case 65: + if (lookahead == 'o') ADVANCE(143); END_STATE(); - case 921: - if (lookahead == 'o') ADVANCE(940); + case 66: + if (lookahead == 'g') ADVANCE(144); + if (lookahead == 'z') ADVANCE(145); END_STATE(); - case 922: - if (lookahead == 'o') ADVANCE(964); + case 67: + if (lookahead == 'a') ADVANCE(146); + if (lookahead == 'r') ADVANCE(147); END_STATE(); - case 923: - if (lookahead == 'o') ADVANCE(942); + case 68: + if (lookahead == 'i') ADVANCE(148); END_STATE(); - case 924: - if (lookahead == 'p') ADVANCE(937); + case 69: + if (lookahead == 'm') ADVANCE(149); END_STATE(); - case 925: - if (lookahead == 'p') ADVANCE(827); + case 70: + if (lookahead == 'i') ADVANCE(150); + if (lookahead == 'r') ADVANCE(151); END_STATE(); - case 926: - if (lookahead == 'p') ADVANCE(970); + case 71: + if (lookahead == 'y') ADVANCE(152); END_STATE(); - case 927: - if (lookahead == 'q') ADVANCE(1258); + case 72: + if (lookahead == 'p') ADVANCE(153); END_STATE(); - case 928: - if (lookahead == 'q') ADVANCE(1254); + case 73: + if (lookahead == 'i') ADVANCE(154); + if (lookahead == 's') ADVANCE(155); END_STATE(); - case 929: - if (lookahead == 'q') ADVANCE(1299); + case 74: + if (lookahead == 'i') ADVANCE(156); END_STATE(); - case 930: - if (lookahead == 'q') ADVANCE(1262); + case 75: + if (lookahead == 'r') ADVANCE(157); END_STATE(); - case 931: - if (lookahead == 'q') ADVANCE(986); + case 76: + if (lookahead == 'l') ADVANCE(158); END_STATE(); - case 932: - if (lookahead == 'q') ADVANCE(986); - if (lookahead == 's') ADVANCE(974); + case 77: + if (lookahead == 'i') ADVANCE(159); END_STATE(); - case 933: - if (lookahead == 'r') ADVANCE(1273); + case 78: + if (lookahead == 'r') ADVANCE(160); END_STATE(); - case 934: - if (lookahead == 'r') ADVANCE(1273); - if (lookahead == 'v') ADVANCE(846); + case 79: + if (lookahead == 'L') ADVANCE(161); END_STATE(); - case 935: - if (lookahead == 'r') ADVANCE(1292); + case 80: + if (lookahead == 'i') ADVANCE(162); END_STATE(); - case 936: - if (lookahead == 'r') ADVANCE(1283); + case 81: + if (lookahead == 'o') ADVANCE(163); END_STATE(); - case 937: - if (lookahead == 'r') ADVANCE(1219); + case 82: + if (lookahead == 'n') ADVANCE(164); END_STATE(); - case 938: - if (lookahead == 'r') ADVANCE(1267); + case 83: + if (lookahead == 'r') ADVANCE(165); END_STATE(); - case 939: - if (lookahead == 'r') ADVANCE(1267); - if (lookahead == 'v') ADVANCE(846); + case 84: + if (lookahead == 'E') ADVANCE(166); END_STATE(); - case 940: - if (lookahead == 'r') ADVANCE(1287); + case 85: + if (lookahead == 'l') ADVANCE(167); + if (lookahead == 's') ADVANCE(168); + if (lookahead == 't') ADVANCE(169); END_STATE(); - case 941: - if (lookahead == 'r') ADVANCE(867); + case 86: + if (lookahead == 'a') ADVANCE(170); END_STATE(); - case 942: - if (lookahead == 'r') ADVANCE(845); + case 87: + if (lookahead == 'd') ADVANCE(171); + if (lookahead == 'l') ADVANCE(172); END_STATE(); - case 943: - if (lookahead == 'r') ADVANCE(845); - if (lookahead == 't') ADVANCE(785); + case 88: + if (lookahead == 'e') ADVANCE(173); END_STATE(); - case 944: - if (lookahead == 'r') ADVANCE(890); + case 89: + if (lookahead == 'x') ADVANCE(174); END_STATE(); - case 945: - if (lookahead == 'r') ADVANCE(865); + case 90: + if (lookahead == 'a') ADVANCE(175); + if (lookahead == 'i') ADVANCE(176); + if (lookahead == 'o') ADVANCE(177); END_STATE(); - case 946: - if (lookahead == 'r') ADVANCE(891); + case 91: + if (lookahead == 'n') ADVANCE(178); END_STATE(); - case 947: - if (lookahead == 'r') ADVANCE(872); + case 92: + if (lookahead == 'e') ADVANCE(179); END_STATE(); - case 948: - if (lookahead == 'r') ADVANCE(967); + case 93: + if (lookahead == 'e') ADVANCE(180); END_STATE(); - case 949: - if (lookahead == 'r') ADVANCE(947); + case 94: + if (lookahead == 'p') ADVANCE(181); + if (lookahead == 't') ADVANCE(182); END_STATE(); - case 950: - if (lookahead == 'r') ADVANCE(913); + case 95: + if (lookahead == 'h') ADVANCE(183); + if (lookahead == 'r') ADVANCE(184); END_STATE(); - case 951: - if (lookahead == 'r') ADVANCE(835); + case 96: + if (lookahead == 'n') ADVANCE(185); + if (lookahead == 'p') ADVANCE(186); END_STATE(); - case 952: - if (lookahead == 'r') ADVANCE(874); + case 97: + if (lookahead == 'e') ADVANCE(187); END_STATE(); - case 953: - if (lookahead == 'r') ADVANCE(848); + case 98: + if (lookahead == 'i') ADVANCE(188); END_STATE(); - case 954: - if (lookahead == 's') ADVANCE(1699); + case 99: + if (lookahead == 'a') ADVANCE(189); END_STATE(); - case 955: - if (lookahead == 's') ADVANCE(886); + case 100: + if (lookahead == 'g') ADVANCE(190); END_STATE(); - case 956: - if (lookahead == 's') ADVANCE(877); + case 101: + ACCEPT_TOKEN(anon_sym_and); + if (lookahead == '_') ADVANCE(191); END_STATE(); - case 957: - if (lookahead == 's') ADVANCE(888); - if (lookahead == 't') ADVANCE(976); + case 102: + ACCEPT_TOKEN(anon_sym_asm); END_STATE(); - case 958: - if (lookahead == 's') ADVANCE(974); + case 103: + if (lookahead == 'o') ADVANCE(192); END_STATE(); - case 959: - if (lookahead == 's') ADVANCE(965); + case 104: + if (lookahead == 'a') ADVANCE(193); + if (lookahead == 'o') ADVANCE(194); END_STATE(); - case 960: - if (lookahead == 's') ADVANCE(876); + case 105: + if (lookahead == 'a') ADVANCE(195); END_STATE(); - case 961: - if (lookahead == 's') ADVANCE(982); + case 106: + if (lookahead == 'e') ADVANCE(196); END_STATE(); - case 962: - if (lookahead == 't') ADVANCE(796); + case 107: + if (lookahead == 'c') ADVANCE(197); END_STATE(); - case 963: - if (lookahead == 't') ADVANCE(788); + case 108: + if (lookahead == 's') ADVANCE(198); END_STATE(); - case 964: - if (lookahead == 't') ADVANCE(785); + case 109: + if (lookahead == 'a') ADVANCE(199); + if (lookahead == 'r') ADVANCE(200); + if (lookahead == 'y') ADVANCE(201); END_STATE(); - case 965: - if (lookahead == 't') ADVANCE(1218); + case 110: + if (lookahead == 'p') ADVANCE(202); END_STATE(); - case 966: - if (lookahead == 't') ADVANCE(993); + case 111: + if (lookahead == 'c') ADVANCE(203); + if (lookahead == 's') ADVANCE(204); + if (lookahead == 't') ADVANCE(205); END_STATE(); - case 967: - if (lookahead == 't') ADVANCE(1208); + case 112: + if (lookahead == 'l') ADVANCE(206); END_STATE(); - case 968: - if (lookahead == 't') ADVANCE(1223); + case 113: + if (lookahead == 'a') ADVANCE(207); + if (lookahead == 'i') ADVANCE(208); END_STATE(); - case 969: - if (lookahead == 't') ADVANCE(1235); + case 114: + if (lookahead == 'e') ADVANCE(209); END_STATE(); - case 970: - if (lookahead == 't') ADVANCE(1690); + case 115: + if (lookahead == 'e') ADVANCE(210); END_STATE(); - case 971: - if (lookahead == 't') ADVANCE(984); + case 116: + if (lookahead == 'm') ADVANCE(211); END_STATE(); - case 972: - if (lookahead == 't') ADVANCE(781); + case 117: + if (lookahead == 'l') ADVANCE(212); END_STATE(); - case 973: - if (lookahead == 't') ADVANCE(875); + case 118: + if (lookahead == 'e') ADVANCE(213); END_STATE(); - case 974: - if (lookahead == 't') ADVANCE(941); + case 119: + if (lookahead == 'a') ADVANCE(214); END_STATE(); - case 975: - if (lookahead == 't') ADVANCE(909); + case 120: + ACCEPT_TOKEN(anon_sym_for); END_STATE(); - case 976: - if (lookahead == 't') ADVANCE(945); + case 121: + if (lookahead == 'e') ADVANCE(215); END_STATE(); - case 977: - if (lookahead == 't') ADVANCE(910); + case 122: + if (lookahead == 'o') ADVANCE(216); END_STATE(); - case 978: - if (lookahead == 't') ADVANCE(841); + case 123: + if (lookahead == 'i') ADVANCE(217); END_STATE(); - case 979: - if (lookahead == 't') ADVANCE(847); + case 124: + if (lookahead == 'g') ADVANCE(218); END_STATE(); - case 980: - if (lookahead == 't') ADVANCE(985); + case 125: + if (lookahead == 'a') ADVANCE(219); END_STATE(); - case 981: - if (lookahead == 't') ADVANCE(976); + case 126: + if (lookahead == 'e') ADVANCE(220); END_STATE(); - case 982: - if (lookahead == 't') ADVANCE(952); + case 127: + ACCEPT_TOKEN(anon_sym_new); END_STATE(); - case 983: - if (lookahead == 'u') ADVANCE(963); + case 128: + if (lookahead == 'x') ADVANCE(221); END_STATE(); - case 984: - if (lookahead == 'u') ADVANCE(944); + case 129: + if (lookahead == 'e') ADVANCE(222); END_STATE(); - case 985: - if (lookahead == 'u') ADVANCE(946); + case 130: + ACCEPT_TOKEN(anon_sym_not); + if (lookahead == '_') ADVANCE(223); END_STATE(); - case 986: - if (lookahead == 'u') ADVANCE(873); + case 131: + if (lookahead == 'l') ADVANCE(224); END_STATE(); - case 987: - if (lookahead == 'u') ADVANCE(979); + case 132: + if (lookahead == 's') ADVANCE(225); END_STATE(); - case 988: - if (lookahead == 'v') ADVANCE(793); - if (lookahead == 'x') ADVANCE(924); + case 133: + if (lookahead == 'r') ADVANCE(226); END_STATE(); - case 989: - if (lookahead == 'v') ADVANCE(846); + case 134: + if (lookahead == 'e') ADVANCE(227); END_STATE(); - case 990: - if (lookahead == 'w') ADVANCE(1692); + case 135: + if (lookahead == 'r') ADVANCE(228); END_STATE(); - case 991: - if (lookahead == 'x') ADVANCE(803); + case 136: + if (lookahead == 'v') ADVANCE(229); END_STATE(); - case 992: - if (lookahead == 'x') ADVANCE(978); + case 137: + if (lookahead == 't') ADVANCE(230); END_STATE(); - case 993: - if (lookahead == 'y') ADVANCE(925); + case 138: + if (lookahead == 'l') ADVANCE(231); END_STATE(); - case 994: - if (lookahead == '|') ADVANCE(1162); + case 139: + if (lookahead == 'i') ADVANCE(232); END_STATE(); - case 995: - if (lookahead == '+' || - lookahead == '-') ADVANCE(1002); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1324); + case 140: + if (lookahead == 'u') ADVANCE(233); END_STATE(); - case 996: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(995); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(732); + case 141: + if (lookahead == 't') ADVANCE(234); END_STATE(); - case 997: - if (lookahead == '0' || - lookahead == '1') ADVANCE(1322); + case 142: + if (lookahead == 'u') ADVANCE(235); END_STATE(); - case 998: - if (lookahead == '8' || - lookahead == '9') ADVANCE(733); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(1321); + case 143: + if (lookahead == 'r') ADVANCE(236); END_STATE(); - case 999: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1323); + case 144: + if (lookahead == 'n') ADVANCE(237); END_STATE(); - case 1000: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1319); + case 145: + if (lookahead == 'e') ADVANCE(238); END_STATE(); - case 1001: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(733); + case 146: + if (lookahead == 't') ADVANCE(239); END_STATE(); - case 1002: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1324); + case 147: + if (lookahead == 'u') ADVANCE(240); END_STATE(); - case 1003: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1671); + case 148: + if (lookahead == 't') ADVANCE(241); END_STATE(); - case 1004: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1325); + case 149: + if (lookahead == 'p') ADVANCE(242); END_STATE(); - case 1005: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(732); + case 150: + if (lookahead == 's') ADVANCE(243); END_STATE(); - case 1006: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1353); + case 151: + if (lookahead == 'e') ADVANCE(244); + if (lookahead == 'o') ADVANCE(245); END_STATE(); - case 1007: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1003); + case 152: + ACCEPT_TOKEN(anon_sym_try); END_STATE(); - case 1008: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1006); + case 153: + if (lookahead == 'e') ADVANCE(246); END_STATE(); - case 1009: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1007); + case 154: + if (lookahead == 'o') ADVANCE(247); END_STATE(); - case 1010: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1008); + case 155: + if (lookahead == 'i') ADVANCE(248); END_STATE(); - case 1011: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1009); + case 156: + if (lookahead == 'n') ADVANCE(249); END_STATE(); - case 1012: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1010); + case 157: + if (lookahead == 't') ADVANCE(250); END_STATE(); - case 1013: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1011); + case 158: + if (lookahead == 'a') ADVANCE(251); END_STATE(); - case 1014: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1012); + case 159: + if (lookahead == 'l') ADVANCE(252); END_STATE(); - case 1015: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1013); + case 160: + ACCEPT_TOKEN(anon_sym_xor); + if (lookahead == '_') ADVANCE(253); END_STATE(); - case 1016: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1014); + case 161: + ACCEPT_TOKEN(anon_sym_NULL); END_STATE(); - case 1017: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1015); + case 162: + if (lookahead == 'g') ADVANCE(254); END_STATE(); - case 1018: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1016); + case 163: + if (lookahead == 'm') ADVANCE(255); END_STATE(); - case 1019: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1017); + case 164: + if (lookahead == 'e') ADVANCE(256); END_STATE(); - case 1020: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1018); + case 165: + if (lookahead == 'e') ADVANCE(257); END_STATE(); - case 1021: - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(1806); + case 166: + if (lookahead == 'M') ADVANCE(258); END_STATE(); - case 1022: - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(1803); + case 167: + if (lookahead == 'i') ADVANCE(259); END_STATE(); - case 1023: - if (lookahead != 0 && - lookahead != '*') ADVANCE(1099); - END_STATE(); - case 1024: - if (eof) ADVANCE(1064); - if (lookahead == '\n') SKIP(1049); - END_STATE(); - case 1025: - if (eof) ADVANCE(1064); - if (lookahead == '\n') SKIP(1049); - if (lookahead == '\r') SKIP(1024); - END_STATE(); - case 1026: - if (eof) ADVANCE(1064); - if (lookahead == '\n') SKIP(1050); - END_STATE(); - case 1027: - if (eof) ADVANCE(1064); - if (lookahead == '\n') SKIP(1050); - if (lookahead == '\r') SKIP(1026); - END_STATE(); - case 1028: - if (eof) ADVANCE(1064); - if (lookahead == '\n') SKIP(1061); - END_STATE(); - case 1029: - if (eof) ADVANCE(1064); - if (lookahead == '\n') SKIP(1061); - if (lookahead == '\r') SKIP(1028); - END_STATE(); - case 1030: - if (eof) ADVANCE(1064); - if (lookahead == '\n') SKIP(1062); - END_STATE(); - case 1031: - if (eof) ADVANCE(1064); - if (lookahead == '\n') SKIP(1062); - if (lookahead == '\r') SKIP(1030); - END_STATE(); - case 1032: - if (eof) ADVANCE(1064); - if (lookahead == '\n') SKIP(1059); - END_STATE(); - case 1033: - if (eof) ADVANCE(1064); - if (lookahead == '\n') SKIP(1059); - if (lookahead == '\r') SKIP(1032); - END_STATE(); - case 1034: - if (eof) ADVANCE(1064); - if (lookahead == '\n') SKIP(1063); - END_STATE(); - case 1035: - if (eof) ADVANCE(1064); - if (lookahead == '\n') SKIP(1063); - if (lookahead == '\r') SKIP(1034); - END_STATE(); - case 1036: - if (eof) ADVANCE(1064); - if (lookahead == '\n') SKIP(1052); - END_STATE(); - case 1037: - if (eof) ADVANCE(1064); - if (lookahead == '\n') SKIP(1052); - if (lookahead == '\r') SKIP(1036); - END_STATE(); - case 1038: - if (eof) ADVANCE(1064); - if (lookahead == '\n') SKIP(1060); - END_STATE(); - case 1039: - if (eof) ADVANCE(1064); - if (lookahead == '\n') SKIP(1060); - if (lookahead == '\r') SKIP(1038); - END_STATE(); - case 1040: - if (eof) ADVANCE(1064); - ADVANCE_MAP( - '!', 1137, - '"', 1347, - '#', 804, - '$', 742, - '%', 1161, - '&', 1170, - '\'', 1338, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1151, - ',', 1071, - '-', 1140, - '.', 1311, - '/', 1159, - '0', 1320, - ':', 1242, - ';', 1190, - '<', 1180, - '=', 1216, - '>', 1689, - '?', 1243, - 'F', 1389, - 'L', 1361, - 'R', 1364, - 'T', 1397, - 'U', 1365, - '[', 1212, - '\\', 2, - ']', 1214, - '^', 1167, - '_', 1390, - 'a', 1532, - 'b', 1502, - 'c', 1489, - 'd', 1451, - 'f', 1415, - 'i', 1543, - 'l', 1567, - 'm', 1418, - 'n', 1556, - 'o', 1591, - 'p', 1627, - 'r', 1453, - 's', 1493, - 't', 1491, - 'u', 1368, - 'v', 1557, - 'x', 1566, - '{', 1200, - '|', 1164, - '}', 1201, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1040); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + case 168: + if (lookahead == 'm') ADVANCE(260); END_STATE(); - case 1041: - if (eof) ADVANCE(1064); - ADVANCE_MAP( - '!', 1137, - '"', 1347, - '#', 810, - '$', 743, - '%', 1160, - '&', 1169, - '\'', 1338, - '(', 1135, - ')', 1072, - '*', 1156, - '+', 1152, - ',', 1071, - '-', 1142, - '.', 1313, - '/', 1158, - '0', 1320, - ':', 1242, - ';', 1190, - '<', 1181, - '=', 763, - '>', 1173, - '?', 1243, - 'F', 1389, - 'L', 1361, - 'R', 1364, - 'T', 1397, - 'U', 1365, - '[', 1211, - '\\', 14, - '^', 1166, - '_', 1390, - 'a', 1546, - 'b', 1502, - 'c', 1489, - 'd', 1451, - 'f', 1416, - 'i', 1543, - 'l', 1567, - 'm', 1418, - 'n', 1560, - 'o', 1598, - 'p', 1627, - 'r', 1453, - 's', 1493, - 't', 1491, - 'u', 1368, - 'v', 1557, - 'x', 1576, - '{', 1200, - '|', 1165, - '}', 1201, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1041); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + case 169: + if (lookahead == 't') ADVANCE(261); END_STATE(); - case 1042: - if (eof) ADVANCE(1064); - ADVANCE_MAP( - '!', 1137, - '"', 1347, - '#', 821, - '$', 743, - '%', 1161, - '&', 1170, - '\'', 1338, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1151, - ',', 1071, - '-', 1141, - '.', 1313, - '/', 1159, - '0', 1320, - ':', 1242, - ';', 1190, - '<', 1180, - '=', 1216, - '>', 1174, - '?', 1243, - 'F', 1389, - 'L', 1361, - 'R', 1364, - 'T', 1397, - 'U', 1365, - '[', 1210, - '\\', 18, - ']', 1214, - '^', 1167, - '_', 1406, - 'a', 1533, - 'b', 1502, - 'c', 1490, - 'd', 1451, - 'f', 1416, - 'i', 1543, - 'm', 1419, - 'n', 1574, - 'o', 1592, - 'p', 1627, - 'r', 1474, - 's', 1495, - 't', 1601, - 'u', 1369, - 'v', 1573, - 'x', 1566, - '{', 1200, - '|', 1164, - '}', 1201, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1042); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + case 170: + if (lookahead == 's') ADVANCE(262); END_STATE(); - case 1043: - if (eof) ADVANCE(1064); - ADVANCE_MAP( - '!', 1137, - '"', 1347, - '#', 821, - '$', 743, - '%', 1160, - '&', 1169, - '\'', 1338, - '(', 1135, - ')', 1072, - '*', 1156, - '+', 1152, - ',', 1071, - '-', 1142, - '.', 1313, - '/', 1158, - '0', 1320, - ':', 1242, - ';', 1190, - '<', 1181, - '=', 763, - '>', 1173, - '?', 1243, - 'F', 1389, - 'L', 1361, - 'R', 1364, - 'T', 1397, - 'U', 1365, - '[', 1210, - '\\', 301, - ']', 1214, - '^', 1166, - '_', 1406, - 'a', 1547, - 'b', 1502, - 'c', 1490, - 'd', 1451, - 'f', 1416, - 'i', 1543, - 'm', 1419, - 'n', 1574, - 'o', 1598, - 'p', 1627, - 'r', 1474, - 's', 1495, - 't', 1601, - 'u', 1369, - 'v', 1573, - 'x', 1576, - '{', 1200, - '|', 1165, - '}', 1201, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1043); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + case 171: + if (lookahead == 'e') ADVANCE(263); END_STATE(); - case 1044: - if (eof) ADVANCE(1064); - ADVANCE_MAP( - '!', 1136, - '"', 1347, - '#', 810, - '$', 743, - '&', 1169, - '\'', 1338, - '(', 1135, - ')', 1072, - '*', 1156, - '+', 1152, - ',', 1071, - '-', 1143, - '.', 1314, - '/', 737, - '0', 1320, - ':', 761, - ';', 1190, - '<', 753, - '=', 1215, - '>', 1689, - 'F', 1389, - 'L', 1361, - 'R', 1364, - 'T', 1397, - 'U', 1365, - '[', 1211, - '\\', 4, - ']', 776, - '_', 1390, - 'a', 1616, - 'b', 1568, - 'c', 1489, - 'd', 1451, - 'f', 1416, - 'i', 1543, - 'l', 1567, - 'm', 1418, - 'n', 1579, - 'p', 1627, - 'r', 1453, - 's', 1493, - 't', 1491, - 'u', 1368, - 'v', 1557, - '{', 1200, - '}', 1201, - '~', 1138, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1044); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + case 172: + if (lookahead == 'r') ADVANCE(264); END_STATE(); - case 1045: - if (eof) ADVANCE(1064); - ADVANCE_MAP( - '!', 762, - '"', 1347, - '#', 821, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ':', 1241, - ';', 1190, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - 'L', 1362, - 'R', 1364, - 'U', 1366, - '[', 1210, - '\\', 70, - ']', 1214, - '^', 1167, - 'a', 1535, - 'b', 1503, - 'n', 1575, - 'o', 1592, - 'u', 1371, - 'x', 1566, - '{', 1200, - '|', 1164, - '}', 1201, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1045); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + case 173: + if (lookahead == 'c') ADVANCE(265); END_STATE(); - case 1046: - if (eof) ADVANCE(1064); - ADVANCE_MAP( - '!', 762, - '"', 1347, - '#', 821, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ':', 1241, - ';', 1190, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - 'L', 1705, - 'R', 1707, - 'U', 1709, - '[', 1210, - '\\', 70, - ']', 1214, - '^', 1167, - 'a', 1740, - 'b', 1738, - 'n', 1744, - 'o', 1750, - 'u', 1711, - 'x', 1743, - '{', 1200, - '|', 1164, - '}', 1201, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1045); - if (('A' <= lookahead && lookahead <= '_') || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + case 174: + if (lookahead == 'c') ADVANCE(266); + if (lookahead == 't') ADVANCE(267); END_STATE(); - case 1047: - if (eof) ADVANCE(1064); - ADVANCE_MAP( - '!', 762, - '"', 1347, - '#', 821, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - ':', 1241, - ';', 1190, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - 'L', 1362, - 'R', 1364, - 'U', 1366, - '[', 1210, - '\\', 126, - ']', 1214, - '^', 1166, - 'a', 1549, - 'b', 1503, - 'n', 1575, - 'o', 1598, - 'u', 1371, - 'x', 1576, - '|', 1165, - '}', 1201, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1047); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + case 175: + if (lookahead == 's') ADVANCE(268); END_STATE(); - case 1048: - if (eof) ADVANCE(1064); - ADVANCE_MAP( - '!', 762, - '"', 1347, - '#', 821, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - ':', 1241, - ';', 1190, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - 'L', 1705, - 'R', 1707, - 'U', 1709, - '[', 1210, - '\\', 126, - ']', 1214, - '^', 1166, - 'a', 1742, - 'b', 1738, - 'n', 1744, - 'o', 1753, - 'u', 1711, - 'x', 1745, - '|', 1165, - '}', 1201, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1047); - if (('A' <= lookahead && lookahead <= '_') || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + case 176: + if (lookahead == 'n') ADVANCE(269); END_STATE(); - case 1049: - if (eof) ADVANCE(1064); - ADVANCE_MAP( - '!', 762, - '"', 1347, - '$', 1022, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ':', 1242, - ';', 1190, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - 'L', 643, - 'R', 644, - 'U', 645, - '[', 1210, - ); - if (lookahead == '\\') SKIP(1025); - if (lookahead == ']') ADVANCE(1214); - if (lookahead == '^') ADVANCE(1167); - if (lookahead == '_') ADVANCE(767); - if (lookahead == 'a') ADVANCE(896); - if (lookahead == 'b') ADVANCE(863); - if (lookahead == 'c') ADVANCE(915); - if (lookahead == 'd') ADVANCE(823); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'l') ADVANCE(917); - if (lookahead == 'm') ADVANCE(983); - if (lookahead == 'n') ADVANCE(911); - if (lookahead == 'o') ADVANCE(934); - if (lookahead == 'r') ADVANCE(824); - if (lookahead == 's') ADVANCE(860); - if (lookahead == 'u') ADVANCE(647); - if (lookahead == 'v') ADVANCE(908); - if (lookahead == 'x') ADVANCE(916); - if (lookahead == '{') ADVANCE(1200); - if (lookahead == '|') ADVANCE(1164); - if (lookahead == '}') ADVANCE(1201); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1049); + case 177: + if (lookahead == 'r') ADVANCE(270); END_STATE(); - case 1050: - if (eof) ADVANCE(1064); - ADVANCE_MAP( - '!', 762, - '"', 1347, - '$', 1022, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ':', 1241, - ';', 1190, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - 'L', 643, - 'R', 644, - 'U', 645, - '[', 1210, - ); - if (lookahead == '\\') SKIP(1027); - if (lookahead == ']') ADVANCE(1214); - if (lookahead == '^') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(894); - if (lookahead == 'b') ADVANCE(863); - if (lookahead == 'n') ADVANCE(922); - if (lookahead == 'o') ADVANCE(933); - if (lookahead == 'u') ADVANCE(646); - if (lookahead == 'x') ADVANCE(916); - if (lookahead == '|') ADVANCE(1164); - if (lookahead == '}') ADVANCE(1201); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1050); + case 178: + if (lookahead == 'l') ADVANCE(271); END_STATE(); - case 1051: - if (eof) ADVANCE(1064); - ADVANCE_MAP( - '!', 762, - '"', 1347, - '$', 1022, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ':', 1241, - ';', 1190, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - 'L', 1706, - 'R', 1708, - 'U', 1710, - '[', 1210, - ); - if (lookahead == '\\') SKIP(1027); - if (lookahead == ']') ADVANCE(1214); - if (lookahead == '^') ADVANCE(1167); - if (lookahead == 'a') ADVANCE(1780); - if (lookahead == 'b') ADVANCE(1778); - if (lookahead == 'n') ADVANCE(1784); - if (lookahead == 'o') ADVANCE(1790); - if (lookahead == 'u') ADVANCE(1712); - if (lookahead == 'x') ADVANCE(1783); - if (lookahead == '|') ADVANCE(1164); - if (lookahead == '}') ADVANCE(1201); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1050); - if (('A' <= lookahead && lookahead <= '_') || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1802); + case 179: + if (lookahead == 'a') ADVANCE(272); END_STATE(); - case 1052: - if (eof) ADVANCE(1064); - ADVANCE_MAP( - '!', 762, - '"', 1347, - '%', 1160, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - ':', 1241, - ';', 1190, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - 'L', 643, - 'R', 644, - 'U', 645, - '[', 1210, - ); - if (lookahead == '\\') SKIP(1037); - if (lookahead == ']') ADVANCE(1214); - if (lookahead == '^') ADVANCE(1166); - if (lookahead == 'a') ADVANCE(898); - if (lookahead == 'b') ADVANCE(863); - if (lookahead == 'n') ADVANCE(922); - if (lookahead == 'o') ADVANCE(938); - if (lookahead == 'u') ADVANCE(646); - if (lookahead == 'x') ADVANCE(921); - if (lookahead == '|') ADVANCE(1165); - if (lookahead == '}') ADVANCE(1201); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1052); + case 180: + if (lookahead == 's') ADVANCE(273); END_STATE(); - case 1053: - if (eof) ADVANCE(1064); - ADVANCE_MAP( - '!', 762, - '"', 1347, - '%', 1160, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - ':', 1241, - ';', 1190, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - 'L', 1706, - 'R', 1708, - 'U', 1710, - '[', 1210, - ); - if (lookahead == '\\') SKIP(1037); - if (lookahead == ']') ADVANCE(1214); - if (lookahead == '^') ADVANCE(1166); - if (lookahead == 'a') ADVANCE(1782); - if (lookahead == 'b') ADVANCE(1778); - if (lookahead == 'n') ADVANCE(1784); - if (lookahead == 'o') ADVANCE(1793); - if (lookahead == 'u') ADVANCE(1712); - if (lookahead == 'x') ADVANCE(1785); - if (lookahead == '|') ADVANCE(1165); - if (lookahead == '}') ADVANCE(1201); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1052); - if (('A' <= lookahead && lookahead <= '_') || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1802); + case 181: + if (lookahead == 't') ADVANCE(274); END_STATE(); - case 1054: - if (eof) ADVANCE(1064); - ADVANCE_MAP( - '!', 762, - '#', 821, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ':', 1241, - ';', 1190, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1210, - '\\', 72, - ']', 1214, - '^', 1167, - '_', 1414, - 'a', 1534, - 'b', 1502, - 'c', 1490, - 'd', 1451, - 'f', 1521, - 'i', 1543, - 'l', 1567, - 'm', 1419, - 'n', 1574, - 'o', 1592, - 'p', 1627, - 's', 1493, - 'u', 1511, - 'v', 1573, - 'x', 1566, - '{', 1200, - '|', 1164, - '}', 1201, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1054); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + case 182: + if (lookahead == 'd') ADVANCE(275); END_STATE(); - case 1055: - if (eof) ADVANCE(1064); - ADVANCE_MAP( - '!', 762, - '#', 821, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ':', 1241, - ';', 1190, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1210, - '\\', 76, - ']', 1214, - '^', 1167, - 'a', 1534, - 'b', 1502, - 'c', 1490, - 'd', 1451, - 'f', 1521, - 'i', 1543, - 'l', 1567, - 'm', 1419, - 'n', 1574, - 'o', 1592, - 'p', 1627, - 's', 1493, - 'u', 1511, - 'v', 1573, - 'x', 1566, - '{', 1200, - '|', 1164, - '}', 1201, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1055); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + case 183: + if (lookahead == 'i') ADVANCE(276); + if (lookahead == 'r') ADVANCE(277); END_STATE(); - case 1056: - if (eof) ADVANCE(1064); - ADVANCE_MAP( - '!', 762, - '#', 821, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - ':', 1241, - ';', 1190, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - '[', 1210, - '\\', 319, - ']', 1214, - '^', 1166, - '_', 1414, - 'a', 1548, - 'b', 1502, - 'c', 1490, - 'd', 1451, - 'f', 1521, - 'i', 1543, - 'l', 1567, - 'm', 1419, - 'n', 1574, - 'o', 1598, - 'p', 1627, - 's', 1493, - 'u', 1511, - 'v', 1573, - 'x', 1576, - '{', 1200, - '|', 1165, - '}', 1201, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1056); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + case 184: + if (lookahead == 'y') ADVANCE(278); END_STATE(); - case 1057: - if (eof) ADVANCE(1064); - ADVANCE_MAP( - '!', 762, - '#', 821, - '$', 774, - '%', 1160, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - ':', 1241, - ';', 1190, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - '[', 1210, - '\\', 321, - ']', 1214, - '^', 1166, - 'a', 1548, - 'b', 1502, - 'c', 1490, - 'd', 1451, - 'f', 1521, - 'i', 1543, - 'l', 1567, - 'm', 1419, - 'n', 1574, - 'o', 1598, - 'p', 1627, - 's', 1493, - 'u', 1511, - 'v', 1573, - 'x', 1576, - '{', 1200, - '|', 1165, - '}', 1201, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1057); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + case 185: + if (lookahead == 'a') ADVANCE(279); END_STATE(); - case 1058: - if (eof) ADVANCE(1064); - ADVANCE_MAP( - '!', 762, - '$', 774, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ':', 1241, - ';', 1190, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1211, - '\\', 144, - ']', 1214, - '^', 1167, - '_', 1414, - 'a', 1535, - 'b', 1503, - 'n', 1575, - 'o', 1592, - 'x', 1566, - '{', 1200, - '|', 1164, - '}', 1201, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1058); - if (set_contains(sym_identifier_character_set_2, 657, lookahead)) ADVANCE(1671); + case 186: + if (lookahead == 't') ADVANCE(280); END_STATE(); - case 1059: - if (eof) ADVANCE(1064); - ADVANCE_MAP( - '!', 762, - '$', 1022, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ':', 1241, - ';', 1190, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1211, - ); - if (lookahead == '\\') SKIP(1033); - if (lookahead == ']') ADVANCE(1214); - if (lookahead == '^') ADVANCE(1167); - if (lookahead == '_') ADVANCE(782); - if (lookahead == 'a') ADVANCE(895); - if (lookahead == 'b') ADVANCE(863); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'n') ADVANCE(912); - if (lookahead == 'o') ADVANCE(934); - if (lookahead == 'r') ADVANCE(843); - if (lookahead == 't') ADVANCE(861); - if (lookahead == 'x') ADVANCE(916); - if (lookahead == '{') ADVANCE(1200); - if (lookahead == '|') ADVANCE(1164); - if (lookahead == '}') ADVANCE(1201); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1059); + case 187: + if (lookahead == 'c') ADVANCE(281); END_STATE(); - case 1060: - if (eof) ADVANCE(1064); - ADVANCE_MAP( - '!', 762, - '$', 1022, - '%', 1160, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - ':', 1242, - ';', 1190, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - '[', 1210, - ); - if (lookahead == '\\') SKIP(1039); - if (lookahead == ']') ADVANCE(1214); - if (lookahead == '^') ADVANCE(1166); - if (lookahead == '_') ADVANCE(767); - if (lookahead == 'a') ADVANCE(899); - if (lookahead == 'b') ADVANCE(863); - if (lookahead == 'c') ADVANCE(915); - if (lookahead == 'd') ADVANCE(823); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'l') ADVANCE(917); - if (lookahead == 'm') ADVANCE(983); - if (lookahead == 'n') ADVANCE(907); - if (lookahead == 'o') ADVANCE(939); - if (lookahead == 'r') ADVANCE(830); - if (lookahead == 's') ADVANCE(860); - if (lookahead == 'u') ADVANCE(892); - if (lookahead == 'v') ADVANCE(908); - if (lookahead == 'x') ADVANCE(921); - if (lookahead == '{') ADVANCE(1200); - if (lookahead == '|') ADVANCE(1165); - if (lookahead == '}') ADVANCE(1201); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1060); + case 188: + if (lookahead == 'g') ADVANCE(282); END_STATE(); - case 1061: - if (eof) ADVANCE(1064); - ADVANCE_MAP( - '!', 762, - '$', 1022, - '%', 1160, - '&', 1169, - '(', 1135, - ')', 1072, - '*', 1156, - '+', 1150, - ',', 1071, - '-', 1146, - '.', 1312, - '/', 1158, - ':', 1241, - ';', 1190, - '<', 1184, - '=', 763, - '>', 1173, - '?', 1243, - '[', 1210, - ); - if (lookahead == '\\') SKIP(1029); - if (lookahead == ']') ADVANCE(1214); - if (lookahead == '^') ADVANCE(1166); - if (lookahead == '_') ADVANCE(767); - if (lookahead == 'a') ADVANCE(899); - if (lookahead == 'b') ADVANCE(863); - if (lookahead == 'c') ADVANCE(915); - if (lookahead == 'd') ADVANCE(823); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'l') ADVANCE(917); - if (lookahead == 'm') ADVANCE(983); - if (lookahead == 'n') ADVANCE(907); - if (lookahead == 'o') ADVANCE(939); - if (lookahead == 'r') ADVANCE(830); - if (lookahead == 's') ADVANCE(860); - if (lookahead == 'u') ADVANCE(892); - if (lookahead == 'v') ADVANCE(908); - if (lookahead == 'x') ADVANCE(921); - if (lookahead == '{') ADVANCE(1200); - if (lookahead == '|') ADVANCE(1165); - if (lookahead == '}') ADVANCE(1201); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1061); + case 189: + if (lookahead == 'l') ADVANCE(283); END_STATE(); - case 1062: - if (eof) ADVANCE(1064); - ADVANCE_MAP( - '!', 762, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ':', 1241, - ';', 1190, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1210, - ); - if (lookahead == '\\') SKIP(1031); - if (lookahead == ']') ADVANCE(1214); - if (lookahead == '^') ADVANCE(1167); - if (lookahead == '_') ADVANCE(787); - if (lookahead == 'a') ADVANCE(896); - if (lookahead == 'b') ADVANCE(863); - if (lookahead == 'd') ADVANCE(823); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'l') ADVANCE(917); - if (lookahead == 'n') ADVANCE(922); - if (lookahead == 'o') ADVANCE(934); - if (lookahead == 's') ADVANCE(860); - if (lookahead == 'u') ADVANCE(892); - if (lookahead == 'x') ADVANCE(916); - if (lookahead == '{') ADVANCE(1200); - if (lookahead == '|') ADVANCE(1164); - if (lookahead == '}') ADVANCE(1201); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1062); + case 190: + if (lookahead == 'n') ADVANCE(284); END_STATE(); - case 1063: - if (eof) ADVANCE(1064); - ADVANCE_MAP( - '!', 762, - '%', 1161, - '&', 1170, - '(', 1135, - ')', 1072, - '*', 1157, - '+', 1153, - ',', 1071, - '-', 1145, - '.', 1312, - '/', 1159, - ':', 1241, - ';', 1190, - '<', 1182, - '=', 1216, - '>', 1174, - '?', 1243, - '[', 1213, - ); - if (lookahead == '\\') SKIP(1035); - if (lookahead == ']') ADVANCE(1214); - if (lookahead == '^') ADVANCE(1167); - if (lookahead == '_') ADVANCE(787); - if (lookahead == 'a') ADVANCE(894); - if (lookahead == 'b') ADVANCE(863); - if (lookahead == 'n') ADVANCE(922); - if (lookahead == 'o') ADVANCE(933); - if (lookahead == 'x') ADVANCE(916); - if (lookahead == '|') ADVANCE(1164); - if (lookahead == '}') ADVANCE(1201); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1063); + case 191: + if (lookahead == 'e') ADVANCE(285); END_STATE(); - case 1064: - ACCEPT_TOKEN(ts_builtin_sym_end); + case 192: + ACCEPT_TOKEN(sym_auto); END_STATE(); - case 1065: - ACCEPT_TOKEN(aux_sym_preproc_include_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 193: + if (lookahead == 'n') ADVANCE(286); END_STATE(); - case 1066: - ACCEPT_TOKEN(aux_sym_preproc_include_token2); + case 194: + if (lookahead == 'r') ADVANCE(287); END_STATE(); - case 1067: - ACCEPT_TOKEN(aux_sym_preproc_def_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 195: + if (lookahead == 'k') ADVANCE(288); END_STATE(); - case 1068: - ACCEPT_TOKEN(anon_sym_LPAREN); + case 196: + ACCEPT_TOKEN(anon_sym_case); END_STATE(); - case 1069: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + case 197: + if (lookahead == 'h') ADVANCE(289); END_STATE(); - case 1070: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); - if (lookahead == '>') ADVANCE(1805); + case 198: + if (lookahead == 's') ADVANCE(290); END_STATE(); - case 1071: - ACCEPT_TOKEN(anon_sym_COMMA); + case 199: + if (lookahead == 'w') ADVANCE(291); END_STATE(); - case 1072: - ACCEPT_TOKEN(anon_sym_RPAREN); + case 200: + if (lookahead == 'e') ADVANCE(292); END_STATE(); - case 1073: - ACCEPT_TOKEN(aux_sym_preproc_if_token1); - if (lookahead == 'd') ADVANCE(1110); - if (lookahead == 'n') ADVANCE(1104); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 201: + if (lookahead == 'i') ADVANCE(293); END_STATE(); - case 1074: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(1074); + case 202: + if (lookahead == 'l') ADVANCE(294); END_STATE(); - case 1075: - ACCEPT_TOKEN(aux_sym_preproc_if_token2); + case 203: + if (lookahead == 'e') ADVANCE(295); END_STATE(); - case 1076: - ACCEPT_TOKEN(aux_sym_preproc_if_token2); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 204: + if (lookahead == 't') ADVANCE(296); END_STATE(); - case 1077: - ACCEPT_TOKEN(aux_sym_preproc_ifdef_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 205: + if (lookahead == 'i') ADVANCE(297); END_STATE(); - case 1078: - ACCEPT_TOKEN(aux_sym_preproc_ifdef_token2); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 206: + if (lookahead == 't') ADVANCE(298); END_STATE(); - case 1079: - ACCEPT_TOKEN(aux_sym_preproc_else_token1); + case 207: + if (lookahead == 'u') ADVANCE(299); END_STATE(); - case 1080: - ACCEPT_TOKEN(aux_sym_preproc_else_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 208: + if (lookahead == 'n') ADVANCE(300); END_STATE(); - case 1081: - ACCEPT_TOKEN(aux_sym_preproc_elif_token1); + case 209: + if (lookahead == 't') ADVANCE(301); END_STATE(); - case 1082: - ACCEPT_TOKEN(aux_sym_preproc_elif_token1); - if (lookahead == 'd') ADVANCE(838); - if (lookahead == 'n') ADVANCE(819); + case 210: + ACCEPT_TOKEN(anon_sym_else); END_STATE(); - case 1083: - ACCEPT_TOKEN(aux_sym_preproc_elif_token1); - if (lookahead == 'd') ADVANCE(1112); - if (lookahead == 'n') ADVANCE(1105); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 211: + ACCEPT_TOKEN(anon_sym_enum); END_STATE(); - case 1084: - ACCEPT_TOKEN(aux_sym_preproc_elif_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 212: + if (lookahead == 'i') ADVANCE(302); END_STATE(); - case 1085: - ACCEPT_TOKEN(aux_sym_preproc_elifdef_token1); + case 213: + if (lookahead == 'r') ADVANCE(303); END_STATE(); - case 1086: - ACCEPT_TOKEN(aux_sym_preproc_elifdef_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 214: + if (lookahead == 'l') ADVANCE(304); END_STATE(); - case 1087: - ACCEPT_TOKEN(aux_sym_preproc_elifdef_token2); + case 215: + if (lookahead == 'n') ADVANCE(305); END_STATE(); - case 1088: - ACCEPT_TOKEN(aux_sym_preproc_elifdef_token2); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 216: + ACCEPT_TOKEN(anon_sym_goto); END_STATE(); - case 1089: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(740); - if (lookahead == '*') ADVANCE(1089); - if (lookahead == '/') ADVANCE(1672); - if (lookahead == '\\') ADVANCE(1095); - if (lookahead != 0) ADVANCE(1090); + case 217: + if (lookahead == 'n') ADVANCE(306); END_STATE(); - case 1090: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(740); - if (lookahead == '*') ADVANCE(1089); - if (lookahead == '/') ADVANCE(741); - if (lookahead == '\\') ADVANCE(1095); - if (lookahead != 0) ADVANCE(1090); + case 218: + ACCEPT_TOKEN(anon_sym_long); END_STATE(); - case 1091: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(1679); - if (lookahead == '\r') ADVANCE(1673); - if (lookahead == '/') ADVANCE(1676); - if (lookahead == '\\') ADVANCE(1675); - if (lookahead != 0) ADVANCE(1677); + case 219: + if (lookahead == 'b') ADVANCE(307); END_STATE(); - case 1092: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') SKIP(754); - if (lookahead == '\r') ADVANCE(1093); - if (lookahead == '/') ADVANCE(1023); - if (lookahead == '\\') ADVANCE(1094); - if (lookahead != 0) ADVANCE(1099); + case 220: + if (lookahead == 's') ADVANCE(308); END_STATE(); - case 1093: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') SKIP(754); - if (lookahead == '/') ADVANCE(1023); - if (lookahead == '\\') ADVANCE(1094); - if (lookahead != 0) ADVANCE(1099); + case 221: + if (lookahead == 'c') ADVANCE(309); END_STATE(); - case 1094: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\r') ADVANCE(1100); - if (lookahead == '/') ADVANCE(1023); - if (lookahead == '\\') ADVANCE(1094); - if (lookahead != 0) ADVANCE(1099); + case 222: + if (lookahead == 't') ADVANCE(310); END_STATE(); - case 1095: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\r') ADVANCE(1098); - if (lookahead == '*') ADVANCE(1089); - if (lookahead == '/') ADVANCE(741); - if (lookahead == '\\') ADVANCE(1095); - if (lookahead != 0) ADVANCE(1090); + case 223: + if (lookahead == 'e') ADVANCE(311); END_STATE(); - case 1096: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\r') ADVANCE(1678); - if (lookahead == '/') ADVANCE(1676); - if (lookahead == '\\') ADVANCE(1675); - if (lookahead != 0) ADVANCE(1677); + case 224: + if (lookahead == 'p') ADVANCE(312); END_STATE(); - case 1097: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '*') ADVANCE(1090); - if (lookahead == '/') ADVANCE(1676); - if (lookahead == '\\') ADVANCE(1094); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(1099); + case 225: + if (lookahead == 'e') ADVANCE(313); END_STATE(); - case 1098: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '*') ADVANCE(1089); - if (lookahead == '/') ADVANCE(741); - if (lookahead == '\\') ADVANCE(1095); - if (lookahead != 0) ADVANCE(1090); + case 226: + if (lookahead == 'a') ADVANCE(314); END_STATE(); - case 1099: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(1023); - if (lookahead == '\\') ADVANCE(1094); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(1099); + case 227: + if (lookahead == 'q') ADVANCE(315); END_STATE(); - case 1100: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(1023); - if (lookahead == '\\') ADVANCE(1094); - if (lookahead != 0) ADVANCE(1099); + case 228: + if (lookahead == 'r') ADVANCE(316); END_STATE(); - case 1101: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'c') ADVANCE(1129); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 229: + if (lookahead == 'a') ADVANCE(317); END_STATE(); - case 1102: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(1126); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 230: + if (lookahead == 'e') ADVANCE(318); END_STATE(); - case 1103: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(1109); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 231: + if (lookahead == 'i') ADVANCE(319); END_STATE(); - case 1104: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(1111); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 232: + if (lookahead == 's') ADVANCE(320); END_STATE(); - case 1105: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(1113); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 233: + if (lookahead == 'i') ADVANCE(321); END_STATE(); - case 1106: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(1116); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 234: + if (lookahead == 'r') ADVANCE(322); END_STATE(); - case 1107: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(1080); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 235: + if (lookahead == 'r') ADVANCE(323); END_STATE(); - case 1108: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(1067); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 236: + if (lookahead == 't') ADVANCE(324); END_STATE(); - case 1109: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(1065); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 237: + if (lookahead == 'e') ADVANCE(325); END_STATE(); - case 1110: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(1119); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 238: + if (lookahead == 'o') ADVANCE(326); END_STATE(); - case 1111: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(1120); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 239: + if (lookahead == 'i') ADVANCE(327); END_STATE(); - case 1112: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(1121); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 240: + if (lookahead == 'c') ADVANCE(328); END_STATE(); - case 1113: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(1122); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 241: + if (lookahead == 'c') ADVANCE(329); END_STATE(); - case 1114: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(1073); - if (lookahead == 'n') ADVANCE(1101); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 242: + if (lookahead == 'l') ADVANCE(330); END_STATE(); - case 1115: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(1073); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 243: + ACCEPT_TOKEN(sym_this); END_STATE(); - case 1116: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(1124); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 244: + if (lookahead == 'a') ADVANCE(331); END_STATE(); - case 1117: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(1083); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 245: + if (lookahead == 'w') ADVANCE(332); END_STATE(); - case 1118: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(1076); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 246: + if (lookahead == 'd') ADVANCE(333); + if (lookahead == 'n') ADVANCE(334); END_STATE(); - case 1119: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(1077); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 247: + if (lookahead == 'n') ADVANCE(335); END_STATE(); - case 1120: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(1078); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 248: + if (lookahead == 'g') ADVANCE(336); END_STATE(); - case 1121: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(1086); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 249: + if (lookahead == 'g') ADVANCE(337); END_STATE(); - case 1122: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(1088); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 250: + if (lookahead == 'u') ADVANCE(338); END_STATE(); - case 1123: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(1084); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 251: + if (lookahead == 't') ADVANCE(339); END_STATE(); - case 1124: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(1132); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 252: + if (lookahead == 'e') ADVANCE(340); END_STATE(); - case 1125: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(1117); - if (lookahead == 's') ADVANCE(1107); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 253: + if (lookahead == 'e') ADVANCE(341); END_STATE(); - case 1126: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(1118); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 254: + if (lookahead == 'n') ADVANCE(342); END_STATE(); - case 1127: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(1123); - if (lookahead == 's') ADVANCE(1107); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 255: + if (lookahead == 'i') ADVANCE(343); END_STATE(); - case 1128: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'l') ADVANCE(1125); - if (lookahead == 'n') ADVANCE(1102); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 256: + if (lookahead == 'r') ADVANCE(344); END_STATE(); - case 1129: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'l') ADVANCE(1133); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 257: + if (lookahead == 't') ADVANCE(345); END_STATE(); - case 1130: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'l') ADVANCE(1127); - if (lookahead == 'n') ADVANCE(1102); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 258: + if (lookahead == 'G') ADVANCE(346); END_STATE(); - case 1131: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'n') ADVANCE(1102); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 259: + if (lookahead == 'g') ADVANCE(347); END_STATE(); - case 1132: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'n') ADVANCE(1108); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 260: + if (lookahead == '_') ADVANCE(348); END_STATE(); - case 1133: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'u') ADVANCE(1103); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 261: + if (lookahead == 'r') ADVANCE(349); END_STATE(); - case 1134: - ACCEPT_TOKEN(sym_preproc_directive); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1134); + case 262: + if (lookahead == 'e') ADVANCE(350); END_STATE(); - case 1135: - ACCEPT_TOKEN(anon_sym_LPAREN2); + case 263: + if (lookahead == 'c') ADVANCE(351); END_STATE(); - case 1136: - ACCEPT_TOKEN(anon_sym_BANG); + case 264: + if (lookahead == 'c') ADVANCE(352); END_STATE(); - case 1137: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(1172); + case 265: + if (lookahead == 'l') ADVANCE(353); END_STATE(); - case 1138: - ACCEPT_TOKEN(anon_sym_TILDE); + case 266: + if (lookahead == 'e') ADVANCE(354); END_STATE(); - case 1139: - ACCEPT_TOKEN(anon_sym_DASH); + case 267: + if (lookahead == 'e') ADVANCE(355); END_STATE(); - case 1140: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(1303); - if (lookahead == '.') ADVANCE(1000); - if (lookahead == '0') ADVANCE(1320); - if (lookahead == '=') ADVANCE(1248); - if (lookahead == '>') ADVANCE(1317); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - END_STATE(); - case 1141: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(1303); - if (lookahead == '.') ADVANCE(1000); - if (lookahead == '0') ADVANCE(1320); - if (lookahead == '=') ADVANCE(1248); - if (lookahead == '>') ADVANCE(1316); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); - END_STATE(); - case 1142: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(1303); - if (lookahead == '.') ADVANCE(1000); - if (lookahead == '0') ADVANCE(1320); - if (lookahead == '>') ADVANCE(1316); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); + case 268: + if (lookahead == 't') ADVANCE(356); END_STATE(); - case 1143: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(1303); - if (lookahead == '.') ADVANCE(1000); - if (lookahead == '0') ADVANCE(1320); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); + case 269: + if (lookahead == 'a') ADVANCE(357); END_STATE(); - case 1144: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(1303); - if (lookahead == '=') ADVANCE(1248); - if (lookahead == '>') ADVANCE(1317); + case 270: + if (lookahead == 'c') ADVANCE(358); END_STATE(); - case 1145: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(1303); - if (lookahead == '=') ADVANCE(1248); - if (lookahead == '>') ADVANCE(1316); + case 271: + if (lookahead == 'i') ADVANCE(359); END_STATE(); - case 1146: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(1303); - if (lookahead == '>') ADVANCE(1316); + case 272: + if (lookahead == 'v') ADVANCE(360); END_STATE(); - case 1147: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(1000); - if (lookahead == '0') ADVANCE(1320); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); + case 273: + if (lookahead == 't') ADVANCE(361); END_STATE(); - case 1148: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(1248); - if (lookahead == '>') ADVANCE(738); + case 274: + if (lookahead == 'r') ADVANCE(362); END_STATE(); - case 1149: - ACCEPT_TOKEN(anon_sym_PLUS); + case 275: + if (lookahead == 'c') ADVANCE(363); END_STATE(); - case 1150: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(1304); + case 276: + if (lookahead == 's') ADVANCE(364); END_STATE(); - case 1151: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(1304); - if (lookahead == '.') ADVANCE(1000); - if (lookahead == '0') ADVANCE(1320); - if (lookahead == '=') ADVANCE(1247); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); + case 277: + if (lookahead == 'e') ADVANCE(365); END_STATE(); - case 1152: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(1304); - if (lookahead == '.') ADVANCE(1000); - if (lookahead == '0') ADVANCE(1320); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); + case 278: + ACCEPT_TOKEN(anon_sym___try); END_STATE(); - case 1153: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(1304); - if (lookahead == '=') ADVANCE(1247); + case 279: + if (lookahead == 'l') ADVANCE(366); END_STATE(); - case 1154: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(1000); - if (lookahead == '0') ADVANCE(1320); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); + case 280: + if (lookahead == 'r') ADVANCE(367); END_STATE(); - case 1155: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(1247); + case 281: + if (lookahead == 't') ADVANCE(368); END_STATE(); - case 1156: - ACCEPT_TOKEN(anon_sym_STAR); + case 282: + if (lookahead == 'n') ADVANCE(369); END_STATE(); - case 1157: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(1244); + case 283: + if (lookahead == 'i') ADVANCE(370); END_STATE(); - case 1158: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(740); - if (lookahead == '/') ADVANCE(1679); + case 284: + if (lookahead == 'a') ADVANCE(371); + if (lookahead == 'o') ADVANCE(372); END_STATE(); - case 1159: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(740); - if (lookahead == '/') ADVANCE(1679); - if (lookahead == '=') ADVANCE(1245); + case 285: + if (lookahead == 'q') ADVANCE(373); END_STATE(); - case 1160: - ACCEPT_TOKEN(anon_sym_PERCENT); + case 286: + if (lookahead == 'd') ADVANCE(374); END_STATE(); - case 1161: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(1246); + case 287: + ACCEPT_TOKEN(anon_sym_bitor); END_STATE(); - case 1162: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + case 288: + ACCEPT_TOKEN(anon_sym_break); END_STATE(); - case 1163: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + case 289: + ACCEPT_TOKEN(anon_sym_catch); END_STATE(); - case 1164: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(1253); - if (lookahead == '|') ADVANCE(1162); + case 290: + ACCEPT_TOKEN(anon_sym_class); END_STATE(); - case 1165: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(1162); + case 291: + if (lookahead == 'a') ADVANCE(375); END_STATE(); - case 1166: - ACCEPT_TOKEN(anon_sym_CARET); + case 292: + if (lookahead == 't') ADVANCE(376); END_STATE(); - case 1167: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(1252); + case 293: + if (lookahead == 'e') ADVANCE(377); END_STATE(); - case 1168: - ACCEPT_TOKEN(anon_sym_AMP); + case 294: + ACCEPT_TOKEN(anon_sym_compl); END_STATE(); - case 1169: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(1163); + case 295: + if (lookahead == 'p') ADVANCE(378); END_STATE(); - case 1170: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(1163); - if (lookahead == '=') ADVANCE(1251); + case 296: + ACCEPT_TOKEN(anon_sym_const); + if (lookahead == 'e') ADVANCE(379); + if (lookahead == 'i') ADVANCE(380); END_STATE(); - case 1171: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + case 297: + if (lookahead == 'n') ADVANCE(381); END_STATE(); - case 1172: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + case 298: + if (lookahead == 'y') ADVANCE(382); END_STATE(); - case 1173: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(1175); - if (lookahead == '>') ADVANCE(1188); + case 299: + if (lookahead == 'l') ADVANCE(383); END_STATE(); - case 1174: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(1175); - if (lookahead == '>') ADVANCE(1189); + case 300: + if (lookahead == 'e') ADVANCE(384); END_STATE(); - case 1175: - ACCEPT_TOKEN(anon_sym_GT_EQ); + case 301: + if (lookahead == 'e') ADVANCE(385); END_STATE(); - case 1176: - ACCEPT_TOKEN(anon_sym_LT_EQ); + case 302: + if (lookahead == 'c') ADVANCE(386); END_STATE(); - case 1177: - ACCEPT_TOKEN(anon_sym_LT_EQ); - if (lookahead == '>') ADVANCE(1266); + case 303: + if (lookahead == 'n') ADVANCE(387); END_STATE(); - case 1178: - ACCEPT_TOKEN(anon_sym_LT); + case 304: + ACCEPT_TOKEN(anon_sym_final); END_STATE(); - case 1179: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '.') ADVANCE(750); + case 305: + if (lookahead == 'd') ADVANCE(388); END_STATE(); - case 1180: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '.') ADVANCE(750); - if (lookahead == '<') ADVANCE(1187); - if (lookahead == '=') ADVANCE(1177); + case 306: + if (lookahead == 'e') ADVANCE(389); END_STATE(); - case 1181: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '.') ADVANCE(750); - if (lookahead == '<') ADVANCE(1186); - if (lookahead == '=') ADVANCE(1177); + case 307: + if (lookahead == 'l') ADVANCE(390); END_STATE(); - case 1182: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(1187); - if (lookahead == '=') ADVANCE(1177); + case 308: + if (lookahead == 'p') ADVANCE(391); END_STATE(); - case 1183: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(1187); - if (lookahead == '=') ADVANCE(1176); + case 309: + if (lookahead == 'e') ADVANCE(392); END_STATE(); - case 1184: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(1186); - if (lookahead == '=') ADVANCE(1177); + case 310: + if (lookahead == 'u') ADVANCE(393); END_STATE(); - case 1185: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(1186); - if (lookahead == '=') ADVANCE(1176); + case 311: + if (lookahead == 'q') ADVANCE(394); END_STATE(); - case 1186: - ACCEPT_TOKEN(anon_sym_LT_LT); + case 312: + if (lookahead == 't') ADVANCE(395); END_STATE(); - case 1187: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(1249); + case 313: + if (lookahead == 't') ADVANCE(396); END_STATE(); - case 1188: - ACCEPT_TOKEN(anon_sym_GT_GT); + case 314: + if (lookahead == 't') ADVANCE(397); END_STATE(); - case 1189: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(1250); + case 315: + ACCEPT_TOKEN(anon_sym_or_eq); END_STATE(); - case 1190: - ACCEPT_TOKEN(anon_sym_SEMI); + case 316: + if (lookahead == 'i') ADVANCE(398); END_STATE(); - case 1191: - ACCEPT_TOKEN(anon_sym___extension__); + case 317: + if (lookahead == 't') ADVANCE(399); END_STATE(); - case 1192: - ACCEPT_TOKEN(anon_sym___extension__); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 318: + if (lookahead == 'c') ADVANCE(400); END_STATE(); - case 1193: - ACCEPT_TOKEN(anon_sym___attribute__); + case 319: + if (lookahead == 'c') ADVANCE(401); END_STATE(); - case 1194: - ACCEPT_TOKEN(anon_sym___attribute__); - if (lookahead == '\\') ADVANCE(770); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 320: + if (lookahead == 't') ADVANCE(402); END_STATE(); - case 1195: - ACCEPT_TOKEN(anon_sym___attribute__); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 321: + if (lookahead == 'r') ADVANCE(403); END_STATE(); - case 1196: - ACCEPT_TOKEN(anon_sym___attribute__); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); + case 322: + if (lookahead == 'i') ADVANCE(404); END_STATE(); - case 1197: - ACCEPT_TOKEN(anon_sym_COLON_COLON); + case 323: + if (lookahead == 'n') ADVANCE(405); END_STATE(); - case 1198: - ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); + case 324: + ACCEPT_TOKEN(anon_sym_short); END_STATE(); - case 1199: - ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); + case 325: + if (lookahead == 'd') ADVANCE(406); END_STATE(); - case 1200: - ACCEPT_TOKEN(anon_sym_LBRACE); + case 326: + if (lookahead == 'f') ADVANCE(407); END_STATE(); - case 1201: - ACCEPT_TOKEN(anon_sym_RBRACE); + case 327: + if (lookahead == 'c') ADVANCE(408); END_STATE(); - case 1202: - ACCEPT_TOKEN(anon_sym_signed); + case 328: + if (lookahead == 't') ADVANCE(409); END_STATE(); - case 1203: - ACCEPT_TOKEN(anon_sym_signed); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 329: + if (lookahead == 'h') ADVANCE(410); END_STATE(); - case 1204: - ACCEPT_TOKEN(anon_sym_unsigned); + case 330: + if (lookahead == 'a') ADVANCE(411); END_STATE(); - case 1205: - ACCEPT_TOKEN(anon_sym_unsigned); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 331: + if (lookahead == 'd') ADVANCE(412); END_STATE(); - case 1206: - ACCEPT_TOKEN(anon_sym_long); + case 332: + ACCEPT_TOKEN(anon_sym_throw); END_STATE(); - case 1207: - ACCEPT_TOKEN(anon_sym_long); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 333: + if (lookahead == 'e') ADVANCE(413); END_STATE(); - case 1208: - ACCEPT_TOKEN(anon_sym_short); + case 334: + if (lookahead == 'a') ADVANCE(414); END_STATE(); - case 1209: - ACCEPT_TOKEN(anon_sym_short); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 335: + ACCEPT_TOKEN(anon_sym_union); END_STATE(); - case 1210: - ACCEPT_TOKEN(anon_sym_LBRACK); + case 336: + if (lookahead == 'n') ADVANCE(415); END_STATE(); - case 1211: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '[') ADVANCE(1198); + case 337: + ACCEPT_TOKEN(anon_sym_using); END_STATE(); - case 1212: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '[') ADVANCE(1198); - if (lookahead == ']') ADVANCE(1703); + case 338: + if (lookahead == 'a') ADVANCE(416); END_STATE(); - case 1213: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == ']') ADVANCE(1703); + case 339: + if (lookahead == 'i') ADVANCE(417); END_STATE(); - case 1214: - ACCEPT_TOKEN(anon_sym_RBRACK); + case 340: + ACCEPT_TOKEN(anon_sym_while); END_STATE(); - case 1215: - ACCEPT_TOKEN(anon_sym_EQ); + case 341: + if (lookahead == 'q') ADVANCE(418); END_STATE(); - case 1216: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(1171); + case 342: + if (lookahead == 'o') ADVANCE(419); END_STATE(); - case 1217: - ACCEPT_TOKEN(anon_sym_const); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'e') ADVANCE(1663); - if (lookahead == 'i') ADVANCE(1550); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 343: + if (lookahead == 'c') ADVANCE(420); END_STATE(); - case 1218: - ACCEPT_TOKEN(anon_sym_const); - if (lookahead == 'e') ADVANCE(988); - if (lookahead == 'i') ADVANCE(903); + case 344: + if (lookahead == 'i') ADVANCE(421); END_STATE(); - case 1219: - ACCEPT_TOKEN(anon_sym_constexpr); + case 345: + if (lookahead == 'u') ADVANCE(422); END_STATE(); - case 1220: - ACCEPT_TOKEN(anon_sym_constexpr); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 346: + if (lookahead == 'R') ADVANCE(423); END_STATE(); - case 1221: - ACCEPT_TOKEN(anon_sym_volatile); + case 347: + if (lookahead == 'n') ADVANCE(424); END_STATE(); - case 1222: - ACCEPT_TOKEN(anon_sym_volatile); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 348: + if (lookahead == '_') ADVANCE(425); END_STATE(); - case 1223: - ACCEPT_TOKEN(anon_sym_restrict); + case 349: + if (lookahead == 'i') ADVANCE(426); END_STATE(); - case 1224: - ACCEPT_TOKEN(anon_sym_restrict); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 350: + if (lookahead == 'd') ADVANCE(427); END_STATE(); - case 1225: - ACCEPT_TOKEN(anon_sym___restrict__); + case 351: + if (lookahead == 'l') ADVANCE(428); END_STATE(); - case 1226: - ACCEPT_TOKEN(anon_sym___restrict__); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 352: + if (lookahead == 'a') ADVANCE(429); END_STATE(); - case 1227: - ACCEPT_TOKEN(anon_sym__Atomic); + case 353: + if (lookahead == 's') ADVANCE(430); END_STATE(); - case 1228: - ACCEPT_TOKEN(anon_sym__Atomic); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 354: + if (lookahead == 'p') ADVANCE(431); END_STATE(); - case 1229: - ACCEPT_TOKEN(anon_sym__Noreturn); + case 355: + if (lookahead == 'n') ADVANCE(432); END_STATE(); - case 1230: - ACCEPT_TOKEN(anon_sym__Noreturn); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 356: + if (lookahead == 'c') ADVANCE(433); END_STATE(); - case 1231: - ACCEPT_TOKEN(anon_sym_noreturn); + case 357: + if (lookahead == 'l') ADVANCE(434); END_STATE(); - case 1232: - ACCEPT_TOKEN(anon_sym_noreturn); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 358: + if (lookahead == 'e') ADVANCE(435); END_STATE(); - case 1233: - ACCEPT_TOKEN(anon_sym_mutable); + case 359: + if (lookahead == 'n') ADVANCE(436); END_STATE(); - case 1234: - ACCEPT_TOKEN(anon_sym_mutable); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 360: + if (lookahead == 'e') ADVANCE(437); END_STATE(); - case 1235: - ACCEPT_TOKEN(anon_sym_constinit); + case 361: + if (lookahead == 'r') ADVANCE(438); END_STATE(); - case 1236: - ACCEPT_TOKEN(anon_sym_constinit); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 362: + ACCEPT_TOKEN(sym_ms_signed_ptr_modifier); END_STATE(); - case 1237: - ACCEPT_TOKEN(anon_sym_consteval); + case 363: + if (lookahead == 'a') ADVANCE(439); END_STATE(); - case 1238: - ACCEPT_TOKEN(anon_sym_consteval); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 364: + if (lookahead == 'c') ADVANCE(440); END_STATE(); - case 1239: - ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == '1') ADVANCE(1388); - if (lookahead == '3') ADVANCE(1386); - if (lookahead == '6') ADVANCE(1387); - if (lookahead == '8') ADVANCE(1411); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'p') ADVANCE(1646); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1240: - ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 365: + if (lookahead == 'a') ADVANCE(441); END_STATE(); - case 1241: - ACCEPT_TOKEN(anon_sym_COLON); + case 366: + if (lookahead == 'i') ADVANCE(442); END_STATE(); - case 1242: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(1197); + case 367: + ACCEPT_TOKEN(sym_ms_unsigned_ptr_modifier); END_STATE(); - case 1243: - ACCEPT_TOKEN(anon_sym_QMARK); + case 368: + if (lookahead == 'o') ADVANCE(443); END_STATE(); - case 1244: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + case 369: + if (lookahead == 'o') ADVANCE(444); END_STATE(); - case 1245: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + case 370: + if (lookahead == 'g') ADVANCE(445); END_STATE(); - case 1246: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + case 371: + if (lookahead == 's') ADVANCE(446); END_STATE(); - case 1247: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + case 372: + if (lookahead == 'f') ADVANCE(447); END_STATE(); - case 1248: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + case 373: + ACCEPT_TOKEN(anon_sym_and_eq); END_STATE(); - case 1249: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + case 374: + ACCEPT_TOKEN(anon_sym_bitand); END_STATE(); - case 1250: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + case 375: + if (lookahead == 'i') ADVANCE(448); END_STATE(); - case 1251: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + case 376: + if (lookahead == 'u') ADVANCE(449); END_STATE(); - case 1252: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + case 377: + if (lookahead == 'l') ADVANCE(450); END_STATE(); - case 1253: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + case 378: + if (lookahead == 't') ADVANCE(451); END_STATE(); - case 1254: - ACCEPT_TOKEN(anon_sym_and_eq); + case 379: + if (lookahead == 'v') ADVANCE(452); + if (lookahead == 'x') ADVANCE(453); END_STATE(); - case 1255: - ACCEPT_TOKEN(anon_sym_and_eq); - if (lookahead == '\\') ADVANCE(770); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 380: + if (lookahead == 'n') ADVANCE(454); END_STATE(); - case 1256: - ACCEPT_TOKEN(anon_sym_and_eq); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 381: + if (lookahead == 'u') ADVANCE(455); END_STATE(); - case 1257: - ACCEPT_TOKEN(anon_sym_and_eq); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); + case 382: + if (lookahead == 'p') ADVANCE(456); END_STATE(); - case 1258: - ACCEPT_TOKEN(anon_sym_or_eq); + case 383: + if (lookahead == 't') ADVANCE(457); END_STATE(); - case 1259: - ACCEPT_TOKEN(anon_sym_or_eq); - if (lookahead == '\\') ADVANCE(770); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 384: + if (lookahead == 'd') ADVANCE(458); END_STATE(); - case 1260: - ACCEPT_TOKEN(anon_sym_or_eq); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 385: + ACCEPT_TOKEN(anon_sym_delete); END_STATE(); - case 1261: - ACCEPT_TOKEN(anon_sym_or_eq); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); + case 386: + if (lookahead == 'i') ADVANCE(459); END_STATE(); - case 1262: - ACCEPT_TOKEN(anon_sym_xor_eq); + case 387: + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); - case 1263: - ACCEPT_TOKEN(anon_sym_xor_eq); - if (lookahead == '\\') ADVANCE(770); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 388: + ACCEPT_TOKEN(anon_sym_friend); END_STATE(); - case 1264: - ACCEPT_TOKEN(anon_sym_xor_eq); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 389: + ACCEPT_TOKEN(anon_sym_inline); END_STATE(); - case 1265: - ACCEPT_TOKEN(anon_sym_xor_eq); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); + case 390: + if (lookahead == 'e') ADVANCE(460); END_STATE(); - case 1266: - ACCEPT_TOKEN(anon_sym_LT_EQ_GT); + case 391: + if (lookahead == 'a') ADVANCE(461); END_STATE(); - case 1267: - ACCEPT_TOKEN(anon_sym_or); + case 392: + if (lookahead == 'p') ADVANCE(462); END_STATE(); - case 1268: - ACCEPT_TOKEN(anon_sym_or); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == '_') ADVANCE(1733); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 393: + if (lookahead == 'r') ADVANCE(463); END_STATE(); - case 1269: - ACCEPT_TOKEN(anon_sym_or); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == '_') ADVANCE(1456); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 394: + ACCEPT_TOKEN(anon_sym_not_eq); END_STATE(); - case 1270: - ACCEPT_TOKEN(anon_sym_or); - if (lookahead == '\\') ADVANCE(770); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 395: + if (lookahead == 'r') ADVANCE(464); END_STATE(); - case 1271: - ACCEPT_TOKEN(anon_sym_or); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 396: + if (lookahead == 'o') ADVANCE(465); END_STATE(); - case 1272: - ACCEPT_TOKEN(anon_sym_or); - if (lookahead == '_') ADVANCE(1773); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); + case 397: + if (lookahead == 'o') ADVANCE(466); END_STATE(); - case 1273: - ACCEPT_TOKEN(anon_sym_or); - if (lookahead == '_') ADVANCE(825); + case 398: + if (lookahead == 'd') ADVANCE(467); END_STATE(); - case 1274: - ACCEPT_TOKEN(anon_sym_or); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); + case 399: + if (lookahead == 'e') ADVANCE(468); END_STATE(); - case 1275: - ACCEPT_TOKEN(anon_sym_and); + case 400: + if (lookahead == 't') ADVANCE(469); END_STATE(); - case 1276: - ACCEPT_TOKEN(anon_sym_and); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == '_') ADVANCE(1463); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 401: + ACCEPT_TOKEN(anon_sym_public); END_STATE(); - case 1277: - ACCEPT_TOKEN(anon_sym_and); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == '_') ADVANCE(1734); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 402: + if (lookahead == 'e') ADVANCE(470); END_STATE(); - case 1278: - ACCEPT_TOKEN(anon_sym_and); - if (lookahead == '\\') ADVANCE(770); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 403: + if (lookahead == 'e') ADVANCE(471); END_STATE(); - case 1279: - ACCEPT_TOKEN(anon_sym_and); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 404: + if (lookahead == 'c') ADVANCE(472); END_STATE(); - case 1280: - ACCEPT_TOKEN(anon_sym_and); - if (lookahead == '_') ADVANCE(834); + case 405: + ACCEPT_TOKEN(anon_sym_return); END_STATE(); - case 1281: - ACCEPT_TOKEN(anon_sym_and); - if (lookahead == '_') ADVANCE(1774); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); + case 406: + ACCEPT_TOKEN(anon_sym_signed); END_STATE(); - case 1282: - ACCEPT_TOKEN(anon_sym_and); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); + case 407: + ACCEPT_TOKEN(anon_sym_sizeof); END_STATE(); - case 1283: - ACCEPT_TOKEN(anon_sym_bitor); + case 408: + ACCEPT_TOKEN(anon_sym_static); + if (lookahead == '_') ADVANCE(473); END_STATE(); - case 1284: - ACCEPT_TOKEN(anon_sym_bitor); - if (lookahead == '\\') ADVANCE(770); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 409: + ACCEPT_TOKEN(anon_sym_struct); END_STATE(); - case 1285: - ACCEPT_TOKEN(anon_sym_bitor); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 410: + ACCEPT_TOKEN(anon_sym_switch); END_STATE(); - case 1286: - ACCEPT_TOKEN(anon_sym_bitor); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); + case 411: + if (lookahead == 't') ADVANCE(474); END_STATE(); - case 1287: - ACCEPT_TOKEN(anon_sym_xor); + case 412: + if (lookahead == '_') ADVANCE(475); END_STATE(); - case 1288: - ACCEPT_TOKEN(anon_sym_xor); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == '_') ADVANCE(1471); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 413: + if (lookahead == 'f') ADVANCE(476); END_STATE(); - case 1289: - ACCEPT_TOKEN(anon_sym_xor); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == '_') ADVANCE(1737); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 414: + if (lookahead == 'm') ADVANCE(477); END_STATE(); - case 1290: - ACCEPT_TOKEN(anon_sym_xor); - if (lookahead == '\\') ADVANCE(770); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 415: + if (lookahead == 'e') ADVANCE(478); END_STATE(); - case 1291: - ACCEPT_TOKEN(anon_sym_xor); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 416: + if (lookahead == 'l') ADVANCE(479); END_STATE(); - case 1292: - ACCEPT_TOKEN(anon_sym_xor); - if (lookahead == '_') ADVANCE(839); + case 417: + if (lookahead == 'l') ADVANCE(480); END_STATE(); - case 1293: - ACCEPT_TOKEN(anon_sym_xor); - if (lookahead == '_') ADVANCE(1777); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); + case 418: + ACCEPT_TOKEN(anon_sym_xor_eq); END_STATE(); - case 1294: - ACCEPT_TOKEN(anon_sym_xor); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); + case 419: + if (lookahead == 'f') ADVANCE(481); END_STATE(); - case 1295: - ACCEPT_TOKEN(anon_sym_bitand); + case 420: + ACCEPT_TOKEN(anon_sym__Atomic); END_STATE(); - case 1296: - ACCEPT_TOKEN(anon_sym_bitand); - if (lookahead == '\\') ADVANCE(770); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 421: + if (lookahead == 'c') ADVANCE(482); END_STATE(); - case 1297: - ACCEPT_TOKEN(anon_sym_bitand); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 422: + if (lookahead == 'r') ADVANCE(483); END_STATE(); - case 1298: - ACCEPT_TOKEN(anon_sym_bitand); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); + case 423: + if (lookahead == 'E') ADVANCE(484); END_STATE(); - case 1299: - ACCEPT_TOKEN(anon_sym_not_eq); + case 424: + if (lookahead == 'o') ADVANCE(485); END_STATE(); - case 1300: - ACCEPT_TOKEN(anon_sym_not_eq); - if (lookahead == '\\') ADVANCE(770); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 425: + ACCEPT_TOKEN(anon_sym___asm__); END_STATE(); - case 1301: - ACCEPT_TOKEN(anon_sym_not_eq); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 426: + if (lookahead == 'b') ADVANCE(486); END_STATE(); - case 1302: - ACCEPT_TOKEN(anon_sym_not_eq); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); + case 427: + ACCEPT_TOKEN(anon_sym___based); END_STATE(); - case 1303: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + case 428: + ACCEPT_TOKEN(anon_sym___cdecl); END_STATE(); - case 1304: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + case 429: + if (lookahead == 'l') ADVANCE(487); END_STATE(); - case 1305: - ACCEPT_TOKEN(anon_sym_asm); + case 430: + if (lookahead == 'p') ADVANCE(488); END_STATE(); - case 1306: - ACCEPT_TOKEN(anon_sym_asm); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 431: + if (lookahead == 't') ADVANCE(489); END_STATE(); - case 1307: - ACCEPT_TOKEN(anon_sym___asm__); + case 432: + if (lookahead == 's') ADVANCE(490); END_STATE(); - case 1308: - ACCEPT_TOKEN(anon_sym___asm__); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 433: + if (lookahead == 'a') ADVANCE(491); END_STATE(); - case 1309: - ACCEPT_TOKEN(anon_sym_DOT); + case 434: + if (lookahead == 'l') ADVANCE(492); END_STATE(); - case 1310: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '*') ADVANCE(1315); - if (lookahead == '.') ADVANCE(744); + case 435: + if (lookahead == 'i') ADVANCE(493); END_STATE(); - case 1311: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '*') ADVANCE(1315); - if (lookahead == '.') ADVANCE(744); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1319); + case 436: + if (lookahead == 'e') ADVANCE(494); END_STATE(); - case 1312: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '*') ADVANCE(1315); - if (lookahead == '.') ADVANCE(747); + case 437: + ACCEPT_TOKEN(anon_sym___leave); END_STATE(); - case 1313: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '*') ADVANCE(1315); - if (lookahead == '.') ADVANCE(747); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1319); + case 438: + if (lookahead == 'i') ADVANCE(495); END_STATE(); - case 1314: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(747); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1319); + case 439: + if (lookahead == 'l') ADVANCE(496); END_STATE(); - case 1315: - ACCEPT_TOKEN(anon_sym_DOT_STAR); - END_STATE(); - case 1316: - ACCEPT_TOKEN(anon_sym_DASH_GT); - END_STATE(); - case 1317: - ACCEPT_TOKEN(anon_sym_DASH_GT); - if (lookahead == '*') ADVANCE(1701); - END_STATE(); - case 1318: - ACCEPT_TOKEN(sym_number_literal); - END_STATE(); - case 1319: - ACCEPT_TOKEN(sym_number_literal); - ADVANCE_MAP( - '\'', 1000, - 'B', 769, - 'b', 851, - 'E', 995, - 'e', 995, - 'F', 1326, - 'f', 1326, - 'L', 1318, - 'l', 1318, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1319); - END_STATE(); - case 1320: - ACCEPT_TOKEN(sym_number_literal); - ADVANCE_MAP( - '\'', 998, - '.', 1327, - 'L', 1328, - 'l', 1331, - 'B', 997, - 'b', 997, - 'E', 995, - 'e', 995, - 'U', 1330, - 'u', 1330, - 'X', 748, - 'x', 748, - 'Z', 1333, - 'z', 1333, - '8', 733, - '9', 733, - ); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(1321); - END_STATE(); - case 1321: - ACCEPT_TOKEN(sym_number_literal); - ADVANCE_MAP( - '\'', 998, - '.', 1327, - 'L', 1328, - 'l', 1331, - 'E', 995, - 'e', 995, - 'U', 1330, - 'u', 1330, - 'Z', 1333, - 'z', 1333, - '8', 733, - '9', 733, - ); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(1321); - END_STATE(); - case 1322: - ACCEPT_TOKEN(sym_number_literal); - ADVANCE_MAP( - '\'', 997, - 'L', 1328, - 'l', 1331, - 'U', 1330, - 'u', 1330, - 'Z', 1333, - 'z', 1333, - '0', 1322, - '1', 1322, - ); - END_STATE(); - case 1323: - ACCEPT_TOKEN(sym_number_literal); - ADVANCE_MAP( - '\'', 999, - '.', 1327, - 'L', 1328, - 'l', 1331, - 'E', 995, - 'e', 995, - 'U', 1330, - 'u', 1330, - 'Z', 1333, - 'z', 1333, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1323); - END_STATE(); - case 1324: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(1002); - if (lookahead == 'B') ADVANCE(769); - if (lookahead == 'b') ADVANCE(851); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1326); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1318); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1324); - END_STATE(); - case 1325: - ACCEPT_TOKEN(sym_number_literal); - ADVANCE_MAP( - '\'', 1004, - '.', 996, - 'L', 1328, - 'l', 1331, - 'P', 995, - 'p', 995, - 'U', 1330, - 'u', 1330, - 'Z', 1333, - 'z', 1333, - ); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1325); - END_STATE(); - case 1326: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '1') ADVANCE(757); - if (lookahead == '3') ADVANCE(756); - if (lookahead == '6') ADVANCE(758); - END_STATE(); - case 1327: - ACCEPT_TOKEN(sym_number_literal); - ADVANCE_MAP( - 'B', 769, - 'b', 851, - 'E', 995, - 'e', 995, - 'F', 1326, - 'f', 1326, - 'L', 1318, - 'l', 1318, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1319); - END_STATE(); - case 1328: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == 'L') ADVANCE(1333); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1318); - END_STATE(); - case 1329: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == 'L') ADVANCE(1318); - END_STATE(); - case 1330: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == 'L') ADVANCE(1329); - if (lookahead == 'l') ADVANCE(1332); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1318); - END_STATE(); - case 1331: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == 'l') ADVANCE(1333); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1318); - END_STATE(); - case 1332: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == 'l') ADVANCE(1318); - END_STATE(); - case 1333: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1318); - END_STATE(); - case 1334: - ACCEPT_TOKEN(anon_sym_L_SQUOTE); - END_STATE(); - case 1335: - ACCEPT_TOKEN(anon_sym_u_SQUOTE); - END_STATE(); - case 1336: - ACCEPT_TOKEN(anon_sym_U_SQUOTE); - END_STATE(); - case 1337: - ACCEPT_TOKEN(anon_sym_u8_SQUOTE); - END_STATE(); - case 1338: - ACCEPT_TOKEN(anon_sym_SQUOTE); - END_STATE(); - case 1339: - ACCEPT_TOKEN(aux_sym_char_literal_token1); - END_STATE(); - case 1340: - ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\n') ADVANCE(1354); - if (lookahead == '\r') ADVANCE(1353); - if (lookahead == 'U') ADVANCE(1020); - if (lookahead == 'u') ADVANCE(1012); - if (lookahead == 'x') ADVANCE(1008); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1356); - if (lookahead != 0) ADVANCE(1353); - END_STATE(); - case 1341: - ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '*') ADVANCE(740); - if (lookahead == '/') ADVANCE(1679); - END_STATE(); - case 1342: - ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\\') ADVANCE(287); - END_STATE(); - case 1343: - ACCEPT_TOKEN(anon_sym_L_DQUOTE); - END_STATE(); - case 1344: - ACCEPT_TOKEN(anon_sym_u_DQUOTE); - END_STATE(); - case 1345: - ACCEPT_TOKEN(anon_sym_U_DQUOTE); - END_STATE(); - case 1346: - ACCEPT_TOKEN(anon_sym_u8_DQUOTE); - END_STATE(); - case 1347: - ACCEPT_TOKEN(anon_sym_DQUOTE); - END_STATE(); - case 1348: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(1350); - if (lookahead == '/') ADVANCE(1352); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"' && - lookahead != '\\') ADVANCE(1352); - END_STATE(); - case 1349: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(1349); - if (lookahead == '/') ADVANCE(1352); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"' && - lookahead != '\\') ADVANCE(1350); - END_STATE(); - case 1350: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(1349); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"' && - lookahead != '\\') ADVANCE(1350); - END_STATE(); - case 1351: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '/') ADVANCE(1348); - if (lookahead == '\t' || - (0x0b <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1351); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != '"' && - lookahead != '\\') ADVANCE(1352); - END_STATE(); - case 1352: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"' && - lookahead != '\\') ADVANCE(1352); - END_STATE(); - case 1353: - ACCEPT_TOKEN(sym_escape_sequence); - END_STATE(); - case 1354: - ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(287); - END_STATE(); - case 1355: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1353); - END_STATE(); - case 1356: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1355); - END_STATE(); - case 1357: - ACCEPT_TOKEN(sym_system_lib_string); - END_STATE(); - case 1358: - ACCEPT_TOKEN(sym_system_lib_string); - if (lookahead == '>') ADVANCE(1357); - if (lookahead == '\\') ADVANCE(766); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(765); - END_STATE(); - case 1359: - ACCEPT_TOKEN(sym_true); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1360: - ACCEPT_TOKEN(sym_false); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1361: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(1343); - if (lookahead == '\'') ADVANCE(1334); - if (lookahead == 'R') ADVANCE(1374); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1362: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(1343); - if (lookahead == 'R') ADVANCE(1374); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1363: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(1343); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1364: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(1694); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1365: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(1345); - if (lookahead == '\'') ADVANCE(1336); - if (lookahead == 'R') ADVANCE(1375); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1366: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(1345); - if (lookahead == 'R') ADVANCE(1375); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1367: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(1345); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1368: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(1344); - if (lookahead == '\'') ADVANCE(1335); - if (lookahead == '8') ADVANCE(1376); - if (lookahead == 'R') ADVANCE(1379); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'i') ADVANCE(1545); - if (lookahead == 'n') ADVANCE(1619); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1369: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(1344); - if (lookahead == '\'') ADVANCE(1335); - if (lookahead == '8') ADVANCE(1376); - if (lookahead == 'R') ADVANCE(1379); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'i') ADVANCE(1545); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1370: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(1344); - if (lookahead == '8') ADVANCE(1377); - if (lookahead == 'R') ADVANCE(1379); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'n') ADVANCE(1619); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1371: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(1344); - if (lookahead == '8') ADVANCE(1377); - if (lookahead == 'R') ADVANCE(1379); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1372: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(1344); - if (lookahead == '8') ADVANCE(1378); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'i') ADVANCE(1545); - if (lookahead == 'n') ADVANCE(1619); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1373: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(1344); - if (lookahead == '8') ADVANCE(1378); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1374: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(1695); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1375: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(1697); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1376: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(1346); - if (lookahead == '\'') ADVANCE(1337); - if (lookahead == 'R') ADVANCE(1380); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1377: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(1346); - if (lookahead == 'R') ADVANCE(1380); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1378: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(1346); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1379: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(1696); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1380: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(1698); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1381: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(1334); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1382: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(1336); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1383: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(1335); - if (lookahead == '8') ADVANCE(1384); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1384: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(1337); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1385: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '1') ADVANCE(1388); - if (lookahead == '3') ADVANCE(1386); - if (lookahead == '6') ADVANCE(1387); - if (lookahead == '8') ADVANCE(1411); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'p') ADVANCE(1646); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1386: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '2') ADVANCE(1411); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1387: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '4') ADVANCE(1411); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1388: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '6') ADVANCE(1411); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1389: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(1396); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1390: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(1641); - if (lookahead == 'N') ADVANCE(1569); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == '_') ADVANCE(1420); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1391: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(1641); - if (lookahead == 'N') ADVANCE(1569); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == '_') ADVANCE(1462); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1392: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(1641); - if (lookahead == 'N') ADVANCE(1569); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == '_') ADVANCE(1424); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1393: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(1641); - if (lookahead == 'N') ADVANCE(1569); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == '_') ADVANCE(1432); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1394: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(1359); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1395: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(1360); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1396: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(1398); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1397: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(1399); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1398: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S') ADVANCE(1395); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1399: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U') ADVANCE(1394); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1400: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == '_') ADVANCE(1308); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1401: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == '_') ADVANCE(1226); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1402: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == '_') ADVANCE(1195); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1403: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == '_') ADVANCE(1192); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1404: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == '_') ADVANCE(1425); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1405: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == '_') ADVANCE(1400); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1406: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == '_') ADVANCE(1426); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1407: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == '_') ADVANCE(1401); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1408: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == '_') ADVANCE(1421); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1409: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == '_') ADVANCE(1402); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1410: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == '_') ADVANCE(1403); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1411: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == '_') ADVANCE(1630); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1412: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == '_') ADVANCE(1469); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1413: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == '_') ADVANCE(1428); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1414: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == '_') ADVANCE(1433); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1415: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'a') ADVANCE(1520); - if (lookahead == 'i') ADVANCE(1540); - if (lookahead == 'l') ADVANCE(1564); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1416: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'a') ADVANCE(1520); - if (lookahead == 'l') ADVANCE(1564); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1417: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'a') ADVANCE(1520); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1418: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'a') ADVANCE(1665); - if (lookahead == 'u') ADVANCE(1639); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1419: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'a') ADVANCE(1665); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1420: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'a') ADVANCE(1620); - if (lookahead == 'e') ADVANCE(1667); - if (lookahead == 'r') ADVANCE(1470); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1421: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'a') ADVANCE(1620); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1422: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'a') ADVANCE(1593); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1423: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'a') ADVANCE(1544); - if (lookahead == 'o') ADVANCE(1595); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1424: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'a') ADVANCE(1621); - if (lookahead == 'e') ADVANCE(1667); - if (lookahead == 'r') ADVANCE(1470); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1425: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'a') ADVANCE(1621); - if (lookahead == 'e') ADVANCE(1667); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1426: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'a') ADVANCE(1621); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1427: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'a') ADVANCE(1518); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1428: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'a') ADVANCE(1528); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1429: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'a') ADVANCE(1519); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1430: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'a') ADVANCE(1630); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1431: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'a') ADVANCE(1643); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1432: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'a') ADVANCE(1652); - if (lookahead == 'e') ADVANCE(1667); - if (lookahead == 'r') ADVANCE(1470); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1433: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'a') ADVANCE(1652); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1434: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'a') ADVANCE(1437); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1435: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'b') ADVANCE(1661); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1436: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'b') ADVANCE(1524); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1437: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'b') ADVANCE(1525); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1438: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'c') ADVANCE(1228); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1439: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'c') ADVANCE(1523); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1440: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'c') ADVANCE(1636); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1441: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'c') ADVANCE(1468); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1442: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'c') ADVANCE(1650); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1443: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'd') ADVANCE(1276); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1444: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'd') ADVANCE(1240); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1445: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'd') ADVANCE(1297); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1446: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'd') ADVANCE(1203); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1447: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'd') ADVANCE(1205); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1448: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'd') ADVANCE(1279); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1449: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'd') ADVANCE(1497); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1450: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'd') ADVANCE(1460); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1451: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'e') ADVANCE(1439); - if (lookahead == 'o') ADVANCE(1653); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1452: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'e') ADVANCE(1439); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1453: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'e') ADVANCE(1589); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1454: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'e') ADVANCE(1359); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1455: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'e') ADVANCE(1240); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1456: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'e') ADVANCE(1585); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1457: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'e') ADVANCE(1360); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1458: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'e') ADVANCE(1234); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1459: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'e') ADVANCE(1684); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1460: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'e') ADVANCE(1688); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1461: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'e') ADVANCE(1222); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1462: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'e') ADVANCE(1667); - if (lookahead == 'r') ADVANCE(1470); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1463: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'e') ADVANCE(1586); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1464: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'e') ADVANCE(1666); - if (lookahead == 'r') ADVANCE(1478); - if (lookahead == 't') ADVANCE(1412); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1465: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'e') ADVANCE(1666); - if (lookahead == 'r') ADVANCE(1478); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1466: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'e') ADVANCE(1666); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1467: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'e') ADVANCE(1411); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1468: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'e') ADVANCE(1581); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1469: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'e') ADVANCE(1587); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1470: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'e') ADVANCE(1626); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1471: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'e') ADVANCE(1588); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1472: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'e') ADVANCE(1446); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1473: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'e') ADVANCE(1618); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1474: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'e') ADVANCE(1590); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1475: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'e') ADVANCE(1609); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1476: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'e') ADVANCE(1553); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1477: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'e') ADVANCE(1447); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1478: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'e') ADVANCE(1640); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1479: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'e') ADVANCE(1649); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1480: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'e') ADVANCE(1409); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1481: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'e') ADVANCE(1625); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1482: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'f') ADVANCE(1483); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1483: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'f') ADVANCE(1411); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1484: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'g') ADVANCE(1207); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1485: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'g') ADVANCE(1551); - if (lookahead == 'z') ADVANCE(1467); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1486: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'g') ADVANCE(1551); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1487: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'g') ADVANCE(1542); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1488: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'g') ADVANCE(1552); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1489: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'h') ADVANCE(1422); - if (lookahead == 'o') ADVANCE(1541); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1490: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'h') ADVANCE(1422); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1491: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'h') ADVANCE(1607); - if (lookahead == 'r') ADVANCE(1657); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1492: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'h') ADVANCE(1607); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1493: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'h') ADVANCE(1570); - if (lookahead == 'i') ADVANCE(1485); - if (lookahead == 's') ADVANCE(1496); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1494: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'h') ADVANCE(1570); - if (lookahead == 'i') ADVANCE(1486); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1495: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'i') ADVANCE(1669); - if (lookahead == 's') ADVANCE(1496); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1496: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'i') ADVANCE(1669); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1497: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'i') ADVANCE(1482); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1498: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'i') ADVANCE(1435); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1499: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'i') ADVANCE(1488); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1500: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'i') ADVANCE(1540); - if (lookahead == 'l') ADVANCE(1564); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1501: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'i') ADVANCE(1540); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1502: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'i') ADVANCE(1628); - if (lookahead == 'o') ADVANCE(1565); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1503: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'i') ADVANCE(1628); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1504: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'i') ADVANCE(1444); - if (lookahead == 'l') ADVANCE(1431); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1505: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'i') ADVANCE(1444); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1506: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'i') ADVANCE(1438); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1507: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'i') ADVANCE(1440); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1508: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'i') ADVANCE(1450); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1509: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'i') ADVANCE(1613); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1510: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'i') ADVANCE(1637); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1511: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'i') ADVANCE(1545); - if (lookahead == 'n') ADVANCE(1619); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1512: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'i') ADVANCE(1572); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1513: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'i') ADVANCE(1487); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1514: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'i') ADVANCE(1442); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1515: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'i') ADVANCE(1526); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1516: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'l') ADVANCE(1240); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1517: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'l') ADVANCE(1584); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1518: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'l') ADVANCE(1686); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1519: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'l') ADVANCE(1238); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1520: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'l') ADVANCE(1623); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1521: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'l') ADVANCE(1564); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1522: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'l') ADVANCE(1517); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1523: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'l') ADVANCE(1633); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1524: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'l') ADVANCE(1455); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1525: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'l') ADVANCE(1458); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1526: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'l') ADVANCE(1461); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1527: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'l') ADVANCE(1431); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1528: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'l') ADVANCE(1513); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1529: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'm') ADVANCE(1306); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1530: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'm') ADVANCE(1405); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1531: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'm') ADVANCE(1506); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1532: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'n') ADVANCE(1443); - if (lookahead == 's') ADVANCE(1529); - if (lookahead == 'u') ADVANCE(1642); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1533: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'n') ADVANCE(1443); - if (lookahead == 's') ADVANCE(1529); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1534: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'n') ADVANCE(1443); - if (lookahead == 'u') ADVANCE(1642); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1535: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'n') ADVANCE(1443); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1536: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'n') ADVANCE(1619); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1537: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'n') ADVANCE(1484); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1538: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'n') ADVANCE(1232); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1539: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'n') ADVANCE(1230); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1540: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'n') ADVANCE(1427); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1541: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'n') ADVANCE(1622); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1542: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'n') ADVANCE(1411); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1543: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'n') ADVANCE(1629); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1544: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'n') ADVANCE(1445); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1545: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'n') ADVANCE(1631); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1546: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'n') ADVANCE(1448); - if (lookahead == 's') ADVANCE(1529); - if (lookahead == 'u') ADVANCE(1642); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1547: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'n') ADVANCE(1448); - if (lookahead == 's') ADVANCE(1529); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1548: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'n') ADVANCE(1448); - if (lookahead == 'u') ADVANCE(1642); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1549: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'n') ADVANCE(1448); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1550: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'n') ADVANCE(1510); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1551: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'n') ADVANCE(1472); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1552: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'n') ADVANCE(1477); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1553: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'n') ADVANCE(1624); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1554: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'n') ADVANCE(1410); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1555: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'o') ADVANCE(1653); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1556: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'o') ADVANCE(1464); - if (lookahead == 'u') ADVANCE(1522); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1557: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'o') ADVANCE(1504); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1558: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'o') ADVANCE(1682); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1559: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'o') ADVANCE(1664); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1560: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'o') ADVANCE(1603); - if (lookahead == 'u') ADVANCE(1522); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1561: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'o') ADVANCE(1603); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1562: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'o') ADVANCE(1541); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1563: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'o') ADVANCE(1531); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1564: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'o') ADVANCE(1430); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1565: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'o') ADVANCE(1516); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1566: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'o') ADVANCE(1594); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1567: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'o') ADVANCE(1537); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1568: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'o') ADVANCE(1565); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1569: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'o') ADVANCE(1615); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1570: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'o') ADVANCE(1612); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1571: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'o') ADVANCE(1527); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1572: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'o') ADVANCE(1554); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1573: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'o') ADVANCE(1505); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1574: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'o') ADVANCE(1638); - if (lookahead == 'u') ADVANCE(1522); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1575: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'o') ADVANCE(1638); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1576: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'o') ADVANCE(1599); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 440: + if (lookahead == 'a') ADVANCE(497); END_STATE(); - case 1577: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'o') ADVANCE(1466); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 441: + if (lookahead == 'd') ADVANCE(498); END_STATE(); - case 1578: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'o') ADVANCE(1465); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 442: + if (lookahead == 'g') ADVANCE(499); END_STATE(); - case 1579: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'o') ADVANCE(1604); - if (lookahead == 'u') ADVANCE(1522); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 443: + if (lookahead == 'r') ADVANCE(500); END_STATE(); - case 1580: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'o') ADVANCE(1604); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 444: + if (lookahead == 'f') ADVANCE(501); END_STATE(); - case 1581: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'p') ADVANCE(1635); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 445: + if (lookahead == 'n') ADVANCE(502); END_STATE(); - case 1582: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'p') ADVANCE(1596); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 446: + ACCEPT_TOKEN(anon_sym_alignas); END_STATE(); - case 1583: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'p') ADVANCE(1459); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 447: + ACCEPT_TOKEN(anon_sym_alignof); END_STATE(); - case 1584: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'p') ADVANCE(1646); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 448: + if (lookahead == 't') ADVANCE(503); END_STATE(); - case 1585: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'q') ADVANCE(1260); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 449: + if (lookahead == 'r') ADVANCE(504); END_STATE(); - case 1586: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'q') ADVANCE(1256); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 450: + if (lookahead == 'd') ADVANCE(505); END_STATE(); - case 1587: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'q') ADVANCE(1301); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 451: + ACCEPT_TOKEN(anon_sym_concept); END_STATE(); - case 1588: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'q') ADVANCE(1264); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 452: + if (lookahead == 'a') ADVANCE(506); END_STATE(); - case 1589: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'q') ADVANCE(1655); - if (lookahead == 's') ADVANCE(1644); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 453: + if (lookahead == 'p') ADVANCE(507); END_STATE(); - case 1590: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'q') ADVANCE(1655); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 454: + if (lookahead == 'i') ADVANCE(508); END_STATE(); - case 1591: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'r') ADVANCE(1269); - if (lookahead == 'v') ADVANCE(1475); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 455: + if (lookahead == 'e') ADVANCE(509); END_STATE(); - case 1592: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'r') ADVANCE(1269); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 456: + if (lookahead == 'e') ADVANCE(510); END_STATE(); - case 1593: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'r') ADVANCE(1239); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 457: + ACCEPT_TOKEN(anon_sym_default); END_STATE(); - case 1594: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'r') ADVANCE(1288); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 458: + ACCEPT_TOKEN(anon_sym_defined); END_STATE(); - case 1595: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'r') ADVANCE(1285); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 459: + if (lookahead == 't') ADVANCE(511); END_STATE(); - case 1596: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'r') ADVANCE(1220); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 460: + ACCEPT_TOKEN(anon_sym_mutable); END_STATE(); - case 1597: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'r') ADVANCE(1271); - if (lookahead == 'v') ADVANCE(1475); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 461: + if (lookahead == 'c') ADVANCE(512); END_STATE(); - case 1598: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'r') ADVANCE(1271); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 462: + if (lookahead == 't') ADVANCE(513); END_STATE(); - case 1599: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'r') ADVANCE(1291); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 463: + if (lookahead == 'n') ADVANCE(514); END_STATE(); - case 1600: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'r') ADVANCE(1449); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 464: + ACCEPT_TOKEN(anon_sym_nullptr); END_STATE(); - case 1601: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'r') ADVANCE(1657); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 465: + if (lookahead == 'f') ADVANCE(515); END_STATE(); - case 1602: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'r') ADVANCE(1411); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 466: + if (lookahead == 'r') ADVANCE(516); END_STATE(); - case 1603: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'r') ADVANCE(1478); - if (lookahead == 't') ADVANCE(1412); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 467: + if (lookahead == 'e') ADVANCE(517); END_STATE(); - case 1604: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'r') ADVANCE(1478); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 468: + ACCEPT_TOKEN(anon_sym_private); END_STATE(); - case 1605: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'r') ADVANCE(1508); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 469: + if (lookahead == 'e') ADVANCE(518); END_STATE(); - case 1606: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'r') ADVANCE(1507); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 470: + if (lookahead == 'r') ADVANCE(519); END_STATE(); - case 1607: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'r') ADVANCE(1559); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 471: + if (lookahead == 's') ADVANCE(520); END_STATE(); - case 1608: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'r') ADVANCE(1538); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 472: + if (lookahead == 't') ADVANCE(521); END_STATE(); - case 1609: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'r') ADVANCE(1605); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 473: + if (lookahead == 'a') ADVANCE(522); END_STATE(); - case 1610: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'r') ADVANCE(1498); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 474: + if (lookahead == 'e') ADVANCE(523); END_STATE(); - case 1611: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'r') ADVANCE(1539); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 475: + if (lookahead == 'l') ADVANCE(524); END_STATE(); - case 1612: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'r') ADVANCE(1634); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 476: + ACCEPT_TOKEN(anon_sym_typedef); END_STATE(); - case 1613: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'r') ADVANCE(1473); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 477: + if (lookahead == 'e') ADVANCE(525); END_STATE(); - case 1614: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'r') ADVANCE(1514); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 478: + if (lookahead == 'd') ADVANCE(526); END_STATE(); - case 1615: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'r') ADVANCE(1479); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 479: + ACCEPT_TOKEN(anon_sym_virtual); END_STATE(); - case 1616: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 's') ADVANCE(1529); - if (lookahead == 'u') ADVANCE(1642); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 480: + if (lookahead == 'e') ADVANCE(527); END_STATE(); - case 1617: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 's') ADVANCE(1529); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 481: + ACCEPT_TOKEN(anon_sym__Alignof); END_STATE(); - case 1618: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 's') ADVANCE(1700); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 482: + ACCEPT_TOKEN(anon_sym__Generic); END_STATE(); - case 1619: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 's') ADVANCE(1499); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 483: + if (lookahead == 'n') ADVANCE(528); END_STATE(); - case 1620: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 's') ADVANCE(1530); - if (lookahead == 't') ADVANCE(1645); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 484: + if (lookahead == 'P') ADVANCE(529); END_STATE(); - case 1621: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 's') ADVANCE(1530); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 485: + if (lookahead == 'f') ADVANCE(530); END_STATE(); - case 1622: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 's') ADVANCE(1632); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 486: + if (lookahead == 'u') ADVANCE(531); END_STATE(); - case 1623: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 's') ADVANCE(1457); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 487: + if (lookahead == 'l') ADVANCE(532); END_STATE(); - case 1624: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 's') ADVANCE(1512); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 488: + if (lookahead == 'e') ADVANCE(533); END_STATE(); - case 1625: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 's') ADVANCE(1644); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 489: + ACCEPT_TOKEN(anon_sym___except); END_STATE(); - case 1626: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 's') ADVANCE(1651); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 490: + if (lookahead == 'i') ADVANCE(534); END_STATE(); - case 1627: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 't') ADVANCE(1600); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 491: + if (lookahead == 'l') ADVANCE(535); END_STATE(); - case 1628: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 't') ADVANCE(1423); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 492: + if (lookahead == 'y') ADVANCE(536); END_STATE(); - case 1629: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 't') ADVANCE(1239); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 493: + if (lookahead == 'n') ADVANCE(537); END_STATE(); - case 1630: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 't') ADVANCE(1240); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 494: + ACCEPT_TOKEN(anon_sym___inline); + if (lookahead == '_') ADVANCE(538); END_STATE(); - case 1631: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 't') ADVANCE(1385); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 495: + if (lookahead == 'c') ADVANCE(539); END_STATE(); - case 1632: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 't') ADVANCE(1217); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 496: + if (lookahead == 'l') ADVANCE(540); END_STATE(); - case 1633: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 't') ADVANCE(1668); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 497: + if (lookahead == 'l') ADVANCE(541); END_STATE(); - case 1634: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 't') ADVANCE(1209); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 498: + ACCEPT_TOKEN(anon_sym___thread); END_STATE(); - case 1635: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 't') ADVANCE(1691); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 499: + if (lookahead == 'n') ADVANCE(542); END_STATE(); - case 1636: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 't') ADVANCE(1224); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 500: + if (lookahead == 'c') ADVANCE(543); END_STATE(); - case 1637: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 't') ADVANCE(1236); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 501: + ACCEPT_TOKEN(anon_sym__alignof); END_STATE(); - case 1638: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 't') ADVANCE(1412); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 502: + if (lookahead == 'e') ADVANCE(544); END_STATE(); - case 1639: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 't') ADVANCE(1434); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 503: + ACCEPT_TOKEN(anon_sym_co_await); END_STATE(); - case 1640: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 't') ADVANCE(1658); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 504: + if (lookahead == 'n') ADVANCE(545); END_STATE(); - case 1641: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 't') ADVANCE(1563); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 505: + ACCEPT_TOKEN(anon_sym_co_yield); END_STATE(); - case 1642: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 't') ADVANCE(1558); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 506: + if (lookahead == 'l') ADVANCE(546); END_STATE(); - case 1643: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 't') ADVANCE(1515); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 507: + if (lookahead == 'r') ADVANCE(547); END_STATE(); - case 1644: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 't') ADVANCE(1606); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 508: + if (lookahead == 't') ADVANCE(548); END_STATE(); - case 1645: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 't') ADVANCE(1610); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 509: + ACCEPT_TOKEN(anon_sym_continue); END_STATE(); - case 1646: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 't') ADVANCE(1602); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 510: + ACCEPT_TOKEN(anon_sym_decltype); END_STATE(); - case 1647: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 't') ADVANCE(1476); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 511: + ACCEPT_TOKEN(anon_sym_explicit); END_STATE(); - case 1648: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 't') ADVANCE(1480); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 512: + if (lookahead == 'e') ADVANCE(549); END_STATE(); - case 1649: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 't') ADVANCE(1659); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 513: + ACCEPT_TOKEN(anon_sym_noexcept); END_STATE(); - case 1650: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 't') ADVANCE(1407); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 514: + ACCEPT_TOKEN(anon_sym_noreturn); END_STATE(); - case 1651: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 't') ADVANCE(1614); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 515: + ACCEPT_TOKEN(anon_sym_offsetof); END_STATE(); - case 1652: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 't') ADVANCE(1645); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 516: + ACCEPT_TOKEN(anon_sym_operator); END_STATE(); - case 1653: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'u') ADVANCE(1436); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 517: + ACCEPT_TOKEN(anon_sym_override); END_STATE(); - case 1654: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'u') ADVANCE(1522); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 518: + if (lookahead == 'd') ADVANCE(550); END_STATE(); - case 1655: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'u') ADVANCE(1509); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 519: + ACCEPT_TOKEN(anon_sym_register); END_STATE(); - case 1656: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'u') ADVANCE(1639); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 520: + ACCEPT_TOKEN(anon_sym_requires); END_STATE(); - case 1657: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'u') ADVANCE(1454); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 521: + ACCEPT_TOKEN(anon_sym_restrict); END_STATE(); - case 1658: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'u') ADVANCE(1608); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 522: + if (lookahead == 's') ADVANCE(551); END_STATE(); - case 1659: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'u') ADVANCE(1611); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 523: + ACCEPT_TOKEN(anon_sym_template); END_STATE(); - case 1660: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'u') ADVANCE(1642); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 524: + if (lookahead == 'o') ADVANCE(552); END_STATE(); - case 1661: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'u') ADVANCE(1648); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 525: + ACCEPT_TOKEN(anon_sym_typename); END_STATE(); - case 1662: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'v') ADVANCE(1475); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 526: + ACCEPT_TOKEN(anon_sym_unsigned); END_STATE(); - case 1663: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'v') ADVANCE(1429); - if (lookahead == 'x') ADVANCE(1582); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 527: + ACCEPT_TOKEN(anon_sym_volatile); END_STATE(); - case 1664: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'w') ADVANCE(1693); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 528: + ACCEPT_TOKEN(anon_sym__Noreturn); END_STATE(); - case 1665: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'x') ADVANCE(1413); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 529: + if (lookahead == '_') ADVANCE(553); END_STATE(); - case 1666: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'x') ADVANCE(1441); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 530: + ACCEPT_TOKEN(anon_sym___alignof); + if (lookahead == '_') ADVANCE(554); END_STATE(); - case 1667: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'x') ADVANCE(1647); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 531: + if (lookahead == 't') ADVANCE(555); END_STATE(); - case 1668: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'y') ADVANCE(1583); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 532: + ACCEPT_TOKEN(anon_sym___clrcall); END_STATE(); - case 1669: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'z') ADVANCE(1467); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 533: + if (lookahead == 'c') ADVANCE(556); END_STATE(); - case 1670: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(1670); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 534: + if (lookahead == 'o') ADVANCE(557); END_STATE(); - case 1671: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 535: + if (lookahead == 'l') ADVANCE(558); END_STATE(); - case 1672: - ACCEPT_TOKEN(sym_comment); + case 536: + ACCEPT_TOKEN(anon_sym___finally); END_STATE(); - case 1673: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(1679); - if (lookahead == '/') ADVANCE(1676); - if (lookahead == '\\') ADVANCE(1096); - if (lookahead != 0) ADVANCE(1677); + case 537: + if (lookahead == 'l') ADVANCE(559); END_STATE(); - case 1674: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\r') ADVANCE(1680); - if (lookahead == '\\') ADVANCE(1674); - if (lookahead != 0) ADVANCE(1679); + case 538: + if (lookahead == '_') ADVANCE(560); END_STATE(); - case 1675: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\r') ADVANCE(1678); - if (lookahead == '/') ADVANCE(1676); - if (lookahead == '\\') ADVANCE(1675); - if (lookahead != 0) ADVANCE(1677); + case 539: + if (lookahead == 't') ADVANCE(561); END_STATE(); - case 1676: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '*') ADVANCE(1679); - if (lookahead == '\\') ADVANCE(1091); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(1677); + case 540: + ACCEPT_TOKEN(anon_sym___stdcall); END_STATE(); - case 1677: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '/') ADVANCE(1676); - if (lookahead == '\\') ADVANCE(1096); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(1677); + case 541: + if (lookahead == 'l') ADVANCE(562); END_STATE(); - case 1678: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '/') ADVANCE(1676); - if (lookahead == '\\') ADVANCE(1096); - if (lookahead != 0) ADVANCE(1677); + case 542: + if (lookahead == 'e') ADVANCE(563); END_STATE(); - case 1679: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(468); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(1679); + case 543: + if (lookahead == 'a') ADVANCE(564); END_STATE(); - case 1680: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(468); - if (lookahead != 0) ADVANCE(1679); + case 544: + if (lookahead == 'd') ADVANCE(565); END_STATE(); - case 1681: - ACCEPT_TOKEN(sym_auto); + case 545: + ACCEPT_TOKEN(anon_sym_co_return); END_STATE(); - case 1682: - ACCEPT_TOKEN(sym_auto); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 546: + ACCEPT_TOKEN(anon_sym_consteval); END_STATE(); - case 1683: - ACCEPT_TOKEN(anon_sym_decltype); + case 547: + ACCEPT_TOKEN(anon_sym_constexpr); END_STATE(); - case 1684: - ACCEPT_TOKEN(anon_sym_decltype); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 548: + ACCEPT_TOKEN(anon_sym_constinit); END_STATE(); - case 1685: - ACCEPT_TOKEN(anon_sym_final); + case 549: + ACCEPT_TOKEN(anon_sym_namespace); END_STATE(); - case 1686: - ACCEPT_TOKEN(anon_sym_final); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 550: + ACCEPT_TOKEN(anon_sym_protected); END_STATE(); - case 1687: - ACCEPT_TOKEN(anon_sym_override); + case 551: + if (lookahead == 's') ADVANCE(566); END_STATE(); - case 1688: - ACCEPT_TOKEN(anon_sym_override); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 552: + if (lookahead == 'c') ADVANCE(567); END_STATE(); - case 1689: - ACCEPT_TOKEN(anon_sym_GT2); + case 553: + if (lookahead == 'E') ADVANCE(568); END_STATE(); - case 1690: - ACCEPT_TOKEN(anon_sym_noexcept); + case 554: + if (lookahead == '_') ADVANCE(569); END_STATE(); - case 1691: - ACCEPT_TOKEN(anon_sym_noexcept); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 555: + if (lookahead == 'e') ADVANCE(570); END_STATE(); - case 1692: - ACCEPT_TOKEN(anon_sym_throw); + case 556: + ACCEPT_TOKEN(anon_sym___declspec); END_STATE(); - case 1693: - ACCEPT_TOKEN(anon_sym_throw); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 557: + if (lookahead == 'n') ADVANCE(571); END_STATE(); - case 1694: - ACCEPT_TOKEN(anon_sym_R_DQUOTE); + case 558: + ACCEPT_TOKEN(anon_sym___fastcall); END_STATE(); - case 1695: - ACCEPT_TOKEN(anon_sym_LR_DQUOTE); + case 559: + if (lookahead == 'i') ADVANCE(572); END_STATE(); - case 1696: - ACCEPT_TOKEN(anon_sym_uR_DQUOTE); + case 560: + ACCEPT_TOKEN(anon_sym___inline__); END_STATE(); - case 1697: - ACCEPT_TOKEN(anon_sym_UR_DQUOTE); + case 561: + ACCEPT_TOKEN(sym_ms_restrict_modifier); + if (lookahead == '_') ADVANCE(573); END_STATE(); - case 1698: - ACCEPT_TOKEN(anon_sym_u8R_DQUOTE); + case 562: + ACCEPT_TOKEN(anon_sym___thiscall); END_STATE(); - case 1699: - ACCEPT_TOKEN(anon_sym_requires); + case 563: + if (lookahead == 'd') ADVANCE(574); END_STATE(); - case 1700: - ACCEPT_TOKEN(anon_sym_requires); - if (lookahead == '\\') ADVANCE(770); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 564: + if (lookahead == 'l') ADVANCE(575); END_STATE(); - case 1701: - ACCEPT_TOKEN(anon_sym_DASH_GT_STAR); + case 565: + ACCEPT_TOKEN(anon_sym__unaligned); END_STATE(); - case 1702: - ACCEPT_TOKEN(anon_sym_LPAREN_RPAREN); + case 566: + if (lookahead == 'e') ADVANCE(576); END_STATE(); - case 1703: - ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK); + case 567: + if (lookahead == 'a') ADVANCE(577); END_STATE(); - case 1704: - ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE); + case 568: + if (lookahead == 'X') ADVANCE(578); END_STATE(); - case 1705: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(1343); - if (lookahead == 'R') ADVANCE(1713); - if (lookahead == '\\') ADVANCE(770); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 569: + ACCEPT_TOKEN(anon_sym___alignof__); END_STATE(); - case 1706: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(1343); - if (lookahead == 'R') ADVANCE(1714); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); + case 570: + if (lookahead == '_') ADVANCE(579); END_STATE(); - case 1707: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(1694); - if (lookahead == '\\') ADVANCE(770); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 571: + if (lookahead == '_') ADVANCE(580); END_STATE(); - case 1708: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(1694); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); + case 572: + if (lookahead == 'n') ADVANCE(581); END_STATE(); - case 1709: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(1345); - if (lookahead == 'R') ADVANCE(1715); - if (lookahead == '\\') ADVANCE(770); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 573: + if (lookahead == '_') ADVANCE(582); END_STATE(); - case 1710: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(1345); - if (lookahead == 'R') ADVANCE(1716); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); + case 574: + ACCEPT_TOKEN(anon_sym___unaligned); END_STATE(); - case 1711: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(1344); - if (lookahead == '8') ADVANCE(1717); - if (lookahead == 'R') ADVANCE(1719); - if (lookahead == '\\') ADVANCE(770); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 575: + if (lookahead == 'l') ADVANCE(583); END_STATE(); - case 1712: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(1344); - if (lookahead == '8') ADVANCE(1718); - if (lookahead == 'R') ADVANCE(1720); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); + case 576: + if (lookahead == 'r') ADVANCE(584); END_STATE(); - case 1713: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(1695); - if (lookahead == '\\') ADVANCE(770); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 577: + if (lookahead == 'l') ADVANCE(585); END_STATE(); - case 1714: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(1695); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); + case 578: + if (lookahead == 'P') ADVANCE(586); END_STATE(); - case 1715: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(1697); - if (lookahead == '\\') ADVANCE(770); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 579: + if (lookahead == '_') ADVANCE(587); END_STATE(); - case 1716: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(1697); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); + case 580: + if (lookahead == '_') ADVANCE(588); END_STATE(); - case 1717: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(1346); - if (lookahead == 'R') ADVANCE(1721); - if (lookahead == '\\') ADVANCE(770); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 581: + if (lookahead == 'e') ADVANCE(589); END_STATE(); - case 1718: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(1346); - if (lookahead == 'R') ADVANCE(1722); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); + case 582: + ACCEPT_TOKEN(anon_sym___restrict__); END_STATE(); - case 1719: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(1696); - if (lookahead == '\\') ADVANCE(770); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 583: + ACCEPT_TOKEN(anon_sym___vectorcall); END_STATE(); - case 1720: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(1696); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); + case 584: + if (lookahead == 't') ADVANCE(590); END_STATE(); - case 1721: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(1698); - if (lookahead == '\\') ADVANCE(770); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 585: + ACCEPT_TOKEN(anon_sym_thread_local); END_STATE(); - case 1722: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(1698); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); + case 586: + if (lookahead == 'R') ADVANCE(591); END_STATE(); - case 1723: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == '_') ADVANCE(1727); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 587: + ACCEPT_TOKEN(anon_sym___attribute__); END_STATE(); - case 1724: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == '_') ADVANCE(1194); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 588: + ACCEPT_TOKEN(anon_sym___extension__); END_STATE(); - case 1725: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == '_') ADVANCE(1724); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 589: + ACCEPT_TOKEN(anon_sym___forceinline); END_STATE(); - case 1726: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == '_') ADVANCE(1736); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 590: + ACCEPT_TOKEN(anon_sym_static_assert); END_STATE(); - case 1727: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'a') ADVANCE(1760); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 591: + if (lookahead == 'E') ADVANCE(592); END_STATE(); - case 1728: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'a') ADVANCE(1741); - if (lookahead == 'o') ADVANCE(1752); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 592: + if (lookahead == 'S') ADVANCE(593); END_STATE(); - case 1729: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'b') ADVANCE(1761); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 593: + if (lookahead == 'S') ADVANCE(594); END_STATE(); - case 1730: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'd') ADVANCE(1277); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 594: + if (lookahead == 'I') ADVANCE(595); END_STATE(); - case 1731: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'd') ADVANCE(1296); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 595: + if (lookahead == 'O') ADVANCE(596); END_STATE(); - case 1732: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'd') ADVANCE(1278); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); + case 596: + if (lookahead == 'N') ADVANCE(597); END_STATE(); - case 1733: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'e') ADVANCE(1746); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1734: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'e') ADVANCE(1747); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1735: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'e') ADVANCE(1725); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1736: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'e') ADVANCE(1748); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1737: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'e') ADVANCE(1749); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1738: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'i') ADVANCE(1756); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1739: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'i') ADVANCE(1729); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1740: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'n') ADVANCE(1730); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1741: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'n') ADVANCE(1731); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1742: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'n') ADVANCE(1732); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1743: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'o') ADVANCE(1751); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1744: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'o') ADVANCE(1757); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1745: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'o') ADVANCE(1754); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1746: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'q') ADVANCE(1259); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1747: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'q') ADVANCE(1255); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1748: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'q') ADVANCE(1300); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1749: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'q') ADVANCE(1263); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1750: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'r') ADVANCE(1268); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1751: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'r') ADVANCE(1289); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1752: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'r') ADVANCE(1284); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1753: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'r') ADVANCE(1270); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1754: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'r') ADVANCE(1290); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1755: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'r') ADVANCE(1739); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1756: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 't') ADVANCE(1728); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1757: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 't') ADVANCE(1726); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1758: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 't') ADVANCE(1735); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1759: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 't') ADVANCE(1755); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1760: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 't') ADVANCE(1759); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1761: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(770); - if (lookahead == 'u') ADVANCE(1758); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1762: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(770); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1762); - if (set_contains(sym_identifier_character_set_3, 764, lookahead)) ADVANCE(1671); - END_STATE(); - case 1763: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '_') ADVANCE(1767); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); - END_STATE(); - case 1764: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '_') ADVANCE(1196); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); - END_STATE(); - case 1765: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '_') ADVANCE(1764); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); - END_STATE(); - case 1766: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '_') ADVANCE(1776); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); - END_STATE(); - case 1767: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == 'a') ADVANCE(1800); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1802); - END_STATE(); - case 1768: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == 'a') ADVANCE(1781); - if (lookahead == 'o') ADVANCE(1792); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1802); - END_STATE(); - case 1769: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == 'b') ADVANCE(1801); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); - END_STATE(); - case 1770: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == 'd') ADVANCE(1281); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); - END_STATE(); - case 1771: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == 'd') ADVANCE(1298); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); - END_STATE(); - case 1772: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == 'd') ADVANCE(1282); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); - END_STATE(); - case 1773: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == 'e') ADVANCE(1786); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); - END_STATE(); - case 1774: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == 'e') ADVANCE(1787); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); - END_STATE(); - case 1775: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == 'e') ADVANCE(1765); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); - END_STATE(); - case 1776: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == 'e') ADVANCE(1788); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); - END_STATE(); - case 1777: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == 'e') ADVANCE(1789); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); - END_STATE(); - case 1778: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == 'i') ADVANCE(1796); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); - END_STATE(); - case 1779: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == 'i') ADVANCE(1769); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); - END_STATE(); - case 1780: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == 'n') ADVANCE(1770); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); - END_STATE(); - case 1781: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == 'n') ADVANCE(1771); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); - END_STATE(); - case 1782: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == 'n') ADVANCE(1772); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); - END_STATE(); - case 1783: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == 'o') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); - END_STATE(); - case 1784: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == 'o') ADVANCE(1797); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); - END_STATE(); - case 1785: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == 'o') ADVANCE(1794); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); - END_STATE(); - case 1786: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == 'q') ADVANCE(1261); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); - END_STATE(); - case 1787: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == 'q') ADVANCE(1257); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); - END_STATE(); - case 1788: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == 'q') ADVANCE(1302); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); - END_STATE(); - case 1789: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == 'q') ADVANCE(1265); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); - END_STATE(); - case 1790: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == 'r') ADVANCE(1272); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); - END_STATE(); - case 1791: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == 'r') ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); - END_STATE(); - case 1792: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == 'r') ADVANCE(1286); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); - END_STATE(); - case 1793: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == 'r') ADVANCE(1274); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); - END_STATE(); - case 1794: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == 'r') ADVANCE(1294); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); - END_STATE(); - case 1795: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == 'r') ADVANCE(1779); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); - END_STATE(); - case 1796: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == 't') ADVANCE(1768); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); - END_STATE(); - case 1797: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == 't') ADVANCE(1766); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); - END_STATE(); - case 1798: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == 't') ADVANCE(1775); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); - END_STATE(); - case 1799: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == 't') ADVANCE(1795); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); - END_STATE(); - case 1800: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == 't') ADVANCE(1799); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); - END_STATE(); - case 1801: - ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == 'u') ADVANCE(1798); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); - END_STATE(); - case 1802: - ACCEPT_TOKEN(sym_literal_suffix); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1802); - END_STATE(); - case 1803: - ACCEPT_TOKEN(sym_semgrep_metavar); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(1803); - END_STATE(); - case 1804: - ACCEPT_TOKEN(anon_sym_LT_DOT_DOT_DOT); - END_STATE(); - case 1805: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_GT); - END_STATE(); - case 1806: - ACCEPT_TOKEN(sym_semgrep_named_ellipsis); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(1806); - END_STATE(); - default: - return false; - } -} - -static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { - START_LEXER(); - eof = lexer->eof(lexer); - switch (state) { - case 0: - if (lookahead == 'N') ADVANCE(1); - if (lookahead == '\\') SKIP(2); - if (lookahead == '_') ADVANCE(3); - if (lookahead == 'a') ADVANCE(4); - if (lookahead == 'b') ADVANCE(5); - if (lookahead == 'c') ADVANCE(6); - if (lookahead == 'd') ADVANCE(7); - if (lookahead == 'e') ADVANCE(8); - if (lookahead == 'f') ADVANCE(9); - if (lookahead == 'g') ADVANCE(10); - if (lookahead == 'i') ADVANCE(11); - if (lookahead == 'n') ADVANCE(12); - if (lookahead == 'o') ADVANCE(13); - if (lookahead == 'p') ADVANCE(14); - if (lookahead == 'r') ADVANCE(15); - if (lookahead == 's') ADVANCE(16); - if (lookahead == 't') ADVANCE(17); - if (lookahead == 'u') ADVANCE(18); - if (lookahead == 'v') ADVANCE(19); - if (lookahead == 'w') ADVANCE(20); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(0); - END_STATE(); - case 1: - if (lookahead == 'U') ADVANCE(21); - END_STATE(); - case 2: - if (lookahead == '\n') SKIP(0); - if (lookahead == '\r') SKIP(22); - END_STATE(); - case 3: - if (lookahead == 'A') ADVANCE(23); - if (lookahead == 'G') ADVANCE(24); - if (lookahead == '_') ADVANCE(25); - if (lookahead == 'a') ADVANCE(26); - if (lookahead == 'u') ADVANCE(27); - END_STATE(); - case 4: - if (lookahead == 'l') ADVANCE(28); - END_STATE(); - case 5: - if (lookahead == 'r') ADVANCE(29); - END_STATE(); - case 6: - if (lookahead == 'a') ADVANCE(30); - if (lookahead == 'l') ADVANCE(31); - if (lookahead == 'o') ADVANCE(32); - END_STATE(); - case 7: - if (lookahead == 'e') ADVANCE(33); - if (lookahead == 'o') ADVANCE(34); - END_STATE(); - case 8: - if (lookahead == 'l') ADVANCE(35); - if (lookahead == 'n') ADVANCE(36); - if (lookahead == 'x') ADVANCE(37); - END_STATE(); - case 9: - if (lookahead == 'o') ADVANCE(38); - if (lookahead == 'r') ADVANCE(39); - END_STATE(); - case 10: - if (lookahead == 'o') ADVANCE(40); - END_STATE(); - case 11: - if (lookahead == 'f') ADVANCE(41); - if (lookahead == 'n') ADVANCE(42); - END_STATE(); - case 12: - if (lookahead == 'a') ADVANCE(43); - if (lookahead == 'e') ADVANCE(44); - if (lookahead == 'o') ADVANCE(45); - if (lookahead == 'u') ADVANCE(46); - END_STATE(); - case 13: - if (lookahead == 'f') ADVANCE(47); - if (lookahead == 'p') ADVANCE(48); - END_STATE(); - case 14: - if (lookahead == 'r') ADVANCE(49); - if (lookahead == 'u') ADVANCE(50); - END_STATE(); - case 15: - if (lookahead == 'e') ADVANCE(51); - END_STATE(); - case 16: - if (lookahead == 'i') ADVANCE(52); - if (lookahead == 't') ADVANCE(53); - if (lookahead == 'w') ADVANCE(54); - END_STATE(); - case 17: - if (lookahead == 'e') ADVANCE(55); - if (lookahead == 'h') ADVANCE(56); - if (lookahead == 'r') ADVANCE(57); - if (lookahead == 'y') ADVANCE(58); - END_STATE(); - case 18: - if (lookahead == 'n') ADVANCE(59); - if (lookahead == 's') ADVANCE(60); - END_STATE(); - case 19: - if (lookahead == 'i') ADVANCE(61); - END_STATE(); - case 20: - if (lookahead == 'h') ADVANCE(62); - END_STATE(); - case 21: - if (lookahead == 'L') ADVANCE(63); - END_STATE(); - case 22: - if (lookahead == '\n') SKIP(0); - END_STATE(); - case 23: - if (lookahead == 'l') ADVANCE(64); - END_STATE(); - case 24: - if (lookahead == 'e') ADVANCE(65); - END_STATE(); - case 25: - ADVANCE_MAP( - 'S', 66, - 'a', 67, - 'b', 68, - 'c', 69, - 'd', 70, - 'e', 71, - 'f', 72, - 'i', 73, - 'l', 74, - 'r', 75, - 's', 76, - 't', 77, - 'u', 78, - 'v', 79, - ); - END_STATE(); - case 26: - if (lookahead == 'l') ADVANCE(80); - END_STATE(); - case 27: - if (lookahead == 'n') ADVANCE(81); - END_STATE(); - case 28: - if (lookahead == 'i') ADVANCE(82); - END_STATE(); - case 29: - if (lookahead == 'e') ADVANCE(83); - END_STATE(); - case 30: - if (lookahead == 's') ADVANCE(84); - if (lookahead == 't') ADVANCE(85); - END_STATE(); - case 31: - if (lookahead == 'a') ADVANCE(86); - END_STATE(); - case 32: - if (lookahead == '_') ADVANCE(87); - if (lookahead == 'm') ADVANCE(88); - if (lookahead == 'n') ADVANCE(89); - END_STATE(); - case 33: - if (lookahead == 'f') ADVANCE(90); - if (lookahead == 'l') ADVANCE(91); - END_STATE(); - case 34: - ACCEPT_TOKEN(anon_sym_do); - END_STATE(); - case 35: - if (lookahead == 's') ADVANCE(92); - END_STATE(); - case 36: - if (lookahead == 'u') ADVANCE(93); - END_STATE(); - case 37: - if (lookahead == 'p') ADVANCE(94); - if (lookahead == 't') ADVANCE(95); - END_STATE(); - case 38: - if (lookahead == 'r') ADVANCE(96); - END_STATE(); - case 39: - if (lookahead == 'i') ADVANCE(97); - END_STATE(); - case 40: - if (lookahead == 't') ADVANCE(98); - END_STATE(); - case 41: - ACCEPT_TOKEN(anon_sym_if); - END_STATE(); - case 42: - if (lookahead == 'l') ADVANCE(99); - END_STATE(); - case 43: - if (lookahead == 'm') ADVANCE(100); - END_STATE(); - case 44: - if (lookahead == 'w') ADVANCE(101); - END_STATE(); - case 45: - if (lookahead == 't') ADVANCE(102); - END_STATE(); - case 46: - if (lookahead == 'l') ADVANCE(103); - END_STATE(); - case 47: - if (lookahead == 'f') ADVANCE(104); - END_STATE(); - case 48: - if (lookahead == 'e') ADVANCE(105); - END_STATE(); - case 49: - if (lookahead == 'i') ADVANCE(106); - if (lookahead == 'o') ADVANCE(107); - END_STATE(); - case 50: - if (lookahead == 'b') ADVANCE(108); - END_STATE(); - case 51: - if (lookahead == 'g') ADVANCE(109); - if (lookahead == 't') ADVANCE(110); - END_STATE(); - case 52: - if (lookahead == 'z') ADVANCE(111); - END_STATE(); - case 53: - if (lookahead == 'a') ADVANCE(112); - if (lookahead == 'r') ADVANCE(113); - END_STATE(); - case 54: - if (lookahead == 'i') ADVANCE(114); - END_STATE(); - case 55: - if (lookahead == 'm') ADVANCE(115); - END_STATE(); - case 56: - if (lookahead == 'i') ADVANCE(116); - if (lookahead == 'r') ADVANCE(117); - END_STATE(); - case 57: - if (lookahead == 'y') ADVANCE(118); - END_STATE(); - case 58: - if (lookahead == 'p') ADVANCE(119); - END_STATE(); - case 59: - if (lookahead == 'i') ADVANCE(120); - END_STATE(); - case 60: - if (lookahead == 'i') ADVANCE(121); - END_STATE(); - case 61: - if (lookahead == 'r') ADVANCE(122); - END_STATE(); - case 62: - if (lookahead == 'i') ADVANCE(123); - END_STATE(); - case 63: - if (lookahead == 'L') ADVANCE(124); - END_STATE(); - case 64: - if (lookahead == 'i') ADVANCE(125); - END_STATE(); - case 65: - if (lookahead == 'n') ADVANCE(126); - END_STATE(); - case 66: - if (lookahead == 'E') ADVANCE(127); - END_STATE(); - case 67: - if (lookahead == 'l') ADVANCE(128); - END_STATE(); - case 68: - if (lookahead == 'a') ADVANCE(129); - END_STATE(); - case 69: - if (lookahead == 'd') ADVANCE(130); - if (lookahead == 'l') ADVANCE(131); - END_STATE(); - case 70: - if (lookahead == 'e') ADVANCE(132); - END_STATE(); - case 71: - if (lookahead == 'x') ADVANCE(133); - END_STATE(); - case 72: - if (lookahead == 'a') ADVANCE(134); - if (lookahead == 'i') ADVANCE(135); - if (lookahead == 'o') ADVANCE(136); - END_STATE(); - case 73: - if (lookahead == 'n') ADVANCE(137); - END_STATE(); - case 74: - if (lookahead == 'e') ADVANCE(138); - END_STATE(); - case 75: - if (lookahead == 'e') ADVANCE(139); - END_STATE(); - case 76: - if (lookahead == 'p') ADVANCE(140); - if (lookahead == 't') ADVANCE(141); - END_STATE(); - case 77: - if (lookahead == 'h') ADVANCE(142); - if (lookahead == 'r') ADVANCE(143); - END_STATE(); - case 78: - if (lookahead == 'n') ADVANCE(144); - if (lookahead == 'p') ADVANCE(145); - END_STATE(); - case 79: - if (lookahead == 'e') ADVANCE(146); - END_STATE(); - case 80: - if (lookahead == 'i') ADVANCE(147); - END_STATE(); - case 81: - if (lookahead == 'a') ADVANCE(148); - END_STATE(); - case 82: - if (lookahead == 'g') ADVANCE(149); - END_STATE(); - case 83: - if (lookahead == 'a') ADVANCE(150); - END_STATE(); - case 84: - if (lookahead == 'e') ADVANCE(151); - END_STATE(); - case 85: - if (lookahead == 'c') ADVANCE(152); - END_STATE(); - case 86: - if (lookahead == 's') ADVANCE(153); - END_STATE(); - case 87: - if (lookahead == 'a') ADVANCE(154); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == 'y') ADVANCE(156); - END_STATE(); - case 88: - if (lookahead == 'p') ADVANCE(157); - END_STATE(); - case 89: - if (lookahead == 'c') ADVANCE(158); - if (lookahead == 't') ADVANCE(159); - END_STATE(); - case 90: - if (lookahead == 'a') ADVANCE(160); - if (lookahead == 'i') ADVANCE(161); - END_STATE(); - case 91: - if (lookahead == 'e') ADVANCE(162); - END_STATE(); - case 92: - if (lookahead == 'e') ADVANCE(163); - END_STATE(); - case 93: - if (lookahead == 'm') ADVANCE(164); - END_STATE(); - case 94: - if (lookahead == 'l') ADVANCE(165); - END_STATE(); - case 95: - if (lookahead == 'e') ADVANCE(166); - END_STATE(); - case 96: - ACCEPT_TOKEN(anon_sym_for); - END_STATE(); - case 97: - if (lookahead == 'e') ADVANCE(167); - END_STATE(); - case 98: - if (lookahead == 'o') ADVANCE(168); - END_STATE(); - case 99: - if (lookahead == 'i') ADVANCE(169); - END_STATE(); - case 100: - if (lookahead == 'e') ADVANCE(170); - END_STATE(); - case 101: - ACCEPT_TOKEN(anon_sym_new); - END_STATE(); - case 102: - ACCEPT_TOKEN(anon_sym_not); - END_STATE(); - case 103: - if (lookahead == 'l') ADVANCE(171); - END_STATE(); - case 104: - if (lookahead == 's') ADVANCE(172); - END_STATE(); - case 105: - if (lookahead == 'r') ADVANCE(173); - END_STATE(); - case 106: - if (lookahead == 'v') ADVANCE(174); - END_STATE(); - case 107: - if (lookahead == 't') ADVANCE(175); - END_STATE(); - case 108: - if (lookahead == 'l') ADVANCE(176); - END_STATE(); - case 109: - if (lookahead == 'i') ADVANCE(177); - END_STATE(); - case 110: - if (lookahead == 'u') ADVANCE(178); - END_STATE(); - case 111: - if (lookahead == 'e') ADVANCE(179); - END_STATE(); - case 112: - if (lookahead == 't') ADVANCE(180); - END_STATE(); - case 113: - if (lookahead == 'u') ADVANCE(181); - END_STATE(); - case 114: - if (lookahead == 't') ADVANCE(182); - END_STATE(); - case 115: - if (lookahead == 'p') ADVANCE(183); - END_STATE(); - case 116: - if (lookahead == 's') ADVANCE(184); - END_STATE(); - case 117: - if (lookahead == 'e') ADVANCE(185); - END_STATE(); - case 118: - ACCEPT_TOKEN(anon_sym_try); - END_STATE(); - case 119: - if (lookahead == 'e') ADVANCE(186); - END_STATE(); - case 120: - if (lookahead == 'o') ADVANCE(187); - END_STATE(); - case 121: - if (lookahead == 'n') ADVANCE(188); - END_STATE(); - case 122: - if (lookahead == 't') ADVANCE(189); - END_STATE(); - case 123: - if (lookahead == 'l') ADVANCE(190); - END_STATE(); - case 124: - ACCEPT_TOKEN(anon_sym_NULL); - END_STATE(); - case 125: - if (lookahead == 'g') ADVANCE(191); - END_STATE(); - case 126: - if (lookahead == 'e') ADVANCE(192); - END_STATE(); - case 127: - if (lookahead == 'M') ADVANCE(193); - END_STATE(); - case 128: - if (lookahead == 'i') ADVANCE(194); - END_STATE(); - case 129: - if (lookahead == 's') ADVANCE(195); - END_STATE(); - case 130: - if (lookahead == 'e') ADVANCE(196); - END_STATE(); - case 131: - if (lookahead == 'r') ADVANCE(197); - END_STATE(); - case 132: - if (lookahead == 'c') ADVANCE(198); - END_STATE(); - case 133: - if (lookahead == 'c') ADVANCE(199); - END_STATE(); - case 134: - if (lookahead == 's') ADVANCE(200); - END_STATE(); - case 135: - if (lookahead == 'n') ADVANCE(201); - END_STATE(); - case 136: - if (lookahead == 'r') ADVANCE(202); - END_STATE(); - case 137: - if (lookahead == 'l') ADVANCE(203); - END_STATE(); - case 138: - if (lookahead == 'a') ADVANCE(204); - END_STATE(); - case 139: - if (lookahead == 's') ADVANCE(205); - END_STATE(); - case 140: - if (lookahead == 't') ADVANCE(206); - END_STATE(); - case 141: - if (lookahead == 'd') ADVANCE(207); - END_STATE(); - case 142: - if (lookahead == 'i') ADVANCE(208); - if (lookahead == 'r') ADVANCE(209); - END_STATE(); - case 143: - if (lookahead == 'y') ADVANCE(210); - END_STATE(); - case 144: - if (lookahead == 'a') ADVANCE(211); - END_STATE(); - case 145: - if (lookahead == 't') ADVANCE(212); - END_STATE(); - case 146: - if (lookahead == 'c') ADVANCE(213); - END_STATE(); - case 147: - if (lookahead == 'g') ADVANCE(214); - END_STATE(); - case 148: - if (lookahead == 'l') ADVANCE(215); - END_STATE(); - case 149: - if (lookahead == 'n') ADVANCE(216); - END_STATE(); - case 150: - if (lookahead == 'k') ADVANCE(217); - END_STATE(); - case 151: - ACCEPT_TOKEN(anon_sym_case); - END_STATE(); - case 152: - if (lookahead == 'h') ADVANCE(218); - END_STATE(); - case 153: - if (lookahead == 's') ADVANCE(219); - END_STATE(); - case 154: - if (lookahead == 'w') ADVANCE(220); - END_STATE(); - case 155: - if (lookahead == 'e') ADVANCE(221); - END_STATE(); - case 156: - if (lookahead == 'i') ADVANCE(222); - END_STATE(); - case 157: - if (lookahead == 'l') ADVANCE(223); - END_STATE(); - case 158: - if (lookahead == 'e') ADVANCE(224); - END_STATE(); - case 159: - if (lookahead == 'i') ADVANCE(225); - END_STATE(); - case 160: - if (lookahead == 'u') ADVANCE(226); - END_STATE(); - case 161: - if (lookahead == 'n') ADVANCE(227); - END_STATE(); - case 162: - if (lookahead == 't') ADVANCE(228); - END_STATE(); - case 163: - ACCEPT_TOKEN(anon_sym_else); - END_STATE(); - case 164: - ACCEPT_TOKEN(anon_sym_enum); - END_STATE(); - case 165: - if (lookahead == 'i') ADVANCE(229); - END_STATE(); - case 166: - if (lookahead == 'r') ADVANCE(230); - END_STATE(); - case 167: - if (lookahead == 'n') ADVANCE(231); - END_STATE(); - case 168: - ACCEPT_TOKEN(anon_sym_goto); - END_STATE(); - case 169: - if (lookahead == 'n') ADVANCE(232); - END_STATE(); - case 170: - if (lookahead == 's') ADVANCE(233); - END_STATE(); - case 171: - if (lookahead == 'p') ADVANCE(234); - END_STATE(); - case 172: - if (lookahead == 'e') ADVANCE(235); - END_STATE(); - case 173: - if (lookahead == 'a') ADVANCE(236); - END_STATE(); - case 174: - if (lookahead == 'a') ADVANCE(237); - END_STATE(); - case 175: - if (lookahead == 'e') ADVANCE(238); - END_STATE(); - case 176: - if (lookahead == 'i') ADVANCE(239); - END_STATE(); - case 177: - if (lookahead == 's') ADVANCE(240); - END_STATE(); - case 178: - if (lookahead == 'r') ADVANCE(241); - END_STATE(); - case 179: - if (lookahead == 'o') ADVANCE(242); - END_STATE(); - case 180: - if (lookahead == 'i') ADVANCE(243); - END_STATE(); - case 181: - if (lookahead == 'c') ADVANCE(244); - END_STATE(); - case 182: - if (lookahead == 'c') ADVANCE(245); - END_STATE(); - case 183: - if (lookahead == 'l') ADVANCE(246); - END_STATE(); - case 184: - ACCEPT_TOKEN(sym_this); - END_STATE(); - case 185: - if (lookahead == 'a') ADVANCE(247); - END_STATE(); - case 186: - if (lookahead == 'd') ADVANCE(248); - if (lookahead == 'n') ADVANCE(249); - END_STATE(); - case 187: - if (lookahead == 'n') ADVANCE(250); - END_STATE(); - case 188: - if (lookahead == 'g') ADVANCE(251); - END_STATE(); - case 189: - if (lookahead == 'u') ADVANCE(252); - END_STATE(); - case 190: - if (lookahead == 'e') ADVANCE(253); - END_STATE(); - case 191: - if (lookahead == 'n') ADVANCE(254); - END_STATE(); - case 192: - if (lookahead == 'r') ADVANCE(255); - END_STATE(); - case 193: - if (lookahead == 'G') ADVANCE(256); - END_STATE(); - case 194: - if (lookahead == 'g') ADVANCE(257); - END_STATE(); - case 195: - if (lookahead == 'e') ADVANCE(258); - END_STATE(); - case 196: - if (lookahead == 'c') ADVANCE(259); - END_STATE(); - case 197: - if (lookahead == 'c') ADVANCE(260); - END_STATE(); - case 198: - if (lookahead == 'l') ADVANCE(261); - END_STATE(); - case 199: - if (lookahead == 'e') ADVANCE(262); - END_STATE(); - case 200: - if (lookahead == 't') ADVANCE(263); - END_STATE(); - case 201: - if (lookahead == 'a') ADVANCE(264); - END_STATE(); - case 202: - if (lookahead == 'c') ADVANCE(265); - END_STATE(); - case 203: - if (lookahead == 'i') ADVANCE(266); - END_STATE(); - case 204: - if (lookahead == 'v') ADVANCE(267); - END_STATE(); - case 205: - if (lookahead == 't') ADVANCE(268); - END_STATE(); - case 206: - if (lookahead == 'r') ADVANCE(269); - END_STATE(); - case 207: - if (lookahead == 'c') ADVANCE(270); - END_STATE(); - case 208: - if (lookahead == 's') ADVANCE(271); - END_STATE(); - case 209: - if (lookahead == 'e') ADVANCE(272); - END_STATE(); - case 210: - ACCEPT_TOKEN(anon_sym___try); - END_STATE(); - case 211: - if (lookahead == 'l') ADVANCE(273); - END_STATE(); - case 212: - if (lookahead == 'r') ADVANCE(274); - END_STATE(); - case 213: - if (lookahead == 't') ADVANCE(275); - END_STATE(); - case 214: - if (lookahead == 'n') ADVANCE(276); - END_STATE(); - case 215: - if (lookahead == 'i') ADVANCE(277); - END_STATE(); - case 216: - if (lookahead == 'a') ADVANCE(278); - if (lookahead == 'o') ADVANCE(279); - END_STATE(); - case 217: - ACCEPT_TOKEN(anon_sym_break); - END_STATE(); - case 218: - ACCEPT_TOKEN(anon_sym_catch); - END_STATE(); - case 219: - ACCEPT_TOKEN(anon_sym_class); - END_STATE(); - case 220: - if (lookahead == 'a') ADVANCE(280); - END_STATE(); - case 221: - if (lookahead == 't') ADVANCE(281); - END_STATE(); - case 222: - if (lookahead == 'e') ADVANCE(282); - END_STATE(); - case 223: - ACCEPT_TOKEN(anon_sym_compl); - END_STATE(); - case 224: - if (lookahead == 'p') ADVANCE(283); - END_STATE(); - case 225: - if (lookahead == 'n') ADVANCE(284); - END_STATE(); - case 226: - if (lookahead == 'l') ADVANCE(285); - END_STATE(); - case 227: - if (lookahead == 'e') ADVANCE(286); - END_STATE(); - case 228: - if (lookahead == 'e') ADVANCE(287); - END_STATE(); - case 229: - if (lookahead == 'c') ADVANCE(288); - END_STATE(); - case 230: - if (lookahead == 'n') ADVANCE(289); - END_STATE(); - case 231: - if (lookahead == 'd') ADVANCE(290); - END_STATE(); - case 232: - if (lookahead == 'e') ADVANCE(291); - END_STATE(); - case 233: - if (lookahead == 'p') ADVANCE(292); - END_STATE(); - case 234: - if (lookahead == 't') ADVANCE(293); - END_STATE(); - case 235: - if (lookahead == 't') ADVANCE(294); - END_STATE(); - case 236: - if (lookahead == 't') ADVANCE(295); - END_STATE(); - case 237: - if (lookahead == 't') ADVANCE(296); - END_STATE(); - case 238: - if (lookahead == 'c') ADVANCE(297); - END_STATE(); - case 239: - if (lookahead == 'c') ADVANCE(298); - END_STATE(); - case 240: - if (lookahead == 't') ADVANCE(299); - END_STATE(); - case 241: - if (lookahead == 'n') ADVANCE(300); - END_STATE(); - case 242: - if (lookahead == 'f') ADVANCE(301); - END_STATE(); - case 243: - if (lookahead == 'c') ADVANCE(302); - END_STATE(); - case 244: - if (lookahead == 't') ADVANCE(303); - END_STATE(); - case 245: - if (lookahead == 'h') ADVANCE(304); - END_STATE(); - case 246: - if (lookahead == 'a') ADVANCE(305); - END_STATE(); - case 247: - if (lookahead == 'd') ADVANCE(306); - END_STATE(); - case 248: - if (lookahead == 'e') ADVANCE(307); - END_STATE(); - case 249: - if (lookahead == 'a') ADVANCE(308); - END_STATE(); - case 250: - ACCEPT_TOKEN(anon_sym_union); - END_STATE(); - case 251: - ACCEPT_TOKEN(anon_sym_using); - END_STATE(); - case 252: - if (lookahead == 'a') ADVANCE(309); - END_STATE(); - case 253: - ACCEPT_TOKEN(anon_sym_while); - END_STATE(); - case 254: - if (lookahead == 'o') ADVANCE(310); - END_STATE(); - case 255: - if (lookahead == 'i') ADVANCE(311); - END_STATE(); - case 256: - if (lookahead == 'R') ADVANCE(312); - END_STATE(); - case 257: - if (lookahead == 'n') ADVANCE(313); - END_STATE(); - case 258: - if (lookahead == 'd') ADVANCE(314); - END_STATE(); - case 259: - if (lookahead == 'l') ADVANCE(315); - END_STATE(); - case 260: - if (lookahead == 'a') ADVANCE(316); - END_STATE(); - case 261: - if (lookahead == 's') ADVANCE(317); - END_STATE(); - case 262: - if (lookahead == 'p') ADVANCE(318); - END_STATE(); - case 263: - if (lookahead == 'c') ADVANCE(319); - END_STATE(); - case 264: - if (lookahead == 'l') ADVANCE(320); - END_STATE(); - case 265: - if (lookahead == 'e') ADVANCE(321); - END_STATE(); - case 266: - if (lookahead == 'n') ADVANCE(322); - END_STATE(); - case 267: - if (lookahead == 'e') ADVANCE(323); - END_STATE(); - case 268: - if (lookahead == 'r') ADVANCE(324); - END_STATE(); - case 269: - ACCEPT_TOKEN(sym_ms_signed_ptr_modifier); - END_STATE(); - case 270: - if (lookahead == 'a') ADVANCE(325); - END_STATE(); - case 271: - if (lookahead == 'c') ADVANCE(326); - END_STATE(); - case 272: - if (lookahead == 'a') ADVANCE(327); - END_STATE(); - case 273: - if (lookahead == 'i') ADVANCE(328); - END_STATE(); - case 274: - ACCEPT_TOKEN(sym_ms_unsigned_ptr_modifier); - END_STATE(); - case 275: - if (lookahead == 'o') ADVANCE(329); - END_STATE(); - case 276: - if (lookahead == 'o') ADVANCE(330); - END_STATE(); - case 277: - if (lookahead == 'g') ADVANCE(331); - END_STATE(); - case 278: - if (lookahead == 's') ADVANCE(332); - END_STATE(); - case 279: - if (lookahead == 'f') ADVANCE(333); - END_STATE(); - case 280: - if (lookahead == 'i') ADVANCE(334); - END_STATE(); - case 281: - if (lookahead == 'u') ADVANCE(335); - END_STATE(); - case 282: - if (lookahead == 'l') ADVANCE(336); - END_STATE(); - case 283: - if (lookahead == 't') ADVANCE(337); - END_STATE(); - case 284: - if (lookahead == 'u') ADVANCE(338); - END_STATE(); - case 285: - if (lookahead == 't') ADVANCE(339); - END_STATE(); - case 286: - if (lookahead == 'd') ADVANCE(340); - END_STATE(); - case 287: - ACCEPT_TOKEN(anon_sym_delete); - END_STATE(); - case 288: - if (lookahead == 'i') ADVANCE(341); - END_STATE(); - case 289: - ACCEPT_TOKEN(anon_sym_extern); - END_STATE(); - case 290: - ACCEPT_TOKEN(anon_sym_friend); - END_STATE(); - case 291: - ACCEPT_TOKEN(anon_sym_inline); - END_STATE(); - case 292: - if (lookahead == 'a') ADVANCE(342); - END_STATE(); - case 293: - if (lookahead == 'r') ADVANCE(343); - END_STATE(); - case 294: - if (lookahead == 'o') ADVANCE(344); - END_STATE(); - case 295: - if (lookahead == 'o') ADVANCE(345); - END_STATE(); - case 296: - if (lookahead == 'e') ADVANCE(346); - END_STATE(); - case 297: - if (lookahead == 't') ADVANCE(347); - END_STATE(); - case 298: - ACCEPT_TOKEN(anon_sym_public); - END_STATE(); - case 299: - if (lookahead == 'e') ADVANCE(348); - END_STATE(); - case 300: - ACCEPT_TOKEN(anon_sym_return); - END_STATE(); - case 301: - ACCEPT_TOKEN(anon_sym_sizeof); - END_STATE(); - case 302: - ACCEPT_TOKEN(anon_sym_static); - if (lookahead == '_') ADVANCE(349); - END_STATE(); - case 303: - ACCEPT_TOKEN(anon_sym_struct); - END_STATE(); - case 304: - ACCEPT_TOKEN(anon_sym_switch); - END_STATE(); - case 305: - if (lookahead == 't') ADVANCE(350); - END_STATE(); - case 306: - if (lookahead == '_') ADVANCE(351); - END_STATE(); - case 307: - if (lookahead == 'f') ADVANCE(352); - END_STATE(); - case 308: - if (lookahead == 'm') ADVANCE(353); - END_STATE(); - case 309: - if (lookahead == 'l') ADVANCE(354); - END_STATE(); - case 310: - if (lookahead == 'f') ADVANCE(355); - END_STATE(); - case 311: - if (lookahead == 'c') ADVANCE(356); - END_STATE(); - case 312: - if (lookahead == 'E') ADVANCE(357); - END_STATE(); - case 313: - if (lookahead == 'o') ADVANCE(358); - END_STATE(); - case 314: - ACCEPT_TOKEN(anon_sym___based); - END_STATE(); - case 315: - ACCEPT_TOKEN(anon_sym___cdecl); - END_STATE(); - case 316: - if (lookahead == 'l') ADVANCE(359); - END_STATE(); - case 317: - if (lookahead == 'p') ADVANCE(360); - END_STATE(); - case 318: - if (lookahead == 't') ADVANCE(361); - END_STATE(); - case 319: - if (lookahead == 'a') ADVANCE(362); - END_STATE(); - case 320: - if (lookahead == 'l') ADVANCE(363); - END_STATE(); - case 321: - if (lookahead == 'i') ADVANCE(364); - END_STATE(); - case 322: - if (lookahead == 'e') ADVANCE(365); - END_STATE(); - case 323: - ACCEPT_TOKEN(anon_sym___leave); - END_STATE(); - case 324: - if (lookahead == 'i') ADVANCE(366); - END_STATE(); - case 325: - if (lookahead == 'l') ADVANCE(367); - END_STATE(); - case 326: - if (lookahead == 'a') ADVANCE(368); - END_STATE(); - case 327: - if (lookahead == 'd') ADVANCE(369); - END_STATE(); - case 328: - if (lookahead == 'g') ADVANCE(370); - END_STATE(); - case 329: - if (lookahead == 'r') ADVANCE(371); - END_STATE(); - case 330: - if (lookahead == 'f') ADVANCE(372); - END_STATE(); - case 331: - if (lookahead == 'n') ADVANCE(373); - END_STATE(); - case 332: - ACCEPT_TOKEN(anon_sym_alignas); - END_STATE(); - case 333: - ACCEPT_TOKEN(anon_sym_alignof); - END_STATE(); - case 334: - if (lookahead == 't') ADVANCE(374); - END_STATE(); - case 335: - if (lookahead == 'r') ADVANCE(375); - END_STATE(); - case 336: - if (lookahead == 'd') ADVANCE(376); - END_STATE(); - case 337: - ACCEPT_TOKEN(anon_sym_concept); - END_STATE(); - case 338: - if (lookahead == 'e') ADVANCE(377); - END_STATE(); - case 339: - ACCEPT_TOKEN(anon_sym_default); - END_STATE(); - case 340: - ACCEPT_TOKEN(anon_sym_defined); - END_STATE(); - case 341: - if (lookahead == 't') ADVANCE(378); - END_STATE(); - case 342: - if (lookahead == 'c') ADVANCE(379); - END_STATE(); - case 343: - ACCEPT_TOKEN(anon_sym_nullptr); - END_STATE(); - case 344: - if (lookahead == 'f') ADVANCE(380); - END_STATE(); - case 345: - if (lookahead == 'r') ADVANCE(381); - END_STATE(); - case 346: - ACCEPT_TOKEN(anon_sym_private); - END_STATE(); - case 347: - if (lookahead == 'e') ADVANCE(382); - END_STATE(); - case 348: - if (lookahead == 'r') ADVANCE(383); - END_STATE(); - case 349: - if (lookahead == 'a') ADVANCE(384); - END_STATE(); - case 350: - if (lookahead == 'e') ADVANCE(385); - END_STATE(); - case 351: - if (lookahead == 'l') ADVANCE(386); - END_STATE(); - case 352: - ACCEPT_TOKEN(anon_sym_typedef); - END_STATE(); - case 353: - if (lookahead == 'e') ADVANCE(387); - END_STATE(); - case 354: - ACCEPT_TOKEN(anon_sym_virtual); - END_STATE(); - case 355: - ACCEPT_TOKEN(anon_sym__Alignof); - END_STATE(); - case 356: - ACCEPT_TOKEN(anon_sym__Generic); - END_STATE(); - case 357: - if (lookahead == 'P') ADVANCE(388); - END_STATE(); - case 358: - if (lookahead == 'f') ADVANCE(389); - END_STATE(); - case 359: - if (lookahead == 'l') ADVANCE(390); - END_STATE(); - case 360: - if (lookahead == 'e') ADVANCE(391); - END_STATE(); - case 361: - ACCEPT_TOKEN(anon_sym___except); - END_STATE(); - case 362: - if (lookahead == 'l') ADVANCE(392); - END_STATE(); - case 363: - if (lookahead == 'y') ADVANCE(393); - END_STATE(); - case 364: - if (lookahead == 'n') ADVANCE(394); - END_STATE(); - case 365: - ACCEPT_TOKEN(anon_sym___inline); - if (lookahead == '_') ADVANCE(395); - END_STATE(); - case 366: - if (lookahead == 'c') ADVANCE(396); - END_STATE(); - case 367: - if (lookahead == 'l') ADVANCE(397); - END_STATE(); - case 368: - if (lookahead == 'l') ADVANCE(398); - END_STATE(); - case 369: - ACCEPT_TOKEN(anon_sym___thread); - END_STATE(); - case 370: - if (lookahead == 'n') ADVANCE(399); - END_STATE(); - case 371: - if (lookahead == 'c') ADVANCE(400); - END_STATE(); - case 372: - ACCEPT_TOKEN(anon_sym__alignof); - END_STATE(); - case 373: - if (lookahead == 'e') ADVANCE(401); - END_STATE(); - case 374: - ACCEPT_TOKEN(anon_sym_co_await); - END_STATE(); - case 375: - if (lookahead == 'n') ADVANCE(402); - END_STATE(); - case 376: - ACCEPT_TOKEN(anon_sym_co_yield); - END_STATE(); - case 377: - ACCEPT_TOKEN(anon_sym_continue); - END_STATE(); - case 378: - ACCEPT_TOKEN(anon_sym_explicit); - END_STATE(); - case 379: - if (lookahead == 'e') ADVANCE(403); - END_STATE(); - case 380: - ACCEPT_TOKEN(anon_sym_offsetof); - END_STATE(); - case 381: - ACCEPT_TOKEN(anon_sym_operator); - END_STATE(); - case 382: - if (lookahead == 'd') ADVANCE(404); - END_STATE(); - case 383: - ACCEPT_TOKEN(anon_sym_register); - END_STATE(); - case 384: - if (lookahead == 's') ADVANCE(405); - END_STATE(); - case 385: - ACCEPT_TOKEN(anon_sym_template); - END_STATE(); - case 386: - if (lookahead == 'o') ADVANCE(406); - END_STATE(); - case 387: - ACCEPT_TOKEN(anon_sym_typename); - END_STATE(); - case 388: - if (lookahead == '_') ADVANCE(407); - END_STATE(); - case 389: - ACCEPT_TOKEN(anon_sym___alignof); - if (lookahead == '_') ADVANCE(408); - END_STATE(); - case 390: - ACCEPT_TOKEN(anon_sym___clrcall); - END_STATE(); - case 391: - if (lookahead == 'c') ADVANCE(409); - END_STATE(); - case 392: - if (lookahead == 'l') ADVANCE(410); - END_STATE(); - case 393: - ACCEPT_TOKEN(anon_sym___finally); - END_STATE(); - case 394: - if (lookahead == 'l') ADVANCE(411); - END_STATE(); - case 395: - if (lookahead == '_') ADVANCE(412); - END_STATE(); - case 396: - if (lookahead == 't') ADVANCE(413); - END_STATE(); - case 397: - ACCEPT_TOKEN(anon_sym___stdcall); - END_STATE(); - case 398: - if (lookahead == 'l') ADVANCE(414); - END_STATE(); - case 399: - if (lookahead == 'e') ADVANCE(415); - END_STATE(); - case 400: - if (lookahead == 'a') ADVANCE(416); - END_STATE(); - case 401: - if (lookahead == 'd') ADVANCE(417); - END_STATE(); - case 402: - ACCEPT_TOKEN(anon_sym_co_return); - END_STATE(); - case 403: - ACCEPT_TOKEN(anon_sym_namespace); - END_STATE(); - case 404: - ACCEPT_TOKEN(anon_sym_protected); - END_STATE(); - case 405: - if (lookahead == 's') ADVANCE(418); - END_STATE(); - case 406: - if (lookahead == 'c') ADVANCE(419); - END_STATE(); - case 407: - if (lookahead == 'E') ADVANCE(420); - END_STATE(); - case 408: - if (lookahead == '_') ADVANCE(421); - END_STATE(); - case 409: - ACCEPT_TOKEN(anon_sym___declspec); - END_STATE(); - case 410: - ACCEPT_TOKEN(anon_sym___fastcall); - END_STATE(); - case 411: - if (lookahead == 'i') ADVANCE(422); - END_STATE(); - case 412: - ACCEPT_TOKEN(anon_sym___inline__); - END_STATE(); - case 413: - ACCEPT_TOKEN(sym_ms_restrict_modifier); - END_STATE(); - case 414: - ACCEPT_TOKEN(anon_sym___thiscall); - END_STATE(); - case 415: - if (lookahead == 'd') ADVANCE(423); - END_STATE(); - case 416: - if (lookahead == 'l') ADVANCE(424); - END_STATE(); - case 417: - ACCEPT_TOKEN(anon_sym__unaligned); - END_STATE(); - case 418: - if (lookahead == 'e') ADVANCE(425); - END_STATE(); - case 419: - if (lookahead == 'a') ADVANCE(426); - END_STATE(); - case 420: - if (lookahead == 'X') ADVANCE(427); - END_STATE(); - case 421: - ACCEPT_TOKEN(anon_sym___alignof__); - END_STATE(); - case 422: - if (lookahead == 'n') ADVANCE(428); - END_STATE(); - case 423: - ACCEPT_TOKEN(anon_sym___unaligned); - END_STATE(); - case 424: - if (lookahead == 'l') ADVANCE(429); - END_STATE(); - case 425: - if (lookahead == 'r') ADVANCE(430); - END_STATE(); - case 426: - if (lookahead == 'l') ADVANCE(431); - END_STATE(); - case 427: - if (lookahead == 'P') ADVANCE(432); - END_STATE(); - case 428: - if (lookahead == 'e') ADVANCE(433); - END_STATE(); - case 429: - ACCEPT_TOKEN(anon_sym___vectorcall); - END_STATE(); - case 430: - if (lookahead == 't') ADVANCE(434); - END_STATE(); - case 431: - ACCEPT_TOKEN(anon_sym_thread_local); - END_STATE(); - case 432: - if (lookahead == 'R') ADVANCE(435); - END_STATE(); - case 433: - ACCEPT_TOKEN(anon_sym___forceinline); - END_STATE(); - case 434: - ACCEPT_TOKEN(anon_sym_static_assert); - END_STATE(); - case 435: - if (lookahead == 'E') ADVANCE(436); - END_STATE(); - case 436: - if (lookahead == 'S') ADVANCE(437); - END_STATE(); - case 437: - if (lookahead == 'S') ADVANCE(438); - END_STATE(); - case 438: - if (lookahead == 'I') ADVANCE(439); - END_STATE(); - case 439: - if (lookahead == 'O') ADVANCE(440); - END_STATE(); - case 440: - if (lookahead == 'N') ADVANCE(441); - END_STATE(); - case 441: - ACCEPT_TOKEN(anon_sym___SEMGREP_EXPRESSION); + case 597: + ACCEPT_TOKEN(anon_sym___SEMGREP_EXPRESSION); END_STATE(); default: return false; @@ -35406,8697 +26418,8697 @@ 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 = 1044}, - [2] = {.lex_state = 1044}, - [3] = {.lex_state = 1044}, - [4] = {.lex_state = 1044}, - [5] = {.lex_state = 1044}, - [6] = {.lex_state = 1044}, - [7] = {.lex_state = 1044}, - [8] = {.lex_state = 1044}, - [9] = {.lex_state = 1044}, - [10] = {.lex_state = 1044}, - [11] = {.lex_state = 1044}, - [12] = {.lex_state = 1044}, - [13] = {.lex_state = 1044}, - [14] = {.lex_state = 1044}, - [15] = {.lex_state = 1044}, - [16] = {.lex_state = 488}, - [17] = {.lex_state = 488}, - [18] = {.lex_state = 488}, - [19] = {.lex_state = 488}, - [20] = {.lex_state = 488}, - [21] = {.lex_state = 488}, - [22] = {.lex_state = 488}, - [23] = {.lex_state = 488}, - [24] = {.lex_state = 488}, - [25] = {.lex_state = 488}, - [26] = {.lex_state = 488}, - [27] = {.lex_state = 488}, - [28] = {.lex_state = 488}, - [29] = {.lex_state = 488}, - [30] = {.lex_state = 488}, - [31] = {.lex_state = 488}, - [32] = {.lex_state = 488}, - [33] = {.lex_state = 488}, - [34] = {.lex_state = 488}, - [35] = {.lex_state = 488}, - [36] = {.lex_state = 492}, - [37] = {.lex_state = 492}, - [38] = {.lex_state = 492}, - [39] = {.lex_state = 492}, - [40] = {.lex_state = 492}, - [41] = {.lex_state = 492}, - [42] = {.lex_state = 492}, - [43] = {.lex_state = 492}, - [44] = {.lex_state = 492}, - [45] = {.lex_state = 492}, - [46] = {.lex_state = 492}, - [47] = {.lex_state = 492}, - [48] = {.lex_state = 492}, - [49] = {.lex_state = 492}, - [50] = {.lex_state = 492}, - [51] = {.lex_state = 488}, - [52] = {.lex_state = 492}, - [53] = {.lex_state = 492}, - [54] = {.lex_state = 1044}, - [55] = {.lex_state = 1044}, - [56] = {.lex_state = 491}, - [57] = {.lex_state = 1044}, - [58] = {.lex_state = 491}, - [59] = {.lex_state = 1044}, - [60] = {.lex_state = 1044}, - [61] = {.lex_state = 1044}, - [62] = {.lex_state = 1044}, - [63] = {.lex_state = 1044}, - [64] = {.lex_state = 1044}, - [65] = {.lex_state = 1044}, - [66] = {.lex_state = 1044}, - [67] = {.lex_state = 1044}, - [68] = {.lex_state = 1044}, - [69] = {.lex_state = 1044}, - [70] = {.lex_state = 491}, - [71] = {.lex_state = 1044}, - [72] = {.lex_state = 1044}, - [73] = {.lex_state = 1044}, - [74] = {.lex_state = 1044}, - [75] = {.lex_state = 1044}, - [76] = {.lex_state = 1044}, - [77] = {.lex_state = 1044}, - [78] = {.lex_state = 1044}, - [79] = {.lex_state = 1044}, - [80] = {.lex_state = 1044}, - [81] = {.lex_state = 1044}, - [82] = {.lex_state = 1044}, - [83] = {.lex_state = 1044}, - [84] = {.lex_state = 1044}, - [85] = {.lex_state = 1044}, - [86] = {.lex_state = 1044}, - [87] = {.lex_state = 1044}, - [88] = {.lex_state = 1044}, - [89] = {.lex_state = 1044}, - [90] = {.lex_state = 1044}, - [91] = {.lex_state = 1044}, - [92] = {.lex_state = 1044}, - [93] = {.lex_state = 1044}, - [94] = {.lex_state = 1044}, - [95] = {.lex_state = 1044}, - [96] = {.lex_state = 1044}, - [97] = {.lex_state = 1044}, - [98] = {.lex_state = 1044}, - [99] = {.lex_state = 1044}, - [100] = {.lex_state = 1044}, - [101] = {.lex_state = 1044}, - [102] = {.lex_state = 1044}, - [103] = {.lex_state = 1044}, - [104] = {.lex_state = 1044}, - [105] = {.lex_state = 1044}, - [106] = {.lex_state = 1044}, - [107] = {.lex_state = 1044}, - [108] = {.lex_state = 1044}, - [109] = {.lex_state = 1044}, - [110] = {.lex_state = 1044}, - [111] = {.lex_state = 1044}, - [112] = {.lex_state = 1044}, - [113] = {.lex_state = 1044}, - [114] = {.lex_state = 1044}, - [115] = {.lex_state = 1044}, - [116] = {.lex_state = 1044}, - [117] = {.lex_state = 1044}, - [118] = {.lex_state = 1044}, - [119] = {.lex_state = 1044}, - [120] = {.lex_state = 488}, - [121] = {.lex_state = 488}, - [122] = {.lex_state = 488}, - [123] = {.lex_state = 488}, - [124] = {.lex_state = 488}, - [125] = {.lex_state = 492}, - [126] = {.lex_state = 492}, - [127] = {.lex_state = 492}, - [128] = {.lex_state = 492}, - [129] = {.lex_state = 492}, - [130] = {.lex_state = 491}, - [131] = {.lex_state = 1044}, - [132] = {.lex_state = 491}, - [133] = {.lex_state = 1044}, - [134] = {.lex_state = 1044}, - [135] = {.lex_state = 1044}, - [136] = {.lex_state = 491}, - [137] = {.lex_state = 1044}, - [138] = {.lex_state = 491}, - [139] = {.lex_state = 1044}, - [140] = {.lex_state = 1044}, - [141] = {.lex_state = 1044}, - [142] = {.lex_state = 1044}, - [143] = {.lex_state = 1044}, - [144] = {.lex_state = 491}, - [145] = {.lex_state = 490}, - [146] = {.lex_state = 490}, - [147] = {.lex_state = 490}, - [148] = {.lex_state = 490}, - [149] = {.lex_state = 490}, - [150] = {.lex_state = 497}, - [151] = {.lex_state = 497}, - [152] = {.lex_state = 497}, - [153] = {.lex_state = 497}, - [154] = {.lex_state = 497}, - [155] = {.lex_state = 497}, - [156] = {.lex_state = 497}, - [157] = {.lex_state = 497}, - [158] = {.lex_state = 497}, - [159] = {.lex_state = 497}, - [160] = {.lex_state = 497}, - [161] = {.lex_state = 497}, - [162] = {.lex_state = 497}, - [163] = {.lex_state = 497}, - [164] = {.lex_state = 497}, - [165] = {.lex_state = 497}, - [166] = {.lex_state = 497}, - [167] = {.lex_state = 497}, - [168] = {.lex_state = 497}, - [169] = {.lex_state = 497}, - [170] = {.lex_state = 497}, - [171] = {.lex_state = 470}, - [172] = {.lex_state = 470}, - [173] = {.lex_state = 477}, - [174] = {.lex_state = 477}, - [175] = {.lex_state = 1041}, - [176] = {.lex_state = 1041}, - [177] = {.lex_state = 472}, - [178] = {.lex_state = 497}, - [179] = {.lex_state = 1041}, - [180] = {.lex_state = 472}, - [181] = {.lex_state = 493}, - [182] = {.lex_state = 493}, - [183] = {.lex_state = 493}, - [184] = {.lex_state = 1041}, - [185] = {.lex_state = 1041}, - [186] = {.lex_state = 1042}, - [187] = {.lex_state = 1042}, - [188] = {.lex_state = 499}, - [189] = {.lex_state = 475}, - [190] = {.lex_state = 499}, - [191] = {.lex_state = 499}, - [192] = {.lex_state = 499}, - [193] = {.lex_state = 499}, - [194] = {.lex_state = 499}, - [195] = {.lex_state = 499}, - [196] = {.lex_state = 499}, - [197] = {.lex_state = 499}, - [198] = {.lex_state = 480}, - [199] = {.lex_state = 499}, - [200] = {.lex_state = 499}, - [201] = {.lex_state = 499}, - [202] = {.lex_state = 499}, - [203] = {.lex_state = 499}, - [204] = {.lex_state = 499}, - [205] = {.lex_state = 499}, - [206] = {.lex_state = 499}, - [207] = {.lex_state = 499}, - [208] = {.lex_state = 499}, - [209] = {.lex_state = 499}, - [210] = {.lex_state = 499}, - [211] = {.lex_state = 499}, - [212] = {.lex_state = 499}, - [213] = {.lex_state = 499}, - [214] = {.lex_state = 499}, - [215] = {.lex_state = 499}, - [216] = {.lex_state = 499}, - [217] = {.lex_state = 499}, - [218] = {.lex_state = 499}, - [219] = {.lex_state = 499}, - [220] = {.lex_state = 499}, - [221] = {.lex_state = 499}, - [222] = {.lex_state = 499}, - [223] = {.lex_state = 499}, - [224] = {.lex_state = 499}, - [225] = {.lex_state = 499}, - [226] = {.lex_state = 499}, - [227] = {.lex_state = 499}, - [228] = {.lex_state = 499}, - [229] = {.lex_state = 499}, - [230] = {.lex_state = 499}, - [231] = {.lex_state = 499}, - [232] = {.lex_state = 499}, - [233] = {.lex_state = 499}, - [234] = {.lex_state = 499}, - [235] = {.lex_state = 499}, - [236] = {.lex_state = 499}, - [237] = {.lex_state = 499}, - [238] = {.lex_state = 499}, - [239] = {.lex_state = 499}, - [240] = {.lex_state = 499}, - [241] = {.lex_state = 478}, - [242] = {.lex_state = 499}, - [243] = {.lex_state = 499}, - [244] = {.lex_state = 499}, - [245] = {.lex_state = 499}, - [246] = {.lex_state = 499}, - [247] = {.lex_state = 499}, - [248] = {.lex_state = 499}, - [249] = {.lex_state = 499}, - [250] = {.lex_state = 499}, - [251] = {.lex_state = 499}, - [252] = {.lex_state = 499}, - [253] = {.lex_state = 499}, - [254] = {.lex_state = 499}, - [255] = {.lex_state = 499}, - [256] = {.lex_state = 499}, - [257] = {.lex_state = 499}, - [258] = {.lex_state = 499}, - [259] = {.lex_state = 499}, - [260] = {.lex_state = 499}, - [261] = {.lex_state = 481}, - [262] = {.lex_state = 1042}, - [263] = {.lex_state = 482}, - [264] = {.lex_state = 500}, - [265] = {.lex_state = 479}, - [266] = {.lex_state = 500}, - [267] = {.lex_state = 500}, - [268] = {.lex_state = 488}, - [269] = {.lex_state = 500}, - [270] = {.lex_state = 500}, - [271] = {.lex_state = 500}, - [272] = {.lex_state = 500}, - [273] = {.lex_state = 488}, - [274] = {.lex_state = 500}, - [275] = {.lex_state = 500}, - [276] = {.lex_state = 500}, - [277] = {.lex_state = 500}, - [278] = {.lex_state = 500}, - [279] = {.lex_state = 500}, - [280] = {.lex_state = 500}, - [281] = {.lex_state = 500}, - [282] = {.lex_state = 500}, - [283] = {.lex_state = 500}, - [284] = {.lex_state = 500}, - [285] = {.lex_state = 500}, - [286] = {.lex_state = 500}, - [287] = {.lex_state = 500}, - [288] = {.lex_state = 500}, - [289] = {.lex_state = 500}, - [290] = {.lex_state = 500}, - [291] = {.lex_state = 500}, - [292] = {.lex_state = 500}, - [293] = {.lex_state = 500}, - [294] = {.lex_state = 500}, - [295] = {.lex_state = 500}, - [296] = {.lex_state = 500}, - [297] = {.lex_state = 500}, - [298] = {.lex_state = 500}, - [299] = {.lex_state = 488}, - [300] = {.lex_state = 488}, - [301] = {.lex_state = 488}, - [302] = {.lex_state = 488}, - [303] = {.lex_state = 488}, - [304] = {.lex_state = 492}, - [305] = {.lex_state = 1044}, - [306] = {.lex_state = 492}, - [307] = {.lex_state = 488}, - [308] = {.lex_state = 488}, - [309] = {.lex_state = 488}, - [310] = {.lex_state = 488}, - [311] = {.lex_state = 497}, - [312] = {.lex_state = 488}, - [313] = {.lex_state = 488}, - [314] = {.lex_state = 500}, - [315] = {.lex_state = 488}, - [316] = {.lex_state = 488}, - [317] = {.lex_state = 488}, - [318] = {.lex_state = 488}, - [319] = {.lex_state = 488}, - [320] = {.lex_state = 488}, - [321] = {.lex_state = 488}, - [322] = {.lex_state = 488}, - [323] = {.lex_state = 488}, - [324] = {.lex_state = 488}, - [325] = {.lex_state = 492}, - [326] = {.lex_state = 488}, - [327] = {.lex_state = 488}, - [328] = {.lex_state = 488}, - [329] = {.lex_state = 488}, - [330] = {.lex_state = 488}, - [331] = {.lex_state = 488}, - [332] = {.lex_state = 488}, - [333] = {.lex_state = 497}, - [334] = {.lex_state = 488}, - [335] = {.lex_state = 488}, - [336] = {.lex_state = 488}, - [337] = {.lex_state = 492}, - [338] = {.lex_state = 488}, - [339] = {.lex_state = 488}, - [340] = {.lex_state = 488}, - [341] = {.lex_state = 488}, - [342] = {.lex_state = 488}, - [343] = {.lex_state = 497}, - [344] = {.lex_state = 488}, - [345] = {.lex_state = 488}, - [346] = {.lex_state = 488}, - [347] = {.lex_state = 488}, - [348] = {.lex_state = 488}, - [349] = {.lex_state = 488}, - [350] = {.lex_state = 488}, - [351] = {.lex_state = 500}, - [352] = {.lex_state = 488}, - [353] = {.lex_state = 491}, - [354] = {.lex_state = 488}, - [355] = {.lex_state = 488}, - [356] = {.lex_state = 488}, - [357] = {.lex_state = 488}, - [358] = {.lex_state = 488}, - [359] = {.lex_state = 488}, - [360] = {.lex_state = 500}, - [361] = {.lex_state = 488}, - [362] = {.lex_state = 488}, - [363] = {.lex_state = 488}, - [364] = {.lex_state = 488}, - [365] = {.lex_state = 488}, - [366] = {.lex_state = 488}, - [367] = {.lex_state = 488}, - [368] = {.lex_state = 488}, - [369] = {.lex_state = 488}, - [370] = {.lex_state = 488}, - [371] = {.lex_state = 488}, - [372] = {.lex_state = 488}, - [373] = {.lex_state = 488}, - [374] = {.lex_state = 1044}, - [375] = {.lex_state = 488}, - [376] = {.lex_state = 500}, - [377] = {.lex_state = 488}, - [378] = {.lex_state = 488}, - [379] = {.lex_state = 488}, - [380] = {.lex_state = 488}, - [381] = {.lex_state = 488}, - [382] = {.lex_state = 488}, - [383] = {.lex_state = 488}, - [384] = {.lex_state = 488}, - [385] = {.lex_state = 488}, - [386] = {.lex_state = 488}, - [387] = {.lex_state = 488}, - [388] = {.lex_state = 488}, - [389] = {.lex_state = 488}, - [390] = {.lex_state = 500}, - [391] = {.lex_state = 488}, - [392] = {.lex_state = 488}, - [393] = {.lex_state = 488}, - [394] = {.lex_state = 488}, - [395] = {.lex_state = 488}, - [396] = {.lex_state = 488}, - [397] = {.lex_state = 488}, - [398] = {.lex_state = 488}, - [399] = {.lex_state = 1044}, - [400] = {.lex_state = 500}, - [401] = {.lex_state = 500}, - [402] = {.lex_state = 492}, - [403] = {.lex_state = 500}, - [404] = {.lex_state = 492}, - [405] = {.lex_state = 500}, - [406] = {.lex_state = 492}, - [407] = {.lex_state = 1044}, - [408] = {.lex_state = 500}, - [409] = {.lex_state = 1044}, - [410] = {.lex_state = 500}, - [411] = {.lex_state = 500}, - [412] = {.lex_state = 500}, - [413] = {.lex_state = 500}, - [414] = {.lex_state = 500}, - [415] = {.lex_state = 500}, - [416] = {.lex_state = 500}, - [417] = {.lex_state = 500}, - [418] = {.lex_state = 500}, - [419] = {.lex_state = 488}, - [420] = {.lex_state = 488}, - [421] = {.lex_state = 500}, - [422] = {.lex_state = 492}, - [423] = {.lex_state = 500}, - [424] = {.lex_state = 500}, - [425] = {.lex_state = 491}, - [426] = {.lex_state = 500}, - [427] = {.lex_state = 500}, - [428] = {.lex_state = 500}, - [429] = {.lex_state = 500}, - [430] = {.lex_state = 500}, - [431] = {.lex_state = 500}, - [432] = {.lex_state = 500}, - [433] = {.lex_state = 500}, - [434] = {.lex_state = 500}, - [435] = {.lex_state = 500}, - [436] = {.lex_state = 500}, - [437] = {.lex_state = 500}, - [438] = {.lex_state = 500}, - [439] = {.lex_state = 500}, - [440] = {.lex_state = 500}, - [441] = {.lex_state = 500}, - [442] = {.lex_state = 500}, - [443] = {.lex_state = 500}, - [444] = {.lex_state = 500}, - [445] = {.lex_state = 488}, - [446] = {.lex_state = 488}, - [447] = {.lex_state = 488}, - [448] = {.lex_state = 488}, - [449] = {.lex_state = 488}, - [450] = {.lex_state = 488}, - [451] = {.lex_state = 488}, - [452] = {.lex_state = 488}, - [453] = {.lex_state = 492}, - [454] = {.lex_state = 500}, - [455] = {.lex_state = 488}, - [456] = {.lex_state = 488}, - [457] = {.lex_state = 488}, - [458] = {.lex_state = 1044}, - [459] = {.lex_state = 491}, - [460] = {.lex_state = 497}, - [461] = {.lex_state = 492}, - [462] = {.lex_state = 492}, - [463] = {.lex_state = 492}, - [464] = {.lex_state = 492}, - [465] = {.lex_state = 492}, - [466] = {.lex_state = 492}, - [467] = {.lex_state = 492}, - [468] = {.lex_state = 492}, - [469] = {.lex_state = 492}, - [470] = {.lex_state = 1044}, - [471] = {.lex_state = 492}, - [472] = {.lex_state = 492}, - [473] = {.lex_state = 492}, - [474] = {.lex_state = 1044}, - [475] = {.lex_state = 492}, - [476] = {.lex_state = 492}, - [477] = {.lex_state = 500}, - [478] = {.lex_state = 492}, - [479] = {.lex_state = 492}, - [480] = {.lex_state = 492}, - [481] = {.lex_state = 495}, - [482] = {.lex_state = 492}, - [483] = {.lex_state = 492}, - [484] = {.lex_state = 492}, - [485] = {.lex_state = 492}, - [486] = {.lex_state = 492}, - [487] = {.lex_state = 492}, - [488] = {.lex_state = 492}, - [489] = {.lex_state = 492}, - [490] = {.lex_state = 492}, - [491] = {.lex_state = 495}, - [492] = {.lex_state = 492}, - [493] = {.lex_state = 492}, - [494] = {.lex_state = 492}, - [495] = {.lex_state = 492}, - [496] = {.lex_state = 492}, - [497] = {.lex_state = 491}, - [498] = {.lex_state = 492}, - [499] = {.lex_state = 491}, - [500] = {.lex_state = 492}, - [501] = {.lex_state = 492}, - [502] = {.lex_state = 492}, - [503] = {.lex_state = 492}, - [504] = {.lex_state = 491}, - [505] = {.lex_state = 492}, - [506] = {.lex_state = 491}, - [507] = {.lex_state = 491}, - [508] = {.lex_state = 492}, - [509] = {.lex_state = 1044}, - [510] = {.lex_state = 492}, - [511] = {.lex_state = 492}, - [512] = {.lex_state = 492}, - [513] = {.lex_state = 492}, - [514] = {.lex_state = 492}, - [515] = {.lex_state = 492}, - [516] = {.lex_state = 492}, - [517] = {.lex_state = 492}, - [518] = {.lex_state = 492}, - [519] = {.lex_state = 492}, - [520] = {.lex_state = 492}, - [521] = {.lex_state = 492}, - [522] = {.lex_state = 492}, - [523] = {.lex_state = 1044}, - [524] = {.lex_state = 1044}, - [525] = {.lex_state = 1044}, - [526] = {.lex_state = 492}, - [527] = {.lex_state = 492}, - [528] = {.lex_state = 1044}, - [529] = {.lex_state = 492}, - [530] = {.lex_state = 492}, - [531] = {.lex_state = 492}, - [532] = {.lex_state = 492}, - [533] = {.lex_state = 492}, - [534] = {.lex_state = 1044}, - [535] = {.lex_state = 492}, - [536] = {.lex_state = 492}, - [537] = {.lex_state = 492}, - [538] = {.lex_state = 492}, - [539] = {.lex_state = 492}, - [540] = {.lex_state = 491}, - [541] = {.lex_state = 492}, - [542] = {.lex_state = 492}, - [543] = {.lex_state = 492}, - [544] = {.lex_state = 492}, - [545] = {.lex_state = 492}, - [546] = {.lex_state = 492}, - [547] = {.lex_state = 492}, - [548] = {.lex_state = 492}, - [549] = {.lex_state = 492}, - [550] = {.lex_state = 1044}, - [551] = {.lex_state = 492}, - [552] = {.lex_state = 492}, - [553] = {.lex_state = 492}, - [554] = {.lex_state = 492}, - [555] = {.lex_state = 492}, - [556] = {.lex_state = 492}, - [557] = {.lex_state = 492}, - [558] = {.lex_state = 492}, - [559] = {.lex_state = 492}, - [560] = {.lex_state = 492}, - [561] = {.lex_state = 492}, - [562] = {.lex_state = 492}, - [563] = {.lex_state = 492}, - [564] = {.lex_state = 492}, - [565] = {.lex_state = 492}, - [566] = {.lex_state = 492}, - [567] = {.lex_state = 492}, - [568] = {.lex_state = 492}, - [569] = {.lex_state = 1044}, - [570] = {.lex_state = 492}, - [571] = {.lex_state = 1044}, - [572] = {.lex_state = 1044}, - [573] = {.lex_state = 491}, - [574] = {.lex_state = 491}, - [575] = {.lex_state = 491}, - [576] = {.lex_state = 1044}, - [577] = {.lex_state = 491}, - [578] = {.lex_state = 491}, - [579] = {.lex_state = 491}, - [580] = {.lex_state = 491}, - [581] = {.lex_state = 491}, - [582] = {.lex_state = 491}, - [583] = {.lex_state = 491}, - [584] = {.lex_state = 1044}, - [585] = {.lex_state = 1044}, - [586] = {.lex_state = 491}, - [587] = {.lex_state = 491}, - [588] = {.lex_state = 1044}, - [589] = {.lex_state = 1044}, - [590] = {.lex_state = 1044}, - [591] = {.lex_state = 1044}, - [592] = {.lex_state = 491}, - [593] = {.lex_state = 491}, - [594] = {.lex_state = 491}, - [595] = {.lex_state = 491}, - [596] = {.lex_state = 491}, - [597] = {.lex_state = 491}, - [598] = {.lex_state = 1044}, - [599] = {.lex_state = 1044}, - [600] = {.lex_state = 491}, - [601] = {.lex_state = 1044}, - [602] = {.lex_state = 1044}, - [603] = {.lex_state = 1044}, - [604] = {.lex_state = 491}, - [605] = {.lex_state = 1044}, - [606] = {.lex_state = 491}, - [607] = {.lex_state = 491}, - [608] = {.lex_state = 491}, - [609] = {.lex_state = 1044}, - [610] = {.lex_state = 1044}, - [611] = {.lex_state = 1044}, - [612] = {.lex_state = 491}, - [613] = {.lex_state = 491}, - [614] = {.lex_state = 491}, - [615] = {.lex_state = 1044}, - [616] = {.lex_state = 1044}, - [617] = {.lex_state = 1044}, - [618] = {.lex_state = 1044}, - [619] = {.lex_state = 1044}, - [620] = {.lex_state = 657}, - [621] = {.lex_state = 657}, - [622] = {.lex_state = 1044}, - [623] = {.lex_state = 1044}, - [624] = {.lex_state = 1044}, - [625] = {.lex_state = 657}, - [626] = {.lex_state = 657}, - [627] = {.lex_state = 1044}, - [628] = {.lex_state = 1044}, - [629] = {.lex_state = 1044}, - [630] = {.lex_state = 1044}, - [631] = {.lex_state = 1044}, - [632] = {.lex_state = 1044}, - [633] = {.lex_state = 1044}, - [634] = {.lex_state = 1044}, - [635] = {.lex_state = 1044}, - [636] = {.lex_state = 1044}, - [637] = {.lex_state = 657}, - [638] = {.lex_state = 657}, - [639] = {.lex_state = 1044}, - [640] = {.lex_state = 657}, - [641] = {.lex_state = 657}, - [642] = {.lex_state = 1044}, - [643] = {.lex_state = 1044}, - [644] = {.lex_state = 1044}, - [645] = {.lex_state = 657}, - [646] = {.lex_state = 657}, - [647] = {.lex_state = 657}, - [648] = {.lex_state = 657}, - [649] = {.lex_state = 1044}, - [650] = {.lex_state = 1044}, - [651] = {.lex_state = 1044}, - [652] = {.lex_state = 1044}, - [653] = {.lex_state = 1044}, - [654] = {.lex_state = 1044}, - [655] = {.lex_state = 657}, - [656] = {.lex_state = 657}, - [657] = {.lex_state = 1044}, - [658] = {.lex_state = 491}, - [659] = {.lex_state = 1044}, - [660] = {.lex_state = 1044}, - [661] = {.lex_state = 1044}, - [662] = {.lex_state = 657}, - [663] = {.lex_state = 657}, - [664] = {.lex_state = 1044}, - [665] = {.lex_state = 1044}, - [666] = {.lex_state = 1044}, - [667] = {.lex_state = 1044}, - [668] = {.lex_state = 1044}, - [669] = {.lex_state = 1044}, - [670] = {.lex_state = 1044}, - [671] = {.lex_state = 1044}, - [672] = {.lex_state = 1044}, - [673] = {.lex_state = 1044}, - [674] = {.lex_state = 1044}, - [675] = {.lex_state = 491}, - [676] = {.lex_state = 491}, - [677] = {.lex_state = 491}, - [678] = {.lex_state = 491}, - [679] = {.lex_state = 1044}, - [680] = {.lex_state = 1044}, - [681] = {.lex_state = 1044}, - [682] = {.lex_state = 491}, - [683] = {.lex_state = 1044}, - [684] = {.lex_state = 491}, - [685] = {.lex_state = 1044}, - [686] = {.lex_state = 491}, - [687] = {.lex_state = 491}, - [688] = {.lex_state = 1044}, - [689] = {.lex_state = 1044}, - [690] = {.lex_state = 491}, - [691] = {.lex_state = 491}, - [692] = {.lex_state = 491}, - [693] = {.lex_state = 1044}, - [694] = {.lex_state = 1044}, - [695] = {.lex_state = 491}, - [696] = {.lex_state = 491}, - [697] = {.lex_state = 491}, - [698] = {.lex_state = 491}, - [699] = {.lex_state = 491}, - [700] = {.lex_state = 491}, - [701] = {.lex_state = 1044}, - [702] = {.lex_state = 491}, - [703] = {.lex_state = 1044}, - [704] = {.lex_state = 491}, - [705] = {.lex_state = 491}, - [706] = {.lex_state = 491}, - [707] = {.lex_state = 1043}, - [708] = {.lex_state = 1044}, - [709] = {.lex_state = 1044}, - [710] = {.lex_state = 1044}, - [711] = {.lex_state = 1044}, - [712] = {.lex_state = 1044}, - [713] = {.lex_state = 1044}, - [714] = {.lex_state = 1044}, - [715] = {.lex_state = 1044}, - [716] = {.lex_state = 1044}, - [717] = {.lex_state = 491}, - [718] = {.lex_state = 1044}, - [719] = {.lex_state = 1044}, - [720] = {.lex_state = 1044}, - [721] = {.lex_state = 1044}, - [722] = {.lex_state = 1044}, - [723] = {.lex_state = 1044}, - [724] = {.lex_state = 1044}, - [725] = {.lex_state = 491}, - [726] = {.lex_state = 491}, - [727] = {.lex_state = 491}, - [728] = {.lex_state = 491}, - [729] = {.lex_state = 1044}, - [730] = {.lex_state = 491}, - [731] = {.lex_state = 491}, - [732] = {.lex_state = 491}, - [733] = {.lex_state = 491}, - [734] = {.lex_state = 491}, - [735] = {.lex_state = 491}, - [736] = {.lex_state = 491}, - [737] = {.lex_state = 1044}, - [738] = {.lex_state = 1044}, - [739] = {.lex_state = 1044}, - [740] = {.lex_state = 1044}, - [741] = {.lex_state = 1044}, - [742] = {.lex_state = 1044}, - [743] = {.lex_state = 1044}, - [744] = {.lex_state = 1044}, - [745] = {.lex_state = 491}, - [746] = {.lex_state = 1044}, - [747] = {.lex_state = 1044}, - [748] = {.lex_state = 491}, - [749] = {.lex_state = 1044}, - [750] = {.lex_state = 491}, - [751] = {.lex_state = 1044}, - [752] = {.lex_state = 491}, - [753] = {.lex_state = 1044}, - [754] = {.lex_state = 491}, - [755] = {.lex_state = 491}, - [756] = {.lex_state = 1044}, - [757] = {.lex_state = 1044}, - [758] = {.lex_state = 491}, - [759] = {.lex_state = 1044}, - [760] = {.lex_state = 1044}, - [761] = {.lex_state = 491}, - [762] = {.lex_state = 491}, - [763] = {.lex_state = 491}, - [764] = {.lex_state = 491}, - [765] = {.lex_state = 491}, - [766] = {.lex_state = 491}, - [767] = {.lex_state = 1044}, - [768] = {.lex_state = 1044}, - [769] = {.lex_state = 491}, - [770] = {.lex_state = 1044}, - [771] = {.lex_state = 1044}, - [772] = {.lex_state = 1044}, - [773] = {.lex_state = 491}, - [774] = {.lex_state = 491}, - [775] = {.lex_state = 1044}, - [776] = {.lex_state = 1043}, - [777] = {.lex_state = 1044}, - [778] = {.lex_state = 1044}, - [779] = {.lex_state = 491}, - [780] = {.lex_state = 1044}, - [781] = {.lex_state = 491}, - [782] = {.lex_state = 491}, - [783] = {.lex_state = 491}, - [784] = {.lex_state = 491}, - [785] = {.lex_state = 491}, - [786] = {.lex_state = 491}, - [787] = {.lex_state = 1044}, - [788] = {.lex_state = 1044}, - [789] = {.lex_state = 1044}, - [790] = {.lex_state = 1044}, - [791] = {.lex_state = 1044}, - [792] = {.lex_state = 491}, - [793] = {.lex_state = 1044}, - [794] = {.lex_state = 1044}, - [795] = {.lex_state = 1044}, - [796] = {.lex_state = 491}, - [797] = {.lex_state = 491}, - [798] = {.lex_state = 491}, - [799] = {.lex_state = 491}, - [800] = {.lex_state = 1044}, - [801] = {.lex_state = 491}, - [802] = {.lex_state = 491}, - [803] = {.lex_state = 491}, - [804] = {.lex_state = 1044}, - [805] = {.lex_state = 1044}, - [806] = {.lex_state = 1044}, - [807] = {.lex_state = 476}, - [808] = {.lex_state = 603}, - [809] = {.lex_state = 603}, - [810] = {.lex_state = 603}, - [811] = {.lex_state = 603}, - [812] = {.lex_state = 603}, - [813] = {.lex_state = 603}, - [814] = {.lex_state = 603}, - [815] = {.lex_state = 603}, - [816] = {.lex_state = 603}, - [817] = {.lex_state = 603}, - [818] = {.lex_state = 603}, - [819] = {.lex_state = 603}, - [820] = {.lex_state = 657}, - [821] = {.lex_state = 603}, - [822] = {.lex_state = 603}, - [823] = {.lex_state = 1044}, - [824] = {.lex_state = 1044}, - [825] = {.lex_state = 1044}, - [826] = {.lex_state = 1044}, - [827] = {.lex_state = 1044}, - [828] = {.lex_state = 1044}, - [829] = {.lex_state = 1044}, - [830] = {.lex_state = 1044}, - [831] = {.lex_state = 1044}, - [832] = {.lex_state = 1044}, - [833] = {.lex_state = 1044}, - [834] = {.lex_state = 1044}, - [835] = {.lex_state = 1044}, - [836] = {.lex_state = 1044}, - [837] = {.lex_state = 1044}, - [838] = {.lex_state = 1044}, - [839] = {.lex_state = 1044}, - [840] = {.lex_state = 1044}, - [841] = {.lex_state = 1044}, - [842] = {.lex_state = 1044}, - [843] = {.lex_state = 1044}, - [844] = {.lex_state = 1044}, - [845] = {.lex_state = 1044}, - [846] = {.lex_state = 1044}, - [847] = {.lex_state = 1044}, - [848] = {.lex_state = 1044}, - [849] = {.lex_state = 483}, - [850] = {.lex_state = 1044}, - [851] = {.lex_state = 1044}, - [852] = {.lex_state = 1044}, - [853] = {.lex_state = 1044}, - [854] = {.lex_state = 1044}, - [855] = {.lex_state = 1044}, - [856] = {.lex_state = 1044}, - [857] = {.lex_state = 1044}, - [858] = {.lex_state = 1044}, - [859] = {.lex_state = 1044}, - [860] = {.lex_state = 1044}, - [861] = {.lex_state = 1044}, - [862] = {.lex_state = 1044}, - [863] = {.lex_state = 1044}, - [864] = {.lex_state = 1044}, - [865] = {.lex_state = 1044}, - [866] = {.lex_state = 1044}, - [867] = {.lex_state = 1044}, - [868] = {.lex_state = 1044}, - [869] = {.lex_state = 1044}, - [870] = {.lex_state = 1044}, - [871] = {.lex_state = 1044}, - [872] = {.lex_state = 1044}, - [873] = {.lex_state = 1044}, - [874] = {.lex_state = 1044}, - [875] = {.lex_state = 1044}, - [876] = {.lex_state = 1044}, - [877] = {.lex_state = 1044}, - [878] = {.lex_state = 1044}, - [879] = {.lex_state = 1044}, - [880] = {.lex_state = 1044}, - [881] = {.lex_state = 1044}, - [882] = {.lex_state = 1044}, - [883] = {.lex_state = 484}, - [884] = {.lex_state = 603}, - [885] = {.lex_state = 1043}, - [886] = {.lex_state = 485}, - [887] = {.lex_state = 655}, - [888] = {.lex_state = 655}, - [889] = {.lex_state = 655}, - [890] = {.lex_state = 655}, - [891] = {.lex_state = 655}, - [892] = {.lex_state = 655}, - [893] = {.lex_state = 655}, - [894] = {.lex_state = 655}, - [895] = {.lex_state = 655}, - [896] = {.lex_state = 655}, - [897] = {.lex_state = 655}, - [898] = {.lex_state = 655}, - [899] = {.lex_state = 655}, - [900] = {.lex_state = 655}, - [901] = {.lex_state = 655}, - [902] = {.lex_state = 655}, - [903] = {.lex_state = 655}, - [904] = {.lex_state = 655}, - [905] = {.lex_state = 655}, - [906] = {.lex_state = 655}, - [907] = {.lex_state = 655}, - [908] = {.lex_state = 655}, - [909] = {.lex_state = 655}, - [910] = {.lex_state = 1043}, - [911] = {.lex_state = 658}, - [912] = {.lex_state = 655}, - [913] = {.lex_state = 655}, - [914] = {.lex_state = 655}, - [915] = {.lex_state = 655}, - [916] = {.lex_state = 655}, - [917] = {.lex_state = 658}, - [918] = {.lex_state = 658}, - [919] = {.lex_state = 655}, - [920] = {.lex_state = 655}, - [921] = {.lex_state = 655}, - [922] = {.lex_state = 655}, - [923] = {.lex_state = 655}, - [924] = {.lex_state = 486}, - [925] = {.lex_state = 486}, - [926] = {.lex_state = 1044}, - [927] = {.lex_state = 1044}, - [928] = {.lex_state = 697}, - [929] = {.lex_state = 697}, - [930] = {.lex_state = 697}, - [931] = {.lex_state = 697}, - [932] = {.lex_state = 697}, - [933] = {.lex_state = 697}, - [934] = {.lex_state = 697}, - [935] = {.lex_state = 697}, - [936] = {.lex_state = 697}, - [937] = {.lex_state = 501}, - [938] = {.lex_state = 657}, - [939] = {.lex_state = 501}, - [940] = {.lex_state = 501}, - [941] = {.lex_state = 501}, - [942] = {.lex_state = 501}, - [943] = {.lex_state = 657}, - [944] = {.lex_state = 501}, - [945] = {.lex_state = 501}, - [946] = {.lex_state = 657}, - [947] = {.lex_state = 501}, - [948] = {.lex_state = 501}, - [949] = {.lex_state = 657}, - [950] = {.lex_state = 501}, - [951] = {.lex_state = 657}, - [952] = {.lex_state = 657}, - [953] = {.lex_state = 501}, - [954] = {.lex_state = 657}, - [955] = {.lex_state = 501}, - [956] = {.lex_state = 501}, - [957] = {.lex_state = 501}, - [958] = {.lex_state = 501}, - [959] = {.lex_state = 501}, - [960] = {.lex_state = 501}, - [961] = {.lex_state = 501}, - [962] = {.lex_state = 1044}, - [963] = {.lex_state = 501}, - [964] = {.lex_state = 501}, - [965] = {.lex_state = 657}, - [966] = {.lex_state = 501}, - [967] = {.lex_state = 501}, - [968] = {.lex_state = 501}, - [969] = {.lex_state = 501}, - [970] = {.lex_state = 501}, - [971] = {.lex_state = 501}, - [972] = {.lex_state = 501}, - [973] = {.lex_state = 657}, - [974] = {.lex_state = 490}, - [975] = {.lex_state = 494}, - [976] = {.lex_state = 494}, - [977] = {.lex_state = 490}, - [978] = {.lex_state = 490}, - [979] = {.lex_state = 490}, - [980] = {.lex_state = 490}, - [981] = {.lex_state = 490}, - [982] = {.lex_state = 490}, - [983] = {.lex_state = 490}, - [984] = {.lex_state = 490}, - [985] = {.lex_state = 490}, - [986] = {.lex_state = 490}, - [987] = {.lex_state = 490}, - [988] = {.lex_state = 490}, - [989] = {.lex_state = 490}, - [990] = {.lex_state = 490}, - [991] = {.lex_state = 490}, - [992] = {.lex_state = 490}, - [993] = {.lex_state = 490}, - [994] = {.lex_state = 490}, - [995] = {.lex_state = 490}, - [996] = {.lex_state = 490}, - [997] = {.lex_state = 490}, - [998] = {.lex_state = 490}, - [999] = {.lex_state = 490}, - [1000] = {.lex_state = 490}, - [1001] = {.lex_state = 490}, - [1002] = {.lex_state = 490}, - [1003] = {.lex_state = 490}, - [1004] = {.lex_state = 490}, - [1005] = {.lex_state = 490}, - [1006] = {.lex_state = 490}, - [1007] = {.lex_state = 490}, - [1008] = {.lex_state = 490}, - [1009] = {.lex_state = 490}, - [1010] = {.lex_state = 490}, - [1011] = {.lex_state = 490}, - [1012] = {.lex_state = 490}, - [1013] = {.lex_state = 490}, - [1014] = {.lex_state = 490}, - [1015] = {.lex_state = 490}, - [1016] = {.lex_state = 496}, - [1017] = {.lex_state = 496}, - [1018] = {.lex_state = 496}, - [1019] = {.lex_state = 496}, - [1020] = {.lex_state = 496}, - [1021] = {.lex_state = 496}, - [1022] = {.lex_state = 496}, - [1023] = {.lex_state = 496}, - [1024] = {.lex_state = 496}, - [1025] = {.lex_state = 496}, - [1026] = {.lex_state = 496}, - [1027] = {.lex_state = 496}, - [1028] = {.lex_state = 496}, - [1029] = {.lex_state = 496}, - [1030] = {.lex_state = 496}, - [1031] = {.lex_state = 496}, - [1032] = {.lex_state = 496}, - [1033] = {.lex_state = 496}, - [1034] = {.lex_state = 496}, - [1035] = {.lex_state = 496}, - [1036] = {.lex_state = 496}, - [1037] = {.lex_state = 496}, - [1038] = {.lex_state = 496}, - [1039] = {.lex_state = 496}, - [1040] = {.lex_state = 496}, - [1041] = {.lex_state = 496}, - [1042] = {.lex_state = 496}, - [1043] = {.lex_state = 496}, - [1044] = {.lex_state = 496}, - [1045] = {.lex_state = 496}, - [1046] = {.lex_state = 496}, - [1047] = {.lex_state = 496}, - [1048] = {.lex_state = 496}, - [1049] = {.lex_state = 496}, - [1050] = {.lex_state = 496}, - [1051] = {.lex_state = 496}, - [1052] = {.lex_state = 496}, - [1053] = {.lex_state = 496}, - [1054] = {.lex_state = 496}, - [1055] = {.lex_state = 496}, - [1056] = {.lex_state = 496}, - [1057] = {.lex_state = 496}, - [1058] = {.lex_state = 496}, - [1059] = {.lex_state = 496}, - [1060] = {.lex_state = 496}, - [1061] = {.lex_state = 496}, - [1062] = {.lex_state = 496}, - [1063] = {.lex_state = 496}, - [1064] = {.lex_state = 496}, - [1065] = {.lex_state = 496}, - [1066] = {.lex_state = 496}, - [1067] = {.lex_state = 496}, - [1068] = {.lex_state = 496}, - [1069] = {.lex_state = 496}, - [1070] = {.lex_state = 496}, - [1071] = {.lex_state = 496}, - [1072] = {.lex_state = 496}, - [1073] = {.lex_state = 496}, - [1074] = {.lex_state = 496}, - [1075] = {.lex_state = 496}, - [1076] = {.lex_state = 496}, - [1077] = {.lex_state = 496}, - [1078] = {.lex_state = 496}, - [1079] = {.lex_state = 496}, - [1080] = {.lex_state = 496}, - [1081] = {.lex_state = 496}, - [1082] = {.lex_state = 496}, - [1083] = {.lex_state = 496}, - [1084] = {.lex_state = 496}, - [1085] = {.lex_state = 517}, - [1086] = {.lex_state = 498}, - [1087] = {.lex_state = 512}, - [1088] = {.lex_state = 498}, - [1089] = {.lex_state = 498}, - [1090] = {.lex_state = 517}, - [1091] = {.lex_state = 517}, - [1092] = {.lex_state = 517}, - [1093] = {.lex_state = 498}, - [1094] = {.lex_state = 517}, - [1095] = {.lex_state = 498}, - [1096] = {.lex_state = 517}, - [1097] = {.lex_state = 498}, - [1098] = {.lex_state = 517}, - [1099] = {.lex_state = 517}, - [1100] = {.lex_state = 517}, - [1101] = {.lex_state = 498}, - [1102] = {.lex_state = 498}, - [1103] = {.lex_state = 498}, - [1104] = {.lex_state = 517}, - [1105] = {.lex_state = 517}, - [1106] = {.lex_state = 498}, - [1107] = {.lex_state = 498}, - [1108] = {.lex_state = 498}, - [1109] = {.lex_state = 498}, - [1110] = {.lex_state = 517}, - [1111] = {.lex_state = 496}, - [1112] = {.lex_state = 498}, - [1113] = {.lex_state = 496}, - [1114] = {.lex_state = 517}, - [1115] = {.lex_state = 496}, - [1116] = {.lex_state = 517}, - [1117] = {.lex_state = 496}, - [1118] = {.lex_state = 496}, - [1119] = {.lex_state = 496}, - [1120] = {.lex_state = 496}, - [1121] = {.lex_state = 496}, - [1122] = {.lex_state = 494}, - [1123] = {.lex_state = 496}, - [1124] = {.lex_state = 496}, - [1125] = {.lex_state = 496}, - [1126] = {.lex_state = 496}, - [1127] = {.lex_state = 494}, - [1128] = {.lex_state = 496}, - [1129] = {.lex_state = 496}, - [1130] = {.lex_state = 496}, - [1131] = {.lex_state = 496}, - [1132] = {.lex_state = 494}, - [1133] = {.lex_state = 494}, - [1134] = {.lex_state = 496}, - [1135] = {.lex_state = 496}, - [1136] = {.lex_state = 496}, - [1137] = {.lex_state = 496}, - [1138] = {.lex_state = 496}, - [1139] = {.lex_state = 496}, - [1140] = {.lex_state = 494}, - [1141] = {.lex_state = 496}, - [1142] = {.lex_state = 496}, - [1143] = {.lex_state = 494}, - [1144] = {.lex_state = 494}, - [1145] = {.lex_state = 496}, - [1146] = {.lex_state = 496}, - [1147] = {.lex_state = 494}, - [1148] = {.lex_state = 494}, - [1149] = {.lex_state = 496}, - [1150] = {.lex_state = 496}, - [1151] = {.lex_state = 496}, - [1152] = {.lex_state = 494}, - [1153] = {.lex_state = 496}, - [1154] = {.lex_state = 494}, - [1155] = {.lex_state = 496}, - [1156] = {.lex_state = 496}, - [1157] = {.lex_state = 496}, - [1158] = {.lex_state = 496}, - [1159] = {.lex_state = 496}, - [1160] = {.lex_state = 494}, - [1161] = {.lex_state = 496}, - [1162] = {.lex_state = 494}, - [1163] = {.lex_state = 494}, - [1164] = {.lex_state = 494}, - [1165] = {.lex_state = 494}, - [1166] = {.lex_state = 494}, - [1167] = {.lex_state = 494}, - [1168] = {.lex_state = 496}, - [1169] = {.lex_state = 496}, - [1170] = {.lex_state = 494}, - [1171] = {.lex_state = 494}, - [1172] = {.lex_state = 494}, - [1173] = {.lex_state = 494}, - [1174] = {.lex_state = 496}, - [1175] = {.lex_state = 496}, - [1176] = {.lex_state = 494}, - [1177] = {.lex_state = 496}, - [1178] = {.lex_state = 496}, - [1179] = {.lex_state = 496}, - [1180] = {.lex_state = 496}, - [1181] = {.lex_state = 494}, - [1182] = {.lex_state = 496}, - [1183] = {.lex_state = 494}, - [1184] = {.lex_state = 494}, - [1185] = {.lex_state = 496}, - [1186] = {.lex_state = 496}, - [1187] = {.lex_state = 496}, - [1188] = {.lex_state = 496}, - [1189] = {.lex_state = 496}, - [1190] = {.lex_state = 496}, - [1191] = {.lex_state = 496}, - [1192] = {.lex_state = 496}, - [1193] = {.lex_state = 496}, - [1194] = {.lex_state = 496}, - [1195] = {.lex_state = 496}, - [1196] = {.lex_state = 496}, - [1197] = {.lex_state = 496}, - [1198] = {.lex_state = 496}, - [1199] = {.lex_state = 496}, - [1200] = {.lex_state = 496}, - [1201] = {.lex_state = 494}, - [1202] = {.lex_state = 494}, - [1203] = {.lex_state = 494}, - [1204] = {.lex_state = 494}, - [1205] = {.lex_state = 496}, - [1206] = {.lex_state = 496}, - [1207] = {.lex_state = 496}, - [1208] = {.lex_state = 496}, - [1209] = {.lex_state = 494}, - [1210] = {.lex_state = 496}, - [1211] = {.lex_state = 496}, - [1212] = {.lex_state = 494}, - [1213] = {.lex_state = 496}, - [1214] = {.lex_state = 496}, - [1215] = {.lex_state = 496}, - [1216] = {.lex_state = 496}, - [1217] = {.lex_state = 496}, - [1218] = {.lex_state = 496}, - [1219] = {.lex_state = 496}, - [1220] = {.lex_state = 496}, - [1221] = {.lex_state = 496}, - [1222] = {.lex_state = 496}, - [1223] = {.lex_state = 496}, - [1224] = {.lex_state = 496}, - [1225] = {.lex_state = 496}, - [1226] = {.lex_state = 496}, - [1227] = {.lex_state = 496}, - [1228] = {.lex_state = 496}, - [1229] = {.lex_state = 496}, - [1230] = {.lex_state = 496}, - [1231] = {.lex_state = 496}, - [1232] = {.lex_state = 496}, - [1233] = {.lex_state = 496}, - [1234] = {.lex_state = 496}, - [1235] = {.lex_state = 496}, - [1236] = {.lex_state = 496}, - [1237] = {.lex_state = 496}, - [1238] = {.lex_state = 496}, - [1239] = {.lex_state = 496}, - [1240] = {.lex_state = 496}, - [1241] = {.lex_state = 496}, - [1242] = {.lex_state = 496}, - [1243] = {.lex_state = 496}, - [1244] = {.lex_state = 496}, - [1245] = {.lex_state = 496}, - [1246] = {.lex_state = 496}, - [1247] = {.lex_state = 496}, - [1248] = {.lex_state = 496}, - [1249] = {.lex_state = 496}, - [1250] = {.lex_state = 496}, - [1251] = {.lex_state = 496}, - [1252] = {.lex_state = 496}, - [1253] = {.lex_state = 496}, - [1254] = {.lex_state = 496}, - [1255] = {.lex_state = 496}, - [1256] = {.lex_state = 496}, - [1257] = {.lex_state = 496}, - [1258] = {.lex_state = 496}, - [1259] = {.lex_state = 496}, - [1260] = {.lex_state = 496}, - [1261] = {.lex_state = 496}, - [1262] = {.lex_state = 496}, - [1263] = {.lex_state = 502}, - [1264] = {.lex_state = 496}, - [1265] = {.lex_state = 496}, - [1266] = {.lex_state = 496}, - [1267] = {.lex_state = 496}, - [1268] = {.lex_state = 496}, - [1269] = {.lex_state = 496}, - [1270] = {.lex_state = 502}, - [1271] = {.lex_state = 496}, - [1272] = {.lex_state = 496}, - [1273] = {.lex_state = 496}, - [1274] = {.lex_state = 496}, - [1275] = {.lex_state = 502}, - [1276] = {.lex_state = 496}, - [1277] = {.lex_state = 496}, - [1278] = {.lex_state = 502}, - [1279] = {.lex_state = 496}, - [1280] = {.lex_state = 496}, - [1281] = {.lex_state = 502}, - [1282] = {.lex_state = 496}, - [1283] = {.lex_state = 496}, - [1284] = {.lex_state = 502}, - [1285] = {.lex_state = 496}, - [1286] = {.lex_state = 496}, - [1287] = {.lex_state = 502}, - [1288] = {.lex_state = 496}, - [1289] = {.lex_state = 502}, - [1290] = {.lex_state = 496}, - [1291] = {.lex_state = 502}, - [1292] = {.lex_state = 496}, - [1293] = {.lex_state = 496}, - [1294] = {.lex_state = 496}, - [1295] = {.lex_state = 502}, - [1296] = {.lex_state = 496}, - [1297] = {.lex_state = 502}, - [1298] = {.lex_state = 496}, - [1299] = {.lex_state = 502}, - [1300] = {.lex_state = 502}, - [1301] = {.lex_state = 496}, - [1302] = {.lex_state = 496}, - [1303] = {.lex_state = 496}, - [1304] = {.lex_state = 496}, - [1305] = {.lex_state = 496}, - [1306] = {.lex_state = 496}, - [1307] = {.lex_state = 496}, - [1308] = {.lex_state = 496}, - [1309] = {.lex_state = 496}, - [1310] = {.lex_state = 496}, - [1311] = {.lex_state = 496}, - [1312] = {.lex_state = 657}, - [1313] = {.lex_state = 496}, - [1314] = {.lex_state = 496}, - [1315] = {.lex_state = 496}, - [1316] = {.lex_state = 496}, - [1317] = {.lex_state = 496}, - [1318] = {.lex_state = 496}, - [1319] = {.lex_state = 496}, - [1320] = {.lex_state = 496}, - [1321] = {.lex_state = 496}, - [1322] = {.lex_state = 496}, - [1323] = {.lex_state = 496}, - [1324] = {.lex_state = 496}, - [1325] = {.lex_state = 496}, - [1326] = {.lex_state = 502}, - [1327] = {.lex_state = 496}, - [1328] = {.lex_state = 496}, - [1329] = {.lex_state = 502}, - [1330] = {.lex_state = 502}, - [1331] = {.lex_state = 496}, - [1332] = {.lex_state = 496}, - [1333] = {.lex_state = 496}, - [1334] = {.lex_state = 496}, - [1335] = {.lex_state = 496}, - [1336] = {.lex_state = 496}, - [1337] = {.lex_state = 496}, - [1338] = {.lex_state = 496}, - [1339] = {.lex_state = 496}, - [1340] = {.lex_state = 496}, - [1341] = {.lex_state = 496}, - [1342] = {.lex_state = 496}, - [1343] = {.lex_state = 496}, - [1344] = {.lex_state = 496}, - [1345] = {.lex_state = 496}, - [1346] = {.lex_state = 496}, - [1347] = {.lex_state = 496}, - [1348] = {.lex_state = 496}, - [1349] = {.lex_state = 496}, - [1350] = {.lex_state = 496}, - [1351] = {.lex_state = 496}, - [1352] = {.lex_state = 496}, - [1353] = {.lex_state = 496}, - [1354] = {.lex_state = 496}, - [1355] = {.lex_state = 496}, - [1356] = {.lex_state = 496}, - [1357] = {.lex_state = 496}, - [1358] = {.lex_state = 496}, - [1359] = {.lex_state = 496}, - [1360] = {.lex_state = 496}, - [1361] = {.lex_state = 496}, - [1362] = {.lex_state = 496}, - [1363] = {.lex_state = 496}, - [1364] = {.lex_state = 496}, - [1365] = {.lex_state = 496}, - [1366] = {.lex_state = 496}, - [1367] = {.lex_state = 496}, - [1368] = {.lex_state = 496}, - [1369] = {.lex_state = 496}, - [1370] = {.lex_state = 496}, - [1371] = {.lex_state = 496}, - [1372] = {.lex_state = 496}, - [1373] = {.lex_state = 496}, - [1374] = {.lex_state = 496}, - [1375] = {.lex_state = 496}, - [1376] = {.lex_state = 496}, - [1377] = {.lex_state = 496}, - [1378] = {.lex_state = 496}, - [1379] = {.lex_state = 496}, - [1380] = {.lex_state = 496}, - [1381] = {.lex_state = 496}, - [1382] = {.lex_state = 496}, - [1383] = {.lex_state = 496}, - [1384] = {.lex_state = 496}, - [1385] = {.lex_state = 496}, - [1386] = {.lex_state = 496}, - [1387] = {.lex_state = 496}, - [1388] = {.lex_state = 496}, - [1389] = {.lex_state = 496}, - [1390] = {.lex_state = 496}, - [1391] = {.lex_state = 496}, - [1392] = {.lex_state = 496}, - [1393] = {.lex_state = 496}, - [1394] = {.lex_state = 496}, - [1395] = {.lex_state = 496}, - [1396] = {.lex_state = 496}, - [1397] = {.lex_state = 496}, - [1398] = {.lex_state = 496}, - [1399] = {.lex_state = 496}, - [1400] = {.lex_state = 496}, - [1401] = {.lex_state = 496}, - [1402] = {.lex_state = 496}, - [1403] = {.lex_state = 496}, - [1404] = {.lex_state = 496}, - [1405] = {.lex_state = 496}, - [1406] = {.lex_state = 496}, - [1407] = {.lex_state = 496}, - [1408] = {.lex_state = 496}, - [1409] = {.lex_state = 496}, - [1410] = {.lex_state = 496}, - [1411] = {.lex_state = 496}, - [1412] = {.lex_state = 496}, - [1413] = {.lex_state = 496}, - [1414] = {.lex_state = 496}, - [1415] = {.lex_state = 496}, - [1416] = {.lex_state = 496}, - [1417] = {.lex_state = 496}, - [1418] = {.lex_state = 496}, - [1419] = {.lex_state = 496}, - [1420] = {.lex_state = 496}, - [1421] = {.lex_state = 496}, - [1422] = {.lex_state = 496}, - [1423] = {.lex_state = 496}, - [1424] = {.lex_state = 496}, - [1425] = {.lex_state = 496}, - [1426] = {.lex_state = 496}, - [1427] = {.lex_state = 496}, - [1428] = {.lex_state = 496}, - [1429] = {.lex_state = 496}, - [1430] = {.lex_state = 496}, - [1431] = {.lex_state = 496}, - [1432] = {.lex_state = 496}, - [1433] = {.lex_state = 496}, - [1434] = {.lex_state = 496}, - [1435] = {.lex_state = 496}, - [1436] = {.lex_state = 496}, - [1437] = {.lex_state = 496}, - [1438] = {.lex_state = 496}, - [1439] = {.lex_state = 496}, - [1440] = {.lex_state = 496}, - [1441] = {.lex_state = 496}, - [1442] = {.lex_state = 496}, - [1443] = {.lex_state = 496}, - [1444] = {.lex_state = 496}, - [1445] = {.lex_state = 496}, - [1446] = {.lex_state = 496}, - [1447] = {.lex_state = 496}, - [1448] = {.lex_state = 496}, - [1449] = {.lex_state = 496}, - [1450] = {.lex_state = 496}, - [1451] = {.lex_state = 496}, - [1452] = {.lex_state = 496}, - [1453] = {.lex_state = 496}, - [1454] = {.lex_state = 496}, - [1455] = {.lex_state = 496}, - [1456] = {.lex_state = 496}, - [1457] = {.lex_state = 496}, - [1458] = {.lex_state = 496}, - [1459] = {.lex_state = 496}, - [1460] = {.lex_state = 496}, - [1461] = {.lex_state = 496}, - [1462] = {.lex_state = 496}, - [1463] = {.lex_state = 496}, - [1464] = {.lex_state = 496}, - [1465] = {.lex_state = 496}, - [1466] = {.lex_state = 496}, - [1467] = {.lex_state = 496}, - [1468] = {.lex_state = 496}, - [1469] = {.lex_state = 496}, - [1470] = {.lex_state = 496}, - [1471] = {.lex_state = 496}, - [1472] = {.lex_state = 496}, - [1473] = {.lex_state = 496}, - [1474] = {.lex_state = 496}, - [1475] = {.lex_state = 496}, - [1476] = {.lex_state = 496}, - [1477] = {.lex_state = 496}, - [1478] = {.lex_state = 496}, - [1479] = {.lex_state = 496}, - [1480] = {.lex_state = 496}, - [1481] = {.lex_state = 496}, - [1482] = {.lex_state = 496}, - [1483] = {.lex_state = 496}, - [1484] = {.lex_state = 496}, - [1485] = {.lex_state = 496}, - [1486] = {.lex_state = 496}, - [1487] = {.lex_state = 496}, - [1488] = {.lex_state = 496}, - [1489] = {.lex_state = 496}, - [1490] = {.lex_state = 496}, - [1491] = {.lex_state = 496}, - [1492] = {.lex_state = 496}, - [1493] = {.lex_state = 496}, - [1494] = {.lex_state = 496}, - [1495] = {.lex_state = 496}, - [1496] = {.lex_state = 496}, - [1497] = {.lex_state = 496}, - [1498] = {.lex_state = 496}, - [1499] = {.lex_state = 496}, - [1500] = {.lex_state = 496}, - [1501] = {.lex_state = 496}, - [1502] = {.lex_state = 496}, - [1503] = {.lex_state = 496}, - [1504] = {.lex_state = 496}, - [1505] = {.lex_state = 496}, - [1506] = {.lex_state = 496}, - [1507] = {.lex_state = 496}, - [1508] = {.lex_state = 496}, - [1509] = {.lex_state = 496}, - [1510] = {.lex_state = 496}, - [1511] = {.lex_state = 496}, - [1512] = {.lex_state = 496}, - [1513] = {.lex_state = 496}, - [1514] = {.lex_state = 496}, - [1515] = {.lex_state = 496}, - [1516] = {.lex_state = 496}, - [1517] = {.lex_state = 496}, - [1518] = {.lex_state = 496}, - [1519] = {.lex_state = 496}, - [1520] = {.lex_state = 496}, - [1521] = {.lex_state = 496}, - [1522] = {.lex_state = 496}, - [1523] = {.lex_state = 496}, - [1524] = {.lex_state = 496}, - [1525] = {.lex_state = 496}, - [1526] = {.lex_state = 496}, - [1527] = {.lex_state = 496}, - [1528] = {.lex_state = 496}, - [1529] = {.lex_state = 496}, - [1530] = {.lex_state = 496}, - [1531] = {.lex_state = 496}, - [1532] = {.lex_state = 496}, - [1533] = {.lex_state = 496}, - [1534] = {.lex_state = 496}, - [1535] = {.lex_state = 496}, - [1536] = {.lex_state = 496}, - [1537] = {.lex_state = 496}, - [1538] = {.lex_state = 496}, - [1539] = {.lex_state = 496}, - [1540] = {.lex_state = 496}, - [1541] = {.lex_state = 496}, - [1542] = {.lex_state = 496}, - [1543] = {.lex_state = 496}, - [1544] = {.lex_state = 496}, - [1545] = {.lex_state = 496}, - [1546] = {.lex_state = 496}, - [1547] = {.lex_state = 496}, - [1548] = {.lex_state = 496}, - [1549] = {.lex_state = 496}, - [1550] = {.lex_state = 496}, - [1551] = {.lex_state = 496}, - [1552] = {.lex_state = 496}, - [1553] = {.lex_state = 496}, - [1554] = {.lex_state = 496}, - [1555] = {.lex_state = 496}, - [1556] = {.lex_state = 496}, - [1557] = {.lex_state = 496}, - [1558] = {.lex_state = 496}, - [1559] = {.lex_state = 496}, - [1560] = {.lex_state = 496}, - [1561] = {.lex_state = 496}, - [1562] = {.lex_state = 496}, - [1563] = {.lex_state = 496}, - [1564] = {.lex_state = 496}, - [1565] = {.lex_state = 496}, - [1566] = {.lex_state = 496}, - [1567] = {.lex_state = 496}, - [1568] = {.lex_state = 496}, - [1569] = {.lex_state = 496}, - [1570] = {.lex_state = 496}, - [1571] = {.lex_state = 496}, - [1572] = {.lex_state = 496}, - [1573] = {.lex_state = 496}, - [1574] = {.lex_state = 496}, - [1575] = {.lex_state = 496}, - [1576] = {.lex_state = 496}, - [1577] = {.lex_state = 496}, - [1578] = {.lex_state = 496}, - [1579] = {.lex_state = 496}, - [1580] = {.lex_state = 496}, - [1581] = {.lex_state = 496}, - [1582] = {.lex_state = 496}, - [1583] = {.lex_state = 496}, - [1584] = {.lex_state = 496}, - [1585] = {.lex_state = 496}, - [1586] = {.lex_state = 496}, - [1587] = {.lex_state = 496}, - [1588] = {.lex_state = 496}, - [1589] = {.lex_state = 496}, - [1590] = {.lex_state = 496}, - [1591] = {.lex_state = 496}, - [1592] = {.lex_state = 496}, - [1593] = {.lex_state = 496}, - [1594] = {.lex_state = 496}, - [1595] = {.lex_state = 496}, - [1596] = {.lex_state = 496}, - [1597] = {.lex_state = 496}, - [1598] = {.lex_state = 496}, - [1599] = {.lex_state = 496}, - [1600] = {.lex_state = 496}, - [1601] = {.lex_state = 496}, - [1602] = {.lex_state = 496}, - [1603] = {.lex_state = 496}, - [1604] = {.lex_state = 496}, - [1605] = {.lex_state = 496}, - [1606] = {.lex_state = 496}, - [1607] = {.lex_state = 496}, - [1608] = {.lex_state = 496}, - [1609] = {.lex_state = 496}, - [1610] = {.lex_state = 496}, - [1611] = {.lex_state = 496}, - [1612] = {.lex_state = 496}, - [1613] = {.lex_state = 496}, - [1614] = {.lex_state = 496}, - [1615] = {.lex_state = 496}, - [1616] = {.lex_state = 496}, - [1617] = {.lex_state = 496}, - [1618] = {.lex_state = 496}, - [1619] = {.lex_state = 496}, - [1620] = {.lex_state = 496}, - [1621] = {.lex_state = 496}, - [1622] = {.lex_state = 496}, - [1623] = {.lex_state = 496}, - [1624] = {.lex_state = 496}, - [1625] = {.lex_state = 496}, - [1626] = {.lex_state = 496}, - [1627] = {.lex_state = 496}, - [1628] = {.lex_state = 496}, - [1629] = {.lex_state = 496}, - [1630] = {.lex_state = 496}, - [1631] = {.lex_state = 496}, - [1632] = {.lex_state = 496}, - [1633] = {.lex_state = 496}, - [1634] = {.lex_state = 496}, - [1635] = {.lex_state = 496}, - [1636] = {.lex_state = 496}, - [1637] = {.lex_state = 496}, - [1638] = {.lex_state = 496}, - [1639] = {.lex_state = 496}, - [1640] = {.lex_state = 496}, - [1641] = {.lex_state = 496}, - [1642] = {.lex_state = 496}, - [1643] = {.lex_state = 496}, - [1644] = {.lex_state = 496}, - [1645] = {.lex_state = 496}, - [1646] = {.lex_state = 496}, - [1647] = {.lex_state = 496}, - [1648] = {.lex_state = 496}, - [1649] = {.lex_state = 496}, - [1650] = {.lex_state = 496}, - [1651] = {.lex_state = 496}, - [1652] = {.lex_state = 496}, - [1653] = {.lex_state = 496}, - [1654] = {.lex_state = 496}, - [1655] = {.lex_state = 496}, - [1656] = {.lex_state = 496}, - [1657] = {.lex_state = 496}, - [1658] = {.lex_state = 496}, - [1659] = {.lex_state = 496}, - [1660] = {.lex_state = 496}, - [1661] = {.lex_state = 496}, - [1662] = {.lex_state = 496}, - [1663] = {.lex_state = 496}, - [1664] = {.lex_state = 496}, - [1665] = {.lex_state = 496}, - [1666] = {.lex_state = 496}, - [1667] = {.lex_state = 496}, - [1668] = {.lex_state = 496}, - [1669] = {.lex_state = 496}, - [1670] = {.lex_state = 496}, - [1671] = {.lex_state = 496}, - [1672] = {.lex_state = 496}, - [1673] = {.lex_state = 496}, - [1674] = {.lex_state = 496}, - [1675] = {.lex_state = 496}, - [1676] = {.lex_state = 496}, - [1677] = {.lex_state = 496}, - [1678] = {.lex_state = 496}, - [1679] = {.lex_state = 496}, - [1680] = {.lex_state = 496}, - [1681] = {.lex_state = 496}, - [1682] = {.lex_state = 496}, - [1683] = {.lex_state = 496}, - [1684] = {.lex_state = 496}, - [1685] = {.lex_state = 496}, - [1686] = {.lex_state = 496}, - [1687] = {.lex_state = 496}, - [1688] = {.lex_state = 496}, - [1689] = {.lex_state = 496}, - [1690] = {.lex_state = 496}, - [1691] = {.lex_state = 496}, - [1692] = {.lex_state = 496}, - [1693] = {.lex_state = 496}, - [1694] = {.lex_state = 496}, - [1695] = {.lex_state = 496}, - [1696] = {.lex_state = 496}, - [1697] = {.lex_state = 496}, - [1698] = {.lex_state = 496}, - [1699] = {.lex_state = 496}, - [1700] = {.lex_state = 496}, - [1701] = {.lex_state = 496}, - [1702] = {.lex_state = 496}, - [1703] = {.lex_state = 496}, - [1704] = {.lex_state = 496}, - [1705] = {.lex_state = 496}, - [1706] = {.lex_state = 496}, - [1707] = {.lex_state = 496}, - [1708] = {.lex_state = 496}, - [1709] = {.lex_state = 496}, - [1710] = {.lex_state = 496}, - [1711] = {.lex_state = 496}, - [1712] = {.lex_state = 496}, - [1713] = {.lex_state = 496}, - [1714] = {.lex_state = 496}, - [1715] = {.lex_state = 496}, - [1716] = {.lex_state = 496}, - [1717] = {.lex_state = 496}, - [1718] = {.lex_state = 496}, - [1719] = {.lex_state = 496}, - [1720] = {.lex_state = 496}, - [1721] = {.lex_state = 496}, - [1722] = {.lex_state = 496}, - [1723] = {.lex_state = 496}, - [1724] = {.lex_state = 496}, - [1725] = {.lex_state = 496}, - [1726] = {.lex_state = 496}, - [1727] = {.lex_state = 496}, - [1728] = {.lex_state = 496}, - [1729] = {.lex_state = 496}, - [1730] = {.lex_state = 496}, - [1731] = {.lex_state = 496}, - [1732] = {.lex_state = 496}, - [1733] = {.lex_state = 496}, - [1734] = {.lex_state = 496}, - [1735] = {.lex_state = 496}, - [1736] = {.lex_state = 496}, - [1737] = {.lex_state = 496}, - [1738] = {.lex_state = 496}, - [1739] = {.lex_state = 496}, - [1740] = {.lex_state = 496}, - [1741] = {.lex_state = 496}, - [1742] = {.lex_state = 496}, - [1743] = {.lex_state = 496}, - [1744] = {.lex_state = 496}, - [1745] = {.lex_state = 496}, - [1746] = {.lex_state = 496}, - [1747] = {.lex_state = 496}, - [1748] = {.lex_state = 496}, - [1749] = {.lex_state = 496}, - [1750] = {.lex_state = 496}, - [1751] = {.lex_state = 496}, - [1752] = {.lex_state = 496}, - [1753] = {.lex_state = 496}, - [1754] = {.lex_state = 496}, - [1755] = {.lex_state = 496}, - [1756] = {.lex_state = 496}, - [1757] = {.lex_state = 496}, - [1758] = {.lex_state = 496}, - [1759] = {.lex_state = 496}, - [1760] = {.lex_state = 496}, - [1761] = {.lex_state = 496}, - [1762] = {.lex_state = 496}, - [1763] = {.lex_state = 496}, - [1764] = {.lex_state = 496}, - [1765] = {.lex_state = 496}, - [1766] = {.lex_state = 496}, - [1767] = {.lex_state = 496}, - [1768] = {.lex_state = 496}, - [1769] = {.lex_state = 496}, - [1770] = {.lex_state = 496}, - [1771] = {.lex_state = 496}, - [1772] = {.lex_state = 496}, - [1773] = {.lex_state = 496}, - [1774] = {.lex_state = 496}, - [1775] = {.lex_state = 496}, - [1776] = {.lex_state = 496}, - [1777] = {.lex_state = 496}, - [1778] = {.lex_state = 496}, - [1779] = {.lex_state = 496}, - [1780] = {.lex_state = 496}, - [1781] = {.lex_state = 496}, - [1782] = {.lex_state = 496}, - [1783] = {.lex_state = 496}, - [1784] = {.lex_state = 496}, - [1785] = {.lex_state = 496}, - [1786] = {.lex_state = 496}, - [1787] = {.lex_state = 496}, - [1788] = {.lex_state = 496}, - [1789] = {.lex_state = 496}, - [1790] = {.lex_state = 496}, - [1791] = {.lex_state = 496}, - [1792] = {.lex_state = 496}, - [1793] = {.lex_state = 496}, - [1794] = {.lex_state = 496}, - [1795] = {.lex_state = 496}, - [1796] = {.lex_state = 496}, - [1797] = {.lex_state = 496}, - [1798] = {.lex_state = 496}, - [1799] = {.lex_state = 496}, - [1800] = {.lex_state = 496}, - [1801] = {.lex_state = 496}, - [1802] = {.lex_state = 497}, - [1803] = {.lex_state = 497}, - [1804] = {.lex_state = 497}, - [1805] = {.lex_state = 497}, - [1806] = {.lex_state = 497}, - [1807] = {.lex_state = 497}, - [1808] = {.lex_state = 497}, - [1809] = {.lex_state = 497}, - [1810] = {.lex_state = 497}, - [1811] = {.lex_state = 657}, - [1812] = {.lex_state = 657}, - [1813] = {.lex_state = 657}, - [1814] = {.lex_state = 657}, - [1815] = {.lex_state = 657}, - [1816] = {.lex_state = 610}, - [1817] = {.lex_state = 610}, - [1818] = {.lex_state = 610}, - [1819] = {.lex_state = 610}, - [1820] = {.lex_state = 610}, - [1821] = {.lex_state = 531}, - [1822] = {.lex_state = 610}, - [1823] = {.lex_state = 610}, - [1824] = {.lex_state = 604}, - [1825] = {.lex_state = 610}, - [1826] = {.lex_state = 610}, - [1827] = {.lex_state = 530}, - [1828] = {.lex_state = 610}, - [1829] = {.lex_state = 604}, - [1830] = {.lex_state = 604}, - [1831] = {.lex_state = 610}, - [1832] = {.lex_state = 604}, - [1833] = {.lex_state = 604}, - [1834] = {.lex_state = 604}, - [1835] = {.lex_state = 604}, - [1836] = {.lex_state = 604}, - [1837] = {.lex_state = 610}, - [1838] = {.lex_state = 604}, - [1839] = {.lex_state = 1049}, - [1840] = {.lex_state = 610}, - [1841] = {.lex_state = 537}, - [1842] = {.lex_state = 657}, - [1843] = {.lex_state = 657}, - [1844] = {.lex_state = 605}, - [1845] = {.lex_state = 605}, - [1846] = {.lex_state = 605}, - [1847] = {.lex_state = 605}, - [1848] = {.lex_state = 605}, - [1849] = {.lex_state = 605}, - [1850] = {.lex_state = 605}, - [1851] = {.lex_state = 605}, - [1852] = {.lex_state = 657}, - [1853] = {.lex_state = 657}, - [1854] = {.lex_state = 657}, - [1855] = {.lex_state = 657}, - [1856] = {.lex_state = 657}, - [1857] = {.lex_state = 657}, - [1858] = {.lex_state = 657}, - [1859] = {.lex_state = 657}, - [1860] = {.lex_state = 616}, - [1861] = {.lex_state = 616}, - [1862] = {.lex_state = 657}, - [1863] = {.lex_state = 616}, - [1864] = {.lex_state = 657}, - [1865] = {.lex_state = 657}, - [1866] = {.lex_state = 657}, - [1867] = {.lex_state = 616}, - [1868] = {.lex_state = 657}, - [1869] = {.lex_state = 657}, - [1870] = {.lex_state = 616}, - [1871] = {.lex_state = 616}, - [1872] = {.lex_state = 616}, - [1873] = {.lex_state = 499}, - [1874] = {.lex_state = 499}, - [1875] = {.lex_state = 1046}, - [1876] = {.lex_state = 499}, - [1877] = {.lex_state = 1049}, - [1878] = {.lex_state = 1049}, - [1879] = {.lex_state = 1049}, - [1880] = {.lex_state = 1049}, - [1881] = {.lex_state = 1049}, - [1882] = {.lex_state = 1049}, - [1883] = {.lex_state = 1049}, - [1884] = {.lex_state = 1046}, - [1885] = {.lex_state = 1046}, - [1886] = {.lex_state = 499}, - [1887] = {.lex_state = 657}, - [1888] = {.lex_state = 657}, - [1889] = {.lex_state = 657}, - [1890] = {.lex_state = 1046}, - [1891] = {.lex_state = 530}, - [1892] = {.lex_state = 530}, - [1893] = {.lex_state = 530}, - [1894] = {.lex_state = 530}, - [1895] = {.lex_state = 616}, - [1896] = {.lex_state = 530}, - [1897] = {.lex_state = 530}, - [1898] = {.lex_state = 530}, - [1899] = {.lex_state = 616}, - [1900] = {.lex_state = 1046}, - [1901] = {.lex_state = 1046}, - [1902] = {.lex_state = 616}, - [1903] = {.lex_state = 1046}, - [1904] = {.lex_state = 657}, - [1905] = {.lex_state = 657}, - [1906] = {.lex_state = 657}, - [1907] = {.lex_state = 657}, - [1908] = {.lex_state = 1054}, - [1909] = {.lex_state = 657}, - [1910] = {.lex_state = 657}, - [1911] = {.lex_state = 657}, - [1912] = {.lex_state = 657}, - [1913] = {.lex_state = 657}, - [1914] = {.lex_state = 657}, - [1915] = {.lex_state = 1049}, - [1916] = {.lex_state = 505}, - [1917] = {.lex_state = 657}, - [1918] = {.lex_state = 531}, - [1919] = {.lex_state = 501}, - [1920] = {.lex_state = 1055}, - [1921] = {.lex_state = 537}, - [1922] = {.lex_state = 537}, - [1923] = {.lex_state = 537}, - [1924] = {.lex_state = 537}, - [1925] = {.lex_state = 537}, - [1926] = {.lex_state = 537}, - [1927] = {.lex_state = 537}, - [1928] = {.lex_state = 657}, - [1929] = {.lex_state = 657}, - [1930] = {.lex_state = 531}, - [1931] = {.lex_state = 505}, - [1932] = {.lex_state = 657}, - [1933] = {.lex_state = 665}, - [1934] = {.lex_state = 665}, - [1935] = {.lex_state = 531}, - [1936] = {.lex_state = 531}, - [1937] = {.lex_state = 665}, - [1938] = {.lex_state = 665}, - [1939] = {.lex_state = 665}, - [1940] = {.lex_state = 665}, - [1941] = {.lex_state = 657}, - [1942] = {.lex_state = 665}, - [1943] = {.lex_state = 657}, - [1944] = {.lex_state = 1049}, - [1945] = {.lex_state = 665}, - [1946] = {.lex_state = 531}, - [1947] = {.lex_state = 665}, - [1948] = {.lex_state = 665}, - [1949] = {.lex_state = 665}, - [1950] = {.lex_state = 665}, - [1951] = {.lex_state = 665}, - [1952] = {.lex_state = 531}, - [1953] = {.lex_state = 531}, - [1954] = {.lex_state = 665}, - [1955] = {.lex_state = 530}, - [1956] = {.lex_state = 531}, - [1957] = {.lex_state = 531}, - [1958] = {.lex_state = 507}, - [1959] = {.lex_state = 657}, - [1960] = {.lex_state = 1049}, - [1961] = {.lex_state = 603}, - [1962] = {.lex_state = 1046}, - [1963] = {.lex_state = 507}, - [1964] = {.lex_state = 530}, - [1965] = {.lex_state = 657}, - [1966] = {.lex_state = 603}, - [1967] = {.lex_state = 603}, - [1968] = {.lex_state = 1051}, - [1969] = {.lex_state = 603}, - [1970] = {.lex_state = 501}, - [1971] = {.lex_state = 657}, - [1972] = {.lex_state = 657}, - [1973] = {.lex_state = 657}, - [1974] = {.lex_state = 657}, - [1975] = {.lex_state = 657}, - [1976] = {.lex_state = 657}, - [1977] = {.lex_state = 657}, - [1978] = {.lex_state = 657}, - [1979] = {.lex_state = 657}, - [1980] = {.lex_state = 657}, - [1981] = {.lex_state = 657}, - [1982] = {.lex_state = 657}, - [1983] = {.lex_state = 657}, - [1984] = {.lex_state = 657}, - [1985] = {.lex_state = 657}, - [1986] = {.lex_state = 657}, - [1987] = {.lex_state = 657}, - [1988] = {.lex_state = 657}, - [1989] = {.lex_state = 657}, - [1990] = {.lex_state = 657}, - [1991] = {.lex_state = 657}, - [1992] = {.lex_state = 657}, - [1993] = {.lex_state = 657}, - [1994] = {.lex_state = 657}, - [1995] = {.lex_state = 657}, - [1996] = {.lex_state = 657}, - [1997] = {.lex_state = 657}, - [1998] = {.lex_state = 657}, - [1999] = {.lex_state = 603}, - [2000] = {.lex_state = 657}, - [2001] = {.lex_state = 657}, - [2002] = {.lex_state = 657}, - [2003] = {.lex_state = 1049}, - [2004] = {.lex_state = 657}, - [2005] = {.lex_state = 657}, - [2006] = {.lex_state = 536}, - [2007] = {.lex_state = 657}, - [2008] = {.lex_state = 657}, - [2009] = {.lex_state = 657}, - [2010] = {.lex_state = 657}, - [2011] = {.lex_state = 537}, - [2012] = {.lex_state = 657}, - [2013] = {.lex_state = 657}, - [2014] = {.lex_state = 657}, - [2015] = {.lex_state = 657}, - [2016] = {.lex_state = 657}, - [2017] = {.lex_state = 1049}, - [2018] = {.lex_state = 657}, - [2019] = {.lex_state = 509}, - [2020] = {.lex_state = 657}, - [2021] = {.lex_state = 509}, - [2022] = {.lex_state = 657}, - [2023] = {.lex_state = 603}, - [2024] = {.lex_state = 509}, - [2025] = {.lex_state = 657}, - [2026] = {.lex_state = 657}, - [2027] = {.lex_state = 531}, - [2028] = {.lex_state = 657}, - [2029] = {.lex_state = 657}, - [2030] = {.lex_state = 657}, - [2031] = {.lex_state = 657}, - [2032] = {.lex_state = 657}, - [2033] = {.lex_state = 657}, - [2034] = {.lex_state = 531}, - [2035] = {.lex_state = 657}, - [2036] = {.lex_state = 657}, - [2037] = {.lex_state = 657}, - [2038] = {.lex_state = 657}, - [2039] = {.lex_state = 657}, - [2040] = {.lex_state = 536}, - [2041] = {.lex_state = 657}, - [2042] = {.lex_state = 657}, - [2043] = {.lex_state = 657}, - [2044] = {.lex_state = 657}, - [2045] = {.lex_state = 657}, - [2046] = {.lex_state = 1049}, - [2047] = {.lex_state = 657}, - [2048] = {.lex_state = 657}, - [2049] = {.lex_state = 657}, - [2050] = {.lex_state = 536}, - [2051] = {.lex_state = 657}, - [2052] = {.lex_state = 657}, - [2053] = {.lex_state = 657}, - [2054] = {.lex_state = 657}, - [2055] = {.lex_state = 657}, - [2056] = {.lex_state = 657}, - [2057] = {.lex_state = 657}, - [2058] = {.lex_state = 657}, - [2059] = {.lex_state = 657}, - [2060] = {.lex_state = 657}, - [2061] = {.lex_state = 657}, - [2062] = {.lex_state = 657}, - [2063] = {.lex_state = 509}, - [2064] = {.lex_state = 1049}, - [2065] = {.lex_state = 658}, - [2066] = {.lex_state = 1051}, - [2067] = {.lex_state = 1051}, - [2068] = {.lex_state = 556}, - [2069] = {.lex_state = 515}, - [2070] = {.lex_state = 1049}, - [2071] = {.lex_state = 519}, - [2072] = {.lex_state = 1049}, - [2073] = {.lex_state = 515}, - [2074] = {.lex_state = 1049}, - [2075] = {.lex_state = 519}, - [2076] = {.lex_state = 1061}, - [2077] = {.lex_state = 1061}, - [2078] = {.lex_state = 655}, - [2079] = {.lex_state = 1061}, - [2080] = {.lex_state = 1049}, - [2081] = {.lex_state = 603}, - [2082] = {.lex_state = 603}, - [2083] = {.lex_state = 1061}, - [2084] = {.lex_state = 530}, - [2085] = {.lex_state = 1054}, - [2086] = {.lex_state = 657}, - [2087] = {.lex_state = 1054}, - [2088] = {.lex_state = 537}, - [2089] = {.lex_state = 1061}, - [2090] = {.lex_state = 655}, - [2091] = {.lex_state = 519}, - [2092] = {.lex_state = 655}, - [2093] = {.lex_state = 1061}, - [2094] = {.lex_state = 1049}, - [2095] = {.lex_state = 657}, - [2096] = {.lex_state = 1049}, - [2097] = {.lex_state = 515}, - [2098] = {.lex_state = 657}, - [2099] = {.lex_state = 1051}, - [2100] = {.lex_state = 657}, - [2101] = {.lex_state = 657}, - [2102] = {.lex_state = 657}, - [2103] = {.lex_state = 657}, - [2104] = {.lex_state = 657}, - [2105] = {.lex_state = 657}, - [2106] = {.lex_state = 1051}, - [2107] = {.lex_state = 1061}, - [2108] = {.lex_state = 1061}, - [2109] = {.lex_state = 658}, - [2110] = {.lex_state = 658}, - [2111] = {.lex_state = 1049}, - [2112] = {.lex_state = 1049}, - [2113] = {.lex_state = 1049}, - [2114] = {.lex_state = 560}, - [2115] = {.lex_state = 1049}, - [2116] = {.lex_state = 1061}, - [2117] = {.lex_state = 658}, - [2118] = {.lex_state = 603}, - [2119] = {.lex_state = 530}, - [2120] = {.lex_state = 655}, - [2121] = {.lex_state = 1049}, - [2122] = {.lex_state = 603}, - [2123] = {.lex_state = 603}, - [2124] = {.lex_state = 521}, - [2125] = {.lex_state = 603}, - [2126] = {.lex_state = 603}, - [2127] = {.lex_state = 603}, - [2128] = {.lex_state = 603}, - [2129] = {.lex_state = 1055}, - [2130] = {.lex_state = 603}, - [2131] = {.lex_state = 603}, - [2132] = {.lex_state = 603}, - [2133] = {.lex_state = 603}, - [2134] = {.lex_state = 655}, - [2135] = {.lex_state = 603}, - [2136] = {.lex_state = 603}, - [2137] = {.lex_state = 603}, - [2138] = {.lex_state = 521}, - [2139] = {.lex_state = 603}, - [2140] = {.lex_state = 603}, - [2141] = {.lex_state = 658}, - [2142] = {.lex_state = 603}, - [2143] = {.lex_state = 603}, - [2144] = {.lex_state = 603}, - [2145] = {.lex_state = 557}, - [2146] = {.lex_state = 603}, - [2147] = {.lex_state = 603}, - [2148] = {.lex_state = 603}, - [2149] = {.lex_state = 657}, - [2150] = {.lex_state = 603}, - [2151] = {.lex_state = 521}, - [2152] = {.lex_state = 603}, - [2153] = {.lex_state = 603}, - [2154] = {.lex_state = 603}, - [2155] = {.lex_state = 603}, - [2156] = {.lex_state = 603}, - [2157] = {.lex_state = 603}, - [2158] = {.lex_state = 603}, - [2159] = {.lex_state = 603}, - [2160] = {.lex_state = 658}, - [2161] = {.lex_state = 603}, - [2162] = {.lex_state = 603}, - [2163] = {.lex_state = 603}, - [2164] = {.lex_state = 603}, - [2165] = {.lex_state = 603}, - [2166] = {.lex_state = 603}, - [2167] = {.lex_state = 603}, - [2168] = {.lex_state = 603}, - [2169] = {.lex_state = 603}, - [2170] = {.lex_state = 603}, - [2171] = {.lex_state = 603}, - [2172] = {.lex_state = 655}, - [2173] = {.lex_state = 657}, - [2174] = {.lex_state = 603}, - [2175] = {.lex_state = 603}, - [2176] = {.lex_state = 603}, - [2177] = {.lex_state = 603}, - [2178] = {.lex_state = 603}, - [2179] = {.lex_state = 603}, - [2180] = {.lex_state = 1055}, - [2181] = {.lex_state = 603}, - [2182] = {.lex_state = 1061}, - [2183] = {.lex_state = 603}, - [2184] = {.lex_state = 537}, - [2185] = {.lex_state = 603}, - [2186] = {.lex_state = 1054}, - [2187] = {.lex_state = 537}, - [2188] = {.lex_state = 603}, - [2189] = {.lex_state = 1054}, - [2190] = {.lex_state = 1062}, - [2191] = {.lex_state = 603}, - [2192] = {.lex_state = 603}, - [2193] = {.lex_state = 603}, - [2194] = {.lex_state = 603}, - [2195] = {.lex_state = 603}, - [2196] = {.lex_state = 603}, - [2197] = {.lex_state = 657}, - [2198] = {.lex_state = 603}, - [2199] = {.lex_state = 603}, - [2200] = {.lex_state = 603}, - [2201] = {.lex_state = 603}, - [2202] = {.lex_state = 603}, - [2203] = {.lex_state = 603}, - [2204] = {.lex_state = 603}, - [2205] = {.lex_state = 603}, - [2206] = {.lex_state = 603}, - [2207] = {.lex_state = 603}, - [2208] = {.lex_state = 603}, - [2209] = {.lex_state = 603}, - [2210] = {.lex_state = 603}, - [2211] = {.lex_state = 603}, - [2212] = {.lex_state = 603}, - [2213] = {.lex_state = 603}, - [2214] = {.lex_state = 603}, - [2215] = {.lex_state = 603}, - [2216] = {.lex_state = 603}, - [2217] = {.lex_state = 556}, - [2218] = {.lex_state = 534}, - [2219] = {.lex_state = 1062}, - [2220] = {.lex_state = 1055}, - [2221] = {.lex_state = 1062}, - [2222] = {.lex_state = 1062}, - [2223] = {.lex_state = 583}, - [2224] = {.lex_state = 556}, - [2225] = {.lex_state = 542}, - [2226] = {.lex_state = 523}, - [2227] = {.lex_state = 523}, - [2228] = {.lex_state = 556}, - [2229] = {.lex_state = 556}, - [2230] = {.lex_state = 658}, - [2231] = {.lex_state = 556}, - [2232] = {.lex_state = 696}, - [2233] = {.lex_state = 556}, - [2234] = {.lex_state = 658}, - [2235] = {.lex_state = 556}, - [2236] = {.lex_state = 542}, - [2237] = {.lex_state = 1055}, - [2238] = {.lex_state = 655}, - [2239] = {.lex_state = 556}, - [2240] = {.lex_state = 539}, - [2241] = {.lex_state = 1062}, - [2242] = {.lex_state = 509}, - [2243] = {.lex_state = 509}, - [2244] = {.lex_state = 579}, - [2245] = {.lex_state = 509}, - [2246] = {.lex_state = 1062}, - [2247] = {.lex_state = 509}, - [2248] = {.lex_state = 554}, - [2249] = {.lex_state = 523}, - [2250] = {.lex_state = 1049}, - [2251] = {.lex_state = 1062}, - [2252] = {.lex_state = 1062}, - [2253] = {.lex_state = 1062}, - [2254] = {.lex_state = 1062}, - [2255] = {.lex_state = 658}, - [2256] = {.lex_state = 696}, - [2257] = {.lex_state = 655}, - [2258] = {.lex_state = 554}, - [2259] = {.lex_state = 655}, - [2260] = {.lex_state = 655}, - [2261] = {.lex_state = 655}, - [2262] = {.lex_state = 557}, - [2263] = {.lex_state = 658}, - [2264] = {.lex_state = 557}, - [2265] = {.lex_state = 658}, - [2266] = {.lex_state = 557}, - [2267] = {.lex_state = 655}, - [2268] = {.lex_state = 655}, - [2269] = {.lex_state = 658}, - [2270] = {.lex_state = 655}, - [2271] = {.lex_state = 655}, - [2272] = {.lex_state = 655}, - [2273] = {.lex_state = 658}, - [2274] = {.lex_state = 655}, - [2275] = {.lex_state = 557}, - [2276] = {.lex_state = 557}, - [2277] = {.lex_state = 655}, - [2278] = {.lex_state = 655}, - [2279] = {.lex_state = 655}, - [2280] = {.lex_state = 655}, - [2281] = {.lex_state = 655}, - [2282] = {.lex_state = 658}, - [2283] = {.lex_state = 655}, - [2284] = {.lex_state = 655}, - [2285] = {.lex_state = 658}, - [2286] = {.lex_state = 557}, - [2287] = {.lex_state = 658}, - [2288] = {.lex_state = 516}, - [2289] = {.lex_state = 561}, - [2290] = {.lex_state = 658}, - [2291] = {.lex_state = 658}, - [2292] = {.lex_state = 658}, - [2293] = {.lex_state = 655}, - [2294] = {.lex_state = 658}, - [2295] = {.lex_state = 561}, - [2296] = {.lex_state = 655}, - [2297] = {.lex_state = 655}, - [2298] = {.lex_state = 515}, - [2299] = {.lex_state = 658}, - [2300] = {.lex_state = 655}, - [2301] = {.lex_state = 655}, - [2302] = {.lex_state = 655}, - [2303] = {.lex_state = 658}, - [2304] = {.lex_state = 1061}, - [2305] = {.lex_state = 658}, - [2306] = {.lex_state = 655}, - [2307] = {.lex_state = 655}, - [2308] = {.lex_state = 658}, - [2309] = {.lex_state = 655}, - [2310] = {.lex_state = 658}, - [2311] = {.lex_state = 658}, - [2312] = {.lex_state = 658}, - [2313] = {.lex_state = 655}, - [2314] = {.lex_state = 658}, - [2315] = {.lex_state = 655}, - [2316] = {.lex_state = 658}, - [2317] = {.lex_state = 655}, - [2318] = {.lex_state = 580}, - [2319] = {.lex_state = 658}, - [2320] = {.lex_state = 655}, - [2321] = {.lex_state = 655}, - [2322] = {.lex_state = 655}, - [2323] = {.lex_state = 515}, - [2324] = {.lex_state = 515}, - [2325] = {.lex_state = 655}, - [2326] = {.lex_state = 655}, - [2327] = {.lex_state = 655}, - [2328] = {.lex_state = 655}, - [2329] = {.lex_state = 658}, - [2330] = {.lex_state = 655}, - [2331] = {.lex_state = 658}, - [2332] = {.lex_state = 655}, - [2333] = {.lex_state = 658}, - [2334] = {.lex_state = 655}, - [2335] = {.lex_state = 658}, - [2336] = {.lex_state = 658}, - [2337] = {.lex_state = 655}, - [2338] = {.lex_state = 658}, - [2339] = {.lex_state = 658}, - [2340] = {.lex_state = 658}, - [2341] = {.lex_state = 655}, - [2342] = {.lex_state = 655}, - [2343] = {.lex_state = 658}, - [2344] = {.lex_state = 658}, - [2345] = {.lex_state = 658}, - [2346] = {.lex_state = 658}, - [2347] = {.lex_state = 658}, - [2348] = {.lex_state = 658}, - [2349] = {.lex_state = 658}, - [2350] = {.lex_state = 519}, - [2351] = {.lex_state = 519}, - [2352] = {.lex_state = 658}, - [2353] = {.lex_state = 655}, - [2354] = {.lex_state = 658}, - [2355] = {.lex_state = 658}, - [2356] = {.lex_state = 519}, - [2357] = {.lex_state = 519}, - [2358] = {.lex_state = 658}, - [2359] = {.lex_state = 655}, - [2360] = {.lex_state = 655}, - [2361] = {.lex_state = 516}, - [2362] = {.lex_state = 658}, - [2363] = {.lex_state = 655}, - [2364] = {.lex_state = 655}, - [2365] = {.lex_state = 658}, - [2366] = {.lex_state = 658}, - [2367] = {.lex_state = 658}, - [2368] = {.lex_state = 655}, - [2369] = {.lex_state = 658}, - [2370] = {.lex_state = 658}, - [2371] = {.lex_state = 658}, - [2372] = {.lex_state = 658}, - [2373] = {.lex_state = 658}, - [2374] = {.lex_state = 655}, - [2375] = {.lex_state = 658}, - [2376] = {.lex_state = 658}, - [2377] = {.lex_state = 658}, - [2378] = {.lex_state = 658}, - [2379] = {.lex_state = 554}, - [2380] = {.lex_state = 661}, - [2381] = {.lex_state = 554}, - [2382] = {.lex_state = 554}, - [2383] = {.lex_state = 655}, - [2384] = {.lex_state = 658}, - [2385] = {.lex_state = 658}, - [2386] = {.lex_state = 658}, - [2387] = {.lex_state = 658}, - [2388] = {.lex_state = 658}, - [2389] = {.lex_state = 658}, - [2390] = {.lex_state = 658}, - [2391] = {.lex_state = 658}, - [2392] = {.lex_state = 586}, - [2393] = {.lex_state = 655}, - [2394] = {.lex_state = 557}, - [2395] = {.lex_state = 655}, - [2396] = {.lex_state = 554}, - [2397] = {.lex_state = 655}, - [2398] = {.lex_state = 554}, - [2399] = {.lex_state = 554}, - [2400] = {.lex_state = 554}, - [2401] = {.lex_state = 554}, - [2402] = {.lex_state = 554}, - [2403] = {.lex_state = 554}, - [2404] = {.lex_state = 658}, - [2405] = {.lex_state = 586}, - [2406] = {.lex_state = 658}, - [2407] = {.lex_state = 586}, - [2408] = {.lex_state = 658}, - [2409] = {.lex_state = 516}, - [2410] = {.lex_state = 655}, - [2411] = {.lex_state = 655}, - [2412] = {.lex_state = 655}, - [2413] = {.lex_state = 655}, - [2414] = {.lex_state = 658}, - [2415] = {.lex_state = 655}, - [2416] = {.lex_state = 655}, - [2417] = {.lex_state = 658}, - [2418] = {.lex_state = 658}, - [2419] = {.lex_state = 655}, - [2420] = {.lex_state = 655}, - [2421] = {.lex_state = 655}, - [2422] = {.lex_state = 658}, - [2423] = {.lex_state = 655}, - [2424] = {.lex_state = 655}, - [2425] = {.lex_state = 655}, - [2426] = {.lex_state = 541}, - [2427] = {.lex_state = 1062}, - [2428] = {.lex_state = 1062}, - [2429] = {.lex_state = 655}, - [2430] = {.lex_state = 655}, - [2431] = {.lex_state = 658}, - [2432] = {.lex_state = 655}, - [2433] = {.lex_state = 658}, - [2434] = {.lex_state = 658}, - [2435] = {.lex_state = 655}, - [2436] = {.lex_state = 1049}, - [2437] = {.lex_state = 658}, - [2438] = {.lex_state = 658}, - [2439] = {.lex_state = 1061}, - [2440] = {.lex_state = 1062}, - [2441] = {.lex_state = 655}, - [2442] = {.lex_state = 658}, - [2443] = {.lex_state = 658}, - [2444] = {.lex_state = 1062}, - [2445] = {.lex_state = 655}, - [2446] = {.lex_state = 655}, - [2447] = {.lex_state = 655}, - [2448] = {.lex_state = 557}, - [2449] = {.lex_state = 515}, - [2450] = {.lex_state = 1049}, - [2451] = {.lex_state = 655}, - [2452] = {.lex_state = 655}, - [2453] = {.lex_state = 658}, - [2454] = {.lex_state = 655}, - [2455] = {.lex_state = 655}, - [2456] = {.lex_state = 655}, - [2457] = {.lex_state = 554}, - [2458] = {.lex_state = 1061}, - [2459] = {.lex_state = 606}, - [2460] = {.lex_state = 560}, - [2461] = {.lex_state = 577}, - [2462] = {.lex_state = 560}, - [2463] = {.lex_state = 555}, - [2464] = {.lex_state = 577}, - [2465] = {.lex_state = 587}, - [2466] = {.lex_state = 587}, - [2467] = {.lex_state = 696}, - [2468] = {.lex_state = 587}, - [2469] = {.lex_state = 696}, - [2470] = {.lex_state = 579}, - [2471] = {.lex_state = 696}, - [2472] = {.lex_state = 534}, - [2473] = {.lex_state = 696}, - [2474] = {.lex_state = 1061}, - [2475] = {.lex_state = 696}, - [2476] = {.lex_state = 696}, - [2477] = {.lex_state = 696}, - [2478] = {.lex_state = 696}, - [2479] = {.lex_state = 1060}, - [2480] = {.lex_state = 534}, - [2481] = {.lex_state = 530}, - [2482] = {.lex_state = 1060}, - [2483] = {.lex_state = 1060}, - [2484] = {.lex_state = 1060}, - [2485] = {.lex_state = 1061}, - [2486] = {.lex_state = 1061}, - [2487] = {.lex_state = 696}, - [2488] = {.lex_state = 558}, - [2489] = {.lex_state = 1061}, - [2490] = {.lex_state = 1060}, - [2491] = {.lex_state = 558}, - [2492] = {.lex_state = 534}, - [2493] = {.lex_state = 1060}, - [2494] = {.lex_state = 1060}, - [2495] = {.lex_state = 558}, - [2496] = {.lex_state = 558}, - [2497] = {.lex_state = 696}, - [2498] = {.lex_state = 696}, - [2499] = {.lex_state = 696}, - [2500] = {.lex_state = 1060}, - [2501] = {.lex_state = 696}, - [2502] = {.lex_state = 696}, - [2503] = {.lex_state = 1060}, - [2504] = {.lex_state = 1061}, - [2505] = {.lex_state = 1061}, - [2506] = {.lex_state = 1061}, - [2507] = {.lex_state = 1061}, - [2508] = {.lex_state = 696}, - [2509] = {.lex_state = 1060}, - [2510] = {.lex_state = 555}, - [2511] = {.lex_state = 579}, - [2512] = {.lex_state = 1060}, - [2513] = {.lex_state = 1062}, - [2514] = {.lex_state = 544}, - [2515] = {.lex_state = 1049}, - [2516] = {.lex_state = 624}, - [2517] = {.lex_state = 1061}, - [2518] = {.lex_state = 1060}, - [2519] = {.lex_state = 1061}, - [2520] = {.lex_state = 1061}, - [2521] = {.lex_state = 696}, - [2522] = {.lex_state = 1060}, - [2523] = {.lex_state = 696}, - [2524] = {.lex_state = 696}, - [2525] = {.lex_state = 696}, - [2526] = {.lex_state = 521}, - [2527] = {.lex_state = 521}, - [2528] = {.lex_state = 1049}, - [2529] = {.lex_state = 579}, - [2530] = {.lex_state = 579}, - [2531] = {.lex_state = 579}, - [2532] = {.lex_state = 579}, - [2533] = {.lex_state = 579}, - [2534] = {.lex_state = 579}, - [2535] = {.lex_state = 521}, - [2536] = {.lex_state = 521}, - [2537] = {.lex_state = 539}, - [2538] = {.lex_state = 539}, - [2539] = {.lex_state = 606}, - [2540] = {.lex_state = 696}, - [2541] = {.lex_state = 1062}, - [2542] = {.lex_state = 606}, - [2543] = {.lex_state = 539}, - [2544] = {.lex_state = 539}, - [2545] = {.lex_state = 696}, - [2546] = {.lex_state = 696}, - [2547] = {.lex_state = 696}, - [2548] = {.lex_state = 696}, - [2549] = {.lex_state = 696}, - [2550] = {.lex_state = 696}, - [2551] = {.lex_state = 696}, - [2552] = {.lex_state = 1049}, - [2553] = {.lex_state = 1049}, - [2554] = {.lex_state = 1061}, - [2555] = {.lex_state = 696}, - [2556] = {.lex_state = 696}, - [2557] = {.lex_state = 696}, - [2558] = {.lex_state = 696}, - [2559] = {.lex_state = 534}, - [2560] = {.lex_state = 577}, - [2561] = {.lex_state = 607}, - [2562] = {.lex_state = 580}, - [2563] = {.lex_state = 607}, - [2564] = {.lex_state = 1061}, - [2565] = {.lex_state = 1061}, - [2566] = {.lex_state = 607}, - [2567] = {.lex_state = 1048}, - [2568] = {.lex_state = 577}, - [2569] = {.lex_state = 1061}, - [2570] = {.lex_state = 661}, - [2571] = {.lex_state = 577}, - [2572] = {.lex_state = 577}, - [2573] = {.lex_state = 561}, - [2574] = {.lex_state = 577}, - [2575] = {.lex_state = 561}, - [2576] = {.lex_state = 537}, - [2577] = {.lex_state = 1061}, - [2578] = {.lex_state = 577}, - [2579] = {.lex_state = 1061}, - [2580] = {.lex_state = 1061}, - [2581] = {.lex_state = 577}, - [2582] = {.lex_state = 1061}, - [2583] = {.lex_state = 1061}, - [2584] = {.lex_state = 1061}, - [2585] = {.lex_state = 1061}, - [2586] = {.lex_state = 577}, - [2587] = {.lex_state = 1048}, - [2588] = {.lex_state = 612}, - [2589] = {.lex_state = 1061}, - [2590] = {.lex_state = 555}, - [2591] = {.lex_state = 1061}, - [2592] = {.lex_state = 541}, - [2593] = {.lex_state = 541}, - [2594] = {.lex_state = 580}, - [2595] = {.lex_state = 496}, - [2596] = {.lex_state = 580}, - [2597] = {.lex_state = 555}, - [2598] = {.lex_state = 577}, - [2599] = {.lex_state = 1062}, - [2600] = {.lex_state = 580}, - [2601] = {.lex_state = 580}, - [2602] = {.lex_state = 1061}, - [2603] = {.lex_state = 1061}, - [2604] = {.lex_state = 1061}, - [2605] = {.lex_state = 1061}, - [2606] = {.lex_state = 577}, - [2607] = {.lex_state = 1061}, - [2608] = {.lex_state = 1061}, - [2609] = {.lex_state = 1061}, - [2610] = {.lex_state = 580}, - [2611] = {.lex_state = 580}, - [2612] = {.lex_state = 1061}, - [2613] = {.lex_state = 1062}, - [2614] = {.lex_state = 1061}, - [2615] = {.lex_state = 1061}, - [2616] = {.lex_state = 535}, - [2617] = {.lex_state = 1061}, - [2618] = {.lex_state = 628}, - [2619] = {.lex_state = 580}, - [2620] = {.lex_state = 584}, - [2621] = {.lex_state = 541}, - [2622] = {.lex_state = 496}, - [2623] = {.lex_state = 584}, - [2624] = {.lex_state = 541}, - [2625] = {.lex_state = 1061}, - [2626] = {.lex_state = 612}, - [2627] = {.lex_state = 1061}, - [2628] = {.lex_state = 523}, - [2629] = {.lex_state = 523}, - [2630] = {.lex_state = 1061}, - [2631] = {.lex_state = 1061}, - [2632] = {.lex_state = 661}, - [2633] = {.lex_state = 1061}, - [2634] = {.lex_state = 1062}, - [2635] = {.lex_state = 523}, - [2636] = {.lex_state = 1061}, - [2637] = {.lex_state = 1062}, - [2638] = {.lex_state = 523}, - [2639] = {.lex_state = 577}, - [2640] = {.lex_state = 1048}, - [2641] = {.lex_state = 555}, - [2642] = {.lex_state = 612}, - [2643] = {.lex_state = 1061}, - [2644] = {.lex_state = 1061}, - [2645] = {.lex_state = 555}, - [2646] = {.lex_state = 1061}, - [2647] = {.lex_state = 1061}, - [2648] = {.lex_state = 555}, - [2649] = {.lex_state = 555}, - [2650] = {.lex_state = 555}, - [2651] = {.lex_state = 555}, - [2652] = {.lex_state = 555}, - [2653] = {.lex_state = 1061}, - [2654] = {.lex_state = 1061}, - [2655] = {.lex_state = 1061}, - [2656] = {.lex_state = 530}, - [2657] = {.lex_state = 1061}, - [2658] = {.lex_state = 555}, - [2659] = {.lex_state = 555}, - [2660] = {.lex_state = 1061}, - [2661] = {.lex_state = 530}, - [2662] = {.lex_state = 614}, - [2663] = {.lex_state = 544}, - [2664] = {.lex_state = 561}, - [2665] = {.lex_state = 614}, - [2666] = {.lex_state = 530}, - [2667] = {.lex_state = 561}, - [2668] = {.lex_state = 1062}, - [2669] = {.lex_state = 516}, - [2670] = {.lex_state = 516}, - [2671] = {.lex_state = 613}, - [2672] = {.lex_state = 561}, - [2673] = {.lex_state = 1062}, - [2674] = {.lex_state = 613}, - [2675] = {.lex_state = 561}, - [2676] = {.lex_state = 632}, - [2677] = {.lex_state = 561}, - [2678] = {.lex_state = 581}, - [2679] = {.lex_state = 561}, - [2680] = {.lex_state = 516}, - [2681] = {.lex_state = 1062}, - [2682] = {.lex_state = 1062}, - [2683] = {.lex_state = 1062}, - [2684] = {.lex_state = 516}, - [2685] = {.lex_state = 561}, - [2686] = {.lex_state = 561}, - [2687] = {.lex_state = 530}, - [2688] = {.lex_state = 1062}, - [2689] = {.lex_state = 530}, - [2690] = {.lex_state = 614}, - [2691] = {.lex_state = 1059}, - [2692] = {.lex_state = 583}, - [2693] = {.lex_state = 530}, - [2694] = {.lex_state = 1062}, - [2695] = {.lex_state = 530}, - [2696] = {.lex_state = 530}, - [2697] = {.lex_state = 530}, - [2698] = {.lex_state = 544}, - [2699] = {.lex_state = 544}, - [2700] = {.lex_state = 622}, - [2701] = {.lex_state = 561}, - [2702] = {.lex_state = 561}, - [2703] = {.lex_state = 1059}, - [2704] = {.lex_state = 622}, - [2705] = {.lex_state = 542}, - [2706] = {.lex_state = 622}, - [2707] = {.lex_state = 578}, - [2708] = {.lex_state = 622}, - [2709] = {.lex_state = 622}, - [2710] = {.lex_state = 578}, - [2711] = {.lex_state = 1062}, - [2712] = {.lex_state = 561}, - [2713] = {.lex_state = 544}, - [2714] = {.lex_state = 561}, - [2715] = {.lex_state = 1062}, - [2716] = {.lex_state = 581}, - [2717] = {.lex_state = 1062}, - [2718] = {.lex_state = 613}, - [2719] = {.lex_state = 583}, - [2720] = {.lex_state = 1062}, - [2721] = {.lex_state = 1059}, - [2722] = {.lex_state = 1062}, - [2723] = {.lex_state = 1062}, - [2724] = {.lex_state = 561}, - [2725] = {.lex_state = 661}, - [2726] = {.lex_state = 537}, - [2727] = {.lex_state = 581}, - [2728] = {.lex_state = 622}, - [2729] = {.lex_state = 558}, - [2730] = {.lex_state = 530}, - [2731] = {.lex_state = 697}, - [2732] = {.lex_state = 1059}, - [2733] = {.lex_state = 697}, - [2734] = {.lex_state = 1049}, - [2735] = {.lex_state = 622}, - [2736] = {.lex_state = 561}, - [2737] = {.lex_state = 581}, - [2738] = {.lex_state = 1049}, - [2739] = {.lex_state = 622}, - [2740] = {.lex_state = 530}, - [2741] = {.lex_state = 697}, - [2742] = {.lex_state = 622}, - [2743] = {.lex_state = 578}, - [2744] = {.lex_state = 496}, - [2745] = {.lex_state = 625}, - [2746] = {.lex_state = 615}, - [2747] = {.lex_state = 1058}, - [2748] = {.lex_state = 535}, - [2749] = {.lex_state = 1062}, - [2750] = {.lex_state = 1062}, - [2751] = {.lex_state = 578}, - [2752] = {.lex_state = 1062}, - [2753] = {.lex_state = 1062}, - [2754] = {.lex_state = 1062}, - [2755] = {.lex_state = 1062}, - [2756] = {.lex_state = 530}, - [2757] = {.lex_state = 578}, - [2758] = {.lex_state = 578}, - [2759] = {.lex_state = 496}, - [2760] = {.lex_state = 558}, - [2761] = {.lex_state = 542}, - [2762] = {.lex_state = 578}, - [2763] = {.lex_state = 578}, - [2764] = {.lex_state = 578}, - [2765] = {.lex_state = 530}, - [2766] = {.lex_state = 578}, - [2767] = {.lex_state = 578}, - [2768] = {.lex_state = 558}, - [2769] = {.lex_state = 608}, - [2770] = {.lex_state = 496}, - [2771] = {.lex_state = 608}, - [2772] = {.lex_state = 496}, - [2773] = {.lex_state = 608}, - [2774] = {.lex_state = 561}, - [2775] = {.lex_state = 561}, - [2776] = {.lex_state = 551}, - [2777] = {.lex_state = 1062}, - [2778] = {.lex_state = 561}, - [2779] = {.lex_state = 551}, - [2780] = {.lex_state = 561}, - [2781] = {.lex_state = 1059}, - [2782] = {.lex_state = 561}, - [2783] = {.lex_state = 496}, - [2784] = {.lex_state = 496}, - [2785] = {.lex_state = 535}, - [2786] = {.lex_state = 1062}, - [2787] = {.lex_state = 558}, - [2788] = {.lex_state = 1062}, - [2789] = {.lex_state = 1062}, - [2790] = {.lex_state = 561}, - [2791] = {.lex_state = 1062}, - [2792] = {.lex_state = 1062}, - [2793] = {.lex_state = 530}, - [2794] = {.lex_state = 1062}, - [2795] = {.lex_state = 496}, - [2796] = {.lex_state = 535}, - [2797] = {.lex_state = 1062}, - [2798] = {.lex_state = 1062}, - [2799] = {.lex_state = 1058}, - [2800] = {.lex_state = 496}, - [2801] = {.lex_state = 584}, - [2802] = {.lex_state = 551}, - [2803] = {.lex_state = 584}, - [2804] = {.lex_state = 1062}, - [2805] = {.lex_state = 1062}, - [2806] = {.lex_state = 551}, - [2807] = {.lex_state = 1062}, - [2808] = {.lex_state = 1062}, - [2809] = {.lex_state = 496}, - [2810] = {.lex_state = 496}, - [2811] = {.lex_state = 578}, - [2812] = {.lex_state = 530}, - [2813] = {.lex_state = 496}, - [2814] = {.lex_state = 537}, - [2815] = {.lex_state = 624}, - [2816] = {.lex_state = 1058}, - [2817] = {.lex_state = 1058}, - [2818] = {.lex_state = 496}, - [2819] = {.lex_state = 537}, - [2820] = {.lex_state = 1062}, - [2821] = {.lex_state = 537}, - [2822] = {.lex_state = 537}, - [2823] = {.lex_state = 1062}, - [2824] = {.lex_state = 496}, - [2825] = {.lex_state = 496}, - [2826] = {.lex_state = 624}, - [2827] = {.lex_state = 1062}, - [2828] = {.lex_state = 578}, - [2829] = {.lex_state = 1062}, - [2830] = {.lex_state = 496}, - [2831] = {.lex_state = 1059}, - [2832] = {.lex_state = 1062}, - [2833] = {.lex_state = 496}, - [2834] = {.lex_state = 558}, - [2835] = {.lex_state = 1062}, - [2836] = {.lex_state = 537}, - [2837] = {.lex_state = 537}, - [2838] = {.lex_state = 558}, - [2839] = {.lex_state = 1062}, - [2840] = {.lex_state = 1062}, - [2841] = {.lex_state = 558}, - [2842] = {.lex_state = 537}, - [2843] = {.lex_state = 623}, - [2844] = {.lex_state = 558}, - [2845] = {.lex_state = 615}, - [2846] = {.lex_state = 1062}, - [2847] = {.lex_state = 558}, - [2848] = {.lex_state = 1049}, - [2849] = {.lex_state = 558}, - [2850] = {.lex_state = 1062}, - [2851] = {.lex_state = 1062}, - [2852] = {.lex_state = 1062}, - [2853] = {.lex_state = 537}, - [2854] = {.lex_state = 1062}, - [2855] = {.lex_state = 558}, - [2856] = {.lex_state = 1058}, - [2857] = {.lex_state = 1062}, - [2858] = {.lex_state = 1062}, - [2859] = {.lex_state = 537}, - [2860] = {.lex_state = 1062}, - [2861] = {.lex_state = 622}, - [2862] = {.lex_state = 558}, - [2863] = {.lex_state = 558}, - [2864] = {.lex_state = 615}, - [2865] = {.lex_state = 1062}, - [2866] = {.lex_state = 537}, - [2867] = {.lex_state = 1062}, - [2868] = {.lex_state = 558}, - [2869] = {.lex_state = 1062}, - [2870] = {.lex_state = 1062}, - [2871] = {.lex_state = 535}, - [2872] = {.lex_state = 1058}, - [2873] = {.lex_state = 1062}, - [2874] = {.lex_state = 1058}, - [2875] = {.lex_state = 496}, - [2876] = {.lex_state = 496}, - [2877] = {.lex_state = 496}, - [2878] = {.lex_state = 496}, - [2879] = {.lex_state = 530}, - [2880] = {.lex_state = 542}, - [2881] = {.lex_state = 558}, - [2882] = {.lex_state = 558}, - [2883] = {.lex_state = 558}, - [2884] = {.lex_state = 558}, - [2885] = {.lex_state = 542}, - [2886] = {.lex_state = 558}, - [2887] = {.lex_state = 624}, - [2888] = {.lex_state = 551}, - [2889] = {.lex_state = 530}, - [2890] = {.lex_state = 609}, - [2891] = {.lex_state = 558}, - [2892] = {.lex_state = 542}, - [2893] = {.lex_state = 542}, - [2894] = {.lex_state = 609}, - [2895] = {.lex_state = 542}, - [2896] = {.lex_state = 559}, - [2897] = {.lex_state = 558}, - [2898] = {.lex_state = 1049}, - [2899] = {.lex_state = 1062}, - [2900] = {.lex_state = 581}, - [2901] = {.lex_state = 542}, - [2902] = {.lex_state = 558}, - [2903] = {.lex_state = 558}, - [2904] = {.lex_state = 558}, - [2905] = {.lex_state = 537}, - [2906] = {.lex_state = 558}, - [2907] = {.lex_state = 584}, - [2908] = {.lex_state = 542}, - [2909] = {.lex_state = 558}, - [2910] = {.lex_state = 558}, - [2911] = {.lex_state = 542}, - [2912] = {.lex_state = 558}, - [2913] = {.lex_state = 558}, - [2914] = {.lex_state = 559}, - [2915] = {.lex_state = 558}, - [2916] = {.lex_state = 558}, - [2917] = {.lex_state = 558}, - [2918] = {.lex_state = 628}, - [2919] = {.lex_state = 559}, - [2920] = {.lex_state = 537}, - [2921] = {.lex_state = 542}, - [2922] = {.lex_state = 584}, - [2923] = {.lex_state = 558}, - [2924] = {.lex_state = 537}, - [2925] = {.lex_state = 558}, - [2926] = {.lex_state = 584}, - [2927] = {.lex_state = 558}, - [2928] = {.lex_state = 558}, - [2929] = {.lex_state = 551}, - [2930] = {.lex_state = 558}, - [2931] = {.lex_state = 584}, - [2932] = {.lex_state = 584}, - [2933] = {.lex_state = 558}, - [2934] = {.lex_state = 584}, - [2935] = {.lex_state = 530}, - [2936] = {.lex_state = 584}, - [2937] = {.lex_state = 559}, - [2938] = {.lex_state = 609}, - [2939] = {.lex_state = 558}, - [2940] = {.lex_state = 584}, - [2941] = {.lex_state = 530}, - [2942] = {.lex_state = 1048}, - [2943] = {.lex_state = 584}, - [2944] = {.lex_state = 584}, - [2945] = {.lex_state = 584}, - [2946] = {.lex_state = 584}, - [2947] = {.lex_state = 584}, - [2948] = {.lex_state = 558}, - [2949] = {.lex_state = 1048}, - [2950] = {.lex_state = 537}, - [2951] = {.lex_state = 623}, - [2952] = {.lex_state = 624}, - [2953] = {.lex_state = 559}, - [2954] = {.lex_state = 628}, - [2955] = {.lex_state = 558}, - [2956] = {.lex_state = 542}, - [2957] = {.lex_state = 1048}, - [2958] = {.lex_state = 558}, - [2959] = {.lex_state = 1048}, - [2960] = {.lex_state = 558}, - [2961] = {.lex_state = 537}, - [2962] = {.lex_state = 558}, - [2963] = {.lex_state = 558}, - [2964] = {.lex_state = 530}, - [2965] = {.lex_state = 584}, - [2966] = {.lex_state = 559}, - [2967] = {.lex_state = 621}, - [2968] = {.lex_state = 559}, - [2969] = {.lex_state = 1063}, - [2970] = {.lex_state = 537}, - [2971] = {.lex_state = 581}, - [2972] = {.lex_state = 625}, - [2973] = {.lex_state = 621}, - [2974] = {.lex_state = 1062}, - [2975] = {.lex_state = 623}, - [2976] = {.lex_state = 1062}, - [2977] = {.lex_state = 581}, - [2978] = {.lex_state = 542}, - [2979] = {.lex_state = 1062}, - [2980] = {.lex_state = 542}, - [2981] = {.lex_state = 1049}, - [2982] = {.lex_state = 559}, - [2983] = {.lex_state = 625}, - [2984] = {.lex_state = 584}, - [2985] = {.lex_state = 584}, - [2986] = {.lex_state = 1049}, - [2987] = {.lex_state = 559}, - [2988] = {.lex_state = 559}, - [2989] = {.lex_state = 559}, - [2990] = {.lex_state = 559}, - [2991] = {.lex_state = 559}, - [2992] = {.lex_state = 559}, - [2993] = {.lex_state = 559}, - [2994] = {.lex_state = 559}, - [2995] = {.lex_state = 559}, - [2996] = {.lex_state = 584}, - [2997] = {.lex_state = 1059}, - [2998] = {.lex_state = 537}, - [2999] = {.lex_state = 584}, - [3000] = {.lex_state = 559}, - [3001] = {.lex_state = 584}, - [3002] = {.lex_state = 1059}, - [3003] = {.lex_state = 581}, - [3004] = {.lex_state = 559}, - [3005] = {.lex_state = 559}, - [3006] = {.lex_state = 559}, - [3007] = {.lex_state = 584}, - [3008] = {.lex_state = 559}, - [3009] = {.lex_state = 559}, - [3010] = {.lex_state = 542}, - [3011] = {.lex_state = 621}, - [3012] = {.lex_state = 559}, - [3013] = {.lex_state = 542}, - [3014] = {.lex_state = 559}, - [3015] = {.lex_state = 585}, - [3016] = {.lex_state = 581}, - [3017] = {.lex_state = 623}, - [3018] = {.lex_state = 1049}, - [3019] = {.lex_state = 622}, - [3020] = {.lex_state = 1062}, - [3021] = {.lex_state = 559}, - [3022] = {.lex_state = 530}, - [3023] = {.lex_state = 1059}, - [3024] = {.lex_state = 1049}, - [3025] = {.lex_state = 622}, - [3026] = {.lex_state = 537}, - [3027] = {.lex_state = 1049}, - [3028] = {.lex_state = 559}, - [3029] = {.lex_state = 559}, - [3030] = {.lex_state = 559}, - [3031] = {.lex_state = 542}, - [3032] = {.lex_state = 621}, - [3033] = {.lex_state = 621}, - [3034] = {.lex_state = 621}, - [3035] = {.lex_state = 621}, - [3036] = {.lex_state = 621}, - [3037] = {.lex_state = 621}, - [3038] = {.lex_state = 621}, - [3039] = {.lex_state = 621}, - [3040] = {.lex_state = 625}, - [3041] = {.lex_state = 1059}, - [3042] = {.lex_state = 628}, - [3043] = {.lex_state = 625}, - [3044] = {.lex_state = 632}, - [3045] = {.lex_state = 625}, - [3046] = {.lex_state = 585}, - [3047] = {.lex_state = 628}, - [3048] = {.lex_state = 1049}, - [3049] = {.lex_state = 559}, - [3050] = {.lex_state = 585}, - [3051] = {.lex_state = 1062}, - [3052] = {.lex_state = 542}, - [3053] = {.lex_state = 559}, - [3054] = {.lex_state = 542}, - [3055] = {.lex_state = 1059}, - [3056] = {.lex_state = 542}, - [3057] = {.lex_state = 542}, - [3058] = {.lex_state = 542}, - [3059] = {.lex_state = 542}, - [3060] = {.lex_state = 542}, - [3061] = {.lex_state = 1049}, - [3062] = {.lex_state = 530}, - [3063] = {.lex_state = 581}, - [3064] = {.lex_state = 581}, - [3065] = {.lex_state = 559}, - [3066] = {.lex_state = 625}, - [3067] = {.lex_state = 581}, - [3068] = {.lex_state = 581}, - [3069] = {.lex_state = 581}, - [3070] = {.lex_state = 581}, - [3071] = {.lex_state = 625}, - [3072] = {.lex_state = 632}, - [3073] = {.lex_state = 559}, - [3074] = {.lex_state = 559}, - [3075] = {.lex_state = 581}, - [3076] = {.lex_state = 585}, - [3077] = {.lex_state = 559}, - [3078] = {.lex_state = 581}, - [3079] = {.lex_state = 581}, - [3080] = {.lex_state = 559}, - [3081] = {.lex_state = 559}, - [3082] = {.lex_state = 559}, - [3083] = {.lex_state = 559}, - [3084] = {.lex_state = 1056}, - [3085] = {.lex_state = 625}, - [3086] = {.lex_state = 537}, - [3087] = {.lex_state = 559}, - [3088] = {.lex_state = 622}, - [3089] = {.lex_state = 1062}, - [3090] = {.lex_state = 1062}, - [3091] = {.lex_state = 1062}, - [3092] = {.lex_state = 1062}, - [3093] = {.lex_state = 581}, - [3094] = {.lex_state = 536}, - [3095] = {.lex_state = 581}, - [3096] = {.lex_state = 581}, - [3097] = {.lex_state = 1049}, - [3098] = {.lex_state = 1062}, - [3099] = {.lex_state = 1062}, - [3100] = {.lex_state = 530}, - [3101] = {.lex_state = 530}, - [3102] = {.lex_state = 1062}, - [3103] = {.lex_state = 1062}, - [3104] = {.lex_state = 639}, - [3105] = {.lex_state = 1062}, - [3106] = {.lex_state = 1062}, - [3107] = {.lex_state = 1062}, - [3108] = {.lex_state = 551}, - [3109] = {.lex_state = 559}, - [3110] = {.lex_state = 1062}, - [3111] = {.lex_state = 551}, - [3112] = {.lex_state = 1062}, - [3113] = {.lex_state = 622}, - [3114] = {.lex_state = 1062}, - [3115] = {.lex_state = 622}, - [3116] = {.lex_state = 581}, - [3117] = {.lex_state = 622}, - [3118] = {.lex_state = 622}, - [3119] = {.lex_state = 1062}, - [3120] = {.lex_state = 1062}, - [3121] = {.lex_state = 542}, - [3122] = {.lex_state = 581}, - [3123] = {.lex_state = 1062}, - [3124] = {.lex_state = 581}, - [3125] = {.lex_state = 551}, - [3126] = {.lex_state = 530}, - [3127] = {.lex_state = 530}, - [3128] = {.lex_state = 625}, - [3129] = {.lex_state = 530}, - [3130] = {.lex_state = 530}, - [3131] = {.lex_state = 530}, - [3132] = {.lex_state = 1062}, - [3133] = {.lex_state = 639}, - [3134] = {.lex_state = 1062}, - [3135] = {.lex_state = 623}, - [3136] = {.lex_state = 542}, - [3137] = {.lex_state = 551}, - [3138] = {.lex_state = 1051}, - [3139] = {.lex_state = 622}, - [3140] = {.lex_state = 622}, - [3141] = {.lex_state = 1062}, - [3142] = {.lex_state = 622}, - [3143] = {.lex_state = 581}, - [3144] = {.lex_state = 1062}, - [3145] = {.lex_state = 582}, - [3146] = {.lex_state = 1062}, - [3147] = {.lex_state = 1062}, - [3148] = {.lex_state = 1062}, - [3149] = {.lex_state = 622}, - [3150] = {.lex_state = 1062}, - [3151] = {.lex_state = 639}, - [3152] = {.lex_state = 1049}, - [3153] = {.lex_state = 622}, - [3154] = {.lex_state = 622}, - [3155] = {.lex_state = 1062}, - [3156] = {.lex_state = 581}, - [3157] = {.lex_state = 559}, - [3158] = {.lex_state = 639}, - [3159] = {.lex_state = 1062}, - [3160] = {.lex_state = 581}, - [3161] = {.lex_state = 625}, - [3162] = {.lex_state = 585}, - [3163] = {.lex_state = 1062}, - [3164] = {.lex_state = 1062}, - [3165] = {.lex_state = 1062}, - [3166] = {.lex_state = 632}, - [3167] = {.lex_state = 562}, - [3168] = {.lex_state = 1062}, - [3169] = {.lex_state = 562}, - [3170] = {.lex_state = 1062}, - [3171] = {.lex_state = 582}, - [3172] = {.lex_state = 551}, - [3173] = {.lex_state = 1062}, - [3174] = {.lex_state = 551}, - [3175] = {.lex_state = 639}, - [3176] = {.lex_state = 1049}, - [3177] = {.lex_state = 1049}, - [3178] = {.lex_state = 623}, - [3179] = {.lex_state = 581}, - [3180] = {.lex_state = 581}, - [3181] = {.lex_state = 1062}, - [3182] = {.lex_state = 1062}, - [3183] = {.lex_state = 1049}, - [3184] = {.lex_state = 632}, - [3185] = {.lex_state = 581}, - [3186] = {.lex_state = 1062}, - [3187] = {.lex_state = 625}, - [3188] = {.lex_state = 1049}, - [3189] = {.lex_state = 1062}, - [3190] = {.lex_state = 581}, - [3191] = {.lex_state = 1062}, - [3192] = {.lex_state = 1062}, - [3193] = {.lex_state = 581}, - [3194] = {.lex_state = 559}, - [3195] = {.lex_state = 581}, - [3196] = {.lex_state = 551}, - [3197] = {.lex_state = 551}, - [3198] = {.lex_state = 1062}, - [3199] = {.lex_state = 1062}, - [3200] = {.lex_state = 542}, - [3201] = {.lex_state = 1062}, - [3202] = {.lex_state = 1062}, - [3203] = {.lex_state = 581}, - [3204] = {.lex_state = 564}, - [3205] = {.lex_state = 581}, - [3206] = {.lex_state = 581}, - [3207] = {.lex_state = 1062}, - [3208] = {.lex_state = 581}, - [3209] = {.lex_state = 1049}, - [3210] = {.lex_state = 622}, - [3211] = {.lex_state = 581}, - [3212] = {.lex_state = 551}, - [3213] = {.lex_state = 581}, - [3214] = {.lex_state = 581}, - [3215] = {.lex_state = 623}, - [3216] = {.lex_state = 1062}, - [3217] = {.lex_state = 1062}, - [3218] = {.lex_state = 551}, - [3219] = {.lex_state = 1049}, - [3220] = {.lex_state = 559}, - [3221] = {.lex_state = 530}, - [3222] = {.lex_state = 581}, - [3223] = {.lex_state = 1062}, - [3224] = {.lex_state = 581}, - [3225] = {.lex_state = 1062}, - [3226] = {.lex_state = 581}, - [3227] = {.lex_state = 530}, - [3228] = {.lex_state = 1062}, - [3229] = {.lex_state = 1062}, - [3230] = {.lex_state = 581}, - [3231] = {.lex_state = 581}, - [3232] = {.lex_state = 530}, - [3233] = {.lex_state = 530}, - [3234] = {.lex_state = 1051}, - [3235] = {.lex_state = 581}, - [3236] = {.lex_state = 582}, - [3237] = {.lex_state = 551}, - [3238] = {.lex_state = 581}, - [3239] = {.lex_state = 1049}, - [3240] = {.lex_state = 1049}, - [3241] = {.lex_state = 623}, - [3242] = {.lex_state = 1062}, - [3243] = {.lex_state = 1062}, - [3244] = {.lex_state = 559}, - [3245] = {.lex_state = 559}, - [3246] = {.lex_state = 1062}, - [3247] = {.lex_state = 581}, - [3248] = {.lex_state = 581}, - [3249] = {.lex_state = 537}, - [3250] = {.lex_state = 1062}, - [3251] = {.lex_state = 1062}, - [3252] = {.lex_state = 551}, - [3253] = {.lex_state = 585}, - [3254] = {.lex_state = 1062}, - [3255] = {.lex_state = 1062}, - [3256] = {.lex_state = 1062}, - [3257] = {.lex_state = 1057}, - [3258] = {.lex_state = 1062}, - [3259] = {.lex_state = 1062}, - [3260] = {.lex_state = 1062}, - [3261] = {.lex_state = 1049}, - [3262] = {.lex_state = 1062}, - [3263] = {.lex_state = 551}, - [3264] = {.lex_state = 1062}, - [3265] = {.lex_state = 1062}, - [3266] = {.lex_state = 1062}, - [3267] = {.lex_state = 582}, - [3268] = {.lex_state = 1049}, - [3269] = {.lex_state = 559}, - [3270] = {.lex_state = 1062}, - [3271] = {.lex_state = 623}, - [3272] = {.lex_state = 623}, - [3273] = {.lex_state = 623}, - [3274] = {.lex_state = 623}, - [3275] = {.lex_state = 623}, - [3276] = {.lex_state = 623}, - [3277] = {.lex_state = 551}, - [3278] = {.lex_state = 623}, - [3279] = {.lex_state = 1049}, - [3280] = {.lex_state = 1062}, - [3281] = {.lex_state = 1049}, - [3282] = {.lex_state = 622}, - [3283] = {.lex_state = 1049}, - [3284] = {.lex_state = 622}, - [3285] = {.lex_state = 1062}, - [3286] = {.lex_state = 1049}, - [3287] = {.lex_state = 1049}, - [3288] = {.lex_state = 542}, - [3289] = {.lex_state = 582}, - [3290] = {.lex_state = 1062}, - [3291] = {.lex_state = 1062}, - [3292] = {.lex_state = 530}, - [3293] = {.lex_state = 1049}, - [3294] = {.lex_state = 1062}, - [3295] = {.lex_state = 1062}, - [3296] = {.lex_state = 537}, - [3297] = {.lex_state = 1062}, - [3298] = {.lex_state = 1062}, - [3299] = {.lex_state = 559}, - [3300] = {.lex_state = 582}, - [3301] = {.lex_state = 559}, - [3302] = {.lex_state = 559}, - [3303] = {.lex_state = 559}, - [3304] = {.lex_state = 559}, - [3305] = {.lex_state = 582}, - [3306] = {.lex_state = 537}, - [3307] = {.lex_state = 559}, - [3308] = {.lex_state = 582}, - [3309] = {.lex_state = 537}, - [3310] = {.lex_state = 582}, - [3311] = {.lex_state = 537}, - [3312] = {.lex_state = 582}, - [3313] = {.lex_state = 559}, - [3314] = {.lex_state = 582}, - [3315] = {.lex_state = 559}, - [3316] = {.lex_state = 582}, - [3317] = {.lex_state = 559}, - [3318] = {.lex_state = 559}, - [3319] = {.lex_state = 530}, - [3320] = {.lex_state = 559}, - [3321] = {.lex_state = 559}, - [3322] = {.lex_state = 559}, - [3323] = {.lex_state = 582}, - [3324] = {.lex_state = 622}, - [3325] = {.lex_state = 559}, - [3326] = {.lex_state = 530}, - [3327] = {.lex_state = 559}, - [3328] = {.lex_state = 559}, - [3329] = {.lex_state = 559}, - [3330] = {.lex_state = 559}, - [3331] = {.lex_state = 582}, - [3332] = {.lex_state = 582}, - [3333] = {.lex_state = 582}, - [3334] = {.lex_state = 582}, - [3335] = {.lex_state = 582}, - [3336] = {.lex_state = 537}, - [3337] = {.lex_state = 559}, - [3338] = {.lex_state = 559}, - [3339] = {.lex_state = 530}, - [3340] = {.lex_state = 537}, - [3341] = {.lex_state = 559}, - [3342] = {.lex_state = 530}, - [3343] = {.lex_state = 582}, - [3344] = {.lex_state = 559}, - [3345] = {.lex_state = 559}, - [3346] = {.lex_state = 559}, - [3347] = {.lex_state = 582}, - [3348] = {.lex_state = 622}, - [3349] = {.lex_state = 559}, - [3350] = {.lex_state = 559}, - [3351] = {.lex_state = 559}, - [3352] = {.lex_state = 559}, - [3353] = {.lex_state = 537}, - [3354] = {.lex_state = 530}, - [3355] = {.lex_state = 582}, - [3356] = {.lex_state = 559}, - [3357] = {.lex_state = 559}, - [3358] = {.lex_state = 559}, - [3359] = {.lex_state = 622}, - [3360] = {.lex_state = 625}, - [3361] = {.lex_state = 582}, - [3362] = {.lex_state = 559}, - [3363] = {.lex_state = 559}, - [3364] = {.lex_state = 530}, - [3365] = {.lex_state = 622}, - [3366] = {.lex_state = 559}, - [3367] = {.lex_state = 559}, - [3368] = {.lex_state = 530}, - [3369] = {.lex_state = 559}, - [3370] = {.lex_state = 542}, - [3371] = {.lex_state = 582}, - [3372] = {.lex_state = 559}, - [3373] = {.lex_state = 559}, - [3374] = {.lex_state = 661}, - [3375] = {.lex_state = 531}, - [3376] = {.lex_state = 559}, - [3377] = {.lex_state = 559}, - [3378] = {.lex_state = 559}, - [3379] = {.lex_state = 621}, - [3380] = {.lex_state = 530}, - [3381] = {.lex_state = 530}, - [3382] = {.lex_state = 582}, - [3383] = {.lex_state = 559}, - [3384] = {.lex_state = 559}, - [3385] = {.lex_state = 559}, - [3386] = {.lex_state = 496}, - [3387] = {.lex_state = 559}, - [3388] = {.lex_state = 531}, - [3389] = {.lex_state = 559}, - [3390] = {.lex_state = 582}, - [3391] = {.lex_state = 559}, - [3392] = {.lex_state = 582}, - [3393] = {.lex_state = 559}, - [3394] = {.lex_state = 537}, - [3395] = {.lex_state = 582}, - [3396] = {.lex_state = 537}, - [3397] = {.lex_state = 559}, - [3398] = {.lex_state = 537}, - [3399] = {.lex_state = 559}, - [3400] = {.lex_state = 537}, - [3401] = {.lex_state = 582}, - [3402] = {.lex_state = 622}, - [3403] = {.lex_state = 496}, - [3404] = {.lex_state = 559}, - [3405] = {.lex_state = 582}, - [3406] = {.lex_state = 559}, - [3407] = {.lex_state = 559}, - [3408] = {.lex_state = 531}, - [3409] = {.lex_state = 537}, - [3410] = {.lex_state = 559}, - [3411] = {.lex_state = 582}, - [3412] = {.lex_state = 559}, - [3413] = {.lex_state = 559}, - [3414] = {.lex_state = 530}, - [3415] = {.lex_state = 559}, - [3416] = {.lex_state = 559}, - [3417] = {.lex_state = 530}, - [3418] = {.lex_state = 530}, - [3419] = {.lex_state = 582}, - [3420] = {.lex_state = 625}, - [3421] = {.lex_state = 559}, - [3422] = {.lex_state = 531}, - [3423] = {.lex_state = 542}, - [3424] = {.lex_state = 559}, - [3425] = {.lex_state = 582}, - [3426] = {.lex_state = 582}, - [3427] = {.lex_state = 559}, - [3428] = {.lex_state = 536}, - [3429] = {.lex_state = 621}, - [3430] = {.lex_state = 622}, - [3431] = {.lex_state = 559}, - [3432] = {.lex_state = 625}, - [3433] = {.lex_state = 559}, - [3434] = {.lex_state = 625}, - [3435] = {.lex_state = 559}, - [3436] = {.lex_state = 559}, - [3437] = {.lex_state = 625}, - [3438] = {.lex_state = 622}, - [3439] = {.lex_state = 582}, - [3440] = {.lex_state = 559}, - [3441] = {.lex_state = 582}, - [3442] = {.lex_state = 582}, - [3443] = {.lex_state = 559}, - [3444] = {.lex_state = 582}, - [3445] = {.lex_state = 559}, - [3446] = {.lex_state = 559}, - [3447] = {.lex_state = 530}, - [3448] = {.lex_state = 559}, - [3449] = {.lex_state = 559}, - [3450] = {.lex_state = 625}, - [3451] = {.lex_state = 530}, - [3452] = {.lex_state = 559}, - [3453] = {.lex_state = 582}, - [3454] = {.lex_state = 582}, - [3455] = {.lex_state = 559}, - [3456] = {.lex_state = 531}, - [3457] = {.lex_state = 537}, - [3458] = {.lex_state = 559}, - [3459] = {.lex_state = 559}, - [3460] = {.lex_state = 559}, - [3461] = {.lex_state = 582}, - [3462] = {.lex_state = 559}, - [3463] = {.lex_state = 530}, - [3464] = {.lex_state = 559}, - [3465] = {.lex_state = 559}, - [3466] = {.lex_state = 559}, - [3467] = {.lex_state = 537}, - [3468] = {.lex_state = 487}, - [3469] = {.lex_state = 582}, - [3470] = {.lex_state = 582}, - [3471] = {.lex_state = 588}, - [3472] = {.lex_state = 622}, - [3473] = {.lex_state = 622}, - [3474] = {.lex_state = 622}, - [3475] = {.lex_state = 622}, - [3476] = {.lex_state = 622}, - [3477] = {.lex_state = 622}, - [3478] = {.lex_state = 622}, - [3479] = {.lex_state = 622}, - [3480] = {.lex_state = 622}, - [3481] = {.lex_state = 536}, - [3482] = {.lex_state = 622}, - [3483] = {.lex_state = 622}, - [3484] = {.lex_state = 622}, - [3485] = {.lex_state = 662}, - [3486] = {.lex_state = 622}, - [3487] = {.lex_state = 622}, - [3488] = {.lex_state = 622}, - [3489] = {.lex_state = 622}, - [3490] = {.lex_state = 622}, - [3491] = {.lex_state = 622}, - [3492] = {.lex_state = 622}, - [3493] = {.lex_state = 622}, - [3494] = {.lex_state = 622}, - [3495] = {.lex_state = 622}, - [3496] = {.lex_state = 622}, - [3497] = {.lex_state = 622}, - [3498] = {.lex_state = 622}, - [3499] = {.lex_state = 622}, - [3500] = {.lex_state = 622}, - [3501] = {.lex_state = 622}, - [3502] = {.lex_state = 585}, - [3503] = {.lex_state = 585}, - [3504] = {.lex_state = 590}, - [3505] = {.lex_state = 588}, - [3506] = {.lex_state = 530}, - [3507] = {.lex_state = 531}, - [3508] = {.lex_state = 625}, - [3509] = {.lex_state = 622}, - [3510] = {.lex_state = 668}, - [3511] = {.lex_state = 585}, - [3512] = {.lex_state = 582}, - [3513] = {.lex_state = 668}, - [3514] = {.lex_state = 625}, - [3515] = {.lex_state = 536}, - [3516] = {.lex_state = 536}, - [3517] = {.lex_state = 536}, - [3518] = {.lex_state = 582}, - [3519] = {.lex_state = 582}, - [3520] = {.lex_state = 585}, - [3521] = {.lex_state = 582}, - [3522] = {.lex_state = 585}, - [3523] = {.lex_state = 622}, - [3524] = {.lex_state = 542}, - [3525] = {.lex_state = 542}, - [3526] = {.lex_state = 536}, - [3527] = {.lex_state = 536}, - [3528] = {.lex_state = 536}, - [3529] = {.lex_state = 487}, - [3530] = {.lex_state = 542}, - [3531] = {.lex_state = 542}, - [3532] = {.lex_state = 542}, - [3533] = {.lex_state = 542}, - [3534] = {.lex_state = 585}, - [3535] = {.lex_state = 542}, - [3536] = {.lex_state = 542}, - [3537] = {.lex_state = 487}, - [3538] = {.lex_state = 542}, - [3539] = {.lex_state = 542}, - [3540] = {.lex_state = 530}, - [3541] = {.lex_state = 530}, - [3542] = {.lex_state = 542}, - [3543] = {.lex_state = 530}, - [3544] = {.lex_state = 530}, - [3545] = {.lex_state = 487}, - [3546] = {.lex_state = 662}, - [3547] = {.lex_state = 530}, - [3548] = {.lex_state = 530}, - [3549] = {.lex_state = 530}, - [3550] = {.lex_state = 530}, - [3551] = {.lex_state = 1049}, - [3552] = {.lex_state = 537}, - [3553] = {.lex_state = 1053}, - [3554] = {.lex_state = 530}, - [3555] = {.lex_state = 487}, - [3556] = {.lex_state = 537}, - [3557] = {.lex_state = 537}, - [3558] = {.lex_state = 530}, - [3559] = {.lex_state = 582}, - [3560] = {.lex_state = 530}, - [3561] = {.lex_state = 537}, - [3562] = {.lex_state = 487}, - [3563] = {.lex_state = 537}, - [3564] = {.lex_state = 537}, - [3565] = {.lex_state = 537}, - [3566] = {.lex_state = 530}, - [3567] = {.lex_state = 530}, - [3568] = {.lex_state = 530}, - [3569] = {.lex_state = 530}, - [3570] = {.lex_state = 530}, - [3571] = {.lex_state = 487}, - [3572] = {.lex_state = 531}, - [3573] = {.lex_state = 537}, - [3574] = {.lex_state = 585}, - [3575] = {.lex_state = 487}, - [3576] = {.lex_state = 1048}, - [3577] = {.lex_state = 487}, - [3578] = {.lex_state = 531}, - [3579] = {.lex_state = 630}, - [3580] = {.lex_state = 530}, - [3581] = {.lex_state = 530}, - [3582] = {.lex_state = 530}, - [3583] = {.lex_state = 530}, - [3584] = {.lex_state = 530}, - [3585] = {.lex_state = 530}, - [3586] = {.lex_state = 530}, - [3587] = {.lex_state = 530}, - [3588] = {.lex_state = 530}, - [3589] = {.lex_state = 585}, - [3590] = {.lex_state = 585}, - [3591] = {.lex_state = 630}, - [3592] = {.lex_state = 530}, - [3593] = {.lex_state = 530}, - [3594] = {.lex_state = 530}, - [3595] = {.lex_state = 530}, - [3596] = {.lex_state = 530}, - [3597] = {.lex_state = 530}, - [3598] = {.lex_state = 630}, - [3599] = {.lex_state = 530}, - [3600] = {.lex_state = 530}, - [3601] = {.lex_state = 530}, - [3602] = {.lex_state = 630}, - [3603] = {.lex_state = 585}, - [3604] = {.lex_state = 585}, - [3605] = {.lex_state = 585}, - [3606] = {.lex_state = 542}, - [3607] = {.lex_state = 531}, - [3608] = {.lex_state = 582}, - [3609] = {.lex_state = 582}, - [3610] = {.lex_state = 530}, - [3611] = {.lex_state = 630}, - [3612] = {.lex_state = 625}, - [3613] = {.lex_state = 582}, - [3614] = {.lex_state = 582}, - [3615] = {.lex_state = 625}, - [3616] = {.lex_state = 582}, - [3617] = {.lex_state = 582}, - [3618] = {.lex_state = 625}, - [3619] = {.lex_state = 625}, - [3620] = {.lex_state = 582}, - [3621] = {.lex_state = 582}, - [3622] = {.lex_state = 582}, - [3623] = {.lex_state = 582}, - [3624] = {.lex_state = 582}, - [3625] = {.lex_state = 582}, - [3626] = {.lex_state = 582}, - [3627] = {.lex_state = 582}, - [3628] = {.lex_state = 582}, - [3629] = {.lex_state = 625}, - [3630] = {.lex_state = 625}, - [3631] = {.lex_state = 582}, - [3632] = {.lex_state = 542}, - [3633] = {.lex_state = 582}, - [3634] = {.lex_state = 582}, - [3635] = {.lex_state = 542}, - [3636] = {.lex_state = 629}, - [3637] = {.lex_state = 582}, - [3638] = {.lex_state = 582}, - [3639] = {.lex_state = 582}, - [3640] = {.lex_state = 582}, - [3641] = {.lex_state = 542}, - [3642] = {.lex_state = 511}, - [3643] = {.lex_state = 582}, - [3644] = {.lex_state = 542}, - [3645] = {.lex_state = 582}, - [3646] = {.lex_state = 537}, - [3647] = {.lex_state = 536}, - [3648] = {.lex_state = 661}, - [3649] = {.lex_state = 537}, - [3650] = {.lex_state = 582}, - [3651] = {.lex_state = 582}, - [3652] = {.lex_state = 542}, - [3653] = {.lex_state = 582}, - [3654] = {.lex_state = 1049}, - [3655] = {.lex_state = 1049}, - [3656] = {.lex_state = 1049}, - [3657] = {.lex_state = 1049}, - [3658] = {.lex_state = 530}, - [3659] = {.lex_state = 542}, - [3660] = {.lex_state = 582}, - [3661] = {.lex_state = 542}, - [3662] = {.lex_state = 582}, - [3663] = {.lex_state = 582}, - [3664] = {.lex_state = 542}, - [3665] = {.lex_state = 537}, - [3666] = {.lex_state = 530}, - [3667] = {.lex_state = 537}, - [3668] = {.lex_state = 582}, - [3669] = {.lex_state = 542}, - [3670] = {.lex_state = 582}, - [3671] = {.lex_state = 582}, - [3672] = {.lex_state = 582}, - [3673] = {.lex_state = 582}, - [3674] = {.lex_state = 582}, - [3675] = {.lex_state = 582}, - [3676] = {.lex_state = 537}, - [3677] = {.lex_state = 537}, - [3678] = {.lex_state = 530}, - [3679] = {.lex_state = 582}, - [3680] = {.lex_state = 530}, - [3681] = {.lex_state = 537}, - [3682] = {.lex_state = 537}, - [3683] = {.lex_state = 537}, - [3684] = {.lex_state = 537}, - [3685] = {.lex_state = 582}, - [3686] = {.lex_state = 530}, - [3687] = {.lex_state = 626}, - [3688] = {.lex_state = 582}, - [3689] = {.lex_state = 537}, - [3690] = {.lex_state = 536}, - [3691] = {.lex_state = 582}, - [3692] = {.lex_state = 530}, - [3693] = {.lex_state = 530}, - [3694] = {.lex_state = 582}, - [3695] = {.lex_state = 582}, - [3696] = {.lex_state = 537}, - [3697] = {.lex_state = 537}, - [3698] = {.lex_state = 537}, - [3699] = {.lex_state = 537}, - [3700] = {.lex_state = 582}, - [3701] = {.lex_state = 657}, - [3702] = {.lex_state = 582}, - [3703] = {.lex_state = 633}, - [3704] = {.lex_state = 582}, - [3705] = {.lex_state = 582}, - [3706] = {.lex_state = 537}, - [3707] = {.lex_state = 537}, - [3708] = {.lex_state = 582}, - [3709] = {.lex_state = 537}, - [3710] = {.lex_state = 537}, - [3711] = {.lex_state = 582}, - [3712] = {.lex_state = 537}, - [3713] = {.lex_state = 537}, - [3714] = {.lex_state = 537}, - [3715] = {.lex_state = 530}, - [3716] = {.lex_state = 537}, - [3717] = {.lex_state = 537}, - [3718] = {.lex_state = 530}, - [3719] = {.lex_state = 530}, - [3720] = {.lex_state = 530}, - [3721] = {.lex_state = 582}, - [3722] = {.lex_state = 625}, - [3723] = {.lex_state = 530}, - [3724] = {.lex_state = 530}, - [3725] = {.lex_state = 530}, - [3726] = {.lex_state = 625}, - [3727] = {.lex_state = 582}, - [3728] = {.lex_state = 530}, - [3729] = {.lex_state = 530}, - [3730] = {.lex_state = 582}, - [3731] = {.lex_state = 582}, - [3732] = {.lex_state = 582}, - [3733] = {.lex_state = 537}, - [3734] = {.lex_state = 537}, - [3735] = {.lex_state = 530}, - [3736] = {.lex_state = 537}, - [3737] = {.lex_state = 537}, - [3738] = {.lex_state = 537}, - [3739] = {.lex_state = 537}, - [3740] = {.lex_state = 530}, - [3741] = {.lex_state = 537}, - [3742] = {.lex_state = 537}, - [3743] = {.lex_state = 582}, - [3744] = {.lex_state = 531}, - [3745] = {.lex_state = 582}, - [3746] = {.lex_state = 582}, - [3747] = {.lex_state = 661}, - [3748] = {.lex_state = 582}, - [3749] = {.lex_state = 582}, - [3750] = {.lex_state = 582}, - [3751] = {.lex_state = 530}, - [3752] = {.lex_state = 582}, - [3753] = {.lex_state = 582}, - [3754] = {.lex_state = 530}, - [3755] = {.lex_state = 530}, - [3756] = {.lex_state = 582}, - [3757] = {.lex_state = 537}, - [3758] = {.lex_state = 633}, - [3759] = {.lex_state = 537}, - [3760] = {.lex_state = 582}, - [3761] = {.lex_state = 1049}, - [3762] = {.lex_state = 664}, - [3763] = {.lex_state = 530}, - [3764] = {.lex_state = 1049}, - [3765] = {.lex_state = 625}, - [3766] = {.lex_state = 625}, - [3767] = {.lex_state = 582}, - [3768] = {.lex_state = 1049}, - [3769] = {.lex_state = 1049}, - [3770] = {.lex_state = 1049}, - [3771] = {.lex_state = 1049}, - [3772] = {.lex_state = 1049}, - [3773] = {.lex_state = 1049}, - [3774] = {.lex_state = 1049}, - [3775] = {.lex_state = 530}, - [3776] = {.lex_state = 1049}, - [3777] = {.lex_state = 1049}, - [3778] = {.lex_state = 1049}, - [3779] = {.lex_state = 625}, - [3780] = {.lex_state = 625}, - [3781] = {.lex_state = 630}, - [3782] = {.lex_state = 1049}, - [3783] = {.lex_state = 633}, - [3784] = {.lex_state = 582}, - [3785] = {.lex_state = 582}, - [3786] = {.lex_state = 582}, - [3787] = {.lex_state = 582}, - [3788] = {.lex_state = 530}, - [3789] = {.lex_state = 582}, - [3790] = {.lex_state = 582}, - [3791] = {.lex_state = 582}, - [3792] = {.lex_state = 511}, - [3793] = {.lex_state = 633}, - [3794] = {.lex_state = 530}, - [3795] = {.lex_state = 582}, - [3796] = {.lex_state = 582}, - [3797] = {.lex_state = 582}, - [3798] = {.lex_state = 582}, - [3799] = {.lex_state = 582}, - [3800] = {.lex_state = 663}, - [3801] = {.lex_state = 582}, - [3802] = {.lex_state = 511}, - [3803] = {.lex_state = 582}, - [3804] = {.lex_state = 582}, - [3805] = {.lex_state = 537}, - [3806] = {.lex_state = 539}, - [3807] = {.lex_state = 537}, - [3808] = {.lex_state = 537}, - [3809] = {.lex_state = 621}, - [3810] = {.lex_state = 537}, - [3811] = {.lex_state = 531}, - [3812] = {.lex_state = 625}, - [3813] = {.lex_state = 537}, - [3814] = {.lex_state = 1060}, - [3815] = {.lex_state = 542}, - [3816] = {.lex_state = 542}, - [3817] = {.lex_state = 537}, - [3818] = {.lex_state = 542}, - [3819] = {.lex_state = 542}, - [3820] = {.lex_state = 542}, - [3821] = {.lex_state = 625}, - [3822] = {.lex_state = 625}, - [3823] = {.lex_state = 530}, - [3824] = {.lex_state = 542}, - [3825] = {.lex_state = 542}, - [3826] = {.lex_state = 542}, - [3827] = {.lex_state = 1049}, - [3828] = {.lex_state = 530}, - [3829] = {.lex_state = 542}, - [3830] = {.lex_state = 537}, - [3831] = {.lex_state = 542}, - [3832] = {.lex_state = 542}, - [3833] = {.lex_state = 531}, - [3834] = {.lex_state = 537}, - [3835] = {.lex_state = 625}, - [3836] = {.lex_state = 542}, - [3837] = {.lex_state = 542}, - [3838] = {.lex_state = 536}, - [3839] = {.lex_state = 542}, - [3840] = {.lex_state = 542}, - [3841] = {.lex_state = 537}, - [3842] = {.lex_state = 542}, - [3843] = {.lex_state = 537}, - [3844] = {.lex_state = 633}, - [3845] = {.lex_state = 537}, - [3846] = {.lex_state = 539}, - [3847] = {.lex_state = 537}, - [3848] = {.lex_state = 531}, - [3849] = {.lex_state = 625}, - [3850] = {.lex_state = 537}, - [3851] = {.lex_state = 530}, - [3852] = {.lex_state = 657}, - [3853] = {.lex_state = 625}, - [3854] = {.lex_state = 537}, - [3855] = {.lex_state = 530}, - [3856] = {.lex_state = 531}, - [3857] = {.lex_state = 625}, - [3858] = {.lex_state = 542}, - [3859] = {.lex_state = 534}, - [3860] = {.lex_state = 542}, - [3861] = {.lex_state = 542}, - [3862] = {.lex_state = 664}, - [3863] = {.lex_state = 542}, - [3864] = {.lex_state = 717}, - [3865] = {.lex_state = 525}, - [3866] = {.lex_state = 1053}, - [3867] = {.lex_state = 625}, - [3868] = {.lex_state = 542}, - [3869] = {.lex_state = 1053}, - [3870] = {.lex_state = 542}, - [3871] = {.lex_state = 625}, - [3872] = {.lex_state = 525}, - [3873] = {.lex_state = 625}, - [3874] = {.lex_state = 657}, - [3875] = {.lex_state = 625}, - [3876] = {.lex_state = 633}, - [3877] = {.lex_state = 625}, - [3878] = {.lex_state = 525}, - [3879] = {.lex_state = 531}, - [3880] = {.lex_state = 625}, - [3881] = {.lex_state = 542}, - [3882] = {.lex_state = 625}, - [3883] = {.lex_state = 665}, - [3884] = {.lex_state = 625}, - [3885] = {.lex_state = 1060}, - [3886] = {.lex_state = 661}, - [3887] = {.lex_state = 542}, - [3888] = {.lex_state = 531}, - [3889] = {.lex_state = 542}, - [3890] = {.lex_state = 531}, - [3891] = {.lex_state = 537}, - [3892] = {.lex_state = 536}, - [3893] = {.lex_state = 536}, - [3894] = {.lex_state = 530}, - [3895] = {.lex_state = 537}, - [3896] = {.lex_state = 573}, - [3897] = {.lex_state = 531}, - [3898] = {.lex_state = 664}, - [3899] = {.lex_state = 534}, - [3900] = {.lex_state = 536}, - [3901] = {.lex_state = 531}, - [3902] = {.lex_state = 542}, - [3903] = {.lex_state = 542}, - [3904] = {.lex_state = 537}, - [3905] = {.lex_state = 657}, - [3906] = {.lex_state = 625}, - [3907] = {.lex_state = 542}, - [3908] = {.lex_state = 531}, - [3909] = {.lex_state = 542}, - [3910] = {.lex_state = 531}, - [3911] = {.lex_state = 625}, - [3912] = {.lex_state = 625}, - [3913] = {.lex_state = 542}, - [3914] = {.lex_state = 669}, - [3915] = {.lex_state = 625}, - [3916] = {.lex_state = 542}, - [3917] = {.lex_state = 531}, - [3918] = {.lex_state = 669}, - [3919] = {.lex_state = 569}, - [3920] = {.lex_state = 625}, - [3921] = {.lex_state = 623}, - [3922] = {.lex_state = 542}, - [3923] = {.lex_state = 542}, - [3924] = {.lex_state = 542}, - [3925] = {.lex_state = 627}, - [3926] = {.lex_state = 531}, - [3927] = {.lex_state = 531}, - [3928] = {.lex_state = 531}, - [3929] = {.lex_state = 537}, - [3930] = {.lex_state = 537}, - [3931] = {.lex_state = 536}, - [3932] = {.lex_state = 1056}, - [3933] = {.lex_state = 1053}, - [3934] = {.lex_state = 625}, - [3935] = {.lex_state = 531}, - [3936] = {.lex_state = 511}, - [3937] = {.lex_state = 542}, - [3938] = {.lex_state = 531}, - [3939] = {.lex_state = 537}, - [3940] = {.lex_state = 537}, - [3941] = {.lex_state = 537}, - [3942] = {.lex_state = 537}, - [3943] = {.lex_state = 1056}, - [3944] = {.lex_state = 531}, - [3945] = {.lex_state = 665}, - [3946] = {.lex_state = 623}, - [3947] = {.lex_state = 537}, - [3948] = {.lex_state = 537}, - [3949] = {.lex_state = 537}, - [3950] = {.lex_state = 1053}, - [3951] = {.lex_state = 1049}, - [3952] = {.lex_state = 717}, - [3953] = {.lex_state = 536}, - [3954] = {.lex_state = 531}, - [3955] = {.lex_state = 625}, - [3956] = {.lex_state = 530}, - [3957] = {.lex_state = 537}, - [3958] = {.lex_state = 665}, - [3959] = {.lex_state = 630}, - [3960] = {.lex_state = 625}, - [3961] = {.lex_state = 625}, - [3962] = {.lex_state = 542}, - [3963] = {.lex_state = 625}, - [3964] = {.lex_state = 542}, - [3965] = {.lex_state = 530}, - [3966] = {.lex_state = 530}, - [3967] = {.lex_state = 675}, - [3968] = {.lex_state = 542}, - [3969] = {.lex_state = 542}, - [3970] = {.lex_state = 542}, - [3971] = {.lex_state = 542}, - [3972] = {.lex_state = 542}, - [3973] = {.lex_state = 542}, - [3974] = {.lex_state = 542}, - [3975] = {.lex_state = 542}, - [3976] = {.lex_state = 542}, - [3977] = {.lex_state = 542}, - [3978] = {.lex_state = 542}, - [3979] = {.lex_state = 537}, - [3980] = {.lex_state = 542}, - [3981] = {.lex_state = 675}, - [3982] = {.lex_state = 542}, - [3983] = {.lex_state = 630}, - [3984] = {.lex_state = 530}, - [3985] = {.lex_state = 530}, - [3986] = {.lex_state = 625}, - [3987] = {.lex_state = 625}, - [3988] = {.lex_state = 625}, - [3989] = {.lex_state = 530}, - [3990] = {.lex_state = 625}, - [3991] = {.lex_state = 625}, - [3992] = {.lex_state = 530}, - [3993] = {.lex_state = 530}, - [3994] = {.lex_state = 625}, - [3995] = {.lex_state = 625}, - [3996] = {.lex_state = 625}, - [3997] = {.lex_state = 625}, - [3998] = {.lex_state = 542}, - [3999] = {.lex_state = 530}, - [4000] = {.lex_state = 530}, - [4001] = {.lex_state = 542}, - [4002] = {.lex_state = 630}, - [4003] = {.lex_state = 530}, - [4004] = {.lex_state = 630}, - [4005] = {.lex_state = 630}, - [4006] = {.lex_state = 542}, - [4007] = {.lex_state = 675}, - [4008] = {.lex_state = 625}, - [4009] = {.lex_state = 625}, - [4010] = {.lex_state = 675}, - [4011] = {.lex_state = 625}, - [4012] = {.lex_state = 625}, - [4013] = {.lex_state = 625}, - [4014] = {.lex_state = 625}, - [4015] = {.lex_state = 542}, - [4016] = {.lex_state = 542}, - [4017] = {.lex_state = 630}, - [4018] = {.lex_state = 630}, - [4019] = {.lex_state = 625}, - [4020] = {.lex_state = 625}, - [4021] = {.lex_state = 630}, - [4022] = {.lex_state = 1056}, - [4023] = {.lex_state = 541}, - [4024] = {.lex_state = 530}, - [4025] = {.lex_state = 530}, - [4026] = {.lex_state = 1056}, - [4027] = {.lex_state = 717}, - [4028] = {.lex_state = 530}, - [4029] = {.lex_state = 527}, - [4030] = {.lex_state = 530}, - [4031] = {.lex_state = 530}, - [4032] = {.lex_state = 530}, - [4033] = {.lex_state = 530}, - [4034] = {.lex_state = 664}, - [4035] = {.lex_state = 717}, - [4036] = {.lex_state = 1049}, - [4037] = {.lex_state = 625}, - [4038] = {.lex_state = 530}, - [4039] = {.lex_state = 661}, - [4040] = {.lex_state = 664}, - [4041] = {.lex_state = 530}, - [4042] = {.lex_state = 661}, - [4043] = {.lex_state = 530}, - [4044] = {.lex_state = 530}, - [4045] = {.lex_state = 661}, - [4046] = {.lex_state = 661}, - [4047] = {.lex_state = 530}, - [4048] = {.lex_state = 661}, - [4049] = {.lex_state = 661}, - [4050] = {.lex_state = 530}, - [4051] = {.lex_state = 570}, - [4052] = {.lex_state = 530}, - [4053] = {.lex_state = 530}, - [4054] = {.lex_state = 625}, - [4055] = {.lex_state = 663}, - [4056] = {.lex_state = 675}, - [4057] = {.lex_state = 663}, - [4058] = {.lex_state = 537}, - [4059] = {.lex_state = 530}, - [4060] = {.lex_state = 530}, - [4061] = {.lex_state = 530}, - [4062] = {.lex_state = 661}, - [4063] = {.lex_state = 661}, - [4064] = {.lex_state = 1057}, - [4065] = {.lex_state = 530}, - [4066] = {.lex_state = 661}, - [4067] = {.lex_state = 530}, - [4068] = {.lex_state = 1049}, - [4069] = {.lex_state = 530}, - [4070] = {.lex_state = 530}, - [4071] = {.lex_state = 664}, - [4072] = {.lex_state = 537}, - [4073] = {.lex_state = 530}, - [4074] = {.lex_state = 661}, - [4075] = {.lex_state = 625}, - [4076] = {.lex_state = 661}, - [4077] = {.lex_state = 530}, - [4078] = {.lex_state = 530}, - [4079] = {.lex_state = 631}, - [4080] = {.lex_state = 530}, - [4081] = {.lex_state = 1049}, - [4082] = {.lex_state = 530}, - [4083] = {.lex_state = 530}, - [4084] = {.lex_state = 625}, - [4085] = {.lex_state = 527}, - [4086] = {.lex_state = 664}, - [4087] = {.lex_state = 664}, - [4088] = {.lex_state = 661}, - [4089] = {.lex_state = 661}, - [4090] = {.lex_state = 530}, - [4091] = {.lex_state = 625}, - [4092] = {.lex_state = 1057}, - [4093] = {.lex_state = 530}, - [4094] = {.lex_state = 530}, - [4095] = {.lex_state = 530}, - [4096] = {.lex_state = 530}, - [4097] = {.lex_state = 530}, - [4098] = {.lex_state = 530}, - [4099] = {.lex_state = 530}, - [4100] = {.lex_state = 530}, - [4101] = {.lex_state = 530}, - [4102] = {.lex_state = 542}, - [4103] = {.lex_state = 675}, - [4104] = {.lex_state = 537}, - [4105] = {.lex_state = 625}, - [4106] = {.lex_state = 675}, - [4107] = {.lex_state = 530}, - [4108] = {.lex_state = 530}, - [4109] = {.lex_state = 530}, - [4110] = {.lex_state = 530}, - [4111] = {.lex_state = 625}, - [4112] = {.lex_state = 625}, - [4113] = {.lex_state = 530}, - [4114] = {.lex_state = 530}, - [4115] = {.lex_state = 661}, - [4116] = {.lex_state = 630}, - [4117] = {.lex_state = 625}, - [4118] = {.lex_state = 530}, - [4119] = {.lex_state = 541}, - [4120] = {.lex_state = 625}, - [4121] = {.lex_state = 530}, - [4122] = {.lex_state = 542}, - [4123] = {.lex_state = 530}, - [4124] = {.lex_state = 718}, - [4125] = {.lex_state = 657}, - [4126] = {.lex_state = 542}, - [4127] = {.lex_state = 530}, - [4128] = {.lex_state = 675}, - [4129] = {.lex_state = 542}, - [4130] = {.lex_state = 542}, - [4131] = {.lex_state = 664}, - [4132] = {.lex_state = 675}, - [4133] = {.lex_state = 664}, - [4134] = {.lex_state = 657}, - [4135] = {.lex_state = 630}, - [4136] = {.lex_state = 661}, - [4137] = {.lex_state = 661}, - [4138] = {.lex_state = 530}, - [4139] = {.lex_state = 657}, - [4140] = {.lex_state = 664}, - [4141] = {.lex_state = 661}, - [4142] = {.lex_state = 661}, - [4143] = {.lex_state = 530}, - [4144] = {.lex_state = 657}, - [4145] = {.lex_state = 530}, - [4146] = {.lex_state = 661}, - [4147] = {.lex_state = 625}, - [4148] = {.lex_state = 657}, - [4149] = {.lex_state = 625}, - [4150] = {.lex_state = 661}, - [4151] = {.lex_state = 630}, - [4152] = {.lex_state = 530}, - [4153] = {.lex_state = 530}, - [4154] = {.lex_state = 530}, - [4155] = {.lex_state = 530}, - [4156] = {.lex_state = 530}, - [4157] = {.lex_state = 530}, - [4158] = {.lex_state = 530}, - [4159] = {.lex_state = 657}, - [4160] = {.lex_state = 530}, - [4161] = {.lex_state = 664}, - [4162] = {.lex_state = 530}, - [4163] = {.lex_state = 530}, - [4164] = {.lex_state = 1062}, - [4165] = {.lex_state = 1062}, - [4166] = {.lex_state = 1062}, - [4167] = {.lex_state = 1062}, - [4168] = {.lex_state = 1062}, - [4169] = {.lex_state = 1062}, - [4170] = {.lex_state = 1062}, - [4171] = {.lex_state = 1062}, - [4172] = {.lex_state = 1062}, - [4173] = {.lex_state = 1062}, - [4174] = {.lex_state = 1062}, - [4175] = {.lex_state = 1062}, - [4176] = {.lex_state = 1062}, - [4177] = {.lex_state = 1062}, - [4178] = {.lex_state = 1062}, - [4179] = {.lex_state = 1062}, - [4180] = {.lex_state = 1062}, - [4181] = {.lex_state = 1062}, - [4182] = {.lex_state = 1062}, - [4183] = {.lex_state = 530}, - [4184] = {.lex_state = 1062}, - [4185] = {.lex_state = 1062}, - [4186] = {.lex_state = 1062}, - [4187] = {.lex_state = 1062}, - [4188] = {.lex_state = 530}, - [4189] = {.lex_state = 530}, - [4190] = {.lex_state = 657}, - [4191] = {.lex_state = 630}, - [4192] = {.lex_state = 1062}, - [4193] = {.lex_state = 542}, - [4194] = {.lex_state = 530}, - [4195] = {.lex_state = 530}, - [4196] = {.lex_state = 527}, - [4197] = {.lex_state = 664}, - [4198] = {.lex_state = 530}, - [4199] = {.lex_state = 657}, - [4200] = {.lex_state = 657}, - [4201] = {.lex_state = 657}, - [4202] = {.lex_state = 657}, - [4203] = {.lex_state = 657}, - [4204] = {.lex_state = 657}, - [4205] = {.lex_state = 657}, - [4206] = {.lex_state = 657}, - [4207] = {.lex_state = 625}, - [4208] = {.lex_state = 625}, - [4209] = {.lex_state = 530}, - [4210] = {.lex_state = 537}, - [4211] = {.lex_state = 625}, - [4212] = {.lex_state = 669}, - [4213] = {.lex_state = 537}, - [4214] = {.lex_state = 537}, - [4215] = {.lex_state = 537}, - [4216] = {.lex_state = 537}, - [4217] = {.lex_state = 537}, - [4218] = {.lex_state = 537}, - [4219] = {.lex_state = 537}, - [4220] = {.lex_state = 625}, - [4221] = {.lex_state = 537}, - [4222] = {.lex_state = 511}, - [4223] = {.lex_state = 537}, - [4224] = {.lex_state = 537}, - [4225] = {.lex_state = 537}, - [4226] = {.lex_state = 537}, - [4227] = {.lex_state = 537}, - [4228] = {.lex_state = 657}, - [4229] = {.lex_state = 662}, - [4230] = {.lex_state = 511}, - [4231] = {.lex_state = 537}, - [4232] = {.lex_state = 669}, - [4233] = {.lex_state = 669}, - [4234] = {.lex_state = 669}, - [4235] = {.lex_state = 537}, - [4236] = {.lex_state = 537}, - [4237] = {.lex_state = 529}, - [4238] = {.lex_state = 537}, - [4239] = {.lex_state = 537}, - [4240] = {.lex_state = 657}, - [4241] = {.lex_state = 537}, - [4242] = {.lex_state = 537}, - [4243] = {.lex_state = 537}, - [4244] = {.lex_state = 537}, - [4245] = {.lex_state = 537}, - [4246] = {.lex_state = 676}, - [4247] = {.lex_state = 625}, - [4248] = {.lex_state = 529}, - [4249] = {.lex_state = 537}, - [4250] = {.lex_state = 669}, - [4251] = {.lex_state = 669}, - [4252] = {.lex_state = 669}, - [4253] = {.lex_state = 625}, - [4254] = {.lex_state = 537}, - [4255] = {.lex_state = 664}, - [4256] = {.lex_state = 537}, - [4257] = {.lex_state = 537}, - [4258] = {.lex_state = 662}, - [4259] = {.lex_state = 537}, - [4260] = {.lex_state = 537}, - [4261] = {.lex_state = 537}, - [4262] = {.lex_state = 546}, - [4263] = {.lex_state = 567}, - [4264] = {.lex_state = 625}, - [4265] = {.lex_state = 593}, - [4266] = {.lex_state = 537}, - [4267] = {.lex_state = 717}, - [4268] = {.lex_state = 729}, - [4269] = {.lex_state = 657}, - [4270] = {.lex_state = 717}, - [4271] = {.lex_state = 662}, - [4272] = {.lex_state = 544}, - [4273] = {.lex_state = 657}, - [4274] = {.lex_state = 633}, - [4275] = {.lex_state = 544}, - [4276] = {.lex_state = 669}, - [4277] = {.lex_state = 625}, - [4278] = {.lex_state = 542}, - [4279] = {.lex_state = 669}, - [4280] = {.lex_state = 1057}, - [4281] = {.lex_state = 537}, - [4282] = {.lex_state = 537}, - [4283] = {.lex_state = 662}, - [4284] = {.lex_state = 537}, - [4285] = {.lex_state = 633}, - [4286] = {.lex_state = 537}, - [4287] = {.lex_state = 625}, - [4288] = {.lex_state = 633}, - [4289] = {.lex_state = 567}, - [4290] = {.lex_state = 537}, - [4291] = {.lex_state = 537}, - [4292] = {.lex_state = 569}, - [4293] = {.lex_state = 537}, - [4294] = {.lex_state = 657}, - [4295] = {.lex_state = 537}, - [4296] = {.lex_state = 537}, - [4297] = {.lex_state = 569}, - [4298] = {.lex_state = 529}, - [4299] = {.lex_state = 537}, - [4300] = {.lex_state = 662}, - [4301] = {.lex_state = 569}, - [4302] = {.lex_state = 569}, - [4303] = {.lex_state = 537}, - [4304] = {.lex_state = 537}, - [4305] = {.lex_state = 537}, - [4306] = {.lex_state = 537}, - [4307] = {.lex_state = 1057}, - [4308] = {.lex_state = 537}, - [4309] = {.lex_state = 662}, - [4310] = {.lex_state = 537}, - [4311] = {.lex_state = 537}, - [4312] = {.lex_state = 537}, - [4313] = {.lex_state = 537}, - [4314] = {.lex_state = 537}, - [4315] = {.lex_state = 537}, - [4316] = {.lex_state = 537}, - [4317] = {.lex_state = 569}, - [4318] = {.lex_state = 569}, - [4319] = {.lex_state = 662}, - [4320] = {.lex_state = 537}, - [4321] = {.lex_state = 537}, - [4322] = {.lex_state = 717}, - [4323] = {.lex_state = 542}, - [4324] = {.lex_state = 634}, - [4325] = {.lex_state = 633}, - [4326] = {.lex_state = 625}, - [4327] = {.lex_state = 569}, - [4328] = {.lex_state = 537}, - [4329] = {.lex_state = 625}, - [4330] = {.lex_state = 625}, - [4331] = {.lex_state = 537}, - [4332] = {.lex_state = 537}, - [4333] = {.lex_state = 537}, - [4334] = {.lex_state = 625}, - [4335] = {.lex_state = 625}, - [4336] = {.lex_state = 625}, - [4337] = {.lex_state = 657}, - [4338] = {.lex_state = 625}, - [4339] = {.lex_state = 662}, - [4340] = {.lex_state = 542}, - [4341] = {.lex_state = 662}, - [4342] = {.lex_state = 537}, - [4343] = {.lex_state = 1062}, - [4344] = {.lex_state = 633}, - [4345] = {.lex_state = 633}, - [4346] = {.lex_state = 537}, - [4347] = {.lex_state = 729}, - [4348] = {.lex_state = 625}, - [4349] = {.lex_state = 633}, - [4350] = {.lex_state = 633}, - [4351] = {.lex_state = 625}, - [4352] = {.lex_state = 537}, - [4353] = {.lex_state = 537}, - [4354] = {.lex_state = 537}, - [4355] = {.lex_state = 537}, - [4356] = {.lex_state = 625}, - [4357] = {.lex_state = 633}, - [4358] = {.lex_state = 537}, - [4359] = {.lex_state = 665}, - [4360] = {.lex_state = 537}, - [4361] = {.lex_state = 625}, - [4362] = {.lex_state = 625}, - [4363] = {.lex_state = 537}, - [4364] = {.lex_state = 669}, - [4365] = {.lex_state = 537}, - [4366] = {.lex_state = 537}, - [4367] = {.lex_state = 569}, - [4368] = {.lex_state = 664}, - [4369] = {.lex_state = 633}, - [4370] = {.lex_state = 669}, - [4371] = {.lex_state = 625}, - [4372] = {.lex_state = 537}, - [4373] = {.lex_state = 511}, - [4374] = {.lex_state = 662}, - [4375] = {.lex_state = 597}, - [4376] = {.lex_state = 662}, - [4377] = {.lex_state = 625}, - [4378] = {.lex_state = 511}, - [4379] = {.lex_state = 625}, - [4380] = {.lex_state = 657}, - [4381] = {.lex_state = 537}, - [4382] = {.lex_state = 537}, - [4383] = {.lex_state = 633}, - [4384] = {.lex_state = 623}, - [4385] = {.lex_state = 625}, - [4386] = {.lex_state = 625}, - [4387] = {.lex_state = 537}, - [4388] = {.lex_state = 717}, - [4389] = {.lex_state = 657}, - [4390] = {.lex_state = 633}, - [4391] = {.lex_state = 537}, - [4392] = {.lex_state = 537}, - [4393] = {.lex_state = 657}, - [4394] = {.lex_state = 537}, - [4395] = {.lex_state = 663}, - [4396] = {.lex_state = 542}, - [4397] = {.lex_state = 663}, - [4398] = {.lex_state = 594}, - [4399] = {.lex_state = 1062}, - [4400] = {.lex_state = 542}, - [4401] = {.lex_state = 663}, - [4402] = {.lex_state = 663}, - [4403] = {.lex_state = 662}, - [4404] = {.lex_state = 663}, - [4405] = {.lex_state = 535}, - [4406] = {.lex_state = 542}, - [4407] = {.lex_state = 542}, - [4408] = {.lex_state = 542}, - [4409] = {.lex_state = 542}, - [4410] = {.lex_state = 663}, - [4411] = {.lex_state = 542}, - [4412] = {.lex_state = 542}, - [4413] = {.lex_state = 542}, - [4414] = {.lex_state = 542}, - [4415] = {.lex_state = 542}, - [4416] = {.lex_state = 542}, - [4417] = {.lex_state = 567}, - [4418] = {.lex_state = 663}, - [4419] = {.lex_state = 542}, - [4420] = {.lex_state = 542}, - [4421] = {.lex_state = 663}, - [4422] = {.lex_state = 542}, - [4423] = {.lex_state = 542}, - [4424] = {.lex_state = 542}, - [4425] = {.lex_state = 1061}, - [4426] = {.lex_state = 663}, - [4427] = {.lex_state = 625}, - [4428] = {.lex_state = 542}, - [4429] = {.lex_state = 1062}, - [4430] = {.lex_state = 542}, - [4431] = {.lex_state = 542}, - [4432] = {.lex_state = 542}, - [4433] = {.lex_state = 1062}, - [4434] = {.lex_state = 542}, - [4435] = {.lex_state = 542}, - [4436] = {.lex_state = 542}, - [4437] = {.lex_state = 1062}, - [4438] = {.lex_state = 542}, - [4439] = {.lex_state = 625}, - [4440] = {.lex_state = 1060}, - [4441] = {.lex_state = 1061}, - [4442] = {.lex_state = 542}, - [4443] = {.lex_state = 542}, - [4444] = {.lex_state = 663}, - [4445] = {.lex_state = 542}, - [4446] = {.lex_state = 542}, - [4447] = {.lex_state = 542}, - [4448] = {.lex_state = 542}, - [4449] = {.lex_state = 542}, - [4450] = {.lex_state = 662}, - [4451] = {.lex_state = 542}, - [4452] = {.lex_state = 542}, - [4453] = {.lex_state = 1061}, - [4454] = {.lex_state = 570}, - [4455] = {.lex_state = 663}, - [4456] = {.lex_state = 542}, - [4457] = {.lex_state = 542}, - [4458] = {.lex_state = 570}, - [4459] = {.lex_state = 570}, - [4460] = {.lex_state = 542}, - [4461] = {.lex_state = 663}, - [4462] = {.lex_state = 570}, - [4463] = {.lex_state = 570}, - [4464] = {.lex_state = 542}, - [4465] = {.lex_state = 567}, - [4466] = {.lex_state = 567}, - [4467] = {.lex_state = 567}, - [4468] = {.lex_state = 567}, - [4469] = {.lex_state = 542}, - [4470] = {.lex_state = 567}, - [4471] = {.lex_state = 567}, - [4472] = {.lex_state = 567}, - [4473] = {.lex_state = 542}, - [4474] = {.lex_state = 570}, - [4475] = {.lex_state = 570}, - [4476] = {.lex_state = 542}, - [4477] = {.lex_state = 542}, - [4478] = {.lex_state = 542}, - [4479] = {.lex_state = 542}, - [4480] = {.lex_state = 542}, - [4481] = {.lex_state = 542}, - [4482] = {.lex_state = 525}, - [4483] = {.lex_state = 542}, - [4484] = {.lex_state = 599}, - [4485] = {.lex_state = 663}, - [4486] = {.lex_state = 542}, - [4487] = {.lex_state = 717}, - [4488] = {.lex_state = 542}, - [4489] = {.lex_state = 535}, - [4490] = {.lex_state = 542}, - [4491] = {.lex_state = 567}, - [4492] = {.lex_state = 542}, - [4493] = {.lex_state = 542}, - [4494] = {.lex_state = 542}, - [4495] = {.lex_state = 542}, - [4496] = {.lex_state = 542}, - [4497] = {.lex_state = 542}, - [4498] = {.lex_state = 663}, - [4499] = {.lex_state = 567}, - [4500] = {.lex_state = 542}, - [4501] = {.lex_state = 677}, - [4502] = {.lex_state = 599}, - [4503] = {.lex_state = 1062}, - [4504] = {.lex_state = 525}, - [4505] = {.lex_state = 542}, - [4506] = {.lex_state = 542}, - [4507] = {.lex_state = 1062}, - [4508] = {.lex_state = 1061}, - [4509] = {.lex_state = 599}, - [4510] = {.lex_state = 1062}, - [4511] = {.lex_state = 677}, - [4512] = {.lex_state = 542}, - [4513] = {.lex_state = 542}, - [4514] = {.lex_state = 567}, - [4515] = {.lex_state = 542}, - [4516] = {.lex_state = 525}, - [4517] = {.lex_state = 542}, - [4518] = {.lex_state = 570}, - [4519] = {.lex_state = 525}, - [4520] = {.lex_state = 574}, - [4521] = {.lex_state = 542}, - [4522] = {.lex_state = 542}, - [4523] = {.lex_state = 542}, - [4524] = {.lex_state = 542}, - [4525] = {.lex_state = 542}, - [4526] = {.lex_state = 542}, - [4527] = {.lex_state = 542}, - [4528] = {.lex_state = 542}, - [4529] = {.lex_state = 548}, - [4530] = {.lex_state = 542}, - [4531] = {.lex_state = 574}, - [4532] = {.lex_state = 542}, - [4533] = {.lex_state = 542}, - [4534] = {.lex_state = 542}, - [4535] = {.lex_state = 542}, - [4536] = {.lex_state = 1060}, - [4537] = {.lex_state = 542}, - [4538] = {.lex_state = 1062}, - [4539] = {.lex_state = 542}, - [4540] = {.lex_state = 571}, - [4541] = {.lex_state = 600}, - [4542] = {.lex_state = 625}, - [4543] = {.lex_state = 625}, - [4544] = {.lex_state = 625}, - [4545] = {.lex_state = 625}, - [4546] = {.lex_state = 625}, - [4547] = {.lex_state = 593}, - [4548] = {.lex_state = 625}, - [4549] = {.lex_state = 625}, - [4550] = {.lex_state = 625}, - [4551] = {.lex_state = 625}, - [4552] = {.lex_state = 625}, - [4553] = {.lex_state = 625}, - [4554] = {.lex_state = 625}, - [4555] = {.lex_state = 571}, - [4556] = {.lex_state = 625}, - [4557] = {.lex_state = 625}, - [4558] = {.lex_state = 625}, - [4559] = {.lex_state = 625}, - [4560] = {.lex_state = 600}, - [4561] = {.lex_state = 625}, - [4562] = {.lex_state = 625}, - [4563] = {.lex_state = 550}, - [4564] = {.lex_state = 662}, - [4565] = {.lex_state = 663}, - [4566] = {.lex_state = 625}, - [4567] = {.lex_state = 625}, - [4568] = {.lex_state = 571}, - [4569] = {.lex_state = 625}, - [4570] = {.lex_state = 625}, - [4571] = {.lex_state = 568}, - [4572] = {.lex_state = 663}, - [4573] = {.lex_state = 663}, - [4574] = {.lex_state = 625}, - [4575] = {.lex_state = 546}, - [4576] = {.lex_state = 625}, - [4577] = {.lex_state = 593}, - [4578] = {.lex_state = 625}, - [4579] = {.lex_state = 625}, - [4580] = {.lex_state = 546}, - [4581] = {.lex_state = 663}, - [4582] = {.lex_state = 625}, - [4583] = {.lex_state = 625}, - [4584] = {.lex_state = 625}, - [4585] = {.lex_state = 573}, - [4586] = {.lex_state = 625}, - [4587] = {.lex_state = 625}, - [4588] = {.lex_state = 527}, - [4589] = {.lex_state = 625}, - [4590] = {.lex_state = 625}, - [4591] = {.lex_state = 663}, - [4592] = {.lex_state = 593}, - [4593] = {.lex_state = 663}, - [4594] = {.lex_state = 663}, - [4595] = {.lex_state = 527}, - [4596] = {.lex_state = 593}, - [4597] = {.lex_state = 625}, - [4598] = {.lex_state = 625}, - [4599] = {.lex_state = 625}, - [4600] = {.lex_state = 676}, - [4601] = {.lex_state = 1061}, - [4602] = {.lex_state = 1061}, - [4603] = {.lex_state = 662}, - [4604] = {.lex_state = 625}, - [4605] = {.lex_state = 625}, - [4606] = {.lex_state = 625}, - [4607] = {.lex_state = 573}, - [4608] = {.lex_state = 625}, - [4609] = {.lex_state = 625}, - [4610] = {.lex_state = 625}, - [4611] = {.lex_state = 625}, - [4612] = {.lex_state = 663}, - [4613] = {.lex_state = 625}, - [4614] = {.lex_state = 663}, - [4615] = {.lex_state = 657}, - [4616] = {.lex_state = 676}, - [4617] = {.lex_state = 625}, - [4618] = {.lex_state = 625}, - [4619] = {.lex_state = 593}, - [4620] = {.lex_state = 625}, - [4621] = {.lex_state = 593}, - [4622] = {.lex_state = 625}, - [4623] = {.lex_state = 625}, - [4624] = {.lex_state = 591}, - [4625] = {.lex_state = 591}, - [4626] = {.lex_state = 625}, - [4627] = {.lex_state = 571}, - [4628] = {.lex_state = 546}, - [4629] = {.lex_state = 625}, - [4630] = {.lex_state = 600}, - [4631] = {.lex_state = 527}, - [4632] = {.lex_state = 546}, - [4633] = {.lex_state = 568}, - [4634] = {.lex_state = 625}, - [4635] = {.lex_state = 625}, - [4636] = {.lex_state = 625}, - [4637] = {.lex_state = 625}, - [4638] = {.lex_state = 527}, - [4639] = {.lex_state = 625}, - [4640] = {.lex_state = 625}, - [4641] = {.lex_state = 625}, - [4642] = {.lex_state = 657}, - [4643] = {.lex_state = 625}, - [4644] = {.lex_state = 625}, - [4645] = {.lex_state = 593}, - [4646] = {.lex_state = 593}, - [4647] = {.lex_state = 1061}, - [4648] = {.lex_state = 662}, - [4649] = {.lex_state = 676}, - [4650] = {.lex_state = 662}, - [4651] = {.lex_state = 662}, - [4652] = {.lex_state = 662}, - [4653] = {.lex_state = 598}, - [4654] = {.lex_state = 1061}, - [4655] = {.lex_state = 1061}, - [4656] = {.lex_state = 1061}, - [4657] = {.lex_state = 568}, - [4658] = {.lex_state = 591}, - [4659] = {.lex_state = 676}, - [4660] = {.lex_state = 594}, - [4661] = {.lex_state = 676}, - [4662] = {.lex_state = 568}, - [4663] = {.lex_state = 1061}, - [4664] = {.lex_state = 568}, - [4665] = {.lex_state = 1061}, - [4666] = {.lex_state = 662}, - [4667] = {.lex_state = 719}, - [4668] = {.lex_state = 621}, - [4669] = {.lex_state = 662}, - [4670] = {.lex_state = 617}, - [4671] = {.lex_state = 662}, - [4672] = {.lex_state = 676}, - [4673] = {.lex_state = 664}, - [4674] = {.lex_state = 1061}, - [4675] = {.lex_state = 617}, - [4676] = {.lex_state = 676}, - [4677] = {.lex_state = 594}, - [4678] = {.lex_state = 676}, - [4679] = {.lex_state = 548}, - [4680] = {.lex_state = 574}, - [4681] = {.lex_state = 548}, - [4682] = {.lex_state = 1061}, - [4683] = {.lex_state = 662}, - [4684] = {.lex_state = 574}, - [4685] = {.lex_state = 598}, - [4686] = {.lex_state = 719}, - [4687] = {.lex_state = 671}, - [4688] = {.lex_state = 676}, - [4689] = {.lex_state = 676}, - [4690] = {.lex_state = 676}, - [4691] = {.lex_state = 676}, - [4692] = {.lex_state = 676}, - [4693] = {.lex_state = 662}, - [4694] = {.lex_state = 662}, - [4695] = {.lex_state = 568}, - [4696] = {.lex_state = 729}, - [4697] = {.lex_state = 729}, - [4698] = {.lex_state = 568}, - [4699] = {.lex_state = 568}, - [4700] = {.lex_state = 568}, - [4701] = {.lex_state = 568}, - [4702] = {.lex_state = 568}, - [4703] = {.lex_state = 568}, - [4704] = {.lex_state = 1061}, - [4705] = {.lex_state = 662}, - [4706] = {.lex_state = 662}, - [4707] = {.lex_state = 1061}, - [4708] = {.lex_state = 1061}, - [4709] = {.lex_state = 662}, - [4710] = {.lex_state = 617}, - [4711] = {.lex_state = 664}, - [4712] = {.lex_state = 529}, - [4713] = {.lex_state = 591}, - [4714] = {.lex_state = 676}, - [4715] = {.lex_state = 591}, - [4716] = {.lex_state = 529}, - [4717] = {.lex_state = 529}, - [4718] = {.lex_state = 529}, - [4719] = {.lex_state = 662}, - [4720] = {.lex_state = 671}, - [4721] = {.lex_state = 548}, - [4722] = {.lex_state = 594}, - [4723] = {.lex_state = 591}, - [4724] = {.lex_state = 591}, - [4725] = {.lex_state = 591}, - [4726] = {.lex_state = 1061}, - [4727] = {.lex_state = 591}, - [4728] = {.lex_state = 591}, - [4729] = {.lex_state = 591}, - [4730] = {.lex_state = 591}, - [4731] = {.lex_state = 568}, - [4732] = {.lex_state = 594}, - [4733] = {.lex_state = 594}, - [4734] = {.lex_state = 1061}, - [4735] = {.lex_state = 548}, - [4736] = {.lex_state = 662}, - [4737] = {.lex_state = 594}, - [4738] = {.lex_state = 594}, - [4739] = {.lex_state = 594}, - [4740] = {.lex_state = 1061}, - [4741] = {.lex_state = 1061}, - [4742] = {.lex_state = 591}, - [4743] = {.lex_state = 1061}, - [4744] = {.lex_state = 676}, - [4745] = {.lex_state = 574}, - [4746] = {.lex_state = 676}, - [4747] = {.lex_state = 637}, - [4748] = {.lex_state = 676}, - [4749] = {.lex_state = 676}, - [4750] = {.lex_state = 638}, - [4751] = {.lex_state = 676}, - [4752] = {.lex_state = 662}, - [4753] = {.lex_state = 676}, - [4754] = {.lex_state = 676}, - [4755] = {.lex_state = 676}, - [4756] = {.lex_state = 619}, - [4757] = {.lex_state = 662}, - [4758] = {.lex_state = 619}, - [4759] = {.lex_state = 676}, - [4760] = {.lex_state = 662}, - [4761] = {.lex_state = 676}, - [4762] = {.lex_state = 676}, - [4763] = {.lex_state = 676}, - [4764] = {.lex_state = 676}, - [4765] = {.lex_state = 676}, - [4766] = {.lex_state = 676}, - [4767] = {.lex_state = 618}, - [4768] = {.lex_state = 662}, - [4769] = {.lex_state = 676}, - [4770] = {.lex_state = 676}, - [4771] = {.lex_state = 662}, - [4772] = {.lex_state = 621}, - [4773] = {.lex_state = 676}, - [4774] = {.lex_state = 574}, - [4775] = {.lex_state = 574}, - [4776] = {.lex_state = 662}, - [4777] = {.lex_state = 676}, - [4778] = {.lex_state = 664}, - [4779] = {.lex_state = 662}, - [4780] = {.lex_state = 550}, - [4781] = {.lex_state = 574}, - [4782] = {.lex_state = 676}, - [4783] = {.lex_state = 676}, - [4784] = {.lex_state = 595}, - [4785] = {.lex_state = 676}, - [4786] = {.lex_state = 676}, - [4787] = {.lex_state = 550}, - [4788] = {.lex_state = 595}, - [4789] = {.lex_state = 662}, - [4790] = {.lex_state = 676}, - [4791] = {.lex_state = 550}, - [4792] = {.lex_state = 676}, - [4793] = {.lex_state = 574}, - [4794] = {.lex_state = 676}, - [4795] = {.lex_state = 574}, - [4796] = {.lex_state = 574}, - [4797] = {.lex_state = 662}, - [4798] = {.lex_state = 662}, - [4799] = {.lex_state = 676}, - [4800] = {.lex_state = 619}, - [4801] = {.lex_state = 595}, - [4802] = {.lex_state = 597}, - [4803] = {.lex_state = 595}, - [4804] = {.lex_state = 574}, - [4805] = {.lex_state = 676}, - [4806] = {.lex_state = 574}, - [4807] = {.lex_state = 574}, - [4808] = {.lex_state = 574}, - [4809] = {.lex_state = 574}, - [4810] = {.lex_state = 676}, - [4811] = {.lex_state = 676}, - [4812] = {.lex_state = 676}, - [4813] = {.lex_state = 574}, - [4814] = {.lex_state = 574}, - [4815] = {.lex_state = 662}, - [4816] = {.lex_state = 662}, - [4817] = {.lex_state = 571}, - [4818] = {.lex_state = 550}, - [4819] = {.lex_state = 662}, - [4820] = {.lex_state = 592}, - [4821] = {.lex_state = 676}, - [4822] = {.lex_state = 597}, - [4823] = {.lex_state = 618}, - [4824] = {.lex_state = 618}, - [4825] = {.lex_state = 676}, - [4826] = {.lex_state = 676}, - [4827] = {.lex_state = 662}, - [4828] = {.lex_state = 662}, - [4829] = {.lex_state = 701}, - [4830] = {.lex_state = 676}, - [4831] = {.lex_state = 592}, - [4832] = {.lex_state = 676}, - [4833] = {.lex_state = 662}, - [4834] = {.lex_state = 701}, - [4835] = {.lex_state = 701}, - [4836] = {.lex_state = 662}, - [4837] = {.lex_state = 662}, - [4838] = {.lex_state = 693}, - [4839] = {.lex_state = 592}, - [4840] = {.lex_state = 571}, - [4841] = {.lex_state = 1061}, - [4842] = {.lex_state = 571}, - [4843] = {.lex_state = 592}, - [4844] = {.lex_state = 574}, - [4845] = {.lex_state = 662}, - [4846] = {.lex_state = 574}, - [4847] = {.lex_state = 701}, - [4848] = {.lex_state = 1061}, - [4849] = {.lex_state = 574}, - [4850] = {.lex_state = 701}, - [4851] = {.lex_state = 574}, - [4852] = {.lex_state = 574}, - [4853] = {.lex_state = 662}, - [4854] = {.lex_state = 662}, - [4855] = {.lex_state = 571}, - [4856] = {.lex_state = 1061}, - [4857] = {.lex_state = 574}, - [4858] = {.lex_state = 662}, - [4859] = {.lex_state = 662}, - [4860] = {.lex_state = 620}, - [4861] = {.lex_state = 662}, - [4862] = {.lex_state = 621}, - [4863] = {.lex_state = 662}, - [4864] = {.lex_state = 701}, - [4865] = {.lex_state = 662}, - [4866] = {.lex_state = 662}, - [4867] = {.lex_state = 662}, - [4868] = {.lex_state = 701}, - [4869] = {.lex_state = 701}, - [4870] = {.lex_state = 662}, - [4871] = {.lex_state = 701}, - [4872] = {.lex_state = 592}, - [4873] = {.lex_state = 662}, - [4874] = {.lex_state = 662}, - [4875] = {.lex_state = 620}, - [4876] = {.lex_state = 701}, - [4877] = {.lex_state = 598}, - [4878] = {.lex_state = 701}, - [4879] = {.lex_state = 701}, - [4880] = {.lex_state = 592}, - [4881] = {.lex_state = 571}, - [4882] = {.lex_state = 701}, - [4883] = {.lex_state = 701}, - [4884] = {.lex_state = 701}, - [4885] = {.lex_state = 701}, - [4886] = {.lex_state = 662}, - [4887] = {.lex_state = 662}, - [4888] = {.lex_state = 701}, - [4889] = {.lex_state = 701}, - [4890] = {.lex_state = 701}, - [4891] = {.lex_state = 662}, - [4892] = {.lex_state = 571}, - [4893] = {.lex_state = 701}, - [4894] = {.lex_state = 701}, - [4895] = {.lex_state = 598}, - [4896] = {.lex_state = 662}, - [4897] = {.lex_state = 571}, - [4898] = {.lex_state = 701}, - [4899] = {.lex_state = 701}, - [4900] = {.lex_state = 701}, - [4901] = {.lex_state = 701}, - [4902] = {.lex_state = 701}, - [4903] = {.lex_state = 701}, - [4904] = {.lex_state = 701}, - [4905] = {.lex_state = 701}, - [4906] = {.lex_state = 701}, - [4907] = {.lex_state = 701}, - [4908] = {.lex_state = 701}, - [4909] = {.lex_state = 701}, - [4910] = {.lex_state = 701}, - [4911] = {.lex_state = 701}, - [4912] = {.lex_state = 701}, - [4913] = {.lex_state = 571}, - [4914] = {.lex_state = 1061}, - [4915] = {.lex_state = 701}, - [4916] = {.lex_state = 701}, - [4917] = {.lex_state = 662}, - [4918] = {.lex_state = 701}, - [4919] = {.lex_state = 662}, - [4920] = {.lex_state = 701}, - [4921] = {.lex_state = 592}, - [4922] = {.lex_state = 701}, - [4923] = {.lex_state = 701}, - [4924] = {.lex_state = 662}, - [4925] = {.lex_state = 701}, - [4926] = {.lex_state = 592}, - [4927] = {.lex_state = 701}, - [4928] = {.lex_state = 592}, - [4929] = {.lex_state = 592}, - [4930] = {.lex_state = 592}, - [4931] = {.lex_state = 701}, - [4932] = {.lex_state = 662}, - [4933] = {.lex_state = 701}, - [4934] = {.lex_state = 592}, - [4935] = {.lex_state = 592}, - [4936] = {.lex_state = 662}, - [4937] = {.lex_state = 662}, - [4938] = {.lex_state = 571}, - [4939] = {.lex_state = 662}, - [4940] = {.lex_state = 571}, - [4941] = {.lex_state = 571}, - [4942] = {.lex_state = 662}, - [4943] = {.lex_state = 701}, - [4944] = {.lex_state = 701}, - [4945] = {.lex_state = 701}, - [4946] = {.lex_state = 701}, - [4947] = {.lex_state = 701}, - [4948] = {.lex_state = 701}, - [4949] = {.lex_state = 662}, - [4950] = {.lex_state = 662}, - [4951] = {.lex_state = 701}, - [4952] = {.lex_state = 701}, - [4953] = {.lex_state = 701}, - [4954] = {.lex_state = 662}, - [4955] = {.lex_state = 701}, - [4956] = {.lex_state = 701}, - [4957] = {.lex_state = 701}, - [4958] = {.lex_state = 662}, - [4959] = {.lex_state = 701}, - [4960] = {.lex_state = 662}, - [4961] = {.lex_state = 701}, - [4962] = {.lex_state = 662}, - [4963] = {.lex_state = 701}, - [4964] = {.lex_state = 701}, - [4965] = {.lex_state = 701}, - [4966] = {.lex_state = 701}, - [4967] = {.lex_state = 701}, - [4968] = {.lex_state = 701}, - [4969] = {.lex_state = 571}, - [4970] = {.lex_state = 662}, - [4971] = {.lex_state = 701}, - [4972] = {.lex_state = 571}, - [4973] = {.lex_state = 701}, - [4974] = {.lex_state = 620}, - [4975] = {.lex_state = 662}, - [4976] = {.lex_state = 621}, - [4977] = {.lex_state = 662}, - [4978] = {.lex_state = 701}, - [4979] = {.lex_state = 701}, - [4980] = {.lex_state = 662}, - [4981] = {.lex_state = 662}, - [4982] = {.lex_state = 701}, - [4983] = {.lex_state = 701}, - [4984] = {.lex_state = 701}, - [4985] = {.lex_state = 701}, - [4986] = {.lex_state = 701}, - [4987] = {.lex_state = 701}, - [4988] = {.lex_state = 701}, - [4989] = {.lex_state = 701}, - [4990] = {.lex_state = 701}, - [4991] = {.lex_state = 701}, - [4992] = {.lex_state = 701}, - [4993] = {.lex_state = 701}, - [4994] = {.lex_state = 701}, - [4995] = {.lex_state = 701}, - [4996] = {.lex_state = 701}, - [4997] = {.lex_state = 701}, - [4998] = {.lex_state = 637}, - [4999] = {.lex_state = 701}, - [5000] = {.lex_state = 701}, - [5001] = {.lex_state = 701}, - [5002] = {.lex_state = 701}, - [5003] = {.lex_state = 701}, - [5004] = {.lex_state = 701}, - [5005] = {.lex_state = 571}, - [5006] = {.lex_state = 598}, - [5007] = {.lex_state = 665}, - [5008] = {.lex_state = 637}, - [5009] = {.lex_state = 598}, - [5010] = {.lex_state = 571}, - [5011] = {.lex_state = 571}, - [5012] = {.lex_state = 598}, - [5013] = {.lex_state = 598}, - [5014] = {.lex_state = 1060}, - [5015] = {.lex_state = 598}, - [5016] = {.lex_state = 665}, - [5017] = {.lex_state = 701}, - [5018] = {.lex_state = 665}, - [5019] = {.lex_state = 637}, - [5020] = {.lex_state = 571}, - [5021] = {.lex_state = 695}, - [5022] = {.lex_state = 701}, - [5023] = {.lex_state = 701}, - [5024] = {.lex_state = 571}, - [5025] = {.lex_state = 571}, - [5026] = {.lex_state = 571}, - [5027] = {.lex_state = 571}, - [5028] = {.lex_state = 572}, - [5029] = {.lex_state = 637}, - [5030] = {.lex_state = 571}, - [5031] = {.lex_state = 637}, - [5032] = {.lex_state = 571}, - [5033] = {.lex_state = 571}, - [5034] = {.lex_state = 571}, - [5035] = {.lex_state = 571}, - [5036] = {.lex_state = 571}, - [5037] = {.lex_state = 571}, - [5038] = {.lex_state = 665}, - [5039] = {.lex_state = 637}, - [5040] = {.lex_state = 571}, - [5041] = {.lex_state = 598}, - [5042] = {.lex_state = 571}, - [5043] = {.lex_state = 701}, - [5044] = {.lex_state = 571}, - [5045] = {.lex_state = 571}, - [5046] = {.lex_state = 701}, - [5047] = {.lex_state = 598}, - [5048] = {.lex_state = 571}, - [5049] = {.lex_state = 665}, - [5050] = {.lex_state = 598}, - [5051] = {.lex_state = 571}, - [5052] = {.lex_state = 571}, - [5053] = {.lex_state = 571}, - [5054] = {.lex_state = 637}, - [5055] = {.lex_state = 571}, - [5056] = {.lex_state = 571}, - [5057] = {.lex_state = 1061}, - [5058] = {.lex_state = 595}, - [5059] = {.lex_state = 598}, - [5060] = {.lex_state = 665}, - [5061] = {.lex_state = 695}, - [5062] = {.lex_state = 637}, - [5063] = {.lex_state = 665}, - [5064] = {.lex_state = 637}, - [5065] = {.lex_state = 598}, - [5066] = {.lex_state = 598}, - [5067] = {.lex_state = 637}, - [5068] = {.lex_state = 598}, - [5069] = {.lex_state = 598}, - [5070] = {.lex_state = 572}, - [5071] = {.lex_state = 571}, - [5072] = {.lex_state = 571}, - [5073] = {.lex_state = 662}, - [5074] = {.lex_state = 571}, - [5075] = {.lex_state = 571}, - [5076] = {.lex_state = 571}, - [5077] = {.lex_state = 701}, - [5078] = {.lex_state = 571}, - [5079] = {.lex_state = 572}, - [5080] = {.lex_state = 665}, - [5081] = {.lex_state = 571}, - [5082] = {.lex_state = 622}, - [5083] = {.lex_state = 622}, - [5084] = {.lex_state = 701}, - [5085] = {.lex_state = 701}, - [5086] = {.lex_state = 701}, - [5087] = {.lex_state = 572}, - [5088] = {.lex_state = 637}, - [5089] = {.lex_state = 695}, - [5090] = {.lex_state = 665}, - [5091] = {.lex_state = 598}, - [5092] = {.lex_state = 572}, - [5093] = {.lex_state = 595}, - [5094] = {.lex_state = 595}, - [5095] = {.lex_state = 572}, - [5096] = {.lex_state = 572}, - [5097] = {.lex_state = 1061}, - [5098] = {.lex_state = 1061}, - [5099] = {.lex_state = 637}, - [5100] = {.lex_state = 572}, - [5101] = {.lex_state = 661}, - [5102] = {.lex_state = 661}, - [5103] = {.lex_state = 595}, - [5104] = {.lex_state = 637}, - [5105] = {.lex_state = 598}, - [5106] = {.lex_state = 661}, - [5107] = {.lex_state = 572}, - [5108] = {.lex_state = 598}, - [5109] = {.lex_state = 622}, - [5110] = {.lex_state = 661}, - [5111] = {.lex_state = 572}, - [5112] = {.lex_state = 1061}, - [5113] = {.lex_state = 622}, - [5114] = {.lex_state = 661}, - [5115] = {.lex_state = 661}, - [5116] = {.lex_state = 1061}, - [5117] = {.lex_state = 661}, - [5118] = {.lex_state = 572}, - [5119] = {.lex_state = 572}, - [5120] = {.lex_state = 572}, - [5121] = {.lex_state = 572}, - [5122] = {.lex_state = 572}, - [5123] = {.lex_state = 598}, - [5124] = {.lex_state = 572}, - [5125] = {.lex_state = 572}, - [5126] = {.lex_state = 572}, - [5127] = {.lex_state = 572}, - [5128] = {.lex_state = 595}, - [5129] = {.lex_state = 598}, - [5130] = {.lex_state = 572}, - [5131] = {.lex_state = 598}, - [5132] = {.lex_state = 661}, - [5133] = {.lex_state = 637}, - [5134] = {.lex_state = 662}, - [5135] = {.lex_state = 595}, - [5136] = {.lex_state = 637}, - [5137] = {.lex_state = 572}, - [5138] = {.lex_state = 622}, - [5139] = {.lex_state = 637}, - [5140] = {.lex_state = 637}, - [5141] = {.lex_state = 598}, - [5142] = {.lex_state = 595}, - [5143] = {.lex_state = 595}, - [5144] = {.lex_state = 637}, - [5145] = {.lex_state = 622}, - [5146] = {.lex_state = 661}, - [5147] = {.lex_state = 595}, - [5148] = {.lex_state = 572}, - [5149] = {.lex_state = 595}, - [5150] = {.lex_state = 637}, - [5151] = {.lex_state = 1061}, - [5152] = {.lex_state = 572}, - [5153] = {.lex_state = 572}, - [5154] = {.lex_state = 638}, - [5155] = {.lex_state = 572}, - [5156] = {.lex_state = 666}, - [5157] = {.lex_state = 637}, - [5158] = {.lex_state = 661}, - [5159] = {.lex_state = 572}, - [5160] = {.lex_state = 572}, - [5161] = {.lex_state = 572}, - [5162] = {.lex_state = 661}, - [5163] = {.lex_state = 637}, - [5164] = {.lex_state = 572}, - [5165] = {.lex_state = 572}, - [5166] = {.lex_state = 637}, - [5167] = {.lex_state = 595}, - [5168] = {.lex_state = 572}, - [5169] = {.lex_state = 572}, - [5170] = {.lex_state = 572}, - [5171] = {.lex_state = 1061}, - [5172] = {.lex_state = 572}, - [5173] = {.lex_state = 572}, - [5174] = {.lex_state = 595}, - [5175] = {.lex_state = 638}, - [5176] = {.lex_state = 572}, - [5177] = {.lex_state = 662}, - [5178] = {.lex_state = 1061}, - [5179] = {.lex_state = 661}, - [5180] = {.lex_state = 595}, - [5181] = {.lex_state = 666}, - [5182] = {.lex_state = 1061}, - [5183] = {.lex_state = 572}, - [5184] = {.lex_state = 572}, - [5185] = {.lex_state = 637}, - [5186] = {.lex_state = 1061}, - [5187] = {.lex_state = 1061}, - [5188] = {.lex_state = 572}, - [5189] = {.lex_state = 661}, - [5190] = {.lex_state = 1061}, - [5191] = {.lex_state = 595}, - [5192] = {.lex_state = 661}, - [5193] = {.lex_state = 666}, - [5194] = {.lex_state = 661}, - [5195] = {.lex_state = 1061}, - [5196] = {.lex_state = 1061}, - [5197] = {.lex_state = 595}, - [5198] = {.lex_state = 595}, - [5199] = {.lex_state = 572}, - [5200] = {.lex_state = 1061}, - [5201] = {.lex_state = 1061}, - [5202] = {.lex_state = 595}, - [5203] = {.lex_state = 595}, - [5204] = {.lex_state = 687}, - [5205] = {.lex_state = 595}, - [5206] = {.lex_state = 595}, - [5207] = {.lex_state = 1061}, - [5208] = {.lex_state = 1061}, - [5209] = {.lex_state = 1061}, - [5210] = {.lex_state = 1061}, - [5211] = {.lex_state = 595}, - [5212] = {.lex_state = 1061}, - [5213] = {.lex_state = 638}, - [5214] = {.lex_state = 595}, - [5215] = {.lex_state = 596}, - [5216] = {.lex_state = 595}, - [5217] = {.lex_state = 1061}, - [5218] = {.lex_state = 1061}, - [5219] = {.lex_state = 637}, - [5220] = {.lex_state = 595}, - [5221] = {.lex_state = 1061}, - [5222] = {.lex_state = 1061}, - [5223] = {.lex_state = 595}, - [5224] = {.lex_state = 595}, - [5225] = {.lex_state = 595}, - [5226] = {.lex_state = 595}, - [5227] = {.lex_state = 595}, - [5228] = {.lex_state = 595}, - [5229] = {.lex_state = 595}, - [5230] = {.lex_state = 595}, - [5231] = {.lex_state = 595}, - [5232] = {.lex_state = 1061}, - [5233] = {.lex_state = 595}, - [5234] = {.lex_state = 595}, - [5235] = {.lex_state = 1061}, - [5236] = {.lex_state = 1061}, - [5237] = {.lex_state = 1061}, - [5238] = {.lex_state = 1061}, - [5239] = {.lex_state = 572}, - [5240] = {.lex_state = 1061}, - [5241] = {.lex_state = 576}, - [5242] = {.lex_state = 572}, - [5243] = {.lex_state = 596}, - [5244] = {.lex_state = 572}, - [5245] = {.lex_state = 1061}, - [5246] = {.lex_state = 662}, - [5247] = {.lex_state = 1061}, - [5248] = {.lex_state = 1061}, - [5249] = {.lex_state = 1061}, - [5250] = {.lex_state = 1053}, - [5251] = {.lex_state = 1061}, - [5252] = {.lex_state = 678}, - [5253] = {.lex_state = 596}, - [5254] = {.lex_state = 595}, - [5255] = {.lex_state = 595}, - [5256] = {.lex_state = 1061}, - [5257] = {.lex_state = 595}, - [5258] = {.lex_state = 1061}, - [5259] = {.lex_state = 1061}, - [5260] = {.lex_state = 1061}, - [5261] = {.lex_state = 1061}, - [5262] = {.lex_state = 1061}, - [5263] = {.lex_state = 1061}, - [5264] = {.lex_state = 687}, - [5265] = {.lex_state = 1061}, - [5266] = {.lex_state = 1061}, - [5267] = {.lex_state = 1061}, - [5268] = {.lex_state = 637}, - [5269] = {.lex_state = 1053}, - [5270] = {.lex_state = 1061}, - [5271] = {.lex_state = 1061}, - [5272] = {.lex_state = 1061}, - [5273] = {.lex_state = 1061}, - [5274] = {.lex_state = 572}, - [5275] = {.lex_state = 1061}, - [5276] = {.lex_state = 595}, - [5277] = {.lex_state = 637}, - [5278] = {.lex_state = 596}, - [5279] = {.lex_state = 1061}, - [5280] = {.lex_state = 1061}, - [5281] = {.lex_state = 1061}, - [5282] = {.lex_state = 595}, - [5283] = {.lex_state = 1061}, - [5284] = {.lex_state = 1061}, - [5285] = {.lex_state = 1061}, - [5286] = {.lex_state = 692}, - [5287] = {.lex_state = 1061}, - [5288] = {.lex_state = 717}, - [5289] = {.lex_state = 638}, - [5290] = {.lex_state = 1061}, - [5291] = {.lex_state = 576}, - [5292] = {.lex_state = 1061}, - [5293] = {.lex_state = 657}, - [5294] = {.lex_state = 657}, - [5295] = {.lex_state = 637}, - [5296] = {.lex_state = 595}, - [5297] = {.lex_state = 657}, - [5298] = {.lex_state = 595}, - [5299] = {.lex_state = 595}, - [5300] = {.lex_state = 1061}, - [5301] = {.lex_state = 595}, - [5302] = {.lex_state = 1061}, - [5303] = {.lex_state = 1061}, - [5304] = {.lex_state = 1061}, - [5305] = {.lex_state = 1061}, - [5306] = {.lex_state = 692}, - [5307] = {.lex_state = 678}, - [5308] = {.lex_state = 1061}, - [5309] = {.lex_state = 1061}, - [5310] = {.lex_state = 1061}, - [5311] = {.lex_state = 1061}, - [5312] = {.lex_state = 595}, - [5313] = {.lex_state = 572}, - [5314] = {.lex_state = 657}, - [5315] = {.lex_state = 596}, - [5316] = {.lex_state = 572}, - [5317] = {.lex_state = 572}, - [5318] = {.lex_state = 637}, - [5319] = {.lex_state = 572}, - [5320] = {.lex_state = 596}, - [5321] = {.lex_state = 596}, - [5322] = {.lex_state = 657}, - [5323] = {.lex_state = 572}, - [5324] = {.lex_state = 572}, - [5325] = {.lex_state = 572}, - [5326] = {.lex_state = 572}, - [5327] = {.lex_state = 596}, - [5328] = {.lex_state = 572}, - [5329] = {.lex_state = 572}, - [5330] = {.lex_state = 596}, - [5331] = {.lex_state = 572}, - [5332] = {.lex_state = 596}, - [5333] = {.lex_state = 657}, - [5334] = {.lex_state = 572}, - [5335] = {.lex_state = 572}, - [5336] = {.lex_state = 657}, - [5337] = {.lex_state = 596}, - [5338] = {.lex_state = 572}, - [5339] = {.lex_state = 596}, - [5340] = {.lex_state = 572}, - [5341] = {.lex_state = 596}, - [5342] = {.lex_state = 572}, - [5343] = {.lex_state = 572}, - [5344] = {.lex_state = 572}, - [5345] = {.lex_state = 572}, - [5346] = {.lex_state = 572}, - [5347] = {.lex_state = 572}, - [5348] = {.lex_state = 694}, - [5349] = {.lex_state = 572}, - [5350] = {.lex_state = 572}, - [5351] = {.lex_state = 572}, - [5352] = {.lex_state = 572}, - [5353] = {.lex_state = 572}, - [5354] = {.lex_state = 572}, - [5355] = {.lex_state = 596}, - [5356] = {.lex_state = 596}, - [5357] = {.lex_state = 572}, - [5358] = {.lex_state = 596}, - [5359] = {.lex_state = 596}, - [5360] = {.lex_state = 572}, - [5361] = {.lex_state = 572}, - [5362] = {.lex_state = 572}, - [5363] = {.lex_state = 572}, - [5364] = {.lex_state = 572}, - [5365] = {.lex_state = 572}, - [5366] = {.lex_state = 596}, - [5367] = {.lex_state = 572}, - [5368] = {.lex_state = 572}, - [5369] = {.lex_state = 572}, - [5370] = {.lex_state = 572}, - [5371] = {.lex_state = 596}, - [5372] = {.lex_state = 657}, - [5373] = {.lex_state = 596}, - [5374] = {.lex_state = 572}, - [5375] = {.lex_state = 572}, - [5376] = {.lex_state = 694}, - [5377] = {.lex_state = 596}, - [5378] = {.lex_state = 694}, - [5379] = {.lex_state = 596}, - [5380] = {.lex_state = 693}, - [5381] = {.lex_state = 572}, - [5382] = {.lex_state = 694}, - [5383] = {.lex_state = 572}, - [5384] = {.lex_state = 572}, - [5385] = {.lex_state = 662}, - [5386] = {.lex_state = 1061}, - [5387] = {.lex_state = 572}, - [5388] = {.lex_state = 637}, - [5389] = {.lex_state = 693}, - [5390] = {.lex_state = 596}, - [5391] = {.lex_state = 1061}, - [5392] = {.lex_state = 596}, - [5393] = {.lex_state = 572}, - [5394] = {.lex_state = 572}, - [5395] = {.lex_state = 572}, - [5396] = {.lex_state = 694}, - [5397] = {.lex_state = 596}, - [5398] = {.lex_state = 666}, - [5399] = {.lex_state = 572}, - [5400] = {.lex_state = 596}, - [5401] = {.lex_state = 679}, - [5402] = {.lex_state = 572}, - [5403] = {.lex_state = 657}, - [5404] = {.lex_state = 596}, - [5405] = {.lex_state = 572}, - [5406] = {.lex_state = 572}, - [5407] = {.lex_state = 572}, - [5408] = {.lex_state = 572}, - [5409] = {.lex_state = 657}, - [5410] = {.lex_state = 572}, - [5411] = {.lex_state = 657}, - [5412] = {.lex_state = 572}, - [5413] = {.lex_state = 596}, - [5414] = {.lex_state = 657}, - [5415] = {.lex_state = 596}, - [5416] = {.lex_state = 694}, - [5417] = {.lex_state = 596}, - [5418] = {.lex_state = 572}, - [5419] = {.lex_state = 596}, - [5420] = {.lex_state = 572}, - [5421] = {.lex_state = 679}, - [5422] = {.lex_state = 1061}, - [5423] = {.lex_state = 572}, - [5424] = {.lex_state = 572}, - [5425] = {.lex_state = 1061}, - [5426] = {.lex_state = 572}, - [5427] = {.lex_state = 694}, - [5428] = {.lex_state = 596}, - [5429] = {.lex_state = 596}, - [5430] = {.lex_state = 596}, - [5431] = {.lex_state = 596}, - [5432] = {.lex_state = 596}, - [5433] = {.lex_state = 596}, - [5434] = {.lex_state = 596}, - [5435] = {.lex_state = 572}, - [5436] = {.lex_state = 694}, - [5437] = {.lex_state = 572}, - [5438] = {.lex_state = 596}, - [5439] = {.lex_state = 637}, - [5440] = {.lex_state = 596}, - [5441] = {.lex_state = 596}, - [5442] = {.lex_state = 635}, - [5443] = {.lex_state = 637}, - [5444] = {.lex_state = 637}, - [5445] = {.lex_state = 674}, - [5446] = {.lex_state = 637}, - [5447] = {.lex_state = 695}, - [5448] = {.lex_state = 596}, - [5449] = {.lex_state = 637}, - [5450] = {.lex_state = 662}, - [5451] = {.lex_state = 637}, - [5452] = {.lex_state = 721}, - [5453] = {.lex_state = 602}, - [5454] = {.lex_state = 637}, - [5455] = {.lex_state = 637}, - [5456] = {.lex_state = 637}, - [5457] = {.lex_state = 674}, - [5458] = {.lex_state = 596}, - [5459] = {.lex_state = 596}, - [5460] = {.lex_state = 637}, - [5461] = {.lex_state = 695}, - [5462] = {.lex_state = 662}, - [5463] = {.lex_state = 695}, - [5464] = {.lex_state = 637}, - [5465] = {.lex_state = 1061}, - [5466] = {.lex_state = 662}, - [5467] = {.lex_state = 602}, - [5468] = {.lex_state = 721}, - [5469] = {.lex_state = 637}, - [5470] = {.lex_state = 1061}, - [5471] = {.lex_state = 1061}, - [5472] = {.lex_state = 637}, - [5473] = {.lex_state = 662}, - [5474] = {.lex_state = 637}, - [5475] = {.lex_state = 637}, - [5476] = {.lex_state = 637}, - [5477] = {.lex_state = 637}, - [5478] = {.lex_state = 637}, - [5479] = {.lex_state = 637}, - [5480] = {.lex_state = 637}, - [5481] = {.lex_state = 637}, - [5482] = {.lex_state = 596}, - [5483] = {.lex_state = 622}, - [5484] = {.lex_state = 1061}, - [5485] = {.lex_state = 722}, - [5486] = {.lex_state = 596}, - [5487] = {.lex_state = 596}, - [5488] = {.lex_state = 1061}, - [5489] = {.lex_state = 1061}, - [5490] = {.lex_state = 596}, - [5491] = {.lex_state = 680}, - [5492] = {.lex_state = 596}, - [5493] = {.lex_state = 680}, - [5494] = {.lex_state = 680}, - [5495] = {.lex_state = 688}, - [5496] = {.lex_state = 1061}, - [5497] = {.lex_state = 688}, - [5498] = {.lex_state = 688}, - [5499] = {.lex_state = 1061}, - [5500] = {.lex_state = 1061}, - [5501] = {.lex_state = 1061}, - [5502] = {.lex_state = 1061}, - [5503] = {.lex_state = 1061}, - [5504] = {.lex_state = 1061}, - [5505] = {.lex_state = 1061}, - [5506] = {.lex_state = 1061}, - [5507] = {.lex_state = 1061}, - [5508] = {.lex_state = 622}, - [5509] = {.lex_state = 1061}, - [5510] = {.lex_state = 1061}, - [5511] = {.lex_state = 1061}, - [5512] = {.lex_state = 1061}, - [5513] = {.lex_state = 1061}, - [5514] = {.lex_state = 1061}, - [5515] = {.lex_state = 1061}, - [5516] = {.lex_state = 1061}, - [5517] = {.lex_state = 1061}, - [5518] = {.lex_state = 666}, - [5519] = {.lex_state = 1061}, - [5520] = {.lex_state = 689}, - [5521] = {.lex_state = 689}, - [5522] = {.lex_state = 689}, - [5523] = {.lex_state = 689}, - [5524] = {.lex_state = 1061}, - [5525] = {.lex_state = 1061}, - [5526] = {.lex_state = 1061}, - [5527] = {.lex_state = 1061}, - [5528] = {.lex_state = 1061}, - [5529] = {.lex_state = 1061}, - [5530] = {.lex_state = 1061}, - [5531] = {.lex_state = 1061}, - [5532] = {.lex_state = 1061}, - [5533] = {.lex_state = 622}, - [5534] = {.lex_state = 1061}, - [5535] = {.lex_state = 1061}, - [5536] = {.lex_state = 666}, - [5537] = {.lex_state = 596}, - [5538] = {.lex_state = 596}, - [5539] = {.lex_state = 1061}, - [5540] = {.lex_state = 596}, - [5541] = {.lex_state = 692}, - [5542] = {.lex_state = 596}, - [5543] = {.lex_state = 596}, - [5544] = {.lex_state = 681}, - [5545] = {.lex_state = 596}, - [5546] = {.lex_state = 596}, - [5547] = {.lex_state = 692}, - [5548] = {.lex_state = 1061}, - [5549] = {.lex_state = 1061}, - [5550] = {.lex_state = 622}, - [5551] = {.lex_state = 596}, - [5552] = {.lex_state = 1061}, - [5553] = {.lex_state = 1061}, - [5554] = {.lex_state = 622}, - [5555] = {.lex_state = 622}, - [5556] = {.lex_state = 596}, - [5557] = {.lex_state = 596}, - [5558] = {.lex_state = 1061}, - [5559] = {.lex_state = 596}, - [5560] = {.lex_state = 681}, - [5561] = {.lex_state = 1061}, - [5562] = {.lex_state = 596}, - [5563] = {.lex_state = 622}, - [5564] = {.lex_state = 596}, - [5565] = {.lex_state = 596}, - [5566] = {.lex_state = 622}, - [5567] = {.lex_state = 1061}, - [5568] = {.lex_state = 1061}, - [5569] = {.lex_state = 622}, - [5570] = {.lex_state = 596}, - [5571] = {.lex_state = 1061}, - [5572] = {.lex_state = 1061}, - [5573] = {.lex_state = 596}, - [5574] = {.lex_state = 596}, - [5575] = {.lex_state = 1061}, - [5576] = {.lex_state = 596}, - [5577] = {.lex_state = 596}, - [5578] = {.lex_state = 1061}, - [5579] = {.lex_state = 596}, - [5580] = {.lex_state = 1061}, - [5581] = {.lex_state = 596}, - [5582] = {.lex_state = 596}, - [5583] = {.lex_state = 596}, - [5584] = {.lex_state = 596}, - [5585] = {.lex_state = 1061}, - [5586] = {.lex_state = 1061}, - [5587] = {.lex_state = 596}, - [5588] = {.lex_state = 622}, - [5589] = {.lex_state = 1061}, - [5590] = {.lex_state = 1061}, - [5591] = {.lex_state = 1061}, - [5592] = {.lex_state = 596}, - [5593] = {.lex_state = 1061}, - [5594] = {.lex_state = 596}, - [5595] = {.lex_state = 1061}, - [5596] = {.lex_state = 622}, - [5597] = {.lex_state = 622}, - [5598] = {.lex_state = 622}, - [5599] = {.lex_state = 622}, - [5600] = {.lex_state = 1061}, - [5601] = {.lex_state = 1061}, - [5602] = {.lex_state = 622}, - [5603] = {.lex_state = 622}, - [5604] = {.lex_state = 1061}, - [5605] = {.lex_state = 1061}, - [5606] = {.lex_state = 622}, - [5607] = {.lex_state = 1061}, - [5608] = {.lex_state = 1061}, - [5609] = {.lex_state = 681}, - [5610] = {.lex_state = 622}, - [5611] = {.lex_state = 1061}, - [5612] = {.lex_state = 1061}, - [5613] = {.lex_state = 1061}, - [5614] = {.lex_state = 1061}, - [5615] = {.lex_state = 622}, - [5616] = {.lex_state = 1061}, - [5617] = {.lex_state = 1061}, - [5618] = {.lex_state = 622}, - [5619] = {.lex_state = 622}, - [5620] = {.lex_state = 622}, - [5621] = {.lex_state = 622}, - [5622] = {.lex_state = 622}, - [5623] = {.lex_state = 622}, - [5624] = {.lex_state = 1061}, - [5625] = {.lex_state = 1061}, - [5626] = {.lex_state = 622}, - [5627] = {.lex_state = 596}, - [5628] = {.lex_state = 1061}, - [5629] = {.lex_state = 681}, - [5630] = {.lex_state = 1061}, - [5631] = {.lex_state = 622}, - [5632] = {.lex_state = 1061}, - [5633] = {.lex_state = 1061}, - [5634] = {.lex_state = 622}, - [5635] = {.lex_state = 1061}, - [5636] = {.lex_state = 1061}, - [5637] = {.lex_state = 596}, - [5638] = {.lex_state = 596}, - [5639] = {.lex_state = 1061}, - [5640] = {.lex_state = 1061}, - [5641] = {.lex_state = 622}, - [5642] = {.lex_state = 1061}, - [5643] = {.lex_state = 1061}, - [5644] = {.lex_state = 596}, - [5645] = {.lex_state = 596}, - [5646] = {.lex_state = 596}, - [5647] = {.lex_state = 596}, - [5648] = {.lex_state = 596}, - [5649] = {.lex_state = 596}, - [5650] = {.lex_state = 1061}, - [5651] = {.lex_state = 596}, - [5652] = {.lex_state = 622}, - [5653] = {.lex_state = 1061}, - [5654] = {.lex_state = 622}, - [5655] = {.lex_state = 665}, - [5656] = {.lex_state = 622}, - [5657] = {.lex_state = 622}, - [5658] = {.lex_state = 622}, - [5659] = {.lex_state = 622}, - [5660] = {.lex_state = 622}, - [5661] = {.lex_state = 622}, - [5662] = {.lex_state = 622}, - [5663] = {.lex_state = 622}, - [5664] = {.lex_state = 622}, - [5665] = {.lex_state = 622}, - [5666] = {.lex_state = 622}, - [5667] = {.lex_state = 622}, - [5668] = {.lex_state = 622}, - [5669] = {.lex_state = 622}, - [5670] = {.lex_state = 622}, - [5671] = {.lex_state = 622}, - [5672] = {.lex_state = 622}, - [5673] = {.lex_state = 622}, - [5674] = {.lex_state = 622}, - [5675] = {.lex_state = 665}, - [5676] = {.lex_state = 622}, - [5677] = {.lex_state = 622}, - [5678] = {.lex_state = 622}, - [5679] = {.lex_state = 622}, - [5680] = {.lex_state = 622}, - [5681] = {.lex_state = 622}, - [5682] = {.lex_state = 622}, - [5683] = {.lex_state = 622}, - [5684] = {.lex_state = 622}, - [5685] = {.lex_state = 622}, - [5686] = {.lex_state = 622}, - [5687] = {.lex_state = 717}, - [5688] = {.lex_state = 1061}, - [5689] = {.lex_state = 662}, - [5690] = {.lex_state = 596}, - [5691] = {.lex_state = 596}, - [5692] = {.lex_state = 596}, - [5693] = {.lex_state = 596}, - [5694] = {.lex_state = 722}, - [5695] = {.lex_state = 596}, - [5696] = {.lex_state = 596}, - [5697] = {.lex_state = 1061}, - [5698] = {.lex_state = 596}, - [5699] = {.lex_state = 596}, - [5700] = {.lex_state = 596}, - [5701] = {.lex_state = 596}, - [5702] = {.lex_state = 596}, - [5703] = {.lex_state = 596}, - [5704] = {.lex_state = 596}, - [5705] = {.lex_state = 596}, - [5706] = {.lex_state = 596}, - [5707] = {.lex_state = 596}, - [5708] = {.lex_state = 596}, - [5709] = {.lex_state = 596}, - [5710] = {.lex_state = 596}, - [5711] = {.lex_state = 665}, - [5712] = {.lex_state = 596}, - [5713] = {.lex_state = 637}, - [5714] = {.lex_state = 622}, - [5715] = {.lex_state = 622}, - [5716] = {.lex_state = 622}, - [5717] = {.lex_state = 622}, - [5718] = {.lex_state = 622}, - [5719] = {.lex_state = 708}, - [5720] = {.lex_state = 637}, - [5721] = {.lex_state = 691}, - [5722] = {.lex_state = 621}, - [5723] = {.lex_state = 637}, - [5724] = {.lex_state = 708}, - [5725] = {.lex_state = 637}, - [5726] = {.lex_state = 1061}, - [5727] = {.lex_state = 622}, - [5728] = {.lex_state = 708}, - [5729] = {.lex_state = 708}, - [5730] = {.lex_state = 637}, - [5731] = {.lex_state = 637}, - [5732] = {.lex_state = 1061}, - [5733] = {.lex_state = 708}, - [5734] = {.lex_state = 637}, - [5735] = {.lex_state = 1061}, - [5736] = {.lex_state = 546}, - [5737] = {.lex_state = 708}, - [5738] = {.lex_state = 708}, - [5739] = {.lex_state = 691}, - [5740] = {.lex_state = 690}, - [5741] = {.lex_state = 690}, - [5742] = {.lex_state = 622}, - [5743] = {.lex_state = 690}, - [5744] = {.lex_state = 708}, - [5745] = {.lex_state = 708}, - [5746] = {.lex_state = 690}, - [5747] = {.lex_state = 708}, - [5748] = {.lex_state = 692}, - [5749] = {.lex_state = 622}, - [5750] = {.lex_state = 622}, - [5751] = {.lex_state = 622}, - [5752] = {.lex_state = 1061}, - [5753] = {.lex_state = 1061}, - [5754] = {.lex_state = 637}, - [5755] = {.lex_state = 637}, - [5756] = {.lex_state = 1061}, - [5757] = {.lex_state = 692}, - [5758] = {.lex_state = 708}, - [5759] = {.lex_state = 622}, - [5760] = {.lex_state = 622}, - [5761] = {.lex_state = 666}, - [5762] = {.lex_state = 1061}, - [5763] = {.lex_state = 622}, - [5764] = {.lex_state = 622}, - [5765] = {.lex_state = 637}, - [5766] = {.lex_state = 1061}, - [5767] = {.lex_state = 1061}, - [5768] = {.lex_state = 637}, - [5769] = {.lex_state = 708}, - [5770] = {.lex_state = 622}, - [5771] = {.lex_state = 622}, - [5772] = {.lex_state = 546}, - [5773] = {.lex_state = 637}, - [5774] = {.lex_state = 637}, - [5775] = {.lex_state = 1061}, - [5776] = {.lex_state = 622}, - [5777] = {.lex_state = 1061}, - [5778] = {.lex_state = 1061}, - [5779] = {.lex_state = 708}, - [5780] = {.lex_state = 708}, - [5781] = {.lex_state = 672}, - [5782] = {.lex_state = 708}, - [5783] = {.lex_state = 637}, - [5784] = {.lex_state = 637}, - [5785] = {.lex_state = 622}, - [5786] = {.lex_state = 708}, - [5787] = {.lex_state = 1061}, - [5788] = {.lex_state = 1061}, - [5789] = {.lex_state = 1061}, - [5790] = {.lex_state = 682}, - [5791] = {.lex_state = 637}, - [5792] = {.lex_state = 1061}, - [5793] = {.lex_state = 1061}, - [5794] = {.lex_state = 637}, - [5795] = {.lex_state = 708}, - [5796] = {.lex_state = 636}, - [5797] = {.lex_state = 1061}, - [5798] = {.lex_state = 637}, - [5799] = {.lex_state = 637}, - [5800] = {.lex_state = 622}, - [5801] = {.lex_state = 622}, - [5802] = {.lex_state = 637}, - [5803] = {.lex_state = 622}, - [5804] = {.lex_state = 637}, - [5805] = {.lex_state = 637}, - [5806] = {.lex_state = 637}, - [5807] = {.lex_state = 682}, - [5808] = {.lex_state = 637}, - [5809] = {.lex_state = 637}, - [5810] = {.lex_state = 637}, - [5811] = {.lex_state = 637}, - [5812] = {.lex_state = 637}, - [5813] = {.lex_state = 708}, - [5814] = {.lex_state = 708}, - [5815] = {.lex_state = 708}, - [5816] = {.lex_state = 637}, - [5817] = {.lex_state = 637}, - [5818] = {.lex_state = 637}, - [5819] = {.lex_state = 1061}, - [5820] = {.lex_state = 1061}, - [5821] = {.lex_state = 622}, - [5822] = {.lex_state = 637}, - [5823] = {.lex_state = 717}, - [5824] = {.lex_state = 708}, - [5825] = {.lex_state = 1061}, - [5826] = {.lex_state = 708}, - [5827] = {.lex_state = 708}, - [5828] = {.lex_state = 708}, - [5829] = {.lex_state = 708}, - [5830] = {.lex_state = 1061}, - [5831] = {.lex_state = 708}, - [5832] = {.lex_state = 708}, - [5833] = {.lex_state = 1061}, - [5834] = {.lex_state = 708}, - [5835] = {.lex_state = 708}, - [5836] = {.lex_state = 708}, - [5837] = {.lex_state = 1061}, - [5838] = {.lex_state = 1061}, - [5839] = {.lex_state = 1061}, - [5840] = {.lex_state = 717}, - [5841] = {.lex_state = 717}, - [5842] = {.lex_state = 1061}, - [5843] = {.lex_state = 1061}, - [5844] = {.lex_state = 1061}, - [5845] = {.lex_state = 1061}, - [5846] = {.lex_state = 1061}, - [5847] = {.lex_state = 1061}, - [5848] = {.lex_state = 682}, - [5849] = {.lex_state = 708}, - [5850] = {.lex_state = 708}, - [5851] = {.lex_state = 708}, - [5852] = {.lex_state = 1061}, - [5853] = {.lex_state = 1061}, - [5854] = {.lex_state = 708}, - [5855] = {.lex_state = 1061}, - [5856] = {.lex_state = 637}, - [5857] = {.lex_state = 708}, - [5858] = {.lex_state = 1061}, - [5859] = {.lex_state = 1061}, - [5860] = {.lex_state = 622}, - [5861] = {.lex_state = 708}, - [5862] = {.lex_state = 1061}, - [5863] = {.lex_state = 1061}, - [5864] = {.lex_state = 691}, - [5865] = {.lex_state = 708}, - [5866] = {.lex_state = 708}, - [5867] = {.lex_state = 708}, - [5868] = {.lex_state = 1061}, - [5869] = {.lex_state = 708}, - [5870] = {.lex_state = 622}, - [5871] = {.lex_state = 622}, - [5872] = {.lex_state = 1061}, - [5873] = {.lex_state = 1061}, - [5874] = {.lex_state = 622}, - [5875] = {.lex_state = 1061}, - [5876] = {.lex_state = 1061}, - [5877] = {.lex_state = 622}, - [5878] = {.lex_state = 637}, - [5879] = {.lex_state = 1061}, - [5880] = {.lex_state = 1061}, - [5881] = {.lex_state = 1061}, - [5882] = {.lex_state = 1061}, - [5883] = {.lex_state = 637}, - [5884] = {.lex_state = 1061}, - [5885] = {.lex_state = 1061}, - [5886] = {.lex_state = 723}, - [5887] = {.lex_state = 723}, - [5888] = {.lex_state = 721}, - [5889] = {.lex_state = 1061}, - [5890] = {.lex_state = 1061}, - [5891] = {.lex_state = 1061}, - [5892] = {.lex_state = 1061}, - [5893] = {.lex_state = 1061}, - [5894] = {.lex_state = 637}, - [5895] = {.lex_state = 1061}, - [5896] = {.lex_state = 1061}, - [5897] = {.lex_state = 637}, - [5898] = {.lex_state = 637}, - [5899] = {.lex_state = 637}, - [5900] = {.lex_state = 637}, - [5901] = {.lex_state = 1061}, - [5902] = {.lex_state = 1061}, - [5903] = {.lex_state = 637}, - [5904] = {.lex_state = 637}, - [5905] = {.lex_state = 1061}, - [5906] = {.lex_state = 1061}, - [5907] = {.lex_state = 1061}, - [5908] = {.lex_state = 1061}, - [5909] = {.lex_state = 637}, - [5910] = {.lex_state = 637}, - [5911] = {.lex_state = 637}, - [5912] = {.lex_state = 637}, - [5913] = {.lex_state = 1061}, - [5914] = {.lex_state = 1061}, - [5915] = {.lex_state = 637}, - [5916] = {.lex_state = 637}, - [5917] = {.lex_state = 1061}, - [5918] = {.lex_state = 1061}, - [5919] = {.lex_state = 1061}, - [5920] = {.lex_state = 1061}, - [5921] = {.lex_state = 1061}, - [5922] = {.lex_state = 1061}, - [5923] = {.lex_state = 1061}, - [5924] = {.lex_state = 1061}, - [5925] = {.lex_state = 637}, - [5926] = {.lex_state = 1061}, - [5927] = {.lex_state = 1061}, - [5928] = {.lex_state = 1061}, - [5929] = {.lex_state = 1061}, - [5930] = {.lex_state = 1061}, - [5931] = {.lex_state = 637}, - [5932] = {.lex_state = 1061}, - [5933] = {.lex_state = 1061}, - [5934] = {.lex_state = 1061}, - [5935] = {.lex_state = 1061}, - [5936] = {.lex_state = 1061}, - [5937] = {.lex_state = 1061}, - [5938] = {.lex_state = 1061}, - [5939] = {.lex_state = 637}, - [5940] = {.lex_state = 637}, - [5941] = {.lex_state = 1061}, - [5942] = {.lex_state = 1061}, - [5943] = {.lex_state = 1061}, - [5944] = {.lex_state = 1061}, - [5945] = {.lex_state = 1061}, - [5946] = {.lex_state = 1061}, - [5947] = {.lex_state = 1061}, - [5948] = {.lex_state = 1061}, - [5949] = {.lex_state = 1061}, - [5950] = {.lex_state = 1061}, - [5951] = {.lex_state = 1061}, - [5952] = {.lex_state = 637}, - [5953] = {.lex_state = 1061}, - [5954] = {.lex_state = 1061}, - [5955] = {.lex_state = 1061}, - [5956] = {.lex_state = 1061}, - [5957] = {.lex_state = 1061}, - [5958] = {.lex_state = 1061}, - [5959] = {.lex_state = 1061}, - [5960] = {.lex_state = 1061}, - [5961] = {.lex_state = 1061}, - [5962] = {.lex_state = 1061}, - [5963] = {.lex_state = 1061}, - [5964] = {.lex_state = 1061}, - [5965] = {.lex_state = 1061}, - [5966] = {.lex_state = 1061}, - [5967] = {.lex_state = 637}, - [5968] = {.lex_state = 637}, - [5969] = {.lex_state = 1061}, - [5970] = {.lex_state = 1061}, - [5971] = {.lex_state = 1061}, - [5972] = {.lex_state = 1061}, - [5973] = {.lex_state = 1061}, - [5974] = {.lex_state = 1061}, - [5975] = {.lex_state = 1061}, - [5976] = {.lex_state = 1061}, - [5977] = {.lex_state = 1061}, - [5978] = {.lex_state = 1061}, - [5979] = {.lex_state = 1061}, - [5980] = {.lex_state = 637}, - [5981] = {.lex_state = 1061}, - [5982] = {.lex_state = 637}, - [5983] = {.lex_state = 1061}, - [5984] = {.lex_state = 1061}, - [5985] = {.lex_state = 1061}, - [5986] = {.lex_state = 1061}, - [5987] = {.lex_state = 1061}, - [5988] = {.lex_state = 1061}, - [5989] = {.lex_state = 1061}, - [5990] = {.lex_state = 726}, - [5991] = {.lex_state = 637}, - [5992] = {.lex_state = 1061}, - [5993] = {.lex_state = 1061}, - [5994] = {.lex_state = 1061}, - [5995] = {.lex_state = 548}, - [5996] = {.lex_state = 1061}, - [5997] = {.lex_state = 1061}, - [5998] = {.lex_state = 637}, - [5999] = {.lex_state = 1061}, - [6000] = {.lex_state = 1061}, - [6001] = {.lex_state = 1061}, - [6002] = {.lex_state = 637}, - [6003] = {.lex_state = 1061}, - [6004] = {.lex_state = 1061}, - [6005] = {.lex_state = 728}, - [6006] = {.lex_state = 1061}, - [6007] = {.lex_state = 673}, - [6008] = {.lex_state = 1061}, - [6009] = {.lex_state = 1061}, - [6010] = {.lex_state = 1061}, - [6011] = {.lex_state = 637}, - [6012] = {.lex_state = 637}, - [6013] = {.lex_state = 1061}, - [6014] = {.lex_state = 1061}, - [6015] = {.lex_state = 1061}, - [6016] = {.lex_state = 1061}, - [6017] = {.lex_state = 1061}, - [6018] = {.lex_state = 1061}, - [6019] = {.lex_state = 637}, - [6020] = {.lex_state = 1061}, - [6021] = {.lex_state = 1061}, - [6022] = {.lex_state = 1061}, - [6023] = {.lex_state = 1061}, - [6024] = {.lex_state = 1061}, - [6025] = {.lex_state = 1061}, - [6026] = {.lex_state = 1061}, - [6027] = {.lex_state = 622}, - [6028] = {.lex_state = 637}, - [6029] = {.lex_state = 1061}, - [6030] = {.lex_state = 1061}, - [6031] = {.lex_state = 637}, - [6032] = {.lex_state = 1061}, - [6033] = {.lex_state = 1061}, - [6034] = {.lex_state = 1061}, - [6035] = {.lex_state = 1061}, - [6036] = {.lex_state = 1061}, - [6037] = {.lex_state = 1061}, - [6038] = {.lex_state = 1061}, - [6039] = {.lex_state = 1061}, - [6040] = {.lex_state = 1061}, - [6041] = {.lex_state = 637}, - [6042] = {.lex_state = 1061}, - [6043] = {.lex_state = 1061}, - [6044] = {.lex_state = 1061}, - [6045] = {.lex_state = 1061}, - [6046] = {.lex_state = 637}, - [6047] = {.lex_state = 1061}, - [6048] = {.lex_state = 637}, - [6049] = {.lex_state = 1061}, - [6050] = {.lex_state = 548}, - [6051] = {.lex_state = 1061}, - [6052] = {.lex_state = 726}, - [6053] = {.lex_state = 1061}, - [6054] = {.lex_state = 1061}, - [6055] = {.lex_state = 670}, - [6056] = {.lex_state = 670}, - [6057] = {.lex_state = 1061}, - [6058] = {.lex_state = 637}, - [6059] = {.lex_state = 1061}, - [6060] = {.lex_state = 1061}, - [6061] = {.lex_state = 1061}, - [6062] = {.lex_state = 1061}, - [6063] = {.lex_state = 1061}, - [6064] = {.lex_state = 1061}, - [6065] = {.lex_state = 1061}, - [6066] = {.lex_state = 1061}, - [6067] = {.lex_state = 1061}, - [6068] = {.lex_state = 1061}, - [6069] = {.lex_state = 1061}, - [6070] = {.lex_state = 1061}, - [6071] = {.lex_state = 1061}, - [6072] = {.lex_state = 1061}, - [6073] = {.lex_state = 1061}, - [6074] = {.lex_state = 1061}, - [6075] = {.lex_state = 1061}, - [6076] = {.lex_state = 1061}, - [6077] = {.lex_state = 1061}, - [6078] = {.lex_state = 1061}, - [6079] = {.lex_state = 1061}, - [6080] = {.lex_state = 1061}, - [6081] = {.lex_state = 1061}, - [6082] = {.lex_state = 1061}, - [6083] = {.lex_state = 637}, - [6084] = {.lex_state = 723}, - [6085] = {.lex_state = 1061}, - [6086] = {.lex_state = 723}, - [6087] = {.lex_state = 1061}, - [6088] = {.lex_state = 1061}, - [6089] = {.lex_state = 1061}, - [6090] = {.lex_state = 1061}, - [6091] = {.lex_state = 1061}, - [6092] = {.lex_state = 1061}, - [6093] = {.lex_state = 1061}, - [6094] = {.lex_state = 1061}, - [6095] = {.lex_state = 1061}, - [6096] = {.lex_state = 1061}, - [6097] = {.lex_state = 1061}, - [6098] = {.lex_state = 1061}, - [6099] = {.lex_state = 1061}, - [6100] = {.lex_state = 1061}, - [6101] = {.lex_state = 1061}, - [6102] = {.lex_state = 1061}, - [6103] = {.lex_state = 1061}, - [6104] = {.lex_state = 1061}, - [6105] = {.lex_state = 1061}, - [6106] = {.lex_state = 637}, - [6107] = {.lex_state = 622}, - [6108] = {.lex_state = 622}, - [6109] = {.lex_state = 622}, - [6110] = {.lex_state = 622}, - [6111] = {.lex_state = 622}, - [6112] = {.lex_state = 721}, - [6113] = {.lex_state = 622}, - [6114] = {.lex_state = 622}, - [6115] = {.lex_state = 622}, - [6116] = {.lex_state = 717}, - [6117] = {.lex_state = 728}, - [6118] = {.lex_state = 622}, - [6119] = {.lex_state = 622}, - [6120] = {.lex_state = 622}, - [6121] = {.lex_state = 622}, - [6122] = {.lex_state = 622}, - [6123] = {.lex_state = 622}, - [6124] = {.lex_state = 622}, - [6125] = {.lex_state = 622}, - [6126] = {.lex_state = 1061}, - [6127] = {.lex_state = 622}, - [6128] = {.lex_state = 622}, - [6129] = {.lex_state = 622}, - [6130] = {.lex_state = 622}, - [6131] = {.lex_state = 622}, - [6132] = {.lex_state = 622}, - [6133] = {.lex_state = 622}, - [6134] = {.lex_state = 622}, - [6135] = {.lex_state = 622}, - [6136] = {.lex_state = 622}, - [6137] = {.lex_state = 1061}, - [6138] = {.lex_state = 622}, - [6139] = {.lex_state = 622}, - [6140] = {.lex_state = 622}, - [6141] = {.lex_state = 637}, - [6142] = {.lex_state = 1061}, - [6143] = {.lex_state = 550}, - [6144] = {.lex_state = 622}, - [6145] = {.lex_state = 726}, - [6146] = {.lex_state = 622}, - [6147] = {.lex_state = 550}, - [6148] = {.lex_state = 722}, - [6149] = {.lex_state = 622}, - [6150] = {.lex_state = 1061}, - [6151] = {.lex_state = 1061}, - [6152] = {.lex_state = 622}, - [6153] = {.lex_state = 622}, - [6154] = {.lex_state = 622}, - [6155] = {.lex_state = 717}, - [6156] = {.lex_state = 622}, - [6157] = {.lex_state = 622}, - [6158] = {.lex_state = 726}, - [6159] = {.lex_state = 622}, - [6160] = {.lex_state = 622}, - [6161] = {.lex_state = 622}, - [6162] = {.lex_state = 622}, - [6163] = {.lex_state = 622}, - [6164] = {.lex_state = 622}, - [6165] = {.lex_state = 622}, - [6166] = {.lex_state = 622}, - [6167] = {.lex_state = 717}, - [6168] = {.lex_state = 622}, - [6169] = {.lex_state = 637}, - [6170] = {.lex_state = 672}, - [6171] = {.lex_state = 637}, - [6172] = {.lex_state = 695}, - [6173] = {.lex_state = 637}, - [6174] = {.lex_state = 637}, - [6175] = {.lex_state = 637}, - [6176] = {.lex_state = 637}, - [6177] = {.lex_state = 637}, - [6178] = {.lex_state = 695}, - [6179] = {.lex_state = 726}, - [6180] = {.lex_state = 695}, - [6181] = {.lex_state = 637}, - [6182] = {.lex_state = 637}, - [6183] = {.lex_state = 637}, - [6184] = {.lex_state = 637}, - [6185] = {.lex_state = 637}, - [6186] = {.lex_state = 670}, - [6187] = {.lex_state = 637}, - [6188] = {.lex_state = 637}, - [6189] = {.lex_state = 670}, - [6190] = {.lex_state = 637}, - [6191] = {.lex_state = 670}, - [6192] = {.lex_state = 637}, - [6193] = {.lex_state = 637}, - [6194] = {.lex_state = 637}, - [6195] = {.lex_state = 637}, - [6196] = {.lex_state = 637}, - [6197] = {.lex_state = 679}, - [6198] = {.lex_state = 670}, - [6199] = {.lex_state = 670}, - [6200] = {.lex_state = 670}, - [6201] = {.lex_state = 670}, - [6202] = {.lex_state = 637}, - [6203] = {.lex_state = 695}, - [6204] = {.lex_state = 1061}, - [6205] = {.lex_state = 670}, - [6206] = {.lex_state = 724}, - [6207] = {.lex_state = 637}, - [6208] = {.lex_state = 637}, - [6209] = {.lex_state = 637}, - [6210] = {.lex_state = 637}, - [6211] = {.lex_state = 670}, - [6212] = {.lex_state = 637}, - [6213] = {.lex_state = 672}, - [6214] = {.lex_state = 695}, - [6215] = {.lex_state = 670}, - [6216] = {.lex_state = 637}, - [6217] = {.lex_state = 637}, - [6218] = {.lex_state = 637}, - [6219] = {.lex_state = 637}, - [6220] = {.lex_state = 637}, - [6221] = {.lex_state = 637}, - [6222] = {.lex_state = 676}, - [6223] = {.lex_state = 676}, - [6224] = {.lex_state = 637}, - [6225] = {.lex_state = 637}, - [6226] = {.lex_state = 695}, - [6227] = {.lex_state = 637}, - [6228] = {.lex_state = 637}, - [6229] = {.lex_state = 637}, - [6230] = {.lex_state = 728}, - [6231] = {.lex_state = 637}, - [6232] = {.lex_state = 637}, - [6233] = {.lex_state = 637}, - [6234] = {.lex_state = 637}, - [6235] = {.lex_state = 637}, - [6236] = {.lex_state = 637}, - [6237] = {.lex_state = 637}, - [6238] = {.lex_state = 695}, - [6239] = {.lex_state = 670}, - [6240] = {.lex_state = 637}, - [6241] = {.lex_state = 722}, - [6242] = {.lex_state = 726}, - [6243] = {.lex_state = 679}, - [6244] = {.lex_state = 637}, - [6245] = {.lex_state = 726}, - [6246] = {.lex_state = 637}, - [6247] = {.lex_state = 695}, - [6248] = {.lex_state = 672}, - [6249] = {.lex_state = 637}, - [6250] = {.lex_state = 672}, - [6251] = {.lex_state = 672}, - [6252] = {.lex_state = 1061}, - [6253] = {.lex_state = 637}, - [6254] = {.lex_state = 672}, - [6255] = {.lex_state = 1061}, - [6256] = {.lex_state = 672}, - [6257] = {.lex_state = 637}, - [6258] = {.lex_state = 637}, - [6259] = {.lex_state = 728}, - [6260] = {.lex_state = 637}, - [6261] = {.lex_state = 637}, - [6262] = {.lex_state = 729}, - [6263] = {.lex_state = 637}, - [6264] = {.lex_state = 695}, - [6265] = {.lex_state = 683}, - [6266] = {.lex_state = 672}, - [6267] = {.lex_state = 637}, - [6268] = {.lex_state = 637}, - [6269] = {.lex_state = 726}, - [6270] = {.lex_state = 637}, - [6271] = {.lex_state = 724}, - [6272] = {.lex_state = 729}, - [6273] = {.lex_state = 637}, - [6274] = {.lex_state = 728}, - [6275] = {.lex_state = 637}, - [6276] = {.lex_state = 637}, - [6277] = {.lex_state = 726}, - [6278] = {.lex_state = 726}, - [6279] = {.lex_state = 683}, - [6280] = {.lex_state = 684}, - [6281] = {.lex_state = 700}, - [6282] = {.lex_state = 683}, - [6283] = {.lex_state = 721}, - [6284] = {.lex_state = 726}, - [6285] = {.lex_state = 684}, - [6286] = {.lex_state = 673}, - [6287] = {.lex_state = 725}, - [6288] = {.lex_state = 726}, - [6289] = {.lex_state = 728}, - [6290] = {.lex_state = 728}, - [6291] = {.lex_state = 726}, - [6292] = {.lex_state = 694}, - [6293] = {.lex_state = 726}, - [6294] = {.lex_state = 725}, - [6295] = {.lex_state = 694}, - [6296] = {.lex_state = 726}, - [6297] = {.lex_state = 622}, - [6298] = {.lex_state = 694}, - [6299] = {.lex_state = 622}, - [6300] = {.lex_state = 622}, - [6301] = {.lex_state = 622}, - [6302] = {.lex_state = 728}, - [6303] = {.lex_state = 694}, - [6304] = {.lex_state = 712}, - [6305] = {.lex_state = 726}, - [6306] = {.lex_state = 622}, - [6307] = {.lex_state = 724}, - [6308] = {.lex_state = 694}, - [6309] = {.lex_state = 622}, - [6310] = {.lex_state = 694}, - [6311] = {.lex_state = 700}, - [6312] = {.lex_state = 700}, - [6313] = {.lex_state = 1059}, - [6314] = {.lex_state = 726}, - [6315] = {.lex_state = 1061}, - [6316] = {.lex_state = 700}, - [6317] = {.lex_state = 726}, - [6318] = {.lex_state = 1061}, - [6319] = {.lex_state = 700}, - [6320] = {.lex_state = 700}, - [6321] = {.lex_state = 700}, - [6322] = {.lex_state = 726}, - [6323] = {.lex_state = 661}, - [6324] = {.lex_state = 1059}, - [6325] = {.lex_state = 683}, - [6326] = {.lex_state = 1061}, - [6327] = {.lex_state = 707}, - [6328] = {.lex_state = 726}, - [6329] = {.lex_state = 726}, - [6330] = {.lex_state = 700}, - [6331] = {.lex_state = 683}, - [6332] = {.lex_state = 700}, - [6333] = {.lex_state = 1059}, - [6334] = {.lex_state = 700}, - [6335] = {.lex_state = 700}, - [6336] = {.lex_state = 700}, - [6337] = {.lex_state = 726}, - [6338] = {.lex_state = 700}, - [6339] = {.lex_state = 700}, - [6340] = {.lex_state = 700}, - [6341] = {.lex_state = 717}, - [6342] = {.lex_state = 1061}, - [6343] = {.lex_state = 700}, - [6344] = {.lex_state = 700}, - [6345] = {.lex_state = 729}, - [6346] = {.lex_state = 1061}, - [6347] = {.lex_state = 700}, - [6348] = {.lex_state = 700}, - [6349] = {.lex_state = 700}, - [6350] = {.lex_state = 723}, - [6351] = {.lex_state = 1061}, - [6352] = {.lex_state = 700}, - [6353] = {.lex_state = 1059}, - [6354] = {.lex_state = 722}, - [6355] = {.lex_state = 729}, - [6356] = {.lex_state = 726}, - [6357] = {.lex_state = 726}, - [6358] = {.lex_state = 700}, - [6359] = {.lex_state = 700}, - [6360] = {.lex_state = 700}, - [6361] = {.lex_state = 700}, - [6362] = {.lex_state = 700}, - [6363] = {.lex_state = 700}, - [6364] = {.lex_state = 700}, - [6365] = {.lex_state = 700}, - [6366] = {.lex_state = 683}, - [6367] = {.lex_state = 694}, - [6368] = {.lex_state = 701}, - [6369] = {.lex_state = 724}, - [6370] = {.lex_state = 683}, - [6371] = {.lex_state = 683}, - [6372] = {.lex_state = 725}, - [6373] = {.lex_state = 683}, - [6374] = {.lex_state = 683}, - [6375] = {.lex_state = 683}, - [6376] = {.lex_state = 701}, - [6377] = {.lex_state = 701}, - [6378] = {.lex_state = 701}, - [6379] = {.lex_state = 683}, - [6380] = {.lex_state = 683}, - [6381] = {.lex_state = 683}, - [6382] = {.lex_state = 666}, - [6383] = {.lex_state = 683}, - [6384] = {.lex_state = 683}, - [6385] = {.lex_state = 683}, - [6386] = {.lex_state = 701}, - [6387] = {.lex_state = 701}, - [6388] = {.lex_state = 701}, - [6389] = {.lex_state = 666}, - [6390] = {.lex_state = 706}, - [6391] = {.lex_state = 666}, - [6392] = {.lex_state = 695}, - [6393] = {.lex_state = 706}, - [6394] = {.lex_state = 666}, - [6395] = {.lex_state = 666}, - [6396] = {.lex_state = 666}, - [6397] = {.lex_state = 666}, - [6398] = {.lex_state = 666}, - [6399] = {.lex_state = 622}, - [6400] = {.lex_state = 622}, - [6401] = {.lex_state = 666}, - [6402] = {.lex_state = 666}, - [6403] = {.lex_state = 666}, - [6404] = {.lex_state = 666}, - [6405] = {.lex_state = 666}, - [6406] = {.lex_state = 695}, - [6407] = {.lex_state = 666}, - [6408] = {.lex_state = 666}, - [6409] = {.lex_state = 695}, - [6410] = {.lex_state = 695}, - [6411] = {.lex_state = 695}, - [6412] = {.lex_state = 694}, - [6413] = {.lex_state = 666}, - [6414] = {.lex_state = 666}, - [6415] = {.lex_state = 700}, - [6416] = {.lex_state = 700}, - [6417] = {.lex_state = 700}, - [6418] = {.lex_state = 700}, - [6419] = {.lex_state = 700}, - [6420] = {.lex_state = 674}, - [6421] = {.lex_state = 700}, - [6422] = {.lex_state = 674}, - [6423] = {.lex_state = 683}, - [6424] = {.lex_state = 700}, - [6425] = {.lex_state = 708}, - [6426] = {.lex_state = 700}, - [6427] = {.lex_state = 622}, - [6428] = {.lex_state = 708}, - [6429] = {.lex_state = 700}, - [6430] = {.lex_state = 708}, - [6431] = {.lex_state = 708}, - [6432] = {.lex_state = 622}, - [6433] = {.lex_state = 700}, - [6434] = {.lex_state = 700}, - [6435] = {.lex_state = 700}, - [6436] = {.lex_state = 683}, - [6437] = {.lex_state = 723}, - [6438] = {.lex_state = 708}, - [6439] = {.lex_state = 700}, - [6440] = {.lex_state = 700}, - [6441] = {.lex_state = 700}, - [6442] = {.lex_state = 708}, - [6443] = {.lex_state = 708}, - [6444] = {.lex_state = 708}, - [6445] = {.lex_state = 700}, - [6446] = {.lex_state = 708}, - [6447] = {.lex_state = 700}, - [6448] = {.lex_state = 700}, - [6449] = {.lex_state = 700}, - [6450] = {.lex_state = 700}, - [6451] = {.lex_state = 700}, - [6452] = {.lex_state = 700}, - [6453] = {.lex_state = 708}, - [6454] = {.lex_state = 708}, - [6455] = {.lex_state = 700}, - [6456] = {.lex_state = 700}, - [6457] = {.lex_state = 700}, - [6458] = {.lex_state = 700}, - [6459] = {.lex_state = 700}, - [6460] = {.lex_state = 708}, - [6461] = {.lex_state = 666}, - [6462] = {.lex_state = 700}, - [6463] = {.lex_state = 708}, - [6464] = {.lex_state = 708}, - [6465] = {.lex_state = 708}, - [6466] = {.lex_state = 700}, - [6467] = {.lex_state = 683}, - [6468] = {.lex_state = 708}, - [6469] = {.lex_state = 622}, - [6470] = {.lex_state = 622}, - [6471] = {.lex_state = 683}, - [6472] = {.lex_state = 700}, - [6473] = {.lex_state = 700}, - [6474] = {.lex_state = 708}, - [6475] = {.lex_state = 708}, - [6476] = {.lex_state = 700}, - [6477] = {.lex_state = 708}, - [6478] = {.lex_state = 700}, - [6479] = {.lex_state = 700}, - [6480] = {.lex_state = 708}, - [6481] = {.lex_state = 700}, - [6482] = {.lex_state = 708}, - [6483] = {.lex_state = 708}, - [6484] = {.lex_state = 708}, - [6485] = {.lex_state = 708}, - [6486] = {.lex_state = 700}, - [6487] = {.lex_state = 700}, - [6488] = {.lex_state = 700}, - [6489] = {.lex_state = 683}, - [6490] = {.lex_state = 700}, - [6491] = {.lex_state = 708}, - [6492] = {.lex_state = 700}, - [6493] = {.lex_state = 708}, - [6494] = {.lex_state = 700}, - [6495] = {.lex_state = 700}, - [6496] = {.lex_state = 700}, - [6497] = {.lex_state = 700}, - [6498] = {.lex_state = 700}, - [6499] = {.lex_state = 708}, - [6500] = {.lex_state = 683}, - [6501] = {.lex_state = 708}, - [6502] = {.lex_state = 700}, - [6503] = {.lex_state = 700}, - [6504] = {.lex_state = 700}, - [6505] = {.lex_state = 661}, - [6506] = {.lex_state = 700}, - [6507] = {.lex_state = 708}, - [6508] = {.lex_state = 622}, - [6509] = {.lex_state = 700}, - [6510] = {.lex_state = 700}, - [6511] = {.lex_state = 700}, - [6512] = {.lex_state = 700}, - [6513] = {.lex_state = 700}, - [6514] = {.lex_state = 700}, - [6515] = {.lex_state = 700}, - [6516] = {.lex_state = 674}, - [6517] = {.lex_state = 700}, - [6518] = {.lex_state = 708}, - [6519] = {.lex_state = 706}, - [6520] = {.lex_state = 724}, - [6521] = {.lex_state = 674}, - [6522] = {.lex_state = 727}, - [6523] = {.lex_state = 674}, - [6524] = {.lex_state = 712}, - [6525] = {.lex_state = 712}, - [6526] = {.lex_state = 712}, - [6527] = {.lex_state = 1061}, - [6528] = {.lex_state = 674}, - [6529] = {.lex_state = 674}, - [6530] = {.lex_state = 674}, - [6531] = {.lex_state = 674}, - [6532] = {.lex_state = 725}, - [6533] = {.lex_state = 674}, - [6534] = {.lex_state = 666}, - [6535] = {.lex_state = 712}, - [6536] = {.lex_state = 712}, - [6537] = {.lex_state = 712}, - [6538] = {.lex_state = 674}, - [6539] = {.lex_state = 674}, - [6540] = {.lex_state = 674}, - [6541] = {.lex_state = 712}, - [6542] = {.lex_state = 712}, - [6543] = {.lex_state = 712}, - [6544] = {.lex_state = 712}, - [6545] = {.lex_state = 712}, - [6546] = {.lex_state = 712}, - [6547] = {.lex_state = 666}, - [6548] = {.lex_state = 674}, - [6549] = {.lex_state = 712}, - [6550] = {.lex_state = 712}, - [6551] = {.lex_state = 712}, - [6552] = {.lex_state = 674}, - [6553] = {.lex_state = 706}, - [6554] = {.lex_state = 674}, - [6555] = {.lex_state = 712}, - [6556] = {.lex_state = 712}, - [6557] = {.lex_state = 712}, - [6558] = {.lex_state = 706}, - [6559] = {.lex_state = 706}, - [6560] = {.lex_state = 657}, - [6561] = {.lex_state = 712}, - [6562] = {.lex_state = 712}, - [6563] = {.lex_state = 712}, - [6564] = {.lex_state = 666}, - [6565] = {.lex_state = 712}, - [6566] = {.lex_state = 712}, - [6567] = {.lex_state = 712}, - [6568] = {.lex_state = 712}, - [6569] = {.lex_state = 712}, - [6570] = {.lex_state = 712}, - [6571] = {.lex_state = 712}, - [6572] = {.lex_state = 712}, - [6573] = {.lex_state = 712}, - [6574] = {.lex_state = 674}, - [6575] = {.lex_state = 712}, - [6576] = {.lex_state = 712}, - [6577] = {.lex_state = 712}, - [6578] = {.lex_state = 712}, - [6579] = {.lex_state = 712}, - [6580] = {.lex_state = 712}, - [6581] = {.lex_state = 674}, - [6582] = {.lex_state = 712}, - [6583] = {.lex_state = 712}, - [6584] = {.lex_state = 666}, - [6585] = {.lex_state = 661}, - [6586] = {.lex_state = 712}, - [6587] = {.lex_state = 701}, - [6588] = {.lex_state = 712}, - [6589] = {.lex_state = 712}, - [6590] = {.lex_state = 712}, - [6591] = {.lex_state = 712}, - [6592] = {.lex_state = 666}, - [6593] = {.lex_state = 674}, - [6594] = {.lex_state = 666}, - [6595] = {.lex_state = 666}, - [6596] = {.lex_state = 706}, - [6597] = {.lex_state = 712}, - [6598] = {.lex_state = 712}, - [6599] = {.lex_state = 712}, - [6600] = {.lex_state = 712}, - [6601] = {.lex_state = 712}, - [6602] = {.lex_state = 712}, - [6603] = {.lex_state = 674}, - [6604] = {.lex_state = 712}, - [6605] = {.lex_state = 630}, - [6606] = {.lex_state = 630}, - [6607] = {.lex_state = 630}, - [6608] = {.lex_state = 630}, - [6609] = {.lex_state = 674}, - [6610] = {.lex_state = 712}, - [6611] = {.lex_state = 661}, - [6612] = {.lex_state = 666}, - [6613] = {.lex_state = 706}, - [6614] = {.lex_state = 712}, - [6615] = {.lex_state = 666}, - [6616] = {.lex_state = 666}, - [6617] = {.lex_state = 706}, - [6618] = {.lex_state = 657}, - [6619] = {.lex_state = 712}, - [6620] = {.lex_state = 712}, - [6621] = {.lex_state = 712}, - [6622] = {.lex_state = 712}, - [6623] = {.lex_state = 712}, - [6624] = {.lex_state = 666}, - [6625] = {.lex_state = 1061}, - [6626] = {.lex_state = 712}, - [6627] = {.lex_state = 666}, - [6628] = {.lex_state = 712}, - [6629] = {.lex_state = 712}, - [6630] = {.lex_state = 706}, - [6631] = {.lex_state = 666}, - [6632] = {.lex_state = 666}, - [6633] = {.lex_state = 712}, - [6634] = {.lex_state = 712}, - [6635] = {.lex_state = 712}, - [6636] = {.lex_state = 727}, - [6637] = {.lex_state = 666}, - [6638] = {.lex_state = 666}, - [6639] = {.lex_state = 666}, - [6640] = {.lex_state = 712}, - [6641] = {.lex_state = 712}, - [6642] = {.lex_state = 712}, - [6643] = {.lex_state = 727}, - [6644] = {.lex_state = 666}, - [6645] = {.lex_state = 712}, - [6646] = {.lex_state = 712}, - [6647] = {.lex_state = 712}, - [6648] = {.lex_state = 666}, - [6649] = {.lex_state = 666}, - [6650] = {.lex_state = 712}, - [6651] = {.lex_state = 712}, - [6652] = {.lex_state = 712}, - [6653] = {.lex_state = 712}, - [6654] = {.lex_state = 674}, - [6655] = {.lex_state = 666}, - [6656] = {.lex_state = 712}, - [6657] = {.lex_state = 712}, - [6658] = {.lex_state = 712}, - [6659] = {.lex_state = 666}, - [6660] = {.lex_state = 706}, - [6661] = {.lex_state = 674}, - [6662] = {.lex_state = 712}, - [6663] = {.lex_state = 712}, - [6664] = {.lex_state = 712}, - [6665] = {.lex_state = 674}, - [6666] = {.lex_state = 674}, - [6667] = {.lex_state = 712}, - [6668] = {.lex_state = 674}, - [6669] = {.lex_state = 712}, - [6670] = {.lex_state = 712}, - [6671] = {.lex_state = 712}, - [6672] = {.lex_state = 674}, - [6673] = {.lex_state = 674}, - [6674] = {.lex_state = 706}, - [6675] = {.lex_state = 712}, - [6676] = {.lex_state = 727}, - [6677] = {.lex_state = 724}, - [6678] = {.lex_state = 708}, - [6679] = {.lex_state = 712}, - [6680] = {.lex_state = 674}, - [6681] = {.lex_state = 712}, - [6682] = {.lex_state = 712}, - [6683] = {.lex_state = 727}, - [6684] = {.lex_state = 727}, - [6685] = {.lex_state = 674}, - [6686] = {.lex_state = 706}, - [6687] = {.lex_state = 1061}, - [6688] = {.lex_state = 674}, - [6689] = {.lex_state = 674}, - [6690] = {.lex_state = 657}, - [6691] = {.lex_state = 674}, - [6692] = {.lex_state = 661}, - [6693] = {.lex_state = 712}, - [6694] = {.lex_state = 712}, - [6695] = {.lex_state = 622}, - [6696] = {.lex_state = 712}, - [6697] = {.lex_state = 712}, - [6698] = {.lex_state = 712}, - [6699] = {.lex_state = 727}, - [6700] = {.lex_state = 712}, - [6701] = {.lex_state = 712}, - [6702] = {.lex_state = 712}, - [6703] = {.lex_state = 622}, - [6704] = {.lex_state = 712}, - [6705] = {.lex_state = 727}, - [6706] = {.lex_state = 712}, - [6707] = {.lex_state = 1061}, - [6708] = {.lex_state = 712}, - [6709] = {.lex_state = 712}, - [6710] = {.lex_state = 707}, - [6711] = {.lex_state = 712}, - [6712] = {.lex_state = 712}, - [6713] = {.lex_state = 727}, - [6714] = {.lex_state = 712}, - [6715] = {.lex_state = 727}, - [6716] = {.lex_state = 712}, - [6717] = {.lex_state = 712}, - [6718] = {.lex_state = 712}, - [6719] = {.lex_state = 727}, - [6720] = {.lex_state = 712}, - [6721] = {.lex_state = 694}, - [6722] = {.lex_state = 727}, - [6723] = {.lex_state = 707}, - [6724] = {.lex_state = 712}, - [6725] = {.lex_state = 727}, - [6726] = {.lex_state = 657}, - [6727] = {.lex_state = 701}, - [6728] = {.lex_state = 657}, - [6729] = {.lex_state = 1059}, - [6730] = {.lex_state = 657}, - [6731] = {.lex_state = 657}, - [6732] = {.lex_state = 657}, - [6733] = {.lex_state = 727}, - [6734] = {.lex_state = 657}, - [6735] = {.lex_state = 657}, - [6736] = {.lex_state = 657}, - [6737] = {.lex_state = 727}, - [6738] = {.lex_state = 727}, - [6739] = {.lex_state = 657}, - [6740] = {.lex_state = 657}, - [6741] = {.lex_state = 727}, - [6742] = {.lex_state = 727}, - [6743] = {.lex_state = 727}, - [6744] = {.lex_state = 727}, - [6745] = {.lex_state = 727}, - [6746] = {.lex_state = 727}, - [6747] = {.lex_state = 727}, - [6748] = {.lex_state = 1059}, - [6749] = {.lex_state = 1059}, - [6750] = {.lex_state = 657}, - [6751] = {.lex_state = 1059}, - [6752] = {.lex_state = 727}, - [6753] = {.lex_state = 701}, - [6754] = {.lex_state = 1059}, - [6755] = {.lex_state = 657}, - [6756] = {.lex_state = 701}, - [6757] = {.lex_state = 1059}, - [6758] = {.lex_state = 657}, - [6759] = {.lex_state = 657}, - [6760] = {.lex_state = 621}, - [6761] = {.lex_state = 708}, - [6762] = {.lex_state = 657}, - [6763] = {.lex_state = 657}, - [6764] = {.lex_state = 701}, - [6765] = {.lex_state = 724}, - [6766] = {.lex_state = 701}, - [6767] = {.lex_state = 657}, - [6768] = {.lex_state = 657}, - [6769] = {.lex_state = 657}, - [6770] = {.lex_state = 701}, - [6771] = {.lex_state = 724}, - [6772] = {.lex_state = 657}, - [6773] = {.lex_state = 657}, - [6774] = {.lex_state = 708}, - [6775] = {.lex_state = 657}, - [6776] = {.lex_state = 710}, - [6777] = {.lex_state = 710}, - [6778] = {.lex_state = 694}, - [6779] = {.lex_state = 710}, - [6780] = {.lex_state = 710}, - [6781] = {.lex_state = 657}, - [6782] = {.lex_state = 657}, - [6783] = {.lex_state = 710}, - [6784] = {.lex_state = 657}, - [6785] = {.lex_state = 710}, - [6786] = {.lex_state = 710}, - [6787] = {.lex_state = 657}, - [6788] = {.lex_state = 657}, - [6789] = {.lex_state = 657}, - [6790] = {.lex_state = 657}, - [6791] = {.lex_state = 710}, - [6792] = {.lex_state = 710}, - [6793] = {.lex_state = 660}, - [6794] = {.lex_state = 685}, - [6795] = {.lex_state = 710}, - [6796] = {.lex_state = 694}, - [6797] = {.lex_state = 657}, - [6798] = {.lex_state = 657}, - [6799] = {.lex_state = 622}, - [6800] = {.lex_state = 657}, - [6801] = {.lex_state = 710}, - [6802] = {.lex_state = 657}, - [6803] = {.lex_state = 710}, - [6804] = {.lex_state = 657}, - [6805] = {.lex_state = 657}, - [6806] = {.lex_state = 657}, - [6807] = {.lex_state = 701}, - [6808] = {.lex_state = 630}, - [6809] = {.lex_state = 630}, - [6810] = {.lex_state = 701}, - [6811] = {.lex_state = 701}, - [6812] = {.lex_state = 686}, - [6813] = {.lex_state = 701}, - [6814] = {.lex_state = 630}, - [6815] = {.lex_state = 657}, - [6816] = {.lex_state = 701}, - [6817] = {.lex_state = 630}, - [6818] = {.lex_state = 630}, - [6819] = {.lex_state = 701}, - [6820] = {.lex_state = 701}, - [6821] = {.lex_state = 701}, - [6822] = {.lex_state = 727}, - [6823] = {.lex_state = 701}, - [6824] = {.lex_state = 701}, - [6825] = {.lex_state = 657}, - [6826] = {.lex_state = 630}, - [6827] = {.lex_state = 701}, - [6828] = {.lex_state = 727}, - [6829] = {.lex_state = 701}, - [6830] = {.lex_state = 657}, - [6831] = {.lex_state = 701}, - [6832] = {.lex_state = 657}, - [6833] = {.lex_state = 701}, - [6834] = {.lex_state = 701}, - [6835] = {.lex_state = 701}, - [6836] = {.lex_state = 701}, - [6837] = {.lex_state = 701}, - [6838] = {.lex_state = 701}, - [6839] = {.lex_state = 701}, - [6840] = {.lex_state = 701}, - [6841] = {.lex_state = 701}, - [6842] = {.lex_state = 701}, - [6843] = {.lex_state = 701}, - [6844] = {.lex_state = 701}, - [6845] = {.lex_state = 720}, - [6846] = {.lex_state = 701}, - [6847] = {.lex_state = 701}, - [6848] = {.lex_state = 701}, - [6849] = {.lex_state = 701}, - [6850] = {.lex_state = 701}, - [6851] = {.lex_state = 701}, - [6852] = {.lex_state = 701}, - [6853] = {.lex_state = 701}, - [6854] = {.lex_state = 701}, - [6855] = {.lex_state = 708}, - [6856] = {.lex_state = 701}, - [6857] = {.lex_state = 701}, - [6858] = {.lex_state = 708}, - [6859] = {.lex_state = 708}, - [6860] = {.lex_state = 701}, - [6861] = {.lex_state = 701}, - [6862] = {.lex_state = 701}, - [6863] = {.lex_state = 701}, - [6864] = {.lex_state = 701}, - [6865] = {.lex_state = 701}, - [6866] = {.lex_state = 701}, - [6867] = {.lex_state = 701}, - [6868] = {.lex_state = 701}, - [6869] = {.lex_state = 710}, - [6870] = {.lex_state = 710}, - [6871] = {.lex_state = 710}, - [6872] = {.lex_state = 694}, - [6873] = {.lex_state = 710}, - [6874] = {.lex_state = 710}, - [6875] = {.lex_state = 667}, - [6876] = {.lex_state = 666}, - [6877] = {.lex_state = 667}, - [6878] = {.lex_state = 710}, - [6879] = {.lex_state = 710}, - [6880] = {.lex_state = 710}, - [6881] = {.lex_state = 710}, - [6882] = {.lex_state = 726}, - [6883] = {.lex_state = 710}, - [6884] = {.lex_state = 667}, - [6885] = {.lex_state = 666}, - [6886] = {.lex_state = 667}, - [6887] = {.lex_state = 710}, - [6888] = {.lex_state = 710}, - [6889] = {.lex_state = 710}, - [6890] = {.lex_state = 710}, - [6891] = {.lex_state = 666}, - [6892] = {.lex_state = 710}, - [6893] = {.lex_state = 710}, - [6894] = {.lex_state = 727}, - [6895] = {.lex_state = 603}, - [6896] = {.lex_state = 710}, - [6897] = {.lex_state = 667}, - [6898] = {.lex_state = 710}, - [6899] = {.lex_state = 710}, - [6900] = {.lex_state = 710}, - [6901] = {.lex_state = 727}, - [6902] = {.lex_state = 727}, - [6903] = {.lex_state = 727}, - [6904] = {.lex_state = 710}, - [6905] = {.lex_state = 667}, - [6906] = {.lex_state = 710}, - [6907] = {.lex_state = 710}, - [6908] = {.lex_state = 710}, - [6909] = {.lex_state = 667}, - [6910] = {.lex_state = 710}, - [6911] = {.lex_state = 710}, - [6912] = {.lex_state = 710}, - [6913] = {.lex_state = 700}, - [6914] = {.lex_state = 710}, - [6915] = {.lex_state = 700}, - [6916] = {.lex_state = 710}, - [6917] = {.lex_state = 700}, - [6918] = {.lex_state = 710}, - [6919] = {.lex_state = 710}, - [6920] = {.lex_state = 710}, - [6921] = {.lex_state = 710}, - [6922] = {.lex_state = 710}, - [6923] = {.lex_state = 667}, - [6924] = {.lex_state = 710}, - [6925] = {.lex_state = 1061}, - [6926] = {.lex_state = 710}, - [6927] = {.lex_state = 710}, - [6928] = {.lex_state = 710}, - [6929] = {.lex_state = 710}, - [6930] = {.lex_state = 698}, - [6931] = {.lex_state = 698}, - [6932] = {.lex_state = 698}, - [6933] = {.lex_state = 727}, - [6934] = {.lex_state = 714}, - [6935] = {.lex_state = 714}, - [6936] = {.lex_state = 603}, - [6937] = {.lex_state = 714}, - [6938] = {.lex_state = 714}, - [6939] = {.lex_state = 714}, - [6940] = {.lex_state = 714}, - [6941] = {.lex_state = 714}, - [6942] = {.lex_state = 714}, - [6943] = {.lex_state = 714}, - [6944] = {.lex_state = 698}, - [6945] = {.lex_state = 714}, - [6946] = {.lex_state = 714}, - [6947] = {.lex_state = 714}, - [6948] = {.lex_state = 727}, - [6949] = {.lex_state = 714}, - [6950] = {.lex_state = 714}, - [6951] = {.lex_state = 698}, - [6952] = {.lex_state = 714}, - [6953] = {.lex_state = 727}, - [6954] = {.lex_state = 714}, - [6955] = {.lex_state = 714}, - [6956] = {.lex_state = 714}, - [6957] = {.lex_state = 714}, - [6958] = {.lex_state = 700}, - [6959] = {.lex_state = 714}, - [6960] = {.lex_state = 714}, - [6961] = {.lex_state = 714}, - [6962] = {.lex_state = 714}, - [6963] = {.lex_state = 714}, - [6964] = {.lex_state = 727}, - [6965] = {.lex_state = 698}, - [6966] = {.lex_state = 727}, - [6967] = {.lex_state = 714}, - [6968] = {.lex_state = 714}, - [6969] = {.lex_state = 714}, - [6970] = {.lex_state = 714}, - [6971] = {.lex_state = 698}, - [6972] = {.lex_state = 727}, - [6973] = {.lex_state = 666}, - [6974] = {.lex_state = 698}, - [6975] = {.lex_state = 714}, - [6976] = {.lex_state = 714}, - [6977] = {.lex_state = 698}, - [6978] = {.lex_state = 714}, - [6979] = {.lex_state = 714}, - [6980] = {.lex_state = 698}, - [6981] = {.lex_state = 698}, - [6982] = {.lex_state = 714}, - [6983] = {.lex_state = 714}, - [6984] = {.lex_state = 714}, - [6985] = {.lex_state = 714}, - [6986] = {.lex_state = 714}, - [6987] = {.lex_state = 698}, - [6988] = {.lex_state = 714}, - [6989] = {.lex_state = 714}, - [6990] = {.lex_state = 714}, - [6991] = {.lex_state = 714}, - [6992] = {.lex_state = 714}, - [6993] = {.lex_state = 714}, - [6994] = {.lex_state = 714}, - [6995] = {.lex_state = 503}, - [6996] = {.lex_state = 603}, - [6997] = {.lex_state = 714}, - [6998] = {.lex_state = 714}, - [6999] = {.lex_state = 698}, - [7000] = {.lex_state = 708}, - [7001] = {.lex_state = 714}, - [7002] = {.lex_state = 714}, - [7003] = {.lex_state = 714}, - [7004] = {.lex_state = 714}, - [7005] = {.lex_state = 714}, - [7006] = {.lex_state = 698}, - [7007] = {.lex_state = 714}, - [7008] = {.lex_state = 714}, - [7009] = {.lex_state = 714}, - [7010] = {.lex_state = 698}, - [7011] = {.lex_state = 698}, - [7012] = {.lex_state = 503}, - [7013] = {.lex_state = 714}, - [7014] = {.lex_state = 714}, - [7015] = {.lex_state = 714}, - [7016] = {.lex_state = 714}, - [7017] = {.lex_state = 714}, - [7018] = {.lex_state = 714}, - [7019] = {.lex_state = 603}, - [7020] = {.lex_state = 714}, - [7021] = {.lex_state = 714}, - [7022] = {.lex_state = 714}, - [7023] = {.lex_state = 714}, - [7024] = {.lex_state = 714}, - [7025] = {.lex_state = 714}, - [7026] = {.lex_state = 714}, - [7027] = {.lex_state = 714}, - [7028] = {.lex_state = 714}, - [7029] = {.lex_state = 714}, - [7030] = {.lex_state = 714}, - [7031] = {.lex_state = 727}, - [7032] = {.lex_state = 714}, - [7033] = {.lex_state = 727}, - [7034] = {.lex_state = 714}, - [7035] = {.lex_state = 714}, - [7036] = {.lex_state = 714}, - [7037] = {.lex_state = 261}, - [7038] = {.lex_state = 714}, - [7039] = {.lex_state = 714}, - [7040] = {.lex_state = 714}, - [7041] = {.lex_state = 714}, - [7042] = {.lex_state = 714}, - [7043] = {.lex_state = 727}, - [7044] = {.lex_state = 714}, - [7045] = {.lex_state = 714}, - [7046] = {.lex_state = 714}, - [7047] = {.lex_state = 714}, - [7048] = {.lex_state = 714}, - [7049] = {.lex_state = 714}, - [7050] = {.lex_state = 714}, - [7051] = {.lex_state = 714}, - [7052] = {.lex_state = 714}, - [7053] = {.lex_state = 698}, - [7054] = {.lex_state = 714}, - [7055] = {.lex_state = 714}, - [7056] = {.lex_state = 714}, - [7057] = {.lex_state = 714}, - [7058] = {.lex_state = 503}, - [7059] = {.lex_state = 714}, - [7060] = {.lex_state = 714}, - [7061] = {.lex_state = 714}, - [7062] = {.lex_state = 698}, - [7063] = {.lex_state = 714}, - [7064] = {.lex_state = 714}, - [7065] = {.lex_state = 714}, - [7066] = {.lex_state = 727}, - [7067] = {.lex_state = 714}, - [7068] = {.lex_state = 503}, - [7069] = {.lex_state = 704}, - [7070] = {.lex_state = 503}, - [7071] = {.lex_state = 503}, - [7072] = {.lex_state = 503}, - [7073] = {.lex_state = 503}, - [7074] = {.lex_state = 503}, - [7075] = {.lex_state = 503}, - [7076] = {.lex_state = 727}, - [7077] = {.lex_state = 660}, - [7078] = {.lex_state = 666}, - [7079] = {.lex_state = 666}, - [7080] = {.lex_state = 503}, - [7081] = {.lex_state = 727}, - [7082] = {.lex_state = 503}, - [7083] = {.lex_state = 503}, - [7084] = {.lex_state = 603}, - [7085] = {.lex_state = 503}, - [7086] = {.lex_state = 503}, - [7087] = {.lex_state = 727}, - [7088] = {.lex_state = 704}, - [7089] = {.lex_state = 666}, - [7090] = {.lex_state = 660}, - [7091] = {.lex_state = 603}, - [7092] = {.lex_state = 666}, - [7093] = {.lex_state = 727}, - [7094] = {.lex_state = 503}, - [7095] = {.lex_state = 704}, - [7096] = {.lex_state = 603}, - [7097] = {.lex_state = 704}, - [7098] = {.lex_state = 685}, - [7099] = {.lex_state = 503}, - [7100] = {.lex_state = 603}, - [7101] = {.lex_state = 603}, - [7102] = {.lex_state = 704}, - [7103] = {.lex_state = 503}, - [7104] = {.lex_state = 503}, - [7105] = {.lex_state = 503}, - [7106] = {.lex_state = 603}, - [7107] = {.lex_state = 503}, - [7108] = {.lex_state = 503}, - [7109] = {.lex_state = 603}, - [7110] = {.lex_state = 603}, - [7111] = {.lex_state = 694}, - [7112] = {.lex_state = 503}, - [7113] = {.lex_state = 666}, - [7114] = {.lex_state = 685}, - [7115] = {.lex_state = 704}, - [7116] = {.lex_state = 503}, - [7117] = {.lex_state = 666}, - [7118] = {.lex_state = 603}, - [7119] = {.lex_state = 685}, - [7120] = {.lex_state = 666}, - [7121] = {.lex_state = 503}, - [7122] = {.lex_state = 503}, - [7123] = {.lex_state = 503}, - [7124] = {.lex_state = 660}, - [7125] = {.lex_state = 503}, - [7126] = {.lex_state = 503}, - [7127] = {.lex_state = 503}, - [7128] = {.lex_state = 666}, - [7129] = {.lex_state = 666}, - [7130] = {.lex_state = 685}, - [7131] = {.lex_state = 503}, - [7132] = {.lex_state = 503}, - [7133] = {.lex_state = 727}, - [7134] = {.lex_state = 666}, - [7135] = {.lex_state = 603}, - [7136] = {.lex_state = 603}, - [7137] = {.lex_state = 603}, - [7138] = {.lex_state = 666}, - [7139] = {.lex_state = 660}, - [7140] = {.lex_state = 603}, - [7141] = {.lex_state = 727}, - [7142] = {.lex_state = 660}, - [7143] = {.lex_state = 660}, - [7144] = {.lex_state = 704}, - [7145] = {.lex_state = 685}, - [7146] = {.lex_state = 704}, - [7147] = {.lex_state = 503}, - [7148] = {.lex_state = 704}, - [7149] = {.lex_state = 727}, - [7150] = {.lex_state = 503}, - [7151] = {.lex_state = 503}, - [7152] = {.lex_state = 503}, - [7153] = {.lex_state = 685}, - [7154] = {.lex_state = 503}, - [7155] = {.lex_state = 603}, - [7156] = {.lex_state = 503}, - [7157] = {.lex_state = 660}, - [7158] = {.lex_state = 603}, - [7159] = {.lex_state = 685}, - [7160] = {.lex_state = 666}, - [7161] = {.lex_state = 503}, - [7162] = {.lex_state = 666}, - [7163] = {.lex_state = 503}, - [7164] = {.lex_state = 503}, - [7165] = {.lex_state = 666}, - [7166] = {.lex_state = 503}, - [7167] = {.lex_state = 685}, - [7168] = {.lex_state = 603}, - [7169] = {.lex_state = 666}, - [7170] = {.lex_state = 503}, - [7171] = {.lex_state = 603}, - [7172] = {.lex_state = 666}, - [7173] = {.lex_state = 660}, - [7174] = {.lex_state = 603}, - [7175] = {.lex_state = 603}, - [7176] = {.lex_state = 603}, - [7177] = {.lex_state = 503}, - [7178] = {.lex_state = 603}, - [7179] = {.lex_state = 261}, - [7180] = {.lex_state = 666}, - [7181] = {.lex_state = 261}, - [7182] = {.lex_state = 261}, - [7183] = {.lex_state = 261}, - [7184] = {.lex_state = 261}, - [7185] = {.lex_state = 686}, - [7186] = {.lex_state = 261}, - [7187] = {.lex_state = 261}, - [7188] = {.lex_state = 261}, - [7189] = {.lex_state = 261}, - [7190] = {.lex_state = 686}, - [7191] = {.lex_state = 261}, - [7192] = {.lex_state = 261}, - [7193] = {.lex_state = 666}, - [7194] = {.lex_state = 261}, - [7195] = {.lex_state = 261}, - [7196] = {.lex_state = 261}, - [7197] = {.lex_state = 261}, - [7198] = {.lex_state = 727}, - [7199] = {.lex_state = 715}, - [7200] = {.lex_state = 622}, - [7201] = {.lex_state = 666}, - [7202] = {.lex_state = 666}, - [7203] = {.lex_state = 261}, - [7204] = {.lex_state = 261}, - [7205] = {.lex_state = 666}, - [7206] = {.lex_state = 686}, - [7207] = {.lex_state = 261}, - [7208] = {.lex_state = 261}, - [7209] = {.lex_state = 261}, - [7210] = {.lex_state = 261}, - [7211] = {.lex_state = 656}, - [7212] = {.lex_state = 715}, - [7213] = {.lex_state = 686}, - [7214] = {.lex_state = 603}, - [7215] = {.lex_state = 727}, - [7216] = {.lex_state = 715}, - [7217] = {.lex_state = 261}, - [7218] = {.lex_state = 261}, - [7219] = {.lex_state = 261}, - [7220] = {.lex_state = 686}, - [7221] = {.lex_state = 261}, - [7222] = {.lex_state = 261}, - [7223] = {.lex_state = 715}, - [7224] = {.lex_state = 261}, - [7225] = {.lex_state = 261}, - [7226] = {.lex_state = 686}, - [7227] = {.lex_state = 261}, - [7228] = {.lex_state = 686}, - [7229] = {.lex_state = 261}, - [7230] = {.lex_state = 261}, - [7231] = {.lex_state = 686}, - [7232] = {.lex_state = 261}, - [7233] = {.lex_state = 261}, - [7234] = {.lex_state = 261}, - [7235] = {.lex_state = 261}, - [7236] = {.lex_state = 656}, - [7237] = {.lex_state = 261}, - [7238] = {.lex_state = 656}, - [7239] = {.lex_state = 603}, - [7240] = {.lex_state = 656}, - [7241] = {.lex_state = 666}, - [7242] = {.lex_state = 720}, - [7243] = {.lex_state = 720}, - [7244] = {.lex_state = 729}, - [7245] = {.lex_state = 720}, - [7246] = {.lex_state = 1061}, - [7247] = {.lex_state = 720}, - [7248] = {.lex_state = 720}, - [7249] = {.lex_state = 720}, - [7250] = {.lex_state = 720}, - [7251] = {.lex_state = 720}, - [7252] = {.lex_state = 1061}, - [7253] = {.lex_state = 661}, - [7254] = {.lex_state = 729}, - [7255] = {.lex_state = 1061}, - [7256] = {.lex_state = 1061}, - [7257] = {.lex_state = 1061}, - [7258] = {.lex_state = 1061}, - [7259] = {.lex_state = 661}, - [7260] = {.lex_state = 1061}, - [7261] = {.lex_state = 661}, - [7262] = {.lex_state = 661}, - [7263] = {.lex_state = 661}, - [7264] = {.lex_state = 727}, - [7265] = {.lex_state = 661}, - [7266] = {.lex_state = 1061}, - [7267] = {.lex_state = 727}, - [7268] = {.lex_state = 1061}, - [7269] = {.lex_state = 720}, - [7270] = {.lex_state = 727}, - [7271] = {.lex_state = 709}, - [7272] = {.lex_state = 727}, - [7273] = {.lex_state = 727}, - [7274] = {.lex_state = 727}, - [7275] = {.lex_state = 727}, - [7276] = {.lex_state = 1061}, - [7277] = {.lex_state = 709}, - [7278] = {.lex_state = 727}, - [7279] = {.lex_state = 709}, - [7280] = {.lex_state = 727}, - [7281] = {.lex_state = 1061}, - [7282] = {.lex_state = 720}, - [7283] = {.lex_state = 1061}, - [7284] = {.lex_state = 661}, - [7285] = {.lex_state = 709}, - [7286] = {.lex_state = 709}, - [7287] = {.lex_state = 1061}, - [7288] = {.lex_state = 1061}, - [7289] = {.lex_state = 727}, - [7290] = {.lex_state = 727}, - [7291] = {.lex_state = 709}, - [7292] = {.lex_state = 709}, - [7293] = {.lex_state = 727}, - [7294] = {.lex_state = 1061}, - [7295] = {.lex_state = 727}, - [7296] = {.lex_state = 727}, - [7297] = {.lex_state = 727}, - [7298] = {.lex_state = 727}, - [7299] = {.lex_state = 709}, - [7300] = {.lex_state = 709}, - [7301] = {.lex_state = 661}, - [7302] = {.lex_state = 709}, - [7303] = {.lex_state = 1061}, - [7304] = {.lex_state = 709}, - [7305] = {.lex_state = 656}, - [7306] = {.lex_state = 1061}, - [7307] = {.lex_state = 709}, - [7308] = {.lex_state = 709}, - [7309] = {.lex_state = 1061}, - [7310] = {.lex_state = 727}, - [7311] = {.lex_state = 709}, - [7312] = {.lex_state = 709}, - [7313] = {.lex_state = 661}, - [7314] = {.lex_state = 1061}, - [7315] = {.lex_state = 709}, - [7316] = {.lex_state = 709}, - [7317] = {.lex_state = 709}, - [7318] = {.lex_state = 709}, - [7319] = {.lex_state = 709}, - [7320] = {.lex_state = 709}, - [7321] = {.lex_state = 1061}, - [7322] = {.lex_state = 709}, - [7323] = {.lex_state = 709}, - [7324] = {.lex_state = 727}, - [7325] = {.lex_state = 1061}, - [7326] = {.lex_state = 661}, - [7327] = {.lex_state = 661}, - [7328] = {.lex_state = 661}, - [7329] = {.lex_state = 661}, - [7330] = {.lex_state = 1061}, - [7331] = {.lex_state = 1061}, - [7332] = {.lex_state = 661}, - [7333] = {.lex_state = 727}, - [7334] = {.lex_state = 661}, - [7335] = {.lex_state = 727}, - [7336] = {.lex_state = 1061}, - [7337] = {.lex_state = 1061}, - [7338] = {.lex_state = 727}, - [7339] = {.lex_state = 729}, - [7340] = {.lex_state = 1061}, - [7341] = {.lex_state = 709}, - [7342] = {.lex_state = 699}, - [7343] = {.lex_state = 716}, - [7344] = {.lex_state = 716}, - [7345] = {.lex_state = 699}, - [7346] = {.lex_state = 720}, - [7347] = {.lex_state = 699}, - [7348] = {.lex_state = 709}, - [7349] = {.lex_state = 699}, - [7350] = {.lex_state = 685}, - [7351] = {.lex_state = 716}, - [7352] = {.lex_state = 709}, - [7353] = {.lex_state = 720}, - [7354] = {.lex_state = 660}, - [7355] = {.lex_state = 709}, - [7356] = {.lex_state = 699}, - [7357] = {.lex_state = 699}, - [7358] = {.lex_state = 699}, - [7359] = {.lex_state = 699}, - [7360] = {.lex_state = 716}, - [7361] = {.lex_state = 709}, - [7362] = {.lex_state = 640}, - [7363] = {.lex_state = 699}, - [7364] = {.lex_state = 716}, - [7365] = {.lex_state = 716}, - [7366] = {.lex_state = 716}, - [7367] = {.lex_state = 493}, - [7368] = {.lex_state = 685}, - [7369] = {.lex_state = 699}, - [7370] = {.lex_state = 685}, - [7371] = {.lex_state = 699}, - [7372] = {.lex_state = 716}, - [7373] = {.lex_state = 699}, - [7374] = {.lex_state = 685}, - [7375] = {.lex_state = 716}, - [7376] = {.lex_state = 685}, - [7377] = {.lex_state = 699}, - [7378] = {.lex_state = 720}, - [7379] = {.lex_state = 685}, - [7380] = {.lex_state = 685}, - [7381] = {.lex_state = 720}, - [7382] = {.lex_state = 709}, - [7383] = {.lex_state = 709}, - [7384] = {.lex_state = 716}, - [7385] = {.lex_state = 660}, - [7386] = {.lex_state = 729}, - [7387] = {.lex_state = 716}, - [7388] = {.lex_state = 660}, - [7389] = {.lex_state = 703}, - [7390] = {.lex_state = 660}, - [7391] = {.lex_state = 720}, - [7392] = {.lex_state = 716}, - [7393] = {.lex_state = 660}, - [7394] = {.lex_state = 716}, - [7395] = {.lex_state = 720}, - [7396] = {.lex_state = 660}, - [7397] = {.lex_state = 716}, - [7398] = {.lex_state = 640}, - [7399] = {.lex_state = 699}, - [7400] = {.lex_state = 699}, - [7401] = {.lex_state = 699}, - [7402] = {.lex_state = 716}, - [7403] = {.lex_state = 699}, - [7404] = {.lex_state = 716}, - [7405] = {.lex_state = 716}, - [7406] = {.lex_state = 660}, - [7407] = {.lex_state = 716}, - [7408] = {.lex_state = 720}, - [7409] = {.lex_state = 699}, - [7410] = {.lex_state = 720}, - [7411] = {.lex_state = 709}, - [7412] = {.lex_state = 720}, - [7413] = {.lex_state = 716}, - [7414] = {.lex_state = 709}, - [7415] = {.lex_state = 720}, - [7416] = {.lex_state = 716}, - [7417] = {.lex_state = 716}, - [7418] = {.lex_state = 716}, - [7419] = {.lex_state = 640}, - [7420] = {.lex_state = 716}, - [7421] = {.lex_state = 720}, - [7422] = {.lex_state = 720}, - [7423] = {.lex_state = 666}, - [7424] = {.lex_state = 493}, - [7425] = {.lex_state = 705}, - [7426] = {.lex_state = 493}, - [7427] = {.lex_state = 1046}, - [7428] = {.lex_state = 1061}, - [7429] = {.lex_state = 666}, - [7430] = {.lex_state = 1046}, - [7431] = {.lex_state = 1046}, - [7432] = {.lex_state = 729}, - [7433] = {.lex_state = 493}, - [7434] = {.lex_state = 1046}, - [7435] = {.lex_state = 686}, - [7436] = {.lex_state = 1046}, - [7437] = {.lex_state = 1046}, - [7438] = {.lex_state = 686}, - [7439] = {.lex_state = 686}, - [7440] = {.lex_state = 1046}, - [7441] = {.lex_state = 493}, - [7442] = {.lex_state = 686}, - [7443] = {.lex_state = 686}, - [7444] = {.lex_state = 720}, - [7445] = {.lex_state = 1061}, - [7446] = {.lex_state = 1046}, - [7447] = {.lex_state = 493}, - [7448] = {.lex_state = 1061}, - [7449] = {.lex_state = 686}, - [7450] = {.lex_state = 720}, - [7451] = {.lex_state = 686}, - [7452] = {.lex_state = 704}, - [7453] = {.lex_state = 1046}, - [7454] = {.lex_state = 1061}, - [7455] = {.lex_state = 666}, - [7456] = {.lex_state = 1046}, - [7457] = {.lex_state = 1061}, - [7458] = {.lex_state = 493}, - [7459] = {.lex_state = 1046}, - [7460] = {.lex_state = 720}, - [7461] = {.lex_state = 1046}, - [7462] = {.lex_state = 720}, - [7463] = {.lex_state = 1061}, - [7464] = {.lex_state = 720}, - [7465] = {.lex_state = 493}, - [7466] = {.lex_state = 720}, - [7467] = {.lex_state = 720}, - [7468] = {.lex_state = 720}, - [7469] = {.lex_state = 1046}, - [7470] = {.lex_state = 720}, - [7471] = {.lex_state = 656}, - [7472] = {.lex_state = 720}, - [7473] = {.lex_state = 493}, - [7474] = {.lex_state = 1046}, - [7475] = {.lex_state = 705}, - [7476] = {.lex_state = 1046}, - [7477] = {.lex_state = 720}, - [7478] = {.lex_state = 1061}, - [7479] = {.lex_state = 720}, - [7480] = {.lex_state = 493}, - [7481] = {.lex_state = 1061}, - [7482] = {.lex_state = 1046}, - [7483] = {.lex_state = 720}, - [7484] = {.lex_state = 656}, - [7485] = {.lex_state = 1046}, - [7486] = {.lex_state = 720}, - [7487] = {.lex_state = 712}, - [7488] = {.lex_state = 1046}, - [7489] = {.lex_state = 704}, - [7490] = {.lex_state = 1061}, - [7491] = {.lex_state = 720}, - [7492] = {.lex_state = 493}, - [7493] = {.lex_state = 1046}, - [7494] = {.lex_state = 493}, - [7495] = {.lex_state = 720}, - [7496] = {.lex_state = 1046}, - [7497] = {.lex_state = 720}, - [7498] = {.lex_state = 704}, - [7499] = {.lex_state = 493}, - [7500] = {.lex_state = 1046}, - [7501] = {.lex_state = 704}, - [7502] = {.lex_state = 1046}, - [7503] = {.lex_state = 1046}, - [7504] = {.lex_state = 493}, - [7505] = {.lex_state = 720}, - [7506] = {.lex_state = 720}, - [7507] = {.lex_state = 1061}, - [7508] = {.lex_state = 1046}, - [7509] = {.lex_state = 493}, - [7510] = {.lex_state = 493}, - [7511] = {.lex_state = 1046}, - [7512] = {.lex_state = 1046}, - [7513] = {.lex_state = 704}, - [7514] = {.lex_state = 640}, - [7515] = {.lex_state = 640}, - [7516] = {.lex_state = 666}, - [7517] = {.lex_state = 666}, - [7518] = {.lex_state = 666}, - [7519] = {.lex_state = 640}, - [7520] = {.lex_state = 720}, - [7521] = {.lex_state = 667}, - [7522] = {.lex_state = 640}, - [7523] = {.lex_state = 666}, - [7524] = {.lex_state = 720}, - [7525] = {.lex_state = 666}, - [7526] = {.lex_state = 640}, - [7527] = {.lex_state = 640}, - [7528] = {.lex_state = 640}, - [7529] = {.lex_state = 640}, - [7530] = {.lex_state = 666}, - [7531] = {.lex_state = 640}, - [7532] = {.lex_state = 666}, - [7533] = {.lex_state = 640}, - [7534] = {.lex_state = 537}, - [7535] = {.lex_state = 720}, - [7536] = {.lex_state = 654}, - [7537] = {.lex_state = 667}, - [7538] = {.lex_state = 640}, - [7539] = {.lex_state = 537}, - [7540] = {.lex_state = 640}, - [7541] = {.lex_state = 640}, - [7542] = {.lex_state = 704}, - [7543] = {.lex_state = 666}, - [7544] = {.lex_state = 640}, - [7545] = {.lex_state = 666}, - [7546] = {.lex_state = 666}, - [7547] = {.lex_state = 666}, - [7548] = {.lex_state = 640}, - [7549] = {.lex_state = 640}, - [7550] = {.lex_state = 640}, - [7551] = {.lex_state = 640}, - [7552] = {.lex_state = 654}, - [7553] = {.lex_state = 720}, - [7554] = {.lex_state = 640}, - [7555] = {.lex_state = 640}, - [7556] = {.lex_state = 640}, - [7557] = {.lex_state = 654}, - [7558] = {.lex_state = 640}, - [7559] = {.lex_state = 640}, - [7560] = {.lex_state = 666}, - [7561] = {.lex_state = 666}, - [7562] = {.lex_state = 537}, - [7563] = {.lex_state = 666}, - [7564] = {.lex_state = 667}, - [7565] = {.lex_state = 640}, - [7566] = {.lex_state = 654}, - [7567] = {.lex_state = 640}, - [7568] = {.lex_state = 720}, - [7569] = {.lex_state = 704}, - [7570] = {.lex_state = 640}, - [7571] = {.lex_state = 640}, - [7572] = {.lex_state = 640}, - [7573] = {.lex_state = 720}, - [7574] = {.lex_state = 640}, - [7575] = {.lex_state = 728}, - [7576] = {.lex_state = 640}, - [7577] = {.lex_state = 640}, - [7578] = {.lex_state = 640}, - [7579] = {.lex_state = 640}, - [7580] = {.lex_state = 666}, - [7581] = {.lex_state = 702}, - [7582] = {.lex_state = 666}, - [7583] = {.lex_state = 666}, - [7584] = {.lex_state = 666}, - [7585] = {.lex_state = 640}, - [7586] = {.lex_state = 666}, - [7587] = {.lex_state = 654}, - [7588] = {.lex_state = 666}, - [7589] = {.lex_state = 666}, - [7590] = {.lex_state = 667}, - [7591] = {.lex_state = 667}, - [7592] = {.lex_state = 702}, - [7593] = {.lex_state = 704}, - [7594] = {.lex_state = 537}, - [7595] = {.lex_state = 666}, - [7596] = {.lex_state = 702}, - [7597] = {.lex_state = 537}, - [7598] = {.lex_state = 666}, - [7599] = {.lex_state = 537}, - [7600] = {.lex_state = 640}, - [7601] = {.lex_state = 666}, - [7602] = {.lex_state = 537}, - [7603] = {.lex_state = 537}, - [7604] = {.lex_state = 704}, - [7605] = {.lex_state = 720}, - [7606] = {.lex_state = 713}, - [7607] = {.lex_state = 654}, - [7608] = {.lex_state = 704}, - [7609] = {.lex_state = 654}, - [7610] = {.lex_state = 1061}, - [7611] = {.lex_state = 1061}, - [7612] = {.lex_state = 654}, - [7613] = {.lex_state = 654}, - [7614] = {.lex_state = 654}, - [7615] = {.lex_state = 654}, - [7616] = {.lex_state = 654}, - [7617] = {.lex_state = 713}, - [7618] = {.lex_state = 654}, - [7619] = {.lex_state = 654}, - [7620] = {.lex_state = 704}, - [7621] = {.lex_state = 704}, - [7622] = {.lex_state = 654}, - [7623] = {.lex_state = 704}, - [7624] = {.lex_state = 654}, - [7625] = {.lex_state = 654}, - [7626] = {.lex_state = 654}, - [7627] = {.lex_state = 654}, - [7628] = {.lex_state = 654}, - [7629] = {.lex_state = 704}, - [7630] = {.lex_state = 0}, - [7631] = {.lex_state = 654}, - [7632] = {.lex_state = 704}, - [7633] = {.lex_state = 704}, - [7634] = {.lex_state = 704}, - [7635] = {.lex_state = 654}, - [7636] = {.lex_state = 493}, - [7637] = {.lex_state = 704}, - [7638] = {.lex_state = 713}, - [7639] = {.lex_state = 0}, - [7640] = {.lex_state = 654}, - [7641] = {.lex_state = 704}, - [7642] = {.lex_state = 1061}, - [7643] = {.lex_state = 654}, - [7644] = {.lex_state = 654}, - [7645] = {.lex_state = 654}, - [7646] = {.lex_state = 654}, - [7647] = {.lex_state = 654}, - [7648] = {.lex_state = 654}, - [7649] = {.lex_state = 0}, - [7650] = {.lex_state = 654}, - [7651] = {.lex_state = 0}, - [7652] = {.lex_state = 704}, - [7653] = {.lex_state = 0}, - [7654] = {.lex_state = 654}, - [7655] = {.lex_state = 654}, - [7656] = {.lex_state = 654}, - [7657] = {.lex_state = 654}, - [7658] = {.lex_state = 654}, - [7659] = {.lex_state = 704}, - [7660] = {.lex_state = 0}, - [7661] = {.lex_state = 704}, - [7662] = {.lex_state = 654}, - [7663] = {.lex_state = 0}, - [7664] = {.lex_state = 704}, - [7665] = {.lex_state = 704}, - [7666] = {.lex_state = 640}, - [7667] = {.lex_state = 654}, - [7668] = {.lex_state = 1061}, - [7669] = {.lex_state = 654}, - [7670] = {.lex_state = 654}, - [7671] = {.lex_state = 704}, - [7672] = {.lex_state = 654}, - [7673] = {.lex_state = 654}, - [7674] = {.lex_state = 654}, - [7675] = {.lex_state = 1061}, - [7676] = {.lex_state = 0}, - [7677] = {.lex_state = 704}, - [7678] = {.lex_state = 654}, - [7679] = {.lex_state = 654}, - [7680] = {.lex_state = 654}, - [7681] = {.lex_state = 654}, - [7682] = {.lex_state = 640}, - [7683] = {.lex_state = 1061}, - [7684] = {.lex_state = 640}, - [7685] = {.lex_state = 704}, - [7686] = {.lex_state = 0}, - [7687] = {.lex_state = 654}, - [7688] = {.lex_state = 654}, - [7689] = {.lex_state = 640}, - [7690] = {.lex_state = 654}, - [7691] = {.lex_state = 704}, - [7692] = {.lex_state = 704}, - [7693] = {.lex_state = 704}, - [7694] = {.lex_state = 654}, - [7695] = {.lex_state = 654}, - [7696] = {.lex_state = 654}, - [7697] = {.lex_state = 1061}, - [7698] = {.lex_state = 704}, - [7699] = {.lex_state = 654}, - [7700] = {.lex_state = 654}, - [7701] = {.lex_state = 654}, - [7702] = {.lex_state = 666}, - [7703] = {.lex_state = 667}, - [7704] = {.lex_state = 666}, - [7705] = {.lex_state = 666}, - [7706] = {.lex_state = 654}, - [7707] = {.lex_state = 622}, - [7708] = {.lex_state = 666}, - [7709] = {.lex_state = 712}, - [7710] = {.lex_state = 622}, - [7711] = {.lex_state = 667}, - [7712] = {.lex_state = 654}, - [7713] = {.lex_state = 666}, - [7714] = {.lex_state = 654}, - [7715] = {.lex_state = 667}, - [7716] = {.lex_state = 666}, - [7717] = {.lex_state = 666}, - [7718] = {.lex_state = 666}, - [7719] = {.lex_state = 666}, - [7720] = {.lex_state = 654}, - [7721] = {.lex_state = 654}, - [7722] = {.lex_state = 654}, - [7723] = {.lex_state = 666}, - [7724] = {.lex_state = 654}, - [7725] = {.lex_state = 666}, - [7726] = {.lex_state = 728}, - [7727] = {.lex_state = 666}, - [7728] = {.lex_state = 537}, - [7729] = {.lex_state = 666}, - [7730] = {.lex_state = 537}, - [7731] = {.lex_state = 537}, - [7732] = {.lex_state = 666}, - [7733] = {.lex_state = 654}, - [7734] = {.lex_state = 537}, - [7735] = {.lex_state = 537}, - [7736] = {.lex_state = 537}, - [7737] = {.lex_state = 666}, - [7738] = {.lex_state = 537}, - [7739] = {.lex_state = 537}, - [7740] = {.lex_state = 537}, - [7741] = {.lex_state = 666}, - [7742] = {.lex_state = 537}, - [7743] = {.lex_state = 666}, - [7744] = {.lex_state = 666}, - [7745] = {.lex_state = 666}, - [7746] = {.lex_state = 654}, - [7747] = {.lex_state = 666}, - [7748] = {.lex_state = 666}, - [7749] = {.lex_state = 666}, - [7750] = {.lex_state = 712}, - [7751] = {.lex_state = 654}, - [7752] = {.lex_state = 666}, - [7753] = {.lex_state = 666}, - [7754] = {.lex_state = 666}, - [7755] = {.lex_state = 666}, - [7756] = {.lex_state = 654}, - [7757] = {.lex_state = 666}, - [7758] = {.lex_state = 666}, - [7759] = {.lex_state = 0}, - [7760] = {.lex_state = 654}, - [7761] = {.lex_state = 666}, - [7762] = {.lex_state = 1044}, - [7763] = {.lex_state = 659}, - [7764] = {.lex_state = 1044}, - [7765] = {.lex_state = 666}, - [7766] = {.lex_state = 666}, - [7767] = {.lex_state = 666}, - [7768] = {.lex_state = 659}, - [7769] = {.lex_state = 667}, - [7770] = {.lex_state = 654}, - [7771] = {.lex_state = 667}, - [7772] = {.lex_state = 654}, - [7773] = {.lex_state = 700}, - [7774] = {.lex_state = 659}, - [7775] = {.lex_state = 667}, - [7776] = {.lex_state = 656}, - [7777] = {.lex_state = 666}, - [7778] = {.lex_state = 657}, - [7779] = {.lex_state = 700}, - [7780] = {.lex_state = 667}, - [7781] = {.lex_state = 656}, - [7782] = {.lex_state = 656}, - [7783] = {.lex_state = 656}, - [7784] = {.lex_state = 1044}, - [7785] = {.lex_state = 666}, - [7786] = {.lex_state = 654}, - [7787] = {.lex_state = 654}, - [7788] = {.lex_state = 657}, - [7789] = {.lex_state = 656}, - [7790] = {.lex_state = 659}, - [7791] = {.lex_state = 656}, - [7792] = {.lex_state = 656}, - [7793] = {.lex_state = 656}, - [7794] = {.lex_state = 656}, - [7795] = {.lex_state = 654}, - [7796] = {.lex_state = 715}, - [7797] = {.lex_state = 667}, - [7798] = {.lex_state = 1044}, - [7799] = {.lex_state = 666}, - [7800] = {.lex_state = 667}, - [7801] = {.lex_state = 667}, - [7802] = {.lex_state = 654}, - [7803] = {.lex_state = 666}, - [7804] = {.lex_state = 700}, - [7805] = {.lex_state = 654}, - [7806] = {.lex_state = 654}, - [7807] = {.lex_state = 667}, - [7808] = {.lex_state = 666}, - [7809] = {.lex_state = 714}, - [7810] = {.lex_state = 654}, - [7811] = {.lex_state = 654}, - [7812] = {.lex_state = 666}, - [7813] = {.lex_state = 654}, - [7814] = {.lex_state = 1046}, - [7815] = {.lex_state = 656}, - [7816] = {.lex_state = 666}, - [7817] = {.lex_state = 1044}, - [7818] = {.lex_state = 666}, - [7819] = {.lex_state = 666}, - [7820] = {.lex_state = 1059}, - [7821] = {.lex_state = 667}, - [7822] = {.lex_state = 628}, - [7823] = {.lex_state = 1044}, - [7824] = {.lex_state = 656}, - [7825] = {.lex_state = 666}, - [7826] = {.lex_state = 628}, - [7827] = {.lex_state = 1046}, - [7828] = {.lex_state = 1044}, - [7829] = {.lex_state = 666}, - [7830] = {.lex_state = 667}, - [7831] = {.lex_state = 666}, - [7832] = {.lex_state = 667}, - [7833] = {.lex_state = 656}, - [7834] = {.lex_state = 654}, - [7835] = {.lex_state = 667}, - [7836] = {.lex_state = 666}, - [7837] = {.lex_state = 656}, - [7838] = {.lex_state = 654}, - [7839] = {.lex_state = 666}, - [7840] = {.lex_state = 667}, - [7841] = {.lex_state = 1044}, - [7842] = {.lex_state = 667}, - [7843] = {.lex_state = 666}, - [7844] = {.lex_state = 666}, - [7845] = {.lex_state = 531}, - [7846] = {.lex_state = 666}, - [7847] = {.lex_state = 666}, - [7848] = {.lex_state = 654}, - [7849] = {.lex_state = 656}, - [7850] = {.lex_state = 666}, - [7851] = {.lex_state = 1059}, - [7852] = {.lex_state = 537}, - [7853] = {.lex_state = 666}, - [7854] = {.lex_state = 537}, - [7855] = {.lex_state = 1059}, - [7856] = {.lex_state = 537}, - [7857] = {.lex_state = 537}, - [7858] = {.lex_state = 537}, - [7859] = {.lex_state = 537}, - [7860] = {.lex_state = 537}, - [7861] = {.lex_state = 657}, - [7862] = {.lex_state = 666}, - [7863] = {.lex_state = 656}, - [7864] = {.lex_state = 656}, - [7865] = {.lex_state = 666}, - [7866] = {.lex_state = 666}, - [7867] = {.lex_state = 666}, - [7868] = {.lex_state = 666}, - [7869] = {.lex_state = 1059}, - [7870] = {.lex_state = 667}, - [7871] = {.lex_state = 666}, - [7872] = {.lex_state = 656}, - [7873] = {.lex_state = 666}, - [7874] = {.lex_state = 657}, - [7875] = {.lex_state = 666}, - [7876] = {.lex_state = 666}, - [7877] = {.lex_state = 715}, - [7878] = {.lex_state = 666}, - [7879] = {.lex_state = 666}, - [7880] = {.lex_state = 715}, - [7881] = {.lex_state = 666}, - [7882] = {.lex_state = 666}, - [7883] = {.lex_state = 666}, - [7884] = {.lex_state = 666}, - [7885] = {.lex_state = 666}, - [7886] = {.lex_state = 666}, - [7887] = {.lex_state = 641}, - [7888] = {.lex_state = 641}, - [7889] = {.lex_state = 666}, - [7890] = {.lex_state = 654}, - [7891] = {.lex_state = 666}, - [7892] = {.lex_state = 657}, - [7893] = {.lex_state = 666}, - [7894] = {.lex_state = 1051}, - [7895] = {.lex_state = 1051}, - [7896] = {.lex_state = 666}, - [7897] = {.lex_state = 531}, - [7898] = {.lex_state = 666}, - [7899] = {.lex_state = 666}, - [7900] = {.lex_state = 1051}, - [7901] = {.lex_state = 1051}, - [7902] = {.lex_state = 666}, - [7903] = {.lex_state = 666}, - [7904] = {.lex_state = 666}, - [7905] = {.lex_state = 666}, - [7906] = {.lex_state = 666}, - [7907] = {.lex_state = 666}, - [7908] = {.lex_state = 666}, - [7909] = {.lex_state = 666}, - [7910] = {.lex_state = 666}, - [7911] = {.lex_state = 666}, - [7912] = {.lex_state = 661}, - [7913] = {.lex_state = 641}, - [7914] = {.lex_state = 666}, - [7915] = {.lex_state = 666}, - [7916] = {.lex_state = 666}, - [7917] = {.lex_state = 666}, - [7918] = {.lex_state = 666}, - [7919] = {.lex_state = 666}, - [7920] = {.lex_state = 666}, - [7921] = {.lex_state = 1051}, - [7922] = {.lex_state = 666}, - [7923] = {.lex_state = 666}, - [7924] = {.lex_state = 1059}, - [7925] = {.lex_state = 714}, - [7926] = {.lex_state = 666}, - [7927] = {.lex_state = 714}, - [7928] = {.lex_state = 714}, - [7929] = {.lex_state = 641}, - [7930] = {.lex_state = 1051}, - [7931] = {.lex_state = 666}, - [7932] = {.lex_state = 666}, - [7933] = {.lex_state = 666}, - [7934] = {.lex_state = 666}, - [7935] = {.lex_state = 666}, - [7936] = {.lex_state = 666}, - [7937] = {.lex_state = 666}, - [7938] = {.lex_state = 666}, - [7939] = {.lex_state = 641}, - [7940] = {.lex_state = 666}, - [7941] = {.lex_state = 666}, - [7942] = {.lex_state = 666}, - [7943] = {.lex_state = 1051}, - [7944] = {.lex_state = 666}, - [7945] = {.lex_state = 1044}, - [7946] = {.lex_state = 657}, - [7947] = {.lex_state = 659}, - [7948] = {.lex_state = 659}, - [7949] = {.lex_state = 657}, - [7950] = {.lex_state = 1059}, - [7951] = {.lex_state = 1044}, - [7952] = {.lex_state = 659}, - [7953] = {.lex_state = 656}, - [7954] = {.lex_state = 659}, - [7955] = {.lex_state = 659}, - [7956] = {.lex_state = 1044}, - [7957] = {.lex_state = 659}, - [7958] = {.lex_state = 659}, - [7959] = {.lex_state = 656}, - [7960] = {.lex_state = 1044}, - [7961] = {.lex_state = 659}, - [7962] = {.lex_state = 1059}, - [7963] = {.lex_state = 1044}, - [7964] = {.lex_state = 1044}, - [7965] = {.lex_state = 1044}, - [7966] = {.lex_state = 1044}, - [7967] = {.lex_state = 659}, - [7968] = {.lex_state = 657}, - [7969] = {.lex_state = 1059}, - [7970] = {.lex_state = 1059}, - [7971] = {.lex_state = 493}, - [7972] = {.lex_state = 717}, - [7973] = {.lex_state = 657}, - [7974] = {.lex_state = 1046}, - [7975] = {.lex_state = 493}, - [7976] = {.lex_state = 657}, - [7977] = {.lex_state = 656}, - [7978] = {.lex_state = 1044}, - [7979] = {.lex_state = 1059}, - [7980] = {.lex_state = 1044}, - [7981] = {.lex_state = 1044}, - [7982] = {.lex_state = 1044}, - [7983] = {.lex_state = 1044}, - [7984] = {.lex_state = 659}, - [7985] = {.lex_state = 659}, - [7986] = {.lex_state = 659}, - [7987] = {.lex_state = 1044}, - [7988] = {.lex_state = 659}, - [7989] = {.lex_state = 657}, - [7990] = {.lex_state = 659}, - [7991] = {.lex_state = 657}, - [7992] = {.lex_state = 656}, - [7993] = {.lex_state = 659}, - [7994] = {.lex_state = 657}, - [7995] = {.lex_state = 1044}, - [7996] = {.lex_state = 1044}, - [7997] = {.lex_state = 659}, - [7998] = {.lex_state = 1044}, - [7999] = {.lex_state = 659}, - [8000] = {.lex_state = 1059}, - [8001] = {.lex_state = 657}, - [8002] = {.lex_state = 661}, - [8003] = {.lex_state = 656}, - [8004] = {.lex_state = 661}, - [8005] = {.lex_state = 661}, - [8006] = {.lex_state = 656}, - [8007] = {.lex_state = 1044}, - [8008] = {.lex_state = 493}, - [8009] = {.lex_state = 656}, - [8010] = {.lex_state = 1044}, - [8011] = {.lex_state = 493}, - [8012] = {.lex_state = 661}, - [8013] = {.lex_state = 1044}, - [8014] = {.lex_state = 656}, - [8015] = {.lex_state = 656}, - [8016] = {.lex_state = 657}, - [8017] = {.lex_state = 1061}, - [8018] = {.lex_state = 493}, - [8019] = {.lex_state = 657}, - [8020] = {.lex_state = 493}, - [8021] = {.lex_state = 1044}, - [8022] = {.lex_state = 656}, - [8023] = {.lex_state = 661}, - [8024] = {.lex_state = 1044}, - [8025] = {.lex_state = 1061}, - [8026] = {.lex_state = 661}, - [8027] = {.lex_state = 1061}, - [8028] = {.lex_state = 654}, - [8029] = {.lex_state = 656}, - [8030] = {.lex_state = 1044}, - [8031] = {.lex_state = 493}, - [8032] = {.lex_state = 656}, - [8033] = {.lex_state = 656}, - [8034] = {.lex_state = 1044}, - [8035] = {.lex_state = 493}, - [8036] = {.lex_state = 656}, - [8037] = {.lex_state = 493}, - [8038] = {.lex_state = 656}, - [8039] = {.lex_state = 656}, - [8040] = {.lex_state = 1044}, - [8041] = {.lex_state = 661}, - [8042] = {.lex_state = 656}, - [8043] = {.lex_state = 659}, - [8044] = {.lex_state = 654}, - [8045] = {.lex_state = 654}, - [8046] = {.lex_state = 656}, - [8047] = {.lex_state = 661}, - [8048] = {.lex_state = 659}, - [8049] = {.lex_state = 656}, - [8050] = {.lex_state = 493}, - [8051] = {.lex_state = 654}, - [8052] = {.lex_state = 493}, - [8053] = {.lex_state = 711}, - [8054] = {.lex_state = 656}, - [8055] = {.lex_state = 656}, - [8056] = {.lex_state = 654}, - [8057] = {.lex_state = 711}, - [8058] = {.lex_state = 656}, - [8059] = {.lex_state = 657}, - [8060] = {.lex_state = 711}, - [8061] = {.lex_state = 711}, - [8062] = {.lex_state = 711}, - [8063] = {.lex_state = 0}, - [8064] = {.lex_state = 654}, - [8065] = {.lex_state = 657}, - [8066] = {.lex_state = 654}, - [8067] = {.lex_state = 711}, - [8068] = {.lex_state = 654}, - [8069] = {.lex_state = 656}, - [8070] = {.lex_state = 656}, - [8071] = {.lex_state = 654}, - [8072] = {.lex_state = 711}, - [8073] = {.lex_state = 531}, - [8074] = {.lex_state = 711}, - [8075] = {.lex_state = 711}, - [8076] = {.lex_state = 656}, - [8077] = {.lex_state = 0}, - [8078] = {.lex_state = 711}, - [8079] = {.lex_state = 711}, - [8080] = {.lex_state = 1044}, - [8081] = {.lex_state = 654}, - [8082] = {.lex_state = 654}, - [8083] = {.lex_state = 711}, - [8084] = {.lex_state = 711}, - [8085] = {.lex_state = 656}, - [8086] = {.lex_state = 711}, - [8087] = {.lex_state = 656}, - [8088] = {.lex_state = 656}, - [8089] = {.lex_state = 711}, - [8090] = {.lex_state = 711}, - [8091] = {.lex_state = 656}, - [8092] = {.lex_state = 654}, - [8093] = {.lex_state = 711}, - [8094] = {.lex_state = 711}, - [8095] = {.lex_state = 711}, - [8096] = {.lex_state = 656}, - [8097] = {.lex_state = 656}, - [8098] = {.lex_state = 711}, - [8099] = {.lex_state = 654}, - [8100] = {.lex_state = 656}, - [8101] = {.lex_state = 711}, - [8102] = {.lex_state = 656}, - [8103] = {.lex_state = 654}, - [8104] = {.lex_state = 659}, - [8105] = {.lex_state = 656}, - [8106] = {.lex_state = 657}, - [8107] = {.lex_state = 711}, - [8108] = {.lex_state = 711}, - [8109] = {.lex_state = 654}, - [8110] = {.lex_state = 656}, - [8111] = {.lex_state = 654}, - [8112] = {.lex_state = 656}, - [8113] = {.lex_state = 656}, - [8114] = {.lex_state = 657}, - [8115] = {.lex_state = 656}, - [8116] = {.lex_state = 654}, - [8117] = {.lex_state = 656}, - [8118] = {.lex_state = 711}, - [8119] = {.lex_state = 656}, - [8120] = {.lex_state = 0}, - [8121] = {.lex_state = 656}, - [8122] = {.lex_state = 711}, - [8123] = {.lex_state = 711}, - [8124] = {.lex_state = 656}, - [8125] = {.lex_state = 711}, - [8126] = {.lex_state = 531}, - [8127] = {.lex_state = 531}, - [8128] = {.lex_state = 531}, - [8129] = {.lex_state = 531}, - [8130] = {.lex_state = 531}, - [8131] = {.lex_state = 531}, - [8132] = {.lex_state = 531}, - [8133] = {.lex_state = 531}, - [8134] = {.lex_state = 531}, - [8135] = {.lex_state = 531}, - [8136] = {.lex_state = 531}, - [8137] = {.lex_state = 1044}, - [8138] = {.lex_state = 1044}, - [8139] = {.lex_state = 493}, - [8140] = {.lex_state = 493}, - [8141] = {.lex_state = 1044}, - [8142] = {.lex_state = 656}, - [8143] = {.lex_state = 531}, - [8144] = {.lex_state = 531}, - [8145] = {.lex_state = 531}, - [8146] = {.lex_state = 531}, - [8147] = {.lex_state = 531}, - [8148] = {.lex_state = 531}, - [8149] = {.lex_state = 531}, - [8150] = {.lex_state = 531}, - [8151] = {.lex_state = 531}, - [8152] = {.lex_state = 531}, - [8153] = {.lex_state = 531}, - [8154] = {.lex_state = 531}, - [8155] = {.lex_state = 531}, - [8156] = {.lex_state = 531}, - [8157] = {.lex_state = 531}, - [8158] = {.lex_state = 531}, - [8159] = {.lex_state = 537}, - [8160] = {.lex_state = 656}, - [8161] = {.lex_state = 656}, - [8162] = {.lex_state = 1044}, - [8163] = {.lex_state = 493}, - [8164] = {.lex_state = 656}, - [8165] = {.lex_state = 666}, - [8166] = {.lex_state = 657}, - [8167] = {.lex_state = 659}, - [8168] = {.lex_state = 656}, - [8169] = {.lex_state = 656}, - [8170] = {.lex_state = 1044}, - [8171] = {.lex_state = 656}, - [8172] = {.lex_state = 657}, - [8173] = {.lex_state = 656}, - [8174] = {.lex_state = 493}, - [8175] = {.lex_state = 656}, - [8176] = {.lex_state = 657}, - [8177] = {.lex_state = 1044}, - [8178] = {.lex_state = 531}, - [8179] = {.lex_state = 656}, - [8180] = {.lex_state = 537}, - [8181] = {.lex_state = 531}, - [8182] = {.lex_state = 531}, - [8183] = {.lex_state = 531}, - [8184] = {.lex_state = 531}, - [8185] = {.lex_state = 286}, - [8186] = {.lex_state = 288}, - [8187] = {.lex_state = 531}, - [8188] = {.lex_state = 666}, - [8189] = {.lex_state = 289}, - [8190] = {.lex_state = 1044}, - [8191] = {.lex_state = 1044}, - [8192] = {.lex_state = 286}, - [8193] = {.lex_state = 1046}, - [8194] = {.lex_state = 288}, - [8195] = {.lex_state = 286}, - [8196] = {.lex_state = 1046}, - [8197] = {.lex_state = 531}, - [8198] = {.lex_state = 657}, - [8199] = {.lex_state = 1044}, - [8200] = {.lex_state = 1046}, - [8201] = {.lex_state = 493}, - [8202] = {.lex_state = 531}, - [8203] = {.lex_state = 1046}, - [8204] = {.lex_state = 1046}, - [8205] = {.lex_state = 1044}, - [8206] = {.lex_state = 657}, - [8207] = {.lex_state = 286}, - [8208] = {.lex_state = 493}, - [8209] = {.lex_state = 531}, - [8210] = {.lex_state = 531}, - [8211] = {.lex_state = 531}, - [8212] = {.lex_state = 656}, - [8213] = {.lex_state = 493}, - [8214] = {.lex_state = 531}, - [8215] = {.lex_state = 289}, - [8216] = {.lex_state = 493}, - [8217] = {.lex_state = 493}, - [8218] = {.lex_state = 1044}, - [8219] = {.lex_state = 1044}, - [8220] = {.lex_state = 286}, - [8221] = {.lex_state = 1044}, - [8222] = {.lex_state = 493}, - [8223] = {.lex_state = 1046}, - [8224] = {.lex_state = 1046}, - [8225] = {.lex_state = 288}, - [8226] = {.lex_state = 286}, - [8227] = {.lex_state = 1044}, - [8228] = {.lex_state = 493}, - [8229] = {.lex_state = 531}, - [8230] = {.lex_state = 288}, - [8231] = {.lex_state = 286}, - [8232] = {.lex_state = 531}, - [8233] = {.lex_state = 531}, - [8234] = {.lex_state = 1046}, - [8235] = {.lex_state = 1044}, - [8236] = {.lex_state = 1044}, - [8237] = {.lex_state = 493}, - [8238] = {.lex_state = 531}, - [8239] = {.lex_state = 531}, - [8240] = {.lex_state = 493}, - [8241] = {.lex_state = 531}, - [8242] = {.lex_state = 1044}, - [8243] = {.lex_state = 1044}, - [8244] = {.lex_state = 493}, - [8245] = {.lex_state = 656}, - [8246] = {.lex_state = 656}, - [8247] = {.lex_state = 286}, - [8248] = {.lex_state = 656}, - [8249] = {.lex_state = 1044}, - [8250] = {.lex_state = 1046}, - [8251] = {.lex_state = 288}, - [8252] = {.lex_state = 286}, - [8253] = {.lex_state = 531}, - [8254] = {.lex_state = 1044}, - [8255] = {.lex_state = 493}, - [8256] = {.lex_state = 531}, - [8257] = {.lex_state = 656}, - [8258] = {.lex_state = 1046}, - [8259] = {.lex_state = 1044}, - [8260] = {.lex_state = 493}, - [8261] = {.lex_state = 531}, - [8262] = {.lex_state = 531}, - [8263] = {.lex_state = 1044}, - [8264] = {.lex_state = 493}, - [8265] = {.lex_state = 531}, - [8266] = {.lex_state = 1046}, - [8267] = {.lex_state = 286}, - [8268] = {.lex_state = 1044}, - [8269] = {.lex_state = 1044}, - [8270] = {.lex_state = 1046}, - [8271] = {.lex_state = 1046}, - [8272] = {.lex_state = 657}, - [8273] = {.lex_state = 288}, - [8274] = {.lex_state = 286}, - [8275] = {.lex_state = 493}, - [8276] = {.lex_state = 1044}, - [8277] = {.lex_state = 493}, - [8278] = {.lex_state = 531}, - [8279] = {.lex_state = 1046}, - [8280] = {.lex_state = 531}, - [8281] = {.lex_state = 1046}, - [8282] = {.lex_state = 1044}, - [8283] = {.lex_state = 493}, - [8284] = {.lex_state = 493}, - [8285] = {.lex_state = 531}, - [8286] = {.lex_state = 531}, - [8287] = {.lex_state = 493}, - [8288] = {.lex_state = 531}, - [8289] = {.lex_state = 531}, - [8290] = {.lex_state = 531}, - [8291] = {.lex_state = 286}, - [8292] = {.lex_state = 1046}, - [8293] = {.lex_state = 288}, - [8294] = {.lex_state = 286}, - [8295] = {.lex_state = 1044}, - [8296] = {.lex_state = 1046}, - [8297] = {.lex_state = 493}, - [8298] = {.lex_state = 1046}, - [8299] = {.lex_state = 656}, - [8300] = {.lex_state = 1044}, - [8301] = {.lex_state = 493}, - [8302] = {.lex_state = 493}, - [8303] = {.lex_state = 493}, - [8304] = {.lex_state = 531}, - [8305] = {.lex_state = 1046}, - [8306] = {.lex_state = 286}, - [8307] = {.lex_state = 1046}, - [8308] = {.lex_state = 1046}, - [8309] = {.lex_state = 288}, - [8310] = {.lex_state = 286}, - [8311] = {.lex_state = 1044}, - [8312] = {.lex_state = 493}, - [8313] = {.lex_state = 1046}, - [8314] = {.lex_state = 1044}, - [8315] = {.lex_state = 1044}, - [8316] = {.lex_state = 1046}, - [8317] = {.lex_state = 657}, - [8318] = {.lex_state = 493}, - [8319] = {.lex_state = 493}, - [8320] = {.lex_state = 286}, - [8321] = {.lex_state = 1044}, - [8322] = {.lex_state = 656}, - [8323] = {.lex_state = 1046}, - [8324] = {.lex_state = 288}, - [8325] = {.lex_state = 286}, - [8326] = {.lex_state = 1044}, - [8327] = {.lex_state = 493}, - [8328] = {.lex_state = 1046}, - [8329] = {.lex_state = 1044}, - [8330] = {.lex_state = 493}, - [8331] = {.lex_state = 493}, - [8332] = {.lex_state = 493}, - [8333] = {.lex_state = 286}, - [8334] = {.lex_state = 1044}, - [8335] = {.lex_state = 531}, - [8336] = {.lex_state = 1046}, - [8337] = {.lex_state = 288}, - [8338] = {.lex_state = 286}, - [8339] = {.lex_state = 1046}, - [8340] = {.lex_state = 1044}, - [8341] = {.lex_state = 286}, - [8342] = {.lex_state = 286}, - [8343] = {.lex_state = 531}, - [8344] = {.lex_state = 286}, - [8345] = {.lex_state = 1044}, - [8346] = {.lex_state = 289}, - [8347] = {.lex_state = 286}, - [8348] = {.lex_state = 286}, - [8349] = {.lex_state = 1044}, - [8350] = {.lex_state = 1044}, - [8351] = {.lex_state = 286}, - [8352] = {.lex_state = 286}, - [8353] = {.lex_state = 656}, - [8354] = {.lex_state = 1049}, - [8355] = {.lex_state = 1044}, - [8356] = {.lex_state = 1046}, - [8357] = {.lex_state = 286}, - [8358] = {.lex_state = 286}, - [8359] = {.lex_state = 288}, - [8360] = {.lex_state = 286}, - [8361] = {.lex_state = 656}, - [8362] = {.lex_state = 1046}, - [8363] = {.lex_state = 1044}, - [8364] = {.lex_state = 1044}, - [8365] = {.lex_state = 286}, - [8366] = {.lex_state = 286}, - [8367] = {.lex_state = 1044}, - [8368] = {.lex_state = 1044}, - [8369] = {.lex_state = 286}, - [8370] = {.lex_state = 286}, - [8371] = {.lex_state = 1044}, - [8372] = {.lex_state = 286}, - [8373] = {.lex_state = 286}, - [8374] = {.lex_state = 1044}, - [8375] = {.lex_state = 1044}, - [8376] = {.lex_state = 286}, - [8377] = {.lex_state = 1044}, - [8378] = {.lex_state = 286}, - [8379] = {.lex_state = 1044}, - [8380] = {.lex_state = 286}, - [8381] = {.lex_state = 286}, - [8382] = {.lex_state = 1044}, - [8383] = {.lex_state = 1044}, - [8384] = {.lex_state = 1044}, - [8385] = {.lex_state = 1046}, - [8386] = {.lex_state = 493}, - [8387] = {.lex_state = 1044}, - [8388] = {.lex_state = 1046}, - [8389] = {.lex_state = 1044}, - [8390] = {.lex_state = 1044}, - [8391] = {.lex_state = 1044}, - [8392] = {.lex_state = 286}, - [8393] = {.lex_state = 1044}, - [8394] = {.lex_state = 1044}, - [8395] = {.lex_state = 531}, - [8396] = {.lex_state = 1044}, - [8397] = {.lex_state = 531}, - [8398] = {.lex_state = 1044}, - [8399] = {.lex_state = 1044}, - [8400] = {.lex_state = 1044}, - [8401] = {.lex_state = 656}, - [8402] = {.lex_state = 1044}, - [8403] = {.lex_state = 1044}, - [8404] = {.lex_state = 1044}, - [8405] = {.lex_state = 1044}, - [8406] = {.lex_state = 531}, - [8407] = {.lex_state = 656}, - [8408] = {.lex_state = 1046}, - [8409] = {.lex_state = 1044}, - [8410] = {.lex_state = 657}, - [8411] = {.lex_state = 1046}, - [8412] = {.lex_state = 289}, - [8413] = {.lex_state = 656}, - [8414] = {.lex_state = 656}, - [8415] = {.lex_state = 493}, - [8416] = {.lex_state = 1044}, - [8417] = {.lex_state = 531}, - [8418] = {.lex_state = 531}, - [8419] = {.lex_state = 286}, - [8420] = {.lex_state = 531}, - [8421] = {.lex_state = 493}, - [8422] = {.lex_state = 531}, - [8423] = {.lex_state = 1044}, - [8424] = {.lex_state = 289}, - [8425] = {.lex_state = 1044}, - [8426] = {.lex_state = 1044}, - [8427] = {.lex_state = 1044}, - [8428] = {.lex_state = 286}, - [8429] = {.lex_state = 1046}, - [8430] = {.lex_state = 656}, - [8431] = {.lex_state = 289}, - [8432] = {.lex_state = 1044}, - [8433] = {.lex_state = 1046}, - [8434] = {.lex_state = 1046}, - [8435] = {.lex_state = 1046}, - [8436] = {.lex_state = 288}, - [8437] = {.lex_state = 286}, - [8438] = {.lex_state = 1046}, - [8439] = {.lex_state = 288}, - [8440] = {.lex_state = 286}, - [8441] = {.lex_state = 656}, - [8442] = {.lex_state = 286}, - [8443] = {.lex_state = 1044}, - [8444] = {.lex_state = 1044}, - [8445] = {.lex_state = 493}, - [8446] = {.lex_state = 656}, - [8447] = {.lex_state = 531}, - [8448] = {.lex_state = 1044}, - [8449] = {.lex_state = 656}, - [8450] = {.lex_state = 1046}, - [8451] = {.lex_state = 656}, - [8452] = {.lex_state = 656}, - [8453] = {.lex_state = 493}, - [8454] = {.lex_state = 288}, - [8455] = {.lex_state = 659}, - [8456] = {.lex_state = 286}, - [8457] = {.lex_state = 1046}, - [8458] = {.lex_state = 1046}, - [8459] = {.lex_state = 1044}, - [8460] = {.lex_state = 657}, - [8461] = {.lex_state = 288}, - [8462] = {.lex_state = 1046}, - [8463] = {.lex_state = 493}, - [8464] = {.lex_state = 656}, - [8465] = {.lex_state = 531}, - [8466] = {.lex_state = 657}, - [8467] = {.lex_state = 493}, - [8468] = {.lex_state = 531}, - [8469] = {.lex_state = 1046}, - [8470] = {.lex_state = 531}, - [8471] = {.lex_state = 656}, - [8472] = {.lex_state = 1044}, - [8473] = {.lex_state = 1046}, - [8474] = {.lex_state = 656}, - [8475] = {.lex_state = 493}, - [8476] = {.lex_state = 289}, - [8477] = {.lex_state = 531}, - [8478] = {.lex_state = 493}, - [8479] = {.lex_state = 286}, - [8480] = {.lex_state = 1046}, - [8481] = {.lex_state = 656}, - [8482] = {.lex_state = 531}, - [8483] = {.lex_state = 1044}, - [8484] = {.lex_state = 493}, - [8485] = {.lex_state = 656}, - [8486] = {.lex_state = 711}, - [8487] = {.lex_state = 657}, - [8488] = {.lex_state = 286}, - [8489] = {.lex_state = 1046}, - [8490] = {.lex_state = 289}, - [8491] = {.lex_state = 1044}, - [8492] = {.lex_state = 1044}, - [8493] = {.lex_state = 1044}, - [8494] = {.lex_state = 493}, - [8495] = {.lex_state = 1044}, - [8496] = {.lex_state = 1044}, - [8497] = {.lex_state = 1046}, - [8498] = {.lex_state = 1046}, - [8499] = {.lex_state = 288}, - [8500] = {.lex_state = 1044}, - [8501] = {.lex_state = 286}, - [8502] = {.lex_state = 531}, - [8503] = {.lex_state = 657}, - [8504] = {.lex_state = 1044}, - [8505] = {.lex_state = 1044}, - [8506] = {.lex_state = 531}, - [8507] = {.lex_state = 493}, - [8508] = {.lex_state = 288}, - [8509] = {.lex_state = 531}, - [8510] = {.lex_state = 1044}, - [8511] = {.lex_state = 1044}, - [8512] = {.lex_state = 1044}, - [8513] = {.lex_state = 1044}, - [8514] = {.lex_state = 493}, - [8515] = {.lex_state = 1046}, - [8516] = {.lex_state = 1044}, - [8517] = {.lex_state = 1044}, - [8518] = {.lex_state = 1044}, - [8519] = {.lex_state = 1044}, - [8520] = {.lex_state = 1044}, - [8521] = {.lex_state = 657}, - [8522] = {.lex_state = 1044}, - [8523] = {.lex_state = 1044}, - [8524] = {.lex_state = 1044}, - [8525] = {.lex_state = 1044}, - [8526] = {.lex_state = 286}, - [8527] = {.lex_state = 1044}, - [8528] = {.lex_state = 1044}, - [8529] = {.lex_state = 493}, - [8530] = {.lex_state = 1044}, - [8531] = {.lex_state = 1044}, - [8532] = {.lex_state = 531}, - [8533] = {.lex_state = 531}, - [8534] = {.lex_state = 1044}, - [8535] = {.lex_state = 531}, - [8536] = {.lex_state = 531}, - [8537] = {.lex_state = 493}, - [8538] = {.lex_state = 531}, - [8539] = {.lex_state = 493}, - [8540] = {.lex_state = 656}, - [8541] = {.lex_state = 657}, - [8542] = {.lex_state = 531}, - [8543] = {.lex_state = 1044}, - [8544] = {.lex_state = 656}, - [8545] = {.lex_state = 1046}, - [8546] = {.lex_state = 286}, - [8547] = {.lex_state = 289}, - [8548] = {.lex_state = 1044}, - [8549] = {.lex_state = 493}, - [8550] = {.lex_state = 656}, - [8551] = {.lex_state = 531}, - [8552] = {.lex_state = 1046}, - [8553] = {.lex_state = 1046}, - [8554] = {.lex_state = 0}, - [8555] = {.lex_state = 0}, + [1] = {.lex_state = 499}, + [2] = {.lex_state = 499}, + [3] = {.lex_state = 499}, + [4] = {.lex_state = 499}, + [5] = {.lex_state = 499}, + [6] = {.lex_state = 499}, + [7] = {.lex_state = 499}, + [8] = {.lex_state = 499}, + [9] = {.lex_state = 499}, + [10] = {.lex_state = 499}, + [11] = {.lex_state = 499}, + [12] = {.lex_state = 499}, + [13] = {.lex_state = 499}, + [14] = {.lex_state = 499}, + [15] = {.lex_state = 499}, + [16] = {.lex_state = 273}, + [17] = {.lex_state = 273}, + [18] = {.lex_state = 273}, + [19] = {.lex_state = 273}, + [20] = {.lex_state = 273}, + [21] = {.lex_state = 273}, + [22] = {.lex_state = 273}, + [23] = {.lex_state = 273}, + [24] = {.lex_state = 273}, + [25] = {.lex_state = 273}, + [26] = {.lex_state = 273}, + [27] = {.lex_state = 273}, + [28] = {.lex_state = 273}, + [29] = {.lex_state = 273}, + [30] = {.lex_state = 273}, + [31] = {.lex_state = 273}, + [32] = {.lex_state = 273}, + [33] = {.lex_state = 273}, + [34] = {.lex_state = 273}, + [35] = {.lex_state = 273}, + [36] = {.lex_state = 277}, + [37] = {.lex_state = 277}, + [38] = {.lex_state = 277}, + [39] = {.lex_state = 277}, + [40] = {.lex_state = 277}, + [41] = {.lex_state = 277}, + [42] = {.lex_state = 277}, + [43] = {.lex_state = 277}, + [44] = {.lex_state = 277}, + [45] = {.lex_state = 277}, + [46] = {.lex_state = 277}, + [47] = {.lex_state = 277}, + [48] = {.lex_state = 277}, + [49] = {.lex_state = 277}, + [50] = {.lex_state = 277}, + [51] = {.lex_state = 277}, + [52] = {.lex_state = 273}, + [53] = {.lex_state = 277}, + [54] = {.lex_state = 499}, + [55] = {.lex_state = 499}, + [56] = {.lex_state = 276}, + [57] = {.lex_state = 499}, + [58] = {.lex_state = 499}, + [59] = {.lex_state = 499}, + [60] = {.lex_state = 499}, + [61] = {.lex_state = 499}, + [62] = {.lex_state = 499}, + [63] = {.lex_state = 499}, + [64] = {.lex_state = 499}, + [65] = {.lex_state = 499}, + [66] = {.lex_state = 276}, + [67] = {.lex_state = 499}, + [68] = {.lex_state = 499}, + [69] = {.lex_state = 499}, + [70] = {.lex_state = 499}, + [71] = {.lex_state = 499}, + [72] = {.lex_state = 276}, + [73] = {.lex_state = 499}, + [74] = {.lex_state = 499}, + [75] = {.lex_state = 499}, + [76] = {.lex_state = 499}, + [77] = {.lex_state = 499}, + [78] = {.lex_state = 499}, + [79] = {.lex_state = 499}, + [80] = {.lex_state = 499}, + [81] = {.lex_state = 499}, + [82] = {.lex_state = 499}, + [83] = {.lex_state = 499}, + [84] = {.lex_state = 499}, + [85] = {.lex_state = 499}, + [86] = {.lex_state = 499}, + [87] = {.lex_state = 499}, + [88] = {.lex_state = 499}, + [89] = {.lex_state = 499}, + [90] = {.lex_state = 499}, + [91] = {.lex_state = 499}, + [92] = {.lex_state = 499}, + [93] = {.lex_state = 499}, + [94] = {.lex_state = 499}, + [95] = {.lex_state = 499}, + [96] = {.lex_state = 499}, + [97] = {.lex_state = 499}, + [98] = {.lex_state = 499}, + [99] = {.lex_state = 499}, + [100] = {.lex_state = 499}, + [101] = {.lex_state = 499}, + [102] = {.lex_state = 499}, + [103] = {.lex_state = 499}, + [104] = {.lex_state = 499}, + [105] = {.lex_state = 499}, + [106] = {.lex_state = 499}, + [107] = {.lex_state = 499}, + [108] = {.lex_state = 499}, + [109] = {.lex_state = 499}, + [110] = {.lex_state = 499}, + [111] = {.lex_state = 499}, + [112] = {.lex_state = 499}, + [113] = {.lex_state = 499}, + [114] = {.lex_state = 499}, + [115] = {.lex_state = 499}, + [116] = {.lex_state = 499}, + [117] = {.lex_state = 499}, + [118] = {.lex_state = 273}, + [119] = {.lex_state = 273}, + [120] = {.lex_state = 273}, + [121] = {.lex_state = 273}, + [122] = {.lex_state = 273}, + [123] = {.lex_state = 277}, + [124] = {.lex_state = 277}, + [125] = {.lex_state = 277}, + [126] = {.lex_state = 277}, + [127] = {.lex_state = 277}, + [128] = {.lex_state = 276}, + [129] = {.lex_state = 499}, + [130] = {.lex_state = 499}, + [131] = {.lex_state = 499}, + [132] = {.lex_state = 499}, + [133] = {.lex_state = 499}, + [134] = {.lex_state = 499}, + [135] = {.lex_state = 499}, + [136] = {.lex_state = 499}, + [137] = {.lex_state = 499}, + [138] = {.lex_state = 499}, + [139] = {.lex_state = 276}, + [140] = {.lex_state = 276}, + [141] = {.lex_state = 276}, + [142] = {.lex_state = 276}, + [143] = {.lex_state = 275}, + [144] = {.lex_state = 275}, + [145] = {.lex_state = 275}, + [146] = {.lex_state = 275}, + [147] = {.lex_state = 275}, + [148] = {.lex_state = 275}, + [149] = {.lex_state = 275}, + [150] = {.lex_state = 275}, + [151] = {.lex_state = 275}, + [152] = {.lex_state = 275}, + [153] = {.lex_state = 275}, + [154] = {.lex_state = 275}, + [155] = {.lex_state = 275}, + [156] = {.lex_state = 275}, + [157] = {.lex_state = 275}, + [158] = {.lex_state = 275}, + [159] = {.lex_state = 275}, + [160] = {.lex_state = 275}, + [161] = {.lex_state = 275}, + [162] = {.lex_state = 275}, + [163] = {.lex_state = 275}, + [164] = {.lex_state = 275}, + [165] = {.lex_state = 275}, + [166] = {.lex_state = 275}, + [167] = {.lex_state = 275}, + [168] = {.lex_state = 258}, + [169] = {.lex_state = 258}, + [170] = {.lex_state = 265}, + [171] = {.lex_state = 265}, + [172] = {.lex_state = 496}, + [173] = {.lex_state = 496}, + [174] = {.lex_state = 260}, + [175] = {.lex_state = 275}, + [176] = {.lex_state = 260}, + [177] = {.lex_state = 496}, + [178] = {.lex_state = 496}, + [179] = {.lex_state = 278}, + [180] = {.lex_state = 278}, + [181] = {.lex_state = 278}, + [182] = {.lex_state = 496}, + [183] = {.lex_state = 497}, + [184] = {.lex_state = 497}, + [185] = {.lex_state = 499}, + [186] = {.lex_state = 499}, + [187] = {.lex_state = 275}, + [188] = {.lex_state = 263}, + [189] = {.lex_state = 275}, + [190] = {.lex_state = 275}, + [191] = {.lex_state = 275}, + [192] = {.lex_state = 275}, + [193] = {.lex_state = 275}, + [194] = {.lex_state = 275}, + [195] = {.lex_state = 275}, + [196] = {.lex_state = 275}, + [197] = {.lex_state = 275}, + [198] = {.lex_state = 275}, + [199] = {.lex_state = 275}, + [200] = {.lex_state = 275}, + [201] = {.lex_state = 275}, + [202] = {.lex_state = 497}, + [203] = {.lex_state = 275}, + [204] = {.lex_state = 275}, + [205] = {.lex_state = 275}, + [206] = {.lex_state = 275}, + [207] = {.lex_state = 266}, + [208] = {.lex_state = 275}, + [209] = {.lex_state = 275}, + [210] = {.lex_state = 275}, + [211] = {.lex_state = 275}, + [212] = {.lex_state = 275}, + [213] = {.lex_state = 275}, + [214] = {.lex_state = 275}, + [215] = {.lex_state = 275}, + [216] = {.lex_state = 275}, + [217] = {.lex_state = 275}, + [218] = {.lex_state = 275}, + [219] = {.lex_state = 275}, + [220] = {.lex_state = 275}, + [221] = {.lex_state = 275}, + [222] = {.lex_state = 275}, + [223] = {.lex_state = 275}, + [224] = {.lex_state = 275}, + [225] = {.lex_state = 275}, + [226] = {.lex_state = 275}, + [227] = {.lex_state = 275}, + [228] = {.lex_state = 275}, + [229] = {.lex_state = 275}, + [230] = {.lex_state = 275}, + [231] = {.lex_state = 275}, + [232] = {.lex_state = 275}, + [233] = {.lex_state = 275}, + [234] = {.lex_state = 275}, + [235] = {.lex_state = 275}, + [236] = {.lex_state = 275}, + [237] = {.lex_state = 275}, + [238] = {.lex_state = 275}, + [239] = {.lex_state = 275}, + [240] = {.lex_state = 275}, + [241] = {.lex_state = 275}, + [242] = {.lex_state = 275}, + [243] = {.lex_state = 275}, + [244] = {.lex_state = 275}, + [245] = {.lex_state = 275}, + [246] = {.lex_state = 275}, + [247] = {.lex_state = 275}, + [248] = {.lex_state = 275}, + [249] = {.lex_state = 275}, + [250] = {.lex_state = 275}, + [251] = {.lex_state = 275}, + [252] = {.lex_state = 275}, + [253] = {.lex_state = 275}, + [254] = {.lex_state = 275}, + [255] = {.lex_state = 275}, + [256] = {.lex_state = 275}, + [257] = {.lex_state = 275}, + [258] = {.lex_state = 275}, + [259] = {.lex_state = 275}, + [260] = {.lex_state = 267}, + [261] = {.lex_state = 497}, + [262] = {.lex_state = 268}, + [263] = {.lex_state = 273}, + [264] = {.lex_state = 266}, + [265] = {.lex_state = 279}, + [266] = {.lex_state = 279}, + [267] = {.lex_state = 279}, + [268] = {.lex_state = 273}, + [269] = {.lex_state = 279}, + [270] = {.lex_state = 279}, + [271] = {.lex_state = 279}, + [272] = {.lex_state = 279}, + [273] = {.lex_state = 279}, + [274] = {.lex_state = 279}, + [275] = {.lex_state = 279}, + [276] = {.lex_state = 279}, + [277] = {.lex_state = 279}, + [278] = {.lex_state = 279}, + [279] = {.lex_state = 279}, + [280] = {.lex_state = 279}, + [281] = {.lex_state = 279}, + [282] = {.lex_state = 279}, + [283] = {.lex_state = 279}, + [284] = {.lex_state = 279}, + [285] = {.lex_state = 279}, + [286] = {.lex_state = 279}, + [287] = {.lex_state = 279}, + [288] = {.lex_state = 279}, + [289] = {.lex_state = 279}, + [290] = {.lex_state = 279}, + [291] = {.lex_state = 279}, + [292] = {.lex_state = 279}, + [293] = {.lex_state = 279}, + [294] = {.lex_state = 279}, + [295] = {.lex_state = 279}, + [296] = {.lex_state = 279}, + [297] = {.lex_state = 279}, + [298] = {.lex_state = 279}, + [299] = {.lex_state = 279}, + [300] = {.lex_state = 273}, + [301] = {.lex_state = 273}, + [302] = {.lex_state = 273}, + [303] = {.lex_state = 273}, + [304] = {.lex_state = 273}, + [305] = {.lex_state = 277}, + [306] = {.lex_state = 273}, + [307] = {.lex_state = 273}, + [308] = {.lex_state = 277}, + [309] = {.lex_state = 273}, + [310] = {.lex_state = 277}, + [311] = {.lex_state = 273}, + [312] = {.lex_state = 273}, + [313] = {.lex_state = 273}, + [314] = {.lex_state = 273}, + [315] = {.lex_state = 273}, + [316] = {.lex_state = 273}, + [317] = {.lex_state = 273}, + [318] = {.lex_state = 273}, + [319] = {.lex_state = 273}, + [320] = {.lex_state = 273}, + [321] = {.lex_state = 273}, + [322] = {.lex_state = 277}, + [323] = {.lex_state = 273}, + [324] = {.lex_state = 273}, + [325] = {.lex_state = 275}, + [326] = {.lex_state = 273}, + [327] = {.lex_state = 273}, + [328] = {.lex_state = 273}, + [329] = {.lex_state = 273}, + [330] = {.lex_state = 273}, + [331] = {.lex_state = 273}, + [332] = {.lex_state = 273}, + [333] = {.lex_state = 273}, + [334] = {.lex_state = 273}, + [335] = {.lex_state = 275}, + [336] = {.lex_state = 273}, + [337] = {.lex_state = 273}, + [338] = {.lex_state = 273}, + [339] = {.lex_state = 273}, + [340] = {.lex_state = 279}, + [341] = {.lex_state = 273}, + [342] = {.lex_state = 273}, + [343] = {.lex_state = 273}, + [344] = {.lex_state = 275}, + [345] = {.lex_state = 273}, + [346] = {.lex_state = 273}, + [347] = {.lex_state = 319}, + [348] = {.lex_state = 499}, + [349] = {.lex_state = 273}, + [350] = {.lex_state = 319}, + [351] = {.lex_state = 319}, + [352] = {.lex_state = 273}, + [353] = {.lex_state = 319}, + [354] = {.lex_state = 319}, + [355] = {.lex_state = 279}, + [356] = {.lex_state = 273}, + [357] = {.lex_state = 273}, + [358] = {.lex_state = 319}, + [359] = {.lex_state = 279}, + [360] = {.lex_state = 277}, + [361] = {.lex_state = 273}, + [362] = {.lex_state = 273}, + [363] = {.lex_state = 319}, + [364] = {.lex_state = 273}, + [365] = {.lex_state = 273}, + [366] = {.lex_state = 273}, + [367] = {.lex_state = 279}, + [368] = {.lex_state = 319}, + [369] = {.lex_state = 319}, + [370] = {.lex_state = 277}, + [371] = {.lex_state = 276}, + [372] = {.lex_state = 319}, + [373] = {.lex_state = 319}, + [374] = {.lex_state = 273}, + [375] = {.lex_state = 279}, + [376] = {.lex_state = 273}, + [377] = {.lex_state = 273}, + [378] = {.lex_state = 273}, + [379] = {.lex_state = 499}, + [380] = {.lex_state = 276}, + [381] = {.lex_state = 273}, + [382] = {.lex_state = 279}, + [383] = {.lex_state = 273}, + [384] = {.lex_state = 273}, + [385] = {.lex_state = 273}, + [386] = {.lex_state = 273}, + [387] = {.lex_state = 279}, + [388] = {.lex_state = 273}, + [389] = {.lex_state = 273}, + [390] = {.lex_state = 273}, + [391] = {.lex_state = 273}, + [392] = {.lex_state = 279}, + [393] = {.lex_state = 273}, + [394] = {.lex_state = 273}, + [395] = {.lex_state = 279}, + [396] = {.lex_state = 273}, + [397] = {.lex_state = 279}, + [398] = {.lex_state = 273}, + [399] = {.lex_state = 273}, + [400] = {.lex_state = 279}, + [401] = {.lex_state = 273}, + [402] = {.lex_state = 279}, + [403] = {.lex_state = 273}, + [404] = {.lex_state = 273}, + [405] = {.lex_state = 273}, + [406] = {.lex_state = 279}, + [407] = {.lex_state = 279}, + [408] = {.lex_state = 273}, + [409] = {.lex_state = 273}, + [410] = {.lex_state = 279}, + [411] = {.lex_state = 273}, + [412] = {.lex_state = 273}, + [413] = {.lex_state = 279}, + [414] = {.lex_state = 273}, + [415] = {.lex_state = 273}, + [416] = {.lex_state = 279}, + [417] = {.lex_state = 273}, + [418] = {.lex_state = 279}, + [419] = {.lex_state = 273}, + [420] = {.lex_state = 273}, + [421] = {.lex_state = 279}, + [422] = {.lex_state = 273}, + [423] = {.lex_state = 279}, + [424] = {.lex_state = 273}, + [425] = {.lex_state = 279}, + [426] = {.lex_state = 273}, + [427] = {.lex_state = 273}, + [428] = {.lex_state = 279}, + [429] = {.lex_state = 273}, + [430] = {.lex_state = 273}, + [431] = {.lex_state = 279}, + [432] = {.lex_state = 273}, + [433] = {.lex_state = 273}, + [434] = {.lex_state = 273}, + [435] = {.lex_state = 273}, + [436] = {.lex_state = 273}, + [437] = {.lex_state = 319}, + [438] = {.lex_state = 319}, + [439] = {.lex_state = 499}, + [440] = {.lex_state = 319}, + [441] = {.lex_state = 319}, + [442] = {.lex_state = 273}, + [443] = {.lex_state = 273}, + [444] = {.lex_state = 273}, + [445] = {.lex_state = 273}, + [446] = {.lex_state = 277}, + [447] = {.lex_state = 277}, + [448] = {.lex_state = 499}, + [449] = {.lex_state = 273}, + [450] = {.lex_state = 273}, + [451] = {.lex_state = 279}, + [452] = {.lex_state = 277}, + [453] = {.lex_state = 319}, + [454] = {.lex_state = 273}, + [455] = {.lex_state = 273}, + [456] = {.lex_state = 277}, + [457] = {.lex_state = 277}, + [458] = {.lex_state = 277}, + [459] = {.lex_state = 499}, + [460] = {.lex_state = 277}, + [461] = {.lex_state = 276}, + [462] = {.lex_state = 277}, + [463] = {.lex_state = 277}, + [464] = {.lex_state = 277}, + [465] = {.lex_state = 277}, + [466] = {.lex_state = 277}, + [467] = {.lex_state = 277}, + [468] = {.lex_state = 277}, + [469] = {.lex_state = 277}, + [470] = {.lex_state = 277}, + [471] = {.lex_state = 277}, + [472] = {.lex_state = 277}, + [473] = {.lex_state = 277}, + [474] = {.lex_state = 278}, + [475] = {.lex_state = 277}, + [476] = {.lex_state = 277}, + [477] = {.lex_state = 277}, + [478] = {.lex_state = 499}, + [479] = {.lex_state = 279}, + [480] = {.lex_state = 277}, + [481] = {.lex_state = 277}, + [482] = {.lex_state = 277}, + [483] = {.lex_state = 277}, + [484] = {.lex_state = 275}, + [485] = {.lex_state = 277}, + [486] = {.lex_state = 277}, + [487] = {.lex_state = 277}, + [488] = {.lex_state = 276}, + [489] = {.lex_state = 277}, + [490] = {.lex_state = 277}, + [491] = {.lex_state = 277}, + [492] = {.lex_state = 277}, + [493] = {.lex_state = 278}, + [494] = {.lex_state = 277}, + [495] = {.lex_state = 277}, + [496] = {.lex_state = 277}, + [497] = {.lex_state = 277}, + [498] = {.lex_state = 277}, + [499] = {.lex_state = 277}, + [500] = {.lex_state = 277}, + [501] = {.lex_state = 276}, + [502] = {.lex_state = 277}, + [503] = {.lex_state = 277}, + [504] = {.lex_state = 277}, + [505] = {.lex_state = 277}, + [506] = {.lex_state = 277}, + [507] = {.lex_state = 277}, + [508] = {.lex_state = 277}, + [509] = {.lex_state = 277}, + [510] = {.lex_state = 277}, + [511] = {.lex_state = 276}, + [512] = {.lex_state = 277}, + [513] = {.lex_state = 277}, + [514] = {.lex_state = 277}, + [515] = {.lex_state = 277}, + [516] = {.lex_state = 277}, + [517] = {.lex_state = 277}, + [518] = {.lex_state = 277}, + [519] = {.lex_state = 276}, + [520] = {.lex_state = 277}, + [521] = {.lex_state = 277}, + [522] = {.lex_state = 277}, + [523] = {.lex_state = 277}, + [524] = {.lex_state = 277}, + [525] = {.lex_state = 277}, + [526] = {.lex_state = 277}, + [527] = {.lex_state = 277}, + [528] = {.lex_state = 277}, + [529] = {.lex_state = 276}, + [530] = {.lex_state = 276}, + [531] = {.lex_state = 499}, + [532] = {.lex_state = 499}, + [533] = {.lex_state = 499}, + [534] = {.lex_state = 499}, + [535] = {.lex_state = 277}, + [536] = {.lex_state = 277}, + [537] = {.lex_state = 499}, + [538] = {.lex_state = 277}, + [539] = {.lex_state = 277}, + [540] = {.lex_state = 277}, + [541] = {.lex_state = 277}, + [542] = {.lex_state = 277}, + [543] = {.lex_state = 277}, + [544] = {.lex_state = 277}, + [545] = {.lex_state = 277}, + [546] = {.lex_state = 277}, + [547] = {.lex_state = 277}, + [548] = {.lex_state = 277}, + [549] = {.lex_state = 277}, + [550] = {.lex_state = 277}, + [551] = {.lex_state = 277}, + [552] = {.lex_state = 277}, + [553] = {.lex_state = 277}, + [554] = {.lex_state = 277}, + [555] = {.lex_state = 277}, + [556] = {.lex_state = 277}, + [557] = {.lex_state = 277}, + [558] = {.lex_state = 277}, + [559] = {.lex_state = 277}, + [560] = {.lex_state = 277}, + [561] = {.lex_state = 499}, + [562] = {.lex_state = 499}, + [563] = {.lex_state = 277}, + [564] = {.lex_state = 277}, + [565] = {.lex_state = 277}, + [566] = {.lex_state = 277}, + [567] = {.lex_state = 499}, + [568] = {.lex_state = 276}, + [569] = {.lex_state = 499}, + [570] = {.lex_state = 499}, + [571] = {.lex_state = 276}, + [572] = {.lex_state = 276}, + [573] = {.lex_state = 276}, + [574] = {.lex_state = 276}, + [575] = {.lex_state = 499}, + [576] = {.lex_state = 276}, + [577] = {.lex_state = 276}, + [578] = {.lex_state = 499}, + [579] = {.lex_state = 276}, + [580] = {.lex_state = 499}, + [581] = {.lex_state = 499}, + [582] = {.lex_state = 276}, + [583] = {.lex_state = 276}, + [584] = {.lex_state = 319}, + [585] = {.lex_state = 276}, + [586] = {.lex_state = 276}, + [587] = {.lex_state = 276}, + [588] = {.lex_state = 499}, + [589] = {.lex_state = 499}, + [590] = {.lex_state = 499}, + [591] = {.lex_state = 499}, + [592] = {.lex_state = 499}, + [593] = {.lex_state = 499}, + [594] = {.lex_state = 499}, + [595] = {.lex_state = 499}, + [596] = {.lex_state = 383}, + [597] = {.lex_state = 499}, + [598] = {.lex_state = 383}, + [599] = {.lex_state = 499}, + [600] = {.lex_state = 499}, + [601] = {.lex_state = 499}, + [602] = {.lex_state = 499}, + [603] = {.lex_state = 499}, + [604] = {.lex_state = 499}, + [605] = {.lex_state = 499}, + [606] = {.lex_state = 383}, + [607] = {.lex_state = 383}, + [608] = {.lex_state = 499}, + [609] = {.lex_state = 499}, + [610] = {.lex_state = 499}, + [611] = {.lex_state = 276}, + [612] = {.lex_state = 499}, + [613] = {.lex_state = 499}, + [614] = {.lex_state = 499}, + [615] = {.lex_state = 383}, + [616] = {.lex_state = 383}, + [617] = {.lex_state = 499}, + [618] = {.lex_state = 499}, + [619] = {.lex_state = 499}, + [620] = {.lex_state = 499}, + [621] = {.lex_state = 499}, + [622] = {.lex_state = 499}, + [623] = {.lex_state = 383}, + [624] = {.lex_state = 276}, + [625] = {.lex_state = 499}, + [626] = {.lex_state = 499}, + [627] = {.lex_state = 499}, + [628] = {.lex_state = 499}, + [629] = {.lex_state = 499}, + [630] = {.lex_state = 499}, + [631] = {.lex_state = 383}, + [632] = {.lex_state = 383}, + [633] = {.lex_state = 383}, + [634] = {.lex_state = 383}, + [635] = {.lex_state = 383}, + [636] = {.lex_state = 383}, + [637] = {.lex_state = 383}, + [638] = {.lex_state = 499}, + [639] = {.lex_state = 499}, + [640] = {.lex_state = 276}, + [641] = {.lex_state = 276}, + [642] = {.lex_state = 499}, + [643] = {.lex_state = 499}, + [644] = {.lex_state = 499}, + [645] = {.lex_state = 499}, + [646] = {.lex_state = 499}, + [647] = {.lex_state = 499}, + [648] = {.lex_state = 499}, + [649] = {.lex_state = 499}, + [650] = {.lex_state = 276}, + [651] = {.lex_state = 276}, + [652] = {.lex_state = 276}, + [653] = {.lex_state = 499}, + [654] = {.lex_state = 499}, + [655] = {.lex_state = 276}, + [656] = {.lex_state = 499}, + [657] = {.lex_state = 276}, + [658] = {.lex_state = 276}, + [659] = {.lex_state = 499}, + [660] = {.lex_state = 276}, + [661] = {.lex_state = 499}, + [662] = {.lex_state = 499}, + [663] = {.lex_state = 499}, + [664] = {.lex_state = 499}, + [665] = {.lex_state = 276}, + [666] = {.lex_state = 276}, + [667] = {.lex_state = 276}, + [668] = {.lex_state = 499}, + [669] = {.lex_state = 499}, + [670] = {.lex_state = 276}, + [671] = {.lex_state = 499}, + [672] = {.lex_state = 276}, + [673] = {.lex_state = 276}, + [674] = {.lex_state = 276}, + [675] = {.lex_state = 499}, + [676] = {.lex_state = 276}, + [677] = {.lex_state = 499}, + [678] = {.lex_state = 499}, + [679] = {.lex_state = 499}, + [680] = {.lex_state = 276}, + [681] = {.lex_state = 276}, + [682] = {.lex_state = 499}, + [683] = {.lex_state = 499}, + [684] = {.lex_state = 499}, + [685] = {.lex_state = 499}, + [686] = {.lex_state = 499}, + [687] = {.lex_state = 276}, + [688] = {.lex_state = 276}, + [689] = {.lex_state = 276}, + [690] = {.lex_state = 276}, + [691] = {.lex_state = 499}, + [692] = {.lex_state = 499}, + [693] = {.lex_state = 276}, + [694] = {.lex_state = 276}, + [695] = {.lex_state = 276}, + [696] = {.lex_state = 276}, + [697] = {.lex_state = 276}, + [698] = {.lex_state = 276}, + [699] = {.lex_state = 499}, + [700] = {.lex_state = 276}, + [701] = {.lex_state = 499}, + [702] = {.lex_state = 499}, + [703] = {.lex_state = 499}, + [704] = {.lex_state = 499}, + [705] = {.lex_state = 276}, + [706] = {.lex_state = 276}, + [707] = {.lex_state = 499}, + [708] = {.lex_state = 276}, + [709] = {.lex_state = 499}, + [710] = {.lex_state = 499}, + [711] = {.lex_state = 276}, + [712] = {.lex_state = 276}, + [713] = {.lex_state = 276}, + [714] = {.lex_state = 276}, + [715] = {.lex_state = 499}, + [716] = {.lex_state = 499}, + [717] = {.lex_state = 276}, + [718] = {.lex_state = 499}, + [719] = {.lex_state = 276}, + [720] = {.lex_state = 276}, + [721] = {.lex_state = 276}, + [722] = {.lex_state = 499}, + [723] = {.lex_state = 276}, + [724] = {.lex_state = 499}, + [725] = {.lex_state = 276}, + [726] = {.lex_state = 276}, + [727] = {.lex_state = 276}, + [728] = {.lex_state = 276}, + [729] = {.lex_state = 499}, + [730] = {.lex_state = 276}, + [731] = {.lex_state = 276}, + [732] = {.lex_state = 276}, + [733] = {.lex_state = 276}, + [734] = {.lex_state = 276}, + [735] = {.lex_state = 499}, + [736] = {.lex_state = 276}, + [737] = {.lex_state = 276}, + [738] = {.lex_state = 499}, + [739] = {.lex_state = 276}, + [740] = {.lex_state = 499}, + [741] = {.lex_state = 498}, + [742] = {.lex_state = 499}, + [743] = {.lex_state = 276}, + [744] = {.lex_state = 276}, + [745] = {.lex_state = 276}, + [746] = {.lex_state = 499}, + [747] = {.lex_state = 499}, + [748] = {.lex_state = 499}, + [749] = {.lex_state = 499}, + [750] = {.lex_state = 499}, + [751] = {.lex_state = 499}, + [752] = {.lex_state = 499}, + [753] = {.lex_state = 276}, + [754] = {.lex_state = 499}, + [755] = {.lex_state = 499}, + [756] = {.lex_state = 499}, + [757] = {.lex_state = 499}, + [758] = {.lex_state = 276}, + [759] = {.lex_state = 499}, + [760] = {.lex_state = 276}, + [761] = {.lex_state = 499}, + [762] = {.lex_state = 499}, + [763] = {.lex_state = 499}, + [764] = {.lex_state = 499}, + [765] = {.lex_state = 499}, + [766] = {.lex_state = 499}, + [767] = {.lex_state = 276}, + [768] = {.lex_state = 499}, + [769] = {.lex_state = 499}, + [770] = {.lex_state = 499}, + [771] = {.lex_state = 499}, + [772] = {.lex_state = 499}, + [773] = {.lex_state = 499}, + [774] = {.lex_state = 276}, + [775] = {.lex_state = 276}, + [776] = {.lex_state = 276}, + [777] = {.lex_state = 276}, + [778] = {.lex_state = 499}, + [779] = {.lex_state = 276}, + [780] = {.lex_state = 499}, + [781] = {.lex_state = 499}, + [782] = {.lex_state = 499}, + [783] = {.lex_state = 499}, + [784] = {.lex_state = 499}, + [785] = {.lex_state = 276}, + [786] = {.lex_state = 276}, + [787] = {.lex_state = 276}, + [788] = {.lex_state = 276}, + [789] = {.lex_state = 276}, + [790] = {.lex_state = 276}, + [791] = {.lex_state = 276}, + [792] = {.lex_state = 276}, + [793] = {.lex_state = 276}, + [794] = {.lex_state = 276}, + [795] = {.lex_state = 499}, + [796] = {.lex_state = 499}, + [797] = {.lex_state = 499}, + [798] = {.lex_state = 499}, + [799] = {.lex_state = 499}, + [800] = {.lex_state = 498}, + [801] = {.lex_state = 499}, + [802] = {.lex_state = 499}, + [803] = {.lex_state = 383}, + [804] = {.lex_state = 264}, + [805] = {.lex_state = 381}, + [806] = {.lex_state = 499}, + [807] = {.lex_state = 379}, + [808] = {.lex_state = 499}, + [809] = {.lex_state = 499}, + [810] = {.lex_state = 499}, + [811] = {.lex_state = 381}, + [812] = {.lex_state = 379}, + [813] = {.lex_state = 379}, + [814] = {.lex_state = 499}, + [815] = {.lex_state = 379}, + [816] = {.lex_state = 499}, + [817] = {.lex_state = 379}, + [818] = {.lex_state = 379}, + [819] = {.lex_state = 499}, + [820] = {.lex_state = 499}, + [821] = {.lex_state = 499}, + [822] = {.lex_state = 379}, + [823] = {.lex_state = 499}, + [824] = {.lex_state = 499}, + [825] = {.lex_state = 499}, + [826] = {.lex_state = 379}, + [827] = {.lex_state = 499}, + [828] = {.lex_state = 499}, + [829] = {.lex_state = 499}, + [830] = {.lex_state = 379}, + [831] = {.lex_state = 499}, + [832] = {.lex_state = 499}, + [833] = {.lex_state = 379}, + [834] = {.lex_state = 381}, + [835] = {.lex_state = 379}, + [836] = {.lex_state = 499}, + [837] = {.lex_state = 379}, + [838] = {.lex_state = 499}, + [839] = {.lex_state = 499}, + [840] = {.lex_state = 499}, + [841] = {.lex_state = 379}, + [842] = {.lex_state = 499}, + [843] = {.lex_state = 499}, + [844] = {.lex_state = 379}, + [845] = {.lex_state = 499}, + [846] = {.lex_state = 379}, + [847] = {.lex_state = 379}, + [848] = {.lex_state = 499}, + [849] = {.lex_state = 379}, + [850] = {.lex_state = 499}, + [851] = {.lex_state = 379}, + [852] = {.lex_state = 379}, + [853] = {.lex_state = 499}, + [854] = {.lex_state = 379}, + [855] = {.lex_state = 379}, + [856] = {.lex_state = 499}, + [857] = {.lex_state = 499}, + [858] = {.lex_state = 379}, + [859] = {.lex_state = 379}, + [860] = {.lex_state = 499}, + [861] = {.lex_state = 499}, + [862] = {.lex_state = 499}, + [863] = {.lex_state = 499}, + [864] = {.lex_state = 379}, + [865] = {.lex_state = 499}, + [866] = {.lex_state = 499}, + [867] = {.lex_state = 499}, + [868] = {.lex_state = 379}, + [869] = {.lex_state = 499}, + [870] = {.lex_state = 499}, + [871] = {.lex_state = 499}, + [872] = {.lex_state = 379}, + [873] = {.lex_state = 499}, + [874] = {.lex_state = 379}, + [875] = {.lex_state = 499}, + [876] = {.lex_state = 499}, + [877] = {.lex_state = 499}, + [878] = {.lex_state = 499}, + [879] = {.lex_state = 499}, + [880] = {.lex_state = 499}, + [881] = {.lex_state = 499}, + [882] = {.lex_state = 499}, + [883] = {.lex_state = 499}, + [884] = {.lex_state = 499}, + [885] = {.lex_state = 499}, + [886] = {.lex_state = 499}, + [887] = {.lex_state = 379}, + [888] = {.lex_state = 379}, + [889] = {.lex_state = 499}, + [890] = {.lex_state = 499}, + [891] = {.lex_state = 498}, + [892] = {.lex_state = 499}, + [893] = {.lex_state = 499}, + [894] = {.lex_state = 499}, + [895] = {.lex_state = 499}, + [896] = {.lex_state = 499}, + [897] = {.lex_state = 498}, + [898] = {.lex_state = 269}, + [899] = {.lex_state = 270}, + [900] = {.lex_state = 498}, + [901] = {.lex_state = 498}, + [902] = {.lex_state = 271}, + [903] = {.lex_state = 271}, + [904] = {.lex_state = 499}, + [905] = {.lex_state = 499}, + [906] = {.lex_state = 387}, + [907] = {.lex_state = 387}, + [908] = {.lex_state = 387}, + [909] = {.lex_state = 387}, + [910] = {.lex_state = 387}, + [911] = {.lex_state = 387}, + [912] = {.lex_state = 387}, + [913] = {.lex_state = 387}, + [914] = {.lex_state = 387}, + [915] = {.lex_state = 279}, + [916] = {.lex_state = 279}, + [917] = {.lex_state = 279}, + [918] = {.lex_state = 387}, + [919] = {.lex_state = 499}, + [920] = {.lex_state = 279}, + [921] = {.lex_state = 387}, + [922] = {.lex_state = 387}, + [923] = {.lex_state = 279}, + [924] = {.lex_state = 279}, + [925] = {.lex_state = 279}, + [926] = {.lex_state = 279}, + [927] = {.lex_state = 387}, + [928] = {.lex_state = 387}, + [929] = {.lex_state = 279}, + [930] = {.lex_state = 279}, + [931] = {.lex_state = 279}, + [932] = {.lex_state = 279}, + [933] = {.lex_state = 279}, + [934] = {.lex_state = 279}, + [935] = {.lex_state = 279}, + [936] = {.lex_state = 279}, + [937] = {.lex_state = 279}, + [938] = {.lex_state = 279}, + [939] = {.lex_state = 279}, + [940] = {.lex_state = 387}, + [941] = {.lex_state = 279}, + [942] = {.lex_state = 279}, + [943] = {.lex_state = 387}, + [944] = {.lex_state = 279}, + [945] = {.lex_state = 387}, + [946] = {.lex_state = 279}, + [947] = {.lex_state = 279}, + [948] = {.lex_state = 387}, + [949] = {.lex_state = 279}, + [950] = {.lex_state = 278}, + [951] = {.lex_state = 275}, + [952] = {.lex_state = 278}, + [953] = {.lex_state = 275}, + [954] = {.lex_state = 275}, + [955] = {.lex_state = 275}, + [956] = {.lex_state = 275}, + [957] = {.lex_state = 275}, + [958] = {.lex_state = 275}, + [959] = {.lex_state = 275}, + [960] = {.lex_state = 275}, + [961] = {.lex_state = 275}, + [962] = {.lex_state = 275}, + [963] = {.lex_state = 275}, + [964] = {.lex_state = 275}, + [965] = {.lex_state = 275}, + [966] = {.lex_state = 275}, + [967] = {.lex_state = 275}, + [968] = {.lex_state = 275}, + [969] = {.lex_state = 275}, + [970] = {.lex_state = 275}, + [971] = {.lex_state = 275}, + [972] = {.lex_state = 275}, + [973] = {.lex_state = 275}, + [974] = {.lex_state = 275}, + [975] = {.lex_state = 275}, + [976] = {.lex_state = 275}, + [977] = {.lex_state = 275}, + [978] = {.lex_state = 275}, + [979] = {.lex_state = 275}, + [980] = {.lex_state = 275}, + [981] = {.lex_state = 275}, + [982] = {.lex_state = 275}, + [983] = {.lex_state = 275}, + [984] = {.lex_state = 275}, + [985] = {.lex_state = 275}, + [986] = {.lex_state = 275}, + [987] = {.lex_state = 275}, + [988] = {.lex_state = 275}, + [989] = {.lex_state = 275}, + [990] = {.lex_state = 275}, + [991] = {.lex_state = 275}, + [992] = {.lex_state = 279}, + [993] = {.lex_state = 279}, + [994] = {.lex_state = 279}, + [995] = {.lex_state = 279}, + [996] = {.lex_state = 279}, + [997] = {.lex_state = 279}, + [998] = {.lex_state = 279}, + [999] = {.lex_state = 279}, + [1000] = {.lex_state = 279}, + [1001] = {.lex_state = 279}, + [1002] = {.lex_state = 279}, + [1003] = {.lex_state = 279}, + [1004] = {.lex_state = 279}, + [1005] = {.lex_state = 279}, + [1006] = {.lex_state = 279}, + [1007] = {.lex_state = 279}, + [1008] = {.lex_state = 279}, + [1009] = {.lex_state = 279}, + [1010] = {.lex_state = 279}, + [1011] = {.lex_state = 279}, + [1012] = {.lex_state = 279}, + [1013] = {.lex_state = 279}, + [1014] = {.lex_state = 279}, + [1015] = {.lex_state = 279}, + [1016] = {.lex_state = 279}, + [1017] = {.lex_state = 279}, + [1018] = {.lex_state = 279}, + [1019] = {.lex_state = 279}, + [1020] = {.lex_state = 279}, + [1021] = {.lex_state = 279}, + [1022] = {.lex_state = 279}, + [1023] = {.lex_state = 279}, + [1024] = {.lex_state = 279}, + [1025] = {.lex_state = 279}, + [1026] = {.lex_state = 279}, + [1027] = {.lex_state = 279}, + [1028] = {.lex_state = 279}, + [1029] = {.lex_state = 279}, + [1030] = {.lex_state = 279}, + [1031] = {.lex_state = 279}, + [1032] = {.lex_state = 279}, + [1033] = {.lex_state = 279}, + [1034] = {.lex_state = 279}, + [1035] = {.lex_state = 279}, + [1036] = {.lex_state = 279}, + [1037] = {.lex_state = 279}, + [1038] = {.lex_state = 279}, + [1039] = {.lex_state = 279}, + [1040] = {.lex_state = 279}, + [1041] = {.lex_state = 279}, + [1042] = {.lex_state = 279}, + [1043] = {.lex_state = 279}, + [1044] = {.lex_state = 279}, + [1045] = {.lex_state = 279}, + [1046] = {.lex_state = 279}, + [1047] = {.lex_state = 279}, + [1048] = {.lex_state = 279}, + [1049] = {.lex_state = 279}, + [1050] = {.lex_state = 279}, + [1051] = {.lex_state = 279}, + [1052] = {.lex_state = 279}, + [1053] = {.lex_state = 296}, + [1054] = {.lex_state = 296}, + [1055] = {.lex_state = 279}, + [1056] = {.lex_state = 292}, + [1057] = {.lex_state = 279}, + [1058] = {.lex_state = 296}, + [1059] = {.lex_state = 296}, + [1060] = {.lex_state = 296}, + [1061] = {.lex_state = 279}, + [1062] = {.lex_state = 279}, + [1063] = {.lex_state = 279}, + [1064] = {.lex_state = 296}, + [1065] = {.lex_state = 296}, + [1066] = {.lex_state = 279}, + [1067] = {.lex_state = 279}, + [1068] = {.lex_state = 279}, + [1069] = {.lex_state = 296}, + [1070] = {.lex_state = 296}, + [1071] = {.lex_state = 296}, + [1072] = {.lex_state = 296}, + [1073] = {.lex_state = 296}, + [1074] = {.lex_state = 279}, + [1075] = {.lex_state = 279}, + [1076] = {.lex_state = 279}, + [1077] = {.lex_state = 279}, + [1078] = {.lex_state = 296}, + [1079] = {.lex_state = 279}, + [1080] = {.lex_state = 279}, + [1081] = {.lex_state = 296}, + [1082] = {.lex_state = 279}, + [1083] = {.lex_state = 279}, + [1084] = {.lex_state = 279}, + [1085] = {.lex_state = 279}, + [1086] = {.lex_state = 278}, + [1087] = {.lex_state = 278}, + [1088] = {.lex_state = 279}, + [1089] = {.lex_state = 278}, + [1090] = {.lex_state = 279}, + [1091] = {.lex_state = 279}, + [1092] = {.lex_state = 279}, + [1093] = {.lex_state = 278}, + [1094] = {.lex_state = 278}, + [1095] = {.lex_state = 279}, + [1096] = {.lex_state = 279}, + [1097] = {.lex_state = 278}, + [1098] = {.lex_state = 279}, + [1099] = {.lex_state = 279}, + [1100] = {.lex_state = 279}, + [1101] = {.lex_state = 278}, + [1102] = {.lex_state = 279}, + [1103] = {.lex_state = 279}, + [1104] = {.lex_state = 279}, + [1105] = {.lex_state = 279}, + [1106] = {.lex_state = 279}, + [1107] = {.lex_state = 278}, + [1108] = {.lex_state = 278}, + [1109] = {.lex_state = 278}, + [1110] = {.lex_state = 279}, + [1111] = {.lex_state = 279}, + [1112] = {.lex_state = 278}, + [1113] = {.lex_state = 278}, + [1114] = {.lex_state = 278}, + [1115] = {.lex_state = 279}, + [1116] = {.lex_state = 279}, + [1117] = {.lex_state = 279}, + [1118] = {.lex_state = 278}, + [1119] = {.lex_state = 279}, + [1120] = {.lex_state = 279}, + [1121] = {.lex_state = 279}, + [1122] = {.lex_state = 278}, + [1123] = {.lex_state = 278}, + [1124] = {.lex_state = 279}, + [1125] = {.lex_state = 279}, + [1126] = {.lex_state = 279}, + [1127] = {.lex_state = 279}, + [1128] = {.lex_state = 278}, + [1129] = {.lex_state = 279}, + [1130] = {.lex_state = 278}, + [1131] = {.lex_state = 279}, + [1132] = {.lex_state = 278}, + [1133] = {.lex_state = 279}, + [1134] = {.lex_state = 279}, + [1135] = {.lex_state = 279}, + [1136] = {.lex_state = 278}, + [1137] = {.lex_state = 279}, + [1138] = {.lex_state = 279}, + [1139] = {.lex_state = 279}, + [1140] = {.lex_state = 278}, + [1141] = {.lex_state = 278}, + [1142] = {.lex_state = 278}, + [1143] = {.lex_state = 278}, + [1144] = {.lex_state = 279}, + [1145] = {.lex_state = 279}, + [1146] = {.lex_state = 278}, + [1147] = {.lex_state = 279}, + [1148] = {.lex_state = 279}, + [1149] = {.lex_state = 278}, + [1150] = {.lex_state = 278}, + [1151] = {.lex_state = 278}, + [1152] = {.lex_state = 279}, + [1153] = {.lex_state = 279}, + [1154] = {.lex_state = 279}, + [1155] = {.lex_state = 279}, + [1156] = {.lex_state = 279}, + [1157] = {.lex_state = 279}, + [1158] = {.lex_state = 279}, + [1159] = {.lex_state = 279}, + [1160] = {.lex_state = 279}, + [1161] = {.lex_state = 279}, + [1162] = {.lex_state = 279}, + [1163] = {.lex_state = 279}, + [1164] = {.lex_state = 279}, + [1165] = {.lex_state = 279}, + [1166] = {.lex_state = 278}, + [1167] = {.lex_state = 278}, + [1168] = {.lex_state = 279}, + [1169] = {.lex_state = 279}, + [1170] = {.lex_state = 279}, + [1171] = {.lex_state = 278}, + [1172] = {.lex_state = 278}, + [1173] = {.lex_state = 279}, + [1174] = {.lex_state = 279}, + [1175] = {.lex_state = 279}, + [1176] = {.lex_state = 278}, + [1177] = {.lex_state = 278}, + [1178] = {.lex_state = 279}, + [1179] = {.lex_state = 279}, + [1180] = {.lex_state = 279}, + [1181] = {.lex_state = 279}, + [1182] = {.lex_state = 279}, + [1183] = {.lex_state = 279}, + [1184] = {.lex_state = 279}, + [1185] = {.lex_state = 279}, + [1186] = {.lex_state = 279}, + [1187] = {.lex_state = 279}, + [1188] = {.lex_state = 279}, + [1189] = {.lex_state = 279}, + [1190] = {.lex_state = 279}, + [1191] = {.lex_state = 279}, + [1192] = {.lex_state = 279}, + [1193] = {.lex_state = 279}, + [1194] = {.lex_state = 279}, + [1195] = {.lex_state = 279}, + [1196] = {.lex_state = 279}, + [1197] = {.lex_state = 279}, + [1198] = {.lex_state = 279}, + [1199] = {.lex_state = 279}, + [1200] = {.lex_state = 279}, + [1201] = {.lex_state = 279}, + [1202] = {.lex_state = 279}, + [1203] = {.lex_state = 279}, + [1204] = {.lex_state = 279}, + [1205] = {.lex_state = 279}, + [1206] = {.lex_state = 279}, + [1207] = {.lex_state = 279}, + [1208] = {.lex_state = 279}, + [1209] = {.lex_state = 279}, + [1210] = {.lex_state = 279}, + [1211] = {.lex_state = 279}, + [1212] = {.lex_state = 279}, + [1213] = {.lex_state = 279}, + [1214] = {.lex_state = 279}, + [1215] = {.lex_state = 279}, + [1216] = {.lex_state = 279}, + [1217] = {.lex_state = 279}, + [1218] = {.lex_state = 279}, + [1219] = {.lex_state = 279}, + [1220] = {.lex_state = 279}, + [1221] = {.lex_state = 279}, + [1222] = {.lex_state = 279}, + [1223] = {.lex_state = 279}, + [1224] = {.lex_state = 279}, + [1225] = {.lex_state = 279}, + [1226] = {.lex_state = 279}, + [1227] = {.lex_state = 279}, + [1228] = {.lex_state = 279}, + [1229] = {.lex_state = 279}, + [1230] = {.lex_state = 279}, + [1231] = {.lex_state = 279}, + [1232] = {.lex_state = 279}, + [1233] = {.lex_state = 279}, + [1234] = {.lex_state = 279}, + [1235] = {.lex_state = 279}, + [1236] = {.lex_state = 279}, + [1237] = {.lex_state = 279}, + [1238] = {.lex_state = 279}, + [1239] = {.lex_state = 279}, + [1240] = {.lex_state = 279}, + [1241] = {.lex_state = 279}, + [1242] = {.lex_state = 279}, + [1243] = {.lex_state = 279}, + [1244] = {.lex_state = 279}, + [1245] = {.lex_state = 279}, + [1246] = {.lex_state = 279}, + [1247] = {.lex_state = 279}, + [1248] = {.lex_state = 279}, + [1249] = {.lex_state = 279}, + [1250] = {.lex_state = 279}, + [1251] = {.lex_state = 279}, + [1252] = {.lex_state = 279}, + [1253] = {.lex_state = 279}, + [1254] = {.lex_state = 279}, + [1255] = {.lex_state = 279}, + [1256] = {.lex_state = 279}, + [1257] = {.lex_state = 279}, + [1258] = {.lex_state = 279}, + [1259] = {.lex_state = 279}, + [1260] = {.lex_state = 279}, + [1261] = {.lex_state = 279}, + [1262] = {.lex_state = 279}, + [1263] = {.lex_state = 279}, + [1264] = {.lex_state = 279}, + [1265] = {.lex_state = 279}, + [1266] = {.lex_state = 279}, + [1267] = {.lex_state = 279}, + [1268] = {.lex_state = 279}, + [1269] = {.lex_state = 279}, + [1270] = {.lex_state = 279}, + [1271] = {.lex_state = 279}, + [1272] = {.lex_state = 279}, + [1273] = {.lex_state = 279}, + [1274] = {.lex_state = 279}, + [1275] = {.lex_state = 279}, + [1276] = {.lex_state = 279}, + [1277] = {.lex_state = 279}, + [1278] = {.lex_state = 279}, + [1279] = {.lex_state = 279}, + [1280] = {.lex_state = 279}, + [1281] = {.lex_state = 279}, + [1282] = {.lex_state = 279}, + [1283] = {.lex_state = 279}, + [1284] = {.lex_state = 279}, + [1285] = {.lex_state = 279}, + [1286] = {.lex_state = 279}, + [1287] = {.lex_state = 279}, + [1288] = {.lex_state = 279}, + [1289] = {.lex_state = 279}, + [1290] = {.lex_state = 279}, + [1291] = {.lex_state = 279}, + [1292] = {.lex_state = 387}, + [1293] = {.lex_state = 279}, + [1294] = {.lex_state = 279}, + [1295] = {.lex_state = 279}, + [1296] = {.lex_state = 279}, + [1297] = {.lex_state = 279}, + [1298] = {.lex_state = 279}, + [1299] = {.lex_state = 279}, + [1300] = {.lex_state = 279}, + [1301] = {.lex_state = 279}, + [1302] = {.lex_state = 279}, + [1303] = {.lex_state = 279}, + [1304] = {.lex_state = 279}, + [1305] = {.lex_state = 279}, + [1306] = {.lex_state = 279}, + [1307] = {.lex_state = 279}, + [1308] = {.lex_state = 279}, + [1309] = {.lex_state = 279}, + [1310] = {.lex_state = 279}, + [1311] = {.lex_state = 279}, + [1312] = {.lex_state = 279}, + [1313] = {.lex_state = 279}, + [1314] = {.lex_state = 279}, + [1315] = {.lex_state = 279}, + [1316] = {.lex_state = 279}, + [1317] = {.lex_state = 279}, + [1318] = {.lex_state = 279}, + [1319] = {.lex_state = 279}, + [1320] = {.lex_state = 279}, + [1321] = {.lex_state = 279}, + [1322] = {.lex_state = 279}, + [1323] = {.lex_state = 279}, + [1324] = {.lex_state = 279}, + [1325] = {.lex_state = 279}, + [1326] = {.lex_state = 279}, + [1327] = {.lex_state = 279}, + [1328] = {.lex_state = 279}, + [1329] = {.lex_state = 279}, + [1330] = {.lex_state = 279}, + [1331] = {.lex_state = 279}, + [1332] = {.lex_state = 279}, + [1333] = {.lex_state = 279}, + [1334] = {.lex_state = 279}, + [1335] = {.lex_state = 279}, + [1336] = {.lex_state = 279}, + [1337] = {.lex_state = 279}, + [1338] = {.lex_state = 279}, + [1339] = {.lex_state = 279}, + [1340] = {.lex_state = 279}, + [1341] = {.lex_state = 279}, + [1342] = {.lex_state = 279}, + [1343] = {.lex_state = 279}, + [1344] = {.lex_state = 279}, + [1345] = {.lex_state = 279}, + [1346] = {.lex_state = 279}, + [1347] = {.lex_state = 279}, + [1348] = {.lex_state = 279}, + [1349] = {.lex_state = 279}, + [1350] = {.lex_state = 279}, + [1351] = {.lex_state = 279}, + [1352] = {.lex_state = 279}, + [1353] = {.lex_state = 279}, + [1354] = {.lex_state = 279}, + [1355] = {.lex_state = 279}, + [1356] = {.lex_state = 279}, + [1357] = {.lex_state = 279}, + [1358] = {.lex_state = 279}, + [1359] = {.lex_state = 279}, + [1360] = {.lex_state = 279}, + [1361] = {.lex_state = 279}, + [1362] = {.lex_state = 279}, + [1363] = {.lex_state = 279}, + [1364] = {.lex_state = 279}, + [1365] = {.lex_state = 279}, + [1366] = {.lex_state = 279}, + [1367] = {.lex_state = 279}, + [1368] = {.lex_state = 279}, + [1369] = {.lex_state = 279}, + [1370] = {.lex_state = 279}, + [1371] = {.lex_state = 279}, + [1372] = {.lex_state = 279}, + [1373] = {.lex_state = 279}, + [1374] = {.lex_state = 279}, + [1375] = {.lex_state = 279}, + [1376] = {.lex_state = 279}, + [1377] = {.lex_state = 279}, + [1378] = {.lex_state = 279}, + [1379] = {.lex_state = 279}, + [1380] = {.lex_state = 279}, + [1381] = {.lex_state = 279}, + [1382] = {.lex_state = 279}, + [1383] = {.lex_state = 279}, + [1384] = {.lex_state = 279}, + [1385] = {.lex_state = 279}, + [1386] = {.lex_state = 279}, + [1387] = {.lex_state = 279}, + [1388] = {.lex_state = 279}, + [1389] = {.lex_state = 279}, + [1390] = {.lex_state = 279}, + [1391] = {.lex_state = 279}, + [1392] = {.lex_state = 279}, + [1393] = {.lex_state = 279}, + [1394] = {.lex_state = 279}, + [1395] = {.lex_state = 279}, + [1396] = {.lex_state = 279}, + [1397] = {.lex_state = 279}, + [1398] = {.lex_state = 279}, + [1399] = {.lex_state = 279}, + [1400] = {.lex_state = 279}, + [1401] = {.lex_state = 279}, + [1402] = {.lex_state = 279}, + [1403] = {.lex_state = 279}, + [1404] = {.lex_state = 279}, + [1405] = {.lex_state = 279}, + [1406] = {.lex_state = 279}, + [1407] = {.lex_state = 279}, + [1408] = {.lex_state = 279}, + [1409] = {.lex_state = 279}, + [1410] = {.lex_state = 279}, + [1411] = {.lex_state = 279}, + [1412] = {.lex_state = 279}, + [1413] = {.lex_state = 279}, + [1414] = {.lex_state = 279}, + [1415] = {.lex_state = 279}, + [1416] = {.lex_state = 279}, + [1417] = {.lex_state = 279}, + [1418] = {.lex_state = 279}, + [1419] = {.lex_state = 279}, + [1420] = {.lex_state = 279}, + [1421] = {.lex_state = 279}, + [1422] = {.lex_state = 279}, + [1423] = {.lex_state = 279}, + [1424] = {.lex_state = 279}, + [1425] = {.lex_state = 279}, + [1426] = {.lex_state = 279}, + [1427] = {.lex_state = 279}, + [1428] = {.lex_state = 279}, + [1429] = {.lex_state = 279}, + [1430] = {.lex_state = 279}, + [1431] = {.lex_state = 279}, + [1432] = {.lex_state = 279}, + [1433] = {.lex_state = 279}, + [1434] = {.lex_state = 279}, + [1435] = {.lex_state = 279}, + [1436] = {.lex_state = 279}, + [1437] = {.lex_state = 279}, + [1438] = {.lex_state = 279}, + [1439] = {.lex_state = 279}, + [1440] = {.lex_state = 279}, + [1441] = {.lex_state = 279}, + [1442] = {.lex_state = 279}, + [1443] = {.lex_state = 279}, + [1444] = {.lex_state = 279}, + [1445] = {.lex_state = 279}, + [1446] = {.lex_state = 279}, + [1447] = {.lex_state = 279}, + [1448] = {.lex_state = 279}, + [1449] = {.lex_state = 279}, + [1450] = {.lex_state = 279}, + [1451] = {.lex_state = 279}, + [1452] = {.lex_state = 279}, + [1453] = {.lex_state = 279}, + [1454] = {.lex_state = 279}, + [1455] = {.lex_state = 279}, + [1456] = {.lex_state = 279}, + [1457] = {.lex_state = 279}, + [1458] = {.lex_state = 279}, + [1459] = {.lex_state = 279}, + [1460] = {.lex_state = 279}, + [1461] = {.lex_state = 279}, + [1462] = {.lex_state = 279}, + [1463] = {.lex_state = 279}, + [1464] = {.lex_state = 279}, + [1465] = {.lex_state = 279}, + [1466] = {.lex_state = 279}, + [1467] = {.lex_state = 279}, + [1468] = {.lex_state = 279}, + [1469] = {.lex_state = 279}, + [1470] = {.lex_state = 279}, + [1471] = {.lex_state = 279}, + [1472] = {.lex_state = 279}, + [1473] = {.lex_state = 279}, + [1474] = {.lex_state = 279}, + [1475] = {.lex_state = 279}, + [1476] = {.lex_state = 279}, + [1477] = {.lex_state = 279}, + [1478] = {.lex_state = 279}, + [1479] = {.lex_state = 279}, + [1480] = {.lex_state = 279}, + [1481] = {.lex_state = 279}, + [1482] = {.lex_state = 279}, + [1483] = {.lex_state = 279}, + [1484] = {.lex_state = 279}, + [1485] = {.lex_state = 279}, + [1486] = {.lex_state = 279}, + [1487] = {.lex_state = 279}, + [1488] = {.lex_state = 279}, + [1489] = {.lex_state = 279}, + [1490] = {.lex_state = 279}, + [1491] = {.lex_state = 279}, + [1492] = {.lex_state = 279}, + [1493] = {.lex_state = 279}, + [1494] = {.lex_state = 279}, + [1495] = {.lex_state = 279}, + [1496] = {.lex_state = 279}, + [1497] = {.lex_state = 279}, + [1498] = {.lex_state = 279}, + [1499] = {.lex_state = 279}, + [1500] = {.lex_state = 279}, + [1501] = {.lex_state = 279}, + [1502] = {.lex_state = 279}, + [1503] = {.lex_state = 279}, + [1504] = {.lex_state = 279}, + [1505] = {.lex_state = 279}, + [1506] = {.lex_state = 279}, + [1507] = {.lex_state = 279}, + [1508] = {.lex_state = 279}, + [1509] = {.lex_state = 279}, + [1510] = {.lex_state = 279}, + [1511] = {.lex_state = 279}, + [1512] = {.lex_state = 279}, + [1513] = {.lex_state = 279}, + [1514] = {.lex_state = 279}, + [1515] = {.lex_state = 279}, + [1516] = {.lex_state = 279}, + [1517] = {.lex_state = 279}, + [1518] = {.lex_state = 279}, + [1519] = {.lex_state = 279}, + [1520] = {.lex_state = 279}, + [1521] = {.lex_state = 279}, + [1522] = {.lex_state = 279}, + [1523] = {.lex_state = 279}, + [1524] = {.lex_state = 279}, + [1525] = {.lex_state = 279}, + [1526] = {.lex_state = 279}, + [1527] = {.lex_state = 279}, + [1528] = {.lex_state = 279}, + [1529] = {.lex_state = 279}, + [1530] = {.lex_state = 279}, + [1531] = {.lex_state = 279}, + [1532] = {.lex_state = 279}, + [1533] = {.lex_state = 279}, + [1534] = {.lex_state = 279}, + [1535] = {.lex_state = 279}, + [1536] = {.lex_state = 279}, + [1537] = {.lex_state = 279}, + [1538] = {.lex_state = 279}, + [1539] = {.lex_state = 279}, + [1540] = {.lex_state = 279}, + [1541] = {.lex_state = 279}, + [1542] = {.lex_state = 279}, + [1543] = {.lex_state = 279}, + [1544] = {.lex_state = 279}, + [1545] = {.lex_state = 279}, + [1546] = {.lex_state = 279}, + [1547] = {.lex_state = 279}, + [1548] = {.lex_state = 279}, + [1549] = {.lex_state = 279}, + [1550] = {.lex_state = 279}, + [1551] = {.lex_state = 279}, + [1552] = {.lex_state = 279}, + [1553] = {.lex_state = 279}, + [1554] = {.lex_state = 279}, + [1555] = {.lex_state = 279}, + [1556] = {.lex_state = 279}, + [1557] = {.lex_state = 279}, + [1558] = {.lex_state = 279}, + [1559] = {.lex_state = 279}, + [1560] = {.lex_state = 279}, + [1561] = {.lex_state = 279}, + [1562] = {.lex_state = 279}, + [1563] = {.lex_state = 279}, + [1564] = {.lex_state = 279}, + [1565] = {.lex_state = 279}, + [1566] = {.lex_state = 279}, + [1567] = {.lex_state = 279}, + [1568] = {.lex_state = 279}, + [1569] = {.lex_state = 279}, + [1570] = {.lex_state = 279}, + [1571] = {.lex_state = 279}, + [1572] = {.lex_state = 279}, + [1573] = {.lex_state = 279}, + [1574] = {.lex_state = 279}, + [1575] = {.lex_state = 279}, + [1576] = {.lex_state = 279}, + [1577] = {.lex_state = 279}, + [1578] = {.lex_state = 279}, + [1579] = {.lex_state = 279}, + [1580] = {.lex_state = 279}, + [1581] = {.lex_state = 279}, + [1582] = {.lex_state = 279}, + [1583] = {.lex_state = 279}, + [1584] = {.lex_state = 279}, + [1585] = {.lex_state = 279}, + [1586] = {.lex_state = 279}, + [1587] = {.lex_state = 279}, + [1588] = {.lex_state = 279}, + [1589] = {.lex_state = 279}, + [1590] = {.lex_state = 279}, + [1591] = {.lex_state = 279}, + [1592] = {.lex_state = 279}, + [1593] = {.lex_state = 279}, + [1594] = {.lex_state = 279}, + [1595] = {.lex_state = 279}, + [1596] = {.lex_state = 279}, + [1597] = {.lex_state = 279}, + [1598] = {.lex_state = 279}, + [1599] = {.lex_state = 279}, + [1600] = {.lex_state = 279}, + [1601] = {.lex_state = 279}, + [1602] = {.lex_state = 279}, + [1603] = {.lex_state = 279}, + [1604] = {.lex_state = 279}, + [1605] = {.lex_state = 279}, + [1606] = {.lex_state = 279}, + [1607] = {.lex_state = 279}, + [1608] = {.lex_state = 279}, + [1609] = {.lex_state = 279}, + [1610] = {.lex_state = 279}, + [1611] = {.lex_state = 279}, + [1612] = {.lex_state = 279}, + [1613] = {.lex_state = 279}, + [1614] = {.lex_state = 279}, + [1615] = {.lex_state = 279}, + [1616] = {.lex_state = 279}, + [1617] = {.lex_state = 279}, + [1618] = {.lex_state = 279}, + [1619] = {.lex_state = 279}, + [1620] = {.lex_state = 279}, + [1621] = {.lex_state = 279}, + [1622] = {.lex_state = 279}, + [1623] = {.lex_state = 279}, + [1624] = {.lex_state = 279}, + [1625] = {.lex_state = 279}, + [1626] = {.lex_state = 279}, + [1627] = {.lex_state = 279}, + [1628] = {.lex_state = 279}, + [1629] = {.lex_state = 279}, + [1630] = {.lex_state = 279}, + [1631] = {.lex_state = 279}, + [1632] = {.lex_state = 279}, + [1633] = {.lex_state = 279}, + [1634] = {.lex_state = 279}, + [1635] = {.lex_state = 279}, + [1636] = {.lex_state = 279}, + [1637] = {.lex_state = 279}, + [1638] = {.lex_state = 279}, + [1639] = {.lex_state = 279}, + [1640] = {.lex_state = 279}, + [1641] = {.lex_state = 279}, + [1642] = {.lex_state = 279}, + [1643] = {.lex_state = 279}, + [1644] = {.lex_state = 279}, + [1645] = {.lex_state = 279}, + [1646] = {.lex_state = 279}, + [1647] = {.lex_state = 279}, + [1648] = {.lex_state = 279}, + [1649] = {.lex_state = 279}, + [1650] = {.lex_state = 279}, + [1651] = {.lex_state = 279}, + [1652] = {.lex_state = 279}, + [1653] = {.lex_state = 279}, + [1654] = {.lex_state = 279}, + [1655] = {.lex_state = 279}, + [1656] = {.lex_state = 279}, + [1657] = {.lex_state = 279}, + [1658] = {.lex_state = 279}, + [1659] = {.lex_state = 279}, + [1660] = {.lex_state = 279}, + [1661] = {.lex_state = 279}, + [1662] = {.lex_state = 279}, + [1663] = {.lex_state = 279}, + [1664] = {.lex_state = 279}, + [1665] = {.lex_state = 279}, + [1666] = {.lex_state = 279}, + [1667] = {.lex_state = 279}, + [1668] = {.lex_state = 279}, + [1669] = {.lex_state = 279}, + [1670] = {.lex_state = 279}, + [1671] = {.lex_state = 279}, + [1672] = {.lex_state = 279}, + [1673] = {.lex_state = 279}, + [1674] = {.lex_state = 279}, + [1675] = {.lex_state = 279}, + [1676] = {.lex_state = 279}, + [1677] = {.lex_state = 279}, + [1678] = {.lex_state = 279}, + [1679] = {.lex_state = 279}, + [1680] = {.lex_state = 279}, + [1681] = {.lex_state = 279}, + [1682] = {.lex_state = 279}, + [1683] = {.lex_state = 279}, + [1684] = {.lex_state = 279}, + [1685] = {.lex_state = 279}, + [1686] = {.lex_state = 279}, + [1687] = {.lex_state = 279}, + [1688] = {.lex_state = 279}, + [1689] = {.lex_state = 279}, + [1690] = {.lex_state = 279}, + [1691] = {.lex_state = 279}, + [1692] = {.lex_state = 279}, + [1693] = {.lex_state = 279}, + [1694] = {.lex_state = 279}, + [1695] = {.lex_state = 279}, + [1696] = {.lex_state = 279}, + [1697] = {.lex_state = 279}, + [1698] = {.lex_state = 279}, + [1699] = {.lex_state = 279}, + [1700] = {.lex_state = 279}, + [1701] = {.lex_state = 279}, + [1702] = {.lex_state = 279}, + [1703] = {.lex_state = 279}, + [1704] = {.lex_state = 279}, + [1705] = {.lex_state = 279}, + [1706] = {.lex_state = 279}, + [1707] = {.lex_state = 279}, + [1708] = {.lex_state = 279}, + [1709] = {.lex_state = 279}, + [1710] = {.lex_state = 279}, + [1711] = {.lex_state = 279}, + [1712] = {.lex_state = 279}, + [1713] = {.lex_state = 279}, + [1714] = {.lex_state = 279}, + [1715] = {.lex_state = 279}, + [1716] = {.lex_state = 279}, + [1717] = {.lex_state = 279}, + [1718] = {.lex_state = 279}, + [1719] = {.lex_state = 279}, + [1720] = {.lex_state = 279}, + [1721] = {.lex_state = 279}, + [1722] = {.lex_state = 279}, + [1723] = {.lex_state = 279}, + [1724] = {.lex_state = 279}, + [1725] = {.lex_state = 279}, + [1726] = {.lex_state = 279}, + [1727] = {.lex_state = 279}, + [1728] = {.lex_state = 279}, + [1729] = {.lex_state = 279}, + [1730] = {.lex_state = 279}, + [1731] = {.lex_state = 279}, + [1732] = {.lex_state = 279}, + [1733] = {.lex_state = 279}, + [1734] = {.lex_state = 279}, + [1735] = {.lex_state = 279}, + [1736] = {.lex_state = 279}, + [1737] = {.lex_state = 279}, + [1738] = {.lex_state = 279}, + [1739] = {.lex_state = 279}, + [1740] = {.lex_state = 279}, + [1741] = {.lex_state = 279}, + [1742] = {.lex_state = 279}, + [1743] = {.lex_state = 279}, + [1744] = {.lex_state = 279}, + [1745] = {.lex_state = 279}, + [1746] = {.lex_state = 279}, + [1747] = {.lex_state = 279}, + [1748] = {.lex_state = 279}, + [1749] = {.lex_state = 279}, + [1750] = {.lex_state = 279}, + [1751] = {.lex_state = 279}, + [1752] = {.lex_state = 279}, + [1753] = {.lex_state = 279}, + [1754] = {.lex_state = 279}, + [1755] = {.lex_state = 279}, + [1756] = {.lex_state = 279}, + [1757] = {.lex_state = 279}, + [1758] = {.lex_state = 279}, + [1759] = {.lex_state = 279}, + [1760] = {.lex_state = 279}, + [1761] = {.lex_state = 279}, + [1762] = {.lex_state = 279}, + [1763] = {.lex_state = 279}, + [1764] = {.lex_state = 279}, + [1765] = {.lex_state = 279}, + [1766] = {.lex_state = 279}, + [1767] = {.lex_state = 279}, + [1768] = {.lex_state = 279}, + [1769] = {.lex_state = 279}, + [1770] = {.lex_state = 279}, + [1771] = {.lex_state = 279}, + [1772] = {.lex_state = 279}, + [1773] = {.lex_state = 279}, + [1774] = {.lex_state = 279}, + [1775] = {.lex_state = 279}, + [1776] = {.lex_state = 275}, + [1777] = {.lex_state = 275}, + [1778] = {.lex_state = 275}, + [1779] = {.lex_state = 387}, + [1780] = {.lex_state = 387}, + [1781] = {.lex_state = 387}, + [1782] = {.lex_state = 387}, + [1783] = {.lex_state = 387}, + [1784] = {.lex_state = 320}, + [1785] = {.lex_state = 308}, + [1786] = {.lex_state = 320}, + [1787] = {.lex_state = 320}, + [1788] = {.lex_state = 320}, + [1789] = {.lex_state = 289}, + [1790] = {.lex_state = 320}, + [1791] = {.lex_state = 320}, + [1792] = {.lex_state = 320}, + [1793] = {.lex_state = 320}, + [1794] = {.lex_state = 320}, + [1795] = {.lex_state = 308}, + [1796] = {.lex_state = 320}, + [1797] = {.lex_state = 320}, + [1798] = {.lex_state = 308}, + [1799] = {.lex_state = 308}, + [1800] = {.lex_state = 320}, + [1801] = {.lex_state = 308}, + [1802] = {.lex_state = 308}, + [1803] = {.lex_state = 308}, + [1804] = {.lex_state = 308}, + [1805] = {.lex_state = 308}, + [1806] = {.lex_state = 290}, + [1807] = {.lex_state = 320}, + [1808] = {.lex_state = 291}, + [1809] = {.lex_state = 387}, + [1810] = {.lex_state = 297}, + [1811] = {.lex_state = 387}, + [1812] = {.lex_state = 308}, + [1813] = {.lex_state = 308}, + [1814] = {.lex_state = 308}, + [1815] = {.lex_state = 308}, + [1816] = {.lex_state = 308}, + [1817] = {.lex_state = 308}, + [1818] = {.lex_state = 308}, + [1819] = {.lex_state = 308}, + [1820] = {.lex_state = 361}, + [1821] = {.lex_state = 361}, + [1822] = {.lex_state = 361}, + [1823] = {.lex_state = 361}, + [1824] = {.lex_state = 361}, + [1825] = {.lex_state = 361}, + [1826] = {.lex_state = 361}, + [1827] = {.lex_state = 387}, + [1828] = {.lex_state = 387}, + [1829] = {.lex_state = 387}, + [1830] = {.lex_state = 387}, + [1831] = {.lex_state = 387}, + [1832] = {.lex_state = 387}, + [1833] = {.lex_state = 387}, + [1834] = {.lex_state = 387}, + [1835] = {.lex_state = 387}, + [1836] = {.lex_state = 387}, + [1837] = {.lex_state = 387}, + [1838] = {.lex_state = 387}, + [1839] = {.lex_state = 387}, + [1840] = {.lex_state = 387}, + [1841] = {.lex_state = 387}, + [1842] = {.lex_state = 275}, + [1843] = {.lex_state = 502}, + [1844] = {.lex_state = 502}, + [1845] = {.lex_state = 502}, + [1846] = {.lex_state = 505}, + [1847] = {.lex_state = 505}, + [1848] = {.lex_state = 505}, + [1849] = {.lex_state = 505}, + [1850] = {.lex_state = 505}, + [1851] = {.lex_state = 505}, + [1852] = {.lex_state = 505}, + [1853] = {.lex_state = 275}, + [1854] = {.lex_state = 387}, + [1855] = {.lex_state = 387}, + [1856] = {.lex_state = 387}, + [1857] = {.lex_state = 387}, + [1858] = {.lex_state = 387}, + [1859] = {.lex_state = 387}, + [1860] = {.lex_state = 387}, + [1861] = {.lex_state = 387}, + [1862] = {.lex_state = 387}, + [1863] = {.lex_state = 387}, + [1864] = {.lex_state = 387}, + [1865] = {.lex_state = 387}, + [1866] = {.lex_state = 387}, + [1867] = {.lex_state = 387}, + [1868] = {.lex_state = 387}, + [1869] = {.lex_state = 387}, + [1870] = {.lex_state = 387}, + [1871] = {.lex_state = 361}, + [1872] = {.lex_state = 332}, + [1873] = {.lex_state = 332}, + [1874] = {.lex_state = 332}, + [1875] = {.lex_state = 319}, + [1876] = {.lex_state = 502}, + [1877] = {.lex_state = 514}, + [1878] = {.lex_state = 502}, + [1879] = {.lex_state = 361}, + [1880] = {.lex_state = 332}, + [1881] = {.lex_state = 332}, + [1882] = {.lex_state = 332}, + [1883] = {.lex_state = 502}, + [1884] = {.lex_state = 319}, + [1885] = {.lex_state = 502}, + [1886] = {.lex_state = 361}, + [1887] = {.lex_state = 319}, + [1888] = {.lex_state = 332}, + [1889] = {.lex_state = 319}, + [1890] = {.lex_state = 387}, + [1891] = {.lex_state = 508}, + [1892] = {.lex_state = 387}, + [1893] = {.lex_state = 319}, + [1894] = {.lex_state = 387}, + [1895] = {.lex_state = 387}, + [1896] = {.lex_state = 387}, + [1897] = {.lex_state = 509}, + [1898] = {.lex_state = 387}, + [1899] = {.lex_state = 319}, + [1900] = {.lex_state = 319}, + [1901] = {.lex_state = 383}, + [1902] = {.lex_state = 345}, + [1903] = {.lex_state = 383}, + [1904] = {.lex_state = 383}, + [1905] = {.lex_state = 383}, + [1906] = {.lex_state = 345}, + [1907] = {.lex_state = 500}, + [1908] = {.lex_state = 345}, + [1909] = {.lex_state = 319}, + [1910] = {.lex_state = 345}, + [1911] = {.lex_state = 319}, + [1912] = {.lex_state = 500}, + [1913] = {.lex_state = 500}, + [1914] = {.lex_state = 333}, + [1915] = {.lex_state = 387}, + [1916] = {.lex_state = 279}, + [1917] = {.lex_state = 387}, + [1918] = {.lex_state = 345}, + [1919] = {.lex_state = 333}, + [1920] = {.lex_state = 345}, + [1921] = {.lex_state = 345}, + [1922] = {.lex_state = 319}, + [1923] = {.lex_state = 387}, + [1924] = {.lex_state = 333}, + [1925] = {.lex_state = 333}, + [1926] = {.lex_state = 333}, + [1927] = {.lex_state = 333}, + [1928] = {.lex_state = 319}, + [1929] = {.lex_state = 361}, + [1930] = {.lex_state = 319}, + [1931] = {.lex_state = 319}, + [1932] = {.lex_state = 319}, + [1933] = {.lex_state = 319}, + [1934] = {.lex_state = 509}, + [1935] = {.lex_state = 319}, + [1936] = {.lex_state = 319}, + [1937] = {.lex_state = 361}, + [1938] = {.lex_state = 361}, + [1939] = {.lex_state = 333}, + [1940] = {.lex_state = 319}, + [1941] = {.lex_state = 361}, + [1942] = {.lex_state = 319}, + [1943] = {.lex_state = 319}, + [1944] = {.lex_state = 319}, + [1945] = {.lex_state = 361}, + [1946] = {.lex_state = 319}, + [1947] = {.lex_state = 319}, + [1948] = {.lex_state = 361}, + [1949] = {.lex_state = 361}, + [1950] = {.lex_state = 319}, + [1951] = {.lex_state = 319}, + [1952] = {.lex_state = 319}, + [1953] = {.lex_state = 319}, + [1954] = {.lex_state = 319}, + [1955] = {.lex_state = 319}, + [1956] = {.lex_state = 319}, + [1957] = {.lex_state = 361}, + [1958] = {.lex_state = 319}, + [1959] = {.lex_state = 319}, + [1960] = {.lex_state = 319}, + [1961] = {.lex_state = 319}, + [1962] = {.lex_state = 509}, + [1963] = {.lex_state = 319}, + [1964] = {.lex_state = 332}, + [1965] = {.lex_state = 319}, + [1966] = {.lex_state = 319}, + [1967] = {.lex_state = 319}, + [1968] = {.lex_state = 319}, + [1969] = {.lex_state = 319}, + [1970] = {.lex_state = 319}, + [1971] = {.lex_state = 319}, + [1972] = {.lex_state = 319}, + [1973] = {.lex_state = 361}, + [1974] = {.lex_state = 319}, + [1975] = {.lex_state = 383}, + [1976] = {.lex_state = 361}, + [1977] = {.lex_state = 509}, + [1978] = {.lex_state = 319}, + [1979] = {.lex_state = 361}, + [1980] = {.lex_state = 319}, + [1981] = {.lex_state = 319}, + [1982] = {.lex_state = 319}, + [1983] = {.lex_state = 319}, + [1984] = {.lex_state = 319}, + [1985] = {.lex_state = 319}, + [1986] = {.lex_state = 319}, + [1987] = {.lex_state = 319}, + [1988] = {.lex_state = 319}, + [1989] = {.lex_state = 319}, + [1990] = {.lex_state = 319}, + [1991] = {.lex_state = 319}, + [1992] = {.lex_state = 319}, + [1993] = {.lex_state = 319}, + [1994] = {.lex_state = 509}, + [1995] = {.lex_state = 319}, + [1996] = {.lex_state = 319}, + [1997] = {.lex_state = 319}, + [1998] = {.lex_state = 361}, + [1999] = {.lex_state = 319}, + [2000] = {.lex_state = 319}, + [2001] = {.lex_state = 319}, + [2002] = {.lex_state = 319}, + [2003] = {.lex_state = 319}, + [2004] = {.lex_state = 319}, + [2005] = {.lex_state = 333}, + [2006] = {.lex_state = 361}, + [2007] = {.lex_state = 319}, + [2008] = {.lex_state = 319}, + [2009] = {.lex_state = 319}, + [2010] = {.lex_state = 319}, + [2011] = {.lex_state = 319}, + [2012] = {.lex_state = 333}, + [2013] = {.lex_state = 319}, + [2014] = {.lex_state = 361}, + [2015] = {.lex_state = 319}, + [2016] = {.lex_state = 319}, + [2017] = {.lex_state = 319}, + [2018] = {.lex_state = 319}, + [2019] = {.lex_state = 319}, + [2020] = {.lex_state = 319}, + [2021] = {.lex_state = 319}, + [2022] = {.lex_state = 383}, + [2023] = {.lex_state = 319}, + [2024] = {.lex_state = 319}, + [2025] = {.lex_state = 319}, + [2026] = {.lex_state = 319}, + [2027] = {.lex_state = 319}, + [2028] = {.lex_state = 518}, + [2029] = {.lex_state = 518}, + [2030] = {.lex_state = 379}, + [2031] = {.lex_state = 284}, + [2032] = {.lex_state = 381}, + [2033] = {.lex_state = 383}, + [2034] = {.lex_state = 381}, + [2035] = {.lex_state = 284}, + [2036] = {.lex_state = 381}, + [2037] = {.lex_state = 381}, + [2038] = {.lex_state = 379}, + [2039] = {.lex_state = 332}, + [2040] = {.lex_state = 502}, + [2041] = {.lex_state = 379}, + [2042] = {.lex_state = 505}, + [2043] = {.lex_state = 383}, + [2044] = {.lex_state = 383}, + [2045] = {.lex_state = 279}, + [2046] = {.lex_state = 506}, + [2047] = {.lex_state = 506}, + [2048] = {.lex_state = 506}, + [2049] = {.lex_state = 502}, + [2050] = {.lex_state = 506}, + [2051] = {.lex_state = 520}, + [2052] = {.lex_state = 518}, + [2053] = {.lex_state = 379}, + [2054] = {.lex_state = 379}, + [2055] = {.lex_state = 518}, + [2056] = {.lex_state = 518}, + [2057] = {.lex_state = 500}, + [2058] = {.lex_state = 518}, + [2059] = {.lex_state = 518}, + [2060] = {.lex_state = 383}, + [2061] = {.lex_state = 383}, + [2062] = {.lex_state = 383}, + [2063] = {.lex_state = 383}, + [2064] = {.lex_state = 383}, + [2065] = {.lex_state = 383}, + [2066] = {.lex_state = 383}, + [2067] = {.lex_state = 383}, + [2068] = {.lex_state = 383}, + [2069] = {.lex_state = 383}, + [2070] = {.lex_state = 383}, + [2071] = {.lex_state = 383}, + [2072] = {.lex_state = 383}, + [2073] = {.lex_state = 383}, + [2074] = {.lex_state = 383}, + [2075] = {.lex_state = 383}, + [2076] = {.lex_state = 383}, + [2077] = {.lex_state = 383}, + [2078] = {.lex_state = 383}, + [2079] = {.lex_state = 383}, + [2080] = {.lex_state = 383}, + [2081] = {.lex_state = 383}, + [2082] = {.lex_state = 383}, + [2083] = {.lex_state = 383}, + [2084] = {.lex_state = 383}, + [2085] = {.lex_state = 383}, + [2086] = {.lex_state = 383}, + [2087] = {.lex_state = 383}, + [2088] = {.lex_state = 383}, + [2089] = {.lex_state = 383}, + [2090] = {.lex_state = 381}, + [2091] = {.lex_state = 345}, + [2092] = {.lex_state = 383}, + [2093] = {.lex_state = 383}, + [2094] = {.lex_state = 286}, + [2095] = {.lex_state = 286}, + [2096] = {.lex_state = 286}, + [2097] = {.lex_state = 383}, + [2098] = {.lex_state = 383}, + [2099] = {.lex_state = 383}, + [2100] = {.lex_state = 381}, + [2101] = {.lex_state = 383}, + [2102] = {.lex_state = 383}, + [2103] = {.lex_state = 383}, + [2104] = {.lex_state = 383}, + [2105] = {.lex_state = 383}, + [2106] = {.lex_state = 505}, + [2107] = {.lex_state = 383}, + [2108] = {.lex_state = 383}, + [2109] = {.lex_state = 383}, + [2110] = {.lex_state = 514}, + [2111] = {.lex_state = 383}, + [2112] = {.lex_state = 383}, + [2113] = {.lex_state = 383}, + [2114] = {.lex_state = 500}, + [2115] = {.lex_state = 383}, + [2116] = {.lex_state = 383}, + [2117] = {.lex_state = 383}, + [2118] = {.lex_state = 383}, + [2119] = {.lex_state = 383}, + [2120] = {.lex_state = 383}, + [2121] = {.lex_state = 383}, + [2122] = {.lex_state = 383}, + [2123] = {.lex_state = 509}, + [2124] = {.lex_state = 514}, + [2125] = {.lex_state = 383}, + [2126] = {.lex_state = 383}, + [2127] = {.lex_state = 383}, + [2128] = {.lex_state = 509}, + [2129] = {.lex_state = 383}, + [2130] = {.lex_state = 379}, + [2131] = {.lex_state = 509}, + [2132] = {.lex_state = 383}, + [2133] = {.lex_state = 383}, + [2134] = {.lex_state = 296}, + [2135] = {.lex_state = 383}, + [2136] = {.lex_state = 383}, + [2137] = {.lex_state = 509}, + [2138] = {.lex_state = 383}, + [2139] = {.lex_state = 292}, + [2140] = {.lex_state = 292}, + [2141] = {.lex_state = 383}, + [2142] = {.lex_state = 383}, + [2143] = {.lex_state = 383}, + [2144] = {.lex_state = 500}, + [2145] = {.lex_state = 379}, + [2146] = {.lex_state = 383}, + [2147] = {.lex_state = 383}, + [2148] = {.lex_state = 383}, + [2149] = {.lex_state = 383}, + [2150] = {.lex_state = 383}, + [2151] = {.lex_state = 383}, + [2152] = {.lex_state = 383}, + [2153] = {.lex_state = 383}, + [2154] = {.lex_state = 383}, + [2155] = {.lex_state = 383}, + [2156] = {.lex_state = 296}, + [2157] = {.lex_state = 296}, + [2158] = {.lex_state = 383}, + [2159] = {.lex_state = 508}, + [2160] = {.lex_state = 502}, + [2161] = {.lex_state = 387}, + [2162] = {.lex_state = 500}, + [2163] = {.lex_state = 387}, + [2164] = {.lex_state = 379}, + [2165] = {.lex_state = 509}, + [2166] = {.lex_state = 509}, + [2167] = {.lex_state = 286}, + [2168] = {.lex_state = 509}, + [2169] = {.lex_state = 509}, + [2170] = {.lex_state = 507}, + [2171] = {.lex_state = 500}, + [2172] = {.lex_state = 506}, + [2173] = {.lex_state = 502}, + [2174] = {.lex_state = 509}, + [2175] = {.lex_state = 521}, + [2176] = {.lex_state = 500}, + [2177] = {.lex_state = 509}, + [2178] = {.lex_state = 521}, + [2179] = {.lex_state = 509}, + [2180] = {.lex_state = 509}, + [2181] = {.lex_state = 506}, + [2182] = {.lex_state = 387}, + [2183] = {.lex_state = 293}, + [2184] = {.lex_state = 507}, + [2185] = {.lex_state = 509}, + [2186] = {.lex_state = 521}, + [2187] = {.lex_state = 500}, + [2188] = {.lex_state = 509}, + [2189] = {.lex_state = 521}, + [2190] = {.lex_state = 509}, + [2191] = {.lex_state = 509}, + [2192] = {.lex_state = 379}, + [2193] = {.lex_state = 502}, + [2194] = {.lex_state = 506}, + [2195] = {.lex_state = 387}, + [2196] = {.lex_state = 500}, + [2197] = {.lex_state = 387}, + [2198] = {.lex_state = 521}, + [2199] = {.lex_state = 500}, + [2200] = {.lex_state = 507}, + [2201] = {.lex_state = 500}, + [2202] = {.lex_state = 381}, + [2203] = {.lex_state = 295}, + [2204] = {.lex_state = 500}, + [2205] = {.lex_state = 507}, + [2206] = {.lex_state = 521}, + [2207] = {.lex_state = 502}, + [2208] = {.lex_state = 502}, + [2209] = {.lex_state = 293}, + [2210] = {.lex_state = 506}, + [2211] = {.lex_state = 502}, + [2212] = {.lex_state = 521}, + [2213] = {.lex_state = 387}, + [2214] = {.lex_state = 379}, + [2215] = {.lex_state = 500}, + [2216] = {.lex_state = 295}, + [2217] = {.lex_state = 506}, + [2218] = {.lex_state = 381}, + [2219] = {.lex_state = 381}, + [2220] = {.lex_state = 345}, + [2221] = {.lex_state = 295}, + [2222] = {.lex_state = 387}, + [2223] = {.lex_state = 387}, + [2224] = {.lex_state = 387}, + [2225] = {.lex_state = 387}, + [2226] = {.lex_state = 387}, + [2227] = {.lex_state = 387}, + [2228] = {.lex_state = 387}, + [2229] = {.lex_state = 387}, + [2230] = {.lex_state = 500}, + [2231] = {.lex_state = 502}, + [2232] = {.lex_state = 508}, + [2233] = {.lex_state = 521}, + [2234] = {.lex_state = 509}, + [2235] = {.lex_state = 509}, + [2236] = {.lex_state = 381}, + [2237] = {.lex_state = 381}, + [2238] = {.lex_state = 381}, + [2239] = {.lex_state = 381}, + [2240] = {.lex_state = 381}, + [2241] = {.lex_state = 381}, + [2242] = {.lex_state = 381}, + [2243] = {.lex_state = 381}, + [2244] = {.lex_state = 379}, + [2245] = {.lex_state = 381}, + [2246] = {.lex_state = 381}, + [2247] = {.lex_state = 381}, + [2248] = {.lex_state = 381}, + [2249] = {.lex_state = 381}, + [2250] = {.lex_state = 381}, + [2251] = {.lex_state = 381}, + [2252] = {.lex_state = 381}, + [2253] = {.lex_state = 379}, + [2254] = {.lex_state = 387}, + [2255] = {.lex_state = 381}, + [2256] = {.lex_state = 381}, + [2257] = {.lex_state = 381}, + [2258] = {.lex_state = 381}, + [2259] = {.lex_state = 381}, + [2260] = {.lex_state = 381}, + [2261] = {.lex_state = 381}, + [2262] = {.lex_state = 381}, + [2263] = {.lex_state = 381}, + [2264] = {.lex_state = 381}, + [2265] = {.lex_state = 381}, + [2266] = {.lex_state = 509}, + [2267] = {.lex_state = 299}, + [2268] = {.lex_state = 381}, + [2269] = {.lex_state = 509}, + [2270] = {.lex_state = 381}, + [2271] = {.lex_state = 379}, + [2272] = {.lex_state = 379}, + [2273] = {.lex_state = 381}, + [2274] = {.lex_state = 381}, + [2275] = {.lex_state = 381}, + [2276] = {.lex_state = 507}, + [2277] = {.lex_state = 509}, + [2278] = {.lex_state = 379}, + [2279] = {.lex_state = 381}, + [2280] = {.lex_state = 381}, + [2281] = {.lex_state = 381}, + [2282] = {.lex_state = 381}, + [2283] = {.lex_state = 509}, + [2284] = {.lex_state = 509}, + [2285] = {.lex_state = 381}, + [2286] = {.lex_state = 509}, + [2287] = {.lex_state = 509}, + [2288] = {.lex_state = 379}, + [2289] = {.lex_state = 379}, + [2290] = {.lex_state = 381}, + [2291] = {.lex_state = 379}, + [2292] = {.lex_state = 379}, + [2293] = {.lex_state = 387}, + [2294] = {.lex_state = 381}, + [2295] = {.lex_state = 379}, + [2296] = {.lex_state = 379}, + [2297] = {.lex_state = 381}, + [2298] = {.lex_state = 381}, + [2299] = {.lex_state = 379}, + [2300] = {.lex_state = 507}, + [2301] = {.lex_state = 381}, + [2302] = {.lex_state = 379}, + [2303] = {.lex_state = 379}, + [2304] = {.lex_state = 379}, + [2305] = {.lex_state = 379}, + [2306] = {.lex_state = 381}, + [2307] = {.lex_state = 379}, + [2308] = {.lex_state = 379}, + [2309] = {.lex_state = 379}, + [2310] = {.lex_state = 379}, + [2311] = {.lex_state = 379}, + [2312] = {.lex_state = 379}, + [2313] = {.lex_state = 379}, + [2314] = {.lex_state = 379}, + [2315] = {.lex_state = 379}, + [2316] = {.lex_state = 379}, + [2317] = {.lex_state = 379}, + [2318] = {.lex_state = 507}, + [2319] = {.lex_state = 379}, + [2320] = {.lex_state = 379}, + [2321] = {.lex_state = 509}, + [2322] = {.lex_state = 509}, + [2323] = {.lex_state = 509}, + [2324] = {.lex_state = 379}, + [2325] = {.lex_state = 379}, + [2326] = {.lex_state = 509}, + [2327] = {.lex_state = 509}, + [2328] = {.lex_state = 509}, + [2329] = {.lex_state = 509}, + [2330] = {.lex_state = 379}, + [2331] = {.lex_state = 379}, + [2332] = {.lex_state = 507}, + [2333] = {.lex_state = 379}, + [2334] = {.lex_state = 387}, + [2335] = {.lex_state = 379}, + [2336] = {.lex_state = 379}, + [2337] = {.lex_state = 379}, + [2338] = {.lex_state = 379}, + [2339] = {.lex_state = 379}, + [2340] = {.lex_state = 379}, + [2341] = {.lex_state = 379}, + [2342] = {.lex_state = 379}, + [2343] = {.lex_state = 379}, + [2344] = {.lex_state = 379}, + [2345] = {.lex_state = 379}, + [2346] = {.lex_state = 379}, + [2347] = {.lex_state = 379}, + [2348] = {.lex_state = 379}, + [2349] = {.lex_state = 379}, + [2350] = {.lex_state = 379}, + [2351] = {.lex_state = 379}, + [2352] = {.lex_state = 379}, + [2353] = {.lex_state = 379}, + [2354] = {.lex_state = 509}, + [2355] = {.lex_state = 509}, + [2356] = {.lex_state = 509}, + [2357] = {.lex_state = 381}, + [2358] = {.lex_state = 381}, + [2359] = {.lex_state = 509}, + [2360] = {.lex_state = 509}, + [2361] = {.lex_state = 381}, + [2362] = {.lex_state = 379}, + [2363] = {.lex_state = 507}, + [2364] = {.lex_state = 381}, + [2365] = {.lex_state = 509}, + [2366] = {.lex_state = 509}, + [2367] = {.lex_state = 509}, + [2368] = {.lex_state = 381}, + [2369] = {.lex_state = 509}, + [2370] = {.lex_state = 381}, + [2371] = {.lex_state = 379}, + [2372] = {.lex_state = 379}, + [2373] = {.lex_state = 509}, + [2374] = {.lex_state = 381}, + [2375] = {.lex_state = 379}, + [2376] = {.lex_state = 381}, + [2377] = {.lex_state = 381}, + [2378] = {.lex_state = 299}, + [2379] = {.lex_state = 507}, + [2380] = {.lex_state = 381}, + [2381] = {.lex_state = 509}, + [2382] = {.lex_state = 509}, + [2383] = {.lex_state = 509}, + [2384] = {.lex_state = 381}, + [2385] = {.lex_state = 509}, + [2386] = {.lex_state = 381}, + [2387] = {.lex_state = 509}, + [2388] = {.lex_state = 381}, + [2389] = {.lex_state = 509}, + [2390] = {.lex_state = 509}, + [2391] = {.lex_state = 381}, + [2392] = {.lex_state = 381}, + [2393] = {.lex_state = 381}, + [2394] = {.lex_state = 509}, + [2395] = {.lex_state = 509}, + [2396] = {.lex_state = 297}, + [2397] = {.lex_state = 381}, + [2398] = {.lex_state = 379}, + [2399] = {.lex_state = 379}, + [2400] = {.lex_state = 381}, + [2401] = {.lex_state = 379}, + [2402] = {.lex_state = 379}, + [2403] = {.lex_state = 381}, + [2404] = {.lex_state = 507}, + [2405] = {.lex_state = 507}, + [2406] = {.lex_state = 381}, + [2407] = {.lex_state = 299}, + [2408] = {.lex_state = 379}, + [2409] = {.lex_state = 507}, + [2410] = {.lex_state = 521}, + [2411] = {.lex_state = 509}, + [2412] = {.lex_state = 387}, + [2413] = {.lex_state = 381}, + [2414] = {.lex_state = 381}, + [2415] = {.lex_state = 379}, + [2416] = {.lex_state = 379}, + [2417] = {.lex_state = 379}, + [2418] = {.lex_state = 379}, + [2419] = {.lex_state = 381}, + [2420] = {.lex_state = 509}, + [2421] = {.lex_state = 509}, + [2422] = {.lex_state = 379}, + [2423] = {.lex_state = 379}, + [2424] = {.lex_state = 379}, + [2425] = {.lex_state = 381}, + [2426] = {.lex_state = 379}, + [2427] = {.lex_state = 379}, + [2428] = {.lex_state = 506}, + [2429] = {.lex_state = 381}, + [2430] = {.lex_state = 379}, + [2431] = {.lex_state = 381}, + [2432] = {.lex_state = 381}, + [2433] = {.lex_state = 297}, + [2434] = {.lex_state = 381}, + [2435] = {.lex_state = 509}, + [2436] = {.lex_state = 381}, + [2437] = {.lex_state = 381}, + [2438] = {.lex_state = 381}, + [2439] = {.lex_state = 508}, + [2440] = {.lex_state = 379}, + [2441] = {.lex_state = 381}, + [2442] = {.lex_state = 508}, + [2443] = {.lex_state = 379}, + [2444] = {.lex_state = 379}, + [2445] = {.lex_state = 379}, + [2446] = {.lex_state = 381}, + [2447] = {.lex_state = 381}, + [2448] = {.lex_state = 500}, + [2449] = {.lex_state = 509}, + [2450] = {.lex_state = 509}, + [2451] = {.lex_state = 302}, + [2452] = {.lex_state = 509}, + [2453] = {.lex_state = 322}, + [2454] = {.lex_state = 509}, + [2455] = {.lex_state = 509}, + [2456] = {.lex_state = 509}, + [2457] = {.lex_state = 509}, + [2458] = {.lex_state = 286}, + [2459] = {.lex_state = 509}, + [2460] = {.lex_state = 286}, + [2461] = {.lex_state = 509}, + [2462] = {.lex_state = 509}, + [2463] = {.lex_state = 509}, + [2464] = {.lex_state = 302}, + [2465] = {.lex_state = 387}, + [2466] = {.lex_state = 321}, + [2467] = {.lex_state = 509}, + [2468] = {.lex_state = 300}, + [2469] = {.lex_state = 295}, + [2470] = {.lex_state = 286}, + [2471] = {.lex_state = 506}, + [2472] = {.lex_state = 387}, + [2473] = {.lex_state = 506}, + [2474] = {.lex_state = 509}, + [2475] = {.lex_state = 509}, + [2476] = {.lex_state = 509}, + [2477] = {.lex_state = 509}, + [2478] = {.lex_state = 509}, + [2479] = {.lex_state = 302}, + [2480] = {.lex_state = 509}, + [2481] = {.lex_state = 300}, + [2482] = {.lex_state = 502}, + [2483] = {.lex_state = 286}, + [2484] = {.lex_state = 509}, + [2485] = {.lex_state = 506}, + [2486] = {.lex_state = 500}, + [2487] = {.lex_state = 506}, + [2488] = {.lex_state = 502}, + [2489] = {.lex_state = 502}, + [2490] = {.lex_state = 506}, + [2491] = {.lex_state = 506}, + [2492] = {.lex_state = 506}, + [2493] = {.lex_state = 506}, + [2494] = {.lex_state = 506}, + [2495] = {.lex_state = 506}, + [2496] = {.lex_state = 502}, + [2497] = {.lex_state = 502}, + [2498] = {.lex_state = 295}, + [2499] = {.lex_state = 295}, + [2500] = {.lex_state = 507}, + [2501] = {.lex_state = 509}, + [2502] = {.lex_state = 506}, + [2503] = {.lex_state = 521}, + [2504] = {.lex_state = 521}, + [2505] = {.lex_state = 507}, + [2506] = {.lex_state = 295}, + [2507] = {.lex_state = 295}, + [2508] = {.lex_state = 299}, + [2509] = {.lex_state = 509}, + [2510] = {.lex_state = 506}, + [2511] = {.lex_state = 507}, + [2512] = {.lex_state = 512}, + [2513] = {.lex_state = 509}, + [2514] = {.lex_state = 509}, + [2515] = {.lex_state = 509}, + [2516] = {.lex_state = 321}, + [2517] = {.lex_state = 507}, + [2518] = {.lex_state = 295}, + [2519] = {.lex_state = 295}, + [2520] = {.lex_state = 323}, + [2521] = {.lex_state = 380}, + [2522] = {.lex_state = 323}, + [2523] = {.lex_state = 295}, + [2524] = {.lex_state = 323}, + [2525] = {.lex_state = 509}, + [2526] = {.lex_state = 509}, + [2527] = {.lex_state = 507}, + [2528] = {.lex_state = 387}, + [2529] = {.lex_state = 509}, + [2530] = {.lex_state = 509}, + [2531] = {.lex_state = 509}, + [2532] = {.lex_state = 368}, + [2533] = {.lex_state = 509}, + [2534] = {.lex_state = 509}, + [2535] = {.lex_state = 509}, + [2536] = {.lex_state = 509}, + [2537] = {.lex_state = 521}, + [2538] = {.lex_state = 387}, + [2539] = {.lex_state = 387}, + [2540] = {.lex_state = 509}, + [2541] = {.lex_state = 509}, + [2542] = {.lex_state = 509}, + [2543] = {.lex_state = 521}, + [2544] = {.lex_state = 365}, + [2545] = {.lex_state = 521}, + [2546] = {.lex_state = 521}, + [2547] = {.lex_state = 509}, + [2548] = {.lex_state = 509}, + [2549] = {.lex_state = 519}, + [2550] = {.lex_state = 509}, + [2551] = {.lex_state = 509}, + [2552] = {.lex_state = 509}, + [2553] = {.lex_state = 509}, + [2554] = {.lex_state = 509}, + [2555] = {.lex_state = 521}, + [2556] = {.lex_state = 509}, + [2557] = {.lex_state = 341}, + [2558] = {.lex_state = 521}, + [2559] = {.lex_state = 509}, + [2560] = {.lex_state = 295}, + [2561] = {.lex_state = 387}, + [2562] = {.lex_state = 509}, + [2563] = {.lex_state = 509}, + [2564] = {.lex_state = 295}, + [2565] = {.lex_state = 509}, + [2566] = {.lex_state = 519}, + [2567] = {.lex_state = 509}, + [2568] = {.lex_state = 509}, + [2569] = {.lex_state = 509}, + [2570] = {.lex_state = 509}, + [2571] = {.lex_state = 509}, + [2572] = {.lex_state = 365}, + [2573] = {.lex_state = 365}, + [2574] = {.lex_state = 321}, + [2575] = {.lex_state = 509}, + [2576] = {.lex_state = 509}, + [2577] = {.lex_state = 509}, + [2578] = {.lex_state = 295}, + [2579] = {.lex_state = 321}, + [2580] = {.lex_state = 519}, + [2581] = {.lex_state = 387}, + [2582] = {.lex_state = 519}, + [2583] = {.lex_state = 509}, + [2584] = {.lex_state = 509}, + [2585] = {.lex_state = 509}, + [2586] = {.lex_state = 502}, + [2587] = {.lex_state = 341}, + [2588] = {.lex_state = 509}, + [2589] = {.lex_state = 509}, + [2590] = {.lex_state = 509}, + [2591] = {.lex_state = 509}, + [2592] = {.lex_state = 509}, + [2593] = {.lex_state = 519}, + [2594] = {.lex_state = 387}, + [2595] = {.lex_state = 387}, + [2596] = {.lex_state = 521}, + [2597] = {.lex_state = 509}, + [2598] = {.lex_state = 521}, + [2599] = {.lex_state = 521}, + [2600] = {.lex_state = 295}, + [2601] = {.lex_state = 387}, + [2602] = {.lex_state = 341}, + [2603] = {.lex_state = 509}, + [2604] = {.lex_state = 339}, + [2605] = {.lex_state = 509}, + [2606] = {.lex_state = 509}, + [2607] = {.lex_state = 509}, + [2608] = {.lex_state = 509}, + [2609] = {.lex_state = 509}, + [2610] = {.lex_state = 509}, + [2611] = {.lex_state = 509}, + [2612] = {.lex_state = 509}, + [2613] = {.lex_state = 509}, + [2614] = {.lex_state = 509}, + [2615] = {.lex_state = 509}, + [2616] = {.lex_state = 509}, + [2617] = {.lex_state = 509}, + [2618] = {.lex_state = 521}, + [2619] = {.lex_state = 509}, + [2620] = {.lex_state = 509}, + [2621] = {.lex_state = 509}, + [2622] = {.lex_state = 322}, + [2623] = {.lex_state = 509}, + [2624] = {.lex_state = 322}, + [2625] = {.lex_state = 338}, + [2626] = {.lex_state = 322}, + [2627] = {.lex_state = 509}, + [2628] = {.lex_state = 322}, + [2629] = {.lex_state = 387}, + [2630] = {.lex_state = 509}, + [2631] = {.lex_state = 509}, + [2632] = {.lex_state = 322}, + [2633] = {.lex_state = 509}, + [2634] = {.lex_state = 509}, + [2635] = {.lex_state = 322}, + [2636] = {.lex_state = 322}, + [2637] = {.lex_state = 387}, + [2638] = {.lex_state = 519}, + [2639] = {.lex_state = 509}, + [2640] = {.lex_state = 521}, + [2641] = {.lex_state = 509}, + [2642] = {.lex_state = 302}, + [2643] = {.lex_state = 299}, + [2644] = {.lex_state = 299}, + [2645] = {.lex_state = 365}, + [2646] = {.lex_state = 387}, + [2647] = {.lex_state = 509}, + [2648] = {.lex_state = 509}, + [2649] = {.lex_state = 509}, + [2650] = {.lex_state = 521}, + [2651] = {.lex_state = 509}, + [2652] = {.lex_state = 509}, + [2653] = {.lex_state = 387}, + [2654] = {.lex_state = 322}, + [2655] = {.lex_state = 387}, + [2656] = {.lex_state = 299}, + [2657] = {.lex_state = 299}, + [2658] = {.lex_state = 502}, + [2659] = {.lex_state = 502}, + [2660] = {.lex_state = 387}, + [2661] = {.lex_state = 509}, + [2662] = {.lex_state = 509}, + [2663] = {.lex_state = 365}, + [2664] = {.lex_state = 509}, + [2665] = {.lex_state = 509}, + [2666] = {.lex_state = 509}, + [2667] = {.lex_state = 502}, + [2668] = {.lex_state = 521}, + [2669] = {.lex_state = 521}, + [2670] = {.lex_state = 321}, + [2671] = {.lex_state = 521}, + [2672] = {.lex_state = 346}, + [2673] = {.lex_state = 521}, + [2674] = {.lex_state = 321}, + [2675] = {.lex_state = 521}, + [2676] = {.lex_state = 521}, + [2677] = {.lex_state = 521}, + [2678] = {.lex_state = 521}, + [2679] = {.lex_state = 321}, + [2680] = {.lex_state = 321}, + [2681] = {.lex_state = 521}, + [2682] = {.lex_state = 380}, + [2683] = {.lex_state = 521}, + [2684] = {.lex_state = 302}, + [2685] = {.lex_state = 302}, + [2686] = {.lex_state = 279}, + [2687] = {.lex_state = 521}, + [2688] = {.lex_state = 322}, + [2689] = {.lex_state = 349}, + [2690] = {.lex_state = 321}, + [2691] = {.lex_state = 521}, + [2692] = {.lex_state = 521}, + [2693] = {.lex_state = 521}, + [2694] = {.lex_state = 521}, + [2695] = {.lex_state = 521}, + [2696] = {.lex_state = 521}, + [2697] = {.lex_state = 521}, + [2698] = {.lex_state = 521}, + [2699] = {.lex_state = 321}, + [2700] = {.lex_state = 349}, + [2701] = {.lex_state = 295}, + [2702] = {.lex_state = 521}, + [2703] = {.lex_state = 370}, + [2704] = {.lex_state = 321}, + [2705] = {.lex_state = 521}, + [2706] = {.lex_state = 322}, + [2707] = {.lex_state = 299}, + [2708] = {.lex_state = 321}, + [2709] = {.lex_state = 321}, + [2710] = {.lex_state = 521}, + [2711] = {.lex_state = 322}, + [2712] = {.lex_state = 299}, + [2713] = {.lex_state = 321}, + [2714] = {.lex_state = 521}, + [2715] = {.lex_state = 521}, + [2716] = {.lex_state = 521}, + [2717] = {.lex_state = 279}, + [2718] = {.lex_state = 504}, + [2719] = {.lex_state = 338}, + [2720] = {.lex_state = 302}, + [2721] = {.lex_state = 345}, + [2722] = {.lex_state = 521}, + [2723] = {.lex_state = 521}, + [2724] = {.lex_state = 321}, + [2725] = {.lex_state = 521}, + [2726] = {.lex_state = 521}, + [2727] = {.lex_state = 302}, + [2728] = {.lex_state = 521}, + [2729] = {.lex_state = 504}, + [2730] = {.lex_state = 521}, + [2731] = {.lex_state = 380}, + [2732] = {.lex_state = 521}, + [2733] = {.lex_state = 521}, + [2734] = {.lex_state = 521}, + [2735] = {.lex_state = 521}, + [2736] = {.lex_state = 504}, + [2737] = {.lex_state = 521}, + [2738] = {.lex_state = 521}, + [2739] = {.lex_state = 521}, + [2740] = {.lex_state = 299}, + [2741] = {.lex_state = 521}, + [2742] = {.lex_state = 299}, + [2743] = {.lex_state = 349}, + [2744] = {.lex_state = 363}, + [2745] = {.lex_state = 322}, + [2746] = {.lex_state = 356}, + [2747] = {.lex_state = 322}, + [2748] = {.lex_state = 339}, + [2749] = {.lex_state = 339}, + [2750] = {.lex_state = 387}, + [2751] = {.lex_state = 322}, + [2752] = {.lex_state = 356}, + [2753] = {.lex_state = 295}, + [2754] = {.lex_state = 295}, + [2755] = {.lex_state = 295}, + [2756] = {.lex_state = 356}, + [2757] = {.lex_state = 338}, + [2758] = {.lex_state = 295}, + [2759] = {.lex_state = 339}, + [2760] = {.lex_state = 302}, + [2761] = {.lex_state = 345}, + [2762] = {.lex_state = 322}, + [2763] = {.lex_state = 302}, + [2764] = {.lex_state = 302}, + [2765] = {.lex_state = 380}, + [2766] = {.lex_state = 363}, + [2767] = {.lex_state = 363}, + [2768] = {.lex_state = 322}, + [2769] = {.lex_state = 353}, + [2770] = {.lex_state = 363}, + [2771] = {.lex_state = 363}, + [2772] = {.lex_state = 363}, + [2773] = {.lex_state = 302}, + [2774] = {.lex_state = 339}, + [2775] = {.lex_state = 387}, + [2776] = {.lex_state = 339}, + [2777] = {.lex_state = 322}, + [2778] = {.lex_state = 363}, + [2779] = {.lex_state = 363}, + [2780] = {.lex_state = 339}, + [2781] = {.lex_state = 338}, + [2782] = {.lex_state = 354}, + [2783] = {.lex_state = 339}, + [2784] = {.lex_state = 387}, + [2785] = {.lex_state = 279}, + [2786] = {.lex_state = 279}, + [2787] = {.lex_state = 279}, + [2788] = {.lex_state = 279}, + [2789] = {.lex_state = 279}, + [2790] = {.lex_state = 279}, + [2791] = {.lex_state = 279}, + [2792] = {.lex_state = 345}, + [2793] = {.lex_state = 338}, + [2794] = {.lex_state = 338}, + [2795] = {.lex_state = 295}, + [2796] = {.lex_state = 345}, + [2797] = {.lex_state = 345}, + [2798] = {.lex_state = 279}, + [2799] = {.lex_state = 338}, + [2800] = {.lex_state = 279}, + [2801] = {.lex_state = 353}, + [2802] = {.lex_state = 279}, + [2803] = {.lex_state = 345}, + [2804] = {.lex_state = 339}, + [2805] = {.lex_state = 339}, + [2806] = {.lex_state = 341}, + [2807] = {.lex_state = 279}, + [2808] = {.lex_state = 338}, + [2809] = {.lex_state = 279}, + [2810] = {.lex_state = 279}, + [2811] = {.lex_state = 345}, + [2812] = {.lex_state = 279}, + [2813] = {.lex_state = 339}, + [2814] = {.lex_state = 295}, + [2815] = {.lex_state = 345}, + [2816] = {.lex_state = 345}, + [2817] = {.lex_state = 279}, + [2818] = {.lex_state = 506}, + [2819] = {.lex_state = 295}, + [2820] = {.lex_state = 338}, + [2821] = {.lex_state = 279}, + [2822] = {.lex_state = 322}, + [2823] = {.lex_state = 295}, + [2824] = {.lex_state = 279}, + [2825] = {.lex_state = 279}, + [2826] = {.lex_state = 341}, + [2827] = {.lex_state = 345}, + [2828] = {.lex_state = 279}, + [2829] = {.lex_state = 345}, + [2830] = {.lex_state = 322}, + [2831] = {.lex_state = 339}, + [2832] = {.lex_state = 279}, + [2833] = {.lex_state = 341}, + [2834] = {.lex_state = 363}, + [2835] = {.lex_state = 339}, + [2836] = {.lex_state = 322}, + [2837] = {.lex_state = 346}, + [2838] = {.lex_state = 337}, + [2839] = {.lex_state = 337}, + [2840] = {.lex_state = 504}, + [2841] = {.lex_state = 322}, + [2842] = {.lex_state = 345}, + [2843] = {.lex_state = 322}, + [2844] = {.lex_state = 345}, + [2845] = {.lex_state = 339}, + [2846] = {.lex_state = 353}, + [2847] = {.lex_state = 506}, + [2848] = {.lex_state = 387}, + [2849] = {.lex_state = 339}, + [2850] = {.lex_state = 345}, + [2851] = {.lex_state = 339}, + [2852] = {.lex_state = 345}, + [2853] = {.lex_state = 339}, + [2854] = {.lex_state = 353}, + [2855] = {.lex_state = 338}, + [2856] = {.lex_state = 337}, + [2857] = {.lex_state = 337}, + [2858] = {.lex_state = 337}, + [2859] = {.lex_state = 322}, + [2860] = {.lex_state = 322}, + [2861] = {.lex_state = 337}, + [2862] = {.lex_state = 345}, + [2863] = {.lex_state = 504}, + [2864] = {.lex_state = 504}, + [2865] = {.lex_state = 353}, + [2866] = {.lex_state = 322}, + [2867] = {.lex_state = 322}, + [2868] = {.lex_state = 353}, + [2869] = {.lex_state = 353}, + [2870] = {.lex_state = 509}, + [2871] = {.lex_state = 509}, + [2872] = {.lex_state = 509}, + [2873] = {.lex_state = 509}, + [2874] = {.lex_state = 509}, + [2875] = {.lex_state = 509}, + [2876] = {.lex_state = 504}, + [2877] = {.lex_state = 346}, + [2878] = {.lex_state = 322}, + [2879] = {.lex_state = 322}, + [2880] = {.lex_state = 353}, + [2881] = {.lex_state = 353}, + [2882] = {.lex_state = 509}, + [2883] = {.lex_state = 322}, + [2884] = {.lex_state = 339}, + [2885] = {.lex_state = 353}, + [2886] = {.lex_state = 322}, + [2887] = {.lex_state = 353}, + [2888] = {.lex_state = 322}, + [2889] = {.lex_state = 337}, + [2890] = {.lex_state = 509}, + [2891] = {.lex_state = 364}, + [2892] = {.lex_state = 363}, + [2893] = {.lex_state = 509}, + [2894] = {.lex_state = 339}, + [2895] = {.lex_state = 509}, + [2896] = {.lex_state = 509}, + [2897] = {.lex_state = 320}, + [2898] = {.lex_state = 321}, + [2899] = {.lex_state = 382}, + [2900] = {.lex_state = 339}, + [2901] = {.lex_state = 509}, + [2902] = {.lex_state = 509}, + [2903] = {.lex_state = 364}, + [2904] = {.lex_state = 339}, + [2905] = {.lex_state = 509}, + [2906] = {.lex_state = 522}, + [2907] = {.lex_state = 353}, + [2908] = {.lex_state = 320}, + [2909] = {.lex_state = 509}, + [2910] = {.lex_state = 509}, + [2911] = {.lex_state = 522}, + [2912] = {.lex_state = 320}, + [2913] = {.lex_state = 354}, + [2914] = {.lex_state = 322}, + [2915] = {.lex_state = 339}, + [2916] = {.lex_state = 338}, + [2917] = {.lex_state = 353}, + [2918] = {.lex_state = 364}, + [2919] = {.lex_state = 364}, + [2920] = {.lex_state = 382}, + [2921] = {.lex_state = 364}, + [2922] = {.lex_state = 364}, + [2923] = {.lex_state = 353}, + [2924] = {.lex_state = 364}, + [2925] = {.lex_state = 364}, + [2926] = {.lex_state = 509}, + [2927] = {.lex_state = 322}, + [2928] = {.lex_state = 353}, + [2929] = {.lex_state = 353}, + [2930] = {.lex_state = 353}, + [2931] = {.lex_state = 353}, + [2932] = {.lex_state = 339}, + [2933] = {.lex_state = 320}, + [2934] = {.lex_state = 322}, + [2935] = {.lex_state = 509}, + [2936] = {.lex_state = 509}, + [2937] = {.lex_state = 353}, + [2938] = {.lex_state = 353}, + [2939] = {.lex_state = 345}, + [2940] = {.lex_state = 509}, + [2941] = {.lex_state = 345}, + [2942] = {.lex_state = 509}, + [2943] = {.lex_state = 353}, + [2944] = {.lex_state = 322}, + [2945] = {.lex_state = 346}, + [2946] = {.lex_state = 509}, + [2947] = {.lex_state = 509}, + [2948] = {.lex_state = 509}, + [2949] = {.lex_state = 522}, + [2950] = {.lex_state = 509}, + [2951] = {.lex_state = 339}, + [2952] = {.lex_state = 509}, + [2953] = {.lex_state = 509}, + [2954] = {.lex_state = 509}, + [2955] = {.lex_state = 509}, + [2956] = {.lex_state = 509}, + [2957] = {.lex_state = 509}, + [2958] = {.lex_state = 322}, + [2959] = {.lex_state = 364}, + [2960] = {.lex_state = 346}, + [2961] = {.lex_state = 339}, + [2962] = {.lex_state = 522}, + [2963] = {.lex_state = 339}, + [2964] = {.lex_state = 339}, + [2965] = {.lex_state = 363}, + [2966] = {.lex_state = 364}, + [2967] = {.lex_state = 338}, + [2968] = {.lex_state = 353}, + [2969] = {.lex_state = 322}, + [2970] = {.lex_state = 509}, + [2971] = {.lex_state = 345}, + [2972] = {.lex_state = 322}, + [2973] = {.lex_state = 509}, + [2974] = {.lex_state = 345}, + [2975] = {.lex_state = 364}, + [2976] = {.lex_state = 354}, + [2977] = {.lex_state = 321}, + [2978] = {.lex_state = 353}, + [2979] = {.lex_state = 507}, + [2980] = {.lex_state = 509}, + [2981] = {.lex_state = 363}, + [2982] = {.lex_state = 363}, + [2983] = {.lex_state = 363}, + [2984] = {.lex_state = 363}, + [2985] = {.lex_state = 339}, + [2986] = {.lex_state = 363}, + [2987] = {.lex_state = 363}, + [2988] = {.lex_state = 353}, + [2989] = {.lex_state = 339}, + [2990] = {.lex_state = 339}, + [2991] = {.lex_state = 509}, + [2992] = {.lex_state = 354}, + [2993] = {.lex_state = 339}, + [2994] = {.lex_state = 345}, + [2995] = {.lex_state = 510}, + [2996] = {.lex_state = 322}, + [2997] = {.lex_state = 322}, + [2998] = {.lex_state = 339}, + [2999] = {.lex_state = 322}, + [3000] = {.lex_state = 322}, + [3001] = {.lex_state = 322}, + [3002] = {.lex_state = 322}, + [3003] = {.lex_state = 322}, + [3004] = {.lex_state = 322}, + [3005] = {.lex_state = 339}, + [3006] = {.lex_state = 322}, + [3007] = {.lex_state = 322}, + [3008] = {.lex_state = 322}, + [3009] = {.lex_state = 322}, + [3010] = {.lex_state = 322}, + [3011] = {.lex_state = 509}, + [3012] = {.lex_state = 322}, + [3013] = {.lex_state = 322}, + [3014] = {.lex_state = 322}, + [3015] = {.lex_state = 322}, + [3016] = {.lex_state = 339}, + [3017] = {.lex_state = 322}, + [3018] = {.lex_state = 322}, + [3019] = {.lex_state = 339}, + [3020] = {.lex_state = 322}, + [3021] = {.lex_state = 339}, + [3022] = {.lex_state = 509}, + [3023] = {.lex_state = 509}, + [3024] = {.lex_state = 509}, + [3025] = {.lex_state = 510}, + [3026] = {.lex_state = 322}, + [3027] = {.lex_state = 339}, + [3028] = {.lex_state = 322}, + [3029] = {.lex_state = 322}, + [3030] = {.lex_state = 322}, + [3031] = {.lex_state = 322}, + [3032] = {.lex_state = 322}, + [3033] = {.lex_state = 322}, + [3034] = {.lex_state = 509}, + [3035] = {.lex_state = 509}, + [3036] = {.lex_state = 509}, + [3037] = {.lex_state = 322}, + [3038] = {.lex_state = 322}, + [3039] = {.lex_state = 374}, + [3040] = {.lex_state = 345}, + [3041] = {.lex_state = 363}, + [3042] = {.lex_state = 509}, + [3043] = {.lex_state = 509}, + [3044] = {.lex_state = 382}, + [3045] = {.lex_state = 339}, + [3046] = {.lex_state = 322}, + [3047] = {.lex_state = 339}, + [3048] = {.lex_state = 390}, + [3049] = {.lex_state = 509}, + [3050] = {.lex_state = 510}, + [3051] = {.lex_state = 338}, + [3052] = {.lex_state = 338}, + [3053] = {.lex_state = 338}, + [3054] = {.lex_state = 338}, + [3055] = {.lex_state = 339}, + [3056] = {.lex_state = 338}, + [3057] = {.lex_state = 338}, + [3058] = {.lex_state = 338}, + [3059] = {.lex_state = 509}, + [3060] = {.lex_state = 353}, + [3061] = {.lex_state = 338}, + [3062] = {.lex_state = 338}, + [3063] = {.lex_state = 509}, + [3064] = {.lex_state = 509}, + [3065] = {.lex_state = 509}, + [3066] = {.lex_state = 509}, + [3067] = {.lex_state = 509}, + [3068] = {.lex_state = 509}, + [3069] = {.lex_state = 509}, + [3070] = {.lex_state = 509}, + [3071] = {.lex_state = 509}, + [3072] = {.lex_state = 509}, + [3073] = {.lex_state = 374}, + [3074] = {.lex_state = 382}, + [3075] = {.lex_state = 322}, + [3076] = {.lex_state = 338}, + [3077] = {.lex_state = 509}, + [3078] = {.lex_state = 510}, + [3079] = {.lex_state = 322}, + [3080] = {.lex_state = 374}, + [3081] = {.lex_state = 321}, + [3082] = {.lex_state = 320}, + [3083] = {.lex_state = 374}, + [3084] = {.lex_state = 322}, + [3085] = {.lex_state = 382}, + [3086] = {.lex_state = 382}, + [3087] = {.lex_state = 382}, + [3088] = {.lex_state = 374}, + [3089] = {.lex_state = 320}, + [3090] = {.lex_state = 322}, + [3091] = {.lex_state = 382}, + [3092] = {.lex_state = 382}, + [3093] = {.lex_state = 382}, + [3094] = {.lex_state = 382}, + [3095] = {.lex_state = 507}, + [3096] = {.lex_state = 509}, + [3097] = {.lex_state = 363}, + [3098] = {.lex_state = 382}, + [3099] = {.lex_state = 354}, + [3100] = {.lex_state = 382}, + [3101] = {.lex_state = 363}, + [3102] = {.lex_state = 363}, + [3103] = {.lex_state = 339}, + [3104] = {.lex_state = 509}, + [3105] = {.lex_state = 382}, + [3106] = {.lex_state = 353}, + [3107] = {.lex_state = 363}, + [3108] = {.lex_state = 509}, + [3109] = {.lex_state = 363}, + [3110] = {.lex_state = 353}, + [3111] = {.lex_state = 339}, + [3112] = {.lex_state = 320}, + [3113] = {.lex_state = 509}, + [3114] = {.lex_state = 363}, + [3115] = {.lex_state = 363}, + [3116] = {.lex_state = 338}, + [3117] = {.lex_state = 322}, + [3118] = {.lex_state = 322}, + [3119] = {.lex_state = 272}, + [3120] = {.lex_state = 322}, + [3121] = {.lex_state = 279}, + [3122] = {.lex_state = 339}, + [3123] = {.lex_state = 322}, + [3124] = {.lex_state = 363}, + [3125] = {.lex_state = 353}, + [3126] = {.lex_state = 338}, + [3127] = {.lex_state = 339}, + [3128] = {.lex_state = 272}, + [3129] = {.lex_state = 272}, + [3130] = {.lex_state = 339}, + [3131] = {.lex_state = 339}, + [3132] = {.lex_state = 308}, + [3133] = {.lex_state = 322}, + [3134] = {.lex_state = 363}, + [3135] = {.lex_state = 339}, + [3136] = {.lex_state = 382}, + [3137] = {.lex_state = 339}, + [3138] = {.lex_state = 322}, + [3139] = {.lex_state = 345}, + [3140] = {.lex_state = 322}, + [3141] = {.lex_state = 338}, + [3142] = {.lex_state = 339}, + [3143] = {.lex_state = 322}, + [3144] = {.lex_state = 272}, + [3145] = {.lex_state = 308}, + [3146] = {.lex_state = 339}, + [3147] = {.lex_state = 322}, + [3148] = {.lex_state = 345}, + [3149] = {.lex_state = 339}, + [3150] = {.lex_state = 345}, + [3151] = {.lex_state = 272}, + [3152] = {.lex_state = 322}, + [3153] = {.lex_state = 322}, + [3154] = {.lex_state = 322}, + [3155] = {.lex_state = 322}, + [3156] = {.lex_state = 345}, + [3157] = {.lex_state = 322}, + [3158] = {.lex_state = 279}, + [3159] = {.lex_state = 322}, + [3160] = {.lex_state = 339}, + [3161] = {.lex_state = 322}, + [3162] = {.lex_state = 345}, + [3163] = {.lex_state = 345}, + [3164] = {.lex_state = 322}, + [3165] = {.lex_state = 322}, + [3166] = {.lex_state = 345}, + [3167] = {.lex_state = 322}, + [3168] = {.lex_state = 308}, + [3169] = {.lex_state = 272}, + [3170] = {.lex_state = 322}, + [3171] = {.lex_state = 272}, + [3172] = {.lex_state = 322}, + [3173] = {.lex_state = 345}, + [3174] = {.lex_state = 322}, + [3175] = {.lex_state = 339}, + [3176] = {.lex_state = 339}, + [3177] = {.lex_state = 380}, + [3178] = {.lex_state = 321}, + [3179] = {.lex_state = 509}, + [3180] = {.lex_state = 345}, + [3181] = {.lex_state = 345}, + [3182] = {.lex_state = 363}, + [3183] = {.lex_state = 339}, + [3184] = {.lex_state = 339}, + [3185] = {.lex_state = 272}, + [3186] = {.lex_state = 339}, + [3187] = {.lex_state = 382}, + [3188] = {.lex_state = 363}, + [3189] = {.lex_state = 339}, + [3190] = {.lex_state = 322}, + [3191] = {.lex_state = 320}, + [3192] = {.lex_state = 339}, + [3193] = {.lex_state = 509}, + [3194] = {.lex_state = 339}, + [3195] = {.lex_state = 345}, + [3196] = {.lex_state = 308}, + [3197] = {.lex_state = 308}, + [3198] = {.lex_state = 363}, + [3199] = {.lex_state = 363}, + [3200] = {.lex_state = 353}, + [3201] = {.lex_state = 345}, + [3202] = {.lex_state = 322}, + [3203] = {.lex_state = 363}, + [3204] = {.lex_state = 509}, + [3205] = {.lex_state = 322}, + [3206] = {.lex_state = 339}, + [3207] = {.lex_state = 363}, + [3208] = {.lex_state = 339}, + [3209] = {.lex_state = 339}, + [3210] = {.lex_state = 339}, + [3211] = {.lex_state = 363}, + [3212] = {.lex_state = 308}, + [3213] = {.lex_state = 322}, + [3214] = {.lex_state = 339}, + [3215] = {.lex_state = 339}, + [3216] = {.lex_state = 363}, + [3217] = {.lex_state = 363}, + [3218] = {.lex_state = 339}, + [3219] = {.lex_state = 363}, + [3220] = {.lex_state = 363}, + [3221] = {.lex_state = 339}, + [3222] = {.lex_state = 339}, + [3223] = {.lex_state = 308}, + [3224] = {.lex_state = 363}, + [3225] = {.lex_state = 363}, + [3226] = {.lex_state = 348}, + [3227] = {.lex_state = 345}, + [3228] = {.lex_state = 324}, + [3229] = {.lex_state = 339}, + [3230] = {.lex_state = 363}, + [3231] = {.lex_state = 345}, + [3232] = {.lex_state = 363}, + [3233] = {.lex_state = 339}, + [3234] = {.lex_state = 504}, + [3235] = {.lex_state = 339}, + [3236] = {.lex_state = 339}, + [3237] = {.lex_state = 348}, + [3238] = {.lex_state = 504}, + [3239] = {.lex_state = 339}, + [3240] = {.lex_state = 363}, + [3241] = {.lex_state = 339}, + [3242] = {.lex_state = 348}, + [3243] = {.lex_state = 353}, + [3244] = {.lex_state = 345}, + [3245] = {.lex_state = 339}, + [3246] = {.lex_state = 353}, + [3247] = {.lex_state = 339}, + [3248] = {.lex_state = 345}, + [3249] = {.lex_state = 363}, + [3250] = {.lex_state = 339}, + [3251] = {.lex_state = 363}, + [3252] = {.lex_state = 308}, + [3253] = {.lex_state = 324}, + [3254] = {.lex_state = 320}, + [3255] = {.lex_state = 345}, + [3256] = {.lex_state = 339}, + [3257] = {.lex_state = 345}, + [3258] = {.lex_state = 363}, + [3259] = {.lex_state = 363}, + [3260] = {.lex_state = 339}, + [3261] = {.lex_state = 339}, + [3262] = {.lex_state = 345}, + [3263] = {.lex_state = 339}, + [3264] = {.lex_state = 320}, + [3265] = {.lex_state = 339}, + [3266] = {.lex_state = 363}, + [3267] = {.lex_state = 339}, + [3268] = {.lex_state = 353}, + [3269] = {.lex_state = 363}, + [3270] = {.lex_state = 320}, + [3271] = {.lex_state = 363}, + [3272] = {.lex_state = 339}, + [3273] = {.lex_state = 353}, + [3274] = {.lex_state = 320}, + [3275] = {.lex_state = 345}, + [3276] = {.lex_state = 320}, + [3277] = {.lex_state = 339}, + [3278] = {.lex_state = 339}, + [3279] = {.lex_state = 353}, + [3280] = {.lex_state = 353}, + [3281] = {.lex_state = 320}, + [3282] = {.lex_state = 339}, + [3283] = {.lex_state = 320}, + [3284] = {.lex_state = 320}, + [3285] = {.lex_state = 339}, + [3286] = {.lex_state = 339}, + [3287] = {.lex_state = 320}, + [3288] = {.lex_state = 320}, + [3289] = {.lex_state = 320}, + [3290] = {.lex_state = 322}, + [3291] = {.lex_state = 320}, + [3292] = {.lex_state = 363}, + [3293] = {.lex_state = 363}, + [3294] = {.lex_state = 363}, + [3295] = {.lex_state = 353}, + [3296] = {.lex_state = 339}, + [3297] = {.lex_state = 363}, + [3298] = {.lex_state = 363}, + [3299] = {.lex_state = 363}, + [3300] = {.lex_state = 363}, + [3301] = {.lex_state = 339}, + [3302] = {.lex_state = 353}, + [3303] = {.lex_state = 339}, + [3304] = {.lex_state = 363}, + [3305] = {.lex_state = 345}, + [3306] = {.lex_state = 339}, + [3307] = {.lex_state = 326}, + [3308] = {.lex_state = 338}, + [3309] = {.lex_state = 339}, + [3310] = {.lex_state = 363}, + [3311] = {.lex_state = 322}, + [3312] = {.lex_state = 363}, + [3313] = {.lex_state = 353}, + [3314] = {.lex_state = 353}, + [3315] = {.lex_state = 348}, + [3316] = {.lex_state = 353}, + [3317] = {.lex_state = 353}, + [3318] = {.lex_state = 363}, + [3319] = {.lex_state = 363}, + [3320] = {.lex_state = 339}, + [3321] = {.lex_state = 339}, + [3322] = {.lex_state = 388}, + [3323] = {.lex_state = 382}, + [3324] = {.lex_state = 382}, + [3325] = {.lex_state = 339}, + [3326] = {.lex_state = 322}, + [3327] = {.lex_state = 380}, + [3328] = {.lex_state = 322}, + [3329] = {.lex_state = 339}, + [3330] = {.lex_state = 353}, + [3331] = {.lex_state = 345}, + [3332] = {.lex_state = 345}, + [3333] = {.lex_state = 353}, + [3334] = {.lex_state = 322}, + [3335] = {.lex_state = 322}, + [3336] = {.lex_state = 322}, + [3337] = {.lex_state = 322}, + [3338] = {.lex_state = 339}, + [3339] = {.lex_state = 339}, + [3340] = {.lex_state = 322}, + [3341] = {.lex_state = 322}, + [3342] = {.lex_state = 322}, + [3343] = {.lex_state = 322}, + [3344] = {.lex_state = 387}, + [3345] = {.lex_state = 288}, + [3346] = {.lex_state = 322}, + [3347] = {.lex_state = 322}, + [3348] = {.lex_state = 345}, + [3349] = {.lex_state = 345}, + [3350] = {.lex_state = 509}, + [3351] = {.lex_state = 347}, + [3352] = {.lex_state = 345}, + [3353] = {.lex_state = 509}, + [3354] = {.lex_state = 509}, + [3355] = {.lex_state = 322}, + [3356] = {.lex_state = 345}, + [3357] = {.lex_state = 322}, + [3358] = {.lex_state = 345}, + [3359] = {.lex_state = 345}, + [3360] = {.lex_state = 322}, + [3361] = {.lex_state = 509}, + [3362] = {.lex_state = 509}, + [3363] = {.lex_state = 322}, + [3364] = {.lex_state = 339}, + [3365] = {.lex_state = 322}, + [3366] = {.lex_state = 345}, + [3367] = {.lex_state = 322}, + [3368] = {.lex_state = 382}, + [3369] = {.lex_state = 322}, + [3370] = {.lex_state = 345}, + [3371] = {.lex_state = 345}, + [3372] = {.lex_state = 288}, + [3373] = {.lex_state = 322}, + [3374] = {.lex_state = 339}, + [3375] = {.lex_state = 382}, + [3376] = {.lex_state = 345}, + [3377] = {.lex_state = 345}, + [3378] = {.lex_state = 382}, + [3379] = {.lex_state = 353}, + [3380] = {.lex_state = 509}, + [3381] = {.lex_state = 345}, + [3382] = {.lex_state = 322}, + [3383] = {.lex_state = 322}, + [3384] = {.lex_state = 322}, + [3385] = {.lex_state = 382}, + [3386] = {.lex_state = 322}, + [3387] = {.lex_state = 355}, + [3388] = {.lex_state = 345}, + [3389] = {.lex_state = 322}, + [3390] = {.lex_state = 339}, + [3391] = {.lex_state = 339}, + [3392] = {.lex_state = 308}, + [3393] = {.lex_state = 339}, + [3394] = {.lex_state = 348}, + [3395] = {.lex_state = 339}, + [3396] = {.lex_state = 339}, + [3397] = {.lex_state = 288}, + [3398] = {.lex_state = 322}, + [3399] = {.lex_state = 322}, + [3400] = {.lex_state = 322}, + [3401] = {.lex_state = 339}, + [3402] = {.lex_state = 322}, + [3403] = {.lex_state = 308}, + [3404] = {.lex_state = 322}, + [3405] = {.lex_state = 322}, + [3406] = {.lex_state = 339}, + [3407] = {.lex_state = 322}, + [3408] = {.lex_state = 345}, + [3409] = {.lex_state = 322}, + [3410] = {.lex_state = 322}, + [3411] = {.lex_state = 345}, + [3412] = {.lex_state = 322}, + [3413] = {.lex_state = 322}, + [3414] = {.lex_state = 322}, + [3415] = {.lex_state = 345}, + [3416] = {.lex_state = 322}, + [3417] = {.lex_state = 339}, + [3418] = {.lex_state = 509}, + [3419] = {.lex_state = 339}, + [3420] = {.lex_state = 345}, + [3421] = {.lex_state = 339}, + [3422] = {.lex_state = 322}, + [3423] = {.lex_state = 345}, + [3424] = {.lex_state = 322}, + [3425] = {.lex_state = 322}, + [3426] = {.lex_state = 509}, + [3427] = {.lex_state = 509}, + [3428] = {.lex_state = 339}, + [3429] = {.lex_state = 339}, + [3430] = {.lex_state = 339}, + [3431] = {.lex_state = 509}, + [3432] = {.lex_state = 345}, + [3433] = {.lex_state = 348}, + [3434] = {.lex_state = 509}, + [3435] = {.lex_state = 345}, + [3436] = {.lex_state = 322}, + [3437] = {.lex_state = 322}, + [3438] = {.lex_state = 322}, + [3439] = {.lex_state = 322}, + [3440] = {.lex_state = 322}, + [3441] = {.lex_state = 322}, + [3442] = {.lex_state = 322}, + [3443] = {.lex_state = 322}, + [3444] = {.lex_state = 345}, + [3445] = {.lex_state = 345}, + [3446] = {.lex_state = 322}, + [3447] = {.lex_state = 322}, + [3448] = {.lex_state = 345}, + [3449] = {.lex_state = 339}, + [3450] = {.lex_state = 345}, + [3451] = {.lex_state = 339}, + [3452] = {.lex_state = 322}, + [3453] = {.lex_state = 382}, + [3454] = {.lex_state = 345}, + [3455] = {.lex_state = 339}, + [3456] = {.lex_state = 322}, + [3457] = {.lex_state = 322}, + [3458] = {.lex_state = 345}, + [3459] = {.lex_state = 322}, + [3460] = {.lex_state = 322}, + [3461] = {.lex_state = 322}, + [3462] = {.lex_state = 322}, + [3463] = {.lex_state = 322}, + [3464] = {.lex_state = 322}, + [3465] = {.lex_state = 345}, + [3466] = {.lex_state = 390}, + [3467] = {.lex_state = 382}, + [3468] = {.lex_state = 353}, + [3469] = {.lex_state = 322}, + [3470] = {.lex_state = 322}, + [3471] = {.lex_state = 345}, + [3472] = {.lex_state = 322}, + [3473] = {.lex_state = 353}, + [3474] = {.lex_state = 355}, + [3475] = {.lex_state = 382}, + [3476] = {.lex_state = 338}, + [3477] = {.lex_state = 345}, + [3478] = {.lex_state = 380}, + [3479] = {.lex_state = 339}, + [3480] = {.lex_state = 509}, + [3481] = {.lex_state = 345}, + [3482] = {.lex_state = 322}, + [3483] = {.lex_state = 345}, + [3484] = {.lex_state = 322}, + [3485] = {.lex_state = 509}, + [3486] = {.lex_state = 322}, + [3487] = {.lex_state = 322}, + [3488] = {.lex_state = 322}, + [3489] = {.lex_state = 345}, + [3490] = {.lex_state = 353}, + [3491] = {.lex_state = 509}, + [3492] = {.lex_state = 322}, + [3493] = {.lex_state = 322}, + [3494] = {.lex_state = 353}, + [3495] = {.lex_state = 509}, + [3496] = {.lex_state = 340}, + [3497] = {.lex_state = 339}, + [3498] = {.lex_state = 339}, + [3499] = {.lex_state = 339}, + [3500] = {.lex_state = 322}, + [3501] = {.lex_state = 339}, + [3502] = {.lex_state = 322}, + [3503] = {.lex_state = 509}, + [3504] = {.lex_state = 339}, + [3505] = {.lex_state = 345}, + [3506] = {.lex_state = 339}, + [3507] = {.lex_state = 320}, + [3508] = {.lex_state = 320}, + [3509] = {.lex_state = 339}, + [3510] = {.lex_state = 339}, + [3511] = {.lex_state = 339}, + [3512] = {.lex_state = 339}, + [3513] = {.lex_state = 339}, + [3514] = {.lex_state = 339}, + [3515] = {.lex_state = 355}, + [3516] = {.lex_state = 322}, + [3517] = {.lex_state = 353}, + [3518] = {.lex_state = 339}, + [3519] = {.lex_state = 322}, + [3520] = {.lex_state = 353}, + [3521] = {.lex_state = 322}, + [3522] = {.lex_state = 509}, + [3523] = {.lex_state = 322}, + [3524] = {.lex_state = 322}, + [3525] = {.lex_state = 355}, + [3526] = {.lex_state = 509}, + [3527] = {.lex_state = 322}, + [3528] = {.lex_state = 339}, + [3529] = {.lex_state = 515}, + [3530] = {.lex_state = 338}, + [3531] = {.lex_state = 382}, + [3532] = {.lex_state = 380}, + [3533] = {.lex_state = 353}, + [3534] = {.lex_state = 353}, + [3535] = {.lex_state = 344}, + [3536] = {.lex_state = 345}, + [3537] = {.lex_state = 353}, + [3538] = {.lex_state = 382}, + [3539] = {.lex_state = 345}, + [3540] = {.lex_state = 382}, + [3541] = {.lex_state = 382}, + [3542] = {.lex_state = 339}, + [3543] = {.lex_state = 339}, + [3544] = {.lex_state = 339}, + [3545] = {.lex_state = 339}, + [3546] = {.lex_state = 382}, + [3547] = {.lex_state = 345}, + [3548] = {.lex_state = 339}, + [3549] = {.lex_state = 320}, + [3550] = {.lex_state = 513}, + [3551] = {.lex_state = 382}, + [3552] = {.lex_state = 353}, + [3553] = {.lex_state = 504}, + [3554] = {.lex_state = 339}, + [3555] = {.lex_state = 353}, + [3556] = {.lex_state = 353}, + [3557] = {.lex_state = 382}, + [3558] = {.lex_state = 320}, + [3559] = {.lex_state = 339}, + [3560] = {.lex_state = 382}, + [3561] = {.lex_state = 382}, + [3562] = {.lex_state = 382}, + [3563] = {.lex_state = 353}, + [3564] = {.lex_state = 382}, + [3565] = {.lex_state = 353}, + [3566] = {.lex_state = 353}, + [3567] = {.lex_state = 353}, + [3568] = {.lex_state = 345}, + [3569] = {.lex_state = 308}, + [3570] = {.lex_state = 382}, + [3571] = {.lex_state = 353}, + [3572] = {.lex_state = 320}, + [3573] = {.lex_state = 342}, + [3574] = {.lex_state = 339}, + [3575] = {.lex_state = 504}, + [3576] = {.lex_state = 353}, + [3577] = {.lex_state = 288}, + [3578] = {.lex_state = 345}, + [3579] = {.lex_state = 382}, + [3580] = {.lex_state = 353}, + [3581] = {.lex_state = 504}, + [3582] = {.lex_state = 308}, + [3583] = {.lex_state = 345}, + [3584] = {.lex_state = 510}, + [3585] = {.lex_state = 353}, + [3586] = {.lex_state = 339}, + [3587] = {.lex_state = 345}, + [3588] = {.lex_state = 509}, + [3589] = {.lex_state = 339}, + [3590] = {.lex_state = 382}, + [3591] = {.lex_state = 345}, + [3592] = {.lex_state = 353}, + [3593] = {.lex_state = 345}, + [3594] = {.lex_state = 513}, + [3595] = {.lex_state = 382}, + [3596] = {.lex_state = 345}, + [3597] = {.lex_state = 382}, + [3598] = {.lex_state = 353}, + [3599] = {.lex_state = 382}, + [3600] = {.lex_state = 382}, + [3601] = {.lex_state = 345}, + [3602] = {.lex_state = 345}, + [3603] = {.lex_state = 308}, + [3604] = {.lex_state = 308}, + [3605] = {.lex_state = 382}, + [3606] = {.lex_state = 353}, + [3607] = {.lex_state = 339}, + [3608] = {.lex_state = 382}, + [3609] = {.lex_state = 387}, + [3610] = {.lex_state = 308}, + [3611] = {.lex_state = 345}, + [3612] = {.lex_state = 345}, + [3613] = {.lex_state = 308}, + [3614] = {.lex_state = 339}, + [3615] = {.lex_state = 308}, + [3616] = {.lex_state = 320}, + [3617] = {.lex_state = 382}, + [3618] = {.lex_state = 353}, + [3619] = {.lex_state = 308}, + [3620] = {.lex_state = 513}, + [3621] = {.lex_state = 339}, + [3622] = {.lex_state = 353}, + [3623] = {.lex_state = 353}, + [3624] = {.lex_state = 355}, + [3625] = {.lex_state = 339}, + [3626] = {.lex_state = 382}, + [3627] = {.lex_state = 345}, + [3628] = {.lex_state = 308}, + [3629] = {.lex_state = 382}, + [3630] = {.lex_state = 382}, + [3631] = {.lex_state = 353}, + [3632] = {.lex_state = 353}, + [3633] = {.lex_state = 308}, + [3634] = {.lex_state = 353}, + [3635] = {.lex_state = 308}, + [3636] = {.lex_state = 339}, + [3637] = {.lex_state = 387}, + [3638] = {.lex_state = 382}, + [3639] = {.lex_state = 308}, + [3640] = {.lex_state = 382}, + [3641] = {.lex_state = 382}, + [3642] = {.lex_state = 308}, + [3643] = {.lex_state = 345}, + [3644] = {.lex_state = 387}, + [3645] = {.lex_state = 345}, + [3646] = {.lex_state = 510}, + [3647] = {.lex_state = 342}, + [3648] = {.lex_state = 382}, + [3649] = {.lex_state = 353}, + [3650] = {.lex_state = 353}, + [3651] = {.lex_state = 504}, + [3652] = {.lex_state = 339}, + [3653] = {.lex_state = 355}, + [3654] = {.lex_state = 382}, + [3655] = {.lex_state = 338}, + [3656] = {.lex_state = 345}, + [3657] = {.lex_state = 353}, + [3658] = {.lex_state = 339}, + [3659] = {.lex_state = 382}, + [3660] = {.lex_state = 308}, + [3661] = {.lex_state = 345}, + [3662] = {.lex_state = 504}, + [3663] = {.lex_state = 353}, + [3664] = {.lex_state = 353}, + [3665] = {.lex_state = 364}, + [3666] = {.lex_state = 339}, + [3667] = {.lex_state = 353}, + [3668] = {.lex_state = 339}, + [3669] = {.lex_state = 308}, + [3670] = {.lex_state = 345}, + [3671] = {.lex_state = 339}, + [3672] = {.lex_state = 308}, + [3673] = {.lex_state = 339}, + [3674] = {.lex_state = 345}, + [3675] = {.lex_state = 382}, + [3676] = {.lex_state = 339}, + [3677] = {.lex_state = 339}, + [3678] = {.lex_state = 353}, + [3679] = {.lex_state = 353}, + [3680] = {.lex_state = 308}, + [3681] = {.lex_state = 339}, + [3682] = {.lex_state = 339}, + [3683] = {.lex_state = 320}, + [3684] = {.lex_state = 353}, + [3685] = {.lex_state = 353}, + [3686] = {.lex_state = 353}, + [3687] = {.lex_state = 382}, + [3688] = {.lex_state = 382}, + [3689] = {.lex_state = 320}, + [3690] = {.lex_state = 308}, + [3691] = {.lex_state = 345}, + [3692] = {.lex_state = 345}, + [3693] = {.lex_state = 339}, + [3694] = {.lex_state = 345}, + [3695] = {.lex_state = 504}, + [3696] = {.lex_state = 387}, + [3697] = {.lex_state = 345}, + [3698] = {.lex_state = 382}, + [3699] = {.lex_state = 308}, + [3700] = {.lex_state = 509}, + [3701] = {.lex_state = 504}, + [3702] = {.lex_state = 345}, + [3703] = {.lex_state = 353}, + [3704] = {.lex_state = 382}, + [3705] = {.lex_state = 387}, + [3706] = {.lex_state = 380}, + [3707] = {.lex_state = 339}, + [3708] = {.lex_state = 380}, + [3709] = {.lex_state = 339}, + [3710] = {.lex_state = 339}, + [3711] = {.lex_state = 339}, + [3712] = {.lex_state = 339}, + [3713] = {.lex_state = 304}, + [3714] = {.lex_state = 380}, + [3715] = {.lex_state = 353}, + [3716] = {.lex_state = 380}, + [3717] = {.lex_state = 387}, + [3718] = {.lex_state = 380}, + [3719] = {.lex_state = 339}, + [3720] = {.lex_state = 339}, + [3721] = {.lex_state = 339}, + [3722] = {.lex_state = 353}, + [3723] = {.lex_state = 382}, + [3724] = {.lex_state = 339}, + [3725] = {.lex_state = 382}, + [3726] = {.lex_state = 350}, + [3727] = {.lex_state = 339}, + [3728] = {.lex_state = 353}, + [3729] = {.lex_state = 345}, + [3730] = {.lex_state = 380}, + [3731] = {.lex_state = 382}, + [3732] = {.lex_state = 382}, + [3733] = {.lex_state = 339}, + [3734] = {.lex_state = 380}, + [3735] = {.lex_state = 339}, + [3736] = {.lex_state = 348}, + [3737] = {.lex_state = 339}, + [3738] = {.lex_state = 353}, + [3739] = {.lex_state = 339}, + [3740] = {.lex_state = 353}, + [3741] = {.lex_state = 380}, + [3742] = {.lex_state = 339}, + [3743] = {.lex_state = 339}, + [3744] = {.lex_state = 339}, + [3745] = {.lex_state = 339}, + [3746] = {.lex_state = 339}, + [3747] = {.lex_state = 339}, + [3748] = {.lex_state = 339}, + [3749] = {.lex_state = 339}, + [3750] = {.lex_state = 339}, + [3751] = {.lex_state = 509}, + [3752] = {.lex_state = 339}, + [3753] = {.lex_state = 339}, + [3754] = {.lex_state = 339}, + [3755] = {.lex_state = 380}, + [3756] = {.lex_state = 350}, + [3757] = {.lex_state = 339}, + [3758] = {.lex_state = 339}, + [3759] = {.lex_state = 339}, + [3760] = {.lex_state = 380}, + [3761] = {.lex_state = 339}, + [3762] = {.lex_state = 339}, + [3763] = {.lex_state = 339}, + [3764] = {.lex_state = 380}, + [3765] = {.lex_state = 339}, + [3766] = {.lex_state = 339}, + [3767] = {.lex_state = 339}, + [3768] = {.lex_state = 339}, + [3769] = {.lex_state = 339}, + [3770] = {.lex_state = 339}, + [3771] = {.lex_state = 339}, + [3772] = {.lex_state = 380}, + [3773] = {.lex_state = 509}, + [3774] = {.lex_state = 339}, + [3775] = {.lex_state = 348}, + [3776] = {.lex_state = 339}, + [3777] = {.lex_state = 339}, + [3778] = {.lex_state = 348}, + [3779] = {.lex_state = 339}, + [3780] = {.lex_state = 339}, + [3781] = {.lex_state = 339}, + [3782] = {.lex_state = 339}, + [3783] = {.lex_state = 348}, + [3784] = {.lex_state = 339}, + [3785] = {.lex_state = 339}, + [3786] = {.lex_state = 339}, + [3787] = {.lex_state = 339}, + [3788] = {.lex_state = 380}, + [3789] = {.lex_state = 339}, + [3790] = {.lex_state = 339}, + [3791] = {.lex_state = 339}, + [3792] = {.lex_state = 304}, + [3793] = {.lex_state = 339}, + [3794] = {.lex_state = 380}, + [3795] = {.lex_state = 339}, + [3796] = {.lex_state = 339}, + [3797] = {.lex_state = 345}, + [3798] = {.lex_state = 339}, + [3799] = {.lex_state = 339}, + [3800] = {.lex_state = 339}, + [3801] = {.lex_state = 339}, + [3802] = {.lex_state = 348}, + [3803] = {.lex_state = 339}, + [3804] = {.lex_state = 380}, + [3805] = {.lex_state = 339}, + [3806] = {.lex_state = 339}, + [3807] = {.lex_state = 339}, + [3808] = {.lex_state = 339}, + [3809] = {.lex_state = 380}, + [3810] = {.lex_state = 339}, + [3811] = {.lex_state = 339}, + [3812] = {.lex_state = 339}, + [3813] = {.lex_state = 339}, + [3814] = {.lex_state = 339}, + [3815] = {.lex_state = 339}, + [3816] = {.lex_state = 348}, + [3817] = {.lex_state = 339}, + [3818] = {.lex_state = 339}, + [3819] = {.lex_state = 339}, + [3820] = {.lex_state = 339}, + [3821] = {.lex_state = 348}, + [3822] = {.lex_state = 339}, + [3823] = {.lex_state = 353}, + [3824] = {.lex_state = 348}, + [3825] = {.lex_state = 339}, + [3826] = {.lex_state = 382}, + [3827] = {.lex_state = 339}, + [3828] = {.lex_state = 339}, + [3829] = {.lex_state = 339}, + [3830] = {.lex_state = 382}, + [3831] = {.lex_state = 339}, + [3832] = {.lex_state = 339}, + [3833] = {.lex_state = 382}, + [3834] = {.lex_state = 339}, + [3835] = {.lex_state = 353}, + [3836] = {.lex_state = 339}, + [3837] = {.lex_state = 339}, + [3838] = {.lex_state = 348}, + [3839] = {.lex_state = 339}, + [3840] = {.lex_state = 339}, + [3841] = {.lex_state = 339}, + [3842] = {.lex_state = 353}, + [3843] = {.lex_state = 353}, + [3844] = {.lex_state = 387}, + [3845] = {.lex_state = 339}, + [3846] = {.lex_state = 345}, + [3847] = {.lex_state = 339}, + [3848] = {.lex_state = 339}, + [3849] = {.lex_state = 513}, + [3850] = {.lex_state = 353}, + [3851] = {.lex_state = 353}, + [3852] = {.lex_state = 339}, + [3853] = {.lex_state = 387}, + [3854] = {.lex_state = 380}, + [3855] = {.lex_state = 380}, + [3856] = {.lex_state = 339}, + [3857] = {.lex_state = 339}, + [3858] = {.lex_state = 304}, + [3859] = {.lex_state = 382}, + [3860] = {.lex_state = 353}, + [3861] = {.lex_state = 348}, + [3862] = {.lex_state = 514}, + [3863] = {.lex_state = 387}, + [3864] = {.lex_state = 514}, + [3865] = {.lex_state = 380}, + [3866] = {.lex_state = 380}, + [3867] = {.lex_state = 387}, + [3868] = {.lex_state = 339}, + [3869] = {.lex_state = 339}, + [3870] = {.lex_state = 380}, + [3871] = {.lex_state = 352}, + [3872] = {.lex_state = 387}, + [3873] = {.lex_state = 339}, + [3874] = {.lex_state = 348}, + [3875] = {.lex_state = 380}, + [3876] = {.lex_state = 353}, + [3877] = {.lex_state = 380}, + [3878] = {.lex_state = 348}, + [3879] = {.lex_state = 382}, + [3880] = {.lex_state = 353}, + [3881] = {.lex_state = 353}, + [3882] = {.lex_state = 353}, + [3883] = {.lex_state = 353}, + [3884] = {.lex_state = 353}, + [3885] = {.lex_state = 353}, + [3886] = {.lex_state = 353}, + [3887] = {.lex_state = 353}, + [3888] = {.lex_state = 353}, + [3889] = {.lex_state = 353}, + [3890] = {.lex_state = 353}, + [3891] = {.lex_state = 353}, + [3892] = {.lex_state = 345}, + [3893] = {.lex_state = 509}, + [3894] = {.lex_state = 509}, + [3895] = {.lex_state = 509}, + [3896] = {.lex_state = 509}, + [3897] = {.lex_state = 509}, + [3898] = {.lex_state = 509}, + [3899] = {.lex_state = 509}, + [3900] = {.lex_state = 509}, + [3901] = {.lex_state = 509}, + [3902] = {.lex_state = 509}, + [3903] = {.lex_state = 509}, + [3904] = {.lex_state = 509}, + [3905] = {.lex_state = 509}, + [3906] = {.lex_state = 509}, + [3907] = {.lex_state = 509}, + [3908] = {.lex_state = 509}, + [3909] = {.lex_state = 509}, + [3910] = {.lex_state = 387}, + [3911] = {.lex_state = 353}, + [3912] = {.lex_state = 339}, + [3913] = {.lex_state = 339}, + [3914] = {.lex_state = 339}, + [3915] = {.lex_state = 339}, + [3916] = {.lex_state = 382}, + [3917] = {.lex_state = 339}, + [3918] = {.lex_state = 339}, + [3919] = {.lex_state = 339}, + [3920] = {.lex_state = 339}, + [3921] = {.lex_state = 339}, + [3922] = {.lex_state = 509}, + [3923] = {.lex_state = 339}, + [3924] = {.lex_state = 339}, + [3925] = {.lex_state = 339}, + [3926] = {.lex_state = 382}, + [3927] = {.lex_state = 387}, + [3928] = {.lex_state = 339}, + [3929] = {.lex_state = 387}, + [3930] = {.lex_state = 387}, + [3931] = {.lex_state = 380}, + [3932] = {.lex_state = 387}, + [3933] = {.lex_state = 387}, + [3934] = {.lex_state = 387}, + [3935] = {.lex_state = 382}, + [3936] = {.lex_state = 339}, + [3937] = {.lex_state = 339}, + [3938] = {.lex_state = 355}, + [3939] = {.lex_state = 345}, + [3940] = {.lex_state = 339}, + [3941] = {.lex_state = 387}, + [3942] = {.lex_state = 355}, + [3943] = {.lex_state = 382}, + [3944] = {.lex_state = 345}, + [3945] = {.lex_state = 382}, + [3946] = {.lex_state = 513}, + [3947] = {.lex_state = 345}, + [3948] = {.lex_state = 345}, + [3949] = {.lex_state = 345}, + [3950] = {.lex_state = 345}, + [3951] = {.lex_state = 345}, + [3952] = {.lex_state = 345}, + [3953] = {.lex_state = 345}, + [3954] = {.lex_state = 345}, + [3955] = {.lex_state = 345}, + [3956] = {.lex_state = 339}, + [3957] = {.lex_state = 382}, + [3958] = {.lex_state = 345}, + [3959] = {.lex_state = 515}, + [3960] = {.lex_state = 345}, + [3961] = {.lex_state = 345}, + [3962] = {.lex_state = 345}, + [3963] = {.lex_state = 345}, + [3964] = {.lex_state = 306}, + [3965] = {.lex_state = 504}, + [3966] = {.lex_state = 345}, + [3967] = {.lex_state = 515}, + [3968] = {.lex_state = 339}, + [3969] = {.lex_state = 345}, + [3970] = {.lex_state = 387}, + [3971] = {.lex_state = 345}, + [3972] = {.lex_state = 515}, + [3973] = {.lex_state = 388}, + [3974] = {.lex_state = 339}, + [3975] = {.lex_state = 515}, + [3976] = {.lex_state = 515}, + [3977] = {.lex_state = 353}, + [3978] = {.lex_state = 382}, + [3979] = {.lex_state = 339}, + [3980] = {.lex_state = 515}, + [3981] = {.lex_state = 345}, + [3982] = {.lex_state = 355}, + [3983] = {.lex_state = 382}, + [3984] = {.lex_state = 382}, + [3985] = {.lex_state = 345}, + [3986] = {.lex_state = 345}, + [3987] = {.lex_state = 353}, + [3988] = {.lex_state = 382}, + [3989] = {.lex_state = 345}, + [3990] = {.lex_state = 382}, + [3991] = {.lex_state = 515}, + [3992] = {.lex_state = 515}, + [3993] = {.lex_state = 382}, + [3994] = {.lex_state = 339}, + [3995] = {.lex_state = 515}, + [3996] = {.lex_state = 339}, + [3997] = {.lex_state = 382}, + [3998] = {.lex_state = 382}, + [3999] = {.lex_state = 345}, + [4000] = {.lex_state = 361}, + [4001] = {.lex_state = 345}, + [4002] = {.lex_state = 345}, + [4003] = {.lex_state = 345}, + [4004] = {.lex_state = 345}, + [4005] = {.lex_state = 339}, + [4006] = {.lex_state = 388}, + [4007] = {.lex_state = 329}, + [4008] = {.lex_state = 345}, + [4009] = {.lex_state = 388}, + [4010] = {.lex_state = 355}, + [4011] = {.lex_state = 345}, + [4012] = {.lex_state = 357}, + [4013] = {.lex_state = 345}, + [4014] = {.lex_state = 513}, + [4015] = {.lex_state = 387}, + [4016] = {.lex_state = 339}, + [4017] = {.lex_state = 382}, + [4018] = {.lex_state = 345}, + [4019] = {.lex_state = 339}, + [4020] = {.lex_state = 345}, + [4021] = {.lex_state = 339}, + [4022] = {.lex_state = 339}, + [4023] = {.lex_state = 339}, + [4024] = {.lex_state = 328}, + [4025] = {.lex_state = 339}, + [4026] = {.lex_state = 345}, + [4027] = {.lex_state = 345}, + [4028] = {.lex_state = 387}, + [4029] = {.lex_state = 345}, + [4030] = {.lex_state = 345}, + [4031] = {.lex_state = 355}, + [4032] = {.lex_state = 339}, + [4033] = {.lex_state = 345}, + [4034] = {.lex_state = 345}, + [4035] = {.lex_state = 345}, + [4036] = {.lex_state = 345}, + [4037] = {.lex_state = 355}, + [4038] = {.lex_state = 387}, + [4039] = {.lex_state = 345}, + [4040] = {.lex_state = 387}, + [4041] = {.lex_state = 361}, + [4042] = {.lex_state = 355}, + [4043] = {.lex_state = 339}, + [4044] = {.lex_state = 339}, + [4045] = {.lex_state = 345}, + [4046] = {.lex_state = 509}, + [4047] = {.lex_state = 339}, + [4048] = {.lex_state = 339}, + [4049] = {.lex_state = 345}, + [4050] = {.lex_state = 361}, + [4051] = {.lex_state = 339}, + [4052] = {.lex_state = 345}, + [4053] = {.lex_state = 345}, + [4054] = {.lex_state = 345}, + [4055] = {.lex_state = 361}, + [4056] = {.lex_state = 345}, + [4057] = {.lex_state = 382}, + [4058] = {.lex_state = 382}, + [4059] = {.lex_state = 345}, + [4060] = {.lex_state = 345}, + [4061] = {.lex_state = 345}, + [4062] = {.lex_state = 345}, + [4063] = {.lex_state = 339}, + [4064] = {.lex_state = 345}, + [4065] = {.lex_state = 361}, + [4066] = {.lex_state = 345}, + [4067] = {.lex_state = 345}, + [4068] = {.lex_state = 345}, + [4069] = {.lex_state = 361}, + [4070] = {.lex_state = 353}, + [4071] = {.lex_state = 345}, + [4072] = {.lex_state = 288}, + [4073] = {.lex_state = 288}, + [4074] = {.lex_state = 338}, + [4075] = {.lex_state = 355}, + [4076] = {.lex_state = 345}, + [4077] = {.lex_state = 345}, + [4078] = {.lex_state = 345}, + [4079] = {.lex_state = 345}, + [4080] = {.lex_state = 345}, + [4081] = {.lex_state = 339}, + [4082] = {.lex_state = 288}, + [4083] = {.lex_state = 306}, + [4084] = {.lex_state = 345}, + [4085] = {.lex_state = 288}, + [4086] = {.lex_state = 345}, + [4087] = {.lex_state = 345}, + [4088] = {.lex_state = 387}, + [4089] = {.lex_state = 513}, + [4090] = {.lex_state = 359}, + [4091] = {.lex_state = 345}, + [4092] = {.lex_state = 361}, + [4093] = {.lex_state = 355}, + [4094] = {.lex_state = 361}, + [4095] = {.lex_state = 361}, + [4096] = {.lex_state = 361}, + [4097] = {.lex_state = 345}, + [4098] = {.lex_state = 345}, + [4099] = {.lex_state = 345}, + [4100] = {.lex_state = 345}, + [4101] = {.lex_state = 355}, + [4102] = {.lex_state = 345}, + [4103] = {.lex_state = 345}, + [4104] = {.lex_state = 357}, + [4105] = {.lex_state = 355}, + [4106] = {.lex_state = 339}, + [4107] = {.lex_state = 355}, + [4108] = {.lex_state = 345}, + [4109] = {.lex_state = 306}, + [4110] = {.lex_state = 345}, + [4111] = {.lex_state = 345}, + [4112] = {.lex_state = 345}, + [4113] = {.lex_state = 345}, + [4114] = {.lex_state = 387}, + [4115] = {.lex_state = 339}, + [4116] = {.lex_state = 345}, + [4117] = {.lex_state = 353}, + [4118] = {.lex_state = 353}, + [4119] = {.lex_state = 382}, + [4120] = {.lex_state = 353}, + [4121] = {.lex_state = 353}, + [4122] = {.lex_state = 513}, + [4123] = {.lex_state = 513}, + [4124] = {.lex_state = 515}, + [4125] = {.lex_state = 382}, + [4126] = {.lex_state = 513}, + [4127] = {.lex_state = 353}, + [4128] = {.lex_state = 353}, + [4129] = {.lex_state = 353}, + [4130] = {.lex_state = 353}, + [4131] = {.lex_state = 353}, + [4132] = {.lex_state = 353}, + [4133] = {.lex_state = 353}, + [4134] = {.lex_state = 353}, + [4135] = {.lex_state = 342}, + [4136] = {.lex_state = 339}, + [4137] = {.lex_state = 353}, + [4138] = {.lex_state = 353}, + [4139] = {.lex_state = 353}, + [4140] = {.lex_state = 353}, + [4141] = {.lex_state = 353}, + [4142] = {.lex_state = 353}, + [4143] = {.lex_state = 353}, + [4144] = {.lex_state = 353}, + [4145] = {.lex_state = 353}, + [4146] = {.lex_state = 353}, + [4147] = {.lex_state = 353}, + [4148] = {.lex_state = 353}, + [4149] = {.lex_state = 353}, + [4150] = {.lex_state = 382}, + [4151] = {.lex_state = 353}, + [4152] = {.lex_state = 353}, + [4153] = {.lex_state = 353}, + [4154] = {.lex_state = 513}, + [4155] = {.lex_state = 353}, + [4156] = {.lex_state = 353}, + [4157] = {.lex_state = 353}, + [4158] = {.lex_state = 353}, + [4159] = {.lex_state = 353}, + [4160] = {.lex_state = 353}, + [4161] = {.lex_state = 353}, + [4162] = {.lex_state = 353}, + [4163] = {.lex_state = 353}, + [4164] = {.lex_state = 353}, + [4165] = {.lex_state = 353}, + [4166] = {.lex_state = 353}, + [4167] = {.lex_state = 515}, + [4168] = {.lex_state = 353}, + [4169] = {.lex_state = 382}, + [4170] = {.lex_state = 353}, + [4171] = {.lex_state = 382}, + [4172] = {.lex_state = 353}, + [4173] = {.lex_state = 353}, + [4174] = {.lex_state = 353}, + [4175] = {.lex_state = 515}, + [4176] = {.lex_state = 353}, + [4177] = {.lex_state = 388}, + [4178] = {.lex_state = 353}, + [4179] = {.lex_state = 513}, + [4180] = {.lex_state = 353}, + [4181] = {.lex_state = 515}, + [4182] = {.lex_state = 353}, + [4183] = {.lex_state = 382}, + [4184] = {.lex_state = 382}, + [4185] = {.lex_state = 353}, + [4186] = {.lex_state = 382}, + [4187] = {.lex_state = 382}, + [4188] = {.lex_state = 328}, + [4189] = {.lex_state = 515}, + [4190] = {.lex_state = 353}, + [4191] = {.lex_state = 518}, + [4192] = {.lex_state = 388}, + [4193] = {.lex_state = 353}, + [4194] = {.lex_state = 518}, + [4195] = {.lex_state = 518}, + [4196] = {.lex_state = 515}, + [4197] = {.lex_state = 388}, + [4198] = {.lex_state = 353}, + [4199] = {.lex_state = 353}, + [4200] = {.lex_state = 353}, + [4201] = {.lex_state = 353}, + [4202] = {.lex_state = 353}, + [4203] = {.lex_state = 353}, + [4204] = {.lex_state = 353}, + [4205] = {.lex_state = 353}, + [4206] = {.lex_state = 513}, + [4207] = {.lex_state = 515}, + [4208] = {.lex_state = 513}, + [4209] = {.lex_state = 513}, + [4210] = {.lex_state = 513}, + [4211] = {.lex_state = 513}, + [4212] = {.lex_state = 513}, + [4213] = {.lex_state = 513}, + [4214] = {.lex_state = 513}, + [4215] = {.lex_state = 382}, + [4216] = {.lex_state = 353}, + [4217] = {.lex_state = 353}, + [4218] = {.lex_state = 382}, + [4219] = {.lex_state = 353}, + [4220] = {.lex_state = 353}, + [4221] = {.lex_state = 388}, + [4222] = {.lex_state = 504}, + [4223] = {.lex_state = 504}, + [4224] = {.lex_state = 353}, + [4225] = {.lex_state = 504}, + [4226] = {.lex_state = 504}, + [4227] = {.lex_state = 515}, + [4228] = {.lex_state = 353}, + [4229] = {.lex_state = 353}, + [4230] = {.lex_state = 353}, + [4231] = {.lex_state = 353}, + [4232] = {.lex_state = 353}, + [4233] = {.lex_state = 353}, + [4234] = {.lex_state = 353}, + [4235] = {.lex_state = 353}, + [4236] = {.lex_state = 353}, + [4237] = {.lex_state = 353}, + [4238] = {.lex_state = 353}, + [4239] = {.lex_state = 339}, + [4240] = {.lex_state = 353}, + [4241] = {.lex_state = 509}, + [4242] = {.lex_state = 304}, + [4243] = {.lex_state = 342}, + [4244] = {.lex_state = 382}, + [4245] = {.lex_state = 353}, + [4246] = {.lex_state = 387}, + [4247] = {.lex_state = 339}, + [4248] = {.lex_state = 382}, + [4249] = {.lex_state = 515}, + [4250] = {.lex_state = 515}, + [4251] = {.lex_state = 515}, + [4252] = {.lex_state = 515}, + [4253] = {.lex_state = 515}, + [4254] = {.lex_state = 515}, + [4255] = {.lex_state = 515}, + [4256] = {.lex_state = 339}, + [4257] = {.lex_state = 339}, + [4258] = {.lex_state = 339}, + [4259] = {.lex_state = 339}, + [4260] = {.lex_state = 515}, + [4261] = {.lex_state = 339}, + [4262] = {.lex_state = 515}, + [4263] = {.lex_state = 339}, + [4264] = {.lex_state = 339}, + [4265] = {.lex_state = 515}, + [4266] = {.lex_state = 339}, + [4267] = {.lex_state = 515}, + [4268] = {.lex_state = 339}, + [4269] = {.lex_state = 361}, + [4270] = {.lex_state = 515}, + [4271] = {.lex_state = 339}, + [4272] = {.lex_state = 515}, + [4273] = {.lex_state = 339}, + [4274] = {.lex_state = 339}, + [4275] = {.lex_state = 339}, + [4276] = {.lex_state = 339}, + [4277] = {.lex_state = 515}, + [4278] = {.lex_state = 515}, + [4279] = {.lex_state = 515}, + [4280] = {.lex_state = 515}, + [4281] = {.lex_state = 339}, + [4282] = {.lex_state = 339}, + [4283] = {.lex_state = 339}, + [4284] = {.lex_state = 328}, + [4285] = {.lex_state = 361}, + [4286] = {.lex_state = 515}, + [4287] = {.lex_state = 339}, + [4288] = {.lex_state = 304}, + [4289] = {.lex_state = 339}, + [4290] = {.lex_state = 304}, + [4291] = {.lex_state = 339}, + [4292] = {.lex_state = 515}, + [4293] = {.lex_state = 339}, + [4294] = {.lex_state = 361}, + [4295] = {.lex_state = 329}, + [4296] = {.lex_state = 329}, + [4297] = {.lex_state = 361}, + [4298] = {.lex_state = 329}, + [4299] = {.lex_state = 329}, + [4300] = {.lex_state = 361}, + [4301] = {.lex_state = 329}, + [4302] = {.lex_state = 329}, + [4303] = {.lex_state = 329}, + [4304] = {.lex_state = 329}, + [4305] = {.lex_state = 515}, + [4306] = {.lex_state = 515}, + [4307] = {.lex_state = 339}, + [4308] = {.lex_state = 515}, + [4309] = {.lex_state = 339}, + [4310] = {.lex_state = 515}, + [4311] = {.lex_state = 515}, + [4312] = {.lex_state = 339}, + [4313] = {.lex_state = 304}, + [4314] = {.lex_state = 515}, + [4315] = {.lex_state = 361}, + [4316] = {.lex_state = 361}, + [4317] = {.lex_state = 339}, + [4318] = {.lex_state = 515}, + [4319] = {.lex_state = 339}, + [4320] = {.lex_state = 515}, + [4321] = {.lex_state = 304}, + [4322] = {.lex_state = 382}, + [4323] = {.lex_state = 339}, + [4324] = {.lex_state = 328}, + [4325] = {.lex_state = 515}, + [4326] = {.lex_state = 339}, + [4327] = {.lex_state = 339}, + [4328] = {.lex_state = 515}, + [4329] = {.lex_state = 339}, + [4330] = {.lex_state = 361}, + [4331] = {.lex_state = 361}, + [4332] = {.lex_state = 339}, + [4333] = {.lex_state = 339}, + [4334] = {.lex_state = 339}, + [4335] = {.lex_state = 339}, + [4336] = {.lex_state = 504}, + [4337] = {.lex_state = 504}, + [4338] = {.lex_state = 339}, + [4339] = {.lex_state = 515}, + [4340] = {.lex_state = 515}, + [4341] = {.lex_state = 339}, + [4342] = {.lex_state = 339}, + [4343] = {.lex_state = 339}, + [4344] = {.lex_state = 339}, + [4345] = {.lex_state = 515}, + [4346] = {.lex_state = 339}, + [4347] = {.lex_state = 504}, + [4348] = {.lex_state = 361}, + [4349] = {.lex_state = 504}, + [4350] = {.lex_state = 339}, + [4351] = {.lex_state = 382}, + [4352] = {.lex_state = 515}, + [4353] = {.lex_state = 515}, + [4354] = {.lex_state = 339}, + [4355] = {.lex_state = 339}, + [4356] = {.lex_state = 339}, + [4357] = {.lex_state = 339}, + [4358] = {.lex_state = 339}, + [4359] = {.lex_state = 306}, + [4360] = {.lex_state = 515}, + [4361] = {.lex_state = 361}, + [4362] = {.lex_state = 339}, + [4363] = {.lex_state = 339}, + [4364] = {.lex_state = 515}, + [4365] = {.lex_state = 361}, + [4366] = {.lex_state = 339}, + [4367] = {.lex_state = 387}, + [4368] = {.lex_state = 515}, + [4369] = {.lex_state = 339}, + [4370] = {.lex_state = 361}, + [4371] = {.lex_state = 339}, + [4372] = {.lex_state = 339}, + [4373] = {.lex_state = 515}, + [4374] = {.lex_state = 339}, + [4375] = {.lex_state = 515}, + [4376] = {.lex_state = 515}, + [4377] = {.lex_state = 339}, + [4378] = {.lex_state = 339}, + [4379] = {.lex_state = 515}, + [4380] = {.lex_state = 339}, + [4381] = {.lex_state = 339}, + [4382] = {.lex_state = 339}, + [4383] = {.lex_state = 382}, + [4384] = {.lex_state = 515}, + [4385] = {.lex_state = 339}, + [4386] = {.lex_state = 328}, + [4387] = {.lex_state = 328}, + [4388] = {.lex_state = 328}, + [4389] = {.lex_state = 521}, + [4390] = {.lex_state = 515}, + [4391] = {.lex_state = 515}, + [4392] = {.lex_state = 521}, + [4393] = {.lex_state = 328}, + [4394] = {.lex_state = 328}, + [4395] = {.lex_state = 515}, + [4396] = {.lex_state = 382}, + [4397] = {.lex_state = 521}, + [4398] = {.lex_state = 382}, + [4399] = {.lex_state = 521}, + [4400] = {.lex_state = 328}, + [4401] = {.lex_state = 515}, + [4402] = {.lex_state = 382}, + [4403] = {.lex_state = 521}, + [4404] = {.lex_state = 515}, + [4405] = {.lex_state = 521}, + [4406] = {.lex_state = 521}, + [4407] = {.lex_state = 382}, + [4408] = {.lex_state = 382}, + [4409] = {.lex_state = 521}, + [4410] = {.lex_state = 521}, + [4411] = {.lex_state = 304}, + [4412] = {.lex_state = 329}, + [4413] = {.lex_state = 306}, + [4414] = {.lex_state = 382}, + [4415] = {.lex_state = 329}, + [4416] = {.lex_state = 521}, + [4417] = {.lex_state = 515}, + [4418] = {.lex_state = 364}, + [4419] = {.lex_state = 329}, + [4420] = {.lex_state = 521}, + [4421] = {.lex_state = 304}, + [4422] = {.lex_state = 328}, + [4423] = {.lex_state = 521}, + [4424] = {.lex_state = 306}, + [4425] = {.lex_state = 304}, + [4426] = {.lex_state = 521}, + [4427] = {.lex_state = 304}, + [4428] = {.lex_state = 306}, + [4429] = {.lex_state = 521}, + [4430] = {.lex_state = 382}, + [4431] = {.lex_state = 521}, + [4432] = {.lex_state = 382}, + [4433] = {.lex_state = 521}, + [4434] = {.lex_state = 328}, + [4435] = {.lex_state = 328}, + [4436] = {.lex_state = 328}, + [4437] = {.lex_state = 328}, + [4438] = {.lex_state = 382}, + [4439] = {.lex_state = 306}, + [4440] = {.lex_state = 382}, + [4441] = {.lex_state = 371}, + [4442] = {.lex_state = 382}, + [4443] = {.lex_state = 515}, + [4444] = {.lex_state = 515}, + [4445] = {.lex_state = 515}, + [4446] = {.lex_state = 515}, + [4447] = {.lex_state = 515}, + [4448] = {.lex_state = 382}, + [4449] = {.lex_state = 306}, + [4450] = {.lex_state = 382}, + [4451] = {.lex_state = 329}, + [4452] = {.lex_state = 306}, + [4453] = {.lex_state = 384}, + [4454] = {.lex_state = 515}, + [4455] = {.lex_state = 306}, + [4456] = {.lex_state = 329}, + [4457] = {.lex_state = 329}, + [4458] = {.lex_state = 384}, + [4459] = {.lex_state = 515}, + [4460] = {.lex_state = 368}, + [4461] = {.lex_state = 369}, + [4462] = {.lex_state = 515}, + [4463] = {.lex_state = 515}, + [4464] = {.lex_state = 515}, + [4465] = {.lex_state = 382}, + [4466] = {.lex_state = 382}, + [4467] = {.lex_state = 364}, + [4468] = {.lex_state = 306}, + [4469] = {.lex_state = 382}, + [4470] = {.lex_state = 515}, + [4471] = {.lex_state = 382}, + [4472] = {.lex_state = 382}, + [4473] = {.lex_state = 515}, + [4474] = {.lex_state = 382}, + [4475] = {.lex_state = 382}, + [4476] = {.lex_state = 382}, + [4477] = {.lex_state = 382}, + [4478] = {.lex_state = 382}, + [4479] = {.lex_state = 382}, + [4480] = {.lex_state = 382}, + [4481] = {.lex_state = 382}, + [4482] = {.lex_state = 329}, + [4483] = {.lex_state = 382}, + [4484] = {.lex_state = 382}, + [4485] = {.lex_state = 515}, + [4486] = {.lex_state = 515}, + [4487] = {.lex_state = 515}, + [4488] = {.lex_state = 387}, + [4489] = {.lex_state = 382}, + [4490] = {.lex_state = 382}, + [4491] = {.lex_state = 329}, + [4492] = {.lex_state = 382}, + [4493] = {.lex_state = 382}, + [4494] = {.lex_state = 515}, + [4495] = {.lex_state = 368}, + [4496] = {.lex_state = 382}, + [4497] = {.lex_state = 368}, + [4498] = {.lex_state = 329}, + [4499] = {.lex_state = 382}, + [4500] = {.lex_state = 387}, + [4501] = {.lex_state = 382}, + [4502] = {.lex_state = 329}, + [4503] = {.lex_state = 515}, + [4504] = {.lex_state = 387}, + [4505] = {.lex_state = 387}, + [4506] = {.lex_state = 387}, + [4507] = {.lex_state = 387}, + [4508] = {.lex_state = 387}, + [4509] = {.lex_state = 387}, + [4510] = {.lex_state = 387}, + [4511] = {.lex_state = 387}, + [4512] = {.lex_state = 513}, + [4513] = {.lex_state = 387}, + [4514] = {.lex_state = 387}, + [4515] = {.lex_state = 387}, + [4516] = {.lex_state = 515}, + [4517] = {.lex_state = 387}, + [4518] = {.lex_state = 382}, + [4519] = {.lex_state = 387}, + [4520] = {.lex_state = 364}, + [4521] = {.lex_state = 387}, + [4522] = {.lex_state = 387}, + [4523] = {.lex_state = 387}, + [4524] = {.lex_state = 387}, + [4525] = {.lex_state = 387}, + [4526] = {.lex_state = 382}, + [4527] = {.lex_state = 388}, + [4528] = {.lex_state = 387}, + [4529] = {.lex_state = 382}, + [4530] = {.lex_state = 387}, + [4531] = {.lex_state = 387}, + [4532] = {.lex_state = 387}, + [4533] = {.lex_state = 387}, + [4534] = {.lex_state = 387}, + [4535] = {.lex_state = 382}, + [4536] = {.lex_state = 515}, + [4537] = {.lex_state = 387}, + [4538] = {.lex_state = 387}, + [4539] = {.lex_state = 387}, + [4540] = {.lex_state = 387}, + [4541] = {.lex_state = 382}, + [4542] = {.lex_state = 387}, + [4543] = {.lex_state = 387}, + [4544] = {.lex_state = 361}, + [4545] = {.lex_state = 387}, + [4546] = {.lex_state = 387}, + [4547] = {.lex_state = 361}, + [4548] = {.lex_state = 515}, + [4549] = {.lex_state = 513}, + [4550] = {.lex_state = 387}, + [4551] = {.lex_state = 387}, + [4552] = {.lex_state = 387}, + [4553] = {.lex_state = 387}, + [4554] = {.lex_state = 387}, + [4555] = {.lex_state = 387}, + [4556] = {.lex_state = 515}, + [4557] = {.lex_state = 387}, + [4558] = {.lex_state = 387}, + [4559] = {.lex_state = 387}, + [4560] = {.lex_state = 388}, + [4561] = {.lex_state = 387}, + [4562] = {.lex_state = 515}, + [4563] = {.lex_state = 387}, + [4564] = {.lex_state = 388}, + [4565] = {.lex_state = 387}, + [4566] = {.lex_state = 387}, + [4567] = {.lex_state = 387}, + [4568] = {.lex_state = 387}, + [4569] = {.lex_state = 387}, + [4570] = {.lex_state = 387}, + [4571] = {.lex_state = 387}, + [4572] = {.lex_state = 387}, + [4573] = {.lex_state = 387}, + [4574] = {.lex_state = 387}, + [4575] = {.lex_state = 387}, + [4576] = {.lex_state = 387}, + [4577] = {.lex_state = 387}, + [4578] = {.lex_state = 387}, + [4579] = {.lex_state = 382}, + [4580] = {.lex_state = 387}, + [4581] = {.lex_state = 387}, + [4582] = {.lex_state = 387}, + [4583] = {.lex_state = 387}, + [4584] = {.lex_state = 329}, + [4585] = {.lex_state = 382}, + [4586] = {.lex_state = 387}, + [4587] = {.lex_state = 387}, + [4588] = {.lex_state = 364}, + [4589] = {.lex_state = 515}, + [4590] = {.lex_state = 387}, + [4591] = {.lex_state = 387}, + [4592] = {.lex_state = 387}, + [4593] = {.lex_state = 387}, + [4594] = {.lex_state = 387}, + [4595] = {.lex_state = 387}, + [4596] = {.lex_state = 387}, + [4597] = {.lex_state = 387}, + [4598] = {.lex_state = 387}, + [4599] = {.lex_state = 387}, + [4600] = {.lex_state = 387}, + [4601] = {.lex_state = 387}, + [4602] = {.lex_state = 369}, + [4603] = {.lex_state = 387}, + [4604] = {.lex_state = 387}, + [4605] = {.lex_state = 387}, + [4606] = {.lex_state = 387}, + [4607] = {.lex_state = 387}, + [4608] = {.lex_state = 387}, + [4609] = {.lex_state = 387}, + [4610] = {.lex_state = 387}, + [4611] = {.lex_state = 387}, + [4612] = {.lex_state = 387}, + [4613] = {.lex_state = 388}, + [4614] = {.lex_state = 387}, + [4615] = {.lex_state = 387}, + [4616] = {.lex_state = 388}, + [4617] = {.lex_state = 387}, + [4618] = {.lex_state = 515}, + [4619] = {.lex_state = 515}, + [4620] = {.lex_state = 515}, + [4621] = {.lex_state = 371}, + [4622] = {.lex_state = 388}, + [4623] = {.lex_state = 329}, + [4624] = {.lex_state = 371}, + [4625] = {.lex_state = 515}, + [4626] = {.lex_state = 371}, + [4627] = {.lex_state = 329}, + [4628] = {.lex_state = 329}, + [4629] = {.lex_state = 329}, + [4630] = {.lex_state = 515}, + [4631] = {.lex_state = 515}, + [4632] = {.lex_state = 515}, + [4633] = {.lex_state = 515}, + [4634] = {.lex_state = 329}, + [4635] = {.lex_state = 515}, + [4636] = {.lex_state = 387}, + [4637] = {.lex_state = 329}, + [4638] = {.lex_state = 371}, + [4639] = {.lex_state = 515}, + [4640] = {.lex_state = 515}, + [4641] = {.lex_state = 363}, + [4642] = {.lex_state = 515}, + [4643] = {.lex_state = 515}, + [4644] = {.lex_state = 515}, + [4645] = {.lex_state = 387}, + [4646] = {.lex_state = 515}, + [4647] = {.lex_state = 515}, + [4648] = {.lex_state = 515}, + [4649] = {.lex_state = 515}, + [4650] = {.lex_state = 387}, + [4651] = {.lex_state = 515}, + [4652] = {.lex_state = 515}, + [4653] = {.lex_state = 387}, + [4654] = {.lex_state = 515}, + [4655] = {.lex_state = 515}, + [4656] = {.lex_state = 369}, + [4657] = {.lex_state = 387}, + [4658] = {.lex_state = 515}, + [4659] = {.lex_state = 515}, + [4660] = {.lex_state = 515}, + [4661] = {.lex_state = 515}, + [4662] = {.lex_state = 329}, + [4663] = {.lex_state = 387}, + [4664] = {.lex_state = 382}, + [4665] = {.lex_state = 515}, + [4666] = {.lex_state = 387}, + [4667] = {.lex_state = 515}, + [4668] = {.lex_state = 515}, + [4669] = {.lex_state = 515}, + [4670] = {.lex_state = 515}, + [4671] = {.lex_state = 515}, + [4672] = {.lex_state = 515}, + [4673] = {.lex_state = 387}, + [4674] = {.lex_state = 515}, + [4675] = {.lex_state = 515}, + [4676] = {.lex_state = 388}, + [4677] = {.lex_state = 515}, + [4678] = {.lex_state = 371}, + [4679] = {.lex_state = 371}, + [4680] = {.lex_state = 329}, + [4681] = {.lex_state = 329}, + [4682] = {.lex_state = 363}, + [4683] = {.lex_state = 515}, + [4684] = {.lex_state = 387}, + [4685] = {.lex_state = 387}, + [4686] = {.lex_state = 387}, + [4687] = {.lex_state = 369}, + [4688] = {.lex_state = 329}, + [4689] = {.lex_state = 387}, + [4690] = {.lex_state = 387}, + [4691] = {.lex_state = 387}, + [4692] = {.lex_state = 387}, + [4693] = {.lex_state = 515}, + [4694] = {.lex_state = 329}, + [4695] = {.lex_state = 387}, + [4696] = {.lex_state = 371}, + [4697] = {.lex_state = 387}, + [4698] = {.lex_state = 515}, + [4699] = {.lex_state = 329}, + [4700] = {.lex_state = 515}, + [4701] = {.lex_state = 515}, + [4702] = {.lex_state = 515}, + [4703] = {.lex_state = 380}, + [4704] = {.lex_state = 363}, + [4705] = {.lex_state = 329}, + [4706] = {.lex_state = 515}, + [4707] = {.lex_state = 329}, + [4708] = {.lex_state = 515}, + [4709] = {.lex_state = 380}, + [4710] = {.lex_state = 515}, + [4711] = {.lex_state = 380}, + [4712] = {.lex_state = 515}, + [4713] = {.lex_state = 515}, + [4714] = {.lex_state = 380}, + [4715] = {.lex_state = 371}, + [4716] = {.lex_state = 380}, + [4717] = {.lex_state = 515}, + [4718] = {.lex_state = 515}, + [4719] = {.lex_state = 515}, + [4720] = {.lex_state = 380}, + [4721] = {.lex_state = 515}, + [4722] = {.lex_state = 515}, + [4723] = {.lex_state = 380}, + [4724] = {.lex_state = 515}, + [4725] = {.lex_state = 380}, + [4726] = {.lex_state = 380}, + [4727] = {.lex_state = 329}, + [4728] = {.lex_state = 515}, + [4729] = {.lex_state = 380}, + [4730] = {.lex_state = 380}, + [4731] = {.lex_state = 361}, + [4732] = {.lex_state = 380}, + [4733] = {.lex_state = 515}, + [4734] = {.lex_state = 515}, + [4735] = {.lex_state = 515}, + [4736] = {.lex_state = 371}, + [4737] = {.lex_state = 515}, + [4738] = {.lex_state = 369}, + [4739] = {.lex_state = 515}, + [4740] = {.lex_state = 380}, + [4741] = {.lex_state = 380}, + [4742] = {.lex_state = 515}, + [4743] = {.lex_state = 515}, + [4744] = {.lex_state = 380}, + [4745] = {.lex_state = 328}, + [4746] = {.lex_state = 329}, + [4747] = {.lex_state = 329}, + [4748] = {.lex_state = 328}, + [4749] = {.lex_state = 515}, + [4750] = {.lex_state = 380}, + [4751] = {.lex_state = 363}, + [4752] = {.lex_state = 329}, + [4753] = {.lex_state = 380}, + [4754] = {.lex_state = 515}, + [4755] = {.lex_state = 380}, + [4756] = {.lex_state = 515}, + [4757] = {.lex_state = 515}, + [4758] = {.lex_state = 515}, + [4759] = {.lex_state = 380}, + [4760] = {.lex_state = 515}, + [4761] = {.lex_state = 515}, + [4762] = {.lex_state = 369}, + [4763] = {.lex_state = 363}, + [4764] = {.lex_state = 515}, + [4765] = {.lex_state = 515}, + [4766] = {.lex_state = 369}, + [4767] = {.lex_state = 361}, + [4768] = {.lex_state = 371}, + [4769] = {.lex_state = 380}, + [4770] = {.lex_state = 515}, + [4771] = {.lex_state = 329}, + [4772] = {.lex_state = 380}, + [4773] = {.lex_state = 363}, + [4774] = {.lex_state = 515}, + [4775] = {.lex_state = 516}, + [4776] = {.lex_state = 329}, + [4777] = {.lex_state = 329}, + [4778] = {.lex_state = 388}, + [4779] = {.lex_state = 329}, + [4780] = {.lex_state = 382}, + [4781] = {.lex_state = 329}, + [4782] = {.lex_state = 329}, + [4783] = {.lex_state = 371}, + [4784] = {.lex_state = 329}, + [4785] = {.lex_state = 329}, + [4786] = {.lex_state = 515}, + [4787] = {.lex_state = 516}, + [4788] = {.lex_state = 329}, + [4789] = {.lex_state = 382}, + [4790] = {.lex_state = 329}, + [4791] = {.lex_state = 329}, + [4792] = {.lex_state = 329}, + [4793] = {.lex_state = 329}, + [4794] = {.lex_state = 371}, + [4795] = {.lex_state = 387}, + [4796] = {.lex_state = 329}, + [4797] = {.lex_state = 516}, + [4798] = {.lex_state = 329}, + [4799] = {.lex_state = 329}, + [4800] = {.lex_state = 371}, + [4801] = {.lex_state = 371}, + [4802] = {.lex_state = 329}, + [4803] = {.lex_state = 371}, + [4804] = {.lex_state = 329}, + [4805] = {.lex_state = 329}, + [4806] = {.lex_state = 329}, + [4807] = {.lex_state = 515}, + [4808] = {.lex_state = 329}, + [4809] = {.lex_state = 329}, + [4810] = {.lex_state = 329}, + [4811] = {.lex_state = 388}, + [4812] = {.lex_state = 516}, + [4813] = {.lex_state = 329}, + [4814] = {.lex_state = 329}, + [4815] = {.lex_state = 329}, + [4816] = {.lex_state = 329}, + [4817] = {.lex_state = 329}, + [4818] = {.lex_state = 329}, + [4819] = {.lex_state = 329}, + [4820] = {.lex_state = 329}, + [4821] = {.lex_state = 329}, + [4822] = {.lex_state = 329}, + [4823] = {.lex_state = 329}, + [4824] = {.lex_state = 329}, + [4825] = {.lex_state = 387}, + [4826] = {.lex_state = 515}, + [4827] = {.lex_state = 515}, + [4828] = {.lex_state = 387}, + [4829] = {.lex_state = 515}, + [4830] = {.lex_state = 515}, + [4831] = {.lex_state = 515}, + [4832] = {.lex_state = 515}, + [4833] = {.lex_state = 515}, + [4834] = {.lex_state = 329}, + [4835] = {.lex_state = 371}, + [4836] = {.lex_state = 329}, + [4837] = {.lex_state = 515}, + [4838] = {.lex_state = 515}, + [4839] = {.lex_state = 329}, + [4840] = {.lex_state = 329}, + [4841] = {.lex_state = 329}, + [4842] = {.lex_state = 329}, + [4843] = {.lex_state = 329}, + [4844] = {.lex_state = 329}, + [4845] = {.lex_state = 329}, + [4846] = {.lex_state = 515}, + [4847] = {.lex_state = 515}, + [4848] = {.lex_state = 371}, + [4849] = {.lex_state = 329}, + [4850] = {.lex_state = 515}, + [4851] = {.lex_state = 515}, + [4852] = {.lex_state = 515}, + [4853] = {.lex_state = 329}, + [4854] = {.lex_state = 515}, + [4855] = {.lex_state = 515}, + [4856] = {.lex_state = 329}, + [4857] = {.lex_state = 329}, + [4858] = {.lex_state = 515}, + [4859] = {.lex_state = 361}, + [4860] = {.lex_state = 515}, + [4861] = {.lex_state = 388}, + [4862] = {.lex_state = 515}, + [4863] = {.lex_state = 387}, + [4864] = {.lex_state = 515}, + [4865] = {.lex_state = 515}, + [4866] = {.lex_state = 515}, + [4867] = {.lex_state = 515}, + [4868] = {.lex_state = 328}, + [4869] = {.lex_state = 387}, + [4870] = {.lex_state = 387}, + [4871] = {.lex_state = 387}, + [4872] = {.lex_state = 515}, + [4873] = {.lex_state = 387}, + [4874] = {.lex_state = 361}, + [4875] = {.lex_state = 361}, + [4876] = {.lex_state = 361}, + [4877] = {.lex_state = 361}, + [4878] = {.lex_state = 515}, + [4879] = {.lex_state = 388}, + [4880] = {.lex_state = 388}, + [4881] = {.lex_state = 382}, + [4882] = {.lex_state = 382}, + [4883] = {.lex_state = 361}, + [4884] = {.lex_state = 361}, + [4885] = {.lex_state = 515}, + [4886] = {.lex_state = 388}, + [4887] = {.lex_state = 388}, + [4888] = {.lex_state = 515}, + [4889] = {.lex_state = 515}, + [4890] = {.lex_state = 329}, + [4891] = {.lex_state = 515}, + [4892] = {.lex_state = 361}, + [4893] = {.lex_state = 515}, + [4894] = {.lex_state = 515}, + [4895] = {.lex_state = 329}, + [4896] = {.lex_state = 329}, + [4897] = {.lex_state = 329}, + [4898] = {.lex_state = 329}, + [4899] = {.lex_state = 329}, + [4900] = {.lex_state = 329}, + [4901] = {.lex_state = 329}, + [4902] = {.lex_state = 380}, + [4903] = {.lex_state = 329}, + [4904] = {.lex_state = 382}, + [4905] = {.lex_state = 329}, + [4906] = {.lex_state = 329}, + [4907] = {.lex_state = 329}, + [4908] = {.lex_state = 515}, + [4909] = {.lex_state = 515}, + [4910] = {.lex_state = 515}, + [4911] = {.lex_state = 515}, + [4912] = {.lex_state = 515}, + [4913] = {.lex_state = 515}, + [4914] = {.lex_state = 515}, + [4915] = {.lex_state = 515}, + [4916] = {.lex_state = 387}, + [4917] = {.lex_state = 382}, + [4918] = {.lex_state = 371}, + [4919] = {.lex_state = 380}, + [4920] = {.lex_state = 380}, + [4921] = {.lex_state = 371}, + [4922] = {.lex_state = 371}, + [4923] = {.lex_state = 390}, + [4924] = {.lex_state = 371}, + [4925] = {.lex_state = 382}, + [4926] = {.lex_state = 361}, + [4927] = {.lex_state = 371}, + [4928] = {.lex_state = 330}, + [4929] = {.lex_state = 361}, + [4930] = {.lex_state = 371}, + [4931] = {.lex_state = 371}, + [4932] = {.lex_state = 361}, + [4933] = {.lex_state = 360}, + [4934] = {.lex_state = 371}, + [4935] = {.lex_state = 329}, + [4936] = {.lex_state = 371}, + [4937] = {.lex_state = 384}, + [4938] = {.lex_state = 371}, + [4939] = {.lex_state = 371}, + [4940] = {.lex_state = 382}, + [4941] = {.lex_state = 382}, + [4942] = {.lex_state = 382}, + [4943] = {.lex_state = 515}, + [4944] = {.lex_state = 330}, + [4945] = {.lex_state = 382}, + [4946] = {.lex_state = 371}, + [4947] = {.lex_state = 361}, + [4948] = {.lex_state = 361}, + [4949] = {.lex_state = 361}, + [4950] = {.lex_state = 390}, + [4951] = {.lex_state = 363}, + [4952] = {.lex_state = 363}, + [4953] = {.lex_state = 363}, + [4954] = {.lex_state = 361}, + [4955] = {.lex_state = 329}, + [4956] = {.lex_state = 329}, + [4957] = {.lex_state = 329}, + [4958] = {.lex_state = 363}, + [4959] = {.lex_state = 329}, + [4960] = {.lex_state = 363}, + [4961] = {.lex_state = 329}, + [4962] = {.lex_state = 329}, + [4963] = {.lex_state = 363}, + [4964] = {.lex_state = 515}, + [4965] = {.lex_state = 329}, + [4966] = {.lex_state = 329}, + [4967] = {.lex_state = 329}, + [4968] = {.lex_state = 329}, + [4969] = {.lex_state = 363}, + [4970] = {.lex_state = 329}, + [4971] = {.lex_state = 329}, + [4972] = {.lex_state = 329}, + [4973] = {.lex_state = 329}, + [4974] = {.lex_state = 329}, + [4975] = {.lex_state = 363}, + [4976] = {.lex_state = 329}, + [4977] = {.lex_state = 363}, + [4978] = {.lex_state = 363}, + [4979] = {.lex_state = 361}, + [4980] = {.lex_state = 361}, + [4981] = {.lex_state = 329}, + [4982] = {.lex_state = 390}, + [4983] = {.lex_state = 390}, + [4984] = {.lex_state = 329}, + [4985] = {.lex_state = 363}, + [4986] = {.lex_state = 371}, + [4987] = {.lex_state = 329}, + [4988] = {.lex_state = 329}, + [4989] = {.lex_state = 515}, + [4990] = {.lex_state = 390}, + [4991] = {.lex_state = 390}, + [4992] = {.lex_state = 371}, + [4993] = {.lex_state = 390}, + [4994] = {.lex_state = 390}, + [4995] = {.lex_state = 515}, + [4996] = {.lex_state = 390}, + [4997] = {.lex_state = 390}, + [4998] = {.lex_state = 369}, + [4999] = {.lex_state = 515}, + [5000] = {.lex_state = 515}, + [5001] = {.lex_state = 515}, + [5002] = {.lex_state = 363}, + [5003] = {.lex_state = 515}, + [5004] = {.lex_state = 390}, + [5005] = {.lex_state = 515}, + [5006] = {.lex_state = 380}, + [5007] = {.lex_state = 329}, + [5008] = {.lex_state = 515}, + [5009] = {.lex_state = 363}, + [5010] = {.lex_state = 363}, + [5011] = {.lex_state = 390}, + [5012] = {.lex_state = 390}, + [5013] = {.lex_state = 390}, + [5014] = {.lex_state = 390}, + [5015] = {.lex_state = 390}, + [5016] = {.lex_state = 390}, + [5017] = {.lex_state = 390}, + [5018] = {.lex_state = 329}, + [5019] = {.lex_state = 371}, + [5020] = {.lex_state = 515}, + [5021] = {.lex_state = 515}, + [5022] = {.lex_state = 363}, + [5023] = {.lex_state = 515}, + [5024] = {.lex_state = 515}, + [5025] = {.lex_state = 380}, + [5026] = {.lex_state = 361}, + [5027] = {.lex_state = 515}, + [5028] = {.lex_state = 390}, + [5029] = {.lex_state = 390}, + [5030] = {.lex_state = 390}, + [5031] = {.lex_state = 390}, + [5032] = {.lex_state = 390}, + [5033] = {.lex_state = 390}, + [5034] = {.lex_state = 390}, + [5035] = {.lex_state = 515}, + [5036] = {.lex_state = 390}, + [5037] = {.lex_state = 390}, + [5038] = {.lex_state = 390}, + [5039] = {.lex_state = 390}, + [5040] = {.lex_state = 515}, + [5041] = {.lex_state = 515}, + [5042] = {.lex_state = 363}, + [5043] = {.lex_state = 515}, + [5044] = {.lex_state = 515}, + [5045] = {.lex_state = 371}, + [5046] = {.lex_state = 515}, + [5047] = {.lex_state = 361}, + [5048] = {.lex_state = 390}, + [5049] = {.lex_state = 390}, + [5050] = {.lex_state = 390}, + [5051] = {.lex_state = 390}, + [5052] = {.lex_state = 390}, + [5053] = {.lex_state = 390}, + [5054] = {.lex_state = 390}, + [5055] = {.lex_state = 515}, + [5056] = {.lex_state = 515}, + [5057] = {.lex_state = 515}, + [5058] = {.lex_state = 515}, + [5059] = {.lex_state = 363}, + [5060] = {.lex_state = 515}, + [5061] = {.lex_state = 515}, + [5062] = {.lex_state = 515}, + [5063] = {.lex_state = 371}, + [5064] = {.lex_state = 390}, + [5065] = {.lex_state = 515}, + [5066] = {.lex_state = 515}, + [5067] = {.lex_state = 363}, + [5068] = {.lex_state = 515}, + [5069] = {.lex_state = 515}, + [5070] = {.lex_state = 515}, + [5071] = {.lex_state = 363}, + [5072] = {.lex_state = 515}, + [5073] = {.lex_state = 515}, + [5074] = {.lex_state = 363}, + [5075] = {.lex_state = 515}, + [5076] = {.lex_state = 515}, + [5077] = {.lex_state = 515}, + [5078] = {.lex_state = 515}, + [5079] = {.lex_state = 515}, + [5080] = {.lex_state = 363}, + [5081] = {.lex_state = 515}, + [5082] = {.lex_state = 515}, + [5083] = {.lex_state = 515}, + [5084] = {.lex_state = 515}, + [5085] = {.lex_state = 363}, + [5086] = {.lex_state = 515}, + [5087] = {.lex_state = 515}, + [5088] = {.lex_state = 515}, + [5089] = {.lex_state = 515}, + [5090] = {.lex_state = 363}, + [5091] = {.lex_state = 515}, + [5092] = {.lex_state = 515}, + [5093] = {.lex_state = 515}, + [5094] = {.lex_state = 363}, + [5095] = {.lex_state = 515}, + [5096] = {.lex_state = 329}, + [5097] = {.lex_state = 329}, + [5098] = {.lex_state = 329}, + [5099] = {.lex_state = 363}, + [5100] = {.lex_state = 390}, + [5101] = {.lex_state = 329}, + [5102] = {.lex_state = 363}, + [5103] = {.lex_state = 515}, + [5104] = {.lex_state = 329}, + [5105] = {.lex_state = 363}, + [5106] = {.lex_state = 363}, + [5107] = {.lex_state = 363}, + [5108] = {.lex_state = 363}, + [5109] = {.lex_state = 515}, + [5110] = {.lex_state = 363}, + [5111] = {.lex_state = 329}, + [5112] = {.lex_state = 363}, + [5113] = {.lex_state = 329}, + [5114] = {.lex_state = 363}, + [5115] = {.lex_state = 363}, + [5116] = {.lex_state = 363}, + [5117] = {.lex_state = 363}, + [5118] = {.lex_state = 363}, + [5119] = {.lex_state = 363}, + [5120] = {.lex_state = 515}, + [5121] = {.lex_state = 329}, + [5122] = {.lex_state = 515}, + [5123] = {.lex_state = 329}, + [5124] = {.lex_state = 329}, + [5125] = {.lex_state = 329}, + [5126] = {.lex_state = 515}, + [5127] = {.lex_state = 515}, + [5128] = {.lex_state = 515}, + [5129] = {.lex_state = 515}, + [5130] = {.lex_state = 515}, + [5131] = {.lex_state = 515}, + [5132] = {.lex_state = 515}, + [5133] = {.lex_state = 515}, + [5134] = {.lex_state = 515}, + [5135] = {.lex_state = 515}, + [5136] = {.lex_state = 515}, + [5137] = {.lex_state = 515}, + [5138] = {.lex_state = 329}, + [5139] = {.lex_state = 329}, + [5140] = {.lex_state = 329}, + [5141] = {.lex_state = 515}, + [5142] = {.lex_state = 329}, + [5143] = {.lex_state = 515}, + [5144] = {.lex_state = 329}, + [5145] = {.lex_state = 329}, + [5146] = {.lex_state = 515}, + [5147] = {.lex_state = 515}, + [5148] = {.lex_state = 329}, + [5149] = {.lex_state = 329}, + [5150] = {.lex_state = 329}, + [5151] = {.lex_state = 329}, + [5152] = {.lex_state = 329}, + [5153] = {.lex_state = 515}, + [5154] = {.lex_state = 329}, + [5155] = {.lex_state = 329}, + [5156] = {.lex_state = 329}, + [5157] = {.lex_state = 371}, + [5158] = {.lex_state = 329}, + [5159] = {.lex_state = 329}, + [5160] = {.lex_state = 388}, + [5161] = {.lex_state = 382}, + [5162] = {.lex_state = 382}, + [5163] = {.lex_state = 329}, + [5164] = {.lex_state = 371}, + [5165] = {.lex_state = 515}, + [5166] = {.lex_state = 515}, + [5167] = {.lex_state = 329}, + [5168] = {.lex_state = 363}, + [5169] = {.lex_state = 363}, + [5170] = {.lex_state = 363}, + [5171] = {.lex_state = 329}, + [5172] = {.lex_state = 329}, + [5173] = {.lex_state = 329}, + [5174] = {.lex_state = 329}, + [5175] = {.lex_state = 329}, + [5176] = {.lex_state = 329}, + [5177] = {.lex_state = 329}, + [5178] = {.lex_state = 329}, + [5179] = {.lex_state = 363}, + [5180] = {.lex_state = 329}, + [5181] = {.lex_state = 369}, + [5182] = {.lex_state = 363}, + [5183] = {.lex_state = 388}, + [5184] = {.lex_state = 363}, + [5185] = {.lex_state = 387}, + [5186] = {.lex_state = 387}, + [5187] = {.lex_state = 515}, + [5188] = {.lex_state = 515}, + [5189] = {.lex_state = 363}, + [5190] = {.lex_state = 363}, + [5191] = {.lex_state = 515}, + [5192] = {.lex_state = 387}, + [5193] = {.lex_state = 387}, + [5194] = {.lex_state = 363}, + [5195] = {.lex_state = 515}, + [5196] = {.lex_state = 387}, + [5197] = {.lex_state = 515}, + [5198] = {.lex_state = 515}, + [5199] = {.lex_state = 361}, + [5200] = {.lex_state = 371}, + [5201] = {.lex_state = 387}, + [5202] = {.lex_state = 387}, + [5203] = {.lex_state = 516}, + [5204] = {.lex_state = 515}, + [5205] = {.lex_state = 515}, + [5206] = {.lex_state = 363}, + [5207] = {.lex_state = 371}, + [5208] = {.lex_state = 371}, + [5209] = {.lex_state = 371}, + [5210] = {.lex_state = 363}, + [5211] = {.lex_state = 388}, + [5212] = {.lex_state = 388}, + [5213] = {.lex_state = 516}, + [5214] = {.lex_state = 371}, + [5215] = {.lex_state = 515}, + [5216] = {.lex_state = 388}, + [5217] = {.lex_state = 388}, + [5218] = {.lex_state = 380}, + [5219] = {.lex_state = 363}, + [5220] = {.lex_state = 371}, + [5221] = {.lex_state = 387}, + [5222] = {.lex_state = 363}, + [5223] = {.lex_state = 363}, + [5224] = {.lex_state = 361}, + [5225] = {.lex_state = 371}, + [5226] = {.lex_state = 387}, + [5227] = {.lex_state = 515}, + [5228] = {.lex_state = 371}, + [5229] = {.lex_state = 515}, + [5230] = {.lex_state = 363}, + [5231] = {.lex_state = 363}, + [5232] = {.lex_state = 363}, + [5233] = {.lex_state = 515}, + [5234] = {.lex_state = 387}, + [5235] = {.lex_state = 387}, + [5236] = {.lex_state = 387}, + [5237] = {.lex_state = 387}, + [5238] = {.lex_state = 515}, + [5239] = {.lex_state = 387}, + [5240] = {.lex_state = 387}, + [5241] = {.lex_state = 515}, + [5242] = {.lex_state = 515}, + [5243] = {.lex_state = 515}, + [5244] = {.lex_state = 515}, + [5245] = {.lex_state = 515}, + [5246] = {.lex_state = 363}, + [5247] = {.lex_state = 363}, + [5248] = {.lex_state = 515}, + [5249] = {.lex_state = 515}, + [5250] = {.lex_state = 515}, + [5251] = {.lex_state = 515}, + [5252] = {.lex_state = 515}, + [5253] = {.lex_state = 515}, + [5254] = {.lex_state = 515}, + [5255] = {.lex_state = 515}, + [5256] = {.lex_state = 515}, + [5257] = {.lex_state = 363}, + [5258] = {.lex_state = 515}, + [5259] = {.lex_state = 515}, + [5260] = {.lex_state = 387}, + [5261] = {.lex_state = 387}, + [5262] = {.lex_state = 515}, + [5263] = {.lex_state = 515}, + [5264] = {.lex_state = 387}, + [5265] = {.lex_state = 371}, + [5266] = {.lex_state = 515}, + [5267] = {.lex_state = 371}, + [5268] = {.lex_state = 515}, + [5269] = {.lex_state = 387}, + [5270] = {.lex_state = 515}, + [5271] = {.lex_state = 364}, + [5272] = {.lex_state = 515}, + [5273] = {.lex_state = 371}, + [5274] = {.lex_state = 387}, + [5275] = {.lex_state = 387}, + [5276] = {.lex_state = 387}, + [5277] = {.lex_state = 515}, + [5278] = {.lex_state = 363}, + [5279] = {.lex_state = 515}, + [5280] = {.lex_state = 515}, + [5281] = {.lex_state = 371}, + [5282] = {.lex_state = 515}, + [5283] = {.lex_state = 515}, + [5284] = {.lex_state = 515}, + [5285] = {.lex_state = 387}, + [5286] = {.lex_state = 371}, + [5287] = {.lex_state = 515}, + [5288] = {.lex_state = 363}, + [5289] = {.lex_state = 387}, + [5290] = {.lex_state = 387}, + [5291] = {.lex_state = 515}, + [5292] = {.lex_state = 515}, + [5293] = {.lex_state = 387}, + [5294] = {.lex_state = 387}, + [5295] = {.lex_state = 371}, + [5296] = {.lex_state = 515}, + [5297] = {.lex_state = 363}, + [5298] = {.lex_state = 515}, + [5299] = {.lex_state = 371}, + [5300] = {.lex_state = 515}, + [5301] = {.lex_state = 387}, + [5302] = {.lex_state = 387}, + [5303] = {.lex_state = 371}, + [5304] = {.lex_state = 363}, + [5305] = {.lex_state = 515}, + [5306] = {.lex_state = 361}, + [5307] = {.lex_state = 388}, + [5308] = {.lex_state = 388}, + [5309] = {.lex_state = 371}, + [5310] = {.lex_state = 363}, + [5311] = {.lex_state = 515}, + [5312] = {.lex_state = 371}, + [5313] = {.lex_state = 388}, + [5314] = {.lex_state = 388}, + [5315] = {.lex_state = 515}, + [5316] = {.lex_state = 515}, + [5317] = {.lex_state = 515}, + [5318] = {.lex_state = 515}, + [5319] = {.lex_state = 371}, + [5320] = {.lex_state = 515}, + [5321] = {.lex_state = 515}, + [5322] = {.lex_state = 371}, + [5323] = {.lex_state = 515}, + [5324] = {.lex_state = 387}, + [5325] = {.lex_state = 371}, + [5326] = {.lex_state = 371}, + [5327] = {.lex_state = 371}, + [5328] = {.lex_state = 363}, + [5329] = {.lex_state = 371}, + [5330] = {.lex_state = 371}, + [5331] = {.lex_state = 371}, + [5332] = {.lex_state = 515}, + [5333] = {.lex_state = 387}, + [5334] = {.lex_state = 371}, + [5335] = {.lex_state = 371}, + [5336] = {.lex_state = 382}, + [5337] = {.lex_state = 382}, + [5338] = {.lex_state = 387}, + [5339] = {.lex_state = 363}, + [5340] = {.lex_state = 363}, + [5341] = {.lex_state = 363}, + [5342] = {.lex_state = 371}, + [5343] = {.lex_state = 363}, + [5344] = {.lex_state = 363}, + [5345] = {.lex_state = 515}, + [5346] = {.lex_state = 371}, + [5347] = {.lex_state = 515}, + [5348] = {.lex_state = 382}, + [5349] = {.lex_state = 387}, + [5350] = {.lex_state = 387}, + [5351] = {.lex_state = 515}, + [5352] = {.lex_state = 387}, + [5353] = {.lex_state = 515}, + [5354] = {.lex_state = 382}, + [5355] = {.lex_state = 380}, + [5356] = {.lex_state = 371}, + [5357] = {.lex_state = 371}, + [5358] = {.lex_state = 371}, + [5359] = {.lex_state = 387}, + [5360] = {.lex_state = 371}, + [5361] = {.lex_state = 515}, + [5362] = {.lex_state = 363}, + [5363] = {.lex_state = 515}, + [5364] = {.lex_state = 515}, + [5365] = {.lex_state = 515}, + [5366] = {.lex_state = 515}, + [5367] = {.lex_state = 515}, + [5368] = {.lex_state = 515}, + [5369] = {.lex_state = 515}, + [5370] = {.lex_state = 515}, + [5371] = {.lex_state = 515}, + [5372] = {.lex_state = 515}, + [5373] = {.lex_state = 515}, + [5374] = {.lex_state = 515}, + [5375] = {.lex_state = 515}, + [5376] = {.lex_state = 515}, + [5377] = {.lex_state = 371}, + [5378] = {.lex_state = 515}, + [5379] = {.lex_state = 382}, + [5380] = {.lex_state = 515}, + [5381] = {.lex_state = 515}, + [5382] = {.lex_state = 515}, + [5383] = {.lex_state = 515}, + [5384] = {.lex_state = 515}, + [5385] = {.lex_state = 515}, + [5386] = {.lex_state = 515}, + [5387] = {.lex_state = 515}, + [5388] = {.lex_state = 515}, + [5389] = {.lex_state = 515}, + [5390] = {.lex_state = 515}, + [5391] = {.lex_state = 515}, + [5392] = {.lex_state = 515}, + [5393] = {.lex_state = 515}, + [5394] = {.lex_state = 515}, + [5395] = {.lex_state = 366}, + [5396] = {.lex_state = 380}, + [5397] = {.lex_state = 515}, + [5398] = {.lex_state = 515}, + [5399] = {.lex_state = 515}, + [5400] = {.lex_state = 515}, + [5401] = {.lex_state = 371}, + [5402] = {.lex_state = 515}, + [5403] = {.lex_state = 515}, + [5404] = {.lex_state = 515}, + [5405] = {.lex_state = 515}, + [5406] = {.lex_state = 515}, + [5407] = {.lex_state = 515}, + [5408] = {.lex_state = 515}, + [5409] = {.lex_state = 515}, + [5410] = {.lex_state = 384}, + [5411] = {.lex_state = 388}, + [5412] = {.lex_state = 388}, + [5413] = {.lex_state = 380}, + [5414] = {.lex_state = 380}, + [5415] = {.lex_state = 380}, + [5416] = {.lex_state = 515}, + [5417] = {.lex_state = 515}, + [5418] = {.lex_state = 389}, + [5419] = {.lex_state = 515}, + [5420] = {.lex_state = 515}, + [5421] = {.lex_state = 515}, + [5422] = {.lex_state = 371}, + [5423] = {.lex_state = 380}, + [5424] = {.lex_state = 515}, + [5425] = {.lex_state = 515}, + [5426] = {.lex_state = 515}, + [5427] = {.lex_state = 515}, + [5428] = {.lex_state = 515}, + [5429] = {.lex_state = 515}, + [5430] = {.lex_state = 515}, + [5431] = {.lex_state = 515}, + [5432] = {.lex_state = 515}, + [5433] = {.lex_state = 515}, + [5434] = {.lex_state = 515}, + [5435] = {.lex_state = 515}, + [5436] = {.lex_state = 515}, + [5437] = {.lex_state = 515}, + [5438] = {.lex_state = 515}, + [5439] = {.lex_state = 371}, + [5440] = {.lex_state = 515}, + [5441] = {.lex_state = 388}, + [5442] = {.lex_state = 515}, + [5443] = {.lex_state = 515}, + [5444] = {.lex_state = 515}, + [5445] = {.lex_state = 515}, + [5446] = {.lex_state = 515}, + [5447] = {.lex_state = 515}, + [5448] = {.lex_state = 515}, + [5449] = {.lex_state = 515}, + [5450] = {.lex_state = 515}, + [5451] = {.lex_state = 515}, + [5452] = {.lex_state = 515}, + [5453] = {.lex_state = 515}, + [5454] = {.lex_state = 515}, + [5455] = {.lex_state = 371}, + [5456] = {.lex_state = 515}, + [5457] = {.lex_state = 380}, + [5458] = {.lex_state = 380}, + [5459] = {.lex_state = 515}, + [5460] = {.lex_state = 515}, + [5461] = {.lex_state = 515}, + [5462] = {.lex_state = 515}, + [5463] = {.lex_state = 380}, + [5464] = {.lex_state = 380}, + [5465] = {.lex_state = 515}, + [5466] = {.lex_state = 515}, + [5467] = {.lex_state = 515}, + [5468] = {.lex_state = 515}, + [5469] = {.lex_state = 515}, + [5470] = {.lex_state = 515}, + [5471] = {.lex_state = 371}, + [5472] = {.lex_state = 371}, + [5473] = {.lex_state = 515}, + [5474] = {.lex_state = 515}, + [5475] = {.lex_state = 515}, + [5476] = {.lex_state = 515}, + [5477] = {.lex_state = 515}, + [5478] = {.lex_state = 515}, + [5479] = {.lex_state = 388}, + [5480] = {.lex_state = 515}, + [5481] = {.lex_state = 371}, + [5482] = {.lex_state = 371}, + [5483] = {.lex_state = 371}, + [5484] = {.lex_state = 371}, + [5485] = {.lex_state = 515}, + [5486] = {.lex_state = 371}, + [5487] = {.lex_state = 515}, + [5488] = {.lex_state = 515}, + [5489] = {.lex_state = 515}, + [5490] = {.lex_state = 515}, + [5491] = {.lex_state = 515}, + [5492] = {.lex_state = 515}, + [5493] = {.lex_state = 515}, + [5494] = {.lex_state = 371}, + [5495] = {.lex_state = 515}, + [5496] = {.lex_state = 515}, + [5497] = {.lex_state = 515}, + [5498] = {.lex_state = 515}, + [5499] = {.lex_state = 515}, + [5500] = {.lex_state = 515}, + [5501] = {.lex_state = 371}, + [5502] = {.lex_state = 371}, + [5503] = {.lex_state = 515}, + [5504] = {.lex_state = 515}, + [5505] = {.lex_state = 363}, + [5506] = {.lex_state = 515}, + [5507] = {.lex_state = 515}, + [5508] = {.lex_state = 515}, + [5509] = {.lex_state = 388}, + [5510] = {.lex_state = 515}, + [5511] = {.lex_state = 515}, + [5512] = {.lex_state = 515}, + [5513] = {.lex_state = 371}, + [5514] = {.lex_state = 515}, + [5515] = {.lex_state = 515}, + [5516] = {.lex_state = 389}, + [5517] = {.lex_state = 515}, + [5518] = {.lex_state = 515}, + [5519] = {.lex_state = 515}, + [5520] = {.lex_state = 371}, + [5521] = {.lex_state = 371}, + [5522] = {.lex_state = 371}, + [5523] = {.lex_state = 371}, + [5524] = {.lex_state = 371}, + [5525] = {.lex_state = 371}, + [5526] = {.lex_state = 371}, + [5527] = {.lex_state = 371}, + [5528] = {.lex_state = 371}, + [5529] = {.lex_state = 385}, + [5530] = {.lex_state = 371}, + [5531] = {.lex_state = 371}, + [5532] = {.lex_state = 515}, + [5533] = {.lex_state = 515}, + [5534] = {.lex_state = 389}, + [5535] = {.lex_state = 371}, + [5536] = {.lex_state = 388}, + [5537] = {.lex_state = 388}, + [5538] = {.lex_state = 369}, + [5539] = {.lex_state = 515}, + [5540] = {.lex_state = 371}, + [5541] = {.lex_state = 371}, + [5542] = {.lex_state = 371}, + [5543] = {.lex_state = 515}, + [5544] = {.lex_state = 515}, + [5545] = {.lex_state = 371}, + [5546] = {.lex_state = 371}, + [5547] = {.lex_state = 371}, + [5548] = {.lex_state = 515}, + [5549] = {.lex_state = 515}, + [5550] = {.lex_state = 366}, + [5551] = {.lex_state = 515}, + [5552] = {.lex_state = 515}, + [5553] = {.lex_state = 515}, + [5554] = {.lex_state = 515}, + [5555] = {.lex_state = 515}, + [5556] = {.lex_state = 515}, + [5557] = {.lex_state = 515}, + [5558] = {.lex_state = 515}, + [5559] = {.lex_state = 515}, + [5560] = {.lex_state = 515}, + [5561] = {.lex_state = 515}, + [5562] = {.lex_state = 515}, + [5563] = {.lex_state = 515}, + [5564] = {.lex_state = 515}, + [5565] = {.lex_state = 515}, + [5566] = {.lex_state = 515}, + [5567] = {.lex_state = 515}, + [5568] = {.lex_state = 515}, + [5569] = {.lex_state = 515}, + [5570] = {.lex_state = 515}, + [5571] = {.lex_state = 515}, + [5572] = {.lex_state = 515}, + [5573] = {.lex_state = 388}, + [5574] = {.lex_state = 388}, + [5575] = {.lex_state = 384}, + [5576] = {.lex_state = 515}, + [5577] = {.lex_state = 515}, + [5578] = {.lex_state = 515}, + [5579] = {.lex_state = 515}, + [5580] = {.lex_state = 515}, + [5581] = {.lex_state = 515}, + [5582] = {.lex_state = 515}, + [5583] = {.lex_state = 515}, + [5584] = {.lex_state = 515}, + [5585] = {.lex_state = 388}, + [5586] = {.lex_state = 384}, + [5587] = {.lex_state = 363}, + [5588] = {.lex_state = 363}, + [5589] = {.lex_state = 384}, + [5590] = {.lex_state = 363}, + [5591] = {.lex_state = 372}, + [5592] = {.lex_state = 388}, + [5593] = {.lex_state = 363}, + [5594] = {.lex_state = 363}, + [5595] = {.lex_state = 363}, + [5596] = {.lex_state = 363}, + [5597] = {.lex_state = 363}, + [5598] = {.lex_state = 382}, + [5599] = {.lex_state = 388}, + [5600] = {.lex_state = 372}, + [5601] = {.lex_state = 380}, + [5602] = {.lex_state = 363}, + [5603] = {.lex_state = 363}, + [5604] = {.lex_state = 380}, + [5605] = {.lex_state = 363}, + [5606] = {.lex_state = 384}, + [5607] = {.lex_state = 515}, + [5608] = {.lex_state = 363}, + [5609] = {.lex_state = 384}, + [5610] = {.lex_state = 363}, + [5611] = {.lex_state = 363}, + [5612] = {.lex_state = 363}, + [5613] = {.lex_state = 382}, + [5614] = {.lex_state = 363}, + [5615] = {.lex_state = 384}, + [5616] = {.lex_state = 371}, + [5617] = {.lex_state = 388}, + [5618] = {.lex_state = 382}, + [5619] = {.lex_state = 382}, + [5620] = {.lex_state = 388}, + [5621] = {.lex_state = 363}, + [5622] = {.lex_state = 363}, + [5623] = {.lex_state = 382}, + [5624] = {.lex_state = 382}, + [5625] = {.lex_state = 382}, + [5626] = {.lex_state = 363}, + [5627] = {.lex_state = 363}, + [5628] = {.lex_state = 363}, + [5629] = {.lex_state = 363}, + [5630] = {.lex_state = 363}, + [5631] = {.lex_state = 363}, + [5632] = {.lex_state = 363}, + [5633] = {.lex_state = 363}, + [5634] = {.lex_state = 363}, + [5635] = {.lex_state = 363}, + [5636] = {.lex_state = 363}, + [5637] = {.lex_state = 363}, + [5638] = {.lex_state = 363}, + [5639] = {.lex_state = 363}, + [5640] = {.lex_state = 363}, + [5641] = {.lex_state = 382}, + [5642] = {.lex_state = 363}, + [5643] = {.lex_state = 384}, + [5644] = {.lex_state = 363}, + [5645] = {.lex_state = 388}, + [5646] = {.lex_state = 363}, + [5647] = {.lex_state = 363}, + [5648] = {.lex_state = 363}, + [5649] = {.lex_state = 363}, + [5650] = {.lex_state = 363}, + [5651] = {.lex_state = 363}, + [5652] = {.lex_state = 363}, + [5653] = {.lex_state = 363}, + [5654] = {.lex_state = 363}, + [5655] = {.lex_state = 382}, + [5656] = {.lex_state = 371}, + [5657] = {.lex_state = 361}, + [5658] = {.lex_state = 371}, + [5659] = {.lex_state = 371}, + [5660] = {.lex_state = 371}, + [5661] = {.lex_state = 371}, + [5662] = {.lex_state = 521}, + [5663] = {.lex_state = 361}, + [5664] = {.lex_state = 380}, + [5665] = {.lex_state = 380}, + [5666] = {.lex_state = 371}, + [5667] = {.lex_state = 371}, + [5668] = {.lex_state = 371}, + [5669] = {.lex_state = 371}, + [5670] = {.lex_state = 371}, + [5671] = {.lex_state = 380}, + [5672] = {.lex_state = 371}, + [5673] = {.lex_state = 380}, + [5674] = {.lex_state = 371}, + [5675] = {.lex_state = 371}, + [5676] = {.lex_state = 361}, + [5677] = {.lex_state = 371}, + [5678] = {.lex_state = 371}, + [5679] = {.lex_state = 371}, + [5680] = {.lex_state = 371}, + [5681] = {.lex_state = 388}, + [5682] = {.lex_state = 371}, + [5683] = {.lex_state = 371}, + [5684] = {.lex_state = 371}, + [5685] = {.lex_state = 371}, + [5686] = {.lex_state = 388}, + [5687] = {.lex_state = 388}, + [5688] = {.lex_state = 380}, + [5689] = {.lex_state = 380}, + [5690] = {.lex_state = 380}, + [5691] = {.lex_state = 380}, + [5692] = {.lex_state = 521}, + [5693] = {.lex_state = 371}, + [5694] = {.lex_state = 371}, + [5695] = {.lex_state = 371}, + [5696] = {.lex_state = 388}, + [5697] = {.lex_state = 371}, + [5698] = {.lex_state = 371}, + [5699] = {.lex_state = 371}, + [5700] = {.lex_state = 371}, + [5701] = {.lex_state = 371}, + [5702] = {.lex_state = 388}, + [5703] = {.lex_state = 371}, + [5704] = {.lex_state = 371}, + [5705] = {.lex_state = 380}, + [5706] = {.lex_state = 371}, + [5707] = {.lex_state = 371}, + [5708] = {.lex_state = 388}, + [5709] = {.lex_state = 380}, + [5710] = {.lex_state = 380}, + [5711] = {.lex_state = 371}, + [5712] = {.lex_state = 371}, + [5713] = {.lex_state = 371}, + [5714] = {.lex_state = 371}, + [5715] = {.lex_state = 371}, + [5716] = {.lex_state = 380}, + [5717] = {.lex_state = 371}, + [5718] = {.lex_state = 371}, + [5719] = {.lex_state = 371}, + [5720] = {.lex_state = 371}, + [5721] = {.lex_state = 384}, + [5722] = {.lex_state = 380}, + [5723] = {.lex_state = 391}, + [5724] = {.lex_state = 515}, + [5725] = {.lex_state = 371}, + [5726] = {.lex_state = 380}, + [5727] = {.lex_state = 380}, + [5728] = {.lex_state = 371}, + [5729] = {.lex_state = 380}, + [5730] = {.lex_state = 371}, + [5731] = {.lex_state = 380}, + [5732] = {.lex_state = 371}, + [5733] = {.lex_state = 371}, + [5734] = {.lex_state = 371}, + [5735] = {.lex_state = 380}, + [5736] = {.lex_state = 380}, + [5737] = {.lex_state = 371}, + [5738] = {.lex_state = 371}, + [5739] = {.lex_state = 380}, + [5740] = {.lex_state = 371}, + [5741] = {.lex_state = 371}, + [5742] = {.lex_state = 371}, + [5743] = {.lex_state = 371}, + [5744] = {.lex_state = 371}, + [5745] = {.lex_state = 380}, + [5746] = {.lex_state = 371}, + [5747] = {.lex_state = 371}, + [5748] = {.lex_state = 371}, + [5749] = {.lex_state = 361}, + [5750] = {.lex_state = 371}, + [5751] = {.lex_state = 371}, + [5752] = {.lex_state = 388}, + [5753] = {.lex_state = 391}, + [5754] = {.lex_state = 391}, + [5755] = {.lex_state = 388}, + [5756] = {.lex_state = 380}, + [5757] = {.lex_state = 380}, + [5758] = {.lex_state = 387}, + [5759] = {.lex_state = 391}, + [5760] = {.lex_state = 380}, + [5761] = {.lex_state = 388}, + [5762] = {.lex_state = 388}, + [5763] = {.lex_state = 380}, + [5764] = {.lex_state = 382}, + [5765] = {.lex_state = 380}, + [5766] = {.lex_state = 382}, + [5767] = {.lex_state = 382}, + [5768] = {.lex_state = 363}, + [5769] = {.lex_state = 363}, + [5770] = {.lex_state = 382}, + [5771] = {.lex_state = 380}, + [5772] = {.lex_state = 380}, + [5773] = {.lex_state = 391}, + [5774] = {.lex_state = 380}, + [5775] = {.lex_state = 380}, + [5776] = {.lex_state = 388}, + [5777] = {.lex_state = 388}, + [5778] = {.lex_state = 380}, + [5779] = {.lex_state = 361}, + [5780] = {.lex_state = 382}, + [5781] = {.lex_state = 361}, + [5782] = {.lex_state = 380}, + [5783] = {.lex_state = 382}, + [5784] = {.lex_state = 361}, + [5785] = {.lex_state = 385}, + [5786] = {.lex_state = 380}, + [5787] = {.lex_state = 380}, + [5788] = {.lex_state = 380}, + [5789] = {.lex_state = 380}, + [5790] = {.lex_state = 382}, + [5791] = {.lex_state = 382}, + [5792] = {.lex_state = 520}, + [5793] = {.lex_state = 361}, + [5794] = {.lex_state = 361}, + [5795] = {.lex_state = 380}, + [5796] = {.lex_state = 388}, + [5797] = {.lex_state = 388}, + [5798] = {.lex_state = 361}, + [5799] = {.lex_state = 380}, + [5800] = {.lex_state = 382}, + [5801] = {.lex_state = 388}, + [5802] = {.lex_state = 388}, + [5803] = {.lex_state = 385}, + [5804] = {.lex_state = 388}, + [5805] = {.lex_state = 388}, + [5806] = {.lex_state = 361}, + [5807] = {.lex_state = 388}, + [5808] = {.lex_state = 361}, + [5809] = {.lex_state = 388}, + [5810] = {.lex_state = 388}, + [5811] = {.lex_state = 388}, + [5812] = {.lex_state = 388}, + [5813] = {.lex_state = 388}, + [5814] = {.lex_state = 361}, + [5815] = {.lex_state = 520}, + [5816] = {.lex_state = 380}, + [5817] = {.lex_state = 361}, + [5818] = {.lex_state = 380}, + [5819] = {.lex_state = 521}, + [5820] = {.lex_state = 387}, + [5821] = {.lex_state = 387}, + [5822] = {.lex_state = 387}, + [5823] = {.lex_state = 387}, + [5824] = {.lex_state = 387}, + [5825] = {.lex_state = 387}, + [5826] = {.lex_state = 387}, + [5827] = {.lex_state = 387}, + [5828] = {.lex_state = 387}, + [5829] = {.lex_state = 387}, + [5830] = {.lex_state = 387}, + [5831] = {.lex_state = 387}, + [5832] = {.lex_state = 387}, + [5833] = {.lex_state = 387}, + [5834] = {.lex_state = 387}, + [5835] = {.lex_state = 387}, + [5836] = {.lex_state = 380}, + [5837] = {.lex_state = 387}, + [5838] = {.lex_state = 382}, + [5839] = {.lex_state = 382}, + [5840] = {.lex_state = 385}, + [5841] = {.lex_state = 521}, + [5842] = {.lex_state = 387}, + [5843] = {.lex_state = 388}, + [5844] = {.lex_state = 514}, + [5845] = {.lex_state = 387}, + [5846] = {.lex_state = 387}, + [5847] = {.lex_state = 521}, + [5848] = {.lex_state = 388}, + [5849] = {.lex_state = 388}, + [5850] = {.lex_state = 388}, + [5851] = {.lex_state = 388}, + [5852] = {.lex_state = 388}, + [5853] = {.lex_state = 388}, + [5854] = {.lex_state = 387}, + [5855] = {.lex_state = 387}, + [5856] = {.lex_state = 388}, + [5857] = {.lex_state = 521}, + [5858] = {.lex_state = 382}, + [5859] = {.lex_state = 387}, + [5860] = {.lex_state = 387}, + [5861] = {.lex_state = 387}, + [5862] = {.lex_state = 388}, + [5863] = {.lex_state = 387}, + [5864] = {.lex_state = 387}, + [5865] = {.lex_state = 521}, + [5866] = {.lex_state = 521}, + [5867] = {.lex_state = 380}, + [5868] = {.lex_state = 380}, + [5869] = {.lex_state = 363}, + [5870] = {.lex_state = 363}, + [5871] = {.lex_state = 380}, + [5872] = {.lex_state = 380}, + [5873] = {.lex_state = 380}, + [5874] = {.lex_state = 380}, + [5875] = {.lex_state = 380}, + [5876] = {.lex_state = 382}, + [5877] = {.lex_state = 387}, + [5878] = {.lex_state = 388}, + [5879] = {.lex_state = 382}, + [5880] = {.lex_state = 388}, + [5881] = {.lex_state = 382}, + [5882] = {.lex_state = 382}, + [5883] = {.lex_state = 382}, + [5884] = {.lex_state = 380}, + [5885] = {.lex_state = 363}, + [5886] = {.lex_state = 363}, + [5887] = {.lex_state = 363}, + [5888] = {.lex_state = 363}, + [5889] = {.lex_state = 380}, + [5890] = {.lex_state = 380}, + [5891] = {.lex_state = 380}, + [5892] = {.lex_state = 380}, + [5893] = {.lex_state = 380}, + [5894] = {.lex_state = 380}, + [5895] = {.lex_state = 380}, + [5896] = {.lex_state = 387}, + [5897] = {.lex_state = 388}, + [5898] = {.lex_state = 384}, + [5899] = {.lex_state = 380}, + [5900] = {.lex_state = 382}, + [5901] = {.lex_state = 380}, + [5902] = {.lex_state = 388}, + [5903] = {.lex_state = 380}, + [5904] = {.lex_state = 380}, + [5905] = {.lex_state = 380}, + [5906] = {.lex_state = 380}, + [5907] = {.lex_state = 380}, + [5908] = {.lex_state = 380}, + [5909] = {.lex_state = 380}, + [5910] = {.lex_state = 363}, + [5911] = {.lex_state = 363}, + [5912] = {.lex_state = 363}, + [5913] = {.lex_state = 388}, + [5914] = {.lex_state = 380}, + [5915] = {.lex_state = 388}, + [5916] = {.lex_state = 388}, + [5917] = {.lex_state = 384}, + [5918] = {.lex_state = 380}, + [5919] = {.lex_state = 380}, + [5920] = {.lex_state = 363}, + [5921] = {.lex_state = 380}, + [5922] = {.lex_state = 382}, + [5923] = {.lex_state = 380}, + [5924] = {.lex_state = 380}, + [5925] = {.lex_state = 380}, + [5926] = {.lex_state = 380}, + [5927] = {.lex_state = 388}, + [5928] = {.lex_state = 382}, + [5929] = {.lex_state = 380}, + [5930] = {.lex_state = 387}, + [5931] = {.lex_state = 521}, + [5932] = {.lex_state = 387}, + [5933] = {.lex_state = 380}, + [5934] = {.lex_state = 387}, + [5935] = {.lex_state = 387}, + [5936] = {.lex_state = 380}, + [5937] = {.lex_state = 387}, + [5938] = {.lex_state = 387}, + [5939] = {.lex_state = 387}, + [5940] = {.lex_state = 320}, + [5941] = {.lex_state = 387}, + [5942] = {.lex_state = 387}, + [5943] = {.lex_state = 387}, + [5944] = {.lex_state = 387}, + [5945] = {.lex_state = 387}, + [5946] = {.lex_state = 387}, + [5947] = {.lex_state = 387}, + [5948] = {.lex_state = 387}, + [5949] = {.lex_state = 380}, + [5950] = {.lex_state = 387}, + [5951] = {.lex_state = 387}, + [5952] = {.lex_state = 387}, + [5953] = {.lex_state = 387}, + [5954] = {.lex_state = 387}, + [5955] = {.lex_state = 380}, + [5956] = {.lex_state = 387}, + [5957] = {.lex_state = 320}, + [5958] = {.lex_state = 388}, + [5959] = {.lex_state = 387}, + [5960] = {.lex_state = 387}, + [5961] = {.lex_state = 387}, + [5962] = {.lex_state = 387}, + [5963] = {.lex_state = 380}, + [5964] = {.lex_state = 387}, + [5965] = {.lex_state = 387}, + [5966] = {.lex_state = 387}, + [5967] = {.lex_state = 387}, + [5968] = {.lex_state = 380}, + [5969] = {.lex_state = 380}, + [5970] = {.lex_state = 380}, + [5971] = {.lex_state = 387}, + [5972] = {.lex_state = 388}, + [5973] = {.lex_state = 387}, + [5974] = {.lex_state = 387}, + [5975] = {.lex_state = 380}, + [5976] = {.lex_state = 387}, + [5977] = {.lex_state = 387}, + [5978] = {.lex_state = 387}, + [5979] = {.lex_state = 387}, + [5980] = {.lex_state = 320}, + [5981] = {.lex_state = 387}, + [5982] = {.lex_state = 387}, + [5983] = {.lex_state = 387}, + [5984] = {.lex_state = 387}, + [5985] = {.lex_state = 387}, + [5986] = {.lex_state = 380}, + [5987] = {.lex_state = 521}, + [5988] = {.lex_state = 387}, + [5989] = {.lex_state = 387}, + [5990] = {.lex_state = 387}, + [5991] = {.lex_state = 387}, + [5992] = {.lex_state = 387}, + [5993] = {.lex_state = 380}, + [5994] = {.lex_state = 387}, + [5995] = {.lex_state = 387}, + [5996] = {.lex_state = 387}, + [5997] = {.lex_state = 387}, + [5998] = {.lex_state = 387}, + [5999] = {.lex_state = 387}, + [6000] = {.lex_state = 387}, + [6001] = {.lex_state = 320}, + [6002] = {.lex_state = 380}, + [6003] = {.lex_state = 380}, + [6004] = {.lex_state = 388}, + [6005] = {.lex_state = 387}, + [6006] = {.lex_state = 387}, + [6007] = {.lex_state = 380}, + [6008] = {.lex_state = 380}, + [6009] = {.lex_state = 320}, + [6010] = {.lex_state = 387}, + [6011] = {.lex_state = 320}, + [6012] = {.lex_state = 387}, + [6013] = {.lex_state = 387}, + [6014] = {.lex_state = 380}, + [6015] = {.lex_state = 387}, + [6016] = {.lex_state = 387}, + [6017] = {.lex_state = 387}, + [6018] = {.lex_state = 387}, + [6019] = {.lex_state = 387}, + [6020] = {.lex_state = 387}, + [6021] = {.lex_state = 320}, + [6022] = {.lex_state = 380}, + [6023] = {.lex_state = 388}, + [6024] = {.lex_state = 380}, + [6025] = {.lex_state = 320}, + [6026] = {.lex_state = 387}, + [6027] = {.lex_state = 380}, + [6028] = {.lex_state = 387}, + [6029] = {.lex_state = 387}, + [6030] = {.lex_state = 387}, + [6031] = {.lex_state = 387}, + [6032] = {.lex_state = 387}, + [6033] = {.lex_state = 387}, + [6034] = {.lex_state = 387}, + [6035] = {.lex_state = 380}, + [6036] = {.lex_state = 387}, + [6037] = {.lex_state = 387}, + [6038] = {.lex_state = 380}, + [6039] = {.lex_state = 380}, + [6040] = {.lex_state = 387}, + [6041] = {.lex_state = 387}, + [6042] = {.lex_state = 387}, + [6043] = {.lex_state = 387}, + [6044] = {.lex_state = 387}, + [6045] = {.lex_state = 320}, + [6046] = {.lex_state = 320}, + [6047] = {.lex_state = 320}, + [6048] = {.lex_state = 380}, + [6049] = {.lex_state = 380}, + [6050] = {.lex_state = 380}, + [6051] = {.lex_state = 380}, + [6052] = {.lex_state = 380}, + [6053] = {.lex_state = 320}, + [6054] = {.lex_state = 380}, + [6055] = {.lex_state = 387}, + [6056] = {.lex_state = 320}, + [6057] = {.lex_state = 320}, + [6058] = {.lex_state = 320}, + [6059] = {.lex_state = 320}, + [6060] = {.lex_state = 514}, + [6061] = {.lex_state = 380}, + [6062] = {.lex_state = 380}, + [6063] = {.lex_state = 380}, + [6064] = {.lex_state = 320}, + [6065] = {.lex_state = 380}, + [6066] = {.lex_state = 380}, + [6067] = {.lex_state = 521}, + [6068] = {.lex_state = 320}, + [6069] = {.lex_state = 320}, + [6070] = {.lex_state = 320}, + [6071] = {.lex_state = 320}, + [6072] = {.lex_state = 320}, + [6073] = {.lex_state = 380}, + [6074] = {.lex_state = 380}, + [6075] = {.lex_state = 320}, + [6076] = {.lex_state = 380}, + [6077] = {.lex_state = 380}, + [6078] = {.lex_state = 380}, + [6079] = {.lex_state = 380}, + [6080] = {.lex_state = 380}, + [6081] = {.lex_state = 380}, + [6082] = {.lex_state = 320}, + [6083] = {.lex_state = 320}, + [6084] = {.lex_state = 320}, + [6085] = {.lex_state = 380}, + [6086] = {.lex_state = 380}, + [6087] = {.lex_state = 320}, + [6088] = {.lex_state = 380}, + [6089] = {.lex_state = 320}, + [6090] = {.lex_state = 320}, + [6091] = {.lex_state = 380}, + [6092] = {.lex_state = 320}, + [6093] = {.lex_state = 320}, + [6094] = {.lex_state = 320}, + [6095] = {.lex_state = 320}, + [6096] = {.lex_state = 320}, + [6097] = {.lex_state = 387}, + [6098] = {.lex_state = 521}, + [6099] = {.lex_state = 320}, + [6100] = {.lex_state = 380}, + [6101] = {.lex_state = 320}, + [6102] = {.lex_state = 380}, + [6103] = {.lex_state = 320}, + [6104] = {.lex_state = 320}, + [6105] = {.lex_state = 320}, + [6106] = {.lex_state = 320}, + [6107] = {.lex_state = 380}, + [6108] = {.lex_state = 320}, + [6109] = {.lex_state = 320}, + [6110] = {.lex_state = 380}, + [6111] = {.lex_state = 320}, + [6112] = {.lex_state = 320}, + [6113] = {.lex_state = 320}, + [6114] = {.lex_state = 320}, + [6115] = {.lex_state = 320}, + [6116] = {.lex_state = 320}, + [6117] = {.lex_state = 320}, + [6118] = {.lex_state = 320}, + [6119] = {.lex_state = 320}, + [6120] = {.lex_state = 380}, + [6121] = {.lex_state = 320}, + [6122] = {.lex_state = 382}, + [6123] = {.lex_state = 320}, + [6124] = {.lex_state = 320}, + [6125] = {.lex_state = 521}, + [6126] = {.lex_state = 320}, + [6127] = {.lex_state = 382}, + [6128] = {.lex_state = 380}, + [6129] = {.lex_state = 320}, + [6130] = {.lex_state = 320}, + [6131] = {.lex_state = 388}, + [6132] = {.lex_state = 388}, + [6133] = {.lex_state = 320}, + [6134] = {.lex_state = 320}, + [6135] = {.lex_state = 380}, + [6136] = {.lex_state = 382}, + [6137] = {.lex_state = 380}, + [6138] = {.lex_state = 382}, + [6139] = {.lex_state = 320}, + [6140] = {.lex_state = 320}, + [6141] = {.lex_state = 320}, + [6142] = {.lex_state = 320}, + [6143] = {.lex_state = 320}, + [6144] = {.lex_state = 320}, + [6145] = {.lex_state = 320}, + [6146] = {.lex_state = 320}, + [6147] = {.lex_state = 320}, + [6148] = {.lex_state = 320}, + [6149] = {.lex_state = 320}, + [6150] = {.lex_state = 521}, + [6151] = {.lex_state = 320}, + [6152] = {.lex_state = 380}, + [6153] = {.lex_state = 380}, + [6154] = {.lex_state = 320}, + [6155] = {.lex_state = 380}, + [6156] = {.lex_state = 380}, + [6157] = {.lex_state = 320}, + [6158] = {.lex_state = 320}, + [6159] = {.lex_state = 320}, + [6160] = {.lex_state = 320}, + [6161] = {.lex_state = 320}, + [6162] = {.lex_state = 320}, + [6163] = {.lex_state = 320}, + [6164] = {.lex_state = 380}, + [6165] = {.lex_state = 320}, + [6166] = {.lex_state = 320}, + [6167] = {.lex_state = 320}, + [6168] = {.lex_state = 320}, + [6169] = {.lex_state = 320}, + [6170] = {.lex_state = 320}, + [6171] = {.lex_state = 320}, + [6172] = {.lex_state = 320}, + [6173] = {.lex_state = 320}, + [6174] = {.lex_state = 380}, + [6175] = {.lex_state = 380}, + [6176] = {.lex_state = 380}, + [6177] = {.lex_state = 320}, + [6178] = {.lex_state = 320}, + [6179] = {.lex_state = 320}, + [6180] = {.lex_state = 380}, + [6181] = {.lex_state = 320}, + [6182] = {.lex_state = 380}, + [6183] = {.lex_state = 320}, + [6184] = {.lex_state = 320}, + [6185] = {.lex_state = 380}, + [6186] = {.lex_state = 320}, + [6187] = {.lex_state = 521}, + [6188] = {.lex_state = 320}, + [6189] = {.lex_state = 320}, + [6190] = {.lex_state = 380}, + [6191] = {.lex_state = 320}, + [6192] = {.lex_state = 380}, + [6193] = {.lex_state = 380}, + [6194] = {.lex_state = 320}, + [6195] = {.lex_state = 320}, + [6196] = {.lex_state = 320}, + [6197] = {.lex_state = 320}, + [6198] = {.lex_state = 380}, + [6199] = {.lex_state = 380}, + [6200] = {.lex_state = 320}, + [6201] = {.lex_state = 380}, + [6202] = {.lex_state = 380}, + [6203] = {.lex_state = 320}, + [6204] = {.lex_state = 380}, + [6205] = {.lex_state = 380}, + [6206] = {.lex_state = 320}, + [6207] = {.lex_state = 380}, + [6208] = {.lex_state = 380}, + [6209] = {.lex_state = 320}, + [6210] = {.lex_state = 514}, + [6211] = {.lex_state = 320}, + [6212] = {.lex_state = 320}, + [6213] = {.lex_state = 384}, + [6214] = {.lex_state = 382}, + [6215] = {.lex_state = 320}, + [6216] = {.lex_state = 320}, + [6217] = {.lex_state = 320}, + [6218] = {.lex_state = 320}, + [6219] = {.lex_state = 521}, + [6220] = {.lex_state = 320}, + [6221] = {.lex_state = 320}, + [6222] = {.lex_state = 382}, + [6223] = {.lex_state = 382}, + [6224] = {.lex_state = 320}, + [6225] = {.lex_state = 320}, + [6226] = {.lex_state = 382}, + [6227] = {.lex_state = 320}, + [6228] = {.lex_state = 363}, + [6229] = {.lex_state = 363}, + [6230] = {.lex_state = 320}, + [6231] = {.lex_state = 363}, + [6232] = {.lex_state = 363}, + [6233] = {.lex_state = 320}, + [6234] = {.lex_state = 384}, + [6235] = {.lex_state = 320}, + [6236] = {.lex_state = 320}, + [6237] = {.lex_state = 382}, + [6238] = {.lex_state = 320}, + [6239] = {.lex_state = 382}, + [6240] = {.lex_state = 320}, + [6241] = {.lex_state = 320}, + [6242] = {.lex_state = 320}, + [6243] = {.lex_state = 320}, + [6244] = {.lex_state = 320}, + [6245] = {.lex_state = 382}, + [6246] = {.lex_state = 320}, + [6247] = {.lex_state = 384}, + [6248] = {.lex_state = 320}, + [6249] = {.lex_state = 320}, + [6250] = {.lex_state = 320}, + [6251] = {.lex_state = 384}, + [6252] = {.lex_state = 507}, + [6253] = {.lex_state = 388}, + [6254] = {.lex_state = 507}, + [6255] = {.lex_state = 507}, + [6256] = {.lex_state = 388}, + [6257] = {.lex_state = 507}, + [6258] = {.lex_state = 387}, + [6259] = {.lex_state = 388}, + [6260] = {.lex_state = 388}, + [6261] = {.lex_state = 388}, + [6262] = {.lex_state = 507}, + [6263] = {.lex_state = 507}, + [6264] = {.lex_state = 507}, + [6265] = {.lex_state = 387}, + [6266] = {.lex_state = 388}, + [6267] = {.lex_state = 507}, + [6268] = {.lex_state = 387}, + [6269] = {.lex_state = 388}, + [6270] = {.lex_state = 387}, + [6271] = {.lex_state = 388}, + [6272] = {.lex_state = 382}, + [6273] = {.lex_state = 382}, + [6274] = {.lex_state = 382}, + [6275] = {.lex_state = 388}, + [6276] = {.lex_state = 382}, + [6277] = {.lex_state = 387}, + [6278] = {.lex_state = 387}, + [6279] = {.lex_state = 387}, + [6280] = {.lex_state = 387}, + [6281] = {.lex_state = 388}, + [6282] = {.lex_state = 388}, + [6283] = {.lex_state = 388}, + [6284] = {.lex_state = 382}, + [6285] = {.lex_state = 387}, + [6286] = {.lex_state = 382}, + [6287] = {.lex_state = 382}, + [6288] = {.lex_state = 388}, + [6289] = {.lex_state = 388}, + [6290] = {.lex_state = 388}, + [6291] = {.lex_state = 388}, + [6292] = {.lex_state = 387}, + [6293] = {.lex_state = 382}, + [6294] = {.lex_state = 387}, + [6295] = {.lex_state = 387}, + [6296] = {.lex_state = 388}, + [6297] = {.lex_state = 387}, + [6298] = {.lex_state = 387}, + [6299] = {.lex_state = 382}, + [6300] = {.lex_state = 382}, + [6301] = {.lex_state = 385}, + [6302] = {.lex_state = 387}, + [6303] = {.lex_state = 388}, + [6304] = {.lex_state = 387}, + [6305] = {.lex_state = 382}, + [6306] = {.lex_state = 382}, + [6307] = {.lex_state = 393}, + [6308] = {.lex_state = 393}, + [6309] = {.lex_state = 393}, + [6310] = {.lex_state = 387}, + [6311] = {.lex_state = 387}, + [6312] = {.lex_state = 387}, + [6313] = {.lex_state = 387}, + [6314] = {.lex_state = 387}, + [6315] = {.lex_state = 393}, + [6316] = {.lex_state = 393}, + [6317] = {.lex_state = 393}, + [6318] = {.lex_state = 393}, + [6319] = {.lex_state = 387}, + [6320] = {.lex_state = 320}, + [6321] = {.lex_state = 387}, + [6322] = {.lex_state = 320}, + [6323] = {.lex_state = 320}, + [6324] = {.lex_state = 320}, + [6325] = {.lex_state = 387}, + [6326] = {.lex_state = 387}, + [6327] = {.lex_state = 320}, + [6328] = {.lex_state = 320}, + [6329] = {.lex_state = 387}, + [6330] = {.lex_state = 320}, + [6331] = {.lex_state = 320}, + [6332] = {.lex_state = 393}, + [6333] = {.lex_state = 320}, + [6334] = {.lex_state = 387}, + [6335] = {.lex_state = 521}, + [6336] = {.lex_state = 320}, + [6337] = {.lex_state = 320}, + [6338] = {.lex_state = 385}, + [6339] = {.lex_state = 387}, + [6340] = {.lex_state = 393}, + [6341] = {.lex_state = 320}, + [6342] = {.lex_state = 393}, + [6343] = {.lex_state = 393}, + [6344] = {.lex_state = 393}, + [6345] = {.lex_state = 382}, + [6346] = {.lex_state = 382}, + [6347] = {.lex_state = 388}, + [6348] = {.lex_state = 382}, + [6349] = {.lex_state = 382}, + [6350] = {.lex_state = 382}, + [6351] = {.lex_state = 388}, + [6352] = {.lex_state = 382}, + [6353] = {.lex_state = 387}, + [6354] = {.lex_state = 382}, + [6355] = {.lex_state = 384}, + [6356] = {.lex_state = 384}, + [6357] = {.lex_state = 384}, + [6358] = {.lex_state = 384}, + [6359] = {.lex_state = 521}, + [6360] = {.lex_state = 387}, + [6361] = {.lex_state = 380}, + [6362] = {.lex_state = 384}, + [6363] = {.lex_state = 384}, + [6364] = {.lex_state = 387}, + [6365] = {.lex_state = 507}, + [6366] = {.lex_state = 393}, + [6367] = {.lex_state = 393}, + [6368] = {.lex_state = 393}, + [6369] = {.lex_state = 393}, + [6370] = {.lex_state = 384}, + [6371] = {.lex_state = 393}, + [6372] = {.lex_state = 393}, + [6373] = {.lex_state = 393}, + [6374] = {.lex_state = 507}, + [6375] = {.lex_state = 393}, + [6376] = {.lex_state = 507}, + [6377] = {.lex_state = 393}, + [6378] = {.lex_state = 393}, + [6379] = {.lex_state = 393}, + [6380] = {.lex_state = 393}, + [6381] = {.lex_state = 361}, + [6382] = {.lex_state = 393}, + [6383] = {.lex_state = 393}, + [6384] = {.lex_state = 361}, + [6385] = {.lex_state = 393}, + [6386] = {.lex_state = 393}, + [6387] = {.lex_state = 393}, + [6388] = {.lex_state = 393}, + [6389] = {.lex_state = 361}, + [6390] = {.lex_state = 393}, + [6391] = {.lex_state = 393}, + [6392] = {.lex_state = 393}, + [6393] = {.lex_state = 393}, + [6394] = {.lex_state = 393}, + [6395] = {.lex_state = 393}, + [6396] = {.lex_state = 393}, + [6397] = {.lex_state = 393}, + [6398] = {.lex_state = 361}, + [6399] = {.lex_state = 393}, + [6400] = {.lex_state = 507}, + [6401] = {.lex_state = 393}, + [6402] = {.lex_state = 507}, + [6403] = {.lex_state = 393}, + [6404] = {.lex_state = 507}, + [6405] = {.lex_state = 507}, + [6406] = {.lex_state = 319}, + [6407] = {.lex_state = 393}, + [6408] = {.lex_state = 393}, + [6409] = {.lex_state = 393}, + [6410] = {.lex_state = 507}, + [6411] = {.lex_state = 393}, + [6412] = {.lex_state = 388}, + [6413] = {.lex_state = 393}, + [6414] = {.lex_state = 393}, + [6415] = {.lex_state = 393}, + [6416] = {.lex_state = 393}, + [6417] = {.lex_state = 382}, + [6418] = {.lex_state = 388}, + [6419] = {.lex_state = 393}, + [6420] = {.lex_state = 393}, + [6421] = {.lex_state = 388}, + [6422] = {.lex_state = 393}, + [6423] = {.lex_state = 393}, + [6424] = {.lex_state = 393}, + [6425] = {.lex_state = 393}, + [6426] = {.lex_state = 507}, + [6427] = {.lex_state = 393}, + [6428] = {.lex_state = 507}, + [6429] = {.lex_state = 393}, + [6430] = {.lex_state = 393}, + [6431] = {.lex_state = 361}, + [6432] = {.lex_state = 393}, + [6433] = {.lex_state = 507}, + [6434] = {.lex_state = 393}, + [6435] = {.lex_state = 393}, + [6436] = {.lex_state = 393}, + [6437] = {.lex_state = 361}, + [6438] = {.lex_state = 384}, + [6439] = {.lex_state = 388}, + [6440] = {.lex_state = 361}, + [6441] = {.lex_state = 393}, + [6442] = {.lex_state = 382}, + [6443] = {.lex_state = 382}, + [6444] = {.lex_state = 388}, + [6445] = {.lex_state = 384}, + [6446] = {.lex_state = 507}, + [6447] = {.lex_state = 320}, + [6448] = {.lex_state = 320}, + [6449] = {.lex_state = 320}, + [6450] = {.lex_state = 135}, + [6451] = {.lex_state = 320}, + [6452] = {.lex_state = 320}, + [6453] = {.lex_state = 320}, + [6454] = {.lex_state = 320}, + [6455] = {.lex_state = 320}, + [6456] = {.lex_state = 320}, + [6457] = {.lex_state = 320}, + [6458] = {.lex_state = 280}, + [6459] = {.lex_state = 320}, + [6460] = {.lex_state = 320}, + [6461] = {.lex_state = 320}, + [6462] = {.lex_state = 320}, + [6463] = {.lex_state = 320}, + [6464] = {.lex_state = 280}, + [6465] = {.lex_state = 320}, + [6466] = {.lex_state = 320}, + [6467] = {.lex_state = 320}, + [6468] = {.lex_state = 320}, + [6469] = {.lex_state = 320}, + [6470] = {.lex_state = 320}, + [6471] = {.lex_state = 320}, + [6472] = {.lex_state = 320}, + [6473] = {.lex_state = 320}, + [6474] = {.lex_state = 320}, + [6475] = {.lex_state = 320}, + [6476] = {.lex_state = 320}, + [6477] = {.lex_state = 320}, + [6478] = {.lex_state = 320}, + [6479] = {.lex_state = 320}, + [6480] = {.lex_state = 319}, + [6481] = {.lex_state = 320}, + [6482] = {.lex_state = 320}, + [6483] = {.lex_state = 320}, + [6484] = {.lex_state = 320}, + [6485] = {.lex_state = 320}, + [6486] = {.lex_state = 320}, + [6487] = {.lex_state = 320}, + [6488] = {.lex_state = 320}, + [6489] = {.lex_state = 320}, + [6490] = {.lex_state = 320}, + [6491] = {.lex_state = 320}, + [6492] = {.lex_state = 320}, + [6493] = {.lex_state = 320}, + [6494] = {.lex_state = 320}, + [6495] = {.lex_state = 320}, + [6496] = {.lex_state = 320}, + [6497] = {.lex_state = 320}, + [6498] = {.lex_state = 320}, + [6499] = {.lex_state = 320}, + [6500] = {.lex_state = 320}, + [6501] = {.lex_state = 320}, + [6502] = {.lex_state = 319}, + [6503] = {.lex_state = 320}, + [6504] = {.lex_state = 320}, + [6505] = {.lex_state = 320}, + [6506] = {.lex_state = 320}, + [6507] = {.lex_state = 320}, + [6508] = {.lex_state = 320}, + [6509] = {.lex_state = 320}, + [6510] = {.lex_state = 320}, + [6511] = {.lex_state = 320}, + [6512] = {.lex_state = 320}, + [6513] = {.lex_state = 320}, + [6514] = {.lex_state = 361}, + [6515] = {.lex_state = 320}, + [6516] = {.lex_state = 361}, + [6517] = {.lex_state = 320}, + [6518] = {.lex_state = 320}, + [6519] = {.lex_state = 320}, + [6520] = {.lex_state = 320}, + [6521] = {.lex_state = 320}, + [6522] = {.lex_state = 320}, + [6523] = {.lex_state = 320}, + [6524] = {.lex_state = 320}, + [6525] = {.lex_state = 320}, + [6526] = {.lex_state = 320}, + [6527] = {.lex_state = 320}, + [6528] = {.lex_state = 280}, + [6529] = {.lex_state = 320}, + [6530] = {.lex_state = 320}, + [6531] = {.lex_state = 320}, + [6532] = {.lex_state = 320}, + [6533] = {.lex_state = 320}, + [6534] = {.lex_state = 320}, + [6535] = {.lex_state = 320}, + [6536] = {.lex_state = 320}, + [6537] = {.lex_state = 320}, + [6538] = {.lex_state = 320}, + [6539] = {.lex_state = 320}, + [6540] = {.lex_state = 320}, + [6541] = {.lex_state = 320}, + [6542] = {.lex_state = 320}, + [6543] = {.lex_state = 320}, + [6544] = {.lex_state = 320}, + [6545] = {.lex_state = 320}, + [6546] = {.lex_state = 320}, + [6547] = {.lex_state = 320}, + [6548] = {.lex_state = 320}, + [6549] = {.lex_state = 320}, + [6550] = {.lex_state = 320}, + [6551] = {.lex_state = 320}, + [6552] = {.lex_state = 320}, + [6553] = {.lex_state = 320}, + [6554] = {.lex_state = 320}, + [6555] = {.lex_state = 320}, + [6556] = {.lex_state = 320}, + [6557] = {.lex_state = 320}, + [6558] = {.lex_state = 320}, + [6559] = {.lex_state = 320}, + [6560] = {.lex_state = 320}, + [6561] = {.lex_state = 320}, + [6562] = {.lex_state = 320}, + [6563] = {.lex_state = 320}, + [6564] = {.lex_state = 320}, + [6565] = {.lex_state = 320}, + [6566] = {.lex_state = 320}, + [6567] = {.lex_state = 320}, + [6568] = {.lex_state = 320}, + [6569] = {.lex_state = 320}, + [6570] = {.lex_state = 319}, + [6571] = {.lex_state = 320}, + [6572] = {.lex_state = 320}, + [6573] = {.lex_state = 320}, + [6574] = {.lex_state = 320}, + [6575] = {.lex_state = 320}, + [6576] = {.lex_state = 361}, + [6577] = {.lex_state = 319}, + [6578] = {.lex_state = 319}, + [6579] = {.lex_state = 319}, + [6580] = {.lex_state = 280}, + [6581] = {.lex_state = 280}, + [6582] = {.lex_state = 361}, + [6583] = {.lex_state = 319}, + [6584] = {.lex_state = 280}, + [6585] = {.lex_state = 361}, + [6586] = {.lex_state = 280}, + [6587] = {.lex_state = 280}, + [6588] = {.lex_state = 280}, + [6589] = {.lex_state = 280}, + [6590] = {.lex_state = 280}, + [6591] = {.lex_state = 319}, + [6592] = {.lex_state = 280}, + [6593] = {.lex_state = 361}, + [6594] = {.lex_state = 361}, + [6595] = {.lex_state = 361}, + [6596] = {.lex_state = 319}, + [6597] = {.lex_state = 319}, + [6598] = {.lex_state = 382}, + [6599] = {.lex_state = 280}, + [6600] = {.lex_state = 319}, + [6601] = {.lex_state = 319}, + [6602] = {.lex_state = 319}, + [6603] = {.lex_state = 319}, + [6604] = {.lex_state = 319}, + [6605] = {.lex_state = 319}, + [6606] = {.lex_state = 382}, + [6607] = {.lex_state = 384}, + [6608] = {.lex_state = 280}, + [6609] = {.lex_state = 280}, + [6610] = {.lex_state = 280}, + [6611] = {.lex_state = 319}, + [6612] = {.lex_state = 280}, + [6613] = {.lex_state = 280}, + [6614] = {.lex_state = 280}, + [6615] = {.lex_state = 361}, + [6616] = {.lex_state = 384}, + [6617] = {.lex_state = 280}, + [6618] = {.lex_state = 382}, + [6619] = {.lex_state = 384}, + [6620] = {.lex_state = 361}, + [6621] = {.lex_state = 319}, + [6622] = {.lex_state = 280}, + [6623] = {.lex_state = 280}, + [6624] = {.lex_state = 280}, + [6625] = {.lex_state = 280}, + [6626] = {.lex_state = 384}, + [6627] = {.lex_state = 382}, + [6628] = {.lex_state = 384}, + [6629] = {.lex_state = 280}, + [6630] = {.lex_state = 361}, + [6631] = {.lex_state = 361}, + [6632] = {.lex_state = 382}, + [6633] = {.lex_state = 280}, + [6634] = {.lex_state = 382}, + [6635] = {.lex_state = 384}, + [6636] = {.lex_state = 380}, + [6637] = {.lex_state = 319}, + [6638] = {.lex_state = 361}, + [6639] = {.lex_state = 382}, + [6640] = {.lex_state = 384}, + [6641] = {.lex_state = 384}, + [6642] = {.lex_state = 384}, + [6643] = {.lex_state = 384}, + [6644] = {.lex_state = 382}, + [6645] = {.lex_state = 280}, + [6646] = {.lex_state = 280}, + [6647] = {.lex_state = 280}, + [6648] = {.lex_state = 280}, + [6649] = {.lex_state = 280}, + [6650] = {.lex_state = 361}, + [6651] = {.lex_state = 361}, + [6652] = {.lex_state = 280}, + [6653] = {.lex_state = 319}, + [6654] = {.lex_state = 384}, + [6655] = {.lex_state = 319}, + [6656] = {.lex_state = 361}, + [6657] = {.lex_state = 361}, + [6658] = {.lex_state = 382}, + [6659] = {.lex_state = 319}, + [6660] = {.lex_state = 319}, + [6661] = {.lex_state = 280}, + [6662] = {.lex_state = 280}, + [6663] = {.lex_state = 280}, + [6664] = {.lex_state = 280}, + [6665] = {.lex_state = 361}, + [6666] = {.lex_state = 280}, + [6667] = {.lex_state = 280}, + [6668] = {.lex_state = 280}, + [6669] = {.lex_state = 280}, + [6670] = {.lex_state = 280}, + [6671] = {.lex_state = 280}, + [6672] = {.lex_state = 280}, + [6673] = {.lex_state = 361}, + [6674] = {.lex_state = 280}, + [6675] = {.lex_state = 319}, + [6676] = {.lex_state = 135}, + [6677] = {.lex_state = 388}, + [6678] = {.lex_state = 388}, + [6679] = {.lex_state = 382}, + [6680] = {.lex_state = 135}, + [6681] = {.lex_state = 135}, + [6682] = {.lex_state = 135}, + [6683] = {.lex_state = 388}, + [6684] = {.lex_state = 320}, + [6685] = {.lex_state = 388}, + [6686] = {.lex_state = 388}, + [6687] = {.lex_state = 388}, + [6688] = {.lex_state = 382}, + [6689] = {.lex_state = 382}, + [6690] = {.lex_state = 382}, + [6691] = {.lex_state = 382}, + [6692] = {.lex_state = 388}, + [6693] = {.lex_state = 388}, + [6694] = {.lex_state = 388}, + [6695] = {.lex_state = 388}, + [6696] = {.lex_state = 382}, + [6697] = {.lex_state = 382}, + [6698] = {.lex_state = 382}, + [6699] = {.lex_state = 382}, + [6700] = {.lex_state = 388}, + [6701] = {.lex_state = 382}, + [6702] = {.lex_state = 388}, + [6703] = {.lex_state = 382}, + [6704] = {.lex_state = 361}, + [6705] = {.lex_state = 382}, + [6706] = {.lex_state = 135}, + [6707] = {.lex_state = 388}, + [6708] = {.lex_state = 380}, + [6709] = {.lex_state = 135}, + [6710] = {.lex_state = 361}, + [6711] = {.lex_state = 319}, + [6712] = {.lex_state = 388}, + [6713] = {.lex_state = 382}, + [6714] = {.lex_state = 361}, + [6715] = {.lex_state = 135}, + [6716] = {.lex_state = 388}, + [6717] = {.lex_state = 382}, + [6718] = {.lex_state = 388}, + [6719] = {.lex_state = 388}, + [6720] = {.lex_state = 382}, + [6721] = {.lex_state = 382}, + [6722] = {.lex_state = 388}, + [6723] = {.lex_state = 382}, + [6724] = {.lex_state = 388}, + [6725] = {.lex_state = 388}, + [6726] = {.lex_state = 388}, + [6727] = {.lex_state = 388}, + [6728] = {.lex_state = 388}, + [6729] = {.lex_state = 388}, + [6730] = {.lex_state = 135}, + [6731] = {.lex_state = 135}, + [6732] = {.lex_state = 135}, + [6733] = {.lex_state = 135}, + [6734] = {.lex_state = 388}, + [6735] = {.lex_state = 135}, + [6736] = {.lex_state = 135}, + [6737] = {.lex_state = 135}, + [6738] = {.lex_state = 135}, + [6739] = {.lex_state = 388}, + [6740] = {.lex_state = 361}, + [6741] = {.lex_state = 388}, + [6742] = {.lex_state = 388}, + [6743] = {.lex_state = 388}, + [6744] = {.lex_state = 135}, + [6745] = {.lex_state = 388}, + [6746] = {.lex_state = 135}, + [6747] = {.lex_state = 361}, + [6748] = {.lex_state = 135}, + [6749] = {.lex_state = 388}, + [6750] = {.lex_state = 388}, + [6751] = {.lex_state = 388}, + [6752] = {.lex_state = 388}, + [6753] = {.lex_state = 388}, + [6754] = {.lex_state = 382}, + [6755] = {.lex_state = 361}, + [6756] = {.lex_state = 388}, + [6757] = {.lex_state = 388}, + [6758] = {.lex_state = 361}, + [6759] = {.lex_state = 135}, + [6760] = {.lex_state = 388}, + [6761] = {.lex_state = 388}, + [6762] = {.lex_state = 319}, + [6763] = {.lex_state = 388}, + [6764] = {.lex_state = 135}, + [6765] = {.lex_state = 388}, + [6766] = {.lex_state = 388}, + [6767] = {.lex_state = 382}, + [6768] = {.lex_state = 135}, + [6769] = {.lex_state = 382}, + [6770] = {.lex_state = 135}, + [6771] = {.lex_state = 135}, + [6772] = {.lex_state = 135}, + [6773] = {.lex_state = 382}, + [6774] = {.lex_state = 382}, + [6775] = {.lex_state = 382}, + [6776] = {.lex_state = 135}, + [6777] = {.lex_state = 320}, + [6778] = {.lex_state = 135}, + [6779] = {.lex_state = 135}, + [6780] = {.lex_state = 135}, + [6781] = {.lex_state = 388}, + [6782] = {.lex_state = 388}, + [6783] = {.lex_state = 388}, + [6784] = {.lex_state = 135}, + [6785] = {.lex_state = 361}, + [6786] = {.lex_state = 361}, + [6787] = {.lex_state = 388}, + [6788] = {.lex_state = 361}, + [6789] = {.lex_state = 135}, + [6790] = {.lex_state = 135}, + [6791] = {.lex_state = 320}, + [6792] = {.lex_state = 135}, + [6793] = {.lex_state = 320}, + [6794] = {.lex_state = 135}, + [6795] = {.lex_state = 135}, + [6796] = {.lex_state = 135}, + [6797] = {.lex_state = 135}, + [6798] = {.lex_state = 521}, + [6799] = {.lex_state = 380}, + [6800] = {.lex_state = 380}, + [6801] = {.lex_state = 380}, + [6802] = {.lex_state = 388}, + [6803] = {.lex_state = 388}, + [6804] = {.lex_state = 384}, + [6805] = {.lex_state = 384}, + [6806] = {.lex_state = 380}, + [6807] = {.lex_state = 380}, + [6808] = {.lex_state = 380}, + [6809] = {.lex_state = 380}, + [6810] = {.lex_state = 380}, + [6811] = {.lex_state = 387}, + [6812] = {.lex_state = 388}, + [6813] = {.lex_state = 388}, + [6814] = {.lex_state = 388}, + [6815] = {.lex_state = 388}, + [6816] = {.lex_state = 380}, + [6817] = {.lex_state = 380}, + [6818] = {.lex_state = 380}, + [6819] = {.lex_state = 387}, + [6820] = {.lex_state = 387}, + [6821] = {.lex_state = 380}, + [6822] = {.lex_state = 388}, + [6823] = {.lex_state = 380}, + [6824] = {.lex_state = 387}, + [6825] = {.lex_state = 387}, + [6826] = {.lex_state = 387}, + [6827] = {.lex_state = 380}, + [6828] = {.lex_state = 387}, + [6829] = {.lex_state = 387}, + [6830] = {.lex_state = 380}, + [6831] = {.lex_state = 380}, + [6832] = {.lex_state = 380}, + [6833] = {.lex_state = 387}, + [6834] = {.lex_state = 387}, + [6835] = {.lex_state = 388}, + [6836] = {.lex_state = 380}, + [6837] = {.lex_state = 380}, + [6838] = {.lex_state = 380}, + [6839] = {.lex_state = 387}, + [6840] = {.lex_state = 387}, + [6841] = {.lex_state = 387}, + [6842] = {.lex_state = 388}, + [6843] = {.lex_state = 387}, + [6844] = {.lex_state = 380}, + [6845] = {.lex_state = 387}, + [6846] = {.lex_state = 363}, + [6847] = {.lex_state = 380}, + [6848] = {.lex_state = 387}, + [6849] = {.lex_state = 388}, + [6850] = {.lex_state = 388}, + [6851] = {.lex_state = 388}, + [6852] = {.lex_state = 388}, + [6853] = {.lex_state = 380}, + [6854] = {.lex_state = 388}, + [6855] = {.lex_state = 380}, + [6856] = {.lex_state = 380}, + [6857] = {.lex_state = 387}, + [6858] = {.lex_state = 380}, + [6859] = {.lex_state = 380}, + [6860] = {.lex_state = 388}, + [6861] = {.lex_state = 386}, + [6862] = {.lex_state = 388}, + [6863] = {.lex_state = 380}, + [6864] = {.lex_state = 380}, + [6865] = {.lex_state = 388}, + [6866] = {.lex_state = 388}, + [6867] = {.lex_state = 388}, + [6868] = {.lex_state = 380}, + [6869] = {.lex_state = 380}, + [6870] = {.lex_state = 382}, + [6871] = {.lex_state = 380}, + [6872] = {.lex_state = 380}, + [6873] = {.lex_state = 382}, + [6874] = {.lex_state = 382}, + [6875] = {.lex_state = 382}, + [6876] = {.lex_state = 382}, + [6877] = {.lex_state = 382}, + [6878] = {.lex_state = 388}, + [6879] = {.lex_state = 388}, + [6880] = {.lex_state = 380}, + [6881] = {.lex_state = 388}, + [6882] = {.lex_state = 388}, + [6883] = {.lex_state = 388}, + [6884] = {.lex_state = 380}, + [6885] = {.lex_state = 388}, + [6886] = {.lex_state = 380}, + [6887] = {.lex_state = 382}, + [6888] = {.lex_state = 382}, + [6889] = {.lex_state = 382}, + [6890] = {.lex_state = 382}, + [6891] = {.lex_state = 387}, + [6892] = {.lex_state = 388}, + [6893] = {.lex_state = 388}, + [6894] = {.lex_state = 387}, + [6895] = {.lex_state = 388}, + [6896] = {.lex_state = 387}, + [6897] = {.lex_state = 388}, + [6898] = {.lex_state = 380}, + [6899] = {.lex_state = 386}, + [6900] = {.lex_state = 387}, + [6901] = {.lex_state = 380}, + [6902] = {.lex_state = 380}, + [6903] = {.lex_state = 387}, + [6904] = {.lex_state = 388}, + [6905] = {.lex_state = 388}, + [6906] = {.lex_state = 320}, + [6907] = {.lex_state = 380}, + [6908] = {.lex_state = 380}, + [6909] = {.lex_state = 387}, + [6910] = {.lex_state = 380}, + [6911] = {.lex_state = 505}, + [6912] = {.lex_state = 387}, + [6913] = {.lex_state = 505}, + [6914] = {.lex_state = 505}, + [6915] = {.lex_state = 320}, + [6916] = {.lex_state = 505}, + [6917] = {.lex_state = 320}, + [6918] = {.lex_state = 387}, + [6919] = {.lex_state = 505}, + [6920] = {.lex_state = 380}, + [6921] = {.lex_state = 505}, + [6922] = {.lex_state = 387}, + [6923] = {.lex_state = 387}, + [6924] = {.lex_state = 380}, + [6925] = {.lex_state = 387}, + [6926] = {.lex_state = 505}, + [6927] = {.lex_state = 387}, + [6928] = {.lex_state = 505}, + [6929] = {.lex_state = 387}, + [6930] = {.lex_state = 320}, + [6931] = {.lex_state = 387}, + [6932] = {.lex_state = 380}, + [6933] = {.lex_state = 380}, + [6934] = {.lex_state = 320}, + [6935] = {.lex_state = 375}, + [6936] = {.lex_state = 278}, + [6937] = {.lex_state = 505}, + [6938] = {.lex_state = 387}, + [6939] = {.lex_state = 380}, + [6940] = {.lex_state = 363}, + [6941] = {.lex_state = 320}, + [6942] = {.lex_state = 505}, + [6943] = {.lex_state = 387}, + [6944] = {.lex_state = 320}, + [6945] = {.lex_state = 387}, + [6946] = {.lex_state = 380}, + [6947] = {.lex_state = 380}, + [6948] = {.lex_state = 505}, + [6949] = {.lex_state = 380}, + [6950] = {.lex_state = 505}, + [6951] = {.lex_state = 387}, + [6952] = {.lex_state = 380}, + [6953] = {.lex_state = 505}, + [6954] = {.lex_state = 380}, + [6955] = {.lex_state = 505}, + [6956] = {.lex_state = 387}, + [6957] = {.lex_state = 380}, + [6958] = {.lex_state = 380}, + [6959] = {.lex_state = 382}, + [6960] = {.lex_state = 505}, + [6961] = {.lex_state = 505}, + [6962] = {.lex_state = 505}, + [6963] = {.lex_state = 380}, + [6964] = {.lex_state = 380}, + [6965] = {.lex_state = 375}, + [6966] = {.lex_state = 505}, + [6967] = {.lex_state = 320}, + [6968] = {.lex_state = 380}, + [6969] = {.lex_state = 387}, + [6970] = {.lex_state = 387}, + [6971] = {.lex_state = 382}, + [6972] = {.lex_state = 387}, + [6973] = {.lex_state = 380}, + [6974] = {.lex_state = 505}, + [6975] = {.lex_state = 278}, + [6976] = {.lex_state = 387}, + [6977] = {.lex_state = 505}, + [6978] = {.lex_state = 387}, + [6979] = {.lex_state = 380}, + [6980] = {.lex_state = 505}, + [6981] = {.lex_state = 375}, + [6982] = {.lex_state = 505}, + [6983] = {.lex_state = 392}, + [6984] = {.lex_state = 505}, + [6985] = {.lex_state = 380}, + [6986] = {.lex_state = 387}, + [6987] = {.lex_state = 363}, + [6988] = {.lex_state = 505}, + [6989] = {.lex_state = 387}, + [6990] = {.lex_state = 380}, + [6991] = {.lex_state = 505}, + [6992] = {.lex_state = 387}, + [6993] = {.lex_state = 380}, + [6994] = {.lex_state = 387}, + [6995] = {.lex_state = 387}, + [6996] = {.lex_state = 380}, + [6997] = {.lex_state = 387}, + [6998] = {.lex_state = 382}, + [6999] = {.lex_state = 387}, + [7000] = {.lex_state = 387}, + [7001] = {.lex_state = 387}, + [7002] = {.lex_state = 505}, + [7003] = {.lex_state = 387}, + [7004] = {.lex_state = 505}, + [7005] = {.lex_state = 387}, + [7006] = {.lex_state = 380}, + [7007] = {.lex_state = 380}, + [7008] = {.lex_state = 380}, + [7009] = {.lex_state = 505}, + [7010] = {.lex_state = 380}, + [7011] = {.lex_state = 502}, + [7012] = {.lex_state = 509}, + [7013] = {.lex_state = 502}, + [7014] = {.lex_state = 502}, + [7015] = {.lex_state = 502}, + [7016] = {.lex_state = 509}, + [7017] = {.lex_state = 386}, + [7018] = {.lex_state = 278}, + [7019] = {.lex_state = 502}, + [7020] = {.lex_state = 502}, + [7021] = {.lex_state = 386}, + [7022] = {.lex_state = 278}, + [7023] = {.lex_state = 386}, + [7024] = {.lex_state = 278}, + [7025] = {.lex_state = 278}, + [7026] = {.lex_state = 502}, + [7027] = {.lex_state = 502}, + [7028] = {.lex_state = 502}, + [7029] = {.lex_state = 278}, + [7030] = {.lex_state = 502}, + [7031] = {.lex_state = 320}, + [7032] = {.lex_state = 502}, + [7033] = {.lex_state = 278}, + [7034] = {.lex_state = 388}, + [7035] = {.lex_state = 388}, + [7036] = {.lex_state = 388}, + [7037] = {.lex_state = 502}, + [7038] = {.lex_state = 388}, + [7039] = {.lex_state = 388}, + [7040] = {.lex_state = 502}, + [7041] = {.lex_state = 388}, + [7042] = {.lex_state = 388}, + [7043] = {.lex_state = 386}, + [7044] = {.lex_state = 388}, + [7045] = {.lex_state = 509}, + [7046] = {.lex_state = 278}, + [7047] = {.lex_state = 388}, + [7048] = {.lex_state = 388}, + [7049] = {.lex_state = 386}, + [7050] = {.lex_state = 386}, + [7051] = {.lex_state = 386}, + [7052] = {.lex_state = 509}, + [7053] = {.lex_state = 278}, + [7054] = {.lex_state = 382}, + [7055] = {.lex_state = 386}, + [7056] = {.lex_state = 386}, + [7057] = {.lex_state = 386}, + [7058] = {.lex_state = 278}, + [7059] = {.lex_state = 278}, + [7060] = {.lex_state = 502}, + [7061] = {.lex_state = 509}, + [7062] = {.lex_state = 509}, + [7063] = {.lex_state = 520}, + [7064] = {.lex_state = 278}, + [7065] = {.lex_state = 382}, + [7066] = {.lex_state = 502}, + [7067] = {.lex_state = 386}, + [7068] = {.lex_state = 386}, + [7069] = {.lex_state = 382}, + [7070] = {.lex_state = 502}, + [7071] = {.lex_state = 386}, + [7072] = {.lex_state = 320}, + [7073] = {.lex_state = 386}, + [7074] = {.lex_state = 382}, + [7075] = {.lex_state = 382}, + [7076] = {.lex_state = 386}, + [7077] = {.lex_state = 382}, + [7078] = {.lex_state = 386}, + [7079] = {.lex_state = 382}, + [7080] = {.lex_state = 382}, + [7081] = {.lex_state = 388}, + [7082] = {.lex_state = 278}, + [7083] = {.lex_state = 388}, + [7084] = {.lex_state = 388}, + [7085] = {.lex_state = 388}, + [7086] = {.lex_state = 382}, + [7087] = {.lex_state = 388}, + [7088] = {.lex_state = 388}, + [7089] = {.lex_state = 388}, + [7090] = {.lex_state = 382}, + [7091] = {.lex_state = 509}, + [7092] = {.lex_state = 278}, + [7093] = {.lex_state = 502}, + [7094] = {.lex_state = 386}, + [7095] = {.lex_state = 502}, + [7096] = {.lex_state = 320}, + [7097] = {.lex_state = 502}, + [7098] = {.lex_state = 320}, + [7099] = {.lex_state = 308}, + [7100] = {.lex_state = 386}, + [7101] = {.lex_state = 382}, + [7102] = {.lex_state = 502}, + [7103] = {.lex_state = 386}, + [7104] = {.lex_state = 386}, + [7105] = {.lex_state = 278}, + [7106] = {.lex_state = 278}, + [7107] = {.lex_state = 502}, + [7108] = {.lex_state = 509}, + [7109] = {.lex_state = 388}, + [7110] = {.lex_state = 308}, + [7111] = {.lex_state = 502}, + [7112] = {.lex_state = 382}, + [7113] = {.lex_state = 386}, + [7114] = {.lex_state = 296}, + [7115] = {.lex_state = 320}, + [7116] = {.lex_state = 320}, + [7117] = {.lex_state = 320}, + [7118] = {.lex_state = 345}, + [7119] = {.lex_state = 320}, + [7120] = {.lex_state = 345}, + [7121] = {.lex_state = 320}, + [7122] = {.lex_state = 296}, + [7123] = {.lex_state = 296}, + [7124] = {.lex_state = 320}, + [7125] = {.lex_state = 382}, + [7126] = {.lex_state = 509}, + [7127] = {.lex_state = 296}, + [7128] = {.lex_state = 320}, + [7129] = {.lex_state = 509}, + [7130] = {.lex_state = 388}, + [7131] = {.lex_state = 296}, + [7132] = {.lex_state = 509}, + [7133] = {.lex_state = 509}, + [7134] = {.lex_state = 296}, + [7135] = {.lex_state = 382}, + [7136] = {.lex_state = 296}, + [7137] = {.lex_state = 382}, + [7138] = {.lex_state = 345}, + [7139] = {.lex_state = 296}, + [7140] = {.lex_state = 320}, + [7141] = {.lex_state = 296}, + [7142] = {.lex_state = 296}, + [7143] = {.lex_state = 296}, + [7144] = {.lex_state = 345}, + [7145] = {.lex_state = 296}, + [7146] = {.lex_state = 345}, + [7147] = {.lex_state = 320}, + [7148] = {.lex_state = 382}, + [7149] = {.lex_state = 320}, + [7150] = {.lex_state = 296}, + [7151] = {.lex_state = 345}, + [7152] = {.lex_state = 320}, + [7153] = {.lex_state = 296}, + [7154] = {.lex_state = 296}, + [7155] = {.lex_state = 382}, + [7156] = {.lex_state = 505}, + [7157] = {.lex_state = 296}, + [7158] = {.lex_state = 320}, + [7159] = {.lex_state = 296}, + [7160] = {.lex_state = 320}, + [7161] = {.lex_state = 509}, + [7162] = {.lex_state = 382}, + [7163] = {.lex_state = 388}, + [7164] = {.lex_state = 320}, + [7165] = {.lex_state = 514}, + [7166] = {.lex_state = 388}, + [7167] = {.lex_state = 296}, + [7168] = {.lex_state = 320}, + [7169] = {.lex_state = 296}, + [7170] = {.lex_state = 320}, + [7171] = {.lex_state = 509}, + [7172] = {.lex_state = 320}, + [7173] = {.lex_state = 509}, + [7174] = {.lex_state = 320}, + [7175] = {.lex_state = 388}, + [7176] = {.lex_state = 320}, + [7177] = {.lex_state = 320}, + [7178] = {.lex_state = 320}, + [7179] = {.lex_state = 320}, + [7180] = {.lex_state = 388}, + [7181] = {.lex_state = 320}, + [7182] = {.lex_state = 320}, + [7183] = {.lex_state = 382}, + [7184] = {.lex_state = 296}, + [7185] = {.lex_state = 320}, + [7186] = {.lex_state = 382}, + [7187] = {.lex_state = 509}, + [7188] = {.lex_state = 320}, + [7189] = {.lex_state = 320}, + [7190] = {.lex_state = 380}, + [7191] = {.lex_state = 320}, + [7192] = {.lex_state = 296}, + [7193] = {.lex_state = 296}, + [7194] = {.lex_state = 296}, + [7195] = {.lex_state = 388}, + [7196] = {.lex_state = 296}, + [7197] = {.lex_state = 296}, + [7198] = {.lex_state = 296}, + [7199] = {.lex_state = 296}, + [7200] = {.lex_state = 388}, + [7201] = {.lex_state = 296}, + [7202] = {.lex_state = 296}, + [7203] = {.lex_state = 320}, + [7204] = {.lex_state = 320}, + [7205] = {.lex_state = 320}, + [7206] = {.lex_state = 320}, + [7207] = {.lex_state = 380}, + [7208] = {.lex_state = 380}, + [7209] = {.lex_state = 509}, + [7210] = {.lex_state = 380}, + [7211] = {.lex_state = 380}, + [7212] = {.lex_state = 296}, + [7213] = {.lex_state = 388}, + [7214] = {.lex_state = 388}, + [7215] = {.lex_state = 320}, + [7216] = {.lex_state = 380}, + [7217] = {.lex_state = 380}, + [7218] = {.lex_state = 320}, + [7219] = {.lex_state = 345}, + [7220] = {.lex_state = 320}, + [7221] = {.lex_state = 296}, + [7222] = {.lex_state = 509}, + [7223] = {.lex_state = 320}, + [7224] = {.lex_state = 388}, + [7225] = {.lex_state = 345}, + [7226] = {.lex_state = 388}, + [7227] = {.lex_state = 388}, + [7228] = {.lex_state = 388}, + [7229] = {.lex_state = 0}, + [7230] = {.lex_state = 278}, + [7231] = {.lex_state = 507}, + [7232] = {.lex_state = 388}, + [7233] = {.lex_state = 388}, + [7234] = {.lex_state = 0}, + [7235] = {.lex_state = 388}, + [7236] = {.lex_state = 388}, + [7237] = {.lex_state = 388}, + [7238] = {.lex_state = 0}, + [7239] = {.lex_state = 375}, + [7240] = {.lex_state = 375}, + [7241] = {.lex_state = 388}, + [7242] = {.lex_state = 507}, + [7243] = {.lex_state = 388}, + [7244] = {.lex_state = 388}, + [7245] = {.lex_state = 388}, + [7246] = {.lex_state = 507}, + [7247] = {.lex_state = 388}, + [7248] = {.lex_state = 388}, + [7249] = {.lex_state = 507}, + [7250] = {.lex_state = 375}, + [7251] = {.lex_state = 0}, + [7252] = {.lex_state = 388}, + [7253] = {.lex_state = 388}, + [7254] = {.lex_state = 388}, + [7255] = {.lex_state = 388}, + [7256] = {.lex_state = 388}, + [7257] = {.lex_state = 505}, + [7258] = {.lex_state = 388}, + [7259] = {.lex_state = 388}, + [7260] = {.lex_state = 388}, + [7261] = {.lex_state = 507}, + [7262] = {.lex_state = 388}, + [7263] = {.lex_state = 507}, + [7264] = {.lex_state = 388}, + [7265] = {.lex_state = 388}, + [7266] = {.lex_state = 388}, + [7267] = {.lex_state = 388}, + [7268] = {.lex_state = 388}, + [7269] = {.lex_state = 388}, + [7270] = {.lex_state = 0}, + [7271] = {.lex_state = 505}, + [7272] = {.lex_state = 388}, + [7273] = {.lex_state = 388}, + [7274] = {.lex_state = 375}, + [7275] = {.lex_state = 505}, + [7276] = {.lex_state = 505}, + [7277] = {.lex_state = 388}, + [7278] = {.lex_state = 0}, + [7279] = {.lex_state = 505}, + [7280] = {.lex_state = 388}, + [7281] = {.lex_state = 507}, + [7282] = {.lex_state = 505}, + [7283] = {.lex_state = 0}, + [7284] = {.lex_state = 388}, + [7285] = {.lex_state = 388}, + [7286] = {.lex_state = 388}, + [7287] = {.lex_state = 388}, + [7288] = {.lex_state = 382}, + [7289] = {.lex_state = 388}, + [7290] = {.lex_state = 388}, + [7291] = {.lex_state = 388}, + [7292] = {.lex_state = 382}, + [7293] = {.lex_state = 505}, + [7294] = {.lex_state = 382}, + [7295] = {.lex_state = 382}, + [7296] = {.lex_state = 388}, + [7297] = {.lex_state = 388}, + [7298] = {.lex_state = 382}, + [7299] = {.lex_state = 388}, + [7300] = {.lex_state = 388}, + [7301] = {.lex_state = 0}, + [7302] = {.lex_state = 507}, + [7303] = {.lex_state = 382}, + [7304] = {.lex_state = 382}, + [7305] = {.lex_state = 388}, + [7306] = {.lex_state = 388}, + [7307] = {.lex_state = 505}, + [7308] = {.lex_state = 388}, + [7309] = {.lex_state = 0}, + [7310] = {.lex_state = 388}, + [7311] = {.lex_state = 320}, + [7312] = {.lex_state = 345}, + [7313] = {.lex_state = 345}, + [7314] = {.lex_state = 320}, + [7315] = {.lex_state = 388}, + [7316] = {.lex_state = 345}, + [7317] = {.lex_state = 345}, + [7318] = {.lex_state = 388}, + [7319] = {.lex_state = 388}, + [7320] = {.lex_state = 345}, + [7321] = {.lex_state = 320}, + [7322] = {.lex_state = 320}, + [7323] = {.lex_state = 320}, + [7324] = {.lex_state = 320}, + [7325] = {.lex_state = 320}, + [7326] = {.lex_state = 388}, + [7327] = {.lex_state = 320}, + [7328] = {.lex_state = 388}, + [7329] = {.lex_state = 388}, + [7330] = {.lex_state = 320}, + [7331] = {.lex_state = 320}, + [7332] = {.lex_state = 320}, + [7333] = {.lex_state = 320}, + [7334] = {.lex_state = 320}, + [7335] = {.lex_state = 345}, + [7336] = {.lex_state = 388}, + [7337] = {.lex_state = 388}, + [7338] = {.lex_state = 345}, + [7339] = {.lex_state = 320}, + [7340] = {.lex_state = 320}, + [7341] = {.lex_state = 320}, + [7342] = {.lex_state = 320}, + [7343] = {.lex_state = 345}, + [7344] = {.lex_state = 320}, + [7345] = {.lex_state = 345}, + [7346] = {.lex_state = 345}, + [7347] = {.lex_state = 320}, + [7348] = {.lex_state = 320}, + [7349] = {.lex_state = 499}, + [7350] = {.lex_state = 499}, + [7351] = {.lex_state = 320}, + [7352] = {.lex_state = 320}, + [7353] = {.lex_state = 499}, + [7354] = {.lex_state = 320}, + [7355] = {.lex_state = 499}, + [7356] = {.lex_state = 320}, + [7357] = {.lex_state = 509}, + [7358] = {.lex_state = 509}, + [7359] = {.lex_state = 509}, + [7360] = {.lex_state = 509}, + [7361] = {.lex_state = 320}, + [7362] = {.lex_state = 320}, + [7363] = {.lex_state = 320}, + [7364] = {.lex_state = 320}, + [7365] = {.lex_state = 320}, + [7366] = {.lex_state = 320}, + [7367] = {.lex_state = 320}, + [7368] = {.lex_state = 388}, + [7369] = {.lex_state = 320}, + [7370] = {.lex_state = 509}, + [7371] = {.lex_state = 509}, + [7372] = {.lex_state = 509}, + [7373] = {.lex_state = 509}, + [7374] = {.lex_state = 388}, + [7375] = {.lex_state = 0}, + [7376] = {.lex_state = 320}, + [7377] = {.lex_state = 388}, + [7378] = {.lex_state = 320}, + [7379] = {.lex_state = 320}, + [7380] = {.lex_state = 320}, + [7381] = {.lex_state = 345}, + [7382] = {.lex_state = 388}, + [7383] = {.lex_state = 320}, + [7384] = {.lex_state = 388}, + [7385] = {.lex_state = 320}, + [7386] = {.lex_state = 345}, + [7387] = {.lex_state = 320}, + [7388] = {.lex_state = 388}, + [7389] = {.lex_state = 499}, + [7390] = {.lex_state = 505}, + [7391] = {.lex_state = 320}, + [7392] = {.lex_state = 509}, + [7393] = {.lex_state = 308}, + [7394] = {.lex_state = 509}, + [7395] = {.lex_state = 509}, + [7396] = {.lex_state = 320}, + [7397] = {.lex_state = 509}, + [7398] = {.lex_state = 320}, + [7399] = {.lex_state = 388}, + [7400] = {.lex_state = 509}, + [7401] = {.lex_state = 308}, + [7402] = {.lex_state = 320}, + [7403] = {.lex_state = 320}, + [7404] = {.lex_state = 507}, + [7405] = {.lex_state = 320}, + [7406] = {.lex_state = 380}, + [7407] = {.lex_state = 507}, + [7408] = {.lex_state = 507}, + [7409] = {.lex_state = 320}, + [7410] = {.lex_state = 388}, + [7411] = {.lex_state = 509}, + [7412] = {.lex_state = 507}, + [7413] = {.lex_state = 507}, + [7414] = {.lex_state = 507}, + [7415] = {.lex_state = 388}, + [7416] = {.lex_state = 320}, + [7417] = {.lex_state = 505}, + [7418] = {.lex_state = 509}, + [7419] = {.lex_state = 505}, + [7420] = {.lex_state = 320}, + [7421] = {.lex_state = 505}, + [7422] = {.lex_state = 505}, + [7423] = {.lex_state = 320}, + [7424] = {.lex_state = 320}, + [7425] = {.lex_state = 320}, + [7426] = {.lex_state = 320}, + [7427] = {.lex_state = 320}, + [7428] = {.lex_state = 507}, + [7429] = {.lex_state = 308}, + [7430] = {.lex_state = 308}, + [7431] = {.lex_state = 388}, + [7432] = {.lex_state = 320}, + [7433] = {.lex_state = 308}, + [7434] = {.lex_state = 320}, + [7435] = {.lex_state = 507}, + [7436] = {.lex_state = 320}, + [7437] = {.lex_state = 320}, + [7438] = {.lex_state = 505}, + [7439] = {.lex_state = 320}, + [7440] = {.lex_state = 320}, + [7441] = {.lex_state = 507}, + [7442] = {.lex_state = 320}, + [7443] = {.lex_state = 320}, + [7444] = {.lex_state = 507}, + [7445] = {.lex_state = 507}, + [7446] = {.lex_state = 320}, + [7447] = {.lex_state = 320}, + [7448] = {.lex_state = 507}, + [7449] = {.lex_state = 388}, + [7450] = {.lex_state = 505}, + [7451] = {.lex_state = 320}, + [7452] = {.lex_state = 505}, + [7453] = {.lex_state = 388}, + [7454] = {.lex_state = 388}, + [7455] = {.lex_state = 505}, + [7456] = {.lex_state = 388}, + [7457] = {.lex_state = 505}, + [7458] = {.lex_state = 505}, + [7459] = {.lex_state = 380}, + [7460] = {.lex_state = 320}, + [7461] = {.lex_state = 308}, + [7462] = {.lex_state = 388}, + [7463] = {.lex_state = 320}, + [7464] = {.lex_state = 505}, + [7465] = {.lex_state = 320}, + [7466] = {.lex_state = 380}, + [7467] = {.lex_state = 320}, + [7468] = {.lex_state = 320}, + [7469] = {.lex_state = 388}, + [7470] = {.lex_state = 345}, + [7471] = {.lex_state = 320}, + [7472] = {.lex_state = 361}, + [7473] = {.lex_state = 345}, + [7474] = {.lex_state = 361}, + [7475] = {.lex_state = 320}, + [7476] = {.lex_state = 320}, + [7477] = {.lex_state = 388}, + [7478] = {.lex_state = 499}, + [7479] = {.lex_state = 388}, + [7480] = {.lex_state = 361}, + [7481] = {.lex_state = 502}, + [7482] = {.lex_state = 320}, + [7483] = {.lex_state = 320}, + [7484] = {.lex_state = 361}, + [7485] = {.lex_state = 388}, + [7486] = {.lex_state = 361}, + [7487] = {.lex_state = 388}, + [7488] = {.lex_state = 361}, + [7489] = {.lex_state = 361}, + [7490] = {.lex_state = 320}, + [7491] = {.lex_state = 345}, + [7492] = {.lex_state = 320}, + [7493] = {.lex_state = 502}, + [7494] = {.lex_state = 320}, + [7495] = {.lex_state = 361}, + [7496] = {.lex_state = 361}, + [7497] = {.lex_state = 361}, + [7498] = {.lex_state = 361}, + [7499] = {.lex_state = 320}, + [7500] = {.lex_state = 345}, + [7501] = {.lex_state = 345}, + [7502] = {.lex_state = 320}, + [7503] = {.lex_state = 361}, + [7504] = {.lex_state = 345}, + [7505] = {.lex_state = 345}, + [7506] = {.lex_state = 361}, + [7507] = {.lex_state = 388}, + [7508] = {.lex_state = 361}, + [7509] = {.lex_state = 320}, + [7510] = {.lex_state = 499}, + [7511] = {.lex_state = 361}, + [7512] = {.lex_state = 499}, + [7513] = {.lex_state = 361}, + [7514] = {.lex_state = 361}, + [7515] = {.lex_state = 388}, + [7516] = {.lex_state = 320}, + [7517] = {.lex_state = 320}, + [7518] = {.lex_state = 505}, + [7519] = {.lex_state = 505}, + [7520] = {.lex_state = 320}, + [7521] = {.lex_state = 320}, + [7522] = {.lex_state = 376}, + [7523] = {.lex_state = 320}, + [7524] = {.lex_state = 320}, + [7525] = {.lex_state = 320}, + [7526] = {.lex_state = 320}, + [7527] = {.lex_state = 507}, + [7528] = {.lex_state = 320}, + [7529] = {.lex_state = 320}, + [7530] = {.lex_state = 507}, + [7531] = {.lex_state = 507}, + [7532] = {.lex_state = 507}, + [7533] = {.lex_state = 507}, + [7534] = {.lex_state = 389}, + [7535] = {.lex_state = 507}, + [7536] = {.lex_state = 507}, + [7537] = {.lex_state = 320}, + [7538] = {.lex_state = 505}, + [7539] = {.lex_state = 320}, + [7540] = {.lex_state = 376}, + [7541] = {.lex_state = 320}, + [7542] = {.lex_state = 320}, + [7543] = {.lex_state = 320}, + [7544] = {.lex_state = 320}, + [7545] = {.lex_state = 320}, + [7546] = {.lex_state = 320}, + [7547] = {.lex_state = 320}, + [7548] = {.lex_state = 376}, + [7549] = {.lex_state = 320}, + [7550] = {.lex_state = 320}, + [7551] = {.lex_state = 320}, + [7552] = {.lex_state = 320}, + [7553] = {.lex_state = 320}, + [7554] = {.lex_state = 320}, + [7555] = {.lex_state = 383}, + [7556] = {.lex_state = 320}, + [7557] = {.lex_state = 320}, + [7558] = {.lex_state = 320}, + [7559] = {.lex_state = 320}, + [7560] = {.lex_state = 320}, + [7561] = {.lex_state = 361}, + [7562] = {.lex_state = 505}, + [7563] = {.lex_state = 361}, + [7564] = {.lex_state = 505}, + [7565] = {.lex_state = 320}, + [7566] = {.lex_state = 383}, + [7567] = {.lex_state = 505}, + [7568] = {.lex_state = 320}, + [7569] = {.lex_state = 320}, + [7570] = {.lex_state = 505}, + [7571] = {.lex_state = 320}, + [7572] = {.lex_state = 320}, + [7573] = {.lex_state = 376}, + [7574] = {.lex_state = 320}, + [7575] = {.lex_state = 376}, + [7576] = {.lex_state = 505}, + [7577] = {.lex_state = 505}, + [7578] = {.lex_state = 505}, + [7579] = {.lex_state = 320}, + [7580] = {.lex_state = 499}, + [7581] = {.lex_state = 509}, + [7582] = {.lex_state = 499}, + [7583] = {.lex_state = 499}, + [7584] = {.lex_state = 499}, + [7585] = {.lex_state = 382}, + [7586] = {.lex_state = 505}, + [7587] = {.lex_state = 499}, + [7588] = {.lex_state = 499}, + [7589] = {.lex_state = 499}, + [7590] = {.lex_state = 505}, + [7591] = {.lex_state = 383}, + [7592] = {.lex_state = 509}, + [7593] = {.lex_state = 509}, + [7594] = {.lex_state = 278}, + [7595] = {.lex_state = 507}, + [7596] = {.lex_state = 499}, + [7597] = {.lex_state = 499}, + [7598] = {.lex_state = 507}, + [7599] = {.lex_state = 320}, + [7600] = {.lex_state = 499}, + [7601] = {.lex_state = 320}, + [7602] = {.lex_state = 505}, + [7603] = {.lex_state = 499}, + [7604] = {.lex_state = 383}, + [7605] = {.lex_state = 383}, + [7606] = {.lex_state = 505}, + [7607] = {.lex_state = 505}, + [7608] = {.lex_state = 383}, + [7609] = {.lex_state = 505}, + [7610] = {.lex_state = 320}, + [7611] = {.lex_state = 320}, + [7612] = {.lex_state = 383}, + [7613] = {.lex_state = 320}, + [7614] = {.lex_state = 320}, + [7615] = {.lex_state = 499}, + [7616] = {.lex_state = 499}, + [7617] = {.lex_state = 505}, + [7618] = {.lex_state = 390}, + [7619] = {.lex_state = 505}, + [7620] = {.lex_state = 380}, + [7621] = {.lex_state = 320}, + [7622] = {.lex_state = 509}, + [7623] = {.lex_state = 507}, + [7624] = {.lex_state = 509}, + [7625] = {.lex_state = 383}, + [7626] = {.lex_state = 509}, + [7627] = {.lex_state = 320}, + [7628] = {.lex_state = 320}, + [7629] = {.lex_state = 320}, + [7630] = {.lex_state = 383}, + [7631] = {.lex_state = 308}, + [7632] = {.lex_state = 499}, + [7633] = {.lex_state = 308}, + [7634] = {.lex_state = 505}, + [7635] = {.lex_state = 505}, + [7636] = {.lex_state = 509}, + [7637] = {.lex_state = 278}, + [7638] = {.lex_state = 380}, + [7639] = {.lex_state = 320}, + [7640] = {.lex_state = 505}, + [7641] = {.lex_state = 502}, + [7642] = {.lex_state = 383}, + [7643] = {.lex_state = 320}, + [7644] = {.lex_state = 507}, + [7645] = {.lex_state = 507}, + [7646] = {.lex_state = 383}, + [7647] = {.lex_state = 507}, + [7648] = {.lex_state = 320}, + [7649] = {.lex_state = 505}, + [7650] = {.lex_state = 382}, + [7651] = {.lex_state = 499}, + [7652] = {.lex_state = 499}, + [7653] = {.lex_state = 320}, + [7654] = {.lex_state = 499}, + [7655] = {.lex_state = 505}, + [7656] = {.lex_state = 278}, + [7657] = {.lex_state = 278}, + [7658] = {.lex_state = 278}, + [7659] = {.lex_state = 383}, + [7660] = {.lex_state = 380}, + [7661] = {.lex_state = 499}, + [7662] = {.lex_state = 389}, + [7663] = {.lex_state = 320}, + [7664] = {.lex_state = 507}, + [7665] = {.lex_state = 389}, + [7666] = {.lex_state = 320}, + [7667] = {.lex_state = 380}, + [7668] = {.lex_state = 320}, + [7669] = {.lex_state = 320}, + [7670] = {.lex_state = 499}, + [7671] = {.lex_state = 320}, + [7672] = {.lex_state = 382}, + [7673] = {.lex_state = 380}, + [7674] = {.lex_state = 507}, + [7675] = {.lex_state = 278}, + [7676] = {.lex_state = 278}, + [7677] = {.lex_state = 320}, + [7678] = {.lex_state = 499}, + [7679] = {.lex_state = 278}, + [7680] = {.lex_state = 380}, + [7681] = {.lex_state = 380}, + [7682] = {.lex_state = 278}, + [7683] = {.lex_state = 308}, + [7684] = {.lex_state = 499}, + [7685] = {.lex_state = 320}, + [7686] = {.lex_state = 278}, + [7687] = {.lex_state = 320}, + [7688] = {.lex_state = 507}, + [7689] = {.lex_state = 499}, + [7690] = {.lex_state = 278}, + [7691] = {.lex_state = 320}, + [7692] = {.lex_state = 507}, + [7693] = {.lex_state = 320}, + [7694] = {.lex_state = 380}, + [7695] = {.lex_state = 278}, + [7696] = {.lex_state = 278}, + [7697] = {.lex_state = 499}, + [7698] = {.lex_state = 380}, + [7699] = {.lex_state = 278}, + [7700] = {.lex_state = 278}, + [7701] = {.lex_state = 380}, + [7702] = {.lex_state = 320}, + [7703] = {.lex_state = 278}, + [7704] = {.lex_state = 499}, + [7705] = {.lex_state = 380}, + [7706] = {.lex_state = 380}, + [7707] = {.lex_state = 320}, + [7708] = {.lex_state = 320}, + [7709] = {.lex_state = 320}, + [7710] = {.lex_state = 383}, + [7711] = {.lex_state = 320}, + [7712] = {.lex_state = 507}, + [7713] = {.lex_state = 320}, + [7714] = {.lex_state = 320}, + [7715] = {.lex_state = 320}, + [7716] = {.lex_state = 320}, + [7717] = {.lex_state = 320}, + [7718] = {.lex_state = 320}, + [7719] = {.lex_state = 0}, + [7720] = {.lex_state = 320}, + [7721] = {.lex_state = 320}, + [7722] = {.lex_state = 320}, + [7723] = {.lex_state = 320}, + [7724] = {.lex_state = 380}, + [7725] = {.lex_state = 320}, + [7726] = {.lex_state = 290}, + [7727] = {.lex_state = 320}, + [7728] = {.lex_state = 380}, + [7729] = {.lex_state = 320}, + [7730] = {.lex_state = 290}, + [7731] = {.lex_state = 380}, + [7732] = {.lex_state = 380}, + [7733] = {.lex_state = 320}, + [7734] = {.lex_state = 308}, + [7735] = {.lex_state = 290}, + [7736] = {.lex_state = 320}, + [7737] = {.lex_state = 290}, + [7738] = {.lex_state = 320}, + [7739] = {.lex_state = 380}, + [7740] = {.lex_state = 380}, + [7741] = {.lex_state = 290}, + [7742] = {.lex_state = 383}, + [7743] = {.lex_state = 380}, + [7744] = {.lex_state = 320}, + [7745] = {.lex_state = 320}, + [7746] = {.lex_state = 380}, + [7747] = {.lex_state = 380}, + [7748] = {.lex_state = 290}, + [7749] = {.lex_state = 290}, + [7750] = {.lex_state = 383}, + [7751] = {.lex_state = 320}, + [7752] = {.lex_state = 380}, + [7753] = {.lex_state = 380}, + [7754] = {.lex_state = 320}, + [7755] = {.lex_state = 320}, + [7756] = {.lex_state = 320}, + [7757] = {.lex_state = 383}, + [7758] = {.lex_state = 380}, + [7759] = {.lex_state = 320}, + [7760] = {.lex_state = 380}, + [7761] = {.lex_state = 278}, + [7762] = {.lex_state = 320}, + [7763] = {.lex_state = 499}, + [7764] = {.lex_state = 0}, + [7765] = {.lex_state = 380}, + [7766] = {.lex_state = 320}, + [7767] = {.lex_state = 320}, + [7768] = {.lex_state = 0}, + [7769] = {.lex_state = 382}, + [7770] = {.lex_state = 320}, + [7771] = {.lex_state = 278}, + [7772] = {.lex_state = 380}, + [7773] = {.lex_state = 320}, + [7774] = {.lex_state = 380}, + [7775] = {.lex_state = 320}, + [7776] = {.lex_state = 345}, + [7777] = {.lex_state = 502}, + [7778] = {.lex_state = 320}, + [7779] = {.lex_state = 320}, + [7780] = {.lex_state = 320}, + [7781] = {.lex_state = 320}, + [7782] = {.lex_state = 320}, + [7783] = {.lex_state = 499}, + [7784] = {.lex_state = 320}, + [7785] = {.lex_state = 320}, + [7786] = {.lex_state = 499}, + [7787] = {.lex_state = 320}, + [7788] = {.lex_state = 320}, + [7789] = {.lex_state = 383}, + [7790] = {.lex_state = 320}, + [7791] = {.lex_state = 320}, + [7792] = {.lex_state = 320}, + [7793] = {.lex_state = 320}, + [7794] = {.lex_state = 320}, + [7795] = {.lex_state = 345}, + [7796] = {.lex_state = 320}, + [7797] = {.lex_state = 320}, + [7798] = {.lex_state = 320}, + [7799] = {.lex_state = 320}, + [7800] = {.lex_state = 320}, + [7801] = {.lex_state = 320}, + [7802] = {.lex_state = 320}, + [7803] = {.lex_state = 320}, + [7804] = {.lex_state = 380}, + [7805] = {.lex_state = 320}, + [7806] = {.lex_state = 320}, + [7807] = {.lex_state = 278}, + [7808] = {.lex_state = 499}, + [7809] = {.lex_state = 383}, + [7810] = {.lex_state = 320}, + [7811] = {.lex_state = 320}, + [7812] = {.lex_state = 320}, + [7813] = {.lex_state = 502}, + [7814] = {.lex_state = 502}, + [7815] = {.lex_state = 320}, + [7816] = {.lex_state = 320}, + [7817] = {.lex_state = 320}, + [7818] = {.lex_state = 502}, + [7819] = {.lex_state = 383}, + [7820] = {.lex_state = 320}, + [7821] = {.lex_state = 320}, + [7822] = {.lex_state = 502}, + [7823] = {.lex_state = 320}, + [7824] = {.lex_state = 320}, + [7825] = {.lex_state = 502}, + [7826] = {.lex_state = 320}, + [7827] = {.lex_state = 320}, + [7828] = {.lex_state = 320}, + [7829] = {.lex_state = 278}, + [7830] = {.lex_state = 320}, + [7831] = {.lex_state = 320}, + [7832] = {.lex_state = 320}, + [7833] = {.lex_state = 320}, + [7834] = {.lex_state = 320}, + [7835] = {.lex_state = 278}, + [7836] = {.lex_state = 320}, + [7837] = {.lex_state = 278}, + [7838] = {.lex_state = 502}, + [7839] = {.lex_state = 502}, + [7840] = {.lex_state = 146}, + [7841] = {.lex_state = 502}, + [7842] = {.lex_state = 499}, + [7843] = {.lex_state = 499}, + [7844] = {.lex_state = 383}, + [7845] = {.lex_state = 278}, + [7846] = {.lex_state = 146}, + [7847] = {.lex_state = 320}, + [7848] = {.lex_state = 320}, + [7849] = {.lex_state = 499}, + [7850] = {.lex_state = 320}, + [7851] = {.lex_state = 278}, + [7852] = {.lex_state = 320}, + [7853] = {.lex_state = 499}, + [7854] = {.lex_state = 278}, + [7855] = {.lex_state = 320}, + [7856] = {.lex_state = 278}, + [7857] = {.lex_state = 499}, + [7858] = {.lex_state = 148}, + [7859] = {.lex_state = 148}, + [7860] = {.lex_state = 499}, + [7861] = {.lex_state = 502}, + [7862] = {.lex_state = 146}, + [7863] = {.lex_state = 148}, + [7864] = {.lex_state = 320}, + [7865] = {.lex_state = 499}, + [7866] = {.lex_state = 278}, + [7867] = {.lex_state = 320}, + [7868] = {.lex_state = 320}, + [7869] = {.lex_state = 502}, + [7870] = {.lex_state = 499}, + [7871] = {.lex_state = 278}, + [7872] = {.lex_state = 320}, + [7873] = {.lex_state = 320}, + [7874] = {.lex_state = 278}, + [7875] = {.lex_state = 320}, + [7876] = {.lex_state = 502}, + [7877] = {.lex_state = 320}, + [7878] = {.lex_state = 149}, + [7879] = {.lex_state = 499}, + [7880] = {.lex_state = 148}, + [7881] = {.lex_state = 320}, + [7882] = {.lex_state = 383}, + [7883] = {.lex_state = 146}, + [7884] = {.lex_state = 148}, + [7885] = {.lex_state = 383}, + [7886] = {.lex_state = 499}, + [7887] = {.lex_state = 278}, + [7888] = {.lex_state = 320}, + [7889] = {.lex_state = 502}, + [7890] = {.lex_state = 499}, + [7891] = {.lex_state = 278}, + [7892] = {.lex_state = 320}, + [7893] = {.lex_state = 320}, + [7894] = {.lex_state = 383}, + [7895] = {.lex_state = 278}, + [7896] = {.lex_state = 320}, + [7897] = {.lex_state = 320}, + [7898] = {.lex_state = 278}, + [7899] = {.lex_state = 320}, + [7900] = {.lex_state = 320}, + [7901] = {.lex_state = 320}, + [7902] = {.lex_state = 148}, + [7903] = {.lex_state = 502}, + [7904] = {.lex_state = 146}, + [7905] = {.lex_state = 148}, + [7906] = {.lex_state = 320}, + [7907] = {.lex_state = 499}, + [7908] = {.lex_state = 278}, + [7909] = {.lex_state = 502}, + [7910] = {.lex_state = 499}, + [7911] = {.lex_state = 278}, + [7912] = {.lex_state = 278}, + [7913] = {.lex_state = 148}, + [7914] = {.lex_state = 380}, + [7915] = {.lex_state = 278}, + [7916] = {.lex_state = 502}, + [7917] = {.lex_state = 146}, + [7918] = {.lex_state = 148}, + [7919] = {.lex_state = 499}, + [7920] = {.lex_state = 278}, + [7921] = {.lex_state = 320}, + [7922] = {.lex_state = 502}, + [7923] = {.lex_state = 499}, + [7924] = {.lex_state = 278}, + [7925] = {.lex_state = 278}, + [7926] = {.lex_state = 502}, + [7927] = {.lex_state = 148}, + [7928] = {.lex_state = 502}, + [7929] = {.lex_state = 146}, + [7930] = {.lex_state = 148}, + [7931] = {.lex_state = 499}, + [7932] = {.lex_state = 278}, + [7933] = {.lex_state = 502}, + [7934] = {.lex_state = 499}, + [7935] = {.lex_state = 278}, + [7936] = {.lex_state = 278}, + [7937] = {.lex_state = 148}, + [7938] = {.lex_state = 148}, + [7939] = {.lex_state = 146}, + [7940] = {.lex_state = 148}, + [7941] = {.lex_state = 278}, + [7942] = {.lex_state = 499}, + [7943] = {.lex_state = 278}, + [7944] = {.lex_state = 278}, + [7945] = {.lex_state = 499}, + [7946] = {.lex_state = 148}, + [7947] = {.lex_state = 146}, + [7948] = {.lex_state = 148}, + [7949] = {.lex_state = 499}, + [7950] = {.lex_state = 499}, + [7951] = {.lex_state = 148}, + [7952] = {.lex_state = 380}, + [7953] = {.lex_state = 148}, + [7954] = {.lex_state = 149}, + [7955] = {.lex_state = 499}, + [7956] = {.lex_state = 148}, + [7957] = {.lex_state = 148}, + [7958] = {.lex_state = 499}, + [7959] = {.lex_state = 148}, + [7960] = {.lex_state = 499}, + [7961] = {.lex_state = 148}, + [7962] = {.lex_state = 502}, + [7963] = {.lex_state = 499}, + [7964] = {.lex_state = 320}, + [7965] = {.lex_state = 148}, + [7966] = {.lex_state = 148}, + [7967] = {.lex_state = 148}, + [7968] = {.lex_state = 383}, + [7969] = {.lex_state = 499}, + [7970] = {.lex_state = 148}, + [7971] = {.lex_state = 149}, + [7972] = {.lex_state = 148}, + [7973] = {.lex_state = 499}, + [7974] = {.lex_state = 148}, + [7975] = {.lex_state = 148}, + [7976] = {.lex_state = 499}, + [7977] = {.lex_state = 148}, + [7978] = {.lex_state = 148}, + [7979] = {.lex_state = 499}, + [7980] = {.lex_state = 148}, + [7981] = {.lex_state = 499}, + [7982] = {.lex_state = 148}, + [7983] = {.lex_state = 148}, + [7984] = {.lex_state = 148}, + [7985] = {.lex_state = 499}, + [7986] = {.lex_state = 278}, + [7987] = {.lex_state = 502}, + [7988] = {.lex_state = 502}, + [7989] = {.lex_state = 320}, + [7990] = {.lex_state = 502}, + [7991] = {.lex_state = 146}, + [7992] = {.lex_state = 148}, + [7993] = {.lex_state = 502}, + [7994] = {.lex_state = 499}, + [7995] = {.lex_state = 146}, + [7996] = {.lex_state = 502}, + [7997] = {.lex_state = 148}, + [7998] = {.lex_state = 499}, + [7999] = {.lex_state = 320}, + [8000] = {.lex_state = 380}, + [8001] = {.lex_state = 499}, + [8002] = {.lex_state = 278}, + [8003] = {.lex_state = 320}, + [8004] = {.lex_state = 499}, + [8005] = {.lex_state = 320}, + [8006] = {.lex_state = 278}, + [8007] = {.lex_state = 320}, + [8008] = {.lex_state = 499}, + [8009] = {.lex_state = 502}, + [8010] = {.lex_state = 278}, + [8011] = {.lex_state = 499}, + [8012] = {.lex_state = 383}, + [8013] = {.lex_state = 278}, + [8014] = {.lex_state = 320}, + [8015] = {.lex_state = 148}, + [8016] = {.lex_state = 148}, + [8017] = {.lex_state = 320}, + [8018] = {.lex_state = 320}, + [8019] = {.lex_state = 320}, + [8020] = {.lex_state = 320}, + [8021] = {.lex_state = 320}, + [8022] = {.lex_state = 499}, + [8023] = {.lex_state = 320}, + [8024] = {.lex_state = 278}, + [8025] = {.lex_state = 320}, + [8026] = {.lex_state = 320}, + [8027] = {.lex_state = 320}, + [8028] = {.lex_state = 502}, + [8029] = {.lex_state = 499}, + [8030] = {.lex_state = 320}, + [8031] = {.lex_state = 148}, + [8032] = {.lex_state = 383}, + [8033] = {.lex_state = 383}, + [8034] = {.lex_state = 149}, + [8035] = {.lex_state = 499}, + [8036] = {.lex_state = 502}, + [8037] = {.lex_state = 146}, + [8038] = {.lex_state = 148}, + [8039] = {.lex_state = 278}, + [8040] = {.lex_state = 499}, + [8041] = {.lex_state = 499}, + [8042] = {.lex_state = 499}, + [8043] = {.lex_state = 278}, + [8044] = {.lex_state = 502}, + [8045] = {.lex_state = 380}, + [8046] = {.lex_state = 320}, + [8047] = {.lex_state = 320}, + [8048] = {.lex_state = 320}, + [8049] = {.lex_state = 320}, + [8050] = {.lex_state = 502}, + [8051] = {.lex_state = 502}, + [8052] = {.lex_state = 499}, + [8053] = {.lex_state = 383}, + [8054] = {.lex_state = 149}, + [8055] = {.lex_state = 146}, + [8056] = {.lex_state = 502}, + [8057] = {.lex_state = 502}, + [8058] = {.lex_state = 278}, + [8059] = {.lex_state = 320}, + [8060] = {.lex_state = 320}, + [8061] = {.lex_state = 502}, + [8062] = {.lex_state = 380}, + [8063] = {.lex_state = 278}, + [8064] = {.lex_state = 320}, + [8065] = {.lex_state = 499}, + [8066] = {.lex_state = 278}, + [8067] = {.lex_state = 502}, + [8068] = {.lex_state = 380}, + [8069] = {.lex_state = 320}, + [8070] = {.lex_state = 148}, + [8071] = {.lex_state = 502}, + [8072] = {.lex_state = 502}, + [8073] = {.lex_state = 320}, + [8074] = {.lex_state = 502}, + [8075] = {.lex_state = 380}, + [8076] = {.lex_state = 278}, + [8077] = {.lex_state = 148}, + [8078] = {.lex_state = 148}, + [8079] = {.lex_state = 149}, + [8080] = {.lex_state = 502}, + [8081] = {.lex_state = 380}, + [8082] = {.lex_state = 320}, + [8083] = {.lex_state = 499}, + [8084] = {.lex_state = 499}, + [8085] = {.lex_state = 499}, + [8086] = {.lex_state = 502}, + [8087] = {.lex_state = 502}, + [8088] = {.lex_state = 380}, + [8089] = {.lex_state = 146}, + [8090] = {.lex_state = 148}, + [8091] = {.lex_state = 320}, + [8092] = {.lex_state = 499}, + [8093] = {.lex_state = 320}, + [8094] = {.lex_state = 278}, + [8095] = {.lex_state = 502}, + [8096] = {.lex_state = 320}, + [8097] = {.lex_state = 502}, + [8098] = {.lex_state = 499}, + [8099] = {.lex_state = 499}, + [8100] = {.lex_state = 383}, + [8101] = {.lex_state = 278}, + [8102] = {.lex_state = 320}, + [8103] = {.lex_state = 320}, + [8104] = {.lex_state = 278}, + [8105] = {.lex_state = 499}, + [8106] = {.lex_state = 278}, + [8107] = {.lex_state = 320}, + [8108] = {.lex_state = 499}, + [8109] = {.lex_state = 499}, + [8110] = {.lex_state = 380}, + [8111] = {.lex_state = 278}, + [8112] = {.lex_state = 148}, + [8113] = {.lex_state = 502}, + [8114] = {.lex_state = 149}, + [8115] = {.lex_state = 320}, + [8116] = {.lex_state = 499}, + [8117] = {.lex_state = 502}, + [8118] = {.lex_state = 502}, + [8119] = {.lex_state = 502}, + [8120] = {.lex_state = 146}, + [8121] = {.lex_state = 148}, + [8122] = {.lex_state = 499}, + [8123] = {.lex_state = 278}, + [8124] = {.lex_state = 320}, + [8125] = {.lex_state = 502}, + [8126] = {.lex_state = 502}, + [8127] = {.lex_state = 502}, + [8128] = {.lex_state = 499}, + [8129] = {.lex_state = 499}, + [8130] = {.lex_state = 383}, + [8131] = {.lex_state = 499}, + [8132] = {.lex_state = 499}, + [8133] = {.lex_state = 148}, + [8134] = {.lex_state = 502}, + [8135] = {.lex_state = 499}, + [8136] = {.lex_state = 499}, + [8137] = {.lex_state = 278}, + [8138] = {.lex_state = 320}, + [8139] = {.lex_state = 499}, + [8140] = {.lex_state = 499}, + [8141] = {.lex_state = 320}, + [8142] = {.lex_state = 499}, + [8143] = {.lex_state = 499}, + [8144] = {.lex_state = 146}, + [8145] = {.lex_state = 499}, + [8146] = {.lex_state = 499}, + [8147] = {.lex_state = 499}, + [8148] = {.lex_state = 499}, + [8149] = {.lex_state = 148}, + [8150] = {.lex_state = 278}, + [8151] = {.lex_state = 499}, + [8152] = {.lex_state = 499}, + [8153] = {.lex_state = 320}, + [8154] = {.lex_state = 499}, + [8155] = {.lex_state = 499}, + [8156] = {.lex_state = 499}, + [8157] = {.lex_state = 502}, + [8158] = {.lex_state = 149}, + [8159] = {.lex_state = 502}, + [8160] = {.lex_state = 502}, + [8161] = {.lex_state = 320}, + [8162] = {.lex_state = 278}, + [8163] = {.lex_state = 380}, + [8164] = {.lex_state = 499}, + [8165] = {.lex_state = 148}, + [8166] = {.lex_state = 149}, + [8167] = {.lex_state = 499}, + [8168] = {.lex_state = 499}, + [8169] = {.lex_state = 345}, + [8170] = {.lex_state = 320}, + [8171] = {.lex_state = 499}, + [8172] = {.lex_state = 502}, + [8173] = {.lex_state = 502}, + [8174] = {.lex_state = 146}, + [8175] = {.lex_state = 148}, + [8176] = {.lex_state = 499}, + [8177] = {.lex_state = 278}, + [8178] = {.lex_state = 320}, + [8179] = {.lex_state = 320}, + [8180] = {.lex_state = 499}, + [8181] = {.lex_state = 499}, + [8182] = {.lex_state = 502}, + [8183] = {.lex_state = 499}, + [8184] = {.lex_state = 0}, + [8185] = {.lex_state = 0}, + [8186] = {.lex_state = 0}, + [8187] = {.lex_state = 320}, + [8188] = {.lex_state = 0}, + [8189] = {.lex_state = 146}, + [8190] = {.lex_state = 0}, + [8191] = {.lex_state = 0}, + [8192] = {.lex_state = 0}, + [8193] = {.lex_state = 0}, + [8194] = {.lex_state = 0}, + [8195] = {.lex_state = 320}, + [8196] = {.lex_state = 0}, + [8197] = {.lex_state = 0}, + [8198] = {.lex_state = 0}, + [8199] = {.lex_state = 320}, + [8200] = {.lex_state = 502}, + [8201] = {.lex_state = 320}, + [8202] = {.lex_state = 320}, + [8203] = {.lex_state = 502}, + [8204] = {.lex_state = 0}, + [8205] = {.lex_state = 502}, + [8206] = {.lex_state = 320}, + [8207] = {.lex_state = 0}, + [8208] = {.lex_state = 0}, + [8209] = {.lex_state = 320}, + [8210] = {.lex_state = 0}, + [8211] = {.lex_state = 320}, + [8212] = {.lex_state = 0}, + [8213] = {.lex_state = 0}, + [8214] = {.lex_state = 0}, + [8215] = {.lex_state = 320}, + [8216] = {.lex_state = 502}, + [8217] = {.lex_state = 502}, + [8218] = {.lex_state = 0}, + [8219] = {.lex_state = 320}, + [8220] = {.lex_state = 0}, + [8221] = {.lex_state = 0}, + [8222] = {.lex_state = 0}, + [8223] = {.lex_state = 0}, + [8224] = {.lex_state = 499}, + [8225] = {.lex_state = 0}, + [8226] = {.lex_state = 502}, + [8227] = {.lex_state = 499}, + [8228] = {.lex_state = 0}, + [8229] = {.lex_state = 320}, + [8230] = {.lex_state = 0}, + [8231] = {.lex_state = 502}, + [8232] = {.lex_state = 320}, + [8233] = {.lex_state = 0}, + [8234] = {.lex_state = 502}, + [8235] = {.lex_state = 0}, + [8236] = {.lex_state = 0}, + [8237] = {.lex_state = 0}, + [8238] = {.lex_state = 389}, + [8239] = {.lex_state = 0}, + [8240] = {.lex_state = 320}, + [8241] = {.lex_state = 0}, + [8242] = {.lex_state = 320}, + [8243] = {.lex_state = 0}, + [8244] = {.lex_state = 0}, + [8245] = {.lex_state = 0}, + [8246] = {.lex_state = 0}, + [8247] = {.lex_state = 502}, + [8248] = {.lex_state = 0}, + [8249] = {.lex_state = 0}, + [8250] = {.lex_state = 0}, + [8251] = {.lex_state = 0}, + [8252] = {.lex_state = 320}, + [8253] = {.lex_state = 0}, + [8254] = {.lex_state = 0}, + [8255] = {.lex_state = 502}, + [8256] = {.lex_state = 502}, + [8257] = {.lex_state = 148}, + [8258] = {.lex_state = 0}, + [8259] = {.lex_state = 0}, + [8260] = {.lex_state = 0}, + [8261] = {.lex_state = 0}, + [8262] = {.lex_state = 499}, + [8263] = {.lex_state = 0}, + [8264] = {.lex_state = 320}, + [8265] = {.lex_state = 0}, + [8266] = {.lex_state = 499}, + [8267] = {.lex_state = 0}, + [8268] = {.lex_state = 0}, + [8269] = {.lex_state = 502}, + [8270] = {.lex_state = 0}, + [8271] = {.lex_state = 0}, + [8272] = {.lex_state = 502}, + [8273] = {.lex_state = 502}, + [8274] = {.lex_state = 0}, + [8275] = {.lex_state = 0}, + [8276] = {.lex_state = 502}, + [8277] = {.lex_state = 502}, + [8278] = {.lex_state = 502}, + [8279] = {.lex_state = 0}, + [8280] = {.lex_state = 0}, + [8281] = {.lex_state = 0}, + [8282] = {.lex_state = 502}, + [8283] = {.lex_state = 0}, + [8284] = {.lex_state = 0}, + [8285] = {.lex_state = 0}, + [8286] = {.lex_state = 320}, + [8287] = {.lex_state = 502}, + [8288] = {.lex_state = 0}, + [8289] = {.lex_state = 0}, + [8290] = {.lex_state = 0}, + [8291] = {.lex_state = 0}, + [8292] = {.lex_state = 0}, + [8293] = {.lex_state = 320}, + [8294] = {.lex_state = 0}, + [8295] = {.lex_state = 0}, + [8296] = {.lex_state = 320}, + [8297] = {.lex_state = 0}, + [8298] = {.lex_state = 320}, + [8299] = {.lex_state = 0}, + [8300] = {.lex_state = 499}, + [8301] = {.lex_state = 320}, + [8302] = {.lex_state = 0}, + [8303] = {.lex_state = 0}, + [8304] = {.lex_state = 0}, + [8305] = {.lex_state = 502}, + [8306] = {.lex_state = 0}, + [8307] = {.lex_state = 0}, + [8308] = {.lex_state = 502}, + [8309] = {.lex_state = 320}, + [8310] = {.lex_state = 0}, + [8311] = {.lex_state = 0}, + [8312] = {.lex_state = 0}, + [8313] = {.lex_state = 320}, + [8314] = {.lex_state = 0}, + [8315] = {.lex_state = 320}, + [8316] = {.lex_state = 146}, + [8317] = {.lex_state = 320}, + [8318] = {.lex_state = 0}, + [8319] = {.lex_state = 499}, + [8320] = {.lex_state = 0}, + [8321] = {.lex_state = 0}, + [8322] = {.lex_state = 0}, + [8323] = {.lex_state = 0}, + [8324] = {.lex_state = 0}, + [8325] = {.lex_state = 151}, + [8326] = {.lex_state = 320}, + [8327] = {.lex_state = 0}, + [8328] = {.lex_state = 502}, + [8329] = {.lex_state = 499}, + [8330] = {.lex_state = 502}, + [8331] = {.lex_state = 320}, + [8332] = {.lex_state = 502}, + [8333] = {.lex_state = 502}, + [8334] = {.lex_state = 502}, + [8335] = {.lex_state = 499}, + [8336] = {.lex_state = 0}, + [8337] = {.lex_state = 502}, + [8338] = {.lex_state = 320}, + [8339] = {.lex_state = 0}, + [8340] = {.lex_state = 502}, + [8341] = {.lex_state = 0}, + [8342] = {.lex_state = 0}, + [8343] = {.lex_state = 502}, + [8344] = {.lex_state = 502}, + [8345] = {.lex_state = 502}, + [8346] = {.lex_state = 0}, + [8347] = {.lex_state = 0}, + [8348] = {.lex_state = 0}, + [8349] = {.lex_state = 0}, + [8350] = {.lex_state = 0}, + [8351] = {.lex_state = 0}, + [8352] = {.lex_state = 0}, + [8353] = {.lex_state = 320}, + [8354] = {.lex_state = 320}, + [8355] = {.lex_state = 146}, + [8356] = {.lex_state = 502}, + [8357] = {.lex_state = 0}, + [8358] = {.lex_state = 502}, + [8359] = {.lex_state = 502}, + [8360] = {.lex_state = 320}, + [8361] = {.lex_state = 0}, + [8362] = {.lex_state = 0}, + [8363] = {.lex_state = 0}, + [8364] = {.lex_state = 502}, + [8365] = {.lex_state = 0}, + [8366] = {.lex_state = 0}, + [8367] = {.lex_state = 0}, + [8368] = {.lex_state = 0}, + [8369] = {.lex_state = 502}, + [8370] = {.lex_state = 502}, + [8371] = {.lex_state = 0}, + [8372] = {.lex_state = 320}, + [8373] = {.lex_state = 0}, + [8374] = {.lex_state = 0}, + [8375] = {.lex_state = 0}, + [8376] = {.lex_state = 0}, + [8377] = {.lex_state = 320}, + [8378] = {.lex_state = 502}, + [8379] = {.lex_state = 320}, + [8380] = {.lex_state = 146}, + [8381] = {.lex_state = 0}, + [8382] = {.lex_state = 320}, + [8383] = {.lex_state = 502}, + [8384] = {.lex_state = 0}, + [8385] = {.lex_state = 320}, + [8386] = {.lex_state = 0}, + [8387] = {.lex_state = 0}, + [8388] = {.lex_state = 0}, + [8389] = {.lex_state = 502}, + [8390] = {.lex_state = 502}, + [8391] = {.lex_state = 0}, + [8392] = {.lex_state = 320}, + [8393] = {.lex_state = 0}, + [8394] = {.lex_state = 502}, + [8395] = {.lex_state = 502}, + [8396] = {.lex_state = 0}, + [8397] = {.lex_state = 0}, + [8398] = {.lex_state = 502}, + [8399] = {.lex_state = 0}, + [8400] = {.lex_state = 0}, + [8401] = {.lex_state = 502}, + [8402] = {.lex_state = 320}, + [8403] = {.lex_state = 0}, + [8404] = {.lex_state = 146}, + [8405] = {.lex_state = 0}, + [8406] = {.lex_state = 502}, + [8407] = {.lex_state = 502}, + [8408] = {.lex_state = 320}, + [8409] = {.lex_state = 320}, + [8410] = {.lex_state = 0}, + [8411] = {.lex_state = 0}, + [8412] = {.lex_state = 502}, + [8413] = {.lex_state = 502}, + [8414] = {.lex_state = 0}, + [8415] = {.lex_state = 502}, + [8416] = {.lex_state = 502}, + [8417] = {.lex_state = 502}, + [8418] = {.lex_state = 320}, + [8419] = {.lex_state = 320}, + [8420] = {.lex_state = 0}, + [8421] = {.lex_state = 0}, + [8422] = {.lex_state = 146}, + [8423] = {.lex_state = 0}, + [8424] = {.lex_state = 0}, + [8425] = {.lex_state = 502}, + [8426] = {.lex_state = 0}, + [8427] = {.lex_state = 0}, + [8428] = {.lex_state = 0}, + [8429] = {.lex_state = 0}, + [8430] = {.lex_state = 0}, + [8431] = {.lex_state = 502}, + [8432] = {.lex_state = 502}, + [8433] = {.lex_state = 0}, + [8434] = {.lex_state = 320}, + [8435] = {.lex_state = 0}, + [8436] = {.lex_state = 499}, + [8437] = {.lex_state = 146}, + [8438] = {.lex_state = 0}, + [8439] = {.lex_state = 502}, + [8440] = {.lex_state = 0}, + [8441] = {.lex_state = 320}, + [8442] = {.lex_state = 0}, + [8443] = {.lex_state = 320}, + [8444] = {.lex_state = 499}, + [8445] = {.lex_state = 320}, + [8446] = {.lex_state = 0}, + [8447] = {.lex_state = 0}, + [8448] = {.lex_state = 320}, + [8449] = {.lex_state = 502}, + [8450] = {.lex_state = 320}, + [8451] = {.lex_state = 0}, + [8452] = {.lex_state = 499}, + [8453] = {.lex_state = 146}, + [8454] = {.lex_state = 0}, + [8455] = {.lex_state = 0}, + [8456] = {.lex_state = 0}, + [8457] = {.lex_state = 0}, + [8458] = {.lex_state = 320}, + [8459] = {.lex_state = 0}, + [8460] = {.lex_state = 0}, + [8461] = {.lex_state = 320}, + [8462] = {.lex_state = 0}, + [8463] = {.lex_state = 499}, + [8464] = {.lex_state = 146}, + [8465] = {.lex_state = 502}, + [8466] = {.lex_state = 0}, + [8467] = {.lex_state = 0}, + [8468] = {.lex_state = 0}, + [8469] = {.lex_state = 0}, + [8470] = {.lex_state = 320}, + [8471] = {.lex_state = 0}, + [8472] = {.lex_state = 502}, + [8473] = {.lex_state = 146}, + [8474] = {.lex_state = 502}, + [8475] = {.lex_state = 0}, + [8476] = {.lex_state = 0}, + [8477] = {.lex_state = 146}, + [8478] = {.lex_state = 0}, + [8479] = {.lex_state = 146}, + [8480] = {.lex_state = 0}, + [8481] = {.lex_state = 146}, + [8482] = {.lex_state = 320}, + [8483] = {.lex_state = 146}, + [8484] = {.lex_state = 146}, + [8485] = {.lex_state = 0}, + [8486] = {.lex_state = 320}, + [8487] = {.lex_state = 499}, + [8488] = {.lex_state = 502}, + [8489] = {.lex_state = 0}, + [8490] = {.lex_state = 0}, + [8491] = {.lex_state = 0}, + [8492] = {.lex_state = 0}, + [8493] = {.lex_state = 0}, + [8494] = {.lex_state = 502}, + [8495] = {.lex_state = 502}, + [8496] = {.lex_state = 151}, + [8497] = {.lex_state = 0}, + [8498] = {.lex_state = 0}, + [8499] = {.lex_state = 0}, + [8500] = {.lex_state = 320}, + [8501] = {.lex_state = 320}, + [8502] = {.lex_state = 320}, + [8503] = {.lex_state = 502}, + [8504] = {.lex_state = 0}, + [8505] = {.lex_state = 502}, + [8506] = {.lex_state = 502}, + [8507] = {.lex_state = 502}, + [8508] = {.lex_state = 502}, + [8509] = {.lex_state = 0}, + [8510] = {.lex_state = 502}, + [8511] = {.lex_state = 0}, + [8512] = {.lex_state = 499}, + [8513] = {.lex_state = 502}, + [8514] = {.lex_state = 502}, + [8515] = {.lex_state = 499}, + [8516] = {.lex_state = 0}, + [8517] = {.lex_state = 0}, + [8518] = {.lex_state = 0}, + [8519] = {.lex_state = 0}, + [8520] = {.lex_state = 151}, + [8521] = {.lex_state = 320}, + [8522] = {.lex_state = 0}, + [8523] = {.lex_state = 320}, + [8524] = {.lex_state = 389}, + [8525] = {.lex_state = 0}, + [8526] = {.lex_state = 320}, + [8527] = {.lex_state = 0}, + [8528] = {.lex_state = 0}, + [8529] = {.lex_state = 383}, + [8530] = {.lex_state = 499}, + [8531] = {.lex_state = 0}, + [8532] = {.lex_state = 502}, + [8533] = {.lex_state = 502}, + [8534] = {.lex_state = 0}, + [8535] = {.lex_state = 0}, + [8536] = {.lex_state = 0}, + [8537] = {.lex_state = 0}, + [8538] = {.lex_state = 320}, + [8539] = {.lex_state = 502}, + [8540] = {.lex_state = 499}, + [8541] = {.lex_state = 0}, + [8542] = {.lex_state = 499}, + [8543] = {.lex_state = 0}, + [8544] = {.lex_state = 0}, + [8545] = {.lex_state = 320}, + [8546] = {.lex_state = 502}, + [8547] = {.lex_state = 345}, + [8548] = {.lex_state = 499}, + [8549] = {.lex_state = 320}, + [8550] = {.lex_state = 320}, + [8551] = {.lex_state = 502}, + [8552] = {.lex_state = 0}, + [8553] = {.lex_state = 0}, + [8554] = {.lex_state = 320}, + [8555] = {.lex_state = 502}, [8556] = {.lex_state = 0}, - [8557] = {.lex_state = 0}, + [8557] = {.lex_state = 320}, [8558] = {.lex_state = 0}, [8559] = {.lex_state = 0}, - [8560] = {.lex_state = 656}, - [8561] = {.lex_state = 1044}, - [8562] = {.lex_state = 656}, + [8560] = {.lex_state = 0}, + [8561] = {.lex_state = 499}, + [8562] = {.lex_state = 0}, [8563] = {.lex_state = 0}, - [8564] = {.lex_state = 1044}, - [8565] = {.lex_state = 531}, - [8566] = {.lex_state = 1044}, - [8567] = {.lex_state = 656}, + [8564] = {.lex_state = 0}, + [8565] = {.lex_state = 502}, + [8566] = {.lex_state = 0}, + [8567] = {.lex_state = 320}, [8568] = {.lex_state = 0}, - [8569] = {.lex_state = 0}, - [8570] = {.lex_state = 0}, - [8571] = {.lex_state = 0}, + [8569] = {.lex_state = 320}, + [8570] = {.lex_state = 502}, + [8571] = {.lex_state = 502}, [8572] = {.lex_state = 0}, - [8573] = {.lex_state = 0}, - [8574] = {.lex_state = 291}, - [8575] = {.lex_state = 0}, + [8573] = {.lex_state = 499}, + [8574] = {.lex_state = 0}, + [8575] = {.lex_state = 320}, [8576] = {.lex_state = 0}, [8577] = {.lex_state = 0}, - [8578] = {.lex_state = 656}, + [8578] = {.lex_state = 0}, [8579] = {.lex_state = 0}, [8580] = {.lex_state = 0}, [8581] = {.lex_state = 0}, [8582] = {.lex_state = 0}, [8583] = {.lex_state = 0}, - [8584] = {.lex_state = 0}, - [8585] = {.lex_state = 470}, - [8586] = {.lex_state = 1044}, - [8587] = {.lex_state = 1044}, + [8584] = {.lex_state = 502}, + [8585] = {.lex_state = 502}, + [8586] = {.lex_state = 0}, + [8587] = {.lex_state = 0}, [8588] = {.lex_state = 0}, [8589] = {.lex_state = 0}, [8590] = {.lex_state = 0}, - [8591] = {.lex_state = 1046}, + [8591] = {.lex_state = 0}, [8592] = {.lex_state = 0}, - [8593] = {.lex_state = 656}, - [8594] = {.lex_state = 0}, + [8593] = {.lex_state = 151}, + [8594] = {.lex_state = 502}, [8595] = {.lex_state = 0}, - [8596] = {.lex_state = 0}, - [8597] = {.lex_state = 0}, - [8598] = {.lex_state = 0}, - [8599] = {.lex_state = 0}, + [8596] = {.lex_state = 320}, + [8597] = {.lex_state = 320}, + [8598] = {.lex_state = 320}, + [8599] = {.lex_state = 499}, [8600] = {.lex_state = 0}, [8601] = {.lex_state = 0}, [8602] = {.lex_state = 0}, [8603] = {.lex_state = 0}, - [8604] = {.lex_state = 0}, - [8605] = {.lex_state = 1046}, - [8606] = {.lex_state = 0}, - [8607] = {.lex_state = 1046}, - [8608] = {.lex_state = 0}, - [8609] = {.lex_state = 0}, - [8610] = {.lex_state = 656}, - [8611] = {.lex_state = 0}, - [8612] = {.lex_state = 0}, - [8613] = {.lex_state = 1046}, - [8614] = {.lex_state = 1046}, - [8615] = {.lex_state = 0}, + [8604] = {.lex_state = 151}, + [8605] = {.lex_state = 502}, + [8606] = {.lex_state = 502}, + [8607] = {.lex_state = 0}, + [8608] = {.lex_state = 502}, + [8609] = {.lex_state = 502}, + [8610] = {.lex_state = 0}, + [8611] = {.lex_state = 502}, + [8612] = {.lex_state = 502}, + [8613] = {.lex_state = 0}, + [8614] = {.lex_state = 0}, + [8615] = {.lex_state = 320}, [8616] = {.lex_state = 0}, - [8617] = {.lex_state = 0}, - [8618] = {.lex_state = 0}, - [8619] = {.lex_state = 0}, - [8620] = {.lex_state = 0}, - [8621] = {.lex_state = 1046}, - [8622] = {.lex_state = 0}, - [8623] = {.lex_state = 656}, - [8624] = {.lex_state = 1046}, + [8617] = {.lex_state = 502}, + [8618] = {.lex_state = 258}, + [8619] = {.lex_state = 320}, + [8620] = {.lex_state = 502}, + [8621] = {.lex_state = 0}, + [8622] = {.lex_state = 320}, + [8623] = {.lex_state = 389}, + [8624] = {.lex_state = 146}, [8625] = {.lex_state = 0}, - [8626] = {.lex_state = 656}, - [8627] = {.lex_state = 0}, - [8628] = {.lex_state = 0}, + [8626] = {.lex_state = 0}, + [8627] = {.lex_state = 499}, + [8628] = {.lex_state = 499}, [8629] = {.lex_state = 0}, [8630] = {.lex_state = 0}, [8631] = {.lex_state = 0}, - [8632] = {.lex_state = 1044}, - [8633] = {.lex_state = 0}, - [8634] = {.lex_state = 1046}, - [8635] = {.lex_state = 656}, - [8636] = {.lex_state = 1046}, + [8632] = {.lex_state = 502}, + [8633] = {.lex_state = 502}, + [8634] = {.lex_state = 499}, + [8635] = {.lex_state = 146}, + [8636] = {.lex_state = 502}, [8637] = {.lex_state = 0}, [8638] = {.lex_state = 0}, [8639] = {.lex_state = 0}, [8640] = {.lex_state = 0}, - [8641] = {.lex_state = 1046}, - [8642] = {.lex_state = 0}, - [8643] = {.lex_state = 0}, - [8644] = {.lex_state = 1046}, - [8645] = {.lex_state = 1046}, - [8646] = {.lex_state = 0}, - [8647] = {.lex_state = 0}, - [8648] = {.lex_state = 0}, + [8641] = {.lex_state = 0}, + [8642] = {.lex_state = 389}, + [8643] = {.lex_state = 320}, + [8644] = {.lex_state = 0}, + [8645] = {.lex_state = 0}, + [8646] = {.lex_state = 320}, + [8647] = {.lex_state = 499}, + [8648] = {.lex_state = 499}, [8649] = {.lex_state = 0}, [8650] = {.lex_state = 0}, - [8651] = {.lex_state = 1044}, + [8651] = {.lex_state = 0}, [8652] = {.lex_state = 0}, - [8653] = {.lex_state = 1046}, + [8653] = {.lex_state = 0}, [8654] = {.lex_state = 0}, - [8655] = {.lex_state = 656}, + [8655] = {.lex_state = 0}, [8656] = {.lex_state = 0}, - [8657] = {.lex_state = 0}, - [8658] = {.lex_state = 0}, - [8659] = {.lex_state = 0}, - [8660] = {.lex_state = 0}, - [8661] = {.lex_state = 531}, + [8657] = {.lex_state = 499}, + [8658] = {.lex_state = 499}, + [8659] = {.lex_state = 150}, + [8660] = {.lex_state = 383}, + [8661] = {.lex_state = 0}, [8662] = {.lex_state = 0}, - [8663] = {.lex_state = 1044}, + [8663] = {.lex_state = 0}, [8664] = {.lex_state = 0}, [8665] = {.lex_state = 0}, [8666] = {.lex_state = 0}, [8667] = {.lex_state = 0}, [8668] = {.lex_state = 0}, - [8669] = {.lex_state = 656}, - [8670] = {.lex_state = 1046}, + [8669] = {.lex_state = 499}, + [8670] = {.lex_state = 0}, [8671] = {.lex_state = 0}, [8672] = {.lex_state = 0}, [8673] = {.lex_state = 0}, - [8674] = {.lex_state = 0}, - [8675] = {.lex_state = 656}, + [8674] = {.lex_state = 150}, + [8675] = {.lex_state = 499}, [8676] = {.lex_state = 0}, [8677] = {.lex_state = 0}, [8678] = {.lex_state = 0}, [8679] = {.lex_state = 0}, - [8680] = {.lex_state = 1044}, - [8681] = {.lex_state = 1044}, + [8680] = {.lex_state = 499}, + [8681] = {.lex_state = 0}, [8682] = {.lex_state = 0}, - [8683] = {.lex_state = 0}, + [8683] = {.lex_state = 383}, [8684] = {.lex_state = 0}, - [8685] = {.lex_state = 0}, - [8686] = {.lex_state = 0}, - [8687] = {.lex_state = 656}, - [8688] = {.lex_state = 656}, - [8689] = {.lex_state = 0}, - [8690] = {.lex_state = 0}, - [8691] = {.lex_state = 0}, + [8685] = {.lex_state = 320}, + [8686] = {.lex_state = 150}, + [8687] = {.lex_state = 0}, + [8688] = {.lex_state = 0}, + [8689] = {.lex_state = 383}, + [8690] = {.lex_state = 383}, + [8691] = {.lex_state = 320}, [8692] = {.lex_state = 0}, [8693] = {.lex_state = 0}, [8694] = {.lex_state = 0}, @@ -44105,47 +35117,47 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8697] = {.lex_state = 0}, [8698] = {.lex_state = 0}, [8699] = {.lex_state = 0}, - [8700] = {.lex_state = 1046}, + [8700] = {.lex_state = 0}, [8701] = {.lex_state = 0}, [8702] = {.lex_state = 0}, - [8703] = {.lex_state = 0}, - [8704] = {.lex_state = 0}, - [8705] = {.lex_state = 656}, + [8703] = {.lex_state = 320}, + [8704] = {.lex_state = 320}, + [8705] = {.lex_state = 383}, [8706] = {.lex_state = 0}, - [8707] = {.lex_state = 0}, + [8707] = {.lex_state = 150}, [8708] = {.lex_state = 0}, [8709] = {.lex_state = 0}, [8710] = {.lex_state = 0}, - [8711] = {.lex_state = 1046}, - [8712] = {.lex_state = 656}, + [8711] = {.lex_state = 320}, + [8712] = {.lex_state = 0}, [8713] = {.lex_state = 0}, [8714] = {.lex_state = 0}, [8715] = {.lex_state = 0}, [8716] = {.lex_state = 0}, [8717] = {.lex_state = 0}, [8718] = {.lex_state = 0}, - [8719] = {.lex_state = 656}, + [8719] = {.lex_state = 0}, [8720] = {.lex_state = 0}, [8721] = {.lex_state = 0}, [8722] = {.lex_state = 0}, [8723] = {.lex_state = 0}, - [8724] = {.lex_state = 656}, - [8725] = {.lex_state = 656}, - [8726] = {.lex_state = 0}, + [8724] = {.lex_state = 0}, + [8725] = {.lex_state = 150}, + [8726] = {.lex_state = 383}, [8727] = {.lex_state = 0}, [8728] = {.lex_state = 0}, - [8729] = {.lex_state = 0}, - [8730] = {.lex_state = 1044}, - [8731] = {.lex_state = 1044}, + [8729] = {.lex_state = 383}, + [8730] = {.lex_state = 320}, + [8731] = {.lex_state = 0}, [8732] = {.lex_state = 0}, [8733] = {.lex_state = 0}, - [8734] = {.lex_state = 0}, - [8735] = {.lex_state = 0}, + [8734] = {.lex_state = 320}, + [8735] = {.lex_state = 320}, [8736] = {.lex_state = 0}, - [8737] = {.lex_state = 656}, + [8737] = {.lex_state = 0}, [8738] = {.lex_state = 0}, [8739] = {.lex_state = 0}, - [8740] = {.lex_state = 0}, + [8740] = {.lex_state = 383}, [8741] = {.lex_state = 0}, [8742] = {.lex_state = 0}, [8743] = {.lex_state = 0}, @@ -44155,1950 +35167,1359 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8747] = {.lex_state = 0}, [8748] = {.lex_state = 0}, [8749] = {.lex_state = 0}, - [8750] = {.lex_state = 0}, + [8750] = {.lex_state = 383}, [8751] = {.lex_state = 0}, [8752] = {.lex_state = 0}, - [8753] = {.lex_state = 0}, - [8754] = {.lex_state = 0}, + [8753] = {.lex_state = 320}, + [8754] = {.lex_state = 320}, [8755] = {.lex_state = 0}, [8756] = {.lex_state = 0}, - [8757] = {.lex_state = 0}, - [8758] = {.lex_state = 0}, + [8757] = {.lex_state = 499}, + [8758] = {.lex_state = 499}, [8759] = {.lex_state = 0}, [8760] = {.lex_state = 0}, - [8761] = {.lex_state = 0}, + [8761] = {.lex_state = 499}, [8762] = {.lex_state = 0}, [8763] = {.lex_state = 0}, - [8764] = {.lex_state = 0}, + [8764] = {.lex_state = 320}, [8765] = {.lex_state = 0}, - [8766] = {.lex_state = 0}, + [8766] = {.lex_state = 499}, [8767] = {.lex_state = 0}, - [8768] = {.lex_state = 1046}, + [8768] = {.lex_state = 499}, [8769] = {.lex_state = 0}, - [8770] = {.lex_state = 531}, - [8771] = {.lex_state = 288}, - [8772] = {.lex_state = 1046}, - [8773] = {.lex_state = 1044}, - [8774] = {.lex_state = 1046}, - [8775] = {.lex_state = 1044}, - [8776] = {.lex_state = 0}, - [8777] = {.lex_state = 0}, - [8778] = {.lex_state = 0}, - [8779] = {.lex_state = 661}, - [8780] = {.lex_state = 531}, - [8781] = {.lex_state = 1046}, + [8770] = {.lex_state = 150}, + [8771] = {.lex_state = 0}, + [8772] = {.lex_state = 320}, + [8773] = {.lex_state = 0}, + [8774] = {.lex_state = 0}, + [8775] = {.lex_state = 150}, + [8776] = {.lex_state = 320}, + [8777] = {.lex_state = 499}, + [8778] = {.lex_state = 383}, + [8779] = {.lex_state = 499}, + [8780] = {.lex_state = 320}, + [8781] = {.lex_state = 0}, [8782] = {.lex_state = 0}, [8783] = {.lex_state = 0}, - [8784] = {.lex_state = 1046}, - [8785] = {.lex_state = 291}, - [8786] = {.lex_state = 0}, - [8787] = {.lex_state = 656}, - [8788] = {.lex_state = 531}, + [8784] = {.lex_state = 320}, + [8785] = {.lex_state = 499}, + [8786] = {.lex_state = 383}, + [8787] = {.lex_state = 0}, + [8788] = {.lex_state = 0}, [8789] = {.lex_state = 0}, [8790] = {.lex_state = 0}, - [8791] = {.lex_state = 656}, - [8792] = {.lex_state = 657}, - [8793] = {.lex_state = 1046}, - [8794] = {.lex_state = 656}, + [8791] = {.lex_state = 0}, + [8792] = {.lex_state = 0}, + [8793] = {.lex_state = 0}, + [8794] = {.lex_state = 0}, [8795] = {.lex_state = 0}, [8796] = {.lex_state = 0}, [8797] = {.lex_state = 0}, [8798] = {.lex_state = 0}, - [8799] = {.lex_state = 656}, - [8800] = {.lex_state = 0}, - [8801] = {.lex_state = 1046}, - [8802] = {.lex_state = 1046}, - [8803] = {.lex_state = 0}, - [8804] = {.lex_state = 1046}, - [8805] = {.lex_state = 0}, - [8806] = {.lex_state = 1046}, - [8807] = {.lex_state = 1046}, - [8808] = {.lex_state = 0}, + [8799] = {.lex_state = 0}, + [8800] = {.lex_state = 383}, + [8801] = {.lex_state = 383}, + [8802] = {.lex_state = 320}, + [8803] = {.lex_state = 499}, + [8804] = {.lex_state = 499}, + [8805] = {.lex_state = 320}, + [8806] = {.lex_state = 0}, + [8807] = {.lex_state = 150}, + [8808] = {.lex_state = 320}, [8809] = {.lex_state = 0}, [8810] = {.lex_state = 0}, - [8811] = {.lex_state = 0}, + [8811] = {.lex_state = 499}, [8812] = {.lex_state = 0}, - [8813] = {.lex_state = 0}, + [8813] = {.lex_state = 499}, [8814] = {.lex_state = 0}, - [8815] = {.lex_state = 656}, - [8816] = {.lex_state = 0}, - [8817] = {.lex_state = 0}, + [8815] = {.lex_state = 0}, + [8816] = {.lex_state = 320}, + [8817] = {.lex_state = 320}, [8818] = {.lex_state = 0}, [8819] = {.lex_state = 0}, - [8820] = {.lex_state = 0}, + [8820] = {.lex_state = 499}, [8821] = {.lex_state = 0}, - [8822] = {.lex_state = 1046}, - [8823] = {.lex_state = 1046}, - [8824] = {.lex_state = 291}, - [8825] = {.lex_state = 1046}, - [8826] = {.lex_state = 1046}, + [8822] = {.lex_state = 499}, + [8823] = {.lex_state = 0}, + [8824] = {.lex_state = 0}, + [8825] = {.lex_state = 0}, + [8826] = {.lex_state = 499}, [8827] = {.lex_state = 0}, - [8828] = {.lex_state = 1046}, + [8828] = {.lex_state = 320}, [8829] = {.lex_state = 0}, - [8830] = {.lex_state = 0}, - [8831] = {.lex_state = 1044}, - [8832] = {.lex_state = 1046}, - [8833] = {.lex_state = 656}, - [8834] = {.lex_state = 1046}, + [8830] = {.lex_state = 499}, + [8831] = {.lex_state = 320}, + [8832] = {.lex_state = 499}, + [8833] = {.lex_state = 499}, + [8834] = {.lex_state = 320}, [8835] = {.lex_state = 0}, [8836] = {.lex_state = 0}, - [8837] = {.lex_state = 531}, - [8838] = {.lex_state = 288}, - [8839] = {.lex_state = 1044}, + [8837] = {.lex_state = 0}, + [8838] = {.lex_state = 0}, + [8839] = {.lex_state = 383}, [8840] = {.lex_state = 0}, - [8841] = {.lex_state = 0}, - [8842] = {.lex_state = 1044}, - [8843] = {.lex_state = 1046}, - [8844] = {.lex_state = 1046}, - [8845] = {.lex_state = 1044}, - [8846] = {.lex_state = 1046}, + [8841] = {.lex_state = 499}, + [8842] = {.lex_state = 0}, + [8843] = {.lex_state = 499}, + [8844] = {.lex_state = 320}, + [8845] = {.lex_state = 0}, + [8846] = {.lex_state = 320}, [8847] = {.lex_state = 0}, - [8848] = {.lex_state = 0}, + [8848] = {.lex_state = 320}, [8849] = {.lex_state = 0}, - [8850] = {.lex_state = 656}, - [8851] = {.lex_state = 0}, - [8852] = {.lex_state = 1046}, - [8853] = {.lex_state = 1044}, - [8854] = {.lex_state = 656}, - [8855] = {.lex_state = 656}, - [8856] = {.lex_state = 0}, - [8857] = {.lex_state = 0}, - [8858] = {.lex_state = 531}, - [8859] = {.lex_state = 1044}, - [8860] = {.lex_state = 288}, + [8850] = {.lex_state = 499}, + [8851] = {.lex_state = 499}, + [8852] = {.lex_state = 0}, + [8853] = {.lex_state = 499}, + [8854] = {.lex_state = 320}, + [8855] = {.lex_state = 320}, + [8856] = {.lex_state = 499}, + [8857] = {.lex_state = 383}, + [8858] = {.lex_state = 0}, + [8859] = {.lex_state = 0}, + [8860] = {.lex_state = 0}, [8861] = {.lex_state = 0}, [8862] = {.lex_state = 0}, - [8863] = {.lex_state = 1044}, - [8864] = {.lex_state = 0}, + [8863] = {.lex_state = 320}, + [8864] = {.lex_state = 499}, [8865] = {.lex_state = 0}, - [8866] = {.lex_state = 288}, - [8867] = {.lex_state = 656}, - [8868] = {.lex_state = 1044}, - [8869] = {.lex_state = 1046}, - [8870] = {.lex_state = 1046}, - [8871] = {.lex_state = 656}, - [8872] = {.lex_state = 0}, - [8873] = {.lex_state = 0}, - [8874] = {.lex_state = 0}, - [8875] = {.lex_state = 1046}, + [8866] = {.lex_state = 0}, + [8867] = {.lex_state = 0}, + [8868] = {.lex_state = 320}, + [8869] = {.lex_state = 383}, + [8870] = {.lex_state = 150}, + [8871] = {.lex_state = 0}, + [8872] = {.lex_state = 499}, + [8873] = {.lex_state = 499}, + [8874] = {.lex_state = 383}, + [8875] = {.lex_state = 383}, [8876] = {.lex_state = 0}, - [8877] = {.lex_state = 0}, - [8878] = {.lex_state = 656}, - [8879] = {.lex_state = 656}, - [8880] = {.lex_state = 0}, - [8881] = {.lex_state = 656}, - [8882] = {.lex_state = 1046}, - [8883] = {.lex_state = 0}, - [8884] = {.lex_state = 656}, - [8885] = {.lex_state = 0}, - [8886] = {.lex_state = 531}, - [8887] = {.lex_state = 288}, - [8888] = {.lex_state = 656}, - [8889] = {.lex_state = 0}, - [8890] = {.lex_state = 1044}, - [8891] = {.lex_state = 656}, - [8892] = {.lex_state = 0}, + [8877] = {.lex_state = 499}, + [8878] = {.lex_state = 320}, + [8879] = {.lex_state = 0}, + [8880] = {.lex_state = 320}, + [8881] = {.lex_state = 0}, + [8882] = {.lex_state = 0}, + [8883] = {.lex_state = 499}, + [8884] = {.lex_state = 320}, + [8885] = {.lex_state = 320}, + [8886] = {.lex_state = 0}, + [8887] = {.lex_state = 0}, + [8888] = {.lex_state = 0}, + [8889] = {.lex_state = 499}, + [8890] = {.lex_state = 383}, + [8891] = {.lex_state = 320}, + [8892] = {.lex_state = 499}, [8893] = {.lex_state = 0}, - [8894] = {.lex_state = 656}, - [8895] = {.lex_state = 0}, + [8894] = {.lex_state = 499}, + [8895] = {.lex_state = 383}, [8896] = {.lex_state = 0}, [8897] = {.lex_state = 0}, [8898] = {.lex_state = 0}, - [8899] = {.lex_state = 1044}, - [8900] = {.lex_state = 1044}, + [8899] = {.lex_state = 0}, + [8900] = {.lex_state = 320}, [8901] = {.lex_state = 0}, - [8902] = {.lex_state = 1046}, - [8903] = {.lex_state = 1046}, - [8904] = {.lex_state = 1046}, - [8905] = {.lex_state = 1046}, - [8906] = {.lex_state = 656}, - [8907] = {.lex_state = 1044}, - [8908] = {.lex_state = 1046}, - [8909] = {.lex_state = 288}, - [8910] = {.lex_state = 1046}, + [8902] = {.lex_state = 499}, + [8903] = {.lex_state = 0}, + [8904] = {.lex_state = 320}, + [8905] = {.lex_state = 0}, + [8906] = {.lex_state = 320}, + [8907] = {.lex_state = 499}, + [8908] = {.lex_state = 0}, + [8909] = {.lex_state = 0}, + [8910] = {.lex_state = 0}, [8911] = {.lex_state = 0}, - [8912] = {.lex_state = 0}, - [8913] = {.lex_state = 0}, + [8912] = {.lex_state = 150}, + [8913] = {.lex_state = 320}, [8914] = {.lex_state = 0}, - [8915] = {.lex_state = 1046}, + [8915] = {.lex_state = 383}, [8916] = {.lex_state = 0}, - [8917] = {.lex_state = 656}, + [8917] = {.lex_state = 499}, [8918] = {.lex_state = 0}, [8919] = {.lex_state = 0}, - [8920] = {.lex_state = 0}, + [8920] = {.lex_state = 320}, [8921] = {.lex_state = 0}, - [8922] = {.lex_state = 1046}, - [8923] = {.lex_state = 0}, + [8922] = {.lex_state = 499}, + [8923] = {.lex_state = 150}, [8924] = {.lex_state = 0}, - [8925] = {.lex_state = 656}, - [8926] = {.lex_state = 656}, - [8927] = {.lex_state = 656}, - [8928] = {.lex_state = 0}, - [8929] = {.lex_state = 656}, - [8930] = {.lex_state = 656}, - [8931] = {.lex_state = 288}, + [8925] = {.lex_state = 0}, + [8926] = {.lex_state = 383}, + [8927] = {.lex_state = 0}, + [8928] = {.lex_state = 320}, + [8929] = {.lex_state = 0}, + [8930] = {.lex_state = 0}, + [8931] = {.lex_state = 499}, [8932] = {.lex_state = 0}, - [8933] = {.lex_state = 1046}, + [8933] = {.lex_state = 499}, [8934] = {.lex_state = 0}, [8935] = {.lex_state = 0}, - [8936] = {.lex_state = 1046}, - [8937] = {.lex_state = 1046}, + [8936] = {.lex_state = 0}, + [8937] = {.lex_state = 499}, [8938] = {.lex_state = 0}, [8939] = {.lex_state = 0}, [8940] = {.lex_state = 0}, - [8941] = {.lex_state = 0}, - [8942] = {.lex_state = 0}, - [8943] = {.lex_state = 656}, + [8941] = {.lex_state = 383}, + [8942] = {.lex_state = 499}, + [8943] = {.lex_state = 499}, [8944] = {.lex_state = 0}, - [8945] = {.lex_state = 0}, - [8946] = {.lex_state = 288}, - [8947] = {.lex_state = 1046}, - [8948] = {.lex_state = 1046}, + [8945] = {.lex_state = 499}, + [8946] = {.lex_state = 499}, + [8947] = {.lex_state = 0}, + [8948] = {.lex_state = 0}, [8949] = {.lex_state = 0}, [8950] = {.lex_state = 0}, [8951] = {.lex_state = 0}, - [8952] = {.lex_state = 291}, - [8953] = {.lex_state = 1046}, + [8952] = {.lex_state = 320}, + [8953] = {.lex_state = 499}, [8954] = {.lex_state = 0}, [8955] = {.lex_state = 0}, - [8956] = {.lex_state = 656}, + [8956] = {.lex_state = 499}, [8957] = {.lex_state = 0}, - [8958] = {.lex_state = 1046}, + [8958] = {.lex_state = 0}, [8959] = {.lex_state = 0}, - [8960] = {.lex_state = 1046}, - [8961] = {.lex_state = 1046}, - [8962] = {.lex_state = 656}, - [8963] = {.lex_state = 1046}, + [8960] = {.lex_state = 150}, + [8961] = {.lex_state = 0}, + [8962] = {.lex_state = 0}, + [8963] = {.lex_state = 0}, [8964] = {.lex_state = 0}, - [8965] = {.lex_state = 288}, + [8965] = {.lex_state = 0}, [8966] = {.lex_state = 0}, - [8967] = {.lex_state = 661}, - [8968] = {.lex_state = 1046}, - [8969] = {.lex_state = 1046}, - [8970] = {.lex_state = 1046}, - [8971] = {.lex_state = 0}, - [8972] = {.lex_state = 1046}, - [8973] = {.lex_state = 1046}, + [8967] = {.lex_state = 0}, + [8968] = {.lex_state = 499}, + [8969] = {.lex_state = 383}, + [8970] = {.lex_state = 0}, + [8971] = {.lex_state = 499}, + [8972] = {.lex_state = 0}, + [8973] = {.lex_state = 150}, [8974] = {.lex_state = 0}, - [8975] = {.lex_state = 1046}, - [8976] = {.lex_state = 0}, - [8977] = {.lex_state = 0}, - [8978] = {.lex_state = 0}, - [8979] = {.lex_state = 656}, + [8975] = {.lex_state = 0}, + [8976] = {.lex_state = 499}, + [8977] = {.lex_state = 320}, + [8978] = {.lex_state = 320}, + [8979] = {.lex_state = 499}, [8980] = {.lex_state = 0}, - [8981] = {.lex_state = 1044}, - [8982] = {.lex_state = 288}, + [8981] = {.lex_state = 0}, + [8982] = {.lex_state = 0}, [8983] = {.lex_state = 0}, [8984] = {.lex_state = 0}, [8985] = {.lex_state = 0}, - [8986] = {.lex_state = 1044}, + [8986] = {.lex_state = 150}, [8987] = {.lex_state = 0}, [8988] = {.lex_state = 0}, - [8989] = {.lex_state = 656}, - [8990] = {.lex_state = 0}, - [8991] = {.lex_state = 288}, - [8992] = {.lex_state = 0}, - [8993] = {.lex_state = 1046}, - [8994] = {.lex_state = 0}, - [8995] = {.lex_state = 1044}, - [8996] = {.lex_state = 656}, - [8997] = {.lex_state = 288}, - [8998] = {.lex_state = 656}, + [8989] = {.lex_state = 0}, + [8990] = {.lex_state = 320}, + [8991] = {.lex_state = 0}, + [8992] = {.lex_state = 150}, + [8993] = {.lex_state = 0}, + [8994] = {.lex_state = 150}, + [8995] = {.lex_state = 150}, + [8996] = {.lex_state = 383}, + [8997] = {.lex_state = 320}, + [8998] = {.lex_state = 320}, [8999] = {.lex_state = 0}, [9000] = {.lex_state = 0}, - [9001] = {.lex_state = 656}, - [9002] = {.lex_state = 1046}, - [9003] = {.lex_state = 288}, + [9001] = {.lex_state = 0}, + [9002] = {.lex_state = 0}, + [9003] = {.lex_state = 0}, [9004] = {.lex_state = 0}, - [9005] = {.lex_state = 288}, + [9005] = {.lex_state = 0}, [9006] = {.lex_state = 0}, - [9007] = {.lex_state = 288}, - [9008] = {.lex_state = 288}, + [9007] = {.lex_state = 320}, + [9008] = {.lex_state = 0}, [9009] = {.lex_state = 0}, - [9010] = {.lex_state = 1046}, - [9011] = {.lex_state = 1044}, - [9012] = {.lex_state = 1046}, - [9013] = {.lex_state = 1046}, - [9014] = {.lex_state = 1046}, - [9015] = {.lex_state = 1046}, - [9016] = {.lex_state = 0}, - [9017] = {.lex_state = 656}, - [9018] = {.lex_state = 1046}, - [9019] = {.lex_state = 1044}, - [9020] = {.lex_state = 1046}, - [9021] = {.lex_state = 656}, - [9022] = {.lex_state = 1046}, - [9023] = {.lex_state = 1046}, - [9024] = {.lex_state = 1046}, - [9025] = {.lex_state = 656}, - [9026] = {.lex_state = 0}, + [9010] = {.lex_state = 0}, + [9011] = {.lex_state = 0}, + [9012] = {.lex_state = 0}, + [9013] = {.lex_state = 0}, + [9014] = {.lex_state = 0}, + [9015] = {.lex_state = 0}, + [9016] = {.lex_state = 383}, + [9017] = {.lex_state = 0}, + [9018] = {.lex_state = 0}, + [9019] = {.lex_state = 320}, + [9020] = {.lex_state = 0}, + [9021] = {.lex_state = 0}, + [9022] = {.lex_state = 0}, + [9023] = {.lex_state = 0}, + [9024] = {.lex_state = 499}, + [9025] = {.lex_state = 0}, + [9026] = {.lex_state = 499}, [9027] = {.lex_state = 0}, [9028] = {.lex_state = 0}, [9029] = {.lex_state = 0}, [9030] = {.lex_state = 0}, - [9031] = {.lex_state = 288}, + [9031] = {.lex_state = 0}, [9032] = {.lex_state = 0}, - [9033] = {.lex_state = 1044}, + [9033] = {.lex_state = 383}, [9034] = {.lex_state = 0}, - [9035] = {.lex_state = 1046}, + [9035] = {.lex_state = 0}, [9036] = {.lex_state = 0}, [9037] = {.lex_state = 0}, - [9038] = {.lex_state = 286}, - [9039] = {.lex_state = 656}, - [9040] = {.lex_state = 656}, - [9041] = {.lex_state = 0}, + [9038] = {.lex_state = 499}, + [9039] = {.lex_state = 320}, + [9040] = {.lex_state = 0}, + [9041] = {.lex_state = 499, .external_lex_state = 2}, [9042] = {.lex_state = 0}, - [9043] = {.lex_state = 1044}, - [9044] = {.lex_state = 531}, - [9045] = {.lex_state = 1044}, + [9043] = {.lex_state = 499}, + [9044] = {.lex_state = 499}, + [9045] = {.lex_state = 0}, [9046] = {.lex_state = 0}, - [9047] = {.lex_state = 0}, - [9048] = {.lex_state = 531}, - [9049] = {.lex_state = 0}, - [9050] = {.lex_state = 1046}, - [9051] = {.lex_state = 656}, - [9052] = {.lex_state = 0}, - [9053] = {.lex_state = 656}, - [9054] = {.lex_state = 656}, - [9055] = {.lex_state = 1044}, - [9056] = {.lex_state = 1046}, + [9047] = {.lex_state = 499}, + [9048] = {.lex_state = 0}, + [9049] = {.lex_state = 499, .external_lex_state = 2}, + [9050] = {.lex_state = 0}, + [9051] = {.lex_state = 499}, + [9052] = {.lex_state = 383}, + [9053] = {.lex_state = 0}, + [9054] = {.lex_state = 0}, + [9055] = {.lex_state = 0}, + [9056] = {.lex_state = 320}, [9057] = {.lex_state = 0}, - [9058] = {.lex_state = 1046}, - [9059] = {.lex_state = 1046}, - [9060] = {.lex_state = 656}, - [9061] = {.lex_state = 656}, + [9058] = {.lex_state = 320}, + [9059] = {.lex_state = 0}, + [9060] = {.lex_state = 0}, + [9061] = {.lex_state = 150}, [9062] = {.lex_state = 0}, [9063] = {.lex_state = 0}, [9064] = {.lex_state = 0}, - [9065] = {.lex_state = 0}, - [9066] = {.lex_state = 291}, + [9065] = {.lex_state = 320}, + [9066] = {.lex_state = 0}, [9067] = {.lex_state = 0}, [9068] = {.lex_state = 0}, [9069] = {.lex_state = 0}, - [9070] = {.lex_state = 1044}, - [9071] = {.lex_state = 0}, - [9072] = {.lex_state = 656}, - [9073] = {.lex_state = 656}, - [9074] = {.lex_state = 1044}, - [9075] = {.lex_state = 1046}, - [9076] = {.lex_state = 661}, - [9077] = {.lex_state = 656}, - [9078] = {.lex_state = 1044}, - [9079] = {.lex_state = 0}, - [9080] = {.lex_state = 1046}, - [9081] = {.lex_state = 0}, - [9082] = {.lex_state = 1046}, - [9083] = {.lex_state = 0}, + [9070] = {.lex_state = 0}, + [9071] = {.lex_state = 320}, + [9072] = {.lex_state = 0}, + [9073] = {.lex_state = 0}, + [9074] = {.lex_state = 499}, + [9075] = {.lex_state = 150}, + [9076] = {.lex_state = 0}, + [9077] = {.lex_state = 0}, + [9078] = {.lex_state = 0}, + [9079] = {.lex_state = 499, .external_lex_state = 2}, + [9080] = {.lex_state = 0}, + [9081] = {.lex_state = 150}, + [9082] = {.lex_state = 0}, + [9083] = {.lex_state = 499, .external_lex_state = 2}, [9084] = {.lex_state = 0}, - [9085] = {.lex_state = 1046}, + [9085] = {.lex_state = 499, .external_lex_state = 2}, [9086] = {.lex_state = 0}, [9087] = {.lex_state = 0}, - [9088] = {.lex_state = 1046}, - [9089] = {.lex_state = 0}, - [9090] = {.lex_state = 1046}, - [9091] = {.lex_state = 1046}, - [9092] = {.lex_state = 1046}, - [9093] = {.lex_state = 0}, + [9088] = {.lex_state = 499, .external_lex_state = 2}, + [9089] = {.lex_state = 499, .external_lex_state = 2}, + [9090] = {.lex_state = 0}, + [9091] = {.lex_state = 499, .external_lex_state = 2}, + [9092] = {.lex_state = 0}, + [9093] = {.lex_state = 499, .external_lex_state = 2}, [9094] = {.lex_state = 0}, - [9095] = {.lex_state = 1046}, - [9096] = {.lex_state = 0}, - [9097] = {.lex_state = 0}, - [9098] = {.lex_state = 0}, - [9099] = {.lex_state = 656}, - [9100] = {.lex_state = 1046}, - [9101] = {.lex_state = 0}, - [9102] = {.lex_state = 0}, - [9103] = {.lex_state = 0}, - [9104] = {.lex_state = 1046}, - [9105] = {.lex_state = 0}, - [9106] = {.lex_state = 0}, - [9107] = {.lex_state = 1046}, - [9108] = {.lex_state = 1046}, - [9109] = {.lex_state = 1046}, - [9110] = {.lex_state = 1046}, - [9111] = {.lex_state = 1046}, + [9095] = {.lex_state = 320}, + [9096] = {.lex_state = 499, .external_lex_state = 2}, + [9097] = {.lex_state = 499, .external_lex_state = 2}, + [9098] = {.lex_state = 499, .external_lex_state = 2}, + [9099] = {.lex_state = 499, .external_lex_state = 2}, + [9100] = {.lex_state = 499, .external_lex_state = 2}, + [9101] = {.lex_state = 499, .external_lex_state = 2}, + [9102] = {.lex_state = 499, .external_lex_state = 2}, + [9103] = {.lex_state = 499, .external_lex_state = 2}, + [9104] = {.lex_state = 499, .external_lex_state = 2}, + [9105] = {.lex_state = 499, .external_lex_state = 2}, + [9106] = {.lex_state = 499, .external_lex_state = 2}, + [9107] = {.lex_state = 499, .external_lex_state = 2}, + [9108] = {.lex_state = 499, .external_lex_state = 2}, + [9109] = {.lex_state = 499, .external_lex_state = 2}, + [9110] = {.lex_state = 150}, + [9111] = {.lex_state = 383}, [9112] = {.lex_state = 0}, - [9113] = {.lex_state = 1046}, + [9113] = {.lex_state = 499}, [9114] = {.lex_state = 0}, - [9115] = {.lex_state = 0}, + [9115] = {.lex_state = 151}, [9116] = {.lex_state = 0}, [9117] = {.lex_state = 0}, - [9118] = {.lex_state = 1046}, - [9119] = {.lex_state = 1046}, - [9120] = {.lex_state = 1046}, + [9118] = {.lex_state = 0}, + [9119] = {.lex_state = 320}, + [9120] = {.lex_state = 0}, [9121] = {.lex_state = 0}, [9122] = {.lex_state = 0}, - [9123] = {.lex_state = 0}, + [9123] = {.lex_state = 275}, [9124] = {.lex_state = 0}, - [9125] = {.lex_state = 1046}, - [9126] = {.lex_state = 1046}, - [9127] = {.lex_state = 1044}, - [9128] = {.lex_state = 1046}, + [9125] = {.lex_state = 0}, + [9126] = {.lex_state = 0}, + [9127] = {.lex_state = 275}, + [9128] = {.lex_state = 275}, [9129] = {.lex_state = 0}, - [9130] = {.lex_state = 656}, - [9131] = {.lex_state = 0}, - [9132] = {.lex_state = 1046}, + [9130] = {.lex_state = 0}, + [9131] = {.lex_state = 320}, + [9132] = {.lex_state = 0}, [9133] = {.lex_state = 0}, [9134] = {.lex_state = 0}, - [9135] = {.lex_state = 1046}, - [9136] = {.lex_state = 1044}, - [9137] = {.lex_state = 656}, + [9135] = {.lex_state = 0}, + [9136] = {.lex_state = 0}, + [9137] = {.lex_state = 0}, [9138] = {.lex_state = 0}, - [9139] = {.lex_state = 1046}, - [9140] = {.lex_state = 1044, .external_lex_state = 2}, - [9141] = {.lex_state = 0}, - [9142] = {.lex_state = 656}, - [9143] = {.lex_state = 531}, + [9139] = {.lex_state = 0, .external_lex_state = 2}, + [9140] = {.lex_state = 0}, + [9141] = {.lex_state = 275}, + [9142] = {.lex_state = 0}, + [9143] = {.lex_state = 0}, [9144] = {.lex_state = 0}, - [9145] = {.lex_state = 290}, - [9146] = {.lex_state = 290}, - [9147] = {.lex_state = 656}, - [9148] = {.lex_state = 657}, - [9149] = {.lex_state = 0}, - [9150] = {.lex_state = 0}, - [9151] = {.lex_state = 0}, - [9152] = {.lex_state = 657}, - [9153] = {.lex_state = 657}, + [9145] = {.lex_state = 0}, + [9146] = {.lex_state = 0}, + [9147] = {.lex_state = 275}, + [9148] = {.lex_state = 0}, + [9149] = {.lex_state = 320}, + [9150] = {.lex_state = 320}, + [9151] = {.lex_state = 320}, + [9152] = {.lex_state = 0}, + [9153] = {.lex_state = 275}, [9154] = {.lex_state = 0}, - [9155] = {.lex_state = 290}, - [9156] = {.lex_state = 0}, + [9155] = {.lex_state = 275}, + [9156] = {.lex_state = 275}, [9157] = {.lex_state = 0}, - [9158] = {.lex_state = 290}, + [9158] = {.lex_state = 499}, [9159] = {.lex_state = 0}, - [9160] = {.lex_state = 0}, + [9160] = {.lex_state = 320}, [9161] = {.lex_state = 0}, - [9162] = {.lex_state = 656}, + [9162] = {.lex_state = 0}, [9163] = {.lex_state = 0}, - [9164] = {.lex_state = 657}, + [9164] = {.lex_state = 0}, [9165] = {.lex_state = 0}, - [9166] = {.lex_state = 657}, + [9166] = {.lex_state = 0}, [9167] = {.lex_state = 0}, - [9168] = {.lex_state = 656}, - [9169] = {.lex_state = 657}, - [9170] = {.lex_state = 0}, - [9171] = {.lex_state = 657}, + [9168] = {.lex_state = 499}, + [9169] = {.lex_state = 502}, + [9170] = {.lex_state = 502}, + [9171] = {.lex_state = 0}, [9172] = {.lex_state = 0}, - [9173] = {.lex_state = 657}, - [9174] = {.lex_state = 0}, - [9175] = {.lex_state = 0}, + [9173] = {.lex_state = 320}, + [9174] = {.lex_state = 320}, + [9175] = {.lex_state = 275}, [9176] = {.lex_state = 0}, - [9177] = {.lex_state = 0}, - [9178] = {.lex_state = 656}, + [9177] = {.lex_state = 151}, + [9178] = {.lex_state = 0}, [9179] = {.lex_state = 0}, - [9180] = {.lex_state = 657}, - [9181] = {.lex_state = 531}, - [9182] = {.lex_state = 657}, - [9183] = {.lex_state = 531}, + [9180] = {.lex_state = 502}, + [9181] = {.lex_state = 499}, + [9182] = {.lex_state = 0}, + [9183] = {.lex_state = 320}, [9184] = {.lex_state = 0}, - [9185] = {.lex_state = 0}, - [9186] = {.lex_state = 656}, + [9185] = {.lex_state = 499}, + [9186] = {.lex_state = 0}, [9187] = {.lex_state = 0}, - [9188] = {.lex_state = 1044}, - [9189] = {.lex_state = 657}, - [9190] = {.lex_state = 0}, + [9188] = {.lex_state = 275}, + [9189] = {.lex_state = 0}, + [9190] = {.lex_state = 275}, [9191] = {.lex_state = 0}, - [9192] = {.lex_state = 0}, - [9193] = {.lex_state = 656}, + [9192] = {.lex_state = 275}, + [9193] = {.lex_state = 0}, [9194] = {.lex_state = 0}, - [9195] = {.lex_state = 657}, + [9195] = {.lex_state = 320}, [9196] = {.lex_state = 0}, - [9197] = {.lex_state = 0}, + [9197] = {.lex_state = 320}, [9198] = {.lex_state = 0}, [9199] = {.lex_state = 0}, - [9200] = {.lex_state = 1044}, - [9201] = {.lex_state = 656}, + [9200] = {.lex_state = 0}, + [9201] = {.lex_state = 0}, [9202] = {.lex_state = 0}, - [9203] = {.lex_state = 657}, - [9204] = {.lex_state = 656}, - [9205] = {.lex_state = 657}, - [9206] = {.lex_state = 656}, - [9207] = {.lex_state = 0}, + [9203] = {.lex_state = 0}, + [9204] = {.lex_state = 0}, + [9205] = {.lex_state = 0}, + [9206] = {.lex_state = 0}, + [9207] = {.lex_state = 275}, [9208] = {.lex_state = 0}, - [9209] = {.lex_state = 657}, - [9210] = {.lex_state = 1044}, - [9211] = {.lex_state = 656}, - [9212] = {.lex_state = 656}, + [9209] = {.lex_state = 0}, + [9210] = {.lex_state = 0}, + [9211] = {.lex_state = 320}, + [9212] = {.lex_state = 499}, [9213] = {.lex_state = 0}, - [9214] = {.lex_state = 657}, - [9215] = {.lex_state = 531}, + [9214] = {.lex_state = 275}, + [9215] = {.lex_state = 0, .external_lex_state = 2}, [9216] = {.lex_state = 0}, - [9217] = {.lex_state = 656}, - [9218] = {.lex_state = 657}, + [9217] = {.lex_state = 502}, + [9218] = {.lex_state = 320}, [9219] = {.lex_state = 0}, [9220] = {.lex_state = 0}, - [9221] = {.lex_state = 531}, - [9222] = {.lex_state = 531}, - [9223] = {.lex_state = 656}, - [9224] = {.lex_state = 0}, - [9225] = {.lex_state = 657}, + [9221] = {.lex_state = 0}, + [9222] = {.lex_state = 320}, + [9223] = {.lex_state = 320}, + [9224] = {.lex_state = 0, .external_lex_state = 2}, + [9225] = {.lex_state = 0}, [9226] = {.lex_state = 0}, - [9227] = {.lex_state = 531}, - [9228] = {.lex_state = 656}, - [9229] = {.lex_state = 0}, - [9230] = {.lex_state = 657}, - [9231] = {.lex_state = 656}, - [9232] = {.lex_state = 531}, - [9233] = {.lex_state = 656}, - [9234] = {.lex_state = 290}, + [9227] = {.lex_state = 275}, + [9228] = {.lex_state = 0}, + [9229] = {.lex_state = 499}, + [9230] = {.lex_state = 499}, + [9231] = {.lex_state = 0}, + [9232] = {.lex_state = 0}, + [9233] = {.lex_state = 499}, + [9234] = {.lex_state = 320}, [9235] = {.lex_state = 0}, - [9236] = {.lex_state = 657}, + [9236] = {.lex_state = 275}, [9237] = {.lex_state = 0}, - [9238] = {.lex_state = 656}, - [9239] = {.lex_state = 0}, - [9240] = {.lex_state = 531}, - [9241] = {.lex_state = 657}, - [9242] = {.lex_state = 0}, - [9243] = {.lex_state = 0}, - [9244] = {.lex_state = 657}, - [9245] = {.lex_state = 657}, + [9238] = {.lex_state = 275}, + [9239] = {.lex_state = 275}, + [9240] = {.lex_state = 320}, + [9241] = {.lex_state = 0}, + [9242] = {.lex_state = 502}, + [9243] = {.lex_state = 499}, + [9244] = {.lex_state = 0}, + [9245] = {.lex_state = 0}, [9246] = {.lex_state = 0}, - [9247] = {.lex_state = 531}, - [9248] = {.lex_state = 0}, + [9247] = {.lex_state = 0}, + [9248] = {.lex_state = 499}, [9249] = {.lex_state = 0}, - [9250] = {.lex_state = 531}, - [9251] = {.lex_state = 0}, - [9252] = {.lex_state = 657}, - [9253] = {.lex_state = 656}, - [9254] = {.lex_state = 657}, - [9255] = {.lex_state = 531}, + [9250] = {.lex_state = 0}, + [9251] = {.lex_state = 320}, + [9252] = {.lex_state = 0}, + [9253] = {.lex_state = 0}, + [9254] = {.lex_state = 320}, + [9255] = {.lex_state = 0}, [9256] = {.lex_state = 0}, [9257] = {.lex_state = 0}, - [9258] = {.lex_state = 0}, - [9259] = {.lex_state = 0}, + [9258] = {.lex_state = 320}, + [9259] = {.lex_state = 320}, [9260] = {.lex_state = 0}, - [9261] = {.lex_state = 531}, - [9262] = {.lex_state = 531}, + [9261] = {.lex_state = 275}, + [9262] = {.lex_state = 0}, [9263] = {.lex_state = 0}, [9264] = {.lex_state = 0}, [9265] = {.lex_state = 0}, - [9266] = {.lex_state = 656}, - [9267] = {.lex_state = 531}, - [9268] = {.lex_state = 1044}, - [9269] = {.lex_state = 1044}, - [9270] = {.lex_state = 0}, - [9271] = {.lex_state = 0}, + [9266] = {.lex_state = 0}, + [9267] = {.lex_state = 0}, + [9268] = {.lex_state = 0}, + [9269] = {.lex_state = 275}, + [9270] = {.lex_state = 0, .external_lex_state = 2}, + [9271] = {.lex_state = 499}, [9272] = {.lex_state = 0}, - [9273] = {.lex_state = 0}, - [9274] = {.lex_state = 531}, - [9275] = {.lex_state = 656}, + [9273] = {.lex_state = 320}, + [9274] = {.lex_state = 275}, + [9275] = {.lex_state = 275}, [9276] = {.lex_state = 0}, - [9277] = {.lex_state = 290}, + [9277] = {.lex_state = 0}, [9278] = {.lex_state = 0}, - [9279] = {.lex_state = 1044}, + [9279] = {.lex_state = 275}, [9280] = {.lex_state = 0}, - [9281] = {.lex_state = 1044}, + [9281] = {.lex_state = 499}, [9282] = {.lex_state = 0}, - [9283] = {.lex_state = 656}, - [9284] = {.lex_state = 1044}, - [9285] = {.lex_state = 656}, - [9286] = {.lex_state = 531}, - [9287] = {.lex_state = 1044}, - [9288] = {.lex_state = 1044}, - [9289] = {.lex_state = 657}, - [9290] = {.lex_state = 290}, - [9291] = {.lex_state = 0}, - [9292] = {.lex_state = 1044}, - [9293] = {.lex_state = 656}, - [9294] = {.lex_state = 531}, - [9295] = {.lex_state = 1044}, + [9283] = {.lex_state = 0}, + [9284] = {.lex_state = 151}, + [9285] = {.lex_state = 275}, + [9286] = {.lex_state = 275}, + [9287] = {.lex_state = 0}, + [9288] = {.lex_state = 0}, + [9289] = {.lex_state = 499}, + [9290] = {.lex_state = 0}, + [9291] = {.lex_state = 275}, + [9292] = {.lex_state = 0}, + [9293] = {.lex_state = 151}, + [9294] = {.lex_state = 499}, + [9295] = {.lex_state = 320}, [9296] = {.lex_state = 0}, - [9297] = {.lex_state = 1044, .external_lex_state = 2}, - [9298] = {.lex_state = 0}, + [9297] = {.lex_state = 275}, + [9298] = {.lex_state = 275}, [9299] = {.lex_state = 0}, [9300] = {.lex_state = 0}, [9301] = {.lex_state = 0}, - [9302] = {.lex_state = 290}, + [9302] = {.lex_state = 151}, [9303] = {.lex_state = 0}, - [9304] = {.lex_state = 656}, + [9304] = {.lex_state = 499}, [9305] = {.lex_state = 0}, - [9306] = {.lex_state = 0}, + [9306] = {.lex_state = 275}, [9307] = {.lex_state = 0}, - [9308] = {.lex_state = 0}, - [9309] = {.lex_state = 0}, - [9310] = {.lex_state = 0}, + [9308] = {.lex_state = 320}, + [9309] = {.lex_state = 151}, + [9310] = {.lex_state = 275}, [9311] = {.lex_state = 0}, - [9312] = {.lex_state = 656}, - [9313] = {.lex_state = 531}, - [9314] = {.lex_state = 0}, - [9315] = {.lex_state = 531}, - [9316] = {.lex_state = 1044}, + [9312] = {.lex_state = 0}, + [9313] = {.lex_state = 0}, + [9314] = {.lex_state = 0, .external_lex_state = 2}, + [9315] = {.lex_state = 499}, + [9316] = {.lex_state = 320}, [9317] = {.lex_state = 0}, - [9318] = {.lex_state = 657}, - [9319] = {.lex_state = 1044}, - [9320] = {.lex_state = 0}, + [9318] = {.lex_state = 275}, + [9319] = {.lex_state = 320}, + [9320] = {.lex_state = 275}, [9321] = {.lex_state = 0}, - [9322] = {.lex_state = 290}, + [9322] = {.lex_state = 0}, [9323] = {.lex_state = 0}, - [9324] = {.lex_state = 1044}, - [9325] = {.lex_state = 656}, - [9326] = {.lex_state = 531}, - [9327] = {.lex_state = 0}, - [9328] = {.lex_state = 290}, - [9329] = {.lex_state = 656}, - [9330] = {.lex_state = 0}, - [9331] = {.lex_state = 1044}, - [9332] = {.lex_state = 1044}, + [9324] = {.lex_state = 499}, + [9325] = {.lex_state = 275}, + [9326] = {.lex_state = 0}, + [9327] = {.lex_state = 320}, + [9328] = {.lex_state = 0}, + [9329] = {.lex_state = 0}, + [9330] = {.lex_state = 275}, + [9331] = {.lex_state = 0}, + [9332] = {.lex_state = 499}, [9333] = {.lex_state = 0}, - [9334] = {.lex_state = 0}, + [9334] = {.lex_state = 320}, [9335] = {.lex_state = 0}, - [9336] = {.lex_state = 656}, - [9337] = {.lex_state = 1044}, - [9338] = {.lex_state = 0}, - [9339] = {.lex_state = 1044}, - [9340] = {.lex_state = 531}, + [9336] = {.lex_state = 0}, + [9337] = {.lex_state = 151}, + [9338] = {.lex_state = 320}, + [9339] = {.lex_state = 0}, + [9340] = {.lex_state = 275}, [9341] = {.lex_state = 0}, - [9342] = {.lex_state = 656}, - [9343] = {.lex_state = 657}, + [9342] = {.lex_state = 0}, + [9343] = {.lex_state = 320}, [9344] = {.lex_state = 0}, [9345] = {.lex_state = 0}, - [9346] = {.lex_state = 1044}, - [9347] = {.lex_state = 1044}, - [9348] = {.lex_state = 1044}, + [9346] = {.lex_state = 0}, + [9347] = {.lex_state = 320}, + [9348] = {.lex_state = 320}, [9349] = {.lex_state = 0}, - [9350] = {.lex_state = 656}, + [9350] = {.lex_state = 0}, [9351] = {.lex_state = 0}, - [9352] = {.lex_state = 656}, - [9353] = {.lex_state = 1044}, - [9354] = {.lex_state = 531}, + [9352] = {.lex_state = 0}, + [9353] = {.lex_state = 0}, + [9354] = {.lex_state = 0}, [9355] = {.lex_state = 0}, - [9356] = {.lex_state = 0}, - [9357] = {.lex_state = 0}, - [9358] = {.lex_state = 1044}, - [9359] = {.lex_state = 0}, + [9356] = {.lex_state = 0, .external_lex_state = 2}, + [9357] = {.lex_state = 499}, + [9358] = {.lex_state = 320}, + [9359] = {.lex_state = 275}, [9360] = {.lex_state = 0}, [9361] = {.lex_state = 0}, [9362] = {.lex_state = 0}, - [9363] = {.lex_state = 1044}, - [9364] = {.lex_state = 0}, + [9363] = {.lex_state = 0}, + [9364] = {.lex_state = 275}, [9365] = {.lex_state = 0}, - [9366] = {.lex_state = 656}, - [9367] = {.lex_state = 1044}, - [9368] = {.lex_state = 0}, - [9369] = {.lex_state = 1044}, + [9366] = {.lex_state = 320}, + [9367] = {.lex_state = 0}, + [9368] = {.lex_state = 320}, + [9369] = {.lex_state = 320}, [9370] = {.lex_state = 0}, [9371] = {.lex_state = 0}, - [9372] = {.lex_state = 0}, - [9373] = {.lex_state = 0}, - [9374] = {.lex_state = 531}, + [9372] = {.lex_state = 275}, + [9373] = {.lex_state = 151}, + [9374] = {.lex_state = 499}, [9375] = {.lex_state = 0}, - [9376] = {.lex_state = 1044}, - [9377] = {.lex_state = 0}, - [9378] = {.lex_state = 1044}, + [9376] = {.lex_state = 0}, + [9377] = {.lex_state = 151}, + [9378] = {.lex_state = 320}, [9379] = {.lex_state = 0}, - [9380] = {.lex_state = 0}, - [9381] = {.lex_state = 656}, - [9382] = {.lex_state = 0}, + [9380] = {.lex_state = 320}, + [9381] = {.lex_state = 320}, + [9382] = {.lex_state = 151}, [9383] = {.lex_state = 0}, [9384] = {.lex_state = 0}, - [9385] = {.lex_state = 1044}, - [9386] = {.lex_state = 1044}, + [9385] = {.lex_state = 0}, + [9386] = {.lex_state = 0}, [9387] = {.lex_state = 0}, [9388] = {.lex_state = 0}, - [9389] = {.lex_state = 1044}, - [9390] = {.lex_state = 1044}, + [9389] = {.lex_state = 0}, + [9390] = {.lex_state = 0}, [9391] = {.lex_state = 0}, - [9392] = {.lex_state = 0}, + [9392] = {.lex_state = 275}, [9393] = {.lex_state = 0}, [9394] = {.lex_state = 0}, [9395] = {.lex_state = 0}, - [9396] = {.lex_state = 0}, + [9396] = {.lex_state = 0, .external_lex_state = 2}, [9397] = {.lex_state = 0}, - [9398] = {.lex_state = 656}, + [9398] = {.lex_state = 0}, [9399] = {.lex_state = 0}, - [9400] = {.lex_state = 1044}, - [9401] = {.lex_state = 1044}, - [9402] = {.lex_state = 0}, - [9403] = {.lex_state = 290}, - [9404] = {.lex_state = 657}, - [9405] = {.lex_state = 1044}, + [9400] = {.lex_state = 0}, + [9401] = {.lex_state = 151}, + [9402] = {.lex_state = 499}, + [9403] = {.lex_state = 0}, + [9404] = {.lex_state = 0}, + [9405] = {.lex_state = 0}, [9406] = {.lex_state = 0}, - [9407] = {.lex_state = 1044}, + [9407] = {.lex_state = 499}, [9408] = {.lex_state = 0}, [9409] = {.lex_state = 0}, - [9410] = {.lex_state = 656}, + [9410] = {.lex_state = 320}, [9411] = {.lex_state = 0}, [9412] = {.lex_state = 0}, - [9413] = {.lex_state = 1044}, - [9414] = {.lex_state = 1044}, - [9415] = {.lex_state = 0}, - [9416] = {.lex_state = 657}, - [9417] = {.lex_state = 1044}, + [9413] = {.lex_state = 320}, + [9414] = {.lex_state = 0}, + [9415] = {.lex_state = 502}, + [9416] = {.lex_state = 320}, + [9417] = {.lex_state = 0}, [9418] = {.lex_state = 0}, - [9419] = {.lex_state = 0}, - [9420] = {.lex_state = 657}, + [9419] = {.lex_state = 0, .external_lex_state = 2}, + [9420] = {.lex_state = 151}, [9421] = {.lex_state = 0}, - [9422] = {.lex_state = 531}, - [9423] = {.lex_state = 0}, - [9424] = {.lex_state = 656}, - [9425] = {.lex_state = 1044}, - [9426] = {.lex_state = 531}, + [9422] = {.lex_state = 0}, + [9423] = {.lex_state = 151}, + [9424] = {.lex_state = 0}, + [9425] = {.lex_state = 275}, + [9426] = {.lex_state = 499}, [9427] = {.lex_state = 0}, - [9428] = {.lex_state = 656}, - [9429] = {.lex_state = 531}, - [9430] = {.lex_state = 1044}, + [9428] = {.lex_state = 0}, + [9429] = {.lex_state = 275}, + [9430] = {.lex_state = 0}, [9431] = {.lex_state = 0}, - [9432] = {.lex_state = 656}, - [9433] = {.lex_state = 1044}, - [9434] = {.lex_state = 1044}, - [9435] = {.lex_state = 657}, - [9436] = {.lex_state = 1044}, + [9432] = {.lex_state = 275}, + [9433] = {.lex_state = 0}, + [9434] = {.lex_state = 0, .external_lex_state = 2}, + [9435] = {.lex_state = 0}, + [9436] = {.lex_state = 502}, [9437] = {.lex_state = 0}, - [9438] = {.lex_state = 656}, - [9439] = {.lex_state = 1044}, + [9438] = {.lex_state = 499}, + [9439] = {.lex_state = 0}, [9440] = {.lex_state = 0}, - [9441] = {.lex_state = 531}, - [9442] = {.lex_state = 656}, - [9443] = {.lex_state = 0}, - [9444] = {.lex_state = 1044}, - [9445] = {.lex_state = 0}, + [9441] = {.lex_state = 0, .external_lex_state = 2}, + [9442] = {.lex_state = 0}, + [9443] = {.lex_state = 275}, + [9444] = {.lex_state = 275}, + [9445] = {.lex_state = 499}, [9446] = {.lex_state = 0}, - [9447] = {.lex_state = 0}, - [9448] = {.lex_state = 656}, + [9447] = {.lex_state = 320}, + [9448] = {.lex_state = 0, .external_lex_state = 2}, [9449] = {.lex_state = 0}, - [9450] = {.lex_state = 657}, - [9451] = {.lex_state = 1044}, - [9452] = {.lex_state = 0}, + [9450] = {.lex_state = 320}, + [9451] = {.lex_state = 0}, + [9452] = {.lex_state = 499}, [9453] = {.lex_state = 0}, - [9454] = {.lex_state = 0}, - [9455] = {.lex_state = 1044}, - [9456] = {.lex_state = 290}, + [9454] = {.lex_state = 0, .external_lex_state = 2}, + [9455] = {.lex_state = 0}, + [9456] = {.lex_state = 320}, [9457] = {.lex_state = 0}, - [9458] = {.lex_state = 1044}, - [9459] = {.lex_state = 656}, + [9458] = {.lex_state = 0}, + [9459] = {.lex_state = 0, .external_lex_state = 2}, [9460] = {.lex_state = 0}, [9461] = {.lex_state = 0}, - [9462] = {.lex_state = 1044}, + [9462] = {.lex_state = 0, .external_lex_state = 2}, [9463] = {.lex_state = 0}, - [9464] = {.lex_state = 0}, - [9465] = {.lex_state = 656}, - [9466] = {.lex_state = 0}, + [9464] = {.lex_state = 0, .external_lex_state = 2}, + [9465] = {.lex_state = 0}, + [9466] = {.lex_state = 0, .external_lex_state = 2}, [9467] = {.lex_state = 0}, - [9468] = {.lex_state = 0}, - [9469] = {.lex_state = 531}, - [9470] = {.lex_state = 1044}, + [9468] = {.lex_state = 0, .external_lex_state = 2}, + [9469] = {.lex_state = 0}, + [9470] = {.lex_state = 0, .external_lex_state = 2}, [9471] = {.lex_state = 0}, - [9472] = {.lex_state = 0}, - [9473] = {.lex_state = 531}, - [9474] = {.lex_state = 290}, - [9475] = {.lex_state = 657}, - [9476] = {.lex_state = 0}, - [9477] = {.lex_state = 656}, - [9478] = {.lex_state = 0}, - [9479] = {.lex_state = 0}, - [9480] = {.lex_state = 1044}, - [9481] = {.lex_state = 0}, - [9482] = {.lex_state = 656}, - [9483] = {.lex_state = 0}, - [9484] = {.lex_state = 1044}, + [9472] = {.lex_state = 0, .external_lex_state = 2}, + [9473] = {.lex_state = 0}, + [9474] = {.lex_state = 0, .external_lex_state = 2}, + [9475] = {.lex_state = 0}, + [9476] = {.lex_state = 0, .external_lex_state = 2}, + [9477] = {.lex_state = 320}, + [9478] = {.lex_state = 275}, + [9479] = {.lex_state = 320}, + [9480] = {.lex_state = 499}, + [9481] = {.lex_state = 499}, + [9482] = {.lex_state = 499}, + [9483] = {.lex_state = 499}, + [9484] = {.lex_state = 0}, [9485] = {.lex_state = 0}, - [9486] = {.lex_state = 0}, + [9486] = {.lex_state = 499}, [9487] = {.lex_state = 0}, - [9488] = {.lex_state = 0}, - [9489] = {.lex_state = 0}, - [9490] = {.lex_state = 656}, - [9491] = {.lex_state = 0}, - [9492] = {.lex_state = 1044}, - [9493] = {.lex_state = 656}, - [9494] = {.lex_state = 1044}, - [9495] = {.lex_state = 0}, - [9496] = {.lex_state = 656}, - [9497] = {.lex_state = 290}, - [9498] = {.lex_state = 656}, - [9499] = {.lex_state = 0}, - [9500] = {.lex_state = 1044}, - [9501] = {.lex_state = 290}, - [9502] = {.lex_state = 0}, - [9503] = {.lex_state = 0}, + [9488] = {.lex_state = 499}, + [9489] = {.lex_state = 499}, + [9490] = {.lex_state = 320}, + [9491] = {.lex_state = 320}, + [9492] = {.lex_state = 0}, + [9493] = {.lex_state = 0}, + [9494] = {.lex_state = 0, .external_lex_state = 3}, + [9495] = {.lex_state = 151}, + [9496] = {.lex_state = 275}, + [9497] = {.lex_state = 275}, + [9498] = {.lex_state = 151}, + [9499] = {.lex_state = 275}, + [9500] = {.lex_state = 320}, + [9501] = {.lex_state = 0}, + [9502] = {.lex_state = 275}, + [9503] = {.lex_state = 320}, [9504] = {.lex_state = 0}, - [9505] = {.lex_state = 656}, - [9506] = {.lex_state = 0}, - [9507] = {.lex_state = 1044}, + [9505] = {.lex_state = 320}, + [9506] = {.lex_state = 320}, + [9507] = {.lex_state = 0}, [9508] = {.lex_state = 0}, [9509] = {.lex_state = 0}, - [9510] = {.lex_state = 656}, - [9511] = {.lex_state = 1044}, - [9512] = {.lex_state = 0}, - [9513] = {.lex_state = 0}, - [9514] = {.lex_state = 0}, + [9510] = {.lex_state = 0}, + [9511] = {.lex_state = 0}, + [9512] = {.lex_state = 499}, + [9513] = {.lex_state = 0, .external_lex_state = 3}, + [9514] = {.lex_state = 275}, [9515] = {.lex_state = 0}, - [9516] = {.lex_state = 656}, - [9517] = {.lex_state = 0}, - [9518] = {.lex_state = 1044}, - [9519] = {.lex_state = 656}, + [9516] = {.lex_state = 0}, + [9517] = {.lex_state = 499}, + [9518] = {.lex_state = 0}, + [9519] = {.lex_state = 0}, [9520] = {.lex_state = 0}, - [9521] = {.lex_state = 1044}, - [9522] = {.lex_state = 656}, - [9523] = {.lex_state = 657}, - [9524] = {.lex_state = 1044}, - [9525] = {.lex_state = 1044}, - [9526] = {.lex_state = 1044}, - [9527] = {.lex_state = 1044}, - [9528] = {.lex_state = 1044}, - [9529] = {.lex_state = 531}, - [9530] = {.lex_state = 0}, - [9531] = {.lex_state = 657}, - [9532] = {.lex_state = 531}, - [9533] = {.lex_state = 0}, - [9534] = {.lex_state = 1044}, + [9521] = {.lex_state = 0}, + [9522] = {.lex_state = 0}, + [9523] = {.lex_state = 0}, + [9524] = {.lex_state = 499}, + [9525] = {.lex_state = 0}, + [9526] = {.lex_state = 0}, + [9527] = {.lex_state = 151}, + [9528] = {.lex_state = 0}, + [9529] = {.lex_state = 499}, + [9530] = {.lex_state = 320}, + [9531] = {.lex_state = 275}, + [9532] = {.lex_state = 0}, + [9533] = {.lex_state = 275}, + [9534] = {.lex_state = 0}, [9535] = {.lex_state = 0}, - [9536] = {.lex_state = 0}, + [9536] = {.lex_state = 151}, [9537] = {.lex_state = 0}, - [9538] = {.lex_state = 0}, - [9539] = {.lex_state = 656}, + [9538] = {.lex_state = 499}, + [9539] = {.lex_state = 275}, [9540] = {.lex_state = 0}, [9541] = {.lex_state = 0}, [9542] = {.lex_state = 0}, [9543] = {.lex_state = 0}, [9544] = {.lex_state = 0}, [9545] = {.lex_state = 0}, - [9546] = {.lex_state = 0}, - [9547] = {.lex_state = 0}, - [9548] = {.lex_state = 1044}, - [9549] = {.lex_state = 290}, + [9546] = {.lex_state = 499}, + [9547] = {.lex_state = 275}, + [9548] = {.lex_state = 151}, + [9549] = {.lex_state = 0}, [9550] = {.lex_state = 0}, - [9551] = {.lex_state = 657}, - [9552] = {.lex_state = 531}, + [9551] = {.lex_state = 0}, + [9552] = {.lex_state = 275}, [9553] = {.lex_state = 0}, - [9554] = {.lex_state = 290}, - [9555] = {.lex_state = 657}, - [9556] = {.lex_state = 656}, - [9557] = {.lex_state = 0}, - [9558] = {.lex_state = 0}, - [9559] = {.lex_state = 531}, - [9560] = {.lex_state = 657}, - [9561] = {.lex_state = 290}, + [9554] = {.lex_state = 0}, + [9555] = {.lex_state = 0}, + [9556] = {.lex_state = 0}, + [9557] = {.lex_state = 502}, + [9558] = {.lex_state = 275}, + [9559] = {.lex_state = 0}, + [9560] = {.lex_state = 320}, + [9561] = {.lex_state = 0}, [9562] = {.lex_state = 0}, [9563] = {.lex_state = 0}, [9564] = {.lex_state = 0}, - [9565] = {.lex_state = 531}, + [9565] = {.lex_state = 275}, [9566] = {.lex_state = 0}, - [9567] = {.lex_state = 657}, + [9567] = {.lex_state = 0}, [9568] = {.lex_state = 0}, [9569] = {.lex_state = 0}, - [9570] = {.lex_state = 0}, + [9570] = {.lex_state = 151}, [9571] = {.lex_state = 0}, [9572] = {.lex_state = 0}, - [9573] = {.lex_state = 657}, - [9574] = {.lex_state = 0}, - [9575] = {.lex_state = 290}, - [9576] = {.lex_state = 0}, - [9577] = {.lex_state = 0}, - [9578] = {.lex_state = 0}, + [9573] = {.lex_state = 0}, + [9574] = {.lex_state = 275}, + [9575] = {.lex_state = 0}, + [9576] = {.lex_state = 320}, + [9577] = {.lex_state = 275}, + [9578] = {.lex_state = 275}, [9579] = {.lex_state = 0}, - [9580] = {.lex_state = 0}, - [9581] = {.lex_state = 0}, - [9582] = {.lex_state = 0}, - [9583] = {.lex_state = 0}, - [9584] = {.lex_state = 0}, + [9580] = {.lex_state = 275}, + [9581] = {.lex_state = 275}, + [9582] = {.lex_state = 499}, + [9583] = {.lex_state = 275}, + [9584] = {.lex_state = 275}, [9585] = {.lex_state = 0}, [9586] = {.lex_state = 0}, - [9587] = {.lex_state = 1044, .external_lex_state = 2}, - [9588] = {.lex_state = 0}, - [9589] = {.lex_state = 531}, - [9590] = {.lex_state = 656}, - [9591] = {.lex_state = 0}, - [9592] = {.lex_state = 531}, + [9587] = {.lex_state = 0}, + [9588] = {.lex_state = 151}, + [9589] = {.lex_state = 0}, + [9590] = {.lex_state = 320}, + [9591] = {.lex_state = 151}, + [9592] = {.lex_state = 320}, [9593] = {.lex_state = 0}, - [9594] = {.lex_state = 0}, - [9595] = {.lex_state = 0}, - [9596] = {.lex_state = 0}, - [9597] = {.lex_state = 0}, - [9598] = {.lex_state = 657}, + [9594] = {.lex_state = 151}, + [9595] = {.lex_state = 275}, + [9596] = {.lex_state = 275}, + [9597] = {.lex_state = 275}, + [9598] = {.lex_state = 0}, [9599] = {.lex_state = 0}, - [9600] = {.lex_state = 531}, - [9601] = {.lex_state = 290}, - [9602] = {.lex_state = 0}, - [9603] = {.lex_state = 1044, .external_lex_state = 2}, - [9604] = {.lex_state = 1044, .external_lex_state = 2}, - [9605] = {.lex_state = 531}, - [9606] = {.lex_state = 657}, - [9607] = {.lex_state = 1044, .external_lex_state = 2}, - [9608] = {.lex_state = 0}, - [9609] = {.lex_state = 1044, .external_lex_state = 2}, + [9600] = {.lex_state = 320}, + [9601] = {.lex_state = 0}, + [9602] = {.lex_state = 275}, + [9603] = {.lex_state = 320}, + [9604] = {.lex_state = 0}, + [9605] = {.lex_state = 0}, + [9606] = {.lex_state = 151}, + [9607] = {.lex_state = 0}, + [9608] = {.lex_state = 275}, + [9609] = {.lex_state = 320}, [9610] = {.lex_state = 0}, - [9611] = {.lex_state = 1044, .external_lex_state = 2}, - [9612] = {.lex_state = 0}, + [9611] = {.lex_state = 0}, + [9612] = {.lex_state = 320}, [9613] = {.lex_state = 0}, - [9614] = {.lex_state = 1044, .external_lex_state = 2}, - [9615] = {.lex_state = 1044, .external_lex_state = 2}, - [9616] = {.lex_state = 1044, .external_lex_state = 2}, - [9617] = {.lex_state = 290}, - [9618] = {.lex_state = 1044, .external_lex_state = 2}, - [9619] = {.lex_state = 1044, .external_lex_state = 2}, - [9620] = {.lex_state = 1044, .external_lex_state = 2}, - [9621] = {.lex_state = 1044, .external_lex_state = 2}, - [9622] = {.lex_state = 1044, .external_lex_state = 2}, - [9623] = {.lex_state = 1044, .external_lex_state = 2}, - [9624] = {.lex_state = 1044, .external_lex_state = 2}, - [9625] = {.lex_state = 1044, .external_lex_state = 2}, - [9626] = {.lex_state = 1044, .external_lex_state = 2}, - [9627] = {.lex_state = 1044, .external_lex_state = 2}, - [9628] = {.lex_state = 1044, .external_lex_state = 2}, - [9629] = {.lex_state = 1044, .external_lex_state = 2}, - [9630] = {.lex_state = 0}, - [9631] = {.lex_state = 0}, - [9632] = {.lex_state = 531}, - [9633] = {.lex_state = 656}, - [9634] = {.lex_state = 656}, - [9635] = {.lex_state = 656}, + [9614] = {.lex_state = 275}, + [9615] = {.lex_state = 0}, + [9616] = {.lex_state = 0}, + [9617] = {.lex_state = 0}, + [9618] = {.lex_state = 499}, + [9619] = {.lex_state = 0}, + [9620] = {.lex_state = 499}, + [9621] = {.lex_state = 320}, + [9622] = {.lex_state = 0}, + [9623] = {.lex_state = 0}, + [9624] = {.lex_state = 0}, + [9625] = {.lex_state = 0}, + [9626] = {.lex_state = 0}, + [9627] = {.lex_state = 0}, + [9628] = {.lex_state = 275}, + [9629] = {.lex_state = 0}, + [9630] = {.lex_state = 499}, + [9631] = {.lex_state = 499}, + [9632] = {.lex_state = 0}, + [9633] = {.lex_state = 0}, + [9634] = {.lex_state = 0}, + [9635] = {.lex_state = 151}, [9636] = {.lex_state = 0}, - [9637] = {.lex_state = 0}, - [9638] = {.lex_state = 656}, - [9639] = {.lex_state = 531}, - [9640] = {.lex_state = 531}, - [9641] = {.lex_state = 656}, + [9637] = {.lex_state = 499}, + [9638] = {.lex_state = 320}, + [9639] = {.lex_state = 0}, + [9640] = {.lex_state = 151}, + [9641] = {.lex_state = 320}, [9642] = {.lex_state = 0}, [9643] = {.lex_state = 0}, [9644] = {.lex_state = 0}, - [9645] = {.lex_state = 0}, - [9646] = {.lex_state = 0}, + [9645] = {.lex_state = 499}, + [9646] = {.lex_state = 499}, [9647] = {.lex_state = 0}, - [9648] = {.lex_state = 1046}, + [9648] = {.lex_state = 0}, [9649] = {.lex_state = 0}, - [9650] = {.lex_state = 656}, - [9651] = {.lex_state = 0}, + [9650] = {.lex_state = 0}, + [9651] = {.lex_state = 320}, [9652] = {.lex_state = 0}, [9653] = {.lex_state = 0}, [9654] = {.lex_state = 0}, [9655] = {.lex_state = 0}, - [9656] = {.lex_state = 490}, + [9656] = {.lex_state = 320}, [9657] = {.lex_state = 0}, [9658] = {.lex_state = 0}, [9659] = {.lex_state = 0}, - [9660] = {.lex_state = 291}, + [9660] = {.lex_state = 0}, [9661] = {.lex_state = 0}, [9662] = {.lex_state = 0}, - [9663] = {.lex_state = 1044}, + [9663] = {.lex_state = 0}, [9664] = {.lex_state = 0}, [9665] = {.lex_state = 0}, - [9666] = {.lex_state = 291}, + [9666] = {.lex_state = 0}, [9667] = {.lex_state = 0}, - [9668] = {.lex_state = 656}, - [9669] = {.lex_state = 656}, - [9670] = {.lex_state = 656}, - [9671] = {.lex_state = 0}, + [9668] = {.lex_state = 502}, + [9669] = {.lex_state = 0}, + [9670] = {.lex_state = 0}, + [9671] = {.lex_state = 320}, [9672] = {.lex_state = 0}, [9673] = {.lex_state = 0}, [9674] = {.lex_state = 0}, [9675] = {.lex_state = 0}, - [9676] = {.lex_state = 656}, + [9676] = {.lex_state = 0}, [9677] = {.lex_state = 0}, [9678] = {.lex_state = 0}, - [9679] = {.lex_state = 0}, - [9680] = {.lex_state = 1044}, - [9681] = {.lex_state = 490}, - [9682] = {.lex_state = 0}, - [9683] = {.lex_state = 0}, - [9684] = {.lex_state = 291}, - [9685] = {.lex_state = 1046}, - [9686] = {.lex_state = 291}, + [9679] = {.lex_state = 499}, + [9680] = {.lex_state = 499}, + [9681] = {.lex_state = 499}, + [9682] = {.lex_state = 320}, + [9683] = {.lex_state = 499}, + [9684] = {.lex_state = 0}, + [9685] = {.lex_state = 0}, + [9686] = {.lex_state = 0}, [9687] = {.lex_state = 0}, - [9688] = {.lex_state = 0}, - [9689] = {.lex_state = 1046}, + [9688] = {.lex_state = 320}, + [9689] = {.lex_state = 0}, [9690] = {.lex_state = 0}, [9691] = {.lex_state = 0}, - [9692] = {.lex_state = 490}, - [9693] = {.lex_state = 0}, - [9694] = {.lex_state = 490}, - [9695] = {.lex_state = 0}, + [9692] = {.lex_state = 320}, + [9693] = {.lex_state = 499}, + [9694] = {.lex_state = 0, .external_lex_state = 3}, + [9695] = {.lex_state = 499}, [9696] = {.lex_state = 0}, [9697] = {.lex_state = 0}, - [9698] = {.lex_state = 291}, - [9699] = {.lex_state = 0}, - [9700] = {.lex_state = 0}, + [9698] = {.lex_state = 0}, + [9699] = {.lex_state = 320}, + [9700] = {.lex_state = 320}, [9701] = {.lex_state = 0}, - [9702] = {.lex_state = 656}, - [9703] = {.lex_state = 0, .external_lex_state = 2}, - [9704] = {.lex_state = 0}, - [9705] = {.lex_state = 490}, - [9706] = {.lex_state = 0}, - [9707] = {.lex_state = 0}, - [9708] = {.lex_state = 0}, - [9709] = {.lex_state = 0}, - [9710] = {.lex_state = 0}, - [9711] = {.lex_state = 0}, - [9712] = {.lex_state = 0}, - [9713] = {.lex_state = 0}, + [9702] = {.lex_state = 0}, + [9703] = {.lex_state = 502}, + [9704] = {.lex_state = 275}, + [9705] = {.lex_state = 0}, + [9706] = {.lex_state = 499}, + [9707] = {.lex_state = 499}, + [9708] = {.lex_state = 320}, + [9709] = {.lex_state = 499}, + [9710] = {.lex_state = 275}, + [9711] = {.lex_state = 275}, + [9712] = {.lex_state = 320}, + [9713] = {.lex_state = 320}, [9714] = {.lex_state = 0}, - [9715] = {.lex_state = 490}, - [9716] = {.lex_state = 0}, - [9717] = {.lex_state = 656}, - [9718] = {.lex_state = 656}, - [9719] = {.lex_state = 656}, + [9715] = {.lex_state = 0}, + [9716] = {.lex_state = 499}, + [9717] = {.lex_state = 0, .external_lex_state = 3}, + [9718] = {.lex_state = 0}, + [9719] = {.lex_state = 0}, [9720] = {.lex_state = 0}, [9721] = {.lex_state = 0}, - [9722] = {.lex_state = 0}, + [9722] = {.lex_state = 320}, [9723] = {.lex_state = 0}, - [9724] = {.lex_state = 0}, + [9724] = {.lex_state = 502}, [9725] = {.lex_state = 0}, [9726] = {.lex_state = 0}, - [9727] = {.lex_state = 0}, - [9728] = {.lex_state = 656}, - [9729] = {.lex_state = 1044}, - [9730] = {.lex_state = 0}, - [9731] = {.lex_state = 0}, + [9727] = {.lex_state = 499}, + [9728] = {.lex_state = 499}, + [9729] = {.lex_state = 0}, + [9730] = {.lex_state = 499}, + [9731] = {.lex_state = 151}, [9732] = {.lex_state = 0}, - [9733] = {.lex_state = 490}, + [9733] = {.lex_state = 320}, [9734] = {.lex_state = 0}, - [9735] = {.lex_state = 0}, - [9736] = {.lex_state = 656}, - [9737] = {.lex_state = 1044}, - [9738] = {.lex_state = 0}, - [9739] = {.lex_state = 656}, + [9735] = {.lex_state = 151}, + [9736] = {.lex_state = 0}, + [9737] = {.lex_state = 499}, + [9738] = {.lex_state = 0, .external_lex_state = 3}, + [9739] = {.lex_state = 0}, [9740] = {.lex_state = 0}, [9741] = {.lex_state = 0}, [9742] = {.lex_state = 0}, - [9743] = {.lex_state = 490}, - [9744] = {.lex_state = 656}, - [9745] = {.lex_state = 656}, - [9746] = {.lex_state = 0}, - [9747] = {.lex_state = 490}, + [9743] = {.lex_state = 0}, + [9744] = {.lex_state = 502}, + [9745] = {.lex_state = 320}, + [9746] = {.lex_state = 499}, + [9747] = {.lex_state = 499}, [9748] = {.lex_state = 0}, - [9749] = {.lex_state = 0}, - [9750] = {.lex_state = 0}, - [9751] = {.lex_state = 291}, - [9752] = {.lex_state = 0}, + [9749] = {.lex_state = 499}, + [9750] = {.lex_state = 320}, + [9751] = {.lex_state = 0}, + [9752] = {.lex_state = 320}, [9753] = {.lex_state = 0}, - [9754] = {.lex_state = 0}, - [9755] = {.lex_state = 0}, - [9756] = {.lex_state = 1044}, - [9757] = {.lex_state = 656}, - [9758] = {.lex_state = 656}, + [9754] = {.lex_state = 151}, + [9755] = {.lex_state = 499}, + [9756] = {.lex_state = 0, .external_lex_state = 3}, + [9757] = {.lex_state = 0}, + [9758] = {.lex_state = 0}, [9759] = {.lex_state = 0}, - [9760] = {.lex_state = 531}, - [9761] = {.lex_state = 656}, - [9762] = {.lex_state = 656}, + [9760] = {.lex_state = 0}, + [9761] = {.lex_state = 0}, + [9762] = {.lex_state = 502}, [9763] = {.lex_state = 0}, - [9764] = {.lex_state = 0}, - [9765] = {.lex_state = 0}, + [9764] = {.lex_state = 499}, + [9765] = {.lex_state = 499}, [9766] = {.lex_state = 0}, - [9767] = {.lex_state = 0}, - [9768] = {.lex_state = 656}, - [9769] = {.lex_state = 490}, - [9770] = {.lex_state = 0}, - [9771] = {.lex_state = 490}, - [9772] = {.lex_state = 490}, - [9773] = {.lex_state = 531}, + [9767] = {.lex_state = 499}, + [9768] = {.lex_state = 0}, + [9769] = {.lex_state = 0}, + [9770] = {.lex_state = 275}, + [9771] = {.lex_state = 0}, + [9772] = {.lex_state = 499}, + [9773] = {.lex_state = 0, .external_lex_state = 3}, [9774] = {.lex_state = 0}, [9775] = {.lex_state = 0}, - [9776] = {.lex_state = 0}, - [9777] = {.lex_state = 0}, + [9776] = {.lex_state = 0, .external_lex_state = 2}, + [9777] = {.lex_state = 275}, [9778] = {.lex_state = 0}, - [9779] = {.lex_state = 0}, - [9780] = {.lex_state = 656}, - [9781] = {.lex_state = 0}, - [9782] = {.lex_state = 0}, - [9783] = {.lex_state = 0}, - [9784] = {.lex_state = 0}, + [9779] = {.lex_state = 502}, + [9780] = {.lex_state = 0}, + [9781] = {.lex_state = 499}, + [9782] = {.lex_state = 499}, + [9783] = {.lex_state = 499}, + [9784] = {.lex_state = 499}, [9785] = {.lex_state = 0}, [9786] = {.lex_state = 0}, [9787] = {.lex_state = 0}, [9788] = {.lex_state = 0}, - [9789] = {.lex_state = 1044}, - [9790] = {.lex_state = 0, .external_lex_state = 2}, + [9789] = {.lex_state = 499}, + [9790] = {.lex_state = 0, .external_lex_state = 3}, [9791] = {.lex_state = 0}, [9792] = {.lex_state = 0}, - [9793] = {.lex_state = 291}, - [9794] = {.lex_state = 490}, - [9795] = {.lex_state = 656}, - [9796] = {.lex_state = 656}, - [9797] = {.lex_state = 656}, - [9798] = {.lex_state = 0}, - [9799] = {.lex_state = 656}, + [9793] = {.lex_state = 502}, + [9794] = {.lex_state = 0}, + [9795] = {.lex_state = 0}, + [9796] = {.lex_state = 502}, + [9797] = {.lex_state = 0}, + [9798] = {.lex_state = 499}, + [9799] = {.lex_state = 499}, [9800] = {.lex_state = 0}, - [9801] = {.lex_state = 0}, - [9802] = {.lex_state = 531}, + [9801] = {.lex_state = 499}, + [9802] = {.lex_state = 0}, [9803] = {.lex_state = 0}, - [9804] = {.lex_state = 656}, + [9804] = {.lex_state = 502}, [9805] = {.lex_state = 0}, - [9806] = {.lex_state = 656}, - [9807] = {.lex_state = 0}, + [9806] = {.lex_state = 499}, + [9807] = {.lex_state = 0, .external_lex_state = 3}, [9808] = {.lex_state = 0}, - [9809] = {.lex_state = 531}, - [9810] = {.lex_state = 1044}, - [9811] = {.lex_state = 490}, - [9812] = {.lex_state = 291}, - [9813] = {.lex_state = 0}, - [9814] = {.lex_state = 1044}, - [9815] = {.lex_state = 0}, - [9816] = {.lex_state = 490}, + [9809] = {.lex_state = 275}, + [9810] = {.lex_state = 320}, + [9811] = {.lex_state = 0}, + [9812] = {.lex_state = 0}, + [9813] = {.lex_state = 502}, + [9814] = {.lex_state = 499}, + [9815] = {.lex_state = 499}, + [9816] = {.lex_state = 499}, [9817] = {.lex_state = 0}, - [9818] = {.lex_state = 0}, + [9818] = {.lex_state = 499}, [9819] = {.lex_state = 0}, - [9820] = {.lex_state = 0}, - [9821] = {.lex_state = 656}, + [9820] = {.lex_state = 151}, + [9821] = {.lex_state = 0, .external_lex_state = 3}, [9822] = {.lex_state = 0}, [9823] = {.lex_state = 0}, - [9824] = {.lex_state = 490}, - [9825] = {.lex_state = 291}, - [9826] = {.lex_state = 1044}, - [9827] = {.lex_state = 490}, - [9828] = {.lex_state = 0}, + [9824] = {.lex_state = 0}, + [9825] = {.lex_state = 0}, + [9826] = {.lex_state = 502}, + [9827] = {.lex_state = 320}, + [9828] = {.lex_state = 499}, [9829] = {.lex_state = 0}, - [9830] = {.lex_state = 1044}, - [9831] = {.lex_state = 656}, - [9832] = {.lex_state = 1046}, - [9833] = {.lex_state = 1044}, + [9830] = {.lex_state = 499}, + [9831] = {.lex_state = 151}, + [9832] = {.lex_state = 0}, + [9833] = {.lex_state = 0, .external_lex_state = 3}, [9834] = {.lex_state = 0}, [9835] = {.lex_state = 0}, - [9836] = {.lex_state = 0}, - [9837] = {.lex_state = 0}, - [9838] = {.lex_state = 0}, + [9836] = {.lex_state = 499}, + [9837] = {.lex_state = 499}, + [9838] = {.lex_state = 0, .external_lex_state = 3}, [9839] = {.lex_state = 0}, - [9840] = {.lex_state = 0}, - [9841] = {.lex_state = 0}, - [9842] = {.lex_state = 0}, - [9843] = {.lex_state = 656}, - [9844] = {.lex_state = 0}, - [9845] = {.lex_state = 0}, - [9846] = {.lex_state = 490}, + [9840] = {.lex_state = 499}, + [9841] = {.lex_state = 499}, + [9842] = {.lex_state = 0, .external_lex_state = 3}, + [9843] = {.lex_state = 0}, + [9844] = {.lex_state = 499}, + [9845] = {.lex_state = 499}, + [9846] = {.lex_state = 0, .external_lex_state = 3}, [9847] = {.lex_state = 0}, - [9848] = {.lex_state = 656}, - [9849] = {.lex_state = 0}, - [9850] = {.lex_state = 0}, + [9848] = {.lex_state = 499}, + [9849] = {.lex_state = 499}, + [9850] = {.lex_state = 0, .external_lex_state = 3}, [9851] = {.lex_state = 0}, - [9852] = {.lex_state = 0}, + [9852] = {.lex_state = 0, .external_lex_state = 3}, [9853] = {.lex_state = 0}, - [9854] = {.lex_state = 0}, - [9855] = {.lex_state = 1044}, - [9856] = {.lex_state = 0}, - [9857] = {.lex_state = 490}, - [9858] = {.lex_state = 0}, + [9854] = {.lex_state = 0, .external_lex_state = 3}, + [9855] = {.lex_state = 0}, + [9856] = {.lex_state = 0, .external_lex_state = 3}, + [9857] = {.lex_state = 0}, + [9858] = {.lex_state = 0, .external_lex_state = 3}, [9859] = {.lex_state = 0}, - [9860] = {.lex_state = 0}, + [9860] = {.lex_state = 0, .external_lex_state = 3}, [9861] = {.lex_state = 0}, - [9862] = {.lex_state = 0}, - [9863] = {.lex_state = 0, .external_lex_state = 2}, - [9864] = {.lex_state = 0}, + [9862] = {.lex_state = 0, .external_lex_state = 3}, + [9863] = {.lex_state = 0}, + [9864] = {.lex_state = 0, .external_lex_state = 3}, [9865] = {.lex_state = 0}, - [9866] = {.lex_state = 656}, - [9867] = {.lex_state = 490}, + [9866] = {.lex_state = 0, .external_lex_state = 3}, + [9867] = {.lex_state = 0}, [9868] = {.lex_state = 0}, - [9869] = {.lex_state = 0}, - [9870] = {.lex_state = 656}, - [9871] = {.lex_state = 0}, - [9872] = {.lex_state = 0}, - [9873] = {.lex_state = 490}, - [9874] = {.lex_state = 490}, + [9869] = {.lex_state = 275}, + [9870] = {.lex_state = 499}, + [9871] = {.lex_state = 499}, + [9872] = {.lex_state = 320}, + [9873] = {.lex_state = 0}, + [9874] = {.lex_state = 275}, [9875] = {.lex_state = 0}, [9876] = {.lex_state = 0}, [9877] = {.lex_state = 0}, - [9878] = {.lex_state = 531}, + [9878] = {.lex_state = 0}, [9879] = {.lex_state = 0}, [9880] = {.lex_state = 0}, - [9881] = {.lex_state = 656}, - [9882] = {.lex_state = 490}, + [9881] = {.lex_state = 0}, + [9882] = {.lex_state = 0}, [9883] = {.lex_state = 0}, - [9884] = {.lex_state = 490}, - [9885] = {.lex_state = 0}, - [9886] = {.lex_state = 490}, - [9887] = {.lex_state = 1044}, - [9888] = {.lex_state = 0}, - [9889] = {.lex_state = 656}, - [9890] = {.lex_state = 490}, - [9891] = {.lex_state = 0}, - [9892] = {.lex_state = 1046}, - [9893] = {.lex_state = 0}, - [9894] = {.lex_state = 656}, - [9895] = {.lex_state = 656}, - [9896] = {.lex_state = 291}, - [9897] = {.lex_state = 656}, - [9898] = {.lex_state = 0}, - [9899] = {.lex_state = 0}, - [9900] = {.lex_state = 656}, + [9884] = {.lex_state = 320}, + [9885] = {.lex_state = 275}, + [9886] = {.lex_state = 0}, + [9887] = {.lex_state = 320}, + [9888] = {.lex_state = 0, .external_lex_state = 3}, + [9889] = {.lex_state = 502}, + [9890] = {.lex_state = 0}, + [9891] = {.lex_state = 320}, + [9892] = {.lex_state = 0}, + [9893] = {.lex_state = 151}, + [9894] = {.lex_state = 0}, + [9895] = {.lex_state = 0}, + [9896] = {.lex_state = 0}, + [9897] = {.lex_state = 320}, + [9898] = {.lex_state = 275}, + [9899] = {.lex_state = 275}, + [9900] = {.lex_state = 0}, [9901] = {.lex_state = 0}, [9902] = {.lex_state = 0}, [9903] = {.lex_state = 0}, - [9904] = {.lex_state = 291}, - [9905] = {.lex_state = 1044}, + [9904] = {.lex_state = 0}, + [9905] = {.lex_state = 0}, [9906] = {.lex_state = 0}, - [9907] = {.lex_state = 531}, - [9908] = {.lex_state = 0}, - [9909] = {.lex_state = 0}, - [9910] = {.lex_state = 0}, - [9911] = {.lex_state = 656}, + [9907] = {.lex_state = 0}, + [9908] = {.lex_state = 320}, + [9909] = {.lex_state = 320}, + [9910] = {.lex_state = 320}, + [9911] = {.lex_state = 0}, [9912] = {.lex_state = 0}, [9913] = {.lex_state = 0}, - [9914] = {.lex_state = 0, .external_lex_state = 2}, + [9914] = {.lex_state = 320}, [9915] = {.lex_state = 0}, [9916] = {.lex_state = 0}, - [9917] = {.lex_state = 656}, + [9917] = {.lex_state = 320}, [9918] = {.lex_state = 0}, - [9919] = {.lex_state = 0}, - [9920] = {.lex_state = 531}, - [9921] = {.lex_state = 1044}, - [9922] = {.lex_state = 656}, - [9923] = {.lex_state = 0}, - [9924] = {.lex_state = 0}, + [9919] = {.lex_state = 320}, + [9920] = {.lex_state = 320}, + [9921] = {.lex_state = 320}, + [9922] = {.lex_state = 320}, + [9923] = {.lex_state = 499}, + [9924] = {.lex_state = 499}, [9925] = {.lex_state = 0}, - [9926] = {.lex_state = 656}, - [9927] = {.lex_state = 490}, + [9926] = {.lex_state = 0}, + [9927] = {.lex_state = 320}, [9928] = {.lex_state = 0}, - [9929] = {.lex_state = 291}, - [9930] = {.lex_state = 490}, - [9931] = {.lex_state = 490}, - [9932] = {.lex_state = 0}, - [9933] = {.lex_state = 1044}, - [9934] = {.lex_state = 291}, + [9929] = {.lex_state = 0}, + [9930] = {.lex_state = 320}, + [9931] = {.lex_state = 320}, + [9932] = {.lex_state = 151}, + [9933] = {.lex_state = 0}, + [9934] = {.lex_state = 0, .external_lex_state = 3}, [9935] = {.lex_state = 0}, [9936] = {.lex_state = 0}, [9937] = {.lex_state = 0}, [9938] = {.lex_state = 0}, - [9939] = {.lex_state = 656}, - [9940] = {.lex_state = 656}, - [9941] = {.lex_state = 291}, - [9942] = {.lex_state = 0}, - [9943] = {.lex_state = 0}, - [9944] = {.lex_state = 1044}, - [9945] = {.lex_state = 291}, + [9939] = {.lex_state = 499}, + [9940] = {.lex_state = 320}, + [9941] = {.lex_state = 151}, + [9942] = {.lex_state = 320}, + [9943] = {.lex_state = 151}, + [9944] = {.lex_state = 0}, + [9945] = {.lex_state = 0}, [9946] = {.lex_state = 0}, - [9947] = {.lex_state = 490}, - [9948] = {.lex_state = 490}, - [9949] = {.lex_state = 1044}, - [9950] = {.lex_state = 0}, - [9951] = {.lex_state = 0}, - [9952] = {.lex_state = 0}, + [9947] = {.lex_state = 275}, + [9948] = {.lex_state = 0}, + [9949] = {.lex_state = 499}, + [9950] = {.lex_state = 499}, + [9951] = {.lex_state = 320}, + [9952] = {.lex_state = 151}, [9953] = {.lex_state = 0}, - [9954] = {.lex_state = 490}, - [9955] = {.lex_state = 0}, - [9956] = {.lex_state = 0}, + [9954] = {.lex_state = 0}, + [9955] = {.lex_state = 320}, + [9956] = {.lex_state = 0, .external_lex_state = 3}, [9957] = {.lex_state = 0}, [9958] = {.lex_state = 0}, - [9959] = {.lex_state = 0, .external_lex_state = 2}, - [9960] = {.lex_state = 490}, - [9961] = {.lex_state = 0}, - [9962] = {.lex_state = 656}, - [9963] = {.lex_state = 291}, - [9964] = {.lex_state = 0}, - [9965] = {.lex_state = 0}, - [9966] = {.lex_state = 0}, - [9967] = {.lex_state = 490}, - [9968] = {.lex_state = 490}, - [9969] = {.lex_state = 490}, - [9970] = {.lex_state = 0}, - [9971] = {.lex_state = 656}, - [9972] = {.lex_state = 0}, + [9959] = {.lex_state = 275}, + [9960] = {.lex_state = 499}, + [9961] = {.lex_state = 499}, + [9962] = {.lex_state = 320}, + [9963] = {.lex_state = 499}, + [9964] = {.lex_state = 275}, + [9965] = {.lex_state = 320}, + [9966] = {.lex_state = 0, .external_lex_state = 3}, + [9967] = {.lex_state = 0}, + [9968] = {.lex_state = 0}, + [9969] = {.lex_state = 0}, + [9970] = {.lex_state = 499}, + [9971] = {.lex_state = 499}, + [9972] = {.lex_state = 320}, [9973] = {.lex_state = 0}, [9974] = {.lex_state = 0}, - [9975] = {.lex_state = 0}, - [9976] = {.lex_state = 656}, - [9977] = {.lex_state = 0}, - [9978] = {.lex_state = 1044}, + [9975] = {.lex_state = 320}, + [9976] = {.lex_state = 0, .external_lex_state = 3}, + [9977] = {.lex_state = 320}, + [9978] = {.lex_state = 0}, [9979] = {.lex_state = 0}, - [9980] = {.lex_state = 0}, - [9981] = {.lex_state = 0}, - [9982] = {.lex_state = 0}, - [9983] = {.lex_state = 490}, - [9984] = {.lex_state = 656}, - [9985] = {.lex_state = 0}, - [9986] = {.lex_state = 490}, - [9987] = {.lex_state = 0}, - [9988] = {.lex_state = 490}, - [9989] = {.lex_state = 0}, + [9980] = {.lex_state = 499}, + [9981] = {.lex_state = 320}, + [9982] = {.lex_state = 151}, + [9983] = {.lex_state = 0}, + [9984] = {.lex_state = 320}, + [9985] = {.lex_state = 0, .external_lex_state = 3}, + [9986] = {.lex_state = 499}, + [9987] = {.lex_state = 320}, + [9988] = {.lex_state = 499}, + [9989] = {.lex_state = 320}, [9990] = {.lex_state = 0}, [9991] = {.lex_state = 0}, - [9992] = {.lex_state = 0, .external_lex_state = 3}, - [9993] = {.lex_state = 0}, - [9994] = {.lex_state = 490}, - [9995] = {.lex_state = 0}, - [9996] = {.lex_state = 0}, - [9997] = {.lex_state = 0}, - [9998] = {.lex_state = 531}, + [9992] = {.lex_state = 320}, + [9993] = {.lex_state = 0, .external_lex_state = 3}, + [9994] = {.lex_state = 320}, + [9995] = {.lex_state = 275}, + [9996] = {.lex_state = 499}, + [9997] = {.lex_state = 320}, + [9998] = {.lex_state = 502}, [9999] = {.lex_state = 0}, - [10000] = {.lex_state = 0}, - [10001] = {.lex_state = 0}, - [10002] = {.lex_state = 0, .external_lex_state = 2}, - [10003] = {.lex_state = 0}, - [10004] = {.lex_state = 490}, - [10005] = {.lex_state = 656}, + [10000] = {.lex_state = 320}, + [10001] = {.lex_state = 0, .external_lex_state = 3}, + [10002] = {.lex_state = 0}, + [10003] = {.lex_state = 320}, + [10004] = {.lex_state = 499}, + [10005] = {.lex_state = 320}, [10006] = {.lex_state = 0}, - [10007] = {.lex_state = 656}, - [10008] = {.lex_state = 291}, - [10009] = {.lex_state = 0}, - [10010] = {.lex_state = 0}, + [10007] = {.lex_state = 0}, + [10008] = {.lex_state = 320}, + [10009] = {.lex_state = 0, .external_lex_state = 3}, + [10010] = {.lex_state = 499}, [10011] = {.lex_state = 0}, [10012] = {.lex_state = 0}, - [10013] = {.lex_state = 656}, - [10014] = {.lex_state = 0}, - [10015] = {.lex_state = 1044}, - [10016] = {.lex_state = 0}, - [10017] = {.lex_state = 656}, - [10018] = {.lex_state = 0}, - [10019] = {.lex_state = 0}, + [10013] = {.lex_state = 151}, + [10014] = {.lex_state = 320}, + [10015] = {.lex_state = 0, .external_lex_state = 3}, + [10016] = {.lex_state = 320}, + [10017] = {.lex_state = 0}, + [10018] = {.lex_state = 0, .external_lex_state = 2}, + [10019] = {.lex_state = 0, .external_lex_state = 3}, [10020] = {.lex_state = 0}, - [10021] = {.lex_state = 1044}, - [10022] = {.lex_state = 1044}, - [10023] = {.lex_state = 0}, + [10021] = {.lex_state = 0, .external_lex_state = 3}, + [10022] = {.lex_state = 0}, + [10023] = {.lex_state = 0, .external_lex_state = 3}, [10024] = {.lex_state = 0}, - [10025] = {.lex_state = 656}, - [10026] = {.lex_state = 0}, - [10027] = {.lex_state = 0}, + [10025] = {.lex_state = 0, .external_lex_state = 3}, + [10026] = {.lex_state = 499}, + [10027] = {.lex_state = 0, .external_lex_state = 3}, [10028] = {.lex_state = 0}, - [10029] = {.lex_state = 0}, - [10030] = {.lex_state = 490}, - [10031] = {.lex_state = 0}, + [10029] = {.lex_state = 0, .external_lex_state = 3}, + [10030] = {.lex_state = 0}, + [10031] = {.lex_state = 0, .external_lex_state = 3}, [10032] = {.lex_state = 0}, - [10033] = {.lex_state = 0}, - [10034] = {.lex_state = 0}, - [10035] = {.lex_state = 656}, - [10036] = {.lex_state = 291}, - [10037] = {.lex_state = 0}, - [10038] = {.lex_state = 0}, - [10039] = {.lex_state = 0}, - [10040] = {.lex_state = 656}, - [10041] = {.lex_state = 0}, - [10042] = {.lex_state = 490}, - [10043] = {.lex_state = 0, .external_lex_state = 2}, - [10044] = {.lex_state = 0}, - [10045] = {.lex_state = 1044}, - [10046] = {.lex_state = 0}, - [10047] = {.lex_state = 656}, - [10048] = {.lex_state = 0}, - [10049] = {.lex_state = 0}, - [10050] = {.lex_state = 656}, - [10051] = {.lex_state = 531}, - [10052] = {.lex_state = 656}, - [10053] = {.lex_state = 0}, - [10054] = {.lex_state = 1044}, + [10033] = {.lex_state = 0, .external_lex_state = 3}, + [10034] = {.lex_state = 275}, + [10035] = {.lex_state = 0, .external_lex_state = 3}, + [10036] = {.lex_state = 320}, + [10037] = {.lex_state = 0, .external_lex_state = 3}, + [10038] = {.lex_state = 320}, + [10039] = {.lex_state = 0, .external_lex_state = 3}, + [10040] = {.lex_state = 0}, + [10041] = {.lex_state = 0, .external_lex_state = 3}, + [10042] = {.lex_state = 0}, + [10043] = {.lex_state = 0, .external_lex_state = 3}, + [10044] = {.lex_state = 499}, + [10045] = {.lex_state = 499}, + [10046] = {.lex_state = 275}, + [10047] = {.lex_state = 499}, + [10048] = {.lex_state = 499}, + [10049] = {.lex_state = 151}, + [10050] = {.lex_state = 499}, + [10051] = {.lex_state = 499}, + [10052] = {.lex_state = 275}, + [10053] = {.lex_state = 499}, + [10054] = {.lex_state = 499}, [10055] = {.lex_state = 0}, - [10056] = {.lex_state = 291}, - [10057] = {.lex_state = 656}, + [10056] = {.lex_state = 499}, + [10057] = {.lex_state = 499}, [10058] = {.lex_state = 0}, - [10059] = {.lex_state = 1044}, - [10060] = {.lex_state = 0}, + [10059] = {.lex_state = 499}, + [10060] = {.lex_state = 499}, [10061] = {.lex_state = 0}, - [10062] = {.lex_state = 0}, - [10063] = {.lex_state = 0}, - [10064] = {.lex_state = 531}, - [10065] = {.lex_state = 0}, - [10066] = {.lex_state = 0, .external_lex_state = 2}, + [10062] = {.lex_state = 499}, + [10063] = {.lex_state = 499}, + [10064] = {.lex_state = 0}, + [10065] = {.lex_state = 499}, + [10066] = {.lex_state = 499}, [10067] = {.lex_state = 0}, - [10068] = {.lex_state = 0}, - [10069] = {.lex_state = 656}, + [10068] = {.lex_state = 499}, + [10069] = {.lex_state = 499}, [10070] = {.lex_state = 0}, - [10071] = {.lex_state = 0}, - [10072] = {.lex_state = 0}, - [10073] = {.lex_state = 0}, - [10074] = {.lex_state = 0}, - [10075] = {.lex_state = 0}, - [10076] = {.lex_state = 1044}, - [10077] = {.lex_state = 0}, - [10078] = {.lex_state = 0}, - [10079] = {.lex_state = 656}, - [10080] = {.lex_state = 0}, - [10081] = {.lex_state = 0}, - [10082] = {.lex_state = 0}, - [10083] = {.lex_state = 0}, - [10084] = {.lex_state = 0}, - [10085] = {.lex_state = 490}, - [10086] = {.lex_state = 1044}, - [10087] = {.lex_state = 0, .external_lex_state = 2}, + [10071] = {.lex_state = 499}, + [10072] = {.lex_state = 499}, + [10073] = {.lex_state = 499}, + [10074] = {.lex_state = 499}, + [10075] = {.lex_state = 499}, + [10076] = {.lex_state = 499}, + [10077] = {.lex_state = 499}, + [10078] = {.lex_state = 499}, + [10079] = {.lex_state = 499}, + [10080] = {.lex_state = 499}, + [10081] = {.lex_state = 499}, + [10082] = {.lex_state = 499}, + [10083] = {.lex_state = 499}, + [10084] = {.lex_state = 275}, + [10085] = {.lex_state = 0}, + [10086] = {.lex_state = 502}, + [10087] = {.lex_state = 0}, [10088] = {.lex_state = 0}, - [10089] = {.lex_state = 531}, - [10090] = {.lex_state = 0}, - [10091] = {.lex_state = 0}, + [10089] = {.lex_state = 0}, + [10090] = {.lex_state = 320}, + [10091] = {.lex_state = 320}, [10092] = {.lex_state = 0}, - [10093] = {.lex_state = 1046}, - [10094] = {.lex_state = 490}, - [10095] = {.lex_state = 490}, - [10096] = {.lex_state = 1046}, - [10097] = {.lex_state = 1044}, - [10098] = {.lex_state = 1046}, - [10099] = {.lex_state = 0}, - [10100] = {.lex_state = 656}, - [10101] = {.lex_state = 0}, + [10093] = {.lex_state = 499}, + [10094] = {.lex_state = 499}, + [10095] = {.lex_state = 499}, + [10096] = {.lex_state = 499}, + [10097] = {.lex_state = 499}, + [10098] = {.lex_state = 499}, + [10099] = {.lex_state = 499}, + [10100] = {.lex_state = 499}, + [10101] = {.lex_state = 499}, [10102] = {.lex_state = 0}, - [10103] = {.lex_state = 490}, - [10104] = {.lex_state = 0}, - [10105] = {.lex_state = 0}, - [10106] = {.lex_state = 0, .external_lex_state = 2}, - [10107] = {.lex_state = 490}, - [10108] = {.lex_state = 0}, - [10109] = {.lex_state = 0}, - [10110] = {.lex_state = 0}, - [10111] = {.lex_state = 0}, - [10112] = {.lex_state = 0}, - [10113] = {.lex_state = 1044}, - [10114] = {.lex_state = 0}, - [10115] = {.lex_state = 0}, - [10116] = {.lex_state = 0}, - [10117] = {.lex_state = 656}, - [10118] = {.lex_state = 0, .external_lex_state = 2}, - [10119] = {.lex_state = 0}, - [10120] = {.lex_state = 0}, - [10121] = {.lex_state = 291}, - [10122] = {.lex_state = 0}, - [10123] = {.lex_state = 1044}, - [10124] = {.lex_state = 0}, - [10125] = {.lex_state = 291}, - [10126] = {.lex_state = 0, .external_lex_state = 2}, - [10127] = {.lex_state = 490}, - [10128] = {.lex_state = 0}, - [10129] = {.lex_state = 1044}, - [10130] = {.lex_state = 490}, - [10131] = {.lex_state = 1044}, - [10132] = {.lex_state = 0}, - [10133] = {.lex_state = 0, .external_lex_state = 2}, - [10134] = {.lex_state = 0}, - [10135] = {.lex_state = 490}, - [10136] = {.lex_state = 291}, - [10137] = {.lex_state = 1044}, - [10138] = {.lex_state = 0}, - [10139] = {.lex_state = 0, .external_lex_state = 2}, - [10140] = {.lex_state = 490}, - [10141] = {.lex_state = 0}, - [10142] = {.lex_state = 0, .external_lex_state = 2}, - [10143] = {.lex_state = 0}, - [10144] = {.lex_state = 0}, - [10145] = {.lex_state = 0, .external_lex_state = 2}, - [10146] = {.lex_state = 0}, - [10147] = {.lex_state = 0}, - [10148] = {.lex_state = 0, .external_lex_state = 2}, - [10149] = {.lex_state = 0}, - [10150] = {.lex_state = 0}, - [10151] = {.lex_state = 0, .external_lex_state = 2}, - [10152] = {.lex_state = 0}, - [10153] = {.lex_state = 0, .external_lex_state = 2}, - [10154] = {.lex_state = 0}, - [10155] = {.lex_state = 0, .external_lex_state = 2}, - [10156] = {.lex_state = 0}, - [10157] = {.lex_state = 0, .external_lex_state = 2}, - [10158] = {.lex_state = 0}, - [10159] = {.lex_state = 0}, - [10160] = {.lex_state = 1044}, - [10161] = {.lex_state = 1044}, - [10162] = {.lex_state = 1044}, - [10163] = {.lex_state = 1044}, - [10164] = {.lex_state = 490}, - [10165] = {.lex_state = 1044}, - [10166] = {.lex_state = 1044}, - [10167] = {.lex_state = 0}, - [10168] = {.lex_state = 0}, - [10169] = {.lex_state = 0}, - [10170] = {.lex_state = 1046}, - [10171] = {.lex_state = 656}, - [10172] = {.lex_state = 0, .external_lex_state = 2}, - [10173] = {.lex_state = 656}, - [10174] = {.lex_state = 0}, - [10175] = {.lex_state = 1044}, - [10176] = {.lex_state = 0, .external_lex_state = 3}, - [10177] = {.lex_state = 0}, - [10178] = {.lex_state = 1044}, - [10179] = {.lex_state = 0}, - [10180] = {.lex_state = 0}, - [10181] = {.lex_state = 656}, - [10182] = {.lex_state = 0}, - [10183] = {.lex_state = 0}, - [10184] = {.lex_state = 0}, - [10185] = {.lex_state = 0}, - [10186] = {.lex_state = 490}, - [10187] = {.lex_state = 0}, - [10188] = {.lex_state = 0}, - [10189] = {.lex_state = 0}, - [10190] = {.lex_state = 0}, - [10191] = {.lex_state = 656}, - [10192] = {.lex_state = 0}, - [10193] = {.lex_state = 0}, - [10194] = {.lex_state = 531}, - [10195] = {.lex_state = 1044}, - [10196] = {.lex_state = 1044}, - [10197] = {.lex_state = 0}, - [10198] = {.lex_state = 0}, - [10199] = {.lex_state = 0}, - [10200] = {.lex_state = 0}, - [10201] = {.lex_state = 656}, - [10202] = {.lex_state = 0}, - [10203] = {.lex_state = 0}, - [10204] = {.lex_state = 656}, - [10205] = {.lex_state = 0}, - [10206] = {.lex_state = 1046}, - [10207] = {.lex_state = 0}, - [10208] = {.lex_state = 531}, - [10209] = {.lex_state = 0}, - [10210] = {.lex_state = 0}, - [10211] = {.lex_state = 0}, - [10212] = {.lex_state = 656}, - [10213] = {.lex_state = 656}, - [10214] = {.lex_state = 0}, - [10215] = {.lex_state = 0}, - [10216] = {.lex_state = 490}, - [10217] = {.lex_state = 0}, - [10218] = {.lex_state = 291}, - [10219] = {.lex_state = 0}, - [10220] = {.lex_state = 291}, - [10221] = {.lex_state = 0}, - [10222] = {.lex_state = 0}, - [10223] = {.lex_state = 0}, - [10224] = {.lex_state = 0}, - [10225] = {.lex_state = 490}, - [10226] = {.lex_state = 0}, - [10227] = {.lex_state = 490}, - [10228] = {.lex_state = 1044}, - [10229] = {.lex_state = 0}, - [10230] = {.lex_state = 656}, - [10231] = {.lex_state = 0}, - [10232] = {.lex_state = 291}, - [10233] = {.lex_state = 0}, - [10234] = {.lex_state = 0}, - [10235] = {.lex_state = 0}, - [10236] = {.lex_state = 531}, - [10237] = {.lex_state = 0}, - [10238] = {.lex_state = 1044}, - [10239] = {.lex_state = 1044}, - [10240] = {.lex_state = 1044}, - [10241] = {.lex_state = 1044}, - [10242] = {.lex_state = 1044}, - [10243] = {.lex_state = 0}, - [10244] = {.lex_state = 1044}, - [10245] = {.lex_state = 1044}, - [10246] = {.lex_state = 1044}, - [10247] = {.lex_state = 291}, - [10248] = {.lex_state = 656}, - [10249] = {.lex_state = 490}, - [10250] = {.lex_state = 656}, - [10251] = {.lex_state = 0}, - [10252] = {.lex_state = 1044}, - [10253] = {.lex_state = 0, .external_lex_state = 3}, - [10254] = {.lex_state = 1044}, - [10255] = {.lex_state = 0}, - [10256] = {.lex_state = 0}, - [10257] = {.lex_state = 0}, - [10258] = {.lex_state = 0}, - [10259] = {.lex_state = 531}, - [10260] = {.lex_state = 0}, - [10261] = {.lex_state = 1046}, - [10262] = {.lex_state = 490}, - [10263] = {.lex_state = 490}, - [10264] = {.lex_state = 1044}, - [10265] = {.lex_state = 1044}, - [10266] = {.lex_state = 1044}, - [10267] = {.lex_state = 0}, - [10268] = {.lex_state = 1044}, - [10269] = {.lex_state = 1044}, - [10270] = {.lex_state = 0}, - [10271] = {.lex_state = 490}, - [10272] = {.lex_state = 656}, - [10273] = {.lex_state = 0}, - [10274] = {.lex_state = 490}, - [10275] = {.lex_state = 0}, - [10276] = {.lex_state = 1044}, - [10277] = {.lex_state = 0, .external_lex_state = 3}, - [10278] = {.lex_state = 0}, - [10279] = {.lex_state = 0}, - [10280] = {.lex_state = 0}, - [10281] = {.lex_state = 0}, - [10282] = {.lex_state = 0}, - [10283] = {.lex_state = 0}, - [10284] = {.lex_state = 1046}, - [10285] = {.lex_state = 0}, - [10286] = {.lex_state = 490}, - [10287] = {.lex_state = 1044}, - [10288] = {.lex_state = 1044}, - [10289] = {.lex_state = 1044}, - [10290] = {.lex_state = 0}, - [10291] = {.lex_state = 1044}, - [10292] = {.lex_state = 1044}, - [10293] = {.lex_state = 0}, - [10294] = {.lex_state = 656}, - [10295] = {.lex_state = 656}, - [10296] = {.lex_state = 0}, - [10297] = {.lex_state = 0}, - [10298] = {.lex_state = 0}, - [10299] = {.lex_state = 1044}, - [10300] = {.lex_state = 0, .external_lex_state = 3}, - [10301] = {.lex_state = 0}, - [10302] = {.lex_state = 0}, - [10303] = {.lex_state = 0}, - [10304] = {.lex_state = 0}, - [10305] = {.lex_state = 0}, - [10306] = {.lex_state = 1046}, - [10307] = {.lex_state = 0}, - [10308] = {.lex_state = 1044}, - [10309] = {.lex_state = 1044}, - [10310] = {.lex_state = 0}, - [10311] = {.lex_state = 1044}, - [10312] = {.lex_state = 0}, - [10313] = {.lex_state = 656}, - [10314] = {.lex_state = 656}, - [10315] = {.lex_state = 0}, - [10316] = {.lex_state = 291}, - [10317] = {.lex_state = 1044}, - [10318] = {.lex_state = 0, .external_lex_state = 3}, - [10319] = {.lex_state = 0}, - [10320] = {.lex_state = 0}, - [10321] = {.lex_state = 0}, - [10322] = {.lex_state = 490}, - [10323] = {.lex_state = 0}, - [10324] = {.lex_state = 1046}, - [10325] = {.lex_state = 291}, - [10326] = {.lex_state = 1044}, - [10327] = {.lex_state = 1044}, - [10328] = {.lex_state = 0}, - [10329] = {.lex_state = 1044}, - [10330] = {.lex_state = 0}, - [10331] = {.lex_state = 291}, - [10332] = {.lex_state = 0}, - [10333] = {.lex_state = 0}, - [10334] = {.lex_state = 1044}, - [10335] = {.lex_state = 0, .external_lex_state = 3}, - [10336] = {.lex_state = 0}, - [10337] = {.lex_state = 490}, - [10338] = {.lex_state = 0}, - [10339] = {.lex_state = 0}, - [10340] = {.lex_state = 0}, - [10341] = {.lex_state = 1046}, - [10342] = {.lex_state = 490}, - [10343] = {.lex_state = 1044}, - [10344] = {.lex_state = 1044}, - [10345] = {.lex_state = 656}, - [10346] = {.lex_state = 1044}, - [10347] = {.lex_state = 490}, - [10348] = {.lex_state = 0}, - [10349] = {.lex_state = 490}, - [10350] = {.lex_state = 0}, - [10351] = {.lex_state = 1044}, - [10352] = {.lex_state = 0, .external_lex_state = 3}, - [10353] = {.lex_state = 0}, - [10354] = {.lex_state = 0}, - [10355] = {.lex_state = 0}, - [10356] = {.lex_state = 0}, - [10357] = {.lex_state = 0}, - [10358] = {.lex_state = 1046}, - [10359] = {.lex_state = 0}, - [10360] = {.lex_state = 1044}, - [10361] = {.lex_state = 1044}, - [10362] = {.lex_state = 0}, - [10363] = {.lex_state = 1044}, - [10364] = {.lex_state = 0}, - [10365] = {.lex_state = 0}, - [10366] = {.lex_state = 531}, - [10367] = {.lex_state = 0}, - [10368] = {.lex_state = 1044}, - [10369] = {.lex_state = 0, .external_lex_state = 3}, - [10370] = {.lex_state = 0}, - [10371] = {.lex_state = 1046}, - [10372] = {.lex_state = 0}, - [10373] = {.lex_state = 0}, - [10374] = {.lex_state = 0}, - [10375] = {.lex_state = 1046}, - [10376] = {.lex_state = 0}, - [10377] = {.lex_state = 1044}, - [10378] = {.lex_state = 1044}, - [10379] = {.lex_state = 0}, - [10380] = {.lex_state = 1044}, - [10381] = {.lex_state = 1044}, - [10382] = {.lex_state = 0}, - [10383] = {.lex_state = 0, .external_lex_state = 3}, - [10384] = {.lex_state = 0}, - [10385] = {.lex_state = 656}, - [10386] = {.lex_state = 531}, - [10387] = {.lex_state = 0}, - [10388] = {.lex_state = 1046}, - [10389] = {.lex_state = 291}, - [10390] = {.lex_state = 1044}, - [10391] = {.lex_state = 1044}, - [10392] = {.lex_state = 0}, - [10393] = {.lex_state = 1044}, - [10394] = {.lex_state = 0}, - [10395] = {.lex_state = 0}, - [10396] = {.lex_state = 0, .external_lex_state = 3}, - [10397] = {.lex_state = 0}, - [10398] = {.lex_state = 0}, - [10399] = {.lex_state = 0}, - [10400] = {.lex_state = 1046}, - [10401] = {.lex_state = 0}, - [10402] = {.lex_state = 1044}, - [10403] = {.lex_state = 1044}, - [10404] = {.lex_state = 0}, - [10405] = {.lex_state = 1044}, - [10406] = {.lex_state = 0}, - [10407] = {.lex_state = 0}, - [10408] = {.lex_state = 0, .external_lex_state = 3}, - [10409] = {.lex_state = 0}, - [10410] = {.lex_state = 0}, - [10411] = {.lex_state = 1046}, - [10412] = {.lex_state = 1044}, - [10413] = {.lex_state = 0}, - [10414] = {.lex_state = 1044}, - [10415] = {.lex_state = 0}, - [10416] = {.lex_state = 0, .external_lex_state = 3}, - [10417] = {.lex_state = 0}, - [10418] = {.lex_state = 1044}, - [10419] = {.lex_state = 1044}, - [10420] = {.lex_state = 0, .external_lex_state = 3}, - [10421] = {.lex_state = 0}, - [10422] = {.lex_state = 1044}, - [10423] = {.lex_state = 1044}, - [10424] = {.lex_state = 0, .external_lex_state = 3}, - [10425] = {.lex_state = 0}, - [10426] = {.lex_state = 1044}, - [10427] = {.lex_state = 1044}, - [10428] = {.lex_state = 0, .external_lex_state = 3}, - [10429] = {.lex_state = 0}, - [10430] = {.lex_state = 1044}, - [10431] = {.lex_state = 0, .external_lex_state = 3}, - [10432] = {.lex_state = 0}, - [10433] = {.lex_state = 1044}, - [10434] = {.lex_state = 0, .external_lex_state = 3}, - [10435] = {.lex_state = 0}, - [10436] = {.lex_state = 1044}, - [10437] = {.lex_state = 0, .external_lex_state = 3}, - [10438] = {.lex_state = 0}, - [10439] = {.lex_state = 1044}, - [10440] = {.lex_state = 0, .external_lex_state = 3}, - [10441] = {.lex_state = 0}, - [10442] = {.lex_state = 0, .external_lex_state = 3}, - [10443] = {.lex_state = 0}, - [10444] = {.lex_state = 0, .external_lex_state = 3}, - [10445] = {.lex_state = 0}, - [10446] = {.lex_state = 0, .external_lex_state = 3}, - [10447] = {.lex_state = 0}, - [10448] = {.lex_state = 490}, - [10449] = {.lex_state = 0}, - [10450] = {.lex_state = 1044}, - [10451] = {.lex_state = 1044}, - [10452] = {.lex_state = 656}, - [10453] = {.lex_state = 490}, - [10454] = {.lex_state = 0}, - [10455] = {.lex_state = 0}, - [10456] = {.lex_state = 0}, - [10457] = {.lex_state = 291}, - [10458] = {.lex_state = 0}, - [10459] = {.lex_state = 0}, - [10460] = {.lex_state = 0}, - [10461] = {.lex_state = 490}, - [10462] = {.lex_state = 490}, - [10463] = {.lex_state = 0}, - [10464] = {.lex_state = 1044}, - [10465] = {.lex_state = 0}, - [10466] = {.lex_state = 0}, - [10467] = {.lex_state = 291}, - [10468] = {.lex_state = 656}, - [10469] = {.lex_state = 656}, - [10470] = {.lex_state = 490}, - [10471] = {.lex_state = 490}, - [10472] = {.lex_state = 0}, - [10473] = {.lex_state = 0}, - [10474] = {.lex_state = 0}, - [10475] = {.lex_state = 1044}, - [10476] = {.lex_state = 656}, - [10477] = {.lex_state = 0}, - [10478] = {.lex_state = 0}, - [10479] = {.lex_state = 0, .external_lex_state = 3}, - [10480] = {.lex_state = 0}, - [10481] = {.lex_state = 490}, - [10482] = {.lex_state = 490}, - [10483] = {.lex_state = 0}, - [10484] = {.lex_state = 0}, - [10485] = {.lex_state = 0}, - [10486] = {.lex_state = 0, .external_lex_state = 3}, - [10487] = {.lex_state = 656}, - [10488] = {.lex_state = 0}, - [10489] = {.lex_state = 0}, - [10490] = {.lex_state = 0}, - [10491] = {.lex_state = 0, .external_lex_state = 2}, - [10492] = {.lex_state = 656}, - [10493] = {.lex_state = 656}, - [10494] = {.lex_state = 0}, - [10495] = {.lex_state = 656}, - [10496] = {.lex_state = 656}, - [10497] = {.lex_state = 0}, - [10498] = {.lex_state = 1044}, - [10499] = {.lex_state = 0}, - [10500] = {.lex_state = 0}, - [10501] = {.lex_state = 0}, - [10502] = {.lex_state = 0}, - [10503] = {.lex_state = 0}, - [10504] = {.lex_state = 656}, - [10505] = {.lex_state = 1046}, - [10506] = {.lex_state = 0}, - [10507] = {.lex_state = 0}, - [10508] = {.lex_state = 656}, - [10509] = {.lex_state = 0}, - [10510] = {.lex_state = 656}, - [10511] = {.lex_state = 0}, - [10512] = {.lex_state = 291}, - [10513] = {.lex_state = 1044}, - [10514] = {.lex_state = 1044}, - [10515] = {.lex_state = 656}, - [10516] = {.lex_state = 0}, - [10517] = {.lex_state = 490}, - [10518] = {.lex_state = 656}, - [10519] = {.lex_state = 0, .external_lex_state = 3}, - [10520] = {.lex_state = 0}, - [10521] = {.lex_state = 0}, - [10522] = {.lex_state = 0}, - [10523] = {.lex_state = 1044}, - [10524] = {.lex_state = 1044}, - [10525] = {.lex_state = 656}, - [10526] = {.lex_state = 490}, - [10527] = {.lex_state = 0}, - [10528] = {.lex_state = 656}, - [10529] = {.lex_state = 0, .external_lex_state = 3}, - [10530] = {.lex_state = 0}, - [10531] = {.lex_state = 490}, - [10532] = {.lex_state = 291}, - [10533] = {.lex_state = 1044}, - [10534] = {.lex_state = 1044}, - [10535] = {.lex_state = 656}, - [10536] = {.lex_state = 0}, - [10537] = {.lex_state = 0}, - [10538] = {.lex_state = 656}, - [10539] = {.lex_state = 0, .external_lex_state = 3}, - [10540] = {.lex_state = 291}, - [10541] = {.lex_state = 656}, - [10542] = {.lex_state = 490}, - [10543] = {.lex_state = 1044}, - [10544] = {.lex_state = 656}, - [10545] = {.lex_state = 0}, - [10546] = {.lex_state = 0}, - [10547] = {.lex_state = 656}, - [10548] = {.lex_state = 0, .external_lex_state = 3}, - [10549] = {.lex_state = 1046}, - [10550] = {.lex_state = 1044}, - [10551] = {.lex_state = 1044}, - [10552] = {.lex_state = 656}, - [10553] = {.lex_state = 0}, - [10554] = {.lex_state = 656}, - [10555] = {.lex_state = 656}, - [10556] = {.lex_state = 0, .external_lex_state = 3}, - [10557] = {.lex_state = 490}, - [10558] = {.lex_state = 0}, - [10559] = {.lex_state = 1044}, - [10560] = {.lex_state = 656}, - [10561] = {.lex_state = 0}, - [10562] = {.lex_state = 0}, - [10563] = {.lex_state = 656}, - [10564] = {.lex_state = 0, .external_lex_state = 3}, - [10565] = {.lex_state = 0}, - [10566] = {.lex_state = 1046}, - [10567] = {.lex_state = 1044}, - [10568] = {.lex_state = 656}, - [10569] = {.lex_state = 1044}, - [10570] = {.lex_state = 0}, - [10571] = {.lex_state = 656}, - [10572] = {.lex_state = 0, .external_lex_state = 3}, - [10573] = {.lex_state = 0}, - [10574] = {.lex_state = 0}, - [10575] = {.lex_state = 656}, - [10576] = {.lex_state = 0}, - [10577] = {.lex_state = 656}, - [10578] = {.lex_state = 0, .external_lex_state = 3}, - [10579] = {.lex_state = 0}, - [10580] = {.lex_state = 490}, - [10581] = {.lex_state = 0}, - [10582] = {.lex_state = 490}, - [10583] = {.lex_state = 0, .external_lex_state = 3}, - [10584] = {.lex_state = 0}, - [10585] = {.lex_state = 291}, - [10586] = {.lex_state = 0}, - [10587] = {.lex_state = 490}, - [10588] = {.lex_state = 0, .external_lex_state = 3}, - [10589] = {.lex_state = 0}, - [10590] = {.lex_state = 656}, - [10591] = {.lex_state = 0, .external_lex_state = 3}, - [10592] = {.lex_state = 656}, - [10593] = {.lex_state = 0, .external_lex_state = 3}, - [10594] = {.lex_state = 656}, - [10595] = {.lex_state = 0, .external_lex_state = 3}, - [10596] = {.lex_state = 1044}, - [10597] = {.lex_state = 0, .external_lex_state = 3}, - [10598] = {.lex_state = 490}, - [10599] = {.lex_state = 0, .external_lex_state = 3}, - [10600] = {.lex_state = 0}, - [10601] = {.lex_state = 0, .external_lex_state = 3}, - [10602] = {.lex_state = 0}, - [10603] = {.lex_state = 0, .external_lex_state = 3}, - [10604] = {.lex_state = 656}, - [10605] = {.lex_state = 0, .external_lex_state = 3}, - [10606] = {.lex_state = 0}, - [10607] = {.lex_state = 0, .external_lex_state = 3}, - [10608] = {.lex_state = 1044}, - [10609] = {.lex_state = 0, .external_lex_state = 3}, - [10610] = {.lex_state = 0}, - [10611] = {.lex_state = 0, .external_lex_state = 3}, - [10612] = {.lex_state = 291}, - [10613] = {.lex_state = 0}, - [10614] = {.lex_state = 1044}, - [10615] = {.lex_state = 0}, - [10616] = {.lex_state = 1044}, - [10617] = {.lex_state = 0}, - [10618] = {.lex_state = 656}, - [10619] = {.lex_state = 0}, - [10620] = {.lex_state = 0}, - [10621] = {.lex_state = 0}, - [10622] = {.lex_state = 0}, - [10623] = {.lex_state = 0}, - [10624] = {.lex_state = 656}, - [10625] = {.lex_state = 1044}, - [10626] = {.lex_state = 0}, - [10627] = {.lex_state = 0}, - [10628] = {.lex_state = 490}, - [10629] = {.lex_state = 0}, - [10630] = {.lex_state = 1044}, - [10631] = {.lex_state = 1044}, - [10632] = {.lex_state = 0}, - [10633] = {.lex_state = 1044}, - [10634] = {.lex_state = 1044}, - [10635] = {.lex_state = 0}, - [10636] = {.lex_state = 1044}, - [10637] = {.lex_state = 1044}, - [10638] = {.lex_state = 490}, - [10639] = {.lex_state = 1044}, - [10640] = {.lex_state = 1044}, - [10641] = {.lex_state = 0}, - [10642] = {.lex_state = 1044}, - [10643] = {.lex_state = 1044}, - [10644] = {.lex_state = 291}, - [10645] = {.lex_state = 1044}, - [10646] = {.lex_state = 1044}, - [10647] = {.lex_state = 656}, - [10648] = {.lex_state = 1044}, - [10649] = {.lex_state = 1044}, - [10650] = {.lex_state = 0}, - [10651] = {.lex_state = 1044}, - [10652] = {.lex_state = 1044}, - [10653] = {.lex_state = 490}, - [10654] = {.lex_state = 1044}, - [10655] = {.lex_state = 1044}, - [10656] = {.lex_state = 0}, - [10657] = {.lex_state = 1044}, - [10658] = {.lex_state = 1044}, - [10659] = {.lex_state = 0}, - [10660] = {.lex_state = 1044}, - [10661] = {.lex_state = 1044}, - [10662] = {.lex_state = 1044}, - [10663] = {.lex_state = 1044}, - [10664] = {.lex_state = 1044}, - [10665] = {.lex_state = 1044}, - [10666] = {.lex_state = 1044}, - [10667] = {.lex_state = 1044}, - [10668] = {.lex_state = 1044}, - [10669] = {.lex_state = 1044}, - [10670] = {.lex_state = 1044}, - [10671] = {.lex_state = 1044}, - [10672] = {.lex_state = 0}, - [10673] = {.lex_state = 1044}, - [10674] = {.lex_state = 656}, - [10675] = {.lex_state = 0}, - [10676] = {.lex_state = 0}, - [10677] = {.lex_state = 490}, - [10678] = {.lex_state = 0}, - [10679] = {.lex_state = 0}, - [10680] = {.lex_state = 0}, - [10681] = {.lex_state = 490}, - [10682] = {.lex_state = 1044}, - [10683] = {.lex_state = 1044}, - [10684] = {.lex_state = 1044}, - [10685] = {.lex_state = 1044}, - [10686] = {.lex_state = 1044}, - [10687] = {.lex_state = 1044}, - [10688] = {.lex_state = 1044}, - [10689] = {.lex_state = 1044}, - [10690] = {.lex_state = 1044}, - [10691] = {.lex_state = 1044}, - [10692] = {.lex_state = 1044}, - [10693] = {.lex_state = 1044}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -46312,131 +36733,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_content] = ACTIONS(1), }, [1] = { - [sym_translation_unit] = STATE(9807), - [sym_preproc_include] = STATE(119), - [sym_preproc_def] = STATE(119), - [sym_preproc_function_def] = STATE(119), - [sym_preproc_call] = STATE(119), - [sym_preproc_if] = STATE(119), - [sym_preproc_ifdef] = STATE(119), - [sym_function_definition] = STATE(119), - [sym_declaration] = STATE(119), - [sym_type_definition] = STATE(119), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6398), - [sym_linkage_specification] = STATE(119), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2086), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7760), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(119), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4374), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(119), - [sym_labeled_statement] = STATE(119), - [sym_top_level_expression_statement] = STATE(119), - [sym_if_statement] = STATE(119), - [sym_switch_statement] = STATE(119), - [sym_case_statement] = STATE(119), - [sym_while_statement] = STATE(119), - [sym_do_statement] = STATE(119), - [sym_for_statement] = STATE(119), - [sym_return_statement] = STATE(119), - [sym_break_statement] = STATE(119), - [sym_continue_statement] = STATE(119), - [sym_goto_statement] = STATE(119), - [sym_expression] = STATE(6126), - [sym_expression_not_binary] = STATE(6252), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(119), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(119), - [sym_template_instantiation] = STATE(119), - [sym_operator_cast] = STATE(8070), + [sym_translation_unit] = STATE(9758), + [sym_preproc_include] = STATE(117), + [sym_preproc_def] = STATE(117), + [sym_preproc_function_def] = STATE(117), + [sym_preproc_call] = STATE(117), + [sym_preproc_if] = STATE(117), + [sym_preproc_ifdef] = STATE(117), + [sym_function_definition] = STATE(117), + [sym_declaration] = STATE(117), + [sym_type_definition] = STATE(117), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5909), + [sym_linkage_specification] = STATE(117), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2182), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7388), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(117), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4095), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(117), + [sym_labeled_statement] = STATE(117), + [sym_top_level_expression_statement] = STATE(117), + [sym_if_statement] = STATE(117), + [sym_switch_statement] = STATE(117), + [sym_case_statement] = STATE(117), + [sym_while_statement] = STATE(117), + [sym_do_statement] = STATE(117), + [sym_for_statement] = STATE(117), + [sym_return_statement] = STATE(117), + [sym_break_statement] = STATE(117), + [sym_continue_statement] = STATE(117), + [sym_goto_statement] = STATE(117), + [sym_expression] = STATE(5607), + [sym_expression_not_binary] = STATE(5724), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(117), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(117), + [sym_template_instantiation] = STATE(117), + [sym_operator_cast] = STATE(7739), [sym_constructor_specifiers] = STATE(1948), - [sym_operator_cast_definition] = STATE(119), - [sym_operator_cast_declaration] = STATE(119), - [sym_constructor_or_destructor_definition] = STATE(119), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(119), - [sym_namespace_alias_definition] = STATE(119), - [sym_using_declaration] = STATE(119), - [sym_alias_declaration] = STATE(119), - [sym_static_assert_declaration] = STATE(119), - [sym_concept_definition] = STATE(119), - [sym_for_range_loop] = STATE(119), - [sym_co_return_statement] = STATE(119), - [sym_co_yield_statement] = STATE(119), - [sym_throw_statement] = STATE(119), - [sym_try_statement] = STATE(119), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8070), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_expression] = STATE(9644), - [sym_semgrep_ellipsis] = STATE(185), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_translation_unit_repeat1] = STATE(119), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), + [sym_operator_cast_definition] = STATE(117), + [sym_operator_cast_declaration] = STATE(117), + [sym_constructor_or_destructor_definition] = STATE(117), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(117), + [sym_namespace_alias_definition] = STATE(117), + [sym_using_declaration] = STATE(117), + [sym_alias_declaration] = STATE(117), + [sym_static_assert_declaration] = STATE(117), + [sym_concept_definition] = STATE(117), + [sym_for_range_loop] = STATE(117), + [sym_co_return_statement] = STATE(117), + [sym_co_yield_statement] = STATE(117), + [sym_throw_statement] = STATE(117), + [sym_try_statement] = STATE(117), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7739), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_expression] = STATE(9353), + [sym_semgrep_ellipsis] = STATE(182), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_translation_unit_repeat1] = STATE(117), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(199), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), [aux_sym_operator_cast_definition_repeat1] = STATE(1948), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), @@ -46571,139 +36992,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [2] = { - [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(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(68), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(68), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [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_seh_try_statement] = STATE(68), - [sym_seh_leave_statement] = STATE(68), - [sym_expression] = STATE(5465), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9004), - [sym_initializer_pair] = STATE(9004), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(68), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(68), - [sym_template_instantiation] = STATE(68), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(68), - [sym_operator_cast_declaration] = STATE(68), - [sym_constructor_or_destructor_definition] = STATE(68), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(175), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(68), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [sym_preproc_include] = STATE(83), + [sym_preproc_def] = STATE(83), + [sym_preproc_function_def] = STATE(83), + [sym_preproc_call] = STATE(83), + [sym_preproc_if] = STATE(83), + [sym_preproc_ifdef] = STATE(83), + [sym_function_definition] = STATE(83), + [sym_declaration] = STATE(83), + [sym_type_definition] = STATE(83), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(83), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(83), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [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_case_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_seh_try_statement] = STATE(83), + [sym_seh_leave_statement] = STATE(83), + [sym_expression] = STATE(4943), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8587), + [sym_initializer_pair] = STATE(8587), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(83), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(83), + [sym_template_instantiation] = STATE(83), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(83), + [sym_operator_cast_declaration] = STATE(83), + [sym_constructor_or_destructor_definition] = STATE(83), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(83), + [sym_namespace_alias_definition] = STATE(83), + [sym_using_declaration] = STATE(83), + [sym_alias_declaration] = STATE(83), + [sym_static_assert_declaration] = STATE(83), + [sym_concept_definition] = STATE(83), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(173), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(83), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(169), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -46850,28 +37271,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(107), [sym_declaration] = STATE(107), [sym_type_definition] = STATE(107), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), [sym_linkage_specification] = STATE(107), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(107), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(107), [sym_labeled_statement] = STATE(107), [sym_expression_statement] = STATE(107), @@ -46887,56 +37308,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(107), [sym_seh_try_statement] = STATE(107), [sym_seh_leave_statement] = STATE(107), - [sym_expression] = STATE(5465), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9004), - [sym_initializer_pair] = STATE(9004), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(4943), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8587), + [sym_initializer_pair] = STATE(8587), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(107), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(107), [sym_template_instantiation] = STATE(107), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), [sym_operator_cast_definition] = STATE(107), [sym_operator_cast_declaration] = STATE(107), [sym_constructor_or_destructor_definition] = STATE(107), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(107), [sym_namespace_alias_definition] = STATE(107), [sym_using_declaration] = STATE(107), @@ -46948,32 +37369,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(107), [sym_throw_statement] = STATE(107), [sym_try_statement] = STATE(107), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(175), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(173), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(107), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(169), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -47120,28 +37541,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(59), [sym_declaration] = STATE(59), [sym_type_definition] = STATE(59), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), [sym_linkage_specification] = STATE(59), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(59), [sym_labeled_statement] = STATE(59), [sym_expression_statement] = STATE(59), @@ -47157,56 +37578,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(59), [sym_seh_try_statement] = STATE(59), [sym_seh_leave_statement] = STATE(59), - [sym_expression] = STATE(5465), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9004), - [sym_initializer_pair] = STATE(9004), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(4943), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8587), + [sym_initializer_pair] = STATE(8587), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(59), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(59), [sym_template_instantiation] = STATE(59), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), [sym_operator_cast_definition] = STATE(59), [sym_operator_cast_declaration] = STATE(59), [sym_constructor_or_destructor_definition] = STATE(59), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(59), [sym_namespace_alias_definition] = STATE(59), [sym_using_declaration] = STATE(59), @@ -47218,32 +37639,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(59), [sym_throw_statement] = STATE(59), [sym_try_statement] = STATE(59), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(175), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(173), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(59), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(169), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -47390,28 +37811,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(59), [sym_declaration] = STATE(59), [sym_type_definition] = STATE(59), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), [sym_linkage_specification] = STATE(59), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(59), [sym_labeled_statement] = STATE(59), [sym_expression_statement] = STATE(59), @@ -47427,56 +37848,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(59), [sym_seh_try_statement] = STATE(59), [sym_seh_leave_statement] = STATE(59), - [sym_expression] = STATE(5465), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9004), - [sym_initializer_pair] = STATE(9004), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(4943), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8587), + [sym_initializer_pair] = STATE(8587), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(59), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(59), [sym_template_instantiation] = STATE(59), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), [sym_operator_cast_definition] = STATE(59), [sym_operator_cast_declaration] = STATE(59), [sym_constructor_or_destructor_definition] = STATE(59), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(59), [sym_namespace_alias_definition] = STATE(59), [sym_using_declaration] = STATE(59), @@ -47488,32 +37909,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(59), [sym_throw_statement] = STATE(59), [sym_try_statement] = STATE(59), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(175), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(173), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(59), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(169), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -47651,139 +38072,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [6] = { - [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(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(71), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(71), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [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_seh_try_statement] = STATE(71), - [sym_seh_leave_statement] = STATE(71), - [sym_expression] = STATE(5465), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9004), - [sym_initializer_pair] = STATE(9004), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(71), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(71), - [sym_template_instantiation] = STATE(71), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(71), - [sym_operator_cast_declaration] = STATE(71), - [sym_constructor_or_destructor_definition] = STATE(71), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(175), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(71), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [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(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(70), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(70), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [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_seh_try_statement] = STATE(70), + [sym_seh_leave_statement] = STATE(70), + [sym_expression] = STATE(4943), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8587), + [sym_initializer_pair] = STATE(8587), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(70), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(70), + [sym_template_instantiation] = STATE(70), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(70), + [sym_operator_cast_declaration] = STATE(70), + [sym_constructor_or_destructor_definition] = STATE(70), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(173), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(70), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(169), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -47930,28 +38351,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(109), [sym_declaration] = STATE(109), [sym_type_definition] = STATE(109), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), [sym_linkage_specification] = STATE(109), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(109), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(109), [sym_labeled_statement] = STATE(109), [sym_expression_statement] = STATE(109), @@ -47967,56 +38388,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(109), [sym_seh_try_statement] = STATE(109), [sym_seh_leave_statement] = STATE(109), - [sym_expression] = STATE(5465), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9004), - [sym_initializer_pair] = STATE(9004), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(4943), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8587), + [sym_initializer_pair] = STATE(8587), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(109), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(109), [sym_template_instantiation] = STATE(109), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), [sym_operator_cast_definition] = STATE(109), [sym_operator_cast_declaration] = STATE(109), [sym_constructor_or_destructor_definition] = STATE(109), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(109), [sym_namespace_alias_definition] = STATE(109), [sym_using_declaration] = STATE(109), @@ -48028,32 +38449,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(109), [sym_throw_statement] = STATE(109), [sym_try_statement] = STATE(109), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(175), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(173), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(109), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(169), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -48200,28 +38621,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(87), [sym_declaration] = STATE(87), [sym_type_definition] = STATE(87), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), [sym_linkage_specification] = STATE(87), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(87), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(87), [sym_labeled_statement] = STATE(87), [sym_expression_statement] = STATE(87), @@ -48237,56 +38658,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(87), [sym_seh_try_statement] = STATE(87), [sym_seh_leave_statement] = STATE(87), - [sym_expression] = STATE(5465), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9004), - [sym_initializer_pair] = STATE(9004), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(4943), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8587), + [sym_initializer_pair] = STATE(8587), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(87), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(87), [sym_template_instantiation] = STATE(87), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), [sym_operator_cast_definition] = STATE(87), [sym_operator_cast_declaration] = STATE(87), [sym_constructor_or_destructor_definition] = STATE(87), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(87), [sym_namespace_alias_definition] = STATE(87), [sym_using_declaration] = STATE(87), @@ -48298,32 +38719,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(87), [sym_throw_statement] = STATE(87), [sym_try_statement] = STATE(87), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(175), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(173), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(87), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(169), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -48461,139 +38882,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [9] = { - [sym_preproc_include] = STATE(83), - [sym_preproc_def] = STATE(83), - [sym_preproc_function_def] = STATE(83), - [sym_preproc_call] = STATE(83), - [sym_preproc_if] = STATE(83), - [sym_preproc_ifdef] = STATE(83), - [sym_function_definition] = STATE(83), - [sym_declaration] = STATE(83), - [sym_type_definition] = STATE(83), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(83), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(83), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [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_case_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_seh_try_statement] = STATE(83), - [sym_seh_leave_statement] = STATE(83), - [sym_expression] = STATE(5465), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9004), - [sym_initializer_pair] = STATE(9004), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(83), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(83), - [sym_template_instantiation] = STATE(83), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(83), - [sym_operator_cast_declaration] = STATE(83), - [sym_constructor_or_destructor_definition] = STATE(83), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(83), - [sym_namespace_alias_definition] = STATE(83), - [sym_using_declaration] = STATE(83), - [sym_alias_declaration] = STATE(83), - [sym_static_assert_declaration] = STATE(83), - [sym_concept_definition] = STATE(83), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(175), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(83), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [sym_preproc_include] = STATE(82), + [sym_preproc_def] = STATE(82), + [sym_preproc_function_def] = STATE(82), + [sym_preproc_call] = STATE(82), + [sym_preproc_if] = STATE(82), + [sym_preproc_ifdef] = STATE(82), + [sym_function_definition] = STATE(82), + [sym_declaration] = STATE(82), + [sym_type_definition] = STATE(82), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(82), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(82), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [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_case_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_seh_try_statement] = STATE(82), + [sym_seh_leave_statement] = STATE(82), + [sym_expression] = STATE(4943), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8587), + [sym_initializer_pair] = STATE(8587), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(82), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(82), + [sym_template_instantiation] = STATE(82), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(82), + [sym_operator_cast_declaration] = STATE(82), + [sym_constructor_or_destructor_definition] = STATE(82), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(82), + [sym_namespace_alias_definition] = STATE(82), + [sym_using_declaration] = STATE(82), + [sym_alias_declaration] = STATE(82), + [sym_static_assert_declaration] = STATE(82), + [sym_concept_definition] = STATE(82), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(173), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(82), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(169), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -48740,28 +39161,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(85), [sym_declaration] = STATE(85), [sym_type_definition] = STATE(85), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), [sym_linkage_specification] = STATE(85), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(85), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(85), [sym_labeled_statement] = STATE(85), [sym_expression_statement] = STATE(85), @@ -48777,56 +39198,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(85), [sym_seh_try_statement] = STATE(85), [sym_seh_leave_statement] = STATE(85), - [sym_expression] = STATE(5465), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9004), - [sym_initializer_pair] = STATE(9004), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(4943), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8587), + [sym_initializer_pair] = STATE(8587), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(85), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(85), [sym_template_instantiation] = STATE(85), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), [sym_operator_cast_definition] = STATE(85), [sym_operator_cast_declaration] = STATE(85), [sym_constructor_or_destructor_definition] = STATE(85), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(85), [sym_namespace_alias_definition] = STATE(85), [sym_using_declaration] = STATE(85), @@ -48838,32 +39259,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(85), [sym_throw_statement] = STATE(85), [sym_try_statement] = STATE(85), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(175), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(173), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(85), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(169), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -49010,28 +39431,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(87), [sym_declaration] = STATE(87), [sym_type_definition] = STATE(87), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), [sym_linkage_specification] = STATE(87), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(87), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(87), [sym_labeled_statement] = STATE(87), [sym_expression_statement] = STATE(87), @@ -49047,56 +39468,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(87), [sym_seh_try_statement] = STATE(87), [sym_seh_leave_statement] = STATE(87), - [sym_expression] = STATE(5465), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9004), - [sym_initializer_pair] = STATE(9004), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(4943), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8587), + [sym_initializer_pair] = STATE(8587), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(87), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(87), [sym_template_instantiation] = STATE(87), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), [sym_operator_cast_definition] = STATE(87), [sym_operator_cast_declaration] = STATE(87), [sym_constructor_or_destructor_definition] = STATE(87), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(87), [sym_namespace_alias_definition] = STATE(87), [sym_using_declaration] = STATE(87), @@ -49108,32 +39529,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(87), [sym_throw_statement] = STATE(87), [sym_try_statement] = STATE(87), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(175), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(173), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(87), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(169), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -49280,28 +39701,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(103), [sym_declaration] = STATE(103), [sym_type_definition] = STATE(103), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), [sym_linkage_specification] = STATE(103), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(103), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(103), [sym_labeled_statement] = STATE(103), [sym_expression_statement] = STATE(103), @@ -49317,56 +39738,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(103), [sym_seh_try_statement] = STATE(103), [sym_seh_leave_statement] = STATE(103), - [sym_expression] = STATE(5465), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9004), - [sym_initializer_pair] = STATE(9004), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(4943), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8587), + [sym_initializer_pair] = STATE(8587), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(103), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(103), [sym_template_instantiation] = STATE(103), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), [sym_operator_cast_definition] = STATE(103), [sym_operator_cast_declaration] = STATE(103), [sym_constructor_or_destructor_definition] = STATE(103), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(103), [sym_namespace_alias_definition] = STATE(103), [sym_using_declaration] = STATE(103), @@ -49378,32 +39799,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(103), [sym_throw_statement] = STATE(103), [sym_try_statement] = STATE(103), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(175), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(173), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(103), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(169), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -49550,28 +39971,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(107), [sym_declaration] = STATE(107), [sym_type_definition] = STATE(107), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), [sym_linkage_specification] = STATE(107), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(107), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(107), [sym_labeled_statement] = STATE(107), [sym_expression_statement] = STATE(107), @@ -49587,56 +40008,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(107), [sym_seh_try_statement] = STATE(107), [sym_seh_leave_statement] = STATE(107), - [sym_expression] = STATE(5465), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9004), - [sym_initializer_pair] = STATE(9004), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(4943), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8587), + [sym_initializer_pair] = STATE(8587), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(107), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(107), [sym_template_instantiation] = STATE(107), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), [sym_operator_cast_definition] = STATE(107), [sym_operator_cast_declaration] = STATE(107), [sym_constructor_or_destructor_definition] = STATE(107), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(107), [sym_namespace_alias_definition] = STATE(107), [sym_using_declaration] = STATE(107), @@ -49648,32 +40069,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(107), [sym_throw_statement] = STATE(107), [sym_try_statement] = STATE(107), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(175), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(173), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(107), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(169), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -49820,28 +40241,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(109), [sym_declaration] = STATE(109), [sym_type_definition] = STATE(109), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), [sym_linkage_specification] = STATE(109), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(109), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(109), [sym_labeled_statement] = STATE(109), [sym_expression_statement] = STATE(109), @@ -49857,56 +40278,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(109), [sym_seh_try_statement] = STATE(109), [sym_seh_leave_statement] = STATE(109), - [sym_expression] = STATE(5465), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9004), - [sym_initializer_pair] = STATE(9004), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(4943), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8587), + [sym_initializer_pair] = STATE(8587), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(109), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(109), [sym_template_instantiation] = STATE(109), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), [sym_operator_cast_definition] = STATE(109), [sym_operator_cast_declaration] = STATE(109), [sym_constructor_or_destructor_definition] = STATE(109), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(109), [sym_namespace_alias_definition] = STATE(109), [sym_using_declaration] = STATE(109), @@ -49918,32 +40339,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(109), [sym_throw_statement] = STATE(109), [sym_try_statement] = STATE(109), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(175), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(173), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(109), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(169), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -50090,28 +40511,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(103), [sym_declaration] = STATE(103), [sym_type_definition] = STATE(103), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), [sym_linkage_specification] = STATE(103), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(103), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(103), [sym_labeled_statement] = STATE(103), [sym_expression_statement] = STATE(103), @@ -50127,56 +40548,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(103), [sym_seh_try_statement] = STATE(103), [sym_seh_leave_statement] = STATE(103), - [sym_expression] = STATE(5465), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9004), - [sym_initializer_pair] = STATE(9004), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(4943), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8587), + [sym_initializer_pair] = STATE(8587), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(103), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(103), [sym_template_instantiation] = STATE(103), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), [sym_operator_cast_definition] = STATE(103), [sym_operator_cast_declaration] = STATE(103), [sym_constructor_or_destructor_definition] = STATE(103), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(103), [sym_namespace_alias_definition] = STATE(103), [sym_using_declaration] = STATE(103), @@ -50188,32 +40609,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(103), [sym_throw_statement] = STATE(103), [sym_try_statement] = STATE(103), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(175), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(173), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(103), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(169), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -50351,136 +40772,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [16] = { - [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_preproc_else] = STATE(10135), - [sym_preproc_elif] = STATE(10135), - [sym_preproc_elifdef] = STATE(10135), - [sym_function_definition] = STATE(51), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6397), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2100), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7721), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(51), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4229), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [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_seh_try_statement] = STATE(51), - [sym_seh_leave_statement] = STATE(51), - [sym_expression] = STATE(5862), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9665), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(51), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(51), - [sym_template_instantiation] = STATE(51), - [sym_operator_cast] = STATE(8100), - [sym_constructor_specifiers] = STATE(1950), - [sym_operator_cast_definition] = STATE(51), - [sym_operator_cast_declaration] = STATE(51), - [sym_constructor_or_destructor_definition] = STATE(51), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8100), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(172), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1950), + [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_preproc_else] = STATE(9499), + [sym_preproc_elif] = STATE(9499), + [sym_preproc_elifdef] = STATE(9499), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5889), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2223), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7326), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4055), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [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_seh_try_statement] = STATE(52), + [sym_seh_leave_statement] = STATE(52), + [sym_expression] = STATE(5188), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9691), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(52), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(52), + [sym_template_instantiation] = STATE(52), + [sym_operator_cast] = STATE(7706), + [sym_constructor_specifiers] = STATE(1949), + [sym_operator_cast_definition] = STATE(52), + [sym_operator_cast_declaration] = STATE(52), + [sym_constructor_or_destructor_definition] = STATE(52), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7706), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(168), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(52), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(233), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1949), [sym_identifier] = ACTIONS(275), [aux_sym_preproc_include_token1] = ACTIONS(277), [aux_sym_preproc_def_token1] = ACTIONS(279), @@ -50626,34 +41047,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(19), [sym_preproc_if] = STATE(19), [sym_preproc_ifdef] = STATE(19), - [sym_preproc_else] = STATE(10274), - [sym_preproc_elif] = STATE(10274), - [sym_preproc_elifdef] = STATE(10274), + [sym_preproc_else] = STATE(9770), + [sym_preproc_elif] = STATE(9770), + [sym_preproc_elifdef] = STATE(9770), [sym_function_definition] = STATE(19), [sym_declaration] = STATE(19), [sym_type_definition] = STATE(19), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6397), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5889), [sym_linkage_specification] = STATE(19), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2100), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7721), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2223), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7326), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(19), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4229), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4055), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(19), [sym_labeled_statement] = STATE(19), [sym_expression_statement] = STATE(19), @@ -50669,51 +41090,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(19), [sym_seh_try_statement] = STATE(19), [sym_seh_leave_statement] = STATE(19), - [sym_expression] = STATE(5862), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9665), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(5188), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9691), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(19), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(19), [sym_template_instantiation] = STATE(19), - [sym_operator_cast] = STATE(8100), - [sym_constructor_specifiers] = STATE(1950), + [sym_operator_cast] = STATE(7706), + [sym_constructor_specifiers] = STATE(1949), [sym_operator_cast_definition] = STATE(19), [sym_operator_cast_declaration] = STATE(19), [sym_constructor_or_destructor_definition] = STATE(19), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(19), [sym_namespace_alias_definition] = STATE(19), [sym_using_declaration] = STATE(19), @@ -50725,31 +41146,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(19), [sym_throw_statement] = STATE(19), [sym_try_statement] = STATE(19), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8100), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(172), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7706), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(168), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(19), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1950), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(233), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1949), [sym_identifier] = ACTIONS(275), [aux_sym_preproc_include_token1] = ACTIONS(277), [aux_sym_preproc_def_token1] = ACTIONS(279), @@ -50895,34 +41316,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(10286), - [sym_preproc_elif] = STATE(10286), - [sym_preproc_elifdef] = STATE(10286), + [sym_preproc_else] = STATE(9614), + [sym_preproc_elif] = STATE(9614), + [sym_preproc_elifdef] = STATE(9614), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6397), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5889), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2100), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7721), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2223), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7326), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4229), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4055), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -50938,51 +41359,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(20), [sym_seh_try_statement] = STATE(20), [sym_seh_leave_statement] = STATE(20), - [sym_expression] = STATE(5862), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9665), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(5188), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9691), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(20), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(20), [sym_template_instantiation] = STATE(20), - [sym_operator_cast] = STATE(8100), - [sym_constructor_specifiers] = STATE(1950), + [sym_operator_cast] = STATE(7706), + [sym_constructor_specifiers] = STATE(1949), [sym_operator_cast_definition] = STATE(20), [sym_operator_cast_declaration] = STATE(20), [sym_constructor_or_destructor_definition] = STATE(20), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(20), [sym_namespace_alias_definition] = STATE(20), [sym_using_declaration] = STATE(20), @@ -50994,31 +41415,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(20), [sym_throw_statement] = STATE(20), [sym_try_statement] = STATE(20), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8100), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(172), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7706), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(168), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(20), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1950), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(233), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1949), [sym_identifier] = ACTIONS(275), [aux_sym_preproc_include_token1] = ACTIONS(277), [aux_sym_preproc_def_token1] = ACTIONS(279), @@ -51158,136 +41579,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [19] = { - [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_preproc_else] = STATE(9771), - [sym_preproc_elif] = STATE(9771), - [sym_preproc_elifdef] = STATE(9771), - [sym_function_definition] = STATE(51), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6397), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2100), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7721), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(51), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4229), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [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_seh_try_statement] = STATE(51), - [sym_seh_leave_statement] = STATE(51), - [sym_expression] = STATE(5862), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9665), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(51), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(51), - [sym_template_instantiation] = STATE(51), - [sym_operator_cast] = STATE(8100), - [sym_constructor_specifiers] = STATE(1950), - [sym_operator_cast_definition] = STATE(51), - [sym_operator_cast_declaration] = STATE(51), - [sym_constructor_or_destructor_definition] = STATE(51), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8100), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(172), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1950), + [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_preproc_else] = STATE(9310), + [sym_preproc_elif] = STATE(9310), + [sym_preproc_elifdef] = STATE(9310), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5889), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2223), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7326), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4055), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [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_seh_try_statement] = STATE(52), + [sym_seh_leave_statement] = STATE(52), + [sym_expression] = STATE(5188), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9691), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(52), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(52), + [sym_template_instantiation] = STATE(52), + [sym_operator_cast] = STATE(7706), + [sym_constructor_specifiers] = STATE(1949), + [sym_operator_cast_definition] = STATE(52), + [sym_operator_cast_declaration] = STATE(52), + [sym_constructor_or_destructor_definition] = STATE(52), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7706), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(168), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(52), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(233), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1949), [sym_identifier] = ACTIONS(275), [aux_sym_preproc_include_token1] = ACTIONS(277), [aux_sym_preproc_def_token1] = ACTIONS(279), @@ -51427,136 +41848,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [20] = { - [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_preproc_else] = STATE(9772), - [sym_preproc_elif] = STATE(9772), - [sym_preproc_elifdef] = STATE(9772), - [sym_function_definition] = STATE(51), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6397), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2100), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7721), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(51), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4229), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [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_seh_try_statement] = STATE(51), - [sym_seh_leave_statement] = STATE(51), - [sym_expression] = STATE(5862), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9665), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(51), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(51), - [sym_template_instantiation] = STATE(51), - [sym_operator_cast] = STATE(8100), - [sym_constructor_specifiers] = STATE(1950), - [sym_operator_cast_definition] = STATE(51), - [sym_operator_cast_declaration] = STATE(51), - [sym_constructor_or_destructor_definition] = STATE(51), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8100), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(172), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1950), + [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_preproc_else] = STATE(9372), + [sym_preproc_elif] = STATE(9372), + [sym_preproc_elifdef] = STATE(9372), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5889), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2223), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7326), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4055), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [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_seh_try_statement] = STATE(52), + [sym_seh_leave_statement] = STATE(52), + [sym_expression] = STATE(5188), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9691), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(52), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(52), + [sym_template_instantiation] = STATE(52), + [sym_operator_cast] = STATE(7706), + [sym_constructor_specifiers] = STATE(1949), + [sym_operator_cast_definition] = STATE(52), + [sym_operator_cast_declaration] = STATE(52), + [sym_constructor_or_destructor_definition] = STATE(52), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7706), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(168), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(52), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(233), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1949), [sym_identifier] = ACTIONS(275), [aux_sym_preproc_include_token1] = ACTIONS(277), [aux_sym_preproc_def_token1] = ACTIONS(279), @@ -51696,136 +42117,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [21] = { - [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_preproc_else] = STATE(10587), - [sym_preproc_elif] = STATE(10587), - [sym_preproc_elifdef] = STATE(10587), - [sym_function_definition] = STATE(51), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6397), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2100), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7721), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(51), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4229), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [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_seh_try_statement] = STATE(51), - [sym_seh_leave_statement] = STATE(51), - [sym_expression] = STATE(5862), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9665), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(51), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(51), - [sym_template_instantiation] = STATE(51), - [sym_operator_cast] = STATE(8100), - [sym_constructor_specifiers] = STATE(1950), - [sym_operator_cast_definition] = STATE(51), - [sym_operator_cast_declaration] = STATE(51), - [sym_constructor_or_destructor_definition] = STATE(51), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8100), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(172), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1950), + [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_preproc_else] = STATE(9704), + [sym_preproc_elif] = STATE(9704), + [sym_preproc_elifdef] = STATE(9704), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5889), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2223), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7326), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4055), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [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_seh_try_statement] = STATE(52), + [sym_seh_leave_statement] = STATE(52), + [sym_expression] = STATE(5188), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9691), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(52), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(52), + [sym_template_instantiation] = STATE(52), + [sym_operator_cast] = STATE(7706), + [sym_constructor_specifiers] = STATE(1949), + [sym_operator_cast_definition] = STATE(52), + [sym_operator_cast_declaration] = STATE(52), + [sym_constructor_or_destructor_definition] = STATE(52), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7706), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(168), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(52), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(233), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1949), [sym_identifier] = ACTIONS(275), [aux_sym_preproc_include_token1] = ACTIONS(277), [aux_sym_preproc_def_token1] = ACTIONS(279), @@ -51971,34 +42392,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(24), [sym_preproc_if] = STATE(24), [sym_preproc_ifdef] = STATE(24), - [sym_preproc_else] = STATE(9968), - [sym_preproc_elif] = STATE(9968), - [sym_preproc_elifdef] = STATE(9968), + [sym_preproc_else] = STATE(9425), + [sym_preproc_elif] = STATE(9425), + [sym_preproc_elifdef] = STATE(9425), [sym_function_definition] = STATE(24), [sym_declaration] = STATE(24), [sym_type_definition] = STATE(24), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6397), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5889), [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2100), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7721), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2223), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7326), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(24), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4229), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4055), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(24), [sym_labeled_statement] = STATE(24), [sym_expression_statement] = STATE(24), @@ -52014,51 +42435,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(24), [sym_seh_try_statement] = STATE(24), [sym_seh_leave_statement] = STATE(24), - [sym_expression] = STATE(5862), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9665), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(5188), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9691), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(24), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(24), [sym_template_instantiation] = STATE(24), - [sym_operator_cast] = STATE(8100), - [sym_constructor_specifiers] = STATE(1950), + [sym_operator_cast] = STATE(7706), + [sym_constructor_specifiers] = STATE(1949), [sym_operator_cast_definition] = STATE(24), [sym_operator_cast_declaration] = STATE(24), [sym_constructor_or_destructor_definition] = STATE(24), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(24), [sym_namespace_alias_definition] = STATE(24), [sym_using_declaration] = STATE(24), @@ -52070,31 +42491,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(24), [sym_throw_statement] = STATE(24), [sym_try_statement] = STATE(24), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8100), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(172), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7706), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(168), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1950), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(233), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1949), [sym_identifier] = ACTIONS(275), [aux_sym_preproc_include_token1] = ACTIONS(277), [aux_sym_preproc_def_token1] = ACTIONS(279), @@ -52240,34 +42661,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(25), [sym_preproc_if] = STATE(25), [sym_preproc_ifdef] = STATE(25), - [sym_preproc_else] = STATE(9983), - [sym_preproc_elif] = STATE(9983), - [sym_preproc_elifdef] = STATE(9983), + [sym_preproc_else] = STATE(9497), + [sym_preproc_elif] = STATE(9497), + [sym_preproc_elifdef] = STATE(9497), [sym_function_definition] = STATE(25), [sym_declaration] = STATE(25), [sym_type_definition] = STATE(25), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6397), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5889), [sym_linkage_specification] = STATE(25), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2100), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7721), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2223), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7326), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(25), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4229), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4055), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(25), [sym_labeled_statement] = STATE(25), [sym_expression_statement] = STATE(25), @@ -52283,51 +42704,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(25), [sym_seh_try_statement] = STATE(25), [sym_seh_leave_statement] = STATE(25), - [sym_expression] = STATE(5862), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9665), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(5188), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9691), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(25), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(25), [sym_template_instantiation] = STATE(25), - [sym_operator_cast] = STATE(8100), - [sym_constructor_specifiers] = STATE(1950), + [sym_operator_cast] = STATE(7706), + [sym_constructor_specifiers] = STATE(1949), [sym_operator_cast_definition] = STATE(25), [sym_operator_cast_declaration] = STATE(25), [sym_constructor_or_destructor_definition] = STATE(25), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(25), [sym_namespace_alias_definition] = STATE(25), [sym_using_declaration] = STATE(25), @@ -52339,31 +42760,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(25), [sym_throw_statement] = STATE(25), [sym_try_statement] = STATE(25), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8100), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(172), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7706), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(168), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(25), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1950), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(233), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1949), [sym_identifier] = ACTIONS(275), [aux_sym_preproc_include_token1] = ACTIONS(277), [aux_sym_preproc_def_token1] = ACTIONS(279), @@ -52503,136 +42924,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [24] = { - [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_preproc_else] = STATE(10347), - [sym_preproc_elif] = STATE(10347), - [sym_preproc_elifdef] = STATE(10347), - [sym_function_definition] = STATE(51), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6397), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2100), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7721), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(51), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4229), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [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_seh_try_statement] = STATE(51), - [sym_seh_leave_statement] = STATE(51), - [sym_expression] = STATE(5862), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9665), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(51), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(51), - [sym_template_instantiation] = STATE(51), - [sym_operator_cast] = STATE(8100), - [sym_constructor_specifiers] = STATE(1950), - [sym_operator_cast_definition] = STATE(51), - [sym_operator_cast_declaration] = STATE(51), - [sym_constructor_or_destructor_definition] = STATE(51), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8100), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(172), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1950), + [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_preproc_else] = STATE(9596), + [sym_preproc_elif] = STATE(9596), + [sym_preproc_elifdef] = STATE(9596), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5889), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2223), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7326), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4055), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [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_seh_try_statement] = STATE(52), + [sym_seh_leave_statement] = STATE(52), + [sym_expression] = STATE(5188), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9691), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(52), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(52), + [sym_template_instantiation] = STATE(52), + [sym_operator_cast] = STATE(7706), + [sym_constructor_specifiers] = STATE(1949), + [sym_operator_cast_definition] = STATE(52), + [sym_operator_cast_declaration] = STATE(52), + [sym_constructor_or_destructor_definition] = STATE(52), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7706), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(168), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(52), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(233), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1949), [sym_identifier] = ACTIONS(275), [aux_sym_preproc_include_token1] = ACTIONS(277), [aux_sym_preproc_def_token1] = ACTIONS(279), @@ -52772,136 +43193,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [25] = { - [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_preproc_else] = STATE(10349), - [sym_preproc_elif] = STATE(10349), - [sym_preproc_elifdef] = STATE(10349), - [sym_function_definition] = STATE(51), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6397), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2100), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7721), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(51), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4229), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [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_seh_try_statement] = STATE(51), - [sym_seh_leave_statement] = STATE(51), - [sym_expression] = STATE(5862), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9665), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(51), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(51), - [sym_template_instantiation] = STATE(51), - [sym_operator_cast] = STATE(8100), - [sym_constructor_specifiers] = STATE(1950), - [sym_operator_cast_definition] = STATE(51), - [sym_operator_cast_declaration] = STATE(51), - [sym_constructor_or_destructor_definition] = STATE(51), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8100), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(172), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1950), + [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_preproc_else] = STATE(9602), + [sym_preproc_elif] = STATE(9602), + [sym_preproc_elifdef] = STATE(9602), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5889), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2223), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7326), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4055), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [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_seh_try_statement] = STATE(52), + [sym_seh_leave_statement] = STATE(52), + [sym_expression] = STATE(5188), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9691), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(52), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(52), + [sym_template_instantiation] = STATE(52), + [sym_operator_cast] = STATE(7706), + [sym_constructor_specifiers] = STATE(1949), + [sym_operator_cast_definition] = STATE(52), + [sym_operator_cast_declaration] = STATE(52), + [sym_constructor_or_destructor_definition] = STATE(52), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7706), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(168), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(52), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(233), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1949), [sym_identifier] = ACTIONS(275), [aux_sym_preproc_include_token1] = ACTIONS(277), [aux_sym_preproc_def_token1] = ACTIONS(279), @@ -53047,34 +43468,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(21), [sym_preproc_if] = STATE(21), [sym_preproc_ifdef] = STATE(21), - [sym_preproc_else] = STATE(9794), - [sym_preproc_elif] = STATE(9794), - [sym_preproc_elifdef] = STATE(9794), + [sym_preproc_else] = STATE(9155), + [sym_preproc_elif] = STATE(9155), + [sym_preproc_elifdef] = STATE(9155), [sym_function_definition] = STATE(21), [sym_declaration] = STATE(21), [sym_type_definition] = STATE(21), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6397), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5889), [sym_linkage_specification] = STATE(21), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2100), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7721), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2223), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7326), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(21), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4229), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4055), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(21), [sym_labeled_statement] = STATE(21), [sym_expression_statement] = STATE(21), @@ -53090,51 +43511,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(21), [sym_seh_try_statement] = STATE(21), [sym_seh_leave_statement] = STATE(21), - [sym_expression] = STATE(5862), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9665), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(5188), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9691), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(21), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(21), [sym_template_instantiation] = STATE(21), - [sym_operator_cast] = STATE(8100), - [sym_constructor_specifiers] = STATE(1950), + [sym_operator_cast] = STATE(7706), + [sym_constructor_specifiers] = STATE(1949), [sym_operator_cast_definition] = STATE(21), [sym_operator_cast_declaration] = STATE(21), [sym_constructor_or_destructor_definition] = STATE(21), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(21), [sym_namespace_alias_definition] = STATE(21), [sym_using_declaration] = STATE(21), @@ -53146,31 +43567,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(21), [sym_throw_statement] = STATE(21), [sym_try_statement] = STATE(21), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8100), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(172), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7706), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(168), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(21), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1950), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(233), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1949), [sym_identifier] = ACTIONS(275), [aux_sym_preproc_include_token1] = ACTIONS(277), [aux_sym_preproc_def_token1] = ACTIONS(279), @@ -53316,34 +43737,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(29), [sym_preproc_if] = STATE(29), [sym_preproc_ifdef] = STATE(29), - [sym_preproc_else] = STATE(9743), - [sym_preproc_elif] = STATE(9743), - [sym_preproc_elifdef] = STATE(9743), + [sym_preproc_else] = STATE(9156), + [sym_preproc_elif] = STATE(9156), + [sym_preproc_elifdef] = STATE(9156), [sym_function_definition] = STATE(29), [sym_declaration] = STATE(29), [sym_type_definition] = STATE(29), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6397), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5889), [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2100), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7721), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2223), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7326), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4229), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4055), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(29), [sym_labeled_statement] = STATE(29), [sym_expression_statement] = STATE(29), @@ -53359,51 +43780,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(29), [sym_seh_try_statement] = STATE(29), [sym_seh_leave_statement] = STATE(29), - [sym_expression] = STATE(5862), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9665), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(5188), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9691), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(29), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(29), [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(8100), - [sym_constructor_specifiers] = STATE(1950), + [sym_operator_cast] = STATE(7706), + [sym_constructor_specifiers] = STATE(1949), [sym_operator_cast_definition] = STATE(29), [sym_operator_cast_declaration] = STATE(29), [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(29), [sym_namespace_alias_definition] = STATE(29), [sym_using_declaration] = STATE(29), @@ -53415,31 +43836,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(29), [sym_throw_statement] = STATE(29), [sym_try_statement] = STATE(29), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8100), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(172), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7706), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(168), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(29), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1950), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(233), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1949), [sym_identifier] = ACTIONS(275), [aux_sym_preproc_include_token1] = ACTIONS(277), [aux_sym_preproc_def_token1] = ACTIONS(279), @@ -53585,34 +44006,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(30), [sym_preproc_if] = STATE(30), [sym_preproc_ifdef] = STATE(30), - [sym_preproc_else] = STATE(9931), - [sym_preproc_elif] = STATE(9931), - [sym_preproc_elifdef] = STATE(9931), + [sym_preproc_else] = STATE(9214), + [sym_preproc_elif] = STATE(9214), + [sym_preproc_elifdef] = STATE(9214), [sym_function_definition] = STATE(30), [sym_declaration] = STATE(30), [sym_type_definition] = STATE(30), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6397), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5889), [sym_linkage_specification] = STATE(30), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2100), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7721), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2223), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7326), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(30), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4229), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4055), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(30), [sym_labeled_statement] = STATE(30), [sym_expression_statement] = STATE(30), @@ -53628,51 +44049,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(30), [sym_seh_try_statement] = STATE(30), [sym_seh_leave_statement] = STATE(30), - [sym_expression] = STATE(5862), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9665), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(5188), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9691), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(30), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(30), [sym_template_instantiation] = STATE(30), - [sym_operator_cast] = STATE(8100), - [sym_constructor_specifiers] = STATE(1950), + [sym_operator_cast] = STATE(7706), + [sym_constructor_specifiers] = STATE(1949), [sym_operator_cast_definition] = STATE(30), [sym_operator_cast_declaration] = STATE(30), [sym_constructor_or_destructor_definition] = STATE(30), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(30), [sym_namespace_alias_definition] = STATE(30), [sym_using_declaration] = STATE(30), @@ -53684,31 +44105,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(30), [sym_throw_statement] = STATE(30), [sym_try_statement] = STATE(30), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8100), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(172), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7706), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(168), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(30), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1950), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(233), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1949), [sym_identifier] = ACTIONS(275), [aux_sym_preproc_include_token1] = ACTIONS(277), [aux_sym_preproc_def_token1] = ACTIONS(279), @@ -53848,136 +44269,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [29] = { - [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_preproc_else] = STATE(9988), - [sym_preproc_elif] = STATE(9988), - [sym_preproc_elifdef] = STATE(9988), - [sym_function_definition] = STATE(51), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6397), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2100), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7721), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(51), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4229), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [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_seh_try_statement] = STATE(51), - [sym_seh_leave_statement] = STATE(51), - [sym_expression] = STATE(5862), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9665), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(51), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(51), - [sym_template_instantiation] = STATE(51), - [sym_operator_cast] = STATE(8100), - [sym_constructor_specifiers] = STATE(1950), - [sym_operator_cast_definition] = STATE(51), - [sym_operator_cast_declaration] = STATE(51), - [sym_constructor_or_destructor_definition] = STATE(51), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8100), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(172), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1950), + [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_preproc_else] = STATE(9578), + [sym_preproc_elif] = STATE(9578), + [sym_preproc_elifdef] = STATE(9578), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5889), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2223), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7326), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4055), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [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_seh_try_statement] = STATE(52), + [sym_seh_leave_statement] = STATE(52), + [sym_expression] = STATE(5188), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9691), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(52), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(52), + [sym_template_instantiation] = STATE(52), + [sym_operator_cast] = STATE(7706), + [sym_constructor_specifiers] = STATE(1949), + [sym_operator_cast_definition] = STATE(52), + [sym_operator_cast_declaration] = STATE(52), + [sym_constructor_or_destructor_definition] = STATE(52), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7706), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(168), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(52), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(233), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1949), [sym_identifier] = ACTIONS(275), [aux_sym_preproc_include_token1] = ACTIONS(277), [aux_sym_preproc_def_token1] = ACTIONS(279), @@ -54117,136 +44538,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [30] = { - [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_preproc_else] = STATE(10004), - [sym_preproc_elif] = STATE(10004), - [sym_preproc_elifdef] = STATE(10004), - [sym_function_definition] = STATE(51), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6397), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2100), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7721), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(51), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4229), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [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_seh_try_statement] = STATE(51), - [sym_seh_leave_statement] = STATE(51), - [sym_expression] = STATE(5862), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9665), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(51), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(51), - [sym_template_instantiation] = STATE(51), - [sym_operator_cast] = STATE(8100), - [sym_constructor_specifiers] = STATE(1950), - [sym_operator_cast_definition] = STATE(51), - [sym_operator_cast_declaration] = STATE(51), - [sym_constructor_or_destructor_definition] = STATE(51), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8100), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(172), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1950), + [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_preproc_else] = STATE(9580), + [sym_preproc_elif] = STATE(9580), + [sym_preproc_elifdef] = STATE(9580), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5889), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2223), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7326), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4055), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [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_seh_try_statement] = STATE(52), + [sym_seh_leave_statement] = STATE(52), + [sym_expression] = STATE(5188), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9691), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(52), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(52), + [sym_template_instantiation] = STATE(52), + [sym_operator_cast] = STATE(7706), + [sym_constructor_specifiers] = STATE(1949), + [sym_operator_cast_definition] = STATE(52), + [sym_operator_cast_declaration] = STATE(52), + [sym_constructor_or_destructor_definition] = STATE(52), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7706), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(168), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(52), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(233), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1949), [sym_identifier] = ACTIONS(275), [aux_sym_preproc_include_token1] = ACTIONS(277), [aux_sym_preproc_def_token1] = ACTIONS(279), @@ -54392,34 +44813,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(16), [sym_preproc_if] = STATE(16), [sym_preproc_ifdef] = STATE(16), - [sym_preproc_else] = STATE(9692), - [sym_preproc_elif] = STATE(9692), - [sym_preproc_elifdef] = STATE(9692), + [sym_preproc_else] = STATE(9995), + [sym_preproc_elif] = STATE(9995), + [sym_preproc_elifdef] = STATE(9995), [sym_function_definition] = STATE(16), [sym_declaration] = STATE(16), [sym_type_definition] = STATE(16), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6397), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5889), [sym_linkage_specification] = STATE(16), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2100), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7721), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2223), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7326), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(16), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4229), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4055), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(16), [sym_labeled_statement] = STATE(16), [sym_expression_statement] = STATE(16), @@ -54435,51 +44856,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(16), [sym_seh_try_statement] = STATE(16), [sym_seh_leave_statement] = STATE(16), - [sym_expression] = STATE(5862), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9665), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(5188), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9691), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(16), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(16), [sym_template_instantiation] = STATE(16), - [sym_operator_cast] = STATE(8100), - [sym_constructor_specifiers] = STATE(1950), + [sym_operator_cast] = STATE(7706), + [sym_constructor_specifiers] = STATE(1949), [sym_operator_cast_definition] = STATE(16), [sym_operator_cast_declaration] = STATE(16), [sym_constructor_or_destructor_definition] = STATE(16), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(16), [sym_namespace_alias_definition] = STATE(16), [sym_using_declaration] = STATE(16), @@ -54491,31 +44912,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(16), [sym_throw_statement] = STATE(16), [sym_try_statement] = STATE(16), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8100), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(172), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7706), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(168), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(16), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1950), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(233), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1949), [sym_identifier] = ACTIONS(275), [aux_sym_preproc_include_token1] = ACTIONS(277), [aux_sym_preproc_def_token1] = ACTIONS(279), @@ -54655,136 +45076,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [32] = { - [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_preproc_else] = STATE(9715), - [sym_preproc_elif] = STATE(9715), - [sym_preproc_elifdef] = STATE(9715), - [sym_function_definition] = STATE(33), - [sym_declaration] = STATE(33), - [sym_type_definition] = STATE(33), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6397), - [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2100), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7721), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(33), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4229), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [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_seh_try_statement] = STATE(33), - [sym_seh_leave_statement] = STATE(33), - [sym_expression] = STATE(5862), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9665), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(33), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(33), - [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(8100), - [sym_constructor_specifiers] = STATE(1950), - [sym_operator_cast_definition] = STATE(33), - [sym_operator_cast_declaration] = STATE(33), - [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8100), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(172), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1950), + [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_preproc_else] = STATE(10052), + [sym_preproc_elif] = STATE(10052), + [sym_preproc_elifdef] = STATE(10052), + [sym_function_definition] = STATE(34), + [sym_declaration] = STATE(34), + [sym_type_definition] = STATE(34), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5889), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2223), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7326), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4055), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [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_seh_try_statement] = STATE(34), + [sym_seh_leave_statement] = STATE(34), + [sym_expression] = STATE(5188), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9691), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(34), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(34), + [sym_template_instantiation] = STATE(34), + [sym_operator_cast] = STATE(7706), + [sym_constructor_specifiers] = STATE(1949), + [sym_operator_cast_definition] = STATE(34), + [sym_operator_cast_declaration] = STATE(34), + [sym_constructor_or_destructor_definition] = STATE(34), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7706), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(168), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(34), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(233), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1949), [sym_identifier] = ACTIONS(275), [aux_sym_preproc_include_token1] = ACTIONS(277), [aux_sym_preproc_def_token1] = ACTIONS(279), @@ -54924,136 +45345,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [33] = { - [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_preproc_else] = STATE(10140), - [sym_preproc_elif] = STATE(10140), - [sym_preproc_elifdef] = STATE(10140), - [sym_function_definition] = STATE(51), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6397), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2100), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7721), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(51), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4229), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [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_seh_try_statement] = STATE(51), - [sym_seh_leave_statement] = STATE(51), - [sym_expression] = STATE(5862), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9665), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(51), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(51), - [sym_template_instantiation] = STATE(51), - [sym_operator_cast] = STATE(8100), - [sym_constructor_specifiers] = STATE(1950), - [sym_operator_cast_definition] = STATE(51), - [sym_operator_cast_declaration] = STATE(51), - [sym_constructor_or_destructor_definition] = STATE(51), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8100), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(172), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1950), + [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_preproc_else] = STATE(9577), + [sym_preproc_elif] = STATE(9577), + [sym_preproc_elifdef] = STATE(9577), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5889), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2223), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7326), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4055), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [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_seh_try_statement] = STATE(52), + [sym_seh_leave_statement] = STATE(52), + [sym_expression] = STATE(5188), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9691), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(52), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(52), + [sym_template_instantiation] = STATE(52), + [sym_operator_cast] = STATE(7706), + [sym_constructor_specifiers] = STATE(1949), + [sym_operator_cast_definition] = STATE(52), + [sym_operator_cast_declaration] = STATE(52), + [sym_constructor_or_destructor_definition] = STATE(52), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7706), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(168), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(52), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(233), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1949), [sym_identifier] = ACTIONS(275), [aux_sym_preproc_include_token1] = ACTIONS(277), [aux_sym_preproc_def_token1] = ACTIONS(279), @@ -55193,136 +45614,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [34] = { - [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_preproc_else] = STATE(10462), - [sym_preproc_elif] = STATE(10462), - [sym_preproc_elifdef] = STATE(10462), - [sym_function_definition] = STATE(51), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6397), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2100), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7721), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(51), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4229), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [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_seh_try_statement] = STATE(51), - [sym_seh_leave_statement] = STATE(51), - [sym_expression] = STATE(5862), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9665), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(51), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(51), - [sym_template_instantiation] = STATE(51), - [sym_operator_cast] = STATE(8100), - [sym_constructor_specifiers] = STATE(1950), - [sym_operator_cast_definition] = STATE(51), - [sym_operator_cast_declaration] = STATE(51), - [sym_constructor_or_destructor_definition] = STATE(51), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8100), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(172), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1950), + [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_preproc_else] = STATE(9502), + [sym_preproc_elif] = STATE(9502), + [sym_preproc_elifdef] = STATE(9502), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5889), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2223), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7326), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4055), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [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_seh_try_statement] = STATE(52), + [sym_seh_leave_statement] = STATE(52), + [sym_expression] = STATE(5188), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9691), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(52), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(52), + [sym_template_instantiation] = STATE(52), + [sym_operator_cast] = STATE(7706), + [sym_constructor_specifiers] = STATE(1949), + [sym_operator_cast_definition] = STATE(52), + [sym_operator_cast_declaration] = STATE(52), + [sym_constructor_or_destructor_definition] = STATE(52), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7706), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(168), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(52), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(233), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1949), [sym_identifier] = ACTIONS(275), [aux_sym_preproc_include_token1] = ACTIONS(277), [aux_sym_preproc_def_token1] = ACTIONS(279), @@ -55462,136 +45883,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [35] = { - [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_preproc_else] = STATE(10249), - [sym_preproc_elif] = STATE(10249), - [sym_preproc_elifdef] = STATE(10249), - [sym_function_definition] = STATE(34), - [sym_declaration] = STATE(34), - [sym_type_definition] = STATE(34), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6397), - [sym_linkage_specification] = STATE(34), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2100), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7721), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(34), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4229), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [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_seh_try_statement] = STATE(34), - [sym_seh_leave_statement] = STATE(34), - [sym_expression] = STATE(5862), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9665), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(34), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(34), - [sym_template_instantiation] = STATE(34), - [sym_operator_cast] = STATE(8100), - [sym_constructor_specifiers] = STATE(1950), - [sym_operator_cast_definition] = STATE(34), - [sym_operator_cast_declaration] = STATE(34), - [sym_constructor_or_destructor_definition] = STATE(34), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8100), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(172), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(34), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1950), + [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_preproc_else] = STATE(9443), + [sym_preproc_elif] = STATE(9443), + [sym_preproc_elifdef] = STATE(9443), + [sym_function_definition] = STATE(33), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5889), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2223), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7326), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4055), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [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_seh_try_statement] = STATE(33), + [sym_seh_leave_statement] = STATE(33), + [sym_expression] = STATE(5188), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9691), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(33), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(33), + [sym_template_instantiation] = STATE(33), + [sym_operator_cast] = STATE(7706), + [sym_constructor_specifiers] = STATE(1949), + [sym_operator_cast_definition] = STATE(33), + [sym_operator_cast_declaration] = STATE(33), + [sym_constructor_or_destructor_definition] = STATE(33), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7706), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(168), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(233), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1949), [sym_identifier] = ACTIONS(275), [aux_sym_preproc_include_token1] = ACTIONS(277), [aux_sym_preproc_def_token1] = ACTIONS(279), @@ -55737,33 +46158,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(53), [sym_preproc_if] = STATE(53), [sym_preproc_ifdef] = STATE(53), - [sym_preproc_else] = STATE(10681), - [sym_preproc_elif] = STATE(10681), + [sym_preproc_else] = STATE(9207), + [sym_preproc_elif] = STATE(9207), [sym_function_definition] = STATE(53), [sym_declaration] = STATE(53), [sym_type_definition] = STATE(53), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6402), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5894), [sym_linkage_specification] = STATE(53), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2101), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7706), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2224), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7377), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4258), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4092), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(53), [sym_labeled_statement] = STATE(53), [sym_expression_statement] = STATE(53), @@ -55779,51 +46200,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(53), [sym_seh_try_statement] = STATE(53), [sym_seh_leave_statement] = STATE(53), - [sym_expression] = STATE(5788), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9707), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(5277), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9725), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(53), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(53), [sym_template_instantiation] = STATE(53), - [sym_operator_cast] = STATE(8113), - [sym_constructor_specifiers] = STATE(1933), + [sym_operator_cast] = STATE(7758), + [sym_constructor_specifiers] = STATE(1941), [sym_operator_cast_definition] = STATE(53), [sym_operator_cast_declaration] = STATE(53), [sym_constructor_or_destructor_definition] = STATE(53), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(53), [sym_namespace_alias_definition] = STATE(53), [sym_using_declaration] = STATE(53), @@ -55835,31 +46256,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(53), [sym_throw_statement] = STATE(53), [sym_try_statement] = STATE(53), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8113), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(174), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7758), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(170), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(53), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(229), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1933), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(243), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1941), [sym_identifier] = ACTIONS(395), [aux_sym_preproc_include_token1] = ACTIONS(397), [aux_sym_preproc_def_token1] = ACTIONS(399), @@ -55997,135 +46418,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [37] = { - [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_preproc_else] = STATE(10085), - [sym_preproc_elif] = STATE(10085), - [sym_function_definition] = STATE(53), - [sym_declaration] = STATE(53), - [sym_type_definition] = STATE(53), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6402), - [sym_linkage_specification] = STATE(53), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2101), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7706), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4258), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [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_seh_try_statement] = STATE(53), - [sym_seh_leave_statement] = STATE(53), - [sym_expression] = STATE(5788), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9707), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(53), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(53), - [sym_template_instantiation] = STATE(53), - [sym_operator_cast] = STATE(8113), - [sym_constructor_specifiers] = STATE(1933), - [sym_operator_cast_definition] = STATE(53), - [sym_operator_cast_declaration] = STATE(53), - [sym_constructor_or_destructor_definition] = STATE(53), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8113), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(174), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(53), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(229), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1933), + [sym_preproc_include] = STATE(44), + [sym_preproc_def] = STATE(44), + [sym_preproc_function_def] = STATE(44), + [sym_preproc_call] = STATE(44), + [sym_preproc_if] = STATE(44), + [sym_preproc_ifdef] = STATE(44), + [sym_preproc_else] = STATE(9123), + [sym_preproc_elif] = STATE(9123), + [sym_function_definition] = STATE(44), + [sym_declaration] = STATE(44), + [sym_type_definition] = STATE(44), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5894), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2224), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7377), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(44), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4092), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(44), + [sym_labeled_statement] = STATE(44), + [sym_expression_statement] = STATE(44), + [sym_if_statement] = STATE(44), + [sym_switch_statement] = STATE(44), + [sym_case_statement] = STATE(44), + [sym_while_statement] = STATE(44), + [sym_do_statement] = STATE(44), + [sym_for_statement] = STATE(44), + [sym_return_statement] = STATE(44), + [sym_break_statement] = STATE(44), + [sym_continue_statement] = STATE(44), + [sym_goto_statement] = STATE(44), + [sym_seh_try_statement] = STATE(44), + [sym_seh_leave_statement] = STATE(44), + [sym_expression] = STATE(5277), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9725), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(44), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(44), + [sym_template_instantiation] = STATE(44), + [sym_operator_cast] = STATE(7758), + [sym_constructor_specifiers] = STATE(1941), + [sym_operator_cast_definition] = STATE(44), + [sym_operator_cast_declaration] = STATE(44), + [sym_constructor_or_destructor_definition] = STATE(44), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(44), + [sym_namespace_alias_definition] = STATE(44), + [sym_using_declaration] = STATE(44), + [sym_alias_declaration] = STATE(44), + [sym_static_assert_declaration] = STATE(44), + [sym_concept_definition] = STATE(44), + [sym_for_range_loop] = STATE(44), + [sym_co_return_statement] = STATE(44), + [sym_co_yield_statement] = STATE(44), + [sym_throw_statement] = STATE(44), + [sym_try_statement] = STATE(44), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7758), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(170), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(243), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1941), [sym_identifier] = ACTIONS(395), [aux_sym_preproc_include_token1] = ACTIONS(397), [aux_sym_preproc_def_token1] = ACTIONS(399), @@ -56269,33 +46690,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(53), [sym_preproc_if] = STATE(53), [sym_preproc_ifdef] = STATE(53), - [sym_preproc_else] = STATE(9846), - [sym_preproc_elif] = STATE(9846), + [sym_preproc_else] = STATE(9710), + [sym_preproc_elif] = STATE(9710), [sym_function_definition] = STATE(53), [sym_declaration] = STATE(53), [sym_type_definition] = STATE(53), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6402), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5894), [sym_linkage_specification] = STATE(53), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2101), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7706), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2224), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7377), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4258), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4092), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(53), [sym_labeled_statement] = STATE(53), [sym_expression_statement] = STATE(53), @@ -56311,51 +46732,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(53), [sym_seh_try_statement] = STATE(53), [sym_seh_leave_statement] = STATE(53), - [sym_expression] = STATE(5788), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9707), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(5277), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9725), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(53), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(53), [sym_template_instantiation] = STATE(53), - [sym_operator_cast] = STATE(8113), - [sym_constructor_specifiers] = STATE(1933), + [sym_operator_cast] = STATE(7758), + [sym_constructor_specifiers] = STATE(1941), [sym_operator_cast_definition] = STATE(53), [sym_operator_cast_declaration] = STATE(53), [sym_constructor_or_destructor_definition] = STATE(53), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(53), [sym_namespace_alias_definition] = STATE(53), [sym_using_declaration] = STATE(53), @@ -56367,31 +46788,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(53), [sym_throw_statement] = STATE(53), [sym_try_statement] = STATE(53), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8113), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(174), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7758), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(170), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(53), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(229), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1933), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(243), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1941), [sym_identifier] = ACTIONS(395), [aux_sym_preproc_include_token1] = ACTIONS(397), [aux_sym_preproc_def_token1] = ACTIONS(399), @@ -56535,33 +46956,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(40), [sym_preproc_if] = STATE(40), [sym_preproc_ifdef] = STATE(40), - [sym_preproc_else] = STATE(9733), - [sym_preproc_elif] = STATE(9733), + [sym_preproc_else] = STATE(9227), + [sym_preproc_elif] = STATE(9227), [sym_function_definition] = STATE(40), [sym_declaration] = STATE(40), [sym_type_definition] = STATE(40), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6402), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5894), [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2101), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7706), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2224), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7377), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4258), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4092), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(40), [sym_labeled_statement] = STATE(40), [sym_expression_statement] = STATE(40), @@ -56577,51 +46998,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(40), [sym_seh_try_statement] = STATE(40), [sym_seh_leave_statement] = STATE(40), - [sym_expression] = STATE(5788), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9707), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(5277), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9725), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(40), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(40), [sym_template_instantiation] = STATE(40), - [sym_operator_cast] = STATE(8113), - [sym_constructor_specifiers] = STATE(1933), + [sym_operator_cast] = STATE(7758), + [sym_constructor_specifiers] = STATE(1941), [sym_operator_cast_definition] = STATE(40), [sym_operator_cast_declaration] = STATE(40), [sym_constructor_or_destructor_definition] = STATE(40), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(40), [sym_namespace_alias_definition] = STATE(40), [sym_using_declaration] = STATE(40), @@ -56633,31 +47054,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(40), [sym_throw_statement] = STATE(40), [sym_try_statement] = STATE(40), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8113), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(174), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7758), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(170), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(40), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(229), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1933), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(243), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1941), [sym_identifier] = ACTIONS(395), [aux_sym_preproc_include_token1] = ACTIONS(397), [aux_sym_preproc_def_token1] = ACTIONS(399), @@ -56801,33 +47222,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(53), [sym_preproc_if] = STATE(53), [sym_preproc_ifdef] = STATE(53), - [sym_preproc_else] = STATE(9827), - [sym_preproc_elif] = STATE(9827), + [sym_preproc_else] = STATE(9269), + [sym_preproc_elif] = STATE(9269), [sym_function_definition] = STATE(53), [sym_declaration] = STATE(53), [sym_type_definition] = STATE(53), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6402), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5894), [sym_linkage_specification] = STATE(53), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2101), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7706), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2224), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7377), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4258), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4092), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(53), [sym_labeled_statement] = STATE(53), [sym_expression_statement] = STATE(53), @@ -56843,51 +47264,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(53), [sym_seh_try_statement] = STATE(53), [sym_seh_leave_statement] = STATE(53), - [sym_expression] = STATE(5788), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9707), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(5277), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9725), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(53), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(53), [sym_template_instantiation] = STATE(53), - [sym_operator_cast] = STATE(8113), - [sym_constructor_specifiers] = STATE(1933), + [sym_operator_cast] = STATE(7758), + [sym_constructor_specifiers] = STATE(1941), [sym_operator_cast_definition] = STATE(53), [sym_operator_cast_declaration] = STATE(53), [sym_constructor_or_destructor_definition] = STATE(53), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(53), [sym_namespace_alias_definition] = STATE(53), [sym_using_declaration] = STATE(53), @@ -56899,31 +47320,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(53), [sym_throw_statement] = STATE(53), [sym_try_statement] = STATE(53), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8113), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(174), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7758), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(170), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(53), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(229), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1933), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(243), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1941), [sym_identifier] = ACTIONS(395), [aux_sym_preproc_include_token1] = ACTIONS(397), [aux_sym_preproc_def_token1] = ACTIONS(399), @@ -57067,33 +47488,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(45), [sym_preproc_if] = STATE(45), [sym_preproc_ifdef] = STATE(45), - [sym_preproc_else] = STATE(10127), - [sym_preproc_elif] = STATE(10127), + [sym_preproc_else] = STATE(9496), + [sym_preproc_elif] = STATE(9496), [sym_function_definition] = STATE(45), [sym_declaration] = STATE(45), [sym_type_definition] = STATE(45), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6402), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5894), [sym_linkage_specification] = STATE(45), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2101), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7706), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2224), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7377), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(45), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4258), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4092), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(45), [sym_labeled_statement] = STATE(45), [sym_expression_statement] = STATE(45), @@ -57109,51 +47530,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(45), [sym_seh_try_statement] = STATE(45), [sym_seh_leave_statement] = STATE(45), - [sym_expression] = STATE(5788), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9707), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(5277), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9725), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(45), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(45), [sym_template_instantiation] = STATE(45), - [sym_operator_cast] = STATE(8113), - [sym_constructor_specifiers] = STATE(1933), + [sym_operator_cast] = STATE(7758), + [sym_constructor_specifiers] = STATE(1941), [sym_operator_cast_definition] = STATE(45), [sym_operator_cast_declaration] = STATE(45), [sym_constructor_or_destructor_definition] = STATE(45), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(45), [sym_namespace_alias_definition] = STATE(45), [sym_using_declaration] = STATE(45), @@ -57165,31 +47586,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(45), [sym_throw_statement] = STATE(45), [sym_try_statement] = STATE(45), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8113), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(174), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7758), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(170), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(45), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(229), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1933), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(243), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1941), [sym_identifier] = ACTIONS(395), [aux_sym_preproc_include_token1] = ACTIONS(397), [aux_sym_preproc_def_token1] = ACTIONS(399), @@ -57327,135 +47748,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [42] = { - [sym_preproc_include] = STATE(47), - [sym_preproc_def] = STATE(47), - [sym_preproc_function_def] = STATE(47), - [sym_preproc_call] = STATE(47), - [sym_preproc_if] = STATE(47), - [sym_preproc_ifdef] = STATE(47), - [sym_preproc_else] = STATE(10094), - [sym_preproc_elif] = STATE(10094), - [sym_function_definition] = STATE(47), - [sym_declaration] = STATE(47), - [sym_type_definition] = STATE(47), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6402), - [sym_linkage_specification] = STATE(47), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2101), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7706), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(47), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4258), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(47), - [sym_labeled_statement] = STATE(47), - [sym_expression_statement] = STATE(47), - [sym_if_statement] = STATE(47), - [sym_switch_statement] = STATE(47), - [sym_case_statement] = STATE(47), - [sym_while_statement] = STATE(47), - [sym_do_statement] = STATE(47), - [sym_for_statement] = STATE(47), - [sym_return_statement] = STATE(47), - [sym_break_statement] = STATE(47), - [sym_continue_statement] = STATE(47), - [sym_goto_statement] = STATE(47), - [sym_seh_try_statement] = STATE(47), - [sym_seh_leave_statement] = STATE(47), - [sym_expression] = STATE(5788), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9707), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(47), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(47), - [sym_template_instantiation] = STATE(47), - [sym_operator_cast] = STATE(8113), - [sym_constructor_specifiers] = STATE(1933), - [sym_operator_cast_definition] = STATE(47), - [sym_operator_cast_declaration] = STATE(47), - [sym_constructor_or_destructor_definition] = STATE(47), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(47), - [sym_namespace_alias_definition] = STATE(47), - [sym_using_declaration] = STATE(47), - [sym_alias_declaration] = STATE(47), - [sym_static_assert_declaration] = STATE(47), - [sym_concept_definition] = STATE(47), - [sym_for_range_loop] = STATE(47), - [sym_co_return_statement] = STATE(47), - [sym_co_yield_statement] = STATE(47), - [sym_throw_statement] = STATE(47), - [sym_try_statement] = STATE(47), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8113), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(174), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(47), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(229), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1933), + [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_preproc_else] = STATE(9574), + [sym_preproc_elif] = STATE(9574), + [sym_function_definition] = STATE(38), + [sym_declaration] = STATE(38), + [sym_type_definition] = STATE(38), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5894), + [sym_linkage_specification] = STATE(38), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2224), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7377), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(38), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4092), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [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_seh_try_statement] = STATE(38), + [sym_seh_leave_statement] = STATE(38), + [sym_expression] = STATE(5277), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9725), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(38), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(38), + [sym_template_instantiation] = STATE(38), + [sym_operator_cast] = STATE(7758), + [sym_constructor_specifiers] = STATE(1941), + [sym_operator_cast_definition] = STATE(38), + [sym_operator_cast_declaration] = STATE(38), + [sym_constructor_or_destructor_definition] = STATE(38), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7758), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(170), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(38), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(243), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1941), [sym_identifier] = ACTIONS(395), [aux_sym_preproc_include_token1] = ACTIONS(397), [aux_sym_preproc_def_token1] = ACTIONS(399), @@ -57593,135 +48014,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [43] = { - [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_preproc_else] = STATE(9927), - [sym_preproc_elif] = STATE(9927), - [sym_function_definition] = STATE(38), - [sym_declaration] = STATE(38), - [sym_type_definition] = STATE(38), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6402), - [sym_linkage_specification] = STATE(38), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2101), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7706), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(38), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4258), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [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_seh_try_statement] = STATE(38), - [sym_seh_leave_statement] = STATE(38), - [sym_expression] = STATE(5788), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9707), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(38), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(38), - [sym_template_instantiation] = STATE(38), - [sym_operator_cast] = STATE(8113), - [sym_constructor_specifiers] = STATE(1933), - [sym_operator_cast_definition] = STATE(38), - [sym_operator_cast_declaration] = STATE(38), - [sym_constructor_or_destructor_definition] = STATE(38), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8113), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(174), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(38), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(229), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1933), + [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_preproc_else] = STATE(9558), + [sym_preproc_elif] = STATE(9558), + [sym_function_definition] = STATE(36), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5894), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2224), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7377), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(36), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4092), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [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_seh_try_statement] = STATE(36), + [sym_seh_leave_statement] = STATE(36), + [sym_expression] = STATE(5277), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9725), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(36), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(36), + [sym_template_instantiation] = STATE(36), + [sym_operator_cast] = STATE(7758), + [sym_constructor_specifiers] = STATE(1941), + [sym_operator_cast_definition] = STATE(36), + [sym_operator_cast_declaration] = STATE(36), + [sym_constructor_or_destructor_definition] = STATE(36), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7758), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(170), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(36), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(243), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1941), [sym_identifier] = ACTIONS(395), [aux_sym_preproc_include_token1] = ACTIONS(397), [aux_sym_preproc_def_token1] = ACTIONS(399), @@ -57859,135 +48280,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [44] = { - [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_preproc_else] = STATE(10107), - [sym_preproc_elif] = STATE(10107), - [sym_function_definition] = STATE(48), - [sym_declaration] = STATE(48), - [sym_type_definition] = STATE(48), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6402), - [sym_linkage_specification] = STATE(48), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2101), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7706), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(48), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4258), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [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_seh_try_statement] = STATE(48), - [sym_seh_leave_statement] = STATE(48), - [sym_expression] = STATE(5788), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9707), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(48), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(48), - [sym_template_instantiation] = STATE(48), - [sym_operator_cast] = STATE(8113), - [sym_constructor_specifiers] = STATE(1933), - [sym_operator_cast_definition] = STATE(48), - [sym_operator_cast_declaration] = STATE(48), - [sym_constructor_or_destructor_definition] = STATE(48), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8113), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(174), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(48), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(229), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1933), + [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_preproc_else] = STATE(9306), + [sym_preproc_elif] = STATE(9306), + [sym_function_definition] = STATE(53), + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5894), + [sym_linkage_specification] = STATE(53), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2224), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7377), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(53), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4092), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [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_seh_try_statement] = STATE(53), + [sym_seh_leave_statement] = STATE(53), + [sym_expression] = STATE(5277), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9725), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(53), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(53), + [sym_template_instantiation] = STATE(53), + [sym_operator_cast] = STATE(7758), + [sym_constructor_specifiers] = STATE(1941), + [sym_operator_cast_definition] = STATE(53), + [sym_operator_cast_declaration] = STATE(53), + [sym_constructor_or_destructor_definition] = STATE(53), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7758), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(170), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(53), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(243), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1941), [sym_identifier] = ACTIONS(395), [aux_sym_preproc_include_token1] = ACTIONS(397), [aux_sym_preproc_def_token1] = ACTIONS(399), @@ -58131,33 +48552,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(53), [sym_preproc_if] = STATE(53), [sym_preproc_ifdef] = STATE(53), - [sym_preproc_else] = STATE(10337), - [sym_preproc_elif] = STATE(10337), + [sym_preproc_else] = STATE(9947), + [sym_preproc_elif] = STATE(9947), [sym_function_definition] = STATE(53), [sym_declaration] = STATE(53), [sym_type_definition] = STATE(53), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6402), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5894), [sym_linkage_specification] = STATE(53), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2101), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7706), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2224), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7377), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4258), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4092), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(53), [sym_labeled_statement] = STATE(53), [sym_expression_statement] = STATE(53), @@ -58173,51 +48594,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(53), [sym_seh_try_statement] = STATE(53), [sym_seh_leave_statement] = STATE(53), - [sym_expression] = STATE(5788), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9707), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(5277), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9725), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(53), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(53), [sym_template_instantiation] = STATE(53), - [sym_operator_cast] = STATE(8113), - [sym_constructor_specifiers] = STATE(1933), + [sym_operator_cast] = STATE(7758), + [sym_constructor_specifiers] = STATE(1941), [sym_operator_cast_definition] = STATE(53), [sym_operator_cast_declaration] = STATE(53), [sym_constructor_or_destructor_definition] = STATE(53), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(53), [sym_namespace_alias_definition] = STATE(53), [sym_using_declaration] = STATE(53), @@ -58229,31 +48650,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(53), [sym_throw_statement] = STATE(53), [sym_try_statement] = STATE(53), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8113), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(174), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7758), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(170), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(53), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(229), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1933), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(243), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1941), [sym_identifier] = ACTIONS(395), [aux_sym_preproc_include_token1] = ACTIONS(397), [aux_sym_preproc_def_token1] = ACTIONS(399), @@ -58397,33 +48818,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(49), [sym_preproc_if] = STATE(49), [sym_preproc_ifdef] = STATE(49), - [sym_preproc_else] = STATE(10582), - [sym_preproc_elif] = STATE(10582), + [sym_preproc_else] = STATE(9478), + [sym_preproc_elif] = STATE(9478), [sym_function_definition] = STATE(49), [sym_declaration] = STATE(49), [sym_type_definition] = STATE(49), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6402), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5894), [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2101), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7706), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2224), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7377), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4258), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4092), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(49), [sym_labeled_statement] = STATE(49), [sym_expression_statement] = STATE(49), @@ -58439,51 +48860,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(49), [sym_seh_try_statement] = STATE(49), [sym_seh_leave_statement] = STATE(49), - [sym_expression] = STATE(5788), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9707), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(5277), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9725), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(49), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(49), [sym_template_instantiation] = STATE(49), - [sym_operator_cast] = STATE(8113), - [sym_constructor_specifiers] = STATE(1933), + [sym_operator_cast] = STATE(7758), + [sym_constructor_specifiers] = STATE(1941), [sym_operator_cast_definition] = STATE(49), [sym_operator_cast_declaration] = STATE(49), [sym_constructor_or_destructor_definition] = STATE(49), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(49), [sym_namespace_alias_definition] = STATE(49), [sym_using_declaration] = STATE(49), @@ -58495,31 +48916,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(49), [sym_throw_statement] = STATE(49), [sym_try_statement] = STATE(49), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8113), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(174), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7758), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(170), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(49), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(229), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1933), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(243), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1941), [sym_identifier] = ACTIONS(395), [aux_sym_preproc_include_token1] = ACTIONS(397), [aux_sym_preproc_def_token1] = ACTIONS(399), @@ -58657,135 +49078,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [47] = { - [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_preproc_else] = STATE(9656), - [sym_preproc_elif] = STATE(9656), - [sym_function_definition] = STATE(53), - [sym_declaration] = STATE(53), - [sym_type_definition] = STATE(53), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6402), - [sym_linkage_specification] = STATE(53), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2101), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7706), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4258), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [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_seh_try_statement] = STATE(53), - [sym_seh_leave_statement] = STATE(53), - [sym_expression] = STATE(5788), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9707), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(53), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(53), - [sym_template_instantiation] = STATE(53), - [sym_operator_cast] = STATE(8113), - [sym_constructor_specifiers] = STATE(1933), - [sym_operator_cast_definition] = STATE(53), - [sym_operator_cast_declaration] = STATE(53), - [sym_constructor_or_destructor_definition] = STATE(53), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8113), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(174), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(53), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(229), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1933), + [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_preproc_else] = STATE(9552), + [sym_preproc_elif] = STATE(9552), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5894), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2224), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7377), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4092), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [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_seh_try_statement] = STATE(50), + [sym_seh_leave_statement] = STATE(50), + [sym_expression] = STATE(5277), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9725), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(50), + [sym_template_instantiation] = STATE(50), + [sym_operator_cast] = STATE(7758), + [sym_constructor_specifiers] = STATE(1941), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7758), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(170), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(50), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(243), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1941), [sym_identifier] = ACTIONS(395), [aux_sym_preproc_include_token1] = ACTIONS(397), [aux_sym_preproc_def_token1] = ACTIONS(399), @@ -58923,39 +49344,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [48] = { + [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_preproc_else] = STATE(9809), + [sym_preproc_elif] = STATE(9809), + [sym_function_definition] = STATE(51), + [sym_declaration] = STATE(51), + [sym_type_definition] = STATE(51), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5894), + [sym_linkage_specification] = STATE(51), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2224), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7377), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(51), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4092), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [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_seh_try_statement] = STATE(51), + [sym_seh_leave_statement] = STATE(51), + [sym_expression] = STATE(5277), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9725), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(51), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(51), + [sym_template_instantiation] = STATE(51), + [sym_operator_cast] = STATE(7758), + [sym_constructor_specifiers] = STATE(1941), + [sym_operator_cast_definition] = STATE(51), + [sym_operator_cast_declaration] = STATE(51), + [sym_constructor_or_destructor_definition] = STATE(51), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7758), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(170), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(51), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(243), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1941), + [sym_identifier] = ACTIONS(395), + [aux_sym_preproc_include_token1] = ACTIONS(397), + [aux_sym_preproc_def_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [aux_sym_preproc_if_token1] = ACTIONS(403), + [aux_sym_preproc_if_token2] = ACTIONS(491), + [aux_sym_preproc_ifdef_token1] = ACTIONS(407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(409), + [aux_sym_preproc_else_token1] = ACTIONS(291), + [aux_sym_preproc_elif_token1] = ACTIONS(293), + [sym_preproc_directive] = ACTIONS(411), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(35), + [anon_sym_SEMI] = ACTIONS(413), + [anon_sym___extension__] = ACTIONS(415), + [anon_sym_typedef] = ACTIONS(417), + [anon_sym_extern] = ACTIONS(419), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(47), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(53), + [anon_sym___clrcall] = ACTIONS(53), + [anon_sym___stdcall] = ACTIONS(53), + [anon_sym___fastcall] = ACTIONS(53), + [anon_sym___thiscall] = ACTIONS(53), + [anon_sym___vectorcall] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(423), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(67), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_union] = ACTIONS(75), + [anon_sym_if] = ACTIONS(425), + [anon_sym_switch] = ACTIONS(427), + [anon_sym_case] = ACTIONS(429), + [anon_sym_default] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_do] = ACTIONS(435), + [anon_sym_for] = ACTIONS(437), + [anon_sym_return] = ACTIONS(439), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_goto] = ACTIONS(445), + [anon_sym___try] = ACTIONS(447), + [anon_sym___leave] = ACTIONS(449), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(451), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_try] = ACTIONS(453), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_throw] = ACTIONS(455), + [anon_sym_namespace] = ACTIONS(457), + [anon_sym_using] = ACTIONS(459), + [anon_sym_static_assert] = ACTIONS(461), + [anon_sym_concept] = ACTIONS(463), + [anon_sym_co_return] = ACTIONS(465), + [anon_sym_co_yield] = ACTIONS(467), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), + }, + [49] = { [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_preproc_else] = STATE(9769), - [sym_preproc_elif] = STATE(9769), + [sym_preproc_else] = STATE(9869), + [sym_preproc_elif] = STATE(9869), [sym_function_definition] = STATE(53), [sym_declaration] = STATE(53), [sym_type_definition] = STATE(53), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6402), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5894), [sym_linkage_specification] = STATE(53), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2101), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7706), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2224), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7377), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4258), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4092), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(53), [sym_labeled_statement] = STATE(53), [sym_expression_statement] = STATE(53), @@ -58971,51 +49658,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(53), [sym_seh_try_statement] = STATE(53), [sym_seh_leave_statement] = STATE(53), - [sym_expression] = STATE(5788), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9707), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(5277), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9725), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(53), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(53), [sym_template_instantiation] = STATE(53), - [sym_operator_cast] = STATE(8113), - [sym_constructor_specifiers] = STATE(1933), + [sym_operator_cast] = STATE(7758), + [sym_constructor_specifiers] = STATE(1941), [sym_operator_cast_definition] = STATE(53), [sym_operator_cast_declaration] = STATE(53), [sym_constructor_or_destructor_definition] = STATE(53), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(53), [sym_namespace_alias_definition] = STATE(53), [sym_using_declaration] = STATE(53), @@ -59027,37 +49714,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(53), [sym_throw_statement] = STATE(53), [sym_try_statement] = STATE(53), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8113), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(174), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7758), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(170), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(53), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(229), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1933), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(243), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1941), [sym_identifier] = ACTIONS(395), [aux_sym_preproc_include_token1] = ACTIONS(397), [aux_sym_preproc_def_token1] = ACTIONS(399), [anon_sym_DOT_DOT_DOT] = ACTIONS(401), [aux_sym_preproc_if_token1] = ACTIONS(403), - [aux_sym_preproc_if_token2] = ACTIONS(491), + [aux_sym_preproc_if_token2] = ACTIONS(493), [aux_sym_preproc_ifdef_token1] = ACTIONS(407), [aux_sym_preproc_ifdef_token2] = ACTIONS(409), [aux_sym_preproc_else_token1] = ACTIONS(291), @@ -59188,40 +49875,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [49] = { + [50] = { [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_preproc_else] = STATE(9986), - [sym_preproc_elif] = STATE(9986), + [sym_preproc_else] = STATE(9874), + [sym_preproc_elif] = STATE(9874), [sym_function_definition] = STATE(53), [sym_declaration] = STATE(53), [sym_type_definition] = STATE(53), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6402), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5894), [sym_linkage_specification] = STATE(53), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2101), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7706), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2224), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7377), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4258), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4092), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(53), [sym_labeled_statement] = STATE(53), [sym_expression_statement] = STATE(53), @@ -59237,51 +49924,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(53), [sym_seh_try_statement] = STATE(53), [sym_seh_leave_statement] = STATE(53), - [sym_expression] = STATE(5788), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9707), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(5277), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9725), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(53), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(53), [sym_template_instantiation] = STATE(53), - [sym_operator_cast] = STATE(8113), - [sym_constructor_specifiers] = STATE(1933), + [sym_operator_cast] = STATE(7758), + [sym_constructor_specifiers] = STATE(1941), [sym_operator_cast_definition] = STATE(53), [sym_operator_cast_declaration] = STATE(53), [sym_constructor_or_destructor_definition] = STATE(53), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(53), [sym_namespace_alias_definition] = STATE(53), [sym_using_declaration] = STATE(53), @@ -59293,297 +49980,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(53), [sym_throw_statement] = STATE(53), [sym_try_statement] = STATE(53), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8113), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(174), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7758), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(170), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(53), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(229), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1933), - [sym_identifier] = ACTIONS(395), - [aux_sym_preproc_include_token1] = ACTIONS(397), - [aux_sym_preproc_def_token1] = ACTIONS(399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(401), - [aux_sym_preproc_if_token1] = ACTIONS(403), - [aux_sym_preproc_if_token2] = ACTIONS(493), - [aux_sym_preproc_ifdef_token1] = ACTIONS(407), - [aux_sym_preproc_ifdef_token2] = ACTIONS(409), - [aux_sym_preproc_else_token1] = ACTIONS(291), - [aux_sym_preproc_elif_token1] = ACTIONS(293), - [sym_preproc_directive] = ACTIONS(411), - [anon_sym_LPAREN2] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(413), - [anon_sym___extension__] = ACTIONS(415), - [anon_sym_typedef] = ACTIONS(417), - [anon_sym_extern] = ACTIONS(419), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(47), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(53), - [anon_sym___clrcall] = ACTIONS(53), - [anon_sym___stdcall] = ACTIONS(53), - [anon_sym___fastcall] = ACTIONS(53), - [anon_sym___thiscall] = ACTIONS(53), - [anon_sym___vectorcall] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(421), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(423), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(67), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_case] = ACTIONS(429), - [anon_sym_default] = ACTIONS(431), - [anon_sym_while] = ACTIONS(433), - [anon_sym_do] = ACTIONS(435), - [anon_sym_for] = ACTIONS(437), - [anon_sym_return] = ACTIONS(439), - [anon_sym_break] = ACTIONS(441), - [anon_sym_continue] = ACTIONS(443), - [anon_sym_goto] = ACTIONS(445), - [anon_sym___try] = ACTIONS(447), - [anon_sym___leave] = ACTIONS(449), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(451), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_try] = ACTIONS(453), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(455), - [anon_sym_namespace] = ACTIONS(457), - [anon_sym_using] = ACTIONS(459), - [anon_sym_static_assert] = ACTIONS(461), - [anon_sym_concept] = ACTIONS(463), - [anon_sym_co_return] = ACTIONS(465), - [anon_sym_co_yield] = ACTIONS(467), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), - }, - [50] = { - [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_preproc_else] = STATE(9816), - [sym_preproc_elif] = STATE(9816), - [sym_function_definition] = STATE(37), - [sym_declaration] = STATE(37), - [sym_type_definition] = STATE(37), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6402), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2101), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7706), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(37), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4258), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [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_seh_try_statement] = STATE(37), - [sym_seh_leave_statement] = STATE(37), - [sym_expression] = STATE(5788), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9707), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(37), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(37), - [sym_template_instantiation] = STATE(37), - [sym_operator_cast] = STATE(8113), - [sym_constructor_specifiers] = STATE(1933), - [sym_operator_cast_definition] = STATE(37), - [sym_operator_cast_declaration] = STATE(37), - [sym_constructor_or_destructor_definition] = STATE(37), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8113), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(174), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(37), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(229), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1933), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(243), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1941), [sym_identifier] = ACTIONS(395), [aux_sym_preproc_include_token1] = ACTIONS(397), [aux_sym_preproc_def_token1] = ACTIONS(399), @@ -59721,407 +50142,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [51] = { - [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(4228), - [sym_declaration_specifiers] = STATE(6397), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2100), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7721), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(51), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4229), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [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_seh_try_statement] = STATE(51), - [sym_seh_leave_statement] = STATE(51), - [sym_expression] = STATE(5862), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9665), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(51), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(51), - [sym_template_instantiation] = STATE(51), - [sym_operator_cast] = STATE(8100), - [sym_constructor_specifiers] = STATE(1950), - [sym_operator_cast_definition] = STATE(51), - [sym_operator_cast_declaration] = STATE(51), - [sym_constructor_or_destructor_definition] = STATE(51), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8100), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(172), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1950), - [sym_identifier] = ACTIONS(497), - [aux_sym_preproc_include_token1] = ACTIONS(500), - [aux_sym_preproc_def_token1] = ACTIONS(503), - [anon_sym_DOT_DOT_DOT] = ACTIONS(506), - [aux_sym_preproc_if_token1] = ACTIONS(509), - [aux_sym_preproc_if_token2] = ACTIONS(512), - [aux_sym_preproc_ifdef_token1] = ACTIONS(514), - [aux_sym_preproc_ifdef_token2] = ACTIONS(517), - [aux_sym_preproc_else_token1] = ACTIONS(512), - [aux_sym_preproc_elif_token1] = ACTIONS(512), - [aux_sym_preproc_elifdef_token1] = ACTIONS(512), - [aux_sym_preproc_elifdef_token2] = ACTIONS(512), - [sym_preproc_directive] = ACTIONS(520), - [anon_sym_LPAREN2] = ACTIONS(523), - [anon_sym_BANG] = ACTIONS(526), - [anon_sym_TILDE] = ACTIONS(529), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_PLUS] = ACTIONS(532), - [anon_sym_STAR] = ACTIONS(535), - [anon_sym_AMP_AMP] = ACTIONS(538), - [anon_sym_AMP] = ACTIONS(541), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym___extension__] = ACTIONS(547), - [anon_sym_typedef] = ACTIONS(550), - [anon_sym_extern] = ACTIONS(553), - [anon_sym___attribute__] = ACTIONS(556), - [anon_sym_COLON_COLON] = ACTIONS(559), - [anon_sym_LBRACK_LBRACK] = ACTIONS(562), - [anon_sym___declspec] = ACTIONS(565), - [anon_sym___based] = ACTIONS(568), - [anon_sym___cdecl] = ACTIONS(571), - [anon_sym___clrcall] = ACTIONS(571), - [anon_sym___stdcall] = ACTIONS(571), - [anon_sym___fastcall] = ACTIONS(571), - [anon_sym___thiscall] = ACTIONS(571), - [anon_sym___vectorcall] = ACTIONS(571), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_signed] = ACTIONS(577), - [anon_sym_unsigned] = ACTIONS(577), - [anon_sym_long] = ACTIONS(577), - [anon_sym_short] = ACTIONS(577), - [anon_sym_LBRACK] = ACTIONS(580), - [anon_sym_static] = ACTIONS(583), - [anon_sym_register] = ACTIONS(583), - [anon_sym_inline] = ACTIONS(586), - [anon_sym___inline] = ACTIONS(583), - [anon_sym___inline__] = ACTIONS(583), - [anon_sym___forceinline] = ACTIONS(583), - [anon_sym_thread_local] = ACTIONS(583), - [anon_sym___thread] = ACTIONS(583), - [anon_sym_const] = ACTIONS(589), - [anon_sym_constexpr] = ACTIONS(589), - [anon_sym_volatile] = ACTIONS(589), - [anon_sym_restrict] = ACTIONS(589), - [anon_sym___restrict__] = ACTIONS(589), - [anon_sym__Atomic] = ACTIONS(589), - [anon_sym__Noreturn] = ACTIONS(589), - [anon_sym_noreturn] = ACTIONS(589), - [anon_sym_mutable] = ACTIONS(589), - [anon_sym_constinit] = ACTIONS(589), - [anon_sym_consteval] = ACTIONS(589), - [sym_primitive_type] = ACTIONS(592), - [anon_sym_enum] = ACTIONS(595), - [anon_sym_class] = ACTIONS(598), - [anon_sym_struct] = ACTIONS(601), - [anon_sym_union] = ACTIONS(604), - [anon_sym_if] = ACTIONS(607), - [anon_sym_switch] = ACTIONS(610), - [anon_sym_case] = ACTIONS(613), - [anon_sym_default] = ACTIONS(616), - [anon_sym_while] = ACTIONS(619), - [anon_sym_do] = ACTIONS(622), - [anon_sym_for] = ACTIONS(625), - [anon_sym_return] = ACTIONS(628), - [anon_sym_break] = ACTIONS(631), - [anon_sym_continue] = ACTIONS(634), - [anon_sym_goto] = ACTIONS(637), - [anon_sym___try] = ACTIONS(640), - [anon_sym___leave] = ACTIONS(643), - [anon_sym_not] = ACTIONS(532), - [anon_sym_compl] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(646), - [anon_sym_PLUS_PLUS] = ACTIONS(646), - [anon_sym_sizeof] = ACTIONS(649), - [anon_sym___alignof__] = ACTIONS(652), - [anon_sym___alignof] = ACTIONS(652), - [anon_sym__alignof] = ACTIONS(652), - [anon_sym_alignof] = ACTIONS(652), - [anon_sym__Alignof] = ACTIONS(652), - [anon_sym_offsetof] = ACTIONS(655), - [anon_sym__Generic] = ACTIONS(658), - [anon_sym_asm] = ACTIONS(661), - [anon_sym___asm__] = ACTIONS(661), - [sym_number_literal] = ACTIONS(664), - [anon_sym_L_SQUOTE] = ACTIONS(667), - [anon_sym_u_SQUOTE] = ACTIONS(667), - [anon_sym_U_SQUOTE] = ACTIONS(667), - [anon_sym_u8_SQUOTE] = ACTIONS(667), - [anon_sym_SQUOTE] = ACTIONS(667), - [anon_sym_L_DQUOTE] = ACTIONS(670), - [anon_sym_u_DQUOTE] = ACTIONS(670), - [anon_sym_U_DQUOTE] = ACTIONS(670), - [anon_sym_u8_DQUOTE] = ACTIONS(670), - [anon_sym_DQUOTE] = ACTIONS(670), - [sym_true] = ACTIONS(673), - [sym_false] = ACTIONS(673), - [anon_sym_NULL] = ACTIONS(676), - [anon_sym_nullptr] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(679), - [anon_sym_decltype] = ACTIONS(682), - [anon_sym_virtual] = ACTIONS(685), - [anon_sym_alignas] = ACTIONS(688), - [anon_sym_explicit] = ACTIONS(691), - [anon_sym_typename] = ACTIONS(694), - [anon_sym_template] = ACTIONS(697), - [anon_sym_operator] = ACTIONS(700), - [anon_sym_try] = ACTIONS(703), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_throw] = ACTIONS(709), - [anon_sym_namespace] = ACTIONS(712), - [anon_sym_using] = ACTIONS(715), - [anon_sym_static_assert] = ACTIONS(718), - [anon_sym_concept] = ACTIONS(721), - [anon_sym_co_return] = ACTIONS(724), - [anon_sym_co_yield] = ACTIONS(727), - [anon_sym_R_DQUOTE] = ACTIONS(730), - [anon_sym_LR_DQUOTE] = ACTIONS(730), - [anon_sym_uR_DQUOTE] = ACTIONS(730), - [anon_sym_UR_DQUOTE] = ACTIONS(730), - [anon_sym_u8R_DQUOTE] = ACTIONS(730), - [anon_sym_co_await] = ACTIONS(733), - [anon_sym_new] = ACTIONS(736), - [anon_sym_requires] = ACTIONS(739), - [sym_this] = ACTIONS(673), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(742), - [sym_semgrep_named_ellipsis] = ACTIONS(745), - }, - [52] = { - [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_preproc_else] = STATE(10342), - [sym_preproc_elif] = STATE(10342), - [sym_function_definition] = STATE(36), - [sym_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6402), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2101), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7706), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4258), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [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_seh_try_statement] = STATE(36), - [sym_seh_leave_statement] = STATE(36), - [sym_expression] = STATE(5788), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9707), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(36), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(36), - [sym_template_instantiation] = STATE(36), - [sym_operator_cast] = STATE(8113), - [sym_constructor_specifiers] = STATE(1933), - [sym_operator_cast_definition] = STATE(36), - [sym_operator_cast_declaration] = STATE(36), - [sym_constructor_or_destructor_definition] = STATE(36), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8113), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(174), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(36), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(229), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1933), + [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_preproc_else] = STATE(9964), + [sym_preproc_elif] = STATE(9964), + [sym_function_definition] = STATE(53), + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5894), + [sym_linkage_specification] = STATE(53), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2224), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7377), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(53), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4092), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [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_seh_try_statement] = STATE(53), + [sym_seh_leave_statement] = STATE(53), + [sym_expression] = STATE(5277), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9725), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(53), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(53), + [sym_template_instantiation] = STATE(53), + [sym_operator_cast] = STATE(7758), + [sym_constructor_specifiers] = STATE(1941), + [sym_operator_cast_definition] = STATE(53), + [sym_operator_cast_declaration] = STATE(53), + [sym_constructor_or_destructor_definition] = STATE(53), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7758), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(170), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(53), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(243), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1941), [sym_identifier] = ACTIONS(395), [aux_sym_preproc_include_token1] = ACTIONS(397), [aux_sym_preproc_def_token1] = ACTIONS(399), [anon_sym_DOT_DOT_DOT] = ACTIONS(401), [aux_sym_preproc_if_token1] = ACTIONS(403), - [aux_sym_preproc_if_token2] = ACTIONS(748), + [aux_sym_preproc_if_token2] = ACTIONS(497), [aux_sym_preproc_ifdef_token1] = ACTIONS(407), [aux_sym_preproc_ifdef_token2] = ACTIONS(409), [aux_sym_preproc_else_token1] = ACTIONS(291), @@ -60252,6 +50407,272 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, + [52] = { + [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(4040), + [sym_declaration_specifiers] = STATE(5889), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2223), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7326), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4055), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [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_seh_try_statement] = STATE(52), + [sym_seh_leave_statement] = STATE(52), + [sym_expression] = STATE(5188), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9691), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(52), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(52), + [sym_template_instantiation] = STATE(52), + [sym_operator_cast] = STATE(7706), + [sym_constructor_specifiers] = STATE(1949), + [sym_operator_cast_definition] = STATE(52), + [sym_operator_cast_declaration] = STATE(52), + [sym_constructor_or_destructor_definition] = STATE(52), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7706), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(168), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(52), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(233), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1949), + [sym_identifier] = ACTIONS(499), + [aux_sym_preproc_include_token1] = ACTIONS(502), + [aux_sym_preproc_def_token1] = ACTIONS(505), + [anon_sym_DOT_DOT_DOT] = ACTIONS(508), + [aux_sym_preproc_if_token1] = ACTIONS(511), + [aux_sym_preproc_if_token2] = ACTIONS(514), + [aux_sym_preproc_ifdef_token1] = ACTIONS(516), + [aux_sym_preproc_ifdef_token2] = ACTIONS(519), + [aux_sym_preproc_else_token1] = ACTIONS(514), + [aux_sym_preproc_elif_token1] = ACTIONS(514), + [aux_sym_preproc_elifdef_token1] = ACTIONS(514), + [aux_sym_preproc_elifdef_token2] = ACTIONS(514), + [sym_preproc_directive] = ACTIONS(522), + [anon_sym_LPAREN2] = ACTIONS(525), + [anon_sym_BANG] = ACTIONS(528), + [anon_sym_TILDE] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(534), + [anon_sym_PLUS] = ACTIONS(534), + [anon_sym_STAR] = ACTIONS(537), + [anon_sym_AMP_AMP] = ACTIONS(540), + [anon_sym_AMP] = ACTIONS(543), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym___extension__] = ACTIONS(549), + [anon_sym_typedef] = ACTIONS(552), + [anon_sym_extern] = ACTIONS(555), + [anon_sym___attribute__] = ACTIONS(558), + [anon_sym_COLON_COLON] = ACTIONS(561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(564), + [anon_sym___declspec] = ACTIONS(567), + [anon_sym___based] = ACTIONS(570), + [anon_sym___cdecl] = ACTIONS(573), + [anon_sym___clrcall] = ACTIONS(573), + [anon_sym___stdcall] = ACTIONS(573), + [anon_sym___fastcall] = ACTIONS(573), + [anon_sym___thiscall] = ACTIONS(573), + [anon_sym___vectorcall] = ACTIONS(573), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_signed] = ACTIONS(579), + [anon_sym_unsigned] = ACTIONS(579), + [anon_sym_long] = ACTIONS(579), + [anon_sym_short] = ACTIONS(579), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_static] = ACTIONS(585), + [anon_sym_register] = ACTIONS(585), + [anon_sym_inline] = ACTIONS(588), + [anon_sym___inline] = ACTIONS(585), + [anon_sym___inline__] = ACTIONS(585), + [anon_sym___forceinline] = ACTIONS(585), + [anon_sym_thread_local] = ACTIONS(585), + [anon_sym___thread] = ACTIONS(585), + [anon_sym_const] = ACTIONS(591), + [anon_sym_constexpr] = ACTIONS(591), + [anon_sym_volatile] = ACTIONS(591), + [anon_sym_restrict] = ACTIONS(591), + [anon_sym___restrict__] = ACTIONS(591), + [anon_sym__Atomic] = ACTIONS(591), + [anon_sym__Noreturn] = ACTIONS(591), + [anon_sym_noreturn] = ACTIONS(591), + [anon_sym_mutable] = ACTIONS(591), + [anon_sym_constinit] = ACTIONS(591), + [anon_sym_consteval] = ACTIONS(591), + [sym_primitive_type] = ACTIONS(594), + [anon_sym_enum] = ACTIONS(597), + [anon_sym_class] = ACTIONS(600), + [anon_sym_struct] = ACTIONS(603), + [anon_sym_union] = ACTIONS(606), + [anon_sym_if] = ACTIONS(609), + [anon_sym_switch] = ACTIONS(612), + [anon_sym_case] = ACTIONS(615), + [anon_sym_default] = ACTIONS(618), + [anon_sym_while] = ACTIONS(621), + [anon_sym_do] = ACTIONS(624), + [anon_sym_for] = ACTIONS(627), + [anon_sym_return] = ACTIONS(630), + [anon_sym_break] = ACTIONS(633), + [anon_sym_continue] = ACTIONS(636), + [anon_sym_goto] = ACTIONS(639), + [anon_sym___try] = ACTIONS(642), + [anon_sym___leave] = ACTIONS(645), + [anon_sym_not] = ACTIONS(534), + [anon_sym_compl] = ACTIONS(534), + [anon_sym_DASH_DASH] = ACTIONS(648), + [anon_sym_PLUS_PLUS] = ACTIONS(648), + [anon_sym_sizeof] = ACTIONS(651), + [anon_sym___alignof__] = ACTIONS(654), + [anon_sym___alignof] = ACTIONS(654), + [anon_sym__alignof] = ACTIONS(654), + [anon_sym_alignof] = ACTIONS(654), + [anon_sym__Alignof] = ACTIONS(654), + [anon_sym_offsetof] = ACTIONS(657), + [anon_sym__Generic] = ACTIONS(660), + [anon_sym_asm] = ACTIONS(663), + [anon_sym___asm__] = ACTIONS(663), + [sym_number_literal] = ACTIONS(666), + [anon_sym_L_SQUOTE] = ACTIONS(669), + [anon_sym_u_SQUOTE] = ACTIONS(669), + [anon_sym_U_SQUOTE] = ACTIONS(669), + [anon_sym_u8_SQUOTE] = ACTIONS(669), + [anon_sym_SQUOTE] = ACTIONS(669), + [anon_sym_L_DQUOTE] = ACTIONS(672), + [anon_sym_u_DQUOTE] = ACTIONS(672), + [anon_sym_U_DQUOTE] = ACTIONS(672), + [anon_sym_u8_DQUOTE] = ACTIONS(672), + [anon_sym_DQUOTE] = ACTIONS(672), + [sym_true] = ACTIONS(675), + [sym_false] = ACTIONS(675), + [anon_sym_NULL] = ACTIONS(678), + [anon_sym_nullptr] = ACTIONS(678), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(681), + [anon_sym_decltype] = ACTIONS(684), + [anon_sym_virtual] = ACTIONS(687), + [anon_sym_alignas] = ACTIONS(690), + [anon_sym_explicit] = ACTIONS(693), + [anon_sym_typename] = ACTIONS(696), + [anon_sym_template] = ACTIONS(699), + [anon_sym_operator] = ACTIONS(702), + [anon_sym_try] = ACTIONS(705), + [anon_sym_delete] = ACTIONS(708), + [anon_sym_throw] = ACTIONS(711), + [anon_sym_namespace] = ACTIONS(714), + [anon_sym_using] = ACTIONS(717), + [anon_sym_static_assert] = ACTIONS(720), + [anon_sym_concept] = ACTIONS(723), + [anon_sym_co_return] = ACTIONS(726), + [anon_sym_co_yield] = ACTIONS(729), + [anon_sym_R_DQUOTE] = ACTIONS(732), + [anon_sym_LR_DQUOTE] = ACTIONS(732), + [anon_sym_uR_DQUOTE] = ACTIONS(732), + [anon_sym_UR_DQUOTE] = ACTIONS(732), + [anon_sym_u8R_DQUOTE] = ACTIONS(732), + [anon_sym_co_await] = ACTIONS(735), + [anon_sym_new] = ACTIONS(738), + [anon_sym_requires] = ACTIONS(741), + [sym_this] = ACTIONS(675), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(744), + [sym_semgrep_named_ellipsis] = ACTIONS(747), + }, [53] = { [sym_preproc_include] = STATE(53), [sym_preproc_def] = STATE(53), @@ -60262,28 +50683,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(53), [sym_declaration] = STATE(53), [sym_type_definition] = STATE(53), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6402), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5894), [sym_linkage_specification] = STATE(53), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2101), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7706), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2224), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7377), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4258), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4092), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(53), [sym_labeled_statement] = STATE(53), [sym_expression_statement] = STATE(53), @@ -60299,51 +50720,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(53), [sym_seh_try_statement] = STATE(53), [sym_seh_leave_statement] = STATE(53), - [sym_expression] = STATE(5788), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9707), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(5277), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9725), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(53), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(53), [sym_template_instantiation] = STATE(53), - [sym_operator_cast] = STATE(8113), - [sym_constructor_specifiers] = STATE(1933), + [sym_operator_cast] = STATE(7758), + [sym_constructor_specifiers] = STATE(1941), [sym_operator_cast_definition] = STATE(53), [sym_operator_cast_declaration] = STATE(53), [sym_constructor_or_destructor_definition] = STATE(53), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(53), [sym_namespace_alias_definition] = STATE(53), [sym_using_declaration] = STATE(53), @@ -60355,95 +50776,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(53), [sym_throw_statement] = STATE(53), [sym_try_statement] = STATE(53), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8113), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(174), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7758), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(170), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(53), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(229), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1933), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(243), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1941), [sym_identifier] = ACTIONS(750), [aux_sym_preproc_include_token1] = ACTIONS(753), [aux_sym_preproc_def_token1] = ACTIONS(756), [anon_sym_DOT_DOT_DOT] = ACTIONS(759), [aux_sym_preproc_if_token1] = ACTIONS(762), - [aux_sym_preproc_if_token2] = ACTIONS(512), + [aux_sym_preproc_if_token2] = ACTIONS(514), [aux_sym_preproc_ifdef_token1] = ACTIONS(765), [aux_sym_preproc_ifdef_token2] = ACTIONS(768), - [aux_sym_preproc_else_token1] = ACTIONS(512), - [aux_sym_preproc_elif_token1] = ACTIONS(512), + [aux_sym_preproc_else_token1] = ACTIONS(514), + [aux_sym_preproc_elif_token1] = ACTIONS(514), [sym_preproc_directive] = ACTIONS(771), - [anon_sym_LPAREN2] = ACTIONS(523), - [anon_sym_BANG] = ACTIONS(526), - [anon_sym_TILDE] = ACTIONS(529), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_PLUS] = ACTIONS(532), - [anon_sym_STAR] = ACTIONS(535), - [anon_sym_AMP_AMP] = ACTIONS(538), - [anon_sym_AMP] = ACTIONS(541), + [anon_sym_LPAREN2] = ACTIONS(525), + [anon_sym_BANG] = ACTIONS(528), + [anon_sym_TILDE] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(534), + [anon_sym_PLUS] = ACTIONS(534), + [anon_sym_STAR] = ACTIONS(537), + [anon_sym_AMP_AMP] = ACTIONS(540), + [anon_sym_AMP] = ACTIONS(543), [anon_sym_SEMI] = ACTIONS(774), [anon_sym___extension__] = ACTIONS(777), [anon_sym_typedef] = ACTIONS(780), [anon_sym_extern] = ACTIONS(783), - [anon_sym___attribute__] = ACTIONS(556), - [anon_sym_COLON_COLON] = ACTIONS(559), - [anon_sym_LBRACK_LBRACK] = ACTIONS(562), - [anon_sym___declspec] = ACTIONS(565), - [anon_sym___based] = ACTIONS(568), - [anon_sym___cdecl] = ACTIONS(571), - [anon_sym___clrcall] = ACTIONS(571), - [anon_sym___stdcall] = ACTIONS(571), - [anon_sym___fastcall] = ACTIONS(571), - [anon_sym___thiscall] = ACTIONS(571), - [anon_sym___vectorcall] = ACTIONS(571), + [anon_sym___attribute__] = ACTIONS(558), + [anon_sym_COLON_COLON] = ACTIONS(561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(564), + [anon_sym___declspec] = ACTIONS(567), + [anon_sym___based] = ACTIONS(570), + [anon_sym___cdecl] = ACTIONS(573), + [anon_sym___clrcall] = ACTIONS(573), + [anon_sym___stdcall] = ACTIONS(573), + [anon_sym___fastcall] = ACTIONS(573), + [anon_sym___thiscall] = ACTIONS(573), + [anon_sym___vectorcall] = ACTIONS(573), [anon_sym_LBRACE] = ACTIONS(786), - [anon_sym_signed] = ACTIONS(577), - [anon_sym_unsigned] = ACTIONS(577), - [anon_sym_long] = ACTIONS(577), - [anon_sym_short] = ACTIONS(577), - [anon_sym_LBRACK] = ACTIONS(580), - [anon_sym_static] = ACTIONS(583), - [anon_sym_register] = ACTIONS(583), + [anon_sym_signed] = ACTIONS(579), + [anon_sym_unsigned] = ACTIONS(579), + [anon_sym_long] = ACTIONS(579), + [anon_sym_short] = ACTIONS(579), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_static] = ACTIONS(585), + [anon_sym_register] = ACTIONS(585), [anon_sym_inline] = ACTIONS(789), - [anon_sym___inline] = ACTIONS(583), - [anon_sym___inline__] = ACTIONS(583), - [anon_sym___forceinline] = ACTIONS(583), - [anon_sym_thread_local] = ACTIONS(583), - [anon_sym___thread] = ACTIONS(583), - [anon_sym_const] = ACTIONS(589), - [anon_sym_constexpr] = ACTIONS(589), - [anon_sym_volatile] = ACTIONS(589), - [anon_sym_restrict] = ACTIONS(589), - [anon_sym___restrict__] = ACTIONS(589), - [anon_sym__Atomic] = ACTIONS(589), - [anon_sym__Noreturn] = ACTIONS(589), - [anon_sym_noreturn] = ACTIONS(589), - [anon_sym_mutable] = ACTIONS(589), - [anon_sym_constinit] = ACTIONS(589), - [anon_sym_consteval] = ACTIONS(589), - [sym_primitive_type] = ACTIONS(592), - [anon_sym_enum] = ACTIONS(595), - [anon_sym_class] = ACTIONS(598), - [anon_sym_struct] = ACTIONS(601), - [anon_sym_union] = ACTIONS(604), + [anon_sym___inline] = ACTIONS(585), + [anon_sym___inline__] = ACTIONS(585), + [anon_sym___forceinline] = ACTIONS(585), + [anon_sym_thread_local] = ACTIONS(585), + [anon_sym___thread] = ACTIONS(585), + [anon_sym_const] = ACTIONS(591), + [anon_sym_constexpr] = ACTIONS(591), + [anon_sym_volatile] = ACTIONS(591), + [anon_sym_restrict] = ACTIONS(591), + [anon_sym___restrict__] = ACTIONS(591), + [anon_sym__Atomic] = ACTIONS(591), + [anon_sym__Noreturn] = ACTIONS(591), + [anon_sym_noreturn] = ACTIONS(591), + [anon_sym_mutable] = ACTIONS(591), + [anon_sym_constinit] = ACTIONS(591), + [anon_sym_consteval] = ACTIONS(591), + [sym_primitive_type] = ACTIONS(594), + [anon_sym_enum] = ACTIONS(597), + [anon_sym_class] = ACTIONS(600), + [anon_sym_struct] = ACTIONS(603), + [anon_sym_union] = ACTIONS(606), [anon_sym_if] = ACTIONS(792), [anon_sym_switch] = ACTIONS(795), [anon_sym_case] = ACTIONS(798), @@ -60457,46 +50878,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(822), [anon_sym___try] = ACTIONS(825), [anon_sym___leave] = ACTIONS(828), - [anon_sym_not] = ACTIONS(532), - [anon_sym_compl] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(646), - [anon_sym_PLUS_PLUS] = ACTIONS(646), - [anon_sym_sizeof] = ACTIONS(649), - [anon_sym___alignof__] = ACTIONS(652), - [anon_sym___alignof] = ACTIONS(652), - [anon_sym__alignof] = ACTIONS(652), - [anon_sym_alignof] = ACTIONS(652), - [anon_sym__Alignof] = ACTIONS(652), - [anon_sym_offsetof] = ACTIONS(655), - [anon_sym__Generic] = ACTIONS(658), - [anon_sym_asm] = ACTIONS(661), - [anon_sym___asm__] = ACTIONS(661), - [sym_number_literal] = ACTIONS(664), - [anon_sym_L_SQUOTE] = ACTIONS(667), - [anon_sym_u_SQUOTE] = ACTIONS(667), - [anon_sym_U_SQUOTE] = ACTIONS(667), - [anon_sym_u8_SQUOTE] = ACTIONS(667), - [anon_sym_SQUOTE] = ACTIONS(667), - [anon_sym_L_DQUOTE] = ACTIONS(670), - [anon_sym_u_DQUOTE] = ACTIONS(670), - [anon_sym_U_DQUOTE] = ACTIONS(670), - [anon_sym_u8_DQUOTE] = ACTIONS(670), - [anon_sym_DQUOTE] = ACTIONS(670), - [sym_true] = ACTIONS(673), - [sym_false] = ACTIONS(673), - [anon_sym_NULL] = ACTIONS(676), - [anon_sym_nullptr] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(679), - [anon_sym_decltype] = ACTIONS(682), - [anon_sym_virtual] = ACTIONS(685), - [anon_sym_alignas] = ACTIONS(688), - [anon_sym_explicit] = ACTIONS(691), - [anon_sym_typename] = ACTIONS(694), + [anon_sym_not] = ACTIONS(534), + [anon_sym_compl] = ACTIONS(534), + [anon_sym_DASH_DASH] = ACTIONS(648), + [anon_sym_PLUS_PLUS] = ACTIONS(648), + [anon_sym_sizeof] = ACTIONS(651), + [anon_sym___alignof__] = ACTIONS(654), + [anon_sym___alignof] = ACTIONS(654), + [anon_sym__alignof] = ACTIONS(654), + [anon_sym_alignof] = ACTIONS(654), + [anon_sym__Alignof] = ACTIONS(654), + [anon_sym_offsetof] = ACTIONS(657), + [anon_sym__Generic] = ACTIONS(660), + [anon_sym_asm] = ACTIONS(663), + [anon_sym___asm__] = ACTIONS(663), + [sym_number_literal] = ACTIONS(666), + [anon_sym_L_SQUOTE] = ACTIONS(669), + [anon_sym_u_SQUOTE] = ACTIONS(669), + [anon_sym_U_SQUOTE] = ACTIONS(669), + [anon_sym_u8_SQUOTE] = ACTIONS(669), + [anon_sym_SQUOTE] = ACTIONS(669), + [anon_sym_L_DQUOTE] = ACTIONS(672), + [anon_sym_u_DQUOTE] = ACTIONS(672), + [anon_sym_U_DQUOTE] = ACTIONS(672), + [anon_sym_u8_DQUOTE] = ACTIONS(672), + [anon_sym_DQUOTE] = ACTIONS(672), + [sym_true] = ACTIONS(675), + [sym_false] = ACTIONS(675), + [anon_sym_NULL] = ACTIONS(678), + [anon_sym_nullptr] = ACTIONS(678), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(681), + [anon_sym_decltype] = ACTIONS(684), + [anon_sym_virtual] = ACTIONS(687), + [anon_sym_alignas] = ACTIONS(690), + [anon_sym_explicit] = ACTIONS(693), + [anon_sym_typename] = ACTIONS(696), [anon_sym_template] = ACTIONS(831), - [anon_sym_operator] = ACTIONS(700), + [anon_sym_operator] = ACTIONS(702), [anon_sym_try] = ACTIONS(834), - [anon_sym_delete] = ACTIONS(706), + [anon_sym_delete] = ACTIONS(708), [anon_sym_throw] = ACTIONS(837), [anon_sym_namespace] = ACTIONS(840), [anon_sym_using] = ACTIONS(843), @@ -60504,146 +50925,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_concept] = ACTIONS(849), [anon_sym_co_return] = ACTIONS(852), [anon_sym_co_yield] = ACTIONS(855), - [anon_sym_R_DQUOTE] = ACTIONS(730), - [anon_sym_LR_DQUOTE] = ACTIONS(730), - [anon_sym_uR_DQUOTE] = ACTIONS(730), - [anon_sym_UR_DQUOTE] = ACTIONS(730), - [anon_sym_u8R_DQUOTE] = ACTIONS(730), - [anon_sym_co_await] = ACTIONS(733), - [anon_sym_new] = ACTIONS(736), - [anon_sym_requires] = ACTIONS(739), - [sym_this] = ACTIONS(673), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(742), - [sym_semgrep_named_ellipsis] = ACTIONS(745), + [anon_sym_R_DQUOTE] = ACTIONS(732), + [anon_sym_LR_DQUOTE] = ACTIONS(732), + [anon_sym_uR_DQUOTE] = ACTIONS(732), + [anon_sym_UR_DQUOTE] = ACTIONS(732), + [anon_sym_u8R_DQUOTE] = ACTIONS(732), + [anon_sym_co_await] = ACTIONS(735), + [anon_sym_new] = ACTIONS(738), + [anon_sym_requires] = ACTIONS(741), + [sym_this] = ACTIONS(675), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(744), + [sym_semgrep_named_ellipsis] = ACTIONS(747), }, [54] = { - [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(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(73), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(73), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [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_seh_try_statement] = STATE(73), - [sym_seh_leave_statement] = STATE(73), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(73), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(73), - [sym_template_instantiation] = STATE(73), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(73), - [sym_operator_cast_declaration] = STATE(73), - [sym_constructor_or_destructor_definition] = STATE(73), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(73), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [sym_preproc_include] = STATE(107), + [sym_preproc_def] = STATE(107), + [sym_preproc_function_def] = STATE(107), + [sym_preproc_call] = STATE(107), + [sym_preproc_if] = STATE(107), + [sym_preproc_ifdef] = STATE(107), + [sym_function_definition] = STATE(107), + [sym_declaration] = STATE(107), + [sym_type_definition] = STATE(107), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(107), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(107), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(107), + [sym_labeled_statement] = STATE(107), + [sym_expression_statement] = STATE(107), + [sym_if_statement] = STATE(107), + [sym_switch_statement] = STATE(107), + [sym_case_statement] = STATE(107), + [sym_while_statement] = STATE(107), + [sym_do_statement] = STATE(107), + [sym_for_statement] = STATE(107), + [sym_return_statement] = STATE(107), + [sym_break_statement] = STATE(107), + [sym_continue_statement] = STATE(107), + [sym_goto_statement] = STATE(107), + [sym_seh_try_statement] = STATE(107), + [sym_seh_leave_statement] = STATE(107), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(107), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(107), + [sym_template_instantiation] = STATE(107), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(107), + [sym_operator_cast_declaration] = STATE(107), + [sym_constructor_or_destructor_definition] = STATE(107), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(107), + [sym_namespace_alias_definition] = STATE(107), + [sym_using_declaration] = STATE(107), + [sym_alias_declaration] = STATE(107), + [sym_static_assert_declaration] = STATE(107), + [sym_concept_definition] = STATE(107), + [sym_for_range_loop] = STATE(107), + [sym_co_return_statement] = STATE(107), + [sym_co_yield_statement] = STATE(107), + [sym_throw_statement] = STATE(107), + [sym_try_statement] = STATE(107), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(107), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -60779,133 +51200,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [55] = { - [sym_preproc_include] = STATE(61), - [sym_preproc_def] = STATE(61), - [sym_preproc_function_def] = STATE(61), - [sym_preproc_call] = STATE(61), - [sym_preproc_if] = STATE(61), - [sym_preproc_ifdef] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(61), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_case_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(61), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(61), - [sym_template_instantiation] = STATE(61), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(61), - [sym_operator_cast_declaration] = STATE(61), - [sym_constructor_or_destructor_definition] = STATE(61), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(61), - [sym_namespace_alias_definition] = STATE(61), - [sym_using_declaration] = STATE(61), - [sym_alias_declaration] = STATE(61), - [sym_static_assert_declaration] = STATE(61), - [sym_concept_definition] = STATE(61), - [sym_for_range_loop] = STATE(61), - [sym_co_return_statement] = STATE(61), - [sym_co_yield_statement] = STATE(61), - [sym_throw_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(61), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [sym_preproc_include] = STATE(58), + [sym_preproc_def] = STATE(58), + [sym_preproc_function_def] = STATE(58), + [sym_preproc_call] = STATE(58), + [sym_preproc_if] = STATE(58), + [sym_preproc_ifdef] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(58), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_case_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(58), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(58), + [sym_template_instantiation] = STATE(58), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(58), + [sym_operator_cast_declaration] = STATE(58), + [sym_constructor_or_destructor_definition] = STATE(58), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(58), + [sym_namespace_alias_definition] = STATE(58), + [sym_using_declaration] = STATE(58), + [sym_alias_declaration] = STATE(58), + [sym_static_assert_declaration] = STATE(58), + [sym_concept_definition] = STATE(58), + [sym_for_range_loop] = STATE(58), + [sym_co_return_statement] = STATE(58), + [sym_co_yield_statement] = STATE(58), + [sym_throw_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(58), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -61050,28 +51471,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(56), [sym_declaration] = STATE(56), [sym_type_definition] = STATE(56), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6403), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5929), [sym_linkage_specification] = STATE(56), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2102), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7733), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2225), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7319), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4271), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4050), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(56), [sym_labeled_statement] = STATE(56), [sym_expression_statement] = STATE(56), @@ -61087,51 +51508,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(56), [sym_seh_try_statement] = STATE(56), [sym_seh_leave_statement] = STATE(56), - [sym_expression] = STATE(5819), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9710), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(5320), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9351), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(56), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(56), [sym_template_instantiation] = STATE(56), - [sym_operator_cast] = STATE(8091), - [sym_constructor_specifiers] = STATE(1937), + [sym_operator_cast] = STATE(7747), + [sym_constructor_specifiers] = STATE(1998), [sym_operator_cast_definition] = STATE(56), [sym_operator_cast_declaration] = STATE(56), [sym_constructor_or_destructor_definition] = STATE(56), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(56), [sym_namespace_alias_definition] = STATE(56), [sym_using_declaration] = STATE(56), @@ -61143,93 +51564,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(56), [sym_throw_statement] = STATE(56), [sym_try_statement] = STATE(56), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8091), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(180), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7747), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(176), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(56), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(226), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1937), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(252), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1998), [sym_identifier] = ACTIONS(866), [aux_sym_preproc_include_token1] = ACTIONS(869), [aux_sym_preproc_def_token1] = ACTIONS(872), [anon_sym_DOT_DOT_DOT] = ACTIONS(875), [aux_sym_preproc_if_token1] = ACTIONS(878), - [aux_sym_preproc_if_token2] = ACTIONS(512), + [aux_sym_preproc_if_token2] = ACTIONS(514), [aux_sym_preproc_ifdef_token1] = ACTIONS(881), [aux_sym_preproc_ifdef_token2] = ACTIONS(884), [sym_preproc_directive] = ACTIONS(887), - [anon_sym_LPAREN2] = ACTIONS(523), - [anon_sym_BANG] = ACTIONS(526), - [anon_sym_TILDE] = ACTIONS(529), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_PLUS] = ACTIONS(532), - [anon_sym_STAR] = ACTIONS(535), - [anon_sym_AMP_AMP] = ACTIONS(538), - [anon_sym_AMP] = ACTIONS(541), + [anon_sym_LPAREN2] = ACTIONS(525), + [anon_sym_BANG] = ACTIONS(528), + [anon_sym_TILDE] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(534), + [anon_sym_PLUS] = ACTIONS(534), + [anon_sym_STAR] = ACTIONS(537), + [anon_sym_AMP_AMP] = ACTIONS(540), + [anon_sym_AMP] = ACTIONS(543), [anon_sym_SEMI] = ACTIONS(890), [anon_sym___extension__] = ACTIONS(893), [anon_sym_typedef] = ACTIONS(896), [anon_sym_extern] = ACTIONS(899), - [anon_sym___attribute__] = ACTIONS(556), - [anon_sym_COLON_COLON] = ACTIONS(559), - [anon_sym_LBRACK_LBRACK] = ACTIONS(562), - [anon_sym___declspec] = ACTIONS(565), - [anon_sym___based] = ACTIONS(568), - [anon_sym___cdecl] = ACTIONS(571), - [anon_sym___clrcall] = ACTIONS(571), - [anon_sym___stdcall] = ACTIONS(571), - [anon_sym___fastcall] = ACTIONS(571), - [anon_sym___thiscall] = ACTIONS(571), - [anon_sym___vectorcall] = ACTIONS(571), + [anon_sym___attribute__] = ACTIONS(558), + [anon_sym_COLON_COLON] = ACTIONS(561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(564), + [anon_sym___declspec] = ACTIONS(567), + [anon_sym___based] = ACTIONS(570), + [anon_sym___cdecl] = ACTIONS(573), + [anon_sym___clrcall] = ACTIONS(573), + [anon_sym___stdcall] = ACTIONS(573), + [anon_sym___fastcall] = ACTIONS(573), + [anon_sym___thiscall] = ACTIONS(573), + [anon_sym___vectorcall] = ACTIONS(573), [anon_sym_LBRACE] = ACTIONS(902), - [anon_sym_signed] = ACTIONS(577), - [anon_sym_unsigned] = ACTIONS(577), - [anon_sym_long] = ACTIONS(577), - [anon_sym_short] = ACTIONS(577), - [anon_sym_LBRACK] = ACTIONS(580), - [anon_sym_static] = ACTIONS(583), - [anon_sym_register] = ACTIONS(583), + [anon_sym_signed] = ACTIONS(579), + [anon_sym_unsigned] = ACTIONS(579), + [anon_sym_long] = ACTIONS(579), + [anon_sym_short] = ACTIONS(579), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_static] = ACTIONS(585), + [anon_sym_register] = ACTIONS(585), [anon_sym_inline] = ACTIONS(905), - [anon_sym___inline] = ACTIONS(583), - [anon_sym___inline__] = ACTIONS(583), - [anon_sym___forceinline] = ACTIONS(583), - [anon_sym_thread_local] = ACTIONS(583), - [anon_sym___thread] = ACTIONS(583), - [anon_sym_const] = ACTIONS(589), - [anon_sym_constexpr] = ACTIONS(589), - [anon_sym_volatile] = ACTIONS(589), - [anon_sym_restrict] = ACTIONS(589), - [anon_sym___restrict__] = ACTIONS(589), - [anon_sym__Atomic] = ACTIONS(589), - [anon_sym__Noreturn] = ACTIONS(589), - [anon_sym_noreturn] = ACTIONS(589), - [anon_sym_mutable] = ACTIONS(589), - [anon_sym_constinit] = ACTIONS(589), - [anon_sym_consteval] = ACTIONS(589), - [sym_primitive_type] = ACTIONS(592), - [anon_sym_enum] = ACTIONS(595), - [anon_sym_class] = ACTIONS(598), - [anon_sym_struct] = ACTIONS(601), - [anon_sym_union] = ACTIONS(604), + [anon_sym___inline] = ACTIONS(585), + [anon_sym___inline__] = ACTIONS(585), + [anon_sym___forceinline] = ACTIONS(585), + [anon_sym_thread_local] = ACTIONS(585), + [anon_sym___thread] = ACTIONS(585), + [anon_sym_const] = ACTIONS(591), + [anon_sym_constexpr] = ACTIONS(591), + [anon_sym_volatile] = ACTIONS(591), + [anon_sym_restrict] = ACTIONS(591), + [anon_sym___restrict__] = ACTIONS(591), + [anon_sym__Atomic] = ACTIONS(591), + [anon_sym__Noreturn] = ACTIONS(591), + [anon_sym_noreturn] = ACTIONS(591), + [anon_sym_mutable] = ACTIONS(591), + [anon_sym_constinit] = ACTIONS(591), + [anon_sym_consteval] = ACTIONS(591), + [sym_primitive_type] = ACTIONS(594), + [anon_sym_enum] = ACTIONS(597), + [anon_sym_class] = ACTIONS(600), + [anon_sym_struct] = ACTIONS(603), + [anon_sym_union] = ACTIONS(606), [anon_sym_if] = ACTIONS(908), [anon_sym_switch] = ACTIONS(911), [anon_sym_case] = ACTIONS(914), @@ -61243,46 +51664,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(938), [anon_sym___try] = ACTIONS(941), [anon_sym___leave] = ACTIONS(944), - [anon_sym_not] = ACTIONS(532), - [anon_sym_compl] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(646), - [anon_sym_PLUS_PLUS] = ACTIONS(646), - [anon_sym_sizeof] = ACTIONS(649), - [anon_sym___alignof__] = ACTIONS(652), - [anon_sym___alignof] = ACTIONS(652), - [anon_sym__alignof] = ACTIONS(652), - [anon_sym_alignof] = ACTIONS(652), - [anon_sym__Alignof] = ACTIONS(652), - [anon_sym_offsetof] = ACTIONS(655), - [anon_sym__Generic] = ACTIONS(658), - [anon_sym_asm] = ACTIONS(661), - [anon_sym___asm__] = ACTIONS(661), - [sym_number_literal] = ACTIONS(664), - [anon_sym_L_SQUOTE] = ACTIONS(667), - [anon_sym_u_SQUOTE] = ACTIONS(667), - [anon_sym_U_SQUOTE] = ACTIONS(667), - [anon_sym_u8_SQUOTE] = ACTIONS(667), - [anon_sym_SQUOTE] = ACTIONS(667), - [anon_sym_L_DQUOTE] = ACTIONS(670), - [anon_sym_u_DQUOTE] = ACTIONS(670), - [anon_sym_U_DQUOTE] = ACTIONS(670), - [anon_sym_u8_DQUOTE] = ACTIONS(670), - [anon_sym_DQUOTE] = ACTIONS(670), - [sym_true] = ACTIONS(673), - [sym_false] = ACTIONS(673), - [anon_sym_NULL] = ACTIONS(676), - [anon_sym_nullptr] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(679), - [anon_sym_decltype] = ACTIONS(682), - [anon_sym_virtual] = ACTIONS(685), - [anon_sym_alignas] = ACTIONS(688), - [anon_sym_explicit] = ACTIONS(691), - [anon_sym_typename] = ACTIONS(694), + [anon_sym_not] = ACTIONS(534), + [anon_sym_compl] = ACTIONS(534), + [anon_sym_DASH_DASH] = ACTIONS(648), + [anon_sym_PLUS_PLUS] = ACTIONS(648), + [anon_sym_sizeof] = ACTIONS(651), + [anon_sym___alignof__] = ACTIONS(654), + [anon_sym___alignof] = ACTIONS(654), + [anon_sym__alignof] = ACTIONS(654), + [anon_sym_alignof] = ACTIONS(654), + [anon_sym__Alignof] = ACTIONS(654), + [anon_sym_offsetof] = ACTIONS(657), + [anon_sym__Generic] = ACTIONS(660), + [anon_sym_asm] = ACTIONS(663), + [anon_sym___asm__] = ACTIONS(663), + [sym_number_literal] = ACTIONS(666), + [anon_sym_L_SQUOTE] = ACTIONS(669), + [anon_sym_u_SQUOTE] = ACTIONS(669), + [anon_sym_U_SQUOTE] = ACTIONS(669), + [anon_sym_u8_SQUOTE] = ACTIONS(669), + [anon_sym_SQUOTE] = ACTIONS(669), + [anon_sym_L_DQUOTE] = ACTIONS(672), + [anon_sym_u_DQUOTE] = ACTIONS(672), + [anon_sym_U_DQUOTE] = ACTIONS(672), + [anon_sym_u8_DQUOTE] = ACTIONS(672), + [anon_sym_DQUOTE] = ACTIONS(672), + [sym_true] = ACTIONS(675), + [sym_false] = ACTIONS(675), + [anon_sym_NULL] = ACTIONS(678), + [anon_sym_nullptr] = ACTIONS(678), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(681), + [anon_sym_decltype] = ACTIONS(684), + [anon_sym_virtual] = ACTIONS(687), + [anon_sym_alignas] = ACTIONS(690), + [anon_sym_explicit] = ACTIONS(693), + [anon_sym_typename] = ACTIONS(696), [anon_sym_template] = ACTIONS(947), - [anon_sym_operator] = ACTIONS(700), + [anon_sym_operator] = ACTIONS(702), [anon_sym_try] = ACTIONS(950), - [anon_sym_delete] = ACTIONS(706), + [anon_sym_delete] = ACTIONS(708), [anon_sym_throw] = ACTIONS(953), [anon_sym_namespace] = ACTIONS(956), [anon_sym_using] = ACTIONS(959), @@ -61290,17 +51711,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_concept] = ACTIONS(965), [anon_sym_co_return] = ACTIONS(968), [anon_sym_co_yield] = ACTIONS(971), - [anon_sym_R_DQUOTE] = ACTIONS(730), - [anon_sym_LR_DQUOTE] = ACTIONS(730), - [anon_sym_uR_DQUOTE] = ACTIONS(730), - [anon_sym_UR_DQUOTE] = ACTIONS(730), - [anon_sym_u8R_DQUOTE] = ACTIONS(730), - [anon_sym_co_await] = ACTIONS(733), - [anon_sym_new] = ACTIONS(736), - [anon_sym_requires] = ACTIONS(739), - [sym_this] = ACTIONS(673), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(742), - [sym_semgrep_named_ellipsis] = ACTIONS(745), + [anon_sym_R_DQUOTE] = ACTIONS(732), + [anon_sym_LR_DQUOTE] = ACTIONS(732), + [anon_sym_uR_DQUOTE] = ACTIONS(732), + [anon_sym_UR_DQUOTE] = ACTIONS(732), + [anon_sym_u8R_DQUOTE] = ACTIONS(732), + [anon_sym_co_await] = ACTIONS(735), + [anon_sym_new] = ACTIONS(738), + [anon_sym_requires] = ACTIONS(741), + [sym_this] = ACTIONS(675), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(744), + [sym_semgrep_named_ellipsis] = ACTIONS(747), }, [57] = { [sym_preproc_include] = STATE(59), @@ -61312,28 +51733,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(59), [sym_declaration] = STATE(59), [sym_type_definition] = STATE(59), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), [sym_linkage_specification] = STATE(59), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(59), [sym_labeled_statement] = STATE(59), [sym_expression_statement] = STATE(59), @@ -61349,51 +51770,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(59), [sym_seh_try_statement] = STATE(59), [sym_seh_leave_statement] = STATE(59), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(59), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(59), [sym_template_instantiation] = STATE(59), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), [sym_operator_cast_definition] = STATE(59), [sym_operator_cast_declaration] = STATE(59), [sym_constructor_or_destructor_definition] = STATE(59), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(59), [sym_namespace_alias_definition] = STATE(59), [sym_using_declaration] = STATE(59), @@ -61405,31 +51826,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(59), [sym_throw_statement] = STATE(59), [sym_try_statement] = STATE(59), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(59), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -61565,142 +51986,403 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [58] = { - [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(4228), - [sym_declaration_specifiers] = STATE(6403), - [sym_linkage_specification] = STATE(70), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2102), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7733), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(70), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4271), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [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_seh_try_statement] = STATE(70), - [sym_seh_leave_statement] = STATE(70), - [sym_expression] = STATE(5819), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9710), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(70), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(70), - [sym_template_instantiation] = STATE(70), - [sym_operator_cast] = STATE(8091), - [sym_constructor_specifiers] = STATE(1937), - [sym_operator_cast_definition] = STATE(70), - [sym_operator_cast_declaration] = STATE(70), - [sym_constructor_or_destructor_definition] = STATE(70), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8091), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(180), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(70), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(226), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1937), + [sym_preproc_include] = STATE(58), + [sym_preproc_def] = STATE(58), + [sym_preproc_function_def] = STATE(58), + [sym_preproc_call] = STATE(58), + [sym_preproc_if] = STATE(58), + [sym_preproc_ifdef] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(58), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_case_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(58), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(58), + [sym_template_instantiation] = STATE(58), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(58), + [sym_operator_cast_declaration] = STATE(58), + [sym_constructor_or_destructor_definition] = STATE(58), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(58), + [sym_namespace_alias_definition] = STATE(58), + [sym_using_declaration] = STATE(58), + [sym_alias_declaration] = STATE(58), + [sym_static_assert_declaration] = STATE(58), + [sym_concept_definition] = STATE(58), + [sym_for_range_loop] = STATE(58), + [sym_co_return_statement] = STATE(58), + [sym_co_yield_statement] = STATE(58), + [sym_throw_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(58), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(976), - [aux_sym_preproc_include_token1] = ACTIONS(978), - [aux_sym_preproc_def_token1] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(982), - [aux_sym_preproc_if_token1] = ACTIONS(984), - [aux_sym_preproc_if_token2] = ACTIONS(986), - [aux_sym_preproc_ifdef_token1] = ACTIONS(988), - [aux_sym_preproc_ifdef_token2] = ACTIONS(990), - [sym_preproc_directive] = ACTIONS(992), + [aux_sym_preproc_include_token1] = ACTIONS(979), + [aux_sym_preproc_def_token1] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(985), + [aux_sym_preproc_if_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(991), + [aux_sym_preproc_ifdef_token2] = ACTIONS(994), + [sym_preproc_directive] = ACTIONS(997), + [anon_sym_LPAREN2] = ACTIONS(525), + [anon_sym_BANG] = ACTIONS(528), + [anon_sym_TILDE] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(534), + [anon_sym_PLUS] = ACTIONS(534), + [anon_sym_STAR] = ACTIONS(537), + [anon_sym_AMP_AMP] = ACTIONS(540), + [anon_sym_AMP] = ACTIONS(543), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym___extension__] = ACTIONS(1003), + [anon_sym_typedef] = ACTIONS(1006), + [anon_sym_extern] = ACTIONS(1009), + [anon_sym___attribute__] = ACTIONS(558), + [anon_sym_COLON_COLON] = ACTIONS(561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(564), + [anon_sym___declspec] = ACTIONS(567), + [anon_sym___based] = ACTIONS(570), + [anon_sym___cdecl] = ACTIONS(573), + [anon_sym___clrcall] = ACTIONS(573), + [anon_sym___stdcall] = ACTIONS(573), + [anon_sym___fastcall] = ACTIONS(573), + [anon_sym___thiscall] = ACTIONS(573), + [anon_sym___vectorcall] = ACTIONS(573), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_RBRACE] = ACTIONS(1015), + [anon_sym_signed] = ACTIONS(579), + [anon_sym_unsigned] = ACTIONS(579), + [anon_sym_long] = ACTIONS(579), + [anon_sym_short] = ACTIONS(579), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_static] = ACTIONS(585), + [anon_sym_register] = ACTIONS(585), + [anon_sym_inline] = ACTIONS(1017), + [anon_sym___inline] = ACTIONS(585), + [anon_sym___inline__] = ACTIONS(585), + [anon_sym___forceinline] = ACTIONS(585), + [anon_sym_thread_local] = ACTIONS(585), + [anon_sym___thread] = ACTIONS(585), + [anon_sym_const] = ACTIONS(591), + [anon_sym_constexpr] = ACTIONS(591), + [anon_sym_volatile] = ACTIONS(591), + [anon_sym_restrict] = ACTIONS(591), + [anon_sym___restrict__] = ACTIONS(591), + [anon_sym__Atomic] = ACTIONS(591), + [anon_sym__Noreturn] = ACTIONS(591), + [anon_sym_noreturn] = ACTIONS(591), + [anon_sym_mutable] = ACTIONS(591), + [anon_sym_constinit] = ACTIONS(591), + [anon_sym_consteval] = ACTIONS(591), + [sym_primitive_type] = ACTIONS(594), + [anon_sym_enum] = ACTIONS(597), + [anon_sym_class] = ACTIONS(600), + [anon_sym_struct] = ACTIONS(603), + [anon_sym_union] = ACTIONS(606), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_switch] = ACTIONS(1023), + [anon_sym_case] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1029), + [anon_sym_while] = ACTIONS(1032), + [anon_sym_do] = ACTIONS(1035), + [anon_sym_for] = ACTIONS(1038), + [anon_sym_return] = ACTIONS(1041), + [anon_sym_break] = ACTIONS(1044), + [anon_sym_continue] = ACTIONS(1047), + [anon_sym_goto] = ACTIONS(1050), + [anon_sym___try] = ACTIONS(1053), + [anon_sym___leave] = ACTIONS(1056), + [anon_sym_not] = ACTIONS(534), + [anon_sym_compl] = ACTIONS(534), + [anon_sym_DASH_DASH] = ACTIONS(648), + [anon_sym_PLUS_PLUS] = ACTIONS(648), + [anon_sym_sizeof] = ACTIONS(651), + [anon_sym___alignof__] = ACTIONS(654), + [anon_sym___alignof] = ACTIONS(654), + [anon_sym__alignof] = ACTIONS(654), + [anon_sym_alignof] = ACTIONS(654), + [anon_sym__Alignof] = ACTIONS(654), + [anon_sym_offsetof] = ACTIONS(657), + [anon_sym__Generic] = ACTIONS(660), + [anon_sym_asm] = ACTIONS(663), + [anon_sym___asm__] = ACTIONS(663), + [sym_number_literal] = ACTIONS(666), + [anon_sym_L_SQUOTE] = ACTIONS(669), + [anon_sym_u_SQUOTE] = ACTIONS(669), + [anon_sym_U_SQUOTE] = ACTIONS(669), + [anon_sym_u8_SQUOTE] = ACTIONS(669), + [anon_sym_SQUOTE] = ACTIONS(669), + [anon_sym_L_DQUOTE] = ACTIONS(672), + [anon_sym_u_DQUOTE] = ACTIONS(672), + [anon_sym_U_DQUOTE] = ACTIONS(672), + [anon_sym_u8_DQUOTE] = ACTIONS(672), + [anon_sym_DQUOTE] = ACTIONS(672), + [sym_true] = ACTIONS(675), + [sym_false] = ACTIONS(675), + [anon_sym_NULL] = ACTIONS(678), + [anon_sym_nullptr] = ACTIONS(678), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(681), + [anon_sym_decltype] = ACTIONS(684), + [anon_sym_virtual] = ACTIONS(687), + [anon_sym_alignas] = ACTIONS(690), + [anon_sym_explicit] = ACTIONS(693), + [anon_sym_typename] = ACTIONS(696), + [anon_sym_template] = ACTIONS(1059), + [anon_sym_operator] = ACTIONS(702), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_delete] = ACTIONS(708), + [anon_sym_throw] = ACTIONS(1065), + [anon_sym_namespace] = ACTIONS(1068), + [anon_sym_using] = ACTIONS(1071), + [anon_sym_static_assert] = ACTIONS(1074), + [anon_sym_concept] = ACTIONS(1077), + [anon_sym_co_return] = ACTIONS(1080), + [anon_sym_co_yield] = ACTIONS(1083), + [anon_sym_R_DQUOTE] = ACTIONS(732), + [anon_sym_LR_DQUOTE] = ACTIONS(732), + [anon_sym_uR_DQUOTE] = ACTIONS(732), + [anon_sym_UR_DQUOTE] = ACTIONS(732), + [anon_sym_u8R_DQUOTE] = ACTIONS(732), + [anon_sym_co_await] = ACTIONS(735), + [anon_sym_new] = ACTIONS(738), + [anon_sym_requires] = ACTIONS(741), + [sym_this] = ACTIONS(675), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(744), + [sym_semgrep_named_ellipsis] = ACTIONS(747), + }, + [59] = { + [sym_preproc_include] = STATE(58), + [sym_preproc_def] = STATE(58), + [sym_preproc_function_def] = STATE(58), + [sym_preproc_call] = STATE(58), + [sym_preproc_if] = STATE(58), + [sym_preproc_ifdef] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(58), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_case_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(58), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(58), + [sym_template_instantiation] = STATE(58), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(58), + [sym_operator_cast_declaration] = STATE(58), + [sym_constructor_or_destructor_definition] = STATE(58), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(58), + [sym_namespace_alias_definition] = STATE(58), + [sym_using_declaration] = STATE(58), + [sym_alias_declaration] = STATE(58), + [sym_static_assert_declaration] = STATE(58), + [sym_concept_definition] = STATE(58), + [sym_for_range_loop] = STATE(58), + [sym_co_return_statement] = STATE(58), + [sym_co_yield_statement] = STATE(58), + [sym_throw_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(58), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), + [sym_identifier] = ACTIONS(858), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(175), + [aux_sym_preproc_if_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(27), @@ -61709,10 +52391,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(31), [anon_sym_AMP_AMP] = ACTIONS(33), [anon_sym_AMP] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym___extension__] = ACTIONS(996), - [anon_sym_typedef] = ACTIONS(998), - [anon_sym_extern] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(45), [anon_sym_LBRACK_LBRACK] = ACTIONS(47), @@ -61724,7 +52406,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(53), [anon_sym___thiscall] = ACTIONS(53), [anon_sym___vectorcall] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(860), + [anon_sym_RBRACE] = ACTIONS(1086), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), @@ -61732,7 +52415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(1004), + [anon_sym_inline] = ACTIONS(201), [anon_sym___inline] = ACTIONS(61), [anon_sym___inline__] = ACTIONS(61), [anon_sym___forceinline] = ACTIONS(61), @@ -61754,19 +52437,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(71), [anon_sym_struct] = ACTIONS(73), [anon_sym_union] = ACTIONS(75), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_switch] = ACTIONS(1008), - [anon_sym_case] = ACTIONS(1010), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1014), - [anon_sym_do] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_break] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_goto] = ACTIONS(1026), - [anon_sym___try] = ACTIONS(1028), - [anon_sym___leave] = ACTIONS(1030), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -61803,17 +52486,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1032), + [anon_sym_template] = ACTIONS(231), [anon_sym_operator] = ACTIONS(135), - [anon_sym_try] = ACTIONS(1034), + [anon_sym_try] = ACTIONS(233), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(1036), - [anon_sym_namespace] = ACTIONS(1038), - [anon_sym_using] = ACTIONS(1040), - [anon_sym_static_assert] = ACTIONS(1042), - [anon_sym_concept] = ACTIONS(1044), - [anon_sym_co_return] = ACTIONS(1046), - [anon_sym_co_yield] = ACTIONS(1048), + [anon_sym_throw] = ACTIONS(235), + [anon_sym_namespace] = ACTIONS(237), + [anon_sym_using] = ACTIONS(239), + [anon_sym_static_assert] = ACTIONS(241), + [anon_sym_concept] = ACTIONS(243), + [anon_sym_co_return] = ACTIONS(245), + [anon_sym_co_yield] = ACTIONS(247), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -61826,134 +52509,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [59] = { - [sym_preproc_include] = STATE(61), - [sym_preproc_def] = STATE(61), - [sym_preproc_function_def] = STATE(61), - [sym_preproc_call] = STATE(61), - [sym_preproc_if] = STATE(61), - [sym_preproc_ifdef] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(61), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_case_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(61), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(61), - [sym_template_instantiation] = STATE(61), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(61), - [sym_operator_cast_declaration] = STATE(61), - [sym_constructor_or_destructor_definition] = STATE(61), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(61), - [sym_namespace_alias_definition] = STATE(61), - [sym_using_declaration] = STATE(61), - [sym_alias_declaration] = STATE(61), - [sym_static_assert_declaration] = STATE(61), - [sym_concept_definition] = STATE(61), - [sym_for_range_loop] = STATE(61), - [sym_co_return_statement] = STATE(61), - [sym_co_yield_statement] = STATE(61), - [sym_throw_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(61), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [60] = { + [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(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(62), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(62), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [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_seh_try_statement] = STATE(62), + [sym_seh_leave_statement] = STATE(62), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(62), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(62), + [sym_template_instantiation] = STATE(62), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(62), + [sym_operator_cast_declaration] = STATE(62), + [sym_constructor_or_destructor_definition] = STATE(62), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(62), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -61986,7 +52669,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(53), [anon_sym___vectorcall] = ACTIONS(53), [anon_sym_LBRACE] = ACTIONS(860), - [anon_sym_RBRACE] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(1088), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), @@ -62088,134 +52771,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [60] = { - [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(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(62), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(62), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [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_seh_try_statement] = STATE(62), - [sym_seh_leave_statement] = STATE(62), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(62), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(62), - [sym_template_instantiation] = STATE(62), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(62), - [sym_operator_cast_declaration] = STATE(62), - [sym_constructor_or_destructor_definition] = STATE(62), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(62), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [61] = { + [sym_preproc_include] = STATE(58), + [sym_preproc_def] = STATE(58), + [sym_preproc_function_def] = STATE(58), + [sym_preproc_call] = STATE(58), + [sym_preproc_if] = STATE(58), + [sym_preproc_ifdef] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(58), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_case_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(58), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(58), + [sym_template_instantiation] = STATE(58), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(58), + [sym_operator_cast_declaration] = STATE(58), + [sym_constructor_or_destructor_definition] = STATE(58), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(58), + [sym_namespace_alias_definition] = STATE(58), + [sym_using_declaration] = STATE(58), + [sym_alias_declaration] = STATE(58), + [sym_static_assert_declaration] = STATE(58), + [sym_concept_definition] = STATE(58), + [sym_for_range_loop] = STATE(58), + [sym_co_return_statement] = STATE(58), + [sym_co_yield_statement] = STATE(58), + [sym_throw_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(58), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -62248,7 +52931,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(53), [anon_sym___vectorcall] = ACTIONS(53), [anon_sym_LBRACE] = ACTIONS(860), - [anon_sym_RBRACE] = ACTIONS(1052), + [anon_sym_RBRACE] = ACTIONS(1090), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), @@ -62350,396 +53033,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [61] = { - [sym_preproc_include] = STATE(61), - [sym_preproc_def] = STATE(61), - [sym_preproc_function_def] = STATE(61), - [sym_preproc_call] = STATE(61), - [sym_preproc_if] = STATE(61), - [sym_preproc_ifdef] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(61), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_case_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(61), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(61), - [sym_template_instantiation] = STATE(61), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(61), - [sym_operator_cast_declaration] = STATE(61), - [sym_constructor_or_destructor_definition] = STATE(61), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(61), - [sym_namespace_alias_definition] = STATE(61), - [sym_using_declaration] = STATE(61), - [sym_alias_declaration] = STATE(61), - [sym_static_assert_declaration] = STATE(61), - [sym_concept_definition] = STATE(61), - [sym_for_range_loop] = STATE(61), - [sym_co_return_statement] = STATE(61), - [sym_co_yield_statement] = STATE(61), - [sym_throw_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(61), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), - [sym_identifier] = ACTIONS(1054), - [aux_sym_preproc_include_token1] = ACTIONS(1057), - [aux_sym_preproc_def_token1] = ACTIONS(1060), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1063), - [aux_sym_preproc_if_token1] = ACTIONS(1066), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1069), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1072), - [sym_preproc_directive] = ACTIONS(1075), - [anon_sym_LPAREN2] = ACTIONS(523), - [anon_sym_BANG] = ACTIONS(526), - [anon_sym_TILDE] = ACTIONS(529), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_PLUS] = ACTIONS(532), - [anon_sym_STAR] = ACTIONS(535), - [anon_sym_AMP_AMP] = ACTIONS(538), - [anon_sym_AMP] = ACTIONS(541), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym___extension__] = ACTIONS(1081), - [anon_sym_typedef] = ACTIONS(1084), - [anon_sym_extern] = ACTIONS(1087), - [anon_sym___attribute__] = ACTIONS(556), - [anon_sym_COLON_COLON] = ACTIONS(559), - [anon_sym_LBRACK_LBRACK] = ACTIONS(562), - [anon_sym___declspec] = ACTIONS(565), - [anon_sym___based] = ACTIONS(568), - [anon_sym___cdecl] = ACTIONS(571), - [anon_sym___clrcall] = ACTIONS(571), - [anon_sym___stdcall] = ACTIONS(571), - [anon_sym___fastcall] = ACTIONS(571), - [anon_sym___thiscall] = ACTIONS(571), - [anon_sym___vectorcall] = ACTIONS(571), - [anon_sym_LBRACE] = ACTIONS(1090), - [anon_sym_RBRACE] = ACTIONS(1093), - [anon_sym_signed] = ACTIONS(577), - [anon_sym_unsigned] = ACTIONS(577), - [anon_sym_long] = ACTIONS(577), - [anon_sym_short] = ACTIONS(577), - [anon_sym_LBRACK] = ACTIONS(580), - [anon_sym_static] = ACTIONS(583), - [anon_sym_register] = ACTIONS(583), - [anon_sym_inline] = ACTIONS(1095), - [anon_sym___inline] = ACTIONS(583), - [anon_sym___inline__] = ACTIONS(583), - [anon_sym___forceinline] = ACTIONS(583), - [anon_sym_thread_local] = ACTIONS(583), - [anon_sym___thread] = ACTIONS(583), - [anon_sym_const] = ACTIONS(589), - [anon_sym_constexpr] = ACTIONS(589), - [anon_sym_volatile] = ACTIONS(589), - [anon_sym_restrict] = ACTIONS(589), - [anon_sym___restrict__] = ACTIONS(589), - [anon_sym__Atomic] = ACTIONS(589), - [anon_sym__Noreturn] = ACTIONS(589), - [anon_sym_noreturn] = ACTIONS(589), - [anon_sym_mutable] = ACTIONS(589), - [anon_sym_constinit] = ACTIONS(589), - [anon_sym_consteval] = ACTIONS(589), - [sym_primitive_type] = ACTIONS(592), - [anon_sym_enum] = ACTIONS(595), - [anon_sym_class] = ACTIONS(598), - [anon_sym_struct] = ACTIONS(601), - [anon_sym_union] = ACTIONS(604), - [anon_sym_if] = ACTIONS(1098), - [anon_sym_switch] = ACTIONS(1101), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_default] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(1110), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1116), - [anon_sym_return] = ACTIONS(1119), - [anon_sym_break] = ACTIONS(1122), - [anon_sym_continue] = ACTIONS(1125), - [anon_sym_goto] = ACTIONS(1128), - [anon_sym___try] = ACTIONS(1131), - [anon_sym___leave] = ACTIONS(1134), - [anon_sym_not] = ACTIONS(532), - [anon_sym_compl] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(646), - [anon_sym_PLUS_PLUS] = ACTIONS(646), - [anon_sym_sizeof] = ACTIONS(649), - [anon_sym___alignof__] = ACTIONS(652), - [anon_sym___alignof] = ACTIONS(652), - [anon_sym__alignof] = ACTIONS(652), - [anon_sym_alignof] = ACTIONS(652), - [anon_sym__Alignof] = ACTIONS(652), - [anon_sym_offsetof] = ACTIONS(655), - [anon_sym__Generic] = ACTIONS(658), - [anon_sym_asm] = ACTIONS(661), - [anon_sym___asm__] = ACTIONS(661), - [sym_number_literal] = ACTIONS(664), - [anon_sym_L_SQUOTE] = ACTIONS(667), - [anon_sym_u_SQUOTE] = ACTIONS(667), - [anon_sym_U_SQUOTE] = ACTIONS(667), - [anon_sym_u8_SQUOTE] = ACTIONS(667), - [anon_sym_SQUOTE] = ACTIONS(667), - [anon_sym_L_DQUOTE] = ACTIONS(670), - [anon_sym_u_DQUOTE] = ACTIONS(670), - [anon_sym_U_DQUOTE] = ACTIONS(670), - [anon_sym_u8_DQUOTE] = ACTIONS(670), - [anon_sym_DQUOTE] = ACTIONS(670), - [sym_true] = ACTIONS(673), - [sym_false] = ACTIONS(673), - [anon_sym_NULL] = ACTIONS(676), - [anon_sym_nullptr] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(679), - [anon_sym_decltype] = ACTIONS(682), - [anon_sym_virtual] = ACTIONS(685), - [anon_sym_alignas] = ACTIONS(688), - [anon_sym_explicit] = ACTIONS(691), - [anon_sym_typename] = ACTIONS(694), - [anon_sym_template] = ACTIONS(1137), - [anon_sym_operator] = ACTIONS(700), - [anon_sym_try] = ACTIONS(1140), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_throw] = ACTIONS(1143), - [anon_sym_namespace] = ACTIONS(1146), - [anon_sym_using] = ACTIONS(1149), - [anon_sym_static_assert] = ACTIONS(1152), - [anon_sym_concept] = ACTIONS(1155), - [anon_sym_co_return] = ACTIONS(1158), - [anon_sym_co_yield] = ACTIONS(1161), - [anon_sym_R_DQUOTE] = ACTIONS(730), - [anon_sym_LR_DQUOTE] = ACTIONS(730), - [anon_sym_uR_DQUOTE] = ACTIONS(730), - [anon_sym_UR_DQUOTE] = ACTIONS(730), - [anon_sym_u8R_DQUOTE] = ACTIONS(730), - [anon_sym_co_await] = ACTIONS(733), - [anon_sym_new] = ACTIONS(736), - [anon_sym_requires] = ACTIONS(739), - [sym_this] = ACTIONS(673), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(742), - [sym_semgrep_named_ellipsis] = ACTIONS(745), - }, [62] = { - [sym_preproc_include] = STATE(61), - [sym_preproc_def] = STATE(61), - [sym_preproc_function_def] = STATE(61), - [sym_preproc_call] = STATE(61), - [sym_preproc_if] = STATE(61), - [sym_preproc_ifdef] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(61), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_case_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(61), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(61), - [sym_template_instantiation] = STATE(61), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(61), - [sym_operator_cast_declaration] = STATE(61), - [sym_constructor_or_destructor_definition] = STATE(61), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(61), - [sym_namespace_alias_definition] = STATE(61), - [sym_using_declaration] = STATE(61), - [sym_alias_declaration] = STATE(61), - [sym_static_assert_declaration] = STATE(61), - [sym_concept_definition] = STATE(61), - [sym_for_range_loop] = STATE(61), - [sym_co_return_statement] = STATE(61), - [sym_co_yield_statement] = STATE(61), - [sym_throw_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(61), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [sym_preproc_include] = STATE(58), + [sym_preproc_def] = STATE(58), + [sym_preproc_function_def] = STATE(58), + [sym_preproc_call] = STATE(58), + [sym_preproc_if] = STATE(58), + [sym_preproc_ifdef] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(58), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_case_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(58), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(58), + [sym_template_instantiation] = STATE(58), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(58), + [sym_operator_cast_declaration] = STATE(58), + [sym_constructor_or_destructor_definition] = STATE(58), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(58), + [sym_namespace_alias_definition] = STATE(58), + [sym_using_declaration] = STATE(58), + [sym_alias_declaration] = STATE(58), + [sym_static_assert_declaration] = STATE(58), + [sym_concept_definition] = STATE(58), + [sym_for_range_loop] = STATE(58), + [sym_co_return_statement] = STATE(58), + [sym_co_yield_statement] = STATE(58), + [sym_throw_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(58), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -62772,7 +53193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(53), [anon_sym___vectorcall] = ACTIONS(53), [anon_sym_LBRACE] = ACTIONS(860), - [anon_sym_RBRACE] = ACTIONS(1164), + [anon_sym_RBRACE] = ACTIONS(1092), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), @@ -62884,28 +53305,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(64), [sym_declaration] = STATE(64), [sym_type_definition] = STATE(64), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), [sym_linkage_specification] = STATE(64), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(64), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(64), [sym_labeled_statement] = STATE(64), [sym_expression_statement] = STATE(64), @@ -62921,51 +53342,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(64), [sym_seh_try_statement] = STATE(64), [sym_seh_leave_statement] = STATE(64), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(64), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(64), [sym_template_instantiation] = STATE(64), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), [sym_operator_cast_definition] = STATE(64), [sym_operator_cast_declaration] = STATE(64), [sym_constructor_or_destructor_definition] = STATE(64), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(64), [sym_namespace_alias_definition] = STATE(64), [sym_using_declaration] = STATE(64), @@ -62977,31 +53398,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(64), [sym_throw_statement] = STATE(64), [sym_try_statement] = STATE(64), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(64), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -63034,7 +53455,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(53), [anon_sym___vectorcall] = ACTIONS(53), [anon_sym_LBRACE] = ACTIONS(860), - [anon_sym_RBRACE] = ACTIONS(1166), + [anon_sym_RBRACE] = ACTIONS(1094), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), @@ -63137,133 +53558,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [64] = { - [sym_preproc_include] = STATE(61), - [sym_preproc_def] = STATE(61), - [sym_preproc_function_def] = STATE(61), - [sym_preproc_call] = STATE(61), - [sym_preproc_if] = STATE(61), - [sym_preproc_ifdef] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(61), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_case_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(61), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(61), - [sym_template_instantiation] = STATE(61), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(61), - [sym_operator_cast_declaration] = STATE(61), - [sym_constructor_or_destructor_definition] = STATE(61), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(61), - [sym_namespace_alias_definition] = STATE(61), - [sym_using_declaration] = STATE(61), - [sym_alias_declaration] = STATE(61), - [sym_static_assert_declaration] = STATE(61), - [sym_concept_definition] = STATE(61), - [sym_for_range_loop] = STATE(61), - [sym_co_return_statement] = STATE(61), - [sym_co_yield_statement] = STATE(61), - [sym_throw_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(61), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [sym_preproc_include] = STATE(58), + [sym_preproc_def] = STATE(58), + [sym_preproc_function_def] = STATE(58), + [sym_preproc_call] = STATE(58), + [sym_preproc_if] = STATE(58), + [sym_preproc_ifdef] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(58), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_case_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(58), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(58), + [sym_template_instantiation] = STATE(58), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(58), + [sym_operator_cast_declaration] = STATE(58), + [sym_constructor_or_destructor_definition] = STATE(58), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(58), + [sym_namespace_alias_definition] = STATE(58), + [sym_using_declaration] = STATE(58), + [sym_alias_declaration] = STATE(58), + [sym_static_assert_declaration] = STATE(58), + [sym_concept_definition] = STATE(58), + [sym_for_range_loop] = STATE(58), + [sym_co_return_statement] = STATE(58), + [sym_co_yield_statement] = STATE(58), + [sym_throw_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(58), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -63296,7 +53717,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(53), [anon_sym___vectorcall] = ACTIONS(53), [anon_sym_LBRACE] = ACTIONS(860), - [anon_sym_RBRACE] = ACTIONS(1168), + [anon_sym_RBRACE] = ACTIONS(1096), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), @@ -63399,133 +53820,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [65] = { - [sym_preproc_include] = STATE(67), - [sym_preproc_def] = STATE(67), - [sym_preproc_function_def] = STATE(67), - [sym_preproc_call] = STATE(67), - [sym_preproc_if] = STATE(67), - [sym_preproc_ifdef] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_declaration] = STATE(67), - [sym_type_definition] = STATE(67), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(67), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(67), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(67), - [sym_labeled_statement] = STATE(67), - [sym_expression_statement] = STATE(67), - [sym_if_statement] = STATE(67), - [sym_switch_statement] = STATE(67), - [sym_case_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_do_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_return_statement] = STATE(67), - [sym_break_statement] = STATE(67), - [sym_continue_statement] = STATE(67), - [sym_goto_statement] = STATE(67), - [sym_seh_try_statement] = STATE(67), - [sym_seh_leave_statement] = STATE(67), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(67), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(67), - [sym_template_instantiation] = STATE(67), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(67), - [sym_operator_cast_declaration] = STATE(67), - [sym_constructor_or_destructor_definition] = STATE(67), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(67), - [sym_namespace_alias_definition] = STATE(67), - [sym_using_declaration] = STATE(67), - [sym_alias_declaration] = STATE(67), - [sym_static_assert_declaration] = STATE(67), - [sym_concept_definition] = STATE(67), - [sym_for_range_loop] = STATE(67), - [sym_co_return_statement] = STATE(67), - [sym_co_yield_statement] = STATE(67), - [sym_throw_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(67), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [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(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(68), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(68), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [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_seh_try_statement] = STATE(68), + [sym_seh_leave_statement] = STATE(68), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(68), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(68), + [sym_template_instantiation] = STATE(68), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(68), + [sym_operator_cast_declaration] = STATE(68), + [sym_constructor_or_destructor_definition] = STATE(68), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(68), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -63558,7 +53979,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(53), [anon_sym___vectorcall] = ACTIONS(53), [anon_sym_LBRACE] = ACTIONS(860), - [anon_sym_RBRACE] = ACTIONS(1170), + [anon_sym_RBRACE] = ACTIONS(1098), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), @@ -63661,141 +54082,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [66] = { - [sym_preproc_include] = STATE(61), - [sym_preproc_def] = STATE(61), - [sym_preproc_function_def] = STATE(61), - [sym_preproc_call] = STATE(61), - [sym_preproc_if] = STATE(61), - [sym_preproc_ifdef] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(61), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_case_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(61), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(61), - [sym_template_instantiation] = STATE(61), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(61), - [sym_operator_cast_declaration] = STATE(61), - [sym_constructor_or_destructor_definition] = STATE(61), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(61), - [sym_namespace_alias_definition] = STATE(61), - [sym_using_declaration] = STATE(61), - [sym_alias_declaration] = STATE(61), - [sym_static_assert_declaration] = STATE(61), - [sym_concept_definition] = STATE(61), - [sym_for_range_loop] = STATE(61), - [sym_co_return_statement] = STATE(61), - [sym_co_yield_statement] = STATE(61), - [sym_throw_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(61), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), - [sym_identifier] = ACTIONS(858), - [aux_sym_preproc_include_token1] = ACTIONS(171), - [aux_sym_preproc_def_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_DOT] = ACTIONS(175), - [aux_sym_preproc_if_token1] = ACTIONS(179), - [aux_sym_preproc_ifdef_token1] = ACTIONS(181), - [aux_sym_preproc_ifdef_token2] = ACTIONS(183), - [sym_preproc_directive] = ACTIONS(185), + [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(4040), + [sym_declaration_specifiers] = STATE(5929), + [sym_linkage_specification] = STATE(56), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2225), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7319), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(56), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4050), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [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_seh_try_statement] = STATE(56), + [sym_seh_leave_statement] = STATE(56), + [sym_expression] = STATE(5320), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9351), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(56), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(56), + [sym_template_instantiation] = STATE(56), + [sym_operator_cast] = STATE(7747), + [sym_constructor_specifiers] = STATE(1998), + [sym_operator_cast_definition] = STATE(56), + [sym_operator_cast_declaration] = STATE(56), + [sym_constructor_or_destructor_definition] = STATE(56), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7747), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(176), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(56), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(252), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1998), + [sym_identifier] = ACTIONS(1100), + [aux_sym_preproc_include_token1] = ACTIONS(1102), + [aux_sym_preproc_def_token1] = ACTIONS(1104), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1106), + [aux_sym_preproc_if_token1] = ACTIONS(1108), + [aux_sym_preproc_if_token2] = ACTIONS(1110), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1114), + [sym_preproc_directive] = ACTIONS(1116), [anon_sym_LPAREN2] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(27), @@ -63804,10 +54226,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(31), [anon_sym_AMP_AMP] = ACTIONS(33), [anon_sym_AMP] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(189), - [anon_sym_typedef] = ACTIONS(191), - [anon_sym_extern] = ACTIONS(193), + [anon_sym_SEMI] = ACTIONS(1118), + [anon_sym___extension__] = ACTIONS(1120), + [anon_sym_typedef] = ACTIONS(1122), + [anon_sym_extern] = ACTIONS(1124), [anon_sym___attribute__] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(45), [anon_sym_LBRACK_LBRACK] = ACTIONS(47), @@ -63819,8 +54241,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(53), [anon_sym___thiscall] = ACTIONS(53), [anon_sym___vectorcall] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(860), - [anon_sym_RBRACE] = ACTIONS(1172), + [anon_sym_LBRACE] = ACTIONS(1126), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), @@ -63828,7 +54249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(201), + [anon_sym_inline] = ACTIONS(1128), [anon_sym___inline] = ACTIONS(61), [anon_sym___inline__] = ACTIONS(61), [anon_sym___forceinline] = ACTIONS(61), @@ -63850,19 +54271,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(71), [anon_sym_struct] = ACTIONS(73), [anon_sym_union] = ACTIONS(75), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_switch] = ACTIONS(1132), + [anon_sym_case] = ACTIONS(1134), + [anon_sym_default] = ACTIONS(1136), + [anon_sym_while] = ACTIONS(1138), + [anon_sym_do] = ACTIONS(1140), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(1144), + [anon_sym_break] = ACTIONS(1146), + [anon_sym_continue] = ACTIONS(1148), + [anon_sym_goto] = ACTIONS(1150), + [anon_sym___try] = ACTIONS(1152), + [anon_sym___leave] = ACTIONS(1154), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -63899,17 +54320,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), + [anon_sym_template] = ACTIONS(1156), [anon_sym_operator] = ACTIONS(135), - [anon_sym_try] = ACTIONS(233), + [anon_sym_try] = ACTIONS(1158), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_using] = ACTIONS(239), - [anon_sym_static_assert] = ACTIONS(241), - [anon_sym_concept] = ACTIONS(243), - [anon_sym_co_return] = ACTIONS(245), - [anon_sym_co_yield] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1160), + [anon_sym_namespace] = ACTIONS(1162), + [anon_sym_using] = ACTIONS(1164), + [anon_sym_static_assert] = ACTIONS(1166), + [anon_sym_concept] = ACTIONS(1168), + [anon_sym_co_return] = ACTIONS(1170), + [anon_sym_co_yield] = ACTIONS(1172), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -63932,28 +54353,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(61), [sym_declaration] = STATE(61), [sym_type_definition] = STATE(61), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), [sym_linkage_specification] = STATE(61), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(61), [sym_labeled_statement] = STATE(61), [sym_expression_statement] = STATE(61), @@ -63969,51 +54390,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(61), [sym_seh_try_statement] = STATE(61), [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(61), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(61), [sym_template_instantiation] = STATE(61), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), [sym_operator_cast_definition] = STATE(61), [sym_operator_cast_declaration] = STATE(61), [sym_constructor_or_destructor_definition] = STATE(61), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(61), [sym_namespace_alias_definition] = STATE(61), [sym_using_declaration] = STATE(61), @@ -64025,31 +54446,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(61), [sym_throw_statement] = STATE(61), [sym_try_statement] = STATE(61), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(61), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -64185,133 +54606,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [68] = { - [sym_preproc_include] = STATE(61), - [sym_preproc_def] = STATE(61), - [sym_preproc_function_def] = STATE(61), - [sym_preproc_call] = STATE(61), - [sym_preproc_if] = STATE(61), - [sym_preproc_ifdef] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(61), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_case_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(61), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(61), - [sym_template_instantiation] = STATE(61), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(61), - [sym_operator_cast_declaration] = STATE(61), - [sym_constructor_or_destructor_definition] = STATE(61), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(61), - [sym_namespace_alias_definition] = STATE(61), - [sym_using_declaration] = STATE(61), - [sym_alias_declaration] = STATE(61), - [sym_static_assert_declaration] = STATE(61), - [sym_concept_definition] = STATE(61), - [sym_for_range_loop] = STATE(61), - [sym_co_return_statement] = STATE(61), - [sym_co_yield_statement] = STATE(61), - [sym_throw_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(61), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [sym_preproc_include] = STATE(58), + [sym_preproc_def] = STATE(58), + [sym_preproc_function_def] = STATE(58), + [sym_preproc_call] = STATE(58), + [sym_preproc_if] = STATE(58), + [sym_preproc_ifdef] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(58), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_case_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(58), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(58), + [sym_template_instantiation] = STATE(58), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(58), + [sym_operator_cast_declaration] = STATE(58), + [sym_constructor_or_destructor_definition] = STATE(58), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(58), + [sym_namespace_alias_definition] = STATE(58), + [sym_using_declaration] = STATE(58), + [sym_alias_declaration] = STATE(58), + [sym_static_assert_declaration] = STATE(58), + [sym_concept_definition] = STATE(58), + [sym_for_range_loop] = STATE(58), + [sym_co_return_statement] = STATE(58), + [sym_co_yield_statement] = STATE(58), + [sym_throw_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(58), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -64447,133 +54868,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [69] = { - [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(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(71), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(71), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [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_seh_try_statement] = STATE(71), - [sym_seh_leave_statement] = STATE(71), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(71), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(71), - [sym_template_instantiation] = STATE(71), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(71), - [sym_operator_cast_declaration] = STATE(71), - [sym_constructor_or_destructor_definition] = STATE(71), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(71), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [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(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(70), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(70), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [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_seh_try_statement] = STATE(70), + [sym_seh_leave_statement] = STATE(70), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(70), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(70), + [sym_template_instantiation] = STATE(70), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(70), + [sym_operator_cast_declaration] = STATE(70), + [sym_constructor_or_destructor_definition] = STATE(70), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(70), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -64709,142 +55130,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [70] = { - [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(4228), - [sym_declaration_specifiers] = STATE(6403), - [sym_linkage_specification] = STATE(56), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2102), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7733), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4271), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [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_seh_try_statement] = STATE(56), - [sym_seh_leave_statement] = STATE(56), - [sym_expression] = STATE(5819), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9710), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(56), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(56), - [sym_template_instantiation] = STATE(56), - [sym_operator_cast] = STATE(8091), - [sym_constructor_specifiers] = STATE(1937), - [sym_operator_cast_definition] = STATE(56), - [sym_operator_cast_declaration] = STATE(56), - [sym_constructor_or_destructor_definition] = STATE(56), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8091), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(180), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(56), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(226), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1937), - [sym_identifier] = ACTIONS(976), - [aux_sym_preproc_include_token1] = ACTIONS(978), - [aux_sym_preproc_def_token1] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(982), - [aux_sym_preproc_if_token1] = ACTIONS(984), - [aux_sym_preproc_if_token2] = ACTIONS(1180), - [aux_sym_preproc_ifdef_token1] = ACTIONS(988), - [aux_sym_preproc_ifdef_token2] = ACTIONS(990), - [sym_preproc_directive] = ACTIONS(992), + [sym_preproc_include] = STATE(58), + [sym_preproc_def] = STATE(58), + [sym_preproc_function_def] = STATE(58), + [sym_preproc_call] = STATE(58), + [sym_preproc_if] = STATE(58), + [sym_preproc_ifdef] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(58), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_case_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(58), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(58), + [sym_template_instantiation] = STATE(58), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(58), + [sym_operator_cast_declaration] = STATE(58), + [sym_constructor_or_destructor_definition] = STATE(58), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(58), + [sym_namespace_alias_definition] = STATE(58), + [sym_using_declaration] = STATE(58), + [sym_alias_declaration] = STATE(58), + [sym_static_assert_declaration] = STATE(58), + [sym_concept_definition] = STATE(58), + [sym_for_range_loop] = STATE(58), + [sym_co_return_statement] = STATE(58), + [sym_co_yield_statement] = STATE(58), + [sym_throw_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(58), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), + [sym_identifier] = ACTIONS(858), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(175), + [aux_sym_preproc_if_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(27), @@ -64853,10 +55273,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(31), [anon_sym_AMP_AMP] = ACTIONS(33), [anon_sym_AMP] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym___extension__] = ACTIONS(996), - [anon_sym_typedef] = ACTIONS(998), - [anon_sym_extern] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(45), [anon_sym_LBRACK_LBRACK] = ACTIONS(47), @@ -64868,7 +55288,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(53), [anon_sym___thiscall] = ACTIONS(53), [anon_sym___vectorcall] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(860), + [anon_sym_RBRACE] = ACTIONS(1180), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), @@ -64876,7 +55297,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(1004), + [anon_sym_inline] = ACTIONS(201), [anon_sym___inline] = ACTIONS(61), [anon_sym___inline__] = ACTIONS(61), [anon_sym___forceinline] = ACTIONS(61), @@ -64898,19 +55319,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(71), [anon_sym_struct] = ACTIONS(73), [anon_sym_union] = ACTIONS(75), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_switch] = ACTIONS(1008), - [anon_sym_case] = ACTIONS(1010), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1014), - [anon_sym_do] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_break] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_goto] = ACTIONS(1026), - [anon_sym___try] = ACTIONS(1028), - [anon_sym___leave] = ACTIONS(1030), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -64947,17 +55368,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1032), + [anon_sym_template] = ACTIONS(231), [anon_sym_operator] = ACTIONS(135), - [anon_sym_try] = ACTIONS(1034), + [anon_sym_try] = ACTIONS(233), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(1036), - [anon_sym_namespace] = ACTIONS(1038), - [anon_sym_using] = ACTIONS(1040), - [anon_sym_static_assert] = ACTIONS(1042), - [anon_sym_concept] = ACTIONS(1044), - [anon_sym_co_return] = ACTIONS(1046), - [anon_sym_co_yield] = ACTIONS(1048), + [anon_sym_throw] = ACTIONS(235), + [anon_sym_namespace] = ACTIONS(237), + [anon_sym_using] = ACTIONS(239), + [anon_sym_static_assert] = ACTIONS(241), + [anon_sym_concept] = ACTIONS(243), + [anon_sym_co_return] = ACTIONS(245), + [anon_sym_co_yield] = ACTIONS(247), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -64971,133 +55392,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [71] = { - [sym_preproc_include] = STATE(61), - [sym_preproc_def] = STATE(61), - [sym_preproc_function_def] = STATE(61), - [sym_preproc_call] = STATE(61), - [sym_preproc_if] = STATE(61), - [sym_preproc_ifdef] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(61), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_case_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(61), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(61), - [sym_template_instantiation] = STATE(61), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(61), - [sym_operator_cast_declaration] = STATE(61), - [sym_constructor_or_destructor_definition] = STATE(61), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(61), - [sym_namespace_alias_definition] = STATE(61), - [sym_using_declaration] = STATE(61), - [sym_alias_declaration] = STATE(61), - [sym_static_assert_declaration] = STATE(61), - [sym_concept_definition] = STATE(61), - [sym_for_range_loop] = STATE(61), - [sym_co_return_statement] = STATE(61), - [sym_co_yield_statement] = STATE(61), - [sym_throw_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(61), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [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(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(73), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(73), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [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_seh_try_statement] = STATE(73), + [sym_seh_leave_statement] = STATE(73), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(73), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(73), + [sym_template_instantiation] = STATE(73), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(73), + [sym_operator_cast_declaration] = STATE(73), + [sym_constructor_or_destructor_definition] = STATE(73), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(73), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -65233,141 +55654,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [72] = { - [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(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(68), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(68), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [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_seh_try_statement] = STATE(68), - [sym_seh_leave_statement] = STATE(68), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(68), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(68), - [sym_template_instantiation] = STATE(68), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(68), - [sym_operator_cast_declaration] = STATE(68), - [sym_constructor_or_destructor_definition] = STATE(68), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(68), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), - [sym_identifier] = ACTIONS(858), - [aux_sym_preproc_include_token1] = ACTIONS(171), - [aux_sym_preproc_def_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_DOT] = ACTIONS(175), - [aux_sym_preproc_if_token1] = ACTIONS(179), - [aux_sym_preproc_ifdef_token1] = ACTIONS(181), - [aux_sym_preproc_ifdef_token2] = ACTIONS(183), - [sym_preproc_directive] = ACTIONS(185), + [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(4040), + [sym_declaration_specifiers] = STATE(5929), + [sym_linkage_specification] = STATE(66), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2225), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7319), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(66), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4050), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [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_seh_try_statement] = STATE(66), + [sym_seh_leave_statement] = STATE(66), + [sym_expression] = STATE(5320), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9351), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(66), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(66), + [sym_template_instantiation] = STATE(66), + [sym_operator_cast] = STATE(7747), + [sym_constructor_specifiers] = STATE(1998), + [sym_operator_cast_definition] = STATE(66), + [sym_operator_cast_declaration] = STATE(66), + [sym_constructor_or_destructor_definition] = STATE(66), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7747), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(176), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(66), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(252), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1998), + [sym_identifier] = ACTIONS(1100), + [aux_sym_preproc_include_token1] = ACTIONS(1102), + [aux_sym_preproc_def_token1] = ACTIONS(1104), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1106), + [aux_sym_preproc_if_token1] = ACTIONS(1108), + [aux_sym_preproc_if_token2] = ACTIONS(1184), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1114), + [sym_preproc_directive] = ACTIONS(1116), [anon_sym_LPAREN2] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(27), @@ -65376,10 +55798,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(31), [anon_sym_AMP_AMP] = ACTIONS(33), [anon_sym_AMP] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(189), - [anon_sym_typedef] = ACTIONS(191), - [anon_sym_extern] = ACTIONS(193), + [anon_sym_SEMI] = ACTIONS(1118), + [anon_sym___extension__] = ACTIONS(1120), + [anon_sym_typedef] = ACTIONS(1122), + [anon_sym_extern] = ACTIONS(1124), [anon_sym___attribute__] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(45), [anon_sym_LBRACK_LBRACK] = ACTIONS(47), @@ -65391,8 +55813,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(53), [anon_sym___thiscall] = ACTIONS(53), [anon_sym___vectorcall] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(860), - [anon_sym_RBRACE] = ACTIONS(1184), + [anon_sym_LBRACE] = ACTIONS(1126), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), @@ -65400,7 +55821,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(201), + [anon_sym_inline] = ACTIONS(1128), [anon_sym___inline] = ACTIONS(61), [anon_sym___inline__] = ACTIONS(61), [anon_sym___forceinline] = ACTIONS(61), @@ -65422,19 +55843,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(71), [anon_sym_struct] = ACTIONS(73), [anon_sym_union] = ACTIONS(75), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_switch] = ACTIONS(1132), + [anon_sym_case] = ACTIONS(1134), + [anon_sym_default] = ACTIONS(1136), + [anon_sym_while] = ACTIONS(1138), + [anon_sym_do] = ACTIONS(1140), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(1144), + [anon_sym_break] = ACTIONS(1146), + [anon_sym_continue] = ACTIONS(1148), + [anon_sym_goto] = ACTIONS(1150), + [anon_sym___try] = ACTIONS(1152), + [anon_sym___leave] = ACTIONS(1154), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -65471,17 +55892,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), + [anon_sym_template] = ACTIONS(1156), [anon_sym_operator] = ACTIONS(135), - [anon_sym_try] = ACTIONS(233), + [anon_sym_try] = ACTIONS(1158), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_using] = ACTIONS(239), - [anon_sym_static_assert] = ACTIONS(241), - [anon_sym_concept] = ACTIONS(243), - [anon_sym_co_return] = ACTIONS(245), - [anon_sym_co_yield] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1160), + [anon_sym_namespace] = ACTIONS(1162), + [anon_sym_using] = ACTIONS(1164), + [anon_sym_static_assert] = ACTIONS(1166), + [anon_sym_concept] = ACTIONS(1168), + [anon_sym_co_return] = ACTIONS(1170), + [anon_sym_co_yield] = ACTIONS(1172), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -65495,133 +55916,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [73] = { - [sym_preproc_include] = STATE(61), - [sym_preproc_def] = STATE(61), - [sym_preproc_function_def] = STATE(61), - [sym_preproc_call] = STATE(61), - [sym_preproc_if] = STATE(61), - [sym_preproc_ifdef] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(61), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_case_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(61), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(61), - [sym_template_instantiation] = STATE(61), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(61), - [sym_operator_cast_declaration] = STATE(61), - [sym_constructor_or_destructor_definition] = STATE(61), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(61), - [sym_namespace_alias_definition] = STATE(61), - [sym_using_declaration] = STATE(61), - [sym_alias_declaration] = STATE(61), - [sym_static_assert_declaration] = STATE(61), - [sym_concept_definition] = STATE(61), - [sym_for_range_loop] = STATE(61), - [sym_co_return_statement] = STATE(61), - [sym_co_yield_statement] = STATE(61), - [sym_throw_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(61), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [sym_preproc_include] = STATE(58), + [sym_preproc_def] = STATE(58), + [sym_preproc_function_def] = STATE(58), + [sym_preproc_call] = STATE(58), + [sym_preproc_if] = STATE(58), + [sym_preproc_ifdef] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(58), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_case_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(58), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(58), + [sym_template_instantiation] = STATE(58), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(58), + [sym_operator_cast_declaration] = STATE(58), + [sym_constructor_or_destructor_definition] = STATE(58), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(58), + [sym_namespace_alias_definition] = STATE(58), + [sym_using_declaration] = STATE(58), + [sym_alias_declaration] = STATE(58), + [sym_static_assert_declaration] = STATE(58), + [sym_concept_definition] = STATE(58), + [sym_for_range_loop] = STATE(58), + [sym_co_return_statement] = STATE(58), + [sym_co_yield_statement] = STATE(58), + [sym_throw_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(58), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -65757,133 +56178,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [74] = { - [sym_preproc_include] = STATE(75), - [sym_preproc_def] = STATE(75), - [sym_preproc_function_def] = STATE(75), - [sym_preproc_call] = STATE(75), - [sym_preproc_if] = STATE(75), - [sym_preproc_ifdef] = STATE(75), - [sym_function_definition] = STATE(75), - [sym_declaration] = STATE(75), - [sym_type_definition] = STATE(75), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(75), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(75), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [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_case_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_seh_try_statement] = STATE(75), - [sym_seh_leave_statement] = STATE(75), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(75), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(75), - [sym_template_instantiation] = STATE(75), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(75), - [sym_operator_cast_declaration] = STATE(75), - [sym_constructor_or_destructor_definition] = STATE(75), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(75), - [sym_namespace_alias_definition] = STATE(75), - [sym_using_declaration] = STATE(75), - [sym_alias_declaration] = STATE(75), - [sym_static_assert_declaration] = STATE(75), - [sym_concept_definition] = STATE(75), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(75), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [sym_preproc_include] = STATE(115), + [sym_preproc_def] = STATE(115), + [sym_preproc_function_def] = STATE(115), + [sym_preproc_call] = STATE(115), + [sym_preproc_if] = STATE(115), + [sym_preproc_ifdef] = STATE(115), + [sym_function_definition] = STATE(115), + [sym_declaration] = STATE(115), + [sym_type_definition] = STATE(115), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(115), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(115), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(115), + [sym_labeled_statement] = STATE(115), + [sym_expression_statement] = STATE(115), + [sym_if_statement] = STATE(115), + [sym_switch_statement] = STATE(115), + [sym_case_statement] = STATE(115), + [sym_while_statement] = STATE(115), + [sym_do_statement] = STATE(115), + [sym_for_statement] = STATE(115), + [sym_return_statement] = STATE(115), + [sym_break_statement] = STATE(115), + [sym_continue_statement] = STATE(115), + [sym_goto_statement] = STATE(115), + [sym_seh_try_statement] = STATE(115), + [sym_seh_leave_statement] = STATE(115), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(115), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(115), + [sym_template_instantiation] = STATE(115), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(115), + [sym_operator_cast_declaration] = STATE(115), + [sym_constructor_or_destructor_definition] = STATE(115), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(115), + [sym_namespace_alias_definition] = STATE(115), + [sym_using_declaration] = STATE(115), + [sym_alias_declaration] = STATE(115), + [sym_static_assert_declaration] = STATE(115), + [sym_concept_definition] = STATE(115), + [sym_for_range_loop] = STATE(115), + [sym_co_return_statement] = STATE(115), + [sym_co_yield_statement] = STATE(115), + [sym_throw_statement] = STATE(115), + [sym_try_statement] = STATE(115), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(115), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -66019,133 +56440,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [75] = { - [sym_preproc_include] = STATE(61), - [sym_preproc_def] = STATE(61), - [sym_preproc_function_def] = STATE(61), - [sym_preproc_call] = STATE(61), - [sym_preproc_if] = STATE(61), - [sym_preproc_ifdef] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(61), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_case_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(61), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(61), - [sym_template_instantiation] = STATE(61), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(61), - [sym_operator_cast_declaration] = STATE(61), - [sym_constructor_or_destructor_definition] = STATE(61), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(61), - [sym_namespace_alias_definition] = STATE(61), - [sym_using_declaration] = STATE(61), - [sym_alias_declaration] = STATE(61), - [sym_static_assert_declaration] = STATE(61), - [sym_concept_definition] = STATE(61), - [sym_for_range_loop] = STATE(61), - [sym_co_return_statement] = STATE(61), - [sym_co_yield_statement] = STATE(61), - [sym_throw_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(61), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [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(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(76), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [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_seh_try_statement] = STATE(76), + [sym_seh_leave_statement] = STATE(76), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(76), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(76), + [sym_template_instantiation] = STATE(76), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(76), + [sym_operator_cast_declaration] = STATE(76), + [sym_constructor_or_destructor_definition] = STATE(76), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(76), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -66281,133 +56702,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [76] = { - [sym_preproc_include] = STATE(77), - [sym_preproc_def] = STATE(77), - [sym_preproc_function_def] = STATE(77), - [sym_preproc_call] = STATE(77), - [sym_preproc_if] = STATE(77), - [sym_preproc_ifdef] = STATE(77), - [sym_function_definition] = STATE(77), - [sym_declaration] = STATE(77), - [sym_type_definition] = STATE(77), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(77), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [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_case_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_seh_try_statement] = STATE(77), - [sym_seh_leave_statement] = STATE(77), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(77), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(77), - [sym_template_instantiation] = STATE(77), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(77), - [sym_operator_cast_declaration] = STATE(77), - [sym_constructor_or_destructor_definition] = STATE(77), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(77), - [sym_namespace_alias_definition] = STATE(77), - [sym_using_declaration] = STATE(77), - [sym_alias_declaration] = STATE(77), - [sym_static_assert_declaration] = STATE(77), - [sym_concept_definition] = STATE(77), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(77), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [sym_preproc_include] = STATE(58), + [sym_preproc_def] = STATE(58), + [sym_preproc_function_def] = STATE(58), + [sym_preproc_call] = STATE(58), + [sym_preproc_if] = STATE(58), + [sym_preproc_ifdef] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(58), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_case_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(58), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(58), + [sym_template_instantiation] = STATE(58), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(58), + [sym_operator_cast_declaration] = STATE(58), + [sym_constructor_or_destructor_definition] = STATE(58), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(58), + [sym_namespace_alias_definition] = STATE(58), + [sym_using_declaration] = STATE(58), + [sym_alias_declaration] = STATE(58), + [sym_static_assert_declaration] = STATE(58), + [sym_concept_definition] = STATE(58), + [sym_for_range_loop] = STATE(58), + [sym_co_return_statement] = STATE(58), + [sym_co_yield_statement] = STATE(58), + [sym_throw_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(58), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -66543,133 +56964,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [77] = { - [sym_preproc_include] = STATE(61), - [sym_preproc_def] = STATE(61), - [sym_preproc_function_def] = STATE(61), - [sym_preproc_call] = STATE(61), - [sym_preproc_if] = STATE(61), - [sym_preproc_ifdef] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(61), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_case_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(61), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(61), - [sym_template_instantiation] = STATE(61), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(61), - [sym_operator_cast_declaration] = STATE(61), - [sym_constructor_or_destructor_definition] = STATE(61), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(61), - [sym_namespace_alias_definition] = STATE(61), - [sym_using_declaration] = STATE(61), - [sym_alias_declaration] = STATE(61), - [sym_static_assert_declaration] = STATE(61), - [sym_concept_definition] = STATE(61), - [sym_for_range_loop] = STATE(61), - [sym_co_return_statement] = STATE(61), - [sym_co_yield_statement] = STATE(61), - [sym_throw_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(61), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [sym_preproc_include] = STATE(78), + [sym_preproc_def] = STATE(78), + [sym_preproc_function_def] = STATE(78), + [sym_preproc_call] = STATE(78), + [sym_preproc_if] = STATE(78), + [sym_preproc_ifdef] = STATE(78), + [sym_function_definition] = STATE(78), + [sym_declaration] = STATE(78), + [sym_type_definition] = STATE(78), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(78), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(78), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [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_case_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_seh_try_statement] = STATE(78), + [sym_seh_leave_statement] = STATE(78), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(78), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(78), + [sym_template_instantiation] = STATE(78), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(78), + [sym_operator_cast_declaration] = STATE(78), + [sym_constructor_or_destructor_definition] = STATE(78), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(78), + [sym_namespace_alias_definition] = STATE(78), + [sym_using_declaration] = STATE(78), + [sym_alias_declaration] = STATE(78), + [sym_static_assert_declaration] = STATE(78), + [sym_concept_definition] = STATE(78), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(78), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -66805,133 +57226,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [78] = { - [sym_preproc_include] = STATE(61), - [sym_preproc_def] = STATE(61), - [sym_preproc_function_def] = STATE(61), - [sym_preproc_call] = STATE(61), - [sym_preproc_if] = STATE(61), - [sym_preproc_ifdef] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(61), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_case_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(61), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(61), - [sym_template_instantiation] = STATE(61), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(61), - [sym_operator_cast_declaration] = STATE(61), - [sym_constructor_or_destructor_definition] = STATE(61), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(61), - [sym_namespace_alias_definition] = STATE(61), - [sym_using_declaration] = STATE(61), - [sym_alias_declaration] = STATE(61), - [sym_static_assert_declaration] = STATE(61), - [sym_concept_definition] = STATE(61), - [sym_for_range_loop] = STATE(61), - [sym_co_return_statement] = STATE(61), - [sym_co_yield_statement] = STATE(61), - [sym_throw_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(61), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [sym_preproc_include] = STATE(58), + [sym_preproc_def] = STATE(58), + [sym_preproc_function_def] = STATE(58), + [sym_preproc_call] = STATE(58), + [sym_preproc_if] = STATE(58), + [sym_preproc_ifdef] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(58), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_case_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(58), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(58), + [sym_template_instantiation] = STATE(58), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(58), + [sym_operator_cast_declaration] = STATE(58), + [sym_constructor_or_destructor_definition] = STATE(58), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(58), + [sym_namespace_alias_definition] = STATE(58), + [sym_using_declaration] = STATE(58), + [sym_alias_declaration] = STATE(58), + [sym_static_assert_declaration] = STATE(58), + [sym_concept_definition] = STATE(58), + [sym_for_range_loop] = STATE(58), + [sym_co_return_statement] = STATE(58), + [sym_co_yield_statement] = STATE(58), + [sym_throw_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(58), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -67067,133 +57488,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [79] = { - [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(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(66), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(66), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [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_seh_try_statement] = STATE(66), - [sym_seh_leave_statement] = STATE(66), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(66), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(66), - [sym_template_instantiation] = STATE(66), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(66), - [sym_operator_cast_declaration] = STATE(66), - [sym_constructor_or_destructor_definition] = STATE(66), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(66), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [sym_preproc_include] = STATE(80), + [sym_preproc_def] = STATE(80), + [sym_preproc_function_def] = STATE(80), + [sym_preproc_call] = STATE(80), + [sym_preproc_if] = STATE(80), + [sym_preproc_ifdef] = STATE(80), + [sym_function_definition] = STATE(80), + [sym_declaration] = STATE(80), + [sym_type_definition] = STATE(80), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(80), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(80), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [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_case_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_seh_try_statement] = STATE(80), + [sym_seh_leave_statement] = STATE(80), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(80), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(80), + [sym_template_instantiation] = STATE(80), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(80), + [sym_operator_cast_declaration] = STATE(80), + [sym_constructor_or_destructor_definition] = STATE(80), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(80), + [sym_namespace_alias_definition] = STATE(80), + [sym_using_declaration] = STATE(80), + [sym_alias_declaration] = STATE(80), + [sym_static_assert_declaration] = STATE(80), + [sym_concept_definition] = STATE(80), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(80), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -67329,133 +57750,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [80] = { - [sym_preproc_include] = STATE(81), - [sym_preproc_def] = STATE(81), - [sym_preproc_function_def] = STATE(81), - [sym_preproc_call] = STATE(81), - [sym_preproc_if] = STATE(81), - [sym_preproc_ifdef] = STATE(81), - [sym_function_definition] = STATE(81), - [sym_declaration] = STATE(81), - [sym_type_definition] = STATE(81), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(81), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [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_case_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_seh_try_statement] = STATE(81), - [sym_seh_leave_statement] = STATE(81), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(81), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(81), - [sym_template_instantiation] = STATE(81), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(81), - [sym_operator_cast_declaration] = STATE(81), - [sym_constructor_or_destructor_definition] = STATE(81), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(81), - [sym_namespace_alias_definition] = STATE(81), - [sym_using_declaration] = STATE(81), - [sym_alias_declaration] = STATE(81), - [sym_static_assert_declaration] = STATE(81), - [sym_concept_definition] = STATE(81), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(81), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [sym_preproc_include] = STATE(58), + [sym_preproc_def] = STATE(58), + [sym_preproc_function_def] = STATE(58), + [sym_preproc_call] = STATE(58), + [sym_preproc_if] = STATE(58), + [sym_preproc_ifdef] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(58), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_case_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(58), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(58), + [sym_template_instantiation] = STATE(58), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(58), + [sym_operator_cast_declaration] = STATE(58), + [sym_constructor_or_destructor_definition] = STATE(58), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(58), + [sym_namespace_alias_definition] = STATE(58), + [sym_using_declaration] = STATE(58), + [sym_alias_declaration] = STATE(58), + [sym_static_assert_declaration] = STATE(58), + [sym_concept_definition] = STATE(58), + [sym_for_range_loop] = STATE(58), + [sym_co_return_statement] = STATE(58), + [sym_co_yield_statement] = STATE(58), + [sym_throw_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(58), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -67591,133 +58012,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [81] = { - [sym_preproc_include] = STATE(61), - [sym_preproc_def] = STATE(61), - [sym_preproc_function_def] = STATE(61), - [sym_preproc_call] = STATE(61), - [sym_preproc_if] = STATE(61), - [sym_preproc_ifdef] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(61), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_case_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(61), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(61), - [sym_template_instantiation] = STATE(61), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(61), - [sym_operator_cast_declaration] = STATE(61), - [sym_constructor_or_destructor_definition] = STATE(61), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(61), - [sym_namespace_alias_definition] = STATE(61), - [sym_using_declaration] = STATE(61), - [sym_alias_declaration] = STATE(61), - [sym_static_assert_declaration] = STATE(61), - [sym_concept_definition] = STATE(61), - [sym_for_range_loop] = STATE(61), - [sym_co_return_statement] = STATE(61), - [sym_co_yield_statement] = STATE(61), - [sym_throw_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(61), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [sym_preproc_include] = STATE(82), + [sym_preproc_def] = STATE(82), + [sym_preproc_function_def] = STATE(82), + [sym_preproc_call] = STATE(82), + [sym_preproc_if] = STATE(82), + [sym_preproc_ifdef] = STATE(82), + [sym_function_definition] = STATE(82), + [sym_declaration] = STATE(82), + [sym_type_definition] = STATE(82), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(82), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(82), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [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_case_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_seh_try_statement] = STATE(82), + [sym_seh_leave_statement] = STATE(82), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(82), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(82), + [sym_template_instantiation] = STATE(82), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(82), + [sym_operator_cast_declaration] = STATE(82), + [sym_constructor_or_destructor_definition] = STATE(82), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(82), + [sym_namespace_alias_definition] = STATE(82), + [sym_using_declaration] = STATE(82), + [sym_alias_declaration] = STATE(82), + [sym_static_assert_declaration] = STATE(82), + [sym_concept_definition] = STATE(82), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(82), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -67853,133 +58274,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [82] = { - [sym_preproc_include] = STATE(83), - [sym_preproc_def] = STATE(83), - [sym_preproc_function_def] = STATE(83), - [sym_preproc_call] = STATE(83), - [sym_preproc_if] = STATE(83), - [sym_preproc_ifdef] = STATE(83), - [sym_function_definition] = STATE(83), - [sym_declaration] = STATE(83), - [sym_type_definition] = STATE(83), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(83), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(83), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [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_case_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_seh_try_statement] = STATE(83), - [sym_seh_leave_statement] = STATE(83), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(83), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(83), - [sym_template_instantiation] = STATE(83), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(83), - [sym_operator_cast_declaration] = STATE(83), - [sym_constructor_or_destructor_definition] = STATE(83), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(83), - [sym_namespace_alias_definition] = STATE(83), - [sym_using_declaration] = STATE(83), - [sym_alias_declaration] = STATE(83), - [sym_static_assert_declaration] = STATE(83), - [sym_concept_definition] = STATE(83), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(83), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [sym_preproc_include] = STATE(58), + [sym_preproc_def] = STATE(58), + [sym_preproc_function_def] = STATE(58), + [sym_preproc_call] = STATE(58), + [sym_preproc_if] = STATE(58), + [sym_preproc_ifdef] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(58), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_case_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(58), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(58), + [sym_template_instantiation] = STATE(58), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(58), + [sym_operator_cast_declaration] = STATE(58), + [sym_constructor_or_destructor_definition] = STATE(58), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(58), + [sym_namespace_alias_definition] = STATE(58), + [sym_using_declaration] = STATE(58), + [sym_alias_declaration] = STATE(58), + [sym_static_assert_declaration] = STATE(58), + [sym_concept_definition] = STATE(58), + [sym_for_range_loop] = STATE(58), + [sym_co_return_statement] = STATE(58), + [sym_co_yield_statement] = STATE(58), + [sym_throw_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(58), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -68115,133 +58536,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [83] = { - [sym_preproc_include] = STATE(61), - [sym_preproc_def] = STATE(61), - [sym_preproc_function_def] = STATE(61), - [sym_preproc_call] = STATE(61), - [sym_preproc_if] = STATE(61), - [sym_preproc_ifdef] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(61), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_case_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(61), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(61), - [sym_template_instantiation] = STATE(61), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(61), - [sym_operator_cast_declaration] = STATE(61), - [sym_constructor_or_destructor_definition] = STATE(61), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(61), - [sym_namespace_alias_definition] = STATE(61), - [sym_using_declaration] = STATE(61), - [sym_alias_declaration] = STATE(61), - [sym_static_assert_declaration] = STATE(61), - [sym_concept_definition] = STATE(61), - [sym_for_range_loop] = STATE(61), - [sym_co_return_statement] = STATE(61), - [sym_co_yield_statement] = STATE(61), - [sym_throw_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(61), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [sym_preproc_include] = STATE(58), + [sym_preproc_def] = STATE(58), + [sym_preproc_function_def] = STATE(58), + [sym_preproc_call] = STATE(58), + [sym_preproc_if] = STATE(58), + [sym_preproc_ifdef] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(58), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_case_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(58), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(58), + [sym_template_instantiation] = STATE(58), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(58), + [sym_operator_cast_declaration] = STATE(58), + [sym_constructor_or_destructor_definition] = STATE(58), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(58), + [sym_namespace_alias_definition] = STATE(58), + [sym_using_declaration] = STATE(58), + [sym_alias_declaration] = STATE(58), + [sym_static_assert_declaration] = STATE(58), + [sym_concept_definition] = STATE(58), + [sym_for_range_loop] = STATE(58), + [sym_co_return_statement] = STATE(58), + [sym_co_yield_statement] = STATE(58), + [sym_throw_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(58), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -68386,28 +58807,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(85), [sym_declaration] = STATE(85), [sym_type_definition] = STATE(85), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), [sym_linkage_specification] = STATE(85), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(85), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(85), [sym_labeled_statement] = STATE(85), [sym_expression_statement] = STATE(85), @@ -68423,51 +58844,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(85), [sym_seh_try_statement] = STATE(85), [sym_seh_leave_statement] = STATE(85), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(85), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(85), [sym_template_instantiation] = STATE(85), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), [sym_operator_cast_definition] = STATE(85), [sym_operator_cast_declaration] = STATE(85), [sym_constructor_or_destructor_definition] = STATE(85), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(85), [sym_namespace_alias_definition] = STATE(85), [sym_using_declaration] = STATE(85), @@ -68479,31 +58900,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(85), [sym_throw_statement] = STATE(85), [sym_try_statement] = STATE(85), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(85), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -68639,133 +59060,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [85] = { - [sym_preproc_include] = STATE(61), - [sym_preproc_def] = STATE(61), - [sym_preproc_function_def] = STATE(61), - [sym_preproc_call] = STATE(61), - [sym_preproc_if] = STATE(61), - [sym_preproc_ifdef] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(61), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_case_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(61), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(61), - [sym_template_instantiation] = STATE(61), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(61), - [sym_operator_cast_declaration] = STATE(61), - [sym_constructor_or_destructor_definition] = STATE(61), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(61), - [sym_namespace_alias_definition] = STATE(61), - [sym_using_declaration] = STATE(61), - [sym_alias_declaration] = STATE(61), - [sym_static_assert_declaration] = STATE(61), - [sym_concept_definition] = STATE(61), - [sym_for_range_loop] = STATE(61), - [sym_co_return_statement] = STATE(61), - [sym_co_yield_statement] = STATE(61), - [sym_throw_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(61), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [sym_preproc_include] = STATE(58), + [sym_preproc_def] = STATE(58), + [sym_preproc_function_def] = STATE(58), + [sym_preproc_call] = STATE(58), + [sym_preproc_if] = STATE(58), + [sym_preproc_ifdef] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(58), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_case_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(58), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(58), + [sym_template_instantiation] = STATE(58), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(58), + [sym_operator_cast_declaration] = STATE(58), + [sym_constructor_or_destructor_definition] = STATE(58), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(58), + [sym_namespace_alias_definition] = STATE(58), + [sym_using_declaration] = STATE(58), + [sym_alias_declaration] = STATE(58), + [sym_static_assert_declaration] = STATE(58), + [sym_concept_definition] = STATE(58), + [sym_for_range_loop] = STATE(58), + [sym_co_return_statement] = STATE(58), + [sym_co_yield_statement] = STATE(58), + [sym_throw_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(58), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -68910,28 +59331,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(87), [sym_declaration] = STATE(87), [sym_type_definition] = STATE(87), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), [sym_linkage_specification] = STATE(87), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(87), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(87), [sym_labeled_statement] = STATE(87), [sym_expression_statement] = STATE(87), @@ -68947,51 +59368,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(87), [sym_seh_try_statement] = STATE(87), [sym_seh_leave_statement] = STATE(87), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(87), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(87), [sym_template_instantiation] = STATE(87), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), [sym_operator_cast_definition] = STATE(87), [sym_operator_cast_declaration] = STATE(87), [sym_constructor_or_destructor_definition] = STATE(87), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(87), [sym_namespace_alias_definition] = STATE(87), [sym_using_declaration] = STATE(87), @@ -69003,31 +59424,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(87), [sym_throw_statement] = STATE(87), [sym_try_statement] = STATE(87), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(87), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -69163,133 +59584,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [87] = { - [sym_preproc_include] = STATE(61), - [sym_preproc_def] = STATE(61), - [sym_preproc_function_def] = STATE(61), - [sym_preproc_call] = STATE(61), - [sym_preproc_if] = STATE(61), - [sym_preproc_ifdef] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(61), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_case_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(61), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(61), - [sym_template_instantiation] = STATE(61), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(61), - [sym_operator_cast_declaration] = STATE(61), - [sym_constructor_or_destructor_definition] = STATE(61), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(61), - [sym_namespace_alias_definition] = STATE(61), - [sym_using_declaration] = STATE(61), - [sym_alias_declaration] = STATE(61), - [sym_static_assert_declaration] = STATE(61), - [sym_concept_definition] = STATE(61), - [sym_for_range_loop] = STATE(61), - [sym_co_return_statement] = STATE(61), - [sym_co_yield_statement] = STATE(61), - [sym_throw_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(61), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [sym_preproc_include] = STATE(58), + [sym_preproc_def] = STATE(58), + [sym_preproc_function_def] = STATE(58), + [sym_preproc_call] = STATE(58), + [sym_preproc_if] = STATE(58), + [sym_preproc_ifdef] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(58), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_case_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(58), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(58), + [sym_template_instantiation] = STATE(58), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(58), + [sym_operator_cast_declaration] = STATE(58), + [sym_constructor_or_destructor_definition] = STATE(58), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(58), + [sym_namespace_alias_definition] = STATE(58), + [sym_using_declaration] = STATE(58), + [sym_alias_declaration] = STATE(58), + [sym_static_assert_declaration] = STATE(58), + [sym_concept_definition] = STATE(58), + [sym_for_range_loop] = STATE(58), + [sym_co_return_statement] = STATE(58), + [sym_co_yield_statement] = STATE(58), + [sym_throw_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(58), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -69434,28 +59855,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(89), [sym_declaration] = STATE(89), [sym_type_definition] = STATE(89), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), [sym_linkage_specification] = STATE(89), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(89), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(89), [sym_labeled_statement] = STATE(89), [sym_expression_statement] = STATE(89), @@ -69471,51 +59892,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(89), [sym_seh_try_statement] = STATE(89), [sym_seh_leave_statement] = STATE(89), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(89), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(89), [sym_template_instantiation] = STATE(89), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), [sym_operator_cast_definition] = STATE(89), [sym_operator_cast_declaration] = STATE(89), [sym_constructor_or_destructor_definition] = STATE(89), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(89), [sym_namespace_alias_definition] = STATE(89), [sym_using_declaration] = STATE(89), @@ -69527,31 +59948,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(89), [sym_throw_statement] = STATE(89), [sym_try_statement] = STATE(89), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(89), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -69687,133 +60108,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [89] = { - [sym_preproc_include] = STATE(61), - [sym_preproc_def] = STATE(61), - [sym_preproc_function_def] = STATE(61), - [sym_preproc_call] = STATE(61), - [sym_preproc_if] = STATE(61), - [sym_preproc_ifdef] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(61), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_case_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(61), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(61), - [sym_template_instantiation] = STATE(61), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(61), - [sym_operator_cast_declaration] = STATE(61), - [sym_constructor_or_destructor_definition] = STATE(61), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(61), - [sym_namespace_alias_definition] = STATE(61), - [sym_using_declaration] = STATE(61), - [sym_alias_declaration] = STATE(61), - [sym_static_assert_declaration] = STATE(61), - [sym_concept_definition] = STATE(61), - [sym_for_range_loop] = STATE(61), - [sym_co_return_statement] = STATE(61), - [sym_co_yield_statement] = STATE(61), - [sym_throw_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(61), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [sym_preproc_include] = STATE(58), + [sym_preproc_def] = STATE(58), + [sym_preproc_function_def] = STATE(58), + [sym_preproc_call] = STATE(58), + [sym_preproc_if] = STATE(58), + [sym_preproc_ifdef] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(58), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_case_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(58), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(58), + [sym_template_instantiation] = STATE(58), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(58), + [sym_operator_cast_declaration] = STATE(58), + [sym_constructor_or_destructor_definition] = STATE(58), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(58), + [sym_namespace_alias_definition] = STATE(58), + [sym_using_declaration] = STATE(58), + [sym_alias_declaration] = STATE(58), + [sym_static_assert_declaration] = STATE(58), + [sym_concept_definition] = STATE(58), + [sym_for_range_loop] = STATE(58), + [sym_co_return_statement] = STATE(58), + [sym_co_yield_statement] = STATE(58), + [sym_throw_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(58), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -69958,28 +60379,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(91), [sym_declaration] = STATE(91), [sym_type_definition] = STATE(91), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), [sym_linkage_specification] = STATE(91), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(91), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(91), [sym_labeled_statement] = STATE(91), [sym_expression_statement] = STATE(91), @@ -69995,51 +60416,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(91), [sym_seh_try_statement] = STATE(91), [sym_seh_leave_statement] = STATE(91), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(91), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(91), [sym_template_instantiation] = STATE(91), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), [sym_operator_cast_definition] = STATE(91), [sym_operator_cast_declaration] = STATE(91), [sym_constructor_or_destructor_definition] = STATE(91), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(91), [sym_namespace_alias_definition] = STATE(91), [sym_using_declaration] = STATE(91), @@ -70051,31 +60472,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(91), [sym_throw_statement] = STATE(91), [sym_try_statement] = STATE(91), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(91), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -70211,133 +60632,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [91] = { - [sym_preproc_include] = STATE(61), - [sym_preproc_def] = STATE(61), - [sym_preproc_function_def] = STATE(61), - [sym_preproc_call] = STATE(61), - [sym_preproc_if] = STATE(61), - [sym_preproc_ifdef] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(61), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_case_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(61), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(61), - [sym_template_instantiation] = STATE(61), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(61), - [sym_operator_cast_declaration] = STATE(61), - [sym_constructor_or_destructor_definition] = STATE(61), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(61), - [sym_namespace_alias_definition] = STATE(61), - [sym_using_declaration] = STATE(61), - [sym_alias_declaration] = STATE(61), - [sym_static_assert_declaration] = STATE(61), - [sym_concept_definition] = STATE(61), - [sym_for_range_loop] = STATE(61), - [sym_co_return_statement] = STATE(61), - [sym_co_yield_statement] = STATE(61), - [sym_throw_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(61), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [sym_preproc_include] = STATE(58), + [sym_preproc_def] = STATE(58), + [sym_preproc_function_def] = STATE(58), + [sym_preproc_call] = STATE(58), + [sym_preproc_if] = STATE(58), + [sym_preproc_ifdef] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(58), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_case_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(58), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(58), + [sym_template_instantiation] = STATE(58), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(58), + [sym_operator_cast_declaration] = STATE(58), + [sym_constructor_or_destructor_definition] = STATE(58), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(58), + [sym_namespace_alias_definition] = STATE(58), + [sym_using_declaration] = STATE(58), + [sym_alias_declaration] = STATE(58), + [sym_static_assert_declaration] = STATE(58), + [sym_concept_definition] = STATE(58), + [sym_for_range_loop] = STATE(58), + [sym_co_return_statement] = STATE(58), + [sym_co_yield_statement] = STATE(58), + [sym_throw_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(58), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -70482,28 +60903,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(93), [sym_declaration] = STATE(93), [sym_type_definition] = STATE(93), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), [sym_linkage_specification] = STATE(93), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(93), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(93), [sym_labeled_statement] = STATE(93), [sym_expression_statement] = STATE(93), @@ -70519,51 +60940,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(93), [sym_seh_try_statement] = STATE(93), [sym_seh_leave_statement] = STATE(93), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(93), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(93), [sym_template_instantiation] = STATE(93), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), [sym_operator_cast_definition] = STATE(93), [sym_operator_cast_declaration] = STATE(93), [sym_constructor_or_destructor_definition] = STATE(93), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(93), [sym_namespace_alias_definition] = STATE(93), [sym_using_declaration] = STATE(93), @@ -70575,31 +60996,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(93), [sym_throw_statement] = STATE(93), [sym_try_statement] = STATE(93), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(93), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -70735,133 +61156,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [93] = { - [sym_preproc_include] = STATE(61), - [sym_preproc_def] = STATE(61), - [sym_preproc_function_def] = STATE(61), - [sym_preproc_call] = STATE(61), - [sym_preproc_if] = STATE(61), - [sym_preproc_ifdef] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(61), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_case_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(61), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(61), - [sym_template_instantiation] = STATE(61), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(61), - [sym_operator_cast_declaration] = STATE(61), - [sym_constructor_or_destructor_definition] = STATE(61), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(61), - [sym_namespace_alias_definition] = STATE(61), - [sym_using_declaration] = STATE(61), - [sym_alias_declaration] = STATE(61), - [sym_static_assert_declaration] = STATE(61), - [sym_concept_definition] = STATE(61), - [sym_for_range_loop] = STATE(61), - [sym_co_return_statement] = STATE(61), - [sym_co_yield_statement] = STATE(61), - [sym_throw_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(61), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [sym_preproc_include] = STATE(58), + [sym_preproc_def] = STATE(58), + [sym_preproc_function_def] = STATE(58), + [sym_preproc_call] = STATE(58), + [sym_preproc_if] = STATE(58), + [sym_preproc_ifdef] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(58), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_case_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(58), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(58), + [sym_template_instantiation] = STATE(58), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(58), + [sym_operator_cast_declaration] = STATE(58), + [sym_constructor_or_destructor_definition] = STATE(58), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(58), + [sym_namespace_alias_definition] = STATE(58), + [sym_using_declaration] = STATE(58), + [sym_alias_declaration] = STATE(58), + [sym_static_assert_declaration] = STATE(58), + [sym_concept_definition] = STATE(58), + [sym_for_range_loop] = STATE(58), + [sym_co_return_statement] = STATE(58), + [sym_co_yield_statement] = STATE(58), + [sym_throw_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(58), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -71006,28 +61427,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(95), [sym_declaration] = STATE(95), [sym_type_definition] = STATE(95), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), [sym_linkage_specification] = STATE(95), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(95), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(95), [sym_labeled_statement] = STATE(95), [sym_expression_statement] = STATE(95), @@ -71043,51 +61464,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(95), [sym_seh_try_statement] = STATE(95), [sym_seh_leave_statement] = STATE(95), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(95), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(95), [sym_template_instantiation] = STATE(95), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), [sym_operator_cast_definition] = STATE(95), [sym_operator_cast_declaration] = STATE(95), [sym_constructor_or_destructor_definition] = STATE(95), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(95), [sym_namespace_alias_definition] = STATE(95), [sym_using_declaration] = STATE(95), @@ -71099,31 +61520,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(95), [sym_throw_statement] = STATE(95), [sym_try_statement] = STATE(95), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(95), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -71259,133 +61680,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [95] = { - [sym_preproc_include] = STATE(61), - [sym_preproc_def] = STATE(61), - [sym_preproc_function_def] = STATE(61), - [sym_preproc_call] = STATE(61), - [sym_preproc_if] = STATE(61), - [sym_preproc_ifdef] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(61), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_case_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(61), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(61), - [sym_template_instantiation] = STATE(61), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(61), - [sym_operator_cast_declaration] = STATE(61), - [sym_constructor_or_destructor_definition] = STATE(61), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(61), - [sym_namespace_alias_definition] = STATE(61), - [sym_using_declaration] = STATE(61), - [sym_alias_declaration] = STATE(61), - [sym_static_assert_declaration] = STATE(61), - [sym_concept_definition] = STATE(61), - [sym_for_range_loop] = STATE(61), - [sym_co_return_statement] = STATE(61), - [sym_co_yield_statement] = STATE(61), - [sym_throw_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(61), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [sym_preproc_include] = STATE(58), + [sym_preproc_def] = STATE(58), + [sym_preproc_function_def] = STATE(58), + [sym_preproc_call] = STATE(58), + [sym_preproc_if] = STATE(58), + [sym_preproc_ifdef] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(58), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_case_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(58), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(58), + [sym_template_instantiation] = STATE(58), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(58), + [sym_operator_cast_declaration] = STATE(58), + [sym_constructor_or_destructor_definition] = STATE(58), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(58), + [sym_namespace_alias_definition] = STATE(58), + [sym_using_declaration] = STATE(58), + [sym_alias_declaration] = STATE(58), + [sym_static_assert_declaration] = STATE(58), + [sym_concept_definition] = STATE(58), + [sym_for_range_loop] = STATE(58), + [sym_co_return_statement] = STATE(58), + [sym_co_yield_statement] = STATE(58), + [sym_throw_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(58), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -71530,28 +61951,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(97), [sym_declaration] = STATE(97), [sym_type_definition] = STATE(97), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), [sym_linkage_specification] = STATE(97), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(97), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(97), [sym_labeled_statement] = STATE(97), [sym_expression_statement] = STATE(97), @@ -71567,51 +61988,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(97), [sym_seh_try_statement] = STATE(97), [sym_seh_leave_statement] = STATE(97), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(97), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(97), [sym_template_instantiation] = STATE(97), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), [sym_operator_cast_definition] = STATE(97), [sym_operator_cast_declaration] = STATE(97), [sym_constructor_or_destructor_definition] = STATE(97), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(97), [sym_namespace_alias_definition] = STATE(97), [sym_using_declaration] = STATE(97), @@ -71623,31 +62044,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(97), [sym_throw_statement] = STATE(97), [sym_try_statement] = STATE(97), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(97), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -71783,133 +62204,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [97] = { - [sym_preproc_include] = STATE(61), - [sym_preproc_def] = STATE(61), - [sym_preproc_function_def] = STATE(61), - [sym_preproc_call] = STATE(61), - [sym_preproc_if] = STATE(61), - [sym_preproc_ifdef] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(61), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_case_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(61), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(61), - [sym_template_instantiation] = STATE(61), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(61), - [sym_operator_cast_declaration] = STATE(61), - [sym_constructor_or_destructor_definition] = STATE(61), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(61), - [sym_namespace_alias_definition] = STATE(61), - [sym_using_declaration] = STATE(61), - [sym_alias_declaration] = STATE(61), - [sym_static_assert_declaration] = STATE(61), - [sym_concept_definition] = STATE(61), - [sym_for_range_loop] = STATE(61), - [sym_co_return_statement] = STATE(61), - [sym_co_yield_statement] = STATE(61), - [sym_throw_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(61), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [sym_preproc_include] = STATE(58), + [sym_preproc_def] = STATE(58), + [sym_preproc_function_def] = STATE(58), + [sym_preproc_call] = STATE(58), + [sym_preproc_if] = STATE(58), + [sym_preproc_ifdef] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(58), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_case_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(58), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(58), + [sym_template_instantiation] = STATE(58), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(58), + [sym_operator_cast_declaration] = STATE(58), + [sym_constructor_or_destructor_definition] = STATE(58), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(58), + [sym_namespace_alias_definition] = STATE(58), + [sym_using_declaration] = STATE(58), + [sym_alias_declaration] = STATE(58), + [sym_static_assert_declaration] = STATE(58), + [sym_concept_definition] = STATE(58), + [sym_for_range_loop] = STATE(58), + [sym_co_return_statement] = STATE(58), + [sym_co_yield_statement] = STATE(58), + [sym_throw_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(58), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -72054,28 +62475,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(99), [sym_declaration] = STATE(99), [sym_type_definition] = STATE(99), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), [sym_linkage_specification] = STATE(99), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(99), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(99), [sym_labeled_statement] = STATE(99), [sym_expression_statement] = STATE(99), @@ -72091,51 +62512,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(99), [sym_seh_try_statement] = STATE(99), [sym_seh_leave_statement] = STATE(99), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(99), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(99), [sym_template_instantiation] = STATE(99), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), [sym_operator_cast_definition] = STATE(99), [sym_operator_cast_declaration] = STATE(99), [sym_constructor_or_destructor_definition] = STATE(99), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(99), [sym_namespace_alias_definition] = STATE(99), [sym_using_declaration] = STATE(99), @@ -72147,31 +62568,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(99), [sym_throw_statement] = STATE(99), [sym_try_statement] = STATE(99), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(99), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -72307,133 +62728,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [99] = { - [sym_preproc_include] = STATE(61), - [sym_preproc_def] = STATE(61), - [sym_preproc_function_def] = STATE(61), - [sym_preproc_call] = STATE(61), - [sym_preproc_if] = STATE(61), - [sym_preproc_ifdef] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(61), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_case_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(61), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(61), - [sym_template_instantiation] = STATE(61), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(61), - [sym_operator_cast_declaration] = STATE(61), - [sym_constructor_or_destructor_definition] = STATE(61), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(61), - [sym_namespace_alias_definition] = STATE(61), - [sym_using_declaration] = STATE(61), - [sym_alias_declaration] = STATE(61), - [sym_static_assert_declaration] = STATE(61), - [sym_concept_definition] = STATE(61), - [sym_for_range_loop] = STATE(61), - [sym_co_return_statement] = STATE(61), - [sym_co_yield_statement] = STATE(61), - [sym_throw_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(61), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [sym_preproc_include] = STATE(58), + [sym_preproc_def] = STATE(58), + [sym_preproc_function_def] = STATE(58), + [sym_preproc_call] = STATE(58), + [sym_preproc_if] = STATE(58), + [sym_preproc_ifdef] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(58), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_case_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(58), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(58), + [sym_template_instantiation] = STATE(58), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(58), + [sym_operator_cast_declaration] = STATE(58), + [sym_constructor_or_destructor_definition] = STATE(58), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(58), + [sym_namespace_alias_definition] = STATE(58), + [sym_using_declaration] = STATE(58), + [sym_alias_declaration] = STATE(58), + [sym_static_assert_declaration] = STATE(58), + [sym_concept_definition] = STATE(58), + [sym_for_range_loop] = STATE(58), + [sym_co_return_statement] = STATE(58), + [sym_co_yield_statement] = STATE(58), + [sym_throw_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(58), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -72578,28 +62999,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(101), [sym_declaration] = STATE(101), [sym_type_definition] = STATE(101), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), [sym_linkage_specification] = STATE(101), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(101), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(101), [sym_labeled_statement] = STATE(101), [sym_expression_statement] = STATE(101), @@ -72615,51 +63036,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(101), [sym_seh_try_statement] = STATE(101), [sym_seh_leave_statement] = STATE(101), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(101), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(101), [sym_template_instantiation] = STATE(101), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), [sym_operator_cast_definition] = STATE(101), [sym_operator_cast_declaration] = STATE(101), [sym_constructor_or_destructor_definition] = STATE(101), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(101), [sym_namespace_alias_definition] = STATE(101), [sym_using_declaration] = STATE(101), @@ -72671,31 +63092,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(101), [sym_throw_statement] = STATE(101), [sym_try_statement] = STATE(101), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(101), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -72831,133 +63252,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [101] = { - [sym_preproc_include] = STATE(61), - [sym_preproc_def] = STATE(61), - [sym_preproc_function_def] = STATE(61), - [sym_preproc_call] = STATE(61), - [sym_preproc_if] = STATE(61), - [sym_preproc_ifdef] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(61), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_case_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(61), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(61), - [sym_template_instantiation] = STATE(61), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(61), - [sym_operator_cast_declaration] = STATE(61), - [sym_constructor_or_destructor_definition] = STATE(61), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(61), - [sym_namespace_alias_definition] = STATE(61), - [sym_using_declaration] = STATE(61), - [sym_alias_declaration] = STATE(61), - [sym_static_assert_declaration] = STATE(61), - [sym_concept_definition] = STATE(61), - [sym_for_range_loop] = STATE(61), - [sym_co_return_statement] = STATE(61), - [sym_co_yield_statement] = STATE(61), - [sym_throw_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(61), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [sym_preproc_include] = STATE(58), + [sym_preproc_def] = STATE(58), + [sym_preproc_function_def] = STATE(58), + [sym_preproc_call] = STATE(58), + [sym_preproc_if] = STATE(58), + [sym_preproc_ifdef] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(58), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_case_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(58), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(58), + [sym_template_instantiation] = STATE(58), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(58), + [sym_operator_cast_declaration] = STATE(58), + [sym_constructor_or_destructor_definition] = STATE(58), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(58), + [sym_namespace_alias_definition] = STATE(58), + [sym_using_declaration] = STATE(58), + [sym_alias_declaration] = STATE(58), + [sym_static_assert_declaration] = STATE(58), + [sym_concept_definition] = STATE(58), + [sym_for_range_loop] = STATE(58), + [sym_co_return_statement] = STATE(58), + [sym_co_yield_statement] = STATE(58), + [sym_throw_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(58), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -73102,28 +63523,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(103), [sym_declaration] = STATE(103), [sym_type_definition] = STATE(103), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), [sym_linkage_specification] = STATE(103), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(103), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(103), [sym_labeled_statement] = STATE(103), [sym_expression_statement] = STATE(103), @@ -73139,51 +63560,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(103), [sym_seh_try_statement] = STATE(103), [sym_seh_leave_statement] = STATE(103), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(103), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(103), [sym_template_instantiation] = STATE(103), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), [sym_operator_cast_definition] = STATE(103), [sym_operator_cast_declaration] = STATE(103), [sym_constructor_or_destructor_definition] = STATE(103), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(103), [sym_namespace_alias_definition] = STATE(103), [sym_using_declaration] = STATE(103), @@ -73195,31 +63616,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(103), [sym_throw_statement] = STATE(103), [sym_try_statement] = STATE(103), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(103), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -73355,133 +63776,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [103] = { - [sym_preproc_include] = STATE(61), - [sym_preproc_def] = STATE(61), - [sym_preproc_function_def] = STATE(61), - [sym_preproc_call] = STATE(61), - [sym_preproc_if] = STATE(61), - [sym_preproc_ifdef] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(61), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_case_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(61), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(61), - [sym_template_instantiation] = STATE(61), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(61), - [sym_operator_cast_declaration] = STATE(61), - [sym_constructor_or_destructor_definition] = STATE(61), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(61), - [sym_namespace_alias_definition] = STATE(61), - [sym_using_declaration] = STATE(61), - [sym_alias_declaration] = STATE(61), - [sym_static_assert_declaration] = STATE(61), - [sym_concept_definition] = STATE(61), - [sym_for_range_loop] = STATE(61), - [sym_co_return_statement] = STATE(61), - [sym_co_yield_statement] = STATE(61), - [sym_throw_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(61), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [sym_preproc_include] = STATE(58), + [sym_preproc_def] = STATE(58), + [sym_preproc_function_def] = STATE(58), + [sym_preproc_call] = STATE(58), + [sym_preproc_if] = STATE(58), + [sym_preproc_ifdef] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(58), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_case_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(58), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(58), + [sym_template_instantiation] = STATE(58), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(58), + [sym_operator_cast_declaration] = STATE(58), + [sym_constructor_or_destructor_definition] = STATE(58), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(58), + [sym_namespace_alias_definition] = STATE(58), + [sym_using_declaration] = STATE(58), + [sym_alias_declaration] = STATE(58), + [sym_static_assert_declaration] = STATE(58), + [sym_concept_definition] = STATE(58), + [sym_for_range_loop] = STATE(58), + [sym_co_return_statement] = STATE(58), + [sym_co_yield_statement] = STATE(58), + [sym_throw_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(58), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -73626,28 +64047,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(105), [sym_declaration] = STATE(105), [sym_type_definition] = STATE(105), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), [sym_linkage_specification] = STATE(105), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(105), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(105), [sym_labeled_statement] = STATE(105), [sym_expression_statement] = STATE(105), @@ -73663,51 +64084,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(105), [sym_seh_try_statement] = STATE(105), [sym_seh_leave_statement] = STATE(105), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(105), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(105), [sym_template_instantiation] = STATE(105), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), [sym_operator_cast_definition] = STATE(105), [sym_operator_cast_declaration] = STATE(105), [sym_constructor_or_destructor_definition] = STATE(105), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(105), [sym_namespace_alias_definition] = STATE(105), [sym_using_declaration] = STATE(105), @@ -73719,31 +64140,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(105), [sym_throw_statement] = STATE(105), [sym_try_statement] = STATE(105), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(105), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -73879,133 +64300,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [105] = { - [sym_preproc_include] = STATE(61), - [sym_preproc_def] = STATE(61), - [sym_preproc_function_def] = STATE(61), - [sym_preproc_call] = STATE(61), - [sym_preproc_if] = STATE(61), - [sym_preproc_ifdef] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(61), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_case_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(61), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(61), - [sym_template_instantiation] = STATE(61), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(61), - [sym_operator_cast_declaration] = STATE(61), - [sym_constructor_or_destructor_definition] = STATE(61), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(61), - [sym_namespace_alias_definition] = STATE(61), - [sym_using_declaration] = STATE(61), - [sym_alias_declaration] = STATE(61), - [sym_static_assert_declaration] = STATE(61), - [sym_concept_definition] = STATE(61), - [sym_for_range_loop] = STATE(61), - [sym_co_return_statement] = STATE(61), - [sym_co_yield_statement] = STATE(61), - [sym_throw_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(61), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [sym_preproc_include] = STATE(58), + [sym_preproc_def] = STATE(58), + [sym_preproc_function_def] = STATE(58), + [sym_preproc_call] = STATE(58), + [sym_preproc_if] = STATE(58), + [sym_preproc_ifdef] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(58), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_case_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(58), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(58), + [sym_template_instantiation] = STATE(58), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(58), + [sym_operator_cast_declaration] = STATE(58), + [sym_constructor_or_destructor_definition] = STATE(58), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(58), + [sym_namespace_alias_definition] = STATE(58), + [sym_using_declaration] = STATE(58), + [sym_alias_declaration] = STATE(58), + [sym_static_assert_declaration] = STATE(58), + [sym_concept_definition] = STATE(58), + [sym_for_range_loop] = STATE(58), + [sym_co_return_statement] = STATE(58), + [sym_co_yield_statement] = STATE(58), + [sym_throw_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(58), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -74141,133 +64562,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [106] = { - [sym_preproc_include] = STATE(107), - [sym_preproc_def] = STATE(107), - [sym_preproc_function_def] = STATE(107), - [sym_preproc_call] = STATE(107), - [sym_preproc_if] = STATE(107), - [sym_preproc_ifdef] = STATE(107), - [sym_function_definition] = STATE(107), - [sym_declaration] = STATE(107), - [sym_type_definition] = STATE(107), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(107), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(107), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(107), - [sym_labeled_statement] = STATE(107), - [sym_expression_statement] = STATE(107), - [sym_if_statement] = STATE(107), - [sym_switch_statement] = STATE(107), - [sym_case_statement] = STATE(107), - [sym_while_statement] = STATE(107), - [sym_do_statement] = STATE(107), - [sym_for_statement] = STATE(107), - [sym_return_statement] = STATE(107), - [sym_break_statement] = STATE(107), - [sym_continue_statement] = STATE(107), - [sym_goto_statement] = STATE(107), - [sym_seh_try_statement] = STATE(107), - [sym_seh_leave_statement] = STATE(107), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(107), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(107), - [sym_template_instantiation] = STATE(107), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(107), - [sym_operator_cast_declaration] = STATE(107), - [sym_constructor_or_destructor_definition] = STATE(107), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(107), - [sym_namespace_alias_definition] = STATE(107), - [sym_using_declaration] = STATE(107), - [sym_alias_declaration] = STATE(107), - [sym_static_assert_declaration] = STATE(107), - [sym_concept_definition] = STATE(107), - [sym_for_range_loop] = STATE(107), - [sym_co_return_statement] = STATE(107), - [sym_co_yield_statement] = STATE(107), - [sym_throw_statement] = STATE(107), - [sym_try_statement] = STATE(107), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(107), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [sym_preproc_include] = STATE(83), + [sym_preproc_def] = STATE(83), + [sym_preproc_function_def] = STATE(83), + [sym_preproc_call] = STATE(83), + [sym_preproc_if] = STATE(83), + [sym_preproc_ifdef] = STATE(83), + [sym_function_definition] = STATE(83), + [sym_declaration] = STATE(83), + [sym_type_definition] = STATE(83), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(83), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(83), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [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_case_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_seh_try_statement] = STATE(83), + [sym_seh_leave_statement] = STATE(83), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(83), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(83), + [sym_template_instantiation] = STATE(83), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(83), + [sym_operator_cast_declaration] = STATE(83), + [sym_constructor_or_destructor_definition] = STATE(83), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(83), + [sym_namespace_alias_definition] = STATE(83), + [sym_using_declaration] = STATE(83), + [sym_alias_declaration] = STATE(83), + [sym_static_assert_declaration] = STATE(83), + [sym_concept_definition] = STATE(83), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(83), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -74403,133 +64824,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [107] = { - [sym_preproc_include] = STATE(61), - [sym_preproc_def] = STATE(61), - [sym_preproc_function_def] = STATE(61), - [sym_preproc_call] = STATE(61), - [sym_preproc_if] = STATE(61), - [sym_preproc_ifdef] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(61), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_case_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(61), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(61), - [sym_template_instantiation] = STATE(61), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(61), - [sym_operator_cast_declaration] = STATE(61), - [sym_constructor_or_destructor_definition] = STATE(61), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(61), - [sym_namespace_alias_definition] = STATE(61), - [sym_using_declaration] = STATE(61), - [sym_alias_declaration] = STATE(61), - [sym_static_assert_declaration] = STATE(61), - [sym_concept_definition] = STATE(61), - [sym_for_range_loop] = STATE(61), - [sym_co_return_statement] = STATE(61), - [sym_co_yield_statement] = STATE(61), - [sym_throw_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(61), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [sym_preproc_include] = STATE(58), + [sym_preproc_def] = STATE(58), + [sym_preproc_function_def] = STATE(58), + [sym_preproc_call] = STATE(58), + [sym_preproc_if] = STATE(58), + [sym_preproc_ifdef] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(58), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_case_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(58), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(58), + [sym_template_instantiation] = STATE(58), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(58), + [sym_operator_cast_declaration] = STATE(58), + [sym_constructor_or_destructor_definition] = STATE(58), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(58), + [sym_namespace_alias_definition] = STATE(58), + [sym_using_declaration] = STATE(58), + [sym_alias_declaration] = STATE(58), + [sym_static_assert_declaration] = STATE(58), + [sym_concept_definition] = STATE(58), + [sym_for_range_loop] = STATE(58), + [sym_co_return_statement] = STATE(58), + [sym_co_yield_statement] = STATE(58), + [sym_throw_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(58), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -74674,28 +65095,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(109), [sym_declaration] = STATE(109), [sym_type_definition] = STATE(109), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), [sym_linkage_specification] = STATE(109), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(109), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(109), [sym_labeled_statement] = STATE(109), [sym_expression_statement] = STATE(109), @@ -74711,51 +65132,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(109), [sym_seh_try_statement] = STATE(109), [sym_seh_leave_statement] = STATE(109), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(109), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(109), [sym_template_instantiation] = STATE(109), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), [sym_operator_cast_definition] = STATE(109), [sym_operator_cast_declaration] = STATE(109), [sym_constructor_or_destructor_definition] = STATE(109), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(109), [sym_namespace_alias_definition] = STATE(109), [sym_using_declaration] = STATE(109), @@ -74767,31 +65188,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(109), [sym_throw_statement] = STATE(109), [sym_try_statement] = STATE(109), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(109), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -74927,133 +65348,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [109] = { - [sym_preproc_include] = STATE(61), - [sym_preproc_def] = STATE(61), - [sym_preproc_function_def] = STATE(61), - [sym_preproc_call] = STATE(61), - [sym_preproc_if] = STATE(61), - [sym_preproc_ifdef] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(61), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_case_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(61), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(61), - [sym_template_instantiation] = STATE(61), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(61), - [sym_operator_cast_declaration] = STATE(61), - [sym_constructor_or_destructor_definition] = STATE(61), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(61), - [sym_namespace_alias_definition] = STATE(61), - [sym_using_declaration] = STATE(61), - [sym_alias_declaration] = STATE(61), - [sym_static_assert_declaration] = STATE(61), - [sym_concept_definition] = STATE(61), - [sym_for_range_loop] = STATE(61), - [sym_co_return_statement] = STATE(61), - [sym_co_yield_statement] = STATE(61), - [sym_throw_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(61), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [sym_preproc_include] = STATE(58), + [sym_preproc_def] = STATE(58), + [sym_preproc_function_def] = STATE(58), + [sym_preproc_call] = STATE(58), + [sym_preproc_if] = STATE(58), + [sym_preproc_ifdef] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(58), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_case_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(58), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(58), + [sym_template_instantiation] = STATE(58), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(58), + [sym_operator_cast_declaration] = STATE(58), + [sym_constructor_or_destructor_definition] = STATE(58), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(58), + [sym_namespace_alias_definition] = STATE(58), + [sym_using_declaration] = STATE(58), + [sym_alias_declaration] = STATE(58), + [sym_static_assert_declaration] = STATE(58), + [sym_concept_definition] = STATE(58), + [sym_for_range_loop] = STATE(58), + [sym_co_return_statement] = STATE(58), + [sym_co_yield_statement] = STATE(58), + [sym_throw_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(58), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -75198,28 +65619,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(111), [sym_declaration] = STATE(111), [sym_type_definition] = STATE(111), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), [sym_linkage_specification] = STATE(111), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(111), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(111), [sym_labeled_statement] = STATE(111), [sym_expression_statement] = STATE(111), @@ -75235,51 +65656,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(111), [sym_seh_try_statement] = STATE(111), [sym_seh_leave_statement] = STATE(111), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(111), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(111), [sym_template_instantiation] = STATE(111), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), [sym_operator_cast_definition] = STATE(111), [sym_operator_cast_declaration] = STATE(111), [sym_constructor_or_destructor_definition] = STATE(111), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(111), [sym_namespace_alias_definition] = STATE(111), [sym_using_declaration] = STATE(111), @@ -75291,31 +65712,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(111), [sym_throw_statement] = STATE(111), [sym_try_statement] = STATE(111), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(111), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -75451,133 +65872,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [111] = { - [sym_preproc_include] = STATE(61), - [sym_preproc_def] = STATE(61), - [sym_preproc_function_def] = STATE(61), - [sym_preproc_call] = STATE(61), - [sym_preproc_if] = STATE(61), - [sym_preproc_ifdef] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(61), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_case_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(61), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(61), - [sym_template_instantiation] = STATE(61), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(61), - [sym_operator_cast_declaration] = STATE(61), - [sym_constructor_or_destructor_definition] = STATE(61), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(61), - [sym_namespace_alias_definition] = STATE(61), - [sym_using_declaration] = STATE(61), - [sym_alias_declaration] = STATE(61), - [sym_static_assert_declaration] = STATE(61), - [sym_concept_definition] = STATE(61), - [sym_for_range_loop] = STATE(61), - [sym_co_return_statement] = STATE(61), - [sym_co_yield_statement] = STATE(61), - [sym_throw_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(61), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [sym_preproc_include] = STATE(58), + [sym_preproc_def] = STATE(58), + [sym_preproc_function_def] = STATE(58), + [sym_preproc_call] = STATE(58), + [sym_preproc_if] = STATE(58), + [sym_preproc_ifdef] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(58), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_case_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(58), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(58), + [sym_template_instantiation] = STATE(58), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(58), + [sym_operator_cast_declaration] = STATE(58), + [sym_constructor_or_destructor_definition] = STATE(58), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(58), + [sym_namespace_alias_definition] = STATE(58), + [sym_using_declaration] = STATE(58), + [sym_alias_declaration] = STATE(58), + [sym_static_assert_declaration] = STATE(58), + [sym_concept_definition] = STATE(58), + [sym_for_range_loop] = STATE(58), + [sym_co_return_statement] = STATE(58), + [sym_co_yield_statement] = STATE(58), + [sym_throw_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(58), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -75722,28 +66143,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(113), [sym_declaration] = STATE(113), [sym_type_definition] = STATE(113), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), [sym_linkage_specification] = STATE(113), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(113), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(113), [sym_labeled_statement] = STATE(113), [sym_expression_statement] = STATE(113), @@ -75759,51 +66180,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(113), [sym_seh_try_statement] = STATE(113), [sym_seh_leave_statement] = STATE(113), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(113), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(113), [sym_template_instantiation] = STATE(113), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), [sym_operator_cast_definition] = STATE(113), [sym_operator_cast_declaration] = STATE(113), [sym_constructor_or_destructor_definition] = STATE(113), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(113), [sym_namespace_alias_definition] = STATE(113), [sym_using_declaration] = STATE(113), @@ -75815,31 +66236,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(113), [sym_throw_statement] = STATE(113), [sym_try_statement] = STATE(113), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(113), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -75975,133 +66396,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [113] = { - [sym_preproc_include] = STATE(61), - [sym_preproc_def] = STATE(61), - [sym_preproc_function_def] = STATE(61), - [sym_preproc_call] = STATE(61), - [sym_preproc_if] = STATE(61), - [sym_preproc_ifdef] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(61), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_case_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(61), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(61), - [sym_template_instantiation] = STATE(61), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(61), - [sym_operator_cast_declaration] = STATE(61), - [sym_constructor_or_destructor_definition] = STATE(61), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(61), - [sym_namespace_alias_definition] = STATE(61), - [sym_using_declaration] = STATE(61), - [sym_alias_declaration] = STATE(61), - [sym_static_assert_declaration] = STATE(61), - [sym_concept_definition] = STATE(61), - [sym_for_range_loop] = STATE(61), - [sym_co_return_statement] = STATE(61), - [sym_co_yield_statement] = STATE(61), - [sym_throw_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(61), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [sym_preproc_include] = STATE(58), + [sym_preproc_def] = STATE(58), + [sym_preproc_function_def] = STATE(58), + [sym_preproc_call] = STATE(58), + [sym_preproc_if] = STATE(58), + [sym_preproc_ifdef] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(58), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_case_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(58), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(58), + [sym_template_instantiation] = STATE(58), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(58), + [sym_operator_cast_declaration] = STATE(58), + [sym_constructor_or_destructor_definition] = STATE(58), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(58), + [sym_namespace_alias_definition] = STATE(58), + [sym_using_declaration] = STATE(58), + [sym_alias_declaration] = STATE(58), + [sym_static_assert_declaration] = STATE(58), + [sym_concept_definition] = STATE(58), + [sym_for_range_loop] = STATE(58), + [sym_co_return_statement] = STATE(58), + [sym_co_yield_statement] = STATE(58), + [sym_throw_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(58), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -76237,530 +66658,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [114] = { - [sym_preproc_include] = STATE(115), - [sym_preproc_def] = STATE(115), - [sym_preproc_function_def] = STATE(115), - [sym_preproc_call] = STATE(115), - [sym_preproc_if] = STATE(115), - [sym_preproc_ifdef] = STATE(115), - [sym_function_definition] = STATE(115), - [sym_declaration] = STATE(115), - [sym_type_definition] = STATE(115), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(115), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(115), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(115), - [sym_labeled_statement] = STATE(115), - [sym_expression_statement] = STATE(115), - [sym_if_statement] = STATE(115), - [sym_switch_statement] = STATE(115), - [sym_case_statement] = STATE(115), - [sym_while_statement] = STATE(115), - [sym_do_statement] = STATE(115), - [sym_for_statement] = STATE(115), - [sym_return_statement] = STATE(115), - [sym_break_statement] = STATE(115), - [sym_continue_statement] = STATE(115), - [sym_goto_statement] = STATE(115), - [sym_seh_try_statement] = STATE(115), - [sym_seh_leave_statement] = STATE(115), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(115), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(115), - [sym_template_instantiation] = STATE(115), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(115), - [sym_operator_cast_declaration] = STATE(115), - [sym_constructor_or_destructor_definition] = STATE(115), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(115), - [sym_namespace_alias_definition] = STATE(115), - [sym_using_declaration] = STATE(115), - [sym_alias_declaration] = STATE(115), - [sym_static_assert_declaration] = STATE(115), - [sym_concept_definition] = STATE(115), - [sym_for_range_loop] = STATE(115), - [sym_co_return_statement] = STATE(115), - [sym_co_yield_statement] = STATE(115), - [sym_throw_statement] = STATE(115), - [sym_try_statement] = STATE(115), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(115), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), - [sym_identifier] = ACTIONS(858), - [aux_sym_preproc_include_token1] = ACTIONS(171), - [aux_sym_preproc_def_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_DOT] = ACTIONS(175), - [aux_sym_preproc_if_token1] = ACTIONS(179), - [aux_sym_preproc_ifdef_token1] = ACTIONS(181), - [aux_sym_preproc_ifdef_token2] = ACTIONS(183), - [sym_preproc_directive] = ACTIONS(185), - [anon_sym_LPAREN2] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(189), - [anon_sym_typedef] = ACTIONS(191), - [anon_sym_extern] = ACTIONS(193), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(47), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(53), - [anon_sym___clrcall] = ACTIONS(53), - [anon_sym___stdcall] = ACTIONS(53), - [anon_sym___fastcall] = ACTIONS(53), - [anon_sym___thiscall] = ACTIONS(53), - [anon_sym___vectorcall] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(860), - [anon_sym_RBRACE] = ACTIONS(1268), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(201), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(67), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_using] = ACTIONS(239), - [anon_sym_static_assert] = ACTIONS(241), - [anon_sym_concept] = ACTIONS(243), - [anon_sym_co_return] = ACTIONS(245), - [anon_sym_co_yield] = ACTIONS(247), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), - }, - [115] = { - [sym_preproc_include] = STATE(61), - [sym_preproc_def] = STATE(61), - [sym_preproc_function_def] = STATE(61), - [sym_preproc_call] = STATE(61), - [sym_preproc_if] = STATE(61), - [sym_preproc_ifdef] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(61), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_case_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(61), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(61), - [sym_template_instantiation] = STATE(61), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(61), - [sym_operator_cast_declaration] = STATE(61), - [sym_constructor_or_destructor_definition] = STATE(61), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(61), - [sym_namespace_alias_definition] = STATE(61), - [sym_using_declaration] = STATE(61), - [sym_alias_declaration] = STATE(61), - [sym_static_assert_declaration] = STATE(61), - [sym_concept_definition] = STATE(61), - [sym_for_range_loop] = STATE(61), - [sym_co_return_statement] = STATE(61), - [sym_co_yield_statement] = STATE(61), - [sym_throw_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(61), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), - [sym_identifier] = ACTIONS(858), - [aux_sym_preproc_include_token1] = ACTIONS(171), - [aux_sym_preproc_def_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_DOT] = ACTIONS(175), - [aux_sym_preproc_if_token1] = ACTIONS(179), - [aux_sym_preproc_ifdef_token1] = ACTIONS(181), - [aux_sym_preproc_ifdef_token2] = ACTIONS(183), - [sym_preproc_directive] = ACTIONS(185), - [anon_sym_LPAREN2] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(189), - [anon_sym_typedef] = ACTIONS(191), - [anon_sym_extern] = ACTIONS(193), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(47), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(53), - [anon_sym___clrcall] = ACTIONS(53), - [anon_sym___stdcall] = ACTIONS(53), - [anon_sym___fastcall] = ACTIONS(53), - [anon_sym___thiscall] = ACTIONS(53), - [anon_sym___vectorcall] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(860), - [anon_sym_RBRACE] = ACTIONS(1270), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(201), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(67), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_using] = ACTIONS(239), - [anon_sym_static_assert] = ACTIONS(241), - [anon_sym_concept] = ACTIONS(243), - [anon_sym_co_return] = ACTIONS(245), - [anon_sym_co_yield] = ACTIONS(247), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), - }, - [116] = { [sym_preproc_include] = STATE(55), [sym_preproc_def] = STATE(55), [sym_preproc_function_def] = STATE(55), @@ -76770,28 +66667,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(55), [sym_declaration] = STATE(55), [sym_type_definition] = STATE(55), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), [sym_linkage_specification] = STATE(55), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(55), [sym_labeled_statement] = STATE(55), [sym_expression_statement] = STATE(55), @@ -76807,51 +66704,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(55), [sym_seh_try_statement] = STATE(55), [sym_seh_leave_statement] = STATE(55), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), [sym_empty_declaration] = STATE(55), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), [sym_template_declaration] = STATE(55), [sym_template_instantiation] = STATE(55), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), [sym_operator_cast_definition] = STATE(55), [sym_operator_cast_declaration] = STATE(55), [sym_constructor_or_destructor_definition] = STATE(55), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), [sym_namespace_definition] = STATE(55), [sym_namespace_alias_definition] = STATE(55), [sym_using_declaration] = STATE(55), @@ -76863,31 +66760,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(55), [sym_throw_statement] = STATE(55), [sym_try_statement] = STATE(55), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_preproc_if_repeat1] = STATE(55), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -76920,7 +66817,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(53), [anon_sym___vectorcall] = ACTIONS(53), [anon_sym_LBRACE] = ACTIONS(860), - [anon_sym_RBRACE] = ACTIONS(1272), + [anon_sym_RBRACE] = ACTIONS(1268), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), @@ -77022,134 +66919,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [117] = { - [sym_preproc_include] = STATE(78), - [sym_preproc_def] = STATE(78), - [sym_preproc_function_def] = STATE(78), - [sym_preproc_call] = STATE(78), - [sym_preproc_if] = STATE(78), - [sym_preproc_ifdef] = STATE(78), - [sym_function_definition] = STATE(78), - [sym_declaration] = STATE(78), - [sym_type_definition] = STATE(78), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_linkage_specification] = STATE(78), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7712), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(78), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [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_case_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_seh_try_statement] = STATE(78), - [sym_seh_leave_statement] = STATE(78), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(78), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(78), - [sym_template_instantiation] = STATE(78), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(78), - [sym_operator_cast_declaration] = STATE(78), - [sym_constructor_or_destructor_definition] = STATE(78), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(78), - [sym_namespace_alias_definition] = STATE(78), - [sym_using_declaration] = STATE(78), - [sym_alias_declaration] = STATE(78), - [sym_static_assert_declaration] = STATE(78), - [sym_concept_definition] = STATE(78), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(179), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_preproc_if_repeat1] = STATE(78), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [115] = { + [sym_preproc_include] = STATE(58), + [sym_preproc_def] = STATE(58), + [sym_preproc_function_def] = STATE(58), + [sym_preproc_call] = STATE(58), + [sym_preproc_if] = STATE(58), + [sym_preproc_ifdef] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_linkage_specification] = STATE(58), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7315), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_case_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(58), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(58), + [sym_template_instantiation] = STATE(58), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(1973), + [sym_operator_cast_definition] = STATE(58), + [sym_operator_cast_declaration] = STATE(58), + [sym_constructor_or_destructor_definition] = STATE(58), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(58), + [sym_namespace_alias_definition] = STATE(58), + [sym_using_declaration] = STATE(58), + [sym_alias_declaration] = STATE(58), + [sym_static_assert_declaration] = STATE(58), + [sym_concept_definition] = STATE(58), + [sym_for_range_loop] = STATE(58), + [sym_co_return_statement] = STATE(58), + [sym_co_yield_statement] = STATE(58), + [sym_throw_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(177), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_preproc_if_repeat1] = STATE(58), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1973), [sym_identifier] = ACTIONS(858), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -77182,7 +67079,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(53), [anon_sym___vectorcall] = ACTIONS(53), [anon_sym_LBRACE] = ACTIONS(860), - [anon_sym_RBRACE] = ACTIONS(1274), + [anon_sym_RBRACE] = ACTIONS(1270), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), @@ -77284,388 +67181,388 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [118] = { - [sym_preproc_include] = STATE(118), - [sym_preproc_def] = STATE(118), - [sym_preproc_function_def] = STATE(118), - [sym_preproc_call] = STATE(118), - [sym_preproc_if] = STATE(118), - [sym_preproc_ifdef] = STATE(118), - [sym_function_definition] = STATE(118), - [sym_declaration] = STATE(118), - [sym_type_definition] = STATE(118), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6398), - [sym_linkage_specification] = STATE(118), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2086), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7760), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(118), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4374), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(118), - [sym_labeled_statement] = STATE(118), - [sym_top_level_expression_statement] = STATE(118), - [sym_if_statement] = STATE(118), - [sym_switch_statement] = STATE(118), - [sym_case_statement] = STATE(118), - [sym_while_statement] = STATE(118), - [sym_do_statement] = STATE(118), - [sym_for_statement] = STATE(118), - [sym_return_statement] = STATE(118), - [sym_break_statement] = STATE(118), - [sym_continue_statement] = STATE(118), - [sym_goto_statement] = STATE(118), - [sym_expression] = STATE(6126), - [sym_expression_not_binary] = STATE(6252), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(118), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(118), - [sym_template_instantiation] = STATE(118), - [sym_operator_cast] = STATE(8070), + [116] = { + [sym_preproc_include] = STATE(116), + [sym_preproc_def] = STATE(116), + [sym_preproc_function_def] = STATE(116), + [sym_preproc_call] = STATE(116), + [sym_preproc_if] = STATE(116), + [sym_preproc_ifdef] = STATE(116), + [sym_function_definition] = STATE(116), + [sym_declaration] = STATE(116), + [sym_type_definition] = STATE(116), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5909), + [sym_linkage_specification] = STATE(116), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2182), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7388), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(116), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4095), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(116), + [sym_labeled_statement] = STATE(116), + [sym_top_level_expression_statement] = STATE(116), + [sym_if_statement] = STATE(116), + [sym_switch_statement] = STATE(116), + [sym_case_statement] = STATE(116), + [sym_while_statement] = STATE(116), + [sym_do_statement] = STATE(116), + [sym_for_statement] = STATE(116), + [sym_return_statement] = STATE(116), + [sym_break_statement] = STATE(116), + [sym_continue_statement] = STATE(116), + [sym_goto_statement] = STATE(116), + [sym_expression] = STATE(5607), + [sym_expression_not_binary] = STATE(5724), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(116), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(116), + [sym_template_instantiation] = STATE(116), + [sym_operator_cast] = STATE(7739), [sym_constructor_specifiers] = STATE(1948), - [sym_operator_cast_definition] = STATE(118), - [sym_operator_cast_declaration] = STATE(118), - [sym_constructor_or_destructor_definition] = STATE(118), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(118), - [sym_namespace_alias_definition] = STATE(118), - [sym_using_declaration] = STATE(118), - [sym_alias_declaration] = STATE(118), - [sym_static_assert_declaration] = STATE(118), - [sym_concept_definition] = STATE(118), - [sym_for_range_loop] = STATE(118), - [sym_co_return_statement] = STATE(118), - [sym_co_yield_statement] = STATE(118), - [sym_throw_statement] = STATE(118), - [sym_try_statement] = STATE(118), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8070), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(185), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_translation_unit_repeat1] = STATE(118), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), + [sym_operator_cast_definition] = STATE(116), + [sym_operator_cast_declaration] = STATE(116), + [sym_constructor_or_destructor_definition] = STATE(116), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(116), + [sym_namespace_alias_definition] = STATE(116), + [sym_using_declaration] = STATE(116), + [sym_alias_declaration] = STATE(116), + [sym_static_assert_declaration] = STATE(116), + [sym_concept_definition] = STATE(116), + [sym_for_range_loop] = STATE(116), + [sym_co_return_statement] = STATE(116), + [sym_co_yield_statement] = STATE(116), + [sym_throw_statement] = STATE(116), + [sym_try_statement] = STATE(116), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7739), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(182), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_translation_unit_repeat1] = STATE(116), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(199), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), [aux_sym_operator_cast_definition_repeat1] = STATE(1948), - [ts_builtin_sym_end] = ACTIONS(1276), - [sym_identifier] = ACTIONS(1278), - [aux_sym_preproc_include_token1] = ACTIONS(1281), - [aux_sym_preproc_def_token1] = ACTIONS(1284), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1287), - [aux_sym_preproc_if_token1] = ACTIONS(1290), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1293), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1296), - [sym_preproc_directive] = ACTIONS(1299), - [anon_sym_LPAREN2] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1305), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_AMP_AMP] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(1323), - [anon_sym_typedef] = ACTIONS(1326), - [anon_sym_extern] = ACTIONS(1329), - [anon_sym___attribute__] = ACTIONS(1332), - [anon_sym_COLON_COLON] = ACTIONS(1335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), - [anon_sym___declspec] = ACTIONS(1341), - [anon_sym___based] = ACTIONS(1344), - [anon_sym___cdecl] = ACTIONS(1347), - [anon_sym___clrcall] = ACTIONS(1347), - [anon_sym___stdcall] = ACTIONS(1347), - [anon_sym___fastcall] = ACTIONS(1347), - [anon_sym___thiscall] = ACTIONS(1347), - [anon_sym___vectorcall] = ACTIONS(1347), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_signed] = ACTIONS(1353), - [anon_sym_unsigned] = ACTIONS(1353), - [anon_sym_long] = ACTIONS(1353), - [anon_sym_short] = ACTIONS(1353), - [anon_sym_LBRACK] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1359), - [anon_sym_register] = ACTIONS(1359), - [anon_sym_inline] = ACTIONS(1362), - [anon_sym___inline] = ACTIONS(1359), - [anon_sym___inline__] = ACTIONS(1359), - [anon_sym___forceinline] = ACTIONS(1359), - [anon_sym_thread_local] = ACTIONS(1359), - [anon_sym___thread] = ACTIONS(1359), - [anon_sym_const] = ACTIONS(1365), - [anon_sym_constexpr] = ACTIONS(1365), - [anon_sym_volatile] = ACTIONS(1365), - [anon_sym_restrict] = ACTIONS(1365), - [anon_sym___restrict__] = ACTIONS(1365), - [anon_sym__Atomic] = ACTIONS(1365), - [anon_sym__Noreturn] = ACTIONS(1365), - [anon_sym_noreturn] = ACTIONS(1365), - [anon_sym_mutable] = ACTIONS(1365), - [anon_sym_constinit] = ACTIONS(1365), - [anon_sym_consteval] = ACTIONS(1365), - [sym_primitive_type] = ACTIONS(1368), - [anon_sym_enum] = ACTIONS(1371), - [anon_sym_class] = ACTIONS(1374), - [anon_sym_struct] = ACTIONS(1377), - [anon_sym_union] = ACTIONS(1380), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_case] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1392), - [anon_sym_while] = ACTIONS(1395), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_return] = ACTIONS(1404), - [anon_sym_break] = ACTIONS(1407), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_goto] = ACTIONS(1413), - [anon_sym_not] = ACTIONS(1311), - [anon_sym_compl] = ACTIONS(1311), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_sizeof] = ACTIONS(1419), - [anon_sym___alignof__] = ACTIONS(1422), - [anon_sym___alignof] = ACTIONS(1422), - [anon_sym__alignof] = ACTIONS(1422), - [anon_sym_alignof] = ACTIONS(1422), - [anon_sym__Alignof] = ACTIONS(1422), - [anon_sym_offsetof] = ACTIONS(1425), - [anon_sym__Generic] = ACTIONS(1428), - [anon_sym_asm] = ACTIONS(1431), - [anon_sym___asm__] = ACTIONS(1431), - [sym_number_literal] = ACTIONS(1434), - [anon_sym_L_SQUOTE] = ACTIONS(1437), - [anon_sym_u_SQUOTE] = ACTIONS(1437), - [anon_sym_U_SQUOTE] = ACTIONS(1437), - [anon_sym_u8_SQUOTE] = ACTIONS(1437), - [anon_sym_SQUOTE] = ACTIONS(1437), - [anon_sym_L_DQUOTE] = ACTIONS(1440), - [anon_sym_u_DQUOTE] = ACTIONS(1440), - [anon_sym_U_DQUOTE] = ACTIONS(1440), - [anon_sym_u8_DQUOTE] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1440), - [sym_true] = ACTIONS(1443), - [sym_false] = ACTIONS(1443), - [anon_sym_NULL] = ACTIONS(1446), - [anon_sym_nullptr] = ACTIONS(1446), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1449), - [anon_sym_decltype] = ACTIONS(1452), - [anon_sym_virtual] = ACTIONS(1455), - [anon_sym_alignas] = ACTIONS(1458), - [anon_sym_explicit] = ACTIONS(1461), - [anon_sym_typename] = ACTIONS(1464), - [anon_sym_template] = ACTIONS(1467), - [anon_sym_operator] = ACTIONS(1470), - [anon_sym_try] = ACTIONS(1473), - [anon_sym_delete] = ACTIONS(1476), - [anon_sym_throw] = ACTIONS(1479), - [anon_sym_namespace] = ACTIONS(1482), - [anon_sym_using] = ACTIONS(1485), - [anon_sym_static_assert] = ACTIONS(1488), - [anon_sym_concept] = ACTIONS(1491), - [anon_sym_co_return] = ACTIONS(1494), - [anon_sym_co_yield] = ACTIONS(1497), - [anon_sym_R_DQUOTE] = ACTIONS(1500), - [anon_sym_LR_DQUOTE] = ACTIONS(1500), - [anon_sym_uR_DQUOTE] = ACTIONS(1500), - [anon_sym_UR_DQUOTE] = ACTIONS(1500), - [anon_sym_u8R_DQUOTE] = ACTIONS(1500), - [anon_sym_co_await] = ACTIONS(1503), - [anon_sym_new] = ACTIONS(1506), - [anon_sym_requires] = ACTIONS(1509), - [sym_this] = ACTIONS(1443), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1512), - [sym_semgrep_named_ellipsis] = ACTIONS(1515), + [ts_builtin_sym_end] = ACTIONS(1272), + [sym_identifier] = ACTIONS(1274), + [aux_sym_preproc_include_token1] = ACTIONS(1277), + [aux_sym_preproc_def_token1] = ACTIONS(1280), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), + [aux_sym_preproc_if_token1] = ACTIONS(1286), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), + [sym_preproc_directive] = ACTIONS(1295), + [anon_sym_LPAREN2] = ACTIONS(1298), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1319), + [anon_sym_typedef] = ACTIONS(1322), + [anon_sym_extern] = ACTIONS(1325), + [anon_sym___attribute__] = ACTIONS(1328), + [anon_sym_COLON_COLON] = ACTIONS(1331), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), + [anon_sym___declspec] = ACTIONS(1337), + [anon_sym___based] = ACTIONS(1340), + [anon_sym___cdecl] = ACTIONS(1343), + [anon_sym___clrcall] = ACTIONS(1343), + [anon_sym___stdcall] = ACTIONS(1343), + [anon_sym___fastcall] = ACTIONS(1343), + [anon_sym___thiscall] = ACTIONS(1343), + [anon_sym___vectorcall] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_signed] = ACTIONS(1349), + [anon_sym_unsigned] = ACTIONS(1349), + [anon_sym_long] = ACTIONS(1349), + [anon_sym_short] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_register] = ACTIONS(1355), + [anon_sym_inline] = ACTIONS(1358), + [anon_sym___inline] = ACTIONS(1355), + [anon_sym___inline__] = ACTIONS(1355), + [anon_sym___forceinline] = ACTIONS(1355), + [anon_sym_thread_local] = ACTIONS(1355), + [anon_sym___thread] = ACTIONS(1355), + [anon_sym_const] = ACTIONS(1361), + [anon_sym_constexpr] = ACTIONS(1361), + [anon_sym_volatile] = ACTIONS(1361), + [anon_sym_restrict] = ACTIONS(1361), + [anon_sym___restrict__] = ACTIONS(1361), + [anon_sym__Atomic] = ACTIONS(1361), + [anon_sym__Noreturn] = ACTIONS(1361), + [anon_sym_noreturn] = ACTIONS(1361), + [anon_sym_mutable] = ACTIONS(1361), + [anon_sym_constinit] = ACTIONS(1361), + [anon_sym_consteval] = ACTIONS(1361), + [sym_primitive_type] = ACTIONS(1364), + [anon_sym_enum] = ACTIONS(1367), + [anon_sym_class] = ACTIONS(1370), + [anon_sym_struct] = ACTIONS(1373), + [anon_sym_union] = ACTIONS(1376), + [anon_sym_if] = ACTIONS(1379), + [anon_sym_switch] = ACTIONS(1382), + [anon_sym_case] = ACTIONS(1385), + [anon_sym_default] = ACTIONS(1388), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_return] = ACTIONS(1400), + [anon_sym_break] = ACTIONS(1403), + [anon_sym_continue] = ACTIONS(1406), + [anon_sym_goto] = ACTIONS(1409), + [anon_sym_not] = ACTIONS(1307), + [anon_sym_compl] = ACTIONS(1307), + [anon_sym_DASH_DASH] = ACTIONS(1412), + [anon_sym_PLUS_PLUS] = ACTIONS(1412), + [anon_sym_sizeof] = ACTIONS(1415), + [anon_sym___alignof__] = ACTIONS(1418), + [anon_sym___alignof] = ACTIONS(1418), + [anon_sym__alignof] = ACTIONS(1418), + [anon_sym_alignof] = ACTIONS(1418), + [anon_sym__Alignof] = ACTIONS(1418), + [anon_sym_offsetof] = ACTIONS(1421), + [anon_sym__Generic] = ACTIONS(1424), + [anon_sym_asm] = ACTIONS(1427), + [anon_sym___asm__] = ACTIONS(1427), + [sym_number_literal] = ACTIONS(1430), + [anon_sym_L_SQUOTE] = ACTIONS(1433), + [anon_sym_u_SQUOTE] = ACTIONS(1433), + [anon_sym_U_SQUOTE] = ACTIONS(1433), + [anon_sym_u8_SQUOTE] = ACTIONS(1433), + [anon_sym_SQUOTE] = ACTIONS(1433), + [anon_sym_L_DQUOTE] = ACTIONS(1436), + [anon_sym_u_DQUOTE] = ACTIONS(1436), + [anon_sym_U_DQUOTE] = ACTIONS(1436), + [anon_sym_u8_DQUOTE] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(1436), + [sym_true] = ACTIONS(1439), + [sym_false] = ACTIONS(1439), + [anon_sym_NULL] = ACTIONS(1442), + [anon_sym_nullptr] = ACTIONS(1442), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1445), + [anon_sym_decltype] = ACTIONS(1448), + [anon_sym_virtual] = ACTIONS(1451), + [anon_sym_alignas] = ACTIONS(1454), + [anon_sym_explicit] = ACTIONS(1457), + [anon_sym_typename] = ACTIONS(1460), + [anon_sym_template] = ACTIONS(1463), + [anon_sym_operator] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1469), + [anon_sym_delete] = ACTIONS(1472), + [anon_sym_throw] = ACTIONS(1475), + [anon_sym_namespace] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1481), + [anon_sym_static_assert] = ACTIONS(1484), + [anon_sym_concept] = ACTIONS(1487), + [anon_sym_co_return] = ACTIONS(1490), + [anon_sym_co_yield] = ACTIONS(1493), + [anon_sym_R_DQUOTE] = ACTIONS(1496), + [anon_sym_LR_DQUOTE] = ACTIONS(1496), + [anon_sym_uR_DQUOTE] = ACTIONS(1496), + [anon_sym_UR_DQUOTE] = ACTIONS(1496), + [anon_sym_u8R_DQUOTE] = ACTIONS(1496), + [anon_sym_co_await] = ACTIONS(1499), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_requires] = ACTIONS(1505), + [sym_this] = ACTIONS(1439), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1508), + [sym_semgrep_named_ellipsis] = ACTIONS(1511), }, - [119] = { - [sym_preproc_include] = STATE(118), - [sym_preproc_def] = STATE(118), - [sym_preproc_function_def] = STATE(118), - [sym_preproc_call] = STATE(118), - [sym_preproc_if] = STATE(118), - [sym_preproc_ifdef] = STATE(118), - [sym_function_definition] = STATE(118), - [sym_declaration] = STATE(118), - [sym_type_definition] = STATE(118), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6398), - [sym_linkage_specification] = STATE(118), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(962), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2086), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7760), - [sym_array_declarator] = STATE(7634), - [sym_compound_statement] = STATE(118), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4374), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(118), - [sym_labeled_statement] = STATE(118), - [sym_top_level_expression_statement] = STATE(118), - [sym_if_statement] = STATE(118), - [sym_switch_statement] = STATE(118), - [sym_case_statement] = STATE(118), - [sym_while_statement] = STATE(118), - [sym_do_statement] = STATE(118), - [sym_for_statement] = STATE(118), - [sym_return_statement] = STATE(118), - [sym_break_statement] = STATE(118), - [sym_continue_statement] = STATE(118), - [sym_goto_statement] = STATE(118), - [sym_expression] = STATE(6126), - [sym_expression_not_binary] = STATE(6252), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_empty_declaration] = STATE(118), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(118), - [sym_template_instantiation] = STATE(118), - [sym_operator_cast] = STATE(8070), + [117] = { + [sym_preproc_include] = STATE(116), + [sym_preproc_def] = STATE(116), + [sym_preproc_function_def] = STATE(116), + [sym_preproc_call] = STATE(116), + [sym_preproc_if] = STATE(116), + [sym_preproc_ifdef] = STATE(116), + [sym_function_definition] = STATE(116), + [sym_declaration] = STATE(116), + [sym_type_definition] = STATE(116), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5909), + [sym_linkage_specification] = STATE(116), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(919), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2182), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7388), + [sym_array_declarator] = STATE(7305), + [sym_compound_statement] = STATE(116), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4095), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(116), + [sym_labeled_statement] = STATE(116), + [sym_top_level_expression_statement] = STATE(116), + [sym_if_statement] = STATE(116), + [sym_switch_statement] = STATE(116), + [sym_case_statement] = STATE(116), + [sym_while_statement] = STATE(116), + [sym_do_statement] = STATE(116), + [sym_for_statement] = STATE(116), + [sym_return_statement] = STATE(116), + [sym_break_statement] = STATE(116), + [sym_continue_statement] = STATE(116), + [sym_goto_statement] = STATE(116), + [sym_expression] = STATE(5607), + [sym_expression_not_binary] = STATE(5724), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_empty_declaration] = STATE(116), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(116), + [sym_template_instantiation] = STATE(116), + [sym_operator_cast] = STATE(7739), [sym_constructor_specifiers] = STATE(1948), - [sym_operator_cast_definition] = STATE(118), - [sym_operator_cast_declaration] = STATE(118), - [sym_constructor_or_destructor_definition] = STATE(118), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5796), - [sym_namespace_definition] = STATE(118), - [sym_namespace_alias_definition] = STATE(118), - [sym_using_declaration] = STATE(118), - [sym_alias_declaration] = STATE(118), - [sym_static_assert_declaration] = STATE(118), - [sym_concept_definition] = STATE(118), - [sym_for_range_loop] = STATE(118), - [sym_co_return_statement] = STATE(118), - [sym_co_yield_statement] = STATE(118), - [sym_throw_statement] = STATE(118), - [sym_try_statement] = STATE(118), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6876), - [sym_qualified_identifier] = STATE(3953), - [sym_qualified_type_identifier] = STATE(4845), - [sym_qualified_operator_cast_identifier] = STATE(8070), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(185), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_translation_unit_repeat1] = STATE(118), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), + [sym_operator_cast_definition] = STATE(116), + [sym_operator_cast_declaration] = STATE(116), + [sym_constructor_or_destructor_definition] = STATE(116), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(5224), + [sym_namespace_definition] = STATE(116), + [sym_namespace_alias_definition] = STATE(116), + [sym_using_declaration] = STATE(116), + [sym_alias_declaration] = STATE(116), + [sym_static_assert_declaration] = STATE(116), + [sym_concept_definition] = STATE(116), + [sym_for_range_loop] = STATE(116), + [sym_co_return_statement] = STATE(116), + [sym_co_yield_statement] = STATE(116), + [sym_throw_statement] = STATE(116), + [sym_try_statement] = STATE(116), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6389), + [sym_qualified_identifier] = STATE(3683), + [sym_qualified_type_identifier] = STATE(4585), + [sym_qualified_operator_cast_identifier] = STATE(7739), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(182), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_translation_unit_repeat1] = STATE(116), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(199), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), [aux_sym_operator_cast_definition_repeat1] = STATE(1948), - [ts_builtin_sym_end] = ACTIONS(1518), + [ts_builtin_sym_end] = ACTIONS(1514), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), [aux_sym_preproc_def_token1] = ACTIONS(11), @@ -77796,22 +67693,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [120] = { + [118] = { [sym_declaration] = STATE(122), [sym_type_definition] = STATE(122), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6395), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(1011), - [sym_ms_declspec_modifier] = STATE(4269), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5914), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(991), + [sym_ms_declspec_modifier] = STATE(4038), [sym_compound_statement] = STATE(122), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(122), [sym_labeled_statement] = STATE(122), [sym_expression_statement] = STATE(122), @@ -77826,108 +67723,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(122), [sym_seh_try_statement] = STATE(122), [sym_seh_leave_statement] = STATE(122), - [sym_expression] = STATE(5862), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9665), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5251), + [sym_expression] = STATE(5188), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9691), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4249), [sym_for_range_loop] = STATE(122), [sym_co_return_statement] = STATE(122), [sym_co_yield_statement] = STATE(122), [sym_throw_statement] = STATE(122), [sym_try_statement] = STATE(122), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7078), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6657), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(233), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), [aux_sym_case_statement_repeat1] = STATE(122), - [sym_identifier] = ACTIONS(1520), - [aux_sym_preproc_include_token1] = ACTIONS(1522), - [aux_sym_preproc_def_token1] = ACTIONS(1522), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [aux_sym_preproc_if_token1] = ACTIONS(1522), - [aux_sym_preproc_if_token2] = ACTIONS(1522), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1522), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1522), - [aux_sym_preproc_else_token1] = ACTIONS(1522), - [aux_sym_preproc_elif_token1] = ACTIONS(1522), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1522), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1522), - [sym_preproc_directive] = ACTIONS(1522), - [anon_sym_LPAREN2] = ACTIONS(1526), + [sym_identifier] = ACTIONS(1516), + [aux_sym_preproc_include_token1] = ACTIONS(1518), + [aux_sym_preproc_def_token1] = ACTIONS(1518), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [aux_sym_preproc_if_token1] = ACTIONS(1518), + [aux_sym_preproc_if_token2] = ACTIONS(1518), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1518), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1518), + [aux_sym_preproc_else_token1] = ACTIONS(1518), + [aux_sym_preproc_elif_token1] = ACTIONS(1518), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1518), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1518), + [sym_preproc_directive] = ACTIONS(1518), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP_AMP] = ACTIONS(1530), - [anon_sym_AMP] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP_AMP] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1528), [anon_sym_SEMI] = ACTIONS(301), [anon_sym___extension__] = ACTIONS(303), [anon_sym_typedef] = ACTIONS(305), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(1522), - [anon_sym___cdecl] = ACTIONS(1522), - [anon_sym___clrcall] = ACTIONS(1522), - [anon_sym___stdcall] = ACTIONS(1522), - [anon_sym___fastcall] = ACTIONS(1522), - [anon_sym___thiscall] = ACTIONS(1522), - [anon_sym___vectorcall] = ACTIONS(1522), + [anon_sym___based] = ACTIONS(1518), + [anon_sym___cdecl] = ACTIONS(1518), + [anon_sym___clrcall] = ACTIONS(1518), + [anon_sym___stdcall] = ACTIONS(1518), + [anon_sym___fastcall] = ACTIONS(1518), + [anon_sym___thiscall] = ACTIONS(1518), + [anon_sym___vectorcall] = ACTIONS(1518), [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -77953,10 +67850,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(73), [anon_sym_union] = ACTIONS(75), [anon_sym_if] = ACTIONS(313), - [anon_sym_else] = ACTIONS(1522), + [anon_sym_else] = ACTIONS(1518), [anon_sym_switch] = ACTIONS(315), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1522), + [anon_sym_case] = ACTIONS(1518), + [anon_sym_default] = ACTIONS(1518), [anon_sym_while] = ACTIONS(321), [anon_sym_do] = ACTIONS(323), [anon_sym_for] = ACTIONS(325), @@ -78000,17 +67897,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1522), + [anon_sym_explicit] = ACTIONS(1518), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_operator] = ACTIONS(1522), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_operator] = ACTIONS(1518), [anon_sym_try] = ACTIONS(341), [anon_sym_delete] = ACTIONS(139), [anon_sym_throw] = ACTIONS(343), - [anon_sym_namespace] = ACTIONS(1522), - [anon_sym_using] = ACTIONS(1522), - [anon_sym_static_assert] = ACTIONS(1522), - [anon_sym_concept] = ACTIONS(1522), + [anon_sym_namespace] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1518), + [anon_sym_static_assert] = ACTIONS(1518), + [anon_sym_concept] = ACTIONS(1518), [anon_sym_co_return] = ACTIONS(353), [anon_sym_co_yield] = ACTIONS(355), [anon_sym_R_DQUOTE] = ACTIONS(155), @@ -78025,100 +67922,329 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [121] = { - [sym_declaration] = STATE(123), - [sym_type_definition] = STATE(123), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6395), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(1011), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_compound_statement] = STATE(123), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(123), - [sym_labeled_statement] = STATE(123), - [sym_expression_statement] = STATE(123), - [sym_if_statement] = STATE(123), - [sym_switch_statement] = STATE(123), - [sym_while_statement] = STATE(123), - [sym_do_statement] = STATE(123), - [sym_for_statement] = STATE(123), - [sym_return_statement] = STATE(123), - [sym_break_statement] = STATE(123), - [sym_continue_statement] = STATE(123), - [sym_goto_statement] = STATE(123), - [sym_seh_try_statement] = STATE(123), - [sym_seh_leave_statement] = STATE(123), - [sym_expression] = STATE(5862), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9665), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(123), - [sym_co_return_statement] = STATE(123), - [sym_co_yield_statement] = STATE(123), - [sym_throw_statement] = STATE(123), - [sym_try_statement] = STATE(123), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7078), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_case_statement_repeat1] = STATE(123), - [sym_identifier] = ACTIONS(1520), + [119] = { + [sym_declaration] = STATE(120), + [sym_type_definition] = STATE(120), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5914), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(991), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_compound_statement] = STATE(120), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(120), + [sym_labeled_statement] = STATE(120), + [sym_expression_statement] = STATE(120), + [sym_if_statement] = STATE(120), + [sym_switch_statement] = STATE(120), + [sym_while_statement] = STATE(120), + [sym_do_statement] = STATE(120), + [sym_for_statement] = STATE(120), + [sym_return_statement] = STATE(120), + [sym_break_statement] = STATE(120), + [sym_continue_statement] = STATE(120), + [sym_goto_statement] = STATE(120), + [sym_seh_try_statement] = STATE(120), + [sym_seh_leave_statement] = STATE(120), + [sym_expression] = STATE(5188), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9691), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(120), + [sym_co_return_statement] = STATE(120), + [sym_co_yield_statement] = STATE(120), + [sym_throw_statement] = STATE(120), + [sym_try_statement] = STATE(120), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6657), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(233), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_case_statement_repeat1] = STATE(120), + [sym_identifier] = ACTIONS(1516), + [aux_sym_preproc_include_token1] = ACTIONS(1536), + [aux_sym_preproc_def_token1] = ACTIONS(1536), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [aux_sym_preproc_if_token1] = ACTIONS(1536), + [aux_sym_preproc_if_token2] = ACTIONS(1536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1536), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1536), + [aux_sym_preproc_else_token1] = ACTIONS(1536), + [aux_sym_preproc_elif_token1] = ACTIONS(1536), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1536), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1536), + [sym_preproc_directive] = ACTIONS(1536), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP_AMP] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(301), + [anon_sym___extension__] = ACTIONS(303), + [anon_sym_typedef] = ACTIONS(305), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(1536), + [anon_sym___cdecl] = ACTIONS(1536), + [anon_sym___clrcall] = ACTIONS(1536), + [anon_sym___stdcall] = ACTIONS(1536), + [anon_sym___fastcall] = ACTIONS(1536), + [anon_sym___thiscall] = ACTIONS(1536), + [anon_sym___vectorcall] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1532), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(67), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_union] = ACTIONS(75), + [anon_sym_if] = ACTIONS(313), + [anon_sym_else] = ACTIONS(1536), + [anon_sym_switch] = ACTIONS(315), + [anon_sym_case] = ACTIONS(1536), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_while] = ACTIONS(321), + [anon_sym_do] = ACTIONS(323), + [anon_sym_for] = ACTIONS(325), + [anon_sym_return] = ACTIONS(327), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(331), + [anon_sym_goto] = ACTIONS(333), + [anon_sym___try] = ACTIONS(335), + [anon_sym___leave] = ACTIONS(337), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(1536), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_operator] = ACTIONS(1536), + [anon_sym_try] = ACTIONS(341), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_throw] = ACTIONS(343), + [anon_sym_namespace] = ACTIONS(1536), + [anon_sym_using] = ACTIONS(1536), + [anon_sym_static_assert] = ACTIONS(1536), + [anon_sym_concept] = ACTIONS(1536), + [anon_sym_co_return] = ACTIONS(353), + [anon_sym_co_yield] = ACTIONS(355), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), + }, + [120] = { + [sym_declaration] = STATE(122), + [sym_type_definition] = STATE(122), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5914), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(991), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_compound_statement] = STATE(122), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(122), + [sym_labeled_statement] = STATE(122), + [sym_expression_statement] = STATE(122), + [sym_if_statement] = STATE(122), + [sym_switch_statement] = STATE(122), + [sym_while_statement] = STATE(122), + [sym_do_statement] = STATE(122), + [sym_for_statement] = STATE(122), + [sym_return_statement] = STATE(122), + [sym_break_statement] = STATE(122), + [sym_continue_statement] = STATE(122), + [sym_goto_statement] = STATE(122), + [sym_seh_try_statement] = STATE(122), + [sym_seh_leave_statement] = STATE(122), + [sym_expression] = STATE(5188), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9691), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(122), + [sym_co_return_statement] = STATE(122), + [sym_co_yield_statement] = STATE(122), + [sym_throw_statement] = STATE(122), + [sym_try_statement] = STATE(122), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6657), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(233), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_case_statement_repeat1] = STATE(122), + [sym_identifier] = ACTIONS(1516), [aux_sym_preproc_include_token1] = ACTIONS(1540), [aux_sym_preproc_def_token1] = ACTIONS(1540), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), [aux_sym_preproc_if_token1] = ACTIONS(1540), [aux_sym_preproc_if_token2] = ACTIONS(1540), [aux_sym_preproc_ifdef_token1] = ACTIONS(1540), @@ -78128,21 +68254,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elifdef_token1] = ACTIONS(1540), [aux_sym_preproc_elifdef_token2] = ACTIONS(1540), [sym_preproc_directive] = ACTIONS(1540), - [anon_sym_LPAREN2] = ACTIONS(1526), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), [anon_sym_AMP_AMP] = ACTIONS(1542), - [anon_sym_AMP] = ACTIONS(1532), + [anon_sym_AMP] = ACTIONS(1528), [anon_sym_SEMI] = ACTIONS(301), [anon_sym___extension__] = ACTIONS(303), [anon_sym_typedef] = ACTIONS(305), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(1540), [anon_sym___cdecl] = ACTIONS(1540), @@ -78156,7 +68282,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -78231,7 +68357,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(1540), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_operator] = ACTIONS(1540), [anon_sym_try] = ACTIONS(341), [anon_sym_delete] = ACTIONS(139), @@ -78254,100 +68380,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [122] = { - [sym_declaration] = STATE(124), - [sym_type_definition] = STATE(124), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6395), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(1011), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_compound_statement] = STATE(124), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(124), - [sym_labeled_statement] = STATE(124), - [sym_expression_statement] = STATE(124), - [sym_if_statement] = STATE(124), - [sym_switch_statement] = STATE(124), - [sym_while_statement] = STATE(124), - [sym_do_statement] = STATE(124), - [sym_for_statement] = STATE(124), - [sym_return_statement] = STATE(124), - [sym_break_statement] = STATE(124), - [sym_continue_statement] = STATE(124), - [sym_goto_statement] = STATE(124), - [sym_seh_try_statement] = STATE(124), - [sym_seh_leave_statement] = STATE(124), - [sym_expression] = STATE(5862), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9665), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(124), - [sym_co_return_statement] = STATE(124), - [sym_co_yield_statement] = STATE(124), - [sym_throw_statement] = STATE(124), - [sym_try_statement] = STATE(124), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7078), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_case_statement_repeat1] = STATE(124), - [sym_identifier] = ACTIONS(1520), + [121] = { + [sym_declaration] = STATE(118), + [sym_type_definition] = STATE(118), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5914), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(991), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_compound_statement] = STATE(118), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(118), + [sym_labeled_statement] = STATE(118), + [sym_expression_statement] = STATE(118), + [sym_if_statement] = STATE(118), + [sym_switch_statement] = STATE(118), + [sym_while_statement] = STATE(118), + [sym_do_statement] = STATE(118), + [sym_for_statement] = STATE(118), + [sym_return_statement] = STATE(118), + [sym_break_statement] = STATE(118), + [sym_continue_statement] = STATE(118), + [sym_goto_statement] = STATE(118), + [sym_seh_try_statement] = STATE(118), + [sym_seh_leave_statement] = STATE(118), + [sym_expression] = STATE(5188), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9691), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(118), + [sym_co_return_statement] = STATE(118), + [sym_co_yield_statement] = STATE(118), + [sym_throw_statement] = STATE(118), + [sym_try_statement] = STATE(118), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6657), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(233), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_case_statement_repeat1] = STATE(118), + [sym_identifier] = ACTIONS(1516), [aux_sym_preproc_include_token1] = ACTIONS(1544), [aux_sym_preproc_def_token1] = ACTIONS(1544), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), [aux_sym_preproc_if_token1] = ACTIONS(1544), [aux_sym_preproc_if_token2] = ACTIONS(1544), [aux_sym_preproc_ifdef_token1] = ACTIONS(1544), @@ -78357,21 +68483,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elifdef_token1] = ACTIONS(1544), [aux_sym_preproc_elifdef_token2] = ACTIONS(1544), [sym_preproc_directive] = ACTIONS(1544), - [anon_sym_LPAREN2] = ACTIONS(1526), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), [anon_sym_AMP_AMP] = ACTIONS(1546), - [anon_sym_AMP] = ACTIONS(1532), + [anon_sym_AMP] = ACTIONS(1528), [anon_sym_SEMI] = ACTIONS(301), [anon_sym___extension__] = ACTIONS(303), [anon_sym_typedef] = ACTIONS(305), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(1544), [anon_sym___cdecl] = ACTIONS(1544), @@ -78385,7 +68511,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -78460,7 +68586,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(1544), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_operator] = ACTIONS(1544), [anon_sym_try] = ACTIONS(341), [anon_sym_delete] = ACTIONS(139), @@ -78483,138 +68609,365 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, + [122] = { + [sym_declaration] = STATE(122), + [sym_type_definition] = STATE(122), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5914), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(991), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_compound_statement] = STATE(122), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(122), + [sym_labeled_statement] = STATE(122), + [sym_expression_statement] = STATE(122), + [sym_if_statement] = STATE(122), + [sym_switch_statement] = STATE(122), + [sym_while_statement] = STATE(122), + [sym_do_statement] = STATE(122), + [sym_for_statement] = STATE(122), + [sym_return_statement] = STATE(122), + [sym_break_statement] = STATE(122), + [sym_continue_statement] = STATE(122), + [sym_goto_statement] = STATE(122), + [sym_seh_try_statement] = STATE(122), + [sym_seh_leave_statement] = STATE(122), + [sym_expression] = STATE(5188), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9691), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(122), + [sym_co_return_statement] = STATE(122), + [sym_co_yield_statement] = STATE(122), + [sym_throw_statement] = STATE(122), + [sym_try_statement] = STATE(122), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6657), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(233), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_case_statement_repeat1] = STATE(122), + [sym_identifier] = ACTIONS(1548), + [aux_sym_preproc_include_token1] = ACTIONS(1551), + [aux_sym_preproc_def_token1] = ACTIONS(1551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1553), + [aux_sym_preproc_if_token1] = ACTIONS(1551), + [aux_sym_preproc_if_token2] = ACTIONS(1551), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1551), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1551), + [aux_sym_preproc_else_token1] = ACTIONS(1551), + [aux_sym_preproc_elif_token1] = ACTIONS(1551), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1551), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1551), + [sym_preproc_directive] = ACTIONS(1551), + [anon_sym_LPAREN2] = ACTIONS(1556), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1565), + [anon_sym_AMP_AMP] = ACTIONS(1568), + [anon_sym_AMP] = ACTIONS(1570), + [anon_sym_SEMI] = ACTIONS(1573), + [anon_sym___extension__] = ACTIONS(1576), + [anon_sym_typedef] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1582), + [anon_sym___attribute__] = ACTIONS(1585), + [anon_sym_COLON_COLON] = ACTIONS(1588), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1591), + [anon_sym___declspec] = ACTIONS(1594), + [anon_sym___based] = ACTIONS(1551), + [anon_sym___cdecl] = ACTIONS(1551), + [anon_sym___clrcall] = ACTIONS(1551), + [anon_sym___stdcall] = ACTIONS(1551), + [anon_sym___fastcall] = ACTIONS(1551), + [anon_sym___thiscall] = ACTIONS(1551), + [anon_sym___vectorcall] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_signed] = ACTIONS(1600), + [anon_sym_unsigned] = ACTIONS(1600), + [anon_sym_long] = ACTIONS(1600), + [anon_sym_short] = ACTIONS(1600), + [anon_sym_LBRACK] = ACTIONS(1603), + [anon_sym_static] = ACTIONS(1582), + [anon_sym_register] = ACTIONS(1582), + [anon_sym_inline] = ACTIONS(1582), + [anon_sym___inline] = ACTIONS(1582), + [anon_sym___inline__] = ACTIONS(1582), + [anon_sym___forceinline] = ACTIONS(1582), + [anon_sym_thread_local] = ACTIONS(1582), + [anon_sym___thread] = ACTIONS(1582), + [anon_sym_const] = ACTIONS(1606), + [anon_sym_constexpr] = ACTIONS(1606), + [anon_sym_volatile] = ACTIONS(1606), + [anon_sym_restrict] = ACTIONS(1606), + [anon_sym___restrict__] = ACTIONS(1606), + [anon_sym__Atomic] = ACTIONS(1606), + [anon_sym__Noreturn] = ACTIONS(1606), + [anon_sym_noreturn] = ACTIONS(1606), + [anon_sym_mutable] = ACTIONS(1606), + [anon_sym_constinit] = ACTIONS(1606), + [anon_sym_consteval] = ACTIONS(1606), + [sym_primitive_type] = ACTIONS(1609), + [anon_sym_enum] = ACTIONS(1612), + [anon_sym_class] = ACTIONS(1615), + [anon_sym_struct] = ACTIONS(1618), + [anon_sym_union] = ACTIONS(1621), + [anon_sym_if] = ACTIONS(1624), + [anon_sym_else] = ACTIONS(1551), + [anon_sym_switch] = ACTIONS(1627), + [anon_sym_case] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1630), + [anon_sym_do] = ACTIONS(1633), + [anon_sym_for] = ACTIONS(1636), + [anon_sym_return] = ACTIONS(1639), + [anon_sym_break] = ACTIONS(1642), + [anon_sym_continue] = ACTIONS(1645), + [anon_sym_goto] = ACTIONS(1648), + [anon_sym___try] = ACTIONS(1651), + [anon_sym___leave] = ACTIONS(1654), + [anon_sym_not] = ACTIONS(1562), + [anon_sym_compl] = ACTIONS(1562), + [anon_sym_DASH_DASH] = ACTIONS(1657), + [anon_sym_PLUS_PLUS] = ACTIONS(1657), + [anon_sym_sizeof] = ACTIONS(1660), + [anon_sym___alignof__] = ACTIONS(1663), + [anon_sym___alignof] = ACTIONS(1663), + [anon_sym__alignof] = ACTIONS(1663), + [anon_sym_alignof] = ACTIONS(1663), + [anon_sym__Alignof] = ACTIONS(1663), + [anon_sym_offsetof] = ACTIONS(1666), + [anon_sym__Generic] = ACTIONS(1669), + [anon_sym_asm] = ACTIONS(1672), + [anon_sym___asm__] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1675), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1681), + [anon_sym_u_DQUOTE] = ACTIONS(1681), + [anon_sym_U_DQUOTE] = ACTIONS(1681), + [anon_sym_u8_DQUOTE] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [sym_true] = ACTIONS(1684), + [sym_false] = ACTIONS(1684), + [anon_sym_NULL] = ACTIONS(1687), + [anon_sym_nullptr] = ACTIONS(1687), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1690), + [anon_sym_decltype] = ACTIONS(1693), + [anon_sym_virtual] = ACTIONS(1696), + [anon_sym_alignas] = ACTIONS(1699), + [anon_sym_explicit] = ACTIONS(1551), + [anon_sym_typename] = ACTIONS(1702), + [anon_sym_template] = ACTIONS(1705), + [anon_sym_operator] = ACTIONS(1551), + [anon_sym_try] = ACTIONS(1708), + [anon_sym_delete] = ACTIONS(1711), + [anon_sym_throw] = ACTIONS(1714), + [anon_sym_namespace] = ACTIONS(1551), + [anon_sym_using] = ACTIONS(1551), + [anon_sym_static_assert] = ACTIONS(1551), + [anon_sym_concept] = ACTIONS(1551), + [anon_sym_co_return] = ACTIONS(1717), + [anon_sym_co_yield] = ACTIONS(1720), + [anon_sym_R_DQUOTE] = ACTIONS(1723), + [anon_sym_LR_DQUOTE] = ACTIONS(1723), + [anon_sym_uR_DQUOTE] = ACTIONS(1723), + [anon_sym_UR_DQUOTE] = ACTIONS(1723), + [anon_sym_u8R_DQUOTE] = ACTIONS(1723), + [anon_sym_co_await] = ACTIONS(1726), + [anon_sym_new] = ACTIONS(1729), + [anon_sym_requires] = ACTIONS(1732), + [sym_this] = ACTIONS(1684), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1735), + [sym_semgrep_named_ellipsis] = ACTIONS(1738), + }, [123] = { - [sym_declaration] = STATE(124), - [sym_type_definition] = STATE(124), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6395), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(1011), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_compound_statement] = STATE(124), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(124), - [sym_labeled_statement] = STATE(124), - [sym_expression_statement] = STATE(124), - [sym_if_statement] = STATE(124), - [sym_switch_statement] = STATE(124), - [sym_while_statement] = STATE(124), - [sym_do_statement] = STATE(124), - [sym_for_statement] = STATE(124), - [sym_return_statement] = STATE(124), - [sym_break_statement] = STATE(124), - [sym_continue_statement] = STATE(124), - [sym_goto_statement] = STATE(124), - [sym_seh_try_statement] = STATE(124), - [sym_seh_leave_statement] = STATE(124), - [sym_expression] = STATE(5862), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9665), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(124), - [sym_co_return_statement] = STATE(124), - [sym_co_yield_statement] = STATE(124), - [sym_throw_statement] = STATE(124), - [sym_try_statement] = STATE(124), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7078), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_case_statement_repeat1] = STATE(124), - [sym_identifier] = ACTIONS(1520), - [aux_sym_preproc_include_token1] = ACTIONS(1548), - [aux_sym_preproc_def_token1] = ACTIONS(1548), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [aux_sym_preproc_if_token1] = ACTIONS(1548), - [aux_sym_preproc_if_token2] = ACTIONS(1548), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1548), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1548), - [aux_sym_preproc_else_token1] = ACTIONS(1548), - [aux_sym_preproc_elif_token1] = ACTIONS(1548), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1548), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1548), - [sym_preproc_directive] = ACTIONS(1548), - [anon_sym_LPAREN2] = ACTIONS(1526), + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5884), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(991), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_compound_statement] = STATE(127), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(127), + [sym_labeled_statement] = STATE(127), + [sym_expression_statement] = STATE(127), + [sym_if_statement] = STATE(127), + [sym_switch_statement] = STATE(127), + [sym_while_statement] = STATE(127), + [sym_do_statement] = STATE(127), + [sym_for_statement] = STATE(127), + [sym_return_statement] = STATE(127), + [sym_break_statement] = STATE(127), + [sym_continue_statement] = STATE(127), + [sym_goto_statement] = STATE(127), + [sym_seh_try_statement] = STATE(127), + [sym_seh_leave_statement] = STATE(127), + [sym_expression] = STATE(5277), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9725), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(127), + [sym_co_return_statement] = STATE(127), + [sym_co_yield_statement] = STATE(127), + [sym_throw_statement] = STATE(127), + [sym_try_statement] = STATE(127), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6657), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(243), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_case_statement_repeat1] = STATE(127), + [sym_identifier] = ACTIONS(1741), + [aux_sym_preproc_include_token1] = ACTIONS(1536), + [aux_sym_preproc_def_token1] = ACTIONS(1536), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [aux_sym_preproc_if_token1] = ACTIONS(1536), + [aux_sym_preproc_if_token2] = ACTIONS(1536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1536), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1536), + [aux_sym_preproc_else_token1] = ACTIONS(1536), + [aux_sym_preproc_elif_token1] = ACTIONS(1536), + [sym_preproc_directive] = ACTIONS(1536), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP_AMP] = ACTIONS(1550), - [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_SEMI] = ACTIONS(301), - [anon_sym___extension__] = ACTIONS(303), - [anon_sym_typedef] = ACTIONS(305), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP_AMP] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(413), + [anon_sym___extension__] = ACTIONS(415), + [anon_sym_typedef] = ACTIONS(417), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(1548), - [anon_sym___cdecl] = ACTIONS(1548), - [anon_sym___clrcall] = ACTIONS(1548), - [anon_sym___stdcall] = ACTIONS(1548), - [anon_sym___fastcall] = ACTIONS(1548), - [anon_sym___thiscall] = ACTIONS(1548), - [anon_sym___vectorcall] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym___based] = ACTIONS(1536), + [anon_sym___cdecl] = ACTIONS(1536), + [anon_sym___clrcall] = ACTIONS(1536), + [anon_sym___stdcall] = ACTIONS(1536), + [anon_sym___fastcall] = ACTIONS(1536), + [anon_sym___thiscall] = ACTIONS(1536), + [anon_sym___vectorcall] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(421), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -78639,20 +68992,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(71), [anon_sym_struct] = ACTIONS(73), [anon_sym_union] = ACTIONS(75), - [anon_sym_if] = ACTIONS(313), - [anon_sym_else] = ACTIONS(1548), - [anon_sym_switch] = ACTIONS(315), - [anon_sym_case] = ACTIONS(1548), - [anon_sym_default] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(321), - [anon_sym_do] = ACTIONS(323), - [anon_sym_for] = ACTIONS(325), - [anon_sym_return] = ACTIONS(327), - [anon_sym_break] = ACTIONS(329), - [anon_sym_continue] = ACTIONS(331), - [anon_sym_goto] = ACTIONS(333), - [anon_sym___try] = ACTIONS(335), - [anon_sym___leave] = ACTIONS(337), + [anon_sym_if] = ACTIONS(425), + [anon_sym_else] = ACTIONS(1536), + [anon_sym_switch] = ACTIONS(427), + [anon_sym_case] = ACTIONS(1536), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_while] = ACTIONS(433), + [anon_sym_do] = ACTIONS(435), + [anon_sym_for] = ACTIONS(437), + [anon_sym_return] = ACTIONS(439), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_goto] = ACTIONS(445), + [anon_sym___try] = ACTIONS(447), + [anon_sym___leave] = ACTIONS(449), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -78687,19 +69040,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1548), + [anon_sym_explicit] = ACTIONS(1536), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_operator] = ACTIONS(1548), - [anon_sym_try] = ACTIONS(341), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_operator] = ACTIONS(1536), + [anon_sym_try] = ACTIONS(453), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(343), - [anon_sym_namespace] = ACTIONS(1548), - [anon_sym_using] = ACTIONS(1548), - [anon_sym_static_assert] = ACTIONS(1548), - [anon_sym_concept] = ACTIONS(1548), - [anon_sym_co_return] = ACTIONS(353), - [anon_sym_co_yield] = ACTIONS(355), + [anon_sym_throw] = ACTIONS(455), + [anon_sym_namespace] = ACTIONS(1536), + [anon_sym_using] = ACTIONS(1536), + [anon_sym_static_assert] = ACTIONS(1536), + [anon_sym_concept] = ACTIONS(1536), + [anon_sym_co_return] = ACTIONS(465), + [anon_sym_co_yield] = ACTIONS(467), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -78713,364 +69066,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [124] = { - [sym_declaration] = STATE(124), - [sym_type_definition] = STATE(124), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6395), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(1011), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_compound_statement] = STATE(124), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(124), - [sym_labeled_statement] = STATE(124), - [sym_expression_statement] = STATE(124), - [sym_if_statement] = STATE(124), - [sym_switch_statement] = STATE(124), - [sym_while_statement] = STATE(124), - [sym_do_statement] = STATE(124), - [sym_for_statement] = STATE(124), - [sym_return_statement] = STATE(124), - [sym_break_statement] = STATE(124), - [sym_continue_statement] = STATE(124), - [sym_goto_statement] = STATE(124), - [sym_seh_try_statement] = STATE(124), - [sym_seh_leave_statement] = STATE(124), - [sym_expression] = STATE(5862), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9665), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(124), - [sym_co_return_statement] = STATE(124), - [sym_co_yield_statement] = STATE(124), - [sym_throw_statement] = STATE(124), - [sym_try_statement] = STATE(124), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7078), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_case_statement_repeat1] = STATE(124), - [sym_identifier] = ACTIONS(1552), - [aux_sym_preproc_include_token1] = ACTIONS(1555), - [aux_sym_preproc_def_token1] = ACTIONS(1555), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1557), - [aux_sym_preproc_if_token1] = ACTIONS(1555), - [aux_sym_preproc_if_token2] = ACTIONS(1555), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1555), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1555), - [aux_sym_preproc_else_token1] = ACTIONS(1555), - [aux_sym_preproc_elif_token1] = ACTIONS(1555), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1555), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1555), - [sym_preproc_directive] = ACTIONS(1555), - [anon_sym_LPAREN2] = ACTIONS(1560), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1566), - [anon_sym_PLUS] = ACTIONS(1566), - [anon_sym_STAR] = ACTIONS(1569), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1574), - [anon_sym_SEMI] = ACTIONS(1577), - [anon_sym___extension__] = ACTIONS(1580), - [anon_sym_typedef] = ACTIONS(1583), - [anon_sym_extern] = ACTIONS(1586), - [anon_sym___attribute__] = ACTIONS(1589), - [anon_sym_COLON_COLON] = ACTIONS(1592), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1595), - [anon_sym___declspec] = ACTIONS(1598), - [anon_sym___based] = ACTIONS(1555), - [anon_sym___cdecl] = ACTIONS(1555), - [anon_sym___clrcall] = ACTIONS(1555), - [anon_sym___stdcall] = ACTIONS(1555), - [anon_sym___fastcall] = ACTIONS(1555), - [anon_sym___thiscall] = ACTIONS(1555), - [anon_sym___vectorcall] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_signed] = ACTIONS(1604), - [anon_sym_unsigned] = ACTIONS(1604), - [anon_sym_long] = ACTIONS(1604), - [anon_sym_short] = ACTIONS(1604), - [anon_sym_LBRACK] = ACTIONS(1607), - [anon_sym_static] = ACTIONS(1586), - [anon_sym_register] = ACTIONS(1586), - [anon_sym_inline] = ACTIONS(1586), - [anon_sym___inline] = ACTIONS(1586), - [anon_sym___inline__] = ACTIONS(1586), - [anon_sym___forceinline] = ACTIONS(1586), - [anon_sym_thread_local] = ACTIONS(1586), - [anon_sym___thread] = ACTIONS(1586), - [anon_sym_const] = ACTIONS(1610), - [anon_sym_constexpr] = ACTIONS(1610), - [anon_sym_volatile] = ACTIONS(1610), - [anon_sym_restrict] = ACTIONS(1610), - [anon_sym___restrict__] = ACTIONS(1610), - [anon_sym__Atomic] = ACTIONS(1610), - [anon_sym__Noreturn] = ACTIONS(1610), - [anon_sym_noreturn] = ACTIONS(1610), - [anon_sym_mutable] = ACTIONS(1610), - [anon_sym_constinit] = ACTIONS(1610), - [anon_sym_consteval] = ACTIONS(1610), - [sym_primitive_type] = ACTIONS(1613), - [anon_sym_enum] = ACTIONS(1616), - [anon_sym_class] = ACTIONS(1619), - [anon_sym_struct] = ACTIONS(1622), - [anon_sym_union] = ACTIONS(1625), - [anon_sym_if] = ACTIONS(1628), - [anon_sym_else] = ACTIONS(1555), - [anon_sym_switch] = ACTIONS(1631), - [anon_sym_case] = ACTIONS(1555), - [anon_sym_default] = ACTIONS(1555), - [anon_sym_while] = ACTIONS(1634), - [anon_sym_do] = ACTIONS(1637), - [anon_sym_for] = ACTIONS(1640), - [anon_sym_return] = ACTIONS(1643), - [anon_sym_break] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(1649), - [anon_sym_goto] = ACTIONS(1652), - [anon_sym___try] = ACTIONS(1655), - [anon_sym___leave] = ACTIONS(1658), - [anon_sym_not] = ACTIONS(1566), - [anon_sym_compl] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1661), - [anon_sym_PLUS_PLUS] = ACTIONS(1661), - [anon_sym_sizeof] = ACTIONS(1664), - [anon_sym___alignof__] = ACTIONS(1667), - [anon_sym___alignof] = ACTIONS(1667), - [anon_sym__alignof] = ACTIONS(1667), - [anon_sym_alignof] = ACTIONS(1667), - [anon_sym__Alignof] = ACTIONS(1667), - [anon_sym_offsetof] = ACTIONS(1670), - [anon_sym__Generic] = ACTIONS(1673), - [anon_sym_asm] = ACTIONS(1676), - [anon_sym___asm__] = ACTIONS(1676), - [sym_number_literal] = ACTIONS(1679), - [anon_sym_L_SQUOTE] = ACTIONS(1682), - [anon_sym_u_SQUOTE] = ACTIONS(1682), - [anon_sym_U_SQUOTE] = ACTIONS(1682), - [anon_sym_u8_SQUOTE] = ACTIONS(1682), - [anon_sym_SQUOTE] = ACTIONS(1682), - [anon_sym_L_DQUOTE] = ACTIONS(1685), - [anon_sym_u_DQUOTE] = ACTIONS(1685), - [anon_sym_U_DQUOTE] = ACTIONS(1685), - [anon_sym_u8_DQUOTE] = ACTIONS(1685), - [anon_sym_DQUOTE] = ACTIONS(1685), - [sym_true] = ACTIONS(1688), - [sym_false] = ACTIONS(1688), - [anon_sym_NULL] = ACTIONS(1691), - [anon_sym_nullptr] = ACTIONS(1691), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1694), - [anon_sym_decltype] = ACTIONS(1697), - [anon_sym_virtual] = ACTIONS(1700), - [anon_sym_alignas] = ACTIONS(1703), - [anon_sym_explicit] = ACTIONS(1555), - [anon_sym_typename] = ACTIONS(1706), - [anon_sym_template] = ACTIONS(1709), - [anon_sym_operator] = ACTIONS(1555), - [anon_sym_try] = ACTIONS(1712), - [anon_sym_delete] = ACTIONS(1715), - [anon_sym_throw] = ACTIONS(1718), - [anon_sym_namespace] = ACTIONS(1555), - [anon_sym_using] = ACTIONS(1555), - [anon_sym_static_assert] = ACTIONS(1555), - [anon_sym_concept] = ACTIONS(1555), - [anon_sym_co_return] = ACTIONS(1721), - [anon_sym_co_yield] = ACTIONS(1724), - [anon_sym_R_DQUOTE] = ACTIONS(1727), - [anon_sym_LR_DQUOTE] = ACTIONS(1727), - [anon_sym_uR_DQUOTE] = ACTIONS(1727), - [anon_sym_UR_DQUOTE] = ACTIONS(1727), - [anon_sym_u8R_DQUOTE] = ACTIONS(1727), - [anon_sym_co_await] = ACTIONS(1730), - [anon_sym_new] = ACTIONS(1733), - [anon_sym_requires] = ACTIONS(1736), - [sym_this] = ACTIONS(1688), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1739), - [sym_semgrep_named_ellipsis] = ACTIONS(1742), - }, - [125] = { - [sym_declaration] = STATE(129), - [sym_type_definition] = STATE(129), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6396), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(1011), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_compound_statement] = STATE(129), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(129), - [sym_labeled_statement] = STATE(129), - [sym_expression_statement] = STATE(129), - [sym_if_statement] = STATE(129), - [sym_switch_statement] = STATE(129), - [sym_while_statement] = STATE(129), - [sym_do_statement] = STATE(129), - [sym_for_statement] = STATE(129), - [sym_return_statement] = STATE(129), - [sym_break_statement] = STATE(129), - [sym_continue_statement] = STATE(129), - [sym_goto_statement] = STATE(129), - [sym_seh_try_statement] = STATE(129), - [sym_seh_leave_statement] = STATE(129), - [sym_expression] = STATE(5788), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9707), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(129), - [sym_co_return_statement] = STATE(129), - [sym_co_yield_statement] = STATE(129), - [sym_throw_statement] = STATE(129), - [sym_try_statement] = STATE(129), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7078), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(229), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_case_statement_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(1745), - [aux_sym_preproc_include_token1] = ACTIONS(1548), - [aux_sym_preproc_def_token1] = ACTIONS(1548), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [aux_sym_preproc_if_token1] = ACTIONS(1548), - [aux_sym_preproc_if_token2] = ACTIONS(1548), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1548), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1548), - [aux_sym_preproc_else_token1] = ACTIONS(1548), - [aux_sym_preproc_elif_token1] = ACTIONS(1548), - [sym_preproc_directive] = ACTIONS(1548), - [anon_sym_LPAREN2] = ACTIONS(1526), + [sym_declaration] = STATE(126), + [sym_type_definition] = STATE(126), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5884), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(991), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_compound_statement] = STATE(126), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(126), + [sym_labeled_statement] = STATE(126), + [sym_expression_statement] = STATE(126), + [sym_if_statement] = STATE(126), + [sym_switch_statement] = STATE(126), + [sym_while_statement] = STATE(126), + [sym_do_statement] = STATE(126), + [sym_for_statement] = STATE(126), + [sym_return_statement] = STATE(126), + [sym_break_statement] = STATE(126), + [sym_continue_statement] = STATE(126), + [sym_goto_statement] = STATE(126), + [sym_seh_try_statement] = STATE(126), + [sym_seh_leave_statement] = STATE(126), + [sym_expression] = STATE(5277), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9725), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(126), + [sym_co_return_statement] = STATE(126), + [sym_co_yield_statement] = STATE(126), + [sym_throw_statement] = STATE(126), + [sym_try_statement] = STATE(126), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6657), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(243), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_case_statement_repeat1] = STATE(126), + [sym_identifier] = ACTIONS(1741), + [aux_sym_preproc_include_token1] = ACTIONS(1518), + [aux_sym_preproc_def_token1] = ACTIONS(1518), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [aux_sym_preproc_if_token1] = ACTIONS(1518), + [aux_sym_preproc_if_token2] = ACTIONS(1518), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1518), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1518), + [aux_sym_preproc_else_token1] = ACTIONS(1518), + [aux_sym_preproc_elif_token1] = ACTIONS(1518), + [sym_preproc_directive] = ACTIONS(1518), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP_AMP] = ACTIONS(1550), - [anon_sym_AMP] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP_AMP] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1528), [anon_sym_SEMI] = ACTIONS(413), [anon_sym___extension__] = ACTIONS(415), [anon_sym_typedef] = ACTIONS(417), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(1548), - [anon_sym___cdecl] = ACTIONS(1548), - [anon_sym___clrcall] = ACTIONS(1548), - [anon_sym___stdcall] = ACTIONS(1548), - [anon_sym___fastcall] = ACTIONS(1548), - [anon_sym___thiscall] = ACTIONS(1548), - [anon_sym___vectorcall] = ACTIONS(1548), + [anon_sym___based] = ACTIONS(1518), + [anon_sym___cdecl] = ACTIONS(1518), + [anon_sym___clrcall] = ACTIONS(1518), + [anon_sym___stdcall] = ACTIONS(1518), + [anon_sym___fastcall] = ACTIONS(1518), + [anon_sym___thiscall] = ACTIONS(1518), + [anon_sym___vectorcall] = ACTIONS(1518), [anon_sym_LBRACE] = ACTIONS(421), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -79096,10 +69220,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(73), [anon_sym_union] = ACTIONS(75), [anon_sym_if] = ACTIONS(425), - [anon_sym_else] = ACTIONS(1548), + [anon_sym_else] = ACTIONS(1518), [anon_sym_switch] = ACTIONS(427), - [anon_sym_case] = ACTIONS(1548), - [anon_sym_default] = ACTIONS(1548), + [anon_sym_case] = ACTIONS(1518), + [anon_sym_default] = ACTIONS(1518), [anon_sym_while] = ACTIONS(433), [anon_sym_do] = ACTIONS(435), [anon_sym_for] = ACTIONS(437), @@ -79143,17 +69267,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1548), + [anon_sym_explicit] = ACTIONS(1518), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_operator] = ACTIONS(1548), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_operator] = ACTIONS(1518), [anon_sym_try] = ACTIONS(453), [anon_sym_delete] = ACTIONS(139), [anon_sym_throw] = ACTIONS(455), - [anon_sym_namespace] = ACTIONS(1548), - [anon_sym_using] = ACTIONS(1548), - [anon_sym_static_assert] = ACTIONS(1548), - [anon_sym_concept] = ACTIONS(1548), + [anon_sym_namespace] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1518), + [anon_sym_static_assert] = ACTIONS(1518), + [anon_sym_concept] = ACTIONS(1518), [anon_sym_co_return] = ACTIONS(465), [anon_sym_co_yield] = ACTIONS(467), [anon_sym_R_DQUOTE] = ACTIONS(155), @@ -79168,136 +69292,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [126] = { - [sym_declaration] = STATE(128), - [sym_type_definition] = STATE(128), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6396), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(1011), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_compound_statement] = STATE(128), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(128), - [sym_labeled_statement] = STATE(128), - [sym_expression_statement] = STATE(128), - [sym_if_statement] = STATE(128), - [sym_switch_statement] = STATE(128), - [sym_while_statement] = STATE(128), - [sym_do_statement] = STATE(128), - [sym_for_statement] = STATE(128), - [sym_return_statement] = STATE(128), - [sym_break_statement] = STATE(128), - [sym_continue_statement] = STATE(128), - [sym_goto_statement] = STATE(128), - [sym_seh_try_statement] = STATE(128), - [sym_seh_leave_statement] = STATE(128), - [sym_expression] = STATE(5788), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9707), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(128), - [sym_co_return_statement] = STATE(128), - [sym_co_yield_statement] = STATE(128), - [sym_throw_statement] = STATE(128), - [sym_try_statement] = STATE(128), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7078), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(229), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_case_statement_repeat1] = STATE(128), - [sym_identifier] = ACTIONS(1745), - [aux_sym_preproc_include_token1] = ACTIONS(1522), - [aux_sym_preproc_def_token1] = ACTIONS(1522), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [aux_sym_preproc_if_token1] = ACTIONS(1522), - [aux_sym_preproc_if_token2] = ACTIONS(1522), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1522), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1522), - [aux_sym_preproc_else_token1] = ACTIONS(1522), - [aux_sym_preproc_elif_token1] = ACTIONS(1522), - [sym_preproc_directive] = ACTIONS(1522), - [anon_sym_LPAREN2] = ACTIONS(1526), + [125] = { + [sym_declaration] = STATE(124), + [sym_type_definition] = STATE(124), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5884), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(991), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_compound_statement] = STATE(124), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(124), + [sym_labeled_statement] = STATE(124), + [sym_expression_statement] = STATE(124), + [sym_if_statement] = STATE(124), + [sym_switch_statement] = STATE(124), + [sym_while_statement] = STATE(124), + [sym_do_statement] = STATE(124), + [sym_for_statement] = STATE(124), + [sym_return_statement] = STATE(124), + [sym_break_statement] = STATE(124), + [sym_continue_statement] = STATE(124), + [sym_goto_statement] = STATE(124), + [sym_seh_try_statement] = STATE(124), + [sym_seh_leave_statement] = STATE(124), + [sym_expression] = STATE(5277), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9725), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(124), + [sym_co_return_statement] = STATE(124), + [sym_co_yield_statement] = STATE(124), + [sym_throw_statement] = STATE(124), + [sym_try_statement] = STATE(124), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6657), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(243), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_case_statement_repeat1] = STATE(124), + [sym_identifier] = ACTIONS(1741), + [aux_sym_preproc_include_token1] = ACTIONS(1544), + [aux_sym_preproc_def_token1] = ACTIONS(1544), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [aux_sym_preproc_if_token1] = ACTIONS(1544), + [aux_sym_preproc_if_token2] = ACTIONS(1544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1544), + [aux_sym_preproc_else_token1] = ACTIONS(1544), + [aux_sym_preproc_elif_token1] = ACTIONS(1544), + [sym_preproc_directive] = ACTIONS(1544), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP_AMP] = ACTIONS(1530), - [anon_sym_AMP] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP_AMP] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1528), [anon_sym_SEMI] = ACTIONS(413), [anon_sym___extension__] = ACTIONS(415), [anon_sym_typedef] = ACTIONS(417), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(1522), - [anon_sym___cdecl] = ACTIONS(1522), - [anon_sym___clrcall] = ACTIONS(1522), - [anon_sym___stdcall] = ACTIONS(1522), - [anon_sym___fastcall] = ACTIONS(1522), - [anon_sym___thiscall] = ACTIONS(1522), - [anon_sym___vectorcall] = ACTIONS(1522), + [anon_sym___based] = ACTIONS(1544), + [anon_sym___cdecl] = ACTIONS(1544), + [anon_sym___clrcall] = ACTIONS(1544), + [anon_sym___stdcall] = ACTIONS(1544), + [anon_sym___fastcall] = ACTIONS(1544), + [anon_sym___thiscall] = ACTIONS(1544), + [anon_sym___vectorcall] = ACTIONS(1544), [anon_sym_LBRACE] = ACTIONS(421), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -79323,10 +69447,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(73), [anon_sym_union] = ACTIONS(75), [anon_sym_if] = ACTIONS(425), - [anon_sym_else] = ACTIONS(1522), + [anon_sym_else] = ACTIONS(1544), [anon_sym_switch] = ACTIONS(427), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1522), + [anon_sym_case] = ACTIONS(1544), + [anon_sym_default] = ACTIONS(1544), [anon_sym_while] = ACTIONS(433), [anon_sym_do] = ACTIONS(435), [anon_sym_for] = ACTIONS(437), @@ -79370,17 +69494,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1522), + [anon_sym_explicit] = ACTIONS(1544), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_operator] = ACTIONS(1522), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_operator] = ACTIONS(1544), [anon_sym_try] = ACTIONS(453), [anon_sym_delete] = ACTIONS(139), [anon_sym_throw] = ACTIONS(455), - [anon_sym_namespace] = ACTIONS(1522), - [anon_sym_using] = ACTIONS(1522), - [anon_sym_static_assert] = ACTIONS(1522), - [anon_sym_concept] = ACTIONS(1522), + [anon_sym_namespace] = ACTIONS(1544), + [anon_sym_using] = ACTIONS(1544), + [anon_sym_static_assert] = ACTIONS(1544), + [anon_sym_concept] = ACTIONS(1544), [anon_sym_co_return] = ACTIONS(465), [anon_sym_co_yield] = ACTIONS(467), [anon_sym_R_DQUOTE] = ACTIONS(155), @@ -79395,100 +69519,327 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, + [126] = { + [sym_declaration] = STATE(126), + [sym_type_definition] = STATE(126), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5884), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(991), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_compound_statement] = STATE(126), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(126), + [sym_labeled_statement] = STATE(126), + [sym_expression_statement] = STATE(126), + [sym_if_statement] = STATE(126), + [sym_switch_statement] = STATE(126), + [sym_while_statement] = STATE(126), + [sym_do_statement] = STATE(126), + [sym_for_statement] = STATE(126), + [sym_return_statement] = STATE(126), + [sym_break_statement] = STATE(126), + [sym_continue_statement] = STATE(126), + [sym_goto_statement] = STATE(126), + [sym_seh_try_statement] = STATE(126), + [sym_seh_leave_statement] = STATE(126), + [sym_expression] = STATE(5277), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9725), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(126), + [sym_co_return_statement] = STATE(126), + [sym_co_yield_statement] = STATE(126), + [sym_throw_statement] = STATE(126), + [sym_try_statement] = STATE(126), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6657), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(243), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_case_statement_repeat1] = STATE(126), + [sym_identifier] = ACTIONS(1743), + [aux_sym_preproc_include_token1] = ACTIONS(1551), + [aux_sym_preproc_def_token1] = ACTIONS(1551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1553), + [aux_sym_preproc_if_token1] = ACTIONS(1551), + [aux_sym_preproc_if_token2] = ACTIONS(1551), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1551), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1551), + [aux_sym_preproc_else_token1] = ACTIONS(1551), + [aux_sym_preproc_elif_token1] = ACTIONS(1551), + [sym_preproc_directive] = ACTIONS(1551), + [anon_sym_LPAREN2] = ACTIONS(1556), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1565), + [anon_sym_AMP_AMP] = ACTIONS(1568), + [anon_sym_AMP] = ACTIONS(1570), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym___extension__] = ACTIONS(1749), + [anon_sym_typedef] = ACTIONS(1752), + [anon_sym_extern] = ACTIONS(1582), + [anon_sym___attribute__] = ACTIONS(1585), + [anon_sym_COLON_COLON] = ACTIONS(1588), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1591), + [anon_sym___declspec] = ACTIONS(1594), + [anon_sym___based] = ACTIONS(1551), + [anon_sym___cdecl] = ACTIONS(1551), + [anon_sym___clrcall] = ACTIONS(1551), + [anon_sym___stdcall] = ACTIONS(1551), + [anon_sym___fastcall] = ACTIONS(1551), + [anon_sym___thiscall] = ACTIONS(1551), + [anon_sym___vectorcall] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1755), + [anon_sym_signed] = ACTIONS(1600), + [anon_sym_unsigned] = ACTIONS(1600), + [anon_sym_long] = ACTIONS(1600), + [anon_sym_short] = ACTIONS(1600), + [anon_sym_LBRACK] = ACTIONS(1603), + [anon_sym_static] = ACTIONS(1582), + [anon_sym_register] = ACTIONS(1582), + [anon_sym_inline] = ACTIONS(1582), + [anon_sym___inline] = ACTIONS(1582), + [anon_sym___inline__] = ACTIONS(1582), + [anon_sym___forceinline] = ACTIONS(1582), + [anon_sym_thread_local] = ACTIONS(1582), + [anon_sym___thread] = ACTIONS(1582), + [anon_sym_const] = ACTIONS(1606), + [anon_sym_constexpr] = ACTIONS(1606), + [anon_sym_volatile] = ACTIONS(1606), + [anon_sym_restrict] = ACTIONS(1606), + [anon_sym___restrict__] = ACTIONS(1606), + [anon_sym__Atomic] = ACTIONS(1606), + [anon_sym__Noreturn] = ACTIONS(1606), + [anon_sym_noreturn] = ACTIONS(1606), + [anon_sym_mutable] = ACTIONS(1606), + [anon_sym_constinit] = ACTIONS(1606), + [anon_sym_consteval] = ACTIONS(1606), + [sym_primitive_type] = ACTIONS(1609), + [anon_sym_enum] = ACTIONS(1612), + [anon_sym_class] = ACTIONS(1615), + [anon_sym_struct] = ACTIONS(1618), + [anon_sym_union] = ACTIONS(1621), + [anon_sym_if] = ACTIONS(1758), + [anon_sym_else] = ACTIONS(1551), + [anon_sym_switch] = ACTIONS(1761), + [anon_sym_case] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1764), + [anon_sym_do] = ACTIONS(1767), + [anon_sym_for] = ACTIONS(1770), + [anon_sym_return] = ACTIONS(1773), + [anon_sym_break] = ACTIONS(1776), + [anon_sym_continue] = ACTIONS(1779), + [anon_sym_goto] = ACTIONS(1782), + [anon_sym___try] = ACTIONS(1785), + [anon_sym___leave] = ACTIONS(1788), + [anon_sym_not] = ACTIONS(1562), + [anon_sym_compl] = ACTIONS(1562), + [anon_sym_DASH_DASH] = ACTIONS(1657), + [anon_sym_PLUS_PLUS] = ACTIONS(1657), + [anon_sym_sizeof] = ACTIONS(1660), + [anon_sym___alignof__] = ACTIONS(1663), + [anon_sym___alignof] = ACTIONS(1663), + [anon_sym__alignof] = ACTIONS(1663), + [anon_sym_alignof] = ACTIONS(1663), + [anon_sym__Alignof] = ACTIONS(1663), + [anon_sym_offsetof] = ACTIONS(1666), + [anon_sym__Generic] = ACTIONS(1669), + [anon_sym_asm] = ACTIONS(1672), + [anon_sym___asm__] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1675), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1681), + [anon_sym_u_DQUOTE] = ACTIONS(1681), + [anon_sym_U_DQUOTE] = ACTIONS(1681), + [anon_sym_u8_DQUOTE] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [sym_true] = ACTIONS(1684), + [sym_false] = ACTIONS(1684), + [anon_sym_NULL] = ACTIONS(1687), + [anon_sym_nullptr] = ACTIONS(1687), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1690), + [anon_sym_decltype] = ACTIONS(1693), + [anon_sym_virtual] = ACTIONS(1696), + [anon_sym_alignas] = ACTIONS(1699), + [anon_sym_explicit] = ACTIONS(1551), + [anon_sym_typename] = ACTIONS(1702), + [anon_sym_template] = ACTIONS(1705), + [anon_sym_operator] = ACTIONS(1551), + [anon_sym_try] = ACTIONS(1791), + [anon_sym_delete] = ACTIONS(1711), + [anon_sym_throw] = ACTIONS(1794), + [anon_sym_namespace] = ACTIONS(1551), + [anon_sym_using] = ACTIONS(1551), + [anon_sym_static_assert] = ACTIONS(1551), + [anon_sym_concept] = ACTIONS(1551), + [anon_sym_co_return] = ACTIONS(1797), + [anon_sym_co_yield] = ACTIONS(1800), + [anon_sym_R_DQUOTE] = ACTIONS(1723), + [anon_sym_LR_DQUOTE] = ACTIONS(1723), + [anon_sym_uR_DQUOTE] = ACTIONS(1723), + [anon_sym_UR_DQUOTE] = ACTIONS(1723), + [anon_sym_u8R_DQUOTE] = ACTIONS(1723), + [anon_sym_co_await] = ACTIONS(1726), + [anon_sym_new] = ACTIONS(1729), + [anon_sym_requires] = ACTIONS(1732), + [sym_this] = ACTIONS(1684), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1735), + [sym_semgrep_named_ellipsis] = ACTIONS(1738), + }, [127] = { - [sym_declaration] = STATE(125), - [sym_type_definition] = STATE(125), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6396), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(1011), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_compound_statement] = STATE(125), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(125), - [sym_labeled_statement] = STATE(125), - [sym_expression_statement] = STATE(125), - [sym_if_statement] = STATE(125), - [sym_switch_statement] = STATE(125), - [sym_while_statement] = STATE(125), - [sym_do_statement] = STATE(125), - [sym_for_statement] = STATE(125), - [sym_return_statement] = STATE(125), - [sym_break_statement] = STATE(125), - [sym_continue_statement] = STATE(125), - [sym_goto_statement] = STATE(125), - [sym_seh_try_statement] = STATE(125), - [sym_seh_leave_statement] = STATE(125), - [sym_expression] = STATE(5788), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9707), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(125), - [sym_co_return_statement] = STATE(125), - [sym_co_yield_statement] = STATE(125), - [sym_throw_statement] = STATE(125), - [sym_try_statement] = STATE(125), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7078), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(229), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_case_statement_repeat1] = STATE(125), - [sym_identifier] = ACTIONS(1745), + [sym_declaration] = STATE(126), + [sym_type_definition] = STATE(126), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5884), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(991), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_compound_statement] = STATE(126), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(126), + [sym_labeled_statement] = STATE(126), + [sym_expression_statement] = STATE(126), + [sym_if_statement] = STATE(126), + [sym_switch_statement] = STATE(126), + [sym_while_statement] = STATE(126), + [sym_do_statement] = STATE(126), + [sym_for_statement] = STATE(126), + [sym_return_statement] = STATE(126), + [sym_break_statement] = STATE(126), + [sym_continue_statement] = STATE(126), + [sym_goto_statement] = STATE(126), + [sym_seh_try_statement] = STATE(126), + [sym_seh_leave_statement] = STATE(126), + [sym_expression] = STATE(5277), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9725), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(126), + [sym_co_return_statement] = STATE(126), + [sym_co_yield_statement] = STATE(126), + [sym_throw_statement] = STATE(126), + [sym_try_statement] = STATE(126), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6657), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(243), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_case_statement_repeat1] = STATE(126), + [sym_identifier] = ACTIONS(1741), [aux_sym_preproc_include_token1] = ACTIONS(1540), [aux_sym_preproc_def_token1] = ACTIONS(1540), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), [aux_sym_preproc_if_token1] = ACTIONS(1540), [aux_sym_preproc_if_token2] = ACTIONS(1540), [aux_sym_preproc_ifdef_token1] = ACTIONS(1540), @@ -79496,21 +69847,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_else_token1] = ACTIONS(1540), [aux_sym_preproc_elif_token1] = ACTIONS(1540), [sym_preproc_directive] = ACTIONS(1540), - [anon_sym_LPAREN2] = ACTIONS(1526), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), [anon_sym_AMP_AMP] = ACTIONS(1542), - [anon_sym_AMP] = ACTIONS(1532), + [anon_sym_AMP] = ACTIONS(1528), [anon_sym_SEMI] = ACTIONS(413), [anon_sym___extension__] = ACTIONS(415), [anon_sym_typedef] = ACTIONS(417), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(1540), [anon_sym___cdecl] = ACTIONS(1540), @@ -79524,7 +69875,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -79599,7 +69950,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(1540), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_operator] = ACTIONS(1540), [anon_sym_try] = ACTIONS(453), [anon_sym_delete] = ACTIONS(139), @@ -79623,21 +69974,246 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [128] = { + [sym_declaration] = STATE(128), + [sym_type_definition] = STATE(128), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5892), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(991), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_compound_statement] = STATE(128), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(128), + [sym_labeled_statement] = STATE(128), + [sym_expression_statement] = STATE(128), + [sym_if_statement] = STATE(128), + [sym_switch_statement] = STATE(128), + [sym_while_statement] = STATE(128), + [sym_do_statement] = STATE(128), + [sym_for_statement] = STATE(128), + [sym_return_statement] = STATE(128), + [sym_break_statement] = STATE(128), + [sym_continue_statement] = STATE(128), + [sym_goto_statement] = STATE(128), + [sym_seh_try_statement] = STATE(128), + [sym_seh_leave_statement] = STATE(128), + [sym_expression] = STATE(5320), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9351), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(128), + [sym_co_return_statement] = STATE(128), + [sym_co_yield_statement] = STATE(128), + [sym_throw_statement] = STATE(128), + [sym_try_statement] = STATE(128), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6657), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(252), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_case_statement_repeat1] = STATE(128), + [sym_identifier] = ACTIONS(1803), + [aux_sym_preproc_include_token1] = ACTIONS(1551), + [aux_sym_preproc_def_token1] = ACTIONS(1551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1553), + [aux_sym_preproc_if_token1] = ACTIONS(1551), + [aux_sym_preproc_if_token2] = ACTIONS(1551), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1551), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1551), + [sym_preproc_directive] = ACTIONS(1551), + [anon_sym_LPAREN2] = ACTIONS(1556), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1565), + [anon_sym_AMP_AMP] = ACTIONS(1568), + [anon_sym_AMP] = ACTIONS(1570), + [anon_sym_SEMI] = ACTIONS(1806), + [anon_sym___extension__] = ACTIONS(1809), + [anon_sym_typedef] = ACTIONS(1812), + [anon_sym_extern] = ACTIONS(1582), + [anon_sym___attribute__] = ACTIONS(1585), + [anon_sym_COLON_COLON] = ACTIONS(1588), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1591), + [anon_sym___declspec] = ACTIONS(1594), + [anon_sym___based] = ACTIONS(1551), + [anon_sym___cdecl] = ACTIONS(1551), + [anon_sym___clrcall] = ACTIONS(1551), + [anon_sym___stdcall] = ACTIONS(1551), + [anon_sym___fastcall] = ACTIONS(1551), + [anon_sym___thiscall] = ACTIONS(1551), + [anon_sym___vectorcall] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1815), + [anon_sym_signed] = ACTIONS(1600), + [anon_sym_unsigned] = ACTIONS(1600), + [anon_sym_long] = ACTIONS(1600), + [anon_sym_short] = ACTIONS(1600), + [anon_sym_LBRACK] = ACTIONS(1603), + [anon_sym_static] = ACTIONS(1582), + [anon_sym_register] = ACTIONS(1582), + [anon_sym_inline] = ACTIONS(1582), + [anon_sym___inline] = ACTIONS(1582), + [anon_sym___inline__] = ACTIONS(1582), + [anon_sym___forceinline] = ACTIONS(1582), + [anon_sym_thread_local] = ACTIONS(1582), + [anon_sym___thread] = ACTIONS(1582), + [anon_sym_const] = ACTIONS(1606), + [anon_sym_constexpr] = ACTIONS(1606), + [anon_sym_volatile] = ACTIONS(1606), + [anon_sym_restrict] = ACTIONS(1606), + [anon_sym___restrict__] = ACTIONS(1606), + [anon_sym__Atomic] = ACTIONS(1606), + [anon_sym__Noreturn] = ACTIONS(1606), + [anon_sym_noreturn] = ACTIONS(1606), + [anon_sym_mutable] = ACTIONS(1606), + [anon_sym_constinit] = ACTIONS(1606), + [anon_sym_consteval] = ACTIONS(1606), + [sym_primitive_type] = ACTIONS(1609), + [anon_sym_enum] = ACTIONS(1612), + [anon_sym_class] = ACTIONS(1615), + [anon_sym_struct] = ACTIONS(1618), + [anon_sym_union] = ACTIONS(1621), + [anon_sym_if] = ACTIONS(1818), + [anon_sym_else] = ACTIONS(1551), + [anon_sym_switch] = ACTIONS(1821), + [anon_sym_case] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1824), + [anon_sym_do] = ACTIONS(1827), + [anon_sym_for] = ACTIONS(1830), + [anon_sym_return] = ACTIONS(1833), + [anon_sym_break] = ACTIONS(1836), + [anon_sym_continue] = ACTIONS(1839), + [anon_sym_goto] = ACTIONS(1842), + [anon_sym___try] = ACTIONS(1845), + [anon_sym___leave] = ACTIONS(1848), + [anon_sym_not] = ACTIONS(1562), + [anon_sym_compl] = ACTIONS(1562), + [anon_sym_DASH_DASH] = ACTIONS(1657), + [anon_sym_PLUS_PLUS] = ACTIONS(1657), + [anon_sym_sizeof] = ACTIONS(1660), + [anon_sym___alignof__] = ACTIONS(1663), + [anon_sym___alignof] = ACTIONS(1663), + [anon_sym__alignof] = ACTIONS(1663), + [anon_sym_alignof] = ACTIONS(1663), + [anon_sym__Alignof] = ACTIONS(1663), + [anon_sym_offsetof] = ACTIONS(1666), + [anon_sym__Generic] = ACTIONS(1669), + [anon_sym_asm] = ACTIONS(1672), + [anon_sym___asm__] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1675), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1681), + [anon_sym_u_DQUOTE] = ACTIONS(1681), + [anon_sym_U_DQUOTE] = ACTIONS(1681), + [anon_sym_u8_DQUOTE] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [sym_true] = ACTIONS(1684), + [sym_false] = ACTIONS(1684), + [anon_sym_NULL] = ACTIONS(1687), + [anon_sym_nullptr] = ACTIONS(1687), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1690), + [anon_sym_decltype] = ACTIONS(1693), + [anon_sym_virtual] = ACTIONS(1696), + [anon_sym_alignas] = ACTIONS(1699), + [anon_sym_explicit] = ACTIONS(1551), + [anon_sym_typename] = ACTIONS(1702), + [anon_sym_template] = ACTIONS(1705), + [anon_sym_operator] = ACTIONS(1551), + [anon_sym_try] = ACTIONS(1851), + [anon_sym_delete] = ACTIONS(1711), + [anon_sym_throw] = ACTIONS(1854), + [anon_sym_namespace] = ACTIONS(1551), + [anon_sym_using] = ACTIONS(1551), + [anon_sym_static_assert] = ACTIONS(1551), + [anon_sym_concept] = ACTIONS(1551), + [anon_sym_co_return] = ACTIONS(1857), + [anon_sym_co_yield] = ACTIONS(1860), + [anon_sym_R_DQUOTE] = ACTIONS(1723), + [anon_sym_LR_DQUOTE] = ACTIONS(1723), + [anon_sym_uR_DQUOTE] = ACTIONS(1723), + [anon_sym_UR_DQUOTE] = ACTIONS(1723), + [anon_sym_u8R_DQUOTE] = ACTIONS(1723), + [anon_sym_co_await] = ACTIONS(1726), + [anon_sym_new] = ACTIONS(1729), + [anon_sym_requires] = ACTIONS(1732), + [sym_this] = ACTIONS(1684), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1735), + [sym_semgrep_named_ellipsis] = ACTIONS(1738), + }, + [129] = { [sym_declaration] = STATE(129), [sym_type_definition] = STATE(129), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6396), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(1011), - [sym_ms_declspec_modifier] = STATE(4269), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5918), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(991), + [sym_ms_declspec_modifier] = STATE(4038), [sym_compound_statement] = STATE(129), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(129), [sym_labeled_statement] = STATE(129), [sym_expression_statement] = STATE(129), @@ -79652,106 +70228,329 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(129), [sym_seh_try_statement] = STATE(129), [sym_seh_leave_statement] = STATE(129), - [sym_expression] = STATE(5788), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9707), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5251), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4249), [sym_for_range_loop] = STATE(129), [sym_co_return_statement] = STATE(129), [sym_co_yield_statement] = STATE(129), [sym_throw_statement] = STATE(129), [sym_try_statement] = STATE(129), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7078), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(229), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6657), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), [aux_sym_case_statement_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(1745), - [aux_sym_preproc_include_token1] = ACTIONS(1544), - [aux_sym_preproc_def_token1] = ACTIONS(1544), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [aux_sym_preproc_if_token1] = ACTIONS(1544), - [aux_sym_preproc_if_token2] = ACTIONS(1544), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1544), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1544), - [aux_sym_preproc_else_token1] = ACTIONS(1544), - [aux_sym_preproc_elif_token1] = ACTIONS(1544), - [sym_preproc_directive] = ACTIONS(1544), - [anon_sym_LPAREN2] = ACTIONS(1526), + [sym_identifier] = ACTIONS(1863), + [aux_sym_preproc_include_token1] = ACTIONS(1551), + [aux_sym_preproc_def_token1] = ACTIONS(1551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1553), + [aux_sym_preproc_if_token1] = ACTIONS(1551), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1551), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1551), + [sym_preproc_directive] = ACTIONS(1551), + [anon_sym_LPAREN2] = ACTIONS(1556), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1565), + [anon_sym_AMP_AMP] = ACTIONS(1568), + [anon_sym_AMP] = ACTIONS(1570), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym___extension__] = ACTIONS(1869), + [anon_sym_typedef] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1582), + [anon_sym___attribute__] = ACTIONS(1585), + [anon_sym_COLON_COLON] = ACTIONS(1588), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1591), + [anon_sym___declspec] = ACTIONS(1594), + [anon_sym___based] = ACTIONS(1551), + [anon_sym___cdecl] = ACTIONS(1551), + [anon_sym___clrcall] = ACTIONS(1551), + [anon_sym___stdcall] = ACTIONS(1551), + [anon_sym___fastcall] = ACTIONS(1551), + [anon_sym___thiscall] = ACTIONS(1551), + [anon_sym___vectorcall] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1875), + [anon_sym_RBRACE] = ACTIONS(1568), + [anon_sym_signed] = ACTIONS(1600), + [anon_sym_unsigned] = ACTIONS(1600), + [anon_sym_long] = ACTIONS(1600), + [anon_sym_short] = ACTIONS(1600), + [anon_sym_LBRACK] = ACTIONS(1603), + [anon_sym_static] = ACTIONS(1582), + [anon_sym_register] = ACTIONS(1582), + [anon_sym_inline] = ACTIONS(1582), + [anon_sym___inline] = ACTIONS(1582), + [anon_sym___inline__] = ACTIONS(1582), + [anon_sym___forceinline] = ACTIONS(1582), + [anon_sym_thread_local] = ACTIONS(1582), + [anon_sym___thread] = ACTIONS(1582), + [anon_sym_const] = ACTIONS(1606), + [anon_sym_constexpr] = ACTIONS(1606), + [anon_sym_volatile] = ACTIONS(1606), + [anon_sym_restrict] = ACTIONS(1606), + [anon_sym___restrict__] = ACTIONS(1606), + [anon_sym__Atomic] = ACTIONS(1606), + [anon_sym__Noreturn] = ACTIONS(1606), + [anon_sym_noreturn] = ACTIONS(1606), + [anon_sym_mutable] = ACTIONS(1606), + [anon_sym_constinit] = ACTIONS(1606), + [anon_sym_consteval] = ACTIONS(1606), + [sym_primitive_type] = ACTIONS(1609), + [anon_sym_enum] = ACTIONS(1612), + [anon_sym_class] = ACTIONS(1615), + [anon_sym_struct] = ACTIONS(1618), + [anon_sym_union] = ACTIONS(1621), + [anon_sym_if] = ACTIONS(1878), + [anon_sym_else] = ACTIONS(1551), + [anon_sym_switch] = ACTIONS(1881), + [anon_sym_case] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1884), + [anon_sym_do] = ACTIONS(1887), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_return] = ACTIONS(1893), + [anon_sym_break] = ACTIONS(1896), + [anon_sym_continue] = ACTIONS(1899), + [anon_sym_goto] = ACTIONS(1902), + [anon_sym___try] = ACTIONS(1905), + [anon_sym___leave] = ACTIONS(1908), + [anon_sym_not] = ACTIONS(1562), + [anon_sym_compl] = ACTIONS(1562), + [anon_sym_DASH_DASH] = ACTIONS(1657), + [anon_sym_PLUS_PLUS] = ACTIONS(1657), + [anon_sym_sizeof] = ACTIONS(1660), + [anon_sym___alignof__] = ACTIONS(1663), + [anon_sym___alignof] = ACTIONS(1663), + [anon_sym__alignof] = ACTIONS(1663), + [anon_sym_alignof] = ACTIONS(1663), + [anon_sym__Alignof] = ACTIONS(1663), + [anon_sym_offsetof] = ACTIONS(1666), + [anon_sym__Generic] = ACTIONS(1669), + [anon_sym_asm] = ACTIONS(1672), + [anon_sym___asm__] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1675), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1681), + [anon_sym_u_DQUOTE] = ACTIONS(1681), + [anon_sym_U_DQUOTE] = ACTIONS(1681), + [anon_sym_u8_DQUOTE] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [sym_true] = ACTIONS(1684), + [sym_false] = ACTIONS(1684), + [anon_sym_NULL] = ACTIONS(1687), + [anon_sym_nullptr] = ACTIONS(1687), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1690), + [anon_sym_decltype] = ACTIONS(1693), + [anon_sym_virtual] = ACTIONS(1696), + [anon_sym_alignas] = ACTIONS(1699), + [anon_sym_explicit] = ACTIONS(1551), + [anon_sym_typename] = ACTIONS(1702), + [anon_sym_template] = ACTIONS(1705), + [anon_sym_operator] = ACTIONS(1551), + [anon_sym_try] = ACTIONS(1911), + [anon_sym_delete] = ACTIONS(1711), + [anon_sym_throw] = ACTIONS(1914), + [anon_sym_namespace] = ACTIONS(1551), + [anon_sym_using] = ACTIONS(1551), + [anon_sym_static_assert] = ACTIONS(1551), + [anon_sym_concept] = ACTIONS(1551), + [anon_sym_co_return] = ACTIONS(1917), + [anon_sym_co_yield] = ACTIONS(1920), + [anon_sym_R_DQUOTE] = ACTIONS(1723), + [anon_sym_LR_DQUOTE] = ACTIONS(1723), + [anon_sym_uR_DQUOTE] = ACTIONS(1723), + [anon_sym_UR_DQUOTE] = ACTIONS(1723), + [anon_sym_u8R_DQUOTE] = ACTIONS(1723), + [anon_sym_co_await] = ACTIONS(1726), + [anon_sym_new] = ACTIONS(1729), + [anon_sym_requires] = ACTIONS(1732), + [sym_this] = ACTIONS(1684), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1735), + [sym_semgrep_named_ellipsis] = ACTIONS(1738), + }, + [130] = { + [sym_declaration] = STATE(129), + [sym_type_definition] = STATE(129), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5918), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(991), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_compound_statement] = STATE(129), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(129), + [sym_labeled_statement] = STATE(129), + [sym_expression_statement] = STATE(129), + [sym_if_statement] = STATE(129), + [sym_switch_statement] = STATE(129), + [sym_while_statement] = STATE(129), + [sym_do_statement] = STATE(129), + [sym_for_statement] = STATE(129), + [sym_return_statement] = STATE(129), + [sym_break_statement] = STATE(129), + [sym_continue_statement] = STATE(129), + [sym_goto_statement] = STATE(129), + [sym_seh_try_statement] = STATE(129), + [sym_seh_leave_statement] = STATE(129), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(129), + [sym_co_return_statement] = STATE(129), + [sym_co_yield_statement] = STATE(129), + [sym_throw_statement] = STATE(129), + [sym_try_statement] = STATE(129), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6657), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_case_statement_repeat1] = STATE(129), + [sym_identifier] = ACTIONS(1923), + [aux_sym_preproc_include_token1] = ACTIONS(1540), + [aux_sym_preproc_def_token1] = ACTIONS(1540), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [aux_sym_preproc_if_token1] = ACTIONS(1540), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1540), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1540), + [sym_preproc_directive] = ACTIONS(1540), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP_AMP] = ACTIONS(1546), - [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_SEMI] = ACTIONS(413), - [anon_sym___extension__] = ACTIONS(415), - [anon_sym_typedef] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP_AMP] = ACTIONS(1542), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(1544), - [anon_sym___cdecl] = ACTIONS(1544), - [anon_sym___clrcall] = ACTIONS(1544), - [anon_sym___stdcall] = ACTIONS(1544), - [anon_sym___fastcall] = ACTIONS(1544), - [anon_sym___thiscall] = ACTIONS(1544), - [anon_sym___vectorcall] = ACTIONS(1544), - [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym___based] = ACTIONS(1540), + [anon_sym___cdecl] = ACTIONS(1540), + [anon_sym___clrcall] = ACTIONS(1540), + [anon_sym___stdcall] = ACTIONS(1540), + [anon_sym___fastcall] = ACTIONS(1540), + [anon_sym___thiscall] = ACTIONS(1540), + [anon_sym___vectorcall] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(860), + [anon_sym_RBRACE] = ACTIONS(1542), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -79776,20 +70575,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(71), [anon_sym_struct] = ACTIONS(73), [anon_sym_union] = ACTIONS(75), - [anon_sym_if] = ACTIONS(425), - [anon_sym_else] = ACTIONS(1544), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_case] = ACTIONS(1544), - [anon_sym_default] = ACTIONS(1544), - [anon_sym_while] = ACTIONS(433), - [anon_sym_do] = ACTIONS(435), - [anon_sym_for] = ACTIONS(437), - [anon_sym_return] = ACTIONS(439), - [anon_sym_break] = ACTIONS(441), - [anon_sym_continue] = ACTIONS(443), - [anon_sym_goto] = ACTIONS(445), - [anon_sym___try] = ACTIONS(447), - [anon_sym___leave] = ACTIONS(449), + [anon_sym_if] = ACTIONS(203), + [anon_sym_else] = ACTIONS(1540), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(1540), + [anon_sym_default] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -79824,19 +70623,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1544), + [anon_sym_explicit] = ACTIONS(1540), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_operator] = ACTIONS(1544), - [anon_sym_try] = ACTIONS(453), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_operator] = ACTIONS(1540), + [anon_sym_try] = ACTIONS(233), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(455), - [anon_sym_namespace] = ACTIONS(1544), - [anon_sym_using] = ACTIONS(1544), - [anon_sym_static_assert] = ACTIONS(1544), - [anon_sym_concept] = ACTIONS(1544), - [anon_sym_co_return] = ACTIONS(465), - [anon_sym_co_yield] = ACTIONS(467), + [anon_sym_throw] = ACTIONS(235), + [anon_sym_namespace] = ACTIONS(1540), + [anon_sym_using] = ACTIONS(1540), + [anon_sym_static_assert] = ACTIONS(1540), + [anon_sym_concept] = ACTIONS(1540), + [anon_sym_co_return] = ACTIONS(245), + [anon_sym_co_yield] = ACTIONS(247), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -79849,22 +70648,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [129] = { + [131] = { [sym_declaration] = STATE(129), [sym_type_definition] = STATE(129), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6396), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(1011), - [sym_ms_declspec_modifier] = STATE(4269), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5918), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(991), + [sym_ms_declspec_modifier] = STATE(4038), [sym_compound_statement] = STATE(129), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), [sym_attributed_statement] = STATE(129), [sym_labeled_statement] = STATE(129), [sym_expression_statement] = STATE(129), @@ -79879,331 +70678,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(129), [sym_seh_try_statement] = STATE(129), [sym_seh_leave_statement] = STATE(129), - [sym_expression] = STATE(5788), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9707), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5251), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4249), [sym_for_range_loop] = STATE(129), [sym_co_return_statement] = STATE(129), [sym_co_yield_statement] = STATE(129), [sym_throw_statement] = STATE(129), [sym_try_statement] = STATE(129), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7078), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(229), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6657), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), [aux_sym_case_statement_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(1747), - [aux_sym_preproc_include_token1] = ACTIONS(1555), - [aux_sym_preproc_def_token1] = ACTIONS(1555), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1557), - [aux_sym_preproc_if_token1] = ACTIONS(1555), - [aux_sym_preproc_if_token2] = ACTIONS(1555), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1555), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1555), - [aux_sym_preproc_else_token1] = ACTIONS(1555), - [aux_sym_preproc_elif_token1] = ACTIONS(1555), - [sym_preproc_directive] = ACTIONS(1555), - [anon_sym_LPAREN2] = ACTIONS(1560), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1566), - [anon_sym_PLUS] = ACTIONS(1566), - [anon_sym_STAR] = ACTIONS(1569), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1574), - [anon_sym_SEMI] = ACTIONS(1750), - [anon_sym___extension__] = ACTIONS(1753), - [anon_sym_typedef] = ACTIONS(1756), - [anon_sym_extern] = ACTIONS(1586), - [anon_sym___attribute__] = ACTIONS(1589), - [anon_sym_COLON_COLON] = ACTIONS(1592), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1595), - [anon_sym___declspec] = ACTIONS(1598), - [anon_sym___based] = ACTIONS(1555), - [anon_sym___cdecl] = ACTIONS(1555), - [anon_sym___clrcall] = ACTIONS(1555), - [anon_sym___stdcall] = ACTIONS(1555), - [anon_sym___fastcall] = ACTIONS(1555), - [anon_sym___thiscall] = ACTIONS(1555), - [anon_sym___vectorcall] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1759), - [anon_sym_signed] = ACTIONS(1604), - [anon_sym_unsigned] = ACTIONS(1604), - [anon_sym_long] = ACTIONS(1604), - [anon_sym_short] = ACTIONS(1604), - [anon_sym_LBRACK] = ACTIONS(1607), - [anon_sym_static] = ACTIONS(1586), - [anon_sym_register] = ACTIONS(1586), - [anon_sym_inline] = ACTIONS(1586), - [anon_sym___inline] = ACTIONS(1586), - [anon_sym___inline__] = ACTIONS(1586), - [anon_sym___forceinline] = ACTIONS(1586), - [anon_sym_thread_local] = ACTIONS(1586), - [anon_sym___thread] = ACTIONS(1586), - [anon_sym_const] = ACTIONS(1610), - [anon_sym_constexpr] = ACTIONS(1610), - [anon_sym_volatile] = ACTIONS(1610), - [anon_sym_restrict] = ACTIONS(1610), - [anon_sym___restrict__] = ACTIONS(1610), - [anon_sym__Atomic] = ACTIONS(1610), - [anon_sym__Noreturn] = ACTIONS(1610), - [anon_sym_noreturn] = ACTIONS(1610), - [anon_sym_mutable] = ACTIONS(1610), - [anon_sym_constinit] = ACTIONS(1610), - [anon_sym_consteval] = ACTIONS(1610), - [sym_primitive_type] = ACTIONS(1613), - [anon_sym_enum] = ACTIONS(1616), - [anon_sym_class] = ACTIONS(1619), - [anon_sym_struct] = ACTIONS(1622), - [anon_sym_union] = ACTIONS(1625), - [anon_sym_if] = ACTIONS(1762), - [anon_sym_else] = ACTIONS(1555), - [anon_sym_switch] = ACTIONS(1765), - [anon_sym_case] = ACTIONS(1555), - [anon_sym_default] = ACTIONS(1555), - [anon_sym_while] = ACTIONS(1768), - [anon_sym_do] = ACTIONS(1771), - [anon_sym_for] = ACTIONS(1774), - [anon_sym_return] = ACTIONS(1777), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_goto] = ACTIONS(1786), - [anon_sym___try] = ACTIONS(1789), - [anon_sym___leave] = ACTIONS(1792), - [anon_sym_not] = ACTIONS(1566), - [anon_sym_compl] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1661), - [anon_sym_PLUS_PLUS] = ACTIONS(1661), - [anon_sym_sizeof] = ACTIONS(1664), - [anon_sym___alignof__] = ACTIONS(1667), - [anon_sym___alignof] = ACTIONS(1667), - [anon_sym__alignof] = ACTIONS(1667), - [anon_sym_alignof] = ACTIONS(1667), - [anon_sym__Alignof] = ACTIONS(1667), - [anon_sym_offsetof] = ACTIONS(1670), - [anon_sym__Generic] = ACTIONS(1673), - [anon_sym_asm] = ACTIONS(1676), - [anon_sym___asm__] = ACTIONS(1676), - [sym_number_literal] = ACTIONS(1679), - [anon_sym_L_SQUOTE] = ACTIONS(1682), - [anon_sym_u_SQUOTE] = ACTIONS(1682), - [anon_sym_U_SQUOTE] = ACTIONS(1682), - [anon_sym_u8_SQUOTE] = ACTIONS(1682), - [anon_sym_SQUOTE] = ACTIONS(1682), - [anon_sym_L_DQUOTE] = ACTIONS(1685), - [anon_sym_u_DQUOTE] = ACTIONS(1685), - [anon_sym_U_DQUOTE] = ACTIONS(1685), - [anon_sym_u8_DQUOTE] = ACTIONS(1685), - [anon_sym_DQUOTE] = ACTIONS(1685), - [sym_true] = ACTIONS(1688), - [sym_false] = ACTIONS(1688), - [anon_sym_NULL] = ACTIONS(1691), - [anon_sym_nullptr] = ACTIONS(1691), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1694), - [anon_sym_decltype] = ACTIONS(1697), - [anon_sym_virtual] = ACTIONS(1700), - [anon_sym_alignas] = ACTIONS(1703), - [anon_sym_explicit] = ACTIONS(1555), - [anon_sym_typename] = ACTIONS(1706), - [anon_sym_template] = ACTIONS(1709), - [anon_sym_operator] = ACTIONS(1555), - [anon_sym_try] = ACTIONS(1795), - [anon_sym_delete] = ACTIONS(1715), - [anon_sym_throw] = ACTIONS(1798), - [anon_sym_namespace] = ACTIONS(1555), - [anon_sym_using] = ACTIONS(1555), - [anon_sym_static_assert] = ACTIONS(1555), - [anon_sym_concept] = ACTIONS(1555), - [anon_sym_co_return] = ACTIONS(1801), - [anon_sym_co_yield] = ACTIONS(1804), - [anon_sym_R_DQUOTE] = ACTIONS(1727), - [anon_sym_LR_DQUOTE] = ACTIONS(1727), - [anon_sym_uR_DQUOTE] = ACTIONS(1727), - [anon_sym_UR_DQUOTE] = ACTIONS(1727), - [anon_sym_u8R_DQUOTE] = ACTIONS(1727), - [anon_sym_co_await] = ACTIONS(1730), - [anon_sym_new] = ACTIONS(1733), - [anon_sym_requires] = ACTIONS(1736), - [sym_this] = ACTIONS(1688), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1739), - [sym_semgrep_named_ellipsis] = ACTIONS(1742), - }, - [130] = { - [sym_declaration] = STATE(136), - [sym_type_definition] = STATE(136), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6401), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(1011), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_compound_statement] = STATE(136), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(136), - [sym_labeled_statement] = STATE(136), - [sym_expression_statement] = STATE(136), - [sym_if_statement] = STATE(136), - [sym_switch_statement] = STATE(136), - [sym_while_statement] = STATE(136), - [sym_do_statement] = STATE(136), - [sym_for_statement] = STATE(136), - [sym_return_statement] = STATE(136), - [sym_break_statement] = STATE(136), - [sym_continue_statement] = STATE(136), - [sym_goto_statement] = STATE(136), - [sym_seh_try_statement] = STATE(136), - [sym_seh_leave_statement] = STATE(136), - [sym_expression] = STATE(5819), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9710), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(136), - [sym_co_return_statement] = STATE(136), - [sym_co_yield_statement] = STATE(136), - [sym_throw_statement] = STATE(136), - [sym_try_statement] = STATE(136), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7078), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(226), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_case_statement_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(1807), - [aux_sym_preproc_include_token1] = ACTIONS(1544), - [aux_sym_preproc_def_token1] = ACTIONS(1544), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [aux_sym_preproc_if_token1] = ACTIONS(1544), - [aux_sym_preproc_if_token2] = ACTIONS(1544), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1544), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1544), - [sym_preproc_directive] = ACTIONS(1544), - [anon_sym_LPAREN2] = ACTIONS(1526), + [sym_identifier] = ACTIONS(1923), + [aux_sym_preproc_include_token1] = ACTIONS(1518), + [aux_sym_preproc_def_token1] = ACTIONS(1518), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [aux_sym_preproc_if_token1] = ACTIONS(1518), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1518), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1518), + [sym_preproc_directive] = ACTIONS(1518), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP_AMP] = ACTIONS(1546), - [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym___extension__] = ACTIONS(996), - [anon_sym_typedef] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP_AMP] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(1544), - [anon_sym___cdecl] = ACTIONS(1544), - [anon_sym___clrcall] = ACTIONS(1544), - [anon_sym___stdcall] = ACTIONS(1544), - [anon_sym___fastcall] = ACTIONS(1544), - [anon_sym___thiscall] = ACTIONS(1544), - [anon_sym___vectorcall] = ACTIONS(1544), - [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym___based] = ACTIONS(1518), + [anon_sym___cdecl] = ACTIONS(1518), + [anon_sym___clrcall] = ACTIONS(1518), + [anon_sym___stdcall] = ACTIONS(1518), + [anon_sym___fastcall] = ACTIONS(1518), + [anon_sym___thiscall] = ACTIONS(1518), + [anon_sym___vectorcall] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(860), + [anon_sym_RBRACE] = ACTIONS(1526), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -80228,20 +70800,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(71), [anon_sym_struct] = ACTIONS(73), [anon_sym_union] = ACTIONS(75), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_else] = ACTIONS(1544), - [anon_sym_switch] = ACTIONS(1008), - [anon_sym_case] = ACTIONS(1544), - [anon_sym_default] = ACTIONS(1544), - [anon_sym_while] = ACTIONS(1014), - [anon_sym_do] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_break] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_goto] = ACTIONS(1026), - [anon_sym___try] = ACTIONS(1028), - [anon_sym___leave] = ACTIONS(1030), + [anon_sym_if] = ACTIONS(203), + [anon_sym_else] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(1518), + [anon_sym_default] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -80276,19 +70848,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1544), + [anon_sym_explicit] = ACTIONS(1518), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_operator] = ACTIONS(1544), - [anon_sym_try] = ACTIONS(1034), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_operator] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(233), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(1036), - [anon_sym_namespace] = ACTIONS(1544), - [anon_sym_using] = ACTIONS(1544), - [anon_sym_static_assert] = ACTIONS(1544), - [anon_sym_concept] = ACTIONS(1544), - [anon_sym_co_return] = ACTIONS(1046), - [anon_sym_co_yield] = ACTIONS(1048), + [anon_sym_throw] = ACTIONS(235), + [anon_sym_namespace] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1518), + [anon_sym_static_assert] = ACTIONS(1518), + [anon_sym_concept] = ACTIONS(1518), + [anon_sym_co_return] = ACTIONS(245), + [anon_sym_co_yield] = ACTIONS(247), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -80301,119 +70873,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [131] = { - [sym_declaration] = STATE(135), - [sym_type_definition] = STATE(135), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6413), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(1011), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_compound_statement] = STATE(135), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(135), - [sym_labeled_statement] = STATE(135), - [sym_expression_statement] = STATE(135), - [sym_if_statement] = STATE(135), - [sym_switch_statement] = STATE(135), - [sym_while_statement] = STATE(135), - [sym_do_statement] = STATE(135), - [sym_for_statement] = STATE(135), - [sym_return_statement] = STATE(135), - [sym_break_statement] = STATE(135), - [sym_continue_statement] = STATE(135), - [sym_goto_statement] = STATE(135), - [sym_seh_try_statement] = STATE(135), - [sym_seh_leave_statement] = STATE(135), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(135), - [sym_co_return_statement] = STATE(135), - [sym_co_yield_statement] = STATE(135), - [sym_throw_statement] = STATE(135), - [sym_try_statement] = STATE(135), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7078), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_case_statement_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(1809), + [132] = { + [sym_declaration] = STATE(131), + [sym_type_definition] = STATE(131), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5918), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(991), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_compound_statement] = STATE(131), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(131), + [sym_labeled_statement] = STATE(131), + [sym_expression_statement] = STATE(131), + [sym_if_statement] = STATE(131), + [sym_switch_statement] = STATE(131), + [sym_while_statement] = STATE(131), + [sym_do_statement] = STATE(131), + [sym_for_statement] = STATE(131), + [sym_return_statement] = STATE(131), + [sym_break_statement] = STATE(131), + [sym_continue_statement] = STATE(131), + [sym_goto_statement] = STATE(131), + [sym_seh_try_statement] = STATE(131), + [sym_seh_leave_statement] = STATE(131), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(131), + [sym_co_return_statement] = STATE(131), + [sym_co_yield_statement] = STATE(131), + [sym_throw_statement] = STATE(131), + [sym_try_statement] = STATE(131), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6657), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_case_statement_repeat1] = STATE(131), + [sym_identifier] = ACTIONS(1923), [aux_sym_preproc_include_token1] = ACTIONS(1544), [aux_sym_preproc_def_token1] = ACTIONS(1544), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), [aux_sym_preproc_if_token1] = ACTIONS(1544), [aux_sym_preproc_ifdef_token1] = ACTIONS(1544), [aux_sym_preproc_ifdef_token2] = ACTIONS(1544), [sym_preproc_directive] = ACTIONS(1544), - [anon_sym_LPAREN2] = ACTIONS(1526), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), [anon_sym_AMP_AMP] = ACTIONS(1546), - [anon_sym_AMP] = ACTIONS(1532), + [anon_sym_AMP] = ACTIONS(1528), [anon_sym_SEMI] = ACTIONS(187), [anon_sym___extension__] = ACTIONS(189), [anon_sym_typedef] = ACTIONS(191), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(1544), [anon_sym___cdecl] = ACTIONS(1544), @@ -80428,7 +71000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -80503,7 +71075,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(1544), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_operator] = ACTIONS(1544), [anon_sym_try] = ACTIONS(233), [anon_sym_delete] = ACTIONS(139), @@ -80526,134 +71098,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [132] = { - [sym_declaration] = STATE(136), - [sym_type_definition] = STATE(136), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6401), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(1011), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_compound_statement] = STATE(136), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(136), - [sym_labeled_statement] = STATE(136), - [sym_expression_statement] = STATE(136), - [sym_if_statement] = STATE(136), - [sym_switch_statement] = STATE(136), - [sym_while_statement] = STATE(136), - [sym_do_statement] = STATE(136), - [sym_for_statement] = STATE(136), - [sym_return_statement] = STATE(136), - [sym_break_statement] = STATE(136), - [sym_continue_statement] = STATE(136), - [sym_goto_statement] = STATE(136), - [sym_seh_try_statement] = STATE(136), - [sym_seh_leave_statement] = STATE(136), - [sym_expression] = STATE(5819), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9710), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(136), - [sym_co_return_statement] = STATE(136), - [sym_co_yield_statement] = STATE(136), - [sym_throw_statement] = STATE(136), - [sym_try_statement] = STATE(136), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7078), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(226), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_case_statement_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(1807), - [aux_sym_preproc_include_token1] = ACTIONS(1548), - [aux_sym_preproc_def_token1] = ACTIONS(1548), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [aux_sym_preproc_if_token1] = ACTIONS(1548), - [aux_sym_preproc_if_token2] = ACTIONS(1548), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1548), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1548), - [sym_preproc_directive] = ACTIONS(1548), - [anon_sym_LPAREN2] = ACTIONS(1526), + [133] = { + [sym_declaration] = STATE(130), + [sym_type_definition] = STATE(130), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5918), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(991), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_compound_statement] = STATE(130), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(130), + [sym_labeled_statement] = STATE(130), + [sym_expression_statement] = STATE(130), + [sym_if_statement] = STATE(130), + [sym_switch_statement] = STATE(130), + [sym_while_statement] = STATE(130), + [sym_do_statement] = STATE(130), + [sym_for_statement] = STATE(130), + [sym_return_statement] = STATE(130), + [sym_break_statement] = STATE(130), + [sym_continue_statement] = STATE(130), + [sym_goto_statement] = STATE(130), + [sym_seh_try_statement] = STATE(130), + [sym_seh_leave_statement] = STATE(130), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(130), + [sym_co_return_statement] = STATE(130), + [sym_co_yield_statement] = STATE(130), + [sym_throw_statement] = STATE(130), + [sym_try_statement] = STATE(130), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6657), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_case_statement_repeat1] = STATE(130), + [sym_identifier] = ACTIONS(1923), + [aux_sym_preproc_include_token1] = ACTIONS(1536), + [aux_sym_preproc_def_token1] = ACTIONS(1536), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [aux_sym_preproc_if_token1] = ACTIONS(1536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1536), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1536), + [sym_preproc_directive] = ACTIONS(1536), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP_AMP] = ACTIONS(1550), - [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym___extension__] = ACTIONS(996), - [anon_sym_typedef] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP_AMP] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(1548), - [anon_sym___cdecl] = ACTIONS(1548), - [anon_sym___clrcall] = ACTIONS(1548), - [anon_sym___stdcall] = ACTIONS(1548), - [anon_sym___fastcall] = ACTIONS(1548), - [anon_sym___thiscall] = ACTIONS(1548), - [anon_sym___vectorcall] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym___based] = ACTIONS(1536), + [anon_sym___cdecl] = ACTIONS(1536), + [anon_sym___clrcall] = ACTIONS(1536), + [anon_sym___stdcall] = ACTIONS(1536), + [anon_sym___fastcall] = ACTIONS(1536), + [anon_sym___thiscall] = ACTIONS(1536), + [anon_sym___vectorcall] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(860), + [anon_sym_RBRACE] = ACTIONS(1538), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -80678,20 +71250,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(71), [anon_sym_struct] = ACTIONS(73), [anon_sym_union] = ACTIONS(75), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_else] = ACTIONS(1548), - [anon_sym_switch] = ACTIONS(1008), - [anon_sym_case] = ACTIONS(1548), - [anon_sym_default] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1014), - [anon_sym_do] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_break] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_goto] = ACTIONS(1026), - [anon_sym___try] = ACTIONS(1028), - [anon_sym___leave] = ACTIONS(1030), + [anon_sym_if] = ACTIONS(203), + [anon_sym_else] = ACTIONS(1536), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(1536), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -80726,19 +71298,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1548), + [anon_sym_explicit] = ACTIONS(1536), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_operator] = ACTIONS(1548), - [anon_sym_try] = ACTIONS(1034), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_operator] = ACTIONS(1536), + [anon_sym_try] = ACTIONS(233), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(1036), - [anon_sym_namespace] = ACTIONS(1548), - [anon_sym_using] = ACTIONS(1548), - [anon_sym_static_assert] = ACTIONS(1548), - [anon_sym_concept] = ACTIONS(1548), - [anon_sym_co_return] = ACTIONS(1046), - [anon_sym_co_yield] = ACTIONS(1048), + [anon_sym_throw] = ACTIONS(235), + [anon_sym_namespace] = ACTIONS(1536), + [anon_sym_using] = ACTIONS(1536), + [anon_sym_static_assert] = ACTIONS(1536), + [anon_sym_concept] = ACTIONS(1536), + [anon_sym_co_return] = ACTIONS(245), + [anon_sym_co_yield] = ACTIONS(247), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -80751,359 +71323,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [133] = { - [sym_declaration] = STATE(133), - [sym_type_definition] = STATE(133), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6391), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(1011), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_compound_statement] = STATE(133), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(133), - [sym_labeled_statement] = STATE(133), - [sym_expression_statement] = STATE(133), - [sym_if_statement] = STATE(133), - [sym_switch_statement] = STATE(133), - [sym_while_statement] = STATE(133), - [sym_do_statement] = STATE(133), - [sym_for_statement] = STATE(133), - [sym_return_statement] = STATE(133), - [sym_break_statement] = STATE(133), - [sym_continue_statement] = STATE(133), - [sym_goto_statement] = STATE(133), - [sym_seh_try_statement] = STATE(133), - [sym_seh_leave_statement] = STATE(133), - [sym_expression] = STATE(5777), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9682), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(133), - [sym_co_return_statement] = STATE(133), - [sym_co_yield_statement] = STATE(133), - [sym_throw_statement] = STATE(133), - [sym_try_statement] = STATE(133), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7078), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_case_statement_repeat1] = STATE(133), - [ts_builtin_sym_end] = ACTIONS(1572), - [sym_identifier] = ACTIONS(1811), - [aux_sym_preproc_include_token1] = ACTIONS(1555), - [aux_sym_preproc_def_token1] = ACTIONS(1555), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1557), - [aux_sym_preproc_if_token1] = ACTIONS(1555), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1555), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1555), - [sym_preproc_directive] = ACTIONS(1555), - [anon_sym_LPAREN2] = ACTIONS(1560), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1566), - [anon_sym_PLUS] = ACTIONS(1566), - [anon_sym_STAR] = ACTIONS(1569), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1574), - [anon_sym_SEMI] = ACTIONS(1814), - [anon_sym___extension__] = ACTIONS(1817), - [anon_sym_typedef] = ACTIONS(1820), - [anon_sym_extern] = ACTIONS(1586), - [anon_sym___attribute__] = ACTIONS(1589), - [anon_sym_COLON_COLON] = ACTIONS(1592), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1595), - [anon_sym___declspec] = ACTIONS(1598), - [anon_sym___based] = ACTIONS(1555), - [anon_sym___cdecl] = ACTIONS(1555), - [anon_sym___clrcall] = ACTIONS(1555), - [anon_sym___stdcall] = ACTIONS(1555), - [anon_sym___fastcall] = ACTIONS(1555), - [anon_sym___thiscall] = ACTIONS(1555), - [anon_sym___vectorcall] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1823), - [anon_sym_signed] = ACTIONS(1604), - [anon_sym_unsigned] = ACTIONS(1604), - [anon_sym_long] = ACTIONS(1604), - [anon_sym_short] = ACTIONS(1604), - [anon_sym_LBRACK] = ACTIONS(1607), - [anon_sym_static] = ACTIONS(1586), - [anon_sym_register] = ACTIONS(1586), - [anon_sym_inline] = ACTIONS(1586), - [anon_sym___inline] = ACTIONS(1586), - [anon_sym___inline__] = ACTIONS(1586), - [anon_sym___forceinline] = ACTIONS(1586), - [anon_sym_thread_local] = ACTIONS(1586), - [anon_sym___thread] = ACTIONS(1586), - [anon_sym_const] = ACTIONS(1610), - [anon_sym_constexpr] = ACTIONS(1610), - [anon_sym_volatile] = ACTIONS(1610), - [anon_sym_restrict] = ACTIONS(1610), - [anon_sym___restrict__] = ACTIONS(1610), - [anon_sym__Atomic] = ACTIONS(1610), - [anon_sym__Noreturn] = ACTIONS(1610), - [anon_sym_noreturn] = ACTIONS(1610), - [anon_sym_mutable] = ACTIONS(1610), - [anon_sym_constinit] = ACTIONS(1610), - [anon_sym_consteval] = ACTIONS(1610), - [sym_primitive_type] = ACTIONS(1613), - [anon_sym_enum] = ACTIONS(1616), - [anon_sym_class] = ACTIONS(1619), - [anon_sym_struct] = ACTIONS(1622), - [anon_sym_union] = ACTIONS(1625), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1555), - [anon_sym_switch] = ACTIONS(1829), - [anon_sym_case] = ACTIONS(1555), - [anon_sym_default] = ACTIONS(1555), - [anon_sym_while] = ACTIONS(1832), - [anon_sym_do] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1838), - [anon_sym_return] = ACTIONS(1841), - [anon_sym_break] = ACTIONS(1844), - [anon_sym_continue] = ACTIONS(1847), - [anon_sym_goto] = ACTIONS(1850), - [anon_sym___try] = ACTIONS(1853), - [anon_sym___leave] = ACTIONS(1856), - [anon_sym_not] = ACTIONS(1566), - [anon_sym_compl] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1661), - [anon_sym_PLUS_PLUS] = ACTIONS(1661), - [anon_sym_sizeof] = ACTIONS(1664), - [anon_sym___alignof__] = ACTIONS(1667), - [anon_sym___alignof] = ACTIONS(1667), - [anon_sym__alignof] = ACTIONS(1667), - [anon_sym_alignof] = ACTIONS(1667), - [anon_sym__Alignof] = ACTIONS(1667), - [anon_sym_offsetof] = ACTIONS(1670), - [anon_sym__Generic] = ACTIONS(1673), - [anon_sym_asm] = ACTIONS(1676), - [anon_sym___asm__] = ACTIONS(1676), - [sym_number_literal] = ACTIONS(1679), - [anon_sym_L_SQUOTE] = ACTIONS(1682), - [anon_sym_u_SQUOTE] = ACTIONS(1682), - [anon_sym_U_SQUOTE] = ACTIONS(1682), - [anon_sym_u8_SQUOTE] = ACTIONS(1682), - [anon_sym_SQUOTE] = ACTIONS(1682), - [anon_sym_L_DQUOTE] = ACTIONS(1685), - [anon_sym_u_DQUOTE] = ACTIONS(1685), - [anon_sym_U_DQUOTE] = ACTIONS(1685), - [anon_sym_u8_DQUOTE] = ACTIONS(1685), - [anon_sym_DQUOTE] = ACTIONS(1685), - [sym_true] = ACTIONS(1688), - [sym_false] = ACTIONS(1688), - [anon_sym_NULL] = ACTIONS(1691), - [anon_sym_nullptr] = ACTIONS(1691), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1694), - [anon_sym_decltype] = ACTIONS(1697), - [anon_sym_virtual] = ACTIONS(1700), - [anon_sym_alignas] = ACTIONS(1703), - [anon_sym_explicit] = ACTIONS(1555), - [anon_sym_typename] = ACTIONS(1706), - [anon_sym_template] = ACTIONS(1709), - [anon_sym_operator] = ACTIONS(1555), - [anon_sym_try] = ACTIONS(1859), - [anon_sym_delete] = ACTIONS(1715), - [anon_sym_throw] = ACTIONS(1862), - [anon_sym_namespace] = ACTIONS(1555), - [anon_sym_using] = ACTIONS(1555), - [anon_sym_static_assert] = ACTIONS(1555), - [anon_sym_concept] = ACTIONS(1555), - [anon_sym_co_return] = ACTIONS(1865), - [anon_sym_co_yield] = ACTIONS(1868), - [anon_sym_R_DQUOTE] = ACTIONS(1727), - [anon_sym_LR_DQUOTE] = ACTIONS(1727), - [anon_sym_uR_DQUOTE] = ACTIONS(1727), - [anon_sym_UR_DQUOTE] = ACTIONS(1727), - [anon_sym_u8R_DQUOTE] = ACTIONS(1727), - [anon_sym_co_await] = ACTIONS(1730), - [anon_sym_new] = ACTIONS(1733), - [anon_sym_requires] = ACTIONS(1736), - [sym_this] = ACTIONS(1688), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1739), - [sym_semgrep_named_ellipsis] = ACTIONS(1742), - }, [134] = { - [sym_declaration] = STATE(133), - [sym_type_definition] = STATE(133), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6391), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(1011), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_compound_statement] = STATE(133), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(133), - [sym_labeled_statement] = STATE(133), - [sym_expression_statement] = STATE(133), - [sym_if_statement] = STATE(133), - [sym_switch_statement] = STATE(133), - [sym_while_statement] = STATE(133), - [sym_do_statement] = STATE(133), - [sym_for_statement] = STATE(133), - [sym_return_statement] = STATE(133), - [sym_break_statement] = STATE(133), - [sym_continue_statement] = STATE(133), - [sym_goto_statement] = STATE(133), - [sym_seh_try_statement] = STATE(133), - [sym_seh_leave_statement] = STATE(133), - [sym_expression] = STATE(5777), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9682), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(133), - [sym_co_return_statement] = STATE(133), - [sym_co_yield_statement] = STATE(133), - [sym_throw_statement] = STATE(133), - [sym_try_statement] = STATE(133), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7078), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_case_statement_repeat1] = STATE(133), - [ts_builtin_sym_end] = ACTIONS(1550), - [sym_identifier] = ACTIONS(1871), - [aux_sym_preproc_include_token1] = ACTIONS(1548), - [aux_sym_preproc_def_token1] = ACTIONS(1548), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [aux_sym_preproc_if_token1] = ACTIONS(1548), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1548), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1548), - [sym_preproc_directive] = ACTIONS(1548), - [anon_sym_LPAREN2] = ACTIONS(1526), + [sym_declaration] = STATE(138), + [sym_type_definition] = STATE(138), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5921), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(991), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_compound_statement] = STATE(138), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(138), + [sym_labeled_statement] = STATE(138), + [sym_expression_statement] = STATE(138), + [sym_if_statement] = STATE(138), + [sym_switch_statement] = STATE(138), + [sym_while_statement] = STATE(138), + [sym_do_statement] = STATE(138), + [sym_for_statement] = STATE(138), + [sym_return_statement] = STATE(138), + [sym_break_statement] = STATE(138), + [sym_continue_statement] = STATE(138), + [sym_goto_statement] = STATE(138), + [sym_seh_try_statement] = STATE(138), + [sym_seh_leave_statement] = STATE(138), + [sym_expression] = STATE(5204), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9572), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(138), + [sym_co_return_statement] = STATE(138), + [sym_co_yield_statement] = STATE(138), + [sym_throw_statement] = STATE(138), + [sym_try_statement] = STATE(138), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6657), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(199), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_case_statement_repeat1] = STATE(138), + [ts_builtin_sym_end] = ACTIONS(1546), + [sym_identifier] = ACTIONS(1925), + [aux_sym_preproc_include_token1] = ACTIONS(1544), + [aux_sym_preproc_def_token1] = ACTIONS(1544), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [aux_sym_preproc_if_token1] = ACTIONS(1544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1544), + [sym_preproc_directive] = ACTIONS(1544), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP_AMP] = ACTIONS(1550), - [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP_AMP] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1927), [anon_sym___extension__] = ACTIONS(37), [anon_sym_typedef] = ACTIONS(39), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(1548), - [anon_sym___cdecl] = ACTIONS(1548), - [anon_sym___clrcall] = ACTIONS(1548), - [anon_sym___stdcall] = ACTIONS(1548), - [anon_sym___fastcall] = ACTIONS(1548), - [anon_sym___thiscall] = ACTIONS(1548), - [anon_sym___vectorcall] = ACTIONS(1548), + [anon_sym___based] = ACTIONS(1544), + [anon_sym___cdecl] = ACTIONS(1544), + [anon_sym___clrcall] = ACTIONS(1544), + [anon_sym___stdcall] = ACTIONS(1544), + [anon_sym___fastcall] = ACTIONS(1544), + [anon_sym___thiscall] = ACTIONS(1544), + [anon_sym___vectorcall] = ACTIONS(1544), [anon_sym_LBRACE] = ACTIONS(55), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -81129,10 +71476,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(73), [anon_sym_union] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), - [anon_sym_else] = ACTIONS(1548), + [anon_sym_else] = ACTIONS(1544), [anon_sym_switch] = ACTIONS(79), - [anon_sym_case] = ACTIONS(1548), - [anon_sym_default] = ACTIONS(1548), + [anon_sym_case] = ACTIONS(1544), + [anon_sym_default] = ACTIONS(1544), [anon_sym_while] = ACTIONS(85), [anon_sym_do] = ACTIONS(87), [anon_sym_for] = ACTIONS(89), @@ -81140,8 +71487,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(93), [anon_sym_continue] = ACTIONS(95), [anon_sym_goto] = ACTIONS(97), - [anon_sym___try] = ACTIONS(1875), - [anon_sym___leave] = ACTIONS(1877), + [anon_sym___try] = ACTIONS(1929), + [anon_sym___leave] = ACTIONS(1931), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -81176,17 +71523,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1548), + [anon_sym_explicit] = ACTIONS(1544), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_operator] = ACTIONS(1548), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_operator] = ACTIONS(1544), [anon_sym_try] = ACTIONS(137), [anon_sym_delete] = ACTIONS(139), [anon_sym_throw] = ACTIONS(141), - [anon_sym_namespace] = ACTIONS(1548), - [anon_sym_using] = ACTIONS(1548), - [anon_sym_static_assert] = ACTIONS(1548), - [anon_sym_concept] = ACTIONS(1548), + [anon_sym_namespace] = ACTIONS(1544), + [anon_sym_using] = ACTIONS(1544), + [anon_sym_static_assert] = ACTIONS(1544), + [anon_sym_concept] = ACTIONS(1544), [anon_sym_co_return] = ACTIONS(151), [anon_sym_co_yield] = ACTIONS(153), [anon_sym_R_DQUOTE] = ACTIONS(155), @@ -81202,583 +71549,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [135] = { - [sym_declaration] = STATE(135), - [sym_type_definition] = STATE(135), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6413), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(1011), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_compound_statement] = STATE(135), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(135), - [sym_labeled_statement] = STATE(135), - [sym_expression_statement] = STATE(135), - [sym_if_statement] = STATE(135), - [sym_switch_statement] = STATE(135), - [sym_while_statement] = STATE(135), - [sym_do_statement] = STATE(135), - [sym_for_statement] = STATE(135), - [sym_return_statement] = STATE(135), - [sym_break_statement] = STATE(135), - [sym_continue_statement] = STATE(135), - [sym_goto_statement] = STATE(135), - [sym_seh_try_statement] = STATE(135), - [sym_seh_leave_statement] = STATE(135), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(135), - [sym_co_return_statement] = STATE(135), - [sym_co_yield_statement] = STATE(135), - [sym_throw_statement] = STATE(135), - [sym_try_statement] = STATE(135), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7078), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_case_statement_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(1879), - [aux_sym_preproc_include_token1] = ACTIONS(1555), - [aux_sym_preproc_def_token1] = ACTIONS(1555), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1557), - [aux_sym_preproc_if_token1] = ACTIONS(1555), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1555), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1555), - [sym_preproc_directive] = ACTIONS(1555), - [anon_sym_LPAREN2] = ACTIONS(1560), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1566), - [anon_sym_PLUS] = ACTIONS(1566), - [anon_sym_STAR] = ACTIONS(1569), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1574), - [anon_sym_SEMI] = ACTIONS(1882), - [anon_sym___extension__] = ACTIONS(1885), - [anon_sym_typedef] = ACTIONS(1888), - [anon_sym_extern] = ACTIONS(1586), - [anon_sym___attribute__] = ACTIONS(1589), - [anon_sym_COLON_COLON] = ACTIONS(1592), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1595), - [anon_sym___declspec] = ACTIONS(1598), - [anon_sym___based] = ACTIONS(1555), - [anon_sym___cdecl] = ACTIONS(1555), - [anon_sym___clrcall] = ACTIONS(1555), - [anon_sym___stdcall] = ACTIONS(1555), - [anon_sym___fastcall] = ACTIONS(1555), - [anon_sym___thiscall] = ACTIONS(1555), - [anon_sym___vectorcall] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1891), - [anon_sym_RBRACE] = ACTIONS(1572), - [anon_sym_signed] = ACTIONS(1604), - [anon_sym_unsigned] = ACTIONS(1604), - [anon_sym_long] = ACTIONS(1604), - [anon_sym_short] = ACTIONS(1604), - [anon_sym_LBRACK] = ACTIONS(1607), - [anon_sym_static] = ACTIONS(1586), - [anon_sym_register] = ACTIONS(1586), - [anon_sym_inline] = ACTIONS(1586), - [anon_sym___inline] = ACTIONS(1586), - [anon_sym___inline__] = ACTIONS(1586), - [anon_sym___forceinline] = ACTIONS(1586), - [anon_sym_thread_local] = ACTIONS(1586), - [anon_sym___thread] = ACTIONS(1586), - [anon_sym_const] = ACTIONS(1610), - [anon_sym_constexpr] = ACTIONS(1610), - [anon_sym_volatile] = ACTIONS(1610), - [anon_sym_restrict] = ACTIONS(1610), - [anon_sym___restrict__] = ACTIONS(1610), - [anon_sym__Atomic] = ACTIONS(1610), - [anon_sym__Noreturn] = ACTIONS(1610), - [anon_sym_noreturn] = ACTIONS(1610), - [anon_sym_mutable] = ACTIONS(1610), - [anon_sym_constinit] = ACTIONS(1610), - [anon_sym_consteval] = ACTIONS(1610), - [sym_primitive_type] = ACTIONS(1613), - [anon_sym_enum] = ACTIONS(1616), - [anon_sym_class] = ACTIONS(1619), - [anon_sym_struct] = ACTIONS(1622), - [anon_sym_union] = ACTIONS(1625), - [anon_sym_if] = ACTIONS(1894), - [anon_sym_else] = ACTIONS(1555), - [anon_sym_switch] = ACTIONS(1897), - [anon_sym_case] = ACTIONS(1555), - [anon_sym_default] = ACTIONS(1555), - [anon_sym_while] = ACTIONS(1900), - [anon_sym_do] = ACTIONS(1903), - [anon_sym_for] = ACTIONS(1906), - [anon_sym_return] = ACTIONS(1909), - [anon_sym_break] = ACTIONS(1912), - [anon_sym_continue] = ACTIONS(1915), - [anon_sym_goto] = ACTIONS(1918), - [anon_sym___try] = ACTIONS(1921), - [anon_sym___leave] = ACTIONS(1924), - [anon_sym_not] = ACTIONS(1566), - [anon_sym_compl] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1661), - [anon_sym_PLUS_PLUS] = ACTIONS(1661), - [anon_sym_sizeof] = ACTIONS(1664), - [anon_sym___alignof__] = ACTIONS(1667), - [anon_sym___alignof] = ACTIONS(1667), - [anon_sym__alignof] = ACTIONS(1667), - [anon_sym_alignof] = ACTIONS(1667), - [anon_sym__Alignof] = ACTIONS(1667), - [anon_sym_offsetof] = ACTIONS(1670), - [anon_sym__Generic] = ACTIONS(1673), - [anon_sym_asm] = ACTIONS(1676), - [anon_sym___asm__] = ACTIONS(1676), - [sym_number_literal] = ACTIONS(1679), - [anon_sym_L_SQUOTE] = ACTIONS(1682), - [anon_sym_u_SQUOTE] = ACTIONS(1682), - [anon_sym_U_SQUOTE] = ACTIONS(1682), - [anon_sym_u8_SQUOTE] = ACTIONS(1682), - [anon_sym_SQUOTE] = ACTIONS(1682), - [anon_sym_L_DQUOTE] = ACTIONS(1685), - [anon_sym_u_DQUOTE] = ACTIONS(1685), - [anon_sym_U_DQUOTE] = ACTIONS(1685), - [anon_sym_u8_DQUOTE] = ACTIONS(1685), - [anon_sym_DQUOTE] = ACTIONS(1685), - [sym_true] = ACTIONS(1688), - [sym_false] = ACTIONS(1688), - [anon_sym_NULL] = ACTIONS(1691), - [anon_sym_nullptr] = ACTIONS(1691), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1694), - [anon_sym_decltype] = ACTIONS(1697), - [anon_sym_virtual] = ACTIONS(1700), - [anon_sym_alignas] = ACTIONS(1703), - [anon_sym_explicit] = ACTIONS(1555), - [anon_sym_typename] = ACTIONS(1706), - [anon_sym_template] = ACTIONS(1709), - [anon_sym_operator] = ACTIONS(1555), - [anon_sym_try] = ACTIONS(1927), - [anon_sym_delete] = ACTIONS(1715), - [anon_sym_throw] = ACTIONS(1930), - [anon_sym_namespace] = ACTIONS(1555), - [anon_sym_using] = ACTIONS(1555), - [anon_sym_static_assert] = ACTIONS(1555), - [anon_sym_concept] = ACTIONS(1555), - [anon_sym_co_return] = ACTIONS(1933), - [anon_sym_co_yield] = ACTIONS(1936), - [anon_sym_R_DQUOTE] = ACTIONS(1727), - [anon_sym_LR_DQUOTE] = ACTIONS(1727), - [anon_sym_uR_DQUOTE] = ACTIONS(1727), - [anon_sym_UR_DQUOTE] = ACTIONS(1727), - [anon_sym_u8R_DQUOTE] = ACTIONS(1727), - [anon_sym_co_await] = ACTIONS(1730), - [anon_sym_new] = ACTIONS(1733), - [anon_sym_requires] = ACTIONS(1736), - [sym_this] = ACTIONS(1688), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1739), - [sym_semgrep_named_ellipsis] = ACTIONS(1742), - }, - [136] = { - [sym_declaration] = STATE(136), - [sym_type_definition] = STATE(136), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6401), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(1011), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_compound_statement] = STATE(136), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(136), - [sym_labeled_statement] = STATE(136), - [sym_expression_statement] = STATE(136), - [sym_if_statement] = STATE(136), - [sym_switch_statement] = STATE(136), - [sym_while_statement] = STATE(136), - [sym_do_statement] = STATE(136), - [sym_for_statement] = STATE(136), - [sym_return_statement] = STATE(136), - [sym_break_statement] = STATE(136), - [sym_continue_statement] = STATE(136), - [sym_goto_statement] = STATE(136), - [sym_seh_try_statement] = STATE(136), - [sym_seh_leave_statement] = STATE(136), - [sym_expression] = STATE(5819), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9710), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(136), - [sym_co_return_statement] = STATE(136), - [sym_co_yield_statement] = STATE(136), - [sym_throw_statement] = STATE(136), - [sym_try_statement] = STATE(136), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7078), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(226), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_case_statement_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(1939), - [aux_sym_preproc_include_token1] = ACTIONS(1555), - [aux_sym_preproc_def_token1] = ACTIONS(1555), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1557), - [aux_sym_preproc_if_token1] = ACTIONS(1555), - [aux_sym_preproc_if_token2] = ACTIONS(1555), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1555), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1555), - [sym_preproc_directive] = ACTIONS(1555), - [anon_sym_LPAREN2] = ACTIONS(1560), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1566), - [anon_sym_PLUS] = ACTIONS(1566), - [anon_sym_STAR] = ACTIONS(1569), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1574), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym___extension__] = ACTIONS(1945), - [anon_sym_typedef] = ACTIONS(1948), - [anon_sym_extern] = ACTIONS(1586), - [anon_sym___attribute__] = ACTIONS(1589), - [anon_sym_COLON_COLON] = ACTIONS(1592), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1595), - [anon_sym___declspec] = ACTIONS(1598), - [anon_sym___based] = ACTIONS(1555), - [anon_sym___cdecl] = ACTIONS(1555), - [anon_sym___clrcall] = ACTIONS(1555), - [anon_sym___stdcall] = ACTIONS(1555), - [anon_sym___fastcall] = ACTIONS(1555), - [anon_sym___thiscall] = ACTIONS(1555), - [anon_sym___vectorcall] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1604), - [anon_sym_unsigned] = ACTIONS(1604), - [anon_sym_long] = ACTIONS(1604), - [anon_sym_short] = ACTIONS(1604), - [anon_sym_LBRACK] = ACTIONS(1607), - [anon_sym_static] = ACTIONS(1586), - [anon_sym_register] = ACTIONS(1586), - [anon_sym_inline] = ACTIONS(1586), - [anon_sym___inline] = ACTIONS(1586), - [anon_sym___inline__] = ACTIONS(1586), - [anon_sym___forceinline] = ACTIONS(1586), - [anon_sym_thread_local] = ACTIONS(1586), - [anon_sym___thread] = ACTIONS(1586), - [anon_sym_const] = ACTIONS(1610), - [anon_sym_constexpr] = ACTIONS(1610), - [anon_sym_volatile] = ACTIONS(1610), - [anon_sym_restrict] = ACTIONS(1610), - [anon_sym___restrict__] = ACTIONS(1610), - [anon_sym__Atomic] = ACTIONS(1610), - [anon_sym__Noreturn] = ACTIONS(1610), - [anon_sym_noreturn] = ACTIONS(1610), - [anon_sym_mutable] = ACTIONS(1610), - [anon_sym_constinit] = ACTIONS(1610), - [anon_sym_consteval] = ACTIONS(1610), - [sym_primitive_type] = ACTIONS(1613), - [anon_sym_enum] = ACTIONS(1616), - [anon_sym_class] = ACTIONS(1619), - [anon_sym_struct] = ACTIONS(1622), - [anon_sym_union] = ACTIONS(1625), - [anon_sym_if] = ACTIONS(1954), - [anon_sym_else] = ACTIONS(1555), - [anon_sym_switch] = ACTIONS(1957), - [anon_sym_case] = ACTIONS(1555), - [anon_sym_default] = ACTIONS(1555), - [anon_sym_while] = ACTIONS(1960), - [anon_sym_do] = ACTIONS(1963), - [anon_sym_for] = ACTIONS(1966), - [anon_sym_return] = ACTIONS(1969), - [anon_sym_break] = ACTIONS(1972), - [anon_sym_continue] = ACTIONS(1975), - [anon_sym_goto] = ACTIONS(1978), - [anon_sym___try] = ACTIONS(1981), - [anon_sym___leave] = ACTIONS(1984), - [anon_sym_not] = ACTIONS(1566), - [anon_sym_compl] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1661), - [anon_sym_PLUS_PLUS] = ACTIONS(1661), - [anon_sym_sizeof] = ACTIONS(1664), - [anon_sym___alignof__] = ACTIONS(1667), - [anon_sym___alignof] = ACTIONS(1667), - [anon_sym__alignof] = ACTIONS(1667), - [anon_sym_alignof] = ACTIONS(1667), - [anon_sym__Alignof] = ACTIONS(1667), - [anon_sym_offsetof] = ACTIONS(1670), - [anon_sym__Generic] = ACTIONS(1673), - [anon_sym_asm] = ACTIONS(1676), - [anon_sym___asm__] = ACTIONS(1676), - [sym_number_literal] = ACTIONS(1679), - [anon_sym_L_SQUOTE] = ACTIONS(1682), - [anon_sym_u_SQUOTE] = ACTIONS(1682), - [anon_sym_U_SQUOTE] = ACTIONS(1682), - [anon_sym_u8_SQUOTE] = ACTIONS(1682), - [anon_sym_SQUOTE] = ACTIONS(1682), - [anon_sym_L_DQUOTE] = ACTIONS(1685), - [anon_sym_u_DQUOTE] = ACTIONS(1685), - [anon_sym_U_DQUOTE] = ACTIONS(1685), - [anon_sym_u8_DQUOTE] = ACTIONS(1685), - [anon_sym_DQUOTE] = ACTIONS(1685), - [sym_true] = ACTIONS(1688), - [sym_false] = ACTIONS(1688), - [anon_sym_NULL] = ACTIONS(1691), - [anon_sym_nullptr] = ACTIONS(1691), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1694), - [anon_sym_decltype] = ACTIONS(1697), - [anon_sym_virtual] = ACTIONS(1700), - [anon_sym_alignas] = ACTIONS(1703), - [anon_sym_explicit] = ACTIONS(1555), - [anon_sym_typename] = ACTIONS(1706), - [anon_sym_template] = ACTIONS(1709), - [anon_sym_operator] = ACTIONS(1555), - [anon_sym_try] = ACTIONS(1987), - [anon_sym_delete] = ACTIONS(1715), - [anon_sym_throw] = ACTIONS(1990), - [anon_sym_namespace] = ACTIONS(1555), - [anon_sym_using] = ACTIONS(1555), - [anon_sym_static_assert] = ACTIONS(1555), - [anon_sym_concept] = ACTIONS(1555), - [anon_sym_co_return] = ACTIONS(1993), - [anon_sym_co_yield] = ACTIONS(1996), - [anon_sym_R_DQUOTE] = ACTIONS(1727), - [anon_sym_LR_DQUOTE] = ACTIONS(1727), - [anon_sym_uR_DQUOTE] = ACTIONS(1727), - [anon_sym_UR_DQUOTE] = ACTIONS(1727), - [anon_sym_u8R_DQUOTE] = ACTIONS(1727), - [anon_sym_co_await] = ACTIONS(1730), - [anon_sym_new] = ACTIONS(1733), - [anon_sym_requires] = ACTIONS(1736), - [sym_this] = ACTIONS(1688), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1739), - [sym_semgrep_named_ellipsis] = ACTIONS(1742), - }, - [137] = { - [sym_declaration] = STATE(142), - [sym_type_definition] = STATE(142), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6391), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(1011), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_compound_statement] = STATE(142), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(142), - [sym_labeled_statement] = STATE(142), - [sym_expression_statement] = STATE(142), - [sym_if_statement] = STATE(142), - [sym_switch_statement] = STATE(142), - [sym_while_statement] = STATE(142), - [sym_do_statement] = STATE(142), - [sym_for_statement] = STATE(142), - [sym_return_statement] = STATE(142), - [sym_break_statement] = STATE(142), - [sym_continue_statement] = STATE(142), - [sym_goto_statement] = STATE(142), - [sym_seh_try_statement] = STATE(142), - [sym_seh_leave_statement] = STATE(142), - [sym_expression] = STATE(5777), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9682), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(142), - [sym_co_return_statement] = STATE(142), - [sym_co_yield_statement] = STATE(142), - [sym_throw_statement] = STATE(142), - [sym_try_statement] = STATE(142), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7078), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_case_statement_repeat1] = STATE(142), - [ts_builtin_sym_end] = ACTIONS(1530), - [sym_identifier] = ACTIONS(1871), - [aux_sym_preproc_include_token1] = ACTIONS(1522), - [aux_sym_preproc_def_token1] = ACTIONS(1522), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [aux_sym_preproc_if_token1] = ACTIONS(1522), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1522), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1522), - [sym_preproc_directive] = ACTIONS(1522), - [anon_sym_LPAREN2] = ACTIONS(1526), + [sym_declaration] = STATE(137), + [sym_type_definition] = STATE(137), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5921), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(991), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_compound_statement] = STATE(137), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(137), + [sym_labeled_statement] = STATE(137), + [sym_expression_statement] = STATE(137), + [sym_if_statement] = STATE(137), + [sym_switch_statement] = STATE(137), + [sym_while_statement] = STATE(137), + [sym_do_statement] = STATE(137), + [sym_for_statement] = STATE(137), + [sym_return_statement] = STATE(137), + [sym_break_statement] = STATE(137), + [sym_continue_statement] = STATE(137), + [sym_goto_statement] = STATE(137), + [sym_seh_try_statement] = STATE(137), + [sym_seh_leave_statement] = STATE(137), + [sym_expression] = STATE(5204), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9572), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(137), + [sym_co_return_statement] = STATE(137), + [sym_co_yield_statement] = STATE(137), + [sym_throw_statement] = STATE(137), + [sym_try_statement] = STATE(137), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6657), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(199), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_case_statement_repeat1] = STATE(137), + [ts_builtin_sym_end] = ACTIONS(1542), + [sym_identifier] = ACTIONS(1925), + [aux_sym_preproc_include_token1] = ACTIONS(1540), + [aux_sym_preproc_def_token1] = ACTIONS(1540), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [aux_sym_preproc_if_token1] = ACTIONS(1540), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1540), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1540), + [sym_preproc_directive] = ACTIONS(1540), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP_AMP] = ACTIONS(1530), - [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP_AMP] = ACTIONS(1542), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1927), [anon_sym___extension__] = ACTIONS(37), [anon_sym_typedef] = ACTIONS(39), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(1522), - [anon_sym___cdecl] = ACTIONS(1522), - [anon_sym___clrcall] = ACTIONS(1522), - [anon_sym___stdcall] = ACTIONS(1522), - [anon_sym___fastcall] = ACTIONS(1522), - [anon_sym___thiscall] = ACTIONS(1522), - [anon_sym___vectorcall] = ACTIONS(1522), + [anon_sym___based] = ACTIONS(1540), + [anon_sym___cdecl] = ACTIONS(1540), + [anon_sym___clrcall] = ACTIONS(1540), + [anon_sym___stdcall] = ACTIONS(1540), + [anon_sym___fastcall] = ACTIONS(1540), + [anon_sym___thiscall] = ACTIONS(1540), + [anon_sym___vectorcall] = ACTIONS(1540), [anon_sym_LBRACE] = ACTIONS(55), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -81804,10 +71701,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(73), [anon_sym_union] = ACTIONS(75), [anon_sym_if] = ACTIONS(77), - [anon_sym_else] = ACTIONS(1522), + [anon_sym_else] = ACTIONS(1540), [anon_sym_switch] = ACTIONS(79), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1522), + [anon_sym_case] = ACTIONS(1540), + [anon_sym_default] = ACTIONS(1540), [anon_sym_while] = ACTIONS(85), [anon_sym_do] = ACTIONS(87), [anon_sym_for] = ACTIONS(89), @@ -81815,8 +71712,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(93), [anon_sym_continue] = ACTIONS(95), [anon_sym_goto] = ACTIONS(97), - [anon_sym___try] = ACTIONS(1875), - [anon_sym___leave] = ACTIONS(1877), + [anon_sym___try] = ACTIONS(1929), + [anon_sym___leave] = ACTIONS(1931), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -81851,17 +71748,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1522), + [anon_sym_explicit] = ACTIONS(1540), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_operator] = ACTIONS(1522), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_operator] = ACTIONS(1540), [anon_sym_try] = ACTIONS(137), [anon_sym_delete] = ACTIONS(139), [anon_sym_throw] = ACTIONS(141), - [anon_sym_namespace] = ACTIONS(1522), - [anon_sym_using] = ACTIONS(1522), - [anon_sym_static_assert] = ACTIONS(1522), - [anon_sym_concept] = ACTIONS(1522), + [anon_sym_namespace] = ACTIONS(1540), + [anon_sym_using] = ACTIONS(1540), + [anon_sym_static_assert] = ACTIONS(1540), + [anon_sym_concept] = ACTIONS(1540), [anon_sym_co_return] = ACTIONS(151), [anon_sym_co_yield] = ACTIONS(153), [anon_sym_R_DQUOTE] = ACTIONS(155), @@ -81876,134 +71773,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [138] = { - [sym_declaration] = STATE(132), - [sym_type_definition] = STATE(132), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6401), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(1011), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_compound_statement] = STATE(132), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(132), - [sym_labeled_statement] = STATE(132), - [sym_expression_statement] = STATE(132), - [sym_if_statement] = STATE(132), - [sym_switch_statement] = STATE(132), - [sym_while_statement] = STATE(132), - [sym_do_statement] = STATE(132), - [sym_for_statement] = STATE(132), - [sym_return_statement] = STATE(132), - [sym_break_statement] = STATE(132), - [sym_continue_statement] = STATE(132), - [sym_goto_statement] = STATE(132), - [sym_seh_try_statement] = STATE(132), - [sym_seh_leave_statement] = STATE(132), - [sym_expression] = STATE(5819), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9710), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(132), - [sym_co_return_statement] = STATE(132), - [sym_co_yield_statement] = STATE(132), - [sym_throw_statement] = STATE(132), - [sym_try_statement] = STATE(132), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7078), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(226), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_case_statement_repeat1] = STATE(132), - [sym_identifier] = ACTIONS(1807), - [aux_sym_preproc_include_token1] = ACTIONS(1540), - [aux_sym_preproc_def_token1] = ACTIONS(1540), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [aux_sym_preproc_if_token1] = ACTIONS(1540), - [aux_sym_preproc_if_token2] = ACTIONS(1540), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1540), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1540), - [sym_preproc_directive] = ACTIONS(1540), - [anon_sym_LPAREN2] = ACTIONS(1526), + [136] = { + [sym_declaration] = STATE(135), + [sym_type_definition] = STATE(135), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5921), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(991), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_compound_statement] = STATE(135), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(135), + [sym_labeled_statement] = STATE(135), + [sym_expression_statement] = STATE(135), + [sym_if_statement] = STATE(135), + [sym_switch_statement] = STATE(135), + [sym_while_statement] = STATE(135), + [sym_do_statement] = STATE(135), + [sym_for_statement] = STATE(135), + [sym_return_statement] = STATE(135), + [sym_break_statement] = STATE(135), + [sym_continue_statement] = STATE(135), + [sym_goto_statement] = STATE(135), + [sym_seh_try_statement] = STATE(135), + [sym_seh_leave_statement] = STATE(135), + [sym_expression] = STATE(5204), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9572), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(135), + [sym_co_return_statement] = STATE(135), + [sym_co_yield_statement] = STATE(135), + [sym_throw_statement] = STATE(135), + [sym_try_statement] = STATE(135), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6657), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(199), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_case_statement_repeat1] = STATE(135), + [ts_builtin_sym_end] = ACTIONS(1538), + [sym_identifier] = ACTIONS(1925), + [aux_sym_preproc_include_token1] = ACTIONS(1536), + [aux_sym_preproc_def_token1] = ACTIONS(1536), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [aux_sym_preproc_if_token1] = ACTIONS(1536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1536), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1536), + [sym_preproc_directive] = ACTIONS(1536), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP_AMP] = ACTIONS(1542), - [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym___extension__] = ACTIONS(996), - [anon_sym_typedef] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP_AMP] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1927), + [anon_sym___extension__] = ACTIONS(37), + [anon_sym_typedef] = ACTIONS(39), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(1540), - [anon_sym___cdecl] = ACTIONS(1540), - [anon_sym___clrcall] = ACTIONS(1540), - [anon_sym___stdcall] = ACTIONS(1540), - [anon_sym___fastcall] = ACTIONS(1540), - [anon_sym___thiscall] = ACTIONS(1540), - [anon_sym___vectorcall] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym___based] = ACTIONS(1536), + [anon_sym___cdecl] = ACTIONS(1536), + [anon_sym___clrcall] = ACTIONS(1536), + [anon_sym___stdcall] = ACTIONS(1536), + [anon_sym___fastcall] = ACTIONS(1536), + [anon_sym___thiscall] = ACTIONS(1536), + [anon_sym___vectorcall] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(55), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -82028,20 +71925,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(71), [anon_sym_struct] = ACTIONS(73), [anon_sym_union] = ACTIONS(75), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_else] = ACTIONS(1540), - [anon_sym_switch] = ACTIONS(1008), - [anon_sym_case] = ACTIONS(1540), - [anon_sym_default] = ACTIONS(1540), - [anon_sym_while] = ACTIONS(1014), - [anon_sym_do] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_break] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_goto] = ACTIONS(1026), - [anon_sym___try] = ACTIONS(1028), - [anon_sym___leave] = ACTIONS(1030), + [anon_sym_if] = ACTIONS(77), + [anon_sym_else] = ACTIONS(1536), + [anon_sym_switch] = ACTIONS(79), + [anon_sym_case] = ACTIONS(1536), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_while] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_return] = ACTIONS(91), + [anon_sym_break] = ACTIONS(93), + [anon_sym_continue] = ACTIONS(95), + [anon_sym_goto] = ACTIONS(97), + [anon_sym___try] = ACTIONS(1929), + [anon_sym___leave] = ACTIONS(1931), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -82076,19 +71973,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1540), + [anon_sym_explicit] = ACTIONS(1536), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_operator] = ACTIONS(1540), - [anon_sym_try] = ACTIONS(1034), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_operator] = ACTIONS(1536), + [anon_sym_try] = ACTIONS(137), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(1036), - [anon_sym_namespace] = ACTIONS(1540), - [anon_sym_using] = ACTIONS(1540), - [anon_sym_static_assert] = ACTIONS(1540), - [anon_sym_concept] = ACTIONS(1540), - [anon_sym_co_return] = ACTIONS(1046), - [anon_sym_co_yield] = ACTIONS(1048), + [anon_sym_throw] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(1536), + [anon_sym_using] = ACTIONS(1536), + [anon_sym_static_assert] = ACTIONS(1536), + [anon_sym_concept] = ACTIONS(1536), + [anon_sym_co_return] = ACTIONS(151), + [anon_sym_co_yield] = ACTIONS(153), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -82101,134 +71998,359 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [139] = { - [sym_declaration] = STATE(140), - [sym_type_definition] = STATE(140), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6413), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(1011), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_compound_statement] = STATE(140), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(140), - [sym_labeled_statement] = STATE(140), - [sym_expression_statement] = STATE(140), - [sym_if_statement] = STATE(140), - [sym_switch_statement] = STATE(140), - [sym_while_statement] = STATE(140), - [sym_do_statement] = STATE(140), - [sym_for_statement] = STATE(140), - [sym_return_statement] = STATE(140), - [sym_break_statement] = STATE(140), - [sym_continue_statement] = STATE(140), - [sym_goto_statement] = STATE(140), - [sym_seh_try_statement] = STATE(140), - [sym_seh_leave_statement] = STATE(140), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(140), - [sym_co_return_statement] = STATE(140), - [sym_co_yield_statement] = STATE(140), - [sym_throw_statement] = STATE(140), - [sym_try_statement] = STATE(140), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7078), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_case_statement_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(1809), - [aux_sym_preproc_include_token1] = ACTIONS(1540), - [aux_sym_preproc_def_token1] = ACTIONS(1540), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [aux_sym_preproc_if_token1] = ACTIONS(1540), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1540), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1540), - [sym_preproc_directive] = ACTIONS(1540), - [anon_sym_LPAREN2] = ACTIONS(1526), + [137] = { + [sym_declaration] = STATE(137), + [sym_type_definition] = STATE(137), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5921), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(991), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_compound_statement] = STATE(137), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(137), + [sym_labeled_statement] = STATE(137), + [sym_expression_statement] = STATE(137), + [sym_if_statement] = STATE(137), + [sym_switch_statement] = STATE(137), + [sym_while_statement] = STATE(137), + [sym_do_statement] = STATE(137), + [sym_for_statement] = STATE(137), + [sym_return_statement] = STATE(137), + [sym_break_statement] = STATE(137), + [sym_continue_statement] = STATE(137), + [sym_goto_statement] = STATE(137), + [sym_seh_try_statement] = STATE(137), + [sym_seh_leave_statement] = STATE(137), + [sym_expression] = STATE(5204), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9572), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(137), + [sym_co_return_statement] = STATE(137), + [sym_co_yield_statement] = STATE(137), + [sym_throw_statement] = STATE(137), + [sym_try_statement] = STATE(137), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6657), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(199), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_case_statement_repeat1] = STATE(137), + [ts_builtin_sym_end] = ACTIONS(1568), + [sym_identifier] = ACTIONS(1933), + [aux_sym_preproc_include_token1] = ACTIONS(1551), + [aux_sym_preproc_def_token1] = ACTIONS(1551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1553), + [aux_sym_preproc_if_token1] = ACTIONS(1551), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1551), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1551), + [sym_preproc_directive] = ACTIONS(1551), + [anon_sym_LPAREN2] = ACTIONS(1556), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1565), + [anon_sym_AMP_AMP] = ACTIONS(1568), + [anon_sym_AMP] = ACTIONS(1570), + [anon_sym_SEMI] = ACTIONS(1936), + [anon_sym___extension__] = ACTIONS(1939), + [anon_sym_typedef] = ACTIONS(1942), + [anon_sym_extern] = ACTIONS(1582), + [anon_sym___attribute__] = ACTIONS(1585), + [anon_sym_COLON_COLON] = ACTIONS(1588), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1591), + [anon_sym___declspec] = ACTIONS(1594), + [anon_sym___based] = ACTIONS(1551), + [anon_sym___cdecl] = ACTIONS(1551), + [anon_sym___clrcall] = ACTIONS(1551), + [anon_sym___stdcall] = ACTIONS(1551), + [anon_sym___fastcall] = ACTIONS(1551), + [anon_sym___thiscall] = ACTIONS(1551), + [anon_sym___vectorcall] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1945), + [anon_sym_signed] = ACTIONS(1600), + [anon_sym_unsigned] = ACTIONS(1600), + [anon_sym_long] = ACTIONS(1600), + [anon_sym_short] = ACTIONS(1600), + [anon_sym_LBRACK] = ACTIONS(1603), + [anon_sym_static] = ACTIONS(1582), + [anon_sym_register] = ACTIONS(1582), + [anon_sym_inline] = ACTIONS(1582), + [anon_sym___inline] = ACTIONS(1582), + [anon_sym___inline__] = ACTIONS(1582), + [anon_sym___forceinline] = ACTIONS(1582), + [anon_sym_thread_local] = ACTIONS(1582), + [anon_sym___thread] = ACTIONS(1582), + [anon_sym_const] = ACTIONS(1606), + [anon_sym_constexpr] = ACTIONS(1606), + [anon_sym_volatile] = ACTIONS(1606), + [anon_sym_restrict] = ACTIONS(1606), + [anon_sym___restrict__] = ACTIONS(1606), + [anon_sym__Atomic] = ACTIONS(1606), + [anon_sym__Noreturn] = ACTIONS(1606), + [anon_sym_noreturn] = ACTIONS(1606), + [anon_sym_mutable] = ACTIONS(1606), + [anon_sym_constinit] = ACTIONS(1606), + [anon_sym_consteval] = ACTIONS(1606), + [sym_primitive_type] = ACTIONS(1609), + [anon_sym_enum] = ACTIONS(1612), + [anon_sym_class] = ACTIONS(1615), + [anon_sym_struct] = ACTIONS(1618), + [anon_sym_union] = ACTIONS(1621), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_else] = ACTIONS(1551), + [anon_sym_switch] = ACTIONS(1951), + [anon_sym_case] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1954), + [anon_sym_do] = ACTIONS(1957), + [anon_sym_for] = ACTIONS(1960), + [anon_sym_return] = ACTIONS(1963), + [anon_sym_break] = ACTIONS(1966), + [anon_sym_continue] = ACTIONS(1969), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym___try] = ACTIONS(1975), + [anon_sym___leave] = ACTIONS(1978), + [anon_sym_not] = ACTIONS(1562), + [anon_sym_compl] = ACTIONS(1562), + [anon_sym_DASH_DASH] = ACTIONS(1657), + [anon_sym_PLUS_PLUS] = ACTIONS(1657), + [anon_sym_sizeof] = ACTIONS(1660), + [anon_sym___alignof__] = ACTIONS(1663), + [anon_sym___alignof] = ACTIONS(1663), + [anon_sym__alignof] = ACTIONS(1663), + [anon_sym_alignof] = ACTIONS(1663), + [anon_sym__Alignof] = ACTIONS(1663), + [anon_sym_offsetof] = ACTIONS(1666), + [anon_sym__Generic] = ACTIONS(1669), + [anon_sym_asm] = ACTIONS(1672), + [anon_sym___asm__] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1675), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1681), + [anon_sym_u_DQUOTE] = ACTIONS(1681), + [anon_sym_U_DQUOTE] = ACTIONS(1681), + [anon_sym_u8_DQUOTE] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [sym_true] = ACTIONS(1684), + [sym_false] = ACTIONS(1684), + [anon_sym_NULL] = ACTIONS(1687), + [anon_sym_nullptr] = ACTIONS(1687), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1690), + [anon_sym_decltype] = ACTIONS(1693), + [anon_sym_virtual] = ACTIONS(1696), + [anon_sym_alignas] = ACTIONS(1699), + [anon_sym_explicit] = ACTIONS(1551), + [anon_sym_typename] = ACTIONS(1702), + [anon_sym_template] = ACTIONS(1705), + [anon_sym_operator] = ACTIONS(1551), + [anon_sym_try] = ACTIONS(1981), + [anon_sym_delete] = ACTIONS(1711), + [anon_sym_throw] = ACTIONS(1984), + [anon_sym_namespace] = ACTIONS(1551), + [anon_sym_using] = ACTIONS(1551), + [anon_sym_static_assert] = ACTIONS(1551), + [anon_sym_concept] = ACTIONS(1551), + [anon_sym_co_return] = ACTIONS(1987), + [anon_sym_co_yield] = ACTIONS(1990), + [anon_sym_R_DQUOTE] = ACTIONS(1723), + [anon_sym_LR_DQUOTE] = ACTIONS(1723), + [anon_sym_uR_DQUOTE] = ACTIONS(1723), + [anon_sym_UR_DQUOTE] = ACTIONS(1723), + [anon_sym_u8R_DQUOTE] = ACTIONS(1723), + [anon_sym_co_await] = ACTIONS(1726), + [anon_sym_new] = ACTIONS(1729), + [anon_sym_requires] = ACTIONS(1732), + [sym_this] = ACTIONS(1684), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1735), + [sym_semgrep_named_ellipsis] = ACTIONS(1738), + }, + [138] = { + [sym_declaration] = STATE(137), + [sym_type_definition] = STATE(137), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5921), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(991), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_compound_statement] = STATE(137), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(137), + [sym_labeled_statement] = STATE(137), + [sym_expression_statement] = STATE(137), + [sym_if_statement] = STATE(137), + [sym_switch_statement] = STATE(137), + [sym_while_statement] = STATE(137), + [sym_do_statement] = STATE(137), + [sym_for_statement] = STATE(137), + [sym_return_statement] = STATE(137), + [sym_break_statement] = STATE(137), + [sym_continue_statement] = STATE(137), + [sym_goto_statement] = STATE(137), + [sym_seh_try_statement] = STATE(137), + [sym_seh_leave_statement] = STATE(137), + [sym_expression] = STATE(5204), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9572), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(137), + [sym_co_return_statement] = STATE(137), + [sym_co_yield_statement] = STATE(137), + [sym_throw_statement] = STATE(137), + [sym_try_statement] = STATE(137), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6657), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(199), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_case_statement_repeat1] = STATE(137), + [ts_builtin_sym_end] = ACTIONS(1526), + [sym_identifier] = ACTIONS(1925), + [aux_sym_preproc_include_token1] = ACTIONS(1518), + [aux_sym_preproc_def_token1] = ACTIONS(1518), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [aux_sym_preproc_if_token1] = ACTIONS(1518), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1518), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1518), + [sym_preproc_directive] = ACTIONS(1518), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP_AMP] = ACTIONS(1542), - [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(189), - [anon_sym_typedef] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP_AMP] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1927), + [anon_sym___extension__] = ACTIONS(37), + [anon_sym_typedef] = ACTIONS(39), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(1540), - [anon_sym___cdecl] = ACTIONS(1540), - [anon_sym___clrcall] = ACTIONS(1540), - [anon_sym___stdcall] = ACTIONS(1540), - [anon_sym___fastcall] = ACTIONS(1540), - [anon_sym___thiscall] = ACTIONS(1540), - [anon_sym___vectorcall] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(860), - [anon_sym_RBRACE] = ACTIONS(1542), + [anon_sym___based] = ACTIONS(1518), + [anon_sym___cdecl] = ACTIONS(1518), + [anon_sym___clrcall] = ACTIONS(1518), + [anon_sym___stdcall] = ACTIONS(1518), + [anon_sym___fastcall] = ACTIONS(1518), + [anon_sym___thiscall] = ACTIONS(1518), + [anon_sym___vectorcall] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(55), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -82253,20 +72375,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(71), [anon_sym_struct] = ACTIONS(73), [anon_sym_union] = ACTIONS(75), - [anon_sym_if] = ACTIONS(203), - [anon_sym_else] = ACTIONS(1540), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(1540), - [anon_sym_default] = ACTIONS(1540), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), + [anon_sym_if] = ACTIONS(77), + [anon_sym_else] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(79), + [anon_sym_case] = ACTIONS(1518), + [anon_sym_default] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_return] = ACTIONS(91), + [anon_sym_break] = ACTIONS(93), + [anon_sym_continue] = ACTIONS(95), + [anon_sym_goto] = ACTIONS(97), + [anon_sym___try] = ACTIONS(1929), + [anon_sym___leave] = ACTIONS(1931), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -82301,19 +72423,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1540), + [anon_sym_explicit] = ACTIONS(1518), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_operator] = ACTIONS(1540), - [anon_sym_try] = ACTIONS(233), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_operator] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(137), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(1540), - [anon_sym_using] = ACTIONS(1540), - [anon_sym_static_assert] = ACTIONS(1540), - [anon_sym_concept] = ACTIONS(1540), - [anon_sym_co_return] = ACTIONS(245), - [anon_sym_co_yield] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1518), + [anon_sym_static_assert] = ACTIONS(1518), + [anon_sym_concept] = ACTIONS(1518), + [anon_sym_co_return] = ACTIONS(151), + [anon_sym_co_yield] = ACTIONS(153), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -82326,134 +72448,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [140] = { - [sym_declaration] = STATE(135), - [sym_type_definition] = STATE(135), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6413), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(1011), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_compound_statement] = STATE(135), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(135), - [sym_labeled_statement] = STATE(135), - [sym_expression_statement] = STATE(135), - [sym_if_statement] = STATE(135), - [sym_switch_statement] = STATE(135), - [sym_while_statement] = STATE(135), - [sym_do_statement] = STATE(135), - [sym_for_statement] = STATE(135), - [sym_return_statement] = STATE(135), - [sym_break_statement] = STATE(135), - [sym_continue_statement] = STATE(135), - [sym_goto_statement] = STATE(135), - [sym_seh_try_statement] = STATE(135), - [sym_seh_leave_statement] = STATE(135), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(135), - [sym_co_return_statement] = STATE(135), - [sym_co_yield_statement] = STATE(135), - [sym_throw_statement] = STATE(135), - [sym_try_statement] = STATE(135), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7078), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_case_statement_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(1809), - [aux_sym_preproc_include_token1] = ACTIONS(1548), - [aux_sym_preproc_def_token1] = ACTIONS(1548), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [aux_sym_preproc_if_token1] = ACTIONS(1548), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1548), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1548), - [sym_preproc_directive] = ACTIONS(1548), - [anon_sym_LPAREN2] = ACTIONS(1526), + [139] = { + [sym_declaration] = STATE(140), + [sym_type_definition] = STATE(140), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5892), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(991), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_compound_statement] = STATE(140), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(140), + [sym_labeled_statement] = STATE(140), + [sym_expression_statement] = STATE(140), + [sym_if_statement] = STATE(140), + [sym_switch_statement] = STATE(140), + [sym_while_statement] = STATE(140), + [sym_do_statement] = STATE(140), + [sym_for_statement] = STATE(140), + [sym_return_statement] = STATE(140), + [sym_break_statement] = STATE(140), + [sym_continue_statement] = STATE(140), + [sym_goto_statement] = STATE(140), + [sym_seh_try_statement] = STATE(140), + [sym_seh_leave_statement] = STATE(140), + [sym_expression] = STATE(5320), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9351), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(140), + [sym_co_return_statement] = STATE(140), + [sym_co_yield_statement] = STATE(140), + [sym_throw_statement] = STATE(140), + [sym_try_statement] = STATE(140), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6657), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(252), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_case_statement_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(1993), + [aux_sym_preproc_include_token1] = ACTIONS(1536), + [aux_sym_preproc_def_token1] = ACTIONS(1536), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [aux_sym_preproc_if_token1] = ACTIONS(1536), + [aux_sym_preproc_if_token2] = ACTIONS(1536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1536), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1536), + [sym_preproc_directive] = ACTIONS(1536), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP_AMP] = ACTIONS(1550), - [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(189), - [anon_sym_typedef] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP_AMP] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1118), + [anon_sym___extension__] = ACTIONS(1120), + [anon_sym_typedef] = ACTIONS(1122), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(1548), - [anon_sym___cdecl] = ACTIONS(1548), - [anon_sym___clrcall] = ACTIONS(1548), - [anon_sym___stdcall] = ACTIONS(1548), - [anon_sym___fastcall] = ACTIONS(1548), - [anon_sym___thiscall] = ACTIONS(1548), - [anon_sym___vectorcall] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(860), - [anon_sym_RBRACE] = ACTIONS(1550), + [anon_sym___based] = ACTIONS(1536), + [anon_sym___cdecl] = ACTIONS(1536), + [anon_sym___clrcall] = ACTIONS(1536), + [anon_sym___stdcall] = ACTIONS(1536), + [anon_sym___fastcall] = ACTIONS(1536), + [anon_sym___thiscall] = ACTIONS(1536), + [anon_sym___vectorcall] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1126), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -82478,20 +72600,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(71), [anon_sym_struct] = ACTIONS(73), [anon_sym_union] = ACTIONS(75), - [anon_sym_if] = ACTIONS(203), - [anon_sym_else] = ACTIONS(1548), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(1548), - [anon_sym_default] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_else] = ACTIONS(1536), + [anon_sym_switch] = ACTIONS(1132), + [anon_sym_case] = ACTIONS(1536), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_while] = ACTIONS(1138), + [anon_sym_do] = ACTIONS(1140), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(1144), + [anon_sym_break] = ACTIONS(1146), + [anon_sym_continue] = ACTIONS(1148), + [anon_sym_goto] = ACTIONS(1150), + [anon_sym___try] = ACTIONS(1152), + [anon_sym___leave] = ACTIONS(1154), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -82526,19 +72648,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1548), + [anon_sym_explicit] = ACTIONS(1536), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_operator] = ACTIONS(1548), - [anon_sym_try] = ACTIONS(233), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_operator] = ACTIONS(1536), + [anon_sym_try] = ACTIONS(1158), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(1548), - [anon_sym_using] = ACTIONS(1548), - [anon_sym_static_assert] = ACTIONS(1548), - [anon_sym_concept] = ACTIONS(1548), - [anon_sym_co_return] = ACTIONS(245), - [anon_sym_co_yield] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1160), + [anon_sym_namespace] = ACTIONS(1536), + [anon_sym_using] = ACTIONS(1536), + [anon_sym_static_assert] = ACTIONS(1536), + [anon_sym_concept] = ACTIONS(1536), + [anon_sym_co_return] = ACTIONS(1170), + [anon_sym_co_yield] = ACTIONS(1172), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -82551,134 +72673,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [141] = { - [sym_declaration] = STATE(131), - [sym_type_definition] = STATE(131), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6413), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(1011), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_compound_statement] = STATE(131), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(131), - [sym_labeled_statement] = STATE(131), - [sym_expression_statement] = STATE(131), - [sym_if_statement] = STATE(131), - [sym_switch_statement] = STATE(131), - [sym_while_statement] = STATE(131), - [sym_do_statement] = STATE(131), - [sym_for_statement] = STATE(131), - [sym_return_statement] = STATE(131), - [sym_break_statement] = STATE(131), - [sym_continue_statement] = STATE(131), - [sym_goto_statement] = STATE(131), - [sym_seh_try_statement] = STATE(131), - [sym_seh_leave_statement] = STATE(131), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(131), - [sym_co_return_statement] = STATE(131), - [sym_co_yield_statement] = STATE(131), - [sym_throw_statement] = STATE(131), - [sym_try_statement] = STATE(131), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7078), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_case_statement_repeat1] = STATE(131), - [sym_identifier] = ACTIONS(1809), - [aux_sym_preproc_include_token1] = ACTIONS(1522), - [aux_sym_preproc_def_token1] = ACTIONS(1522), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [aux_sym_preproc_if_token1] = ACTIONS(1522), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1522), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1522), - [sym_preproc_directive] = ACTIONS(1522), - [anon_sym_LPAREN2] = ACTIONS(1526), + [140] = { + [sym_declaration] = STATE(128), + [sym_type_definition] = STATE(128), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5892), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(991), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_compound_statement] = STATE(128), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(128), + [sym_labeled_statement] = STATE(128), + [sym_expression_statement] = STATE(128), + [sym_if_statement] = STATE(128), + [sym_switch_statement] = STATE(128), + [sym_while_statement] = STATE(128), + [sym_do_statement] = STATE(128), + [sym_for_statement] = STATE(128), + [sym_return_statement] = STATE(128), + [sym_break_statement] = STATE(128), + [sym_continue_statement] = STATE(128), + [sym_goto_statement] = STATE(128), + [sym_seh_try_statement] = STATE(128), + [sym_seh_leave_statement] = STATE(128), + [sym_expression] = STATE(5320), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9351), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(128), + [sym_co_return_statement] = STATE(128), + [sym_co_yield_statement] = STATE(128), + [sym_throw_statement] = STATE(128), + [sym_try_statement] = STATE(128), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6657), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(252), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_case_statement_repeat1] = STATE(128), + [sym_identifier] = ACTIONS(1993), + [aux_sym_preproc_include_token1] = ACTIONS(1540), + [aux_sym_preproc_def_token1] = ACTIONS(1540), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [aux_sym_preproc_if_token1] = ACTIONS(1540), + [aux_sym_preproc_if_token2] = ACTIONS(1540), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1540), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1540), + [sym_preproc_directive] = ACTIONS(1540), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP_AMP] = ACTIONS(1530), - [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(189), - [anon_sym_typedef] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP_AMP] = ACTIONS(1542), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1118), + [anon_sym___extension__] = ACTIONS(1120), + [anon_sym_typedef] = ACTIONS(1122), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(1522), - [anon_sym___cdecl] = ACTIONS(1522), - [anon_sym___clrcall] = ACTIONS(1522), - [anon_sym___stdcall] = ACTIONS(1522), - [anon_sym___fastcall] = ACTIONS(1522), - [anon_sym___thiscall] = ACTIONS(1522), - [anon_sym___vectorcall] = ACTIONS(1522), - [anon_sym_LBRACE] = ACTIONS(860), - [anon_sym_RBRACE] = ACTIONS(1530), + [anon_sym___based] = ACTIONS(1540), + [anon_sym___cdecl] = ACTIONS(1540), + [anon_sym___clrcall] = ACTIONS(1540), + [anon_sym___stdcall] = ACTIONS(1540), + [anon_sym___fastcall] = ACTIONS(1540), + [anon_sym___thiscall] = ACTIONS(1540), + [anon_sym___vectorcall] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1126), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -82703,20 +72825,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(71), [anon_sym_struct] = ACTIONS(73), [anon_sym_union] = ACTIONS(75), - [anon_sym_if] = ACTIONS(203), - [anon_sym_else] = ACTIONS(1522), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_else] = ACTIONS(1540), + [anon_sym_switch] = ACTIONS(1132), + [anon_sym_case] = ACTIONS(1540), + [anon_sym_default] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1138), + [anon_sym_do] = ACTIONS(1140), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(1144), + [anon_sym_break] = ACTIONS(1146), + [anon_sym_continue] = ACTIONS(1148), + [anon_sym_goto] = ACTIONS(1150), + [anon_sym___try] = ACTIONS(1152), + [anon_sym___leave] = ACTIONS(1154), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -82751,19 +72873,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1522), + [anon_sym_explicit] = ACTIONS(1540), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_operator] = ACTIONS(1522), - [anon_sym_try] = ACTIONS(233), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_operator] = ACTIONS(1540), + [anon_sym_try] = ACTIONS(1158), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(1522), - [anon_sym_using] = ACTIONS(1522), - [anon_sym_static_assert] = ACTIONS(1522), - [anon_sym_concept] = ACTIONS(1522), - [anon_sym_co_return] = ACTIONS(245), - [anon_sym_co_yield] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1160), + [anon_sym_namespace] = ACTIONS(1540), + [anon_sym_using] = ACTIONS(1540), + [anon_sym_static_assert] = ACTIONS(1540), + [anon_sym_concept] = ACTIONS(1540), + [anon_sym_co_return] = ACTIONS(1170), + [anon_sym_co_yield] = ACTIONS(1172), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -82776,120 +72898,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [142] = { - [sym_declaration] = STATE(133), - [sym_type_definition] = STATE(133), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6391), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(1011), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_compound_statement] = STATE(133), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(133), - [sym_labeled_statement] = STATE(133), - [sym_expression_statement] = STATE(133), - [sym_if_statement] = STATE(133), - [sym_switch_statement] = STATE(133), - [sym_while_statement] = STATE(133), - [sym_do_statement] = STATE(133), - [sym_for_statement] = STATE(133), - [sym_return_statement] = STATE(133), - [sym_break_statement] = STATE(133), - [sym_continue_statement] = STATE(133), - [sym_goto_statement] = STATE(133), - [sym_seh_try_statement] = STATE(133), - [sym_seh_leave_statement] = STATE(133), - [sym_expression] = STATE(5777), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9682), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(133), - [sym_co_return_statement] = STATE(133), - [sym_co_yield_statement] = STATE(133), - [sym_throw_statement] = STATE(133), - [sym_try_statement] = STATE(133), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7078), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_case_statement_repeat1] = STATE(133), - [ts_builtin_sym_end] = ACTIONS(1546), - [sym_identifier] = ACTIONS(1871), + [141] = { + [sym_declaration] = STATE(142), + [sym_type_definition] = STATE(142), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5892), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(991), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_compound_statement] = STATE(142), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(142), + [sym_labeled_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym_if_statement] = STATE(142), + [sym_switch_statement] = STATE(142), + [sym_while_statement] = STATE(142), + [sym_do_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym_return_statement] = STATE(142), + [sym_break_statement] = STATE(142), + [sym_continue_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_seh_try_statement] = STATE(142), + [sym_seh_leave_statement] = STATE(142), + [sym_expression] = STATE(5320), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9351), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(142), + [sym_co_return_statement] = STATE(142), + [sym_co_yield_statement] = STATE(142), + [sym_throw_statement] = STATE(142), + [sym_try_statement] = STATE(142), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6657), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(252), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_case_statement_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1993), [aux_sym_preproc_include_token1] = ACTIONS(1544), [aux_sym_preproc_def_token1] = ACTIONS(1544), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), [aux_sym_preproc_if_token1] = ACTIONS(1544), + [aux_sym_preproc_if_token2] = ACTIONS(1544), [aux_sym_preproc_ifdef_token1] = ACTIONS(1544), [aux_sym_preproc_ifdef_token2] = ACTIONS(1544), [sym_preproc_directive] = ACTIONS(1544), - [anon_sym_LPAREN2] = ACTIONS(1526), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), [anon_sym_AMP_AMP] = ACTIONS(1546), - [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym___extension__] = ACTIONS(37), - [anon_sym_typedef] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1118), + [anon_sym___extension__] = ACTIONS(1120), + [anon_sym_typedef] = ACTIONS(1122), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(1544), [anon_sym___cdecl] = ACTIONS(1544), @@ -82898,12 +73020,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1544), [anon_sym___thiscall] = ACTIONS(1544), [anon_sym___vectorcall] = ACTIONS(1544), - [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(1126), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -82928,20 +73050,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(71), [anon_sym_struct] = ACTIONS(73), [anon_sym_union] = ACTIONS(75), - [anon_sym_if] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1130), [anon_sym_else] = ACTIONS(1544), - [anon_sym_switch] = ACTIONS(79), + [anon_sym_switch] = ACTIONS(1132), [anon_sym_case] = ACTIONS(1544), [anon_sym_default] = ACTIONS(1544), - [anon_sym_while] = ACTIONS(85), - [anon_sym_do] = ACTIONS(87), - [anon_sym_for] = ACTIONS(89), - [anon_sym_return] = ACTIONS(91), - [anon_sym_break] = ACTIONS(93), - [anon_sym_continue] = ACTIONS(95), - [anon_sym_goto] = ACTIONS(97), - [anon_sym___try] = ACTIONS(1875), - [anon_sym___leave] = ACTIONS(1877), + [anon_sym_while] = ACTIONS(1138), + [anon_sym_do] = ACTIONS(1140), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(1144), + [anon_sym_break] = ACTIONS(1146), + [anon_sym_continue] = ACTIONS(1148), + [anon_sym_goto] = ACTIONS(1150), + [anon_sym___try] = ACTIONS(1152), + [anon_sym___leave] = ACTIONS(1154), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -82978,17 +73100,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(1544), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_operator] = ACTIONS(1544), - [anon_sym_try] = ACTIONS(137), + [anon_sym_try] = ACTIONS(1158), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(141), + [anon_sym_throw] = ACTIONS(1160), [anon_sym_namespace] = ACTIONS(1544), [anon_sym_using] = ACTIONS(1544), [anon_sym_static_assert] = ACTIONS(1544), [anon_sym_concept] = ACTIONS(1544), - [anon_sym_co_return] = ACTIONS(151), - [anon_sym_co_yield] = ACTIONS(153), + [anon_sym_co_return] = ACTIONS(1170), + [anon_sym_co_yield] = ACTIONS(1172), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -83001,134 +73123,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [143] = { - [sym_declaration] = STATE(134), - [sym_type_definition] = STATE(134), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6391), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(1011), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_compound_statement] = STATE(134), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(134), - [sym_labeled_statement] = STATE(134), - [sym_expression_statement] = STATE(134), - [sym_if_statement] = STATE(134), - [sym_switch_statement] = STATE(134), - [sym_while_statement] = STATE(134), - [sym_do_statement] = STATE(134), - [sym_for_statement] = STATE(134), - [sym_return_statement] = STATE(134), - [sym_break_statement] = STATE(134), - [sym_continue_statement] = STATE(134), - [sym_goto_statement] = STATE(134), - [sym_seh_try_statement] = STATE(134), - [sym_seh_leave_statement] = STATE(134), - [sym_expression] = STATE(5777), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9682), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(134), - [sym_co_return_statement] = STATE(134), - [sym_co_yield_statement] = STATE(134), - [sym_throw_statement] = STATE(134), - [sym_try_statement] = STATE(134), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7078), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_case_statement_repeat1] = STATE(134), - [ts_builtin_sym_end] = ACTIONS(1542), - [sym_identifier] = ACTIONS(1871), - [aux_sym_preproc_include_token1] = ACTIONS(1540), - [aux_sym_preproc_def_token1] = ACTIONS(1540), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [aux_sym_preproc_if_token1] = ACTIONS(1540), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1540), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1540), - [sym_preproc_directive] = ACTIONS(1540), - [anon_sym_LPAREN2] = ACTIONS(1526), + [142] = { + [sym_declaration] = STATE(128), + [sym_type_definition] = STATE(128), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5892), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(991), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_compound_statement] = STATE(128), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(128), + [sym_labeled_statement] = STATE(128), + [sym_expression_statement] = STATE(128), + [sym_if_statement] = STATE(128), + [sym_switch_statement] = STATE(128), + [sym_while_statement] = STATE(128), + [sym_do_statement] = STATE(128), + [sym_for_statement] = STATE(128), + [sym_return_statement] = STATE(128), + [sym_break_statement] = STATE(128), + [sym_continue_statement] = STATE(128), + [sym_goto_statement] = STATE(128), + [sym_seh_try_statement] = STATE(128), + [sym_seh_leave_statement] = STATE(128), + [sym_expression] = STATE(5320), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9351), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(128), + [sym_co_return_statement] = STATE(128), + [sym_co_yield_statement] = STATE(128), + [sym_throw_statement] = STATE(128), + [sym_try_statement] = STATE(128), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6657), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(252), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_case_statement_repeat1] = STATE(128), + [sym_identifier] = ACTIONS(1993), + [aux_sym_preproc_include_token1] = ACTIONS(1518), + [aux_sym_preproc_def_token1] = ACTIONS(1518), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [aux_sym_preproc_if_token1] = ACTIONS(1518), + [aux_sym_preproc_if_token2] = ACTIONS(1518), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1518), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1518), + [sym_preproc_directive] = ACTIONS(1518), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP_AMP] = ACTIONS(1542), - [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym___extension__] = ACTIONS(37), - [anon_sym_typedef] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP_AMP] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1118), + [anon_sym___extension__] = ACTIONS(1120), + [anon_sym_typedef] = ACTIONS(1122), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(1540), - [anon_sym___cdecl] = ACTIONS(1540), - [anon_sym___clrcall] = ACTIONS(1540), - [anon_sym___stdcall] = ACTIONS(1540), - [anon_sym___fastcall] = ACTIONS(1540), - [anon_sym___thiscall] = ACTIONS(1540), - [anon_sym___vectorcall] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym___based] = ACTIONS(1518), + [anon_sym___cdecl] = ACTIONS(1518), + [anon_sym___clrcall] = ACTIONS(1518), + [anon_sym___stdcall] = ACTIONS(1518), + [anon_sym___fastcall] = ACTIONS(1518), + [anon_sym___thiscall] = ACTIONS(1518), + [anon_sym___vectorcall] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1126), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -83153,20 +73275,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(71), [anon_sym_struct] = ACTIONS(73), [anon_sym_union] = ACTIONS(75), - [anon_sym_if] = ACTIONS(77), - [anon_sym_else] = ACTIONS(1540), - [anon_sym_switch] = ACTIONS(79), - [anon_sym_case] = ACTIONS(1540), - [anon_sym_default] = ACTIONS(1540), - [anon_sym_while] = ACTIONS(85), - [anon_sym_do] = ACTIONS(87), - [anon_sym_for] = ACTIONS(89), - [anon_sym_return] = ACTIONS(91), - [anon_sym_break] = ACTIONS(93), - [anon_sym_continue] = ACTIONS(95), - [anon_sym_goto] = ACTIONS(97), - [anon_sym___try] = ACTIONS(1875), - [anon_sym___leave] = ACTIONS(1877), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_else] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1132), + [anon_sym_case] = ACTIONS(1518), + [anon_sym_default] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(1138), + [anon_sym_do] = ACTIONS(1140), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(1144), + [anon_sym_break] = ACTIONS(1146), + [anon_sym_continue] = ACTIONS(1148), + [anon_sym_goto] = ACTIONS(1150), + [anon_sym___try] = ACTIONS(1152), + [anon_sym___leave] = ACTIONS(1154), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -83201,19 +73323,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1540), + [anon_sym_explicit] = ACTIONS(1518), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_operator] = ACTIONS(1540), - [anon_sym_try] = ACTIONS(137), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_operator] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1158), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(141), - [anon_sym_namespace] = ACTIONS(1540), - [anon_sym_using] = ACTIONS(1540), - [anon_sym_static_assert] = ACTIONS(1540), - [anon_sym_concept] = ACTIONS(1540), - [anon_sym_co_return] = ACTIONS(151), - [anon_sym_co_yield] = ACTIONS(153), + [anon_sym_throw] = ACTIONS(1160), + [anon_sym_namespace] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1518), + [anon_sym_static_assert] = ACTIONS(1518), + [anon_sym_concept] = ACTIONS(1518), + [anon_sym_co_return] = ACTIONS(1170), + [anon_sym_co_yield] = ACTIONS(1172), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -83226,134 +73348,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [144] = { - [sym_declaration] = STATE(130), - [sym_type_definition] = STATE(130), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6401), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(1011), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_compound_statement] = STATE(130), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(130), - [sym_labeled_statement] = STATE(130), - [sym_expression_statement] = STATE(130), - [sym_if_statement] = STATE(130), - [sym_switch_statement] = STATE(130), - [sym_while_statement] = STATE(130), - [sym_do_statement] = STATE(130), - [sym_for_statement] = STATE(130), - [sym_return_statement] = STATE(130), - [sym_break_statement] = STATE(130), - [sym_continue_statement] = STATE(130), - [sym_goto_statement] = STATE(130), - [sym_seh_try_statement] = STATE(130), - [sym_seh_leave_statement] = STATE(130), - [sym_expression] = STATE(5819), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9710), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(130), - [sym_co_return_statement] = STATE(130), - [sym_co_yield_statement] = STATE(130), - [sym_throw_statement] = STATE(130), - [sym_try_statement] = STATE(130), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7078), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(226), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_case_statement_repeat1] = STATE(130), - [sym_identifier] = ACTIONS(1807), - [aux_sym_preproc_include_token1] = ACTIONS(1522), - [aux_sym_preproc_def_token1] = ACTIONS(1522), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [aux_sym_preproc_if_token1] = ACTIONS(1522), - [aux_sym_preproc_if_token2] = ACTIONS(1522), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1522), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1522), - [sym_preproc_directive] = ACTIONS(1522), - [anon_sym_LPAREN2] = ACTIONS(1526), + [143] = { + [sym_declaration] = STATE(145), + [sym_type_definition] = STATE(145), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5919), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(991), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_compound_statement] = STATE(145), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(145), + [sym_labeled_statement] = STATE(145), + [sym_expression_statement] = STATE(145), + [sym_if_statement] = STATE(145), + [sym_switch_statement] = STATE(145), + [sym_while_statement] = STATE(145), + [sym_do_statement] = STATE(145), + [sym_for_statement] = STATE(145), + [sym_return_statement] = STATE(145), + [sym_break_statement] = STATE(145), + [sym_continue_statement] = STATE(145), + [sym_goto_statement] = STATE(145), + [sym_seh_try_statement] = STATE(145), + [sym_seh_leave_statement] = STATE(145), + [sym_expression] = STATE(5351), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9322), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(145), + [sym_co_return_statement] = STATE(145), + [sym_co_yield_statement] = STATE(145), + [sym_throw_statement] = STATE(145), + [sym_try_statement] = STATE(145), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6657), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(253), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_case_statement_repeat1] = STATE(145), + [sym_identifier] = ACTIONS(1995), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP_AMP] = ACTIONS(1530), - [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym___extension__] = ACTIONS(996), - [anon_sym_typedef] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1997), + [anon_sym___extension__] = ACTIONS(1999), + [anon_sym_typedef] = ACTIONS(2001), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(1522), - [anon_sym___cdecl] = ACTIONS(1522), - [anon_sym___clrcall] = ACTIONS(1522), - [anon_sym___stdcall] = ACTIONS(1522), - [anon_sym___fastcall] = ACTIONS(1522), - [anon_sym___thiscall] = ACTIONS(1522), - [anon_sym___vectorcall] = ACTIONS(1522), - [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(2003), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -83378,20 +73485,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(71), [anon_sym_struct] = ACTIONS(73), [anon_sym_union] = ACTIONS(75), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_else] = ACTIONS(1522), - [anon_sym_switch] = ACTIONS(1008), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1014), - [anon_sym_do] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_break] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_goto] = ACTIONS(1026), - [anon_sym___try] = ACTIONS(1028), - [anon_sym___leave] = ACTIONS(1030), + [anon_sym_if] = ACTIONS(2005), + [anon_sym_else] = ACTIONS(1536), + [anon_sym_switch] = ACTIONS(2007), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_do] = ACTIONS(2011), + [anon_sym_for] = ACTIONS(2013), + [anon_sym_return] = ACTIONS(2015), + [anon_sym_break] = ACTIONS(2017), + [anon_sym_continue] = ACTIONS(2019), + [anon_sym_goto] = ACTIONS(2021), + [anon_sym___try] = ACTIONS(2023), + [anon_sym___leave] = ACTIONS(2025), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -83426,19 +73531,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1522), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_operator] = ACTIONS(1522), - [anon_sym_try] = ACTIONS(1034), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(2027), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(1036), - [anon_sym_namespace] = ACTIONS(1522), - [anon_sym_using] = ACTIONS(1522), - [anon_sym_static_assert] = ACTIONS(1522), - [anon_sym_concept] = ACTIONS(1522), - [anon_sym_co_return] = ACTIONS(1046), - [anon_sym_co_yield] = ACTIONS(1048), + [anon_sym_throw] = ACTIONS(2029), + [anon_sym_co_return] = ACTIONS(2031), + [anon_sym_co_yield] = ACTIONS(2033), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -83451,119 +73550,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [145] = { - [sym_declaration] = STATE(149), - [sym_type_definition] = STATE(149), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6382), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(1011), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_compound_statement] = STATE(149), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(149), - [sym_labeled_statement] = STATE(149), - [sym_expression_statement] = STATE(149), - [sym_if_statement] = STATE(149), - [sym_switch_statement] = STATE(149), - [sym_while_statement] = STATE(149), - [sym_do_statement] = STATE(149), - [sym_for_statement] = STATE(149), - [sym_return_statement] = STATE(149), - [sym_break_statement] = STATE(149), - [sym_continue_statement] = STATE(149), - [sym_goto_statement] = STATE(149), - [sym_seh_try_statement] = STATE(149), - [sym_seh_leave_statement] = STATE(149), - [sym_expression] = STATE(5875), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10185), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(149), - [sym_co_return_statement] = STATE(149), - [sym_co_yield_statement] = STATE(149), - [sym_throw_statement] = STATE(149), - [sym_try_statement] = STATE(149), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7078), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(195), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_case_statement_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(1999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [144] = { + [sym_declaration] = STATE(147), + [sym_type_definition] = STATE(147), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5919), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(991), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_compound_statement] = STATE(147), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(147), + [sym_labeled_statement] = STATE(147), + [sym_expression_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_switch_statement] = STATE(147), + [sym_while_statement] = STATE(147), + [sym_do_statement] = STATE(147), + [sym_for_statement] = STATE(147), + [sym_return_statement] = STATE(147), + [sym_break_statement] = STATE(147), + [sym_continue_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym_seh_try_statement] = STATE(147), + [sym_seh_leave_statement] = STATE(147), + [sym_expression] = STATE(5351), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9322), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(147), + [sym_co_return_statement] = STATE(147), + [sym_co_yield_statement] = STATE(147), + [sym_throw_statement] = STATE(147), + [sym_try_statement] = STATE(147), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6657), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(253), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_case_statement_repeat1] = STATE(147), + [sym_identifier] = ACTIONS(1995), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(2001), - [anon_sym___extension__] = ACTIONS(2003), - [anon_sym_typedef] = ACTIONS(2005), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1997), + [anon_sym___extension__] = ACTIONS(1999), + [anon_sym_typedef] = ACTIONS(2001), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym___declspec] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(2007), + [anon_sym_LBRACE] = ACTIONS(2003), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -83588,18 +73687,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(71), [anon_sym_struct] = ACTIONS(73), [anon_sym_union] = ACTIONS(75), - [anon_sym_if] = ACTIONS(2009), - [anon_sym_else] = ACTIONS(1540), - [anon_sym_switch] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_do] = ACTIONS(2015), - [anon_sym_for] = ACTIONS(2017), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2021), - [anon_sym_continue] = ACTIONS(2023), - [anon_sym_goto] = ACTIONS(2025), - [anon_sym___try] = ACTIONS(2027), - [anon_sym___leave] = ACTIONS(2029), + [anon_sym_if] = ACTIONS(2005), + [anon_sym_else] = ACTIONS(1544), + [anon_sym_switch] = ACTIONS(2007), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_do] = ACTIONS(2011), + [anon_sym_for] = ACTIONS(2013), + [anon_sym_return] = ACTIONS(2015), + [anon_sym_break] = ACTIONS(2017), + [anon_sym_continue] = ACTIONS(2019), + [anon_sym_goto] = ACTIONS(2021), + [anon_sym___try] = ACTIONS(2023), + [anon_sym___leave] = ACTIONS(2025), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -83635,12 +73734,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(2031), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(2027), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(2033), - [anon_sym_co_return] = ACTIONS(2035), - [anon_sym_co_yield] = ACTIONS(2037), + [anon_sym_throw] = ACTIONS(2029), + [anon_sym_co_return] = ACTIONS(2031), + [anon_sym_co_yield] = ACTIONS(2033), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -83653,119 +73752,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [146] = { - [sym_declaration] = STATE(147), - [sym_type_definition] = STATE(147), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6382), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(1011), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_compound_statement] = STATE(147), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(147), - [sym_labeled_statement] = STATE(147), - [sym_expression_statement] = STATE(147), - [sym_if_statement] = STATE(147), - [sym_switch_statement] = STATE(147), - [sym_while_statement] = STATE(147), - [sym_do_statement] = STATE(147), - [sym_for_statement] = STATE(147), - [sym_return_statement] = STATE(147), - [sym_break_statement] = STATE(147), - [sym_continue_statement] = STATE(147), - [sym_goto_statement] = STATE(147), - [sym_seh_try_statement] = STATE(147), - [sym_seh_leave_statement] = STATE(147), - [sym_expression] = STATE(5875), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10185), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(147), - [sym_co_return_statement] = STATE(147), - [sym_co_yield_statement] = STATE(147), - [sym_throw_statement] = STATE(147), - [sym_try_statement] = STATE(147), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7078), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(195), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_case_statement_repeat1] = STATE(147), - [sym_identifier] = ACTIONS(1999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [145] = { + [sym_declaration] = STATE(146), + [sym_type_definition] = STATE(146), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5919), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(991), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_compound_statement] = STATE(146), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(146), + [sym_labeled_statement] = STATE(146), + [sym_expression_statement] = STATE(146), + [sym_if_statement] = STATE(146), + [sym_switch_statement] = STATE(146), + [sym_while_statement] = STATE(146), + [sym_do_statement] = STATE(146), + [sym_for_statement] = STATE(146), + [sym_return_statement] = STATE(146), + [sym_break_statement] = STATE(146), + [sym_continue_statement] = STATE(146), + [sym_goto_statement] = STATE(146), + [sym_seh_try_statement] = STATE(146), + [sym_seh_leave_statement] = STATE(146), + [sym_expression] = STATE(5351), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9322), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(146), + [sym_co_return_statement] = STATE(146), + [sym_co_yield_statement] = STATE(146), + [sym_throw_statement] = STATE(146), + [sym_try_statement] = STATE(146), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6657), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(253), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_case_statement_repeat1] = STATE(146), + [sym_identifier] = ACTIONS(1995), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(2001), - [anon_sym___extension__] = ACTIONS(2003), - [anon_sym_typedef] = ACTIONS(2005), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1997), + [anon_sym___extension__] = ACTIONS(1999), + [anon_sym_typedef] = ACTIONS(2001), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym___declspec] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(2007), + [anon_sym_LBRACE] = ACTIONS(2003), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -83790,18 +73889,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(71), [anon_sym_struct] = ACTIONS(73), [anon_sym_union] = ACTIONS(75), - [anon_sym_if] = ACTIONS(2009), - [anon_sym_else] = ACTIONS(1522), - [anon_sym_switch] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_do] = ACTIONS(2015), - [anon_sym_for] = ACTIONS(2017), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2021), - [anon_sym_continue] = ACTIONS(2023), - [anon_sym_goto] = ACTIONS(2025), - [anon_sym___try] = ACTIONS(2027), - [anon_sym___leave] = ACTIONS(2029), + [anon_sym_if] = ACTIONS(2005), + [anon_sym_else] = ACTIONS(1540), + [anon_sym_switch] = ACTIONS(2007), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_do] = ACTIONS(2011), + [anon_sym_for] = ACTIONS(2013), + [anon_sym_return] = ACTIONS(2015), + [anon_sym_break] = ACTIONS(2017), + [anon_sym_continue] = ACTIONS(2019), + [anon_sym_goto] = ACTIONS(2021), + [anon_sym___try] = ACTIONS(2023), + [anon_sym___leave] = ACTIONS(2025), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -83837,12 +73936,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(2031), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(2027), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(2033), - [anon_sym_co_return] = ACTIONS(2035), - [anon_sym_co_yield] = ACTIONS(2037), + [anon_sym_throw] = ACTIONS(2029), + [anon_sym_co_return] = ACTIONS(2031), + [anon_sym_co_yield] = ACTIONS(2033), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -83855,119 +73954,321 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, + [146] = { + [sym_declaration] = STATE(146), + [sym_type_definition] = STATE(146), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5919), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(991), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_compound_statement] = STATE(146), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(146), + [sym_labeled_statement] = STATE(146), + [sym_expression_statement] = STATE(146), + [sym_if_statement] = STATE(146), + [sym_switch_statement] = STATE(146), + [sym_while_statement] = STATE(146), + [sym_do_statement] = STATE(146), + [sym_for_statement] = STATE(146), + [sym_return_statement] = STATE(146), + [sym_break_statement] = STATE(146), + [sym_continue_statement] = STATE(146), + [sym_goto_statement] = STATE(146), + [sym_seh_try_statement] = STATE(146), + [sym_seh_leave_statement] = STATE(146), + [sym_expression] = STATE(5351), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9322), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(146), + [sym_co_return_statement] = STATE(146), + [sym_co_yield_statement] = STATE(146), + [sym_throw_statement] = STATE(146), + [sym_try_statement] = STATE(146), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6657), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(253), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_case_statement_repeat1] = STATE(146), + [sym_identifier] = ACTIONS(2035), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1553), + [anon_sym_LPAREN2] = ACTIONS(1556), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym___extension__] = ACTIONS(2041), + [anon_sym_typedef] = ACTIONS(2044), + [anon_sym_extern] = ACTIONS(1582), + [anon_sym___attribute__] = ACTIONS(1585), + [anon_sym_COLON_COLON] = ACTIONS(1588), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1591), + [anon_sym___declspec] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_signed] = ACTIONS(1600), + [anon_sym_unsigned] = ACTIONS(1600), + [anon_sym_long] = ACTIONS(1600), + [anon_sym_short] = ACTIONS(1600), + [anon_sym_LBRACK] = ACTIONS(1603), + [anon_sym_static] = ACTIONS(1582), + [anon_sym_register] = ACTIONS(1582), + [anon_sym_inline] = ACTIONS(1582), + [anon_sym___inline] = ACTIONS(1582), + [anon_sym___inline__] = ACTIONS(1582), + [anon_sym___forceinline] = ACTIONS(1582), + [anon_sym_thread_local] = ACTIONS(1582), + [anon_sym___thread] = ACTIONS(1582), + [anon_sym_const] = ACTIONS(1606), + [anon_sym_constexpr] = ACTIONS(1606), + [anon_sym_volatile] = ACTIONS(1606), + [anon_sym_restrict] = ACTIONS(1606), + [anon_sym___restrict__] = ACTIONS(1606), + [anon_sym__Atomic] = ACTIONS(1606), + [anon_sym__Noreturn] = ACTIONS(1606), + [anon_sym_noreturn] = ACTIONS(1606), + [anon_sym_mutable] = ACTIONS(1606), + [anon_sym_constinit] = ACTIONS(1606), + [anon_sym_consteval] = ACTIONS(1606), + [sym_primitive_type] = ACTIONS(1609), + [anon_sym_enum] = ACTIONS(1612), + [anon_sym_class] = ACTIONS(1615), + [anon_sym_struct] = ACTIONS(1618), + [anon_sym_union] = ACTIONS(1621), + [anon_sym_if] = ACTIONS(2050), + [anon_sym_else] = ACTIONS(1551), + [anon_sym_switch] = ACTIONS(2053), + [anon_sym_while] = ACTIONS(2056), + [anon_sym_do] = ACTIONS(2059), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_return] = ACTIONS(2065), + [anon_sym_break] = ACTIONS(2068), + [anon_sym_continue] = ACTIONS(2071), + [anon_sym_goto] = ACTIONS(2074), + [anon_sym___try] = ACTIONS(2077), + [anon_sym___leave] = ACTIONS(2080), + [anon_sym_not] = ACTIONS(1562), + [anon_sym_compl] = ACTIONS(1562), + [anon_sym_DASH_DASH] = ACTIONS(1657), + [anon_sym_PLUS_PLUS] = ACTIONS(1657), + [anon_sym_sizeof] = ACTIONS(1660), + [anon_sym___alignof__] = ACTIONS(1663), + [anon_sym___alignof] = ACTIONS(1663), + [anon_sym__alignof] = ACTIONS(1663), + [anon_sym_alignof] = ACTIONS(1663), + [anon_sym__Alignof] = ACTIONS(1663), + [anon_sym_offsetof] = ACTIONS(1666), + [anon_sym__Generic] = ACTIONS(1669), + [anon_sym_asm] = ACTIONS(1672), + [anon_sym___asm__] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1675), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1681), + [anon_sym_u_DQUOTE] = ACTIONS(1681), + [anon_sym_U_DQUOTE] = ACTIONS(1681), + [anon_sym_u8_DQUOTE] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [sym_true] = ACTIONS(1684), + [sym_false] = ACTIONS(1684), + [anon_sym_NULL] = ACTIONS(1687), + [anon_sym_nullptr] = ACTIONS(1687), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1690), + [anon_sym_decltype] = ACTIONS(1693), + [anon_sym_virtual] = ACTIONS(1696), + [anon_sym_alignas] = ACTIONS(1699), + [anon_sym_typename] = ACTIONS(1702), + [anon_sym_template] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(2083), + [anon_sym_delete] = ACTIONS(1711), + [anon_sym_throw] = ACTIONS(2086), + [anon_sym_co_return] = ACTIONS(2089), + [anon_sym_co_yield] = ACTIONS(2092), + [anon_sym_R_DQUOTE] = ACTIONS(1723), + [anon_sym_LR_DQUOTE] = ACTIONS(1723), + [anon_sym_uR_DQUOTE] = ACTIONS(1723), + [anon_sym_UR_DQUOTE] = ACTIONS(1723), + [anon_sym_u8R_DQUOTE] = ACTIONS(1723), + [anon_sym_co_await] = ACTIONS(1726), + [anon_sym_new] = ACTIONS(1729), + [anon_sym_requires] = ACTIONS(1732), + [sym_this] = ACTIONS(1684), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1735), + [sym_semgrep_named_ellipsis] = ACTIONS(1738), + }, [147] = { - [sym_declaration] = STATE(148), - [sym_type_definition] = STATE(148), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6382), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(1011), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_compound_statement] = STATE(148), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(148), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym_seh_try_statement] = STATE(148), - [sym_seh_leave_statement] = STATE(148), - [sym_expression] = STATE(5875), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10185), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(148), - [sym_co_return_statement] = STATE(148), - [sym_co_yield_statement] = STATE(148), - [sym_throw_statement] = STATE(148), - [sym_try_statement] = STATE(148), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7078), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(195), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_case_statement_repeat1] = STATE(148), - [sym_identifier] = ACTIONS(1999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [sym_declaration] = STATE(146), + [sym_type_definition] = STATE(146), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5919), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(991), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_compound_statement] = STATE(146), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_attributed_statement] = STATE(146), + [sym_labeled_statement] = STATE(146), + [sym_expression_statement] = STATE(146), + [sym_if_statement] = STATE(146), + [sym_switch_statement] = STATE(146), + [sym_while_statement] = STATE(146), + [sym_do_statement] = STATE(146), + [sym_for_statement] = STATE(146), + [sym_return_statement] = STATE(146), + [sym_break_statement] = STATE(146), + [sym_continue_statement] = STATE(146), + [sym_goto_statement] = STATE(146), + [sym_seh_try_statement] = STATE(146), + [sym_seh_leave_statement] = STATE(146), + [sym_expression] = STATE(5351), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9322), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(146), + [sym_co_return_statement] = STATE(146), + [sym_co_yield_statement] = STATE(146), + [sym_throw_statement] = STATE(146), + [sym_try_statement] = STATE(146), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6657), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_attributed_declarator_repeat1] = STATE(253), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_case_statement_repeat1] = STATE(146), + [sym_identifier] = ACTIONS(1995), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(2001), - [anon_sym___extension__] = ACTIONS(2003), - [anon_sym_typedef] = ACTIONS(2005), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1997), + [anon_sym___extension__] = ACTIONS(1999), + [anon_sym_typedef] = ACTIONS(2001), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym___declspec] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(2007), + [anon_sym_LBRACE] = ACTIONS(2003), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -83992,18 +74293,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(71), [anon_sym_struct] = ACTIONS(73), [anon_sym_union] = ACTIONS(75), - [anon_sym_if] = ACTIONS(2009), - [anon_sym_else] = ACTIONS(1544), - [anon_sym_switch] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_do] = ACTIONS(2015), - [anon_sym_for] = ACTIONS(2017), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2021), - [anon_sym_continue] = ACTIONS(2023), - [anon_sym_goto] = ACTIONS(2025), - [anon_sym___try] = ACTIONS(2027), - [anon_sym___leave] = ACTIONS(2029), + [anon_sym_if] = ACTIONS(2005), + [anon_sym_else] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(2007), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_do] = ACTIONS(2011), + [anon_sym_for] = ACTIONS(2013), + [anon_sym_return] = ACTIONS(2015), + [anon_sym_break] = ACTIONS(2017), + [anon_sym_continue] = ACTIONS(2019), + [anon_sym_goto] = ACTIONS(2021), + [anon_sym___try] = ACTIONS(2023), + [anon_sym___leave] = ACTIONS(2025), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -84039,12 +74340,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(2031), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(2027), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(2033), - [anon_sym_co_return] = ACTIONS(2035), - [anon_sym_co_yield] = ACTIONS(2037), + [anon_sym_throw] = ACTIONS(2029), + [anon_sym_co_return] = ACTIONS(2031), + [anon_sym_co_yield] = ACTIONS(2033), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -84058,320 +74359,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [148] = { - [sym_declaration] = STATE(148), - [sym_type_definition] = STATE(148), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6382), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(1011), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_compound_statement] = STATE(148), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(148), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym_seh_try_statement] = STATE(148), - [sym_seh_leave_statement] = STATE(148), - [sym_expression] = STATE(5875), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10185), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(148), - [sym_co_return_statement] = STATE(148), - [sym_co_yield_statement] = STATE(148), - [sym_throw_statement] = STATE(148), - [sym_try_statement] = STATE(148), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7078), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(195), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_case_statement_repeat1] = STATE(148), - [sym_identifier] = ACTIONS(2039), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1557), - [anon_sym_LPAREN2] = ACTIONS(1560), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1566), - [anon_sym_PLUS] = ACTIONS(1566), - [anon_sym_STAR] = ACTIONS(1569), - [anon_sym_AMP] = ACTIONS(1569), - [anon_sym_SEMI] = ACTIONS(2042), - [anon_sym___extension__] = ACTIONS(2045), - [anon_sym_typedef] = ACTIONS(2048), - [anon_sym_extern] = ACTIONS(1586), - [anon_sym___attribute__] = ACTIONS(1589), - [anon_sym_COLON_COLON] = ACTIONS(1592), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1595), - [anon_sym___declspec] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(2051), - [anon_sym_signed] = ACTIONS(1604), - [anon_sym_unsigned] = ACTIONS(1604), - [anon_sym_long] = ACTIONS(1604), - [anon_sym_short] = ACTIONS(1604), - [anon_sym_LBRACK] = ACTIONS(1607), - [anon_sym_static] = ACTIONS(1586), - [anon_sym_register] = ACTIONS(1586), - [anon_sym_inline] = ACTIONS(1586), - [anon_sym___inline] = ACTIONS(1586), - [anon_sym___inline__] = ACTIONS(1586), - [anon_sym___forceinline] = ACTIONS(1586), - [anon_sym_thread_local] = ACTIONS(1586), - [anon_sym___thread] = ACTIONS(1586), - [anon_sym_const] = ACTIONS(1610), - [anon_sym_constexpr] = ACTIONS(1610), - [anon_sym_volatile] = ACTIONS(1610), - [anon_sym_restrict] = ACTIONS(1610), - [anon_sym___restrict__] = ACTIONS(1610), - [anon_sym__Atomic] = ACTIONS(1610), - [anon_sym__Noreturn] = ACTIONS(1610), - [anon_sym_noreturn] = ACTIONS(1610), - [anon_sym_mutable] = ACTIONS(1610), - [anon_sym_constinit] = ACTIONS(1610), - [anon_sym_consteval] = ACTIONS(1610), - [sym_primitive_type] = ACTIONS(1613), - [anon_sym_enum] = ACTIONS(1616), - [anon_sym_class] = ACTIONS(1619), - [anon_sym_struct] = ACTIONS(1622), - [anon_sym_union] = ACTIONS(1625), - [anon_sym_if] = ACTIONS(2054), - [anon_sym_else] = ACTIONS(1555), - [anon_sym_switch] = ACTIONS(2057), - [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___try] = ACTIONS(2081), - [anon_sym___leave] = ACTIONS(2084), - [anon_sym_not] = ACTIONS(1566), - [anon_sym_compl] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1661), - [anon_sym_PLUS_PLUS] = ACTIONS(1661), - [anon_sym_sizeof] = ACTIONS(1664), - [anon_sym___alignof__] = ACTIONS(1667), - [anon_sym___alignof] = ACTIONS(1667), - [anon_sym__alignof] = ACTIONS(1667), - [anon_sym_alignof] = ACTIONS(1667), - [anon_sym__Alignof] = ACTIONS(1667), - [anon_sym_offsetof] = ACTIONS(1670), - [anon_sym__Generic] = ACTIONS(1673), - [anon_sym_asm] = ACTIONS(1676), - [anon_sym___asm__] = ACTIONS(1676), - [sym_number_literal] = ACTIONS(1679), - [anon_sym_L_SQUOTE] = ACTIONS(1682), - [anon_sym_u_SQUOTE] = ACTIONS(1682), - [anon_sym_U_SQUOTE] = ACTIONS(1682), - [anon_sym_u8_SQUOTE] = ACTIONS(1682), - [anon_sym_SQUOTE] = ACTIONS(1682), - [anon_sym_L_DQUOTE] = ACTIONS(1685), - [anon_sym_u_DQUOTE] = ACTIONS(1685), - [anon_sym_U_DQUOTE] = ACTIONS(1685), - [anon_sym_u8_DQUOTE] = ACTIONS(1685), - [anon_sym_DQUOTE] = ACTIONS(1685), - [sym_true] = ACTIONS(1688), - [sym_false] = ACTIONS(1688), - [anon_sym_NULL] = ACTIONS(1691), - [anon_sym_nullptr] = ACTIONS(1691), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1694), - [anon_sym_decltype] = ACTIONS(1697), - [anon_sym_virtual] = ACTIONS(1700), - [anon_sym_alignas] = ACTIONS(1703), - [anon_sym_typename] = ACTIONS(1706), - [anon_sym_template] = ACTIONS(1709), - [anon_sym_try] = ACTIONS(2087), - [anon_sym_delete] = ACTIONS(1715), - [anon_sym_throw] = ACTIONS(2090), - [anon_sym_co_return] = ACTIONS(2093), - [anon_sym_co_yield] = ACTIONS(2096), - [anon_sym_R_DQUOTE] = ACTIONS(1727), - [anon_sym_LR_DQUOTE] = ACTIONS(1727), - [anon_sym_uR_DQUOTE] = ACTIONS(1727), - [anon_sym_UR_DQUOTE] = ACTIONS(1727), - [anon_sym_u8R_DQUOTE] = ACTIONS(1727), - [anon_sym_co_await] = ACTIONS(1730), - [anon_sym_new] = ACTIONS(1733), - [anon_sym_requires] = ACTIONS(1736), - [sym_this] = ACTIONS(1688), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1739), - [sym_semgrep_named_ellipsis] = ACTIONS(1742), - }, - [149] = { - [sym_declaration] = STATE(148), - [sym_type_definition] = STATE(148), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6382), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(1011), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_compound_statement] = STATE(148), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_attributed_statement] = STATE(148), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym_seh_try_statement] = STATE(148), - [sym_seh_leave_statement] = STATE(148), - [sym_expression] = STATE(5875), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10185), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(148), - [sym_co_return_statement] = STATE(148), - [sym_co_yield_statement] = STATE(148), - [sym_throw_statement] = STATE(148), - [sym_try_statement] = STATE(148), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7078), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_attributed_declarator_repeat1] = STATE(195), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_case_statement_repeat1] = STATE(148), - [sym_identifier] = ACTIONS(1999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [sym_declaration] = STATE(325), + [sym_type_definition] = STATE(4828), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5925), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_expression_statement] = STATE(4828), + [sym_for_statement_body] = STATE(9220), + [sym_expression] = STATE(5284), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10089), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4249), + [sym_alias_declaration] = STATE(4828), + [sym_for_range_loop_body] = STATE(9221), + [sym_init_statement] = STATE(2213), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6657), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(2001), - [anon_sym___extension__] = ACTIONS(2003), - [anon_sym_typedef] = ACTIONS(2005), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(2097), + [anon_sym___extension__] = ACTIONS(2099), + [anon_sym_typedef] = ACTIONS(2101), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(2007), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -84396,18 +74477,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(71), [anon_sym_struct] = ACTIONS(73), [anon_sym_union] = ACTIONS(75), - [anon_sym_if] = ACTIONS(2009), - [anon_sym_else] = ACTIONS(1548), - [anon_sym_switch] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_do] = ACTIONS(2015), - [anon_sym_for] = ACTIONS(2017), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2021), - [anon_sym_continue] = ACTIONS(2023), - [anon_sym_goto] = ACTIONS(2025), - [anon_sym___try] = ACTIONS(2027), - [anon_sym___leave] = ACTIONS(2029), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -84443,12 +74512,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(2031), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(2033), - [anon_sym_co_return] = ACTIONS(2035), - [anon_sym_co_yield] = ACTIONS(2037), + [anon_sym_using] = ACTIONS(2105), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -84461,101 +74527,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [150] = { - [sym_declaration] = STATE(311), - [sym_type_definition] = STATE(5403), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6414), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_expression_statement] = STATE(5403), - [sym_for_statement_body] = STATE(9766), - [sym_expression] = STATE(5879), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9840), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5251), - [sym_alias_declaration] = STATE(5403), - [sym_for_range_loop_body] = STATE(9767), - [sym_init_statement] = STATE(2095), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7078), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(2099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [149] = { + [sym_declaration] = STATE(325), + [sym_type_definition] = STATE(4828), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5925), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_expression_statement] = STATE(4828), + [sym_for_statement_body] = STATE(9892), + [sym_expression] = STATE(5284), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10089), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4249), + [sym_alias_declaration] = STATE(4828), + [sym_for_range_loop_body] = STATE(9978), + [sym_init_statement] = STATE(2213), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6657), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(2101), - [anon_sym___extension__] = ACTIONS(2103), - [anon_sym_typedef] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(2097), + [anon_sym___extension__] = ACTIONS(2099), + [anon_sym_typedef] = ACTIONS(2101), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -84615,9 +74681,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), - [anon_sym_using] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2105), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -84630,101 +74696,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [151] = { - [sym_declaration] = STATE(311), - [sym_type_definition] = STATE(5403), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6414), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_expression_statement] = STATE(5403), - [sym_for_statement_body] = STATE(9801), - [sym_expression] = STATE(5879), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9840), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5251), - [sym_alias_declaration] = STATE(5403), - [sym_for_range_loop_body] = STATE(9853), - [sym_init_statement] = STATE(2095), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7078), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(2099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [150] = { + [sym_declaration] = STATE(325), + [sym_type_definition] = STATE(4828), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5925), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_expression_statement] = STATE(4828), + [sym_for_statement_body] = STATE(9210), + [sym_expression] = STATE(5284), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10089), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4249), + [sym_alias_declaration] = STATE(4828), + [sym_for_range_loop_body] = STATE(9226), + [sym_init_statement] = STATE(2213), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6657), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(2101), - [anon_sym___extension__] = ACTIONS(2103), - [anon_sym_typedef] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(2097), + [anon_sym___extension__] = ACTIONS(2099), + [anon_sym_typedef] = ACTIONS(2101), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -84784,9 +74850,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), - [anon_sym_using] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2105), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -84799,101 +74865,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [152] = { - [sym_declaration] = STATE(311), - [sym_type_definition] = STATE(5403), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6414), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_expression_statement] = STATE(5403), - [sym_for_statement_body] = STATE(10527), - [sym_expression] = STATE(5879), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9840), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5251), - [sym_alias_declaration] = STATE(5403), - [sym_for_range_loop_body] = STATE(9989), - [sym_init_statement] = STATE(2095), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7078), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(2099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [151] = { + [sym_declaration] = STATE(325), + [sym_type_definition] = STATE(4828), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5925), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_expression_statement] = STATE(4828), + [sym_for_statement_body] = STATE(9648), + [sym_expression] = STATE(5284), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10089), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4249), + [sym_alias_declaration] = STATE(4828), + [sym_for_range_loop_body] = STATE(9649), + [sym_init_statement] = STATE(2213), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6657), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(2101), - [anon_sym___extension__] = ACTIONS(2103), - [anon_sym_typedef] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(2097), + [anon_sym___extension__] = ACTIONS(2099), + [anon_sym_typedef] = ACTIONS(2101), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -84953,9 +75019,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), - [anon_sym_using] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2105), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -84968,101 +75034,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [153] = { - [sym_declaration] = STATE(311), - [sym_type_definition] = STATE(5403), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6414), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_expression_statement] = STATE(5403), - [sym_for_statement_body] = STATE(9841), - [sym_expression] = STATE(5879), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9840), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5251), - [sym_alias_declaration] = STATE(5403), - [sym_for_range_loop_body] = STATE(9842), - [sym_init_statement] = STATE(2095), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7078), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(2099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [152] = { + [sym_declaration] = STATE(325), + [sym_type_definition] = STATE(4828), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5925), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_expression_statement] = STATE(4828), + [sym_for_statement_body] = STATE(10055), + [sym_expression] = STATE(5284), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10089), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4249), + [sym_alias_declaration] = STATE(4828), + [sym_for_range_loop_body] = STATE(10070), + [sym_init_statement] = STATE(2213), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6657), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(2101), - [anon_sym___extension__] = ACTIONS(2103), - [anon_sym_typedef] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(2097), + [anon_sym___extension__] = ACTIONS(2099), + [anon_sym_typedef] = ACTIONS(2101), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -85122,9 +75188,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), - [anon_sym_using] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2105), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -85137,101 +75203,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [154] = { - [sym_declaration] = STATE(311), - [sym_type_definition] = STATE(5403), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6414), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_expression_statement] = STATE(5403), - [sym_for_statement_body] = STATE(10168), - [sym_expression] = STATE(5879), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9840), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5251), - [sym_alias_declaration] = STATE(5403), - [sym_for_range_loop_body] = STATE(10169), - [sym_init_statement] = STATE(2095), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7078), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(2099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [153] = { + [sym_declaration] = STATE(325), + [sym_type_definition] = STATE(4828), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5925), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_expression_statement] = STATE(4828), + [sym_for_statement_body] = STATE(9386), + [sym_expression] = STATE(5284), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10089), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4249), + [sym_alias_declaration] = STATE(4828), + [sym_for_range_loop_body] = STATE(9435), + [sym_init_statement] = STATE(2213), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6657), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(2101), - [anon_sym___extension__] = ACTIONS(2103), - [anon_sym_typedef] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(2097), + [anon_sym___extension__] = ACTIONS(2099), + [anon_sym_typedef] = ACTIONS(2101), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -85291,9 +75357,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), - [anon_sym_using] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2105), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -85306,101 +75372,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [155] = { - [sym_declaration] = STATE(311), - [sym_type_definition] = STATE(5403), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6414), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_expression_statement] = STATE(5403), - [sym_for_statement_body] = STATE(10065), - [sym_expression] = STATE(5879), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9840), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5251), - [sym_alias_declaration] = STATE(5403), - [sym_for_range_loop_body] = STATE(10068), - [sym_init_statement] = STATE(2095), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7078), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(2099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [154] = { + [sym_declaration] = STATE(325), + [sym_type_definition] = STATE(4828), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5925), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_expression_statement] = STATE(4828), + [sym_for_statement_body] = STATE(9193), + [sym_expression] = STATE(5284), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10089), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4249), + [sym_alias_declaration] = STATE(4828), + [sym_for_range_loop_body] = STATE(9194), + [sym_init_statement] = STATE(2213), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6657), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(2101), - [anon_sym___extension__] = ACTIONS(2103), - [anon_sym_typedef] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(2097), + [anon_sym___extension__] = ACTIONS(2099), + [anon_sym_typedef] = ACTIONS(2101), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -85460,9 +75526,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), - [anon_sym_using] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2105), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -85475,101 +75541,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [156] = { - [sym_declaration] = STATE(311), - [sym_type_definition] = STATE(5403), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6414), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_expression_statement] = STATE(5403), - [sym_for_statement_body] = STATE(9674), - [sym_expression] = STATE(5879), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9840), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5251), - [sym_alias_declaration] = STATE(5403), - [sym_for_range_loop_body] = STATE(9675), - [sym_init_statement] = STATE(2095), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7078), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(2099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [155] = { + [sym_declaration] = STATE(1778), + [sym_type_definition] = STATE(1778), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5906), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_expression_statement] = STATE(1778), + [sym_expression] = STATE(5035), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9073), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4249), + [sym_alias_declaration] = STATE(1778), + [sym_init_statement] = STATE(175), + [sym_condition_declaration] = STATE(9672), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6657), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(2101), - [anon_sym___extension__] = ACTIONS(2103), - [anon_sym_typedef] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1997), + [anon_sym___extension__] = ACTIONS(1999), + [anon_sym_typedef] = ACTIONS(2001), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -85629,9 +75694,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), - [anon_sym_using] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2107), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -85644,100 +75709,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [157] = { - [sym_declaration] = STATE(1808), - [sym_type_definition] = STATE(1808), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6389), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_expression_statement] = STATE(1808), - [sym_expression] = STATE(5471), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9185), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5251), - [sym_alias_declaration] = STATE(1808), - [sym_init_statement] = STATE(178), - [sym_condition_declaration] = STATE(10018), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7078), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(2099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [156] = { + [sym_declaration_modifiers] = STATE(2412), + [sym_declaration_specifiers] = STATE(4711), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_compound_statement] = STATE(8188), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_parameter_declaration] = STATE(8485), + [sym_expression] = STATE(4989), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8188), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_optional_parameter_declaration] = STATE(8485), + [sym_variadic_parameter_declaration] = STATE(8485), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6576), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_declaration_specifiers_repeat1] = STATE(2412), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(2109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2111), + [anon_sym_RPAREN] = ACTIONS(2113), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym___extension__] = ACTIONS(2113), - [anon_sym_typedef] = ACTIONS(2115), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(2115), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(2117), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -85758,10 +75821,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), [sym_primitive_type] = ACTIONS(67), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(2119), + [anon_sym_class] = ACTIONS(2121), + [anon_sym_struct] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2125), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -85796,10 +75859,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_typename] = ACTIONS(2127), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), - [anon_sym_using] = ACTIONS(2117), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -85812,263 +75874,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [158] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(5181), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_parameter_declaration] = STATE(8827), - [sym_expression] = STATE(3880), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9345), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_optional_parameter_declaration] = STATE(8827), - [sym_variadic_parameter_declaration] = STATE(8827), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_unary_left_fold] = STATE(10359), - [sym_unary_right_fold] = STATE(10359), - [sym_binary_fold] = STATE(10359), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7162), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(2119), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2121), - [anon_sym_RPAREN] = ACTIONS(2123), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym___extension__] = ACTIONS(65), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(2135), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), - }, - [159] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(5181), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_parameter_declaration] = STATE(8827), - [sym_expression] = STATE(3871), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9345), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_optional_parameter_declaration] = STATE(8827), - [sym_variadic_parameter_declaration] = STATE(8827), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_unary_left_fold] = STATE(10656), - [sym_unary_right_fold] = STATE(10656), - [sym_binary_fold] = STATE(10656), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7162), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(2119), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2121), - [anon_sym_RPAREN] = ACTIONS(2123), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), + [157] = { + [sym_declaration_modifiers] = STATE(2412), + [sym_declaration_specifiers] = STATE(4711), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_parameter_declaration] = STATE(8424), + [sym_expression] = STATE(3586), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8733), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_optional_parameter_declaration] = STATE(8424), + [sym_variadic_parameter_declaration] = STATE(8424), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_unary_left_fold] = STATE(9598), + [sym_unary_right_fold] = STATE(9598), + [sym_binary_fold] = STATE(9598), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6673), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [aux_sym_declaration_specifiers_repeat1] = STATE(2412), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(2129), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2131), + [anon_sym_RPAREN] = ACTIONS(2133), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -86088,152 +75985,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(2135), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), + [sym_primitive_type] = ACTIONS(2145), + [anon_sym_enum] = ACTIONS(2119), + [anon_sym_class] = ACTIONS(2121), + [anon_sym_struct] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), + [anon_sym_typename] = ACTIONS(2127), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), }, - [160] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(5181), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_parameter_declaration] = STATE(8827), - [sym_expression] = STATE(3812), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9345), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_optional_parameter_declaration] = STATE(8827), - [sym_variadic_parameter_declaration] = STATE(8827), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_unary_left_fold] = STATE(9657), - [sym_unary_right_fold] = STATE(9657), - [sym_binary_fold] = STATE(9657), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7162), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(2119), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2121), - [anon_sym_RPAREN] = ACTIONS(2123), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), + [158] = { + [sym_declaration_modifiers] = STATE(2412), + [sym_declaration_specifiers] = STATE(4711), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_parameter_declaration] = STATE(8424), + [sym_expression] = STATE(3666), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8733), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_optional_parameter_declaration] = STATE(8424), + [sym_variadic_parameter_declaration] = STATE(8424), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_unary_left_fold] = STATE(9633), + [sym_unary_right_fold] = STATE(9633), + [sym_binary_fold] = STATE(9633), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6673), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [aux_sym_declaration_specifiers_repeat1] = STATE(2412), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(2129), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2131), + [anon_sym_RPAREN] = ACTIONS(2133), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -86253,152 +76150,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(2135), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), + [sym_primitive_type] = ACTIONS(2145), + [anon_sym_enum] = ACTIONS(2119), + [anon_sym_class] = ACTIONS(2121), + [anon_sym_struct] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), + [anon_sym_typename] = ACTIONS(2127), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), }, - [161] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(5181), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_parameter_declaration] = STATE(8827), - [sym_expression] = STATE(3877), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9345), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_optional_parameter_declaration] = STATE(8827), - [sym_variadic_parameter_declaration] = STATE(8827), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_unary_left_fold] = STATE(9678), - [sym_unary_right_fold] = STATE(9678), - [sym_binary_fold] = STATE(9678), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7162), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(2119), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2121), - [anon_sym_RPAREN] = ACTIONS(2123), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), + [159] = { + [sym_declaration_modifiers] = STATE(2412), + [sym_declaration_specifiers] = STATE(4711), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_parameter_declaration] = STATE(8424), + [sym_expression] = STATE(3676), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8733), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_optional_parameter_declaration] = STATE(8424), + [sym_variadic_parameter_declaration] = STATE(8424), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_unary_left_fold] = STATE(9397), + [sym_unary_right_fold] = STATE(9397), + [sym_binary_fold] = STATE(9397), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6673), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [aux_sym_declaration_specifiers_repeat1] = STATE(2412), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(2129), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2131), + [anon_sym_RPAREN] = ACTIONS(2133), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -86418,152 +76315,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(2135), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), + [sym_primitive_type] = ACTIONS(2145), + [anon_sym_enum] = ACTIONS(2119), + [anon_sym_class] = ACTIONS(2121), + [anon_sym_struct] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), + [anon_sym_typename] = ACTIONS(2127), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), }, - [162] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(5181), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_parameter_declaration] = STATE(8827), - [sym_expression] = STATE(3955), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9345), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_optional_parameter_declaration] = STATE(8827), - [sym_variadic_parameter_declaration] = STATE(8827), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_unary_left_fold] = STATE(10672), - [sym_unary_right_fold] = STATE(10672), - [sym_binary_fold] = STATE(10672), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7162), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(2119), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2121), - [anon_sym_RPAREN] = ACTIONS(2123), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), + [160] = { + [sym_declaration_modifiers] = STATE(2412), + [sym_declaration_specifiers] = STATE(4711), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_parameter_declaration] = STATE(8424), + [sym_expression] = STATE(3542), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8733), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_optional_parameter_declaration] = STATE(8424), + [sym_variadic_parameter_declaration] = STATE(8424), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_unary_left_fold] = STATE(9256), + [sym_unary_right_fold] = STATE(9256), + [sym_binary_fold] = STATE(9256), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6673), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [aux_sym_declaration_specifiers_repeat1] = STATE(2412), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(2129), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2131), + [anon_sym_RPAREN] = ACTIONS(2133), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -86583,152 +76480,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(2135), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), + [sym_primitive_type] = ACTIONS(2145), + [anon_sym_enum] = ACTIONS(2119), + [anon_sym_class] = ACTIONS(2121), + [anon_sym_struct] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), + [anon_sym_typename] = ACTIONS(2127), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), }, - [163] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(5181), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_parameter_declaration] = STATE(8827), - [sym_expression] = STATE(3853), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9345), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_optional_parameter_declaration] = STATE(8827), - [sym_variadic_parameter_declaration] = STATE(8827), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_unary_left_fold] = STATE(10545), - [sym_unary_right_fold] = STATE(10545), - [sym_binary_fold] = STATE(10545), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7162), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(2119), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2121), - [anon_sym_RPAREN] = ACTIONS(2123), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), + [161] = { + [sym_declaration_modifiers] = STATE(2412), + [sym_declaration_specifiers] = STATE(4711), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_parameter_declaration] = STATE(8424), + [sym_expression] = STATE(3614), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8733), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_optional_parameter_declaration] = STATE(8424), + [sym_variadic_parameter_declaration] = STATE(8424), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_unary_left_fold] = STATE(9216), + [sym_unary_right_fold] = STATE(9216), + [sym_binary_fold] = STATE(9216), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6673), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [aux_sym_declaration_specifiers_repeat1] = STATE(2412), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(2129), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2131), + [anon_sym_RPAREN] = ACTIONS(2133), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -86748,317 +76645,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(2135), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), + [sym_primitive_type] = ACTIONS(2145), + [anon_sym_enum] = ACTIONS(2119), + [anon_sym_class] = ACTIONS(2121), + [anon_sym_struct] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), + [anon_sym_typename] = ACTIONS(2127), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), }, - [164] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(5181), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_compound_statement] = STATE(8876), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_parameter_declaration] = STATE(8581), - [sym_expression] = STATE(5688), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(8876), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_optional_parameter_declaration] = STATE(8581), - [sym_variadic_parameter_declaration] = STATE(8581), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7169), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(2173), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2175), - [anon_sym_RPAREN] = ACTIONS(2177), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(2179), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(67), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), - }, - [165] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(5181), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_parameter_declaration] = STATE(8827), - [sym_expression] = STATE(3934), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9345), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_optional_parameter_declaration] = STATE(8827), - [sym_variadic_parameter_declaration] = STATE(8827), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_unary_left_fold] = STATE(10372), - [sym_unary_right_fold] = STATE(10372), - [sym_binary_fold] = STATE(10372), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7162), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(2119), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2121), - [anon_sym_RPAREN] = ACTIONS(2123), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), + [162] = { + [sym_declaration_modifiers] = STATE(2412), + [sym_declaration_specifiers] = STATE(4711), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_parameter_declaration] = STATE(8424), + [sym_expression] = STATE(3545), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8733), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_optional_parameter_declaration] = STATE(8424), + [sym_variadic_parameter_declaration] = STATE(8424), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_unary_left_fold] = STATE(9643), + [sym_unary_right_fold] = STATE(9643), + [sym_binary_fold] = STATE(9643), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6673), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [aux_sym_declaration_specifiers_repeat1] = STATE(2412), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(2129), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2131), + [anon_sym_RPAREN] = ACTIONS(2133), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -87078,152 +76810,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(2135), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), + [sym_primitive_type] = ACTIONS(2145), + [anon_sym_enum] = ACTIONS(2119), + [anon_sym_class] = ACTIONS(2121), + [anon_sym_struct] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), + [anon_sym_typename] = ACTIONS(2127), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), }, - [166] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(5181), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_parameter_declaration] = STATE(8827), - [sym_expression] = STATE(3915), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9345), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_optional_parameter_declaration] = STATE(8827), - [sym_variadic_parameter_declaration] = STATE(8827), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_unary_left_fold] = STATE(10143), - [sym_unary_right_fold] = STATE(10143), - [sym_binary_fold] = STATE(10143), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7162), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(2119), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2121), - [anon_sym_RPAREN] = ACTIONS(2123), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), + [163] = { + [sym_declaration_modifiers] = STATE(2412), + [sym_declaration_specifiers] = STATE(4711), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_parameter_declaration] = STATE(8424), + [sym_expression] = STATE(3652), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8733), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_optional_parameter_declaration] = STATE(8424), + [sym_variadic_parameter_declaration] = STATE(8424), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_unary_left_fold] = STATE(9313), + [sym_unary_right_fold] = STATE(9313), + [sym_binary_fold] = STATE(9313), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6673), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [aux_sym_declaration_specifiers_repeat1] = STATE(2412), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(2129), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2131), + [anon_sym_RPAREN] = ACTIONS(2133), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -87243,152 +76975,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(2135), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), + [sym_primitive_type] = ACTIONS(2145), + [anon_sym_enum] = ACTIONS(2119), + [anon_sym_class] = ACTIONS(2121), + [anon_sym_struct] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), + [anon_sym_typename] = ACTIONS(2127), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), }, - [167] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(5181), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_parameter_declaration] = STATE(8827), - [sym_expression] = STATE(3849), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9345), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_optional_parameter_declaration] = STATE(8827), - [sym_variadic_parameter_declaration] = STATE(8827), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_unary_left_fold] = STATE(9693), - [sym_unary_right_fold] = STATE(9693), - [sym_binary_fold] = STATE(9693), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7162), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(2119), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2121), - [anon_sym_RPAREN] = ACTIONS(2123), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), + [164] = { + [sym_declaration_modifiers] = STATE(2412), + [sym_declaration_specifiers] = STATE(4711), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_parameter_declaration] = STATE(8424), + [sym_expression] = STATE(3621), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8733), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_optional_parameter_declaration] = STATE(8424), + [sym_variadic_parameter_declaration] = STATE(8424), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_unary_left_fold] = STATE(9296), + [sym_unary_right_fold] = STATE(9296), + [sym_binary_fold] = STATE(9296), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6673), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [aux_sym_declaration_specifiers_repeat1] = STATE(2412), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(2129), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2131), + [anon_sym_RPAREN] = ACTIONS(2133), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -87408,152 +77140,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(2135), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), + [sym_primitive_type] = ACTIONS(2145), + [anon_sym_enum] = ACTIONS(2119), + [anon_sym_class] = ACTIONS(2121), + [anon_sym_struct] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), + [anon_sym_typename] = ACTIONS(2127), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), }, - [168] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(5181), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_parameter_declaration] = STATE(8827), - [sym_expression] = STATE(3882), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9345), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_optional_parameter_declaration] = STATE(8827), - [sym_variadic_parameter_declaration] = STATE(8827), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_unary_left_fold] = STATE(9880), - [sym_unary_right_fold] = STATE(9880), - [sym_binary_fold] = STATE(9880), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7162), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(2119), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2121), - [anon_sym_RPAREN] = ACTIONS(2123), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), + [165] = { + [sym_declaration_modifiers] = STATE(2412), + [sym_declaration_specifiers] = STATE(4711), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_parameter_declaration] = STATE(8424), + [sym_expression] = STATE(3607), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8733), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_optional_parameter_declaration] = STATE(8424), + [sym_variadic_parameter_declaration] = STATE(8424), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_unary_left_fold] = STATE(9504), + [sym_unary_right_fold] = STATE(9504), + [sym_binary_fold] = STATE(9504), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6673), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [aux_sym_declaration_specifiers_repeat1] = STATE(2412), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(2129), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2131), + [anon_sym_RPAREN] = ACTIONS(2133), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -87573,152 +77305,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(2135), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), + [sym_primitive_type] = ACTIONS(2145), + [anon_sym_enum] = ACTIONS(2119), + [anon_sym_class] = ACTIONS(2121), + [anon_sym_struct] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), + [anon_sym_typename] = ACTIONS(2127), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), }, - [169] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(5181), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_parameter_declaration] = STATE(8827), - [sym_expression] = STATE(3884), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9345), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_optional_parameter_declaration] = STATE(8827), - [sym_variadic_parameter_declaration] = STATE(8827), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_unary_left_fold] = STATE(10055), - [sym_unary_right_fold] = STATE(10055), - [sym_binary_fold] = STATE(10055), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7162), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(2119), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2121), - [anon_sym_RPAREN] = ACTIONS(2123), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), + [166] = { + [sym_declaration_modifiers] = STATE(2412), + [sym_declaration_specifiers] = STATE(4711), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_parameter_declaration] = STATE(8424), + [sym_expression] = STATE(3589), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8733), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_optional_parameter_declaration] = STATE(8424), + [sym_variadic_parameter_declaration] = STATE(8424), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_unary_left_fold] = STATE(9907), + [sym_unary_right_fold] = STATE(9907), + [sym_binary_fold] = STATE(9907), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6673), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [aux_sym_declaration_specifiers_repeat1] = STATE(2412), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(2129), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2131), + [anon_sym_RPAREN] = ACTIONS(2133), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -87738,152 +77470,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(2135), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), + [sym_primitive_type] = ACTIONS(2145), + [anon_sym_enum] = ACTIONS(2119), + [anon_sym_class] = ACTIONS(2121), + [anon_sym_struct] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), + [anon_sym_typename] = ACTIONS(2127), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), }, - [170] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(5181), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_parameter_declaration] = STATE(8827), - [sym_expression] = STATE(3857), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9345), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_optional_parameter_declaration] = STATE(8827), - [sym_variadic_parameter_declaration] = STATE(8827), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_unary_left_fold] = STATE(10159), - [sym_unary_right_fold] = STATE(10159), - [sym_binary_fold] = STATE(10159), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7162), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(2119), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2121), - [anon_sym_RPAREN] = ACTIONS(2123), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), + [167] = { + [sym_declaration_modifiers] = STATE(2412), + [sym_declaration_specifiers] = STATE(4711), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_parameter_declaration] = STATE(8424), + [sym_expression] = STATE(3574), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8733), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_optional_parameter_declaration] = STATE(8424), + [sym_variadic_parameter_declaration] = STATE(8424), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_unary_left_fold] = STATE(9507), + [sym_unary_right_fold] = STATE(9507), + [sym_binary_fold] = STATE(9507), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6673), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [aux_sym_declaration_specifiers_repeat1] = STATE(2412), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(2129), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2131), + [anon_sym_RPAREN] = ACTIONS(2133), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1532), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -87903,66 +77635,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(2135), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), + [sym_primitive_type] = ACTIONS(2145), + [anon_sym_enum] = ACTIONS(2119), + [anon_sym_class] = ACTIONS(2121), + [anon_sym_struct] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), + [anon_sym_typename] = ACTIONS(2127), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), }, - [171] = { + [168] = { [sym_identifier] = ACTIONS(2183), [aux_sym_preproc_include_token1] = ACTIONS(2183), [aux_sym_preproc_def_token1] = ACTIONS(2183), [anon_sym_DOT_DOT_DOT] = ACTIONS(2185), - [anon_sym_COMMA] = ACTIONS(2185), + [anon_sym_COMMA] = ACTIONS(2187), [aux_sym_preproc_if_token1] = ACTIONS(2183), [aux_sym_preproc_if_token2] = ACTIONS(2183), [aux_sym_preproc_ifdef_token1] = ACTIONS(2183), @@ -87978,21 +77710,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2183), [anon_sym_PLUS] = ACTIONS(2183), [anon_sym_STAR] = ACTIONS(2185), - [anon_sym_SLASH] = ACTIONS(2183), - [anon_sym_PERCENT] = ACTIONS(2185), - [anon_sym_PIPE_PIPE] = ACTIONS(2185), + [anon_sym_SLASH] = ACTIONS(2189), + [anon_sym_PERCENT] = ACTIONS(2187), + [anon_sym_PIPE_PIPE] = ACTIONS(2187), [anon_sym_AMP_AMP] = ACTIONS(2185), - [anon_sym_PIPE] = ACTIONS(2183), - [anon_sym_CARET] = ACTIONS(2185), + [anon_sym_PIPE] = ACTIONS(2189), + [anon_sym_CARET] = ACTIONS(2187), [anon_sym_AMP] = ACTIONS(2183), - [anon_sym_EQ_EQ] = ACTIONS(2185), - [anon_sym_BANG_EQ] = ACTIONS(2185), - [anon_sym_GT] = ACTIONS(2183), - [anon_sym_GT_EQ] = ACTIONS(2185), - [anon_sym_LT_EQ] = ACTIONS(2183), - [anon_sym_LT] = ACTIONS(2183), - [anon_sym_LT_LT] = ACTIONS(2185), - [anon_sym_GT_GT] = ACTIONS(2185), + [anon_sym_EQ_EQ] = ACTIONS(2187), + [anon_sym_BANG_EQ] = ACTIONS(2187), + [anon_sym_GT] = ACTIONS(2189), + [anon_sym_GT_EQ] = ACTIONS(2187), + [anon_sym_LT_EQ] = ACTIONS(2189), + [anon_sym_LT] = ACTIONS(2189), + [anon_sym_LT_LT] = ACTIONS(2187), + [anon_sym_GT_GT] = ACTIONS(2187), [anon_sym_SEMI] = ACTIONS(2185), [anon_sym___extension__] = ACTIONS(2183), [anon_sym_typedef] = ACTIONS(2183), @@ -88051,16 +77783,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(2183), [anon_sym___try] = ACTIONS(2183), [anon_sym___leave] = ACTIONS(2183), - [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_QMARK] = ACTIONS(2187), [anon_sym_not] = ACTIONS(2183), [anon_sym_compl] = ACTIONS(2183), - [anon_sym_LT_EQ_GT] = ACTIONS(2185), - [anon_sym_or] = ACTIONS(2183), - [anon_sym_and] = ACTIONS(2183), - [anon_sym_bitor] = ACTIONS(2183), - [anon_sym_xor] = ACTIONS(2183), - [anon_sym_bitand] = ACTIONS(2183), - [anon_sym_not_eq] = ACTIONS(2183), + [anon_sym_LT_EQ_GT] = ACTIONS(2187), + [anon_sym_or] = ACTIONS(2189), + [anon_sym_and] = ACTIONS(2189), + [anon_sym_bitor] = ACTIONS(2189), + [anon_sym_xor] = ACTIONS(2189), + [anon_sym_bitand] = ACTIONS(2189), + [anon_sym_not_eq] = ACTIONS(2189), [anon_sym_DASH_DASH] = ACTIONS(2185), [anon_sym_PLUS_PLUS] = ACTIONS(2185), [anon_sym_sizeof] = ACTIONS(2183), @@ -88073,9 +77805,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(2183), [anon_sym_asm] = ACTIONS(2183), [anon_sym___asm__] = ACTIONS(2183), - [anon_sym_DOT] = ACTIONS(2183), - [anon_sym_DOT_STAR] = ACTIONS(2185), - [anon_sym_DASH_GT] = ACTIONS(2185), + [anon_sym_DOT] = ACTIONS(2189), + [anon_sym_DOT_STAR] = ACTIONS(2187), + [anon_sym_DASH_GT] = ACTIONS(2187), [sym_number_literal] = ACTIONS(2185), [anon_sym_L_SQUOTE] = ACTIONS(2185), [anon_sym_u_SQUOTE] = ACTIONS(2185), @@ -88121,176 +77853,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2185), [sym_semgrep_named_ellipsis] = ACTIONS(2185), }, - [172] = { - [sym_identifier] = ACTIONS(2187), - [aux_sym_preproc_include_token1] = ACTIONS(2187), - [aux_sym_preproc_def_token1] = ACTIONS(2187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2189), - [anon_sym_COMMA] = ACTIONS(2191), - [aux_sym_preproc_if_token1] = ACTIONS(2187), - [aux_sym_preproc_if_token2] = ACTIONS(2187), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2187), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2187), - [aux_sym_preproc_else_token1] = ACTIONS(2187), - [aux_sym_preproc_elif_token1] = ACTIONS(2187), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2187), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2187), - [sym_preproc_directive] = ACTIONS(2187), - [anon_sym_LPAREN2] = ACTIONS(2189), - [anon_sym_BANG] = ACTIONS(2187), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_DASH] = ACTIONS(2187), - [anon_sym_PLUS] = ACTIONS(2187), - [anon_sym_STAR] = ACTIONS(2189), - [anon_sym_SLASH] = ACTIONS(2193), - [anon_sym_PERCENT] = ACTIONS(2191), - [anon_sym_PIPE_PIPE] = ACTIONS(2191), - [anon_sym_AMP_AMP] = ACTIONS(2189), - [anon_sym_PIPE] = ACTIONS(2193), - [anon_sym_CARET] = ACTIONS(2191), - [anon_sym_AMP] = ACTIONS(2187), - [anon_sym_EQ_EQ] = ACTIONS(2191), - [anon_sym_BANG_EQ] = ACTIONS(2191), - [anon_sym_GT] = ACTIONS(2193), - [anon_sym_GT_EQ] = ACTIONS(2191), - [anon_sym_LT_EQ] = ACTIONS(2193), - [anon_sym_LT] = ACTIONS(2193), - [anon_sym_LT_LT] = ACTIONS(2191), - [anon_sym_GT_GT] = ACTIONS(2191), - [anon_sym_SEMI] = ACTIONS(2189), - [anon_sym___extension__] = ACTIONS(2187), - [anon_sym_typedef] = ACTIONS(2187), - [anon_sym_extern] = ACTIONS(2187), - [anon_sym___attribute__] = ACTIONS(2187), - [anon_sym_COLON_COLON] = ACTIONS(2189), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2189), - [anon_sym___declspec] = ACTIONS(2187), - [anon_sym___based] = ACTIONS(2187), - [anon_sym___cdecl] = ACTIONS(2187), - [anon_sym___clrcall] = ACTIONS(2187), - [anon_sym___stdcall] = ACTIONS(2187), - [anon_sym___fastcall] = ACTIONS(2187), - [anon_sym___thiscall] = ACTIONS(2187), - [anon_sym___vectorcall] = ACTIONS(2187), - [anon_sym_LBRACE] = ACTIONS(2189), - [anon_sym_signed] = ACTIONS(2187), - [anon_sym_unsigned] = ACTIONS(2187), - [anon_sym_long] = ACTIONS(2187), - [anon_sym_short] = ACTIONS(2187), - [anon_sym_LBRACK] = ACTIONS(2187), - [anon_sym_static] = ACTIONS(2187), - [anon_sym_register] = ACTIONS(2187), - [anon_sym_inline] = ACTIONS(2187), - [anon_sym___inline] = ACTIONS(2187), - [anon_sym___inline__] = ACTIONS(2187), - [anon_sym___forceinline] = ACTIONS(2187), - [anon_sym_thread_local] = ACTIONS(2187), - [anon_sym___thread] = ACTIONS(2187), - [anon_sym_const] = ACTIONS(2187), - [anon_sym_constexpr] = ACTIONS(2187), - [anon_sym_volatile] = ACTIONS(2187), - [anon_sym_restrict] = ACTIONS(2187), - [anon_sym___restrict__] = ACTIONS(2187), - [anon_sym__Atomic] = ACTIONS(2187), - [anon_sym__Noreturn] = ACTIONS(2187), - [anon_sym_noreturn] = ACTIONS(2187), - [anon_sym_mutable] = ACTIONS(2187), - [anon_sym_constinit] = ACTIONS(2187), - [anon_sym_consteval] = ACTIONS(2187), - [sym_primitive_type] = ACTIONS(2187), - [anon_sym_enum] = ACTIONS(2187), - [anon_sym_class] = ACTIONS(2187), - [anon_sym_struct] = ACTIONS(2187), - [anon_sym_union] = ACTIONS(2187), - [anon_sym_if] = ACTIONS(2187), - [anon_sym_switch] = ACTIONS(2187), - [anon_sym_case] = ACTIONS(2187), - [anon_sym_default] = ACTIONS(2187), - [anon_sym_while] = ACTIONS(2187), - [anon_sym_do] = ACTIONS(2187), - [anon_sym_for] = ACTIONS(2187), - [anon_sym_return] = ACTIONS(2187), - [anon_sym_break] = ACTIONS(2187), - [anon_sym_continue] = ACTIONS(2187), - [anon_sym_goto] = ACTIONS(2187), - [anon_sym___try] = ACTIONS(2187), - [anon_sym___leave] = ACTIONS(2187), - [anon_sym_QMARK] = ACTIONS(2191), - [anon_sym_not] = ACTIONS(2187), - [anon_sym_compl] = ACTIONS(2187), - [anon_sym_LT_EQ_GT] = ACTIONS(2191), - [anon_sym_or] = ACTIONS(2193), - [anon_sym_and] = ACTIONS(2193), - [anon_sym_bitor] = ACTIONS(2193), - [anon_sym_xor] = ACTIONS(2193), - [anon_sym_bitand] = ACTIONS(2193), - [anon_sym_not_eq] = ACTIONS(2193), - [anon_sym_DASH_DASH] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2189), - [anon_sym_sizeof] = ACTIONS(2187), - [anon_sym___alignof__] = ACTIONS(2187), - [anon_sym___alignof] = ACTIONS(2187), - [anon_sym__alignof] = ACTIONS(2187), - [anon_sym_alignof] = ACTIONS(2187), - [anon_sym__Alignof] = ACTIONS(2187), - [anon_sym_offsetof] = ACTIONS(2187), - [anon_sym__Generic] = ACTIONS(2187), - [anon_sym_asm] = ACTIONS(2187), - [anon_sym___asm__] = ACTIONS(2187), - [anon_sym_DOT] = ACTIONS(2193), - [anon_sym_DOT_STAR] = ACTIONS(2191), - [anon_sym_DASH_GT] = ACTIONS(2191), - [sym_number_literal] = ACTIONS(2189), - [anon_sym_L_SQUOTE] = ACTIONS(2189), - [anon_sym_u_SQUOTE] = ACTIONS(2189), - [anon_sym_U_SQUOTE] = ACTIONS(2189), - [anon_sym_u8_SQUOTE] = ACTIONS(2189), - [anon_sym_SQUOTE] = ACTIONS(2189), - [anon_sym_L_DQUOTE] = ACTIONS(2189), - [anon_sym_u_DQUOTE] = ACTIONS(2189), - [anon_sym_U_DQUOTE] = ACTIONS(2189), - [anon_sym_u8_DQUOTE] = ACTIONS(2189), - [anon_sym_DQUOTE] = ACTIONS(2189), - [sym_true] = ACTIONS(2187), - [sym_false] = ACTIONS(2187), - [anon_sym_NULL] = ACTIONS(2187), - [anon_sym_nullptr] = ACTIONS(2187), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2187), - [anon_sym_decltype] = ACTIONS(2187), - [anon_sym_virtual] = ACTIONS(2187), - [anon_sym_alignas] = ACTIONS(2187), - [anon_sym_explicit] = ACTIONS(2187), - [anon_sym_typename] = ACTIONS(2187), - [anon_sym_template] = ACTIONS(2187), - [anon_sym_operator] = ACTIONS(2187), - [anon_sym_try] = ACTIONS(2187), - [anon_sym_delete] = ACTIONS(2187), - [anon_sym_throw] = ACTIONS(2187), - [anon_sym_namespace] = ACTIONS(2187), - [anon_sym_using] = ACTIONS(2187), - [anon_sym_static_assert] = ACTIONS(2187), - [anon_sym_concept] = ACTIONS(2187), - [anon_sym_co_return] = ACTIONS(2187), - [anon_sym_co_yield] = ACTIONS(2187), - [anon_sym_R_DQUOTE] = ACTIONS(2189), - [anon_sym_LR_DQUOTE] = ACTIONS(2189), - [anon_sym_uR_DQUOTE] = ACTIONS(2189), - [anon_sym_UR_DQUOTE] = ACTIONS(2189), - [anon_sym_u8R_DQUOTE] = ACTIONS(2189), - [anon_sym_co_await] = ACTIONS(2187), - [anon_sym_new] = ACTIONS(2187), - [anon_sym_requires] = ACTIONS(2187), - [sym_this] = ACTIONS(2187), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2189), - [sym_semgrep_named_ellipsis] = ACTIONS(2189), + [169] = { + [sym_identifier] = ACTIONS(2191), + [aux_sym_preproc_include_token1] = ACTIONS(2191), + [aux_sym_preproc_def_token1] = ACTIONS(2191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2193), + [anon_sym_COMMA] = ACTIONS(2193), + [aux_sym_preproc_if_token1] = ACTIONS(2191), + [aux_sym_preproc_if_token2] = ACTIONS(2191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2191), + [aux_sym_preproc_else_token1] = ACTIONS(2191), + [aux_sym_preproc_elif_token1] = ACTIONS(2191), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2191), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2191), + [sym_preproc_directive] = ACTIONS(2191), + [anon_sym_LPAREN2] = ACTIONS(2193), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_STAR] = ACTIONS(2193), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_PERCENT] = ACTIONS(2193), + [anon_sym_PIPE_PIPE] = ACTIONS(2193), + [anon_sym_AMP_AMP] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2193), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_EQ_EQ] = ACTIONS(2193), + [anon_sym_BANG_EQ] = ACTIONS(2193), + [anon_sym_GT] = ACTIONS(2191), + [anon_sym_GT_EQ] = ACTIONS(2193), + [anon_sym_LT_EQ] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_LT_LT] = ACTIONS(2193), + [anon_sym_GT_GT] = ACTIONS(2193), + [anon_sym_SEMI] = ACTIONS(2193), + [anon_sym___extension__] = ACTIONS(2191), + [anon_sym_typedef] = ACTIONS(2191), + [anon_sym_extern] = ACTIONS(2191), + [anon_sym___attribute__] = ACTIONS(2191), + [anon_sym_COLON_COLON] = ACTIONS(2193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2193), + [anon_sym___declspec] = ACTIONS(2191), + [anon_sym___based] = ACTIONS(2191), + [anon_sym___cdecl] = ACTIONS(2191), + [anon_sym___clrcall] = ACTIONS(2191), + [anon_sym___stdcall] = ACTIONS(2191), + [anon_sym___fastcall] = ACTIONS(2191), + [anon_sym___thiscall] = ACTIONS(2191), + [anon_sym___vectorcall] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_signed] = ACTIONS(2191), + [anon_sym_unsigned] = ACTIONS(2191), + [anon_sym_long] = ACTIONS(2191), + [anon_sym_short] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_register] = ACTIONS(2191), + [anon_sym_inline] = ACTIONS(2191), + [anon_sym___inline] = ACTIONS(2191), + [anon_sym___inline__] = ACTIONS(2191), + [anon_sym___forceinline] = ACTIONS(2191), + [anon_sym_thread_local] = ACTIONS(2191), + [anon_sym___thread] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_constexpr] = ACTIONS(2191), + [anon_sym_volatile] = ACTIONS(2191), + [anon_sym_restrict] = ACTIONS(2191), + [anon_sym___restrict__] = ACTIONS(2191), + [anon_sym__Atomic] = ACTIONS(2191), + [anon_sym__Noreturn] = ACTIONS(2191), + [anon_sym_noreturn] = ACTIONS(2191), + [anon_sym_mutable] = ACTIONS(2191), + [anon_sym_constinit] = ACTIONS(2191), + [anon_sym_consteval] = ACTIONS(2191), + [sym_primitive_type] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_struct] = ACTIONS(2191), + [anon_sym_union] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_case] = ACTIONS(2191), + [anon_sym_default] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_goto] = ACTIONS(2191), + [anon_sym___try] = ACTIONS(2191), + [anon_sym___leave] = ACTIONS(2191), + [anon_sym_QMARK] = ACTIONS(2193), + [anon_sym_not] = ACTIONS(2191), + [anon_sym_compl] = ACTIONS(2191), + [anon_sym_LT_EQ_GT] = ACTIONS(2193), + [anon_sym_or] = ACTIONS(2191), + [anon_sym_and] = ACTIONS(2191), + [anon_sym_bitor] = ACTIONS(2191), + [anon_sym_xor] = ACTIONS(2191), + [anon_sym_bitand] = ACTIONS(2191), + [anon_sym_not_eq] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2193), + [anon_sym_PLUS_PLUS] = ACTIONS(2193), + [anon_sym_sizeof] = ACTIONS(2191), + [anon_sym___alignof__] = ACTIONS(2191), + [anon_sym___alignof] = ACTIONS(2191), + [anon_sym__alignof] = ACTIONS(2191), + [anon_sym_alignof] = ACTIONS(2191), + [anon_sym__Alignof] = ACTIONS(2191), + [anon_sym_offsetof] = ACTIONS(2191), + [anon_sym__Generic] = ACTIONS(2191), + [anon_sym_asm] = ACTIONS(2191), + [anon_sym___asm__] = ACTIONS(2191), + [anon_sym_DOT] = ACTIONS(2191), + [anon_sym_DOT_STAR] = ACTIONS(2193), + [anon_sym_DASH_GT] = ACTIONS(2193), + [sym_number_literal] = ACTIONS(2193), + [anon_sym_L_SQUOTE] = ACTIONS(2193), + [anon_sym_u_SQUOTE] = ACTIONS(2193), + [anon_sym_U_SQUOTE] = ACTIONS(2193), + [anon_sym_u8_SQUOTE] = ACTIONS(2193), + [anon_sym_SQUOTE] = ACTIONS(2193), + [anon_sym_L_DQUOTE] = ACTIONS(2193), + [anon_sym_u_DQUOTE] = ACTIONS(2193), + [anon_sym_U_DQUOTE] = ACTIONS(2193), + [anon_sym_u8_DQUOTE] = ACTIONS(2193), + [anon_sym_DQUOTE] = ACTIONS(2193), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [anon_sym_NULL] = ACTIONS(2191), + [anon_sym_nullptr] = ACTIONS(2191), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2191), + [anon_sym_decltype] = ACTIONS(2191), + [anon_sym_virtual] = ACTIONS(2191), + [anon_sym_alignas] = ACTIONS(2191), + [anon_sym_explicit] = ACTIONS(2191), + [anon_sym_typename] = ACTIONS(2191), + [anon_sym_template] = ACTIONS(2191), + [anon_sym_operator] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_static_assert] = ACTIONS(2191), + [anon_sym_concept] = ACTIONS(2191), + [anon_sym_co_return] = ACTIONS(2191), + [anon_sym_co_yield] = ACTIONS(2191), + [anon_sym_R_DQUOTE] = ACTIONS(2193), + [anon_sym_LR_DQUOTE] = ACTIONS(2193), + [anon_sym_uR_DQUOTE] = ACTIONS(2193), + [anon_sym_UR_DQUOTE] = ACTIONS(2193), + [anon_sym_u8R_DQUOTE] = ACTIONS(2193), + [anon_sym_co_await] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_requires] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2193), + [sym_semgrep_named_ellipsis] = ACTIONS(2193), }, - [173] = { + [170] = { [sym_identifier] = ACTIONS(2183), [aux_sym_preproc_include_token1] = ACTIONS(2183), [aux_sym_preproc_def_token1] = ACTIONS(2183), [anon_sym_DOT_DOT_DOT] = ACTIONS(2185), - [anon_sym_COMMA] = ACTIONS(2185), + [anon_sym_COMMA] = ACTIONS(2187), [aux_sym_preproc_if_token1] = ACTIONS(2183), [aux_sym_preproc_if_token2] = ACTIONS(2183), [aux_sym_preproc_ifdef_token1] = ACTIONS(2183), @@ -88304,21 +78036,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2183), [anon_sym_PLUS] = ACTIONS(2183), [anon_sym_STAR] = ACTIONS(2185), - [anon_sym_SLASH] = ACTIONS(2183), - [anon_sym_PERCENT] = ACTIONS(2185), - [anon_sym_PIPE_PIPE] = ACTIONS(2185), + [anon_sym_SLASH] = ACTIONS(2189), + [anon_sym_PERCENT] = ACTIONS(2187), + [anon_sym_PIPE_PIPE] = ACTIONS(2187), [anon_sym_AMP_AMP] = ACTIONS(2185), - [anon_sym_PIPE] = ACTIONS(2183), - [anon_sym_CARET] = ACTIONS(2185), + [anon_sym_PIPE] = ACTIONS(2189), + [anon_sym_CARET] = ACTIONS(2187), [anon_sym_AMP] = ACTIONS(2183), - [anon_sym_EQ_EQ] = ACTIONS(2185), - [anon_sym_BANG_EQ] = ACTIONS(2185), - [anon_sym_GT] = ACTIONS(2183), - [anon_sym_GT_EQ] = ACTIONS(2185), - [anon_sym_LT_EQ] = ACTIONS(2183), - [anon_sym_LT] = ACTIONS(2183), - [anon_sym_LT_LT] = ACTIONS(2185), - [anon_sym_GT_GT] = ACTIONS(2185), + [anon_sym_EQ_EQ] = ACTIONS(2187), + [anon_sym_BANG_EQ] = ACTIONS(2187), + [anon_sym_GT] = ACTIONS(2189), + [anon_sym_GT_EQ] = ACTIONS(2187), + [anon_sym_LT_EQ] = ACTIONS(2189), + [anon_sym_LT] = ACTIONS(2189), + [anon_sym_LT_LT] = ACTIONS(2187), + [anon_sym_GT_GT] = ACTIONS(2187), [anon_sym_SEMI] = ACTIONS(2185), [anon_sym___extension__] = ACTIONS(2183), [anon_sym_typedef] = ACTIONS(2183), @@ -88377,16 +78109,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(2183), [anon_sym___try] = ACTIONS(2183), [anon_sym___leave] = ACTIONS(2183), - [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_QMARK] = ACTIONS(2187), [anon_sym_not] = ACTIONS(2183), [anon_sym_compl] = ACTIONS(2183), - [anon_sym_LT_EQ_GT] = ACTIONS(2185), - [anon_sym_or] = ACTIONS(2183), - [anon_sym_and] = ACTIONS(2183), - [anon_sym_bitor] = ACTIONS(2183), - [anon_sym_xor] = ACTIONS(2183), - [anon_sym_bitand] = ACTIONS(2183), - [anon_sym_not_eq] = ACTIONS(2183), + [anon_sym_LT_EQ_GT] = ACTIONS(2187), + [anon_sym_or] = ACTIONS(2189), + [anon_sym_and] = ACTIONS(2189), + [anon_sym_bitor] = ACTIONS(2189), + [anon_sym_xor] = ACTIONS(2189), + [anon_sym_bitand] = ACTIONS(2189), + [anon_sym_not_eq] = ACTIONS(2189), [anon_sym_DASH_DASH] = ACTIONS(2185), [anon_sym_PLUS_PLUS] = ACTIONS(2185), [anon_sym_sizeof] = ACTIONS(2183), @@ -88399,9 +78131,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(2183), [anon_sym_asm] = ACTIONS(2183), [anon_sym___asm__] = ACTIONS(2183), - [anon_sym_DOT] = ACTIONS(2183), - [anon_sym_DOT_STAR] = ACTIONS(2185), - [anon_sym_DASH_GT] = ACTIONS(2185), + [anon_sym_DOT] = ACTIONS(2189), + [anon_sym_DOT_STAR] = ACTIONS(2187), + [anon_sym_DASH_GT] = ACTIONS(2187), [sym_number_literal] = ACTIONS(2185), [anon_sym_L_SQUOTE] = ACTIONS(2185), [anon_sym_u_SQUOTE] = ACTIONS(2185), @@ -88447,335 +78179,335 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2185), [sym_semgrep_named_ellipsis] = ACTIONS(2185), }, - [174] = { - [sym_identifier] = ACTIONS(2187), - [aux_sym_preproc_include_token1] = ACTIONS(2187), - [aux_sym_preproc_def_token1] = ACTIONS(2187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2189), - [anon_sym_COMMA] = ACTIONS(2191), - [aux_sym_preproc_if_token1] = ACTIONS(2187), - [aux_sym_preproc_if_token2] = ACTIONS(2187), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2187), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2187), - [aux_sym_preproc_else_token1] = ACTIONS(2187), - [aux_sym_preproc_elif_token1] = ACTIONS(2187), - [sym_preproc_directive] = ACTIONS(2187), - [anon_sym_LPAREN2] = ACTIONS(2189), - [anon_sym_BANG] = ACTIONS(2187), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_DASH] = ACTIONS(2187), - [anon_sym_PLUS] = ACTIONS(2187), - [anon_sym_STAR] = ACTIONS(2189), - [anon_sym_SLASH] = ACTIONS(2193), - [anon_sym_PERCENT] = ACTIONS(2191), - [anon_sym_PIPE_PIPE] = ACTIONS(2191), - [anon_sym_AMP_AMP] = ACTIONS(2189), - [anon_sym_PIPE] = ACTIONS(2193), - [anon_sym_CARET] = ACTIONS(2191), - [anon_sym_AMP] = ACTIONS(2187), - [anon_sym_EQ_EQ] = ACTIONS(2191), - [anon_sym_BANG_EQ] = ACTIONS(2191), - [anon_sym_GT] = ACTIONS(2193), - [anon_sym_GT_EQ] = ACTIONS(2191), - [anon_sym_LT_EQ] = ACTIONS(2193), - [anon_sym_LT] = ACTIONS(2193), - [anon_sym_LT_LT] = ACTIONS(2191), - [anon_sym_GT_GT] = ACTIONS(2191), - [anon_sym_SEMI] = ACTIONS(2189), - [anon_sym___extension__] = ACTIONS(2187), - [anon_sym_typedef] = ACTIONS(2187), - [anon_sym_extern] = ACTIONS(2187), - [anon_sym___attribute__] = ACTIONS(2187), - [anon_sym_COLON_COLON] = ACTIONS(2189), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2189), - [anon_sym___declspec] = ACTIONS(2187), - [anon_sym___based] = ACTIONS(2187), - [anon_sym___cdecl] = ACTIONS(2187), - [anon_sym___clrcall] = ACTIONS(2187), - [anon_sym___stdcall] = ACTIONS(2187), - [anon_sym___fastcall] = ACTIONS(2187), - [anon_sym___thiscall] = ACTIONS(2187), - [anon_sym___vectorcall] = ACTIONS(2187), - [anon_sym_LBRACE] = ACTIONS(2189), - [anon_sym_signed] = ACTIONS(2187), - [anon_sym_unsigned] = ACTIONS(2187), - [anon_sym_long] = ACTIONS(2187), - [anon_sym_short] = ACTIONS(2187), - [anon_sym_LBRACK] = ACTIONS(2187), - [anon_sym_static] = ACTIONS(2187), - [anon_sym_register] = ACTIONS(2187), - [anon_sym_inline] = ACTIONS(2187), - [anon_sym___inline] = ACTIONS(2187), - [anon_sym___inline__] = ACTIONS(2187), - [anon_sym___forceinline] = ACTIONS(2187), - [anon_sym_thread_local] = ACTIONS(2187), - [anon_sym___thread] = ACTIONS(2187), - [anon_sym_const] = ACTIONS(2187), - [anon_sym_constexpr] = ACTIONS(2187), - [anon_sym_volatile] = ACTIONS(2187), - [anon_sym_restrict] = ACTIONS(2187), - [anon_sym___restrict__] = ACTIONS(2187), - [anon_sym__Atomic] = ACTIONS(2187), - [anon_sym__Noreturn] = ACTIONS(2187), - [anon_sym_noreturn] = ACTIONS(2187), - [anon_sym_mutable] = ACTIONS(2187), - [anon_sym_constinit] = ACTIONS(2187), - [anon_sym_consteval] = ACTIONS(2187), - [sym_primitive_type] = ACTIONS(2187), - [anon_sym_enum] = ACTIONS(2187), - [anon_sym_class] = ACTIONS(2187), - [anon_sym_struct] = ACTIONS(2187), - [anon_sym_union] = ACTIONS(2187), - [anon_sym_if] = ACTIONS(2187), - [anon_sym_switch] = ACTIONS(2187), - [anon_sym_case] = ACTIONS(2187), - [anon_sym_default] = ACTIONS(2187), - [anon_sym_while] = ACTIONS(2187), - [anon_sym_do] = ACTIONS(2187), - [anon_sym_for] = ACTIONS(2187), - [anon_sym_return] = ACTIONS(2187), - [anon_sym_break] = ACTIONS(2187), - [anon_sym_continue] = ACTIONS(2187), - [anon_sym_goto] = ACTIONS(2187), - [anon_sym___try] = ACTIONS(2187), - [anon_sym___leave] = ACTIONS(2187), - [anon_sym_QMARK] = ACTIONS(2191), - [anon_sym_not] = ACTIONS(2187), - [anon_sym_compl] = ACTIONS(2187), - [anon_sym_LT_EQ_GT] = ACTIONS(2191), - [anon_sym_or] = ACTIONS(2193), - [anon_sym_and] = ACTIONS(2193), - [anon_sym_bitor] = ACTIONS(2193), - [anon_sym_xor] = ACTIONS(2193), - [anon_sym_bitand] = ACTIONS(2193), - [anon_sym_not_eq] = ACTIONS(2193), - [anon_sym_DASH_DASH] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2189), - [anon_sym_sizeof] = ACTIONS(2187), - [anon_sym___alignof__] = ACTIONS(2187), - [anon_sym___alignof] = ACTIONS(2187), - [anon_sym__alignof] = ACTIONS(2187), - [anon_sym_alignof] = ACTIONS(2187), - [anon_sym__Alignof] = ACTIONS(2187), - [anon_sym_offsetof] = ACTIONS(2187), - [anon_sym__Generic] = ACTIONS(2187), - [anon_sym_asm] = ACTIONS(2187), - [anon_sym___asm__] = ACTIONS(2187), - [anon_sym_DOT] = ACTIONS(2193), - [anon_sym_DOT_STAR] = ACTIONS(2191), - [anon_sym_DASH_GT] = ACTIONS(2191), - [sym_number_literal] = ACTIONS(2189), - [anon_sym_L_SQUOTE] = ACTIONS(2189), - [anon_sym_u_SQUOTE] = ACTIONS(2189), - [anon_sym_U_SQUOTE] = ACTIONS(2189), - [anon_sym_u8_SQUOTE] = ACTIONS(2189), - [anon_sym_SQUOTE] = ACTIONS(2189), - [anon_sym_L_DQUOTE] = ACTIONS(2189), - [anon_sym_u_DQUOTE] = ACTIONS(2189), - [anon_sym_U_DQUOTE] = ACTIONS(2189), - [anon_sym_u8_DQUOTE] = ACTIONS(2189), - [anon_sym_DQUOTE] = ACTIONS(2189), - [sym_true] = ACTIONS(2187), - [sym_false] = ACTIONS(2187), - [anon_sym_NULL] = ACTIONS(2187), - [anon_sym_nullptr] = ACTIONS(2187), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2187), - [anon_sym_decltype] = ACTIONS(2187), - [anon_sym_virtual] = ACTIONS(2187), - [anon_sym_alignas] = ACTIONS(2187), - [anon_sym_explicit] = ACTIONS(2187), - [anon_sym_typename] = ACTIONS(2187), - [anon_sym_template] = ACTIONS(2187), - [anon_sym_operator] = ACTIONS(2187), - [anon_sym_try] = ACTIONS(2187), - [anon_sym_delete] = ACTIONS(2187), - [anon_sym_throw] = ACTIONS(2187), - [anon_sym_namespace] = ACTIONS(2187), - [anon_sym_using] = ACTIONS(2187), - [anon_sym_static_assert] = ACTIONS(2187), - [anon_sym_concept] = ACTIONS(2187), - [anon_sym_co_return] = ACTIONS(2187), - [anon_sym_co_yield] = ACTIONS(2187), - [anon_sym_R_DQUOTE] = ACTIONS(2189), - [anon_sym_LR_DQUOTE] = ACTIONS(2189), - [anon_sym_uR_DQUOTE] = ACTIONS(2189), - [anon_sym_UR_DQUOTE] = ACTIONS(2189), - [anon_sym_u8R_DQUOTE] = ACTIONS(2189), - [anon_sym_co_await] = ACTIONS(2187), - [anon_sym_new] = ACTIONS(2187), - [anon_sym_requires] = ACTIONS(2187), - [sym_this] = ACTIONS(2187), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2189), - [sym_semgrep_named_ellipsis] = ACTIONS(2189), + [171] = { + [sym_identifier] = ACTIONS(2191), + [aux_sym_preproc_include_token1] = ACTIONS(2191), + [aux_sym_preproc_def_token1] = ACTIONS(2191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2193), + [anon_sym_COMMA] = ACTIONS(2193), + [aux_sym_preproc_if_token1] = ACTIONS(2191), + [aux_sym_preproc_if_token2] = ACTIONS(2191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2191), + [aux_sym_preproc_else_token1] = ACTIONS(2191), + [aux_sym_preproc_elif_token1] = ACTIONS(2191), + [sym_preproc_directive] = ACTIONS(2191), + [anon_sym_LPAREN2] = ACTIONS(2193), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_STAR] = ACTIONS(2193), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_PERCENT] = ACTIONS(2193), + [anon_sym_PIPE_PIPE] = ACTIONS(2193), + [anon_sym_AMP_AMP] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2193), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_EQ_EQ] = ACTIONS(2193), + [anon_sym_BANG_EQ] = ACTIONS(2193), + [anon_sym_GT] = ACTIONS(2191), + [anon_sym_GT_EQ] = ACTIONS(2193), + [anon_sym_LT_EQ] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_LT_LT] = ACTIONS(2193), + [anon_sym_GT_GT] = ACTIONS(2193), + [anon_sym_SEMI] = ACTIONS(2193), + [anon_sym___extension__] = ACTIONS(2191), + [anon_sym_typedef] = ACTIONS(2191), + [anon_sym_extern] = ACTIONS(2191), + [anon_sym___attribute__] = ACTIONS(2191), + [anon_sym_COLON_COLON] = ACTIONS(2193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2193), + [anon_sym___declspec] = ACTIONS(2191), + [anon_sym___based] = ACTIONS(2191), + [anon_sym___cdecl] = ACTIONS(2191), + [anon_sym___clrcall] = ACTIONS(2191), + [anon_sym___stdcall] = ACTIONS(2191), + [anon_sym___fastcall] = ACTIONS(2191), + [anon_sym___thiscall] = ACTIONS(2191), + [anon_sym___vectorcall] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_signed] = ACTIONS(2191), + [anon_sym_unsigned] = ACTIONS(2191), + [anon_sym_long] = ACTIONS(2191), + [anon_sym_short] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_register] = ACTIONS(2191), + [anon_sym_inline] = ACTIONS(2191), + [anon_sym___inline] = ACTIONS(2191), + [anon_sym___inline__] = ACTIONS(2191), + [anon_sym___forceinline] = ACTIONS(2191), + [anon_sym_thread_local] = ACTIONS(2191), + [anon_sym___thread] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_constexpr] = ACTIONS(2191), + [anon_sym_volatile] = ACTIONS(2191), + [anon_sym_restrict] = ACTIONS(2191), + [anon_sym___restrict__] = ACTIONS(2191), + [anon_sym__Atomic] = ACTIONS(2191), + [anon_sym__Noreturn] = ACTIONS(2191), + [anon_sym_noreturn] = ACTIONS(2191), + [anon_sym_mutable] = ACTIONS(2191), + [anon_sym_constinit] = ACTIONS(2191), + [anon_sym_consteval] = ACTIONS(2191), + [sym_primitive_type] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_struct] = ACTIONS(2191), + [anon_sym_union] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_case] = ACTIONS(2191), + [anon_sym_default] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_goto] = ACTIONS(2191), + [anon_sym___try] = ACTIONS(2191), + [anon_sym___leave] = ACTIONS(2191), + [anon_sym_QMARK] = ACTIONS(2193), + [anon_sym_not] = ACTIONS(2191), + [anon_sym_compl] = ACTIONS(2191), + [anon_sym_LT_EQ_GT] = ACTIONS(2193), + [anon_sym_or] = ACTIONS(2191), + [anon_sym_and] = ACTIONS(2191), + [anon_sym_bitor] = ACTIONS(2191), + [anon_sym_xor] = ACTIONS(2191), + [anon_sym_bitand] = ACTIONS(2191), + [anon_sym_not_eq] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2193), + [anon_sym_PLUS_PLUS] = ACTIONS(2193), + [anon_sym_sizeof] = ACTIONS(2191), + [anon_sym___alignof__] = ACTIONS(2191), + [anon_sym___alignof] = ACTIONS(2191), + [anon_sym__alignof] = ACTIONS(2191), + [anon_sym_alignof] = ACTIONS(2191), + [anon_sym__Alignof] = ACTIONS(2191), + [anon_sym_offsetof] = ACTIONS(2191), + [anon_sym__Generic] = ACTIONS(2191), + [anon_sym_asm] = ACTIONS(2191), + [anon_sym___asm__] = ACTIONS(2191), + [anon_sym_DOT] = ACTIONS(2191), + [anon_sym_DOT_STAR] = ACTIONS(2193), + [anon_sym_DASH_GT] = ACTIONS(2193), + [sym_number_literal] = ACTIONS(2193), + [anon_sym_L_SQUOTE] = ACTIONS(2193), + [anon_sym_u_SQUOTE] = ACTIONS(2193), + [anon_sym_U_SQUOTE] = ACTIONS(2193), + [anon_sym_u8_SQUOTE] = ACTIONS(2193), + [anon_sym_SQUOTE] = ACTIONS(2193), + [anon_sym_L_DQUOTE] = ACTIONS(2193), + [anon_sym_u_DQUOTE] = ACTIONS(2193), + [anon_sym_U_DQUOTE] = ACTIONS(2193), + [anon_sym_u8_DQUOTE] = ACTIONS(2193), + [anon_sym_DQUOTE] = ACTIONS(2193), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [anon_sym_NULL] = ACTIONS(2191), + [anon_sym_nullptr] = ACTIONS(2191), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2191), + [anon_sym_decltype] = ACTIONS(2191), + [anon_sym_virtual] = ACTIONS(2191), + [anon_sym_alignas] = ACTIONS(2191), + [anon_sym_explicit] = ACTIONS(2191), + [anon_sym_typename] = ACTIONS(2191), + [anon_sym_template] = ACTIONS(2191), + [anon_sym_operator] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_static_assert] = ACTIONS(2191), + [anon_sym_concept] = ACTIONS(2191), + [anon_sym_co_return] = ACTIONS(2191), + [anon_sym_co_yield] = ACTIONS(2191), + [anon_sym_R_DQUOTE] = ACTIONS(2193), + [anon_sym_LR_DQUOTE] = ACTIONS(2193), + [anon_sym_uR_DQUOTE] = ACTIONS(2193), + [anon_sym_UR_DQUOTE] = ACTIONS(2193), + [anon_sym_u8R_DQUOTE] = ACTIONS(2193), + [anon_sym_co_await] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_requires] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2193), + [sym_semgrep_named_ellipsis] = ACTIONS(2193), }, - [175] = { - [sym_identifier] = ACTIONS(2187), - [aux_sym_preproc_include_token1] = ACTIONS(2187), - [aux_sym_preproc_def_token1] = ACTIONS(2187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2189), - [anon_sym_COMMA] = ACTIONS(2191), - [aux_sym_preproc_if_token1] = ACTIONS(2187), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2187), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2187), - [sym_preproc_directive] = ACTIONS(2187), - [anon_sym_LPAREN2] = ACTIONS(2189), - [anon_sym_BANG] = ACTIONS(2187), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_DASH] = ACTIONS(2187), - [anon_sym_PLUS] = ACTIONS(2187), - [anon_sym_STAR] = ACTIONS(2189), - [anon_sym_SLASH] = ACTIONS(2193), - [anon_sym_PERCENT] = ACTIONS(2191), - [anon_sym_PIPE_PIPE] = ACTIONS(2191), - [anon_sym_AMP_AMP] = ACTIONS(2189), - [anon_sym_PIPE] = ACTIONS(2193), - [anon_sym_CARET] = ACTIONS(2191), - [anon_sym_AMP] = ACTIONS(2187), - [anon_sym_EQ_EQ] = ACTIONS(2191), - [anon_sym_BANG_EQ] = ACTIONS(2191), - [anon_sym_GT] = ACTIONS(2193), - [anon_sym_GT_EQ] = ACTIONS(2191), - [anon_sym_LT_EQ] = ACTIONS(2193), - [anon_sym_LT] = ACTIONS(2193), - [anon_sym_LT_LT] = ACTIONS(2191), - [anon_sym_GT_GT] = ACTIONS(2191), - [anon_sym_SEMI] = ACTIONS(2189), - [anon_sym___extension__] = ACTIONS(2187), - [anon_sym_typedef] = ACTIONS(2187), - [anon_sym_extern] = ACTIONS(2187), - [anon_sym___attribute__] = ACTIONS(2187), - [anon_sym_COLON_COLON] = ACTIONS(2189), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2189), - [anon_sym___declspec] = ACTIONS(2187), - [anon_sym___based] = ACTIONS(2187), - [anon_sym___cdecl] = ACTIONS(2187), - [anon_sym___clrcall] = ACTIONS(2187), - [anon_sym___stdcall] = ACTIONS(2187), - [anon_sym___fastcall] = ACTIONS(2187), - [anon_sym___thiscall] = ACTIONS(2187), - [anon_sym___vectorcall] = ACTIONS(2187), - [anon_sym_LBRACE] = ACTIONS(2189), - [anon_sym_RBRACE] = ACTIONS(2189), - [anon_sym_signed] = ACTIONS(2187), - [anon_sym_unsigned] = ACTIONS(2187), - [anon_sym_long] = ACTIONS(2187), - [anon_sym_short] = ACTIONS(2187), - [anon_sym_LBRACK] = ACTIONS(2187), - [anon_sym_static] = ACTIONS(2187), - [anon_sym_register] = ACTIONS(2187), - [anon_sym_inline] = ACTIONS(2187), - [anon_sym___inline] = ACTIONS(2187), - [anon_sym___inline__] = ACTIONS(2187), - [anon_sym___forceinline] = ACTIONS(2187), - [anon_sym_thread_local] = ACTIONS(2187), - [anon_sym___thread] = ACTIONS(2187), - [anon_sym_const] = ACTIONS(2187), - [anon_sym_constexpr] = ACTIONS(2187), - [anon_sym_volatile] = ACTIONS(2187), - [anon_sym_restrict] = ACTIONS(2187), - [anon_sym___restrict__] = ACTIONS(2187), - [anon_sym__Atomic] = ACTIONS(2187), - [anon_sym__Noreturn] = ACTIONS(2187), - [anon_sym_noreturn] = ACTIONS(2187), - [anon_sym_mutable] = ACTIONS(2187), - [anon_sym_constinit] = ACTIONS(2187), - [anon_sym_consteval] = ACTIONS(2187), - [sym_primitive_type] = ACTIONS(2187), - [anon_sym_enum] = ACTIONS(2187), - [anon_sym_class] = ACTIONS(2187), - [anon_sym_struct] = ACTIONS(2187), - [anon_sym_union] = ACTIONS(2187), - [anon_sym_COLON] = ACTIONS(2195), - [anon_sym_if] = ACTIONS(2187), - [anon_sym_switch] = ACTIONS(2187), - [anon_sym_case] = ACTIONS(2187), - [anon_sym_default] = ACTIONS(2187), - [anon_sym_while] = ACTIONS(2187), - [anon_sym_do] = ACTIONS(2187), - [anon_sym_for] = ACTIONS(2187), - [anon_sym_return] = ACTIONS(2187), - [anon_sym_break] = ACTIONS(2187), - [anon_sym_continue] = ACTIONS(2187), - [anon_sym_goto] = ACTIONS(2187), - [anon_sym___try] = ACTIONS(2187), - [anon_sym___leave] = ACTIONS(2187), - [anon_sym_QMARK] = ACTIONS(2191), - [anon_sym_not] = ACTIONS(2187), - [anon_sym_compl] = ACTIONS(2187), - [anon_sym_LT_EQ_GT] = ACTIONS(2191), - [anon_sym_or] = ACTIONS(2193), - [anon_sym_and] = ACTIONS(2193), - [anon_sym_bitor] = ACTIONS(2193), - [anon_sym_xor] = ACTIONS(2193), - [anon_sym_bitand] = ACTIONS(2193), - [anon_sym_not_eq] = ACTIONS(2193), - [anon_sym_DASH_DASH] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2189), - [anon_sym_sizeof] = ACTIONS(2187), - [anon_sym___alignof__] = ACTIONS(2187), - [anon_sym___alignof] = ACTIONS(2187), - [anon_sym__alignof] = ACTIONS(2187), - [anon_sym_alignof] = ACTIONS(2187), - [anon_sym__Alignof] = ACTIONS(2187), - [anon_sym_offsetof] = ACTIONS(2187), - [anon_sym__Generic] = ACTIONS(2187), - [anon_sym_asm] = ACTIONS(2187), - [anon_sym___asm__] = ACTIONS(2187), - [anon_sym_DOT] = ACTIONS(2193), - [anon_sym_DOT_STAR] = ACTIONS(2191), - [anon_sym_DASH_GT] = ACTIONS(2191), - [sym_number_literal] = ACTIONS(2189), - [anon_sym_L_SQUOTE] = ACTIONS(2189), - [anon_sym_u_SQUOTE] = ACTIONS(2189), - [anon_sym_U_SQUOTE] = ACTIONS(2189), - [anon_sym_u8_SQUOTE] = ACTIONS(2189), - [anon_sym_SQUOTE] = ACTIONS(2189), - [anon_sym_L_DQUOTE] = ACTIONS(2189), - [anon_sym_u_DQUOTE] = ACTIONS(2189), - [anon_sym_U_DQUOTE] = ACTIONS(2189), - [anon_sym_u8_DQUOTE] = ACTIONS(2189), - [anon_sym_DQUOTE] = ACTIONS(2189), - [sym_true] = ACTIONS(2187), - [sym_false] = ACTIONS(2187), - [anon_sym_NULL] = ACTIONS(2187), - [anon_sym_nullptr] = ACTIONS(2187), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2187), - [anon_sym_decltype] = ACTIONS(2187), - [anon_sym_virtual] = ACTIONS(2187), - [anon_sym_alignas] = ACTIONS(2187), - [anon_sym_explicit] = ACTIONS(2187), - [anon_sym_typename] = ACTIONS(2187), - [anon_sym_template] = ACTIONS(2187), - [anon_sym_operator] = ACTIONS(2187), - [anon_sym_try] = ACTIONS(2187), - [anon_sym_delete] = ACTIONS(2187), - [anon_sym_throw] = ACTIONS(2187), - [anon_sym_namespace] = ACTIONS(2187), - [anon_sym_using] = ACTIONS(2187), - [anon_sym_static_assert] = ACTIONS(2187), - [anon_sym_concept] = ACTIONS(2187), - [anon_sym_co_return] = ACTIONS(2187), - [anon_sym_co_yield] = ACTIONS(2187), - [anon_sym_R_DQUOTE] = ACTIONS(2189), - [anon_sym_LR_DQUOTE] = ACTIONS(2189), - [anon_sym_uR_DQUOTE] = ACTIONS(2189), - [anon_sym_UR_DQUOTE] = ACTIONS(2189), - [anon_sym_u8R_DQUOTE] = ACTIONS(2189), - [anon_sym_co_await] = ACTIONS(2187), - [anon_sym_new] = ACTIONS(2187), - [anon_sym_requires] = ACTIONS(2187), - [sym_this] = ACTIONS(2187), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2189), - [sym_semgrep_named_ellipsis] = ACTIONS(2189), + [172] = { + [sym_identifier] = ACTIONS(2191), + [aux_sym_preproc_include_token1] = ACTIONS(2191), + [aux_sym_preproc_def_token1] = ACTIONS(2191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2193), + [anon_sym_COMMA] = ACTIONS(2193), + [aux_sym_preproc_if_token1] = ACTIONS(2191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2191), + [sym_preproc_directive] = ACTIONS(2191), + [anon_sym_LPAREN2] = ACTIONS(2193), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_STAR] = ACTIONS(2193), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_PERCENT] = ACTIONS(2193), + [anon_sym_PIPE_PIPE] = ACTIONS(2193), + [anon_sym_AMP_AMP] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2193), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_EQ_EQ] = ACTIONS(2193), + [anon_sym_BANG_EQ] = ACTIONS(2193), + [anon_sym_GT] = ACTIONS(2191), + [anon_sym_GT_EQ] = ACTIONS(2193), + [anon_sym_LT_EQ] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_LT_LT] = ACTIONS(2193), + [anon_sym_GT_GT] = ACTIONS(2193), + [anon_sym_SEMI] = ACTIONS(2193), + [anon_sym___extension__] = ACTIONS(2191), + [anon_sym_typedef] = ACTIONS(2191), + [anon_sym_extern] = ACTIONS(2191), + [anon_sym___attribute__] = ACTIONS(2191), + [anon_sym_COLON_COLON] = ACTIONS(2193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2193), + [anon_sym___declspec] = ACTIONS(2191), + [anon_sym___based] = ACTIONS(2191), + [anon_sym___cdecl] = ACTIONS(2191), + [anon_sym___clrcall] = ACTIONS(2191), + [anon_sym___stdcall] = ACTIONS(2191), + [anon_sym___fastcall] = ACTIONS(2191), + [anon_sym___thiscall] = ACTIONS(2191), + [anon_sym___vectorcall] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_RBRACE] = ACTIONS(2193), + [anon_sym_signed] = ACTIONS(2191), + [anon_sym_unsigned] = ACTIONS(2191), + [anon_sym_long] = ACTIONS(2191), + [anon_sym_short] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_register] = ACTIONS(2191), + [anon_sym_inline] = ACTIONS(2191), + [anon_sym___inline] = ACTIONS(2191), + [anon_sym___inline__] = ACTIONS(2191), + [anon_sym___forceinline] = ACTIONS(2191), + [anon_sym_thread_local] = ACTIONS(2191), + [anon_sym___thread] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_constexpr] = ACTIONS(2191), + [anon_sym_volatile] = ACTIONS(2191), + [anon_sym_restrict] = ACTIONS(2191), + [anon_sym___restrict__] = ACTIONS(2191), + [anon_sym__Atomic] = ACTIONS(2191), + [anon_sym__Noreturn] = ACTIONS(2191), + [anon_sym_noreturn] = ACTIONS(2191), + [anon_sym_mutable] = ACTIONS(2191), + [anon_sym_constinit] = ACTIONS(2191), + [anon_sym_consteval] = ACTIONS(2191), + [sym_primitive_type] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_struct] = ACTIONS(2191), + [anon_sym_union] = ACTIONS(2191), + [anon_sym_COLON] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_case] = ACTIONS(2191), + [anon_sym_default] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_goto] = ACTIONS(2191), + [anon_sym___try] = ACTIONS(2191), + [anon_sym___leave] = ACTIONS(2191), + [anon_sym_QMARK] = ACTIONS(2193), + [anon_sym_not] = ACTIONS(2191), + [anon_sym_compl] = ACTIONS(2191), + [anon_sym_LT_EQ_GT] = ACTIONS(2193), + [anon_sym_or] = ACTIONS(2191), + [anon_sym_and] = ACTIONS(2191), + [anon_sym_bitor] = ACTIONS(2191), + [anon_sym_xor] = ACTIONS(2191), + [anon_sym_bitand] = ACTIONS(2191), + [anon_sym_not_eq] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2193), + [anon_sym_PLUS_PLUS] = ACTIONS(2193), + [anon_sym_sizeof] = ACTIONS(2191), + [anon_sym___alignof__] = ACTIONS(2191), + [anon_sym___alignof] = ACTIONS(2191), + [anon_sym__alignof] = ACTIONS(2191), + [anon_sym_alignof] = ACTIONS(2191), + [anon_sym__Alignof] = ACTIONS(2191), + [anon_sym_offsetof] = ACTIONS(2191), + [anon_sym__Generic] = ACTIONS(2191), + [anon_sym_asm] = ACTIONS(2191), + [anon_sym___asm__] = ACTIONS(2191), + [anon_sym_DOT] = ACTIONS(2191), + [anon_sym_DOT_STAR] = ACTIONS(2193), + [anon_sym_DASH_GT] = ACTIONS(2193), + [sym_number_literal] = ACTIONS(2193), + [anon_sym_L_SQUOTE] = ACTIONS(2193), + [anon_sym_u_SQUOTE] = ACTIONS(2193), + [anon_sym_U_SQUOTE] = ACTIONS(2193), + [anon_sym_u8_SQUOTE] = ACTIONS(2193), + [anon_sym_SQUOTE] = ACTIONS(2193), + [anon_sym_L_DQUOTE] = ACTIONS(2193), + [anon_sym_u_DQUOTE] = ACTIONS(2193), + [anon_sym_U_DQUOTE] = ACTIONS(2193), + [anon_sym_u8_DQUOTE] = ACTIONS(2193), + [anon_sym_DQUOTE] = ACTIONS(2193), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [anon_sym_NULL] = ACTIONS(2191), + [anon_sym_nullptr] = ACTIONS(2191), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2191), + [anon_sym_decltype] = ACTIONS(2191), + [anon_sym_virtual] = ACTIONS(2191), + [anon_sym_alignas] = ACTIONS(2191), + [anon_sym_explicit] = ACTIONS(2191), + [anon_sym_typename] = ACTIONS(2191), + [anon_sym_template] = ACTIONS(2191), + [anon_sym_operator] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_static_assert] = ACTIONS(2191), + [anon_sym_concept] = ACTIONS(2191), + [anon_sym_co_return] = ACTIONS(2191), + [anon_sym_co_yield] = ACTIONS(2191), + [anon_sym_R_DQUOTE] = ACTIONS(2193), + [anon_sym_LR_DQUOTE] = ACTIONS(2193), + [anon_sym_uR_DQUOTE] = ACTIONS(2193), + [anon_sym_UR_DQUOTE] = ACTIONS(2193), + [anon_sym_u8R_DQUOTE] = ACTIONS(2193), + [anon_sym_co_await] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_requires] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2193), + [sym_semgrep_named_ellipsis] = ACTIONS(2193), }, - [176] = { + [173] = { [sym_identifier] = ACTIONS(2183), [aux_sym_preproc_include_token1] = ACTIONS(2183), [aux_sym_preproc_def_token1] = ACTIONS(2183), [anon_sym_DOT_DOT_DOT] = ACTIONS(2185), - [anon_sym_COMMA] = ACTIONS(2185), + [anon_sym_COMMA] = ACTIONS(2187), [aux_sym_preproc_if_token1] = ACTIONS(2183), [aux_sym_preproc_ifdef_token1] = ACTIONS(2183), [aux_sym_preproc_ifdef_token2] = ACTIONS(2183), @@ -88786,21 +78518,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2183), [anon_sym_PLUS] = ACTIONS(2183), [anon_sym_STAR] = ACTIONS(2185), - [anon_sym_SLASH] = ACTIONS(2183), - [anon_sym_PERCENT] = ACTIONS(2185), - [anon_sym_PIPE_PIPE] = ACTIONS(2185), + [anon_sym_SLASH] = ACTIONS(2189), + [anon_sym_PERCENT] = ACTIONS(2187), + [anon_sym_PIPE_PIPE] = ACTIONS(2187), [anon_sym_AMP_AMP] = ACTIONS(2185), - [anon_sym_PIPE] = ACTIONS(2183), - [anon_sym_CARET] = ACTIONS(2185), + [anon_sym_PIPE] = ACTIONS(2189), + [anon_sym_CARET] = ACTIONS(2187), [anon_sym_AMP] = ACTIONS(2183), - [anon_sym_EQ_EQ] = ACTIONS(2185), - [anon_sym_BANG_EQ] = ACTIONS(2185), - [anon_sym_GT] = ACTIONS(2183), - [anon_sym_GT_EQ] = ACTIONS(2185), - [anon_sym_LT_EQ] = ACTIONS(2183), - [anon_sym_LT] = ACTIONS(2183), - [anon_sym_LT_LT] = ACTIONS(2185), - [anon_sym_GT_GT] = ACTIONS(2185), + [anon_sym_EQ_EQ] = ACTIONS(2187), + [anon_sym_BANG_EQ] = ACTIONS(2187), + [anon_sym_GT] = ACTIONS(2189), + [anon_sym_GT_EQ] = ACTIONS(2187), + [anon_sym_LT_EQ] = ACTIONS(2189), + [anon_sym_LT] = ACTIONS(2189), + [anon_sym_LT_LT] = ACTIONS(2187), + [anon_sym_GT_GT] = ACTIONS(2187), [anon_sym_SEMI] = ACTIONS(2185), [anon_sym___extension__] = ACTIONS(2183), [anon_sym_typedef] = ACTIONS(2183), @@ -88847,7 +78579,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(2183), [anon_sym_struct] = ACTIONS(2183), [anon_sym_union] = ACTIONS(2183), - [anon_sym_COLON] = ACTIONS(2183), + [anon_sym_COLON] = ACTIONS(2195), [anon_sym_if] = ACTIONS(2183), [anon_sym_switch] = ACTIONS(2183), [anon_sym_case] = ACTIONS(2183), @@ -88861,16 +78593,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(2183), [anon_sym___try] = ACTIONS(2183), [anon_sym___leave] = ACTIONS(2183), - [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_QMARK] = ACTIONS(2187), [anon_sym_not] = ACTIONS(2183), [anon_sym_compl] = ACTIONS(2183), - [anon_sym_LT_EQ_GT] = ACTIONS(2185), - [anon_sym_or] = ACTIONS(2183), - [anon_sym_and] = ACTIONS(2183), - [anon_sym_bitor] = ACTIONS(2183), - [anon_sym_xor] = ACTIONS(2183), - [anon_sym_bitand] = ACTIONS(2183), - [anon_sym_not_eq] = ACTIONS(2183), + [anon_sym_LT_EQ_GT] = ACTIONS(2187), + [anon_sym_or] = ACTIONS(2189), + [anon_sym_and] = ACTIONS(2189), + [anon_sym_bitor] = ACTIONS(2189), + [anon_sym_xor] = ACTIONS(2189), + [anon_sym_bitand] = ACTIONS(2189), + [anon_sym_not_eq] = ACTIONS(2189), [anon_sym_DASH_DASH] = ACTIONS(2185), [anon_sym_PLUS_PLUS] = ACTIONS(2185), [anon_sym_sizeof] = ACTIONS(2183), @@ -88883,9 +78615,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(2183), [anon_sym_asm] = ACTIONS(2183), [anon_sym___asm__] = ACTIONS(2183), - [anon_sym_DOT] = ACTIONS(2183), - [anon_sym_DOT_STAR] = ACTIONS(2185), - [anon_sym_DASH_GT] = ACTIONS(2185), + [anon_sym_DOT] = ACTIONS(2189), + [anon_sym_DOT_STAR] = ACTIONS(2187), + [anon_sym_DASH_GT] = ACTIONS(2187), [sym_number_literal] = ACTIONS(2185), [anon_sym_L_SQUOTE] = ACTIONS(2185), [anon_sym_u_SQUOTE] = ACTIONS(2185), @@ -88931,12 +78663,332 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2185), [sym_semgrep_named_ellipsis] = ACTIONS(2185), }, - [177] = { + [174] = { + [sym_identifier] = ACTIONS(2191), + [aux_sym_preproc_include_token1] = ACTIONS(2191), + [aux_sym_preproc_def_token1] = ACTIONS(2191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2193), + [anon_sym_COMMA] = ACTIONS(2193), + [aux_sym_preproc_if_token1] = ACTIONS(2191), + [aux_sym_preproc_if_token2] = ACTIONS(2191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2191), + [sym_preproc_directive] = ACTIONS(2191), + [anon_sym_LPAREN2] = ACTIONS(2193), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_STAR] = ACTIONS(2193), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_PERCENT] = ACTIONS(2193), + [anon_sym_PIPE_PIPE] = ACTIONS(2193), + [anon_sym_AMP_AMP] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2193), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_EQ_EQ] = ACTIONS(2193), + [anon_sym_BANG_EQ] = ACTIONS(2193), + [anon_sym_GT] = ACTIONS(2191), + [anon_sym_GT_EQ] = ACTIONS(2193), + [anon_sym_LT_EQ] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_LT_LT] = ACTIONS(2193), + [anon_sym_GT_GT] = ACTIONS(2193), + [anon_sym_SEMI] = ACTIONS(2193), + [anon_sym___extension__] = ACTIONS(2191), + [anon_sym_typedef] = ACTIONS(2191), + [anon_sym_extern] = ACTIONS(2191), + [anon_sym___attribute__] = ACTIONS(2191), + [anon_sym_COLON_COLON] = ACTIONS(2193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2193), + [anon_sym___declspec] = ACTIONS(2191), + [anon_sym___based] = ACTIONS(2191), + [anon_sym___cdecl] = ACTIONS(2191), + [anon_sym___clrcall] = ACTIONS(2191), + [anon_sym___stdcall] = ACTIONS(2191), + [anon_sym___fastcall] = ACTIONS(2191), + [anon_sym___thiscall] = ACTIONS(2191), + [anon_sym___vectorcall] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_signed] = ACTIONS(2191), + [anon_sym_unsigned] = ACTIONS(2191), + [anon_sym_long] = ACTIONS(2191), + [anon_sym_short] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_register] = ACTIONS(2191), + [anon_sym_inline] = ACTIONS(2191), + [anon_sym___inline] = ACTIONS(2191), + [anon_sym___inline__] = ACTIONS(2191), + [anon_sym___forceinline] = ACTIONS(2191), + [anon_sym_thread_local] = ACTIONS(2191), + [anon_sym___thread] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_constexpr] = ACTIONS(2191), + [anon_sym_volatile] = ACTIONS(2191), + [anon_sym_restrict] = ACTIONS(2191), + [anon_sym___restrict__] = ACTIONS(2191), + [anon_sym__Atomic] = ACTIONS(2191), + [anon_sym__Noreturn] = ACTIONS(2191), + [anon_sym_noreturn] = ACTIONS(2191), + [anon_sym_mutable] = ACTIONS(2191), + [anon_sym_constinit] = ACTIONS(2191), + [anon_sym_consteval] = ACTIONS(2191), + [sym_primitive_type] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_struct] = ACTIONS(2191), + [anon_sym_union] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_case] = ACTIONS(2191), + [anon_sym_default] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_goto] = ACTIONS(2191), + [anon_sym___try] = ACTIONS(2191), + [anon_sym___leave] = ACTIONS(2191), + [anon_sym_QMARK] = ACTIONS(2193), + [anon_sym_not] = ACTIONS(2191), + [anon_sym_compl] = ACTIONS(2191), + [anon_sym_LT_EQ_GT] = ACTIONS(2193), + [anon_sym_or] = ACTIONS(2191), + [anon_sym_and] = ACTIONS(2191), + [anon_sym_bitor] = ACTIONS(2191), + [anon_sym_xor] = ACTIONS(2191), + [anon_sym_bitand] = ACTIONS(2191), + [anon_sym_not_eq] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2193), + [anon_sym_PLUS_PLUS] = ACTIONS(2193), + [anon_sym_sizeof] = ACTIONS(2191), + [anon_sym___alignof__] = ACTIONS(2191), + [anon_sym___alignof] = ACTIONS(2191), + [anon_sym__alignof] = ACTIONS(2191), + [anon_sym_alignof] = ACTIONS(2191), + [anon_sym__Alignof] = ACTIONS(2191), + [anon_sym_offsetof] = ACTIONS(2191), + [anon_sym__Generic] = ACTIONS(2191), + [anon_sym_asm] = ACTIONS(2191), + [anon_sym___asm__] = ACTIONS(2191), + [anon_sym_DOT] = ACTIONS(2191), + [anon_sym_DOT_STAR] = ACTIONS(2193), + [anon_sym_DASH_GT] = ACTIONS(2193), + [sym_number_literal] = ACTIONS(2193), + [anon_sym_L_SQUOTE] = ACTIONS(2193), + [anon_sym_u_SQUOTE] = ACTIONS(2193), + [anon_sym_U_SQUOTE] = ACTIONS(2193), + [anon_sym_u8_SQUOTE] = ACTIONS(2193), + [anon_sym_SQUOTE] = ACTIONS(2193), + [anon_sym_L_DQUOTE] = ACTIONS(2193), + [anon_sym_u_DQUOTE] = ACTIONS(2193), + [anon_sym_U_DQUOTE] = ACTIONS(2193), + [anon_sym_u8_DQUOTE] = ACTIONS(2193), + [anon_sym_DQUOTE] = ACTIONS(2193), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [anon_sym_NULL] = ACTIONS(2191), + [anon_sym_nullptr] = ACTIONS(2191), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2191), + [anon_sym_decltype] = ACTIONS(2191), + [anon_sym_virtual] = ACTIONS(2191), + [anon_sym_alignas] = ACTIONS(2191), + [anon_sym_explicit] = ACTIONS(2191), + [anon_sym_typename] = ACTIONS(2191), + [anon_sym_template] = ACTIONS(2191), + [anon_sym_operator] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_static_assert] = ACTIONS(2191), + [anon_sym_concept] = ACTIONS(2191), + [anon_sym_co_return] = ACTIONS(2191), + [anon_sym_co_yield] = ACTIONS(2191), + [anon_sym_R_DQUOTE] = ACTIONS(2193), + [anon_sym_LR_DQUOTE] = ACTIONS(2193), + [anon_sym_uR_DQUOTE] = ACTIONS(2193), + [anon_sym_UR_DQUOTE] = ACTIONS(2193), + [anon_sym_u8R_DQUOTE] = ACTIONS(2193), + [anon_sym_co_await] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_requires] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2193), + [sym_semgrep_named_ellipsis] = ACTIONS(2193), + }, + [175] = { + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(6049), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_expression] = STATE(5292), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9231), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(8970), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4501), + [sym_template_function] = STATE(4249), + [sym_condition_declaration] = STATE(9231), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6657), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(4585), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1532), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(67), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_union] = ACTIONS(75), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), + }, + [176] = { [sym_identifier] = ACTIONS(2183), [aux_sym_preproc_include_token1] = ACTIONS(2183), [aux_sym_preproc_def_token1] = ACTIONS(2183), [anon_sym_DOT_DOT_DOT] = ACTIONS(2185), - [anon_sym_COMMA] = ACTIONS(2185), + [anon_sym_COMMA] = ACTIONS(2187), [aux_sym_preproc_if_token1] = ACTIONS(2183), [aux_sym_preproc_if_token2] = ACTIONS(2183), [aux_sym_preproc_ifdef_token1] = ACTIONS(2183), @@ -88948,21 +79000,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2183), [anon_sym_PLUS] = ACTIONS(2183), [anon_sym_STAR] = ACTIONS(2185), - [anon_sym_SLASH] = ACTIONS(2183), - [anon_sym_PERCENT] = ACTIONS(2185), - [anon_sym_PIPE_PIPE] = ACTIONS(2185), + [anon_sym_SLASH] = ACTIONS(2189), + [anon_sym_PERCENT] = ACTIONS(2187), + [anon_sym_PIPE_PIPE] = ACTIONS(2187), [anon_sym_AMP_AMP] = ACTIONS(2185), - [anon_sym_PIPE] = ACTIONS(2183), - [anon_sym_CARET] = ACTIONS(2185), + [anon_sym_PIPE] = ACTIONS(2189), + [anon_sym_CARET] = ACTIONS(2187), [anon_sym_AMP] = ACTIONS(2183), - [anon_sym_EQ_EQ] = ACTIONS(2185), - [anon_sym_BANG_EQ] = ACTIONS(2185), - [anon_sym_GT] = ACTIONS(2183), - [anon_sym_GT_EQ] = ACTIONS(2185), - [anon_sym_LT_EQ] = ACTIONS(2183), - [anon_sym_LT] = ACTIONS(2183), - [anon_sym_LT_LT] = ACTIONS(2185), - [anon_sym_GT_GT] = ACTIONS(2185), + [anon_sym_EQ_EQ] = ACTIONS(2187), + [anon_sym_BANG_EQ] = ACTIONS(2187), + [anon_sym_GT] = ACTIONS(2189), + [anon_sym_GT_EQ] = ACTIONS(2187), + [anon_sym_LT_EQ] = ACTIONS(2189), + [anon_sym_LT] = ACTIONS(2189), + [anon_sym_LT_LT] = ACTIONS(2187), + [anon_sym_GT_GT] = ACTIONS(2187), [anon_sym_SEMI] = ACTIONS(2185), [anon_sym___extension__] = ACTIONS(2183), [anon_sym_typedef] = ACTIONS(2183), @@ -89021,16 +79073,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(2183), [anon_sym___try] = ACTIONS(2183), [anon_sym___leave] = ACTIONS(2183), - [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_QMARK] = ACTIONS(2187), [anon_sym_not] = ACTIONS(2183), [anon_sym_compl] = ACTIONS(2183), - [anon_sym_LT_EQ_GT] = ACTIONS(2185), - [anon_sym_or] = ACTIONS(2183), - [anon_sym_and] = ACTIONS(2183), - [anon_sym_bitor] = ACTIONS(2183), - [anon_sym_xor] = ACTIONS(2183), - [anon_sym_bitand] = ACTIONS(2183), - [anon_sym_not_eq] = ACTIONS(2183), + [anon_sym_LT_EQ_GT] = ACTIONS(2187), + [anon_sym_or] = ACTIONS(2189), + [anon_sym_and] = ACTIONS(2189), + [anon_sym_bitor] = ACTIONS(2189), + [anon_sym_xor] = ACTIONS(2189), + [anon_sym_bitand] = ACTIONS(2189), + [anon_sym_not_eq] = ACTIONS(2189), [anon_sym_DASH_DASH] = ACTIONS(2185), [anon_sym_PLUS_PLUS] = ACTIONS(2185), [anon_sym_sizeof] = ACTIONS(2183), @@ -89043,9 +79095,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(2183), [anon_sym_asm] = ACTIONS(2183), [anon_sym___asm__] = ACTIONS(2183), - [anon_sym_DOT] = ACTIONS(2183), - [anon_sym_DOT_STAR] = ACTIONS(2185), - [anon_sym_DASH_GT] = ACTIONS(2185), + [anon_sym_DOT] = ACTIONS(2189), + [anon_sym_DOT_STAR] = ACTIONS(2187), + [anon_sym_DASH_GT] = ACTIONS(2187), [sym_number_literal] = ACTIONS(2185), [anon_sym_L_SQUOTE] = ACTIONS(2185), [anon_sym_u_SQUOTE] = ACTIONS(2185), @@ -89091,964 +79143,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2185), [sym_semgrep_named_ellipsis] = ACTIONS(2185), }, - [178] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6534), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_expression] = STATE(5766), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9704), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9415), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4975), - [sym_template_function] = STATE(5251), - [sym_condition_declaration] = STATE(9704), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7078), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4845), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(2099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(65), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1536), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(67), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), - }, - [179] = { - [sym_identifier] = ACTIONS(2187), - [aux_sym_preproc_include_token1] = ACTIONS(2187), - [aux_sym_preproc_def_token1] = ACTIONS(2187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2189), - [anon_sym_COMMA] = ACTIONS(2191), - [aux_sym_preproc_if_token1] = ACTIONS(2187), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2187), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2187), - [sym_preproc_directive] = ACTIONS(2187), - [anon_sym_LPAREN2] = ACTIONS(2189), - [anon_sym_BANG] = ACTIONS(2187), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_DASH] = ACTIONS(2187), - [anon_sym_PLUS] = ACTIONS(2187), - [anon_sym_STAR] = ACTIONS(2189), - [anon_sym_SLASH] = ACTIONS(2193), - [anon_sym_PERCENT] = ACTIONS(2191), - [anon_sym_PIPE_PIPE] = ACTIONS(2191), - [anon_sym_AMP_AMP] = ACTIONS(2189), - [anon_sym_PIPE] = ACTIONS(2193), - [anon_sym_CARET] = ACTIONS(2191), - [anon_sym_AMP] = ACTIONS(2187), - [anon_sym_EQ_EQ] = ACTIONS(2191), - [anon_sym_BANG_EQ] = ACTIONS(2191), - [anon_sym_GT] = ACTIONS(2193), - [anon_sym_GT_EQ] = ACTIONS(2191), - [anon_sym_LT_EQ] = ACTIONS(2193), - [anon_sym_LT] = ACTIONS(2193), - [anon_sym_LT_LT] = ACTIONS(2191), - [anon_sym_GT_GT] = ACTIONS(2191), - [anon_sym_SEMI] = ACTIONS(2189), - [anon_sym___extension__] = ACTIONS(2187), - [anon_sym_typedef] = ACTIONS(2187), - [anon_sym_extern] = ACTIONS(2187), - [anon_sym___attribute__] = ACTIONS(2187), - [anon_sym_COLON_COLON] = ACTIONS(2189), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2189), - [anon_sym___declspec] = ACTIONS(2187), - [anon_sym___based] = ACTIONS(2187), - [anon_sym___cdecl] = ACTIONS(2187), - [anon_sym___clrcall] = ACTIONS(2187), - [anon_sym___stdcall] = ACTIONS(2187), - [anon_sym___fastcall] = ACTIONS(2187), - [anon_sym___thiscall] = ACTIONS(2187), - [anon_sym___vectorcall] = ACTIONS(2187), - [anon_sym_LBRACE] = ACTIONS(2189), - [anon_sym_RBRACE] = ACTIONS(2189), - [anon_sym_signed] = ACTIONS(2187), - [anon_sym_unsigned] = ACTIONS(2187), - [anon_sym_long] = ACTIONS(2187), - [anon_sym_short] = ACTIONS(2187), - [anon_sym_LBRACK] = ACTIONS(2187), - [anon_sym_static] = ACTIONS(2187), - [anon_sym_register] = ACTIONS(2187), - [anon_sym_inline] = ACTIONS(2187), - [anon_sym___inline] = ACTIONS(2187), - [anon_sym___inline__] = ACTIONS(2187), - [anon_sym___forceinline] = ACTIONS(2187), - [anon_sym_thread_local] = ACTIONS(2187), - [anon_sym___thread] = ACTIONS(2187), - [anon_sym_const] = ACTIONS(2187), - [anon_sym_constexpr] = ACTIONS(2187), - [anon_sym_volatile] = ACTIONS(2187), - [anon_sym_restrict] = ACTIONS(2187), - [anon_sym___restrict__] = ACTIONS(2187), - [anon_sym__Atomic] = ACTIONS(2187), - [anon_sym__Noreturn] = ACTIONS(2187), - [anon_sym_noreturn] = ACTIONS(2187), - [anon_sym_mutable] = ACTIONS(2187), - [anon_sym_constinit] = ACTIONS(2187), - [anon_sym_consteval] = ACTIONS(2187), - [sym_primitive_type] = ACTIONS(2187), - [anon_sym_enum] = ACTIONS(2187), - [anon_sym_class] = ACTIONS(2187), - [anon_sym_struct] = ACTIONS(2187), - [anon_sym_union] = ACTIONS(2187), - [anon_sym_if] = ACTIONS(2187), - [anon_sym_switch] = ACTIONS(2187), - [anon_sym_case] = ACTIONS(2187), - [anon_sym_default] = ACTIONS(2187), - [anon_sym_while] = ACTIONS(2187), - [anon_sym_do] = ACTIONS(2187), - [anon_sym_for] = ACTIONS(2187), - [anon_sym_return] = ACTIONS(2187), - [anon_sym_break] = ACTIONS(2187), - [anon_sym_continue] = ACTIONS(2187), - [anon_sym_goto] = ACTIONS(2187), - [anon_sym___try] = ACTIONS(2187), - [anon_sym___leave] = ACTIONS(2187), - [anon_sym_QMARK] = ACTIONS(2191), - [anon_sym_not] = ACTIONS(2187), - [anon_sym_compl] = ACTIONS(2187), - [anon_sym_LT_EQ_GT] = ACTIONS(2191), - [anon_sym_or] = ACTIONS(2193), - [anon_sym_and] = ACTIONS(2193), - [anon_sym_bitor] = ACTIONS(2193), - [anon_sym_xor] = ACTIONS(2193), - [anon_sym_bitand] = ACTIONS(2193), - [anon_sym_not_eq] = ACTIONS(2193), - [anon_sym_DASH_DASH] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2189), - [anon_sym_sizeof] = ACTIONS(2187), - [anon_sym___alignof__] = ACTIONS(2187), - [anon_sym___alignof] = ACTIONS(2187), - [anon_sym__alignof] = ACTIONS(2187), - [anon_sym_alignof] = ACTIONS(2187), - [anon_sym__Alignof] = ACTIONS(2187), - [anon_sym_offsetof] = ACTIONS(2187), - [anon_sym__Generic] = ACTIONS(2187), - [anon_sym_asm] = ACTIONS(2187), - [anon_sym___asm__] = ACTIONS(2187), - [anon_sym_DOT] = ACTIONS(2193), - [anon_sym_DOT_STAR] = ACTIONS(2191), - [anon_sym_DASH_GT] = ACTIONS(2191), - [sym_number_literal] = ACTIONS(2189), - [anon_sym_L_SQUOTE] = ACTIONS(2189), - [anon_sym_u_SQUOTE] = ACTIONS(2189), - [anon_sym_U_SQUOTE] = ACTIONS(2189), - [anon_sym_u8_SQUOTE] = ACTIONS(2189), - [anon_sym_SQUOTE] = ACTIONS(2189), - [anon_sym_L_DQUOTE] = ACTIONS(2189), - [anon_sym_u_DQUOTE] = ACTIONS(2189), - [anon_sym_U_DQUOTE] = ACTIONS(2189), - [anon_sym_u8_DQUOTE] = ACTIONS(2189), - [anon_sym_DQUOTE] = ACTIONS(2189), - [sym_true] = ACTIONS(2187), - [sym_false] = ACTIONS(2187), - [anon_sym_NULL] = ACTIONS(2187), - [anon_sym_nullptr] = ACTIONS(2187), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2187), - [anon_sym_decltype] = ACTIONS(2187), - [anon_sym_virtual] = ACTIONS(2187), - [anon_sym_alignas] = ACTIONS(2187), - [anon_sym_explicit] = ACTIONS(2187), - [anon_sym_typename] = ACTIONS(2187), - [anon_sym_template] = ACTIONS(2187), - [anon_sym_operator] = ACTIONS(2187), - [anon_sym_try] = ACTIONS(2187), - [anon_sym_delete] = ACTIONS(2187), - [anon_sym_throw] = ACTIONS(2187), - [anon_sym_namespace] = ACTIONS(2187), - [anon_sym_using] = ACTIONS(2187), - [anon_sym_static_assert] = ACTIONS(2187), - [anon_sym_concept] = ACTIONS(2187), - [anon_sym_co_return] = ACTIONS(2187), - [anon_sym_co_yield] = ACTIONS(2187), - [anon_sym_R_DQUOTE] = ACTIONS(2189), - [anon_sym_LR_DQUOTE] = ACTIONS(2189), - [anon_sym_uR_DQUOTE] = ACTIONS(2189), - [anon_sym_UR_DQUOTE] = ACTIONS(2189), - [anon_sym_u8R_DQUOTE] = ACTIONS(2189), - [anon_sym_co_await] = ACTIONS(2187), - [anon_sym_new] = ACTIONS(2187), - [anon_sym_requires] = ACTIONS(2187), - [sym_this] = ACTIONS(2187), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2189), - [sym_semgrep_named_ellipsis] = ACTIONS(2189), - }, - [180] = { - [sym_identifier] = ACTIONS(2187), - [aux_sym_preproc_include_token1] = ACTIONS(2187), - [aux_sym_preproc_def_token1] = ACTIONS(2187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2189), - [anon_sym_COMMA] = ACTIONS(2191), - [aux_sym_preproc_if_token1] = ACTIONS(2187), - [aux_sym_preproc_if_token2] = ACTIONS(2187), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2187), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2187), - [sym_preproc_directive] = ACTIONS(2187), - [anon_sym_LPAREN2] = ACTIONS(2189), - [anon_sym_BANG] = ACTIONS(2187), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_DASH] = ACTIONS(2187), - [anon_sym_PLUS] = ACTIONS(2187), - [anon_sym_STAR] = ACTIONS(2189), - [anon_sym_SLASH] = ACTIONS(2193), - [anon_sym_PERCENT] = ACTIONS(2191), - [anon_sym_PIPE_PIPE] = ACTIONS(2191), - [anon_sym_AMP_AMP] = ACTIONS(2189), - [anon_sym_PIPE] = ACTIONS(2193), - [anon_sym_CARET] = ACTIONS(2191), - [anon_sym_AMP] = ACTIONS(2187), - [anon_sym_EQ_EQ] = ACTIONS(2191), - [anon_sym_BANG_EQ] = ACTIONS(2191), - [anon_sym_GT] = ACTIONS(2193), - [anon_sym_GT_EQ] = ACTIONS(2191), - [anon_sym_LT_EQ] = ACTIONS(2193), - [anon_sym_LT] = ACTIONS(2193), - [anon_sym_LT_LT] = ACTIONS(2191), - [anon_sym_GT_GT] = ACTIONS(2191), - [anon_sym_SEMI] = ACTIONS(2189), - [anon_sym___extension__] = ACTIONS(2187), - [anon_sym_typedef] = ACTIONS(2187), - [anon_sym_extern] = ACTIONS(2187), - [anon_sym___attribute__] = ACTIONS(2187), - [anon_sym_COLON_COLON] = ACTIONS(2189), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2189), - [anon_sym___declspec] = ACTIONS(2187), - [anon_sym___based] = ACTIONS(2187), - [anon_sym___cdecl] = ACTIONS(2187), - [anon_sym___clrcall] = ACTIONS(2187), - [anon_sym___stdcall] = ACTIONS(2187), - [anon_sym___fastcall] = ACTIONS(2187), - [anon_sym___thiscall] = ACTIONS(2187), - [anon_sym___vectorcall] = ACTIONS(2187), - [anon_sym_LBRACE] = ACTIONS(2189), - [anon_sym_signed] = ACTIONS(2187), - [anon_sym_unsigned] = ACTIONS(2187), - [anon_sym_long] = ACTIONS(2187), - [anon_sym_short] = ACTIONS(2187), - [anon_sym_LBRACK] = ACTIONS(2187), - [anon_sym_static] = ACTIONS(2187), - [anon_sym_register] = ACTIONS(2187), - [anon_sym_inline] = ACTIONS(2187), - [anon_sym___inline] = ACTIONS(2187), - [anon_sym___inline__] = ACTIONS(2187), - [anon_sym___forceinline] = ACTIONS(2187), - [anon_sym_thread_local] = ACTIONS(2187), - [anon_sym___thread] = ACTIONS(2187), - [anon_sym_const] = ACTIONS(2187), - [anon_sym_constexpr] = ACTIONS(2187), - [anon_sym_volatile] = ACTIONS(2187), - [anon_sym_restrict] = ACTIONS(2187), - [anon_sym___restrict__] = ACTIONS(2187), - [anon_sym__Atomic] = ACTIONS(2187), - [anon_sym__Noreturn] = ACTIONS(2187), - [anon_sym_noreturn] = ACTIONS(2187), - [anon_sym_mutable] = ACTIONS(2187), - [anon_sym_constinit] = ACTIONS(2187), - [anon_sym_consteval] = ACTIONS(2187), - [sym_primitive_type] = ACTIONS(2187), - [anon_sym_enum] = ACTIONS(2187), - [anon_sym_class] = ACTIONS(2187), - [anon_sym_struct] = ACTIONS(2187), - [anon_sym_union] = ACTIONS(2187), - [anon_sym_if] = ACTIONS(2187), - [anon_sym_switch] = ACTIONS(2187), - [anon_sym_case] = ACTIONS(2187), - [anon_sym_default] = ACTIONS(2187), - [anon_sym_while] = ACTIONS(2187), - [anon_sym_do] = ACTIONS(2187), - [anon_sym_for] = ACTIONS(2187), - [anon_sym_return] = ACTIONS(2187), - [anon_sym_break] = ACTIONS(2187), - [anon_sym_continue] = ACTIONS(2187), - [anon_sym_goto] = ACTIONS(2187), - [anon_sym___try] = ACTIONS(2187), - [anon_sym___leave] = ACTIONS(2187), - [anon_sym_QMARK] = ACTIONS(2191), - [anon_sym_not] = ACTIONS(2187), - [anon_sym_compl] = ACTIONS(2187), - [anon_sym_LT_EQ_GT] = ACTIONS(2191), - [anon_sym_or] = ACTIONS(2193), - [anon_sym_and] = ACTIONS(2193), - [anon_sym_bitor] = ACTIONS(2193), - [anon_sym_xor] = ACTIONS(2193), - [anon_sym_bitand] = ACTIONS(2193), - [anon_sym_not_eq] = ACTIONS(2193), - [anon_sym_DASH_DASH] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2189), - [anon_sym_sizeof] = ACTIONS(2187), - [anon_sym___alignof__] = ACTIONS(2187), - [anon_sym___alignof] = ACTIONS(2187), - [anon_sym__alignof] = ACTIONS(2187), - [anon_sym_alignof] = ACTIONS(2187), - [anon_sym__Alignof] = ACTIONS(2187), - [anon_sym_offsetof] = ACTIONS(2187), - [anon_sym__Generic] = ACTIONS(2187), - [anon_sym_asm] = ACTIONS(2187), - [anon_sym___asm__] = ACTIONS(2187), - [anon_sym_DOT] = ACTIONS(2193), - [anon_sym_DOT_STAR] = ACTIONS(2191), - [anon_sym_DASH_GT] = ACTIONS(2191), - [sym_number_literal] = ACTIONS(2189), - [anon_sym_L_SQUOTE] = ACTIONS(2189), - [anon_sym_u_SQUOTE] = ACTIONS(2189), - [anon_sym_U_SQUOTE] = ACTIONS(2189), - [anon_sym_u8_SQUOTE] = ACTIONS(2189), - [anon_sym_SQUOTE] = ACTIONS(2189), - [anon_sym_L_DQUOTE] = ACTIONS(2189), - [anon_sym_u_DQUOTE] = ACTIONS(2189), - [anon_sym_U_DQUOTE] = ACTIONS(2189), - [anon_sym_u8_DQUOTE] = ACTIONS(2189), - [anon_sym_DQUOTE] = ACTIONS(2189), - [sym_true] = ACTIONS(2187), - [sym_false] = ACTIONS(2187), - [anon_sym_NULL] = ACTIONS(2187), - [anon_sym_nullptr] = ACTIONS(2187), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2187), - [anon_sym_decltype] = ACTIONS(2187), - [anon_sym_virtual] = ACTIONS(2187), - [anon_sym_alignas] = ACTIONS(2187), - [anon_sym_explicit] = ACTIONS(2187), - [anon_sym_typename] = ACTIONS(2187), - [anon_sym_template] = ACTIONS(2187), - [anon_sym_operator] = ACTIONS(2187), - [anon_sym_try] = ACTIONS(2187), - [anon_sym_delete] = ACTIONS(2187), - [anon_sym_throw] = ACTIONS(2187), - [anon_sym_namespace] = ACTIONS(2187), - [anon_sym_using] = ACTIONS(2187), - [anon_sym_static_assert] = ACTIONS(2187), - [anon_sym_concept] = ACTIONS(2187), - [anon_sym_co_return] = ACTIONS(2187), - [anon_sym_co_yield] = ACTIONS(2187), - [anon_sym_R_DQUOTE] = ACTIONS(2189), - [anon_sym_LR_DQUOTE] = ACTIONS(2189), - [anon_sym_uR_DQUOTE] = ACTIONS(2189), - [anon_sym_UR_DQUOTE] = ACTIONS(2189), - [anon_sym_u8R_DQUOTE] = ACTIONS(2189), - [anon_sym_co_await] = ACTIONS(2187), - [anon_sym_new] = ACTIONS(2187), - [anon_sym_requires] = ACTIONS(2187), - [sym_this] = ACTIONS(2187), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2189), - [sym_semgrep_named_ellipsis] = ACTIONS(2189), - }, - [181] = { - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(7956), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7634), - [sym_array_declarator] = STATE(7634), - [sym_type_qualifier] = STATE(5043), - [sym_type_specifier] = STATE(6255), - [sym_sized_type_specifier] = STATE(2630), - [sym_enum_specifier] = STATE(2630), - [sym_struct_specifier] = STATE(2630), - [sym_union_specifier] = STATE(2630), - [sym_expression] = STATE(3418), - [sym_expression_not_binary] = STATE(4050), - [sym_comma_expression] = STATE(10483), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_type_descriptor] = STATE(9326), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_placeholder_type_specifier] = STATE(2630), - [sym_decltype_auto] = STATE(2627), - [sym_decltype] = STATE(2479), - [sym_class_specifier] = STATE(2630), - [sym_class_name] = STATE(9276), - [sym_dependent_type] = STATE(2630), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(3890), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_unary_left_fold] = STATE(10545), - [sym_unary_right_fold] = STATE(10545), - [sym_binary_fold] = STATE(10545), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7120), - [sym_qualified_identifier] = STATE(3833), - [sym_qualified_type_identifier] = STATE(6799), - [sym_assignment_expression_lhs_expression] = STATE(10483), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_typed_metavar] = STATE(10483), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [aux_sym_type_definition_type_repeat1] = STATE(5043), - [aux_sym_sized_type_specifier_repeat1] = STATE(6372), - [sym_identifier] = ACTIONS(2197), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), - [anon_sym_LPAREN2] = ACTIONS(2201), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2209), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(2211), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym___based] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(2217), - [anon_sym_unsigned] = ACTIONS(2217), - [anon_sym_long] = ACTIONS(2217), - [anon_sym_short] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(2219), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2229), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2253), - [anon_sym_decltype] = ACTIONS(2255), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_operator] = ACTIONS(2259), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), - }, - [182] = { - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(7956), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7634), - [sym_array_declarator] = STATE(7634), - [sym_type_qualifier] = STATE(5043), - [sym_type_specifier] = STATE(6255), - [sym_sized_type_specifier] = STATE(2630), - [sym_enum_specifier] = STATE(2630), - [sym_struct_specifier] = STATE(2630), - [sym_union_specifier] = STATE(2630), - [sym_expression] = STATE(3418), - [sym_expression_not_binary] = STATE(4050), - [sym_comma_expression] = STATE(10483), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_type_descriptor] = STATE(9605), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_placeholder_type_specifier] = STATE(2630), - [sym_decltype_auto] = STATE(2627), - [sym_decltype] = STATE(2479), - [sym_class_specifier] = STATE(2630), - [sym_class_name] = STATE(9276), - [sym_dependent_type] = STATE(2630), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(3890), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_unary_left_fold] = STATE(9657), - [sym_unary_right_fold] = STATE(9657), - [sym_binary_fold] = STATE(9657), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7120), - [sym_qualified_identifier] = STATE(3833), - [sym_qualified_type_identifier] = STATE(6799), - [sym_assignment_expression_lhs_expression] = STATE(10483), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_typed_metavar] = STATE(10483), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [aux_sym_type_definition_type_repeat1] = STATE(5043), - [aux_sym_sized_type_specifier_repeat1] = STATE(6372), - [sym_identifier] = ACTIONS(2197), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), - [anon_sym_LPAREN2] = ACTIONS(2201), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2209), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(2211), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym___based] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(2217), - [anon_sym_unsigned] = ACTIONS(2217), - [anon_sym_long] = ACTIONS(2217), - [anon_sym_short] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(2219), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2229), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2253), - [anon_sym_decltype] = ACTIONS(2255), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_operator] = ACTIONS(2259), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), - }, - [183] = { - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(7956), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7634), - [sym_array_declarator] = STATE(7634), - [sym_type_qualifier] = STATE(5043), - [sym_type_specifier] = STATE(6255), - [sym_sized_type_specifier] = STATE(2630), - [sym_enum_specifier] = STATE(2630), - [sym_struct_specifier] = STATE(2630), - [sym_union_specifier] = STATE(2630), - [sym_expression] = STATE(3463), - [sym_expression_not_binary] = STATE(4050), - [sym_comma_expression] = STATE(10333), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_type_descriptor] = STATE(9315), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_placeholder_type_specifier] = STATE(2630), - [sym_decltype_auto] = STATE(2627), - [sym_decltype] = STATE(2479), - [sym_class_specifier] = STATE(2630), - [sym_class_name] = STATE(9276), - [sym_dependent_type] = STATE(2630), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(3890), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_unary_left_fold] = STATE(10372), - [sym_unary_right_fold] = STATE(10372), - [sym_binary_fold] = STATE(10372), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7120), - [sym_qualified_identifier] = STATE(3833), - [sym_qualified_type_identifier] = STATE(6799), - [sym_assignment_expression_lhs_expression] = STATE(10333), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_typed_metavar] = STATE(10333), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [aux_sym_type_definition_type_repeat1] = STATE(5043), - [aux_sym_sized_type_specifier_repeat1] = STATE(6372), - [sym_identifier] = ACTIONS(2197), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), - [anon_sym_LPAREN2] = ACTIONS(2201), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2209), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(2211), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym___based] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(2217), - [anon_sym_unsigned] = ACTIONS(2217), - [anon_sym_long] = ACTIONS(2217), - [anon_sym_short] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(2219), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2229), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2253), - [anon_sym_decltype] = ACTIONS(2255), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_operator] = ACTIONS(2259), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), - }, - [184] = { - [ts_builtin_sym_end] = ACTIONS(2185), + [177] = { [sym_identifier] = ACTIONS(2183), [aux_sym_preproc_include_token1] = ACTIONS(2183), [aux_sym_preproc_def_token1] = ACTIONS(2183), [anon_sym_DOT_DOT_DOT] = ACTIONS(2185), - [anon_sym_RPAREN] = ACTIONS(2185), + [anon_sym_COMMA] = ACTIONS(2187), [aux_sym_preproc_if_token1] = ACTIONS(2183), [aux_sym_preproc_ifdef_token1] = ACTIONS(2183), [aux_sym_preproc_ifdef_token2] = ACTIONS(2183), @@ -90059,21 +79159,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2183), [anon_sym_PLUS] = ACTIONS(2183), [anon_sym_STAR] = ACTIONS(2185), - [anon_sym_SLASH] = ACTIONS(2183), - [anon_sym_PERCENT] = ACTIONS(2185), - [anon_sym_PIPE_PIPE] = ACTIONS(2185), + [anon_sym_SLASH] = ACTIONS(2189), + [anon_sym_PERCENT] = ACTIONS(2187), + [anon_sym_PIPE_PIPE] = ACTIONS(2187), [anon_sym_AMP_AMP] = ACTIONS(2185), - [anon_sym_PIPE] = ACTIONS(2183), - [anon_sym_CARET] = ACTIONS(2185), + [anon_sym_PIPE] = ACTIONS(2189), + [anon_sym_CARET] = ACTIONS(2187), [anon_sym_AMP] = ACTIONS(2183), - [anon_sym_EQ_EQ] = ACTIONS(2185), - [anon_sym_BANG_EQ] = ACTIONS(2185), - [anon_sym_GT] = ACTIONS(2183), - [anon_sym_GT_EQ] = ACTIONS(2185), - [anon_sym_LT_EQ] = ACTIONS(2183), - [anon_sym_LT] = ACTIONS(2183), - [anon_sym_LT_LT] = ACTIONS(2185), - [anon_sym_GT_GT] = ACTIONS(2185), + [anon_sym_EQ_EQ] = ACTIONS(2187), + [anon_sym_BANG_EQ] = ACTIONS(2187), + [anon_sym_GT] = ACTIONS(2189), + [anon_sym_GT_EQ] = ACTIONS(2187), + [anon_sym_LT_EQ] = ACTIONS(2189), + [anon_sym_LT] = ACTIONS(2189), + [anon_sym_LT_LT] = ACTIONS(2187), + [anon_sym_GT_GT] = ACTIONS(2187), + [anon_sym_SEMI] = ACTIONS(2185), [anon_sym___extension__] = ACTIONS(2183), [anon_sym_typedef] = ACTIONS(2183), [anon_sym_extern] = ACTIONS(2183), @@ -90089,6 +79190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(2183), [anon_sym___vectorcall] = ACTIONS(2183), [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_RBRACE] = ACTIONS(2185), [anon_sym_signed] = ACTIONS(2183), [anon_sym_unsigned] = ACTIONS(2183), [anon_sym_long] = ACTIONS(2183), @@ -90129,16 +79231,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(2183), [anon_sym_continue] = ACTIONS(2183), [anon_sym_goto] = ACTIONS(2183), - [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym___try] = ACTIONS(2183), + [anon_sym___leave] = ACTIONS(2183), + [anon_sym_QMARK] = ACTIONS(2187), [anon_sym_not] = ACTIONS(2183), [anon_sym_compl] = ACTIONS(2183), - [anon_sym_LT_EQ_GT] = ACTIONS(2185), - [anon_sym_or] = ACTIONS(2183), - [anon_sym_and] = ACTIONS(2183), - [anon_sym_bitor] = ACTIONS(2183), - [anon_sym_xor] = ACTIONS(2183), - [anon_sym_bitand] = ACTIONS(2183), - [anon_sym_not_eq] = ACTIONS(2183), + [anon_sym_LT_EQ_GT] = ACTIONS(2187), + [anon_sym_or] = ACTIONS(2189), + [anon_sym_and] = ACTIONS(2189), + [anon_sym_bitor] = ACTIONS(2189), + [anon_sym_xor] = ACTIONS(2189), + [anon_sym_bitand] = ACTIONS(2189), + [anon_sym_not_eq] = ACTIONS(2189), [anon_sym_DASH_DASH] = ACTIONS(2185), [anon_sym_PLUS_PLUS] = ACTIONS(2185), [anon_sym_sizeof] = ACTIONS(2183), @@ -90151,9 +79255,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(2183), [anon_sym_asm] = ACTIONS(2183), [anon_sym___asm__] = ACTIONS(2183), - [anon_sym_DOT] = ACTIONS(2183), - [anon_sym_DOT_STAR] = ACTIONS(2185), - [anon_sym_DASH_GT] = ACTIONS(2185), + [anon_sym_DOT] = ACTIONS(2189), + [anon_sym_DOT_STAR] = ACTIONS(2187), + [anon_sym_DASH_GT] = ACTIONS(2187), [sym_number_literal] = ACTIONS(2185), [anon_sym_L_SQUOTE] = ACTIONS(2185), [anon_sym_u_SQUOTE] = ACTIONS(2185), @@ -90199,267 +79303,897 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2185), [sym_semgrep_named_ellipsis] = ACTIONS(2185), }, - [185] = { - [ts_builtin_sym_end] = ACTIONS(2275), - [sym_identifier] = ACTIONS(2277), - [aux_sym_preproc_include_token1] = ACTIONS(2277), - [aux_sym_preproc_def_token1] = ACTIONS(2277), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2275), - [aux_sym_preproc_if_token1] = ACTIONS(2277), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2277), - [sym_preproc_directive] = ACTIONS(2277), - [anon_sym_LPAREN2] = ACTIONS(2275), - [anon_sym_BANG] = ACTIONS(2277), - [anon_sym_TILDE] = ACTIONS(2275), - [anon_sym_DASH] = ACTIONS(2277), - [anon_sym_PLUS] = ACTIONS(2277), - [anon_sym_STAR] = ACTIONS(2275), - [anon_sym_SLASH] = ACTIONS(2193), - [anon_sym_PERCENT] = ACTIONS(2191), - [anon_sym_PIPE_PIPE] = ACTIONS(2191), - [anon_sym_AMP_AMP] = ACTIONS(2275), - [anon_sym_PIPE] = ACTIONS(2193), - [anon_sym_CARET] = ACTIONS(2191), - [anon_sym_AMP] = ACTIONS(2277), - [anon_sym_EQ_EQ] = ACTIONS(2191), - [anon_sym_BANG_EQ] = ACTIONS(2191), - [anon_sym_GT] = ACTIONS(2193), - [anon_sym_GT_EQ] = ACTIONS(2191), - [anon_sym_LT_EQ] = ACTIONS(2193), - [anon_sym_LT] = ACTIONS(2193), - [anon_sym_LT_LT] = ACTIONS(2191), - [anon_sym_GT_GT] = ACTIONS(2191), - [anon_sym___extension__] = ACTIONS(2277), - [anon_sym_typedef] = ACTIONS(2277), - [anon_sym_extern] = ACTIONS(2277), - [anon_sym___attribute__] = ACTIONS(2277), - [anon_sym_COLON_COLON] = ACTIONS(2275), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2275), - [anon_sym___declspec] = ACTIONS(2277), - [anon_sym___based] = ACTIONS(2277), - [anon_sym___cdecl] = ACTIONS(2277), - [anon_sym___clrcall] = ACTIONS(2277), - [anon_sym___stdcall] = ACTIONS(2277), - [anon_sym___fastcall] = ACTIONS(2277), - [anon_sym___thiscall] = ACTIONS(2277), - [anon_sym___vectorcall] = ACTIONS(2277), - [anon_sym_LBRACE] = ACTIONS(2275), - [anon_sym_signed] = ACTIONS(2277), - [anon_sym_unsigned] = ACTIONS(2277), - [anon_sym_long] = ACTIONS(2277), - [anon_sym_short] = ACTIONS(2277), - [anon_sym_LBRACK] = ACTIONS(2277), - [anon_sym_static] = ACTIONS(2277), - [anon_sym_register] = ACTIONS(2277), - [anon_sym_inline] = ACTIONS(2277), - [anon_sym___inline] = ACTIONS(2277), - [anon_sym___inline__] = ACTIONS(2277), - [anon_sym___forceinline] = ACTIONS(2277), - [anon_sym_thread_local] = ACTIONS(2277), - [anon_sym___thread] = ACTIONS(2277), - [anon_sym_const] = ACTIONS(2277), - [anon_sym_constexpr] = ACTIONS(2277), - [anon_sym_volatile] = ACTIONS(2277), - [anon_sym_restrict] = ACTIONS(2277), - [anon_sym___restrict__] = ACTIONS(2277), - [anon_sym__Atomic] = ACTIONS(2277), - [anon_sym__Noreturn] = ACTIONS(2277), - [anon_sym_noreturn] = ACTIONS(2277), - [anon_sym_mutable] = ACTIONS(2277), - [anon_sym_constinit] = ACTIONS(2277), - [anon_sym_consteval] = ACTIONS(2277), - [sym_primitive_type] = ACTIONS(2277), - [anon_sym_enum] = ACTIONS(2277), - [anon_sym_class] = ACTIONS(2277), - [anon_sym_struct] = ACTIONS(2277), - [anon_sym_union] = ACTIONS(2277), - [anon_sym_if] = ACTIONS(2277), - [anon_sym_switch] = ACTIONS(2277), - [anon_sym_case] = ACTIONS(2277), - [anon_sym_default] = ACTIONS(2277), - [anon_sym_while] = ACTIONS(2277), - [anon_sym_do] = ACTIONS(2277), - [anon_sym_for] = ACTIONS(2277), - [anon_sym_return] = ACTIONS(2277), - [anon_sym_break] = ACTIONS(2277), - [anon_sym_continue] = ACTIONS(2277), - [anon_sym_goto] = ACTIONS(2277), - [anon_sym_QMARK] = ACTIONS(2191), - [anon_sym_not] = ACTIONS(2277), - [anon_sym_compl] = ACTIONS(2277), - [anon_sym_LT_EQ_GT] = ACTIONS(2191), - [anon_sym_or] = ACTIONS(2193), - [anon_sym_and] = ACTIONS(2193), - [anon_sym_bitor] = ACTIONS(2193), - [anon_sym_xor] = ACTIONS(2193), - [anon_sym_bitand] = ACTIONS(2193), - [anon_sym_not_eq] = ACTIONS(2193), - [anon_sym_DASH_DASH] = ACTIONS(2275), - [anon_sym_PLUS_PLUS] = ACTIONS(2275), - [anon_sym_sizeof] = ACTIONS(2277), - [anon_sym___alignof__] = ACTIONS(2277), - [anon_sym___alignof] = ACTIONS(2277), - [anon_sym__alignof] = ACTIONS(2277), - [anon_sym_alignof] = ACTIONS(2277), - [anon_sym__Alignof] = ACTIONS(2277), - [anon_sym_offsetof] = ACTIONS(2277), - [anon_sym__Generic] = ACTIONS(2277), - [anon_sym_asm] = ACTIONS(2277), - [anon_sym___asm__] = ACTIONS(2277), - [anon_sym_DOT] = ACTIONS(2193), - [anon_sym_DOT_STAR] = ACTIONS(2191), - [anon_sym_DASH_GT] = ACTIONS(2191), - [sym_number_literal] = ACTIONS(2275), - [anon_sym_L_SQUOTE] = ACTIONS(2275), - [anon_sym_u_SQUOTE] = ACTIONS(2275), - [anon_sym_U_SQUOTE] = ACTIONS(2275), - [anon_sym_u8_SQUOTE] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2275), - [anon_sym_L_DQUOTE] = ACTIONS(2275), - [anon_sym_u_DQUOTE] = ACTIONS(2275), - [anon_sym_U_DQUOTE] = ACTIONS(2275), - [anon_sym_u8_DQUOTE] = ACTIONS(2275), - [anon_sym_DQUOTE] = ACTIONS(2275), - [sym_true] = ACTIONS(2277), - [sym_false] = ACTIONS(2277), - [anon_sym_NULL] = ACTIONS(2277), - [anon_sym_nullptr] = ACTIONS(2277), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2277), - [anon_sym_decltype] = ACTIONS(2277), - [anon_sym_virtual] = ACTIONS(2277), - [anon_sym_alignas] = ACTIONS(2277), - [anon_sym_explicit] = ACTIONS(2277), - [anon_sym_typename] = ACTIONS(2277), - [anon_sym_template] = ACTIONS(2277), - [anon_sym_operator] = ACTIONS(2277), - [anon_sym_try] = ACTIONS(2277), - [anon_sym_delete] = ACTIONS(2277), - [anon_sym_throw] = ACTIONS(2277), - [anon_sym_namespace] = ACTIONS(2277), - [anon_sym_using] = ACTIONS(2277), - [anon_sym_static_assert] = ACTIONS(2277), - [anon_sym_concept] = ACTIONS(2277), - [anon_sym_co_return] = ACTIONS(2277), - [anon_sym_co_yield] = ACTIONS(2277), - [anon_sym_R_DQUOTE] = ACTIONS(2275), - [anon_sym_LR_DQUOTE] = ACTIONS(2275), - [anon_sym_uR_DQUOTE] = ACTIONS(2275), - [anon_sym_UR_DQUOTE] = ACTIONS(2275), - [anon_sym_u8R_DQUOTE] = ACTIONS(2275), - [anon_sym_co_await] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(2277), - [anon_sym_requires] = ACTIONS(2277), - [sym_this] = ACTIONS(2277), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2275), - [sym_semgrep_named_ellipsis] = ACTIONS(2275), + [178] = { + [ts_builtin_sym_end] = ACTIONS(2193), + [sym_identifier] = ACTIONS(2191), + [aux_sym_preproc_include_token1] = ACTIONS(2191), + [aux_sym_preproc_def_token1] = ACTIONS(2191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2193), + [anon_sym_COMMA] = ACTIONS(2193), + [anon_sym_RPAREN] = ACTIONS(2193), + [aux_sym_preproc_if_token1] = ACTIONS(2191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2191), + [sym_preproc_directive] = ACTIONS(2191), + [anon_sym_LPAREN2] = ACTIONS(2193), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_STAR] = ACTIONS(2193), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_PERCENT] = ACTIONS(2193), + [anon_sym_PIPE_PIPE] = ACTIONS(2193), + [anon_sym_AMP_AMP] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2193), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_EQ_EQ] = ACTIONS(2193), + [anon_sym_BANG_EQ] = ACTIONS(2193), + [anon_sym_GT] = ACTIONS(2191), + [anon_sym_GT_EQ] = ACTIONS(2193), + [anon_sym_LT_EQ] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_LT_LT] = ACTIONS(2193), + [anon_sym_GT_GT] = ACTIONS(2193), + [anon_sym___extension__] = ACTIONS(2191), + [anon_sym_typedef] = ACTIONS(2191), + [anon_sym_extern] = ACTIONS(2191), + [anon_sym___attribute__] = ACTIONS(2191), + [anon_sym_COLON_COLON] = ACTIONS(2193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2193), + [anon_sym___declspec] = ACTIONS(2191), + [anon_sym___based] = ACTIONS(2191), + [anon_sym___cdecl] = ACTIONS(2191), + [anon_sym___clrcall] = ACTIONS(2191), + [anon_sym___stdcall] = ACTIONS(2191), + [anon_sym___fastcall] = ACTIONS(2191), + [anon_sym___thiscall] = ACTIONS(2191), + [anon_sym___vectorcall] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_RBRACE] = ACTIONS(2193), + [anon_sym_signed] = ACTIONS(2191), + [anon_sym_unsigned] = ACTIONS(2191), + [anon_sym_long] = ACTIONS(2191), + [anon_sym_short] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_register] = ACTIONS(2191), + [anon_sym_inline] = ACTIONS(2191), + [anon_sym___inline] = ACTIONS(2191), + [anon_sym___inline__] = ACTIONS(2191), + [anon_sym___forceinline] = ACTIONS(2191), + [anon_sym_thread_local] = ACTIONS(2191), + [anon_sym___thread] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_constexpr] = ACTIONS(2191), + [anon_sym_volatile] = ACTIONS(2191), + [anon_sym_restrict] = ACTIONS(2191), + [anon_sym___restrict__] = ACTIONS(2191), + [anon_sym__Atomic] = ACTIONS(2191), + [anon_sym__Noreturn] = ACTIONS(2191), + [anon_sym_noreturn] = ACTIONS(2191), + [anon_sym_mutable] = ACTIONS(2191), + [anon_sym_constinit] = ACTIONS(2191), + [anon_sym_consteval] = ACTIONS(2191), + [sym_primitive_type] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_struct] = ACTIONS(2191), + [anon_sym_union] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_switch] = ACTIONS(2191), + [anon_sym_case] = ACTIONS(2191), + [anon_sym_default] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_do] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_goto] = ACTIONS(2191), + [anon_sym_QMARK] = ACTIONS(2193), + [anon_sym_not] = ACTIONS(2191), + [anon_sym_compl] = ACTIONS(2191), + [anon_sym_LT_EQ_GT] = ACTIONS(2193), + [anon_sym_or] = ACTIONS(2191), + [anon_sym_and] = ACTIONS(2191), + [anon_sym_bitor] = ACTIONS(2191), + [anon_sym_xor] = ACTIONS(2191), + [anon_sym_bitand] = ACTIONS(2191), + [anon_sym_not_eq] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2193), + [anon_sym_PLUS_PLUS] = ACTIONS(2193), + [anon_sym_sizeof] = ACTIONS(2191), + [anon_sym___alignof__] = ACTIONS(2191), + [anon_sym___alignof] = ACTIONS(2191), + [anon_sym__alignof] = ACTIONS(2191), + [anon_sym_alignof] = ACTIONS(2191), + [anon_sym__Alignof] = ACTIONS(2191), + [anon_sym_offsetof] = ACTIONS(2191), + [anon_sym__Generic] = ACTIONS(2191), + [anon_sym_asm] = ACTIONS(2191), + [anon_sym___asm__] = ACTIONS(2191), + [anon_sym_DOT] = ACTIONS(2191), + [anon_sym_DOT_STAR] = ACTIONS(2193), + [anon_sym_DASH_GT] = ACTIONS(2193), + [sym_number_literal] = ACTIONS(2193), + [anon_sym_L_SQUOTE] = ACTIONS(2193), + [anon_sym_u_SQUOTE] = ACTIONS(2193), + [anon_sym_U_SQUOTE] = ACTIONS(2193), + [anon_sym_u8_SQUOTE] = ACTIONS(2193), + [anon_sym_SQUOTE] = ACTIONS(2193), + [anon_sym_L_DQUOTE] = ACTIONS(2193), + [anon_sym_u_DQUOTE] = ACTIONS(2193), + [anon_sym_U_DQUOTE] = ACTIONS(2193), + [anon_sym_u8_DQUOTE] = ACTIONS(2193), + [anon_sym_DQUOTE] = ACTIONS(2193), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [anon_sym_NULL] = ACTIONS(2191), + [anon_sym_nullptr] = ACTIONS(2191), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2191), + [anon_sym_decltype] = ACTIONS(2191), + [anon_sym_virtual] = ACTIONS(2191), + [anon_sym_alignas] = ACTIONS(2191), + [anon_sym_explicit] = ACTIONS(2191), + [anon_sym_typename] = ACTIONS(2191), + [anon_sym_template] = ACTIONS(2191), + [anon_sym_operator] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_delete] = ACTIONS(2191), + [anon_sym_throw] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_static_assert] = ACTIONS(2191), + [anon_sym_concept] = ACTIONS(2191), + [anon_sym_co_return] = ACTIONS(2191), + [anon_sym_co_yield] = ACTIONS(2191), + [anon_sym_R_DQUOTE] = ACTIONS(2193), + [anon_sym_LR_DQUOTE] = ACTIONS(2193), + [anon_sym_uR_DQUOTE] = ACTIONS(2193), + [anon_sym_UR_DQUOTE] = ACTIONS(2193), + [anon_sym_u8R_DQUOTE] = ACTIONS(2193), + [anon_sym_co_await] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_requires] = ACTIONS(2191), + [sym_this] = ACTIONS(2191), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2193), + [sym_semgrep_named_ellipsis] = ACTIONS(2193), }, - [186] = { - [sym_expression] = STATE(3008), - [sym_expression_not_binary] = STATE(3362), - [sym_conditional_expression] = STATE(3356), - [sym_assignment_expression] = STATE(3356), - [sym_pointer_expression] = STATE(3367), - [sym_unary_expression] = STATE(3356), - [sym_binary_expression] = STATE(3362), - [sym_update_expression] = STATE(3356), - [sym_cast_expression] = STATE(3356), - [sym_sizeof_expression] = STATE(3356), - [sym_alignof_expression] = STATE(3356), - [sym_offsetof_expression] = STATE(3356), - [sym_generic_expression] = STATE(3356), - [sym_subscript_expression] = STATE(3367), - [sym_call_expression] = STATE(3367), - [sym_gnu_asm_expression] = STATE(3356), - [sym_field_expression] = STATE(3367), - [sym_compound_literal_expression] = STATE(3356), - [sym_parenthesized_expression] = STATE(3367), - [sym_initializer_list] = STATE(3436), - [sym_char_literal] = STATE(3167), - [sym_concatenated_string] = STATE(3167), - [sym_string_literal] = STATE(1962), - [sym_null] = STATE(3356), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9141), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3356), - [sym_raw_string_literal] = STATE(1962), - [sym_co_await_expression] = STATE(3356), - [sym_new_expression] = STATE(3356), - [sym_delete_expression] = STATE(3356), - [sym_requires_clause] = STATE(3356), - [sym_requires_expression] = STATE(3356), - [sym_lambda_expression] = STATE(3356), - [sym_lambda_capture_specifier] = STATE(7329), - [sym_fold_expression] = STATE(3356), - [sym_parameter_pack_expansion] = STATE(3356), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3367), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3367), - [sym_semgrep_ellipsis] = STATE(3362), - [sym_deep_ellipsis] = STATE(3362), + [179] = { + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7651), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7305), + [sym_array_declarator] = STATE(7305), + [sym_type_qualifier] = STATE(4684), + [sym_type_specifier] = STATE(5847), + [sym_sized_type_specifier] = STATE(2673), + [sym_enum_specifier] = STATE(2673), + [sym_struct_specifier] = STATE(2673), + [sym_union_specifier] = STATE(2673), + [sym_expression] = STATE(3186), + [sym_expression_not_binary] = STATE(3766), + [sym_comma_expression] = STATE(9246), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_type_descriptor] = STATE(8871), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_placeholder_type_specifier] = STATE(2673), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2580), + [sym_class_specifier] = STATE(2673), + [sym_class_name] = STATE(8737), + [sym_dependent_type] = STATE(2673), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(3633), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_unary_left_fold] = STATE(9256), + [sym_unary_right_fold] = STATE(9256), + [sym_binary_fold] = STATE(9256), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6630), + [sym_qualified_identifier] = STATE(3639), + [sym_qualified_type_identifier] = STATE(6338), + [sym_assignment_expression_lhs_expression] = STATE(9246), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_typed_metavar] = STATE(9246), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [aux_sym_type_definition_type_repeat1] = STATE(4684), + [aux_sym_sized_type_specifier_repeat1] = STATE(5792), + [sym_identifier] = ACTIONS(2197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), + [anon_sym_LPAREN2] = ACTIONS(2201), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym___based] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(2215), + [anon_sym_unsigned] = ACTIONS(2215), + [anon_sym_long] = ACTIONS(2215), + [anon_sym_short] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_compl] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2251), + [anon_sym_decltype] = ACTIONS(2253), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_operator] = ACTIONS(2257), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), + }, + [180] = { + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7651), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7305), + [sym_array_declarator] = STATE(7305), + [sym_type_qualifier] = STATE(4684), + [sym_type_specifier] = STATE(5847), + [sym_sized_type_specifier] = STATE(2673), + [sym_enum_specifier] = STATE(2673), + [sym_struct_specifier] = STATE(2673), + [sym_union_specifier] = STATE(2673), + [sym_expression] = STATE(3184), + [sym_expression_not_binary] = STATE(3766), + [sym_comma_expression] = STATE(10022), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_type_descriptor] = STATE(8678), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_placeholder_type_specifier] = STATE(2673), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2580), + [sym_class_specifier] = STATE(2673), + [sym_class_name] = STATE(8737), + [sym_dependent_type] = STATE(2673), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(3633), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_unary_left_fold] = STATE(9216), + [sym_unary_right_fold] = STATE(9216), + [sym_binary_fold] = STATE(9216), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6630), + [sym_qualified_identifier] = STATE(3639), + [sym_qualified_type_identifier] = STATE(6338), + [sym_assignment_expression_lhs_expression] = STATE(10022), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_typed_metavar] = STATE(10022), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [aux_sym_type_definition_type_repeat1] = STATE(4684), + [aux_sym_sized_type_specifier_repeat1] = STATE(5792), + [sym_identifier] = ACTIONS(2197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), + [anon_sym_LPAREN2] = ACTIONS(2201), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym___based] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(2215), + [anon_sym_unsigned] = ACTIONS(2215), + [anon_sym_long] = ACTIONS(2215), + [anon_sym_short] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_compl] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2251), + [anon_sym_decltype] = ACTIONS(2253), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_operator] = ACTIONS(2257), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), + }, + [181] = { + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7651), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7305), + [sym_array_declarator] = STATE(7305), + [sym_type_qualifier] = STATE(4684), + [sym_type_specifier] = STATE(5847), + [sym_sized_type_specifier] = STATE(2673), + [sym_enum_specifier] = STATE(2673), + [sym_struct_specifier] = STATE(2673), + [sym_union_specifier] = STATE(2673), + [sym_expression] = STATE(3184), + [sym_expression_not_binary] = STATE(3766), + [sym_comma_expression] = STATE(10022), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_type_descriptor] = STATE(8919), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_placeholder_type_specifier] = STATE(2673), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2580), + [sym_class_specifier] = STATE(2673), + [sym_class_name] = STATE(8737), + [sym_dependent_type] = STATE(2673), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(3633), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_unary_left_fold] = STATE(9397), + [sym_unary_right_fold] = STATE(9397), + [sym_binary_fold] = STATE(9397), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6630), + [sym_qualified_identifier] = STATE(3639), + [sym_qualified_type_identifier] = STATE(6338), + [sym_assignment_expression_lhs_expression] = STATE(10022), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_typed_metavar] = STATE(10022), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [aux_sym_type_definition_type_repeat1] = STATE(4684), + [aux_sym_sized_type_specifier_repeat1] = STATE(5792), + [sym_identifier] = ACTIONS(2197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), + [anon_sym_LPAREN2] = ACTIONS(2201), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym___based] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(2215), + [anon_sym_unsigned] = ACTIONS(2215), + [anon_sym_long] = ACTIONS(2215), + [anon_sym_short] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_compl] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2251), + [anon_sym_decltype] = ACTIONS(2253), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_operator] = ACTIONS(2257), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), + }, + [182] = { + [ts_builtin_sym_end] = ACTIONS(2273), + [sym_identifier] = ACTIONS(2275), + [aux_sym_preproc_include_token1] = ACTIONS(2275), + [aux_sym_preproc_def_token1] = ACTIONS(2275), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2273), + [aux_sym_preproc_if_token1] = ACTIONS(2275), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2275), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2275), + [sym_preproc_directive] = ACTIONS(2275), + [anon_sym_LPAREN2] = ACTIONS(2273), + [anon_sym_BANG] = ACTIONS(2275), + [anon_sym_TILDE] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2275), + [anon_sym_PLUS] = ACTIONS(2275), + [anon_sym_STAR] = ACTIONS(2273), + [anon_sym_SLASH] = ACTIONS(2189), + [anon_sym_PERCENT] = ACTIONS(2187), + [anon_sym_PIPE_PIPE] = ACTIONS(2187), + [anon_sym_AMP_AMP] = ACTIONS(2273), + [anon_sym_PIPE] = ACTIONS(2189), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2275), + [anon_sym_EQ_EQ] = ACTIONS(2187), + [anon_sym_BANG_EQ] = ACTIONS(2187), + [anon_sym_GT] = ACTIONS(2189), + [anon_sym_GT_EQ] = ACTIONS(2187), + [anon_sym_LT_EQ] = ACTIONS(2189), + [anon_sym_LT] = ACTIONS(2189), + [anon_sym_LT_LT] = ACTIONS(2187), + [anon_sym_GT_GT] = ACTIONS(2187), + [anon_sym___extension__] = ACTIONS(2275), + [anon_sym_typedef] = ACTIONS(2275), + [anon_sym_extern] = ACTIONS(2275), + [anon_sym___attribute__] = ACTIONS(2275), + [anon_sym_COLON_COLON] = ACTIONS(2273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2273), + [anon_sym___declspec] = ACTIONS(2275), + [anon_sym___based] = ACTIONS(2275), + [anon_sym___cdecl] = ACTIONS(2275), + [anon_sym___clrcall] = ACTIONS(2275), + [anon_sym___stdcall] = ACTIONS(2275), + [anon_sym___fastcall] = ACTIONS(2275), + [anon_sym___thiscall] = ACTIONS(2275), + [anon_sym___vectorcall] = ACTIONS(2275), + [anon_sym_LBRACE] = ACTIONS(2273), + [anon_sym_signed] = ACTIONS(2275), + [anon_sym_unsigned] = ACTIONS(2275), + [anon_sym_long] = ACTIONS(2275), + [anon_sym_short] = ACTIONS(2275), + [anon_sym_LBRACK] = ACTIONS(2275), + [anon_sym_static] = ACTIONS(2275), + [anon_sym_register] = ACTIONS(2275), + [anon_sym_inline] = ACTIONS(2275), + [anon_sym___inline] = ACTIONS(2275), + [anon_sym___inline__] = ACTIONS(2275), + [anon_sym___forceinline] = ACTIONS(2275), + [anon_sym_thread_local] = ACTIONS(2275), + [anon_sym___thread] = ACTIONS(2275), + [anon_sym_const] = ACTIONS(2275), + [anon_sym_constexpr] = ACTIONS(2275), + [anon_sym_volatile] = ACTIONS(2275), + [anon_sym_restrict] = ACTIONS(2275), + [anon_sym___restrict__] = ACTIONS(2275), + [anon_sym__Atomic] = ACTIONS(2275), + [anon_sym__Noreturn] = ACTIONS(2275), + [anon_sym_noreturn] = ACTIONS(2275), + [anon_sym_mutable] = ACTIONS(2275), + [anon_sym_constinit] = ACTIONS(2275), + [anon_sym_consteval] = ACTIONS(2275), + [sym_primitive_type] = ACTIONS(2275), + [anon_sym_enum] = ACTIONS(2275), + [anon_sym_class] = ACTIONS(2275), + [anon_sym_struct] = ACTIONS(2275), + [anon_sym_union] = ACTIONS(2275), + [anon_sym_if] = ACTIONS(2275), + [anon_sym_switch] = ACTIONS(2275), + [anon_sym_case] = ACTIONS(2275), + [anon_sym_default] = ACTIONS(2275), + [anon_sym_while] = ACTIONS(2275), + [anon_sym_do] = ACTIONS(2275), + [anon_sym_for] = ACTIONS(2275), + [anon_sym_return] = ACTIONS(2275), + [anon_sym_break] = ACTIONS(2275), + [anon_sym_continue] = ACTIONS(2275), + [anon_sym_goto] = ACTIONS(2275), + [anon_sym_QMARK] = ACTIONS(2187), + [anon_sym_not] = ACTIONS(2275), + [anon_sym_compl] = ACTIONS(2275), + [anon_sym_LT_EQ_GT] = ACTIONS(2187), + [anon_sym_or] = ACTIONS(2189), + [anon_sym_and] = ACTIONS(2189), + [anon_sym_bitor] = ACTIONS(2189), + [anon_sym_xor] = ACTIONS(2189), + [anon_sym_bitand] = ACTIONS(2189), + [anon_sym_not_eq] = ACTIONS(2189), + [anon_sym_DASH_DASH] = ACTIONS(2273), + [anon_sym_PLUS_PLUS] = ACTIONS(2273), + [anon_sym_sizeof] = ACTIONS(2275), + [anon_sym___alignof__] = ACTIONS(2275), + [anon_sym___alignof] = ACTIONS(2275), + [anon_sym__alignof] = ACTIONS(2275), + [anon_sym_alignof] = ACTIONS(2275), + [anon_sym__Alignof] = ACTIONS(2275), + [anon_sym_offsetof] = ACTIONS(2275), + [anon_sym__Generic] = ACTIONS(2275), + [anon_sym_asm] = ACTIONS(2275), + [anon_sym___asm__] = ACTIONS(2275), + [anon_sym_DOT] = ACTIONS(2189), + [anon_sym_DOT_STAR] = ACTIONS(2187), + [anon_sym_DASH_GT] = ACTIONS(2187), + [sym_number_literal] = ACTIONS(2273), + [anon_sym_L_SQUOTE] = ACTIONS(2273), + [anon_sym_u_SQUOTE] = ACTIONS(2273), + [anon_sym_U_SQUOTE] = ACTIONS(2273), + [anon_sym_u8_SQUOTE] = ACTIONS(2273), + [anon_sym_SQUOTE] = ACTIONS(2273), + [anon_sym_L_DQUOTE] = ACTIONS(2273), + [anon_sym_u_DQUOTE] = ACTIONS(2273), + [anon_sym_U_DQUOTE] = ACTIONS(2273), + [anon_sym_u8_DQUOTE] = ACTIONS(2273), + [anon_sym_DQUOTE] = ACTIONS(2273), + [sym_true] = ACTIONS(2275), + [sym_false] = ACTIONS(2275), + [anon_sym_NULL] = ACTIONS(2275), + [anon_sym_nullptr] = ACTIONS(2275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2275), + [anon_sym_decltype] = ACTIONS(2275), + [anon_sym_virtual] = ACTIONS(2275), + [anon_sym_alignas] = ACTIONS(2275), + [anon_sym_explicit] = ACTIONS(2275), + [anon_sym_typename] = ACTIONS(2275), + [anon_sym_template] = ACTIONS(2275), + [anon_sym_operator] = ACTIONS(2275), + [anon_sym_try] = ACTIONS(2275), + [anon_sym_delete] = ACTIONS(2275), + [anon_sym_throw] = ACTIONS(2275), + [anon_sym_namespace] = ACTIONS(2275), + [anon_sym_using] = ACTIONS(2275), + [anon_sym_static_assert] = ACTIONS(2275), + [anon_sym_concept] = ACTIONS(2275), + [anon_sym_co_return] = ACTIONS(2275), + [anon_sym_co_yield] = ACTIONS(2275), + [anon_sym_R_DQUOTE] = ACTIONS(2273), + [anon_sym_LR_DQUOTE] = ACTIONS(2273), + [anon_sym_uR_DQUOTE] = ACTIONS(2273), + [anon_sym_UR_DQUOTE] = ACTIONS(2273), + [anon_sym_u8R_DQUOTE] = ACTIONS(2273), + [anon_sym_co_await] = ACTIONS(2275), + [anon_sym_new] = ACTIONS(2275), + [anon_sym_requires] = ACTIONS(2275), + [sym_this] = ACTIONS(2275), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2273), + [sym_semgrep_named_ellipsis] = ACTIONS(2273), + }, + [183] = { + [sym_expression] = STATE(2942), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_initializer_list] = STATE(2621), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [ts_builtin_sym_end] = ACTIONS(2277), [sym_identifier] = ACTIONS(2279), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2281), - [anon_sym_COMMA] = ACTIONS(2281), - [aux_sym_preproc_if_token2] = ACTIONS(2281), - [aux_sym_preproc_else_token1] = ACTIONS(2281), - [aux_sym_preproc_elif_token1] = ACTIONS(2279), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2281), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2281), - [anon_sym_LPAREN2] = ACTIONS(2281), - [anon_sym_BANG] = ACTIONS(2283), - [anon_sym_TILDE] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2279), - [anon_sym_STAR] = ACTIONS(2279), - [anon_sym_SLASH] = ACTIONS(2279), - [anon_sym_PERCENT] = ACTIONS(2279), - [anon_sym_PIPE_PIPE] = ACTIONS(2281), - [anon_sym_AMP_AMP] = ACTIONS(2281), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_CARET] = ACTIONS(2279), - [anon_sym_AMP] = ACTIONS(2279), - [anon_sym_EQ_EQ] = ACTIONS(2281), - [anon_sym_BANG_EQ] = ACTIONS(2281), - [anon_sym_GT] = ACTIONS(2279), - [anon_sym_GT_EQ] = ACTIONS(2281), - [anon_sym_LT_EQ] = ACTIONS(2279), - [anon_sym_LT] = ACTIONS(2279), - [anon_sym_LT_LT] = ACTIONS(2279), - [anon_sym_GT_GT] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2277), + [anon_sym_COMMA] = ACTIONS(2277), + [anon_sym_RPAREN] = ACTIONS(2277), + [anon_sym_LPAREN2] = ACTIONS(2277), + [anon_sym_BANG] = ACTIONS(2281), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_PERCENT] = ACTIONS(2285), + [anon_sym_PIPE_PIPE] = ACTIONS(2277), + [anon_sym_AMP_AMP] = ACTIONS(2277), + [anon_sym_PIPE] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2285), + [anon_sym_EQ_EQ] = ACTIONS(2277), + [anon_sym_BANG_EQ] = ACTIONS(2277), + [anon_sym_GT] = ACTIONS(2285), + [anon_sym_GT_EQ] = ACTIONS(2277), + [anon_sym_LT_EQ] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_LT_LT] = ACTIONS(2285), + [anon_sym_GT_GT] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2277), [anon_sym_COLON_COLON] = ACTIONS(2287), [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2281), - [anon_sym_EQ] = ACTIONS(2279), + [anon_sym_RBRACE] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(2277), + [anon_sym_RBRACK] = ACTIONS(2277), + [anon_sym_EQ] = ACTIONS(2285), [sym_primitive_type] = ACTIONS(2291), - [anon_sym_QMARK] = ACTIONS(2281), - [anon_sym_STAR_EQ] = ACTIONS(2281), - [anon_sym_SLASH_EQ] = ACTIONS(2281), - [anon_sym_PERCENT_EQ] = ACTIONS(2281), - [anon_sym_PLUS_EQ] = ACTIONS(2281), - [anon_sym_DASH_EQ] = ACTIONS(2281), - [anon_sym_LT_LT_EQ] = ACTIONS(2281), - [anon_sym_GT_GT_EQ] = ACTIONS(2281), - [anon_sym_AMP_EQ] = ACTIONS(2281), - [anon_sym_CARET_EQ] = ACTIONS(2281), - [anon_sym_PIPE_EQ] = ACTIONS(2281), - [anon_sym_and_eq] = ACTIONS(2279), - [anon_sym_or_eq] = ACTIONS(2279), - [anon_sym_xor_eq] = ACTIONS(2279), - [anon_sym_not] = ACTIONS(2283), - [anon_sym_compl] = ACTIONS(2283), - [anon_sym_LT_EQ_GT] = ACTIONS(2281), - [anon_sym_or] = ACTIONS(2279), - [anon_sym_and] = ACTIONS(2279), - [anon_sym_bitor] = ACTIONS(2279), - [anon_sym_xor] = ACTIONS(2279), - [anon_sym_bitand] = ACTIONS(2279), - [anon_sym_not_eq] = ACTIONS(2279), - [anon_sym_DASH_DASH] = ACTIONS(2281), - [anon_sym_PLUS_PLUS] = ACTIONS(2281), + [anon_sym_QMARK] = ACTIONS(2277), + [anon_sym_STAR_EQ] = ACTIONS(2277), + [anon_sym_SLASH_EQ] = ACTIONS(2277), + [anon_sym_PERCENT_EQ] = ACTIONS(2277), + [anon_sym_PLUS_EQ] = ACTIONS(2277), + [anon_sym_DASH_EQ] = ACTIONS(2277), + [anon_sym_LT_LT_EQ] = ACTIONS(2277), + [anon_sym_GT_GT_EQ] = ACTIONS(2277), + [anon_sym_AMP_EQ] = ACTIONS(2277), + [anon_sym_CARET_EQ] = ACTIONS(2277), + [anon_sym_PIPE_EQ] = ACTIONS(2277), + [anon_sym_and_eq] = ACTIONS(2285), + [anon_sym_or_eq] = ACTIONS(2285), + [anon_sym_xor_eq] = ACTIONS(2285), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_LT_EQ_GT] = ACTIONS(2277), + [anon_sym_or] = ACTIONS(2285), + [anon_sym_and] = ACTIONS(2285), + [anon_sym_bitor] = ACTIONS(2285), + [anon_sym_xor] = ACTIONS(2285), + [anon_sym_bitand] = ACTIONS(2285), + [anon_sym_not_eq] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2277), + [anon_sym_PLUS_PLUS] = ACTIONS(2277), [anon_sym_sizeof] = ACTIONS(2293), [anon_sym___alignof__] = ACTIONS(2295), [anon_sym___alignof] = ACTIONS(2295), @@ -90470,9 +80204,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(2299), [anon_sym_asm] = ACTIONS(2301), [anon_sym___asm__] = ACTIONS(2301), - [anon_sym_DOT] = ACTIONS(2279), - [anon_sym_DOT_STAR] = ACTIONS(2281), - [anon_sym_DASH_GT] = ACTIONS(2281), + [anon_sym_DOT] = ACTIONS(2285), + [anon_sym_DOT_STAR] = ACTIONS(2277), + [anon_sym_DASH_GT] = ACTIONS(2277), [sym_number_literal] = ACTIONS(2303), [anon_sym_L_SQUOTE] = ACTIONS(2305), [anon_sym_u_SQUOTE] = ACTIONS(2305), @@ -90490,7 +80224,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(2315), [anon_sym_R_DQUOTE] = ACTIONS(2317), [anon_sym_LR_DQUOTE] = ACTIONS(2317), @@ -90504,240 +80238,536 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [187] = { - [sym_expression] = STATE(3027), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_initializer_list] = STATE(3147), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [ts_builtin_sym_end] = ACTIONS(2281), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2281), - [anon_sym_COMMA] = ACTIONS(2281), - [anon_sym_RPAREN] = ACTIONS(2281), - [anon_sym_LPAREN2] = ACTIONS(2281), - [anon_sym_BANG] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2279), - [anon_sym_STAR] = ACTIONS(2279), - [anon_sym_SLASH] = ACTIONS(2279), - [anon_sym_PERCENT] = ACTIONS(2279), - [anon_sym_PIPE_PIPE] = ACTIONS(2281), - [anon_sym_AMP_AMP] = ACTIONS(2281), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_CARET] = ACTIONS(2279), - [anon_sym_AMP] = ACTIONS(2279), - [anon_sym_EQ_EQ] = ACTIONS(2281), - [anon_sym_BANG_EQ] = ACTIONS(2281), - [anon_sym_GT] = ACTIONS(2279), - [anon_sym_GT_EQ] = ACTIONS(2281), - [anon_sym_LT_EQ] = ACTIONS(2279), - [anon_sym_LT] = ACTIONS(2279), - [anon_sym_LT_LT] = ACTIONS(2279), - [anon_sym_GT_GT] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2281), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_RBRACE] = ACTIONS(2281), - [anon_sym_LBRACK] = ACTIONS(2281), - [anon_sym_RBRACK] = ACTIONS(2281), - [anon_sym_EQ] = ACTIONS(2279), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_QMARK] = ACTIONS(2281), - [anon_sym_STAR_EQ] = ACTIONS(2281), - [anon_sym_SLASH_EQ] = ACTIONS(2281), - [anon_sym_PERCENT_EQ] = ACTIONS(2281), - [anon_sym_PLUS_EQ] = ACTIONS(2281), - [anon_sym_DASH_EQ] = ACTIONS(2281), - [anon_sym_LT_LT_EQ] = ACTIONS(2281), - [anon_sym_GT_GT_EQ] = ACTIONS(2281), - [anon_sym_AMP_EQ] = ACTIONS(2281), - [anon_sym_CARET_EQ] = ACTIONS(2281), - [anon_sym_PIPE_EQ] = ACTIONS(2281), - [anon_sym_and_eq] = ACTIONS(2279), - [anon_sym_or_eq] = ACTIONS(2279), - [anon_sym_xor_eq] = ACTIONS(2279), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_LT_EQ_GT] = ACTIONS(2281), - [anon_sym_or] = ACTIONS(2279), - [anon_sym_and] = ACTIONS(2279), - [anon_sym_bitor] = ACTIONS(2279), - [anon_sym_xor] = ACTIONS(2279), - [anon_sym_bitand] = ACTIONS(2279), - [anon_sym_not_eq] = ACTIONS(2279), - [anon_sym_DASH_DASH] = ACTIONS(2281), - [anon_sym_PLUS_PLUS] = ACTIONS(2281), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [anon_sym_DOT] = ACTIONS(2279), - [anon_sym_DOT_STAR] = ACTIONS(2281), - [anon_sym_DASH_GT] = ACTIONS(2281), - [sym_number_literal] = ACTIONS(2351), + [184] = { + [sym_expression] = STATE(2875), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_initializer_list] = STATE(2621), + [sym_char_literal] = STATE(2995), + [sym_concatenated_string] = STATE(2995), + [sym_string_literal] = STATE(2040), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2040), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2277), + [anon_sym_COMMA] = ACTIONS(2277), + [aux_sym_preproc_if_token2] = ACTIONS(2277), + [aux_sym_preproc_else_token1] = ACTIONS(2277), + [aux_sym_preproc_elif_token1] = ACTIONS(2285), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2277), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2277), + [anon_sym_LPAREN2] = ACTIONS(2277), + [anon_sym_BANG] = ACTIONS(2329), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_PERCENT] = ACTIONS(2285), + [anon_sym_PIPE_PIPE] = ACTIONS(2277), + [anon_sym_AMP_AMP] = ACTIONS(2277), + [anon_sym_PIPE] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2285), + [anon_sym_EQ_EQ] = ACTIONS(2277), + [anon_sym_BANG_EQ] = ACTIONS(2277), + [anon_sym_GT] = ACTIONS(2285), + [anon_sym_GT_EQ] = ACTIONS(2277), + [anon_sym_LT_EQ] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_LT_LT] = ACTIONS(2285), + [anon_sym_GT_GT] = ACTIONS(2285), + [anon_sym_COLON_COLON] = ACTIONS(2333), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_LBRACK] = ACTIONS(2277), + [anon_sym_EQ] = ACTIONS(2285), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_QMARK] = ACTIONS(2277), + [anon_sym_STAR_EQ] = ACTIONS(2277), + [anon_sym_SLASH_EQ] = ACTIONS(2277), + [anon_sym_PERCENT_EQ] = ACTIONS(2277), + [anon_sym_PLUS_EQ] = ACTIONS(2277), + [anon_sym_DASH_EQ] = ACTIONS(2277), + [anon_sym_LT_LT_EQ] = ACTIONS(2277), + [anon_sym_GT_GT_EQ] = ACTIONS(2277), + [anon_sym_AMP_EQ] = ACTIONS(2277), + [anon_sym_CARET_EQ] = ACTIONS(2277), + [anon_sym_PIPE_EQ] = ACTIONS(2277), + [anon_sym_and_eq] = ACTIONS(2285), + [anon_sym_or_eq] = ACTIONS(2285), + [anon_sym_xor_eq] = ACTIONS(2285), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_compl] = ACTIONS(2329), + [anon_sym_LT_EQ_GT] = ACTIONS(2277), + [anon_sym_or] = ACTIONS(2285), + [anon_sym_and] = ACTIONS(2285), + [anon_sym_bitor] = ACTIONS(2285), + [anon_sym_xor] = ACTIONS(2285), + [anon_sym_bitand] = ACTIONS(2285), + [anon_sym_not_eq] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2277), + [anon_sym_PLUS_PLUS] = ACTIONS(2277), + [anon_sym_sizeof] = ACTIONS(2335), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [anon_sym_DOT] = ACTIONS(2285), + [anon_sym_DOT_STAR] = ACTIONS(2277), + [anon_sym_DASH_GT] = ACTIONS(2277), + [sym_number_literal] = ACTIONS(2337), + [anon_sym_L_SQUOTE] = ACTIONS(2339), + [anon_sym_u_SQUOTE] = ACTIONS(2339), + [anon_sym_U_SQUOTE] = ACTIONS(2339), + [anon_sym_u8_SQUOTE] = ACTIONS(2339), + [anon_sym_SQUOTE] = ACTIONS(2339), + [anon_sym_L_DQUOTE] = ACTIONS(2341), + [anon_sym_u_DQUOTE] = ACTIONS(2341), + [anon_sym_U_DQUOTE] = ACTIONS(2341), + [anon_sym_u8_DQUOTE] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2343), + [anon_sym_R_DQUOTE] = ACTIONS(2345), + [anon_sym_LR_DQUOTE] = ACTIONS(2345), + [anon_sym_uR_DQUOTE] = ACTIONS(2345), + [anon_sym_UR_DQUOTE] = ACTIONS(2345), + [anon_sym_u8R_DQUOTE] = ACTIONS(2345), + [anon_sym_co_await] = ACTIONS(2347), + [anon_sym_new] = ACTIONS(2349), + [anon_sym_requires] = ACTIONS(2351), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [185] = { + [ts_builtin_sym_end] = ACTIONS(2353), + [sym_identifier] = ACTIONS(2355), + [aux_sym_preproc_include_token1] = ACTIONS(2355), + [aux_sym_preproc_def_token1] = ACTIONS(2355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2353), + [anon_sym_COMMA] = ACTIONS(2353), + [anon_sym_RPAREN] = ACTIONS(2353), + [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(2353), + [anon_sym_BANG] = ACTIONS(2353), + [anon_sym_TILDE] = ACTIONS(2353), + [anon_sym_DASH] = ACTIONS(2355), + [anon_sym_PLUS] = ACTIONS(2355), + [anon_sym_STAR] = ACTIONS(2353), + [anon_sym_PIPE_PIPE] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(2353), + [anon_sym_AMP] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2353), + [anon_sym___extension__] = ACTIONS(2355), + [anon_sym_typedef] = ACTIONS(2355), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym___attribute__] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(2353), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), + [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(2353), + [anon_sym_signed] = ACTIONS(2355), + [anon_sym_unsigned] = ACTIONS(2355), + [anon_sym_long] = ACTIONS(2355), + [anon_sym_short] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_EQ] = ACTIONS(2353), + [anon_sym_static] = ACTIONS(2355), + [anon_sym_register] = ACTIONS(2355), + [anon_sym_inline] = ACTIONS(2355), + [anon_sym___inline] = ACTIONS(2355), + [anon_sym___inline__] = ACTIONS(2355), + [anon_sym___forceinline] = ACTIONS(2355), + [anon_sym_thread_local] = ACTIONS(2355), + [anon_sym___thread] = ACTIONS(2355), + [anon_sym_const] = ACTIONS(2355), + [anon_sym_constexpr] = ACTIONS(2355), + [anon_sym_volatile] = ACTIONS(2355), + [anon_sym_restrict] = ACTIONS(2355), + [anon_sym___restrict__] = ACTIONS(2355), + [anon_sym__Atomic] = ACTIONS(2355), + [anon_sym__Noreturn] = ACTIONS(2355), + [anon_sym_noreturn] = ACTIONS(2355), + [anon_sym_mutable] = ACTIONS(2355), + [anon_sym_constinit] = ACTIONS(2355), + [anon_sym_consteval] = 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___try] = ACTIONS(2355), + [anon_sym___except] = ACTIONS(2355), + [anon_sym___finally] = ACTIONS(2355), + [anon_sym___leave] = ACTIONS(2355), + [anon_sym_not] = ACTIONS(2355), + [anon_sym_compl] = ACTIONS(2355), + [anon_sym_or] = ACTIONS(2355), + [anon_sym_and] = ACTIONS(2355), + [anon_sym_DASH_DASH] = ACTIONS(2353), + [anon_sym_PLUS_PLUS] = ACTIONS(2353), + [anon_sym_sizeof] = ACTIONS(2355), + [anon_sym___alignof__] = ACTIONS(2355), + [anon_sym___alignof] = ACTIONS(2355), + [anon_sym__alignof] = ACTIONS(2355), + [anon_sym_alignof] = ACTIONS(2355), + [anon_sym__Alignof] = ACTIONS(2355), + [anon_sym_offsetof] = ACTIONS(2355), + [anon_sym__Generic] = ACTIONS(2355), + [anon_sym_asm] = ACTIONS(2355), + [anon_sym___asm__] = ACTIONS(2355), + [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), + [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(2355), + [sym_false] = ACTIONS(2355), + [anon_sym_NULL] = ACTIONS(2355), + [anon_sym_nullptr] = ACTIONS(2355), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2355), + [anon_sym_decltype] = ACTIONS(2355), + [anon_sym_final] = ACTIONS(2355), + [anon_sym_override] = ACTIONS(2355), + [anon_sym_virtual] = ACTIONS(2355), + [anon_sym_alignas] = ACTIONS(2355), + [anon_sym_explicit] = ACTIONS(2355), + [anon_sym_typename] = ACTIONS(2355), + [anon_sym_template] = ACTIONS(2355), + [anon_sym_GT2] = ACTIONS(2353), + [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_catch] = ACTIONS(2355), + [anon_sym_R_DQUOTE] = ACTIONS(2353), + [anon_sym_LR_DQUOTE] = ACTIONS(2353), + [anon_sym_uR_DQUOTE] = ACTIONS(2353), + [anon_sym_UR_DQUOTE] = ACTIONS(2353), + [anon_sym_u8R_DQUOTE] = ACTIONS(2353), + [anon_sym_co_await] = ACTIONS(2355), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_requires] = ACTIONS(2355), + [sym_this] = ACTIONS(2355), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2353), + [sym_semgrep_named_ellipsis] = ACTIONS(2353), + }, + [186] = { + [ts_builtin_sym_end] = ACTIONS(2357), + [sym_identifier] = ACTIONS(2359), + [aux_sym_preproc_include_token1] = ACTIONS(2359), + [aux_sym_preproc_def_token1] = ACTIONS(2359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2357), + [anon_sym_COMMA] = ACTIONS(2357), + [anon_sym_RPAREN] = ACTIONS(2357), + [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(2357), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_DASH] = ACTIONS(2359), + [anon_sym_PLUS] = ACTIONS(2359), + [anon_sym_STAR] = ACTIONS(2357), + [anon_sym_PIPE_PIPE] = ACTIONS(2357), + [anon_sym_AMP_AMP] = ACTIONS(2357), + [anon_sym_AMP] = ACTIONS(2359), + [anon_sym_SEMI] = ACTIONS(2357), + [anon_sym___extension__] = ACTIONS(2359), + [anon_sym_typedef] = ACTIONS(2359), + [anon_sym_extern] = ACTIONS(2359), + [anon_sym___attribute__] = ACTIONS(2359), + [anon_sym_COLON_COLON] = ACTIONS(2357), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2357), + [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(2357), + [anon_sym_signed] = ACTIONS(2359), + [anon_sym_unsigned] = ACTIONS(2359), + [anon_sym_long] = ACTIONS(2359), + [anon_sym_short] = ACTIONS(2359), + [anon_sym_LBRACK] = ACTIONS(2359), + [anon_sym_EQ] = ACTIONS(2357), + [anon_sym_static] = ACTIONS(2359), + [anon_sym_register] = ACTIONS(2359), + [anon_sym_inline] = ACTIONS(2359), + [anon_sym___inline] = ACTIONS(2359), + [anon_sym___inline__] = ACTIONS(2359), + [anon_sym___forceinline] = ACTIONS(2359), + [anon_sym_thread_local] = ACTIONS(2359), + [anon_sym___thread] = ACTIONS(2359), + [anon_sym_const] = ACTIONS(2359), + [anon_sym_constexpr] = ACTIONS(2359), + [anon_sym_volatile] = ACTIONS(2359), + [anon_sym_restrict] = ACTIONS(2359), + [anon_sym___restrict__] = ACTIONS(2359), + [anon_sym__Atomic] = ACTIONS(2359), + [anon_sym__Noreturn] = ACTIONS(2359), + [anon_sym_noreturn] = ACTIONS(2359), + [anon_sym_mutable] = ACTIONS(2359), + [anon_sym_constinit] = ACTIONS(2359), + [anon_sym_consteval] = 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___try] = ACTIONS(2359), + [anon_sym___except] = ACTIONS(2359), + [anon_sym___finally] = ACTIONS(2359), + [anon_sym___leave] = ACTIONS(2359), + [anon_sym_not] = ACTIONS(2359), + [anon_sym_compl] = ACTIONS(2359), + [anon_sym_or] = ACTIONS(2359), + [anon_sym_and] = ACTIONS(2359), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_sizeof] = ACTIONS(2359), + [anon_sym___alignof__] = ACTIONS(2359), + [anon_sym___alignof] = ACTIONS(2359), + [anon_sym__alignof] = ACTIONS(2359), + [anon_sym_alignof] = ACTIONS(2359), + [anon_sym__Alignof] = ACTIONS(2359), + [anon_sym_offsetof] = ACTIONS(2359), + [anon_sym__Generic] = ACTIONS(2359), + [anon_sym_asm] = ACTIONS(2359), + [anon_sym___asm__] = ACTIONS(2359), + [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(2359), + [sym_false] = ACTIONS(2359), [anon_sym_NULL] = ACTIONS(2359), [anon_sym_nullptr] = ACTIONS(2359), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), + [sym_auto] = ACTIONS(2359), + [anon_sym_decltype] = ACTIONS(2359), + [anon_sym_final] = ACTIONS(2359), + [anon_sym_override] = ACTIONS(2359), + [anon_sym_virtual] = ACTIONS(2359), + [anon_sym_alignas] = ACTIONS(2359), + [anon_sym_explicit] = ACTIONS(2359), + [anon_sym_typename] = ACTIONS(2359), + [anon_sym_template] = ACTIONS(2359), + [anon_sym_GT2] = ACTIONS(2357), + [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_catch] = ACTIONS(2359), + [anon_sym_R_DQUOTE] = ACTIONS(2357), + [anon_sym_LR_DQUOTE] = ACTIONS(2357), + [anon_sym_uR_DQUOTE] = ACTIONS(2357), + [anon_sym_UR_DQUOTE] = ACTIONS(2357), + [anon_sym_u8R_DQUOTE] = ACTIONS(2357), + [anon_sym_co_await] = ACTIONS(2359), + [anon_sym_new] = ACTIONS(2359), + [anon_sym_requires] = ACTIONS(2359), + [sym_this] = ACTIONS(2359), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2357), + [sym_semgrep_named_ellipsis] = ACTIONS(2357), }, - [188] = { - [sym_attribute_declaration] = STATE(190), - [sym_compound_statement] = STATE(598), - [sym_attributed_statement] = STATE(598), - [sym_labeled_statement] = STATE(598), - [sym_expression_statement] = STATE(598), - [sym_if_statement] = STATE(598), - [sym_switch_statement] = STATE(598), - [sym_case_statement] = STATE(598), - [sym_while_statement] = STATE(598), - [sym_do_statement] = STATE(598), - [sym_for_statement] = STATE(598), - [sym_return_statement] = STATE(598), - [sym_break_statement] = STATE(598), - [sym_continue_statement] = STATE(598), - [sym_goto_statement] = STATE(598), - [sym_seh_try_statement] = STATE(598), - [sym_seh_leave_statement] = STATE(598), - [sym_expression] = STATE(5470), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9574), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(598), - [sym_co_return_statement] = STATE(598), - [sym_co_yield_statement] = STATE(598), - [sym_throw_statement] = STATE(598), - [sym_try_statement] = STATE(598), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [sym_identifier] = ACTIONS(2375), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [187] = { + [sym_attribute_declaration] = STATE(206), + [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_seh_try_statement] = STATE(671), + [sym_seh_leave_statement] = STATE(671), + [sym_expression] = STATE(5055), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8672), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [sym_identifier] = ACTIONS(2361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_SEMI] = ACTIONS(187), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym_LBRACE] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_if] = ACTIONS(203), [anon_sym_switch] = ACTIONS(205), [anon_sym_case] = ACTIONS(207), @@ -90782,7 +80812,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_try] = ACTIONS(233), [anon_sym_delete] = ACTIONS(139), [anon_sym_throw] = ACTIONS(235), @@ -90800,383 +80830,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [189] = { - [sym_expression] = STATE(3426), - [sym_expression_not_binary] = STATE(3786), - [sym_conditional_expression] = STATE(3784), - [sym_assignment_expression] = STATE(3784), - [sym_pointer_expression] = STATE(3787), - [sym_unary_expression] = STATE(3784), - [sym_binary_expression] = STATE(3786), - [sym_update_expression] = STATE(3784), - [sym_cast_expression] = STATE(3784), - [sym_sizeof_expression] = STATE(3784), - [sym_alignof_expression] = STATE(3784), - [sym_offsetof_expression] = STATE(3784), - [sym_generic_expression] = STATE(3784), - [sym_subscript_expression] = STATE(3787), - [sym_call_expression] = STATE(3787), - [sym_gnu_asm_expression] = STATE(3784), - [sym_field_expression] = STATE(3787), - [sym_compound_literal_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3787), - [sym_initializer_list] = STATE(3700), - [sym_char_literal] = STATE(3471), - [sym_concatenated_string] = STATE(3471), - [sym_string_literal] = STATE(2063), - [sym_null] = STATE(3784), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9229), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3784), - [sym_raw_string_literal] = STATE(2063), - [sym_co_await_expression] = STATE(3784), - [sym_new_expression] = STATE(3784), - [sym_delete_expression] = STATE(3784), - [sym_requires_clause] = STATE(3784), - [sym_requires_expression] = STATE(3784), - [sym_lambda_expression] = STATE(3784), - [sym_lambda_capture_specifier] = STATE(7253), - [sym_fold_expression] = STATE(3784), - [sym_parameter_pack_expansion] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3787), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3787), - [sym_semgrep_ellipsis] = STATE(3786), - [sym_deep_ellipsis] = STATE(3786), - [sym_identifier] = ACTIONS(2279), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2281), - [anon_sym_COMMA] = ACTIONS(2281), - [aux_sym_preproc_if_token2] = ACTIONS(2281), - [aux_sym_preproc_else_token1] = ACTIONS(2281), - [aux_sym_preproc_elif_token1] = ACTIONS(2281), - [anon_sym_LPAREN2] = ACTIONS(2281), - [anon_sym_BANG] = ACTIONS(2381), - [anon_sym_TILDE] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2279), - [anon_sym_STAR] = ACTIONS(2279), - [anon_sym_SLASH] = ACTIONS(2279), - [anon_sym_PERCENT] = ACTIONS(2279), - [anon_sym_PIPE_PIPE] = ACTIONS(2281), - [anon_sym_AMP_AMP] = ACTIONS(2281), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_CARET] = ACTIONS(2279), - [anon_sym_AMP] = ACTIONS(2279), - [anon_sym_EQ_EQ] = ACTIONS(2281), - [anon_sym_BANG_EQ] = ACTIONS(2281), - [anon_sym_GT] = ACTIONS(2279), - [anon_sym_GT_EQ] = ACTIONS(2281), - [anon_sym_LT_EQ] = ACTIONS(2279), - [anon_sym_LT] = ACTIONS(2279), - [anon_sym_LT_LT] = ACTIONS(2279), - [anon_sym_GT_GT] = ACTIONS(2279), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_LBRACK] = ACTIONS(2281), - [anon_sym_EQ] = ACTIONS(2279), - [sym_primitive_type] = ACTIONS(2389), - [anon_sym_QMARK] = ACTIONS(2281), - [anon_sym_STAR_EQ] = ACTIONS(2281), - [anon_sym_SLASH_EQ] = ACTIONS(2281), - [anon_sym_PERCENT_EQ] = ACTIONS(2281), - [anon_sym_PLUS_EQ] = ACTIONS(2281), - [anon_sym_DASH_EQ] = ACTIONS(2281), - [anon_sym_LT_LT_EQ] = ACTIONS(2281), - [anon_sym_GT_GT_EQ] = ACTIONS(2281), - [anon_sym_AMP_EQ] = ACTIONS(2281), - [anon_sym_CARET_EQ] = ACTIONS(2281), - [anon_sym_PIPE_EQ] = ACTIONS(2281), - [anon_sym_and_eq] = ACTIONS(2279), - [anon_sym_or_eq] = ACTIONS(2279), - [anon_sym_xor_eq] = ACTIONS(2279), - [anon_sym_not] = ACTIONS(2381), - [anon_sym_compl] = ACTIONS(2381), - [anon_sym_LT_EQ_GT] = ACTIONS(2281), - [anon_sym_or] = ACTIONS(2279), - [anon_sym_and] = ACTIONS(2279), - [anon_sym_bitor] = ACTIONS(2279), - [anon_sym_xor] = ACTIONS(2279), - [anon_sym_bitand] = ACTIONS(2279), - [anon_sym_not_eq] = ACTIONS(2279), - [anon_sym_DASH_DASH] = ACTIONS(2281), - [anon_sym_PLUS_PLUS] = ACTIONS(2281), - [anon_sym_sizeof] = ACTIONS(2391), - [anon_sym___alignof__] = ACTIONS(2393), - [anon_sym___alignof] = ACTIONS(2393), - [anon_sym__alignof] = ACTIONS(2393), - [anon_sym_alignof] = ACTIONS(2393), - [anon_sym__Alignof] = ACTIONS(2393), - [anon_sym_offsetof] = ACTIONS(2395), - [anon_sym__Generic] = ACTIONS(2397), - [anon_sym_asm] = ACTIONS(2399), - [anon_sym___asm__] = ACTIONS(2399), - [anon_sym_DOT] = ACTIONS(2279), - [anon_sym_DOT_STAR] = ACTIONS(2281), - [anon_sym_DASH_GT] = ACTIONS(2281), - [sym_number_literal] = ACTIONS(2401), - [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(2405), - [anon_sym_u_DQUOTE] = ACTIONS(2405), - [anon_sym_U_DQUOTE] = ACTIONS(2405), - [anon_sym_u8_DQUOTE] = ACTIONS(2405), - [anon_sym_DQUOTE] = ACTIONS(2405), - [sym_true] = ACTIONS(2407), - [sym_false] = ACTIONS(2407), - [anon_sym_NULL] = ACTIONS(2409), - [anon_sym_nullptr] = ACTIONS(2409), + [188] = { + [sym_expression] = STATE(3143), + [sym_expression_not_binary] = STATE(3486), + [sym_conditional_expression] = STATE(3447), + [sym_assignment_expression] = STATE(3447), + [sym_pointer_expression] = STATE(3487), + [sym_unary_expression] = STATE(3447), + [sym_binary_expression] = STATE(3486), + [sym_update_expression] = STATE(3447), + [sym_cast_expression] = STATE(3447), + [sym_sizeof_expression] = STATE(3447), + [sym_alignof_expression] = STATE(3447), + [sym_offsetof_expression] = STATE(3447), + [sym_generic_expression] = STATE(3447), + [sym_subscript_expression] = STATE(3487), + [sym_call_expression] = STATE(3487), + [sym_gnu_asm_expression] = STATE(3447), + [sym_field_expression] = STATE(3487), + [sym_compound_literal_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3487), + [sym_initializer_list] = STATE(3407), + [sym_char_literal] = STATE(3228), + [sym_concatenated_string] = STATE(3228), + [sym_string_literal] = STATE(2167), + [sym_null] = STATE(3447), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8847), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3447), + [sym_raw_string_literal] = STATE(2167), + [sym_co_await_expression] = STATE(3447), + [sym_new_expression] = STATE(3447), + [sym_delete_expression] = STATE(3447), + [sym_requires_clause] = STATE(3447), + [sym_requires_expression] = STATE(3447), + [sym_lambda_expression] = STATE(3447), + [sym_lambda_capture_specifier] = STATE(6853), + [sym_fold_expression] = STATE(3447), + [sym_parameter_pack_expansion] = STATE(3447), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3487), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3487), + [sym_semgrep_ellipsis] = STATE(3486), + [sym_deep_ellipsis] = STATE(3486), + [sym_identifier] = ACTIONS(2285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2277), + [anon_sym_COMMA] = ACTIONS(2277), + [aux_sym_preproc_if_token2] = ACTIONS(2277), + [aux_sym_preproc_else_token1] = ACTIONS(2277), + [aux_sym_preproc_elif_token1] = ACTIONS(2277), + [anon_sym_LPAREN2] = ACTIONS(2277), + [anon_sym_BANG] = ACTIONS(2365), + [anon_sym_TILDE] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_PERCENT] = ACTIONS(2285), + [anon_sym_PIPE_PIPE] = ACTIONS(2277), + [anon_sym_AMP_AMP] = ACTIONS(2277), + [anon_sym_PIPE] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2285), + [anon_sym_EQ_EQ] = ACTIONS(2277), + [anon_sym_BANG_EQ] = ACTIONS(2277), + [anon_sym_GT] = ACTIONS(2285), + [anon_sym_GT_EQ] = ACTIONS(2277), + [anon_sym_LT_EQ] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_LT_LT] = ACTIONS(2285), + [anon_sym_GT_GT] = ACTIONS(2285), + [anon_sym_COLON_COLON] = ACTIONS(2369), + [anon_sym_LBRACE] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2277), + [anon_sym_EQ] = ACTIONS(2285), + [sym_primitive_type] = ACTIONS(2373), + [anon_sym_QMARK] = ACTIONS(2277), + [anon_sym_STAR_EQ] = ACTIONS(2277), + [anon_sym_SLASH_EQ] = ACTIONS(2277), + [anon_sym_PERCENT_EQ] = ACTIONS(2277), + [anon_sym_PLUS_EQ] = ACTIONS(2277), + [anon_sym_DASH_EQ] = ACTIONS(2277), + [anon_sym_LT_LT_EQ] = ACTIONS(2277), + [anon_sym_GT_GT_EQ] = ACTIONS(2277), + [anon_sym_AMP_EQ] = ACTIONS(2277), + [anon_sym_CARET_EQ] = ACTIONS(2277), + [anon_sym_PIPE_EQ] = ACTIONS(2277), + [anon_sym_and_eq] = ACTIONS(2285), + [anon_sym_or_eq] = ACTIONS(2285), + [anon_sym_xor_eq] = ACTIONS(2285), + [anon_sym_not] = ACTIONS(2365), + [anon_sym_compl] = ACTIONS(2365), + [anon_sym_LT_EQ_GT] = ACTIONS(2277), + [anon_sym_or] = ACTIONS(2285), + [anon_sym_and] = ACTIONS(2285), + [anon_sym_bitor] = ACTIONS(2285), + [anon_sym_xor] = ACTIONS(2285), + [anon_sym_bitand] = ACTIONS(2285), + [anon_sym_not_eq] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2277), + [anon_sym_PLUS_PLUS] = ACTIONS(2277), + [anon_sym_sizeof] = ACTIONS(2375), + [anon_sym___alignof__] = ACTIONS(2377), + [anon_sym___alignof] = ACTIONS(2377), + [anon_sym__alignof] = ACTIONS(2377), + [anon_sym_alignof] = ACTIONS(2377), + [anon_sym__Alignof] = ACTIONS(2377), + [anon_sym_offsetof] = ACTIONS(2379), + [anon_sym__Generic] = ACTIONS(2381), + [anon_sym_asm] = ACTIONS(2383), + [anon_sym___asm__] = ACTIONS(2383), + [anon_sym_DOT] = ACTIONS(2285), + [anon_sym_DOT_STAR] = ACTIONS(2277), + [anon_sym_DASH_GT] = ACTIONS(2277), + [sym_number_literal] = ACTIONS(2385), + [anon_sym_L_SQUOTE] = ACTIONS(2387), + [anon_sym_u_SQUOTE] = ACTIONS(2387), + [anon_sym_U_SQUOTE] = ACTIONS(2387), + [anon_sym_u8_SQUOTE] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2387), + [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(2391), + [sym_false] = ACTIONS(2391), + [anon_sym_NULL] = ACTIONS(2393), + [anon_sym_nullptr] = ACTIONS(2393), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2411), - [anon_sym_R_DQUOTE] = ACTIONS(2413), - [anon_sym_LR_DQUOTE] = ACTIONS(2413), - [anon_sym_uR_DQUOTE] = ACTIONS(2413), - [anon_sym_UR_DQUOTE] = ACTIONS(2413), - [anon_sym_u8R_DQUOTE] = ACTIONS(2413), - [anon_sym_co_await] = ACTIONS(2415), - [anon_sym_new] = ACTIONS(2417), - [anon_sym_requires] = ACTIONS(2419), - [sym_this] = ACTIONS(2407), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2421), - [sym_semgrep_named_ellipsis] = ACTIONS(2423), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2399), + [anon_sym_new] = ACTIONS(2401), + [anon_sym_requires] = ACTIONS(2403), + [sym_this] = ACTIONS(2391), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2405), + [sym_semgrep_named_ellipsis] = ACTIONS(2407), }, - [190] = { - [sym_attribute_declaration] = STATE(215), - [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_seh_try_statement] = STATE(576), - [sym_seh_leave_statement] = STATE(576), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(215), - [sym_identifier] = ACTIONS(2375), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_co_return] = ACTIONS(245), - [anon_sym_co_yield] = ACTIONS(247), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), - }, - [191] = { - [sym_attribute_declaration] = STATE(192), - [sym_compound_statement] = STATE(320), - [sym_attributed_statement] = STATE(320), - [sym_labeled_statement] = STATE(320), - [sym_expression_statement] = STATE(320), - [sym_if_statement] = STATE(320), - [sym_switch_statement] = STATE(320), - [sym_case_statement] = STATE(320), - [sym_while_statement] = STATE(320), - [sym_do_statement] = STATE(320), - [sym_for_statement] = STATE(320), - [sym_return_statement] = STATE(320), - [sym_break_statement] = STATE(320), - [sym_continue_statement] = STATE(320), - [sym_goto_statement] = STATE(320), - [sym_seh_try_statement] = STATE(320), - [sym_seh_leave_statement] = STATE(320), - [sym_expression] = STATE(5862), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9665), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(320), - [sym_co_return_statement] = STATE(320), - [sym_co_yield_statement] = STATE(320), - [sym_throw_statement] = STATE(320), - [sym_try_statement] = STATE(320), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [sym_identifier] = ACTIONS(2425), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [189] = { + [sym_attribute_declaration] = STATE(233), + [sym_compound_statement] = STATE(318), + [sym_attributed_statement] = STATE(318), + [sym_labeled_statement] = STATE(318), + [sym_expression_statement] = STATE(318), + [sym_if_statement] = STATE(318), + [sym_switch_statement] = STATE(318), + [sym_case_statement] = STATE(318), + [sym_while_statement] = STATE(318), + [sym_do_statement] = STATE(318), + [sym_for_statement] = STATE(318), + [sym_return_statement] = STATE(318), + [sym_break_statement] = STATE(318), + [sym_continue_statement] = STATE(318), + [sym_goto_statement] = STATE(318), + [sym_seh_try_statement] = STATE(318), + [sym_seh_leave_statement] = STATE(318), + [sym_expression] = STATE(5188), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9691), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(318), + [sym_co_return_statement] = STATE(318), + [sym_co_yield_statement] = STATE(318), + [sym_throw_statement] = STATE(318), + [sym_try_statement] = STATE(318), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(233), + [sym_identifier] = ACTIONS(2409), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_SEMI] = ACTIONS(301), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_if] = ACTIONS(313), [anon_sym_switch] = ACTIONS(315), [anon_sym_case] = ACTIONS(317), @@ -91221,7 +81105,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_try] = ACTIONS(341), [anon_sym_delete] = ACTIONS(139), [anon_sym_throw] = ACTIONS(343), @@ -91239,103 +81123,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [192] = { - [sym_attribute_declaration] = STATE(196), - [sym_compound_statement] = STATE(336), - [sym_attributed_statement] = STATE(336), - [sym_labeled_statement] = STATE(336), - [sym_expression_statement] = STATE(336), - [sym_if_statement] = STATE(336), - [sym_switch_statement] = STATE(336), - [sym_case_statement] = STATE(336), - [sym_while_statement] = STATE(336), - [sym_do_statement] = STATE(336), - [sym_for_statement] = STATE(336), - [sym_return_statement] = STATE(336), - [sym_break_statement] = STATE(336), - [sym_continue_statement] = STATE(336), - [sym_goto_statement] = STATE(336), - [sym_seh_try_statement] = STATE(336), - [sym_seh_leave_statement] = STATE(336), - [sym_expression] = STATE(5862), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9665), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(336), - [sym_co_return_statement] = STATE(336), - [sym_co_yield_statement] = STATE(336), - [sym_throw_statement] = STATE(336), - [sym_try_statement] = STATE(336), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(196), - [sym_identifier] = ACTIONS(2425), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [190] = { + [sym_attribute_declaration] = STATE(224), + [sym_compound_statement] = STATE(9733), + [sym_attributed_statement] = STATE(9733), + [sym_labeled_statement] = STATE(9733), + [sym_expression_statement] = STATE(9733), + [sym_if_statement] = STATE(9733), + [sym_switch_statement] = STATE(9733), + [sym_case_statement] = STATE(9733), + [sym_while_statement] = STATE(9733), + [sym_do_statement] = STATE(9733), + [sym_for_statement] = STATE(9733), + [sym_return_statement] = STATE(9733), + [sym_break_statement] = STATE(9733), + [sym_continue_statement] = STATE(9733), + [sym_goto_statement] = STATE(9733), + [sym_seh_try_statement] = STATE(9733), + [sym_seh_leave_statement] = STATE(9733), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(9733), + [sym_co_return_statement] = STATE(9733), + [sym_co_yield_statement] = STATE(9733), + [sym_throw_statement] = STATE(9733), + [sym_try_statement] = STATE(9733), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(224), + [sym_identifier] = ACTIONS(2411), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(187), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(313), - [anon_sym_switch] = ACTIONS(315), - [anon_sym_case] = ACTIONS(317), - [anon_sym_default] = ACTIONS(319), - [anon_sym_while] = ACTIONS(321), - [anon_sym_do] = ACTIONS(323), - [anon_sym_for] = ACTIONS(325), - [anon_sym_return] = ACTIONS(327), - [anon_sym_break] = ACTIONS(329), - [anon_sym_continue] = ACTIONS(331), - [anon_sym_goto] = ACTIONS(333), - [anon_sym___try] = ACTIONS(335), - [anon_sym___leave] = ACTIONS(337), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2413), + [anon_sym_switch] = ACTIONS(79), + [anon_sym_case] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2419), + [anon_sym_do] = ACTIONS(87), + [anon_sym_for] = ACTIONS(2421), + [anon_sym_return] = ACTIONS(91), + [anon_sym_break] = ACTIONS(93), + [anon_sym_continue] = ACTIONS(95), + [anon_sym_goto] = ACTIONS(97), + [anon_sym___try] = ACTIONS(2423), + [anon_sym___leave] = ACTIONS(227), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -91367,12 +81251,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(341), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(137), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(343), - [anon_sym_co_return] = ACTIONS(353), - [anon_sym_co_yield] = ACTIONS(355), + [anon_sym_throw] = ACTIONS(141), + [anon_sym_co_return] = ACTIONS(151), + [anon_sym_co_yield] = ACTIONS(153), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -91385,102 +81269,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [193] = { - [sym_attribute_declaration] = STATE(260), - [sym_compound_statement] = STATE(10647), - [sym_attributed_statement] = STATE(10647), - [sym_labeled_statement] = STATE(10647), - [sym_expression_statement] = STATE(10647), - [sym_if_statement] = STATE(10647), - [sym_switch_statement] = STATE(10647), - [sym_case_statement] = STATE(10647), - [sym_while_statement] = STATE(10647), - [sym_do_statement] = STATE(10647), - [sym_for_statement] = STATE(10647), - [sym_return_statement] = STATE(10647), - [sym_break_statement] = STATE(10647), - [sym_continue_statement] = STATE(10647), - [sym_goto_statement] = STATE(10647), - [sym_seh_try_statement] = STATE(10647), - [sym_seh_leave_statement] = STATE(10647), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(10647), - [sym_co_return_statement] = STATE(10647), - [sym_co_yield_statement] = STATE(10647), - [sym_throw_statement] = STATE(10647), - [sym_try_statement] = STATE(10647), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(2427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [191] = { + [sym_attribute_declaration] = STATE(224), + [sym_compound_statement] = STATE(9752), + [sym_attributed_statement] = STATE(9752), + [sym_labeled_statement] = STATE(9752), + [sym_expression_statement] = STATE(9752), + [sym_if_statement] = STATE(9752), + [sym_switch_statement] = STATE(9752), + [sym_case_statement] = STATE(9752), + [sym_while_statement] = STATE(9752), + [sym_do_statement] = STATE(9752), + [sym_for_statement] = STATE(9752), + [sym_return_statement] = STATE(9752), + [sym_break_statement] = STATE(9752), + [sym_continue_statement] = STATE(9752), + [sym_goto_statement] = STATE(9752), + [sym_seh_try_statement] = STATE(9752), + [sym_seh_leave_statement] = STATE(9752), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(9752), + [sym_co_return_statement] = STATE(9752), + [sym_co_yield_statement] = STATE(9752), + [sym_throw_statement] = STATE(9752), + [sym_try_statement] = STATE(9752), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(224), + [sym_identifier] = ACTIONS(2411), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_SEMI] = ACTIONS(187), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(2429), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2413), [anon_sym_switch] = ACTIONS(79), - [anon_sym_case] = ACTIONS(2431), - [anon_sym_default] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2435), + [anon_sym_case] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2419), [anon_sym_do] = ACTIONS(87), - [anon_sym_for] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2421), [anon_sym_return] = ACTIONS(91), [anon_sym_break] = ACTIONS(93), [anon_sym_continue] = ACTIONS(95), [anon_sym_goto] = ACTIONS(97), - [anon_sym___try] = ACTIONS(2439), + [anon_sym___try] = ACTIONS(2423), [anon_sym___leave] = ACTIONS(227), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), @@ -91513,7 +81397,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_try] = ACTIONS(137), [anon_sym_delete] = ACTIONS(139), [anon_sym_throw] = ACTIONS(141), @@ -91531,249 +81415,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [194] = { - [sym_attribute_declaration] = STATE(194), - [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_seh_try_statement] = STATE(573), - [sym_seh_leave_statement] = STATE(573), - [sym_expression] = STATE(5819), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9710), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [sym_identifier] = ACTIONS(2441), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2444), - [anon_sym_LPAREN2] = ACTIONS(2447), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_TILDE] = ACTIONS(2450), - [anon_sym_DASH] = ACTIONS(2453), - [anon_sym_PLUS] = ACTIONS(2453), - [anon_sym_STAR] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2456), - [anon_sym_SEMI] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2462), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2465), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LBRACK] = ACTIONS(2471), - [sym_primitive_type] = ACTIONS(2474), - [anon_sym_if] = ACTIONS(2477), - [anon_sym_switch] = ACTIONS(2480), - [anon_sym_case] = ACTIONS(2483), - [anon_sym_default] = ACTIONS(2486), - [anon_sym_while] = ACTIONS(2489), - [anon_sym_do] = ACTIONS(2492), - [anon_sym_for] = ACTIONS(2495), - [anon_sym_return] = ACTIONS(2498), - [anon_sym_break] = ACTIONS(2501), - [anon_sym_continue] = ACTIONS(2504), - [anon_sym_goto] = ACTIONS(2507), - [anon_sym___try] = ACTIONS(2510), - [anon_sym___leave] = ACTIONS(2513), - [anon_sym_not] = ACTIONS(2453), - [anon_sym_compl] = ACTIONS(2453), - [anon_sym_DASH_DASH] = ACTIONS(2516), - [anon_sym_PLUS_PLUS] = ACTIONS(2516), - [anon_sym_sizeof] = ACTIONS(2519), - [anon_sym___alignof__] = ACTIONS(2522), - [anon_sym___alignof] = ACTIONS(2522), - [anon_sym__alignof] = ACTIONS(2522), - [anon_sym_alignof] = ACTIONS(2522), - [anon_sym__Alignof] = ACTIONS(2522), - [anon_sym_offsetof] = ACTIONS(2525), - [anon_sym__Generic] = ACTIONS(2528), - [anon_sym_asm] = ACTIONS(2531), - [anon_sym___asm__] = ACTIONS(2531), - [sym_number_literal] = ACTIONS(2534), - [anon_sym_L_SQUOTE] = ACTIONS(2537), - [anon_sym_u_SQUOTE] = ACTIONS(2537), - [anon_sym_U_SQUOTE] = ACTIONS(2537), - [anon_sym_u8_SQUOTE] = ACTIONS(2537), - [anon_sym_SQUOTE] = ACTIONS(2537), - [anon_sym_L_DQUOTE] = ACTIONS(2540), - [anon_sym_u_DQUOTE] = ACTIONS(2540), - [anon_sym_U_DQUOTE] = ACTIONS(2540), - [anon_sym_u8_DQUOTE] = ACTIONS(2540), - [anon_sym_DQUOTE] = ACTIONS(2540), - [sym_true] = ACTIONS(2543), - [sym_false] = ACTIONS(2543), - [anon_sym_NULL] = ACTIONS(2546), - [anon_sym_nullptr] = ACTIONS(2546), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2549), - [anon_sym_template] = ACTIONS(2552), - [anon_sym_try] = ACTIONS(2555), - [anon_sym_delete] = ACTIONS(2558), - [anon_sym_throw] = ACTIONS(2561), - [anon_sym_co_return] = ACTIONS(2564), - [anon_sym_co_yield] = ACTIONS(2567), - [anon_sym_R_DQUOTE] = ACTIONS(2570), - [anon_sym_LR_DQUOTE] = ACTIONS(2570), - [anon_sym_uR_DQUOTE] = ACTIONS(2570), - [anon_sym_UR_DQUOTE] = ACTIONS(2570), - [anon_sym_u8R_DQUOTE] = ACTIONS(2570), - [anon_sym_co_await] = ACTIONS(2573), - [anon_sym_new] = ACTIONS(2576), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2543), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2582), - [sym_semgrep_named_ellipsis] = ACTIONS(2585), - }, - [195] = { - [sym_attribute_declaration] = STATE(250), - [sym_compound_statement] = STATE(1015), - [sym_attributed_statement] = STATE(1015), - [sym_labeled_statement] = STATE(1015), - [sym_expression_statement] = STATE(1015), - [sym_if_statement] = STATE(1015), - [sym_switch_statement] = STATE(1015), - [sym_case_statement] = STATE(1015), - [sym_while_statement] = STATE(1015), - [sym_do_statement] = STATE(1015), - [sym_for_statement] = STATE(1015), - [sym_return_statement] = STATE(1015), - [sym_break_statement] = STATE(1015), - [sym_continue_statement] = STATE(1015), - [sym_goto_statement] = STATE(1015), - [sym_seh_try_statement] = STATE(1015), - [sym_seh_leave_statement] = STATE(1015), - [sym_expression] = STATE(5875), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10185), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(1015), - [sym_co_return_statement] = STATE(1015), - [sym_co_yield_statement] = STATE(1015), - [sym_throw_statement] = STATE(1015), - [sym_try_statement] = STATE(1015), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(250), - [sym_identifier] = ACTIONS(2588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [192] = { + [sym_attribute_declaration] = STATE(206), + [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_seh_try_statement] = STATE(562), + [sym_seh_leave_statement] = STATE(562), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [sym_identifier] = ACTIONS(2361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(187), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(2009), - [anon_sym_switch] = ACTIONS(2011), - [anon_sym_case] = ACTIONS(2431), - [anon_sym_default] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_do] = ACTIONS(2015), - [anon_sym_for] = ACTIONS(2017), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2021), - [anon_sym_continue] = ACTIONS(2023), - [anon_sym_goto] = ACTIONS(2025), - [anon_sym___try] = ACTIONS(2027), - [anon_sym___leave] = ACTIONS(2029), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -91805,12 +81543,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(2031), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(233), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(2033), - [anon_sym_co_return] = ACTIONS(2035), - [anon_sym_co_yield] = ACTIONS(2037), + [anon_sym_throw] = ACTIONS(235), + [anon_sym_co_return] = ACTIONS(245), + [anon_sym_co_yield] = ACTIONS(247), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -91823,249 +81561,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [196] = { - [sym_attribute_declaration] = STATE(196), - [sym_compound_statement] = STATE(336), - [sym_attributed_statement] = STATE(336), - [sym_labeled_statement] = STATE(336), - [sym_expression_statement] = STATE(336), - [sym_if_statement] = STATE(336), - [sym_switch_statement] = STATE(336), - [sym_case_statement] = STATE(336), - [sym_while_statement] = STATE(336), - [sym_do_statement] = STATE(336), - [sym_for_statement] = STATE(336), - [sym_return_statement] = STATE(336), - [sym_break_statement] = STATE(336), - [sym_continue_statement] = STATE(336), - [sym_goto_statement] = STATE(336), - [sym_seh_try_statement] = STATE(336), - [sym_seh_leave_statement] = STATE(336), - [sym_expression] = STATE(5862), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9665), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(336), - [sym_co_return_statement] = STATE(336), - [sym_co_yield_statement] = STATE(336), - [sym_throw_statement] = STATE(336), - [sym_try_statement] = STATE(336), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(196), - [sym_identifier] = ACTIONS(2590), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2444), - [anon_sym_LPAREN2] = ACTIONS(2447), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_TILDE] = ACTIONS(2450), - [anon_sym_DASH] = ACTIONS(2453), - [anon_sym_PLUS] = ACTIONS(2453), - [anon_sym_STAR] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2456), - [anon_sym_SEMI] = ACTIONS(2593), - [anon_sym_COLON_COLON] = ACTIONS(2462), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2465), - [anon_sym_LBRACE] = ACTIONS(2596), - [anon_sym_LBRACK] = ACTIONS(2471), - [sym_primitive_type] = ACTIONS(2474), - [anon_sym_if] = ACTIONS(2599), - [anon_sym_switch] = ACTIONS(2602), - [anon_sym_case] = ACTIONS(2605), - [anon_sym_default] = ACTIONS(2608), - [anon_sym_while] = ACTIONS(2611), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2617), - [anon_sym_return] = ACTIONS(2620), - [anon_sym_break] = ACTIONS(2623), - [anon_sym_continue] = ACTIONS(2626), - [anon_sym_goto] = ACTIONS(2629), - [anon_sym___try] = ACTIONS(2632), - [anon_sym___leave] = ACTIONS(2635), - [anon_sym_not] = ACTIONS(2453), - [anon_sym_compl] = ACTIONS(2453), - [anon_sym_DASH_DASH] = ACTIONS(2516), - [anon_sym_PLUS_PLUS] = ACTIONS(2516), - [anon_sym_sizeof] = ACTIONS(2519), - [anon_sym___alignof__] = ACTIONS(2522), - [anon_sym___alignof] = ACTIONS(2522), - [anon_sym__alignof] = ACTIONS(2522), - [anon_sym_alignof] = ACTIONS(2522), - [anon_sym__Alignof] = ACTIONS(2522), - [anon_sym_offsetof] = ACTIONS(2525), - [anon_sym__Generic] = ACTIONS(2528), - [anon_sym_asm] = ACTIONS(2531), - [anon_sym___asm__] = ACTIONS(2531), - [sym_number_literal] = ACTIONS(2534), - [anon_sym_L_SQUOTE] = ACTIONS(2537), - [anon_sym_u_SQUOTE] = ACTIONS(2537), - [anon_sym_U_SQUOTE] = ACTIONS(2537), - [anon_sym_u8_SQUOTE] = ACTIONS(2537), - [anon_sym_SQUOTE] = ACTIONS(2537), - [anon_sym_L_DQUOTE] = ACTIONS(2540), - [anon_sym_u_DQUOTE] = ACTIONS(2540), - [anon_sym_U_DQUOTE] = ACTIONS(2540), - [anon_sym_u8_DQUOTE] = ACTIONS(2540), - [anon_sym_DQUOTE] = ACTIONS(2540), - [sym_true] = ACTIONS(2543), - [sym_false] = ACTIONS(2543), - [anon_sym_NULL] = ACTIONS(2546), - [anon_sym_nullptr] = ACTIONS(2546), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2549), - [anon_sym_template] = ACTIONS(2552), - [anon_sym_try] = ACTIONS(2638), - [anon_sym_delete] = ACTIONS(2558), - [anon_sym_throw] = ACTIONS(2641), - [anon_sym_co_return] = ACTIONS(2644), - [anon_sym_co_yield] = ACTIONS(2647), - [anon_sym_R_DQUOTE] = ACTIONS(2570), - [anon_sym_LR_DQUOTE] = ACTIONS(2570), - [anon_sym_uR_DQUOTE] = ACTIONS(2570), - [anon_sym_UR_DQUOTE] = ACTIONS(2570), - [anon_sym_u8R_DQUOTE] = ACTIONS(2570), - [anon_sym_co_await] = ACTIONS(2573), - [anon_sym_new] = ACTIONS(2576), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2543), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2582), - [sym_semgrep_named_ellipsis] = ACTIONS(2585), - }, - [197] = { - [sym_attribute_declaration] = STATE(239), - [sym_compound_statement] = STATE(525), - [sym_attributed_statement] = STATE(525), - [sym_labeled_statement] = STATE(525), - [sym_expression_statement] = STATE(525), - [sym_if_statement] = STATE(525), - [sym_switch_statement] = STATE(525), - [sym_case_statement] = STATE(525), - [sym_while_statement] = STATE(525), - [sym_do_statement] = STATE(525), - [sym_for_statement] = STATE(525), - [sym_return_statement] = STATE(525), - [sym_break_statement] = STATE(525), - [sym_continue_statement] = STATE(525), - [sym_goto_statement] = STATE(525), - [sym_seh_try_statement] = STATE(525), - [sym_seh_leave_statement] = STATE(525), - [sym_expression] = STATE(5777), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9682), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(525), - [sym_co_return_statement] = STATE(525), - [sym_co_yield_statement] = STATE(525), - [sym_throw_statement] = STATE(525), - [sym_try_statement] = STATE(525), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(2650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [193] = { + [sym_attribute_declaration] = STATE(224), + [sym_compound_statement] = STATE(10016), + [sym_attributed_statement] = STATE(10016), + [sym_labeled_statement] = STATE(10016), + [sym_expression_statement] = STATE(10016), + [sym_if_statement] = STATE(10016), + [sym_switch_statement] = STATE(10016), + [sym_case_statement] = STATE(10016), + [sym_while_statement] = STATE(10016), + [sym_do_statement] = STATE(10016), + [sym_for_statement] = STATE(10016), + [sym_return_statement] = STATE(10016), + [sym_break_statement] = STATE(10016), + [sym_continue_statement] = STATE(10016), + [sym_goto_statement] = STATE(10016), + [sym_seh_try_statement] = STATE(10016), + [sym_seh_leave_statement] = STATE(10016), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(10016), + [sym_co_return_statement] = STATE(10016), + [sym_co_yield_statement] = STATE(10016), + [sym_throw_statement] = STATE(10016), + [sym_try_statement] = STATE(10016), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(224), + [sym_identifier] = ACTIONS(2411), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(187), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2413), [anon_sym_switch] = ACTIONS(79), - [anon_sym_case] = ACTIONS(81), - [anon_sym_default] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), + [anon_sym_case] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2419), [anon_sym_do] = ACTIONS(87), - [anon_sym_for] = ACTIONS(89), + [anon_sym_for] = ACTIONS(2421), [anon_sym_return] = ACTIONS(91), [anon_sym_break] = ACTIONS(93), [anon_sym_continue] = ACTIONS(95), [anon_sym_goto] = ACTIONS(97), - [anon_sym___try] = ACTIONS(1875), - [anon_sym___leave] = ACTIONS(1877), + [anon_sym___try] = ACTIONS(2423), + [anon_sym___leave] = ACTIONS(227), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -92097,7 +81689,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_try] = ACTIONS(137), [anon_sym_delete] = ACTIONS(139), [anon_sym_throw] = ACTIONS(141), @@ -92115,249 +81707,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [198] = { - [sym_expression] = STATE(3027), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_initializer_list] = STATE(3147), - [sym_char_literal] = STATE(3806), - [sym_concatenated_string] = STATE(3806), - [sym_string_literal] = STATE(2240), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(2240), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2652), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2281), - [anon_sym_COMMA] = ACTIONS(2281), - [anon_sym_LPAREN2] = ACTIONS(2281), - [anon_sym_BANG] = ACTIONS(2654), - [anon_sym_TILDE] = ACTIONS(2656), - [anon_sym_DASH] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2279), - [anon_sym_STAR] = ACTIONS(2279), - [anon_sym_SLASH] = ACTIONS(2279), - [anon_sym_PERCENT] = ACTIONS(2279), - [anon_sym_PIPE_PIPE] = ACTIONS(2281), - [anon_sym_AMP_AMP] = ACTIONS(2281), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_CARET] = ACTIONS(2279), - [anon_sym_AMP] = ACTIONS(2279), - [anon_sym_EQ_EQ] = ACTIONS(2281), - [anon_sym_BANG_EQ] = ACTIONS(2281), - [anon_sym_GT] = ACTIONS(2279), - [anon_sym_GT_EQ] = ACTIONS(2281), - [anon_sym_LT_EQ] = ACTIONS(2279), - [anon_sym_LT] = ACTIONS(2279), - [anon_sym_LT_LT] = ACTIONS(2279), - [anon_sym_GT_GT] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2281), - [anon_sym___attribute__] = ACTIONS(2279), - [anon_sym_COLON_COLON] = ACTIONS(2658), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_LBRACK] = ACTIONS(2281), - [anon_sym_EQ] = ACTIONS(2279), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_QMARK] = ACTIONS(2281), - [anon_sym_STAR_EQ] = ACTIONS(2281), - [anon_sym_SLASH_EQ] = ACTIONS(2281), - [anon_sym_PERCENT_EQ] = ACTIONS(2281), - [anon_sym_PLUS_EQ] = ACTIONS(2281), - [anon_sym_DASH_EQ] = ACTIONS(2281), - [anon_sym_LT_LT_EQ] = ACTIONS(2281), - [anon_sym_GT_GT_EQ] = ACTIONS(2281), - [anon_sym_AMP_EQ] = ACTIONS(2281), - [anon_sym_CARET_EQ] = ACTIONS(2281), - [anon_sym_PIPE_EQ] = ACTIONS(2281), - [anon_sym_and_eq] = ACTIONS(2279), - [anon_sym_or_eq] = ACTIONS(2279), - [anon_sym_xor_eq] = ACTIONS(2279), - [anon_sym_not] = ACTIONS(2654), - [anon_sym_compl] = ACTIONS(2654), - [anon_sym_LT_EQ_GT] = ACTIONS(2281), - [anon_sym_or] = ACTIONS(2279), - [anon_sym_and] = ACTIONS(2279), - [anon_sym_bitor] = ACTIONS(2279), - [anon_sym_xor] = ACTIONS(2279), - [anon_sym_bitand] = ACTIONS(2279), - [anon_sym_not_eq] = ACTIONS(2279), - [anon_sym_DASH_DASH] = ACTIONS(2281), - [anon_sym_PLUS_PLUS] = ACTIONS(2281), - [anon_sym_sizeof] = ACTIONS(2660), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [anon_sym_DOT] = ACTIONS(2279), - [anon_sym_DOT_STAR] = ACTIONS(2281), - [anon_sym_DASH_GT] = ACTIONS(2281), - [sym_number_literal] = ACTIONS(2662), - [anon_sym_L_SQUOTE] = ACTIONS(2664), - [anon_sym_u_SQUOTE] = ACTIONS(2664), - [anon_sym_U_SQUOTE] = ACTIONS(2664), - [anon_sym_u8_SQUOTE] = ACTIONS(2664), - [anon_sym_SQUOTE] = ACTIONS(2664), - [anon_sym_L_DQUOTE] = ACTIONS(2666), - [anon_sym_u_DQUOTE] = ACTIONS(2666), - [anon_sym_U_DQUOTE] = ACTIONS(2666), - [anon_sym_u8_DQUOTE] = ACTIONS(2666), - [anon_sym_DQUOTE] = ACTIONS(2666), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2668), - [anon_sym_R_DQUOTE] = ACTIONS(2670), - [anon_sym_LR_DQUOTE] = ACTIONS(2670), - [anon_sym_uR_DQUOTE] = ACTIONS(2670), - [anon_sym_UR_DQUOTE] = ACTIONS(2670), - [anon_sym_u8R_DQUOTE] = ACTIONS(2670), - [anon_sym_co_await] = ACTIONS(2672), - [anon_sym_new] = ACTIONS(2674), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [199] = { - [sym_attribute_declaration] = STATE(195), - [sym_compound_statement] = STATE(978), - [sym_attributed_statement] = STATE(978), - [sym_labeled_statement] = STATE(978), - [sym_expression_statement] = STATE(978), - [sym_if_statement] = STATE(978), - [sym_switch_statement] = STATE(978), - [sym_case_statement] = STATE(978), - [sym_while_statement] = STATE(978), - [sym_do_statement] = STATE(978), - [sym_for_statement] = STATE(978), - [sym_return_statement] = STATE(978), - [sym_break_statement] = STATE(978), - [sym_continue_statement] = STATE(978), - [sym_goto_statement] = STATE(978), - [sym_seh_try_statement] = STATE(978), - [sym_seh_leave_statement] = STATE(978), - [sym_expression] = STATE(5875), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10185), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(978), - [sym_co_return_statement] = STATE(978), - [sym_co_yield_statement] = STATE(978), - [sym_throw_statement] = STATE(978), - [sym_try_statement] = STATE(978), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(195), - [sym_identifier] = ACTIONS(2588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [194] = { + [sym_attribute_declaration] = STATE(206), + [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_seh_try_statement] = STATE(664), + [sym_seh_leave_statement] = STATE(664), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [sym_identifier] = ACTIONS(2361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(187), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(2009), - [anon_sym_switch] = ACTIONS(2011), - [anon_sym_case] = ACTIONS(2431), - [anon_sym_default] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_do] = ACTIONS(2015), - [anon_sym_for] = ACTIONS(2017), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2021), - [anon_sym_continue] = ACTIONS(2023), - [anon_sym_goto] = ACTIONS(2025), - [anon_sym___try] = ACTIONS(2027), - [anon_sym___leave] = ACTIONS(2029), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -92389,12 +81835,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(2031), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(233), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(2033), - [anon_sym_co_return] = ACTIONS(2035), - [anon_sym_co_yield] = ACTIONS(2037), + [anon_sym_throw] = ACTIONS(235), + [anon_sym_co_return] = ACTIONS(245), + [anon_sym_co_yield] = ACTIONS(247), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -92407,103 +81853,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [200] = { - [sym_attribute_declaration] = STATE(239), - [sym_compound_statement] = STATE(665), - [sym_attributed_statement] = STATE(665), - [sym_labeled_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_if_statement] = STATE(665), - [sym_switch_statement] = STATE(665), - [sym_case_statement] = STATE(665), - [sym_while_statement] = STATE(665), - [sym_do_statement] = STATE(665), - [sym_for_statement] = STATE(665), - [sym_return_statement] = STATE(665), - [sym_break_statement] = STATE(665), - [sym_continue_statement] = STATE(665), - [sym_goto_statement] = STATE(665), - [sym_seh_try_statement] = STATE(665), - [sym_seh_leave_statement] = STATE(665), - [sym_expression] = STATE(5777), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9682), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(665), - [sym_co_return_statement] = STATE(665), - [sym_co_yield_statement] = STATE(665), - [sym_throw_statement] = STATE(665), - [sym_try_statement] = STATE(665), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(2650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [195] = { + [sym_attribute_declaration] = STATE(206), + [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_seh_try_statement] = STATE(671), + [sym_seh_leave_statement] = STATE(671), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [sym_identifier] = ACTIONS(2361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(187), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(77), - [anon_sym_switch] = ACTIONS(79), - [anon_sym_case] = ACTIONS(81), - [anon_sym_default] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_do] = ACTIONS(87), - [anon_sym_for] = ACTIONS(89), - [anon_sym_return] = ACTIONS(91), - [anon_sym_break] = ACTIONS(93), - [anon_sym_continue] = ACTIONS(95), - [anon_sym_goto] = ACTIONS(97), - [anon_sym___try] = ACTIONS(1875), - [anon_sym___leave] = ACTIONS(1877), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -92535,12 +81981,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(137), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(233), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(141), - [anon_sym_co_return] = ACTIONS(151), - [anon_sym_co_yield] = ACTIONS(153), + [anon_sym_throw] = ACTIONS(235), + [anon_sym_co_return] = ACTIONS(245), + [anon_sym_co_yield] = ACTIONS(247), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -92553,103 +81999,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [201] = { - [sym_attribute_declaration] = STATE(192), - [sym_compound_statement] = STATE(303), - [sym_attributed_statement] = STATE(303), - [sym_labeled_statement] = STATE(303), - [sym_expression_statement] = STATE(303), - [sym_if_statement] = STATE(303), - [sym_switch_statement] = STATE(303), - [sym_case_statement] = STATE(303), - [sym_while_statement] = STATE(303), - [sym_do_statement] = STATE(303), - [sym_for_statement] = STATE(303), - [sym_return_statement] = STATE(303), - [sym_break_statement] = STATE(303), - [sym_continue_statement] = STATE(303), - [sym_goto_statement] = STATE(303), - [sym_seh_try_statement] = STATE(303), - [sym_seh_leave_statement] = STATE(303), - [sym_expression] = STATE(5862), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9665), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(303), - [sym_co_return_statement] = STATE(303), - [sym_co_yield_statement] = STATE(303), - [sym_throw_statement] = STATE(303), - [sym_try_statement] = STATE(303), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(192), + [196] = { + [sym_attribute_declaration] = STATE(196), + [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_seh_try_statement] = STATE(649), + [sym_seh_leave_statement] = STATE(649), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(196), [sym_identifier] = ACTIONS(2425), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2428), + [anon_sym_LPAREN2] = ACTIONS(2431), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_COLON_COLON] = ACTIONS(2446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2449), + [anon_sym_LBRACE] = ACTIONS(2452), + [anon_sym_LBRACK] = ACTIONS(2455), + [sym_primitive_type] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_switch] = ACTIONS(2464), + [anon_sym_case] = ACTIONS(2467), + [anon_sym_default] = ACTIONS(2470), + [anon_sym_while] = ACTIONS(2473), + [anon_sym_do] = ACTIONS(2476), + [anon_sym_for] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(2482), + [anon_sym_break] = ACTIONS(2485), + [anon_sym_continue] = ACTIONS(2488), + [anon_sym_goto] = ACTIONS(2491), + [anon_sym___try] = ACTIONS(2494), + [anon_sym___leave] = ACTIONS(2497), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_compl] = ACTIONS(2437), + [anon_sym_DASH_DASH] = ACTIONS(2500), + [anon_sym_PLUS_PLUS] = ACTIONS(2500), + [anon_sym_sizeof] = ACTIONS(2503), + [anon_sym___alignof__] = ACTIONS(2506), + [anon_sym___alignof] = ACTIONS(2506), + [anon_sym__alignof] = ACTIONS(2506), + [anon_sym_alignof] = ACTIONS(2506), + [anon_sym__Alignof] = ACTIONS(2506), + [anon_sym_offsetof] = ACTIONS(2509), + [anon_sym__Generic] = ACTIONS(2512), + [anon_sym_asm] = ACTIONS(2515), + [anon_sym___asm__] = ACTIONS(2515), + [sym_number_literal] = ACTIONS(2518), + [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(2524), + [anon_sym_u_DQUOTE] = ACTIONS(2524), + [anon_sym_U_DQUOTE] = ACTIONS(2524), + [anon_sym_u8_DQUOTE] = ACTIONS(2524), + [anon_sym_DQUOTE] = ACTIONS(2524), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [anon_sym_NULL] = ACTIONS(2530), + [anon_sym_nullptr] = ACTIONS(2530), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2533), + [anon_sym_template] = ACTIONS(2536), + [anon_sym_try] = ACTIONS(2539), + [anon_sym_delete] = ACTIONS(2542), + [anon_sym_throw] = ACTIONS(2545), + [anon_sym_co_return] = ACTIONS(2548), + [anon_sym_co_yield] = ACTIONS(2551), + [anon_sym_R_DQUOTE] = ACTIONS(2554), + [anon_sym_LR_DQUOTE] = ACTIONS(2554), + [anon_sym_uR_DQUOTE] = ACTIONS(2554), + [anon_sym_UR_DQUOTE] = ACTIONS(2554), + [anon_sym_u8R_DQUOTE] = ACTIONS(2554), + [anon_sym_co_await] = ACTIONS(2557), + [anon_sym_new] = ACTIONS(2560), + [anon_sym_requires] = ACTIONS(2563), + [sym_this] = ACTIONS(2527), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2566), + [sym_semgrep_named_ellipsis] = ACTIONS(2569), + }, + [197] = { + [sym_attribute_declaration] = STATE(199), + [sym_compound_statement] = STATE(537), + [sym_attributed_statement] = STATE(537), + [sym_labeled_statement] = STATE(537), + [sym_expression_statement] = STATE(537), + [sym_if_statement] = STATE(537), + [sym_switch_statement] = STATE(537), + [sym_case_statement] = STATE(537), + [sym_while_statement] = STATE(537), + [sym_do_statement] = STATE(537), + [sym_for_statement] = STATE(537), + [sym_return_statement] = STATE(537), + [sym_break_statement] = STATE(537), + [sym_continue_statement] = STATE(537), + [sym_goto_statement] = STATE(537), + [sym_seh_try_statement] = STATE(537), + [sym_seh_leave_statement] = STATE(537), + [sym_expression] = STATE(5204), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9572), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(537), + [sym_co_return_statement] = STATE(537), + [sym_co_yield_statement] = STATE(537), + [sym_throw_statement] = STATE(537), + [sym_try_statement] = STATE(537), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(2572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1927), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(313), - [anon_sym_switch] = ACTIONS(315), - [anon_sym_case] = ACTIONS(317), - [anon_sym_default] = ACTIONS(319), - [anon_sym_while] = ACTIONS(321), - [anon_sym_do] = ACTIONS(323), - [anon_sym_for] = ACTIONS(325), - [anon_sym_return] = ACTIONS(327), - [anon_sym_break] = ACTIONS(329), - [anon_sym_continue] = ACTIONS(331), - [anon_sym_goto] = ACTIONS(333), - [anon_sym___try] = ACTIONS(335), - [anon_sym___leave] = ACTIONS(337), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(77), + [anon_sym_switch] = ACTIONS(79), + [anon_sym_case] = ACTIONS(81), + [anon_sym_default] = ACTIONS(83), + [anon_sym_while] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_return] = ACTIONS(91), + [anon_sym_break] = ACTIONS(93), + [anon_sym_continue] = ACTIONS(95), + [anon_sym_goto] = ACTIONS(97), + [anon_sym___try] = ACTIONS(1929), + [anon_sym___leave] = ACTIONS(1931), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -92681,12 +82273,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(341), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(137), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(343), - [anon_sym_co_return] = ACTIONS(353), - [anon_sym_co_yield] = ACTIONS(355), + [anon_sym_throw] = ACTIONS(141), + [anon_sym_co_return] = ACTIONS(151), + [anon_sym_co_yield] = ACTIONS(153), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -92699,90 +82291,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [202] = { - [sym_attribute_declaration] = STATE(190), - [sym_compound_statement] = STATE(534), - [sym_attributed_statement] = STATE(534), - [sym_labeled_statement] = STATE(534), - [sym_expression_statement] = STATE(534), - [sym_if_statement] = STATE(534), - [sym_switch_statement] = STATE(534), - [sym_case_statement] = STATE(534), - [sym_while_statement] = STATE(534), - [sym_do_statement] = STATE(534), - [sym_for_statement] = STATE(534), - [sym_return_statement] = STATE(534), - [sym_break_statement] = STATE(534), - [sym_continue_statement] = STATE(534), - [sym_goto_statement] = STATE(534), - [sym_seh_try_statement] = STATE(534), - [sym_seh_leave_statement] = STATE(534), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(534), - [sym_co_return_statement] = STATE(534), - [sym_co_yield_statement] = STATE(534), - [sym_throw_statement] = STATE(534), - [sym_try_statement] = STATE(534), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [sym_identifier] = ACTIONS(2375), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [198] = { + [sym_attribute_declaration] = STATE(206), + [sym_compound_statement] = STATE(531), + [sym_attributed_statement] = STATE(531), + [sym_labeled_statement] = STATE(531), + [sym_expression_statement] = STATE(531), + [sym_if_statement] = STATE(531), + [sym_switch_statement] = STATE(531), + [sym_case_statement] = STATE(531), + [sym_while_statement] = STATE(531), + [sym_do_statement] = STATE(531), + [sym_for_statement] = STATE(531), + [sym_return_statement] = STATE(531), + [sym_break_statement] = STATE(531), + [sym_continue_statement] = STATE(531), + [sym_goto_statement] = STATE(531), + [sym_seh_try_statement] = STATE(531), + [sym_seh_leave_statement] = STATE(531), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(531), + [sym_co_return_statement] = STATE(531), + [sym_co_yield_statement] = STATE(531), + [sym_throw_statement] = STATE(531), + [sym_try_statement] = STATE(531), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [sym_identifier] = ACTIONS(2361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_SEMI] = ACTIONS(187), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym_LBRACE] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_if] = ACTIONS(203), [anon_sym_switch] = ACTIONS(205), [anon_sym_case] = ACTIONS(207), @@ -92827,7 +82419,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_try] = ACTIONS(233), [anon_sym_delete] = ACTIONS(139), [anon_sym_throw] = ACTIONS(235), @@ -92845,103 +82437,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [203] = { - [sym_attribute_declaration] = STATE(226), - [sym_compound_statement] = STATE(507), - [sym_attributed_statement] = STATE(507), - [sym_labeled_statement] = STATE(507), - [sym_expression_statement] = STATE(507), - [sym_if_statement] = STATE(507), - [sym_switch_statement] = STATE(507), - [sym_case_statement] = STATE(507), - [sym_while_statement] = STATE(507), - [sym_do_statement] = STATE(507), - [sym_for_statement] = STATE(507), - [sym_return_statement] = STATE(507), - [sym_break_statement] = STATE(507), - [sym_continue_statement] = STATE(507), - [sym_goto_statement] = STATE(507), - [sym_seh_try_statement] = STATE(507), - [sym_seh_leave_statement] = STATE(507), - [sym_expression] = STATE(5819), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9710), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(507), - [sym_co_return_statement] = STATE(507), - [sym_co_yield_statement] = STATE(507), - [sym_throw_statement] = STATE(507), - [sym_try_statement] = STATE(507), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(226), - [sym_identifier] = ACTIONS(2676), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [199] = { + [sym_attribute_declaration] = STATE(203), + [sym_compound_statement] = STATE(604), + [sym_attributed_statement] = STATE(604), + [sym_labeled_statement] = STATE(604), + [sym_expression_statement] = STATE(604), + [sym_if_statement] = STATE(604), + [sym_switch_statement] = STATE(604), + [sym_case_statement] = STATE(604), + [sym_while_statement] = STATE(604), + [sym_do_statement] = STATE(604), + [sym_for_statement] = STATE(604), + [sym_return_statement] = STATE(604), + [sym_break_statement] = STATE(604), + [sym_continue_statement] = STATE(604), + [sym_goto_statement] = STATE(604), + [sym_seh_try_statement] = STATE(604), + [sym_seh_leave_statement] = STATE(604), + [sym_expression] = STATE(5204), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9572), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(604), + [sym_co_return_statement] = STATE(604), + [sym_co_yield_statement] = STATE(604), + [sym_throw_statement] = STATE(604), + [sym_try_statement] = STATE(604), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(203), + [sym_identifier] = ACTIONS(2572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1927), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_switch] = ACTIONS(1008), - [anon_sym_case] = ACTIONS(1010), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1014), - [anon_sym_do] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_break] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_goto] = ACTIONS(1026), - [anon_sym___try] = ACTIONS(1028), - [anon_sym___leave] = ACTIONS(1030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(77), + [anon_sym_switch] = ACTIONS(79), + [anon_sym_case] = ACTIONS(81), + [anon_sym_default] = ACTIONS(83), + [anon_sym_while] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_return] = ACTIONS(91), + [anon_sym_break] = ACTIONS(93), + [anon_sym_continue] = ACTIONS(95), + [anon_sym_goto] = ACTIONS(97), + [anon_sym___try] = ACTIONS(1929), + [anon_sym___leave] = ACTIONS(1931), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -92973,12 +82565,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(1034), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(137), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(1036), - [anon_sym_co_return] = ACTIONS(1046), - [anon_sym_co_yield] = ACTIONS(1048), + [anon_sym_throw] = ACTIONS(141), + [anon_sym_co_return] = ACTIONS(151), + [anon_sym_co_yield] = ACTIONS(153), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -92991,90 +82583,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [204] = { - [sym_attribute_declaration] = STATE(239), - [sym_compound_statement] = STATE(636), - [sym_attributed_statement] = STATE(636), - [sym_labeled_statement] = STATE(636), - [sym_expression_statement] = STATE(636), - [sym_if_statement] = STATE(636), - [sym_switch_statement] = STATE(636), - [sym_case_statement] = STATE(636), - [sym_while_statement] = STATE(636), - [sym_do_statement] = STATE(636), - [sym_for_statement] = STATE(636), - [sym_return_statement] = STATE(636), - [sym_break_statement] = STATE(636), - [sym_continue_statement] = STATE(636), - [sym_goto_statement] = STATE(636), - [sym_seh_try_statement] = STATE(636), - [sym_seh_leave_statement] = STATE(636), - [sym_expression] = STATE(5777), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9682), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(636), - [sym_co_return_statement] = STATE(636), - [sym_co_yield_statement] = STATE(636), - [sym_throw_statement] = STATE(636), - [sym_try_statement] = STATE(636), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(2650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [200] = { + [sym_attribute_declaration] = STATE(199), + [sym_compound_statement] = STATE(533), + [sym_attributed_statement] = STATE(533), + [sym_labeled_statement] = STATE(533), + [sym_expression_statement] = STATE(533), + [sym_if_statement] = STATE(533), + [sym_switch_statement] = STATE(533), + [sym_case_statement] = STATE(533), + [sym_while_statement] = STATE(533), + [sym_do_statement] = STATE(533), + [sym_for_statement] = STATE(533), + [sym_return_statement] = STATE(533), + [sym_break_statement] = STATE(533), + [sym_continue_statement] = STATE(533), + [sym_goto_statement] = STATE(533), + [sym_seh_try_statement] = STATE(533), + [sym_seh_leave_statement] = STATE(533), + [sym_expression] = STATE(5204), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9572), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(533), + [sym_co_return_statement] = STATE(533), + [sym_co_yield_statement] = STATE(533), + [sym_throw_statement] = STATE(533), + [sym_try_statement] = STATE(533), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(2572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1927), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_if] = ACTIONS(77), [anon_sym_switch] = ACTIONS(79), [anon_sym_case] = ACTIONS(81), @@ -93086,8 +82678,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(93), [anon_sym_continue] = ACTIONS(95), [anon_sym_goto] = ACTIONS(97), - [anon_sym___try] = ACTIONS(1875), - [anon_sym___leave] = ACTIONS(1877), + [anon_sym___try] = ACTIONS(1929), + [anon_sym___leave] = ACTIONS(1931), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -93119,7 +82711,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_try] = ACTIONS(137), [anon_sym_delete] = ACTIONS(139), [anon_sym_throw] = ACTIONS(141), @@ -93137,103 +82729,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [205] = { - [sym_attribute_declaration] = STATE(226), - [sym_compound_statement] = STATE(506), - [sym_attributed_statement] = STATE(506), - [sym_labeled_statement] = STATE(506), - [sym_expression_statement] = STATE(506), - [sym_if_statement] = STATE(506), - [sym_switch_statement] = STATE(506), - [sym_case_statement] = STATE(506), - [sym_while_statement] = STATE(506), - [sym_do_statement] = STATE(506), - [sym_for_statement] = STATE(506), - [sym_return_statement] = STATE(506), - [sym_break_statement] = STATE(506), - [sym_continue_statement] = STATE(506), - [sym_goto_statement] = STATE(506), - [sym_seh_try_statement] = STATE(506), - [sym_seh_leave_statement] = STATE(506), - [sym_expression] = STATE(5819), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9710), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(506), - [sym_co_return_statement] = STATE(506), - [sym_co_yield_statement] = STATE(506), - [sym_throw_statement] = STATE(506), - [sym_try_statement] = STATE(506), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(226), - [sym_identifier] = ACTIONS(2676), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [201] = { + [sym_attribute_declaration] = STATE(206), + [sym_compound_statement] = STATE(593), + [sym_attributed_statement] = STATE(593), + [sym_labeled_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_if_statement] = STATE(593), + [sym_switch_statement] = STATE(593), + [sym_case_statement] = STATE(593), + [sym_while_statement] = STATE(593), + [sym_do_statement] = STATE(593), + [sym_for_statement] = STATE(593), + [sym_return_statement] = STATE(593), + [sym_break_statement] = STATE(593), + [sym_continue_statement] = STATE(593), + [sym_goto_statement] = STATE(593), + [sym_seh_try_statement] = STATE(593), + [sym_seh_leave_statement] = STATE(593), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(593), + [sym_co_return_statement] = STATE(593), + [sym_co_yield_statement] = STATE(593), + [sym_throw_statement] = STATE(593), + [sym_try_statement] = STATE(593), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [sym_identifier] = ACTIONS(2361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(187), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_switch] = ACTIONS(1008), - [anon_sym_case] = ACTIONS(1010), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1014), - [anon_sym_do] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_break] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_goto] = ACTIONS(1026), - [anon_sym___try] = ACTIONS(1028), - [anon_sym___leave] = ACTIONS(1030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -93265,12 +82857,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(1034), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(233), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(1036), - [anon_sym_co_return] = ACTIONS(1046), - [anon_sym_co_yield] = ACTIONS(1048), + [anon_sym_throw] = ACTIONS(235), + [anon_sym_co_return] = ACTIONS(245), + [anon_sym_co_yield] = ACTIONS(247), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -93283,103 +82875,395 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [206] = { - [sym_attribute_declaration] = STATE(192), - [sym_compound_statement] = STATE(302), - [sym_attributed_statement] = STATE(302), - [sym_labeled_statement] = STATE(302), - [sym_expression_statement] = STATE(302), - [sym_if_statement] = STATE(302), - [sym_switch_statement] = STATE(302), - [sym_case_statement] = STATE(302), - [sym_while_statement] = STATE(302), - [sym_do_statement] = STATE(302), - [sym_for_statement] = STATE(302), - [sym_return_statement] = STATE(302), - [sym_break_statement] = STATE(302), - [sym_continue_statement] = STATE(302), - [sym_goto_statement] = STATE(302), - [sym_seh_try_statement] = STATE(302), - [sym_seh_leave_statement] = STATE(302), - [sym_expression] = STATE(5862), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9665), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(302), - [sym_co_return_statement] = STATE(302), - [sym_co_yield_statement] = STATE(302), - [sym_throw_statement] = STATE(302), - [sym_try_statement] = STATE(302), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [sym_identifier] = ACTIONS(2425), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [202] = { + [sym_expression] = STATE(2942), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_initializer_list] = STATE(2621), + [sym_char_literal] = STATE(3584), + [sym_concatenated_string] = STATE(3584), + [sym_string_literal] = STATE(2482), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2482), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2277), + [anon_sym_COMMA] = ACTIONS(2277), + [anon_sym_LPAREN2] = ACTIONS(2277), + [anon_sym_BANG] = ACTIONS(2576), + [anon_sym_TILDE] = ACTIONS(2578), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_PERCENT] = ACTIONS(2285), + [anon_sym_PIPE_PIPE] = ACTIONS(2277), + [anon_sym_AMP_AMP] = ACTIONS(2277), + [anon_sym_PIPE] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2285), + [anon_sym_EQ_EQ] = ACTIONS(2277), + [anon_sym_BANG_EQ] = ACTIONS(2277), + [anon_sym_GT] = ACTIONS(2285), + [anon_sym_GT_EQ] = ACTIONS(2277), + [anon_sym_LT_EQ] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_LT_LT] = ACTIONS(2285), + [anon_sym_GT_GT] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2277), + [anon_sym___attribute__] = ACTIONS(2285), + [anon_sym_COLON_COLON] = ACTIONS(2580), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_LBRACK] = ACTIONS(2277), + [anon_sym_EQ] = ACTIONS(2285), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_QMARK] = ACTIONS(2277), + [anon_sym_STAR_EQ] = ACTIONS(2277), + [anon_sym_SLASH_EQ] = ACTIONS(2277), + [anon_sym_PERCENT_EQ] = ACTIONS(2277), + [anon_sym_PLUS_EQ] = ACTIONS(2277), + [anon_sym_DASH_EQ] = ACTIONS(2277), + [anon_sym_LT_LT_EQ] = ACTIONS(2277), + [anon_sym_GT_GT_EQ] = ACTIONS(2277), + [anon_sym_AMP_EQ] = ACTIONS(2277), + [anon_sym_CARET_EQ] = ACTIONS(2277), + [anon_sym_PIPE_EQ] = ACTIONS(2277), + [anon_sym_and_eq] = ACTIONS(2285), + [anon_sym_or_eq] = ACTIONS(2285), + [anon_sym_xor_eq] = ACTIONS(2285), + [anon_sym_not] = ACTIONS(2576), + [anon_sym_compl] = ACTIONS(2576), + [anon_sym_LT_EQ_GT] = ACTIONS(2277), + [anon_sym_or] = ACTIONS(2285), + [anon_sym_and] = ACTIONS(2285), + [anon_sym_bitor] = ACTIONS(2285), + [anon_sym_xor] = ACTIONS(2285), + [anon_sym_bitand] = ACTIONS(2285), + [anon_sym_not_eq] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2277), + [anon_sym_PLUS_PLUS] = ACTIONS(2277), + [anon_sym_sizeof] = ACTIONS(2582), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [anon_sym_DOT] = ACTIONS(2285), + [anon_sym_DOT_STAR] = ACTIONS(2277), + [anon_sym_DASH_GT] = ACTIONS(2277), + [sym_number_literal] = ACTIONS(2584), + [anon_sym_L_SQUOTE] = ACTIONS(2586), + [anon_sym_u_SQUOTE] = ACTIONS(2586), + [anon_sym_U_SQUOTE] = ACTIONS(2586), + [anon_sym_u8_SQUOTE] = ACTIONS(2586), + [anon_sym_SQUOTE] = ACTIONS(2586), + [anon_sym_L_DQUOTE] = ACTIONS(2588), + [anon_sym_u_DQUOTE] = ACTIONS(2588), + [anon_sym_U_DQUOTE] = ACTIONS(2588), + [anon_sym_u8_DQUOTE] = ACTIONS(2588), + [anon_sym_DQUOTE] = ACTIONS(2588), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2590), + [anon_sym_R_DQUOTE] = ACTIONS(2592), + [anon_sym_LR_DQUOTE] = ACTIONS(2592), + [anon_sym_uR_DQUOTE] = ACTIONS(2592), + [anon_sym_UR_DQUOTE] = ACTIONS(2592), + [anon_sym_u8R_DQUOTE] = ACTIONS(2592), + [anon_sym_co_await] = ACTIONS(2594), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [203] = { + [sym_attribute_declaration] = STATE(203), + [sym_compound_statement] = STATE(604), + [sym_attributed_statement] = STATE(604), + [sym_labeled_statement] = STATE(604), + [sym_expression_statement] = STATE(604), + [sym_if_statement] = STATE(604), + [sym_switch_statement] = STATE(604), + [sym_case_statement] = STATE(604), + [sym_while_statement] = STATE(604), + [sym_do_statement] = STATE(604), + [sym_for_statement] = STATE(604), + [sym_return_statement] = STATE(604), + [sym_break_statement] = STATE(604), + [sym_continue_statement] = STATE(604), + [sym_goto_statement] = STATE(604), + [sym_seh_try_statement] = STATE(604), + [sym_seh_leave_statement] = STATE(604), + [sym_expression] = STATE(5204), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9572), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(604), + [sym_co_return_statement] = STATE(604), + [sym_co_yield_statement] = STATE(604), + [sym_throw_statement] = STATE(604), + [sym_try_statement] = STATE(604), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(203), + [sym_identifier] = ACTIONS(2596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2428), + [anon_sym_LPAREN2] = ACTIONS(2431), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2599), + [anon_sym_COLON_COLON] = ACTIONS(2446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2449), + [anon_sym_LBRACE] = ACTIONS(2602), + [anon_sym_LBRACK] = ACTIONS(2455), + [sym_primitive_type] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2605), + [anon_sym_switch] = ACTIONS(2608), + [anon_sym_case] = ACTIONS(2611), + [anon_sym_default] = ACTIONS(2614), + [anon_sym_while] = ACTIONS(2617), + [anon_sym_do] = ACTIONS(2620), + [anon_sym_for] = ACTIONS(2623), + [anon_sym_return] = ACTIONS(2626), + [anon_sym_break] = ACTIONS(2629), + [anon_sym_continue] = ACTIONS(2632), + [anon_sym_goto] = ACTIONS(2635), + [anon_sym___try] = ACTIONS(2638), + [anon_sym___leave] = ACTIONS(2641), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_compl] = ACTIONS(2437), + [anon_sym_DASH_DASH] = ACTIONS(2500), + [anon_sym_PLUS_PLUS] = ACTIONS(2500), + [anon_sym_sizeof] = ACTIONS(2503), + [anon_sym___alignof__] = ACTIONS(2506), + [anon_sym___alignof] = ACTIONS(2506), + [anon_sym__alignof] = ACTIONS(2506), + [anon_sym_alignof] = ACTIONS(2506), + [anon_sym__Alignof] = ACTIONS(2506), + [anon_sym_offsetof] = ACTIONS(2509), + [anon_sym__Generic] = ACTIONS(2512), + [anon_sym_asm] = ACTIONS(2515), + [anon_sym___asm__] = ACTIONS(2515), + [sym_number_literal] = ACTIONS(2518), + [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(2524), + [anon_sym_u_DQUOTE] = ACTIONS(2524), + [anon_sym_U_DQUOTE] = ACTIONS(2524), + [anon_sym_u8_DQUOTE] = ACTIONS(2524), + [anon_sym_DQUOTE] = ACTIONS(2524), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [anon_sym_NULL] = ACTIONS(2530), + [anon_sym_nullptr] = ACTIONS(2530), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2533), + [anon_sym_template] = ACTIONS(2536), + [anon_sym_try] = ACTIONS(2644), + [anon_sym_delete] = ACTIONS(2542), + [anon_sym_throw] = ACTIONS(2647), + [anon_sym_co_return] = ACTIONS(2650), + [anon_sym_co_yield] = ACTIONS(2653), + [anon_sym_R_DQUOTE] = ACTIONS(2554), + [anon_sym_LR_DQUOTE] = ACTIONS(2554), + [anon_sym_uR_DQUOTE] = ACTIONS(2554), + [anon_sym_UR_DQUOTE] = ACTIONS(2554), + [anon_sym_u8R_DQUOTE] = ACTIONS(2554), + [anon_sym_co_await] = ACTIONS(2557), + [anon_sym_new] = ACTIONS(2560), + [anon_sym_requires] = ACTIONS(2563), + [sym_this] = ACTIONS(2527), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2566), + [sym_semgrep_named_ellipsis] = ACTIONS(2569), + }, + [204] = { + [sym_attribute_declaration] = STATE(206), + [sym_compound_statement] = STATE(595), + [sym_attributed_statement] = STATE(595), + [sym_labeled_statement] = STATE(595), + [sym_expression_statement] = STATE(595), + [sym_if_statement] = STATE(595), + [sym_switch_statement] = STATE(595), + [sym_case_statement] = STATE(595), + [sym_while_statement] = STATE(595), + [sym_do_statement] = STATE(595), + [sym_for_statement] = STATE(595), + [sym_return_statement] = STATE(595), + [sym_break_statement] = STATE(595), + [sym_continue_statement] = STATE(595), + [sym_goto_statement] = STATE(595), + [sym_seh_try_statement] = STATE(595), + [sym_seh_leave_statement] = STATE(595), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(595), + [sym_co_return_statement] = STATE(595), + [sym_co_yield_statement] = STATE(595), + [sym_throw_statement] = STATE(595), + [sym_try_statement] = STATE(595), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [sym_identifier] = ACTIONS(2361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(187), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(313), - [anon_sym_switch] = ACTIONS(315), - [anon_sym_case] = ACTIONS(317), - [anon_sym_default] = ACTIONS(319), - [anon_sym_while] = ACTIONS(321), - [anon_sym_do] = ACTIONS(323), - [anon_sym_for] = ACTIONS(325), - [anon_sym_return] = ACTIONS(327), - [anon_sym_break] = ACTIONS(329), - [anon_sym_continue] = ACTIONS(331), - [anon_sym_goto] = ACTIONS(333), - [anon_sym___try] = ACTIONS(335), - [anon_sym___leave] = ACTIONS(337), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -93411,12 +83295,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(341), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(233), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(343), - [anon_sym_co_return] = ACTIONS(353), - [anon_sym_co_yield] = ACTIONS(355), + [anon_sym_throw] = ACTIONS(235), + [anon_sym_co_return] = ACTIONS(245), + [anon_sym_co_yield] = ACTIONS(247), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -93429,103 +83313,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [207] = { - [sym_attribute_declaration] = STATE(226), - [sym_compound_statement] = STATE(594), - [sym_attributed_statement] = STATE(594), - [sym_labeled_statement] = STATE(594), - [sym_expression_statement] = STATE(594), - [sym_if_statement] = STATE(594), - [sym_switch_statement] = STATE(594), - [sym_case_statement] = STATE(594), - [sym_while_statement] = STATE(594), - [sym_do_statement] = STATE(594), - [sym_for_statement] = STATE(594), - [sym_return_statement] = STATE(594), - [sym_break_statement] = STATE(594), - [sym_continue_statement] = STATE(594), - [sym_goto_statement] = STATE(594), - [sym_seh_try_statement] = STATE(594), - [sym_seh_leave_statement] = STATE(594), - [sym_expression] = STATE(5819), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9710), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(594), - [sym_co_return_statement] = STATE(594), - [sym_co_yield_statement] = STATE(594), - [sym_throw_statement] = STATE(594), - [sym_try_statement] = STATE(594), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(226), - [sym_identifier] = ACTIONS(2676), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [205] = { + [sym_attribute_declaration] = STATE(206), + [sym_compound_statement] = STATE(597), + [sym_attributed_statement] = STATE(597), + [sym_labeled_statement] = STATE(597), + [sym_expression_statement] = STATE(597), + [sym_if_statement] = STATE(597), + [sym_switch_statement] = STATE(597), + [sym_case_statement] = STATE(597), + [sym_while_statement] = STATE(597), + [sym_do_statement] = STATE(597), + [sym_for_statement] = STATE(597), + [sym_return_statement] = STATE(597), + [sym_break_statement] = STATE(597), + [sym_continue_statement] = STATE(597), + [sym_goto_statement] = STATE(597), + [sym_seh_try_statement] = STATE(597), + [sym_seh_leave_statement] = STATE(597), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(597), + [sym_co_return_statement] = STATE(597), + [sym_co_yield_statement] = STATE(597), + [sym_throw_statement] = STATE(597), + [sym_try_statement] = STATE(597), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(206), + [sym_identifier] = ACTIONS(2361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(187), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_switch] = ACTIONS(1008), - [anon_sym_case] = ACTIONS(1010), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1014), - [anon_sym_do] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_break] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_goto] = ACTIONS(1026), - [anon_sym___try] = ACTIONS(1028), - [anon_sym___leave] = ACTIONS(1030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -93557,12 +83441,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(1034), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(233), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(1036), - [anon_sym_co_return] = ACTIONS(1046), - [anon_sym_co_yield] = ACTIONS(1048), + [anon_sym_throw] = ACTIONS(235), + [anon_sym_co_return] = ACTIONS(245), + [anon_sym_co_yield] = ACTIONS(247), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -93575,103 +83459,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [208] = { - [sym_attribute_declaration] = STATE(226), - [sym_compound_statement] = STATE(596), - [sym_attributed_statement] = STATE(596), - [sym_labeled_statement] = STATE(596), - [sym_expression_statement] = STATE(596), - [sym_if_statement] = STATE(596), - [sym_switch_statement] = STATE(596), - [sym_case_statement] = STATE(596), - [sym_while_statement] = STATE(596), - [sym_do_statement] = STATE(596), - [sym_for_statement] = STATE(596), - [sym_return_statement] = STATE(596), - [sym_break_statement] = STATE(596), - [sym_continue_statement] = STATE(596), - [sym_goto_statement] = STATE(596), - [sym_seh_try_statement] = STATE(596), - [sym_seh_leave_statement] = STATE(596), - [sym_expression] = STATE(5819), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9710), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(596), - [sym_co_return_statement] = STATE(596), - [sym_co_yield_statement] = STATE(596), - [sym_throw_statement] = STATE(596), - [sym_try_statement] = STATE(596), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(226), - [sym_identifier] = ACTIONS(2676), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [206] = { + [sym_attribute_declaration] = STATE(196), + [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_seh_try_statement] = STATE(649), + [sym_seh_leave_statement] = STATE(649), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(2361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(187), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_switch] = ACTIONS(1008), - [anon_sym_case] = ACTIONS(1010), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1014), - [anon_sym_do] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_break] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_goto] = ACTIONS(1026), - [anon_sym___try] = ACTIONS(1028), - [anon_sym___leave] = ACTIONS(1030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -93703,12 +83587,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(1034), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(233), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(1036), - [anon_sym_co_return] = ACTIONS(1046), - [anon_sym_co_yield] = ACTIONS(1048), + [anon_sym_throw] = ACTIONS(235), + [anon_sym_co_return] = ACTIONS(245), + [anon_sym_co_yield] = ACTIONS(247), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -93721,103 +83605,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [209] = { - [sym_attribute_declaration] = STATE(190), - [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_seh_try_statement] = STATE(589), - [sym_seh_leave_statement] = STATE(589), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [sym_identifier] = ACTIONS(2375), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [207] = { + [sym_expression] = STATE(3406), + [sym_expression_not_binary] = STATE(3766), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_initializer_list] = STATE(3719), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8737), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [sym_identifier] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2277), + [anon_sym_COMMA] = ACTIONS(2277), + [anon_sym_RPAREN] = ACTIONS(2277), + [anon_sym_LPAREN2] = ACTIONS(2277), + [anon_sym_BANG] = ACTIONS(2207), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_PERCENT] = ACTIONS(2285), + [anon_sym_PIPE_PIPE] = ACTIONS(2277), + [anon_sym_AMP_AMP] = ACTIONS(2277), + [anon_sym_PIPE] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2285), + [anon_sym_EQ_EQ] = ACTIONS(2277), + [anon_sym_BANG_EQ] = ACTIONS(2277), + [anon_sym_GT] = ACTIONS(2285), + [anon_sym_GT_EQ] = ACTIONS(2277), + [anon_sym_LT_EQ] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_LT_LT] = ACTIONS(2285), + [anon_sym_GT_GT] = ACTIONS(2285), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_LBRACK] = ACTIONS(2277), + [anon_sym_EQ] = ACTIONS(2285), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_QMARK] = ACTIONS(2277), + [anon_sym_STAR_EQ] = ACTIONS(2277), + [anon_sym_SLASH_EQ] = ACTIONS(2277), + [anon_sym_PERCENT_EQ] = ACTIONS(2277), + [anon_sym_PLUS_EQ] = ACTIONS(2277), + [anon_sym_DASH_EQ] = ACTIONS(2277), + [anon_sym_LT_LT_EQ] = ACTIONS(2277), + [anon_sym_GT_GT_EQ] = ACTIONS(2277), + [anon_sym_AMP_EQ] = ACTIONS(2277), + [anon_sym_CARET_EQ] = ACTIONS(2277), + [anon_sym_PIPE_EQ] = ACTIONS(2277), + [anon_sym_and_eq] = ACTIONS(2285), + [anon_sym_or_eq] = ACTIONS(2285), + [anon_sym_xor_eq] = ACTIONS(2285), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_compl] = ACTIONS(2207), + [anon_sym_LT_EQ_GT] = ACTIONS(2277), + [anon_sym_or] = ACTIONS(2285), + [anon_sym_and] = ACTIONS(2285), + [anon_sym_bitor] = ACTIONS(2285), + [anon_sym_xor] = ACTIONS(2285), + [anon_sym_bitand] = ACTIONS(2285), + [anon_sym_not_eq] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2277), + [anon_sym_PLUS_PLUS] = ACTIONS(2277), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [anon_sym_DOT] = ACTIONS(2285), + [anon_sym_DOT_STAR] = ACTIONS(2277), + [anon_sym_DASH_GT] = ACTIONS(2285), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [anon_sym_DASH_GT_STAR] = ACTIONS(2277), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), + }, + [208] = { + [sym_attribute_declaration] = STATE(233), + [sym_compound_statement] = STATE(303), + [sym_attributed_statement] = STATE(303), + [sym_labeled_statement] = STATE(303), + [sym_expression_statement] = STATE(303), + [sym_if_statement] = STATE(303), + [sym_switch_statement] = STATE(303), + [sym_case_statement] = STATE(303), + [sym_while_statement] = STATE(303), + [sym_do_statement] = STATE(303), + [sym_for_statement] = STATE(303), + [sym_return_statement] = STATE(303), + [sym_break_statement] = STATE(303), + [sym_continue_statement] = STATE(303), + [sym_goto_statement] = STATE(303), + [sym_seh_try_statement] = STATE(303), + [sym_seh_leave_statement] = STATE(303), + [sym_expression] = STATE(5188), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9691), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(303), + [sym_co_return_statement] = STATE(303), + [sym_co_yield_statement] = STATE(303), + [sym_throw_statement] = STATE(303), + [sym_try_statement] = STATE(303), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(233), + [sym_identifier] = ACTIONS(2409), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(301), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(313), + [anon_sym_switch] = ACTIONS(315), + [anon_sym_case] = ACTIONS(317), + [anon_sym_default] = ACTIONS(319), + [anon_sym_while] = ACTIONS(321), + [anon_sym_do] = ACTIONS(323), + [anon_sym_for] = ACTIONS(325), + [anon_sym_return] = ACTIONS(327), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(331), + [anon_sym_goto] = ACTIONS(333), + [anon_sym___try] = ACTIONS(335), + [anon_sym___leave] = ACTIONS(337), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -93849,12 +83879,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(233), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(341), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_co_return] = ACTIONS(245), - [anon_sym_co_yield] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(343), + [anon_sym_co_return] = ACTIONS(353), + [anon_sym_co_yield] = ACTIONS(355), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -93867,90 +83897,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [210] = { - [sym_attribute_declaration] = STATE(192), - [sym_compound_statement] = STATE(309), - [sym_attributed_statement] = STATE(309), - [sym_labeled_statement] = STATE(309), - [sym_expression_statement] = STATE(309), - [sym_if_statement] = STATE(309), - [sym_switch_statement] = STATE(309), - [sym_case_statement] = STATE(309), - [sym_while_statement] = STATE(309), - [sym_do_statement] = STATE(309), - [sym_for_statement] = STATE(309), - [sym_return_statement] = STATE(309), - [sym_break_statement] = STATE(309), - [sym_continue_statement] = STATE(309), - [sym_goto_statement] = STATE(309), - [sym_seh_try_statement] = STATE(309), - [sym_seh_leave_statement] = STATE(309), - [sym_expression] = STATE(5862), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9665), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(309), - [sym_co_return_statement] = STATE(309), - [sym_co_yield_statement] = STATE(309), - [sym_throw_statement] = STATE(309), - [sym_try_statement] = STATE(309), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [sym_identifier] = ACTIONS(2425), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [209] = { + [sym_attribute_declaration] = STATE(233), + [sym_compound_statement] = STATE(343), + [sym_attributed_statement] = STATE(343), + [sym_labeled_statement] = STATE(343), + [sym_expression_statement] = STATE(343), + [sym_if_statement] = STATE(343), + [sym_switch_statement] = STATE(343), + [sym_case_statement] = STATE(343), + [sym_while_statement] = STATE(343), + [sym_do_statement] = STATE(343), + [sym_for_statement] = STATE(343), + [sym_return_statement] = STATE(343), + [sym_break_statement] = STATE(343), + [sym_continue_statement] = STATE(343), + [sym_goto_statement] = STATE(343), + [sym_seh_try_statement] = STATE(343), + [sym_seh_leave_statement] = STATE(343), + [sym_expression] = STATE(5188), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9691), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(343), + [sym_co_return_statement] = STATE(343), + [sym_co_yield_statement] = STATE(343), + [sym_throw_statement] = STATE(343), + [sym_try_statement] = STATE(343), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(233), + [sym_identifier] = ACTIONS(2409), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_SEMI] = ACTIONS(301), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_if] = ACTIONS(313), [anon_sym_switch] = ACTIONS(315), [anon_sym_case] = ACTIONS(317), @@ -93995,7 +84025,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_try] = ACTIONS(341), [anon_sym_delete] = ACTIONS(139), [anon_sym_throw] = ACTIONS(343), @@ -94013,90 +84043,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [211] = { - [sym_attribute_declaration] = STATE(192), - [sym_compound_statement] = STATE(310), - [sym_attributed_statement] = STATE(310), - [sym_labeled_statement] = STATE(310), - [sym_expression_statement] = STATE(310), - [sym_if_statement] = STATE(310), - [sym_switch_statement] = STATE(310), - [sym_case_statement] = STATE(310), - [sym_while_statement] = STATE(310), - [sym_do_statement] = STATE(310), - [sym_for_statement] = STATE(310), - [sym_return_statement] = STATE(310), - [sym_break_statement] = STATE(310), - [sym_continue_statement] = STATE(310), - [sym_goto_statement] = STATE(310), - [sym_seh_try_statement] = STATE(310), - [sym_seh_leave_statement] = STATE(310), - [sym_expression] = STATE(5862), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9665), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(310), - [sym_co_return_statement] = STATE(310), - [sym_co_yield_statement] = STATE(310), - [sym_throw_statement] = STATE(310), - [sym_try_statement] = STATE(310), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [sym_identifier] = ACTIONS(2425), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [210] = { + [sym_attribute_declaration] = STATE(233), + [sym_compound_statement] = STATE(334), + [sym_attributed_statement] = STATE(334), + [sym_labeled_statement] = STATE(334), + [sym_expression_statement] = STATE(334), + [sym_if_statement] = STATE(334), + [sym_switch_statement] = STATE(334), + [sym_case_statement] = STATE(334), + [sym_while_statement] = STATE(334), + [sym_do_statement] = STATE(334), + [sym_for_statement] = STATE(334), + [sym_return_statement] = STATE(334), + [sym_break_statement] = STATE(334), + [sym_continue_statement] = STATE(334), + [sym_goto_statement] = STATE(334), + [sym_seh_try_statement] = STATE(334), + [sym_seh_leave_statement] = STATE(334), + [sym_expression] = STATE(5188), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9691), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(334), + [sym_co_return_statement] = STATE(334), + [sym_co_yield_statement] = STATE(334), + [sym_throw_statement] = STATE(334), + [sym_try_statement] = STATE(334), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(233), + [sym_identifier] = ACTIONS(2409), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_SEMI] = ACTIONS(301), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_if] = ACTIONS(313), [anon_sym_switch] = ACTIONS(315), [anon_sym_case] = ACTIONS(317), @@ -94141,7 +84171,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_try] = ACTIONS(341), [anon_sym_delete] = ACTIONS(139), [anon_sym_throw] = ACTIONS(343), @@ -94159,103 +84189,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, + [211] = { + [sym_attribute_declaration] = STATE(211), + [sym_compound_statement] = STATE(323), + [sym_attributed_statement] = STATE(323), + [sym_labeled_statement] = STATE(323), + [sym_expression_statement] = STATE(323), + [sym_if_statement] = STATE(323), + [sym_switch_statement] = STATE(323), + [sym_case_statement] = STATE(323), + [sym_while_statement] = STATE(323), + [sym_do_statement] = STATE(323), + [sym_for_statement] = STATE(323), + [sym_return_statement] = STATE(323), + [sym_break_statement] = STATE(323), + [sym_continue_statement] = STATE(323), + [sym_goto_statement] = STATE(323), + [sym_seh_try_statement] = STATE(323), + [sym_seh_leave_statement] = STATE(323), + [sym_expression] = STATE(5188), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9691), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(323), + [sym_co_return_statement] = STATE(323), + [sym_co_yield_statement] = STATE(323), + [sym_throw_statement] = STATE(323), + [sym_try_statement] = STATE(323), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(211), + [sym_identifier] = ACTIONS(2662), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2428), + [anon_sym_LPAREN2] = ACTIONS(2431), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2665), + [anon_sym_COLON_COLON] = ACTIONS(2446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2449), + [anon_sym_LBRACE] = ACTIONS(2668), + [anon_sym_LBRACK] = ACTIONS(2455), + [sym_primitive_type] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2671), + [anon_sym_switch] = ACTIONS(2674), + [anon_sym_case] = ACTIONS(2677), + [anon_sym_default] = ACTIONS(2680), + [anon_sym_while] = ACTIONS(2683), + [anon_sym_do] = ACTIONS(2686), + [anon_sym_for] = ACTIONS(2689), + [anon_sym_return] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2695), + [anon_sym_continue] = ACTIONS(2698), + [anon_sym_goto] = ACTIONS(2701), + [anon_sym___try] = ACTIONS(2704), + [anon_sym___leave] = ACTIONS(2707), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_compl] = ACTIONS(2437), + [anon_sym_DASH_DASH] = ACTIONS(2500), + [anon_sym_PLUS_PLUS] = ACTIONS(2500), + [anon_sym_sizeof] = ACTIONS(2503), + [anon_sym___alignof__] = ACTIONS(2506), + [anon_sym___alignof] = ACTIONS(2506), + [anon_sym__alignof] = ACTIONS(2506), + [anon_sym_alignof] = ACTIONS(2506), + [anon_sym__Alignof] = ACTIONS(2506), + [anon_sym_offsetof] = ACTIONS(2509), + [anon_sym__Generic] = ACTIONS(2512), + [anon_sym_asm] = ACTIONS(2515), + [anon_sym___asm__] = ACTIONS(2515), + [sym_number_literal] = ACTIONS(2518), + [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(2524), + [anon_sym_u_DQUOTE] = ACTIONS(2524), + [anon_sym_U_DQUOTE] = ACTIONS(2524), + [anon_sym_u8_DQUOTE] = ACTIONS(2524), + [anon_sym_DQUOTE] = ACTIONS(2524), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [anon_sym_NULL] = ACTIONS(2530), + [anon_sym_nullptr] = ACTIONS(2530), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2533), + [anon_sym_template] = ACTIONS(2536), + [anon_sym_try] = ACTIONS(2710), + [anon_sym_delete] = ACTIONS(2542), + [anon_sym_throw] = ACTIONS(2713), + [anon_sym_co_return] = ACTIONS(2716), + [anon_sym_co_yield] = ACTIONS(2719), + [anon_sym_R_DQUOTE] = ACTIONS(2554), + [anon_sym_LR_DQUOTE] = ACTIONS(2554), + [anon_sym_uR_DQUOTE] = ACTIONS(2554), + [anon_sym_UR_DQUOTE] = ACTIONS(2554), + [anon_sym_u8R_DQUOTE] = ACTIONS(2554), + [anon_sym_co_await] = ACTIONS(2557), + [anon_sym_new] = ACTIONS(2560), + [anon_sym_requires] = ACTIONS(2563), + [sym_this] = ACTIONS(2527), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2566), + [sym_semgrep_named_ellipsis] = ACTIONS(2569), + }, [212] = { - [sym_attribute_declaration] = STATE(190), - [sym_compound_statement] = STATE(598), - [sym_attributed_statement] = STATE(598), - [sym_labeled_statement] = STATE(598), - [sym_expression_statement] = STATE(598), - [sym_if_statement] = STATE(598), - [sym_switch_statement] = STATE(598), - [sym_case_statement] = STATE(598), - [sym_while_statement] = STATE(598), - [sym_do_statement] = STATE(598), - [sym_for_statement] = STATE(598), - [sym_return_statement] = STATE(598), - [sym_break_statement] = STATE(598), - [sym_continue_statement] = STATE(598), - [sym_goto_statement] = STATE(598), - [sym_seh_try_statement] = STATE(598), - [sym_seh_leave_statement] = STATE(598), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(598), - [sym_co_return_statement] = STATE(598), - [sym_co_yield_statement] = STATE(598), - [sym_throw_statement] = STATE(598), - [sym_try_statement] = STATE(598), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [sym_identifier] = ACTIONS(2375), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [sym_attribute_declaration] = STATE(199), + [sym_compound_statement] = STATE(625), + [sym_attributed_statement] = STATE(625), + [sym_labeled_statement] = STATE(625), + [sym_expression_statement] = STATE(625), + [sym_if_statement] = STATE(625), + [sym_switch_statement] = STATE(625), + [sym_case_statement] = STATE(625), + [sym_while_statement] = STATE(625), + [sym_do_statement] = STATE(625), + [sym_for_statement] = STATE(625), + [sym_return_statement] = STATE(625), + [sym_break_statement] = STATE(625), + [sym_continue_statement] = STATE(625), + [sym_goto_statement] = STATE(625), + [sym_seh_try_statement] = STATE(625), + [sym_seh_leave_statement] = STATE(625), + [sym_expression] = STATE(5204), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9572), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(625), + [sym_co_return_statement] = STATE(625), + [sym_co_yield_statement] = STATE(625), + [sym_throw_statement] = STATE(625), + [sym_try_statement] = STATE(625), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(2572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1927), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(77), + [anon_sym_switch] = ACTIONS(79), + [anon_sym_case] = ACTIONS(81), + [anon_sym_default] = ACTIONS(83), + [anon_sym_while] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_return] = ACTIONS(91), + [anon_sym_break] = ACTIONS(93), + [anon_sym_continue] = ACTIONS(95), + [anon_sym_goto] = ACTIONS(97), + [anon_sym___try] = ACTIONS(1929), + [anon_sym___leave] = ACTIONS(1931), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -94287,12 +84463,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(233), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(137), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_co_return] = ACTIONS(245), - [anon_sym_co_yield] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(141), + [anon_sym_co_return] = ACTIONS(151), + [anon_sym_co_yield] = ACTIONS(153), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -94306,89 +84482,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [213] = { - [sym_attribute_declaration] = STATE(192), - [sym_compound_statement] = STATE(312), - [sym_attributed_statement] = STATE(312), - [sym_labeled_statement] = STATE(312), - [sym_expression_statement] = STATE(312), - [sym_if_statement] = STATE(312), - [sym_switch_statement] = STATE(312), - [sym_case_statement] = STATE(312), - [sym_while_statement] = STATE(312), - [sym_do_statement] = STATE(312), - [sym_for_statement] = STATE(312), - [sym_return_statement] = STATE(312), - [sym_break_statement] = STATE(312), - [sym_continue_statement] = STATE(312), - [sym_goto_statement] = STATE(312), - [sym_seh_try_statement] = STATE(312), - [sym_seh_leave_statement] = STATE(312), - [sym_expression] = STATE(5862), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9665), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(312), - [sym_co_return_statement] = STATE(312), - [sym_co_yield_statement] = STATE(312), - [sym_throw_statement] = STATE(312), - [sym_try_statement] = STATE(312), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [sym_identifier] = ACTIONS(2425), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [sym_attribute_declaration] = STATE(233), + [sym_compound_statement] = STATE(306), + [sym_attributed_statement] = STATE(306), + [sym_labeled_statement] = STATE(306), + [sym_expression_statement] = STATE(306), + [sym_if_statement] = STATE(306), + [sym_switch_statement] = STATE(306), + [sym_case_statement] = STATE(306), + [sym_while_statement] = STATE(306), + [sym_do_statement] = STATE(306), + [sym_for_statement] = STATE(306), + [sym_return_statement] = STATE(306), + [sym_break_statement] = STATE(306), + [sym_continue_statement] = STATE(306), + [sym_goto_statement] = STATE(306), + [sym_seh_try_statement] = STATE(306), + [sym_seh_leave_statement] = STATE(306), + [sym_expression] = STATE(5188), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9691), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(306), + [sym_co_return_statement] = STATE(306), + [sym_co_yield_statement] = STATE(306), + [sym_throw_statement] = STATE(306), + [sym_try_statement] = STATE(306), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(233), + [sym_identifier] = ACTIONS(2409), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_SEMI] = ACTIONS(301), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_if] = ACTIONS(313), [anon_sym_switch] = ACTIONS(315), [anon_sym_case] = ACTIONS(317), @@ -94433,7 +84609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_try] = ACTIONS(341), [anon_sym_delete] = ACTIONS(139), [anon_sym_throw] = ACTIONS(343), @@ -94452,102 +84628,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [214] = { - [sym_attribute_declaration] = STATE(260), - [sym_compound_statement] = STATE(8791), - [sym_attributed_statement] = STATE(8791), - [sym_labeled_statement] = STATE(8791), - [sym_expression_statement] = STATE(8791), - [sym_if_statement] = STATE(8791), - [sym_switch_statement] = STATE(8791), - [sym_case_statement] = STATE(8791), - [sym_while_statement] = STATE(8791), - [sym_do_statement] = STATE(8791), - [sym_for_statement] = STATE(8791), - [sym_return_statement] = STATE(8791), - [sym_break_statement] = STATE(8791), - [sym_continue_statement] = STATE(8791), - [sym_goto_statement] = STATE(8791), - [sym_seh_try_statement] = STATE(8791), - [sym_seh_leave_statement] = STATE(8791), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(8791), - [sym_co_return_statement] = STATE(8791), - [sym_co_yield_statement] = STATE(8791), - [sym_throw_statement] = STATE(8791), - [sym_try_statement] = STATE(8791), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(2427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [sym_attribute_declaration] = STATE(233), + [sym_compound_statement] = STATE(315), + [sym_attributed_statement] = STATE(315), + [sym_labeled_statement] = STATE(315), + [sym_expression_statement] = STATE(315), + [sym_if_statement] = STATE(315), + [sym_switch_statement] = STATE(315), + [sym_case_statement] = STATE(315), + [sym_while_statement] = STATE(315), + [sym_do_statement] = STATE(315), + [sym_for_statement] = STATE(315), + [sym_return_statement] = STATE(315), + [sym_break_statement] = STATE(315), + [sym_continue_statement] = STATE(315), + [sym_goto_statement] = STATE(315), + [sym_seh_try_statement] = STATE(315), + [sym_seh_leave_statement] = STATE(315), + [sym_expression] = STATE(5188), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9691), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(315), + [sym_co_return_statement] = STATE(315), + [sym_co_yield_statement] = STATE(315), + [sym_throw_statement] = STATE(315), + [sym_try_statement] = STATE(315), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(233), + [sym_identifier] = ACTIONS(2409), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(301), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(2429), - [anon_sym_switch] = ACTIONS(79), - [anon_sym_case] = ACTIONS(2431), - [anon_sym_default] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2435), - [anon_sym_do] = ACTIONS(87), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(91), - [anon_sym_break] = ACTIONS(93), - [anon_sym_continue] = ACTIONS(95), - [anon_sym_goto] = ACTIONS(97), - [anon_sym___try] = ACTIONS(2439), - [anon_sym___leave] = ACTIONS(227), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(313), + [anon_sym_switch] = ACTIONS(315), + [anon_sym_case] = ACTIONS(317), + [anon_sym_default] = ACTIONS(319), + [anon_sym_while] = ACTIONS(321), + [anon_sym_do] = ACTIONS(323), + [anon_sym_for] = ACTIONS(325), + [anon_sym_return] = ACTIONS(327), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(331), + [anon_sym_goto] = ACTIONS(333), + [anon_sym___try] = ACTIONS(335), + [anon_sym___leave] = ACTIONS(337), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -94579,12 +84755,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(137), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(341), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(141), - [anon_sym_co_return] = ACTIONS(151), - [anon_sym_co_yield] = ACTIONS(153), + [anon_sym_throw] = ACTIONS(343), + [anon_sym_co_return] = ACTIONS(353), + [anon_sym_co_yield] = ACTIONS(355), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -94598,247 +84774,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [215] = { - [sym_attribute_declaration] = STATE(215), - [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_seh_try_statement] = STATE(576), - [sym_seh_leave_statement] = STATE(576), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(215), - [sym_identifier] = ACTIONS(2678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2444), - [anon_sym_LPAREN2] = ACTIONS(2447), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_TILDE] = ACTIONS(2450), - [anon_sym_DASH] = ACTIONS(2453), - [anon_sym_PLUS] = ACTIONS(2453), - [anon_sym_STAR] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2456), - [anon_sym_SEMI] = ACTIONS(2681), - [anon_sym_COLON_COLON] = ACTIONS(2462), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2465), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_LBRACK] = ACTIONS(2471), - [sym_primitive_type] = ACTIONS(2474), - [anon_sym_if] = ACTIONS(2687), - [anon_sym_switch] = ACTIONS(2690), - [anon_sym_case] = ACTIONS(2693), - [anon_sym_default] = ACTIONS(2696), - [anon_sym_while] = ACTIONS(2699), - [anon_sym_do] = ACTIONS(2702), - [anon_sym_for] = ACTIONS(2705), - [anon_sym_return] = ACTIONS(2708), - [anon_sym_break] = ACTIONS(2711), - [anon_sym_continue] = ACTIONS(2714), - [anon_sym_goto] = ACTIONS(2717), - [anon_sym___try] = ACTIONS(2720), - [anon_sym___leave] = ACTIONS(2723), - [anon_sym_not] = ACTIONS(2453), - [anon_sym_compl] = ACTIONS(2453), - [anon_sym_DASH_DASH] = ACTIONS(2516), - [anon_sym_PLUS_PLUS] = ACTIONS(2516), - [anon_sym_sizeof] = ACTIONS(2519), - [anon_sym___alignof__] = ACTIONS(2522), - [anon_sym___alignof] = ACTIONS(2522), - [anon_sym__alignof] = ACTIONS(2522), - [anon_sym_alignof] = ACTIONS(2522), - [anon_sym__Alignof] = ACTIONS(2522), - [anon_sym_offsetof] = ACTIONS(2525), - [anon_sym__Generic] = ACTIONS(2528), - [anon_sym_asm] = ACTIONS(2531), - [anon_sym___asm__] = ACTIONS(2531), - [sym_number_literal] = ACTIONS(2534), - [anon_sym_L_SQUOTE] = ACTIONS(2537), - [anon_sym_u_SQUOTE] = ACTIONS(2537), - [anon_sym_U_SQUOTE] = ACTIONS(2537), - [anon_sym_u8_SQUOTE] = ACTIONS(2537), - [anon_sym_SQUOTE] = ACTIONS(2537), - [anon_sym_L_DQUOTE] = ACTIONS(2540), - [anon_sym_u_DQUOTE] = ACTIONS(2540), - [anon_sym_U_DQUOTE] = ACTIONS(2540), - [anon_sym_u8_DQUOTE] = ACTIONS(2540), - [anon_sym_DQUOTE] = ACTIONS(2540), - [sym_true] = ACTIONS(2543), - [sym_false] = ACTIONS(2543), - [anon_sym_NULL] = ACTIONS(2546), - [anon_sym_nullptr] = ACTIONS(2546), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2549), - [anon_sym_template] = ACTIONS(2552), - [anon_sym_try] = ACTIONS(2726), - [anon_sym_delete] = ACTIONS(2558), - [anon_sym_throw] = ACTIONS(2729), - [anon_sym_co_return] = ACTIONS(2732), - [anon_sym_co_yield] = ACTIONS(2735), - [anon_sym_R_DQUOTE] = ACTIONS(2570), - [anon_sym_LR_DQUOTE] = ACTIONS(2570), - [anon_sym_uR_DQUOTE] = ACTIONS(2570), - [anon_sym_UR_DQUOTE] = ACTIONS(2570), - [anon_sym_u8R_DQUOTE] = ACTIONS(2570), - [anon_sym_co_await] = ACTIONS(2573), - [anon_sym_new] = ACTIONS(2576), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2543), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2582), - [sym_semgrep_named_ellipsis] = ACTIONS(2585), + [sym_attribute_declaration] = STATE(233), + [sym_compound_statement] = STATE(317), + [sym_attributed_statement] = STATE(317), + [sym_labeled_statement] = STATE(317), + [sym_expression_statement] = STATE(317), + [sym_if_statement] = STATE(317), + [sym_switch_statement] = STATE(317), + [sym_case_statement] = STATE(317), + [sym_while_statement] = STATE(317), + [sym_do_statement] = STATE(317), + [sym_for_statement] = STATE(317), + [sym_return_statement] = STATE(317), + [sym_break_statement] = STATE(317), + [sym_continue_statement] = STATE(317), + [sym_goto_statement] = STATE(317), + [sym_seh_try_statement] = STATE(317), + [sym_seh_leave_statement] = STATE(317), + [sym_expression] = STATE(5188), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9691), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(317), + [sym_co_return_statement] = STATE(317), + [sym_co_yield_statement] = STATE(317), + [sym_throw_statement] = STATE(317), + [sym_try_statement] = STATE(317), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(233), + [sym_identifier] = ACTIONS(2409), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(301), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(313), + [anon_sym_switch] = ACTIONS(315), + [anon_sym_case] = ACTIONS(317), + [anon_sym_default] = ACTIONS(319), + [anon_sym_while] = ACTIONS(321), + [anon_sym_do] = ACTIONS(323), + [anon_sym_for] = ACTIONS(325), + [anon_sym_return] = ACTIONS(327), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(331), + [anon_sym_goto] = ACTIONS(333), + [anon_sym___try] = ACTIONS(335), + [anon_sym___leave] = ACTIONS(337), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(341), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_throw] = ACTIONS(343), + [anon_sym_co_return] = ACTIONS(353), + [anon_sym_co_yield] = ACTIONS(355), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [216] = { - [sym_attribute_declaration] = STATE(260), - [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_seh_try_statement] = STATE(571), - [sym_seh_leave_statement] = STATE(571), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(2427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [sym_attribute_declaration] = STATE(224), + [sym_compound_statement] = STATE(8409), + [sym_attributed_statement] = STATE(8409), + [sym_labeled_statement] = STATE(8409), + [sym_expression_statement] = STATE(8409), + [sym_if_statement] = STATE(8409), + [sym_switch_statement] = STATE(8409), + [sym_case_statement] = STATE(8409), + [sym_while_statement] = STATE(8409), + [sym_do_statement] = STATE(8409), + [sym_for_statement] = STATE(8409), + [sym_return_statement] = STATE(8409), + [sym_break_statement] = STATE(8409), + [sym_continue_statement] = STATE(8409), + [sym_goto_statement] = STATE(8409), + [sym_seh_try_statement] = STATE(8409), + [sym_seh_leave_statement] = STATE(8409), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(8409), + [sym_co_return_statement] = STATE(8409), + [sym_co_yield_statement] = STATE(8409), + [sym_throw_statement] = STATE(8409), + [sym_try_statement] = STATE(8409), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(224), + [sym_identifier] = ACTIONS(2411), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_SEMI] = ACTIONS(187), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(2429), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2413), [anon_sym_switch] = ACTIONS(79), - [anon_sym_case] = ACTIONS(2431), - [anon_sym_default] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2435), + [anon_sym_case] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2419), [anon_sym_do] = ACTIONS(87), - [anon_sym_for] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2421), [anon_sym_return] = ACTIONS(91), [anon_sym_break] = ACTIONS(93), [anon_sym_continue] = ACTIONS(95), [anon_sym_goto] = ACTIONS(97), - [anon_sym___try] = ACTIONS(2439), + [anon_sym___try] = ACTIONS(2423), [anon_sym___leave] = ACTIONS(227), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), @@ -94871,7 +85047,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_try] = ACTIONS(137), [anon_sym_delete] = ACTIONS(139), [anon_sym_throw] = ACTIONS(141), @@ -94890,101 +85066,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [217] = { - [sym_attribute_declaration] = STATE(260), - [sym_compound_statement] = STATE(636), - [sym_attributed_statement] = STATE(636), - [sym_labeled_statement] = STATE(636), - [sym_expression_statement] = STATE(636), - [sym_if_statement] = STATE(636), - [sym_switch_statement] = STATE(636), - [sym_case_statement] = STATE(636), - [sym_while_statement] = STATE(636), - [sym_do_statement] = STATE(636), - [sym_for_statement] = STATE(636), - [sym_return_statement] = STATE(636), - [sym_break_statement] = STATE(636), - [sym_continue_statement] = STATE(636), - [sym_goto_statement] = STATE(636), - [sym_seh_try_statement] = STATE(636), - [sym_seh_leave_statement] = STATE(636), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(636), - [sym_co_return_statement] = STATE(636), - [sym_co_yield_statement] = STATE(636), - [sym_throw_statement] = STATE(636), - [sym_try_statement] = STATE(636), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(2427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [sym_attribute_declaration] = STATE(224), + [sym_compound_statement] = STATE(646), + [sym_attributed_statement] = STATE(646), + [sym_labeled_statement] = STATE(646), + [sym_expression_statement] = STATE(646), + [sym_if_statement] = STATE(646), + [sym_switch_statement] = STATE(646), + [sym_case_statement] = STATE(646), + [sym_while_statement] = STATE(646), + [sym_do_statement] = STATE(646), + [sym_for_statement] = STATE(646), + [sym_return_statement] = STATE(646), + [sym_break_statement] = STATE(646), + [sym_continue_statement] = STATE(646), + [sym_goto_statement] = STATE(646), + [sym_seh_try_statement] = STATE(646), + [sym_seh_leave_statement] = STATE(646), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(646), + [sym_co_return_statement] = STATE(646), + [sym_co_yield_statement] = STATE(646), + [sym_throw_statement] = STATE(646), + [sym_try_statement] = STATE(646), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(224), + [sym_identifier] = ACTIONS(2411), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_SEMI] = ACTIONS(187), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(2429), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2413), [anon_sym_switch] = ACTIONS(79), - [anon_sym_case] = ACTIONS(2431), - [anon_sym_default] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2435), + [anon_sym_case] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2419), [anon_sym_do] = ACTIONS(87), - [anon_sym_for] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2421), [anon_sym_return] = ACTIONS(91), [anon_sym_break] = ACTIONS(93), [anon_sym_continue] = ACTIONS(95), [anon_sym_goto] = ACTIONS(97), - [anon_sym___try] = ACTIONS(2439), + [anon_sym___try] = ACTIONS(2423), [anon_sym___leave] = ACTIONS(227), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), @@ -95017,7 +85193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_try] = ACTIONS(137), [anon_sym_delete] = ACTIONS(139), [anon_sym_throw] = ACTIONS(141), @@ -95036,102 +85212,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [218] = { - [sym_attribute_declaration] = STATE(226), - [sym_compound_statement] = STATE(597), - [sym_attributed_statement] = STATE(597), - [sym_labeled_statement] = STATE(597), - [sym_expression_statement] = STATE(597), - [sym_if_statement] = STATE(597), - [sym_switch_statement] = STATE(597), - [sym_case_statement] = STATE(597), - [sym_while_statement] = STATE(597), - [sym_do_statement] = STATE(597), - [sym_for_statement] = STATE(597), - [sym_return_statement] = STATE(597), - [sym_break_statement] = STATE(597), - [sym_continue_statement] = STATE(597), - [sym_goto_statement] = STATE(597), - [sym_seh_try_statement] = STATE(597), - [sym_seh_leave_statement] = STATE(597), - [sym_expression] = STATE(5819), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9710), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(597), - [sym_co_return_statement] = STATE(597), - [sym_co_yield_statement] = STATE(597), - [sym_throw_statement] = STATE(597), - [sym_try_statement] = STATE(597), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(226), - [sym_identifier] = ACTIONS(2676), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [sym_attribute_declaration] = STATE(224), + [sym_compound_statement] = STATE(663), + [sym_attributed_statement] = STATE(663), + [sym_labeled_statement] = STATE(663), + [sym_expression_statement] = STATE(663), + [sym_if_statement] = STATE(663), + [sym_switch_statement] = STATE(663), + [sym_case_statement] = STATE(663), + [sym_while_statement] = STATE(663), + [sym_do_statement] = STATE(663), + [sym_for_statement] = STATE(663), + [sym_return_statement] = STATE(663), + [sym_break_statement] = STATE(663), + [sym_continue_statement] = STATE(663), + [sym_goto_statement] = STATE(663), + [sym_seh_try_statement] = STATE(663), + [sym_seh_leave_statement] = STATE(663), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(663), + [sym_co_return_statement] = STATE(663), + [sym_co_yield_statement] = STATE(663), + [sym_throw_statement] = STATE(663), + [sym_try_statement] = STATE(663), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(224), + [sym_identifier] = ACTIONS(2411), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(187), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_switch] = ACTIONS(1008), - [anon_sym_case] = ACTIONS(1010), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1014), - [anon_sym_do] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_break] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_goto] = ACTIONS(1026), - [anon_sym___try] = ACTIONS(1028), - [anon_sym___leave] = ACTIONS(1030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2413), + [anon_sym_switch] = ACTIONS(79), + [anon_sym_case] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2419), + [anon_sym_do] = ACTIONS(87), + [anon_sym_for] = ACTIONS(2421), + [anon_sym_return] = ACTIONS(91), + [anon_sym_break] = ACTIONS(93), + [anon_sym_continue] = ACTIONS(95), + [anon_sym_goto] = ACTIONS(97), + [anon_sym___try] = ACTIONS(2423), + [anon_sym___leave] = ACTIONS(227), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -95163,12 +85339,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(1034), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(137), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(1036), - [anon_sym_co_return] = ACTIONS(1046), - [anon_sym_co_yield] = ACTIONS(1048), + [anon_sym_throw] = ACTIONS(141), + [anon_sym_co_return] = ACTIONS(151), + [anon_sym_co_yield] = ACTIONS(153), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -95183,246 +85359,246 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [219] = { [sym_attribute_declaration] = STATE(219), - [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_seh_try_statement] = STATE(659), - [sym_seh_leave_statement] = STATE(659), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), + [sym_compound_statement] = STATE(604), + [sym_attributed_statement] = STATE(604), + [sym_labeled_statement] = STATE(604), + [sym_expression_statement] = STATE(604), + [sym_if_statement] = STATE(604), + [sym_switch_statement] = STATE(604), + [sym_case_statement] = STATE(604), + [sym_while_statement] = STATE(604), + [sym_do_statement] = STATE(604), + [sym_for_statement] = STATE(604), + [sym_return_statement] = STATE(604), + [sym_break_statement] = STATE(604), + [sym_continue_statement] = STATE(604), + [sym_goto_statement] = STATE(604), + [sym_seh_try_statement] = STATE(604), + [sym_seh_leave_statement] = STATE(604), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(604), + [sym_co_return_statement] = STATE(604), + [sym_co_yield_statement] = STATE(604), + [sym_throw_statement] = STATE(604), + [sym_try_statement] = STATE(604), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_attributed_declarator_repeat1] = STATE(219), - [sym_identifier] = ACTIONS(2738), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2444), - [anon_sym_LPAREN2] = ACTIONS(2447), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_TILDE] = ACTIONS(2450), - [anon_sym_DASH] = ACTIONS(2453), - [anon_sym_PLUS] = ACTIONS(2453), - [anon_sym_STAR] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2456), - [anon_sym_SEMI] = ACTIONS(2681), - [anon_sym_COLON_COLON] = ACTIONS(2462), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2465), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_LBRACK] = ACTIONS(2471), - [sym_primitive_type] = ACTIONS(2474), - [anon_sym_if] = ACTIONS(2744), - [anon_sym_switch] = ACTIONS(2747), - [anon_sym_case] = ACTIONS(2750), - [anon_sym_default] = ACTIONS(2753), - [anon_sym_while] = ACTIONS(2756), - [anon_sym_do] = ACTIONS(2759), - [anon_sym_for] = ACTIONS(2762), - [anon_sym_return] = ACTIONS(2765), - [anon_sym_break] = ACTIONS(2768), - [anon_sym_continue] = ACTIONS(2771), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym___try] = ACTIONS(2777), - [anon_sym___leave] = ACTIONS(2723), - [anon_sym_not] = ACTIONS(2453), - [anon_sym_compl] = ACTIONS(2453), - [anon_sym_DASH_DASH] = ACTIONS(2516), - [anon_sym_PLUS_PLUS] = ACTIONS(2516), - [anon_sym_sizeof] = ACTIONS(2519), - [anon_sym___alignof__] = ACTIONS(2522), - [anon_sym___alignof] = ACTIONS(2522), - [anon_sym__alignof] = ACTIONS(2522), - [anon_sym_alignof] = ACTIONS(2522), - [anon_sym__Alignof] = ACTIONS(2522), - [anon_sym_offsetof] = ACTIONS(2525), - [anon_sym__Generic] = ACTIONS(2528), - [anon_sym_asm] = ACTIONS(2531), - [anon_sym___asm__] = ACTIONS(2531), - [sym_number_literal] = ACTIONS(2534), - [anon_sym_L_SQUOTE] = ACTIONS(2537), - [anon_sym_u_SQUOTE] = ACTIONS(2537), - [anon_sym_U_SQUOTE] = ACTIONS(2537), - [anon_sym_u8_SQUOTE] = ACTIONS(2537), - [anon_sym_SQUOTE] = ACTIONS(2537), - [anon_sym_L_DQUOTE] = ACTIONS(2540), - [anon_sym_u_DQUOTE] = ACTIONS(2540), - [anon_sym_U_DQUOTE] = ACTIONS(2540), - [anon_sym_u8_DQUOTE] = ACTIONS(2540), - [anon_sym_DQUOTE] = ACTIONS(2540), - [sym_true] = ACTIONS(2543), - [sym_false] = ACTIONS(2543), - [anon_sym_NULL] = ACTIONS(2546), - [anon_sym_nullptr] = ACTIONS(2546), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2549), - [anon_sym_template] = ACTIONS(2552), - [anon_sym_try] = ACTIONS(2780), - [anon_sym_delete] = ACTIONS(2558), - [anon_sym_throw] = ACTIONS(2783), - [anon_sym_co_return] = ACTIONS(2786), - [anon_sym_co_yield] = ACTIONS(2789), - [anon_sym_R_DQUOTE] = ACTIONS(2570), - [anon_sym_LR_DQUOTE] = ACTIONS(2570), - [anon_sym_uR_DQUOTE] = ACTIONS(2570), - [anon_sym_UR_DQUOTE] = ACTIONS(2570), - [anon_sym_u8R_DQUOTE] = ACTIONS(2570), - [anon_sym_co_await] = ACTIONS(2573), - [anon_sym_new] = ACTIONS(2576), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2543), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2582), - [sym_semgrep_named_ellipsis] = ACTIONS(2585), + [sym_identifier] = ACTIONS(2722), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2428), + [anon_sym_LPAREN2] = ACTIONS(2431), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_COLON_COLON] = ACTIONS(2446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2449), + [anon_sym_LBRACE] = ACTIONS(2602), + [anon_sym_LBRACK] = ACTIONS(2455), + [sym_primitive_type] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2725), + [anon_sym_switch] = ACTIONS(2608), + [anon_sym_case] = ACTIONS(2728), + [anon_sym_default] = ACTIONS(2731), + [anon_sym_while] = ACTIONS(2734), + [anon_sym_do] = ACTIONS(2620), + [anon_sym_for] = ACTIONS(2737), + [anon_sym_return] = ACTIONS(2626), + [anon_sym_break] = ACTIONS(2629), + [anon_sym_continue] = ACTIONS(2632), + [anon_sym_goto] = ACTIONS(2635), + [anon_sym___try] = ACTIONS(2740), + [anon_sym___leave] = ACTIONS(2497), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_compl] = ACTIONS(2437), + [anon_sym_DASH_DASH] = ACTIONS(2500), + [anon_sym_PLUS_PLUS] = ACTIONS(2500), + [anon_sym_sizeof] = ACTIONS(2503), + [anon_sym___alignof__] = ACTIONS(2506), + [anon_sym___alignof] = ACTIONS(2506), + [anon_sym__alignof] = ACTIONS(2506), + [anon_sym_alignof] = ACTIONS(2506), + [anon_sym__Alignof] = ACTIONS(2506), + [anon_sym_offsetof] = ACTIONS(2509), + [anon_sym__Generic] = ACTIONS(2512), + [anon_sym_asm] = ACTIONS(2515), + [anon_sym___asm__] = ACTIONS(2515), + [sym_number_literal] = ACTIONS(2518), + [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(2524), + [anon_sym_u_DQUOTE] = ACTIONS(2524), + [anon_sym_U_DQUOTE] = ACTIONS(2524), + [anon_sym_u8_DQUOTE] = ACTIONS(2524), + [anon_sym_DQUOTE] = ACTIONS(2524), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [anon_sym_NULL] = ACTIONS(2530), + [anon_sym_nullptr] = ACTIONS(2530), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2533), + [anon_sym_template] = ACTIONS(2536), + [anon_sym_try] = ACTIONS(2644), + [anon_sym_delete] = ACTIONS(2542), + [anon_sym_throw] = ACTIONS(2647), + [anon_sym_co_return] = ACTIONS(2650), + [anon_sym_co_yield] = ACTIONS(2653), + [anon_sym_R_DQUOTE] = ACTIONS(2554), + [anon_sym_LR_DQUOTE] = ACTIONS(2554), + [anon_sym_uR_DQUOTE] = ACTIONS(2554), + [anon_sym_UR_DQUOTE] = ACTIONS(2554), + [anon_sym_u8R_DQUOTE] = ACTIONS(2554), + [anon_sym_co_await] = ACTIONS(2557), + [anon_sym_new] = ACTIONS(2560), + [anon_sym_requires] = ACTIONS(2563), + [sym_this] = ACTIONS(2527), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2566), + [sym_semgrep_named_ellipsis] = ACTIONS(2569), }, [220] = { - [sym_attribute_declaration] = STATE(260), - [sym_compound_statement] = STATE(9051), - [sym_attributed_statement] = STATE(9051), - [sym_labeled_statement] = STATE(9051), - [sym_expression_statement] = STATE(9051), - [sym_if_statement] = STATE(9051), - [sym_switch_statement] = STATE(9051), - [sym_case_statement] = STATE(9051), - [sym_while_statement] = STATE(9051), - [sym_do_statement] = STATE(9051), - [sym_for_statement] = STATE(9051), - [sym_return_statement] = STATE(9051), - [sym_break_statement] = STATE(9051), - [sym_continue_statement] = STATE(9051), - [sym_goto_statement] = STATE(9051), - [sym_seh_try_statement] = STATE(9051), - [sym_seh_leave_statement] = STATE(9051), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(9051), - [sym_co_return_statement] = STATE(9051), - [sym_co_yield_statement] = STATE(9051), - [sym_throw_statement] = STATE(9051), - [sym_try_statement] = STATE(9051), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(2427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [sym_attribute_declaration] = STATE(224), + [sym_compound_statement] = STATE(8298), + [sym_attributed_statement] = STATE(8298), + [sym_labeled_statement] = STATE(8298), + [sym_expression_statement] = STATE(8298), + [sym_if_statement] = STATE(8298), + [sym_switch_statement] = STATE(8298), + [sym_case_statement] = STATE(8298), + [sym_while_statement] = STATE(8298), + [sym_do_statement] = STATE(8298), + [sym_for_statement] = STATE(8298), + [sym_return_statement] = STATE(8298), + [sym_break_statement] = STATE(8298), + [sym_continue_statement] = STATE(8298), + [sym_goto_statement] = STATE(8298), + [sym_seh_try_statement] = STATE(8298), + [sym_seh_leave_statement] = STATE(8298), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(8298), + [sym_co_return_statement] = STATE(8298), + [sym_co_yield_statement] = STATE(8298), + [sym_throw_statement] = STATE(8298), + [sym_try_statement] = STATE(8298), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(224), + [sym_identifier] = ACTIONS(2411), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_SEMI] = ACTIONS(187), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(2429), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2413), [anon_sym_switch] = ACTIONS(79), - [anon_sym_case] = ACTIONS(2431), - [anon_sym_default] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2435), + [anon_sym_case] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2419), [anon_sym_do] = ACTIONS(87), - [anon_sym_for] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2421), [anon_sym_return] = ACTIONS(91), [anon_sym_break] = ACTIONS(93), [anon_sym_continue] = ACTIONS(95), [anon_sym_goto] = ACTIONS(97), - [anon_sym___try] = ACTIONS(2439), + [anon_sym___try] = ACTIONS(2423), [anon_sym___leave] = ACTIONS(227), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), @@ -95455,7 +85631,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_try] = ACTIONS(137), [anon_sym_delete] = ACTIONS(139), [anon_sym_throw] = ACTIONS(141), @@ -95474,101 +85650,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [221] = { - [sym_attribute_declaration] = STATE(190), - [sym_compound_statement] = STATE(509), - [sym_attributed_statement] = STATE(509), - [sym_labeled_statement] = STATE(509), - [sym_expression_statement] = STATE(509), - [sym_if_statement] = STATE(509), - [sym_switch_statement] = STATE(509), - [sym_case_statement] = STATE(509), - [sym_while_statement] = STATE(509), - [sym_do_statement] = STATE(509), - [sym_for_statement] = STATE(509), - [sym_return_statement] = STATE(509), - [sym_break_statement] = STATE(509), - [sym_continue_statement] = STATE(509), - [sym_goto_statement] = STATE(509), - [sym_seh_try_statement] = STATE(509), - [sym_seh_leave_statement] = STATE(509), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(509), - [sym_co_return_statement] = STATE(509), - [sym_co_yield_statement] = STATE(509), - [sym_throw_statement] = STATE(509), - [sym_try_statement] = STATE(509), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [sym_identifier] = ACTIONS(2375), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [sym_attribute_declaration] = STATE(224), + [sym_compound_statement] = STATE(625), + [sym_attributed_statement] = STATE(625), + [sym_labeled_statement] = STATE(625), + [sym_expression_statement] = STATE(625), + [sym_if_statement] = STATE(625), + [sym_switch_statement] = STATE(625), + [sym_case_statement] = STATE(625), + [sym_while_statement] = STATE(625), + [sym_do_statement] = STATE(625), + [sym_for_statement] = STATE(625), + [sym_return_statement] = STATE(625), + [sym_break_statement] = STATE(625), + [sym_continue_statement] = STATE(625), + [sym_goto_statement] = STATE(625), + [sym_seh_try_statement] = STATE(625), + [sym_seh_leave_statement] = STATE(625), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(625), + [sym_co_return_statement] = STATE(625), + [sym_co_yield_statement] = STATE(625), + [sym_throw_statement] = STATE(625), + [sym_try_statement] = STATE(625), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(224), + [sym_identifier] = ACTIONS(2411), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_SEMI] = ACTIONS(187), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2413), + [anon_sym_switch] = ACTIONS(79), + [anon_sym_case] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2419), + [anon_sym_do] = ACTIONS(87), + [anon_sym_for] = ACTIONS(2421), + [anon_sym_return] = ACTIONS(91), + [anon_sym_break] = ACTIONS(93), + [anon_sym_continue] = ACTIONS(95), + [anon_sym_goto] = ACTIONS(97), + [anon_sym___try] = ACTIONS(2423), [anon_sym___leave] = ACTIONS(227), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), @@ -95601,12 +85777,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(233), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(137), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_co_return] = ACTIONS(245), - [anon_sym_co_yield] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(141), + [anon_sym_co_return] = ACTIONS(151), + [anon_sym_co_yield] = ACTIONS(153), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -95620,101 +85796,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [222] = { - [sym_attribute_declaration] = STATE(260), - [sym_compound_statement] = STATE(665), - [sym_attributed_statement] = STATE(665), - [sym_labeled_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_if_statement] = STATE(665), - [sym_switch_statement] = STATE(665), - [sym_case_statement] = STATE(665), - [sym_while_statement] = STATE(665), - [sym_do_statement] = STATE(665), - [sym_for_statement] = STATE(665), - [sym_return_statement] = STATE(665), - [sym_break_statement] = STATE(665), - [sym_continue_statement] = STATE(665), - [sym_goto_statement] = STATE(665), - [sym_seh_try_statement] = STATE(665), - [sym_seh_leave_statement] = STATE(665), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(665), - [sym_co_return_statement] = STATE(665), - [sym_co_yield_statement] = STATE(665), - [sym_throw_statement] = STATE(665), - [sym_try_statement] = STATE(665), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(2427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [sym_attribute_declaration] = STATE(224), + [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_seh_try_statement] = STATE(627), + [sym_seh_leave_statement] = STATE(627), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(224), + [sym_identifier] = ACTIONS(2411), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_SEMI] = ACTIONS(187), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(2429), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2413), [anon_sym_switch] = ACTIONS(79), - [anon_sym_case] = ACTIONS(2431), - [anon_sym_default] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2435), + [anon_sym_case] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2419), [anon_sym_do] = ACTIONS(87), - [anon_sym_for] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2421), [anon_sym_return] = ACTIONS(91), [anon_sym_break] = ACTIONS(93), [anon_sym_continue] = ACTIONS(95), [anon_sym_goto] = ACTIONS(97), - [anon_sym___try] = ACTIONS(2439), + [anon_sym___try] = ACTIONS(2423), [anon_sym___leave] = ACTIONS(227), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), @@ -95747,7 +85923,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_try] = ACTIONS(137), [anon_sym_delete] = ACTIONS(139), [anon_sym_throw] = ACTIONS(141), @@ -95766,101 +85942,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [223] = { - [sym_attribute_declaration] = STATE(260), - [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_seh_try_statement] = STATE(667), - [sym_seh_leave_statement] = STATE(667), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(2427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [sym_attribute_declaration] = STATE(224), + [sym_compound_statement] = STATE(628), + [sym_attributed_statement] = STATE(628), + [sym_labeled_statement] = STATE(628), + [sym_expression_statement] = STATE(628), + [sym_if_statement] = STATE(628), + [sym_switch_statement] = STATE(628), + [sym_case_statement] = STATE(628), + [sym_while_statement] = STATE(628), + [sym_do_statement] = STATE(628), + [sym_for_statement] = STATE(628), + [sym_return_statement] = STATE(628), + [sym_break_statement] = STATE(628), + [sym_continue_statement] = STATE(628), + [sym_goto_statement] = STATE(628), + [sym_seh_try_statement] = STATE(628), + [sym_seh_leave_statement] = STATE(628), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(628), + [sym_co_return_statement] = STATE(628), + [sym_co_yield_statement] = STATE(628), + [sym_throw_statement] = STATE(628), + [sym_try_statement] = STATE(628), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(224), + [sym_identifier] = ACTIONS(2411), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_SEMI] = ACTIONS(187), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(2429), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2413), [anon_sym_switch] = ACTIONS(79), - [anon_sym_case] = ACTIONS(2431), - [anon_sym_default] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2435), + [anon_sym_case] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2419), [anon_sym_do] = ACTIONS(87), - [anon_sym_for] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2421), [anon_sym_return] = ACTIONS(91), [anon_sym_break] = ACTIONS(93), [anon_sym_continue] = ACTIONS(95), [anon_sym_goto] = ACTIONS(97), - [anon_sym___try] = ACTIONS(2439), + [anon_sym___try] = ACTIONS(2423), [anon_sym___leave] = ACTIONS(227), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), @@ -95893,7 +86069,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_try] = ACTIONS(137), [anon_sym_delete] = ACTIONS(139), [anon_sym_throw] = ACTIONS(141), @@ -95912,101 +86088,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [224] = { - [sym_attribute_declaration] = STATE(260), - [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_seh_try_statement] = STATE(668), - [sym_seh_leave_statement] = STATE(668), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(2427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [sym_attribute_declaration] = STATE(219), + [sym_compound_statement] = STATE(604), + [sym_attributed_statement] = STATE(604), + [sym_labeled_statement] = STATE(604), + [sym_expression_statement] = STATE(604), + [sym_if_statement] = STATE(604), + [sym_switch_statement] = STATE(604), + [sym_case_statement] = STATE(604), + [sym_while_statement] = STATE(604), + [sym_do_statement] = STATE(604), + [sym_for_statement] = STATE(604), + [sym_return_statement] = STATE(604), + [sym_break_statement] = STATE(604), + [sym_continue_statement] = STATE(604), + [sym_goto_statement] = STATE(604), + [sym_seh_try_statement] = STATE(604), + [sym_seh_leave_statement] = STATE(604), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(604), + [sym_co_return_statement] = STATE(604), + [sym_co_yield_statement] = STATE(604), + [sym_throw_statement] = STATE(604), + [sym_try_statement] = STATE(604), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(219), + [sym_identifier] = ACTIONS(2411), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_SEMI] = ACTIONS(187), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(2429), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2413), [anon_sym_switch] = ACTIONS(79), - [anon_sym_case] = ACTIONS(2431), - [anon_sym_default] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2435), + [anon_sym_case] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2419), [anon_sym_do] = ACTIONS(87), - [anon_sym_for] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2421), [anon_sym_return] = ACTIONS(91), [anon_sym_break] = ACTIONS(93), [anon_sym_continue] = ACTIONS(95), [anon_sym_goto] = ACTIONS(97), - [anon_sym___try] = ACTIONS(2439), + [anon_sym___try] = ACTIONS(2423), [anon_sym___leave] = ACTIONS(227), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), @@ -96039,7 +86215,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_try] = ACTIONS(137), [anon_sym_delete] = ACTIONS(139), [anon_sym_throw] = ACTIONS(141), @@ -96058,102 +86234,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [225] = { - [sym_attribute_declaration] = STATE(195), - [sym_compound_statement] = STATE(994), - [sym_attributed_statement] = STATE(994), - [sym_labeled_statement] = STATE(994), - [sym_expression_statement] = STATE(994), - [sym_if_statement] = STATE(994), - [sym_switch_statement] = STATE(994), - [sym_case_statement] = STATE(994), - [sym_while_statement] = STATE(994), - [sym_do_statement] = STATE(994), - [sym_for_statement] = STATE(994), - [sym_return_statement] = STATE(994), - [sym_break_statement] = STATE(994), - [sym_continue_statement] = STATE(994), - [sym_goto_statement] = STATE(994), - [sym_seh_try_statement] = STATE(994), - [sym_seh_leave_statement] = STATE(994), - [sym_expression] = STATE(5875), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10185), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(994), - [sym_co_return_statement] = STATE(994), - [sym_co_yield_statement] = STATE(994), - [sym_throw_statement] = STATE(994), - [sym_try_statement] = STATE(994), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(195), - [sym_identifier] = ACTIONS(2588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [sym_attribute_declaration] = STATE(243), + [sym_compound_statement] = STATE(370), + [sym_attributed_statement] = STATE(370), + [sym_labeled_statement] = STATE(370), + [sym_expression_statement] = STATE(370), + [sym_if_statement] = STATE(370), + [sym_switch_statement] = STATE(370), + [sym_case_statement] = STATE(370), + [sym_while_statement] = STATE(370), + [sym_do_statement] = STATE(370), + [sym_for_statement] = STATE(370), + [sym_return_statement] = STATE(370), + [sym_break_statement] = STATE(370), + [sym_continue_statement] = STATE(370), + [sym_goto_statement] = STATE(370), + [sym_seh_try_statement] = STATE(370), + [sym_seh_leave_statement] = STATE(370), + [sym_expression] = STATE(5277), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9725), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(370), + [sym_co_return_statement] = STATE(370), + [sym_co_yield_statement] = STATE(370), + [sym_throw_statement] = STATE(370), + [sym_try_statement] = STATE(370), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(243), + [sym_identifier] = ACTIONS(2743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(413), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(2009), - [anon_sym_switch] = ACTIONS(2011), - [anon_sym_case] = ACTIONS(2431), - [anon_sym_default] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_do] = ACTIONS(2015), - [anon_sym_for] = ACTIONS(2017), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2021), - [anon_sym_continue] = ACTIONS(2023), - [anon_sym_goto] = ACTIONS(2025), - [anon_sym___try] = ACTIONS(2027), - [anon_sym___leave] = ACTIONS(2029), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(425), + [anon_sym_switch] = ACTIONS(427), + [anon_sym_case] = ACTIONS(429), + [anon_sym_default] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_do] = ACTIONS(435), + [anon_sym_for] = ACTIONS(437), + [anon_sym_return] = ACTIONS(439), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_goto] = ACTIONS(445), + [anon_sym___try] = ACTIONS(447), + [anon_sym___leave] = ACTIONS(449), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -96185,12 +86361,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(2031), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(453), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(2033), - [anon_sym_co_return] = ACTIONS(2035), - [anon_sym_co_yield] = ACTIONS(2037), + [anon_sym_throw] = ACTIONS(455), + [anon_sym_co_return] = ACTIONS(465), + [anon_sym_co_yield] = ACTIONS(467), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -96204,102 +86380,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [226] = { - [sym_attribute_declaration] = STATE(194), - [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_seh_try_statement] = STATE(573), - [sym_seh_leave_statement] = STATE(573), - [sym_expression] = STATE(5819), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9710), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(194), - [sym_identifier] = ACTIONS(2676), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [sym_attribute_declaration] = STATE(243), + [sym_compound_statement] = STATE(486), + [sym_attributed_statement] = STATE(486), + [sym_labeled_statement] = STATE(486), + [sym_expression_statement] = STATE(486), + [sym_if_statement] = STATE(486), + [sym_switch_statement] = STATE(486), + [sym_case_statement] = STATE(486), + [sym_while_statement] = STATE(486), + [sym_do_statement] = STATE(486), + [sym_for_statement] = STATE(486), + [sym_return_statement] = STATE(486), + [sym_break_statement] = STATE(486), + [sym_continue_statement] = STATE(486), + [sym_goto_statement] = STATE(486), + [sym_seh_try_statement] = STATE(486), + [sym_seh_leave_statement] = STATE(486), + [sym_expression] = STATE(5277), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9725), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(486), + [sym_co_return_statement] = STATE(486), + [sym_co_yield_statement] = STATE(486), + [sym_throw_statement] = STATE(486), + [sym_try_statement] = STATE(486), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(243), + [sym_identifier] = ACTIONS(2743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(413), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_switch] = ACTIONS(1008), - [anon_sym_case] = ACTIONS(1010), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1014), - [anon_sym_do] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_break] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_goto] = ACTIONS(1026), - [anon_sym___try] = ACTIONS(1028), - [anon_sym___leave] = ACTIONS(1030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(425), + [anon_sym_switch] = ACTIONS(427), + [anon_sym_case] = ACTIONS(429), + [anon_sym_default] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_do] = ACTIONS(435), + [anon_sym_for] = ACTIONS(437), + [anon_sym_return] = ACTIONS(439), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_goto] = ACTIONS(445), + [anon_sym___try] = ACTIONS(447), + [anon_sym___leave] = ACTIONS(449), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -96331,12 +86507,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(1034), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(453), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(1036), - [anon_sym_co_return] = ACTIONS(1046), - [anon_sym_co_yield] = ACTIONS(1048), + [anon_sym_throw] = ACTIONS(455), + [anon_sym_co_return] = ACTIONS(465), + [anon_sym_co_yield] = ACTIONS(467), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -96350,235 +86526,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [227] = { - [sym_attribute_declaration] = STATE(239), - [sym_compound_statement] = STATE(524), - [sym_attributed_statement] = STATE(524), - [sym_labeled_statement] = STATE(524), - [sym_expression_statement] = STATE(524), - [sym_if_statement] = STATE(524), - [sym_switch_statement] = STATE(524), - [sym_case_statement] = STATE(524), - [sym_while_statement] = STATE(524), - [sym_do_statement] = STATE(524), - [sym_for_statement] = STATE(524), - [sym_return_statement] = STATE(524), - [sym_break_statement] = STATE(524), - [sym_continue_statement] = STATE(524), - [sym_goto_statement] = STATE(524), - [sym_seh_try_statement] = STATE(524), - [sym_seh_leave_statement] = STATE(524), - [sym_expression] = STATE(5777), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9682), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(524), - [sym_co_return_statement] = STATE(524), - [sym_co_yield_statement] = STATE(524), - [sym_throw_statement] = STATE(524), - [sym_try_statement] = STATE(524), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(2650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [sym_attribute_declaration] = STATE(243), + [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_seh_try_statement] = STATE(465), + [sym_seh_leave_statement] = STATE(465), + [sym_expression] = STATE(5277), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9725), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(243), + [sym_identifier] = ACTIONS(2743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(77), - [anon_sym_switch] = ACTIONS(79), - [anon_sym_case] = ACTIONS(81), - [anon_sym_default] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_do] = ACTIONS(87), - [anon_sym_for] = ACTIONS(89), - [anon_sym_return] = ACTIONS(91), - [anon_sym_break] = ACTIONS(93), - [anon_sym_continue] = ACTIONS(95), - [anon_sym_goto] = ACTIONS(97), - [anon_sym___try] = ACTIONS(1875), - [anon_sym___leave] = ACTIONS(1877), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(137), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(141), - [anon_sym_co_return] = ACTIONS(151), - [anon_sym_co_yield] = ACTIONS(153), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), - }, - [228] = { - [sym_attribute_declaration] = STATE(229), - [sym_compound_statement] = STATE(493), - [sym_attributed_statement] = STATE(493), - [sym_labeled_statement] = STATE(493), - [sym_expression_statement] = STATE(493), - [sym_if_statement] = STATE(493), - [sym_switch_statement] = STATE(493), - [sym_case_statement] = STATE(493), - [sym_while_statement] = STATE(493), - [sym_do_statement] = STATE(493), - [sym_for_statement] = STATE(493), - [sym_return_statement] = STATE(493), - [sym_break_statement] = STATE(493), - [sym_continue_statement] = STATE(493), - [sym_goto_statement] = STATE(493), - [sym_seh_try_statement] = STATE(493), - [sym_seh_leave_statement] = STATE(493), - [sym_expression] = STATE(5788), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9707), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(493), - [sym_co_return_statement] = STATE(493), - [sym_co_yield_statement] = STATE(493), - [sym_throw_statement] = STATE(493), - [sym_try_statement] = STATE(493), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(2792), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_SEMI] = ACTIONS(413), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym_LBRACE] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_if] = ACTIONS(425), [anon_sym_switch] = ACTIONS(427), [anon_sym_case] = ACTIONS(429), @@ -96623,7 +86653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_try] = ACTIONS(453), [anon_sym_delete] = ACTIONS(139), [anon_sym_throw] = ACTIONS(455), @@ -96641,90 +86671,236 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, + [228] = { + [sym_attribute_declaration] = STATE(228), + [sym_compound_statement] = STATE(473), + [sym_attributed_statement] = STATE(473), + [sym_labeled_statement] = STATE(473), + [sym_expression_statement] = STATE(473), + [sym_if_statement] = STATE(473), + [sym_switch_statement] = STATE(473), + [sym_case_statement] = STATE(473), + [sym_while_statement] = STATE(473), + [sym_do_statement] = STATE(473), + [sym_for_statement] = STATE(473), + [sym_return_statement] = STATE(473), + [sym_break_statement] = STATE(473), + [sym_continue_statement] = STATE(473), + [sym_goto_statement] = STATE(473), + [sym_seh_try_statement] = STATE(473), + [sym_seh_leave_statement] = STATE(473), + [sym_expression] = STATE(5277), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9725), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(473), + [sym_co_return_statement] = STATE(473), + [sym_co_yield_statement] = STATE(473), + [sym_throw_statement] = STATE(473), + [sym_try_statement] = STATE(473), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(2745), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2428), + [anon_sym_LPAREN2] = ACTIONS(2431), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2748), + [anon_sym_COLON_COLON] = ACTIONS(2446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2449), + [anon_sym_LBRACE] = ACTIONS(2751), + [anon_sym_LBRACK] = ACTIONS(2455), + [sym_primitive_type] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2754), + [anon_sym_switch] = ACTIONS(2757), + [anon_sym_case] = ACTIONS(2760), + [anon_sym_default] = ACTIONS(2763), + [anon_sym_while] = ACTIONS(2766), + [anon_sym_do] = ACTIONS(2769), + [anon_sym_for] = ACTIONS(2772), + [anon_sym_return] = ACTIONS(2775), + [anon_sym_break] = ACTIONS(2778), + [anon_sym_continue] = ACTIONS(2781), + [anon_sym_goto] = ACTIONS(2784), + [anon_sym___try] = ACTIONS(2787), + [anon_sym___leave] = ACTIONS(2790), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_compl] = ACTIONS(2437), + [anon_sym_DASH_DASH] = ACTIONS(2500), + [anon_sym_PLUS_PLUS] = ACTIONS(2500), + [anon_sym_sizeof] = ACTIONS(2503), + [anon_sym___alignof__] = ACTIONS(2506), + [anon_sym___alignof] = ACTIONS(2506), + [anon_sym__alignof] = ACTIONS(2506), + [anon_sym_alignof] = ACTIONS(2506), + [anon_sym__Alignof] = ACTIONS(2506), + [anon_sym_offsetof] = ACTIONS(2509), + [anon_sym__Generic] = ACTIONS(2512), + [anon_sym_asm] = ACTIONS(2515), + [anon_sym___asm__] = ACTIONS(2515), + [sym_number_literal] = ACTIONS(2518), + [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(2524), + [anon_sym_u_DQUOTE] = ACTIONS(2524), + [anon_sym_U_DQUOTE] = ACTIONS(2524), + [anon_sym_u8_DQUOTE] = ACTIONS(2524), + [anon_sym_DQUOTE] = ACTIONS(2524), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [anon_sym_NULL] = ACTIONS(2530), + [anon_sym_nullptr] = ACTIONS(2530), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2533), + [anon_sym_template] = ACTIONS(2536), + [anon_sym_try] = ACTIONS(2793), + [anon_sym_delete] = ACTIONS(2542), + [anon_sym_throw] = ACTIONS(2796), + [anon_sym_co_return] = ACTIONS(2799), + [anon_sym_co_yield] = ACTIONS(2802), + [anon_sym_R_DQUOTE] = ACTIONS(2554), + [anon_sym_LR_DQUOTE] = ACTIONS(2554), + [anon_sym_uR_DQUOTE] = ACTIONS(2554), + [anon_sym_UR_DQUOTE] = ACTIONS(2554), + [anon_sym_u8R_DQUOTE] = ACTIONS(2554), + [anon_sym_co_await] = ACTIONS(2557), + [anon_sym_new] = ACTIONS(2560), + [anon_sym_requires] = ACTIONS(2563), + [sym_this] = ACTIONS(2527), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2566), + [sym_semgrep_named_ellipsis] = ACTIONS(2569), + }, [229] = { - [sym_attribute_declaration] = STATE(235), - [sym_compound_statement] = STATE(496), - [sym_attributed_statement] = STATE(496), - [sym_labeled_statement] = STATE(496), - [sym_expression_statement] = STATE(496), - [sym_if_statement] = STATE(496), - [sym_switch_statement] = STATE(496), - [sym_case_statement] = STATE(496), - [sym_while_statement] = STATE(496), - [sym_do_statement] = STATE(496), - [sym_for_statement] = STATE(496), - [sym_return_statement] = STATE(496), - [sym_break_statement] = STATE(496), - [sym_continue_statement] = STATE(496), - [sym_goto_statement] = STATE(496), - [sym_seh_try_statement] = STATE(496), - [sym_seh_leave_statement] = STATE(496), - [sym_expression] = STATE(5788), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9707), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(496), - [sym_co_return_statement] = STATE(496), - [sym_co_yield_statement] = STATE(496), - [sym_throw_statement] = STATE(496), - [sym_try_statement] = STATE(496), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(235), - [sym_identifier] = ACTIONS(2792), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [sym_attribute_declaration] = STATE(243), + [sym_compound_statement] = STATE(452), + [sym_attributed_statement] = STATE(452), + [sym_labeled_statement] = STATE(452), + [sym_expression_statement] = STATE(452), + [sym_if_statement] = STATE(452), + [sym_switch_statement] = STATE(452), + [sym_case_statement] = STATE(452), + [sym_while_statement] = STATE(452), + [sym_do_statement] = STATE(452), + [sym_for_statement] = STATE(452), + [sym_return_statement] = STATE(452), + [sym_break_statement] = STATE(452), + [sym_continue_statement] = STATE(452), + [sym_goto_statement] = STATE(452), + [sym_seh_try_statement] = STATE(452), + [sym_seh_leave_statement] = STATE(452), + [sym_expression] = STATE(5277), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9725), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(452), + [sym_co_return_statement] = STATE(452), + [sym_co_yield_statement] = STATE(452), + [sym_throw_statement] = STATE(452), + [sym_try_statement] = STATE(452), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(243), + [sym_identifier] = ACTIONS(2743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_SEMI] = ACTIONS(413), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym_LBRACE] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_if] = ACTIONS(425), [anon_sym_switch] = ACTIONS(427), [anon_sym_case] = ACTIONS(429), @@ -96769,7 +86945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_try] = ACTIONS(453), [anon_sym_delete] = ACTIONS(139), [anon_sym_throw] = ACTIONS(455), @@ -96788,89 +86964,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [230] = { - [sym_attribute_declaration] = STATE(229), - [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_seh_try_statement] = STATE(406), - [sym_seh_leave_statement] = STATE(406), - [sym_expression] = STATE(5788), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9707), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(2792), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [sym_attribute_declaration] = STATE(243), + [sym_compound_statement] = STATE(460), + [sym_attributed_statement] = STATE(460), + [sym_labeled_statement] = STATE(460), + [sym_expression_statement] = STATE(460), + [sym_if_statement] = STATE(460), + [sym_switch_statement] = STATE(460), + [sym_case_statement] = STATE(460), + [sym_while_statement] = STATE(460), + [sym_do_statement] = STATE(460), + [sym_for_statement] = STATE(460), + [sym_return_statement] = STATE(460), + [sym_break_statement] = STATE(460), + [sym_continue_statement] = STATE(460), + [sym_goto_statement] = STATE(460), + [sym_seh_try_statement] = STATE(460), + [sym_seh_leave_statement] = STATE(460), + [sym_expression] = STATE(5277), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9725), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(460), + [sym_co_return_statement] = STATE(460), + [sym_co_yield_statement] = STATE(460), + [sym_throw_statement] = STATE(460), + [sym_try_statement] = STATE(460), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(243), + [sym_identifier] = ACTIONS(2743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_SEMI] = ACTIONS(413), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym_LBRACE] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_if] = ACTIONS(425), [anon_sym_switch] = ACTIONS(427), [anon_sym_case] = ACTIONS(429), @@ -96915,7 +87091,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_try] = ACTIONS(453), [anon_sym_delete] = ACTIONS(139), [anon_sym_throw] = ACTIONS(455), @@ -96934,89 +87110,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [231] = { - [sym_attribute_declaration] = STATE(229), - [sym_compound_statement] = STATE(463), - [sym_attributed_statement] = STATE(463), - [sym_labeled_statement] = STATE(463), - [sym_expression_statement] = STATE(463), - [sym_if_statement] = STATE(463), - [sym_switch_statement] = STATE(463), - [sym_case_statement] = STATE(463), - [sym_while_statement] = STATE(463), - [sym_do_statement] = STATE(463), - [sym_for_statement] = STATE(463), - [sym_return_statement] = STATE(463), - [sym_break_statement] = STATE(463), - [sym_continue_statement] = STATE(463), - [sym_goto_statement] = STATE(463), - [sym_seh_try_statement] = STATE(463), - [sym_seh_leave_statement] = STATE(463), - [sym_expression] = STATE(5788), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9707), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(463), - [sym_co_return_statement] = STATE(463), - [sym_co_yield_statement] = STATE(463), - [sym_throw_statement] = STATE(463), - [sym_try_statement] = STATE(463), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(2792), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [sym_attribute_declaration] = STATE(243), + [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_seh_try_statement] = STATE(457), + [sym_seh_leave_statement] = STATE(457), + [sym_expression] = STATE(5277), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9725), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(243), + [sym_identifier] = ACTIONS(2743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_SEMI] = ACTIONS(413), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym_LBRACE] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_if] = ACTIONS(425), [anon_sym_switch] = ACTIONS(427), [anon_sym_case] = ACTIONS(429), @@ -97061,7 +87237,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_try] = ACTIONS(453), [anon_sym_delete] = ACTIONS(139), [anon_sym_throw] = ACTIONS(455), @@ -97080,89 +87256,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [232] = { - [sym_attribute_declaration] = STATE(229), - [sym_compound_statement] = STATE(466), - [sym_attributed_statement] = STATE(466), - [sym_labeled_statement] = STATE(466), - [sym_expression_statement] = STATE(466), - [sym_if_statement] = STATE(466), - [sym_switch_statement] = STATE(466), - [sym_case_statement] = STATE(466), - [sym_while_statement] = STATE(466), - [sym_do_statement] = STATE(466), - [sym_for_statement] = STATE(466), - [sym_return_statement] = STATE(466), - [sym_break_statement] = STATE(466), - [sym_continue_statement] = STATE(466), - [sym_goto_statement] = STATE(466), - [sym_seh_try_statement] = STATE(466), - [sym_seh_leave_statement] = STATE(466), - [sym_expression] = STATE(5788), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9707), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(466), - [sym_co_return_statement] = STATE(466), - [sym_co_yield_statement] = STATE(466), - [sym_throw_statement] = STATE(466), - [sym_try_statement] = STATE(466), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(2792), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [sym_attribute_declaration] = STATE(243), + [sym_compound_statement] = STATE(458), + [sym_attributed_statement] = STATE(458), + [sym_labeled_statement] = STATE(458), + [sym_expression_statement] = STATE(458), + [sym_if_statement] = STATE(458), + [sym_switch_statement] = STATE(458), + [sym_case_statement] = STATE(458), + [sym_while_statement] = STATE(458), + [sym_do_statement] = STATE(458), + [sym_for_statement] = STATE(458), + [sym_return_statement] = STATE(458), + [sym_break_statement] = STATE(458), + [sym_continue_statement] = STATE(458), + [sym_goto_statement] = STATE(458), + [sym_seh_try_statement] = STATE(458), + [sym_seh_leave_statement] = STATE(458), + [sym_expression] = STATE(5277), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9725), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(458), + [sym_co_return_statement] = STATE(458), + [sym_co_yield_statement] = STATE(458), + [sym_throw_statement] = STATE(458), + [sym_try_statement] = STATE(458), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(243), + [sym_identifier] = ACTIONS(2743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_SEMI] = ACTIONS(413), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym_LBRACE] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_if] = ACTIONS(425), [anon_sym_switch] = ACTIONS(427), [anon_sym_case] = ACTIONS(429), @@ -97207,7 +87383,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_try] = ACTIONS(453), [anon_sym_delete] = ACTIONS(139), [anon_sym_throw] = ACTIONS(455), @@ -97226,102 +87402,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [233] = { - [sym_attribute_declaration] = STATE(239), - [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_seh_try_statement] = STATE(667), - [sym_seh_leave_statement] = STATE(667), - [sym_expression] = STATE(5777), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9682), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(2650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [sym_attribute_declaration] = STATE(211), + [sym_compound_statement] = STATE(323), + [sym_attributed_statement] = STATE(323), + [sym_labeled_statement] = STATE(323), + [sym_expression_statement] = STATE(323), + [sym_if_statement] = STATE(323), + [sym_switch_statement] = STATE(323), + [sym_case_statement] = STATE(323), + [sym_while_statement] = STATE(323), + [sym_do_statement] = STATE(323), + [sym_for_statement] = STATE(323), + [sym_return_statement] = STATE(323), + [sym_break_statement] = STATE(323), + [sym_continue_statement] = STATE(323), + [sym_goto_statement] = STATE(323), + [sym_seh_try_statement] = STATE(323), + [sym_seh_leave_statement] = STATE(323), + [sym_expression] = STATE(5188), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9691), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(323), + [sym_co_return_statement] = STATE(323), + [sym_co_yield_statement] = STATE(323), + [sym_throw_statement] = STATE(323), + [sym_try_statement] = STATE(323), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(211), + [sym_identifier] = ACTIONS(2409), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(301), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(77), - [anon_sym_switch] = ACTIONS(79), - [anon_sym_case] = ACTIONS(81), - [anon_sym_default] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_do] = ACTIONS(87), - [anon_sym_for] = ACTIONS(89), - [anon_sym_return] = ACTIONS(91), - [anon_sym_break] = ACTIONS(93), - [anon_sym_continue] = ACTIONS(95), - [anon_sym_goto] = ACTIONS(97), - [anon_sym___try] = ACTIONS(1875), - [anon_sym___leave] = ACTIONS(1877), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(313), + [anon_sym_switch] = ACTIONS(315), + [anon_sym_case] = ACTIONS(317), + [anon_sym_default] = ACTIONS(319), + [anon_sym_while] = ACTIONS(321), + [anon_sym_do] = ACTIONS(323), + [anon_sym_for] = ACTIONS(325), + [anon_sym_return] = ACTIONS(327), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(331), + [anon_sym_goto] = ACTIONS(333), + [anon_sym___try] = ACTIONS(335), + [anon_sym___leave] = ACTIONS(337), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -97353,12 +87529,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(137), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(341), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(141), - [anon_sym_co_return] = ACTIONS(151), - [anon_sym_co_yield] = ACTIONS(153), + [anon_sym_throw] = ACTIONS(343), + [anon_sym_co_return] = ACTIONS(353), + [anon_sym_co_yield] = ACTIONS(355), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -97372,102 +87548,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [234] = { - [sym_attribute_declaration] = STATE(239), - [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_seh_try_statement] = STATE(668), - [sym_seh_leave_statement] = STATE(668), - [sym_expression] = STATE(5777), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9682), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(2650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [sym_attribute_declaration] = STATE(252), + [sym_compound_statement] = STATE(501), + [sym_attributed_statement] = STATE(501), + [sym_labeled_statement] = STATE(501), + [sym_expression_statement] = STATE(501), + [sym_if_statement] = STATE(501), + [sym_switch_statement] = STATE(501), + [sym_case_statement] = STATE(501), + [sym_while_statement] = STATE(501), + [sym_do_statement] = STATE(501), + [sym_for_statement] = STATE(501), + [sym_return_statement] = STATE(501), + [sym_break_statement] = STATE(501), + [sym_continue_statement] = STATE(501), + [sym_goto_statement] = STATE(501), + [sym_seh_try_statement] = STATE(501), + [sym_seh_leave_statement] = STATE(501), + [sym_expression] = STATE(5320), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9351), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(501), + [sym_co_return_statement] = STATE(501), + [sym_co_yield_statement] = STATE(501), + [sym_throw_statement] = STATE(501), + [sym_try_statement] = STATE(501), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(252), + [sym_identifier] = ACTIONS(2805), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1118), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(77), - [anon_sym_switch] = ACTIONS(79), - [anon_sym_case] = ACTIONS(81), - [anon_sym_default] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_do] = ACTIONS(87), - [anon_sym_for] = ACTIONS(89), - [anon_sym_return] = ACTIONS(91), - [anon_sym_break] = ACTIONS(93), - [anon_sym_continue] = ACTIONS(95), - [anon_sym_goto] = ACTIONS(97), - [anon_sym___try] = ACTIONS(1875), - [anon_sym___leave] = ACTIONS(1877), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_switch] = ACTIONS(1132), + [anon_sym_case] = ACTIONS(1134), + [anon_sym_default] = ACTIONS(1136), + [anon_sym_while] = ACTIONS(1138), + [anon_sym_do] = ACTIONS(1140), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(1144), + [anon_sym_break] = ACTIONS(1146), + [anon_sym_continue] = ACTIONS(1148), + [anon_sym_goto] = ACTIONS(1150), + [anon_sym___try] = ACTIONS(1152), + [anon_sym___leave] = ACTIONS(1154), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -97499,12 +87675,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(137), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(1158), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(141), - [anon_sym_co_return] = ACTIONS(151), - [anon_sym_co_yield] = ACTIONS(153), + [anon_sym_throw] = ACTIONS(1160), + [anon_sym_co_return] = ACTIONS(1170), + [anon_sym_co_yield] = ACTIONS(1172), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -97518,248 +87694,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [235] = { - [sym_attribute_declaration] = STATE(235), - [sym_compound_statement] = STATE(496), - [sym_attributed_statement] = STATE(496), - [sym_labeled_statement] = STATE(496), - [sym_expression_statement] = STATE(496), - [sym_if_statement] = STATE(496), - [sym_switch_statement] = STATE(496), - [sym_case_statement] = STATE(496), - [sym_while_statement] = STATE(496), - [sym_do_statement] = STATE(496), - [sym_for_statement] = STATE(496), - [sym_return_statement] = STATE(496), - [sym_break_statement] = STATE(496), - [sym_continue_statement] = STATE(496), - [sym_goto_statement] = STATE(496), - [sym_seh_try_statement] = STATE(496), - [sym_seh_leave_statement] = STATE(496), - [sym_expression] = STATE(5788), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9707), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(496), - [sym_co_return_statement] = STATE(496), - [sym_co_yield_statement] = STATE(496), - [sym_throw_statement] = STATE(496), - [sym_try_statement] = STATE(496), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(235), - [sym_identifier] = ACTIONS(2794), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2444), - [anon_sym_LPAREN2] = ACTIONS(2447), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_TILDE] = ACTIONS(2450), - [anon_sym_DASH] = ACTIONS(2453), - [anon_sym_PLUS] = ACTIONS(2453), - [anon_sym_STAR] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2456), - [anon_sym_SEMI] = ACTIONS(2797), - [anon_sym_COLON_COLON] = ACTIONS(2462), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2465), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_LBRACK] = ACTIONS(2471), - [sym_primitive_type] = ACTIONS(2474), - [anon_sym_if] = ACTIONS(2803), - [anon_sym_switch] = ACTIONS(2806), - [anon_sym_case] = ACTIONS(2809), - [anon_sym_default] = ACTIONS(2812), - [anon_sym_while] = ACTIONS(2815), - [anon_sym_do] = ACTIONS(2818), - [anon_sym_for] = ACTIONS(2821), - [anon_sym_return] = ACTIONS(2824), - [anon_sym_break] = ACTIONS(2827), - [anon_sym_continue] = ACTIONS(2830), - [anon_sym_goto] = ACTIONS(2833), - [anon_sym___try] = ACTIONS(2836), - [anon_sym___leave] = ACTIONS(2839), - [anon_sym_not] = ACTIONS(2453), - [anon_sym_compl] = ACTIONS(2453), - [anon_sym_DASH_DASH] = ACTIONS(2516), - [anon_sym_PLUS_PLUS] = ACTIONS(2516), - [anon_sym_sizeof] = ACTIONS(2519), - [anon_sym___alignof__] = ACTIONS(2522), - [anon_sym___alignof] = ACTIONS(2522), - [anon_sym__alignof] = ACTIONS(2522), - [anon_sym_alignof] = ACTIONS(2522), - [anon_sym__Alignof] = ACTIONS(2522), - [anon_sym_offsetof] = ACTIONS(2525), - [anon_sym__Generic] = ACTIONS(2528), - [anon_sym_asm] = ACTIONS(2531), - [anon_sym___asm__] = ACTIONS(2531), - [sym_number_literal] = ACTIONS(2534), - [anon_sym_L_SQUOTE] = ACTIONS(2537), - [anon_sym_u_SQUOTE] = ACTIONS(2537), - [anon_sym_U_SQUOTE] = ACTIONS(2537), - [anon_sym_u8_SQUOTE] = ACTIONS(2537), - [anon_sym_SQUOTE] = ACTIONS(2537), - [anon_sym_L_DQUOTE] = ACTIONS(2540), - [anon_sym_u_DQUOTE] = ACTIONS(2540), - [anon_sym_U_DQUOTE] = ACTIONS(2540), - [anon_sym_u8_DQUOTE] = ACTIONS(2540), - [anon_sym_DQUOTE] = ACTIONS(2540), - [sym_true] = ACTIONS(2543), - [sym_false] = ACTIONS(2543), - [anon_sym_NULL] = ACTIONS(2546), - [anon_sym_nullptr] = ACTIONS(2546), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2549), - [anon_sym_template] = ACTIONS(2552), - [anon_sym_try] = ACTIONS(2842), - [anon_sym_delete] = ACTIONS(2558), - [anon_sym_throw] = ACTIONS(2845), - [anon_sym_co_return] = ACTIONS(2848), - [anon_sym_co_yield] = ACTIONS(2851), - [anon_sym_R_DQUOTE] = ACTIONS(2570), - [anon_sym_LR_DQUOTE] = ACTIONS(2570), - [anon_sym_uR_DQUOTE] = ACTIONS(2570), - [anon_sym_UR_DQUOTE] = ACTIONS(2570), - [anon_sym_u8R_DQUOTE] = ACTIONS(2570), - [anon_sym_co_await] = ACTIONS(2573), - [anon_sym_new] = ACTIONS(2576), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2543), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2582), - [sym_semgrep_named_ellipsis] = ACTIONS(2585), - }, - [236] = { - [sym_attribute_declaration] = STATE(190), - [sym_compound_statement] = STATE(679), - [sym_attributed_statement] = STATE(679), - [sym_labeled_statement] = STATE(679), - [sym_expression_statement] = STATE(679), - [sym_if_statement] = STATE(679), - [sym_switch_statement] = STATE(679), - [sym_case_statement] = STATE(679), - [sym_while_statement] = STATE(679), - [sym_do_statement] = STATE(679), - [sym_for_statement] = STATE(679), - [sym_return_statement] = STATE(679), - [sym_break_statement] = STATE(679), - [sym_continue_statement] = STATE(679), - [sym_goto_statement] = STATE(679), - [sym_seh_try_statement] = STATE(679), - [sym_seh_leave_statement] = STATE(679), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(679), - [sym_co_return_statement] = STATE(679), - [sym_co_yield_statement] = STATE(679), - [sym_throw_statement] = STATE(679), - [sym_try_statement] = STATE(679), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [sym_identifier] = ACTIONS(2375), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [sym_attribute_declaration] = STATE(252), + [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_seh_try_statement] = STATE(650), + [sym_seh_leave_statement] = STATE(650), + [sym_expression] = STATE(5320), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9351), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(252), + [sym_identifier] = ACTIONS(2805), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1118), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_switch] = ACTIONS(1132), + [anon_sym_case] = ACTIONS(1134), + [anon_sym_default] = ACTIONS(1136), + [anon_sym_while] = ACTIONS(1138), + [anon_sym_do] = ACTIONS(1140), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(1144), + [anon_sym_break] = ACTIONS(1146), + [anon_sym_continue] = ACTIONS(1148), + [anon_sym_goto] = ACTIONS(1150), + [anon_sym___try] = ACTIONS(1152), + [anon_sym___leave] = ACTIONS(1154), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -97791,12 +87821,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(233), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(1158), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_co_return] = ACTIONS(245), - [anon_sym_co_yield] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1160), + [anon_sym_co_return] = ACTIONS(1170), + [anon_sym_co_yield] = ACTIONS(1172), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -97809,103 +87839,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [237] = { - [sym_attribute_declaration] = STATE(195), - [sym_compound_statement] = STATE(1001), - [sym_attributed_statement] = STATE(1001), - [sym_labeled_statement] = STATE(1001), - [sym_expression_statement] = STATE(1001), - [sym_if_statement] = STATE(1001), - [sym_switch_statement] = STATE(1001), - [sym_case_statement] = STATE(1001), - [sym_while_statement] = STATE(1001), - [sym_do_statement] = STATE(1001), - [sym_for_statement] = STATE(1001), - [sym_return_statement] = STATE(1001), - [sym_break_statement] = STATE(1001), - [sym_continue_statement] = STATE(1001), - [sym_goto_statement] = STATE(1001), - [sym_seh_try_statement] = STATE(1001), - [sym_seh_leave_statement] = STATE(1001), - [sym_expression] = STATE(5875), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10185), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(1001), - [sym_co_return_statement] = STATE(1001), - [sym_co_yield_statement] = STATE(1001), - [sym_throw_statement] = STATE(1001), - [sym_try_statement] = STATE(1001), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(195), - [sym_identifier] = ACTIONS(2588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [236] = { + [sym_attribute_declaration] = STATE(252), + [sym_compound_statement] = STATE(655), + [sym_attributed_statement] = STATE(655), + [sym_labeled_statement] = STATE(655), + [sym_expression_statement] = STATE(655), + [sym_if_statement] = STATE(655), + [sym_switch_statement] = STATE(655), + [sym_case_statement] = STATE(655), + [sym_while_statement] = STATE(655), + [sym_do_statement] = STATE(655), + [sym_for_statement] = STATE(655), + [sym_return_statement] = STATE(655), + [sym_break_statement] = STATE(655), + [sym_continue_statement] = STATE(655), + [sym_goto_statement] = STATE(655), + [sym_seh_try_statement] = STATE(655), + [sym_seh_leave_statement] = STATE(655), + [sym_expression] = STATE(5320), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9351), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(655), + [sym_co_return_statement] = STATE(655), + [sym_co_yield_statement] = STATE(655), + [sym_throw_statement] = STATE(655), + [sym_try_statement] = STATE(655), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(252), + [sym_identifier] = ACTIONS(2805), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1118), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(2009), - [anon_sym_switch] = ACTIONS(2011), - [anon_sym_case] = ACTIONS(2431), - [anon_sym_default] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_do] = ACTIONS(2015), - [anon_sym_for] = ACTIONS(2017), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2021), - [anon_sym_continue] = ACTIONS(2023), - [anon_sym_goto] = ACTIONS(2025), - [anon_sym___try] = ACTIONS(2027), - [anon_sym___leave] = ACTIONS(2029), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_switch] = ACTIONS(1132), + [anon_sym_case] = ACTIONS(1134), + [anon_sym_default] = ACTIONS(1136), + [anon_sym_while] = ACTIONS(1138), + [anon_sym_do] = ACTIONS(1140), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(1144), + [anon_sym_break] = ACTIONS(1146), + [anon_sym_continue] = ACTIONS(1148), + [anon_sym_goto] = ACTIONS(1150), + [anon_sym___try] = ACTIONS(1152), + [anon_sym___leave] = ACTIONS(1154), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -97937,12 +87967,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(2031), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(1158), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(2033), - [anon_sym_co_return] = ACTIONS(2035), - [anon_sym_co_yield] = ACTIONS(2037), + [anon_sym_throw] = ACTIONS(1160), + [anon_sym_co_return] = ACTIONS(1170), + [anon_sym_co_yield] = ACTIONS(1172), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -97955,103 +87985,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [238] = { - [sym_attribute_declaration] = STATE(190), - [sym_compound_statement] = STATE(628), - [sym_attributed_statement] = STATE(628), - [sym_labeled_statement] = STATE(628), - [sym_expression_statement] = STATE(628), - [sym_if_statement] = STATE(628), - [sym_switch_statement] = STATE(628), - [sym_case_statement] = STATE(628), - [sym_while_statement] = STATE(628), - [sym_do_statement] = STATE(628), - [sym_for_statement] = STATE(628), - [sym_return_statement] = STATE(628), - [sym_break_statement] = STATE(628), - [sym_continue_statement] = STATE(628), - [sym_goto_statement] = STATE(628), - [sym_seh_try_statement] = STATE(628), - [sym_seh_leave_statement] = STATE(628), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(628), - [sym_co_return_statement] = STATE(628), - [sym_co_yield_statement] = STATE(628), - [sym_throw_statement] = STATE(628), - [sym_try_statement] = STATE(628), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [sym_identifier] = ACTIONS(2375), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [237] = { + [sym_attribute_declaration] = STATE(199), + [sym_compound_statement] = STATE(646), + [sym_attributed_statement] = STATE(646), + [sym_labeled_statement] = STATE(646), + [sym_expression_statement] = STATE(646), + [sym_if_statement] = STATE(646), + [sym_switch_statement] = STATE(646), + [sym_case_statement] = STATE(646), + [sym_while_statement] = STATE(646), + [sym_do_statement] = STATE(646), + [sym_for_statement] = STATE(646), + [sym_return_statement] = STATE(646), + [sym_break_statement] = STATE(646), + [sym_continue_statement] = STATE(646), + [sym_goto_statement] = STATE(646), + [sym_seh_try_statement] = STATE(646), + [sym_seh_leave_statement] = STATE(646), + [sym_expression] = STATE(5204), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9572), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(646), + [sym_co_return_statement] = STATE(646), + [sym_co_yield_statement] = STATE(646), + [sym_throw_statement] = STATE(646), + [sym_try_statement] = STATE(646), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(2572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1927), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(77), + [anon_sym_switch] = ACTIONS(79), + [anon_sym_case] = ACTIONS(81), + [anon_sym_default] = ACTIONS(83), + [anon_sym_while] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_return] = ACTIONS(91), + [anon_sym_break] = ACTIONS(93), + [anon_sym_continue] = ACTIONS(95), + [anon_sym_goto] = ACTIONS(97), + [anon_sym___try] = ACTIONS(1929), + [anon_sym___leave] = ACTIONS(1931), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -98083,153 +88113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_co_return] = ACTIONS(245), - [anon_sym_co_yield] = ACTIONS(247), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), - }, - [239] = { - [sym_attribute_declaration] = STATE(253), - [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_seh_try_statement] = STATE(659), - [sym_seh_leave_statement] = STATE(659), - [sym_expression] = STATE(5777), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9682), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(2650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(77), - [anon_sym_switch] = ACTIONS(79), - [anon_sym_case] = ACTIONS(81), - [anon_sym_default] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_do] = ACTIONS(87), - [anon_sym_for] = ACTIONS(89), - [anon_sym_return] = ACTIONS(91), - [anon_sym_break] = ACTIONS(93), - [anon_sym_continue] = ACTIONS(95), - [anon_sym_goto] = ACTIONS(97), - [anon_sym___try] = ACTIONS(1875), - [anon_sym___leave] = ACTIONS(1877), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_try] = ACTIONS(137), [anon_sym_delete] = ACTIONS(139), [anon_sym_throw] = ACTIONS(141), @@ -98247,395 +88131,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [240] = { - [sym_attribute_declaration] = STATE(229), - [sym_compound_statement] = STATE(422), - [sym_attributed_statement] = STATE(422), - [sym_labeled_statement] = STATE(422), - [sym_expression_statement] = STATE(422), - [sym_if_statement] = STATE(422), - [sym_switch_statement] = STATE(422), - [sym_case_statement] = STATE(422), - [sym_while_statement] = STATE(422), - [sym_do_statement] = STATE(422), - [sym_for_statement] = STATE(422), - [sym_return_statement] = STATE(422), - [sym_break_statement] = STATE(422), - [sym_continue_statement] = STATE(422), - [sym_goto_statement] = STATE(422), - [sym_seh_try_statement] = STATE(422), - [sym_seh_leave_statement] = STATE(422), - [sym_expression] = STATE(5788), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9707), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(422), - [sym_co_return_statement] = STATE(422), - [sym_co_yield_statement] = STATE(422), - [sym_throw_statement] = STATE(422), - [sym_try_statement] = STATE(422), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(2792), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(413), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_case] = ACTIONS(429), - [anon_sym_default] = ACTIONS(431), - [anon_sym_while] = ACTIONS(433), - [anon_sym_do] = ACTIONS(435), - [anon_sym_for] = ACTIONS(437), - [anon_sym_return] = ACTIONS(439), - [anon_sym_break] = ACTIONS(441), - [anon_sym_continue] = ACTIONS(443), - [anon_sym_goto] = ACTIONS(445), - [anon_sym___try] = ACTIONS(447), - [anon_sym___leave] = ACTIONS(449), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(453), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(455), - [anon_sym_co_return] = ACTIONS(465), - [anon_sym_co_yield] = ACTIONS(467), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), - }, - [241] = { - [sym_expression] = STATE(3751), - [sym_expression_not_binary] = STATE(4050), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_initializer_list] = STATE(4118), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9276), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [sym_identifier] = ACTIONS(2854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2281), - [anon_sym_COMMA] = ACTIONS(2281), - [anon_sym_RPAREN] = ACTIONS(2281), - [anon_sym_LPAREN2] = ACTIONS(2281), - [anon_sym_BANG] = ACTIONS(2207), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2279), - [anon_sym_STAR] = ACTIONS(2279), - [anon_sym_SLASH] = ACTIONS(2279), - [anon_sym_PERCENT] = ACTIONS(2279), - [anon_sym_PIPE_PIPE] = ACTIONS(2281), - [anon_sym_AMP_AMP] = ACTIONS(2281), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_CARET] = ACTIONS(2279), - [anon_sym_AMP] = ACTIONS(2279), - [anon_sym_EQ_EQ] = ACTIONS(2281), - [anon_sym_BANG_EQ] = ACTIONS(2281), - [anon_sym_GT] = ACTIONS(2279), - [anon_sym_GT_EQ] = ACTIONS(2281), - [anon_sym_LT_EQ] = ACTIONS(2279), - [anon_sym_LT] = ACTIONS(2279), - [anon_sym_LT_LT] = ACTIONS(2279), - [anon_sym_GT_GT] = ACTIONS(2279), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(2856), - [anon_sym_LBRACK] = ACTIONS(2281), - [anon_sym_EQ] = ACTIONS(2279), - [sym_primitive_type] = ACTIONS(2858), - [anon_sym_QMARK] = ACTIONS(2281), - [anon_sym_STAR_EQ] = ACTIONS(2281), - [anon_sym_SLASH_EQ] = ACTIONS(2281), - [anon_sym_PERCENT_EQ] = ACTIONS(2281), - [anon_sym_PLUS_EQ] = ACTIONS(2281), - [anon_sym_DASH_EQ] = ACTIONS(2281), - [anon_sym_LT_LT_EQ] = ACTIONS(2281), - [anon_sym_GT_GT_EQ] = ACTIONS(2281), - [anon_sym_AMP_EQ] = ACTIONS(2281), - [anon_sym_CARET_EQ] = ACTIONS(2281), - [anon_sym_PIPE_EQ] = ACTIONS(2281), - [anon_sym_and_eq] = ACTIONS(2279), - [anon_sym_or_eq] = ACTIONS(2279), - [anon_sym_xor_eq] = ACTIONS(2279), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_compl] = ACTIONS(2207), - [anon_sym_LT_EQ_GT] = ACTIONS(2281), - [anon_sym_or] = ACTIONS(2279), - [anon_sym_and] = ACTIONS(2279), - [anon_sym_bitor] = ACTIONS(2279), - [anon_sym_xor] = ACTIONS(2279), - [anon_sym_bitand] = ACTIONS(2279), - [anon_sym_not_eq] = ACTIONS(2279), - [anon_sym_DASH_DASH] = ACTIONS(2281), - [anon_sym_PLUS_PLUS] = ACTIONS(2281), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [anon_sym_DOT] = ACTIONS(2279), - [anon_sym_DOT_STAR] = ACTIONS(2281), - [anon_sym_DASH_GT] = ACTIONS(2279), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [anon_sym_DASH_GT_STAR] = ACTIONS(2281), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [238] = { + [sym_attribute_declaration] = STATE(238), + [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_seh_try_statement] = STATE(582), + [sym_seh_leave_statement] = STATE(582), + [sym_expression] = STATE(5320), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9351), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(238), + [sym_identifier] = ACTIONS(2807), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2428), + [anon_sym_LPAREN2] = ACTIONS(2431), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_COLON_COLON] = ACTIONS(2446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2449), + [anon_sym_LBRACE] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(2455), + [sym_primitive_type] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2816), + [anon_sym_switch] = ACTIONS(2819), + [anon_sym_case] = ACTIONS(2822), + [anon_sym_default] = ACTIONS(2825), + [anon_sym_while] = ACTIONS(2828), + [anon_sym_do] = ACTIONS(2831), + [anon_sym_for] = ACTIONS(2834), + [anon_sym_return] = ACTIONS(2837), + [anon_sym_break] = ACTIONS(2840), + [anon_sym_continue] = ACTIONS(2843), + [anon_sym_goto] = ACTIONS(2846), + [anon_sym___try] = ACTIONS(2849), + [anon_sym___leave] = ACTIONS(2852), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_compl] = ACTIONS(2437), + [anon_sym_DASH_DASH] = ACTIONS(2500), + [anon_sym_PLUS_PLUS] = ACTIONS(2500), + [anon_sym_sizeof] = ACTIONS(2503), + [anon_sym___alignof__] = ACTIONS(2506), + [anon_sym___alignof] = ACTIONS(2506), + [anon_sym__alignof] = ACTIONS(2506), + [anon_sym_alignof] = ACTIONS(2506), + [anon_sym__Alignof] = ACTIONS(2506), + [anon_sym_offsetof] = ACTIONS(2509), + [anon_sym__Generic] = ACTIONS(2512), + [anon_sym_asm] = ACTIONS(2515), + [anon_sym___asm__] = ACTIONS(2515), + [sym_number_literal] = ACTIONS(2518), + [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(2524), + [anon_sym_u_DQUOTE] = ACTIONS(2524), + [anon_sym_U_DQUOTE] = ACTIONS(2524), + [anon_sym_u8_DQUOTE] = ACTIONS(2524), + [anon_sym_DQUOTE] = ACTIONS(2524), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [anon_sym_NULL] = ACTIONS(2530), + [anon_sym_nullptr] = ACTIONS(2530), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2533), + [anon_sym_template] = ACTIONS(2536), + [anon_sym_try] = ACTIONS(2855), + [anon_sym_delete] = ACTIONS(2542), + [anon_sym_throw] = ACTIONS(2858), + [anon_sym_co_return] = ACTIONS(2861), + [anon_sym_co_yield] = ACTIONS(2864), + [anon_sym_R_DQUOTE] = ACTIONS(2554), + [anon_sym_LR_DQUOTE] = ACTIONS(2554), + [anon_sym_uR_DQUOTE] = ACTIONS(2554), + [anon_sym_UR_DQUOTE] = ACTIONS(2554), + [anon_sym_u8R_DQUOTE] = ACTIONS(2554), + [anon_sym_co_await] = ACTIONS(2557), + [anon_sym_new] = ACTIONS(2560), + [anon_sym_requires] = ACTIONS(2563), + [sym_this] = ACTIONS(2527), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2566), + [sym_semgrep_named_ellipsis] = ACTIONS(2569), }, - [242] = { - [sym_attribute_declaration] = STATE(229), - [sym_compound_statement] = STATE(489), - [sym_attributed_statement] = STATE(489), - [sym_labeled_statement] = STATE(489), - [sym_expression_statement] = STATE(489), - [sym_if_statement] = STATE(489), - [sym_switch_statement] = STATE(489), - [sym_case_statement] = STATE(489), - [sym_while_statement] = STATE(489), - [sym_do_statement] = STATE(489), - [sym_for_statement] = STATE(489), - [sym_return_statement] = STATE(489), - [sym_break_statement] = STATE(489), - [sym_continue_statement] = STATE(489), - [sym_goto_statement] = STATE(489), - [sym_seh_try_statement] = STATE(489), - [sym_seh_leave_statement] = STATE(489), - [sym_expression] = STATE(5788), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9707), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(489), - [sym_co_return_statement] = STATE(489), - [sym_co_yield_statement] = STATE(489), - [sym_throw_statement] = STATE(489), - [sym_try_statement] = STATE(489), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(2792), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [239] = { + [sym_attribute_declaration] = STATE(252), + [sym_compound_statement] = STATE(511), + [sym_attributed_statement] = STATE(511), + [sym_labeled_statement] = STATE(511), + [sym_expression_statement] = STATE(511), + [sym_if_statement] = STATE(511), + [sym_switch_statement] = STATE(511), + [sym_case_statement] = STATE(511), + [sym_while_statement] = STATE(511), + [sym_do_statement] = STATE(511), + [sym_for_statement] = STATE(511), + [sym_return_statement] = STATE(511), + [sym_break_statement] = STATE(511), + [sym_continue_statement] = STATE(511), + [sym_goto_statement] = STATE(511), + [sym_seh_try_statement] = STATE(511), + [sym_seh_leave_statement] = STATE(511), + [sym_expression] = STATE(5320), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9351), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(511), + [sym_co_return_statement] = STATE(511), + [sym_co_yield_statement] = STATE(511), + [sym_throw_statement] = STATE(511), + [sym_try_statement] = STATE(511), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(252), + [sym_identifier] = ACTIONS(2805), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1118), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_case] = ACTIONS(429), - [anon_sym_default] = ACTIONS(431), - [anon_sym_while] = ACTIONS(433), - [anon_sym_do] = ACTIONS(435), - [anon_sym_for] = ACTIONS(437), - [anon_sym_return] = ACTIONS(439), - [anon_sym_break] = ACTIONS(441), - [anon_sym_continue] = ACTIONS(443), - [anon_sym_goto] = ACTIONS(445), - [anon_sym___try] = ACTIONS(447), - [anon_sym___leave] = ACTIONS(449), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_switch] = ACTIONS(1132), + [anon_sym_case] = ACTIONS(1134), + [anon_sym_default] = ACTIONS(1136), + [anon_sym_while] = ACTIONS(1138), + [anon_sym_do] = ACTIONS(1140), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(1144), + [anon_sym_break] = ACTIONS(1146), + [anon_sym_continue] = ACTIONS(1148), + [anon_sym_goto] = ACTIONS(1150), + [anon_sym___try] = ACTIONS(1152), + [anon_sym___leave] = ACTIONS(1154), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -98667,12 +88405,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(453), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(1158), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(455), - [anon_sym_co_return] = ACTIONS(465), - [anon_sym_co_yield] = ACTIONS(467), + [anon_sym_throw] = ACTIONS(1160), + [anon_sym_co_return] = ACTIONS(1170), + [anon_sym_co_yield] = ACTIONS(1172), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -98685,103 +88423,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [243] = { - [sym_attribute_declaration] = STATE(195), - [sym_compound_statement] = STATE(1013), - [sym_attributed_statement] = STATE(1013), - [sym_labeled_statement] = STATE(1013), - [sym_expression_statement] = STATE(1013), - [sym_if_statement] = STATE(1013), - [sym_switch_statement] = STATE(1013), - [sym_case_statement] = STATE(1013), - [sym_while_statement] = STATE(1013), - [sym_do_statement] = STATE(1013), - [sym_for_statement] = STATE(1013), - [sym_return_statement] = STATE(1013), - [sym_break_statement] = STATE(1013), - [sym_continue_statement] = STATE(1013), - [sym_goto_statement] = STATE(1013), - [sym_seh_try_statement] = STATE(1013), - [sym_seh_leave_statement] = STATE(1013), - [sym_expression] = STATE(5875), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10185), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(1013), - [sym_co_return_statement] = STATE(1013), - [sym_co_yield_statement] = STATE(1013), - [sym_throw_statement] = STATE(1013), - [sym_try_statement] = STATE(1013), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(195), - [sym_identifier] = ACTIONS(2588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [240] = { + [sym_attribute_declaration] = STATE(252), + [sym_compound_statement] = STATE(665), + [sym_attributed_statement] = STATE(665), + [sym_labeled_statement] = STATE(665), + [sym_expression_statement] = STATE(665), + [sym_if_statement] = STATE(665), + [sym_switch_statement] = STATE(665), + [sym_case_statement] = STATE(665), + [sym_while_statement] = STATE(665), + [sym_do_statement] = STATE(665), + [sym_for_statement] = STATE(665), + [sym_return_statement] = STATE(665), + [sym_break_statement] = STATE(665), + [sym_continue_statement] = STATE(665), + [sym_goto_statement] = STATE(665), + [sym_seh_try_statement] = STATE(665), + [sym_seh_leave_statement] = STATE(665), + [sym_expression] = STATE(5320), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9351), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(665), + [sym_co_return_statement] = STATE(665), + [sym_co_yield_statement] = STATE(665), + [sym_throw_statement] = STATE(665), + [sym_try_statement] = STATE(665), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(252), + [sym_identifier] = ACTIONS(2805), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1118), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(2009), - [anon_sym_switch] = ACTIONS(2011), - [anon_sym_case] = ACTIONS(2431), - [anon_sym_default] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_do] = ACTIONS(2015), - [anon_sym_for] = ACTIONS(2017), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2021), - [anon_sym_continue] = ACTIONS(2023), - [anon_sym_goto] = ACTIONS(2025), - [anon_sym___try] = ACTIONS(2027), - [anon_sym___leave] = ACTIONS(2029), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_switch] = ACTIONS(1132), + [anon_sym_case] = ACTIONS(1134), + [anon_sym_default] = ACTIONS(1136), + [anon_sym_while] = ACTIONS(1138), + [anon_sym_do] = ACTIONS(1140), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(1144), + [anon_sym_break] = ACTIONS(1146), + [anon_sym_continue] = ACTIONS(1148), + [anon_sym_goto] = ACTIONS(1150), + [anon_sym___try] = ACTIONS(1152), + [anon_sym___leave] = ACTIONS(1154), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -98813,12 +88551,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(2031), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(1158), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(2033), - [anon_sym_co_return] = ACTIONS(2035), - [anon_sym_co_yield] = ACTIONS(2037), + [anon_sym_throw] = ACTIONS(1160), + [anon_sym_co_return] = ACTIONS(1170), + [anon_sym_co_yield] = ACTIONS(1172), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -98831,103 +88569,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [244] = { - [sym_attribute_declaration] = STATE(195), - [sym_compound_statement] = STATE(980), - [sym_attributed_statement] = STATE(980), - [sym_labeled_statement] = STATE(980), - [sym_expression_statement] = STATE(980), - [sym_if_statement] = STATE(980), - [sym_switch_statement] = STATE(980), - [sym_case_statement] = STATE(980), - [sym_while_statement] = STATE(980), - [sym_do_statement] = STATE(980), - [sym_for_statement] = STATE(980), - [sym_return_statement] = STATE(980), - [sym_break_statement] = STATE(980), - [sym_continue_statement] = STATE(980), - [sym_goto_statement] = STATE(980), - [sym_seh_try_statement] = STATE(980), - [sym_seh_leave_statement] = STATE(980), - [sym_expression] = STATE(5875), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10185), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(980), - [sym_co_return_statement] = STATE(980), - [sym_co_yield_statement] = STATE(980), - [sym_throw_statement] = STATE(980), - [sym_try_statement] = STATE(980), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(195), - [sym_identifier] = ACTIONS(2588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [241] = { + [sym_attribute_declaration] = STATE(252), + [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_seh_try_statement] = STATE(667), + [sym_seh_leave_statement] = STATE(667), + [sym_expression] = STATE(5320), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9351), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(252), + [sym_identifier] = ACTIONS(2805), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1118), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(2009), - [anon_sym_switch] = ACTIONS(2011), - [anon_sym_case] = ACTIONS(2431), - [anon_sym_default] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_do] = ACTIONS(2015), - [anon_sym_for] = ACTIONS(2017), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2021), - [anon_sym_continue] = ACTIONS(2023), - [anon_sym_goto] = ACTIONS(2025), - [anon_sym___try] = ACTIONS(2027), - [anon_sym___leave] = ACTIONS(2029), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_switch] = ACTIONS(1132), + [anon_sym_case] = ACTIONS(1134), + [anon_sym_default] = ACTIONS(1136), + [anon_sym_while] = ACTIONS(1138), + [anon_sym_do] = ACTIONS(1140), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(1144), + [anon_sym_break] = ACTIONS(1146), + [anon_sym_continue] = ACTIONS(1148), + [anon_sym_goto] = ACTIONS(1150), + [anon_sym___try] = ACTIONS(1152), + [anon_sym___leave] = ACTIONS(1154), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -98959,12 +88697,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(2031), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(1158), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(2033), - [anon_sym_co_return] = ACTIONS(2035), - [anon_sym_co_yield] = ACTIONS(2037), + [anon_sym_throw] = ACTIONS(1160), + [anon_sym_co_return] = ACTIONS(1170), + [anon_sym_co_yield] = ACTIONS(1172), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -98977,103 +88715,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [245] = { - [sym_attribute_declaration] = STATE(195), - [sym_compound_statement] = STATE(995), - [sym_attributed_statement] = STATE(995), - [sym_labeled_statement] = STATE(995), - [sym_expression_statement] = STATE(995), - [sym_if_statement] = STATE(995), - [sym_switch_statement] = STATE(995), - [sym_case_statement] = STATE(995), - [sym_while_statement] = STATE(995), - [sym_do_statement] = STATE(995), - [sym_for_statement] = STATE(995), - [sym_return_statement] = STATE(995), - [sym_break_statement] = STATE(995), - [sym_continue_statement] = STATE(995), - [sym_goto_statement] = STATE(995), - [sym_seh_try_statement] = STATE(995), - [sym_seh_leave_statement] = STATE(995), - [sym_expression] = STATE(5875), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10185), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(995), - [sym_co_return_statement] = STATE(995), - [sym_co_yield_statement] = STATE(995), - [sym_throw_statement] = STATE(995), - [sym_try_statement] = STATE(995), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(195), - [sym_identifier] = ACTIONS(2588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [242] = { + [sym_attribute_declaration] = STATE(252), + [sym_compound_statement] = STATE(670), + [sym_attributed_statement] = STATE(670), + [sym_labeled_statement] = STATE(670), + [sym_expression_statement] = STATE(670), + [sym_if_statement] = STATE(670), + [sym_switch_statement] = STATE(670), + [sym_case_statement] = STATE(670), + [sym_while_statement] = STATE(670), + [sym_do_statement] = STATE(670), + [sym_for_statement] = STATE(670), + [sym_return_statement] = STATE(670), + [sym_break_statement] = STATE(670), + [sym_continue_statement] = STATE(670), + [sym_goto_statement] = STATE(670), + [sym_seh_try_statement] = STATE(670), + [sym_seh_leave_statement] = STATE(670), + [sym_expression] = STATE(5320), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9351), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(670), + [sym_co_return_statement] = STATE(670), + [sym_co_yield_statement] = STATE(670), + [sym_throw_statement] = STATE(670), + [sym_try_statement] = STATE(670), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(252), + [sym_identifier] = ACTIONS(2805), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1118), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(2009), - [anon_sym_switch] = ACTIONS(2011), - [anon_sym_case] = ACTIONS(2431), - [anon_sym_default] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_do] = ACTIONS(2015), - [anon_sym_for] = ACTIONS(2017), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2021), - [anon_sym_continue] = ACTIONS(2023), - [anon_sym_goto] = ACTIONS(2025), - [anon_sym___try] = ACTIONS(2027), - [anon_sym___leave] = ACTIONS(2029), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_switch] = ACTIONS(1132), + [anon_sym_case] = ACTIONS(1134), + [anon_sym_default] = ACTIONS(1136), + [anon_sym_while] = ACTIONS(1138), + [anon_sym_do] = ACTIONS(1140), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(1144), + [anon_sym_break] = ACTIONS(1146), + [anon_sym_continue] = ACTIONS(1148), + [anon_sym_goto] = ACTIONS(1150), + [anon_sym___try] = ACTIONS(1152), + [anon_sym___leave] = ACTIONS(1154), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -99105,12 +88843,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(2031), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(1158), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(2033), - [anon_sym_co_return] = ACTIONS(2035), - [anon_sym_co_yield] = ACTIONS(2037), + [anon_sym_throw] = ACTIONS(1160), + [anon_sym_co_return] = ACTIONS(1170), + [anon_sym_co_yield] = ACTIONS(1172), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -99123,90 +88861,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [246] = { - [sym_attribute_declaration] = STATE(229), - [sym_compound_statement] = STATE(492), - [sym_attributed_statement] = STATE(492), - [sym_labeled_statement] = STATE(492), - [sym_expression_statement] = STATE(492), - [sym_if_statement] = STATE(492), - [sym_switch_statement] = STATE(492), - [sym_case_statement] = STATE(492), - [sym_while_statement] = STATE(492), - [sym_do_statement] = STATE(492), - [sym_for_statement] = STATE(492), - [sym_return_statement] = STATE(492), - [sym_break_statement] = STATE(492), - [sym_continue_statement] = STATE(492), - [sym_goto_statement] = STATE(492), - [sym_seh_try_statement] = STATE(492), - [sym_seh_leave_statement] = STATE(492), - [sym_expression] = STATE(5788), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9707), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(492), - [sym_co_return_statement] = STATE(492), - [sym_co_yield_statement] = STATE(492), - [sym_throw_statement] = STATE(492), - [sym_try_statement] = STATE(492), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(2792), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [243] = { + [sym_attribute_declaration] = STATE(228), + [sym_compound_statement] = STATE(473), + [sym_attributed_statement] = STATE(473), + [sym_labeled_statement] = STATE(473), + [sym_expression_statement] = STATE(473), + [sym_if_statement] = STATE(473), + [sym_switch_statement] = STATE(473), + [sym_case_statement] = STATE(473), + [sym_while_statement] = STATE(473), + [sym_do_statement] = STATE(473), + [sym_for_statement] = STATE(473), + [sym_return_statement] = STATE(473), + [sym_break_statement] = STATE(473), + [sym_continue_statement] = STATE(473), + [sym_goto_statement] = STATE(473), + [sym_seh_try_statement] = STATE(473), + [sym_seh_leave_statement] = STATE(473), + [sym_expression] = STATE(5277), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9725), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(473), + [sym_co_return_statement] = STATE(473), + [sym_co_yield_statement] = STATE(473), + [sym_throw_statement] = STATE(473), + [sym_try_statement] = STATE(473), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(2743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_SEMI] = ACTIONS(413), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym_LBRACE] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_if] = ACTIONS(425), [anon_sym_switch] = ACTIONS(427), [anon_sym_case] = ACTIONS(429), @@ -99251,7 +88989,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_try] = ACTIONS(453), [anon_sym_delete] = ACTIONS(139), [anon_sym_throw] = ACTIONS(455), @@ -99269,103 +89007,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [247] = { - [sym_attribute_declaration] = STATE(195), - [sym_compound_statement] = STATE(999), - [sym_attributed_statement] = STATE(999), - [sym_labeled_statement] = STATE(999), - [sym_expression_statement] = STATE(999), - [sym_if_statement] = STATE(999), - [sym_switch_statement] = STATE(999), - [sym_case_statement] = STATE(999), - [sym_while_statement] = STATE(999), - [sym_do_statement] = STATE(999), - [sym_for_statement] = STATE(999), - [sym_return_statement] = STATE(999), - [sym_break_statement] = STATE(999), - [sym_continue_statement] = STATE(999), - [sym_goto_statement] = STATE(999), - [sym_seh_try_statement] = STATE(999), - [sym_seh_leave_statement] = STATE(999), - [sym_expression] = STATE(5875), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10185), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(999), - [sym_co_return_statement] = STATE(999), - [sym_co_yield_statement] = STATE(999), - [sym_throw_statement] = STATE(999), - [sym_try_statement] = STATE(999), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(195), - [sym_identifier] = ACTIONS(2588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [244] = { + [sym_attribute_declaration] = STATE(253), + [sym_compound_statement] = STATE(958), + [sym_attributed_statement] = STATE(958), + [sym_labeled_statement] = STATE(958), + [sym_expression_statement] = STATE(958), + [sym_if_statement] = STATE(958), + [sym_switch_statement] = STATE(958), + [sym_case_statement] = STATE(958), + [sym_while_statement] = STATE(958), + [sym_do_statement] = STATE(958), + [sym_for_statement] = STATE(958), + [sym_return_statement] = STATE(958), + [sym_break_statement] = STATE(958), + [sym_continue_statement] = STATE(958), + [sym_goto_statement] = STATE(958), + [sym_seh_try_statement] = STATE(958), + [sym_seh_leave_statement] = STATE(958), + [sym_expression] = STATE(5351), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9322), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(958), + [sym_co_return_statement] = STATE(958), + [sym_co_yield_statement] = STATE(958), + [sym_throw_statement] = STATE(958), + [sym_try_statement] = STATE(958), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(253), + [sym_identifier] = ACTIONS(2867), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1997), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(2009), - [anon_sym_switch] = ACTIONS(2011), - [anon_sym_case] = ACTIONS(2431), - [anon_sym_default] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_do] = ACTIONS(2015), - [anon_sym_for] = ACTIONS(2017), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2021), - [anon_sym_continue] = ACTIONS(2023), - [anon_sym_goto] = ACTIONS(2025), - [anon_sym___try] = ACTIONS(2027), - [anon_sym___leave] = ACTIONS(2029), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2005), + [anon_sym_switch] = ACTIONS(2007), + [anon_sym_case] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_do] = ACTIONS(2011), + [anon_sym_for] = ACTIONS(2013), + [anon_sym_return] = ACTIONS(2015), + [anon_sym_break] = ACTIONS(2017), + [anon_sym_continue] = ACTIONS(2019), + [anon_sym_goto] = ACTIONS(2021), + [anon_sym___try] = ACTIONS(2023), + [anon_sym___leave] = ACTIONS(2025), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -99397,12 +89135,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(2031), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(2027), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(2033), - [anon_sym_co_return] = ACTIONS(2035), - [anon_sym_co_yield] = ACTIONS(2037), + [anon_sym_throw] = ACTIONS(2029), + [anon_sym_co_return] = ACTIONS(2031), + [anon_sym_co_yield] = ACTIONS(2033), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -99415,103 +89153,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [248] = { - [sym_attribute_declaration] = STATE(226), - [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_seh_try_statement] = STATE(577), - [sym_seh_leave_statement] = STATE(577), - [sym_expression] = STATE(5819), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9710), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(226), - [sym_identifier] = ACTIONS(2676), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [245] = { + [sym_attribute_declaration] = STATE(253), + [sym_compound_statement] = STATE(973), + [sym_attributed_statement] = STATE(973), + [sym_labeled_statement] = STATE(973), + [sym_expression_statement] = STATE(973), + [sym_if_statement] = STATE(973), + [sym_switch_statement] = STATE(973), + [sym_case_statement] = STATE(973), + [sym_while_statement] = STATE(973), + [sym_do_statement] = STATE(973), + [sym_for_statement] = STATE(973), + [sym_return_statement] = STATE(973), + [sym_break_statement] = STATE(973), + [sym_continue_statement] = STATE(973), + [sym_goto_statement] = STATE(973), + [sym_seh_try_statement] = STATE(973), + [sym_seh_leave_statement] = STATE(973), + [sym_expression] = STATE(5351), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9322), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(973), + [sym_co_return_statement] = STATE(973), + [sym_co_yield_statement] = STATE(973), + [sym_throw_statement] = STATE(973), + [sym_try_statement] = STATE(973), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(253), + [sym_identifier] = ACTIONS(2867), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1997), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_switch] = ACTIONS(1008), - [anon_sym_case] = ACTIONS(1010), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1014), - [anon_sym_do] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_break] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_goto] = ACTIONS(1026), - [anon_sym___try] = ACTIONS(1028), - [anon_sym___leave] = ACTIONS(1030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2005), + [anon_sym_switch] = ACTIONS(2007), + [anon_sym_case] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_do] = ACTIONS(2011), + [anon_sym_for] = ACTIONS(2013), + [anon_sym_return] = ACTIONS(2015), + [anon_sym_break] = ACTIONS(2017), + [anon_sym_continue] = ACTIONS(2019), + [anon_sym_goto] = ACTIONS(2021), + [anon_sym___try] = ACTIONS(2023), + [anon_sym___leave] = ACTIONS(2025), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -99543,12 +89281,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(1034), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(2027), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(1036), - [anon_sym_co_return] = ACTIONS(1046), - [anon_sym_co_yield] = ACTIONS(1048), + [anon_sym_throw] = ACTIONS(2029), + [anon_sym_co_return] = ACTIONS(2031), + [anon_sym_co_yield] = ACTIONS(2033), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -99561,103 +89299,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [249] = { - [sym_attribute_declaration] = STATE(226), - [sym_compound_statement] = STATE(580), - [sym_attributed_statement] = STATE(580), - [sym_labeled_statement] = STATE(580), - [sym_expression_statement] = STATE(580), - [sym_if_statement] = STATE(580), - [sym_switch_statement] = STATE(580), - [sym_case_statement] = STATE(580), - [sym_while_statement] = STATE(580), - [sym_do_statement] = STATE(580), - [sym_for_statement] = STATE(580), - [sym_return_statement] = STATE(580), - [sym_break_statement] = STATE(580), - [sym_continue_statement] = STATE(580), - [sym_goto_statement] = STATE(580), - [sym_seh_try_statement] = STATE(580), - [sym_seh_leave_statement] = STATE(580), - [sym_expression] = STATE(5819), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9710), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(580), - [sym_co_return_statement] = STATE(580), - [sym_co_yield_statement] = STATE(580), - [sym_throw_statement] = STATE(580), - [sym_try_statement] = STATE(580), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(226), - [sym_identifier] = ACTIONS(2676), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [246] = { + [sym_attribute_declaration] = STATE(253), + [sym_compound_statement] = STATE(976), + [sym_attributed_statement] = STATE(976), + [sym_labeled_statement] = STATE(976), + [sym_expression_statement] = STATE(976), + [sym_if_statement] = STATE(976), + [sym_switch_statement] = STATE(976), + [sym_case_statement] = STATE(976), + [sym_while_statement] = STATE(976), + [sym_do_statement] = STATE(976), + [sym_for_statement] = STATE(976), + [sym_return_statement] = STATE(976), + [sym_break_statement] = STATE(976), + [sym_continue_statement] = STATE(976), + [sym_goto_statement] = STATE(976), + [sym_seh_try_statement] = STATE(976), + [sym_seh_leave_statement] = STATE(976), + [sym_expression] = STATE(5351), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9322), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(976), + [sym_co_return_statement] = STATE(976), + [sym_co_yield_statement] = STATE(976), + [sym_throw_statement] = STATE(976), + [sym_try_statement] = STATE(976), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(253), + [sym_identifier] = ACTIONS(2867), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1997), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_switch] = ACTIONS(1008), - [anon_sym_case] = ACTIONS(1010), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1014), - [anon_sym_do] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_break] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_goto] = ACTIONS(1026), - [anon_sym___try] = ACTIONS(1028), - [anon_sym___leave] = ACTIONS(1030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2005), + [anon_sym_switch] = ACTIONS(2007), + [anon_sym_case] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_do] = ACTIONS(2011), + [anon_sym_for] = ACTIONS(2013), + [anon_sym_return] = ACTIONS(2015), + [anon_sym_break] = ACTIONS(2017), + [anon_sym_continue] = ACTIONS(2019), + [anon_sym_goto] = ACTIONS(2021), + [anon_sym___try] = ACTIONS(2023), + [anon_sym___leave] = ACTIONS(2025), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -99689,12 +89427,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(1034), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(2027), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(1036), - [anon_sym_co_return] = ACTIONS(1046), - [anon_sym_co_yield] = ACTIONS(1048), + [anon_sym_throw] = ACTIONS(2029), + [anon_sym_co_return] = ACTIONS(2031), + [anon_sym_co_yield] = ACTIONS(2033), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -99707,249 +89445,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [250] = { - [sym_attribute_declaration] = STATE(250), - [sym_compound_statement] = STATE(1015), - [sym_attributed_statement] = STATE(1015), - [sym_labeled_statement] = STATE(1015), - [sym_expression_statement] = STATE(1015), - [sym_if_statement] = STATE(1015), - [sym_switch_statement] = STATE(1015), - [sym_case_statement] = STATE(1015), - [sym_while_statement] = STATE(1015), - [sym_do_statement] = STATE(1015), - [sym_for_statement] = STATE(1015), - [sym_return_statement] = STATE(1015), - [sym_break_statement] = STATE(1015), - [sym_continue_statement] = STATE(1015), - [sym_goto_statement] = STATE(1015), - [sym_seh_try_statement] = STATE(1015), - [sym_seh_leave_statement] = STATE(1015), - [sym_expression] = STATE(5875), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10185), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(1015), - [sym_co_return_statement] = STATE(1015), - [sym_co_yield_statement] = STATE(1015), - [sym_throw_statement] = STATE(1015), - [sym_try_statement] = STATE(1015), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(250), - [sym_identifier] = ACTIONS(2860), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2444), - [anon_sym_LPAREN2] = ACTIONS(2447), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_TILDE] = ACTIONS(2450), - [anon_sym_DASH] = ACTIONS(2453), - [anon_sym_PLUS] = ACTIONS(2453), - [anon_sym_STAR] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2456), - [anon_sym_SEMI] = ACTIONS(2863), - [anon_sym_COLON_COLON] = ACTIONS(2462), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2465), - [anon_sym_LBRACE] = ACTIONS(2866), - [anon_sym_LBRACK] = ACTIONS(2471), - [sym_primitive_type] = ACTIONS(2474), - [anon_sym_if] = ACTIONS(2869), - [anon_sym_switch] = ACTIONS(2872), - [anon_sym_case] = ACTIONS(2750), - [anon_sym_default] = ACTIONS(2753), - [anon_sym_while] = ACTIONS(2875), - [anon_sym_do] = ACTIONS(2878), - [anon_sym_for] = ACTIONS(2881), - [anon_sym_return] = ACTIONS(2884), - [anon_sym_break] = ACTIONS(2887), - [anon_sym_continue] = ACTIONS(2890), - [anon_sym_goto] = ACTIONS(2893), - [anon_sym___try] = ACTIONS(2896), - [anon_sym___leave] = ACTIONS(2899), - [anon_sym_not] = ACTIONS(2453), - [anon_sym_compl] = ACTIONS(2453), - [anon_sym_DASH_DASH] = ACTIONS(2516), - [anon_sym_PLUS_PLUS] = ACTIONS(2516), - [anon_sym_sizeof] = ACTIONS(2519), - [anon_sym___alignof__] = ACTIONS(2522), - [anon_sym___alignof] = ACTIONS(2522), - [anon_sym__alignof] = ACTIONS(2522), - [anon_sym_alignof] = ACTIONS(2522), - [anon_sym__Alignof] = ACTIONS(2522), - [anon_sym_offsetof] = ACTIONS(2525), - [anon_sym__Generic] = ACTIONS(2528), - [anon_sym_asm] = ACTIONS(2531), - [anon_sym___asm__] = ACTIONS(2531), - [sym_number_literal] = ACTIONS(2534), - [anon_sym_L_SQUOTE] = ACTIONS(2537), - [anon_sym_u_SQUOTE] = ACTIONS(2537), - [anon_sym_U_SQUOTE] = ACTIONS(2537), - [anon_sym_u8_SQUOTE] = ACTIONS(2537), - [anon_sym_SQUOTE] = ACTIONS(2537), - [anon_sym_L_DQUOTE] = ACTIONS(2540), - [anon_sym_u_DQUOTE] = ACTIONS(2540), - [anon_sym_U_DQUOTE] = ACTIONS(2540), - [anon_sym_u8_DQUOTE] = ACTIONS(2540), - [anon_sym_DQUOTE] = ACTIONS(2540), - [sym_true] = ACTIONS(2543), - [sym_false] = ACTIONS(2543), - [anon_sym_NULL] = ACTIONS(2546), - [anon_sym_nullptr] = ACTIONS(2546), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2549), - [anon_sym_template] = ACTIONS(2552), - [anon_sym_try] = ACTIONS(2902), - [anon_sym_delete] = ACTIONS(2558), - [anon_sym_throw] = ACTIONS(2905), - [anon_sym_co_return] = ACTIONS(2908), - [anon_sym_co_yield] = ACTIONS(2911), - [anon_sym_R_DQUOTE] = ACTIONS(2570), - [anon_sym_LR_DQUOTE] = ACTIONS(2570), - [anon_sym_uR_DQUOTE] = ACTIONS(2570), - [anon_sym_UR_DQUOTE] = ACTIONS(2570), - [anon_sym_u8R_DQUOTE] = ACTIONS(2570), - [anon_sym_co_await] = ACTIONS(2573), - [anon_sym_new] = ACTIONS(2576), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2543), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2582), - [sym_semgrep_named_ellipsis] = ACTIONS(2585), + [247] = { + [sym_attribute_declaration] = STATE(247), + [sym_compound_statement] = STATE(969), + [sym_attributed_statement] = STATE(969), + [sym_labeled_statement] = STATE(969), + [sym_expression_statement] = STATE(969), + [sym_if_statement] = STATE(969), + [sym_switch_statement] = STATE(969), + [sym_case_statement] = STATE(969), + [sym_while_statement] = STATE(969), + [sym_do_statement] = STATE(969), + [sym_for_statement] = STATE(969), + [sym_return_statement] = STATE(969), + [sym_break_statement] = STATE(969), + [sym_continue_statement] = STATE(969), + [sym_goto_statement] = STATE(969), + [sym_seh_try_statement] = STATE(969), + [sym_seh_leave_statement] = STATE(969), + [sym_expression] = STATE(5351), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9322), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(969), + [sym_co_return_statement] = STATE(969), + [sym_co_yield_statement] = STATE(969), + [sym_throw_statement] = STATE(969), + [sym_try_statement] = STATE(969), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [sym_identifier] = ACTIONS(2869), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2428), + [anon_sym_LPAREN2] = ACTIONS(2431), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2872), + [anon_sym_COLON_COLON] = ACTIONS(2446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2449), + [anon_sym_LBRACE] = ACTIONS(2875), + [anon_sym_LBRACK] = ACTIONS(2455), + [sym_primitive_type] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2878), + [anon_sym_switch] = ACTIONS(2881), + [anon_sym_case] = ACTIONS(2728), + [anon_sym_default] = ACTIONS(2731), + [anon_sym_while] = ACTIONS(2884), + [anon_sym_do] = ACTIONS(2887), + [anon_sym_for] = ACTIONS(2890), + [anon_sym_return] = ACTIONS(2893), + [anon_sym_break] = ACTIONS(2896), + [anon_sym_continue] = ACTIONS(2899), + [anon_sym_goto] = ACTIONS(2902), + [anon_sym___try] = ACTIONS(2905), + [anon_sym___leave] = ACTIONS(2908), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_compl] = ACTIONS(2437), + [anon_sym_DASH_DASH] = ACTIONS(2500), + [anon_sym_PLUS_PLUS] = ACTIONS(2500), + [anon_sym_sizeof] = ACTIONS(2503), + [anon_sym___alignof__] = ACTIONS(2506), + [anon_sym___alignof] = ACTIONS(2506), + [anon_sym__alignof] = ACTIONS(2506), + [anon_sym_alignof] = ACTIONS(2506), + [anon_sym__Alignof] = ACTIONS(2506), + [anon_sym_offsetof] = ACTIONS(2509), + [anon_sym__Generic] = ACTIONS(2512), + [anon_sym_asm] = ACTIONS(2515), + [anon_sym___asm__] = ACTIONS(2515), + [sym_number_literal] = ACTIONS(2518), + [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(2524), + [anon_sym_u_DQUOTE] = ACTIONS(2524), + [anon_sym_U_DQUOTE] = ACTIONS(2524), + [anon_sym_u8_DQUOTE] = ACTIONS(2524), + [anon_sym_DQUOTE] = ACTIONS(2524), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [anon_sym_NULL] = ACTIONS(2530), + [anon_sym_nullptr] = ACTIONS(2530), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2533), + [anon_sym_template] = ACTIONS(2536), + [anon_sym_try] = ACTIONS(2911), + [anon_sym_delete] = ACTIONS(2542), + [anon_sym_throw] = ACTIONS(2914), + [anon_sym_co_return] = ACTIONS(2917), + [anon_sym_co_yield] = ACTIONS(2920), + [anon_sym_R_DQUOTE] = ACTIONS(2554), + [anon_sym_LR_DQUOTE] = ACTIONS(2554), + [anon_sym_uR_DQUOTE] = ACTIONS(2554), + [anon_sym_UR_DQUOTE] = ACTIONS(2554), + [anon_sym_u8R_DQUOTE] = ACTIONS(2554), + [anon_sym_co_await] = ACTIONS(2557), + [anon_sym_new] = ACTIONS(2560), + [anon_sym_requires] = ACTIONS(2563), + [sym_this] = ACTIONS(2527), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2566), + [sym_semgrep_named_ellipsis] = ACTIONS(2569), }, - [251] = { - [sym_attribute_declaration] = STATE(190), - [sym_compound_statement] = STATE(623), - [sym_attributed_statement] = STATE(623), - [sym_labeled_statement] = STATE(623), - [sym_expression_statement] = STATE(623), - [sym_if_statement] = STATE(623), - [sym_switch_statement] = STATE(623), - [sym_case_statement] = STATE(623), - [sym_while_statement] = STATE(623), - [sym_do_statement] = STATE(623), - [sym_for_statement] = STATE(623), - [sym_return_statement] = STATE(623), - [sym_break_statement] = STATE(623), - [sym_continue_statement] = STATE(623), - [sym_goto_statement] = STATE(623), - [sym_seh_try_statement] = STATE(623), - [sym_seh_leave_statement] = STATE(623), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(623), - [sym_co_return_statement] = STATE(623), - [sym_co_yield_statement] = STATE(623), - [sym_throw_statement] = STATE(623), - [sym_try_statement] = STATE(623), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [sym_identifier] = ACTIONS(2375), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [248] = { + [sym_attribute_declaration] = STATE(253), + [sym_compound_statement] = STATE(956), + [sym_attributed_statement] = STATE(956), + [sym_labeled_statement] = STATE(956), + [sym_expression_statement] = STATE(956), + [sym_if_statement] = STATE(956), + [sym_switch_statement] = STATE(956), + [sym_case_statement] = STATE(956), + [sym_while_statement] = STATE(956), + [sym_do_statement] = STATE(956), + [sym_for_statement] = STATE(956), + [sym_return_statement] = STATE(956), + [sym_break_statement] = STATE(956), + [sym_continue_statement] = STATE(956), + [sym_goto_statement] = STATE(956), + [sym_seh_try_statement] = STATE(956), + [sym_seh_leave_statement] = STATE(956), + [sym_expression] = STATE(5351), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9322), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(956), + [sym_co_return_statement] = STATE(956), + [sym_co_yield_statement] = STATE(956), + [sym_throw_statement] = STATE(956), + [sym_try_statement] = STATE(956), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(253), + [sym_identifier] = ACTIONS(2867), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1997), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2005), + [anon_sym_switch] = ACTIONS(2007), + [anon_sym_case] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_do] = ACTIONS(2011), + [anon_sym_for] = ACTIONS(2013), + [anon_sym_return] = ACTIONS(2015), + [anon_sym_break] = ACTIONS(2017), + [anon_sym_continue] = ACTIONS(2019), + [anon_sym_goto] = ACTIONS(2021), + [anon_sym___try] = ACTIONS(2023), + [anon_sym___leave] = ACTIONS(2025), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -99981,12 +89719,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(233), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(2027), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_co_return] = ACTIONS(245), - [anon_sym_co_yield] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(2029), + [anon_sym_co_return] = ACTIONS(2031), + [anon_sym_co_yield] = ACTIONS(2033), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -99999,103 +89737,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [252] = { - [sym_attribute_declaration] = STATE(239), - [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_seh_try_statement] = STATE(571), - [sym_seh_leave_statement] = STATE(571), - [sym_expression] = STATE(5777), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9682), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(2650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [249] = { + [sym_attribute_declaration] = STATE(253), + [sym_compound_statement] = STATE(986), + [sym_attributed_statement] = STATE(986), + [sym_labeled_statement] = STATE(986), + [sym_expression_statement] = STATE(986), + [sym_if_statement] = STATE(986), + [sym_switch_statement] = STATE(986), + [sym_case_statement] = STATE(986), + [sym_while_statement] = STATE(986), + [sym_do_statement] = STATE(986), + [sym_for_statement] = STATE(986), + [sym_return_statement] = STATE(986), + [sym_break_statement] = STATE(986), + [sym_continue_statement] = STATE(986), + [sym_goto_statement] = STATE(986), + [sym_seh_try_statement] = STATE(986), + [sym_seh_leave_statement] = STATE(986), + [sym_expression] = STATE(5351), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9322), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(986), + [sym_co_return_statement] = STATE(986), + [sym_co_yield_statement] = STATE(986), + [sym_throw_statement] = STATE(986), + [sym_try_statement] = STATE(986), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(253), + [sym_identifier] = ACTIONS(2867), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1997), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(77), - [anon_sym_switch] = ACTIONS(79), - [anon_sym_case] = ACTIONS(81), - [anon_sym_default] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_do] = ACTIONS(87), - [anon_sym_for] = ACTIONS(89), - [anon_sym_return] = ACTIONS(91), - [anon_sym_break] = ACTIONS(93), - [anon_sym_continue] = ACTIONS(95), - [anon_sym_goto] = ACTIONS(97), - [anon_sym___try] = ACTIONS(1875), - [anon_sym___leave] = ACTIONS(1877), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2005), + [anon_sym_switch] = ACTIONS(2007), + [anon_sym_case] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_do] = ACTIONS(2011), + [anon_sym_for] = ACTIONS(2013), + [anon_sym_return] = ACTIONS(2015), + [anon_sym_break] = ACTIONS(2017), + [anon_sym_continue] = ACTIONS(2019), + [anon_sym_goto] = ACTIONS(2021), + [anon_sym___try] = ACTIONS(2023), + [anon_sym___leave] = ACTIONS(2025), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -100127,12 +89865,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(137), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(2027), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(141), - [anon_sym_co_return] = ACTIONS(151), - [anon_sym_co_yield] = ACTIONS(153), + [anon_sym_throw] = ACTIONS(2029), + [anon_sym_co_return] = ACTIONS(2031), + [anon_sym_co_yield] = ACTIONS(2033), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -100145,249 +89883,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [253] = { + [250] = { [sym_attribute_declaration] = STATE(253), - [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_seh_try_statement] = STATE(659), - [sym_seh_leave_statement] = STATE(659), - [sym_expression] = STATE(5777), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9682), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), + [sym_compound_statement] = STATE(988), + [sym_attributed_statement] = STATE(988), + [sym_labeled_statement] = STATE(988), + [sym_expression_statement] = STATE(988), + [sym_if_statement] = STATE(988), + [sym_switch_statement] = STATE(988), + [sym_case_statement] = STATE(988), + [sym_while_statement] = STATE(988), + [sym_do_statement] = STATE(988), + [sym_for_statement] = STATE(988), + [sym_return_statement] = STATE(988), + [sym_break_statement] = STATE(988), + [sym_continue_statement] = STATE(988), + [sym_goto_statement] = STATE(988), + [sym_seh_try_statement] = STATE(988), + [sym_seh_leave_statement] = STATE(988), + [sym_expression] = STATE(5351), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9322), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(988), + [sym_co_return_statement] = STATE(988), + [sym_co_yield_statement] = STATE(988), + [sym_throw_statement] = STATE(988), + [sym_try_statement] = STATE(988), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), [aux_sym_attributed_declarator_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(2914), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2444), - [anon_sym_LPAREN2] = ACTIONS(2447), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_TILDE] = ACTIONS(2450), - [anon_sym_DASH] = ACTIONS(2453), - [anon_sym_PLUS] = ACTIONS(2453), - [anon_sym_STAR] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2456), - [anon_sym_SEMI] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2462), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2465), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_LBRACK] = ACTIONS(2471), - [sym_primitive_type] = ACTIONS(2474), - [anon_sym_if] = ACTIONS(2920), - [anon_sym_switch] = ACTIONS(2747), - [anon_sym_case] = ACTIONS(2923), - [anon_sym_default] = ACTIONS(2926), - [anon_sym_while] = ACTIONS(2929), - [anon_sym_do] = ACTIONS(2759), - [anon_sym_for] = ACTIONS(2932), - [anon_sym_return] = ACTIONS(2765), - [anon_sym_break] = ACTIONS(2768), - [anon_sym_continue] = ACTIONS(2771), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym___try] = ACTIONS(2935), - [anon_sym___leave] = ACTIONS(2938), - [anon_sym_not] = ACTIONS(2453), - [anon_sym_compl] = ACTIONS(2453), - [anon_sym_DASH_DASH] = ACTIONS(2516), - [anon_sym_PLUS_PLUS] = ACTIONS(2516), - [anon_sym_sizeof] = ACTIONS(2519), - [anon_sym___alignof__] = ACTIONS(2522), - [anon_sym___alignof] = ACTIONS(2522), - [anon_sym__alignof] = ACTIONS(2522), - [anon_sym_alignof] = ACTIONS(2522), - [anon_sym__Alignof] = ACTIONS(2522), - [anon_sym_offsetof] = ACTIONS(2525), - [anon_sym__Generic] = ACTIONS(2528), - [anon_sym_asm] = ACTIONS(2531), - [anon_sym___asm__] = ACTIONS(2531), - [sym_number_literal] = ACTIONS(2534), - [anon_sym_L_SQUOTE] = ACTIONS(2537), - [anon_sym_u_SQUOTE] = ACTIONS(2537), - [anon_sym_U_SQUOTE] = ACTIONS(2537), - [anon_sym_u8_SQUOTE] = ACTIONS(2537), - [anon_sym_SQUOTE] = ACTIONS(2537), - [anon_sym_L_DQUOTE] = ACTIONS(2540), - [anon_sym_u_DQUOTE] = ACTIONS(2540), - [anon_sym_U_DQUOTE] = ACTIONS(2540), - [anon_sym_u8_DQUOTE] = ACTIONS(2540), - [anon_sym_DQUOTE] = ACTIONS(2540), - [sym_true] = ACTIONS(2543), - [sym_false] = ACTIONS(2543), - [anon_sym_NULL] = ACTIONS(2546), - [anon_sym_nullptr] = ACTIONS(2546), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2549), - [anon_sym_template] = ACTIONS(2552), - [anon_sym_try] = ACTIONS(2780), - [anon_sym_delete] = ACTIONS(2558), - [anon_sym_throw] = ACTIONS(2783), - [anon_sym_co_return] = ACTIONS(2786), - [anon_sym_co_yield] = ACTIONS(2789), - [anon_sym_R_DQUOTE] = ACTIONS(2570), - [anon_sym_LR_DQUOTE] = ACTIONS(2570), - [anon_sym_uR_DQUOTE] = ACTIONS(2570), - [anon_sym_UR_DQUOTE] = ACTIONS(2570), - [anon_sym_u8R_DQUOTE] = ACTIONS(2570), - [anon_sym_co_await] = ACTIONS(2573), - [anon_sym_new] = ACTIONS(2576), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2543), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2582), - [sym_semgrep_named_ellipsis] = ACTIONS(2585), + [sym_identifier] = ACTIONS(2867), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1997), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2005), + [anon_sym_switch] = ACTIONS(2007), + [anon_sym_case] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_do] = ACTIONS(2011), + [anon_sym_for] = ACTIONS(2013), + [anon_sym_return] = ACTIONS(2015), + [anon_sym_break] = ACTIONS(2017), + [anon_sym_continue] = ACTIONS(2019), + [anon_sym_goto] = ACTIONS(2021), + [anon_sym___try] = ACTIONS(2023), + [anon_sym___leave] = ACTIONS(2025), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(2027), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_throw] = ACTIONS(2029), + [anon_sym_co_return] = ACTIONS(2031), + [anon_sym_co_yield] = ACTIONS(2033), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [254] = { - [sym_attribute_declaration] = STATE(260), - [sym_compound_statement] = STATE(10171), - [sym_attributed_statement] = STATE(10171), - [sym_labeled_statement] = STATE(10171), - [sym_expression_statement] = STATE(10171), - [sym_if_statement] = STATE(10171), - [sym_switch_statement] = STATE(10171), - [sym_case_statement] = STATE(10171), - [sym_while_statement] = STATE(10171), - [sym_do_statement] = STATE(10171), - [sym_for_statement] = STATE(10171), - [sym_return_statement] = STATE(10171), - [sym_break_statement] = STATE(10171), - [sym_continue_statement] = STATE(10171), - [sym_goto_statement] = STATE(10171), - [sym_seh_try_statement] = STATE(10171), - [sym_seh_leave_statement] = STATE(10171), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(10171), - [sym_co_return_statement] = STATE(10171), - [sym_co_yield_statement] = STATE(10171), - [sym_throw_statement] = STATE(10171), - [sym_try_statement] = STATE(10171), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(2427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [251] = { + [sym_attribute_declaration] = STATE(253), + [sym_compound_statement] = STATE(989), + [sym_attributed_statement] = STATE(989), + [sym_labeled_statement] = STATE(989), + [sym_expression_statement] = STATE(989), + [sym_if_statement] = STATE(989), + [sym_switch_statement] = STATE(989), + [sym_case_statement] = STATE(989), + [sym_while_statement] = STATE(989), + [sym_do_statement] = STATE(989), + [sym_for_statement] = STATE(989), + [sym_return_statement] = STATE(989), + [sym_break_statement] = STATE(989), + [sym_continue_statement] = STATE(989), + [sym_goto_statement] = STATE(989), + [sym_seh_try_statement] = STATE(989), + [sym_seh_leave_statement] = STATE(989), + [sym_expression] = STATE(5351), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9322), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(989), + [sym_co_return_statement] = STATE(989), + [sym_co_yield_statement] = STATE(989), + [sym_throw_statement] = STATE(989), + [sym_try_statement] = STATE(989), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(253), + [sym_identifier] = ACTIONS(2867), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1997), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(2429), - [anon_sym_switch] = ACTIONS(79), - [anon_sym_case] = ACTIONS(2431), - [anon_sym_default] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2435), - [anon_sym_do] = ACTIONS(87), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(91), - [anon_sym_break] = ACTIONS(93), - [anon_sym_continue] = ACTIONS(95), - [anon_sym_goto] = ACTIONS(97), - [anon_sym___try] = ACTIONS(2439), - [anon_sym___leave] = ACTIONS(227), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2005), + [anon_sym_switch] = ACTIONS(2007), + [anon_sym_case] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_do] = ACTIONS(2011), + [anon_sym_for] = ACTIONS(2013), + [anon_sym_return] = ACTIONS(2015), + [anon_sym_break] = ACTIONS(2017), + [anon_sym_continue] = ACTIONS(2019), + [anon_sym_goto] = ACTIONS(2021), + [anon_sym___try] = ACTIONS(2023), + [anon_sym___leave] = ACTIONS(2025), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -100419,12 +90157,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(137), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(2027), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(141), - [anon_sym_co_return] = ACTIONS(151), - [anon_sym_co_yield] = ACTIONS(153), + [anon_sym_throw] = ACTIONS(2029), + [anon_sym_co_return] = ACTIONS(2031), + [anon_sym_co_yield] = ACTIONS(2033), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -100437,103 +90175,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [255] = { - [sym_attribute_declaration] = STATE(192), - [sym_compound_statement] = STATE(317), - [sym_attributed_statement] = STATE(317), - [sym_labeled_statement] = STATE(317), - [sym_expression_statement] = STATE(317), - [sym_if_statement] = STATE(317), - [sym_switch_statement] = STATE(317), - [sym_case_statement] = STATE(317), - [sym_while_statement] = STATE(317), - [sym_do_statement] = STATE(317), - [sym_for_statement] = STATE(317), - [sym_return_statement] = STATE(317), - [sym_break_statement] = STATE(317), - [sym_continue_statement] = STATE(317), - [sym_goto_statement] = STATE(317), - [sym_seh_try_statement] = STATE(317), - [sym_seh_leave_statement] = STATE(317), - [sym_expression] = STATE(5862), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9665), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(317), - [sym_co_return_statement] = STATE(317), - [sym_co_yield_statement] = STATE(317), - [sym_throw_statement] = STATE(317), - [sym_try_statement] = STATE(317), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(192), - [sym_identifier] = ACTIONS(2425), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [252] = { + [sym_attribute_declaration] = STATE(238), + [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_seh_try_statement] = STATE(582), + [sym_seh_leave_statement] = STATE(582), + [sym_expression] = STATE(5320), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9351), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(238), + [sym_identifier] = ACTIONS(2805), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1118), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(313), - [anon_sym_switch] = ACTIONS(315), - [anon_sym_case] = ACTIONS(317), - [anon_sym_default] = ACTIONS(319), - [anon_sym_while] = ACTIONS(321), - [anon_sym_do] = ACTIONS(323), - [anon_sym_for] = ACTIONS(325), - [anon_sym_return] = ACTIONS(327), - [anon_sym_break] = ACTIONS(329), - [anon_sym_continue] = ACTIONS(331), - [anon_sym_goto] = ACTIONS(333), - [anon_sym___try] = ACTIONS(335), - [anon_sym___leave] = ACTIONS(337), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_switch] = ACTIONS(1132), + [anon_sym_case] = ACTIONS(1134), + [anon_sym_default] = ACTIONS(1136), + [anon_sym_while] = ACTIONS(1138), + [anon_sym_do] = ACTIONS(1140), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(1144), + [anon_sym_break] = ACTIONS(1146), + [anon_sym_continue] = ACTIONS(1148), + [anon_sym_goto] = ACTIONS(1150), + [anon_sym___try] = ACTIONS(1152), + [anon_sym___leave] = ACTIONS(1154), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -100565,12 +90303,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(341), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(1158), [anon_sym_delete] = ACTIONS(139), - [anon_sym_throw] = ACTIONS(343), - [anon_sym_co_return] = ACTIONS(353), - [anon_sym_co_yield] = ACTIONS(355), + [anon_sym_throw] = ACTIONS(1160), + [anon_sym_co_return] = ACTIONS(1170), + [anon_sym_co_yield] = ACTIONS(1172), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), @@ -100583,103 +90321,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [256] = { - [sym_attribute_declaration] = STATE(260), - [sym_compound_statement] = STATE(10248), - [sym_attributed_statement] = STATE(10248), - [sym_labeled_statement] = STATE(10248), - [sym_expression_statement] = STATE(10248), - [sym_if_statement] = STATE(10248), - [sym_switch_statement] = STATE(10248), - [sym_case_statement] = STATE(10248), - [sym_while_statement] = STATE(10248), - [sym_do_statement] = STATE(10248), - [sym_for_statement] = STATE(10248), - [sym_return_statement] = STATE(10248), - [sym_break_statement] = STATE(10248), - [sym_continue_statement] = STATE(10248), - [sym_goto_statement] = STATE(10248), - [sym_seh_try_statement] = STATE(10248), - [sym_seh_leave_statement] = STATE(10248), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(10248), - [sym_co_return_statement] = STATE(10248), - [sym_co_yield_statement] = STATE(10248), - [sym_throw_statement] = STATE(10248), - [sym_try_statement] = STATE(10248), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(2427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [253] = { + [sym_attribute_declaration] = STATE(247), + [sym_compound_statement] = STATE(969), + [sym_attributed_statement] = STATE(969), + [sym_labeled_statement] = STATE(969), + [sym_expression_statement] = STATE(969), + [sym_if_statement] = STATE(969), + [sym_switch_statement] = STATE(969), + [sym_case_statement] = STATE(969), + [sym_while_statement] = STATE(969), + [sym_do_statement] = STATE(969), + [sym_for_statement] = STATE(969), + [sym_return_statement] = STATE(969), + [sym_break_statement] = STATE(969), + [sym_continue_statement] = STATE(969), + [sym_goto_statement] = STATE(969), + [sym_seh_try_statement] = STATE(969), + [sym_seh_leave_statement] = STATE(969), + [sym_expression] = STATE(5351), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9322), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(969), + [sym_co_return_statement] = STATE(969), + [sym_co_yield_statement] = STATE(969), + [sym_throw_statement] = STATE(969), + [sym_try_statement] = STATE(969), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [sym_identifier] = ACTIONS(2867), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1997), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2005), + [anon_sym_switch] = ACTIONS(2007), + [anon_sym_case] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_do] = ACTIONS(2011), + [anon_sym_for] = ACTIONS(2013), + [anon_sym_return] = ACTIONS(2015), + [anon_sym_break] = ACTIONS(2017), + [anon_sym_continue] = ACTIONS(2019), + [anon_sym_goto] = ACTIONS(2021), + [anon_sym___try] = ACTIONS(2023), + [anon_sym___leave] = ACTIONS(2025), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(2027), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_throw] = ACTIONS(2029), + [anon_sym_co_return] = ACTIONS(2031), + [anon_sym_co_yield] = ACTIONS(2033), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), + }, + [254] = { + [sym_attribute_declaration] = STATE(199), + [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_seh_try_statement] = STATE(627), + [sym_seh_leave_statement] = STATE(627), + [sym_expression] = STATE(5204), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9572), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [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_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(2572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1927), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(2429), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(77), [anon_sym_switch] = ACTIONS(79), - [anon_sym_case] = ACTIONS(2431), - [anon_sym_default] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2435), + [anon_sym_case] = ACTIONS(81), + [anon_sym_default] = ACTIONS(83), + [anon_sym_while] = ACTIONS(85), [anon_sym_do] = ACTIONS(87), - [anon_sym_for] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(89), [anon_sym_return] = ACTIONS(91), [anon_sym_break] = ACTIONS(93), [anon_sym_continue] = ACTIONS(95), [anon_sym_goto] = ACTIONS(97), - [anon_sym___try] = ACTIONS(2439), - [anon_sym___leave] = ACTIONS(227), + [anon_sym___try] = ACTIONS(1929), + [anon_sym___leave] = ACTIONS(1931), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -100711,7 +90595,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_try] = ACTIONS(137), [anon_sym_delete] = ACTIONS(139), [anon_sym_throw] = ACTIONS(141), @@ -100729,103 +90613,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [257] = { - [sym_attribute_declaration] = STATE(260), - [sym_compound_statement] = STATE(10272), - [sym_attributed_statement] = STATE(10272), - [sym_labeled_statement] = STATE(10272), - [sym_expression_statement] = STATE(10272), - [sym_if_statement] = STATE(10272), - [sym_switch_statement] = STATE(10272), - [sym_case_statement] = STATE(10272), - [sym_while_statement] = STATE(10272), - [sym_do_statement] = STATE(10272), - [sym_for_statement] = STATE(10272), - [sym_return_statement] = STATE(10272), - [sym_break_statement] = STATE(10272), - [sym_continue_statement] = STATE(10272), - [sym_goto_statement] = STATE(10272), - [sym_seh_try_statement] = STATE(10272), - [sym_seh_leave_statement] = STATE(10272), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(10272), - [sym_co_return_statement] = STATE(10272), - [sym_co_yield_statement] = STATE(10272), - [sym_throw_statement] = STATE(10272), - [sym_try_statement] = STATE(10272), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(2427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [255] = { + [sym_attribute_declaration] = STATE(199), + [sym_compound_statement] = STATE(628), + [sym_attributed_statement] = STATE(628), + [sym_labeled_statement] = STATE(628), + [sym_expression_statement] = STATE(628), + [sym_if_statement] = STATE(628), + [sym_switch_statement] = STATE(628), + [sym_case_statement] = STATE(628), + [sym_while_statement] = STATE(628), + [sym_do_statement] = STATE(628), + [sym_for_statement] = STATE(628), + [sym_return_statement] = STATE(628), + [sym_break_statement] = STATE(628), + [sym_continue_statement] = STATE(628), + [sym_goto_statement] = STATE(628), + [sym_seh_try_statement] = STATE(628), + [sym_seh_leave_statement] = STATE(628), + [sym_expression] = STATE(5204), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9572), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(628), + [sym_co_return_statement] = STATE(628), + [sym_co_yield_statement] = STATE(628), + [sym_throw_statement] = STATE(628), + [sym_try_statement] = STATE(628), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(2572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1927), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(2429), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(77), [anon_sym_switch] = ACTIONS(79), - [anon_sym_case] = ACTIONS(2431), - [anon_sym_default] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2435), + [anon_sym_case] = ACTIONS(81), + [anon_sym_default] = ACTIONS(83), + [anon_sym_while] = ACTIONS(85), [anon_sym_do] = ACTIONS(87), - [anon_sym_for] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(89), [anon_sym_return] = ACTIONS(91), [anon_sym_break] = ACTIONS(93), [anon_sym_continue] = ACTIONS(95), [anon_sym_goto] = ACTIONS(97), - [anon_sym___try] = ACTIONS(2439), - [anon_sym___leave] = ACTIONS(227), + [anon_sym___try] = ACTIONS(1929), + [anon_sym___leave] = ACTIONS(1931), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -100857,7 +90741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_try] = ACTIONS(137), [anon_sym_delete] = ACTIONS(139), [anon_sym_throw] = ACTIONS(141), @@ -100875,102 +90759,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [258] = { - [sym_attribute_declaration] = STATE(260), - [sym_compound_statement] = STATE(10295), - [sym_attributed_statement] = STATE(10295), - [sym_labeled_statement] = STATE(10295), - [sym_expression_statement] = STATE(10295), - [sym_if_statement] = STATE(10295), - [sym_switch_statement] = STATE(10295), - [sym_case_statement] = STATE(10295), - [sym_while_statement] = STATE(10295), - [sym_do_statement] = STATE(10295), - [sym_for_statement] = STATE(10295), - [sym_return_statement] = STATE(10295), - [sym_break_statement] = STATE(10295), - [sym_continue_statement] = STATE(10295), - [sym_goto_statement] = STATE(10295), - [sym_seh_try_statement] = STATE(10295), - [sym_seh_leave_statement] = STATE(10295), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(10295), - [sym_co_return_statement] = STATE(10295), - [sym_co_yield_statement] = STATE(10295), - [sym_throw_statement] = STATE(10295), - [sym_try_statement] = STATE(10295), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(2427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [256] = { + [sym_attribute_declaration] = STATE(224), + [sym_compound_statement] = STATE(9506), + [sym_attributed_statement] = STATE(9506), + [sym_labeled_statement] = STATE(9506), + [sym_expression_statement] = STATE(9506), + [sym_if_statement] = STATE(9506), + [sym_switch_statement] = STATE(9506), + [sym_case_statement] = STATE(9506), + [sym_while_statement] = STATE(9506), + [sym_do_statement] = STATE(9506), + [sym_for_statement] = STATE(9506), + [sym_return_statement] = STATE(9506), + [sym_break_statement] = STATE(9506), + [sym_continue_statement] = STATE(9506), + [sym_goto_statement] = STATE(9506), + [sym_seh_try_statement] = STATE(9506), + [sym_seh_leave_statement] = STATE(9506), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(9506), + [sym_co_return_statement] = STATE(9506), + [sym_co_yield_statement] = STATE(9506), + [sym_throw_statement] = STATE(9506), + [sym_try_statement] = STATE(9506), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(224), + [sym_identifier] = ACTIONS(2411), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_SEMI] = ACTIONS(187), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(2429), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2413), [anon_sym_switch] = ACTIONS(79), - [anon_sym_case] = ACTIONS(2431), - [anon_sym_default] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2435), + [anon_sym_case] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2419), [anon_sym_do] = ACTIONS(87), - [anon_sym_for] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2421), [anon_sym_return] = ACTIONS(91), [anon_sym_break] = ACTIONS(93), [anon_sym_continue] = ACTIONS(95), [anon_sym_goto] = ACTIONS(97), - [anon_sym___try] = ACTIONS(2439), + [anon_sym___try] = ACTIONS(2423), [anon_sym___leave] = ACTIONS(227), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), @@ -101003,7 +90887,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_try] = ACTIONS(137), [anon_sym_delete] = ACTIONS(139), [anon_sym_throw] = ACTIONS(141), @@ -101021,102 +90905,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [259] = { - [sym_attribute_declaration] = STATE(260), - [sym_compound_statement] = STATE(10314), - [sym_attributed_statement] = STATE(10314), - [sym_labeled_statement] = STATE(10314), - [sym_expression_statement] = STATE(10314), - [sym_if_statement] = STATE(10314), - [sym_switch_statement] = STATE(10314), - [sym_case_statement] = STATE(10314), - [sym_while_statement] = STATE(10314), - [sym_do_statement] = STATE(10314), - [sym_for_statement] = STATE(10314), - [sym_return_statement] = STATE(10314), - [sym_break_statement] = STATE(10314), - [sym_continue_statement] = STATE(10314), - [sym_goto_statement] = STATE(10314), - [sym_seh_try_statement] = STATE(10314), - [sym_seh_leave_statement] = STATE(10314), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_for_range_loop] = STATE(10314), - [sym_co_return_statement] = STATE(10314), - [sym_co_yield_statement] = STATE(10314), - [sym_throw_statement] = STATE(10314), - [sym_try_statement] = STATE(10314), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(2427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [257] = { + [sym_attribute_declaration] = STATE(224), + [sym_compound_statement] = STATE(9688), + [sym_attributed_statement] = STATE(9688), + [sym_labeled_statement] = STATE(9688), + [sym_expression_statement] = STATE(9688), + [sym_if_statement] = STATE(9688), + [sym_switch_statement] = STATE(9688), + [sym_case_statement] = STATE(9688), + [sym_while_statement] = STATE(9688), + [sym_do_statement] = STATE(9688), + [sym_for_statement] = STATE(9688), + [sym_return_statement] = STATE(9688), + [sym_break_statement] = STATE(9688), + [sym_continue_statement] = STATE(9688), + [sym_goto_statement] = STATE(9688), + [sym_seh_try_statement] = STATE(9688), + [sym_seh_leave_statement] = STATE(9688), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(9688), + [sym_co_return_statement] = STATE(9688), + [sym_co_yield_statement] = STATE(9688), + [sym_throw_statement] = STATE(9688), + [sym_try_statement] = STATE(9688), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(224), + [sym_identifier] = ACTIONS(2411), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_SEMI] = ACTIONS(187), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(2429), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2413), [anon_sym_switch] = ACTIONS(79), - [anon_sym_case] = ACTIONS(2431), - [anon_sym_default] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2435), + [anon_sym_case] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2419), [anon_sym_do] = ACTIONS(87), - [anon_sym_for] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2421), [anon_sym_return] = ACTIONS(91), [anon_sym_break] = ACTIONS(93), [anon_sym_continue] = ACTIONS(95), [anon_sym_goto] = ACTIONS(97), - [anon_sym___try] = ACTIONS(2439), + [anon_sym___try] = ACTIONS(2423), [anon_sym___leave] = ACTIONS(227), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), @@ -101149,7 +91033,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_try] = ACTIONS(137), [anon_sym_delete] = ACTIONS(139), [anon_sym_throw] = ACTIONS(141), @@ -101167,102 +91051,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [260] = { - [sym_attribute_declaration] = STATE(219), - [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_seh_try_statement] = STATE(659), - [sym_seh_leave_statement] = STATE(659), - [sym_expression] = STATE(5797), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9776), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [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_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [sym_identifier] = ACTIONS(2427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [258] = { + [sym_attribute_declaration] = STATE(224), + [sym_compound_statement] = STATE(9712), + [sym_attributed_statement] = STATE(9712), + [sym_labeled_statement] = STATE(9712), + [sym_expression_statement] = STATE(9712), + [sym_if_statement] = STATE(9712), + [sym_switch_statement] = STATE(9712), + [sym_case_statement] = STATE(9712), + [sym_while_statement] = STATE(9712), + [sym_do_statement] = STATE(9712), + [sym_for_statement] = STATE(9712), + [sym_return_statement] = STATE(9712), + [sym_break_statement] = STATE(9712), + [sym_continue_statement] = STATE(9712), + [sym_goto_statement] = STATE(9712), + [sym_seh_try_statement] = STATE(9712), + [sym_seh_leave_statement] = STATE(9712), + [sym_expression] = STATE(5332), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10058), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(9712), + [sym_co_return_statement] = STATE(9712), + [sym_co_yield_statement] = STATE(9712), + [sym_throw_statement] = STATE(9712), + [sym_try_statement] = STATE(9712), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(224), + [sym_identifier] = ACTIONS(2411), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_SEMI] = ACTIONS(187), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(1536), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(2429), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2413), [anon_sym_switch] = ACTIONS(79), - [anon_sym_case] = ACTIONS(2431), - [anon_sym_default] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2435), + [anon_sym_case] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2419), [anon_sym_do] = ACTIONS(87), - [anon_sym_for] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2421), [anon_sym_return] = ACTIONS(91), [anon_sym_break] = ACTIONS(93), [anon_sym_continue] = ACTIONS(95), [anon_sym_goto] = ACTIONS(97), - [anon_sym___try] = ACTIONS(2439), + [anon_sym___try] = ACTIONS(2423), [anon_sym___leave] = ACTIONS(227), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), @@ -101295,7 +91179,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(137), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_throw] = ACTIONS(141), + [anon_sym_co_return] = ACTIONS(151), + [anon_sym_co_yield] = ACTIONS(153), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), + }, + [259] = { + [sym_attribute_declaration] = STATE(199), + [sym_compound_statement] = STATE(663), + [sym_attributed_statement] = STATE(663), + [sym_labeled_statement] = STATE(663), + [sym_expression_statement] = STATE(663), + [sym_if_statement] = STATE(663), + [sym_switch_statement] = STATE(663), + [sym_case_statement] = STATE(663), + [sym_while_statement] = STATE(663), + [sym_do_statement] = STATE(663), + [sym_for_statement] = STATE(663), + [sym_return_statement] = STATE(663), + [sym_break_statement] = STATE(663), + [sym_continue_statement] = STATE(663), + [sym_goto_statement] = STATE(663), + [sym_seh_try_statement] = STATE(663), + [sym_seh_leave_statement] = STATE(663), + [sym_expression] = STATE(5204), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9572), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_for_range_loop] = STATE(663), + [sym_co_return_statement] = STATE(663), + [sym_co_yield_statement] = STATE(663), + [sym_throw_statement] = STATE(663), + [sym_try_statement] = STATE(663), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_attributed_declarator_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(2572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1927), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(77), + [anon_sym_switch] = ACTIONS(79), + [anon_sym_case] = ACTIONS(81), + [anon_sym_default] = ACTIONS(83), + [anon_sym_while] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_return] = ACTIONS(91), + [anon_sym_break] = ACTIONS(93), + [anon_sym_continue] = ACTIONS(95), + [anon_sym_goto] = ACTIONS(97), + [anon_sym___try] = ACTIONS(1929), + [anon_sym___leave] = ACTIONS(1931), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), [anon_sym_try] = ACTIONS(137), [anon_sym_delete] = ACTIONS(139), [anon_sym_throw] = ACTIONS(141), @@ -101313,7227 +91343,9332 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, + [260] = { + [sym_expression] = STATE(3702), + [sym_expression_not_binary] = STATE(3960), + [sym_conditional_expression] = STATE(3950), + [sym_assignment_expression] = STATE(3950), + [sym_pointer_expression] = STATE(3961), + [sym_unary_expression] = STATE(3950), + [sym_binary_expression] = STATE(3960), + [sym_update_expression] = STATE(3950), + [sym_cast_expression] = STATE(3950), + [sym_sizeof_expression] = STATE(3950), + [sym_alignof_expression] = STATE(3950), + [sym_offsetof_expression] = STATE(3950), + [sym_generic_expression] = STATE(3950), + [sym_subscript_expression] = STATE(3961), + [sym_call_expression] = STATE(3961), + [sym_gnu_asm_expression] = STATE(3950), + [sym_field_expression] = STATE(3961), + [sym_compound_literal_expression] = STATE(3950), + [sym_parenthesized_expression] = STATE(3961), + [sym_initializer_list] = STATE(4061), + [sym_char_literal] = STATE(3756), + [sym_concatenated_string] = STATE(3756), + [sym_string_literal] = STATE(2508), + [sym_null] = STATE(3950), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8975), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3950), + [sym_raw_string_literal] = STATE(2508), + [sym_co_await_expression] = STATE(3950), + [sym_new_expression] = STATE(3950), + [sym_delete_expression] = STATE(3950), + [sym_requires_clause] = STATE(3950), + [sym_requires_expression] = STATE(3950), + [sym_lambda_expression] = STATE(3950), + [sym_lambda_capture_specifier] = STATE(6902), + [sym_fold_expression] = STATE(3950), + [sym_parameter_pack_expansion] = STATE(3950), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(3961), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3961), + [sym_semgrep_ellipsis] = STATE(3960), + [sym_deep_ellipsis] = STATE(3960), + [sym_identifier] = ACTIONS(2923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2277), + [anon_sym_COMMA] = ACTIONS(2277), + [anon_sym_LPAREN2] = ACTIONS(2277), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_PERCENT] = ACTIONS(2285), + [anon_sym_PIPE_PIPE] = ACTIONS(2277), + [anon_sym_AMP_AMP] = ACTIONS(2277), + [anon_sym_PIPE] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2285), + [anon_sym_EQ_EQ] = ACTIONS(2277), + [anon_sym_BANG_EQ] = ACTIONS(2277), + [anon_sym_GT] = ACTIONS(2285), + [anon_sym_GT_EQ] = ACTIONS(2285), + [anon_sym_LT_EQ] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_LT_LT] = ACTIONS(2285), + [anon_sym_GT_GT] = ACTIONS(2285), + [anon_sym_COLON_COLON] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2931), + [anon_sym_LBRACK] = ACTIONS(2277), + [anon_sym_EQ] = ACTIONS(2285), + [sym_primitive_type] = ACTIONS(2933), + [anon_sym_QMARK] = ACTIONS(2277), + [anon_sym_STAR_EQ] = ACTIONS(2277), + [anon_sym_SLASH_EQ] = ACTIONS(2277), + [anon_sym_PERCENT_EQ] = ACTIONS(2277), + [anon_sym_PLUS_EQ] = ACTIONS(2277), + [anon_sym_DASH_EQ] = ACTIONS(2277), + [anon_sym_LT_LT_EQ] = ACTIONS(2277), + [anon_sym_GT_GT_EQ] = ACTIONS(2285), + [anon_sym_AMP_EQ] = ACTIONS(2277), + [anon_sym_CARET_EQ] = ACTIONS(2277), + [anon_sym_PIPE_EQ] = ACTIONS(2277), + [anon_sym_and_eq] = ACTIONS(2285), + [anon_sym_or_eq] = ACTIONS(2285), + [anon_sym_xor_eq] = ACTIONS(2285), + [anon_sym_not] = ACTIONS(2925), + [anon_sym_compl] = ACTIONS(2925), + [anon_sym_LT_EQ_GT] = ACTIONS(2277), + [anon_sym_or] = ACTIONS(2285), + [anon_sym_and] = ACTIONS(2285), + [anon_sym_bitor] = ACTIONS(2285), + [anon_sym_xor] = ACTIONS(2285), + [anon_sym_bitand] = ACTIONS(2285), + [anon_sym_not_eq] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2277), + [anon_sym_PLUS_PLUS] = ACTIONS(2277), + [anon_sym_sizeof] = ACTIONS(2935), + [anon_sym___alignof__] = ACTIONS(2937), + [anon_sym___alignof] = ACTIONS(2937), + [anon_sym__alignof] = ACTIONS(2937), + [anon_sym_alignof] = ACTIONS(2937), + [anon_sym__Alignof] = ACTIONS(2937), + [anon_sym_offsetof] = ACTIONS(2939), + [anon_sym__Generic] = ACTIONS(2941), + [anon_sym_asm] = ACTIONS(2943), + [anon_sym___asm__] = ACTIONS(2943), + [anon_sym_DOT] = ACTIONS(2285), + [anon_sym_DOT_STAR] = ACTIONS(2277), + [anon_sym_DASH_GT] = ACTIONS(2277), + [sym_number_literal] = ACTIONS(2945), + [anon_sym_L_SQUOTE] = ACTIONS(2947), + [anon_sym_u_SQUOTE] = ACTIONS(2947), + [anon_sym_U_SQUOTE] = ACTIONS(2947), + [anon_sym_u8_SQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2947), + [anon_sym_L_DQUOTE] = ACTIONS(2949), + [anon_sym_u_DQUOTE] = ACTIONS(2949), + [anon_sym_U_DQUOTE] = ACTIONS(2949), + [anon_sym_u8_DQUOTE] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2949), + [sym_true] = ACTIONS(2951), + [sym_false] = ACTIONS(2951), + [anon_sym_NULL] = ACTIONS(2953), + [anon_sym_nullptr] = ACTIONS(2953), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_GT2] = ACTIONS(2277), + [anon_sym_delete] = ACTIONS(2955), + [anon_sym_R_DQUOTE] = ACTIONS(2957), + [anon_sym_LR_DQUOTE] = ACTIONS(2957), + [anon_sym_uR_DQUOTE] = ACTIONS(2957), + [anon_sym_UR_DQUOTE] = ACTIONS(2957), + [anon_sym_u8R_DQUOTE] = ACTIONS(2957), + [anon_sym_co_await] = ACTIONS(2959), + [anon_sym_new] = ACTIONS(2961), + [anon_sym_requires] = ACTIONS(2963), + [sym_this] = ACTIONS(2951), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2965), + [sym_semgrep_named_ellipsis] = ACTIONS(2967), + }, [261] = { - [sym_expression] = STATE(3813), - [sym_expression_not_binary] = STATE(4358), - [sym_conditional_expression] = STATE(4353), - [sym_assignment_expression] = STATE(4353), - [sym_pointer_expression] = STATE(4360), - [sym_unary_expression] = STATE(4353), - [sym_binary_expression] = STATE(4358), - [sym_update_expression] = STATE(4353), - [sym_cast_expression] = STATE(4353), - [sym_sizeof_expression] = STATE(4353), - [sym_alignof_expression] = STATE(4353), - [sym_offsetof_expression] = STATE(4353), - [sym_generic_expression] = STATE(4353), - [sym_subscript_expression] = STATE(4360), - [sym_call_expression] = STATE(4360), - [sym_gnu_asm_expression] = STATE(4353), - [sym_field_expression] = STATE(4360), - [sym_compound_literal_expression] = STATE(4353), - [sym_parenthesized_expression] = STATE(4360), - [sym_initializer_list] = STATE(4221), - [sym_char_literal] = STATE(4023), - [sym_concatenated_string] = STATE(4023), - [sym_string_literal] = STATE(2426), - [sym_null] = STATE(4353), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9636), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4353), - [sym_raw_string_literal] = STATE(2426), - [sym_co_await_expression] = STATE(4353), - [sym_new_expression] = STATE(4353), - [sym_delete_expression] = STATE(4353), - [sym_requires_clause] = STATE(4353), - [sym_requires_expression] = STATE(4353), - [sym_lambda_expression] = STATE(4353), - [sym_lambda_capture_specifier] = STATE(7284), - [sym_fold_expression] = STATE(4353), - [sym_parameter_pack_expansion] = STATE(4353), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4360), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4360), - [sym_semgrep_ellipsis] = STATE(4358), - [sym_deep_ellipsis] = STATE(4358), - [sym_identifier] = ACTIONS(2941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2281), - [anon_sym_COMMA] = ACTIONS(2281), - [anon_sym_LPAREN2] = ACTIONS(2281), - [anon_sym_BANG] = ACTIONS(2943), - [anon_sym_TILDE] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2279), - [anon_sym_STAR] = ACTIONS(2279), - [anon_sym_SLASH] = ACTIONS(2279), - [anon_sym_PERCENT] = ACTIONS(2279), - [anon_sym_PIPE_PIPE] = ACTIONS(2281), - [anon_sym_AMP_AMP] = ACTIONS(2281), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_CARET] = ACTIONS(2279), - [anon_sym_AMP] = ACTIONS(2279), - [anon_sym_EQ_EQ] = ACTIONS(2281), - [anon_sym_BANG_EQ] = ACTIONS(2281), - [anon_sym_GT] = ACTIONS(2279), - [anon_sym_GT_EQ] = ACTIONS(2279), - [anon_sym_LT_EQ] = ACTIONS(2279), - [anon_sym_LT] = ACTIONS(2279), - [anon_sym_LT_LT] = ACTIONS(2279), - [anon_sym_GT_GT] = ACTIONS(2279), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_LBRACK] = ACTIONS(2281), - [anon_sym_EQ] = ACTIONS(2279), - [sym_primitive_type] = ACTIONS(2951), - [anon_sym_QMARK] = ACTIONS(2281), - [anon_sym_STAR_EQ] = ACTIONS(2281), - [anon_sym_SLASH_EQ] = ACTIONS(2281), - [anon_sym_PERCENT_EQ] = ACTIONS(2281), - [anon_sym_PLUS_EQ] = ACTIONS(2281), - [anon_sym_DASH_EQ] = ACTIONS(2281), - [anon_sym_LT_LT_EQ] = ACTIONS(2281), - [anon_sym_GT_GT_EQ] = ACTIONS(2279), - [anon_sym_AMP_EQ] = ACTIONS(2281), - [anon_sym_CARET_EQ] = ACTIONS(2281), - [anon_sym_PIPE_EQ] = ACTIONS(2281), - [anon_sym_and_eq] = ACTIONS(2279), - [anon_sym_or_eq] = ACTIONS(2279), - [anon_sym_xor_eq] = ACTIONS(2279), - [anon_sym_not] = ACTIONS(2943), - [anon_sym_compl] = ACTIONS(2943), - [anon_sym_LT_EQ_GT] = ACTIONS(2281), - [anon_sym_or] = ACTIONS(2279), - [anon_sym_and] = ACTIONS(2279), - [anon_sym_bitor] = ACTIONS(2279), - [anon_sym_xor] = ACTIONS(2279), - [anon_sym_bitand] = ACTIONS(2279), - [anon_sym_not_eq] = ACTIONS(2279), - [anon_sym_DASH_DASH] = ACTIONS(2281), - [anon_sym_PLUS_PLUS] = ACTIONS(2281), - [anon_sym_sizeof] = ACTIONS(2953), - [anon_sym___alignof__] = ACTIONS(2955), - [anon_sym___alignof] = ACTIONS(2955), - [anon_sym__alignof] = ACTIONS(2955), - [anon_sym_alignof] = ACTIONS(2955), - [anon_sym__Alignof] = ACTIONS(2955), - [anon_sym_offsetof] = ACTIONS(2957), - [anon_sym__Generic] = ACTIONS(2959), - [anon_sym_asm] = ACTIONS(2961), - [anon_sym___asm__] = ACTIONS(2961), - [anon_sym_DOT] = ACTIONS(2279), - [anon_sym_DOT_STAR] = ACTIONS(2281), - [anon_sym_DASH_GT] = ACTIONS(2281), - [sym_number_literal] = ACTIONS(2963), - [anon_sym_L_SQUOTE] = ACTIONS(2965), - [anon_sym_u_SQUOTE] = ACTIONS(2965), - [anon_sym_U_SQUOTE] = ACTIONS(2965), - [anon_sym_u8_SQUOTE] = ACTIONS(2965), - [anon_sym_SQUOTE] = ACTIONS(2965), - [anon_sym_L_DQUOTE] = ACTIONS(2967), - [anon_sym_u_DQUOTE] = ACTIONS(2967), - [anon_sym_U_DQUOTE] = ACTIONS(2967), - [anon_sym_u8_DQUOTE] = ACTIONS(2967), - [anon_sym_DQUOTE] = ACTIONS(2967), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2971), - [anon_sym_nullptr] = ACTIONS(2971), + [sym_expression] = STATE(2875), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_initializer_list] = STATE(2621), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2277), + [anon_sym_LPAREN2] = ACTIONS(2277), + [anon_sym_BANG] = ACTIONS(2969), + [anon_sym_TILDE] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_PERCENT] = ACTIONS(2285), + [anon_sym_PIPE_PIPE] = ACTIONS(2277), + [anon_sym_AMP_AMP] = ACTIONS(2277), + [anon_sym_PIPE] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2285), + [anon_sym_EQ_EQ] = ACTIONS(2277), + [anon_sym_BANG_EQ] = ACTIONS(2277), + [anon_sym_GT] = ACTIONS(2285), + [anon_sym_GT_EQ] = ACTIONS(2277), + [anon_sym_LT_EQ] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_LT_LT] = ACTIONS(2285), + [anon_sym_GT_GT] = ACTIONS(2285), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_LBRACK] = ACTIONS(2277), + [anon_sym_EQ] = ACTIONS(2285), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_COLON] = ACTIONS(2285), + [anon_sym_QMARK] = ACTIONS(2277), + [anon_sym_STAR_EQ] = ACTIONS(2277), + [anon_sym_SLASH_EQ] = ACTIONS(2277), + [anon_sym_PERCENT_EQ] = ACTIONS(2277), + [anon_sym_PLUS_EQ] = ACTIONS(2277), + [anon_sym_DASH_EQ] = ACTIONS(2277), + [anon_sym_LT_LT_EQ] = ACTIONS(2277), + [anon_sym_GT_GT_EQ] = ACTIONS(2277), + [anon_sym_AMP_EQ] = ACTIONS(2277), + [anon_sym_CARET_EQ] = ACTIONS(2277), + [anon_sym_PIPE_EQ] = ACTIONS(2277), + [anon_sym_and_eq] = ACTIONS(2285), + [anon_sym_or_eq] = ACTIONS(2285), + [anon_sym_xor_eq] = ACTIONS(2285), + [anon_sym_not] = ACTIONS(2969), + [anon_sym_compl] = ACTIONS(2969), + [anon_sym_LT_EQ_GT] = ACTIONS(2277), + [anon_sym_or] = ACTIONS(2285), + [anon_sym_and] = ACTIONS(2285), + [anon_sym_bitor] = ACTIONS(2285), + [anon_sym_xor] = ACTIONS(2285), + [anon_sym_bitand] = ACTIONS(2285), + [anon_sym_not_eq] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2277), + [anon_sym_PLUS_PLUS] = ACTIONS(2277), + [anon_sym_sizeof] = ACTIONS(2975), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [anon_sym_DOT] = ACTIONS(2285), + [anon_sym_DOT_STAR] = ACTIONS(2277), + [anon_sym_DASH_GT] = ACTIONS(2277), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(2281), - [anon_sym_delete] = ACTIONS(2973), - [anon_sym_R_DQUOTE] = ACTIONS(2975), - [anon_sym_LR_DQUOTE] = ACTIONS(2975), - [anon_sym_uR_DQUOTE] = ACTIONS(2975), - [anon_sym_UR_DQUOTE] = ACTIONS(2975), - [anon_sym_u8R_DQUOTE] = ACTIONS(2975), - [anon_sym_co_await] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2979), - [anon_sym_requires] = ACTIONS(2981), - [sym_this] = ACTIONS(2969), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2983), - [sym_semgrep_named_ellipsis] = ACTIONS(2985), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2977), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, [262] = { - [sym_expression] = STATE(4182), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_initializer_list] = STATE(3147), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2281), - [anon_sym_LPAREN2] = ACTIONS(2281), - [anon_sym_BANG] = ACTIONS(2987), - [anon_sym_TILDE] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2279), - [anon_sym_STAR] = ACTIONS(2279), - [anon_sym_SLASH] = ACTIONS(2279), - [anon_sym_PERCENT] = ACTIONS(2279), - [anon_sym_PIPE_PIPE] = ACTIONS(2281), - [anon_sym_AMP_AMP] = ACTIONS(2281), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_CARET] = ACTIONS(2279), - [anon_sym_AMP] = ACTIONS(2279), - [anon_sym_EQ_EQ] = ACTIONS(2281), - [anon_sym_BANG_EQ] = ACTIONS(2281), - [anon_sym_GT] = ACTIONS(2279), - [anon_sym_GT_EQ] = ACTIONS(2281), - [anon_sym_LT_EQ] = ACTIONS(2279), - [anon_sym_LT] = ACTIONS(2279), - [anon_sym_LT_LT] = ACTIONS(2279), - [anon_sym_GT_GT] = ACTIONS(2279), - [anon_sym_COLON_COLON] = ACTIONS(2991), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_LBRACK] = ACTIONS(2281), - [anon_sym_EQ] = ACTIONS(2279), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_COLON] = ACTIONS(2279), - [anon_sym_QMARK] = ACTIONS(2281), - [anon_sym_STAR_EQ] = ACTIONS(2281), - [anon_sym_SLASH_EQ] = ACTIONS(2281), - [anon_sym_PERCENT_EQ] = ACTIONS(2281), - [anon_sym_PLUS_EQ] = ACTIONS(2281), - [anon_sym_DASH_EQ] = ACTIONS(2281), - [anon_sym_LT_LT_EQ] = ACTIONS(2281), - [anon_sym_GT_GT_EQ] = ACTIONS(2281), - [anon_sym_AMP_EQ] = ACTIONS(2281), - [anon_sym_CARET_EQ] = ACTIONS(2281), - [anon_sym_PIPE_EQ] = ACTIONS(2281), - [anon_sym_and_eq] = ACTIONS(2279), - [anon_sym_or_eq] = ACTIONS(2279), - [anon_sym_xor_eq] = ACTIONS(2279), - [anon_sym_not] = ACTIONS(2987), - [anon_sym_compl] = ACTIONS(2987), - [anon_sym_LT_EQ_GT] = ACTIONS(2281), - [anon_sym_or] = ACTIONS(2279), - [anon_sym_and] = ACTIONS(2279), - [anon_sym_bitor] = ACTIONS(2279), - [anon_sym_xor] = ACTIONS(2279), - [anon_sym_bitand] = ACTIONS(2279), - [anon_sym_not_eq] = ACTIONS(2279), - [anon_sym_DASH_DASH] = ACTIONS(2281), - [anon_sym_PLUS_PLUS] = ACTIONS(2281), + [sym_expression] = STATE(3911), + [sym_expression_not_binary] = STATE(4146), + [sym_conditional_expression] = STATE(4141), + [sym_assignment_expression] = STATE(4141), + [sym_pointer_expression] = STATE(4149), + [sym_unary_expression] = STATE(4141), + [sym_binary_expression] = STATE(4146), + [sym_update_expression] = STATE(4141), + [sym_cast_expression] = STATE(4141), + [sym_sizeof_expression] = STATE(4141), + [sym_alignof_expression] = STATE(4141), + [sym_offsetof_expression] = STATE(4141), + [sym_generic_expression] = STATE(4141), + [sym_subscript_expression] = STATE(4149), + [sym_call_expression] = STATE(4149), + [sym_gnu_asm_expression] = STATE(4141), + [sym_field_expression] = STATE(4149), + [sym_compound_literal_expression] = STATE(4141), + [sym_parenthesized_expression] = STATE(4149), + [sym_initializer_list] = STATE(4229), + [sym_char_literal] = STATE(4104), + [sym_concatenated_string] = STATE(4104), + [sym_string_literal] = STATE(2642), + [sym_null] = STATE(4141), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8879), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4141), + [sym_raw_string_literal] = STATE(2642), + [sym_co_await_expression] = STATE(4141), + [sym_new_expression] = STATE(4141), + [sym_delete_expression] = STATE(4141), + [sym_requires_clause] = STATE(4141), + [sym_requires_expression] = STATE(4141), + [sym_lambda_expression] = STATE(4141), + [sym_lambda_capture_specifier] = STATE(6832), + [sym_fold_expression] = STATE(4141), + [sym_parameter_pack_expansion] = STATE(4141), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4149), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4149), + [sym_semgrep_ellipsis] = STATE(4146), + [sym_deep_ellipsis] = STATE(4146), + [sym_identifier] = ACTIONS(2981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2285), + [anon_sym_LPAREN2] = ACTIONS(2277), + [anon_sym_BANG] = ACTIONS(2983), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_PERCENT] = ACTIONS(2285), + [anon_sym_PIPE_PIPE] = ACTIONS(2277), + [anon_sym_AMP_AMP] = ACTIONS(2277), + [anon_sym_PIPE] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2285), + [anon_sym_EQ_EQ] = ACTIONS(2277), + [anon_sym_BANG_EQ] = ACTIONS(2277), + [anon_sym_GT] = ACTIONS(2285), + [anon_sym_GT_EQ] = ACTIONS(2277), + [anon_sym_LT_EQ] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_LT_LT] = ACTIONS(2285), + [anon_sym_GT_GT] = ACTIONS(2285), + [anon_sym_COLON_COLON] = ACTIONS(2987), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_LBRACK] = ACTIONS(2277), + [anon_sym_EQ] = ACTIONS(2285), + [sym_primitive_type] = ACTIONS(2991), + [anon_sym_QMARK] = ACTIONS(2277), + [anon_sym_STAR_EQ] = ACTIONS(2277), + [anon_sym_SLASH_EQ] = ACTIONS(2277), + [anon_sym_PERCENT_EQ] = ACTIONS(2277), + [anon_sym_PLUS_EQ] = ACTIONS(2277), + [anon_sym_DASH_EQ] = ACTIONS(2277), + [anon_sym_LT_LT_EQ] = ACTIONS(2277), + [anon_sym_GT_GT_EQ] = ACTIONS(2277), + [anon_sym_AMP_EQ] = ACTIONS(2277), + [anon_sym_CARET_EQ] = ACTIONS(2277), + [anon_sym_PIPE_EQ] = ACTIONS(2277), + [anon_sym_and_eq] = ACTIONS(2285), + [anon_sym_or_eq] = ACTIONS(2285), + [anon_sym_xor_eq] = ACTIONS(2285), + [anon_sym_not] = ACTIONS(2983), + [anon_sym_compl] = ACTIONS(2983), + [anon_sym_LT_EQ_GT] = ACTIONS(2277), + [anon_sym_or] = ACTIONS(2285), + [anon_sym_and] = ACTIONS(2285), + [anon_sym_bitor] = ACTIONS(2285), + [anon_sym_xor] = ACTIONS(2285), + [anon_sym_bitand] = ACTIONS(2285), + [anon_sym_not_eq] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2277), + [anon_sym_PLUS_PLUS] = ACTIONS(2277), [anon_sym_sizeof] = ACTIONS(2993), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [anon_sym_DOT] = ACTIONS(2279), - [anon_sym_DOT_STAR] = ACTIONS(2281), - [anon_sym_DASH_GT] = ACTIONS(2281), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), + [anon_sym___alignof__] = ACTIONS(2995), + [anon_sym___alignof] = ACTIONS(2995), + [anon_sym__alignof] = ACTIONS(2995), + [anon_sym_alignof] = ACTIONS(2995), + [anon_sym__Alignof] = ACTIONS(2995), + [anon_sym_offsetof] = ACTIONS(2997), + [anon_sym__Generic] = ACTIONS(2999), + [anon_sym_asm] = ACTIONS(3001), + [anon_sym___asm__] = ACTIONS(3001), + [anon_sym_DOT] = ACTIONS(2285), + [anon_sym_DOT_STAR] = ACTIONS(2277), + [anon_sym_DASH_GT] = ACTIONS(2277), + [sym_number_literal] = ACTIONS(3003), + [anon_sym_L_SQUOTE] = ACTIONS(3005), + [anon_sym_u_SQUOTE] = ACTIONS(3005), + [anon_sym_U_SQUOTE] = ACTIONS(3005), + [anon_sym_u8_SQUOTE] = ACTIONS(3005), + [anon_sym_SQUOTE] = ACTIONS(3005), + [anon_sym_L_DQUOTE] = ACTIONS(3007), + [anon_sym_u_DQUOTE] = ACTIONS(3007), + [anon_sym_U_DQUOTE] = ACTIONS(3007), + [anon_sym_u8_DQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE] = ACTIONS(3007), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [anon_sym_NULL] = ACTIONS(3011), + [anon_sym_nullptr] = ACTIONS(3011), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2995), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2997), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3013), + [anon_sym_R_DQUOTE] = ACTIONS(3015), + [anon_sym_LR_DQUOTE] = ACTIONS(3015), + [anon_sym_uR_DQUOTE] = ACTIONS(3015), + [anon_sym_UR_DQUOTE] = ACTIONS(3015), + [anon_sym_u8R_DQUOTE] = ACTIONS(3015), + [anon_sym_co_await] = ACTIONS(3017), + [anon_sym_new] = ACTIONS(3019), + [anon_sym_requires] = ACTIONS(3021), + [sym_this] = ACTIONS(3009), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3023), + [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(2277), + [sym_semgrep_named_ellipsis] = ACTIONS(3025), }, [263] = { - [sym_expression] = STATE(3982), - [sym_expression_not_binary] = STATE(4505), - [sym_conditional_expression] = STATE(4488), - [sym_assignment_expression] = STATE(4488), - [sym_pointer_expression] = STATE(4524), - [sym_unary_expression] = STATE(4488), - [sym_binary_expression] = STATE(4505), - [sym_update_expression] = STATE(4488), - [sym_cast_expression] = STATE(4488), - [sym_sizeof_expression] = STATE(4488), - [sym_alignof_expression] = STATE(4488), - [sym_offsetof_expression] = STATE(4488), - [sym_generic_expression] = STATE(4488), - [sym_subscript_expression] = STATE(4524), - [sym_call_expression] = STATE(4524), - [sym_gnu_asm_expression] = STATE(4488), - [sym_field_expression] = STATE(4524), - [sym_compound_literal_expression] = STATE(4488), - [sym_parenthesized_expression] = STATE(4524), - [sym_initializer_list] = STATE(4431), - [sym_char_literal] = STATE(4272), - [sym_concatenated_string] = STATE(4272), - [sym_string_literal] = STATE(2514), - [sym_null] = STATE(4488), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9512), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4488), - [sym_raw_string_literal] = STATE(2514), - [sym_co_await_expression] = STATE(4488), - [sym_new_expression] = STATE(4488), - [sym_delete_expression] = STATE(4488), - [sym_requires_clause] = STATE(4488), - [sym_requires_expression] = STATE(4488), - [sym_lambda_expression] = STATE(4488), - [sym_lambda_capture_specifier] = STATE(7259), - [sym_fold_expression] = STATE(4488), - [sym_parameter_pack_expansion] = STATE(4488), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4524), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4524), - [sym_semgrep_ellipsis] = STATE(4505), - [sym_deep_ellipsis] = STATE(4505), - [sym_identifier] = ACTIONS(2999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2279), - [anon_sym_LPAREN2] = ACTIONS(2281), - [anon_sym_BANG] = ACTIONS(3001), - [anon_sym_TILDE] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2279), - [anon_sym_STAR] = ACTIONS(2279), - [anon_sym_SLASH] = ACTIONS(2279), - [anon_sym_PERCENT] = ACTIONS(2279), - [anon_sym_PIPE_PIPE] = ACTIONS(2281), - [anon_sym_AMP_AMP] = ACTIONS(2281), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_CARET] = ACTIONS(2279), - [anon_sym_AMP] = ACTIONS(2279), - [anon_sym_EQ_EQ] = ACTIONS(2281), - [anon_sym_BANG_EQ] = ACTIONS(2281), - [anon_sym_GT] = ACTIONS(2279), - [anon_sym_GT_EQ] = ACTIONS(2281), - [anon_sym_LT_EQ] = ACTIONS(2279), - [anon_sym_LT] = ACTIONS(2279), - [anon_sym_LT_LT] = ACTIONS(2279), - [anon_sym_GT_GT] = ACTIONS(2279), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_LBRACK] = ACTIONS(2281), - [anon_sym_EQ] = ACTIONS(2279), - [sym_primitive_type] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(2281), - [anon_sym_STAR_EQ] = ACTIONS(2281), - [anon_sym_SLASH_EQ] = ACTIONS(2281), - [anon_sym_PERCENT_EQ] = ACTIONS(2281), - [anon_sym_PLUS_EQ] = ACTIONS(2281), - [anon_sym_DASH_EQ] = ACTIONS(2281), - [anon_sym_LT_LT_EQ] = ACTIONS(2281), - [anon_sym_GT_GT_EQ] = ACTIONS(2281), - [anon_sym_AMP_EQ] = ACTIONS(2281), - [anon_sym_CARET_EQ] = ACTIONS(2281), - [anon_sym_PIPE_EQ] = ACTIONS(2281), - [anon_sym_and_eq] = ACTIONS(2279), - [anon_sym_or_eq] = ACTIONS(2279), - [anon_sym_xor_eq] = ACTIONS(2279), - [anon_sym_not] = ACTIONS(3001), - [anon_sym_compl] = ACTIONS(3001), - [anon_sym_LT_EQ_GT] = ACTIONS(2281), - [anon_sym_or] = ACTIONS(2279), - [anon_sym_and] = ACTIONS(2279), - [anon_sym_bitor] = ACTIONS(2279), - [anon_sym_xor] = ACTIONS(2279), - [anon_sym_bitand] = ACTIONS(2279), - [anon_sym_not_eq] = ACTIONS(2279), - [anon_sym_DASH_DASH] = ACTIONS(2281), - [anon_sym_PLUS_PLUS] = ACTIONS(2281), - [anon_sym_sizeof] = ACTIONS(3011), - [anon_sym___alignof__] = ACTIONS(3013), - [anon_sym___alignof] = ACTIONS(3013), - [anon_sym__alignof] = ACTIONS(3013), - [anon_sym_alignof] = ACTIONS(3013), - [anon_sym__Alignof] = ACTIONS(3013), - [anon_sym_offsetof] = ACTIONS(3015), - [anon_sym__Generic] = ACTIONS(3017), - [anon_sym_asm] = ACTIONS(3019), - [anon_sym___asm__] = ACTIONS(3019), - [anon_sym_DOT] = ACTIONS(2279), - [anon_sym_DOT_STAR] = ACTIONS(2281), - [anon_sym_DASH_GT] = ACTIONS(2281), - [sym_number_literal] = ACTIONS(3021), - [anon_sym_L_SQUOTE] = ACTIONS(3023), - [anon_sym_u_SQUOTE] = ACTIONS(3023), - [anon_sym_U_SQUOTE] = ACTIONS(3023), - [anon_sym_u8_SQUOTE] = ACTIONS(3023), - [anon_sym_SQUOTE] = ACTIONS(3023), - [anon_sym_L_DQUOTE] = ACTIONS(3025), - [anon_sym_u_DQUOTE] = ACTIONS(3025), - [anon_sym_U_DQUOTE] = ACTIONS(3025), - [anon_sym_u8_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), + [sym_catch_clause] = STATE(263), + [aux_sym_constructor_try_statement_repeat1] = STATE(263), + [sym_identifier] = ACTIONS(3027), + [aux_sym_preproc_include_token1] = ACTIONS(3027), + [aux_sym_preproc_def_token1] = ACTIONS(3027), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3029), + [aux_sym_preproc_if_token1] = ACTIONS(3027), + [aux_sym_preproc_if_token2] = ACTIONS(3027), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3027), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3027), + [aux_sym_preproc_else_token1] = ACTIONS(3027), + [aux_sym_preproc_elif_token1] = ACTIONS(3027), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3027), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3027), + [sym_preproc_directive] = ACTIONS(3027), + [anon_sym_LPAREN2] = ACTIONS(3029), + [anon_sym_BANG] = ACTIONS(3029), + [anon_sym_TILDE] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3027), + [anon_sym_STAR] = ACTIONS(3029), + [anon_sym_AMP_AMP] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3027), + [anon_sym_SEMI] = ACTIONS(3029), + [anon_sym___extension__] = ACTIONS(3027), + [anon_sym_typedef] = ACTIONS(3027), + [anon_sym_extern] = ACTIONS(3027), + [anon_sym___attribute__] = ACTIONS(3027), + [anon_sym_COLON_COLON] = ACTIONS(3029), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3029), + [anon_sym___declspec] = ACTIONS(3027), + [anon_sym___based] = ACTIONS(3027), + [anon_sym___cdecl] = ACTIONS(3027), + [anon_sym___clrcall] = ACTIONS(3027), + [anon_sym___stdcall] = ACTIONS(3027), + [anon_sym___fastcall] = ACTIONS(3027), + [anon_sym___thiscall] = ACTIONS(3027), + [anon_sym___vectorcall] = ACTIONS(3027), + [anon_sym_LBRACE] = ACTIONS(3029), + [anon_sym_signed] = ACTIONS(3027), + [anon_sym_unsigned] = ACTIONS(3027), + [anon_sym_long] = ACTIONS(3027), + [anon_sym_short] = ACTIONS(3027), + [anon_sym_LBRACK] = ACTIONS(3027), + [anon_sym_static] = ACTIONS(3027), + [anon_sym_register] = ACTIONS(3027), + [anon_sym_inline] = ACTIONS(3027), + [anon_sym___inline] = ACTIONS(3027), + [anon_sym___inline__] = ACTIONS(3027), + [anon_sym___forceinline] = ACTIONS(3027), + [anon_sym_thread_local] = ACTIONS(3027), + [anon_sym___thread] = ACTIONS(3027), + [anon_sym_const] = ACTIONS(3027), + [anon_sym_constexpr] = ACTIONS(3027), + [anon_sym_volatile] = ACTIONS(3027), + [anon_sym_restrict] = ACTIONS(3027), + [anon_sym___restrict__] = ACTIONS(3027), + [anon_sym__Atomic] = ACTIONS(3027), + [anon_sym__Noreturn] = ACTIONS(3027), + [anon_sym_noreturn] = ACTIONS(3027), + [anon_sym_mutable] = ACTIONS(3027), + [anon_sym_constinit] = ACTIONS(3027), + [anon_sym_consteval] = ACTIONS(3027), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3027), + [anon_sym_class] = ACTIONS(3027), + [anon_sym_struct] = ACTIONS(3027), + [anon_sym_union] = ACTIONS(3027), + [anon_sym_if] = ACTIONS(3027), + [anon_sym_else] = ACTIONS(3027), + [anon_sym_switch] = ACTIONS(3027), + [anon_sym_case] = ACTIONS(3027), + [anon_sym_default] = ACTIONS(3027), + [anon_sym_while] = ACTIONS(3027), + [anon_sym_do] = ACTIONS(3027), + [anon_sym_for] = ACTIONS(3027), + [anon_sym_return] = ACTIONS(3027), + [anon_sym_break] = ACTIONS(3027), + [anon_sym_continue] = ACTIONS(3027), + [anon_sym_goto] = ACTIONS(3027), + [anon_sym___try] = ACTIONS(3027), + [anon_sym___leave] = ACTIONS(3027), + [anon_sym_not] = ACTIONS(3027), + [anon_sym_compl] = ACTIONS(3027), + [anon_sym_DASH_DASH] = ACTIONS(3029), + [anon_sym_PLUS_PLUS] = ACTIONS(3029), + [anon_sym_sizeof] = ACTIONS(3027), + [anon_sym___alignof__] = ACTIONS(3027), + [anon_sym___alignof] = ACTIONS(3027), + [anon_sym__alignof] = ACTIONS(3027), + [anon_sym_alignof] = ACTIONS(3027), + [anon_sym__Alignof] = ACTIONS(3027), + [anon_sym_offsetof] = ACTIONS(3027), + [anon_sym__Generic] = ACTIONS(3027), + [anon_sym_asm] = ACTIONS(3027), + [anon_sym___asm__] = ACTIONS(3027), + [sym_number_literal] = ACTIONS(3029), + [anon_sym_L_SQUOTE] = ACTIONS(3029), + [anon_sym_u_SQUOTE] = ACTIONS(3029), + [anon_sym_U_SQUOTE] = ACTIONS(3029), + [anon_sym_u8_SQUOTE] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3029), + [anon_sym_L_DQUOTE] = ACTIONS(3029), + [anon_sym_u_DQUOTE] = ACTIONS(3029), + [anon_sym_U_DQUOTE] = ACTIONS(3029), + [anon_sym_u8_DQUOTE] = ACTIONS(3029), + [anon_sym_DQUOTE] = ACTIONS(3029), [sym_true] = ACTIONS(3027), [sym_false] = ACTIONS(3027), - [anon_sym_NULL] = ACTIONS(3029), - [anon_sym_nullptr] = ACTIONS(3029), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(3033), - [anon_sym_LR_DQUOTE] = ACTIONS(3033), - [anon_sym_uR_DQUOTE] = ACTIONS(3033), - [anon_sym_UR_DQUOTE] = ACTIONS(3033), - [anon_sym_u8R_DQUOTE] = ACTIONS(3033), - [anon_sym_co_await] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_requires] = ACTIONS(3039), + [anon_sym_NULL] = ACTIONS(3027), + [anon_sym_nullptr] = ACTIONS(3027), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3027), + [anon_sym_decltype] = ACTIONS(3027), + [anon_sym_virtual] = ACTIONS(3027), + [anon_sym_alignas] = ACTIONS(3027), + [anon_sym_explicit] = ACTIONS(3027), + [anon_sym_typename] = ACTIONS(3027), + [anon_sym_template] = ACTIONS(3027), + [anon_sym_operator] = ACTIONS(3027), + [anon_sym_try] = ACTIONS(3027), + [anon_sym_delete] = ACTIONS(3027), + [anon_sym_throw] = ACTIONS(3027), + [anon_sym_namespace] = ACTIONS(3027), + [anon_sym_using] = ACTIONS(3027), + [anon_sym_static_assert] = ACTIONS(3027), + [anon_sym_concept] = ACTIONS(3027), + [anon_sym_co_return] = ACTIONS(3027), + [anon_sym_co_yield] = ACTIONS(3027), + [anon_sym_catch] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(3029), + [anon_sym_LR_DQUOTE] = ACTIONS(3029), + [anon_sym_uR_DQUOTE] = ACTIONS(3029), + [anon_sym_UR_DQUOTE] = ACTIONS(3029), + [anon_sym_u8R_DQUOTE] = ACTIONS(3029), + [anon_sym_co_await] = ACTIONS(3027), + [anon_sym_new] = ACTIONS(3027), + [anon_sym_requires] = ACTIONS(3027), [sym_this] = ACTIONS(3027), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3041), - [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(2281), - [sym_semgrep_named_ellipsis] = ACTIONS(3043), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3029), + [sym_semgrep_named_ellipsis] = ACTIONS(3029), }, [264] = { - [sym_type_qualifier] = STATE(5043), - [sym_type_specifier] = STATE(6255), - [sym_sized_type_specifier] = STATE(2630), - [sym_enum_specifier] = STATE(2630), - [sym_struct_specifier] = STATE(2630), - [sym_union_specifier] = STATE(2630), - [sym_expression] = STATE(3418), - [sym_expression_not_binary] = STATE(4050), - [sym_comma_expression] = STATE(10483), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_type_descriptor] = STATE(9592), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_placeholder_type_specifier] = STATE(2630), - [sym_decltype_auto] = STATE(2627), - [sym_decltype] = STATE(2479), - [sym_class_specifier] = STATE(2630), - [sym_class_name] = STATE(9276), - [sym_dependent_type] = STATE(2630), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_unary_left_fold] = STATE(9657), - [sym_unary_right_fold] = STATE(9657), - [sym_binary_fold] = STATE(9657), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7165), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(6799), - [sym_assignment_expression_lhs_expression] = STATE(10483), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_typed_metavar] = STATE(10483), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [aux_sym_type_definition_type_repeat1] = STATE(5043), - [aux_sym_sized_type_specifier_repeat1] = STATE(6372), - [sym_identifier] = ACTIONS(3045), + [sym_expression] = STATE(4106), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_initializer_list] = STATE(4256), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2277), + [anon_sym_COMMA] = ACTIONS(2277), + [anon_sym_RPAREN] = ACTIONS(2277), + [anon_sym_LPAREN2] = ACTIONS(2277), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_PERCENT] = ACTIONS(2285), + [anon_sym_PIPE_PIPE] = ACTIONS(2277), + [anon_sym_AMP_AMP] = ACTIONS(2277), + [anon_sym_PIPE] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2285), + [anon_sym_EQ_EQ] = ACTIONS(2277), + [anon_sym_BANG_EQ] = ACTIONS(2277), + [anon_sym_GT] = ACTIONS(2285), + [anon_sym_GT_EQ] = ACTIONS(2277), + [anon_sym_LT_EQ] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_LT_LT] = ACTIONS(2285), + [anon_sym_GT_GT] = ACTIONS(2285), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(2277), + [anon_sym_EQ] = ACTIONS(2285), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_QMARK] = ACTIONS(2277), + [anon_sym_STAR_EQ] = ACTIONS(2277), + [anon_sym_SLASH_EQ] = ACTIONS(2277), + [anon_sym_PERCENT_EQ] = ACTIONS(2277), + [anon_sym_PLUS_EQ] = ACTIONS(2277), + [anon_sym_DASH_EQ] = ACTIONS(2277), + [anon_sym_LT_LT_EQ] = ACTIONS(2277), + [anon_sym_GT_GT_EQ] = ACTIONS(2277), + [anon_sym_AMP_EQ] = ACTIONS(2277), + [anon_sym_CARET_EQ] = ACTIONS(2277), + [anon_sym_PIPE_EQ] = ACTIONS(2277), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_LT_EQ_GT] = ACTIONS(2277), + [anon_sym_or] = ACTIONS(2285), + [anon_sym_and] = ACTIONS(2285), + [anon_sym_bitor] = ACTIONS(2285), + [anon_sym_xor] = ACTIONS(2285), + [anon_sym_bitand] = ACTIONS(2285), + [anon_sym_not_eq] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2277), + [anon_sym_PLUS_PLUS] = ACTIONS(2277), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [anon_sym_DOT] = ACTIONS(2285), + [anon_sym_DOT_STAR] = ACTIONS(2277), + [anon_sym_DASH_GT] = ACTIONS(2285), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [anon_sym_DASH_GT_STAR] = ACTIONS(2277), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), + }, + [265] = { + [sym_type_qualifier] = STATE(4684), + [sym_type_specifier] = STATE(5847), + [sym_sized_type_specifier] = STATE(2673), + [sym_enum_specifier] = STATE(2673), + [sym_struct_specifier] = STATE(2673), + [sym_union_specifier] = STATE(2673), + [sym_expression] = STATE(3186), + [sym_expression_not_binary] = STATE(3766), + [sym_comma_expression] = STATE(9246), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_type_descriptor] = STATE(8736), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_placeholder_type_specifier] = STATE(2673), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2580), + [sym_class_specifier] = STATE(2673), + [sym_class_name] = STATE(8737), + [sym_dependent_type] = STATE(2673), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_unary_left_fold] = STATE(9313), + [sym_unary_right_fold] = STATE(9313), + [sym_binary_fold] = STATE(9313), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6631), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(6338), + [sym_assignment_expression_lhs_expression] = STATE(9246), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_typed_metavar] = STATE(9246), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [aux_sym_type_definition_type_repeat1] = STATE(4684), + [aux_sym_sized_type_specifier_repeat1] = STATE(5792), + [sym_identifier] = ACTIONS(3040), [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), - [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3042), [anon_sym_BANG] = ACTIONS(2203), [anon_sym_TILDE] = ACTIONS(2203), [anon_sym_DASH] = ACTIONS(2207), [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_signed] = ACTIONS(2217), - [anon_sym_unsigned] = ACTIONS(2217), - [anon_sym_long] = ACTIONS(2217), - [anon_sym_short] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_signed] = ACTIONS(2215), + [anon_sym_unsigned] = ACTIONS(2215), + [anon_sym_long] = ACTIONS(2215), + [anon_sym_short] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2227), [anon_sym_not] = ACTIONS(2207), [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2253), - [anon_sym_decltype] = ACTIONS(2255), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), - }, - [265] = { - [sym_expression] = STATE(4287), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_initializer_list] = STATE(4542), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2281), - [anon_sym_COMMA] = ACTIONS(2281), - [anon_sym_RPAREN] = ACTIONS(2281), - [anon_sym_LPAREN2] = ACTIONS(2281), - [anon_sym_BANG] = ACTIONS(2129), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2279), - [anon_sym_STAR] = ACTIONS(2279), - [anon_sym_SLASH] = ACTIONS(2279), - [anon_sym_PERCENT] = ACTIONS(2279), - [anon_sym_PIPE_PIPE] = ACTIONS(2281), - [anon_sym_AMP_AMP] = ACTIONS(2281), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_CARET] = ACTIONS(2279), - [anon_sym_AMP] = ACTIONS(2279), - [anon_sym_EQ_EQ] = ACTIONS(2281), - [anon_sym_BANG_EQ] = ACTIONS(2281), - [anon_sym_GT] = ACTIONS(2279), - [anon_sym_GT_EQ] = ACTIONS(2281), - [anon_sym_LT_EQ] = ACTIONS(2279), - [anon_sym_LT] = ACTIONS(2279), - [anon_sym_LT_LT] = ACTIONS(2279), - [anon_sym_GT_GT] = ACTIONS(2279), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(2281), - [anon_sym_EQ] = ACTIONS(2279), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_QMARK] = ACTIONS(2281), - [anon_sym_STAR_EQ] = ACTIONS(2281), - [anon_sym_SLASH_EQ] = ACTIONS(2281), - [anon_sym_PERCENT_EQ] = ACTIONS(2281), - [anon_sym_PLUS_EQ] = ACTIONS(2281), - [anon_sym_DASH_EQ] = ACTIONS(2281), - [anon_sym_LT_LT_EQ] = ACTIONS(2281), - [anon_sym_GT_GT_EQ] = ACTIONS(2281), - [anon_sym_AMP_EQ] = ACTIONS(2281), - [anon_sym_CARET_EQ] = ACTIONS(2281), - [anon_sym_PIPE_EQ] = ACTIONS(2281), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_LT_EQ_GT] = ACTIONS(2281), - [anon_sym_or] = ACTIONS(2279), - [anon_sym_and] = ACTIONS(2279), - [anon_sym_bitor] = ACTIONS(2279), - [anon_sym_xor] = ACTIONS(2279), - [anon_sym_bitand] = ACTIONS(2279), - [anon_sym_not_eq] = ACTIONS(2279), - [anon_sym_DASH_DASH] = ACTIONS(2281), - [anon_sym_PLUS_PLUS] = ACTIONS(2281), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [anon_sym_DOT] = ACTIONS(2279), - [anon_sym_DOT_STAR] = ACTIONS(2281), - [anon_sym_DASH_GT] = ACTIONS(2279), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [anon_sym_DASH_GT_STAR] = ACTIONS(2281), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2251), + [anon_sym_decltype] = ACTIONS(2253), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, [266] = { - [sym_type_qualifier] = STATE(5043), - [sym_type_specifier] = STATE(6255), - [sym_sized_type_specifier] = STATE(2630), - [sym_enum_specifier] = STATE(2630), - [sym_struct_specifier] = STATE(2630), - [sym_union_specifier] = STATE(2630), - [sym_expression] = STATE(3381), - [sym_expression_not_binary] = STATE(4050), - [sym_comma_expression] = STATE(10536), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_type_descriptor] = STATE(9294), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_placeholder_type_specifier] = STATE(2630), - [sym_decltype_auto] = STATE(2627), - [sym_decltype] = STATE(2479), - [sym_class_specifier] = STATE(2630), - [sym_class_name] = STATE(9276), - [sym_dependent_type] = STATE(2630), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_unary_left_fold] = STATE(10143), - [sym_unary_right_fold] = STATE(10143), - [sym_binary_fold] = STATE(10143), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7165), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(6799), - [sym_assignment_expression_lhs_expression] = STATE(10536), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_typed_metavar] = STATE(10536), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [aux_sym_type_definition_type_repeat1] = STATE(5043), - [aux_sym_sized_type_specifier_repeat1] = STATE(6372), - [sym_identifier] = ACTIONS(3045), + [sym_type_qualifier] = STATE(4684), + [sym_type_specifier] = STATE(5847), + [sym_sized_type_specifier] = STATE(2673), + [sym_enum_specifier] = STATE(2673), + [sym_struct_specifier] = STATE(2673), + [sym_union_specifier] = STATE(2673), + [sym_expression] = STATE(3186), + [sym_expression_not_binary] = STATE(3766), + [sym_comma_expression] = STATE(9246), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_type_descriptor] = STATE(8871), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_placeholder_type_specifier] = STATE(2673), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2580), + [sym_class_specifier] = STATE(2673), + [sym_class_name] = STATE(8737), + [sym_dependent_type] = STATE(2673), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_unary_left_fold] = STATE(9256), + [sym_unary_right_fold] = STATE(9256), + [sym_binary_fold] = STATE(9256), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6631), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(6338), + [sym_assignment_expression_lhs_expression] = STATE(9246), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_typed_metavar] = STATE(9246), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [aux_sym_type_definition_type_repeat1] = STATE(4684), + [aux_sym_sized_type_specifier_repeat1] = STATE(5792), + [sym_identifier] = ACTIONS(3040), [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), - [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3042), [anon_sym_BANG] = ACTIONS(2203), [anon_sym_TILDE] = ACTIONS(2203), [anon_sym_DASH] = ACTIONS(2207), [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_signed] = ACTIONS(2217), - [anon_sym_unsigned] = ACTIONS(2217), - [anon_sym_long] = ACTIONS(2217), - [anon_sym_short] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_signed] = ACTIONS(2215), + [anon_sym_unsigned] = ACTIONS(2215), + [anon_sym_long] = ACTIONS(2215), + [anon_sym_short] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2227), [anon_sym_not] = ACTIONS(2207), [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2253), - [anon_sym_decltype] = ACTIONS(2255), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2251), + [anon_sym_decltype] = ACTIONS(2253), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, [267] = { - [sym_type_qualifier] = STATE(5043), - [sym_type_specifier] = STATE(6255), - [sym_sized_type_specifier] = STATE(2630), - [sym_enum_specifier] = STATE(2630), - [sym_struct_specifier] = STATE(2630), - [sym_union_specifier] = STATE(2630), - [sym_expression] = STATE(3463), - [sym_expression_not_binary] = STATE(4050), - [sym_comma_expression] = STATE(10333), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_type_descriptor] = STATE(9426), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_placeholder_type_specifier] = STATE(2630), - [sym_decltype_auto] = STATE(2627), - [sym_decltype] = STATE(2479), - [sym_class_specifier] = STATE(2630), - [sym_class_name] = STATE(9276), - [sym_dependent_type] = STATE(2630), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_unary_left_fold] = STATE(10372), - [sym_unary_right_fold] = STATE(10372), - [sym_binary_fold] = STATE(10372), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7165), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(6799), - [sym_assignment_expression_lhs_expression] = STATE(10333), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_typed_metavar] = STATE(10333), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [aux_sym_type_definition_type_repeat1] = STATE(5043), - [aux_sym_sized_type_specifier_repeat1] = STATE(6372), - [sym_identifier] = ACTIONS(3045), + [sym_type_qualifier] = STATE(4684), + [sym_type_specifier] = STATE(5847), + [sym_sized_type_specifier] = STATE(2673), + [sym_enum_specifier] = STATE(2673), + [sym_struct_specifier] = STATE(2673), + [sym_union_specifier] = STATE(2673), + [sym_expression] = STATE(3175), + [sym_expression_not_binary] = STATE(3766), + [sym_comma_expression] = STATE(9905), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_type_descriptor] = STATE(8679), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_placeholder_type_specifier] = STATE(2673), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2580), + [sym_class_specifier] = STATE(2673), + [sym_class_name] = STATE(8737), + [sym_dependent_type] = STATE(2673), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_unary_left_fold] = STATE(9633), + [sym_unary_right_fold] = STATE(9633), + [sym_binary_fold] = STATE(9633), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6631), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(6338), + [sym_assignment_expression_lhs_expression] = STATE(9905), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_typed_metavar] = STATE(9905), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [aux_sym_type_definition_type_repeat1] = STATE(4684), + [aux_sym_sized_type_specifier_repeat1] = STATE(5792), + [sym_identifier] = ACTIONS(3040), [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), - [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3042), [anon_sym_BANG] = ACTIONS(2203), [anon_sym_TILDE] = ACTIONS(2203), [anon_sym_DASH] = ACTIONS(2207), [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_signed] = ACTIONS(2217), - [anon_sym_unsigned] = ACTIONS(2217), - [anon_sym_long] = ACTIONS(2217), - [anon_sym_short] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_signed] = ACTIONS(2215), + [anon_sym_unsigned] = ACTIONS(2215), + [anon_sym_long] = ACTIONS(2215), + [anon_sym_short] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2227), [anon_sym_not] = ACTIONS(2207), [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2253), - [anon_sym_decltype] = ACTIONS(2255), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2251), + [anon_sym_decltype] = ACTIONS(2253), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, [268] = { - [sym_catch_clause] = STATE(273), - [aux_sym_constructor_try_statement_repeat1] = STATE(273), - [sym_identifier] = ACTIONS(3057), - [aux_sym_preproc_include_token1] = ACTIONS(3057), - [aux_sym_preproc_def_token1] = ACTIONS(3057), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3059), - [aux_sym_preproc_if_token1] = ACTIONS(3057), - [aux_sym_preproc_if_token2] = ACTIONS(3057), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3057), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3057), - [aux_sym_preproc_else_token1] = ACTIONS(3057), - [aux_sym_preproc_elif_token1] = ACTIONS(3057), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3057), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3057), - [sym_preproc_directive] = ACTIONS(3057), - [anon_sym_LPAREN2] = ACTIONS(3059), - [anon_sym_BANG] = ACTIONS(3059), - [anon_sym_TILDE] = ACTIONS(3059), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_AMP_AMP] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_SEMI] = ACTIONS(3059), - [anon_sym___extension__] = ACTIONS(3057), - [anon_sym_typedef] = ACTIONS(3057), - [anon_sym_extern] = ACTIONS(3057), - [anon_sym___attribute__] = ACTIONS(3057), - [anon_sym_COLON_COLON] = ACTIONS(3059), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3059), - [anon_sym___declspec] = ACTIONS(3057), - [anon_sym___based] = ACTIONS(3057), - [anon_sym___cdecl] = ACTIONS(3057), - [anon_sym___clrcall] = ACTIONS(3057), - [anon_sym___stdcall] = ACTIONS(3057), - [anon_sym___fastcall] = ACTIONS(3057), - [anon_sym___thiscall] = ACTIONS(3057), - [anon_sym___vectorcall] = ACTIONS(3057), - [anon_sym_LBRACE] = ACTIONS(3059), - [anon_sym_signed] = ACTIONS(3057), - [anon_sym_unsigned] = ACTIONS(3057), - [anon_sym_long] = ACTIONS(3057), - [anon_sym_short] = ACTIONS(3057), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_static] = ACTIONS(3057), - [anon_sym_register] = ACTIONS(3057), - [anon_sym_inline] = ACTIONS(3057), - [anon_sym___inline] = ACTIONS(3057), - [anon_sym___inline__] = ACTIONS(3057), - [anon_sym___forceinline] = ACTIONS(3057), - [anon_sym_thread_local] = ACTIONS(3057), - [anon_sym___thread] = ACTIONS(3057), - [anon_sym_const] = ACTIONS(3057), - [anon_sym_constexpr] = ACTIONS(3057), - [anon_sym_volatile] = ACTIONS(3057), - [anon_sym_restrict] = ACTIONS(3057), - [anon_sym___restrict__] = ACTIONS(3057), - [anon_sym__Atomic] = ACTIONS(3057), - [anon_sym__Noreturn] = ACTIONS(3057), - [anon_sym_noreturn] = ACTIONS(3057), - [anon_sym_mutable] = ACTIONS(3057), - [anon_sym_constinit] = ACTIONS(3057), - [anon_sym_consteval] = ACTIONS(3057), - [sym_primitive_type] = ACTIONS(3057), - [anon_sym_enum] = ACTIONS(3057), - [anon_sym_class] = ACTIONS(3057), - [anon_sym_struct] = ACTIONS(3057), - [anon_sym_union] = ACTIONS(3057), - [anon_sym_if] = ACTIONS(3057), - [anon_sym_else] = ACTIONS(3057), - [anon_sym_switch] = ACTIONS(3057), - [anon_sym_case] = ACTIONS(3057), - [anon_sym_default] = ACTIONS(3057), - [anon_sym_while] = ACTIONS(3057), - [anon_sym_do] = ACTIONS(3057), - [anon_sym_for] = ACTIONS(3057), - [anon_sym_return] = ACTIONS(3057), - [anon_sym_break] = ACTIONS(3057), - [anon_sym_continue] = ACTIONS(3057), - [anon_sym_goto] = ACTIONS(3057), - [anon_sym___try] = ACTIONS(3057), - [anon_sym___leave] = ACTIONS(3057), - [anon_sym_not] = ACTIONS(3057), - [anon_sym_compl] = ACTIONS(3057), - [anon_sym_DASH_DASH] = ACTIONS(3059), - [anon_sym_PLUS_PLUS] = ACTIONS(3059), - [anon_sym_sizeof] = ACTIONS(3057), - [anon_sym___alignof__] = ACTIONS(3057), - [anon_sym___alignof] = ACTIONS(3057), - [anon_sym__alignof] = ACTIONS(3057), - [anon_sym_alignof] = ACTIONS(3057), - [anon_sym__Alignof] = ACTIONS(3057), - [anon_sym_offsetof] = ACTIONS(3057), - [anon_sym__Generic] = ACTIONS(3057), - [anon_sym_asm] = ACTIONS(3057), - [anon_sym___asm__] = ACTIONS(3057), - [sym_number_literal] = ACTIONS(3059), - [anon_sym_L_SQUOTE] = ACTIONS(3059), - [anon_sym_u_SQUOTE] = ACTIONS(3059), - [anon_sym_U_SQUOTE] = ACTIONS(3059), - [anon_sym_u8_SQUOTE] = ACTIONS(3059), - [anon_sym_SQUOTE] = ACTIONS(3059), - [anon_sym_L_DQUOTE] = ACTIONS(3059), - [anon_sym_u_DQUOTE] = ACTIONS(3059), - [anon_sym_U_DQUOTE] = ACTIONS(3059), - [anon_sym_u8_DQUOTE] = ACTIONS(3059), - [anon_sym_DQUOTE] = ACTIONS(3059), - [sym_true] = ACTIONS(3057), - [sym_false] = ACTIONS(3057), - [anon_sym_NULL] = ACTIONS(3057), - [anon_sym_nullptr] = ACTIONS(3057), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3057), - [anon_sym_decltype] = ACTIONS(3057), - [anon_sym_virtual] = ACTIONS(3057), - [anon_sym_alignas] = ACTIONS(3057), - [anon_sym_explicit] = ACTIONS(3057), - [anon_sym_typename] = ACTIONS(3057), - [anon_sym_template] = ACTIONS(3057), - [anon_sym_operator] = ACTIONS(3057), - [anon_sym_try] = ACTIONS(3057), - [anon_sym_delete] = ACTIONS(3057), - [anon_sym_throw] = ACTIONS(3057), - [anon_sym_namespace] = ACTIONS(3057), - [anon_sym_using] = ACTIONS(3057), - [anon_sym_static_assert] = ACTIONS(3057), - [anon_sym_concept] = ACTIONS(3057), - [anon_sym_co_return] = ACTIONS(3057), - [anon_sym_co_yield] = ACTIONS(3057), - [anon_sym_catch] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(3059), - [anon_sym_LR_DQUOTE] = ACTIONS(3059), - [anon_sym_uR_DQUOTE] = ACTIONS(3059), - [anon_sym_UR_DQUOTE] = ACTIONS(3059), - [anon_sym_u8R_DQUOTE] = ACTIONS(3059), - [anon_sym_co_await] = ACTIONS(3057), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(3057), - [sym_this] = ACTIONS(3057), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3059), - [sym_semgrep_named_ellipsis] = ACTIONS(3059), + [sym_catch_clause] = STATE(263), + [aux_sym_constructor_try_statement_repeat1] = STATE(263), + [sym_identifier] = ACTIONS(3046), + [aux_sym_preproc_include_token1] = ACTIONS(3046), + [aux_sym_preproc_def_token1] = ACTIONS(3046), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3046), + [aux_sym_preproc_if_token2] = ACTIONS(3046), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3046), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3046), + [aux_sym_preproc_else_token1] = ACTIONS(3046), + [aux_sym_preproc_elif_token1] = ACTIONS(3046), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3046), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3046), + [sym_preproc_directive] = ACTIONS(3046), + [anon_sym_LPAREN2] = ACTIONS(3048), + [anon_sym_BANG] = ACTIONS(3048), + [anon_sym_TILDE] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3046), + [anon_sym_PLUS] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(3048), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym_SEMI] = ACTIONS(3048), + [anon_sym___extension__] = ACTIONS(3046), + [anon_sym_typedef] = ACTIONS(3046), + [anon_sym_extern] = ACTIONS(3046), + [anon_sym___attribute__] = ACTIONS(3046), + [anon_sym_COLON_COLON] = ACTIONS(3048), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3048), + [anon_sym___declspec] = ACTIONS(3046), + [anon_sym___based] = ACTIONS(3046), + [anon_sym___cdecl] = ACTIONS(3046), + [anon_sym___clrcall] = ACTIONS(3046), + [anon_sym___stdcall] = ACTIONS(3046), + [anon_sym___fastcall] = ACTIONS(3046), + [anon_sym___thiscall] = ACTIONS(3046), + [anon_sym___vectorcall] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3046), + [anon_sym_unsigned] = ACTIONS(3046), + [anon_sym_long] = ACTIONS(3046), + [anon_sym_short] = ACTIONS(3046), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_static] = ACTIONS(3046), + [anon_sym_register] = ACTIONS(3046), + [anon_sym_inline] = ACTIONS(3046), + [anon_sym___inline] = ACTIONS(3046), + [anon_sym___inline__] = ACTIONS(3046), + [anon_sym___forceinline] = ACTIONS(3046), + [anon_sym_thread_local] = ACTIONS(3046), + [anon_sym___thread] = ACTIONS(3046), + [anon_sym_const] = ACTIONS(3046), + [anon_sym_constexpr] = ACTIONS(3046), + [anon_sym_volatile] = ACTIONS(3046), + [anon_sym_restrict] = ACTIONS(3046), + [anon_sym___restrict__] = ACTIONS(3046), + [anon_sym__Atomic] = ACTIONS(3046), + [anon_sym__Noreturn] = ACTIONS(3046), + [anon_sym_noreturn] = ACTIONS(3046), + [anon_sym_mutable] = ACTIONS(3046), + [anon_sym_constinit] = ACTIONS(3046), + [anon_sym_consteval] = ACTIONS(3046), + [sym_primitive_type] = ACTIONS(3046), + [anon_sym_enum] = ACTIONS(3046), + [anon_sym_class] = ACTIONS(3046), + [anon_sym_struct] = ACTIONS(3046), + [anon_sym_union] = ACTIONS(3046), + [anon_sym_if] = ACTIONS(3046), + [anon_sym_else] = ACTIONS(3046), + [anon_sym_switch] = ACTIONS(3046), + [anon_sym_case] = ACTIONS(3046), + [anon_sym_default] = ACTIONS(3046), + [anon_sym_while] = ACTIONS(3046), + [anon_sym_do] = ACTIONS(3046), + [anon_sym_for] = ACTIONS(3046), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_break] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(3046), + [anon_sym_goto] = ACTIONS(3046), + [anon_sym___try] = ACTIONS(3046), + [anon_sym___leave] = ACTIONS(3046), + [anon_sym_not] = ACTIONS(3046), + [anon_sym_compl] = ACTIONS(3046), + [anon_sym_DASH_DASH] = ACTIONS(3048), + [anon_sym_PLUS_PLUS] = ACTIONS(3048), + [anon_sym_sizeof] = ACTIONS(3046), + [anon_sym___alignof__] = ACTIONS(3046), + [anon_sym___alignof] = ACTIONS(3046), + [anon_sym__alignof] = ACTIONS(3046), + [anon_sym_alignof] = ACTIONS(3046), + [anon_sym__Alignof] = ACTIONS(3046), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3046), + [anon_sym_asm] = ACTIONS(3046), + [anon_sym___asm__] = ACTIONS(3046), + [sym_number_literal] = ACTIONS(3048), + [anon_sym_L_SQUOTE] = ACTIONS(3048), + [anon_sym_u_SQUOTE] = ACTIONS(3048), + [anon_sym_U_SQUOTE] = ACTIONS(3048), + [anon_sym_u8_SQUOTE] = ACTIONS(3048), + [anon_sym_SQUOTE] = ACTIONS(3048), + [anon_sym_L_DQUOTE] = ACTIONS(3048), + [anon_sym_u_DQUOTE] = ACTIONS(3048), + [anon_sym_U_DQUOTE] = ACTIONS(3048), + [anon_sym_u8_DQUOTE] = ACTIONS(3048), + [anon_sym_DQUOTE] = ACTIONS(3048), + [sym_true] = ACTIONS(3046), + [sym_false] = ACTIONS(3046), + [anon_sym_NULL] = ACTIONS(3046), + [anon_sym_nullptr] = ACTIONS(3046), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3046), + [anon_sym_decltype] = ACTIONS(3046), + [anon_sym_virtual] = ACTIONS(3046), + [anon_sym_alignas] = ACTIONS(3046), + [anon_sym_explicit] = ACTIONS(3046), + [anon_sym_typename] = ACTIONS(3046), + [anon_sym_template] = ACTIONS(3046), + [anon_sym_operator] = ACTIONS(3046), + [anon_sym_try] = ACTIONS(3046), + [anon_sym_delete] = ACTIONS(3046), + [anon_sym_throw] = ACTIONS(3046), + [anon_sym_namespace] = ACTIONS(3046), + [anon_sym_using] = ACTIONS(3046), + [anon_sym_static_assert] = ACTIONS(3046), + [anon_sym_concept] = ACTIONS(3046), + [anon_sym_co_return] = ACTIONS(3046), + [anon_sym_co_yield] = ACTIONS(3046), + [anon_sym_catch] = ACTIONS(3050), + [anon_sym_R_DQUOTE] = ACTIONS(3048), + [anon_sym_LR_DQUOTE] = ACTIONS(3048), + [anon_sym_uR_DQUOTE] = ACTIONS(3048), + [anon_sym_UR_DQUOTE] = ACTIONS(3048), + [anon_sym_u8R_DQUOTE] = ACTIONS(3048), + [anon_sym_co_await] = ACTIONS(3046), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_requires] = ACTIONS(3046), + [sym_this] = ACTIONS(3046), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3048), + [sym_semgrep_named_ellipsis] = ACTIONS(3048), }, [269] = { - [sym_type_qualifier] = STATE(5043), - [sym_type_specifier] = STATE(6255), - [sym_sized_type_specifier] = STATE(2630), - [sym_enum_specifier] = STATE(2630), - [sym_struct_specifier] = STATE(2630), - [sym_union_specifier] = STATE(2630), - [sym_expression] = STATE(3463), - [sym_expression_not_binary] = STATE(4050), - [sym_comma_expression] = STATE(10333), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_type_descriptor] = STATE(9315), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_placeholder_type_specifier] = STATE(2630), - [sym_decltype_auto] = STATE(2627), - [sym_decltype] = STATE(2479), - [sym_class_specifier] = STATE(2630), - [sym_class_name] = STATE(9276), - [sym_dependent_type] = STATE(2630), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_unary_left_fold] = STATE(10372), - [sym_unary_right_fold] = STATE(10372), - [sym_binary_fold] = STATE(10372), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7165), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(6799), - [sym_assignment_expression_lhs_expression] = STATE(10333), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_typed_metavar] = STATE(10333), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [aux_sym_type_definition_type_repeat1] = STATE(5043), - [aux_sym_sized_type_specifier_repeat1] = STATE(6372), - [sym_identifier] = ACTIONS(3045), + [sym_type_qualifier] = STATE(4684), + [sym_type_specifier] = STATE(5847), + [sym_sized_type_specifier] = STATE(2673), + [sym_enum_specifier] = STATE(2673), + [sym_struct_specifier] = STATE(2673), + [sym_union_specifier] = STATE(2673), + [sym_expression] = STATE(3184), + [sym_expression_not_binary] = STATE(3766), + [sym_comma_expression] = STATE(10022), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_type_descriptor] = STATE(8724), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_placeholder_type_specifier] = STATE(2673), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2580), + [sym_class_specifier] = STATE(2673), + [sym_class_name] = STATE(8737), + [sym_dependent_type] = STATE(2673), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_unary_left_fold] = STATE(9397), + [sym_unary_right_fold] = STATE(9397), + [sym_binary_fold] = STATE(9397), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6631), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(6338), + [sym_assignment_expression_lhs_expression] = STATE(10022), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_typed_metavar] = STATE(10022), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [aux_sym_type_definition_type_repeat1] = STATE(4684), + [aux_sym_sized_type_specifier_repeat1] = STATE(5792), + [sym_identifier] = ACTIONS(3040), [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), - [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3042), [anon_sym_BANG] = ACTIONS(2203), [anon_sym_TILDE] = ACTIONS(2203), [anon_sym_DASH] = ACTIONS(2207), [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_signed] = ACTIONS(2217), - [anon_sym_unsigned] = ACTIONS(2217), - [anon_sym_long] = ACTIONS(2217), - [anon_sym_short] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_signed] = ACTIONS(2215), + [anon_sym_unsigned] = ACTIONS(2215), + [anon_sym_long] = ACTIONS(2215), + [anon_sym_short] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2227), [anon_sym_not] = ACTIONS(2207), [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2253), - [anon_sym_decltype] = ACTIONS(2255), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2251), + [anon_sym_decltype] = ACTIONS(2253), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, [270] = { - [sym_type_qualifier] = STATE(5043), - [sym_type_specifier] = STATE(6255), - [sym_sized_type_specifier] = STATE(2630), - [sym_enum_specifier] = STATE(2630), - [sym_struct_specifier] = STATE(2630), - [sym_union_specifier] = STATE(2630), - [sym_expression] = STATE(3418), - [sym_expression_not_binary] = STATE(4050), - [sym_comma_expression] = STATE(10483), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_type_descriptor] = STATE(9532), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_placeholder_type_specifier] = STATE(2630), - [sym_decltype_auto] = STATE(2627), - [sym_decltype] = STATE(2479), - [sym_class_specifier] = STATE(2630), - [sym_class_name] = STATE(9276), - [sym_dependent_type] = STATE(2630), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_unary_left_fold] = STATE(10545), - [sym_unary_right_fold] = STATE(10545), - [sym_binary_fold] = STATE(10545), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7165), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(6799), - [sym_assignment_expression_lhs_expression] = STATE(10483), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_typed_metavar] = STATE(10483), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [aux_sym_type_definition_type_repeat1] = STATE(5043), - [aux_sym_sized_type_specifier_repeat1] = STATE(6372), - [sym_identifier] = ACTIONS(3045), + [sym_type_qualifier] = STATE(4684), + [sym_type_specifier] = STATE(5847), + [sym_sized_type_specifier] = STATE(2673), + [sym_enum_specifier] = STATE(2673), + [sym_struct_specifier] = STATE(2673), + [sym_union_specifier] = STATE(2673), + [sym_expression] = STATE(3184), + [sym_expression_not_binary] = STATE(3766), + [sym_comma_expression] = STATE(10022), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_type_descriptor] = STATE(9072), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_placeholder_type_specifier] = STATE(2673), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2580), + [sym_class_specifier] = STATE(2673), + [sym_class_name] = STATE(8737), + [sym_dependent_type] = STATE(2673), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_unary_left_fold] = STATE(9216), + [sym_unary_right_fold] = STATE(9216), + [sym_binary_fold] = STATE(9216), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6631), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(6338), + [sym_assignment_expression_lhs_expression] = STATE(10022), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_typed_metavar] = STATE(10022), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [aux_sym_type_definition_type_repeat1] = STATE(4684), + [aux_sym_sized_type_specifier_repeat1] = STATE(5792), + [sym_identifier] = ACTIONS(3040), [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), - [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3042), [anon_sym_BANG] = ACTIONS(2203), [anon_sym_TILDE] = ACTIONS(2203), [anon_sym_DASH] = ACTIONS(2207), [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_signed] = ACTIONS(2217), - [anon_sym_unsigned] = ACTIONS(2217), - [anon_sym_long] = ACTIONS(2217), - [anon_sym_short] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_signed] = ACTIONS(2215), + [anon_sym_unsigned] = ACTIONS(2215), + [anon_sym_long] = ACTIONS(2215), + [anon_sym_short] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2227), [anon_sym_not] = ACTIONS(2207), [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2253), - [anon_sym_decltype] = ACTIONS(2255), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2251), + [anon_sym_decltype] = ACTIONS(2253), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, [271] = { - [sym_type_qualifier] = STATE(5043), - [sym_type_specifier] = STATE(6255), - [sym_sized_type_specifier] = STATE(2630), - [sym_enum_specifier] = STATE(2630), - [sym_struct_specifier] = STATE(2630), - [sym_union_specifier] = STATE(2630), - [sym_expression] = STATE(3418), - [sym_expression_not_binary] = STATE(4050), - [sym_comma_expression] = STATE(10483), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_type_descriptor] = STATE(9326), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_placeholder_type_specifier] = STATE(2630), - [sym_decltype_auto] = STATE(2627), - [sym_decltype] = STATE(2479), - [sym_class_specifier] = STATE(2630), - [sym_class_name] = STATE(9276), - [sym_dependent_type] = STATE(2630), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_unary_left_fold] = STATE(10545), - [sym_unary_right_fold] = STATE(10545), - [sym_binary_fold] = STATE(10545), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7165), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(6799), - [sym_assignment_expression_lhs_expression] = STATE(10483), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_typed_metavar] = STATE(10483), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [aux_sym_type_definition_type_repeat1] = STATE(5043), - [aux_sym_sized_type_specifier_repeat1] = STATE(6372), - [sym_identifier] = ACTIONS(3045), + [sym_type_qualifier] = STATE(4684), + [sym_type_specifier] = STATE(5847), + [sym_sized_type_specifier] = STATE(2673), + [sym_enum_specifier] = STATE(2673), + [sym_struct_specifier] = STATE(2673), + [sym_union_specifier] = STATE(2673), + [sym_expression] = STATE(3186), + [sym_expression_not_binary] = STATE(3766), + [sym_comma_expression] = STATE(9246), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_type_descriptor] = STATE(8794), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_placeholder_type_specifier] = STATE(2673), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2580), + [sym_class_specifier] = STATE(2673), + [sym_class_name] = STATE(8737), + [sym_dependent_type] = STATE(2673), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_unary_left_fold] = STATE(9313), + [sym_unary_right_fold] = STATE(9313), + [sym_binary_fold] = STATE(9313), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6631), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(6338), + [sym_assignment_expression_lhs_expression] = STATE(9246), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_typed_metavar] = STATE(9246), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [aux_sym_type_definition_type_repeat1] = STATE(4684), + [aux_sym_sized_type_specifier_repeat1] = STATE(5792), + [sym_identifier] = ACTIONS(3040), [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), - [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3042), [anon_sym_BANG] = ACTIONS(2203), [anon_sym_TILDE] = ACTIONS(2203), [anon_sym_DASH] = ACTIONS(2207), [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_signed] = ACTIONS(2217), - [anon_sym_unsigned] = ACTIONS(2217), - [anon_sym_long] = ACTIONS(2217), - [anon_sym_short] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_signed] = ACTIONS(2215), + [anon_sym_unsigned] = ACTIONS(2215), + [anon_sym_long] = ACTIONS(2215), + [anon_sym_short] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2227), [anon_sym_not] = ACTIONS(2207), [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2253), - [anon_sym_decltype] = ACTIONS(2255), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2251), + [anon_sym_decltype] = ACTIONS(2253), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, [272] = { - [sym_type_qualifier] = STATE(5043), - [sym_type_specifier] = STATE(6255), - [sym_sized_type_specifier] = STATE(2630), - [sym_enum_specifier] = STATE(2630), - [sym_struct_specifier] = STATE(2630), - [sym_union_specifier] = STATE(2630), - [sym_expression] = STATE(3381), - [sym_expression_not_binary] = STATE(4050), - [sym_comma_expression] = STATE(10536), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_type_descriptor] = STATE(9222), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_placeholder_type_specifier] = STATE(2630), - [sym_decltype_auto] = STATE(2627), - [sym_decltype] = STATE(2479), - [sym_class_specifier] = STATE(2630), - [sym_class_name] = STATE(9276), - [sym_dependent_type] = STATE(2630), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_unary_left_fold] = STATE(10143), - [sym_unary_right_fold] = STATE(10143), - [sym_binary_fold] = STATE(10143), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7165), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(6799), - [sym_assignment_expression_lhs_expression] = STATE(10536), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_typed_metavar] = STATE(10536), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [aux_sym_type_definition_type_repeat1] = STATE(5043), - [aux_sym_sized_type_specifier_repeat1] = STATE(6372), - [sym_identifier] = ACTIONS(3045), + [sym_type_qualifier] = STATE(4684), + [sym_type_specifier] = STATE(5847), + [sym_sized_type_specifier] = STATE(2673), + [sym_enum_specifier] = STATE(2673), + [sym_struct_specifier] = STATE(2673), + [sym_union_specifier] = STATE(2673), + [sym_expression] = STATE(3184), + [sym_expression_not_binary] = STATE(3766), + [sym_comma_expression] = STATE(10022), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_type_descriptor] = STATE(8748), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_placeholder_type_specifier] = STATE(2673), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2580), + [sym_class_specifier] = STATE(2673), + [sym_class_name] = STATE(8737), + [sym_dependent_type] = STATE(2673), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_unary_left_fold] = STATE(9216), + [sym_unary_right_fold] = STATE(9216), + [sym_binary_fold] = STATE(9216), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6631), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(6338), + [sym_assignment_expression_lhs_expression] = STATE(10022), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_typed_metavar] = STATE(10022), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [aux_sym_type_definition_type_repeat1] = STATE(4684), + [aux_sym_sized_type_specifier_repeat1] = STATE(5792), + [sym_identifier] = ACTIONS(3040), [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), - [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3042), [anon_sym_BANG] = ACTIONS(2203), [anon_sym_TILDE] = ACTIONS(2203), [anon_sym_DASH] = ACTIONS(2207), [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_signed] = ACTIONS(2217), - [anon_sym_unsigned] = ACTIONS(2217), - [anon_sym_long] = ACTIONS(2217), - [anon_sym_short] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_signed] = ACTIONS(2215), + [anon_sym_unsigned] = ACTIONS(2215), + [anon_sym_long] = ACTIONS(2215), + [anon_sym_short] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2227), [anon_sym_not] = ACTIONS(2207), [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2253), - [anon_sym_decltype] = ACTIONS(2255), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2251), + [anon_sym_decltype] = ACTIONS(2253), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, [273] = { - [sym_catch_clause] = STATE(273), - [aux_sym_constructor_try_statement_repeat1] = STATE(273), - [sym_identifier] = ACTIONS(3063), - [aux_sym_preproc_include_token1] = ACTIONS(3063), - [aux_sym_preproc_def_token1] = ACTIONS(3063), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3065), - [aux_sym_preproc_if_token1] = ACTIONS(3063), - [aux_sym_preproc_if_token2] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3063), - [aux_sym_preproc_else_token1] = ACTIONS(3063), - [aux_sym_preproc_elif_token1] = ACTIONS(3063), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3063), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3063), - [sym_preproc_directive] = ACTIONS(3063), - [anon_sym_LPAREN2] = ACTIONS(3065), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3063), - [anon_sym_SEMI] = ACTIONS(3065), - [anon_sym___extension__] = ACTIONS(3063), - [anon_sym_typedef] = ACTIONS(3063), - [anon_sym_extern] = ACTIONS(3063), - [anon_sym___attribute__] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(3065), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3065), - [anon_sym___declspec] = ACTIONS(3063), - [anon_sym___based] = ACTIONS(3063), - [anon_sym___cdecl] = ACTIONS(3063), - [anon_sym___clrcall] = ACTIONS(3063), - [anon_sym___stdcall] = ACTIONS(3063), - [anon_sym___fastcall] = ACTIONS(3063), - [anon_sym___thiscall] = ACTIONS(3063), - [anon_sym___vectorcall] = ACTIONS(3063), - [anon_sym_LBRACE] = ACTIONS(3065), - [anon_sym_signed] = ACTIONS(3063), - [anon_sym_unsigned] = ACTIONS(3063), - [anon_sym_long] = ACTIONS(3063), - [anon_sym_short] = ACTIONS(3063), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_static] = ACTIONS(3063), - [anon_sym_register] = ACTIONS(3063), - [anon_sym_inline] = ACTIONS(3063), - [anon_sym___inline] = ACTIONS(3063), - [anon_sym___inline__] = ACTIONS(3063), - [anon_sym___forceinline] = ACTIONS(3063), - [anon_sym_thread_local] = ACTIONS(3063), - [anon_sym___thread] = ACTIONS(3063), - [anon_sym_const] = ACTIONS(3063), - [anon_sym_constexpr] = ACTIONS(3063), - [anon_sym_volatile] = ACTIONS(3063), - [anon_sym_restrict] = ACTIONS(3063), - [anon_sym___restrict__] = ACTIONS(3063), - [anon_sym__Atomic] = ACTIONS(3063), - [anon_sym__Noreturn] = ACTIONS(3063), - [anon_sym_noreturn] = ACTIONS(3063), - [anon_sym_mutable] = ACTIONS(3063), - [anon_sym_constinit] = ACTIONS(3063), - [anon_sym_consteval] = ACTIONS(3063), - [sym_primitive_type] = ACTIONS(3063), - [anon_sym_enum] = ACTIONS(3063), - [anon_sym_class] = ACTIONS(3063), - [anon_sym_struct] = ACTIONS(3063), - [anon_sym_union] = ACTIONS(3063), - [anon_sym_if] = ACTIONS(3063), - [anon_sym_else] = ACTIONS(3063), - [anon_sym_switch] = ACTIONS(3063), - [anon_sym_case] = ACTIONS(3063), - [anon_sym_default] = ACTIONS(3063), - [anon_sym_while] = ACTIONS(3063), - [anon_sym_do] = ACTIONS(3063), - [anon_sym_for] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(3063), - [anon_sym_break] = ACTIONS(3063), - [anon_sym_continue] = ACTIONS(3063), - [anon_sym_goto] = ACTIONS(3063), - [anon_sym___try] = ACTIONS(3063), - [anon_sym___leave] = ACTIONS(3063), - [anon_sym_not] = ACTIONS(3063), - [anon_sym_compl] = ACTIONS(3063), - [anon_sym_DASH_DASH] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3065), - [anon_sym_sizeof] = ACTIONS(3063), - [anon_sym___alignof__] = ACTIONS(3063), - [anon_sym___alignof] = ACTIONS(3063), - [anon_sym__alignof] = ACTIONS(3063), - [anon_sym_alignof] = ACTIONS(3063), - [anon_sym__Alignof] = ACTIONS(3063), - [anon_sym_offsetof] = ACTIONS(3063), - [anon_sym__Generic] = ACTIONS(3063), - [anon_sym_asm] = ACTIONS(3063), - [anon_sym___asm__] = ACTIONS(3063), - [sym_number_literal] = ACTIONS(3065), - [anon_sym_L_SQUOTE] = ACTIONS(3065), - [anon_sym_u_SQUOTE] = ACTIONS(3065), - [anon_sym_U_SQUOTE] = ACTIONS(3065), - [anon_sym_u8_SQUOTE] = ACTIONS(3065), - [anon_sym_SQUOTE] = ACTIONS(3065), - [anon_sym_L_DQUOTE] = ACTIONS(3065), - [anon_sym_u_DQUOTE] = ACTIONS(3065), - [anon_sym_U_DQUOTE] = ACTIONS(3065), - [anon_sym_u8_DQUOTE] = ACTIONS(3065), - [anon_sym_DQUOTE] = ACTIONS(3065), - [sym_true] = ACTIONS(3063), - [sym_false] = ACTIONS(3063), - [anon_sym_NULL] = ACTIONS(3063), - [anon_sym_nullptr] = ACTIONS(3063), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3063), - [anon_sym_decltype] = ACTIONS(3063), - [anon_sym_virtual] = ACTIONS(3063), - [anon_sym_alignas] = ACTIONS(3063), - [anon_sym_explicit] = ACTIONS(3063), - [anon_sym_typename] = ACTIONS(3063), - [anon_sym_template] = ACTIONS(3063), - [anon_sym_operator] = ACTIONS(3063), - [anon_sym_try] = ACTIONS(3063), - [anon_sym_delete] = ACTIONS(3063), - [anon_sym_throw] = ACTIONS(3063), - [anon_sym_namespace] = ACTIONS(3063), - [anon_sym_using] = ACTIONS(3063), - [anon_sym_static_assert] = ACTIONS(3063), - [anon_sym_concept] = ACTIONS(3063), - [anon_sym_co_return] = ACTIONS(3063), - [anon_sym_co_yield] = ACTIONS(3063), - [anon_sym_catch] = ACTIONS(3067), - [anon_sym_R_DQUOTE] = ACTIONS(3065), - [anon_sym_LR_DQUOTE] = ACTIONS(3065), - [anon_sym_uR_DQUOTE] = ACTIONS(3065), - [anon_sym_UR_DQUOTE] = ACTIONS(3065), - [anon_sym_u8R_DQUOTE] = ACTIONS(3065), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3063), - [anon_sym_requires] = ACTIONS(3063), - [sym_this] = ACTIONS(3063), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3065), - [sym_semgrep_named_ellipsis] = ACTIONS(3065), + [sym_type_qualifier] = STATE(4684), + [sym_type_specifier] = STATE(5847), + [sym_sized_type_specifier] = STATE(2673), + [sym_enum_specifier] = STATE(2673), + [sym_struct_specifier] = STATE(2673), + [sym_union_specifier] = STATE(2673), + [sym_expression] = STATE(3184), + [sym_expression_not_binary] = STATE(3766), + [sym_comma_expression] = STATE(10022), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_type_descriptor] = STATE(8849), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_placeholder_type_specifier] = STATE(2673), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2580), + [sym_class_specifier] = STATE(2673), + [sym_class_name] = STATE(8737), + [sym_dependent_type] = STATE(2673), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_unary_left_fold] = STATE(9643), + [sym_unary_right_fold] = STATE(9643), + [sym_binary_fold] = STATE(9643), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6631), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(6338), + [sym_assignment_expression_lhs_expression] = STATE(10022), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_typed_metavar] = STATE(10022), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [aux_sym_type_definition_type_repeat1] = STATE(4684), + [aux_sym_sized_type_specifier_repeat1] = STATE(5792), + [sym_identifier] = ACTIONS(3040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_signed] = ACTIONS(2215), + [anon_sym_unsigned] = ACTIONS(2215), + [anon_sym_long] = ACTIONS(2215), + [anon_sym_short] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_compl] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2251), + [anon_sym_decltype] = ACTIONS(2253), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, [274] = { - [sym_type_qualifier] = STATE(5043), - [sym_type_specifier] = STATE(6255), - [sym_sized_type_specifier] = STATE(2630), - [sym_enum_specifier] = STATE(2630), - [sym_struct_specifier] = STATE(2630), - [sym_union_specifier] = STATE(2630), - [sym_expression] = STATE(3418), - [sym_expression_not_binary] = STATE(4050), - [sym_comma_expression] = STATE(10483), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_type_descriptor] = STATE(9589), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_placeholder_type_specifier] = STATE(2630), - [sym_decltype_auto] = STATE(2627), - [sym_decltype] = STATE(2479), - [sym_class_specifier] = STATE(2630), - [sym_class_name] = STATE(9276), - [sym_dependent_type] = STATE(2630), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_unary_left_fold] = STATE(9657), - [sym_unary_right_fold] = STATE(9657), - [sym_binary_fold] = STATE(9657), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7165), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(6799), - [sym_assignment_expression_lhs_expression] = STATE(10483), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_typed_metavar] = STATE(10483), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [aux_sym_type_definition_type_repeat1] = STATE(5043), - [aux_sym_sized_type_specifier_repeat1] = STATE(6372), - [sym_identifier] = ACTIONS(3045), + [sym_type_qualifier] = STATE(4684), + [sym_type_specifier] = STATE(5847), + [sym_sized_type_specifier] = STATE(2673), + [sym_enum_specifier] = STATE(2673), + [sym_struct_specifier] = STATE(2673), + [sym_union_specifier] = STATE(2673), + [sym_expression] = STATE(3122), + [sym_expression_not_binary] = STATE(3766), + [sym_comma_expression] = STATE(9355), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_type_descriptor] = STATE(8939), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_placeholder_type_specifier] = STATE(2673), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2580), + [sym_class_specifier] = STATE(2673), + [sym_class_name] = STATE(8737), + [sym_dependent_type] = STATE(2673), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_unary_left_fold] = STATE(9296), + [sym_unary_right_fold] = STATE(9296), + [sym_binary_fold] = STATE(9296), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6631), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(6338), + [sym_assignment_expression_lhs_expression] = STATE(9355), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_typed_metavar] = STATE(9355), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [aux_sym_type_definition_type_repeat1] = STATE(4684), + [aux_sym_sized_type_specifier_repeat1] = STATE(5792), + [sym_identifier] = ACTIONS(3040), [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), - [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3042), [anon_sym_BANG] = ACTIONS(2203), [anon_sym_TILDE] = ACTIONS(2203), [anon_sym_DASH] = ACTIONS(2207), [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_signed] = ACTIONS(2217), - [anon_sym_unsigned] = ACTIONS(2217), - [anon_sym_long] = ACTIONS(2217), - [anon_sym_short] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_signed] = ACTIONS(2215), + [anon_sym_unsigned] = ACTIONS(2215), + [anon_sym_long] = ACTIONS(2215), + [anon_sym_short] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2227), [anon_sym_not] = ACTIONS(2207), [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2253), - [anon_sym_decltype] = ACTIONS(2255), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2251), + [anon_sym_decltype] = ACTIONS(2253), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, [275] = { - [sym_type_qualifier] = STATE(5043), - [sym_type_specifier] = STATE(6255), - [sym_sized_type_specifier] = STATE(2630), - [sym_enum_specifier] = STATE(2630), - [sym_struct_specifier] = STATE(2630), - [sym_union_specifier] = STATE(2630), - [sym_expression] = STATE(3463), - [sym_expression_not_binary] = STATE(4050), - [sym_comma_expression] = STATE(10333), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_type_descriptor] = STATE(9354), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_placeholder_type_specifier] = STATE(2630), - [sym_decltype_auto] = STATE(2627), - [sym_decltype] = STATE(2479), - [sym_class_specifier] = STATE(2630), - [sym_class_name] = STATE(9276), - [sym_dependent_type] = STATE(2630), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_unary_left_fold] = STATE(9693), - [sym_unary_right_fold] = STATE(9693), - [sym_binary_fold] = STATE(9693), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7165), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(6799), - [sym_assignment_expression_lhs_expression] = STATE(10333), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_typed_metavar] = STATE(10333), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [aux_sym_type_definition_type_repeat1] = STATE(5043), - [aux_sym_sized_type_specifier_repeat1] = STATE(6372), - [sym_identifier] = ACTIONS(3045), + [sym_type_qualifier] = STATE(4684), + [sym_type_specifier] = STATE(5847), + [sym_sized_type_specifier] = STATE(2673), + [sym_enum_specifier] = STATE(2673), + [sym_struct_specifier] = STATE(2673), + [sym_union_specifier] = STATE(2673), + [sym_expression] = STATE(3184), + [sym_expression_not_binary] = STATE(3766), + [sym_comma_expression] = STATE(10022), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_type_descriptor] = STATE(8818), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_placeholder_type_specifier] = STATE(2673), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2580), + [sym_class_specifier] = STATE(2673), + [sym_class_name] = STATE(8737), + [sym_dependent_type] = STATE(2673), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_unary_left_fold] = STATE(9397), + [sym_unary_right_fold] = STATE(9397), + [sym_binary_fold] = STATE(9397), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6631), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(6338), + [sym_assignment_expression_lhs_expression] = STATE(10022), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_typed_metavar] = STATE(10022), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [aux_sym_type_definition_type_repeat1] = STATE(4684), + [aux_sym_sized_type_specifier_repeat1] = STATE(5792), + [sym_identifier] = ACTIONS(3040), [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), - [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3042), [anon_sym_BANG] = ACTIONS(2203), [anon_sym_TILDE] = ACTIONS(2203), [anon_sym_DASH] = ACTIONS(2207), [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_signed] = ACTIONS(2217), - [anon_sym_unsigned] = ACTIONS(2217), - [anon_sym_long] = ACTIONS(2217), - [anon_sym_short] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_signed] = ACTIONS(2215), + [anon_sym_unsigned] = ACTIONS(2215), + [anon_sym_long] = ACTIONS(2215), + [anon_sym_short] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2227), [anon_sym_not] = ACTIONS(2207), [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2253), - [anon_sym_decltype] = ACTIONS(2255), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2251), + [anon_sym_decltype] = ACTIONS(2253), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, [276] = { - [sym_type_qualifier] = STATE(5043), - [sym_type_specifier] = STATE(6255), - [sym_sized_type_specifier] = STATE(2630), - [sym_enum_specifier] = STATE(2630), - [sym_struct_specifier] = STATE(2630), - [sym_union_specifier] = STATE(2630), - [sym_expression] = STATE(3414), - [sym_expression_not_binary] = STATE(4050), - [sym_comma_expression] = STATE(10099), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_type_descriptor] = STATE(9274), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_placeholder_type_specifier] = STATE(2630), - [sym_decltype_auto] = STATE(2627), - [sym_decltype] = STATE(2479), - [sym_class_specifier] = STATE(2630), - [sym_class_name] = STATE(9276), - [sym_dependent_type] = STATE(2630), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_unary_left_fold] = STATE(10672), - [sym_unary_right_fold] = STATE(10672), - [sym_binary_fold] = STATE(10672), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7165), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(6799), - [sym_assignment_expression_lhs_expression] = STATE(10099), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_typed_metavar] = STATE(10099), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [aux_sym_type_definition_type_repeat1] = STATE(5043), - [aux_sym_sized_type_specifier_repeat1] = STATE(6372), - [sym_identifier] = ACTIONS(3045), + [sym_type_qualifier] = STATE(4684), + [sym_type_specifier] = STATE(5847), + [sym_sized_type_specifier] = STATE(2673), + [sym_enum_specifier] = STATE(2673), + [sym_struct_specifier] = STATE(2673), + [sym_union_specifier] = STATE(2673), + [sym_expression] = STATE(3175), + [sym_expression_not_binary] = STATE(3766), + [sym_comma_expression] = STATE(9905), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_type_descriptor] = STATE(9012), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_placeholder_type_specifier] = STATE(2673), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2580), + [sym_class_specifier] = STATE(2673), + [sym_class_name] = STATE(8737), + [sym_dependent_type] = STATE(2673), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_unary_left_fold] = STATE(9598), + [sym_unary_right_fold] = STATE(9598), + [sym_binary_fold] = STATE(9598), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6631), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(6338), + [sym_assignment_expression_lhs_expression] = STATE(9905), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_typed_metavar] = STATE(9905), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [aux_sym_type_definition_type_repeat1] = STATE(4684), + [aux_sym_sized_type_specifier_repeat1] = STATE(5792), + [sym_identifier] = ACTIONS(3040), [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), - [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3042), [anon_sym_BANG] = ACTIONS(2203), [anon_sym_TILDE] = ACTIONS(2203), [anon_sym_DASH] = ACTIONS(2207), [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_signed] = ACTIONS(2217), - [anon_sym_unsigned] = ACTIONS(2217), - [anon_sym_long] = ACTIONS(2217), - [anon_sym_short] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_signed] = ACTIONS(2215), + [anon_sym_unsigned] = ACTIONS(2215), + [anon_sym_long] = ACTIONS(2215), + [anon_sym_short] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2227), [anon_sym_not] = ACTIONS(2207), [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2253), - [anon_sym_decltype] = ACTIONS(2255), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2251), + [anon_sym_decltype] = ACTIONS(2253), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, [277] = { - [sym_type_qualifier] = STATE(5043), - [sym_type_specifier] = STATE(6255), - [sym_sized_type_specifier] = STATE(2630), - [sym_enum_specifier] = STATE(2630), - [sym_struct_specifier] = STATE(2630), - [sym_union_specifier] = STATE(2630), - [sym_expression] = STATE(3418), - [sym_expression_not_binary] = STATE(4050), - [sym_comma_expression] = STATE(10483), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_type_descriptor] = STATE(9441), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_placeholder_type_specifier] = STATE(2630), - [sym_decltype_auto] = STATE(2627), - [sym_decltype] = STATE(2479), - [sym_class_specifier] = STATE(2630), - [sym_class_name] = STATE(9276), - [sym_dependent_type] = STATE(2630), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_unary_left_fold] = STATE(9657), - [sym_unary_right_fold] = STATE(9657), - [sym_binary_fold] = STATE(9657), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7165), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(6799), - [sym_assignment_expression_lhs_expression] = STATE(10483), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_typed_metavar] = STATE(10483), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [aux_sym_type_definition_type_repeat1] = STATE(5043), - [aux_sym_sized_type_specifier_repeat1] = STATE(6372), - [sym_identifier] = ACTIONS(3045), + [sym_type_qualifier] = STATE(4684), + [sym_type_specifier] = STATE(5847), + [sym_sized_type_specifier] = STATE(2673), + [sym_enum_specifier] = STATE(2673), + [sym_struct_specifier] = STATE(2673), + [sym_union_specifier] = STATE(2673), + [sym_expression] = STATE(3184), + [sym_expression_not_binary] = STATE(3766), + [sym_comma_expression] = STATE(10022), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_type_descriptor] = STATE(9025), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_placeholder_type_specifier] = STATE(2673), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2580), + [sym_class_specifier] = STATE(2673), + [sym_class_name] = STATE(8737), + [sym_dependent_type] = STATE(2673), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_unary_left_fold] = STATE(9643), + [sym_unary_right_fold] = STATE(9643), + [sym_binary_fold] = STATE(9643), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6631), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(6338), + [sym_assignment_expression_lhs_expression] = STATE(10022), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_typed_metavar] = STATE(10022), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [aux_sym_type_definition_type_repeat1] = STATE(4684), + [aux_sym_sized_type_specifier_repeat1] = STATE(5792), + [sym_identifier] = ACTIONS(3040), [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), - [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3042), [anon_sym_BANG] = ACTIONS(2203), [anon_sym_TILDE] = ACTIONS(2203), [anon_sym_DASH] = ACTIONS(2207), [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_signed] = ACTIONS(2217), - [anon_sym_unsigned] = ACTIONS(2217), - [anon_sym_long] = ACTIONS(2217), - [anon_sym_short] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_signed] = ACTIONS(2215), + [anon_sym_unsigned] = ACTIONS(2215), + [anon_sym_long] = ACTIONS(2215), + [anon_sym_short] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2227), [anon_sym_not] = ACTIONS(2207), [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2253), - [anon_sym_decltype] = ACTIONS(2255), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2251), + [anon_sym_decltype] = ACTIONS(2253), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, [278] = { - [sym_type_qualifier] = STATE(5043), - [sym_type_specifier] = STATE(6255), - [sym_sized_type_specifier] = STATE(2630), - [sym_enum_specifier] = STATE(2630), - [sym_struct_specifier] = STATE(2630), - [sym_union_specifier] = STATE(2630), - [sym_expression] = STATE(3418), - [sym_expression_not_binary] = STATE(4050), - [sym_comma_expression] = STATE(10483), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_type_descriptor] = STATE(9632), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_placeholder_type_specifier] = STATE(2630), - [sym_decltype_auto] = STATE(2627), - [sym_decltype] = STATE(2479), - [sym_class_specifier] = STATE(2630), - [sym_class_name] = STATE(9276), - [sym_dependent_type] = STATE(2630), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_unary_left_fold] = STATE(9657), - [sym_unary_right_fold] = STATE(9657), - [sym_binary_fold] = STATE(9657), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7165), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(6799), - [sym_assignment_expression_lhs_expression] = STATE(10483), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_typed_metavar] = STATE(10483), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [aux_sym_type_definition_type_repeat1] = STATE(5043), - [aux_sym_sized_type_specifier_repeat1] = STATE(6372), - [sym_identifier] = ACTIONS(3045), + [sym_type_qualifier] = STATE(4684), + [sym_type_specifier] = STATE(5847), + [sym_sized_type_specifier] = STATE(2673), + [sym_enum_specifier] = STATE(2673), + [sym_struct_specifier] = STATE(2673), + [sym_union_specifier] = STATE(2673), + [sym_expression] = STATE(3130), + [sym_expression_not_binary] = STATE(3766), + [sym_comma_expression] = STATE(9610), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_type_descriptor] = STATE(9070), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_placeholder_type_specifier] = STATE(2673), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2580), + [sym_class_specifier] = STATE(2673), + [sym_class_name] = STATE(8737), + [sym_dependent_type] = STATE(2673), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_unary_left_fold] = STATE(9507), + [sym_unary_right_fold] = STATE(9507), + [sym_binary_fold] = STATE(9507), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6631), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(6338), + [sym_assignment_expression_lhs_expression] = STATE(9610), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_typed_metavar] = STATE(9610), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [aux_sym_type_definition_type_repeat1] = STATE(4684), + [aux_sym_sized_type_specifier_repeat1] = STATE(5792), + [sym_identifier] = ACTIONS(3040), [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), - [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3042), [anon_sym_BANG] = ACTIONS(2203), [anon_sym_TILDE] = ACTIONS(2203), [anon_sym_DASH] = ACTIONS(2207), [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_signed] = ACTIONS(2217), - [anon_sym_unsigned] = ACTIONS(2217), - [anon_sym_long] = ACTIONS(2217), - [anon_sym_short] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_signed] = ACTIONS(2215), + [anon_sym_unsigned] = ACTIONS(2215), + [anon_sym_long] = ACTIONS(2215), + [anon_sym_short] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2227), [anon_sym_not] = ACTIONS(2207), [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2253), - [anon_sym_decltype] = ACTIONS(2255), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2251), + [anon_sym_decltype] = ACTIONS(2253), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, [279] = { - [sym_type_qualifier] = STATE(5043), - [sym_type_specifier] = STATE(6255), - [sym_sized_type_specifier] = STATE(2630), - [sym_enum_specifier] = STATE(2630), - [sym_struct_specifier] = STATE(2630), - [sym_union_specifier] = STATE(2630), - [sym_expression] = STATE(3418), - [sym_expression_not_binary] = STATE(4050), - [sym_comma_expression] = STATE(10483), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_type_descriptor] = STATE(9143), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_placeholder_type_specifier] = STATE(2630), - [sym_decltype_auto] = STATE(2627), - [sym_decltype] = STATE(2479), - [sym_class_specifier] = STATE(2630), - [sym_class_name] = STATE(9276), - [sym_dependent_type] = STATE(2630), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_unary_left_fold] = STATE(10545), - [sym_unary_right_fold] = STATE(10545), - [sym_binary_fold] = STATE(10545), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7165), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(6799), - [sym_assignment_expression_lhs_expression] = STATE(10483), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_typed_metavar] = STATE(10483), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [aux_sym_type_definition_type_repeat1] = STATE(5043), - [aux_sym_sized_type_specifier_repeat1] = STATE(6372), - [sym_identifier] = ACTIONS(3045), + [sym_type_qualifier] = STATE(4684), + [sym_type_specifier] = STATE(5847), + [sym_sized_type_specifier] = STATE(2673), + [sym_enum_specifier] = STATE(2673), + [sym_struct_specifier] = STATE(2673), + [sym_union_specifier] = STATE(2673), + [sym_expression] = STATE(3122), + [sym_expression_not_binary] = STATE(3766), + [sym_comma_expression] = STATE(9355), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_type_descriptor] = STATE(9059), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_placeholder_type_specifier] = STATE(2673), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2580), + [sym_class_specifier] = STATE(2673), + [sym_class_name] = STATE(8737), + [sym_dependent_type] = STATE(2673), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_unary_left_fold] = STATE(9907), + [sym_unary_right_fold] = STATE(9907), + [sym_binary_fold] = STATE(9907), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6631), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(6338), + [sym_assignment_expression_lhs_expression] = STATE(9355), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_typed_metavar] = STATE(9355), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [aux_sym_type_definition_type_repeat1] = STATE(4684), + [aux_sym_sized_type_specifier_repeat1] = STATE(5792), + [sym_identifier] = ACTIONS(3040), [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), - [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3042), [anon_sym_BANG] = ACTIONS(2203), [anon_sym_TILDE] = ACTIONS(2203), [anon_sym_DASH] = ACTIONS(2207), [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_signed] = ACTIONS(2217), - [anon_sym_unsigned] = ACTIONS(2217), - [anon_sym_long] = ACTIONS(2217), - [anon_sym_short] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_signed] = ACTIONS(2215), + [anon_sym_unsigned] = ACTIONS(2215), + [anon_sym_long] = ACTIONS(2215), + [anon_sym_short] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2227), [anon_sym_not] = ACTIONS(2207), [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2253), - [anon_sym_decltype] = ACTIONS(2255), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2251), + [anon_sym_decltype] = ACTIONS(2253), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, [280] = { - [sym_type_qualifier] = STATE(5043), - [sym_type_specifier] = STATE(6255), - [sym_sized_type_specifier] = STATE(2630), - [sym_enum_specifier] = STATE(2630), - [sym_struct_specifier] = STATE(2630), - [sym_union_specifier] = STATE(2630), - [sym_expression] = STATE(3381), - [sym_expression_not_binary] = STATE(4050), - [sym_comma_expression] = STATE(10536), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_type_descriptor] = STATE(9565), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_placeholder_type_specifier] = STATE(2630), - [sym_decltype_auto] = STATE(2627), - [sym_decltype] = STATE(2479), - [sym_class_specifier] = STATE(2630), - [sym_class_name] = STATE(9276), - [sym_dependent_type] = STATE(2630), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_unary_left_fold] = STATE(10159), - [sym_unary_right_fold] = STATE(10159), - [sym_binary_fold] = STATE(10159), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7165), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(6799), - [sym_assignment_expression_lhs_expression] = STATE(10536), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_typed_metavar] = STATE(10536), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [aux_sym_type_definition_type_repeat1] = STATE(5043), - [aux_sym_sized_type_specifier_repeat1] = STATE(6372), - [sym_identifier] = ACTIONS(3045), + [sym_type_qualifier] = STATE(4684), + [sym_type_specifier] = STATE(5847), + [sym_sized_type_specifier] = STATE(2673), + [sym_enum_specifier] = STATE(2673), + [sym_struct_specifier] = STATE(2673), + [sym_union_specifier] = STATE(2673), + [sym_expression] = STATE(3184), + [sym_expression_not_binary] = STATE(3766), + [sym_comma_expression] = STATE(10022), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_type_descriptor] = STATE(8867), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_placeholder_type_specifier] = STATE(2673), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2580), + [sym_class_specifier] = STATE(2673), + [sym_class_name] = STATE(8737), + [sym_dependent_type] = STATE(2673), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_unary_left_fold] = STATE(9216), + [sym_unary_right_fold] = STATE(9216), + [sym_binary_fold] = STATE(9216), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6631), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(6338), + [sym_assignment_expression_lhs_expression] = STATE(10022), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_typed_metavar] = STATE(10022), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [aux_sym_type_definition_type_repeat1] = STATE(4684), + [aux_sym_sized_type_specifier_repeat1] = STATE(5792), + [sym_identifier] = ACTIONS(3040), [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), - [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3042), [anon_sym_BANG] = ACTIONS(2203), [anon_sym_TILDE] = ACTIONS(2203), [anon_sym_DASH] = ACTIONS(2207), [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_signed] = ACTIONS(2217), - [anon_sym_unsigned] = ACTIONS(2217), - [anon_sym_long] = ACTIONS(2217), - [anon_sym_short] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_signed] = ACTIONS(2215), + [anon_sym_unsigned] = ACTIONS(2215), + [anon_sym_long] = ACTIONS(2215), + [anon_sym_short] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2227), [anon_sym_not] = ACTIONS(2207), [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2253), - [anon_sym_decltype] = ACTIONS(2255), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2251), + [anon_sym_decltype] = ACTIONS(2253), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, [281] = { - [sym_type_qualifier] = STATE(5043), - [sym_type_specifier] = STATE(6255), - [sym_sized_type_specifier] = STATE(2630), - [sym_enum_specifier] = STATE(2630), - [sym_struct_specifier] = STATE(2630), - [sym_union_specifier] = STATE(2630), - [sym_expression] = STATE(3414), - [sym_expression_not_binary] = STATE(4050), - [sym_comma_expression] = STATE(10099), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_type_descriptor] = STATE(9267), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_placeholder_type_specifier] = STATE(2630), - [sym_decltype_auto] = STATE(2627), - [sym_decltype] = STATE(2479), - [sym_class_specifier] = STATE(2630), - [sym_class_name] = STATE(9276), - [sym_dependent_type] = STATE(2630), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_unary_left_fold] = STATE(10656), - [sym_unary_right_fold] = STATE(10656), - [sym_binary_fold] = STATE(10656), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7165), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(6799), - [sym_assignment_expression_lhs_expression] = STATE(10099), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_typed_metavar] = STATE(10099), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [aux_sym_type_definition_type_repeat1] = STATE(5043), - [aux_sym_sized_type_specifier_repeat1] = STATE(6372), - [sym_identifier] = ACTIONS(3045), + [sym_type_qualifier] = STATE(4684), + [sym_type_specifier] = STATE(5847), + [sym_sized_type_specifier] = STATE(2673), + [sym_enum_specifier] = STATE(2673), + [sym_struct_specifier] = STATE(2673), + [sym_union_specifier] = STATE(2673), + [sym_expression] = STATE(3175), + [sym_expression_not_binary] = STATE(3766), + [sym_comma_expression] = STATE(9905), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_type_descriptor] = STATE(8988), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_placeholder_type_specifier] = STATE(2673), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2580), + [sym_class_specifier] = STATE(2673), + [sym_class_name] = STATE(8737), + [sym_dependent_type] = STATE(2673), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_unary_left_fold] = STATE(9633), + [sym_unary_right_fold] = STATE(9633), + [sym_binary_fold] = STATE(9633), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6631), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(6338), + [sym_assignment_expression_lhs_expression] = STATE(9905), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_typed_metavar] = STATE(9905), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [aux_sym_type_definition_type_repeat1] = STATE(4684), + [aux_sym_sized_type_specifier_repeat1] = STATE(5792), + [sym_identifier] = ACTIONS(3040), [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), - [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3042), [anon_sym_BANG] = ACTIONS(2203), [anon_sym_TILDE] = ACTIONS(2203), [anon_sym_DASH] = ACTIONS(2207), [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_signed] = ACTIONS(2217), - [anon_sym_unsigned] = ACTIONS(2217), - [anon_sym_long] = ACTIONS(2217), - [anon_sym_short] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_signed] = ACTIONS(2215), + [anon_sym_unsigned] = ACTIONS(2215), + [anon_sym_long] = ACTIONS(2215), + [anon_sym_short] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2227), [anon_sym_not] = ACTIONS(2207), [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2253), - [anon_sym_decltype] = ACTIONS(2255), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2251), + [anon_sym_decltype] = ACTIONS(2253), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, [282] = { - [sym_type_qualifier] = STATE(5043), - [sym_type_specifier] = STATE(6255), - [sym_sized_type_specifier] = STATE(2630), - [sym_enum_specifier] = STATE(2630), - [sym_struct_specifier] = STATE(2630), - [sym_union_specifier] = STATE(2630), - [sym_expression] = STATE(3368), - [sym_expression_not_binary] = STATE(4050), - [sym_comma_expression] = STATE(10659), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_type_descriptor] = STATE(9473), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_placeholder_type_specifier] = STATE(2630), - [sym_decltype_auto] = STATE(2627), - [sym_decltype] = STATE(2479), - [sym_class_specifier] = STATE(2630), - [sym_class_name] = STATE(9276), - [sym_dependent_type] = STATE(2630), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_unary_left_fold] = STATE(9678), - [sym_unary_right_fold] = STATE(9678), - [sym_binary_fold] = STATE(9678), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7165), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(6799), - [sym_assignment_expression_lhs_expression] = STATE(10659), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_typed_metavar] = STATE(10659), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [aux_sym_type_definition_type_repeat1] = STATE(5043), - [aux_sym_sized_type_specifier_repeat1] = STATE(6372), - [sym_identifier] = ACTIONS(3045), + [sym_type_qualifier] = STATE(4684), + [sym_type_specifier] = STATE(5847), + [sym_sized_type_specifier] = STATE(2673), + [sym_enum_specifier] = STATE(2673), + [sym_struct_specifier] = STATE(2673), + [sym_union_specifier] = STATE(2673), + [sym_expression] = STATE(3184), + [sym_expression_not_binary] = STATE(3766), + [sym_comma_expression] = STATE(10022), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_type_descriptor] = STATE(8899), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_placeholder_type_specifier] = STATE(2673), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2580), + [sym_class_specifier] = STATE(2673), + [sym_class_name] = STATE(8737), + [sym_dependent_type] = STATE(2673), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_unary_left_fold] = STATE(9397), + [sym_unary_right_fold] = STATE(9397), + [sym_binary_fold] = STATE(9397), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6631), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(6338), + [sym_assignment_expression_lhs_expression] = STATE(10022), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_typed_metavar] = STATE(10022), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [aux_sym_type_definition_type_repeat1] = STATE(4684), + [aux_sym_sized_type_specifier_repeat1] = STATE(5792), + [sym_identifier] = ACTIONS(3040), [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), - [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3042), [anon_sym_BANG] = ACTIONS(2203), [anon_sym_TILDE] = ACTIONS(2203), [anon_sym_DASH] = ACTIONS(2207), [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_signed] = ACTIONS(2217), - [anon_sym_unsigned] = ACTIONS(2217), - [anon_sym_long] = ACTIONS(2217), - [anon_sym_short] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_signed] = ACTIONS(2215), + [anon_sym_unsigned] = ACTIONS(2215), + [anon_sym_long] = ACTIONS(2215), + [anon_sym_short] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2227), [anon_sym_not] = ACTIONS(2207), [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2253), - [anon_sym_decltype] = ACTIONS(2255), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2251), + [anon_sym_decltype] = ACTIONS(2253), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, [283] = { - [sym_type_qualifier] = STATE(5043), - [sym_type_specifier] = STATE(6255), - [sym_sized_type_specifier] = STATE(2630), - [sym_enum_specifier] = STATE(2630), - [sym_struct_specifier] = STATE(2630), - [sym_union_specifier] = STATE(2630), - [sym_expression] = STATE(3447), - [sym_expression_not_binary] = STATE(4050), - [sym_comma_expression] = STATE(9691), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_type_descriptor] = STATE(9261), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_placeholder_type_specifier] = STATE(2630), - [sym_decltype_auto] = STATE(2627), - [sym_decltype] = STATE(2479), - [sym_class_specifier] = STATE(2630), - [sym_class_name] = STATE(9276), - [sym_dependent_type] = STATE(2630), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_unary_left_fold] = STATE(10359), - [sym_unary_right_fold] = STATE(10359), - [sym_binary_fold] = STATE(10359), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7165), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(6799), - [sym_assignment_expression_lhs_expression] = STATE(9691), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_typed_metavar] = STATE(9691), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [aux_sym_type_definition_type_repeat1] = STATE(5043), - [aux_sym_sized_type_specifier_repeat1] = STATE(6372), - [sym_identifier] = ACTIONS(3045), + [sym_type_qualifier] = STATE(4684), + [sym_type_specifier] = STATE(5847), + [sym_sized_type_specifier] = STATE(2673), + [sym_enum_specifier] = STATE(2673), + [sym_struct_specifier] = STATE(2673), + [sym_union_specifier] = STATE(2673), + [sym_expression] = STATE(3184), + [sym_expression_not_binary] = STATE(3766), + [sym_comma_expression] = STATE(10022), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_type_descriptor] = STATE(8687), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_placeholder_type_specifier] = STATE(2673), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2580), + [sym_class_specifier] = STATE(2673), + [sym_class_name] = STATE(8737), + [sym_dependent_type] = STATE(2673), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_unary_left_fold] = STATE(9397), + [sym_unary_right_fold] = STATE(9397), + [sym_binary_fold] = STATE(9397), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6631), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(6338), + [sym_assignment_expression_lhs_expression] = STATE(10022), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_typed_metavar] = STATE(10022), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [aux_sym_type_definition_type_repeat1] = STATE(4684), + [aux_sym_sized_type_specifier_repeat1] = STATE(5792), + [sym_identifier] = ACTIONS(3040), [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), - [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3042), [anon_sym_BANG] = ACTIONS(2203), [anon_sym_TILDE] = ACTIONS(2203), [anon_sym_DASH] = ACTIONS(2207), [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_signed] = ACTIONS(2217), - [anon_sym_unsigned] = ACTIONS(2217), - [anon_sym_long] = ACTIONS(2217), - [anon_sym_short] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_signed] = ACTIONS(2215), + [anon_sym_unsigned] = ACTIONS(2215), + [anon_sym_long] = ACTIONS(2215), + [anon_sym_short] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2227), [anon_sym_not] = ACTIONS(2207), [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2253), - [anon_sym_decltype] = ACTIONS(2255), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2251), + [anon_sym_decltype] = ACTIONS(2253), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, [284] = { - [sym_type_qualifier] = STATE(5043), - [sym_type_specifier] = STATE(6255), - [sym_sized_type_specifier] = STATE(2630), - [sym_enum_specifier] = STATE(2630), - [sym_struct_specifier] = STATE(2630), - [sym_union_specifier] = STATE(2630), - [sym_expression] = STATE(3418), - [sym_expression_not_binary] = STATE(4050), - [sym_comma_expression] = STATE(10483), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_type_descriptor] = STATE(9605), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_placeholder_type_specifier] = STATE(2630), - [sym_decltype_auto] = STATE(2627), - [sym_decltype] = STATE(2479), - [sym_class_specifier] = STATE(2630), - [sym_class_name] = STATE(9276), - [sym_dependent_type] = STATE(2630), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_unary_left_fold] = STATE(9657), - [sym_unary_right_fold] = STATE(9657), - [sym_binary_fold] = STATE(9657), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7165), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(6799), - [sym_assignment_expression_lhs_expression] = STATE(10483), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_typed_metavar] = STATE(10483), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [aux_sym_type_definition_type_repeat1] = STATE(5043), - [aux_sym_sized_type_specifier_repeat1] = STATE(6372), - [sym_identifier] = ACTIONS(3045), + [sym_type_qualifier] = STATE(4684), + [sym_type_specifier] = STATE(5847), + [sym_sized_type_specifier] = STATE(2673), + [sym_enum_specifier] = STATE(2673), + [sym_struct_specifier] = STATE(2673), + [sym_union_specifier] = STATE(2673), + [sym_expression] = STATE(3130), + [sym_expression_not_binary] = STATE(3766), + [sym_comma_expression] = STATE(9610), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_type_descriptor] = STATE(8798), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_placeholder_type_specifier] = STATE(2673), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2580), + [sym_class_specifier] = STATE(2673), + [sym_class_name] = STATE(8737), + [sym_dependent_type] = STATE(2673), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_unary_left_fold] = STATE(9504), + [sym_unary_right_fold] = STATE(9504), + [sym_binary_fold] = STATE(9504), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6631), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(6338), + [sym_assignment_expression_lhs_expression] = STATE(9610), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_typed_metavar] = STATE(9610), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [aux_sym_type_definition_type_repeat1] = STATE(4684), + [aux_sym_sized_type_specifier_repeat1] = STATE(5792), + [sym_identifier] = ACTIONS(3040), [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), - [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3042), [anon_sym_BANG] = ACTIONS(2203), [anon_sym_TILDE] = ACTIONS(2203), [anon_sym_DASH] = ACTIONS(2207), [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_signed] = ACTIONS(2217), - [anon_sym_unsigned] = ACTIONS(2217), - [anon_sym_long] = ACTIONS(2217), - [anon_sym_short] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_signed] = ACTIONS(2215), + [anon_sym_unsigned] = ACTIONS(2215), + [anon_sym_long] = ACTIONS(2215), + [anon_sym_short] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2227), [anon_sym_not] = ACTIONS(2207), [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2253), - [anon_sym_decltype] = ACTIONS(2255), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2251), + [anon_sym_decltype] = ACTIONS(2253), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, [285] = { - [sym_type_qualifier] = STATE(5043), - [sym_type_specifier] = STATE(6255), - [sym_sized_type_specifier] = STATE(2630), - [sym_enum_specifier] = STATE(2630), - [sym_struct_specifier] = STATE(2630), - [sym_union_specifier] = STATE(2630), - [sym_expression] = STATE(3418), - [sym_expression_not_binary] = STATE(4050), - [sym_comma_expression] = STATE(10483), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_type_descriptor] = STATE(9183), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_placeholder_type_specifier] = STATE(2630), - [sym_decltype_auto] = STATE(2627), - [sym_decltype] = STATE(2479), - [sym_class_specifier] = STATE(2630), - [sym_class_name] = STATE(9276), - [sym_dependent_type] = STATE(2630), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_unary_left_fold] = STATE(9657), - [sym_unary_right_fold] = STATE(9657), - [sym_binary_fold] = STATE(9657), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7165), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(6799), - [sym_assignment_expression_lhs_expression] = STATE(10483), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_typed_metavar] = STATE(10483), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [aux_sym_type_definition_type_repeat1] = STATE(5043), - [aux_sym_sized_type_specifier_repeat1] = STATE(6372), - [sym_identifier] = ACTIONS(3045), + [sym_type_qualifier] = STATE(4684), + [sym_type_specifier] = STATE(5847), + [sym_sized_type_specifier] = STATE(2673), + [sym_enum_specifier] = STATE(2673), + [sym_struct_specifier] = STATE(2673), + [sym_union_specifier] = STATE(2673), + [sym_expression] = STATE(3122), + [sym_expression_not_binary] = STATE(3766), + [sym_comma_expression] = STATE(9355), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_type_descriptor] = STATE(8888), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_placeholder_type_specifier] = STATE(2673), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2580), + [sym_class_specifier] = STATE(2673), + [sym_class_name] = STATE(8737), + [sym_dependent_type] = STATE(2673), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_unary_left_fold] = STATE(9296), + [sym_unary_right_fold] = STATE(9296), + [sym_binary_fold] = STATE(9296), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6631), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(6338), + [sym_assignment_expression_lhs_expression] = STATE(9355), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_typed_metavar] = STATE(9355), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [aux_sym_type_definition_type_repeat1] = STATE(4684), + [aux_sym_sized_type_specifier_repeat1] = STATE(5792), + [sym_identifier] = ACTIONS(3040), [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), - [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3042), [anon_sym_BANG] = ACTIONS(2203), [anon_sym_TILDE] = ACTIONS(2203), [anon_sym_DASH] = ACTIONS(2207), [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_signed] = ACTIONS(2217), - [anon_sym_unsigned] = ACTIONS(2217), - [anon_sym_long] = ACTIONS(2217), - [anon_sym_short] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_signed] = ACTIONS(2215), + [anon_sym_unsigned] = ACTIONS(2215), + [anon_sym_long] = ACTIONS(2215), + [anon_sym_short] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2227), [anon_sym_not] = ACTIONS(2207), [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2253), - [anon_sym_decltype] = ACTIONS(2255), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2251), + [anon_sym_decltype] = ACTIONS(2253), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, [286] = { - [sym_type_qualifier] = STATE(5043), - [sym_type_specifier] = STATE(6255), - [sym_sized_type_specifier] = STATE(2630), - [sym_enum_specifier] = STATE(2630), - [sym_struct_specifier] = STATE(2630), - [sym_union_specifier] = STATE(2630), - [sym_expression] = STATE(3414), - [sym_expression_not_binary] = STATE(4050), - [sym_comma_expression] = STATE(10099), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_type_descriptor] = STATE(9640), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_placeholder_type_specifier] = STATE(2630), - [sym_decltype_auto] = STATE(2627), - [sym_decltype] = STATE(2479), - [sym_class_specifier] = STATE(2630), - [sym_class_name] = STATE(9276), - [sym_dependent_type] = STATE(2630), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_unary_left_fold] = STATE(10672), - [sym_unary_right_fold] = STATE(10672), - [sym_binary_fold] = STATE(10672), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7165), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(6799), - [sym_assignment_expression_lhs_expression] = STATE(10099), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_typed_metavar] = STATE(10099), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [aux_sym_type_definition_type_repeat1] = STATE(5043), - [aux_sym_sized_type_specifier_repeat1] = STATE(6372), - [sym_identifier] = ACTIONS(3045), + [sym_type_qualifier] = STATE(4684), + [sym_type_specifier] = STATE(5847), + [sym_sized_type_specifier] = STATE(2673), + [sym_enum_specifier] = STATE(2673), + [sym_struct_specifier] = STATE(2673), + [sym_union_specifier] = STATE(2673), + [sym_expression] = STATE(3184), + [sym_expression_not_binary] = STATE(3766), + [sym_comma_expression] = STATE(10022), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_type_descriptor] = STATE(8714), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_placeholder_type_specifier] = STATE(2673), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2580), + [sym_class_specifier] = STATE(2673), + [sym_class_name] = STATE(8737), + [sym_dependent_type] = STATE(2673), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_unary_left_fold] = STATE(9397), + [sym_unary_right_fold] = STATE(9397), + [sym_binary_fold] = STATE(9397), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6631), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(6338), + [sym_assignment_expression_lhs_expression] = STATE(10022), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_typed_metavar] = STATE(10022), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [aux_sym_type_definition_type_repeat1] = STATE(4684), + [aux_sym_sized_type_specifier_repeat1] = STATE(5792), + [sym_identifier] = ACTIONS(3040), [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), - [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3042), [anon_sym_BANG] = ACTIONS(2203), [anon_sym_TILDE] = ACTIONS(2203), [anon_sym_DASH] = ACTIONS(2207), [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_signed] = ACTIONS(2217), - [anon_sym_unsigned] = ACTIONS(2217), - [anon_sym_long] = ACTIONS(2217), - [anon_sym_short] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_signed] = ACTIONS(2215), + [anon_sym_unsigned] = ACTIONS(2215), + [anon_sym_long] = ACTIONS(2215), + [anon_sym_short] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2227), [anon_sym_not] = ACTIONS(2207), [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2253), - [anon_sym_decltype] = ACTIONS(2255), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2251), + [anon_sym_decltype] = ACTIONS(2253), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, [287] = { - [sym_type_qualifier] = STATE(5043), - [sym_type_specifier] = STATE(6255), - [sym_sized_type_specifier] = STATE(2630), - [sym_enum_specifier] = STATE(2630), - [sym_struct_specifier] = STATE(2630), - [sym_union_specifier] = STATE(2630), - [sym_expression] = STATE(3418), - [sym_expression_not_binary] = STATE(4050), - [sym_comma_expression] = STATE(10483), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_type_descriptor] = STATE(9181), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_placeholder_type_specifier] = STATE(2630), - [sym_decltype_auto] = STATE(2627), - [sym_decltype] = STATE(2479), - [sym_class_specifier] = STATE(2630), - [sym_class_name] = STATE(9276), - [sym_dependent_type] = STATE(2630), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_unary_left_fold] = STATE(10545), - [sym_unary_right_fold] = STATE(10545), - [sym_binary_fold] = STATE(10545), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7165), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(6799), - [sym_assignment_expression_lhs_expression] = STATE(10483), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_typed_metavar] = STATE(10483), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [aux_sym_type_definition_type_repeat1] = STATE(5043), - [aux_sym_sized_type_specifier_repeat1] = STATE(6372), - [sym_identifier] = ACTIONS(3045), + [sym_type_qualifier] = STATE(4684), + [sym_type_specifier] = STATE(5847), + [sym_sized_type_specifier] = STATE(2673), + [sym_enum_specifier] = STATE(2673), + [sym_struct_specifier] = STATE(2673), + [sym_union_specifier] = STATE(2673), + [sym_expression] = STATE(3175), + [sym_expression_not_binary] = STATE(3766), + [sym_comma_expression] = STATE(9905), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_type_descriptor] = STATE(8980), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_placeholder_type_specifier] = STATE(2673), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2580), + [sym_class_specifier] = STATE(2673), + [sym_class_name] = STATE(8737), + [sym_dependent_type] = STATE(2673), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_unary_left_fold] = STATE(9598), + [sym_unary_right_fold] = STATE(9598), + [sym_binary_fold] = STATE(9598), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6631), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(6338), + [sym_assignment_expression_lhs_expression] = STATE(9905), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_typed_metavar] = STATE(9905), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [aux_sym_type_definition_type_repeat1] = STATE(4684), + [aux_sym_sized_type_specifier_repeat1] = STATE(5792), + [sym_identifier] = ACTIONS(3040), [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), - [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3042), [anon_sym_BANG] = ACTIONS(2203), [anon_sym_TILDE] = ACTIONS(2203), [anon_sym_DASH] = ACTIONS(2207), [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_signed] = ACTIONS(2217), - [anon_sym_unsigned] = ACTIONS(2217), - [anon_sym_long] = ACTIONS(2217), - [anon_sym_short] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_signed] = ACTIONS(2215), + [anon_sym_unsigned] = ACTIONS(2215), + [anon_sym_long] = ACTIONS(2215), + [anon_sym_short] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2227), [anon_sym_not] = ACTIONS(2207), [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2253), - [anon_sym_decltype] = ACTIONS(2255), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2251), + [anon_sym_decltype] = ACTIONS(2253), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, [288] = { - [sym_type_qualifier] = STATE(5043), - [sym_type_specifier] = STATE(6255), - [sym_sized_type_specifier] = STATE(2630), - [sym_enum_specifier] = STATE(2630), - [sym_struct_specifier] = STATE(2630), - [sym_union_specifier] = STATE(2630), - [sym_expression] = STATE(3368), - [sym_expression_not_binary] = STATE(4050), - [sym_comma_expression] = STATE(10659), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_type_descriptor] = STATE(9374), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_placeholder_type_specifier] = STATE(2630), - [sym_decltype_auto] = STATE(2627), - [sym_decltype] = STATE(2479), - [sym_class_specifier] = STATE(2630), - [sym_class_name] = STATE(9276), - [sym_dependent_type] = STATE(2630), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_unary_left_fold] = STATE(9880), - [sym_unary_right_fold] = STATE(9880), - [sym_binary_fold] = STATE(9880), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7165), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(6799), - [sym_assignment_expression_lhs_expression] = STATE(10659), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_typed_metavar] = STATE(10659), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [aux_sym_type_definition_type_repeat1] = STATE(5043), - [aux_sym_sized_type_specifier_repeat1] = STATE(6372), - [sym_identifier] = ACTIONS(3045), + [sym_type_qualifier] = STATE(4684), + [sym_type_specifier] = STATE(5847), + [sym_sized_type_specifier] = STATE(2673), + [sym_enum_specifier] = STATE(2673), + [sym_struct_specifier] = STATE(2673), + [sym_union_specifier] = STATE(2673), + [sym_expression] = STATE(3130), + [sym_expression_not_binary] = STATE(3766), + [sym_comma_expression] = STATE(9610), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_type_descriptor] = STATE(8993), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_placeholder_type_specifier] = STATE(2673), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2580), + [sym_class_specifier] = STATE(2673), + [sym_class_name] = STATE(8737), + [sym_dependent_type] = STATE(2673), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_unary_left_fold] = STATE(9507), + [sym_unary_right_fold] = STATE(9507), + [sym_binary_fold] = STATE(9507), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6631), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(6338), + [sym_assignment_expression_lhs_expression] = STATE(9610), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_typed_metavar] = STATE(9610), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [aux_sym_type_definition_type_repeat1] = STATE(4684), + [aux_sym_sized_type_specifier_repeat1] = STATE(5792), + [sym_identifier] = ACTIONS(3040), [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), - [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3042), [anon_sym_BANG] = ACTIONS(2203), [anon_sym_TILDE] = ACTIONS(2203), [anon_sym_DASH] = ACTIONS(2207), [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_signed] = ACTIONS(2217), - [anon_sym_unsigned] = ACTIONS(2217), - [anon_sym_long] = ACTIONS(2217), - [anon_sym_short] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_signed] = ACTIONS(2215), + [anon_sym_unsigned] = ACTIONS(2215), + [anon_sym_long] = ACTIONS(2215), + [anon_sym_short] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2227), [anon_sym_not] = ACTIONS(2207), [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2253), - [anon_sym_decltype] = ACTIONS(2255), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2251), + [anon_sym_decltype] = ACTIONS(2253), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, [289] = { - [sym_type_qualifier] = STATE(5043), - [sym_type_specifier] = STATE(6255), - [sym_sized_type_specifier] = STATE(2630), - [sym_enum_specifier] = STATE(2630), - [sym_struct_specifier] = STATE(2630), - [sym_union_specifier] = STATE(2630), - [sym_expression] = STATE(3447), - [sym_expression_not_binary] = STATE(4050), - [sym_comma_expression] = STATE(9691), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_type_descriptor] = STATE(9469), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_placeholder_type_specifier] = STATE(2630), - [sym_decltype_auto] = STATE(2627), - [sym_decltype] = STATE(2479), - [sym_class_specifier] = STATE(2630), - [sym_class_name] = STATE(9276), - [sym_dependent_type] = STATE(2630), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_unary_left_fold] = STATE(10055), - [sym_unary_right_fold] = STATE(10055), - [sym_binary_fold] = STATE(10055), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7165), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(6799), - [sym_assignment_expression_lhs_expression] = STATE(9691), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_typed_metavar] = STATE(9691), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [aux_sym_type_definition_type_repeat1] = STATE(5043), - [aux_sym_sized_type_specifier_repeat1] = STATE(6372), - [sym_identifier] = ACTIONS(3045), + [sym_type_qualifier] = STATE(4684), + [sym_type_specifier] = STATE(5847), + [sym_sized_type_specifier] = STATE(2673), + [sym_enum_specifier] = STATE(2673), + [sym_struct_specifier] = STATE(2673), + [sym_union_specifier] = STATE(2673), + [sym_expression] = STATE(3130), + [sym_expression_not_binary] = STATE(3766), + [sym_comma_expression] = STATE(9610), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_type_descriptor] = STATE(8756), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_placeholder_type_specifier] = STATE(2673), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2580), + [sym_class_specifier] = STATE(2673), + [sym_class_name] = STATE(8737), + [sym_dependent_type] = STATE(2673), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_unary_left_fold] = STATE(9504), + [sym_unary_right_fold] = STATE(9504), + [sym_binary_fold] = STATE(9504), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6631), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(6338), + [sym_assignment_expression_lhs_expression] = STATE(9610), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_typed_metavar] = STATE(9610), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [aux_sym_type_definition_type_repeat1] = STATE(4684), + [aux_sym_sized_type_specifier_repeat1] = STATE(5792), + [sym_identifier] = ACTIONS(3040), [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), - [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3042), [anon_sym_BANG] = ACTIONS(2203), [anon_sym_TILDE] = ACTIONS(2203), [anon_sym_DASH] = ACTIONS(2207), [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_signed] = ACTIONS(2217), - [anon_sym_unsigned] = ACTIONS(2217), - [anon_sym_long] = ACTIONS(2217), - [anon_sym_short] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_signed] = ACTIONS(2215), + [anon_sym_unsigned] = ACTIONS(2215), + [anon_sym_long] = ACTIONS(2215), + [anon_sym_short] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2227), [anon_sym_not] = ACTIONS(2207), [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2253), - [anon_sym_decltype] = ACTIONS(2255), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2251), + [anon_sym_decltype] = ACTIONS(2253), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, [290] = { - [sym_type_qualifier] = STATE(5043), - [sym_type_specifier] = STATE(6255), - [sym_sized_type_specifier] = STATE(2630), - [sym_enum_specifier] = STATE(2630), - [sym_struct_specifier] = STATE(2630), - [sym_union_specifier] = STATE(2630), - [sym_expression] = STATE(3381), - [sym_expression_not_binary] = STATE(4050), - [sym_comma_expression] = STATE(10536), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_type_descriptor] = STATE(9529), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_placeholder_type_specifier] = STATE(2630), - [sym_decltype_auto] = STATE(2627), - [sym_decltype] = STATE(2479), - [sym_class_specifier] = STATE(2630), - [sym_class_name] = STATE(9276), - [sym_dependent_type] = STATE(2630), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_unary_left_fold] = STATE(10159), - [sym_unary_right_fold] = STATE(10159), - [sym_binary_fold] = STATE(10159), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7165), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(6799), - [sym_assignment_expression_lhs_expression] = STATE(10536), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_typed_metavar] = STATE(10536), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [aux_sym_type_definition_type_repeat1] = STATE(5043), - [aux_sym_sized_type_specifier_repeat1] = STATE(6372), - [sym_identifier] = ACTIONS(3045), + [sym_type_qualifier] = STATE(4684), + [sym_type_specifier] = STATE(5847), + [sym_sized_type_specifier] = STATE(2673), + [sym_enum_specifier] = STATE(2673), + [sym_struct_specifier] = STATE(2673), + [sym_union_specifier] = STATE(2673), + [sym_expression] = STATE(3184), + [sym_expression_not_binary] = STATE(3766), + [sym_comma_expression] = STATE(10022), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_type_descriptor] = STATE(8950), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_placeholder_type_specifier] = STATE(2673), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2580), + [sym_class_specifier] = STATE(2673), + [sym_class_name] = STATE(8737), + [sym_dependent_type] = STATE(2673), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_unary_left_fold] = STATE(9216), + [sym_unary_right_fold] = STATE(9216), + [sym_binary_fold] = STATE(9216), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6631), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(6338), + [sym_assignment_expression_lhs_expression] = STATE(10022), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_typed_metavar] = STATE(10022), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [aux_sym_type_definition_type_repeat1] = STATE(4684), + [aux_sym_sized_type_specifier_repeat1] = STATE(5792), + [sym_identifier] = ACTIONS(3040), [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), - [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3042), [anon_sym_BANG] = ACTIONS(2203), [anon_sym_TILDE] = ACTIONS(2203), [anon_sym_DASH] = ACTIONS(2207), [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_signed] = ACTIONS(2217), - [anon_sym_unsigned] = ACTIONS(2217), - [anon_sym_long] = ACTIONS(2217), - [anon_sym_short] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_signed] = ACTIONS(2215), + [anon_sym_unsigned] = ACTIONS(2215), + [anon_sym_long] = ACTIONS(2215), + [anon_sym_short] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2227), [anon_sym_not] = ACTIONS(2207), [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2253), - [anon_sym_decltype] = ACTIONS(2255), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2251), + [anon_sym_decltype] = ACTIONS(2253), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, [291] = { - [sym_type_qualifier] = STATE(5043), - [sym_type_specifier] = STATE(6255), - [sym_sized_type_specifier] = STATE(2630), - [sym_enum_specifier] = STATE(2630), - [sym_struct_specifier] = STATE(2630), - [sym_union_specifier] = STATE(2630), - [sym_expression] = STATE(3414), - [sym_expression_not_binary] = STATE(4050), - [sym_comma_expression] = STATE(10099), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_type_descriptor] = STATE(9639), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_placeholder_type_specifier] = STATE(2630), - [sym_decltype_auto] = STATE(2627), - [sym_decltype] = STATE(2479), - [sym_class_specifier] = STATE(2630), - [sym_class_name] = STATE(9276), - [sym_dependent_type] = STATE(2630), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_unary_left_fold] = STATE(10656), - [sym_unary_right_fold] = STATE(10656), - [sym_binary_fold] = STATE(10656), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7165), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(6799), - [sym_assignment_expression_lhs_expression] = STATE(10099), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_typed_metavar] = STATE(10099), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [aux_sym_type_definition_type_repeat1] = STATE(5043), - [aux_sym_sized_type_specifier_repeat1] = STATE(6372), - [sym_identifier] = ACTIONS(3045), + [sym_type_qualifier] = STATE(4684), + [sym_type_specifier] = STATE(5847), + [sym_sized_type_specifier] = STATE(2673), + [sym_enum_specifier] = STATE(2673), + [sym_struct_specifier] = STATE(2673), + [sym_union_specifier] = STATE(2673), + [sym_expression] = STATE(3186), + [sym_expression_not_binary] = STATE(3766), + [sym_comma_expression] = STATE(9246), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_type_descriptor] = STATE(8859), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_placeholder_type_specifier] = STATE(2673), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2580), + [sym_class_specifier] = STATE(2673), + [sym_class_name] = STATE(8737), + [sym_dependent_type] = STATE(2673), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_unary_left_fold] = STATE(9256), + [sym_unary_right_fold] = STATE(9256), + [sym_binary_fold] = STATE(9256), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6631), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(6338), + [sym_assignment_expression_lhs_expression] = STATE(9246), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_typed_metavar] = STATE(9246), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [aux_sym_type_definition_type_repeat1] = STATE(4684), + [aux_sym_sized_type_specifier_repeat1] = STATE(5792), + [sym_identifier] = ACTIONS(3040), [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), - [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3042), [anon_sym_BANG] = ACTIONS(2203), [anon_sym_TILDE] = ACTIONS(2203), [anon_sym_DASH] = ACTIONS(2207), [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_signed] = ACTIONS(2217), - [anon_sym_unsigned] = ACTIONS(2217), - [anon_sym_long] = ACTIONS(2217), - [anon_sym_short] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_signed] = ACTIONS(2215), + [anon_sym_unsigned] = ACTIONS(2215), + [anon_sym_long] = ACTIONS(2215), + [anon_sym_short] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2227), [anon_sym_not] = ACTIONS(2207), [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2253), - [anon_sym_decltype] = ACTIONS(2255), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2251), + [anon_sym_decltype] = ACTIONS(2253), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, [292] = { - [sym_type_qualifier] = STATE(5043), - [sym_type_specifier] = STATE(6255), - [sym_sized_type_specifier] = STATE(2630), - [sym_enum_specifier] = STATE(2630), - [sym_struct_specifier] = STATE(2630), - [sym_union_specifier] = STATE(2630), - [sym_expression] = STATE(3368), - [sym_expression_not_binary] = STATE(4050), - [sym_comma_expression] = STATE(10659), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_type_descriptor] = STATE(9340), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_placeholder_type_specifier] = STATE(2630), - [sym_decltype_auto] = STATE(2627), - [sym_decltype] = STATE(2479), - [sym_class_specifier] = STATE(2630), - [sym_class_name] = STATE(9276), - [sym_dependent_type] = STATE(2630), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_unary_left_fold] = STATE(9678), - [sym_unary_right_fold] = STATE(9678), - [sym_binary_fold] = STATE(9678), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7165), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(6799), - [sym_assignment_expression_lhs_expression] = STATE(10659), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_typed_metavar] = STATE(10659), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [aux_sym_type_definition_type_repeat1] = STATE(5043), - [aux_sym_sized_type_specifier_repeat1] = STATE(6372), - [sym_identifier] = ACTIONS(3045), + [sym_type_qualifier] = STATE(4684), + [sym_type_specifier] = STATE(5847), + [sym_sized_type_specifier] = STATE(2673), + [sym_enum_specifier] = STATE(2673), + [sym_struct_specifier] = STATE(2673), + [sym_union_specifier] = STATE(2673), + [sym_expression] = STATE(3184), + [sym_expression_not_binary] = STATE(3766), + [sym_comma_expression] = STATE(10022), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_type_descriptor] = STATE(9015), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_placeholder_type_specifier] = STATE(2673), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2580), + [sym_class_specifier] = STATE(2673), + [sym_class_name] = STATE(8737), + [sym_dependent_type] = STATE(2673), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_unary_left_fold] = STATE(9216), + [sym_unary_right_fold] = STATE(9216), + [sym_binary_fold] = STATE(9216), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6631), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(6338), + [sym_assignment_expression_lhs_expression] = STATE(10022), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_typed_metavar] = STATE(10022), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [aux_sym_type_definition_type_repeat1] = STATE(4684), + [aux_sym_sized_type_specifier_repeat1] = STATE(5792), + [sym_identifier] = ACTIONS(3040), [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), - [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3042), [anon_sym_BANG] = ACTIONS(2203), [anon_sym_TILDE] = ACTIONS(2203), [anon_sym_DASH] = ACTIONS(2207), [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_signed] = ACTIONS(2217), - [anon_sym_unsigned] = ACTIONS(2217), - [anon_sym_long] = ACTIONS(2217), - [anon_sym_short] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_signed] = ACTIONS(2215), + [anon_sym_unsigned] = ACTIONS(2215), + [anon_sym_long] = ACTIONS(2215), + [anon_sym_short] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2227), [anon_sym_not] = ACTIONS(2207), [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2253), - [anon_sym_decltype] = ACTIONS(2255), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2251), + [anon_sym_decltype] = ACTIONS(2253), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, [293] = { - [sym_type_qualifier] = STATE(5043), - [sym_type_specifier] = STATE(6255), - [sym_sized_type_specifier] = STATE(2630), - [sym_enum_specifier] = STATE(2630), - [sym_struct_specifier] = STATE(2630), - [sym_union_specifier] = STATE(2630), - [sym_expression] = STATE(3447), - [sym_expression_not_binary] = STATE(4050), - [sym_comma_expression] = STATE(9691), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_type_descriptor] = STATE(9232), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_placeholder_type_specifier] = STATE(2630), - [sym_decltype_auto] = STATE(2627), - [sym_decltype] = STATE(2479), - [sym_class_specifier] = STATE(2630), - [sym_class_name] = STATE(9276), - [sym_dependent_type] = STATE(2630), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_unary_left_fold] = STATE(10359), - [sym_unary_right_fold] = STATE(10359), - [sym_binary_fold] = STATE(10359), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7165), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(6799), - [sym_assignment_expression_lhs_expression] = STATE(9691), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_typed_metavar] = STATE(9691), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [aux_sym_type_definition_type_repeat1] = STATE(5043), - [aux_sym_sized_type_specifier_repeat1] = STATE(6372), - [sym_identifier] = ACTIONS(3045), + [sym_type_qualifier] = STATE(4684), + [sym_type_specifier] = STATE(5847), + [sym_sized_type_specifier] = STATE(2673), + [sym_enum_specifier] = STATE(2673), + [sym_struct_specifier] = STATE(2673), + [sym_union_specifier] = STATE(2673), + [sym_expression] = STATE(3184), + [sym_expression_not_binary] = STATE(3766), + [sym_comma_expression] = STATE(10022), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_type_descriptor] = STATE(8919), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_placeholder_type_specifier] = STATE(2673), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2580), + [sym_class_specifier] = STATE(2673), + [sym_class_name] = STATE(8737), + [sym_dependent_type] = STATE(2673), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_unary_left_fold] = STATE(9397), + [sym_unary_right_fold] = STATE(9397), + [sym_binary_fold] = STATE(9397), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6631), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(6338), + [sym_assignment_expression_lhs_expression] = STATE(10022), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_typed_metavar] = STATE(10022), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [aux_sym_type_definition_type_repeat1] = STATE(4684), + [aux_sym_sized_type_specifier_repeat1] = STATE(5792), + [sym_identifier] = ACTIONS(3040), [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), - [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3042), [anon_sym_BANG] = ACTIONS(2203), [anon_sym_TILDE] = ACTIONS(2203), [anon_sym_DASH] = ACTIONS(2207), [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_signed] = ACTIONS(2217), - [anon_sym_unsigned] = ACTIONS(2217), - [anon_sym_long] = ACTIONS(2217), - [anon_sym_short] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_signed] = ACTIONS(2215), + [anon_sym_unsigned] = ACTIONS(2215), + [anon_sym_long] = ACTIONS(2215), + [anon_sym_short] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2227), [anon_sym_not] = ACTIONS(2207), [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2253), - [anon_sym_decltype] = ACTIONS(2255), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2251), + [anon_sym_decltype] = ACTIONS(2253), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, [294] = { - [sym_type_qualifier] = STATE(5043), - [sym_type_specifier] = STATE(6255), - [sym_sized_type_specifier] = STATE(2630), - [sym_enum_specifier] = STATE(2630), - [sym_struct_specifier] = STATE(2630), - [sym_union_specifier] = STATE(2630), - [sym_expression] = STATE(3368), - [sym_expression_not_binary] = STATE(4050), - [sym_comma_expression] = STATE(10659), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_type_descriptor] = STATE(9313), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_placeholder_type_specifier] = STATE(2630), - [sym_decltype_auto] = STATE(2627), - [sym_decltype] = STATE(2479), - [sym_class_specifier] = STATE(2630), - [sym_class_name] = STATE(9276), - [sym_dependent_type] = STATE(2630), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_unary_left_fold] = STATE(9880), - [sym_unary_right_fold] = STATE(9880), - [sym_binary_fold] = STATE(9880), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7165), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(6799), - [sym_assignment_expression_lhs_expression] = STATE(10659), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_typed_metavar] = STATE(10659), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [aux_sym_type_definition_type_repeat1] = STATE(5043), - [aux_sym_sized_type_specifier_repeat1] = STATE(6372), - [sym_identifier] = ACTIONS(3045), + [sym_type_qualifier] = STATE(4684), + [sym_type_specifier] = STATE(5847), + [sym_sized_type_specifier] = STATE(2673), + [sym_enum_specifier] = STATE(2673), + [sym_struct_specifier] = STATE(2673), + [sym_union_specifier] = STATE(2673), + [sym_expression] = STATE(3184), + [sym_expression_not_binary] = STATE(3766), + [sym_comma_expression] = STATE(10022), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_type_descriptor] = STATE(8963), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_placeholder_type_specifier] = STATE(2673), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2580), + [sym_class_specifier] = STATE(2673), + [sym_class_name] = STATE(8737), + [sym_dependent_type] = STATE(2673), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_unary_left_fold] = STATE(9216), + [sym_unary_right_fold] = STATE(9216), + [sym_binary_fold] = STATE(9216), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6631), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(6338), + [sym_assignment_expression_lhs_expression] = STATE(10022), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_typed_metavar] = STATE(10022), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [aux_sym_type_definition_type_repeat1] = STATE(4684), + [aux_sym_sized_type_specifier_repeat1] = STATE(5792), + [sym_identifier] = ACTIONS(3040), [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), - [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3042), [anon_sym_BANG] = ACTIONS(2203), [anon_sym_TILDE] = ACTIONS(2203), [anon_sym_DASH] = ACTIONS(2207), [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_signed] = ACTIONS(2217), - [anon_sym_unsigned] = ACTIONS(2217), - [anon_sym_long] = ACTIONS(2217), - [anon_sym_short] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_signed] = ACTIONS(2215), + [anon_sym_unsigned] = ACTIONS(2215), + [anon_sym_long] = ACTIONS(2215), + [anon_sym_short] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2227), [anon_sym_not] = ACTIONS(2207), [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2253), - [anon_sym_decltype] = ACTIONS(2255), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2251), + [anon_sym_decltype] = ACTIONS(2253), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, [295] = { - [sym_type_qualifier] = STATE(5043), - [sym_type_specifier] = STATE(6255), - [sym_sized_type_specifier] = STATE(2630), - [sym_enum_specifier] = STATE(2630), - [sym_struct_specifier] = STATE(2630), - [sym_union_specifier] = STATE(2630), - [sym_expression] = STATE(3447), - [sym_expression_not_binary] = STATE(4050), - [sym_comma_expression] = STATE(9691), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_type_descriptor] = STATE(9429), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_placeholder_type_specifier] = STATE(2630), - [sym_decltype_auto] = STATE(2627), - [sym_decltype] = STATE(2479), - [sym_class_specifier] = STATE(2630), - [sym_class_name] = STATE(9276), - [sym_dependent_type] = STATE(2630), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_unary_left_fold] = STATE(10055), - [sym_unary_right_fold] = STATE(10055), - [sym_binary_fold] = STATE(10055), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7165), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(6799), - [sym_assignment_expression_lhs_expression] = STATE(9691), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_typed_metavar] = STATE(9691), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [aux_sym_type_definition_type_repeat1] = STATE(5043), - [aux_sym_sized_type_specifier_repeat1] = STATE(6372), - [sym_identifier] = ACTIONS(3045), + [sym_type_qualifier] = STATE(4684), + [sym_type_specifier] = STATE(5847), + [sym_sized_type_specifier] = STATE(2673), + [sym_enum_specifier] = STATE(2673), + [sym_struct_specifier] = STATE(2673), + [sym_union_specifier] = STATE(2673), + [sym_expression] = STATE(3184), + [sym_expression_not_binary] = STATE(3766), + [sym_comma_expression] = STATE(10022), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_type_descriptor] = STATE(9005), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_placeholder_type_specifier] = STATE(2673), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2580), + [sym_class_specifier] = STATE(2673), + [sym_class_name] = STATE(8737), + [sym_dependent_type] = STATE(2673), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_unary_left_fold] = STATE(9397), + [sym_unary_right_fold] = STATE(9397), + [sym_binary_fold] = STATE(9397), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6631), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(6338), + [sym_assignment_expression_lhs_expression] = STATE(10022), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_typed_metavar] = STATE(10022), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [aux_sym_type_definition_type_repeat1] = STATE(4684), + [aux_sym_sized_type_specifier_repeat1] = STATE(5792), + [sym_identifier] = ACTIONS(3040), [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), - [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3042), [anon_sym_BANG] = ACTIONS(2203), [anon_sym_TILDE] = ACTIONS(2203), [anon_sym_DASH] = ACTIONS(2207), [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_signed] = ACTIONS(2217), - [anon_sym_unsigned] = ACTIONS(2217), - [anon_sym_long] = ACTIONS(2217), - [anon_sym_short] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_signed] = ACTIONS(2215), + [anon_sym_unsigned] = ACTIONS(2215), + [anon_sym_long] = ACTIONS(2215), + [anon_sym_short] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2227), [anon_sym_not] = ACTIONS(2207), [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2253), - [anon_sym_decltype] = ACTIONS(2255), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2251), + [anon_sym_decltype] = ACTIONS(2253), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, [296] = { - [sym_type_qualifier] = STATE(5043), - [sym_type_specifier] = STATE(6255), - [sym_sized_type_specifier] = STATE(2630), - [sym_enum_specifier] = STATE(2630), - [sym_struct_specifier] = STATE(2630), - [sym_union_specifier] = STATE(2630), - [sym_expression] = STATE(3418), - [sym_expression_not_binary] = STATE(4050), - [sym_comma_expression] = STATE(10483), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_type_descriptor] = STATE(9552), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_placeholder_type_specifier] = STATE(2630), - [sym_decltype_auto] = STATE(2627), - [sym_decltype] = STATE(2479), - [sym_class_specifier] = STATE(2630), - [sym_class_name] = STATE(9276), - [sym_dependent_type] = STATE(2630), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_unary_left_fold] = STATE(10545), - [sym_unary_right_fold] = STATE(10545), - [sym_binary_fold] = STATE(10545), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7165), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(6799), - [sym_assignment_expression_lhs_expression] = STATE(10483), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_typed_metavar] = STATE(10483), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [aux_sym_type_definition_type_repeat1] = STATE(5043), - [aux_sym_sized_type_specifier_repeat1] = STATE(6372), - [sym_identifier] = ACTIONS(3045), + [sym_type_qualifier] = STATE(4684), + [sym_type_specifier] = STATE(5847), + [sym_sized_type_specifier] = STATE(2673), + [sym_enum_specifier] = STATE(2673), + [sym_struct_specifier] = STATE(2673), + [sym_union_specifier] = STATE(2673), + [sym_expression] = STATE(3184), + [sym_expression_not_binary] = STATE(3766), + [sym_comma_expression] = STATE(10022), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_type_descriptor] = STATE(9060), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_placeholder_type_specifier] = STATE(2673), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2580), + [sym_class_specifier] = STATE(2673), + [sym_class_name] = STATE(8737), + [sym_dependent_type] = STATE(2673), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_unary_left_fold] = STATE(9397), + [sym_unary_right_fold] = STATE(9397), + [sym_binary_fold] = STATE(9397), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6631), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(6338), + [sym_assignment_expression_lhs_expression] = STATE(10022), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_typed_metavar] = STATE(10022), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [aux_sym_type_definition_type_repeat1] = STATE(4684), + [aux_sym_sized_type_specifier_repeat1] = STATE(5792), + [sym_identifier] = ACTIONS(3040), [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), - [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3042), [anon_sym_BANG] = ACTIONS(2203), [anon_sym_TILDE] = ACTIONS(2203), [anon_sym_DASH] = ACTIONS(2207), [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_signed] = ACTIONS(2217), - [anon_sym_unsigned] = ACTIONS(2217), - [anon_sym_long] = ACTIONS(2217), - [anon_sym_short] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_signed] = ACTIONS(2215), + [anon_sym_unsigned] = ACTIONS(2215), + [anon_sym_long] = ACTIONS(2215), + [anon_sym_short] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2227), [anon_sym_not] = ACTIONS(2207), [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2253), - [anon_sym_decltype] = ACTIONS(2255), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2251), + [anon_sym_decltype] = ACTIONS(2253), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, [297] = { - [sym_type_qualifier] = STATE(5043), - [sym_type_specifier] = STATE(6255), - [sym_sized_type_specifier] = STATE(2630), - [sym_enum_specifier] = STATE(2630), - [sym_struct_specifier] = STATE(2630), - [sym_union_specifier] = STATE(2630), - [sym_expression] = STATE(3418), - [sym_expression_not_binary] = STATE(4050), - [sym_comma_expression] = STATE(10483), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_type_descriptor] = STATE(9600), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_placeholder_type_specifier] = STATE(2630), - [sym_decltype_auto] = STATE(2627), - [sym_decltype] = STATE(2479), - [sym_class_specifier] = STATE(2630), - [sym_class_name] = STATE(9276), - [sym_dependent_type] = STATE(2630), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_unary_left_fold] = STATE(10545), - [sym_unary_right_fold] = STATE(10545), - [sym_binary_fold] = STATE(10545), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7165), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(6799), - [sym_assignment_expression_lhs_expression] = STATE(10483), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_typed_metavar] = STATE(10483), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [aux_sym_type_definition_type_repeat1] = STATE(5043), - [aux_sym_sized_type_specifier_repeat1] = STATE(6372), - [sym_identifier] = ACTIONS(3045), + [sym_type_qualifier] = STATE(4684), + [sym_type_specifier] = STATE(5847), + [sym_sized_type_specifier] = STATE(2673), + [sym_enum_specifier] = STATE(2673), + [sym_struct_specifier] = STATE(2673), + [sym_union_specifier] = STATE(2673), + [sym_expression] = STATE(3184), + [sym_expression_not_binary] = STATE(3766), + [sym_comma_expression] = STATE(10022), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_type_descriptor] = STATE(9017), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_placeholder_type_specifier] = STATE(2673), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2580), + [sym_class_specifier] = STATE(2673), + [sym_class_name] = STATE(8737), + [sym_dependent_type] = STATE(2673), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_unary_left_fold] = STATE(9216), + [sym_unary_right_fold] = STATE(9216), + [sym_binary_fold] = STATE(9216), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6631), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(6338), + [sym_assignment_expression_lhs_expression] = STATE(10022), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_typed_metavar] = STATE(10022), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [aux_sym_type_definition_type_repeat1] = STATE(4684), + [aux_sym_sized_type_specifier_repeat1] = STATE(5792), + [sym_identifier] = ACTIONS(3040), [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), - [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3042), [anon_sym_BANG] = ACTIONS(2203), [anon_sym_TILDE] = ACTIONS(2203), [anon_sym_DASH] = ACTIONS(2207), [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_signed] = ACTIONS(2217), - [anon_sym_unsigned] = ACTIONS(2217), - [anon_sym_long] = ACTIONS(2217), - [anon_sym_short] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_signed] = ACTIONS(2215), + [anon_sym_unsigned] = ACTIONS(2215), + [anon_sym_long] = ACTIONS(2215), + [anon_sym_short] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2227), [anon_sym_not] = ACTIONS(2207), [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2253), - [anon_sym_decltype] = ACTIONS(2255), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2251), + [anon_sym_decltype] = ACTIONS(2253), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, [298] = { - [sym_type_qualifier] = STATE(5043), - [sym_type_specifier] = STATE(6255), - [sym_sized_type_specifier] = STATE(2630), - [sym_enum_specifier] = STATE(2630), - [sym_struct_specifier] = STATE(2630), - [sym_union_specifier] = STATE(2630), - [sym_expression] = STATE(3463), - [sym_expression_not_binary] = STATE(4050), - [sym_comma_expression] = STATE(10333), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_type_descriptor] = STATE(9422), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_placeholder_type_specifier] = STATE(2630), - [sym_decltype_auto] = STATE(2627), - [sym_decltype] = STATE(2479), - [sym_class_specifier] = STATE(2630), - [sym_class_name] = STATE(9276), - [sym_dependent_type] = STATE(2630), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_unary_left_fold] = STATE(9693), - [sym_unary_right_fold] = STATE(9693), - [sym_binary_fold] = STATE(9693), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7165), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(6799), - [sym_assignment_expression_lhs_expression] = STATE(10333), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_typed_metavar] = STATE(10333), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [aux_sym_type_definition_type_repeat1] = STATE(5043), - [aux_sym_sized_type_specifier_repeat1] = STATE(6372), - [sym_identifier] = ACTIONS(3045), + [sym_type_qualifier] = STATE(4684), + [sym_type_specifier] = STATE(5847), + [sym_sized_type_specifier] = STATE(2673), + [sym_enum_specifier] = STATE(2673), + [sym_struct_specifier] = STATE(2673), + [sym_union_specifier] = STATE(2673), + [sym_expression] = STATE(3184), + [sym_expression_not_binary] = STATE(3766), + [sym_comma_expression] = STATE(10022), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_type_descriptor] = STATE(8678), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_placeholder_type_specifier] = STATE(2673), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2580), + [sym_class_specifier] = STATE(2673), + [sym_class_name] = STATE(8737), + [sym_dependent_type] = STATE(2673), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_unary_left_fold] = STATE(9216), + [sym_unary_right_fold] = STATE(9216), + [sym_binary_fold] = STATE(9216), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6631), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(6338), + [sym_assignment_expression_lhs_expression] = STATE(10022), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_typed_metavar] = STATE(10022), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [aux_sym_type_definition_type_repeat1] = STATE(4684), + [aux_sym_sized_type_specifier_repeat1] = STATE(5792), + [sym_identifier] = ACTIONS(3040), [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), - [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_LPAREN2] = ACTIONS(3042), [anon_sym_BANG] = ACTIONS(2203), [anon_sym_TILDE] = ACTIONS(2203), [anon_sym_DASH] = ACTIONS(2207), [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_signed] = ACTIONS(2217), - [anon_sym_unsigned] = ACTIONS(2217), - [anon_sym_long] = ACTIONS(2217), - [anon_sym_short] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_signed] = ACTIONS(2215), + [anon_sym_unsigned] = ACTIONS(2215), + [anon_sym_long] = ACTIONS(2215), + [anon_sym_short] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2227), [anon_sym_not] = ACTIONS(2207), [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2253), - [anon_sym_decltype] = ACTIONS(2255), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2251), + [anon_sym_decltype] = ACTIONS(2253), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, [299] = { - [sym_catch_clause] = STATE(273), - [aux_sym_constructor_try_statement_repeat1] = STATE(273), - [sym_identifier] = ACTIONS(3070), - [aux_sym_preproc_include_token1] = ACTIONS(3070), - [aux_sym_preproc_def_token1] = ACTIONS(3070), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3072), - [aux_sym_preproc_if_token1] = ACTIONS(3070), - [aux_sym_preproc_if_token2] = ACTIONS(3070), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3070), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3070), - [aux_sym_preproc_else_token1] = ACTIONS(3070), - [aux_sym_preproc_elif_token1] = ACTIONS(3070), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3070), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3070), - [sym_preproc_directive] = ACTIONS(3070), - [anon_sym_LPAREN2] = ACTIONS(3072), - [anon_sym_BANG] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_AMP] = ACTIONS(3070), - [anon_sym_SEMI] = ACTIONS(3072), - [anon_sym___extension__] = ACTIONS(3070), - [anon_sym_typedef] = ACTIONS(3070), - [anon_sym_extern] = ACTIONS(3070), - [anon_sym___attribute__] = ACTIONS(3070), - [anon_sym_COLON_COLON] = ACTIONS(3072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3072), - [anon_sym___declspec] = ACTIONS(3070), - [anon_sym___based] = ACTIONS(3070), - [anon_sym___cdecl] = ACTIONS(3070), - [anon_sym___clrcall] = ACTIONS(3070), - [anon_sym___stdcall] = ACTIONS(3070), - [anon_sym___fastcall] = ACTIONS(3070), - [anon_sym___thiscall] = ACTIONS(3070), - [anon_sym___vectorcall] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_signed] = ACTIONS(3070), - [anon_sym_unsigned] = ACTIONS(3070), - [anon_sym_long] = ACTIONS(3070), - [anon_sym_short] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(3070), - [anon_sym_static] = ACTIONS(3070), - [anon_sym_register] = ACTIONS(3070), - [anon_sym_inline] = ACTIONS(3070), - [anon_sym___inline] = ACTIONS(3070), - [anon_sym___inline__] = ACTIONS(3070), - [anon_sym___forceinline] = ACTIONS(3070), - [anon_sym_thread_local] = ACTIONS(3070), - [anon_sym___thread] = ACTIONS(3070), - [anon_sym_const] = ACTIONS(3070), - [anon_sym_constexpr] = ACTIONS(3070), - [anon_sym_volatile] = ACTIONS(3070), - [anon_sym_restrict] = ACTIONS(3070), - [anon_sym___restrict__] = ACTIONS(3070), - [anon_sym__Atomic] = ACTIONS(3070), - [anon_sym__Noreturn] = ACTIONS(3070), - [anon_sym_noreturn] = ACTIONS(3070), - [anon_sym_mutable] = ACTIONS(3070), - [anon_sym_constinit] = ACTIONS(3070), - [anon_sym_consteval] = ACTIONS(3070), - [sym_primitive_type] = ACTIONS(3070), - [anon_sym_enum] = ACTIONS(3070), - [anon_sym_class] = ACTIONS(3070), - [anon_sym_struct] = ACTIONS(3070), - [anon_sym_union] = ACTIONS(3070), - [anon_sym_if] = ACTIONS(3070), - [anon_sym_switch] = ACTIONS(3070), - [anon_sym_case] = ACTIONS(3070), - [anon_sym_default] = ACTIONS(3070), - [anon_sym_while] = ACTIONS(3070), - [anon_sym_do] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3070), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_break] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(3070), - [anon_sym_goto] = ACTIONS(3070), - [anon_sym___try] = ACTIONS(3070), - [anon_sym___leave] = ACTIONS(3070), - [anon_sym_not] = ACTIONS(3070), - [anon_sym_compl] = ACTIONS(3070), - [anon_sym_DASH_DASH] = ACTIONS(3072), - [anon_sym_PLUS_PLUS] = ACTIONS(3072), - [anon_sym_sizeof] = ACTIONS(3070), - [anon_sym___alignof__] = ACTIONS(3070), - [anon_sym___alignof] = ACTIONS(3070), - [anon_sym__alignof] = ACTIONS(3070), - [anon_sym_alignof] = ACTIONS(3070), - [anon_sym__Alignof] = ACTIONS(3070), - [anon_sym_offsetof] = ACTIONS(3070), - [anon_sym__Generic] = ACTIONS(3070), - [anon_sym_asm] = ACTIONS(3070), - [anon_sym___asm__] = ACTIONS(3070), - [sym_number_literal] = ACTIONS(3072), - [anon_sym_L_SQUOTE] = ACTIONS(3072), - [anon_sym_u_SQUOTE] = ACTIONS(3072), - [anon_sym_U_SQUOTE] = ACTIONS(3072), - [anon_sym_u8_SQUOTE] = ACTIONS(3072), - [anon_sym_SQUOTE] = ACTIONS(3072), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3070), - [sym_false] = ACTIONS(3070), - [anon_sym_NULL] = ACTIONS(3070), - [anon_sym_nullptr] = ACTIONS(3070), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3070), - [anon_sym_decltype] = ACTIONS(3070), - [anon_sym_virtual] = ACTIONS(3070), - [anon_sym_alignas] = ACTIONS(3070), - [anon_sym_explicit] = ACTIONS(3070), - [anon_sym_typename] = ACTIONS(3070), - [anon_sym_template] = ACTIONS(3070), - [anon_sym_operator] = ACTIONS(3070), - [anon_sym_try] = ACTIONS(3070), - [anon_sym_delete] = ACTIONS(3070), - [anon_sym_throw] = ACTIONS(3070), - [anon_sym_namespace] = ACTIONS(3070), - [anon_sym_using] = ACTIONS(3070), - [anon_sym_static_assert] = ACTIONS(3070), - [anon_sym_concept] = ACTIONS(3070), - [anon_sym_co_return] = ACTIONS(3070), - [anon_sym_co_yield] = ACTIONS(3070), - [anon_sym_catch] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(3072), - [anon_sym_LR_DQUOTE] = ACTIONS(3072), - [anon_sym_uR_DQUOTE] = ACTIONS(3072), - [anon_sym_UR_DQUOTE] = ACTIONS(3072), - [anon_sym_u8R_DQUOTE] = ACTIONS(3072), - [anon_sym_co_await] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3070), - [anon_sym_requires] = ACTIONS(3070), - [sym_this] = ACTIONS(3070), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3072), - [sym_semgrep_named_ellipsis] = ACTIONS(3072), + [sym_type_qualifier] = STATE(4684), + [sym_type_specifier] = STATE(5847), + [sym_sized_type_specifier] = STATE(2673), + [sym_enum_specifier] = STATE(2673), + [sym_struct_specifier] = STATE(2673), + [sym_union_specifier] = STATE(2673), + [sym_expression] = STATE(3122), + [sym_expression_not_binary] = STATE(3766), + [sym_comma_expression] = STATE(9355), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_type_descriptor] = STATE(8774), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_placeholder_type_specifier] = STATE(2673), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2580), + [sym_class_specifier] = STATE(2673), + [sym_class_name] = STATE(8737), + [sym_dependent_type] = STATE(2673), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_unary_left_fold] = STATE(9907), + [sym_unary_right_fold] = STATE(9907), + [sym_binary_fold] = STATE(9907), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6631), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(6338), + [sym_assignment_expression_lhs_expression] = STATE(9355), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_typed_metavar] = STATE(9355), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [aux_sym_type_definition_type_repeat1] = STATE(4684), + [aux_sym_sized_type_specifier_repeat1] = STATE(5792), + [sym_identifier] = ACTIONS(3040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_signed] = ACTIONS(2215), + [anon_sym_unsigned] = ACTIONS(2215), + [anon_sym_long] = ACTIONS(2215), + [anon_sym_short] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_compl] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2251), + [anon_sym_decltype] = ACTIONS(2253), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, [300] = { - [sym_catch_clause] = STATE(273), - [aux_sym_constructor_try_statement_repeat1] = STATE(273), - [sym_identifier] = ACTIONS(3074), - [aux_sym_preproc_include_token1] = ACTIONS(3074), - [aux_sym_preproc_def_token1] = ACTIONS(3074), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3076), - [aux_sym_preproc_if_token1] = ACTIONS(3074), - [aux_sym_preproc_if_token2] = ACTIONS(3074), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3074), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3074), - [aux_sym_preproc_else_token1] = ACTIONS(3074), - [aux_sym_preproc_elif_token1] = ACTIONS(3074), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3074), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3074), - [sym_preproc_directive] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3076), - [anon_sym_BANG] = ACTIONS(3076), - [anon_sym_TILDE] = ACTIONS(3076), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_STAR] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_SEMI] = ACTIONS(3076), - [anon_sym___extension__] = ACTIONS(3074), - [anon_sym_typedef] = ACTIONS(3074), - [anon_sym_extern] = ACTIONS(3074), - [anon_sym___attribute__] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3076), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3076), - [anon_sym___declspec] = ACTIONS(3074), - [anon_sym___based] = ACTIONS(3074), - [anon_sym___cdecl] = ACTIONS(3074), - [anon_sym___clrcall] = ACTIONS(3074), - [anon_sym___stdcall] = ACTIONS(3074), - [anon_sym___fastcall] = ACTIONS(3074), - [anon_sym___thiscall] = ACTIONS(3074), - [anon_sym___vectorcall] = ACTIONS(3074), - [anon_sym_LBRACE] = ACTIONS(3076), - [anon_sym_signed] = ACTIONS(3074), - [anon_sym_unsigned] = ACTIONS(3074), - [anon_sym_long] = ACTIONS(3074), - [anon_sym_short] = ACTIONS(3074), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_static] = ACTIONS(3074), - [anon_sym_register] = ACTIONS(3074), - [anon_sym_inline] = ACTIONS(3074), - [anon_sym___inline] = ACTIONS(3074), - [anon_sym___inline__] = ACTIONS(3074), - [anon_sym___forceinline] = ACTIONS(3074), - [anon_sym_thread_local] = ACTIONS(3074), - [anon_sym___thread] = ACTIONS(3074), - [anon_sym_const] = ACTIONS(3074), - [anon_sym_constexpr] = ACTIONS(3074), - [anon_sym_volatile] = ACTIONS(3074), - [anon_sym_restrict] = ACTIONS(3074), - [anon_sym___restrict__] = ACTIONS(3074), - [anon_sym__Atomic] = ACTIONS(3074), - [anon_sym__Noreturn] = ACTIONS(3074), - [anon_sym_noreturn] = ACTIONS(3074), - [anon_sym_mutable] = ACTIONS(3074), - [anon_sym_constinit] = ACTIONS(3074), - [anon_sym_consteval] = ACTIONS(3074), - [sym_primitive_type] = ACTIONS(3074), - [anon_sym_enum] = ACTIONS(3074), - [anon_sym_class] = ACTIONS(3074), - [anon_sym_struct] = ACTIONS(3074), - [anon_sym_union] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_switch] = ACTIONS(3074), - [anon_sym_case] = ACTIONS(3074), - [anon_sym_default] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_break] = ACTIONS(3074), - [anon_sym_continue] = ACTIONS(3074), - [anon_sym_goto] = ACTIONS(3074), - [anon_sym___try] = ACTIONS(3074), - [anon_sym___leave] = ACTIONS(3074), - [anon_sym_not] = ACTIONS(3074), - [anon_sym_compl] = ACTIONS(3074), - [anon_sym_DASH_DASH] = ACTIONS(3076), - [anon_sym_PLUS_PLUS] = ACTIONS(3076), - [anon_sym_sizeof] = ACTIONS(3074), - [anon_sym___alignof__] = ACTIONS(3074), - [anon_sym___alignof] = ACTIONS(3074), - [anon_sym__alignof] = ACTIONS(3074), - [anon_sym_alignof] = ACTIONS(3074), - [anon_sym__Alignof] = ACTIONS(3074), - [anon_sym_offsetof] = ACTIONS(3074), - [anon_sym__Generic] = ACTIONS(3074), - [anon_sym_asm] = ACTIONS(3074), - [anon_sym___asm__] = ACTIONS(3074), - [sym_number_literal] = ACTIONS(3076), - [anon_sym_L_SQUOTE] = ACTIONS(3076), - [anon_sym_u_SQUOTE] = ACTIONS(3076), - [anon_sym_U_SQUOTE] = ACTIONS(3076), - [anon_sym_u8_SQUOTE] = ACTIONS(3076), - [anon_sym_SQUOTE] = ACTIONS(3076), - [anon_sym_L_DQUOTE] = ACTIONS(3076), - [anon_sym_u_DQUOTE] = ACTIONS(3076), - [anon_sym_U_DQUOTE] = ACTIONS(3076), - [anon_sym_u8_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE] = ACTIONS(3076), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3074), - [anon_sym_nullptr] = ACTIONS(3074), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3074), - [anon_sym_decltype] = ACTIONS(3074), - [anon_sym_virtual] = ACTIONS(3074), - [anon_sym_alignas] = ACTIONS(3074), - [anon_sym_explicit] = ACTIONS(3074), - [anon_sym_typename] = ACTIONS(3074), - [anon_sym_template] = ACTIONS(3074), - [anon_sym_operator] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_delete] = ACTIONS(3074), - [anon_sym_throw] = ACTIONS(3074), - [anon_sym_namespace] = ACTIONS(3074), - [anon_sym_using] = ACTIONS(3074), - [anon_sym_static_assert] = ACTIONS(3074), - [anon_sym_concept] = ACTIONS(3074), - [anon_sym_co_return] = ACTIONS(3074), - [anon_sym_co_yield] = ACTIONS(3074), - [anon_sym_catch] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(3076), - [anon_sym_LR_DQUOTE] = ACTIONS(3076), - [anon_sym_uR_DQUOTE] = ACTIONS(3076), - [anon_sym_UR_DQUOTE] = ACTIONS(3076), - [anon_sym_u8R_DQUOTE] = ACTIONS(3076), - [anon_sym_co_await] = ACTIONS(3074), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_requires] = ACTIONS(3074), - [sym_this] = ACTIONS(3074), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3076), - [sym_semgrep_named_ellipsis] = ACTIONS(3076), + [sym_catch_clause] = STATE(263), + [aux_sym_constructor_try_statement_repeat1] = STATE(263), + [sym_identifier] = ACTIONS(3052), + [aux_sym_preproc_include_token1] = ACTIONS(3052), + [aux_sym_preproc_def_token1] = ACTIONS(3052), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3054), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_if_token2] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3052), + [aux_sym_preproc_else_token1] = ACTIONS(3052), + [aux_sym_preproc_elif_token1] = ACTIONS(3052), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3052), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3052), + [sym_preproc_directive] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(3054), + [anon_sym_TILDE] = ACTIONS(3054), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3054), + [anon_sym_AMP_AMP] = ACTIONS(3054), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_SEMI] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3052), + [anon_sym_typedef] = ACTIONS(3052), + [anon_sym_extern] = ACTIONS(3052), + [anon_sym___attribute__] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3054), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3054), + [anon_sym___declspec] = ACTIONS(3052), + [anon_sym___based] = ACTIONS(3052), + [anon_sym___cdecl] = ACTIONS(3052), + [anon_sym___clrcall] = ACTIONS(3052), + [anon_sym___stdcall] = ACTIONS(3052), + [anon_sym___fastcall] = ACTIONS(3052), + [anon_sym___thiscall] = ACTIONS(3052), + [anon_sym___vectorcall] = ACTIONS(3052), + [anon_sym_LBRACE] = ACTIONS(3054), + [anon_sym_signed] = ACTIONS(3052), + [anon_sym_unsigned] = ACTIONS(3052), + [anon_sym_long] = ACTIONS(3052), + [anon_sym_short] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_static] = ACTIONS(3052), + [anon_sym_register] = ACTIONS(3052), + [anon_sym_inline] = ACTIONS(3052), + [anon_sym___inline] = ACTIONS(3052), + [anon_sym___inline__] = ACTIONS(3052), + [anon_sym___forceinline] = ACTIONS(3052), + [anon_sym_thread_local] = ACTIONS(3052), + [anon_sym___thread] = ACTIONS(3052), + [anon_sym_const] = ACTIONS(3052), + [anon_sym_constexpr] = ACTIONS(3052), + [anon_sym_volatile] = ACTIONS(3052), + [anon_sym_restrict] = ACTIONS(3052), + [anon_sym___restrict__] = ACTIONS(3052), + [anon_sym__Atomic] = ACTIONS(3052), + [anon_sym__Noreturn] = ACTIONS(3052), + [anon_sym_noreturn] = ACTIONS(3052), + [anon_sym_mutable] = ACTIONS(3052), + [anon_sym_constinit] = ACTIONS(3052), + [anon_sym_consteval] = ACTIONS(3052), + [sym_primitive_type] = ACTIONS(3052), + [anon_sym_enum] = ACTIONS(3052), + [anon_sym_class] = ACTIONS(3052), + [anon_sym_struct] = ACTIONS(3052), + [anon_sym_union] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_switch] = ACTIONS(3052), + [anon_sym_case] = ACTIONS(3052), + [anon_sym_default] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_break] = ACTIONS(3052), + [anon_sym_continue] = ACTIONS(3052), + [anon_sym_goto] = ACTIONS(3052), + [anon_sym___try] = ACTIONS(3052), + [anon_sym___leave] = ACTIONS(3052), + [anon_sym_not] = ACTIONS(3052), + [anon_sym_compl] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(3054), + [anon_sym_PLUS_PLUS] = ACTIONS(3054), + [anon_sym_sizeof] = ACTIONS(3052), + [anon_sym___alignof__] = ACTIONS(3052), + [anon_sym___alignof] = ACTIONS(3052), + [anon_sym__alignof] = ACTIONS(3052), + [anon_sym_alignof] = ACTIONS(3052), + [anon_sym__Alignof] = ACTIONS(3052), + [anon_sym_offsetof] = ACTIONS(3052), + [anon_sym__Generic] = ACTIONS(3052), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3054), + [anon_sym_u_SQUOTE] = ACTIONS(3054), + [anon_sym_U_SQUOTE] = ACTIONS(3054), + [anon_sym_u8_SQUOTE] = ACTIONS(3054), + [anon_sym_SQUOTE] = ACTIONS(3054), + [anon_sym_L_DQUOTE] = ACTIONS(3054), + [anon_sym_u_DQUOTE] = ACTIONS(3054), + [anon_sym_U_DQUOTE] = ACTIONS(3054), + [anon_sym_u8_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [sym_true] = ACTIONS(3052), + [sym_false] = ACTIONS(3052), + [anon_sym_NULL] = ACTIONS(3052), + [anon_sym_nullptr] = ACTIONS(3052), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3052), + [anon_sym_decltype] = ACTIONS(3052), + [anon_sym_virtual] = ACTIONS(3052), + [anon_sym_alignas] = ACTIONS(3052), + [anon_sym_explicit] = ACTIONS(3052), + [anon_sym_typename] = ACTIONS(3052), + [anon_sym_template] = ACTIONS(3052), + [anon_sym_operator] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_delete] = ACTIONS(3052), + [anon_sym_throw] = ACTIONS(3052), + [anon_sym_namespace] = ACTIONS(3052), + [anon_sym_using] = ACTIONS(3052), + [anon_sym_static_assert] = ACTIONS(3052), + [anon_sym_concept] = ACTIONS(3052), + [anon_sym_co_return] = ACTIONS(3052), + [anon_sym_co_yield] = ACTIONS(3052), + [anon_sym_catch] = ACTIONS(3050), + [anon_sym_R_DQUOTE] = ACTIONS(3054), + [anon_sym_LR_DQUOTE] = ACTIONS(3054), + [anon_sym_uR_DQUOTE] = ACTIONS(3054), + [anon_sym_UR_DQUOTE] = ACTIONS(3054), + [anon_sym_u8R_DQUOTE] = ACTIONS(3054), + [anon_sym_co_await] = ACTIONS(3052), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_requires] = ACTIONS(3052), + [sym_this] = ACTIONS(3052), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3054), + [sym_semgrep_named_ellipsis] = ACTIONS(3054), }, [301] = { - [sym_identifier] = ACTIONS(3078), - [aux_sym_preproc_include_token1] = ACTIONS(3078), - [aux_sym_preproc_def_token1] = ACTIONS(3078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3080), - [aux_sym_preproc_if_token1] = ACTIONS(3078), - [aux_sym_preproc_if_token2] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3078), - [aux_sym_preproc_else_token1] = ACTIONS(3078), - [aux_sym_preproc_elif_token1] = ACTIONS(3078), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3078), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3078), - [sym_preproc_directive] = ACTIONS(3078), - [anon_sym_LPAREN2] = ACTIONS(3080), - [anon_sym_BANG] = ACTIONS(3080), - [anon_sym_TILDE] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym_SEMI] = ACTIONS(3080), - [anon_sym___extension__] = ACTIONS(3078), - [anon_sym_typedef] = ACTIONS(3078), - [anon_sym_extern] = ACTIONS(3078), - [anon_sym___attribute__] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3080), - [anon_sym___declspec] = ACTIONS(3078), - [anon_sym___based] = ACTIONS(3078), - [anon_sym___cdecl] = ACTIONS(3078), - [anon_sym___clrcall] = ACTIONS(3078), - [anon_sym___stdcall] = ACTIONS(3078), - [anon_sym___fastcall] = ACTIONS(3078), - [anon_sym___thiscall] = ACTIONS(3078), - [anon_sym___vectorcall] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_signed] = ACTIONS(3078), - [anon_sym_unsigned] = ACTIONS(3078), - [anon_sym_long] = ACTIONS(3078), - [anon_sym_short] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_static] = ACTIONS(3078), - [anon_sym_register] = ACTIONS(3078), - [anon_sym_inline] = ACTIONS(3078), - [anon_sym___inline] = ACTIONS(3078), - [anon_sym___inline__] = ACTIONS(3078), - [anon_sym___forceinline] = ACTIONS(3078), - [anon_sym_thread_local] = ACTIONS(3078), - [anon_sym___thread] = ACTIONS(3078), - [anon_sym_const] = ACTIONS(3078), - [anon_sym_constexpr] = ACTIONS(3078), - [anon_sym_volatile] = ACTIONS(3078), - [anon_sym_restrict] = ACTIONS(3078), - [anon_sym___restrict__] = ACTIONS(3078), - [anon_sym__Atomic] = ACTIONS(3078), - [anon_sym__Noreturn] = ACTIONS(3078), - [anon_sym_noreturn] = ACTIONS(3078), - [anon_sym_mutable] = ACTIONS(3078), - [anon_sym_constinit] = ACTIONS(3078), - [anon_sym_consteval] = ACTIONS(3078), - [sym_primitive_type] = ACTIONS(3078), - [anon_sym_enum] = ACTIONS(3078), - [anon_sym_class] = ACTIONS(3078), - [anon_sym_struct] = ACTIONS(3078), - [anon_sym_union] = ACTIONS(3078), - [anon_sym_if] = ACTIONS(3078), - [anon_sym_else] = ACTIONS(3078), - [anon_sym_switch] = ACTIONS(3078), - [anon_sym_case] = ACTIONS(3078), - [anon_sym_default] = ACTIONS(3078), - [anon_sym_while] = ACTIONS(3078), - [anon_sym_do] = ACTIONS(3078), - [anon_sym_for] = ACTIONS(3078), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_break] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(3078), - [anon_sym_goto] = ACTIONS(3078), - [anon_sym___try] = ACTIONS(3078), - [anon_sym___leave] = ACTIONS(3078), - [anon_sym_not] = ACTIONS(3078), - [anon_sym_compl] = ACTIONS(3078), - [anon_sym_DASH_DASH] = ACTIONS(3080), - [anon_sym_PLUS_PLUS] = ACTIONS(3080), - [anon_sym_sizeof] = ACTIONS(3078), - [anon_sym___alignof__] = ACTIONS(3078), - [anon_sym___alignof] = ACTIONS(3078), - [anon_sym__alignof] = ACTIONS(3078), - [anon_sym_alignof] = ACTIONS(3078), - [anon_sym__Alignof] = ACTIONS(3078), - [anon_sym_offsetof] = ACTIONS(3078), - [anon_sym__Generic] = ACTIONS(3078), - [anon_sym_asm] = ACTIONS(3078), - [anon_sym___asm__] = ACTIONS(3078), - [sym_number_literal] = ACTIONS(3080), - [anon_sym_L_SQUOTE] = ACTIONS(3080), - [anon_sym_u_SQUOTE] = ACTIONS(3080), - [anon_sym_U_SQUOTE] = ACTIONS(3080), - [anon_sym_u8_SQUOTE] = ACTIONS(3080), - [anon_sym_SQUOTE] = ACTIONS(3080), - [anon_sym_L_DQUOTE] = ACTIONS(3080), - [anon_sym_u_DQUOTE] = ACTIONS(3080), - [anon_sym_U_DQUOTE] = ACTIONS(3080), - [anon_sym_u8_DQUOTE] = ACTIONS(3080), - [anon_sym_DQUOTE] = ACTIONS(3080), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [anon_sym_NULL] = ACTIONS(3078), - [anon_sym_nullptr] = ACTIONS(3078), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3078), - [anon_sym_decltype] = ACTIONS(3078), - [anon_sym_virtual] = ACTIONS(3078), - [anon_sym_alignas] = ACTIONS(3078), - [anon_sym_explicit] = ACTIONS(3078), - [anon_sym_typename] = ACTIONS(3078), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_operator] = ACTIONS(3078), - [anon_sym_try] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3078), - [anon_sym_throw] = ACTIONS(3078), - [anon_sym_namespace] = ACTIONS(3078), - [anon_sym_using] = ACTIONS(3078), - [anon_sym_static_assert] = ACTIONS(3078), - [anon_sym_concept] = ACTIONS(3078), - [anon_sym_co_return] = ACTIONS(3078), - [anon_sym_co_yield] = ACTIONS(3078), - [anon_sym_catch] = ACTIONS(3078), - [anon_sym_R_DQUOTE] = ACTIONS(3080), - [anon_sym_LR_DQUOTE] = ACTIONS(3080), - [anon_sym_uR_DQUOTE] = ACTIONS(3080), - [anon_sym_UR_DQUOTE] = ACTIONS(3080), - [anon_sym_u8R_DQUOTE] = ACTIONS(3080), - [anon_sym_co_await] = ACTIONS(3078), - [anon_sym_new] = ACTIONS(3078), - [anon_sym_requires] = ACTIONS(3078), - [sym_this] = ACTIONS(3078), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3080), - [sym_semgrep_named_ellipsis] = ACTIONS(3080), + [sym_catch_clause] = STATE(263), + [aux_sym_constructor_try_statement_repeat1] = STATE(263), + [sym_identifier] = ACTIONS(3056), + [aux_sym_preproc_include_token1] = ACTIONS(3056), + [aux_sym_preproc_def_token1] = ACTIONS(3056), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3058), + [aux_sym_preproc_if_token1] = ACTIONS(3056), + [aux_sym_preproc_if_token2] = ACTIONS(3056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3056), + [aux_sym_preproc_else_token1] = ACTIONS(3056), + [aux_sym_preproc_elif_token1] = ACTIONS(3056), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3056), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3056), + [sym_preproc_directive] = ACTIONS(3056), + [anon_sym_LPAREN2] = ACTIONS(3058), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3058), + [anon_sym_DASH] = ACTIONS(3056), + [anon_sym_PLUS] = ACTIONS(3056), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_AMP_AMP] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3056), + [anon_sym_SEMI] = ACTIONS(3058), + [anon_sym___extension__] = ACTIONS(3056), + [anon_sym_typedef] = ACTIONS(3056), + [anon_sym_extern] = ACTIONS(3056), + [anon_sym___attribute__] = ACTIONS(3056), + [anon_sym_COLON_COLON] = ACTIONS(3058), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3058), + [anon_sym___declspec] = ACTIONS(3056), + [anon_sym___based] = ACTIONS(3056), + [anon_sym___cdecl] = ACTIONS(3056), + [anon_sym___clrcall] = ACTIONS(3056), + [anon_sym___stdcall] = ACTIONS(3056), + [anon_sym___fastcall] = ACTIONS(3056), + [anon_sym___thiscall] = ACTIONS(3056), + [anon_sym___vectorcall] = ACTIONS(3056), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_signed] = ACTIONS(3056), + [anon_sym_unsigned] = ACTIONS(3056), + [anon_sym_long] = ACTIONS(3056), + [anon_sym_short] = ACTIONS(3056), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_static] = ACTIONS(3056), + [anon_sym_register] = ACTIONS(3056), + [anon_sym_inline] = ACTIONS(3056), + [anon_sym___inline] = ACTIONS(3056), + [anon_sym___inline__] = ACTIONS(3056), + [anon_sym___forceinline] = ACTIONS(3056), + [anon_sym_thread_local] = ACTIONS(3056), + [anon_sym___thread] = ACTIONS(3056), + [anon_sym_const] = ACTIONS(3056), + [anon_sym_constexpr] = ACTIONS(3056), + [anon_sym_volatile] = ACTIONS(3056), + [anon_sym_restrict] = ACTIONS(3056), + [anon_sym___restrict__] = ACTIONS(3056), + [anon_sym__Atomic] = ACTIONS(3056), + [anon_sym__Noreturn] = ACTIONS(3056), + [anon_sym_noreturn] = ACTIONS(3056), + [anon_sym_mutable] = ACTIONS(3056), + [anon_sym_constinit] = ACTIONS(3056), + [anon_sym_consteval] = ACTIONS(3056), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3056), + [anon_sym_class] = ACTIONS(3056), + [anon_sym_struct] = ACTIONS(3056), + [anon_sym_union] = ACTIONS(3056), + [anon_sym_if] = ACTIONS(3056), + [anon_sym_switch] = ACTIONS(3056), + [anon_sym_case] = ACTIONS(3056), + [anon_sym_default] = ACTIONS(3056), + [anon_sym_while] = ACTIONS(3056), + [anon_sym_do] = ACTIONS(3056), + [anon_sym_for] = ACTIONS(3056), + [anon_sym_return] = ACTIONS(3056), + [anon_sym_break] = ACTIONS(3056), + [anon_sym_continue] = ACTIONS(3056), + [anon_sym_goto] = ACTIONS(3056), + [anon_sym___try] = ACTIONS(3056), + [anon_sym___leave] = ACTIONS(3056), + [anon_sym_not] = ACTIONS(3056), + [anon_sym_compl] = ACTIONS(3056), + [anon_sym_DASH_DASH] = ACTIONS(3058), + [anon_sym_PLUS_PLUS] = ACTIONS(3058), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3056), + [anon_sym___alignof] = ACTIONS(3056), + [anon_sym__alignof] = ACTIONS(3056), + [anon_sym_alignof] = ACTIONS(3056), + [anon_sym__Alignof] = ACTIONS(3056), + [anon_sym_offsetof] = ACTIONS(3056), + [anon_sym__Generic] = ACTIONS(3056), + [anon_sym_asm] = ACTIONS(3056), + [anon_sym___asm__] = ACTIONS(3056), + [sym_number_literal] = ACTIONS(3058), + [anon_sym_L_SQUOTE] = ACTIONS(3058), + [anon_sym_u_SQUOTE] = ACTIONS(3058), + [anon_sym_U_SQUOTE] = ACTIONS(3058), + [anon_sym_u8_SQUOTE] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [anon_sym_NULL] = ACTIONS(3056), + [anon_sym_nullptr] = ACTIONS(3056), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3056), + [anon_sym_decltype] = ACTIONS(3056), + [anon_sym_virtual] = ACTIONS(3056), + [anon_sym_alignas] = ACTIONS(3056), + [anon_sym_explicit] = ACTIONS(3056), + [anon_sym_typename] = ACTIONS(3056), + [anon_sym_template] = ACTIONS(3056), + [anon_sym_operator] = ACTIONS(3056), + [anon_sym_try] = ACTIONS(3056), + [anon_sym_delete] = ACTIONS(3056), + [anon_sym_throw] = ACTIONS(3056), + [anon_sym_namespace] = ACTIONS(3056), + [anon_sym_using] = ACTIONS(3056), + [anon_sym_static_assert] = ACTIONS(3056), + [anon_sym_concept] = ACTIONS(3056), + [anon_sym_co_return] = ACTIONS(3056), + [anon_sym_co_yield] = ACTIONS(3056), + [anon_sym_catch] = ACTIONS(3050), + [anon_sym_R_DQUOTE] = ACTIONS(3058), + [anon_sym_LR_DQUOTE] = ACTIONS(3058), + [anon_sym_uR_DQUOTE] = ACTIONS(3058), + [anon_sym_UR_DQUOTE] = ACTIONS(3058), + [anon_sym_u8R_DQUOTE] = ACTIONS(3058), + [anon_sym_co_await] = ACTIONS(3056), + [anon_sym_new] = ACTIONS(3056), + [anon_sym_requires] = ACTIONS(3056), + [sym_this] = ACTIONS(3056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3058), + [sym_semgrep_named_ellipsis] = ACTIONS(3058), }, [302] = { - [sym_else_clause] = STATE(341), - [sym_identifier] = ACTIONS(3082), - [aux_sym_preproc_include_token1] = ACTIONS(3082), - [aux_sym_preproc_def_token1] = ACTIONS(3082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3084), - [aux_sym_preproc_if_token1] = ACTIONS(3082), - [aux_sym_preproc_if_token2] = ACTIONS(3082), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3082), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3082), - [aux_sym_preproc_else_token1] = ACTIONS(3082), - [aux_sym_preproc_elif_token1] = ACTIONS(3082), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3082), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3082), - [sym_preproc_directive] = ACTIONS(3082), - [anon_sym_LPAREN2] = ACTIONS(3084), - [anon_sym_BANG] = ACTIONS(3084), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_AMP_AMP] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3084), - [anon_sym___extension__] = ACTIONS(3082), - [anon_sym_typedef] = ACTIONS(3082), - [anon_sym_extern] = ACTIONS(3082), - [anon_sym___attribute__] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(3084), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3084), - [anon_sym___declspec] = ACTIONS(3082), - [anon_sym___based] = ACTIONS(3082), - [anon_sym___cdecl] = ACTIONS(3082), - [anon_sym___clrcall] = ACTIONS(3082), - [anon_sym___stdcall] = ACTIONS(3082), - [anon_sym___fastcall] = ACTIONS(3082), - [anon_sym___thiscall] = ACTIONS(3082), - [anon_sym___vectorcall] = ACTIONS(3082), - [anon_sym_LBRACE] = ACTIONS(3084), - [anon_sym_signed] = ACTIONS(3082), - [anon_sym_unsigned] = ACTIONS(3082), - [anon_sym_long] = ACTIONS(3082), - [anon_sym_short] = ACTIONS(3082), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_static] = ACTIONS(3082), - [anon_sym_register] = ACTIONS(3082), - [anon_sym_inline] = ACTIONS(3082), - [anon_sym___inline] = ACTIONS(3082), - [anon_sym___inline__] = ACTIONS(3082), - [anon_sym___forceinline] = ACTIONS(3082), - [anon_sym_thread_local] = ACTIONS(3082), - [anon_sym___thread] = ACTIONS(3082), - [anon_sym_const] = ACTIONS(3082), - [anon_sym_constexpr] = ACTIONS(3082), - [anon_sym_volatile] = ACTIONS(3082), - [anon_sym_restrict] = ACTIONS(3082), - [anon_sym___restrict__] = ACTIONS(3082), - [anon_sym__Atomic] = ACTIONS(3082), - [anon_sym__Noreturn] = ACTIONS(3082), - [anon_sym_noreturn] = ACTIONS(3082), - [anon_sym_mutable] = ACTIONS(3082), - [anon_sym_constinit] = ACTIONS(3082), - [anon_sym_consteval] = ACTIONS(3082), - [sym_primitive_type] = ACTIONS(3082), - [anon_sym_enum] = ACTIONS(3082), - [anon_sym_class] = ACTIONS(3082), - [anon_sym_struct] = ACTIONS(3082), - [anon_sym_union] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_else] = ACTIONS(3086), - [anon_sym_switch] = ACTIONS(3082), - [anon_sym_case] = ACTIONS(3082), - [anon_sym_default] = ACTIONS(3082), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_do] = ACTIONS(3082), - [anon_sym_for] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_break] = ACTIONS(3082), - [anon_sym_continue] = ACTIONS(3082), - [anon_sym_goto] = ACTIONS(3082), - [anon_sym___try] = ACTIONS(3082), - [anon_sym___leave] = ACTIONS(3082), - [anon_sym_not] = ACTIONS(3082), - [anon_sym_compl] = ACTIONS(3082), - [anon_sym_DASH_DASH] = ACTIONS(3084), - [anon_sym_PLUS_PLUS] = ACTIONS(3084), - [anon_sym_sizeof] = ACTIONS(3082), - [anon_sym___alignof__] = ACTIONS(3082), - [anon_sym___alignof] = ACTIONS(3082), - [anon_sym__alignof] = ACTIONS(3082), - [anon_sym_alignof] = ACTIONS(3082), - [anon_sym__Alignof] = ACTIONS(3082), - [anon_sym_offsetof] = ACTIONS(3082), - [anon_sym__Generic] = ACTIONS(3082), - [anon_sym_asm] = ACTIONS(3082), - [anon_sym___asm__] = ACTIONS(3082), - [sym_number_literal] = ACTIONS(3084), - [anon_sym_L_SQUOTE] = ACTIONS(3084), - [anon_sym_u_SQUOTE] = ACTIONS(3084), - [anon_sym_U_SQUOTE] = ACTIONS(3084), - [anon_sym_u8_SQUOTE] = ACTIONS(3084), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_L_DQUOTE] = ACTIONS(3084), - [anon_sym_u_DQUOTE] = ACTIONS(3084), - [anon_sym_U_DQUOTE] = ACTIONS(3084), - [anon_sym_u8_DQUOTE] = ACTIONS(3084), - [anon_sym_DQUOTE] = ACTIONS(3084), - [sym_true] = ACTIONS(3082), - [sym_false] = ACTIONS(3082), - [anon_sym_NULL] = ACTIONS(3082), - [anon_sym_nullptr] = ACTIONS(3082), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3082), - [anon_sym_decltype] = ACTIONS(3082), - [anon_sym_virtual] = ACTIONS(3082), - [anon_sym_alignas] = ACTIONS(3082), - [anon_sym_explicit] = ACTIONS(3082), - [anon_sym_typename] = ACTIONS(3082), - [anon_sym_template] = ACTIONS(3082), - [anon_sym_operator] = ACTIONS(3082), - [anon_sym_try] = ACTIONS(3082), - [anon_sym_delete] = ACTIONS(3082), - [anon_sym_throw] = ACTIONS(3082), - [anon_sym_namespace] = ACTIONS(3082), - [anon_sym_using] = ACTIONS(3082), - [anon_sym_static_assert] = ACTIONS(3082), - [anon_sym_concept] = ACTIONS(3082), - [anon_sym_co_return] = ACTIONS(3082), - [anon_sym_co_yield] = ACTIONS(3082), - [anon_sym_R_DQUOTE] = ACTIONS(3084), - [anon_sym_LR_DQUOTE] = ACTIONS(3084), - [anon_sym_uR_DQUOTE] = ACTIONS(3084), - [anon_sym_UR_DQUOTE] = ACTIONS(3084), - [anon_sym_u8R_DQUOTE] = ACTIONS(3084), - [anon_sym_co_await] = ACTIONS(3082), - [anon_sym_new] = ACTIONS(3082), - [anon_sym_requires] = ACTIONS(3082), - [sym_this] = ACTIONS(3082), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3084), - [sym_semgrep_named_ellipsis] = ACTIONS(3084), + [sym_identifier] = ACTIONS(3060), + [aux_sym_preproc_include_token1] = ACTIONS(3060), + [aux_sym_preproc_def_token1] = ACTIONS(3060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3062), + [aux_sym_preproc_if_token1] = ACTIONS(3060), + [aux_sym_preproc_if_token2] = ACTIONS(3060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3060), + [aux_sym_preproc_else_token1] = ACTIONS(3060), + [aux_sym_preproc_elif_token1] = ACTIONS(3060), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3060), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3060), + [sym_preproc_directive] = ACTIONS(3060), + [anon_sym_LPAREN2] = ACTIONS(3062), + [anon_sym_BANG] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(3062), + [anon_sym_AMP_AMP] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3062), + [anon_sym___extension__] = ACTIONS(3060), + [anon_sym_typedef] = ACTIONS(3060), + [anon_sym_extern] = ACTIONS(3060), + [anon_sym___attribute__] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3062), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3062), + [anon_sym___declspec] = ACTIONS(3060), + [anon_sym___based] = ACTIONS(3060), + [anon_sym___cdecl] = ACTIONS(3060), + [anon_sym___clrcall] = ACTIONS(3060), + [anon_sym___stdcall] = ACTIONS(3060), + [anon_sym___fastcall] = ACTIONS(3060), + [anon_sym___thiscall] = ACTIONS(3060), + [anon_sym___vectorcall] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_signed] = ACTIONS(3060), + [anon_sym_unsigned] = ACTIONS(3060), + [anon_sym_long] = ACTIONS(3060), + [anon_sym_short] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_register] = ACTIONS(3060), + [anon_sym_inline] = ACTIONS(3060), + [anon_sym___inline] = ACTIONS(3060), + [anon_sym___inline__] = ACTIONS(3060), + [anon_sym___forceinline] = ACTIONS(3060), + [anon_sym_thread_local] = ACTIONS(3060), + [anon_sym___thread] = ACTIONS(3060), + [anon_sym_const] = ACTIONS(3060), + [anon_sym_constexpr] = ACTIONS(3060), + [anon_sym_volatile] = ACTIONS(3060), + [anon_sym_restrict] = ACTIONS(3060), + [anon_sym___restrict__] = ACTIONS(3060), + [anon_sym__Atomic] = ACTIONS(3060), + [anon_sym__Noreturn] = ACTIONS(3060), + [anon_sym_noreturn] = ACTIONS(3060), + [anon_sym_mutable] = ACTIONS(3060), + [anon_sym_constinit] = ACTIONS(3060), + [anon_sym_consteval] = ACTIONS(3060), + [sym_primitive_type] = ACTIONS(3060), + [anon_sym_enum] = ACTIONS(3060), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3060), + [anon_sym_union] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_else] = ACTIONS(3060), + [anon_sym_switch] = ACTIONS(3060), + [anon_sym_case] = ACTIONS(3060), + [anon_sym_default] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_goto] = ACTIONS(3060), + [anon_sym___try] = ACTIONS(3060), + [anon_sym___leave] = ACTIONS(3060), + [anon_sym_not] = ACTIONS(3060), + [anon_sym_compl] = ACTIONS(3060), + [anon_sym_DASH_DASH] = ACTIONS(3062), + [anon_sym_PLUS_PLUS] = ACTIONS(3062), + [anon_sym_sizeof] = ACTIONS(3060), + [anon_sym___alignof__] = ACTIONS(3060), + [anon_sym___alignof] = ACTIONS(3060), + [anon_sym__alignof] = ACTIONS(3060), + [anon_sym_alignof] = ACTIONS(3060), + [anon_sym__Alignof] = ACTIONS(3060), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3060), + [anon_sym_asm] = ACTIONS(3060), + [anon_sym___asm__] = ACTIONS(3060), + [sym_number_literal] = ACTIONS(3062), + [anon_sym_L_SQUOTE] = ACTIONS(3062), + [anon_sym_u_SQUOTE] = ACTIONS(3062), + [anon_sym_U_SQUOTE] = ACTIONS(3062), + [anon_sym_u8_SQUOTE] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3062), + [anon_sym_L_DQUOTE] = ACTIONS(3062), + [anon_sym_u_DQUOTE] = ACTIONS(3062), + [anon_sym_U_DQUOTE] = ACTIONS(3062), + [anon_sym_u8_DQUOTE] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3060), + [anon_sym_nullptr] = ACTIONS(3060), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3060), + [anon_sym_decltype] = ACTIONS(3060), + [anon_sym_virtual] = ACTIONS(3060), + [anon_sym_alignas] = ACTIONS(3060), + [anon_sym_explicit] = ACTIONS(3060), + [anon_sym_typename] = ACTIONS(3060), + [anon_sym_template] = ACTIONS(3060), + [anon_sym_operator] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3060), + [anon_sym_throw] = ACTIONS(3060), + [anon_sym_namespace] = ACTIONS(3060), + [anon_sym_using] = ACTIONS(3060), + [anon_sym_static_assert] = ACTIONS(3060), + [anon_sym_concept] = ACTIONS(3060), + [anon_sym_co_return] = ACTIONS(3060), + [anon_sym_co_yield] = ACTIONS(3060), + [anon_sym_catch] = ACTIONS(3060), + [anon_sym_R_DQUOTE] = ACTIONS(3062), + [anon_sym_LR_DQUOTE] = ACTIONS(3062), + [anon_sym_uR_DQUOTE] = ACTIONS(3062), + [anon_sym_UR_DQUOTE] = ACTIONS(3062), + [anon_sym_u8R_DQUOTE] = ACTIONS(3062), + [anon_sym_co_await] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_requires] = ACTIONS(3060), + [sym_this] = ACTIONS(3060), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3062), + [sym_semgrep_named_ellipsis] = ACTIONS(3062), }, [303] = { - [sym_else_clause] = STATE(332), - [sym_identifier] = ACTIONS(3088), - [aux_sym_preproc_include_token1] = ACTIONS(3088), - [aux_sym_preproc_def_token1] = ACTIONS(3088), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3090), - [aux_sym_preproc_if_token1] = ACTIONS(3088), - [aux_sym_preproc_if_token2] = ACTIONS(3088), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3088), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3088), - [aux_sym_preproc_else_token1] = ACTIONS(3088), - [aux_sym_preproc_elif_token1] = ACTIONS(3088), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3088), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3088), - [sym_preproc_directive] = ACTIONS(3088), - [anon_sym_LPAREN2] = ACTIONS(3090), - [anon_sym_BANG] = ACTIONS(3090), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3088), - [anon_sym_PLUS] = ACTIONS(3088), - [anon_sym_STAR] = ACTIONS(3090), - [anon_sym_AMP_AMP] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3088), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym___extension__] = ACTIONS(3088), - [anon_sym_typedef] = ACTIONS(3088), - [anon_sym_extern] = ACTIONS(3088), - [anon_sym___attribute__] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3090), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3090), - [anon_sym___declspec] = ACTIONS(3088), - [anon_sym___based] = ACTIONS(3088), - [anon_sym___cdecl] = ACTIONS(3088), - [anon_sym___clrcall] = ACTIONS(3088), - [anon_sym___stdcall] = ACTIONS(3088), - [anon_sym___fastcall] = ACTIONS(3088), - [anon_sym___thiscall] = ACTIONS(3088), - [anon_sym___vectorcall] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_signed] = ACTIONS(3088), - [anon_sym_unsigned] = ACTIONS(3088), - [anon_sym_long] = ACTIONS(3088), - [anon_sym_short] = ACTIONS(3088), - [anon_sym_LBRACK] = ACTIONS(3088), - [anon_sym_static] = ACTIONS(3088), - [anon_sym_register] = ACTIONS(3088), - [anon_sym_inline] = ACTIONS(3088), - [anon_sym___inline] = ACTIONS(3088), - [anon_sym___inline__] = ACTIONS(3088), - [anon_sym___forceinline] = ACTIONS(3088), - [anon_sym_thread_local] = ACTIONS(3088), - [anon_sym___thread] = ACTIONS(3088), - [anon_sym_const] = ACTIONS(3088), - [anon_sym_constexpr] = ACTIONS(3088), - [anon_sym_volatile] = ACTIONS(3088), - [anon_sym_restrict] = ACTIONS(3088), - [anon_sym___restrict__] = ACTIONS(3088), - [anon_sym__Atomic] = ACTIONS(3088), - [anon_sym__Noreturn] = ACTIONS(3088), - [anon_sym_noreturn] = ACTIONS(3088), - [anon_sym_mutable] = ACTIONS(3088), - [anon_sym_constinit] = ACTIONS(3088), - [anon_sym_consteval] = ACTIONS(3088), - [sym_primitive_type] = ACTIONS(3088), - [anon_sym_enum] = ACTIONS(3088), - [anon_sym_class] = ACTIONS(3088), - [anon_sym_struct] = ACTIONS(3088), - [anon_sym_union] = ACTIONS(3088), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_else] = ACTIONS(3086), - [anon_sym_switch] = ACTIONS(3088), - [anon_sym_case] = ACTIONS(3088), - [anon_sym_default] = ACTIONS(3088), - [anon_sym_while] = ACTIONS(3088), - [anon_sym_do] = ACTIONS(3088), - [anon_sym_for] = ACTIONS(3088), - [anon_sym_return] = ACTIONS(3088), - [anon_sym_break] = ACTIONS(3088), - [anon_sym_continue] = ACTIONS(3088), - [anon_sym_goto] = ACTIONS(3088), - [anon_sym___try] = ACTIONS(3088), - [anon_sym___leave] = ACTIONS(3088), - [anon_sym_not] = ACTIONS(3088), - [anon_sym_compl] = ACTIONS(3088), - [anon_sym_DASH_DASH] = ACTIONS(3090), - [anon_sym_PLUS_PLUS] = ACTIONS(3090), - [anon_sym_sizeof] = ACTIONS(3088), - [anon_sym___alignof__] = ACTIONS(3088), - [anon_sym___alignof] = ACTIONS(3088), - [anon_sym__alignof] = ACTIONS(3088), - [anon_sym_alignof] = ACTIONS(3088), - [anon_sym__Alignof] = ACTIONS(3088), - [anon_sym_offsetof] = ACTIONS(3088), - [anon_sym__Generic] = ACTIONS(3088), - [anon_sym_asm] = ACTIONS(3088), - [anon_sym___asm__] = ACTIONS(3088), - [sym_number_literal] = ACTIONS(3090), - [anon_sym_L_SQUOTE] = ACTIONS(3090), - [anon_sym_u_SQUOTE] = ACTIONS(3090), - [anon_sym_U_SQUOTE] = ACTIONS(3090), - [anon_sym_u8_SQUOTE] = ACTIONS(3090), - [anon_sym_SQUOTE] = ACTIONS(3090), - [anon_sym_L_DQUOTE] = ACTIONS(3090), - [anon_sym_u_DQUOTE] = ACTIONS(3090), - [anon_sym_U_DQUOTE] = ACTIONS(3090), - [anon_sym_u8_DQUOTE] = ACTIONS(3090), - [anon_sym_DQUOTE] = ACTIONS(3090), - [sym_true] = ACTIONS(3088), - [sym_false] = ACTIONS(3088), - [anon_sym_NULL] = ACTIONS(3088), - [anon_sym_nullptr] = ACTIONS(3088), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3088), - [anon_sym_decltype] = ACTIONS(3088), - [anon_sym_virtual] = ACTIONS(3088), - [anon_sym_alignas] = ACTIONS(3088), - [anon_sym_explicit] = ACTIONS(3088), - [anon_sym_typename] = ACTIONS(3088), - [anon_sym_template] = ACTIONS(3088), - [anon_sym_operator] = ACTIONS(3088), - [anon_sym_try] = ACTIONS(3088), - [anon_sym_delete] = ACTIONS(3088), - [anon_sym_throw] = ACTIONS(3088), - [anon_sym_namespace] = ACTIONS(3088), - [anon_sym_using] = ACTIONS(3088), - [anon_sym_static_assert] = ACTIONS(3088), - [anon_sym_concept] = ACTIONS(3088), - [anon_sym_co_return] = ACTIONS(3088), - [anon_sym_co_yield] = ACTIONS(3088), - [anon_sym_R_DQUOTE] = ACTIONS(3090), - [anon_sym_LR_DQUOTE] = ACTIONS(3090), - [anon_sym_uR_DQUOTE] = ACTIONS(3090), - [anon_sym_UR_DQUOTE] = ACTIONS(3090), - [anon_sym_u8R_DQUOTE] = ACTIONS(3090), - [anon_sym_co_await] = ACTIONS(3088), - [anon_sym_new] = ACTIONS(3088), - [anon_sym_requires] = ACTIONS(3088), - [sym_this] = ACTIONS(3088), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3090), - [sym_semgrep_named_ellipsis] = ACTIONS(3090), + [sym_else_clause] = STATE(309), + [sym_identifier] = ACTIONS(3064), + [aux_sym_preproc_include_token1] = ACTIONS(3064), + [aux_sym_preproc_def_token1] = ACTIONS(3064), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3066), + [aux_sym_preproc_if_token1] = ACTIONS(3064), + [aux_sym_preproc_if_token2] = ACTIONS(3064), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3064), + [aux_sym_preproc_else_token1] = ACTIONS(3064), + [aux_sym_preproc_elif_token1] = ACTIONS(3064), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3064), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3064), + [sym_preproc_directive] = ACTIONS(3064), + [anon_sym_LPAREN2] = ACTIONS(3066), + [anon_sym_BANG] = ACTIONS(3066), + [anon_sym_TILDE] = ACTIONS(3066), + [anon_sym_DASH] = ACTIONS(3064), + [anon_sym_PLUS] = ACTIONS(3064), + [anon_sym_STAR] = ACTIONS(3066), + [anon_sym_AMP_AMP] = ACTIONS(3066), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_SEMI] = ACTIONS(3066), + [anon_sym___extension__] = ACTIONS(3064), + [anon_sym_typedef] = ACTIONS(3064), + [anon_sym_extern] = ACTIONS(3064), + [anon_sym___attribute__] = ACTIONS(3064), + [anon_sym_COLON_COLON] = ACTIONS(3066), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3066), + [anon_sym___declspec] = ACTIONS(3064), + [anon_sym___based] = ACTIONS(3064), + [anon_sym___cdecl] = ACTIONS(3064), + [anon_sym___clrcall] = ACTIONS(3064), + [anon_sym___stdcall] = ACTIONS(3064), + [anon_sym___fastcall] = ACTIONS(3064), + [anon_sym___thiscall] = ACTIONS(3064), + [anon_sym___vectorcall] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(3066), + [anon_sym_signed] = ACTIONS(3064), + [anon_sym_unsigned] = ACTIONS(3064), + [anon_sym_long] = ACTIONS(3064), + [anon_sym_short] = ACTIONS(3064), + [anon_sym_LBRACK] = ACTIONS(3064), + [anon_sym_static] = ACTIONS(3064), + [anon_sym_register] = ACTIONS(3064), + [anon_sym_inline] = ACTIONS(3064), + [anon_sym___inline] = ACTIONS(3064), + [anon_sym___inline__] = ACTIONS(3064), + [anon_sym___forceinline] = ACTIONS(3064), + [anon_sym_thread_local] = ACTIONS(3064), + [anon_sym___thread] = ACTIONS(3064), + [anon_sym_const] = ACTIONS(3064), + [anon_sym_constexpr] = ACTIONS(3064), + [anon_sym_volatile] = ACTIONS(3064), + [anon_sym_restrict] = ACTIONS(3064), + [anon_sym___restrict__] = ACTIONS(3064), + [anon_sym__Atomic] = ACTIONS(3064), + [anon_sym__Noreturn] = ACTIONS(3064), + [anon_sym_noreturn] = ACTIONS(3064), + [anon_sym_mutable] = ACTIONS(3064), + [anon_sym_constinit] = ACTIONS(3064), + [anon_sym_consteval] = ACTIONS(3064), + [sym_primitive_type] = ACTIONS(3064), + [anon_sym_enum] = ACTIONS(3064), + [anon_sym_class] = ACTIONS(3064), + [anon_sym_struct] = ACTIONS(3064), + [anon_sym_union] = ACTIONS(3064), + [anon_sym_if] = ACTIONS(3064), + [anon_sym_else] = ACTIONS(3068), + [anon_sym_switch] = ACTIONS(3064), + [anon_sym_case] = ACTIONS(3064), + [anon_sym_default] = ACTIONS(3064), + [anon_sym_while] = ACTIONS(3064), + [anon_sym_do] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(3064), + [anon_sym_return] = ACTIONS(3064), + [anon_sym_break] = ACTIONS(3064), + [anon_sym_continue] = ACTIONS(3064), + [anon_sym_goto] = ACTIONS(3064), + [anon_sym___try] = ACTIONS(3064), + [anon_sym___leave] = ACTIONS(3064), + [anon_sym_not] = ACTIONS(3064), + [anon_sym_compl] = ACTIONS(3064), + [anon_sym_DASH_DASH] = ACTIONS(3066), + [anon_sym_PLUS_PLUS] = ACTIONS(3066), + [anon_sym_sizeof] = ACTIONS(3064), + [anon_sym___alignof__] = ACTIONS(3064), + [anon_sym___alignof] = ACTIONS(3064), + [anon_sym__alignof] = ACTIONS(3064), + [anon_sym_alignof] = ACTIONS(3064), + [anon_sym__Alignof] = ACTIONS(3064), + [anon_sym_offsetof] = ACTIONS(3064), + [anon_sym__Generic] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3064), + [anon_sym___asm__] = ACTIONS(3064), + [sym_number_literal] = ACTIONS(3066), + [anon_sym_L_SQUOTE] = ACTIONS(3066), + [anon_sym_u_SQUOTE] = ACTIONS(3066), + [anon_sym_U_SQUOTE] = ACTIONS(3066), + [anon_sym_u8_SQUOTE] = ACTIONS(3066), + [anon_sym_SQUOTE] = ACTIONS(3066), + [anon_sym_L_DQUOTE] = ACTIONS(3066), + [anon_sym_u_DQUOTE] = ACTIONS(3066), + [anon_sym_U_DQUOTE] = ACTIONS(3066), + [anon_sym_u8_DQUOTE] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3066), + [sym_true] = ACTIONS(3064), + [sym_false] = ACTIONS(3064), + [anon_sym_NULL] = ACTIONS(3064), + [anon_sym_nullptr] = ACTIONS(3064), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3064), + [anon_sym_decltype] = ACTIONS(3064), + [anon_sym_virtual] = ACTIONS(3064), + [anon_sym_alignas] = ACTIONS(3064), + [anon_sym_explicit] = ACTIONS(3064), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_operator] = ACTIONS(3064), + [anon_sym_try] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3064), + [anon_sym_throw] = ACTIONS(3064), + [anon_sym_namespace] = ACTIONS(3064), + [anon_sym_using] = ACTIONS(3064), + [anon_sym_static_assert] = ACTIONS(3064), + [anon_sym_concept] = ACTIONS(3064), + [anon_sym_co_return] = ACTIONS(3064), + [anon_sym_co_yield] = ACTIONS(3064), + [anon_sym_R_DQUOTE] = ACTIONS(3066), + [anon_sym_LR_DQUOTE] = ACTIONS(3066), + [anon_sym_uR_DQUOTE] = ACTIONS(3066), + [anon_sym_UR_DQUOTE] = ACTIONS(3066), + [anon_sym_u8R_DQUOTE] = ACTIONS(3066), + [anon_sym_co_await] = ACTIONS(3064), + [anon_sym_new] = ACTIONS(3064), + [anon_sym_requires] = ACTIONS(3064), + [sym_this] = ACTIONS(3064), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3066), + [sym_semgrep_named_ellipsis] = ACTIONS(3066), }, [304] = { - [sym_catch_clause] = STATE(306), - [aux_sym_constructor_try_statement_repeat1] = STATE(306), - [sym_identifier] = ACTIONS(3057), - [aux_sym_preproc_include_token1] = ACTIONS(3057), - [aux_sym_preproc_def_token1] = ACTIONS(3057), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3059), - [aux_sym_preproc_if_token1] = ACTIONS(3057), - [aux_sym_preproc_if_token2] = ACTIONS(3057), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3057), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3057), - [aux_sym_preproc_else_token1] = ACTIONS(3057), - [aux_sym_preproc_elif_token1] = ACTIONS(3057), - [sym_preproc_directive] = ACTIONS(3057), - [anon_sym_LPAREN2] = ACTIONS(3059), - [anon_sym_BANG] = ACTIONS(3059), - [anon_sym_TILDE] = ACTIONS(3059), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_AMP_AMP] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_SEMI] = ACTIONS(3059), - [anon_sym___extension__] = ACTIONS(3057), - [anon_sym_typedef] = ACTIONS(3057), - [anon_sym_extern] = ACTIONS(3057), - [anon_sym___attribute__] = ACTIONS(3057), - [anon_sym_COLON_COLON] = ACTIONS(3059), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3059), - [anon_sym___declspec] = ACTIONS(3057), - [anon_sym___based] = ACTIONS(3057), - [anon_sym___cdecl] = ACTIONS(3057), - [anon_sym___clrcall] = ACTIONS(3057), - [anon_sym___stdcall] = ACTIONS(3057), - [anon_sym___fastcall] = ACTIONS(3057), - [anon_sym___thiscall] = ACTIONS(3057), - [anon_sym___vectorcall] = ACTIONS(3057), - [anon_sym_LBRACE] = ACTIONS(3059), - [anon_sym_signed] = ACTIONS(3057), - [anon_sym_unsigned] = ACTIONS(3057), - [anon_sym_long] = ACTIONS(3057), - [anon_sym_short] = ACTIONS(3057), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_static] = ACTIONS(3057), - [anon_sym_register] = ACTIONS(3057), - [anon_sym_inline] = ACTIONS(3057), - [anon_sym___inline] = ACTIONS(3057), - [anon_sym___inline__] = ACTIONS(3057), - [anon_sym___forceinline] = ACTIONS(3057), - [anon_sym_thread_local] = ACTIONS(3057), - [anon_sym___thread] = ACTIONS(3057), - [anon_sym_const] = ACTIONS(3057), - [anon_sym_constexpr] = ACTIONS(3057), - [anon_sym_volatile] = ACTIONS(3057), - [anon_sym_restrict] = ACTIONS(3057), - [anon_sym___restrict__] = ACTIONS(3057), - [anon_sym__Atomic] = ACTIONS(3057), - [anon_sym__Noreturn] = ACTIONS(3057), - [anon_sym_noreturn] = ACTIONS(3057), - [anon_sym_mutable] = ACTIONS(3057), - [anon_sym_constinit] = ACTIONS(3057), - [anon_sym_consteval] = ACTIONS(3057), - [sym_primitive_type] = ACTIONS(3057), - [anon_sym_enum] = ACTIONS(3057), - [anon_sym_class] = ACTIONS(3057), - [anon_sym_struct] = ACTIONS(3057), - [anon_sym_union] = ACTIONS(3057), - [anon_sym_if] = ACTIONS(3057), - [anon_sym_else] = ACTIONS(3057), - [anon_sym_switch] = ACTIONS(3057), - [anon_sym_case] = ACTIONS(3057), - [anon_sym_default] = ACTIONS(3057), - [anon_sym_while] = ACTIONS(3057), - [anon_sym_do] = ACTIONS(3057), - [anon_sym_for] = ACTIONS(3057), - [anon_sym_return] = ACTIONS(3057), - [anon_sym_break] = ACTIONS(3057), - [anon_sym_continue] = ACTIONS(3057), - [anon_sym_goto] = ACTIONS(3057), - [anon_sym___try] = ACTIONS(3057), - [anon_sym___leave] = ACTIONS(3057), - [anon_sym_not] = ACTIONS(3057), - [anon_sym_compl] = ACTIONS(3057), - [anon_sym_DASH_DASH] = ACTIONS(3059), - [anon_sym_PLUS_PLUS] = ACTIONS(3059), - [anon_sym_sizeof] = ACTIONS(3057), - [anon_sym___alignof__] = ACTIONS(3057), - [anon_sym___alignof] = ACTIONS(3057), - [anon_sym__alignof] = ACTIONS(3057), - [anon_sym_alignof] = ACTIONS(3057), - [anon_sym__Alignof] = ACTIONS(3057), - [anon_sym_offsetof] = ACTIONS(3057), - [anon_sym__Generic] = ACTIONS(3057), - [anon_sym_asm] = ACTIONS(3057), - [anon_sym___asm__] = ACTIONS(3057), - [sym_number_literal] = ACTIONS(3059), - [anon_sym_L_SQUOTE] = ACTIONS(3059), - [anon_sym_u_SQUOTE] = ACTIONS(3059), - [anon_sym_U_SQUOTE] = ACTIONS(3059), - [anon_sym_u8_SQUOTE] = ACTIONS(3059), - [anon_sym_SQUOTE] = ACTIONS(3059), - [anon_sym_L_DQUOTE] = ACTIONS(3059), - [anon_sym_u_DQUOTE] = ACTIONS(3059), - [anon_sym_U_DQUOTE] = ACTIONS(3059), - [anon_sym_u8_DQUOTE] = ACTIONS(3059), - [anon_sym_DQUOTE] = ACTIONS(3059), - [sym_true] = ACTIONS(3057), - [sym_false] = ACTIONS(3057), - [anon_sym_NULL] = ACTIONS(3057), - [anon_sym_nullptr] = ACTIONS(3057), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3057), - [anon_sym_decltype] = ACTIONS(3057), - [anon_sym_virtual] = ACTIONS(3057), - [anon_sym_alignas] = ACTIONS(3057), - [anon_sym_explicit] = ACTIONS(3057), - [anon_sym_typename] = ACTIONS(3057), - [anon_sym_template] = ACTIONS(3057), - [anon_sym_operator] = ACTIONS(3057), - [anon_sym_try] = ACTIONS(3057), - [anon_sym_delete] = ACTIONS(3057), - [anon_sym_throw] = ACTIONS(3057), - [anon_sym_namespace] = ACTIONS(3057), - [anon_sym_using] = ACTIONS(3057), - [anon_sym_static_assert] = ACTIONS(3057), - [anon_sym_concept] = ACTIONS(3057), - [anon_sym_co_return] = ACTIONS(3057), - [anon_sym_co_yield] = ACTIONS(3057), - [anon_sym_catch] = ACTIONS(3092), - [anon_sym_R_DQUOTE] = ACTIONS(3059), - [anon_sym_LR_DQUOTE] = ACTIONS(3059), - [anon_sym_uR_DQUOTE] = ACTIONS(3059), - [anon_sym_UR_DQUOTE] = ACTIONS(3059), - [anon_sym_u8R_DQUOTE] = ACTIONS(3059), - [anon_sym_co_await] = ACTIONS(3057), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(3057), - [sym_this] = ACTIONS(3057), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3059), - [sym_semgrep_named_ellipsis] = ACTIONS(3059), + [sym_identifier] = ACTIONS(2359), + [aux_sym_preproc_include_token1] = ACTIONS(2359), + [aux_sym_preproc_def_token1] = ACTIONS(2359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2357), + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2359), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2359), + [sym_preproc_directive] = ACTIONS(2359), + [anon_sym_LPAREN2] = ACTIONS(2357), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_DASH] = ACTIONS(2359), + [anon_sym_PLUS] = ACTIONS(2359), + [anon_sym_STAR] = ACTIONS(2357), + [anon_sym_AMP_AMP] = ACTIONS(2357), + [anon_sym_AMP] = ACTIONS(2359), + [anon_sym_SEMI] = ACTIONS(2357), + [anon_sym___extension__] = ACTIONS(2359), + [anon_sym_typedef] = ACTIONS(2359), + [anon_sym_extern] = ACTIONS(2359), + [anon_sym___attribute__] = ACTIONS(2359), + [anon_sym_COLON_COLON] = ACTIONS(2357), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2357), + [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(2357), + [anon_sym_signed] = ACTIONS(2359), + [anon_sym_unsigned] = ACTIONS(2359), + [anon_sym_long] = ACTIONS(2359), + [anon_sym_short] = ACTIONS(2359), + [anon_sym_LBRACK] = ACTIONS(2359), + [anon_sym_static] = ACTIONS(2359), + [anon_sym_register] = ACTIONS(2359), + [anon_sym_inline] = ACTIONS(2359), + [anon_sym___inline] = ACTIONS(2359), + [anon_sym___inline__] = ACTIONS(2359), + [anon_sym___forceinline] = ACTIONS(2359), + [anon_sym_thread_local] = ACTIONS(2359), + [anon_sym___thread] = ACTIONS(2359), + [anon_sym_const] = ACTIONS(2359), + [anon_sym_constexpr] = ACTIONS(2359), + [anon_sym_volatile] = ACTIONS(2359), + [anon_sym_restrict] = ACTIONS(2359), + [anon_sym___restrict__] = ACTIONS(2359), + [anon_sym__Atomic] = ACTIONS(2359), + [anon_sym__Noreturn] = ACTIONS(2359), + [anon_sym_noreturn] = ACTIONS(2359), + [anon_sym_mutable] = ACTIONS(2359), + [anon_sym_constinit] = ACTIONS(2359), + [anon_sym_consteval] = 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___try] = ACTIONS(2359), + [anon_sym___leave] = ACTIONS(2359), + [anon_sym_not] = ACTIONS(2359), + [anon_sym_compl] = ACTIONS(2359), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_sizeof] = ACTIONS(2359), + [anon_sym___alignof__] = ACTIONS(2359), + [anon_sym___alignof] = ACTIONS(2359), + [anon_sym__alignof] = ACTIONS(2359), + [anon_sym_alignof] = ACTIONS(2359), + [anon_sym__Alignof] = ACTIONS(2359), + [anon_sym_offsetof] = ACTIONS(2359), + [anon_sym__Generic] = ACTIONS(2359), + [anon_sym_asm] = ACTIONS(2359), + [anon_sym___asm__] = ACTIONS(2359), + [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(2359), + [sym_false] = ACTIONS(2359), + [anon_sym_NULL] = ACTIONS(2359), + [anon_sym_nullptr] = ACTIONS(2359), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2359), + [anon_sym_decltype] = ACTIONS(2359), + [anon_sym_virtual] = ACTIONS(2359), + [anon_sym_alignas] = 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_catch] = ACTIONS(2359), + [anon_sym_R_DQUOTE] = ACTIONS(2357), + [anon_sym_LR_DQUOTE] = ACTIONS(2357), + [anon_sym_uR_DQUOTE] = ACTIONS(2357), + [anon_sym_UR_DQUOTE] = ACTIONS(2357), + [anon_sym_u8R_DQUOTE] = ACTIONS(2357), + [anon_sym_co_await] = ACTIONS(2359), + [anon_sym_new] = ACTIONS(2359), + [anon_sym_requires] = ACTIONS(2359), + [sym_this] = ACTIONS(2359), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2357), + [sym_semgrep_named_ellipsis] = ACTIONS(2357), }, [305] = { - [ts_builtin_sym_end] = ACTIONS(3094), - [sym_identifier] = ACTIONS(3096), - [aux_sym_preproc_include_token1] = ACTIONS(3096), - [aux_sym_preproc_def_token1] = ACTIONS(3096), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3094), - [anon_sym_COMMA] = ACTIONS(3094), - [anon_sym_RPAREN] = ACTIONS(3094), - [aux_sym_preproc_if_token1] = ACTIONS(3096), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3096), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3096), - [sym_preproc_directive] = ACTIONS(3096), - [anon_sym_LPAREN2] = ACTIONS(3094), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_TILDE] = ACTIONS(3094), - [anon_sym_DASH] = ACTIONS(3096), - [anon_sym_PLUS] = ACTIONS(3096), - [anon_sym_STAR] = ACTIONS(3094), - [anon_sym_AMP_AMP] = ACTIONS(3094), - [anon_sym_AMP] = ACTIONS(3096), - [anon_sym_SEMI] = ACTIONS(3094), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_typedef] = ACTIONS(3096), - [anon_sym_extern] = ACTIONS(3096), - [anon_sym___attribute__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(3094), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3094), - [anon_sym___declspec] = ACTIONS(3096), - [anon_sym___based] = ACTIONS(3096), - [anon_sym___cdecl] = ACTIONS(3096), - [anon_sym___clrcall] = ACTIONS(3096), - [anon_sym___stdcall] = ACTIONS(3096), - [anon_sym___fastcall] = ACTIONS(3096), - [anon_sym___thiscall] = ACTIONS(3096), - [anon_sym___vectorcall] = ACTIONS(3096), - [anon_sym_LBRACE] = ACTIONS(3094), - [anon_sym_signed] = ACTIONS(3096), - [anon_sym_unsigned] = ACTIONS(3096), - [anon_sym_long] = ACTIONS(3096), - [anon_sym_short] = ACTIONS(3096), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_static] = ACTIONS(3096), - [anon_sym_register] = ACTIONS(3096), - [anon_sym_inline] = ACTIONS(3096), - [anon_sym___inline] = ACTIONS(3096), - [anon_sym___inline__] = ACTIONS(3096), - [anon_sym___forceinline] = ACTIONS(3096), - [anon_sym_thread_local] = ACTIONS(3096), - [anon_sym___thread] = ACTIONS(3096), - [anon_sym_const] = ACTIONS(3096), - [anon_sym_constexpr] = ACTIONS(3096), - [anon_sym_volatile] = ACTIONS(3096), - [anon_sym_restrict] = ACTIONS(3096), - [anon_sym___restrict__] = ACTIONS(3096), - [anon_sym__Atomic] = ACTIONS(3096), - [anon_sym__Noreturn] = ACTIONS(3096), - [anon_sym_noreturn] = ACTIONS(3096), - [anon_sym_mutable] = ACTIONS(3096), - [anon_sym_constinit] = ACTIONS(3096), - [anon_sym_consteval] = ACTIONS(3096), - [sym_primitive_type] = ACTIONS(3096), - [anon_sym_enum] = ACTIONS(3096), - [anon_sym_class] = ACTIONS(3096), - [anon_sym_struct] = ACTIONS(3096), - [anon_sym_union] = ACTIONS(3096), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_else] = ACTIONS(3096), - [anon_sym_switch] = ACTIONS(3096), - [anon_sym_case] = ACTIONS(3096), - [anon_sym_default] = ACTIONS(3096), - [anon_sym_while] = ACTIONS(3096), - [anon_sym_do] = ACTIONS(3096), - [anon_sym_for] = ACTIONS(3096), - [anon_sym_return] = ACTIONS(3096), - [anon_sym_break] = ACTIONS(3096), - [anon_sym_continue] = ACTIONS(3096), - [anon_sym_goto] = ACTIONS(3096), - [anon_sym___try] = ACTIONS(3096), - [anon_sym___except] = ACTIONS(3096), - [anon_sym___finally] = ACTIONS(3096), - [anon_sym___leave] = ACTIONS(3096), - [anon_sym_not] = ACTIONS(3096), - [anon_sym_compl] = ACTIONS(3096), - [anon_sym_DASH_DASH] = ACTIONS(3094), - [anon_sym_PLUS_PLUS] = ACTIONS(3094), - [anon_sym_sizeof] = ACTIONS(3096), - [anon_sym___alignof__] = ACTIONS(3096), - [anon_sym___alignof] = ACTIONS(3096), - [anon_sym__alignof] = ACTIONS(3096), - [anon_sym_alignof] = ACTIONS(3096), - [anon_sym__Alignof] = ACTIONS(3096), - [anon_sym_offsetof] = ACTIONS(3096), - [anon_sym__Generic] = ACTIONS(3096), - [anon_sym_asm] = ACTIONS(3096), - [anon_sym___asm__] = ACTIONS(3096), - [sym_number_literal] = ACTIONS(3094), - [anon_sym_L_SQUOTE] = ACTIONS(3094), - [anon_sym_u_SQUOTE] = ACTIONS(3094), - [anon_sym_U_SQUOTE] = ACTIONS(3094), - [anon_sym_u8_SQUOTE] = ACTIONS(3094), - [anon_sym_SQUOTE] = ACTIONS(3094), - [anon_sym_L_DQUOTE] = ACTIONS(3094), - [anon_sym_u_DQUOTE] = ACTIONS(3094), - [anon_sym_U_DQUOTE] = ACTIONS(3094), - [anon_sym_u8_DQUOTE] = ACTIONS(3094), - [anon_sym_DQUOTE] = ACTIONS(3094), - [sym_true] = ACTIONS(3096), - [sym_false] = ACTIONS(3096), - [anon_sym_NULL] = ACTIONS(3096), - [anon_sym_nullptr] = ACTIONS(3096), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3096), - [anon_sym_decltype] = ACTIONS(3096), - [anon_sym_virtual] = ACTIONS(3096), - [anon_sym_alignas] = ACTIONS(3096), - [anon_sym_explicit] = ACTIONS(3096), - [anon_sym_typename] = ACTIONS(3096), - [anon_sym_template] = ACTIONS(3096), - [anon_sym_operator] = ACTIONS(3096), - [anon_sym_try] = ACTIONS(3096), - [anon_sym_delete] = ACTIONS(3096), - [anon_sym_throw] = ACTIONS(3096), - [anon_sym_namespace] = ACTIONS(3096), - [anon_sym_using] = ACTIONS(3096), - [anon_sym_static_assert] = ACTIONS(3096), - [anon_sym_concept] = ACTIONS(3096), - [anon_sym_co_return] = ACTIONS(3096), - [anon_sym_co_yield] = ACTIONS(3096), - [anon_sym_catch] = ACTIONS(3096), - [anon_sym_R_DQUOTE] = ACTIONS(3094), - [anon_sym_LR_DQUOTE] = ACTIONS(3094), - [anon_sym_uR_DQUOTE] = ACTIONS(3094), - [anon_sym_UR_DQUOTE] = ACTIONS(3094), - [anon_sym_u8R_DQUOTE] = ACTIONS(3094), - [anon_sym_co_await] = ACTIONS(3096), - [anon_sym_new] = ACTIONS(3096), - [anon_sym_requires] = ACTIONS(3096), - [sym_this] = ACTIONS(3096), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3094), - [sym_semgrep_named_ellipsis] = ACTIONS(3094), + [sym_catch_clause] = STATE(305), + [aux_sym_constructor_try_statement_repeat1] = STATE(305), + [sym_identifier] = ACTIONS(3027), + [aux_sym_preproc_include_token1] = ACTIONS(3027), + [aux_sym_preproc_def_token1] = ACTIONS(3027), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3029), + [aux_sym_preproc_if_token1] = ACTIONS(3027), + [aux_sym_preproc_if_token2] = ACTIONS(3027), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3027), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3027), + [aux_sym_preproc_else_token1] = ACTIONS(3027), + [aux_sym_preproc_elif_token1] = ACTIONS(3027), + [sym_preproc_directive] = ACTIONS(3027), + [anon_sym_LPAREN2] = ACTIONS(3029), + [anon_sym_BANG] = ACTIONS(3029), + [anon_sym_TILDE] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3027), + [anon_sym_STAR] = ACTIONS(3029), + [anon_sym_AMP_AMP] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3027), + [anon_sym_SEMI] = ACTIONS(3029), + [anon_sym___extension__] = ACTIONS(3027), + [anon_sym_typedef] = ACTIONS(3027), + [anon_sym_extern] = ACTIONS(3027), + [anon_sym___attribute__] = ACTIONS(3027), + [anon_sym_COLON_COLON] = ACTIONS(3029), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3029), + [anon_sym___declspec] = ACTIONS(3027), + [anon_sym___based] = ACTIONS(3027), + [anon_sym___cdecl] = ACTIONS(3027), + [anon_sym___clrcall] = ACTIONS(3027), + [anon_sym___stdcall] = ACTIONS(3027), + [anon_sym___fastcall] = ACTIONS(3027), + [anon_sym___thiscall] = ACTIONS(3027), + [anon_sym___vectorcall] = ACTIONS(3027), + [anon_sym_LBRACE] = ACTIONS(3029), + [anon_sym_signed] = ACTIONS(3027), + [anon_sym_unsigned] = ACTIONS(3027), + [anon_sym_long] = ACTIONS(3027), + [anon_sym_short] = ACTIONS(3027), + [anon_sym_LBRACK] = ACTIONS(3027), + [anon_sym_static] = ACTIONS(3027), + [anon_sym_register] = ACTIONS(3027), + [anon_sym_inline] = ACTIONS(3027), + [anon_sym___inline] = ACTIONS(3027), + [anon_sym___inline__] = ACTIONS(3027), + [anon_sym___forceinline] = ACTIONS(3027), + [anon_sym_thread_local] = ACTIONS(3027), + [anon_sym___thread] = ACTIONS(3027), + [anon_sym_const] = ACTIONS(3027), + [anon_sym_constexpr] = ACTIONS(3027), + [anon_sym_volatile] = ACTIONS(3027), + [anon_sym_restrict] = ACTIONS(3027), + [anon_sym___restrict__] = ACTIONS(3027), + [anon_sym__Atomic] = ACTIONS(3027), + [anon_sym__Noreturn] = ACTIONS(3027), + [anon_sym_noreturn] = ACTIONS(3027), + [anon_sym_mutable] = ACTIONS(3027), + [anon_sym_constinit] = ACTIONS(3027), + [anon_sym_consteval] = ACTIONS(3027), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3027), + [anon_sym_class] = ACTIONS(3027), + [anon_sym_struct] = ACTIONS(3027), + [anon_sym_union] = ACTIONS(3027), + [anon_sym_if] = ACTIONS(3027), + [anon_sym_else] = ACTIONS(3027), + [anon_sym_switch] = ACTIONS(3027), + [anon_sym_case] = ACTIONS(3027), + [anon_sym_default] = ACTIONS(3027), + [anon_sym_while] = ACTIONS(3027), + [anon_sym_do] = ACTIONS(3027), + [anon_sym_for] = ACTIONS(3027), + [anon_sym_return] = ACTIONS(3027), + [anon_sym_break] = ACTIONS(3027), + [anon_sym_continue] = ACTIONS(3027), + [anon_sym_goto] = ACTIONS(3027), + [anon_sym___try] = ACTIONS(3027), + [anon_sym___leave] = ACTIONS(3027), + [anon_sym_not] = ACTIONS(3027), + [anon_sym_compl] = ACTIONS(3027), + [anon_sym_DASH_DASH] = ACTIONS(3029), + [anon_sym_PLUS_PLUS] = ACTIONS(3029), + [anon_sym_sizeof] = ACTIONS(3027), + [anon_sym___alignof__] = ACTIONS(3027), + [anon_sym___alignof] = ACTIONS(3027), + [anon_sym__alignof] = ACTIONS(3027), + [anon_sym_alignof] = ACTIONS(3027), + [anon_sym__Alignof] = ACTIONS(3027), + [anon_sym_offsetof] = ACTIONS(3027), + [anon_sym__Generic] = ACTIONS(3027), + [anon_sym_asm] = ACTIONS(3027), + [anon_sym___asm__] = ACTIONS(3027), + [sym_number_literal] = ACTIONS(3029), + [anon_sym_L_SQUOTE] = ACTIONS(3029), + [anon_sym_u_SQUOTE] = ACTIONS(3029), + [anon_sym_U_SQUOTE] = ACTIONS(3029), + [anon_sym_u8_SQUOTE] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3029), + [anon_sym_L_DQUOTE] = ACTIONS(3029), + [anon_sym_u_DQUOTE] = ACTIONS(3029), + [anon_sym_U_DQUOTE] = ACTIONS(3029), + [anon_sym_u8_DQUOTE] = ACTIONS(3029), + [anon_sym_DQUOTE] = ACTIONS(3029), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [anon_sym_NULL] = ACTIONS(3027), + [anon_sym_nullptr] = ACTIONS(3027), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3027), + [anon_sym_decltype] = ACTIONS(3027), + [anon_sym_virtual] = ACTIONS(3027), + [anon_sym_alignas] = ACTIONS(3027), + [anon_sym_explicit] = ACTIONS(3027), + [anon_sym_typename] = ACTIONS(3027), + [anon_sym_template] = ACTIONS(3027), + [anon_sym_operator] = ACTIONS(3027), + [anon_sym_try] = ACTIONS(3027), + [anon_sym_delete] = ACTIONS(3027), + [anon_sym_throw] = ACTIONS(3027), + [anon_sym_namespace] = ACTIONS(3027), + [anon_sym_using] = ACTIONS(3027), + [anon_sym_static_assert] = ACTIONS(3027), + [anon_sym_concept] = ACTIONS(3027), + [anon_sym_co_return] = ACTIONS(3027), + [anon_sym_co_yield] = ACTIONS(3027), + [anon_sym_catch] = ACTIONS(3070), + [anon_sym_R_DQUOTE] = ACTIONS(3029), + [anon_sym_LR_DQUOTE] = ACTIONS(3029), + [anon_sym_uR_DQUOTE] = ACTIONS(3029), + [anon_sym_UR_DQUOTE] = ACTIONS(3029), + [anon_sym_u8R_DQUOTE] = ACTIONS(3029), + [anon_sym_co_await] = ACTIONS(3027), + [anon_sym_new] = ACTIONS(3027), + [anon_sym_requires] = ACTIONS(3027), + [sym_this] = ACTIONS(3027), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3029), + [sym_semgrep_named_ellipsis] = ACTIONS(3029), }, [306] = { - [sym_catch_clause] = STATE(306), - [aux_sym_constructor_try_statement_repeat1] = STATE(306), - [sym_identifier] = ACTIONS(3063), - [aux_sym_preproc_include_token1] = ACTIONS(3063), - [aux_sym_preproc_def_token1] = ACTIONS(3063), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3065), - [aux_sym_preproc_if_token1] = ACTIONS(3063), - [aux_sym_preproc_if_token2] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3063), - [aux_sym_preproc_else_token1] = ACTIONS(3063), - [aux_sym_preproc_elif_token1] = ACTIONS(3063), - [sym_preproc_directive] = ACTIONS(3063), - [anon_sym_LPAREN2] = ACTIONS(3065), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3063), - [anon_sym_SEMI] = ACTIONS(3065), - [anon_sym___extension__] = ACTIONS(3063), - [anon_sym_typedef] = ACTIONS(3063), - [anon_sym_extern] = ACTIONS(3063), - [anon_sym___attribute__] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(3065), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3065), - [anon_sym___declspec] = ACTIONS(3063), - [anon_sym___based] = ACTIONS(3063), - [anon_sym___cdecl] = ACTIONS(3063), - [anon_sym___clrcall] = ACTIONS(3063), - [anon_sym___stdcall] = ACTIONS(3063), - [anon_sym___fastcall] = ACTIONS(3063), - [anon_sym___thiscall] = ACTIONS(3063), - [anon_sym___vectorcall] = ACTIONS(3063), - [anon_sym_LBRACE] = ACTIONS(3065), - [anon_sym_signed] = ACTIONS(3063), - [anon_sym_unsigned] = ACTIONS(3063), - [anon_sym_long] = ACTIONS(3063), - [anon_sym_short] = ACTIONS(3063), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_static] = ACTIONS(3063), - [anon_sym_register] = ACTIONS(3063), - [anon_sym_inline] = ACTIONS(3063), - [anon_sym___inline] = ACTIONS(3063), - [anon_sym___inline__] = ACTIONS(3063), - [anon_sym___forceinline] = ACTIONS(3063), - [anon_sym_thread_local] = ACTIONS(3063), - [anon_sym___thread] = ACTIONS(3063), - [anon_sym_const] = ACTIONS(3063), - [anon_sym_constexpr] = ACTIONS(3063), - [anon_sym_volatile] = ACTIONS(3063), - [anon_sym_restrict] = ACTIONS(3063), - [anon_sym___restrict__] = ACTIONS(3063), - [anon_sym__Atomic] = ACTIONS(3063), - [anon_sym__Noreturn] = ACTIONS(3063), - [anon_sym_noreturn] = ACTIONS(3063), - [anon_sym_mutable] = ACTIONS(3063), - [anon_sym_constinit] = ACTIONS(3063), - [anon_sym_consteval] = ACTIONS(3063), - [sym_primitive_type] = ACTIONS(3063), - [anon_sym_enum] = ACTIONS(3063), - [anon_sym_class] = ACTIONS(3063), - [anon_sym_struct] = ACTIONS(3063), - [anon_sym_union] = ACTIONS(3063), - [anon_sym_if] = ACTIONS(3063), - [anon_sym_else] = ACTIONS(3063), - [anon_sym_switch] = ACTIONS(3063), - [anon_sym_case] = ACTIONS(3063), - [anon_sym_default] = ACTIONS(3063), - [anon_sym_while] = ACTIONS(3063), - [anon_sym_do] = ACTIONS(3063), - [anon_sym_for] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(3063), - [anon_sym_break] = ACTIONS(3063), - [anon_sym_continue] = ACTIONS(3063), - [anon_sym_goto] = ACTIONS(3063), - [anon_sym___try] = ACTIONS(3063), - [anon_sym___leave] = ACTIONS(3063), - [anon_sym_not] = ACTIONS(3063), - [anon_sym_compl] = ACTIONS(3063), - [anon_sym_DASH_DASH] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3065), - [anon_sym_sizeof] = ACTIONS(3063), - [anon_sym___alignof__] = ACTIONS(3063), - [anon_sym___alignof] = ACTIONS(3063), - [anon_sym__alignof] = ACTIONS(3063), - [anon_sym_alignof] = ACTIONS(3063), - [anon_sym__Alignof] = ACTIONS(3063), - [anon_sym_offsetof] = ACTIONS(3063), - [anon_sym__Generic] = ACTIONS(3063), - [anon_sym_asm] = ACTIONS(3063), - [anon_sym___asm__] = ACTIONS(3063), - [sym_number_literal] = ACTIONS(3065), - [anon_sym_L_SQUOTE] = ACTIONS(3065), - [anon_sym_u_SQUOTE] = ACTIONS(3065), - [anon_sym_U_SQUOTE] = ACTIONS(3065), - [anon_sym_u8_SQUOTE] = ACTIONS(3065), - [anon_sym_SQUOTE] = ACTIONS(3065), - [anon_sym_L_DQUOTE] = ACTIONS(3065), - [anon_sym_u_DQUOTE] = ACTIONS(3065), - [anon_sym_U_DQUOTE] = ACTIONS(3065), - [anon_sym_u8_DQUOTE] = ACTIONS(3065), - [anon_sym_DQUOTE] = ACTIONS(3065), - [sym_true] = ACTIONS(3063), - [sym_false] = ACTIONS(3063), - [anon_sym_NULL] = ACTIONS(3063), - [anon_sym_nullptr] = ACTIONS(3063), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3063), - [anon_sym_decltype] = ACTIONS(3063), - [anon_sym_virtual] = ACTIONS(3063), - [anon_sym_alignas] = ACTIONS(3063), - [anon_sym_explicit] = ACTIONS(3063), - [anon_sym_typename] = ACTIONS(3063), - [anon_sym_template] = ACTIONS(3063), - [anon_sym_operator] = ACTIONS(3063), - [anon_sym_try] = ACTIONS(3063), - [anon_sym_delete] = ACTIONS(3063), - [anon_sym_throw] = ACTIONS(3063), - [anon_sym_namespace] = ACTIONS(3063), - [anon_sym_using] = ACTIONS(3063), - [anon_sym_static_assert] = ACTIONS(3063), - [anon_sym_concept] = ACTIONS(3063), - [anon_sym_co_return] = ACTIONS(3063), - [anon_sym_co_yield] = ACTIONS(3063), - [anon_sym_catch] = ACTIONS(3098), - [anon_sym_R_DQUOTE] = ACTIONS(3065), - [anon_sym_LR_DQUOTE] = ACTIONS(3065), - [anon_sym_uR_DQUOTE] = ACTIONS(3065), - [anon_sym_UR_DQUOTE] = ACTIONS(3065), - [anon_sym_u8R_DQUOTE] = ACTIONS(3065), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3063), - [anon_sym_requires] = ACTIONS(3063), - [sym_this] = ACTIONS(3063), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3065), - [sym_semgrep_named_ellipsis] = ACTIONS(3065), + [sym_else_clause] = STATE(314), + [sym_identifier] = ACTIONS(3073), + [aux_sym_preproc_include_token1] = ACTIONS(3073), + [aux_sym_preproc_def_token1] = ACTIONS(3073), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3075), + [aux_sym_preproc_if_token1] = ACTIONS(3073), + [aux_sym_preproc_if_token2] = ACTIONS(3073), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3073), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3073), + [aux_sym_preproc_else_token1] = ACTIONS(3073), + [aux_sym_preproc_elif_token1] = ACTIONS(3073), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3073), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3073), + [sym_preproc_directive] = ACTIONS(3073), + [anon_sym_LPAREN2] = ACTIONS(3075), + [anon_sym_BANG] = ACTIONS(3075), + [anon_sym_TILDE] = ACTIONS(3075), + [anon_sym_DASH] = ACTIONS(3073), + [anon_sym_PLUS] = ACTIONS(3073), + [anon_sym_STAR] = ACTIONS(3075), + [anon_sym_AMP_AMP] = ACTIONS(3075), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_SEMI] = ACTIONS(3075), + [anon_sym___extension__] = ACTIONS(3073), + [anon_sym_typedef] = ACTIONS(3073), + [anon_sym_extern] = ACTIONS(3073), + [anon_sym___attribute__] = ACTIONS(3073), + [anon_sym_COLON_COLON] = ACTIONS(3075), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3075), + [anon_sym___declspec] = ACTIONS(3073), + [anon_sym___based] = ACTIONS(3073), + [anon_sym___cdecl] = ACTIONS(3073), + [anon_sym___clrcall] = ACTIONS(3073), + [anon_sym___stdcall] = ACTIONS(3073), + [anon_sym___fastcall] = ACTIONS(3073), + [anon_sym___thiscall] = ACTIONS(3073), + [anon_sym___vectorcall] = ACTIONS(3073), + [anon_sym_LBRACE] = ACTIONS(3075), + [anon_sym_signed] = ACTIONS(3073), + [anon_sym_unsigned] = ACTIONS(3073), + [anon_sym_long] = ACTIONS(3073), + [anon_sym_short] = ACTIONS(3073), + [anon_sym_LBRACK] = ACTIONS(3073), + [anon_sym_static] = ACTIONS(3073), + [anon_sym_register] = ACTIONS(3073), + [anon_sym_inline] = ACTIONS(3073), + [anon_sym___inline] = ACTIONS(3073), + [anon_sym___inline__] = ACTIONS(3073), + [anon_sym___forceinline] = ACTIONS(3073), + [anon_sym_thread_local] = ACTIONS(3073), + [anon_sym___thread] = ACTIONS(3073), + [anon_sym_const] = ACTIONS(3073), + [anon_sym_constexpr] = ACTIONS(3073), + [anon_sym_volatile] = ACTIONS(3073), + [anon_sym_restrict] = ACTIONS(3073), + [anon_sym___restrict__] = ACTIONS(3073), + [anon_sym__Atomic] = ACTIONS(3073), + [anon_sym__Noreturn] = ACTIONS(3073), + [anon_sym_noreturn] = ACTIONS(3073), + [anon_sym_mutable] = ACTIONS(3073), + [anon_sym_constinit] = ACTIONS(3073), + [anon_sym_consteval] = ACTIONS(3073), + [sym_primitive_type] = ACTIONS(3073), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3073), + [anon_sym_struct] = ACTIONS(3073), + [anon_sym_union] = ACTIONS(3073), + [anon_sym_if] = ACTIONS(3073), + [anon_sym_else] = ACTIONS(3068), + [anon_sym_switch] = ACTIONS(3073), + [anon_sym_case] = ACTIONS(3073), + [anon_sym_default] = ACTIONS(3073), + [anon_sym_while] = ACTIONS(3073), + [anon_sym_do] = ACTIONS(3073), + [anon_sym_for] = ACTIONS(3073), + [anon_sym_return] = ACTIONS(3073), + [anon_sym_break] = ACTIONS(3073), + [anon_sym_continue] = ACTIONS(3073), + [anon_sym_goto] = ACTIONS(3073), + [anon_sym___try] = ACTIONS(3073), + [anon_sym___leave] = ACTIONS(3073), + [anon_sym_not] = ACTIONS(3073), + [anon_sym_compl] = ACTIONS(3073), + [anon_sym_DASH_DASH] = ACTIONS(3075), + [anon_sym_PLUS_PLUS] = ACTIONS(3075), + [anon_sym_sizeof] = ACTIONS(3073), + [anon_sym___alignof__] = ACTIONS(3073), + [anon_sym___alignof] = ACTIONS(3073), + [anon_sym__alignof] = ACTIONS(3073), + [anon_sym_alignof] = ACTIONS(3073), + [anon_sym__Alignof] = ACTIONS(3073), + [anon_sym_offsetof] = ACTIONS(3073), + [anon_sym__Generic] = ACTIONS(3073), + [anon_sym_asm] = ACTIONS(3073), + [anon_sym___asm__] = ACTIONS(3073), + [sym_number_literal] = ACTIONS(3075), + [anon_sym_L_SQUOTE] = ACTIONS(3075), + [anon_sym_u_SQUOTE] = ACTIONS(3075), + [anon_sym_U_SQUOTE] = ACTIONS(3075), + [anon_sym_u8_SQUOTE] = ACTIONS(3075), + [anon_sym_SQUOTE] = ACTIONS(3075), + [anon_sym_L_DQUOTE] = ACTIONS(3075), + [anon_sym_u_DQUOTE] = ACTIONS(3075), + [anon_sym_U_DQUOTE] = ACTIONS(3075), + [anon_sym_u8_DQUOTE] = ACTIONS(3075), + [anon_sym_DQUOTE] = ACTIONS(3075), + [sym_true] = ACTIONS(3073), + [sym_false] = ACTIONS(3073), + [anon_sym_NULL] = ACTIONS(3073), + [anon_sym_nullptr] = ACTIONS(3073), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3073), + [anon_sym_decltype] = ACTIONS(3073), + [anon_sym_virtual] = ACTIONS(3073), + [anon_sym_alignas] = ACTIONS(3073), + [anon_sym_explicit] = ACTIONS(3073), + [anon_sym_typename] = ACTIONS(3073), + [anon_sym_template] = ACTIONS(3073), + [anon_sym_operator] = ACTIONS(3073), + [anon_sym_try] = ACTIONS(3073), + [anon_sym_delete] = ACTIONS(3073), + [anon_sym_throw] = ACTIONS(3073), + [anon_sym_namespace] = ACTIONS(3073), + [anon_sym_using] = ACTIONS(3073), + [anon_sym_static_assert] = ACTIONS(3073), + [anon_sym_concept] = ACTIONS(3073), + [anon_sym_co_return] = ACTIONS(3073), + [anon_sym_co_yield] = ACTIONS(3073), + [anon_sym_R_DQUOTE] = ACTIONS(3075), + [anon_sym_LR_DQUOTE] = ACTIONS(3075), + [anon_sym_uR_DQUOTE] = ACTIONS(3075), + [anon_sym_UR_DQUOTE] = ACTIONS(3075), + [anon_sym_u8R_DQUOTE] = ACTIONS(3075), + [anon_sym_co_await] = ACTIONS(3073), + [anon_sym_new] = ACTIONS(3073), + [anon_sym_requires] = ACTIONS(3073), + [sym_this] = ACTIONS(3073), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3075), + [sym_semgrep_named_ellipsis] = ACTIONS(3075), }, [307] = { - [sym_identifier] = ACTIONS(3096), - [aux_sym_preproc_include_token1] = ACTIONS(3096), - [aux_sym_preproc_def_token1] = ACTIONS(3096), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3094), - [aux_sym_preproc_if_token1] = ACTIONS(3096), - [aux_sym_preproc_if_token2] = ACTIONS(3096), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3096), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3096), - [aux_sym_preproc_else_token1] = ACTIONS(3096), - [aux_sym_preproc_elif_token1] = ACTIONS(3096), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3096), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3096), - [sym_preproc_directive] = ACTIONS(3096), - [anon_sym_LPAREN2] = ACTIONS(3094), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_TILDE] = ACTIONS(3094), - [anon_sym_DASH] = ACTIONS(3096), - [anon_sym_PLUS] = ACTIONS(3096), - [anon_sym_STAR] = ACTIONS(3094), - [anon_sym_AMP_AMP] = ACTIONS(3094), - [anon_sym_AMP] = ACTIONS(3096), - [anon_sym_SEMI] = ACTIONS(3094), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_typedef] = ACTIONS(3096), - [anon_sym_extern] = ACTIONS(3096), - [anon_sym___attribute__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(3094), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3094), - [anon_sym___declspec] = ACTIONS(3096), - [anon_sym___based] = ACTIONS(3096), - [anon_sym___cdecl] = ACTIONS(3096), - [anon_sym___clrcall] = ACTIONS(3096), - [anon_sym___stdcall] = ACTIONS(3096), - [anon_sym___fastcall] = ACTIONS(3096), - [anon_sym___thiscall] = ACTIONS(3096), - [anon_sym___vectorcall] = ACTIONS(3096), - [anon_sym_LBRACE] = ACTIONS(3094), - [anon_sym_signed] = ACTIONS(3096), - [anon_sym_unsigned] = ACTIONS(3096), - [anon_sym_long] = ACTIONS(3096), - [anon_sym_short] = ACTIONS(3096), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_static] = ACTIONS(3096), - [anon_sym_register] = ACTIONS(3096), - [anon_sym_inline] = ACTIONS(3096), - [anon_sym___inline] = ACTIONS(3096), - [anon_sym___inline__] = ACTIONS(3096), - [anon_sym___forceinline] = ACTIONS(3096), - [anon_sym_thread_local] = ACTIONS(3096), - [anon_sym___thread] = ACTIONS(3096), - [anon_sym_const] = ACTIONS(3096), - [anon_sym_constexpr] = ACTIONS(3096), - [anon_sym_volatile] = ACTIONS(3096), - [anon_sym_restrict] = ACTIONS(3096), - [anon_sym___restrict__] = ACTIONS(3096), - [anon_sym__Atomic] = ACTIONS(3096), - [anon_sym__Noreturn] = ACTIONS(3096), - [anon_sym_noreturn] = ACTIONS(3096), - [anon_sym_mutable] = ACTIONS(3096), - [anon_sym_constinit] = ACTIONS(3096), - [anon_sym_consteval] = ACTIONS(3096), - [sym_primitive_type] = ACTIONS(3096), - [anon_sym_enum] = ACTIONS(3096), - [anon_sym_class] = ACTIONS(3096), - [anon_sym_struct] = ACTIONS(3096), - [anon_sym_union] = ACTIONS(3096), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_else] = ACTIONS(3096), - [anon_sym_switch] = ACTIONS(3096), - [anon_sym_case] = ACTIONS(3096), - [anon_sym_default] = ACTIONS(3096), - [anon_sym_while] = ACTIONS(3096), - [anon_sym_do] = ACTIONS(3096), - [anon_sym_for] = ACTIONS(3096), - [anon_sym_return] = ACTIONS(3096), - [anon_sym_break] = ACTIONS(3096), - [anon_sym_continue] = ACTIONS(3096), - [anon_sym_goto] = ACTIONS(3096), - [anon_sym___try] = ACTIONS(3096), - [anon_sym___leave] = ACTIONS(3096), - [anon_sym_not] = ACTIONS(3096), - [anon_sym_compl] = ACTIONS(3096), - [anon_sym_DASH_DASH] = ACTIONS(3094), - [anon_sym_PLUS_PLUS] = ACTIONS(3094), - [anon_sym_sizeof] = ACTIONS(3096), - [anon_sym___alignof__] = ACTIONS(3096), - [anon_sym___alignof] = ACTIONS(3096), - [anon_sym__alignof] = ACTIONS(3096), - [anon_sym_alignof] = ACTIONS(3096), - [anon_sym__Alignof] = ACTIONS(3096), - [anon_sym_offsetof] = ACTIONS(3096), - [anon_sym__Generic] = ACTIONS(3096), - [anon_sym_asm] = ACTIONS(3096), - [anon_sym___asm__] = ACTIONS(3096), - [sym_number_literal] = ACTIONS(3094), - [anon_sym_L_SQUOTE] = ACTIONS(3094), - [anon_sym_u_SQUOTE] = ACTIONS(3094), - [anon_sym_U_SQUOTE] = ACTIONS(3094), - [anon_sym_u8_SQUOTE] = ACTIONS(3094), - [anon_sym_SQUOTE] = ACTIONS(3094), - [anon_sym_L_DQUOTE] = ACTIONS(3094), - [anon_sym_u_DQUOTE] = ACTIONS(3094), - [anon_sym_U_DQUOTE] = ACTIONS(3094), - [anon_sym_u8_DQUOTE] = ACTIONS(3094), - [anon_sym_DQUOTE] = ACTIONS(3094), - [sym_true] = ACTIONS(3096), - [sym_false] = ACTIONS(3096), - [anon_sym_NULL] = ACTIONS(3096), - [anon_sym_nullptr] = ACTIONS(3096), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3096), - [anon_sym_decltype] = ACTIONS(3096), - [anon_sym_virtual] = ACTIONS(3096), - [anon_sym_alignas] = ACTIONS(3096), - [anon_sym_explicit] = ACTIONS(3096), - [anon_sym_typename] = ACTIONS(3096), - [anon_sym_template] = ACTIONS(3096), - [anon_sym_operator] = ACTIONS(3096), - [anon_sym_try] = ACTIONS(3096), - [anon_sym_delete] = ACTIONS(3096), - [anon_sym_throw] = ACTIONS(3096), - [anon_sym_namespace] = ACTIONS(3096), - [anon_sym_using] = ACTIONS(3096), - [anon_sym_static_assert] = ACTIONS(3096), - [anon_sym_concept] = ACTIONS(3096), - [anon_sym_co_return] = ACTIONS(3096), - [anon_sym_co_yield] = ACTIONS(3096), - [anon_sym_catch] = ACTIONS(3096), - [anon_sym_R_DQUOTE] = ACTIONS(3094), - [anon_sym_LR_DQUOTE] = ACTIONS(3094), - [anon_sym_uR_DQUOTE] = ACTIONS(3094), - [anon_sym_UR_DQUOTE] = ACTIONS(3094), - [anon_sym_u8R_DQUOTE] = ACTIONS(3094), - [anon_sym_co_await] = ACTIONS(3096), - [anon_sym_new] = ACTIONS(3096), - [anon_sym_requires] = ACTIONS(3096), - [sym_this] = ACTIONS(3096), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3094), - [sym_semgrep_named_ellipsis] = ACTIONS(3094), + [sym_identifier] = ACTIONS(2355), + [aux_sym_preproc_include_token1] = ACTIONS(2355), + [aux_sym_preproc_def_token1] = ACTIONS(2355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2353), + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2355), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2355), + [sym_preproc_directive] = ACTIONS(2355), + [anon_sym_LPAREN2] = ACTIONS(2353), + [anon_sym_BANG] = ACTIONS(2353), + [anon_sym_TILDE] = ACTIONS(2353), + [anon_sym_DASH] = ACTIONS(2355), + [anon_sym_PLUS] = ACTIONS(2355), + [anon_sym_STAR] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(2353), + [anon_sym_AMP] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2353), + [anon_sym___extension__] = ACTIONS(2355), + [anon_sym_typedef] = ACTIONS(2355), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym___attribute__] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(2353), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), + [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(2353), + [anon_sym_signed] = ACTIONS(2355), + [anon_sym_unsigned] = ACTIONS(2355), + [anon_sym_long] = ACTIONS(2355), + [anon_sym_short] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_static] = ACTIONS(2355), + [anon_sym_register] = ACTIONS(2355), + [anon_sym_inline] = ACTIONS(2355), + [anon_sym___inline] = ACTIONS(2355), + [anon_sym___inline__] = ACTIONS(2355), + [anon_sym___forceinline] = ACTIONS(2355), + [anon_sym_thread_local] = ACTIONS(2355), + [anon_sym___thread] = ACTIONS(2355), + [anon_sym_const] = ACTIONS(2355), + [anon_sym_constexpr] = ACTIONS(2355), + [anon_sym_volatile] = ACTIONS(2355), + [anon_sym_restrict] = ACTIONS(2355), + [anon_sym___restrict__] = ACTIONS(2355), + [anon_sym__Atomic] = ACTIONS(2355), + [anon_sym__Noreturn] = ACTIONS(2355), + [anon_sym_noreturn] = ACTIONS(2355), + [anon_sym_mutable] = ACTIONS(2355), + [anon_sym_constinit] = ACTIONS(2355), + [anon_sym_consteval] = 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___try] = ACTIONS(2355), + [anon_sym___leave] = ACTIONS(2355), + [anon_sym_not] = ACTIONS(2355), + [anon_sym_compl] = ACTIONS(2355), + [anon_sym_DASH_DASH] = ACTIONS(2353), + [anon_sym_PLUS_PLUS] = ACTIONS(2353), + [anon_sym_sizeof] = ACTIONS(2355), + [anon_sym___alignof__] = ACTIONS(2355), + [anon_sym___alignof] = ACTIONS(2355), + [anon_sym__alignof] = ACTIONS(2355), + [anon_sym_alignof] = ACTIONS(2355), + [anon_sym__Alignof] = ACTIONS(2355), + [anon_sym_offsetof] = ACTIONS(2355), + [anon_sym__Generic] = ACTIONS(2355), + [anon_sym_asm] = ACTIONS(2355), + [anon_sym___asm__] = ACTIONS(2355), + [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(2355), + [sym_false] = ACTIONS(2355), + [anon_sym_NULL] = ACTIONS(2355), + [anon_sym_nullptr] = ACTIONS(2355), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2355), + [anon_sym_decltype] = ACTIONS(2355), + [anon_sym_virtual] = ACTIONS(2355), + [anon_sym_alignas] = 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_catch] = ACTIONS(2355), + [anon_sym_R_DQUOTE] = ACTIONS(2353), + [anon_sym_LR_DQUOTE] = ACTIONS(2353), + [anon_sym_uR_DQUOTE] = ACTIONS(2353), + [anon_sym_UR_DQUOTE] = ACTIONS(2353), + [anon_sym_u8R_DQUOTE] = ACTIONS(2353), + [anon_sym_co_await] = ACTIONS(2355), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_requires] = ACTIONS(2355), + [sym_this] = ACTIONS(2355), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2353), + [sym_semgrep_named_ellipsis] = ACTIONS(2353), }, [308] = { - [sym_identifier] = ACTIONS(3101), - [aux_sym_preproc_include_token1] = ACTIONS(3101), - [aux_sym_preproc_def_token1] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3103), - [aux_sym_preproc_if_token1] = ACTIONS(3101), - [aux_sym_preproc_if_token2] = ACTIONS(3101), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3101), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3101), - [aux_sym_preproc_else_token1] = ACTIONS(3101), - [aux_sym_preproc_elif_token1] = ACTIONS(3101), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3101), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3101), - [sym_preproc_directive] = ACTIONS(3101), - [anon_sym_LPAREN2] = ACTIONS(3103), - [anon_sym_BANG] = ACTIONS(3103), - [anon_sym_TILDE] = ACTIONS(3103), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_AMP_AMP] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym___extension__] = ACTIONS(3101), - [anon_sym_typedef] = ACTIONS(3101), - [anon_sym_extern] = ACTIONS(3101), - [anon_sym___attribute__] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(3103), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3103), - [anon_sym___declspec] = ACTIONS(3101), - [anon_sym___based] = ACTIONS(3101), - [anon_sym___cdecl] = ACTIONS(3101), - [anon_sym___clrcall] = ACTIONS(3101), - [anon_sym___stdcall] = ACTIONS(3101), - [anon_sym___fastcall] = ACTIONS(3101), - [anon_sym___thiscall] = ACTIONS(3101), - [anon_sym___vectorcall] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3103), - [anon_sym_signed] = ACTIONS(3101), - [anon_sym_unsigned] = ACTIONS(3101), - [anon_sym_long] = ACTIONS(3101), - [anon_sym_short] = ACTIONS(3101), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_static] = ACTIONS(3101), - [anon_sym_register] = ACTIONS(3101), - [anon_sym_inline] = ACTIONS(3101), - [anon_sym___inline] = ACTIONS(3101), - [anon_sym___inline__] = ACTIONS(3101), - [anon_sym___forceinline] = ACTIONS(3101), - [anon_sym_thread_local] = ACTIONS(3101), - [anon_sym___thread] = ACTIONS(3101), - [anon_sym_const] = ACTIONS(3101), - [anon_sym_constexpr] = ACTIONS(3101), - [anon_sym_volatile] = ACTIONS(3101), - [anon_sym_restrict] = ACTIONS(3101), - [anon_sym___restrict__] = ACTIONS(3101), - [anon_sym__Atomic] = ACTIONS(3101), - [anon_sym__Noreturn] = ACTIONS(3101), - [anon_sym_noreturn] = ACTIONS(3101), - [anon_sym_mutable] = ACTIONS(3101), - [anon_sym_constinit] = ACTIONS(3101), - [anon_sym_consteval] = ACTIONS(3101), - [sym_primitive_type] = ACTIONS(3101), - [anon_sym_enum] = ACTIONS(3101), - [anon_sym_class] = ACTIONS(3101), - [anon_sym_struct] = ACTIONS(3101), - [anon_sym_union] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_else] = ACTIONS(3101), - [anon_sym_switch] = ACTIONS(3101), - [anon_sym_case] = ACTIONS(3101), - [anon_sym_default] = ACTIONS(3101), - [anon_sym_while] = ACTIONS(3101), - [anon_sym_do] = ACTIONS(3101), - [anon_sym_for] = ACTIONS(3101), - [anon_sym_return] = ACTIONS(3101), - [anon_sym_break] = ACTIONS(3101), - [anon_sym_continue] = ACTIONS(3101), - [anon_sym_goto] = ACTIONS(3101), - [anon_sym___try] = ACTIONS(3101), - [anon_sym___leave] = ACTIONS(3101), - [anon_sym_not] = ACTIONS(3101), - [anon_sym_compl] = ACTIONS(3101), - [anon_sym_DASH_DASH] = ACTIONS(3103), - [anon_sym_PLUS_PLUS] = ACTIONS(3103), - [anon_sym_sizeof] = ACTIONS(3101), - [anon_sym___alignof__] = ACTIONS(3101), - [anon_sym___alignof] = ACTIONS(3101), - [anon_sym__alignof] = ACTIONS(3101), - [anon_sym_alignof] = ACTIONS(3101), - [anon_sym__Alignof] = ACTIONS(3101), - [anon_sym_offsetof] = ACTIONS(3101), - [anon_sym__Generic] = ACTIONS(3101), - [anon_sym_asm] = ACTIONS(3101), - [anon_sym___asm__] = ACTIONS(3101), - [sym_number_literal] = ACTIONS(3103), - [anon_sym_L_SQUOTE] = ACTIONS(3103), - [anon_sym_u_SQUOTE] = ACTIONS(3103), - [anon_sym_U_SQUOTE] = ACTIONS(3103), - [anon_sym_u8_SQUOTE] = ACTIONS(3103), - [anon_sym_SQUOTE] = ACTIONS(3103), - [anon_sym_L_DQUOTE] = ACTIONS(3103), - [anon_sym_u_DQUOTE] = ACTIONS(3103), - [anon_sym_U_DQUOTE] = ACTIONS(3103), - [anon_sym_u8_DQUOTE] = ACTIONS(3103), - [anon_sym_DQUOTE] = ACTIONS(3103), - [sym_true] = ACTIONS(3101), - [sym_false] = ACTIONS(3101), - [anon_sym_NULL] = ACTIONS(3101), - [anon_sym_nullptr] = ACTIONS(3101), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3101), - [anon_sym_decltype] = ACTIONS(3101), - [anon_sym_virtual] = ACTIONS(3101), - [anon_sym_alignas] = ACTIONS(3101), - [anon_sym_explicit] = ACTIONS(3101), - [anon_sym_typename] = ACTIONS(3101), - [anon_sym_template] = ACTIONS(3101), - [anon_sym_operator] = ACTIONS(3101), - [anon_sym_try] = ACTIONS(3101), - [anon_sym_delete] = ACTIONS(3101), - [anon_sym_throw] = ACTIONS(3101), - [anon_sym_namespace] = ACTIONS(3101), - [anon_sym_using] = ACTIONS(3101), - [anon_sym_static_assert] = ACTIONS(3101), - [anon_sym_concept] = ACTIONS(3101), - [anon_sym_co_return] = ACTIONS(3101), - [anon_sym_co_yield] = ACTIONS(3101), - [anon_sym_catch] = ACTIONS(3101), - [anon_sym_R_DQUOTE] = ACTIONS(3103), - [anon_sym_LR_DQUOTE] = ACTIONS(3103), - [anon_sym_uR_DQUOTE] = ACTIONS(3103), - [anon_sym_UR_DQUOTE] = ACTIONS(3103), - [anon_sym_u8R_DQUOTE] = ACTIONS(3103), - [anon_sym_co_await] = ACTIONS(3101), - [anon_sym_new] = ACTIONS(3101), - [anon_sym_requires] = ACTIONS(3101), - [sym_this] = ACTIONS(3101), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3103), - [sym_semgrep_named_ellipsis] = ACTIONS(3103), + [sym_catch_clause] = STATE(305), + [aux_sym_constructor_try_statement_repeat1] = STATE(305), + [sym_identifier] = ACTIONS(3046), + [aux_sym_preproc_include_token1] = ACTIONS(3046), + [aux_sym_preproc_def_token1] = ACTIONS(3046), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3046), + [aux_sym_preproc_if_token2] = ACTIONS(3046), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3046), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3046), + [aux_sym_preproc_else_token1] = ACTIONS(3046), + [aux_sym_preproc_elif_token1] = ACTIONS(3046), + [sym_preproc_directive] = ACTIONS(3046), + [anon_sym_LPAREN2] = ACTIONS(3048), + [anon_sym_BANG] = ACTIONS(3048), + [anon_sym_TILDE] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3046), + [anon_sym_PLUS] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(3048), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym_SEMI] = ACTIONS(3048), + [anon_sym___extension__] = ACTIONS(3046), + [anon_sym_typedef] = ACTIONS(3046), + [anon_sym_extern] = ACTIONS(3046), + [anon_sym___attribute__] = ACTIONS(3046), + [anon_sym_COLON_COLON] = ACTIONS(3048), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3048), + [anon_sym___declspec] = ACTIONS(3046), + [anon_sym___based] = ACTIONS(3046), + [anon_sym___cdecl] = ACTIONS(3046), + [anon_sym___clrcall] = ACTIONS(3046), + [anon_sym___stdcall] = ACTIONS(3046), + [anon_sym___fastcall] = ACTIONS(3046), + [anon_sym___thiscall] = ACTIONS(3046), + [anon_sym___vectorcall] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3046), + [anon_sym_unsigned] = ACTIONS(3046), + [anon_sym_long] = ACTIONS(3046), + [anon_sym_short] = ACTIONS(3046), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_static] = ACTIONS(3046), + [anon_sym_register] = ACTIONS(3046), + [anon_sym_inline] = ACTIONS(3046), + [anon_sym___inline] = ACTIONS(3046), + [anon_sym___inline__] = ACTIONS(3046), + [anon_sym___forceinline] = ACTIONS(3046), + [anon_sym_thread_local] = ACTIONS(3046), + [anon_sym___thread] = ACTIONS(3046), + [anon_sym_const] = ACTIONS(3046), + [anon_sym_constexpr] = ACTIONS(3046), + [anon_sym_volatile] = ACTIONS(3046), + [anon_sym_restrict] = ACTIONS(3046), + [anon_sym___restrict__] = ACTIONS(3046), + [anon_sym__Atomic] = ACTIONS(3046), + [anon_sym__Noreturn] = ACTIONS(3046), + [anon_sym_noreturn] = ACTIONS(3046), + [anon_sym_mutable] = ACTIONS(3046), + [anon_sym_constinit] = ACTIONS(3046), + [anon_sym_consteval] = ACTIONS(3046), + [sym_primitive_type] = ACTIONS(3046), + [anon_sym_enum] = ACTIONS(3046), + [anon_sym_class] = ACTIONS(3046), + [anon_sym_struct] = ACTIONS(3046), + [anon_sym_union] = ACTIONS(3046), + [anon_sym_if] = ACTIONS(3046), + [anon_sym_else] = ACTIONS(3046), + [anon_sym_switch] = ACTIONS(3046), + [anon_sym_case] = ACTIONS(3046), + [anon_sym_default] = ACTIONS(3046), + [anon_sym_while] = ACTIONS(3046), + [anon_sym_do] = ACTIONS(3046), + [anon_sym_for] = ACTIONS(3046), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_break] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(3046), + [anon_sym_goto] = ACTIONS(3046), + [anon_sym___try] = ACTIONS(3046), + [anon_sym___leave] = ACTIONS(3046), + [anon_sym_not] = ACTIONS(3046), + [anon_sym_compl] = ACTIONS(3046), + [anon_sym_DASH_DASH] = ACTIONS(3048), + [anon_sym_PLUS_PLUS] = ACTIONS(3048), + [anon_sym_sizeof] = ACTIONS(3046), + [anon_sym___alignof__] = ACTIONS(3046), + [anon_sym___alignof] = ACTIONS(3046), + [anon_sym__alignof] = ACTIONS(3046), + [anon_sym_alignof] = ACTIONS(3046), + [anon_sym__Alignof] = ACTIONS(3046), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3046), + [anon_sym_asm] = ACTIONS(3046), + [anon_sym___asm__] = ACTIONS(3046), + [sym_number_literal] = ACTIONS(3048), + [anon_sym_L_SQUOTE] = ACTIONS(3048), + [anon_sym_u_SQUOTE] = ACTIONS(3048), + [anon_sym_U_SQUOTE] = ACTIONS(3048), + [anon_sym_u8_SQUOTE] = ACTIONS(3048), + [anon_sym_SQUOTE] = ACTIONS(3048), + [anon_sym_L_DQUOTE] = ACTIONS(3048), + [anon_sym_u_DQUOTE] = ACTIONS(3048), + [anon_sym_U_DQUOTE] = ACTIONS(3048), + [anon_sym_u8_DQUOTE] = ACTIONS(3048), + [anon_sym_DQUOTE] = ACTIONS(3048), + [sym_true] = ACTIONS(3046), + [sym_false] = ACTIONS(3046), + [anon_sym_NULL] = ACTIONS(3046), + [anon_sym_nullptr] = ACTIONS(3046), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3046), + [anon_sym_decltype] = ACTIONS(3046), + [anon_sym_virtual] = ACTIONS(3046), + [anon_sym_alignas] = ACTIONS(3046), + [anon_sym_explicit] = ACTIONS(3046), + [anon_sym_typename] = ACTIONS(3046), + [anon_sym_template] = ACTIONS(3046), + [anon_sym_operator] = ACTIONS(3046), + [anon_sym_try] = ACTIONS(3046), + [anon_sym_delete] = ACTIONS(3046), + [anon_sym_throw] = ACTIONS(3046), + [anon_sym_namespace] = ACTIONS(3046), + [anon_sym_using] = ACTIONS(3046), + [anon_sym_static_assert] = ACTIONS(3046), + [anon_sym_concept] = ACTIONS(3046), + [anon_sym_co_return] = ACTIONS(3046), + [anon_sym_co_yield] = ACTIONS(3046), + [anon_sym_catch] = ACTIONS(3077), + [anon_sym_R_DQUOTE] = ACTIONS(3048), + [anon_sym_LR_DQUOTE] = ACTIONS(3048), + [anon_sym_uR_DQUOTE] = ACTIONS(3048), + [anon_sym_UR_DQUOTE] = ACTIONS(3048), + [anon_sym_u8R_DQUOTE] = ACTIONS(3048), + [anon_sym_co_await] = ACTIONS(3046), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_requires] = ACTIONS(3046), + [sym_this] = ACTIONS(3046), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3048), + [sym_semgrep_named_ellipsis] = ACTIONS(3048), }, [309] = { - [sym_identifier] = ACTIONS(3105), - [aux_sym_preproc_include_token1] = ACTIONS(3105), - [aux_sym_preproc_def_token1] = ACTIONS(3105), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3107), - [aux_sym_preproc_if_token1] = ACTIONS(3105), - [aux_sym_preproc_if_token2] = ACTIONS(3105), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3105), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3105), - [aux_sym_preproc_else_token1] = ACTIONS(3105), - [aux_sym_preproc_elif_token1] = ACTIONS(3105), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3105), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3105), - [sym_preproc_directive] = ACTIONS(3105), - [anon_sym_LPAREN2] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3107), - [anon_sym_TILDE] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(3105), - [anon_sym_PLUS] = ACTIONS(3105), - [anon_sym_STAR] = ACTIONS(3107), - [anon_sym_AMP_AMP] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym___extension__] = ACTIONS(3105), - [anon_sym_typedef] = ACTIONS(3105), - [anon_sym_extern] = ACTIONS(3105), - [anon_sym___attribute__] = ACTIONS(3105), - [anon_sym_COLON_COLON] = ACTIONS(3107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3107), - [anon_sym___declspec] = ACTIONS(3105), - [anon_sym___based] = ACTIONS(3105), - [anon_sym___cdecl] = ACTIONS(3105), - [anon_sym___clrcall] = ACTIONS(3105), - [anon_sym___stdcall] = ACTIONS(3105), - [anon_sym___fastcall] = ACTIONS(3105), - [anon_sym___thiscall] = ACTIONS(3105), - [anon_sym___vectorcall] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(3107), - [anon_sym_signed] = ACTIONS(3105), - [anon_sym_unsigned] = ACTIONS(3105), - [anon_sym_long] = ACTIONS(3105), - [anon_sym_short] = ACTIONS(3105), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_static] = ACTIONS(3105), - [anon_sym_register] = ACTIONS(3105), - [anon_sym_inline] = ACTIONS(3105), - [anon_sym___inline] = ACTIONS(3105), - [anon_sym___inline__] = ACTIONS(3105), - [anon_sym___forceinline] = ACTIONS(3105), - [anon_sym_thread_local] = ACTIONS(3105), - [anon_sym___thread] = ACTIONS(3105), - [anon_sym_const] = ACTIONS(3105), - [anon_sym_constexpr] = ACTIONS(3105), - [anon_sym_volatile] = ACTIONS(3105), - [anon_sym_restrict] = ACTIONS(3105), - [anon_sym___restrict__] = ACTIONS(3105), - [anon_sym__Atomic] = ACTIONS(3105), - [anon_sym__Noreturn] = ACTIONS(3105), - [anon_sym_noreturn] = ACTIONS(3105), - [anon_sym_mutable] = ACTIONS(3105), - [anon_sym_constinit] = ACTIONS(3105), - [anon_sym_consteval] = ACTIONS(3105), - [sym_primitive_type] = ACTIONS(3105), - [anon_sym_enum] = ACTIONS(3105), - [anon_sym_class] = ACTIONS(3105), - [anon_sym_struct] = ACTIONS(3105), - [anon_sym_union] = ACTIONS(3105), - [anon_sym_if] = ACTIONS(3105), - [anon_sym_else] = ACTIONS(3105), - [anon_sym_switch] = ACTIONS(3105), - [anon_sym_case] = ACTIONS(3105), - [anon_sym_default] = ACTIONS(3105), - [anon_sym_while] = ACTIONS(3105), - [anon_sym_do] = ACTIONS(3105), - [anon_sym_for] = ACTIONS(3105), - [anon_sym_return] = ACTIONS(3105), - [anon_sym_break] = ACTIONS(3105), - [anon_sym_continue] = ACTIONS(3105), - [anon_sym_goto] = ACTIONS(3105), - [anon_sym___try] = ACTIONS(3105), - [anon_sym___leave] = ACTIONS(3105), - [anon_sym_not] = ACTIONS(3105), - [anon_sym_compl] = ACTIONS(3105), - [anon_sym_DASH_DASH] = ACTIONS(3107), - [anon_sym_PLUS_PLUS] = ACTIONS(3107), - [anon_sym_sizeof] = ACTIONS(3105), - [anon_sym___alignof__] = ACTIONS(3105), - [anon_sym___alignof] = ACTIONS(3105), - [anon_sym__alignof] = ACTIONS(3105), - [anon_sym_alignof] = ACTIONS(3105), - [anon_sym__Alignof] = ACTIONS(3105), - [anon_sym_offsetof] = ACTIONS(3105), - [anon_sym__Generic] = ACTIONS(3105), - [anon_sym_asm] = ACTIONS(3105), - [anon_sym___asm__] = ACTIONS(3105), - [sym_number_literal] = ACTIONS(3107), - [anon_sym_L_SQUOTE] = ACTIONS(3107), - [anon_sym_u_SQUOTE] = ACTIONS(3107), - [anon_sym_U_SQUOTE] = ACTIONS(3107), - [anon_sym_u8_SQUOTE] = ACTIONS(3107), - [anon_sym_SQUOTE] = ACTIONS(3107), - [anon_sym_L_DQUOTE] = ACTIONS(3107), - [anon_sym_u_DQUOTE] = ACTIONS(3107), - [anon_sym_U_DQUOTE] = ACTIONS(3107), - [anon_sym_u8_DQUOTE] = ACTIONS(3107), - [anon_sym_DQUOTE] = ACTIONS(3107), - [sym_true] = ACTIONS(3105), - [sym_false] = ACTIONS(3105), - [anon_sym_NULL] = ACTIONS(3105), - [anon_sym_nullptr] = ACTIONS(3105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3105), - [anon_sym_decltype] = ACTIONS(3105), - [anon_sym_virtual] = ACTIONS(3105), - [anon_sym_alignas] = ACTIONS(3105), - [anon_sym_explicit] = ACTIONS(3105), - [anon_sym_typename] = ACTIONS(3105), - [anon_sym_template] = ACTIONS(3105), - [anon_sym_operator] = ACTIONS(3105), - [anon_sym_try] = ACTIONS(3105), - [anon_sym_delete] = ACTIONS(3105), - [anon_sym_throw] = ACTIONS(3105), - [anon_sym_namespace] = ACTIONS(3105), - [anon_sym_using] = ACTIONS(3105), - [anon_sym_static_assert] = ACTIONS(3105), - [anon_sym_concept] = ACTIONS(3105), - [anon_sym_co_return] = ACTIONS(3105), - [anon_sym_co_yield] = ACTIONS(3105), - [anon_sym_R_DQUOTE] = ACTIONS(3107), - [anon_sym_LR_DQUOTE] = ACTIONS(3107), - [anon_sym_uR_DQUOTE] = ACTIONS(3107), - [anon_sym_UR_DQUOTE] = ACTIONS(3107), - [anon_sym_u8R_DQUOTE] = ACTIONS(3107), - [anon_sym_co_await] = ACTIONS(3105), - [anon_sym_new] = ACTIONS(3105), - [anon_sym_requires] = ACTIONS(3105), - [sym_this] = ACTIONS(3105), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3107), - [sym_semgrep_named_ellipsis] = ACTIONS(3107), + [sym_identifier] = ACTIONS(3079), + [aux_sym_preproc_include_token1] = ACTIONS(3079), + [aux_sym_preproc_def_token1] = ACTIONS(3079), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3081), + [aux_sym_preproc_if_token1] = ACTIONS(3079), + [aux_sym_preproc_if_token2] = ACTIONS(3079), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3079), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3079), + [aux_sym_preproc_else_token1] = ACTIONS(3079), + [aux_sym_preproc_elif_token1] = ACTIONS(3079), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3079), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3079), + [sym_preproc_directive] = ACTIONS(3079), + [anon_sym_LPAREN2] = ACTIONS(3081), + [anon_sym_BANG] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(3079), + [anon_sym_STAR] = ACTIONS(3081), + [anon_sym_AMP_AMP] = ACTIONS(3081), + [anon_sym_AMP] = ACTIONS(3079), + [anon_sym_SEMI] = ACTIONS(3081), + [anon_sym___extension__] = ACTIONS(3079), + [anon_sym_typedef] = ACTIONS(3079), + [anon_sym_extern] = ACTIONS(3079), + [anon_sym___attribute__] = ACTIONS(3079), + [anon_sym_COLON_COLON] = ACTIONS(3081), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3081), + [anon_sym___declspec] = ACTIONS(3079), + [anon_sym___based] = ACTIONS(3079), + [anon_sym___cdecl] = ACTIONS(3079), + [anon_sym___clrcall] = ACTIONS(3079), + [anon_sym___stdcall] = ACTIONS(3079), + [anon_sym___fastcall] = ACTIONS(3079), + [anon_sym___thiscall] = ACTIONS(3079), + [anon_sym___vectorcall] = ACTIONS(3079), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_signed] = ACTIONS(3079), + [anon_sym_unsigned] = ACTIONS(3079), + [anon_sym_long] = ACTIONS(3079), + [anon_sym_short] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3079), + [anon_sym_static] = ACTIONS(3079), + [anon_sym_register] = ACTIONS(3079), + [anon_sym_inline] = ACTIONS(3079), + [anon_sym___inline] = ACTIONS(3079), + [anon_sym___inline__] = ACTIONS(3079), + [anon_sym___forceinline] = ACTIONS(3079), + [anon_sym_thread_local] = ACTIONS(3079), + [anon_sym___thread] = ACTIONS(3079), + [anon_sym_const] = ACTIONS(3079), + [anon_sym_constexpr] = ACTIONS(3079), + [anon_sym_volatile] = ACTIONS(3079), + [anon_sym_restrict] = ACTIONS(3079), + [anon_sym___restrict__] = ACTIONS(3079), + [anon_sym__Atomic] = ACTIONS(3079), + [anon_sym__Noreturn] = ACTIONS(3079), + [anon_sym_noreturn] = ACTIONS(3079), + [anon_sym_mutable] = ACTIONS(3079), + [anon_sym_constinit] = ACTIONS(3079), + [anon_sym_consteval] = ACTIONS(3079), + [sym_primitive_type] = ACTIONS(3079), + [anon_sym_enum] = ACTIONS(3079), + [anon_sym_class] = ACTIONS(3079), + [anon_sym_struct] = ACTIONS(3079), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_if] = ACTIONS(3079), + [anon_sym_else] = ACTIONS(3079), + [anon_sym_switch] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3079), + [anon_sym_default] = ACTIONS(3079), + [anon_sym_while] = ACTIONS(3079), + [anon_sym_do] = ACTIONS(3079), + [anon_sym_for] = ACTIONS(3079), + [anon_sym_return] = ACTIONS(3079), + [anon_sym_break] = ACTIONS(3079), + [anon_sym_continue] = ACTIONS(3079), + [anon_sym_goto] = ACTIONS(3079), + [anon_sym___try] = ACTIONS(3079), + [anon_sym___leave] = ACTIONS(3079), + [anon_sym_not] = ACTIONS(3079), + [anon_sym_compl] = ACTIONS(3079), + [anon_sym_DASH_DASH] = ACTIONS(3081), + [anon_sym_PLUS_PLUS] = ACTIONS(3081), + [anon_sym_sizeof] = ACTIONS(3079), + [anon_sym___alignof__] = ACTIONS(3079), + [anon_sym___alignof] = ACTIONS(3079), + [anon_sym__alignof] = ACTIONS(3079), + [anon_sym_alignof] = ACTIONS(3079), + [anon_sym__Alignof] = ACTIONS(3079), + [anon_sym_offsetof] = ACTIONS(3079), + [anon_sym__Generic] = ACTIONS(3079), + [anon_sym_asm] = ACTIONS(3079), + [anon_sym___asm__] = ACTIONS(3079), + [sym_number_literal] = ACTIONS(3081), + [anon_sym_L_SQUOTE] = ACTIONS(3081), + [anon_sym_u_SQUOTE] = ACTIONS(3081), + [anon_sym_U_SQUOTE] = ACTIONS(3081), + [anon_sym_u8_SQUOTE] = ACTIONS(3081), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_L_DQUOTE] = ACTIONS(3081), + [anon_sym_u_DQUOTE] = ACTIONS(3081), + [anon_sym_U_DQUOTE] = ACTIONS(3081), + [anon_sym_u8_DQUOTE] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(3081), + [sym_true] = ACTIONS(3079), + [sym_false] = ACTIONS(3079), + [anon_sym_NULL] = ACTIONS(3079), + [anon_sym_nullptr] = ACTIONS(3079), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3079), + [anon_sym_decltype] = ACTIONS(3079), + [anon_sym_virtual] = ACTIONS(3079), + [anon_sym_alignas] = ACTIONS(3079), + [anon_sym_explicit] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3079), + [anon_sym_template] = ACTIONS(3079), + [anon_sym_operator] = ACTIONS(3079), + [anon_sym_try] = ACTIONS(3079), + [anon_sym_delete] = ACTIONS(3079), + [anon_sym_throw] = ACTIONS(3079), + [anon_sym_namespace] = ACTIONS(3079), + [anon_sym_using] = ACTIONS(3079), + [anon_sym_static_assert] = ACTIONS(3079), + [anon_sym_concept] = ACTIONS(3079), + [anon_sym_co_return] = ACTIONS(3079), + [anon_sym_co_yield] = ACTIONS(3079), + [anon_sym_R_DQUOTE] = ACTIONS(3081), + [anon_sym_LR_DQUOTE] = ACTIONS(3081), + [anon_sym_uR_DQUOTE] = ACTIONS(3081), + [anon_sym_UR_DQUOTE] = ACTIONS(3081), + [anon_sym_u8R_DQUOTE] = ACTIONS(3081), + [anon_sym_co_await] = ACTIONS(3079), + [anon_sym_new] = ACTIONS(3079), + [anon_sym_requires] = ACTIONS(3079), + [sym_this] = ACTIONS(3079), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3081), + [sym_semgrep_named_ellipsis] = ACTIONS(3081), }, [310] = { - [sym_identifier] = ACTIONS(3109), - [aux_sym_preproc_include_token1] = ACTIONS(3109), - [aux_sym_preproc_def_token1] = ACTIONS(3109), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3111), - [aux_sym_preproc_if_token1] = ACTIONS(3109), - [aux_sym_preproc_if_token2] = ACTIONS(3109), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3109), - [aux_sym_preproc_else_token1] = ACTIONS(3109), - [aux_sym_preproc_elif_token1] = ACTIONS(3109), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3109), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3109), - [sym_preproc_directive] = ACTIONS(3109), - [anon_sym_LPAREN2] = ACTIONS(3111), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_TILDE] = ACTIONS(3111), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_AMP_AMP] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym___extension__] = ACTIONS(3109), - [anon_sym_typedef] = ACTIONS(3109), - [anon_sym_extern] = ACTIONS(3109), - [anon_sym___attribute__] = ACTIONS(3109), - [anon_sym_COLON_COLON] = ACTIONS(3111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3111), - [anon_sym___declspec] = ACTIONS(3109), - [anon_sym___based] = ACTIONS(3109), - [anon_sym___cdecl] = ACTIONS(3109), - [anon_sym___clrcall] = ACTIONS(3109), - [anon_sym___stdcall] = ACTIONS(3109), - [anon_sym___fastcall] = ACTIONS(3109), - [anon_sym___thiscall] = ACTIONS(3109), - [anon_sym___vectorcall] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3111), - [anon_sym_signed] = ACTIONS(3109), - [anon_sym_unsigned] = ACTIONS(3109), - [anon_sym_long] = ACTIONS(3109), - [anon_sym_short] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3109), - [anon_sym_static] = ACTIONS(3109), - [anon_sym_register] = ACTIONS(3109), - [anon_sym_inline] = ACTIONS(3109), - [anon_sym___inline] = ACTIONS(3109), - [anon_sym___inline__] = ACTIONS(3109), - [anon_sym___forceinline] = ACTIONS(3109), - [anon_sym_thread_local] = ACTIONS(3109), - [anon_sym___thread] = ACTIONS(3109), - [anon_sym_const] = ACTIONS(3109), - [anon_sym_constexpr] = ACTIONS(3109), - [anon_sym_volatile] = ACTIONS(3109), - [anon_sym_restrict] = ACTIONS(3109), - [anon_sym___restrict__] = ACTIONS(3109), - [anon_sym__Atomic] = ACTIONS(3109), - [anon_sym__Noreturn] = ACTIONS(3109), - [anon_sym_noreturn] = ACTIONS(3109), - [anon_sym_mutable] = ACTIONS(3109), - [anon_sym_constinit] = ACTIONS(3109), - [anon_sym_consteval] = ACTIONS(3109), - [sym_primitive_type] = ACTIONS(3109), - [anon_sym_enum] = ACTIONS(3109), - [anon_sym_class] = ACTIONS(3109), - [anon_sym_struct] = ACTIONS(3109), - [anon_sym_union] = ACTIONS(3109), - [anon_sym_if] = ACTIONS(3109), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_switch] = ACTIONS(3109), - [anon_sym_case] = ACTIONS(3109), - [anon_sym_default] = ACTIONS(3109), - [anon_sym_while] = ACTIONS(3109), - [anon_sym_do] = ACTIONS(3109), - [anon_sym_for] = ACTIONS(3109), - [anon_sym_return] = ACTIONS(3109), - [anon_sym_break] = ACTIONS(3109), - [anon_sym_continue] = ACTIONS(3109), - [anon_sym_goto] = ACTIONS(3109), - [anon_sym___try] = ACTIONS(3109), - [anon_sym___leave] = ACTIONS(3109), - [anon_sym_not] = ACTIONS(3109), - [anon_sym_compl] = ACTIONS(3109), - [anon_sym_DASH_DASH] = ACTIONS(3111), - [anon_sym_PLUS_PLUS] = ACTIONS(3111), - [anon_sym_sizeof] = ACTIONS(3109), - [anon_sym___alignof__] = ACTIONS(3109), - [anon_sym___alignof] = ACTIONS(3109), - [anon_sym__alignof] = ACTIONS(3109), - [anon_sym_alignof] = ACTIONS(3109), - [anon_sym__Alignof] = ACTIONS(3109), - [anon_sym_offsetof] = ACTIONS(3109), - [anon_sym__Generic] = ACTIONS(3109), - [anon_sym_asm] = ACTIONS(3109), - [anon_sym___asm__] = ACTIONS(3109), - [sym_number_literal] = ACTIONS(3111), - [anon_sym_L_SQUOTE] = ACTIONS(3111), - [anon_sym_u_SQUOTE] = ACTIONS(3111), - [anon_sym_U_SQUOTE] = ACTIONS(3111), - [anon_sym_u8_SQUOTE] = ACTIONS(3111), - [anon_sym_SQUOTE] = ACTIONS(3111), - [anon_sym_L_DQUOTE] = ACTIONS(3111), - [anon_sym_u_DQUOTE] = ACTIONS(3111), - [anon_sym_U_DQUOTE] = ACTIONS(3111), - [anon_sym_u8_DQUOTE] = ACTIONS(3111), - [anon_sym_DQUOTE] = ACTIONS(3111), - [sym_true] = ACTIONS(3109), - [sym_false] = ACTIONS(3109), - [anon_sym_NULL] = ACTIONS(3109), - [anon_sym_nullptr] = ACTIONS(3109), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3109), - [anon_sym_decltype] = ACTIONS(3109), - [anon_sym_virtual] = ACTIONS(3109), - [anon_sym_alignas] = ACTIONS(3109), - [anon_sym_explicit] = ACTIONS(3109), - [anon_sym_typename] = ACTIONS(3109), - [anon_sym_template] = ACTIONS(3109), - [anon_sym_operator] = ACTIONS(3109), - [anon_sym_try] = ACTIONS(3109), - [anon_sym_delete] = ACTIONS(3109), - [anon_sym_throw] = ACTIONS(3109), - [anon_sym_namespace] = ACTIONS(3109), - [anon_sym_using] = ACTIONS(3109), - [anon_sym_static_assert] = ACTIONS(3109), - [anon_sym_concept] = ACTIONS(3109), - [anon_sym_co_return] = ACTIONS(3109), - [anon_sym_co_yield] = ACTIONS(3109), - [anon_sym_R_DQUOTE] = ACTIONS(3111), - [anon_sym_LR_DQUOTE] = ACTIONS(3111), - [anon_sym_uR_DQUOTE] = ACTIONS(3111), - [anon_sym_UR_DQUOTE] = ACTIONS(3111), - [anon_sym_u8R_DQUOTE] = ACTIONS(3111), - [anon_sym_co_await] = ACTIONS(3109), - [anon_sym_new] = ACTIONS(3109), - [anon_sym_requires] = ACTIONS(3109), - [sym_this] = ACTIONS(3109), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3111), - [sym_semgrep_named_ellipsis] = ACTIONS(3111), + [sym_catch_clause] = STATE(305), + [aux_sym_constructor_try_statement_repeat1] = STATE(305), + [sym_identifier] = ACTIONS(3056), + [aux_sym_preproc_include_token1] = ACTIONS(3056), + [aux_sym_preproc_def_token1] = ACTIONS(3056), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3058), + [aux_sym_preproc_if_token1] = ACTIONS(3056), + [aux_sym_preproc_if_token2] = ACTIONS(3056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3056), + [aux_sym_preproc_else_token1] = ACTIONS(3056), + [aux_sym_preproc_elif_token1] = ACTIONS(3056), + [sym_preproc_directive] = ACTIONS(3056), + [anon_sym_LPAREN2] = ACTIONS(3058), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3058), + [anon_sym_DASH] = ACTIONS(3056), + [anon_sym_PLUS] = ACTIONS(3056), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_AMP_AMP] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3056), + [anon_sym_SEMI] = ACTIONS(3058), + [anon_sym___extension__] = ACTIONS(3056), + [anon_sym_typedef] = ACTIONS(3056), + [anon_sym_extern] = ACTIONS(3056), + [anon_sym___attribute__] = ACTIONS(3056), + [anon_sym_COLON_COLON] = ACTIONS(3058), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3058), + [anon_sym___declspec] = ACTIONS(3056), + [anon_sym___based] = ACTIONS(3056), + [anon_sym___cdecl] = ACTIONS(3056), + [anon_sym___clrcall] = ACTIONS(3056), + [anon_sym___stdcall] = ACTIONS(3056), + [anon_sym___fastcall] = ACTIONS(3056), + [anon_sym___thiscall] = ACTIONS(3056), + [anon_sym___vectorcall] = ACTIONS(3056), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_signed] = ACTIONS(3056), + [anon_sym_unsigned] = ACTIONS(3056), + [anon_sym_long] = ACTIONS(3056), + [anon_sym_short] = ACTIONS(3056), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_static] = ACTIONS(3056), + [anon_sym_register] = ACTIONS(3056), + [anon_sym_inline] = ACTIONS(3056), + [anon_sym___inline] = ACTIONS(3056), + [anon_sym___inline__] = ACTIONS(3056), + [anon_sym___forceinline] = ACTIONS(3056), + [anon_sym_thread_local] = ACTIONS(3056), + [anon_sym___thread] = ACTIONS(3056), + [anon_sym_const] = ACTIONS(3056), + [anon_sym_constexpr] = ACTIONS(3056), + [anon_sym_volatile] = ACTIONS(3056), + [anon_sym_restrict] = ACTIONS(3056), + [anon_sym___restrict__] = ACTIONS(3056), + [anon_sym__Atomic] = ACTIONS(3056), + [anon_sym__Noreturn] = ACTIONS(3056), + [anon_sym_noreturn] = ACTIONS(3056), + [anon_sym_mutable] = ACTIONS(3056), + [anon_sym_constinit] = ACTIONS(3056), + [anon_sym_consteval] = ACTIONS(3056), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3056), + [anon_sym_class] = ACTIONS(3056), + [anon_sym_struct] = ACTIONS(3056), + [anon_sym_union] = ACTIONS(3056), + [anon_sym_if] = ACTIONS(3056), + [anon_sym_switch] = ACTIONS(3056), + [anon_sym_case] = ACTIONS(3056), + [anon_sym_default] = ACTIONS(3056), + [anon_sym_while] = ACTIONS(3056), + [anon_sym_do] = ACTIONS(3056), + [anon_sym_for] = ACTIONS(3056), + [anon_sym_return] = ACTIONS(3056), + [anon_sym_break] = ACTIONS(3056), + [anon_sym_continue] = ACTIONS(3056), + [anon_sym_goto] = ACTIONS(3056), + [anon_sym___try] = ACTIONS(3056), + [anon_sym___leave] = ACTIONS(3056), + [anon_sym_not] = ACTIONS(3056), + [anon_sym_compl] = ACTIONS(3056), + [anon_sym_DASH_DASH] = ACTIONS(3058), + [anon_sym_PLUS_PLUS] = ACTIONS(3058), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3056), + [anon_sym___alignof] = ACTIONS(3056), + [anon_sym__alignof] = ACTIONS(3056), + [anon_sym_alignof] = ACTIONS(3056), + [anon_sym__Alignof] = ACTIONS(3056), + [anon_sym_offsetof] = ACTIONS(3056), + [anon_sym__Generic] = ACTIONS(3056), + [anon_sym_asm] = ACTIONS(3056), + [anon_sym___asm__] = ACTIONS(3056), + [sym_number_literal] = ACTIONS(3058), + [anon_sym_L_SQUOTE] = ACTIONS(3058), + [anon_sym_u_SQUOTE] = ACTIONS(3058), + [anon_sym_U_SQUOTE] = ACTIONS(3058), + [anon_sym_u8_SQUOTE] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [anon_sym_NULL] = ACTIONS(3056), + [anon_sym_nullptr] = ACTIONS(3056), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3056), + [anon_sym_decltype] = ACTIONS(3056), + [anon_sym_virtual] = ACTIONS(3056), + [anon_sym_alignas] = ACTIONS(3056), + [anon_sym_explicit] = ACTIONS(3056), + [anon_sym_typename] = ACTIONS(3056), + [anon_sym_template] = ACTIONS(3056), + [anon_sym_operator] = ACTIONS(3056), + [anon_sym_try] = ACTIONS(3056), + [anon_sym_delete] = ACTIONS(3056), + [anon_sym_throw] = ACTIONS(3056), + [anon_sym_namespace] = ACTIONS(3056), + [anon_sym_using] = ACTIONS(3056), + [anon_sym_static_assert] = ACTIONS(3056), + [anon_sym_concept] = ACTIONS(3056), + [anon_sym_co_return] = ACTIONS(3056), + [anon_sym_co_yield] = ACTIONS(3056), + [anon_sym_catch] = ACTIONS(3077), + [anon_sym_R_DQUOTE] = ACTIONS(3058), + [anon_sym_LR_DQUOTE] = ACTIONS(3058), + [anon_sym_uR_DQUOTE] = ACTIONS(3058), + [anon_sym_UR_DQUOTE] = ACTIONS(3058), + [anon_sym_u8R_DQUOTE] = ACTIONS(3058), + [anon_sym_co_await] = ACTIONS(3056), + [anon_sym_new] = ACTIONS(3056), + [anon_sym_requires] = ACTIONS(3056), + [sym_this] = ACTIONS(3056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3058), + [sym_semgrep_named_ellipsis] = ACTIONS(3058), }, [311] = { - [sym_expression] = STATE(5789), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9924), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [sym_identifier] = ACTIONS(3083), + [aux_sym_preproc_include_token1] = ACTIONS(3083), + [aux_sym_preproc_def_token1] = ACTIONS(3083), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3085), + [aux_sym_preproc_if_token1] = ACTIONS(3083), + [aux_sym_preproc_if_token2] = ACTIONS(3083), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3083), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3083), + [aux_sym_preproc_else_token1] = ACTIONS(3083), + [aux_sym_preproc_elif_token1] = ACTIONS(3083), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3083), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3083), + [sym_preproc_directive] = ACTIONS(3083), + [anon_sym_LPAREN2] = ACTIONS(3085), + [anon_sym_BANG] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3085), + [anon_sym_DASH] = ACTIONS(3083), + [anon_sym_PLUS] = ACTIONS(3083), + [anon_sym_STAR] = ACTIONS(3085), + [anon_sym_AMP_AMP] = ACTIONS(3085), + [anon_sym_AMP] = ACTIONS(3083), + [anon_sym_SEMI] = ACTIONS(3085), + [anon_sym___extension__] = ACTIONS(3083), + [anon_sym_typedef] = ACTIONS(3083), + [anon_sym_extern] = ACTIONS(3083), + [anon_sym___attribute__] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(3085), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3085), + [anon_sym___declspec] = ACTIONS(3083), + [anon_sym___based] = ACTIONS(3083), + [anon_sym___cdecl] = ACTIONS(3083), + [anon_sym___clrcall] = ACTIONS(3083), + [anon_sym___stdcall] = ACTIONS(3083), + [anon_sym___fastcall] = ACTIONS(3083), + [anon_sym___thiscall] = ACTIONS(3083), + [anon_sym___vectorcall] = ACTIONS(3083), + [anon_sym_LBRACE] = ACTIONS(3085), + [anon_sym_signed] = ACTIONS(3083), + [anon_sym_unsigned] = ACTIONS(3083), + [anon_sym_long] = ACTIONS(3083), + [anon_sym_short] = ACTIONS(3083), + [anon_sym_LBRACK] = ACTIONS(3083), + [anon_sym_static] = ACTIONS(3083), + [anon_sym_register] = ACTIONS(3083), + [anon_sym_inline] = ACTIONS(3083), + [anon_sym___inline] = ACTIONS(3083), + [anon_sym___inline__] = ACTIONS(3083), + [anon_sym___forceinline] = ACTIONS(3083), + [anon_sym_thread_local] = ACTIONS(3083), + [anon_sym___thread] = ACTIONS(3083), + [anon_sym_const] = ACTIONS(3083), + [anon_sym_constexpr] = ACTIONS(3083), + [anon_sym_volatile] = ACTIONS(3083), + [anon_sym_restrict] = ACTIONS(3083), + [anon_sym___restrict__] = ACTIONS(3083), + [anon_sym__Atomic] = ACTIONS(3083), + [anon_sym__Noreturn] = ACTIONS(3083), + [anon_sym_noreturn] = ACTIONS(3083), + [anon_sym_mutable] = ACTIONS(3083), + [anon_sym_constinit] = ACTIONS(3083), + [anon_sym_consteval] = ACTIONS(3083), + [sym_primitive_type] = ACTIONS(3083), + [anon_sym_enum] = ACTIONS(3083), + [anon_sym_class] = ACTIONS(3083), + [anon_sym_struct] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(3083), + [anon_sym_if] = ACTIONS(3083), + [anon_sym_else] = ACTIONS(3083), + [anon_sym_switch] = ACTIONS(3083), + [anon_sym_case] = ACTIONS(3083), + [anon_sym_default] = ACTIONS(3083), + [anon_sym_while] = ACTIONS(3083), + [anon_sym_do] = ACTIONS(3083), + [anon_sym_for] = ACTIONS(3083), + [anon_sym_return] = ACTIONS(3083), + [anon_sym_break] = ACTIONS(3083), + [anon_sym_continue] = ACTIONS(3083), + [anon_sym_goto] = ACTIONS(3083), + [anon_sym___try] = ACTIONS(3083), + [anon_sym___leave] = ACTIONS(3083), + [anon_sym_not] = ACTIONS(3083), + [anon_sym_compl] = ACTIONS(3083), + [anon_sym_DASH_DASH] = ACTIONS(3085), + [anon_sym_PLUS_PLUS] = ACTIONS(3085), + [anon_sym_sizeof] = ACTIONS(3083), + [anon_sym___alignof__] = ACTIONS(3083), + [anon_sym___alignof] = ACTIONS(3083), + [anon_sym__alignof] = ACTIONS(3083), + [anon_sym_alignof] = ACTIONS(3083), + [anon_sym__Alignof] = ACTIONS(3083), + [anon_sym_offsetof] = ACTIONS(3083), + [anon_sym__Generic] = ACTIONS(3083), + [anon_sym_asm] = ACTIONS(3083), + [anon_sym___asm__] = ACTIONS(3083), + [sym_number_literal] = ACTIONS(3085), + [anon_sym_L_SQUOTE] = ACTIONS(3085), + [anon_sym_u_SQUOTE] = ACTIONS(3085), + [anon_sym_U_SQUOTE] = ACTIONS(3085), + [anon_sym_u8_SQUOTE] = ACTIONS(3085), + [anon_sym_SQUOTE] = ACTIONS(3085), + [anon_sym_L_DQUOTE] = ACTIONS(3085), + [anon_sym_u_DQUOTE] = ACTIONS(3085), + [anon_sym_U_DQUOTE] = ACTIONS(3085), + [anon_sym_u8_DQUOTE] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(3085), + [sym_true] = ACTIONS(3083), + [sym_false] = ACTIONS(3083), + [anon_sym_NULL] = ACTIONS(3083), + [anon_sym_nullptr] = ACTIONS(3083), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3083), + [anon_sym_decltype] = ACTIONS(3083), + [anon_sym_virtual] = ACTIONS(3083), + [anon_sym_alignas] = ACTIONS(3083), + [anon_sym_explicit] = ACTIONS(3083), + [anon_sym_typename] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(3083), + [anon_sym_operator] = ACTIONS(3083), + [anon_sym_try] = ACTIONS(3083), + [anon_sym_delete] = ACTIONS(3083), + [anon_sym_throw] = ACTIONS(3083), + [anon_sym_namespace] = ACTIONS(3083), + [anon_sym_using] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(3083), + [anon_sym_concept] = ACTIONS(3083), + [anon_sym_co_return] = ACTIONS(3083), + [anon_sym_co_yield] = ACTIONS(3083), + [anon_sym_R_DQUOTE] = ACTIONS(3085), + [anon_sym_LR_DQUOTE] = ACTIONS(3085), + [anon_sym_uR_DQUOTE] = ACTIONS(3085), + [anon_sym_UR_DQUOTE] = ACTIONS(3085), + [anon_sym_u8R_DQUOTE] = ACTIONS(3085), + [anon_sym_co_await] = ACTIONS(3083), + [anon_sym_new] = ACTIONS(3083), + [anon_sym_requires] = ACTIONS(3083), + [sym_this] = ACTIONS(3083), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3085), + [sym_semgrep_named_ellipsis] = ACTIONS(3085), + }, + [312] = { + [sym_identifier] = ACTIONS(3087), + [aux_sym_preproc_include_token1] = ACTIONS(3087), + [aux_sym_preproc_def_token1] = ACTIONS(3087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [aux_sym_preproc_if_token1] = ACTIONS(3087), + [aux_sym_preproc_if_token2] = ACTIONS(3087), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3087), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3087), + [aux_sym_preproc_else_token1] = ACTIONS(3087), + [aux_sym_preproc_elif_token1] = ACTIONS(3087), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3087), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3087), + [sym_preproc_directive] = ACTIONS(3087), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_BANG] = ACTIONS(3089), + [anon_sym_TILDE] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3087), + [anon_sym_STAR] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_typedef] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3089), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3089), + [anon_sym___declspec] = ACTIONS(3087), + [anon_sym___based] = ACTIONS(3087), + [anon_sym___cdecl] = ACTIONS(3087), + [anon_sym___clrcall] = ACTIONS(3087), + [anon_sym___stdcall] = ACTIONS(3087), + [anon_sym___fastcall] = ACTIONS(3087), + [anon_sym___thiscall] = ACTIONS(3087), + [anon_sym___vectorcall] = ACTIONS(3087), + [anon_sym_LBRACE] = ACTIONS(3089), + [anon_sym_signed] = ACTIONS(3087), + [anon_sym_unsigned] = ACTIONS(3087), + [anon_sym_long] = ACTIONS(3087), + [anon_sym_short] = ACTIONS(3087), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_register] = ACTIONS(3087), + [anon_sym_inline] = ACTIONS(3087), + [anon_sym___inline] = ACTIONS(3087), + [anon_sym___inline__] = ACTIONS(3087), + [anon_sym___forceinline] = ACTIONS(3087), + [anon_sym_thread_local] = ACTIONS(3087), + [anon_sym___thread] = ACTIONS(3087), + [anon_sym_const] = ACTIONS(3087), + [anon_sym_constexpr] = ACTIONS(3087), + [anon_sym_volatile] = ACTIONS(3087), + [anon_sym_restrict] = ACTIONS(3087), + [anon_sym___restrict__] = ACTIONS(3087), + [anon_sym__Atomic] = ACTIONS(3087), + [anon_sym__Noreturn] = ACTIONS(3087), + [anon_sym_noreturn] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [sym_primitive_type] = ACTIONS(3087), + [anon_sym_enum] = ACTIONS(3087), + [anon_sym_class] = ACTIONS(3087), + [anon_sym_struct] = ACTIONS(3087), + [anon_sym_union] = ACTIONS(3087), + [anon_sym_if] = ACTIONS(3087), + [anon_sym_else] = ACTIONS(3087), + [anon_sym_switch] = ACTIONS(3087), + [anon_sym_case] = ACTIONS(3087), + [anon_sym_default] = ACTIONS(3087), + [anon_sym_while] = ACTIONS(3087), + [anon_sym_do] = ACTIONS(3087), + [anon_sym_for] = ACTIONS(3087), + [anon_sym_return] = ACTIONS(3087), + [anon_sym_break] = ACTIONS(3087), + [anon_sym_continue] = ACTIONS(3087), + [anon_sym_goto] = ACTIONS(3087), + [anon_sym___try] = ACTIONS(3087), + [anon_sym___leave] = ACTIONS(3087), + [anon_sym_not] = ACTIONS(3087), + [anon_sym_compl] = ACTIONS(3087), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_sizeof] = ACTIONS(3087), + [anon_sym___alignof__] = ACTIONS(3087), + [anon_sym___alignof] = ACTIONS(3087), + [anon_sym__alignof] = ACTIONS(3087), + [anon_sym_alignof] = ACTIONS(3087), + [anon_sym__Alignof] = ACTIONS(3087), + [anon_sym_offsetof] = ACTIONS(3087), + [anon_sym__Generic] = ACTIONS(3087), + [anon_sym_asm] = ACTIONS(3087), + [anon_sym___asm__] = ACTIONS(3087), + [sym_number_literal] = ACTIONS(3089), + [anon_sym_L_SQUOTE] = ACTIONS(3089), + [anon_sym_u_SQUOTE] = ACTIONS(3089), + [anon_sym_U_SQUOTE] = ACTIONS(3089), + [anon_sym_u8_SQUOTE] = ACTIONS(3089), + [anon_sym_SQUOTE] = ACTIONS(3089), + [anon_sym_L_DQUOTE] = ACTIONS(3089), + [anon_sym_u_DQUOTE] = ACTIONS(3089), + [anon_sym_U_DQUOTE] = ACTIONS(3089), + [anon_sym_u8_DQUOTE] = ACTIONS(3089), + [anon_sym_DQUOTE] = ACTIONS(3089), + [sym_true] = ACTIONS(3087), + [sym_false] = ACTIONS(3087), + [anon_sym_NULL] = ACTIONS(3087), + [anon_sym_nullptr] = ACTIONS(3087), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym_explicit] = ACTIONS(3087), + [anon_sym_typename] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [anon_sym_try] = ACTIONS(3087), + [anon_sym_delete] = ACTIONS(3087), + [anon_sym_throw] = ACTIONS(3087), + [anon_sym_namespace] = ACTIONS(3087), + [anon_sym_using] = ACTIONS(3087), + [anon_sym_static_assert] = ACTIONS(3087), + [anon_sym_concept] = ACTIONS(3087), + [anon_sym_co_return] = ACTIONS(3087), + [anon_sym_co_yield] = ACTIONS(3087), + [anon_sym_R_DQUOTE] = ACTIONS(3089), + [anon_sym_LR_DQUOTE] = ACTIONS(3089), + [anon_sym_uR_DQUOTE] = ACTIONS(3089), + [anon_sym_UR_DQUOTE] = ACTIONS(3089), + [anon_sym_u8R_DQUOTE] = ACTIONS(3089), + [anon_sym_co_await] = ACTIONS(3087), + [anon_sym_new] = ACTIONS(3087), + [anon_sym_requires] = ACTIONS(3087), + [sym_this] = ACTIONS(3087), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3089), + [sym_semgrep_named_ellipsis] = ACTIONS(3089), + }, + [313] = { + [sym_identifier] = ACTIONS(3091), + [aux_sym_preproc_include_token1] = ACTIONS(3091), + [aux_sym_preproc_def_token1] = ACTIONS(3091), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3093), + [aux_sym_preproc_if_token1] = ACTIONS(3091), + [aux_sym_preproc_if_token2] = ACTIONS(3091), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3091), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3091), + [aux_sym_preproc_else_token1] = ACTIONS(3091), + [aux_sym_preproc_elif_token1] = ACTIONS(3091), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3091), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3091), + [sym_preproc_directive] = ACTIONS(3091), + [anon_sym_LPAREN2] = ACTIONS(3093), + [anon_sym_BANG] = ACTIONS(3093), + [anon_sym_TILDE] = ACTIONS(3093), + [anon_sym_DASH] = ACTIONS(3091), + [anon_sym_PLUS] = ACTIONS(3091), + [anon_sym_STAR] = ACTIONS(3093), + [anon_sym_AMP_AMP] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym___extension__] = ACTIONS(3091), + [anon_sym_typedef] = ACTIONS(3091), + [anon_sym_extern] = ACTIONS(3091), + [anon_sym___attribute__] = ACTIONS(3091), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3093), + [anon_sym___declspec] = ACTIONS(3091), + [anon_sym___based] = ACTIONS(3091), + [anon_sym___cdecl] = ACTIONS(3091), + [anon_sym___clrcall] = ACTIONS(3091), + [anon_sym___stdcall] = ACTIONS(3091), + [anon_sym___fastcall] = ACTIONS(3091), + [anon_sym___thiscall] = ACTIONS(3091), + [anon_sym___vectorcall] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_signed] = ACTIONS(3091), + [anon_sym_unsigned] = ACTIONS(3091), + [anon_sym_long] = ACTIONS(3091), + [anon_sym_short] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_static] = ACTIONS(3091), + [anon_sym_register] = ACTIONS(3091), + [anon_sym_inline] = ACTIONS(3091), + [anon_sym___inline] = ACTIONS(3091), + [anon_sym___inline__] = ACTIONS(3091), + [anon_sym___forceinline] = ACTIONS(3091), + [anon_sym_thread_local] = ACTIONS(3091), + [anon_sym___thread] = ACTIONS(3091), + [anon_sym_const] = ACTIONS(3091), + [anon_sym_constexpr] = ACTIONS(3091), + [anon_sym_volatile] = ACTIONS(3091), + [anon_sym_restrict] = ACTIONS(3091), + [anon_sym___restrict__] = ACTIONS(3091), + [anon_sym__Atomic] = ACTIONS(3091), + [anon_sym__Noreturn] = ACTIONS(3091), + [anon_sym_noreturn] = ACTIONS(3091), + [anon_sym_mutable] = ACTIONS(3091), + [anon_sym_constinit] = ACTIONS(3091), + [anon_sym_consteval] = ACTIONS(3091), + [sym_primitive_type] = ACTIONS(3091), + [anon_sym_enum] = ACTIONS(3091), + [anon_sym_class] = ACTIONS(3091), + [anon_sym_struct] = ACTIONS(3091), + [anon_sym_union] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3091), + [anon_sym_else] = ACTIONS(3091), + [anon_sym_switch] = ACTIONS(3091), + [anon_sym_case] = ACTIONS(3091), + [anon_sym_default] = ACTIONS(3091), + [anon_sym_while] = ACTIONS(3091), + [anon_sym_do] = ACTIONS(3091), + [anon_sym_for] = ACTIONS(3091), + [anon_sym_return] = ACTIONS(3091), + [anon_sym_break] = ACTIONS(3091), + [anon_sym_continue] = ACTIONS(3091), + [anon_sym_goto] = ACTIONS(3091), + [anon_sym___try] = ACTIONS(3091), + [anon_sym___leave] = ACTIONS(3091), + [anon_sym_not] = ACTIONS(3091), + [anon_sym_compl] = ACTIONS(3091), + [anon_sym_DASH_DASH] = ACTIONS(3093), + [anon_sym_PLUS_PLUS] = ACTIONS(3093), + [anon_sym_sizeof] = ACTIONS(3091), + [anon_sym___alignof__] = ACTIONS(3091), + [anon_sym___alignof] = ACTIONS(3091), + [anon_sym__alignof] = ACTIONS(3091), + [anon_sym_alignof] = ACTIONS(3091), + [anon_sym__Alignof] = ACTIONS(3091), + [anon_sym_offsetof] = ACTIONS(3091), + [anon_sym__Generic] = ACTIONS(3091), + [anon_sym_asm] = ACTIONS(3091), + [anon_sym___asm__] = ACTIONS(3091), + [sym_number_literal] = ACTIONS(3093), + [anon_sym_L_SQUOTE] = ACTIONS(3093), + [anon_sym_u_SQUOTE] = ACTIONS(3093), + [anon_sym_U_SQUOTE] = ACTIONS(3093), + [anon_sym_u8_SQUOTE] = ACTIONS(3093), + [anon_sym_SQUOTE] = ACTIONS(3093), + [anon_sym_L_DQUOTE] = ACTIONS(3093), + [anon_sym_u_DQUOTE] = ACTIONS(3093), + [anon_sym_U_DQUOTE] = ACTIONS(3093), + [anon_sym_u8_DQUOTE] = ACTIONS(3093), + [anon_sym_DQUOTE] = ACTIONS(3093), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [anon_sym_NULL] = ACTIONS(3091), + [anon_sym_nullptr] = ACTIONS(3091), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3091), + [anon_sym_decltype] = ACTIONS(3091), + [anon_sym_virtual] = ACTIONS(3091), + [anon_sym_alignas] = ACTIONS(3091), + [anon_sym_explicit] = ACTIONS(3091), + [anon_sym_typename] = ACTIONS(3091), + [anon_sym_template] = ACTIONS(3091), + [anon_sym_operator] = ACTIONS(3091), + [anon_sym_try] = ACTIONS(3091), + [anon_sym_delete] = ACTIONS(3091), + [anon_sym_throw] = ACTIONS(3091), + [anon_sym_namespace] = ACTIONS(3091), + [anon_sym_using] = ACTIONS(3091), + [anon_sym_static_assert] = ACTIONS(3091), + [anon_sym_concept] = ACTIONS(3091), + [anon_sym_co_return] = ACTIONS(3091), + [anon_sym_co_yield] = ACTIONS(3091), + [anon_sym_R_DQUOTE] = ACTIONS(3093), + [anon_sym_LR_DQUOTE] = ACTIONS(3093), + [anon_sym_uR_DQUOTE] = ACTIONS(3093), + [anon_sym_UR_DQUOTE] = ACTIONS(3093), + [anon_sym_u8R_DQUOTE] = ACTIONS(3093), + [anon_sym_co_await] = ACTIONS(3091), + [anon_sym_new] = ACTIONS(3091), + [anon_sym_requires] = ACTIONS(3091), + [sym_this] = ACTIONS(3091), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3093), + [sym_semgrep_named_ellipsis] = ACTIONS(3093), + }, + [314] = { + [sym_identifier] = ACTIONS(3095), + [aux_sym_preproc_include_token1] = ACTIONS(3095), + [aux_sym_preproc_def_token1] = ACTIONS(3095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3097), + [aux_sym_preproc_if_token1] = ACTIONS(3095), + [aux_sym_preproc_if_token2] = ACTIONS(3095), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3095), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3095), + [aux_sym_preproc_else_token1] = ACTIONS(3095), + [aux_sym_preproc_elif_token1] = ACTIONS(3095), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3095), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3095), + [sym_preproc_directive] = ACTIONS(3095), + [anon_sym_LPAREN2] = ACTIONS(3097), + [anon_sym_BANG] = ACTIONS(3097), + [anon_sym_TILDE] = ACTIONS(3097), + [anon_sym_DASH] = ACTIONS(3095), + [anon_sym_PLUS] = ACTIONS(3095), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_AMP_AMP] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3095), + [anon_sym_SEMI] = ACTIONS(3097), + [anon_sym___extension__] = ACTIONS(3095), + [anon_sym_typedef] = ACTIONS(3095), + [anon_sym_extern] = ACTIONS(3095), + [anon_sym___attribute__] = ACTIONS(3095), + [anon_sym_COLON_COLON] = ACTIONS(3097), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3097), + [anon_sym___declspec] = ACTIONS(3095), + [anon_sym___based] = ACTIONS(3095), + [anon_sym___cdecl] = ACTIONS(3095), + [anon_sym___clrcall] = ACTIONS(3095), + [anon_sym___stdcall] = ACTIONS(3095), + [anon_sym___fastcall] = ACTIONS(3095), + [anon_sym___thiscall] = ACTIONS(3095), + [anon_sym___vectorcall] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_signed] = ACTIONS(3095), + [anon_sym_unsigned] = ACTIONS(3095), + [anon_sym_long] = ACTIONS(3095), + [anon_sym_short] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3095), + [anon_sym_static] = ACTIONS(3095), + [anon_sym_register] = ACTIONS(3095), + [anon_sym_inline] = ACTIONS(3095), + [anon_sym___inline] = ACTIONS(3095), + [anon_sym___inline__] = ACTIONS(3095), + [anon_sym___forceinline] = ACTIONS(3095), + [anon_sym_thread_local] = ACTIONS(3095), + [anon_sym___thread] = ACTIONS(3095), + [anon_sym_const] = ACTIONS(3095), + [anon_sym_constexpr] = ACTIONS(3095), + [anon_sym_volatile] = ACTIONS(3095), + [anon_sym_restrict] = ACTIONS(3095), + [anon_sym___restrict__] = ACTIONS(3095), + [anon_sym__Atomic] = ACTIONS(3095), + [anon_sym__Noreturn] = ACTIONS(3095), + [anon_sym_noreturn] = ACTIONS(3095), + [anon_sym_mutable] = ACTIONS(3095), + [anon_sym_constinit] = ACTIONS(3095), + [anon_sym_consteval] = ACTIONS(3095), + [sym_primitive_type] = ACTIONS(3095), + [anon_sym_enum] = ACTIONS(3095), + [anon_sym_class] = ACTIONS(3095), + [anon_sym_struct] = ACTIONS(3095), + [anon_sym_union] = ACTIONS(3095), + [anon_sym_if] = ACTIONS(3095), + [anon_sym_else] = ACTIONS(3095), + [anon_sym_switch] = ACTIONS(3095), + [anon_sym_case] = ACTIONS(3095), + [anon_sym_default] = ACTIONS(3095), + [anon_sym_while] = ACTIONS(3095), + [anon_sym_do] = ACTIONS(3095), + [anon_sym_for] = ACTIONS(3095), + [anon_sym_return] = ACTIONS(3095), + [anon_sym_break] = ACTIONS(3095), + [anon_sym_continue] = ACTIONS(3095), + [anon_sym_goto] = ACTIONS(3095), + [anon_sym___try] = ACTIONS(3095), + [anon_sym___leave] = ACTIONS(3095), + [anon_sym_not] = ACTIONS(3095), + [anon_sym_compl] = ACTIONS(3095), + [anon_sym_DASH_DASH] = ACTIONS(3097), + [anon_sym_PLUS_PLUS] = ACTIONS(3097), + [anon_sym_sizeof] = ACTIONS(3095), + [anon_sym___alignof__] = ACTIONS(3095), + [anon_sym___alignof] = ACTIONS(3095), + [anon_sym__alignof] = ACTIONS(3095), + [anon_sym_alignof] = ACTIONS(3095), + [anon_sym__Alignof] = ACTIONS(3095), + [anon_sym_offsetof] = ACTIONS(3095), + [anon_sym__Generic] = ACTIONS(3095), + [anon_sym_asm] = ACTIONS(3095), + [anon_sym___asm__] = ACTIONS(3095), + [sym_number_literal] = ACTIONS(3097), + [anon_sym_L_SQUOTE] = ACTIONS(3097), + [anon_sym_u_SQUOTE] = ACTIONS(3097), + [anon_sym_U_SQUOTE] = ACTIONS(3097), + [anon_sym_u8_SQUOTE] = ACTIONS(3097), + [anon_sym_SQUOTE] = ACTIONS(3097), + [anon_sym_L_DQUOTE] = ACTIONS(3097), + [anon_sym_u_DQUOTE] = ACTIONS(3097), + [anon_sym_U_DQUOTE] = ACTIONS(3097), + [anon_sym_u8_DQUOTE] = ACTIONS(3097), + [anon_sym_DQUOTE] = ACTIONS(3097), + [sym_true] = ACTIONS(3095), + [sym_false] = ACTIONS(3095), + [anon_sym_NULL] = ACTIONS(3095), + [anon_sym_nullptr] = ACTIONS(3095), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3095), + [anon_sym_decltype] = ACTIONS(3095), + [anon_sym_virtual] = ACTIONS(3095), + [anon_sym_alignas] = ACTIONS(3095), + [anon_sym_explicit] = ACTIONS(3095), + [anon_sym_typename] = ACTIONS(3095), + [anon_sym_template] = ACTIONS(3095), + [anon_sym_operator] = ACTIONS(3095), + [anon_sym_try] = ACTIONS(3095), + [anon_sym_delete] = ACTIONS(3095), + [anon_sym_throw] = ACTIONS(3095), + [anon_sym_namespace] = ACTIONS(3095), + [anon_sym_using] = ACTIONS(3095), + [anon_sym_static_assert] = ACTIONS(3095), + [anon_sym_concept] = ACTIONS(3095), + [anon_sym_co_return] = ACTIONS(3095), + [anon_sym_co_yield] = ACTIONS(3095), + [anon_sym_R_DQUOTE] = ACTIONS(3097), + [anon_sym_LR_DQUOTE] = ACTIONS(3097), + [anon_sym_uR_DQUOTE] = ACTIONS(3097), + [anon_sym_UR_DQUOTE] = ACTIONS(3097), + [anon_sym_u8R_DQUOTE] = ACTIONS(3097), + [anon_sym_co_await] = ACTIONS(3095), + [anon_sym_new] = ACTIONS(3095), + [anon_sym_requires] = ACTIONS(3095), + [sym_this] = ACTIONS(3095), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3097), + [sym_semgrep_named_ellipsis] = ACTIONS(3097), + }, + [315] = { + [sym_identifier] = ACTIONS(3099), + [aux_sym_preproc_include_token1] = ACTIONS(3099), + [aux_sym_preproc_def_token1] = ACTIONS(3099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3101), + [aux_sym_preproc_if_token1] = ACTIONS(3099), + [aux_sym_preproc_if_token2] = ACTIONS(3099), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3099), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3099), + [aux_sym_preproc_else_token1] = ACTIONS(3099), + [aux_sym_preproc_elif_token1] = ACTIONS(3099), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3099), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3099), + [sym_preproc_directive] = ACTIONS(3099), + [anon_sym_LPAREN2] = ACTIONS(3101), + [anon_sym_BANG] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3101), + [anon_sym_DASH] = ACTIONS(3099), + [anon_sym_PLUS] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_AMP_AMP] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym_SEMI] = ACTIONS(3101), + [anon_sym___extension__] = ACTIONS(3099), + [anon_sym_typedef] = ACTIONS(3099), + [anon_sym_extern] = ACTIONS(3099), + [anon_sym___attribute__] = ACTIONS(3099), + [anon_sym_COLON_COLON] = ACTIONS(3101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3101), + [anon_sym___declspec] = ACTIONS(3099), + [anon_sym___based] = ACTIONS(3099), + [anon_sym___cdecl] = ACTIONS(3099), + [anon_sym___clrcall] = ACTIONS(3099), + [anon_sym___stdcall] = ACTIONS(3099), + [anon_sym___fastcall] = ACTIONS(3099), + [anon_sym___thiscall] = ACTIONS(3099), + [anon_sym___vectorcall] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(3101), + [anon_sym_signed] = ACTIONS(3099), + [anon_sym_unsigned] = ACTIONS(3099), + [anon_sym_long] = ACTIONS(3099), + [anon_sym_short] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3099), + [anon_sym_register] = ACTIONS(3099), + [anon_sym_inline] = ACTIONS(3099), + [anon_sym___inline] = ACTIONS(3099), + [anon_sym___inline__] = ACTIONS(3099), + [anon_sym___forceinline] = ACTIONS(3099), + [anon_sym_thread_local] = ACTIONS(3099), + [anon_sym___thread] = ACTIONS(3099), + [anon_sym_const] = ACTIONS(3099), + [anon_sym_constexpr] = ACTIONS(3099), + [anon_sym_volatile] = ACTIONS(3099), + [anon_sym_restrict] = ACTIONS(3099), + [anon_sym___restrict__] = ACTIONS(3099), + [anon_sym__Atomic] = ACTIONS(3099), + [anon_sym__Noreturn] = ACTIONS(3099), + [anon_sym_noreturn] = ACTIONS(3099), + [anon_sym_mutable] = ACTIONS(3099), + [anon_sym_constinit] = ACTIONS(3099), + [anon_sym_consteval] = ACTIONS(3099), + [sym_primitive_type] = ACTIONS(3099), + [anon_sym_enum] = ACTIONS(3099), + [anon_sym_class] = ACTIONS(3099), + [anon_sym_struct] = ACTIONS(3099), + [anon_sym_union] = ACTIONS(3099), + [anon_sym_if] = ACTIONS(3099), + [anon_sym_else] = ACTIONS(3099), + [anon_sym_switch] = ACTIONS(3099), + [anon_sym_case] = ACTIONS(3099), + [anon_sym_default] = ACTIONS(3099), + [anon_sym_while] = ACTIONS(3099), + [anon_sym_do] = ACTIONS(3099), + [anon_sym_for] = ACTIONS(3099), + [anon_sym_return] = ACTIONS(3099), + [anon_sym_break] = ACTIONS(3099), + [anon_sym_continue] = ACTIONS(3099), + [anon_sym_goto] = ACTIONS(3099), + [anon_sym___try] = ACTIONS(3099), + [anon_sym___leave] = ACTIONS(3099), + [anon_sym_not] = ACTIONS(3099), + [anon_sym_compl] = ACTIONS(3099), + [anon_sym_DASH_DASH] = ACTIONS(3101), + [anon_sym_PLUS_PLUS] = ACTIONS(3101), + [anon_sym_sizeof] = ACTIONS(3099), + [anon_sym___alignof__] = ACTIONS(3099), + [anon_sym___alignof] = ACTIONS(3099), + [anon_sym__alignof] = ACTIONS(3099), + [anon_sym_alignof] = ACTIONS(3099), + [anon_sym__Alignof] = ACTIONS(3099), + [anon_sym_offsetof] = ACTIONS(3099), + [anon_sym__Generic] = ACTIONS(3099), + [anon_sym_asm] = ACTIONS(3099), + [anon_sym___asm__] = ACTIONS(3099), + [sym_number_literal] = ACTIONS(3101), + [anon_sym_L_SQUOTE] = ACTIONS(3101), + [anon_sym_u_SQUOTE] = ACTIONS(3101), + [anon_sym_U_SQUOTE] = ACTIONS(3101), + [anon_sym_u8_SQUOTE] = ACTIONS(3101), + [anon_sym_SQUOTE] = ACTIONS(3101), + [anon_sym_L_DQUOTE] = ACTIONS(3101), + [anon_sym_u_DQUOTE] = ACTIONS(3101), + [anon_sym_U_DQUOTE] = ACTIONS(3101), + [anon_sym_u8_DQUOTE] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(3101), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [anon_sym_NULL] = ACTIONS(3099), + [anon_sym_nullptr] = ACTIONS(3099), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3099), + [anon_sym_decltype] = ACTIONS(3099), + [anon_sym_virtual] = ACTIONS(3099), + [anon_sym_alignas] = ACTIONS(3099), + [anon_sym_explicit] = ACTIONS(3099), + [anon_sym_typename] = ACTIONS(3099), + [anon_sym_template] = ACTIONS(3099), + [anon_sym_operator] = ACTIONS(3099), + [anon_sym_try] = ACTIONS(3099), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_throw] = ACTIONS(3099), + [anon_sym_namespace] = ACTIONS(3099), + [anon_sym_using] = ACTIONS(3099), + [anon_sym_static_assert] = ACTIONS(3099), + [anon_sym_concept] = ACTIONS(3099), + [anon_sym_co_return] = ACTIONS(3099), + [anon_sym_co_yield] = ACTIONS(3099), + [anon_sym_R_DQUOTE] = ACTIONS(3101), + [anon_sym_LR_DQUOTE] = ACTIONS(3101), + [anon_sym_uR_DQUOTE] = ACTIONS(3101), + [anon_sym_UR_DQUOTE] = ACTIONS(3101), + [anon_sym_u8R_DQUOTE] = ACTIONS(3101), + [anon_sym_co_await] = ACTIONS(3099), + [anon_sym_new] = ACTIONS(3099), + [anon_sym_requires] = ACTIONS(3099), + [sym_this] = ACTIONS(3099), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3101), + [sym_semgrep_named_ellipsis] = ACTIONS(3101), + }, + [316] = { + [sym_identifier] = ACTIONS(3103), + [aux_sym_preproc_include_token1] = ACTIONS(3103), + [aux_sym_preproc_def_token1] = ACTIONS(3103), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3105), + [aux_sym_preproc_if_token1] = ACTIONS(3103), + [aux_sym_preproc_if_token2] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3103), + [aux_sym_preproc_else_token1] = ACTIONS(3103), + [aux_sym_preproc_elif_token1] = ACTIONS(3103), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3103), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3103), + [sym_preproc_directive] = ACTIONS(3103), + [anon_sym_LPAREN2] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3103), + [anon_sym_PLUS] = ACTIONS(3103), + [anon_sym_STAR] = ACTIONS(3105), + [anon_sym_AMP_AMP] = ACTIONS(3105), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym___extension__] = ACTIONS(3103), + [anon_sym_typedef] = ACTIONS(3103), + [anon_sym_extern] = ACTIONS(3103), + [anon_sym___attribute__] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3105), + [anon_sym___declspec] = ACTIONS(3103), + [anon_sym___based] = ACTIONS(3103), + [anon_sym___cdecl] = ACTIONS(3103), + [anon_sym___clrcall] = ACTIONS(3103), + [anon_sym___stdcall] = ACTIONS(3103), + [anon_sym___fastcall] = ACTIONS(3103), + [anon_sym___thiscall] = ACTIONS(3103), + [anon_sym___vectorcall] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(3105), + [anon_sym_signed] = ACTIONS(3103), + [anon_sym_unsigned] = ACTIONS(3103), + [anon_sym_long] = ACTIONS(3103), + [anon_sym_short] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(3103), + [anon_sym_static] = ACTIONS(3103), + [anon_sym_register] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym___inline] = ACTIONS(3103), + [anon_sym___inline__] = ACTIONS(3103), + [anon_sym___forceinline] = ACTIONS(3103), + [anon_sym_thread_local] = ACTIONS(3103), + [anon_sym___thread] = ACTIONS(3103), + [anon_sym_const] = ACTIONS(3103), + [anon_sym_constexpr] = ACTIONS(3103), + [anon_sym_volatile] = ACTIONS(3103), + [anon_sym_restrict] = ACTIONS(3103), + [anon_sym___restrict__] = ACTIONS(3103), + [anon_sym__Atomic] = ACTIONS(3103), + [anon_sym__Noreturn] = ACTIONS(3103), + [anon_sym_noreturn] = ACTIONS(3103), + [anon_sym_mutable] = ACTIONS(3103), + [anon_sym_constinit] = ACTIONS(3103), + [anon_sym_consteval] = ACTIONS(3103), + [sym_primitive_type] = ACTIONS(3103), + [anon_sym_enum] = ACTIONS(3103), + [anon_sym_class] = ACTIONS(3103), + [anon_sym_struct] = ACTIONS(3103), + [anon_sym_union] = ACTIONS(3103), + [anon_sym_if] = ACTIONS(3103), + [anon_sym_else] = ACTIONS(3103), + [anon_sym_switch] = ACTIONS(3103), + [anon_sym_case] = ACTIONS(3103), + [anon_sym_default] = ACTIONS(3103), + [anon_sym_while] = ACTIONS(3103), + [anon_sym_do] = ACTIONS(3103), + [anon_sym_for] = ACTIONS(3103), + [anon_sym_return] = ACTIONS(3103), + [anon_sym_break] = ACTIONS(3103), + [anon_sym_continue] = ACTIONS(3103), + [anon_sym_goto] = ACTIONS(3103), + [anon_sym___try] = ACTIONS(3103), + [anon_sym___leave] = ACTIONS(3103), + [anon_sym_not] = ACTIONS(3103), + [anon_sym_compl] = ACTIONS(3103), + [anon_sym_DASH_DASH] = ACTIONS(3105), + [anon_sym_PLUS_PLUS] = ACTIONS(3105), + [anon_sym_sizeof] = ACTIONS(3103), + [anon_sym___alignof__] = ACTIONS(3103), + [anon_sym___alignof] = ACTIONS(3103), + [anon_sym__alignof] = ACTIONS(3103), + [anon_sym_alignof] = ACTIONS(3103), + [anon_sym__Alignof] = ACTIONS(3103), + [anon_sym_offsetof] = ACTIONS(3103), + [anon_sym__Generic] = ACTIONS(3103), + [anon_sym_asm] = ACTIONS(3103), + [anon_sym___asm__] = ACTIONS(3103), + [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(3103), + [sym_false] = ACTIONS(3103), + [anon_sym_NULL] = ACTIONS(3103), + [anon_sym_nullptr] = ACTIONS(3103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3103), + [anon_sym_decltype] = ACTIONS(3103), + [anon_sym_virtual] = ACTIONS(3103), + [anon_sym_alignas] = ACTIONS(3103), + [anon_sym_explicit] = ACTIONS(3103), + [anon_sym_typename] = ACTIONS(3103), + [anon_sym_template] = ACTIONS(3103), + [anon_sym_operator] = ACTIONS(3103), + [anon_sym_try] = ACTIONS(3103), + [anon_sym_delete] = ACTIONS(3103), + [anon_sym_throw] = ACTIONS(3103), + [anon_sym_namespace] = ACTIONS(3103), + [anon_sym_using] = ACTIONS(3103), + [anon_sym_static_assert] = ACTIONS(3103), + [anon_sym_concept] = ACTIONS(3103), + [anon_sym_co_return] = ACTIONS(3103), + [anon_sym_co_yield] = ACTIONS(3103), + [anon_sym_R_DQUOTE] = ACTIONS(3105), + [anon_sym_LR_DQUOTE] = ACTIONS(3105), + [anon_sym_uR_DQUOTE] = ACTIONS(3105), + [anon_sym_UR_DQUOTE] = ACTIONS(3105), + [anon_sym_u8R_DQUOTE] = ACTIONS(3105), + [anon_sym_co_await] = ACTIONS(3103), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(3103), + [sym_this] = ACTIONS(3103), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3105), + [sym_semgrep_named_ellipsis] = ACTIONS(3105), + }, + [317] = { + [sym_identifier] = ACTIONS(3107), + [aux_sym_preproc_include_token1] = ACTIONS(3107), + [aux_sym_preproc_def_token1] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3109), + [aux_sym_preproc_if_token1] = ACTIONS(3107), + [aux_sym_preproc_if_token2] = ACTIONS(3107), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3107), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3107), + [aux_sym_preproc_else_token1] = ACTIONS(3107), + [aux_sym_preproc_elif_token1] = ACTIONS(3107), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3107), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3107), + [sym_preproc_directive] = ACTIONS(3107), + [anon_sym_LPAREN2] = ACTIONS(3109), + [anon_sym_BANG] = ACTIONS(3109), + [anon_sym_TILDE] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_AMP] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym___extension__] = ACTIONS(3107), + [anon_sym_typedef] = ACTIONS(3107), + [anon_sym_extern] = ACTIONS(3107), + [anon_sym___attribute__] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(3109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3109), + [anon_sym___declspec] = ACTIONS(3107), + [anon_sym___based] = ACTIONS(3107), + [anon_sym___cdecl] = ACTIONS(3107), + [anon_sym___clrcall] = ACTIONS(3107), + [anon_sym___stdcall] = ACTIONS(3107), + [anon_sym___fastcall] = ACTIONS(3107), + [anon_sym___thiscall] = ACTIONS(3107), + [anon_sym___vectorcall] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(3109), + [anon_sym_signed] = ACTIONS(3107), + [anon_sym_unsigned] = ACTIONS(3107), + [anon_sym_long] = ACTIONS(3107), + [anon_sym_short] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3107), + [anon_sym_static] = ACTIONS(3107), + [anon_sym_register] = ACTIONS(3107), + [anon_sym_inline] = ACTIONS(3107), + [anon_sym___inline] = ACTIONS(3107), + [anon_sym___inline__] = ACTIONS(3107), + [anon_sym___forceinline] = ACTIONS(3107), + [anon_sym_thread_local] = ACTIONS(3107), + [anon_sym___thread] = ACTIONS(3107), + [anon_sym_const] = ACTIONS(3107), + [anon_sym_constexpr] = ACTIONS(3107), + [anon_sym_volatile] = ACTIONS(3107), + [anon_sym_restrict] = ACTIONS(3107), + [anon_sym___restrict__] = ACTIONS(3107), + [anon_sym__Atomic] = ACTIONS(3107), + [anon_sym__Noreturn] = ACTIONS(3107), + [anon_sym_noreturn] = ACTIONS(3107), + [anon_sym_mutable] = ACTIONS(3107), + [anon_sym_constinit] = ACTIONS(3107), + [anon_sym_consteval] = ACTIONS(3107), + [sym_primitive_type] = ACTIONS(3107), + [anon_sym_enum] = ACTIONS(3107), + [anon_sym_class] = ACTIONS(3107), + [anon_sym_struct] = ACTIONS(3107), + [anon_sym_union] = ACTIONS(3107), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_else] = 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___try] = ACTIONS(3107), + [anon_sym___leave] = ACTIONS(3107), + [anon_sym_not] = ACTIONS(3107), + [anon_sym_compl] = ACTIONS(3107), + [anon_sym_DASH_DASH] = ACTIONS(3109), + [anon_sym_PLUS_PLUS] = ACTIONS(3109), + [anon_sym_sizeof] = ACTIONS(3107), + [anon_sym___alignof__] = ACTIONS(3107), + [anon_sym___alignof] = ACTIONS(3107), + [anon_sym__alignof] = ACTIONS(3107), + [anon_sym_alignof] = ACTIONS(3107), + [anon_sym__Alignof] = ACTIONS(3107), + [anon_sym_offsetof] = ACTIONS(3107), + [anon_sym__Generic] = ACTIONS(3107), + [anon_sym_asm] = ACTIONS(3107), + [anon_sym___asm__] = ACTIONS(3107), + [sym_number_literal] = ACTIONS(3109), + [anon_sym_L_SQUOTE] = ACTIONS(3109), + [anon_sym_u_SQUOTE] = ACTIONS(3109), + [anon_sym_U_SQUOTE] = ACTIONS(3109), + [anon_sym_u8_SQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3109), + [anon_sym_L_DQUOTE] = ACTIONS(3109), + [anon_sym_u_DQUOTE] = ACTIONS(3109), + [anon_sym_U_DQUOTE] = ACTIONS(3109), + [anon_sym_u8_DQUOTE] = ACTIONS(3109), + [anon_sym_DQUOTE] = ACTIONS(3109), + [sym_true] = ACTIONS(3107), + [sym_false] = ACTIONS(3107), + [anon_sym_NULL] = ACTIONS(3107), + [anon_sym_nullptr] = ACTIONS(3107), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3107), + [anon_sym_decltype] = ACTIONS(3107), + [anon_sym_virtual] = ACTIONS(3107), + [anon_sym_alignas] = ACTIONS(3107), + [anon_sym_explicit] = ACTIONS(3107), + [anon_sym_typename] = ACTIONS(3107), + [anon_sym_template] = ACTIONS(3107), + [anon_sym_operator] = ACTIONS(3107), + [anon_sym_try] = ACTIONS(3107), + [anon_sym_delete] = ACTIONS(3107), + [anon_sym_throw] = ACTIONS(3107), + [anon_sym_namespace] = ACTIONS(3107), + [anon_sym_using] = ACTIONS(3107), + [anon_sym_static_assert] = ACTIONS(3107), + [anon_sym_concept] = ACTIONS(3107), + [anon_sym_co_return] = ACTIONS(3107), + [anon_sym_co_yield] = ACTIONS(3107), + [anon_sym_R_DQUOTE] = ACTIONS(3109), + [anon_sym_LR_DQUOTE] = ACTIONS(3109), + [anon_sym_uR_DQUOTE] = ACTIONS(3109), + [anon_sym_UR_DQUOTE] = ACTIONS(3109), + [anon_sym_u8R_DQUOTE] = ACTIONS(3109), + [anon_sym_co_await] = ACTIONS(3107), + [anon_sym_new] = ACTIONS(3107), + [anon_sym_requires] = ACTIONS(3107), + [sym_this] = ACTIONS(3107), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3109), + [sym_semgrep_named_ellipsis] = ACTIONS(3109), + }, + [318] = { + [sym_identifier] = ACTIONS(3111), + [aux_sym_preproc_include_token1] = ACTIONS(3111), + [aux_sym_preproc_def_token1] = ACTIONS(3111), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3113), + [aux_sym_preproc_if_token1] = ACTIONS(3111), + [aux_sym_preproc_if_token2] = ACTIONS(3111), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3111), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3111), + [aux_sym_preproc_else_token1] = ACTIONS(3111), + [aux_sym_preproc_elif_token1] = ACTIONS(3111), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3111), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3111), + [sym_preproc_directive] = ACTIONS(3111), + [anon_sym_LPAREN2] = ACTIONS(3113), + [anon_sym_BANG] = ACTIONS(3113), + [anon_sym_TILDE] = ACTIONS(3113), + [anon_sym_DASH] = ACTIONS(3111), + [anon_sym_PLUS] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_AMP_AMP] = ACTIONS(3113), + [anon_sym_AMP] = ACTIONS(3111), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym___extension__] = ACTIONS(3111), + [anon_sym_typedef] = ACTIONS(3111), + [anon_sym_extern] = ACTIONS(3111), + [anon_sym___attribute__] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(3113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3113), + [anon_sym___declspec] = ACTIONS(3111), + [anon_sym___based] = ACTIONS(3111), + [anon_sym___cdecl] = ACTIONS(3111), + [anon_sym___clrcall] = ACTIONS(3111), + [anon_sym___stdcall] = ACTIONS(3111), + [anon_sym___fastcall] = ACTIONS(3111), + [anon_sym___thiscall] = ACTIONS(3111), + [anon_sym___vectorcall] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_signed] = ACTIONS(3111), + [anon_sym_unsigned] = ACTIONS(3111), + [anon_sym_long] = ACTIONS(3111), + [anon_sym_short] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3111), + [anon_sym_static] = ACTIONS(3111), + [anon_sym_register] = ACTIONS(3111), + [anon_sym_inline] = ACTIONS(3111), + [anon_sym___inline] = ACTIONS(3111), + [anon_sym___inline__] = ACTIONS(3111), + [anon_sym___forceinline] = ACTIONS(3111), + [anon_sym_thread_local] = ACTIONS(3111), + [anon_sym___thread] = ACTIONS(3111), + [anon_sym_const] = ACTIONS(3111), + [anon_sym_constexpr] = ACTIONS(3111), + [anon_sym_volatile] = ACTIONS(3111), + [anon_sym_restrict] = ACTIONS(3111), + [anon_sym___restrict__] = ACTIONS(3111), + [anon_sym__Atomic] = ACTIONS(3111), + [anon_sym__Noreturn] = ACTIONS(3111), + [anon_sym_noreturn] = ACTIONS(3111), + [anon_sym_mutable] = ACTIONS(3111), + [anon_sym_constinit] = ACTIONS(3111), + [anon_sym_consteval] = ACTIONS(3111), + [sym_primitive_type] = ACTIONS(3111), + [anon_sym_enum] = ACTIONS(3111), + [anon_sym_class] = ACTIONS(3111), + [anon_sym_struct] = ACTIONS(3111), + [anon_sym_union] = ACTIONS(3111), + [anon_sym_if] = ACTIONS(3111), + [anon_sym_else] = ACTIONS(3111), + [anon_sym_switch] = ACTIONS(3111), + [anon_sym_case] = ACTIONS(3111), + [anon_sym_default] = ACTIONS(3111), + [anon_sym_while] = ACTIONS(3111), + [anon_sym_do] = ACTIONS(3111), + [anon_sym_for] = ACTIONS(3111), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_break] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(3111), + [anon_sym_goto] = ACTIONS(3111), + [anon_sym___try] = ACTIONS(3111), + [anon_sym___leave] = ACTIONS(3111), + [anon_sym_not] = ACTIONS(3111), + [anon_sym_compl] = ACTIONS(3111), + [anon_sym_DASH_DASH] = ACTIONS(3113), + [anon_sym_PLUS_PLUS] = ACTIONS(3113), + [anon_sym_sizeof] = ACTIONS(3111), + [anon_sym___alignof__] = ACTIONS(3111), + [anon_sym___alignof] = ACTIONS(3111), + [anon_sym__alignof] = ACTIONS(3111), + [anon_sym_alignof] = ACTIONS(3111), + [anon_sym__Alignof] = ACTIONS(3111), + [anon_sym_offsetof] = ACTIONS(3111), + [anon_sym__Generic] = ACTIONS(3111), + [anon_sym_asm] = ACTIONS(3111), + [anon_sym___asm__] = ACTIONS(3111), + [sym_number_literal] = ACTIONS(3113), + [anon_sym_L_SQUOTE] = ACTIONS(3113), + [anon_sym_u_SQUOTE] = ACTIONS(3113), + [anon_sym_U_SQUOTE] = ACTIONS(3113), + [anon_sym_u8_SQUOTE] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3113), + [anon_sym_L_DQUOTE] = ACTIONS(3113), + [anon_sym_u_DQUOTE] = ACTIONS(3113), + [anon_sym_U_DQUOTE] = ACTIONS(3113), + [anon_sym_u8_DQUOTE] = ACTIONS(3113), + [anon_sym_DQUOTE] = ACTIONS(3113), + [sym_true] = ACTIONS(3111), + [sym_false] = ACTIONS(3111), + [anon_sym_NULL] = ACTIONS(3111), + [anon_sym_nullptr] = ACTIONS(3111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3111), + [anon_sym_decltype] = ACTIONS(3111), + [anon_sym_virtual] = ACTIONS(3111), + [anon_sym_alignas] = ACTIONS(3111), + [anon_sym_explicit] = ACTIONS(3111), + [anon_sym_typename] = ACTIONS(3111), + [anon_sym_template] = ACTIONS(3111), + [anon_sym_operator] = ACTIONS(3111), + [anon_sym_try] = ACTIONS(3111), + [anon_sym_delete] = ACTIONS(3111), + [anon_sym_throw] = ACTIONS(3111), + [anon_sym_namespace] = ACTIONS(3111), + [anon_sym_using] = ACTIONS(3111), + [anon_sym_static_assert] = ACTIONS(3111), + [anon_sym_concept] = ACTIONS(3111), + [anon_sym_co_return] = ACTIONS(3111), + [anon_sym_co_yield] = ACTIONS(3111), + [anon_sym_R_DQUOTE] = ACTIONS(3113), + [anon_sym_LR_DQUOTE] = ACTIONS(3113), + [anon_sym_uR_DQUOTE] = ACTIONS(3113), + [anon_sym_UR_DQUOTE] = ACTIONS(3113), + [anon_sym_u8R_DQUOTE] = ACTIONS(3113), + [anon_sym_co_await] = ACTIONS(3111), + [anon_sym_new] = ACTIONS(3111), + [anon_sym_requires] = ACTIONS(3111), + [sym_this] = ACTIONS(3111), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3113), + [sym_semgrep_named_ellipsis] = ACTIONS(3113), + }, + [319] = { + [sym_identifier] = ACTIONS(3115), + [aux_sym_preproc_include_token1] = ACTIONS(3115), + [aux_sym_preproc_def_token1] = ACTIONS(3115), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3117), + [aux_sym_preproc_if_token1] = ACTIONS(3115), + [aux_sym_preproc_if_token2] = ACTIONS(3115), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3115), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3115), + [aux_sym_preproc_else_token1] = ACTIONS(3115), + [aux_sym_preproc_elif_token1] = ACTIONS(3115), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3115), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3115), + [sym_preproc_directive] = ACTIONS(3115), + [anon_sym_LPAREN2] = ACTIONS(3117), + [anon_sym_BANG] = ACTIONS(3117), + [anon_sym_TILDE] = ACTIONS(3117), + [anon_sym_DASH] = ACTIONS(3115), + [anon_sym_PLUS] = ACTIONS(3115), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP_AMP] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3115), + [anon_sym_SEMI] = ACTIONS(3117), + [anon_sym___extension__] = ACTIONS(3115), + [anon_sym_typedef] = ACTIONS(3115), + [anon_sym_extern] = ACTIONS(3115), + [anon_sym___attribute__] = ACTIONS(3115), + [anon_sym_COLON_COLON] = ACTIONS(3117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3117), + [anon_sym___declspec] = ACTIONS(3115), + [anon_sym___based] = ACTIONS(3115), + [anon_sym___cdecl] = ACTIONS(3115), + [anon_sym___clrcall] = ACTIONS(3115), + [anon_sym___stdcall] = ACTIONS(3115), + [anon_sym___fastcall] = ACTIONS(3115), + [anon_sym___thiscall] = ACTIONS(3115), + [anon_sym___vectorcall] = ACTIONS(3115), + [anon_sym_LBRACE] = ACTIONS(3117), + [anon_sym_signed] = ACTIONS(3115), + [anon_sym_unsigned] = ACTIONS(3115), + [anon_sym_long] = ACTIONS(3115), + [anon_sym_short] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3115), + [anon_sym_static] = ACTIONS(3115), + [anon_sym_register] = ACTIONS(3115), + [anon_sym_inline] = ACTIONS(3115), + [anon_sym___inline] = ACTIONS(3115), + [anon_sym___inline__] = ACTIONS(3115), + [anon_sym___forceinline] = ACTIONS(3115), + [anon_sym_thread_local] = ACTIONS(3115), + [anon_sym___thread] = ACTIONS(3115), + [anon_sym_const] = ACTIONS(3115), + [anon_sym_constexpr] = ACTIONS(3115), + [anon_sym_volatile] = ACTIONS(3115), + [anon_sym_restrict] = ACTIONS(3115), + [anon_sym___restrict__] = ACTIONS(3115), + [anon_sym__Atomic] = ACTIONS(3115), + [anon_sym__Noreturn] = ACTIONS(3115), + [anon_sym_noreturn] = ACTIONS(3115), + [anon_sym_mutable] = ACTIONS(3115), + [anon_sym_constinit] = ACTIONS(3115), + [anon_sym_consteval] = ACTIONS(3115), + [sym_primitive_type] = ACTIONS(3115), + [anon_sym_enum] = ACTIONS(3115), + [anon_sym_class] = ACTIONS(3115), + [anon_sym_struct] = ACTIONS(3115), + [anon_sym_union] = ACTIONS(3115), + [anon_sym_if] = ACTIONS(3115), + [anon_sym_else] = ACTIONS(3115), + [anon_sym_switch] = ACTIONS(3115), + [anon_sym_case] = ACTIONS(3115), + [anon_sym_default] = ACTIONS(3115), + [anon_sym_while] = ACTIONS(3115), + [anon_sym_do] = ACTIONS(3115), + [anon_sym_for] = ACTIONS(3115), + [anon_sym_return] = ACTIONS(3115), + [anon_sym_break] = ACTIONS(3115), + [anon_sym_continue] = ACTIONS(3115), + [anon_sym_goto] = ACTIONS(3115), + [anon_sym___try] = ACTIONS(3115), + [anon_sym___leave] = ACTIONS(3115), + [anon_sym_not] = ACTIONS(3115), + [anon_sym_compl] = ACTIONS(3115), + [anon_sym_DASH_DASH] = ACTIONS(3117), + [anon_sym_PLUS_PLUS] = ACTIONS(3117), + [anon_sym_sizeof] = ACTIONS(3115), + [anon_sym___alignof__] = ACTIONS(3115), + [anon_sym___alignof] = ACTIONS(3115), + [anon_sym__alignof] = ACTIONS(3115), + [anon_sym_alignof] = ACTIONS(3115), + [anon_sym__Alignof] = ACTIONS(3115), + [anon_sym_offsetof] = ACTIONS(3115), + [anon_sym__Generic] = ACTIONS(3115), + [anon_sym_asm] = ACTIONS(3115), + [anon_sym___asm__] = ACTIONS(3115), + [sym_number_literal] = ACTIONS(3117), + [anon_sym_L_SQUOTE] = ACTIONS(3117), + [anon_sym_u_SQUOTE] = ACTIONS(3117), + [anon_sym_U_SQUOTE] = ACTIONS(3117), + [anon_sym_u8_SQUOTE] = ACTIONS(3117), + [anon_sym_SQUOTE] = ACTIONS(3117), + [anon_sym_L_DQUOTE] = ACTIONS(3117), + [anon_sym_u_DQUOTE] = ACTIONS(3117), + [anon_sym_U_DQUOTE] = ACTIONS(3117), + [anon_sym_u8_DQUOTE] = ACTIONS(3117), + [anon_sym_DQUOTE] = ACTIONS(3117), + [sym_true] = ACTIONS(3115), + [sym_false] = ACTIONS(3115), + [anon_sym_NULL] = ACTIONS(3115), + [anon_sym_nullptr] = ACTIONS(3115), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3115), + [anon_sym_decltype] = ACTIONS(3115), + [anon_sym_virtual] = ACTIONS(3115), + [anon_sym_alignas] = ACTIONS(3115), + [anon_sym_explicit] = ACTIONS(3115), + [anon_sym_typename] = ACTIONS(3115), + [anon_sym_template] = ACTIONS(3115), + [anon_sym_operator] = ACTIONS(3115), + [anon_sym_try] = ACTIONS(3115), + [anon_sym_delete] = ACTIONS(3115), + [anon_sym_throw] = ACTIONS(3115), + [anon_sym_namespace] = ACTIONS(3115), + [anon_sym_using] = ACTIONS(3115), + [anon_sym_static_assert] = ACTIONS(3115), + [anon_sym_concept] = ACTIONS(3115), + [anon_sym_co_return] = ACTIONS(3115), + [anon_sym_co_yield] = ACTIONS(3115), + [anon_sym_R_DQUOTE] = ACTIONS(3117), + [anon_sym_LR_DQUOTE] = ACTIONS(3117), + [anon_sym_uR_DQUOTE] = ACTIONS(3117), + [anon_sym_UR_DQUOTE] = ACTIONS(3117), + [anon_sym_u8R_DQUOTE] = ACTIONS(3117), + [anon_sym_co_await] = ACTIONS(3115), + [anon_sym_new] = ACTIONS(3115), + [anon_sym_requires] = ACTIONS(3115), + [sym_this] = ACTIONS(3115), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3117), + [sym_semgrep_named_ellipsis] = ACTIONS(3117), + }, + [320] = { + [sym_identifier] = ACTIONS(3119), + [aux_sym_preproc_include_token1] = ACTIONS(3119), + [aux_sym_preproc_def_token1] = ACTIONS(3119), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3121), + [aux_sym_preproc_if_token1] = ACTIONS(3119), + [aux_sym_preproc_if_token2] = ACTIONS(3119), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3119), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3119), + [aux_sym_preproc_else_token1] = ACTIONS(3119), + [aux_sym_preproc_elif_token1] = ACTIONS(3119), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3119), + [sym_preproc_directive] = ACTIONS(3119), + [anon_sym_LPAREN2] = ACTIONS(3121), + [anon_sym_BANG] = ACTIONS(3121), + [anon_sym_TILDE] = ACTIONS(3121), + [anon_sym_DASH] = ACTIONS(3119), + [anon_sym_PLUS] = ACTIONS(3119), + [anon_sym_STAR] = ACTIONS(3121), + [anon_sym_AMP_AMP] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3119), + [anon_sym_SEMI] = ACTIONS(3121), + [anon_sym___extension__] = ACTIONS(3119), + [anon_sym_typedef] = ACTIONS(3119), + [anon_sym_extern] = ACTIONS(3119), + [anon_sym___attribute__] = ACTIONS(3119), + [anon_sym_COLON_COLON] = ACTIONS(3121), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3121), + [anon_sym___declspec] = ACTIONS(3119), + [anon_sym___based] = ACTIONS(3119), + [anon_sym___cdecl] = ACTIONS(3119), + [anon_sym___clrcall] = ACTIONS(3119), + [anon_sym___stdcall] = ACTIONS(3119), + [anon_sym___fastcall] = ACTIONS(3119), + [anon_sym___thiscall] = ACTIONS(3119), + [anon_sym___vectorcall] = ACTIONS(3119), + [anon_sym_LBRACE] = ACTIONS(3121), + [anon_sym_signed] = ACTIONS(3119), + [anon_sym_unsigned] = ACTIONS(3119), + [anon_sym_long] = ACTIONS(3119), + [anon_sym_short] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(3119), + [anon_sym_static] = ACTIONS(3119), + [anon_sym_register] = ACTIONS(3119), + [anon_sym_inline] = ACTIONS(3119), + [anon_sym___inline] = ACTIONS(3119), + [anon_sym___inline__] = ACTIONS(3119), + [anon_sym___forceinline] = ACTIONS(3119), + [anon_sym_thread_local] = ACTIONS(3119), + [anon_sym___thread] = ACTIONS(3119), + [anon_sym_const] = ACTIONS(3119), + [anon_sym_constexpr] = ACTIONS(3119), + [anon_sym_volatile] = ACTIONS(3119), + [anon_sym_restrict] = ACTIONS(3119), + [anon_sym___restrict__] = ACTIONS(3119), + [anon_sym__Atomic] = ACTIONS(3119), + [anon_sym__Noreturn] = ACTIONS(3119), + [anon_sym_noreturn] = ACTIONS(3119), + [anon_sym_mutable] = ACTIONS(3119), + [anon_sym_constinit] = ACTIONS(3119), + [anon_sym_consteval] = ACTIONS(3119), + [sym_primitive_type] = ACTIONS(3119), + [anon_sym_enum] = ACTIONS(3119), + [anon_sym_class] = ACTIONS(3119), + [anon_sym_struct] = ACTIONS(3119), + [anon_sym_union] = ACTIONS(3119), + [anon_sym_if] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3119), + [anon_sym_switch] = ACTIONS(3119), + [anon_sym_case] = ACTIONS(3119), + [anon_sym_default] = ACTIONS(3119), + [anon_sym_while] = ACTIONS(3119), + [anon_sym_do] = ACTIONS(3119), + [anon_sym_for] = ACTIONS(3119), + [anon_sym_return] = ACTIONS(3119), + [anon_sym_break] = ACTIONS(3119), + [anon_sym_continue] = ACTIONS(3119), + [anon_sym_goto] = ACTIONS(3119), + [anon_sym___try] = ACTIONS(3119), + [anon_sym___leave] = ACTIONS(3119), + [anon_sym_not] = ACTIONS(3119), + [anon_sym_compl] = ACTIONS(3119), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3119), + [anon_sym___alignof__] = ACTIONS(3119), + [anon_sym___alignof] = ACTIONS(3119), + [anon_sym__alignof] = ACTIONS(3119), + [anon_sym_alignof] = ACTIONS(3119), + [anon_sym__Alignof] = ACTIONS(3119), + [anon_sym_offsetof] = ACTIONS(3119), + [anon_sym__Generic] = ACTIONS(3119), + [anon_sym_asm] = ACTIONS(3119), + [anon_sym___asm__] = ACTIONS(3119), + [sym_number_literal] = ACTIONS(3121), + [anon_sym_L_SQUOTE] = ACTIONS(3121), + [anon_sym_u_SQUOTE] = ACTIONS(3121), + [anon_sym_U_SQUOTE] = ACTIONS(3121), + [anon_sym_u8_SQUOTE] = ACTIONS(3121), + [anon_sym_SQUOTE] = ACTIONS(3121), + [anon_sym_L_DQUOTE] = ACTIONS(3121), + [anon_sym_u_DQUOTE] = ACTIONS(3121), + [anon_sym_U_DQUOTE] = ACTIONS(3121), + [anon_sym_u8_DQUOTE] = ACTIONS(3121), + [anon_sym_DQUOTE] = ACTIONS(3121), + [sym_true] = ACTIONS(3119), + [sym_false] = ACTIONS(3119), + [anon_sym_NULL] = ACTIONS(3119), + [anon_sym_nullptr] = ACTIONS(3119), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3119), + [anon_sym_decltype] = ACTIONS(3119), + [anon_sym_virtual] = ACTIONS(3119), + [anon_sym_alignas] = ACTIONS(3119), + [anon_sym_explicit] = ACTIONS(3119), + [anon_sym_typename] = ACTIONS(3119), + [anon_sym_template] = ACTIONS(3119), + [anon_sym_operator] = ACTIONS(3119), + [anon_sym_try] = ACTIONS(3119), + [anon_sym_delete] = ACTIONS(3119), + [anon_sym_throw] = ACTIONS(3119), + [anon_sym_namespace] = ACTIONS(3119), + [anon_sym_using] = ACTIONS(3119), + [anon_sym_static_assert] = ACTIONS(3119), + [anon_sym_concept] = ACTIONS(3119), + [anon_sym_co_return] = ACTIONS(3119), + [anon_sym_co_yield] = ACTIONS(3119), + [anon_sym_R_DQUOTE] = ACTIONS(3121), + [anon_sym_LR_DQUOTE] = ACTIONS(3121), + [anon_sym_uR_DQUOTE] = ACTIONS(3121), + [anon_sym_UR_DQUOTE] = ACTIONS(3121), + [anon_sym_u8R_DQUOTE] = ACTIONS(3121), + [anon_sym_co_await] = ACTIONS(3119), + [anon_sym_new] = ACTIONS(3119), + [anon_sym_requires] = ACTIONS(3119), + [sym_this] = ACTIONS(3119), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3121), + [sym_semgrep_named_ellipsis] = ACTIONS(3121), + }, + [321] = { + [sym_identifier] = ACTIONS(3123), + [aux_sym_preproc_include_token1] = ACTIONS(3123), + [aux_sym_preproc_def_token1] = ACTIONS(3123), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3125), + [aux_sym_preproc_if_token1] = ACTIONS(3123), + [aux_sym_preproc_if_token2] = ACTIONS(3123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3123), + [aux_sym_preproc_else_token1] = ACTIONS(3123), + [aux_sym_preproc_elif_token1] = ACTIONS(3123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3123), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3123), + [sym_preproc_directive] = ACTIONS(3123), + [anon_sym_LPAREN2] = ACTIONS(3125), + [anon_sym_BANG] = ACTIONS(3125), + [anon_sym_TILDE] = ACTIONS(3125), + [anon_sym_DASH] = ACTIONS(3123), + [anon_sym_PLUS] = ACTIONS(3123), + [anon_sym_STAR] = ACTIONS(3125), + [anon_sym_AMP_AMP] = ACTIONS(3125), + [anon_sym_AMP] = ACTIONS(3123), + [anon_sym_SEMI] = ACTIONS(3125), + [anon_sym___extension__] = ACTIONS(3123), + [anon_sym_typedef] = ACTIONS(3123), + [anon_sym_extern] = ACTIONS(3123), + [anon_sym___attribute__] = ACTIONS(3123), + [anon_sym_COLON_COLON] = ACTIONS(3125), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3125), + [anon_sym___declspec] = ACTIONS(3123), + [anon_sym___based] = ACTIONS(3123), + [anon_sym___cdecl] = ACTIONS(3123), + [anon_sym___clrcall] = ACTIONS(3123), + [anon_sym___stdcall] = ACTIONS(3123), + [anon_sym___fastcall] = ACTIONS(3123), + [anon_sym___thiscall] = ACTIONS(3123), + [anon_sym___vectorcall] = ACTIONS(3123), + [anon_sym_LBRACE] = ACTIONS(3125), + [anon_sym_signed] = ACTIONS(3123), + [anon_sym_unsigned] = ACTIONS(3123), + [anon_sym_long] = ACTIONS(3123), + [anon_sym_short] = ACTIONS(3123), + [anon_sym_LBRACK] = ACTIONS(3123), + [anon_sym_static] = ACTIONS(3123), + [anon_sym_register] = ACTIONS(3123), + [anon_sym_inline] = ACTIONS(3123), + [anon_sym___inline] = ACTIONS(3123), + [anon_sym___inline__] = ACTIONS(3123), + [anon_sym___forceinline] = ACTIONS(3123), + [anon_sym_thread_local] = ACTIONS(3123), + [anon_sym___thread] = ACTIONS(3123), + [anon_sym_const] = ACTIONS(3123), + [anon_sym_constexpr] = ACTIONS(3123), + [anon_sym_volatile] = ACTIONS(3123), + [anon_sym_restrict] = ACTIONS(3123), + [anon_sym___restrict__] = ACTIONS(3123), + [anon_sym__Atomic] = ACTIONS(3123), + [anon_sym__Noreturn] = ACTIONS(3123), + [anon_sym_noreturn] = ACTIONS(3123), + [anon_sym_mutable] = ACTIONS(3123), + [anon_sym_constinit] = ACTIONS(3123), + [anon_sym_consteval] = ACTIONS(3123), + [sym_primitive_type] = ACTIONS(3123), + [anon_sym_enum] = ACTIONS(3123), + [anon_sym_class] = ACTIONS(3123), + [anon_sym_struct] = ACTIONS(3123), + [anon_sym_union] = ACTIONS(3123), + [anon_sym_if] = ACTIONS(3123), + [anon_sym_else] = ACTIONS(3123), + [anon_sym_switch] = ACTIONS(3123), + [anon_sym_case] = ACTIONS(3123), + [anon_sym_default] = ACTIONS(3123), + [anon_sym_while] = ACTIONS(3123), + [anon_sym_do] = ACTIONS(3123), + [anon_sym_for] = ACTIONS(3123), + [anon_sym_return] = ACTIONS(3123), + [anon_sym_break] = ACTIONS(3123), + [anon_sym_continue] = ACTIONS(3123), + [anon_sym_goto] = ACTIONS(3123), + [anon_sym___try] = ACTIONS(3123), + [anon_sym___leave] = ACTIONS(3123), + [anon_sym_not] = ACTIONS(3123), + [anon_sym_compl] = ACTIONS(3123), + [anon_sym_DASH_DASH] = ACTIONS(3125), + [anon_sym_PLUS_PLUS] = ACTIONS(3125), + [anon_sym_sizeof] = ACTIONS(3123), + [anon_sym___alignof__] = ACTIONS(3123), + [anon_sym___alignof] = ACTIONS(3123), + [anon_sym__alignof] = ACTIONS(3123), + [anon_sym_alignof] = ACTIONS(3123), + [anon_sym__Alignof] = ACTIONS(3123), + [anon_sym_offsetof] = ACTIONS(3123), + [anon_sym__Generic] = ACTIONS(3123), + [anon_sym_asm] = ACTIONS(3123), + [anon_sym___asm__] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(3125), + [anon_sym_L_SQUOTE] = ACTIONS(3125), + [anon_sym_u_SQUOTE] = ACTIONS(3125), + [anon_sym_U_SQUOTE] = ACTIONS(3125), + [anon_sym_u8_SQUOTE] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3125), + [anon_sym_L_DQUOTE] = ACTIONS(3125), + [anon_sym_u_DQUOTE] = ACTIONS(3125), + [anon_sym_U_DQUOTE] = ACTIONS(3125), + [anon_sym_u8_DQUOTE] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym_true] = ACTIONS(3123), + [sym_false] = ACTIONS(3123), + [anon_sym_NULL] = ACTIONS(3123), + [anon_sym_nullptr] = ACTIONS(3123), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3123), + [anon_sym_decltype] = ACTIONS(3123), + [anon_sym_virtual] = ACTIONS(3123), + [anon_sym_alignas] = ACTIONS(3123), + [anon_sym_explicit] = ACTIONS(3123), + [anon_sym_typename] = ACTIONS(3123), + [anon_sym_template] = ACTIONS(3123), + [anon_sym_operator] = ACTIONS(3123), + [anon_sym_try] = ACTIONS(3123), + [anon_sym_delete] = ACTIONS(3123), + [anon_sym_throw] = ACTIONS(3123), + [anon_sym_namespace] = ACTIONS(3123), + [anon_sym_using] = ACTIONS(3123), + [anon_sym_static_assert] = ACTIONS(3123), + [anon_sym_concept] = ACTIONS(3123), + [anon_sym_co_return] = ACTIONS(3123), + [anon_sym_co_yield] = ACTIONS(3123), + [anon_sym_R_DQUOTE] = ACTIONS(3125), + [anon_sym_LR_DQUOTE] = ACTIONS(3125), + [anon_sym_uR_DQUOTE] = ACTIONS(3125), + [anon_sym_UR_DQUOTE] = ACTIONS(3125), + [anon_sym_u8R_DQUOTE] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3123), + [anon_sym_new] = ACTIONS(3123), + [anon_sym_requires] = ACTIONS(3123), + [sym_this] = ACTIONS(3123), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3125), + [sym_semgrep_named_ellipsis] = ACTIONS(3125), + }, + [322] = { + [sym_catch_clause] = STATE(305), + [aux_sym_constructor_try_statement_repeat1] = STATE(305), + [sym_identifier] = ACTIONS(3052), + [aux_sym_preproc_include_token1] = ACTIONS(3052), + [aux_sym_preproc_def_token1] = ACTIONS(3052), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3054), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_if_token2] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3052), + [aux_sym_preproc_else_token1] = ACTIONS(3052), + [aux_sym_preproc_elif_token1] = ACTIONS(3052), + [sym_preproc_directive] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(3054), + [anon_sym_TILDE] = ACTIONS(3054), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3054), + [anon_sym_AMP_AMP] = ACTIONS(3054), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_SEMI] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3052), + [anon_sym_typedef] = ACTIONS(3052), + [anon_sym_extern] = ACTIONS(3052), + [anon_sym___attribute__] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3054), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3054), + [anon_sym___declspec] = ACTIONS(3052), + [anon_sym___based] = ACTIONS(3052), + [anon_sym___cdecl] = ACTIONS(3052), + [anon_sym___clrcall] = ACTIONS(3052), + [anon_sym___stdcall] = ACTIONS(3052), + [anon_sym___fastcall] = ACTIONS(3052), + [anon_sym___thiscall] = ACTIONS(3052), + [anon_sym___vectorcall] = ACTIONS(3052), + [anon_sym_LBRACE] = ACTIONS(3054), + [anon_sym_signed] = ACTIONS(3052), + [anon_sym_unsigned] = ACTIONS(3052), + [anon_sym_long] = ACTIONS(3052), + [anon_sym_short] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_static] = ACTIONS(3052), + [anon_sym_register] = ACTIONS(3052), + [anon_sym_inline] = ACTIONS(3052), + [anon_sym___inline] = ACTIONS(3052), + [anon_sym___inline__] = ACTIONS(3052), + [anon_sym___forceinline] = ACTIONS(3052), + [anon_sym_thread_local] = ACTIONS(3052), + [anon_sym___thread] = ACTIONS(3052), + [anon_sym_const] = ACTIONS(3052), + [anon_sym_constexpr] = ACTIONS(3052), + [anon_sym_volatile] = ACTIONS(3052), + [anon_sym_restrict] = ACTIONS(3052), + [anon_sym___restrict__] = ACTIONS(3052), + [anon_sym__Atomic] = ACTIONS(3052), + [anon_sym__Noreturn] = ACTIONS(3052), + [anon_sym_noreturn] = ACTIONS(3052), + [anon_sym_mutable] = ACTIONS(3052), + [anon_sym_constinit] = ACTIONS(3052), + [anon_sym_consteval] = ACTIONS(3052), + [sym_primitive_type] = ACTIONS(3052), + [anon_sym_enum] = ACTIONS(3052), + [anon_sym_class] = ACTIONS(3052), + [anon_sym_struct] = ACTIONS(3052), + [anon_sym_union] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_switch] = ACTIONS(3052), + [anon_sym_case] = ACTIONS(3052), + [anon_sym_default] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_break] = ACTIONS(3052), + [anon_sym_continue] = ACTIONS(3052), + [anon_sym_goto] = ACTIONS(3052), + [anon_sym___try] = ACTIONS(3052), + [anon_sym___leave] = ACTIONS(3052), + [anon_sym_not] = ACTIONS(3052), + [anon_sym_compl] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(3054), + [anon_sym_PLUS_PLUS] = ACTIONS(3054), + [anon_sym_sizeof] = ACTIONS(3052), + [anon_sym___alignof__] = ACTIONS(3052), + [anon_sym___alignof] = ACTIONS(3052), + [anon_sym__alignof] = ACTIONS(3052), + [anon_sym_alignof] = ACTIONS(3052), + [anon_sym__Alignof] = ACTIONS(3052), + [anon_sym_offsetof] = ACTIONS(3052), + [anon_sym__Generic] = ACTIONS(3052), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3054), + [anon_sym_u_SQUOTE] = ACTIONS(3054), + [anon_sym_U_SQUOTE] = ACTIONS(3054), + [anon_sym_u8_SQUOTE] = ACTIONS(3054), + [anon_sym_SQUOTE] = ACTIONS(3054), + [anon_sym_L_DQUOTE] = ACTIONS(3054), + [anon_sym_u_DQUOTE] = ACTIONS(3054), + [anon_sym_U_DQUOTE] = ACTIONS(3054), + [anon_sym_u8_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [sym_true] = ACTIONS(3052), + [sym_false] = ACTIONS(3052), + [anon_sym_NULL] = ACTIONS(3052), + [anon_sym_nullptr] = ACTIONS(3052), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3052), + [anon_sym_decltype] = ACTIONS(3052), + [anon_sym_virtual] = ACTIONS(3052), + [anon_sym_alignas] = ACTIONS(3052), + [anon_sym_explicit] = ACTIONS(3052), + [anon_sym_typename] = ACTIONS(3052), + [anon_sym_template] = ACTIONS(3052), + [anon_sym_operator] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_delete] = ACTIONS(3052), + [anon_sym_throw] = ACTIONS(3052), + [anon_sym_namespace] = ACTIONS(3052), + [anon_sym_using] = ACTIONS(3052), + [anon_sym_static_assert] = ACTIONS(3052), + [anon_sym_concept] = ACTIONS(3052), + [anon_sym_co_return] = ACTIONS(3052), + [anon_sym_co_yield] = ACTIONS(3052), + [anon_sym_catch] = ACTIONS(3077), + [anon_sym_R_DQUOTE] = ACTIONS(3054), + [anon_sym_LR_DQUOTE] = ACTIONS(3054), + [anon_sym_uR_DQUOTE] = ACTIONS(3054), + [anon_sym_UR_DQUOTE] = ACTIONS(3054), + [anon_sym_u8R_DQUOTE] = ACTIONS(3054), + [anon_sym_co_await] = ACTIONS(3052), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_requires] = ACTIONS(3052), + [sym_this] = ACTIONS(3052), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3054), + [sym_semgrep_named_ellipsis] = ACTIONS(3054), + }, + [323] = { + [sym_identifier] = ACTIONS(3127), + [aux_sym_preproc_include_token1] = ACTIONS(3127), + [aux_sym_preproc_def_token1] = ACTIONS(3127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3129), + [aux_sym_preproc_if_token1] = ACTIONS(3127), + [aux_sym_preproc_if_token2] = ACTIONS(3127), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3127), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3127), + [aux_sym_preproc_else_token1] = ACTIONS(3127), + [aux_sym_preproc_elif_token1] = ACTIONS(3127), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3127), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3127), + [sym_preproc_directive] = ACTIONS(3127), + [anon_sym_LPAREN2] = ACTIONS(3129), + [anon_sym_BANG] = ACTIONS(3129), + [anon_sym_TILDE] = ACTIONS(3129), + [anon_sym_DASH] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(3127), + [anon_sym_STAR] = ACTIONS(3129), + [anon_sym_AMP_AMP] = ACTIONS(3129), + [anon_sym_AMP] = ACTIONS(3127), + [anon_sym_SEMI] = ACTIONS(3129), + [anon_sym___extension__] = ACTIONS(3127), + [anon_sym_typedef] = ACTIONS(3127), + [anon_sym_extern] = ACTIONS(3127), + [anon_sym___attribute__] = ACTIONS(3127), + [anon_sym_COLON_COLON] = ACTIONS(3129), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3129), + [anon_sym___declspec] = ACTIONS(3127), + [anon_sym___based] = ACTIONS(3127), + [anon_sym___cdecl] = ACTIONS(3127), + [anon_sym___clrcall] = ACTIONS(3127), + [anon_sym___stdcall] = ACTIONS(3127), + [anon_sym___fastcall] = ACTIONS(3127), + [anon_sym___thiscall] = ACTIONS(3127), + [anon_sym___vectorcall] = ACTIONS(3127), + [anon_sym_LBRACE] = ACTIONS(3129), + [anon_sym_signed] = ACTIONS(3127), + [anon_sym_unsigned] = ACTIONS(3127), + [anon_sym_long] = ACTIONS(3127), + [anon_sym_short] = ACTIONS(3127), + [anon_sym_LBRACK] = ACTIONS(3127), + [anon_sym_static] = ACTIONS(3127), + [anon_sym_register] = ACTIONS(3127), + [anon_sym_inline] = ACTIONS(3127), + [anon_sym___inline] = ACTIONS(3127), + [anon_sym___inline__] = ACTIONS(3127), + [anon_sym___forceinline] = ACTIONS(3127), + [anon_sym_thread_local] = ACTIONS(3127), + [anon_sym___thread] = ACTIONS(3127), + [anon_sym_const] = ACTIONS(3127), + [anon_sym_constexpr] = ACTIONS(3127), + [anon_sym_volatile] = ACTIONS(3127), + [anon_sym_restrict] = ACTIONS(3127), + [anon_sym___restrict__] = ACTIONS(3127), + [anon_sym__Atomic] = ACTIONS(3127), + [anon_sym__Noreturn] = ACTIONS(3127), + [anon_sym_noreturn] = ACTIONS(3127), + [anon_sym_mutable] = ACTIONS(3127), + [anon_sym_constinit] = ACTIONS(3127), + [anon_sym_consteval] = ACTIONS(3127), + [sym_primitive_type] = ACTIONS(3127), + [anon_sym_enum] = ACTIONS(3127), + [anon_sym_class] = ACTIONS(3127), + [anon_sym_struct] = ACTIONS(3127), + [anon_sym_union] = ACTIONS(3127), + [anon_sym_if] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(3127), + [anon_sym_switch] = ACTIONS(3127), + [anon_sym_case] = ACTIONS(3127), + [anon_sym_default] = ACTIONS(3127), + [anon_sym_while] = ACTIONS(3127), + [anon_sym_do] = ACTIONS(3127), + [anon_sym_for] = ACTIONS(3127), + [anon_sym_return] = ACTIONS(3127), + [anon_sym_break] = ACTIONS(3127), + [anon_sym_continue] = ACTIONS(3127), + [anon_sym_goto] = ACTIONS(3127), + [anon_sym___try] = ACTIONS(3127), + [anon_sym___leave] = ACTIONS(3127), + [anon_sym_not] = ACTIONS(3127), + [anon_sym_compl] = ACTIONS(3127), + [anon_sym_DASH_DASH] = ACTIONS(3129), + [anon_sym_PLUS_PLUS] = ACTIONS(3129), + [anon_sym_sizeof] = ACTIONS(3127), + [anon_sym___alignof__] = ACTIONS(3127), + [anon_sym___alignof] = ACTIONS(3127), + [anon_sym__alignof] = ACTIONS(3127), + [anon_sym_alignof] = ACTIONS(3127), + [anon_sym__Alignof] = ACTIONS(3127), + [anon_sym_offsetof] = ACTIONS(3127), + [anon_sym__Generic] = ACTIONS(3127), + [anon_sym_asm] = ACTIONS(3127), + [anon_sym___asm__] = ACTIONS(3127), + [sym_number_literal] = ACTIONS(3129), + [anon_sym_L_SQUOTE] = ACTIONS(3129), + [anon_sym_u_SQUOTE] = ACTIONS(3129), + [anon_sym_U_SQUOTE] = ACTIONS(3129), + [anon_sym_u8_SQUOTE] = ACTIONS(3129), + [anon_sym_SQUOTE] = ACTIONS(3129), + [anon_sym_L_DQUOTE] = ACTIONS(3129), + [anon_sym_u_DQUOTE] = ACTIONS(3129), + [anon_sym_U_DQUOTE] = ACTIONS(3129), + [anon_sym_u8_DQUOTE] = ACTIONS(3129), + [anon_sym_DQUOTE] = ACTIONS(3129), + [sym_true] = ACTIONS(3127), + [sym_false] = ACTIONS(3127), + [anon_sym_NULL] = ACTIONS(3127), + [anon_sym_nullptr] = ACTIONS(3127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3127), + [anon_sym_decltype] = ACTIONS(3127), + [anon_sym_virtual] = ACTIONS(3127), + [anon_sym_alignas] = ACTIONS(3127), + [anon_sym_explicit] = ACTIONS(3127), + [anon_sym_typename] = ACTIONS(3127), + [anon_sym_template] = ACTIONS(3127), + [anon_sym_operator] = ACTIONS(3127), + [anon_sym_try] = ACTIONS(3127), + [anon_sym_delete] = ACTIONS(3127), + [anon_sym_throw] = ACTIONS(3127), + [anon_sym_namespace] = ACTIONS(3127), + [anon_sym_using] = ACTIONS(3127), + [anon_sym_static_assert] = ACTIONS(3127), + [anon_sym_concept] = ACTIONS(3127), + [anon_sym_co_return] = ACTIONS(3127), + [anon_sym_co_yield] = ACTIONS(3127), + [anon_sym_R_DQUOTE] = ACTIONS(3129), + [anon_sym_LR_DQUOTE] = ACTIONS(3129), + [anon_sym_uR_DQUOTE] = ACTIONS(3129), + [anon_sym_UR_DQUOTE] = ACTIONS(3129), + [anon_sym_u8R_DQUOTE] = ACTIONS(3129), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3127), + [anon_sym_requires] = ACTIONS(3127), + [sym_this] = ACTIONS(3127), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3129), + [sym_semgrep_named_ellipsis] = ACTIONS(3129), + }, + [324] = { + [sym_identifier] = ACTIONS(3131), + [aux_sym_preproc_include_token1] = ACTIONS(3131), + [aux_sym_preproc_def_token1] = ACTIONS(3131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3133), + [aux_sym_preproc_if_token1] = ACTIONS(3131), + [aux_sym_preproc_if_token2] = ACTIONS(3131), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3131), + [aux_sym_preproc_else_token1] = ACTIONS(3131), + [aux_sym_preproc_elif_token1] = ACTIONS(3131), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3131), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3131), + [sym_preproc_directive] = ACTIONS(3131), + [anon_sym_LPAREN2] = ACTIONS(3133), + [anon_sym_BANG] = ACTIONS(3133), + [anon_sym_TILDE] = ACTIONS(3133), + [anon_sym_DASH] = ACTIONS(3131), + [anon_sym_PLUS] = ACTIONS(3131), + [anon_sym_STAR] = ACTIONS(3133), + [anon_sym_AMP_AMP] = ACTIONS(3133), + [anon_sym_AMP] = ACTIONS(3131), + [anon_sym_SEMI] = ACTIONS(3133), + [anon_sym___extension__] = ACTIONS(3131), + [anon_sym_typedef] = ACTIONS(3131), + [anon_sym_extern] = ACTIONS(3131), + [anon_sym___attribute__] = ACTIONS(3131), + [anon_sym_COLON_COLON] = ACTIONS(3133), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3133), + [anon_sym___declspec] = ACTIONS(3131), + [anon_sym___based] = ACTIONS(3131), + [anon_sym___cdecl] = ACTIONS(3131), + [anon_sym___clrcall] = ACTIONS(3131), + [anon_sym___stdcall] = ACTIONS(3131), + [anon_sym___fastcall] = ACTIONS(3131), + [anon_sym___thiscall] = ACTIONS(3131), + [anon_sym___vectorcall] = ACTIONS(3131), + [anon_sym_LBRACE] = ACTIONS(3133), + [anon_sym_signed] = ACTIONS(3131), + [anon_sym_unsigned] = ACTIONS(3131), + [anon_sym_long] = ACTIONS(3131), + [anon_sym_short] = ACTIONS(3131), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_static] = ACTIONS(3131), + [anon_sym_register] = ACTIONS(3131), + [anon_sym_inline] = ACTIONS(3131), + [anon_sym___inline] = ACTIONS(3131), + [anon_sym___inline__] = ACTIONS(3131), + [anon_sym___forceinline] = ACTIONS(3131), + [anon_sym_thread_local] = ACTIONS(3131), + [anon_sym___thread] = ACTIONS(3131), + [anon_sym_const] = ACTIONS(3131), + [anon_sym_constexpr] = ACTIONS(3131), + [anon_sym_volatile] = ACTIONS(3131), + [anon_sym_restrict] = ACTIONS(3131), + [anon_sym___restrict__] = ACTIONS(3131), + [anon_sym__Atomic] = ACTIONS(3131), + [anon_sym__Noreturn] = ACTIONS(3131), + [anon_sym_noreturn] = ACTIONS(3131), + [anon_sym_mutable] = ACTIONS(3131), + [anon_sym_constinit] = ACTIONS(3131), + [anon_sym_consteval] = ACTIONS(3131), + [sym_primitive_type] = ACTIONS(3131), + [anon_sym_enum] = ACTIONS(3131), + [anon_sym_class] = ACTIONS(3131), + [anon_sym_struct] = ACTIONS(3131), + [anon_sym_union] = ACTIONS(3131), + [anon_sym_if] = ACTIONS(3131), + [anon_sym_else] = ACTIONS(3131), + [anon_sym_switch] = ACTIONS(3131), + [anon_sym_case] = ACTIONS(3131), + [anon_sym_default] = ACTIONS(3131), + [anon_sym_while] = ACTIONS(3131), + [anon_sym_do] = ACTIONS(3131), + [anon_sym_for] = ACTIONS(3131), + [anon_sym_return] = ACTIONS(3131), + [anon_sym_break] = ACTIONS(3131), + [anon_sym_continue] = ACTIONS(3131), + [anon_sym_goto] = ACTIONS(3131), + [anon_sym___try] = ACTIONS(3131), + [anon_sym___leave] = ACTIONS(3131), + [anon_sym_not] = ACTIONS(3131), + [anon_sym_compl] = ACTIONS(3131), + [anon_sym_DASH_DASH] = ACTIONS(3133), + [anon_sym_PLUS_PLUS] = ACTIONS(3133), + [anon_sym_sizeof] = ACTIONS(3131), + [anon_sym___alignof__] = ACTIONS(3131), + [anon_sym___alignof] = ACTIONS(3131), + [anon_sym__alignof] = ACTIONS(3131), + [anon_sym_alignof] = ACTIONS(3131), + [anon_sym__Alignof] = ACTIONS(3131), + [anon_sym_offsetof] = ACTIONS(3131), + [anon_sym__Generic] = ACTIONS(3131), + [anon_sym_asm] = ACTIONS(3131), + [anon_sym___asm__] = ACTIONS(3131), + [sym_number_literal] = ACTIONS(3133), + [anon_sym_L_SQUOTE] = ACTIONS(3133), + [anon_sym_u_SQUOTE] = ACTIONS(3133), + [anon_sym_U_SQUOTE] = ACTIONS(3133), + [anon_sym_u8_SQUOTE] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3133), + [anon_sym_L_DQUOTE] = ACTIONS(3133), + [anon_sym_u_DQUOTE] = ACTIONS(3133), + [anon_sym_U_DQUOTE] = ACTIONS(3133), + [anon_sym_u8_DQUOTE] = ACTIONS(3133), + [anon_sym_DQUOTE] = ACTIONS(3133), + [sym_true] = ACTIONS(3131), + [sym_false] = ACTIONS(3131), + [anon_sym_NULL] = ACTIONS(3131), + [anon_sym_nullptr] = ACTIONS(3131), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3131), + [anon_sym_decltype] = ACTIONS(3131), + [anon_sym_virtual] = ACTIONS(3131), + [anon_sym_alignas] = ACTIONS(3131), + [anon_sym_explicit] = ACTIONS(3131), + [anon_sym_typename] = ACTIONS(3131), + [anon_sym_template] = ACTIONS(3131), + [anon_sym_operator] = ACTIONS(3131), + [anon_sym_try] = ACTIONS(3131), + [anon_sym_delete] = ACTIONS(3131), + [anon_sym_throw] = ACTIONS(3131), + [anon_sym_namespace] = ACTIONS(3131), + [anon_sym_using] = ACTIONS(3131), + [anon_sym_static_assert] = ACTIONS(3131), + [anon_sym_concept] = ACTIONS(3131), + [anon_sym_co_return] = ACTIONS(3131), + [anon_sym_co_yield] = ACTIONS(3131), + [anon_sym_R_DQUOTE] = ACTIONS(3133), + [anon_sym_LR_DQUOTE] = ACTIONS(3133), + [anon_sym_uR_DQUOTE] = ACTIONS(3133), + [anon_sym_UR_DQUOTE] = ACTIONS(3133), + [anon_sym_u8R_DQUOTE] = ACTIONS(3133), + [anon_sym_co_await] = ACTIONS(3131), + [anon_sym_new] = ACTIONS(3131), + [anon_sym_requires] = ACTIONS(3131), + [sym_this] = ACTIONS(3131), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3133), + [sym_semgrep_named_ellipsis] = ACTIONS(3133), + }, + [325] = { + [sym_expression] = STATE(5353), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9573), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(3115), - [anon_sym___extension__] = ACTIONS(3117), - [anon_sym_extern] = ACTIONS(3117), - [anon_sym___attribute__] = ACTIONS(3117), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(3137), + [anon_sym___extension__] = ACTIONS(3139), + [anon_sym_extern] = ACTIONS(3139), + [anon_sym___attribute__] = ACTIONS(3139), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3119), - [anon_sym___declspec] = ACTIONS(3117), - [anon_sym_signed] = ACTIONS(3117), - [anon_sym_unsigned] = ACTIONS(3117), - [anon_sym_long] = ACTIONS(3117), - [anon_sym_short] = ACTIONS(3117), - [anon_sym_LBRACK] = ACTIONS(1536), - [anon_sym_static] = ACTIONS(3117), - [anon_sym_register] = ACTIONS(3117), - [anon_sym_inline] = ACTIONS(3117), - [anon_sym___inline] = ACTIONS(3117), - [anon_sym___inline__] = ACTIONS(3117), - [anon_sym___forceinline] = ACTIONS(3117), - [anon_sym_thread_local] = ACTIONS(3117), - [anon_sym___thread] = ACTIONS(3117), - [anon_sym_const] = ACTIONS(3117), - [anon_sym_constexpr] = ACTIONS(3117), - [anon_sym_volatile] = ACTIONS(3117), - [anon_sym_restrict] = ACTIONS(3117), - [anon_sym___restrict__] = ACTIONS(3117), - [anon_sym__Atomic] = ACTIONS(3117), - [anon_sym__Noreturn] = ACTIONS(3117), - [anon_sym_noreturn] = ACTIONS(3117), - [anon_sym_mutable] = ACTIONS(3117), - [anon_sym_constinit] = ACTIONS(3117), - [anon_sym_consteval] = ACTIONS(3117), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_enum] = ACTIONS(3117), - [anon_sym_class] = ACTIONS(3117), - [anon_sym_struct] = ACTIONS(3117), - [anon_sym_union] = ACTIONS(3117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3141), + [anon_sym___declspec] = ACTIONS(3139), + [anon_sym_signed] = ACTIONS(3139), + [anon_sym_unsigned] = ACTIONS(3139), + [anon_sym_long] = ACTIONS(3139), + [anon_sym_short] = ACTIONS(3139), + [anon_sym_LBRACK] = ACTIONS(1532), + [anon_sym_static] = ACTIONS(3139), + [anon_sym_register] = ACTIONS(3139), + [anon_sym_inline] = ACTIONS(3139), + [anon_sym___inline] = ACTIONS(3139), + [anon_sym___inline__] = ACTIONS(3139), + [anon_sym___forceinline] = ACTIONS(3139), + [anon_sym_thread_local] = ACTIONS(3139), + [anon_sym___thread] = ACTIONS(3139), + [anon_sym_const] = ACTIONS(3139), + [anon_sym_constexpr] = ACTIONS(3139), + [anon_sym_volatile] = ACTIONS(3139), + [anon_sym_restrict] = ACTIONS(3139), + [anon_sym___restrict__] = ACTIONS(3139), + [anon_sym__Atomic] = ACTIONS(3139), + [anon_sym__Noreturn] = ACTIONS(3139), + [anon_sym_noreturn] = ACTIONS(3139), + [anon_sym_mutable] = ACTIONS(3139), + [anon_sym_constinit] = ACTIONS(3139), + [anon_sym_consteval] = ACTIONS(3139), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_enum] = ACTIONS(3139), + [anon_sym_class] = ACTIONS(3139), + [anon_sym_struct] = ACTIONS(3139), + [anon_sym_union] = ACTIONS(3139), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -108564,12 +100699,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3117), + [sym_auto] = ACTIONS(3139), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_virtual] = ACTIONS(3117), - [anon_sym_alignas] = ACTIONS(3117), - [anon_sym_typename] = ACTIONS(3117), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_virtual] = ACTIONS(3139), + [anon_sym_alignas] = ACTIONS(3139), + [anon_sym_typename] = ACTIONS(3139), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -108583,567 +100718,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [312] = { - [sym_identifier] = ACTIONS(3121), - [aux_sym_preproc_include_token1] = ACTIONS(3121), - [aux_sym_preproc_def_token1] = ACTIONS(3121), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3123), - [aux_sym_preproc_if_token1] = ACTIONS(3121), - [aux_sym_preproc_if_token2] = ACTIONS(3121), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3121), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3121), - [aux_sym_preproc_else_token1] = ACTIONS(3121), - [aux_sym_preproc_elif_token1] = ACTIONS(3121), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3121), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3121), - [sym_preproc_directive] = ACTIONS(3121), - [anon_sym_LPAREN2] = ACTIONS(3123), - [anon_sym_BANG] = ACTIONS(3123), - [anon_sym_TILDE] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3121), - [anon_sym_PLUS] = ACTIONS(3121), - [anon_sym_STAR] = ACTIONS(3123), - [anon_sym_AMP_AMP] = ACTIONS(3123), - [anon_sym_AMP] = ACTIONS(3121), - [anon_sym_SEMI] = ACTIONS(3123), - [anon_sym___extension__] = ACTIONS(3121), - [anon_sym_typedef] = ACTIONS(3121), - [anon_sym_extern] = ACTIONS(3121), - [anon_sym___attribute__] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(3123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3123), - [anon_sym___declspec] = ACTIONS(3121), - [anon_sym___based] = ACTIONS(3121), - [anon_sym___cdecl] = ACTIONS(3121), - [anon_sym___clrcall] = ACTIONS(3121), - [anon_sym___stdcall] = ACTIONS(3121), - [anon_sym___fastcall] = ACTIONS(3121), - [anon_sym___thiscall] = ACTIONS(3121), - [anon_sym___vectorcall] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(3123), - [anon_sym_signed] = ACTIONS(3121), - [anon_sym_unsigned] = ACTIONS(3121), - [anon_sym_long] = ACTIONS(3121), - [anon_sym_short] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3121), - [anon_sym_static] = ACTIONS(3121), - [anon_sym_register] = ACTIONS(3121), - [anon_sym_inline] = ACTIONS(3121), - [anon_sym___inline] = ACTIONS(3121), - [anon_sym___inline__] = ACTIONS(3121), - [anon_sym___forceinline] = ACTIONS(3121), - [anon_sym_thread_local] = ACTIONS(3121), - [anon_sym___thread] = ACTIONS(3121), - [anon_sym_const] = ACTIONS(3121), - [anon_sym_constexpr] = ACTIONS(3121), - [anon_sym_volatile] = ACTIONS(3121), - [anon_sym_restrict] = ACTIONS(3121), - [anon_sym___restrict__] = ACTIONS(3121), - [anon_sym__Atomic] = ACTIONS(3121), - [anon_sym__Noreturn] = ACTIONS(3121), - [anon_sym_noreturn] = ACTIONS(3121), - [anon_sym_mutable] = ACTIONS(3121), - [anon_sym_constinit] = ACTIONS(3121), - [anon_sym_consteval] = ACTIONS(3121), - [sym_primitive_type] = ACTIONS(3121), - [anon_sym_enum] = ACTIONS(3121), - [anon_sym_class] = ACTIONS(3121), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_if] = ACTIONS(3121), - [anon_sym_else] = ACTIONS(3121), - [anon_sym_switch] = ACTIONS(3121), - [anon_sym_case] = ACTIONS(3121), - [anon_sym_default] = ACTIONS(3121), - [anon_sym_while] = ACTIONS(3121), - [anon_sym_do] = ACTIONS(3121), - [anon_sym_for] = ACTIONS(3121), - [anon_sym_return] = ACTIONS(3121), - [anon_sym_break] = ACTIONS(3121), - [anon_sym_continue] = ACTIONS(3121), - [anon_sym_goto] = ACTIONS(3121), - [anon_sym___try] = ACTIONS(3121), - [anon_sym___leave] = ACTIONS(3121), - [anon_sym_not] = ACTIONS(3121), - [anon_sym_compl] = ACTIONS(3121), - [anon_sym_DASH_DASH] = ACTIONS(3123), - [anon_sym_PLUS_PLUS] = ACTIONS(3123), - [anon_sym_sizeof] = ACTIONS(3121), - [anon_sym___alignof__] = ACTIONS(3121), - [anon_sym___alignof] = ACTIONS(3121), - [anon_sym__alignof] = ACTIONS(3121), - [anon_sym_alignof] = ACTIONS(3121), - [anon_sym__Alignof] = ACTIONS(3121), - [anon_sym_offsetof] = ACTIONS(3121), - [anon_sym__Generic] = ACTIONS(3121), - [anon_sym_asm] = ACTIONS(3121), - [anon_sym___asm__] = ACTIONS(3121), - [sym_number_literal] = ACTIONS(3123), - [anon_sym_L_SQUOTE] = ACTIONS(3123), - [anon_sym_u_SQUOTE] = ACTIONS(3123), - [anon_sym_U_SQUOTE] = ACTIONS(3123), - [anon_sym_u8_SQUOTE] = ACTIONS(3123), - [anon_sym_SQUOTE] = ACTIONS(3123), - [anon_sym_L_DQUOTE] = ACTIONS(3123), - [anon_sym_u_DQUOTE] = ACTIONS(3123), - [anon_sym_U_DQUOTE] = ACTIONS(3123), - [anon_sym_u8_DQUOTE] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3123), - [sym_true] = ACTIONS(3121), - [sym_false] = ACTIONS(3121), - [anon_sym_NULL] = ACTIONS(3121), - [anon_sym_nullptr] = ACTIONS(3121), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3121), - [anon_sym_decltype] = ACTIONS(3121), - [anon_sym_virtual] = ACTIONS(3121), - [anon_sym_alignas] = ACTIONS(3121), - [anon_sym_explicit] = ACTIONS(3121), - [anon_sym_typename] = ACTIONS(3121), - [anon_sym_template] = ACTIONS(3121), - [anon_sym_operator] = ACTIONS(3121), - [anon_sym_try] = ACTIONS(3121), - [anon_sym_delete] = ACTIONS(3121), - [anon_sym_throw] = ACTIONS(3121), - [anon_sym_namespace] = ACTIONS(3121), - [anon_sym_using] = ACTIONS(3121), - [anon_sym_static_assert] = ACTIONS(3121), - [anon_sym_concept] = ACTIONS(3121), - [anon_sym_co_return] = ACTIONS(3121), - [anon_sym_co_yield] = ACTIONS(3121), - [anon_sym_R_DQUOTE] = ACTIONS(3123), - [anon_sym_LR_DQUOTE] = ACTIONS(3123), - [anon_sym_uR_DQUOTE] = ACTIONS(3123), - [anon_sym_UR_DQUOTE] = ACTIONS(3123), - [anon_sym_u8R_DQUOTE] = ACTIONS(3123), - [anon_sym_co_await] = ACTIONS(3121), - [anon_sym_new] = ACTIONS(3121), - [anon_sym_requires] = ACTIONS(3121), - [sym_this] = ACTIONS(3121), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3123), - [sym_semgrep_named_ellipsis] = ACTIONS(3123), - }, - [313] = { - [sym_identifier] = ACTIONS(3125), - [aux_sym_preproc_include_token1] = ACTIONS(3125), - [aux_sym_preproc_def_token1] = ACTIONS(3125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3127), - [aux_sym_preproc_if_token1] = ACTIONS(3125), - [aux_sym_preproc_if_token2] = ACTIONS(3125), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3125), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3125), - [aux_sym_preproc_else_token1] = ACTIONS(3125), - [aux_sym_preproc_elif_token1] = ACTIONS(3125), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3125), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3125), - [sym_preproc_directive] = ACTIONS(3125), - [anon_sym_LPAREN2] = ACTIONS(3127), - [anon_sym_BANG] = ACTIONS(3127), - [anon_sym_TILDE] = ACTIONS(3127), - [anon_sym_DASH] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(3127), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_AMP] = ACTIONS(3125), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym___extension__] = ACTIONS(3125), - [anon_sym_typedef] = ACTIONS(3125), - [anon_sym_extern] = ACTIONS(3125), - [anon_sym___attribute__] = ACTIONS(3125), - [anon_sym_COLON_COLON] = ACTIONS(3127), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3127), - [anon_sym___declspec] = ACTIONS(3125), - [anon_sym___based] = ACTIONS(3125), - [anon_sym___cdecl] = ACTIONS(3125), - [anon_sym___clrcall] = ACTIONS(3125), - [anon_sym___stdcall] = ACTIONS(3125), - [anon_sym___fastcall] = ACTIONS(3125), - [anon_sym___thiscall] = ACTIONS(3125), - [anon_sym___vectorcall] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(3127), - [anon_sym_signed] = ACTIONS(3125), - [anon_sym_unsigned] = ACTIONS(3125), - [anon_sym_long] = ACTIONS(3125), - [anon_sym_short] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3125), - [anon_sym_static] = ACTIONS(3125), - [anon_sym_register] = ACTIONS(3125), - [anon_sym_inline] = ACTIONS(3125), - [anon_sym___inline] = ACTIONS(3125), - [anon_sym___inline__] = ACTIONS(3125), - [anon_sym___forceinline] = ACTIONS(3125), - [anon_sym_thread_local] = ACTIONS(3125), - [anon_sym___thread] = ACTIONS(3125), - [anon_sym_const] = ACTIONS(3125), - [anon_sym_constexpr] = ACTIONS(3125), - [anon_sym_volatile] = ACTIONS(3125), - [anon_sym_restrict] = ACTIONS(3125), - [anon_sym___restrict__] = ACTIONS(3125), - [anon_sym__Atomic] = ACTIONS(3125), - [anon_sym__Noreturn] = ACTIONS(3125), - [anon_sym_noreturn] = ACTIONS(3125), - [anon_sym_mutable] = ACTIONS(3125), - [anon_sym_constinit] = ACTIONS(3125), - [anon_sym_consteval] = ACTIONS(3125), - [sym_primitive_type] = ACTIONS(3125), - [anon_sym_enum] = ACTIONS(3125), - [anon_sym_class] = ACTIONS(3125), - [anon_sym_struct] = ACTIONS(3125), - [anon_sym_union] = ACTIONS(3125), - [anon_sym_if] = ACTIONS(3125), - [anon_sym_else] = ACTIONS(3125), - [anon_sym_switch] = ACTIONS(3125), - [anon_sym_case] = ACTIONS(3125), - [anon_sym_default] = ACTIONS(3125), - [anon_sym_while] = ACTIONS(3125), - [anon_sym_do] = ACTIONS(3125), - [anon_sym_for] = ACTIONS(3125), - [anon_sym_return] = ACTIONS(3125), - [anon_sym_break] = ACTIONS(3125), - [anon_sym_continue] = ACTIONS(3125), - [anon_sym_goto] = ACTIONS(3125), - [anon_sym___try] = ACTIONS(3125), - [anon_sym___leave] = ACTIONS(3125), - [anon_sym_not] = ACTIONS(3125), - [anon_sym_compl] = ACTIONS(3125), - [anon_sym_DASH_DASH] = ACTIONS(3127), - [anon_sym_PLUS_PLUS] = ACTIONS(3127), - [anon_sym_sizeof] = ACTIONS(3125), - [anon_sym___alignof__] = ACTIONS(3125), - [anon_sym___alignof] = ACTIONS(3125), - [anon_sym__alignof] = ACTIONS(3125), - [anon_sym_alignof] = ACTIONS(3125), - [anon_sym__Alignof] = ACTIONS(3125), - [anon_sym_offsetof] = ACTIONS(3125), - [anon_sym__Generic] = ACTIONS(3125), - [anon_sym_asm] = ACTIONS(3125), - [anon_sym___asm__] = ACTIONS(3125), - [sym_number_literal] = ACTIONS(3127), - [anon_sym_L_SQUOTE] = ACTIONS(3127), - [anon_sym_u_SQUOTE] = ACTIONS(3127), - [anon_sym_U_SQUOTE] = ACTIONS(3127), - [anon_sym_u8_SQUOTE] = ACTIONS(3127), - [anon_sym_SQUOTE] = ACTIONS(3127), - [anon_sym_L_DQUOTE] = ACTIONS(3127), - [anon_sym_u_DQUOTE] = ACTIONS(3127), - [anon_sym_U_DQUOTE] = ACTIONS(3127), - [anon_sym_u8_DQUOTE] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym_true] = ACTIONS(3125), - [sym_false] = ACTIONS(3125), - [anon_sym_NULL] = ACTIONS(3125), - [anon_sym_nullptr] = ACTIONS(3125), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3125), - [anon_sym_decltype] = ACTIONS(3125), - [anon_sym_virtual] = ACTIONS(3125), - [anon_sym_alignas] = ACTIONS(3125), - [anon_sym_explicit] = ACTIONS(3125), - [anon_sym_typename] = ACTIONS(3125), - [anon_sym_template] = ACTIONS(3125), - [anon_sym_operator] = ACTIONS(3125), - [anon_sym_try] = ACTIONS(3125), - [anon_sym_delete] = ACTIONS(3125), - [anon_sym_throw] = ACTIONS(3125), - [anon_sym_namespace] = ACTIONS(3125), - [anon_sym_using] = ACTIONS(3125), - [anon_sym_static_assert] = ACTIONS(3125), - [anon_sym_concept] = ACTIONS(3125), - [anon_sym_co_return] = ACTIONS(3125), - [anon_sym_co_yield] = ACTIONS(3125), - [anon_sym_R_DQUOTE] = ACTIONS(3127), - [anon_sym_LR_DQUOTE] = ACTIONS(3127), - [anon_sym_uR_DQUOTE] = ACTIONS(3127), - [anon_sym_UR_DQUOTE] = ACTIONS(3127), - [anon_sym_u8R_DQUOTE] = ACTIONS(3127), - [anon_sym_co_await] = ACTIONS(3125), - [anon_sym_new] = ACTIONS(3125), - [anon_sym_requires] = ACTIONS(3125), - [sym_this] = ACTIONS(3125), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3127), - [sym_semgrep_named_ellipsis] = ACTIONS(3127), - }, - [314] = { - [sym_type_qualifier] = STATE(5043), - [sym_type_specifier] = STATE(6255), - [sym_sized_type_specifier] = STATE(2630), - [sym_enum_specifier] = STATE(2630), - [sym_struct_specifier] = STATE(2630), - [sym_union_specifier] = STATE(2630), - [sym_expression] = STATE(3951), - [sym_expression_not_binary] = STATE(3229), - [sym_comma_expression] = STATE(10483), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_type_descriptor] = STATE(9773), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_placeholder_type_specifier] = STATE(2630), - [sym_decltype_auto] = STATE(2627), - [sym_decltype] = STATE(2479), - [sym_class_specifier] = STATE(2630), - [sym_class_name] = STATE(9309), - [sym_dependent_type] = STATE(2630), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7089), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(6799), - [sym_assignment_expression_lhs_expression] = STATE(10483), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_typed_metavar] = STATE(10483), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [aux_sym_type_definition_type_repeat1] = STATE(5043), - [aux_sym_sized_type_specifier_repeat1] = STATE(6372), - [sym_identifier] = ACTIONS(3129), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_signed] = ACTIONS(2217), - [anon_sym_unsigned] = ACTIONS(2217), - [anon_sym_long] = ACTIONS(2217), - [anon_sym_short] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3135), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2229), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2253), - [anon_sym_decltype] = ACTIONS(2255), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [315] = { - [sym_identifier] = ACTIONS(3139), - [aux_sym_preproc_include_token1] = ACTIONS(3139), - [aux_sym_preproc_def_token1] = ACTIONS(3139), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3141), - [aux_sym_preproc_if_token1] = ACTIONS(3139), - [aux_sym_preproc_if_token2] = ACTIONS(3139), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3139), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3139), - [aux_sym_preproc_else_token1] = ACTIONS(3139), - [aux_sym_preproc_elif_token1] = ACTIONS(3139), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3139), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3139), - [sym_preproc_directive] = ACTIONS(3139), - [anon_sym_LPAREN2] = ACTIONS(3141), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_AMP_AMP] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3139), - [anon_sym_SEMI] = ACTIONS(3141), - [anon_sym___extension__] = ACTIONS(3139), - [anon_sym_typedef] = ACTIONS(3139), - [anon_sym_extern] = ACTIONS(3139), - [anon_sym___attribute__] = ACTIONS(3139), - [anon_sym_COLON_COLON] = ACTIONS(3141), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3141), - [anon_sym___declspec] = ACTIONS(3139), - [anon_sym___based] = ACTIONS(3139), - [anon_sym___cdecl] = ACTIONS(3139), - [anon_sym___clrcall] = ACTIONS(3139), - [anon_sym___stdcall] = ACTIONS(3139), - [anon_sym___fastcall] = ACTIONS(3139), - [anon_sym___thiscall] = ACTIONS(3139), - [anon_sym___vectorcall] = ACTIONS(3139), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_signed] = ACTIONS(3139), - [anon_sym_unsigned] = ACTIONS(3139), - [anon_sym_long] = ACTIONS(3139), - [anon_sym_short] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_static] = ACTIONS(3139), - [anon_sym_register] = ACTIONS(3139), - [anon_sym_inline] = ACTIONS(3139), - [anon_sym___inline] = ACTIONS(3139), - [anon_sym___inline__] = ACTIONS(3139), - [anon_sym___forceinline] = ACTIONS(3139), - [anon_sym_thread_local] = ACTIONS(3139), - [anon_sym___thread] = ACTIONS(3139), - [anon_sym_const] = ACTIONS(3139), - [anon_sym_constexpr] = ACTIONS(3139), - [anon_sym_volatile] = ACTIONS(3139), - [anon_sym_restrict] = ACTIONS(3139), - [anon_sym___restrict__] = ACTIONS(3139), - [anon_sym__Atomic] = ACTIONS(3139), - [anon_sym__Noreturn] = ACTIONS(3139), - [anon_sym_noreturn] = ACTIONS(3139), - [anon_sym_mutable] = ACTIONS(3139), - [anon_sym_constinit] = ACTIONS(3139), - [anon_sym_consteval] = ACTIONS(3139), - [sym_primitive_type] = ACTIONS(3139), - [anon_sym_enum] = ACTIONS(3139), - [anon_sym_class] = ACTIONS(3139), - [anon_sym_struct] = ACTIONS(3139), - [anon_sym_union] = ACTIONS(3139), - [anon_sym_if] = ACTIONS(3139), - [anon_sym_else] = ACTIONS(3139), - [anon_sym_switch] = ACTIONS(3139), - [anon_sym_case] = ACTIONS(3139), - [anon_sym_default] = ACTIONS(3139), - [anon_sym_while] = ACTIONS(3139), - [anon_sym_do] = ACTIONS(3139), - [anon_sym_for] = ACTIONS(3139), - [anon_sym_return] = ACTIONS(3139), - [anon_sym_break] = ACTIONS(3139), - [anon_sym_continue] = ACTIONS(3139), - [anon_sym_goto] = ACTIONS(3139), - [anon_sym___try] = ACTIONS(3139), - [anon_sym___leave] = ACTIONS(3139), - [anon_sym_not] = ACTIONS(3139), - [anon_sym_compl] = ACTIONS(3139), - [anon_sym_DASH_DASH] = ACTIONS(3141), - [anon_sym_PLUS_PLUS] = ACTIONS(3141), - [anon_sym_sizeof] = ACTIONS(3139), - [anon_sym___alignof__] = ACTIONS(3139), - [anon_sym___alignof] = ACTIONS(3139), - [anon_sym__alignof] = ACTIONS(3139), - [anon_sym_alignof] = ACTIONS(3139), - [anon_sym__Alignof] = ACTIONS(3139), - [anon_sym_offsetof] = ACTIONS(3139), - [anon_sym__Generic] = ACTIONS(3139), - [anon_sym_asm] = ACTIONS(3139), - [anon_sym___asm__] = ACTIONS(3139), - [sym_number_literal] = ACTIONS(3141), - [anon_sym_L_SQUOTE] = ACTIONS(3141), - [anon_sym_u_SQUOTE] = ACTIONS(3141), - [anon_sym_U_SQUOTE] = ACTIONS(3141), - [anon_sym_u8_SQUOTE] = ACTIONS(3141), - [anon_sym_SQUOTE] = ACTIONS(3141), - [anon_sym_L_DQUOTE] = ACTIONS(3141), - [anon_sym_u_DQUOTE] = ACTIONS(3141), - [anon_sym_U_DQUOTE] = ACTIONS(3141), - [anon_sym_u8_DQUOTE] = ACTIONS(3141), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym_true] = ACTIONS(3139), - [sym_false] = ACTIONS(3139), - [anon_sym_NULL] = ACTIONS(3139), - [anon_sym_nullptr] = ACTIONS(3139), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3139), - [anon_sym_decltype] = ACTIONS(3139), - [anon_sym_virtual] = ACTIONS(3139), - [anon_sym_alignas] = ACTIONS(3139), - [anon_sym_explicit] = ACTIONS(3139), - [anon_sym_typename] = ACTIONS(3139), - [anon_sym_template] = ACTIONS(3139), - [anon_sym_operator] = ACTIONS(3139), - [anon_sym_try] = ACTIONS(3139), - [anon_sym_delete] = ACTIONS(3139), - [anon_sym_throw] = ACTIONS(3139), - [anon_sym_namespace] = ACTIONS(3139), - [anon_sym_using] = ACTIONS(3139), - [anon_sym_static_assert] = ACTIONS(3139), - [anon_sym_concept] = ACTIONS(3139), - [anon_sym_co_return] = ACTIONS(3139), - [anon_sym_co_yield] = ACTIONS(3139), - [anon_sym_R_DQUOTE] = ACTIONS(3141), - [anon_sym_LR_DQUOTE] = ACTIONS(3141), - [anon_sym_uR_DQUOTE] = ACTIONS(3141), - [anon_sym_UR_DQUOTE] = ACTIONS(3141), - [anon_sym_u8R_DQUOTE] = ACTIONS(3141), - [anon_sym_co_await] = ACTIONS(3139), - [anon_sym_new] = ACTIONS(3139), - [anon_sym_requires] = ACTIONS(3139), - [sym_this] = ACTIONS(3139), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3141), - [sym_semgrep_named_ellipsis] = ACTIONS(3141), - }, - [316] = { + [326] = { [sym_identifier] = ACTIONS(3143), [aux_sym_preproc_include_token1] = ACTIONS(3143), [aux_sym_preproc_def_token1] = ACTIONS(3143), @@ -109283,7 +100858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3145), [sym_semgrep_named_ellipsis] = ACTIONS(3145), }, - [317] = { + [327] = { [sym_identifier] = ACTIONS(3147), [aux_sym_preproc_include_token1] = ACTIONS(3147), [aux_sym_preproc_def_token1] = ACTIONS(3147), @@ -109423,7 +100998,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3149), [sym_semgrep_named_ellipsis] = ACTIONS(3149), }, - [318] = { + [328] = { [sym_identifier] = ACTIONS(3151), [aux_sym_preproc_include_token1] = ACTIONS(3151), [aux_sym_preproc_def_token1] = ACTIONS(3151), @@ -109563,7 +101138,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3153), [sym_semgrep_named_ellipsis] = ACTIONS(3153), }, - [319] = { + [329] = { [sym_identifier] = ACTIONS(3155), [aux_sym_preproc_include_token1] = ACTIONS(3155), [aux_sym_preproc_def_token1] = ACTIONS(3155), @@ -109703,7 +101278,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3157), [sym_semgrep_named_ellipsis] = ACTIONS(3157), }, - [320] = { + [330] = { [sym_identifier] = ACTIONS(3159), [aux_sym_preproc_include_token1] = ACTIONS(3159), [aux_sym_preproc_def_token1] = ACTIONS(3159), @@ -109843,7 +101418,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3161), [sym_semgrep_named_ellipsis] = ACTIONS(3161), }, - [321] = { + [331] = { [sym_identifier] = ACTIONS(3163), [aux_sym_preproc_include_token1] = ACTIONS(3163), [aux_sym_preproc_def_token1] = ACTIONS(3163), @@ -109983,7 +101558,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3165), [sym_semgrep_named_ellipsis] = ACTIONS(3165), }, - [322] = { + [332] = { [sym_identifier] = ACTIONS(3167), [aux_sym_preproc_include_token1] = ACTIONS(3167), [aux_sym_preproc_def_token1] = ACTIONS(3167), @@ -110123,7 +101698,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3169), [sym_semgrep_named_ellipsis] = ACTIONS(3169), }, - [323] = { + [333] = { [sym_identifier] = ACTIONS(3171), [aux_sym_preproc_include_token1] = ACTIONS(3171), [aux_sym_preproc_def_token1] = ACTIONS(3171), @@ -110263,7 +101838,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3173), [sym_semgrep_named_ellipsis] = ACTIONS(3173), }, - [324] = { + [334] = { [sym_identifier] = ACTIONS(3175), [aux_sym_preproc_include_token1] = ACTIONS(3175), [aux_sym_preproc_def_token1] = ACTIONS(3175), @@ -110403,567 +101978,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3177), [sym_semgrep_named_ellipsis] = ACTIONS(3177), }, - [325] = { - [sym_catch_clause] = STATE(306), - [aux_sym_constructor_try_statement_repeat1] = STATE(306), - [sym_identifier] = ACTIONS(3070), - [aux_sym_preproc_include_token1] = ACTIONS(3070), - [aux_sym_preproc_def_token1] = ACTIONS(3070), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3072), - [aux_sym_preproc_if_token1] = ACTIONS(3070), - [aux_sym_preproc_if_token2] = ACTIONS(3070), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3070), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3070), - [aux_sym_preproc_else_token1] = ACTIONS(3070), - [aux_sym_preproc_elif_token1] = ACTIONS(3070), - [sym_preproc_directive] = ACTIONS(3070), - [anon_sym_LPAREN2] = ACTIONS(3072), - [anon_sym_BANG] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_AMP] = ACTIONS(3070), - [anon_sym_SEMI] = ACTIONS(3072), - [anon_sym___extension__] = ACTIONS(3070), - [anon_sym_typedef] = ACTIONS(3070), - [anon_sym_extern] = ACTIONS(3070), - [anon_sym___attribute__] = ACTIONS(3070), - [anon_sym_COLON_COLON] = ACTIONS(3072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3072), - [anon_sym___declspec] = ACTIONS(3070), - [anon_sym___based] = ACTIONS(3070), - [anon_sym___cdecl] = ACTIONS(3070), - [anon_sym___clrcall] = ACTIONS(3070), - [anon_sym___stdcall] = ACTIONS(3070), - [anon_sym___fastcall] = ACTIONS(3070), - [anon_sym___thiscall] = ACTIONS(3070), - [anon_sym___vectorcall] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_signed] = ACTIONS(3070), - [anon_sym_unsigned] = ACTIONS(3070), - [anon_sym_long] = ACTIONS(3070), - [anon_sym_short] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(3070), - [anon_sym_static] = ACTIONS(3070), - [anon_sym_register] = ACTIONS(3070), - [anon_sym_inline] = ACTIONS(3070), - [anon_sym___inline] = ACTIONS(3070), - [anon_sym___inline__] = ACTIONS(3070), - [anon_sym___forceinline] = ACTIONS(3070), - [anon_sym_thread_local] = ACTIONS(3070), - [anon_sym___thread] = ACTIONS(3070), - [anon_sym_const] = ACTIONS(3070), - [anon_sym_constexpr] = ACTIONS(3070), - [anon_sym_volatile] = ACTIONS(3070), - [anon_sym_restrict] = ACTIONS(3070), - [anon_sym___restrict__] = ACTIONS(3070), - [anon_sym__Atomic] = ACTIONS(3070), - [anon_sym__Noreturn] = ACTIONS(3070), - [anon_sym_noreturn] = ACTIONS(3070), - [anon_sym_mutable] = ACTIONS(3070), - [anon_sym_constinit] = ACTIONS(3070), - [anon_sym_consteval] = ACTIONS(3070), - [sym_primitive_type] = ACTIONS(3070), - [anon_sym_enum] = ACTIONS(3070), - [anon_sym_class] = ACTIONS(3070), - [anon_sym_struct] = ACTIONS(3070), - [anon_sym_union] = ACTIONS(3070), - [anon_sym_if] = ACTIONS(3070), - [anon_sym_switch] = ACTIONS(3070), - [anon_sym_case] = ACTIONS(3070), - [anon_sym_default] = ACTIONS(3070), - [anon_sym_while] = ACTIONS(3070), - [anon_sym_do] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3070), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_break] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(3070), - [anon_sym_goto] = ACTIONS(3070), - [anon_sym___try] = ACTIONS(3070), - [anon_sym___leave] = ACTIONS(3070), - [anon_sym_not] = ACTIONS(3070), - [anon_sym_compl] = ACTIONS(3070), - [anon_sym_DASH_DASH] = ACTIONS(3072), - [anon_sym_PLUS_PLUS] = ACTIONS(3072), - [anon_sym_sizeof] = ACTIONS(3070), - [anon_sym___alignof__] = ACTIONS(3070), - [anon_sym___alignof] = ACTIONS(3070), - [anon_sym__alignof] = ACTIONS(3070), - [anon_sym_alignof] = ACTIONS(3070), - [anon_sym__Alignof] = ACTIONS(3070), - [anon_sym_offsetof] = ACTIONS(3070), - [anon_sym__Generic] = ACTIONS(3070), - [anon_sym_asm] = ACTIONS(3070), - [anon_sym___asm__] = ACTIONS(3070), - [sym_number_literal] = ACTIONS(3072), - [anon_sym_L_SQUOTE] = ACTIONS(3072), - [anon_sym_u_SQUOTE] = ACTIONS(3072), - [anon_sym_U_SQUOTE] = ACTIONS(3072), - [anon_sym_u8_SQUOTE] = ACTIONS(3072), - [anon_sym_SQUOTE] = ACTIONS(3072), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3070), - [sym_false] = ACTIONS(3070), - [anon_sym_NULL] = ACTIONS(3070), - [anon_sym_nullptr] = ACTIONS(3070), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3070), - [anon_sym_decltype] = ACTIONS(3070), - [anon_sym_virtual] = ACTIONS(3070), - [anon_sym_alignas] = ACTIONS(3070), - [anon_sym_explicit] = ACTIONS(3070), - [anon_sym_typename] = ACTIONS(3070), - [anon_sym_template] = ACTIONS(3070), - [anon_sym_operator] = ACTIONS(3070), - [anon_sym_try] = ACTIONS(3070), - [anon_sym_delete] = ACTIONS(3070), - [anon_sym_throw] = ACTIONS(3070), - [anon_sym_namespace] = ACTIONS(3070), - [anon_sym_using] = ACTIONS(3070), - [anon_sym_static_assert] = ACTIONS(3070), - [anon_sym_concept] = ACTIONS(3070), - [anon_sym_co_return] = ACTIONS(3070), - [anon_sym_co_yield] = ACTIONS(3070), - [anon_sym_catch] = ACTIONS(3092), - [anon_sym_R_DQUOTE] = ACTIONS(3072), - [anon_sym_LR_DQUOTE] = ACTIONS(3072), - [anon_sym_uR_DQUOTE] = ACTIONS(3072), - [anon_sym_UR_DQUOTE] = ACTIONS(3072), - [anon_sym_u8R_DQUOTE] = ACTIONS(3072), - [anon_sym_co_await] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3070), - [anon_sym_requires] = ACTIONS(3070), - [sym_this] = ACTIONS(3070), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3072), - [sym_semgrep_named_ellipsis] = ACTIONS(3072), - }, - [326] = { - [sym_identifier] = ACTIONS(3179), - [aux_sym_preproc_include_token1] = ACTIONS(3179), - [aux_sym_preproc_def_token1] = ACTIONS(3179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3181), - [aux_sym_preproc_if_token1] = ACTIONS(3179), - [aux_sym_preproc_if_token2] = ACTIONS(3179), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3179), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3179), - [aux_sym_preproc_else_token1] = ACTIONS(3179), - [aux_sym_preproc_elif_token1] = ACTIONS(3179), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3179), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3179), - [sym_preproc_directive] = ACTIONS(3179), - [anon_sym_LPAREN2] = ACTIONS(3181), - [anon_sym_BANG] = ACTIONS(3181), - [anon_sym_TILDE] = ACTIONS(3181), - [anon_sym_DASH] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_STAR] = ACTIONS(3181), - [anon_sym_AMP_AMP] = ACTIONS(3181), - [anon_sym_AMP] = ACTIONS(3179), - [anon_sym_SEMI] = ACTIONS(3181), - [anon_sym___extension__] = ACTIONS(3179), - [anon_sym_typedef] = ACTIONS(3179), - [anon_sym_extern] = ACTIONS(3179), - [anon_sym___attribute__] = ACTIONS(3179), - [anon_sym_COLON_COLON] = ACTIONS(3181), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3181), - [anon_sym___declspec] = ACTIONS(3179), - [anon_sym___based] = ACTIONS(3179), - [anon_sym___cdecl] = ACTIONS(3179), - [anon_sym___clrcall] = ACTIONS(3179), - [anon_sym___stdcall] = ACTIONS(3179), - [anon_sym___fastcall] = ACTIONS(3179), - [anon_sym___thiscall] = ACTIONS(3179), - [anon_sym___vectorcall] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3181), - [anon_sym_signed] = ACTIONS(3179), - [anon_sym_unsigned] = ACTIONS(3179), - [anon_sym_long] = ACTIONS(3179), - [anon_sym_short] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_static] = ACTIONS(3179), - [anon_sym_register] = ACTIONS(3179), - [anon_sym_inline] = ACTIONS(3179), - [anon_sym___inline] = ACTIONS(3179), - [anon_sym___inline__] = ACTIONS(3179), - [anon_sym___forceinline] = ACTIONS(3179), - [anon_sym_thread_local] = ACTIONS(3179), - [anon_sym___thread] = ACTIONS(3179), - [anon_sym_const] = ACTIONS(3179), - [anon_sym_constexpr] = ACTIONS(3179), - [anon_sym_volatile] = ACTIONS(3179), - [anon_sym_restrict] = ACTIONS(3179), - [anon_sym___restrict__] = ACTIONS(3179), - [anon_sym__Atomic] = ACTIONS(3179), - [anon_sym__Noreturn] = ACTIONS(3179), - [anon_sym_noreturn] = ACTIONS(3179), - [anon_sym_mutable] = ACTIONS(3179), - [anon_sym_constinit] = ACTIONS(3179), - [anon_sym_consteval] = ACTIONS(3179), - [sym_primitive_type] = ACTIONS(3179), - [anon_sym_enum] = ACTIONS(3179), - [anon_sym_class] = ACTIONS(3179), - [anon_sym_struct] = ACTIONS(3179), - [anon_sym_union] = ACTIONS(3179), - [anon_sym_if] = ACTIONS(3179), - [anon_sym_else] = ACTIONS(3179), - [anon_sym_switch] = ACTIONS(3179), - [anon_sym_case] = ACTIONS(3179), - [anon_sym_default] = ACTIONS(3179), - [anon_sym_while] = ACTIONS(3179), - [anon_sym_do] = ACTIONS(3179), - [anon_sym_for] = ACTIONS(3179), - [anon_sym_return] = ACTIONS(3179), - [anon_sym_break] = ACTIONS(3179), - [anon_sym_continue] = ACTIONS(3179), - [anon_sym_goto] = ACTIONS(3179), - [anon_sym___try] = ACTIONS(3179), - [anon_sym___leave] = ACTIONS(3179), - [anon_sym_not] = ACTIONS(3179), - [anon_sym_compl] = ACTIONS(3179), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_sizeof] = ACTIONS(3179), - [anon_sym___alignof__] = ACTIONS(3179), - [anon_sym___alignof] = ACTIONS(3179), - [anon_sym__alignof] = ACTIONS(3179), - [anon_sym_alignof] = ACTIONS(3179), - [anon_sym__Alignof] = ACTIONS(3179), - [anon_sym_offsetof] = ACTIONS(3179), - [anon_sym__Generic] = ACTIONS(3179), - [anon_sym_asm] = ACTIONS(3179), - [anon_sym___asm__] = ACTIONS(3179), - [sym_number_literal] = ACTIONS(3181), - [anon_sym_L_SQUOTE] = ACTIONS(3181), - [anon_sym_u_SQUOTE] = ACTIONS(3181), - [anon_sym_U_SQUOTE] = ACTIONS(3181), - [anon_sym_u8_SQUOTE] = ACTIONS(3181), - [anon_sym_SQUOTE] = ACTIONS(3181), - [anon_sym_L_DQUOTE] = ACTIONS(3181), - [anon_sym_u_DQUOTE] = ACTIONS(3181), - [anon_sym_U_DQUOTE] = ACTIONS(3181), - [anon_sym_u8_DQUOTE] = ACTIONS(3181), - [anon_sym_DQUOTE] = ACTIONS(3181), - [sym_true] = ACTIONS(3179), - [sym_false] = ACTIONS(3179), - [anon_sym_NULL] = ACTIONS(3179), - [anon_sym_nullptr] = ACTIONS(3179), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3179), - [anon_sym_decltype] = ACTIONS(3179), - [anon_sym_virtual] = ACTIONS(3179), - [anon_sym_alignas] = ACTIONS(3179), - [anon_sym_explicit] = ACTIONS(3179), - [anon_sym_typename] = ACTIONS(3179), - [anon_sym_template] = ACTIONS(3179), - [anon_sym_operator] = ACTIONS(3179), - [anon_sym_try] = ACTIONS(3179), - [anon_sym_delete] = ACTIONS(3179), - [anon_sym_throw] = ACTIONS(3179), - [anon_sym_namespace] = ACTIONS(3179), - [anon_sym_using] = ACTIONS(3179), - [anon_sym_static_assert] = ACTIONS(3179), - [anon_sym_concept] = ACTIONS(3179), - [anon_sym_co_return] = ACTIONS(3179), - [anon_sym_co_yield] = ACTIONS(3179), - [anon_sym_R_DQUOTE] = ACTIONS(3181), - [anon_sym_LR_DQUOTE] = ACTIONS(3181), - [anon_sym_uR_DQUOTE] = ACTIONS(3181), - [anon_sym_UR_DQUOTE] = ACTIONS(3181), - [anon_sym_u8R_DQUOTE] = ACTIONS(3181), - [anon_sym_co_await] = ACTIONS(3179), - [anon_sym_new] = ACTIONS(3179), - [anon_sym_requires] = ACTIONS(3179), - [sym_this] = ACTIONS(3179), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3181), - [sym_semgrep_named_ellipsis] = ACTIONS(3181), - }, - [327] = { - [sym_identifier] = ACTIONS(3183), - [aux_sym_preproc_include_token1] = ACTIONS(3183), - [aux_sym_preproc_def_token1] = ACTIONS(3183), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3185), - [aux_sym_preproc_if_token1] = ACTIONS(3183), - [aux_sym_preproc_if_token2] = ACTIONS(3183), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3183), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3183), - [aux_sym_preproc_else_token1] = ACTIONS(3183), - [aux_sym_preproc_elif_token1] = ACTIONS(3183), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3183), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3183), - [sym_preproc_directive] = ACTIONS(3183), - [anon_sym_LPAREN2] = ACTIONS(3185), - [anon_sym_BANG] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3183), - [anon_sym_PLUS] = ACTIONS(3183), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_AMP_AMP] = ACTIONS(3185), - [anon_sym_AMP] = ACTIONS(3183), - [anon_sym_SEMI] = ACTIONS(3185), - [anon_sym___extension__] = ACTIONS(3183), - [anon_sym_typedef] = ACTIONS(3183), - [anon_sym_extern] = ACTIONS(3183), - [anon_sym___attribute__] = ACTIONS(3183), - [anon_sym_COLON_COLON] = ACTIONS(3185), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3185), - [anon_sym___declspec] = ACTIONS(3183), - [anon_sym___based] = ACTIONS(3183), - [anon_sym___cdecl] = ACTIONS(3183), - [anon_sym___clrcall] = ACTIONS(3183), - [anon_sym___stdcall] = ACTIONS(3183), - [anon_sym___fastcall] = ACTIONS(3183), - [anon_sym___thiscall] = ACTIONS(3183), - [anon_sym___vectorcall] = ACTIONS(3183), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_signed] = ACTIONS(3183), - [anon_sym_unsigned] = ACTIONS(3183), - [anon_sym_long] = ACTIONS(3183), - [anon_sym_short] = ACTIONS(3183), - [anon_sym_LBRACK] = ACTIONS(3183), - [anon_sym_static] = ACTIONS(3183), - [anon_sym_register] = ACTIONS(3183), - [anon_sym_inline] = ACTIONS(3183), - [anon_sym___inline] = ACTIONS(3183), - [anon_sym___inline__] = ACTIONS(3183), - [anon_sym___forceinline] = ACTIONS(3183), - [anon_sym_thread_local] = ACTIONS(3183), - [anon_sym___thread] = ACTIONS(3183), - [anon_sym_const] = ACTIONS(3183), - [anon_sym_constexpr] = ACTIONS(3183), - [anon_sym_volatile] = ACTIONS(3183), - [anon_sym_restrict] = ACTIONS(3183), - [anon_sym___restrict__] = ACTIONS(3183), - [anon_sym__Atomic] = ACTIONS(3183), - [anon_sym__Noreturn] = ACTIONS(3183), - [anon_sym_noreturn] = ACTIONS(3183), - [anon_sym_mutable] = ACTIONS(3183), - [anon_sym_constinit] = ACTIONS(3183), - [anon_sym_consteval] = ACTIONS(3183), - [sym_primitive_type] = ACTIONS(3183), - [anon_sym_enum] = ACTIONS(3183), - [anon_sym_class] = ACTIONS(3183), - [anon_sym_struct] = ACTIONS(3183), - [anon_sym_union] = ACTIONS(3183), - [anon_sym_if] = ACTIONS(3183), - [anon_sym_else] = ACTIONS(3183), - [anon_sym_switch] = ACTIONS(3183), - [anon_sym_case] = ACTIONS(3183), - [anon_sym_default] = ACTIONS(3183), - [anon_sym_while] = ACTIONS(3183), - [anon_sym_do] = ACTIONS(3183), - [anon_sym_for] = ACTIONS(3183), - [anon_sym_return] = ACTIONS(3183), - [anon_sym_break] = ACTIONS(3183), - [anon_sym_continue] = ACTIONS(3183), - [anon_sym_goto] = ACTIONS(3183), - [anon_sym___try] = ACTIONS(3183), - [anon_sym___leave] = ACTIONS(3183), - [anon_sym_not] = ACTIONS(3183), - [anon_sym_compl] = ACTIONS(3183), - [anon_sym_DASH_DASH] = ACTIONS(3185), - [anon_sym_PLUS_PLUS] = ACTIONS(3185), - [anon_sym_sizeof] = ACTIONS(3183), - [anon_sym___alignof__] = ACTIONS(3183), - [anon_sym___alignof] = ACTIONS(3183), - [anon_sym__alignof] = ACTIONS(3183), - [anon_sym_alignof] = ACTIONS(3183), - [anon_sym__Alignof] = ACTIONS(3183), - [anon_sym_offsetof] = ACTIONS(3183), - [anon_sym__Generic] = ACTIONS(3183), - [anon_sym_asm] = ACTIONS(3183), - [anon_sym___asm__] = ACTIONS(3183), - [sym_number_literal] = ACTIONS(3185), - [anon_sym_L_SQUOTE] = ACTIONS(3185), - [anon_sym_u_SQUOTE] = ACTIONS(3185), - [anon_sym_U_SQUOTE] = ACTIONS(3185), - [anon_sym_u8_SQUOTE] = ACTIONS(3185), - [anon_sym_SQUOTE] = ACTIONS(3185), - [anon_sym_L_DQUOTE] = ACTIONS(3185), - [anon_sym_u_DQUOTE] = ACTIONS(3185), - [anon_sym_U_DQUOTE] = ACTIONS(3185), - [anon_sym_u8_DQUOTE] = ACTIONS(3185), - [anon_sym_DQUOTE] = ACTIONS(3185), - [sym_true] = ACTIONS(3183), - [sym_false] = ACTIONS(3183), - [anon_sym_NULL] = ACTIONS(3183), - [anon_sym_nullptr] = ACTIONS(3183), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3183), - [anon_sym_decltype] = ACTIONS(3183), - [anon_sym_virtual] = ACTIONS(3183), - [anon_sym_alignas] = ACTIONS(3183), - [anon_sym_explicit] = ACTIONS(3183), - [anon_sym_typename] = ACTIONS(3183), - [anon_sym_template] = ACTIONS(3183), - [anon_sym_operator] = ACTIONS(3183), - [anon_sym_try] = ACTIONS(3183), - [anon_sym_delete] = ACTIONS(3183), - [anon_sym_throw] = ACTIONS(3183), - [anon_sym_namespace] = ACTIONS(3183), - [anon_sym_using] = ACTIONS(3183), - [anon_sym_static_assert] = ACTIONS(3183), - [anon_sym_concept] = ACTIONS(3183), - [anon_sym_co_return] = ACTIONS(3183), - [anon_sym_co_yield] = ACTIONS(3183), - [anon_sym_R_DQUOTE] = ACTIONS(3185), - [anon_sym_LR_DQUOTE] = ACTIONS(3185), - [anon_sym_uR_DQUOTE] = ACTIONS(3185), - [anon_sym_UR_DQUOTE] = ACTIONS(3185), - [anon_sym_u8R_DQUOTE] = ACTIONS(3185), - [anon_sym_co_await] = ACTIONS(3183), - [anon_sym_new] = ACTIONS(3183), - [anon_sym_requires] = ACTIONS(3183), - [sym_this] = ACTIONS(3183), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3185), - [sym_semgrep_named_ellipsis] = ACTIONS(3185), + [335] = { + [sym_expression] = STATE(5345), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9376), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(3179), + [anon_sym___extension__] = ACTIONS(3181), + [anon_sym_extern] = ACTIONS(3181), + [anon_sym___attribute__] = ACTIONS(3181), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3183), + [anon_sym___declspec] = ACTIONS(3181), + [anon_sym_signed] = ACTIONS(3181), + [anon_sym_unsigned] = ACTIONS(3181), + [anon_sym_long] = ACTIONS(3181), + [anon_sym_short] = ACTIONS(3181), + [anon_sym_LBRACK] = ACTIONS(1532), + [anon_sym_static] = ACTIONS(3181), + [anon_sym_register] = ACTIONS(3181), + [anon_sym_inline] = ACTIONS(3181), + [anon_sym___inline] = ACTIONS(3181), + [anon_sym___inline__] = ACTIONS(3181), + [anon_sym___forceinline] = ACTIONS(3181), + [anon_sym_thread_local] = ACTIONS(3181), + [anon_sym___thread] = ACTIONS(3181), + [anon_sym_const] = ACTIONS(3181), + [anon_sym_constexpr] = ACTIONS(3181), + [anon_sym_volatile] = ACTIONS(3181), + [anon_sym_restrict] = ACTIONS(3181), + [anon_sym___restrict__] = ACTIONS(3181), + [anon_sym__Atomic] = ACTIONS(3181), + [anon_sym__Noreturn] = ACTIONS(3181), + [anon_sym_noreturn] = ACTIONS(3181), + [anon_sym_mutable] = ACTIONS(3181), + [anon_sym_constinit] = ACTIONS(3181), + [anon_sym_consteval] = ACTIONS(3181), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_enum] = ACTIONS(3181), + [anon_sym_class] = ACTIONS(3181), + [anon_sym_struct] = ACTIONS(3181), + [anon_sym_union] = ACTIONS(3181), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3181), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_virtual] = ACTIONS(3181), + [anon_sym_alignas] = ACTIONS(3181), + [anon_sym_typename] = ACTIONS(3181), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [328] = { - [sym_identifier] = ACTIONS(3078), - [aux_sym_preproc_include_token1] = ACTIONS(3078), - [aux_sym_preproc_def_token1] = ACTIONS(3078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3080), - [anon_sym_COMMA] = ACTIONS(3187), - [aux_sym_preproc_if_token1] = ACTIONS(3078), - [aux_sym_preproc_if_token2] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3078), - [aux_sym_preproc_else_token1] = ACTIONS(3078), - [aux_sym_preproc_elif_token1] = ACTIONS(3078), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3078), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3078), - [sym_preproc_directive] = ACTIONS(3078), - [anon_sym_LPAREN2] = ACTIONS(3080), - [anon_sym_BANG] = ACTIONS(3080), - [anon_sym_TILDE] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_AMP] = ACTIONS(3078), + [336] = { + [sym_identifier] = ACTIONS(3185), + [aux_sym_preproc_include_token1] = ACTIONS(3185), + [aux_sym_preproc_def_token1] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3187), + [aux_sym_preproc_if_token1] = ACTIONS(3185), + [aux_sym_preproc_if_token2] = ACTIONS(3185), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3185), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3185), + [aux_sym_preproc_else_token1] = ACTIONS(3185), + [aux_sym_preproc_elif_token1] = ACTIONS(3185), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3185), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3185), + [sym_preproc_directive] = ACTIONS(3185), + [anon_sym_LPAREN2] = ACTIONS(3187), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_TILDE] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3185), + [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(3187), + [anon_sym_AMP_AMP] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(3185), [anon_sym_SEMI] = ACTIONS(3187), - [anon_sym___extension__] = ACTIONS(3078), - [anon_sym_typedef] = ACTIONS(3078), - [anon_sym_extern] = ACTIONS(3078), - [anon_sym___attribute__] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3080), - [anon_sym___declspec] = ACTIONS(3078), - [anon_sym___based] = ACTIONS(3078), - [anon_sym___cdecl] = ACTIONS(3078), - [anon_sym___clrcall] = ACTIONS(3078), - [anon_sym___stdcall] = ACTIONS(3078), - [anon_sym___fastcall] = ACTIONS(3078), - [anon_sym___thiscall] = ACTIONS(3078), - [anon_sym___vectorcall] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_signed] = ACTIONS(3078), - [anon_sym_unsigned] = ACTIONS(3078), - [anon_sym_long] = ACTIONS(3078), - [anon_sym_short] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_static] = ACTIONS(3078), - [anon_sym_register] = ACTIONS(3078), - [anon_sym_inline] = ACTIONS(3078), - [anon_sym___inline] = ACTIONS(3078), - [anon_sym___inline__] = ACTIONS(3078), - [anon_sym___forceinline] = ACTIONS(3078), - [anon_sym_thread_local] = ACTIONS(3078), - [anon_sym___thread] = ACTIONS(3078), - [anon_sym_const] = ACTIONS(3078), - [anon_sym_constexpr] = ACTIONS(3078), - [anon_sym_volatile] = ACTIONS(3078), - [anon_sym_restrict] = ACTIONS(3078), - [anon_sym___restrict__] = ACTIONS(3078), - [anon_sym__Atomic] = ACTIONS(3078), - [anon_sym__Noreturn] = ACTIONS(3078), - [anon_sym_noreturn] = ACTIONS(3078), - [anon_sym_mutable] = ACTIONS(3078), - [anon_sym_constinit] = ACTIONS(3078), - [anon_sym_consteval] = ACTIONS(3078), - [sym_primitive_type] = ACTIONS(3078), - [anon_sym_enum] = ACTIONS(3078), - [anon_sym_class] = ACTIONS(3078), - [anon_sym_struct] = ACTIONS(3078), - [anon_sym_union] = ACTIONS(3078), - [anon_sym_if] = ACTIONS(3078), - [anon_sym_switch] = ACTIONS(3078), - [anon_sym_case] = ACTIONS(3078), - [anon_sym_default] = ACTIONS(3078), - [anon_sym_while] = ACTIONS(3078), - [anon_sym_do] = ACTIONS(3078), - [anon_sym_for] = ACTIONS(3078), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_break] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(3078), - [anon_sym_goto] = ACTIONS(3078), - [anon_sym___try] = ACTIONS(3078), - [anon_sym___leave] = ACTIONS(3078), - [anon_sym_not] = ACTIONS(3078), - [anon_sym_compl] = ACTIONS(3078), - [anon_sym_DASH_DASH] = ACTIONS(3080), - [anon_sym_PLUS_PLUS] = ACTIONS(3080), - [anon_sym_sizeof] = ACTIONS(3078), - [anon_sym___alignof__] = ACTIONS(3078), - [anon_sym___alignof] = ACTIONS(3078), - [anon_sym__alignof] = ACTIONS(3078), - [anon_sym_alignof] = ACTIONS(3078), - [anon_sym__Alignof] = ACTIONS(3078), - [anon_sym_offsetof] = ACTIONS(3078), - [anon_sym__Generic] = ACTIONS(3078), - [anon_sym_asm] = ACTIONS(3078), - [anon_sym___asm__] = ACTIONS(3078), - [sym_number_literal] = ACTIONS(3080), - [anon_sym_L_SQUOTE] = ACTIONS(3080), - [anon_sym_u_SQUOTE] = ACTIONS(3080), - [anon_sym_U_SQUOTE] = ACTIONS(3080), - [anon_sym_u8_SQUOTE] = ACTIONS(3080), - [anon_sym_SQUOTE] = ACTIONS(3080), - [anon_sym_L_DQUOTE] = ACTIONS(3080), - [anon_sym_u_DQUOTE] = ACTIONS(3080), - [anon_sym_U_DQUOTE] = ACTIONS(3080), - [anon_sym_u8_DQUOTE] = ACTIONS(3080), - [anon_sym_DQUOTE] = ACTIONS(3080), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [anon_sym_NULL] = ACTIONS(3078), - [anon_sym_nullptr] = ACTIONS(3078), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3078), - [anon_sym_decltype] = ACTIONS(3078), - [anon_sym_virtual] = ACTIONS(3078), - [anon_sym_alignas] = ACTIONS(3078), - [anon_sym_explicit] = ACTIONS(3078), - [anon_sym_typename] = ACTIONS(3078), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_operator] = ACTIONS(3078), - [anon_sym_try] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3078), - [anon_sym_throw] = ACTIONS(3078), - [anon_sym_namespace] = ACTIONS(3078), - [anon_sym_using] = ACTIONS(3078), - [anon_sym_static_assert] = ACTIONS(3078), - [anon_sym_concept] = ACTIONS(3078), - [anon_sym_co_return] = ACTIONS(3078), - [anon_sym_co_yield] = ACTIONS(3078), - [anon_sym_R_DQUOTE] = ACTIONS(3080), - [anon_sym_LR_DQUOTE] = ACTIONS(3080), - [anon_sym_uR_DQUOTE] = ACTIONS(3080), - [anon_sym_UR_DQUOTE] = ACTIONS(3080), - [anon_sym_u8R_DQUOTE] = ACTIONS(3080), - [anon_sym_co_await] = ACTIONS(3078), - [anon_sym_new] = ACTIONS(3078), - [anon_sym_requires] = ACTIONS(3078), - [sym_this] = ACTIONS(3078), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3080), - [sym_semgrep_named_ellipsis] = ACTIONS(3080), + [anon_sym___extension__] = ACTIONS(3185), + [anon_sym_typedef] = ACTIONS(3185), + [anon_sym_extern] = ACTIONS(3185), + [anon_sym___attribute__] = ACTIONS(3185), + [anon_sym_COLON_COLON] = ACTIONS(3187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3187), + [anon_sym___declspec] = ACTIONS(3185), + [anon_sym___based] = ACTIONS(3185), + [anon_sym___cdecl] = ACTIONS(3185), + [anon_sym___clrcall] = ACTIONS(3185), + [anon_sym___stdcall] = ACTIONS(3185), + [anon_sym___fastcall] = ACTIONS(3185), + [anon_sym___thiscall] = ACTIONS(3185), + [anon_sym___vectorcall] = ACTIONS(3185), + [anon_sym_LBRACE] = ACTIONS(3187), + [anon_sym_signed] = ACTIONS(3185), + [anon_sym_unsigned] = ACTIONS(3185), + [anon_sym_long] = ACTIONS(3185), + [anon_sym_short] = ACTIONS(3185), + [anon_sym_LBRACK] = ACTIONS(3185), + [anon_sym_static] = ACTIONS(3185), + [anon_sym_register] = ACTIONS(3185), + [anon_sym_inline] = ACTIONS(3185), + [anon_sym___inline] = ACTIONS(3185), + [anon_sym___inline__] = ACTIONS(3185), + [anon_sym___forceinline] = ACTIONS(3185), + [anon_sym_thread_local] = ACTIONS(3185), + [anon_sym___thread] = ACTIONS(3185), + [anon_sym_const] = ACTIONS(3185), + [anon_sym_constexpr] = ACTIONS(3185), + [anon_sym_volatile] = ACTIONS(3185), + [anon_sym_restrict] = ACTIONS(3185), + [anon_sym___restrict__] = ACTIONS(3185), + [anon_sym__Atomic] = ACTIONS(3185), + [anon_sym__Noreturn] = ACTIONS(3185), + [anon_sym_noreturn] = ACTIONS(3185), + [anon_sym_mutable] = ACTIONS(3185), + [anon_sym_constinit] = ACTIONS(3185), + [anon_sym_consteval] = ACTIONS(3185), + [sym_primitive_type] = ACTIONS(3185), + [anon_sym_enum] = ACTIONS(3185), + [anon_sym_class] = ACTIONS(3185), + [anon_sym_struct] = ACTIONS(3185), + [anon_sym_union] = ACTIONS(3185), + [anon_sym_if] = ACTIONS(3185), + [anon_sym_else] = ACTIONS(3185), + [anon_sym_switch] = ACTIONS(3185), + [anon_sym_case] = ACTIONS(3185), + [anon_sym_default] = ACTIONS(3185), + [anon_sym_while] = ACTIONS(3185), + [anon_sym_do] = ACTIONS(3185), + [anon_sym_for] = ACTIONS(3185), + [anon_sym_return] = ACTIONS(3185), + [anon_sym_break] = ACTIONS(3185), + [anon_sym_continue] = ACTIONS(3185), + [anon_sym_goto] = ACTIONS(3185), + [anon_sym___try] = ACTIONS(3185), + [anon_sym___leave] = ACTIONS(3185), + [anon_sym_not] = ACTIONS(3185), + [anon_sym_compl] = ACTIONS(3185), + [anon_sym_DASH_DASH] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3187), + [anon_sym_sizeof] = ACTIONS(3185), + [anon_sym___alignof__] = ACTIONS(3185), + [anon_sym___alignof] = ACTIONS(3185), + [anon_sym__alignof] = ACTIONS(3185), + [anon_sym_alignof] = ACTIONS(3185), + [anon_sym__Alignof] = ACTIONS(3185), + [anon_sym_offsetof] = ACTIONS(3185), + [anon_sym__Generic] = ACTIONS(3185), + [anon_sym_asm] = ACTIONS(3185), + [anon_sym___asm__] = ACTIONS(3185), + [sym_number_literal] = ACTIONS(3187), + [anon_sym_L_SQUOTE] = ACTIONS(3187), + [anon_sym_u_SQUOTE] = ACTIONS(3187), + [anon_sym_U_SQUOTE] = ACTIONS(3187), + [anon_sym_u8_SQUOTE] = ACTIONS(3187), + [anon_sym_SQUOTE] = ACTIONS(3187), + [anon_sym_L_DQUOTE] = ACTIONS(3187), + [anon_sym_u_DQUOTE] = ACTIONS(3187), + [anon_sym_U_DQUOTE] = ACTIONS(3187), + [anon_sym_u8_DQUOTE] = ACTIONS(3187), + [anon_sym_DQUOTE] = ACTIONS(3187), + [sym_true] = ACTIONS(3185), + [sym_false] = ACTIONS(3185), + [anon_sym_NULL] = ACTIONS(3185), + [anon_sym_nullptr] = ACTIONS(3185), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3185), + [anon_sym_decltype] = ACTIONS(3185), + [anon_sym_virtual] = ACTIONS(3185), + [anon_sym_alignas] = ACTIONS(3185), + [anon_sym_explicit] = ACTIONS(3185), + [anon_sym_typename] = ACTIONS(3185), + [anon_sym_template] = ACTIONS(3185), + [anon_sym_operator] = ACTIONS(3185), + [anon_sym_try] = ACTIONS(3185), + [anon_sym_delete] = ACTIONS(3185), + [anon_sym_throw] = ACTIONS(3185), + [anon_sym_namespace] = ACTIONS(3185), + [anon_sym_using] = ACTIONS(3185), + [anon_sym_static_assert] = ACTIONS(3185), + [anon_sym_concept] = ACTIONS(3185), + [anon_sym_co_return] = ACTIONS(3185), + [anon_sym_co_yield] = ACTIONS(3185), + [anon_sym_R_DQUOTE] = ACTIONS(3187), + [anon_sym_LR_DQUOTE] = ACTIONS(3187), + [anon_sym_uR_DQUOTE] = ACTIONS(3187), + [anon_sym_UR_DQUOTE] = ACTIONS(3187), + [anon_sym_u8R_DQUOTE] = ACTIONS(3187), + [anon_sym_co_await] = ACTIONS(3185), + [anon_sym_new] = ACTIONS(3185), + [anon_sym_requires] = ACTIONS(3185), + [sym_this] = ACTIONS(3185), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3187), + [sym_semgrep_named_ellipsis] = ACTIONS(3187), }, - [329] = { + [337] = { [sym_identifier] = ACTIONS(3189), [aux_sym_preproc_include_token1] = ACTIONS(3189), [aux_sym_preproc_def_token1] = ACTIONS(3189), @@ -111103,7 +102398,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3191), [sym_semgrep_named_ellipsis] = ACTIONS(3191), }, - [330] = { + [338] = { [sym_identifier] = ACTIONS(3193), [aux_sym_preproc_include_token1] = ACTIONS(3193), [aux_sym_preproc_def_token1] = ACTIONS(3193), @@ -111243,353 +102538,329 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3195), [sym_semgrep_named_ellipsis] = ACTIONS(3195), }, - [331] = { + [339] = { + [sym_identifier] = ACTIONS(3181), + [aux_sym_preproc_include_token1] = ACTIONS(3181), + [aux_sym_preproc_def_token1] = ACTIONS(3181), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3183), + [aux_sym_preproc_if_token1] = ACTIONS(3181), + [aux_sym_preproc_if_token2] = ACTIONS(3181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3181), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3181), + [aux_sym_preproc_else_token1] = ACTIONS(3181), + [aux_sym_preproc_elif_token1] = ACTIONS(3181), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3181), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3181), + [sym_preproc_directive] = ACTIONS(3181), + [anon_sym_LPAREN2] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3183), + [anon_sym_TILDE] = ACTIONS(3183), + [anon_sym_DASH] = ACTIONS(3181), + [anon_sym_PLUS] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3183), + [anon_sym_AMP_AMP] = ACTIONS(3183), + [anon_sym_AMP] = ACTIONS(3181), + [anon_sym_SEMI] = ACTIONS(3183), + [anon_sym___extension__] = ACTIONS(3181), + [anon_sym_typedef] = ACTIONS(3181), + [anon_sym_extern] = ACTIONS(3181), + [anon_sym___attribute__] = ACTIONS(3181), + [anon_sym_COLON_COLON] = ACTIONS(3183), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3183), + [anon_sym___declspec] = ACTIONS(3181), + [anon_sym___based] = ACTIONS(3181), + [anon_sym___cdecl] = ACTIONS(3181), + [anon_sym___clrcall] = ACTIONS(3181), + [anon_sym___stdcall] = ACTIONS(3181), + [anon_sym___fastcall] = ACTIONS(3181), + [anon_sym___thiscall] = ACTIONS(3181), + [anon_sym___vectorcall] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_signed] = ACTIONS(3181), + [anon_sym_unsigned] = ACTIONS(3181), + [anon_sym_long] = ACTIONS(3181), + [anon_sym_short] = ACTIONS(3181), + [anon_sym_LBRACK] = ACTIONS(3181), + [anon_sym_static] = ACTIONS(3181), + [anon_sym_register] = ACTIONS(3181), + [anon_sym_inline] = ACTIONS(3181), + [anon_sym___inline] = ACTIONS(3181), + [anon_sym___inline__] = ACTIONS(3181), + [anon_sym___forceinline] = ACTIONS(3181), + [anon_sym_thread_local] = ACTIONS(3181), + [anon_sym___thread] = ACTIONS(3181), + [anon_sym_const] = ACTIONS(3181), + [anon_sym_constexpr] = ACTIONS(3181), + [anon_sym_volatile] = ACTIONS(3181), + [anon_sym_restrict] = ACTIONS(3181), + [anon_sym___restrict__] = ACTIONS(3181), + [anon_sym__Atomic] = ACTIONS(3181), + [anon_sym__Noreturn] = ACTIONS(3181), + [anon_sym_noreturn] = ACTIONS(3181), + [anon_sym_mutable] = ACTIONS(3181), + [anon_sym_constinit] = ACTIONS(3181), + [anon_sym_consteval] = ACTIONS(3181), + [sym_primitive_type] = ACTIONS(3181), + [anon_sym_enum] = ACTIONS(3181), + [anon_sym_class] = ACTIONS(3181), + [anon_sym_struct] = ACTIONS(3181), + [anon_sym_union] = ACTIONS(3181), + [anon_sym_if] = ACTIONS(3181), + [anon_sym_else] = ACTIONS(3181), + [anon_sym_switch] = ACTIONS(3181), + [anon_sym_case] = ACTIONS(3181), + [anon_sym_default] = ACTIONS(3181), + [anon_sym_while] = ACTIONS(3181), + [anon_sym_do] = ACTIONS(3181), + [anon_sym_for] = ACTIONS(3181), + [anon_sym_return] = ACTIONS(3181), + [anon_sym_break] = ACTIONS(3181), + [anon_sym_continue] = ACTIONS(3181), + [anon_sym_goto] = ACTIONS(3181), + [anon_sym___try] = ACTIONS(3181), + [anon_sym___leave] = ACTIONS(3181), + [anon_sym_not] = ACTIONS(3181), + [anon_sym_compl] = ACTIONS(3181), + [anon_sym_DASH_DASH] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_sizeof] = ACTIONS(3181), + [anon_sym___alignof__] = ACTIONS(3181), + [anon_sym___alignof] = ACTIONS(3181), + [anon_sym__alignof] = ACTIONS(3181), + [anon_sym_alignof] = ACTIONS(3181), + [anon_sym__Alignof] = ACTIONS(3181), + [anon_sym_offsetof] = ACTIONS(3181), + [anon_sym__Generic] = ACTIONS(3181), + [anon_sym_asm] = ACTIONS(3181), + [anon_sym___asm__] = ACTIONS(3181), + [sym_number_literal] = ACTIONS(3183), + [anon_sym_L_SQUOTE] = ACTIONS(3183), + [anon_sym_u_SQUOTE] = ACTIONS(3183), + [anon_sym_U_SQUOTE] = ACTIONS(3183), + [anon_sym_u8_SQUOTE] = ACTIONS(3183), + [anon_sym_SQUOTE] = ACTIONS(3183), + [anon_sym_L_DQUOTE] = ACTIONS(3183), + [anon_sym_u_DQUOTE] = ACTIONS(3183), + [anon_sym_U_DQUOTE] = ACTIONS(3183), + [anon_sym_u8_DQUOTE] = ACTIONS(3183), + [anon_sym_DQUOTE] = ACTIONS(3183), + [sym_true] = ACTIONS(3181), + [sym_false] = ACTIONS(3181), + [anon_sym_NULL] = ACTIONS(3181), + [anon_sym_nullptr] = ACTIONS(3181), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3181), + [anon_sym_decltype] = ACTIONS(3181), + [anon_sym_virtual] = ACTIONS(3181), + [anon_sym_alignas] = ACTIONS(3181), + [anon_sym_explicit] = ACTIONS(3181), + [anon_sym_typename] = ACTIONS(3181), + [anon_sym_template] = ACTIONS(3181), + [anon_sym_operator] = ACTIONS(3181), + [anon_sym_try] = ACTIONS(3181), + [anon_sym_delete] = ACTIONS(3181), + [anon_sym_throw] = ACTIONS(3181), + [anon_sym_namespace] = ACTIONS(3181), + [anon_sym_using] = ACTIONS(3181), + [anon_sym_static_assert] = ACTIONS(3181), + [anon_sym_concept] = ACTIONS(3181), + [anon_sym_co_return] = ACTIONS(3181), + [anon_sym_co_yield] = ACTIONS(3181), + [anon_sym_R_DQUOTE] = ACTIONS(3183), + [anon_sym_LR_DQUOTE] = ACTIONS(3183), + [anon_sym_uR_DQUOTE] = ACTIONS(3183), + [anon_sym_UR_DQUOTE] = ACTIONS(3183), + [anon_sym_u8R_DQUOTE] = ACTIONS(3183), + [anon_sym_co_await] = ACTIONS(3181), + [anon_sym_new] = ACTIONS(3181), + [anon_sym_requires] = ACTIONS(3181), + [sym_this] = ACTIONS(3181), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3183), + [sym_semgrep_named_ellipsis] = ACTIONS(3183), + }, + [340] = { + [sym_type_qualifier] = STATE(4684), + [sym_type_specifier] = STATE(5847), + [sym_sized_type_specifier] = STATE(2673), + [sym_enum_specifier] = STATE(2673), + [sym_struct_specifier] = STATE(2673), + [sym_union_specifier] = STATE(2673), + [sym_expression] = STATE(3588), + [sym_expression_not_binary] = STATE(2570), + [sym_comma_expression] = STATE(10022), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_type_descriptor] = STATE(9933), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_placeholder_type_specifier] = STATE(2673), + [sym_decltype_auto] = STATE(2733), + [sym_decltype] = STATE(2580), + [sym_class_specifier] = STATE(2673), + [sym_class_name] = STATE(8881), + [sym_dependent_type] = STATE(2673), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6651), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(6338), + [sym_assignment_expression_lhs_expression] = STATE(10022), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_typed_metavar] = STATE(10022), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [aux_sym_type_definition_type_repeat1] = STATE(4684), + [aux_sym_sized_type_specifier_repeat1] = STATE(5792), [sym_identifier] = ACTIONS(3197), - [aux_sym_preproc_include_token1] = ACTIONS(3197), - [aux_sym_preproc_def_token1] = ACTIONS(3197), [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), - [aux_sym_preproc_if_token1] = ACTIONS(3197), - [aux_sym_preproc_if_token2] = ACTIONS(3197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3197), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3197), - [aux_sym_preproc_else_token1] = ACTIONS(3197), - [aux_sym_preproc_elif_token1] = ACTIONS(3197), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3197), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3197), - [sym_preproc_directive] = ACTIONS(3197), - [anon_sym_LPAREN2] = ACTIONS(3199), - [anon_sym_BANG] = ACTIONS(3199), - [anon_sym_TILDE] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3199), - [anon_sym_AMP_AMP] = ACTIONS(3199), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_SEMI] = ACTIONS(3199), - [anon_sym___extension__] = ACTIONS(3197), - [anon_sym_typedef] = ACTIONS(3197), - [anon_sym_extern] = ACTIONS(3197), - [anon_sym___attribute__] = ACTIONS(3197), - [anon_sym_COLON_COLON] = ACTIONS(3199), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3199), - [anon_sym___declspec] = ACTIONS(3197), - [anon_sym___based] = ACTIONS(3197), - [anon_sym___cdecl] = ACTIONS(3197), - [anon_sym___clrcall] = ACTIONS(3197), - [anon_sym___stdcall] = ACTIONS(3197), - [anon_sym___fastcall] = ACTIONS(3197), - [anon_sym___thiscall] = ACTIONS(3197), - [anon_sym___vectorcall] = ACTIONS(3197), - [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_signed] = ACTIONS(3197), - [anon_sym_unsigned] = ACTIONS(3197), - [anon_sym_long] = ACTIONS(3197), - [anon_sym_short] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_static] = ACTIONS(3197), - [anon_sym_register] = ACTIONS(3197), - [anon_sym_inline] = ACTIONS(3197), - [anon_sym___inline] = ACTIONS(3197), - [anon_sym___inline__] = ACTIONS(3197), - [anon_sym___forceinline] = ACTIONS(3197), - [anon_sym_thread_local] = ACTIONS(3197), - [anon_sym___thread] = ACTIONS(3197), - [anon_sym_const] = ACTIONS(3197), - [anon_sym_constexpr] = ACTIONS(3197), - [anon_sym_volatile] = ACTIONS(3197), - [anon_sym_restrict] = ACTIONS(3197), - [anon_sym___restrict__] = ACTIONS(3197), - [anon_sym__Atomic] = ACTIONS(3197), - [anon_sym__Noreturn] = ACTIONS(3197), - [anon_sym_noreturn] = ACTIONS(3197), - [anon_sym_mutable] = ACTIONS(3197), - [anon_sym_constinit] = ACTIONS(3197), - [anon_sym_consteval] = ACTIONS(3197), - [sym_primitive_type] = ACTIONS(3197), - [anon_sym_enum] = ACTIONS(3197), - [anon_sym_class] = ACTIONS(3197), - [anon_sym_struct] = ACTIONS(3197), - [anon_sym_union] = ACTIONS(3197), - [anon_sym_if] = ACTIONS(3197), - [anon_sym_else] = ACTIONS(3197), - [anon_sym_switch] = ACTIONS(3197), - [anon_sym_case] = ACTIONS(3197), - [anon_sym_default] = ACTIONS(3197), - [anon_sym_while] = ACTIONS(3197), - [anon_sym_do] = ACTIONS(3197), - [anon_sym_for] = ACTIONS(3197), - [anon_sym_return] = ACTIONS(3197), - [anon_sym_break] = ACTIONS(3197), - [anon_sym_continue] = ACTIONS(3197), - [anon_sym_goto] = ACTIONS(3197), - [anon_sym___try] = ACTIONS(3197), - [anon_sym___leave] = ACTIONS(3197), - [anon_sym_not] = ACTIONS(3197), - [anon_sym_compl] = ACTIONS(3197), - [anon_sym_DASH_DASH] = ACTIONS(3199), - [anon_sym_PLUS_PLUS] = ACTIONS(3199), - [anon_sym_sizeof] = ACTIONS(3197), - [anon_sym___alignof__] = ACTIONS(3197), - [anon_sym___alignof] = ACTIONS(3197), - [anon_sym__alignof] = ACTIONS(3197), - [anon_sym_alignof] = ACTIONS(3197), - [anon_sym__Alignof] = ACTIONS(3197), - [anon_sym_offsetof] = ACTIONS(3197), - [anon_sym__Generic] = ACTIONS(3197), - [anon_sym_asm] = ACTIONS(3197), - [anon_sym___asm__] = ACTIONS(3197), - [sym_number_literal] = ACTIONS(3199), - [anon_sym_L_SQUOTE] = ACTIONS(3199), - [anon_sym_u_SQUOTE] = ACTIONS(3199), - [anon_sym_U_SQUOTE] = ACTIONS(3199), - [anon_sym_u8_SQUOTE] = ACTIONS(3199), - [anon_sym_SQUOTE] = ACTIONS(3199), - [anon_sym_L_DQUOTE] = ACTIONS(3199), - [anon_sym_u_DQUOTE] = ACTIONS(3199), - [anon_sym_U_DQUOTE] = ACTIONS(3199), - [anon_sym_u8_DQUOTE] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym_true] = ACTIONS(3197), - [sym_false] = ACTIONS(3197), - [anon_sym_NULL] = ACTIONS(3197), - [anon_sym_nullptr] = ACTIONS(3197), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3197), - [anon_sym_decltype] = ACTIONS(3197), - [anon_sym_virtual] = ACTIONS(3197), - [anon_sym_alignas] = ACTIONS(3197), - [anon_sym_explicit] = ACTIONS(3197), - [anon_sym_typename] = ACTIONS(3197), - [anon_sym_template] = ACTIONS(3197), - [anon_sym_operator] = ACTIONS(3197), - [anon_sym_try] = ACTIONS(3197), - [anon_sym_delete] = ACTIONS(3197), - [anon_sym_throw] = ACTIONS(3197), - [anon_sym_namespace] = ACTIONS(3197), - [anon_sym_using] = ACTIONS(3197), - [anon_sym_static_assert] = ACTIONS(3197), - [anon_sym_concept] = ACTIONS(3197), - [anon_sym_co_return] = ACTIONS(3197), - [anon_sym_co_yield] = ACTIONS(3197), - [anon_sym_R_DQUOTE] = ACTIONS(3199), - [anon_sym_LR_DQUOTE] = ACTIONS(3199), - [anon_sym_uR_DQUOTE] = ACTIONS(3199), - [anon_sym_UR_DQUOTE] = ACTIONS(3199), - [anon_sym_u8R_DQUOTE] = ACTIONS(3199), - [anon_sym_co_await] = ACTIONS(3197), - [anon_sym_new] = ACTIONS(3197), - [anon_sym_requires] = ACTIONS(3197), - [sym_this] = ACTIONS(3197), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3199), - [sym_semgrep_named_ellipsis] = ACTIONS(3199), - }, - [332] = { - [sym_identifier] = ACTIONS(3201), - [aux_sym_preproc_include_token1] = ACTIONS(3201), - [aux_sym_preproc_def_token1] = ACTIONS(3201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3203), - [aux_sym_preproc_if_token1] = ACTIONS(3201), - [aux_sym_preproc_if_token2] = ACTIONS(3201), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3201), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3201), - [aux_sym_preproc_else_token1] = ACTIONS(3201), - [aux_sym_preproc_elif_token1] = ACTIONS(3201), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3201), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3201), - [sym_preproc_directive] = ACTIONS(3201), - [anon_sym_LPAREN2] = ACTIONS(3203), - [anon_sym_BANG] = ACTIONS(3203), - [anon_sym_TILDE] = ACTIONS(3203), - [anon_sym_DASH] = ACTIONS(3201), - [anon_sym_PLUS] = ACTIONS(3201), - [anon_sym_STAR] = ACTIONS(3203), - [anon_sym_AMP_AMP] = ACTIONS(3203), - [anon_sym_AMP] = ACTIONS(3201), - [anon_sym_SEMI] = ACTIONS(3203), - [anon_sym___extension__] = ACTIONS(3201), - [anon_sym_typedef] = ACTIONS(3201), - [anon_sym_extern] = ACTIONS(3201), - [anon_sym___attribute__] = ACTIONS(3201), - [anon_sym_COLON_COLON] = ACTIONS(3203), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3203), - [anon_sym___declspec] = ACTIONS(3201), - [anon_sym___based] = ACTIONS(3201), - [anon_sym___cdecl] = ACTIONS(3201), - [anon_sym___clrcall] = ACTIONS(3201), - [anon_sym___stdcall] = ACTIONS(3201), - [anon_sym___fastcall] = ACTIONS(3201), - [anon_sym___thiscall] = ACTIONS(3201), - [anon_sym___vectorcall] = ACTIONS(3201), - [anon_sym_LBRACE] = ACTIONS(3203), - [anon_sym_signed] = ACTIONS(3201), - [anon_sym_unsigned] = ACTIONS(3201), - [anon_sym_long] = ACTIONS(3201), - [anon_sym_short] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_static] = ACTIONS(3201), - [anon_sym_register] = ACTIONS(3201), - [anon_sym_inline] = ACTIONS(3201), - [anon_sym___inline] = ACTIONS(3201), - [anon_sym___inline__] = ACTIONS(3201), - [anon_sym___forceinline] = ACTIONS(3201), - [anon_sym_thread_local] = ACTIONS(3201), - [anon_sym___thread] = ACTIONS(3201), - [anon_sym_const] = ACTIONS(3201), - [anon_sym_constexpr] = ACTIONS(3201), - [anon_sym_volatile] = ACTIONS(3201), - [anon_sym_restrict] = ACTIONS(3201), - [anon_sym___restrict__] = ACTIONS(3201), - [anon_sym__Atomic] = ACTIONS(3201), - [anon_sym__Noreturn] = ACTIONS(3201), - [anon_sym_noreturn] = ACTIONS(3201), - [anon_sym_mutable] = ACTIONS(3201), - [anon_sym_constinit] = ACTIONS(3201), - [anon_sym_consteval] = ACTIONS(3201), - [sym_primitive_type] = ACTIONS(3201), - [anon_sym_enum] = ACTIONS(3201), - [anon_sym_class] = ACTIONS(3201), - [anon_sym_struct] = ACTIONS(3201), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_if] = ACTIONS(3201), - [anon_sym_else] = ACTIONS(3201), - [anon_sym_switch] = ACTIONS(3201), - [anon_sym_case] = ACTIONS(3201), - [anon_sym_default] = ACTIONS(3201), - [anon_sym_while] = ACTIONS(3201), - [anon_sym_do] = ACTIONS(3201), - [anon_sym_for] = ACTIONS(3201), - [anon_sym_return] = ACTIONS(3201), - [anon_sym_break] = ACTIONS(3201), - [anon_sym_continue] = ACTIONS(3201), - [anon_sym_goto] = ACTIONS(3201), - [anon_sym___try] = ACTIONS(3201), - [anon_sym___leave] = ACTIONS(3201), - [anon_sym_not] = ACTIONS(3201), - [anon_sym_compl] = ACTIONS(3201), - [anon_sym_DASH_DASH] = ACTIONS(3203), - [anon_sym_PLUS_PLUS] = ACTIONS(3203), - [anon_sym_sizeof] = ACTIONS(3201), - [anon_sym___alignof__] = ACTIONS(3201), - [anon_sym___alignof] = ACTIONS(3201), - [anon_sym__alignof] = ACTIONS(3201), - [anon_sym_alignof] = ACTIONS(3201), - [anon_sym__Alignof] = ACTIONS(3201), - [anon_sym_offsetof] = ACTIONS(3201), - [anon_sym__Generic] = ACTIONS(3201), - [anon_sym_asm] = ACTIONS(3201), - [anon_sym___asm__] = ACTIONS(3201), - [sym_number_literal] = ACTIONS(3203), - [anon_sym_L_SQUOTE] = ACTIONS(3203), - [anon_sym_u_SQUOTE] = ACTIONS(3203), - [anon_sym_U_SQUOTE] = ACTIONS(3203), - [anon_sym_u8_SQUOTE] = ACTIONS(3203), - [anon_sym_SQUOTE] = ACTIONS(3203), - [anon_sym_L_DQUOTE] = ACTIONS(3203), - [anon_sym_u_DQUOTE] = ACTIONS(3203), - [anon_sym_U_DQUOTE] = ACTIONS(3203), - [anon_sym_u8_DQUOTE] = ACTIONS(3203), - [anon_sym_DQUOTE] = ACTIONS(3203), - [sym_true] = ACTIONS(3201), - [sym_false] = ACTIONS(3201), - [anon_sym_NULL] = ACTIONS(3201), - [anon_sym_nullptr] = ACTIONS(3201), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3201), - [anon_sym_decltype] = ACTIONS(3201), - [anon_sym_virtual] = ACTIONS(3201), - [anon_sym_alignas] = ACTIONS(3201), - [anon_sym_explicit] = ACTIONS(3201), - [anon_sym_typename] = ACTIONS(3201), - [anon_sym_template] = ACTIONS(3201), - [anon_sym_operator] = ACTIONS(3201), - [anon_sym_try] = ACTIONS(3201), - [anon_sym_delete] = ACTIONS(3201), - [anon_sym_throw] = ACTIONS(3201), - [anon_sym_namespace] = ACTIONS(3201), - [anon_sym_using] = ACTIONS(3201), - [anon_sym_static_assert] = ACTIONS(3201), - [anon_sym_concept] = ACTIONS(3201), - [anon_sym_co_return] = ACTIONS(3201), - [anon_sym_co_yield] = ACTIONS(3201), - [anon_sym_R_DQUOTE] = ACTIONS(3203), - [anon_sym_LR_DQUOTE] = ACTIONS(3203), - [anon_sym_uR_DQUOTE] = ACTIONS(3203), - [anon_sym_UR_DQUOTE] = ACTIONS(3203), - [anon_sym_u8R_DQUOTE] = ACTIONS(3203), - [anon_sym_co_await] = ACTIONS(3201), - [anon_sym_new] = ACTIONS(3201), - [anon_sym_requires] = ACTIONS(3201), - [sym_this] = ACTIONS(3201), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3203), - [sym_semgrep_named_ellipsis] = ACTIONS(3203), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_signed] = ACTIONS(2215), + [anon_sym_unsigned] = ACTIONS(2215), + [anon_sym_long] = ACTIONS(2215), + [anon_sym_short] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3203), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2251), + [anon_sym_decltype] = ACTIONS(2253), + [anon_sym_typename] = ACTIONS(2255), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [333] = { - [sym_expression] = STATE(5855), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9734), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(3205), + [341] = { + [sym_identifier] = ACTIONS(3207), + [aux_sym_preproc_include_token1] = ACTIONS(3207), + [aux_sym_preproc_def_token1] = ACTIONS(3207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3209), + [aux_sym_preproc_if_token1] = ACTIONS(3207), + [aux_sym_preproc_if_token2] = ACTIONS(3207), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3207), + [aux_sym_preproc_else_token1] = ACTIONS(3207), + [aux_sym_preproc_elif_token1] = ACTIONS(3207), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3207), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3207), + [sym_preproc_directive] = ACTIONS(3207), + [anon_sym_LPAREN2] = ACTIONS(3209), + [anon_sym_BANG] = ACTIONS(3209), + [anon_sym_TILDE] = ACTIONS(3209), + [anon_sym_DASH] = ACTIONS(3207), + [anon_sym_PLUS] = ACTIONS(3207), + [anon_sym_STAR] = ACTIONS(3209), + [anon_sym_AMP_AMP] = ACTIONS(3209), + [anon_sym_AMP] = ACTIONS(3207), + [anon_sym_SEMI] = ACTIONS(3209), [anon_sym___extension__] = ACTIONS(3207), + [anon_sym_typedef] = ACTIONS(3207), [anon_sym_extern] = ACTIONS(3207), [anon_sym___attribute__] = ACTIONS(3207), - [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_COLON_COLON] = ACTIONS(3209), [anon_sym_LBRACK_LBRACK] = ACTIONS(3209), [anon_sym___declspec] = ACTIONS(3207), + [anon_sym___based] = ACTIONS(3207), + [anon_sym___cdecl] = ACTIONS(3207), + [anon_sym___clrcall] = ACTIONS(3207), + [anon_sym___stdcall] = ACTIONS(3207), + [anon_sym___fastcall] = ACTIONS(3207), + [anon_sym___thiscall] = ACTIONS(3207), + [anon_sym___vectorcall] = ACTIONS(3207), + [anon_sym_LBRACE] = ACTIONS(3209), [anon_sym_signed] = ACTIONS(3207), [anon_sym_unsigned] = ACTIONS(3207), [anon_sym_long] = ACTIONS(3207), [anon_sym_short] = ACTIONS(3207), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(3207), [anon_sym_static] = ACTIONS(3207), [anon_sym_register] = ACTIONS(3207), [anon_sym_inline] = ACTIONS(3207), @@ -111609,11 +102880,455 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(3207), [anon_sym_constinit] = ACTIONS(3207), [anon_sym_consteval] = ACTIONS(3207), - [sym_primitive_type] = ACTIONS(2379), + [sym_primitive_type] = ACTIONS(3207), [anon_sym_enum] = ACTIONS(3207), [anon_sym_class] = ACTIONS(3207), [anon_sym_struct] = ACTIONS(3207), [anon_sym_union] = ACTIONS(3207), + [anon_sym_if] = ACTIONS(3207), + [anon_sym_else] = ACTIONS(3207), + [anon_sym_switch] = ACTIONS(3207), + [anon_sym_case] = ACTIONS(3207), + [anon_sym_default] = ACTIONS(3207), + [anon_sym_while] = ACTIONS(3207), + [anon_sym_do] = ACTIONS(3207), + [anon_sym_for] = ACTIONS(3207), + [anon_sym_return] = ACTIONS(3207), + [anon_sym_break] = ACTIONS(3207), + [anon_sym_continue] = ACTIONS(3207), + [anon_sym_goto] = ACTIONS(3207), + [anon_sym___try] = ACTIONS(3207), + [anon_sym___leave] = ACTIONS(3207), + [anon_sym_not] = ACTIONS(3207), + [anon_sym_compl] = ACTIONS(3207), + [anon_sym_DASH_DASH] = ACTIONS(3209), + [anon_sym_PLUS_PLUS] = ACTIONS(3209), + [anon_sym_sizeof] = ACTIONS(3207), + [anon_sym___alignof__] = ACTIONS(3207), + [anon_sym___alignof] = ACTIONS(3207), + [anon_sym__alignof] = ACTIONS(3207), + [anon_sym_alignof] = ACTIONS(3207), + [anon_sym__Alignof] = ACTIONS(3207), + [anon_sym_offsetof] = ACTIONS(3207), + [anon_sym__Generic] = ACTIONS(3207), + [anon_sym_asm] = ACTIONS(3207), + [anon_sym___asm__] = ACTIONS(3207), + [sym_number_literal] = ACTIONS(3209), + [anon_sym_L_SQUOTE] = ACTIONS(3209), + [anon_sym_u_SQUOTE] = ACTIONS(3209), + [anon_sym_U_SQUOTE] = ACTIONS(3209), + [anon_sym_u8_SQUOTE] = ACTIONS(3209), + [anon_sym_SQUOTE] = ACTIONS(3209), + [anon_sym_L_DQUOTE] = ACTIONS(3209), + [anon_sym_u_DQUOTE] = ACTIONS(3209), + [anon_sym_U_DQUOTE] = ACTIONS(3209), + [anon_sym_u8_DQUOTE] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3209), + [sym_true] = ACTIONS(3207), + [sym_false] = ACTIONS(3207), + [anon_sym_NULL] = ACTIONS(3207), + [anon_sym_nullptr] = ACTIONS(3207), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3207), + [anon_sym_decltype] = ACTIONS(3207), + [anon_sym_virtual] = ACTIONS(3207), + [anon_sym_alignas] = ACTIONS(3207), + [anon_sym_explicit] = ACTIONS(3207), + [anon_sym_typename] = ACTIONS(3207), + [anon_sym_template] = ACTIONS(3207), + [anon_sym_operator] = ACTIONS(3207), + [anon_sym_try] = ACTIONS(3207), + [anon_sym_delete] = ACTIONS(3207), + [anon_sym_throw] = ACTIONS(3207), + [anon_sym_namespace] = ACTIONS(3207), + [anon_sym_using] = ACTIONS(3207), + [anon_sym_static_assert] = ACTIONS(3207), + [anon_sym_concept] = ACTIONS(3207), + [anon_sym_co_return] = ACTIONS(3207), + [anon_sym_co_yield] = ACTIONS(3207), + [anon_sym_R_DQUOTE] = ACTIONS(3209), + [anon_sym_LR_DQUOTE] = ACTIONS(3209), + [anon_sym_uR_DQUOTE] = ACTIONS(3209), + [anon_sym_UR_DQUOTE] = ACTIONS(3209), + [anon_sym_u8R_DQUOTE] = ACTIONS(3209), + [anon_sym_co_await] = ACTIONS(3207), + [anon_sym_new] = ACTIONS(3207), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3207), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3209), + [sym_semgrep_named_ellipsis] = ACTIONS(3209), + }, + [342] = { + [sym_identifier] = ACTIONS(2355), + [aux_sym_preproc_include_token1] = ACTIONS(2355), + [aux_sym_preproc_def_token1] = ACTIONS(2355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2353), + [anon_sym_COMMA] = ACTIONS(3211), + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2355), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2355), + [sym_preproc_directive] = ACTIONS(2355), + [anon_sym_LPAREN2] = ACTIONS(2353), + [anon_sym_BANG] = ACTIONS(2353), + [anon_sym_TILDE] = ACTIONS(2353), + [anon_sym_DASH] = ACTIONS(2355), + [anon_sym_PLUS] = ACTIONS(2355), + [anon_sym_STAR] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(2353), + [anon_sym_AMP] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(3211), + [anon_sym___extension__] = ACTIONS(2355), + [anon_sym_typedef] = ACTIONS(2355), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym___attribute__] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(2353), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), + [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(2353), + [anon_sym_signed] = ACTIONS(2355), + [anon_sym_unsigned] = ACTIONS(2355), + [anon_sym_long] = ACTIONS(2355), + [anon_sym_short] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_static] = ACTIONS(2355), + [anon_sym_register] = ACTIONS(2355), + [anon_sym_inline] = ACTIONS(2355), + [anon_sym___inline] = ACTIONS(2355), + [anon_sym___inline__] = ACTIONS(2355), + [anon_sym___forceinline] = ACTIONS(2355), + [anon_sym_thread_local] = ACTIONS(2355), + [anon_sym___thread] = ACTIONS(2355), + [anon_sym_const] = ACTIONS(2355), + [anon_sym_constexpr] = ACTIONS(2355), + [anon_sym_volatile] = ACTIONS(2355), + [anon_sym_restrict] = ACTIONS(2355), + [anon_sym___restrict__] = ACTIONS(2355), + [anon_sym__Atomic] = ACTIONS(2355), + [anon_sym__Noreturn] = ACTIONS(2355), + [anon_sym_noreturn] = ACTIONS(2355), + [anon_sym_mutable] = ACTIONS(2355), + [anon_sym_constinit] = ACTIONS(2355), + [anon_sym_consteval] = 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_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___try] = ACTIONS(2355), + [anon_sym___leave] = ACTIONS(2355), + [anon_sym_not] = ACTIONS(2355), + [anon_sym_compl] = ACTIONS(2355), + [anon_sym_DASH_DASH] = ACTIONS(2353), + [anon_sym_PLUS_PLUS] = ACTIONS(2353), + [anon_sym_sizeof] = ACTIONS(2355), + [anon_sym___alignof__] = ACTIONS(2355), + [anon_sym___alignof] = ACTIONS(2355), + [anon_sym__alignof] = ACTIONS(2355), + [anon_sym_alignof] = ACTIONS(2355), + [anon_sym__Alignof] = ACTIONS(2355), + [anon_sym_offsetof] = ACTIONS(2355), + [anon_sym__Generic] = ACTIONS(2355), + [anon_sym_asm] = ACTIONS(2355), + [anon_sym___asm__] = ACTIONS(2355), + [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(2355), + [sym_false] = ACTIONS(2355), + [anon_sym_NULL] = ACTIONS(2355), + [anon_sym_nullptr] = ACTIONS(2355), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2355), + [anon_sym_decltype] = ACTIONS(2355), + [anon_sym_virtual] = ACTIONS(2355), + [anon_sym_alignas] = 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_R_DQUOTE] = ACTIONS(2353), + [anon_sym_LR_DQUOTE] = ACTIONS(2353), + [anon_sym_uR_DQUOTE] = ACTIONS(2353), + [anon_sym_UR_DQUOTE] = ACTIONS(2353), + [anon_sym_u8R_DQUOTE] = ACTIONS(2353), + [anon_sym_co_await] = ACTIONS(2355), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_requires] = ACTIONS(2355), + [sym_this] = ACTIONS(2355), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2353), + [sym_semgrep_named_ellipsis] = ACTIONS(2353), + }, + [343] = { + [sym_identifier] = ACTIONS(3213), + [aux_sym_preproc_include_token1] = ACTIONS(3213), + [aux_sym_preproc_def_token1] = ACTIONS(3213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3215), + [aux_sym_preproc_if_token1] = ACTIONS(3213), + [aux_sym_preproc_if_token2] = ACTIONS(3213), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3213), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3213), + [aux_sym_preproc_else_token1] = ACTIONS(3213), + [aux_sym_preproc_elif_token1] = ACTIONS(3213), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3213), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3213), + [sym_preproc_directive] = ACTIONS(3213), + [anon_sym_LPAREN2] = ACTIONS(3215), + [anon_sym_BANG] = ACTIONS(3215), + [anon_sym_TILDE] = ACTIONS(3215), + [anon_sym_DASH] = ACTIONS(3213), + [anon_sym_PLUS] = ACTIONS(3213), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP_AMP] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3213), + [anon_sym_SEMI] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(3213), + [anon_sym_typedef] = ACTIONS(3213), + [anon_sym_extern] = ACTIONS(3213), + [anon_sym___attribute__] = ACTIONS(3213), + [anon_sym_COLON_COLON] = ACTIONS(3215), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3215), + [anon_sym___declspec] = ACTIONS(3213), + [anon_sym___based] = ACTIONS(3213), + [anon_sym___cdecl] = ACTIONS(3213), + [anon_sym___clrcall] = ACTIONS(3213), + [anon_sym___stdcall] = ACTIONS(3213), + [anon_sym___fastcall] = ACTIONS(3213), + [anon_sym___thiscall] = ACTIONS(3213), + [anon_sym___vectorcall] = ACTIONS(3213), + [anon_sym_LBRACE] = ACTIONS(3215), + [anon_sym_signed] = ACTIONS(3213), + [anon_sym_unsigned] = ACTIONS(3213), + [anon_sym_long] = ACTIONS(3213), + [anon_sym_short] = ACTIONS(3213), + [anon_sym_LBRACK] = ACTIONS(3213), + [anon_sym_static] = ACTIONS(3213), + [anon_sym_register] = ACTIONS(3213), + [anon_sym_inline] = ACTIONS(3213), + [anon_sym___inline] = ACTIONS(3213), + [anon_sym___inline__] = ACTIONS(3213), + [anon_sym___forceinline] = ACTIONS(3213), + [anon_sym_thread_local] = ACTIONS(3213), + [anon_sym___thread] = ACTIONS(3213), + [anon_sym_const] = ACTIONS(3213), + [anon_sym_constexpr] = ACTIONS(3213), + [anon_sym_volatile] = ACTIONS(3213), + [anon_sym_restrict] = ACTIONS(3213), + [anon_sym___restrict__] = ACTIONS(3213), + [anon_sym__Atomic] = ACTIONS(3213), + [anon_sym__Noreturn] = ACTIONS(3213), + [anon_sym_noreturn] = ACTIONS(3213), + [anon_sym_mutable] = ACTIONS(3213), + [anon_sym_constinit] = ACTIONS(3213), + [anon_sym_consteval] = ACTIONS(3213), + [sym_primitive_type] = ACTIONS(3213), + [anon_sym_enum] = ACTIONS(3213), + [anon_sym_class] = ACTIONS(3213), + [anon_sym_struct] = ACTIONS(3213), + [anon_sym_union] = ACTIONS(3213), + [anon_sym_if] = ACTIONS(3213), + [anon_sym_else] = ACTIONS(3213), + [anon_sym_switch] = ACTIONS(3213), + [anon_sym_case] = ACTIONS(3213), + [anon_sym_default] = ACTIONS(3213), + [anon_sym_while] = ACTIONS(3213), + [anon_sym_do] = ACTIONS(3213), + [anon_sym_for] = ACTIONS(3213), + [anon_sym_return] = ACTIONS(3213), + [anon_sym_break] = ACTIONS(3213), + [anon_sym_continue] = ACTIONS(3213), + [anon_sym_goto] = ACTIONS(3213), + [anon_sym___try] = ACTIONS(3213), + [anon_sym___leave] = ACTIONS(3213), + [anon_sym_not] = ACTIONS(3213), + [anon_sym_compl] = ACTIONS(3213), + [anon_sym_DASH_DASH] = ACTIONS(3215), + [anon_sym_PLUS_PLUS] = ACTIONS(3215), + [anon_sym_sizeof] = ACTIONS(3213), + [anon_sym___alignof__] = ACTIONS(3213), + [anon_sym___alignof] = ACTIONS(3213), + [anon_sym__alignof] = ACTIONS(3213), + [anon_sym_alignof] = ACTIONS(3213), + [anon_sym__Alignof] = ACTIONS(3213), + [anon_sym_offsetof] = ACTIONS(3213), + [anon_sym__Generic] = ACTIONS(3213), + [anon_sym_asm] = ACTIONS(3213), + [anon_sym___asm__] = ACTIONS(3213), + [sym_number_literal] = ACTIONS(3215), + [anon_sym_L_SQUOTE] = ACTIONS(3215), + [anon_sym_u_SQUOTE] = ACTIONS(3215), + [anon_sym_U_SQUOTE] = ACTIONS(3215), + [anon_sym_u8_SQUOTE] = ACTIONS(3215), + [anon_sym_SQUOTE] = ACTIONS(3215), + [anon_sym_L_DQUOTE] = ACTIONS(3215), + [anon_sym_u_DQUOTE] = ACTIONS(3215), + [anon_sym_U_DQUOTE] = ACTIONS(3215), + [anon_sym_u8_DQUOTE] = ACTIONS(3215), + [anon_sym_DQUOTE] = ACTIONS(3215), + [sym_true] = ACTIONS(3213), + [sym_false] = ACTIONS(3213), + [anon_sym_NULL] = ACTIONS(3213), + [anon_sym_nullptr] = ACTIONS(3213), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3213), + [anon_sym_decltype] = ACTIONS(3213), + [anon_sym_virtual] = ACTIONS(3213), + [anon_sym_alignas] = ACTIONS(3213), + [anon_sym_explicit] = ACTIONS(3213), + [anon_sym_typename] = ACTIONS(3213), + [anon_sym_template] = ACTIONS(3213), + [anon_sym_operator] = ACTIONS(3213), + [anon_sym_try] = ACTIONS(3213), + [anon_sym_delete] = ACTIONS(3213), + [anon_sym_throw] = ACTIONS(3213), + [anon_sym_namespace] = ACTIONS(3213), + [anon_sym_using] = ACTIONS(3213), + [anon_sym_static_assert] = ACTIONS(3213), + [anon_sym_concept] = ACTIONS(3213), + [anon_sym_co_return] = ACTIONS(3213), + [anon_sym_co_yield] = ACTIONS(3213), + [anon_sym_R_DQUOTE] = ACTIONS(3215), + [anon_sym_LR_DQUOTE] = ACTIONS(3215), + [anon_sym_uR_DQUOTE] = ACTIONS(3215), + [anon_sym_UR_DQUOTE] = ACTIONS(3215), + [anon_sym_u8R_DQUOTE] = ACTIONS(3215), + [anon_sym_co_await] = ACTIONS(3213), + [anon_sym_new] = ACTIONS(3213), + [anon_sym_requires] = ACTIONS(3213), + [sym_this] = ACTIONS(3213), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3215), + [sym_semgrep_named_ellipsis] = ACTIONS(3215), + }, + [344] = { + [sym_expression] = STATE(5198), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9664), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(3217), + [anon_sym___extension__] = ACTIONS(3185), + [anon_sym_extern] = ACTIONS(3185), + [anon_sym___attribute__] = ACTIONS(3185), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3187), + [anon_sym___declspec] = ACTIONS(3185), + [anon_sym_signed] = ACTIONS(3185), + [anon_sym_unsigned] = ACTIONS(3185), + [anon_sym_long] = ACTIONS(3185), + [anon_sym_short] = ACTIONS(3185), + [anon_sym_LBRACK] = ACTIONS(1532), + [anon_sym_static] = ACTIONS(3185), + [anon_sym_register] = ACTIONS(3185), + [anon_sym_inline] = ACTIONS(3185), + [anon_sym___inline] = ACTIONS(3185), + [anon_sym___inline__] = ACTIONS(3185), + [anon_sym___forceinline] = ACTIONS(3185), + [anon_sym_thread_local] = ACTIONS(3185), + [anon_sym___thread] = ACTIONS(3185), + [anon_sym_const] = ACTIONS(3185), + [anon_sym_constexpr] = ACTIONS(3185), + [anon_sym_volatile] = ACTIONS(3185), + [anon_sym_restrict] = ACTIONS(3185), + [anon_sym___restrict__] = ACTIONS(3185), + [anon_sym__Atomic] = ACTIONS(3185), + [anon_sym__Noreturn] = ACTIONS(3185), + [anon_sym_noreturn] = ACTIONS(3185), + [anon_sym_mutable] = ACTIONS(3185), + [anon_sym_constinit] = ACTIONS(3185), + [anon_sym_consteval] = ACTIONS(3185), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_enum] = ACTIONS(3185), + [anon_sym_class] = ACTIONS(3185), + [anon_sym_struct] = ACTIONS(3185), + [anon_sym_union] = ACTIONS(3185), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -111644,12 +103359,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3207), + [sym_auto] = ACTIONS(3185), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_virtual] = ACTIONS(3207), - [anon_sym_alignas] = ACTIONS(3207), - [anon_sym_typename] = ACTIONS(3207), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_virtual] = ACTIONS(3185), + [anon_sym_alignas] = ACTIONS(3185), + [anon_sym_typename] = ACTIONS(3185), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -111663,287 +103378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [334] = { - [sym_identifier] = ACTIONS(3211), - [aux_sym_preproc_include_token1] = ACTIONS(3211), - [aux_sym_preproc_def_token1] = ACTIONS(3211), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3213), - [aux_sym_preproc_if_token1] = ACTIONS(3211), - [aux_sym_preproc_if_token2] = ACTIONS(3211), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3211), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3211), - [aux_sym_preproc_else_token1] = ACTIONS(3211), - [aux_sym_preproc_elif_token1] = ACTIONS(3211), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3211), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3211), - [sym_preproc_directive] = ACTIONS(3211), - [anon_sym_LPAREN2] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(3213), - [anon_sym_TILDE] = ACTIONS(3213), - [anon_sym_DASH] = ACTIONS(3211), - [anon_sym_PLUS] = ACTIONS(3211), - [anon_sym_STAR] = ACTIONS(3213), - [anon_sym_AMP_AMP] = ACTIONS(3213), - [anon_sym_AMP] = ACTIONS(3211), - [anon_sym_SEMI] = ACTIONS(3213), - [anon_sym___extension__] = ACTIONS(3211), - [anon_sym_typedef] = ACTIONS(3211), - [anon_sym_extern] = ACTIONS(3211), - [anon_sym___attribute__] = ACTIONS(3211), - [anon_sym_COLON_COLON] = ACTIONS(3213), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3213), - [anon_sym___declspec] = ACTIONS(3211), - [anon_sym___based] = ACTIONS(3211), - [anon_sym___cdecl] = ACTIONS(3211), - [anon_sym___clrcall] = ACTIONS(3211), - [anon_sym___stdcall] = ACTIONS(3211), - [anon_sym___fastcall] = ACTIONS(3211), - [anon_sym___thiscall] = ACTIONS(3211), - [anon_sym___vectorcall] = ACTIONS(3211), - [anon_sym_LBRACE] = ACTIONS(3213), - [anon_sym_signed] = ACTIONS(3211), - [anon_sym_unsigned] = ACTIONS(3211), - [anon_sym_long] = ACTIONS(3211), - [anon_sym_short] = ACTIONS(3211), - [anon_sym_LBRACK] = ACTIONS(3211), - [anon_sym_static] = ACTIONS(3211), - [anon_sym_register] = ACTIONS(3211), - [anon_sym_inline] = ACTIONS(3211), - [anon_sym___inline] = ACTIONS(3211), - [anon_sym___inline__] = ACTIONS(3211), - [anon_sym___forceinline] = ACTIONS(3211), - [anon_sym_thread_local] = ACTIONS(3211), - [anon_sym___thread] = ACTIONS(3211), - [anon_sym_const] = ACTIONS(3211), - [anon_sym_constexpr] = ACTIONS(3211), - [anon_sym_volatile] = ACTIONS(3211), - [anon_sym_restrict] = ACTIONS(3211), - [anon_sym___restrict__] = ACTIONS(3211), - [anon_sym__Atomic] = ACTIONS(3211), - [anon_sym__Noreturn] = ACTIONS(3211), - [anon_sym_noreturn] = ACTIONS(3211), - [anon_sym_mutable] = ACTIONS(3211), - [anon_sym_constinit] = ACTIONS(3211), - [anon_sym_consteval] = ACTIONS(3211), - [sym_primitive_type] = ACTIONS(3211), - [anon_sym_enum] = ACTIONS(3211), - [anon_sym_class] = ACTIONS(3211), - [anon_sym_struct] = ACTIONS(3211), - [anon_sym_union] = ACTIONS(3211), - [anon_sym_if] = ACTIONS(3211), - [anon_sym_else] = ACTIONS(3211), - [anon_sym_switch] = ACTIONS(3211), - [anon_sym_case] = ACTIONS(3211), - [anon_sym_default] = ACTIONS(3211), - [anon_sym_while] = ACTIONS(3211), - [anon_sym_do] = ACTIONS(3211), - [anon_sym_for] = ACTIONS(3211), - [anon_sym_return] = ACTIONS(3211), - [anon_sym_break] = ACTIONS(3211), - [anon_sym_continue] = ACTIONS(3211), - [anon_sym_goto] = ACTIONS(3211), - [anon_sym___try] = ACTIONS(3211), - [anon_sym___leave] = ACTIONS(3211), - [anon_sym_not] = ACTIONS(3211), - [anon_sym_compl] = ACTIONS(3211), - [anon_sym_DASH_DASH] = ACTIONS(3213), - [anon_sym_PLUS_PLUS] = ACTIONS(3213), - [anon_sym_sizeof] = ACTIONS(3211), - [anon_sym___alignof__] = ACTIONS(3211), - [anon_sym___alignof] = ACTIONS(3211), - [anon_sym__alignof] = ACTIONS(3211), - [anon_sym_alignof] = ACTIONS(3211), - [anon_sym__Alignof] = ACTIONS(3211), - [anon_sym_offsetof] = ACTIONS(3211), - [anon_sym__Generic] = ACTIONS(3211), - [anon_sym_asm] = ACTIONS(3211), - [anon_sym___asm__] = ACTIONS(3211), - [sym_number_literal] = ACTIONS(3213), - [anon_sym_L_SQUOTE] = ACTIONS(3213), - [anon_sym_u_SQUOTE] = ACTIONS(3213), - [anon_sym_U_SQUOTE] = ACTIONS(3213), - [anon_sym_u8_SQUOTE] = ACTIONS(3213), - [anon_sym_SQUOTE] = ACTIONS(3213), - [anon_sym_L_DQUOTE] = ACTIONS(3213), - [anon_sym_u_DQUOTE] = ACTIONS(3213), - [anon_sym_U_DQUOTE] = ACTIONS(3213), - [anon_sym_u8_DQUOTE] = ACTIONS(3213), - [anon_sym_DQUOTE] = ACTIONS(3213), - [sym_true] = ACTIONS(3211), - [sym_false] = ACTIONS(3211), - [anon_sym_NULL] = ACTIONS(3211), - [anon_sym_nullptr] = ACTIONS(3211), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3211), - [anon_sym_decltype] = ACTIONS(3211), - [anon_sym_virtual] = ACTIONS(3211), - [anon_sym_alignas] = ACTIONS(3211), - [anon_sym_explicit] = ACTIONS(3211), - [anon_sym_typename] = ACTIONS(3211), - [anon_sym_template] = ACTIONS(3211), - [anon_sym_operator] = ACTIONS(3211), - [anon_sym_try] = ACTIONS(3211), - [anon_sym_delete] = ACTIONS(3211), - [anon_sym_throw] = ACTIONS(3211), - [anon_sym_namespace] = ACTIONS(3211), - [anon_sym_using] = ACTIONS(3211), - [anon_sym_static_assert] = ACTIONS(3211), - [anon_sym_concept] = ACTIONS(3211), - [anon_sym_co_return] = ACTIONS(3211), - [anon_sym_co_yield] = ACTIONS(3211), - [anon_sym_R_DQUOTE] = ACTIONS(3213), - [anon_sym_LR_DQUOTE] = ACTIONS(3213), - [anon_sym_uR_DQUOTE] = ACTIONS(3213), - [anon_sym_UR_DQUOTE] = ACTIONS(3213), - [anon_sym_u8R_DQUOTE] = ACTIONS(3213), - [anon_sym_co_await] = ACTIONS(3211), - [anon_sym_new] = ACTIONS(3211), - [anon_sym_requires] = ACTIONS(3211), - [sym_this] = ACTIONS(3211), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3213), - [sym_semgrep_named_ellipsis] = ACTIONS(3213), - }, - [335] = { - [sym_identifier] = ACTIONS(3215), - [aux_sym_preproc_include_token1] = ACTIONS(3215), - [aux_sym_preproc_def_token1] = ACTIONS(3215), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3217), - [aux_sym_preproc_if_token1] = ACTIONS(3215), - [aux_sym_preproc_if_token2] = ACTIONS(3215), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3215), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3215), - [aux_sym_preproc_else_token1] = ACTIONS(3215), - [aux_sym_preproc_elif_token1] = ACTIONS(3215), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3215), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3215), - [sym_preproc_directive] = ACTIONS(3215), - [anon_sym_LPAREN2] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_STAR] = ACTIONS(3217), - [anon_sym_AMP_AMP] = ACTIONS(3217), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym___extension__] = ACTIONS(3215), - [anon_sym_typedef] = ACTIONS(3215), - [anon_sym_extern] = ACTIONS(3215), - [anon_sym___attribute__] = ACTIONS(3215), - [anon_sym_COLON_COLON] = ACTIONS(3217), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3217), - [anon_sym___declspec] = ACTIONS(3215), - [anon_sym___based] = ACTIONS(3215), - [anon_sym___cdecl] = ACTIONS(3215), - [anon_sym___clrcall] = ACTIONS(3215), - [anon_sym___stdcall] = ACTIONS(3215), - [anon_sym___fastcall] = ACTIONS(3215), - [anon_sym___thiscall] = ACTIONS(3215), - [anon_sym___vectorcall] = ACTIONS(3215), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_signed] = ACTIONS(3215), - [anon_sym_unsigned] = ACTIONS(3215), - [anon_sym_long] = ACTIONS(3215), - [anon_sym_short] = ACTIONS(3215), - [anon_sym_LBRACK] = ACTIONS(3215), - [anon_sym_static] = ACTIONS(3215), - [anon_sym_register] = ACTIONS(3215), - [anon_sym_inline] = ACTIONS(3215), - [anon_sym___inline] = ACTIONS(3215), - [anon_sym___inline__] = ACTIONS(3215), - [anon_sym___forceinline] = ACTIONS(3215), - [anon_sym_thread_local] = ACTIONS(3215), - [anon_sym___thread] = ACTIONS(3215), - [anon_sym_const] = ACTIONS(3215), - [anon_sym_constexpr] = ACTIONS(3215), - [anon_sym_volatile] = ACTIONS(3215), - [anon_sym_restrict] = ACTIONS(3215), - [anon_sym___restrict__] = ACTIONS(3215), - [anon_sym__Atomic] = ACTIONS(3215), - [anon_sym__Noreturn] = ACTIONS(3215), - [anon_sym_noreturn] = ACTIONS(3215), - [anon_sym_mutable] = ACTIONS(3215), - [anon_sym_constinit] = ACTIONS(3215), - [anon_sym_consteval] = ACTIONS(3215), - [sym_primitive_type] = ACTIONS(3215), - [anon_sym_enum] = ACTIONS(3215), - [anon_sym_class] = ACTIONS(3215), - [anon_sym_struct] = ACTIONS(3215), - [anon_sym_union] = ACTIONS(3215), - [anon_sym_if] = ACTIONS(3215), - [anon_sym_else] = ACTIONS(3215), - [anon_sym_switch] = ACTIONS(3215), - [anon_sym_case] = ACTIONS(3215), - [anon_sym_default] = ACTIONS(3215), - [anon_sym_while] = ACTIONS(3215), - [anon_sym_do] = ACTIONS(3215), - [anon_sym_for] = ACTIONS(3215), - [anon_sym_return] = ACTIONS(3215), - [anon_sym_break] = ACTIONS(3215), - [anon_sym_continue] = ACTIONS(3215), - [anon_sym_goto] = ACTIONS(3215), - [anon_sym___try] = ACTIONS(3215), - [anon_sym___leave] = ACTIONS(3215), - [anon_sym_not] = ACTIONS(3215), - [anon_sym_compl] = ACTIONS(3215), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_sizeof] = ACTIONS(3215), - [anon_sym___alignof__] = ACTIONS(3215), - [anon_sym___alignof] = ACTIONS(3215), - [anon_sym__alignof] = ACTIONS(3215), - [anon_sym_alignof] = ACTIONS(3215), - [anon_sym__Alignof] = ACTIONS(3215), - [anon_sym_offsetof] = ACTIONS(3215), - [anon_sym__Generic] = ACTIONS(3215), - [anon_sym_asm] = ACTIONS(3215), - [anon_sym___asm__] = ACTIONS(3215), - [sym_number_literal] = ACTIONS(3217), - [anon_sym_L_SQUOTE] = ACTIONS(3217), - [anon_sym_u_SQUOTE] = ACTIONS(3217), - [anon_sym_U_SQUOTE] = ACTIONS(3217), - [anon_sym_u8_SQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_L_DQUOTE] = ACTIONS(3217), - [anon_sym_u_DQUOTE] = ACTIONS(3217), - [anon_sym_U_DQUOTE] = ACTIONS(3217), - [anon_sym_u8_DQUOTE] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [sym_true] = ACTIONS(3215), - [sym_false] = ACTIONS(3215), - [anon_sym_NULL] = ACTIONS(3215), - [anon_sym_nullptr] = ACTIONS(3215), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3215), - [anon_sym_decltype] = ACTIONS(3215), - [anon_sym_virtual] = ACTIONS(3215), - [anon_sym_alignas] = ACTIONS(3215), - [anon_sym_explicit] = ACTIONS(3215), - [anon_sym_typename] = ACTIONS(3215), - [anon_sym_template] = ACTIONS(3215), - [anon_sym_operator] = ACTIONS(3215), - [anon_sym_try] = ACTIONS(3215), - [anon_sym_delete] = ACTIONS(3215), - [anon_sym_throw] = ACTIONS(3215), - [anon_sym_namespace] = ACTIONS(3215), - [anon_sym_using] = ACTIONS(3215), - [anon_sym_static_assert] = ACTIONS(3215), - [anon_sym_concept] = ACTIONS(3215), - [anon_sym_co_return] = ACTIONS(3215), - [anon_sym_co_yield] = ACTIONS(3215), - [anon_sym_R_DQUOTE] = ACTIONS(3217), - [anon_sym_LR_DQUOTE] = ACTIONS(3217), - [anon_sym_uR_DQUOTE] = ACTIONS(3217), - [anon_sym_UR_DQUOTE] = ACTIONS(3217), - [anon_sym_u8R_DQUOTE] = ACTIONS(3217), - [anon_sym_co_await] = ACTIONS(3215), - [anon_sym_new] = ACTIONS(3215), - [anon_sym_requires] = ACTIONS(3215), - [sym_this] = ACTIONS(3215), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3217), - [sym_semgrep_named_ellipsis] = ACTIONS(3217), - }, - [336] = { + [345] = { [sym_identifier] = ACTIONS(3219), [aux_sym_preproc_include_token1] = ACTIONS(3219), [aux_sym_preproc_def_token1] = ACTIONS(3219), @@ -112083,147 +103518,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3221), [sym_semgrep_named_ellipsis] = ACTIONS(3221), }, - [337] = { - [sym_catch_clause] = STATE(306), - [aux_sym_constructor_try_statement_repeat1] = STATE(306), - [sym_identifier] = ACTIONS(3074), - [aux_sym_preproc_include_token1] = ACTIONS(3074), - [aux_sym_preproc_def_token1] = ACTIONS(3074), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3076), - [aux_sym_preproc_if_token1] = ACTIONS(3074), - [aux_sym_preproc_if_token2] = ACTIONS(3074), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3074), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3074), - [aux_sym_preproc_else_token1] = ACTIONS(3074), - [aux_sym_preproc_elif_token1] = ACTIONS(3074), - [sym_preproc_directive] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3076), - [anon_sym_BANG] = ACTIONS(3076), - [anon_sym_TILDE] = ACTIONS(3076), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_STAR] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_SEMI] = ACTIONS(3076), - [anon_sym___extension__] = ACTIONS(3074), - [anon_sym_typedef] = ACTIONS(3074), - [anon_sym_extern] = ACTIONS(3074), - [anon_sym___attribute__] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3076), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3076), - [anon_sym___declspec] = ACTIONS(3074), - [anon_sym___based] = ACTIONS(3074), - [anon_sym___cdecl] = ACTIONS(3074), - [anon_sym___clrcall] = ACTIONS(3074), - [anon_sym___stdcall] = ACTIONS(3074), - [anon_sym___fastcall] = ACTIONS(3074), - [anon_sym___thiscall] = ACTIONS(3074), - [anon_sym___vectorcall] = ACTIONS(3074), - [anon_sym_LBRACE] = ACTIONS(3076), - [anon_sym_signed] = ACTIONS(3074), - [anon_sym_unsigned] = ACTIONS(3074), - [anon_sym_long] = ACTIONS(3074), - [anon_sym_short] = ACTIONS(3074), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_static] = ACTIONS(3074), - [anon_sym_register] = ACTIONS(3074), - [anon_sym_inline] = ACTIONS(3074), - [anon_sym___inline] = ACTIONS(3074), - [anon_sym___inline__] = ACTIONS(3074), - [anon_sym___forceinline] = ACTIONS(3074), - [anon_sym_thread_local] = ACTIONS(3074), - [anon_sym___thread] = ACTIONS(3074), - [anon_sym_const] = ACTIONS(3074), - [anon_sym_constexpr] = ACTIONS(3074), - [anon_sym_volatile] = ACTIONS(3074), - [anon_sym_restrict] = ACTIONS(3074), - [anon_sym___restrict__] = ACTIONS(3074), - [anon_sym__Atomic] = ACTIONS(3074), - [anon_sym__Noreturn] = ACTIONS(3074), - [anon_sym_noreturn] = ACTIONS(3074), - [anon_sym_mutable] = ACTIONS(3074), - [anon_sym_constinit] = ACTIONS(3074), - [anon_sym_consteval] = ACTIONS(3074), - [sym_primitive_type] = ACTIONS(3074), - [anon_sym_enum] = ACTIONS(3074), - [anon_sym_class] = ACTIONS(3074), - [anon_sym_struct] = ACTIONS(3074), - [anon_sym_union] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_switch] = ACTIONS(3074), - [anon_sym_case] = ACTIONS(3074), - [anon_sym_default] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_break] = ACTIONS(3074), - [anon_sym_continue] = ACTIONS(3074), - [anon_sym_goto] = ACTIONS(3074), - [anon_sym___try] = ACTIONS(3074), - [anon_sym___leave] = ACTIONS(3074), - [anon_sym_not] = ACTIONS(3074), - [anon_sym_compl] = ACTIONS(3074), - [anon_sym_DASH_DASH] = ACTIONS(3076), - [anon_sym_PLUS_PLUS] = ACTIONS(3076), - [anon_sym_sizeof] = ACTIONS(3074), - [anon_sym___alignof__] = ACTIONS(3074), - [anon_sym___alignof] = ACTIONS(3074), - [anon_sym__alignof] = ACTIONS(3074), - [anon_sym_alignof] = ACTIONS(3074), - [anon_sym__Alignof] = ACTIONS(3074), - [anon_sym_offsetof] = ACTIONS(3074), - [anon_sym__Generic] = ACTIONS(3074), - [anon_sym_asm] = ACTIONS(3074), - [anon_sym___asm__] = ACTIONS(3074), - [sym_number_literal] = ACTIONS(3076), - [anon_sym_L_SQUOTE] = ACTIONS(3076), - [anon_sym_u_SQUOTE] = ACTIONS(3076), - [anon_sym_U_SQUOTE] = ACTIONS(3076), - [anon_sym_u8_SQUOTE] = ACTIONS(3076), - [anon_sym_SQUOTE] = ACTIONS(3076), - [anon_sym_L_DQUOTE] = ACTIONS(3076), - [anon_sym_u_DQUOTE] = ACTIONS(3076), - [anon_sym_U_DQUOTE] = ACTIONS(3076), - [anon_sym_u8_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE] = ACTIONS(3076), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3074), - [anon_sym_nullptr] = ACTIONS(3074), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3074), - [anon_sym_decltype] = ACTIONS(3074), - [anon_sym_virtual] = ACTIONS(3074), - [anon_sym_alignas] = ACTIONS(3074), - [anon_sym_explicit] = ACTIONS(3074), - [anon_sym_typename] = ACTIONS(3074), - [anon_sym_template] = ACTIONS(3074), - [anon_sym_operator] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_delete] = ACTIONS(3074), - [anon_sym_throw] = ACTIONS(3074), - [anon_sym_namespace] = ACTIONS(3074), - [anon_sym_using] = ACTIONS(3074), - [anon_sym_static_assert] = ACTIONS(3074), - [anon_sym_concept] = ACTIONS(3074), - [anon_sym_co_return] = ACTIONS(3074), - [anon_sym_co_yield] = ACTIONS(3074), - [anon_sym_catch] = ACTIONS(3092), - [anon_sym_R_DQUOTE] = ACTIONS(3076), - [anon_sym_LR_DQUOTE] = ACTIONS(3076), - [anon_sym_uR_DQUOTE] = ACTIONS(3076), - [anon_sym_UR_DQUOTE] = ACTIONS(3076), - [anon_sym_u8R_DQUOTE] = ACTIONS(3076), - [anon_sym_co_await] = ACTIONS(3074), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_requires] = ACTIONS(3074), - [sym_this] = ACTIONS(3074), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3076), - [sym_semgrep_named_ellipsis] = ACTIONS(3076), - }, - [338] = { + [346] = { [sym_identifier] = ACTIONS(3223), [aux_sym_preproc_include_token1] = ACTIONS(3223), [aux_sym_preproc_def_token1] = ACTIONS(3223), @@ -112291,7 +103586,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(3223), [anon_sym_union] = ACTIONS(3223), [anon_sym_if] = ACTIONS(3223), - [anon_sym_else] = ACTIONS(3223), [anon_sym_switch] = ACTIONS(3223), [anon_sym_case] = ACTIONS(3223), [anon_sym_default] = ACTIONS(3223), @@ -112363,3350 +103657,1258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3225), [sym_semgrep_named_ellipsis] = ACTIONS(3225), }, - [339] = { + [347] = { + [sym_preproc_def] = STATE(1935), + [sym_preproc_function_def] = STATE(1935), + [sym_preproc_call] = STATE(1935), + [sym_preproc_if_in_field_declaration_list] = STATE(1935), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1935), + [sym_preproc_else_in_field_declaration_list] = STATE(9777), + [sym_preproc_elif_in_field_declaration_list] = STATE(9777), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(9777), + [sym_type_definition] = STATE(1935), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6440), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7286), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(584), + [sym_field_declaration] = STATE(1935), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(1935), + [sym_operator_cast] = STATE(7765), + [sym_inline_method_definition] = STATE(1935), + [sym_constructor_specifiers] = STATE(1957), + [sym_operator_cast_definition] = STATE(1935), + [sym_operator_cast_declaration] = STATE(1935), + [sym_constructor_or_destructor_definition] = STATE(1935), + [sym_constructor_or_destructor_declaration] = STATE(1935), + [sym_friend_declaration] = STATE(1935), + [sym_access_specifier] = STATE(9998), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(1935), + [sym_alias_declaration] = STATE(1935), + [sym_static_assert_declaration] = STATE(1935), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7765), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(1935), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(584), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1957), [sym_identifier] = ACTIONS(3227), - [aux_sym_preproc_include_token1] = ACTIONS(3227), - [aux_sym_preproc_def_token1] = ACTIONS(3227), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3229), - [aux_sym_preproc_if_token1] = ACTIONS(3227), - [aux_sym_preproc_if_token2] = ACTIONS(3227), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3227), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3227), - [aux_sym_preproc_else_token1] = ACTIONS(3227), - [aux_sym_preproc_elif_token1] = ACTIONS(3227), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3227), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3227), - [sym_preproc_directive] = ACTIONS(3227), - [anon_sym_LPAREN2] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_TILDE] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_AMP_AMP] = ACTIONS(3229), - [anon_sym_AMP] = ACTIONS(3227), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym___extension__] = ACTIONS(3227), - [anon_sym_typedef] = ACTIONS(3227), - [anon_sym_extern] = ACTIONS(3227), - [anon_sym___attribute__] = ACTIONS(3227), - [anon_sym_COLON_COLON] = ACTIONS(3229), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3229), - [anon_sym___declspec] = ACTIONS(3227), - [anon_sym___based] = ACTIONS(3227), - [anon_sym___cdecl] = ACTIONS(3227), - [anon_sym___clrcall] = ACTIONS(3227), - [anon_sym___stdcall] = ACTIONS(3227), - [anon_sym___fastcall] = ACTIONS(3227), - [anon_sym___thiscall] = ACTIONS(3227), - [anon_sym___vectorcall] = ACTIONS(3227), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_signed] = ACTIONS(3227), - [anon_sym_unsigned] = ACTIONS(3227), - [anon_sym_long] = ACTIONS(3227), - [anon_sym_short] = ACTIONS(3227), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_static] = ACTIONS(3227), - [anon_sym_register] = ACTIONS(3227), - [anon_sym_inline] = ACTIONS(3227), - [anon_sym___inline] = ACTIONS(3227), - [anon_sym___inline__] = ACTIONS(3227), - [anon_sym___forceinline] = ACTIONS(3227), - [anon_sym_thread_local] = ACTIONS(3227), - [anon_sym___thread] = ACTIONS(3227), - [anon_sym_const] = ACTIONS(3227), - [anon_sym_constexpr] = ACTIONS(3227), - [anon_sym_volatile] = ACTIONS(3227), - [anon_sym_restrict] = ACTIONS(3227), - [anon_sym___restrict__] = ACTIONS(3227), - [anon_sym__Atomic] = ACTIONS(3227), - [anon_sym__Noreturn] = ACTIONS(3227), - [anon_sym_noreturn] = ACTIONS(3227), - [anon_sym_mutable] = ACTIONS(3227), - [anon_sym_constinit] = ACTIONS(3227), - [anon_sym_consteval] = ACTIONS(3227), - [sym_primitive_type] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(3227), - [anon_sym_class] = ACTIONS(3227), - [anon_sym_struct] = ACTIONS(3227), - [anon_sym_union] = ACTIONS(3227), - [anon_sym_if] = ACTIONS(3227), - [anon_sym_else] = ACTIONS(3227), - [anon_sym_switch] = ACTIONS(3227), - [anon_sym_case] = ACTIONS(3227), - [anon_sym_default] = ACTIONS(3227), - [anon_sym_while] = ACTIONS(3227), - [anon_sym_do] = ACTIONS(3227), - [anon_sym_for] = ACTIONS(3227), - [anon_sym_return] = ACTIONS(3227), - [anon_sym_break] = ACTIONS(3227), - [anon_sym_continue] = ACTIONS(3227), - [anon_sym_goto] = ACTIONS(3227), - [anon_sym___try] = ACTIONS(3227), - [anon_sym___leave] = ACTIONS(3227), - [anon_sym_not] = ACTIONS(3227), - [anon_sym_compl] = ACTIONS(3227), - [anon_sym_DASH_DASH] = ACTIONS(3229), - [anon_sym_PLUS_PLUS] = ACTIONS(3229), - [anon_sym_sizeof] = ACTIONS(3227), - [anon_sym___alignof__] = ACTIONS(3227), - [anon_sym___alignof] = ACTIONS(3227), - [anon_sym__alignof] = ACTIONS(3227), - [anon_sym_alignof] = ACTIONS(3227), - [anon_sym__Alignof] = ACTIONS(3227), - [anon_sym_offsetof] = ACTIONS(3227), - [anon_sym__Generic] = ACTIONS(3227), - [anon_sym_asm] = ACTIONS(3227), - [anon_sym___asm__] = ACTIONS(3227), - [sym_number_literal] = ACTIONS(3229), - [anon_sym_L_SQUOTE] = ACTIONS(3229), - [anon_sym_u_SQUOTE] = ACTIONS(3229), - [anon_sym_U_SQUOTE] = ACTIONS(3229), - [anon_sym_u8_SQUOTE] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3229), - [anon_sym_L_DQUOTE] = ACTIONS(3229), - [anon_sym_u_DQUOTE] = ACTIONS(3229), - [anon_sym_U_DQUOTE] = ACTIONS(3229), - [anon_sym_u8_DQUOTE] = ACTIONS(3229), - [anon_sym_DQUOTE] = ACTIONS(3229), - [sym_true] = ACTIONS(3227), - [sym_false] = ACTIONS(3227), - [anon_sym_NULL] = ACTIONS(3227), - [anon_sym_nullptr] = ACTIONS(3227), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3227), - [anon_sym_decltype] = ACTIONS(3227), - [anon_sym_virtual] = ACTIONS(3227), - [anon_sym_alignas] = ACTIONS(3227), - [anon_sym_explicit] = ACTIONS(3227), - [anon_sym_typename] = ACTIONS(3227), - [anon_sym_template] = ACTIONS(3227), - [anon_sym_operator] = ACTIONS(3227), - [anon_sym_try] = ACTIONS(3227), - [anon_sym_delete] = ACTIONS(3227), - [anon_sym_throw] = ACTIONS(3227), - [anon_sym_namespace] = ACTIONS(3227), - [anon_sym_using] = ACTIONS(3227), - [anon_sym_static_assert] = ACTIONS(3227), - [anon_sym_concept] = ACTIONS(3227), - [anon_sym_co_return] = ACTIONS(3227), - [anon_sym_co_yield] = ACTIONS(3227), - [anon_sym_R_DQUOTE] = ACTIONS(3229), - [anon_sym_LR_DQUOTE] = ACTIONS(3229), - [anon_sym_uR_DQUOTE] = ACTIONS(3229), - [anon_sym_UR_DQUOTE] = ACTIONS(3229), - [anon_sym_u8R_DQUOTE] = ACTIONS(3229), - [anon_sym_co_await] = ACTIONS(3227), - [anon_sym_new] = ACTIONS(3227), - [anon_sym_requires] = ACTIONS(3227), - [sym_this] = ACTIONS(3227), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3229), - [sym_semgrep_named_ellipsis] = ACTIONS(3229), - }, - [340] = { - [sym_identifier] = ACTIONS(3231), - [aux_sym_preproc_include_token1] = ACTIONS(3231), - [aux_sym_preproc_def_token1] = ACTIONS(3231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3233), - [aux_sym_preproc_if_token1] = ACTIONS(3231), - [aux_sym_preproc_if_token2] = ACTIONS(3231), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3231), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3231), - [aux_sym_preproc_else_token1] = ACTIONS(3231), - [aux_sym_preproc_elif_token1] = ACTIONS(3231), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3231), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3231), - [sym_preproc_directive] = ACTIONS(3231), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(3233), - [anon_sym_TILDE] = ACTIONS(3233), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3233), - [anon_sym_AMP_AMP] = ACTIONS(3233), - [anon_sym_AMP] = ACTIONS(3231), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym___extension__] = ACTIONS(3231), - [anon_sym_typedef] = ACTIONS(3231), - [anon_sym_extern] = ACTIONS(3231), - [anon_sym___attribute__] = ACTIONS(3231), - [anon_sym_COLON_COLON] = ACTIONS(3233), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3233), - [anon_sym___declspec] = ACTIONS(3231), - [anon_sym___based] = ACTIONS(3231), - [anon_sym___cdecl] = ACTIONS(3231), - [anon_sym___clrcall] = ACTIONS(3231), - [anon_sym___stdcall] = ACTIONS(3231), - [anon_sym___fastcall] = ACTIONS(3231), - [anon_sym___thiscall] = ACTIONS(3231), - [anon_sym___vectorcall] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_signed] = ACTIONS(3231), - [anon_sym_unsigned] = ACTIONS(3231), - [anon_sym_long] = ACTIONS(3231), - [anon_sym_short] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_static] = ACTIONS(3231), - [anon_sym_register] = ACTIONS(3231), - [anon_sym_inline] = ACTIONS(3231), - [anon_sym___inline] = ACTIONS(3231), - [anon_sym___inline__] = ACTIONS(3231), - [anon_sym___forceinline] = ACTIONS(3231), - [anon_sym_thread_local] = ACTIONS(3231), - [anon_sym___thread] = ACTIONS(3231), - [anon_sym_const] = ACTIONS(3231), - [anon_sym_constexpr] = ACTIONS(3231), - [anon_sym_volatile] = ACTIONS(3231), - [anon_sym_restrict] = ACTIONS(3231), - [anon_sym___restrict__] = ACTIONS(3231), - [anon_sym__Atomic] = ACTIONS(3231), - [anon_sym__Noreturn] = ACTIONS(3231), - [anon_sym_noreturn] = ACTIONS(3231), - [anon_sym_mutable] = ACTIONS(3231), - [anon_sym_constinit] = ACTIONS(3231), - [anon_sym_consteval] = ACTIONS(3231), - [sym_primitive_type] = ACTIONS(3231), - [anon_sym_enum] = ACTIONS(3231), - [anon_sym_class] = ACTIONS(3231), - [anon_sym_struct] = ACTIONS(3231), - [anon_sym_union] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_else] = ACTIONS(3231), - [anon_sym_switch] = ACTIONS(3231), - [anon_sym_case] = ACTIONS(3231), - [anon_sym_default] = ACTIONS(3231), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_do] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_break] = ACTIONS(3231), - [anon_sym_continue] = ACTIONS(3231), - [anon_sym_goto] = ACTIONS(3231), - [anon_sym___try] = ACTIONS(3231), - [anon_sym___leave] = ACTIONS(3231), - [anon_sym_not] = ACTIONS(3231), - [anon_sym_compl] = ACTIONS(3231), - [anon_sym_DASH_DASH] = ACTIONS(3233), - [anon_sym_PLUS_PLUS] = ACTIONS(3233), - [anon_sym_sizeof] = ACTIONS(3231), - [anon_sym___alignof__] = ACTIONS(3231), - [anon_sym___alignof] = ACTIONS(3231), - [anon_sym__alignof] = ACTIONS(3231), - [anon_sym_alignof] = ACTIONS(3231), - [anon_sym__Alignof] = ACTIONS(3231), - [anon_sym_offsetof] = ACTIONS(3231), - [anon_sym__Generic] = ACTIONS(3231), - [anon_sym_asm] = ACTIONS(3231), - [anon_sym___asm__] = ACTIONS(3231), - [sym_number_literal] = ACTIONS(3233), - [anon_sym_L_SQUOTE] = ACTIONS(3233), - [anon_sym_u_SQUOTE] = ACTIONS(3233), - [anon_sym_U_SQUOTE] = ACTIONS(3233), - [anon_sym_u8_SQUOTE] = ACTIONS(3233), - [anon_sym_SQUOTE] = ACTIONS(3233), - [anon_sym_L_DQUOTE] = ACTIONS(3233), - [anon_sym_u_DQUOTE] = ACTIONS(3233), - [anon_sym_U_DQUOTE] = ACTIONS(3233), - [anon_sym_u8_DQUOTE] = ACTIONS(3233), - [anon_sym_DQUOTE] = ACTIONS(3233), - [sym_true] = ACTIONS(3231), - [sym_false] = ACTIONS(3231), - [anon_sym_NULL] = ACTIONS(3231), - [anon_sym_nullptr] = ACTIONS(3231), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3231), - [anon_sym_decltype] = ACTIONS(3231), - [anon_sym_virtual] = ACTIONS(3231), - [anon_sym_alignas] = ACTIONS(3231), - [anon_sym_explicit] = ACTIONS(3231), - [anon_sym_typename] = ACTIONS(3231), - [anon_sym_template] = ACTIONS(3231), - [anon_sym_operator] = ACTIONS(3231), - [anon_sym_try] = ACTIONS(3231), - [anon_sym_delete] = ACTIONS(3231), - [anon_sym_throw] = ACTIONS(3231), - [anon_sym_namespace] = ACTIONS(3231), - [anon_sym_using] = ACTIONS(3231), - [anon_sym_static_assert] = ACTIONS(3231), - [anon_sym_concept] = ACTIONS(3231), - [anon_sym_co_return] = ACTIONS(3231), - [anon_sym_co_yield] = ACTIONS(3231), - [anon_sym_R_DQUOTE] = ACTIONS(3233), - [anon_sym_LR_DQUOTE] = ACTIONS(3233), - [anon_sym_uR_DQUOTE] = ACTIONS(3233), - [anon_sym_UR_DQUOTE] = ACTIONS(3233), - [anon_sym_u8R_DQUOTE] = ACTIONS(3233), - [anon_sym_co_await] = ACTIONS(3231), - [anon_sym_new] = ACTIONS(3231), - [anon_sym_requires] = ACTIONS(3231), - [sym_this] = ACTIONS(3231), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3233), - [sym_semgrep_named_ellipsis] = ACTIONS(3233), - }, - [341] = { - [sym_identifier] = ACTIONS(3235), - [aux_sym_preproc_include_token1] = ACTIONS(3235), - [aux_sym_preproc_def_token1] = ACTIONS(3235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3237), - [aux_sym_preproc_if_token1] = ACTIONS(3235), + [aux_sym_preproc_def_token1] = ACTIONS(3229), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3231), + [aux_sym_preproc_if_token1] = ACTIONS(3233), [aux_sym_preproc_if_token2] = ACTIONS(3235), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3235), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3235), - [aux_sym_preproc_else_token1] = ACTIONS(3235), - [aux_sym_preproc_elif_token1] = ACTIONS(3235), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3235), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3235), - [sym_preproc_directive] = ACTIONS(3235), - [anon_sym_LPAREN2] = ACTIONS(3237), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_TILDE] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3235), - [anon_sym_STAR] = ACTIONS(3237), - [anon_sym_AMP_AMP] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3235), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym___extension__] = ACTIONS(3235), - [anon_sym_typedef] = ACTIONS(3235), - [anon_sym_extern] = ACTIONS(3235), - [anon_sym___attribute__] = ACTIONS(3235), - [anon_sym_COLON_COLON] = ACTIONS(3237), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3237), - [anon_sym___declspec] = ACTIONS(3235), - [anon_sym___based] = ACTIONS(3235), - [anon_sym___cdecl] = ACTIONS(3235), - [anon_sym___clrcall] = ACTIONS(3235), - [anon_sym___stdcall] = ACTIONS(3235), - [anon_sym___fastcall] = ACTIONS(3235), - [anon_sym___thiscall] = ACTIONS(3235), - [anon_sym___vectorcall] = ACTIONS(3235), - [anon_sym_LBRACE] = ACTIONS(3237), - [anon_sym_signed] = ACTIONS(3235), - [anon_sym_unsigned] = ACTIONS(3235), - [anon_sym_long] = ACTIONS(3235), - [anon_sym_short] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3235), - [anon_sym_static] = ACTIONS(3235), - [anon_sym_register] = ACTIONS(3235), - [anon_sym_inline] = ACTIONS(3235), - [anon_sym___inline] = ACTIONS(3235), - [anon_sym___inline__] = ACTIONS(3235), - [anon_sym___forceinline] = ACTIONS(3235), - [anon_sym_thread_local] = ACTIONS(3235), - [anon_sym___thread] = ACTIONS(3235), - [anon_sym_const] = ACTIONS(3235), - [anon_sym_constexpr] = ACTIONS(3235), - [anon_sym_volatile] = ACTIONS(3235), - [anon_sym_restrict] = ACTIONS(3235), - [anon_sym___restrict__] = ACTIONS(3235), - [anon_sym__Atomic] = ACTIONS(3235), - [anon_sym__Noreturn] = ACTIONS(3235), - [anon_sym_noreturn] = ACTIONS(3235), - [anon_sym_mutable] = ACTIONS(3235), - [anon_sym_constinit] = ACTIONS(3235), - [anon_sym_consteval] = ACTIONS(3235), - [sym_primitive_type] = ACTIONS(3235), - [anon_sym_enum] = ACTIONS(3235), - [anon_sym_class] = ACTIONS(3235), - [anon_sym_struct] = ACTIONS(3235), - [anon_sym_union] = ACTIONS(3235), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_else] = ACTIONS(3235), - [anon_sym_switch] = ACTIONS(3235), - [anon_sym_case] = ACTIONS(3235), - [anon_sym_default] = ACTIONS(3235), - [anon_sym_while] = ACTIONS(3235), - [anon_sym_do] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_return] = ACTIONS(3235), - [anon_sym_break] = ACTIONS(3235), - [anon_sym_continue] = ACTIONS(3235), - [anon_sym_goto] = ACTIONS(3235), - [anon_sym___try] = ACTIONS(3235), - [anon_sym___leave] = ACTIONS(3235), - [anon_sym_not] = ACTIONS(3235), - [anon_sym_compl] = ACTIONS(3235), - [anon_sym_DASH_DASH] = ACTIONS(3237), - [anon_sym_PLUS_PLUS] = ACTIONS(3237), - [anon_sym_sizeof] = ACTIONS(3235), - [anon_sym___alignof__] = ACTIONS(3235), - [anon_sym___alignof] = ACTIONS(3235), - [anon_sym__alignof] = ACTIONS(3235), - [anon_sym_alignof] = ACTIONS(3235), - [anon_sym__Alignof] = ACTIONS(3235), - [anon_sym_offsetof] = ACTIONS(3235), - [anon_sym__Generic] = ACTIONS(3235), - [anon_sym_asm] = ACTIONS(3235), - [anon_sym___asm__] = ACTIONS(3235), - [sym_number_literal] = ACTIONS(3237), - [anon_sym_L_SQUOTE] = ACTIONS(3237), - [anon_sym_u_SQUOTE] = ACTIONS(3237), - [anon_sym_U_SQUOTE] = ACTIONS(3237), - [anon_sym_u8_SQUOTE] = ACTIONS(3237), - [anon_sym_SQUOTE] = ACTIONS(3237), - [anon_sym_L_DQUOTE] = ACTIONS(3237), - [anon_sym_u_DQUOTE] = ACTIONS(3237), - [anon_sym_U_DQUOTE] = ACTIONS(3237), - [anon_sym_u8_DQUOTE] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(3237), - [sym_true] = ACTIONS(3235), - [sym_false] = ACTIONS(3235), - [anon_sym_NULL] = ACTIONS(3235), - [anon_sym_nullptr] = ACTIONS(3235), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3235), - [anon_sym_decltype] = ACTIONS(3235), - [anon_sym_virtual] = ACTIONS(3235), - [anon_sym_alignas] = ACTIONS(3235), - [anon_sym_explicit] = ACTIONS(3235), - [anon_sym_typename] = ACTIONS(3235), - [anon_sym_template] = ACTIONS(3235), - [anon_sym_operator] = ACTIONS(3235), - [anon_sym_try] = ACTIONS(3235), - [anon_sym_delete] = ACTIONS(3235), - [anon_sym_throw] = ACTIONS(3235), - [anon_sym_namespace] = ACTIONS(3235), - [anon_sym_using] = ACTIONS(3235), - [anon_sym_static_assert] = ACTIONS(3235), - [anon_sym_concept] = ACTIONS(3235), - [anon_sym_co_return] = ACTIONS(3235), - [anon_sym_co_yield] = ACTIONS(3235), - [anon_sym_R_DQUOTE] = ACTIONS(3237), - [anon_sym_LR_DQUOTE] = ACTIONS(3237), - [anon_sym_uR_DQUOTE] = ACTIONS(3237), - [anon_sym_UR_DQUOTE] = ACTIONS(3237), - [anon_sym_u8R_DQUOTE] = ACTIONS(3237), - [anon_sym_co_await] = ACTIONS(3235), - [anon_sym_new] = ACTIONS(3235), - [anon_sym_requires] = ACTIONS(3235), - [sym_this] = ACTIONS(3235), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3237), - [sym_semgrep_named_ellipsis] = ACTIONS(3237), - }, - [342] = { - [sym_identifier] = ACTIONS(3207), - [aux_sym_preproc_include_token1] = ACTIONS(3207), - [aux_sym_preproc_def_token1] = ACTIONS(3207), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3209), - [aux_sym_preproc_if_token1] = ACTIONS(3207), - [aux_sym_preproc_if_token2] = ACTIONS(3207), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3207), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3207), - [aux_sym_preproc_else_token1] = ACTIONS(3207), - [aux_sym_preproc_elif_token1] = ACTIONS(3207), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3207), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3207), - [sym_preproc_directive] = ACTIONS(3207), - [anon_sym_LPAREN2] = ACTIONS(3209), - [anon_sym_BANG] = ACTIONS(3209), - [anon_sym_TILDE] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(3209), - [anon_sym_AMP_AMP] = ACTIONS(3209), - [anon_sym_AMP] = ACTIONS(3207), - [anon_sym_SEMI] = ACTIONS(3209), - [anon_sym___extension__] = ACTIONS(3207), - [anon_sym_typedef] = ACTIONS(3207), - [anon_sym_extern] = ACTIONS(3207), - [anon_sym___attribute__] = ACTIONS(3207), - [anon_sym_COLON_COLON] = ACTIONS(3209), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3209), - [anon_sym___declspec] = ACTIONS(3207), - [anon_sym___based] = ACTIONS(3207), - [anon_sym___cdecl] = ACTIONS(3207), - [anon_sym___clrcall] = ACTIONS(3207), - [anon_sym___stdcall] = ACTIONS(3207), - [anon_sym___fastcall] = ACTIONS(3207), - [anon_sym___thiscall] = ACTIONS(3207), - [anon_sym___vectorcall] = ACTIONS(3207), - [anon_sym_LBRACE] = ACTIONS(3209), - [anon_sym_signed] = ACTIONS(3207), - [anon_sym_unsigned] = ACTIONS(3207), - [anon_sym_long] = ACTIONS(3207), - [anon_sym_short] = ACTIONS(3207), - [anon_sym_LBRACK] = ACTIONS(3207), - [anon_sym_static] = ACTIONS(3207), - [anon_sym_register] = ACTIONS(3207), - [anon_sym_inline] = ACTIONS(3207), - [anon_sym___inline] = ACTIONS(3207), - [anon_sym___inline__] = ACTIONS(3207), - [anon_sym___forceinline] = ACTIONS(3207), - [anon_sym_thread_local] = ACTIONS(3207), - [anon_sym___thread] = ACTIONS(3207), - [anon_sym_const] = ACTIONS(3207), - [anon_sym_constexpr] = ACTIONS(3207), - [anon_sym_volatile] = ACTIONS(3207), - [anon_sym_restrict] = ACTIONS(3207), - [anon_sym___restrict__] = ACTIONS(3207), - [anon_sym__Atomic] = ACTIONS(3207), - [anon_sym__Noreturn] = ACTIONS(3207), - [anon_sym_noreturn] = ACTIONS(3207), - [anon_sym_mutable] = ACTIONS(3207), - [anon_sym_constinit] = ACTIONS(3207), - [anon_sym_consteval] = ACTIONS(3207), - [sym_primitive_type] = ACTIONS(3207), - [anon_sym_enum] = ACTIONS(3207), - [anon_sym_class] = ACTIONS(3207), - [anon_sym_struct] = ACTIONS(3207), - [anon_sym_union] = ACTIONS(3207), - [anon_sym_if] = ACTIONS(3207), - [anon_sym_else] = ACTIONS(3207), - [anon_sym_switch] = ACTIONS(3207), - [anon_sym_case] = ACTIONS(3207), - [anon_sym_default] = ACTIONS(3207), - [anon_sym_while] = ACTIONS(3207), - [anon_sym_do] = ACTIONS(3207), - [anon_sym_for] = ACTIONS(3207), - [anon_sym_return] = ACTIONS(3207), - [anon_sym_break] = ACTIONS(3207), - [anon_sym_continue] = ACTIONS(3207), - [anon_sym_goto] = ACTIONS(3207), - [anon_sym___try] = ACTIONS(3207), - [anon_sym___leave] = ACTIONS(3207), - [anon_sym_not] = ACTIONS(3207), - [anon_sym_compl] = ACTIONS(3207), - [anon_sym_DASH_DASH] = ACTIONS(3209), - [anon_sym_PLUS_PLUS] = ACTIONS(3209), - [anon_sym_sizeof] = ACTIONS(3207), - [anon_sym___alignof__] = ACTIONS(3207), - [anon_sym___alignof] = ACTIONS(3207), - [anon_sym__alignof] = ACTIONS(3207), - [anon_sym_alignof] = ACTIONS(3207), - [anon_sym__Alignof] = ACTIONS(3207), - [anon_sym_offsetof] = ACTIONS(3207), - [anon_sym__Generic] = ACTIONS(3207), - [anon_sym_asm] = ACTIONS(3207), - [anon_sym___asm__] = ACTIONS(3207), - [sym_number_literal] = ACTIONS(3209), - [anon_sym_L_SQUOTE] = ACTIONS(3209), - [anon_sym_u_SQUOTE] = ACTIONS(3209), - [anon_sym_U_SQUOTE] = ACTIONS(3209), - [anon_sym_u8_SQUOTE] = ACTIONS(3209), - [anon_sym_SQUOTE] = ACTIONS(3209), - [anon_sym_L_DQUOTE] = ACTIONS(3209), - [anon_sym_u_DQUOTE] = ACTIONS(3209), - [anon_sym_U_DQUOTE] = ACTIONS(3209), - [anon_sym_u8_DQUOTE] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(3209), - [sym_true] = ACTIONS(3207), - [sym_false] = ACTIONS(3207), - [anon_sym_NULL] = ACTIONS(3207), - [anon_sym_nullptr] = ACTIONS(3207), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3207), - [anon_sym_decltype] = ACTIONS(3207), - [anon_sym_virtual] = ACTIONS(3207), - [anon_sym_alignas] = ACTIONS(3207), - [anon_sym_explicit] = ACTIONS(3207), - [anon_sym_typename] = ACTIONS(3207), - [anon_sym_template] = ACTIONS(3207), - [anon_sym_operator] = ACTIONS(3207), - [anon_sym_try] = ACTIONS(3207), - [anon_sym_delete] = ACTIONS(3207), - [anon_sym_throw] = ACTIONS(3207), - [anon_sym_namespace] = ACTIONS(3207), - [anon_sym_using] = ACTIONS(3207), - [anon_sym_static_assert] = ACTIONS(3207), - [anon_sym_concept] = ACTIONS(3207), - [anon_sym_co_return] = ACTIONS(3207), - [anon_sym_co_yield] = ACTIONS(3207), - [anon_sym_R_DQUOTE] = ACTIONS(3209), - [anon_sym_LR_DQUOTE] = ACTIONS(3209), - [anon_sym_uR_DQUOTE] = ACTIONS(3209), - [anon_sym_UR_DQUOTE] = ACTIONS(3209), - [anon_sym_u8R_DQUOTE] = ACTIONS(3209), - [anon_sym_co_await] = ACTIONS(3207), - [anon_sym_new] = ACTIONS(3207), - [anon_sym_requires] = ACTIONS(3207), - [sym_this] = ACTIONS(3207), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3209), - [sym_semgrep_named_ellipsis] = ACTIONS(3209), - }, - [343] = { - [sym_expression] = STATE(5787), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9893), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(3239), - [anon_sym___extension__] = ACTIONS(3215), - [anon_sym_extern] = ACTIONS(3215), - [anon_sym___attribute__] = ACTIONS(3215), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3217), - [anon_sym___declspec] = ACTIONS(3215), - [anon_sym_signed] = ACTIONS(3215), - [anon_sym_unsigned] = ACTIONS(3215), - [anon_sym_long] = ACTIONS(3215), - [anon_sym_short] = ACTIONS(3215), - [anon_sym_LBRACK] = ACTIONS(1536), - [anon_sym_static] = ACTIONS(3215), - [anon_sym_register] = ACTIONS(3215), - [anon_sym_inline] = ACTIONS(3215), - [anon_sym___inline] = ACTIONS(3215), - [anon_sym___inline__] = ACTIONS(3215), - [anon_sym___forceinline] = ACTIONS(3215), - [anon_sym_thread_local] = ACTIONS(3215), - [anon_sym___thread] = ACTIONS(3215), - [anon_sym_const] = ACTIONS(3215), - [anon_sym_constexpr] = ACTIONS(3215), - [anon_sym_volatile] = ACTIONS(3215), - [anon_sym_restrict] = ACTIONS(3215), - [anon_sym___restrict__] = ACTIONS(3215), - [anon_sym__Atomic] = ACTIONS(3215), - [anon_sym__Noreturn] = ACTIONS(3215), - [anon_sym_noreturn] = ACTIONS(3215), - [anon_sym_mutable] = ACTIONS(3215), - [anon_sym_constinit] = ACTIONS(3215), - [anon_sym_consteval] = ACTIONS(3215), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_enum] = ACTIONS(3215), - [anon_sym_class] = ACTIONS(3215), - [anon_sym_struct] = ACTIONS(3215), - [anon_sym_union] = ACTIONS(3215), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3215), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_virtual] = ACTIONS(3215), - [anon_sym_alignas] = ACTIONS(3215), - [anon_sym_typename] = ACTIONS(3215), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), - }, - [344] = { - [sym_identifier] = ACTIONS(3241), - [aux_sym_preproc_include_token1] = ACTIONS(3241), - [aux_sym_preproc_def_token1] = ACTIONS(3241), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3243), - [aux_sym_preproc_if_token1] = ACTIONS(3241), - [aux_sym_preproc_if_token2] = ACTIONS(3241), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3241), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3241), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3239), [aux_sym_preproc_else_token1] = ACTIONS(3241), - [aux_sym_preproc_elif_token1] = ACTIONS(3241), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3241), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3241), - [sym_preproc_directive] = ACTIONS(3241), - [anon_sym_LPAREN2] = ACTIONS(3243), - [anon_sym_BANG] = ACTIONS(3243), - [anon_sym_TILDE] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(3241), - [anon_sym_PLUS] = ACTIONS(3241), - [anon_sym_STAR] = ACTIONS(3243), - [anon_sym_AMP_AMP] = ACTIONS(3243), - [anon_sym_AMP] = ACTIONS(3241), - [anon_sym_SEMI] = ACTIONS(3243), - [anon_sym___extension__] = ACTIONS(3241), - [anon_sym_typedef] = ACTIONS(3241), - [anon_sym_extern] = ACTIONS(3241), - [anon_sym___attribute__] = ACTIONS(3241), - [anon_sym_COLON_COLON] = ACTIONS(3243), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3243), - [anon_sym___declspec] = ACTIONS(3241), - [anon_sym___based] = ACTIONS(3241), - [anon_sym___cdecl] = ACTIONS(3241), - [anon_sym___clrcall] = ACTIONS(3241), - [anon_sym___stdcall] = ACTIONS(3241), - [anon_sym___fastcall] = ACTIONS(3241), - [anon_sym___thiscall] = ACTIONS(3241), - [anon_sym___vectorcall] = ACTIONS(3241), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_signed] = ACTIONS(3241), - [anon_sym_unsigned] = ACTIONS(3241), - [anon_sym_long] = ACTIONS(3241), - [anon_sym_short] = ACTIONS(3241), - [anon_sym_LBRACK] = ACTIONS(3241), - [anon_sym_static] = ACTIONS(3241), - [anon_sym_register] = ACTIONS(3241), - [anon_sym_inline] = ACTIONS(3241), - [anon_sym___inline] = ACTIONS(3241), - [anon_sym___inline__] = ACTIONS(3241), - [anon_sym___forceinline] = ACTIONS(3241), - [anon_sym_thread_local] = ACTIONS(3241), - [anon_sym___thread] = ACTIONS(3241), - [anon_sym_const] = ACTIONS(3241), - [anon_sym_constexpr] = ACTIONS(3241), - [anon_sym_volatile] = ACTIONS(3241), - [anon_sym_restrict] = ACTIONS(3241), - [anon_sym___restrict__] = ACTIONS(3241), - [anon_sym__Atomic] = ACTIONS(3241), - [anon_sym__Noreturn] = ACTIONS(3241), - [anon_sym_noreturn] = ACTIONS(3241), - [anon_sym_mutable] = ACTIONS(3241), - [anon_sym_constinit] = ACTIONS(3241), - [anon_sym_consteval] = ACTIONS(3241), - [sym_primitive_type] = ACTIONS(3241), - [anon_sym_enum] = ACTIONS(3241), - [anon_sym_class] = ACTIONS(3241), - [anon_sym_struct] = ACTIONS(3241), - [anon_sym_union] = ACTIONS(3241), - [anon_sym_if] = ACTIONS(3241), - [anon_sym_else] = ACTIONS(3241), - [anon_sym_switch] = ACTIONS(3241), - [anon_sym_case] = ACTIONS(3241), - [anon_sym_default] = ACTIONS(3241), - [anon_sym_while] = ACTIONS(3241), - [anon_sym_do] = ACTIONS(3241), - [anon_sym_for] = ACTIONS(3241), - [anon_sym_return] = ACTIONS(3241), - [anon_sym_break] = ACTIONS(3241), - [anon_sym_continue] = ACTIONS(3241), - [anon_sym_goto] = ACTIONS(3241), - [anon_sym___try] = ACTIONS(3241), - [anon_sym___leave] = ACTIONS(3241), - [anon_sym_not] = ACTIONS(3241), - [anon_sym_compl] = ACTIONS(3241), - [anon_sym_DASH_DASH] = ACTIONS(3243), - [anon_sym_PLUS_PLUS] = ACTIONS(3243), - [anon_sym_sizeof] = ACTIONS(3241), - [anon_sym___alignof__] = ACTIONS(3241), - [anon_sym___alignof] = ACTIONS(3241), - [anon_sym__alignof] = ACTIONS(3241), - [anon_sym_alignof] = ACTIONS(3241), - [anon_sym__Alignof] = ACTIONS(3241), - [anon_sym_offsetof] = ACTIONS(3241), - [anon_sym__Generic] = ACTIONS(3241), - [anon_sym_asm] = ACTIONS(3241), - [anon_sym___asm__] = ACTIONS(3241), - [sym_number_literal] = ACTIONS(3243), - [anon_sym_L_SQUOTE] = ACTIONS(3243), - [anon_sym_u_SQUOTE] = ACTIONS(3243), - [anon_sym_U_SQUOTE] = ACTIONS(3243), - [anon_sym_u8_SQUOTE] = ACTIONS(3243), - [anon_sym_SQUOTE] = ACTIONS(3243), - [anon_sym_L_DQUOTE] = ACTIONS(3243), - [anon_sym_u_DQUOTE] = ACTIONS(3243), - [anon_sym_U_DQUOTE] = ACTIONS(3243), - [anon_sym_u8_DQUOTE] = ACTIONS(3243), - [anon_sym_DQUOTE] = ACTIONS(3243), - [sym_true] = ACTIONS(3241), - [sym_false] = ACTIONS(3241), - [anon_sym_NULL] = ACTIONS(3241), - [anon_sym_nullptr] = ACTIONS(3241), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3241), - [anon_sym_decltype] = ACTIONS(3241), - [anon_sym_virtual] = ACTIONS(3241), - [anon_sym_alignas] = ACTIONS(3241), - [anon_sym_explicit] = ACTIONS(3241), - [anon_sym_typename] = ACTIONS(3241), - [anon_sym_template] = ACTIONS(3241), - [anon_sym_operator] = ACTIONS(3241), - [anon_sym_try] = ACTIONS(3241), - [anon_sym_delete] = ACTIONS(3241), - [anon_sym_throw] = ACTIONS(3241), - [anon_sym_namespace] = ACTIONS(3241), - [anon_sym_using] = ACTIONS(3241), - [anon_sym_static_assert] = ACTIONS(3241), - [anon_sym_concept] = ACTIONS(3241), - [anon_sym_co_return] = ACTIONS(3241), - [anon_sym_co_yield] = ACTIONS(3241), - [anon_sym_R_DQUOTE] = ACTIONS(3243), - [anon_sym_LR_DQUOTE] = ACTIONS(3243), - [anon_sym_uR_DQUOTE] = ACTIONS(3243), - [anon_sym_UR_DQUOTE] = ACTIONS(3243), - [anon_sym_u8R_DQUOTE] = ACTIONS(3243), - [anon_sym_co_await] = ACTIONS(3241), - [anon_sym_new] = ACTIONS(3241), - [anon_sym_requires] = ACTIONS(3241), - [sym_this] = ACTIONS(3241), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3243), - [sym_semgrep_named_ellipsis] = ACTIONS(3243), - }, - [345] = { - [sym_identifier] = ACTIONS(3245), - [aux_sym_preproc_include_token1] = ACTIONS(3245), - [aux_sym_preproc_def_token1] = ACTIONS(3245), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3247), - [aux_sym_preproc_if_token1] = ACTIONS(3245), - [aux_sym_preproc_if_token2] = ACTIONS(3245), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3245), - [aux_sym_preproc_else_token1] = ACTIONS(3245), - [aux_sym_preproc_elif_token1] = ACTIONS(3245), + [aux_sym_preproc_elif_token1] = ACTIONS(3243), [aux_sym_preproc_elifdef_token1] = ACTIONS(3245), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3245), - [sym_preproc_directive] = ACTIONS(3245), - [anon_sym_LPAREN2] = ACTIONS(3247), - [anon_sym_BANG] = ACTIONS(3247), - [anon_sym_TILDE] = ACTIONS(3247), - [anon_sym_DASH] = ACTIONS(3245), - [anon_sym_PLUS] = ACTIONS(3245), - [anon_sym_STAR] = ACTIONS(3247), - [anon_sym_AMP_AMP] = ACTIONS(3247), - [anon_sym_AMP] = ACTIONS(3245), - [anon_sym_SEMI] = ACTIONS(3247), - [anon_sym___extension__] = ACTIONS(3245), - [anon_sym_typedef] = ACTIONS(3245), - [anon_sym_extern] = ACTIONS(3245), - [anon_sym___attribute__] = ACTIONS(3245), - [anon_sym_COLON_COLON] = ACTIONS(3247), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3247), - [anon_sym___declspec] = ACTIONS(3245), - [anon_sym___based] = ACTIONS(3245), - [anon_sym___cdecl] = ACTIONS(3245), - [anon_sym___clrcall] = ACTIONS(3245), - [anon_sym___stdcall] = ACTIONS(3245), - [anon_sym___fastcall] = ACTIONS(3245), - [anon_sym___thiscall] = ACTIONS(3245), - [anon_sym___vectorcall] = ACTIONS(3245), - [anon_sym_LBRACE] = ACTIONS(3247), - [anon_sym_signed] = ACTIONS(3245), - [anon_sym_unsigned] = ACTIONS(3245), - [anon_sym_long] = ACTIONS(3245), - [anon_sym_short] = ACTIONS(3245), - [anon_sym_LBRACK] = ACTIONS(3245), - [anon_sym_static] = ACTIONS(3245), - [anon_sym_register] = ACTIONS(3245), - [anon_sym_inline] = ACTIONS(3245), - [anon_sym___inline] = ACTIONS(3245), - [anon_sym___inline__] = ACTIONS(3245), - [anon_sym___forceinline] = ACTIONS(3245), - [anon_sym_thread_local] = ACTIONS(3245), - [anon_sym___thread] = ACTIONS(3245), - [anon_sym_const] = ACTIONS(3245), - [anon_sym_constexpr] = ACTIONS(3245), - [anon_sym_volatile] = ACTIONS(3245), - [anon_sym_restrict] = ACTIONS(3245), - [anon_sym___restrict__] = ACTIONS(3245), - [anon_sym__Atomic] = ACTIONS(3245), - [anon_sym__Noreturn] = ACTIONS(3245), - [anon_sym_noreturn] = ACTIONS(3245), - [anon_sym_mutable] = ACTIONS(3245), - [anon_sym_constinit] = ACTIONS(3245), - [anon_sym_consteval] = ACTIONS(3245), - [sym_primitive_type] = ACTIONS(3245), - [anon_sym_enum] = ACTIONS(3245), - [anon_sym_class] = ACTIONS(3245), - [anon_sym_struct] = ACTIONS(3245), - [anon_sym_union] = ACTIONS(3245), - [anon_sym_if] = ACTIONS(3245), - [anon_sym_else] = ACTIONS(3245), - [anon_sym_switch] = ACTIONS(3245), - [anon_sym_case] = ACTIONS(3245), - [anon_sym_default] = ACTIONS(3245), - [anon_sym_while] = ACTIONS(3245), - [anon_sym_do] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(3245), - [anon_sym_return] = ACTIONS(3245), - [anon_sym_break] = ACTIONS(3245), - [anon_sym_continue] = ACTIONS(3245), - [anon_sym_goto] = ACTIONS(3245), - [anon_sym___try] = ACTIONS(3245), - [anon_sym___leave] = ACTIONS(3245), - [anon_sym_not] = ACTIONS(3245), - [anon_sym_compl] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_PLUS_PLUS] = ACTIONS(3247), - [anon_sym_sizeof] = ACTIONS(3245), - [anon_sym___alignof__] = ACTIONS(3245), - [anon_sym___alignof] = ACTIONS(3245), - [anon_sym__alignof] = ACTIONS(3245), - [anon_sym_alignof] = ACTIONS(3245), - [anon_sym__Alignof] = ACTIONS(3245), - [anon_sym_offsetof] = ACTIONS(3245), - [anon_sym__Generic] = ACTIONS(3245), - [anon_sym_asm] = ACTIONS(3245), - [anon_sym___asm__] = ACTIONS(3245), - [sym_number_literal] = ACTIONS(3247), - [anon_sym_L_SQUOTE] = ACTIONS(3247), - [anon_sym_u_SQUOTE] = ACTIONS(3247), - [anon_sym_U_SQUOTE] = ACTIONS(3247), - [anon_sym_u8_SQUOTE] = ACTIONS(3247), - [anon_sym_SQUOTE] = ACTIONS(3247), - [anon_sym_L_DQUOTE] = ACTIONS(3247), - [anon_sym_u_DQUOTE] = ACTIONS(3247), - [anon_sym_U_DQUOTE] = ACTIONS(3247), - [anon_sym_u8_DQUOTE] = ACTIONS(3247), - [anon_sym_DQUOTE] = ACTIONS(3247), - [sym_true] = ACTIONS(3245), - [sym_false] = ACTIONS(3245), - [anon_sym_NULL] = ACTIONS(3245), - [anon_sym_nullptr] = ACTIONS(3245), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3245), - [anon_sym_decltype] = ACTIONS(3245), - [anon_sym_virtual] = ACTIONS(3245), - [anon_sym_alignas] = ACTIONS(3245), - [anon_sym_explicit] = ACTIONS(3245), - [anon_sym_typename] = ACTIONS(3245), - [anon_sym_template] = ACTIONS(3245), - [anon_sym_operator] = ACTIONS(3245), - [anon_sym_try] = ACTIONS(3245), - [anon_sym_delete] = ACTIONS(3245), - [anon_sym_throw] = ACTIONS(3245), - [anon_sym_namespace] = ACTIONS(3245), - [anon_sym_using] = ACTIONS(3245), - [anon_sym_static_assert] = ACTIONS(3245), - [anon_sym_concept] = ACTIONS(3245), - [anon_sym_co_return] = ACTIONS(3245), - [anon_sym_co_yield] = ACTIONS(3245), - [anon_sym_R_DQUOTE] = ACTIONS(3247), - [anon_sym_LR_DQUOTE] = ACTIONS(3247), - [anon_sym_uR_DQUOTE] = ACTIONS(3247), - [anon_sym_UR_DQUOTE] = ACTIONS(3247), - [anon_sym_u8R_DQUOTE] = ACTIONS(3247), - [anon_sym_co_await] = ACTIONS(3245), - [anon_sym_new] = ACTIONS(3245), - [anon_sym_requires] = ACTIONS(3245), - [sym_this] = ACTIONS(3245), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3247), - [sym_semgrep_named_ellipsis] = ACTIONS(3247), - }, - [346] = { - [sym_identifier] = ACTIONS(3249), - [aux_sym_preproc_include_token1] = ACTIONS(3249), - [aux_sym_preproc_def_token1] = ACTIONS(3249), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3251), - [aux_sym_preproc_if_token1] = ACTIONS(3249), - [aux_sym_preproc_if_token2] = ACTIONS(3249), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3249), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3249), - [aux_sym_preproc_else_token1] = ACTIONS(3249), - [aux_sym_preproc_elif_token1] = ACTIONS(3249), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3249), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3249), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3247), [sym_preproc_directive] = ACTIONS(3249), [anon_sym_LPAREN2] = ACTIONS(3251), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_TILDE] = ACTIONS(3251), - [anon_sym_DASH] = ACTIONS(3249), - [anon_sym_PLUS] = ACTIONS(3249), - [anon_sym_STAR] = ACTIONS(3251), - [anon_sym_AMP_AMP] = ACTIONS(3251), - [anon_sym_AMP] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym___extension__] = ACTIONS(3249), - [anon_sym_typedef] = ACTIONS(3249), - [anon_sym_extern] = ACTIONS(3249), - [anon_sym___attribute__] = ACTIONS(3249), - [anon_sym_COLON_COLON] = ACTIONS(3251), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3251), - [anon_sym___declspec] = ACTIONS(3249), - [anon_sym___based] = ACTIONS(3249), - [anon_sym___cdecl] = ACTIONS(3249), - [anon_sym___clrcall] = ACTIONS(3249), - [anon_sym___stdcall] = ACTIONS(3249), - [anon_sym___fastcall] = ACTIONS(3249), - [anon_sym___thiscall] = ACTIONS(3249), - [anon_sym___vectorcall] = ACTIONS(3249), - [anon_sym_LBRACE] = ACTIONS(3251), - [anon_sym_signed] = ACTIONS(3249), - [anon_sym_unsigned] = ACTIONS(3249), - [anon_sym_long] = ACTIONS(3249), - [anon_sym_short] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_static] = ACTIONS(3249), - [anon_sym_register] = ACTIONS(3249), - [anon_sym_inline] = ACTIONS(3249), - [anon_sym___inline] = ACTIONS(3249), - [anon_sym___inline__] = ACTIONS(3249), - [anon_sym___forceinline] = ACTIONS(3249), - [anon_sym_thread_local] = ACTIONS(3249), - [anon_sym___thread] = ACTIONS(3249), - [anon_sym_const] = ACTIONS(3249), - [anon_sym_constexpr] = ACTIONS(3249), - [anon_sym_volatile] = ACTIONS(3249), - [anon_sym_restrict] = ACTIONS(3249), - [anon_sym___restrict__] = ACTIONS(3249), - [anon_sym__Atomic] = ACTIONS(3249), - [anon_sym__Noreturn] = ACTIONS(3249), - [anon_sym_noreturn] = ACTIONS(3249), - [anon_sym_mutable] = ACTIONS(3249), - [anon_sym_constinit] = ACTIONS(3249), - [anon_sym_consteval] = ACTIONS(3249), - [sym_primitive_type] = ACTIONS(3249), - [anon_sym_enum] = ACTIONS(3249), - [anon_sym_class] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3249), - [anon_sym_if] = ACTIONS(3249), - [anon_sym_switch] = ACTIONS(3249), - [anon_sym_case] = ACTIONS(3249), - [anon_sym_default] = ACTIONS(3249), - [anon_sym_while] = ACTIONS(3249), - [anon_sym_do] = ACTIONS(3249), - [anon_sym_for] = ACTIONS(3249), - [anon_sym_return] = ACTIONS(3249), - [anon_sym_break] = ACTIONS(3249), - [anon_sym_continue] = ACTIONS(3249), - [anon_sym_goto] = ACTIONS(3249), - [anon_sym___try] = ACTIONS(3249), - [anon_sym___leave] = ACTIONS(3249), - [anon_sym_not] = ACTIONS(3249), - [anon_sym_compl] = ACTIONS(3249), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_sizeof] = ACTIONS(3249), - [anon_sym___alignof__] = ACTIONS(3249), - [anon_sym___alignof] = ACTIONS(3249), - [anon_sym__alignof] = ACTIONS(3249), - [anon_sym_alignof] = ACTIONS(3249), - [anon_sym__Alignof] = ACTIONS(3249), - [anon_sym_offsetof] = ACTIONS(3249), - [anon_sym__Generic] = ACTIONS(3249), - [anon_sym_asm] = ACTIONS(3249), - [anon_sym___asm__] = ACTIONS(3249), - [sym_number_literal] = ACTIONS(3251), - [anon_sym_L_SQUOTE] = ACTIONS(3251), - [anon_sym_u_SQUOTE] = ACTIONS(3251), - [anon_sym_U_SQUOTE] = ACTIONS(3251), - [anon_sym_u8_SQUOTE] = ACTIONS(3251), - [anon_sym_SQUOTE] = ACTIONS(3251), - [anon_sym_L_DQUOTE] = ACTIONS(3251), - [anon_sym_u_DQUOTE] = ACTIONS(3251), - [anon_sym_U_DQUOTE] = ACTIONS(3251), - [anon_sym_u8_DQUOTE] = ACTIONS(3251), - [anon_sym_DQUOTE] = ACTIONS(3251), - [sym_true] = ACTIONS(3249), - [sym_false] = ACTIONS(3249), - [anon_sym_NULL] = ACTIONS(3249), - [anon_sym_nullptr] = ACTIONS(3249), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3249), - [anon_sym_decltype] = ACTIONS(3249), - [anon_sym_virtual] = ACTIONS(3249), - [anon_sym_alignas] = ACTIONS(3249), - [anon_sym_explicit] = ACTIONS(3249), - [anon_sym_typename] = ACTIONS(3249), - [anon_sym_template] = ACTIONS(3249), - [anon_sym_operator] = ACTIONS(3249), - [anon_sym_try] = ACTIONS(3249), - [anon_sym_delete] = ACTIONS(3249), - [anon_sym_throw] = ACTIONS(3249), - [anon_sym_namespace] = ACTIONS(3249), - [anon_sym_using] = ACTIONS(3249), - [anon_sym_static_assert] = ACTIONS(3249), - [anon_sym_concept] = ACTIONS(3249), - [anon_sym_co_return] = ACTIONS(3249), - [anon_sym_co_yield] = ACTIONS(3249), - [anon_sym_R_DQUOTE] = ACTIONS(3251), - [anon_sym_LR_DQUOTE] = ACTIONS(3251), - [anon_sym_uR_DQUOTE] = ACTIONS(3251), - [anon_sym_UR_DQUOTE] = ACTIONS(3251), - [anon_sym_u8R_DQUOTE] = ACTIONS(3251), - [anon_sym_co_await] = ACTIONS(3249), - [anon_sym_new] = ACTIONS(3249), - [anon_sym_requires] = ACTIONS(3249), - [sym_this] = ACTIONS(3249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3251), - [sym_semgrep_named_ellipsis] = ACTIONS(3251), - }, - [347] = { - [sym_identifier] = ACTIONS(3253), - [aux_sym_preproc_include_token1] = ACTIONS(3253), - [aux_sym_preproc_def_token1] = ACTIONS(3253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3255), - [aux_sym_preproc_if_token1] = ACTIONS(3253), - [aux_sym_preproc_if_token2] = ACTIONS(3253), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3253), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3253), - [aux_sym_preproc_else_token1] = ACTIONS(3253), - [aux_sym_preproc_elif_token1] = ACTIONS(3253), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3253), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3253), - [sym_preproc_directive] = ACTIONS(3253), - [anon_sym_LPAREN2] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3253), - [anon_sym_PLUS] = ACTIONS(3253), + [anon_sym_TILDE] = ACTIONS(3253), [anon_sym_STAR] = ACTIONS(3255), - [anon_sym_AMP_AMP] = ACTIONS(3255), - [anon_sym_AMP] = ACTIONS(3253), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym___extension__] = ACTIONS(3253), - [anon_sym_typedef] = ACTIONS(3253), - [anon_sym_extern] = ACTIONS(3253), - [anon_sym___attribute__] = ACTIONS(3253), - [anon_sym_COLON_COLON] = ACTIONS(3255), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3255), - [anon_sym___declspec] = ACTIONS(3253), - [anon_sym___based] = ACTIONS(3253), - [anon_sym___cdecl] = ACTIONS(3253), - [anon_sym___clrcall] = ACTIONS(3253), - [anon_sym___stdcall] = ACTIONS(3253), - [anon_sym___fastcall] = ACTIONS(3253), - [anon_sym___thiscall] = ACTIONS(3253), - [anon_sym___vectorcall] = ACTIONS(3253), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_signed] = ACTIONS(3253), - [anon_sym_unsigned] = ACTIONS(3253), - [anon_sym_long] = ACTIONS(3253), - [anon_sym_short] = ACTIONS(3253), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_static] = ACTIONS(3253), - [anon_sym_register] = ACTIONS(3253), - [anon_sym_inline] = ACTIONS(3253), - [anon_sym___inline] = ACTIONS(3253), - [anon_sym___inline__] = ACTIONS(3253), - [anon_sym___forceinline] = ACTIONS(3253), - [anon_sym_thread_local] = ACTIONS(3253), - [anon_sym___thread] = ACTIONS(3253), - [anon_sym_const] = ACTIONS(3253), - [anon_sym_constexpr] = ACTIONS(3253), - [anon_sym_volatile] = ACTIONS(3253), - [anon_sym_restrict] = ACTIONS(3253), - [anon_sym___restrict__] = ACTIONS(3253), - [anon_sym__Atomic] = ACTIONS(3253), - [anon_sym__Noreturn] = ACTIONS(3253), - [anon_sym_noreturn] = ACTIONS(3253), - [anon_sym_mutable] = ACTIONS(3253), - [anon_sym_constinit] = ACTIONS(3253), - [anon_sym_consteval] = ACTIONS(3253), - [sym_primitive_type] = ACTIONS(3253), - [anon_sym_enum] = ACTIONS(3253), - [anon_sym_class] = ACTIONS(3253), - [anon_sym_struct] = ACTIONS(3253), - [anon_sym_union] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(3253), - [anon_sym_switch] = ACTIONS(3253), - [anon_sym_case] = ACTIONS(3253), - [anon_sym_default] = ACTIONS(3253), - [anon_sym_while] = ACTIONS(3253), - [anon_sym_do] = ACTIONS(3253), - [anon_sym_for] = ACTIONS(3253), - [anon_sym_return] = ACTIONS(3253), - [anon_sym_break] = ACTIONS(3253), - [anon_sym_continue] = ACTIONS(3253), - [anon_sym_goto] = ACTIONS(3253), - [anon_sym___try] = ACTIONS(3253), - [anon_sym___leave] = ACTIONS(3253), - [anon_sym_not] = ACTIONS(3253), - [anon_sym_compl] = ACTIONS(3253), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_sizeof] = ACTIONS(3253), - [anon_sym___alignof__] = ACTIONS(3253), - [anon_sym___alignof] = ACTIONS(3253), - [anon_sym__alignof] = ACTIONS(3253), - [anon_sym_alignof] = ACTIONS(3253), - [anon_sym__Alignof] = ACTIONS(3253), - [anon_sym_offsetof] = ACTIONS(3253), - [anon_sym__Generic] = ACTIONS(3253), - [anon_sym_asm] = ACTIONS(3253), - [anon_sym___asm__] = ACTIONS(3253), - [sym_number_literal] = ACTIONS(3255), - [anon_sym_L_SQUOTE] = ACTIONS(3255), - [anon_sym_u_SQUOTE] = ACTIONS(3255), - [anon_sym_U_SQUOTE] = ACTIONS(3255), - [anon_sym_u8_SQUOTE] = ACTIONS(3255), - [anon_sym_SQUOTE] = ACTIONS(3255), - [anon_sym_L_DQUOTE] = ACTIONS(3255), - [anon_sym_u_DQUOTE] = ACTIONS(3255), - [anon_sym_U_DQUOTE] = ACTIONS(3255), - [anon_sym_u8_DQUOTE] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(3255), - [sym_true] = ACTIONS(3253), - [sym_false] = ACTIONS(3253), - [anon_sym_NULL] = ACTIONS(3253), - [anon_sym_nullptr] = ACTIONS(3253), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3253), - [anon_sym_decltype] = ACTIONS(3253), - [anon_sym_virtual] = ACTIONS(3253), - [anon_sym_alignas] = ACTIONS(3253), - [anon_sym_explicit] = ACTIONS(3253), - [anon_sym_typename] = ACTIONS(3253), - [anon_sym_template] = ACTIONS(3253), - [anon_sym_operator] = ACTIONS(3253), - [anon_sym_try] = ACTIONS(3253), - [anon_sym_delete] = ACTIONS(3253), - [anon_sym_throw] = ACTIONS(3253), - [anon_sym_namespace] = ACTIONS(3253), - [anon_sym_using] = ACTIONS(3253), - [anon_sym_static_assert] = ACTIONS(3253), - [anon_sym_concept] = ACTIONS(3253), - [anon_sym_co_return] = ACTIONS(3253), - [anon_sym_co_yield] = ACTIONS(3253), - [anon_sym_R_DQUOTE] = ACTIONS(3255), - [anon_sym_LR_DQUOTE] = ACTIONS(3255), - [anon_sym_uR_DQUOTE] = ACTIONS(3255), - [anon_sym_UR_DQUOTE] = ACTIONS(3255), - [anon_sym_u8R_DQUOTE] = ACTIONS(3255), - [anon_sym_co_await] = ACTIONS(3253), - [anon_sym_new] = ACTIONS(3253), - [anon_sym_requires] = ACTIONS(3253), - [sym_this] = ACTIONS(3253), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3255), - [sym_semgrep_named_ellipsis] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(3259), + [anon_sym_typedef] = ACTIONS(3261), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(3279), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(3281), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3285), + [anon_sym_static_assert] = ACTIONS(3287), + [sym_semgrep_metavar] = ACTIONS(3289), }, [348] = { - [sym_identifier] = ACTIONS(3257), - [aux_sym_preproc_include_token1] = ACTIONS(3257), - [aux_sym_preproc_def_token1] = ACTIONS(3257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3259), - [aux_sym_preproc_if_token1] = ACTIONS(3257), - [aux_sym_preproc_if_token2] = ACTIONS(3257), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3257), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3257), - [aux_sym_preproc_else_token1] = ACTIONS(3257), - [aux_sym_preproc_elif_token1] = ACTIONS(3257), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3257), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3257), - [sym_preproc_directive] = ACTIONS(3257), - [anon_sym_LPAREN2] = ACTIONS(3259), - [anon_sym_BANG] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3257), - [anon_sym_PLUS] = ACTIONS(3257), - [anon_sym_STAR] = ACTIONS(3259), - [anon_sym_AMP_AMP] = ACTIONS(3259), - [anon_sym_AMP] = ACTIONS(3257), - [anon_sym_SEMI] = ACTIONS(3259), - [anon_sym___extension__] = ACTIONS(3257), - [anon_sym_typedef] = ACTIONS(3257), - [anon_sym_extern] = ACTIONS(3257), - [anon_sym___attribute__] = ACTIONS(3257), - [anon_sym_COLON_COLON] = ACTIONS(3259), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3259), - [anon_sym___declspec] = ACTIONS(3257), - [anon_sym___based] = ACTIONS(3257), - [anon_sym___cdecl] = ACTIONS(3257), - [anon_sym___clrcall] = ACTIONS(3257), - [anon_sym___stdcall] = ACTIONS(3257), - [anon_sym___fastcall] = ACTIONS(3257), - [anon_sym___thiscall] = ACTIONS(3257), - [anon_sym___vectorcall] = ACTIONS(3257), - [anon_sym_LBRACE] = ACTIONS(3259), - [anon_sym_signed] = ACTIONS(3257), - [anon_sym_unsigned] = ACTIONS(3257), - [anon_sym_long] = ACTIONS(3257), - [anon_sym_short] = ACTIONS(3257), - [anon_sym_LBRACK] = ACTIONS(3257), - [anon_sym_static] = ACTIONS(3257), - [anon_sym_register] = ACTIONS(3257), - [anon_sym_inline] = ACTIONS(3257), - [anon_sym___inline] = ACTIONS(3257), - [anon_sym___inline__] = ACTIONS(3257), - [anon_sym___forceinline] = ACTIONS(3257), - [anon_sym_thread_local] = ACTIONS(3257), - [anon_sym___thread] = ACTIONS(3257), - [anon_sym_const] = ACTIONS(3257), - [anon_sym_constexpr] = ACTIONS(3257), - [anon_sym_volatile] = ACTIONS(3257), - [anon_sym_restrict] = ACTIONS(3257), - [anon_sym___restrict__] = ACTIONS(3257), - [anon_sym__Atomic] = ACTIONS(3257), - [anon_sym__Noreturn] = ACTIONS(3257), - [anon_sym_noreturn] = ACTIONS(3257), - [anon_sym_mutable] = ACTIONS(3257), - [anon_sym_constinit] = ACTIONS(3257), - [anon_sym_consteval] = ACTIONS(3257), - [sym_primitive_type] = ACTIONS(3257), - [anon_sym_enum] = ACTIONS(3257), - [anon_sym_class] = ACTIONS(3257), - [anon_sym_struct] = ACTIONS(3257), - [anon_sym_union] = ACTIONS(3257), - [anon_sym_if] = ACTIONS(3257), - [anon_sym_switch] = ACTIONS(3257), - [anon_sym_case] = ACTIONS(3257), - [anon_sym_default] = ACTIONS(3257), - [anon_sym_while] = ACTIONS(3257), - [anon_sym_do] = ACTIONS(3257), - [anon_sym_for] = ACTIONS(3257), - [anon_sym_return] = ACTIONS(3257), - [anon_sym_break] = ACTIONS(3257), - [anon_sym_continue] = ACTIONS(3257), - [anon_sym_goto] = ACTIONS(3257), - [anon_sym___try] = ACTIONS(3257), - [anon_sym___leave] = ACTIONS(3257), - [anon_sym_not] = ACTIONS(3257), - [anon_sym_compl] = ACTIONS(3257), - [anon_sym_DASH_DASH] = ACTIONS(3259), - [anon_sym_PLUS_PLUS] = ACTIONS(3259), - [anon_sym_sizeof] = ACTIONS(3257), - [anon_sym___alignof__] = ACTIONS(3257), - [anon_sym___alignof] = ACTIONS(3257), - [anon_sym__alignof] = ACTIONS(3257), - [anon_sym_alignof] = ACTIONS(3257), - [anon_sym__Alignof] = ACTIONS(3257), - [anon_sym_offsetof] = ACTIONS(3257), - [anon_sym__Generic] = ACTIONS(3257), - [anon_sym_asm] = ACTIONS(3257), - [anon_sym___asm__] = ACTIONS(3257), - [sym_number_literal] = ACTIONS(3259), - [anon_sym_L_SQUOTE] = ACTIONS(3259), - [anon_sym_u_SQUOTE] = ACTIONS(3259), - [anon_sym_U_SQUOTE] = ACTIONS(3259), - [anon_sym_u8_SQUOTE] = ACTIONS(3259), - [anon_sym_SQUOTE] = ACTIONS(3259), - [anon_sym_L_DQUOTE] = ACTIONS(3259), - [anon_sym_u_DQUOTE] = ACTIONS(3259), - [anon_sym_U_DQUOTE] = ACTIONS(3259), - [anon_sym_u8_DQUOTE] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(3259), - [sym_true] = ACTIONS(3257), - [sym_false] = ACTIONS(3257), - [anon_sym_NULL] = ACTIONS(3257), - [anon_sym_nullptr] = ACTIONS(3257), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3257), - [anon_sym_decltype] = ACTIONS(3257), - [anon_sym_virtual] = ACTIONS(3257), - [anon_sym_alignas] = ACTIONS(3257), - [anon_sym_explicit] = ACTIONS(3257), - [anon_sym_typename] = ACTIONS(3257), - [anon_sym_template] = ACTIONS(3257), - [anon_sym_operator] = ACTIONS(3257), - [anon_sym_try] = ACTIONS(3257), - [anon_sym_delete] = ACTIONS(3257), - [anon_sym_throw] = ACTIONS(3257), - [anon_sym_namespace] = ACTIONS(3257), - [anon_sym_using] = ACTIONS(3257), - [anon_sym_static_assert] = ACTIONS(3257), - [anon_sym_concept] = ACTIONS(3257), - [anon_sym_co_return] = ACTIONS(3257), - [anon_sym_co_yield] = ACTIONS(3257), - [anon_sym_R_DQUOTE] = ACTIONS(3259), - [anon_sym_LR_DQUOTE] = ACTIONS(3259), - [anon_sym_uR_DQUOTE] = ACTIONS(3259), - [anon_sym_UR_DQUOTE] = ACTIONS(3259), - [anon_sym_u8R_DQUOTE] = ACTIONS(3259), - [anon_sym_co_await] = ACTIONS(3257), - [anon_sym_new] = ACTIONS(3257), - [anon_sym_requires] = ACTIONS(3257), - [sym_this] = ACTIONS(3257), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3259), - [sym_semgrep_named_ellipsis] = ACTIONS(3259), + [sym_catch_clause] = STATE(348), + [aux_sym_constructor_try_statement_repeat1] = STATE(348), + [sym_identifier] = ACTIONS(3027), + [aux_sym_preproc_include_token1] = ACTIONS(3027), + [aux_sym_preproc_def_token1] = ACTIONS(3027), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3029), + [aux_sym_preproc_if_token1] = ACTIONS(3027), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3027), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3027), + [sym_preproc_directive] = ACTIONS(3027), + [anon_sym_LPAREN2] = ACTIONS(3029), + [anon_sym_BANG] = ACTIONS(3029), + [anon_sym_TILDE] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3027), + [anon_sym_STAR] = ACTIONS(3029), + [anon_sym_AMP_AMP] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3027), + [anon_sym_SEMI] = ACTIONS(3029), + [anon_sym___extension__] = ACTIONS(3027), + [anon_sym_typedef] = ACTIONS(3027), + [anon_sym_extern] = ACTIONS(3027), + [anon_sym___attribute__] = ACTIONS(3027), + [anon_sym_COLON_COLON] = ACTIONS(3029), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3029), + [anon_sym___declspec] = ACTIONS(3027), + [anon_sym___based] = ACTIONS(3027), + [anon_sym___cdecl] = ACTIONS(3027), + [anon_sym___clrcall] = ACTIONS(3027), + [anon_sym___stdcall] = ACTIONS(3027), + [anon_sym___fastcall] = ACTIONS(3027), + [anon_sym___thiscall] = ACTIONS(3027), + [anon_sym___vectorcall] = ACTIONS(3027), + [anon_sym_LBRACE] = ACTIONS(3029), + [anon_sym_RBRACE] = ACTIONS(3029), + [anon_sym_signed] = ACTIONS(3027), + [anon_sym_unsigned] = ACTIONS(3027), + [anon_sym_long] = ACTIONS(3027), + [anon_sym_short] = ACTIONS(3027), + [anon_sym_LBRACK] = ACTIONS(3027), + [anon_sym_static] = ACTIONS(3027), + [anon_sym_register] = ACTIONS(3027), + [anon_sym_inline] = ACTIONS(3027), + [anon_sym___inline] = ACTIONS(3027), + [anon_sym___inline__] = ACTIONS(3027), + [anon_sym___forceinline] = ACTIONS(3027), + [anon_sym_thread_local] = ACTIONS(3027), + [anon_sym___thread] = ACTIONS(3027), + [anon_sym_const] = ACTIONS(3027), + [anon_sym_constexpr] = ACTIONS(3027), + [anon_sym_volatile] = ACTIONS(3027), + [anon_sym_restrict] = ACTIONS(3027), + [anon_sym___restrict__] = ACTIONS(3027), + [anon_sym__Atomic] = ACTIONS(3027), + [anon_sym__Noreturn] = ACTIONS(3027), + [anon_sym_noreturn] = ACTIONS(3027), + [anon_sym_mutable] = ACTIONS(3027), + [anon_sym_constinit] = ACTIONS(3027), + [anon_sym_consteval] = ACTIONS(3027), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3027), + [anon_sym_class] = ACTIONS(3027), + [anon_sym_struct] = ACTIONS(3027), + [anon_sym_union] = ACTIONS(3027), + [anon_sym_if] = ACTIONS(3027), + [anon_sym_else] = ACTIONS(3027), + [anon_sym_switch] = ACTIONS(3027), + [anon_sym_case] = ACTIONS(3027), + [anon_sym_default] = ACTIONS(3027), + [anon_sym_while] = ACTIONS(3027), + [anon_sym_do] = ACTIONS(3027), + [anon_sym_for] = ACTIONS(3027), + [anon_sym_return] = ACTIONS(3027), + [anon_sym_break] = ACTIONS(3027), + [anon_sym_continue] = ACTIONS(3027), + [anon_sym_goto] = ACTIONS(3027), + [anon_sym___try] = ACTIONS(3027), + [anon_sym___leave] = ACTIONS(3027), + [anon_sym_not] = ACTIONS(3027), + [anon_sym_compl] = ACTIONS(3027), + [anon_sym_DASH_DASH] = ACTIONS(3029), + [anon_sym_PLUS_PLUS] = ACTIONS(3029), + [anon_sym_sizeof] = ACTIONS(3027), + [anon_sym___alignof__] = ACTIONS(3027), + [anon_sym___alignof] = ACTIONS(3027), + [anon_sym__alignof] = ACTIONS(3027), + [anon_sym_alignof] = ACTIONS(3027), + [anon_sym__Alignof] = ACTIONS(3027), + [anon_sym_offsetof] = ACTIONS(3027), + [anon_sym__Generic] = ACTIONS(3027), + [anon_sym_asm] = ACTIONS(3027), + [anon_sym___asm__] = ACTIONS(3027), + [sym_number_literal] = ACTIONS(3029), + [anon_sym_L_SQUOTE] = ACTIONS(3029), + [anon_sym_u_SQUOTE] = ACTIONS(3029), + [anon_sym_U_SQUOTE] = ACTIONS(3029), + [anon_sym_u8_SQUOTE] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3029), + [anon_sym_L_DQUOTE] = ACTIONS(3029), + [anon_sym_u_DQUOTE] = ACTIONS(3029), + [anon_sym_U_DQUOTE] = ACTIONS(3029), + [anon_sym_u8_DQUOTE] = ACTIONS(3029), + [anon_sym_DQUOTE] = ACTIONS(3029), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [anon_sym_NULL] = ACTIONS(3027), + [anon_sym_nullptr] = ACTIONS(3027), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3027), + [anon_sym_decltype] = ACTIONS(3027), + [anon_sym_virtual] = ACTIONS(3027), + [anon_sym_alignas] = ACTIONS(3027), + [anon_sym_explicit] = ACTIONS(3027), + [anon_sym_typename] = ACTIONS(3027), + [anon_sym_template] = ACTIONS(3027), + [anon_sym_operator] = ACTIONS(3027), + [anon_sym_try] = ACTIONS(3027), + [anon_sym_delete] = ACTIONS(3027), + [anon_sym_throw] = ACTIONS(3027), + [anon_sym_namespace] = ACTIONS(3027), + [anon_sym_using] = ACTIONS(3027), + [anon_sym_static_assert] = ACTIONS(3027), + [anon_sym_concept] = ACTIONS(3027), + [anon_sym_co_return] = ACTIONS(3027), + [anon_sym_co_yield] = ACTIONS(3027), + [anon_sym_catch] = ACTIONS(3291), + [anon_sym_R_DQUOTE] = ACTIONS(3029), + [anon_sym_LR_DQUOTE] = ACTIONS(3029), + [anon_sym_uR_DQUOTE] = ACTIONS(3029), + [anon_sym_UR_DQUOTE] = ACTIONS(3029), + [anon_sym_u8R_DQUOTE] = ACTIONS(3029), + [anon_sym_co_await] = ACTIONS(3027), + [anon_sym_new] = ACTIONS(3027), + [anon_sym_requires] = ACTIONS(3027), + [sym_this] = ACTIONS(3027), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3029), + [sym_semgrep_named_ellipsis] = ACTIONS(3029), }, [349] = { - [sym_identifier] = ACTIONS(3261), - [aux_sym_preproc_include_token1] = ACTIONS(3261), - [aux_sym_preproc_def_token1] = ACTIONS(3261), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3263), - [aux_sym_preproc_if_token1] = ACTIONS(3261), - [aux_sym_preproc_if_token2] = ACTIONS(3261), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3261), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3261), - [aux_sym_preproc_else_token1] = ACTIONS(3261), - [aux_sym_preproc_elif_token1] = ACTIONS(3261), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3261), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3261), - [sym_preproc_directive] = ACTIONS(3261), - [anon_sym_LPAREN2] = ACTIONS(3263), - [anon_sym_BANG] = ACTIONS(3263), - [anon_sym_TILDE] = ACTIONS(3263), - [anon_sym_DASH] = ACTIONS(3261), - [anon_sym_PLUS] = ACTIONS(3261), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP_AMP] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3261), - [anon_sym_SEMI] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(3261), - [anon_sym_typedef] = ACTIONS(3261), - [anon_sym_extern] = ACTIONS(3261), - [anon_sym___attribute__] = ACTIONS(3261), - [anon_sym_COLON_COLON] = ACTIONS(3263), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3263), - [anon_sym___declspec] = ACTIONS(3261), - [anon_sym___based] = ACTIONS(3261), - [anon_sym___cdecl] = ACTIONS(3261), - [anon_sym___clrcall] = ACTIONS(3261), - [anon_sym___stdcall] = ACTIONS(3261), - [anon_sym___fastcall] = ACTIONS(3261), - [anon_sym___thiscall] = ACTIONS(3261), - [anon_sym___vectorcall] = ACTIONS(3261), - [anon_sym_LBRACE] = ACTIONS(3263), - [anon_sym_signed] = ACTIONS(3261), - [anon_sym_unsigned] = ACTIONS(3261), - [anon_sym_long] = ACTIONS(3261), - [anon_sym_short] = ACTIONS(3261), - [anon_sym_LBRACK] = ACTIONS(3261), - [anon_sym_static] = ACTIONS(3261), - [anon_sym_register] = ACTIONS(3261), - [anon_sym_inline] = ACTIONS(3261), - [anon_sym___inline] = ACTIONS(3261), - [anon_sym___inline__] = ACTIONS(3261), - [anon_sym___forceinline] = ACTIONS(3261), - [anon_sym_thread_local] = ACTIONS(3261), - [anon_sym___thread] = ACTIONS(3261), - [anon_sym_const] = ACTIONS(3261), - [anon_sym_constexpr] = ACTIONS(3261), - [anon_sym_volatile] = ACTIONS(3261), - [anon_sym_restrict] = ACTIONS(3261), - [anon_sym___restrict__] = ACTIONS(3261), - [anon_sym__Atomic] = ACTIONS(3261), - [anon_sym__Noreturn] = ACTIONS(3261), - [anon_sym_noreturn] = ACTIONS(3261), - [anon_sym_mutable] = ACTIONS(3261), - [anon_sym_constinit] = ACTIONS(3261), - [anon_sym_consteval] = ACTIONS(3261), - [sym_primitive_type] = ACTIONS(3261), - [anon_sym_enum] = ACTIONS(3261), - [anon_sym_class] = ACTIONS(3261), - [anon_sym_struct] = ACTIONS(3261), - [anon_sym_union] = ACTIONS(3261), - [anon_sym_if] = ACTIONS(3261), - [anon_sym_switch] = ACTIONS(3261), - [anon_sym_case] = ACTIONS(3261), - [anon_sym_default] = ACTIONS(3261), - [anon_sym_while] = ACTIONS(3261), - [anon_sym_do] = ACTIONS(3261), - [anon_sym_for] = ACTIONS(3261), - [anon_sym_return] = ACTIONS(3261), - [anon_sym_break] = ACTIONS(3261), - [anon_sym_continue] = ACTIONS(3261), - [anon_sym_goto] = ACTIONS(3261), - [anon_sym___try] = ACTIONS(3261), - [anon_sym___leave] = ACTIONS(3261), - [anon_sym_not] = ACTIONS(3261), - [anon_sym_compl] = ACTIONS(3261), - [anon_sym_DASH_DASH] = ACTIONS(3263), - [anon_sym_PLUS_PLUS] = ACTIONS(3263), - [anon_sym_sizeof] = ACTIONS(3261), - [anon_sym___alignof__] = ACTIONS(3261), - [anon_sym___alignof] = ACTIONS(3261), - [anon_sym__alignof] = ACTIONS(3261), - [anon_sym_alignof] = ACTIONS(3261), - [anon_sym__Alignof] = ACTIONS(3261), - [anon_sym_offsetof] = ACTIONS(3261), - [anon_sym__Generic] = ACTIONS(3261), - [anon_sym_asm] = ACTIONS(3261), - [anon_sym___asm__] = ACTIONS(3261), - [sym_number_literal] = ACTIONS(3263), - [anon_sym_L_SQUOTE] = ACTIONS(3263), - [anon_sym_u_SQUOTE] = ACTIONS(3263), - [anon_sym_U_SQUOTE] = ACTIONS(3263), - [anon_sym_u8_SQUOTE] = ACTIONS(3263), - [anon_sym_SQUOTE] = ACTIONS(3263), - [anon_sym_L_DQUOTE] = ACTIONS(3263), - [anon_sym_u_DQUOTE] = ACTIONS(3263), - [anon_sym_U_DQUOTE] = ACTIONS(3263), - [anon_sym_u8_DQUOTE] = ACTIONS(3263), - [anon_sym_DQUOTE] = ACTIONS(3263), - [sym_true] = ACTIONS(3261), - [sym_false] = ACTIONS(3261), - [anon_sym_NULL] = ACTIONS(3261), - [anon_sym_nullptr] = ACTIONS(3261), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3261), - [anon_sym_decltype] = ACTIONS(3261), - [anon_sym_virtual] = ACTIONS(3261), - [anon_sym_alignas] = ACTIONS(3261), - [anon_sym_explicit] = ACTIONS(3261), - [anon_sym_typename] = ACTIONS(3261), - [anon_sym_template] = ACTIONS(3261), - [anon_sym_operator] = ACTIONS(3261), - [anon_sym_try] = ACTIONS(3261), - [anon_sym_delete] = ACTIONS(3261), - [anon_sym_throw] = ACTIONS(3261), - [anon_sym_namespace] = ACTIONS(3261), - [anon_sym_using] = ACTIONS(3261), - [anon_sym_static_assert] = ACTIONS(3261), - [anon_sym_concept] = ACTIONS(3261), - [anon_sym_co_return] = ACTIONS(3261), - [anon_sym_co_yield] = ACTIONS(3261), - [anon_sym_R_DQUOTE] = ACTIONS(3263), - [anon_sym_LR_DQUOTE] = ACTIONS(3263), - [anon_sym_uR_DQUOTE] = ACTIONS(3263), - [anon_sym_UR_DQUOTE] = ACTIONS(3263), - [anon_sym_u8R_DQUOTE] = ACTIONS(3263), - [anon_sym_co_await] = ACTIONS(3261), - [anon_sym_new] = ACTIONS(3261), - [anon_sym_requires] = ACTIONS(3261), - [sym_this] = ACTIONS(3261), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3263), - [sym_semgrep_named_ellipsis] = ACTIONS(3263), + [sym_identifier] = ACTIONS(3294), + [aux_sym_preproc_include_token1] = ACTIONS(3294), + [aux_sym_preproc_def_token1] = ACTIONS(3294), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3296), + [aux_sym_preproc_if_token1] = ACTIONS(3294), + [aux_sym_preproc_if_token2] = ACTIONS(3294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3294), + [aux_sym_preproc_else_token1] = ACTIONS(3294), + [aux_sym_preproc_elif_token1] = ACTIONS(3294), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3294), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3294), + [sym_preproc_directive] = ACTIONS(3294), + [anon_sym_LPAREN2] = ACTIONS(3296), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3294), + [anon_sym_PLUS] = ACTIONS(3294), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_AMP] = ACTIONS(3294), + [anon_sym_SEMI] = ACTIONS(3296), + [anon_sym___extension__] = ACTIONS(3294), + [anon_sym_typedef] = ACTIONS(3294), + [anon_sym_extern] = ACTIONS(3294), + [anon_sym___attribute__] = ACTIONS(3294), + [anon_sym_COLON_COLON] = ACTIONS(3296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3296), + [anon_sym___declspec] = ACTIONS(3294), + [anon_sym___based] = ACTIONS(3294), + [anon_sym___cdecl] = ACTIONS(3294), + [anon_sym___clrcall] = ACTIONS(3294), + [anon_sym___stdcall] = ACTIONS(3294), + [anon_sym___fastcall] = ACTIONS(3294), + [anon_sym___thiscall] = ACTIONS(3294), + [anon_sym___vectorcall] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_signed] = ACTIONS(3294), + [anon_sym_unsigned] = ACTIONS(3294), + [anon_sym_long] = ACTIONS(3294), + [anon_sym_short] = ACTIONS(3294), + [anon_sym_LBRACK] = ACTIONS(3294), + [anon_sym_static] = ACTIONS(3294), + [anon_sym_register] = ACTIONS(3294), + [anon_sym_inline] = ACTIONS(3294), + [anon_sym___inline] = ACTIONS(3294), + [anon_sym___inline__] = ACTIONS(3294), + [anon_sym___forceinline] = ACTIONS(3294), + [anon_sym_thread_local] = ACTIONS(3294), + [anon_sym___thread] = ACTIONS(3294), + [anon_sym_const] = ACTIONS(3294), + [anon_sym_constexpr] = ACTIONS(3294), + [anon_sym_volatile] = ACTIONS(3294), + [anon_sym_restrict] = ACTIONS(3294), + [anon_sym___restrict__] = ACTIONS(3294), + [anon_sym__Atomic] = ACTIONS(3294), + [anon_sym__Noreturn] = ACTIONS(3294), + [anon_sym_noreturn] = ACTIONS(3294), + [anon_sym_mutable] = ACTIONS(3294), + [anon_sym_constinit] = ACTIONS(3294), + [anon_sym_consteval] = ACTIONS(3294), + [sym_primitive_type] = ACTIONS(3294), + [anon_sym_enum] = ACTIONS(3294), + [anon_sym_class] = ACTIONS(3294), + [anon_sym_struct] = ACTIONS(3294), + [anon_sym_union] = ACTIONS(3294), + [anon_sym_if] = ACTIONS(3294), + [anon_sym_switch] = ACTIONS(3294), + [anon_sym_case] = ACTIONS(3294), + [anon_sym_default] = ACTIONS(3294), + [anon_sym_while] = ACTIONS(3294), + [anon_sym_do] = ACTIONS(3294), + [anon_sym_for] = ACTIONS(3294), + [anon_sym_return] = ACTIONS(3294), + [anon_sym_break] = ACTIONS(3294), + [anon_sym_continue] = ACTIONS(3294), + [anon_sym_goto] = ACTIONS(3294), + [anon_sym___try] = ACTIONS(3294), + [anon_sym___leave] = ACTIONS(3294), + [anon_sym_not] = ACTIONS(3294), + [anon_sym_compl] = ACTIONS(3294), + [anon_sym_DASH_DASH] = ACTIONS(3296), + [anon_sym_PLUS_PLUS] = ACTIONS(3296), + [anon_sym_sizeof] = ACTIONS(3294), + [anon_sym___alignof__] = ACTIONS(3294), + [anon_sym___alignof] = ACTIONS(3294), + [anon_sym__alignof] = ACTIONS(3294), + [anon_sym_alignof] = ACTIONS(3294), + [anon_sym__Alignof] = ACTIONS(3294), + [anon_sym_offsetof] = ACTIONS(3294), + [anon_sym__Generic] = ACTIONS(3294), + [anon_sym_asm] = ACTIONS(3294), + [anon_sym___asm__] = ACTIONS(3294), + [sym_number_literal] = ACTIONS(3296), + [anon_sym_L_SQUOTE] = ACTIONS(3296), + [anon_sym_u_SQUOTE] = ACTIONS(3296), + [anon_sym_U_SQUOTE] = ACTIONS(3296), + [anon_sym_u8_SQUOTE] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3296), + [anon_sym_L_DQUOTE] = ACTIONS(3296), + [anon_sym_u_DQUOTE] = ACTIONS(3296), + [anon_sym_U_DQUOTE] = ACTIONS(3296), + [anon_sym_u8_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [sym_true] = ACTIONS(3294), + [sym_false] = ACTIONS(3294), + [anon_sym_NULL] = ACTIONS(3294), + [anon_sym_nullptr] = ACTIONS(3294), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3294), + [anon_sym_decltype] = ACTIONS(3294), + [anon_sym_virtual] = ACTIONS(3294), + [anon_sym_alignas] = ACTIONS(3294), + [anon_sym_explicit] = ACTIONS(3294), + [anon_sym_typename] = ACTIONS(3294), + [anon_sym_template] = ACTIONS(3294), + [anon_sym_operator] = ACTIONS(3294), + [anon_sym_try] = ACTIONS(3294), + [anon_sym_delete] = ACTIONS(3294), + [anon_sym_throw] = ACTIONS(3294), + [anon_sym_namespace] = ACTIONS(3294), + [anon_sym_using] = ACTIONS(3294), + [anon_sym_static_assert] = ACTIONS(3294), + [anon_sym_concept] = ACTIONS(3294), + [anon_sym_co_return] = ACTIONS(3294), + [anon_sym_co_yield] = ACTIONS(3294), + [anon_sym_R_DQUOTE] = ACTIONS(3296), + [anon_sym_LR_DQUOTE] = ACTIONS(3296), + [anon_sym_uR_DQUOTE] = ACTIONS(3296), + [anon_sym_UR_DQUOTE] = ACTIONS(3296), + [anon_sym_u8R_DQUOTE] = ACTIONS(3296), + [anon_sym_co_await] = ACTIONS(3294), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3294), + [sym_this] = ACTIONS(3294), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3296), + [sym_semgrep_named_ellipsis] = ACTIONS(3296), }, [350] = { - [sym_identifier] = ACTIONS(3265), - [aux_sym_preproc_include_token1] = ACTIONS(3265), - [aux_sym_preproc_def_token1] = ACTIONS(3265), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3267), - [aux_sym_preproc_if_token1] = ACTIONS(3265), - [aux_sym_preproc_if_token2] = ACTIONS(3265), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3265), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3265), - [aux_sym_preproc_else_token1] = ACTIONS(3265), - [aux_sym_preproc_elif_token1] = ACTIONS(3265), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3265), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3265), - [sym_preproc_directive] = ACTIONS(3265), - [anon_sym_LPAREN2] = ACTIONS(3267), - [anon_sym_BANG] = ACTIONS(3267), - [anon_sym_TILDE] = ACTIONS(3267), - [anon_sym_DASH] = ACTIONS(3265), - [anon_sym_PLUS] = ACTIONS(3265), - [anon_sym_STAR] = ACTIONS(3267), - [anon_sym_AMP_AMP] = ACTIONS(3267), - [anon_sym_AMP] = ACTIONS(3265), - [anon_sym_SEMI] = ACTIONS(3267), - [anon_sym___extension__] = ACTIONS(3265), - [anon_sym_typedef] = ACTIONS(3265), - [anon_sym_extern] = ACTIONS(3265), - [anon_sym___attribute__] = ACTIONS(3265), - [anon_sym_COLON_COLON] = ACTIONS(3267), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3267), - [anon_sym___declspec] = ACTIONS(3265), - [anon_sym___based] = ACTIONS(3265), - [anon_sym___cdecl] = ACTIONS(3265), - [anon_sym___clrcall] = ACTIONS(3265), - [anon_sym___stdcall] = ACTIONS(3265), - [anon_sym___fastcall] = ACTIONS(3265), - [anon_sym___thiscall] = ACTIONS(3265), - [anon_sym___vectorcall] = ACTIONS(3265), - [anon_sym_LBRACE] = ACTIONS(3267), - [anon_sym_signed] = ACTIONS(3265), - [anon_sym_unsigned] = ACTIONS(3265), - [anon_sym_long] = ACTIONS(3265), - [anon_sym_short] = ACTIONS(3265), + [sym_preproc_def] = STATE(1935), + [sym_preproc_function_def] = STATE(1935), + [sym_preproc_call] = STATE(1935), + [sym_preproc_if_in_field_declaration_list] = STATE(1935), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1935), + [sym_preproc_else_in_field_declaration_list] = STATE(9330), + [sym_preproc_elif_in_field_declaration_list] = STATE(9330), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(9330), + [sym_type_definition] = STATE(1935), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6440), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7286), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(353), + [sym_field_declaration] = STATE(1935), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(1935), + [sym_operator_cast] = STATE(7765), + [sym_inline_method_definition] = STATE(1935), + [sym_constructor_specifiers] = STATE(1957), + [sym_operator_cast_definition] = STATE(1935), + [sym_operator_cast_declaration] = STATE(1935), + [sym_constructor_or_destructor_definition] = STATE(1935), + [sym_constructor_or_destructor_declaration] = STATE(1935), + [sym_friend_declaration] = STATE(1935), + [sym_access_specifier] = STATE(9998), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(1935), + [sym_alias_declaration] = STATE(1935), + [sym_static_assert_declaration] = STATE(1935), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7765), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(1935), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(353), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1957), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(3229), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3231), + [aux_sym_preproc_if_token1] = ACTIONS(3233), + [aux_sym_preproc_if_token2] = ACTIONS(3298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3239), + [aux_sym_preproc_else_token1] = ACTIONS(3241), + [aux_sym_preproc_elif_token1] = ACTIONS(3243), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3245), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3247), + [sym_preproc_directive] = ACTIONS(3249), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(3259), + [anon_sym_typedef] = ACTIONS(3261), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_static] = ACTIONS(3265), - [anon_sym_register] = ACTIONS(3265), - [anon_sym_inline] = ACTIONS(3265), - [anon_sym___inline] = ACTIONS(3265), - [anon_sym___inline__] = ACTIONS(3265), - [anon_sym___forceinline] = ACTIONS(3265), - [anon_sym_thread_local] = ACTIONS(3265), - [anon_sym___thread] = ACTIONS(3265), - [anon_sym_const] = ACTIONS(3265), - [anon_sym_constexpr] = ACTIONS(3265), - [anon_sym_volatile] = ACTIONS(3265), - [anon_sym_restrict] = ACTIONS(3265), - [anon_sym___restrict__] = ACTIONS(3265), - [anon_sym__Atomic] = ACTIONS(3265), - [anon_sym__Noreturn] = ACTIONS(3265), - [anon_sym_noreturn] = ACTIONS(3265), - [anon_sym_mutable] = ACTIONS(3265), - [anon_sym_constinit] = ACTIONS(3265), - [anon_sym_consteval] = ACTIONS(3265), - [sym_primitive_type] = ACTIONS(3265), - [anon_sym_enum] = ACTIONS(3265), - [anon_sym_class] = ACTIONS(3265), - [anon_sym_struct] = ACTIONS(3265), - [anon_sym_union] = ACTIONS(3265), - [anon_sym_if] = ACTIONS(3265), - [anon_sym_switch] = ACTIONS(3265), - [anon_sym_case] = ACTIONS(3265), - [anon_sym_default] = ACTIONS(3265), - [anon_sym_while] = ACTIONS(3265), - [anon_sym_do] = ACTIONS(3265), - [anon_sym_for] = ACTIONS(3265), - [anon_sym_return] = ACTIONS(3265), - [anon_sym_break] = ACTIONS(3265), - [anon_sym_continue] = ACTIONS(3265), - [anon_sym_goto] = ACTIONS(3265), - [anon_sym___try] = ACTIONS(3265), - [anon_sym___leave] = ACTIONS(3265), - [anon_sym_not] = ACTIONS(3265), - [anon_sym_compl] = ACTIONS(3265), - [anon_sym_DASH_DASH] = ACTIONS(3267), - [anon_sym_PLUS_PLUS] = ACTIONS(3267), - [anon_sym_sizeof] = ACTIONS(3265), - [anon_sym___alignof__] = ACTIONS(3265), - [anon_sym___alignof] = ACTIONS(3265), - [anon_sym__alignof] = ACTIONS(3265), - [anon_sym_alignof] = ACTIONS(3265), - [anon_sym__Alignof] = ACTIONS(3265), - [anon_sym_offsetof] = ACTIONS(3265), - [anon_sym__Generic] = ACTIONS(3265), - [anon_sym_asm] = ACTIONS(3265), - [anon_sym___asm__] = ACTIONS(3265), - [sym_number_literal] = ACTIONS(3267), - [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(3267), - [anon_sym_u_DQUOTE] = ACTIONS(3267), - [anon_sym_U_DQUOTE] = ACTIONS(3267), - [anon_sym_u8_DQUOTE] = ACTIONS(3267), - [anon_sym_DQUOTE] = ACTIONS(3267), - [sym_true] = ACTIONS(3265), - [sym_false] = ACTIONS(3265), - [anon_sym_NULL] = ACTIONS(3265), - [anon_sym_nullptr] = ACTIONS(3265), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3265), - [anon_sym_decltype] = ACTIONS(3265), - [anon_sym_virtual] = ACTIONS(3265), - [anon_sym_alignas] = ACTIONS(3265), - [anon_sym_explicit] = ACTIONS(3265), - [anon_sym_typename] = ACTIONS(3265), - [anon_sym_template] = ACTIONS(3265), - [anon_sym_operator] = ACTIONS(3265), - [anon_sym_try] = ACTIONS(3265), - [anon_sym_delete] = ACTIONS(3265), - [anon_sym_throw] = ACTIONS(3265), - [anon_sym_namespace] = ACTIONS(3265), - [anon_sym_using] = ACTIONS(3265), - [anon_sym_static_assert] = ACTIONS(3265), - [anon_sym_concept] = ACTIONS(3265), - [anon_sym_co_return] = ACTIONS(3265), - [anon_sym_co_yield] = ACTIONS(3265), - [anon_sym_R_DQUOTE] = ACTIONS(3267), - [anon_sym_LR_DQUOTE] = ACTIONS(3267), - [anon_sym_uR_DQUOTE] = ACTIONS(3267), - [anon_sym_UR_DQUOTE] = ACTIONS(3267), - [anon_sym_u8R_DQUOTE] = ACTIONS(3267), - [anon_sym_co_await] = ACTIONS(3265), - [anon_sym_new] = ACTIONS(3265), - [anon_sym_requires] = ACTIONS(3265), - [sym_this] = ACTIONS(3265), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3267), - [sym_semgrep_named_ellipsis] = ACTIONS(3267), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(3279), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(3281), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3285), + [anon_sym_static_assert] = ACTIONS(3287), + [sym_semgrep_metavar] = ACTIONS(3289), }, [351] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5483), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8504), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(9057), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3323), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [sym_preproc_def] = STATE(1935), + [sym_preproc_function_def] = STATE(1935), + [sym_preproc_call] = STATE(1935), + [sym_preproc_if_in_field_declaration_list] = STATE(1935), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1935), + [sym_preproc_else_in_field_declaration_list] = STATE(9340), + [sym_preproc_elif_in_field_declaration_list] = STATE(9340), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(9340), + [sym_type_definition] = STATE(1935), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6440), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7286), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(354), + [sym_field_declaration] = STATE(1935), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(1935), + [sym_operator_cast] = STATE(7765), + [sym_inline_method_definition] = STATE(1935), + [sym_constructor_specifiers] = STATE(1957), + [sym_operator_cast_definition] = STATE(1935), + [sym_operator_cast_declaration] = STATE(1935), + [sym_constructor_or_destructor_definition] = STATE(1935), + [sym_constructor_or_destructor_declaration] = STATE(1935), + [sym_friend_declaration] = STATE(1935), + [sym_access_specifier] = STATE(9998), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(1935), + [sym_alias_declaration] = STATE(1935), + [sym_static_assert_declaration] = STATE(1935), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7765), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(1935), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(354), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1957), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(3229), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3231), + [aux_sym_preproc_if_token1] = ACTIONS(3233), + [aux_sym_preproc_if_token2] = ACTIONS(3300), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3239), + [aux_sym_preproc_else_token1] = ACTIONS(3241), + [aux_sym_preproc_elif_token1] = ACTIONS(3243), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3245), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3247), + [sym_preproc_directive] = ACTIONS(3249), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(3259), + [anon_sym_typedef] = ACTIONS(3261), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(3279), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(3281), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3285), + [anon_sym_static_assert] = ACTIONS(3287), + [sym_semgrep_metavar] = ACTIONS(3289), }, [352] = { - [sym_identifier] = ACTIONS(3339), - [aux_sym_preproc_include_token1] = ACTIONS(3339), - [aux_sym_preproc_def_token1] = ACTIONS(3339), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3341), - [aux_sym_preproc_if_token1] = ACTIONS(3339), - [aux_sym_preproc_if_token2] = ACTIONS(3339), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3339), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3339), - [aux_sym_preproc_else_token1] = ACTIONS(3339), - [aux_sym_preproc_elif_token1] = ACTIONS(3339), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3339), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3339), - [sym_preproc_directive] = ACTIONS(3339), - [anon_sym_LPAREN2] = ACTIONS(3341), - [anon_sym_BANG] = ACTIONS(3341), - [anon_sym_TILDE] = ACTIONS(3341), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_STAR] = ACTIONS(3341), - [anon_sym_AMP_AMP] = ACTIONS(3341), - [anon_sym_AMP] = ACTIONS(3339), - [anon_sym_SEMI] = ACTIONS(3341), - [anon_sym___extension__] = ACTIONS(3339), - [anon_sym_typedef] = ACTIONS(3339), - [anon_sym_extern] = ACTIONS(3339), - [anon_sym___attribute__] = ACTIONS(3339), - [anon_sym_COLON_COLON] = ACTIONS(3341), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3341), - [anon_sym___declspec] = ACTIONS(3339), - [anon_sym___based] = ACTIONS(3339), - [anon_sym___cdecl] = ACTIONS(3339), - [anon_sym___clrcall] = ACTIONS(3339), - [anon_sym___stdcall] = ACTIONS(3339), - [anon_sym___fastcall] = ACTIONS(3339), - [anon_sym___thiscall] = ACTIONS(3339), - [anon_sym___vectorcall] = ACTIONS(3339), - [anon_sym_LBRACE] = ACTIONS(3341), - [anon_sym_signed] = ACTIONS(3339), - [anon_sym_unsigned] = ACTIONS(3339), - [anon_sym_long] = ACTIONS(3339), - [anon_sym_short] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3339), - [anon_sym_static] = ACTIONS(3339), - [anon_sym_register] = ACTIONS(3339), - [anon_sym_inline] = ACTIONS(3339), - [anon_sym___inline] = ACTIONS(3339), - [anon_sym___inline__] = ACTIONS(3339), - [anon_sym___forceinline] = ACTIONS(3339), - [anon_sym_thread_local] = ACTIONS(3339), - [anon_sym___thread] = ACTIONS(3339), - [anon_sym_const] = ACTIONS(3339), - [anon_sym_constexpr] = ACTIONS(3339), - [anon_sym_volatile] = ACTIONS(3339), - [anon_sym_restrict] = ACTIONS(3339), - [anon_sym___restrict__] = ACTIONS(3339), - [anon_sym__Atomic] = ACTIONS(3339), - [anon_sym__Noreturn] = ACTIONS(3339), - [anon_sym_noreturn] = ACTIONS(3339), - [anon_sym_mutable] = ACTIONS(3339), - [anon_sym_constinit] = ACTIONS(3339), - [anon_sym_consteval] = ACTIONS(3339), - [sym_primitive_type] = ACTIONS(3339), - [anon_sym_enum] = ACTIONS(3339), - [anon_sym_class] = ACTIONS(3339), - [anon_sym_struct] = ACTIONS(3339), - [anon_sym_union] = ACTIONS(3339), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_switch] = ACTIONS(3339), - [anon_sym_case] = ACTIONS(3339), - [anon_sym_default] = ACTIONS(3339), - [anon_sym_while] = ACTIONS(3339), - [anon_sym_do] = ACTIONS(3339), - [anon_sym_for] = ACTIONS(3339), - [anon_sym_return] = ACTIONS(3339), - [anon_sym_break] = ACTIONS(3339), - [anon_sym_continue] = ACTIONS(3339), - [anon_sym_goto] = ACTIONS(3339), - [anon_sym___try] = ACTIONS(3339), - [anon_sym___leave] = ACTIONS(3339), - [anon_sym_not] = ACTIONS(3339), - [anon_sym_compl] = ACTIONS(3339), - [anon_sym_DASH_DASH] = ACTIONS(3341), - [anon_sym_PLUS_PLUS] = ACTIONS(3341), - [anon_sym_sizeof] = ACTIONS(3339), - [anon_sym___alignof__] = ACTIONS(3339), - [anon_sym___alignof] = ACTIONS(3339), - [anon_sym__alignof] = ACTIONS(3339), - [anon_sym_alignof] = ACTIONS(3339), - [anon_sym__Alignof] = ACTIONS(3339), - [anon_sym_offsetof] = ACTIONS(3339), - [anon_sym__Generic] = ACTIONS(3339), - [anon_sym_asm] = ACTIONS(3339), - [anon_sym___asm__] = ACTIONS(3339), - [sym_number_literal] = ACTIONS(3341), - [anon_sym_L_SQUOTE] = ACTIONS(3341), - [anon_sym_u_SQUOTE] = ACTIONS(3341), - [anon_sym_U_SQUOTE] = ACTIONS(3341), - [anon_sym_u8_SQUOTE] = ACTIONS(3341), - [anon_sym_SQUOTE] = ACTIONS(3341), - [anon_sym_L_DQUOTE] = ACTIONS(3341), - [anon_sym_u_DQUOTE] = ACTIONS(3341), - [anon_sym_U_DQUOTE] = ACTIONS(3341), - [anon_sym_u8_DQUOTE] = ACTIONS(3341), - [anon_sym_DQUOTE] = ACTIONS(3341), - [sym_true] = ACTIONS(3339), - [sym_false] = ACTIONS(3339), - [anon_sym_NULL] = ACTIONS(3339), - [anon_sym_nullptr] = ACTIONS(3339), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3339), - [anon_sym_decltype] = ACTIONS(3339), - [anon_sym_virtual] = ACTIONS(3339), - [anon_sym_alignas] = ACTIONS(3339), - [anon_sym_explicit] = ACTIONS(3339), - [anon_sym_typename] = ACTIONS(3339), - [anon_sym_template] = ACTIONS(3339), - [anon_sym_operator] = ACTIONS(3339), - [anon_sym_try] = ACTIONS(3339), - [anon_sym_delete] = ACTIONS(3339), - [anon_sym_throw] = ACTIONS(3339), - [anon_sym_namespace] = ACTIONS(3339), - [anon_sym_using] = ACTIONS(3339), - [anon_sym_static_assert] = ACTIONS(3339), - [anon_sym_concept] = ACTIONS(3339), - [anon_sym_co_return] = ACTIONS(3339), - [anon_sym_co_yield] = ACTIONS(3339), - [anon_sym_R_DQUOTE] = ACTIONS(3341), - [anon_sym_LR_DQUOTE] = ACTIONS(3341), - [anon_sym_uR_DQUOTE] = ACTIONS(3341), - [anon_sym_UR_DQUOTE] = ACTIONS(3341), - [anon_sym_u8R_DQUOTE] = ACTIONS(3341), - [anon_sym_co_await] = ACTIONS(3339), - [anon_sym_new] = ACTIONS(3339), - [anon_sym_requires] = ACTIONS(3339), - [sym_this] = ACTIONS(3339), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3341), - [sym_semgrep_named_ellipsis] = ACTIONS(3341), + [sym_identifier] = ACTIONS(3302), + [aux_sym_preproc_include_token1] = ACTIONS(3302), + [aux_sym_preproc_def_token1] = ACTIONS(3302), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3304), + [aux_sym_preproc_if_token1] = ACTIONS(3302), + [aux_sym_preproc_if_token2] = ACTIONS(3302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3302), + [aux_sym_preproc_else_token1] = ACTIONS(3302), + [aux_sym_preproc_elif_token1] = ACTIONS(3302), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3302), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3302), + [sym_preproc_directive] = ACTIONS(3302), + [anon_sym_LPAREN2] = ACTIONS(3304), + [anon_sym_BANG] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_AMP_AMP] = ACTIONS(3304), + [anon_sym_AMP] = ACTIONS(3302), + [anon_sym_SEMI] = ACTIONS(3304), + [anon_sym___extension__] = ACTIONS(3302), + [anon_sym_typedef] = ACTIONS(3302), + [anon_sym_extern] = ACTIONS(3302), + [anon_sym___attribute__] = ACTIONS(3302), + [anon_sym_COLON_COLON] = ACTIONS(3304), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3304), + [anon_sym___declspec] = ACTIONS(3302), + [anon_sym___based] = ACTIONS(3302), + [anon_sym___cdecl] = ACTIONS(3302), + [anon_sym___clrcall] = ACTIONS(3302), + [anon_sym___stdcall] = ACTIONS(3302), + [anon_sym___fastcall] = ACTIONS(3302), + [anon_sym___thiscall] = ACTIONS(3302), + [anon_sym___vectorcall] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_signed] = ACTIONS(3302), + [anon_sym_unsigned] = ACTIONS(3302), + [anon_sym_long] = ACTIONS(3302), + [anon_sym_short] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_register] = ACTIONS(3302), + [anon_sym_inline] = ACTIONS(3302), + [anon_sym___inline] = ACTIONS(3302), + [anon_sym___inline__] = ACTIONS(3302), + [anon_sym___forceinline] = ACTIONS(3302), + [anon_sym_thread_local] = ACTIONS(3302), + [anon_sym___thread] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_constexpr] = ACTIONS(3302), + [anon_sym_volatile] = ACTIONS(3302), + [anon_sym_restrict] = ACTIONS(3302), + [anon_sym___restrict__] = ACTIONS(3302), + [anon_sym__Atomic] = ACTIONS(3302), + [anon_sym__Noreturn] = ACTIONS(3302), + [anon_sym_noreturn] = ACTIONS(3302), + [anon_sym_mutable] = ACTIONS(3302), + [anon_sym_constinit] = ACTIONS(3302), + [anon_sym_consteval] = ACTIONS(3302), + [sym_primitive_type] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_struct] = ACTIONS(3302), + [anon_sym_union] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3302), + [anon_sym_case] = ACTIONS(3302), + [anon_sym_default] = ACTIONS(3302), + [anon_sym_while] = ACTIONS(3302), + [anon_sym_do] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_goto] = ACTIONS(3302), + [anon_sym___try] = ACTIONS(3302), + [anon_sym___leave] = ACTIONS(3302), + [anon_sym_not] = ACTIONS(3302), + [anon_sym_compl] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3304), + [anon_sym_PLUS_PLUS] = ACTIONS(3304), + [anon_sym_sizeof] = ACTIONS(3302), + [anon_sym___alignof__] = ACTIONS(3302), + [anon_sym___alignof] = ACTIONS(3302), + [anon_sym__alignof] = ACTIONS(3302), + [anon_sym_alignof] = ACTIONS(3302), + [anon_sym__Alignof] = ACTIONS(3302), + [anon_sym_offsetof] = ACTIONS(3302), + [anon_sym__Generic] = ACTIONS(3302), + [anon_sym_asm] = ACTIONS(3302), + [anon_sym___asm__] = ACTIONS(3302), + [sym_number_literal] = ACTIONS(3304), + [anon_sym_L_SQUOTE] = ACTIONS(3304), + [anon_sym_u_SQUOTE] = ACTIONS(3304), + [anon_sym_U_SQUOTE] = ACTIONS(3304), + [anon_sym_u8_SQUOTE] = ACTIONS(3304), + [anon_sym_SQUOTE] = ACTIONS(3304), + [anon_sym_L_DQUOTE] = ACTIONS(3304), + [anon_sym_u_DQUOTE] = ACTIONS(3304), + [anon_sym_U_DQUOTE] = ACTIONS(3304), + [anon_sym_u8_DQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [anon_sym_NULL] = ACTIONS(3302), + [anon_sym_nullptr] = ACTIONS(3302), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3302), + [anon_sym_decltype] = ACTIONS(3302), + [anon_sym_virtual] = ACTIONS(3302), + [anon_sym_alignas] = ACTIONS(3302), + [anon_sym_explicit] = ACTIONS(3302), + [anon_sym_typename] = ACTIONS(3302), + [anon_sym_template] = ACTIONS(3302), + [anon_sym_operator] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3302), + [anon_sym_throw] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_static_assert] = ACTIONS(3302), + [anon_sym_concept] = ACTIONS(3302), + [anon_sym_co_return] = ACTIONS(3302), + [anon_sym_co_yield] = ACTIONS(3302), + [anon_sym_R_DQUOTE] = ACTIONS(3304), + [anon_sym_LR_DQUOTE] = ACTIONS(3304), + [anon_sym_uR_DQUOTE] = ACTIONS(3304), + [anon_sym_UR_DQUOTE] = ACTIONS(3304), + [anon_sym_u8R_DQUOTE] = ACTIONS(3304), + [anon_sym_co_await] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_requires] = ACTIONS(3302), + [sym_this] = ACTIONS(3302), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3304), + [sym_semgrep_named_ellipsis] = ACTIONS(3304), }, [353] = { - [sym_catch_clause] = STATE(353), - [aux_sym_constructor_try_statement_repeat1] = STATE(353), - [sym_identifier] = ACTIONS(3063), - [aux_sym_preproc_include_token1] = ACTIONS(3063), - [aux_sym_preproc_def_token1] = ACTIONS(3063), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3065), - [aux_sym_preproc_if_token1] = ACTIONS(3063), - [aux_sym_preproc_if_token2] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3063), - [sym_preproc_directive] = ACTIONS(3063), - [anon_sym_LPAREN2] = ACTIONS(3065), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3063), - [anon_sym_SEMI] = ACTIONS(3065), - [anon_sym___extension__] = ACTIONS(3063), - [anon_sym_typedef] = ACTIONS(3063), - [anon_sym_extern] = ACTIONS(3063), - [anon_sym___attribute__] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(3065), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3065), - [anon_sym___declspec] = ACTIONS(3063), - [anon_sym___based] = ACTIONS(3063), - [anon_sym___cdecl] = ACTIONS(3063), - [anon_sym___clrcall] = ACTIONS(3063), - [anon_sym___stdcall] = ACTIONS(3063), - [anon_sym___fastcall] = ACTIONS(3063), - [anon_sym___thiscall] = ACTIONS(3063), - [anon_sym___vectorcall] = ACTIONS(3063), - [anon_sym_LBRACE] = ACTIONS(3065), - [anon_sym_signed] = ACTIONS(3063), - [anon_sym_unsigned] = ACTIONS(3063), - [anon_sym_long] = ACTIONS(3063), - [anon_sym_short] = ACTIONS(3063), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_static] = ACTIONS(3063), - [anon_sym_register] = ACTIONS(3063), - [anon_sym_inline] = ACTIONS(3063), - [anon_sym___inline] = ACTIONS(3063), - [anon_sym___inline__] = ACTIONS(3063), - [anon_sym___forceinline] = ACTIONS(3063), - [anon_sym_thread_local] = ACTIONS(3063), - [anon_sym___thread] = ACTIONS(3063), - [anon_sym_const] = ACTIONS(3063), - [anon_sym_constexpr] = ACTIONS(3063), - [anon_sym_volatile] = ACTIONS(3063), - [anon_sym_restrict] = ACTIONS(3063), - [anon_sym___restrict__] = ACTIONS(3063), - [anon_sym__Atomic] = ACTIONS(3063), - [anon_sym__Noreturn] = ACTIONS(3063), - [anon_sym_noreturn] = ACTIONS(3063), - [anon_sym_mutable] = ACTIONS(3063), - [anon_sym_constinit] = ACTIONS(3063), - [anon_sym_consteval] = ACTIONS(3063), - [sym_primitive_type] = ACTIONS(3063), - [anon_sym_enum] = ACTIONS(3063), - [anon_sym_class] = ACTIONS(3063), - [anon_sym_struct] = ACTIONS(3063), - [anon_sym_union] = ACTIONS(3063), - [anon_sym_if] = ACTIONS(3063), - [anon_sym_else] = ACTIONS(3063), - [anon_sym_switch] = ACTIONS(3063), - [anon_sym_case] = ACTIONS(3063), - [anon_sym_default] = ACTIONS(3063), - [anon_sym_while] = ACTIONS(3063), - [anon_sym_do] = ACTIONS(3063), - [anon_sym_for] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(3063), - [anon_sym_break] = ACTIONS(3063), - [anon_sym_continue] = ACTIONS(3063), - [anon_sym_goto] = ACTIONS(3063), - [anon_sym___try] = ACTIONS(3063), - [anon_sym___leave] = ACTIONS(3063), - [anon_sym_not] = ACTIONS(3063), - [anon_sym_compl] = ACTIONS(3063), - [anon_sym_DASH_DASH] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3065), - [anon_sym_sizeof] = ACTIONS(3063), - [anon_sym___alignof__] = ACTIONS(3063), - [anon_sym___alignof] = ACTIONS(3063), - [anon_sym__alignof] = ACTIONS(3063), - [anon_sym_alignof] = ACTIONS(3063), - [anon_sym__Alignof] = ACTIONS(3063), - [anon_sym_offsetof] = ACTIONS(3063), - [anon_sym__Generic] = ACTIONS(3063), - [anon_sym_asm] = ACTIONS(3063), - [anon_sym___asm__] = ACTIONS(3063), - [sym_number_literal] = ACTIONS(3065), - [anon_sym_L_SQUOTE] = ACTIONS(3065), - [anon_sym_u_SQUOTE] = ACTIONS(3065), - [anon_sym_U_SQUOTE] = ACTIONS(3065), - [anon_sym_u8_SQUOTE] = ACTIONS(3065), - [anon_sym_SQUOTE] = ACTIONS(3065), - [anon_sym_L_DQUOTE] = ACTIONS(3065), - [anon_sym_u_DQUOTE] = ACTIONS(3065), - [anon_sym_U_DQUOTE] = ACTIONS(3065), - [anon_sym_u8_DQUOTE] = ACTIONS(3065), - [anon_sym_DQUOTE] = ACTIONS(3065), - [sym_true] = ACTIONS(3063), - [sym_false] = ACTIONS(3063), - [anon_sym_NULL] = ACTIONS(3063), - [anon_sym_nullptr] = ACTIONS(3063), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3063), - [anon_sym_decltype] = ACTIONS(3063), - [anon_sym_virtual] = ACTIONS(3063), - [anon_sym_alignas] = ACTIONS(3063), - [anon_sym_explicit] = ACTIONS(3063), - [anon_sym_typename] = ACTIONS(3063), - [anon_sym_template] = ACTIONS(3063), - [anon_sym_operator] = ACTIONS(3063), - [anon_sym_try] = ACTIONS(3063), - [anon_sym_delete] = ACTIONS(3063), - [anon_sym_throw] = ACTIONS(3063), - [anon_sym_namespace] = ACTIONS(3063), - [anon_sym_using] = ACTIONS(3063), - [anon_sym_static_assert] = ACTIONS(3063), - [anon_sym_concept] = ACTIONS(3063), - [anon_sym_co_return] = ACTIONS(3063), - [anon_sym_co_yield] = ACTIONS(3063), - [anon_sym_catch] = ACTIONS(3343), - [anon_sym_R_DQUOTE] = ACTIONS(3065), - [anon_sym_LR_DQUOTE] = ACTIONS(3065), - [anon_sym_uR_DQUOTE] = ACTIONS(3065), - [anon_sym_UR_DQUOTE] = ACTIONS(3065), - [anon_sym_u8R_DQUOTE] = ACTIONS(3065), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3063), - [anon_sym_requires] = ACTIONS(3063), - [sym_this] = ACTIONS(3063), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3065), - [sym_semgrep_named_ellipsis] = ACTIONS(3065), + [sym_preproc_def] = STATE(1935), + [sym_preproc_function_def] = STATE(1935), + [sym_preproc_call] = STATE(1935), + [sym_preproc_if_in_field_declaration_list] = STATE(1935), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1935), + [sym_preproc_else_in_field_declaration_list] = STATE(9595), + [sym_preproc_elif_in_field_declaration_list] = STATE(9595), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(9595), + [sym_type_definition] = STATE(1935), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6440), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7286), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(584), + [sym_field_declaration] = STATE(1935), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(1935), + [sym_operator_cast] = STATE(7765), + [sym_inline_method_definition] = STATE(1935), + [sym_constructor_specifiers] = STATE(1957), + [sym_operator_cast_definition] = STATE(1935), + [sym_operator_cast_declaration] = STATE(1935), + [sym_constructor_or_destructor_definition] = STATE(1935), + [sym_constructor_or_destructor_declaration] = STATE(1935), + [sym_friend_declaration] = STATE(1935), + [sym_access_specifier] = STATE(9998), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(1935), + [sym_alias_declaration] = STATE(1935), + [sym_static_assert_declaration] = STATE(1935), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7765), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(1935), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(584), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1957), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(3229), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3231), + [aux_sym_preproc_if_token1] = ACTIONS(3233), + [aux_sym_preproc_if_token2] = ACTIONS(3306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3239), + [aux_sym_preproc_else_token1] = ACTIONS(3241), + [aux_sym_preproc_elif_token1] = ACTIONS(3243), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3245), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3247), + [sym_preproc_directive] = ACTIONS(3249), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(3259), + [anon_sym_typedef] = ACTIONS(3261), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(3279), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(3281), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3285), + [anon_sym_static_assert] = ACTIONS(3287), + [sym_semgrep_metavar] = ACTIONS(3289), }, [354] = { - [sym_identifier] = ACTIONS(3346), - [aux_sym_preproc_include_token1] = ACTIONS(3346), - [aux_sym_preproc_def_token1] = ACTIONS(3346), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3348), - [aux_sym_preproc_if_token1] = ACTIONS(3346), - [aux_sym_preproc_if_token2] = ACTIONS(3346), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3346), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3346), - [aux_sym_preproc_else_token1] = ACTIONS(3346), - [aux_sym_preproc_elif_token1] = ACTIONS(3346), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3346), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3346), - [sym_preproc_directive] = ACTIONS(3346), - [anon_sym_LPAREN2] = ACTIONS(3348), - [anon_sym_BANG] = ACTIONS(3348), - [anon_sym_TILDE] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_STAR] = ACTIONS(3348), - [anon_sym_AMP_AMP] = ACTIONS(3348), - [anon_sym_AMP] = ACTIONS(3346), - [anon_sym_SEMI] = ACTIONS(3348), - [anon_sym___extension__] = ACTIONS(3346), - [anon_sym_typedef] = ACTIONS(3346), - [anon_sym_extern] = ACTIONS(3346), - [anon_sym___attribute__] = ACTIONS(3346), - [anon_sym_COLON_COLON] = ACTIONS(3348), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3348), - [anon_sym___declspec] = ACTIONS(3346), - [anon_sym___based] = ACTIONS(3346), - [anon_sym___cdecl] = ACTIONS(3346), - [anon_sym___clrcall] = ACTIONS(3346), - [anon_sym___stdcall] = ACTIONS(3346), - [anon_sym___fastcall] = ACTIONS(3346), - [anon_sym___thiscall] = ACTIONS(3346), - [anon_sym___vectorcall] = ACTIONS(3346), - [anon_sym_LBRACE] = ACTIONS(3348), - [anon_sym_signed] = ACTIONS(3346), - [anon_sym_unsigned] = ACTIONS(3346), - [anon_sym_long] = ACTIONS(3346), - [anon_sym_short] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_static] = ACTIONS(3346), - [anon_sym_register] = ACTIONS(3346), - [anon_sym_inline] = ACTIONS(3346), - [anon_sym___inline] = ACTIONS(3346), - [anon_sym___inline__] = ACTIONS(3346), - [anon_sym___forceinline] = ACTIONS(3346), - [anon_sym_thread_local] = ACTIONS(3346), - [anon_sym___thread] = ACTIONS(3346), - [anon_sym_const] = ACTIONS(3346), - [anon_sym_constexpr] = ACTIONS(3346), - [anon_sym_volatile] = ACTIONS(3346), - [anon_sym_restrict] = ACTIONS(3346), - [anon_sym___restrict__] = ACTIONS(3346), - [anon_sym__Atomic] = ACTIONS(3346), - [anon_sym__Noreturn] = ACTIONS(3346), - [anon_sym_noreturn] = ACTIONS(3346), - [anon_sym_mutable] = ACTIONS(3346), - [anon_sym_constinit] = ACTIONS(3346), - [anon_sym_consteval] = ACTIONS(3346), - [sym_primitive_type] = ACTIONS(3346), - [anon_sym_enum] = ACTIONS(3346), - [anon_sym_class] = ACTIONS(3346), - [anon_sym_struct] = ACTIONS(3346), - [anon_sym_union] = ACTIONS(3346), - [anon_sym_if] = ACTIONS(3346), - [anon_sym_switch] = ACTIONS(3346), - [anon_sym_case] = ACTIONS(3346), - [anon_sym_default] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3346), - [anon_sym_do] = ACTIONS(3346), - [anon_sym_for] = ACTIONS(3346), - [anon_sym_return] = ACTIONS(3346), - [anon_sym_break] = ACTIONS(3346), - [anon_sym_continue] = ACTIONS(3346), - [anon_sym_goto] = ACTIONS(3346), - [anon_sym___try] = ACTIONS(3346), - [anon_sym___leave] = ACTIONS(3346), - [anon_sym_not] = ACTIONS(3346), - [anon_sym_compl] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3346), - [anon_sym___alignof__] = ACTIONS(3346), - [anon_sym___alignof] = ACTIONS(3346), - [anon_sym__alignof] = ACTIONS(3346), - [anon_sym_alignof] = ACTIONS(3346), - [anon_sym__Alignof] = ACTIONS(3346), - [anon_sym_offsetof] = ACTIONS(3346), - [anon_sym__Generic] = ACTIONS(3346), + [sym_preproc_def] = STATE(1935), + [sym_preproc_function_def] = STATE(1935), + [sym_preproc_call] = STATE(1935), + [sym_preproc_if_in_field_declaration_list] = STATE(1935), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1935), + [sym_preproc_else_in_field_declaration_list] = STATE(9597), + [sym_preproc_elif_in_field_declaration_list] = STATE(9597), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(9597), + [sym_type_definition] = STATE(1935), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6440), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7286), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(584), + [sym_field_declaration] = STATE(1935), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(1935), + [sym_operator_cast] = STATE(7765), + [sym_inline_method_definition] = STATE(1935), + [sym_constructor_specifiers] = STATE(1957), + [sym_operator_cast_definition] = STATE(1935), + [sym_operator_cast_declaration] = STATE(1935), + [sym_constructor_or_destructor_definition] = STATE(1935), + [sym_constructor_or_destructor_declaration] = STATE(1935), + [sym_friend_declaration] = STATE(1935), + [sym_access_specifier] = STATE(9998), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(1935), + [sym_alias_declaration] = STATE(1935), + [sym_static_assert_declaration] = STATE(1935), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7765), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(1935), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(584), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1957), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(3229), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3231), + [aux_sym_preproc_if_token1] = ACTIONS(3233), + [aux_sym_preproc_if_token2] = ACTIONS(3308), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3239), + [aux_sym_preproc_else_token1] = ACTIONS(3241), + [aux_sym_preproc_elif_token1] = ACTIONS(3243), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3245), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3247), + [sym_preproc_directive] = ACTIONS(3249), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(3259), + [anon_sym_typedef] = ACTIONS(3261), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(3279), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(3281), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3285), + [anon_sym_static_assert] = ACTIONS(3287), + [sym_semgrep_metavar] = ACTIONS(3289), + }, + [355] = { + [sym_type_qualifier] = STATE(4685), + [sym_type_specifier] = STATE(5782), + [sym_sized_type_specifier] = STATE(3293), + [sym_enum_specifier] = STATE(3293), + [sym_struct_specifier] = STATE(3293), + [sym_union_specifier] = STATE(3293), + [sym_expression] = STATE(5002), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_type_descriptor] = STATE(7950), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_placeholder_type_specifier] = STATE(3293), + [sym_decltype_auto] = STATE(3292), + [sym_decltype] = STATE(2572), + [sym_class_specifier] = STATE(3293), + [sym_class_name] = STATE(8965), + [sym_dependent_type] = STATE(3293), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_type_parameter_pack_expansion] = STATE(8489), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6620), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(6338), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [aux_sym_type_definition_type_repeat1] = STATE(4685), + [aux_sym_sized_type_specifier_repeat1] = STATE(2573), + [sym_identifier] = ACTIONS(3310), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_signed] = ACTIONS(3324), + [anon_sym_unsigned] = ACTIONS(3324), + [anon_sym_long] = ACTIONS(3324), + [anon_sym_short] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3330), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_union] = ACTIONS(3334), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), [anon_sym_asm] = ACTIONS(3346), [anon_sym___asm__] = ACTIONS(3346), [sym_number_literal] = ACTIONS(3348), - [anon_sym_L_SQUOTE] = ACTIONS(3348), - [anon_sym_u_SQUOTE] = ACTIONS(3348), - [anon_sym_U_SQUOTE] = ACTIONS(3348), - [anon_sym_u8_SQUOTE] = ACTIONS(3348), - [anon_sym_SQUOTE] = ACTIONS(3348), - [anon_sym_L_DQUOTE] = ACTIONS(3348), - [anon_sym_u_DQUOTE] = ACTIONS(3348), - [anon_sym_U_DQUOTE] = ACTIONS(3348), - [anon_sym_u8_DQUOTE] = ACTIONS(3348), - [anon_sym_DQUOTE] = ACTIONS(3348), - [sym_true] = ACTIONS(3346), - [sym_false] = ACTIONS(3346), - [anon_sym_NULL] = ACTIONS(3346), - [anon_sym_nullptr] = ACTIONS(3346), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3346), - [anon_sym_decltype] = ACTIONS(3346), - [anon_sym_virtual] = ACTIONS(3346), - [anon_sym_alignas] = ACTIONS(3346), - [anon_sym_explicit] = ACTIONS(3346), - [anon_sym_typename] = ACTIONS(3346), - [anon_sym_template] = ACTIONS(3346), - [anon_sym_operator] = ACTIONS(3346), - [anon_sym_try] = ACTIONS(3346), - [anon_sym_delete] = ACTIONS(3346), - [anon_sym_throw] = ACTIONS(3346), - [anon_sym_namespace] = ACTIONS(3346), - [anon_sym_using] = ACTIONS(3346), - [anon_sym_static_assert] = ACTIONS(3346), - [anon_sym_concept] = ACTIONS(3346), - [anon_sym_co_return] = ACTIONS(3346), - [anon_sym_co_yield] = ACTIONS(3346), - [anon_sym_R_DQUOTE] = ACTIONS(3348), - [anon_sym_LR_DQUOTE] = ACTIONS(3348), - [anon_sym_uR_DQUOTE] = ACTIONS(3348), - [anon_sym_UR_DQUOTE] = ACTIONS(3348), - [anon_sym_u8R_DQUOTE] = ACTIONS(3348), - [anon_sym_co_await] = ACTIONS(3346), - [anon_sym_new] = ACTIONS(3346), - [anon_sym_requires] = ACTIONS(3346), - [sym_this] = ACTIONS(3346), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3348), - [sym_semgrep_named_ellipsis] = ACTIONS(3348), - }, - [355] = { - [sym_identifier] = ACTIONS(3350), - [aux_sym_preproc_include_token1] = ACTIONS(3350), - [aux_sym_preproc_def_token1] = ACTIONS(3350), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3352), - [aux_sym_preproc_if_token1] = ACTIONS(3350), - [aux_sym_preproc_if_token2] = ACTIONS(3350), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3350), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3350), - [aux_sym_preproc_else_token1] = ACTIONS(3350), - [aux_sym_preproc_elif_token1] = ACTIONS(3350), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3350), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3350), - [sym_preproc_directive] = ACTIONS(3350), - [anon_sym_LPAREN2] = ACTIONS(3352), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(3352), - [anon_sym_DASH] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3350), - [anon_sym_STAR] = ACTIONS(3352), - [anon_sym_AMP_AMP] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3350), - [anon_sym_SEMI] = ACTIONS(3352), - [anon_sym___extension__] = ACTIONS(3350), - [anon_sym_typedef] = ACTIONS(3350), - [anon_sym_extern] = ACTIONS(3350), - [anon_sym___attribute__] = ACTIONS(3350), - [anon_sym_COLON_COLON] = ACTIONS(3352), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3352), - [anon_sym___declspec] = ACTIONS(3350), - [anon_sym___based] = ACTIONS(3350), - [anon_sym___cdecl] = ACTIONS(3350), - [anon_sym___clrcall] = ACTIONS(3350), - [anon_sym___stdcall] = ACTIONS(3350), - [anon_sym___fastcall] = ACTIONS(3350), - [anon_sym___thiscall] = ACTIONS(3350), - [anon_sym___vectorcall] = ACTIONS(3350), - [anon_sym_LBRACE] = ACTIONS(3352), - [anon_sym_signed] = ACTIONS(3350), - [anon_sym_unsigned] = ACTIONS(3350), - [anon_sym_long] = ACTIONS(3350), - [anon_sym_short] = ACTIONS(3350), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_static] = ACTIONS(3350), - [anon_sym_register] = ACTIONS(3350), - [anon_sym_inline] = ACTIONS(3350), - [anon_sym___inline] = ACTIONS(3350), - [anon_sym___inline__] = ACTIONS(3350), - [anon_sym___forceinline] = ACTIONS(3350), - [anon_sym_thread_local] = ACTIONS(3350), - [anon_sym___thread] = ACTIONS(3350), - [anon_sym_const] = ACTIONS(3350), - [anon_sym_constexpr] = ACTIONS(3350), - [anon_sym_volatile] = ACTIONS(3350), - [anon_sym_restrict] = ACTIONS(3350), - [anon_sym___restrict__] = ACTIONS(3350), - [anon_sym__Atomic] = ACTIONS(3350), - [anon_sym__Noreturn] = ACTIONS(3350), - [anon_sym_noreturn] = ACTIONS(3350), - [anon_sym_mutable] = ACTIONS(3350), - [anon_sym_constinit] = ACTIONS(3350), - [anon_sym_consteval] = ACTIONS(3350), - [sym_primitive_type] = ACTIONS(3350), - [anon_sym_enum] = ACTIONS(3350), - [anon_sym_class] = ACTIONS(3350), - [anon_sym_struct] = ACTIONS(3350), - [anon_sym_union] = ACTIONS(3350), - [anon_sym_if] = ACTIONS(3350), - [anon_sym_switch] = ACTIONS(3350), - [anon_sym_case] = ACTIONS(3350), - [anon_sym_default] = ACTIONS(3350), - [anon_sym_while] = ACTIONS(3350), - [anon_sym_do] = ACTIONS(3350), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(3350), - [anon_sym_break] = ACTIONS(3350), - [anon_sym_continue] = ACTIONS(3350), - [anon_sym_goto] = ACTIONS(3350), - [anon_sym___try] = ACTIONS(3350), - [anon_sym___leave] = ACTIONS(3350), - [anon_sym_not] = ACTIONS(3350), - [anon_sym_compl] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3352), - [anon_sym_PLUS_PLUS] = ACTIONS(3352), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3350), - [anon_sym___alignof] = ACTIONS(3350), - [anon_sym__alignof] = ACTIONS(3350), - [anon_sym_alignof] = ACTIONS(3350), - [anon_sym__Alignof] = ACTIONS(3350), - [anon_sym_offsetof] = ACTIONS(3350), - [anon_sym__Generic] = ACTIONS(3350), - [anon_sym_asm] = ACTIONS(3350), - [anon_sym___asm__] = ACTIONS(3350), - [sym_number_literal] = ACTIONS(3352), - [anon_sym_L_SQUOTE] = ACTIONS(3352), - [anon_sym_u_SQUOTE] = ACTIONS(3352), - [anon_sym_U_SQUOTE] = ACTIONS(3352), - [anon_sym_u8_SQUOTE] = ACTIONS(3352), - [anon_sym_SQUOTE] = ACTIONS(3352), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), [anon_sym_L_DQUOTE] = ACTIONS(3352), [anon_sym_u_DQUOTE] = ACTIONS(3352), [anon_sym_U_DQUOTE] = ACTIONS(3352), [anon_sym_u8_DQUOTE] = ACTIONS(3352), [anon_sym_DQUOTE] = ACTIONS(3352), - [sym_true] = ACTIONS(3350), - [sym_false] = ACTIONS(3350), - [anon_sym_NULL] = ACTIONS(3350), - [anon_sym_nullptr] = ACTIONS(3350), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3350), - [anon_sym_decltype] = ACTIONS(3350), - [anon_sym_virtual] = ACTIONS(3350), - [anon_sym_alignas] = ACTIONS(3350), - [anon_sym_explicit] = ACTIONS(3350), - [anon_sym_typename] = ACTIONS(3350), - [anon_sym_template] = ACTIONS(3350), - [anon_sym_operator] = ACTIONS(3350), - [anon_sym_try] = ACTIONS(3350), - [anon_sym_delete] = ACTIONS(3350), - [anon_sym_throw] = ACTIONS(3350), - [anon_sym_namespace] = ACTIONS(3350), - [anon_sym_using] = ACTIONS(3350), - [anon_sym_static_assert] = ACTIONS(3350), - [anon_sym_concept] = ACTIONS(3350), - [anon_sym_co_return] = ACTIONS(3350), - [anon_sym_co_yield] = ACTIONS(3350), - [anon_sym_R_DQUOTE] = ACTIONS(3352), - [anon_sym_LR_DQUOTE] = ACTIONS(3352), - [anon_sym_uR_DQUOTE] = ACTIONS(3352), - [anon_sym_UR_DQUOTE] = ACTIONS(3352), - [anon_sym_u8R_DQUOTE] = ACTIONS(3352), - [anon_sym_co_await] = ACTIONS(3350), - [anon_sym_new] = ACTIONS(3350), - [anon_sym_requires] = ACTIONS(3350), - [sym_this] = ACTIONS(3350), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3352), - [sym_semgrep_named_ellipsis] = ACTIONS(3352), - }, - [356] = { - [sym_identifier] = ACTIONS(3354), - [aux_sym_preproc_include_token1] = ACTIONS(3354), - [aux_sym_preproc_def_token1] = ACTIONS(3354), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3356), - [aux_sym_preproc_if_token1] = ACTIONS(3354), - [aux_sym_preproc_if_token2] = ACTIONS(3354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3354), - [aux_sym_preproc_else_token1] = ACTIONS(3354), - [aux_sym_preproc_elif_token1] = ACTIONS(3354), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3354), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3354), - [sym_preproc_directive] = ACTIONS(3354), - [anon_sym_LPAREN2] = ACTIONS(3356), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(3356), - [anon_sym_DASH] = ACTIONS(3354), - [anon_sym_PLUS] = ACTIONS(3354), - [anon_sym_STAR] = ACTIONS(3356), - [anon_sym_AMP_AMP] = ACTIONS(3356), - [anon_sym_AMP] = ACTIONS(3354), - [anon_sym_SEMI] = ACTIONS(3356), - [anon_sym___extension__] = ACTIONS(3354), - [anon_sym_typedef] = ACTIONS(3354), - [anon_sym_extern] = ACTIONS(3354), - [anon_sym___attribute__] = ACTIONS(3354), - [anon_sym_COLON_COLON] = ACTIONS(3356), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3356), - [anon_sym___declspec] = ACTIONS(3354), - [anon_sym___based] = ACTIONS(3354), - [anon_sym___cdecl] = ACTIONS(3354), - [anon_sym___clrcall] = ACTIONS(3354), - [anon_sym___stdcall] = ACTIONS(3354), - [anon_sym___fastcall] = ACTIONS(3354), - [anon_sym___thiscall] = ACTIONS(3354), - [anon_sym___vectorcall] = ACTIONS(3354), - [anon_sym_LBRACE] = ACTIONS(3356), - [anon_sym_signed] = ACTIONS(3354), - [anon_sym_unsigned] = ACTIONS(3354), - [anon_sym_long] = ACTIONS(3354), - [anon_sym_short] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3354), - [anon_sym_static] = ACTIONS(3354), - [anon_sym_register] = ACTIONS(3354), - [anon_sym_inline] = ACTIONS(3354), - [anon_sym___inline] = ACTIONS(3354), - [anon_sym___inline__] = ACTIONS(3354), - [anon_sym___forceinline] = ACTIONS(3354), - [anon_sym_thread_local] = ACTIONS(3354), - [anon_sym___thread] = ACTIONS(3354), - [anon_sym_const] = ACTIONS(3354), - [anon_sym_constexpr] = ACTIONS(3354), - [anon_sym_volatile] = ACTIONS(3354), - [anon_sym_restrict] = ACTIONS(3354), - [anon_sym___restrict__] = ACTIONS(3354), - [anon_sym__Atomic] = ACTIONS(3354), - [anon_sym__Noreturn] = ACTIONS(3354), - [anon_sym_noreturn] = ACTIONS(3354), - [anon_sym_mutable] = ACTIONS(3354), - [anon_sym_constinit] = ACTIONS(3354), - [anon_sym_consteval] = ACTIONS(3354), - [sym_primitive_type] = ACTIONS(3354), - [anon_sym_enum] = ACTIONS(3354), - [anon_sym_class] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(3354), - [anon_sym_union] = ACTIONS(3354), - [anon_sym_if] = ACTIONS(3354), - [anon_sym_switch] = ACTIONS(3354), - [anon_sym_case] = ACTIONS(3354), - [anon_sym_default] = ACTIONS(3354), - [anon_sym_while] = ACTIONS(3354), - [anon_sym_do] = ACTIONS(3354), - [anon_sym_for] = ACTIONS(3354), - [anon_sym_return] = ACTIONS(3354), - [anon_sym_break] = ACTIONS(3354), - [anon_sym_continue] = ACTIONS(3354), - [anon_sym_goto] = ACTIONS(3354), - [anon_sym___try] = ACTIONS(3354), - [anon_sym___leave] = ACTIONS(3354), - [anon_sym_not] = ACTIONS(3354), - [anon_sym_compl] = ACTIONS(3354), - [anon_sym_DASH_DASH] = ACTIONS(3356), - [anon_sym_PLUS_PLUS] = ACTIONS(3356), - [anon_sym_sizeof] = ACTIONS(3354), - [anon_sym___alignof__] = ACTIONS(3354), - [anon_sym___alignof] = ACTIONS(3354), - [anon_sym__alignof] = ACTIONS(3354), - [anon_sym_alignof] = ACTIONS(3354), - [anon_sym__Alignof] = ACTIONS(3354), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3354), - [anon_sym_asm] = ACTIONS(3354), - [anon_sym___asm__] = ACTIONS(3354), - [sym_number_literal] = ACTIONS(3356), - [anon_sym_L_SQUOTE] = ACTIONS(3356), - [anon_sym_u_SQUOTE] = ACTIONS(3356), - [anon_sym_U_SQUOTE] = ACTIONS(3356), - [anon_sym_u8_SQUOTE] = ACTIONS(3356), - [anon_sym_SQUOTE] = ACTIONS(3356), - [anon_sym_L_DQUOTE] = ACTIONS(3356), - [anon_sym_u_DQUOTE] = ACTIONS(3356), - [anon_sym_U_DQUOTE] = ACTIONS(3356), - [anon_sym_u8_DQUOTE] = ACTIONS(3356), - [anon_sym_DQUOTE] = ACTIONS(3356), [sym_true] = ACTIONS(3354), [sym_false] = ACTIONS(3354), - [anon_sym_NULL] = ACTIONS(3354), - [anon_sym_nullptr] = ACTIONS(3354), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3354), - [anon_sym_decltype] = ACTIONS(3354), - [anon_sym_virtual] = ACTIONS(3354), - [anon_sym_alignas] = ACTIONS(3354), - [anon_sym_explicit] = ACTIONS(3354), - [anon_sym_typename] = ACTIONS(3354), - [anon_sym_template] = ACTIONS(3354), - [anon_sym_operator] = ACTIONS(3354), - [anon_sym_try] = ACTIONS(3354), - [anon_sym_delete] = ACTIONS(3354), - [anon_sym_throw] = ACTIONS(3354), - [anon_sym_namespace] = ACTIONS(3354), - [anon_sym_using] = ACTIONS(3354), - [anon_sym_static_assert] = ACTIONS(3354), - [anon_sym_concept] = ACTIONS(3354), - [anon_sym_co_return] = ACTIONS(3354), - [anon_sym_co_yield] = ACTIONS(3354), - [anon_sym_R_DQUOTE] = ACTIONS(3356), - [anon_sym_LR_DQUOTE] = ACTIONS(3356), - [anon_sym_uR_DQUOTE] = ACTIONS(3356), - [anon_sym_UR_DQUOTE] = ACTIONS(3356), - [anon_sym_u8R_DQUOTE] = ACTIONS(3356), - [anon_sym_co_await] = ACTIONS(3354), - [anon_sym_new] = ACTIONS(3354), - [anon_sym_requires] = ACTIONS(3354), - [sym_this] = ACTIONS(3354), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3356), - [sym_semgrep_named_ellipsis] = ACTIONS(3356), - }, - [357] = { - [sym_identifier] = ACTIONS(3358), - [aux_sym_preproc_include_token1] = ACTIONS(3358), - [aux_sym_preproc_def_token1] = ACTIONS(3358), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3360), - [aux_sym_preproc_if_token1] = ACTIONS(3358), - [aux_sym_preproc_if_token2] = ACTIONS(3358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3358), - [aux_sym_preproc_else_token1] = ACTIONS(3358), - [aux_sym_preproc_elif_token1] = ACTIONS(3358), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3358), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3358), - [sym_preproc_directive] = ACTIONS(3358), - [anon_sym_LPAREN2] = ACTIONS(3360), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_AMP_AMP] = ACTIONS(3360), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_SEMI] = ACTIONS(3360), - [anon_sym___extension__] = ACTIONS(3358), - [anon_sym_typedef] = ACTIONS(3358), - [anon_sym_extern] = ACTIONS(3358), - [anon_sym___attribute__] = ACTIONS(3358), - [anon_sym_COLON_COLON] = ACTIONS(3360), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3360), - [anon_sym___declspec] = ACTIONS(3358), - [anon_sym___based] = ACTIONS(3358), - [anon_sym___cdecl] = ACTIONS(3358), - [anon_sym___clrcall] = ACTIONS(3358), - [anon_sym___stdcall] = ACTIONS(3358), - [anon_sym___fastcall] = ACTIONS(3358), - [anon_sym___thiscall] = ACTIONS(3358), - [anon_sym___vectorcall] = ACTIONS(3358), - [anon_sym_LBRACE] = ACTIONS(3360), - [anon_sym_signed] = ACTIONS(3358), - [anon_sym_unsigned] = ACTIONS(3358), - [anon_sym_long] = ACTIONS(3358), - [anon_sym_short] = ACTIONS(3358), - [anon_sym_LBRACK] = ACTIONS(3358), - [anon_sym_static] = ACTIONS(3358), - [anon_sym_register] = ACTIONS(3358), - [anon_sym_inline] = ACTIONS(3358), - [anon_sym___inline] = ACTIONS(3358), - [anon_sym___inline__] = ACTIONS(3358), - [anon_sym___forceinline] = ACTIONS(3358), - [anon_sym_thread_local] = ACTIONS(3358), - [anon_sym___thread] = ACTIONS(3358), - [anon_sym_const] = ACTIONS(3358), - [anon_sym_constexpr] = ACTIONS(3358), - [anon_sym_volatile] = ACTIONS(3358), - [anon_sym_restrict] = ACTIONS(3358), - [anon_sym___restrict__] = ACTIONS(3358), - [anon_sym__Atomic] = ACTIONS(3358), - [anon_sym__Noreturn] = ACTIONS(3358), - [anon_sym_noreturn] = ACTIONS(3358), - [anon_sym_mutable] = ACTIONS(3358), - [anon_sym_constinit] = ACTIONS(3358), - [anon_sym_consteval] = ACTIONS(3358), - [sym_primitive_type] = ACTIONS(3358), - [anon_sym_enum] = ACTIONS(3358), - [anon_sym_class] = ACTIONS(3358), - [anon_sym_struct] = ACTIONS(3358), - [anon_sym_union] = ACTIONS(3358), - [anon_sym_if] = ACTIONS(3358), - [anon_sym_switch] = ACTIONS(3358), - [anon_sym_case] = ACTIONS(3358), - [anon_sym_default] = ACTIONS(3358), - [anon_sym_while] = ACTIONS(3358), - [anon_sym_do] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3358), - [anon_sym_return] = ACTIONS(3358), - [anon_sym_break] = ACTIONS(3358), - [anon_sym_continue] = ACTIONS(3358), - [anon_sym_goto] = ACTIONS(3358), - [anon_sym___try] = ACTIONS(3358), - [anon_sym___leave] = ACTIONS(3358), - [anon_sym_not] = ACTIONS(3358), - [anon_sym_compl] = ACTIONS(3358), - [anon_sym_DASH_DASH] = ACTIONS(3360), - [anon_sym_PLUS_PLUS] = ACTIONS(3360), - [anon_sym_sizeof] = ACTIONS(3358), - [anon_sym___alignof__] = ACTIONS(3358), - [anon_sym___alignof] = ACTIONS(3358), - [anon_sym__alignof] = ACTIONS(3358), - [anon_sym_alignof] = ACTIONS(3358), - [anon_sym__Alignof] = ACTIONS(3358), - [anon_sym_offsetof] = ACTIONS(3358), - [anon_sym__Generic] = ACTIONS(3358), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3360), - [anon_sym_u_SQUOTE] = ACTIONS(3360), - [anon_sym_U_SQUOTE] = ACTIONS(3360), - [anon_sym_u8_SQUOTE] = ACTIONS(3360), - [anon_sym_SQUOTE] = ACTIONS(3360), - [anon_sym_L_DQUOTE] = ACTIONS(3360), - [anon_sym_u_DQUOTE] = ACTIONS(3360), - [anon_sym_U_DQUOTE] = ACTIONS(3360), - [anon_sym_u8_DQUOTE] = ACTIONS(3360), - [anon_sym_DQUOTE] = ACTIONS(3360), - [sym_true] = ACTIONS(3358), - [sym_false] = ACTIONS(3358), - [anon_sym_NULL] = ACTIONS(3358), - [anon_sym_nullptr] = ACTIONS(3358), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(3358), - [anon_sym_decltype] = ACTIONS(3358), - [anon_sym_virtual] = ACTIONS(3358), - [anon_sym_alignas] = ACTIONS(3358), - [anon_sym_explicit] = ACTIONS(3358), - [anon_sym_typename] = ACTIONS(3358), - [anon_sym_template] = ACTIONS(3358), - [anon_sym_operator] = ACTIONS(3358), - [anon_sym_try] = ACTIONS(3358), - [anon_sym_delete] = ACTIONS(3358), - [anon_sym_throw] = ACTIONS(3358), - [anon_sym_namespace] = ACTIONS(3358), - [anon_sym_using] = ACTIONS(3358), - [anon_sym_static_assert] = ACTIONS(3358), - [anon_sym_concept] = ACTIONS(3358), - [anon_sym_co_return] = ACTIONS(3358), - [anon_sym_co_yield] = ACTIONS(3358), - [anon_sym_R_DQUOTE] = ACTIONS(3360), - [anon_sym_LR_DQUOTE] = ACTIONS(3360), - [anon_sym_uR_DQUOTE] = ACTIONS(3360), - [anon_sym_UR_DQUOTE] = ACTIONS(3360), - [anon_sym_u8R_DQUOTE] = ACTIONS(3360), - [anon_sym_co_await] = ACTIONS(3358), - [anon_sym_new] = ACTIONS(3358), - [anon_sym_requires] = ACTIONS(3358), - [sym_this] = ACTIONS(3358), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3360), - [sym_semgrep_named_ellipsis] = ACTIONS(3360), - }, - [358] = { - [sym_identifier] = ACTIONS(3362), - [aux_sym_preproc_include_token1] = ACTIONS(3362), - [aux_sym_preproc_def_token1] = ACTIONS(3362), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3364), - [aux_sym_preproc_if_token1] = ACTIONS(3362), - [aux_sym_preproc_if_token2] = ACTIONS(3362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3362), - [aux_sym_preproc_else_token1] = ACTIONS(3362), - [aux_sym_preproc_elif_token1] = ACTIONS(3362), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3362), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3362), - [sym_preproc_directive] = ACTIONS(3362), - [anon_sym_LPAREN2] = ACTIONS(3364), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(3364), - [anon_sym_DASH] = ACTIONS(3362), - [anon_sym_PLUS] = ACTIONS(3362), - [anon_sym_STAR] = ACTIONS(3364), - [anon_sym_AMP_AMP] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3362), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym___extension__] = ACTIONS(3362), - [anon_sym_typedef] = ACTIONS(3362), - [anon_sym_extern] = ACTIONS(3362), - [anon_sym___attribute__] = ACTIONS(3362), - [anon_sym_COLON_COLON] = ACTIONS(3364), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3364), - [anon_sym___declspec] = ACTIONS(3362), - [anon_sym___based] = ACTIONS(3362), - [anon_sym___cdecl] = ACTIONS(3362), - [anon_sym___clrcall] = ACTIONS(3362), - [anon_sym___stdcall] = ACTIONS(3362), - [anon_sym___fastcall] = ACTIONS(3362), - [anon_sym___thiscall] = ACTIONS(3362), - [anon_sym___vectorcall] = ACTIONS(3362), - [anon_sym_LBRACE] = ACTIONS(3364), - [anon_sym_signed] = ACTIONS(3362), - [anon_sym_unsigned] = ACTIONS(3362), - [anon_sym_long] = ACTIONS(3362), - [anon_sym_short] = ACTIONS(3362), - [anon_sym_LBRACK] = ACTIONS(3362), - [anon_sym_static] = ACTIONS(3362), - [anon_sym_register] = ACTIONS(3362), - [anon_sym_inline] = ACTIONS(3362), - [anon_sym___inline] = ACTIONS(3362), - [anon_sym___inline__] = ACTIONS(3362), - [anon_sym___forceinline] = ACTIONS(3362), - [anon_sym_thread_local] = ACTIONS(3362), - [anon_sym___thread] = ACTIONS(3362), - [anon_sym_const] = ACTIONS(3362), - [anon_sym_constexpr] = ACTIONS(3362), - [anon_sym_volatile] = ACTIONS(3362), - [anon_sym_restrict] = ACTIONS(3362), - [anon_sym___restrict__] = ACTIONS(3362), - [anon_sym__Atomic] = ACTIONS(3362), - [anon_sym__Noreturn] = ACTIONS(3362), - [anon_sym_noreturn] = ACTIONS(3362), - [anon_sym_mutable] = ACTIONS(3362), - [anon_sym_constinit] = ACTIONS(3362), - [anon_sym_consteval] = ACTIONS(3362), - [sym_primitive_type] = ACTIONS(3362), - [anon_sym_enum] = ACTIONS(3362), - [anon_sym_class] = ACTIONS(3362), - [anon_sym_struct] = ACTIONS(3362), - [anon_sym_union] = ACTIONS(3362), - [anon_sym_if] = ACTIONS(3362), - [anon_sym_switch] = ACTIONS(3362), - [anon_sym_case] = ACTIONS(3362), - [anon_sym_default] = ACTIONS(3362), - [anon_sym_while] = ACTIONS(3362), - [anon_sym_do] = ACTIONS(3362), - [anon_sym_for] = ACTIONS(3362), - [anon_sym_return] = ACTIONS(3362), - [anon_sym_break] = ACTIONS(3362), - [anon_sym_continue] = ACTIONS(3362), - [anon_sym_goto] = ACTIONS(3362), - [anon_sym___try] = ACTIONS(3362), - [anon_sym___leave] = ACTIONS(3362), - [anon_sym_not] = ACTIONS(3362), - [anon_sym_compl] = ACTIONS(3362), - [anon_sym_DASH_DASH] = ACTIONS(3364), - [anon_sym_PLUS_PLUS] = ACTIONS(3364), - [anon_sym_sizeof] = ACTIONS(3362), - [anon_sym___alignof__] = ACTIONS(3362), - [anon_sym___alignof] = ACTIONS(3362), - [anon_sym__alignof] = ACTIONS(3362), - [anon_sym_alignof] = ACTIONS(3362), - [anon_sym__Alignof] = ACTIONS(3362), - [anon_sym_offsetof] = ACTIONS(3362), - [anon_sym__Generic] = ACTIONS(3362), - [anon_sym_asm] = ACTIONS(3362), - [anon_sym___asm__] = ACTIONS(3362), - [sym_number_literal] = ACTIONS(3364), - [anon_sym_L_SQUOTE] = ACTIONS(3364), - [anon_sym_u_SQUOTE] = ACTIONS(3364), - [anon_sym_U_SQUOTE] = ACTIONS(3364), - [anon_sym_u8_SQUOTE] = ACTIONS(3364), - [anon_sym_SQUOTE] = ACTIONS(3364), - [anon_sym_L_DQUOTE] = ACTIONS(3364), - [anon_sym_u_DQUOTE] = ACTIONS(3364), - [anon_sym_U_DQUOTE] = ACTIONS(3364), - [anon_sym_u8_DQUOTE] = ACTIONS(3364), - [anon_sym_DQUOTE] = ACTIONS(3364), - [sym_true] = ACTIONS(3362), - [sym_false] = ACTIONS(3362), - [anon_sym_NULL] = ACTIONS(3362), - [anon_sym_nullptr] = ACTIONS(3362), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3362), - [anon_sym_decltype] = ACTIONS(3362), - [anon_sym_virtual] = ACTIONS(3362), - [anon_sym_alignas] = ACTIONS(3362), - [anon_sym_explicit] = ACTIONS(3362), + [anon_sym_decltype] = ACTIONS(3360), [anon_sym_typename] = ACTIONS(3362), - [anon_sym_template] = ACTIONS(3362), - [anon_sym_operator] = ACTIONS(3362), - [anon_sym_try] = ACTIONS(3362), - [anon_sym_delete] = ACTIONS(3362), - [anon_sym_throw] = ACTIONS(3362), - [anon_sym_namespace] = ACTIONS(3362), - [anon_sym_using] = ACTIONS(3362), - [anon_sym_static_assert] = ACTIONS(3362), - [anon_sym_concept] = ACTIONS(3362), - [anon_sym_co_return] = ACTIONS(3362), - [anon_sym_co_yield] = ACTIONS(3362), - [anon_sym_R_DQUOTE] = ACTIONS(3364), - [anon_sym_LR_DQUOTE] = ACTIONS(3364), - [anon_sym_uR_DQUOTE] = ACTIONS(3364), - [anon_sym_UR_DQUOTE] = ACTIONS(3364), - [anon_sym_u8R_DQUOTE] = ACTIONS(3364), - [anon_sym_co_await] = ACTIONS(3362), - [anon_sym_new] = ACTIONS(3362), - [anon_sym_requires] = ACTIONS(3362), - [sym_this] = ACTIONS(3362), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3364), - [sym_semgrep_named_ellipsis] = ACTIONS(3364), - }, - [359] = { - [sym_identifier] = ACTIONS(3366), - [aux_sym_preproc_include_token1] = ACTIONS(3366), - [aux_sym_preproc_def_token1] = ACTIONS(3366), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3368), - [aux_sym_preproc_if_token1] = ACTIONS(3366), - [aux_sym_preproc_if_token2] = ACTIONS(3366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3366), - [aux_sym_preproc_else_token1] = ACTIONS(3366), - [aux_sym_preproc_elif_token1] = ACTIONS(3366), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3366), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3366), - [sym_preproc_directive] = ACTIONS(3366), - [anon_sym_LPAREN2] = ACTIONS(3368), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(3368), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_PLUS] = ACTIONS(3366), - [anon_sym_STAR] = ACTIONS(3368), - [anon_sym_AMP_AMP] = ACTIONS(3368), - [anon_sym_AMP] = ACTIONS(3366), - [anon_sym_SEMI] = ACTIONS(3368), - [anon_sym___extension__] = ACTIONS(3366), - [anon_sym_typedef] = ACTIONS(3366), - [anon_sym_extern] = ACTIONS(3366), - [anon_sym___attribute__] = ACTIONS(3366), - [anon_sym_COLON_COLON] = ACTIONS(3368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3368), - [anon_sym___declspec] = ACTIONS(3366), - [anon_sym___based] = ACTIONS(3366), - [anon_sym___cdecl] = ACTIONS(3366), - [anon_sym___clrcall] = ACTIONS(3366), - [anon_sym___stdcall] = ACTIONS(3366), - [anon_sym___fastcall] = ACTIONS(3366), - [anon_sym___thiscall] = ACTIONS(3366), - [anon_sym___vectorcall] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3368), - [anon_sym_signed] = ACTIONS(3366), - [anon_sym_unsigned] = ACTIONS(3366), - [anon_sym_long] = ACTIONS(3366), - [anon_sym_short] = ACTIONS(3366), - [anon_sym_LBRACK] = ACTIONS(3366), - [anon_sym_static] = ACTIONS(3366), - [anon_sym_register] = ACTIONS(3366), - [anon_sym_inline] = ACTIONS(3366), - [anon_sym___inline] = ACTIONS(3366), - [anon_sym___inline__] = ACTIONS(3366), - [anon_sym___forceinline] = ACTIONS(3366), - [anon_sym_thread_local] = ACTIONS(3366), - [anon_sym___thread] = ACTIONS(3366), - [anon_sym_const] = ACTIONS(3366), - [anon_sym_constexpr] = ACTIONS(3366), - [anon_sym_volatile] = ACTIONS(3366), - [anon_sym_restrict] = ACTIONS(3366), - [anon_sym___restrict__] = ACTIONS(3366), - [anon_sym__Atomic] = ACTIONS(3366), - [anon_sym__Noreturn] = ACTIONS(3366), - [anon_sym_noreturn] = ACTIONS(3366), - [anon_sym_mutable] = ACTIONS(3366), - [anon_sym_constinit] = ACTIONS(3366), - [anon_sym_consteval] = ACTIONS(3366), - [sym_primitive_type] = ACTIONS(3366), - [anon_sym_enum] = ACTIONS(3366), - [anon_sym_class] = ACTIONS(3366), - [anon_sym_struct] = ACTIONS(3366), - [anon_sym_union] = ACTIONS(3366), - [anon_sym_if] = ACTIONS(3366), - [anon_sym_switch] = ACTIONS(3366), - [anon_sym_case] = ACTIONS(3366), - [anon_sym_default] = ACTIONS(3366), - [anon_sym_while] = ACTIONS(3366), - [anon_sym_do] = ACTIONS(3366), - [anon_sym_for] = ACTIONS(3366), - [anon_sym_return] = ACTIONS(3366), - [anon_sym_break] = ACTIONS(3366), - [anon_sym_continue] = ACTIONS(3366), - [anon_sym_goto] = ACTIONS(3366), - [anon_sym___try] = ACTIONS(3366), - [anon_sym___leave] = ACTIONS(3366), - [anon_sym_not] = ACTIONS(3366), - [anon_sym_compl] = ACTIONS(3366), - [anon_sym_DASH_DASH] = ACTIONS(3368), - [anon_sym_PLUS_PLUS] = ACTIONS(3368), - [anon_sym_sizeof] = ACTIONS(3366), - [anon_sym___alignof__] = ACTIONS(3366), - [anon_sym___alignof] = ACTIONS(3366), - [anon_sym__alignof] = ACTIONS(3366), - [anon_sym_alignof] = ACTIONS(3366), - [anon_sym__Alignof] = ACTIONS(3366), - [anon_sym_offsetof] = ACTIONS(3366), - [anon_sym__Generic] = ACTIONS(3366), - [anon_sym_asm] = ACTIONS(3366), - [anon_sym___asm__] = ACTIONS(3366), - [sym_number_literal] = ACTIONS(3368), - [anon_sym_L_SQUOTE] = ACTIONS(3368), - [anon_sym_u_SQUOTE] = ACTIONS(3368), - [anon_sym_U_SQUOTE] = ACTIONS(3368), - [anon_sym_u8_SQUOTE] = ACTIONS(3368), - [anon_sym_SQUOTE] = ACTIONS(3368), - [anon_sym_L_DQUOTE] = ACTIONS(3368), - [anon_sym_u_DQUOTE] = ACTIONS(3368), - [anon_sym_U_DQUOTE] = ACTIONS(3368), - [anon_sym_u8_DQUOTE] = ACTIONS(3368), - [anon_sym_DQUOTE] = ACTIONS(3368), - [sym_true] = ACTIONS(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3366), - [anon_sym_nullptr] = ACTIONS(3366), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3366), - [anon_sym_decltype] = ACTIONS(3366), - [anon_sym_virtual] = ACTIONS(3366), - [anon_sym_alignas] = ACTIONS(3366), - [anon_sym_explicit] = ACTIONS(3366), - [anon_sym_typename] = ACTIONS(3366), - [anon_sym_template] = ACTIONS(3366), - [anon_sym_operator] = ACTIONS(3366), - [anon_sym_try] = ACTIONS(3366), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_GT2] = ACTIONS(3364), [anon_sym_delete] = ACTIONS(3366), - [anon_sym_throw] = ACTIONS(3366), - [anon_sym_namespace] = ACTIONS(3366), - [anon_sym_using] = ACTIONS(3366), - [anon_sym_static_assert] = ACTIONS(3366), - [anon_sym_concept] = ACTIONS(3366), - [anon_sym_co_return] = ACTIONS(3366), - [anon_sym_co_yield] = ACTIONS(3366), [anon_sym_R_DQUOTE] = ACTIONS(3368), [anon_sym_LR_DQUOTE] = ACTIONS(3368), [anon_sym_uR_DQUOTE] = ACTIONS(3368), [anon_sym_UR_DQUOTE] = ACTIONS(3368), [anon_sym_u8R_DQUOTE] = ACTIONS(3368), - [anon_sym_co_await] = ACTIONS(3366), - [anon_sym_new] = ACTIONS(3366), - [anon_sym_requires] = ACTIONS(3366), - [sym_this] = ACTIONS(3366), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3368), - [sym_semgrep_named_ellipsis] = ACTIONS(3368), - }, - [360] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5533), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8495), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(9016), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3370), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), - }, - [361] = { - [sym_identifier] = ACTIONS(3372), - [aux_sym_preproc_include_token1] = ACTIONS(3372), - [aux_sym_preproc_def_token1] = ACTIONS(3372), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3374), - [aux_sym_preproc_if_token1] = ACTIONS(3372), - [aux_sym_preproc_if_token2] = ACTIONS(3372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3372), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3372), - [aux_sym_preproc_else_token1] = ACTIONS(3372), - [aux_sym_preproc_elif_token1] = ACTIONS(3372), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3372), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3372), - [sym_preproc_directive] = ACTIONS(3372), - [anon_sym_LPAREN2] = ACTIONS(3374), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(3374), - [anon_sym_DASH] = ACTIONS(3372), - [anon_sym_PLUS] = ACTIONS(3372), - [anon_sym_STAR] = ACTIONS(3374), - [anon_sym_AMP_AMP] = ACTIONS(3374), - [anon_sym_AMP] = ACTIONS(3372), - [anon_sym_SEMI] = ACTIONS(3374), - [anon_sym___extension__] = ACTIONS(3372), - [anon_sym_typedef] = ACTIONS(3372), - [anon_sym_extern] = ACTIONS(3372), - [anon_sym___attribute__] = ACTIONS(3372), - [anon_sym_COLON_COLON] = ACTIONS(3374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3374), - [anon_sym___declspec] = ACTIONS(3372), - [anon_sym___based] = ACTIONS(3372), - [anon_sym___cdecl] = ACTIONS(3372), - [anon_sym___clrcall] = ACTIONS(3372), - [anon_sym___stdcall] = ACTIONS(3372), - [anon_sym___fastcall] = ACTIONS(3372), - [anon_sym___thiscall] = ACTIONS(3372), - [anon_sym___vectorcall] = ACTIONS(3372), - [anon_sym_LBRACE] = ACTIONS(3374), - [anon_sym_signed] = ACTIONS(3372), - [anon_sym_unsigned] = ACTIONS(3372), - [anon_sym_long] = ACTIONS(3372), - [anon_sym_short] = ACTIONS(3372), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_static] = ACTIONS(3372), - [anon_sym_register] = ACTIONS(3372), - [anon_sym_inline] = ACTIONS(3372), - [anon_sym___inline] = ACTIONS(3372), - [anon_sym___inline__] = ACTIONS(3372), - [anon_sym___forceinline] = ACTIONS(3372), - [anon_sym_thread_local] = ACTIONS(3372), - [anon_sym___thread] = ACTIONS(3372), - [anon_sym_const] = ACTIONS(3372), - [anon_sym_constexpr] = ACTIONS(3372), - [anon_sym_volatile] = ACTIONS(3372), - [anon_sym_restrict] = ACTIONS(3372), - [anon_sym___restrict__] = ACTIONS(3372), - [anon_sym__Atomic] = ACTIONS(3372), - [anon_sym__Noreturn] = ACTIONS(3372), - [anon_sym_noreturn] = ACTIONS(3372), - [anon_sym_mutable] = ACTIONS(3372), - [anon_sym_constinit] = ACTIONS(3372), - [anon_sym_consteval] = ACTIONS(3372), - [sym_primitive_type] = ACTIONS(3372), - [anon_sym_enum] = ACTIONS(3372), - [anon_sym_class] = ACTIONS(3372), - [anon_sym_struct] = ACTIONS(3372), - [anon_sym_union] = ACTIONS(3372), - [anon_sym_if] = ACTIONS(3372), - [anon_sym_switch] = ACTIONS(3372), - [anon_sym_case] = ACTIONS(3372), - [anon_sym_default] = ACTIONS(3372), - [anon_sym_while] = ACTIONS(3372), - [anon_sym_do] = ACTIONS(3372), - [anon_sym_for] = ACTIONS(3372), - [anon_sym_return] = ACTIONS(3372), - [anon_sym_break] = ACTIONS(3372), - [anon_sym_continue] = ACTIONS(3372), - [anon_sym_goto] = ACTIONS(3372), - [anon_sym___try] = ACTIONS(3372), - [anon_sym___leave] = ACTIONS(3372), - [anon_sym_not] = ACTIONS(3372), - [anon_sym_compl] = ACTIONS(3372), - [anon_sym_DASH_DASH] = ACTIONS(3374), - [anon_sym_PLUS_PLUS] = ACTIONS(3374), - [anon_sym_sizeof] = ACTIONS(3372), - [anon_sym___alignof__] = ACTIONS(3372), - [anon_sym___alignof] = ACTIONS(3372), - [anon_sym__alignof] = ACTIONS(3372), - [anon_sym_alignof] = ACTIONS(3372), - [anon_sym__Alignof] = ACTIONS(3372), - [anon_sym_offsetof] = ACTIONS(3372), - [anon_sym__Generic] = ACTIONS(3372), - [anon_sym_asm] = ACTIONS(3372), - [anon_sym___asm__] = ACTIONS(3372), - [sym_number_literal] = ACTIONS(3374), - [anon_sym_L_SQUOTE] = ACTIONS(3374), - [anon_sym_u_SQUOTE] = ACTIONS(3374), - [anon_sym_U_SQUOTE] = ACTIONS(3374), - [anon_sym_u8_SQUOTE] = ACTIONS(3374), - [anon_sym_SQUOTE] = ACTIONS(3374), - [anon_sym_L_DQUOTE] = ACTIONS(3374), - [anon_sym_u_DQUOTE] = ACTIONS(3374), - [anon_sym_U_DQUOTE] = ACTIONS(3374), - [anon_sym_u8_DQUOTE] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(3374), - [sym_true] = ACTIONS(3372), - [sym_false] = ACTIONS(3372), - [anon_sym_NULL] = ACTIONS(3372), - [anon_sym_nullptr] = ACTIONS(3372), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3372), - [anon_sym_decltype] = ACTIONS(3372), - [anon_sym_virtual] = ACTIONS(3372), - [anon_sym_alignas] = ACTIONS(3372), - [anon_sym_explicit] = ACTIONS(3372), - [anon_sym_typename] = ACTIONS(3372), - [anon_sym_template] = ACTIONS(3372), - [anon_sym_operator] = ACTIONS(3372), - [anon_sym_try] = ACTIONS(3372), - [anon_sym_delete] = ACTIONS(3372), - [anon_sym_throw] = ACTIONS(3372), - [anon_sym_namespace] = ACTIONS(3372), - [anon_sym_using] = ACTIONS(3372), - [anon_sym_static_assert] = ACTIONS(3372), - [anon_sym_concept] = ACTIONS(3372), - [anon_sym_co_return] = ACTIONS(3372), - [anon_sym_co_yield] = ACTIONS(3372), - [anon_sym_R_DQUOTE] = ACTIONS(3374), - [anon_sym_LR_DQUOTE] = ACTIONS(3374), - [anon_sym_uR_DQUOTE] = ACTIONS(3374), - [anon_sym_UR_DQUOTE] = ACTIONS(3374), - [anon_sym_u8R_DQUOTE] = ACTIONS(3374), - [anon_sym_co_await] = ACTIONS(3372), + [anon_sym_co_await] = ACTIONS(3370), [anon_sym_new] = ACTIONS(3372), - [anon_sym_requires] = ACTIONS(3372), - [sym_this] = ACTIONS(3372), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3374), - [sym_semgrep_named_ellipsis] = ACTIONS(3374), - }, - [362] = { - [sym_identifier] = ACTIONS(3376), - [aux_sym_preproc_include_token1] = ACTIONS(3376), - [aux_sym_preproc_def_token1] = ACTIONS(3376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3378), - [aux_sym_preproc_if_token1] = ACTIONS(3376), - [aux_sym_preproc_if_token2] = ACTIONS(3376), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3376), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3376), - [aux_sym_preproc_else_token1] = ACTIONS(3376), - [aux_sym_preproc_elif_token1] = ACTIONS(3376), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3376), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3376), - [sym_preproc_directive] = ACTIONS(3376), - [anon_sym_LPAREN2] = ACTIONS(3378), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(3378), - [anon_sym_DASH] = ACTIONS(3376), - [anon_sym_PLUS] = ACTIONS(3376), - [anon_sym_STAR] = ACTIONS(3378), - [anon_sym_AMP_AMP] = ACTIONS(3378), - [anon_sym_AMP] = ACTIONS(3376), - [anon_sym_SEMI] = ACTIONS(3378), - [anon_sym___extension__] = ACTIONS(3376), - [anon_sym_typedef] = ACTIONS(3376), - [anon_sym_extern] = ACTIONS(3376), - [anon_sym___attribute__] = ACTIONS(3376), - [anon_sym_COLON_COLON] = ACTIONS(3378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3378), - [anon_sym___declspec] = ACTIONS(3376), - [anon_sym___based] = ACTIONS(3376), - [anon_sym___cdecl] = ACTIONS(3376), - [anon_sym___clrcall] = ACTIONS(3376), - [anon_sym___stdcall] = ACTIONS(3376), - [anon_sym___fastcall] = ACTIONS(3376), - [anon_sym___thiscall] = ACTIONS(3376), - [anon_sym___vectorcall] = ACTIONS(3376), - [anon_sym_LBRACE] = ACTIONS(3378), - [anon_sym_signed] = ACTIONS(3376), - [anon_sym_unsigned] = ACTIONS(3376), - [anon_sym_long] = ACTIONS(3376), - [anon_sym_short] = ACTIONS(3376), - [anon_sym_LBRACK] = ACTIONS(3376), - [anon_sym_static] = ACTIONS(3376), - [anon_sym_register] = ACTIONS(3376), - [anon_sym_inline] = ACTIONS(3376), - [anon_sym___inline] = ACTIONS(3376), - [anon_sym___inline__] = ACTIONS(3376), - [anon_sym___forceinline] = ACTIONS(3376), - [anon_sym_thread_local] = ACTIONS(3376), - [anon_sym___thread] = ACTIONS(3376), - [anon_sym_const] = ACTIONS(3376), - [anon_sym_constexpr] = ACTIONS(3376), - [anon_sym_volatile] = ACTIONS(3376), - [anon_sym_restrict] = ACTIONS(3376), - [anon_sym___restrict__] = ACTIONS(3376), - [anon_sym__Atomic] = ACTIONS(3376), - [anon_sym__Noreturn] = ACTIONS(3376), - [anon_sym_noreturn] = ACTIONS(3376), - [anon_sym_mutable] = ACTIONS(3376), - [anon_sym_constinit] = ACTIONS(3376), - [anon_sym_consteval] = ACTIONS(3376), - [sym_primitive_type] = ACTIONS(3376), - [anon_sym_enum] = ACTIONS(3376), - [anon_sym_class] = ACTIONS(3376), - [anon_sym_struct] = ACTIONS(3376), - [anon_sym_union] = ACTIONS(3376), - [anon_sym_if] = ACTIONS(3376), - [anon_sym_switch] = ACTIONS(3376), - [anon_sym_case] = ACTIONS(3376), - [anon_sym_default] = ACTIONS(3376), - [anon_sym_while] = ACTIONS(3376), - [anon_sym_do] = ACTIONS(3376), - [anon_sym_for] = ACTIONS(3376), - [anon_sym_return] = ACTIONS(3376), - [anon_sym_break] = ACTIONS(3376), - [anon_sym_continue] = ACTIONS(3376), - [anon_sym_goto] = ACTIONS(3376), - [anon_sym___try] = ACTIONS(3376), - [anon_sym___leave] = ACTIONS(3376), - [anon_sym_not] = ACTIONS(3376), - [anon_sym_compl] = ACTIONS(3376), - [anon_sym_DASH_DASH] = ACTIONS(3378), - [anon_sym_PLUS_PLUS] = ACTIONS(3378), - [anon_sym_sizeof] = ACTIONS(3376), - [anon_sym___alignof__] = ACTIONS(3376), - [anon_sym___alignof] = ACTIONS(3376), - [anon_sym__alignof] = ACTIONS(3376), - [anon_sym_alignof] = ACTIONS(3376), - [anon_sym__Alignof] = ACTIONS(3376), - [anon_sym_offsetof] = ACTIONS(3376), - [anon_sym__Generic] = ACTIONS(3376), - [anon_sym_asm] = ACTIONS(3376), - [anon_sym___asm__] = ACTIONS(3376), - [sym_number_literal] = ACTIONS(3378), - [anon_sym_L_SQUOTE] = ACTIONS(3378), - [anon_sym_u_SQUOTE] = ACTIONS(3378), - [anon_sym_U_SQUOTE] = ACTIONS(3378), - [anon_sym_u8_SQUOTE] = ACTIONS(3378), - [anon_sym_SQUOTE] = ACTIONS(3378), - [anon_sym_L_DQUOTE] = ACTIONS(3378), - [anon_sym_u_DQUOTE] = ACTIONS(3378), - [anon_sym_U_DQUOTE] = ACTIONS(3378), - [anon_sym_u8_DQUOTE] = ACTIONS(3378), - [anon_sym_DQUOTE] = ACTIONS(3378), - [sym_true] = ACTIONS(3376), - [sym_false] = ACTIONS(3376), - [anon_sym_NULL] = ACTIONS(3376), - [anon_sym_nullptr] = ACTIONS(3376), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3376), - [anon_sym_decltype] = ACTIONS(3376), - [anon_sym_virtual] = ACTIONS(3376), - [anon_sym_alignas] = ACTIONS(3376), - [anon_sym_explicit] = ACTIONS(3376), - [anon_sym_typename] = ACTIONS(3376), - [anon_sym_template] = ACTIONS(3376), - [anon_sym_operator] = ACTIONS(3376), - [anon_sym_try] = ACTIONS(3376), - [anon_sym_delete] = ACTIONS(3376), - [anon_sym_throw] = ACTIONS(3376), - [anon_sym_namespace] = ACTIONS(3376), - [anon_sym_using] = ACTIONS(3376), - [anon_sym_static_assert] = ACTIONS(3376), - [anon_sym_concept] = ACTIONS(3376), - [anon_sym_co_return] = ACTIONS(3376), - [anon_sym_co_yield] = ACTIONS(3376), - [anon_sym_R_DQUOTE] = ACTIONS(3378), - [anon_sym_LR_DQUOTE] = ACTIONS(3378), - [anon_sym_uR_DQUOTE] = ACTIONS(3378), - [anon_sym_UR_DQUOTE] = ACTIONS(3378), - [anon_sym_u8R_DQUOTE] = ACTIONS(3378), - [anon_sym_co_await] = ACTIONS(3376), - [anon_sym_new] = ACTIONS(3376), - [anon_sym_requires] = ACTIONS(3376), - [sym_this] = ACTIONS(3376), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3378), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), [sym_semgrep_named_ellipsis] = ACTIONS(3378), }, - [363] = { + [356] = { [sym_identifier] = ACTIONS(3380), [aux_sym_preproc_include_token1] = ACTIONS(3380), [aux_sym_preproc_def_token1] = ACTIONS(3380), @@ -115845,7 +105047,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3382), [sym_semgrep_named_ellipsis] = ACTIONS(3382), }, - [364] = { + [357] = { [sym_identifier] = ACTIONS(3384), [aux_sym_preproc_include_token1] = ACTIONS(3384), [aux_sym_preproc_def_token1] = ACTIONS(3384), @@ -115984,146 +105186,424 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3386), [sym_semgrep_named_ellipsis] = ACTIONS(3386), }, - [365] = { - [sym_identifier] = ACTIONS(3388), - [aux_sym_preproc_include_token1] = ACTIONS(3388), - [aux_sym_preproc_def_token1] = ACTIONS(3388), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3390), - [aux_sym_preproc_if_token1] = ACTIONS(3388), + [358] = { + [sym_preproc_def] = STATE(1935), + [sym_preproc_function_def] = STATE(1935), + [sym_preproc_call] = STATE(1935), + [sym_preproc_if_in_field_declaration_list] = STATE(1935), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1935), + [sym_preproc_else_in_field_declaration_list] = STATE(9531), + [sym_preproc_elif_in_field_declaration_list] = STATE(9531), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(9531), + [sym_type_definition] = STATE(1935), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6440), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7286), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(363), + [sym_field_declaration] = STATE(1935), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(1935), + [sym_operator_cast] = STATE(7765), + [sym_inline_method_definition] = STATE(1935), + [sym_constructor_specifiers] = STATE(1957), + [sym_operator_cast_definition] = STATE(1935), + [sym_operator_cast_declaration] = STATE(1935), + [sym_constructor_or_destructor_definition] = STATE(1935), + [sym_constructor_or_destructor_declaration] = STATE(1935), + [sym_friend_declaration] = STATE(1935), + [sym_access_specifier] = STATE(9998), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(1935), + [sym_alias_declaration] = STATE(1935), + [sym_static_assert_declaration] = STATE(1935), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7765), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(1935), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(363), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1957), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(3229), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3231), + [aux_sym_preproc_if_token1] = ACTIONS(3233), [aux_sym_preproc_if_token2] = ACTIONS(3388), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3388), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3388), - [aux_sym_preproc_else_token1] = ACTIONS(3388), - [aux_sym_preproc_elif_token1] = ACTIONS(3388), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3388), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3388), - [sym_preproc_directive] = ACTIONS(3388), - [anon_sym_LPAREN2] = ACTIONS(3390), - [anon_sym_BANG] = ACTIONS(3390), - [anon_sym_TILDE] = ACTIONS(3390), - [anon_sym_DASH] = ACTIONS(3388), - [anon_sym_PLUS] = ACTIONS(3388), - [anon_sym_STAR] = ACTIONS(3390), - [anon_sym_AMP_AMP] = ACTIONS(3390), - [anon_sym_AMP] = ACTIONS(3388), - [anon_sym_SEMI] = ACTIONS(3390), - [anon_sym___extension__] = ACTIONS(3388), - [anon_sym_typedef] = ACTIONS(3388), - [anon_sym_extern] = ACTIONS(3388), - [anon_sym___attribute__] = ACTIONS(3388), - [anon_sym_COLON_COLON] = ACTIONS(3390), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3390), - [anon_sym___declspec] = ACTIONS(3388), - [anon_sym___based] = ACTIONS(3388), - [anon_sym___cdecl] = ACTIONS(3388), - [anon_sym___clrcall] = ACTIONS(3388), - [anon_sym___stdcall] = ACTIONS(3388), - [anon_sym___fastcall] = ACTIONS(3388), - [anon_sym___thiscall] = ACTIONS(3388), - [anon_sym___vectorcall] = ACTIONS(3388), - [anon_sym_LBRACE] = ACTIONS(3390), - [anon_sym_signed] = ACTIONS(3388), - [anon_sym_unsigned] = ACTIONS(3388), - [anon_sym_long] = ACTIONS(3388), - [anon_sym_short] = ACTIONS(3388), - [anon_sym_LBRACK] = ACTIONS(3388), - [anon_sym_static] = ACTIONS(3388), - [anon_sym_register] = ACTIONS(3388), - [anon_sym_inline] = ACTIONS(3388), - [anon_sym___inline] = ACTIONS(3388), - [anon_sym___inline__] = ACTIONS(3388), - [anon_sym___forceinline] = ACTIONS(3388), - [anon_sym_thread_local] = ACTIONS(3388), - [anon_sym___thread] = ACTIONS(3388), - [anon_sym_const] = ACTIONS(3388), - [anon_sym_constexpr] = ACTIONS(3388), - [anon_sym_volatile] = ACTIONS(3388), - [anon_sym_restrict] = ACTIONS(3388), - [anon_sym___restrict__] = ACTIONS(3388), - [anon_sym__Atomic] = ACTIONS(3388), - [anon_sym__Noreturn] = ACTIONS(3388), - [anon_sym_noreturn] = ACTIONS(3388), - [anon_sym_mutable] = ACTIONS(3388), - [anon_sym_constinit] = ACTIONS(3388), - [anon_sym_consteval] = ACTIONS(3388), - [sym_primitive_type] = ACTIONS(3388), - [anon_sym_enum] = ACTIONS(3388), - [anon_sym_class] = ACTIONS(3388), - [anon_sym_struct] = ACTIONS(3388), - [anon_sym_union] = ACTIONS(3388), - [anon_sym_if] = ACTIONS(3388), - [anon_sym_switch] = ACTIONS(3388), - [anon_sym_case] = ACTIONS(3388), - [anon_sym_default] = ACTIONS(3388), - [anon_sym_while] = ACTIONS(3388), - [anon_sym_do] = ACTIONS(3388), - [anon_sym_for] = ACTIONS(3388), - [anon_sym_return] = ACTIONS(3388), - [anon_sym_break] = ACTIONS(3388), - [anon_sym_continue] = ACTIONS(3388), - [anon_sym_goto] = ACTIONS(3388), - [anon_sym___try] = ACTIONS(3388), - [anon_sym___leave] = ACTIONS(3388), - [anon_sym_not] = ACTIONS(3388), - [anon_sym_compl] = ACTIONS(3388), - [anon_sym_DASH_DASH] = ACTIONS(3390), - [anon_sym_PLUS_PLUS] = ACTIONS(3390), - [anon_sym_sizeof] = ACTIONS(3388), - [anon_sym___alignof__] = ACTIONS(3388), - [anon_sym___alignof] = ACTIONS(3388), - [anon_sym__alignof] = ACTIONS(3388), - [anon_sym_alignof] = ACTIONS(3388), - [anon_sym__Alignof] = ACTIONS(3388), - [anon_sym_offsetof] = ACTIONS(3388), - [anon_sym__Generic] = ACTIONS(3388), - [anon_sym_asm] = ACTIONS(3388), - [anon_sym___asm__] = ACTIONS(3388), - [sym_number_literal] = ACTIONS(3390), - [anon_sym_L_SQUOTE] = ACTIONS(3390), - [anon_sym_u_SQUOTE] = ACTIONS(3390), - [anon_sym_U_SQUOTE] = ACTIONS(3390), - [anon_sym_u8_SQUOTE] = ACTIONS(3390), - [anon_sym_SQUOTE] = ACTIONS(3390), - [anon_sym_L_DQUOTE] = ACTIONS(3390), - [anon_sym_u_DQUOTE] = ACTIONS(3390), - [anon_sym_U_DQUOTE] = ACTIONS(3390), - [anon_sym_u8_DQUOTE] = ACTIONS(3390), - [anon_sym_DQUOTE] = ACTIONS(3390), - [sym_true] = ACTIONS(3388), - [sym_false] = ACTIONS(3388), - [anon_sym_NULL] = ACTIONS(3388), - [anon_sym_nullptr] = ACTIONS(3388), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3388), - [anon_sym_decltype] = ACTIONS(3388), - [anon_sym_virtual] = ACTIONS(3388), - [anon_sym_alignas] = ACTIONS(3388), - [anon_sym_explicit] = ACTIONS(3388), - [anon_sym_typename] = ACTIONS(3388), - [anon_sym_template] = ACTIONS(3388), - [anon_sym_operator] = ACTIONS(3388), - [anon_sym_try] = ACTIONS(3388), - [anon_sym_delete] = ACTIONS(3388), - [anon_sym_throw] = ACTIONS(3388), - [anon_sym_namespace] = ACTIONS(3388), - [anon_sym_using] = ACTIONS(3388), - [anon_sym_static_assert] = ACTIONS(3388), - [anon_sym_concept] = ACTIONS(3388), - [anon_sym_co_return] = ACTIONS(3388), - [anon_sym_co_yield] = ACTIONS(3388), - [anon_sym_R_DQUOTE] = ACTIONS(3390), - [anon_sym_LR_DQUOTE] = ACTIONS(3390), - [anon_sym_uR_DQUOTE] = ACTIONS(3390), - [anon_sym_UR_DQUOTE] = ACTIONS(3390), - [anon_sym_u8R_DQUOTE] = ACTIONS(3390), - [anon_sym_co_await] = ACTIONS(3388), - [anon_sym_new] = ACTIONS(3388), - [anon_sym_requires] = ACTIONS(3388), - [sym_this] = ACTIONS(3388), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3390), - [sym_semgrep_named_ellipsis] = ACTIONS(3390), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3239), + [aux_sym_preproc_else_token1] = ACTIONS(3241), + [aux_sym_preproc_elif_token1] = ACTIONS(3243), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3245), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3247), + [sym_preproc_directive] = ACTIONS(3249), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(3259), + [anon_sym_typedef] = ACTIONS(3261), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(3279), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(3281), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3285), + [anon_sym_static_assert] = ACTIONS(3287), + [sym_semgrep_metavar] = ACTIONS(3289), }, - [366] = { + [359] = { + [sym_type_qualifier] = STATE(4685), + [sym_type_specifier] = STATE(5782), + [sym_sized_type_specifier] = STATE(3293), + [sym_enum_specifier] = STATE(3293), + [sym_struct_specifier] = STATE(3293), + [sym_union_specifier] = STATE(3293), + [sym_expression] = STATE(5059), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_type_descriptor] = STATE(8011), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_placeholder_type_specifier] = STATE(3293), + [sym_decltype_auto] = STATE(3292), + [sym_decltype] = STATE(2572), + [sym_class_specifier] = STATE(3293), + [sym_class_name] = STATE(8965), + [sym_dependent_type] = STATE(3293), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_type_parameter_pack_expansion] = STATE(8237), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6620), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(6338), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [aux_sym_type_definition_type_repeat1] = STATE(4685), + [aux_sym_sized_type_specifier_repeat1] = STATE(2573), + [sym_identifier] = ACTIONS(3310), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_signed] = ACTIONS(3324), + [anon_sym_unsigned] = ACTIONS(3324), + [anon_sym_long] = ACTIONS(3324), + [anon_sym_short] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3330), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_union] = ACTIONS(3334), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3358), + [anon_sym_decltype] = ACTIONS(3360), + [anon_sym_typename] = ACTIONS(3362), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_GT2] = ACTIONS(3390), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), + }, + [360] = { + [sym_identifier] = ACTIONS(3060), + [aux_sym_preproc_include_token1] = ACTIONS(3060), + [aux_sym_preproc_def_token1] = ACTIONS(3060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3062), + [aux_sym_preproc_if_token1] = ACTIONS(3060), + [aux_sym_preproc_if_token2] = ACTIONS(3060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3060), + [aux_sym_preproc_else_token1] = ACTIONS(3060), + [aux_sym_preproc_elif_token1] = ACTIONS(3060), + [sym_preproc_directive] = ACTIONS(3060), + [anon_sym_LPAREN2] = ACTIONS(3062), + [anon_sym_BANG] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(3062), + [anon_sym_AMP_AMP] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3062), + [anon_sym___extension__] = ACTIONS(3060), + [anon_sym_typedef] = ACTIONS(3060), + [anon_sym_extern] = ACTIONS(3060), + [anon_sym___attribute__] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3062), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3062), + [anon_sym___declspec] = ACTIONS(3060), + [anon_sym___based] = ACTIONS(3060), + [anon_sym___cdecl] = ACTIONS(3060), + [anon_sym___clrcall] = ACTIONS(3060), + [anon_sym___stdcall] = ACTIONS(3060), + [anon_sym___fastcall] = ACTIONS(3060), + [anon_sym___thiscall] = ACTIONS(3060), + [anon_sym___vectorcall] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_signed] = ACTIONS(3060), + [anon_sym_unsigned] = ACTIONS(3060), + [anon_sym_long] = ACTIONS(3060), + [anon_sym_short] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_register] = ACTIONS(3060), + [anon_sym_inline] = ACTIONS(3060), + [anon_sym___inline] = ACTIONS(3060), + [anon_sym___inline__] = ACTIONS(3060), + [anon_sym___forceinline] = ACTIONS(3060), + [anon_sym_thread_local] = ACTIONS(3060), + [anon_sym___thread] = ACTIONS(3060), + [anon_sym_const] = ACTIONS(3060), + [anon_sym_constexpr] = ACTIONS(3060), + [anon_sym_volatile] = ACTIONS(3060), + [anon_sym_restrict] = ACTIONS(3060), + [anon_sym___restrict__] = ACTIONS(3060), + [anon_sym__Atomic] = ACTIONS(3060), + [anon_sym__Noreturn] = ACTIONS(3060), + [anon_sym_noreturn] = ACTIONS(3060), + [anon_sym_mutable] = ACTIONS(3060), + [anon_sym_constinit] = ACTIONS(3060), + [anon_sym_consteval] = ACTIONS(3060), + [sym_primitive_type] = ACTIONS(3060), + [anon_sym_enum] = ACTIONS(3060), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3060), + [anon_sym_union] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_else] = ACTIONS(3060), + [anon_sym_switch] = ACTIONS(3060), + [anon_sym_case] = ACTIONS(3060), + [anon_sym_default] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_goto] = ACTIONS(3060), + [anon_sym___try] = ACTIONS(3060), + [anon_sym___leave] = ACTIONS(3060), + [anon_sym_not] = ACTIONS(3060), + [anon_sym_compl] = ACTIONS(3060), + [anon_sym_DASH_DASH] = ACTIONS(3062), + [anon_sym_PLUS_PLUS] = ACTIONS(3062), + [anon_sym_sizeof] = ACTIONS(3060), + [anon_sym___alignof__] = ACTIONS(3060), + [anon_sym___alignof] = ACTIONS(3060), + [anon_sym__alignof] = ACTIONS(3060), + [anon_sym_alignof] = ACTIONS(3060), + [anon_sym__Alignof] = ACTIONS(3060), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3060), + [anon_sym_asm] = ACTIONS(3060), + [anon_sym___asm__] = ACTIONS(3060), + [sym_number_literal] = ACTIONS(3062), + [anon_sym_L_SQUOTE] = ACTIONS(3062), + [anon_sym_u_SQUOTE] = ACTIONS(3062), + [anon_sym_U_SQUOTE] = ACTIONS(3062), + [anon_sym_u8_SQUOTE] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3062), + [anon_sym_L_DQUOTE] = ACTIONS(3062), + [anon_sym_u_DQUOTE] = ACTIONS(3062), + [anon_sym_U_DQUOTE] = ACTIONS(3062), + [anon_sym_u8_DQUOTE] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3060), + [anon_sym_nullptr] = ACTIONS(3060), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3060), + [anon_sym_decltype] = ACTIONS(3060), + [anon_sym_virtual] = ACTIONS(3060), + [anon_sym_alignas] = ACTIONS(3060), + [anon_sym_explicit] = ACTIONS(3060), + [anon_sym_typename] = ACTIONS(3060), + [anon_sym_template] = ACTIONS(3060), + [anon_sym_operator] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3060), + [anon_sym_throw] = ACTIONS(3060), + [anon_sym_namespace] = ACTIONS(3060), + [anon_sym_using] = ACTIONS(3060), + [anon_sym_static_assert] = ACTIONS(3060), + [anon_sym_concept] = ACTIONS(3060), + [anon_sym_co_return] = ACTIONS(3060), + [anon_sym_co_yield] = ACTIONS(3060), + [anon_sym_catch] = ACTIONS(3060), + [anon_sym_R_DQUOTE] = ACTIONS(3062), + [anon_sym_LR_DQUOTE] = ACTIONS(3062), + [anon_sym_uR_DQUOTE] = ACTIONS(3062), + [anon_sym_UR_DQUOTE] = ACTIONS(3062), + [anon_sym_u8R_DQUOTE] = ACTIONS(3062), + [anon_sym_co_await] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_requires] = ACTIONS(3060), + [sym_this] = ACTIONS(3060), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3062), + [sym_semgrep_named_ellipsis] = ACTIONS(3062), + }, + [361] = { [sym_identifier] = ACTIONS(3392), [aux_sym_preproc_include_token1] = ACTIONS(3392), [aux_sym_preproc_def_token1] = ACTIONS(3392), @@ -116262,7 +105742,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3394), [sym_semgrep_named_ellipsis] = ACTIONS(3394), }, - [367] = { + [362] = { [sym_identifier] = ACTIONS(3396), [aux_sym_preproc_include_token1] = ACTIONS(3396), [aux_sym_preproc_def_token1] = ACTIONS(3396), @@ -116401,2090 +105881,2785 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3398), [sym_semgrep_named_ellipsis] = ACTIONS(3398), }, - [368] = { - [sym_identifier] = ACTIONS(3400), - [aux_sym_preproc_include_token1] = ACTIONS(3400), - [aux_sym_preproc_def_token1] = ACTIONS(3400), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3402), - [aux_sym_preproc_if_token1] = ACTIONS(3400), + [363] = { + [sym_preproc_def] = STATE(1935), + [sym_preproc_function_def] = STATE(1935), + [sym_preproc_call] = STATE(1935), + [sym_preproc_if_in_field_declaration_list] = STATE(1935), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1935), + [sym_preproc_else_in_field_declaration_list] = STATE(9885), + [sym_preproc_elif_in_field_declaration_list] = STATE(9885), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(9885), + [sym_type_definition] = STATE(1935), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6440), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7286), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(584), + [sym_field_declaration] = STATE(1935), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(1935), + [sym_operator_cast] = STATE(7765), + [sym_inline_method_definition] = STATE(1935), + [sym_constructor_specifiers] = STATE(1957), + [sym_operator_cast_definition] = STATE(1935), + [sym_operator_cast_declaration] = STATE(1935), + [sym_constructor_or_destructor_definition] = STATE(1935), + [sym_constructor_or_destructor_declaration] = STATE(1935), + [sym_friend_declaration] = STATE(1935), + [sym_access_specifier] = STATE(9998), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(1935), + [sym_alias_declaration] = STATE(1935), + [sym_static_assert_declaration] = STATE(1935), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7765), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(1935), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(584), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1957), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(3229), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3231), + [aux_sym_preproc_if_token1] = ACTIONS(3233), [aux_sym_preproc_if_token2] = ACTIONS(3400), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3400), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3400), - [aux_sym_preproc_else_token1] = ACTIONS(3400), - [aux_sym_preproc_elif_token1] = ACTIONS(3400), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3400), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3400), - [sym_preproc_directive] = ACTIONS(3400), - [anon_sym_LPAREN2] = ACTIONS(3402), - [anon_sym_BANG] = ACTIONS(3402), - [anon_sym_TILDE] = ACTIONS(3402), - [anon_sym_DASH] = ACTIONS(3400), - [anon_sym_PLUS] = ACTIONS(3400), - [anon_sym_STAR] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_AMP] = ACTIONS(3400), - [anon_sym_SEMI] = ACTIONS(3402), - [anon_sym___extension__] = ACTIONS(3400), - [anon_sym_typedef] = ACTIONS(3400), - [anon_sym_extern] = ACTIONS(3400), - [anon_sym___attribute__] = ACTIONS(3400), - [anon_sym_COLON_COLON] = ACTIONS(3402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3402), - [anon_sym___declspec] = ACTIONS(3400), - [anon_sym___based] = ACTIONS(3400), - [anon_sym___cdecl] = ACTIONS(3400), - [anon_sym___clrcall] = ACTIONS(3400), - [anon_sym___stdcall] = ACTIONS(3400), - [anon_sym___fastcall] = ACTIONS(3400), - [anon_sym___thiscall] = ACTIONS(3400), - [anon_sym___vectorcall] = ACTIONS(3400), - [anon_sym_LBRACE] = ACTIONS(3402), - [anon_sym_signed] = ACTIONS(3400), - [anon_sym_unsigned] = ACTIONS(3400), - [anon_sym_long] = ACTIONS(3400), - [anon_sym_short] = ACTIONS(3400), - [anon_sym_LBRACK] = ACTIONS(3400), - [anon_sym_static] = ACTIONS(3400), - [anon_sym_register] = ACTIONS(3400), - [anon_sym_inline] = ACTIONS(3400), - [anon_sym___inline] = ACTIONS(3400), - [anon_sym___inline__] = ACTIONS(3400), - [anon_sym___forceinline] = ACTIONS(3400), - [anon_sym_thread_local] = ACTIONS(3400), - [anon_sym___thread] = ACTIONS(3400), - [anon_sym_const] = ACTIONS(3400), - [anon_sym_constexpr] = ACTIONS(3400), - [anon_sym_volatile] = ACTIONS(3400), - [anon_sym_restrict] = ACTIONS(3400), - [anon_sym___restrict__] = ACTIONS(3400), - [anon_sym__Atomic] = ACTIONS(3400), - [anon_sym__Noreturn] = ACTIONS(3400), - [anon_sym_noreturn] = ACTIONS(3400), - [anon_sym_mutable] = ACTIONS(3400), - [anon_sym_constinit] = ACTIONS(3400), - [anon_sym_consteval] = ACTIONS(3400), - [sym_primitive_type] = ACTIONS(3400), - [anon_sym_enum] = ACTIONS(3400), - [anon_sym_class] = ACTIONS(3400), - [anon_sym_struct] = ACTIONS(3400), - [anon_sym_union] = ACTIONS(3400), - [anon_sym_if] = ACTIONS(3400), - [anon_sym_switch] = ACTIONS(3400), - [anon_sym_case] = ACTIONS(3400), - [anon_sym_default] = ACTIONS(3400), - [anon_sym_while] = ACTIONS(3400), - [anon_sym_do] = ACTIONS(3400), - [anon_sym_for] = ACTIONS(3400), - [anon_sym_return] = ACTIONS(3400), - [anon_sym_break] = ACTIONS(3400), - [anon_sym_continue] = ACTIONS(3400), - [anon_sym_goto] = ACTIONS(3400), - [anon_sym___try] = ACTIONS(3400), - [anon_sym___leave] = ACTIONS(3400), - [anon_sym_not] = ACTIONS(3400), - [anon_sym_compl] = ACTIONS(3400), - [anon_sym_DASH_DASH] = ACTIONS(3402), - [anon_sym_PLUS_PLUS] = ACTIONS(3402), - [anon_sym_sizeof] = ACTIONS(3400), - [anon_sym___alignof__] = ACTIONS(3400), - [anon_sym___alignof] = ACTIONS(3400), - [anon_sym__alignof] = ACTIONS(3400), - [anon_sym_alignof] = ACTIONS(3400), - [anon_sym__Alignof] = ACTIONS(3400), - [anon_sym_offsetof] = ACTIONS(3400), - [anon_sym__Generic] = ACTIONS(3400), - [anon_sym_asm] = ACTIONS(3400), - [anon_sym___asm__] = ACTIONS(3400), - [sym_number_literal] = ACTIONS(3402), - [anon_sym_L_SQUOTE] = ACTIONS(3402), - [anon_sym_u_SQUOTE] = ACTIONS(3402), - [anon_sym_U_SQUOTE] = ACTIONS(3402), - [anon_sym_u8_SQUOTE] = ACTIONS(3402), - [anon_sym_SQUOTE] = ACTIONS(3402), - [anon_sym_L_DQUOTE] = ACTIONS(3402), - [anon_sym_u_DQUOTE] = ACTIONS(3402), - [anon_sym_U_DQUOTE] = ACTIONS(3402), - [anon_sym_u8_DQUOTE] = ACTIONS(3402), - [anon_sym_DQUOTE] = ACTIONS(3402), - [sym_true] = ACTIONS(3400), - [sym_false] = ACTIONS(3400), - [anon_sym_NULL] = ACTIONS(3400), - [anon_sym_nullptr] = ACTIONS(3400), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3400), - [anon_sym_decltype] = ACTIONS(3400), - [anon_sym_virtual] = ACTIONS(3400), - [anon_sym_alignas] = ACTIONS(3400), - [anon_sym_explicit] = ACTIONS(3400), - [anon_sym_typename] = ACTIONS(3400), - [anon_sym_template] = ACTIONS(3400), - [anon_sym_operator] = ACTIONS(3400), - [anon_sym_try] = ACTIONS(3400), - [anon_sym_delete] = ACTIONS(3400), - [anon_sym_throw] = ACTIONS(3400), - [anon_sym_namespace] = ACTIONS(3400), - [anon_sym_using] = ACTIONS(3400), - [anon_sym_static_assert] = ACTIONS(3400), - [anon_sym_concept] = ACTIONS(3400), - [anon_sym_co_return] = ACTIONS(3400), - [anon_sym_co_yield] = ACTIONS(3400), - [anon_sym_R_DQUOTE] = ACTIONS(3402), - [anon_sym_LR_DQUOTE] = ACTIONS(3402), - [anon_sym_uR_DQUOTE] = ACTIONS(3402), - [anon_sym_UR_DQUOTE] = ACTIONS(3402), - [anon_sym_u8R_DQUOTE] = ACTIONS(3402), - [anon_sym_co_await] = ACTIONS(3400), - [anon_sym_new] = ACTIONS(3400), - [anon_sym_requires] = ACTIONS(3400), - [sym_this] = ACTIONS(3400), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3402), - [sym_semgrep_named_ellipsis] = ACTIONS(3402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3239), + [aux_sym_preproc_else_token1] = ACTIONS(3241), + [aux_sym_preproc_elif_token1] = ACTIONS(3243), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3245), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3247), + [sym_preproc_directive] = ACTIONS(3249), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(3259), + [anon_sym_typedef] = ACTIONS(3261), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(3279), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(3281), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3285), + [anon_sym_static_assert] = ACTIONS(3287), + [sym_semgrep_metavar] = ACTIONS(3289), + }, + [364] = { + [sym_identifier] = ACTIONS(3402), + [aux_sym_preproc_include_token1] = ACTIONS(3402), + [aux_sym_preproc_def_token1] = ACTIONS(3402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3404), + [aux_sym_preproc_if_token1] = ACTIONS(3402), + [aux_sym_preproc_if_token2] = ACTIONS(3402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3402), + [aux_sym_preproc_else_token1] = ACTIONS(3402), + [aux_sym_preproc_elif_token1] = ACTIONS(3402), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3402), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3402), + [sym_preproc_directive] = ACTIONS(3402), + [anon_sym_LPAREN2] = ACTIONS(3404), + [anon_sym_BANG] = ACTIONS(3404), + [anon_sym_TILDE] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3402), + [anon_sym_PLUS] = ACTIONS(3402), + [anon_sym_STAR] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3402), + [anon_sym_SEMI] = ACTIONS(3404), + [anon_sym___extension__] = ACTIONS(3402), + [anon_sym_typedef] = ACTIONS(3402), + [anon_sym_extern] = ACTIONS(3402), + [anon_sym___attribute__] = ACTIONS(3402), + [anon_sym_COLON_COLON] = ACTIONS(3404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3404), + [anon_sym___declspec] = ACTIONS(3402), + [anon_sym___based] = ACTIONS(3402), + [anon_sym___cdecl] = ACTIONS(3402), + [anon_sym___clrcall] = ACTIONS(3402), + [anon_sym___stdcall] = ACTIONS(3402), + [anon_sym___fastcall] = ACTIONS(3402), + [anon_sym___thiscall] = ACTIONS(3402), + [anon_sym___vectorcall] = ACTIONS(3402), + [anon_sym_LBRACE] = ACTIONS(3404), + [anon_sym_signed] = ACTIONS(3402), + [anon_sym_unsigned] = ACTIONS(3402), + [anon_sym_long] = ACTIONS(3402), + [anon_sym_short] = ACTIONS(3402), + [anon_sym_LBRACK] = ACTIONS(3402), + [anon_sym_static] = ACTIONS(3402), + [anon_sym_register] = ACTIONS(3402), + [anon_sym_inline] = ACTIONS(3402), + [anon_sym___inline] = ACTIONS(3402), + [anon_sym___inline__] = ACTIONS(3402), + [anon_sym___forceinline] = ACTIONS(3402), + [anon_sym_thread_local] = ACTIONS(3402), + [anon_sym___thread] = ACTIONS(3402), + [anon_sym_const] = ACTIONS(3402), + [anon_sym_constexpr] = ACTIONS(3402), + [anon_sym_volatile] = ACTIONS(3402), + [anon_sym_restrict] = ACTIONS(3402), + [anon_sym___restrict__] = ACTIONS(3402), + [anon_sym__Atomic] = ACTIONS(3402), + [anon_sym__Noreturn] = ACTIONS(3402), + [anon_sym_noreturn] = ACTIONS(3402), + [anon_sym_mutable] = ACTIONS(3402), + [anon_sym_constinit] = ACTIONS(3402), + [anon_sym_consteval] = ACTIONS(3402), + [sym_primitive_type] = ACTIONS(3402), + [anon_sym_enum] = ACTIONS(3402), + [anon_sym_class] = ACTIONS(3402), + [anon_sym_struct] = ACTIONS(3402), + [anon_sym_union] = ACTIONS(3402), + [anon_sym_if] = ACTIONS(3402), + [anon_sym_switch] = ACTIONS(3402), + [anon_sym_case] = ACTIONS(3402), + [anon_sym_default] = ACTIONS(3402), + [anon_sym_while] = ACTIONS(3402), + [anon_sym_do] = ACTIONS(3402), + [anon_sym_for] = ACTIONS(3402), + [anon_sym_return] = ACTIONS(3402), + [anon_sym_break] = ACTIONS(3402), + [anon_sym_continue] = ACTIONS(3402), + [anon_sym_goto] = ACTIONS(3402), + [anon_sym___try] = ACTIONS(3402), + [anon_sym___leave] = ACTIONS(3402), + [anon_sym_not] = ACTIONS(3402), + [anon_sym_compl] = ACTIONS(3402), + [anon_sym_DASH_DASH] = ACTIONS(3404), + [anon_sym_PLUS_PLUS] = ACTIONS(3404), + [anon_sym_sizeof] = ACTIONS(3402), + [anon_sym___alignof__] = ACTIONS(3402), + [anon_sym___alignof] = ACTIONS(3402), + [anon_sym__alignof] = ACTIONS(3402), + [anon_sym_alignof] = ACTIONS(3402), + [anon_sym__Alignof] = ACTIONS(3402), + [anon_sym_offsetof] = ACTIONS(3402), + [anon_sym__Generic] = ACTIONS(3402), + [anon_sym_asm] = ACTIONS(3402), + [anon_sym___asm__] = ACTIONS(3402), + [sym_number_literal] = ACTIONS(3404), + [anon_sym_L_SQUOTE] = ACTIONS(3404), + [anon_sym_u_SQUOTE] = ACTIONS(3404), + [anon_sym_U_SQUOTE] = ACTIONS(3404), + [anon_sym_u8_SQUOTE] = ACTIONS(3404), + [anon_sym_SQUOTE] = ACTIONS(3404), + [anon_sym_L_DQUOTE] = ACTIONS(3404), + [anon_sym_u_DQUOTE] = ACTIONS(3404), + [anon_sym_U_DQUOTE] = ACTIONS(3404), + [anon_sym_u8_DQUOTE] = ACTIONS(3404), + [anon_sym_DQUOTE] = ACTIONS(3404), + [sym_true] = ACTIONS(3402), + [sym_false] = ACTIONS(3402), + [anon_sym_NULL] = ACTIONS(3402), + [anon_sym_nullptr] = ACTIONS(3402), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3402), + [anon_sym_decltype] = ACTIONS(3402), + [anon_sym_virtual] = ACTIONS(3402), + [anon_sym_alignas] = ACTIONS(3402), + [anon_sym_explicit] = ACTIONS(3402), + [anon_sym_typename] = ACTIONS(3402), + [anon_sym_template] = ACTIONS(3402), + [anon_sym_operator] = ACTIONS(3402), + [anon_sym_try] = ACTIONS(3402), + [anon_sym_delete] = ACTIONS(3402), + [anon_sym_throw] = ACTIONS(3402), + [anon_sym_namespace] = ACTIONS(3402), + [anon_sym_using] = ACTIONS(3402), + [anon_sym_static_assert] = ACTIONS(3402), + [anon_sym_concept] = ACTIONS(3402), + [anon_sym_co_return] = ACTIONS(3402), + [anon_sym_co_yield] = ACTIONS(3402), + [anon_sym_R_DQUOTE] = ACTIONS(3404), + [anon_sym_LR_DQUOTE] = ACTIONS(3404), + [anon_sym_uR_DQUOTE] = ACTIONS(3404), + [anon_sym_UR_DQUOTE] = ACTIONS(3404), + [anon_sym_u8R_DQUOTE] = ACTIONS(3404), + [anon_sym_co_await] = ACTIONS(3402), + [anon_sym_new] = ACTIONS(3402), + [anon_sym_requires] = ACTIONS(3402), + [sym_this] = ACTIONS(3402), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3404), + [sym_semgrep_named_ellipsis] = ACTIONS(3404), + }, + [365] = { + [sym_identifier] = ACTIONS(3406), + [aux_sym_preproc_include_token1] = ACTIONS(3406), + [aux_sym_preproc_def_token1] = ACTIONS(3406), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3408), + [aux_sym_preproc_if_token1] = ACTIONS(3406), + [aux_sym_preproc_if_token2] = ACTIONS(3406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3406), + [aux_sym_preproc_else_token1] = ACTIONS(3406), + [aux_sym_preproc_elif_token1] = ACTIONS(3406), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3406), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3406), + [sym_preproc_directive] = ACTIONS(3406), + [anon_sym_LPAREN2] = ACTIONS(3408), + [anon_sym_BANG] = ACTIONS(3408), + [anon_sym_TILDE] = ACTIONS(3408), + [anon_sym_DASH] = ACTIONS(3406), + [anon_sym_PLUS] = ACTIONS(3406), + [anon_sym_STAR] = ACTIONS(3408), + [anon_sym_AMP_AMP] = ACTIONS(3408), + [anon_sym_AMP] = ACTIONS(3406), + [anon_sym_SEMI] = ACTIONS(3408), + [anon_sym___extension__] = ACTIONS(3406), + [anon_sym_typedef] = ACTIONS(3406), + [anon_sym_extern] = ACTIONS(3406), + [anon_sym___attribute__] = ACTIONS(3406), + [anon_sym_COLON_COLON] = ACTIONS(3408), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3408), + [anon_sym___declspec] = ACTIONS(3406), + [anon_sym___based] = ACTIONS(3406), + [anon_sym___cdecl] = ACTIONS(3406), + [anon_sym___clrcall] = ACTIONS(3406), + [anon_sym___stdcall] = ACTIONS(3406), + [anon_sym___fastcall] = ACTIONS(3406), + [anon_sym___thiscall] = ACTIONS(3406), + [anon_sym___vectorcall] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3408), + [anon_sym_signed] = ACTIONS(3406), + [anon_sym_unsigned] = ACTIONS(3406), + [anon_sym_long] = ACTIONS(3406), + [anon_sym_short] = ACTIONS(3406), + [anon_sym_LBRACK] = ACTIONS(3406), + [anon_sym_static] = ACTIONS(3406), + [anon_sym_register] = ACTIONS(3406), + [anon_sym_inline] = ACTIONS(3406), + [anon_sym___inline] = ACTIONS(3406), + [anon_sym___inline__] = ACTIONS(3406), + [anon_sym___forceinline] = ACTIONS(3406), + [anon_sym_thread_local] = ACTIONS(3406), + [anon_sym___thread] = ACTIONS(3406), + [anon_sym_const] = ACTIONS(3406), + [anon_sym_constexpr] = ACTIONS(3406), + [anon_sym_volatile] = ACTIONS(3406), + [anon_sym_restrict] = ACTIONS(3406), + [anon_sym___restrict__] = ACTIONS(3406), + [anon_sym__Atomic] = ACTIONS(3406), + [anon_sym__Noreturn] = ACTIONS(3406), + [anon_sym_noreturn] = ACTIONS(3406), + [anon_sym_mutable] = ACTIONS(3406), + [anon_sym_constinit] = ACTIONS(3406), + [anon_sym_consteval] = ACTIONS(3406), + [sym_primitive_type] = ACTIONS(3406), + [anon_sym_enum] = ACTIONS(3406), + [anon_sym_class] = ACTIONS(3406), + [anon_sym_struct] = ACTIONS(3406), + [anon_sym_union] = ACTIONS(3406), + [anon_sym_if] = ACTIONS(3406), + [anon_sym_switch] = ACTIONS(3406), + [anon_sym_case] = ACTIONS(3406), + [anon_sym_default] = ACTIONS(3406), + [anon_sym_while] = ACTIONS(3406), + [anon_sym_do] = ACTIONS(3406), + [anon_sym_for] = ACTIONS(3406), + [anon_sym_return] = ACTIONS(3406), + [anon_sym_break] = ACTIONS(3406), + [anon_sym_continue] = ACTIONS(3406), + [anon_sym_goto] = ACTIONS(3406), + [anon_sym___try] = ACTIONS(3406), + [anon_sym___leave] = ACTIONS(3406), + [anon_sym_not] = ACTIONS(3406), + [anon_sym_compl] = ACTIONS(3406), + [anon_sym_DASH_DASH] = ACTIONS(3408), + [anon_sym_PLUS_PLUS] = ACTIONS(3408), + [anon_sym_sizeof] = ACTIONS(3406), + [anon_sym___alignof__] = ACTIONS(3406), + [anon_sym___alignof] = ACTIONS(3406), + [anon_sym__alignof] = ACTIONS(3406), + [anon_sym_alignof] = ACTIONS(3406), + [anon_sym__Alignof] = ACTIONS(3406), + [anon_sym_offsetof] = ACTIONS(3406), + [anon_sym__Generic] = ACTIONS(3406), + [anon_sym_asm] = ACTIONS(3406), + [anon_sym___asm__] = ACTIONS(3406), + [sym_number_literal] = ACTIONS(3408), + [anon_sym_L_SQUOTE] = ACTIONS(3408), + [anon_sym_u_SQUOTE] = ACTIONS(3408), + [anon_sym_U_SQUOTE] = ACTIONS(3408), + [anon_sym_u8_SQUOTE] = ACTIONS(3408), + [anon_sym_SQUOTE] = ACTIONS(3408), + [anon_sym_L_DQUOTE] = ACTIONS(3408), + [anon_sym_u_DQUOTE] = ACTIONS(3408), + [anon_sym_U_DQUOTE] = ACTIONS(3408), + [anon_sym_u8_DQUOTE] = ACTIONS(3408), + [anon_sym_DQUOTE] = ACTIONS(3408), + [sym_true] = ACTIONS(3406), + [sym_false] = ACTIONS(3406), + [anon_sym_NULL] = ACTIONS(3406), + [anon_sym_nullptr] = ACTIONS(3406), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3406), + [anon_sym_decltype] = ACTIONS(3406), + [anon_sym_virtual] = ACTIONS(3406), + [anon_sym_alignas] = ACTIONS(3406), + [anon_sym_explicit] = ACTIONS(3406), + [anon_sym_typename] = ACTIONS(3406), + [anon_sym_template] = ACTIONS(3406), + [anon_sym_operator] = ACTIONS(3406), + [anon_sym_try] = ACTIONS(3406), + [anon_sym_delete] = ACTIONS(3406), + [anon_sym_throw] = ACTIONS(3406), + [anon_sym_namespace] = ACTIONS(3406), + [anon_sym_using] = ACTIONS(3406), + [anon_sym_static_assert] = ACTIONS(3406), + [anon_sym_concept] = ACTIONS(3406), + [anon_sym_co_return] = ACTIONS(3406), + [anon_sym_co_yield] = ACTIONS(3406), + [anon_sym_R_DQUOTE] = ACTIONS(3408), + [anon_sym_LR_DQUOTE] = ACTIONS(3408), + [anon_sym_uR_DQUOTE] = ACTIONS(3408), + [anon_sym_UR_DQUOTE] = ACTIONS(3408), + [anon_sym_u8R_DQUOTE] = ACTIONS(3408), + [anon_sym_co_await] = ACTIONS(3406), + [anon_sym_new] = ACTIONS(3406), + [anon_sym_requires] = ACTIONS(3406), + [sym_this] = ACTIONS(3406), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3408), + [sym_semgrep_named_ellipsis] = ACTIONS(3408), + }, + [366] = { + [sym_identifier] = ACTIONS(3410), + [aux_sym_preproc_include_token1] = ACTIONS(3410), + [aux_sym_preproc_def_token1] = ACTIONS(3410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3412), + [aux_sym_preproc_if_token1] = ACTIONS(3410), + [aux_sym_preproc_if_token2] = ACTIONS(3410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3410), + [aux_sym_preproc_else_token1] = ACTIONS(3410), + [aux_sym_preproc_elif_token1] = ACTIONS(3410), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3410), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3410), + [sym_preproc_directive] = ACTIONS(3410), + [anon_sym_LPAREN2] = ACTIONS(3412), + [anon_sym_BANG] = ACTIONS(3412), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3410), + [anon_sym_PLUS] = ACTIONS(3410), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_AMP] = ACTIONS(3410), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym___extension__] = ACTIONS(3410), + [anon_sym_typedef] = ACTIONS(3410), + [anon_sym_extern] = ACTIONS(3410), + [anon_sym___attribute__] = ACTIONS(3410), + [anon_sym_COLON_COLON] = ACTIONS(3412), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3412), + [anon_sym___declspec] = ACTIONS(3410), + [anon_sym___based] = ACTIONS(3410), + [anon_sym___cdecl] = ACTIONS(3410), + [anon_sym___clrcall] = ACTIONS(3410), + [anon_sym___stdcall] = ACTIONS(3410), + [anon_sym___fastcall] = ACTIONS(3410), + [anon_sym___thiscall] = ACTIONS(3410), + [anon_sym___vectorcall] = ACTIONS(3410), + [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_signed] = ACTIONS(3410), + [anon_sym_unsigned] = ACTIONS(3410), + [anon_sym_long] = ACTIONS(3410), + [anon_sym_short] = ACTIONS(3410), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_static] = ACTIONS(3410), + [anon_sym_register] = ACTIONS(3410), + [anon_sym_inline] = ACTIONS(3410), + [anon_sym___inline] = ACTIONS(3410), + [anon_sym___inline__] = ACTIONS(3410), + [anon_sym___forceinline] = ACTIONS(3410), + [anon_sym_thread_local] = ACTIONS(3410), + [anon_sym___thread] = ACTIONS(3410), + [anon_sym_const] = ACTIONS(3410), + [anon_sym_constexpr] = ACTIONS(3410), + [anon_sym_volatile] = ACTIONS(3410), + [anon_sym_restrict] = ACTIONS(3410), + [anon_sym___restrict__] = ACTIONS(3410), + [anon_sym__Atomic] = ACTIONS(3410), + [anon_sym__Noreturn] = ACTIONS(3410), + [anon_sym_noreturn] = ACTIONS(3410), + [anon_sym_mutable] = ACTIONS(3410), + [anon_sym_constinit] = ACTIONS(3410), + [anon_sym_consteval] = ACTIONS(3410), + [sym_primitive_type] = ACTIONS(3410), + [anon_sym_enum] = ACTIONS(3410), + [anon_sym_class] = ACTIONS(3410), + [anon_sym_struct] = ACTIONS(3410), + [anon_sym_union] = ACTIONS(3410), + [anon_sym_if] = ACTIONS(3410), + [anon_sym_switch] = ACTIONS(3410), + [anon_sym_case] = ACTIONS(3410), + [anon_sym_default] = ACTIONS(3410), + [anon_sym_while] = ACTIONS(3410), + [anon_sym_do] = ACTIONS(3410), + [anon_sym_for] = ACTIONS(3410), + [anon_sym_return] = ACTIONS(3410), + [anon_sym_break] = ACTIONS(3410), + [anon_sym_continue] = ACTIONS(3410), + [anon_sym_goto] = ACTIONS(3410), + [anon_sym___try] = ACTIONS(3410), + [anon_sym___leave] = ACTIONS(3410), + [anon_sym_not] = ACTIONS(3410), + [anon_sym_compl] = ACTIONS(3410), + [anon_sym_DASH_DASH] = ACTIONS(3412), + [anon_sym_PLUS_PLUS] = ACTIONS(3412), + [anon_sym_sizeof] = ACTIONS(3410), + [anon_sym___alignof__] = ACTIONS(3410), + [anon_sym___alignof] = ACTIONS(3410), + [anon_sym__alignof] = ACTIONS(3410), + [anon_sym_alignof] = ACTIONS(3410), + [anon_sym__Alignof] = ACTIONS(3410), + [anon_sym_offsetof] = ACTIONS(3410), + [anon_sym__Generic] = ACTIONS(3410), + [anon_sym_asm] = ACTIONS(3410), + [anon_sym___asm__] = ACTIONS(3410), + [sym_number_literal] = ACTIONS(3412), + [anon_sym_L_SQUOTE] = ACTIONS(3412), + [anon_sym_u_SQUOTE] = ACTIONS(3412), + [anon_sym_U_SQUOTE] = ACTIONS(3412), + [anon_sym_u8_SQUOTE] = ACTIONS(3412), + [anon_sym_SQUOTE] = ACTIONS(3412), + [anon_sym_L_DQUOTE] = ACTIONS(3412), + [anon_sym_u_DQUOTE] = ACTIONS(3412), + [anon_sym_U_DQUOTE] = ACTIONS(3412), + [anon_sym_u8_DQUOTE] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3412), + [sym_true] = ACTIONS(3410), + [sym_false] = ACTIONS(3410), + [anon_sym_NULL] = ACTIONS(3410), + [anon_sym_nullptr] = ACTIONS(3410), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3410), + [anon_sym_decltype] = ACTIONS(3410), + [anon_sym_virtual] = ACTIONS(3410), + [anon_sym_alignas] = ACTIONS(3410), + [anon_sym_explicit] = ACTIONS(3410), + [anon_sym_typename] = ACTIONS(3410), + [anon_sym_template] = ACTIONS(3410), + [anon_sym_operator] = ACTIONS(3410), + [anon_sym_try] = ACTIONS(3410), + [anon_sym_delete] = ACTIONS(3410), + [anon_sym_throw] = ACTIONS(3410), + [anon_sym_namespace] = ACTIONS(3410), + [anon_sym_using] = ACTIONS(3410), + [anon_sym_static_assert] = ACTIONS(3410), + [anon_sym_concept] = ACTIONS(3410), + [anon_sym_co_return] = ACTIONS(3410), + [anon_sym_co_yield] = ACTIONS(3410), + [anon_sym_R_DQUOTE] = ACTIONS(3412), + [anon_sym_LR_DQUOTE] = ACTIONS(3412), + [anon_sym_uR_DQUOTE] = ACTIONS(3412), + [anon_sym_UR_DQUOTE] = ACTIONS(3412), + [anon_sym_u8R_DQUOTE] = ACTIONS(3412), + [anon_sym_co_await] = ACTIONS(3410), + [anon_sym_new] = ACTIONS(3410), + [anon_sym_requires] = ACTIONS(3410), + [sym_this] = ACTIONS(3410), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3412), + [sym_semgrep_named_ellipsis] = ACTIONS(3412), + }, + [367] = { + [sym_type_qualifier] = STATE(4685), + [sym_type_specifier] = STATE(5782), + [sym_sized_type_specifier] = STATE(3293), + [sym_enum_specifier] = STATE(3293), + [sym_struct_specifier] = STATE(3293), + [sym_union_specifier] = STATE(3293), + [sym_expression] = STATE(5071), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_type_descriptor] = STATE(8085), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_placeholder_type_specifier] = STATE(3293), + [sym_decltype_auto] = STATE(3292), + [sym_decltype] = STATE(2572), + [sym_class_specifier] = STATE(3293), + [sym_class_name] = STATE(8965), + [sym_dependent_type] = STATE(3293), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_type_parameter_pack_expansion] = STATE(8440), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6620), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(6338), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [aux_sym_type_definition_type_repeat1] = STATE(4685), + [aux_sym_sized_type_specifier_repeat1] = STATE(2573), + [sym_identifier] = ACTIONS(3310), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_signed] = ACTIONS(3324), + [anon_sym_unsigned] = ACTIONS(3324), + [anon_sym_long] = ACTIONS(3324), + [anon_sym_short] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3330), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_union] = ACTIONS(3334), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3358), + [anon_sym_decltype] = ACTIONS(3360), + [anon_sym_typename] = ACTIONS(3362), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_GT2] = ACTIONS(3414), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), + }, + [368] = { + [sym_preproc_def] = STATE(1935), + [sym_preproc_function_def] = STATE(1935), + [sym_preproc_call] = STATE(1935), + [sym_preproc_if_in_field_declaration_list] = STATE(1935), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1935), + [sym_preproc_else_in_field_declaration_list] = STATE(9429), + [sym_preproc_elif_in_field_declaration_list] = STATE(9429), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(9429), + [sym_type_definition] = STATE(1935), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6440), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7286), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(372), + [sym_field_declaration] = STATE(1935), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(1935), + [sym_operator_cast] = STATE(7765), + [sym_inline_method_definition] = STATE(1935), + [sym_constructor_specifiers] = STATE(1957), + [sym_operator_cast_definition] = STATE(1935), + [sym_operator_cast_declaration] = STATE(1935), + [sym_constructor_or_destructor_definition] = STATE(1935), + [sym_constructor_or_destructor_declaration] = STATE(1935), + [sym_friend_declaration] = STATE(1935), + [sym_access_specifier] = STATE(9998), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(1935), + [sym_alias_declaration] = STATE(1935), + [sym_static_assert_declaration] = STATE(1935), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7765), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(1935), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(372), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1957), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(3229), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3231), + [aux_sym_preproc_if_token1] = ACTIONS(3233), + [aux_sym_preproc_if_token2] = ACTIONS(3416), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3239), + [aux_sym_preproc_else_token1] = ACTIONS(3241), + [aux_sym_preproc_elif_token1] = ACTIONS(3243), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3245), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3247), + [sym_preproc_directive] = ACTIONS(3249), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(3259), + [anon_sym_typedef] = ACTIONS(3261), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(3279), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(3281), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3285), + [anon_sym_static_assert] = ACTIONS(3287), + [sym_semgrep_metavar] = ACTIONS(3289), }, [369] = { - [sym_identifier] = ACTIONS(3404), - [aux_sym_preproc_include_token1] = ACTIONS(3404), - [aux_sym_preproc_def_token1] = ACTIONS(3404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3406), - [aux_sym_preproc_if_token1] = ACTIONS(3404), - [aux_sym_preproc_if_token2] = ACTIONS(3404), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3404), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3404), - [aux_sym_preproc_else_token1] = ACTIONS(3404), - [aux_sym_preproc_elif_token1] = ACTIONS(3404), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3404), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3404), - [sym_preproc_directive] = ACTIONS(3404), - [anon_sym_LPAREN2] = ACTIONS(3406), - [anon_sym_BANG] = ACTIONS(3406), - [anon_sym_TILDE] = ACTIONS(3406), - [anon_sym_DASH] = ACTIONS(3404), - [anon_sym_PLUS] = ACTIONS(3404), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_AMP_AMP] = ACTIONS(3406), - [anon_sym_AMP] = ACTIONS(3404), - [anon_sym_SEMI] = ACTIONS(3406), - [anon_sym___extension__] = ACTIONS(3404), - [anon_sym_typedef] = ACTIONS(3404), - [anon_sym_extern] = ACTIONS(3404), - [anon_sym___attribute__] = ACTIONS(3404), - [anon_sym_COLON_COLON] = ACTIONS(3406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3406), - [anon_sym___declspec] = ACTIONS(3404), - [anon_sym___based] = ACTIONS(3404), - [anon_sym___cdecl] = ACTIONS(3404), - [anon_sym___clrcall] = ACTIONS(3404), - [anon_sym___stdcall] = ACTIONS(3404), - [anon_sym___fastcall] = ACTIONS(3404), - [anon_sym___thiscall] = ACTIONS(3404), - [anon_sym___vectorcall] = ACTIONS(3404), - [anon_sym_LBRACE] = ACTIONS(3406), - [anon_sym_signed] = ACTIONS(3404), - [anon_sym_unsigned] = ACTIONS(3404), - [anon_sym_long] = ACTIONS(3404), - [anon_sym_short] = ACTIONS(3404), - [anon_sym_LBRACK] = ACTIONS(3404), - [anon_sym_static] = ACTIONS(3404), - [anon_sym_register] = ACTIONS(3404), - [anon_sym_inline] = ACTIONS(3404), - [anon_sym___inline] = ACTIONS(3404), - [anon_sym___inline__] = ACTIONS(3404), - [anon_sym___forceinline] = ACTIONS(3404), - [anon_sym_thread_local] = ACTIONS(3404), - [anon_sym___thread] = ACTIONS(3404), - [anon_sym_const] = ACTIONS(3404), - [anon_sym_constexpr] = ACTIONS(3404), - [anon_sym_volatile] = ACTIONS(3404), - [anon_sym_restrict] = ACTIONS(3404), - [anon_sym___restrict__] = ACTIONS(3404), - [anon_sym__Atomic] = ACTIONS(3404), - [anon_sym__Noreturn] = ACTIONS(3404), - [anon_sym_noreturn] = ACTIONS(3404), - [anon_sym_mutable] = ACTIONS(3404), - [anon_sym_constinit] = ACTIONS(3404), - [anon_sym_consteval] = ACTIONS(3404), - [sym_primitive_type] = ACTIONS(3404), - [anon_sym_enum] = ACTIONS(3404), - [anon_sym_class] = ACTIONS(3404), - [anon_sym_struct] = ACTIONS(3404), - [anon_sym_union] = ACTIONS(3404), - [anon_sym_if] = ACTIONS(3404), - [anon_sym_switch] = ACTIONS(3404), - [anon_sym_case] = ACTIONS(3404), - [anon_sym_default] = ACTIONS(3404), - [anon_sym_while] = ACTIONS(3404), - [anon_sym_do] = ACTIONS(3404), - [anon_sym_for] = ACTIONS(3404), - [anon_sym_return] = ACTIONS(3404), - [anon_sym_break] = ACTIONS(3404), - [anon_sym_continue] = ACTIONS(3404), - [anon_sym_goto] = ACTIONS(3404), - [anon_sym___try] = ACTIONS(3404), - [anon_sym___leave] = ACTIONS(3404), - [anon_sym_not] = ACTIONS(3404), - [anon_sym_compl] = ACTIONS(3404), - [anon_sym_DASH_DASH] = ACTIONS(3406), - [anon_sym_PLUS_PLUS] = ACTIONS(3406), - [anon_sym_sizeof] = ACTIONS(3404), - [anon_sym___alignof__] = ACTIONS(3404), - [anon_sym___alignof] = ACTIONS(3404), - [anon_sym__alignof] = ACTIONS(3404), - [anon_sym_alignof] = ACTIONS(3404), - [anon_sym__Alignof] = ACTIONS(3404), - [anon_sym_offsetof] = ACTIONS(3404), - [anon_sym__Generic] = ACTIONS(3404), - [anon_sym_asm] = ACTIONS(3404), - [anon_sym___asm__] = ACTIONS(3404), - [sym_number_literal] = ACTIONS(3406), - [anon_sym_L_SQUOTE] = ACTIONS(3406), - [anon_sym_u_SQUOTE] = ACTIONS(3406), - [anon_sym_U_SQUOTE] = ACTIONS(3406), - [anon_sym_u8_SQUOTE] = ACTIONS(3406), - [anon_sym_SQUOTE] = ACTIONS(3406), - [anon_sym_L_DQUOTE] = ACTIONS(3406), - [anon_sym_u_DQUOTE] = ACTIONS(3406), - [anon_sym_U_DQUOTE] = ACTIONS(3406), - [anon_sym_u8_DQUOTE] = ACTIONS(3406), - [anon_sym_DQUOTE] = ACTIONS(3406), - [sym_true] = ACTIONS(3404), - [sym_false] = ACTIONS(3404), - [anon_sym_NULL] = ACTIONS(3404), - [anon_sym_nullptr] = ACTIONS(3404), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3404), - [anon_sym_decltype] = ACTIONS(3404), - [anon_sym_virtual] = ACTIONS(3404), - [anon_sym_alignas] = ACTIONS(3404), - [anon_sym_explicit] = ACTIONS(3404), - [anon_sym_typename] = ACTIONS(3404), - [anon_sym_template] = ACTIONS(3404), - [anon_sym_operator] = ACTIONS(3404), - [anon_sym_try] = ACTIONS(3404), - [anon_sym_delete] = ACTIONS(3404), - [anon_sym_throw] = ACTIONS(3404), - [anon_sym_namespace] = ACTIONS(3404), - [anon_sym_using] = ACTIONS(3404), - [anon_sym_static_assert] = ACTIONS(3404), - [anon_sym_concept] = ACTIONS(3404), - [anon_sym_co_return] = ACTIONS(3404), - [anon_sym_co_yield] = ACTIONS(3404), - [anon_sym_R_DQUOTE] = ACTIONS(3406), - [anon_sym_LR_DQUOTE] = ACTIONS(3406), - [anon_sym_uR_DQUOTE] = ACTIONS(3406), - [anon_sym_UR_DQUOTE] = ACTIONS(3406), - [anon_sym_u8R_DQUOTE] = ACTIONS(3406), - [anon_sym_co_await] = ACTIONS(3404), - [anon_sym_new] = ACTIONS(3404), - [anon_sym_requires] = ACTIONS(3404), - [sym_this] = ACTIONS(3404), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3406), - [sym_semgrep_named_ellipsis] = ACTIONS(3406), + [sym_preproc_def] = STATE(1935), + [sym_preproc_function_def] = STATE(1935), + [sym_preproc_call] = STATE(1935), + [sym_preproc_if_in_field_declaration_list] = STATE(1935), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1935), + [sym_preproc_else_in_field_declaration_list] = STATE(9444), + [sym_preproc_elif_in_field_declaration_list] = STATE(9444), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(9444), + [sym_type_definition] = STATE(1935), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6440), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7286), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(373), + [sym_field_declaration] = STATE(1935), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(1935), + [sym_operator_cast] = STATE(7765), + [sym_inline_method_definition] = STATE(1935), + [sym_constructor_specifiers] = STATE(1957), + [sym_operator_cast_definition] = STATE(1935), + [sym_operator_cast_declaration] = STATE(1935), + [sym_constructor_or_destructor_definition] = STATE(1935), + [sym_constructor_or_destructor_declaration] = STATE(1935), + [sym_friend_declaration] = STATE(1935), + [sym_access_specifier] = STATE(9998), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(1935), + [sym_alias_declaration] = STATE(1935), + [sym_static_assert_declaration] = STATE(1935), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7765), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(1935), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(373), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1957), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(3229), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3231), + [aux_sym_preproc_if_token1] = ACTIONS(3233), + [aux_sym_preproc_if_token2] = ACTIONS(3418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3239), + [aux_sym_preproc_else_token1] = ACTIONS(3241), + [aux_sym_preproc_elif_token1] = ACTIONS(3243), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3245), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3247), + [sym_preproc_directive] = ACTIONS(3249), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(3259), + [anon_sym_typedef] = ACTIONS(3261), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(3279), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(3281), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3285), + [anon_sym_static_assert] = ACTIONS(3287), + [sym_semgrep_metavar] = ACTIONS(3289), }, [370] = { - [sym_identifier] = ACTIONS(3408), - [aux_sym_preproc_include_token1] = ACTIONS(3408), - [aux_sym_preproc_def_token1] = ACTIONS(3408), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3410), - [aux_sym_preproc_if_token1] = ACTIONS(3408), - [aux_sym_preproc_if_token2] = ACTIONS(3408), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3408), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3408), - [aux_sym_preproc_else_token1] = ACTIONS(3408), - [aux_sym_preproc_elif_token1] = ACTIONS(3408), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3408), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3408), - [sym_preproc_directive] = ACTIONS(3408), - [anon_sym_LPAREN2] = ACTIONS(3410), - [anon_sym_BANG] = ACTIONS(3410), - [anon_sym_TILDE] = ACTIONS(3410), - [anon_sym_DASH] = ACTIONS(3408), - [anon_sym_PLUS] = ACTIONS(3408), - [anon_sym_STAR] = ACTIONS(3410), - [anon_sym_AMP_AMP] = ACTIONS(3410), - [anon_sym_AMP] = ACTIONS(3408), - [anon_sym_SEMI] = ACTIONS(3410), - [anon_sym___extension__] = ACTIONS(3408), - [anon_sym_typedef] = ACTIONS(3408), - [anon_sym_extern] = ACTIONS(3408), - [anon_sym___attribute__] = ACTIONS(3408), - [anon_sym_COLON_COLON] = ACTIONS(3410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3410), - [anon_sym___declspec] = ACTIONS(3408), - [anon_sym___based] = ACTIONS(3408), - [anon_sym___cdecl] = ACTIONS(3408), - [anon_sym___clrcall] = ACTIONS(3408), - [anon_sym___stdcall] = ACTIONS(3408), - [anon_sym___fastcall] = ACTIONS(3408), - [anon_sym___thiscall] = ACTIONS(3408), - [anon_sym___vectorcall] = ACTIONS(3408), - [anon_sym_LBRACE] = ACTIONS(3410), - [anon_sym_signed] = ACTIONS(3408), - [anon_sym_unsigned] = ACTIONS(3408), - [anon_sym_long] = ACTIONS(3408), - [anon_sym_short] = ACTIONS(3408), - [anon_sym_LBRACK] = ACTIONS(3408), - [anon_sym_static] = ACTIONS(3408), - [anon_sym_register] = ACTIONS(3408), - [anon_sym_inline] = ACTIONS(3408), - [anon_sym___inline] = ACTIONS(3408), - [anon_sym___inline__] = ACTIONS(3408), - [anon_sym___forceinline] = ACTIONS(3408), - [anon_sym_thread_local] = ACTIONS(3408), - [anon_sym___thread] = ACTIONS(3408), - [anon_sym_const] = ACTIONS(3408), - [anon_sym_constexpr] = ACTIONS(3408), - [anon_sym_volatile] = ACTIONS(3408), - [anon_sym_restrict] = ACTIONS(3408), - [anon_sym___restrict__] = ACTIONS(3408), - [anon_sym__Atomic] = ACTIONS(3408), - [anon_sym__Noreturn] = ACTIONS(3408), - [anon_sym_noreturn] = ACTIONS(3408), - [anon_sym_mutable] = ACTIONS(3408), - [anon_sym_constinit] = ACTIONS(3408), - [anon_sym_consteval] = ACTIONS(3408), - [sym_primitive_type] = ACTIONS(3408), - [anon_sym_enum] = ACTIONS(3408), - [anon_sym_class] = ACTIONS(3408), - [anon_sym_struct] = ACTIONS(3408), - [anon_sym_union] = ACTIONS(3408), - [anon_sym_if] = ACTIONS(3408), - [anon_sym_switch] = ACTIONS(3408), - [anon_sym_case] = ACTIONS(3408), - [anon_sym_default] = ACTIONS(3408), - [anon_sym_while] = ACTIONS(3408), - [anon_sym_do] = ACTIONS(3408), - [anon_sym_for] = ACTIONS(3408), - [anon_sym_return] = ACTIONS(3408), - [anon_sym_break] = ACTIONS(3408), - [anon_sym_continue] = ACTIONS(3408), - [anon_sym_goto] = ACTIONS(3408), - [anon_sym___try] = ACTIONS(3408), - [anon_sym___leave] = ACTIONS(3408), - [anon_sym_not] = ACTIONS(3408), - [anon_sym_compl] = ACTIONS(3408), - [anon_sym_DASH_DASH] = ACTIONS(3410), - [anon_sym_PLUS_PLUS] = ACTIONS(3410), - [anon_sym_sizeof] = ACTIONS(3408), - [anon_sym___alignof__] = ACTIONS(3408), - [anon_sym___alignof] = ACTIONS(3408), - [anon_sym__alignof] = ACTIONS(3408), - [anon_sym_alignof] = ACTIONS(3408), - [anon_sym__Alignof] = ACTIONS(3408), - [anon_sym_offsetof] = ACTIONS(3408), - [anon_sym__Generic] = ACTIONS(3408), - [anon_sym_asm] = ACTIONS(3408), - [anon_sym___asm__] = ACTIONS(3408), - [sym_number_literal] = ACTIONS(3410), - [anon_sym_L_SQUOTE] = ACTIONS(3410), - [anon_sym_u_SQUOTE] = ACTIONS(3410), - [anon_sym_U_SQUOTE] = ACTIONS(3410), - [anon_sym_u8_SQUOTE] = ACTIONS(3410), - [anon_sym_SQUOTE] = ACTIONS(3410), - [anon_sym_L_DQUOTE] = ACTIONS(3410), - [anon_sym_u_DQUOTE] = ACTIONS(3410), - [anon_sym_U_DQUOTE] = ACTIONS(3410), - [anon_sym_u8_DQUOTE] = ACTIONS(3410), - [anon_sym_DQUOTE] = ACTIONS(3410), - [sym_true] = ACTIONS(3408), - [sym_false] = ACTIONS(3408), - [anon_sym_NULL] = ACTIONS(3408), - [anon_sym_nullptr] = ACTIONS(3408), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3408), - [anon_sym_decltype] = ACTIONS(3408), - [anon_sym_virtual] = ACTIONS(3408), - [anon_sym_alignas] = ACTIONS(3408), - [anon_sym_explicit] = ACTIONS(3408), - [anon_sym_typename] = ACTIONS(3408), - [anon_sym_template] = ACTIONS(3408), - [anon_sym_operator] = ACTIONS(3408), - [anon_sym_try] = ACTIONS(3408), - [anon_sym_delete] = ACTIONS(3408), - [anon_sym_throw] = ACTIONS(3408), - [anon_sym_namespace] = ACTIONS(3408), - [anon_sym_using] = ACTIONS(3408), - [anon_sym_static_assert] = ACTIONS(3408), - [anon_sym_concept] = ACTIONS(3408), - [anon_sym_co_return] = ACTIONS(3408), - [anon_sym_co_yield] = ACTIONS(3408), - [anon_sym_R_DQUOTE] = ACTIONS(3410), - [anon_sym_LR_DQUOTE] = ACTIONS(3410), - [anon_sym_uR_DQUOTE] = ACTIONS(3410), - [anon_sym_UR_DQUOTE] = ACTIONS(3410), - [anon_sym_u8R_DQUOTE] = ACTIONS(3410), - [anon_sym_co_await] = ACTIONS(3408), - [anon_sym_new] = ACTIONS(3408), - [anon_sym_requires] = ACTIONS(3408), - [sym_this] = ACTIONS(3408), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3410), - [sym_semgrep_named_ellipsis] = ACTIONS(3410), + [sym_else_clause] = STATE(489), + [sym_identifier] = ACTIONS(3064), + [aux_sym_preproc_include_token1] = ACTIONS(3064), + [aux_sym_preproc_def_token1] = ACTIONS(3064), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3066), + [aux_sym_preproc_if_token1] = ACTIONS(3064), + [aux_sym_preproc_if_token2] = ACTIONS(3064), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3064), + [aux_sym_preproc_else_token1] = ACTIONS(3064), + [aux_sym_preproc_elif_token1] = ACTIONS(3064), + [sym_preproc_directive] = ACTIONS(3064), + [anon_sym_LPAREN2] = ACTIONS(3066), + [anon_sym_BANG] = ACTIONS(3066), + [anon_sym_TILDE] = ACTIONS(3066), + [anon_sym_DASH] = ACTIONS(3064), + [anon_sym_PLUS] = ACTIONS(3064), + [anon_sym_STAR] = ACTIONS(3066), + [anon_sym_AMP_AMP] = ACTIONS(3066), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_SEMI] = ACTIONS(3066), + [anon_sym___extension__] = ACTIONS(3064), + [anon_sym_typedef] = ACTIONS(3064), + [anon_sym_extern] = ACTIONS(3064), + [anon_sym___attribute__] = ACTIONS(3064), + [anon_sym_COLON_COLON] = ACTIONS(3066), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3066), + [anon_sym___declspec] = ACTIONS(3064), + [anon_sym___based] = ACTIONS(3064), + [anon_sym___cdecl] = ACTIONS(3064), + [anon_sym___clrcall] = ACTIONS(3064), + [anon_sym___stdcall] = ACTIONS(3064), + [anon_sym___fastcall] = ACTIONS(3064), + [anon_sym___thiscall] = ACTIONS(3064), + [anon_sym___vectorcall] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(3066), + [anon_sym_signed] = ACTIONS(3064), + [anon_sym_unsigned] = ACTIONS(3064), + [anon_sym_long] = ACTIONS(3064), + [anon_sym_short] = ACTIONS(3064), + [anon_sym_LBRACK] = ACTIONS(3064), + [anon_sym_static] = ACTIONS(3064), + [anon_sym_register] = ACTIONS(3064), + [anon_sym_inline] = ACTIONS(3064), + [anon_sym___inline] = ACTIONS(3064), + [anon_sym___inline__] = ACTIONS(3064), + [anon_sym___forceinline] = ACTIONS(3064), + [anon_sym_thread_local] = ACTIONS(3064), + [anon_sym___thread] = ACTIONS(3064), + [anon_sym_const] = ACTIONS(3064), + [anon_sym_constexpr] = ACTIONS(3064), + [anon_sym_volatile] = ACTIONS(3064), + [anon_sym_restrict] = ACTIONS(3064), + [anon_sym___restrict__] = ACTIONS(3064), + [anon_sym__Atomic] = ACTIONS(3064), + [anon_sym__Noreturn] = ACTIONS(3064), + [anon_sym_noreturn] = ACTIONS(3064), + [anon_sym_mutable] = ACTIONS(3064), + [anon_sym_constinit] = ACTIONS(3064), + [anon_sym_consteval] = ACTIONS(3064), + [sym_primitive_type] = ACTIONS(3064), + [anon_sym_enum] = ACTIONS(3064), + [anon_sym_class] = ACTIONS(3064), + [anon_sym_struct] = ACTIONS(3064), + [anon_sym_union] = ACTIONS(3064), + [anon_sym_if] = ACTIONS(3064), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_switch] = ACTIONS(3064), + [anon_sym_case] = ACTIONS(3064), + [anon_sym_default] = ACTIONS(3064), + [anon_sym_while] = ACTIONS(3064), + [anon_sym_do] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(3064), + [anon_sym_return] = ACTIONS(3064), + [anon_sym_break] = ACTIONS(3064), + [anon_sym_continue] = ACTIONS(3064), + [anon_sym_goto] = ACTIONS(3064), + [anon_sym___try] = ACTIONS(3064), + [anon_sym___leave] = ACTIONS(3064), + [anon_sym_not] = ACTIONS(3064), + [anon_sym_compl] = ACTIONS(3064), + [anon_sym_DASH_DASH] = ACTIONS(3066), + [anon_sym_PLUS_PLUS] = ACTIONS(3066), + [anon_sym_sizeof] = ACTIONS(3064), + [anon_sym___alignof__] = ACTIONS(3064), + [anon_sym___alignof] = ACTIONS(3064), + [anon_sym__alignof] = ACTIONS(3064), + [anon_sym_alignof] = ACTIONS(3064), + [anon_sym__Alignof] = ACTIONS(3064), + [anon_sym_offsetof] = ACTIONS(3064), + [anon_sym__Generic] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3064), + [anon_sym___asm__] = ACTIONS(3064), + [sym_number_literal] = ACTIONS(3066), + [anon_sym_L_SQUOTE] = ACTIONS(3066), + [anon_sym_u_SQUOTE] = ACTIONS(3066), + [anon_sym_U_SQUOTE] = ACTIONS(3066), + [anon_sym_u8_SQUOTE] = ACTIONS(3066), + [anon_sym_SQUOTE] = ACTIONS(3066), + [anon_sym_L_DQUOTE] = ACTIONS(3066), + [anon_sym_u_DQUOTE] = ACTIONS(3066), + [anon_sym_U_DQUOTE] = ACTIONS(3066), + [anon_sym_u8_DQUOTE] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3066), + [sym_true] = ACTIONS(3064), + [sym_false] = ACTIONS(3064), + [anon_sym_NULL] = ACTIONS(3064), + [anon_sym_nullptr] = ACTIONS(3064), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3064), + [anon_sym_decltype] = ACTIONS(3064), + [anon_sym_virtual] = ACTIONS(3064), + [anon_sym_alignas] = ACTIONS(3064), + [anon_sym_explicit] = ACTIONS(3064), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_operator] = ACTIONS(3064), + [anon_sym_try] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3064), + [anon_sym_throw] = ACTIONS(3064), + [anon_sym_namespace] = ACTIONS(3064), + [anon_sym_using] = ACTIONS(3064), + [anon_sym_static_assert] = ACTIONS(3064), + [anon_sym_concept] = ACTIONS(3064), + [anon_sym_co_return] = ACTIONS(3064), + [anon_sym_co_yield] = ACTIONS(3064), + [anon_sym_R_DQUOTE] = ACTIONS(3066), + [anon_sym_LR_DQUOTE] = ACTIONS(3066), + [anon_sym_uR_DQUOTE] = ACTIONS(3066), + [anon_sym_UR_DQUOTE] = ACTIONS(3066), + [anon_sym_u8R_DQUOTE] = ACTIONS(3066), + [anon_sym_co_await] = ACTIONS(3064), + [anon_sym_new] = ACTIONS(3064), + [anon_sym_requires] = ACTIONS(3064), + [sym_this] = ACTIONS(3064), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3066), + [sym_semgrep_named_ellipsis] = ACTIONS(3066), }, [371] = { - [sym_identifier] = ACTIONS(3412), - [aux_sym_preproc_include_token1] = ACTIONS(3412), - [aux_sym_preproc_def_token1] = ACTIONS(3412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3414), - [aux_sym_preproc_if_token1] = ACTIONS(3412), - [aux_sym_preproc_if_token2] = ACTIONS(3412), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3412), - [aux_sym_preproc_else_token1] = ACTIONS(3412), - [aux_sym_preproc_elif_token1] = ACTIONS(3412), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3412), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3412), - [sym_preproc_directive] = ACTIONS(3412), - [anon_sym_LPAREN2] = ACTIONS(3414), - [anon_sym_BANG] = ACTIONS(3414), - [anon_sym_TILDE] = ACTIONS(3414), - [anon_sym_DASH] = ACTIONS(3412), - [anon_sym_PLUS] = ACTIONS(3412), - [anon_sym_STAR] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3414), - [anon_sym_AMP] = ACTIONS(3412), - [anon_sym_SEMI] = ACTIONS(3414), - [anon_sym___extension__] = ACTIONS(3412), - [anon_sym_typedef] = ACTIONS(3412), - [anon_sym_extern] = ACTIONS(3412), - [anon_sym___attribute__] = ACTIONS(3412), - [anon_sym_COLON_COLON] = ACTIONS(3414), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3414), - [anon_sym___declspec] = ACTIONS(3412), - [anon_sym___based] = ACTIONS(3412), - [anon_sym___cdecl] = ACTIONS(3412), - [anon_sym___clrcall] = ACTIONS(3412), - [anon_sym___stdcall] = ACTIONS(3412), - [anon_sym___fastcall] = ACTIONS(3412), - [anon_sym___thiscall] = ACTIONS(3412), - [anon_sym___vectorcall] = ACTIONS(3412), - [anon_sym_LBRACE] = ACTIONS(3414), - [anon_sym_signed] = ACTIONS(3412), - [anon_sym_unsigned] = ACTIONS(3412), - [anon_sym_long] = ACTIONS(3412), - [anon_sym_short] = ACTIONS(3412), - [anon_sym_LBRACK] = ACTIONS(3412), - [anon_sym_static] = ACTIONS(3412), - [anon_sym_register] = ACTIONS(3412), - [anon_sym_inline] = ACTIONS(3412), - [anon_sym___inline] = ACTIONS(3412), - [anon_sym___inline__] = ACTIONS(3412), - [anon_sym___forceinline] = ACTIONS(3412), - [anon_sym_thread_local] = ACTIONS(3412), - [anon_sym___thread] = ACTIONS(3412), - [anon_sym_const] = ACTIONS(3412), - [anon_sym_constexpr] = ACTIONS(3412), - [anon_sym_volatile] = ACTIONS(3412), - [anon_sym_restrict] = ACTIONS(3412), - [anon_sym___restrict__] = ACTIONS(3412), - [anon_sym__Atomic] = ACTIONS(3412), - [anon_sym__Noreturn] = ACTIONS(3412), - [anon_sym_noreturn] = ACTIONS(3412), - [anon_sym_mutable] = ACTIONS(3412), - [anon_sym_constinit] = ACTIONS(3412), - [anon_sym_consteval] = ACTIONS(3412), - [sym_primitive_type] = ACTIONS(3412), - [anon_sym_enum] = ACTIONS(3412), - [anon_sym_class] = ACTIONS(3412), - [anon_sym_struct] = ACTIONS(3412), - [anon_sym_union] = ACTIONS(3412), - [anon_sym_if] = ACTIONS(3412), - [anon_sym_switch] = ACTIONS(3412), - [anon_sym_case] = ACTIONS(3412), - [anon_sym_default] = ACTIONS(3412), - [anon_sym_while] = ACTIONS(3412), - [anon_sym_do] = ACTIONS(3412), - [anon_sym_for] = ACTIONS(3412), - [anon_sym_return] = ACTIONS(3412), - [anon_sym_break] = ACTIONS(3412), - [anon_sym_continue] = ACTIONS(3412), - [anon_sym_goto] = ACTIONS(3412), - [anon_sym___try] = ACTIONS(3412), - [anon_sym___leave] = ACTIONS(3412), - [anon_sym_not] = ACTIONS(3412), - [anon_sym_compl] = ACTIONS(3412), - [anon_sym_DASH_DASH] = ACTIONS(3414), - [anon_sym_PLUS_PLUS] = ACTIONS(3414), - [anon_sym_sizeof] = ACTIONS(3412), - [anon_sym___alignof__] = ACTIONS(3412), - [anon_sym___alignof] = ACTIONS(3412), - [anon_sym__alignof] = ACTIONS(3412), - [anon_sym_alignof] = ACTIONS(3412), - [anon_sym__Alignof] = ACTIONS(3412), - [anon_sym_offsetof] = ACTIONS(3412), - [anon_sym__Generic] = ACTIONS(3412), - [anon_sym_asm] = ACTIONS(3412), - [anon_sym___asm__] = ACTIONS(3412), - [sym_number_literal] = ACTIONS(3414), - [anon_sym_L_SQUOTE] = ACTIONS(3414), - [anon_sym_u_SQUOTE] = ACTIONS(3414), - [anon_sym_U_SQUOTE] = ACTIONS(3414), - [anon_sym_u8_SQUOTE] = ACTIONS(3414), - [anon_sym_SQUOTE] = ACTIONS(3414), - [anon_sym_L_DQUOTE] = ACTIONS(3414), - [anon_sym_u_DQUOTE] = ACTIONS(3414), - [anon_sym_U_DQUOTE] = ACTIONS(3414), - [anon_sym_u8_DQUOTE] = ACTIONS(3414), - [anon_sym_DQUOTE] = ACTIONS(3414), - [sym_true] = ACTIONS(3412), - [sym_false] = ACTIONS(3412), - [anon_sym_NULL] = ACTIONS(3412), - [anon_sym_nullptr] = ACTIONS(3412), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3412), - [anon_sym_decltype] = ACTIONS(3412), - [anon_sym_virtual] = ACTIONS(3412), - [anon_sym_alignas] = ACTIONS(3412), - [anon_sym_explicit] = ACTIONS(3412), - [anon_sym_typename] = ACTIONS(3412), - [anon_sym_template] = ACTIONS(3412), - [anon_sym_operator] = ACTIONS(3412), - [anon_sym_try] = ACTIONS(3412), - [anon_sym_delete] = ACTIONS(3412), - [anon_sym_throw] = ACTIONS(3412), - [anon_sym_namespace] = ACTIONS(3412), - [anon_sym_using] = ACTIONS(3412), - [anon_sym_static_assert] = ACTIONS(3412), - [anon_sym_concept] = ACTIONS(3412), - [anon_sym_co_return] = ACTIONS(3412), - [anon_sym_co_yield] = ACTIONS(3412), - [anon_sym_R_DQUOTE] = ACTIONS(3414), - [anon_sym_LR_DQUOTE] = ACTIONS(3414), - [anon_sym_uR_DQUOTE] = ACTIONS(3414), - [anon_sym_UR_DQUOTE] = ACTIONS(3414), - [anon_sym_u8R_DQUOTE] = ACTIONS(3414), - [anon_sym_co_await] = ACTIONS(3412), - [anon_sym_new] = ACTIONS(3412), - [anon_sym_requires] = ACTIONS(3412), - [sym_this] = ACTIONS(3412), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3414), - [sym_semgrep_named_ellipsis] = ACTIONS(3414), + [sym_catch_clause] = STATE(380), + [aux_sym_constructor_try_statement_repeat1] = STATE(380), + [sym_identifier] = ACTIONS(3046), + [aux_sym_preproc_include_token1] = ACTIONS(3046), + [aux_sym_preproc_def_token1] = ACTIONS(3046), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3046), + [aux_sym_preproc_if_token2] = ACTIONS(3046), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3046), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3046), + [sym_preproc_directive] = ACTIONS(3046), + [anon_sym_LPAREN2] = ACTIONS(3048), + [anon_sym_BANG] = ACTIONS(3048), + [anon_sym_TILDE] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3046), + [anon_sym_PLUS] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(3048), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym_SEMI] = ACTIONS(3048), + [anon_sym___extension__] = ACTIONS(3046), + [anon_sym_typedef] = ACTIONS(3046), + [anon_sym_extern] = ACTIONS(3046), + [anon_sym___attribute__] = ACTIONS(3046), + [anon_sym_COLON_COLON] = ACTIONS(3048), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3048), + [anon_sym___declspec] = ACTIONS(3046), + [anon_sym___based] = ACTIONS(3046), + [anon_sym___cdecl] = ACTIONS(3046), + [anon_sym___clrcall] = ACTIONS(3046), + [anon_sym___stdcall] = ACTIONS(3046), + [anon_sym___fastcall] = ACTIONS(3046), + [anon_sym___thiscall] = ACTIONS(3046), + [anon_sym___vectorcall] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3046), + [anon_sym_unsigned] = ACTIONS(3046), + [anon_sym_long] = ACTIONS(3046), + [anon_sym_short] = ACTIONS(3046), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_static] = ACTIONS(3046), + [anon_sym_register] = ACTIONS(3046), + [anon_sym_inline] = ACTIONS(3046), + [anon_sym___inline] = ACTIONS(3046), + [anon_sym___inline__] = ACTIONS(3046), + [anon_sym___forceinline] = ACTIONS(3046), + [anon_sym_thread_local] = ACTIONS(3046), + [anon_sym___thread] = ACTIONS(3046), + [anon_sym_const] = ACTIONS(3046), + [anon_sym_constexpr] = ACTIONS(3046), + [anon_sym_volatile] = ACTIONS(3046), + [anon_sym_restrict] = ACTIONS(3046), + [anon_sym___restrict__] = ACTIONS(3046), + [anon_sym__Atomic] = ACTIONS(3046), + [anon_sym__Noreturn] = ACTIONS(3046), + [anon_sym_noreturn] = ACTIONS(3046), + [anon_sym_mutable] = ACTIONS(3046), + [anon_sym_constinit] = ACTIONS(3046), + [anon_sym_consteval] = ACTIONS(3046), + [sym_primitive_type] = ACTIONS(3046), + [anon_sym_enum] = ACTIONS(3046), + [anon_sym_class] = ACTIONS(3046), + [anon_sym_struct] = ACTIONS(3046), + [anon_sym_union] = ACTIONS(3046), + [anon_sym_if] = ACTIONS(3046), + [anon_sym_else] = ACTIONS(3046), + [anon_sym_switch] = ACTIONS(3046), + [anon_sym_case] = ACTIONS(3046), + [anon_sym_default] = ACTIONS(3046), + [anon_sym_while] = ACTIONS(3046), + [anon_sym_do] = ACTIONS(3046), + [anon_sym_for] = ACTIONS(3046), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_break] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(3046), + [anon_sym_goto] = ACTIONS(3046), + [anon_sym___try] = ACTIONS(3046), + [anon_sym___leave] = ACTIONS(3046), + [anon_sym_not] = ACTIONS(3046), + [anon_sym_compl] = ACTIONS(3046), + [anon_sym_DASH_DASH] = ACTIONS(3048), + [anon_sym_PLUS_PLUS] = ACTIONS(3048), + [anon_sym_sizeof] = ACTIONS(3046), + [anon_sym___alignof__] = ACTIONS(3046), + [anon_sym___alignof] = ACTIONS(3046), + [anon_sym__alignof] = ACTIONS(3046), + [anon_sym_alignof] = ACTIONS(3046), + [anon_sym__Alignof] = ACTIONS(3046), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3046), + [anon_sym_asm] = ACTIONS(3046), + [anon_sym___asm__] = ACTIONS(3046), + [sym_number_literal] = ACTIONS(3048), + [anon_sym_L_SQUOTE] = ACTIONS(3048), + [anon_sym_u_SQUOTE] = ACTIONS(3048), + [anon_sym_U_SQUOTE] = ACTIONS(3048), + [anon_sym_u8_SQUOTE] = ACTIONS(3048), + [anon_sym_SQUOTE] = ACTIONS(3048), + [anon_sym_L_DQUOTE] = ACTIONS(3048), + [anon_sym_u_DQUOTE] = ACTIONS(3048), + [anon_sym_U_DQUOTE] = ACTIONS(3048), + [anon_sym_u8_DQUOTE] = ACTIONS(3048), + [anon_sym_DQUOTE] = ACTIONS(3048), + [sym_true] = ACTIONS(3046), + [sym_false] = ACTIONS(3046), + [anon_sym_NULL] = ACTIONS(3046), + [anon_sym_nullptr] = ACTIONS(3046), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3046), + [anon_sym_decltype] = ACTIONS(3046), + [anon_sym_virtual] = ACTIONS(3046), + [anon_sym_alignas] = ACTIONS(3046), + [anon_sym_explicit] = ACTIONS(3046), + [anon_sym_typename] = ACTIONS(3046), + [anon_sym_template] = ACTIONS(3046), + [anon_sym_operator] = ACTIONS(3046), + [anon_sym_try] = ACTIONS(3046), + [anon_sym_delete] = ACTIONS(3046), + [anon_sym_throw] = ACTIONS(3046), + [anon_sym_namespace] = ACTIONS(3046), + [anon_sym_using] = ACTIONS(3046), + [anon_sym_static_assert] = ACTIONS(3046), + [anon_sym_concept] = ACTIONS(3046), + [anon_sym_co_return] = ACTIONS(3046), + [anon_sym_co_yield] = ACTIONS(3046), + [anon_sym_catch] = ACTIONS(3422), + [anon_sym_R_DQUOTE] = ACTIONS(3048), + [anon_sym_LR_DQUOTE] = ACTIONS(3048), + [anon_sym_uR_DQUOTE] = ACTIONS(3048), + [anon_sym_UR_DQUOTE] = ACTIONS(3048), + [anon_sym_u8R_DQUOTE] = ACTIONS(3048), + [anon_sym_co_await] = ACTIONS(3046), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_requires] = ACTIONS(3046), + [sym_this] = ACTIONS(3046), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3048), + [sym_semgrep_named_ellipsis] = ACTIONS(3048), }, [372] = { - [sym_identifier] = ACTIONS(3416), - [aux_sym_preproc_include_token1] = ACTIONS(3416), - [aux_sym_preproc_def_token1] = ACTIONS(3416), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3418), - [aux_sym_preproc_if_token1] = ACTIONS(3416), - [aux_sym_preproc_if_token2] = ACTIONS(3416), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3416), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3416), - [aux_sym_preproc_else_token1] = ACTIONS(3416), - [aux_sym_preproc_elif_token1] = ACTIONS(3416), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3416), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3416), - [sym_preproc_directive] = ACTIONS(3416), - [anon_sym_LPAREN2] = ACTIONS(3418), - [anon_sym_BANG] = ACTIONS(3418), - [anon_sym_TILDE] = ACTIONS(3418), - [anon_sym_DASH] = ACTIONS(3416), - [anon_sym_PLUS] = ACTIONS(3416), - [anon_sym_STAR] = ACTIONS(3418), - [anon_sym_AMP_AMP] = ACTIONS(3418), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_SEMI] = ACTIONS(3418), - [anon_sym___extension__] = ACTIONS(3416), - [anon_sym_typedef] = ACTIONS(3416), - [anon_sym_extern] = ACTIONS(3416), - [anon_sym___attribute__] = ACTIONS(3416), - [anon_sym_COLON_COLON] = ACTIONS(3418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3418), - [anon_sym___declspec] = ACTIONS(3416), - [anon_sym___based] = ACTIONS(3416), - [anon_sym___cdecl] = ACTIONS(3416), - [anon_sym___clrcall] = ACTIONS(3416), - [anon_sym___stdcall] = ACTIONS(3416), - [anon_sym___fastcall] = ACTIONS(3416), - [anon_sym___thiscall] = ACTIONS(3416), - [anon_sym___vectorcall] = ACTIONS(3416), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_signed] = ACTIONS(3416), - [anon_sym_unsigned] = ACTIONS(3416), - [anon_sym_long] = ACTIONS(3416), - [anon_sym_short] = ACTIONS(3416), - [anon_sym_LBRACK] = ACTIONS(3416), - [anon_sym_static] = ACTIONS(3416), - [anon_sym_register] = ACTIONS(3416), - [anon_sym_inline] = ACTIONS(3416), - [anon_sym___inline] = ACTIONS(3416), - [anon_sym___inline__] = ACTIONS(3416), - [anon_sym___forceinline] = ACTIONS(3416), - [anon_sym_thread_local] = ACTIONS(3416), - [anon_sym___thread] = ACTIONS(3416), - [anon_sym_const] = ACTIONS(3416), - [anon_sym_constexpr] = ACTIONS(3416), - [anon_sym_volatile] = ACTIONS(3416), - [anon_sym_restrict] = ACTIONS(3416), - [anon_sym___restrict__] = ACTIONS(3416), - [anon_sym__Atomic] = ACTIONS(3416), - [anon_sym__Noreturn] = ACTIONS(3416), - [anon_sym_noreturn] = ACTIONS(3416), - [anon_sym_mutable] = ACTIONS(3416), - [anon_sym_constinit] = ACTIONS(3416), - [anon_sym_consteval] = ACTIONS(3416), - [sym_primitive_type] = ACTIONS(3416), - [anon_sym_enum] = ACTIONS(3416), - [anon_sym_class] = ACTIONS(3416), - [anon_sym_struct] = ACTIONS(3416), - [anon_sym_union] = ACTIONS(3416), - [anon_sym_if] = ACTIONS(3416), - [anon_sym_switch] = ACTIONS(3416), - [anon_sym_case] = ACTIONS(3416), - [anon_sym_default] = ACTIONS(3416), - [anon_sym_while] = ACTIONS(3416), - [anon_sym_do] = ACTIONS(3416), - [anon_sym_for] = ACTIONS(3416), - [anon_sym_return] = ACTIONS(3416), - [anon_sym_break] = ACTIONS(3416), - [anon_sym_continue] = ACTIONS(3416), - [anon_sym_goto] = ACTIONS(3416), - [anon_sym___try] = ACTIONS(3416), - [anon_sym___leave] = ACTIONS(3416), - [anon_sym_not] = ACTIONS(3416), - [anon_sym_compl] = ACTIONS(3416), - [anon_sym_DASH_DASH] = ACTIONS(3418), - [anon_sym_PLUS_PLUS] = ACTIONS(3418), - [anon_sym_sizeof] = ACTIONS(3416), - [anon_sym___alignof__] = ACTIONS(3416), - [anon_sym___alignof] = ACTIONS(3416), - [anon_sym__alignof] = ACTIONS(3416), - [anon_sym_alignof] = ACTIONS(3416), - [anon_sym__Alignof] = ACTIONS(3416), - [anon_sym_offsetof] = ACTIONS(3416), - [anon_sym__Generic] = ACTIONS(3416), - [anon_sym_asm] = ACTIONS(3416), - [anon_sym___asm__] = ACTIONS(3416), - [sym_number_literal] = ACTIONS(3418), - [anon_sym_L_SQUOTE] = ACTIONS(3418), - [anon_sym_u_SQUOTE] = ACTIONS(3418), - [anon_sym_U_SQUOTE] = ACTIONS(3418), - [anon_sym_u8_SQUOTE] = ACTIONS(3418), - [anon_sym_SQUOTE] = ACTIONS(3418), - [anon_sym_L_DQUOTE] = ACTIONS(3418), - [anon_sym_u_DQUOTE] = ACTIONS(3418), - [anon_sym_U_DQUOTE] = ACTIONS(3418), - [anon_sym_u8_DQUOTE] = ACTIONS(3418), - [anon_sym_DQUOTE] = ACTIONS(3418), - [sym_true] = ACTIONS(3416), - [sym_false] = ACTIONS(3416), - [anon_sym_NULL] = ACTIONS(3416), - [anon_sym_nullptr] = ACTIONS(3416), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3416), - [anon_sym_decltype] = ACTIONS(3416), - [anon_sym_virtual] = ACTIONS(3416), - [anon_sym_alignas] = ACTIONS(3416), - [anon_sym_explicit] = ACTIONS(3416), - [anon_sym_typename] = ACTIONS(3416), - [anon_sym_template] = ACTIONS(3416), - [anon_sym_operator] = ACTIONS(3416), - [anon_sym_try] = ACTIONS(3416), - [anon_sym_delete] = ACTIONS(3416), - [anon_sym_throw] = ACTIONS(3416), - [anon_sym_namespace] = ACTIONS(3416), - [anon_sym_using] = ACTIONS(3416), - [anon_sym_static_assert] = ACTIONS(3416), - [anon_sym_concept] = ACTIONS(3416), - [anon_sym_co_return] = ACTIONS(3416), - [anon_sym_co_yield] = ACTIONS(3416), - [anon_sym_R_DQUOTE] = ACTIONS(3418), - [anon_sym_LR_DQUOTE] = ACTIONS(3418), - [anon_sym_uR_DQUOTE] = ACTIONS(3418), - [anon_sym_UR_DQUOTE] = ACTIONS(3418), - [anon_sym_u8R_DQUOTE] = ACTIONS(3418), - [anon_sym_co_await] = ACTIONS(3416), - [anon_sym_new] = ACTIONS(3416), - [anon_sym_requires] = ACTIONS(3416), - [sym_this] = ACTIONS(3416), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3418), - [sym_semgrep_named_ellipsis] = ACTIONS(3418), + [sym_preproc_def] = STATE(1935), + [sym_preproc_function_def] = STATE(1935), + [sym_preproc_call] = STATE(1935), + [sym_preproc_if_in_field_declaration_list] = STATE(1935), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1935), + [sym_preproc_else_in_field_declaration_list] = STATE(9583), + [sym_preproc_elif_in_field_declaration_list] = STATE(9583), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(9583), + [sym_type_definition] = STATE(1935), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6440), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7286), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(584), + [sym_field_declaration] = STATE(1935), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(1935), + [sym_operator_cast] = STATE(7765), + [sym_inline_method_definition] = STATE(1935), + [sym_constructor_specifiers] = STATE(1957), + [sym_operator_cast_definition] = STATE(1935), + [sym_operator_cast_declaration] = STATE(1935), + [sym_constructor_or_destructor_definition] = STATE(1935), + [sym_constructor_or_destructor_declaration] = STATE(1935), + [sym_friend_declaration] = STATE(1935), + [sym_access_specifier] = STATE(9998), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(1935), + [sym_alias_declaration] = STATE(1935), + [sym_static_assert_declaration] = STATE(1935), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7765), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(1935), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(584), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1957), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(3229), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3231), + [aux_sym_preproc_if_token1] = ACTIONS(3233), + [aux_sym_preproc_if_token2] = ACTIONS(3424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3239), + [aux_sym_preproc_else_token1] = ACTIONS(3241), + [aux_sym_preproc_elif_token1] = ACTIONS(3243), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3245), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3247), + [sym_preproc_directive] = ACTIONS(3249), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(3259), + [anon_sym_typedef] = ACTIONS(3261), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(3279), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(3281), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3285), + [anon_sym_static_assert] = ACTIONS(3287), + [sym_semgrep_metavar] = ACTIONS(3289), }, [373] = { - [sym_identifier] = ACTIONS(3420), - [aux_sym_preproc_include_token1] = ACTIONS(3420), - [aux_sym_preproc_def_token1] = ACTIONS(3420), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3422), - [aux_sym_preproc_if_token1] = ACTIONS(3420), - [aux_sym_preproc_if_token2] = ACTIONS(3420), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3420), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3420), - [aux_sym_preproc_else_token1] = ACTIONS(3420), - [aux_sym_preproc_elif_token1] = ACTIONS(3420), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3420), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3420), - [sym_preproc_directive] = ACTIONS(3420), - [anon_sym_LPAREN2] = ACTIONS(3422), - [anon_sym_BANG] = ACTIONS(3422), - [anon_sym_TILDE] = ACTIONS(3422), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_STAR] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_AMP] = ACTIONS(3420), - [anon_sym_SEMI] = ACTIONS(3422), - [anon_sym___extension__] = ACTIONS(3420), - [anon_sym_typedef] = ACTIONS(3420), - [anon_sym_extern] = ACTIONS(3420), - [anon_sym___attribute__] = ACTIONS(3420), - [anon_sym_COLON_COLON] = ACTIONS(3422), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3422), - [anon_sym___declspec] = ACTIONS(3420), - [anon_sym___based] = ACTIONS(3420), - [anon_sym___cdecl] = ACTIONS(3420), - [anon_sym___clrcall] = ACTIONS(3420), - [anon_sym___stdcall] = ACTIONS(3420), - [anon_sym___fastcall] = ACTIONS(3420), - [anon_sym___thiscall] = ACTIONS(3420), - [anon_sym___vectorcall] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3422), - [anon_sym_signed] = ACTIONS(3420), - [anon_sym_unsigned] = ACTIONS(3420), - [anon_sym_long] = ACTIONS(3420), - [anon_sym_short] = ACTIONS(3420), - [anon_sym_LBRACK] = ACTIONS(3420), - [anon_sym_static] = ACTIONS(3420), - [anon_sym_register] = ACTIONS(3420), - [anon_sym_inline] = ACTIONS(3420), - [anon_sym___inline] = ACTIONS(3420), - [anon_sym___inline__] = ACTIONS(3420), - [anon_sym___forceinline] = ACTIONS(3420), - [anon_sym_thread_local] = ACTIONS(3420), - [anon_sym___thread] = ACTIONS(3420), - [anon_sym_const] = ACTIONS(3420), - [anon_sym_constexpr] = ACTIONS(3420), - [anon_sym_volatile] = ACTIONS(3420), - [anon_sym_restrict] = ACTIONS(3420), - [anon_sym___restrict__] = ACTIONS(3420), - [anon_sym__Atomic] = ACTIONS(3420), - [anon_sym__Noreturn] = ACTIONS(3420), - [anon_sym_noreturn] = ACTIONS(3420), - [anon_sym_mutable] = ACTIONS(3420), - [anon_sym_constinit] = ACTIONS(3420), - [anon_sym_consteval] = ACTIONS(3420), - [sym_primitive_type] = ACTIONS(3420), - [anon_sym_enum] = ACTIONS(3420), - [anon_sym_class] = ACTIONS(3420), - [anon_sym_struct] = ACTIONS(3420), - [anon_sym_union] = ACTIONS(3420), - [anon_sym_if] = ACTIONS(3420), - [anon_sym_switch] = ACTIONS(3420), - [anon_sym_case] = ACTIONS(3420), - [anon_sym_default] = ACTIONS(3420), - [anon_sym_while] = ACTIONS(3420), - [anon_sym_do] = ACTIONS(3420), - [anon_sym_for] = ACTIONS(3420), - [anon_sym_return] = ACTIONS(3420), - [anon_sym_break] = ACTIONS(3420), - [anon_sym_continue] = ACTIONS(3420), - [anon_sym_goto] = ACTIONS(3420), - [anon_sym___try] = ACTIONS(3420), - [anon_sym___leave] = ACTIONS(3420), - [anon_sym_not] = ACTIONS(3420), - [anon_sym_compl] = ACTIONS(3420), - [anon_sym_DASH_DASH] = ACTIONS(3422), - [anon_sym_PLUS_PLUS] = ACTIONS(3422), - [anon_sym_sizeof] = ACTIONS(3420), - [anon_sym___alignof__] = ACTIONS(3420), - [anon_sym___alignof] = ACTIONS(3420), - [anon_sym__alignof] = ACTIONS(3420), - [anon_sym_alignof] = ACTIONS(3420), - [anon_sym__Alignof] = ACTIONS(3420), - [anon_sym_offsetof] = ACTIONS(3420), - [anon_sym__Generic] = ACTIONS(3420), - [anon_sym_asm] = ACTIONS(3420), - [anon_sym___asm__] = ACTIONS(3420), - [sym_number_literal] = ACTIONS(3422), - [anon_sym_L_SQUOTE] = ACTIONS(3422), - [anon_sym_u_SQUOTE] = ACTIONS(3422), - [anon_sym_U_SQUOTE] = ACTIONS(3422), - [anon_sym_u8_SQUOTE] = ACTIONS(3422), - [anon_sym_SQUOTE] = ACTIONS(3422), - [anon_sym_L_DQUOTE] = ACTIONS(3422), - [anon_sym_u_DQUOTE] = ACTIONS(3422), - [anon_sym_U_DQUOTE] = ACTIONS(3422), - [anon_sym_u8_DQUOTE] = ACTIONS(3422), - [anon_sym_DQUOTE] = ACTIONS(3422), - [sym_true] = ACTIONS(3420), - [sym_false] = ACTIONS(3420), - [anon_sym_NULL] = ACTIONS(3420), - [anon_sym_nullptr] = ACTIONS(3420), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3420), - [anon_sym_decltype] = ACTIONS(3420), - [anon_sym_virtual] = ACTIONS(3420), - [anon_sym_alignas] = ACTIONS(3420), - [anon_sym_explicit] = ACTIONS(3420), - [anon_sym_typename] = ACTIONS(3420), - [anon_sym_template] = ACTIONS(3420), - [anon_sym_operator] = ACTIONS(3420), - [anon_sym_try] = ACTIONS(3420), - [anon_sym_delete] = ACTIONS(3420), - [anon_sym_throw] = ACTIONS(3420), - [anon_sym_namespace] = ACTIONS(3420), - [anon_sym_using] = ACTIONS(3420), - [anon_sym_static_assert] = ACTIONS(3420), - [anon_sym_concept] = ACTIONS(3420), - [anon_sym_co_return] = ACTIONS(3420), - [anon_sym_co_yield] = ACTIONS(3420), - [anon_sym_R_DQUOTE] = ACTIONS(3422), - [anon_sym_LR_DQUOTE] = ACTIONS(3422), - [anon_sym_uR_DQUOTE] = ACTIONS(3422), - [anon_sym_UR_DQUOTE] = ACTIONS(3422), - [anon_sym_u8R_DQUOTE] = ACTIONS(3422), - [anon_sym_co_await] = ACTIONS(3420), - [anon_sym_new] = ACTIONS(3420), - [anon_sym_requires] = ACTIONS(3420), - [sym_this] = ACTIONS(3420), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3422), - [sym_semgrep_named_ellipsis] = ACTIONS(3422), + [sym_preproc_def] = STATE(1935), + [sym_preproc_function_def] = STATE(1935), + [sym_preproc_call] = STATE(1935), + [sym_preproc_if_in_field_declaration_list] = STATE(1935), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1935), + [sym_preproc_else_in_field_declaration_list] = STATE(9584), + [sym_preproc_elif_in_field_declaration_list] = STATE(9584), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(9584), + [sym_type_definition] = STATE(1935), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6440), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7286), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(584), + [sym_field_declaration] = STATE(1935), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(1935), + [sym_operator_cast] = STATE(7765), + [sym_inline_method_definition] = STATE(1935), + [sym_constructor_specifiers] = STATE(1957), + [sym_operator_cast_definition] = STATE(1935), + [sym_operator_cast_declaration] = STATE(1935), + [sym_constructor_or_destructor_definition] = STATE(1935), + [sym_constructor_or_destructor_declaration] = STATE(1935), + [sym_friend_declaration] = STATE(1935), + [sym_access_specifier] = STATE(9998), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(1935), + [sym_alias_declaration] = STATE(1935), + [sym_static_assert_declaration] = STATE(1935), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7765), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(1935), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(584), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1957), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(3229), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3231), + [aux_sym_preproc_if_token1] = ACTIONS(3233), + [aux_sym_preproc_if_token2] = ACTIONS(3426), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3239), + [aux_sym_preproc_else_token1] = ACTIONS(3241), + [aux_sym_preproc_elif_token1] = ACTIONS(3243), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3245), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3247), + [sym_preproc_directive] = ACTIONS(3249), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(3259), + [anon_sym_typedef] = ACTIONS(3261), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(3279), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(3281), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3285), + [anon_sym_static_assert] = ACTIONS(3287), + [sym_semgrep_metavar] = ACTIONS(3289), }, [374] = { - [sym_catch_clause] = STATE(374), - [aux_sym_constructor_try_statement_repeat1] = STATE(374), - [sym_identifier] = ACTIONS(3063), - [aux_sym_preproc_include_token1] = ACTIONS(3063), - [aux_sym_preproc_def_token1] = ACTIONS(3063), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3065), - [aux_sym_preproc_if_token1] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3063), - [sym_preproc_directive] = ACTIONS(3063), - [anon_sym_LPAREN2] = ACTIONS(3065), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3063), - [anon_sym_SEMI] = ACTIONS(3065), - [anon_sym___extension__] = ACTIONS(3063), - [anon_sym_typedef] = ACTIONS(3063), - [anon_sym_extern] = ACTIONS(3063), - [anon_sym___attribute__] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(3065), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3065), - [anon_sym___declspec] = ACTIONS(3063), - [anon_sym___based] = ACTIONS(3063), - [anon_sym___cdecl] = ACTIONS(3063), - [anon_sym___clrcall] = ACTIONS(3063), - [anon_sym___stdcall] = ACTIONS(3063), - [anon_sym___fastcall] = ACTIONS(3063), - [anon_sym___thiscall] = ACTIONS(3063), - [anon_sym___vectorcall] = ACTIONS(3063), - [anon_sym_LBRACE] = ACTIONS(3065), - [anon_sym_RBRACE] = ACTIONS(3065), - [anon_sym_signed] = ACTIONS(3063), - [anon_sym_unsigned] = ACTIONS(3063), - [anon_sym_long] = ACTIONS(3063), - [anon_sym_short] = ACTIONS(3063), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_static] = ACTIONS(3063), - [anon_sym_register] = ACTIONS(3063), - [anon_sym_inline] = ACTIONS(3063), - [anon_sym___inline] = ACTIONS(3063), - [anon_sym___inline__] = ACTIONS(3063), - [anon_sym___forceinline] = ACTIONS(3063), - [anon_sym_thread_local] = ACTIONS(3063), - [anon_sym___thread] = ACTIONS(3063), - [anon_sym_const] = ACTIONS(3063), - [anon_sym_constexpr] = ACTIONS(3063), - [anon_sym_volatile] = ACTIONS(3063), - [anon_sym_restrict] = ACTIONS(3063), - [anon_sym___restrict__] = ACTIONS(3063), - [anon_sym__Atomic] = ACTIONS(3063), - [anon_sym__Noreturn] = ACTIONS(3063), - [anon_sym_noreturn] = ACTIONS(3063), - [anon_sym_mutable] = ACTIONS(3063), - [anon_sym_constinit] = ACTIONS(3063), - [anon_sym_consteval] = ACTIONS(3063), - [sym_primitive_type] = ACTIONS(3063), - [anon_sym_enum] = ACTIONS(3063), - [anon_sym_class] = ACTIONS(3063), - [anon_sym_struct] = ACTIONS(3063), - [anon_sym_union] = ACTIONS(3063), - [anon_sym_if] = ACTIONS(3063), - [anon_sym_else] = ACTIONS(3063), - [anon_sym_switch] = ACTIONS(3063), - [anon_sym_case] = ACTIONS(3063), - [anon_sym_default] = ACTIONS(3063), - [anon_sym_while] = ACTIONS(3063), - [anon_sym_do] = ACTIONS(3063), - [anon_sym_for] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(3063), - [anon_sym_break] = ACTIONS(3063), - [anon_sym_continue] = ACTIONS(3063), - [anon_sym_goto] = ACTIONS(3063), - [anon_sym___try] = ACTIONS(3063), - [anon_sym___leave] = ACTIONS(3063), - [anon_sym_not] = ACTIONS(3063), - [anon_sym_compl] = ACTIONS(3063), - [anon_sym_DASH_DASH] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3065), - [anon_sym_sizeof] = ACTIONS(3063), - [anon_sym___alignof__] = ACTIONS(3063), - [anon_sym___alignof] = ACTIONS(3063), - [anon_sym__alignof] = ACTIONS(3063), - [anon_sym_alignof] = ACTIONS(3063), - [anon_sym__Alignof] = ACTIONS(3063), - [anon_sym_offsetof] = ACTIONS(3063), - [anon_sym__Generic] = ACTIONS(3063), - [anon_sym_asm] = ACTIONS(3063), - [anon_sym___asm__] = ACTIONS(3063), - [sym_number_literal] = ACTIONS(3065), - [anon_sym_L_SQUOTE] = ACTIONS(3065), - [anon_sym_u_SQUOTE] = ACTIONS(3065), - [anon_sym_U_SQUOTE] = ACTIONS(3065), - [anon_sym_u8_SQUOTE] = ACTIONS(3065), - [anon_sym_SQUOTE] = ACTIONS(3065), - [anon_sym_L_DQUOTE] = ACTIONS(3065), - [anon_sym_u_DQUOTE] = ACTIONS(3065), - [anon_sym_U_DQUOTE] = ACTIONS(3065), - [anon_sym_u8_DQUOTE] = ACTIONS(3065), - [anon_sym_DQUOTE] = ACTIONS(3065), - [sym_true] = ACTIONS(3063), - [sym_false] = ACTIONS(3063), - [anon_sym_NULL] = ACTIONS(3063), - [anon_sym_nullptr] = ACTIONS(3063), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3063), - [anon_sym_decltype] = ACTIONS(3063), - [anon_sym_virtual] = ACTIONS(3063), - [anon_sym_alignas] = ACTIONS(3063), - [anon_sym_explicit] = ACTIONS(3063), - [anon_sym_typename] = ACTIONS(3063), - [anon_sym_template] = ACTIONS(3063), - [anon_sym_operator] = ACTIONS(3063), - [anon_sym_try] = ACTIONS(3063), - [anon_sym_delete] = ACTIONS(3063), - [anon_sym_throw] = ACTIONS(3063), - [anon_sym_namespace] = ACTIONS(3063), - [anon_sym_using] = ACTIONS(3063), - [anon_sym_static_assert] = ACTIONS(3063), - [anon_sym_concept] = ACTIONS(3063), - [anon_sym_co_return] = ACTIONS(3063), - [anon_sym_co_yield] = ACTIONS(3063), - [anon_sym_catch] = ACTIONS(3424), - [anon_sym_R_DQUOTE] = ACTIONS(3065), - [anon_sym_LR_DQUOTE] = ACTIONS(3065), - [anon_sym_uR_DQUOTE] = ACTIONS(3065), - [anon_sym_UR_DQUOTE] = ACTIONS(3065), - [anon_sym_u8R_DQUOTE] = ACTIONS(3065), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3063), - [anon_sym_requires] = ACTIONS(3063), - [sym_this] = ACTIONS(3063), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3065), - [sym_semgrep_named_ellipsis] = ACTIONS(3065), + [sym_identifier] = ACTIONS(3428), + [aux_sym_preproc_include_token1] = ACTIONS(3428), + [aux_sym_preproc_def_token1] = ACTIONS(3428), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3430), + [aux_sym_preproc_if_token1] = ACTIONS(3428), + [aux_sym_preproc_if_token2] = ACTIONS(3428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3428), + [aux_sym_preproc_else_token1] = ACTIONS(3428), + [aux_sym_preproc_elif_token1] = ACTIONS(3428), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3428), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3428), + [sym_preproc_directive] = ACTIONS(3428), + [anon_sym_LPAREN2] = ACTIONS(3430), + [anon_sym_BANG] = ACTIONS(3430), + [anon_sym_TILDE] = ACTIONS(3430), + [anon_sym_DASH] = ACTIONS(3428), + [anon_sym_PLUS] = ACTIONS(3428), + [anon_sym_STAR] = ACTIONS(3430), + [anon_sym_AMP_AMP] = ACTIONS(3430), + [anon_sym_AMP] = ACTIONS(3428), + [anon_sym_SEMI] = ACTIONS(3430), + [anon_sym___extension__] = ACTIONS(3428), + [anon_sym_typedef] = ACTIONS(3428), + [anon_sym_extern] = ACTIONS(3428), + [anon_sym___attribute__] = ACTIONS(3428), + [anon_sym_COLON_COLON] = ACTIONS(3430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3430), + [anon_sym___declspec] = ACTIONS(3428), + [anon_sym___based] = ACTIONS(3428), + [anon_sym___cdecl] = ACTIONS(3428), + [anon_sym___clrcall] = ACTIONS(3428), + [anon_sym___stdcall] = ACTIONS(3428), + [anon_sym___fastcall] = ACTIONS(3428), + [anon_sym___thiscall] = ACTIONS(3428), + [anon_sym___vectorcall] = ACTIONS(3428), + [anon_sym_LBRACE] = ACTIONS(3430), + [anon_sym_signed] = ACTIONS(3428), + [anon_sym_unsigned] = ACTIONS(3428), + [anon_sym_long] = ACTIONS(3428), + [anon_sym_short] = ACTIONS(3428), + [anon_sym_LBRACK] = ACTIONS(3428), + [anon_sym_static] = ACTIONS(3428), + [anon_sym_register] = ACTIONS(3428), + [anon_sym_inline] = ACTIONS(3428), + [anon_sym___inline] = ACTIONS(3428), + [anon_sym___inline__] = ACTIONS(3428), + [anon_sym___forceinline] = ACTIONS(3428), + [anon_sym_thread_local] = ACTIONS(3428), + [anon_sym___thread] = ACTIONS(3428), + [anon_sym_const] = ACTIONS(3428), + [anon_sym_constexpr] = ACTIONS(3428), + [anon_sym_volatile] = ACTIONS(3428), + [anon_sym_restrict] = ACTIONS(3428), + [anon_sym___restrict__] = ACTIONS(3428), + [anon_sym__Atomic] = ACTIONS(3428), + [anon_sym__Noreturn] = ACTIONS(3428), + [anon_sym_noreturn] = ACTIONS(3428), + [anon_sym_mutable] = ACTIONS(3428), + [anon_sym_constinit] = ACTIONS(3428), + [anon_sym_consteval] = ACTIONS(3428), + [sym_primitive_type] = ACTIONS(3428), + [anon_sym_enum] = ACTIONS(3428), + [anon_sym_class] = ACTIONS(3428), + [anon_sym_struct] = ACTIONS(3428), + [anon_sym_union] = ACTIONS(3428), + [anon_sym_if] = ACTIONS(3428), + [anon_sym_switch] = ACTIONS(3428), + [anon_sym_case] = ACTIONS(3428), + [anon_sym_default] = ACTIONS(3428), + [anon_sym_while] = ACTIONS(3428), + [anon_sym_do] = ACTIONS(3428), + [anon_sym_for] = ACTIONS(3428), + [anon_sym_return] = ACTIONS(3428), + [anon_sym_break] = ACTIONS(3428), + [anon_sym_continue] = ACTIONS(3428), + [anon_sym_goto] = ACTIONS(3428), + [anon_sym___try] = ACTIONS(3428), + [anon_sym___leave] = ACTIONS(3428), + [anon_sym_not] = ACTIONS(3428), + [anon_sym_compl] = ACTIONS(3428), + [anon_sym_DASH_DASH] = ACTIONS(3430), + [anon_sym_PLUS_PLUS] = ACTIONS(3430), + [anon_sym_sizeof] = ACTIONS(3428), + [anon_sym___alignof__] = ACTIONS(3428), + [anon_sym___alignof] = ACTIONS(3428), + [anon_sym__alignof] = ACTIONS(3428), + [anon_sym_alignof] = ACTIONS(3428), + [anon_sym__Alignof] = ACTIONS(3428), + [anon_sym_offsetof] = ACTIONS(3428), + [anon_sym__Generic] = ACTIONS(3428), + [anon_sym_asm] = ACTIONS(3428), + [anon_sym___asm__] = ACTIONS(3428), + [sym_number_literal] = ACTIONS(3430), + [anon_sym_L_SQUOTE] = ACTIONS(3430), + [anon_sym_u_SQUOTE] = ACTIONS(3430), + [anon_sym_U_SQUOTE] = ACTIONS(3430), + [anon_sym_u8_SQUOTE] = ACTIONS(3430), + [anon_sym_SQUOTE] = ACTIONS(3430), + [anon_sym_L_DQUOTE] = ACTIONS(3430), + [anon_sym_u_DQUOTE] = ACTIONS(3430), + [anon_sym_U_DQUOTE] = ACTIONS(3430), + [anon_sym_u8_DQUOTE] = ACTIONS(3430), + [anon_sym_DQUOTE] = ACTIONS(3430), + [sym_true] = ACTIONS(3428), + [sym_false] = ACTIONS(3428), + [anon_sym_NULL] = ACTIONS(3428), + [anon_sym_nullptr] = ACTIONS(3428), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3428), + [anon_sym_decltype] = ACTIONS(3428), + [anon_sym_virtual] = ACTIONS(3428), + [anon_sym_alignas] = ACTIONS(3428), + [anon_sym_explicit] = ACTIONS(3428), + [anon_sym_typename] = ACTIONS(3428), + [anon_sym_template] = ACTIONS(3428), + [anon_sym_operator] = ACTIONS(3428), + [anon_sym_try] = ACTIONS(3428), + [anon_sym_delete] = ACTIONS(3428), + [anon_sym_throw] = ACTIONS(3428), + [anon_sym_namespace] = ACTIONS(3428), + [anon_sym_using] = ACTIONS(3428), + [anon_sym_static_assert] = ACTIONS(3428), + [anon_sym_concept] = ACTIONS(3428), + [anon_sym_co_return] = ACTIONS(3428), + [anon_sym_co_yield] = ACTIONS(3428), + [anon_sym_R_DQUOTE] = ACTIONS(3430), + [anon_sym_LR_DQUOTE] = ACTIONS(3430), + [anon_sym_uR_DQUOTE] = ACTIONS(3430), + [anon_sym_UR_DQUOTE] = ACTIONS(3430), + [anon_sym_u8R_DQUOTE] = ACTIONS(3430), + [anon_sym_co_await] = ACTIONS(3428), + [anon_sym_new] = ACTIONS(3428), + [anon_sym_requires] = ACTIONS(3428), + [sym_this] = ACTIONS(3428), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3430), + [sym_semgrep_named_ellipsis] = ACTIONS(3430), }, [375] = { - [sym_identifier] = ACTIONS(3427), - [aux_sym_preproc_include_token1] = ACTIONS(3427), - [aux_sym_preproc_def_token1] = ACTIONS(3427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3429), - [aux_sym_preproc_if_token1] = ACTIONS(3427), - [aux_sym_preproc_if_token2] = ACTIONS(3427), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3427), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3427), - [aux_sym_preproc_else_token1] = ACTIONS(3427), - [aux_sym_preproc_elif_token1] = ACTIONS(3427), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3427), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3427), - [sym_preproc_directive] = ACTIONS(3427), - [anon_sym_LPAREN2] = ACTIONS(3429), - [anon_sym_BANG] = ACTIONS(3429), - [anon_sym_TILDE] = ACTIONS(3429), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3427), - [anon_sym_STAR] = ACTIONS(3429), - [anon_sym_AMP_AMP] = ACTIONS(3429), - [anon_sym_AMP] = ACTIONS(3427), - [anon_sym_SEMI] = ACTIONS(3429), - [anon_sym___extension__] = ACTIONS(3427), - [anon_sym_typedef] = ACTIONS(3427), - [anon_sym_extern] = ACTIONS(3427), - [anon_sym___attribute__] = ACTIONS(3427), - [anon_sym_COLON_COLON] = ACTIONS(3429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3429), - [anon_sym___declspec] = ACTIONS(3427), - [anon_sym___based] = ACTIONS(3427), - [anon_sym___cdecl] = ACTIONS(3427), - [anon_sym___clrcall] = ACTIONS(3427), - [anon_sym___stdcall] = ACTIONS(3427), - [anon_sym___fastcall] = ACTIONS(3427), - [anon_sym___thiscall] = ACTIONS(3427), - [anon_sym___vectorcall] = ACTIONS(3427), - [anon_sym_LBRACE] = ACTIONS(3429), - [anon_sym_signed] = ACTIONS(3427), - [anon_sym_unsigned] = ACTIONS(3427), - [anon_sym_long] = ACTIONS(3427), - [anon_sym_short] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3427), - [anon_sym_static] = ACTIONS(3427), - [anon_sym_register] = ACTIONS(3427), - [anon_sym_inline] = ACTIONS(3427), - [anon_sym___inline] = ACTIONS(3427), - [anon_sym___inline__] = ACTIONS(3427), - [anon_sym___forceinline] = ACTIONS(3427), - [anon_sym_thread_local] = ACTIONS(3427), - [anon_sym___thread] = ACTIONS(3427), - [anon_sym_const] = ACTIONS(3427), - [anon_sym_constexpr] = ACTIONS(3427), - [anon_sym_volatile] = ACTIONS(3427), - [anon_sym_restrict] = ACTIONS(3427), - [anon_sym___restrict__] = ACTIONS(3427), - [anon_sym__Atomic] = ACTIONS(3427), - [anon_sym__Noreturn] = ACTIONS(3427), - [anon_sym_noreturn] = ACTIONS(3427), - [anon_sym_mutable] = ACTIONS(3427), - [anon_sym_constinit] = ACTIONS(3427), - [anon_sym_consteval] = ACTIONS(3427), - [sym_primitive_type] = ACTIONS(3427), - [anon_sym_enum] = ACTIONS(3427), - [anon_sym_class] = ACTIONS(3427), - [anon_sym_struct] = ACTIONS(3427), - [anon_sym_union] = ACTIONS(3427), - [anon_sym_if] = ACTIONS(3427), - [anon_sym_switch] = ACTIONS(3427), - [anon_sym_case] = ACTIONS(3427), - [anon_sym_default] = ACTIONS(3427), - [anon_sym_while] = ACTIONS(3427), - [anon_sym_do] = ACTIONS(3427), - [anon_sym_for] = ACTIONS(3427), - [anon_sym_return] = ACTIONS(3427), - [anon_sym_break] = ACTIONS(3427), - [anon_sym_continue] = ACTIONS(3427), - [anon_sym_goto] = ACTIONS(3427), - [anon_sym___try] = ACTIONS(3427), - [anon_sym___leave] = ACTIONS(3427), - [anon_sym_not] = ACTIONS(3427), - [anon_sym_compl] = ACTIONS(3427), - [anon_sym_DASH_DASH] = ACTIONS(3429), - [anon_sym_PLUS_PLUS] = ACTIONS(3429), - [anon_sym_sizeof] = ACTIONS(3427), - [anon_sym___alignof__] = ACTIONS(3427), - [anon_sym___alignof] = ACTIONS(3427), - [anon_sym__alignof] = ACTIONS(3427), - [anon_sym_alignof] = ACTIONS(3427), - [anon_sym__Alignof] = ACTIONS(3427), - [anon_sym_offsetof] = ACTIONS(3427), - [anon_sym__Generic] = ACTIONS(3427), - [anon_sym_asm] = ACTIONS(3427), - [anon_sym___asm__] = ACTIONS(3427), - [sym_number_literal] = ACTIONS(3429), - [anon_sym_L_SQUOTE] = ACTIONS(3429), - [anon_sym_u_SQUOTE] = ACTIONS(3429), - [anon_sym_U_SQUOTE] = ACTIONS(3429), - [anon_sym_u8_SQUOTE] = ACTIONS(3429), - [anon_sym_SQUOTE] = ACTIONS(3429), - [anon_sym_L_DQUOTE] = ACTIONS(3429), - [anon_sym_u_DQUOTE] = ACTIONS(3429), - [anon_sym_U_DQUOTE] = ACTIONS(3429), - [anon_sym_u8_DQUOTE] = ACTIONS(3429), - [anon_sym_DQUOTE] = ACTIONS(3429), - [sym_true] = ACTIONS(3427), - [sym_false] = ACTIONS(3427), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3427), - [anon_sym_decltype] = ACTIONS(3427), - [anon_sym_virtual] = ACTIONS(3427), - [anon_sym_alignas] = ACTIONS(3427), - [anon_sym_explicit] = ACTIONS(3427), - [anon_sym_typename] = ACTIONS(3427), - [anon_sym_template] = ACTIONS(3427), - [anon_sym_operator] = ACTIONS(3427), - [anon_sym_try] = ACTIONS(3427), - [anon_sym_delete] = ACTIONS(3427), - [anon_sym_throw] = ACTIONS(3427), - [anon_sym_namespace] = ACTIONS(3427), - [anon_sym_using] = ACTIONS(3427), - [anon_sym_static_assert] = ACTIONS(3427), - [anon_sym_concept] = ACTIONS(3427), - [anon_sym_co_return] = ACTIONS(3427), - [anon_sym_co_yield] = ACTIONS(3427), - [anon_sym_R_DQUOTE] = ACTIONS(3429), - [anon_sym_LR_DQUOTE] = ACTIONS(3429), - [anon_sym_uR_DQUOTE] = ACTIONS(3429), - [anon_sym_UR_DQUOTE] = ACTIONS(3429), - [anon_sym_u8R_DQUOTE] = ACTIONS(3429), - [anon_sym_co_await] = ACTIONS(3427), - [anon_sym_new] = ACTIONS(3427), - [anon_sym_requires] = ACTIONS(3427), - [sym_this] = ACTIONS(3427), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3429), - [sym_semgrep_named_ellipsis] = ACTIONS(3429), + [sym_type_qualifier] = STATE(4685), + [sym_type_specifier] = STATE(5782), + [sym_sized_type_specifier] = STATE(3293), + [sym_enum_specifier] = STATE(3293), + [sym_struct_specifier] = STATE(3293), + [sym_union_specifier] = STATE(3293), + [sym_expression] = STATE(5067), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_type_descriptor] = STATE(8052), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_placeholder_type_specifier] = STATE(3293), + [sym_decltype_auto] = STATE(3292), + [sym_decltype] = STATE(2572), + [sym_class_specifier] = STATE(3293), + [sym_class_name] = STATE(8965), + [sym_dependent_type] = STATE(3293), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_type_parameter_pack_expansion] = STATE(8346), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6620), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(6338), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [aux_sym_type_definition_type_repeat1] = STATE(4685), + [aux_sym_sized_type_specifier_repeat1] = STATE(2573), + [sym_identifier] = ACTIONS(3310), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_signed] = ACTIONS(3324), + [anon_sym_unsigned] = ACTIONS(3324), + [anon_sym_long] = ACTIONS(3324), + [anon_sym_short] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3330), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_union] = ACTIONS(3334), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3358), + [anon_sym_decltype] = ACTIONS(3360), + [anon_sym_typename] = ACTIONS(3362), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_GT2] = ACTIONS(3432), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), }, [376] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5550), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8268), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(8664), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3431), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [sym_identifier] = ACTIONS(3434), + [aux_sym_preproc_include_token1] = ACTIONS(3434), + [aux_sym_preproc_def_token1] = ACTIONS(3434), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3436), + [aux_sym_preproc_if_token1] = ACTIONS(3434), + [aux_sym_preproc_if_token2] = ACTIONS(3434), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3434), + [aux_sym_preproc_else_token1] = ACTIONS(3434), + [aux_sym_preproc_elif_token1] = ACTIONS(3434), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3434), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3434), + [sym_preproc_directive] = ACTIONS(3434), + [anon_sym_LPAREN2] = ACTIONS(3436), + [anon_sym_BANG] = ACTIONS(3436), + [anon_sym_TILDE] = ACTIONS(3436), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_STAR] = ACTIONS(3436), + [anon_sym_AMP_AMP] = ACTIONS(3436), + [anon_sym_AMP] = ACTIONS(3434), + [anon_sym_SEMI] = ACTIONS(3436), + [anon_sym___extension__] = ACTIONS(3434), + [anon_sym_typedef] = ACTIONS(3434), + [anon_sym_extern] = ACTIONS(3434), + [anon_sym___attribute__] = ACTIONS(3434), + [anon_sym_COLON_COLON] = ACTIONS(3436), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3436), + [anon_sym___declspec] = ACTIONS(3434), + [anon_sym___based] = ACTIONS(3434), + [anon_sym___cdecl] = ACTIONS(3434), + [anon_sym___clrcall] = ACTIONS(3434), + [anon_sym___stdcall] = ACTIONS(3434), + [anon_sym___fastcall] = ACTIONS(3434), + [anon_sym___thiscall] = ACTIONS(3434), + [anon_sym___vectorcall] = ACTIONS(3434), + [anon_sym_LBRACE] = ACTIONS(3436), + [anon_sym_signed] = ACTIONS(3434), + [anon_sym_unsigned] = ACTIONS(3434), + [anon_sym_long] = ACTIONS(3434), + [anon_sym_short] = ACTIONS(3434), + [anon_sym_LBRACK] = ACTIONS(3434), + [anon_sym_static] = ACTIONS(3434), + [anon_sym_register] = ACTIONS(3434), + [anon_sym_inline] = ACTIONS(3434), + [anon_sym___inline] = ACTIONS(3434), + [anon_sym___inline__] = ACTIONS(3434), + [anon_sym___forceinline] = ACTIONS(3434), + [anon_sym_thread_local] = ACTIONS(3434), + [anon_sym___thread] = ACTIONS(3434), + [anon_sym_const] = ACTIONS(3434), + [anon_sym_constexpr] = ACTIONS(3434), + [anon_sym_volatile] = ACTIONS(3434), + [anon_sym_restrict] = ACTIONS(3434), + [anon_sym___restrict__] = ACTIONS(3434), + [anon_sym__Atomic] = ACTIONS(3434), + [anon_sym__Noreturn] = ACTIONS(3434), + [anon_sym_noreturn] = ACTIONS(3434), + [anon_sym_mutable] = ACTIONS(3434), + [anon_sym_constinit] = ACTIONS(3434), + [anon_sym_consteval] = ACTIONS(3434), + [sym_primitive_type] = ACTIONS(3434), + [anon_sym_enum] = ACTIONS(3434), + [anon_sym_class] = ACTIONS(3434), + [anon_sym_struct] = ACTIONS(3434), + [anon_sym_union] = ACTIONS(3434), + [anon_sym_if] = ACTIONS(3434), + [anon_sym_switch] = ACTIONS(3434), + [anon_sym_case] = ACTIONS(3434), + [anon_sym_default] = ACTIONS(3434), + [anon_sym_while] = ACTIONS(3434), + [anon_sym_do] = ACTIONS(3434), + [anon_sym_for] = ACTIONS(3434), + [anon_sym_return] = ACTIONS(3434), + [anon_sym_break] = ACTIONS(3434), + [anon_sym_continue] = ACTIONS(3434), + [anon_sym_goto] = ACTIONS(3434), + [anon_sym___try] = ACTIONS(3434), + [anon_sym___leave] = ACTIONS(3434), + [anon_sym_not] = ACTIONS(3434), + [anon_sym_compl] = ACTIONS(3434), + [anon_sym_DASH_DASH] = ACTIONS(3436), + [anon_sym_PLUS_PLUS] = ACTIONS(3436), + [anon_sym_sizeof] = ACTIONS(3434), + [anon_sym___alignof__] = ACTIONS(3434), + [anon_sym___alignof] = ACTIONS(3434), + [anon_sym__alignof] = ACTIONS(3434), + [anon_sym_alignof] = ACTIONS(3434), + [anon_sym__Alignof] = ACTIONS(3434), + [anon_sym_offsetof] = ACTIONS(3434), + [anon_sym__Generic] = ACTIONS(3434), + [anon_sym_asm] = ACTIONS(3434), + [anon_sym___asm__] = ACTIONS(3434), + [sym_number_literal] = ACTIONS(3436), + [anon_sym_L_SQUOTE] = ACTIONS(3436), + [anon_sym_u_SQUOTE] = ACTIONS(3436), + [anon_sym_U_SQUOTE] = ACTIONS(3436), + [anon_sym_u8_SQUOTE] = ACTIONS(3436), + [anon_sym_SQUOTE] = ACTIONS(3436), + [anon_sym_L_DQUOTE] = ACTIONS(3436), + [anon_sym_u_DQUOTE] = ACTIONS(3436), + [anon_sym_U_DQUOTE] = ACTIONS(3436), + [anon_sym_u8_DQUOTE] = ACTIONS(3436), + [anon_sym_DQUOTE] = ACTIONS(3436), + [sym_true] = ACTIONS(3434), + [sym_false] = ACTIONS(3434), + [anon_sym_NULL] = ACTIONS(3434), + [anon_sym_nullptr] = ACTIONS(3434), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3434), + [anon_sym_decltype] = ACTIONS(3434), + [anon_sym_virtual] = ACTIONS(3434), + [anon_sym_alignas] = ACTIONS(3434), + [anon_sym_explicit] = ACTIONS(3434), + [anon_sym_typename] = ACTIONS(3434), + [anon_sym_template] = ACTIONS(3434), + [anon_sym_operator] = ACTIONS(3434), + [anon_sym_try] = ACTIONS(3434), + [anon_sym_delete] = ACTIONS(3434), + [anon_sym_throw] = ACTIONS(3434), + [anon_sym_namespace] = ACTIONS(3434), + [anon_sym_using] = ACTIONS(3434), + [anon_sym_static_assert] = ACTIONS(3434), + [anon_sym_concept] = ACTIONS(3434), + [anon_sym_co_return] = ACTIONS(3434), + [anon_sym_co_yield] = ACTIONS(3434), + [anon_sym_R_DQUOTE] = ACTIONS(3436), + [anon_sym_LR_DQUOTE] = ACTIONS(3436), + [anon_sym_uR_DQUOTE] = ACTIONS(3436), + [anon_sym_UR_DQUOTE] = ACTIONS(3436), + [anon_sym_u8R_DQUOTE] = ACTIONS(3436), + [anon_sym_co_await] = ACTIONS(3434), + [anon_sym_new] = ACTIONS(3434), + [anon_sym_requires] = ACTIONS(3434), + [sym_this] = ACTIONS(3434), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3436), + [sym_semgrep_named_ellipsis] = ACTIONS(3436), }, [377] = { - [sym_identifier] = ACTIONS(3433), - [aux_sym_preproc_include_token1] = ACTIONS(3433), - [aux_sym_preproc_def_token1] = ACTIONS(3433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3435), - [aux_sym_preproc_if_token1] = ACTIONS(3433), - [aux_sym_preproc_if_token2] = ACTIONS(3433), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3433), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3433), - [aux_sym_preproc_else_token1] = ACTIONS(3433), - [aux_sym_preproc_elif_token1] = ACTIONS(3433), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3433), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3433), - [sym_preproc_directive] = ACTIONS(3433), - [anon_sym_LPAREN2] = ACTIONS(3435), - [anon_sym_BANG] = ACTIONS(3435), - [anon_sym_TILDE] = ACTIONS(3435), - [anon_sym_DASH] = ACTIONS(3433), - [anon_sym_PLUS] = ACTIONS(3433), - [anon_sym_STAR] = ACTIONS(3435), - [anon_sym_AMP_AMP] = ACTIONS(3435), - [anon_sym_AMP] = ACTIONS(3433), - [anon_sym_SEMI] = ACTIONS(3435), - [anon_sym___extension__] = ACTIONS(3433), - [anon_sym_typedef] = ACTIONS(3433), - [anon_sym_extern] = ACTIONS(3433), - [anon_sym___attribute__] = ACTIONS(3433), - [anon_sym_COLON_COLON] = ACTIONS(3435), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3435), - [anon_sym___declspec] = ACTIONS(3433), - [anon_sym___based] = ACTIONS(3433), - [anon_sym___cdecl] = ACTIONS(3433), - [anon_sym___clrcall] = ACTIONS(3433), - [anon_sym___stdcall] = ACTIONS(3433), - [anon_sym___fastcall] = ACTIONS(3433), - [anon_sym___thiscall] = ACTIONS(3433), - [anon_sym___vectorcall] = ACTIONS(3433), - [anon_sym_LBRACE] = ACTIONS(3435), - [anon_sym_signed] = ACTIONS(3433), - [anon_sym_unsigned] = ACTIONS(3433), - [anon_sym_long] = ACTIONS(3433), - [anon_sym_short] = ACTIONS(3433), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_static] = ACTIONS(3433), - [anon_sym_register] = ACTIONS(3433), - [anon_sym_inline] = ACTIONS(3433), - [anon_sym___inline] = ACTIONS(3433), - [anon_sym___inline__] = ACTIONS(3433), - [anon_sym___forceinline] = ACTIONS(3433), - [anon_sym_thread_local] = ACTIONS(3433), - [anon_sym___thread] = ACTIONS(3433), - [anon_sym_const] = ACTIONS(3433), - [anon_sym_constexpr] = ACTIONS(3433), - [anon_sym_volatile] = ACTIONS(3433), - [anon_sym_restrict] = ACTIONS(3433), - [anon_sym___restrict__] = ACTIONS(3433), - [anon_sym__Atomic] = ACTIONS(3433), - [anon_sym__Noreturn] = ACTIONS(3433), - [anon_sym_noreturn] = ACTIONS(3433), - [anon_sym_mutable] = ACTIONS(3433), - [anon_sym_constinit] = ACTIONS(3433), - [anon_sym_consteval] = ACTIONS(3433), - [sym_primitive_type] = ACTIONS(3433), - [anon_sym_enum] = ACTIONS(3433), - [anon_sym_class] = ACTIONS(3433), - [anon_sym_struct] = ACTIONS(3433), - [anon_sym_union] = ACTIONS(3433), - [anon_sym_if] = ACTIONS(3433), - [anon_sym_switch] = ACTIONS(3433), - [anon_sym_case] = ACTIONS(3433), - [anon_sym_default] = ACTIONS(3433), - [anon_sym_while] = ACTIONS(3433), - [anon_sym_do] = ACTIONS(3433), - [anon_sym_for] = ACTIONS(3433), - [anon_sym_return] = ACTIONS(3433), - [anon_sym_break] = ACTIONS(3433), - [anon_sym_continue] = ACTIONS(3433), - [anon_sym_goto] = ACTIONS(3433), - [anon_sym___try] = ACTIONS(3433), - [anon_sym___leave] = ACTIONS(3433), - [anon_sym_not] = ACTIONS(3433), - [anon_sym_compl] = ACTIONS(3433), - [anon_sym_DASH_DASH] = ACTIONS(3435), - [anon_sym_PLUS_PLUS] = ACTIONS(3435), - [anon_sym_sizeof] = ACTIONS(3433), - [anon_sym___alignof__] = ACTIONS(3433), - [anon_sym___alignof] = ACTIONS(3433), - [anon_sym__alignof] = ACTIONS(3433), - [anon_sym_alignof] = ACTIONS(3433), - [anon_sym__Alignof] = ACTIONS(3433), - [anon_sym_offsetof] = ACTIONS(3433), - [anon_sym__Generic] = ACTIONS(3433), - [anon_sym_asm] = ACTIONS(3433), - [anon_sym___asm__] = ACTIONS(3433), - [sym_number_literal] = ACTIONS(3435), - [anon_sym_L_SQUOTE] = ACTIONS(3435), - [anon_sym_u_SQUOTE] = ACTIONS(3435), - [anon_sym_U_SQUOTE] = ACTIONS(3435), - [anon_sym_u8_SQUOTE] = ACTIONS(3435), - [anon_sym_SQUOTE] = ACTIONS(3435), - [anon_sym_L_DQUOTE] = ACTIONS(3435), - [anon_sym_u_DQUOTE] = ACTIONS(3435), - [anon_sym_U_DQUOTE] = ACTIONS(3435), - [anon_sym_u8_DQUOTE] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(3435), - [sym_true] = ACTIONS(3433), - [sym_false] = ACTIONS(3433), - [anon_sym_NULL] = ACTIONS(3433), - [anon_sym_nullptr] = ACTIONS(3433), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3433), - [anon_sym_decltype] = ACTIONS(3433), - [anon_sym_virtual] = ACTIONS(3433), - [anon_sym_alignas] = ACTIONS(3433), - [anon_sym_explicit] = ACTIONS(3433), - [anon_sym_typename] = ACTIONS(3433), - [anon_sym_template] = ACTIONS(3433), - [anon_sym_operator] = ACTIONS(3433), - [anon_sym_try] = ACTIONS(3433), - [anon_sym_delete] = ACTIONS(3433), - [anon_sym_throw] = ACTIONS(3433), - [anon_sym_namespace] = ACTIONS(3433), - [anon_sym_using] = ACTIONS(3433), - [anon_sym_static_assert] = ACTIONS(3433), - [anon_sym_concept] = ACTIONS(3433), - [anon_sym_co_return] = ACTIONS(3433), - [anon_sym_co_yield] = ACTIONS(3433), - [anon_sym_R_DQUOTE] = ACTIONS(3435), - [anon_sym_LR_DQUOTE] = ACTIONS(3435), - [anon_sym_uR_DQUOTE] = ACTIONS(3435), - [anon_sym_UR_DQUOTE] = ACTIONS(3435), - [anon_sym_u8R_DQUOTE] = ACTIONS(3435), - [anon_sym_co_await] = ACTIONS(3433), - [anon_sym_new] = ACTIONS(3433), - [anon_sym_requires] = ACTIONS(3433), - [sym_this] = ACTIONS(3433), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3435), - [sym_semgrep_named_ellipsis] = ACTIONS(3435), + [sym_identifier] = ACTIONS(3438), + [aux_sym_preproc_include_token1] = ACTIONS(3438), + [aux_sym_preproc_def_token1] = ACTIONS(3438), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3440), + [aux_sym_preproc_if_token1] = ACTIONS(3438), + [aux_sym_preproc_if_token2] = ACTIONS(3438), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3438), + [aux_sym_preproc_else_token1] = ACTIONS(3438), + [aux_sym_preproc_elif_token1] = ACTIONS(3438), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3438), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3438), + [sym_preproc_directive] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_BANG] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3440), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_STAR] = ACTIONS(3440), + [anon_sym_AMP_AMP] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_SEMI] = ACTIONS(3440), + [anon_sym___extension__] = ACTIONS(3438), + [anon_sym_typedef] = ACTIONS(3438), + [anon_sym_extern] = ACTIONS(3438), + [anon_sym___attribute__] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3440), + [anon_sym___declspec] = ACTIONS(3438), + [anon_sym___based] = ACTIONS(3438), + [anon_sym___cdecl] = ACTIONS(3438), + [anon_sym___clrcall] = ACTIONS(3438), + [anon_sym___stdcall] = ACTIONS(3438), + [anon_sym___fastcall] = ACTIONS(3438), + [anon_sym___thiscall] = ACTIONS(3438), + [anon_sym___vectorcall] = ACTIONS(3438), + [anon_sym_LBRACE] = ACTIONS(3440), + [anon_sym_signed] = ACTIONS(3438), + [anon_sym_unsigned] = ACTIONS(3438), + [anon_sym_long] = ACTIONS(3438), + [anon_sym_short] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_static] = ACTIONS(3438), + [anon_sym_register] = ACTIONS(3438), + [anon_sym_inline] = ACTIONS(3438), + [anon_sym___inline] = ACTIONS(3438), + [anon_sym___inline__] = ACTIONS(3438), + [anon_sym___forceinline] = ACTIONS(3438), + [anon_sym_thread_local] = ACTIONS(3438), + [anon_sym___thread] = ACTIONS(3438), + [anon_sym_const] = ACTIONS(3438), + [anon_sym_constexpr] = ACTIONS(3438), + [anon_sym_volatile] = ACTIONS(3438), + [anon_sym_restrict] = ACTIONS(3438), + [anon_sym___restrict__] = ACTIONS(3438), + [anon_sym__Atomic] = ACTIONS(3438), + [anon_sym__Noreturn] = ACTIONS(3438), + [anon_sym_noreturn] = ACTIONS(3438), + [anon_sym_mutable] = ACTIONS(3438), + [anon_sym_constinit] = ACTIONS(3438), + [anon_sym_consteval] = ACTIONS(3438), + [sym_primitive_type] = ACTIONS(3438), + [anon_sym_enum] = ACTIONS(3438), + [anon_sym_class] = ACTIONS(3438), + [anon_sym_struct] = ACTIONS(3438), + [anon_sym_union] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_switch] = ACTIONS(3438), + [anon_sym_case] = ACTIONS(3438), + [anon_sym_default] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_break] = ACTIONS(3438), + [anon_sym_continue] = ACTIONS(3438), + [anon_sym_goto] = ACTIONS(3438), + [anon_sym___try] = ACTIONS(3438), + [anon_sym___leave] = ACTIONS(3438), + [anon_sym_not] = ACTIONS(3438), + [anon_sym_compl] = ACTIONS(3438), + [anon_sym_DASH_DASH] = ACTIONS(3440), + [anon_sym_PLUS_PLUS] = ACTIONS(3440), + [anon_sym_sizeof] = ACTIONS(3438), + [anon_sym___alignof__] = ACTIONS(3438), + [anon_sym___alignof] = ACTIONS(3438), + [anon_sym__alignof] = ACTIONS(3438), + [anon_sym_alignof] = ACTIONS(3438), + [anon_sym__Alignof] = ACTIONS(3438), + [anon_sym_offsetof] = ACTIONS(3438), + [anon_sym__Generic] = ACTIONS(3438), + [anon_sym_asm] = ACTIONS(3438), + [anon_sym___asm__] = ACTIONS(3438), + [sym_number_literal] = ACTIONS(3440), + [anon_sym_L_SQUOTE] = ACTIONS(3440), + [anon_sym_u_SQUOTE] = ACTIONS(3440), + [anon_sym_U_SQUOTE] = ACTIONS(3440), + [anon_sym_u8_SQUOTE] = ACTIONS(3440), + [anon_sym_SQUOTE] = ACTIONS(3440), + [anon_sym_L_DQUOTE] = ACTIONS(3440), + [anon_sym_u_DQUOTE] = ACTIONS(3440), + [anon_sym_U_DQUOTE] = ACTIONS(3440), + [anon_sym_u8_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE] = ACTIONS(3440), + [sym_true] = ACTIONS(3438), + [sym_false] = ACTIONS(3438), + [anon_sym_NULL] = ACTIONS(3438), + [anon_sym_nullptr] = ACTIONS(3438), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3438), + [anon_sym_decltype] = ACTIONS(3438), + [anon_sym_virtual] = ACTIONS(3438), + [anon_sym_alignas] = ACTIONS(3438), + [anon_sym_explicit] = ACTIONS(3438), + [anon_sym_typename] = ACTIONS(3438), + [anon_sym_template] = ACTIONS(3438), + [anon_sym_operator] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_delete] = ACTIONS(3438), + [anon_sym_throw] = ACTIONS(3438), + [anon_sym_namespace] = ACTIONS(3438), + [anon_sym_using] = ACTIONS(3438), + [anon_sym_static_assert] = ACTIONS(3438), + [anon_sym_concept] = ACTIONS(3438), + [anon_sym_co_return] = ACTIONS(3438), + [anon_sym_co_yield] = ACTIONS(3438), + [anon_sym_R_DQUOTE] = ACTIONS(3440), + [anon_sym_LR_DQUOTE] = ACTIONS(3440), + [anon_sym_uR_DQUOTE] = ACTIONS(3440), + [anon_sym_UR_DQUOTE] = ACTIONS(3440), + [anon_sym_u8R_DQUOTE] = ACTIONS(3440), + [anon_sym_co_await] = ACTIONS(3438), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_requires] = ACTIONS(3438), + [sym_this] = ACTIONS(3438), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3440), + [sym_semgrep_named_ellipsis] = ACTIONS(3440), }, [378] = { - [sym_identifier] = ACTIONS(3437), - [aux_sym_preproc_include_token1] = ACTIONS(3437), - [aux_sym_preproc_def_token1] = ACTIONS(3437), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3439), - [aux_sym_preproc_if_token1] = ACTIONS(3437), - [aux_sym_preproc_if_token2] = ACTIONS(3437), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3437), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3437), - [aux_sym_preproc_else_token1] = ACTIONS(3437), - [aux_sym_preproc_elif_token1] = ACTIONS(3437), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3437), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3437), - [sym_preproc_directive] = ACTIONS(3437), - [anon_sym_LPAREN2] = ACTIONS(3439), - [anon_sym_BANG] = ACTIONS(3439), - [anon_sym_TILDE] = ACTIONS(3439), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_STAR] = ACTIONS(3439), - [anon_sym_AMP_AMP] = ACTIONS(3439), - [anon_sym_AMP] = ACTIONS(3437), - [anon_sym_SEMI] = ACTIONS(3439), - [anon_sym___extension__] = ACTIONS(3437), - [anon_sym_typedef] = ACTIONS(3437), - [anon_sym_extern] = ACTIONS(3437), - [anon_sym___attribute__] = ACTIONS(3437), - [anon_sym_COLON_COLON] = ACTIONS(3439), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3439), - [anon_sym___declspec] = ACTIONS(3437), - [anon_sym___based] = ACTIONS(3437), - [anon_sym___cdecl] = ACTIONS(3437), - [anon_sym___clrcall] = ACTIONS(3437), - [anon_sym___stdcall] = ACTIONS(3437), - [anon_sym___fastcall] = ACTIONS(3437), - [anon_sym___thiscall] = ACTIONS(3437), - [anon_sym___vectorcall] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3439), - [anon_sym_signed] = ACTIONS(3437), - [anon_sym_unsigned] = ACTIONS(3437), - [anon_sym_long] = ACTIONS(3437), - [anon_sym_short] = ACTIONS(3437), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_static] = ACTIONS(3437), - [anon_sym_register] = ACTIONS(3437), - [anon_sym_inline] = ACTIONS(3437), - [anon_sym___inline] = ACTIONS(3437), - [anon_sym___inline__] = ACTIONS(3437), - [anon_sym___forceinline] = ACTIONS(3437), - [anon_sym_thread_local] = ACTIONS(3437), - [anon_sym___thread] = ACTIONS(3437), - [anon_sym_const] = ACTIONS(3437), - [anon_sym_constexpr] = ACTIONS(3437), - [anon_sym_volatile] = ACTIONS(3437), - [anon_sym_restrict] = ACTIONS(3437), - [anon_sym___restrict__] = ACTIONS(3437), - [anon_sym__Atomic] = ACTIONS(3437), - [anon_sym__Noreturn] = ACTIONS(3437), - [anon_sym_noreturn] = ACTIONS(3437), - [anon_sym_mutable] = ACTIONS(3437), - [anon_sym_constinit] = ACTIONS(3437), - [anon_sym_consteval] = ACTIONS(3437), - [sym_primitive_type] = ACTIONS(3437), - [anon_sym_enum] = ACTIONS(3437), - [anon_sym_class] = ACTIONS(3437), - [anon_sym_struct] = ACTIONS(3437), - [anon_sym_union] = ACTIONS(3437), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_switch] = ACTIONS(3437), - [anon_sym_case] = ACTIONS(3437), - [anon_sym_default] = ACTIONS(3437), - [anon_sym_while] = ACTIONS(3437), - [anon_sym_do] = ACTIONS(3437), - [anon_sym_for] = ACTIONS(3437), - [anon_sym_return] = ACTIONS(3437), - [anon_sym_break] = ACTIONS(3437), - [anon_sym_continue] = ACTIONS(3437), - [anon_sym_goto] = ACTIONS(3437), - [anon_sym___try] = ACTIONS(3437), - [anon_sym___leave] = ACTIONS(3437), - [anon_sym_not] = ACTIONS(3437), - [anon_sym_compl] = ACTIONS(3437), - [anon_sym_DASH_DASH] = ACTIONS(3439), - [anon_sym_PLUS_PLUS] = ACTIONS(3439), - [anon_sym_sizeof] = ACTIONS(3437), - [anon_sym___alignof__] = ACTIONS(3437), - [anon_sym___alignof] = ACTIONS(3437), - [anon_sym__alignof] = ACTIONS(3437), - [anon_sym_alignof] = ACTIONS(3437), - [anon_sym__Alignof] = ACTIONS(3437), - [anon_sym_offsetof] = ACTIONS(3437), - [anon_sym__Generic] = ACTIONS(3437), - [anon_sym_asm] = ACTIONS(3437), - [anon_sym___asm__] = ACTIONS(3437), - [sym_number_literal] = ACTIONS(3439), - [anon_sym_L_SQUOTE] = ACTIONS(3439), - [anon_sym_u_SQUOTE] = ACTIONS(3439), - [anon_sym_U_SQUOTE] = ACTIONS(3439), - [anon_sym_u8_SQUOTE] = ACTIONS(3439), - [anon_sym_SQUOTE] = ACTIONS(3439), - [anon_sym_L_DQUOTE] = ACTIONS(3439), - [anon_sym_u_DQUOTE] = ACTIONS(3439), - [anon_sym_U_DQUOTE] = ACTIONS(3439), - [anon_sym_u8_DQUOTE] = ACTIONS(3439), - [anon_sym_DQUOTE] = ACTIONS(3439), - [sym_true] = ACTIONS(3437), - [sym_false] = ACTIONS(3437), - [anon_sym_NULL] = ACTIONS(3437), - [anon_sym_nullptr] = ACTIONS(3437), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3437), - [anon_sym_decltype] = ACTIONS(3437), - [anon_sym_virtual] = ACTIONS(3437), - [anon_sym_alignas] = ACTIONS(3437), - [anon_sym_explicit] = ACTIONS(3437), - [anon_sym_typename] = ACTIONS(3437), - [anon_sym_template] = ACTIONS(3437), - [anon_sym_operator] = ACTIONS(3437), - [anon_sym_try] = ACTIONS(3437), - [anon_sym_delete] = ACTIONS(3437), - [anon_sym_throw] = ACTIONS(3437), - [anon_sym_namespace] = ACTIONS(3437), - [anon_sym_using] = ACTIONS(3437), - [anon_sym_static_assert] = ACTIONS(3437), - [anon_sym_concept] = ACTIONS(3437), - [anon_sym_co_return] = ACTIONS(3437), - [anon_sym_co_yield] = ACTIONS(3437), - [anon_sym_R_DQUOTE] = ACTIONS(3439), - [anon_sym_LR_DQUOTE] = ACTIONS(3439), - [anon_sym_uR_DQUOTE] = ACTIONS(3439), - [anon_sym_UR_DQUOTE] = ACTIONS(3439), - [anon_sym_u8R_DQUOTE] = ACTIONS(3439), - [anon_sym_co_await] = ACTIONS(3437), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3437), - [sym_this] = ACTIONS(3437), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3439), - [sym_semgrep_named_ellipsis] = ACTIONS(3439), + [sym_identifier] = ACTIONS(3442), + [aux_sym_preproc_include_token1] = ACTIONS(3442), + [aux_sym_preproc_def_token1] = ACTIONS(3442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3444), + [aux_sym_preproc_if_token1] = ACTIONS(3442), + [aux_sym_preproc_if_token2] = ACTIONS(3442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3442), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3442), + [aux_sym_preproc_else_token1] = ACTIONS(3442), + [aux_sym_preproc_elif_token1] = ACTIONS(3442), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3442), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3442), + [sym_preproc_directive] = ACTIONS(3442), + [anon_sym_LPAREN2] = ACTIONS(3444), + [anon_sym_BANG] = ACTIONS(3444), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), + [anon_sym_AMP_AMP] = ACTIONS(3444), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym_SEMI] = ACTIONS(3444), + [anon_sym___extension__] = ACTIONS(3442), + [anon_sym_typedef] = ACTIONS(3442), + [anon_sym_extern] = ACTIONS(3442), + [anon_sym___attribute__] = ACTIONS(3442), + [anon_sym_COLON_COLON] = ACTIONS(3444), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3444), + [anon_sym___declspec] = ACTIONS(3442), + [anon_sym___based] = ACTIONS(3442), + [anon_sym___cdecl] = ACTIONS(3442), + [anon_sym___clrcall] = ACTIONS(3442), + [anon_sym___stdcall] = ACTIONS(3442), + [anon_sym___fastcall] = ACTIONS(3442), + [anon_sym___thiscall] = ACTIONS(3442), + [anon_sym___vectorcall] = ACTIONS(3442), + [anon_sym_LBRACE] = ACTIONS(3444), + [anon_sym_signed] = ACTIONS(3442), + [anon_sym_unsigned] = ACTIONS(3442), + [anon_sym_long] = ACTIONS(3442), + [anon_sym_short] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_static] = ACTIONS(3442), + [anon_sym_register] = ACTIONS(3442), + [anon_sym_inline] = ACTIONS(3442), + [anon_sym___inline] = ACTIONS(3442), + [anon_sym___inline__] = ACTIONS(3442), + [anon_sym___forceinline] = ACTIONS(3442), + [anon_sym_thread_local] = ACTIONS(3442), + [anon_sym___thread] = ACTIONS(3442), + [anon_sym_const] = ACTIONS(3442), + [anon_sym_constexpr] = ACTIONS(3442), + [anon_sym_volatile] = ACTIONS(3442), + [anon_sym_restrict] = ACTIONS(3442), + [anon_sym___restrict__] = ACTIONS(3442), + [anon_sym__Atomic] = ACTIONS(3442), + [anon_sym__Noreturn] = ACTIONS(3442), + [anon_sym_noreturn] = ACTIONS(3442), + [anon_sym_mutable] = ACTIONS(3442), + [anon_sym_constinit] = ACTIONS(3442), + [anon_sym_consteval] = ACTIONS(3442), + [sym_primitive_type] = ACTIONS(3442), + [anon_sym_enum] = ACTIONS(3442), + [anon_sym_class] = ACTIONS(3442), + [anon_sym_struct] = ACTIONS(3442), + [anon_sym_union] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_switch] = ACTIONS(3442), + [anon_sym_case] = ACTIONS(3442), + [anon_sym_default] = ACTIONS(3442), + [anon_sym_while] = ACTIONS(3442), + [anon_sym_do] = ACTIONS(3442), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3442), + [anon_sym_break] = ACTIONS(3442), + [anon_sym_continue] = ACTIONS(3442), + [anon_sym_goto] = ACTIONS(3442), + [anon_sym___try] = ACTIONS(3442), + [anon_sym___leave] = ACTIONS(3442), + [anon_sym_not] = ACTIONS(3442), + [anon_sym_compl] = ACTIONS(3442), + [anon_sym_DASH_DASH] = ACTIONS(3444), + [anon_sym_PLUS_PLUS] = ACTIONS(3444), + [anon_sym_sizeof] = ACTIONS(3442), + [anon_sym___alignof__] = ACTIONS(3442), + [anon_sym___alignof] = ACTIONS(3442), + [anon_sym__alignof] = ACTIONS(3442), + [anon_sym_alignof] = ACTIONS(3442), + [anon_sym__Alignof] = ACTIONS(3442), + [anon_sym_offsetof] = ACTIONS(3442), + [anon_sym__Generic] = ACTIONS(3442), + [anon_sym_asm] = ACTIONS(3442), + [anon_sym___asm__] = ACTIONS(3442), + [sym_number_literal] = ACTIONS(3444), + [anon_sym_L_SQUOTE] = ACTIONS(3444), + [anon_sym_u_SQUOTE] = ACTIONS(3444), + [anon_sym_U_SQUOTE] = ACTIONS(3444), + [anon_sym_u8_SQUOTE] = ACTIONS(3444), + [anon_sym_SQUOTE] = ACTIONS(3444), + [anon_sym_L_DQUOTE] = ACTIONS(3444), + [anon_sym_u_DQUOTE] = ACTIONS(3444), + [anon_sym_U_DQUOTE] = ACTIONS(3444), + [anon_sym_u8_DQUOTE] = ACTIONS(3444), + [anon_sym_DQUOTE] = ACTIONS(3444), + [sym_true] = ACTIONS(3442), + [sym_false] = ACTIONS(3442), + [anon_sym_NULL] = ACTIONS(3442), + [anon_sym_nullptr] = ACTIONS(3442), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3442), + [anon_sym_decltype] = ACTIONS(3442), + [anon_sym_virtual] = ACTIONS(3442), + [anon_sym_alignas] = ACTIONS(3442), + [anon_sym_explicit] = ACTIONS(3442), + [anon_sym_typename] = ACTIONS(3442), + [anon_sym_template] = ACTIONS(3442), + [anon_sym_operator] = ACTIONS(3442), + [anon_sym_try] = ACTIONS(3442), + [anon_sym_delete] = ACTIONS(3442), + [anon_sym_throw] = ACTIONS(3442), + [anon_sym_namespace] = ACTIONS(3442), + [anon_sym_using] = ACTIONS(3442), + [anon_sym_static_assert] = ACTIONS(3442), + [anon_sym_concept] = ACTIONS(3442), + [anon_sym_co_return] = ACTIONS(3442), + [anon_sym_co_yield] = ACTIONS(3442), + [anon_sym_R_DQUOTE] = ACTIONS(3444), + [anon_sym_LR_DQUOTE] = ACTIONS(3444), + [anon_sym_uR_DQUOTE] = ACTIONS(3444), + [anon_sym_UR_DQUOTE] = ACTIONS(3444), + [anon_sym_u8R_DQUOTE] = ACTIONS(3444), + [anon_sym_co_await] = ACTIONS(3442), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_requires] = ACTIONS(3442), + [sym_this] = ACTIONS(3442), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3444), + [sym_semgrep_named_ellipsis] = ACTIONS(3444), }, [379] = { - [sym_identifier] = ACTIONS(3441), - [aux_sym_preproc_include_token1] = ACTIONS(3441), - [aux_sym_preproc_def_token1] = ACTIONS(3441), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3443), - [aux_sym_preproc_if_token1] = ACTIONS(3441), - [aux_sym_preproc_if_token2] = ACTIONS(3441), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3441), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3441), - [aux_sym_preproc_else_token1] = ACTIONS(3441), - [aux_sym_preproc_elif_token1] = ACTIONS(3441), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3441), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3441), - [sym_preproc_directive] = ACTIONS(3441), - [anon_sym_LPAREN2] = ACTIONS(3443), - [anon_sym_BANG] = ACTIONS(3443), - [anon_sym_TILDE] = ACTIONS(3443), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_PLUS] = ACTIONS(3441), - [anon_sym_STAR] = ACTIONS(3443), - [anon_sym_AMP_AMP] = ACTIONS(3443), - [anon_sym_AMP] = ACTIONS(3441), - [anon_sym_SEMI] = ACTIONS(3443), - [anon_sym___extension__] = ACTIONS(3441), - [anon_sym_typedef] = ACTIONS(3441), - [anon_sym_extern] = ACTIONS(3441), - [anon_sym___attribute__] = ACTIONS(3441), - [anon_sym_COLON_COLON] = ACTIONS(3443), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3443), - [anon_sym___declspec] = ACTIONS(3441), - [anon_sym___based] = ACTIONS(3441), - [anon_sym___cdecl] = ACTIONS(3441), - [anon_sym___clrcall] = ACTIONS(3441), - [anon_sym___stdcall] = ACTIONS(3441), - [anon_sym___fastcall] = ACTIONS(3441), - [anon_sym___thiscall] = ACTIONS(3441), - [anon_sym___vectorcall] = ACTIONS(3441), - [anon_sym_LBRACE] = ACTIONS(3443), - [anon_sym_signed] = ACTIONS(3441), - [anon_sym_unsigned] = ACTIONS(3441), - [anon_sym_long] = ACTIONS(3441), - [anon_sym_short] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_static] = ACTIONS(3441), - [anon_sym_register] = ACTIONS(3441), - [anon_sym_inline] = ACTIONS(3441), - [anon_sym___inline] = ACTIONS(3441), - [anon_sym___inline__] = ACTIONS(3441), - [anon_sym___forceinline] = ACTIONS(3441), - [anon_sym_thread_local] = ACTIONS(3441), - [anon_sym___thread] = ACTIONS(3441), - [anon_sym_const] = ACTIONS(3441), - [anon_sym_constexpr] = ACTIONS(3441), - [anon_sym_volatile] = ACTIONS(3441), - [anon_sym_restrict] = ACTIONS(3441), - [anon_sym___restrict__] = ACTIONS(3441), - [anon_sym__Atomic] = ACTIONS(3441), - [anon_sym__Noreturn] = ACTIONS(3441), - [anon_sym_noreturn] = ACTIONS(3441), - [anon_sym_mutable] = ACTIONS(3441), - [anon_sym_constinit] = ACTIONS(3441), - [anon_sym_consteval] = ACTIONS(3441), - [sym_primitive_type] = ACTIONS(3441), - [anon_sym_enum] = ACTIONS(3441), - [anon_sym_class] = ACTIONS(3441), - [anon_sym_struct] = ACTIONS(3441), - [anon_sym_union] = ACTIONS(3441), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_switch] = ACTIONS(3441), - [anon_sym_case] = ACTIONS(3441), - [anon_sym_default] = ACTIONS(3441), - [anon_sym_while] = ACTIONS(3441), - [anon_sym_do] = ACTIONS(3441), - [anon_sym_for] = ACTIONS(3441), - [anon_sym_return] = ACTIONS(3441), - [anon_sym_break] = ACTIONS(3441), - [anon_sym_continue] = ACTIONS(3441), - [anon_sym_goto] = ACTIONS(3441), - [anon_sym___try] = ACTIONS(3441), - [anon_sym___leave] = ACTIONS(3441), - [anon_sym_not] = ACTIONS(3441), - [anon_sym_compl] = ACTIONS(3441), - [anon_sym_DASH_DASH] = ACTIONS(3443), - [anon_sym_PLUS_PLUS] = ACTIONS(3443), - [anon_sym_sizeof] = ACTIONS(3441), - [anon_sym___alignof__] = ACTIONS(3441), - [anon_sym___alignof] = ACTIONS(3441), - [anon_sym__alignof] = ACTIONS(3441), - [anon_sym_alignof] = ACTIONS(3441), - [anon_sym__Alignof] = ACTIONS(3441), - [anon_sym_offsetof] = ACTIONS(3441), - [anon_sym__Generic] = ACTIONS(3441), - [anon_sym_asm] = ACTIONS(3441), - [anon_sym___asm__] = ACTIONS(3441), - [sym_number_literal] = ACTIONS(3443), - [anon_sym_L_SQUOTE] = ACTIONS(3443), - [anon_sym_u_SQUOTE] = ACTIONS(3443), - [anon_sym_U_SQUOTE] = ACTIONS(3443), - [anon_sym_u8_SQUOTE] = ACTIONS(3443), - [anon_sym_SQUOTE] = ACTIONS(3443), - [anon_sym_L_DQUOTE] = ACTIONS(3443), - [anon_sym_u_DQUOTE] = ACTIONS(3443), - [anon_sym_U_DQUOTE] = ACTIONS(3443), - [anon_sym_u8_DQUOTE] = ACTIONS(3443), - [anon_sym_DQUOTE] = ACTIONS(3443), - [sym_true] = ACTIONS(3441), - [sym_false] = ACTIONS(3441), - [anon_sym_NULL] = ACTIONS(3441), - [anon_sym_nullptr] = ACTIONS(3441), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3441), - [anon_sym_decltype] = ACTIONS(3441), - [anon_sym_virtual] = ACTIONS(3441), - [anon_sym_alignas] = ACTIONS(3441), - [anon_sym_explicit] = ACTIONS(3441), - [anon_sym_typename] = ACTIONS(3441), - [anon_sym_template] = ACTIONS(3441), - [anon_sym_operator] = ACTIONS(3441), - [anon_sym_try] = ACTIONS(3441), - [anon_sym_delete] = ACTIONS(3441), - [anon_sym_throw] = ACTIONS(3441), - [anon_sym_namespace] = ACTIONS(3441), - [anon_sym_using] = ACTIONS(3441), - [anon_sym_static_assert] = ACTIONS(3441), - [anon_sym_concept] = ACTIONS(3441), - [anon_sym_co_return] = ACTIONS(3441), - [anon_sym_co_yield] = ACTIONS(3441), - [anon_sym_R_DQUOTE] = ACTIONS(3443), - [anon_sym_LR_DQUOTE] = ACTIONS(3443), - [anon_sym_uR_DQUOTE] = ACTIONS(3443), - [anon_sym_UR_DQUOTE] = ACTIONS(3443), - [anon_sym_u8R_DQUOTE] = ACTIONS(3443), - [anon_sym_co_await] = ACTIONS(3441), - [anon_sym_new] = ACTIONS(3441), - [anon_sym_requires] = ACTIONS(3441), - [sym_this] = ACTIONS(3441), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3443), - [sym_semgrep_named_ellipsis] = ACTIONS(3443), + [sym_catch_clause] = STATE(448), + [aux_sym_constructor_try_statement_repeat1] = STATE(448), + [ts_builtin_sym_end] = ACTIONS(3048), + [sym_identifier] = ACTIONS(3046), + [aux_sym_preproc_include_token1] = ACTIONS(3046), + [aux_sym_preproc_def_token1] = ACTIONS(3046), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3046), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3046), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3046), + [sym_preproc_directive] = ACTIONS(3046), + [anon_sym_LPAREN2] = ACTIONS(3048), + [anon_sym_BANG] = ACTIONS(3048), + [anon_sym_TILDE] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3046), + [anon_sym_PLUS] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(3048), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym_SEMI] = ACTIONS(3048), + [anon_sym___extension__] = ACTIONS(3046), + [anon_sym_typedef] = ACTIONS(3046), + [anon_sym_extern] = ACTIONS(3046), + [anon_sym___attribute__] = ACTIONS(3046), + [anon_sym_COLON_COLON] = ACTIONS(3048), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3048), + [anon_sym___declspec] = ACTIONS(3046), + [anon_sym___based] = ACTIONS(3046), + [anon_sym___cdecl] = ACTIONS(3046), + [anon_sym___clrcall] = ACTIONS(3046), + [anon_sym___stdcall] = ACTIONS(3046), + [anon_sym___fastcall] = ACTIONS(3046), + [anon_sym___thiscall] = ACTIONS(3046), + [anon_sym___vectorcall] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3046), + [anon_sym_unsigned] = ACTIONS(3046), + [anon_sym_long] = ACTIONS(3046), + [anon_sym_short] = ACTIONS(3046), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_static] = ACTIONS(3046), + [anon_sym_register] = ACTIONS(3046), + [anon_sym_inline] = ACTIONS(3046), + [anon_sym___inline] = ACTIONS(3046), + [anon_sym___inline__] = ACTIONS(3046), + [anon_sym___forceinline] = ACTIONS(3046), + [anon_sym_thread_local] = ACTIONS(3046), + [anon_sym___thread] = ACTIONS(3046), + [anon_sym_const] = ACTIONS(3046), + [anon_sym_constexpr] = ACTIONS(3046), + [anon_sym_volatile] = ACTIONS(3046), + [anon_sym_restrict] = ACTIONS(3046), + [anon_sym___restrict__] = ACTIONS(3046), + [anon_sym__Atomic] = ACTIONS(3046), + [anon_sym__Noreturn] = ACTIONS(3046), + [anon_sym_noreturn] = ACTIONS(3046), + [anon_sym_mutable] = ACTIONS(3046), + [anon_sym_constinit] = ACTIONS(3046), + [anon_sym_consteval] = ACTIONS(3046), + [sym_primitive_type] = ACTIONS(3046), + [anon_sym_enum] = ACTIONS(3046), + [anon_sym_class] = ACTIONS(3046), + [anon_sym_struct] = ACTIONS(3046), + [anon_sym_union] = ACTIONS(3046), + [anon_sym_if] = ACTIONS(3046), + [anon_sym_else] = ACTIONS(3046), + [anon_sym_switch] = ACTIONS(3046), + [anon_sym_case] = ACTIONS(3046), + [anon_sym_default] = ACTIONS(3046), + [anon_sym_while] = ACTIONS(3046), + [anon_sym_do] = ACTIONS(3046), + [anon_sym_for] = ACTIONS(3046), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_break] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(3046), + [anon_sym_goto] = ACTIONS(3046), + [anon_sym___try] = ACTIONS(3046), + [anon_sym___leave] = ACTIONS(3046), + [anon_sym_not] = ACTIONS(3046), + [anon_sym_compl] = ACTIONS(3046), + [anon_sym_DASH_DASH] = ACTIONS(3048), + [anon_sym_PLUS_PLUS] = ACTIONS(3048), + [anon_sym_sizeof] = ACTIONS(3046), + [anon_sym___alignof__] = ACTIONS(3046), + [anon_sym___alignof] = ACTIONS(3046), + [anon_sym__alignof] = ACTIONS(3046), + [anon_sym_alignof] = ACTIONS(3046), + [anon_sym__Alignof] = ACTIONS(3046), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3046), + [anon_sym_asm] = ACTIONS(3046), + [anon_sym___asm__] = ACTIONS(3046), + [sym_number_literal] = ACTIONS(3048), + [anon_sym_L_SQUOTE] = ACTIONS(3048), + [anon_sym_u_SQUOTE] = ACTIONS(3048), + [anon_sym_U_SQUOTE] = ACTIONS(3048), + [anon_sym_u8_SQUOTE] = ACTIONS(3048), + [anon_sym_SQUOTE] = ACTIONS(3048), + [anon_sym_L_DQUOTE] = ACTIONS(3048), + [anon_sym_u_DQUOTE] = ACTIONS(3048), + [anon_sym_U_DQUOTE] = ACTIONS(3048), + [anon_sym_u8_DQUOTE] = ACTIONS(3048), + [anon_sym_DQUOTE] = ACTIONS(3048), + [sym_true] = ACTIONS(3046), + [sym_false] = ACTIONS(3046), + [anon_sym_NULL] = ACTIONS(3046), + [anon_sym_nullptr] = ACTIONS(3046), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3046), + [anon_sym_decltype] = ACTIONS(3046), + [anon_sym_virtual] = ACTIONS(3046), + [anon_sym_alignas] = ACTIONS(3046), + [anon_sym_explicit] = ACTIONS(3046), + [anon_sym_typename] = ACTIONS(3046), + [anon_sym_template] = ACTIONS(3046), + [anon_sym_operator] = ACTIONS(3046), + [anon_sym_try] = ACTIONS(3046), + [anon_sym_delete] = ACTIONS(3046), + [anon_sym_throw] = ACTIONS(3046), + [anon_sym_namespace] = ACTIONS(3046), + [anon_sym_using] = ACTIONS(3046), + [anon_sym_static_assert] = ACTIONS(3046), + [anon_sym_concept] = ACTIONS(3046), + [anon_sym_co_return] = ACTIONS(3046), + [anon_sym_co_yield] = ACTIONS(3046), + [anon_sym_catch] = ACTIONS(3446), + [anon_sym_R_DQUOTE] = ACTIONS(3048), + [anon_sym_LR_DQUOTE] = ACTIONS(3048), + [anon_sym_uR_DQUOTE] = ACTIONS(3048), + [anon_sym_UR_DQUOTE] = ACTIONS(3048), + [anon_sym_u8R_DQUOTE] = ACTIONS(3048), + [anon_sym_co_await] = ACTIONS(3046), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_requires] = ACTIONS(3046), + [sym_this] = ACTIONS(3046), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3048), + [sym_semgrep_named_ellipsis] = ACTIONS(3048), }, [380] = { - [sym_identifier] = ACTIONS(3445), - [aux_sym_preproc_include_token1] = ACTIONS(3445), - [aux_sym_preproc_def_token1] = ACTIONS(3445), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3447), - [aux_sym_preproc_if_token1] = ACTIONS(3445), - [aux_sym_preproc_if_token2] = ACTIONS(3445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3445), - [aux_sym_preproc_else_token1] = ACTIONS(3445), - [aux_sym_preproc_elif_token1] = ACTIONS(3445), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3445), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3445), - [sym_preproc_directive] = ACTIONS(3445), - [anon_sym_LPAREN2] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_TILDE] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3445), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3445), - [anon_sym_SEMI] = ACTIONS(3447), - [anon_sym___extension__] = ACTIONS(3445), - [anon_sym_typedef] = ACTIONS(3445), - [anon_sym_extern] = ACTIONS(3445), - [anon_sym___attribute__] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3447), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3447), - [anon_sym___declspec] = ACTIONS(3445), - [anon_sym___based] = ACTIONS(3445), - [anon_sym___cdecl] = ACTIONS(3445), - [anon_sym___clrcall] = ACTIONS(3445), - [anon_sym___stdcall] = ACTIONS(3445), - [anon_sym___fastcall] = ACTIONS(3445), - [anon_sym___thiscall] = ACTIONS(3445), - [anon_sym___vectorcall] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_signed] = ACTIONS(3445), - [anon_sym_unsigned] = ACTIONS(3445), - [anon_sym_long] = ACTIONS(3445), - [anon_sym_short] = ACTIONS(3445), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_static] = ACTIONS(3445), - [anon_sym_register] = ACTIONS(3445), - [anon_sym_inline] = ACTIONS(3445), - [anon_sym___inline] = ACTIONS(3445), - [anon_sym___inline__] = ACTIONS(3445), - [anon_sym___forceinline] = ACTIONS(3445), - [anon_sym_thread_local] = ACTIONS(3445), - [anon_sym___thread] = ACTIONS(3445), - [anon_sym_const] = ACTIONS(3445), - [anon_sym_constexpr] = ACTIONS(3445), - [anon_sym_volatile] = ACTIONS(3445), - [anon_sym_restrict] = ACTIONS(3445), - [anon_sym___restrict__] = ACTIONS(3445), - [anon_sym__Atomic] = ACTIONS(3445), - [anon_sym__Noreturn] = ACTIONS(3445), - [anon_sym_noreturn] = ACTIONS(3445), - [anon_sym_mutable] = ACTIONS(3445), - [anon_sym_constinit] = ACTIONS(3445), - [anon_sym_consteval] = ACTIONS(3445), - [sym_primitive_type] = ACTIONS(3445), - [anon_sym_enum] = ACTIONS(3445), - [anon_sym_class] = ACTIONS(3445), - [anon_sym_struct] = ACTIONS(3445), - [anon_sym_union] = ACTIONS(3445), - [anon_sym_if] = ACTIONS(3445), - [anon_sym_switch] = ACTIONS(3445), - [anon_sym_case] = ACTIONS(3445), - [anon_sym_default] = ACTIONS(3445), - [anon_sym_while] = ACTIONS(3445), - [anon_sym_do] = ACTIONS(3445), - [anon_sym_for] = ACTIONS(3445), - [anon_sym_return] = ACTIONS(3445), - [anon_sym_break] = ACTIONS(3445), - [anon_sym_continue] = ACTIONS(3445), - [anon_sym_goto] = ACTIONS(3445), - [anon_sym___try] = ACTIONS(3445), - [anon_sym___leave] = ACTIONS(3445), - [anon_sym_not] = ACTIONS(3445), - [anon_sym_compl] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3447), - [anon_sym_sizeof] = ACTIONS(3445), - [anon_sym___alignof__] = ACTIONS(3445), - [anon_sym___alignof] = ACTIONS(3445), - [anon_sym__alignof] = ACTIONS(3445), - [anon_sym_alignof] = ACTIONS(3445), - [anon_sym__Alignof] = ACTIONS(3445), - [anon_sym_offsetof] = ACTIONS(3445), - [anon_sym__Generic] = ACTIONS(3445), - [anon_sym_asm] = ACTIONS(3445), - [anon_sym___asm__] = ACTIONS(3445), - [sym_number_literal] = ACTIONS(3447), - [anon_sym_L_SQUOTE] = ACTIONS(3447), - [anon_sym_u_SQUOTE] = ACTIONS(3447), - [anon_sym_U_SQUOTE] = ACTIONS(3447), - [anon_sym_u8_SQUOTE] = ACTIONS(3447), - [anon_sym_SQUOTE] = ACTIONS(3447), - [anon_sym_L_DQUOTE] = ACTIONS(3447), - [anon_sym_u_DQUOTE] = ACTIONS(3447), - [anon_sym_U_DQUOTE] = ACTIONS(3447), - [anon_sym_u8_DQUOTE] = ACTIONS(3447), - [anon_sym_DQUOTE] = ACTIONS(3447), - [sym_true] = ACTIONS(3445), - [sym_false] = ACTIONS(3445), - [anon_sym_NULL] = ACTIONS(3445), - [anon_sym_nullptr] = ACTIONS(3445), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3445), - [anon_sym_decltype] = ACTIONS(3445), - [anon_sym_virtual] = ACTIONS(3445), - [anon_sym_alignas] = ACTIONS(3445), - [anon_sym_explicit] = ACTIONS(3445), - [anon_sym_typename] = ACTIONS(3445), - [anon_sym_template] = ACTIONS(3445), - [anon_sym_operator] = ACTIONS(3445), - [anon_sym_try] = ACTIONS(3445), - [anon_sym_delete] = ACTIONS(3445), - [anon_sym_throw] = ACTIONS(3445), - [anon_sym_namespace] = ACTIONS(3445), - [anon_sym_using] = ACTIONS(3445), - [anon_sym_static_assert] = ACTIONS(3445), - [anon_sym_concept] = ACTIONS(3445), - [anon_sym_co_return] = ACTIONS(3445), - [anon_sym_co_yield] = ACTIONS(3445), - [anon_sym_R_DQUOTE] = ACTIONS(3447), - [anon_sym_LR_DQUOTE] = ACTIONS(3447), - [anon_sym_uR_DQUOTE] = ACTIONS(3447), - [anon_sym_UR_DQUOTE] = ACTIONS(3447), - [anon_sym_u8R_DQUOTE] = ACTIONS(3447), - [anon_sym_co_await] = ACTIONS(3445), - [anon_sym_new] = ACTIONS(3445), - [anon_sym_requires] = ACTIONS(3445), - [sym_this] = ACTIONS(3445), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3447), - [sym_semgrep_named_ellipsis] = ACTIONS(3447), + [sym_catch_clause] = STATE(380), + [aux_sym_constructor_try_statement_repeat1] = STATE(380), + [sym_identifier] = ACTIONS(3027), + [aux_sym_preproc_include_token1] = ACTIONS(3027), + [aux_sym_preproc_def_token1] = ACTIONS(3027), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3029), + [aux_sym_preproc_if_token1] = ACTIONS(3027), + [aux_sym_preproc_if_token2] = ACTIONS(3027), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3027), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3027), + [sym_preproc_directive] = ACTIONS(3027), + [anon_sym_LPAREN2] = ACTIONS(3029), + [anon_sym_BANG] = ACTIONS(3029), + [anon_sym_TILDE] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3027), + [anon_sym_STAR] = ACTIONS(3029), + [anon_sym_AMP_AMP] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3027), + [anon_sym_SEMI] = ACTIONS(3029), + [anon_sym___extension__] = ACTIONS(3027), + [anon_sym_typedef] = ACTIONS(3027), + [anon_sym_extern] = ACTIONS(3027), + [anon_sym___attribute__] = ACTIONS(3027), + [anon_sym_COLON_COLON] = ACTIONS(3029), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3029), + [anon_sym___declspec] = ACTIONS(3027), + [anon_sym___based] = ACTIONS(3027), + [anon_sym___cdecl] = ACTIONS(3027), + [anon_sym___clrcall] = ACTIONS(3027), + [anon_sym___stdcall] = ACTIONS(3027), + [anon_sym___fastcall] = ACTIONS(3027), + [anon_sym___thiscall] = ACTIONS(3027), + [anon_sym___vectorcall] = ACTIONS(3027), + [anon_sym_LBRACE] = ACTIONS(3029), + [anon_sym_signed] = ACTIONS(3027), + [anon_sym_unsigned] = ACTIONS(3027), + [anon_sym_long] = ACTIONS(3027), + [anon_sym_short] = ACTIONS(3027), + [anon_sym_LBRACK] = ACTIONS(3027), + [anon_sym_static] = ACTIONS(3027), + [anon_sym_register] = ACTIONS(3027), + [anon_sym_inline] = ACTIONS(3027), + [anon_sym___inline] = ACTIONS(3027), + [anon_sym___inline__] = ACTIONS(3027), + [anon_sym___forceinline] = ACTIONS(3027), + [anon_sym_thread_local] = ACTIONS(3027), + [anon_sym___thread] = ACTIONS(3027), + [anon_sym_const] = ACTIONS(3027), + [anon_sym_constexpr] = ACTIONS(3027), + [anon_sym_volatile] = ACTIONS(3027), + [anon_sym_restrict] = ACTIONS(3027), + [anon_sym___restrict__] = ACTIONS(3027), + [anon_sym__Atomic] = ACTIONS(3027), + [anon_sym__Noreturn] = ACTIONS(3027), + [anon_sym_noreturn] = ACTIONS(3027), + [anon_sym_mutable] = ACTIONS(3027), + [anon_sym_constinit] = ACTIONS(3027), + [anon_sym_consteval] = ACTIONS(3027), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3027), + [anon_sym_class] = ACTIONS(3027), + [anon_sym_struct] = ACTIONS(3027), + [anon_sym_union] = ACTIONS(3027), + [anon_sym_if] = ACTIONS(3027), + [anon_sym_else] = ACTIONS(3027), + [anon_sym_switch] = ACTIONS(3027), + [anon_sym_case] = ACTIONS(3027), + [anon_sym_default] = ACTIONS(3027), + [anon_sym_while] = ACTIONS(3027), + [anon_sym_do] = ACTIONS(3027), + [anon_sym_for] = ACTIONS(3027), + [anon_sym_return] = ACTIONS(3027), + [anon_sym_break] = ACTIONS(3027), + [anon_sym_continue] = ACTIONS(3027), + [anon_sym_goto] = ACTIONS(3027), + [anon_sym___try] = ACTIONS(3027), + [anon_sym___leave] = ACTIONS(3027), + [anon_sym_not] = ACTIONS(3027), + [anon_sym_compl] = ACTIONS(3027), + [anon_sym_DASH_DASH] = ACTIONS(3029), + [anon_sym_PLUS_PLUS] = ACTIONS(3029), + [anon_sym_sizeof] = ACTIONS(3027), + [anon_sym___alignof__] = ACTIONS(3027), + [anon_sym___alignof] = ACTIONS(3027), + [anon_sym__alignof] = ACTIONS(3027), + [anon_sym_alignof] = ACTIONS(3027), + [anon_sym__Alignof] = ACTIONS(3027), + [anon_sym_offsetof] = ACTIONS(3027), + [anon_sym__Generic] = ACTIONS(3027), + [anon_sym_asm] = ACTIONS(3027), + [anon_sym___asm__] = ACTIONS(3027), + [sym_number_literal] = ACTIONS(3029), + [anon_sym_L_SQUOTE] = ACTIONS(3029), + [anon_sym_u_SQUOTE] = ACTIONS(3029), + [anon_sym_U_SQUOTE] = ACTIONS(3029), + [anon_sym_u8_SQUOTE] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3029), + [anon_sym_L_DQUOTE] = ACTIONS(3029), + [anon_sym_u_DQUOTE] = ACTIONS(3029), + [anon_sym_U_DQUOTE] = ACTIONS(3029), + [anon_sym_u8_DQUOTE] = ACTIONS(3029), + [anon_sym_DQUOTE] = ACTIONS(3029), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [anon_sym_NULL] = ACTIONS(3027), + [anon_sym_nullptr] = ACTIONS(3027), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3027), + [anon_sym_decltype] = ACTIONS(3027), + [anon_sym_virtual] = ACTIONS(3027), + [anon_sym_alignas] = ACTIONS(3027), + [anon_sym_explicit] = ACTIONS(3027), + [anon_sym_typename] = ACTIONS(3027), + [anon_sym_template] = ACTIONS(3027), + [anon_sym_operator] = ACTIONS(3027), + [anon_sym_try] = ACTIONS(3027), + [anon_sym_delete] = ACTIONS(3027), + [anon_sym_throw] = ACTIONS(3027), + [anon_sym_namespace] = ACTIONS(3027), + [anon_sym_using] = ACTIONS(3027), + [anon_sym_static_assert] = ACTIONS(3027), + [anon_sym_concept] = ACTIONS(3027), + [anon_sym_co_return] = ACTIONS(3027), + [anon_sym_co_yield] = ACTIONS(3027), + [anon_sym_catch] = ACTIONS(3448), + [anon_sym_R_DQUOTE] = ACTIONS(3029), + [anon_sym_LR_DQUOTE] = ACTIONS(3029), + [anon_sym_uR_DQUOTE] = ACTIONS(3029), + [anon_sym_UR_DQUOTE] = ACTIONS(3029), + [anon_sym_u8R_DQUOTE] = ACTIONS(3029), + [anon_sym_co_await] = ACTIONS(3027), + [anon_sym_new] = ACTIONS(3027), + [anon_sym_requires] = ACTIONS(3027), + [sym_this] = ACTIONS(3027), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3029), + [sym_semgrep_named_ellipsis] = ACTIONS(3029), }, [381] = { - [sym_identifier] = ACTIONS(3449), - [aux_sym_preproc_include_token1] = ACTIONS(3449), - [aux_sym_preproc_def_token1] = ACTIONS(3449), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3451), - [aux_sym_preproc_if_token1] = ACTIONS(3449), - [aux_sym_preproc_if_token2] = ACTIONS(3449), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3449), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3449), - [aux_sym_preproc_else_token1] = ACTIONS(3449), - [aux_sym_preproc_elif_token1] = ACTIONS(3449), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3449), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3449), - [sym_preproc_directive] = ACTIONS(3449), - [anon_sym_LPAREN2] = ACTIONS(3451), - [anon_sym_BANG] = ACTIONS(3451), - [anon_sym_TILDE] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3449), - [anon_sym_PLUS] = ACTIONS(3449), - [anon_sym_STAR] = ACTIONS(3451), - [anon_sym_AMP_AMP] = ACTIONS(3451), - [anon_sym_AMP] = ACTIONS(3449), - [anon_sym_SEMI] = ACTIONS(3451), - [anon_sym___extension__] = ACTIONS(3449), - [anon_sym_typedef] = ACTIONS(3449), - [anon_sym_extern] = ACTIONS(3449), - [anon_sym___attribute__] = ACTIONS(3449), - [anon_sym_COLON_COLON] = ACTIONS(3451), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3451), - [anon_sym___declspec] = ACTIONS(3449), - [anon_sym___based] = ACTIONS(3449), - [anon_sym___cdecl] = ACTIONS(3449), - [anon_sym___clrcall] = ACTIONS(3449), - [anon_sym___stdcall] = ACTIONS(3449), - [anon_sym___fastcall] = ACTIONS(3449), - [anon_sym___thiscall] = ACTIONS(3449), - [anon_sym___vectorcall] = ACTIONS(3449), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_signed] = ACTIONS(3449), - [anon_sym_unsigned] = ACTIONS(3449), - [anon_sym_long] = ACTIONS(3449), - [anon_sym_short] = ACTIONS(3449), - [anon_sym_LBRACK] = ACTIONS(3449), - [anon_sym_static] = ACTIONS(3449), - [anon_sym_register] = ACTIONS(3449), - [anon_sym_inline] = ACTIONS(3449), - [anon_sym___inline] = ACTIONS(3449), - [anon_sym___inline__] = ACTIONS(3449), - [anon_sym___forceinline] = ACTIONS(3449), - [anon_sym_thread_local] = ACTIONS(3449), - [anon_sym___thread] = ACTIONS(3449), - [anon_sym_const] = ACTIONS(3449), - [anon_sym_constexpr] = ACTIONS(3449), - [anon_sym_volatile] = ACTIONS(3449), - [anon_sym_restrict] = ACTIONS(3449), - [anon_sym___restrict__] = ACTIONS(3449), - [anon_sym__Atomic] = ACTIONS(3449), - [anon_sym__Noreturn] = ACTIONS(3449), - [anon_sym_noreturn] = ACTIONS(3449), - [anon_sym_mutable] = ACTIONS(3449), - [anon_sym_constinit] = ACTIONS(3449), - [anon_sym_consteval] = ACTIONS(3449), - [sym_primitive_type] = ACTIONS(3449), - [anon_sym_enum] = ACTIONS(3449), - [anon_sym_class] = ACTIONS(3449), - [anon_sym_struct] = ACTIONS(3449), - [anon_sym_union] = ACTIONS(3449), - [anon_sym_if] = ACTIONS(3449), - [anon_sym_switch] = ACTIONS(3449), - [anon_sym_case] = ACTIONS(3449), - [anon_sym_default] = ACTIONS(3449), - [anon_sym_while] = ACTIONS(3449), - [anon_sym_do] = ACTIONS(3449), - [anon_sym_for] = ACTIONS(3449), - [anon_sym_return] = ACTIONS(3449), - [anon_sym_break] = ACTIONS(3449), - [anon_sym_continue] = ACTIONS(3449), - [anon_sym_goto] = ACTIONS(3449), - [anon_sym___try] = ACTIONS(3449), - [anon_sym___leave] = ACTIONS(3449), - [anon_sym_not] = ACTIONS(3449), - [anon_sym_compl] = ACTIONS(3449), - [anon_sym_DASH_DASH] = ACTIONS(3451), - [anon_sym_PLUS_PLUS] = ACTIONS(3451), - [anon_sym_sizeof] = ACTIONS(3449), - [anon_sym___alignof__] = ACTIONS(3449), - [anon_sym___alignof] = ACTIONS(3449), - [anon_sym__alignof] = ACTIONS(3449), - [anon_sym_alignof] = ACTIONS(3449), - [anon_sym__Alignof] = ACTIONS(3449), - [anon_sym_offsetof] = ACTIONS(3449), - [anon_sym__Generic] = ACTIONS(3449), - [anon_sym_asm] = ACTIONS(3449), - [anon_sym___asm__] = ACTIONS(3449), - [sym_number_literal] = ACTIONS(3451), - [anon_sym_L_SQUOTE] = ACTIONS(3451), - [anon_sym_u_SQUOTE] = ACTIONS(3451), - [anon_sym_U_SQUOTE] = ACTIONS(3451), - [anon_sym_u8_SQUOTE] = ACTIONS(3451), - [anon_sym_SQUOTE] = ACTIONS(3451), - [anon_sym_L_DQUOTE] = ACTIONS(3451), - [anon_sym_u_DQUOTE] = ACTIONS(3451), - [anon_sym_U_DQUOTE] = ACTIONS(3451), - [anon_sym_u8_DQUOTE] = ACTIONS(3451), - [anon_sym_DQUOTE] = ACTIONS(3451), - [sym_true] = ACTIONS(3449), - [sym_false] = ACTIONS(3449), - [anon_sym_NULL] = ACTIONS(3449), - [anon_sym_nullptr] = ACTIONS(3449), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3449), - [anon_sym_decltype] = ACTIONS(3449), - [anon_sym_virtual] = ACTIONS(3449), - [anon_sym_alignas] = ACTIONS(3449), - [anon_sym_explicit] = ACTIONS(3449), - [anon_sym_typename] = ACTIONS(3449), - [anon_sym_template] = ACTIONS(3449), - [anon_sym_operator] = ACTIONS(3449), - [anon_sym_try] = ACTIONS(3449), - [anon_sym_delete] = ACTIONS(3449), - [anon_sym_throw] = ACTIONS(3449), - [anon_sym_namespace] = ACTIONS(3449), - [anon_sym_using] = ACTIONS(3449), - [anon_sym_static_assert] = ACTIONS(3449), - [anon_sym_concept] = ACTIONS(3449), - [anon_sym_co_return] = ACTIONS(3449), - [anon_sym_co_yield] = ACTIONS(3449), - [anon_sym_R_DQUOTE] = ACTIONS(3451), - [anon_sym_LR_DQUOTE] = ACTIONS(3451), - [anon_sym_uR_DQUOTE] = ACTIONS(3451), - [anon_sym_UR_DQUOTE] = ACTIONS(3451), - [anon_sym_u8R_DQUOTE] = ACTIONS(3451), - [anon_sym_co_await] = ACTIONS(3449), - [anon_sym_new] = ACTIONS(3449), - [anon_sym_requires] = ACTIONS(3449), - [sym_this] = ACTIONS(3449), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3451), - [sym_semgrep_named_ellipsis] = ACTIONS(3451), + [sym_identifier] = ACTIONS(3451), + [aux_sym_preproc_include_token1] = ACTIONS(3451), + [aux_sym_preproc_def_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3453), + [aux_sym_preproc_if_token1] = ACTIONS(3451), + [aux_sym_preproc_if_token2] = ACTIONS(3451), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3451), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3451), + [aux_sym_preproc_else_token1] = ACTIONS(3451), + [aux_sym_preproc_elif_token1] = ACTIONS(3451), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3451), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3451), + [sym_preproc_directive] = ACTIONS(3451), + [anon_sym_LPAREN2] = ACTIONS(3453), + [anon_sym_BANG] = ACTIONS(3453), + [anon_sym_TILDE] = ACTIONS(3453), + [anon_sym_DASH] = ACTIONS(3451), + [anon_sym_PLUS] = ACTIONS(3451), + [anon_sym_STAR] = ACTIONS(3453), + [anon_sym_AMP_AMP] = ACTIONS(3453), + [anon_sym_AMP] = ACTIONS(3451), + [anon_sym_SEMI] = ACTIONS(3453), + [anon_sym___extension__] = ACTIONS(3451), + [anon_sym_typedef] = ACTIONS(3451), + [anon_sym_extern] = ACTIONS(3451), + [anon_sym___attribute__] = ACTIONS(3451), + [anon_sym_COLON_COLON] = ACTIONS(3453), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3453), + [anon_sym___declspec] = ACTIONS(3451), + [anon_sym___based] = ACTIONS(3451), + [anon_sym___cdecl] = ACTIONS(3451), + [anon_sym___clrcall] = ACTIONS(3451), + [anon_sym___stdcall] = ACTIONS(3451), + [anon_sym___fastcall] = ACTIONS(3451), + [anon_sym___thiscall] = ACTIONS(3451), + [anon_sym___vectorcall] = ACTIONS(3451), + [anon_sym_LBRACE] = ACTIONS(3453), + [anon_sym_signed] = ACTIONS(3451), + [anon_sym_unsigned] = ACTIONS(3451), + [anon_sym_long] = ACTIONS(3451), + [anon_sym_short] = ACTIONS(3451), + [anon_sym_LBRACK] = ACTIONS(3451), + [anon_sym_static] = ACTIONS(3451), + [anon_sym_register] = ACTIONS(3451), + [anon_sym_inline] = ACTIONS(3451), + [anon_sym___inline] = ACTIONS(3451), + [anon_sym___inline__] = ACTIONS(3451), + [anon_sym___forceinline] = ACTIONS(3451), + [anon_sym_thread_local] = ACTIONS(3451), + [anon_sym___thread] = ACTIONS(3451), + [anon_sym_const] = ACTIONS(3451), + [anon_sym_constexpr] = ACTIONS(3451), + [anon_sym_volatile] = ACTIONS(3451), + [anon_sym_restrict] = ACTIONS(3451), + [anon_sym___restrict__] = ACTIONS(3451), + [anon_sym__Atomic] = ACTIONS(3451), + [anon_sym__Noreturn] = ACTIONS(3451), + [anon_sym_noreturn] = ACTIONS(3451), + [anon_sym_mutable] = ACTIONS(3451), + [anon_sym_constinit] = ACTIONS(3451), + [anon_sym_consteval] = ACTIONS(3451), + [sym_primitive_type] = ACTIONS(3451), + [anon_sym_enum] = ACTIONS(3451), + [anon_sym_class] = ACTIONS(3451), + [anon_sym_struct] = ACTIONS(3451), + [anon_sym_union] = ACTIONS(3451), + [anon_sym_if] = ACTIONS(3451), + [anon_sym_switch] = ACTIONS(3451), + [anon_sym_case] = ACTIONS(3451), + [anon_sym_default] = ACTIONS(3451), + [anon_sym_while] = ACTIONS(3451), + [anon_sym_do] = ACTIONS(3451), + [anon_sym_for] = ACTIONS(3451), + [anon_sym_return] = ACTIONS(3451), + [anon_sym_break] = ACTIONS(3451), + [anon_sym_continue] = ACTIONS(3451), + [anon_sym_goto] = ACTIONS(3451), + [anon_sym___try] = ACTIONS(3451), + [anon_sym___leave] = ACTIONS(3451), + [anon_sym_not] = ACTIONS(3451), + [anon_sym_compl] = ACTIONS(3451), + [anon_sym_DASH_DASH] = ACTIONS(3453), + [anon_sym_PLUS_PLUS] = ACTIONS(3453), + [anon_sym_sizeof] = ACTIONS(3451), + [anon_sym___alignof__] = ACTIONS(3451), + [anon_sym___alignof] = ACTIONS(3451), + [anon_sym__alignof] = ACTIONS(3451), + [anon_sym_alignof] = ACTIONS(3451), + [anon_sym__Alignof] = ACTIONS(3451), + [anon_sym_offsetof] = ACTIONS(3451), + [anon_sym__Generic] = ACTIONS(3451), + [anon_sym_asm] = ACTIONS(3451), + [anon_sym___asm__] = ACTIONS(3451), + [sym_number_literal] = ACTIONS(3453), + [anon_sym_L_SQUOTE] = ACTIONS(3453), + [anon_sym_u_SQUOTE] = ACTIONS(3453), + [anon_sym_U_SQUOTE] = ACTIONS(3453), + [anon_sym_u8_SQUOTE] = ACTIONS(3453), + [anon_sym_SQUOTE] = ACTIONS(3453), + [anon_sym_L_DQUOTE] = ACTIONS(3453), + [anon_sym_u_DQUOTE] = ACTIONS(3453), + [anon_sym_U_DQUOTE] = ACTIONS(3453), + [anon_sym_u8_DQUOTE] = ACTIONS(3453), + [anon_sym_DQUOTE] = ACTIONS(3453), + [sym_true] = ACTIONS(3451), + [sym_false] = ACTIONS(3451), + [anon_sym_NULL] = ACTIONS(3451), + [anon_sym_nullptr] = ACTIONS(3451), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3451), + [anon_sym_decltype] = ACTIONS(3451), + [anon_sym_virtual] = ACTIONS(3451), + [anon_sym_alignas] = ACTIONS(3451), + [anon_sym_explicit] = ACTIONS(3451), + [anon_sym_typename] = ACTIONS(3451), + [anon_sym_template] = ACTIONS(3451), + [anon_sym_operator] = ACTIONS(3451), + [anon_sym_try] = ACTIONS(3451), + [anon_sym_delete] = ACTIONS(3451), + [anon_sym_throw] = ACTIONS(3451), + [anon_sym_namespace] = ACTIONS(3451), + [anon_sym_using] = ACTIONS(3451), + [anon_sym_static_assert] = ACTIONS(3451), + [anon_sym_concept] = ACTIONS(3451), + [anon_sym_co_return] = ACTIONS(3451), + [anon_sym_co_yield] = ACTIONS(3451), + [anon_sym_R_DQUOTE] = ACTIONS(3453), + [anon_sym_LR_DQUOTE] = ACTIONS(3453), + [anon_sym_uR_DQUOTE] = ACTIONS(3453), + [anon_sym_UR_DQUOTE] = ACTIONS(3453), + [anon_sym_u8R_DQUOTE] = ACTIONS(3453), + [anon_sym_co_await] = ACTIONS(3451), + [anon_sym_new] = ACTIONS(3451), + [anon_sym_requires] = ACTIONS(3451), + [sym_this] = ACTIONS(3451), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3453), + [sym_semgrep_named_ellipsis] = ACTIONS(3453), }, [382] = { - [sym_identifier] = ACTIONS(3453), - [aux_sym_preproc_include_token1] = ACTIONS(3453), - [aux_sym_preproc_def_token1] = ACTIONS(3453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3455), - [aux_sym_preproc_if_token1] = ACTIONS(3453), - [aux_sym_preproc_if_token2] = ACTIONS(3453), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3453), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3453), - [aux_sym_preproc_else_token1] = ACTIONS(3453), - [aux_sym_preproc_elif_token1] = ACTIONS(3453), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3453), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3453), - [sym_preproc_directive] = ACTIONS(3453), - [anon_sym_LPAREN2] = ACTIONS(3455), - [anon_sym_BANG] = ACTIONS(3455), - [anon_sym_TILDE] = ACTIONS(3455), - [anon_sym_DASH] = ACTIONS(3453), - [anon_sym_PLUS] = ACTIONS(3453), - [anon_sym_STAR] = ACTIONS(3455), - [anon_sym_AMP_AMP] = ACTIONS(3455), - [anon_sym_AMP] = ACTIONS(3453), - [anon_sym_SEMI] = ACTIONS(3455), - [anon_sym___extension__] = ACTIONS(3453), - [anon_sym_typedef] = ACTIONS(3453), - [anon_sym_extern] = ACTIONS(3453), - [anon_sym___attribute__] = ACTIONS(3453), - [anon_sym_COLON_COLON] = ACTIONS(3455), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3455), - [anon_sym___declspec] = ACTIONS(3453), - [anon_sym___based] = ACTIONS(3453), - [anon_sym___cdecl] = ACTIONS(3453), - [anon_sym___clrcall] = ACTIONS(3453), - [anon_sym___stdcall] = ACTIONS(3453), - [anon_sym___fastcall] = ACTIONS(3453), - [anon_sym___thiscall] = ACTIONS(3453), - [anon_sym___vectorcall] = ACTIONS(3453), - [anon_sym_LBRACE] = ACTIONS(3455), - [anon_sym_signed] = ACTIONS(3453), - [anon_sym_unsigned] = ACTIONS(3453), - [anon_sym_long] = ACTIONS(3453), - [anon_sym_short] = ACTIONS(3453), - [anon_sym_LBRACK] = ACTIONS(3453), - [anon_sym_static] = ACTIONS(3453), - [anon_sym_register] = ACTIONS(3453), - [anon_sym_inline] = ACTIONS(3453), - [anon_sym___inline] = ACTIONS(3453), - [anon_sym___inline__] = ACTIONS(3453), - [anon_sym___forceinline] = ACTIONS(3453), - [anon_sym_thread_local] = ACTIONS(3453), - [anon_sym___thread] = ACTIONS(3453), - [anon_sym_const] = ACTIONS(3453), - [anon_sym_constexpr] = ACTIONS(3453), - [anon_sym_volatile] = ACTIONS(3453), - [anon_sym_restrict] = ACTIONS(3453), - [anon_sym___restrict__] = ACTIONS(3453), - [anon_sym__Atomic] = ACTIONS(3453), - [anon_sym__Noreturn] = ACTIONS(3453), - [anon_sym_noreturn] = ACTIONS(3453), - [anon_sym_mutable] = ACTIONS(3453), - [anon_sym_constinit] = ACTIONS(3453), - [anon_sym_consteval] = ACTIONS(3453), - [sym_primitive_type] = ACTIONS(3453), - [anon_sym_enum] = ACTIONS(3453), - [anon_sym_class] = ACTIONS(3453), - [anon_sym_struct] = ACTIONS(3453), - [anon_sym_union] = ACTIONS(3453), - [anon_sym_if] = ACTIONS(3453), - [anon_sym_switch] = ACTIONS(3453), - [anon_sym_case] = ACTIONS(3453), - [anon_sym_default] = ACTIONS(3453), - [anon_sym_while] = ACTIONS(3453), - [anon_sym_do] = ACTIONS(3453), - [anon_sym_for] = ACTIONS(3453), - [anon_sym_return] = ACTIONS(3453), - [anon_sym_break] = ACTIONS(3453), - [anon_sym_continue] = ACTIONS(3453), - [anon_sym_goto] = ACTIONS(3453), - [anon_sym___try] = ACTIONS(3453), - [anon_sym___leave] = ACTIONS(3453), - [anon_sym_not] = ACTIONS(3453), - [anon_sym_compl] = ACTIONS(3453), - [anon_sym_DASH_DASH] = ACTIONS(3455), - [anon_sym_PLUS_PLUS] = ACTIONS(3455), - [anon_sym_sizeof] = ACTIONS(3453), - [anon_sym___alignof__] = ACTIONS(3453), - [anon_sym___alignof] = ACTIONS(3453), - [anon_sym__alignof] = ACTIONS(3453), - [anon_sym_alignof] = ACTIONS(3453), - [anon_sym__Alignof] = ACTIONS(3453), - [anon_sym_offsetof] = ACTIONS(3453), - [anon_sym__Generic] = ACTIONS(3453), - [anon_sym_asm] = ACTIONS(3453), - [anon_sym___asm__] = ACTIONS(3453), - [sym_number_literal] = ACTIONS(3455), - [anon_sym_L_SQUOTE] = ACTIONS(3455), - [anon_sym_u_SQUOTE] = ACTIONS(3455), - [anon_sym_U_SQUOTE] = ACTIONS(3455), - [anon_sym_u8_SQUOTE] = ACTIONS(3455), - [anon_sym_SQUOTE] = ACTIONS(3455), - [anon_sym_L_DQUOTE] = ACTIONS(3455), - [anon_sym_u_DQUOTE] = ACTIONS(3455), - [anon_sym_U_DQUOTE] = ACTIONS(3455), - [anon_sym_u8_DQUOTE] = ACTIONS(3455), - [anon_sym_DQUOTE] = ACTIONS(3455), - [sym_true] = ACTIONS(3453), - [sym_false] = ACTIONS(3453), - [anon_sym_NULL] = ACTIONS(3453), - [anon_sym_nullptr] = ACTIONS(3453), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3453), - [anon_sym_decltype] = ACTIONS(3453), - [anon_sym_virtual] = ACTIONS(3453), - [anon_sym_alignas] = ACTIONS(3453), - [anon_sym_explicit] = ACTIONS(3453), - [anon_sym_typename] = ACTIONS(3453), - [anon_sym_template] = ACTIONS(3453), - [anon_sym_operator] = ACTIONS(3453), - [anon_sym_try] = ACTIONS(3453), - [anon_sym_delete] = ACTIONS(3453), - [anon_sym_throw] = ACTIONS(3453), - [anon_sym_namespace] = ACTIONS(3453), - [anon_sym_using] = ACTIONS(3453), - [anon_sym_static_assert] = ACTIONS(3453), - [anon_sym_concept] = ACTIONS(3453), - [anon_sym_co_return] = ACTIONS(3453), - [anon_sym_co_yield] = ACTIONS(3453), - [anon_sym_R_DQUOTE] = ACTIONS(3455), - [anon_sym_LR_DQUOTE] = ACTIONS(3455), - [anon_sym_uR_DQUOTE] = ACTIONS(3455), - [anon_sym_UR_DQUOTE] = ACTIONS(3455), - [anon_sym_u8R_DQUOTE] = ACTIONS(3455), - [anon_sym_co_await] = ACTIONS(3453), - [anon_sym_new] = ACTIONS(3453), - [anon_sym_requires] = ACTIONS(3453), - [sym_this] = ACTIONS(3453), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3455), - [sym_semgrep_named_ellipsis] = ACTIONS(3455), + [sym_type_qualifier] = STATE(4685), + [sym_type_specifier] = STATE(5782), + [sym_sized_type_specifier] = STATE(3293), + [sym_enum_specifier] = STATE(3293), + [sym_struct_specifier] = STATE(3293), + [sym_union_specifier] = STATE(3293), + [sym_expression] = STATE(5074), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_type_descriptor] = STATE(8098), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_placeholder_type_specifier] = STATE(3293), + [sym_decltype_auto] = STATE(3292), + [sym_decltype] = STATE(2572), + [sym_class_specifier] = STATE(3293), + [sym_class_name] = STATE(8965), + [sym_dependent_type] = STATE(3293), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_type_parameter_pack_expansion] = STATE(8478), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6620), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(6338), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [aux_sym_type_definition_type_repeat1] = STATE(4685), + [aux_sym_sized_type_specifier_repeat1] = STATE(2573), + [sym_identifier] = ACTIONS(3310), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_signed] = ACTIONS(3324), + [anon_sym_unsigned] = ACTIONS(3324), + [anon_sym_long] = ACTIONS(3324), + [anon_sym_short] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3330), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_union] = ACTIONS(3334), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3358), + [anon_sym_decltype] = ACTIONS(3360), + [anon_sym_typename] = ACTIONS(3362), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_GT2] = ACTIONS(3455), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), }, [383] = { [sym_identifier] = ACTIONS(3457), @@ -119043,560 +109218,560 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(3471), }, [387] = { - [sym_identifier] = ACTIONS(3473), - [aux_sym_preproc_include_token1] = ACTIONS(3473), - [aux_sym_preproc_def_token1] = ACTIONS(3473), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3475), - [aux_sym_preproc_if_token1] = ACTIONS(3473), - [aux_sym_preproc_if_token2] = ACTIONS(3473), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3473), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3473), - [aux_sym_preproc_else_token1] = ACTIONS(3473), - [aux_sym_preproc_elif_token1] = ACTIONS(3473), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3473), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3473), - [sym_preproc_directive] = ACTIONS(3473), - [anon_sym_LPAREN2] = ACTIONS(3475), - [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(3475), - [anon_sym_DASH] = ACTIONS(3473), - [anon_sym_PLUS] = ACTIONS(3473), - [anon_sym_STAR] = ACTIONS(3475), - [anon_sym_AMP_AMP] = ACTIONS(3475), - [anon_sym_AMP] = ACTIONS(3473), - [anon_sym_SEMI] = ACTIONS(3475), - [anon_sym___extension__] = ACTIONS(3473), - [anon_sym_typedef] = ACTIONS(3473), - [anon_sym_extern] = ACTIONS(3473), - [anon_sym___attribute__] = ACTIONS(3473), - [anon_sym_COLON_COLON] = ACTIONS(3475), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3475), - [anon_sym___declspec] = ACTIONS(3473), - [anon_sym___based] = ACTIONS(3473), - [anon_sym___cdecl] = ACTIONS(3473), - [anon_sym___clrcall] = ACTIONS(3473), - [anon_sym___stdcall] = ACTIONS(3473), - [anon_sym___fastcall] = ACTIONS(3473), - [anon_sym___thiscall] = ACTIONS(3473), - [anon_sym___vectorcall] = ACTIONS(3473), - [anon_sym_LBRACE] = ACTIONS(3475), - [anon_sym_signed] = ACTIONS(3473), - [anon_sym_unsigned] = ACTIONS(3473), - [anon_sym_long] = ACTIONS(3473), - [anon_sym_short] = ACTIONS(3473), - [anon_sym_LBRACK] = ACTIONS(3473), - [anon_sym_static] = ACTIONS(3473), - [anon_sym_register] = ACTIONS(3473), - [anon_sym_inline] = ACTIONS(3473), - [anon_sym___inline] = ACTIONS(3473), - [anon_sym___inline__] = ACTIONS(3473), - [anon_sym___forceinline] = ACTIONS(3473), - [anon_sym_thread_local] = ACTIONS(3473), - [anon_sym___thread] = ACTIONS(3473), - [anon_sym_const] = ACTIONS(3473), - [anon_sym_constexpr] = ACTIONS(3473), - [anon_sym_volatile] = ACTIONS(3473), - [anon_sym_restrict] = ACTIONS(3473), - [anon_sym___restrict__] = ACTIONS(3473), - [anon_sym__Atomic] = ACTIONS(3473), - [anon_sym__Noreturn] = ACTIONS(3473), - [anon_sym_noreturn] = ACTIONS(3473), - [anon_sym_mutable] = ACTIONS(3473), - [anon_sym_constinit] = ACTIONS(3473), - [anon_sym_consteval] = ACTIONS(3473), - [sym_primitive_type] = ACTIONS(3473), - [anon_sym_enum] = ACTIONS(3473), - [anon_sym_class] = ACTIONS(3473), - [anon_sym_struct] = ACTIONS(3473), - [anon_sym_union] = ACTIONS(3473), - [anon_sym_if] = ACTIONS(3473), - [anon_sym_switch] = ACTIONS(3473), - [anon_sym_case] = ACTIONS(3473), - [anon_sym_default] = ACTIONS(3473), - [anon_sym_while] = ACTIONS(3473), - [anon_sym_do] = ACTIONS(3473), - [anon_sym_for] = ACTIONS(3473), - [anon_sym_return] = ACTIONS(3473), - [anon_sym_break] = ACTIONS(3473), - [anon_sym_continue] = ACTIONS(3473), - [anon_sym_goto] = ACTIONS(3473), - [anon_sym___try] = ACTIONS(3473), - [anon_sym___leave] = ACTIONS(3473), - [anon_sym_not] = ACTIONS(3473), - [anon_sym_compl] = ACTIONS(3473), - [anon_sym_DASH_DASH] = ACTIONS(3475), - [anon_sym_PLUS_PLUS] = ACTIONS(3475), - [anon_sym_sizeof] = ACTIONS(3473), - [anon_sym___alignof__] = ACTIONS(3473), - [anon_sym___alignof] = ACTIONS(3473), - [anon_sym__alignof] = ACTIONS(3473), - [anon_sym_alignof] = ACTIONS(3473), - [anon_sym__Alignof] = ACTIONS(3473), - [anon_sym_offsetof] = ACTIONS(3473), - [anon_sym__Generic] = ACTIONS(3473), - [anon_sym_asm] = ACTIONS(3473), - [anon_sym___asm__] = ACTIONS(3473), - [sym_number_literal] = ACTIONS(3475), - [anon_sym_L_SQUOTE] = ACTIONS(3475), - [anon_sym_u_SQUOTE] = ACTIONS(3475), - [anon_sym_U_SQUOTE] = ACTIONS(3475), - [anon_sym_u8_SQUOTE] = ACTIONS(3475), - [anon_sym_SQUOTE] = ACTIONS(3475), - [anon_sym_L_DQUOTE] = ACTIONS(3475), - [anon_sym_u_DQUOTE] = ACTIONS(3475), - [anon_sym_U_DQUOTE] = ACTIONS(3475), - [anon_sym_u8_DQUOTE] = ACTIONS(3475), - [anon_sym_DQUOTE] = ACTIONS(3475), - [sym_true] = ACTIONS(3473), - [sym_false] = ACTIONS(3473), - [anon_sym_NULL] = ACTIONS(3473), - [anon_sym_nullptr] = ACTIONS(3473), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3473), - [anon_sym_decltype] = ACTIONS(3473), - [anon_sym_virtual] = ACTIONS(3473), - [anon_sym_alignas] = ACTIONS(3473), - [anon_sym_explicit] = ACTIONS(3473), - [anon_sym_typename] = ACTIONS(3473), - [anon_sym_template] = ACTIONS(3473), - [anon_sym_operator] = ACTIONS(3473), - [anon_sym_try] = ACTIONS(3473), - [anon_sym_delete] = ACTIONS(3473), - [anon_sym_throw] = ACTIONS(3473), - [anon_sym_namespace] = ACTIONS(3473), - [anon_sym_using] = ACTIONS(3473), - [anon_sym_static_assert] = ACTIONS(3473), - [anon_sym_concept] = ACTIONS(3473), - [anon_sym_co_return] = ACTIONS(3473), - [anon_sym_co_yield] = ACTIONS(3473), - [anon_sym_R_DQUOTE] = ACTIONS(3475), - [anon_sym_LR_DQUOTE] = ACTIONS(3475), - [anon_sym_uR_DQUOTE] = ACTIONS(3475), - [anon_sym_UR_DQUOTE] = ACTIONS(3475), - [anon_sym_u8R_DQUOTE] = ACTIONS(3475), - [anon_sym_co_await] = ACTIONS(3473), - [anon_sym_new] = ACTIONS(3473), - [anon_sym_requires] = ACTIONS(3473), - [sym_this] = ACTIONS(3473), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3475), - [sym_semgrep_named_ellipsis] = ACTIONS(3475), + [sym_type_qualifier] = STATE(4685), + [sym_type_specifier] = STATE(5782), + [sym_sized_type_specifier] = STATE(3293), + [sym_enum_specifier] = STATE(3293), + [sym_struct_specifier] = STATE(3293), + [sym_union_specifier] = STATE(3293), + [sym_expression] = STATE(5080), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_type_descriptor] = STATE(8128), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_placeholder_type_specifier] = STATE(3293), + [sym_decltype_auto] = STATE(3292), + [sym_decltype] = STATE(2572), + [sym_class_specifier] = STATE(3293), + [sym_class_name] = STATE(8965), + [sym_dependent_type] = STATE(3293), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_type_parameter_pack_expansion] = STATE(8559), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6620), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(6338), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [aux_sym_type_definition_type_repeat1] = STATE(4685), + [aux_sym_sized_type_specifier_repeat1] = STATE(2573), + [sym_identifier] = ACTIONS(3310), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_signed] = ACTIONS(3324), + [anon_sym_unsigned] = ACTIONS(3324), + [anon_sym_long] = ACTIONS(3324), + [anon_sym_short] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3330), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_union] = ACTIONS(3334), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3358), + [anon_sym_decltype] = ACTIONS(3360), + [anon_sym_typename] = ACTIONS(3362), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_GT2] = ACTIONS(3473), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), }, [388] = { - [sym_identifier] = ACTIONS(3477), - [aux_sym_preproc_include_token1] = ACTIONS(3477), - [aux_sym_preproc_def_token1] = ACTIONS(3477), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3479), - [aux_sym_preproc_if_token1] = ACTIONS(3477), - [aux_sym_preproc_if_token2] = ACTIONS(3477), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3477), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3477), - [aux_sym_preproc_else_token1] = ACTIONS(3477), - [aux_sym_preproc_elif_token1] = ACTIONS(3477), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3477), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3477), - [sym_preproc_directive] = ACTIONS(3477), - [anon_sym_LPAREN2] = ACTIONS(3479), - [anon_sym_BANG] = ACTIONS(3479), - [anon_sym_TILDE] = ACTIONS(3479), - [anon_sym_DASH] = ACTIONS(3477), - [anon_sym_PLUS] = ACTIONS(3477), - [anon_sym_STAR] = ACTIONS(3479), - [anon_sym_AMP_AMP] = ACTIONS(3479), - [anon_sym_AMP] = ACTIONS(3477), - [anon_sym_SEMI] = ACTIONS(3479), - [anon_sym___extension__] = ACTIONS(3477), - [anon_sym_typedef] = ACTIONS(3477), - [anon_sym_extern] = ACTIONS(3477), - [anon_sym___attribute__] = ACTIONS(3477), - [anon_sym_COLON_COLON] = ACTIONS(3479), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3479), - [anon_sym___declspec] = ACTIONS(3477), - [anon_sym___based] = ACTIONS(3477), - [anon_sym___cdecl] = ACTIONS(3477), - [anon_sym___clrcall] = ACTIONS(3477), - [anon_sym___stdcall] = ACTIONS(3477), - [anon_sym___fastcall] = ACTIONS(3477), - [anon_sym___thiscall] = ACTIONS(3477), - [anon_sym___vectorcall] = ACTIONS(3477), - [anon_sym_LBRACE] = ACTIONS(3479), - [anon_sym_signed] = ACTIONS(3477), - [anon_sym_unsigned] = ACTIONS(3477), - [anon_sym_long] = ACTIONS(3477), - [anon_sym_short] = ACTIONS(3477), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_static] = ACTIONS(3477), - [anon_sym_register] = ACTIONS(3477), - [anon_sym_inline] = ACTIONS(3477), - [anon_sym___inline] = ACTIONS(3477), - [anon_sym___inline__] = ACTIONS(3477), - [anon_sym___forceinline] = ACTIONS(3477), - [anon_sym_thread_local] = ACTIONS(3477), - [anon_sym___thread] = ACTIONS(3477), - [anon_sym_const] = ACTIONS(3477), - [anon_sym_constexpr] = ACTIONS(3477), - [anon_sym_volatile] = ACTIONS(3477), - [anon_sym_restrict] = ACTIONS(3477), - [anon_sym___restrict__] = ACTIONS(3477), - [anon_sym__Atomic] = ACTIONS(3477), - [anon_sym__Noreturn] = ACTIONS(3477), - [anon_sym_noreturn] = ACTIONS(3477), - [anon_sym_mutable] = ACTIONS(3477), - [anon_sym_constinit] = ACTIONS(3477), - [anon_sym_consteval] = ACTIONS(3477), - [sym_primitive_type] = ACTIONS(3477), - [anon_sym_enum] = ACTIONS(3477), - [anon_sym_class] = ACTIONS(3477), - [anon_sym_struct] = ACTIONS(3477), - [anon_sym_union] = ACTIONS(3477), - [anon_sym_if] = ACTIONS(3477), - [anon_sym_switch] = ACTIONS(3477), - [anon_sym_case] = ACTIONS(3477), - [anon_sym_default] = ACTIONS(3477), - [anon_sym_while] = ACTIONS(3477), - [anon_sym_do] = ACTIONS(3477), - [anon_sym_for] = ACTIONS(3477), - [anon_sym_return] = ACTIONS(3477), - [anon_sym_break] = ACTIONS(3477), - [anon_sym_continue] = ACTIONS(3477), - [anon_sym_goto] = ACTIONS(3477), - [anon_sym___try] = ACTIONS(3477), - [anon_sym___leave] = ACTIONS(3477), - [anon_sym_not] = ACTIONS(3477), - [anon_sym_compl] = ACTIONS(3477), - [anon_sym_DASH_DASH] = ACTIONS(3479), - [anon_sym_PLUS_PLUS] = ACTIONS(3479), - [anon_sym_sizeof] = ACTIONS(3477), - [anon_sym___alignof__] = ACTIONS(3477), - [anon_sym___alignof] = ACTIONS(3477), - [anon_sym__alignof] = ACTIONS(3477), - [anon_sym_alignof] = ACTIONS(3477), - [anon_sym__Alignof] = ACTIONS(3477), - [anon_sym_offsetof] = ACTIONS(3477), - [anon_sym__Generic] = ACTIONS(3477), - [anon_sym_asm] = ACTIONS(3477), - [anon_sym___asm__] = ACTIONS(3477), - [sym_number_literal] = ACTIONS(3479), - [anon_sym_L_SQUOTE] = ACTIONS(3479), - [anon_sym_u_SQUOTE] = ACTIONS(3479), - [anon_sym_U_SQUOTE] = ACTIONS(3479), - [anon_sym_u8_SQUOTE] = ACTIONS(3479), - [anon_sym_SQUOTE] = ACTIONS(3479), - [anon_sym_L_DQUOTE] = ACTIONS(3479), - [anon_sym_u_DQUOTE] = ACTIONS(3479), - [anon_sym_U_DQUOTE] = ACTIONS(3479), - [anon_sym_u8_DQUOTE] = ACTIONS(3479), - [anon_sym_DQUOTE] = ACTIONS(3479), - [sym_true] = ACTIONS(3477), - [sym_false] = ACTIONS(3477), - [anon_sym_NULL] = ACTIONS(3477), - [anon_sym_nullptr] = ACTIONS(3477), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3477), - [anon_sym_decltype] = ACTIONS(3477), - [anon_sym_virtual] = ACTIONS(3477), - [anon_sym_alignas] = ACTIONS(3477), - [anon_sym_explicit] = ACTIONS(3477), - [anon_sym_typename] = ACTIONS(3477), - [anon_sym_template] = ACTIONS(3477), - [anon_sym_operator] = ACTIONS(3477), - [anon_sym_try] = ACTIONS(3477), - [anon_sym_delete] = ACTIONS(3477), - [anon_sym_throw] = ACTIONS(3477), - [anon_sym_namespace] = ACTIONS(3477), - [anon_sym_using] = ACTIONS(3477), - [anon_sym_static_assert] = ACTIONS(3477), - [anon_sym_concept] = ACTIONS(3477), - [anon_sym_co_return] = ACTIONS(3477), - [anon_sym_co_yield] = ACTIONS(3477), - [anon_sym_R_DQUOTE] = ACTIONS(3479), - [anon_sym_LR_DQUOTE] = ACTIONS(3479), - [anon_sym_uR_DQUOTE] = ACTIONS(3479), - [anon_sym_UR_DQUOTE] = ACTIONS(3479), - [anon_sym_u8R_DQUOTE] = ACTIONS(3479), - [anon_sym_co_await] = ACTIONS(3477), - [anon_sym_new] = ACTIONS(3477), - [anon_sym_requires] = ACTIONS(3477), - [sym_this] = ACTIONS(3477), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3479), - [sym_semgrep_named_ellipsis] = ACTIONS(3479), + [sym_identifier] = ACTIONS(3475), + [aux_sym_preproc_include_token1] = ACTIONS(3475), + [aux_sym_preproc_def_token1] = ACTIONS(3475), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3477), + [aux_sym_preproc_if_token1] = ACTIONS(3475), + [aux_sym_preproc_if_token2] = ACTIONS(3475), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3475), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3475), + [aux_sym_preproc_else_token1] = ACTIONS(3475), + [aux_sym_preproc_elif_token1] = ACTIONS(3475), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3475), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3475), + [sym_preproc_directive] = ACTIONS(3475), + [anon_sym_LPAREN2] = ACTIONS(3477), + [anon_sym_BANG] = ACTIONS(3477), + [anon_sym_TILDE] = ACTIONS(3477), + [anon_sym_DASH] = ACTIONS(3475), + [anon_sym_PLUS] = ACTIONS(3475), + [anon_sym_STAR] = ACTIONS(3477), + [anon_sym_AMP_AMP] = ACTIONS(3477), + [anon_sym_AMP] = ACTIONS(3475), + [anon_sym_SEMI] = ACTIONS(3477), + [anon_sym___extension__] = ACTIONS(3475), + [anon_sym_typedef] = ACTIONS(3475), + [anon_sym_extern] = ACTIONS(3475), + [anon_sym___attribute__] = ACTIONS(3475), + [anon_sym_COLON_COLON] = ACTIONS(3477), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3477), + [anon_sym___declspec] = ACTIONS(3475), + [anon_sym___based] = ACTIONS(3475), + [anon_sym___cdecl] = ACTIONS(3475), + [anon_sym___clrcall] = ACTIONS(3475), + [anon_sym___stdcall] = ACTIONS(3475), + [anon_sym___fastcall] = ACTIONS(3475), + [anon_sym___thiscall] = ACTIONS(3475), + [anon_sym___vectorcall] = ACTIONS(3475), + [anon_sym_LBRACE] = ACTIONS(3477), + [anon_sym_signed] = ACTIONS(3475), + [anon_sym_unsigned] = ACTIONS(3475), + [anon_sym_long] = ACTIONS(3475), + [anon_sym_short] = ACTIONS(3475), + [anon_sym_LBRACK] = ACTIONS(3475), + [anon_sym_static] = ACTIONS(3475), + [anon_sym_register] = ACTIONS(3475), + [anon_sym_inline] = ACTIONS(3475), + [anon_sym___inline] = ACTIONS(3475), + [anon_sym___inline__] = ACTIONS(3475), + [anon_sym___forceinline] = ACTIONS(3475), + [anon_sym_thread_local] = ACTIONS(3475), + [anon_sym___thread] = ACTIONS(3475), + [anon_sym_const] = ACTIONS(3475), + [anon_sym_constexpr] = ACTIONS(3475), + [anon_sym_volatile] = ACTIONS(3475), + [anon_sym_restrict] = ACTIONS(3475), + [anon_sym___restrict__] = ACTIONS(3475), + [anon_sym__Atomic] = ACTIONS(3475), + [anon_sym__Noreturn] = ACTIONS(3475), + [anon_sym_noreturn] = ACTIONS(3475), + [anon_sym_mutable] = ACTIONS(3475), + [anon_sym_constinit] = ACTIONS(3475), + [anon_sym_consteval] = ACTIONS(3475), + [sym_primitive_type] = ACTIONS(3475), + [anon_sym_enum] = ACTIONS(3475), + [anon_sym_class] = ACTIONS(3475), + [anon_sym_struct] = ACTIONS(3475), + [anon_sym_union] = ACTIONS(3475), + [anon_sym_if] = ACTIONS(3475), + [anon_sym_switch] = ACTIONS(3475), + [anon_sym_case] = ACTIONS(3475), + [anon_sym_default] = ACTIONS(3475), + [anon_sym_while] = ACTIONS(3475), + [anon_sym_do] = ACTIONS(3475), + [anon_sym_for] = ACTIONS(3475), + [anon_sym_return] = ACTIONS(3475), + [anon_sym_break] = ACTIONS(3475), + [anon_sym_continue] = ACTIONS(3475), + [anon_sym_goto] = ACTIONS(3475), + [anon_sym___try] = ACTIONS(3475), + [anon_sym___leave] = ACTIONS(3475), + [anon_sym_not] = ACTIONS(3475), + [anon_sym_compl] = ACTIONS(3475), + [anon_sym_DASH_DASH] = ACTIONS(3477), + [anon_sym_PLUS_PLUS] = ACTIONS(3477), + [anon_sym_sizeof] = ACTIONS(3475), + [anon_sym___alignof__] = ACTIONS(3475), + [anon_sym___alignof] = ACTIONS(3475), + [anon_sym__alignof] = ACTIONS(3475), + [anon_sym_alignof] = ACTIONS(3475), + [anon_sym__Alignof] = ACTIONS(3475), + [anon_sym_offsetof] = ACTIONS(3475), + [anon_sym__Generic] = ACTIONS(3475), + [anon_sym_asm] = ACTIONS(3475), + [anon_sym___asm__] = ACTIONS(3475), + [sym_number_literal] = ACTIONS(3477), + [anon_sym_L_SQUOTE] = ACTIONS(3477), + [anon_sym_u_SQUOTE] = ACTIONS(3477), + [anon_sym_U_SQUOTE] = ACTIONS(3477), + [anon_sym_u8_SQUOTE] = ACTIONS(3477), + [anon_sym_SQUOTE] = ACTIONS(3477), + [anon_sym_L_DQUOTE] = ACTIONS(3477), + [anon_sym_u_DQUOTE] = ACTIONS(3477), + [anon_sym_U_DQUOTE] = ACTIONS(3477), + [anon_sym_u8_DQUOTE] = ACTIONS(3477), + [anon_sym_DQUOTE] = ACTIONS(3477), + [sym_true] = ACTIONS(3475), + [sym_false] = ACTIONS(3475), + [anon_sym_NULL] = ACTIONS(3475), + [anon_sym_nullptr] = ACTIONS(3475), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3475), + [anon_sym_decltype] = ACTIONS(3475), + [anon_sym_virtual] = ACTIONS(3475), + [anon_sym_alignas] = ACTIONS(3475), + [anon_sym_explicit] = ACTIONS(3475), + [anon_sym_typename] = ACTIONS(3475), + [anon_sym_template] = ACTIONS(3475), + [anon_sym_operator] = ACTIONS(3475), + [anon_sym_try] = ACTIONS(3475), + [anon_sym_delete] = ACTIONS(3475), + [anon_sym_throw] = ACTIONS(3475), + [anon_sym_namespace] = ACTIONS(3475), + [anon_sym_using] = ACTIONS(3475), + [anon_sym_static_assert] = ACTIONS(3475), + [anon_sym_concept] = ACTIONS(3475), + [anon_sym_co_return] = ACTIONS(3475), + [anon_sym_co_yield] = ACTIONS(3475), + [anon_sym_R_DQUOTE] = ACTIONS(3477), + [anon_sym_LR_DQUOTE] = ACTIONS(3477), + [anon_sym_uR_DQUOTE] = ACTIONS(3477), + [anon_sym_UR_DQUOTE] = ACTIONS(3477), + [anon_sym_u8R_DQUOTE] = ACTIONS(3477), + [anon_sym_co_await] = ACTIONS(3475), + [anon_sym_new] = ACTIONS(3475), + [anon_sym_requires] = ACTIONS(3475), + [sym_this] = ACTIONS(3475), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3477), + [sym_semgrep_named_ellipsis] = ACTIONS(3477), }, [389] = { - [sym_identifier] = ACTIONS(3481), - [aux_sym_preproc_include_token1] = ACTIONS(3481), - [aux_sym_preproc_def_token1] = ACTIONS(3481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3483), - [aux_sym_preproc_if_token1] = ACTIONS(3481), - [aux_sym_preproc_if_token2] = ACTIONS(3481), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3481), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3481), - [aux_sym_preproc_else_token1] = ACTIONS(3481), - [aux_sym_preproc_elif_token1] = ACTIONS(3481), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3481), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3481), - [sym_preproc_directive] = ACTIONS(3481), - [anon_sym_LPAREN2] = ACTIONS(3483), - [anon_sym_BANG] = ACTIONS(3483), - [anon_sym_TILDE] = ACTIONS(3483), - [anon_sym_DASH] = ACTIONS(3481), - [anon_sym_PLUS] = ACTIONS(3481), - [anon_sym_STAR] = ACTIONS(3483), - [anon_sym_AMP_AMP] = ACTIONS(3483), - [anon_sym_AMP] = ACTIONS(3481), - [anon_sym_SEMI] = ACTIONS(3483), - [anon_sym___extension__] = ACTIONS(3481), - [anon_sym_typedef] = ACTIONS(3481), - [anon_sym_extern] = ACTIONS(3481), - [anon_sym___attribute__] = ACTIONS(3481), - [anon_sym_COLON_COLON] = ACTIONS(3483), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3483), - [anon_sym___declspec] = ACTIONS(3481), - [anon_sym___based] = ACTIONS(3481), - [anon_sym___cdecl] = ACTIONS(3481), - [anon_sym___clrcall] = ACTIONS(3481), - [anon_sym___stdcall] = ACTIONS(3481), - [anon_sym___fastcall] = ACTIONS(3481), - [anon_sym___thiscall] = ACTIONS(3481), - [anon_sym___vectorcall] = ACTIONS(3481), - [anon_sym_LBRACE] = ACTIONS(3483), - [anon_sym_signed] = ACTIONS(3481), - [anon_sym_unsigned] = ACTIONS(3481), - [anon_sym_long] = ACTIONS(3481), - [anon_sym_short] = ACTIONS(3481), - [anon_sym_LBRACK] = ACTIONS(3481), - [anon_sym_static] = ACTIONS(3481), - [anon_sym_register] = ACTIONS(3481), - [anon_sym_inline] = ACTIONS(3481), - [anon_sym___inline] = ACTIONS(3481), - [anon_sym___inline__] = ACTIONS(3481), - [anon_sym___forceinline] = ACTIONS(3481), - [anon_sym_thread_local] = ACTIONS(3481), - [anon_sym___thread] = ACTIONS(3481), - [anon_sym_const] = ACTIONS(3481), - [anon_sym_constexpr] = ACTIONS(3481), - [anon_sym_volatile] = ACTIONS(3481), - [anon_sym_restrict] = ACTIONS(3481), - [anon_sym___restrict__] = ACTIONS(3481), - [anon_sym__Atomic] = ACTIONS(3481), - [anon_sym__Noreturn] = ACTIONS(3481), - [anon_sym_noreturn] = ACTIONS(3481), - [anon_sym_mutable] = ACTIONS(3481), - [anon_sym_constinit] = ACTIONS(3481), - [anon_sym_consteval] = ACTIONS(3481), - [sym_primitive_type] = ACTIONS(3481), - [anon_sym_enum] = ACTIONS(3481), - [anon_sym_class] = ACTIONS(3481), - [anon_sym_struct] = ACTIONS(3481), - [anon_sym_union] = ACTIONS(3481), - [anon_sym_if] = ACTIONS(3481), - [anon_sym_switch] = ACTIONS(3481), - [anon_sym_case] = ACTIONS(3481), - [anon_sym_default] = ACTIONS(3481), - [anon_sym_while] = ACTIONS(3481), - [anon_sym_do] = ACTIONS(3481), - [anon_sym_for] = ACTIONS(3481), - [anon_sym_return] = ACTIONS(3481), - [anon_sym_break] = ACTIONS(3481), - [anon_sym_continue] = ACTIONS(3481), - [anon_sym_goto] = ACTIONS(3481), - [anon_sym___try] = ACTIONS(3481), - [anon_sym___leave] = ACTIONS(3481), - [anon_sym_not] = ACTIONS(3481), - [anon_sym_compl] = ACTIONS(3481), - [anon_sym_DASH_DASH] = ACTIONS(3483), - [anon_sym_PLUS_PLUS] = ACTIONS(3483), - [anon_sym_sizeof] = ACTIONS(3481), - [anon_sym___alignof__] = ACTIONS(3481), - [anon_sym___alignof] = ACTIONS(3481), - [anon_sym__alignof] = ACTIONS(3481), - [anon_sym_alignof] = ACTIONS(3481), - [anon_sym__Alignof] = ACTIONS(3481), - [anon_sym_offsetof] = ACTIONS(3481), - [anon_sym__Generic] = ACTIONS(3481), - [anon_sym_asm] = ACTIONS(3481), - [anon_sym___asm__] = ACTIONS(3481), - [sym_number_literal] = ACTIONS(3483), - [anon_sym_L_SQUOTE] = ACTIONS(3483), - [anon_sym_u_SQUOTE] = ACTIONS(3483), - [anon_sym_U_SQUOTE] = ACTIONS(3483), - [anon_sym_u8_SQUOTE] = ACTIONS(3483), - [anon_sym_SQUOTE] = ACTIONS(3483), - [anon_sym_L_DQUOTE] = ACTIONS(3483), - [anon_sym_u_DQUOTE] = ACTIONS(3483), - [anon_sym_U_DQUOTE] = ACTIONS(3483), - [anon_sym_u8_DQUOTE] = ACTIONS(3483), - [anon_sym_DQUOTE] = ACTIONS(3483), - [sym_true] = ACTIONS(3481), - [sym_false] = ACTIONS(3481), - [anon_sym_NULL] = ACTIONS(3481), - [anon_sym_nullptr] = ACTIONS(3481), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3481), - [anon_sym_decltype] = ACTIONS(3481), - [anon_sym_virtual] = ACTIONS(3481), - [anon_sym_alignas] = ACTIONS(3481), - [anon_sym_explicit] = ACTIONS(3481), - [anon_sym_typename] = ACTIONS(3481), - [anon_sym_template] = ACTIONS(3481), - [anon_sym_operator] = ACTIONS(3481), - [anon_sym_try] = ACTIONS(3481), - [anon_sym_delete] = ACTIONS(3481), - [anon_sym_throw] = ACTIONS(3481), - [anon_sym_namespace] = ACTIONS(3481), - [anon_sym_using] = ACTIONS(3481), - [anon_sym_static_assert] = ACTIONS(3481), - [anon_sym_concept] = ACTIONS(3481), - [anon_sym_co_return] = ACTIONS(3481), - [anon_sym_co_yield] = ACTIONS(3481), - [anon_sym_R_DQUOTE] = ACTIONS(3483), - [anon_sym_LR_DQUOTE] = ACTIONS(3483), - [anon_sym_uR_DQUOTE] = ACTIONS(3483), - [anon_sym_UR_DQUOTE] = ACTIONS(3483), - [anon_sym_u8R_DQUOTE] = ACTIONS(3483), - [anon_sym_co_await] = ACTIONS(3481), - [anon_sym_new] = ACTIONS(3481), - [anon_sym_requires] = ACTIONS(3481), - [sym_this] = ACTIONS(3481), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3483), - [sym_semgrep_named_ellipsis] = ACTIONS(3483), + [sym_identifier] = ACTIONS(3479), + [aux_sym_preproc_include_token1] = ACTIONS(3479), + [aux_sym_preproc_def_token1] = ACTIONS(3479), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3481), + [aux_sym_preproc_if_token1] = ACTIONS(3479), + [aux_sym_preproc_if_token2] = ACTIONS(3479), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3479), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3479), + [aux_sym_preproc_else_token1] = ACTIONS(3479), + [aux_sym_preproc_elif_token1] = ACTIONS(3479), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3479), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3479), + [sym_preproc_directive] = ACTIONS(3479), + [anon_sym_LPAREN2] = ACTIONS(3481), + [anon_sym_BANG] = ACTIONS(3481), + [anon_sym_TILDE] = ACTIONS(3481), + [anon_sym_DASH] = ACTIONS(3479), + [anon_sym_PLUS] = ACTIONS(3479), + [anon_sym_STAR] = ACTIONS(3481), + [anon_sym_AMP_AMP] = ACTIONS(3481), + [anon_sym_AMP] = ACTIONS(3479), + [anon_sym_SEMI] = ACTIONS(3481), + [anon_sym___extension__] = ACTIONS(3479), + [anon_sym_typedef] = ACTIONS(3479), + [anon_sym_extern] = ACTIONS(3479), + [anon_sym___attribute__] = ACTIONS(3479), + [anon_sym_COLON_COLON] = ACTIONS(3481), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3481), + [anon_sym___declspec] = ACTIONS(3479), + [anon_sym___based] = ACTIONS(3479), + [anon_sym___cdecl] = ACTIONS(3479), + [anon_sym___clrcall] = ACTIONS(3479), + [anon_sym___stdcall] = ACTIONS(3479), + [anon_sym___fastcall] = ACTIONS(3479), + [anon_sym___thiscall] = ACTIONS(3479), + [anon_sym___vectorcall] = ACTIONS(3479), + [anon_sym_LBRACE] = ACTIONS(3481), + [anon_sym_signed] = ACTIONS(3479), + [anon_sym_unsigned] = ACTIONS(3479), + [anon_sym_long] = ACTIONS(3479), + [anon_sym_short] = ACTIONS(3479), + [anon_sym_LBRACK] = ACTIONS(3479), + [anon_sym_static] = ACTIONS(3479), + [anon_sym_register] = ACTIONS(3479), + [anon_sym_inline] = ACTIONS(3479), + [anon_sym___inline] = ACTIONS(3479), + [anon_sym___inline__] = ACTIONS(3479), + [anon_sym___forceinline] = ACTIONS(3479), + [anon_sym_thread_local] = ACTIONS(3479), + [anon_sym___thread] = ACTIONS(3479), + [anon_sym_const] = ACTIONS(3479), + [anon_sym_constexpr] = ACTIONS(3479), + [anon_sym_volatile] = ACTIONS(3479), + [anon_sym_restrict] = ACTIONS(3479), + [anon_sym___restrict__] = ACTIONS(3479), + [anon_sym__Atomic] = ACTIONS(3479), + [anon_sym__Noreturn] = ACTIONS(3479), + [anon_sym_noreturn] = ACTIONS(3479), + [anon_sym_mutable] = ACTIONS(3479), + [anon_sym_constinit] = ACTIONS(3479), + [anon_sym_consteval] = ACTIONS(3479), + [sym_primitive_type] = ACTIONS(3479), + [anon_sym_enum] = ACTIONS(3479), + [anon_sym_class] = ACTIONS(3479), + [anon_sym_struct] = ACTIONS(3479), + [anon_sym_union] = ACTIONS(3479), + [anon_sym_if] = ACTIONS(3479), + [anon_sym_switch] = ACTIONS(3479), + [anon_sym_case] = ACTIONS(3479), + [anon_sym_default] = ACTIONS(3479), + [anon_sym_while] = ACTIONS(3479), + [anon_sym_do] = ACTIONS(3479), + [anon_sym_for] = ACTIONS(3479), + [anon_sym_return] = ACTIONS(3479), + [anon_sym_break] = ACTIONS(3479), + [anon_sym_continue] = ACTIONS(3479), + [anon_sym_goto] = ACTIONS(3479), + [anon_sym___try] = ACTIONS(3479), + [anon_sym___leave] = ACTIONS(3479), + [anon_sym_not] = ACTIONS(3479), + [anon_sym_compl] = ACTIONS(3479), + [anon_sym_DASH_DASH] = ACTIONS(3481), + [anon_sym_PLUS_PLUS] = ACTIONS(3481), + [anon_sym_sizeof] = ACTIONS(3479), + [anon_sym___alignof__] = ACTIONS(3479), + [anon_sym___alignof] = ACTIONS(3479), + [anon_sym__alignof] = ACTIONS(3479), + [anon_sym_alignof] = ACTIONS(3479), + [anon_sym__Alignof] = ACTIONS(3479), + [anon_sym_offsetof] = ACTIONS(3479), + [anon_sym__Generic] = ACTIONS(3479), + [anon_sym_asm] = ACTIONS(3479), + [anon_sym___asm__] = ACTIONS(3479), + [sym_number_literal] = ACTIONS(3481), + [anon_sym_L_SQUOTE] = ACTIONS(3481), + [anon_sym_u_SQUOTE] = ACTIONS(3481), + [anon_sym_U_SQUOTE] = ACTIONS(3481), + [anon_sym_u8_SQUOTE] = ACTIONS(3481), + [anon_sym_SQUOTE] = ACTIONS(3481), + [anon_sym_L_DQUOTE] = ACTIONS(3481), + [anon_sym_u_DQUOTE] = ACTIONS(3481), + [anon_sym_U_DQUOTE] = ACTIONS(3481), + [anon_sym_u8_DQUOTE] = ACTIONS(3481), + [anon_sym_DQUOTE] = ACTIONS(3481), + [sym_true] = ACTIONS(3479), + [sym_false] = ACTIONS(3479), + [anon_sym_NULL] = ACTIONS(3479), + [anon_sym_nullptr] = ACTIONS(3479), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3479), + [anon_sym_decltype] = ACTIONS(3479), + [anon_sym_virtual] = ACTIONS(3479), + [anon_sym_alignas] = ACTIONS(3479), + [anon_sym_explicit] = ACTIONS(3479), + [anon_sym_typename] = ACTIONS(3479), + [anon_sym_template] = ACTIONS(3479), + [anon_sym_operator] = ACTIONS(3479), + [anon_sym_try] = ACTIONS(3479), + [anon_sym_delete] = ACTIONS(3479), + [anon_sym_throw] = ACTIONS(3479), + [anon_sym_namespace] = ACTIONS(3479), + [anon_sym_using] = ACTIONS(3479), + [anon_sym_static_assert] = ACTIONS(3479), + [anon_sym_concept] = ACTIONS(3479), + [anon_sym_co_return] = ACTIONS(3479), + [anon_sym_co_yield] = ACTIONS(3479), + [anon_sym_R_DQUOTE] = ACTIONS(3481), + [anon_sym_LR_DQUOTE] = ACTIONS(3481), + [anon_sym_uR_DQUOTE] = ACTIONS(3481), + [anon_sym_UR_DQUOTE] = ACTIONS(3481), + [anon_sym_u8R_DQUOTE] = ACTIONS(3481), + [anon_sym_co_await] = ACTIONS(3479), + [anon_sym_new] = ACTIONS(3479), + [anon_sym_requires] = ACTIONS(3479), + [sym_this] = ACTIONS(3479), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3481), + [sym_semgrep_named_ellipsis] = ACTIONS(3481), }, [390] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5569), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8409), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(8776), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3485), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [sym_identifier] = ACTIONS(3483), + [aux_sym_preproc_include_token1] = ACTIONS(3483), + [aux_sym_preproc_def_token1] = ACTIONS(3483), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3485), + [aux_sym_preproc_if_token1] = ACTIONS(3483), + [aux_sym_preproc_if_token2] = ACTIONS(3483), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3483), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3483), + [aux_sym_preproc_else_token1] = ACTIONS(3483), + [aux_sym_preproc_elif_token1] = ACTIONS(3483), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3483), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3483), + [sym_preproc_directive] = ACTIONS(3483), + [anon_sym_LPAREN2] = ACTIONS(3485), + [anon_sym_BANG] = ACTIONS(3485), + [anon_sym_TILDE] = ACTIONS(3485), + [anon_sym_DASH] = ACTIONS(3483), + [anon_sym_PLUS] = ACTIONS(3483), + [anon_sym_STAR] = ACTIONS(3485), + [anon_sym_AMP_AMP] = ACTIONS(3485), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_SEMI] = ACTIONS(3485), + [anon_sym___extension__] = ACTIONS(3483), + [anon_sym_typedef] = ACTIONS(3483), + [anon_sym_extern] = ACTIONS(3483), + [anon_sym___attribute__] = ACTIONS(3483), + [anon_sym_COLON_COLON] = ACTIONS(3485), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3485), + [anon_sym___declspec] = ACTIONS(3483), + [anon_sym___based] = ACTIONS(3483), + [anon_sym___cdecl] = ACTIONS(3483), + [anon_sym___clrcall] = ACTIONS(3483), + [anon_sym___stdcall] = ACTIONS(3483), + [anon_sym___fastcall] = ACTIONS(3483), + [anon_sym___thiscall] = ACTIONS(3483), + [anon_sym___vectorcall] = ACTIONS(3483), + [anon_sym_LBRACE] = ACTIONS(3485), + [anon_sym_signed] = ACTIONS(3483), + [anon_sym_unsigned] = ACTIONS(3483), + [anon_sym_long] = ACTIONS(3483), + [anon_sym_short] = ACTIONS(3483), + [anon_sym_LBRACK] = ACTIONS(3483), + [anon_sym_static] = ACTIONS(3483), + [anon_sym_register] = ACTIONS(3483), + [anon_sym_inline] = ACTIONS(3483), + [anon_sym___inline] = ACTIONS(3483), + [anon_sym___inline__] = ACTIONS(3483), + [anon_sym___forceinline] = ACTIONS(3483), + [anon_sym_thread_local] = ACTIONS(3483), + [anon_sym___thread] = ACTIONS(3483), + [anon_sym_const] = ACTIONS(3483), + [anon_sym_constexpr] = ACTIONS(3483), + [anon_sym_volatile] = ACTIONS(3483), + [anon_sym_restrict] = ACTIONS(3483), + [anon_sym___restrict__] = ACTIONS(3483), + [anon_sym__Atomic] = ACTIONS(3483), + [anon_sym__Noreturn] = ACTIONS(3483), + [anon_sym_noreturn] = ACTIONS(3483), + [anon_sym_mutable] = ACTIONS(3483), + [anon_sym_constinit] = ACTIONS(3483), + [anon_sym_consteval] = ACTIONS(3483), + [sym_primitive_type] = ACTIONS(3483), + [anon_sym_enum] = ACTIONS(3483), + [anon_sym_class] = ACTIONS(3483), + [anon_sym_struct] = ACTIONS(3483), + [anon_sym_union] = ACTIONS(3483), + [anon_sym_if] = ACTIONS(3483), + [anon_sym_switch] = ACTIONS(3483), + [anon_sym_case] = ACTIONS(3483), + [anon_sym_default] = ACTIONS(3483), + [anon_sym_while] = ACTIONS(3483), + [anon_sym_do] = ACTIONS(3483), + [anon_sym_for] = ACTIONS(3483), + [anon_sym_return] = ACTIONS(3483), + [anon_sym_break] = ACTIONS(3483), + [anon_sym_continue] = ACTIONS(3483), + [anon_sym_goto] = ACTIONS(3483), + [anon_sym___try] = ACTIONS(3483), + [anon_sym___leave] = ACTIONS(3483), + [anon_sym_not] = ACTIONS(3483), + [anon_sym_compl] = ACTIONS(3483), + [anon_sym_DASH_DASH] = ACTIONS(3485), + [anon_sym_PLUS_PLUS] = ACTIONS(3485), + [anon_sym_sizeof] = ACTIONS(3483), + [anon_sym___alignof__] = ACTIONS(3483), + [anon_sym___alignof] = ACTIONS(3483), + [anon_sym__alignof] = ACTIONS(3483), + [anon_sym_alignof] = ACTIONS(3483), + [anon_sym__Alignof] = ACTIONS(3483), + [anon_sym_offsetof] = ACTIONS(3483), + [anon_sym__Generic] = ACTIONS(3483), + [anon_sym_asm] = ACTIONS(3483), + [anon_sym___asm__] = ACTIONS(3483), + [sym_number_literal] = ACTIONS(3485), + [anon_sym_L_SQUOTE] = ACTIONS(3485), + [anon_sym_u_SQUOTE] = ACTIONS(3485), + [anon_sym_U_SQUOTE] = ACTIONS(3485), + [anon_sym_u8_SQUOTE] = ACTIONS(3485), + [anon_sym_SQUOTE] = ACTIONS(3485), + [anon_sym_L_DQUOTE] = ACTIONS(3485), + [anon_sym_u_DQUOTE] = ACTIONS(3485), + [anon_sym_U_DQUOTE] = ACTIONS(3485), + [anon_sym_u8_DQUOTE] = ACTIONS(3485), + [anon_sym_DQUOTE] = ACTIONS(3485), + [sym_true] = ACTIONS(3483), + [sym_false] = ACTIONS(3483), + [anon_sym_NULL] = ACTIONS(3483), + [anon_sym_nullptr] = ACTIONS(3483), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3483), + [anon_sym_decltype] = ACTIONS(3483), + [anon_sym_virtual] = ACTIONS(3483), + [anon_sym_alignas] = ACTIONS(3483), + [anon_sym_explicit] = ACTIONS(3483), + [anon_sym_typename] = ACTIONS(3483), + [anon_sym_template] = ACTIONS(3483), + [anon_sym_operator] = ACTIONS(3483), + [anon_sym_try] = ACTIONS(3483), + [anon_sym_delete] = ACTIONS(3483), + [anon_sym_throw] = ACTIONS(3483), + [anon_sym_namespace] = ACTIONS(3483), + [anon_sym_using] = ACTIONS(3483), + [anon_sym_static_assert] = ACTIONS(3483), + [anon_sym_concept] = ACTIONS(3483), + [anon_sym_co_return] = ACTIONS(3483), + [anon_sym_co_yield] = ACTIONS(3483), + [anon_sym_R_DQUOTE] = ACTIONS(3485), + [anon_sym_LR_DQUOTE] = ACTIONS(3485), + [anon_sym_uR_DQUOTE] = ACTIONS(3485), + [anon_sym_UR_DQUOTE] = ACTIONS(3485), + [anon_sym_u8R_DQUOTE] = ACTIONS(3485), + [anon_sym_co_await] = ACTIONS(3483), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_requires] = ACTIONS(3483), + [sym_this] = ACTIONS(3483), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3485), + [sym_semgrep_named_ellipsis] = ACTIONS(3485), }, [391] = { [sym_identifier] = ACTIONS(3487), @@ -119738,423 +109913,562 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(3489), }, [392] = { - [sym_identifier] = ACTIONS(3491), - [aux_sym_preproc_include_token1] = ACTIONS(3491), - [aux_sym_preproc_def_token1] = ACTIONS(3491), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3493), - [aux_sym_preproc_if_token1] = ACTIONS(3491), - [aux_sym_preproc_if_token2] = ACTIONS(3491), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3491), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3491), - [aux_sym_preproc_else_token1] = ACTIONS(3491), - [aux_sym_preproc_elif_token1] = ACTIONS(3491), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3491), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3491), - [sym_preproc_directive] = ACTIONS(3491), - [anon_sym_LPAREN2] = ACTIONS(3493), - [anon_sym_BANG] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(3493), - [anon_sym_DASH] = ACTIONS(3491), - [anon_sym_PLUS] = ACTIONS(3491), - [anon_sym_STAR] = ACTIONS(3493), - [anon_sym_AMP_AMP] = ACTIONS(3493), - [anon_sym_AMP] = ACTIONS(3491), - [anon_sym_SEMI] = ACTIONS(3493), - [anon_sym___extension__] = ACTIONS(3491), - [anon_sym_typedef] = ACTIONS(3491), - [anon_sym_extern] = ACTIONS(3491), - [anon_sym___attribute__] = ACTIONS(3491), - [anon_sym_COLON_COLON] = ACTIONS(3493), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3493), - [anon_sym___declspec] = ACTIONS(3491), - [anon_sym___based] = ACTIONS(3491), - [anon_sym___cdecl] = ACTIONS(3491), - [anon_sym___clrcall] = ACTIONS(3491), - [anon_sym___stdcall] = ACTIONS(3491), - [anon_sym___fastcall] = ACTIONS(3491), - [anon_sym___thiscall] = ACTIONS(3491), - [anon_sym___vectorcall] = ACTIONS(3491), - [anon_sym_LBRACE] = ACTIONS(3493), - [anon_sym_signed] = ACTIONS(3491), - [anon_sym_unsigned] = ACTIONS(3491), - [anon_sym_long] = ACTIONS(3491), - [anon_sym_short] = ACTIONS(3491), - [anon_sym_LBRACK] = ACTIONS(3491), - [anon_sym_static] = ACTIONS(3491), - [anon_sym_register] = ACTIONS(3491), - [anon_sym_inline] = ACTIONS(3491), - [anon_sym___inline] = ACTIONS(3491), - [anon_sym___inline__] = ACTIONS(3491), - [anon_sym___forceinline] = ACTIONS(3491), - [anon_sym_thread_local] = ACTIONS(3491), - [anon_sym___thread] = ACTIONS(3491), - [anon_sym_const] = ACTIONS(3491), - [anon_sym_constexpr] = ACTIONS(3491), - [anon_sym_volatile] = ACTIONS(3491), - [anon_sym_restrict] = ACTIONS(3491), - [anon_sym___restrict__] = ACTIONS(3491), - [anon_sym__Atomic] = ACTIONS(3491), - [anon_sym__Noreturn] = ACTIONS(3491), - [anon_sym_noreturn] = ACTIONS(3491), - [anon_sym_mutable] = ACTIONS(3491), - [anon_sym_constinit] = ACTIONS(3491), - [anon_sym_consteval] = ACTIONS(3491), - [sym_primitive_type] = ACTIONS(3491), - [anon_sym_enum] = ACTIONS(3491), - [anon_sym_class] = ACTIONS(3491), - [anon_sym_struct] = ACTIONS(3491), - [anon_sym_union] = ACTIONS(3491), - [anon_sym_if] = ACTIONS(3491), - [anon_sym_switch] = ACTIONS(3491), - [anon_sym_case] = ACTIONS(3491), - [anon_sym_default] = ACTIONS(3491), - [anon_sym_while] = ACTIONS(3491), - [anon_sym_do] = ACTIONS(3491), - [anon_sym_for] = ACTIONS(3491), - [anon_sym_return] = ACTIONS(3491), - [anon_sym_break] = ACTIONS(3491), - [anon_sym_continue] = ACTIONS(3491), - [anon_sym_goto] = ACTIONS(3491), - [anon_sym___try] = ACTIONS(3491), - [anon_sym___leave] = ACTIONS(3491), - [anon_sym_not] = ACTIONS(3491), - [anon_sym_compl] = ACTIONS(3491), - [anon_sym_DASH_DASH] = ACTIONS(3493), - [anon_sym_PLUS_PLUS] = ACTIONS(3493), - [anon_sym_sizeof] = ACTIONS(3491), - [anon_sym___alignof__] = ACTIONS(3491), - [anon_sym___alignof] = ACTIONS(3491), - [anon_sym__alignof] = ACTIONS(3491), - [anon_sym_alignof] = ACTIONS(3491), - [anon_sym__Alignof] = ACTIONS(3491), - [anon_sym_offsetof] = ACTIONS(3491), - [anon_sym__Generic] = ACTIONS(3491), - [anon_sym_asm] = ACTIONS(3491), - [anon_sym___asm__] = ACTIONS(3491), - [sym_number_literal] = ACTIONS(3493), - [anon_sym_L_SQUOTE] = ACTIONS(3493), - [anon_sym_u_SQUOTE] = ACTIONS(3493), - [anon_sym_U_SQUOTE] = ACTIONS(3493), - [anon_sym_u8_SQUOTE] = ACTIONS(3493), - [anon_sym_SQUOTE] = ACTIONS(3493), - [anon_sym_L_DQUOTE] = ACTIONS(3493), - [anon_sym_u_DQUOTE] = ACTIONS(3493), - [anon_sym_U_DQUOTE] = ACTIONS(3493), - [anon_sym_u8_DQUOTE] = ACTIONS(3493), - [anon_sym_DQUOTE] = ACTIONS(3493), - [sym_true] = ACTIONS(3491), - [sym_false] = ACTIONS(3491), - [anon_sym_NULL] = ACTIONS(3491), - [anon_sym_nullptr] = ACTIONS(3491), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3491), - [anon_sym_decltype] = ACTIONS(3491), - [anon_sym_virtual] = ACTIONS(3491), - [anon_sym_alignas] = ACTIONS(3491), - [anon_sym_explicit] = ACTIONS(3491), - [anon_sym_typename] = ACTIONS(3491), - [anon_sym_template] = ACTIONS(3491), - [anon_sym_operator] = ACTIONS(3491), - [anon_sym_try] = ACTIONS(3491), - [anon_sym_delete] = ACTIONS(3491), - [anon_sym_throw] = ACTIONS(3491), - [anon_sym_namespace] = ACTIONS(3491), - [anon_sym_using] = ACTIONS(3491), - [anon_sym_static_assert] = ACTIONS(3491), - [anon_sym_concept] = ACTIONS(3491), - [anon_sym_co_return] = ACTIONS(3491), - [anon_sym_co_yield] = ACTIONS(3491), - [anon_sym_R_DQUOTE] = ACTIONS(3493), - [anon_sym_LR_DQUOTE] = ACTIONS(3493), - [anon_sym_uR_DQUOTE] = ACTIONS(3493), - [anon_sym_UR_DQUOTE] = ACTIONS(3493), - [anon_sym_u8R_DQUOTE] = ACTIONS(3493), - [anon_sym_co_await] = ACTIONS(3491), - [anon_sym_new] = ACTIONS(3491), - [anon_sym_requires] = ACTIONS(3491), - [sym_this] = ACTIONS(3491), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3493), - [sym_semgrep_named_ellipsis] = ACTIONS(3493), + [sym_type_qualifier] = STATE(4685), + [sym_type_specifier] = STATE(5782), + [sym_sized_type_specifier] = STATE(3293), + [sym_enum_specifier] = STATE(3293), + [sym_struct_specifier] = STATE(3293), + [sym_union_specifier] = STATE(3293), + [sym_expression] = STATE(5085), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_type_descriptor] = STATE(7843), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_placeholder_type_specifier] = STATE(3293), + [sym_decltype_auto] = STATE(3292), + [sym_decltype] = STATE(2572), + [sym_class_specifier] = STATE(3293), + [sym_class_name] = STATE(8965), + [sym_dependent_type] = STATE(3293), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_type_parameter_pack_expansion] = STATE(8250), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6620), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(6338), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [aux_sym_type_definition_type_repeat1] = STATE(4685), + [aux_sym_sized_type_specifier_repeat1] = STATE(2573), + [sym_identifier] = ACTIONS(3310), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_signed] = ACTIONS(3324), + [anon_sym_unsigned] = ACTIONS(3324), + [anon_sym_long] = ACTIONS(3324), + [anon_sym_short] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3330), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_union] = ACTIONS(3334), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3358), + [anon_sym_decltype] = ACTIONS(3360), + [anon_sym_typename] = ACTIONS(3362), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_GT2] = ACTIONS(3491), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), }, [393] = { - [sym_identifier] = ACTIONS(3495), - [aux_sym_preproc_include_token1] = ACTIONS(3495), - [aux_sym_preproc_def_token1] = ACTIONS(3495), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3497), - [aux_sym_preproc_if_token1] = ACTIONS(3495), - [aux_sym_preproc_if_token2] = ACTIONS(3495), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3495), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3495), - [aux_sym_preproc_else_token1] = ACTIONS(3495), - [aux_sym_preproc_elif_token1] = ACTIONS(3495), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3495), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3495), - [sym_preproc_directive] = ACTIONS(3495), - [anon_sym_LPAREN2] = ACTIONS(3497), - [anon_sym_BANG] = ACTIONS(3497), - [anon_sym_TILDE] = ACTIONS(3497), - [anon_sym_DASH] = ACTIONS(3495), - [anon_sym_PLUS] = ACTIONS(3495), - [anon_sym_STAR] = ACTIONS(3497), - [anon_sym_AMP_AMP] = ACTIONS(3497), - [anon_sym_AMP] = ACTIONS(3495), - [anon_sym_SEMI] = ACTIONS(3497), - [anon_sym___extension__] = ACTIONS(3495), - [anon_sym_typedef] = ACTIONS(3495), - [anon_sym_extern] = ACTIONS(3495), - [anon_sym___attribute__] = ACTIONS(3495), - [anon_sym_COLON_COLON] = ACTIONS(3497), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3497), - [anon_sym___declspec] = ACTIONS(3495), - [anon_sym___based] = ACTIONS(3495), - [anon_sym___cdecl] = ACTIONS(3495), - [anon_sym___clrcall] = ACTIONS(3495), - [anon_sym___stdcall] = ACTIONS(3495), - [anon_sym___fastcall] = ACTIONS(3495), - [anon_sym___thiscall] = ACTIONS(3495), - [anon_sym___vectorcall] = ACTIONS(3495), - [anon_sym_LBRACE] = ACTIONS(3497), - [anon_sym_signed] = ACTIONS(3495), - [anon_sym_unsigned] = ACTIONS(3495), - [anon_sym_long] = ACTIONS(3495), - [anon_sym_short] = ACTIONS(3495), - [anon_sym_LBRACK] = ACTIONS(3495), - [anon_sym_static] = ACTIONS(3495), - [anon_sym_register] = ACTIONS(3495), - [anon_sym_inline] = ACTIONS(3495), - [anon_sym___inline] = ACTIONS(3495), - [anon_sym___inline__] = ACTIONS(3495), - [anon_sym___forceinline] = ACTIONS(3495), - [anon_sym_thread_local] = ACTIONS(3495), - [anon_sym___thread] = ACTIONS(3495), - [anon_sym_const] = ACTIONS(3495), - [anon_sym_constexpr] = ACTIONS(3495), - [anon_sym_volatile] = ACTIONS(3495), - [anon_sym_restrict] = ACTIONS(3495), - [anon_sym___restrict__] = ACTIONS(3495), - [anon_sym__Atomic] = ACTIONS(3495), - [anon_sym__Noreturn] = ACTIONS(3495), - [anon_sym_noreturn] = ACTIONS(3495), - [anon_sym_mutable] = ACTIONS(3495), - [anon_sym_constinit] = ACTIONS(3495), - [anon_sym_consteval] = ACTIONS(3495), - [sym_primitive_type] = ACTIONS(3495), - [anon_sym_enum] = ACTIONS(3495), - [anon_sym_class] = ACTIONS(3495), - [anon_sym_struct] = ACTIONS(3495), - [anon_sym_union] = ACTIONS(3495), - [anon_sym_if] = ACTIONS(3495), - [anon_sym_switch] = ACTIONS(3495), - [anon_sym_case] = ACTIONS(3495), - [anon_sym_default] = ACTIONS(3495), - [anon_sym_while] = ACTIONS(3495), - [anon_sym_do] = ACTIONS(3495), - [anon_sym_for] = ACTIONS(3495), - [anon_sym_return] = ACTIONS(3495), - [anon_sym_break] = ACTIONS(3495), - [anon_sym_continue] = ACTIONS(3495), - [anon_sym_goto] = ACTIONS(3495), - [anon_sym___try] = ACTIONS(3495), - [anon_sym___leave] = ACTIONS(3495), - [anon_sym_not] = ACTIONS(3495), - [anon_sym_compl] = ACTIONS(3495), - [anon_sym_DASH_DASH] = ACTIONS(3497), - [anon_sym_PLUS_PLUS] = ACTIONS(3497), - [anon_sym_sizeof] = ACTIONS(3495), - [anon_sym___alignof__] = ACTIONS(3495), - [anon_sym___alignof] = ACTIONS(3495), - [anon_sym__alignof] = ACTIONS(3495), - [anon_sym_alignof] = ACTIONS(3495), - [anon_sym__Alignof] = ACTIONS(3495), - [anon_sym_offsetof] = ACTIONS(3495), - [anon_sym__Generic] = ACTIONS(3495), - [anon_sym_asm] = ACTIONS(3495), - [anon_sym___asm__] = ACTIONS(3495), - [sym_number_literal] = ACTIONS(3497), - [anon_sym_L_SQUOTE] = ACTIONS(3497), - [anon_sym_u_SQUOTE] = ACTIONS(3497), - [anon_sym_U_SQUOTE] = ACTIONS(3497), - [anon_sym_u8_SQUOTE] = ACTIONS(3497), - [anon_sym_SQUOTE] = ACTIONS(3497), - [anon_sym_L_DQUOTE] = ACTIONS(3497), - [anon_sym_u_DQUOTE] = ACTIONS(3497), - [anon_sym_U_DQUOTE] = ACTIONS(3497), - [anon_sym_u8_DQUOTE] = ACTIONS(3497), - [anon_sym_DQUOTE] = ACTIONS(3497), - [sym_true] = ACTIONS(3495), - [sym_false] = ACTIONS(3495), - [anon_sym_NULL] = ACTIONS(3495), - [anon_sym_nullptr] = ACTIONS(3495), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3495), - [anon_sym_decltype] = ACTIONS(3495), - [anon_sym_virtual] = ACTIONS(3495), - [anon_sym_alignas] = ACTIONS(3495), - [anon_sym_explicit] = ACTIONS(3495), - [anon_sym_typename] = ACTIONS(3495), - [anon_sym_template] = ACTIONS(3495), - [anon_sym_operator] = ACTIONS(3495), - [anon_sym_try] = ACTIONS(3495), - [anon_sym_delete] = ACTIONS(3495), - [anon_sym_throw] = ACTIONS(3495), - [anon_sym_namespace] = ACTIONS(3495), - [anon_sym_using] = ACTIONS(3495), - [anon_sym_static_assert] = ACTIONS(3495), - [anon_sym_concept] = ACTIONS(3495), - [anon_sym_co_return] = ACTIONS(3495), - [anon_sym_co_yield] = ACTIONS(3495), - [anon_sym_R_DQUOTE] = ACTIONS(3497), - [anon_sym_LR_DQUOTE] = ACTIONS(3497), - [anon_sym_uR_DQUOTE] = ACTIONS(3497), - [anon_sym_UR_DQUOTE] = ACTIONS(3497), - [anon_sym_u8R_DQUOTE] = ACTIONS(3497), - [anon_sym_co_await] = ACTIONS(3495), - [anon_sym_new] = ACTIONS(3495), - [anon_sym_requires] = ACTIONS(3495), - [sym_this] = ACTIONS(3495), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3497), - [sym_semgrep_named_ellipsis] = ACTIONS(3497), + [sym_identifier] = ACTIONS(3493), + [aux_sym_preproc_include_token1] = ACTIONS(3493), + [aux_sym_preproc_def_token1] = ACTIONS(3493), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3495), + [aux_sym_preproc_if_token1] = ACTIONS(3493), + [aux_sym_preproc_if_token2] = ACTIONS(3493), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3493), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3493), + [aux_sym_preproc_else_token1] = ACTIONS(3493), + [aux_sym_preproc_elif_token1] = ACTIONS(3493), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3493), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3493), + [sym_preproc_directive] = ACTIONS(3493), + [anon_sym_LPAREN2] = ACTIONS(3495), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3495), + [anon_sym_DASH] = ACTIONS(3493), + [anon_sym_PLUS] = ACTIONS(3493), + [anon_sym_STAR] = ACTIONS(3495), + [anon_sym_AMP_AMP] = ACTIONS(3495), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_SEMI] = ACTIONS(3495), + [anon_sym___extension__] = ACTIONS(3493), + [anon_sym_typedef] = 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___cdecl] = ACTIONS(3493), + [anon_sym___clrcall] = ACTIONS(3493), + [anon_sym___stdcall] = ACTIONS(3493), + [anon_sym___fastcall] = ACTIONS(3493), + [anon_sym___thiscall] = ACTIONS(3493), + [anon_sym___vectorcall] = ACTIONS(3493), + [anon_sym_LBRACE] = ACTIONS(3495), + [anon_sym_signed] = ACTIONS(3493), + [anon_sym_unsigned] = ACTIONS(3493), + [anon_sym_long] = ACTIONS(3493), + [anon_sym_short] = ACTIONS(3493), + [anon_sym_LBRACK] = ACTIONS(3493), + [anon_sym_static] = ACTIONS(3493), + [anon_sym_register] = ACTIONS(3493), + [anon_sym_inline] = ACTIONS(3493), + [anon_sym___inline] = ACTIONS(3493), + [anon_sym___inline__] = ACTIONS(3493), + [anon_sym___forceinline] = ACTIONS(3493), + [anon_sym_thread_local] = ACTIONS(3493), + [anon_sym___thread] = ACTIONS(3493), + [anon_sym_const] = ACTIONS(3493), + [anon_sym_constexpr] = ACTIONS(3493), + [anon_sym_volatile] = ACTIONS(3493), + [anon_sym_restrict] = ACTIONS(3493), + [anon_sym___restrict__] = ACTIONS(3493), + [anon_sym__Atomic] = ACTIONS(3493), + [anon_sym__Noreturn] = ACTIONS(3493), + [anon_sym_noreturn] = ACTIONS(3493), + [anon_sym_mutable] = ACTIONS(3493), + [anon_sym_constinit] = ACTIONS(3493), + [anon_sym_consteval] = ACTIONS(3493), + [sym_primitive_type] = ACTIONS(3493), + [anon_sym_enum] = ACTIONS(3493), + [anon_sym_class] = ACTIONS(3493), + [anon_sym_struct] = ACTIONS(3493), + [anon_sym_union] = ACTIONS(3493), + [anon_sym_if] = ACTIONS(3493), + [anon_sym_switch] = ACTIONS(3493), + [anon_sym_case] = ACTIONS(3493), + [anon_sym_default] = ACTIONS(3493), + [anon_sym_while] = ACTIONS(3493), + [anon_sym_do] = ACTIONS(3493), + [anon_sym_for] = ACTIONS(3493), + [anon_sym_return] = ACTIONS(3493), + [anon_sym_break] = ACTIONS(3493), + [anon_sym_continue] = ACTIONS(3493), + [anon_sym_goto] = ACTIONS(3493), + [anon_sym___try] = ACTIONS(3493), + [anon_sym___leave] = ACTIONS(3493), + [anon_sym_not] = ACTIONS(3493), + [anon_sym_compl] = ACTIONS(3493), + [anon_sym_DASH_DASH] = ACTIONS(3495), + [anon_sym_PLUS_PLUS] = ACTIONS(3495), + [anon_sym_sizeof] = ACTIONS(3493), + [anon_sym___alignof__] = ACTIONS(3493), + [anon_sym___alignof] = ACTIONS(3493), + [anon_sym__alignof] = ACTIONS(3493), + [anon_sym_alignof] = ACTIONS(3493), + [anon_sym__Alignof] = ACTIONS(3493), + [anon_sym_offsetof] = ACTIONS(3493), + [anon_sym__Generic] = ACTIONS(3493), + [anon_sym_asm] = ACTIONS(3493), + [anon_sym___asm__] = ACTIONS(3493), + [sym_number_literal] = ACTIONS(3495), + [anon_sym_L_SQUOTE] = ACTIONS(3495), + [anon_sym_u_SQUOTE] = ACTIONS(3495), + [anon_sym_U_SQUOTE] = ACTIONS(3495), + [anon_sym_u8_SQUOTE] = ACTIONS(3495), + [anon_sym_SQUOTE] = ACTIONS(3495), + [anon_sym_L_DQUOTE] = ACTIONS(3495), + [anon_sym_u_DQUOTE] = ACTIONS(3495), + [anon_sym_U_DQUOTE] = ACTIONS(3495), + [anon_sym_u8_DQUOTE] = ACTIONS(3495), + [anon_sym_DQUOTE] = ACTIONS(3495), + [sym_true] = ACTIONS(3493), + [sym_false] = ACTIONS(3493), + [anon_sym_NULL] = ACTIONS(3493), + [anon_sym_nullptr] = ACTIONS(3493), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3493), + [anon_sym_decltype] = ACTIONS(3493), + [anon_sym_virtual] = ACTIONS(3493), + [anon_sym_alignas] = ACTIONS(3493), + [anon_sym_explicit] = ACTIONS(3493), + [anon_sym_typename] = ACTIONS(3493), + [anon_sym_template] = ACTIONS(3493), + [anon_sym_operator] = ACTIONS(3493), + [anon_sym_try] = ACTIONS(3493), + [anon_sym_delete] = ACTIONS(3493), + [anon_sym_throw] = ACTIONS(3493), + [anon_sym_namespace] = ACTIONS(3493), + [anon_sym_using] = ACTIONS(3493), + [anon_sym_static_assert] = ACTIONS(3493), + [anon_sym_concept] = ACTIONS(3493), + [anon_sym_co_return] = ACTIONS(3493), + [anon_sym_co_yield] = ACTIONS(3493), + [anon_sym_R_DQUOTE] = ACTIONS(3495), + [anon_sym_LR_DQUOTE] = ACTIONS(3495), + [anon_sym_uR_DQUOTE] = ACTIONS(3495), + [anon_sym_UR_DQUOTE] = ACTIONS(3495), + [anon_sym_u8R_DQUOTE] = ACTIONS(3495), + [anon_sym_co_await] = ACTIONS(3493), + [anon_sym_new] = ACTIONS(3493), + [anon_sym_requires] = ACTIONS(3493), + [sym_this] = ACTIONS(3493), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3495), + [sym_semgrep_named_ellipsis] = ACTIONS(3495), }, [394] = { - [sym_identifier] = ACTIONS(3499), - [aux_sym_preproc_include_token1] = ACTIONS(3499), - [aux_sym_preproc_def_token1] = ACTIONS(3499), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3501), - [aux_sym_preproc_if_token1] = ACTIONS(3499), - [aux_sym_preproc_if_token2] = ACTIONS(3499), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3499), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3499), - [aux_sym_preproc_else_token1] = ACTIONS(3499), - [aux_sym_preproc_elif_token1] = ACTIONS(3499), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3499), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3499), - [sym_preproc_directive] = ACTIONS(3499), - [anon_sym_LPAREN2] = ACTIONS(3501), - [anon_sym_BANG] = ACTIONS(3501), - [anon_sym_TILDE] = ACTIONS(3501), - [anon_sym_DASH] = ACTIONS(3499), - [anon_sym_PLUS] = ACTIONS(3499), - [anon_sym_STAR] = ACTIONS(3501), - [anon_sym_AMP_AMP] = ACTIONS(3501), - [anon_sym_AMP] = ACTIONS(3499), - [anon_sym_SEMI] = ACTIONS(3501), - [anon_sym___extension__] = ACTIONS(3499), - [anon_sym_typedef] = ACTIONS(3499), - [anon_sym_extern] = ACTIONS(3499), - [anon_sym___attribute__] = ACTIONS(3499), - [anon_sym_COLON_COLON] = ACTIONS(3501), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3501), - [anon_sym___declspec] = ACTIONS(3499), - [anon_sym___based] = ACTIONS(3499), - [anon_sym___cdecl] = ACTIONS(3499), - [anon_sym___clrcall] = ACTIONS(3499), - [anon_sym___stdcall] = ACTIONS(3499), - [anon_sym___fastcall] = ACTIONS(3499), - [anon_sym___thiscall] = ACTIONS(3499), - [anon_sym___vectorcall] = ACTIONS(3499), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_signed] = ACTIONS(3499), - [anon_sym_unsigned] = ACTIONS(3499), - [anon_sym_long] = ACTIONS(3499), - [anon_sym_short] = ACTIONS(3499), - [anon_sym_LBRACK] = ACTIONS(3499), - [anon_sym_static] = ACTIONS(3499), - [anon_sym_register] = ACTIONS(3499), - [anon_sym_inline] = ACTIONS(3499), - [anon_sym___inline] = ACTIONS(3499), - [anon_sym___inline__] = ACTIONS(3499), - [anon_sym___forceinline] = ACTIONS(3499), - [anon_sym_thread_local] = ACTIONS(3499), - [anon_sym___thread] = ACTIONS(3499), - [anon_sym_const] = ACTIONS(3499), - [anon_sym_constexpr] = ACTIONS(3499), - [anon_sym_volatile] = ACTIONS(3499), - [anon_sym_restrict] = ACTIONS(3499), - [anon_sym___restrict__] = ACTIONS(3499), - [anon_sym__Atomic] = ACTIONS(3499), - [anon_sym__Noreturn] = ACTIONS(3499), - [anon_sym_noreturn] = ACTIONS(3499), - [anon_sym_mutable] = ACTIONS(3499), - [anon_sym_constinit] = ACTIONS(3499), - [anon_sym_consteval] = ACTIONS(3499), - [sym_primitive_type] = ACTIONS(3499), - [anon_sym_enum] = ACTIONS(3499), - [anon_sym_class] = ACTIONS(3499), - [anon_sym_struct] = ACTIONS(3499), - [anon_sym_union] = ACTIONS(3499), - [anon_sym_if] = ACTIONS(3499), - [anon_sym_switch] = ACTIONS(3499), - [anon_sym_case] = ACTIONS(3499), - [anon_sym_default] = ACTIONS(3499), - [anon_sym_while] = ACTIONS(3499), - [anon_sym_do] = ACTIONS(3499), - [anon_sym_for] = ACTIONS(3499), - [anon_sym_return] = ACTIONS(3499), - [anon_sym_break] = ACTIONS(3499), - [anon_sym_continue] = ACTIONS(3499), - [anon_sym_goto] = ACTIONS(3499), - [anon_sym___try] = ACTIONS(3499), - [anon_sym___leave] = ACTIONS(3499), - [anon_sym_not] = ACTIONS(3499), - [anon_sym_compl] = ACTIONS(3499), - [anon_sym_DASH_DASH] = ACTIONS(3501), - [anon_sym_PLUS_PLUS] = ACTIONS(3501), - [anon_sym_sizeof] = ACTIONS(3499), - [anon_sym___alignof__] = ACTIONS(3499), - [anon_sym___alignof] = ACTIONS(3499), - [anon_sym__alignof] = ACTIONS(3499), - [anon_sym_alignof] = ACTIONS(3499), - [anon_sym__Alignof] = ACTIONS(3499), - [anon_sym_offsetof] = ACTIONS(3499), - [anon_sym__Generic] = ACTIONS(3499), - [anon_sym_asm] = ACTIONS(3499), - [anon_sym___asm__] = ACTIONS(3499), - [sym_number_literal] = ACTIONS(3501), - [anon_sym_L_SQUOTE] = ACTIONS(3501), - [anon_sym_u_SQUOTE] = ACTIONS(3501), - [anon_sym_U_SQUOTE] = ACTIONS(3501), - [anon_sym_u8_SQUOTE] = ACTIONS(3501), - [anon_sym_SQUOTE] = ACTIONS(3501), - [anon_sym_L_DQUOTE] = ACTIONS(3501), - [anon_sym_u_DQUOTE] = ACTIONS(3501), - [anon_sym_U_DQUOTE] = ACTIONS(3501), - [anon_sym_u8_DQUOTE] = ACTIONS(3501), - [anon_sym_DQUOTE] = ACTIONS(3501), - [sym_true] = ACTIONS(3499), - [sym_false] = ACTIONS(3499), - [anon_sym_NULL] = ACTIONS(3499), - [anon_sym_nullptr] = ACTIONS(3499), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3499), - [anon_sym_decltype] = ACTIONS(3499), - [anon_sym_virtual] = ACTIONS(3499), - [anon_sym_alignas] = ACTIONS(3499), - [anon_sym_explicit] = ACTIONS(3499), - [anon_sym_typename] = ACTIONS(3499), - [anon_sym_template] = ACTIONS(3499), - [anon_sym_operator] = ACTIONS(3499), - [anon_sym_try] = ACTIONS(3499), - [anon_sym_delete] = ACTIONS(3499), - [anon_sym_throw] = ACTIONS(3499), - [anon_sym_namespace] = ACTIONS(3499), - [anon_sym_using] = ACTIONS(3499), - [anon_sym_static_assert] = ACTIONS(3499), - [anon_sym_concept] = ACTIONS(3499), - [anon_sym_co_return] = ACTIONS(3499), - [anon_sym_co_yield] = ACTIONS(3499), - [anon_sym_R_DQUOTE] = ACTIONS(3501), - [anon_sym_LR_DQUOTE] = ACTIONS(3501), - [anon_sym_uR_DQUOTE] = ACTIONS(3501), - [anon_sym_UR_DQUOTE] = ACTIONS(3501), - [anon_sym_u8R_DQUOTE] = ACTIONS(3501), - [anon_sym_co_await] = ACTIONS(3499), - [anon_sym_new] = ACTIONS(3499), - [anon_sym_requires] = ACTIONS(3499), - [sym_this] = ACTIONS(3499), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3501), - [sym_semgrep_named_ellipsis] = ACTIONS(3501), + [sym_identifier] = ACTIONS(3497), + [aux_sym_preproc_include_token1] = ACTIONS(3497), + [aux_sym_preproc_def_token1] = ACTIONS(3497), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3499), + [aux_sym_preproc_if_token1] = ACTIONS(3497), + [aux_sym_preproc_if_token2] = ACTIONS(3497), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3497), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3497), + [aux_sym_preproc_else_token1] = ACTIONS(3497), + [aux_sym_preproc_elif_token1] = ACTIONS(3497), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3497), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3497), + [sym_preproc_directive] = ACTIONS(3497), + [anon_sym_LPAREN2] = ACTIONS(3499), + [anon_sym_BANG] = ACTIONS(3499), + [anon_sym_TILDE] = ACTIONS(3499), + [anon_sym_DASH] = ACTIONS(3497), + [anon_sym_PLUS] = ACTIONS(3497), + [anon_sym_STAR] = ACTIONS(3499), + [anon_sym_AMP_AMP] = ACTIONS(3499), + [anon_sym_AMP] = ACTIONS(3497), + [anon_sym_SEMI] = ACTIONS(3499), + [anon_sym___extension__] = ACTIONS(3497), + [anon_sym_typedef] = 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___cdecl] = ACTIONS(3497), + [anon_sym___clrcall] = ACTIONS(3497), + [anon_sym___stdcall] = ACTIONS(3497), + [anon_sym___fastcall] = ACTIONS(3497), + [anon_sym___thiscall] = ACTIONS(3497), + [anon_sym___vectorcall] = ACTIONS(3497), + [anon_sym_LBRACE] = ACTIONS(3499), + [anon_sym_signed] = ACTIONS(3497), + [anon_sym_unsigned] = ACTIONS(3497), + [anon_sym_long] = ACTIONS(3497), + [anon_sym_short] = ACTIONS(3497), + [anon_sym_LBRACK] = ACTIONS(3497), + [anon_sym_static] = ACTIONS(3497), + [anon_sym_register] = ACTIONS(3497), + [anon_sym_inline] = ACTIONS(3497), + [anon_sym___inline] = ACTIONS(3497), + [anon_sym___inline__] = ACTIONS(3497), + [anon_sym___forceinline] = ACTIONS(3497), + [anon_sym_thread_local] = ACTIONS(3497), + [anon_sym___thread] = ACTIONS(3497), + [anon_sym_const] = ACTIONS(3497), + [anon_sym_constexpr] = ACTIONS(3497), + [anon_sym_volatile] = ACTIONS(3497), + [anon_sym_restrict] = ACTIONS(3497), + [anon_sym___restrict__] = ACTIONS(3497), + [anon_sym__Atomic] = ACTIONS(3497), + [anon_sym__Noreturn] = ACTIONS(3497), + [anon_sym_noreturn] = ACTIONS(3497), + [anon_sym_mutable] = ACTIONS(3497), + [anon_sym_constinit] = ACTIONS(3497), + [anon_sym_consteval] = ACTIONS(3497), + [sym_primitive_type] = ACTIONS(3497), + [anon_sym_enum] = ACTIONS(3497), + [anon_sym_class] = ACTIONS(3497), + [anon_sym_struct] = ACTIONS(3497), + [anon_sym_union] = ACTIONS(3497), + [anon_sym_if] = ACTIONS(3497), + [anon_sym_switch] = ACTIONS(3497), + [anon_sym_case] = ACTIONS(3497), + [anon_sym_default] = ACTIONS(3497), + [anon_sym_while] = ACTIONS(3497), + [anon_sym_do] = ACTIONS(3497), + [anon_sym_for] = ACTIONS(3497), + [anon_sym_return] = ACTIONS(3497), + [anon_sym_break] = ACTIONS(3497), + [anon_sym_continue] = ACTIONS(3497), + [anon_sym_goto] = ACTIONS(3497), + [anon_sym___try] = ACTIONS(3497), + [anon_sym___leave] = ACTIONS(3497), + [anon_sym_not] = ACTIONS(3497), + [anon_sym_compl] = ACTIONS(3497), + [anon_sym_DASH_DASH] = ACTIONS(3499), + [anon_sym_PLUS_PLUS] = ACTIONS(3499), + [anon_sym_sizeof] = ACTIONS(3497), + [anon_sym___alignof__] = ACTIONS(3497), + [anon_sym___alignof] = ACTIONS(3497), + [anon_sym__alignof] = ACTIONS(3497), + [anon_sym_alignof] = ACTIONS(3497), + [anon_sym__Alignof] = ACTIONS(3497), + [anon_sym_offsetof] = ACTIONS(3497), + [anon_sym__Generic] = ACTIONS(3497), + [anon_sym_asm] = ACTIONS(3497), + [anon_sym___asm__] = ACTIONS(3497), + [sym_number_literal] = ACTIONS(3499), + [anon_sym_L_SQUOTE] = ACTIONS(3499), + [anon_sym_u_SQUOTE] = ACTIONS(3499), + [anon_sym_U_SQUOTE] = ACTIONS(3499), + [anon_sym_u8_SQUOTE] = ACTIONS(3499), + [anon_sym_SQUOTE] = ACTIONS(3499), + [anon_sym_L_DQUOTE] = ACTIONS(3499), + [anon_sym_u_DQUOTE] = ACTIONS(3499), + [anon_sym_U_DQUOTE] = ACTIONS(3499), + [anon_sym_u8_DQUOTE] = ACTIONS(3499), + [anon_sym_DQUOTE] = ACTIONS(3499), + [sym_true] = ACTIONS(3497), + [sym_false] = ACTIONS(3497), + [anon_sym_NULL] = ACTIONS(3497), + [anon_sym_nullptr] = ACTIONS(3497), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3497), + [anon_sym_decltype] = ACTIONS(3497), + [anon_sym_virtual] = ACTIONS(3497), + [anon_sym_alignas] = ACTIONS(3497), + [anon_sym_explicit] = ACTIONS(3497), + [anon_sym_typename] = ACTIONS(3497), + [anon_sym_template] = ACTIONS(3497), + [anon_sym_operator] = ACTIONS(3497), + [anon_sym_try] = ACTIONS(3497), + [anon_sym_delete] = ACTIONS(3497), + [anon_sym_throw] = ACTIONS(3497), + [anon_sym_namespace] = ACTIONS(3497), + [anon_sym_using] = ACTIONS(3497), + [anon_sym_static_assert] = ACTIONS(3497), + [anon_sym_concept] = ACTIONS(3497), + [anon_sym_co_return] = ACTIONS(3497), + [anon_sym_co_yield] = ACTIONS(3497), + [anon_sym_R_DQUOTE] = ACTIONS(3499), + [anon_sym_LR_DQUOTE] = ACTIONS(3499), + [anon_sym_uR_DQUOTE] = ACTIONS(3499), + [anon_sym_UR_DQUOTE] = ACTIONS(3499), + [anon_sym_u8R_DQUOTE] = ACTIONS(3499), + [anon_sym_co_await] = ACTIONS(3497), + [anon_sym_new] = ACTIONS(3497), + [anon_sym_requires] = ACTIONS(3497), + [sym_this] = ACTIONS(3497), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3499), + [sym_semgrep_named_ellipsis] = ACTIONS(3499), }, [395] = { + [sym_type_qualifier] = STATE(4685), + [sym_type_specifier] = STATE(5782), + [sym_sized_type_specifier] = STATE(3293), + [sym_enum_specifier] = STATE(3293), + [sym_struct_specifier] = STATE(3293), + [sym_union_specifier] = STATE(3293), + [sym_expression] = STATE(5090), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_type_descriptor] = STATE(7870), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_placeholder_type_specifier] = STATE(3293), + [sym_decltype_auto] = STATE(3292), + [sym_decltype] = STATE(2572), + [sym_class_specifier] = STATE(3293), + [sym_class_name] = STATE(8965), + [sym_dependent_type] = STATE(3293), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_type_parameter_pack_expansion] = STATE(8221), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6620), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(6338), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [aux_sym_type_definition_type_repeat1] = STATE(4685), + [aux_sym_sized_type_specifier_repeat1] = STATE(2573), + [sym_identifier] = ACTIONS(3310), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_signed] = ACTIONS(3324), + [anon_sym_unsigned] = ACTIONS(3324), + [anon_sym_long] = ACTIONS(3324), + [anon_sym_short] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3330), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_union] = ACTIONS(3334), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3358), + [anon_sym_decltype] = ACTIONS(3360), + [anon_sym_typename] = ACTIONS(3362), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_GT2] = ACTIONS(3501), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), + }, + [396] = { [sym_identifier] = ACTIONS(3503), [aux_sym_preproc_include_token1] = ACTIONS(3503), [aux_sym_preproc_def_token1] = ACTIONS(3503), @@ -120293,9592 +110607,9174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3505), [sym_semgrep_named_ellipsis] = ACTIONS(3505), }, - [396] = { - [sym_identifier] = ACTIONS(3507), - [aux_sym_preproc_include_token1] = ACTIONS(3507), - [aux_sym_preproc_def_token1] = ACTIONS(3507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3509), - [aux_sym_preproc_if_token1] = ACTIONS(3507), - [aux_sym_preproc_if_token2] = ACTIONS(3507), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3507), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3507), - [aux_sym_preproc_else_token1] = ACTIONS(3507), - [aux_sym_preproc_elif_token1] = ACTIONS(3507), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3507), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3507), - [sym_preproc_directive] = ACTIONS(3507), - [anon_sym_LPAREN2] = ACTIONS(3509), - [anon_sym_BANG] = ACTIONS(3509), - [anon_sym_TILDE] = ACTIONS(3509), - [anon_sym_DASH] = ACTIONS(3507), - [anon_sym_PLUS] = ACTIONS(3507), - [anon_sym_STAR] = ACTIONS(3509), - [anon_sym_AMP_AMP] = ACTIONS(3509), - [anon_sym_AMP] = ACTIONS(3507), - [anon_sym_SEMI] = ACTIONS(3509), - [anon_sym___extension__] = ACTIONS(3507), - [anon_sym_typedef] = ACTIONS(3507), - [anon_sym_extern] = ACTIONS(3507), - [anon_sym___attribute__] = ACTIONS(3507), - [anon_sym_COLON_COLON] = ACTIONS(3509), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3509), - [anon_sym___declspec] = ACTIONS(3507), - [anon_sym___based] = ACTIONS(3507), - [anon_sym___cdecl] = ACTIONS(3507), - [anon_sym___clrcall] = ACTIONS(3507), - [anon_sym___stdcall] = ACTIONS(3507), - [anon_sym___fastcall] = ACTIONS(3507), - [anon_sym___thiscall] = ACTIONS(3507), - [anon_sym___vectorcall] = ACTIONS(3507), - [anon_sym_LBRACE] = ACTIONS(3509), - [anon_sym_signed] = ACTIONS(3507), - [anon_sym_unsigned] = ACTIONS(3507), - [anon_sym_long] = ACTIONS(3507), - [anon_sym_short] = ACTIONS(3507), - [anon_sym_LBRACK] = ACTIONS(3507), - [anon_sym_static] = ACTIONS(3507), - [anon_sym_register] = ACTIONS(3507), - [anon_sym_inline] = ACTIONS(3507), - [anon_sym___inline] = ACTIONS(3507), - [anon_sym___inline__] = ACTIONS(3507), - [anon_sym___forceinline] = ACTIONS(3507), - [anon_sym_thread_local] = ACTIONS(3507), - [anon_sym___thread] = ACTIONS(3507), - [anon_sym_const] = ACTIONS(3507), - [anon_sym_constexpr] = ACTIONS(3507), - [anon_sym_volatile] = ACTIONS(3507), - [anon_sym_restrict] = ACTIONS(3507), - [anon_sym___restrict__] = ACTIONS(3507), - [anon_sym__Atomic] = ACTIONS(3507), - [anon_sym__Noreturn] = ACTIONS(3507), - [anon_sym_noreturn] = ACTIONS(3507), - [anon_sym_mutable] = ACTIONS(3507), - [anon_sym_constinit] = ACTIONS(3507), - [anon_sym_consteval] = ACTIONS(3507), - [sym_primitive_type] = ACTIONS(3507), - [anon_sym_enum] = ACTIONS(3507), - [anon_sym_class] = ACTIONS(3507), - [anon_sym_struct] = ACTIONS(3507), - [anon_sym_union] = ACTIONS(3507), - [anon_sym_if] = ACTIONS(3507), - [anon_sym_switch] = ACTIONS(3507), - [anon_sym_case] = ACTIONS(3507), - [anon_sym_default] = ACTIONS(3507), - [anon_sym_while] = ACTIONS(3507), - [anon_sym_do] = ACTIONS(3507), - [anon_sym_for] = ACTIONS(3507), - [anon_sym_return] = ACTIONS(3507), - [anon_sym_break] = ACTIONS(3507), - [anon_sym_continue] = ACTIONS(3507), - [anon_sym_goto] = ACTIONS(3507), - [anon_sym___try] = ACTIONS(3507), - [anon_sym___leave] = ACTIONS(3507), - [anon_sym_not] = ACTIONS(3507), - [anon_sym_compl] = ACTIONS(3507), - [anon_sym_DASH_DASH] = ACTIONS(3509), - [anon_sym_PLUS_PLUS] = ACTIONS(3509), - [anon_sym_sizeof] = ACTIONS(3507), - [anon_sym___alignof__] = ACTIONS(3507), - [anon_sym___alignof] = ACTIONS(3507), - [anon_sym__alignof] = ACTIONS(3507), - [anon_sym_alignof] = ACTIONS(3507), - [anon_sym__Alignof] = ACTIONS(3507), - [anon_sym_offsetof] = ACTIONS(3507), - [anon_sym__Generic] = ACTIONS(3507), - [anon_sym_asm] = ACTIONS(3507), - [anon_sym___asm__] = ACTIONS(3507), - [sym_number_literal] = ACTIONS(3509), - [anon_sym_L_SQUOTE] = ACTIONS(3509), - [anon_sym_u_SQUOTE] = ACTIONS(3509), - [anon_sym_U_SQUOTE] = ACTIONS(3509), - [anon_sym_u8_SQUOTE] = ACTIONS(3509), - [anon_sym_SQUOTE] = ACTIONS(3509), - [anon_sym_L_DQUOTE] = ACTIONS(3509), - [anon_sym_u_DQUOTE] = ACTIONS(3509), - [anon_sym_U_DQUOTE] = ACTIONS(3509), - [anon_sym_u8_DQUOTE] = ACTIONS(3509), - [anon_sym_DQUOTE] = ACTIONS(3509), - [sym_true] = ACTIONS(3507), - [sym_false] = ACTIONS(3507), - [anon_sym_NULL] = ACTIONS(3507), - [anon_sym_nullptr] = ACTIONS(3507), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3507), - [anon_sym_decltype] = ACTIONS(3507), - [anon_sym_virtual] = ACTIONS(3507), - [anon_sym_alignas] = ACTIONS(3507), - [anon_sym_explicit] = ACTIONS(3507), - [anon_sym_typename] = ACTIONS(3507), - [anon_sym_template] = ACTIONS(3507), - [anon_sym_operator] = ACTIONS(3507), - [anon_sym_try] = ACTIONS(3507), - [anon_sym_delete] = ACTIONS(3507), - [anon_sym_throw] = ACTIONS(3507), - [anon_sym_namespace] = ACTIONS(3507), - [anon_sym_using] = ACTIONS(3507), - [anon_sym_static_assert] = ACTIONS(3507), - [anon_sym_concept] = ACTIONS(3507), - [anon_sym_co_return] = ACTIONS(3507), - [anon_sym_co_yield] = ACTIONS(3507), - [anon_sym_R_DQUOTE] = ACTIONS(3509), - [anon_sym_LR_DQUOTE] = ACTIONS(3509), - [anon_sym_uR_DQUOTE] = ACTIONS(3509), - [anon_sym_UR_DQUOTE] = ACTIONS(3509), - [anon_sym_u8R_DQUOTE] = ACTIONS(3509), - [anon_sym_co_await] = ACTIONS(3507), - [anon_sym_new] = ACTIONS(3507), - [anon_sym_requires] = ACTIONS(3507), - [sym_this] = ACTIONS(3507), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3509), - [sym_semgrep_named_ellipsis] = ACTIONS(3509), - }, [397] = { - [sym_identifier] = ACTIONS(3511), - [aux_sym_preproc_include_token1] = ACTIONS(3511), - [aux_sym_preproc_def_token1] = ACTIONS(3511), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3513), - [aux_sym_preproc_if_token1] = ACTIONS(3511), - [aux_sym_preproc_if_token2] = ACTIONS(3511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3511), - [aux_sym_preproc_else_token1] = ACTIONS(3511), - [aux_sym_preproc_elif_token1] = ACTIONS(3511), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3511), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3511), - [sym_preproc_directive] = ACTIONS(3511), - [anon_sym_LPAREN2] = ACTIONS(3513), - [anon_sym_BANG] = ACTIONS(3513), - [anon_sym_TILDE] = ACTIONS(3513), - [anon_sym_DASH] = ACTIONS(3511), - [anon_sym_PLUS] = ACTIONS(3511), - [anon_sym_STAR] = ACTIONS(3513), - [anon_sym_AMP_AMP] = ACTIONS(3513), - [anon_sym_AMP] = ACTIONS(3511), - [anon_sym_SEMI] = ACTIONS(3513), - [anon_sym___extension__] = ACTIONS(3511), - [anon_sym_typedef] = ACTIONS(3511), - [anon_sym_extern] = ACTIONS(3511), - [anon_sym___attribute__] = ACTIONS(3511), - [anon_sym_COLON_COLON] = ACTIONS(3513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3513), - [anon_sym___declspec] = ACTIONS(3511), - [anon_sym___based] = ACTIONS(3511), - [anon_sym___cdecl] = ACTIONS(3511), - [anon_sym___clrcall] = ACTIONS(3511), - [anon_sym___stdcall] = ACTIONS(3511), - [anon_sym___fastcall] = ACTIONS(3511), - [anon_sym___thiscall] = ACTIONS(3511), - [anon_sym___vectorcall] = ACTIONS(3511), - [anon_sym_LBRACE] = ACTIONS(3513), - [anon_sym_signed] = ACTIONS(3511), - [anon_sym_unsigned] = ACTIONS(3511), - [anon_sym_long] = ACTIONS(3511), - [anon_sym_short] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3511), - [anon_sym_static] = ACTIONS(3511), - [anon_sym_register] = ACTIONS(3511), - [anon_sym_inline] = ACTIONS(3511), - [anon_sym___inline] = ACTIONS(3511), - [anon_sym___inline__] = ACTIONS(3511), - [anon_sym___forceinline] = ACTIONS(3511), - [anon_sym_thread_local] = ACTIONS(3511), - [anon_sym___thread] = ACTIONS(3511), - [anon_sym_const] = ACTIONS(3511), - [anon_sym_constexpr] = ACTIONS(3511), - [anon_sym_volatile] = ACTIONS(3511), - [anon_sym_restrict] = ACTIONS(3511), - [anon_sym___restrict__] = ACTIONS(3511), - [anon_sym__Atomic] = ACTIONS(3511), - [anon_sym__Noreturn] = ACTIONS(3511), - [anon_sym_noreturn] = ACTIONS(3511), - [anon_sym_mutable] = ACTIONS(3511), - [anon_sym_constinit] = ACTIONS(3511), - [anon_sym_consteval] = ACTIONS(3511), - [sym_primitive_type] = ACTIONS(3511), - [anon_sym_enum] = ACTIONS(3511), - [anon_sym_class] = ACTIONS(3511), - [anon_sym_struct] = ACTIONS(3511), - [anon_sym_union] = ACTIONS(3511), - [anon_sym_if] = ACTIONS(3511), - [anon_sym_switch] = ACTIONS(3511), - [anon_sym_case] = ACTIONS(3511), - [anon_sym_default] = ACTIONS(3511), - [anon_sym_while] = ACTIONS(3511), - [anon_sym_do] = ACTIONS(3511), - [anon_sym_for] = ACTIONS(3511), - [anon_sym_return] = ACTIONS(3511), - [anon_sym_break] = ACTIONS(3511), - [anon_sym_continue] = ACTIONS(3511), - [anon_sym_goto] = ACTIONS(3511), - [anon_sym___try] = ACTIONS(3511), - [anon_sym___leave] = ACTIONS(3511), - [anon_sym_not] = ACTIONS(3511), - [anon_sym_compl] = ACTIONS(3511), - [anon_sym_DASH_DASH] = ACTIONS(3513), - [anon_sym_PLUS_PLUS] = ACTIONS(3513), - [anon_sym_sizeof] = ACTIONS(3511), - [anon_sym___alignof__] = ACTIONS(3511), - [anon_sym___alignof] = ACTIONS(3511), - [anon_sym__alignof] = ACTIONS(3511), - [anon_sym_alignof] = ACTIONS(3511), - [anon_sym__Alignof] = ACTIONS(3511), - [anon_sym_offsetof] = ACTIONS(3511), - [anon_sym__Generic] = ACTIONS(3511), - [anon_sym_asm] = ACTIONS(3511), - [anon_sym___asm__] = ACTIONS(3511), - [sym_number_literal] = ACTIONS(3513), - [anon_sym_L_SQUOTE] = ACTIONS(3513), - [anon_sym_u_SQUOTE] = ACTIONS(3513), - [anon_sym_U_SQUOTE] = ACTIONS(3513), - [anon_sym_u8_SQUOTE] = ACTIONS(3513), - [anon_sym_SQUOTE] = ACTIONS(3513), - [anon_sym_L_DQUOTE] = ACTIONS(3513), - [anon_sym_u_DQUOTE] = ACTIONS(3513), - [anon_sym_U_DQUOTE] = ACTIONS(3513), - [anon_sym_u8_DQUOTE] = ACTIONS(3513), - [anon_sym_DQUOTE] = ACTIONS(3513), - [sym_true] = ACTIONS(3511), - [sym_false] = ACTIONS(3511), - [anon_sym_NULL] = ACTIONS(3511), - [anon_sym_nullptr] = ACTIONS(3511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3511), - [anon_sym_decltype] = ACTIONS(3511), - [anon_sym_virtual] = ACTIONS(3511), - [anon_sym_alignas] = ACTIONS(3511), - [anon_sym_explicit] = ACTIONS(3511), - [anon_sym_typename] = ACTIONS(3511), - [anon_sym_template] = ACTIONS(3511), - [anon_sym_operator] = ACTIONS(3511), - [anon_sym_try] = ACTIONS(3511), - [anon_sym_delete] = ACTIONS(3511), - [anon_sym_throw] = ACTIONS(3511), - [anon_sym_namespace] = ACTIONS(3511), - [anon_sym_using] = ACTIONS(3511), - [anon_sym_static_assert] = ACTIONS(3511), - [anon_sym_concept] = ACTIONS(3511), - [anon_sym_co_return] = ACTIONS(3511), - [anon_sym_co_yield] = ACTIONS(3511), - [anon_sym_R_DQUOTE] = ACTIONS(3513), - [anon_sym_LR_DQUOTE] = ACTIONS(3513), - [anon_sym_uR_DQUOTE] = ACTIONS(3513), - [anon_sym_UR_DQUOTE] = ACTIONS(3513), - [anon_sym_u8R_DQUOTE] = ACTIONS(3513), - [anon_sym_co_await] = ACTIONS(3511), - [anon_sym_new] = ACTIONS(3511), - [anon_sym_requires] = ACTIONS(3511), - [sym_this] = ACTIONS(3511), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3513), - [sym_semgrep_named_ellipsis] = ACTIONS(3513), + [sym_type_qualifier] = STATE(4685), + [sym_type_specifier] = STATE(5782), + [sym_sized_type_specifier] = STATE(3293), + [sym_enum_specifier] = STATE(3293), + [sym_struct_specifier] = STATE(3293), + [sym_union_specifier] = STATE(3293), + [sym_expression] = STATE(5094), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_type_descriptor] = STATE(7890), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_placeholder_type_specifier] = STATE(3293), + [sym_decltype_auto] = STATE(3292), + [sym_decltype] = STATE(2572), + [sym_class_specifier] = STATE(3293), + [sym_class_name] = STATE(8965), + [sym_dependent_type] = STATE(3293), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_type_parameter_pack_expansion] = STATE(8527), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6620), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(6338), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [aux_sym_type_definition_type_repeat1] = STATE(4685), + [aux_sym_sized_type_specifier_repeat1] = STATE(2573), + [sym_identifier] = ACTIONS(3310), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_signed] = ACTIONS(3324), + [anon_sym_unsigned] = ACTIONS(3324), + [anon_sym_long] = ACTIONS(3324), + [anon_sym_short] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3330), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_union] = ACTIONS(3334), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3358), + [anon_sym_decltype] = ACTIONS(3360), + [anon_sym_typename] = ACTIONS(3362), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_GT2] = ACTIONS(3507), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), }, [398] = { - [sym_identifier] = ACTIONS(3515), - [aux_sym_preproc_include_token1] = ACTIONS(3515), - [aux_sym_preproc_def_token1] = ACTIONS(3515), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3517), - [aux_sym_preproc_if_token1] = ACTIONS(3515), - [aux_sym_preproc_if_token2] = ACTIONS(3515), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3515), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3515), - [aux_sym_preproc_else_token1] = ACTIONS(3515), - [aux_sym_preproc_elif_token1] = ACTIONS(3515), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3515), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3515), - [sym_preproc_directive] = ACTIONS(3515), - [anon_sym_LPAREN2] = ACTIONS(3517), - [anon_sym_BANG] = ACTIONS(3517), - [anon_sym_TILDE] = ACTIONS(3517), - [anon_sym_DASH] = ACTIONS(3515), - [anon_sym_PLUS] = ACTIONS(3515), - [anon_sym_STAR] = ACTIONS(3517), - [anon_sym_AMP_AMP] = ACTIONS(3517), - [anon_sym_AMP] = ACTIONS(3515), - [anon_sym_SEMI] = ACTIONS(3517), - [anon_sym___extension__] = ACTIONS(3515), - [anon_sym_typedef] = ACTIONS(3515), - [anon_sym_extern] = ACTIONS(3515), - [anon_sym___attribute__] = ACTIONS(3515), - [anon_sym_COLON_COLON] = ACTIONS(3517), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3517), - [anon_sym___declspec] = ACTIONS(3515), - [anon_sym___based] = ACTIONS(3515), - [anon_sym___cdecl] = ACTIONS(3515), - [anon_sym___clrcall] = ACTIONS(3515), - [anon_sym___stdcall] = ACTIONS(3515), - [anon_sym___fastcall] = ACTIONS(3515), - [anon_sym___thiscall] = ACTIONS(3515), - [anon_sym___vectorcall] = ACTIONS(3515), - [anon_sym_LBRACE] = ACTIONS(3517), - [anon_sym_signed] = ACTIONS(3515), - [anon_sym_unsigned] = ACTIONS(3515), - [anon_sym_long] = ACTIONS(3515), - [anon_sym_short] = ACTIONS(3515), - [anon_sym_LBRACK] = ACTIONS(3515), - [anon_sym_static] = ACTIONS(3515), - [anon_sym_register] = ACTIONS(3515), - [anon_sym_inline] = ACTIONS(3515), - [anon_sym___inline] = ACTIONS(3515), - [anon_sym___inline__] = ACTIONS(3515), - [anon_sym___forceinline] = ACTIONS(3515), - [anon_sym_thread_local] = ACTIONS(3515), - [anon_sym___thread] = ACTIONS(3515), - [anon_sym_const] = ACTIONS(3515), - [anon_sym_constexpr] = ACTIONS(3515), - [anon_sym_volatile] = ACTIONS(3515), - [anon_sym_restrict] = ACTIONS(3515), - [anon_sym___restrict__] = ACTIONS(3515), - [anon_sym__Atomic] = ACTIONS(3515), - [anon_sym__Noreturn] = ACTIONS(3515), - [anon_sym_noreturn] = ACTIONS(3515), - [anon_sym_mutable] = ACTIONS(3515), - [anon_sym_constinit] = ACTIONS(3515), - [anon_sym_consteval] = ACTIONS(3515), - [sym_primitive_type] = ACTIONS(3515), - [anon_sym_enum] = ACTIONS(3515), - [anon_sym_class] = ACTIONS(3515), - [anon_sym_struct] = ACTIONS(3515), - [anon_sym_union] = ACTIONS(3515), - [anon_sym_if] = ACTIONS(3515), - [anon_sym_switch] = ACTIONS(3515), - [anon_sym_case] = ACTIONS(3515), - [anon_sym_default] = ACTIONS(3515), - [anon_sym_while] = ACTIONS(3515), - [anon_sym_do] = ACTIONS(3515), - [anon_sym_for] = ACTIONS(3515), - [anon_sym_return] = ACTIONS(3515), - [anon_sym_break] = ACTIONS(3515), - [anon_sym_continue] = ACTIONS(3515), - [anon_sym_goto] = ACTIONS(3515), - [anon_sym___try] = ACTIONS(3515), - [anon_sym___leave] = ACTIONS(3515), - [anon_sym_not] = ACTIONS(3515), - [anon_sym_compl] = ACTIONS(3515), - [anon_sym_DASH_DASH] = ACTIONS(3517), - [anon_sym_PLUS_PLUS] = ACTIONS(3517), - [anon_sym_sizeof] = ACTIONS(3515), - [anon_sym___alignof__] = ACTIONS(3515), - [anon_sym___alignof] = ACTIONS(3515), - [anon_sym__alignof] = ACTIONS(3515), - [anon_sym_alignof] = ACTIONS(3515), - [anon_sym__Alignof] = ACTIONS(3515), - [anon_sym_offsetof] = ACTIONS(3515), - [anon_sym__Generic] = ACTIONS(3515), - [anon_sym_asm] = ACTIONS(3515), - [anon_sym___asm__] = ACTIONS(3515), - [sym_number_literal] = ACTIONS(3517), - [anon_sym_L_SQUOTE] = ACTIONS(3517), - [anon_sym_u_SQUOTE] = ACTIONS(3517), - [anon_sym_U_SQUOTE] = ACTIONS(3517), - [anon_sym_u8_SQUOTE] = ACTIONS(3517), - [anon_sym_SQUOTE] = ACTIONS(3517), - [anon_sym_L_DQUOTE] = ACTIONS(3517), - [anon_sym_u_DQUOTE] = ACTIONS(3517), - [anon_sym_U_DQUOTE] = ACTIONS(3517), - [anon_sym_u8_DQUOTE] = ACTIONS(3517), - [anon_sym_DQUOTE] = ACTIONS(3517), - [sym_true] = ACTIONS(3515), - [sym_false] = ACTIONS(3515), - [anon_sym_NULL] = ACTIONS(3515), - [anon_sym_nullptr] = ACTIONS(3515), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3515), - [anon_sym_decltype] = ACTIONS(3515), - [anon_sym_virtual] = ACTIONS(3515), - [anon_sym_alignas] = ACTIONS(3515), - [anon_sym_explicit] = ACTIONS(3515), - [anon_sym_typename] = ACTIONS(3515), - [anon_sym_template] = ACTIONS(3515), - [anon_sym_operator] = ACTIONS(3515), - [anon_sym_try] = ACTIONS(3515), - [anon_sym_delete] = ACTIONS(3515), - [anon_sym_throw] = ACTIONS(3515), - [anon_sym_namespace] = ACTIONS(3515), - [anon_sym_using] = ACTIONS(3515), - [anon_sym_static_assert] = ACTIONS(3515), - [anon_sym_concept] = ACTIONS(3515), - [anon_sym_co_return] = ACTIONS(3515), - [anon_sym_co_yield] = ACTIONS(3515), - [anon_sym_R_DQUOTE] = ACTIONS(3517), - [anon_sym_LR_DQUOTE] = ACTIONS(3517), - [anon_sym_uR_DQUOTE] = ACTIONS(3517), - [anon_sym_UR_DQUOTE] = ACTIONS(3517), - [anon_sym_u8R_DQUOTE] = ACTIONS(3517), - [anon_sym_co_await] = ACTIONS(3515), - [anon_sym_new] = ACTIONS(3515), - [anon_sym_requires] = ACTIONS(3515), - [sym_this] = ACTIONS(3515), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3517), - [sym_semgrep_named_ellipsis] = ACTIONS(3517), + [sym_identifier] = ACTIONS(3509), + [aux_sym_preproc_include_token1] = ACTIONS(3509), + [aux_sym_preproc_def_token1] = ACTIONS(3509), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3511), + [aux_sym_preproc_if_token1] = ACTIONS(3509), + [aux_sym_preproc_if_token2] = ACTIONS(3509), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3509), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3509), + [aux_sym_preproc_else_token1] = ACTIONS(3509), + [aux_sym_preproc_elif_token1] = ACTIONS(3509), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3509), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3509), + [sym_preproc_directive] = ACTIONS(3509), + [anon_sym_LPAREN2] = ACTIONS(3511), + [anon_sym_BANG] = ACTIONS(3511), + [anon_sym_TILDE] = ACTIONS(3511), + [anon_sym_DASH] = ACTIONS(3509), + [anon_sym_PLUS] = ACTIONS(3509), + [anon_sym_STAR] = ACTIONS(3511), + [anon_sym_AMP_AMP] = ACTIONS(3511), + [anon_sym_AMP] = ACTIONS(3509), + [anon_sym_SEMI] = ACTIONS(3511), + [anon_sym___extension__] = ACTIONS(3509), + [anon_sym_typedef] = 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___cdecl] = ACTIONS(3509), + [anon_sym___clrcall] = ACTIONS(3509), + [anon_sym___stdcall] = ACTIONS(3509), + [anon_sym___fastcall] = ACTIONS(3509), + [anon_sym___thiscall] = ACTIONS(3509), + [anon_sym___vectorcall] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3511), + [anon_sym_signed] = ACTIONS(3509), + [anon_sym_unsigned] = ACTIONS(3509), + [anon_sym_long] = ACTIONS(3509), + [anon_sym_short] = ACTIONS(3509), + [anon_sym_LBRACK] = ACTIONS(3509), + [anon_sym_static] = ACTIONS(3509), + [anon_sym_register] = ACTIONS(3509), + [anon_sym_inline] = ACTIONS(3509), + [anon_sym___inline] = ACTIONS(3509), + [anon_sym___inline__] = ACTIONS(3509), + [anon_sym___forceinline] = ACTIONS(3509), + [anon_sym_thread_local] = ACTIONS(3509), + [anon_sym___thread] = ACTIONS(3509), + [anon_sym_const] = ACTIONS(3509), + [anon_sym_constexpr] = ACTIONS(3509), + [anon_sym_volatile] = ACTIONS(3509), + [anon_sym_restrict] = ACTIONS(3509), + [anon_sym___restrict__] = ACTIONS(3509), + [anon_sym__Atomic] = ACTIONS(3509), + [anon_sym__Noreturn] = ACTIONS(3509), + [anon_sym_noreturn] = ACTIONS(3509), + [anon_sym_mutable] = ACTIONS(3509), + [anon_sym_constinit] = ACTIONS(3509), + [anon_sym_consteval] = ACTIONS(3509), + [sym_primitive_type] = ACTIONS(3509), + [anon_sym_enum] = ACTIONS(3509), + [anon_sym_class] = ACTIONS(3509), + [anon_sym_struct] = ACTIONS(3509), + [anon_sym_union] = ACTIONS(3509), + [anon_sym_if] = ACTIONS(3509), + [anon_sym_switch] = ACTIONS(3509), + [anon_sym_case] = ACTIONS(3509), + [anon_sym_default] = ACTIONS(3509), + [anon_sym_while] = ACTIONS(3509), + [anon_sym_do] = ACTIONS(3509), + [anon_sym_for] = ACTIONS(3509), + [anon_sym_return] = ACTIONS(3509), + [anon_sym_break] = ACTIONS(3509), + [anon_sym_continue] = ACTIONS(3509), + [anon_sym_goto] = ACTIONS(3509), + [anon_sym___try] = ACTIONS(3509), + [anon_sym___leave] = ACTIONS(3509), + [anon_sym_not] = ACTIONS(3509), + [anon_sym_compl] = ACTIONS(3509), + [anon_sym_DASH_DASH] = ACTIONS(3511), + [anon_sym_PLUS_PLUS] = ACTIONS(3511), + [anon_sym_sizeof] = ACTIONS(3509), + [anon_sym___alignof__] = ACTIONS(3509), + [anon_sym___alignof] = ACTIONS(3509), + [anon_sym__alignof] = ACTIONS(3509), + [anon_sym_alignof] = ACTIONS(3509), + [anon_sym__Alignof] = ACTIONS(3509), + [anon_sym_offsetof] = ACTIONS(3509), + [anon_sym__Generic] = ACTIONS(3509), + [anon_sym_asm] = ACTIONS(3509), + [anon_sym___asm__] = ACTIONS(3509), + [sym_number_literal] = ACTIONS(3511), + [anon_sym_L_SQUOTE] = ACTIONS(3511), + [anon_sym_u_SQUOTE] = ACTIONS(3511), + [anon_sym_U_SQUOTE] = ACTIONS(3511), + [anon_sym_u8_SQUOTE] = ACTIONS(3511), + [anon_sym_SQUOTE] = ACTIONS(3511), + [anon_sym_L_DQUOTE] = ACTIONS(3511), + [anon_sym_u_DQUOTE] = ACTIONS(3511), + [anon_sym_U_DQUOTE] = ACTIONS(3511), + [anon_sym_u8_DQUOTE] = ACTIONS(3511), + [anon_sym_DQUOTE] = ACTIONS(3511), + [sym_true] = ACTIONS(3509), + [sym_false] = ACTIONS(3509), + [anon_sym_NULL] = ACTIONS(3509), + [anon_sym_nullptr] = ACTIONS(3509), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3509), + [anon_sym_decltype] = ACTIONS(3509), + [anon_sym_virtual] = ACTIONS(3509), + [anon_sym_alignas] = ACTIONS(3509), + [anon_sym_explicit] = ACTIONS(3509), + [anon_sym_typename] = ACTIONS(3509), + [anon_sym_template] = ACTIONS(3509), + [anon_sym_operator] = ACTIONS(3509), + [anon_sym_try] = ACTIONS(3509), + [anon_sym_delete] = ACTIONS(3509), + [anon_sym_throw] = ACTIONS(3509), + [anon_sym_namespace] = ACTIONS(3509), + [anon_sym_using] = ACTIONS(3509), + [anon_sym_static_assert] = ACTIONS(3509), + [anon_sym_concept] = ACTIONS(3509), + [anon_sym_co_return] = ACTIONS(3509), + [anon_sym_co_yield] = ACTIONS(3509), + [anon_sym_R_DQUOTE] = ACTIONS(3511), + [anon_sym_LR_DQUOTE] = ACTIONS(3511), + [anon_sym_uR_DQUOTE] = ACTIONS(3511), + [anon_sym_UR_DQUOTE] = ACTIONS(3511), + [anon_sym_u8R_DQUOTE] = ACTIONS(3511), + [anon_sym_co_await] = ACTIONS(3509), + [anon_sym_new] = ACTIONS(3509), + [anon_sym_requires] = ACTIONS(3509), + [sym_this] = ACTIONS(3509), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3511), + [sym_semgrep_named_ellipsis] = ACTIONS(3511), }, [399] = { - [sym_catch_clause] = STATE(399), - [aux_sym_constructor_try_statement_repeat1] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(3065), - [sym_identifier] = ACTIONS(3063), - [aux_sym_preproc_include_token1] = ACTIONS(3063), - [aux_sym_preproc_def_token1] = ACTIONS(3063), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3065), - [aux_sym_preproc_if_token1] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3063), - [sym_preproc_directive] = ACTIONS(3063), - [anon_sym_LPAREN2] = ACTIONS(3065), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3063), - [anon_sym_SEMI] = ACTIONS(3065), - [anon_sym___extension__] = ACTIONS(3063), - [anon_sym_typedef] = ACTIONS(3063), - [anon_sym_extern] = ACTIONS(3063), - [anon_sym___attribute__] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(3065), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3065), - [anon_sym___declspec] = ACTIONS(3063), - [anon_sym___based] = ACTIONS(3063), - [anon_sym___cdecl] = ACTIONS(3063), - [anon_sym___clrcall] = ACTIONS(3063), - [anon_sym___stdcall] = ACTIONS(3063), - [anon_sym___fastcall] = ACTIONS(3063), - [anon_sym___thiscall] = ACTIONS(3063), - [anon_sym___vectorcall] = ACTIONS(3063), - [anon_sym_LBRACE] = ACTIONS(3065), - [anon_sym_signed] = ACTIONS(3063), - [anon_sym_unsigned] = ACTIONS(3063), - [anon_sym_long] = ACTIONS(3063), - [anon_sym_short] = ACTIONS(3063), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_static] = ACTIONS(3063), - [anon_sym_register] = ACTIONS(3063), - [anon_sym_inline] = ACTIONS(3063), - [anon_sym___inline] = ACTIONS(3063), - [anon_sym___inline__] = ACTIONS(3063), - [anon_sym___forceinline] = ACTIONS(3063), - [anon_sym_thread_local] = ACTIONS(3063), - [anon_sym___thread] = ACTIONS(3063), - [anon_sym_const] = ACTIONS(3063), - [anon_sym_constexpr] = ACTIONS(3063), - [anon_sym_volatile] = ACTIONS(3063), - [anon_sym_restrict] = ACTIONS(3063), - [anon_sym___restrict__] = ACTIONS(3063), - [anon_sym__Atomic] = ACTIONS(3063), - [anon_sym__Noreturn] = ACTIONS(3063), - [anon_sym_noreturn] = ACTIONS(3063), - [anon_sym_mutable] = ACTIONS(3063), - [anon_sym_constinit] = ACTIONS(3063), - [anon_sym_consteval] = ACTIONS(3063), - [sym_primitive_type] = ACTIONS(3063), - [anon_sym_enum] = ACTIONS(3063), - [anon_sym_class] = ACTIONS(3063), - [anon_sym_struct] = ACTIONS(3063), - [anon_sym_union] = ACTIONS(3063), - [anon_sym_if] = ACTIONS(3063), - [anon_sym_else] = ACTIONS(3063), - [anon_sym_switch] = ACTIONS(3063), - [anon_sym_case] = ACTIONS(3063), - [anon_sym_default] = ACTIONS(3063), - [anon_sym_while] = ACTIONS(3063), - [anon_sym_do] = ACTIONS(3063), - [anon_sym_for] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(3063), - [anon_sym_break] = ACTIONS(3063), - [anon_sym_continue] = ACTIONS(3063), - [anon_sym_goto] = ACTIONS(3063), - [anon_sym___try] = ACTIONS(3063), - [anon_sym___leave] = ACTIONS(3063), - [anon_sym_not] = ACTIONS(3063), - [anon_sym_compl] = ACTIONS(3063), - [anon_sym_DASH_DASH] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3065), - [anon_sym_sizeof] = ACTIONS(3063), - [anon_sym___alignof__] = ACTIONS(3063), - [anon_sym___alignof] = ACTIONS(3063), - [anon_sym__alignof] = ACTIONS(3063), - [anon_sym_alignof] = ACTIONS(3063), - [anon_sym__Alignof] = ACTIONS(3063), - [anon_sym_offsetof] = ACTIONS(3063), - [anon_sym__Generic] = ACTIONS(3063), - [anon_sym_asm] = ACTIONS(3063), - [anon_sym___asm__] = ACTIONS(3063), - [sym_number_literal] = ACTIONS(3065), - [anon_sym_L_SQUOTE] = ACTIONS(3065), - [anon_sym_u_SQUOTE] = ACTIONS(3065), - [anon_sym_U_SQUOTE] = ACTIONS(3065), - [anon_sym_u8_SQUOTE] = ACTIONS(3065), - [anon_sym_SQUOTE] = ACTIONS(3065), - [anon_sym_L_DQUOTE] = ACTIONS(3065), - [anon_sym_u_DQUOTE] = ACTIONS(3065), - [anon_sym_U_DQUOTE] = ACTIONS(3065), - [anon_sym_u8_DQUOTE] = ACTIONS(3065), - [anon_sym_DQUOTE] = ACTIONS(3065), - [sym_true] = ACTIONS(3063), - [sym_false] = ACTIONS(3063), - [anon_sym_NULL] = ACTIONS(3063), - [anon_sym_nullptr] = ACTIONS(3063), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3063), - [anon_sym_decltype] = ACTIONS(3063), - [anon_sym_virtual] = ACTIONS(3063), - [anon_sym_alignas] = ACTIONS(3063), - [anon_sym_explicit] = ACTIONS(3063), - [anon_sym_typename] = ACTIONS(3063), - [anon_sym_template] = ACTIONS(3063), - [anon_sym_operator] = ACTIONS(3063), - [anon_sym_try] = ACTIONS(3063), - [anon_sym_delete] = ACTIONS(3063), - [anon_sym_throw] = ACTIONS(3063), - [anon_sym_namespace] = ACTIONS(3063), - [anon_sym_using] = ACTIONS(3063), - [anon_sym_static_assert] = ACTIONS(3063), - [anon_sym_concept] = ACTIONS(3063), - [anon_sym_co_return] = ACTIONS(3063), - [anon_sym_co_yield] = ACTIONS(3063), - [anon_sym_catch] = ACTIONS(3519), - [anon_sym_R_DQUOTE] = ACTIONS(3065), - [anon_sym_LR_DQUOTE] = ACTIONS(3065), - [anon_sym_uR_DQUOTE] = ACTIONS(3065), - [anon_sym_UR_DQUOTE] = ACTIONS(3065), - [anon_sym_u8R_DQUOTE] = ACTIONS(3065), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3063), - [anon_sym_requires] = ACTIONS(3063), - [sym_this] = ACTIONS(3063), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3065), - [sym_semgrep_named_ellipsis] = ACTIONS(3065), + [sym_identifier] = ACTIONS(3513), + [aux_sym_preproc_include_token1] = ACTIONS(3513), + [aux_sym_preproc_def_token1] = ACTIONS(3513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3515), + [aux_sym_preproc_if_token1] = ACTIONS(3513), + [aux_sym_preproc_if_token2] = ACTIONS(3513), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3513), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3513), + [aux_sym_preproc_else_token1] = ACTIONS(3513), + [aux_sym_preproc_elif_token1] = ACTIONS(3513), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3513), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3513), + [sym_preproc_directive] = ACTIONS(3513), + [anon_sym_LPAREN2] = ACTIONS(3515), + [anon_sym_BANG] = ACTIONS(3515), + [anon_sym_TILDE] = ACTIONS(3515), + [anon_sym_DASH] = ACTIONS(3513), + [anon_sym_PLUS] = ACTIONS(3513), + [anon_sym_STAR] = ACTIONS(3515), + [anon_sym_AMP_AMP] = ACTIONS(3515), + [anon_sym_AMP] = ACTIONS(3513), + [anon_sym_SEMI] = ACTIONS(3515), + [anon_sym___extension__] = ACTIONS(3513), + [anon_sym_typedef] = ACTIONS(3513), + [anon_sym_extern] = ACTIONS(3513), + [anon_sym___attribute__] = ACTIONS(3513), + [anon_sym_COLON_COLON] = ACTIONS(3515), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3515), + [anon_sym___declspec] = ACTIONS(3513), + [anon_sym___based] = ACTIONS(3513), + [anon_sym___cdecl] = ACTIONS(3513), + [anon_sym___clrcall] = ACTIONS(3513), + [anon_sym___stdcall] = ACTIONS(3513), + [anon_sym___fastcall] = ACTIONS(3513), + [anon_sym___thiscall] = ACTIONS(3513), + [anon_sym___vectorcall] = ACTIONS(3513), + [anon_sym_LBRACE] = ACTIONS(3515), + [anon_sym_signed] = ACTIONS(3513), + [anon_sym_unsigned] = ACTIONS(3513), + [anon_sym_long] = ACTIONS(3513), + [anon_sym_short] = ACTIONS(3513), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_static] = ACTIONS(3513), + [anon_sym_register] = ACTIONS(3513), + [anon_sym_inline] = ACTIONS(3513), + [anon_sym___inline] = ACTIONS(3513), + [anon_sym___inline__] = ACTIONS(3513), + [anon_sym___forceinline] = ACTIONS(3513), + [anon_sym_thread_local] = ACTIONS(3513), + [anon_sym___thread] = ACTIONS(3513), + [anon_sym_const] = ACTIONS(3513), + [anon_sym_constexpr] = ACTIONS(3513), + [anon_sym_volatile] = ACTIONS(3513), + [anon_sym_restrict] = ACTIONS(3513), + [anon_sym___restrict__] = ACTIONS(3513), + [anon_sym__Atomic] = ACTIONS(3513), + [anon_sym__Noreturn] = ACTIONS(3513), + [anon_sym_noreturn] = ACTIONS(3513), + [anon_sym_mutable] = ACTIONS(3513), + [anon_sym_constinit] = ACTIONS(3513), + [anon_sym_consteval] = ACTIONS(3513), + [sym_primitive_type] = ACTIONS(3513), + [anon_sym_enum] = ACTIONS(3513), + [anon_sym_class] = ACTIONS(3513), + [anon_sym_struct] = ACTIONS(3513), + [anon_sym_union] = ACTIONS(3513), + [anon_sym_if] = ACTIONS(3513), + [anon_sym_switch] = ACTIONS(3513), + [anon_sym_case] = ACTIONS(3513), + [anon_sym_default] = ACTIONS(3513), + [anon_sym_while] = ACTIONS(3513), + [anon_sym_do] = ACTIONS(3513), + [anon_sym_for] = ACTIONS(3513), + [anon_sym_return] = ACTIONS(3513), + [anon_sym_break] = ACTIONS(3513), + [anon_sym_continue] = ACTIONS(3513), + [anon_sym_goto] = ACTIONS(3513), + [anon_sym___try] = ACTIONS(3513), + [anon_sym___leave] = ACTIONS(3513), + [anon_sym_not] = ACTIONS(3513), + [anon_sym_compl] = ACTIONS(3513), + [anon_sym_DASH_DASH] = ACTIONS(3515), + [anon_sym_PLUS_PLUS] = ACTIONS(3515), + [anon_sym_sizeof] = ACTIONS(3513), + [anon_sym___alignof__] = ACTIONS(3513), + [anon_sym___alignof] = ACTIONS(3513), + [anon_sym__alignof] = ACTIONS(3513), + [anon_sym_alignof] = ACTIONS(3513), + [anon_sym__Alignof] = ACTIONS(3513), + [anon_sym_offsetof] = ACTIONS(3513), + [anon_sym__Generic] = ACTIONS(3513), + [anon_sym_asm] = ACTIONS(3513), + [anon_sym___asm__] = ACTIONS(3513), + [sym_number_literal] = ACTIONS(3515), + [anon_sym_L_SQUOTE] = ACTIONS(3515), + [anon_sym_u_SQUOTE] = ACTIONS(3515), + [anon_sym_U_SQUOTE] = ACTIONS(3515), + [anon_sym_u8_SQUOTE] = ACTIONS(3515), + [anon_sym_SQUOTE] = ACTIONS(3515), + [anon_sym_L_DQUOTE] = ACTIONS(3515), + [anon_sym_u_DQUOTE] = ACTIONS(3515), + [anon_sym_U_DQUOTE] = ACTIONS(3515), + [anon_sym_u8_DQUOTE] = ACTIONS(3515), + [anon_sym_DQUOTE] = ACTIONS(3515), + [sym_true] = ACTIONS(3513), + [sym_false] = ACTIONS(3513), + [anon_sym_NULL] = ACTIONS(3513), + [anon_sym_nullptr] = ACTIONS(3513), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3513), + [anon_sym_decltype] = ACTIONS(3513), + [anon_sym_virtual] = ACTIONS(3513), + [anon_sym_alignas] = ACTIONS(3513), + [anon_sym_explicit] = ACTIONS(3513), + [anon_sym_typename] = ACTIONS(3513), + [anon_sym_template] = ACTIONS(3513), + [anon_sym_operator] = ACTIONS(3513), + [anon_sym_try] = ACTIONS(3513), + [anon_sym_delete] = ACTIONS(3513), + [anon_sym_throw] = ACTIONS(3513), + [anon_sym_namespace] = ACTIONS(3513), + [anon_sym_using] = ACTIONS(3513), + [anon_sym_static_assert] = ACTIONS(3513), + [anon_sym_concept] = ACTIONS(3513), + [anon_sym_co_return] = ACTIONS(3513), + [anon_sym_co_yield] = ACTIONS(3513), + [anon_sym_R_DQUOTE] = ACTIONS(3515), + [anon_sym_LR_DQUOTE] = ACTIONS(3515), + [anon_sym_uR_DQUOTE] = ACTIONS(3515), + [anon_sym_UR_DQUOTE] = ACTIONS(3515), + [anon_sym_u8R_DQUOTE] = ACTIONS(3515), + [anon_sym_co_await] = ACTIONS(3513), + [anon_sym_new] = ACTIONS(3513), + [anon_sym_requires] = ACTIONS(3513), + [sym_this] = ACTIONS(3513), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3515), + [sym_semgrep_named_ellipsis] = ACTIONS(3515), }, [400] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5588), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8459), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(8913), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3522), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [sym_type_qualifier] = STATE(4685), + [sym_type_specifier] = STATE(5782), + [sym_sized_type_specifier] = STATE(3293), + [sym_enum_specifier] = STATE(3293), + [sym_struct_specifier] = STATE(3293), + [sym_union_specifier] = STATE(3293), + [sym_expression] = STATE(5099), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_type_descriptor] = STATE(7910), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_placeholder_type_specifier] = STATE(3293), + [sym_decltype_auto] = STATE(3292), + [sym_decltype] = STATE(2572), + [sym_class_specifier] = STATE(3293), + [sym_class_name] = STATE(8965), + [sym_dependent_type] = STATE(3293), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_type_parameter_pack_expansion] = STATE(8222), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6620), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(6338), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [aux_sym_type_definition_type_repeat1] = STATE(4685), + [aux_sym_sized_type_specifier_repeat1] = STATE(2573), + [sym_identifier] = ACTIONS(3310), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_signed] = ACTIONS(3324), + [anon_sym_unsigned] = ACTIONS(3324), + [anon_sym_long] = ACTIONS(3324), + [anon_sym_short] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3330), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_union] = ACTIONS(3334), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3358), + [anon_sym_decltype] = ACTIONS(3360), + [anon_sym_typename] = ACTIONS(3362), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_GT2] = ACTIONS(3517), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), }, [401] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5603), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8518), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(9062), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3524), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [sym_identifier] = ACTIONS(3519), + [aux_sym_preproc_include_token1] = ACTIONS(3519), + [aux_sym_preproc_def_token1] = ACTIONS(3519), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3521), + [aux_sym_preproc_if_token1] = ACTIONS(3519), + [aux_sym_preproc_if_token2] = ACTIONS(3519), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3519), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3519), + [aux_sym_preproc_else_token1] = ACTIONS(3519), + [aux_sym_preproc_elif_token1] = ACTIONS(3519), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3519), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3519), + [sym_preproc_directive] = ACTIONS(3519), + [anon_sym_LPAREN2] = ACTIONS(3521), + [anon_sym_BANG] = ACTIONS(3521), + [anon_sym_TILDE] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(3519), + [anon_sym_STAR] = ACTIONS(3521), + [anon_sym_AMP_AMP] = ACTIONS(3521), + [anon_sym_AMP] = ACTIONS(3519), + [anon_sym_SEMI] = ACTIONS(3521), + [anon_sym___extension__] = ACTIONS(3519), + [anon_sym_typedef] = ACTIONS(3519), + [anon_sym_extern] = ACTIONS(3519), + [anon_sym___attribute__] = ACTIONS(3519), + [anon_sym_COLON_COLON] = ACTIONS(3521), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3521), + [anon_sym___declspec] = ACTIONS(3519), + [anon_sym___based] = ACTIONS(3519), + [anon_sym___cdecl] = ACTIONS(3519), + [anon_sym___clrcall] = ACTIONS(3519), + [anon_sym___stdcall] = ACTIONS(3519), + [anon_sym___fastcall] = ACTIONS(3519), + [anon_sym___thiscall] = ACTIONS(3519), + [anon_sym___vectorcall] = ACTIONS(3519), + [anon_sym_LBRACE] = ACTIONS(3521), + [anon_sym_signed] = ACTIONS(3519), + [anon_sym_unsigned] = ACTIONS(3519), + [anon_sym_long] = ACTIONS(3519), + [anon_sym_short] = ACTIONS(3519), + [anon_sym_LBRACK] = ACTIONS(3519), + [anon_sym_static] = ACTIONS(3519), + [anon_sym_register] = ACTIONS(3519), + [anon_sym_inline] = ACTIONS(3519), + [anon_sym___inline] = ACTIONS(3519), + [anon_sym___inline__] = ACTIONS(3519), + [anon_sym___forceinline] = ACTIONS(3519), + [anon_sym_thread_local] = ACTIONS(3519), + [anon_sym___thread] = ACTIONS(3519), + [anon_sym_const] = ACTIONS(3519), + [anon_sym_constexpr] = ACTIONS(3519), + [anon_sym_volatile] = ACTIONS(3519), + [anon_sym_restrict] = ACTIONS(3519), + [anon_sym___restrict__] = ACTIONS(3519), + [anon_sym__Atomic] = ACTIONS(3519), + [anon_sym__Noreturn] = ACTIONS(3519), + [anon_sym_noreturn] = ACTIONS(3519), + [anon_sym_mutable] = ACTIONS(3519), + [anon_sym_constinit] = ACTIONS(3519), + [anon_sym_consteval] = ACTIONS(3519), + [sym_primitive_type] = ACTIONS(3519), + [anon_sym_enum] = ACTIONS(3519), + [anon_sym_class] = ACTIONS(3519), + [anon_sym_struct] = ACTIONS(3519), + [anon_sym_union] = ACTIONS(3519), + [anon_sym_if] = ACTIONS(3519), + [anon_sym_switch] = ACTIONS(3519), + [anon_sym_case] = ACTIONS(3519), + [anon_sym_default] = ACTIONS(3519), + [anon_sym_while] = ACTIONS(3519), + [anon_sym_do] = ACTIONS(3519), + [anon_sym_for] = ACTIONS(3519), + [anon_sym_return] = ACTIONS(3519), + [anon_sym_break] = ACTIONS(3519), + [anon_sym_continue] = ACTIONS(3519), + [anon_sym_goto] = ACTIONS(3519), + [anon_sym___try] = ACTIONS(3519), + [anon_sym___leave] = ACTIONS(3519), + [anon_sym_not] = ACTIONS(3519), + [anon_sym_compl] = ACTIONS(3519), + [anon_sym_DASH_DASH] = ACTIONS(3521), + [anon_sym_PLUS_PLUS] = ACTIONS(3521), + [anon_sym_sizeof] = ACTIONS(3519), + [anon_sym___alignof__] = ACTIONS(3519), + [anon_sym___alignof] = ACTIONS(3519), + [anon_sym__alignof] = ACTIONS(3519), + [anon_sym_alignof] = ACTIONS(3519), + [anon_sym__Alignof] = ACTIONS(3519), + [anon_sym_offsetof] = ACTIONS(3519), + [anon_sym__Generic] = ACTIONS(3519), + [anon_sym_asm] = ACTIONS(3519), + [anon_sym___asm__] = ACTIONS(3519), + [sym_number_literal] = ACTIONS(3521), + [anon_sym_L_SQUOTE] = ACTIONS(3521), + [anon_sym_u_SQUOTE] = ACTIONS(3521), + [anon_sym_U_SQUOTE] = ACTIONS(3521), + [anon_sym_u8_SQUOTE] = ACTIONS(3521), + [anon_sym_SQUOTE] = ACTIONS(3521), + [anon_sym_L_DQUOTE] = ACTIONS(3521), + [anon_sym_u_DQUOTE] = ACTIONS(3521), + [anon_sym_U_DQUOTE] = ACTIONS(3521), + [anon_sym_u8_DQUOTE] = ACTIONS(3521), + [anon_sym_DQUOTE] = ACTIONS(3521), + [sym_true] = ACTIONS(3519), + [sym_false] = ACTIONS(3519), + [anon_sym_NULL] = ACTIONS(3519), + [anon_sym_nullptr] = ACTIONS(3519), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3519), + [anon_sym_decltype] = ACTIONS(3519), + [anon_sym_virtual] = ACTIONS(3519), + [anon_sym_alignas] = ACTIONS(3519), + [anon_sym_explicit] = ACTIONS(3519), + [anon_sym_typename] = ACTIONS(3519), + [anon_sym_template] = ACTIONS(3519), + [anon_sym_operator] = ACTIONS(3519), + [anon_sym_try] = ACTIONS(3519), + [anon_sym_delete] = ACTIONS(3519), + [anon_sym_throw] = ACTIONS(3519), + [anon_sym_namespace] = ACTIONS(3519), + [anon_sym_using] = ACTIONS(3519), + [anon_sym_static_assert] = ACTIONS(3519), + [anon_sym_concept] = ACTIONS(3519), + [anon_sym_co_return] = ACTIONS(3519), + [anon_sym_co_yield] = ACTIONS(3519), + [anon_sym_R_DQUOTE] = ACTIONS(3521), + [anon_sym_LR_DQUOTE] = ACTIONS(3521), + [anon_sym_uR_DQUOTE] = ACTIONS(3521), + [anon_sym_UR_DQUOTE] = ACTIONS(3521), + [anon_sym_u8R_DQUOTE] = ACTIONS(3521), + [anon_sym_co_await] = ACTIONS(3519), + [anon_sym_new] = ACTIONS(3519), + [anon_sym_requires] = ACTIONS(3519), + [sym_this] = ACTIONS(3519), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3521), + [sym_semgrep_named_ellipsis] = ACTIONS(3521), }, [402] = { - [sym_identifier] = ACTIONS(3078), - [aux_sym_preproc_include_token1] = ACTIONS(3078), - [aux_sym_preproc_def_token1] = ACTIONS(3078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3080), - [aux_sym_preproc_if_token1] = ACTIONS(3078), - [aux_sym_preproc_if_token2] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3078), - [aux_sym_preproc_else_token1] = ACTIONS(3078), - [aux_sym_preproc_elif_token1] = ACTIONS(3078), - [sym_preproc_directive] = ACTIONS(3078), - [anon_sym_LPAREN2] = ACTIONS(3080), - [anon_sym_BANG] = ACTIONS(3080), - [anon_sym_TILDE] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym_SEMI] = ACTIONS(3080), - [anon_sym___extension__] = ACTIONS(3078), - [anon_sym_typedef] = ACTIONS(3078), - [anon_sym_extern] = ACTIONS(3078), - [anon_sym___attribute__] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3080), - [anon_sym___declspec] = ACTIONS(3078), - [anon_sym___based] = ACTIONS(3078), - [anon_sym___cdecl] = ACTIONS(3078), - [anon_sym___clrcall] = ACTIONS(3078), - [anon_sym___stdcall] = ACTIONS(3078), - [anon_sym___fastcall] = ACTIONS(3078), - [anon_sym___thiscall] = ACTIONS(3078), - [anon_sym___vectorcall] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_signed] = ACTIONS(3078), - [anon_sym_unsigned] = ACTIONS(3078), - [anon_sym_long] = ACTIONS(3078), - [anon_sym_short] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_static] = ACTIONS(3078), - [anon_sym_register] = ACTIONS(3078), - [anon_sym_inline] = ACTIONS(3078), - [anon_sym___inline] = ACTIONS(3078), - [anon_sym___inline__] = ACTIONS(3078), - [anon_sym___forceinline] = ACTIONS(3078), - [anon_sym_thread_local] = ACTIONS(3078), - [anon_sym___thread] = ACTIONS(3078), - [anon_sym_const] = ACTIONS(3078), - [anon_sym_constexpr] = ACTIONS(3078), - [anon_sym_volatile] = ACTIONS(3078), - [anon_sym_restrict] = ACTIONS(3078), - [anon_sym___restrict__] = ACTIONS(3078), - [anon_sym__Atomic] = ACTIONS(3078), - [anon_sym__Noreturn] = ACTIONS(3078), - [anon_sym_noreturn] = ACTIONS(3078), - [anon_sym_mutable] = ACTIONS(3078), - [anon_sym_constinit] = ACTIONS(3078), - [anon_sym_consteval] = ACTIONS(3078), - [sym_primitive_type] = ACTIONS(3078), - [anon_sym_enum] = ACTIONS(3078), - [anon_sym_class] = ACTIONS(3078), - [anon_sym_struct] = ACTIONS(3078), - [anon_sym_union] = ACTIONS(3078), - [anon_sym_if] = ACTIONS(3078), - [anon_sym_else] = ACTIONS(3078), - [anon_sym_switch] = ACTIONS(3078), - [anon_sym_case] = ACTIONS(3078), - [anon_sym_default] = ACTIONS(3078), - [anon_sym_while] = ACTIONS(3078), - [anon_sym_do] = ACTIONS(3078), - [anon_sym_for] = ACTIONS(3078), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_break] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(3078), - [anon_sym_goto] = ACTIONS(3078), - [anon_sym___try] = ACTIONS(3078), - [anon_sym___leave] = ACTIONS(3078), - [anon_sym_not] = ACTIONS(3078), - [anon_sym_compl] = ACTIONS(3078), - [anon_sym_DASH_DASH] = ACTIONS(3080), - [anon_sym_PLUS_PLUS] = ACTIONS(3080), - [anon_sym_sizeof] = ACTIONS(3078), - [anon_sym___alignof__] = ACTIONS(3078), - [anon_sym___alignof] = ACTIONS(3078), - [anon_sym__alignof] = ACTIONS(3078), - [anon_sym_alignof] = ACTIONS(3078), - [anon_sym__Alignof] = ACTIONS(3078), - [anon_sym_offsetof] = ACTIONS(3078), - [anon_sym__Generic] = ACTIONS(3078), - [anon_sym_asm] = ACTIONS(3078), - [anon_sym___asm__] = ACTIONS(3078), - [sym_number_literal] = ACTIONS(3080), - [anon_sym_L_SQUOTE] = ACTIONS(3080), - [anon_sym_u_SQUOTE] = ACTIONS(3080), - [anon_sym_U_SQUOTE] = ACTIONS(3080), - [anon_sym_u8_SQUOTE] = ACTIONS(3080), - [anon_sym_SQUOTE] = ACTIONS(3080), - [anon_sym_L_DQUOTE] = ACTIONS(3080), - [anon_sym_u_DQUOTE] = ACTIONS(3080), - [anon_sym_U_DQUOTE] = ACTIONS(3080), - [anon_sym_u8_DQUOTE] = ACTIONS(3080), - [anon_sym_DQUOTE] = ACTIONS(3080), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [anon_sym_NULL] = ACTIONS(3078), - [anon_sym_nullptr] = ACTIONS(3078), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3078), - [anon_sym_decltype] = ACTIONS(3078), - [anon_sym_virtual] = ACTIONS(3078), - [anon_sym_alignas] = ACTIONS(3078), - [anon_sym_explicit] = ACTIONS(3078), - [anon_sym_typename] = ACTIONS(3078), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_operator] = ACTIONS(3078), - [anon_sym_try] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3078), - [anon_sym_throw] = ACTIONS(3078), - [anon_sym_namespace] = ACTIONS(3078), - [anon_sym_using] = ACTIONS(3078), - [anon_sym_static_assert] = ACTIONS(3078), - [anon_sym_concept] = ACTIONS(3078), - [anon_sym_co_return] = ACTIONS(3078), - [anon_sym_co_yield] = ACTIONS(3078), - [anon_sym_catch] = ACTIONS(3078), - [anon_sym_R_DQUOTE] = ACTIONS(3080), - [anon_sym_LR_DQUOTE] = ACTIONS(3080), - [anon_sym_uR_DQUOTE] = ACTIONS(3080), - [anon_sym_UR_DQUOTE] = ACTIONS(3080), - [anon_sym_u8R_DQUOTE] = ACTIONS(3080), - [anon_sym_co_await] = ACTIONS(3078), - [anon_sym_new] = ACTIONS(3078), - [anon_sym_requires] = ACTIONS(3078), - [sym_this] = ACTIONS(3078), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3080), - [sym_semgrep_named_ellipsis] = ACTIONS(3080), + [sym_type_qualifier] = STATE(4685), + [sym_type_specifier] = STATE(5782), + [sym_sized_type_specifier] = STATE(3293), + [sym_enum_specifier] = STATE(3293), + [sym_struct_specifier] = STATE(3293), + [sym_union_specifier] = STATE(3293), + [sym_expression] = STATE(5102), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_type_descriptor] = STATE(7923), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_placeholder_type_specifier] = STATE(3293), + [sym_decltype_auto] = STATE(3292), + [sym_decltype] = STATE(2572), + [sym_class_specifier] = STATE(3293), + [sym_class_name] = STATE(8965), + [sym_dependent_type] = STATE(3293), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_type_parameter_pack_expansion] = STATE(8306), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6620), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(6338), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [aux_sym_type_definition_type_repeat1] = STATE(4685), + [aux_sym_sized_type_specifier_repeat1] = STATE(2573), + [sym_identifier] = ACTIONS(3310), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_signed] = ACTIONS(3324), + [anon_sym_unsigned] = ACTIONS(3324), + [anon_sym_long] = ACTIONS(3324), + [anon_sym_short] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3330), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_union] = ACTIONS(3334), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3358), + [anon_sym_decltype] = ACTIONS(3360), + [anon_sym_typename] = ACTIONS(3362), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_GT2] = ACTIONS(3523), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), }, [403] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5610), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8314), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(9027), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3526), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [sym_identifier] = ACTIONS(3525), + [aux_sym_preproc_include_token1] = ACTIONS(3525), + [aux_sym_preproc_def_token1] = ACTIONS(3525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3527), + [aux_sym_preproc_if_token1] = ACTIONS(3525), + [aux_sym_preproc_if_token2] = ACTIONS(3525), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3525), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3525), + [aux_sym_preproc_else_token1] = ACTIONS(3525), + [aux_sym_preproc_elif_token1] = ACTIONS(3525), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3525), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3525), + [sym_preproc_directive] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(3527), + [anon_sym_BANG] = ACTIONS(3527), + [anon_sym_TILDE] = ACTIONS(3527), + [anon_sym_DASH] = ACTIONS(3525), + [anon_sym_PLUS] = ACTIONS(3525), + [anon_sym_STAR] = ACTIONS(3527), + [anon_sym_AMP_AMP] = ACTIONS(3527), + [anon_sym_AMP] = ACTIONS(3525), + [anon_sym_SEMI] = ACTIONS(3527), + [anon_sym___extension__] = ACTIONS(3525), + [anon_sym_typedef] = ACTIONS(3525), + [anon_sym_extern] = ACTIONS(3525), + [anon_sym___attribute__] = ACTIONS(3525), + [anon_sym_COLON_COLON] = ACTIONS(3527), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3527), + [anon_sym___declspec] = ACTIONS(3525), + [anon_sym___based] = ACTIONS(3525), + [anon_sym___cdecl] = ACTIONS(3525), + [anon_sym___clrcall] = ACTIONS(3525), + [anon_sym___stdcall] = ACTIONS(3525), + [anon_sym___fastcall] = ACTIONS(3525), + [anon_sym___thiscall] = ACTIONS(3525), + [anon_sym___vectorcall] = ACTIONS(3525), + [anon_sym_LBRACE] = ACTIONS(3527), + [anon_sym_signed] = ACTIONS(3525), + [anon_sym_unsigned] = ACTIONS(3525), + [anon_sym_long] = ACTIONS(3525), + [anon_sym_short] = ACTIONS(3525), + [anon_sym_LBRACK] = ACTIONS(3525), + [anon_sym_static] = ACTIONS(3525), + [anon_sym_register] = ACTIONS(3525), + [anon_sym_inline] = ACTIONS(3525), + [anon_sym___inline] = ACTIONS(3525), + [anon_sym___inline__] = ACTIONS(3525), + [anon_sym___forceinline] = ACTIONS(3525), + [anon_sym_thread_local] = ACTIONS(3525), + [anon_sym___thread] = ACTIONS(3525), + [anon_sym_const] = ACTIONS(3525), + [anon_sym_constexpr] = ACTIONS(3525), + [anon_sym_volatile] = ACTIONS(3525), + [anon_sym_restrict] = ACTIONS(3525), + [anon_sym___restrict__] = ACTIONS(3525), + [anon_sym__Atomic] = ACTIONS(3525), + [anon_sym__Noreturn] = ACTIONS(3525), + [anon_sym_noreturn] = ACTIONS(3525), + [anon_sym_mutable] = ACTIONS(3525), + [anon_sym_constinit] = ACTIONS(3525), + [anon_sym_consteval] = ACTIONS(3525), + [sym_primitive_type] = ACTIONS(3525), + [anon_sym_enum] = ACTIONS(3525), + [anon_sym_class] = ACTIONS(3525), + [anon_sym_struct] = ACTIONS(3525), + [anon_sym_union] = ACTIONS(3525), + [anon_sym_if] = ACTIONS(3525), + [anon_sym_switch] = ACTIONS(3525), + [anon_sym_case] = ACTIONS(3525), + [anon_sym_default] = ACTIONS(3525), + [anon_sym_while] = ACTIONS(3525), + [anon_sym_do] = ACTIONS(3525), + [anon_sym_for] = ACTIONS(3525), + [anon_sym_return] = ACTIONS(3525), + [anon_sym_break] = ACTIONS(3525), + [anon_sym_continue] = ACTIONS(3525), + [anon_sym_goto] = ACTIONS(3525), + [anon_sym___try] = ACTIONS(3525), + [anon_sym___leave] = ACTIONS(3525), + [anon_sym_not] = ACTIONS(3525), + [anon_sym_compl] = ACTIONS(3525), + [anon_sym_DASH_DASH] = ACTIONS(3527), + [anon_sym_PLUS_PLUS] = ACTIONS(3527), + [anon_sym_sizeof] = ACTIONS(3525), + [anon_sym___alignof__] = ACTIONS(3525), + [anon_sym___alignof] = ACTIONS(3525), + [anon_sym__alignof] = ACTIONS(3525), + [anon_sym_alignof] = ACTIONS(3525), + [anon_sym__Alignof] = ACTIONS(3525), + [anon_sym_offsetof] = ACTIONS(3525), + [anon_sym__Generic] = ACTIONS(3525), + [anon_sym_asm] = ACTIONS(3525), + [anon_sym___asm__] = ACTIONS(3525), + [sym_number_literal] = ACTIONS(3527), + [anon_sym_L_SQUOTE] = ACTIONS(3527), + [anon_sym_u_SQUOTE] = ACTIONS(3527), + [anon_sym_U_SQUOTE] = ACTIONS(3527), + [anon_sym_u8_SQUOTE] = ACTIONS(3527), + [anon_sym_SQUOTE] = ACTIONS(3527), + [anon_sym_L_DQUOTE] = ACTIONS(3527), + [anon_sym_u_DQUOTE] = ACTIONS(3527), + [anon_sym_U_DQUOTE] = ACTIONS(3527), + [anon_sym_u8_DQUOTE] = ACTIONS(3527), + [anon_sym_DQUOTE] = ACTIONS(3527), + [sym_true] = ACTIONS(3525), + [sym_false] = ACTIONS(3525), + [anon_sym_NULL] = ACTIONS(3525), + [anon_sym_nullptr] = ACTIONS(3525), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3525), + [anon_sym_decltype] = ACTIONS(3525), + [anon_sym_virtual] = ACTIONS(3525), + [anon_sym_alignas] = ACTIONS(3525), + [anon_sym_explicit] = ACTIONS(3525), + [anon_sym_typename] = ACTIONS(3525), + [anon_sym_template] = ACTIONS(3525), + [anon_sym_operator] = ACTIONS(3525), + [anon_sym_try] = ACTIONS(3525), + [anon_sym_delete] = ACTIONS(3525), + [anon_sym_throw] = ACTIONS(3525), + [anon_sym_namespace] = ACTIONS(3525), + [anon_sym_using] = ACTIONS(3525), + [anon_sym_static_assert] = ACTIONS(3525), + [anon_sym_concept] = ACTIONS(3525), + [anon_sym_co_return] = ACTIONS(3525), + [anon_sym_co_yield] = ACTIONS(3525), + [anon_sym_R_DQUOTE] = ACTIONS(3527), + [anon_sym_LR_DQUOTE] = ACTIONS(3527), + [anon_sym_uR_DQUOTE] = ACTIONS(3527), + [anon_sym_UR_DQUOTE] = ACTIONS(3527), + [anon_sym_u8R_DQUOTE] = ACTIONS(3527), + [anon_sym_co_await] = ACTIONS(3525), + [anon_sym_new] = ACTIONS(3525), + [anon_sym_requires] = ACTIONS(3525), + [sym_this] = ACTIONS(3525), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3527), + [sym_semgrep_named_ellipsis] = ACTIONS(3527), }, [404] = { - [sym_identifier] = ACTIONS(3096), - [aux_sym_preproc_include_token1] = ACTIONS(3096), - [aux_sym_preproc_def_token1] = ACTIONS(3096), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3094), - [aux_sym_preproc_if_token1] = ACTIONS(3096), - [aux_sym_preproc_if_token2] = ACTIONS(3096), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3096), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3096), - [aux_sym_preproc_else_token1] = ACTIONS(3096), - [aux_sym_preproc_elif_token1] = ACTIONS(3096), - [sym_preproc_directive] = ACTIONS(3096), - [anon_sym_LPAREN2] = ACTIONS(3094), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_TILDE] = ACTIONS(3094), - [anon_sym_DASH] = ACTIONS(3096), - [anon_sym_PLUS] = ACTIONS(3096), - [anon_sym_STAR] = ACTIONS(3094), - [anon_sym_AMP_AMP] = ACTIONS(3094), - [anon_sym_AMP] = ACTIONS(3096), - [anon_sym_SEMI] = ACTIONS(3094), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_typedef] = ACTIONS(3096), - [anon_sym_extern] = ACTIONS(3096), - [anon_sym___attribute__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(3094), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3094), - [anon_sym___declspec] = ACTIONS(3096), - [anon_sym___based] = ACTIONS(3096), - [anon_sym___cdecl] = ACTIONS(3096), - [anon_sym___clrcall] = ACTIONS(3096), - [anon_sym___stdcall] = ACTIONS(3096), - [anon_sym___fastcall] = ACTIONS(3096), - [anon_sym___thiscall] = ACTIONS(3096), - [anon_sym___vectorcall] = ACTIONS(3096), - [anon_sym_LBRACE] = ACTIONS(3094), - [anon_sym_signed] = ACTIONS(3096), - [anon_sym_unsigned] = ACTIONS(3096), - [anon_sym_long] = ACTIONS(3096), - [anon_sym_short] = ACTIONS(3096), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_static] = ACTIONS(3096), - [anon_sym_register] = ACTIONS(3096), - [anon_sym_inline] = ACTIONS(3096), - [anon_sym___inline] = ACTIONS(3096), - [anon_sym___inline__] = ACTIONS(3096), - [anon_sym___forceinline] = ACTIONS(3096), - [anon_sym_thread_local] = ACTIONS(3096), - [anon_sym___thread] = ACTIONS(3096), - [anon_sym_const] = ACTIONS(3096), - [anon_sym_constexpr] = ACTIONS(3096), - [anon_sym_volatile] = ACTIONS(3096), - [anon_sym_restrict] = ACTIONS(3096), - [anon_sym___restrict__] = ACTIONS(3096), - [anon_sym__Atomic] = ACTIONS(3096), - [anon_sym__Noreturn] = ACTIONS(3096), - [anon_sym_noreturn] = ACTIONS(3096), - [anon_sym_mutable] = ACTIONS(3096), - [anon_sym_constinit] = ACTIONS(3096), - [anon_sym_consteval] = ACTIONS(3096), - [sym_primitive_type] = ACTIONS(3096), - [anon_sym_enum] = ACTIONS(3096), - [anon_sym_class] = ACTIONS(3096), - [anon_sym_struct] = ACTIONS(3096), - [anon_sym_union] = ACTIONS(3096), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_else] = ACTIONS(3096), - [anon_sym_switch] = ACTIONS(3096), - [anon_sym_case] = ACTIONS(3096), - [anon_sym_default] = ACTIONS(3096), - [anon_sym_while] = ACTIONS(3096), - [anon_sym_do] = ACTIONS(3096), - [anon_sym_for] = ACTIONS(3096), - [anon_sym_return] = ACTIONS(3096), - [anon_sym_break] = ACTIONS(3096), - [anon_sym_continue] = ACTIONS(3096), - [anon_sym_goto] = ACTIONS(3096), - [anon_sym___try] = ACTIONS(3096), - [anon_sym___leave] = ACTIONS(3096), - [anon_sym_not] = ACTIONS(3096), - [anon_sym_compl] = ACTIONS(3096), - [anon_sym_DASH_DASH] = ACTIONS(3094), - [anon_sym_PLUS_PLUS] = ACTIONS(3094), - [anon_sym_sizeof] = ACTIONS(3096), - [anon_sym___alignof__] = ACTIONS(3096), - [anon_sym___alignof] = ACTIONS(3096), - [anon_sym__alignof] = ACTIONS(3096), - [anon_sym_alignof] = ACTIONS(3096), - [anon_sym__Alignof] = ACTIONS(3096), - [anon_sym_offsetof] = ACTIONS(3096), - [anon_sym__Generic] = ACTIONS(3096), - [anon_sym_asm] = ACTIONS(3096), - [anon_sym___asm__] = ACTIONS(3096), - [sym_number_literal] = ACTIONS(3094), - [anon_sym_L_SQUOTE] = ACTIONS(3094), - [anon_sym_u_SQUOTE] = ACTIONS(3094), - [anon_sym_U_SQUOTE] = ACTIONS(3094), - [anon_sym_u8_SQUOTE] = ACTIONS(3094), - [anon_sym_SQUOTE] = ACTIONS(3094), - [anon_sym_L_DQUOTE] = ACTIONS(3094), - [anon_sym_u_DQUOTE] = ACTIONS(3094), - [anon_sym_U_DQUOTE] = ACTIONS(3094), - [anon_sym_u8_DQUOTE] = ACTIONS(3094), - [anon_sym_DQUOTE] = ACTIONS(3094), - [sym_true] = ACTIONS(3096), - [sym_false] = ACTIONS(3096), - [anon_sym_NULL] = ACTIONS(3096), - [anon_sym_nullptr] = ACTIONS(3096), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3096), - [anon_sym_decltype] = ACTIONS(3096), - [anon_sym_virtual] = ACTIONS(3096), - [anon_sym_alignas] = ACTIONS(3096), - [anon_sym_explicit] = ACTIONS(3096), - [anon_sym_typename] = ACTIONS(3096), - [anon_sym_template] = ACTIONS(3096), - [anon_sym_operator] = ACTIONS(3096), - [anon_sym_try] = ACTIONS(3096), - [anon_sym_delete] = ACTIONS(3096), - [anon_sym_throw] = ACTIONS(3096), - [anon_sym_namespace] = ACTIONS(3096), - [anon_sym_using] = ACTIONS(3096), - [anon_sym_static_assert] = ACTIONS(3096), - [anon_sym_concept] = ACTIONS(3096), - [anon_sym_co_return] = ACTIONS(3096), - [anon_sym_co_yield] = ACTIONS(3096), - [anon_sym_catch] = ACTIONS(3096), - [anon_sym_R_DQUOTE] = ACTIONS(3094), - [anon_sym_LR_DQUOTE] = ACTIONS(3094), - [anon_sym_uR_DQUOTE] = ACTIONS(3094), - [anon_sym_UR_DQUOTE] = ACTIONS(3094), - [anon_sym_u8R_DQUOTE] = ACTIONS(3094), - [anon_sym_co_await] = ACTIONS(3096), - [anon_sym_new] = ACTIONS(3096), - [anon_sym_requires] = ACTIONS(3096), - [sym_this] = ACTIONS(3096), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3094), - [sym_semgrep_named_ellipsis] = ACTIONS(3094), + [sym_identifier] = ACTIONS(3529), + [aux_sym_preproc_include_token1] = ACTIONS(3529), + [aux_sym_preproc_def_token1] = ACTIONS(3529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3531), + [aux_sym_preproc_if_token1] = ACTIONS(3529), + [aux_sym_preproc_if_token2] = ACTIONS(3529), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3529), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3529), + [aux_sym_preproc_else_token1] = ACTIONS(3529), + [aux_sym_preproc_elif_token1] = ACTIONS(3529), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3529), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3529), + [sym_preproc_directive] = ACTIONS(3529), + [anon_sym_LPAREN2] = ACTIONS(3531), + [anon_sym_BANG] = ACTIONS(3531), + [anon_sym_TILDE] = ACTIONS(3531), + [anon_sym_DASH] = ACTIONS(3529), + [anon_sym_PLUS] = ACTIONS(3529), + [anon_sym_STAR] = ACTIONS(3531), + [anon_sym_AMP_AMP] = ACTIONS(3531), + [anon_sym_AMP] = ACTIONS(3529), + [anon_sym_SEMI] = ACTIONS(3531), + [anon_sym___extension__] = ACTIONS(3529), + [anon_sym_typedef] = ACTIONS(3529), + [anon_sym_extern] = ACTIONS(3529), + [anon_sym___attribute__] = ACTIONS(3529), + [anon_sym_COLON_COLON] = ACTIONS(3531), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3531), + [anon_sym___declspec] = ACTIONS(3529), + [anon_sym___based] = ACTIONS(3529), + [anon_sym___cdecl] = ACTIONS(3529), + [anon_sym___clrcall] = ACTIONS(3529), + [anon_sym___stdcall] = ACTIONS(3529), + [anon_sym___fastcall] = ACTIONS(3529), + [anon_sym___thiscall] = ACTIONS(3529), + [anon_sym___vectorcall] = ACTIONS(3529), + [anon_sym_LBRACE] = ACTIONS(3531), + [anon_sym_signed] = ACTIONS(3529), + [anon_sym_unsigned] = ACTIONS(3529), + [anon_sym_long] = ACTIONS(3529), + [anon_sym_short] = ACTIONS(3529), + [anon_sym_LBRACK] = ACTIONS(3529), + [anon_sym_static] = ACTIONS(3529), + [anon_sym_register] = ACTIONS(3529), + [anon_sym_inline] = ACTIONS(3529), + [anon_sym___inline] = ACTIONS(3529), + [anon_sym___inline__] = ACTIONS(3529), + [anon_sym___forceinline] = ACTIONS(3529), + [anon_sym_thread_local] = ACTIONS(3529), + [anon_sym___thread] = ACTIONS(3529), + [anon_sym_const] = ACTIONS(3529), + [anon_sym_constexpr] = ACTIONS(3529), + [anon_sym_volatile] = ACTIONS(3529), + [anon_sym_restrict] = ACTIONS(3529), + [anon_sym___restrict__] = ACTIONS(3529), + [anon_sym__Atomic] = ACTIONS(3529), + [anon_sym__Noreturn] = ACTIONS(3529), + [anon_sym_noreturn] = ACTIONS(3529), + [anon_sym_mutable] = ACTIONS(3529), + [anon_sym_constinit] = ACTIONS(3529), + [anon_sym_consteval] = ACTIONS(3529), + [sym_primitive_type] = ACTIONS(3529), + [anon_sym_enum] = ACTIONS(3529), + [anon_sym_class] = ACTIONS(3529), + [anon_sym_struct] = ACTIONS(3529), + [anon_sym_union] = ACTIONS(3529), + [anon_sym_if] = ACTIONS(3529), + [anon_sym_switch] = ACTIONS(3529), + [anon_sym_case] = ACTIONS(3529), + [anon_sym_default] = ACTIONS(3529), + [anon_sym_while] = ACTIONS(3529), + [anon_sym_do] = ACTIONS(3529), + [anon_sym_for] = ACTIONS(3529), + [anon_sym_return] = ACTIONS(3529), + [anon_sym_break] = ACTIONS(3529), + [anon_sym_continue] = ACTIONS(3529), + [anon_sym_goto] = ACTIONS(3529), + [anon_sym___try] = ACTIONS(3529), + [anon_sym___leave] = ACTIONS(3529), + [anon_sym_not] = ACTIONS(3529), + [anon_sym_compl] = ACTIONS(3529), + [anon_sym_DASH_DASH] = ACTIONS(3531), + [anon_sym_PLUS_PLUS] = ACTIONS(3531), + [anon_sym_sizeof] = ACTIONS(3529), + [anon_sym___alignof__] = ACTIONS(3529), + [anon_sym___alignof] = ACTIONS(3529), + [anon_sym__alignof] = ACTIONS(3529), + [anon_sym_alignof] = ACTIONS(3529), + [anon_sym__Alignof] = ACTIONS(3529), + [anon_sym_offsetof] = ACTIONS(3529), + [anon_sym__Generic] = ACTIONS(3529), + [anon_sym_asm] = ACTIONS(3529), + [anon_sym___asm__] = ACTIONS(3529), + [sym_number_literal] = ACTIONS(3531), + [anon_sym_L_SQUOTE] = ACTIONS(3531), + [anon_sym_u_SQUOTE] = ACTIONS(3531), + [anon_sym_U_SQUOTE] = ACTIONS(3531), + [anon_sym_u8_SQUOTE] = ACTIONS(3531), + [anon_sym_SQUOTE] = ACTIONS(3531), + [anon_sym_L_DQUOTE] = ACTIONS(3531), + [anon_sym_u_DQUOTE] = ACTIONS(3531), + [anon_sym_U_DQUOTE] = ACTIONS(3531), + [anon_sym_u8_DQUOTE] = ACTIONS(3531), + [anon_sym_DQUOTE] = ACTIONS(3531), + [sym_true] = ACTIONS(3529), + [sym_false] = ACTIONS(3529), + [anon_sym_NULL] = ACTIONS(3529), + [anon_sym_nullptr] = ACTIONS(3529), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3529), + [anon_sym_decltype] = ACTIONS(3529), + [anon_sym_virtual] = ACTIONS(3529), + [anon_sym_alignas] = ACTIONS(3529), + [anon_sym_explicit] = ACTIONS(3529), + [anon_sym_typename] = ACTIONS(3529), + [anon_sym_template] = ACTIONS(3529), + [anon_sym_operator] = ACTIONS(3529), + [anon_sym_try] = ACTIONS(3529), + [anon_sym_delete] = ACTIONS(3529), + [anon_sym_throw] = ACTIONS(3529), + [anon_sym_namespace] = ACTIONS(3529), + [anon_sym_using] = ACTIONS(3529), + [anon_sym_static_assert] = ACTIONS(3529), + [anon_sym_concept] = ACTIONS(3529), + [anon_sym_co_return] = ACTIONS(3529), + [anon_sym_co_yield] = ACTIONS(3529), + [anon_sym_R_DQUOTE] = ACTIONS(3531), + [anon_sym_LR_DQUOTE] = ACTIONS(3531), + [anon_sym_uR_DQUOTE] = ACTIONS(3531), + [anon_sym_UR_DQUOTE] = ACTIONS(3531), + [anon_sym_u8R_DQUOTE] = ACTIONS(3531), + [anon_sym_co_await] = ACTIONS(3529), + [anon_sym_new] = ACTIONS(3529), + [anon_sym_requires] = ACTIONS(3529), + [sym_this] = ACTIONS(3529), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3531), + [sym_semgrep_named_ellipsis] = ACTIONS(3531), }, [405] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5615), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8205), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(8694), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3528), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [sym_identifier] = ACTIONS(3533), + [aux_sym_preproc_include_token1] = ACTIONS(3533), + [aux_sym_preproc_def_token1] = ACTIONS(3533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3535), + [aux_sym_preproc_if_token1] = ACTIONS(3533), + [aux_sym_preproc_if_token2] = ACTIONS(3533), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3533), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3533), + [aux_sym_preproc_else_token1] = ACTIONS(3533), + [aux_sym_preproc_elif_token1] = ACTIONS(3533), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3533), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3533), + [sym_preproc_directive] = ACTIONS(3533), + [anon_sym_LPAREN2] = ACTIONS(3535), + [anon_sym_BANG] = ACTIONS(3535), + [anon_sym_TILDE] = ACTIONS(3535), + [anon_sym_DASH] = ACTIONS(3533), + [anon_sym_PLUS] = ACTIONS(3533), + [anon_sym_STAR] = ACTIONS(3535), + [anon_sym_AMP_AMP] = ACTIONS(3535), + [anon_sym_AMP] = ACTIONS(3533), + [anon_sym_SEMI] = ACTIONS(3535), + [anon_sym___extension__] = ACTIONS(3533), + [anon_sym_typedef] = ACTIONS(3533), + [anon_sym_extern] = ACTIONS(3533), + [anon_sym___attribute__] = ACTIONS(3533), + [anon_sym_COLON_COLON] = ACTIONS(3535), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3535), + [anon_sym___declspec] = ACTIONS(3533), + [anon_sym___based] = ACTIONS(3533), + [anon_sym___cdecl] = ACTIONS(3533), + [anon_sym___clrcall] = ACTIONS(3533), + [anon_sym___stdcall] = ACTIONS(3533), + [anon_sym___fastcall] = ACTIONS(3533), + [anon_sym___thiscall] = ACTIONS(3533), + [anon_sym___vectorcall] = ACTIONS(3533), + [anon_sym_LBRACE] = ACTIONS(3535), + [anon_sym_signed] = ACTIONS(3533), + [anon_sym_unsigned] = ACTIONS(3533), + [anon_sym_long] = ACTIONS(3533), + [anon_sym_short] = ACTIONS(3533), + [anon_sym_LBRACK] = ACTIONS(3533), + [anon_sym_static] = ACTIONS(3533), + [anon_sym_register] = ACTIONS(3533), + [anon_sym_inline] = ACTIONS(3533), + [anon_sym___inline] = ACTIONS(3533), + [anon_sym___inline__] = ACTIONS(3533), + [anon_sym___forceinline] = ACTIONS(3533), + [anon_sym_thread_local] = ACTIONS(3533), + [anon_sym___thread] = ACTIONS(3533), + [anon_sym_const] = ACTIONS(3533), + [anon_sym_constexpr] = ACTIONS(3533), + [anon_sym_volatile] = ACTIONS(3533), + [anon_sym_restrict] = ACTIONS(3533), + [anon_sym___restrict__] = ACTIONS(3533), + [anon_sym__Atomic] = ACTIONS(3533), + [anon_sym__Noreturn] = ACTIONS(3533), + [anon_sym_noreturn] = ACTIONS(3533), + [anon_sym_mutable] = ACTIONS(3533), + [anon_sym_constinit] = ACTIONS(3533), + [anon_sym_consteval] = ACTIONS(3533), + [sym_primitive_type] = ACTIONS(3533), + [anon_sym_enum] = ACTIONS(3533), + [anon_sym_class] = ACTIONS(3533), + [anon_sym_struct] = ACTIONS(3533), + [anon_sym_union] = ACTIONS(3533), + [anon_sym_if] = ACTIONS(3533), + [anon_sym_switch] = ACTIONS(3533), + [anon_sym_case] = ACTIONS(3533), + [anon_sym_default] = ACTIONS(3533), + [anon_sym_while] = ACTIONS(3533), + [anon_sym_do] = ACTIONS(3533), + [anon_sym_for] = ACTIONS(3533), + [anon_sym_return] = ACTIONS(3533), + [anon_sym_break] = ACTIONS(3533), + [anon_sym_continue] = ACTIONS(3533), + [anon_sym_goto] = ACTIONS(3533), + [anon_sym___try] = ACTIONS(3533), + [anon_sym___leave] = ACTIONS(3533), + [anon_sym_not] = ACTIONS(3533), + [anon_sym_compl] = ACTIONS(3533), + [anon_sym_DASH_DASH] = ACTIONS(3535), + [anon_sym_PLUS_PLUS] = ACTIONS(3535), + [anon_sym_sizeof] = ACTIONS(3533), + [anon_sym___alignof__] = ACTIONS(3533), + [anon_sym___alignof] = ACTIONS(3533), + [anon_sym__alignof] = ACTIONS(3533), + [anon_sym_alignof] = ACTIONS(3533), + [anon_sym__Alignof] = ACTIONS(3533), + [anon_sym_offsetof] = ACTIONS(3533), + [anon_sym__Generic] = ACTIONS(3533), + [anon_sym_asm] = ACTIONS(3533), + [anon_sym___asm__] = ACTIONS(3533), + [sym_number_literal] = ACTIONS(3535), + [anon_sym_L_SQUOTE] = ACTIONS(3535), + [anon_sym_u_SQUOTE] = ACTIONS(3535), + [anon_sym_U_SQUOTE] = ACTIONS(3535), + [anon_sym_u8_SQUOTE] = ACTIONS(3535), + [anon_sym_SQUOTE] = ACTIONS(3535), + [anon_sym_L_DQUOTE] = ACTIONS(3535), + [anon_sym_u_DQUOTE] = ACTIONS(3535), + [anon_sym_U_DQUOTE] = ACTIONS(3535), + [anon_sym_u8_DQUOTE] = ACTIONS(3535), + [anon_sym_DQUOTE] = ACTIONS(3535), + [sym_true] = ACTIONS(3533), + [sym_false] = ACTIONS(3533), + [anon_sym_NULL] = ACTIONS(3533), + [anon_sym_nullptr] = ACTIONS(3533), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3533), + [anon_sym_decltype] = ACTIONS(3533), + [anon_sym_virtual] = ACTIONS(3533), + [anon_sym_alignas] = ACTIONS(3533), + [anon_sym_explicit] = ACTIONS(3533), + [anon_sym_typename] = ACTIONS(3533), + [anon_sym_template] = ACTIONS(3533), + [anon_sym_operator] = ACTIONS(3533), + [anon_sym_try] = ACTIONS(3533), + [anon_sym_delete] = ACTIONS(3533), + [anon_sym_throw] = ACTIONS(3533), + [anon_sym_namespace] = ACTIONS(3533), + [anon_sym_using] = ACTIONS(3533), + [anon_sym_static_assert] = ACTIONS(3533), + [anon_sym_concept] = ACTIONS(3533), + [anon_sym_co_return] = ACTIONS(3533), + [anon_sym_co_yield] = ACTIONS(3533), + [anon_sym_R_DQUOTE] = ACTIONS(3535), + [anon_sym_LR_DQUOTE] = ACTIONS(3535), + [anon_sym_uR_DQUOTE] = ACTIONS(3535), + [anon_sym_UR_DQUOTE] = ACTIONS(3535), + [anon_sym_u8R_DQUOTE] = ACTIONS(3535), + [anon_sym_co_await] = ACTIONS(3533), + [anon_sym_new] = ACTIONS(3533), + [anon_sym_requires] = ACTIONS(3533), + [sym_this] = ACTIONS(3533), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3535), + [sym_semgrep_named_ellipsis] = ACTIONS(3535), }, [406] = { - [sym_else_clause] = STATE(473), - [sym_identifier] = ACTIONS(3088), - [aux_sym_preproc_include_token1] = ACTIONS(3088), - [aux_sym_preproc_def_token1] = ACTIONS(3088), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3090), - [aux_sym_preproc_if_token1] = ACTIONS(3088), - [aux_sym_preproc_if_token2] = ACTIONS(3088), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3088), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3088), - [aux_sym_preproc_else_token1] = ACTIONS(3088), - [aux_sym_preproc_elif_token1] = ACTIONS(3088), - [sym_preproc_directive] = ACTIONS(3088), - [anon_sym_LPAREN2] = ACTIONS(3090), - [anon_sym_BANG] = ACTIONS(3090), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3088), - [anon_sym_PLUS] = ACTIONS(3088), - [anon_sym_STAR] = ACTIONS(3090), - [anon_sym_AMP_AMP] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3088), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym___extension__] = ACTIONS(3088), - [anon_sym_typedef] = ACTIONS(3088), - [anon_sym_extern] = ACTIONS(3088), - [anon_sym___attribute__] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3090), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3090), - [anon_sym___declspec] = ACTIONS(3088), - [anon_sym___based] = ACTIONS(3088), - [anon_sym___cdecl] = ACTIONS(3088), - [anon_sym___clrcall] = ACTIONS(3088), - [anon_sym___stdcall] = ACTIONS(3088), - [anon_sym___fastcall] = ACTIONS(3088), - [anon_sym___thiscall] = ACTIONS(3088), - [anon_sym___vectorcall] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_signed] = ACTIONS(3088), - [anon_sym_unsigned] = ACTIONS(3088), - [anon_sym_long] = ACTIONS(3088), - [anon_sym_short] = ACTIONS(3088), - [anon_sym_LBRACK] = ACTIONS(3088), - [anon_sym_static] = ACTIONS(3088), - [anon_sym_register] = ACTIONS(3088), - [anon_sym_inline] = ACTIONS(3088), - [anon_sym___inline] = ACTIONS(3088), - [anon_sym___inline__] = ACTIONS(3088), - [anon_sym___forceinline] = ACTIONS(3088), - [anon_sym_thread_local] = ACTIONS(3088), - [anon_sym___thread] = ACTIONS(3088), - [anon_sym_const] = ACTIONS(3088), - [anon_sym_constexpr] = ACTIONS(3088), - [anon_sym_volatile] = ACTIONS(3088), - [anon_sym_restrict] = ACTIONS(3088), - [anon_sym___restrict__] = ACTIONS(3088), - [anon_sym__Atomic] = ACTIONS(3088), - [anon_sym__Noreturn] = ACTIONS(3088), - [anon_sym_noreturn] = ACTIONS(3088), - [anon_sym_mutable] = ACTIONS(3088), - [anon_sym_constinit] = ACTIONS(3088), - [anon_sym_consteval] = ACTIONS(3088), - [sym_primitive_type] = ACTIONS(3088), - [anon_sym_enum] = ACTIONS(3088), - [anon_sym_class] = ACTIONS(3088), - [anon_sym_struct] = ACTIONS(3088), - [anon_sym_union] = ACTIONS(3088), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_else] = ACTIONS(3530), - [anon_sym_switch] = ACTIONS(3088), - [anon_sym_case] = ACTIONS(3088), - [anon_sym_default] = ACTIONS(3088), - [anon_sym_while] = ACTIONS(3088), - [anon_sym_do] = ACTIONS(3088), - [anon_sym_for] = ACTIONS(3088), - [anon_sym_return] = ACTIONS(3088), - [anon_sym_break] = ACTIONS(3088), - [anon_sym_continue] = ACTIONS(3088), - [anon_sym_goto] = ACTIONS(3088), - [anon_sym___try] = ACTIONS(3088), - [anon_sym___leave] = ACTIONS(3088), - [anon_sym_not] = ACTIONS(3088), - [anon_sym_compl] = ACTIONS(3088), - [anon_sym_DASH_DASH] = ACTIONS(3090), - [anon_sym_PLUS_PLUS] = ACTIONS(3090), - [anon_sym_sizeof] = ACTIONS(3088), - [anon_sym___alignof__] = ACTIONS(3088), - [anon_sym___alignof] = ACTIONS(3088), - [anon_sym__alignof] = ACTIONS(3088), - [anon_sym_alignof] = ACTIONS(3088), - [anon_sym__Alignof] = ACTIONS(3088), - [anon_sym_offsetof] = ACTIONS(3088), - [anon_sym__Generic] = ACTIONS(3088), - [anon_sym_asm] = ACTIONS(3088), - [anon_sym___asm__] = ACTIONS(3088), - [sym_number_literal] = ACTIONS(3090), - [anon_sym_L_SQUOTE] = ACTIONS(3090), - [anon_sym_u_SQUOTE] = ACTIONS(3090), - [anon_sym_U_SQUOTE] = ACTIONS(3090), - [anon_sym_u8_SQUOTE] = ACTIONS(3090), - [anon_sym_SQUOTE] = ACTIONS(3090), - [anon_sym_L_DQUOTE] = ACTIONS(3090), - [anon_sym_u_DQUOTE] = ACTIONS(3090), - [anon_sym_U_DQUOTE] = ACTIONS(3090), - [anon_sym_u8_DQUOTE] = ACTIONS(3090), - [anon_sym_DQUOTE] = ACTIONS(3090), - [sym_true] = ACTIONS(3088), - [sym_false] = ACTIONS(3088), - [anon_sym_NULL] = ACTIONS(3088), - [anon_sym_nullptr] = ACTIONS(3088), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3088), - [anon_sym_decltype] = ACTIONS(3088), - [anon_sym_virtual] = ACTIONS(3088), - [anon_sym_alignas] = ACTIONS(3088), - [anon_sym_explicit] = ACTIONS(3088), - [anon_sym_typename] = ACTIONS(3088), - [anon_sym_template] = ACTIONS(3088), - [anon_sym_operator] = ACTIONS(3088), - [anon_sym_try] = ACTIONS(3088), - [anon_sym_delete] = ACTIONS(3088), - [anon_sym_throw] = ACTIONS(3088), - [anon_sym_namespace] = ACTIONS(3088), - [anon_sym_using] = ACTIONS(3088), - [anon_sym_static_assert] = ACTIONS(3088), - [anon_sym_concept] = ACTIONS(3088), - [anon_sym_co_return] = ACTIONS(3088), - [anon_sym_co_yield] = ACTIONS(3088), - [anon_sym_R_DQUOTE] = ACTIONS(3090), - [anon_sym_LR_DQUOTE] = ACTIONS(3090), - [anon_sym_uR_DQUOTE] = ACTIONS(3090), - [anon_sym_UR_DQUOTE] = ACTIONS(3090), - [anon_sym_u8R_DQUOTE] = ACTIONS(3090), - [anon_sym_co_await] = ACTIONS(3088), - [anon_sym_new] = ACTIONS(3088), - [anon_sym_requires] = ACTIONS(3088), - [sym_this] = ACTIONS(3088), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3090), - [sym_semgrep_named_ellipsis] = ACTIONS(3090), + [sym_type_qualifier] = STATE(4685), + [sym_type_specifier] = STATE(5782), + [sym_sized_type_specifier] = STATE(3293), + [sym_enum_specifier] = STATE(3293), + [sym_struct_specifier] = STATE(3293), + [sym_union_specifier] = STATE(3293), + [sym_expression] = STATE(5106), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_type_descriptor] = STATE(7934), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_placeholder_type_specifier] = STATE(3293), + [sym_decltype_auto] = STATE(3292), + [sym_decltype] = STATE(2572), + [sym_class_specifier] = STATE(3293), + [sym_class_name] = STATE(8965), + [sym_dependent_type] = STATE(3293), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_type_parameter_pack_expansion] = STATE(8367), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6620), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(6338), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [aux_sym_type_definition_type_repeat1] = STATE(4685), + [aux_sym_sized_type_specifier_repeat1] = STATE(2573), + [sym_identifier] = ACTIONS(3310), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_signed] = ACTIONS(3324), + [anon_sym_unsigned] = ACTIONS(3324), + [anon_sym_long] = ACTIONS(3324), + [anon_sym_short] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3330), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_union] = ACTIONS(3334), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3358), + [anon_sym_decltype] = ACTIONS(3360), + [anon_sym_typename] = ACTIONS(3362), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_GT2] = ACTIONS(3537), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), }, [407] = { - [sym_catch_clause] = STATE(399), - [aux_sym_constructor_try_statement_repeat1] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(3059), - [sym_identifier] = ACTIONS(3057), - [aux_sym_preproc_include_token1] = ACTIONS(3057), - [aux_sym_preproc_def_token1] = ACTIONS(3057), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3059), - [aux_sym_preproc_if_token1] = ACTIONS(3057), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3057), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3057), - [sym_preproc_directive] = ACTIONS(3057), - [anon_sym_LPAREN2] = ACTIONS(3059), - [anon_sym_BANG] = ACTIONS(3059), - [anon_sym_TILDE] = ACTIONS(3059), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_AMP_AMP] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_SEMI] = ACTIONS(3059), - [anon_sym___extension__] = ACTIONS(3057), - [anon_sym_typedef] = ACTIONS(3057), - [anon_sym_extern] = ACTIONS(3057), - [anon_sym___attribute__] = ACTIONS(3057), - [anon_sym_COLON_COLON] = ACTIONS(3059), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3059), - [anon_sym___declspec] = ACTIONS(3057), - [anon_sym___based] = ACTIONS(3057), - [anon_sym___cdecl] = ACTIONS(3057), - [anon_sym___clrcall] = ACTIONS(3057), - [anon_sym___stdcall] = ACTIONS(3057), - [anon_sym___fastcall] = ACTIONS(3057), - [anon_sym___thiscall] = ACTIONS(3057), - [anon_sym___vectorcall] = ACTIONS(3057), - [anon_sym_LBRACE] = ACTIONS(3059), - [anon_sym_signed] = ACTIONS(3057), - [anon_sym_unsigned] = ACTIONS(3057), - [anon_sym_long] = ACTIONS(3057), - [anon_sym_short] = ACTIONS(3057), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_static] = ACTIONS(3057), - [anon_sym_register] = ACTIONS(3057), - [anon_sym_inline] = ACTIONS(3057), - [anon_sym___inline] = ACTIONS(3057), - [anon_sym___inline__] = ACTIONS(3057), - [anon_sym___forceinline] = ACTIONS(3057), - [anon_sym_thread_local] = ACTIONS(3057), - [anon_sym___thread] = ACTIONS(3057), - [anon_sym_const] = ACTIONS(3057), - [anon_sym_constexpr] = ACTIONS(3057), - [anon_sym_volatile] = ACTIONS(3057), - [anon_sym_restrict] = ACTIONS(3057), - [anon_sym___restrict__] = ACTIONS(3057), - [anon_sym__Atomic] = ACTIONS(3057), - [anon_sym__Noreturn] = ACTIONS(3057), - [anon_sym_noreturn] = ACTIONS(3057), - [anon_sym_mutable] = ACTIONS(3057), - [anon_sym_constinit] = ACTIONS(3057), - [anon_sym_consteval] = ACTIONS(3057), - [sym_primitive_type] = ACTIONS(3057), - [anon_sym_enum] = ACTIONS(3057), - [anon_sym_class] = ACTIONS(3057), - [anon_sym_struct] = ACTIONS(3057), - [anon_sym_union] = ACTIONS(3057), - [anon_sym_if] = ACTIONS(3057), - [anon_sym_else] = ACTIONS(3057), - [anon_sym_switch] = ACTIONS(3057), - [anon_sym_case] = ACTIONS(3057), - [anon_sym_default] = ACTIONS(3057), - [anon_sym_while] = ACTIONS(3057), - [anon_sym_do] = ACTIONS(3057), - [anon_sym_for] = ACTIONS(3057), - [anon_sym_return] = ACTIONS(3057), - [anon_sym_break] = ACTIONS(3057), - [anon_sym_continue] = ACTIONS(3057), - [anon_sym_goto] = ACTIONS(3057), - [anon_sym___try] = ACTIONS(3057), - [anon_sym___leave] = ACTIONS(3057), - [anon_sym_not] = ACTIONS(3057), - [anon_sym_compl] = ACTIONS(3057), - [anon_sym_DASH_DASH] = ACTIONS(3059), - [anon_sym_PLUS_PLUS] = ACTIONS(3059), - [anon_sym_sizeof] = ACTIONS(3057), - [anon_sym___alignof__] = ACTIONS(3057), - [anon_sym___alignof] = ACTIONS(3057), - [anon_sym__alignof] = ACTIONS(3057), - [anon_sym_alignof] = ACTIONS(3057), - [anon_sym__Alignof] = ACTIONS(3057), - [anon_sym_offsetof] = ACTIONS(3057), - [anon_sym__Generic] = ACTIONS(3057), - [anon_sym_asm] = ACTIONS(3057), - [anon_sym___asm__] = ACTIONS(3057), - [sym_number_literal] = ACTIONS(3059), - [anon_sym_L_SQUOTE] = ACTIONS(3059), - [anon_sym_u_SQUOTE] = ACTIONS(3059), - [anon_sym_U_SQUOTE] = ACTIONS(3059), - [anon_sym_u8_SQUOTE] = ACTIONS(3059), - [anon_sym_SQUOTE] = ACTIONS(3059), - [anon_sym_L_DQUOTE] = ACTIONS(3059), - [anon_sym_u_DQUOTE] = ACTIONS(3059), - [anon_sym_U_DQUOTE] = ACTIONS(3059), - [anon_sym_u8_DQUOTE] = ACTIONS(3059), - [anon_sym_DQUOTE] = ACTIONS(3059), - [sym_true] = ACTIONS(3057), - [sym_false] = ACTIONS(3057), - [anon_sym_NULL] = ACTIONS(3057), - [anon_sym_nullptr] = ACTIONS(3057), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3057), - [anon_sym_decltype] = ACTIONS(3057), - [anon_sym_virtual] = ACTIONS(3057), - [anon_sym_alignas] = ACTIONS(3057), - [anon_sym_explicit] = ACTIONS(3057), - [anon_sym_typename] = ACTIONS(3057), - [anon_sym_template] = ACTIONS(3057), - [anon_sym_operator] = ACTIONS(3057), - [anon_sym_try] = ACTIONS(3057), - [anon_sym_delete] = ACTIONS(3057), - [anon_sym_throw] = ACTIONS(3057), - [anon_sym_namespace] = ACTIONS(3057), - [anon_sym_using] = ACTIONS(3057), - [anon_sym_static_assert] = ACTIONS(3057), - [anon_sym_concept] = ACTIONS(3057), - [anon_sym_co_return] = ACTIONS(3057), - [anon_sym_co_yield] = ACTIONS(3057), - [anon_sym_catch] = ACTIONS(3532), - [anon_sym_R_DQUOTE] = ACTIONS(3059), - [anon_sym_LR_DQUOTE] = ACTIONS(3059), - [anon_sym_uR_DQUOTE] = ACTIONS(3059), - [anon_sym_UR_DQUOTE] = ACTIONS(3059), - [anon_sym_u8R_DQUOTE] = ACTIONS(3059), - [anon_sym_co_await] = ACTIONS(3057), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(3057), - [sym_this] = ACTIONS(3057), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3059), - [sym_semgrep_named_ellipsis] = ACTIONS(3059), + [sym_type_qualifier] = STATE(4685), + [sym_type_specifier] = STATE(5782), + [sym_sized_type_specifier] = STATE(3293), + [sym_enum_specifier] = STATE(3293), + [sym_struct_specifier] = STATE(3293), + [sym_union_specifier] = STATE(3293), + [sym_expression] = STATE(5022), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_type_descriptor] = STATE(8029), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_placeholder_type_specifier] = STATE(3293), + [sym_decltype_auto] = STATE(3292), + [sym_decltype] = STATE(2572), + [sym_class_specifier] = STATE(3293), + [sym_class_name] = STATE(8965), + [sym_dependent_type] = STATE(3293), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_type_parameter_pack_expansion] = STATE(8290), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6620), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(6338), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [aux_sym_type_definition_type_repeat1] = STATE(4685), + [aux_sym_sized_type_specifier_repeat1] = STATE(2573), + [sym_identifier] = ACTIONS(3310), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_signed] = ACTIONS(3324), + [anon_sym_unsigned] = ACTIONS(3324), + [anon_sym_long] = ACTIONS(3324), + [anon_sym_short] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3330), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_union] = ACTIONS(3334), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3358), + [anon_sym_decltype] = ACTIONS(3360), + [anon_sym_typename] = ACTIONS(3362), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_GT2] = ACTIONS(3539), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), }, [408] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5626), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8235), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(8874), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3534), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [sym_identifier] = ACTIONS(3541), + [aux_sym_preproc_include_token1] = ACTIONS(3541), + [aux_sym_preproc_def_token1] = ACTIONS(3541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3543), + [aux_sym_preproc_if_token1] = ACTIONS(3541), + [aux_sym_preproc_if_token2] = ACTIONS(3541), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3541), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3541), + [aux_sym_preproc_else_token1] = ACTIONS(3541), + [aux_sym_preproc_elif_token1] = ACTIONS(3541), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3541), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3541), + [sym_preproc_directive] = ACTIONS(3541), + [anon_sym_LPAREN2] = ACTIONS(3543), + [anon_sym_BANG] = ACTIONS(3543), + [anon_sym_TILDE] = ACTIONS(3543), + [anon_sym_DASH] = ACTIONS(3541), + [anon_sym_PLUS] = ACTIONS(3541), + [anon_sym_STAR] = ACTIONS(3543), + [anon_sym_AMP_AMP] = ACTIONS(3543), + [anon_sym_AMP] = ACTIONS(3541), + [anon_sym_SEMI] = ACTIONS(3543), + [anon_sym___extension__] = ACTIONS(3541), + [anon_sym_typedef] = ACTIONS(3541), + [anon_sym_extern] = ACTIONS(3541), + [anon_sym___attribute__] = ACTIONS(3541), + [anon_sym_COLON_COLON] = ACTIONS(3543), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3543), + [anon_sym___declspec] = ACTIONS(3541), + [anon_sym___based] = ACTIONS(3541), + [anon_sym___cdecl] = ACTIONS(3541), + [anon_sym___clrcall] = ACTIONS(3541), + [anon_sym___stdcall] = ACTIONS(3541), + [anon_sym___fastcall] = ACTIONS(3541), + [anon_sym___thiscall] = ACTIONS(3541), + [anon_sym___vectorcall] = ACTIONS(3541), + [anon_sym_LBRACE] = ACTIONS(3543), + [anon_sym_signed] = ACTIONS(3541), + [anon_sym_unsigned] = ACTIONS(3541), + [anon_sym_long] = ACTIONS(3541), + [anon_sym_short] = ACTIONS(3541), + [anon_sym_LBRACK] = ACTIONS(3541), + [anon_sym_static] = ACTIONS(3541), + [anon_sym_register] = ACTIONS(3541), + [anon_sym_inline] = ACTIONS(3541), + [anon_sym___inline] = ACTIONS(3541), + [anon_sym___inline__] = ACTIONS(3541), + [anon_sym___forceinline] = ACTIONS(3541), + [anon_sym_thread_local] = ACTIONS(3541), + [anon_sym___thread] = ACTIONS(3541), + [anon_sym_const] = ACTIONS(3541), + [anon_sym_constexpr] = ACTIONS(3541), + [anon_sym_volatile] = ACTIONS(3541), + [anon_sym_restrict] = ACTIONS(3541), + [anon_sym___restrict__] = ACTIONS(3541), + [anon_sym__Atomic] = ACTIONS(3541), + [anon_sym__Noreturn] = ACTIONS(3541), + [anon_sym_noreturn] = ACTIONS(3541), + [anon_sym_mutable] = ACTIONS(3541), + [anon_sym_constinit] = ACTIONS(3541), + [anon_sym_consteval] = ACTIONS(3541), + [sym_primitive_type] = ACTIONS(3541), + [anon_sym_enum] = ACTIONS(3541), + [anon_sym_class] = ACTIONS(3541), + [anon_sym_struct] = ACTIONS(3541), + [anon_sym_union] = ACTIONS(3541), + [anon_sym_if] = ACTIONS(3541), + [anon_sym_switch] = ACTIONS(3541), + [anon_sym_case] = ACTIONS(3541), + [anon_sym_default] = ACTIONS(3541), + [anon_sym_while] = ACTIONS(3541), + [anon_sym_do] = ACTIONS(3541), + [anon_sym_for] = ACTIONS(3541), + [anon_sym_return] = ACTIONS(3541), + [anon_sym_break] = ACTIONS(3541), + [anon_sym_continue] = ACTIONS(3541), + [anon_sym_goto] = ACTIONS(3541), + [anon_sym___try] = ACTIONS(3541), + [anon_sym___leave] = ACTIONS(3541), + [anon_sym_not] = ACTIONS(3541), + [anon_sym_compl] = ACTIONS(3541), + [anon_sym_DASH_DASH] = ACTIONS(3543), + [anon_sym_PLUS_PLUS] = ACTIONS(3543), + [anon_sym_sizeof] = ACTIONS(3541), + [anon_sym___alignof__] = ACTIONS(3541), + [anon_sym___alignof] = ACTIONS(3541), + [anon_sym__alignof] = ACTIONS(3541), + [anon_sym_alignof] = ACTIONS(3541), + [anon_sym__Alignof] = ACTIONS(3541), + [anon_sym_offsetof] = ACTIONS(3541), + [anon_sym__Generic] = ACTIONS(3541), + [anon_sym_asm] = ACTIONS(3541), + [anon_sym___asm__] = ACTIONS(3541), + [sym_number_literal] = ACTIONS(3543), + [anon_sym_L_SQUOTE] = ACTIONS(3543), + [anon_sym_u_SQUOTE] = ACTIONS(3543), + [anon_sym_U_SQUOTE] = ACTIONS(3543), + [anon_sym_u8_SQUOTE] = ACTIONS(3543), + [anon_sym_SQUOTE] = ACTIONS(3543), + [anon_sym_L_DQUOTE] = ACTIONS(3543), + [anon_sym_u_DQUOTE] = ACTIONS(3543), + [anon_sym_U_DQUOTE] = ACTIONS(3543), + [anon_sym_u8_DQUOTE] = ACTIONS(3543), + [anon_sym_DQUOTE] = ACTIONS(3543), + [sym_true] = ACTIONS(3541), + [sym_false] = ACTIONS(3541), + [anon_sym_NULL] = ACTIONS(3541), + [anon_sym_nullptr] = ACTIONS(3541), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3541), + [anon_sym_decltype] = ACTIONS(3541), + [anon_sym_virtual] = ACTIONS(3541), + [anon_sym_alignas] = ACTIONS(3541), + [anon_sym_explicit] = ACTIONS(3541), + [anon_sym_typename] = ACTIONS(3541), + [anon_sym_template] = ACTIONS(3541), + [anon_sym_operator] = ACTIONS(3541), + [anon_sym_try] = ACTIONS(3541), + [anon_sym_delete] = ACTIONS(3541), + [anon_sym_throw] = ACTIONS(3541), + [anon_sym_namespace] = ACTIONS(3541), + [anon_sym_using] = ACTIONS(3541), + [anon_sym_static_assert] = ACTIONS(3541), + [anon_sym_concept] = ACTIONS(3541), + [anon_sym_co_return] = ACTIONS(3541), + [anon_sym_co_yield] = ACTIONS(3541), + [anon_sym_R_DQUOTE] = ACTIONS(3543), + [anon_sym_LR_DQUOTE] = ACTIONS(3543), + [anon_sym_uR_DQUOTE] = ACTIONS(3543), + [anon_sym_UR_DQUOTE] = ACTIONS(3543), + [anon_sym_u8R_DQUOTE] = ACTIONS(3543), + [anon_sym_co_await] = ACTIONS(3541), + [anon_sym_new] = ACTIONS(3541), + [anon_sym_requires] = ACTIONS(3541), + [sym_this] = ACTIONS(3541), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3543), + [sym_semgrep_named_ellipsis] = ACTIONS(3543), }, [409] = { - [sym_catch_clause] = STATE(374), - [aux_sym_constructor_try_statement_repeat1] = STATE(374), - [sym_identifier] = ACTIONS(3057), - [aux_sym_preproc_include_token1] = ACTIONS(3057), - [aux_sym_preproc_def_token1] = ACTIONS(3057), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3059), - [aux_sym_preproc_if_token1] = ACTIONS(3057), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3057), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3057), - [sym_preproc_directive] = ACTIONS(3057), - [anon_sym_LPAREN2] = ACTIONS(3059), - [anon_sym_BANG] = ACTIONS(3059), - [anon_sym_TILDE] = ACTIONS(3059), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_AMP_AMP] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_SEMI] = ACTIONS(3059), - [anon_sym___extension__] = ACTIONS(3057), - [anon_sym_typedef] = ACTIONS(3057), - [anon_sym_extern] = ACTIONS(3057), - [anon_sym___attribute__] = ACTIONS(3057), - [anon_sym_COLON_COLON] = ACTIONS(3059), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3059), - [anon_sym___declspec] = ACTIONS(3057), - [anon_sym___based] = ACTIONS(3057), - [anon_sym___cdecl] = ACTIONS(3057), - [anon_sym___clrcall] = ACTIONS(3057), - [anon_sym___stdcall] = ACTIONS(3057), - [anon_sym___fastcall] = ACTIONS(3057), - [anon_sym___thiscall] = ACTIONS(3057), - [anon_sym___vectorcall] = ACTIONS(3057), - [anon_sym_LBRACE] = ACTIONS(3059), - [anon_sym_RBRACE] = ACTIONS(3059), - [anon_sym_signed] = ACTIONS(3057), - [anon_sym_unsigned] = ACTIONS(3057), - [anon_sym_long] = ACTIONS(3057), - [anon_sym_short] = ACTIONS(3057), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_static] = ACTIONS(3057), - [anon_sym_register] = ACTIONS(3057), - [anon_sym_inline] = ACTIONS(3057), - [anon_sym___inline] = ACTIONS(3057), - [anon_sym___inline__] = ACTIONS(3057), - [anon_sym___forceinline] = ACTIONS(3057), - [anon_sym_thread_local] = ACTIONS(3057), - [anon_sym___thread] = ACTIONS(3057), - [anon_sym_const] = ACTIONS(3057), - [anon_sym_constexpr] = ACTIONS(3057), - [anon_sym_volatile] = ACTIONS(3057), - [anon_sym_restrict] = ACTIONS(3057), - [anon_sym___restrict__] = ACTIONS(3057), - [anon_sym__Atomic] = ACTIONS(3057), - [anon_sym__Noreturn] = ACTIONS(3057), - [anon_sym_noreturn] = ACTIONS(3057), - [anon_sym_mutable] = ACTIONS(3057), - [anon_sym_constinit] = ACTIONS(3057), - [anon_sym_consteval] = ACTIONS(3057), - [sym_primitive_type] = ACTIONS(3057), - [anon_sym_enum] = ACTIONS(3057), - [anon_sym_class] = ACTIONS(3057), - [anon_sym_struct] = ACTIONS(3057), - [anon_sym_union] = ACTIONS(3057), - [anon_sym_if] = ACTIONS(3057), - [anon_sym_else] = ACTIONS(3057), - [anon_sym_switch] = ACTIONS(3057), - [anon_sym_case] = ACTIONS(3057), - [anon_sym_default] = ACTIONS(3057), - [anon_sym_while] = ACTIONS(3057), - [anon_sym_do] = ACTIONS(3057), - [anon_sym_for] = ACTIONS(3057), - [anon_sym_return] = ACTIONS(3057), - [anon_sym_break] = ACTIONS(3057), - [anon_sym_continue] = ACTIONS(3057), - [anon_sym_goto] = ACTIONS(3057), - [anon_sym___try] = ACTIONS(3057), - [anon_sym___leave] = ACTIONS(3057), - [anon_sym_not] = ACTIONS(3057), - [anon_sym_compl] = ACTIONS(3057), - [anon_sym_DASH_DASH] = ACTIONS(3059), - [anon_sym_PLUS_PLUS] = ACTIONS(3059), - [anon_sym_sizeof] = ACTIONS(3057), - [anon_sym___alignof__] = ACTIONS(3057), - [anon_sym___alignof] = ACTIONS(3057), - [anon_sym__alignof] = ACTIONS(3057), - [anon_sym_alignof] = ACTIONS(3057), - [anon_sym__Alignof] = ACTIONS(3057), - [anon_sym_offsetof] = ACTIONS(3057), - [anon_sym__Generic] = ACTIONS(3057), - [anon_sym_asm] = ACTIONS(3057), - [anon_sym___asm__] = ACTIONS(3057), - [sym_number_literal] = ACTIONS(3059), - [anon_sym_L_SQUOTE] = ACTIONS(3059), - [anon_sym_u_SQUOTE] = ACTIONS(3059), - [anon_sym_U_SQUOTE] = ACTIONS(3059), - [anon_sym_u8_SQUOTE] = ACTIONS(3059), - [anon_sym_SQUOTE] = ACTIONS(3059), - [anon_sym_L_DQUOTE] = ACTIONS(3059), - [anon_sym_u_DQUOTE] = ACTIONS(3059), - [anon_sym_U_DQUOTE] = ACTIONS(3059), - [anon_sym_u8_DQUOTE] = ACTIONS(3059), - [anon_sym_DQUOTE] = ACTIONS(3059), - [sym_true] = ACTIONS(3057), - [sym_false] = ACTIONS(3057), - [anon_sym_NULL] = ACTIONS(3057), - [anon_sym_nullptr] = ACTIONS(3057), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3057), - [anon_sym_decltype] = ACTIONS(3057), - [anon_sym_virtual] = ACTIONS(3057), - [anon_sym_alignas] = ACTIONS(3057), - [anon_sym_explicit] = ACTIONS(3057), - [anon_sym_typename] = ACTIONS(3057), - [anon_sym_template] = ACTIONS(3057), - [anon_sym_operator] = ACTIONS(3057), - [anon_sym_try] = ACTIONS(3057), - [anon_sym_delete] = ACTIONS(3057), - [anon_sym_throw] = ACTIONS(3057), - [anon_sym_namespace] = ACTIONS(3057), - [anon_sym_using] = ACTIONS(3057), - [anon_sym_static_assert] = ACTIONS(3057), - [anon_sym_concept] = ACTIONS(3057), - [anon_sym_co_return] = ACTIONS(3057), - [anon_sym_co_yield] = ACTIONS(3057), - [anon_sym_catch] = ACTIONS(3536), - [anon_sym_R_DQUOTE] = ACTIONS(3059), - [anon_sym_LR_DQUOTE] = ACTIONS(3059), - [anon_sym_uR_DQUOTE] = ACTIONS(3059), - [anon_sym_UR_DQUOTE] = ACTIONS(3059), - [anon_sym_u8R_DQUOTE] = ACTIONS(3059), - [anon_sym_co_await] = ACTIONS(3057), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(3057), - [sym_this] = ACTIONS(3057), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3059), - [sym_semgrep_named_ellipsis] = ACTIONS(3059), + [sym_identifier] = ACTIONS(3545), + [aux_sym_preproc_include_token1] = ACTIONS(3545), + [aux_sym_preproc_def_token1] = ACTIONS(3545), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3547), + [aux_sym_preproc_if_token1] = ACTIONS(3545), + [aux_sym_preproc_if_token2] = ACTIONS(3545), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3545), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3545), + [aux_sym_preproc_else_token1] = ACTIONS(3545), + [aux_sym_preproc_elif_token1] = ACTIONS(3545), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3545), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3545), + [sym_preproc_directive] = ACTIONS(3545), + [anon_sym_LPAREN2] = ACTIONS(3547), + [anon_sym_BANG] = ACTIONS(3547), + [anon_sym_TILDE] = ACTIONS(3547), + [anon_sym_DASH] = ACTIONS(3545), + [anon_sym_PLUS] = ACTIONS(3545), + [anon_sym_STAR] = ACTIONS(3547), + [anon_sym_AMP_AMP] = ACTIONS(3547), + [anon_sym_AMP] = ACTIONS(3545), + [anon_sym_SEMI] = ACTIONS(3547), + [anon_sym___extension__] = ACTIONS(3545), + [anon_sym_typedef] = ACTIONS(3545), + [anon_sym_extern] = ACTIONS(3545), + [anon_sym___attribute__] = ACTIONS(3545), + [anon_sym_COLON_COLON] = ACTIONS(3547), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3547), + [anon_sym___declspec] = ACTIONS(3545), + [anon_sym___based] = ACTIONS(3545), + [anon_sym___cdecl] = ACTIONS(3545), + [anon_sym___clrcall] = ACTIONS(3545), + [anon_sym___stdcall] = ACTIONS(3545), + [anon_sym___fastcall] = ACTIONS(3545), + [anon_sym___thiscall] = ACTIONS(3545), + [anon_sym___vectorcall] = ACTIONS(3545), + [anon_sym_LBRACE] = ACTIONS(3547), + [anon_sym_signed] = ACTIONS(3545), + [anon_sym_unsigned] = ACTIONS(3545), + [anon_sym_long] = ACTIONS(3545), + [anon_sym_short] = ACTIONS(3545), + [anon_sym_LBRACK] = ACTIONS(3545), + [anon_sym_static] = ACTIONS(3545), + [anon_sym_register] = ACTIONS(3545), + [anon_sym_inline] = ACTIONS(3545), + [anon_sym___inline] = ACTIONS(3545), + [anon_sym___inline__] = ACTIONS(3545), + [anon_sym___forceinline] = ACTIONS(3545), + [anon_sym_thread_local] = ACTIONS(3545), + [anon_sym___thread] = ACTIONS(3545), + [anon_sym_const] = ACTIONS(3545), + [anon_sym_constexpr] = ACTIONS(3545), + [anon_sym_volatile] = ACTIONS(3545), + [anon_sym_restrict] = ACTIONS(3545), + [anon_sym___restrict__] = ACTIONS(3545), + [anon_sym__Atomic] = ACTIONS(3545), + [anon_sym__Noreturn] = ACTIONS(3545), + [anon_sym_noreturn] = ACTIONS(3545), + [anon_sym_mutable] = ACTIONS(3545), + [anon_sym_constinit] = ACTIONS(3545), + [anon_sym_consteval] = ACTIONS(3545), + [sym_primitive_type] = ACTIONS(3545), + [anon_sym_enum] = ACTIONS(3545), + [anon_sym_class] = ACTIONS(3545), + [anon_sym_struct] = ACTIONS(3545), + [anon_sym_union] = ACTIONS(3545), + [anon_sym_if] = ACTIONS(3545), + [anon_sym_switch] = ACTIONS(3545), + [anon_sym_case] = ACTIONS(3545), + [anon_sym_default] = ACTIONS(3545), + [anon_sym_while] = ACTIONS(3545), + [anon_sym_do] = ACTIONS(3545), + [anon_sym_for] = ACTIONS(3545), + [anon_sym_return] = ACTIONS(3545), + [anon_sym_break] = ACTIONS(3545), + [anon_sym_continue] = ACTIONS(3545), + [anon_sym_goto] = ACTIONS(3545), + [anon_sym___try] = ACTIONS(3545), + [anon_sym___leave] = ACTIONS(3545), + [anon_sym_not] = ACTIONS(3545), + [anon_sym_compl] = ACTIONS(3545), + [anon_sym_DASH_DASH] = ACTIONS(3547), + [anon_sym_PLUS_PLUS] = ACTIONS(3547), + [anon_sym_sizeof] = ACTIONS(3545), + [anon_sym___alignof__] = ACTIONS(3545), + [anon_sym___alignof] = ACTIONS(3545), + [anon_sym__alignof] = ACTIONS(3545), + [anon_sym_alignof] = ACTIONS(3545), + [anon_sym__Alignof] = ACTIONS(3545), + [anon_sym_offsetof] = ACTIONS(3545), + [anon_sym__Generic] = ACTIONS(3545), + [anon_sym_asm] = ACTIONS(3545), + [anon_sym___asm__] = ACTIONS(3545), + [sym_number_literal] = ACTIONS(3547), + [anon_sym_L_SQUOTE] = ACTIONS(3547), + [anon_sym_u_SQUOTE] = ACTIONS(3547), + [anon_sym_U_SQUOTE] = ACTIONS(3547), + [anon_sym_u8_SQUOTE] = ACTIONS(3547), + [anon_sym_SQUOTE] = ACTIONS(3547), + [anon_sym_L_DQUOTE] = ACTIONS(3547), + [anon_sym_u_DQUOTE] = ACTIONS(3547), + [anon_sym_U_DQUOTE] = ACTIONS(3547), + [anon_sym_u8_DQUOTE] = ACTIONS(3547), + [anon_sym_DQUOTE] = ACTIONS(3547), + [sym_true] = ACTIONS(3545), + [sym_false] = ACTIONS(3545), + [anon_sym_NULL] = ACTIONS(3545), + [anon_sym_nullptr] = ACTIONS(3545), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3545), + [anon_sym_decltype] = ACTIONS(3545), + [anon_sym_virtual] = ACTIONS(3545), + [anon_sym_alignas] = ACTIONS(3545), + [anon_sym_explicit] = ACTIONS(3545), + [anon_sym_typename] = ACTIONS(3545), + [anon_sym_template] = ACTIONS(3545), + [anon_sym_operator] = ACTIONS(3545), + [anon_sym_try] = ACTIONS(3545), + [anon_sym_delete] = ACTIONS(3545), + [anon_sym_throw] = ACTIONS(3545), + [anon_sym_namespace] = ACTIONS(3545), + [anon_sym_using] = ACTIONS(3545), + [anon_sym_static_assert] = ACTIONS(3545), + [anon_sym_concept] = ACTIONS(3545), + [anon_sym_co_return] = ACTIONS(3545), + [anon_sym_co_yield] = ACTIONS(3545), + [anon_sym_R_DQUOTE] = ACTIONS(3547), + [anon_sym_LR_DQUOTE] = ACTIONS(3547), + [anon_sym_uR_DQUOTE] = ACTIONS(3547), + [anon_sym_UR_DQUOTE] = ACTIONS(3547), + [anon_sym_u8R_DQUOTE] = ACTIONS(3547), + [anon_sym_co_await] = ACTIONS(3545), + [anon_sym_new] = ACTIONS(3545), + [anon_sym_requires] = ACTIONS(3545), + [sym_this] = ACTIONS(3545), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3547), + [sym_semgrep_named_ellipsis] = ACTIONS(3547), }, [410] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5634), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8259), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(8594), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3538), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [sym_type_qualifier] = STATE(4685), + [sym_type_specifier] = STATE(5782), + [sym_sized_type_specifier] = STATE(3293), + [sym_enum_specifier] = STATE(3293), + [sym_struct_specifier] = STATE(3293), + [sym_union_specifier] = STATE(3293), + [sym_expression] = STATE(5108), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_type_descriptor] = STATE(7942), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_placeholder_type_specifier] = STATE(3293), + [sym_decltype_auto] = STATE(3292), + [sym_decltype] = STATE(2572), + [sym_class_specifier] = STATE(3293), + [sym_class_name] = STATE(8965), + [sym_dependent_type] = STATE(3293), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_type_parameter_pack_expansion] = STATE(8426), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6620), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(6338), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [aux_sym_type_definition_type_repeat1] = STATE(4685), + [aux_sym_sized_type_specifier_repeat1] = STATE(2573), + [sym_identifier] = ACTIONS(3310), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_signed] = ACTIONS(3324), + [anon_sym_unsigned] = ACTIONS(3324), + [anon_sym_long] = ACTIONS(3324), + [anon_sym_short] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3330), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_union] = ACTIONS(3334), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3358), + [anon_sym_decltype] = ACTIONS(3360), + [anon_sym_typename] = ACTIONS(3362), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_GT2] = ACTIONS(3549), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), }, [411] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5641), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8282), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(8782), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3540), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [sym_identifier] = ACTIONS(3551), + [aux_sym_preproc_include_token1] = ACTIONS(3551), + [aux_sym_preproc_def_token1] = ACTIONS(3551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3553), + [aux_sym_preproc_if_token1] = ACTIONS(3551), + [aux_sym_preproc_if_token2] = ACTIONS(3551), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3551), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3551), + [aux_sym_preproc_else_token1] = ACTIONS(3551), + [aux_sym_preproc_elif_token1] = ACTIONS(3551), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3551), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3551), + [sym_preproc_directive] = ACTIONS(3551), + [anon_sym_LPAREN2] = ACTIONS(3553), + [anon_sym_BANG] = ACTIONS(3553), + [anon_sym_TILDE] = ACTIONS(3553), + [anon_sym_DASH] = ACTIONS(3551), + [anon_sym_PLUS] = ACTIONS(3551), + [anon_sym_STAR] = ACTIONS(3553), + [anon_sym_AMP_AMP] = ACTIONS(3553), + [anon_sym_AMP] = ACTIONS(3551), + [anon_sym_SEMI] = ACTIONS(3553), + [anon_sym___extension__] = ACTIONS(3551), + [anon_sym_typedef] = ACTIONS(3551), + [anon_sym_extern] = ACTIONS(3551), + [anon_sym___attribute__] = ACTIONS(3551), + [anon_sym_COLON_COLON] = ACTIONS(3553), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3553), + [anon_sym___declspec] = ACTIONS(3551), + [anon_sym___based] = ACTIONS(3551), + [anon_sym___cdecl] = ACTIONS(3551), + [anon_sym___clrcall] = ACTIONS(3551), + [anon_sym___stdcall] = ACTIONS(3551), + [anon_sym___fastcall] = ACTIONS(3551), + [anon_sym___thiscall] = ACTIONS(3551), + [anon_sym___vectorcall] = ACTIONS(3551), + [anon_sym_LBRACE] = ACTIONS(3553), + [anon_sym_signed] = ACTIONS(3551), + [anon_sym_unsigned] = ACTIONS(3551), + [anon_sym_long] = ACTIONS(3551), + [anon_sym_short] = ACTIONS(3551), + [anon_sym_LBRACK] = ACTIONS(3551), + [anon_sym_static] = ACTIONS(3551), + [anon_sym_register] = ACTIONS(3551), + [anon_sym_inline] = ACTIONS(3551), + [anon_sym___inline] = ACTIONS(3551), + [anon_sym___inline__] = ACTIONS(3551), + [anon_sym___forceinline] = ACTIONS(3551), + [anon_sym_thread_local] = ACTIONS(3551), + [anon_sym___thread] = ACTIONS(3551), + [anon_sym_const] = ACTIONS(3551), + [anon_sym_constexpr] = ACTIONS(3551), + [anon_sym_volatile] = ACTIONS(3551), + [anon_sym_restrict] = ACTIONS(3551), + [anon_sym___restrict__] = ACTIONS(3551), + [anon_sym__Atomic] = ACTIONS(3551), + [anon_sym__Noreturn] = ACTIONS(3551), + [anon_sym_noreturn] = ACTIONS(3551), + [anon_sym_mutable] = ACTIONS(3551), + [anon_sym_constinit] = ACTIONS(3551), + [anon_sym_consteval] = ACTIONS(3551), + [sym_primitive_type] = ACTIONS(3551), + [anon_sym_enum] = ACTIONS(3551), + [anon_sym_class] = ACTIONS(3551), + [anon_sym_struct] = ACTIONS(3551), + [anon_sym_union] = ACTIONS(3551), + [anon_sym_if] = ACTIONS(3551), + [anon_sym_switch] = ACTIONS(3551), + [anon_sym_case] = ACTIONS(3551), + [anon_sym_default] = ACTIONS(3551), + [anon_sym_while] = ACTIONS(3551), + [anon_sym_do] = ACTIONS(3551), + [anon_sym_for] = ACTIONS(3551), + [anon_sym_return] = ACTIONS(3551), + [anon_sym_break] = ACTIONS(3551), + [anon_sym_continue] = ACTIONS(3551), + [anon_sym_goto] = ACTIONS(3551), + [anon_sym___try] = ACTIONS(3551), + [anon_sym___leave] = ACTIONS(3551), + [anon_sym_not] = ACTIONS(3551), + [anon_sym_compl] = ACTIONS(3551), + [anon_sym_DASH_DASH] = ACTIONS(3553), + [anon_sym_PLUS_PLUS] = ACTIONS(3553), + [anon_sym_sizeof] = ACTIONS(3551), + [anon_sym___alignof__] = ACTIONS(3551), + [anon_sym___alignof] = ACTIONS(3551), + [anon_sym__alignof] = ACTIONS(3551), + [anon_sym_alignof] = ACTIONS(3551), + [anon_sym__Alignof] = ACTIONS(3551), + [anon_sym_offsetof] = ACTIONS(3551), + [anon_sym__Generic] = ACTIONS(3551), + [anon_sym_asm] = ACTIONS(3551), + [anon_sym___asm__] = ACTIONS(3551), + [sym_number_literal] = ACTIONS(3553), + [anon_sym_L_SQUOTE] = ACTIONS(3553), + [anon_sym_u_SQUOTE] = ACTIONS(3553), + [anon_sym_U_SQUOTE] = ACTIONS(3553), + [anon_sym_u8_SQUOTE] = ACTIONS(3553), + [anon_sym_SQUOTE] = ACTIONS(3553), + [anon_sym_L_DQUOTE] = ACTIONS(3553), + [anon_sym_u_DQUOTE] = ACTIONS(3553), + [anon_sym_U_DQUOTE] = ACTIONS(3553), + [anon_sym_u8_DQUOTE] = ACTIONS(3553), + [anon_sym_DQUOTE] = ACTIONS(3553), + [sym_true] = ACTIONS(3551), + [sym_false] = ACTIONS(3551), + [anon_sym_NULL] = ACTIONS(3551), + [anon_sym_nullptr] = ACTIONS(3551), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3551), + [anon_sym_decltype] = ACTIONS(3551), + [anon_sym_virtual] = ACTIONS(3551), + [anon_sym_alignas] = ACTIONS(3551), + [anon_sym_explicit] = ACTIONS(3551), + [anon_sym_typename] = ACTIONS(3551), + [anon_sym_template] = ACTIONS(3551), + [anon_sym_operator] = ACTIONS(3551), + [anon_sym_try] = ACTIONS(3551), + [anon_sym_delete] = ACTIONS(3551), + [anon_sym_throw] = ACTIONS(3551), + [anon_sym_namespace] = ACTIONS(3551), + [anon_sym_using] = ACTIONS(3551), + [anon_sym_static_assert] = ACTIONS(3551), + [anon_sym_concept] = ACTIONS(3551), + [anon_sym_co_return] = ACTIONS(3551), + [anon_sym_co_yield] = ACTIONS(3551), + [anon_sym_R_DQUOTE] = ACTIONS(3553), + [anon_sym_LR_DQUOTE] = ACTIONS(3553), + [anon_sym_uR_DQUOTE] = ACTIONS(3553), + [anon_sym_UR_DQUOTE] = ACTIONS(3553), + [anon_sym_u8R_DQUOTE] = ACTIONS(3553), + [anon_sym_co_await] = ACTIONS(3551), + [anon_sym_new] = ACTIONS(3551), + [anon_sym_requires] = ACTIONS(3551), + [sym_this] = ACTIONS(3551), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3553), + [sym_semgrep_named_ellipsis] = ACTIONS(3553), }, [412] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5652), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8300), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(8912), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3542), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [sym_identifier] = ACTIONS(3555), + [aux_sym_preproc_include_token1] = ACTIONS(3555), + [aux_sym_preproc_def_token1] = ACTIONS(3555), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3557), + [aux_sym_preproc_if_token1] = ACTIONS(3555), + [aux_sym_preproc_if_token2] = ACTIONS(3555), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3555), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3555), + [aux_sym_preproc_else_token1] = ACTIONS(3555), + [aux_sym_preproc_elif_token1] = ACTIONS(3555), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3555), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3555), + [sym_preproc_directive] = ACTIONS(3555), + [anon_sym_LPAREN2] = ACTIONS(3557), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3557), + [anon_sym_DASH] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3555), + [anon_sym_STAR] = ACTIONS(3557), + [anon_sym_AMP_AMP] = ACTIONS(3557), + [anon_sym_AMP] = ACTIONS(3555), + [anon_sym_SEMI] = ACTIONS(3557), + [anon_sym___extension__] = ACTIONS(3555), + [anon_sym_typedef] = ACTIONS(3555), + [anon_sym_extern] = ACTIONS(3555), + [anon_sym___attribute__] = ACTIONS(3555), + [anon_sym_COLON_COLON] = ACTIONS(3557), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3557), + [anon_sym___declspec] = ACTIONS(3555), + [anon_sym___based] = ACTIONS(3555), + [anon_sym___cdecl] = ACTIONS(3555), + [anon_sym___clrcall] = ACTIONS(3555), + [anon_sym___stdcall] = ACTIONS(3555), + [anon_sym___fastcall] = ACTIONS(3555), + [anon_sym___thiscall] = ACTIONS(3555), + [anon_sym___vectorcall] = ACTIONS(3555), + [anon_sym_LBRACE] = ACTIONS(3557), + [anon_sym_signed] = ACTIONS(3555), + [anon_sym_unsigned] = ACTIONS(3555), + [anon_sym_long] = ACTIONS(3555), + [anon_sym_short] = ACTIONS(3555), + [anon_sym_LBRACK] = ACTIONS(3555), + [anon_sym_static] = ACTIONS(3555), + [anon_sym_register] = ACTIONS(3555), + [anon_sym_inline] = ACTIONS(3555), + [anon_sym___inline] = ACTIONS(3555), + [anon_sym___inline__] = ACTIONS(3555), + [anon_sym___forceinline] = ACTIONS(3555), + [anon_sym_thread_local] = ACTIONS(3555), + [anon_sym___thread] = ACTIONS(3555), + [anon_sym_const] = ACTIONS(3555), + [anon_sym_constexpr] = ACTIONS(3555), + [anon_sym_volatile] = ACTIONS(3555), + [anon_sym_restrict] = ACTIONS(3555), + [anon_sym___restrict__] = ACTIONS(3555), + [anon_sym__Atomic] = ACTIONS(3555), + [anon_sym__Noreturn] = ACTIONS(3555), + [anon_sym_noreturn] = ACTIONS(3555), + [anon_sym_mutable] = ACTIONS(3555), + [anon_sym_constinit] = ACTIONS(3555), + [anon_sym_consteval] = ACTIONS(3555), + [sym_primitive_type] = ACTIONS(3555), + [anon_sym_enum] = ACTIONS(3555), + [anon_sym_class] = ACTIONS(3555), + [anon_sym_struct] = ACTIONS(3555), + [anon_sym_union] = ACTIONS(3555), + [anon_sym_if] = ACTIONS(3555), + [anon_sym_switch] = ACTIONS(3555), + [anon_sym_case] = ACTIONS(3555), + [anon_sym_default] = ACTIONS(3555), + [anon_sym_while] = ACTIONS(3555), + [anon_sym_do] = ACTIONS(3555), + [anon_sym_for] = ACTIONS(3555), + [anon_sym_return] = ACTIONS(3555), + [anon_sym_break] = ACTIONS(3555), + [anon_sym_continue] = ACTIONS(3555), + [anon_sym_goto] = ACTIONS(3555), + [anon_sym___try] = ACTIONS(3555), + [anon_sym___leave] = ACTIONS(3555), + [anon_sym_not] = ACTIONS(3555), + [anon_sym_compl] = ACTIONS(3555), + [anon_sym_DASH_DASH] = ACTIONS(3557), + [anon_sym_PLUS_PLUS] = ACTIONS(3557), + [anon_sym_sizeof] = ACTIONS(3555), + [anon_sym___alignof__] = ACTIONS(3555), + [anon_sym___alignof] = ACTIONS(3555), + [anon_sym__alignof] = ACTIONS(3555), + [anon_sym_alignof] = ACTIONS(3555), + [anon_sym__Alignof] = ACTIONS(3555), + [anon_sym_offsetof] = ACTIONS(3555), + [anon_sym__Generic] = ACTIONS(3555), + [anon_sym_asm] = ACTIONS(3555), + [anon_sym___asm__] = ACTIONS(3555), + [sym_number_literal] = ACTIONS(3557), + [anon_sym_L_SQUOTE] = ACTIONS(3557), + [anon_sym_u_SQUOTE] = ACTIONS(3557), + [anon_sym_U_SQUOTE] = ACTIONS(3557), + [anon_sym_u8_SQUOTE] = ACTIONS(3557), + [anon_sym_SQUOTE] = ACTIONS(3557), + [anon_sym_L_DQUOTE] = ACTIONS(3557), + [anon_sym_u_DQUOTE] = ACTIONS(3557), + [anon_sym_U_DQUOTE] = ACTIONS(3557), + [anon_sym_u8_DQUOTE] = ACTIONS(3557), + [anon_sym_DQUOTE] = ACTIONS(3557), + [sym_true] = ACTIONS(3555), + [sym_false] = ACTIONS(3555), + [anon_sym_NULL] = ACTIONS(3555), + [anon_sym_nullptr] = ACTIONS(3555), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3555), + [anon_sym_decltype] = ACTIONS(3555), + [anon_sym_virtual] = ACTIONS(3555), + [anon_sym_alignas] = ACTIONS(3555), + [anon_sym_explicit] = ACTIONS(3555), + [anon_sym_typename] = ACTIONS(3555), + [anon_sym_template] = ACTIONS(3555), + [anon_sym_operator] = ACTIONS(3555), + [anon_sym_try] = ACTIONS(3555), + [anon_sym_delete] = ACTIONS(3555), + [anon_sym_throw] = ACTIONS(3555), + [anon_sym_namespace] = ACTIONS(3555), + [anon_sym_using] = ACTIONS(3555), + [anon_sym_static_assert] = ACTIONS(3555), + [anon_sym_concept] = ACTIONS(3555), + [anon_sym_co_return] = ACTIONS(3555), + [anon_sym_co_yield] = ACTIONS(3555), + [anon_sym_R_DQUOTE] = ACTIONS(3557), + [anon_sym_LR_DQUOTE] = ACTIONS(3557), + [anon_sym_uR_DQUOTE] = ACTIONS(3557), + [anon_sym_UR_DQUOTE] = ACTIONS(3557), + [anon_sym_u8R_DQUOTE] = ACTIONS(3557), + [anon_sym_co_await] = ACTIONS(3555), + [anon_sym_new] = ACTIONS(3555), + [anon_sym_requires] = ACTIONS(3555), + [sym_this] = ACTIONS(3555), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3557), + [sym_semgrep_named_ellipsis] = ACTIONS(3557), }, [413] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5656), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8315), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(9026), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3544), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [sym_type_qualifier] = STATE(4685), + [sym_type_specifier] = STATE(5782), + [sym_sized_type_specifier] = STATE(3293), + [sym_enum_specifier] = STATE(3293), + [sym_struct_specifier] = STATE(3293), + [sym_union_specifier] = STATE(3293), + [sym_expression] = STATE(5110), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_type_descriptor] = STATE(7949), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_placeholder_type_specifier] = STATE(3293), + [sym_decltype_auto] = STATE(3292), + [sym_decltype] = STATE(2572), + [sym_class_specifier] = STATE(3293), + [sym_class_name] = STATE(8965), + [sym_dependent_type] = STATE(3293), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_type_parameter_pack_expansion] = STATE(8455), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6620), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(6338), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [aux_sym_type_definition_type_repeat1] = STATE(4685), + [aux_sym_sized_type_specifier_repeat1] = STATE(2573), + [sym_identifier] = ACTIONS(3310), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_signed] = ACTIONS(3324), + [anon_sym_unsigned] = ACTIONS(3324), + [anon_sym_long] = ACTIONS(3324), + [anon_sym_short] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3330), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_union] = ACTIONS(3334), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3358), + [anon_sym_decltype] = ACTIONS(3360), + [anon_sym_typename] = ACTIONS(3362), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_GT2] = ACTIONS(3559), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), }, [414] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5658), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8329), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(9081), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3546), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [sym_identifier] = ACTIONS(3561), + [aux_sym_preproc_include_token1] = ACTIONS(3561), + [aux_sym_preproc_def_token1] = ACTIONS(3561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3563), + [aux_sym_preproc_if_token1] = ACTIONS(3561), + [aux_sym_preproc_if_token2] = ACTIONS(3561), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3561), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3561), + [aux_sym_preproc_else_token1] = ACTIONS(3561), + [aux_sym_preproc_elif_token1] = ACTIONS(3561), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3561), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3561), + [sym_preproc_directive] = ACTIONS(3561), + [anon_sym_LPAREN2] = ACTIONS(3563), + [anon_sym_BANG] = ACTIONS(3563), + [anon_sym_TILDE] = ACTIONS(3563), + [anon_sym_DASH] = ACTIONS(3561), + [anon_sym_PLUS] = ACTIONS(3561), + [anon_sym_STAR] = ACTIONS(3563), + [anon_sym_AMP_AMP] = ACTIONS(3563), + [anon_sym_AMP] = ACTIONS(3561), + [anon_sym_SEMI] = ACTIONS(3563), + [anon_sym___extension__] = ACTIONS(3561), + [anon_sym_typedef] = ACTIONS(3561), + [anon_sym_extern] = ACTIONS(3561), + [anon_sym___attribute__] = ACTIONS(3561), + [anon_sym_COLON_COLON] = ACTIONS(3563), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3563), + [anon_sym___declspec] = ACTIONS(3561), + [anon_sym___based] = ACTIONS(3561), + [anon_sym___cdecl] = ACTIONS(3561), + [anon_sym___clrcall] = ACTIONS(3561), + [anon_sym___stdcall] = ACTIONS(3561), + [anon_sym___fastcall] = ACTIONS(3561), + [anon_sym___thiscall] = ACTIONS(3561), + [anon_sym___vectorcall] = ACTIONS(3561), + [anon_sym_LBRACE] = ACTIONS(3563), + [anon_sym_signed] = ACTIONS(3561), + [anon_sym_unsigned] = ACTIONS(3561), + [anon_sym_long] = ACTIONS(3561), + [anon_sym_short] = ACTIONS(3561), + [anon_sym_LBRACK] = ACTIONS(3561), + [anon_sym_static] = ACTIONS(3561), + [anon_sym_register] = ACTIONS(3561), + [anon_sym_inline] = ACTIONS(3561), + [anon_sym___inline] = ACTIONS(3561), + [anon_sym___inline__] = ACTIONS(3561), + [anon_sym___forceinline] = ACTIONS(3561), + [anon_sym_thread_local] = ACTIONS(3561), + [anon_sym___thread] = ACTIONS(3561), + [anon_sym_const] = ACTIONS(3561), + [anon_sym_constexpr] = ACTIONS(3561), + [anon_sym_volatile] = ACTIONS(3561), + [anon_sym_restrict] = ACTIONS(3561), + [anon_sym___restrict__] = ACTIONS(3561), + [anon_sym__Atomic] = ACTIONS(3561), + [anon_sym__Noreturn] = ACTIONS(3561), + [anon_sym_noreturn] = ACTIONS(3561), + [anon_sym_mutable] = ACTIONS(3561), + [anon_sym_constinit] = ACTIONS(3561), + [anon_sym_consteval] = ACTIONS(3561), + [sym_primitive_type] = ACTIONS(3561), + [anon_sym_enum] = ACTIONS(3561), + [anon_sym_class] = ACTIONS(3561), + [anon_sym_struct] = ACTIONS(3561), + [anon_sym_union] = ACTIONS(3561), + [anon_sym_if] = ACTIONS(3561), + [anon_sym_switch] = ACTIONS(3561), + [anon_sym_case] = ACTIONS(3561), + [anon_sym_default] = ACTIONS(3561), + [anon_sym_while] = ACTIONS(3561), + [anon_sym_do] = ACTIONS(3561), + [anon_sym_for] = ACTIONS(3561), + [anon_sym_return] = ACTIONS(3561), + [anon_sym_break] = ACTIONS(3561), + [anon_sym_continue] = ACTIONS(3561), + [anon_sym_goto] = ACTIONS(3561), + [anon_sym___try] = ACTIONS(3561), + [anon_sym___leave] = ACTIONS(3561), + [anon_sym_not] = ACTIONS(3561), + [anon_sym_compl] = ACTIONS(3561), + [anon_sym_DASH_DASH] = ACTIONS(3563), + [anon_sym_PLUS_PLUS] = ACTIONS(3563), + [anon_sym_sizeof] = ACTIONS(3561), + [anon_sym___alignof__] = ACTIONS(3561), + [anon_sym___alignof] = ACTIONS(3561), + [anon_sym__alignof] = ACTIONS(3561), + [anon_sym_alignof] = ACTIONS(3561), + [anon_sym__Alignof] = ACTIONS(3561), + [anon_sym_offsetof] = ACTIONS(3561), + [anon_sym__Generic] = ACTIONS(3561), + [anon_sym_asm] = ACTIONS(3561), + [anon_sym___asm__] = ACTIONS(3561), + [sym_number_literal] = ACTIONS(3563), + [anon_sym_L_SQUOTE] = ACTIONS(3563), + [anon_sym_u_SQUOTE] = ACTIONS(3563), + [anon_sym_U_SQUOTE] = ACTIONS(3563), + [anon_sym_u8_SQUOTE] = ACTIONS(3563), + [anon_sym_SQUOTE] = ACTIONS(3563), + [anon_sym_L_DQUOTE] = ACTIONS(3563), + [anon_sym_u_DQUOTE] = ACTIONS(3563), + [anon_sym_U_DQUOTE] = ACTIONS(3563), + [anon_sym_u8_DQUOTE] = ACTIONS(3563), + [anon_sym_DQUOTE] = ACTIONS(3563), + [sym_true] = ACTIONS(3561), + [sym_false] = ACTIONS(3561), + [anon_sym_NULL] = ACTIONS(3561), + [anon_sym_nullptr] = ACTIONS(3561), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3561), + [anon_sym_decltype] = ACTIONS(3561), + [anon_sym_virtual] = ACTIONS(3561), + [anon_sym_alignas] = ACTIONS(3561), + [anon_sym_explicit] = ACTIONS(3561), + [anon_sym_typename] = ACTIONS(3561), + [anon_sym_template] = ACTIONS(3561), + [anon_sym_operator] = ACTIONS(3561), + [anon_sym_try] = ACTIONS(3561), + [anon_sym_delete] = ACTIONS(3561), + [anon_sym_throw] = ACTIONS(3561), + [anon_sym_namespace] = ACTIONS(3561), + [anon_sym_using] = ACTIONS(3561), + [anon_sym_static_assert] = ACTIONS(3561), + [anon_sym_concept] = ACTIONS(3561), + [anon_sym_co_return] = ACTIONS(3561), + [anon_sym_co_yield] = ACTIONS(3561), + [anon_sym_R_DQUOTE] = ACTIONS(3563), + [anon_sym_LR_DQUOTE] = ACTIONS(3563), + [anon_sym_uR_DQUOTE] = ACTIONS(3563), + [anon_sym_UR_DQUOTE] = ACTIONS(3563), + [anon_sym_u8R_DQUOTE] = ACTIONS(3563), + [anon_sym_co_await] = ACTIONS(3561), + [anon_sym_new] = ACTIONS(3561), + [anon_sym_requires] = ACTIONS(3561), + [sym_this] = ACTIONS(3561), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3563), + [sym_semgrep_named_ellipsis] = ACTIONS(3563), }, [415] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5659), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8340), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(8555), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3548), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [sym_identifier] = ACTIONS(3565), + [aux_sym_preproc_include_token1] = ACTIONS(3565), + [aux_sym_preproc_def_token1] = ACTIONS(3565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3567), + [aux_sym_preproc_if_token1] = ACTIONS(3565), + [aux_sym_preproc_if_token2] = ACTIONS(3565), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3565), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3565), + [aux_sym_preproc_else_token1] = ACTIONS(3565), + [aux_sym_preproc_elif_token1] = ACTIONS(3565), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3565), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3565), + [sym_preproc_directive] = ACTIONS(3565), + [anon_sym_LPAREN2] = ACTIONS(3567), + [anon_sym_BANG] = ACTIONS(3567), + [anon_sym_TILDE] = ACTIONS(3567), + [anon_sym_DASH] = ACTIONS(3565), + [anon_sym_PLUS] = ACTIONS(3565), + [anon_sym_STAR] = ACTIONS(3567), + [anon_sym_AMP_AMP] = ACTIONS(3567), + [anon_sym_AMP] = ACTIONS(3565), + [anon_sym_SEMI] = ACTIONS(3567), + [anon_sym___extension__] = ACTIONS(3565), + [anon_sym_typedef] = ACTIONS(3565), + [anon_sym_extern] = ACTIONS(3565), + [anon_sym___attribute__] = ACTIONS(3565), + [anon_sym_COLON_COLON] = ACTIONS(3567), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3567), + [anon_sym___declspec] = ACTIONS(3565), + [anon_sym___based] = ACTIONS(3565), + [anon_sym___cdecl] = ACTIONS(3565), + [anon_sym___clrcall] = ACTIONS(3565), + [anon_sym___stdcall] = ACTIONS(3565), + [anon_sym___fastcall] = ACTIONS(3565), + [anon_sym___thiscall] = ACTIONS(3565), + [anon_sym___vectorcall] = ACTIONS(3565), + [anon_sym_LBRACE] = ACTIONS(3567), + [anon_sym_signed] = ACTIONS(3565), + [anon_sym_unsigned] = ACTIONS(3565), + [anon_sym_long] = ACTIONS(3565), + [anon_sym_short] = ACTIONS(3565), + [anon_sym_LBRACK] = ACTIONS(3565), + [anon_sym_static] = ACTIONS(3565), + [anon_sym_register] = ACTIONS(3565), + [anon_sym_inline] = ACTIONS(3565), + [anon_sym___inline] = ACTIONS(3565), + [anon_sym___inline__] = ACTIONS(3565), + [anon_sym___forceinline] = ACTIONS(3565), + [anon_sym_thread_local] = ACTIONS(3565), + [anon_sym___thread] = ACTIONS(3565), + [anon_sym_const] = ACTIONS(3565), + [anon_sym_constexpr] = ACTIONS(3565), + [anon_sym_volatile] = ACTIONS(3565), + [anon_sym_restrict] = ACTIONS(3565), + [anon_sym___restrict__] = ACTIONS(3565), + [anon_sym__Atomic] = ACTIONS(3565), + [anon_sym__Noreturn] = ACTIONS(3565), + [anon_sym_noreturn] = ACTIONS(3565), + [anon_sym_mutable] = ACTIONS(3565), + [anon_sym_constinit] = ACTIONS(3565), + [anon_sym_consteval] = ACTIONS(3565), + [sym_primitive_type] = ACTIONS(3565), + [anon_sym_enum] = ACTIONS(3565), + [anon_sym_class] = ACTIONS(3565), + [anon_sym_struct] = ACTIONS(3565), + [anon_sym_union] = ACTIONS(3565), + [anon_sym_if] = ACTIONS(3565), + [anon_sym_switch] = ACTIONS(3565), + [anon_sym_case] = ACTIONS(3565), + [anon_sym_default] = ACTIONS(3565), + [anon_sym_while] = ACTIONS(3565), + [anon_sym_do] = ACTIONS(3565), + [anon_sym_for] = ACTIONS(3565), + [anon_sym_return] = ACTIONS(3565), + [anon_sym_break] = ACTIONS(3565), + [anon_sym_continue] = ACTIONS(3565), + [anon_sym_goto] = ACTIONS(3565), + [anon_sym___try] = ACTIONS(3565), + [anon_sym___leave] = ACTIONS(3565), + [anon_sym_not] = ACTIONS(3565), + [anon_sym_compl] = ACTIONS(3565), + [anon_sym_DASH_DASH] = ACTIONS(3567), + [anon_sym_PLUS_PLUS] = ACTIONS(3567), + [anon_sym_sizeof] = ACTIONS(3565), + [anon_sym___alignof__] = ACTIONS(3565), + [anon_sym___alignof] = ACTIONS(3565), + [anon_sym__alignof] = ACTIONS(3565), + [anon_sym_alignof] = ACTIONS(3565), + [anon_sym__Alignof] = ACTIONS(3565), + [anon_sym_offsetof] = ACTIONS(3565), + [anon_sym__Generic] = ACTIONS(3565), + [anon_sym_asm] = ACTIONS(3565), + [anon_sym___asm__] = ACTIONS(3565), + [sym_number_literal] = ACTIONS(3567), + [anon_sym_L_SQUOTE] = ACTIONS(3567), + [anon_sym_u_SQUOTE] = ACTIONS(3567), + [anon_sym_U_SQUOTE] = ACTIONS(3567), + [anon_sym_u8_SQUOTE] = ACTIONS(3567), + [anon_sym_SQUOTE] = ACTIONS(3567), + [anon_sym_L_DQUOTE] = ACTIONS(3567), + [anon_sym_u_DQUOTE] = ACTIONS(3567), + [anon_sym_U_DQUOTE] = ACTIONS(3567), + [anon_sym_u8_DQUOTE] = ACTIONS(3567), + [anon_sym_DQUOTE] = ACTIONS(3567), + [sym_true] = ACTIONS(3565), + [sym_false] = ACTIONS(3565), + [anon_sym_NULL] = ACTIONS(3565), + [anon_sym_nullptr] = ACTIONS(3565), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3565), + [anon_sym_decltype] = ACTIONS(3565), + [anon_sym_virtual] = ACTIONS(3565), + [anon_sym_alignas] = ACTIONS(3565), + [anon_sym_explicit] = ACTIONS(3565), + [anon_sym_typename] = ACTIONS(3565), + [anon_sym_template] = ACTIONS(3565), + [anon_sym_operator] = ACTIONS(3565), + [anon_sym_try] = ACTIONS(3565), + [anon_sym_delete] = ACTIONS(3565), + [anon_sym_throw] = ACTIONS(3565), + [anon_sym_namespace] = ACTIONS(3565), + [anon_sym_using] = ACTIONS(3565), + [anon_sym_static_assert] = ACTIONS(3565), + [anon_sym_concept] = ACTIONS(3565), + [anon_sym_co_return] = ACTIONS(3565), + [anon_sym_co_yield] = ACTIONS(3565), + [anon_sym_R_DQUOTE] = ACTIONS(3567), + [anon_sym_LR_DQUOTE] = ACTIONS(3567), + [anon_sym_uR_DQUOTE] = ACTIONS(3567), + [anon_sym_UR_DQUOTE] = ACTIONS(3567), + [anon_sym_u8R_DQUOTE] = ACTIONS(3567), + [anon_sym_co_await] = ACTIONS(3565), + [anon_sym_new] = ACTIONS(3565), + [anon_sym_requires] = ACTIONS(3565), + [sym_this] = ACTIONS(3565), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3567), + [sym_semgrep_named_ellipsis] = ACTIONS(3567), }, [416] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5660), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8345), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(8570), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3550), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [sym_type_qualifier] = STATE(4685), + [sym_type_specifier] = STATE(5782), + [sym_sized_type_specifier] = STATE(3293), + [sym_enum_specifier] = STATE(3293), + [sym_struct_specifier] = STATE(3293), + [sym_union_specifier] = STATE(3293), + [sym_expression] = STATE(5112), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_type_descriptor] = STATE(7955), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_placeholder_type_specifier] = STATE(3293), + [sym_decltype_auto] = STATE(3292), + [sym_decltype] = STATE(2572), + [sym_class_specifier] = STATE(3293), + [sym_class_name] = STATE(8965), + [sym_dependent_type] = STATE(3293), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_type_parameter_pack_expansion] = STATE(8509), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6620), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(6338), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [aux_sym_type_definition_type_repeat1] = STATE(4685), + [aux_sym_sized_type_specifier_repeat1] = STATE(2573), + [sym_identifier] = ACTIONS(3310), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_signed] = ACTIONS(3324), + [anon_sym_unsigned] = ACTIONS(3324), + [anon_sym_long] = ACTIONS(3324), + [anon_sym_short] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3330), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_union] = ACTIONS(3334), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3358), + [anon_sym_decltype] = ACTIONS(3360), + [anon_sym_typename] = ACTIONS(3362), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_GT2] = ACTIONS(3569), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), }, [417] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5661), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8349), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(8580), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3552), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [sym_identifier] = ACTIONS(3571), + [aux_sym_preproc_include_token1] = ACTIONS(3571), + [aux_sym_preproc_def_token1] = ACTIONS(3571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3573), + [aux_sym_preproc_if_token1] = ACTIONS(3571), + [aux_sym_preproc_if_token2] = ACTIONS(3571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3571), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3571), + [aux_sym_preproc_else_token1] = ACTIONS(3571), + [aux_sym_preproc_elif_token1] = ACTIONS(3571), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3571), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3571), + [sym_preproc_directive] = ACTIONS(3571), + [anon_sym_LPAREN2] = ACTIONS(3573), + [anon_sym_BANG] = ACTIONS(3573), + [anon_sym_TILDE] = ACTIONS(3573), + [anon_sym_DASH] = ACTIONS(3571), + [anon_sym_PLUS] = ACTIONS(3571), + [anon_sym_STAR] = ACTIONS(3573), + [anon_sym_AMP_AMP] = ACTIONS(3573), + [anon_sym_AMP] = ACTIONS(3571), + [anon_sym_SEMI] = ACTIONS(3573), + [anon_sym___extension__] = ACTIONS(3571), + [anon_sym_typedef] = ACTIONS(3571), + [anon_sym_extern] = ACTIONS(3571), + [anon_sym___attribute__] = ACTIONS(3571), + [anon_sym_COLON_COLON] = ACTIONS(3573), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3573), + [anon_sym___declspec] = ACTIONS(3571), + [anon_sym___based] = ACTIONS(3571), + [anon_sym___cdecl] = ACTIONS(3571), + [anon_sym___clrcall] = ACTIONS(3571), + [anon_sym___stdcall] = ACTIONS(3571), + [anon_sym___fastcall] = ACTIONS(3571), + [anon_sym___thiscall] = ACTIONS(3571), + [anon_sym___vectorcall] = ACTIONS(3571), + [anon_sym_LBRACE] = ACTIONS(3573), + [anon_sym_signed] = ACTIONS(3571), + [anon_sym_unsigned] = ACTIONS(3571), + [anon_sym_long] = ACTIONS(3571), + [anon_sym_short] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(3571), + [anon_sym_static] = ACTIONS(3571), + [anon_sym_register] = ACTIONS(3571), + [anon_sym_inline] = ACTIONS(3571), + [anon_sym___inline] = ACTIONS(3571), + [anon_sym___inline__] = ACTIONS(3571), + [anon_sym___forceinline] = ACTIONS(3571), + [anon_sym_thread_local] = ACTIONS(3571), + [anon_sym___thread] = ACTIONS(3571), + [anon_sym_const] = ACTIONS(3571), + [anon_sym_constexpr] = ACTIONS(3571), + [anon_sym_volatile] = ACTIONS(3571), + [anon_sym_restrict] = ACTIONS(3571), + [anon_sym___restrict__] = ACTIONS(3571), + [anon_sym__Atomic] = ACTIONS(3571), + [anon_sym__Noreturn] = ACTIONS(3571), + [anon_sym_noreturn] = ACTIONS(3571), + [anon_sym_mutable] = ACTIONS(3571), + [anon_sym_constinit] = ACTIONS(3571), + [anon_sym_consteval] = ACTIONS(3571), + [sym_primitive_type] = ACTIONS(3571), + [anon_sym_enum] = ACTIONS(3571), + [anon_sym_class] = ACTIONS(3571), + [anon_sym_struct] = ACTIONS(3571), + [anon_sym_union] = ACTIONS(3571), + [anon_sym_if] = ACTIONS(3571), + [anon_sym_switch] = ACTIONS(3571), + [anon_sym_case] = ACTIONS(3571), + [anon_sym_default] = ACTIONS(3571), + [anon_sym_while] = ACTIONS(3571), + [anon_sym_do] = ACTIONS(3571), + [anon_sym_for] = ACTIONS(3571), + [anon_sym_return] = ACTIONS(3571), + [anon_sym_break] = ACTIONS(3571), + [anon_sym_continue] = ACTIONS(3571), + [anon_sym_goto] = ACTIONS(3571), + [anon_sym___try] = ACTIONS(3571), + [anon_sym___leave] = ACTIONS(3571), + [anon_sym_not] = ACTIONS(3571), + [anon_sym_compl] = ACTIONS(3571), + [anon_sym_DASH_DASH] = ACTIONS(3573), + [anon_sym_PLUS_PLUS] = ACTIONS(3573), + [anon_sym_sizeof] = ACTIONS(3571), + [anon_sym___alignof__] = ACTIONS(3571), + [anon_sym___alignof] = ACTIONS(3571), + [anon_sym__alignof] = ACTIONS(3571), + [anon_sym_alignof] = ACTIONS(3571), + [anon_sym__Alignof] = ACTIONS(3571), + [anon_sym_offsetof] = ACTIONS(3571), + [anon_sym__Generic] = ACTIONS(3571), + [anon_sym_asm] = ACTIONS(3571), + [anon_sym___asm__] = ACTIONS(3571), + [sym_number_literal] = ACTIONS(3573), + [anon_sym_L_SQUOTE] = ACTIONS(3573), + [anon_sym_u_SQUOTE] = ACTIONS(3573), + [anon_sym_U_SQUOTE] = ACTIONS(3573), + [anon_sym_u8_SQUOTE] = ACTIONS(3573), + [anon_sym_SQUOTE] = ACTIONS(3573), + [anon_sym_L_DQUOTE] = ACTIONS(3573), + [anon_sym_u_DQUOTE] = ACTIONS(3573), + [anon_sym_U_DQUOTE] = ACTIONS(3573), + [anon_sym_u8_DQUOTE] = ACTIONS(3573), + [anon_sym_DQUOTE] = ACTIONS(3573), + [sym_true] = ACTIONS(3571), + [sym_false] = ACTIONS(3571), + [anon_sym_NULL] = ACTIONS(3571), + [anon_sym_nullptr] = ACTIONS(3571), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3571), + [anon_sym_decltype] = ACTIONS(3571), + [anon_sym_virtual] = ACTIONS(3571), + [anon_sym_alignas] = ACTIONS(3571), + [anon_sym_explicit] = ACTIONS(3571), + [anon_sym_typename] = ACTIONS(3571), + [anon_sym_template] = ACTIONS(3571), + [anon_sym_operator] = ACTIONS(3571), + [anon_sym_try] = ACTIONS(3571), + [anon_sym_delete] = ACTIONS(3571), + [anon_sym_throw] = ACTIONS(3571), + [anon_sym_namespace] = ACTIONS(3571), + [anon_sym_using] = ACTIONS(3571), + [anon_sym_static_assert] = ACTIONS(3571), + [anon_sym_concept] = ACTIONS(3571), + [anon_sym_co_return] = ACTIONS(3571), + [anon_sym_co_yield] = ACTIONS(3571), + [anon_sym_R_DQUOTE] = ACTIONS(3573), + [anon_sym_LR_DQUOTE] = ACTIONS(3573), + [anon_sym_uR_DQUOTE] = ACTIONS(3573), + [anon_sym_UR_DQUOTE] = ACTIONS(3573), + [anon_sym_u8R_DQUOTE] = ACTIONS(3573), + [anon_sym_co_await] = ACTIONS(3571), + [anon_sym_new] = ACTIONS(3571), + [anon_sym_requires] = ACTIONS(3571), + [sym_this] = ACTIONS(3571), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3573), + [sym_semgrep_named_ellipsis] = ACTIONS(3573), }, [418] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5662), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8355), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(8598), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3554), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [sym_type_qualifier] = STATE(4685), + [sym_type_specifier] = STATE(5782), + [sym_sized_type_specifier] = STATE(3293), + [sym_enum_specifier] = STATE(3293), + [sym_struct_specifier] = STATE(3293), + [sym_union_specifier] = STATE(3293), + [sym_expression] = STATE(5114), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_type_descriptor] = STATE(7958), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_placeholder_type_specifier] = STATE(3293), + [sym_decltype_auto] = STATE(3292), + [sym_decltype] = STATE(2572), + [sym_class_specifier] = STATE(3293), + [sym_class_name] = STATE(8965), + [sym_dependent_type] = STATE(3293), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_type_parameter_pack_expansion] = STATE(8528), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6620), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(6338), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [aux_sym_type_definition_type_repeat1] = STATE(4685), + [aux_sym_sized_type_specifier_repeat1] = STATE(2573), + [sym_identifier] = ACTIONS(3310), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_signed] = ACTIONS(3324), + [anon_sym_unsigned] = ACTIONS(3324), + [anon_sym_long] = ACTIONS(3324), + [anon_sym_short] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3330), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_union] = ACTIONS(3334), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3358), + [anon_sym_decltype] = ACTIONS(3360), + [anon_sym_typename] = ACTIONS(3362), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_GT2] = ACTIONS(3575), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), }, [419] = { - [sym_identifier] = ACTIONS(3556), - [aux_sym_preproc_include_token1] = ACTIONS(3556), - [aux_sym_preproc_def_token1] = ACTIONS(3556), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3558), - [aux_sym_preproc_if_token1] = ACTIONS(3556), - [aux_sym_preproc_if_token2] = ACTIONS(3556), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3556), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3556), - [aux_sym_preproc_else_token1] = ACTIONS(3556), - [aux_sym_preproc_elif_token1] = ACTIONS(3556), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3556), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3556), - [sym_preproc_directive] = ACTIONS(3556), - [anon_sym_LPAREN2] = ACTIONS(3558), - [anon_sym_BANG] = ACTIONS(3558), - [anon_sym_TILDE] = ACTIONS(3558), - [anon_sym_DASH] = ACTIONS(3556), - [anon_sym_PLUS] = ACTIONS(3556), - [anon_sym_STAR] = ACTIONS(3558), - [anon_sym_AMP_AMP] = ACTIONS(3558), - [anon_sym_AMP] = ACTIONS(3556), - [anon_sym_SEMI] = ACTIONS(3558), - [anon_sym___extension__] = ACTIONS(3556), - [anon_sym_typedef] = ACTIONS(3556), - [anon_sym_extern] = ACTIONS(3556), - [anon_sym___attribute__] = ACTIONS(3556), - [anon_sym_COLON_COLON] = ACTIONS(3558), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3558), - [anon_sym___declspec] = ACTIONS(3556), - [anon_sym___based] = ACTIONS(3556), - [anon_sym___cdecl] = ACTIONS(3556), - [anon_sym___clrcall] = ACTIONS(3556), - [anon_sym___stdcall] = ACTIONS(3556), - [anon_sym___fastcall] = ACTIONS(3556), - [anon_sym___thiscall] = ACTIONS(3556), - [anon_sym___vectorcall] = ACTIONS(3556), - [anon_sym_LBRACE] = ACTIONS(3558), - [anon_sym_signed] = ACTIONS(3556), - [anon_sym_unsigned] = ACTIONS(3556), - [anon_sym_long] = ACTIONS(3556), - [anon_sym_short] = ACTIONS(3556), - [anon_sym_LBRACK] = ACTIONS(3556), - [anon_sym_static] = ACTIONS(3556), - [anon_sym_register] = ACTIONS(3556), - [anon_sym_inline] = ACTIONS(3556), - [anon_sym___inline] = ACTIONS(3556), - [anon_sym___inline__] = ACTIONS(3556), - [anon_sym___forceinline] = ACTIONS(3556), - [anon_sym_thread_local] = ACTIONS(3556), - [anon_sym___thread] = ACTIONS(3556), - [anon_sym_const] = ACTIONS(3556), - [anon_sym_constexpr] = ACTIONS(3556), - [anon_sym_volatile] = ACTIONS(3556), - [anon_sym_restrict] = ACTIONS(3556), - [anon_sym___restrict__] = ACTIONS(3556), - [anon_sym__Atomic] = ACTIONS(3556), - [anon_sym__Noreturn] = ACTIONS(3556), - [anon_sym_noreturn] = ACTIONS(3556), - [anon_sym_mutable] = ACTIONS(3556), - [anon_sym_constinit] = ACTIONS(3556), - [anon_sym_consteval] = ACTIONS(3556), - [sym_primitive_type] = ACTIONS(3556), - [anon_sym_enum] = ACTIONS(3556), - [anon_sym_class] = ACTIONS(3556), - [anon_sym_struct] = ACTIONS(3556), - [anon_sym_union] = ACTIONS(3556), - [anon_sym_if] = ACTIONS(3556), - [anon_sym_switch] = ACTIONS(3556), - [anon_sym_case] = ACTIONS(3556), - [anon_sym_default] = ACTIONS(3556), - [anon_sym_while] = ACTIONS(3556), - [anon_sym_do] = ACTIONS(3556), - [anon_sym_for] = ACTIONS(3556), - [anon_sym_return] = ACTIONS(3556), - [anon_sym_break] = ACTIONS(3556), - [anon_sym_continue] = ACTIONS(3556), - [anon_sym_goto] = ACTIONS(3556), - [anon_sym___try] = ACTIONS(3556), - [anon_sym___leave] = ACTIONS(3556), - [anon_sym_not] = ACTIONS(3556), - [anon_sym_compl] = ACTIONS(3556), - [anon_sym_DASH_DASH] = ACTIONS(3558), - [anon_sym_PLUS_PLUS] = ACTIONS(3558), - [anon_sym_sizeof] = ACTIONS(3556), - [anon_sym___alignof__] = ACTIONS(3556), - [anon_sym___alignof] = ACTIONS(3556), - [anon_sym__alignof] = ACTIONS(3556), - [anon_sym_alignof] = ACTIONS(3556), - [anon_sym__Alignof] = ACTIONS(3556), - [anon_sym_offsetof] = ACTIONS(3556), - [anon_sym__Generic] = ACTIONS(3556), - [anon_sym_asm] = ACTIONS(3556), - [anon_sym___asm__] = ACTIONS(3556), - [sym_number_literal] = ACTIONS(3558), - [anon_sym_L_SQUOTE] = ACTIONS(3558), - [anon_sym_u_SQUOTE] = ACTIONS(3558), - [anon_sym_U_SQUOTE] = ACTIONS(3558), - [anon_sym_u8_SQUOTE] = ACTIONS(3558), - [anon_sym_SQUOTE] = ACTIONS(3558), - [anon_sym_L_DQUOTE] = ACTIONS(3558), - [anon_sym_u_DQUOTE] = ACTIONS(3558), - [anon_sym_U_DQUOTE] = ACTIONS(3558), - [anon_sym_u8_DQUOTE] = ACTIONS(3558), - [anon_sym_DQUOTE] = ACTIONS(3558), - [sym_true] = ACTIONS(3556), - [sym_false] = ACTIONS(3556), - [anon_sym_NULL] = ACTIONS(3556), - [anon_sym_nullptr] = ACTIONS(3556), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3556), - [anon_sym_decltype] = ACTIONS(3556), - [anon_sym_virtual] = ACTIONS(3556), - [anon_sym_alignas] = ACTIONS(3556), - [anon_sym_explicit] = ACTIONS(3556), - [anon_sym_typename] = ACTIONS(3556), - [anon_sym_template] = ACTIONS(3556), - [anon_sym_operator] = ACTIONS(3556), - [anon_sym_try] = ACTIONS(3556), - [anon_sym_delete] = ACTIONS(3556), - [anon_sym_throw] = ACTIONS(3556), - [anon_sym_namespace] = ACTIONS(3556), - [anon_sym_using] = ACTIONS(3556), - [anon_sym_static_assert] = ACTIONS(3556), - [anon_sym_concept] = ACTIONS(3556), - [anon_sym_co_return] = ACTIONS(3556), - [anon_sym_co_yield] = ACTIONS(3556), - [anon_sym_R_DQUOTE] = ACTIONS(3558), - [anon_sym_LR_DQUOTE] = ACTIONS(3558), - [anon_sym_uR_DQUOTE] = ACTIONS(3558), - [anon_sym_UR_DQUOTE] = ACTIONS(3558), - [anon_sym_u8R_DQUOTE] = ACTIONS(3558), - [anon_sym_co_await] = ACTIONS(3556), - [anon_sym_new] = ACTIONS(3556), - [anon_sym_requires] = ACTIONS(3556), - [sym_this] = ACTIONS(3556), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3558), - [sym_semgrep_named_ellipsis] = ACTIONS(3558), + [sym_identifier] = ACTIONS(3577), + [aux_sym_preproc_include_token1] = ACTIONS(3577), + [aux_sym_preproc_def_token1] = ACTIONS(3577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3579), + [aux_sym_preproc_if_token1] = ACTIONS(3577), + [aux_sym_preproc_if_token2] = ACTIONS(3577), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3577), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3577), + [aux_sym_preproc_else_token1] = ACTIONS(3577), + [aux_sym_preproc_elif_token1] = ACTIONS(3577), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3577), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3577), + [sym_preproc_directive] = ACTIONS(3577), + [anon_sym_LPAREN2] = ACTIONS(3579), + [anon_sym_BANG] = ACTIONS(3579), + [anon_sym_TILDE] = ACTIONS(3579), + [anon_sym_DASH] = ACTIONS(3577), + [anon_sym_PLUS] = ACTIONS(3577), + [anon_sym_STAR] = ACTIONS(3579), + [anon_sym_AMP_AMP] = ACTIONS(3579), + [anon_sym_AMP] = ACTIONS(3577), + [anon_sym_SEMI] = ACTIONS(3579), + [anon_sym___extension__] = ACTIONS(3577), + [anon_sym_typedef] = ACTIONS(3577), + [anon_sym_extern] = ACTIONS(3577), + [anon_sym___attribute__] = ACTIONS(3577), + [anon_sym_COLON_COLON] = ACTIONS(3579), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3579), + [anon_sym___declspec] = ACTIONS(3577), + [anon_sym___based] = ACTIONS(3577), + [anon_sym___cdecl] = ACTIONS(3577), + [anon_sym___clrcall] = ACTIONS(3577), + [anon_sym___stdcall] = ACTIONS(3577), + [anon_sym___fastcall] = ACTIONS(3577), + [anon_sym___thiscall] = ACTIONS(3577), + [anon_sym___vectorcall] = ACTIONS(3577), + [anon_sym_LBRACE] = ACTIONS(3579), + [anon_sym_signed] = ACTIONS(3577), + [anon_sym_unsigned] = ACTIONS(3577), + [anon_sym_long] = ACTIONS(3577), + [anon_sym_short] = ACTIONS(3577), + [anon_sym_LBRACK] = ACTIONS(3577), + [anon_sym_static] = ACTIONS(3577), + [anon_sym_register] = ACTIONS(3577), + [anon_sym_inline] = ACTIONS(3577), + [anon_sym___inline] = ACTIONS(3577), + [anon_sym___inline__] = ACTIONS(3577), + [anon_sym___forceinline] = ACTIONS(3577), + [anon_sym_thread_local] = ACTIONS(3577), + [anon_sym___thread] = ACTIONS(3577), + [anon_sym_const] = ACTIONS(3577), + [anon_sym_constexpr] = ACTIONS(3577), + [anon_sym_volatile] = ACTIONS(3577), + [anon_sym_restrict] = ACTIONS(3577), + [anon_sym___restrict__] = ACTIONS(3577), + [anon_sym__Atomic] = ACTIONS(3577), + [anon_sym__Noreturn] = ACTIONS(3577), + [anon_sym_noreturn] = ACTIONS(3577), + [anon_sym_mutable] = ACTIONS(3577), + [anon_sym_constinit] = ACTIONS(3577), + [anon_sym_consteval] = ACTIONS(3577), + [sym_primitive_type] = ACTIONS(3577), + [anon_sym_enum] = ACTIONS(3577), + [anon_sym_class] = ACTIONS(3577), + [anon_sym_struct] = ACTIONS(3577), + [anon_sym_union] = ACTIONS(3577), + [anon_sym_if] = ACTIONS(3577), + [anon_sym_switch] = ACTIONS(3577), + [anon_sym_case] = ACTIONS(3577), + [anon_sym_default] = ACTIONS(3577), + [anon_sym_while] = ACTIONS(3577), + [anon_sym_do] = ACTIONS(3577), + [anon_sym_for] = ACTIONS(3577), + [anon_sym_return] = ACTIONS(3577), + [anon_sym_break] = ACTIONS(3577), + [anon_sym_continue] = ACTIONS(3577), + [anon_sym_goto] = ACTIONS(3577), + [anon_sym___try] = ACTIONS(3577), + [anon_sym___leave] = ACTIONS(3577), + [anon_sym_not] = ACTIONS(3577), + [anon_sym_compl] = ACTIONS(3577), + [anon_sym_DASH_DASH] = ACTIONS(3579), + [anon_sym_PLUS_PLUS] = ACTIONS(3579), + [anon_sym_sizeof] = ACTIONS(3577), + [anon_sym___alignof__] = ACTIONS(3577), + [anon_sym___alignof] = ACTIONS(3577), + [anon_sym__alignof] = ACTIONS(3577), + [anon_sym_alignof] = ACTIONS(3577), + [anon_sym__Alignof] = ACTIONS(3577), + [anon_sym_offsetof] = ACTIONS(3577), + [anon_sym__Generic] = ACTIONS(3577), + [anon_sym_asm] = ACTIONS(3577), + [anon_sym___asm__] = ACTIONS(3577), + [sym_number_literal] = ACTIONS(3579), + [anon_sym_L_SQUOTE] = ACTIONS(3579), + [anon_sym_u_SQUOTE] = ACTIONS(3579), + [anon_sym_U_SQUOTE] = ACTIONS(3579), + [anon_sym_u8_SQUOTE] = ACTIONS(3579), + [anon_sym_SQUOTE] = ACTIONS(3579), + [anon_sym_L_DQUOTE] = ACTIONS(3579), + [anon_sym_u_DQUOTE] = ACTIONS(3579), + [anon_sym_U_DQUOTE] = ACTIONS(3579), + [anon_sym_u8_DQUOTE] = ACTIONS(3579), + [anon_sym_DQUOTE] = ACTIONS(3579), + [sym_true] = ACTIONS(3577), + [sym_false] = ACTIONS(3577), + [anon_sym_NULL] = ACTIONS(3577), + [anon_sym_nullptr] = ACTIONS(3577), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3577), + [anon_sym_decltype] = ACTIONS(3577), + [anon_sym_virtual] = ACTIONS(3577), + [anon_sym_alignas] = ACTIONS(3577), + [anon_sym_explicit] = ACTIONS(3577), + [anon_sym_typename] = ACTIONS(3577), + [anon_sym_template] = ACTIONS(3577), + [anon_sym_operator] = ACTIONS(3577), + [anon_sym_try] = ACTIONS(3577), + [anon_sym_delete] = ACTIONS(3577), + [anon_sym_throw] = ACTIONS(3577), + [anon_sym_namespace] = ACTIONS(3577), + [anon_sym_using] = ACTIONS(3577), + [anon_sym_static_assert] = ACTIONS(3577), + [anon_sym_concept] = ACTIONS(3577), + [anon_sym_co_return] = ACTIONS(3577), + [anon_sym_co_yield] = ACTIONS(3577), + [anon_sym_R_DQUOTE] = ACTIONS(3579), + [anon_sym_LR_DQUOTE] = ACTIONS(3579), + [anon_sym_uR_DQUOTE] = ACTIONS(3579), + [anon_sym_UR_DQUOTE] = ACTIONS(3579), + [anon_sym_u8R_DQUOTE] = ACTIONS(3579), + [anon_sym_co_await] = ACTIONS(3577), + [anon_sym_new] = ACTIONS(3577), + [anon_sym_requires] = ACTIONS(3577), + [sym_this] = ACTIONS(3577), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3579), + [sym_semgrep_named_ellipsis] = ACTIONS(3579), }, [420] = { - [sym_identifier] = ACTIONS(3560), - [aux_sym_preproc_include_token1] = ACTIONS(3560), - [aux_sym_preproc_def_token1] = ACTIONS(3560), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3562), - [aux_sym_preproc_if_token1] = ACTIONS(3560), - [aux_sym_preproc_if_token2] = ACTIONS(3560), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3560), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3560), - [aux_sym_preproc_else_token1] = ACTIONS(3560), - [aux_sym_preproc_elif_token1] = ACTIONS(3560), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3560), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3560), - [sym_preproc_directive] = ACTIONS(3560), - [anon_sym_LPAREN2] = ACTIONS(3562), - [anon_sym_BANG] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_DASH] = ACTIONS(3560), - [anon_sym_PLUS] = ACTIONS(3560), - [anon_sym_STAR] = ACTIONS(3562), - [anon_sym_AMP_AMP] = ACTIONS(3562), - [anon_sym_AMP] = ACTIONS(3560), - [anon_sym_SEMI] = ACTIONS(3562), - [anon_sym___extension__] = ACTIONS(3560), - [anon_sym_typedef] = ACTIONS(3560), - [anon_sym_extern] = ACTIONS(3560), - [anon_sym___attribute__] = ACTIONS(3560), - [anon_sym_COLON_COLON] = ACTIONS(3562), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3562), - [anon_sym___declspec] = ACTIONS(3560), - [anon_sym___based] = ACTIONS(3560), - [anon_sym___cdecl] = ACTIONS(3560), - [anon_sym___clrcall] = ACTIONS(3560), - [anon_sym___stdcall] = ACTIONS(3560), - [anon_sym___fastcall] = ACTIONS(3560), - [anon_sym___thiscall] = ACTIONS(3560), - [anon_sym___vectorcall] = ACTIONS(3560), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_signed] = ACTIONS(3560), - [anon_sym_unsigned] = ACTIONS(3560), - [anon_sym_long] = ACTIONS(3560), - [anon_sym_short] = ACTIONS(3560), - [anon_sym_LBRACK] = ACTIONS(3560), - [anon_sym_static] = ACTIONS(3560), - [anon_sym_register] = ACTIONS(3560), - [anon_sym_inline] = ACTIONS(3560), - [anon_sym___inline] = ACTIONS(3560), - [anon_sym___inline__] = ACTIONS(3560), - [anon_sym___forceinline] = ACTIONS(3560), - [anon_sym_thread_local] = ACTIONS(3560), - [anon_sym___thread] = ACTIONS(3560), - [anon_sym_const] = ACTIONS(3560), - [anon_sym_constexpr] = ACTIONS(3560), - [anon_sym_volatile] = ACTIONS(3560), - [anon_sym_restrict] = ACTIONS(3560), - [anon_sym___restrict__] = ACTIONS(3560), - [anon_sym__Atomic] = ACTIONS(3560), - [anon_sym__Noreturn] = ACTIONS(3560), - [anon_sym_noreturn] = ACTIONS(3560), - [anon_sym_mutable] = ACTIONS(3560), - [anon_sym_constinit] = ACTIONS(3560), - [anon_sym_consteval] = ACTIONS(3560), - [sym_primitive_type] = ACTIONS(3560), - [anon_sym_enum] = ACTIONS(3560), - [anon_sym_class] = ACTIONS(3560), - [anon_sym_struct] = ACTIONS(3560), - [anon_sym_union] = ACTIONS(3560), - [anon_sym_if] = ACTIONS(3560), - [anon_sym_switch] = ACTIONS(3560), - [anon_sym_case] = ACTIONS(3560), - [anon_sym_default] = ACTIONS(3560), - [anon_sym_while] = ACTIONS(3560), - [anon_sym_do] = ACTIONS(3560), - [anon_sym_for] = ACTIONS(3560), - [anon_sym_return] = ACTIONS(3560), - [anon_sym_break] = ACTIONS(3560), - [anon_sym_continue] = ACTIONS(3560), - [anon_sym_goto] = ACTIONS(3560), - [anon_sym___try] = ACTIONS(3560), - [anon_sym___leave] = ACTIONS(3560), - [anon_sym_not] = ACTIONS(3560), - [anon_sym_compl] = ACTIONS(3560), - [anon_sym_DASH_DASH] = ACTIONS(3562), - [anon_sym_PLUS_PLUS] = ACTIONS(3562), - [anon_sym_sizeof] = ACTIONS(3560), - [anon_sym___alignof__] = ACTIONS(3560), - [anon_sym___alignof] = ACTIONS(3560), - [anon_sym__alignof] = ACTIONS(3560), - [anon_sym_alignof] = ACTIONS(3560), - [anon_sym__Alignof] = ACTIONS(3560), - [anon_sym_offsetof] = ACTIONS(3560), - [anon_sym__Generic] = ACTIONS(3560), - [anon_sym_asm] = ACTIONS(3560), - [anon_sym___asm__] = ACTIONS(3560), - [sym_number_literal] = ACTIONS(3562), - [anon_sym_L_SQUOTE] = ACTIONS(3562), - [anon_sym_u_SQUOTE] = ACTIONS(3562), - [anon_sym_U_SQUOTE] = ACTIONS(3562), - [anon_sym_u8_SQUOTE] = ACTIONS(3562), - [anon_sym_SQUOTE] = ACTIONS(3562), - [anon_sym_L_DQUOTE] = ACTIONS(3562), - [anon_sym_u_DQUOTE] = ACTIONS(3562), - [anon_sym_U_DQUOTE] = ACTIONS(3562), - [anon_sym_u8_DQUOTE] = ACTIONS(3562), - [anon_sym_DQUOTE] = ACTIONS(3562), - [sym_true] = ACTIONS(3560), - [sym_false] = ACTIONS(3560), - [anon_sym_NULL] = ACTIONS(3560), - [anon_sym_nullptr] = ACTIONS(3560), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3560), - [anon_sym_decltype] = ACTIONS(3560), - [anon_sym_virtual] = ACTIONS(3560), - [anon_sym_alignas] = ACTIONS(3560), - [anon_sym_explicit] = ACTIONS(3560), - [anon_sym_typename] = ACTIONS(3560), - [anon_sym_template] = ACTIONS(3560), - [anon_sym_operator] = ACTIONS(3560), - [anon_sym_try] = ACTIONS(3560), - [anon_sym_delete] = ACTIONS(3560), - [anon_sym_throw] = ACTIONS(3560), - [anon_sym_namespace] = ACTIONS(3560), - [anon_sym_using] = ACTIONS(3560), - [anon_sym_static_assert] = ACTIONS(3560), - [anon_sym_concept] = ACTIONS(3560), - [anon_sym_co_return] = ACTIONS(3560), - [anon_sym_co_yield] = ACTIONS(3560), - [anon_sym_R_DQUOTE] = ACTIONS(3562), - [anon_sym_LR_DQUOTE] = ACTIONS(3562), - [anon_sym_uR_DQUOTE] = ACTIONS(3562), - [anon_sym_UR_DQUOTE] = ACTIONS(3562), - [anon_sym_u8R_DQUOTE] = ACTIONS(3562), - [anon_sym_co_await] = ACTIONS(3560), - [anon_sym_new] = ACTIONS(3560), - [anon_sym_requires] = ACTIONS(3560), - [sym_this] = ACTIONS(3560), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3562), - [sym_semgrep_named_ellipsis] = ACTIONS(3562), + [sym_identifier] = ACTIONS(3581), + [aux_sym_preproc_include_token1] = ACTIONS(3581), + [aux_sym_preproc_def_token1] = ACTIONS(3581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3583), + [aux_sym_preproc_if_token1] = ACTIONS(3581), + [aux_sym_preproc_if_token2] = ACTIONS(3581), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3581), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3581), + [aux_sym_preproc_else_token1] = ACTIONS(3581), + [aux_sym_preproc_elif_token1] = ACTIONS(3581), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3581), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3581), + [sym_preproc_directive] = ACTIONS(3581), + [anon_sym_LPAREN2] = ACTIONS(3583), + [anon_sym_BANG] = ACTIONS(3583), + [anon_sym_TILDE] = ACTIONS(3583), + [anon_sym_DASH] = ACTIONS(3581), + [anon_sym_PLUS] = ACTIONS(3581), + [anon_sym_STAR] = ACTIONS(3583), + [anon_sym_AMP_AMP] = ACTIONS(3583), + [anon_sym_AMP] = ACTIONS(3581), + [anon_sym_SEMI] = ACTIONS(3583), + [anon_sym___extension__] = ACTIONS(3581), + [anon_sym_typedef] = ACTIONS(3581), + [anon_sym_extern] = ACTIONS(3581), + [anon_sym___attribute__] = ACTIONS(3581), + [anon_sym_COLON_COLON] = ACTIONS(3583), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3583), + [anon_sym___declspec] = ACTIONS(3581), + [anon_sym___based] = ACTIONS(3581), + [anon_sym___cdecl] = ACTIONS(3581), + [anon_sym___clrcall] = ACTIONS(3581), + [anon_sym___stdcall] = ACTIONS(3581), + [anon_sym___fastcall] = ACTIONS(3581), + [anon_sym___thiscall] = ACTIONS(3581), + [anon_sym___vectorcall] = ACTIONS(3581), + [anon_sym_LBRACE] = ACTIONS(3583), + [anon_sym_signed] = ACTIONS(3581), + [anon_sym_unsigned] = ACTIONS(3581), + [anon_sym_long] = ACTIONS(3581), + [anon_sym_short] = ACTIONS(3581), + [anon_sym_LBRACK] = ACTIONS(3581), + [anon_sym_static] = ACTIONS(3581), + [anon_sym_register] = ACTIONS(3581), + [anon_sym_inline] = ACTIONS(3581), + [anon_sym___inline] = ACTIONS(3581), + [anon_sym___inline__] = ACTIONS(3581), + [anon_sym___forceinline] = ACTIONS(3581), + [anon_sym_thread_local] = ACTIONS(3581), + [anon_sym___thread] = ACTIONS(3581), + [anon_sym_const] = ACTIONS(3581), + [anon_sym_constexpr] = ACTIONS(3581), + [anon_sym_volatile] = ACTIONS(3581), + [anon_sym_restrict] = ACTIONS(3581), + [anon_sym___restrict__] = ACTIONS(3581), + [anon_sym__Atomic] = ACTIONS(3581), + [anon_sym__Noreturn] = ACTIONS(3581), + [anon_sym_noreturn] = ACTIONS(3581), + [anon_sym_mutable] = ACTIONS(3581), + [anon_sym_constinit] = ACTIONS(3581), + [anon_sym_consteval] = ACTIONS(3581), + [sym_primitive_type] = ACTIONS(3581), + [anon_sym_enum] = ACTIONS(3581), + [anon_sym_class] = ACTIONS(3581), + [anon_sym_struct] = ACTIONS(3581), + [anon_sym_union] = ACTIONS(3581), + [anon_sym_if] = ACTIONS(3581), + [anon_sym_switch] = ACTIONS(3581), + [anon_sym_case] = ACTIONS(3581), + [anon_sym_default] = ACTIONS(3581), + [anon_sym_while] = ACTIONS(3581), + [anon_sym_do] = ACTIONS(3581), + [anon_sym_for] = ACTIONS(3581), + [anon_sym_return] = ACTIONS(3581), + [anon_sym_break] = ACTIONS(3581), + [anon_sym_continue] = ACTIONS(3581), + [anon_sym_goto] = ACTIONS(3581), + [anon_sym___try] = ACTIONS(3581), + [anon_sym___leave] = ACTIONS(3581), + [anon_sym_not] = ACTIONS(3581), + [anon_sym_compl] = ACTIONS(3581), + [anon_sym_DASH_DASH] = ACTIONS(3583), + [anon_sym_PLUS_PLUS] = ACTIONS(3583), + [anon_sym_sizeof] = ACTIONS(3581), + [anon_sym___alignof__] = ACTIONS(3581), + [anon_sym___alignof] = ACTIONS(3581), + [anon_sym__alignof] = ACTIONS(3581), + [anon_sym_alignof] = ACTIONS(3581), + [anon_sym__Alignof] = ACTIONS(3581), + [anon_sym_offsetof] = ACTIONS(3581), + [anon_sym__Generic] = ACTIONS(3581), + [anon_sym_asm] = ACTIONS(3581), + [anon_sym___asm__] = ACTIONS(3581), + [sym_number_literal] = ACTIONS(3583), + [anon_sym_L_SQUOTE] = ACTIONS(3583), + [anon_sym_u_SQUOTE] = ACTIONS(3583), + [anon_sym_U_SQUOTE] = ACTIONS(3583), + [anon_sym_u8_SQUOTE] = ACTIONS(3583), + [anon_sym_SQUOTE] = ACTIONS(3583), + [anon_sym_L_DQUOTE] = ACTIONS(3583), + [anon_sym_u_DQUOTE] = ACTIONS(3583), + [anon_sym_U_DQUOTE] = ACTIONS(3583), + [anon_sym_u8_DQUOTE] = ACTIONS(3583), + [anon_sym_DQUOTE] = ACTIONS(3583), + [sym_true] = ACTIONS(3581), + [sym_false] = ACTIONS(3581), + [anon_sym_NULL] = ACTIONS(3581), + [anon_sym_nullptr] = ACTIONS(3581), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3581), + [anon_sym_decltype] = ACTIONS(3581), + [anon_sym_virtual] = ACTIONS(3581), + [anon_sym_alignas] = ACTIONS(3581), + [anon_sym_explicit] = ACTIONS(3581), + [anon_sym_typename] = ACTIONS(3581), + [anon_sym_template] = ACTIONS(3581), + [anon_sym_operator] = ACTIONS(3581), + [anon_sym_try] = ACTIONS(3581), + [anon_sym_delete] = ACTIONS(3581), + [anon_sym_throw] = ACTIONS(3581), + [anon_sym_namespace] = ACTIONS(3581), + [anon_sym_using] = ACTIONS(3581), + [anon_sym_static_assert] = ACTIONS(3581), + [anon_sym_concept] = ACTIONS(3581), + [anon_sym_co_return] = ACTIONS(3581), + [anon_sym_co_yield] = ACTIONS(3581), + [anon_sym_R_DQUOTE] = ACTIONS(3583), + [anon_sym_LR_DQUOTE] = ACTIONS(3583), + [anon_sym_uR_DQUOTE] = ACTIONS(3583), + [anon_sym_UR_DQUOTE] = ACTIONS(3583), + [anon_sym_u8R_DQUOTE] = ACTIONS(3583), + [anon_sym_co_await] = ACTIONS(3581), + [anon_sym_new] = ACTIONS(3581), + [anon_sym_requires] = ACTIONS(3581), + [sym_this] = ACTIONS(3581), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3583), + [sym_semgrep_named_ellipsis] = ACTIONS(3583), }, [421] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5663), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8363), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(8615), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3564), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [sym_type_qualifier] = STATE(4685), + [sym_type_specifier] = STATE(5782), + [sym_sized_type_specifier] = STATE(3293), + [sym_enum_specifier] = STATE(3293), + [sym_struct_specifier] = STATE(3293), + [sym_union_specifier] = STATE(3293), + [sym_expression] = STATE(5115), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_type_descriptor] = STATE(7963), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_placeholder_type_specifier] = STATE(3293), + [sym_decltype_auto] = STATE(3292), + [sym_decltype] = STATE(2572), + [sym_class_specifier] = STATE(3293), + [sym_class_name] = STATE(8965), + [sym_dependent_type] = STATE(3293), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_type_parameter_pack_expansion] = STATE(8562), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6620), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(6338), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [aux_sym_type_definition_type_repeat1] = STATE(4685), + [aux_sym_sized_type_specifier_repeat1] = STATE(2573), + [sym_identifier] = ACTIONS(3310), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_signed] = ACTIONS(3324), + [anon_sym_unsigned] = ACTIONS(3324), + [anon_sym_long] = ACTIONS(3324), + [anon_sym_short] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3330), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_union] = ACTIONS(3334), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3358), + [anon_sym_decltype] = ACTIONS(3360), + [anon_sym_typename] = ACTIONS(3362), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_GT2] = ACTIONS(3585), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), }, [422] = { - [sym_else_clause] = STATE(488), - [sym_identifier] = ACTIONS(3082), - [aux_sym_preproc_include_token1] = ACTIONS(3082), - [aux_sym_preproc_def_token1] = ACTIONS(3082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3084), - [aux_sym_preproc_if_token1] = ACTIONS(3082), - [aux_sym_preproc_if_token2] = ACTIONS(3082), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3082), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3082), - [aux_sym_preproc_else_token1] = ACTIONS(3082), - [aux_sym_preproc_elif_token1] = ACTIONS(3082), - [sym_preproc_directive] = ACTIONS(3082), - [anon_sym_LPAREN2] = ACTIONS(3084), - [anon_sym_BANG] = ACTIONS(3084), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_AMP_AMP] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3084), - [anon_sym___extension__] = ACTIONS(3082), - [anon_sym_typedef] = ACTIONS(3082), - [anon_sym_extern] = ACTIONS(3082), - [anon_sym___attribute__] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(3084), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3084), - [anon_sym___declspec] = ACTIONS(3082), - [anon_sym___based] = ACTIONS(3082), - [anon_sym___cdecl] = ACTIONS(3082), - [anon_sym___clrcall] = ACTIONS(3082), - [anon_sym___stdcall] = ACTIONS(3082), - [anon_sym___fastcall] = ACTIONS(3082), - [anon_sym___thiscall] = ACTIONS(3082), - [anon_sym___vectorcall] = ACTIONS(3082), - [anon_sym_LBRACE] = ACTIONS(3084), - [anon_sym_signed] = ACTIONS(3082), - [anon_sym_unsigned] = ACTIONS(3082), - [anon_sym_long] = ACTIONS(3082), - [anon_sym_short] = ACTIONS(3082), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_static] = ACTIONS(3082), - [anon_sym_register] = ACTIONS(3082), - [anon_sym_inline] = ACTIONS(3082), - [anon_sym___inline] = ACTIONS(3082), - [anon_sym___inline__] = ACTIONS(3082), - [anon_sym___forceinline] = ACTIONS(3082), - [anon_sym_thread_local] = ACTIONS(3082), - [anon_sym___thread] = ACTIONS(3082), - [anon_sym_const] = ACTIONS(3082), - [anon_sym_constexpr] = ACTIONS(3082), - [anon_sym_volatile] = ACTIONS(3082), - [anon_sym_restrict] = ACTIONS(3082), - [anon_sym___restrict__] = ACTIONS(3082), - [anon_sym__Atomic] = ACTIONS(3082), - [anon_sym__Noreturn] = ACTIONS(3082), - [anon_sym_noreturn] = ACTIONS(3082), - [anon_sym_mutable] = ACTIONS(3082), - [anon_sym_constinit] = ACTIONS(3082), - [anon_sym_consteval] = ACTIONS(3082), - [sym_primitive_type] = ACTIONS(3082), - [anon_sym_enum] = ACTIONS(3082), - [anon_sym_class] = ACTIONS(3082), - [anon_sym_struct] = ACTIONS(3082), - [anon_sym_union] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_else] = ACTIONS(3530), - [anon_sym_switch] = ACTIONS(3082), - [anon_sym_case] = ACTIONS(3082), - [anon_sym_default] = ACTIONS(3082), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_do] = ACTIONS(3082), - [anon_sym_for] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_break] = ACTIONS(3082), - [anon_sym_continue] = ACTIONS(3082), - [anon_sym_goto] = ACTIONS(3082), - [anon_sym___try] = ACTIONS(3082), - [anon_sym___leave] = ACTIONS(3082), - [anon_sym_not] = ACTIONS(3082), - [anon_sym_compl] = ACTIONS(3082), - [anon_sym_DASH_DASH] = ACTIONS(3084), - [anon_sym_PLUS_PLUS] = ACTIONS(3084), - [anon_sym_sizeof] = ACTIONS(3082), - [anon_sym___alignof__] = ACTIONS(3082), - [anon_sym___alignof] = ACTIONS(3082), - [anon_sym__alignof] = ACTIONS(3082), - [anon_sym_alignof] = ACTIONS(3082), - [anon_sym__Alignof] = ACTIONS(3082), - [anon_sym_offsetof] = ACTIONS(3082), - [anon_sym__Generic] = ACTIONS(3082), - [anon_sym_asm] = ACTIONS(3082), - [anon_sym___asm__] = ACTIONS(3082), - [sym_number_literal] = ACTIONS(3084), - [anon_sym_L_SQUOTE] = ACTIONS(3084), - [anon_sym_u_SQUOTE] = ACTIONS(3084), - [anon_sym_U_SQUOTE] = ACTIONS(3084), - [anon_sym_u8_SQUOTE] = ACTIONS(3084), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_L_DQUOTE] = ACTIONS(3084), - [anon_sym_u_DQUOTE] = ACTIONS(3084), - [anon_sym_U_DQUOTE] = ACTIONS(3084), - [anon_sym_u8_DQUOTE] = ACTIONS(3084), - [anon_sym_DQUOTE] = ACTIONS(3084), - [sym_true] = ACTIONS(3082), - [sym_false] = ACTIONS(3082), - [anon_sym_NULL] = ACTIONS(3082), - [anon_sym_nullptr] = ACTIONS(3082), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3082), - [anon_sym_decltype] = ACTIONS(3082), - [anon_sym_virtual] = ACTIONS(3082), - [anon_sym_alignas] = ACTIONS(3082), - [anon_sym_explicit] = ACTIONS(3082), - [anon_sym_typename] = ACTIONS(3082), - [anon_sym_template] = ACTIONS(3082), - [anon_sym_operator] = ACTIONS(3082), - [anon_sym_try] = ACTIONS(3082), - [anon_sym_delete] = ACTIONS(3082), - [anon_sym_throw] = ACTIONS(3082), - [anon_sym_namespace] = ACTIONS(3082), - [anon_sym_using] = ACTIONS(3082), - [anon_sym_static_assert] = ACTIONS(3082), - [anon_sym_concept] = ACTIONS(3082), - [anon_sym_co_return] = ACTIONS(3082), - [anon_sym_co_yield] = ACTIONS(3082), - [anon_sym_R_DQUOTE] = ACTIONS(3084), - [anon_sym_LR_DQUOTE] = ACTIONS(3084), - [anon_sym_uR_DQUOTE] = ACTIONS(3084), - [anon_sym_UR_DQUOTE] = ACTIONS(3084), - [anon_sym_u8R_DQUOTE] = ACTIONS(3084), - [anon_sym_co_await] = ACTIONS(3082), - [anon_sym_new] = ACTIONS(3082), - [anon_sym_requires] = ACTIONS(3082), - [sym_this] = ACTIONS(3082), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3084), - [sym_semgrep_named_ellipsis] = ACTIONS(3084), + [sym_identifier] = ACTIONS(3587), + [aux_sym_preproc_include_token1] = ACTIONS(3587), + [aux_sym_preproc_def_token1] = ACTIONS(3587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3589), + [aux_sym_preproc_if_token1] = ACTIONS(3587), + [aux_sym_preproc_if_token2] = ACTIONS(3587), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3587), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3587), + [aux_sym_preproc_else_token1] = ACTIONS(3587), + [aux_sym_preproc_elif_token1] = ACTIONS(3587), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3587), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3587), + [sym_preproc_directive] = ACTIONS(3587), + [anon_sym_LPAREN2] = ACTIONS(3589), + [anon_sym_BANG] = ACTIONS(3589), + [anon_sym_TILDE] = ACTIONS(3589), + [anon_sym_DASH] = ACTIONS(3587), + [anon_sym_PLUS] = ACTIONS(3587), + [anon_sym_STAR] = ACTIONS(3589), + [anon_sym_AMP_AMP] = ACTIONS(3589), + [anon_sym_AMP] = ACTIONS(3587), + [anon_sym_SEMI] = ACTIONS(3589), + [anon_sym___extension__] = ACTIONS(3587), + [anon_sym_typedef] = ACTIONS(3587), + [anon_sym_extern] = ACTIONS(3587), + [anon_sym___attribute__] = ACTIONS(3587), + [anon_sym_COLON_COLON] = ACTIONS(3589), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3589), + [anon_sym___declspec] = ACTIONS(3587), + [anon_sym___based] = ACTIONS(3587), + [anon_sym___cdecl] = ACTIONS(3587), + [anon_sym___clrcall] = ACTIONS(3587), + [anon_sym___stdcall] = ACTIONS(3587), + [anon_sym___fastcall] = ACTIONS(3587), + [anon_sym___thiscall] = ACTIONS(3587), + [anon_sym___vectorcall] = ACTIONS(3587), + [anon_sym_LBRACE] = ACTIONS(3589), + [anon_sym_signed] = ACTIONS(3587), + [anon_sym_unsigned] = ACTIONS(3587), + [anon_sym_long] = ACTIONS(3587), + [anon_sym_short] = ACTIONS(3587), + [anon_sym_LBRACK] = ACTIONS(3587), + [anon_sym_static] = ACTIONS(3587), + [anon_sym_register] = ACTIONS(3587), + [anon_sym_inline] = ACTIONS(3587), + [anon_sym___inline] = ACTIONS(3587), + [anon_sym___inline__] = ACTIONS(3587), + [anon_sym___forceinline] = ACTIONS(3587), + [anon_sym_thread_local] = ACTIONS(3587), + [anon_sym___thread] = ACTIONS(3587), + [anon_sym_const] = ACTIONS(3587), + [anon_sym_constexpr] = ACTIONS(3587), + [anon_sym_volatile] = ACTIONS(3587), + [anon_sym_restrict] = ACTIONS(3587), + [anon_sym___restrict__] = ACTIONS(3587), + [anon_sym__Atomic] = ACTIONS(3587), + [anon_sym__Noreturn] = ACTIONS(3587), + [anon_sym_noreturn] = ACTIONS(3587), + [anon_sym_mutable] = ACTIONS(3587), + [anon_sym_constinit] = ACTIONS(3587), + [anon_sym_consteval] = ACTIONS(3587), + [sym_primitive_type] = ACTIONS(3587), + [anon_sym_enum] = ACTIONS(3587), + [anon_sym_class] = ACTIONS(3587), + [anon_sym_struct] = ACTIONS(3587), + [anon_sym_union] = ACTIONS(3587), + [anon_sym_if] = ACTIONS(3587), + [anon_sym_switch] = ACTIONS(3587), + [anon_sym_case] = ACTIONS(3587), + [anon_sym_default] = ACTIONS(3587), + [anon_sym_while] = ACTIONS(3587), + [anon_sym_do] = ACTIONS(3587), + [anon_sym_for] = ACTIONS(3587), + [anon_sym_return] = ACTIONS(3587), + [anon_sym_break] = ACTIONS(3587), + [anon_sym_continue] = ACTIONS(3587), + [anon_sym_goto] = ACTIONS(3587), + [anon_sym___try] = ACTIONS(3587), + [anon_sym___leave] = ACTIONS(3587), + [anon_sym_not] = ACTIONS(3587), + [anon_sym_compl] = ACTIONS(3587), + [anon_sym_DASH_DASH] = ACTIONS(3589), + [anon_sym_PLUS_PLUS] = ACTIONS(3589), + [anon_sym_sizeof] = ACTIONS(3587), + [anon_sym___alignof__] = ACTIONS(3587), + [anon_sym___alignof] = ACTIONS(3587), + [anon_sym__alignof] = ACTIONS(3587), + [anon_sym_alignof] = ACTIONS(3587), + [anon_sym__Alignof] = ACTIONS(3587), + [anon_sym_offsetof] = ACTIONS(3587), + [anon_sym__Generic] = ACTIONS(3587), + [anon_sym_asm] = ACTIONS(3587), + [anon_sym___asm__] = ACTIONS(3587), + [sym_number_literal] = ACTIONS(3589), + [anon_sym_L_SQUOTE] = ACTIONS(3589), + [anon_sym_u_SQUOTE] = ACTIONS(3589), + [anon_sym_U_SQUOTE] = ACTIONS(3589), + [anon_sym_u8_SQUOTE] = ACTIONS(3589), + [anon_sym_SQUOTE] = ACTIONS(3589), + [anon_sym_L_DQUOTE] = ACTIONS(3589), + [anon_sym_u_DQUOTE] = ACTIONS(3589), + [anon_sym_U_DQUOTE] = ACTIONS(3589), + [anon_sym_u8_DQUOTE] = ACTIONS(3589), + [anon_sym_DQUOTE] = ACTIONS(3589), + [sym_true] = ACTIONS(3587), + [sym_false] = ACTIONS(3587), + [anon_sym_NULL] = ACTIONS(3587), + [anon_sym_nullptr] = ACTIONS(3587), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3587), + [anon_sym_decltype] = ACTIONS(3587), + [anon_sym_virtual] = ACTIONS(3587), + [anon_sym_alignas] = ACTIONS(3587), + [anon_sym_explicit] = ACTIONS(3587), + [anon_sym_typename] = ACTIONS(3587), + [anon_sym_template] = ACTIONS(3587), + [anon_sym_operator] = ACTIONS(3587), + [anon_sym_try] = ACTIONS(3587), + [anon_sym_delete] = ACTIONS(3587), + [anon_sym_throw] = ACTIONS(3587), + [anon_sym_namespace] = ACTIONS(3587), + [anon_sym_using] = ACTIONS(3587), + [anon_sym_static_assert] = ACTIONS(3587), + [anon_sym_concept] = ACTIONS(3587), + [anon_sym_co_return] = ACTIONS(3587), + [anon_sym_co_yield] = ACTIONS(3587), + [anon_sym_R_DQUOTE] = ACTIONS(3589), + [anon_sym_LR_DQUOTE] = ACTIONS(3589), + [anon_sym_uR_DQUOTE] = ACTIONS(3589), + [anon_sym_UR_DQUOTE] = ACTIONS(3589), + [anon_sym_u8R_DQUOTE] = ACTIONS(3589), + [anon_sym_co_await] = ACTIONS(3587), + [anon_sym_new] = ACTIONS(3587), + [anon_sym_requires] = ACTIONS(3587), + [sym_this] = ACTIONS(3587), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3589), + [sym_semgrep_named_ellipsis] = ACTIONS(3589), }, [423] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5664), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8367), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(8628), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3566), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [sym_type_qualifier] = STATE(4685), + [sym_type_specifier] = STATE(5782), + [sym_sized_type_specifier] = STATE(3293), + [sym_enum_specifier] = STATE(3293), + [sym_struct_specifier] = STATE(3293), + [sym_union_specifier] = STATE(3293), + [sym_expression] = STATE(5116), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_type_descriptor] = STATE(7969), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_placeholder_type_specifier] = STATE(3293), + [sym_decltype_auto] = STATE(3292), + [sym_decltype] = STATE(2572), + [sym_class_specifier] = STATE(3293), + [sym_class_name] = STATE(8965), + [sym_dependent_type] = STATE(3293), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_type_parameter_pack_expansion] = STATE(8577), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6620), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(6338), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [aux_sym_type_definition_type_repeat1] = STATE(4685), + [aux_sym_sized_type_specifier_repeat1] = STATE(2573), + [sym_identifier] = ACTIONS(3310), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_signed] = ACTIONS(3324), + [anon_sym_unsigned] = ACTIONS(3324), + [anon_sym_long] = ACTIONS(3324), + [anon_sym_short] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3330), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_union] = ACTIONS(3334), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3358), + [anon_sym_decltype] = ACTIONS(3360), + [anon_sym_typename] = ACTIONS(3362), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_GT2] = ACTIONS(3591), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), }, [424] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5665), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8371), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(8637), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3568), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [sym_identifier] = ACTIONS(3593), + [aux_sym_preproc_include_token1] = ACTIONS(3593), + [aux_sym_preproc_def_token1] = ACTIONS(3593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3595), + [aux_sym_preproc_if_token1] = ACTIONS(3593), + [aux_sym_preproc_if_token2] = ACTIONS(3593), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3593), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3593), + [aux_sym_preproc_else_token1] = ACTIONS(3593), + [aux_sym_preproc_elif_token1] = ACTIONS(3593), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3593), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3593), + [sym_preproc_directive] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(3595), + [anon_sym_DASH] = ACTIONS(3593), + [anon_sym_PLUS] = ACTIONS(3593), + [anon_sym_STAR] = ACTIONS(3595), + [anon_sym_AMP_AMP] = ACTIONS(3595), + [anon_sym_AMP] = ACTIONS(3593), + [anon_sym_SEMI] = ACTIONS(3595), + [anon_sym___extension__] = ACTIONS(3593), + [anon_sym_typedef] = ACTIONS(3593), + [anon_sym_extern] = ACTIONS(3593), + [anon_sym___attribute__] = ACTIONS(3593), + [anon_sym_COLON_COLON] = ACTIONS(3595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3595), + [anon_sym___declspec] = ACTIONS(3593), + [anon_sym___based] = ACTIONS(3593), + [anon_sym___cdecl] = ACTIONS(3593), + [anon_sym___clrcall] = ACTIONS(3593), + [anon_sym___stdcall] = ACTIONS(3593), + [anon_sym___fastcall] = ACTIONS(3593), + [anon_sym___thiscall] = ACTIONS(3593), + [anon_sym___vectorcall] = ACTIONS(3593), + [anon_sym_LBRACE] = ACTIONS(3595), + [anon_sym_signed] = ACTIONS(3593), + [anon_sym_unsigned] = ACTIONS(3593), + [anon_sym_long] = ACTIONS(3593), + [anon_sym_short] = ACTIONS(3593), + [anon_sym_LBRACK] = ACTIONS(3593), + [anon_sym_static] = ACTIONS(3593), + [anon_sym_register] = ACTIONS(3593), + [anon_sym_inline] = ACTIONS(3593), + [anon_sym___inline] = ACTIONS(3593), + [anon_sym___inline__] = ACTIONS(3593), + [anon_sym___forceinline] = ACTIONS(3593), + [anon_sym_thread_local] = ACTIONS(3593), + [anon_sym___thread] = ACTIONS(3593), + [anon_sym_const] = ACTIONS(3593), + [anon_sym_constexpr] = ACTIONS(3593), + [anon_sym_volatile] = ACTIONS(3593), + [anon_sym_restrict] = ACTIONS(3593), + [anon_sym___restrict__] = ACTIONS(3593), + [anon_sym__Atomic] = ACTIONS(3593), + [anon_sym__Noreturn] = ACTIONS(3593), + [anon_sym_noreturn] = ACTIONS(3593), + [anon_sym_mutable] = ACTIONS(3593), + [anon_sym_constinit] = ACTIONS(3593), + [anon_sym_consteval] = ACTIONS(3593), + [sym_primitive_type] = ACTIONS(3593), + [anon_sym_enum] = ACTIONS(3593), + [anon_sym_class] = ACTIONS(3593), + [anon_sym_struct] = ACTIONS(3593), + [anon_sym_union] = ACTIONS(3593), + [anon_sym_if] = ACTIONS(3593), + [anon_sym_switch] = ACTIONS(3593), + [anon_sym_case] = ACTIONS(3593), + [anon_sym_default] = ACTIONS(3593), + [anon_sym_while] = ACTIONS(3593), + [anon_sym_do] = ACTIONS(3593), + [anon_sym_for] = ACTIONS(3593), + [anon_sym_return] = ACTIONS(3593), + [anon_sym_break] = ACTIONS(3593), + [anon_sym_continue] = ACTIONS(3593), + [anon_sym_goto] = ACTIONS(3593), + [anon_sym___try] = ACTIONS(3593), + [anon_sym___leave] = ACTIONS(3593), + [anon_sym_not] = ACTIONS(3593), + [anon_sym_compl] = ACTIONS(3593), + [anon_sym_DASH_DASH] = ACTIONS(3595), + [anon_sym_PLUS_PLUS] = ACTIONS(3595), + [anon_sym_sizeof] = ACTIONS(3593), + [anon_sym___alignof__] = ACTIONS(3593), + [anon_sym___alignof] = ACTIONS(3593), + [anon_sym__alignof] = ACTIONS(3593), + [anon_sym_alignof] = ACTIONS(3593), + [anon_sym__Alignof] = ACTIONS(3593), + [anon_sym_offsetof] = ACTIONS(3593), + [anon_sym__Generic] = ACTIONS(3593), + [anon_sym_asm] = ACTIONS(3593), + [anon_sym___asm__] = ACTIONS(3593), + [sym_number_literal] = ACTIONS(3595), + [anon_sym_L_SQUOTE] = ACTIONS(3595), + [anon_sym_u_SQUOTE] = ACTIONS(3595), + [anon_sym_U_SQUOTE] = ACTIONS(3595), + [anon_sym_u8_SQUOTE] = ACTIONS(3595), + [anon_sym_SQUOTE] = ACTIONS(3595), + [anon_sym_L_DQUOTE] = ACTIONS(3595), + [anon_sym_u_DQUOTE] = ACTIONS(3595), + [anon_sym_U_DQUOTE] = ACTIONS(3595), + [anon_sym_u8_DQUOTE] = ACTIONS(3595), + [anon_sym_DQUOTE] = ACTIONS(3595), + [sym_true] = ACTIONS(3593), + [sym_false] = ACTIONS(3593), + [anon_sym_NULL] = ACTIONS(3593), + [anon_sym_nullptr] = ACTIONS(3593), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3593), + [anon_sym_decltype] = ACTIONS(3593), + [anon_sym_virtual] = ACTIONS(3593), + [anon_sym_alignas] = ACTIONS(3593), + [anon_sym_explicit] = ACTIONS(3593), + [anon_sym_typename] = ACTIONS(3593), + [anon_sym_template] = ACTIONS(3593), + [anon_sym_operator] = ACTIONS(3593), + [anon_sym_try] = ACTIONS(3593), + [anon_sym_delete] = ACTIONS(3593), + [anon_sym_throw] = ACTIONS(3593), + [anon_sym_namespace] = ACTIONS(3593), + [anon_sym_using] = ACTIONS(3593), + [anon_sym_static_assert] = ACTIONS(3593), + [anon_sym_concept] = ACTIONS(3593), + [anon_sym_co_return] = ACTIONS(3593), + [anon_sym_co_yield] = ACTIONS(3593), + [anon_sym_R_DQUOTE] = ACTIONS(3595), + [anon_sym_LR_DQUOTE] = ACTIONS(3595), + [anon_sym_uR_DQUOTE] = ACTIONS(3595), + [anon_sym_UR_DQUOTE] = ACTIONS(3595), + [anon_sym_u8R_DQUOTE] = ACTIONS(3595), + [anon_sym_co_await] = ACTIONS(3593), + [anon_sym_new] = ACTIONS(3593), + [anon_sym_requires] = ACTIONS(3593), + [sym_this] = ACTIONS(3593), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3595), + [sym_semgrep_named_ellipsis] = ACTIONS(3595), }, [425] = { - [sym_catch_clause] = STATE(353), - [aux_sym_constructor_try_statement_repeat1] = STATE(353), - [sym_identifier] = ACTIONS(3057), - [aux_sym_preproc_include_token1] = ACTIONS(3057), - [aux_sym_preproc_def_token1] = ACTIONS(3057), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3059), - [aux_sym_preproc_if_token1] = ACTIONS(3057), - [aux_sym_preproc_if_token2] = ACTIONS(3057), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3057), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3057), - [sym_preproc_directive] = ACTIONS(3057), - [anon_sym_LPAREN2] = ACTIONS(3059), - [anon_sym_BANG] = ACTIONS(3059), - [anon_sym_TILDE] = ACTIONS(3059), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_AMP_AMP] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_SEMI] = ACTIONS(3059), - [anon_sym___extension__] = ACTIONS(3057), - [anon_sym_typedef] = ACTIONS(3057), - [anon_sym_extern] = ACTIONS(3057), - [anon_sym___attribute__] = ACTIONS(3057), - [anon_sym_COLON_COLON] = ACTIONS(3059), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3059), - [anon_sym___declspec] = ACTIONS(3057), - [anon_sym___based] = ACTIONS(3057), - [anon_sym___cdecl] = ACTIONS(3057), - [anon_sym___clrcall] = ACTIONS(3057), - [anon_sym___stdcall] = ACTIONS(3057), - [anon_sym___fastcall] = ACTIONS(3057), - [anon_sym___thiscall] = ACTIONS(3057), - [anon_sym___vectorcall] = ACTIONS(3057), - [anon_sym_LBRACE] = ACTIONS(3059), - [anon_sym_signed] = ACTIONS(3057), - [anon_sym_unsigned] = ACTIONS(3057), - [anon_sym_long] = ACTIONS(3057), - [anon_sym_short] = ACTIONS(3057), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_static] = ACTIONS(3057), - [anon_sym_register] = ACTIONS(3057), - [anon_sym_inline] = ACTIONS(3057), - [anon_sym___inline] = ACTIONS(3057), - [anon_sym___inline__] = ACTIONS(3057), - [anon_sym___forceinline] = ACTIONS(3057), - [anon_sym_thread_local] = ACTIONS(3057), - [anon_sym___thread] = ACTIONS(3057), - [anon_sym_const] = ACTIONS(3057), - [anon_sym_constexpr] = ACTIONS(3057), - [anon_sym_volatile] = ACTIONS(3057), - [anon_sym_restrict] = ACTIONS(3057), - [anon_sym___restrict__] = ACTIONS(3057), - [anon_sym__Atomic] = ACTIONS(3057), - [anon_sym__Noreturn] = ACTIONS(3057), - [anon_sym_noreturn] = ACTIONS(3057), - [anon_sym_mutable] = ACTIONS(3057), - [anon_sym_constinit] = ACTIONS(3057), - [anon_sym_consteval] = ACTIONS(3057), - [sym_primitive_type] = ACTIONS(3057), - [anon_sym_enum] = ACTIONS(3057), - [anon_sym_class] = ACTIONS(3057), - [anon_sym_struct] = ACTIONS(3057), - [anon_sym_union] = ACTIONS(3057), - [anon_sym_if] = ACTIONS(3057), - [anon_sym_else] = ACTIONS(3057), - [anon_sym_switch] = ACTIONS(3057), - [anon_sym_case] = ACTIONS(3057), - [anon_sym_default] = ACTIONS(3057), - [anon_sym_while] = ACTIONS(3057), - [anon_sym_do] = ACTIONS(3057), - [anon_sym_for] = ACTIONS(3057), - [anon_sym_return] = ACTIONS(3057), - [anon_sym_break] = ACTIONS(3057), - [anon_sym_continue] = ACTIONS(3057), - [anon_sym_goto] = ACTIONS(3057), - [anon_sym___try] = ACTIONS(3057), - [anon_sym___leave] = ACTIONS(3057), - [anon_sym_not] = ACTIONS(3057), - [anon_sym_compl] = ACTIONS(3057), - [anon_sym_DASH_DASH] = ACTIONS(3059), - [anon_sym_PLUS_PLUS] = ACTIONS(3059), - [anon_sym_sizeof] = ACTIONS(3057), - [anon_sym___alignof__] = ACTIONS(3057), - [anon_sym___alignof] = ACTIONS(3057), - [anon_sym__alignof] = ACTIONS(3057), - [anon_sym_alignof] = ACTIONS(3057), - [anon_sym__Alignof] = ACTIONS(3057), - [anon_sym_offsetof] = ACTIONS(3057), - [anon_sym__Generic] = ACTIONS(3057), - [anon_sym_asm] = ACTIONS(3057), - [anon_sym___asm__] = ACTIONS(3057), - [sym_number_literal] = ACTIONS(3059), - [anon_sym_L_SQUOTE] = ACTIONS(3059), - [anon_sym_u_SQUOTE] = ACTIONS(3059), - [anon_sym_U_SQUOTE] = ACTIONS(3059), - [anon_sym_u8_SQUOTE] = ACTIONS(3059), - [anon_sym_SQUOTE] = ACTIONS(3059), - [anon_sym_L_DQUOTE] = ACTIONS(3059), - [anon_sym_u_DQUOTE] = ACTIONS(3059), - [anon_sym_U_DQUOTE] = ACTIONS(3059), - [anon_sym_u8_DQUOTE] = ACTIONS(3059), - [anon_sym_DQUOTE] = ACTIONS(3059), - [sym_true] = ACTIONS(3057), - [sym_false] = ACTIONS(3057), - [anon_sym_NULL] = ACTIONS(3057), - [anon_sym_nullptr] = ACTIONS(3057), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3057), - [anon_sym_decltype] = ACTIONS(3057), - [anon_sym_virtual] = ACTIONS(3057), - [anon_sym_alignas] = ACTIONS(3057), - [anon_sym_explicit] = ACTIONS(3057), - [anon_sym_typename] = ACTIONS(3057), - [anon_sym_template] = ACTIONS(3057), - [anon_sym_operator] = ACTIONS(3057), - [anon_sym_try] = ACTIONS(3057), - [anon_sym_delete] = ACTIONS(3057), - [anon_sym_throw] = ACTIONS(3057), - [anon_sym_namespace] = ACTIONS(3057), - [anon_sym_using] = ACTIONS(3057), - [anon_sym_static_assert] = ACTIONS(3057), - [anon_sym_concept] = ACTIONS(3057), - [anon_sym_co_return] = ACTIONS(3057), - [anon_sym_co_yield] = ACTIONS(3057), - [anon_sym_catch] = ACTIONS(3570), - [anon_sym_R_DQUOTE] = ACTIONS(3059), - [anon_sym_LR_DQUOTE] = ACTIONS(3059), - [anon_sym_uR_DQUOTE] = ACTIONS(3059), - [anon_sym_UR_DQUOTE] = ACTIONS(3059), - [anon_sym_u8R_DQUOTE] = ACTIONS(3059), - [anon_sym_co_await] = ACTIONS(3057), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(3057), - [sym_this] = ACTIONS(3057), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3059), - [sym_semgrep_named_ellipsis] = ACTIONS(3059), + [sym_type_qualifier] = STATE(4685), + [sym_type_specifier] = STATE(5782), + [sym_sized_type_specifier] = STATE(3293), + [sym_enum_specifier] = STATE(3293), + [sym_struct_specifier] = STATE(3293), + [sym_union_specifier] = STATE(3293), + [sym_expression] = STATE(5117), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_type_descriptor] = STATE(7973), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_placeholder_type_specifier] = STATE(3293), + [sym_decltype_auto] = STATE(3292), + [sym_decltype] = STATE(2572), + [sym_class_specifier] = STATE(3293), + [sym_class_name] = STATE(8965), + [sym_dependent_type] = STATE(3293), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_type_parameter_pack_expansion] = STATE(8602), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6620), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(6338), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [aux_sym_type_definition_type_repeat1] = STATE(4685), + [aux_sym_sized_type_specifier_repeat1] = STATE(2573), + [sym_identifier] = ACTIONS(3310), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_signed] = ACTIONS(3324), + [anon_sym_unsigned] = ACTIONS(3324), + [anon_sym_long] = ACTIONS(3324), + [anon_sym_short] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3330), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_union] = ACTIONS(3334), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3358), + [anon_sym_decltype] = ACTIONS(3360), + [anon_sym_typename] = ACTIONS(3362), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_GT2] = ACTIONS(3597), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), }, [426] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5666), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8375), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(8647), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3572), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [sym_identifier] = ACTIONS(3599), + [aux_sym_preproc_include_token1] = ACTIONS(3599), + [aux_sym_preproc_def_token1] = ACTIONS(3599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3601), + [aux_sym_preproc_if_token1] = ACTIONS(3599), + [aux_sym_preproc_if_token2] = ACTIONS(3599), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3599), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3599), + [aux_sym_preproc_else_token1] = ACTIONS(3599), + [aux_sym_preproc_elif_token1] = ACTIONS(3599), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3599), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3599), + [sym_preproc_directive] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(3601), + [anon_sym_BANG] = ACTIONS(3601), + [anon_sym_TILDE] = ACTIONS(3601), + [anon_sym_DASH] = ACTIONS(3599), + [anon_sym_PLUS] = ACTIONS(3599), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP_AMP] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3599), + [anon_sym_SEMI] = ACTIONS(3601), + [anon_sym___extension__] = ACTIONS(3599), + [anon_sym_typedef] = ACTIONS(3599), + [anon_sym_extern] = ACTIONS(3599), + [anon_sym___attribute__] = ACTIONS(3599), + [anon_sym_COLON_COLON] = ACTIONS(3601), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3601), + [anon_sym___declspec] = ACTIONS(3599), + [anon_sym___based] = ACTIONS(3599), + [anon_sym___cdecl] = ACTIONS(3599), + [anon_sym___clrcall] = ACTIONS(3599), + [anon_sym___stdcall] = ACTIONS(3599), + [anon_sym___fastcall] = ACTIONS(3599), + [anon_sym___thiscall] = ACTIONS(3599), + [anon_sym___vectorcall] = ACTIONS(3599), + [anon_sym_LBRACE] = ACTIONS(3601), + [anon_sym_signed] = ACTIONS(3599), + [anon_sym_unsigned] = ACTIONS(3599), + [anon_sym_long] = ACTIONS(3599), + [anon_sym_short] = ACTIONS(3599), + [anon_sym_LBRACK] = ACTIONS(3599), + [anon_sym_static] = ACTIONS(3599), + [anon_sym_register] = ACTIONS(3599), + [anon_sym_inline] = ACTIONS(3599), + [anon_sym___inline] = ACTIONS(3599), + [anon_sym___inline__] = ACTIONS(3599), + [anon_sym___forceinline] = ACTIONS(3599), + [anon_sym_thread_local] = ACTIONS(3599), + [anon_sym___thread] = ACTIONS(3599), + [anon_sym_const] = ACTIONS(3599), + [anon_sym_constexpr] = ACTIONS(3599), + [anon_sym_volatile] = ACTIONS(3599), + [anon_sym_restrict] = ACTIONS(3599), + [anon_sym___restrict__] = ACTIONS(3599), + [anon_sym__Atomic] = ACTIONS(3599), + [anon_sym__Noreturn] = ACTIONS(3599), + [anon_sym_noreturn] = ACTIONS(3599), + [anon_sym_mutable] = ACTIONS(3599), + [anon_sym_constinit] = ACTIONS(3599), + [anon_sym_consteval] = ACTIONS(3599), + [sym_primitive_type] = ACTIONS(3599), + [anon_sym_enum] = ACTIONS(3599), + [anon_sym_class] = ACTIONS(3599), + [anon_sym_struct] = ACTIONS(3599), + [anon_sym_union] = ACTIONS(3599), + [anon_sym_if] = ACTIONS(3599), + [anon_sym_switch] = ACTIONS(3599), + [anon_sym_case] = ACTIONS(3599), + [anon_sym_default] = ACTIONS(3599), + [anon_sym_while] = ACTIONS(3599), + [anon_sym_do] = ACTIONS(3599), + [anon_sym_for] = ACTIONS(3599), + [anon_sym_return] = ACTIONS(3599), + [anon_sym_break] = ACTIONS(3599), + [anon_sym_continue] = ACTIONS(3599), + [anon_sym_goto] = ACTIONS(3599), + [anon_sym___try] = ACTIONS(3599), + [anon_sym___leave] = ACTIONS(3599), + [anon_sym_not] = ACTIONS(3599), + [anon_sym_compl] = ACTIONS(3599), + [anon_sym_DASH_DASH] = ACTIONS(3601), + [anon_sym_PLUS_PLUS] = ACTIONS(3601), + [anon_sym_sizeof] = ACTIONS(3599), + [anon_sym___alignof__] = ACTIONS(3599), + [anon_sym___alignof] = ACTIONS(3599), + [anon_sym__alignof] = ACTIONS(3599), + [anon_sym_alignof] = ACTIONS(3599), + [anon_sym__Alignof] = ACTIONS(3599), + [anon_sym_offsetof] = ACTIONS(3599), + [anon_sym__Generic] = ACTIONS(3599), + [anon_sym_asm] = ACTIONS(3599), + [anon_sym___asm__] = ACTIONS(3599), + [sym_number_literal] = ACTIONS(3601), + [anon_sym_L_SQUOTE] = ACTIONS(3601), + [anon_sym_u_SQUOTE] = ACTIONS(3601), + [anon_sym_U_SQUOTE] = ACTIONS(3601), + [anon_sym_u8_SQUOTE] = ACTIONS(3601), + [anon_sym_SQUOTE] = ACTIONS(3601), + [anon_sym_L_DQUOTE] = ACTIONS(3601), + [anon_sym_u_DQUOTE] = ACTIONS(3601), + [anon_sym_U_DQUOTE] = ACTIONS(3601), + [anon_sym_u8_DQUOTE] = ACTIONS(3601), + [anon_sym_DQUOTE] = ACTIONS(3601), + [sym_true] = ACTIONS(3599), + [sym_false] = ACTIONS(3599), + [anon_sym_NULL] = ACTIONS(3599), + [anon_sym_nullptr] = ACTIONS(3599), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3599), + [anon_sym_decltype] = ACTIONS(3599), + [anon_sym_virtual] = ACTIONS(3599), + [anon_sym_alignas] = ACTIONS(3599), + [anon_sym_explicit] = ACTIONS(3599), + [anon_sym_typename] = ACTIONS(3599), + [anon_sym_template] = ACTIONS(3599), + [anon_sym_operator] = ACTIONS(3599), + [anon_sym_try] = ACTIONS(3599), + [anon_sym_delete] = ACTIONS(3599), + [anon_sym_throw] = ACTIONS(3599), + [anon_sym_namespace] = ACTIONS(3599), + [anon_sym_using] = ACTIONS(3599), + [anon_sym_static_assert] = ACTIONS(3599), + [anon_sym_concept] = ACTIONS(3599), + [anon_sym_co_return] = ACTIONS(3599), + [anon_sym_co_yield] = ACTIONS(3599), + [anon_sym_R_DQUOTE] = ACTIONS(3601), + [anon_sym_LR_DQUOTE] = ACTIONS(3601), + [anon_sym_uR_DQUOTE] = ACTIONS(3601), + [anon_sym_UR_DQUOTE] = ACTIONS(3601), + [anon_sym_u8R_DQUOTE] = ACTIONS(3601), + [anon_sym_co_await] = ACTIONS(3599), + [anon_sym_new] = ACTIONS(3599), + [anon_sym_requires] = ACTIONS(3599), + [sym_this] = ACTIONS(3599), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3601), + [sym_semgrep_named_ellipsis] = ACTIONS(3601), }, [427] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5667), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8379), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(8656), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3574), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [sym_identifier] = ACTIONS(3603), + [aux_sym_preproc_include_token1] = ACTIONS(3603), + [aux_sym_preproc_def_token1] = ACTIONS(3603), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3605), + [aux_sym_preproc_if_token1] = ACTIONS(3603), + [aux_sym_preproc_if_token2] = ACTIONS(3603), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3603), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3603), + [aux_sym_preproc_else_token1] = ACTIONS(3603), + [aux_sym_preproc_elif_token1] = ACTIONS(3603), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3603), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3603), + [sym_preproc_directive] = ACTIONS(3603), + [anon_sym_LPAREN2] = ACTIONS(3605), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(3605), + [anon_sym_DASH] = ACTIONS(3603), + [anon_sym_PLUS] = ACTIONS(3603), + [anon_sym_STAR] = ACTIONS(3605), + [anon_sym_AMP_AMP] = ACTIONS(3605), + [anon_sym_AMP] = ACTIONS(3603), + [anon_sym_SEMI] = ACTIONS(3605), + [anon_sym___extension__] = ACTIONS(3603), + [anon_sym_typedef] = ACTIONS(3603), + [anon_sym_extern] = ACTIONS(3603), + [anon_sym___attribute__] = ACTIONS(3603), + [anon_sym_COLON_COLON] = ACTIONS(3605), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3605), + [anon_sym___declspec] = ACTIONS(3603), + [anon_sym___based] = ACTIONS(3603), + [anon_sym___cdecl] = ACTIONS(3603), + [anon_sym___clrcall] = ACTIONS(3603), + [anon_sym___stdcall] = ACTIONS(3603), + [anon_sym___fastcall] = ACTIONS(3603), + [anon_sym___thiscall] = ACTIONS(3603), + [anon_sym___vectorcall] = ACTIONS(3603), + [anon_sym_LBRACE] = ACTIONS(3605), + [anon_sym_signed] = ACTIONS(3603), + [anon_sym_unsigned] = ACTIONS(3603), + [anon_sym_long] = ACTIONS(3603), + [anon_sym_short] = ACTIONS(3603), + [anon_sym_LBRACK] = ACTIONS(3603), + [anon_sym_static] = ACTIONS(3603), + [anon_sym_register] = ACTIONS(3603), + [anon_sym_inline] = ACTIONS(3603), + [anon_sym___inline] = ACTIONS(3603), + [anon_sym___inline__] = ACTIONS(3603), + [anon_sym___forceinline] = ACTIONS(3603), + [anon_sym_thread_local] = ACTIONS(3603), + [anon_sym___thread] = ACTIONS(3603), + [anon_sym_const] = ACTIONS(3603), + [anon_sym_constexpr] = ACTIONS(3603), + [anon_sym_volatile] = ACTIONS(3603), + [anon_sym_restrict] = ACTIONS(3603), + [anon_sym___restrict__] = ACTIONS(3603), + [anon_sym__Atomic] = ACTIONS(3603), + [anon_sym__Noreturn] = ACTIONS(3603), + [anon_sym_noreturn] = ACTIONS(3603), + [anon_sym_mutable] = ACTIONS(3603), + [anon_sym_constinit] = ACTIONS(3603), + [anon_sym_consteval] = ACTIONS(3603), + [sym_primitive_type] = ACTIONS(3603), + [anon_sym_enum] = ACTIONS(3603), + [anon_sym_class] = ACTIONS(3603), + [anon_sym_struct] = ACTIONS(3603), + [anon_sym_union] = ACTIONS(3603), + [anon_sym_if] = ACTIONS(3603), + [anon_sym_switch] = ACTIONS(3603), + [anon_sym_case] = ACTIONS(3603), + [anon_sym_default] = ACTIONS(3603), + [anon_sym_while] = ACTIONS(3603), + [anon_sym_do] = ACTIONS(3603), + [anon_sym_for] = ACTIONS(3603), + [anon_sym_return] = ACTIONS(3603), + [anon_sym_break] = ACTIONS(3603), + [anon_sym_continue] = ACTIONS(3603), + [anon_sym_goto] = ACTIONS(3603), + [anon_sym___try] = ACTIONS(3603), + [anon_sym___leave] = ACTIONS(3603), + [anon_sym_not] = ACTIONS(3603), + [anon_sym_compl] = ACTIONS(3603), + [anon_sym_DASH_DASH] = ACTIONS(3605), + [anon_sym_PLUS_PLUS] = ACTIONS(3605), + [anon_sym_sizeof] = ACTIONS(3603), + [anon_sym___alignof__] = ACTIONS(3603), + [anon_sym___alignof] = ACTIONS(3603), + [anon_sym__alignof] = ACTIONS(3603), + [anon_sym_alignof] = ACTIONS(3603), + [anon_sym__Alignof] = ACTIONS(3603), + [anon_sym_offsetof] = ACTIONS(3603), + [anon_sym__Generic] = ACTIONS(3603), + [anon_sym_asm] = ACTIONS(3603), + [anon_sym___asm__] = ACTIONS(3603), + [sym_number_literal] = ACTIONS(3605), + [anon_sym_L_SQUOTE] = ACTIONS(3605), + [anon_sym_u_SQUOTE] = ACTIONS(3605), + [anon_sym_U_SQUOTE] = ACTIONS(3605), + [anon_sym_u8_SQUOTE] = ACTIONS(3605), + [anon_sym_SQUOTE] = ACTIONS(3605), + [anon_sym_L_DQUOTE] = ACTIONS(3605), + [anon_sym_u_DQUOTE] = ACTIONS(3605), + [anon_sym_U_DQUOTE] = ACTIONS(3605), + [anon_sym_u8_DQUOTE] = ACTIONS(3605), + [anon_sym_DQUOTE] = ACTIONS(3605), + [sym_true] = ACTIONS(3603), + [sym_false] = ACTIONS(3603), + [anon_sym_NULL] = ACTIONS(3603), + [anon_sym_nullptr] = ACTIONS(3603), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3603), + [anon_sym_decltype] = ACTIONS(3603), + [anon_sym_virtual] = ACTIONS(3603), + [anon_sym_alignas] = ACTIONS(3603), + [anon_sym_explicit] = ACTIONS(3603), + [anon_sym_typename] = ACTIONS(3603), + [anon_sym_template] = ACTIONS(3603), + [anon_sym_operator] = ACTIONS(3603), + [anon_sym_try] = ACTIONS(3603), + [anon_sym_delete] = ACTIONS(3603), + [anon_sym_throw] = ACTIONS(3603), + [anon_sym_namespace] = ACTIONS(3603), + [anon_sym_using] = ACTIONS(3603), + [anon_sym_static_assert] = ACTIONS(3603), + [anon_sym_concept] = ACTIONS(3603), + [anon_sym_co_return] = ACTIONS(3603), + [anon_sym_co_yield] = ACTIONS(3603), + [anon_sym_R_DQUOTE] = ACTIONS(3605), + [anon_sym_LR_DQUOTE] = ACTIONS(3605), + [anon_sym_uR_DQUOTE] = ACTIONS(3605), + [anon_sym_UR_DQUOTE] = ACTIONS(3605), + [anon_sym_u8R_DQUOTE] = ACTIONS(3605), + [anon_sym_co_await] = ACTIONS(3603), + [anon_sym_new] = ACTIONS(3603), + [anon_sym_requires] = ACTIONS(3603), + [sym_this] = ACTIONS(3603), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3605), + [sym_semgrep_named_ellipsis] = ACTIONS(3605), }, [428] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5668), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8382), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(8665), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [sym_type_qualifier] = STATE(4685), + [sym_type_specifier] = STATE(5782), + [sym_sized_type_specifier] = STATE(3293), + [sym_enum_specifier] = STATE(3293), + [sym_struct_specifier] = STATE(3293), + [sym_union_specifier] = STATE(3293), + [sym_expression] = STATE(5118), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_type_descriptor] = STATE(7976), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_placeholder_type_specifier] = STATE(3293), + [sym_decltype_auto] = STATE(3292), + [sym_decltype] = STATE(2572), + [sym_class_specifier] = STATE(3293), + [sym_class_name] = STATE(8965), + [sym_dependent_type] = STATE(3293), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_type_parameter_pack_expansion] = STATE(8621), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6620), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(6338), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [aux_sym_type_definition_type_repeat1] = STATE(4685), + [aux_sym_sized_type_specifier_repeat1] = STATE(2573), + [sym_identifier] = ACTIONS(3310), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_signed] = ACTIONS(3324), + [anon_sym_unsigned] = ACTIONS(3324), + [anon_sym_long] = ACTIONS(3324), + [anon_sym_short] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3330), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_union] = ACTIONS(3334), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3358), + [anon_sym_decltype] = ACTIONS(3360), + [anon_sym_typename] = ACTIONS(3362), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_GT2] = ACTIONS(3607), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), }, [429] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5669), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8383), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(8671), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3578), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [sym_identifier] = ACTIONS(3609), + [aux_sym_preproc_include_token1] = ACTIONS(3609), + [aux_sym_preproc_def_token1] = ACTIONS(3609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3611), + [aux_sym_preproc_if_token1] = ACTIONS(3609), + [aux_sym_preproc_if_token2] = ACTIONS(3609), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3609), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3609), + [aux_sym_preproc_else_token1] = ACTIONS(3609), + [aux_sym_preproc_elif_token1] = ACTIONS(3609), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3609), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3609), + [sym_preproc_directive] = ACTIONS(3609), + [anon_sym_LPAREN2] = ACTIONS(3611), + [anon_sym_BANG] = ACTIONS(3611), + [anon_sym_TILDE] = ACTIONS(3611), + [anon_sym_DASH] = ACTIONS(3609), + [anon_sym_PLUS] = ACTIONS(3609), + [anon_sym_STAR] = ACTIONS(3611), + [anon_sym_AMP_AMP] = ACTIONS(3611), + [anon_sym_AMP] = ACTIONS(3609), + [anon_sym_SEMI] = ACTIONS(3611), + [anon_sym___extension__] = ACTIONS(3609), + [anon_sym_typedef] = ACTIONS(3609), + [anon_sym_extern] = ACTIONS(3609), + [anon_sym___attribute__] = ACTIONS(3609), + [anon_sym_COLON_COLON] = ACTIONS(3611), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3611), + [anon_sym___declspec] = ACTIONS(3609), + [anon_sym___based] = ACTIONS(3609), + [anon_sym___cdecl] = ACTIONS(3609), + [anon_sym___clrcall] = ACTIONS(3609), + [anon_sym___stdcall] = ACTIONS(3609), + [anon_sym___fastcall] = ACTIONS(3609), + [anon_sym___thiscall] = ACTIONS(3609), + [anon_sym___vectorcall] = ACTIONS(3609), + [anon_sym_LBRACE] = ACTIONS(3611), + [anon_sym_signed] = ACTIONS(3609), + [anon_sym_unsigned] = ACTIONS(3609), + [anon_sym_long] = ACTIONS(3609), + [anon_sym_short] = ACTIONS(3609), + [anon_sym_LBRACK] = ACTIONS(3609), + [anon_sym_static] = ACTIONS(3609), + [anon_sym_register] = ACTIONS(3609), + [anon_sym_inline] = ACTIONS(3609), + [anon_sym___inline] = ACTIONS(3609), + [anon_sym___inline__] = ACTIONS(3609), + [anon_sym___forceinline] = ACTIONS(3609), + [anon_sym_thread_local] = ACTIONS(3609), + [anon_sym___thread] = ACTIONS(3609), + [anon_sym_const] = ACTIONS(3609), + [anon_sym_constexpr] = ACTIONS(3609), + [anon_sym_volatile] = ACTIONS(3609), + [anon_sym_restrict] = ACTIONS(3609), + [anon_sym___restrict__] = ACTIONS(3609), + [anon_sym__Atomic] = ACTIONS(3609), + [anon_sym__Noreturn] = ACTIONS(3609), + [anon_sym_noreturn] = ACTIONS(3609), + [anon_sym_mutable] = ACTIONS(3609), + [anon_sym_constinit] = ACTIONS(3609), + [anon_sym_consteval] = ACTIONS(3609), + [sym_primitive_type] = ACTIONS(3609), + [anon_sym_enum] = ACTIONS(3609), + [anon_sym_class] = ACTIONS(3609), + [anon_sym_struct] = ACTIONS(3609), + [anon_sym_union] = ACTIONS(3609), + [anon_sym_if] = ACTIONS(3609), + [anon_sym_switch] = ACTIONS(3609), + [anon_sym_case] = ACTIONS(3609), + [anon_sym_default] = ACTIONS(3609), + [anon_sym_while] = ACTIONS(3609), + [anon_sym_do] = ACTIONS(3609), + [anon_sym_for] = ACTIONS(3609), + [anon_sym_return] = ACTIONS(3609), + [anon_sym_break] = ACTIONS(3609), + [anon_sym_continue] = ACTIONS(3609), + [anon_sym_goto] = ACTIONS(3609), + [anon_sym___try] = ACTIONS(3609), + [anon_sym___leave] = ACTIONS(3609), + [anon_sym_not] = ACTIONS(3609), + [anon_sym_compl] = ACTIONS(3609), + [anon_sym_DASH_DASH] = ACTIONS(3611), + [anon_sym_PLUS_PLUS] = ACTIONS(3611), + [anon_sym_sizeof] = ACTIONS(3609), + [anon_sym___alignof__] = ACTIONS(3609), + [anon_sym___alignof] = ACTIONS(3609), + [anon_sym__alignof] = ACTIONS(3609), + [anon_sym_alignof] = ACTIONS(3609), + [anon_sym__Alignof] = ACTIONS(3609), + [anon_sym_offsetof] = ACTIONS(3609), + [anon_sym__Generic] = ACTIONS(3609), + [anon_sym_asm] = ACTIONS(3609), + [anon_sym___asm__] = ACTIONS(3609), + [sym_number_literal] = ACTIONS(3611), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3611), + [anon_sym_u_DQUOTE] = ACTIONS(3611), + [anon_sym_U_DQUOTE] = ACTIONS(3611), + [anon_sym_u8_DQUOTE] = ACTIONS(3611), + [anon_sym_DQUOTE] = ACTIONS(3611), + [sym_true] = ACTIONS(3609), + [sym_false] = ACTIONS(3609), + [anon_sym_NULL] = ACTIONS(3609), + [anon_sym_nullptr] = ACTIONS(3609), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3609), + [anon_sym_decltype] = ACTIONS(3609), + [anon_sym_virtual] = ACTIONS(3609), + [anon_sym_alignas] = ACTIONS(3609), + [anon_sym_explicit] = ACTIONS(3609), + [anon_sym_typename] = ACTIONS(3609), + [anon_sym_template] = ACTIONS(3609), + [anon_sym_operator] = ACTIONS(3609), + [anon_sym_try] = ACTIONS(3609), + [anon_sym_delete] = ACTIONS(3609), + [anon_sym_throw] = ACTIONS(3609), + [anon_sym_namespace] = ACTIONS(3609), + [anon_sym_using] = ACTIONS(3609), + [anon_sym_static_assert] = ACTIONS(3609), + [anon_sym_concept] = ACTIONS(3609), + [anon_sym_co_return] = ACTIONS(3609), + [anon_sym_co_yield] = ACTIONS(3609), + [anon_sym_R_DQUOTE] = ACTIONS(3611), + [anon_sym_LR_DQUOTE] = ACTIONS(3611), + [anon_sym_uR_DQUOTE] = ACTIONS(3611), + [anon_sym_UR_DQUOTE] = ACTIONS(3611), + [anon_sym_u8R_DQUOTE] = ACTIONS(3611), + [anon_sym_co_await] = ACTIONS(3609), + [anon_sym_new] = ACTIONS(3609), + [anon_sym_requires] = ACTIONS(3609), + [sym_this] = ACTIONS(3609), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3611), + [sym_semgrep_named_ellipsis] = ACTIONS(3611), }, [430] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5670), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8384), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(8676), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3580), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [sym_identifier] = ACTIONS(3613), + [aux_sym_preproc_include_token1] = ACTIONS(3613), + [aux_sym_preproc_def_token1] = ACTIONS(3613), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3615), + [aux_sym_preproc_if_token1] = ACTIONS(3613), + [aux_sym_preproc_if_token2] = ACTIONS(3613), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3613), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3613), + [aux_sym_preproc_else_token1] = ACTIONS(3613), + [aux_sym_preproc_elif_token1] = ACTIONS(3613), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3613), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3613), + [sym_preproc_directive] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3615), + [anon_sym_TILDE] = ACTIONS(3615), + [anon_sym_DASH] = ACTIONS(3613), + [anon_sym_PLUS] = ACTIONS(3613), + [anon_sym_STAR] = ACTIONS(3615), + [anon_sym_AMP_AMP] = ACTIONS(3615), + [anon_sym_AMP] = ACTIONS(3613), + [anon_sym_SEMI] = ACTIONS(3615), + [anon_sym___extension__] = ACTIONS(3613), + [anon_sym_typedef] = ACTIONS(3613), + [anon_sym_extern] = ACTIONS(3613), + [anon_sym___attribute__] = ACTIONS(3613), + [anon_sym_COLON_COLON] = ACTIONS(3615), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3615), + [anon_sym___declspec] = ACTIONS(3613), + [anon_sym___based] = ACTIONS(3613), + [anon_sym___cdecl] = ACTIONS(3613), + [anon_sym___clrcall] = ACTIONS(3613), + [anon_sym___stdcall] = ACTIONS(3613), + [anon_sym___fastcall] = ACTIONS(3613), + [anon_sym___thiscall] = ACTIONS(3613), + [anon_sym___vectorcall] = ACTIONS(3613), + [anon_sym_LBRACE] = ACTIONS(3615), + [anon_sym_signed] = ACTIONS(3613), + [anon_sym_unsigned] = ACTIONS(3613), + [anon_sym_long] = ACTIONS(3613), + [anon_sym_short] = ACTIONS(3613), + [anon_sym_LBRACK] = ACTIONS(3613), + [anon_sym_static] = ACTIONS(3613), + [anon_sym_register] = ACTIONS(3613), + [anon_sym_inline] = ACTIONS(3613), + [anon_sym___inline] = ACTIONS(3613), + [anon_sym___inline__] = ACTIONS(3613), + [anon_sym___forceinline] = ACTIONS(3613), + [anon_sym_thread_local] = ACTIONS(3613), + [anon_sym___thread] = ACTIONS(3613), + [anon_sym_const] = ACTIONS(3613), + [anon_sym_constexpr] = ACTIONS(3613), + [anon_sym_volatile] = ACTIONS(3613), + [anon_sym_restrict] = ACTIONS(3613), + [anon_sym___restrict__] = ACTIONS(3613), + [anon_sym__Atomic] = ACTIONS(3613), + [anon_sym__Noreturn] = ACTIONS(3613), + [anon_sym_noreturn] = ACTIONS(3613), + [anon_sym_mutable] = ACTIONS(3613), + [anon_sym_constinit] = ACTIONS(3613), + [anon_sym_consteval] = ACTIONS(3613), + [sym_primitive_type] = ACTIONS(3613), + [anon_sym_enum] = ACTIONS(3613), + [anon_sym_class] = ACTIONS(3613), + [anon_sym_struct] = ACTIONS(3613), + [anon_sym_union] = ACTIONS(3613), + [anon_sym_if] = ACTIONS(3613), + [anon_sym_switch] = ACTIONS(3613), + [anon_sym_case] = ACTIONS(3613), + [anon_sym_default] = ACTIONS(3613), + [anon_sym_while] = ACTIONS(3613), + [anon_sym_do] = ACTIONS(3613), + [anon_sym_for] = ACTIONS(3613), + [anon_sym_return] = ACTIONS(3613), + [anon_sym_break] = ACTIONS(3613), + [anon_sym_continue] = ACTIONS(3613), + [anon_sym_goto] = ACTIONS(3613), + [anon_sym___try] = ACTIONS(3613), + [anon_sym___leave] = ACTIONS(3613), + [anon_sym_not] = ACTIONS(3613), + [anon_sym_compl] = ACTIONS(3613), + [anon_sym_DASH_DASH] = ACTIONS(3615), + [anon_sym_PLUS_PLUS] = ACTIONS(3615), + [anon_sym_sizeof] = ACTIONS(3613), + [anon_sym___alignof__] = ACTIONS(3613), + [anon_sym___alignof] = ACTIONS(3613), + [anon_sym__alignof] = ACTIONS(3613), + [anon_sym_alignof] = ACTIONS(3613), + [anon_sym__Alignof] = ACTIONS(3613), + [anon_sym_offsetof] = ACTIONS(3613), + [anon_sym__Generic] = ACTIONS(3613), + [anon_sym_asm] = ACTIONS(3613), + [anon_sym___asm__] = ACTIONS(3613), + [sym_number_literal] = ACTIONS(3615), + [anon_sym_L_SQUOTE] = ACTIONS(3615), + [anon_sym_u_SQUOTE] = ACTIONS(3615), + [anon_sym_U_SQUOTE] = ACTIONS(3615), + [anon_sym_u8_SQUOTE] = ACTIONS(3615), + [anon_sym_SQUOTE] = ACTIONS(3615), + [anon_sym_L_DQUOTE] = ACTIONS(3615), + [anon_sym_u_DQUOTE] = ACTIONS(3615), + [anon_sym_U_DQUOTE] = ACTIONS(3615), + [anon_sym_u8_DQUOTE] = ACTIONS(3615), + [anon_sym_DQUOTE] = ACTIONS(3615), + [sym_true] = ACTIONS(3613), + [sym_false] = ACTIONS(3613), + [anon_sym_NULL] = ACTIONS(3613), + [anon_sym_nullptr] = ACTIONS(3613), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3613), + [anon_sym_decltype] = ACTIONS(3613), + [anon_sym_virtual] = ACTIONS(3613), + [anon_sym_alignas] = ACTIONS(3613), + [anon_sym_explicit] = ACTIONS(3613), + [anon_sym_typename] = ACTIONS(3613), + [anon_sym_template] = ACTIONS(3613), + [anon_sym_operator] = ACTIONS(3613), + [anon_sym_try] = ACTIONS(3613), + [anon_sym_delete] = ACTIONS(3613), + [anon_sym_throw] = ACTIONS(3613), + [anon_sym_namespace] = ACTIONS(3613), + [anon_sym_using] = ACTIONS(3613), + [anon_sym_static_assert] = ACTIONS(3613), + [anon_sym_concept] = ACTIONS(3613), + [anon_sym_co_return] = ACTIONS(3613), + [anon_sym_co_yield] = ACTIONS(3613), + [anon_sym_R_DQUOTE] = ACTIONS(3615), + [anon_sym_LR_DQUOTE] = ACTIONS(3615), + [anon_sym_uR_DQUOTE] = ACTIONS(3615), + [anon_sym_UR_DQUOTE] = ACTIONS(3615), + [anon_sym_u8R_DQUOTE] = ACTIONS(3615), + [anon_sym_co_await] = ACTIONS(3613), + [anon_sym_new] = ACTIONS(3613), + [anon_sym_requires] = ACTIONS(3613), + [sym_this] = ACTIONS(3613), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3615), + [sym_semgrep_named_ellipsis] = ACTIONS(3615), }, [431] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5671), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8387), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(8683), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3582), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [sym_type_qualifier] = STATE(4685), + [sym_type_specifier] = STATE(5782), + [sym_sized_type_specifier] = STATE(3293), + [sym_enum_specifier] = STATE(3293), + [sym_struct_specifier] = STATE(3293), + [sym_union_specifier] = STATE(3293), + [sym_expression] = STATE(5119), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_type_descriptor] = STATE(7979), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_placeholder_type_specifier] = STATE(3293), + [sym_decltype_auto] = STATE(3292), + [sym_decltype] = STATE(2572), + [sym_class_specifier] = STATE(3293), + [sym_class_name] = STATE(8965), + [sym_dependent_type] = STATE(3293), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_type_parameter_pack_expansion] = STATE(8637), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6620), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(6338), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [aux_sym_type_definition_type_repeat1] = STATE(4685), + [aux_sym_sized_type_specifier_repeat1] = STATE(2573), + [sym_identifier] = ACTIONS(3310), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_signed] = ACTIONS(3324), + [anon_sym_unsigned] = ACTIONS(3324), + [anon_sym_long] = ACTIONS(3324), + [anon_sym_short] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3330), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_union] = ACTIONS(3334), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3358), + [anon_sym_decltype] = ACTIONS(3360), + [anon_sym_typename] = ACTIONS(3362), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_GT2] = ACTIONS(3617), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), }, [432] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5672), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8389), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(8690), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3584), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [sym_identifier] = ACTIONS(3619), + [aux_sym_preproc_include_token1] = ACTIONS(3619), + [aux_sym_preproc_def_token1] = ACTIONS(3619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3621), + [aux_sym_preproc_if_token1] = ACTIONS(3619), + [aux_sym_preproc_if_token2] = ACTIONS(3619), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3619), + [aux_sym_preproc_else_token1] = ACTIONS(3619), + [aux_sym_preproc_elif_token1] = ACTIONS(3619), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3619), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3619), + [sym_preproc_directive] = ACTIONS(3619), + [anon_sym_LPAREN2] = ACTIONS(3621), + [anon_sym_BANG] = ACTIONS(3621), + [anon_sym_TILDE] = ACTIONS(3621), + [anon_sym_DASH] = ACTIONS(3619), + [anon_sym_PLUS] = ACTIONS(3619), + [anon_sym_STAR] = ACTIONS(3621), + [anon_sym_AMP_AMP] = ACTIONS(3621), + [anon_sym_AMP] = ACTIONS(3619), + [anon_sym_SEMI] = ACTIONS(3621), + [anon_sym___extension__] = ACTIONS(3619), + [anon_sym_typedef] = ACTIONS(3619), + [anon_sym_extern] = ACTIONS(3619), + [anon_sym___attribute__] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3621), + [anon_sym___declspec] = ACTIONS(3619), + [anon_sym___based] = ACTIONS(3619), + [anon_sym___cdecl] = ACTIONS(3619), + [anon_sym___clrcall] = ACTIONS(3619), + [anon_sym___stdcall] = ACTIONS(3619), + [anon_sym___fastcall] = ACTIONS(3619), + [anon_sym___thiscall] = ACTIONS(3619), + [anon_sym___vectorcall] = ACTIONS(3619), + [anon_sym_LBRACE] = ACTIONS(3621), + [anon_sym_signed] = ACTIONS(3619), + [anon_sym_unsigned] = ACTIONS(3619), + [anon_sym_long] = ACTIONS(3619), + [anon_sym_short] = ACTIONS(3619), + [anon_sym_LBRACK] = ACTIONS(3619), + [anon_sym_static] = ACTIONS(3619), + [anon_sym_register] = ACTIONS(3619), + [anon_sym_inline] = ACTIONS(3619), + [anon_sym___inline] = ACTIONS(3619), + [anon_sym___inline__] = ACTIONS(3619), + [anon_sym___forceinline] = ACTIONS(3619), + [anon_sym_thread_local] = ACTIONS(3619), + [anon_sym___thread] = ACTIONS(3619), + [anon_sym_const] = ACTIONS(3619), + [anon_sym_constexpr] = ACTIONS(3619), + [anon_sym_volatile] = ACTIONS(3619), + [anon_sym_restrict] = ACTIONS(3619), + [anon_sym___restrict__] = ACTIONS(3619), + [anon_sym__Atomic] = ACTIONS(3619), + [anon_sym__Noreturn] = ACTIONS(3619), + [anon_sym_noreturn] = ACTIONS(3619), + [anon_sym_mutable] = ACTIONS(3619), + [anon_sym_constinit] = ACTIONS(3619), + [anon_sym_consteval] = ACTIONS(3619), + [sym_primitive_type] = ACTIONS(3619), + [anon_sym_enum] = ACTIONS(3619), + [anon_sym_class] = ACTIONS(3619), + [anon_sym_struct] = ACTIONS(3619), + [anon_sym_union] = ACTIONS(3619), + [anon_sym_if] = ACTIONS(3619), + [anon_sym_switch] = ACTIONS(3619), + [anon_sym_case] = ACTIONS(3619), + [anon_sym_default] = ACTIONS(3619), + [anon_sym_while] = ACTIONS(3619), + [anon_sym_do] = ACTIONS(3619), + [anon_sym_for] = ACTIONS(3619), + [anon_sym_return] = ACTIONS(3619), + [anon_sym_break] = ACTIONS(3619), + [anon_sym_continue] = ACTIONS(3619), + [anon_sym_goto] = ACTIONS(3619), + [anon_sym___try] = ACTIONS(3619), + [anon_sym___leave] = ACTIONS(3619), + [anon_sym_not] = ACTIONS(3619), + [anon_sym_compl] = ACTIONS(3619), + [anon_sym_DASH_DASH] = ACTIONS(3621), + [anon_sym_PLUS_PLUS] = ACTIONS(3621), + [anon_sym_sizeof] = ACTIONS(3619), + [anon_sym___alignof__] = ACTIONS(3619), + [anon_sym___alignof] = ACTIONS(3619), + [anon_sym__alignof] = ACTIONS(3619), + [anon_sym_alignof] = ACTIONS(3619), + [anon_sym__Alignof] = ACTIONS(3619), + [anon_sym_offsetof] = ACTIONS(3619), + [anon_sym__Generic] = ACTIONS(3619), + [anon_sym_asm] = ACTIONS(3619), + [anon_sym___asm__] = ACTIONS(3619), + [sym_number_literal] = ACTIONS(3621), + [anon_sym_L_SQUOTE] = ACTIONS(3621), + [anon_sym_u_SQUOTE] = ACTIONS(3621), + [anon_sym_U_SQUOTE] = ACTIONS(3621), + [anon_sym_u8_SQUOTE] = ACTIONS(3621), + [anon_sym_SQUOTE] = ACTIONS(3621), + [anon_sym_L_DQUOTE] = ACTIONS(3621), + [anon_sym_u_DQUOTE] = ACTIONS(3621), + [anon_sym_U_DQUOTE] = ACTIONS(3621), + [anon_sym_u8_DQUOTE] = ACTIONS(3621), + [anon_sym_DQUOTE] = ACTIONS(3621), + [sym_true] = ACTIONS(3619), + [sym_false] = ACTIONS(3619), + [anon_sym_NULL] = ACTIONS(3619), + [anon_sym_nullptr] = ACTIONS(3619), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3619), + [anon_sym_decltype] = ACTIONS(3619), + [anon_sym_virtual] = ACTIONS(3619), + [anon_sym_alignas] = ACTIONS(3619), + [anon_sym_explicit] = ACTIONS(3619), + [anon_sym_typename] = ACTIONS(3619), + [anon_sym_template] = ACTIONS(3619), + [anon_sym_operator] = ACTIONS(3619), + [anon_sym_try] = ACTIONS(3619), + [anon_sym_delete] = ACTIONS(3619), + [anon_sym_throw] = ACTIONS(3619), + [anon_sym_namespace] = ACTIONS(3619), + [anon_sym_using] = ACTIONS(3619), + [anon_sym_static_assert] = ACTIONS(3619), + [anon_sym_concept] = ACTIONS(3619), + [anon_sym_co_return] = ACTIONS(3619), + [anon_sym_co_yield] = ACTIONS(3619), + [anon_sym_R_DQUOTE] = ACTIONS(3621), + [anon_sym_LR_DQUOTE] = ACTIONS(3621), + [anon_sym_uR_DQUOTE] = ACTIONS(3621), + [anon_sym_UR_DQUOTE] = ACTIONS(3621), + [anon_sym_u8R_DQUOTE] = ACTIONS(3621), + [anon_sym_co_await] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(3619), + [anon_sym_requires] = ACTIONS(3619), + [sym_this] = ACTIONS(3619), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3621), + [sym_semgrep_named_ellipsis] = ACTIONS(3621), }, [433] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5673), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8390), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(8695), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3586), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [sym_identifier] = ACTIONS(3623), + [aux_sym_preproc_include_token1] = ACTIONS(3623), + [aux_sym_preproc_def_token1] = ACTIONS(3623), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3625), + [aux_sym_preproc_if_token1] = ACTIONS(3623), + [aux_sym_preproc_if_token2] = ACTIONS(3623), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3623), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3623), + [aux_sym_preproc_else_token1] = ACTIONS(3623), + [aux_sym_preproc_elif_token1] = ACTIONS(3623), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3623), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3623), + [sym_preproc_directive] = ACTIONS(3623), + [anon_sym_LPAREN2] = ACTIONS(3625), + [anon_sym_BANG] = ACTIONS(3625), + [anon_sym_TILDE] = ACTIONS(3625), + [anon_sym_DASH] = ACTIONS(3623), + [anon_sym_PLUS] = ACTIONS(3623), + [anon_sym_STAR] = ACTIONS(3625), + [anon_sym_AMP_AMP] = ACTIONS(3625), + [anon_sym_AMP] = ACTIONS(3623), + [anon_sym_SEMI] = ACTIONS(3625), + [anon_sym___extension__] = ACTIONS(3623), + [anon_sym_typedef] = ACTIONS(3623), + [anon_sym_extern] = ACTIONS(3623), + [anon_sym___attribute__] = ACTIONS(3623), + [anon_sym_COLON_COLON] = ACTIONS(3625), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3625), + [anon_sym___declspec] = ACTIONS(3623), + [anon_sym___based] = ACTIONS(3623), + [anon_sym___cdecl] = ACTIONS(3623), + [anon_sym___clrcall] = ACTIONS(3623), + [anon_sym___stdcall] = ACTIONS(3623), + [anon_sym___fastcall] = ACTIONS(3623), + [anon_sym___thiscall] = ACTIONS(3623), + [anon_sym___vectorcall] = ACTIONS(3623), + [anon_sym_LBRACE] = ACTIONS(3625), + [anon_sym_signed] = ACTIONS(3623), + [anon_sym_unsigned] = ACTIONS(3623), + [anon_sym_long] = ACTIONS(3623), + [anon_sym_short] = ACTIONS(3623), + [anon_sym_LBRACK] = ACTIONS(3623), + [anon_sym_static] = ACTIONS(3623), + [anon_sym_register] = ACTIONS(3623), + [anon_sym_inline] = ACTIONS(3623), + [anon_sym___inline] = ACTIONS(3623), + [anon_sym___inline__] = ACTIONS(3623), + [anon_sym___forceinline] = ACTIONS(3623), + [anon_sym_thread_local] = ACTIONS(3623), + [anon_sym___thread] = ACTIONS(3623), + [anon_sym_const] = ACTIONS(3623), + [anon_sym_constexpr] = ACTIONS(3623), + [anon_sym_volatile] = ACTIONS(3623), + [anon_sym_restrict] = ACTIONS(3623), + [anon_sym___restrict__] = ACTIONS(3623), + [anon_sym__Atomic] = ACTIONS(3623), + [anon_sym__Noreturn] = ACTIONS(3623), + [anon_sym_noreturn] = ACTIONS(3623), + [anon_sym_mutable] = ACTIONS(3623), + [anon_sym_constinit] = ACTIONS(3623), + [anon_sym_consteval] = ACTIONS(3623), + [sym_primitive_type] = ACTIONS(3623), + [anon_sym_enum] = ACTIONS(3623), + [anon_sym_class] = ACTIONS(3623), + [anon_sym_struct] = ACTIONS(3623), + [anon_sym_union] = ACTIONS(3623), + [anon_sym_if] = ACTIONS(3623), + [anon_sym_switch] = ACTIONS(3623), + [anon_sym_case] = ACTIONS(3623), + [anon_sym_default] = ACTIONS(3623), + [anon_sym_while] = ACTIONS(3623), + [anon_sym_do] = ACTIONS(3623), + [anon_sym_for] = ACTIONS(3623), + [anon_sym_return] = ACTIONS(3623), + [anon_sym_break] = ACTIONS(3623), + [anon_sym_continue] = ACTIONS(3623), + [anon_sym_goto] = ACTIONS(3623), + [anon_sym___try] = ACTIONS(3623), + [anon_sym___leave] = ACTIONS(3623), + [anon_sym_not] = ACTIONS(3623), + [anon_sym_compl] = ACTIONS(3623), + [anon_sym_DASH_DASH] = ACTIONS(3625), + [anon_sym_PLUS_PLUS] = ACTIONS(3625), + [anon_sym_sizeof] = ACTIONS(3623), + [anon_sym___alignof__] = ACTIONS(3623), + [anon_sym___alignof] = ACTIONS(3623), + [anon_sym__alignof] = ACTIONS(3623), + [anon_sym_alignof] = ACTIONS(3623), + [anon_sym__Alignof] = ACTIONS(3623), + [anon_sym_offsetof] = ACTIONS(3623), + [anon_sym__Generic] = ACTIONS(3623), + [anon_sym_asm] = ACTIONS(3623), + [anon_sym___asm__] = ACTIONS(3623), + [sym_number_literal] = ACTIONS(3625), + [anon_sym_L_SQUOTE] = ACTIONS(3625), + [anon_sym_u_SQUOTE] = ACTIONS(3625), + [anon_sym_U_SQUOTE] = ACTIONS(3625), + [anon_sym_u8_SQUOTE] = ACTIONS(3625), + [anon_sym_SQUOTE] = ACTIONS(3625), + [anon_sym_L_DQUOTE] = ACTIONS(3625), + [anon_sym_u_DQUOTE] = ACTIONS(3625), + [anon_sym_U_DQUOTE] = ACTIONS(3625), + [anon_sym_u8_DQUOTE] = ACTIONS(3625), + [anon_sym_DQUOTE] = ACTIONS(3625), + [sym_true] = ACTIONS(3623), + [sym_false] = ACTIONS(3623), + [anon_sym_NULL] = ACTIONS(3623), + [anon_sym_nullptr] = ACTIONS(3623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3623), + [anon_sym_decltype] = ACTIONS(3623), + [anon_sym_virtual] = ACTIONS(3623), + [anon_sym_alignas] = ACTIONS(3623), + [anon_sym_explicit] = ACTIONS(3623), + [anon_sym_typename] = ACTIONS(3623), + [anon_sym_template] = ACTIONS(3623), + [anon_sym_operator] = ACTIONS(3623), + [anon_sym_try] = ACTIONS(3623), + [anon_sym_delete] = ACTIONS(3623), + [anon_sym_throw] = ACTIONS(3623), + [anon_sym_namespace] = ACTIONS(3623), + [anon_sym_using] = ACTIONS(3623), + [anon_sym_static_assert] = ACTIONS(3623), + [anon_sym_concept] = ACTIONS(3623), + [anon_sym_co_return] = ACTIONS(3623), + [anon_sym_co_yield] = ACTIONS(3623), + [anon_sym_R_DQUOTE] = ACTIONS(3625), + [anon_sym_LR_DQUOTE] = ACTIONS(3625), + [anon_sym_uR_DQUOTE] = ACTIONS(3625), + [anon_sym_UR_DQUOTE] = ACTIONS(3625), + [anon_sym_u8R_DQUOTE] = ACTIONS(3625), + [anon_sym_co_await] = ACTIONS(3623), + [anon_sym_new] = ACTIONS(3623), + [anon_sym_requires] = ACTIONS(3623), + [sym_this] = ACTIONS(3623), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3625), + [sym_semgrep_named_ellipsis] = ACTIONS(3625), }, [434] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5674), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8391), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(8701), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3588), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [sym_identifier] = ACTIONS(3627), + [aux_sym_preproc_include_token1] = ACTIONS(3627), + [aux_sym_preproc_def_token1] = ACTIONS(3627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3629), + [aux_sym_preproc_if_token1] = ACTIONS(3627), + [aux_sym_preproc_if_token2] = ACTIONS(3627), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3627), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3627), + [aux_sym_preproc_else_token1] = ACTIONS(3627), + [aux_sym_preproc_elif_token1] = ACTIONS(3627), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3627), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3627), + [sym_preproc_directive] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3629), + [anon_sym_TILDE] = ACTIONS(3629), + [anon_sym_DASH] = ACTIONS(3627), + [anon_sym_PLUS] = ACTIONS(3627), + [anon_sym_STAR] = ACTIONS(3629), + [anon_sym_AMP_AMP] = ACTIONS(3629), + [anon_sym_AMP] = ACTIONS(3627), + [anon_sym_SEMI] = ACTIONS(3629), + [anon_sym___extension__] = ACTIONS(3627), + [anon_sym_typedef] = ACTIONS(3627), + [anon_sym_extern] = ACTIONS(3627), + [anon_sym___attribute__] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3629), + [anon_sym___declspec] = ACTIONS(3627), + [anon_sym___based] = ACTIONS(3627), + [anon_sym___cdecl] = ACTIONS(3627), + [anon_sym___clrcall] = ACTIONS(3627), + [anon_sym___stdcall] = ACTIONS(3627), + [anon_sym___fastcall] = ACTIONS(3627), + [anon_sym___thiscall] = ACTIONS(3627), + [anon_sym___vectorcall] = ACTIONS(3627), + [anon_sym_LBRACE] = ACTIONS(3629), + [anon_sym_signed] = ACTIONS(3627), + [anon_sym_unsigned] = ACTIONS(3627), + [anon_sym_long] = ACTIONS(3627), + [anon_sym_short] = ACTIONS(3627), + [anon_sym_LBRACK] = ACTIONS(3627), + [anon_sym_static] = ACTIONS(3627), + [anon_sym_register] = ACTIONS(3627), + [anon_sym_inline] = ACTIONS(3627), + [anon_sym___inline] = ACTIONS(3627), + [anon_sym___inline__] = ACTIONS(3627), + [anon_sym___forceinline] = ACTIONS(3627), + [anon_sym_thread_local] = ACTIONS(3627), + [anon_sym___thread] = ACTIONS(3627), + [anon_sym_const] = ACTIONS(3627), + [anon_sym_constexpr] = ACTIONS(3627), + [anon_sym_volatile] = ACTIONS(3627), + [anon_sym_restrict] = ACTIONS(3627), + [anon_sym___restrict__] = ACTIONS(3627), + [anon_sym__Atomic] = ACTIONS(3627), + [anon_sym__Noreturn] = ACTIONS(3627), + [anon_sym_noreturn] = ACTIONS(3627), + [anon_sym_mutable] = ACTIONS(3627), + [anon_sym_constinit] = ACTIONS(3627), + [anon_sym_consteval] = ACTIONS(3627), + [sym_primitive_type] = ACTIONS(3627), + [anon_sym_enum] = ACTIONS(3627), + [anon_sym_class] = ACTIONS(3627), + [anon_sym_struct] = ACTIONS(3627), + [anon_sym_union] = ACTIONS(3627), + [anon_sym_if] = ACTIONS(3627), + [anon_sym_switch] = ACTIONS(3627), + [anon_sym_case] = ACTIONS(3627), + [anon_sym_default] = ACTIONS(3627), + [anon_sym_while] = ACTIONS(3627), + [anon_sym_do] = ACTIONS(3627), + [anon_sym_for] = ACTIONS(3627), + [anon_sym_return] = ACTIONS(3627), + [anon_sym_break] = ACTIONS(3627), + [anon_sym_continue] = ACTIONS(3627), + [anon_sym_goto] = ACTIONS(3627), + [anon_sym___try] = ACTIONS(3627), + [anon_sym___leave] = ACTIONS(3627), + [anon_sym_not] = ACTIONS(3627), + [anon_sym_compl] = ACTIONS(3627), + [anon_sym_DASH_DASH] = ACTIONS(3629), + [anon_sym_PLUS_PLUS] = ACTIONS(3629), + [anon_sym_sizeof] = ACTIONS(3627), + [anon_sym___alignof__] = ACTIONS(3627), + [anon_sym___alignof] = ACTIONS(3627), + [anon_sym__alignof] = ACTIONS(3627), + [anon_sym_alignof] = ACTIONS(3627), + [anon_sym__Alignof] = ACTIONS(3627), + [anon_sym_offsetof] = ACTIONS(3627), + [anon_sym__Generic] = ACTIONS(3627), + [anon_sym_asm] = ACTIONS(3627), + [anon_sym___asm__] = ACTIONS(3627), + [sym_number_literal] = ACTIONS(3629), + [anon_sym_L_SQUOTE] = ACTIONS(3629), + [anon_sym_u_SQUOTE] = ACTIONS(3629), + [anon_sym_U_SQUOTE] = ACTIONS(3629), + [anon_sym_u8_SQUOTE] = ACTIONS(3629), + [anon_sym_SQUOTE] = ACTIONS(3629), + [anon_sym_L_DQUOTE] = ACTIONS(3629), + [anon_sym_u_DQUOTE] = ACTIONS(3629), + [anon_sym_U_DQUOTE] = ACTIONS(3629), + [anon_sym_u8_DQUOTE] = ACTIONS(3629), + [anon_sym_DQUOTE] = ACTIONS(3629), + [sym_true] = ACTIONS(3627), + [sym_false] = ACTIONS(3627), + [anon_sym_NULL] = ACTIONS(3627), + [anon_sym_nullptr] = ACTIONS(3627), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3627), + [anon_sym_decltype] = ACTIONS(3627), + [anon_sym_virtual] = ACTIONS(3627), + [anon_sym_alignas] = ACTIONS(3627), + [anon_sym_explicit] = ACTIONS(3627), + [anon_sym_typename] = ACTIONS(3627), + [anon_sym_template] = ACTIONS(3627), + [anon_sym_operator] = ACTIONS(3627), + [anon_sym_try] = ACTIONS(3627), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_throw] = ACTIONS(3627), + [anon_sym_namespace] = ACTIONS(3627), + [anon_sym_using] = ACTIONS(3627), + [anon_sym_static_assert] = ACTIONS(3627), + [anon_sym_concept] = ACTIONS(3627), + [anon_sym_co_return] = ACTIONS(3627), + [anon_sym_co_yield] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(3629), + [anon_sym_LR_DQUOTE] = ACTIONS(3629), + [anon_sym_uR_DQUOTE] = ACTIONS(3629), + [anon_sym_UR_DQUOTE] = ACTIONS(3629), + [anon_sym_u8R_DQUOTE] = ACTIONS(3629), + [anon_sym_co_await] = ACTIONS(3627), + [anon_sym_new] = ACTIONS(3627), + [anon_sym_requires] = ACTIONS(3627), + [sym_this] = ACTIONS(3627), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3629), + [sym_semgrep_named_ellipsis] = ACTIONS(3629), }, [435] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5676), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8393), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(8707), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3590), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [sym_identifier] = ACTIONS(3631), + [aux_sym_preproc_include_token1] = ACTIONS(3631), + [aux_sym_preproc_def_token1] = ACTIONS(3631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3633), + [aux_sym_preproc_if_token1] = ACTIONS(3631), + [aux_sym_preproc_if_token2] = ACTIONS(3631), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3631), + [aux_sym_preproc_else_token1] = ACTIONS(3631), + [aux_sym_preproc_elif_token1] = ACTIONS(3631), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3631), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3631), + [sym_preproc_directive] = ACTIONS(3631), + [anon_sym_LPAREN2] = ACTIONS(3633), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(3633), + [anon_sym_AMP_AMP] = ACTIONS(3633), + [anon_sym_AMP] = ACTIONS(3631), + [anon_sym_SEMI] = ACTIONS(3633), + [anon_sym___extension__] = ACTIONS(3631), + [anon_sym_typedef] = ACTIONS(3631), + [anon_sym_extern] = ACTIONS(3631), + [anon_sym___attribute__] = ACTIONS(3631), + [anon_sym_COLON_COLON] = ACTIONS(3633), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3633), + [anon_sym___declspec] = ACTIONS(3631), + [anon_sym___based] = ACTIONS(3631), + [anon_sym___cdecl] = ACTIONS(3631), + [anon_sym___clrcall] = ACTIONS(3631), + [anon_sym___stdcall] = ACTIONS(3631), + [anon_sym___fastcall] = ACTIONS(3631), + [anon_sym___thiscall] = ACTIONS(3631), + [anon_sym___vectorcall] = ACTIONS(3631), + [anon_sym_LBRACE] = ACTIONS(3633), + [anon_sym_signed] = ACTIONS(3631), + [anon_sym_unsigned] = ACTIONS(3631), + [anon_sym_long] = ACTIONS(3631), + [anon_sym_short] = ACTIONS(3631), + [anon_sym_LBRACK] = ACTIONS(3631), + [anon_sym_static] = ACTIONS(3631), + [anon_sym_register] = ACTIONS(3631), + [anon_sym_inline] = ACTIONS(3631), + [anon_sym___inline] = ACTIONS(3631), + [anon_sym___inline__] = ACTIONS(3631), + [anon_sym___forceinline] = ACTIONS(3631), + [anon_sym_thread_local] = ACTIONS(3631), + [anon_sym___thread] = ACTIONS(3631), + [anon_sym_const] = ACTIONS(3631), + [anon_sym_constexpr] = ACTIONS(3631), + [anon_sym_volatile] = ACTIONS(3631), + [anon_sym_restrict] = ACTIONS(3631), + [anon_sym___restrict__] = ACTIONS(3631), + [anon_sym__Atomic] = ACTIONS(3631), + [anon_sym__Noreturn] = ACTIONS(3631), + [anon_sym_noreturn] = ACTIONS(3631), + [anon_sym_mutable] = ACTIONS(3631), + [anon_sym_constinit] = ACTIONS(3631), + [anon_sym_consteval] = ACTIONS(3631), + [sym_primitive_type] = ACTIONS(3631), + [anon_sym_enum] = ACTIONS(3631), + [anon_sym_class] = ACTIONS(3631), + [anon_sym_struct] = ACTIONS(3631), + [anon_sym_union] = ACTIONS(3631), + [anon_sym_if] = ACTIONS(3631), + [anon_sym_switch] = ACTIONS(3631), + [anon_sym_case] = ACTIONS(3631), + [anon_sym_default] = ACTIONS(3631), + [anon_sym_while] = ACTIONS(3631), + [anon_sym_do] = ACTIONS(3631), + [anon_sym_for] = ACTIONS(3631), + [anon_sym_return] = ACTIONS(3631), + [anon_sym_break] = ACTIONS(3631), + [anon_sym_continue] = ACTIONS(3631), + [anon_sym_goto] = ACTIONS(3631), + [anon_sym___try] = ACTIONS(3631), + [anon_sym___leave] = ACTIONS(3631), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3633), + [anon_sym_PLUS_PLUS] = ACTIONS(3633), + [anon_sym_sizeof] = ACTIONS(3631), + [anon_sym___alignof__] = ACTIONS(3631), + [anon_sym___alignof] = ACTIONS(3631), + [anon_sym__alignof] = ACTIONS(3631), + [anon_sym_alignof] = ACTIONS(3631), + [anon_sym__Alignof] = ACTIONS(3631), + [anon_sym_offsetof] = ACTIONS(3631), + [anon_sym__Generic] = ACTIONS(3631), + [anon_sym_asm] = ACTIONS(3631), + [anon_sym___asm__] = ACTIONS(3631), + [sym_number_literal] = ACTIONS(3633), + [anon_sym_L_SQUOTE] = ACTIONS(3633), + [anon_sym_u_SQUOTE] = ACTIONS(3633), + [anon_sym_U_SQUOTE] = ACTIONS(3633), + [anon_sym_u8_SQUOTE] = ACTIONS(3633), + [anon_sym_SQUOTE] = ACTIONS(3633), + [anon_sym_L_DQUOTE] = ACTIONS(3633), + [anon_sym_u_DQUOTE] = ACTIONS(3633), + [anon_sym_U_DQUOTE] = ACTIONS(3633), + [anon_sym_u8_DQUOTE] = ACTIONS(3633), + [anon_sym_DQUOTE] = ACTIONS(3633), + [sym_true] = ACTIONS(3631), + [sym_false] = ACTIONS(3631), + [anon_sym_NULL] = ACTIONS(3631), + [anon_sym_nullptr] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3631), + [anon_sym_decltype] = ACTIONS(3631), + [anon_sym_virtual] = ACTIONS(3631), + [anon_sym_alignas] = ACTIONS(3631), + [anon_sym_explicit] = ACTIONS(3631), + [anon_sym_typename] = ACTIONS(3631), + [anon_sym_template] = ACTIONS(3631), + [anon_sym_operator] = ACTIONS(3631), + [anon_sym_try] = ACTIONS(3631), + [anon_sym_delete] = ACTIONS(3631), + [anon_sym_throw] = ACTIONS(3631), + [anon_sym_namespace] = ACTIONS(3631), + [anon_sym_using] = ACTIONS(3631), + [anon_sym_static_assert] = ACTIONS(3631), + [anon_sym_concept] = ACTIONS(3631), + [anon_sym_co_return] = ACTIONS(3631), + [anon_sym_co_yield] = ACTIONS(3631), + [anon_sym_R_DQUOTE] = ACTIONS(3633), + [anon_sym_LR_DQUOTE] = ACTIONS(3633), + [anon_sym_uR_DQUOTE] = ACTIONS(3633), + [anon_sym_UR_DQUOTE] = ACTIONS(3633), + [anon_sym_u8R_DQUOTE] = ACTIONS(3633), + [anon_sym_co_await] = ACTIONS(3631), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(3631), + [sym_this] = ACTIONS(3631), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3633), + [sym_semgrep_named_ellipsis] = ACTIONS(3633), }, [436] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5677), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8394), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(8714), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3592), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [sym_identifier] = ACTIONS(3635), + [aux_sym_preproc_include_token1] = ACTIONS(3635), + [aux_sym_preproc_def_token1] = ACTIONS(3635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3637), + [aux_sym_preproc_if_token1] = ACTIONS(3635), + [aux_sym_preproc_if_token2] = ACTIONS(3635), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3635), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3635), + [aux_sym_preproc_else_token1] = ACTIONS(3635), + [aux_sym_preproc_elif_token1] = ACTIONS(3635), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3635), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3635), + [sym_preproc_directive] = ACTIONS(3635), + [anon_sym_LPAREN2] = ACTIONS(3637), + [anon_sym_BANG] = ACTIONS(3637), + [anon_sym_TILDE] = ACTIONS(3637), + [anon_sym_DASH] = ACTIONS(3635), + [anon_sym_PLUS] = ACTIONS(3635), + [anon_sym_STAR] = ACTIONS(3637), + [anon_sym_AMP_AMP] = ACTIONS(3637), + [anon_sym_AMP] = ACTIONS(3635), + [anon_sym_SEMI] = ACTIONS(3637), + [anon_sym___extension__] = ACTIONS(3635), + [anon_sym_typedef] = ACTIONS(3635), + [anon_sym_extern] = ACTIONS(3635), + [anon_sym___attribute__] = ACTIONS(3635), + [anon_sym_COLON_COLON] = ACTIONS(3637), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3637), + [anon_sym___declspec] = ACTIONS(3635), + [anon_sym___based] = ACTIONS(3635), + [anon_sym___cdecl] = ACTIONS(3635), + [anon_sym___clrcall] = ACTIONS(3635), + [anon_sym___stdcall] = ACTIONS(3635), + [anon_sym___fastcall] = ACTIONS(3635), + [anon_sym___thiscall] = ACTIONS(3635), + [anon_sym___vectorcall] = ACTIONS(3635), + [anon_sym_LBRACE] = ACTIONS(3637), + [anon_sym_signed] = ACTIONS(3635), + [anon_sym_unsigned] = ACTIONS(3635), + [anon_sym_long] = ACTIONS(3635), + [anon_sym_short] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(3635), + [anon_sym_static] = ACTIONS(3635), + [anon_sym_register] = ACTIONS(3635), + [anon_sym_inline] = ACTIONS(3635), + [anon_sym___inline] = ACTIONS(3635), + [anon_sym___inline__] = ACTIONS(3635), + [anon_sym___forceinline] = ACTIONS(3635), + [anon_sym_thread_local] = ACTIONS(3635), + [anon_sym___thread] = ACTIONS(3635), + [anon_sym_const] = ACTIONS(3635), + [anon_sym_constexpr] = ACTIONS(3635), + [anon_sym_volatile] = ACTIONS(3635), + [anon_sym_restrict] = ACTIONS(3635), + [anon_sym___restrict__] = ACTIONS(3635), + [anon_sym__Atomic] = ACTIONS(3635), + [anon_sym__Noreturn] = ACTIONS(3635), + [anon_sym_noreturn] = ACTIONS(3635), + [anon_sym_mutable] = ACTIONS(3635), + [anon_sym_constinit] = ACTIONS(3635), + [anon_sym_consteval] = ACTIONS(3635), + [sym_primitive_type] = ACTIONS(3635), + [anon_sym_enum] = ACTIONS(3635), + [anon_sym_class] = ACTIONS(3635), + [anon_sym_struct] = ACTIONS(3635), + [anon_sym_union] = ACTIONS(3635), + [anon_sym_if] = ACTIONS(3635), + [anon_sym_switch] = ACTIONS(3635), + [anon_sym_case] = ACTIONS(3635), + [anon_sym_default] = ACTIONS(3635), + [anon_sym_while] = ACTIONS(3635), + [anon_sym_do] = ACTIONS(3635), + [anon_sym_for] = ACTIONS(3635), + [anon_sym_return] = ACTIONS(3635), + [anon_sym_break] = ACTIONS(3635), + [anon_sym_continue] = ACTIONS(3635), + [anon_sym_goto] = ACTIONS(3635), + [anon_sym___try] = ACTIONS(3635), + [anon_sym___leave] = ACTIONS(3635), + [anon_sym_not] = ACTIONS(3635), + [anon_sym_compl] = ACTIONS(3635), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3635), + [anon_sym___alignof__] = ACTIONS(3635), + [anon_sym___alignof] = ACTIONS(3635), + [anon_sym__alignof] = ACTIONS(3635), + [anon_sym_alignof] = ACTIONS(3635), + [anon_sym__Alignof] = ACTIONS(3635), + [anon_sym_offsetof] = ACTIONS(3635), + [anon_sym__Generic] = ACTIONS(3635), + [anon_sym_asm] = ACTIONS(3635), + [anon_sym___asm__] = ACTIONS(3635), + [sym_number_literal] = ACTIONS(3637), + [anon_sym_L_SQUOTE] = ACTIONS(3637), + [anon_sym_u_SQUOTE] = ACTIONS(3637), + [anon_sym_U_SQUOTE] = ACTIONS(3637), + [anon_sym_u8_SQUOTE] = ACTIONS(3637), + [anon_sym_SQUOTE] = ACTIONS(3637), + [anon_sym_L_DQUOTE] = ACTIONS(3637), + [anon_sym_u_DQUOTE] = ACTIONS(3637), + [anon_sym_U_DQUOTE] = ACTIONS(3637), + [anon_sym_u8_DQUOTE] = ACTIONS(3637), + [anon_sym_DQUOTE] = ACTIONS(3637), + [sym_true] = ACTIONS(3635), + [sym_false] = ACTIONS(3635), + [anon_sym_NULL] = ACTIONS(3635), + [anon_sym_nullptr] = ACTIONS(3635), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3635), + [anon_sym_decltype] = ACTIONS(3635), + [anon_sym_virtual] = ACTIONS(3635), + [anon_sym_alignas] = ACTIONS(3635), + [anon_sym_explicit] = ACTIONS(3635), + [anon_sym_typename] = ACTIONS(3635), + [anon_sym_template] = ACTIONS(3635), + [anon_sym_operator] = ACTIONS(3635), + [anon_sym_try] = ACTIONS(3635), + [anon_sym_delete] = ACTIONS(3635), + [anon_sym_throw] = ACTIONS(3635), + [anon_sym_namespace] = ACTIONS(3635), + [anon_sym_using] = ACTIONS(3635), + [anon_sym_static_assert] = ACTIONS(3635), + [anon_sym_concept] = ACTIONS(3635), + [anon_sym_co_return] = ACTIONS(3635), + [anon_sym_co_yield] = ACTIONS(3635), + [anon_sym_R_DQUOTE] = ACTIONS(3637), + [anon_sym_LR_DQUOTE] = ACTIONS(3637), + [anon_sym_uR_DQUOTE] = ACTIONS(3637), + [anon_sym_UR_DQUOTE] = ACTIONS(3637), + [anon_sym_u8R_DQUOTE] = ACTIONS(3637), + [anon_sym_co_await] = ACTIONS(3635), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_requires] = ACTIONS(3635), + [sym_this] = ACTIONS(3635), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3637), + [sym_semgrep_named_ellipsis] = ACTIONS(3637), }, [437] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5678), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8396), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(8720), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3594), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [sym_preproc_def] = STATE(1935), + [sym_preproc_function_def] = STATE(1935), + [sym_preproc_call] = STATE(1935), + [sym_preproc_if_in_field_declaration_list] = STATE(1935), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1935), + [sym_preproc_else_in_field_declaration_list] = STATE(9236), + [sym_preproc_elif_in_field_declaration_list] = STATE(9236), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(9236), + [sym_type_definition] = STATE(1935), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6440), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7286), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(440), + [sym_field_declaration] = STATE(1935), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(1935), + [sym_operator_cast] = STATE(7765), + [sym_inline_method_definition] = STATE(1935), + [sym_constructor_specifiers] = STATE(1957), + [sym_operator_cast_definition] = STATE(1935), + [sym_operator_cast_declaration] = STATE(1935), + [sym_constructor_or_destructor_definition] = STATE(1935), + [sym_constructor_or_destructor_declaration] = STATE(1935), + [sym_friend_declaration] = STATE(1935), + [sym_access_specifier] = STATE(9998), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(1935), + [sym_alias_declaration] = STATE(1935), + [sym_static_assert_declaration] = STATE(1935), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7765), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(1935), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(440), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1957), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(3229), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3231), + [aux_sym_preproc_if_token1] = ACTIONS(3233), + [aux_sym_preproc_if_token2] = ACTIONS(3639), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3239), + [aux_sym_preproc_else_token1] = ACTIONS(3241), + [aux_sym_preproc_elif_token1] = ACTIONS(3243), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3245), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3247), + [sym_preproc_directive] = ACTIONS(3249), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(3259), + [anon_sym_typedef] = ACTIONS(3261), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(3279), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(3281), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3285), + [anon_sym_static_assert] = ACTIONS(3287), + [sym_semgrep_metavar] = ACTIONS(3289), }, [438] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5679), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8398), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(8726), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3596), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [sym_preproc_def] = STATE(1935), + [sym_preproc_function_def] = STATE(1935), + [sym_preproc_call] = STATE(1935), + [sym_preproc_if_in_field_declaration_list] = STATE(1935), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1935), + [sym_preproc_else_in_field_declaration_list] = STATE(9238), + [sym_preproc_elif_in_field_declaration_list] = STATE(9238), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(9238), + [sym_type_definition] = STATE(1935), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6440), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7286), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(441), + [sym_field_declaration] = STATE(1935), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(1935), + [sym_operator_cast] = STATE(7765), + [sym_inline_method_definition] = STATE(1935), + [sym_constructor_specifiers] = STATE(1957), + [sym_operator_cast_definition] = STATE(1935), + [sym_operator_cast_declaration] = STATE(1935), + [sym_constructor_or_destructor_definition] = STATE(1935), + [sym_constructor_or_destructor_declaration] = STATE(1935), + [sym_friend_declaration] = STATE(1935), + [sym_access_specifier] = STATE(9998), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(1935), + [sym_alias_declaration] = STATE(1935), + [sym_static_assert_declaration] = STATE(1935), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7765), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(1935), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(441), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1957), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(3229), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3231), + [aux_sym_preproc_if_token1] = ACTIONS(3233), + [aux_sym_preproc_if_token2] = ACTIONS(3641), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3239), + [aux_sym_preproc_else_token1] = ACTIONS(3241), + [aux_sym_preproc_elif_token1] = ACTIONS(3243), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3245), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3247), + [sym_preproc_directive] = ACTIONS(3249), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(3259), + [anon_sym_typedef] = ACTIONS(3261), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(3279), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(3281), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3285), + [anon_sym_static_assert] = ACTIONS(3287), + [sym_semgrep_metavar] = ACTIONS(3289), }, [439] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5680), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8399), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(8732), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3598), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [sym_catch_clause] = STATE(348), + [aux_sym_constructor_try_statement_repeat1] = STATE(348), + [sym_identifier] = ACTIONS(3046), + [aux_sym_preproc_include_token1] = ACTIONS(3046), + [aux_sym_preproc_def_token1] = ACTIONS(3046), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3046), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3046), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3046), + [sym_preproc_directive] = ACTIONS(3046), + [anon_sym_LPAREN2] = ACTIONS(3048), + [anon_sym_BANG] = ACTIONS(3048), + [anon_sym_TILDE] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3046), + [anon_sym_PLUS] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(3048), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym_SEMI] = ACTIONS(3048), + [anon_sym___extension__] = ACTIONS(3046), + [anon_sym_typedef] = ACTIONS(3046), + [anon_sym_extern] = ACTIONS(3046), + [anon_sym___attribute__] = ACTIONS(3046), + [anon_sym_COLON_COLON] = ACTIONS(3048), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3048), + [anon_sym___declspec] = ACTIONS(3046), + [anon_sym___based] = ACTIONS(3046), + [anon_sym___cdecl] = ACTIONS(3046), + [anon_sym___clrcall] = ACTIONS(3046), + [anon_sym___stdcall] = ACTIONS(3046), + [anon_sym___fastcall] = ACTIONS(3046), + [anon_sym___thiscall] = ACTIONS(3046), + [anon_sym___vectorcall] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_RBRACE] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3046), + [anon_sym_unsigned] = ACTIONS(3046), + [anon_sym_long] = ACTIONS(3046), + [anon_sym_short] = ACTIONS(3046), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_static] = ACTIONS(3046), + [anon_sym_register] = ACTIONS(3046), + [anon_sym_inline] = ACTIONS(3046), + [anon_sym___inline] = ACTIONS(3046), + [anon_sym___inline__] = ACTIONS(3046), + [anon_sym___forceinline] = ACTIONS(3046), + [anon_sym_thread_local] = ACTIONS(3046), + [anon_sym___thread] = ACTIONS(3046), + [anon_sym_const] = ACTIONS(3046), + [anon_sym_constexpr] = ACTIONS(3046), + [anon_sym_volatile] = ACTIONS(3046), + [anon_sym_restrict] = ACTIONS(3046), + [anon_sym___restrict__] = ACTIONS(3046), + [anon_sym__Atomic] = ACTIONS(3046), + [anon_sym__Noreturn] = ACTIONS(3046), + [anon_sym_noreturn] = ACTIONS(3046), + [anon_sym_mutable] = ACTIONS(3046), + [anon_sym_constinit] = ACTIONS(3046), + [anon_sym_consteval] = ACTIONS(3046), + [sym_primitive_type] = ACTIONS(3046), + [anon_sym_enum] = ACTIONS(3046), + [anon_sym_class] = ACTIONS(3046), + [anon_sym_struct] = ACTIONS(3046), + [anon_sym_union] = ACTIONS(3046), + [anon_sym_if] = ACTIONS(3046), + [anon_sym_else] = ACTIONS(3046), + [anon_sym_switch] = ACTIONS(3046), + [anon_sym_case] = ACTIONS(3046), + [anon_sym_default] = ACTIONS(3046), + [anon_sym_while] = ACTIONS(3046), + [anon_sym_do] = ACTIONS(3046), + [anon_sym_for] = ACTIONS(3046), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_break] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(3046), + [anon_sym_goto] = ACTIONS(3046), + [anon_sym___try] = ACTIONS(3046), + [anon_sym___leave] = ACTIONS(3046), + [anon_sym_not] = ACTIONS(3046), + [anon_sym_compl] = ACTIONS(3046), + [anon_sym_DASH_DASH] = ACTIONS(3048), + [anon_sym_PLUS_PLUS] = ACTIONS(3048), + [anon_sym_sizeof] = ACTIONS(3046), + [anon_sym___alignof__] = ACTIONS(3046), + [anon_sym___alignof] = ACTIONS(3046), + [anon_sym__alignof] = ACTIONS(3046), + [anon_sym_alignof] = ACTIONS(3046), + [anon_sym__Alignof] = ACTIONS(3046), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3046), + [anon_sym_asm] = ACTIONS(3046), + [anon_sym___asm__] = ACTIONS(3046), + [sym_number_literal] = ACTIONS(3048), + [anon_sym_L_SQUOTE] = ACTIONS(3048), + [anon_sym_u_SQUOTE] = ACTIONS(3048), + [anon_sym_U_SQUOTE] = ACTIONS(3048), + [anon_sym_u8_SQUOTE] = ACTIONS(3048), + [anon_sym_SQUOTE] = ACTIONS(3048), + [anon_sym_L_DQUOTE] = ACTIONS(3048), + [anon_sym_u_DQUOTE] = ACTIONS(3048), + [anon_sym_U_DQUOTE] = ACTIONS(3048), + [anon_sym_u8_DQUOTE] = ACTIONS(3048), + [anon_sym_DQUOTE] = ACTIONS(3048), + [sym_true] = ACTIONS(3046), + [sym_false] = ACTIONS(3046), + [anon_sym_NULL] = ACTIONS(3046), + [anon_sym_nullptr] = ACTIONS(3046), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3046), + [anon_sym_decltype] = ACTIONS(3046), + [anon_sym_virtual] = ACTIONS(3046), + [anon_sym_alignas] = ACTIONS(3046), + [anon_sym_explicit] = ACTIONS(3046), + [anon_sym_typename] = ACTIONS(3046), + [anon_sym_template] = ACTIONS(3046), + [anon_sym_operator] = ACTIONS(3046), + [anon_sym_try] = ACTIONS(3046), + [anon_sym_delete] = ACTIONS(3046), + [anon_sym_throw] = ACTIONS(3046), + [anon_sym_namespace] = ACTIONS(3046), + [anon_sym_using] = ACTIONS(3046), + [anon_sym_static_assert] = ACTIONS(3046), + [anon_sym_concept] = ACTIONS(3046), + [anon_sym_co_return] = ACTIONS(3046), + [anon_sym_co_yield] = ACTIONS(3046), + [anon_sym_catch] = ACTIONS(3643), + [anon_sym_R_DQUOTE] = ACTIONS(3048), + [anon_sym_LR_DQUOTE] = ACTIONS(3048), + [anon_sym_uR_DQUOTE] = ACTIONS(3048), + [anon_sym_UR_DQUOTE] = ACTIONS(3048), + [anon_sym_u8R_DQUOTE] = ACTIONS(3048), + [anon_sym_co_await] = ACTIONS(3046), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_requires] = ACTIONS(3046), + [sym_this] = ACTIONS(3046), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3048), + [sym_semgrep_named_ellipsis] = ACTIONS(3048), }, [440] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5681), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8400), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(8738), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3600), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [sym_preproc_def] = STATE(1935), + [sym_preproc_function_def] = STATE(1935), + [sym_preproc_call] = STATE(1935), + [sym_preproc_if_in_field_declaration_list] = STATE(1935), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1935), + [sym_preproc_else_in_field_declaration_list] = STATE(9286), + [sym_preproc_elif_in_field_declaration_list] = STATE(9286), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(9286), + [sym_type_definition] = STATE(1935), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6440), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7286), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(584), + [sym_field_declaration] = STATE(1935), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(1935), + [sym_operator_cast] = STATE(7765), + [sym_inline_method_definition] = STATE(1935), + [sym_constructor_specifiers] = STATE(1957), + [sym_operator_cast_definition] = STATE(1935), + [sym_operator_cast_declaration] = STATE(1935), + [sym_constructor_or_destructor_definition] = STATE(1935), + [sym_constructor_or_destructor_declaration] = STATE(1935), + [sym_friend_declaration] = STATE(1935), + [sym_access_specifier] = STATE(9998), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(1935), + [sym_alias_declaration] = STATE(1935), + [sym_static_assert_declaration] = STATE(1935), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7765), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(1935), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(584), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1957), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(3229), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3231), + [aux_sym_preproc_if_token1] = ACTIONS(3233), + [aux_sym_preproc_if_token2] = ACTIONS(3645), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3239), + [aux_sym_preproc_else_token1] = ACTIONS(3241), + [aux_sym_preproc_elif_token1] = ACTIONS(3243), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3245), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3247), + [sym_preproc_directive] = ACTIONS(3249), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(3259), + [anon_sym_typedef] = ACTIONS(3261), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(3279), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(3281), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3285), + [anon_sym_static_assert] = ACTIONS(3287), + [sym_semgrep_metavar] = ACTIONS(3289), }, [441] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5683), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8402), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(8746), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3602), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [sym_preproc_def] = STATE(1935), + [sym_preproc_function_def] = STATE(1935), + [sym_preproc_call] = STATE(1935), + [sym_preproc_if_in_field_declaration_list] = STATE(1935), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1935), + [sym_preproc_else_in_field_declaration_list] = STATE(9291), + [sym_preproc_elif_in_field_declaration_list] = STATE(9291), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(9291), + [sym_type_definition] = STATE(1935), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6440), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7286), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(584), + [sym_field_declaration] = STATE(1935), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(1935), + [sym_operator_cast] = STATE(7765), + [sym_inline_method_definition] = STATE(1935), + [sym_constructor_specifiers] = STATE(1957), + [sym_operator_cast_definition] = STATE(1935), + [sym_operator_cast_declaration] = STATE(1935), + [sym_constructor_or_destructor_definition] = STATE(1935), + [sym_constructor_or_destructor_declaration] = STATE(1935), + [sym_friend_declaration] = STATE(1935), + [sym_access_specifier] = STATE(9998), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(1935), + [sym_alias_declaration] = STATE(1935), + [sym_static_assert_declaration] = STATE(1935), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7765), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(1935), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(584), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1957), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(3229), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3231), + [aux_sym_preproc_if_token1] = ACTIONS(3233), + [aux_sym_preproc_if_token2] = ACTIONS(3647), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3239), + [aux_sym_preproc_else_token1] = ACTIONS(3241), + [aux_sym_preproc_elif_token1] = ACTIONS(3243), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3245), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3247), + [sym_preproc_directive] = ACTIONS(3249), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(3259), + [anon_sym_typedef] = ACTIONS(3261), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(3279), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(3281), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3285), + [anon_sym_static_assert] = ACTIONS(3287), + [sym_semgrep_metavar] = ACTIONS(3289), }, [442] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5684), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8403), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(8752), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3604), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [sym_identifier] = ACTIONS(3649), + [aux_sym_preproc_include_token1] = ACTIONS(3649), + [aux_sym_preproc_def_token1] = ACTIONS(3649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3651), + [aux_sym_preproc_if_token1] = ACTIONS(3649), + [aux_sym_preproc_if_token2] = ACTIONS(3649), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3649), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3649), + [aux_sym_preproc_else_token1] = ACTIONS(3649), + [aux_sym_preproc_elif_token1] = ACTIONS(3649), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3649), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3649), + [sym_preproc_directive] = ACTIONS(3649), + [anon_sym_LPAREN2] = ACTIONS(3651), + [anon_sym_BANG] = ACTIONS(3651), + [anon_sym_TILDE] = ACTIONS(3651), + [anon_sym_DASH] = ACTIONS(3649), + [anon_sym_PLUS] = ACTIONS(3649), + [anon_sym_STAR] = ACTIONS(3651), + [anon_sym_AMP_AMP] = ACTIONS(3651), + [anon_sym_AMP] = ACTIONS(3649), + [anon_sym_SEMI] = ACTIONS(3651), + [anon_sym___extension__] = ACTIONS(3649), + [anon_sym_typedef] = ACTIONS(3649), + [anon_sym_extern] = ACTIONS(3649), + [anon_sym___attribute__] = ACTIONS(3649), + [anon_sym_COLON_COLON] = ACTIONS(3651), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3651), + [anon_sym___declspec] = ACTIONS(3649), + [anon_sym___based] = ACTIONS(3649), + [anon_sym___cdecl] = ACTIONS(3649), + [anon_sym___clrcall] = ACTIONS(3649), + [anon_sym___stdcall] = ACTIONS(3649), + [anon_sym___fastcall] = ACTIONS(3649), + [anon_sym___thiscall] = ACTIONS(3649), + [anon_sym___vectorcall] = ACTIONS(3649), + [anon_sym_LBRACE] = ACTIONS(3651), + [anon_sym_signed] = ACTIONS(3649), + [anon_sym_unsigned] = ACTIONS(3649), + [anon_sym_long] = ACTIONS(3649), + [anon_sym_short] = ACTIONS(3649), + [anon_sym_LBRACK] = ACTIONS(3649), + [anon_sym_static] = ACTIONS(3649), + [anon_sym_register] = ACTIONS(3649), + [anon_sym_inline] = ACTIONS(3649), + [anon_sym___inline] = ACTIONS(3649), + [anon_sym___inline__] = ACTIONS(3649), + [anon_sym___forceinline] = ACTIONS(3649), + [anon_sym_thread_local] = ACTIONS(3649), + [anon_sym___thread] = ACTIONS(3649), + [anon_sym_const] = ACTIONS(3649), + [anon_sym_constexpr] = ACTIONS(3649), + [anon_sym_volatile] = ACTIONS(3649), + [anon_sym_restrict] = ACTIONS(3649), + [anon_sym___restrict__] = ACTIONS(3649), + [anon_sym__Atomic] = ACTIONS(3649), + [anon_sym__Noreturn] = ACTIONS(3649), + [anon_sym_noreturn] = ACTIONS(3649), + [anon_sym_mutable] = ACTIONS(3649), + [anon_sym_constinit] = ACTIONS(3649), + [anon_sym_consteval] = ACTIONS(3649), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_enum] = ACTIONS(3649), + [anon_sym_class] = ACTIONS(3649), + [anon_sym_struct] = ACTIONS(3649), + [anon_sym_union] = ACTIONS(3649), + [anon_sym_if] = ACTIONS(3649), + [anon_sym_switch] = ACTIONS(3649), + [anon_sym_case] = ACTIONS(3649), + [anon_sym_default] = ACTIONS(3649), + [anon_sym_while] = ACTIONS(3649), + [anon_sym_do] = ACTIONS(3649), + [anon_sym_for] = ACTIONS(3649), + [anon_sym_return] = ACTIONS(3649), + [anon_sym_break] = ACTIONS(3649), + [anon_sym_continue] = ACTIONS(3649), + [anon_sym_goto] = ACTIONS(3649), + [anon_sym___try] = ACTIONS(3649), + [anon_sym___leave] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3649), + [anon_sym_compl] = ACTIONS(3649), + [anon_sym_DASH_DASH] = ACTIONS(3651), + [anon_sym_PLUS_PLUS] = ACTIONS(3651), + [anon_sym_sizeof] = ACTIONS(3649), + [anon_sym___alignof__] = ACTIONS(3649), + [anon_sym___alignof] = ACTIONS(3649), + [anon_sym__alignof] = ACTIONS(3649), + [anon_sym_alignof] = ACTIONS(3649), + [anon_sym__Alignof] = ACTIONS(3649), + [anon_sym_offsetof] = ACTIONS(3649), + [anon_sym__Generic] = ACTIONS(3649), + [anon_sym_asm] = ACTIONS(3649), + [anon_sym___asm__] = ACTIONS(3649), + [sym_number_literal] = ACTIONS(3651), + [anon_sym_L_SQUOTE] = ACTIONS(3651), + [anon_sym_u_SQUOTE] = ACTIONS(3651), + [anon_sym_U_SQUOTE] = ACTIONS(3651), + [anon_sym_u8_SQUOTE] = ACTIONS(3651), + [anon_sym_SQUOTE] = ACTIONS(3651), + [anon_sym_L_DQUOTE] = ACTIONS(3651), + [anon_sym_u_DQUOTE] = ACTIONS(3651), + [anon_sym_U_DQUOTE] = ACTIONS(3651), + [anon_sym_u8_DQUOTE] = ACTIONS(3651), + [anon_sym_DQUOTE] = ACTIONS(3651), + [sym_true] = ACTIONS(3649), + [sym_false] = ACTIONS(3649), + [anon_sym_NULL] = ACTIONS(3649), + [anon_sym_nullptr] = ACTIONS(3649), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3649), + [anon_sym_decltype] = ACTIONS(3649), + [anon_sym_virtual] = ACTIONS(3649), + [anon_sym_alignas] = ACTIONS(3649), + [anon_sym_explicit] = ACTIONS(3649), + [anon_sym_typename] = ACTIONS(3649), + [anon_sym_template] = ACTIONS(3649), + [anon_sym_operator] = ACTIONS(3649), + [anon_sym_try] = ACTIONS(3649), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_throw] = ACTIONS(3649), + [anon_sym_namespace] = ACTIONS(3649), + [anon_sym_using] = ACTIONS(3649), + [anon_sym_static_assert] = ACTIONS(3649), + [anon_sym_concept] = ACTIONS(3649), + [anon_sym_co_return] = ACTIONS(3649), + [anon_sym_co_yield] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(3651), + [anon_sym_LR_DQUOTE] = ACTIONS(3651), + [anon_sym_uR_DQUOTE] = ACTIONS(3651), + [anon_sym_UR_DQUOTE] = ACTIONS(3651), + [anon_sym_u8R_DQUOTE] = ACTIONS(3651), + [anon_sym_co_await] = ACTIONS(3649), + [anon_sym_new] = ACTIONS(3649), + [anon_sym_requires] = ACTIONS(3649), + [sym_this] = ACTIONS(3649), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3651), + [sym_semgrep_named_ellipsis] = ACTIONS(3651), }, [443] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5685), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8404), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(8757), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3606), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [sym_identifier] = ACTIONS(3653), + [aux_sym_preproc_include_token1] = ACTIONS(3653), + [aux_sym_preproc_def_token1] = ACTIONS(3653), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3655), + [aux_sym_preproc_if_token1] = ACTIONS(3653), + [aux_sym_preproc_if_token2] = ACTIONS(3653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3653), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3653), + [aux_sym_preproc_else_token1] = ACTIONS(3653), + [aux_sym_preproc_elif_token1] = ACTIONS(3653), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3653), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3653), + [sym_preproc_directive] = ACTIONS(3653), + [anon_sym_LPAREN2] = ACTIONS(3655), + [anon_sym_BANG] = ACTIONS(3655), + [anon_sym_TILDE] = ACTIONS(3655), + [anon_sym_DASH] = ACTIONS(3653), + [anon_sym_PLUS] = ACTIONS(3653), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP_AMP] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3653), + [anon_sym_SEMI] = ACTIONS(3655), + [anon_sym___extension__] = ACTIONS(3653), + [anon_sym_typedef] = ACTIONS(3653), + [anon_sym_extern] = ACTIONS(3653), + [anon_sym___attribute__] = ACTIONS(3653), + [anon_sym_COLON_COLON] = ACTIONS(3655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3655), + [anon_sym___declspec] = ACTIONS(3653), + [anon_sym___based] = ACTIONS(3653), + [anon_sym___cdecl] = ACTIONS(3653), + [anon_sym___clrcall] = ACTIONS(3653), + [anon_sym___stdcall] = ACTIONS(3653), + [anon_sym___fastcall] = ACTIONS(3653), + [anon_sym___thiscall] = ACTIONS(3653), + [anon_sym___vectorcall] = ACTIONS(3653), + [anon_sym_LBRACE] = ACTIONS(3655), + [anon_sym_signed] = ACTIONS(3653), + [anon_sym_unsigned] = ACTIONS(3653), + [anon_sym_long] = ACTIONS(3653), + [anon_sym_short] = ACTIONS(3653), + [anon_sym_LBRACK] = ACTIONS(3653), + [anon_sym_static] = ACTIONS(3653), + [anon_sym_register] = ACTIONS(3653), + [anon_sym_inline] = ACTIONS(3653), + [anon_sym___inline] = ACTIONS(3653), + [anon_sym___inline__] = ACTIONS(3653), + [anon_sym___forceinline] = ACTIONS(3653), + [anon_sym_thread_local] = ACTIONS(3653), + [anon_sym___thread] = ACTIONS(3653), + [anon_sym_const] = ACTIONS(3653), + [anon_sym_constexpr] = ACTIONS(3653), + [anon_sym_volatile] = ACTIONS(3653), + [anon_sym_restrict] = ACTIONS(3653), + [anon_sym___restrict__] = ACTIONS(3653), + [anon_sym__Atomic] = ACTIONS(3653), + [anon_sym__Noreturn] = ACTIONS(3653), + [anon_sym_noreturn] = ACTIONS(3653), + [anon_sym_mutable] = ACTIONS(3653), + [anon_sym_constinit] = ACTIONS(3653), + [anon_sym_consteval] = ACTIONS(3653), + [sym_primitive_type] = ACTIONS(3653), + [anon_sym_enum] = ACTIONS(3653), + [anon_sym_class] = ACTIONS(3653), + [anon_sym_struct] = ACTIONS(3653), + [anon_sym_union] = ACTIONS(3653), + [anon_sym_if] = ACTIONS(3653), + [anon_sym_switch] = ACTIONS(3653), + [anon_sym_case] = ACTIONS(3653), + [anon_sym_default] = ACTIONS(3653), + [anon_sym_while] = ACTIONS(3653), + [anon_sym_do] = ACTIONS(3653), + [anon_sym_for] = ACTIONS(3653), + [anon_sym_return] = ACTIONS(3653), + [anon_sym_break] = ACTIONS(3653), + [anon_sym_continue] = ACTIONS(3653), + [anon_sym_goto] = ACTIONS(3653), + [anon_sym___try] = ACTIONS(3653), + [anon_sym___leave] = ACTIONS(3653), + [anon_sym_not] = ACTIONS(3653), + [anon_sym_compl] = ACTIONS(3653), + [anon_sym_DASH_DASH] = ACTIONS(3655), + [anon_sym_PLUS_PLUS] = ACTIONS(3655), + [anon_sym_sizeof] = ACTIONS(3653), + [anon_sym___alignof__] = ACTIONS(3653), + [anon_sym___alignof] = ACTIONS(3653), + [anon_sym__alignof] = ACTIONS(3653), + [anon_sym_alignof] = ACTIONS(3653), + [anon_sym__Alignof] = ACTIONS(3653), + [anon_sym_offsetof] = ACTIONS(3653), + [anon_sym__Generic] = ACTIONS(3653), + [anon_sym_asm] = ACTIONS(3653), + [anon_sym___asm__] = ACTIONS(3653), + [sym_number_literal] = ACTIONS(3655), + [anon_sym_L_SQUOTE] = ACTIONS(3655), + [anon_sym_u_SQUOTE] = ACTIONS(3655), + [anon_sym_U_SQUOTE] = ACTIONS(3655), + [anon_sym_u8_SQUOTE] = ACTIONS(3655), + [anon_sym_SQUOTE] = ACTIONS(3655), + [anon_sym_L_DQUOTE] = ACTIONS(3655), + [anon_sym_u_DQUOTE] = ACTIONS(3655), + [anon_sym_U_DQUOTE] = ACTIONS(3655), + [anon_sym_u8_DQUOTE] = ACTIONS(3655), + [anon_sym_DQUOTE] = ACTIONS(3655), + [sym_true] = ACTIONS(3653), + [sym_false] = ACTIONS(3653), + [anon_sym_NULL] = ACTIONS(3653), + [anon_sym_nullptr] = ACTIONS(3653), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3653), + [anon_sym_decltype] = ACTIONS(3653), + [anon_sym_virtual] = ACTIONS(3653), + [anon_sym_alignas] = ACTIONS(3653), + [anon_sym_explicit] = ACTIONS(3653), + [anon_sym_typename] = ACTIONS(3653), + [anon_sym_template] = ACTIONS(3653), + [anon_sym_operator] = ACTIONS(3653), + [anon_sym_try] = ACTIONS(3653), + [anon_sym_delete] = ACTIONS(3653), + [anon_sym_throw] = ACTIONS(3653), + [anon_sym_namespace] = ACTIONS(3653), + [anon_sym_using] = ACTIONS(3653), + [anon_sym_static_assert] = ACTIONS(3653), + [anon_sym_concept] = ACTIONS(3653), + [anon_sym_co_return] = ACTIONS(3653), + [anon_sym_co_yield] = ACTIONS(3653), + [anon_sym_R_DQUOTE] = ACTIONS(3655), + [anon_sym_LR_DQUOTE] = ACTIONS(3655), + [anon_sym_uR_DQUOTE] = ACTIONS(3655), + [anon_sym_UR_DQUOTE] = ACTIONS(3655), + [anon_sym_u8R_DQUOTE] = ACTIONS(3655), + [anon_sym_co_await] = ACTIONS(3653), + [anon_sym_new] = ACTIONS(3653), + [anon_sym_requires] = ACTIONS(3653), + [sym_this] = ACTIONS(3653), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3655), + [sym_semgrep_named_ellipsis] = ACTIONS(3655), }, [444] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5686), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8405), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(8763), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3608), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [sym_identifier] = ACTIONS(3657), + [aux_sym_preproc_include_token1] = ACTIONS(3657), + [aux_sym_preproc_def_token1] = ACTIONS(3657), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3659), + [aux_sym_preproc_if_token1] = ACTIONS(3657), + [aux_sym_preproc_if_token2] = ACTIONS(3657), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3657), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3657), + [aux_sym_preproc_else_token1] = ACTIONS(3657), + [aux_sym_preproc_elif_token1] = ACTIONS(3657), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3657), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3657), + [sym_preproc_directive] = ACTIONS(3657), + [anon_sym_LPAREN2] = ACTIONS(3659), + [anon_sym_BANG] = ACTIONS(3659), + [anon_sym_TILDE] = ACTIONS(3659), + [anon_sym_DASH] = ACTIONS(3657), + [anon_sym_PLUS] = ACTIONS(3657), + [anon_sym_STAR] = ACTIONS(3659), + [anon_sym_AMP_AMP] = ACTIONS(3659), + [anon_sym_AMP] = ACTIONS(3657), + [anon_sym_SEMI] = ACTIONS(3659), + [anon_sym___extension__] = ACTIONS(3657), + [anon_sym_typedef] = ACTIONS(3657), + [anon_sym_extern] = ACTIONS(3657), + [anon_sym___attribute__] = ACTIONS(3657), + [anon_sym_COLON_COLON] = ACTIONS(3659), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3659), + [anon_sym___declspec] = ACTIONS(3657), + [anon_sym___based] = ACTIONS(3657), + [anon_sym___cdecl] = ACTIONS(3657), + [anon_sym___clrcall] = ACTIONS(3657), + [anon_sym___stdcall] = ACTIONS(3657), + [anon_sym___fastcall] = ACTIONS(3657), + [anon_sym___thiscall] = ACTIONS(3657), + [anon_sym___vectorcall] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3659), + [anon_sym_signed] = ACTIONS(3657), + [anon_sym_unsigned] = ACTIONS(3657), + [anon_sym_long] = ACTIONS(3657), + [anon_sym_short] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_static] = ACTIONS(3657), + [anon_sym_register] = ACTIONS(3657), + [anon_sym_inline] = ACTIONS(3657), + [anon_sym___inline] = ACTIONS(3657), + [anon_sym___inline__] = ACTIONS(3657), + [anon_sym___forceinline] = ACTIONS(3657), + [anon_sym_thread_local] = ACTIONS(3657), + [anon_sym___thread] = ACTIONS(3657), + [anon_sym_const] = ACTIONS(3657), + [anon_sym_constexpr] = ACTIONS(3657), + [anon_sym_volatile] = ACTIONS(3657), + [anon_sym_restrict] = ACTIONS(3657), + [anon_sym___restrict__] = ACTIONS(3657), + [anon_sym__Atomic] = ACTIONS(3657), + [anon_sym__Noreturn] = ACTIONS(3657), + [anon_sym_noreturn] = ACTIONS(3657), + [anon_sym_mutable] = ACTIONS(3657), + [anon_sym_constinit] = ACTIONS(3657), + [anon_sym_consteval] = ACTIONS(3657), + [sym_primitive_type] = ACTIONS(3657), + [anon_sym_enum] = ACTIONS(3657), + [anon_sym_class] = ACTIONS(3657), + [anon_sym_struct] = ACTIONS(3657), + [anon_sym_union] = ACTIONS(3657), + [anon_sym_if] = ACTIONS(3657), + [anon_sym_switch] = ACTIONS(3657), + [anon_sym_case] = ACTIONS(3657), + [anon_sym_default] = ACTIONS(3657), + [anon_sym_while] = ACTIONS(3657), + [anon_sym_do] = ACTIONS(3657), + [anon_sym_for] = ACTIONS(3657), + [anon_sym_return] = ACTIONS(3657), + [anon_sym_break] = ACTIONS(3657), + [anon_sym_continue] = ACTIONS(3657), + [anon_sym_goto] = ACTIONS(3657), + [anon_sym___try] = ACTIONS(3657), + [anon_sym___leave] = ACTIONS(3657), + [anon_sym_not] = ACTIONS(3657), + [anon_sym_compl] = ACTIONS(3657), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3657), + [anon_sym___alignof__] = ACTIONS(3657), + [anon_sym___alignof] = ACTIONS(3657), + [anon_sym__alignof] = ACTIONS(3657), + [anon_sym_alignof] = ACTIONS(3657), + [anon_sym__Alignof] = ACTIONS(3657), + [anon_sym_offsetof] = ACTIONS(3657), + [anon_sym__Generic] = ACTIONS(3657), + [anon_sym_asm] = ACTIONS(3657), + [anon_sym___asm__] = ACTIONS(3657), + [sym_number_literal] = ACTIONS(3659), + [anon_sym_L_SQUOTE] = ACTIONS(3659), + [anon_sym_u_SQUOTE] = ACTIONS(3659), + [anon_sym_U_SQUOTE] = ACTIONS(3659), + [anon_sym_u8_SQUOTE] = ACTIONS(3659), + [anon_sym_SQUOTE] = ACTIONS(3659), + [anon_sym_L_DQUOTE] = ACTIONS(3659), + [anon_sym_u_DQUOTE] = ACTIONS(3659), + [anon_sym_U_DQUOTE] = ACTIONS(3659), + [anon_sym_u8_DQUOTE] = ACTIONS(3659), + [anon_sym_DQUOTE] = ACTIONS(3659), + [sym_true] = ACTIONS(3657), + [sym_false] = ACTIONS(3657), + [anon_sym_NULL] = ACTIONS(3657), + [anon_sym_nullptr] = ACTIONS(3657), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3657), + [anon_sym_decltype] = ACTIONS(3657), + [anon_sym_virtual] = ACTIONS(3657), + [anon_sym_alignas] = ACTIONS(3657), + [anon_sym_explicit] = ACTIONS(3657), + [anon_sym_typename] = ACTIONS(3657), + [anon_sym_template] = ACTIONS(3657), + [anon_sym_operator] = ACTIONS(3657), + [anon_sym_try] = ACTIONS(3657), + [anon_sym_delete] = ACTIONS(3657), + [anon_sym_throw] = ACTIONS(3657), + [anon_sym_namespace] = ACTIONS(3657), + [anon_sym_using] = ACTIONS(3657), + [anon_sym_static_assert] = ACTIONS(3657), + [anon_sym_concept] = ACTIONS(3657), + [anon_sym_co_return] = ACTIONS(3657), + [anon_sym_co_yield] = ACTIONS(3657), + [anon_sym_R_DQUOTE] = ACTIONS(3659), + [anon_sym_LR_DQUOTE] = ACTIONS(3659), + [anon_sym_uR_DQUOTE] = ACTIONS(3659), + [anon_sym_UR_DQUOTE] = ACTIONS(3659), + [anon_sym_u8R_DQUOTE] = ACTIONS(3659), + [anon_sym_co_await] = ACTIONS(3657), + [anon_sym_new] = ACTIONS(3657), + [anon_sym_requires] = ACTIONS(3657), + [sym_this] = ACTIONS(3657), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3659), + [sym_semgrep_named_ellipsis] = ACTIONS(3659), }, [445] = { - [sym_identifier] = ACTIONS(3610), - [aux_sym_preproc_include_token1] = ACTIONS(3610), - [aux_sym_preproc_def_token1] = ACTIONS(3610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3612), - [aux_sym_preproc_if_token1] = ACTIONS(3610), - [aux_sym_preproc_if_token2] = ACTIONS(3610), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3610), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3610), - [aux_sym_preproc_else_token1] = ACTIONS(3610), - [aux_sym_preproc_elif_token1] = ACTIONS(3610), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3610), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3610), - [sym_preproc_directive] = ACTIONS(3610), - [anon_sym_LPAREN2] = ACTIONS(3612), - [anon_sym_BANG] = ACTIONS(3612), - [anon_sym_TILDE] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3610), - [anon_sym_STAR] = ACTIONS(3612), - [anon_sym_AMP_AMP] = ACTIONS(3612), - [anon_sym_AMP] = ACTIONS(3610), - [anon_sym_SEMI] = ACTIONS(3612), - [anon_sym___extension__] = ACTIONS(3610), - [anon_sym_typedef] = ACTIONS(3610), - [anon_sym_extern] = ACTIONS(3610), - [anon_sym___attribute__] = ACTIONS(3610), - [anon_sym_COLON_COLON] = ACTIONS(3612), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3612), - [anon_sym___declspec] = ACTIONS(3610), - [anon_sym___based] = ACTIONS(3610), - [anon_sym___cdecl] = ACTIONS(3610), - [anon_sym___clrcall] = ACTIONS(3610), - [anon_sym___stdcall] = ACTIONS(3610), - [anon_sym___fastcall] = ACTIONS(3610), - [anon_sym___thiscall] = ACTIONS(3610), - [anon_sym___vectorcall] = ACTIONS(3610), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym_signed] = ACTIONS(3610), - [anon_sym_unsigned] = ACTIONS(3610), - [anon_sym_long] = ACTIONS(3610), - [anon_sym_short] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3610), - [anon_sym_static] = ACTIONS(3610), - [anon_sym_register] = ACTIONS(3610), - [anon_sym_inline] = ACTIONS(3610), - [anon_sym___inline] = ACTIONS(3610), - [anon_sym___inline__] = ACTIONS(3610), - [anon_sym___forceinline] = ACTIONS(3610), - [anon_sym_thread_local] = ACTIONS(3610), - [anon_sym___thread] = ACTIONS(3610), - [anon_sym_const] = ACTIONS(3610), - [anon_sym_constexpr] = ACTIONS(3610), - [anon_sym_volatile] = ACTIONS(3610), - [anon_sym_restrict] = ACTIONS(3610), - [anon_sym___restrict__] = ACTIONS(3610), - [anon_sym__Atomic] = ACTIONS(3610), - [anon_sym__Noreturn] = ACTIONS(3610), - [anon_sym_noreturn] = ACTIONS(3610), - [anon_sym_mutable] = ACTIONS(3610), - [anon_sym_constinit] = ACTIONS(3610), - [anon_sym_consteval] = ACTIONS(3610), - [sym_primitive_type] = ACTIONS(3610), - [anon_sym_enum] = ACTIONS(3610), - [anon_sym_class] = ACTIONS(3610), - [anon_sym_struct] = ACTIONS(3610), - [anon_sym_union] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(3610), - [anon_sym_switch] = ACTIONS(3610), - [anon_sym_case] = ACTIONS(3610), - [anon_sym_default] = ACTIONS(3610), - [anon_sym_while] = ACTIONS(3610), - [anon_sym_do] = ACTIONS(3610), - [anon_sym_for] = ACTIONS(3610), - [anon_sym_return] = ACTIONS(3610), - [anon_sym_break] = ACTIONS(3610), - [anon_sym_continue] = ACTIONS(3610), - [anon_sym_goto] = ACTIONS(3610), - [anon_sym___try] = ACTIONS(3610), - [anon_sym___leave] = ACTIONS(3610), - [anon_sym_not] = ACTIONS(3610), - [anon_sym_compl] = ACTIONS(3610), - [anon_sym_DASH_DASH] = ACTIONS(3612), - [anon_sym_PLUS_PLUS] = ACTIONS(3612), - [anon_sym_sizeof] = ACTIONS(3610), - [anon_sym___alignof__] = ACTIONS(3610), - [anon_sym___alignof] = ACTIONS(3610), - [anon_sym__alignof] = ACTIONS(3610), - [anon_sym_alignof] = ACTIONS(3610), - [anon_sym__Alignof] = ACTIONS(3610), - [anon_sym_offsetof] = ACTIONS(3610), - [anon_sym__Generic] = ACTIONS(3610), - [anon_sym_asm] = ACTIONS(3610), - [anon_sym___asm__] = ACTIONS(3610), - [sym_number_literal] = ACTIONS(3612), - [anon_sym_L_SQUOTE] = ACTIONS(3612), - [anon_sym_u_SQUOTE] = ACTIONS(3612), - [anon_sym_U_SQUOTE] = ACTIONS(3612), - [anon_sym_u8_SQUOTE] = ACTIONS(3612), - [anon_sym_SQUOTE] = ACTIONS(3612), - [anon_sym_L_DQUOTE] = ACTIONS(3612), - [anon_sym_u_DQUOTE] = ACTIONS(3612), - [anon_sym_U_DQUOTE] = ACTIONS(3612), - [anon_sym_u8_DQUOTE] = ACTIONS(3612), - [anon_sym_DQUOTE] = ACTIONS(3612), - [sym_true] = ACTIONS(3610), - [sym_false] = ACTIONS(3610), - [anon_sym_NULL] = ACTIONS(3610), - [anon_sym_nullptr] = ACTIONS(3610), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3610), - [anon_sym_decltype] = ACTIONS(3610), - [anon_sym_virtual] = ACTIONS(3610), - [anon_sym_alignas] = ACTIONS(3610), - [anon_sym_explicit] = ACTIONS(3610), - [anon_sym_typename] = ACTIONS(3610), - [anon_sym_template] = ACTIONS(3610), - [anon_sym_operator] = ACTIONS(3610), - [anon_sym_try] = ACTIONS(3610), - [anon_sym_delete] = ACTIONS(3610), - [anon_sym_throw] = ACTIONS(3610), - [anon_sym_namespace] = ACTIONS(3610), - [anon_sym_using] = ACTIONS(3610), - [anon_sym_static_assert] = ACTIONS(3610), - [anon_sym_concept] = ACTIONS(3610), - [anon_sym_co_return] = ACTIONS(3610), - [anon_sym_co_yield] = ACTIONS(3610), - [anon_sym_R_DQUOTE] = ACTIONS(3612), - [anon_sym_LR_DQUOTE] = ACTIONS(3612), - [anon_sym_uR_DQUOTE] = ACTIONS(3612), - [anon_sym_UR_DQUOTE] = ACTIONS(3612), - [anon_sym_u8R_DQUOTE] = ACTIONS(3612), - [anon_sym_co_await] = ACTIONS(3610), - [anon_sym_new] = ACTIONS(3610), - [anon_sym_requires] = ACTIONS(3610), - [sym_this] = ACTIONS(3610), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3612), - [sym_semgrep_named_ellipsis] = ACTIONS(3612), + [sym_identifier] = ACTIONS(3661), + [aux_sym_preproc_include_token1] = ACTIONS(3661), + [aux_sym_preproc_def_token1] = ACTIONS(3661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3663), + [aux_sym_preproc_if_token1] = ACTIONS(3661), + [aux_sym_preproc_if_token2] = ACTIONS(3661), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3661), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3661), + [aux_sym_preproc_else_token1] = ACTIONS(3661), + [aux_sym_preproc_elif_token1] = ACTIONS(3661), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3661), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3661), + [sym_preproc_directive] = ACTIONS(3661), + [anon_sym_LPAREN2] = ACTIONS(3663), + [anon_sym_BANG] = ACTIONS(3663), + [anon_sym_TILDE] = ACTIONS(3663), + [anon_sym_DASH] = ACTIONS(3661), + [anon_sym_PLUS] = ACTIONS(3661), + [anon_sym_STAR] = ACTIONS(3663), + [anon_sym_AMP_AMP] = ACTIONS(3663), + [anon_sym_AMP] = ACTIONS(3661), + [anon_sym_SEMI] = ACTIONS(3663), + [anon_sym___extension__] = ACTIONS(3661), + [anon_sym_typedef] = ACTIONS(3661), + [anon_sym_extern] = ACTIONS(3661), + [anon_sym___attribute__] = ACTIONS(3661), + [anon_sym_COLON_COLON] = ACTIONS(3663), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3663), + [anon_sym___declspec] = ACTIONS(3661), + [anon_sym___based] = ACTIONS(3661), + [anon_sym___cdecl] = ACTIONS(3661), + [anon_sym___clrcall] = ACTIONS(3661), + [anon_sym___stdcall] = ACTIONS(3661), + [anon_sym___fastcall] = ACTIONS(3661), + [anon_sym___thiscall] = ACTIONS(3661), + [anon_sym___vectorcall] = ACTIONS(3661), + [anon_sym_LBRACE] = ACTIONS(3663), + [anon_sym_signed] = ACTIONS(3661), + [anon_sym_unsigned] = ACTIONS(3661), + [anon_sym_long] = ACTIONS(3661), + [anon_sym_short] = ACTIONS(3661), + [anon_sym_LBRACK] = ACTIONS(3661), + [anon_sym_static] = ACTIONS(3661), + [anon_sym_register] = ACTIONS(3661), + [anon_sym_inline] = ACTIONS(3661), + [anon_sym___inline] = ACTIONS(3661), + [anon_sym___inline__] = ACTIONS(3661), + [anon_sym___forceinline] = ACTIONS(3661), + [anon_sym_thread_local] = ACTIONS(3661), + [anon_sym___thread] = ACTIONS(3661), + [anon_sym_const] = ACTIONS(3661), + [anon_sym_constexpr] = ACTIONS(3661), + [anon_sym_volatile] = ACTIONS(3661), + [anon_sym_restrict] = ACTIONS(3661), + [anon_sym___restrict__] = ACTIONS(3661), + [anon_sym__Atomic] = ACTIONS(3661), + [anon_sym__Noreturn] = ACTIONS(3661), + [anon_sym_noreturn] = ACTIONS(3661), + [anon_sym_mutable] = ACTIONS(3661), + [anon_sym_constinit] = ACTIONS(3661), + [anon_sym_consteval] = ACTIONS(3661), + [sym_primitive_type] = ACTIONS(3661), + [anon_sym_enum] = ACTIONS(3661), + [anon_sym_class] = ACTIONS(3661), + [anon_sym_struct] = ACTIONS(3661), + [anon_sym_union] = ACTIONS(3661), + [anon_sym_if] = ACTIONS(3661), + [anon_sym_switch] = ACTIONS(3661), + [anon_sym_case] = ACTIONS(3661), + [anon_sym_default] = ACTIONS(3661), + [anon_sym_while] = ACTIONS(3661), + [anon_sym_do] = ACTIONS(3661), + [anon_sym_for] = ACTIONS(3661), + [anon_sym_return] = ACTIONS(3661), + [anon_sym_break] = ACTIONS(3661), + [anon_sym_continue] = ACTIONS(3661), + [anon_sym_goto] = ACTIONS(3661), + [anon_sym___try] = ACTIONS(3661), + [anon_sym___leave] = ACTIONS(3661), + [anon_sym_not] = ACTIONS(3661), + [anon_sym_compl] = ACTIONS(3661), + [anon_sym_DASH_DASH] = ACTIONS(3663), + [anon_sym_PLUS_PLUS] = ACTIONS(3663), + [anon_sym_sizeof] = ACTIONS(3661), + [anon_sym___alignof__] = ACTIONS(3661), + [anon_sym___alignof] = ACTIONS(3661), + [anon_sym__alignof] = ACTIONS(3661), + [anon_sym_alignof] = ACTIONS(3661), + [anon_sym__Alignof] = ACTIONS(3661), + [anon_sym_offsetof] = ACTIONS(3661), + [anon_sym__Generic] = ACTIONS(3661), + [anon_sym_asm] = ACTIONS(3661), + [anon_sym___asm__] = ACTIONS(3661), + [sym_number_literal] = ACTIONS(3663), + [anon_sym_L_SQUOTE] = ACTIONS(3663), + [anon_sym_u_SQUOTE] = ACTIONS(3663), + [anon_sym_U_SQUOTE] = ACTIONS(3663), + [anon_sym_u8_SQUOTE] = ACTIONS(3663), + [anon_sym_SQUOTE] = ACTIONS(3663), + [anon_sym_L_DQUOTE] = ACTIONS(3663), + [anon_sym_u_DQUOTE] = ACTIONS(3663), + [anon_sym_U_DQUOTE] = ACTIONS(3663), + [anon_sym_u8_DQUOTE] = ACTIONS(3663), + [anon_sym_DQUOTE] = ACTIONS(3663), + [sym_true] = ACTIONS(3661), + [sym_false] = ACTIONS(3661), + [anon_sym_NULL] = ACTIONS(3661), + [anon_sym_nullptr] = ACTIONS(3661), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3661), + [anon_sym_decltype] = ACTIONS(3661), + [anon_sym_virtual] = ACTIONS(3661), + [anon_sym_alignas] = ACTIONS(3661), + [anon_sym_explicit] = ACTIONS(3661), + [anon_sym_typename] = ACTIONS(3661), + [anon_sym_template] = ACTIONS(3661), + [anon_sym_operator] = ACTIONS(3661), + [anon_sym_try] = ACTIONS(3661), + [anon_sym_delete] = ACTIONS(3661), + [anon_sym_throw] = ACTIONS(3661), + [anon_sym_namespace] = ACTIONS(3661), + [anon_sym_using] = ACTIONS(3661), + [anon_sym_static_assert] = ACTIONS(3661), + [anon_sym_concept] = ACTIONS(3661), + [anon_sym_co_return] = ACTIONS(3661), + [anon_sym_co_yield] = ACTIONS(3661), + [anon_sym_R_DQUOTE] = ACTIONS(3663), + [anon_sym_LR_DQUOTE] = ACTIONS(3663), + [anon_sym_uR_DQUOTE] = ACTIONS(3663), + [anon_sym_UR_DQUOTE] = ACTIONS(3663), + [anon_sym_u8R_DQUOTE] = ACTIONS(3663), + [anon_sym_co_await] = ACTIONS(3661), + [anon_sym_new] = ACTIONS(3661), + [anon_sym_requires] = ACTIONS(3661), + [sym_this] = ACTIONS(3661), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3663), + [sym_semgrep_named_ellipsis] = ACTIONS(3663), }, [446] = { - [sym_identifier] = ACTIONS(3614), - [aux_sym_preproc_include_token1] = ACTIONS(3614), - [aux_sym_preproc_def_token1] = ACTIONS(3614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3616), - [aux_sym_preproc_if_token1] = ACTIONS(3614), - [aux_sym_preproc_if_token2] = ACTIONS(3614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3614), - [aux_sym_preproc_else_token1] = ACTIONS(3614), - [aux_sym_preproc_elif_token1] = ACTIONS(3614), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3614), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3614), - [sym_preproc_directive] = ACTIONS(3614), - [anon_sym_LPAREN2] = ACTIONS(3616), - [anon_sym_BANG] = ACTIONS(3616), - [anon_sym_TILDE] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_STAR] = ACTIONS(3616), - [anon_sym_AMP_AMP] = ACTIONS(3616), - [anon_sym_AMP] = ACTIONS(3614), - [anon_sym_SEMI] = ACTIONS(3616), - [anon_sym___extension__] = ACTIONS(3614), - [anon_sym_typedef] = ACTIONS(3614), - [anon_sym_extern] = ACTIONS(3614), - [anon_sym___attribute__] = ACTIONS(3614), - [anon_sym_COLON_COLON] = ACTIONS(3616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3616), - [anon_sym___declspec] = ACTIONS(3614), - [anon_sym___based] = ACTIONS(3614), - [anon_sym___cdecl] = ACTIONS(3614), - [anon_sym___clrcall] = ACTIONS(3614), - [anon_sym___stdcall] = ACTIONS(3614), - [anon_sym___fastcall] = ACTIONS(3614), - [anon_sym___thiscall] = ACTIONS(3614), - [anon_sym___vectorcall] = ACTIONS(3614), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_signed] = ACTIONS(3614), - [anon_sym_unsigned] = ACTIONS(3614), - [anon_sym_long] = ACTIONS(3614), - [anon_sym_short] = ACTIONS(3614), - [anon_sym_LBRACK] = ACTIONS(3614), - [anon_sym_static] = ACTIONS(3614), - [anon_sym_register] = ACTIONS(3614), - [anon_sym_inline] = ACTIONS(3614), - [anon_sym___inline] = ACTIONS(3614), - [anon_sym___inline__] = ACTIONS(3614), - [anon_sym___forceinline] = ACTIONS(3614), - [anon_sym_thread_local] = ACTIONS(3614), - [anon_sym___thread] = ACTIONS(3614), - [anon_sym_const] = ACTIONS(3614), - [anon_sym_constexpr] = ACTIONS(3614), - [anon_sym_volatile] = ACTIONS(3614), - [anon_sym_restrict] = ACTIONS(3614), - [anon_sym___restrict__] = ACTIONS(3614), - [anon_sym__Atomic] = ACTIONS(3614), - [anon_sym__Noreturn] = ACTIONS(3614), - [anon_sym_noreturn] = ACTIONS(3614), - [anon_sym_mutable] = ACTIONS(3614), - [anon_sym_constinit] = ACTIONS(3614), - [anon_sym_consteval] = ACTIONS(3614), - [sym_primitive_type] = ACTIONS(3614), - [anon_sym_enum] = ACTIONS(3614), - [anon_sym_class] = ACTIONS(3614), - [anon_sym_struct] = ACTIONS(3614), - [anon_sym_union] = ACTIONS(3614), - [anon_sym_if] = ACTIONS(3614), - [anon_sym_switch] = ACTIONS(3614), - [anon_sym_case] = ACTIONS(3614), - [anon_sym_default] = ACTIONS(3614), - [anon_sym_while] = ACTIONS(3614), - [anon_sym_do] = ACTIONS(3614), - [anon_sym_for] = ACTIONS(3614), - [anon_sym_return] = ACTIONS(3614), - [anon_sym_break] = ACTIONS(3614), - [anon_sym_continue] = ACTIONS(3614), - [anon_sym_goto] = ACTIONS(3614), - [anon_sym___try] = ACTIONS(3614), - [anon_sym___leave] = ACTIONS(3614), - [anon_sym_not] = ACTIONS(3614), - [anon_sym_compl] = ACTIONS(3614), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_sizeof] = ACTIONS(3614), - [anon_sym___alignof__] = ACTIONS(3614), - [anon_sym___alignof] = ACTIONS(3614), - [anon_sym__alignof] = ACTIONS(3614), - [anon_sym_alignof] = ACTIONS(3614), - [anon_sym__Alignof] = ACTIONS(3614), - [anon_sym_offsetof] = ACTIONS(3614), - [anon_sym__Generic] = ACTIONS(3614), - [anon_sym_asm] = ACTIONS(3614), - [anon_sym___asm__] = ACTIONS(3614), - [sym_number_literal] = ACTIONS(3616), - [anon_sym_L_SQUOTE] = ACTIONS(3616), - [anon_sym_u_SQUOTE] = ACTIONS(3616), - [anon_sym_U_SQUOTE] = ACTIONS(3616), - [anon_sym_u8_SQUOTE] = ACTIONS(3616), - [anon_sym_SQUOTE] = ACTIONS(3616), - [anon_sym_L_DQUOTE] = ACTIONS(3616), - [anon_sym_u_DQUOTE] = ACTIONS(3616), - [anon_sym_U_DQUOTE] = ACTIONS(3616), - [anon_sym_u8_DQUOTE] = ACTIONS(3616), - [anon_sym_DQUOTE] = ACTIONS(3616), - [sym_true] = ACTIONS(3614), - [sym_false] = ACTIONS(3614), - [anon_sym_NULL] = ACTIONS(3614), - [anon_sym_nullptr] = ACTIONS(3614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3614), - [anon_sym_decltype] = ACTIONS(3614), - [anon_sym_virtual] = ACTIONS(3614), - [anon_sym_alignas] = ACTIONS(3614), - [anon_sym_explicit] = ACTIONS(3614), - [anon_sym_typename] = ACTIONS(3614), - [anon_sym_template] = ACTIONS(3614), - [anon_sym_operator] = ACTIONS(3614), - [anon_sym_try] = ACTIONS(3614), - [anon_sym_delete] = ACTIONS(3614), - [anon_sym_throw] = ACTIONS(3614), - [anon_sym_namespace] = ACTIONS(3614), - [anon_sym_using] = ACTIONS(3614), - [anon_sym_static_assert] = ACTIONS(3614), - [anon_sym_concept] = ACTIONS(3614), - [anon_sym_co_return] = ACTIONS(3614), - [anon_sym_co_yield] = ACTIONS(3614), - [anon_sym_R_DQUOTE] = ACTIONS(3616), - [anon_sym_LR_DQUOTE] = ACTIONS(3616), - [anon_sym_uR_DQUOTE] = ACTIONS(3616), - [anon_sym_UR_DQUOTE] = ACTIONS(3616), - [anon_sym_u8R_DQUOTE] = ACTIONS(3616), - [anon_sym_co_await] = ACTIONS(3614), - [anon_sym_new] = ACTIONS(3614), - [anon_sym_requires] = ACTIONS(3614), - [sym_this] = ACTIONS(3614), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3616), - [sym_semgrep_named_ellipsis] = ACTIONS(3616), + [sym_identifier] = ACTIONS(2355), + [aux_sym_preproc_include_token1] = ACTIONS(2355), + [aux_sym_preproc_def_token1] = ACTIONS(2355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2353), + [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(2353), + [anon_sym_BANG] = ACTIONS(2353), + [anon_sym_TILDE] = ACTIONS(2353), + [anon_sym_DASH] = ACTIONS(2355), + [anon_sym_PLUS] = ACTIONS(2355), + [anon_sym_STAR] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(2353), + [anon_sym_AMP] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2353), + [anon_sym___extension__] = ACTIONS(2355), + [anon_sym_typedef] = ACTIONS(2355), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym___attribute__] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(2353), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), + [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(2353), + [anon_sym_signed] = ACTIONS(2355), + [anon_sym_unsigned] = ACTIONS(2355), + [anon_sym_long] = ACTIONS(2355), + [anon_sym_short] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_static] = ACTIONS(2355), + [anon_sym_register] = ACTIONS(2355), + [anon_sym_inline] = ACTIONS(2355), + [anon_sym___inline] = ACTIONS(2355), + [anon_sym___inline__] = ACTIONS(2355), + [anon_sym___forceinline] = ACTIONS(2355), + [anon_sym_thread_local] = ACTIONS(2355), + [anon_sym___thread] = ACTIONS(2355), + [anon_sym_const] = ACTIONS(2355), + [anon_sym_constexpr] = ACTIONS(2355), + [anon_sym_volatile] = ACTIONS(2355), + [anon_sym_restrict] = ACTIONS(2355), + [anon_sym___restrict__] = ACTIONS(2355), + [anon_sym__Atomic] = ACTIONS(2355), + [anon_sym__Noreturn] = ACTIONS(2355), + [anon_sym_noreturn] = ACTIONS(2355), + [anon_sym_mutable] = ACTIONS(2355), + [anon_sym_constinit] = ACTIONS(2355), + [anon_sym_consteval] = 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___try] = ACTIONS(2355), + [anon_sym___leave] = ACTIONS(2355), + [anon_sym_not] = ACTIONS(2355), + [anon_sym_compl] = ACTIONS(2355), + [anon_sym_DASH_DASH] = ACTIONS(2353), + [anon_sym_PLUS_PLUS] = ACTIONS(2353), + [anon_sym_sizeof] = ACTIONS(2355), + [anon_sym___alignof__] = ACTIONS(2355), + [anon_sym___alignof] = ACTIONS(2355), + [anon_sym__alignof] = ACTIONS(2355), + [anon_sym_alignof] = ACTIONS(2355), + [anon_sym__Alignof] = ACTIONS(2355), + [anon_sym_offsetof] = ACTIONS(2355), + [anon_sym__Generic] = ACTIONS(2355), + [anon_sym_asm] = ACTIONS(2355), + [anon_sym___asm__] = ACTIONS(2355), + [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(2355), + [sym_false] = ACTIONS(2355), + [anon_sym_NULL] = ACTIONS(2355), + [anon_sym_nullptr] = ACTIONS(2355), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2355), + [anon_sym_decltype] = ACTIONS(2355), + [anon_sym_virtual] = ACTIONS(2355), + [anon_sym_alignas] = 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_catch] = ACTIONS(2355), + [anon_sym_R_DQUOTE] = ACTIONS(2353), + [anon_sym_LR_DQUOTE] = ACTIONS(2353), + [anon_sym_uR_DQUOTE] = ACTIONS(2353), + [anon_sym_UR_DQUOTE] = ACTIONS(2353), + [anon_sym_u8R_DQUOTE] = ACTIONS(2353), + [anon_sym_co_await] = ACTIONS(2355), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_requires] = ACTIONS(2355), + [sym_this] = ACTIONS(2355), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2353), + [sym_semgrep_named_ellipsis] = ACTIONS(2353), }, [447] = { - [sym_identifier] = ACTIONS(3618), - [aux_sym_preproc_include_token1] = ACTIONS(3618), - [aux_sym_preproc_def_token1] = ACTIONS(3618), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3620), - [aux_sym_preproc_if_token1] = ACTIONS(3618), - [aux_sym_preproc_if_token2] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), - [aux_sym_preproc_else_token1] = ACTIONS(3618), - [aux_sym_preproc_elif_token1] = ACTIONS(3618), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3618), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3618), - [sym_preproc_directive] = ACTIONS(3618), - [anon_sym_LPAREN2] = ACTIONS(3620), - [anon_sym_BANG] = ACTIONS(3620), - [anon_sym_TILDE] = ACTIONS(3620), - [anon_sym_DASH] = ACTIONS(3618), - [anon_sym_PLUS] = ACTIONS(3618), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_AMP_AMP] = ACTIONS(3620), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_SEMI] = ACTIONS(3620), - [anon_sym___extension__] = ACTIONS(3618), - [anon_sym_typedef] = ACTIONS(3618), - [anon_sym_extern] = ACTIONS(3618), - [anon_sym___attribute__] = ACTIONS(3618), - [anon_sym_COLON_COLON] = ACTIONS(3620), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), - [anon_sym___declspec] = ACTIONS(3618), - [anon_sym___based] = ACTIONS(3618), - [anon_sym___cdecl] = ACTIONS(3618), - [anon_sym___clrcall] = ACTIONS(3618), - [anon_sym___stdcall] = ACTIONS(3618), - [anon_sym___fastcall] = ACTIONS(3618), - [anon_sym___thiscall] = ACTIONS(3618), - [anon_sym___vectorcall] = ACTIONS(3618), - [anon_sym_LBRACE] = ACTIONS(3620), - [anon_sym_signed] = ACTIONS(3618), - [anon_sym_unsigned] = ACTIONS(3618), - [anon_sym_long] = ACTIONS(3618), - [anon_sym_short] = ACTIONS(3618), - [anon_sym_LBRACK] = ACTIONS(3618), - [anon_sym_static] = ACTIONS(3618), - [anon_sym_register] = ACTIONS(3618), - [anon_sym_inline] = ACTIONS(3618), - [anon_sym___inline] = ACTIONS(3618), - [anon_sym___inline__] = ACTIONS(3618), - [anon_sym___forceinline] = ACTIONS(3618), - [anon_sym_thread_local] = ACTIONS(3618), - [anon_sym___thread] = ACTIONS(3618), - [anon_sym_const] = ACTIONS(3618), - [anon_sym_constexpr] = ACTIONS(3618), - [anon_sym_volatile] = ACTIONS(3618), - [anon_sym_restrict] = ACTIONS(3618), - [anon_sym___restrict__] = ACTIONS(3618), - [anon_sym__Atomic] = ACTIONS(3618), - [anon_sym__Noreturn] = ACTIONS(3618), - [anon_sym_noreturn] = ACTIONS(3618), - [anon_sym_mutable] = ACTIONS(3618), - [anon_sym_constinit] = ACTIONS(3618), - [anon_sym_consteval] = ACTIONS(3618), - [sym_primitive_type] = ACTIONS(3618), - [anon_sym_enum] = ACTIONS(3618), - [anon_sym_class] = ACTIONS(3618), - [anon_sym_struct] = ACTIONS(3618), - [anon_sym_union] = ACTIONS(3618), - [anon_sym_if] = ACTIONS(3618), - [anon_sym_switch] = ACTIONS(3618), - [anon_sym_case] = ACTIONS(3618), - [anon_sym_default] = ACTIONS(3618), - [anon_sym_while] = ACTIONS(3618), - [anon_sym_do] = ACTIONS(3618), - [anon_sym_for] = ACTIONS(3618), - [anon_sym_return] = ACTIONS(3618), - [anon_sym_break] = ACTIONS(3618), - [anon_sym_continue] = ACTIONS(3618), - [anon_sym_goto] = ACTIONS(3618), - [anon_sym___try] = ACTIONS(3618), - [anon_sym___leave] = ACTIONS(3618), - [anon_sym_not] = ACTIONS(3618), - [anon_sym_compl] = ACTIONS(3618), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_sizeof] = ACTIONS(3618), - [anon_sym___alignof__] = ACTIONS(3618), - [anon_sym___alignof] = ACTIONS(3618), - [anon_sym__alignof] = ACTIONS(3618), - [anon_sym_alignof] = ACTIONS(3618), - [anon_sym__Alignof] = ACTIONS(3618), - [anon_sym_offsetof] = ACTIONS(3618), - [anon_sym__Generic] = ACTIONS(3618), - [anon_sym_asm] = ACTIONS(3618), - [anon_sym___asm__] = ACTIONS(3618), - [sym_number_literal] = ACTIONS(3620), - [anon_sym_L_SQUOTE] = ACTIONS(3620), - [anon_sym_u_SQUOTE] = ACTIONS(3620), - [anon_sym_U_SQUOTE] = ACTIONS(3620), - [anon_sym_u8_SQUOTE] = ACTIONS(3620), - [anon_sym_SQUOTE] = ACTIONS(3620), - [anon_sym_L_DQUOTE] = ACTIONS(3620), - [anon_sym_u_DQUOTE] = ACTIONS(3620), - [anon_sym_U_DQUOTE] = ACTIONS(3620), - [anon_sym_u8_DQUOTE] = ACTIONS(3620), - [anon_sym_DQUOTE] = ACTIONS(3620), - [sym_true] = ACTIONS(3618), - [sym_false] = ACTIONS(3618), - [anon_sym_NULL] = ACTIONS(3618), - [anon_sym_nullptr] = ACTIONS(3618), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3618), - [anon_sym_decltype] = ACTIONS(3618), - [anon_sym_virtual] = ACTIONS(3618), - [anon_sym_alignas] = ACTIONS(3618), - [anon_sym_explicit] = ACTIONS(3618), - [anon_sym_typename] = ACTIONS(3618), - [anon_sym_template] = ACTIONS(3618), - [anon_sym_operator] = ACTIONS(3618), - [anon_sym_try] = ACTIONS(3618), - [anon_sym_delete] = ACTIONS(3618), - [anon_sym_throw] = ACTIONS(3618), - [anon_sym_namespace] = ACTIONS(3618), - [anon_sym_using] = ACTIONS(3618), - [anon_sym_static_assert] = ACTIONS(3618), - [anon_sym_concept] = ACTIONS(3618), - [anon_sym_co_return] = ACTIONS(3618), - [anon_sym_co_yield] = ACTIONS(3618), - [anon_sym_R_DQUOTE] = ACTIONS(3620), - [anon_sym_LR_DQUOTE] = ACTIONS(3620), - [anon_sym_uR_DQUOTE] = ACTIONS(3620), - [anon_sym_UR_DQUOTE] = ACTIONS(3620), - [anon_sym_u8R_DQUOTE] = ACTIONS(3620), - [anon_sym_co_await] = ACTIONS(3618), - [anon_sym_new] = ACTIONS(3618), - [anon_sym_requires] = ACTIONS(3618), - [sym_this] = ACTIONS(3618), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3620), - [sym_semgrep_named_ellipsis] = ACTIONS(3620), + [sym_identifier] = ACTIONS(2359), + [aux_sym_preproc_include_token1] = ACTIONS(2359), + [aux_sym_preproc_def_token1] = ACTIONS(2359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2357), + [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(2357), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_DASH] = ACTIONS(2359), + [anon_sym_PLUS] = ACTIONS(2359), + [anon_sym_STAR] = ACTIONS(2357), + [anon_sym_AMP_AMP] = ACTIONS(2357), + [anon_sym_AMP] = ACTIONS(2359), + [anon_sym_SEMI] = ACTIONS(2357), + [anon_sym___extension__] = ACTIONS(2359), + [anon_sym_typedef] = ACTIONS(2359), + [anon_sym_extern] = ACTIONS(2359), + [anon_sym___attribute__] = ACTIONS(2359), + [anon_sym_COLON_COLON] = ACTIONS(2357), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2357), + [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(2357), + [anon_sym_signed] = ACTIONS(2359), + [anon_sym_unsigned] = ACTIONS(2359), + [anon_sym_long] = ACTIONS(2359), + [anon_sym_short] = ACTIONS(2359), + [anon_sym_LBRACK] = ACTIONS(2359), + [anon_sym_static] = ACTIONS(2359), + [anon_sym_register] = ACTIONS(2359), + [anon_sym_inline] = ACTIONS(2359), + [anon_sym___inline] = ACTIONS(2359), + [anon_sym___inline__] = ACTIONS(2359), + [anon_sym___forceinline] = ACTIONS(2359), + [anon_sym_thread_local] = ACTIONS(2359), + [anon_sym___thread] = ACTIONS(2359), + [anon_sym_const] = ACTIONS(2359), + [anon_sym_constexpr] = ACTIONS(2359), + [anon_sym_volatile] = ACTIONS(2359), + [anon_sym_restrict] = ACTIONS(2359), + [anon_sym___restrict__] = ACTIONS(2359), + [anon_sym__Atomic] = ACTIONS(2359), + [anon_sym__Noreturn] = ACTIONS(2359), + [anon_sym_noreturn] = ACTIONS(2359), + [anon_sym_mutable] = ACTIONS(2359), + [anon_sym_constinit] = ACTIONS(2359), + [anon_sym_consteval] = 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___try] = ACTIONS(2359), + [anon_sym___leave] = ACTIONS(2359), + [anon_sym_not] = ACTIONS(2359), + [anon_sym_compl] = ACTIONS(2359), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_sizeof] = ACTIONS(2359), + [anon_sym___alignof__] = ACTIONS(2359), + [anon_sym___alignof] = ACTIONS(2359), + [anon_sym__alignof] = ACTIONS(2359), + [anon_sym_alignof] = ACTIONS(2359), + [anon_sym__Alignof] = ACTIONS(2359), + [anon_sym_offsetof] = ACTIONS(2359), + [anon_sym__Generic] = ACTIONS(2359), + [anon_sym_asm] = ACTIONS(2359), + [anon_sym___asm__] = ACTIONS(2359), + [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(2359), + [sym_false] = ACTIONS(2359), + [anon_sym_NULL] = ACTIONS(2359), + [anon_sym_nullptr] = ACTIONS(2359), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2359), + [anon_sym_decltype] = ACTIONS(2359), + [anon_sym_virtual] = ACTIONS(2359), + [anon_sym_alignas] = 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_catch] = ACTIONS(2359), + [anon_sym_R_DQUOTE] = ACTIONS(2357), + [anon_sym_LR_DQUOTE] = ACTIONS(2357), + [anon_sym_uR_DQUOTE] = ACTIONS(2357), + [anon_sym_UR_DQUOTE] = ACTIONS(2357), + [anon_sym_u8R_DQUOTE] = ACTIONS(2357), + [anon_sym_co_await] = ACTIONS(2359), + [anon_sym_new] = ACTIONS(2359), + [anon_sym_requires] = ACTIONS(2359), + [sym_this] = ACTIONS(2359), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2357), + [sym_semgrep_named_ellipsis] = ACTIONS(2357), }, [448] = { - [sym_identifier] = ACTIONS(3622), - [aux_sym_preproc_include_token1] = ACTIONS(3622), - [aux_sym_preproc_def_token1] = ACTIONS(3622), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3624), - [aux_sym_preproc_if_token1] = ACTIONS(3622), - [aux_sym_preproc_if_token2] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), - [aux_sym_preproc_else_token1] = ACTIONS(3622), - [aux_sym_preproc_elif_token1] = ACTIONS(3622), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3622), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3622), - [sym_preproc_directive] = ACTIONS(3622), - [anon_sym_LPAREN2] = ACTIONS(3624), - [anon_sym_BANG] = ACTIONS(3624), - [anon_sym_TILDE] = ACTIONS(3624), - [anon_sym_DASH] = ACTIONS(3622), - [anon_sym_PLUS] = ACTIONS(3622), - [anon_sym_STAR] = ACTIONS(3624), - [anon_sym_AMP_AMP] = ACTIONS(3624), - [anon_sym_AMP] = ACTIONS(3622), - [anon_sym_SEMI] = ACTIONS(3624), - [anon_sym___extension__] = ACTIONS(3622), - [anon_sym_typedef] = ACTIONS(3622), - [anon_sym_extern] = ACTIONS(3622), - [anon_sym___attribute__] = ACTIONS(3622), - [anon_sym_COLON_COLON] = ACTIONS(3624), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), - [anon_sym___declspec] = ACTIONS(3622), - [anon_sym___based] = ACTIONS(3622), - [anon_sym___cdecl] = ACTIONS(3622), - [anon_sym___clrcall] = ACTIONS(3622), - [anon_sym___stdcall] = ACTIONS(3622), - [anon_sym___fastcall] = ACTIONS(3622), - [anon_sym___thiscall] = ACTIONS(3622), - [anon_sym___vectorcall] = ACTIONS(3622), - [anon_sym_LBRACE] = ACTIONS(3624), - [anon_sym_signed] = ACTIONS(3622), - [anon_sym_unsigned] = ACTIONS(3622), - [anon_sym_long] = ACTIONS(3622), - [anon_sym_short] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3622), - [anon_sym_static] = ACTIONS(3622), - [anon_sym_register] = ACTIONS(3622), - [anon_sym_inline] = ACTIONS(3622), - [anon_sym___inline] = ACTIONS(3622), - [anon_sym___inline__] = ACTIONS(3622), - [anon_sym___forceinline] = ACTIONS(3622), - [anon_sym_thread_local] = ACTIONS(3622), - [anon_sym___thread] = ACTIONS(3622), - [anon_sym_const] = ACTIONS(3622), - [anon_sym_constexpr] = ACTIONS(3622), - [anon_sym_volatile] = ACTIONS(3622), - [anon_sym_restrict] = ACTIONS(3622), - [anon_sym___restrict__] = ACTIONS(3622), - [anon_sym__Atomic] = ACTIONS(3622), - [anon_sym__Noreturn] = ACTIONS(3622), - [anon_sym_noreturn] = ACTIONS(3622), - [anon_sym_mutable] = ACTIONS(3622), - [anon_sym_constinit] = ACTIONS(3622), - [anon_sym_consteval] = ACTIONS(3622), - [sym_primitive_type] = ACTIONS(3622), - [anon_sym_enum] = ACTIONS(3622), - [anon_sym_class] = ACTIONS(3622), - [anon_sym_struct] = ACTIONS(3622), - [anon_sym_union] = ACTIONS(3622), - [anon_sym_if] = ACTIONS(3622), - [anon_sym_switch] = ACTIONS(3622), - [anon_sym_case] = ACTIONS(3622), - [anon_sym_default] = ACTIONS(3622), - [anon_sym_while] = ACTIONS(3622), - [anon_sym_do] = ACTIONS(3622), - [anon_sym_for] = ACTIONS(3622), - [anon_sym_return] = ACTIONS(3622), - [anon_sym_break] = ACTIONS(3622), - [anon_sym_continue] = ACTIONS(3622), - [anon_sym_goto] = ACTIONS(3622), - [anon_sym___try] = ACTIONS(3622), - [anon_sym___leave] = ACTIONS(3622), - [anon_sym_not] = ACTIONS(3622), - [anon_sym_compl] = ACTIONS(3622), - [anon_sym_DASH_DASH] = ACTIONS(3624), - [anon_sym_PLUS_PLUS] = ACTIONS(3624), - [anon_sym_sizeof] = ACTIONS(3622), - [anon_sym___alignof__] = ACTIONS(3622), - [anon_sym___alignof] = ACTIONS(3622), - [anon_sym__alignof] = ACTIONS(3622), - [anon_sym_alignof] = ACTIONS(3622), - [anon_sym__Alignof] = ACTIONS(3622), - [anon_sym_offsetof] = ACTIONS(3622), - [anon_sym__Generic] = ACTIONS(3622), - [anon_sym_asm] = ACTIONS(3622), - [anon_sym___asm__] = ACTIONS(3622), - [sym_number_literal] = ACTIONS(3624), - [anon_sym_L_SQUOTE] = ACTIONS(3624), - [anon_sym_u_SQUOTE] = ACTIONS(3624), - [anon_sym_U_SQUOTE] = ACTIONS(3624), - [anon_sym_u8_SQUOTE] = ACTIONS(3624), - [anon_sym_SQUOTE] = ACTIONS(3624), - [anon_sym_L_DQUOTE] = ACTIONS(3624), - [anon_sym_u_DQUOTE] = ACTIONS(3624), - [anon_sym_U_DQUOTE] = ACTIONS(3624), - [anon_sym_u8_DQUOTE] = ACTIONS(3624), - [anon_sym_DQUOTE] = ACTIONS(3624), - [sym_true] = ACTIONS(3622), - [sym_false] = ACTIONS(3622), - [anon_sym_NULL] = ACTIONS(3622), - [anon_sym_nullptr] = ACTIONS(3622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3622), - [anon_sym_decltype] = ACTIONS(3622), - [anon_sym_virtual] = ACTIONS(3622), - [anon_sym_alignas] = ACTIONS(3622), - [anon_sym_explicit] = ACTIONS(3622), - [anon_sym_typename] = ACTIONS(3622), - [anon_sym_template] = ACTIONS(3622), - [anon_sym_operator] = ACTIONS(3622), - [anon_sym_try] = ACTIONS(3622), - [anon_sym_delete] = ACTIONS(3622), - [anon_sym_throw] = ACTIONS(3622), - [anon_sym_namespace] = ACTIONS(3622), - [anon_sym_using] = ACTIONS(3622), - [anon_sym_static_assert] = ACTIONS(3622), - [anon_sym_concept] = ACTIONS(3622), - [anon_sym_co_return] = ACTIONS(3622), - [anon_sym_co_yield] = ACTIONS(3622), - [anon_sym_R_DQUOTE] = ACTIONS(3624), - [anon_sym_LR_DQUOTE] = ACTIONS(3624), - [anon_sym_uR_DQUOTE] = ACTIONS(3624), - [anon_sym_UR_DQUOTE] = ACTIONS(3624), - [anon_sym_u8R_DQUOTE] = ACTIONS(3624), - [anon_sym_co_await] = ACTIONS(3622), - [anon_sym_new] = ACTIONS(3622), - [anon_sym_requires] = ACTIONS(3622), - [sym_this] = ACTIONS(3622), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3624), - [sym_semgrep_named_ellipsis] = ACTIONS(3624), + [sym_catch_clause] = STATE(448), + [aux_sym_constructor_try_statement_repeat1] = STATE(448), + [ts_builtin_sym_end] = ACTIONS(3029), + [sym_identifier] = ACTIONS(3027), + [aux_sym_preproc_include_token1] = ACTIONS(3027), + [aux_sym_preproc_def_token1] = ACTIONS(3027), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3029), + [aux_sym_preproc_if_token1] = ACTIONS(3027), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3027), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3027), + [sym_preproc_directive] = ACTIONS(3027), + [anon_sym_LPAREN2] = ACTIONS(3029), + [anon_sym_BANG] = ACTIONS(3029), + [anon_sym_TILDE] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3027), + [anon_sym_STAR] = ACTIONS(3029), + [anon_sym_AMP_AMP] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3027), + [anon_sym_SEMI] = ACTIONS(3029), + [anon_sym___extension__] = ACTIONS(3027), + [anon_sym_typedef] = ACTIONS(3027), + [anon_sym_extern] = ACTIONS(3027), + [anon_sym___attribute__] = ACTIONS(3027), + [anon_sym_COLON_COLON] = ACTIONS(3029), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3029), + [anon_sym___declspec] = ACTIONS(3027), + [anon_sym___based] = ACTIONS(3027), + [anon_sym___cdecl] = ACTIONS(3027), + [anon_sym___clrcall] = ACTIONS(3027), + [anon_sym___stdcall] = ACTIONS(3027), + [anon_sym___fastcall] = ACTIONS(3027), + [anon_sym___thiscall] = ACTIONS(3027), + [anon_sym___vectorcall] = ACTIONS(3027), + [anon_sym_LBRACE] = ACTIONS(3029), + [anon_sym_signed] = ACTIONS(3027), + [anon_sym_unsigned] = ACTIONS(3027), + [anon_sym_long] = ACTIONS(3027), + [anon_sym_short] = ACTIONS(3027), + [anon_sym_LBRACK] = ACTIONS(3027), + [anon_sym_static] = ACTIONS(3027), + [anon_sym_register] = ACTIONS(3027), + [anon_sym_inline] = ACTIONS(3027), + [anon_sym___inline] = ACTIONS(3027), + [anon_sym___inline__] = ACTIONS(3027), + [anon_sym___forceinline] = ACTIONS(3027), + [anon_sym_thread_local] = ACTIONS(3027), + [anon_sym___thread] = ACTIONS(3027), + [anon_sym_const] = ACTIONS(3027), + [anon_sym_constexpr] = ACTIONS(3027), + [anon_sym_volatile] = ACTIONS(3027), + [anon_sym_restrict] = ACTIONS(3027), + [anon_sym___restrict__] = ACTIONS(3027), + [anon_sym__Atomic] = ACTIONS(3027), + [anon_sym__Noreturn] = ACTIONS(3027), + [anon_sym_noreturn] = ACTIONS(3027), + [anon_sym_mutable] = ACTIONS(3027), + [anon_sym_constinit] = ACTIONS(3027), + [anon_sym_consteval] = ACTIONS(3027), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3027), + [anon_sym_class] = ACTIONS(3027), + [anon_sym_struct] = ACTIONS(3027), + [anon_sym_union] = ACTIONS(3027), + [anon_sym_if] = ACTIONS(3027), + [anon_sym_else] = ACTIONS(3027), + [anon_sym_switch] = ACTIONS(3027), + [anon_sym_case] = ACTIONS(3027), + [anon_sym_default] = ACTIONS(3027), + [anon_sym_while] = ACTIONS(3027), + [anon_sym_do] = ACTIONS(3027), + [anon_sym_for] = ACTIONS(3027), + [anon_sym_return] = ACTIONS(3027), + [anon_sym_break] = ACTIONS(3027), + [anon_sym_continue] = ACTIONS(3027), + [anon_sym_goto] = ACTIONS(3027), + [anon_sym___try] = ACTIONS(3027), + [anon_sym___leave] = ACTIONS(3027), + [anon_sym_not] = ACTIONS(3027), + [anon_sym_compl] = ACTIONS(3027), + [anon_sym_DASH_DASH] = ACTIONS(3029), + [anon_sym_PLUS_PLUS] = ACTIONS(3029), + [anon_sym_sizeof] = ACTIONS(3027), + [anon_sym___alignof__] = ACTIONS(3027), + [anon_sym___alignof] = ACTIONS(3027), + [anon_sym__alignof] = ACTIONS(3027), + [anon_sym_alignof] = ACTIONS(3027), + [anon_sym__Alignof] = ACTIONS(3027), + [anon_sym_offsetof] = ACTIONS(3027), + [anon_sym__Generic] = ACTIONS(3027), + [anon_sym_asm] = ACTIONS(3027), + [anon_sym___asm__] = ACTIONS(3027), + [sym_number_literal] = ACTIONS(3029), + [anon_sym_L_SQUOTE] = ACTIONS(3029), + [anon_sym_u_SQUOTE] = ACTIONS(3029), + [anon_sym_U_SQUOTE] = ACTIONS(3029), + [anon_sym_u8_SQUOTE] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3029), + [anon_sym_L_DQUOTE] = ACTIONS(3029), + [anon_sym_u_DQUOTE] = ACTIONS(3029), + [anon_sym_U_DQUOTE] = ACTIONS(3029), + [anon_sym_u8_DQUOTE] = ACTIONS(3029), + [anon_sym_DQUOTE] = ACTIONS(3029), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [anon_sym_NULL] = ACTIONS(3027), + [anon_sym_nullptr] = ACTIONS(3027), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3027), + [anon_sym_decltype] = ACTIONS(3027), + [anon_sym_virtual] = ACTIONS(3027), + [anon_sym_alignas] = ACTIONS(3027), + [anon_sym_explicit] = ACTIONS(3027), + [anon_sym_typename] = ACTIONS(3027), + [anon_sym_template] = ACTIONS(3027), + [anon_sym_operator] = ACTIONS(3027), + [anon_sym_try] = ACTIONS(3027), + [anon_sym_delete] = ACTIONS(3027), + [anon_sym_throw] = ACTIONS(3027), + [anon_sym_namespace] = ACTIONS(3027), + [anon_sym_using] = ACTIONS(3027), + [anon_sym_static_assert] = ACTIONS(3027), + [anon_sym_concept] = ACTIONS(3027), + [anon_sym_co_return] = ACTIONS(3027), + [anon_sym_co_yield] = ACTIONS(3027), + [anon_sym_catch] = ACTIONS(3665), + [anon_sym_R_DQUOTE] = ACTIONS(3029), + [anon_sym_LR_DQUOTE] = ACTIONS(3029), + [anon_sym_uR_DQUOTE] = ACTIONS(3029), + [anon_sym_UR_DQUOTE] = ACTIONS(3029), + [anon_sym_u8R_DQUOTE] = ACTIONS(3029), + [anon_sym_co_await] = ACTIONS(3027), + [anon_sym_new] = ACTIONS(3027), + [anon_sym_requires] = ACTIONS(3027), + [sym_this] = ACTIONS(3027), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3029), + [sym_semgrep_named_ellipsis] = ACTIONS(3029), }, [449] = { - [sym_identifier] = ACTIONS(3626), - [aux_sym_preproc_include_token1] = ACTIONS(3626), - [aux_sym_preproc_def_token1] = ACTIONS(3626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3628), - [aux_sym_preproc_if_token1] = ACTIONS(3626), - [aux_sym_preproc_if_token2] = ACTIONS(3626), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3626), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3626), - [aux_sym_preproc_else_token1] = ACTIONS(3626), - [aux_sym_preproc_elif_token1] = ACTIONS(3626), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3626), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3626), - [sym_preproc_directive] = ACTIONS(3626), - [anon_sym_LPAREN2] = ACTIONS(3628), - [anon_sym_BANG] = ACTIONS(3628), - [anon_sym_TILDE] = ACTIONS(3628), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_STAR] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3628), - [anon_sym___extension__] = ACTIONS(3626), - [anon_sym_typedef] = ACTIONS(3626), - [anon_sym_extern] = ACTIONS(3626), - [anon_sym___attribute__] = ACTIONS(3626), - [anon_sym_COLON_COLON] = ACTIONS(3628), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3628), - [anon_sym___declspec] = ACTIONS(3626), - [anon_sym___based] = ACTIONS(3626), - [anon_sym___cdecl] = ACTIONS(3626), - [anon_sym___clrcall] = ACTIONS(3626), - [anon_sym___stdcall] = ACTIONS(3626), - [anon_sym___fastcall] = ACTIONS(3626), - [anon_sym___thiscall] = ACTIONS(3626), - [anon_sym___vectorcall] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_signed] = ACTIONS(3626), - [anon_sym_unsigned] = ACTIONS(3626), - [anon_sym_long] = ACTIONS(3626), - [anon_sym_short] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_register] = ACTIONS(3626), - [anon_sym_inline] = ACTIONS(3626), - [anon_sym___inline] = ACTIONS(3626), - [anon_sym___inline__] = ACTIONS(3626), - [anon_sym___forceinline] = ACTIONS(3626), - [anon_sym_thread_local] = ACTIONS(3626), - [anon_sym___thread] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_constexpr] = ACTIONS(3626), - [anon_sym_volatile] = ACTIONS(3626), - [anon_sym_restrict] = ACTIONS(3626), - [anon_sym___restrict__] = ACTIONS(3626), - [anon_sym__Atomic] = ACTIONS(3626), - [anon_sym__Noreturn] = ACTIONS(3626), - [anon_sym_noreturn] = ACTIONS(3626), - [anon_sym_mutable] = ACTIONS(3626), - [anon_sym_constinit] = ACTIONS(3626), - [anon_sym_consteval] = ACTIONS(3626), - [sym_primitive_type] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_struct] = ACTIONS(3626), - [anon_sym_union] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_goto] = ACTIONS(3626), - [anon_sym___try] = ACTIONS(3626), - [anon_sym___leave] = ACTIONS(3626), - [anon_sym_not] = ACTIONS(3626), - [anon_sym_compl] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3628), - [anon_sym_PLUS_PLUS] = ACTIONS(3628), - [anon_sym_sizeof] = ACTIONS(3626), - [anon_sym___alignof__] = ACTIONS(3626), - [anon_sym___alignof] = ACTIONS(3626), - [anon_sym__alignof] = ACTIONS(3626), - [anon_sym_alignof] = ACTIONS(3626), - [anon_sym__Alignof] = ACTIONS(3626), - [anon_sym_offsetof] = ACTIONS(3626), - [anon_sym__Generic] = ACTIONS(3626), - [anon_sym_asm] = ACTIONS(3626), - [anon_sym___asm__] = ACTIONS(3626), - [sym_number_literal] = ACTIONS(3628), - [anon_sym_L_SQUOTE] = ACTIONS(3628), - [anon_sym_u_SQUOTE] = ACTIONS(3628), - [anon_sym_U_SQUOTE] = ACTIONS(3628), - [anon_sym_u8_SQUOTE] = ACTIONS(3628), - [anon_sym_SQUOTE] = ACTIONS(3628), - [anon_sym_L_DQUOTE] = ACTIONS(3628), - [anon_sym_u_DQUOTE] = ACTIONS(3628), - [anon_sym_U_DQUOTE] = ACTIONS(3628), - [anon_sym_u8_DQUOTE] = ACTIONS(3628), - [anon_sym_DQUOTE] = ACTIONS(3628), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [anon_sym_NULL] = ACTIONS(3626), - [anon_sym_nullptr] = ACTIONS(3626), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3626), - [anon_sym_decltype] = ACTIONS(3626), - [anon_sym_virtual] = ACTIONS(3626), - [anon_sym_alignas] = ACTIONS(3626), - [anon_sym_explicit] = ACTIONS(3626), - [anon_sym_typename] = ACTIONS(3626), - [anon_sym_template] = ACTIONS(3626), - [anon_sym_operator] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_static_assert] = ACTIONS(3626), - [anon_sym_concept] = ACTIONS(3626), - [anon_sym_co_return] = ACTIONS(3626), - [anon_sym_co_yield] = ACTIONS(3626), - [anon_sym_R_DQUOTE] = ACTIONS(3628), - [anon_sym_LR_DQUOTE] = ACTIONS(3628), - [anon_sym_uR_DQUOTE] = ACTIONS(3628), - [anon_sym_UR_DQUOTE] = ACTIONS(3628), - [anon_sym_u8R_DQUOTE] = ACTIONS(3628), - [anon_sym_co_await] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_requires] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3628), - [sym_semgrep_named_ellipsis] = ACTIONS(3628), + [sym_identifier] = ACTIONS(3668), + [aux_sym_preproc_include_token1] = ACTIONS(3668), + [aux_sym_preproc_def_token1] = ACTIONS(3668), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3670), + [aux_sym_preproc_if_token1] = ACTIONS(3668), + [aux_sym_preproc_if_token2] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [aux_sym_preproc_else_token1] = ACTIONS(3668), + [aux_sym_preproc_elif_token1] = ACTIONS(3668), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3668), + [anon_sym_LPAREN2] = ACTIONS(3670), + [anon_sym_BANG] = ACTIONS(3670), + [anon_sym_TILDE] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_AMP_AMP] = ACTIONS(3670), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_SEMI] = ACTIONS(3670), + [anon_sym___extension__] = ACTIONS(3668), + [anon_sym_typedef] = ACTIONS(3668), + [anon_sym_extern] = ACTIONS(3668), + [anon_sym___attribute__] = ACTIONS(3668), + [anon_sym_COLON_COLON] = ACTIONS(3670), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3670), + [anon_sym___declspec] = ACTIONS(3668), + [anon_sym___based] = ACTIONS(3668), + [anon_sym___cdecl] = ACTIONS(3668), + [anon_sym___clrcall] = ACTIONS(3668), + [anon_sym___stdcall] = ACTIONS(3668), + [anon_sym___fastcall] = ACTIONS(3668), + [anon_sym___thiscall] = ACTIONS(3668), + [anon_sym___vectorcall] = ACTIONS(3668), + [anon_sym_LBRACE] = ACTIONS(3670), + [anon_sym_signed] = ACTIONS(3668), + [anon_sym_unsigned] = ACTIONS(3668), + [anon_sym_long] = ACTIONS(3668), + [anon_sym_short] = ACTIONS(3668), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_static] = ACTIONS(3668), + [anon_sym_register] = ACTIONS(3668), + [anon_sym_inline] = ACTIONS(3668), + [anon_sym___inline] = ACTIONS(3668), + [anon_sym___inline__] = ACTIONS(3668), + [anon_sym___forceinline] = ACTIONS(3668), + [anon_sym_thread_local] = ACTIONS(3668), + [anon_sym___thread] = ACTIONS(3668), + [anon_sym_const] = ACTIONS(3668), + [anon_sym_constexpr] = ACTIONS(3668), + [anon_sym_volatile] = ACTIONS(3668), + [anon_sym_restrict] = ACTIONS(3668), + [anon_sym___restrict__] = ACTIONS(3668), + [anon_sym__Atomic] = ACTIONS(3668), + [anon_sym__Noreturn] = ACTIONS(3668), + [anon_sym_noreturn] = ACTIONS(3668), + [anon_sym_mutable] = ACTIONS(3668), + [anon_sym_constinit] = ACTIONS(3668), + [anon_sym_consteval] = ACTIONS(3668), + [sym_primitive_type] = ACTIONS(3668), + [anon_sym_enum] = ACTIONS(3668), + [anon_sym_class] = ACTIONS(3668), + [anon_sym_struct] = ACTIONS(3668), + [anon_sym_union] = ACTIONS(3668), + [anon_sym_if] = ACTIONS(3668), + [anon_sym_switch] = ACTIONS(3668), + [anon_sym_case] = ACTIONS(3668), + [anon_sym_default] = ACTIONS(3668), + [anon_sym_while] = ACTIONS(3668), + [anon_sym_do] = ACTIONS(3668), + [anon_sym_for] = ACTIONS(3668), + [anon_sym_return] = ACTIONS(3668), + [anon_sym_break] = ACTIONS(3668), + [anon_sym_continue] = ACTIONS(3668), + [anon_sym_goto] = ACTIONS(3668), + [anon_sym___try] = ACTIONS(3668), + [anon_sym___leave] = ACTIONS(3668), + [anon_sym_not] = ACTIONS(3668), + [anon_sym_compl] = ACTIONS(3668), + [anon_sym_DASH_DASH] = ACTIONS(3670), + [anon_sym_PLUS_PLUS] = ACTIONS(3670), + [anon_sym_sizeof] = ACTIONS(3668), + [anon_sym___alignof__] = ACTIONS(3668), + [anon_sym___alignof] = ACTIONS(3668), + [anon_sym__alignof] = ACTIONS(3668), + [anon_sym_alignof] = ACTIONS(3668), + [anon_sym__Alignof] = ACTIONS(3668), + [anon_sym_offsetof] = ACTIONS(3668), + [anon_sym__Generic] = ACTIONS(3668), + [anon_sym_asm] = ACTIONS(3668), + [anon_sym___asm__] = ACTIONS(3668), + [sym_number_literal] = ACTIONS(3670), + [anon_sym_L_SQUOTE] = ACTIONS(3670), + [anon_sym_u_SQUOTE] = ACTIONS(3670), + [anon_sym_U_SQUOTE] = ACTIONS(3670), + [anon_sym_u8_SQUOTE] = ACTIONS(3670), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_L_DQUOTE] = ACTIONS(3670), + [anon_sym_u_DQUOTE] = ACTIONS(3670), + [anon_sym_U_DQUOTE] = ACTIONS(3670), + [anon_sym_u8_DQUOTE] = ACTIONS(3670), + [anon_sym_DQUOTE] = ACTIONS(3670), + [sym_true] = ACTIONS(3668), + [sym_false] = ACTIONS(3668), + [anon_sym_NULL] = ACTIONS(3668), + [anon_sym_nullptr] = ACTIONS(3668), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3668), + [anon_sym_decltype] = ACTIONS(3668), + [anon_sym_virtual] = ACTIONS(3668), + [anon_sym_alignas] = ACTIONS(3668), + [anon_sym_explicit] = ACTIONS(3668), + [anon_sym_typename] = ACTIONS(3668), + [anon_sym_template] = ACTIONS(3668), + [anon_sym_operator] = ACTIONS(3668), + [anon_sym_try] = ACTIONS(3668), + [anon_sym_delete] = ACTIONS(3668), + [anon_sym_throw] = ACTIONS(3668), + [anon_sym_namespace] = ACTIONS(3668), + [anon_sym_using] = ACTIONS(3668), + [anon_sym_static_assert] = ACTIONS(3668), + [anon_sym_concept] = ACTIONS(3668), + [anon_sym_co_return] = ACTIONS(3668), + [anon_sym_co_yield] = ACTIONS(3668), + [anon_sym_R_DQUOTE] = ACTIONS(3670), + [anon_sym_LR_DQUOTE] = ACTIONS(3670), + [anon_sym_uR_DQUOTE] = ACTIONS(3670), + [anon_sym_UR_DQUOTE] = ACTIONS(3670), + [anon_sym_u8R_DQUOTE] = ACTIONS(3670), + [anon_sym_co_await] = ACTIONS(3668), + [anon_sym_new] = ACTIONS(3668), + [anon_sym_requires] = ACTIONS(3668), + [sym_this] = ACTIONS(3668), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3670), + [sym_semgrep_named_ellipsis] = ACTIONS(3670), }, [450] = { - [sym_identifier] = ACTIONS(3630), - [aux_sym_preproc_include_token1] = ACTIONS(3630), - [aux_sym_preproc_def_token1] = ACTIONS(3630), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3632), - [aux_sym_preproc_if_token1] = ACTIONS(3630), - [aux_sym_preproc_if_token2] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), - [aux_sym_preproc_else_token1] = ACTIONS(3630), - [aux_sym_preproc_elif_token1] = ACTIONS(3630), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3630), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3630), - [sym_preproc_directive] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(3632), - [anon_sym_BANG] = ACTIONS(3632), - [anon_sym_TILDE] = ACTIONS(3632), - [anon_sym_DASH] = ACTIONS(3630), - [anon_sym_PLUS] = ACTIONS(3630), - [anon_sym_STAR] = ACTIONS(3632), - [anon_sym_AMP_AMP] = ACTIONS(3632), - [anon_sym_AMP] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3632), - [anon_sym___extension__] = ACTIONS(3630), - [anon_sym_typedef] = ACTIONS(3630), - [anon_sym_extern] = ACTIONS(3630), - [anon_sym___attribute__] = ACTIONS(3630), - [anon_sym_COLON_COLON] = ACTIONS(3632), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), - [anon_sym___declspec] = ACTIONS(3630), - [anon_sym___based] = ACTIONS(3630), - [anon_sym___cdecl] = ACTIONS(3630), - [anon_sym___clrcall] = ACTIONS(3630), - [anon_sym___stdcall] = ACTIONS(3630), - [anon_sym___fastcall] = ACTIONS(3630), - [anon_sym___thiscall] = ACTIONS(3630), - [anon_sym___vectorcall] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym_signed] = ACTIONS(3630), - [anon_sym_unsigned] = ACTIONS(3630), - [anon_sym_long] = ACTIONS(3630), - [anon_sym_short] = ACTIONS(3630), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_static] = ACTIONS(3630), - [anon_sym_register] = ACTIONS(3630), - [anon_sym_inline] = ACTIONS(3630), - [anon_sym___inline] = ACTIONS(3630), - [anon_sym___inline__] = ACTIONS(3630), - [anon_sym___forceinline] = ACTIONS(3630), - [anon_sym_thread_local] = ACTIONS(3630), - [anon_sym___thread] = ACTIONS(3630), - [anon_sym_const] = ACTIONS(3630), - [anon_sym_constexpr] = ACTIONS(3630), - [anon_sym_volatile] = ACTIONS(3630), - [anon_sym_restrict] = ACTIONS(3630), - [anon_sym___restrict__] = ACTIONS(3630), - [anon_sym__Atomic] = ACTIONS(3630), - [anon_sym__Noreturn] = ACTIONS(3630), - [anon_sym_noreturn] = ACTIONS(3630), - [anon_sym_mutable] = ACTIONS(3630), - [anon_sym_constinit] = ACTIONS(3630), - [anon_sym_consteval] = ACTIONS(3630), - [sym_primitive_type] = ACTIONS(3630), - [anon_sym_enum] = ACTIONS(3630), - [anon_sym_class] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3630), - [anon_sym_union] = ACTIONS(3630), - [anon_sym_if] = ACTIONS(3630), - [anon_sym_switch] = ACTIONS(3630), - [anon_sym_case] = ACTIONS(3630), - [anon_sym_default] = ACTIONS(3630), - [anon_sym_while] = ACTIONS(3630), - [anon_sym_do] = ACTIONS(3630), - [anon_sym_for] = ACTIONS(3630), - [anon_sym_return] = ACTIONS(3630), - [anon_sym_break] = ACTIONS(3630), - [anon_sym_continue] = ACTIONS(3630), - [anon_sym_goto] = ACTIONS(3630), - [anon_sym___try] = ACTIONS(3630), - [anon_sym___leave] = ACTIONS(3630), - [anon_sym_not] = ACTIONS(3630), - [anon_sym_compl] = ACTIONS(3630), - [anon_sym_DASH_DASH] = ACTIONS(3632), - [anon_sym_PLUS_PLUS] = ACTIONS(3632), - [anon_sym_sizeof] = ACTIONS(3630), - [anon_sym___alignof__] = ACTIONS(3630), - [anon_sym___alignof] = ACTIONS(3630), - [anon_sym__alignof] = ACTIONS(3630), - [anon_sym_alignof] = ACTIONS(3630), - [anon_sym__Alignof] = ACTIONS(3630), - [anon_sym_offsetof] = ACTIONS(3630), - [anon_sym__Generic] = ACTIONS(3630), - [anon_sym_asm] = ACTIONS(3630), - [anon_sym___asm__] = ACTIONS(3630), - [sym_number_literal] = ACTIONS(3632), - [anon_sym_L_SQUOTE] = ACTIONS(3632), - [anon_sym_u_SQUOTE] = ACTIONS(3632), - [anon_sym_U_SQUOTE] = ACTIONS(3632), - [anon_sym_u8_SQUOTE] = ACTIONS(3632), - [anon_sym_SQUOTE] = ACTIONS(3632), - [anon_sym_L_DQUOTE] = ACTIONS(3632), - [anon_sym_u_DQUOTE] = ACTIONS(3632), - [anon_sym_U_DQUOTE] = ACTIONS(3632), - [anon_sym_u8_DQUOTE] = ACTIONS(3632), - [anon_sym_DQUOTE] = ACTIONS(3632), - [sym_true] = ACTIONS(3630), - [sym_false] = ACTIONS(3630), - [anon_sym_NULL] = ACTIONS(3630), - [anon_sym_nullptr] = ACTIONS(3630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3630), - [anon_sym_decltype] = ACTIONS(3630), - [anon_sym_virtual] = ACTIONS(3630), - [anon_sym_alignas] = ACTIONS(3630), - [anon_sym_explicit] = ACTIONS(3630), - [anon_sym_typename] = ACTIONS(3630), - [anon_sym_template] = ACTIONS(3630), - [anon_sym_operator] = ACTIONS(3630), - [anon_sym_try] = ACTIONS(3630), - [anon_sym_delete] = ACTIONS(3630), - [anon_sym_throw] = ACTIONS(3630), - [anon_sym_namespace] = ACTIONS(3630), - [anon_sym_using] = ACTIONS(3630), - [anon_sym_static_assert] = ACTIONS(3630), - [anon_sym_concept] = ACTIONS(3630), - [anon_sym_co_return] = ACTIONS(3630), - [anon_sym_co_yield] = ACTIONS(3630), - [anon_sym_R_DQUOTE] = ACTIONS(3632), - [anon_sym_LR_DQUOTE] = ACTIONS(3632), - [anon_sym_uR_DQUOTE] = ACTIONS(3632), - [anon_sym_UR_DQUOTE] = ACTIONS(3632), - [anon_sym_u8R_DQUOTE] = ACTIONS(3632), - [anon_sym_co_await] = ACTIONS(3630), - [anon_sym_new] = ACTIONS(3630), - [anon_sym_requires] = ACTIONS(3630), - [sym_this] = ACTIONS(3630), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3632), - [sym_semgrep_named_ellipsis] = ACTIONS(3632), + [sym_identifier] = ACTIONS(3672), + [aux_sym_preproc_include_token1] = ACTIONS(3672), + [aux_sym_preproc_def_token1] = ACTIONS(3672), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3674), + [aux_sym_preproc_if_token1] = ACTIONS(3672), + [aux_sym_preproc_if_token2] = ACTIONS(3672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3672), + [aux_sym_preproc_else_token1] = ACTIONS(3672), + [aux_sym_preproc_elif_token1] = ACTIONS(3672), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3672), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3672), + [sym_preproc_directive] = ACTIONS(3672), + [anon_sym_LPAREN2] = ACTIONS(3674), + [anon_sym_BANG] = ACTIONS(3674), + [anon_sym_TILDE] = ACTIONS(3674), + [anon_sym_DASH] = ACTIONS(3672), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_STAR] = ACTIONS(3674), + [anon_sym_AMP_AMP] = ACTIONS(3674), + [anon_sym_AMP] = ACTIONS(3672), + [anon_sym_SEMI] = ACTIONS(3674), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3672), + [anon_sym_extern] = ACTIONS(3672), + [anon_sym___attribute__] = ACTIONS(3672), + [anon_sym_COLON_COLON] = ACTIONS(3674), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3674), + [anon_sym___declspec] = ACTIONS(3672), + [anon_sym___based] = ACTIONS(3672), + [anon_sym___cdecl] = ACTIONS(3672), + [anon_sym___clrcall] = ACTIONS(3672), + [anon_sym___stdcall] = ACTIONS(3672), + [anon_sym___fastcall] = ACTIONS(3672), + [anon_sym___thiscall] = ACTIONS(3672), + [anon_sym___vectorcall] = ACTIONS(3672), + [anon_sym_LBRACE] = ACTIONS(3674), + [anon_sym_signed] = ACTIONS(3672), + [anon_sym_unsigned] = ACTIONS(3672), + [anon_sym_long] = ACTIONS(3672), + [anon_sym_short] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_static] = ACTIONS(3672), + [anon_sym_register] = ACTIONS(3672), + [anon_sym_inline] = ACTIONS(3672), + [anon_sym___inline] = ACTIONS(3672), + [anon_sym___inline__] = ACTIONS(3672), + [anon_sym___forceinline] = ACTIONS(3672), + [anon_sym_thread_local] = ACTIONS(3672), + [anon_sym___thread] = ACTIONS(3672), + [anon_sym_const] = ACTIONS(3672), + [anon_sym_constexpr] = ACTIONS(3672), + [anon_sym_volatile] = ACTIONS(3672), + [anon_sym_restrict] = ACTIONS(3672), + [anon_sym___restrict__] = ACTIONS(3672), + [anon_sym__Atomic] = ACTIONS(3672), + [anon_sym__Noreturn] = ACTIONS(3672), + [anon_sym_noreturn] = ACTIONS(3672), + [anon_sym_mutable] = ACTIONS(3672), + [anon_sym_constinit] = ACTIONS(3672), + [anon_sym_consteval] = ACTIONS(3672), + [sym_primitive_type] = ACTIONS(3672), + [anon_sym_enum] = ACTIONS(3672), + [anon_sym_class] = ACTIONS(3672), + [anon_sym_struct] = ACTIONS(3672), + [anon_sym_union] = ACTIONS(3672), + [anon_sym_if] = ACTIONS(3672), + [anon_sym_switch] = ACTIONS(3672), + [anon_sym_case] = ACTIONS(3672), + [anon_sym_default] = ACTIONS(3672), + [anon_sym_while] = ACTIONS(3672), + [anon_sym_do] = ACTIONS(3672), + [anon_sym_for] = ACTIONS(3672), + [anon_sym_return] = ACTIONS(3672), + [anon_sym_break] = ACTIONS(3672), + [anon_sym_continue] = ACTIONS(3672), + [anon_sym_goto] = ACTIONS(3672), + [anon_sym___try] = ACTIONS(3672), + [anon_sym___leave] = ACTIONS(3672), + [anon_sym_not] = ACTIONS(3672), + [anon_sym_compl] = ACTIONS(3672), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_sizeof] = ACTIONS(3672), + [anon_sym___alignof__] = ACTIONS(3672), + [anon_sym___alignof] = ACTIONS(3672), + [anon_sym__alignof] = ACTIONS(3672), + [anon_sym_alignof] = ACTIONS(3672), + [anon_sym__Alignof] = ACTIONS(3672), + [anon_sym_offsetof] = ACTIONS(3672), + [anon_sym__Generic] = ACTIONS(3672), + [anon_sym_asm] = ACTIONS(3672), + [anon_sym___asm__] = ACTIONS(3672), + [sym_number_literal] = ACTIONS(3674), + [anon_sym_L_SQUOTE] = ACTIONS(3674), + [anon_sym_u_SQUOTE] = ACTIONS(3674), + [anon_sym_U_SQUOTE] = ACTIONS(3674), + [anon_sym_u8_SQUOTE] = ACTIONS(3674), + [anon_sym_SQUOTE] = ACTIONS(3674), + [anon_sym_L_DQUOTE] = ACTIONS(3674), + [anon_sym_u_DQUOTE] = ACTIONS(3674), + [anon_sym_U_DQUOTE] = ACTIONS(3674), + [anon_sym_u8_DQUOTE] = ACTIONS(3674), + [anon_sym_DQUOTE] = ACTIONS(3674), + [sym_true] = ACTIONS(3672), + [sym_false] = ACTIONS(3672), + [anon_sym_NULL] = ACTIONS(3672), + [anon_sym_nullptr] = ACTIONS(3672), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3672), + [anon_sym_decltype] = ACTIONS(3672), + [anon_sym_virtual] = ACTIONS(3672), + [anon_sym_alignas] = ACTIONS(3672), + [anon_sym_explicit] = ACTIONS(3672), + [anon_sym_typename] = ACTIONS(3672), + [anon_sym_template] = ACTIONS(3672), + [anon_sym_operator] = ACTIONS(3672), + [anon_sym_try] = ACTIONS(3672), + [anon_sym_delete] = ACTIONS(3672), + [anon_sym_throw] = ACTIONS(3672), + [anon_sym_namespace] = ACTIONS(3672), + [anon_sym_using] = ACTIONS(3672), + [anon_sym_static_assert] = ACTIONS(3672), + [anon_sym_concept] = ACTIONS(3672), + [anon_sym_co_return] = ACTIONS(3672), + [anon_sym_co_yield] = ACTIONS(3672), + [anon_sym_R_DQUOTE] = ACTIONS(3674), + [anon_sym_LR_DQUOTE] = ACTIONS(3674), + [anon_sym_uR_DQUOTE] = ACTIONS(3674), + [anon_sym_UR_DQUOTE] = ACTIONS(3674), + [anon_sym_u8R_DQUOTE] = ACTIONS(3674), + [anon_sym_co_await] = ACTIONS(3672), + [anon_sym_new] = ACTIONS(3672), + [anon_sym_requires] = ACTIONS(3672), + [sym_this] = ACTIONS(3672), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3674), + [sym_semgrep_named_ellipsis] = ACTIONS(3674), }, [451] = { - [sym_identifier] = ACTIONS(3634), - [aux_sym_preproc_include_token1] = ACTIONS(3634), - [aux_sym_preproc_def_token1] = ACTIONS(3634), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3636), - [aux_sym_preproc_if_token1] = ACTIONS(3634), - [aux_sym_preproc_if_token2] = ACTIONS(3634), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3634), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3634), - [aux_sym_preproc_else_token1] = ACTIONS(3634), - [aux_sym_preproc_elif_token1] = ACTIONS(3634), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3634), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3634), - [sym_preproc_directive] = ACTIONS(3634), - [anon_sym_LPAREN2] = ACTIONS(3636), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_TILDE] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3634), - [anon_sym_PLUS] = ACTIONS(3634), - [anon_sym_STAR] = ACTIONS(3636), - [anon_sym_AMP_AMP] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3634), - [anon_sym_SEMI] = ACTIONS(3636), - [anon_sym___extension__] = ACTIONS(3634), - [anon_sym_typedef] = ACTIONS(3634), - [anon_sym_extern] = ACTIONS(3634), - [anon_sym___attribute__] = ACTIONS(3634), - [anon_sym_COLON_COLON] = ACTIONS(3636), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3636), - [anon_sym___declspec] = ACTIONS(3634), - [anon_sym___based] = ACTIONS(3634), - [anon_sym___cdecl] = ACTIONS(3634), - [anon_sym___clrcall] = ACTIONS(3634), - [anon_sym___stdcall] = ACTIONS(3634), - [anon_sym___fastcall] = ACTIONS(3634), - [anon_sym___thiscall] = ACTIONS(3634), - [anon_sym___vectorcall] = ACTIONS(3634), - [anon_sym_LBRACE] = ACTIONS(3636), - [anon_sym_signed] = ACTIONS(3634), - [anon_sym_unsigned] = ACTIONS(3634), - [anon_sym_long] = ACTIONS(3634), - [anon_sym_short] = ACTIONS(3634), - [anon_sym_LBRACK] = ACTIONS(3634), - [anon_sym_static] = ACTIONS(3634), - [anon_sym_register] = ACTIONS(3634), - [anon_sym_inline] = ACTIONS(3634), - [anon_sym___inline] = ACTIONS(3634), - [anon_sym___inline__] = ACTIONS(3634), - [anon_sym___forceinline] = ACTIONS(3634), - [anon_sym_thread_local] = ACTIONS(3634), - [anon_sym___thread] = ACTIONS(3634), - [anon_sym_const] = ACTIONS(3634), - [anon_sym_constexpr] = ACTIONS(3634), - [anon_sym_volatile] = ACTIONS(3634), - [anon_sym_restrict] = ACTIONS(3634), - [anon_sym___restrict__] = ACTIONS(3634), - [anon_sym__Atomic] = ACTIONS(3634), - [anon_sym__Noreturn] = ACTIONS(3634), - [anon_sym_noreturn] = ACTIONS(3634), - [anon_sym_mutable] = ACTIONS(3634), - [anon_sym_constinit] = ACTIONS(3634), - [anon_sym_consteval] = ACTIONS(3634), - [sym_primitive_type] = ACTIONS(3634), - [anon_sym_enum] = ACTIONS(3634), - [anon_sym_class] = ACTIONS(3634), - [anon_sym_struct] = ACTIONS(3634), - [anon_sym_union] = ACTIONS(3634), - [anon_sym_if] = ACTIONS(3634), - [anon_sym_switch] = ACTIONS(3634), - [anon_sym_case] = ACTIONS(3634), - [anon_sym_default] = ACTIONS(3634), - [anon_sym_while] = ACTIONS(3634), - [anon_sym_do] = ACTIONS(3634), - [anon_sym_for] = ACTIONS(3634), - [anon_sym_return] = ACTIONS(3634), - [anon_sym_break] = ACTIONS(3634), - [anon_sym_continue] = ACTIONS(3634), - [anon_sym_goto] = ACTIONS(3634), - [anon_sym___try] = ACTIONS(3634), - [anon_sym___leave] = ACTIONS(3634), - [anon_sym_not] = ACTIONS(3634), - [anon_sym_compl] = ACTIONS(3634), - [anon_sym_DASH_DASH] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3636), - [anon_sym_sizeof] = ACTIONS(3634), - [anon_sym___alignof__] = ACTIONS(3634), - [anon_sym___alignof] = ACTIONS(3634), - [anon_sym__alignof] = ACTIONS(3634), - [anon_sym_alignof] = ACTIONS(3634), - [anon_sym__Alignof] = ACTIONS(3634), - [anon_sym_offsetof] = ACTIONS(3634), - [anon_sym__Generic] = ACTIONS(3634), - [anon_sym_asm] = ACTIONS(3634), - [anon_sym___asm__] = ACTIONS(3634), - [sym_number_literal] = ACTIONS(3636), - [anon_sym_L_SQUOTE] = ACTIONS(3636), - [anon_sym_u_SQUOTE] = ACTIONS(3636), - [anon_sym_U_SQUOTE] = ACTIONS(3636), - [anon_sym_u8_SQUOTE] = ACTIONS(3636), - [anon_sym_SQUOTE] = ACTIONS(3636), - [anon_sym_L_DQUOTE] = ACTIONS(3636), - [anon_sym_u_DQUOTE] = ACTIONS(3636), - [anon_sym_U_DQUOTE] = ACTIONS(3636), - [anon_sym_u8_DQUOTE] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(3636), - [sym_true] = ACTIONS(3634), - [sym_false] = ACTIONS(3634), - [anon_sym_NULL] = ACTIONS(3634), - [anon_sym_nullptr] = ACTIONS(3634), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3634), - [anon_sym_decltype] = ACTIONS(3634), - [anon_sym_virtual] = ACTIONS(3634), - [anon_sym_alignas] = ACTIONS(3634), - [anon_sym_explicit] = ACTIONS(3634), - [anon_sym_typename] = ACTIONS(3634), - [anon_sym_template] = ACTIONS(3634), - [anon_sym_operator] = ACTIONS(3634), - [anon_sym_try] = ACTIONS(3634), - [anon_sym_delete] = ACTIONS(3634), - [anon_sym_throw] = ACTIONS(3634), - [anon_sym_namespace] = ACTIONS(3634), - [anon_sym_using] = ACTIONS(3634), - [anon_sym_static_assert] = ACTIONS(3634), - [anon_sym_concept] = ACTIONS(3634), - [anon_sym_co_return] = ACTIONS(3634), - [anon_sym_co_yield] = ACTIONS(3634), - [anon_sym_R_DQUOTE] = ACTIONS(3636), - [anon_sym_LR_DQUOTE] = ACTIONS(3636), - [anon_sym_uR_DQUOTE] = ACTIONS(3636), - [anon_sym_UR_DQUOTE] = ACTIONS(3636), - [anon_sym_u8R_DQUOTE] = ACTIONS(3636), - [anon_sym_co_await] = ACTIONS(3634), - [anon_sym_new] = ACTIONS(3634), - [anon_sym_requires] = ACTIONS(3634), - [sym_this] = ACTIONS(3634), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3636), - [sym_semgrep_named_ellipsis] = ACTIONS(3636), + [sym_type_qualifier] = STATE(4685), + [sym_type_specifier] = STATE(5782), + [sym_sized_type_specifier] = STATE(3293), + [sym_enum_specifier] = STATE(3293), + [sym_struct_specifier] = STATE(3293), + [sym_union_specifier] = STATE(3293), + [sym_expression] = STATE(5042), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_type_descriptor] = STATE(7879), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_placeholder_type_specifier] = STATE(3293), + [sym_decltype_auto] = STATE(3292), + [sym_decltype] = STATE(2572), + [sym_class_specifier] = STATE(3293), + [sym_class_name] = STATE(8965), + [sym_dependent_type] = STATE(3293), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_type_parameter_pack_expansion] = STATE(8410), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6620), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(6338), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [aux_sym_type_definition_type_repeat1] = STATE(4685), + [aux_sym_sized_type_specifier_repeat1] = STATE(2573), + [sym_identifier] = ACTIONS(3310), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_signed] = ACTIONS(3324), + [anon_sym_unsigned] = ACTIONS(3324), + [anon_sym_long] = ACTIONS(3324), + [anon_sym_short] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3330), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_union] = ACTIONS(3334), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3358), + [anon_sym_decltype] = ACTIONS(3360), + [anon_sym_typename] = ACTIONS(3362), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_GT2] = ACTIONS(3676), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), }, [452] = { - [sym_identifier] = ACTIONS(3638), - [aux_sym_preproc_include_token1] = ACTIONS(3638), - [aux_sym_preproc_def_token1] = ACTIONS(3638), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3640), - [aux_sym_preproc_if_token1] = ACTIONS(3638), - [aux_sym_preproc_if_token2] = ACTIONS(3638), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3638), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3638), - [aux_sym_preproc_else_token1] = ACTIONS(3638), - [aux_sym_preproc_elif_token1] = ACTIONS(3638), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3638), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3638), - [sym_preproc_directive] = ACTIONS(3638), - [anon_sym_LPAREN2] = ACTIONS(3640), - [anon_sym_BANG] = ACTIONS(3640), - [anon_sym_TILDE] = ACTIONS(3640), - [anon_sym_DASH] = ACTIONS(3638), - [anon_sym_PLUS] = ACTIONS(3638), - [anon_sym_STAR] = ACTIONS(3640), - [anon_sym_AMP_AMP] = ACTIONS(3640), - [anon_sym_AMP] = ACTIONS(3638), - [anon_sym_SEMI] = ACTIONS(3640), - [anon_sym___extension__] = ACTIONS(3638), - [anon_sym_typedef] = ACTIONS(3638), - [anon_sym_extern] = ACTIONS(3638), - [anon_sym___attribute__] = ACTIONS(3638), - [anon_sym_COLON_COLON] = ACTIONS(3640), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3640), - [anon_sym___declspec] = ACTIONS(3638), - [anon_sym___based] = ACTIONS(3638), - [anon_sym___cdecl] = ACTIONS(3638), - [anon_sym___clrcall] = ACTIONS(3638), - [anon_sym___stdcall] = ACTIONS(3638), - [anon_sym___fastcall] = ACTIONS(3638), - [anon_sym___thiscall] = ACTIONS(3638), - [anon_sym___vectorcall] = ACTIONS(3638), - [anon_sym_LBRACE] = ACTIONS(3640), - [anon_sym_signed] = ACTIONS(3638), - [anon_sym_unsigned] = ACTIONS(3638), - [anon_sym_long] = ACTIONS(3638), - [anon_sym_short] = ACTIONS(3638), - [anon_sym_LBRACK] = ACTIONS(3638), - [anon_sym_static] = ACTIONS(3638), - [anon_sym_register] = ACTIONS(3638), - [anon_sym_inline] = ACTIONS(3638), - [anon_sym___inline] = ACTIONS(3638), - [anon_sym___inline__] = ACTIONS(3638), - [anon_sym___forceinline] = ACTIONS(3638), - [anon_sym_thread_local] = ACTIONS(3638), - [anon_sym___thread] = ACTIONS(3638), - [anon_sym_const] = ACTIONS(3638), - [anon_sym_constexpr] = ACTIONS(3638), - [anon_sym_volatile] = ACTIONS(3638), - [anon_sym_restrict] = ACTIONS(3638), - [anon_sym___restrict__] = ACTIONS(3638), - [anon_sym__Atomic] = ACTIONS(3638), - [anon_sym__Noreturn] = ACTIONS(3638), - [anon_sym_noreturn] = ACTIONS(3638), - [anon_sym_mutable] = ACTIONS(3638), - [anon_sym_constinit] = ACTIONS(3638), - [anon_sym_consteval] = ACTIONS(3638), - [sym_primitive_type] = ACTIONS(3638), - [anon_sym_enum] = ACTIONS(3638), - [anon_sym_class] = ACTIONS(3638), - [anon_sym_struct] = ACTIONS(3638), - [anon_sym_union] = ACTIONS(3638), - [anon_sym_if] = ACTIONS(3638), - [anon_sym_switch] = ACTIONS(3638), - [anon_sym_case] = ACTIONS(3638), - [anon_sym_default] = ACTIONS(3638), - [anon_sym_while] = ACTIONS(3638), - [anon_sym_do] = ACTIONS(3638), - [anon_sym_for] = ACTIONS(3638), - [anon_sym_return] = ACTIONS(3638), - [anon_sym_break] = ACTIONS(3638), - [anon_sym_continue] = ACTIONS(3638), - [anon_sym_goto] = ACTIONS(3638), - [anon_sym___try] = ACTIONS(3638), - [anon_sym___leave] = ACTIONS(3638), - [anon_sym_not] = ACTIONS(3638), - [anon_sym_compl] = ACTIONS(3638), - [anon_sym_DASH_DASH] = ACTIONS(3640), - [anon_sym_PLUS_PLUS] = ACTIONS(3640), - [anon_sym_sizeof] = ACTIONS(3638), - [anon_sym___alignof__] = ACTIONS(3638), - [anon_sym___alignof] = ACTIONS(3638), - [anon_sym__alignof] = ACTIONS(3638), - [anon_sym_alignof] = ACTIONS(3638), - [anon_sym__Alignof] = ACTIONS(3638), - [anon_sym_offsetof] = ACTIONS(3638), - [anon_sym__Generic] = ACTIONS(3638), - [anon_sym_asm] = ACTIONS(3638), - [anon_sym___asm__] = ACTIONS(3638), - [sym_number_literal] = ACTIONS(3640), - [anon_sym_L_SQUOTE] = ACTIONS(3640), - [anon_sym_u_SQUOTE] = ACTIONS(3640), - [anon_sym_U_SQUOTE] = ACTIONS(3640), - [anon_sym_u8_SQUOTE] = ACTIONS(3640), - [anon_sym_SQUOTE] = ACTIONS(3640), - [anon_sym_L_DQUOTE] = ACTIONS(3640), - [anon_sym_u_DQUOTE] = ACTIONS(3640), - [anon_sym_U_DQUOTE] = ACTIONS(3640), - [anon_sym_u8_DQUOTE] = ACTIONS(3640), - [anon_sym_DQUOTE] = ACTIONS(3640), - [sym_true] = ACTIONS(3638), - [sym_false] = ACTIONS(3638), - [anon_sym_NULL] = ACTIONS(3638), - [anon_sym_nullptr] = ACTIONS(3638), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3638), - [anon_sym_decltype] = ACTIONS(3638), - [anon_sym_virtual] = ACTIONS(3638), - [anon_sym_alignas] = ACTIONS(3638), - [anon_sym_explicit] = ACTIONS(3638), - [anon_sym_typename] = ACTIONS(3638), - [anon_sym_template] = ACTIONS(3638), - [anon_sym_operator] = ACTIONS(3638), - [anon_sym_try] = ACTIONS(3638), - [anon_sym_delete] = ACTIONS(3638), - [anon_sym_throw] = ACTIONS(3638), - [anon_sym_namespace] = ACTIONS(3638), - [anon_sym_using] = ACTIONS(3638), - [anon_sym_static_assert] = ACTIONS(3638), - [anon_sym_concept] = ACTIONS(3638), - [anon_sym_co_return] = ACTIONS(3638), - [anon_sym_co_yield] = ACTIONS(3638), - [anon_sym_R_DQUOTE] = ACTIONS(3640), - [anon_sym_LR_DQUOTE] = ACTIONS(3640), - [anon_sym_uR_DQUOTE] = ACTIONS(3640), - [anon_sym_UR_DQUOTE] = ACTIONS(3640), - [anon_sym_u8R_DQUOTE] = ACTIONS(3640), - [anon_sym_co_await] = ACTIONS(3638), - [anon_sym_new] = ACTIONS(3638), - [anon_sym_requires] = ACTIONS(3638), - [sym_this] = ACTIONS(3638), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3640), - [sym_semgrep_named_ellipsis] = ACTIONS(3640), + [sym_else_clause] = STATE(482), + [sym_identifier] = ACTIONS(3073), + [aux_sym_preproc_include_token1] = ACTIONS(3073), + [aux_sym_preproc_def_token1] = ACTIONS(3073), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3075), + [aux_sym_preproc_if_token1] = ACTIONS(3073), + [aux_sym_preproc_if_token2] = ACTIONS(3073), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3073), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3073), + [aux_sym_preproc_else_token1] = ACTIONS(3073), + [aux_sym_preproc_elif_token1] = ACTIONS(3073), + [sym_preproc_directive] = ACTIONS(3073), + [anon_sym_LPAREN2] = ACTIONS(3075), + [anon_sym_BANG] = ACTIONS(3075), + [anon_sym_TILDE] = ACTIONS(3075), + [anon_sym_DASH] = ACTIONS(3073), + [anon_sym_PLUS] = ACTIONS(3073), + [anon_sym_STAR] = ACTIONS(3075), + [anon_sym_AMP_AMP] = ACTIONS(3075), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_SEMI] = ACTIONS(3075), + [anon_sym___extension__] = ACTIONS(3073), + [anon_sym_typedef] = ACTIONS(3073), + [anon_sym_extern] = ACTIONS(3073), + [anon_sym___attribute__] = ACTIONS(3073), + [anon_sym_COLON_COLON] = ACTIONS(3075), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3075), + [anon_sym___declspec] = ACTIONS(3073), + [anon_sym___based] = ACTIONS(3073), + [anon_sym___cdecl] = ACTIONS(3073), + [anon_sym___clrcall] = ACTIONS(3073), + [anon_sym___stdcall] = ACTIONS(3073), + [anon_sym___fastcall] = ACTIONS(3073), + [anon_sym___thiscall] = ACTIONS(3073), + [anon_sym___vectorcall] = ACTIONS(3073), + [anon_sym_LBRACE] = ACTIONS(3075), + [anon_sym_signed] = ACTIONS(3073), + [anon_sym_unsigned] = ACTIONS(3073), + [anon_sym_long] = ACTIONS(3073), + [anon_sym_short] = ACTIONS(3073), + [anon_sym_LBRACK] = ACTIONS(3073), + [anon_sym_static] = ACTIONS(3073), + [anon_sym_register] = ACTIONS(3073), + [anon_sym_inline] = ACTIONS(3073), + [anon_sym___inline] = ACTIONS(3073), + [anon_sym___inline__] = ACTIONS(3073), + [anon_sym___forceinline] = ACTIONS(3073), + [anon_sym_thread_local] = ACTIONS(3073), + [anon_sym___thread] = ACTIONS(3073), + [anon_sym_const] = ACTIONS(3073), + [anon_sym_constexpr] = ACTIONS(3073), + [anon_sym_volatile] = ACTIONS(3073), + [anon_sym_restrict] = ACTIONS(3073), + [anon_sym___restrict__] = ACTIONS(3073), + [anon_sym__Atomic] = ACTIONS(3073), + [anon_sym__Noreturn] = ACTIONS(3073), + [anon_sym_noreturn] = ACTIONS(3073), + [anon_sym_mutable] = ACTIONS(3073), + [anon_sym_constinit] = ACTIONS(3073), + [anon_sym_consteval] = ACTIONS(3073), + [sym_primitive_type] = ACTIONS(3073), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3073), + [anon_sym_struct] = ACTIONS(3073), + [anon_sym_union] = ACTIONS(3073), + [anon_sym_if] = ACTIONS(3073), + [anon_sym_else] = ACTIONS(3420), + [anon_sym_switch] = ACTIONS(3073), + [anon_sym_case] = ACTIONS(3073), + [anon_sym_default] = ACTIONS(3073), + [anon_sym_while] = ACTIONS(3073), + [anon_sym_do] = ACTIONS(3073), + [anon_sym_for] = ACTIONS(3073), + [anon_sym_return] = ACTIONS(3073), + [anon_sym_break] = ACTIONS(3073), + [anon_sym_continue] = ACTIONS(3073), + [anon_sym_goto] = ACTIONS(3073), + [anon_sym___try] = ACTIONS(3073), + [anon_sym___leave] = ACTIONS(3073), + [anon_sym_not] = ACTIONS(3073), + [anon_sym_compl] = ACTIONS(3073), + [anon_sym_DASH_DASH] = ACTIONS(3075), + [anon_sym_PLUS_PLUS] = ACTIONS(3075), + [anon_sym_sizeof] = ACTIONS(3073), + [anon_sym___alignof__] = ACTIONS(3073), + [anon_sym___alignof] = ACTIONS(3073), + [anon_sym__alignof] = ACTIONS(3073), + [anon_sym_alignof] = ACTIONS(3073), + [anon_sym__Alignof] = ACTIONS(3073), + [anon_sym_offsetof] = ACTIONS(3073), + [anon_sym__Generic] = ACTIONS(3073), + [anon_sym_asm] = ACTIONS(3073), + [anon_sym___asm__] = ACTIONS(3073), + [sym_number_literal] = ACTIONS(3075), + [anon_sym_L_SQUOTE] = ACTIONS(3075), + [anon_sym_u_SQUOTE] = ACTIONS(3075), + [anon_sym_U_SQUOTE] = ACTIONS(3075), + [anon_sym_u8_SQUOTE] = ACTIONS(3075), + [anon_sym_SQUOTE] = ACTIONS(3075), + [anon_sym_L_DQUOTE] = ACTIONS(3075), + [anon_sym_u_DQUOTE] = ACTIONS(3075), + [anon_sym_U_DQUOTE] = ACTIONS(3075), + [anon_sym_u8_DQUOTE] = ACTIONS(3075), + [anon_sym_DQUOTE] = ACTIONS(3075), + [sym_true] = ACTIONS(3073), + [sym_false] = ACTIONS(3073), + [anon_sym_NULL] = ACTIONS(3073), + [anon_sym_nullptr] = ACTIONS(3073), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3073), + [anon_sym_decltype] = ACTIONS(3073), + [anon_sym_virtual] = ACTIONS(3073), + [anon_sym_alignas] = ACTIONS(3073), + [anon_sym_explicit] = ACTIONS(3073), + [anon_sym_typename] = ACTIONS(3073), + [anon_sym_template] = ACTIONS(3073), + [anon_sym_operator] = ACTIONS(3073), + [anon_sym_try] = ACTIONS(3073), + [anon_sym_delete] = ACTIONS(3073), + [anon_sym_throw] = ACTIONS(3073), + [anon_sym_namespace] = ACTIONS(3073), + [anon_sym_using] = ACTIONS(3073), + [anon_sym_static_assert] = ACTIONS(3073), + [anon_sym_concept] = ACTIONS(3073), + [anon_sym_co_return] = ACTIONS(3073), + [anon_sym_co_yield] = ACTIONS(3073), + [anon_sym_R_DQUOTE] = ACTIONS(3075), + [anon_sym_LR_DQUOTE] = ACTIONS(3075), + [anon_sym_uR_DQUOTE] = ACTIONS(3075), + [anon_sym_UR_DQUOTE] = ACTIONS(3075), + [anon_sym_u8R_DQUOTE] = ACTIONS(3075), + [anon_sym_co_await] = ACTIONS(3073), + [anon_sym_new] = ACTIONS(3073), + [anon_sym_requires] = ACTIONS(3073), + [sym_this] = ACTIONS(3073), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3075), + [sym_semgrep_named_ellipsis] = ACTIONS(3075), }, [453] = { - [sym_identifier] = ACTIONS(3101), - [aux_sym_preproc_include_token1] = ACTIONS(3101), - [aux_sym_preproc_def_token1] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3103), - [aux_sym_preproc_if_token1] = ACTIONS(3101), - [aux_sym_preproc_if_token2] = ACTIONS(3101), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3101), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3101), - [aux_sym_preproc_else_token1] = ACTIONS(3101), - [aux_sym_preproc_elif_token1] = ACTIONS(3101), - [sym_preproc_directive] = ACTIONS(3101), - [anon_sym_LPAREN2] = ACTIONS(3103), - [anon_sym_BANG] = ACTIONS(3103), - [anon_sym_TILDE] = ACTIONS(3103), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_AMP_AMP] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym___extension__] = ACTIONS(3101), - [anon_sym_typedef] = ACTIONS(3101), - [anon_sym_extern] = ACTIONS(3101), - [anon_sym___attribute__] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(3103), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3103), - [anon_sym___declspec] = ACTIONS(3101), - [anon_sym___based] = ACTIONS(3101), - [anon_sym___cdecl] = ACTIONS(3101), - [anon_sym___clrcall] = ACTIONS(3101), - [anon_sym___stdcall] = ACTIONS(3101), - [anon_sym___fastcall] = ACTIONS(3101), - [anon_sym___thiscall] = ACTIONS(3101), - [anon_sym___vectorcall] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3103), - [anon_sym_signed] = ACTIONS(3101), - [anon_sym_unsigned] = ACTIONS(3101), - [anon_sym_long] = ACTIONS(3101), - [anon_sym_short] = ACTIONS(3101), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_static] = ACTIONS(3101), - [anon_sym_register] = ACTIONS(3101), - [anon_sym_inline] = ACTIONS(3101), - [anon_sym___inline] = ACTIONS(3101), - [anon_sym___inline__] = ACTIONS(3101), - [anon_sym___forceinline] = ACTIONS(3101), - [anon_sym_thread_local] = ACTIONS(3101), - [anon_sym___thread] = ACTIONS(3101), - [anon_sym_const] = ACTIONS(3101), - [anon_sym_constexpr] = ACTIONS(3101), - [anon_sym_volatile] = ACTIONS(3101), - [anon_sym_restrict] = ACTIONS(3101), - [anon_sym___restrict__] = ACTIONS(3101), - [anon_sym__Atomic] = ACTIONS(3101), - [anon_sym__Noreturn] = ACTIONS(3101), - [anon_sym_noreturn] = ACTIONS(3101), - [anon_sym_mutable] = ACTIONS(3101), - [anon_sym_constinit] = ACTIONS(3101), - [anon_sym_consteval] = ACTIONS(3101), - [sym_primitive_type] = ACTIONS(3101), - [anon_sym_enum] = ACTIONS(3101), - [anon_sym_class] = ACTIONS(3101), - [anon_sym_struct] = ACTIONS(3101), - [anon_sym_union] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_else] = ACTIONS(3101), - [anon_sym_switch] = ACTIONS(3101), - [anon_sym_case] = ACTIONS(3101), - [anon_sym_default] = ACTIONS(3101), - [anon_sym_while] = ACTIONS(3101), - [anon_sym_do] = ACTIONS(3101), - [anon_sym_for] = ACTIONS(3101), - [anon_sym_return] = ACTIONS(3101), - [anon_sym_break] = ACTIONS(3101), - [anon_sym_continue] = ACTIONS(3101), - [anon_sym_goto] = ACTIONS(3101), - [anon_sym___try] = ACTIONS(3101), - [anon_sym___leave] = ACTIONS(3101), - [anon_sym_not] = ACTIONS(3101), - [anon_sym_compl] = ACTIONS(3101), - [anon_sym_DASH_DASH] = ACTIONS(3103), - [anon_sym_PLUS_PLUS] = ACTIONS(3103), - [anon_sym_sizeof] = ACTIONS(3101), - [anon_sym___alignof__] = ACTIONS(3101), - [anon_sym___alignof] = ACTIONS(3101), - [anon_sym__alignof] = ACTIONS(3101), - [anon_sym_alignof] = ACTIONS(3101), - [anon_sym__Alignof] = ACTIONS(3101), - [anon_sym_offsetof] = ACTIONS(3101), - [anon_sym__Generic] = ACTIONS(3101), - [anon_sym_asm] = ACTIONS(3101), - [anon_sym___asm__] = ACTIONS(3101), - [sym_number_literal] = ACTIONS(3103), - [anon_sym_L_SQUOTE] = ACTIONS(3103), - [anon_sym_u_SQUOTE] = ACTIONS(3103), - [anon_sym_U_SQUOTE] = ACTIONS(3103), - [anon_sym_u8_SQUOTE] = ACTIONS(3103), - [anon_sym_SQUOTE] = ACTIONS(3103), - [anon_sym_L_DQUOTE] = ACTIONS(3103), - [anon_sym_u_DQUOTE] = ACTIONS(3103), - [anon_sym_U_DQUOTE] = ACTIONS(3103), - [anon_sym_u8_DQUOTE] = ACTIONS(3103), - [anon_sym_DQUOTE] = ACTIONS(3103), - [sym_true] = ACTIONS(3101), - [sym_false] = ACTIONS(3101), - [anon_sym_NULL] = ACTIONS(3101), - [anon_sym_nullptr] = ACTIONS(3101), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3101), - [anon_sym_decltype] = ACTIONS(3101), - [anon_sym_virtual] = ACTIONS(3101), - [anon_sym_alignas] = ACTIONS(3101), - [anon_sym_explicit] = ACTIONS(3101), - [anon_sym_typename] = ACTIONS(3101), - [anon_sym_template] = ACTIONS(3101), - [anon_sym_operator] = ACTIONS(3101), - [anon_sym_try] = ACTIONS(3101), - [anon_sym_delete] = ACTIONS(3101), - [anon_sym_throw] = ACTIONS(3101), - [anon_sym_namespace] = ACTIONS(3101), - [anon_sym_using] = ACTIONS(3101), - [anon_sym_static_assert] = ACTIONS(3101), - [anon_sym_concept] = ACTIONS(3101), - [anon_sym_co_return] = ACTIONS(3101), - [anon_sym_co_yield] = ACTIONS(3101), - [anon_sym_catch] = ACTIONS(3101), - [anon_sym_R_DQUOTE] = ACTIONS(3103), - [anon_sym_LR_DQUOTE] = ACTIONS(3103), - [anon_sym_uR_DQUOTE] = ACTIONS(3103), - [anon_sym_UR_DQUOTE] = ACTIONS(3103), - [anon_sym_u8R_DQUOTE] = ACTIONS(3103), - [anon_sym_co_await] = ACTIONS(3101), - [anon_sym_new] = ACTIONS(3101), - [anon_sym_requires] = ACTIONS(3101), - [sym_this] = ACTIONS(3101), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3103), - [sym_semgrep_named_ellipsis] = ACTIONS(3103), + [sym_preproc_def] = STATE(1935), + [sym_preproc_function_def] = STATE(1935), + [sym_preproc_call] = STATE(1935), + [sym_preproc_if_in_field_declaration_list] = STATE(1935), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1935), + [sym_preproc_else_in_field_declaration_list] = STATE(10046), + [sym_preproc_elif_in_field_declaration_list] = STATE(10046), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(10046), + [sym_type_definition] = STATE(1935), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6440), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7286), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(347), + [sym_field_declaration] = STATE(1935), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(1935), + [sym_operator_cast] = STATE(7765), + [sym_inline_method_definition] = STATE(1935), + [sym_constructor_specifiers] = STATE(1957), + [sym_operator_cast_definition] = STATE(1935), + [sym_operator_cast_declaration] = STATE(1935), + [sym_constructor_or_destructor_definition] = STATE(1935), + [sym_constructor_or_destructor_declaration] = STATE(1935), + [sym_friend_declaration] = STATE(1935), + [sym_access_specifier] = STATE(9998), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(1935), + [sym_alias_declaration] = STATE(1935), + [sym_static_assert_declaration] = STATE(1935), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7765), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(1935), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(347), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1957), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(3229), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3231), + [aux_sym_preproc_if_token1] = ACTIONS(3233), + [aux_sym_preproc_if_token2] = ACTIONS(3678), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3239), + [aux_sym_preproc_else_token1] = ACTIONS(3241), + [aux_sym_preproc_elif_token1] = ACTIONS(3243), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3245), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3247), + [sym_preproc_directive] = ACTIONS(3249), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(3259), + [anon_sym_typedef] = ACTIONS(3261), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(3279), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(3281), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3285), + [anon_sym_static_assert] = ACTIONS(3287), + [sym_semgrep_metavar] = ACTIONS(3289), }, [454] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5508), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8191), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(8604), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(3642), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [sym_identifier] = ACTIONS(3680), + [aux_sym_preproc_include_token1] = ACTIONS(3680), + [aux_sym_preproc_def_token1] = ACTIONS(3680), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3682), + [aux_sym_preproc_if_token1] = ACTIONS(3680), + [aux_sym_preproc_if_token2] = ACTIONS(3680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3680), + [aux_sym_preproc_else_token1] = ACTIONS(3680), + [aux_sym_preproc_elif_token1] = ACTIONS(3680), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3680), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3680), + [sym_preproc_directive] = ACTIONS(3680), + [anon_sym_LPAREN2] = ACTIONS(3682), + [anon_sym_BANG] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(3682), + [anon_sym_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3680), + [anon_sym_STAR] = ACTIONS(3682), + [anon_sym_AMP_AMP] = ACTIONS(3682), + [anon_sym_AMP] = ACTIONS(3680), + [anon_sym_SEMI] = ACTIONS(3682), + [anon_sym___extension__] = ACTIONS(3680), + [anon_sym_typedef] = ACTIONS(3680), + [anon_sym_extern] = ACTIONS(3680), + [anon_sym___attribute__] = ACTIONS(3680), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3682), + [anon_sym___declspec] = ACTIONS(3680), + [anon_sym___based] = ACTIONS(3680), + [anon_sym___cdecl] = ACTIONS(3680), + [anon_sym___clrcall] = ACTIONS(3680), + [anon_sym___stdcall] = ACTIONS(3680), + [anon_sym___fastcall] = ACTIONS(3680), + [anon_sym___thiscall] = ACTIONS(3680), + [anon_sym___vectorcall] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3682), + [anon_sym_signed] = ACTIONS(3680), + [anon_sym_unsigned] = ACTIONS(3680), + [anon_sym_long] = ACTIONS(3680), + [anon_sym_short] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_static] = ACTIONS(3680), + [anon_sym_register] = ACTIONS(3680), + [anon_sym_inline] = ACTIONS(3680), + [anon_sym___inline] = ACTIONS(3680), + [anon_sym___inline__] = ACTIONS(3680), + [anon_sym___forceinline] = ACTIONS(3680), + [anon_sym_thread_local] = ACTIONS(3680), + [anon_sym___thread] = ACTIONS(3680), + [anon_sym_const] = ACTIONS(3680), + [anon_sym_constexpr] = ACTIONS(3680), + [anon_sym_volatile] = ACTIONS(3680), + [anon_sym_restrict] = ACTIONS(3680), + [anon_sym___restrict__] = ACTIONS(3680), + [anon_sym__Atomic] = ACTIONS(3680), + [anon_sym__Noreturn] = ACTIONS(3680), + [anon_sym_noreturn] = ACTIONS(3680), + [anon_sym_mutable] = ACTIONS(3680), + [anon_sym_constinit] = ACTIONS(3680), + [anon_sym_consteval] = ACTIONS(3680), + [sym_primitive_type] = ACTIONS(3680), + [anon_sym_enum] = ACTIONS(3680), + [anon_sym_class] = ACTIONS(3680), + [anon_sym_struct] = ACTIONS(3680), + [anon_sym_union] = ACTIONS(3680), + [anon_sym_if] = ACTIONS(3680), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_case] = ACTIONS(3680), + [anon_sym_default] = ACTIONS(3680), + [anon_sym_while] = ACTIONS(3680), + [anon_sym_do] = ACTIONS(3680), + [anon_sym_for] = ACTIONS(3680), + [anon_sym_return] = ACTIONS(3680), + [anon_sym_break] = ACTIONS(3680), + [anon_sym_continue] = ACTIONS(3680), + [anon_sym_goto] = ACTIONS(3680), + [anon_sym___try] = ACTIONS(3680), + [anon_sym___leave] = ACTIONS(3680), + [anon_sym_not] = ACTIONS(3680), + [anon_sym_compl] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3682), + [anon_sym_PLUS_PLUS] = ACTIONS(3682), + [anon_sym_sizeof] = ACTIONS(3680), + [anon_sym___alignof__] = ACTIONS(3680), + [anon_sym___alignof] = ACTIONS(3680), + [anon_sym__alignof] = ACTIONS(3680), + [anon_sym_alignof] = ACTIONS(3680), + [anon_sym__Alignof] = ACTIONS(3680), + [anon_sym_offsetof] = ACTIONS(3680), + [anon_sym__Generic] = ACTIONS(3680), + [anon_sym_asm] = ACTIONS(3680), + [anon_sym___asm__] = ACTIONS(3680), + [sym_number_literal] = ACTIONS(3682), + [anon_sym_L_SQUOTE] = ACTIONS(3682), + [anon_sym_u_SQUOTE] = ACTIONS(3682), + [anon_sym_U_SQUOTE] = ACTIONS(3682), + [anon_sym_u8_SQUOTE] = ACTIONS(3682), + [anon_sym_SQUOTE] = ACTIONS(3682), + [anon_sym_L_DQUOTE] = ACTIONS(3682), + [anon_sym_u_DQUOTE] = ACTIONS(3682), + [anon_sym_U_DQUOTE] = ACTIONS(3682), + [anon_sym_u8_DQUOTE] = ACTIONS(3682), + [anon_sym_DQUOTE] = ACTIONS(3682), + [sym_true] = ACTIONS(3680), + [sym_false] = ACTIONS(3680), + [anon_sym_NULL] = ACTIONS(3680), + [anon_sym_nullptr] = ACTIONS(3680), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3680), + [anon_sym_decltype] = ACTIONS(3680), + [anon_sym_virtual] = ACTIONS(3680), + [anon_sym_alignas] = ACTIONS(3680), + [anon_sym_explicit] = ACTIONS(3680), + [anon_sym_typename] = ACTIONS(3680), + [anon_sym_template] = ACTIONS(3680), + [anon_sym_operator] = ACTIONS(3680), + [anon_sym_try] = ACTIONS(3680), + [anon_sym_delete] = ACTIONS(3680), + [anon_sym_throw] = ACTIONS(3680), + [anon_sym_namespace] = ACTIONS(3680), + [anon_sym_using] = ACTIONS(3680), + [anon_sym_static_assert] = ACTIONS(3680), + [anon_sym_concept] = ACTIONS(3680), + [anon_sym_co_return] = ACTIONS(3680), + [anon_sym_co_yield] = ACTIONS(3680), + [anon_sym_R_DQUOTE] = ACTIONS(3682), + [anon_sym_LR_DQUOTE] = ACTIONS(3682), + [anon_sym_uR_DQUOTE] = ACTIONS(3682), + [anon_sym_UR_DQUOTE] = ACTIONS(3682), + [anon_sym_u8R_DQUOTE] = ACTIONS(3682), + [anon_sym_co_await] = ACTIONS(3680), + [anon_sym_new] = ACTIONS(3680), + [anon_sym_requires] = ACTIONS(3680), + [sym_this] = ACTIONS(3680), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3682), + [sym_semgrep_named_ellipsis] = ACTIONS(3682), }, [455] = { - [sym_identifier] = ACTIONS(3644), - [aux_sym_preproc_include_token1] = ACTIONS(3644), - [aux_sym_preproc_def_token1] = ACTIONS(3644), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3646), - [aux_sym_preproc_if_token1] = ACTIONS(3644), - [aux_sym_preproc_if_token2] = ACTIONS(3644), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3644), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3644), - [aux_sym_preproc_else_token1] = ACTIONS(3644), - [aux_sym_preproc_elif_token1] = ACTIONS(3644), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3644), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3644), - [sym_preproc_directive] = ACTIONS(3644), - [anon_sym_LPAREN2] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3646), - [anon_sym_TILDE] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3644), - [anon_sym_PLUS] = ACTIONS(3644), - [anon_sym_STAR] = ACTIONS(3646), - [anon_sym_AMP_AMP] = ACTIONS(3646), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_SEMI] = ACTIONS(3646), - [anon_sym___extension__] = ACTIONS(3644), - [anon_sym_typedef] = ACTIONS(3644), - [anon_sym_extern] = ACTIONS(3644), - [anon_sym___attribute__] = ACTIONS(3644), - [anon_sym_COLON_COLON] = ACTIONS(3646), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3646), - [anon_sym___declspec] = ACTIONS(3644), - [anon_sym___based] = ACTIONS(3644), - [anon_sym___cdecl] = ACTIONS(3644), - [anon_sym___clrcall] = ACTIONS(3644), - [anon_sym___stdcall] = ACTIONS(3644), - [anon_sym___fastcall] = ACTIONS(3644), - [anon_sym___thiscall] = ACTIONS(3644), - [anon_sym___vectorcall] = ACTIONS(3644), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_signed] = ACTIONS(3644), - [anon_sym_unsigned] = ACTIONS(3644), - [anon_sym_long] = ACTIONS(3644), - [anon_sym_short] = ACTIONS(3644), - [anon_sym_LBRACK] = ACTIONS(3644), - [anon_sym_static] = ACTIONS(3644), - [anon_sym_register] = ACTIONS(3644), - [anon_sym_inline] = ACTIONS(3644), - [anon_sym___inline] = ACTIONS(3644), - [anon_sym___inline__] = ACTIONS(3644), - [anon_sym___forceinline] = ACTIONS(3644), - [anon_sym_thread_local] = ACTIONS(3644), - [anon_sym___thread] = ACTIONS(3644), - [anon_sym_const] = ACTIONS(3644), - [anon_sym_constexpr] = ACTIONS(3644), - [anon_sym_volatile] = ACTIONS(3644), - [anon_sym_restrict] = ACTIONS(3644), - [anon_sym___restrict__] = ACTIONS(3644), - [anon_sym__Atomic] = ACTIONS(3644), - [anon_sym__Noreturn] = ACTIONS(3644), - [anon_sym_noreturn] = ACTIONS(3644), - [anon_sym_mutable] = ACTIONS(3644), - [anon_sym_constinit] = ACTIONS(3644), - [anon_sym_consteval] = ACTIONS(3644), - [sym_primitive_type] = ACTIONS(3644), - [anon_sym_enum] = ACTIONS(3644), - [anon_sym_class] = ACTIONS(3644), - [anon_sym_struct] = ACTIONS(3644), - [anon_sym_union] = ACTIONS(3644), - [anon_sym_if] = ACTIONS(3644), - [anon_sym_switch] = ACTIONS(3644), - [anon_sym_case] = ACTIONS(3644), - [anon_sym_default] = ACTIONS(3644), - [anon_sym_while] = ACTIONS(3644), - [anon_sym_do] = ACTIONS(3644), - [anon_sym_for] = ACTIONS(3644), - [anon_sym_return] = ACTIONS(3644), - [anon_sym_break] = ACTIONS(3644), - [anon_sym_continue] = ACTIONS(3644), - [anon_sym_goto] = ACTIONS(3644), - [anon_sym___try] = ACTIONS(3644), - [anon_sym___leave] = ACTIONS(3644), - [anon_sym_not] = ACTIONS(3644), - [anon_sym_compl] = ACTIONS(3644), - [anon_sym_DASH_DASH] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3646), - [anon_sym_sizeof] = ACTIONS(3644), - [anon_sym___alignof__] = ACTIONS(3644), - [anon_sym___alignof] = ACTIONS(3644), - [anon_sym__alignof] = ACTIONS(3644), - [anon_sym_alignof] = ACTIONS(3644), - [anon_sym__Alignof] = ACTIONS(3644), - [anon_sym_offsetof] = ACTIONS(3644), - [anon_sym__Generic] = ACTIONS(3644), - [anon_sym_asm] = ACTIONS(3644), - [anon_sym___asm__] = ACTIONS(3644), - [sym_number_literal] = ACTIONS(3646), - [anon_sym_L_SQUOTE] = ACTIONS(3646), - [anon_sym_u_SQUOTE] = ACTIONS(3646), - [anon_sym_U_SQUOTE] = ACTIONS(3646), - [anon_sym_u8_SQUOTE] = ACTIONS(3646), - [anon_sym_SQUOTE] = ACTIONS(3646), - [anon_sym_L_DQUOTE] = ACTIONS(3646), - [anon_sym_u_DQUOTE] = ACTIONS(3646), - [anon_sym_U_DQUOTE] = ACTIONS(3646), - [anon_sym_u8_DQUOTE] = ACTIONS(3646), - [anon_sym_DQUOTE] = ACTIONS(3646), - [sym_true] = ACTIONS(3644), - [sym_false] = ACTIONS(3644), - [anon_sym_NULL] = ACTIONS(3644), - [anon_sym_nullptr] = ACTIONS(3644), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3644), - [anon_sym_decltype] = ACTIONS(3644), - [anon_sym_virtual] = ACTIONS(3644), - [anon_sym_alignas] = ACTIONS(3644), - [anon_sym_explicit] = ACTIONS(3644), - [anon_sym_typename] = ACTIONS(3644), - [anon_sym_template] = ACTIONS(3644), - [anon_sym_operator] = ACTIONS(3644), - [anon_sym_try] = ACTIONS(3644), - [anon_sym_delete] = ACTIONS(3644), - [anon_sym_throw] = ACTIONS(3644), - [anon_sym_namespace] = ACTIONS(3644), - [anon_sym_using] = ACTIONS(3644), - [anon_sym_static_assert] = ACTIONS(3644), - [anon_sym_concept] = ACTIONS(3644), - [anon_sym_co_return] = ACTIONS(3644), - [anon_sym_co_yield] = ACTIONS(3644), - [anon_sym_R_DQUOTE] = ACTIONS(3646), - [anon_sym_LR_DQUOTE] = ACTIONS(3646), - [anon_sym_uR_DQUOTE] = ACTIONS(3646), - [anon_sym_UR_DQUOTE] = ACTIONS(3646), - [anon_sym_u8R_DQUOTE] = ACTIONS(3646), - [anon_sym_co_await] = ACTIONS(3644), - [anon_sym_new] = ACTIONS(3644), - [anon_sym_requires] = ACTIONS(3644), - [sym_this] = ACTIONS(3644), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3646), - [sym_semgrep_named_ellipsis] = ACTIONS(3646), + [sym_identifier] = ACTIONS(3684), + [aux_sym_preproc_include_token1] = ACTIONS(3684), + [aux_sym_preproc_def_token1] = ACTIONS(3684), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3686), + [aux_sym_preproc_if_token1] = ACTIONS(3684), + [aux_sym_preproc_if_token2] = ACTIONS(3684), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3684), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3684), + [aux_sym_preproc_else_token1] = ACTIONS(3684), + [aux_sym_preproc_elif_token1] = ACTIONS(3684), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3684), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3684), + [sym_preproc_directive] = ACTIONS(3684), + [anon_sym_LPAREN2] = ACTIONS(3686), + [anon_sym_BANG] = ACTIONS(3686), + [anon_sym_TILDE] = ACTIONS(3686), + [anon_sym_DASH] = ACTIONS(3684), + [anon_sym_PLUS] = ACTIONS(3684), + [anon_sym_STAR] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3686), + [anon_sym_AMP] = ACTIONS(3684), + [anon_sym_SEMI] = ACTIONS(3686), + [anon_sym___extension__] = ACTIONS(3684), + [anon_sym_typedef] = ACTIONS(3684), + [anon_sym_extern] = ACTIONS(3684), + [anon_sym___attribute__] = ACTIONS(3684), + [anon_sym_COLON_COLON] = ACTIONS(3686), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3686), + [anon_sym___declspec] = ACTIONS(3684), + [anon_sym___based] = ACTIONS(3684), + [anon_sym___cdecl] = ACTIONS(3684), + [anon_sym___clrcall] = ACTIONS(3684), + [anon_sym___stdcall] = ACTIONS(3684), + [anon_sym___fastcall] = ACTIONS(3684), + [anon_sym___thiscall] = ACTIONS(3684), + [anon_sym___vectorcall] = ACTIONS(3684), + [anon_sym_LBRACE] = ACTIONS(3686), + [anon_sym_signed] = ACTIONS(3684), + [anon_sym_unsigned] = ACTIONS(3684), + [anon_sym_long] = ACTIONS(3684), + [anon_sym_short] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3684), + [anon_sym_static] = ACTIONS(3684), + [anon_sym_register] = ACTIONS(3684), + [anon_sym_inline] = ACTIONS(3684), + [anon_sym___inline] = ACTIONS(3684), + [anon_sym___inline__] = ACTIONS(3684), + [anon_sym___forceinline] = ACTIONS(3684), + [anon_sym_thread_local] = ACTIONS(3684), + [anon_sym___thread] = ACTIONS(3684), + [anon_sym_const] = ACTIONS(3684), + [anon_sym_constexpr] = ACTIONS(3684), + [anon_sym_volatile] = ACTIONS(3684), + [anon_sym_restrict] = ACTIONS(3684), + [anon_sym___restrict__] = ACTIONS(3684), + [anon_sym__Atomic] = ACTIONS(3684), + [anon_sym__Noreturn] = ACTIONS(3684), + [anon_sym_noreturn] = ACTIONS(3684), + [anon_sym_mutable] = ACTIONS(3684), + [anon_sym_constinit] = ACTIONS(3684), + [anon_sym_consteval] = ACTIONS(3684), + [sym_primitive_type] = ACTIONS(3684), + [anon_sym_enum] = ACTIONS(3684), + [anon_sym_class] = ACTIONS(3684), + [anon_sym_struct] = ACTIONS(3684), + [anon_sym_union] = ACTIONS(3684), + [anon_sym_if] = ACTIONS(3684), + [anon_sym_switch] = ACTIONS(3684), + [anon_sym_case] = ACTIONS(3684), + [anon_sym_default] = ACTIONS(3684), + [anon_sym_while] = ACTIONS(3684), + [anon_sym_do] = ACTIONS(3684), + [anon_sym_for] = ACTIONS(3684), + [anon_sym_return] = ACTIONS(3684), + [anon_sym_break] = ACTIONS(3684), + [anon_sym_continue] = ACTIONS(3684), + [anon_sym_goto] = ACTIONS(3684), + [anon_sym___try] = ACTIONS(3684), + [anon_sym___leave] = ACTIONS(3684), + [anon_sym_not] = ACTIONS(3684), + [anon_sym_compl] = ACTIONS(3684), + [anon_sym_DASH_DASH] = ACTIONS(3686), + [anon_sym_PLUS_PLUS] = ACTIONS(3686), + [anon_sym_sizeof] = ACTIONS(3684), + [anon_sym___alignof__] = ACTIONS(3684), + [anon_sym___alignof] = ACTIONS(3684), + [anon_sym__alignof] = ACTIONS(3684), + [anon_sym_alignof] = ACTIONS(3684), + [anon_sym__Alignof] = ACTIONS(3684), + [anon_sym_offsetof] = ACTIONS(3684), + [anon_sym__Generic] = ACTIONS(3684), + [anon_sym_asm] = ACTIONS(3684), + [anon_sym___asm__] = ACTIONS(3684), + [sym_number_literal] = ACTIONS(3686), + [anon_sym_L_SQUOTE] = ACTIONS(3686), + [anon_sym_u_SQUOTE] = ACTIONS(3686), + [anon_sym_U_SQUOTE] = ACTIONS(3686), + [anon_sym_u8_SQUOTE] = ACTIONS(3686), + [anon_sym_SQUOTE] = ACTIONS(3686), + [anon_sym_L_DQUOTE] = ACTIONS(3686), + [anon_sym_u_DQUOTE] = ACTIONS(3686), + [anon_sym_U_DQUOTE] = ACTIONS(3686), + [anon_sym_u8_DQUOTE] = ACTIONS(3686), + [anon_sym_DQUOTE] = ACTIONS(3686), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [anon_sym_NULL] = ACTIONS(3684), + [anon_sym_nullptr] = ACTIONS(3684), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3684), + [anon_sym_decltype] = ACTIONS(3684), + [anon_sym_virtual] = ACTIONS(3684), + [anon_sym_alignas] = ACTIONS(3684), + [anon_sym_explicit] = ACTIONS(3684), + [anon_sym_typename] = ACTIONS(3684), + [anon_sym_template] = ACTIONS(3684), + [anon_sym_operator] = ACTIONS(3684), + [anon_sym_try] = ACTIONS(3684), + [anon_sym_delete] = ACTIONS(3684), + [anon_sym_throw] = ACTIONS(3684), + [anon_sym_namespace] = ACTIONS(3684), + [anon_sym_using] = ACTIONS(3684), + [anon_sym_static_assert] = ACTIONS(3684), + [anon_sym_concept] = ACTIONS(3684), + [anon_sym_co_return] = ACTIONS(3684), + [anon_sym_co_yield] = ACTIONS(3684), + [anon_sym_R_DQUOTE] = ACTIONS(3686), + [anon_sym_LR_DQUOTE] = ACTIONS(3686), + [anon_sym_uR_DQUOTE] = ACTIONS(3686), + [anon_sym_UR_DQUOTE] = ACTIONS(3686), + [anon_sym_u8R_DQUOTE] = ACTIONS(3686), + [anon_sym_co_await] = ACTIONS(3684), + [anon_sym_new] = ACTIONS(3684), + [anon_sym_requires] = ACTIONS(3684), + [sym_this] = ACTIONS(3684), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3686), + [sym_semgrep_named_ellipsis] = ACTIONS(3686), }, [456] = { - [sym_identifier] = ACTIONS(3648), - [aux_sym_preproc_include_token1] = ACTIONS(3648), - [aux_sym_preproc_def_token1] = ACTIONS(3648), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3650), - [aux_sym_preproc_if_token1] = ACTIONS(3648), - [aux_sym_preproc_if_token2] = ACTIONS(3648), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3648), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3648), - [aux_sym_preproc_else_token1] = ACTIONS(3648), - [aux_sym_preproc_elif_token1] = ACTIONS(3648), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3648), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3648), - [sym_preproc_directive] = ACTIONS(3648), - [anon_sym_LPAREN2] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3650), - [anon_sym_TILDE] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_AMP_AMP] = ACTIONS(3650), - [anon_sym_AMP] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3650), - [anon_sym___extension__] = ACTIONS(3648), - [anon_sym_typedef] = ACTIONS(3648), - [anon_sym_extern] = ACTIONS(3648), - [anon_sym___attribute__] = ACTIONS(3648), - [anon_sym_COLON_COLON] = ACTIONS(3650), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3650), - [anon_sym___declspec] = ACTIONS(3648), - [anon_sym___based] = ACTIONS(3648), - [anon_sym___cdecl] = ACTIONS(3648), - [anon_sym___clrcall] = ACTIONS(3648), - [anon_sym___stdcall] = ACTIONS(3648), - [anon_sym___fastcall] = ACTIONS(3648), - [anon_sym___thiscall] = ACTIONS(3648), - [anon_sym___vectorcall] = ACTIONS(3648), - [anon_sym_LBRACE] = ACTIONS(3650), - [anon_sym_signed] = ACTIONS(3648), - [anon_sym_unsigned] = ACTIONS(3648), - [anon_sym_long] = ACTIONS(3648), - [anon_sym_short] = ACTIONS(3648), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_static] = ACTIONS(3648), - [anon_sym_register] = ACTIONS(3648), - [anon_sym_inline] = ACTIONS(3648), - [anon_sym___inline] = ACTIONS(3648), - [anon_sym___inline__] = ACTIONS(3648), - [anon_sym___forceinline] = ACTIONS(3648), - [anon_sym_thread_local] = ACTIONS(3648), - [anon_sym___thread] = ACTIONS(3648), - [anon_sym_const] = ACTIONS(3648), - [anon_sym_constexpr] = ACTIONS(3648), - [anon_sym_volatile] = ACTIONS(3648), - [anon_sym_restrict] = ACTIONS(3648), - [anon_sym___restrict__] = ACTIONS(3648), - [anon_sym__Atomic] = ACTIONS(3648), - [anon_sym__Noreturn] = ACTIONS(3648), - [anon_sym_noreturn] = ACTIONS(3648), - [anon_sym_mutable] = ACTIONS(3648), - [anon_sym_constinit] = ACTIONS(3648), - [anon_sym_consteval] = ACTIONS(3648), - [sym_primitive_type] = ACTIONS(3648), - [anon_sym_enum] = ACTIONS(3648), - [anon_sym_class] = ACTIONS(3648), - [anon_sym_struct] = ACTIONS(3648), - [anon_sym_union] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3648), - [anon_sym_switch] = ACTIONS(3648), - [anon_sym_case] = ACTIONS(3648), - [anon_sym_default] = ACTIONS(3648), - [anon_sym_while] = ACTIONS(3648), - [anon_sym_do] = ACTIONS(3648), - [anon_sym_for] = ACTIONS(3648), - [anon_sym_return] = ACTIONS(3648), - [anon_sym_break] = ACTIONS(3648), - [anon_sym_continue] = ACTIONS(3648), - [anon_sym_goto] = ACTIONS(3648), - [anon_sym___try] = ACTIONS(3648), - [anon_sym___leave] = ACTIONS(3648), - [anon_sym_not] = ACTIONS(3648), - [anon_sym_compl] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3650), - [anon_sym_sizeof] = ACTIONS(3648), - [anon_sym___alignof__] = ACTIONS(3648), - [anon_sym___alignof] = ACTIONS(3648), - [anon_sym__alignof] = ACTIONS(3648), - [anon_sym_alignof] = ACTIONS(3648), - [anon_sym__Alignof] = ACTIONS(3648), - [anon_sym_offsetof] = ACTIONS(3648), - [anon_sym__Generic] = ACTIONS(3648), - [anon_sym_asm] = ACTIONS(3648), - [anon_sym___asm__] = ACTIONS(3648), - [sym_number_literal] = ACTIONS(3650), - [anon_sym_L_SQUOTE] = ACTIONS(3650), - [anon_sym_u_SQUOTE] = ACTIONS(3650), - [anon_sym_U_SQUOTE] = ACTIONS(3650), - [anon_sym_u8_SQUOTE] = ACTIONS(3650), - [anon_sym_SQUOTE] = ACTIONS(3650), - [anon_sym_L_DQUOTE] = ACTIONS(3650), - [anon_sym_u_DQUOTE] = ACTIONS(3650), - [anon_sym_U_DQUOTE] = ACTIONS(3650), - [anon_sym_u8_DQUOTE] = ACTIONS(3650), - [anon_sym_DQUOTE] = ACTIONS(3650), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [anon_sym_NULL] = ACTIONS(3648), - [anon_sym_nullptr] = ACTIONS(3648), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3648), - [anon_sym_decltype] = ACTIONS(3648), - [anon_sym_virtual] = ACTIONS(3648), - [anon_sym_alignas] = ACTIONS(3648), - [anon_sym_explicit] = ACTIONS(3648), - [anon_sym_typename] = ACTIONS(3648), - [anon_sym_template] = ACTIONS(3648), - [anon_sym_operator] = ACTIONS(3648), - [anon_sym_try] = ACTIONS(3648), - [anon_sym_delete] = ACTIONS(3648), - [anon_sym_throw] = ACTIONS(3648), - [anon_sym_namespace] = ACTIONS(3648), - [anon_sym_using] = ACTIONS(3648), - [anon_sym_static_assert] = ACTIONS(3648), - [anon_sym_concept] = ACTIONS(3648), - [anon_sym_co_return] = ACTIONS(3648), - [anon_sym_co_yield] = ACTIONS(3648), - [anon_sym_R_DQUOTE] = ACTIONS(3650), - [anon_sym_LR_DQUOTE] = ACTIONS(3650), - [anon_sym_uR_DQUOTE] = ACTIONS(3650), - [anon_sym_UR_DQUOTE] = ACTIONS(3650), - [anon_sym_u8R_DQUOTE] = ACTIONS(3650), - [anon_sym_co_await] = ACTIONS(3648), - [anon_sym_new] = ACTIONS(3648), - [anon_sym_requires] = ACTIONS(3648), - [sym_this] = ACTIONS(3648), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3650), - [sym_semgrep_named_ellipsis] = ACTIONS(3650), + [sym_identifier] = ACTIONS(3115), + [aux_sym_preproc_include_token1] = ACTIONS(3115), + [aux_sym_preproc_def_token1] = ACTIONS(3115), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3117), + [aux_sym_preproc_if_token1] = ACTIONS(3115), + [aux_sym_preproc_if_token2] = ACTIONS(3115), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3115), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3115), + [aux_sym_preproc_else_token1] = ACTIONS(3115), + [aux_sym_preproc_elif_token1] = ACTIONS(3115), + [sym_preproc_directive] = ACTIONS(3115), + [anon_sym_LPAREN2] = ACTIONS(3117), + [anon_sym_BANG] = ACTIONS(3117), + [anon_sym_TILDE] = ACTIONS(3117), + [anon_sym_DASH] = ACTIONS(3115), + [anon_sym_PLUS] = ACTIONS(3115), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP_AMP] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3115), + [anon_sym_SEMI] = ACTIONS(3117), + [anon_sym___extension__] = ACTIONS(3115), + [anon_sym_typedef] = ACTIONS(3115), + [anon_sym_extern] = ACTIONS(3115), + [anon_sym___attribute__] = ACTIONS(3115), + [anon_sym_COLON_COLON] = ACTIONS(3117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3117), + [anon_sym___declspec] = ACTIONS(3115), + [anon_sym___based] = ACTIONS(3115), + [anon_sym___cdecl] = ACTIONS(3115), + [anon_sym___clrcall] = ACTIONS(3115), + [anon_sym___stdcall] = ACTIONS(3115), + [anon_sym___fastcall] = ACTIONS(3115), + [anon_sym___thiscall] = ACTIONS(3115), + [anon_sym___vectorcall] = ACTIONS(3115), + [anon_sym_LBRACE] = ACTIONS(3117), + [anon_sym_signed] = ACTIONS(3115), + [anon_sym_unsigned] = ACTIONS(3115), + [anon_sym_long] = ACTIONS(3115), + [anon_sym_short] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3115), + [anon_sym_static] = ACTIONS(3115), + [anon_sym_register] = ACTIONS(3115), + [anon_sym_inline] = ACTIONS(3115), + [anon_sym___inline] = ACTIONS(3115), + [anon_sym___inline__] = ACTIONS(3115), + [anon_sym___forceinline] = ACTIONS(3115), + [anon_sym_thread_local] = ACTIONS(3115), + [anon_sym___thread] = ACTIONS(3115), + [anon_sym_const] = ACTIONS(3115), + [anon_sym_constexpr] = ACTIONS(3115), + [anon_sym_volatile] = ACTIONS(3115), + [anon_sym_restrict] = ACTIONS(3115), + [anon_sym___restrict__] = ACTIONS(3115), + [anon_sym__Atomic] = ACTIONS(3115), + [anon_sym__Noreturn] = ACTIONS(3115), + [anon_sym_noreturn] = ACTIONS(3115), + [anon_sym_mutable] = ACTIONS(3115), + [anon_sym_constinit] = ACTIONS(3115), + [anon_sym_consteval] = ACTIONS(3115), + [sym_primitive_type] = ACTIONS(3115), + [anon_sym_enum] = ACTIONS(3115), + [anon_sym_class] = ACTIONS(3115), + [anon_sym_struct] = ACTIONS(3115), + [anon_sym_union] = ACTIONS(3115), + [anon_sym_if] = ACTIONS(3115), + [anon_sym_else] = ACTIONS(3115), + [anon_sym_switch] = ACTIONS(3115), + [anon_sym_case] = ACTIONS(3115), + [anon_sym_default] = ACTIONS(3115), + [anon_sym_while] = ACTIONS(3115), + [anon_sym_do] = ACTIONS(3115), + [anon_sym_for] = ACTIONS(3115), + [anon_sym_return] = ACTIONS(3115), + [anon_sym_break] = ACTIONS(3115), + [anon_sym_continue] = ACTIONS(3115), + [anon_sym_goto] = ACTIONS(3115), + [anon_sym___try] = ACTIONS(3115), + [anon_sym___leave] = ACTIONS(3115), + [anon_sym_not] = ACTIONS(3115), + [anon_sym_compl] = ACTIONS(3115), + [anon_sym_DASH_DASH] = ACTIONS(3117), + [anon_sym_PLUS_PLUS] = ACTIONS(3117), + [anon_sym_sizeof] = ACTIONS(3115), + [anon_sym___alignof__] = ACTIONS(3115), + [anon_sym___alignof] = ACTIONS(3115), + [anon_sym__alignof] = ACTIONS(3115), + [anon_sym_alignof] = ACTIONS(3115), + [anon_sym__Alignof] = ACTIONS(3115), + [anon_sym_offsetof] = ACTIONS(3115), + [anon_sym__Generic] = ACTIONS(3115), + [anon_sym_asm] = ACTIONS(3115), + [anon_sym___asm__] = ACTIONS(3115), + [sym_number_literal] = ACTIONS(3117), + [anon_sym_L_SQUOTE] = ACTIONS(3117), + [anon_sym_u_SQUOTE] = ACTIONS(3117), + [anon_sym_U_SQUOTE] = ACTIONS(3117), + [anon_sym_u8_SQUOTE] = ACTIONS(3117), + [anon_sym_SQUOTE] = ACTIONS(3117), + [anon_sym_L_DQUOTE] = ACTIONS(3117), + [anon_sym_u_DQUOTE] = ACTIONS(3117), + [anon_sym_U_DQUOTE] = ACTIONS(3117), + [anon_sym_u8_DQUOTE] = ACTIONS(3117), + [anon_sym_DQUOTE] = ACTIONS(3117), + [sym_true] = ACTIONS(3115), + [sym_false] = ACTIONS(3115), + [anon_sym_NULL] = ACTIONS(3115), + [anon_sym_nullptr] = ACTIONS(3115), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3115), + [anon_sym_decltype] = ACTIONS(3115), + [anon_sym_virtual] = ACTIONS(3115), + [anon_sym_alignas] = ACTIONS(3115), + [anon_sym_explicit] = ACTIONS(3115), + [anon_sym_typename] = ACTIONS(3115), + [anon_sym_template] = ACTIONS(3115), + [anon_sym_operator] = ACTIONS(3115), + [anon_sym_try] = ACTIONS(3115), + [anon_sym_delete] = ACTIONS(3115), + [anon_sym_throw] = ACTIONS(3115), + [anon_sym_namespace] = ACTIONS(3115), + [anon_sym_using] = ACTIONS(3115), + [anon_sym_static_assert] = ACTIONS(3115), + [anon_sym_concept] = ACTIONS(3115), + [anon_sym_co_return] = ACTIONS(3115), + [anon_sym_co_yield] = ACTIONS(3115), + [anon_sym_R_DQUOTE] = ACTIONS(3117), + [anon_sym_LR_DQUOTE] = ACTIONS(3117), + [anon_sym_uR_DQUOTE] = ACTIONS(3117), + [anon_sym_UR_DQUOTE] = ACTIONS(3117), + [anon_sym_u8R_DQUOTE] = ACTIONS(3117), + [anon_sym_co_await] = ACTIONS(3115), + [anon_sym_new] = ACTIONS(3115), + [anon_sym_requires] = ACTIONS(3115), + [sym_this] = ACTIONS(3115), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3117), + [sym_semgrep_named_ellipsis] = ACTIONS(3117), }, [457] = { - [sym_identifier] = ACTIONS(3652), - [aux_sym_preproc_include_token1] = ACTIONS(3652), - [aux_sym_preproc_def_token1] = ACTIONS(3652), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3654), - [aux_sym_preproc_if_token1] = ACTIONS(3652), - [aux_sym_preproc_if_token2] = ACTIONS(3652), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3652), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3652), - [aux_sym_preproc_else_token1] = ACTIONS(3652), - [aux_sym_preproc_elif_token1] = ACTIONS(3652), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3652), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3652), - [sym_preproc_directive] = ACTIONS(3652), - [anon_sym_LPAREN2] = ACTIONS(3654), - [anon_sym_BANG] = ACTIONS(3654), - [anon_sym_TILDE] = ACTIONS(3654), - [anon_sym_DASH] = ACTIONS(3652), - [anon_sym_PLUS] = ACTIONS(3652), - [anon_sym_STAR] = ACTIONS(3654), - [anon_sym_AMP_AMP] = ACTIONS(3654), - [anon_sym_AMP] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3654), - [anon_sym___extension__] = ACTIONS(3652), - [anon_sym_typedef] = ACTIONS(3652), - [anon_sym_extern] = ACTIONS(3652), - [anon_sym___attribute__] = ACTIONS(3652), - [anon_sym_COLON_COLON] = ACTIONS(3654), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3654), - [anon_sym___declspec] = ACTIONS(3652), - [anon_sym___based] = ACTIONS(3652), - [anon_sym___cdecl] = ACTIONS(3652), - [anon_sym___clrcall] = ACTIONS(3652), - [anon_sym___stdcall] = ACTIONS(3652), - [anon_sym___fastcall] = ACTIONS(3652), - [anon_sym___thiscall] = ACTIONS(3652), - [anon_sym___vectorcall] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3654), - [anon_sym_signed] = ACTIONS(3652), - [anon_sym_unsigned] = ACTIONS(3652), - [anon_sym_long] = ACTIONS(3652), - [anon_sym_short] = ACTIONS(3652), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_static] = ACTIONS(3652), - [anon_sym_register] = ACTIONS(3652), - [anon_sym_inline] = ACTIONS(3652), - [anon_sym___inline] = ACTIONS(3652), - [anon_sym___inline__] = ACTIONS(3652), - [anon_sym___forceinline] = ACTIONS(3652), - [anon_sym_thread_local] = ACTIONS(3652), - [anon_sym___thread] = ACTIONS(3652), - [anon_sym_const] = ACTIONS(3652), - [anon_sym_constexpr] = ACTIONS(3652), - [anon_sym_volatile] = ACTIONS(3652), - [anon_sym_restrict] = ACTIONS(3652), - [anon_sym___restrict__] = ACTIONS(3652), - [anon_sym__Atomic] = ACTIONS(3652), - [anon_sym__Noreturn] = ACTIONS(3652), - [anon_sym_noreturn] = ACTIONS(3652), - [anon_sym_mutable] = ACTIONS(3652), - [anon_sym_constinit] = ACTIONS(3652), - [anon_sym_consteval] = ACTIONS(3652), - [sym_primitive_type] = ACTIONS(3652), - [anon_sym_enum] = ACTIONS(3652), - [anon_sym_class] = ACTIONS(3652), - [anon_sym_struct] = ACTIONS(3652), - [anon_sym_union] = ACTIONS(3652), - [anon_sym_if] = ACTIONS(3652), - [anon_sym_switch] = ACTIONS(3652), - [anon_sym_case] = ACTIONS(3652), - [anon_sym_default] = ACTIONS(3652), - [anon_sym_while] = ACTIONS(3652), - [anon_sym_do] = ACTIONS(3652), - [anon_sym_for] = ACTIONS(3652), - [anon_sym_return] = ACTIONS(3652), - [anon_sym_break] = ACTIONS(3652), - [anon_sym_continue] = ACTIONS(3652), - [anon_sym_goto] = ACTIONS(3652), - [anon_sym___try] = ACTIONS(3652), - [anon_sym___leave] = ACTIONS(3652), - [anon_sym_not] = ACTIONS(3652), - [anon_sym_compl] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3654), - [anon_sym_PLUS_PLUS] = ACTIONS(3654), - [anon_sym_sizeof] = ACTIONS(3652), - [anon_sym___alignof__] = ACTIONS(3652), - [anon_sym___alignof] = ACTIONS(3652), - [anon_sym__alignof] = ACTIONS(3652), - [anon_sym_alignof] = ACTIONS(3652), - [anon_sym__Alignof] = ACTIONS(3652), - [anon_sym_offsetof] = ACTIONS(3652), - [anon_sym__Generic] = ACTIONS(3652), - [anon_sym_asm] = ACTIONS(3652), - [anon_sym___asm__] = ACTIONS(3652), - [sym_number_literal] = ACTIONS(3654), - [anon_sym_L_SQUOTE] = ACTIONS(3654), - [anon_sym_u_SQUOTE] = ACTIONS(3654), - [anon_sym_U_SQUOTE] = ACTIONS(3654), - [anon_sym_u8_SQUOTE] = ACTIONS(3654), - [anon_sym_SQUOTE] = ACTIONS(3654), - [anon_sym_L_DQUOTE] = ACTIONS(3654), - [anon_sym_u_DQUOTE] = ACTIONS(3654), - [anon_sym_U_DQUOTE] = ACTIONS(3654), - [anon_sym_u8_DQUOTE] = ACTIONS(3654), - [anon_sym_DQUOTE] = ACTIONS(3654), - [sym_true] = ACTIONS(3652), - [sym_false] = ACTIONS(3652), - [anon_sym_NULL] = ACTIONS(3652), - [anon_sym_nullptr] = ACTIONS(3652), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3652), - [anon_sym_decltype] = ACTIONS(3652), - [anon_sym_virtual] = ACTIONS(3652), - [anon_sym_alignas] = ACTIONS(3652), - [anon_sym_explicit] = ACTIONS(3652), - [anon_sym_typename] = ACTIONS(3652), - [anon_sym_template] = ACTIONS(3652), - [anon_sym_operator] = ACTIONS(3652), - [anon_sym_try] = ACTIONS(3652), - [anon_sym_delete] = ACTIONS(3652), - [anon_sym_throw] = ACTIONS(3652), - [anon_sym_namespace] = ACTIONS(3652), - [anon_sym_using] = ACTIONS(3652), - [anon_sym_static_assert] = ACTIONS(3652), - [anon_sym_concept] = ACTIONS(3652), - [anon_sym_co_return] = ACTIONS(3652), - [anon_sym_co_yield] = ACTIONS(3652), - [anon_sym_R_DQUOTE] = ACTIONS(3654), - [anon_sym_LR_DQUOTE] = ACTIONS(3654), - [anon_sym_uR_DQUOTE] = ACTIONS(3654), - [anon_sym_UR_DQUOTE] = ACTIONS(3654), - [anon_sym_u8R_DQUOTE] = ACTIONS(3654), - [anon_sym_co_await] = ACTIONS(3652), - [anon_sym_new] = ACTIONS(3652), - [anon_sym_requires] = ACTIONS(3652), - [sym_this] = ACTIONS(3652), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3654), - [sym_semgrep_named_ellipsis] = ACTIONS(3654), + [sym_identifier] = ACTIONS(3107), + [aux_sym_preproc_include_token1] = ACTIONS(3107), + [aux_sym_preproc_def_token1] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3109), + [aux_sym_preproc_if_token1] = ACTIONS(3107), + [aux_sym_preproc_if_token2] = ACTIONS(3107), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3107), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3107), + [aux_sym_preproc_else_token1] = ACTIONS(3107), + [aux_sym_preproc_elif_token1] = ACTIONS(3107), + [sym_preproc_directive] = ACTIONS(3107), + [anon_sym_LPAREN2] = ACTIONS(3109), + [anon_sym_BANG] = ACTIONS(3109), + [anon_sym_TILDE] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_AMP] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym___extension__] = ACTIONS(3107), + [anon_sym_typedef] = ACTIONS(3107), + [anon_sym_extern] = ACTIONS(3107), + [anon_sym___attribute__] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(3109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3109), + [anon_sym___declspec] = ACTIONS(3107), + [anon_sym___based] = ACTIONS(3107), + [anon_sym___cdecl] = ACTIONS(3107), + [anon_sym___clrcall] = ACTIONS(3107), + [anon_sym___stdcall] = ACTIONS(3107), + [anon_sym___fastcall] = ACTIONS(3107), + [anon_sym___thiscall] = ACTIONS(3107), + [anon_sym___vectorcall] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(3109), + [anon_sym_signed] = ACTIONS(3107), + [anon_sym_unsigned] = ACTIONS(3107), + [anon_sym_long] = ACTIONS(3107), + [anon_sym_short] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3107), + [anon_sym_static] = ACTIONS(3107), + [anon_sym_register] = ACTIONS(3107), + [anon_sym_inline] = ACTIONS(3107), + [anon_sym___inline] = ACTIONS(3107), + [anon_sym___inline__] = ACTIONS(3107), + [anon_sym___forceinline] = ACTIONS(3107), + [anon_sym_thread_local] = ACTIONS(3107), + [anon_sym___thread] = ACTIONS(3107), + [anon_sym_const] = ACTIONS(3107), + [anon_sym_constexpr] = ACTIONS(3107), + [anon_sym_volatile] = ACTIONS(3107), + [anon_sym_restrict] = ACTIONS(3107), + [anon_sym___restrict__] = ACTIONS(3107), + [anon_sym__Atomic] = ACTIONS(3107), + [anon_sym__Noreturn] = ACTIONS(3107), + [anon_sym_noreturn] = ACTIONS(3107), + [anon_sym_mutable] = ACTIONS(3107), + [anon_sym_constinit] = ACTIONS(3107), + [anon_sym_consteval] = ACTIONS(3107), + [sym_primitive_type] = ACTIONS(3107), + [anon_sym_enum] = ACTIONS(3107), + [anon_sym_class] = ACTIONS(3107), + [anon_sym_struct] = ACTIONS(3107), + [anon_sym_union] = ACTIONS(3107), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_else] = 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___try] = ACTIONS(3107), + [anon_sym___leave] = ACTIONS(3107), + [anon_sym_not] = ACTIONS(3107), + [anon_sym_compl] = ACTIONS(3107), + [anon_sym_DASH_DASH] = ACTIONS(3109), + [anon_sym_PLUS_PLUS] = ACTIONS(3109), + [anon_sym_sizeof] = ACTIONS(3107), + [anon_sym___alignof__] = ACTIONS(3107), + [anon_sym___alignof] = ACTIONS(3107), + [anon_sym__alignof] = ACTIONS(3107), + [anon_sym_alignof] = ACTIONS(3107), + [anon_sym__Alignof] = ACTIONS(3107), + [anon_sym_offsetof] = ACTIONS(3107), + [anon_sym__Generic] = ACTIONS(3107), + [anon_sym_asm] = ACTIONS(3107), + [anon_sym___asm__] = ACTIONS(3107), + [sym_number_literal] = ACTIONS(3109), + [anon_sym_L_SQUOTE] = ACTIONS(3109), + [anon_sym_u_SQUOTE] = ACTIONS(3109), + [anon_sym_U_SQUOTE] = ACTIONS(3109), + [anon_sym_u8_SQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3109), + [anon_sym_L_DQUOTE] = ACTIONS(3109), + [anon_sym_u_DQUOTE] = ACTIONS(3109), + [anon_sym_U_DQUOTE] = ACTIONS(3109), + [anon_sym_u8_DQUOTE] = ACTIONS(3109), + [anon_sym_DQUOTE] = ACTIONS(3109), + [sym_true] = ACTIONS(3107), + [sym_false] = ACTIONS(3107), + [anon_sym_NULL] = ACTIONS(3107), + [anon_sym_nullptr] = ACTIONS(3107), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3107), + [anon_sym_decltype] = ACTIONS(3107), + [anon_sym_virtual] = ACTIONS(3107), + [anon_sym_alignas] = ACTIONS(3107), + [anon_sym_explicit] = ACTIONS(3107), + [anon_sym_typename] = ACTIONS(3107), + [anon_sym_template] = ACTIONS(3107), + [anon_sym_operator] = ACTIONS(3107), + [anon_sym_try] = ACTIONS(3107), + [anon_sym_delete] = ACTIONS(3107), + [anon_sym_throw] = ACTIONS(3107), + [anon_sym_namespace] = ACTIONS(3107), + [anon_sym_using] = ACTIONS(3107), + [anon_sym_static_assert] = ACTIONS(3107), + [anon_sym_concept] = ACTIONS(3107), + [anon_sym_co_return] = ACTIONS(3107), + [anon_sym_co_yield] = ACTIONS(3107), + [anon_sym_R_DQUOTE] = ACTIONS(3109), + [anon_sym_LR_DQUOTE] = ACTIONS(3109), + [anon_sym_uR_DQUOTE] = ACTIONS(3109), + [anon_sym_UR_DQUOTE] = ACTIONS(3109), + [anon_sym_u8R_DQUOTE] = ACTIONS(3109), + [anon_sym_co_await] = ACTIONS(3107), + [anon_sym_new] = ACTIONS(3107), + [anon_sym_requires] = ACTIONS(3107), + [sym_this] = ACTIONS(3107), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3109), + [sym_semgrep_named_ellipsis] = ACTIONS(3109), }, [458] = { - [ts_builtin_sym_end] = ACTIONS(3080), - [sym_identifier] = ACTIONS(3078), - [aux_sym_preproc_include_token1] = ACTIONS(3078), - [aux_sym_preproc_def_token1] = ACTIONS(3078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3080), - [aux_sym_preproc_if_token1] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3078), - [sym_preproc_directive] = ACTIONS(3078), - [anon_sym_LPAREN2] = ACTIONS(3080), - [anon_sym_BANG] = ACTIONS(3080), - [anon_sym_TILDE] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym_SEMI] = ACTIONS(3080), - [anon_sym___extension__] = ACTIONS(3078), - [anon_sym_typedef] = ACTIONS(3078), - [anon_sym_extern] = ACTIONS(3078), - [anon_sym___attribute__] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3080), - [anon_sym___declspec] = ACTIONS(3078), - [anon_sym___based] = ACTIONS(3078), - [anon_sym___cdecl] = ACTIONS(3078), - [anon_sym___clrcall] = ACTIONS(3078), - [anon_sym___stdcall] = ACTIONS(3078), - [anon_sym___fastcall] = ACTIONS(3078), - [anon_sym___thiscall] = ACTIONS(3078), - [anon_sym___vectorcall] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_signed] = ACTIONS(3078), - [anon_sym_unsigned] = ACTIONS(3078), - [anon_sym_long] = ACTIONS(3078), - [anon_sym_short] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_static] = ACTIONS(3078), - [anon_sym_register] = ACTIONS(3078), - [anon_sym_inline] = ACTIONS(3078), - [anon_sym___inline] = ACTIONS(3078), - [anon_sym___inline__] = ACTIONS(3078), - [anon_sym___forceinline] = ACTIONS(3078), - [anon_sym_thread_local] = ACTIONS(3078), - [anon_sym___thread] = ACTIONS(3078), - [anon_sym_const] = ACTIONS(3078), - [anon_sym_constexpr] = ACTIONS(3078), - [anon_sym_volatile] = ACTIONS(3078), - [anon_sym_restrict] = ACTIONS(3078), - [anon_sym___restrict__] = ACTIONS(3078), - [anon_sym__Atomic] = ACTIONS(3078), - [anon_sym__Noreturn] = ACTIONS(3078), - [anon_sym_noreturn] = ACTIONS(3078), - [anon_sym_mutable] = ACTIONS(3078), - [anon_sym_constinit] = ACTIONS(3078), - [anon_sym_consteval] = ACTIONS(3078), - [sym_primitive_type] = ACTIONS(3078), - [anon_sym_enum] = ACTIONS(3078), - [anon_sym_class] = ACTIONS(3078), - [anon_sym_struct] = ACTIONS(3078), - [anon_sym_union] = ACTIONS(3078), - [anon_sym_if] = ACTIONS(3078), - [anon_sym_else] = ACTIONS(3078), - [anon_sym_switch] = ACTIONS(3078), - [anon_sym_case] = ACTIONS(3078), - [anon_sym_default] = ACTIONS(3078), - [anon_sym_while] = ACTIONS(3078), - [anon_sym_do] = ACTIONS(3078), - [anon_sym_for] = ACTIONS(3078), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_break] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(3078), - [anon_sym_goto] = ACTIONS(3078), - [anon_sym___try] = ACTIONS(3078), - [anon_sym___except] = ACTIONS(3078), - [anon_sym___finally] = ACTIONS(3078), - [anon_sym___leave] = ACTIONS(3078), - [anon_sym_not] = ACTIONS(3078), - [anon_sym_compl] = ACTIONS(3078), - [anon_sym_DASH_DASH] = ACTIONS(3080), - [anon_sym_PLUS_PLUS] = ACTIONS(3080), - [anon_sym_sizeof] = ACTIONS(3078), - [anon_sym___alignof__] = ACTIONS(3078), - [anon_sym___alignof] = ACTIONS(3078), - [anon_sym__alignof] = ACTIONS(3078), - [anon_sym_alignof] = ACTIONS(3078), - [anon_sym__Alignof] = ACTIONS(3078), - [anon_sym_offsetof] = ACTIONS(3078), - [anon_sym__Generic] = ACTIONS(3078), - [anon_sym_asm] = ACTIONS(3078), - [anon_sym___asm__] = ACTIONS(3078), - [sym_number_literal] = ACTIONS(3080), - [anon_sym_L_SQUOTE] = ACTIONS(3080), - [anon_sym_u_SQUOTE] = ACTIONS(3080), - [anon_sym_U_SQUOTE] = ACTIONS(3080), - [anon_sym_u8_SQUOTE] = ACTIONS(3080), - [anon_sym_SQUOTE] = ACTIONS(3080), - [anon_sym_L_DQUOTE] = ACTIONS(3080), - [anon_sym_u_DQUOTE] = ACTIONS(3080), - [anon_sym_U_DQUOTE] = ACTIONS(3080), - [anon_sym_u8_DQUOTE] = ACTIONS(3080), - [anon_sym_DQUOTE] = ACTIONS(3080), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [anon_sym_NULL] = ACTIONS(3078), - [anon_sym_nullptr] = ACTIONS(3078), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3078), - [anon_sym_decltype] = ACTIONS(3078), - [anon_sym_virtual] = ACTIONS(3078), - [anon_sym_alignas] = ACTIONS(3078), - [anon_sym_explicit] = ACTIONS(3078), - [anon_sym_typename] = ACTIONS(3078), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_operator] = ACTIONS(3078), - [anon_sym_try] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3078), - [anon_sym_throw] = ACTIONS(3078), - [anon_sym_namespace] = ACTIONS(3078), - [anon_sym_using] = ACTIONS(3078), - [anon_sym_static_assert] = ACTIONS(3078), - [anon_sym_concept] = ACTIONS(3078), - [anon_sym_co_return] = ACTIONS(3078), - [anon_sym_co_yield] = ACTIONS(3078), - [anon_sym_catch] = ACTIONS(3078), - [anon_sym_R_DQUOTE] = ACTIONS(3080), - [anon_sym_LR_DQUOTE] = ACTIONS(3080), - [anon_sym_uR_DQUOTE] = ACTIONS(3080), - [anon_sym_UR_DQUOTE] = ACTIONS(3080), - [anon_sym_u8R_DQUOTE] = ACTIONS(3080), - [anon_sym_co_await] = ACTIONS(3078), - [anon_sym_new] = ACTIONS(3078), - [anon_sym_requires] = ACTIONS(3078), - [sym_this] = ACTIONS(3078), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3080), - [sym_semgrep_named_ellipsis] = ACTIONS(3080), + [sym_identifier] = ACTIONS(3111), + [aux_sym_preproc_include_token1] = ACTIONS(3111), + [aux_sym_preproc_def_token1] = ACTIONS(3111), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3113), + [aux_sym_preproc_if_token1] = ACTIONS(3111), + [aux_sym_preproc_if_token2] = ACTIONS(3111), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3111), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3111), + [aux_sym_preproc_else_token1] = ACTIONS(3111), + [aux_sym_preproc_elif_token1] = ACTIONS(3111), + [sym_preproc_directive] = ACTIONS(3111), + [anon_sym_LPAREN2] = ACTIONS(3113), + [anon_sym_BANG] = ACTIONS(3113), + [anon_sym_TILDE] = ACTIONS(3113), + [anon_sym_DASH] = ACTIONS(3111), + [anon_sym_PLUS] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_AMP_AMP] = ACTIONS(3113), + [anon_sym_AMP] = ACTIONS(3111), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym___extension__] = ACTIONS(3111), + [anon_sym_typedef] = ACTIONS(3111), + [anon_sym_extern] = ACTIONS(3111), + [anon_sym___attribute__] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(3113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3113), + [anon_sym___declspec] = ACTIONS(3111), + [anon_sym___based] = ACTIONS(3111), + [anon_sym___cdecl] = ACTIONS(3111), + [anon_sym___clrcall] = ACTIONS(3111), + [anon_sym___stdcall] = ACTIONS(3111), + [anon_sym___fastcall] = ACTIONS(3111), + [anon_sym___thiscall] = ACTIONS(3111), + [anon_sym___vectorcall] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_signed] = ACTIONS(3111), + [anon_sym_unsigned] = ACTIONS(3111), + [anon_sym_long] = ACTIONS(3111), + [anon_sym_short] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3111), + [anon_sym_static] = ACTIONS(3111), + [anon_sym_register] = ACTIONS(3111), + [anon_sym_inline] = ACTIONS(3111), + [anon_sym___inline] = ACTIONS(3111), + [anon_sym___inline__] = ACTIONS(3111), + [anon_sym___forceinline] = ACTIONS(3111), + [anon_sym_thread_local] = ACTIONS(3111), + [anon_sym___thread] = ACTIONS(3111), + [anon_sym_const] = ACTIONS(3111), + [anon_sym_constexpr] = ACTIONS(3111), + [anon_sym_volatile] = ACTIONS(3111), + [anon_sym_restrict] = ACTIONS(3111), + [anon_sym___restrict__] = ACTIONS(3111), + [anon_sym__Atomic] = ACTIONS(3111), + [anon_sym__Noreturn] = ACTIONS(3111), + [anon_sym_noreturn] = ACTIONS(3111), + [anon_sym_mutable] = ACTIONS(3111), + [anon_sym_constinit] = ACTIONS(3111), + [anon_sym_consteval] = ACTIONS(3111), + [sym_primitive_type] = ACTIONS(3111), + [anon_sym_enum] = ACTIONS(3111), + [anon_sym_class] = ACTIONS(3111), + [anon_sym_struct] = ACTIONS(3111), + [anon_sym_union] = ACTIONS(3111), + [anon_sym_if] = ACTIONS(3111), + [anon_sym_else] = ACTIONS(3111), + [anon_sym_switch] = ACTIONS(3111), + [anon_sym_case] = ACTIONS(3111), + [anon_sym_default] = ACTIONS(3111), + [anon_sym_while] = ACTIONS(3111), + [anon_sym_do] = ACTIONS(3111), + [anon_sym_for] = ACTIONS(3111), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_break] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(3111), + [anon_sym_goto] = ACTIONS(3111), + [anon_sym___try] = ACTIONS(3111), + [anon_sym___leave] = ACTIONS(3111), + [anon_sym_not] = ACTIONS(3111), + [anon_sym_compl] = ACTIONS(3111), + [anon_sym_DASH_DASH] = ACTIONS(3113), + [anon_sym_PLUS_PLUS] = ACTIONS(3113), + [anon_sym_sizeof] = ACTIONS(3111), + [anon_sym___alignof__] = ACTIONS(3111), + [anon_sym___alignof] = ACTIONS(3111), + [anon_sym__alignof] = ACTIONS(3111), + [anon_sym_alignof] = ACTIONS(3111), + [anon_sym__Alignof] = ACTIONS(3111), + [anon_sym_offsetof] = ACTIONS(3111), + [anon_sym__Generic] = ACTIONS(3111), + [anon_sym_asm] = ACTIONS(3111), + [anon_sym___asm__] = ACTIONS(3111), + [sym_number_literal] = ACTIONS(3113), + [anon_sym_L_SQUOTE] = ACTIONS(3113), + [anon_sym_u_SQUOTE] = ACTIONS(3113), + [anon_sym_U_SQUOTE] = ACTIONS(3113), + [anon_sym_u8_SQUOTE] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3113), + [anon_sym_L_DQUOTE] = ACTIONS(3113), + [anon_sym_u_DQUOTE] = ACTIONS(3113), + [anon_sym_U_DQUOTE] = ACTIONS(3113), + [anon_sym_u8_DQUOTE] = ACTIONS(3113), + [anon_sym_DQUOTE] = ACTIONS(3113), + [sym_true] = ACTIONS(3111), + [sym_false] = ACTIONS(3111), + [anon_sym_NULL] = ACTIONS(3111), + [anon_sym_nullptr] = ACTIONS(3111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3111), + [anon_sym_decltype] = ACTIONS(3111), + [anon_sym_virtual] = ACTIONS(3111), + [anon_sym_alignas] = ACTIONS(3111), + [anon_sym_explicit] = ACTIONS(3111), + [anon_sym_typename] = ACTIONS(3111), + [anon_sym_template] = ACTIONS(3111), + [anon_sym_operator] = ACTIONS(3111), + [anon_sym_try] = ACTIONS(3111), + [anon_sym_delete] = ACTIONS(3111), + [anon_sym_throw] = ACTIONS(3111), + [anon_sym_namespace] = ACTIONS(3111), + [anon_sym_using] = ACTIONS(3111), + [anon_sym_static_assert] = ACTIONS(3111), + [anon_sym_concept] = ACTIONS(3111), + [anon_sym_co_return] = ACTIONS(3111), + [anon_sym_co_yield] = ACTIONS(3111), + [anon_sym_R_DQUOTE] = ACTIONS(3113), + [anon_sym_LR_DQUOTE] = ACTIONS(3113), + [anon_sym_uR_DQUOTE] = ACTIONS(3113), + [anon_sym_UR_DQUOTE] = ACTIONS(3113), + [anon_sym_u8R_DQUOTE] = ACTIONS(3113), + [anon_sym_co_await] = ACTIONS(3111), + [anon_sym_new] = ACTIONS(3111), + [anon_sym_requires] = ACTIONS(3111), + [sym_this] = ACTIONS(3111), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3113), + [sym_semgrep_named_ellipsis] = ACTIONS(3113), }, [459] = { - [sym_catch_clause] = STATE(353), - [aux_sym_constructor_try_statement_repeat1] = STATE(353), - [sym_identifier] = ACTIONS(3070), - [aux_sym_preproc_include_token1] = ACTIONS(3070), - [aux_sym_preproc_def_token1] = ACTIONS(3070), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3072), - [aux_sym_preproc_if_token1] = ACTIONS(3070), - [aux_sym_preproc_if_token2] = ACTIONS(3070), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3070), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3070), - [sym_preproc_directive] = ACTIONS(3070), - [anon_sym_LPAREN2] = ACTIONS(3072), - [anon_sym_BANG] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_AMP] = ACTIONS(3070), - [anon_sym_SEMI] = ACTIONS(3072), - [anon_sym___extension__] = ACTIONS(3070), - [anon_sym_typedef] = ACTIONS(3070), - [anon_sym_extern] = ACTIONS(3070), - [anon_sym___attribute__] = ACTIONS(3070), - [anon_sym_COLON_COLON] = ACTIONS(3072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3072), - [anon_sym___declspec] = ACTIONS(3070), - [anon_sym___based] = ACTIONS(3070), - [anon_sym___cdecl] = ACTIONS(3070), - [anon_sym___clrcall] = ACTIONS(3070), - [anon_sym___stdcall] = ACTIONS(3070), - [anon_sym___fastcall] = ACTIONS(3070), - [anon_sym___thiscall] = ACTIONS(3070), - [anon_sym___vectorcall] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_signed] = ACTIONS(3070), - [anon_sym_unsigned] = ACTIONS(3070), - [anon_sym_long] = ACTIONS(3070), - [anon_sym_short] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(3070), - [anon_sym_static] = ACTIONS(3070), - [anon_sym_register] = ACTIONS(3070), - [anon_sym_inline] = ACTIONS(3070), - [anon_sym___inline] = ACTIONS(3070), - [anon_sym___inline__] = ACTIONS(3070), - [anon_sym___forceinline] = ACTIONS(3070), - [anon_sym_thread_local] = ACTIONS(3070), - [anon_sym___thread] = ACTIONS(3070), - [anon_sym_const] = ACTIONS(3070), - [anon_sym_constexpr] = ACTIONS(3070), - [anon_sym_volatile] = ACTIONS(3070), - [anon_sym_restrict] = ACTIONS(3070), - [anon_sym___restrict__] = ACTIONS(3070), - [anon_sym__Atomic] = ACTIONS(3070), - [anon_sym__Noreturn] = ACTIONS(3070), - [anon_sym_noreturn] = ACTIONS(3070), - [anon_sym_mutable] = ACTIONS(3070), - [anon_sym_constinit] = ACTIONS(3070), - [anon_sym_consteval] = ACTIONS(3070), - [sym_primitive_type] = ACTIONS(3070), - [anon_sym_enum] = ACTIONS(3070), - [anon_sym_class] = ACTIONS(3070), - [anon_sym_struct] = ACTIONS(3070), - [anon_sym_union] = ACTIONS(3070), - [anon_sym_if] = ACTIONS(3070), - [anon_sym_switch] = ACTIONS(3070), - [anon_sym_case] = ACTIONS(3070), - [anon_sym_default] = ACTIONS(3070), - [anon_sym_while] = ACTIONS(3070), - [anon_sym_do] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3070), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_break] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(3070), - [anon_sym_goto] = ACTIONS(3070), - [anon_sym___try] = ACTIONS(3070), - [anon_sym___leave] = ACTIONS(3070), - [anon_sym_not] = ACTIONS(3070), - [anon_sym_compl] = ACTIONS(3070), - [anon_sym_DASH_DASH] = ACTIONS(3072), - [anon_sym_PLUS_PLUS] = ACTIONS(3072), - [anon_sym_sizeof] = ACTIONS(3070), - [anon_sym___alignof__] = ACTIONS(3070), - [anon_sym___alignof] = ACTIONS(3070), - [anon_sym__alignof] = ACTIONS(3070), - [anon_sym_alignof] = ACTIONS(3070), - [anon_sym__Alignof] = ACTIONS(3070), - [anon_sym_offsetof] = ACTIONS(3070), - [anon_sym__Generic] = ACTIONS(3070), - [anon_sym_asm] = ACTIONS(3070), - [anon_sym___asm__] = ACTIONS(3070), - [sym_number_literal] = ACTIONS(3072), - [anon_sym_L_SQUOTE] = ACTIONS(3072), - [anon_sym_u_SQUOTE] = ACTIONS(3072), - [anon_sym_U_SQUOTE] = ACTIONS(3072), - [anon_sym_u8_SQUOTE] = ACTIONS(3072), - [anon_sym_SQUOTE] = ACTIONS(3072), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3070), - [sym_false] = ACTIONS(3070), - [anon_sym_NULL] = ACTIONS(3070), - [anon_sym_nullptr] = ACTIONS(3070), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3070), - [anon_sym_decltype] = ACTIONS(3070), - [anon_sym_virtual] = ACTIONS(3070), - [anon_sym_alignas] = ACTIONS(3070), - [anon_sym_explicit] = ACTIONS(3070), - [anon_sym_typename] = ACTIONS(3070), - [anon_sym_template] = ACTIONS(3070), - [anon_sym_operator] = ACTIONS(3070), - [anon_sym_try] = ACTIONS(3070), - [anon_sym_delete] = ACTIONS(3070), - [anon_sym_throw] = ACTIONS(3070), - [anon_sym_namespace] = ACTIONS(3070), - [anon_sym_using] = ACTIONS(3070), - [anon_sym_static_assert] = ACTIONS(3070), - [anon_sym_concept] = ACTIONS(3070), - [anon_sym_co_return] = ACTIONS(3070), - [anon_sym_co_yield] = ACTIONS(3070), - [anon_sym_catch] = ACTIONS(3570), - [anon_sym_R_DQUOTE] = ACTIONS(3072), - [anon_sym_LR_DQUOTE] = ACTIONS(3072), - [anon_sym_uR_DQUOTE] = ACTIONS(3072), - [anon_sym_UR_DQUOTE] = ACTIONS(3072), - [anon_sym_u8R_DQUOTE] = ACTIONS(3072), - [anon_sym_co_await] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3070), - [anon_sym_requires] = ACTIONS(3070), - [sym_this] = ACTIONS(3070), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3072), - [sym_semgrep_named_ellipsis] = ACTIONS(3072), + [sym_catch_clause] = STATE(348), + [aux_sym_constructor_try_statement_repeat1] = STATE(348), + [sym_identifier] = ACTIONS(3056), + [aux_sym_preproc_include_token1] = ACTIONS(3056), + [aux_sym_preproc_def_token1] = ACTIONS(3056), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3058), + [aux_sym_preproc_if_token1] = ACTIONS(3056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3056), + [sym_preproc_directive] = ACTIONS(3056), + [anon_sym_LPAREN2] = ACTIONS(3058), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3058), + [anon_sym_DASH] = ACTIONS(3056), + [anon_sym_PLUS] = ACTIONS(3056), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_AMP_AMP] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3056), + [anon_sym_SEMI] = ACTIONS(3058), + [anon_sym___extension__] = ACTIONS(3056), + [anon_sym_typedef] = ACTIONS(3056), + [anon_sym_extern] = ACTIONS(3056), + [anon_sym___attribute__] = ACTIONS(3056), + [anon_sym_COLON_COLON] = ACTIONS(3058), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3058), + [anon_sym___declspec] = ACTIONS(3056), + [anon_sym___based] = ACTIONS(3056), + [anon_sym___cdecl] = ACTIONS(3056), + [anon_sym___clrcall] = ACTIONS(3056), + [anon_sym___stdcall] = ACTIONS(3056), + [anon_sym___fastcall] = ACTIONS(3056), + [anon_sym___thiscall] = ACTIONS(3056), + [anon_sym___vectorcall] = ACTIONS(3056), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_RBRACE] = ACTIONS(3058), + [anon_sym_signed] = ACTIONS(3056), + [anon_sym_unsigned] = ACTIONS(3056), + [anon_sym_long] = ACTIONS(3056), + [anon_sym_short] = ACTIONS(3056), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_static] = ACTIONS(3056), + [anon_sym_register] = ACTIONS(3056), + [anon_sym_inline] = ACTIONS(3056), + [anon_sym___inline] = ACTIONS(3056), + [anon_sym___inline__] = ACTIONS(3056), + [anon_sym___forceinline] = ACTIONS(3056), + [anon_sym_thread_local] = ACTIONS(3056), + [anon_sym___thread] = ACTIONS(3056), + [anon_sym_const] = ACTIONS(3056), + [anon_sym_constexpr] = ACTIONS(3056), + [anon_sym_volatile] = ACTIONS(3056), + [anon_sym_restrict] = ACTIONS(3056), + [anon_sym___restrict__] = ACTIONS(3056), + [anon_sym__Atomic] = ACTIONS(3056), + [anon_sym__Noreturn] = ACTIONS(3056), + [anon_sym_noreturn] = ACTIONS(3056), + [anon_sym_mutable] = ACTIONS(3056), + [anon_sym_constinit] = ACTIONS(3056), + [anon_sym_consteval] = ACTIONS(3056), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3056), + [anon_sym_class] = ACTIONS(3056), + [anon_sym_struct] = ACTIONS(3056), + [anon_sym_union] = ACTIONS(3056), + [anon_sym_if] = ACTIONS(3056), + [anon_sym_switch] = ACTIONS(3056), + [anon_sym_case] = ACTIONS(3056), + [anon_sym_default] = ACTIONS(3056), + [anon_sym_while] = ACTIONS(3056), + [anon_sym_do] = ACTIONS(3056), + [anon_sym_for] = ACTIONS(3056), + [anon_sym_return] = ACTIONS(3056), + [anon_sym_break] = ACTIONS(3056), + [anon_sym_continue] = ACTIONS(3056), + [anon_sym_goto] = ACTIONS(3056), + [anon_sym___try] = ACTIONS(3056), + [anon_sym___leave] = ACTIONS(3056), + [anon_sym_not] = ACTIONS(3056), + [anon_sym_compl] = ACTIONS(3056), + [anon_sym_DASH_DASH] = ACTIONS(3058), + [anon_sym_PLUS_PLUS] = ACTIONS(3058), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3056), + [anon_sym___alignof] = ACTIONS(3056), + [anon_sym__alignof] = ACTIONS(3056), + [anon_sym_alignof] = ACTIONS(3056), + [anon_sym__Alignof] = ACTIONS(3056), + [anon_sym_offsetof] = ACTIONS(3056), + [anon_sym__Generic] = ACTIONS(3056), + [anon_sym_asm] = ACTIONS(3056), + [anon_sym___asm__] = ACTIONS(3056), + [sym_number_literal] = ACTIONS(3058), + [anon_sym_L_SQUOTE] = ACTIONS(3058), + [anon_sym_u_SQUOTE] = ACTIONS(3058), + [anon_sym_U_SQUOTE] = ACTIONS(3058), + [anon_sym_u8_SQUOTE] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [anon_sym_NULL] = ACTIONS(3056), + [anon_sym_nullptr] = ACTIONS(3056), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3056), + [anon_sym_decltype] = ACTIONS(3056), + [anon_sym_virtual] = ACTIONS(3056), + [anon_sym_alignas] = ACTIONS(3056), + [anon_sym_explicit] = ACTIONS(3056), + [anon_sym_typename] = ACTIONS(3056), + [anon_sym_template] = ACTIONS(3056), + [anon_sym_operator] = ACTIONS(3056), + [anon_sym_try] = ACTIONS(3056), + [anon_sym_delete] = ACTIONS(3056), + [anon_sym_throw] = ACTIONS(3056), + [anon_sym_namespace] = ACTIONS(3056), + [anon_sym_using] = ACTIONS(3056), + [anon_sym_static_assert] = ACTIONS(3056), + [anon_sym_concept] = ACTIONS(3056), + [anon_sym_co_return] = ACTIONS(3056), + [anon_sym_co_yield] = ACTIONS(3056), + [anon_sym_catch] = ACTIONS(3643), + [anon_sym_R_DQUOTE] = ACTIONS(3058), + [anon_sym_LR_DQUOTE] = ACTIONS(3058), + [anon_sym_uR_DQUOTE] = ACTIONS(3058), + [anon_sym_UR_DQUOTE] = ACTIONS(3058), + [anon_sym_u8R_DQUOTE] = ACTIONS(3058), + [anon_sym_co_await] = ACTIONS(3056), + [anon_sym_new] = ACTIONS(3056), + [anon_sym_requires] = ACTIONS(3056), + [sym_this] = ACTIONS(3056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3058), + [sym_semgrep_named_ellipsis] = ACTIONS(3058), }, [460] = { - [sym_expression] = STATE(5578), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(3656), - [anon_sym_extern] = ACTIONS(3656), - [anon_sym___attribute__] = ACTIONS(3656), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3658), - [anon_sym___declspec] = ACTIONS(3656), - [anon_sym_signed] = ACTIONS(3656), - [anon_sym_unsigned] = ACTIONS(3656), - [anon_sym_long] = ACTIONS(3656), - [anon_sym_short] = ACTIONS(3656), - [anon_sym_LBRACK] = ACTIONS(1536), - [anon_sym_static] = ACTIONS(3656), - [anon_sym_register] = ACTIONS(3656), - [anon_sym_inline] = ACTIONS(3656), - [anon_sym___inline] = ACTIONS(3656), - [anon_sym___inline__] = ACTIONS(3656), - [anon_sym___forceinline] = ACTIONS(3656), - [anon_sym_thread_local] = ACTIONS(3656), - [anon_sym___thread] = ACTIONS(3656), - [anon_sym_const] = ACTIONS(3656), - [anon_sym_constexpr] = ACTIONS(3656), - [anon_sym_volatile] = ACTIONS(3656), - [anon_sym_restrict] = ACTIONS(3656), - [anon_sym___restrict__] = ACTIONS(3656), - [anon_sym__Atomic] = ACTIONS(3656), - [anon_sym__Noreturn] = ACTIONS(3656), - [anon_sym_noreturn] = ACTIONS(3656), - [anon_sym_mutable] = ACTIONS(3656), - [anon_sym_constinit] = ACTIONS(3656), - [anon_sym_consteval] = ACTIONS(3656), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_enum] = ACTIONS(3656), - [anon_sym_class] = ACTIONS(3656), - [anon_sym_struct] = ACTIONS(3656), - [anon_sym_union] = ACTIONS(3656), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3656), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_virtual] = ACTIONS(3656), - [anon_sym_alignas] = ACTIONS(3656), - [anon_sym_typename] = ACTIONS(3656), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), + [sym_identifier] = ACTIONS(3099), + [aux_sym_preproc_include_token1] = ACTIONS(3099), + [aux_sym_preproc_def_token1] = ACTIONS(3099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3101), + [aux_sym_preproc_if_token1] = ACTIONS(3099), + [aux_sym_preproc_if_token2] = ACTIONS(3099), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3099), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3099), + [aux_sym_preproc_else_token1] = ACTIONS(3099), + [aux_sym_preproc_elif_token1] = ACTIONS(3099), + [sym_preproc_directive] = ACTIONS(3099), + [anon_sym_LPAREN2] = ACTIONS(3101), + [anon_sym_BANG] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3101), + [anon_sym_DASH] = ACTIONS(3099), + [anon_sym_PLUS] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_AMP_AMP] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym_SEMI] = ACTIONS(3101), + [anon_sym___extension__] = ACTIONS(3099), + [anon_sym_typedef] = ACTIONS(3099), + [anon_sym_extern] = ACTIONS(3099), + [anon_sym___attribute__] = ACTIONS(3099), + [anon_sym_COLON_COLON] = ACTIONS(3101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3101), + [anon_sym___declspec] = ACTIONS(3099), + [anon_sym___based] = ACTIONS(3099), + [anon_sym___cdecl] = ACTIONS(3099), + [anon_sym___clrcall] = ACTIONS(3099), + [anon_sym___stdcall] = ACTIONS(3099), + [anon_sym___fastcall] = ACTIONS(3099), + [anon_sym___thiscall] = ACTIONS(3099), + [anon_sym___vectorcall] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(3101), + [anon_sym_signed] = ACTIONS(3099), + [anon_sym_unsigned] = ACTIONS(3099), + [anon_sym_long] = ACTIONS(3099), + [anon_sym_short] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3099), + [anon_sym_register] = ACTIONS(3099), + [anon_sym_inline] = ACTIONS(3099), + [anon_sym___inline] = ACTIONS(3099), + [anon_sym___inline__] = ACTIONS(3099), + [anon_sym___forceinline] = ACTIONS(3099), + [anon_sym_thread_local] = ACTIONS(3099), + [anon_sym___thread] = ACTIONS(3099), + [anon_sym_const] = ACTIONS(3099), + [anon_sym_constexpr] = ACTIONS(3099), + [anon_sym_volatile] = ACTIONS(3099), + [anon_sym_restrict] = ACTIONS(3099), + [anon_sym___restrict__] = ACTIONS(3099), + [anon_sym__Atomic] = ACTIONS(3099), + [anon_sym__Noreturn] = ACTIONS(3099), + [anon_sym_noreturn] = ACTIONS(3099), + [anon_sym_mutable] = ACTIONS(3099), + [anon_sym_constinit] = ACTIONS(3099), + [anon_sym_consteval] = ACTIONS(3099), + [sym_primitive_type] = ACTIONS(3099), + [anon_sym_enum] = ACTIONS(3099), + [anon_sym_class] = ACTIONS(3099), + [anon_sym_struct] = ACTIONS(3099), + [anon_sym_union] = ACTIONS(3099), + [anon_sym_if] = ACTIONS(3099), + [anon_sym_else] = ACTIONS(3099), + [anon_sym_switch] = ACTIONS(3099), + [anon_sym_case] = ACTIONS(3099), + [anon_sym_default] = ACTIONS(3099), + [anon_sym_while] = ACTIONS(3099), + [anon_sym_do] = ACTIONS(3099), + [anon_sym_for] = ACTIONS(3099), + [anon_sym_return] = ACTIONS(3099), + [anon_sym_break] = ACTIONS(3099), + [anon_sym_continue] = ACTIONS(3099), + [anon_sym_goto] = ACTIONS(3099), + [anon_sym___try] = ACTIONS(3099), + [anon_sym___leave] = ACTIONS(3099), + [anon_sym_not] = ACTIONS(3099), + [anon_sym_compl] = ACTIONS(3099), + [anon_sym_DASH_DASH] = ACTIONS(3101), + [anon_sym_PLUS_PLUS] = ACTIONS(3101), + [anon_sym_sizeof] = ACTIONS(3099), + [anon_sym___alignof__] = ACTIONS(3099), + [anon_sym___alignof] = ACTIONS(3099), + [anon_sym__alignof] = ACTIONS(3099), + [anon_sym_alignof] = ACTIONS(3099), + [anon_sym__Alignof] = ACTIONS(3099), + [anon_sym_offsetof] = ACTIONS(3099), + [anon_sym__Generic] = ACTIONS(3099), + [anon_sym_asm] = ACTIONS(3099), + [anon_sym___asm__] = ACTIONS(3099), + [sym_number_literal] = ACTIONS(3101), + [anon_sym_L_SQUOTE] = ACTIONS(3101), + [anon_sym_u_SQUOTE] = ACTIONS(3101), + [anon_sym_U_SQUOTE] = ACTIONS(3101), + [anon_sym_u8_SQUOTE] = ACTIONS(3101), + [anon_sym_SQUOTE] = ACTIONS(3101), + [anon_sym_L_DQUOTE] = ACTIONS(3101), + [anon_sym_u_DQUOTE] = ACTIONS(3101), + [anon_sym_U_DQUOTE] = ACTIONS(3101), + [anon_sym_u8_DQUOTE] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(3101), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [anon_sym_NULL] = ACTIONS(3099), + [anon_sym_nullptr] = ACTIONS(3099), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3099), + [anon_sym_decltype] = ACTIONS(3099), + [anon_sym_virtual] = ACTIONS(3099), + [anon_sym_alignas] = ACTIONS(3099), + [anon_sym_explicit] = ACTIONS(3099), + [anon_sym_typename] = ACTIONS(3099), + [anon_sym_template] = ACTIONS(3099), + [anon_sym_operator] = ACTIONS(3099), + [anon_sym_try] = ACTIONS(3099), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_throw] = ACTIONS(3099), + [anon_sym_namespace] = ACTIONS(3099), + [anon_sym_using] = ACTIONS(3099), + [anon_sym_static_assert] = ACTIONS(3099), + [anon_sym_concept] = ACTIONS(3099), + [anon_sym_co_return] = ACTIONS(3099), + [anon_sym_co_yield] = ACTIONS(3099), + [anon_sym_R_DQUOTE] = ACTIONS(3101), + [anon_sym_LR_DQUOTE] = ACTIONS(3101), + [anon_sym_uR_DQUOTE] = ACTIONS(3101), + [anon_sym_UR_DQUOTE] = ACTIONS(3101), + [anon_sym_u8R_DQUOTE] = ACTIONS(3101), + [anon_sym_co_await] = ACTIONS(3099), + [anon_sym_new] = ACTIONS(3099), + [anon_sym_requires] = ACTIONS(3099), + [sym_this] = ACTIONS(3099), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3101), + [sym_semgrep_named_ellipsis] = ACTIONS(3101), }, [461] = { - [sym_identifier] = ACTIONS(3207), - [aux_sym_preproc_include_token1] = ACTIONS(3207), - [aux_sym_preproc_def_token1] = ACTIONS(3207), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3209), - [aux_sym_preproc_if_token1] = ACTIONS(3207), - [aux_sym_preproc_if_token2] = ACTIONS(3207), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3207), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3207), - [aux_sym_preproc_else_token1] = ACTIONS(3207), - [aux_sym_preproc_elif_token1] = ACTIONS(3207), - [sym_preproc_directive] = ACTIONS(3207), - [anon_sym_LPAREN2] = ACTIONS(3209), - [anon_sym_BANG] = ACTIONS(3209), - [anon_sym_TILDE] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(3209), - [anon_sym_AMP_AMP] = ACTIONS(3209), - [anon_sym_AMP] = ACTIONS(3207), - [anon_sym_SEMI] = ACTIONS(3209), - [anon_sym___extension__] = ACTIONS(3207), - [anon_sym_typedef] = ACTIONS(3207), - [anon_sym_extern] = ACTIONS(3207), - [anon_sym___attribute__] = ACTIONS(3207), - [anon_sym_COLON_COLON] = ACTIONS(3209), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3209), - [anon_sym___declspec] = ACTIONS(3207), - [anon_sym___based] = ACTIONS(3207), - [anon_sym___cdecl] = ACTIONS(3207), - [anon_sym___clrcall] = ACTIONS(3207), - [anon_sym___stdcall] = ACTIONS(3207), - [anon_sym___fastcall] = ACTIONS(3207), - [anon_sym___thiscall] = ACTIONS(3207), - [anon_sym___vectorcall] = ACTIONS(3207), - [anon_sym_LBRACE] = ACTIONS(3209), - [anon_sym_signed] = ACTIONS(3207), - [anon_sym_unsigned] = ACTIONS(3207), - [anon_sym_long] = ACTIONS(3207), - [anon_sym_short] = ACTIONS(3207), - [anon_sym_LBRACK] = ACTIONS(3207), - [anon_sym_static] = ACTIONS(3207), - [anon_sym_register] = ACTIONS(3207), - [anon_sym_inline] = ACTIONS(3207), - [anon_sym___inline] = ACTIONS(3207), - [anon_sym___inline__] = ACTIONS(3207), - [anon_sym___forceinline] = ACTIONS(3207), - [anon_sym_thread_local] = ACTIONS(3207), - [anon_sym___thread] = ACTIONS(3207), - [anon_sym_const] = ACTIONS(3207), - [anon_sym_constexpr] = ACTIONS(3207), - [anon_sym_volatile] = ACTIONS(3207), - [anon_sym_restrict] = ACTIONS(3207), - [anon_sym___restrict__] = ACTIONS(3207), - [anon_sym__Atomic] = ACTIONS(3207), - [anon_sym__Noreturn] = ACTIONS(3207), - [anon_sym_noreturn] = ACTIONS(3207), - [anon_sym_mutable] = ACTIONS(3207), - [anon_sym_constinit] = ACTIONS(3207), - [anon_sym_consteval] = ACTIONS(3207), - [sym_primitive_type] = ACTIONS(3207), - [anon_sym_enum] = ACTIONS(3207), - [anon_sym_class] = ACTIONS(3207), - [anon_sym_struct] = ACTIONS(3207), - [anon_sym_union] = ACTIONS(3207), - [anon_sym_if] = ACTIONS(3207), - [anon_sym_else] = ACTIONS(3207), - [anon_sym_switch] = ACTIONS(3207), - [anon_sym_case] = ACTIONS(3207), - [anon_sym_default] = ACTIONS(3207), - [anon_sym_while] = ACTIONS(3207), - [anon_sym_do] = ACTIONS(3207), - [anon_sym_for] = ACTIONS(3207), - [anon_sym_return] = ACTIONS(3207), - [anon_sym_break] = ACTIONS(3207), - [anon_sym_continue] = ACTIONS(3207), - [anon_sym_goto] = ACTIONS(3207), - [anon_sym___try] = ACTIONS(3207), - [anon_sym___leave] = ACTIONS(3207), - [anon_sym_not] = ACTIONS(3207), - [anon_sym_compl] = ACTIONS(3207), - [anon_sym_DASH_DASH] = ACTIONS(3209), - [anon_sym_PLUS_PLUS] = ACTIONS(3209), - [anon_sym_sizeof] = ACTIONS(3207), - [anon_sym___alignof__] = ACTIONS(3207), - [anon_sym___alignof] = ACTIONS(3207), - [anon_sym__alignof] = ACTIONS(3207), - [anon_sym_alignof] = ACTIONS(3207), - [anon_sym__Alignof] = ACTIONS(3207), - [anon_sym_offsetof] = ACTIONS(3207), - [anon_sym__Generic] = ACTIONS(3207), - [anon_sym_asm] = ACTIONS(3207), - [anon_sym___asm__] = ACTIONS(3207), - [sym_number_literal] = ACTIONS(3209), - [anon_sym_L_SQUOTE] = ACTIONS(3209), - [anon_sym_u_SQUOTE] = ACTIONS(3209), - [anon_sym_U_SQUOTE] = ACTIONS(3209), - [anon_sym_u8_SQUOTE] = ACTIONS(3209), - [anon_sym_SQUOTE] = ACTIONS(3209), - [anon_sym_L_DQUOTE] = ACTIONS(3209), - [anon_sym_u_DQUOTE] = ACTIONS(3209), - [anon_sym_U_DQUOTE] = ACTIONS(3209), - [anon_sym_u8_DQUOTE] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(3209), - [sym_true] = ACTIONS(3207), - [sym_false] = ACTIONS(3207), - [anon_sym_NULL] = ACTIONS(3207), - [anon_sym_nullptr] = ACTIONS(3207), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3207), - [anon_sym_decltype] = ACTIONS(3207), - [anon_sym_virtual] = ACTIONS(3207), - [anon_sym_alignas] = ACTIONS(3207), - [anon_sym_explicit] = ACTIONS(3207), - [anon_sym_typename] = ACTIONS(3207), - [anon_sym_template] = ACTIONS(3207), - [anon_sym_operator] = ACTIONS(3207), - [anon_sym_try] = ACTIONS(3207), - [anon_sym_delete] = ACTIONS(3207), - [anon_sym_throw] = ACTIONS(3207), - [anon_sym_namespace] = ACTIONS(3207), - [anon_sym_using] = ACTIONS(3207), - [anon_sym_static_assert] = ACTIONS(3207), - [anon_sym_concept] = ACTIONS(3207), - [anon_sym_co_return] = ACTIONS(3207), - [anon_sym_co_yield] = ACTIONS(3207), - [anon_sym_R_DQUOTE] = ACTIONS(3209), - [anon_sym_LR_DQUOTE] = ACTIONS(3209), - [anon_sym_uR_DQUOTE] = ACTIONS(3209), - [anon_sym_UR_DQUOTE] = ACTIONS(3209), - [anon_sym_u8R_DQUOTE] = ACTIONS(3209), - [anon_sym_co_await] = ACTIONS(3207), - [anon_sym_new] = ACTIONS(3207), - [anon_sym_requires] = ACTIONS(3207), - [sym_this] = ACTIONS(3207), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3209), - [sym_semgrep_named_ellipsis] = ACTIONS(3209), + [sym_catch_clause] = STATE(380), + [aux_sym_constructor_try_statement_repeat1] = STATE(380), + [sym_identifier] = ACTIONS(3052), + [aux_sym_preproc_include_token1] = ACTIONS(3052), + [aux_sym_preproc_def_token1] = ACTIONS(3052), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3054), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_if_token2] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3052), + [sym_preproc_directive] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(3054), + [anon_sym_TILDE] = ACTIONS(3054), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3054), + [anon_sym_AMP_AMP] = ACTIONS(3054), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_SEMI] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3052), + [anon_sym_typedef] = ACTIONS(3052), + [anon_sym_extern] = ACTIONS(3052), + [anon_sym___attribute__] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3054), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3054), + [anon_sym___declspec] = ACTIONS(3052), + [anon_sym___based] = ACTIONS(3052), + [anon_sym___cdecl] = ACTIONS(3052), + [anon_sym___clrcall] = ACTIONS(3052), + [anon_sym___stdcall] = ACTIONS(3052), + [anon_sym___fastcall] = ACTIONS(3052), + [anon_sym___thiscall] = ACTIONS(3052), + [anon_sym___vectorcall] = ACTIONS(3052), + [anon_sym_LBRACE] = ACTIONS(3054), + [anon_sym_signed] = ACTIONS(3052), + [anon_sym_unsigned] = ACTIONS(3052), + [anon_sym_long] = ACTIONS(3052), + [anon_sym_short] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_static] = ACTIONS(3052), + [anon_sym_register] = ACTIONS(3052), + [anon_sym_inline] = ACTIONS(3052), + [anon_sym___inline] = ACTIONS(3052), + [anon_sym___inline__] = ACTIONS(3052), + [anon_sym___forceinline] = ACTIONS(3052), + [anon_sym_thread_local] = ACTIONS(3052), + [anon_sym___thread] = ACTIONS(3052), + [anon_sym_const] = ACTIONS(3052), + [anon_sym_constexpr] = ACTIONS(3052), + [anon_sym_volatile] = ACTIONS(3052), + [anon_sym_restrict] = ACTIONS(3052), + [anon_sym___restrict__] = ACTIONS(3052), + [anon_sym__Atomic] = ACTIONS(3052), + [anon_sym__Noreturn] = ACTIONS(3052), + [anon_sym_noreturn] = ACTIONS(3052), + [anon_sym_mutable] = ACTIONS(3052), + [anon_sym_constinit] = ACTIONS(3052), + [anon_sym_consteval] = ACTIONS(3052), + [sym_primitive_type] = ACTIONS(3052), + [anon_sym_enum] = ACTIONS(3052), + [anon_sym_class] = ACTIONS(3052), + [anon_sym_struct] = ACTIONS(3052), + [anon_sym_union] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_switch] = ACTIONS(3052), + [anon_sym_case] = ACTIONS(3052), + [anon_sym_default] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_break] = ACTIONS(3052), + [anon_sym_continue] = ACTIONS(3052), + [anon_sym_goto] = ACTIONS(3052), + [anon_sym___try] = ACTIONS(3052), + [anon_sym___leave] = ACTIONS(3052), + [anon_sym_not] = ACTIONS(3052), + [anon_sym_compl] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(3054), + [anon_sym_PLUS_PLUS] = ACTIONS(3054), + [anon_sym_sizeof] = ACTIONS(3052), + [anon_sym___alignof__] = ACTIONS(3052), + [anon_sym___alignof] = ACTIONS(3052), + [anon_sym__alignof] = ACTIONS(3052), + [anon_sym_alignof] = ACTIONS(3052), + [anon_sym__Alignof] = ACTIONS(3052), + [anon_sym_offsetof] = ACTIONS(3052), + [anon_sym__Generic] = ACTIONS(3052), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3054), + [anon_sym_u_SQUOTE] = ACTIONS(3054), + [anon_sym_U_SQUOTE] = ACTIONS(3054), + [anon_sym_u8_SQUOTE] = ACTIONS(3054), + [anon_sym_SQUOTE] = ACTIONS(3054), + [anon_sym_L_DQUOTE] = ACTIONS(3054), + [anon_sym_u_DQUOTE] = ACTIONS(3054), + [anon_sym_U_DQUOTE] = ACTIONS(3054), + [anon_sym_u8_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [sym_true] = ACTIONS(3052), + [sym_false] = ACTIONS(3052), + [anon_sym_NULL] = ACTIONS(3052), + [anon_sym_nullptr] = ACTIONS(3052), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3052), + [anon_sym_decltype] = ACTIONS(3052), + [anon_sym_virtual] = ACTIONS(3052), + [anon_sym_alignas] = ACTIONS(3052), + [anon_sym_explicit] = ACTIONS(3052), + [anon_sym_typename] = ACTIONS(3052), + [anon_sym_template] = ACTIONS(3052), + [anon_sym_operator] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_delete] = ACTIONS(3052), + [anon_sym_throw] = ACTIONS(3052), + [anon_sym_namespace] = ACTIONS(3052), + [anon_sym_using] = ACTIONS(3052), + [anon_sym_static_assert] = ACTIONS(3052), + [anon_sym_concept] = ACTIONS(3052), + [anon_sym_co_return] = ACTIONS(3052), + [anon_sym_co_yield] = ACTIONS(3052), + [anon_sym_catch] = ACTIONS(3422), + [anon_sym_R_DQUOTE] = ACTIONS(3054), + [anon_sym_LR_DQUOTE] = ACTIONS(3054), + [anon_sym_uR_DQUOTE] = ACTIONS(3054), + [anon_sym_UR_DQUOTE] = ACTIONS(3054), + [anon_sym_u8R_DQUOTE] = ACTIONS(3054), + [anon_sym_co_await] = ACTIONS(3052), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_requires] = ACTIONS(3052), + [sym_this] = ACTIONS(3052), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3054), + [sym_semgrep_named_ellipsis] = ACTIONS(3054), }, [462] = { - [sym_identifier] = ACTIONS(3125), - [aux_sym_preproc_include_token1] = ACTIONS(3125), - [aux_sym_preproc_def_token1] = ACTIONS(3125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3127), - [aux_sym_preproc_if_token1] = ACTIONS(3125), - [aux_sym_preproc_if_token2] = ACTIONS(3125), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3125), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3125), - [aux_sym_preproc_else_token1] = ACTIONS(3125), - [aux_sym_preproc_elif_token1] = ACTIONS(3125), - [sym_preproc_directive] = ACTIONS(3125), - [anon_sym_LPAREN2] = ACTIONS(3127), - [anon_sym_BANG] = ACTIONS(3127), - [anon_sym_TILDE] = ACTIONS(3127), - [anon_sym_DASH] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(3127), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_AMP] = ACTIONS(3125), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym___extension__] = ACTIONS(3125), - [anon_sym_typedef] = ACTIONS(3125), - [anon_sym_extern] = ACTIONS(3125), - [anon_sym___attribute__] = ACTIONS(3125), - [anon_sym_COLON_COLON] = ACTIONS(3127), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3127), - [anon_sym___declspec] = ACTIONS(3125), - [anon_sym___based] = ACTIONS(3125), - [anon_sym___cdecl] = ACTIONS(3125), - [anon_sym___clrcall] = ACTIONS(3125), - [anon_sym___stdcall] = ACTIONS(3125), - [anon_sym___fastcall] = ACTIONS(3125), - [anon_sym___thiscall] = ACTIONS(3125), - [anon_sym___vectorcall] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(3127), - [anon_sym_signed] = ACTIONS(3125), - [anon_sym_unsigned] = ACTIONS(3125), - [anon_sym_long] = ACTIONS(3125), - [anon_sym_short] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3125), - [anon_sym_static] = ACTIONS(3125), - [anon_sym_register] = ACTIONS(3125), - [anon_sym_inline] = ACTIONS(3125), - [anon_sym___inline] = ACTIONS(3125), - [anon_sym___inline__] = ACTIONS(3125), - [anon_sym___forceinline] = ACTIONS(3125), - [anon_sym_thread_local] = ACTIONS(3125), - [anon_sym___thread] = ACTIONS(3125), - [anon_sym_const] = ACTIONS(3125), - [anon_sym_constexpr] = ACTIONS(3125), - [anon_sym_volatile] = ACTIONS(3125), - [anon_sym_restrict] = ACTIONS(3125), - [anon_sym___restrict__] = ACTIONS(3125), - [anon_sym__Atomic] = ACTIONS(3125), - [anon_sym__Noreturn] = ACTIONS(3125), - [anon_sym_noreturn] = ACTIONS(3125), - [anon_sym_mutable] = ACTIONS(3125), - [anon_sym_constinit] = ACTIONS(3125), - [anon_sym_consteval] = ACTIONS(3125), - [sym_primitive_type] = ACTIONS(3125), - [anon_sym_enum] = ACTIONS(3125), - [anon_sym_class] = ACTIONS(3125), - [anon_sym_struct] = ACTIONS(3125), - [anon_sym_union] = ACTIONS(3125), - [anon_sym_if] = ACTIONS(3125), - [anon_sym_else] = ACTIONS(3125), - [anon_sym_switch] = ACTIONS(3125), - [anon_sym_case] = ACTIONS(3125), - [anon_sym_default] = ACTIONS(3125), - [anon_sym_while] = ACTIONS(3125), - [anon_sym_do] = ACTIONS(3125), - [anon_sym_for] = ACTIONS(3125), - [anon_sym_return] = ACTIONS(3125), - [anon_sym_break] = ACTIONS(3125), - [anon_sym_continue] = ACTIONS(3125), - [anon_sym_goto] = ACTIONS(3125), - [anon_sym___try] = ACTIONS(3125), - [anon_sym___leave] = ACTIONS(3125), - [anon_sym_not] = ACTIONS(3125), - [anon_sym_compl] = ACTIONS(3125), - [anon_sym_DASH_DASH] = ACTIONS(3127), - [anon_sym_PLUS_PLUS] = ACTIONS(3127), - [anon_sym_sizeof] = ACTIONS(3125), - [anon_sym___alignof__] = ACTIONS(3125), - [anon_sym___alignof] = ACTIONS(3125), - [anon_sym__alignof] = ACTIONS(3125), - [anon_sym_alignof] = ACTIONS(3125), - [anon_sym__Alignof] = ACTIONS(3125), - [anon_sym_offsetof] = ACTIONS(3125), - [anon_sym__Generic] = ACTIONS(3125), - [anon_sym_asm] = ACTIONS(3125), - [anon_sym___asm__] = ACTIONS(3125), - [sym_number_literal] = ACTIONS(3127), - [anon_sym_L_SQUOTE] = ACTIONS(3127), - [anon_sym_u_SQUOTE] = ACTIONS(3127), - [anon_sym_U_SQUOTE] = ACTIONS(3127), - [anon_sym_u8_SQUOTE] = ACTIONS(3127), - [anon_sym_SQUOTE] = ACTIONS(3127), - [anon_sym_L_DQUOTE] = ACTIONS(3127), - [anon_sym_u_DQUOTE] = ACTIONS(3127), - [anon_sym_U_DQUOTE] = ACTIONS(3127), - [anon_sym_u8_DQUOTE] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym_true] = ACTIONS(3125), - [sym_false] = ACTIONS(3125), - [anon_sym_NULL] = ACTIONS(3125), - [anon_sym_nullptr] = ACTIONS(3125), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3125), - [anon_sym_decltype] = ACTIONS(3125), - [anon_sym_virtual] = ACTIONS(3125), - [anon_sym_alignas] = ACTIONS(3125), - [anon_sym_explicit] = ACTIONS(3125), - [anon_sym_typename] = ACTIONS(3125), - [anon_sym_template] = ACTIONS(3125), - [anon_sym_operator] = ACTIONS(3125), - [anon_sym_try] = ACTIONS(3125), - [anon_sym_delete] = ACTIONS(3125), - [anon_sym_throw] = ACTIONS(3125), - [anon_sym_namespace] = ACTIONS(3125), - [anon_sym_using] = ACTIONS(3125), - [anon_sym_static_assert] = ACTIONS(3125), - [anon_sym_concept] = ACTIONS(3125), - [anon_sym_co_return] = ACTIONS(3125), - [anon_sym_co_yield] = ACTIONS(3125), - [anon_sym_R_DQUOTE] = ACTIONS(3127), - [anon_sym_LR_DQUOTE] = ACTIONS(3127), - [anon_sym_uR_DQUOTE] = ACTIONS(3127), - [anon_sym_UR_DQUOTE] = ACTIONS(3127), - [anon_sym_u8R_DQUOTE] = ACTIONS(3127), - [anon_sym_co_await] = ACTIONS(3125), - [anon_sym_new] = ACTIONS(3125), - [anon_sym_requires] = ACTIONS(3125), - [sym_this] = ACTIONS(3125), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3127), - [sym_semgrep_named_ellipsis] = ACTIONS(3127), - }, - [463] = { - [sym_identifier] = ACTIONS(3147), - [aux_sym_preproc_include_token1] = ACTIONS(3147), - [aux_sym_preproc_def_token1] = ACTIONS(3147), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3149), - [aux_sym_preproc_if_token1] = ACTIONS(3147), - [aux_sym_preproc_if_token2] = ACTIONS(3147), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3147), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3147), - [aux_sym_preproc_else_token1] = ACTIONS(3147), - [aux_sym_preproc_elif_token1] = ACTIONS(3147), - [sym_preproc_directive] = ACTIONS(3147), - [anon_sym_LPAREN2] = ACTIONS(3149), - [anon_sym_BANG] = ACTIONS(3149), - [anon_sym_TILDE] = ACTIONS(3149), - [anon_sym_DASH] = ACTIONS(3147), - [anon_sym_PLUS] = ACTIONS(3147), - [anon_sym_STAR] = ACTIONS(3149), - [anon_sym_AMP_AMP] = ACTIONS(3149), - [anon_sym_AMP] = ACTIONS(3147), - [anon_sym_SEMI] = ACTIONS(3149), - [anon_sym___extension__] = ACTIONS(3147), - [anon_sym_typedef] = ACTIONS(3147), - [anon_sym_extern] = ACTIONS(3147), - [anon_sym___attribute__] = ACTIONS(3147), - [anon_sym_COLON_COLON] = ACTIONS(3149), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3149), - [anon_sym___declspec] = ACTIONS(3147), - [anon_sym___based] = ACTIONS(3147), - [anon_sym___cdecl] = ACTIONS(3147), - [anon_sym___clrcall] = ACTIONS(3147), - [anon_sym___stdcall] = ACTIONS(3147), - [anon_sym___fastcall] = ACTIONS(3147), - [anon_sym___thiscall] = ACTIONS(3147), - [anon_sym___vectorcall] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_signed] = ACTIONS(3147), - [anon_sym_unsigned] = ACTIONS(3147), - [anon_sym_long] = ACTIONS(3147), - [anon_sym_short] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3147), - [anon_sym_static] = ACTIONS(3147), - [anon_sym_register] = ACTIONS(3147), - [anon_sym_inline] = ACTIONS(3147), - [anon_sym___inline] = ACTIONS(3147), - [anon_sym___inline__] = ACTIONS(3147), - [anon_sym___forceinline] = ACTIONS(3147), - [anon_sym_thread_local] = ACTIONS(3147), - [anon_sym___thread] = ACTIONS(3147), - [anon_sym_const] = ACTIONS(3147), - [anon_sym_constexpr] = ACTIONS(3147), - [anon_sym_volatile] = ACTIONS(3147), - [anon_sym_restrict] = ACTIONS(3147), - [anon_sym___restrict__] = ACTIONS(3147), - [anon_sym__Atomic] = ACTIONS(3147), - [anon_sym__Noreturn] = ACTIONS(3147), - [anon_sym_noreturn] = ACTIONS(3147), - [anon_sym_mutable] = ACTIONS(3147), - [anon_sym_constinit] = ACTIONS(3147), - [anon_sym_consteval] = ACTIONS(3147), - [sym_primitive_type] = ACTIONS(3147), - [anon_sym_enum] = ACTIONS(3147), - [anon_sym_class] = ACTIONS(3147), - [anon_sym_struct] = ACTIONS(3147), - [anon_sym_union] = ACTIONS(3147), - [anon_sym_if] = ACTIONS(3147), - [anon_sym_else] = ACTIONS(3147), - [anon_sym_switch] = ACTIONS(3147), - [anon_sym_case] = ACTIONS(3147), - [anon_sym_default] = ACTIONS(3147), - [anon_sym_while] = ACTIONS(3147), - [anon_sym_do] = ACTIONS(3147), - [anon_sym_for] = ACTIONS(3147), - [anon_sym_return] = ACTIONS(3147), - [anon_sym_break] = ACTIONS(3147), - [anon_sym_continue] = ACTIONS(3147), - [anon_sym_goto] = ACTIONS(3147), - [anon_sym___try] = ACTIONS(3147), - [anon_sym___leave] = ACTIONS(3147), - [anon_sym_not] = ACTIONS(3147), - [anon_sym_compl] = ACTIONS(3147), - [anon_sym_DASH_DASH] = ACTIONS(3149), - [anon_sym_PLUS_PLUS] = ACTIONS(3149), - [anon_sym_sizeof] = ACTIONS(3147), - [anon_sym___alignof__] = ACTIONS(3147), - [anon_sym___alignof] = ACTIONS(3147), - [anon_sym__alignof] = ACTIONS(3147), - [anon_sym_alignof] = ACTIONS(3147), - [anon_sym__Alignof] = ACTIONS(3147), - [anon_sym_offsetof] = ACTIONS(3147), - [anon_sym__Generic] = ACTIONS(3147), - [anon_sym_asm] = ACTIONS(3147), - [anon_sym___asm__] = ACTIONS(3147), - [sym_number_literal] = ACTIONS(3149), - [anon_sym_L_SQUOTE] = ACTIONS(3149), - [anon_sym_u_SQUOTE] = ACTIONS(3149), - [anon_sym_U_SQUOTE] = ACTIONS(3149), - [anon_sym_u8_SQUOTE] = ACTIONS(3149), - [anon_sym_SQUOTE] = ACTIONS(3149), - [anon_sym_L_DQUOTE] = ACTIONS(3149), - [anon_sym_u_DQUOTE] = ACTIONS(3149), - [anon_sym_U_DQUOTE] = ACTIONS(3149), - [anon_sym_u8_DQUOTE] = ACTIONS(3149), - [anon_sym_DQUOTE] = ACTIONS(3149), - [sym_true] = ACTIONS(3147), - [sym_false] = ACTIONS(3147), - [anon_sym_NULL] = ACTIONS(3147), - [anon_sym_nullptr] = ACTIONS(3147), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3147), - [anon_sym_decltype] = ACTIONS(3147), - [anon_sym_virtual] = ACTIONS(3147), - [anon_sym_alignas] = ACTIONS(3147), - [anon_sym_explicit] = ACTIONS(3147), - [anon_sym_typename] = ACTIONS(3147), - [anon_sym_template] = ACTIONS(3147), - [anon_sym_operator] = ACTIONS(3147), - [anon_sym_try] = ACTIONS(3147), - [anon_sym_delete] = ACTIONS(3147), - [anon_sym_throw] = ACTIONS(3147), - [anon_sym_namespace] = ACTIONS(3147), - [anon_sym_using] = ACTIONS(3147), - [anon_sym_static_assert] = ACTIONS(3147), - [anon_sym_concept] = ACTIONS(3147), - [anon_sym_co_return] = ACTIONS(3147), - [anon_sym_co_yield] = ACTIONS(3147), - [anon_sym_R_DQUOTE] = ACTIONS(3149), - [anon_sym_LR_DQUOTE] = ACTIONS(3149), - [anon_sym_uR_DQUOTE] = ACTIONS(3149), - [anon_sym_UR_DQUOTE] = ACTIONS(3149), - [anon_sym_u8R_DQUOTE] = ACTIONS(3149), - [anon_sym_co_await] = ACTIONS(3147), - [anon_sym_new] = ACTIONS(3147), - [anon_sym_requires] = ACTIONS(3147), - [sym_this] = ACTIONS(3147), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3149), - [sym_semgrep_named_ellipsis] = ACTIONS(3149), - }, - [464] = { - [sym_identifier] = ACTIONS(3151), - [aux_sym_preproc_include_token1] = ACTIONS(3151), - [aux_sym_preproc_def_token1] = ACTIONS(3151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3153), - [aux_sym_preproc_if_token1] = ACTIONS(3151), - [aux_sym_preproc_if_token2] = ACTIONS(3151), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3151), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3151), - [aux_sym_preproc_else_token1] = ACTIONS(3151), - [aux_sym_preproc_elif_token1] = ACTIONS(3151), - [sym_preproc_directive] = ACTIONS(3151), - [anon_sym_LPAREN2] = ACTIONS(3153), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_TILDE] = ACTIONS(3153), - [anon_sym_DASH] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(3151), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_AMP_AMP] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3151), - [anon_sym_SEMI] = ACTIONS(3153), - [anon_sym___extension__] = ACTIONS(3151), - [anon_sym_typedef] = ACTIONS(3151), - [anon_sym_extern] = ACTIONS(3151), - [anon_sym___attribute__] = ACTIONS(3151), - [anon_sym_COLON_COLON] = ACTIONS(3153), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3153), - [anon_sym___declspec] = ACTIONS(3151), - [anon_sym___based] = ACTIONS(3151), - [anon_sym___cdecl] = ACTIONS(3151), - [anon_sym___clrcall] = ACTIONS(3151), - [anon_sym___stdcall] = ACTIONS(3151), - [anon_sym___fastcall] = ACTIONS(3151), - [anon_sym___thiscall] = ACTIONS(3151), - [anon_sym___vectorcall] = ACTIONS(3151), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_signed] = ACTIONS(3151), - [anon_sym_unsigned] = ACTIONS(3151), - [anon_sym_long] = ACTIONS(3151), - [anon_sym_short] = ACTIONS(3151), - [anon_sym_LBRACK] = ACTIONS(3151), - [anon_sym_static] = ACTIONS(3151), - [anon_sym_register] = ACTIONS(3151), - [anon_sym_inline] = ACTIONS(3151), - [anon_sym___inline] = ACTIONS(3151), - [anon_sym___inline__] = ACTIONS(3151), - [anon_sym___forceinline] = ACTIONS(3151), - [anon_sym_thread_local] = ACTIONS(3151), - [anon_sym___thread] = ACTIONS(3151), - [anon_sym_const] = ACTIONS(3151), - [anon_sym_constexpr] = ACTIONS(3151), - [anon_sym_volatile] = ACTIONS(3151), - [anon_sym_restrict] = ACTIONS(3151), - [anon_sym___restrict__] = ACTIONS(3151), - [anon_sym__Atomic] = ACTIONS(3151), - [anon_sym__Noreturn] = ACTIONS(3151), - [anon_sym_noreturn] = ACTIONS(3151), - [anon_sym_mutable] = ACTIONS(3151), - [anon_sym_constinit] = ACTIONS(3151), - [anon_sym_consteval] = ACTIONS(3151), - [sym_primitive_type] = ACTIONS(3151), - [anon_sym_enum] = ACTIONS(3151), - [anon_sym_class] = ACTIONS(3151), - [anon_sym_struct] = ACTIONS(3151), - [anon_sym_union] = ACTIONS(3151), - [anon_sym_if] = ACTIONS(3151), - [anon_sym_else] = ACTIONS(3151), - [anon_sym_switch] = ACTIONS(3151), - [anon_sym_case] = ACTIONS(3151), - [anon_sym_default] = ACTIONS(3151), - [anon_sym_while] = ACTIONS(3151), - [anon_sym_do] = ACTIONS(3151), - [anon_sym_for] = ACTIONS(3151), - [anon_sym_return] = ACTIONS(3151), - [anon_sym_break] = ACTIONS(3151), - [anon_sym_continue] = ACTIONS(3151), - [anon_sym_goto] = ACTIONS(3151), - [anon_sym___try] = ACTIONS(3151), - [anon_sym___leave] = ACTIONS(3151), - [anon_sym_not] = ACTIONS(3151), - [anon_sym_compl] = ACTIONS(3151), - [anon_sym_DASH_DASH] = ACTIONS(3153), - [anon_sym_PLUS_PLUS] = ACTIONS(3153), - [anon_sym_sizeof] = ACTIONS(3151), - [anon_sym___alignof__] = ACTIONS(3151), - [anon_sym___alignof] = ACTIONS(3151), - [anon_sym__alignof] = ACTIONS(3151), - [anon_sym_alignof] = ACTIONS(3151), - [anon_sym__Alignof] = ACTIONS(3151), - [anon_sym_offsetof] = ACTIONS(3151), - [anon_sym__Generic] = ACTIONS(3151), - [anon_sym_asm] = ACTIONS(3151), - [anon_sym___asm__] = ACTIONS(3151), - [sym_number_literal] = ACTIONS(3153), - [anon_sym_L_SQUOTE] = ACTIONS(3153), - [anon_sym_u_SQUOTE] = ACTIONS(3153), - [anon_sym_U_SQUOTE] = ACTIONS(3153), - [anon_sym_u8_SQUOTE] = ACTIONS(3153), - [anon_sym_SQUOTE] = ACTIONS(3153), - [anon_sym_L_DQUOTE] = ACTIONS(3153), - [anon_sym_u_DQUOTE] = ACTIONS(3153), - [anon_sym_U_DQUOTE] = ACTIONS(3153), - [anon_sym_u8_DQUOTE] = ACTIONS(3153), - [anon_sym_DQUOTE] = ACTIONS(3153), - [sym_true] = ACTIONS(3151), - [sym_false] = ACTIONS(3151), - [anon_sym_NULL] = ACTIONS(3151), - [anon_sym_nullptr] = ACTIONS(3151), + [sym_identifier] = ACTIONS(3171), + [aux_sym_preproc_include_token1] = ACTIONS(3171), + [aux_sym_preproc_def_token1] = ACTIONS(3171), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3173), + [aux_sym_preproc_if_token1] = ACTIONS(3171), + [aux_sym_preproc_if_token2] = ACTIONS(3171), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3171), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3171), + [aux_sym_preproc_else_token1] = ACTIONS(3171), + [aux_sym_preproc_elif_token1] = ACTIONS(3171), + [sym_preproc_directive] = ACTIONS(3171), + [anon_sym_LPAREN2] = ACTIONS(3173), + [anon_sym_BANG] = ACTIONS(3173), + [anon_sym_TILDE] = ACTIONS(3173), + [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_PLUS] = ACTIONS(3171), + [anon_sym_STAR] = ACTIONS(3173), + [anon_sym_AMP_AMP] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(3171), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym___extension__] = ACTIONS(3171), + [anon_sym_typedef] = ACTIONS(3171), + [anon_sym_extern] = ACTIONS(3171), + [anon_sym___attribute__] = ACTIONS(3171), + [anon_sym_COLON_COLON] = ACTIONS(3173), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3173), + [anon_sym___declspec] = ACTIONS(3171), + [anon_sym___based] = ACTIONS(3171), + [anon_sym___cdecl] = ACTIONS(3171), + [anon_sym___clrcall] = ACTIONS(3171), + [anon_sym___stdcall] = ACTIONS(3171), + [anon_sym___fastcall] = ACTIONS(3171), + [anon_sym___thiscall] = ACTIONS(3171), + [anon_sym___vectorcall] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(3173), + [anon_sym_signed] = ACTIONS(3171), + [anon_sym_unsigned] = ACTIONS(3171), + [anon_sym_long] = ACTIONS(3171), + [anon_sym_short] = ACTIONS(3171), + [anon_sym_LBRACK] = ACTIONS(3171), + [anon_sym_static] = ACTIONS(3171), + [anon_sym_register] = ACTIONS(3171), + [anon_sym_inline] = ACTIONS(3171), + [anon_sym___inline] = ACTIONS(3171), + [anon_sym___inline__] = ACTIONS(3171), + [anon_sym___forceinline] = ACTIONS(3171), + [anon_sym_thread_local] = ACTIONS(3171), + [anon_sym___thread] = ACTIONS(3171), + [anon_sym_const] = ACTIONS(3171), + [anon_sym_constexpr] = ACTIONS(3171), + [anon_sym_volatile] = ACTIONS(3171), + [anon_sym_restrict] = ACTIONS(3171), + [anon_sym___restrict__] = ACTIONS(3171), + [anon_sym__Atomic] = ACTIONS(3171), + [anon_sym__Noreturn] = ACTIONS(3171), + [anon_sym_noreturn] = ACTIONS(3171), + [anon_sym_mutable] = ACTIONS(3171), + [anon_sym_constinit] = ACTIONS(3171), + [anon_sym_consteval] = ACTIONS(3171), + [sym_primitive_type] = ACTIONS(3171), + [anon_sym_enum] = ACTIONS(3171), + [anon_sym_class] = ACTIONS(3171), + [anon_sym_struct] = ACTIONS(3171), + [anon_sym_union] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_else] = ACTIONS(3171), + [anon_sym_switch] = ACTIONS(3171), + [anon_sym_case] = ACTIONS(3171), + [anon_sym_default] = ACTIONS(3171), + [anon_sym_while] = ACTIONS(3171), + [anon_sym_do] = ACTIONS(3171), + [anon_sym_for] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_break] = ACTIONS(3171), + [anon_sym_continue] = ACTIONS(3171), + [anon_sym_goto] = ACTIONS(3171), + [anon_sym___try] = ACTIONS(3171), + [anon_sym___leave] = ACTIONS(3171), + [anon_sym_not] = ACTIONS(3171), + [anon_sym_compl] = ACTIONS(3171), + [anon_sym_DASH_DASH] = ACTIONS(3173), + [anon_sym_PLUS_PLUS] = ACTIONS(3173), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3171), + [anon_sym___alignof] = ACTIONS(3171), + [anon_sym__alignof] = ACTIONS(3171), + [anon_sym_alignof] = ACTIONS(3171), + [anon_sym__Alignof] = ACTIONS(3171), + [anon_sym_offsetof] = ACTIONS(3171), + [anon_sym__Generic] = ACTIONS(3171), + [anon_sym_asm] = ACTIONS(3171), + [anon_sym___asm__] = ACTIONS(3171), + [sym_number_literal] = ACTIONS(3173), + [anon_sym_L_SQUOTE] = ACTIONS(3173), + [anon_sym_u_SQUOTE] = ACTIONS(3173), + [anon_sym_U_SQUOTE] = ACTIONS(3173), + [anon_sym_u8_SQUOTE] = ACTIONS(3173), + [anon_sym_SQUOTE] = ACTIONS(3173), + [anon_sym_L_DQUOTE] = ACTIONS(3173), + [anon_sym_u_DQUOTE] = ACTIONS(3173), + [anon_sym_U_DQUOTE] = ACTIONS(3173), + [anon_sym_u8_DQUOTE] = ACTIONS(3173), + [anon_sym_DQUOTE] = ACTIONS(3173), + [sym_true] = ACTIONS(3171), + [sym_false] = ACTIONS(3171), + [anon_sym_NULL] = ACTIONS(3171), + [anon_sym_nullptr] = ACTIONS(3171), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3151), - [anon_sym_decltype] = ACTIONS(3151), - [anon_sym_virtual] = ACTIONS(3151), - [anon_sym_alignas] = ACTIONS(3151), - [anon_sym_explicit] = ACTIONS(3151), - [anon_sym_typename] = ACTIONS(3151), - [anon_sym_template] = ACTIONS(3151), - [anon_sym_operator] = ACTIONS(3151), - [anon_sym_try] = ACTIONS(3151), - [anon_sym_delete] = ACTIONS(3151), - [anon_sym_throw] = ACTIONS(3151), - [anon_sym_namespace] = ACTIONS(3151), - [anon_sym_using] = ACTIONS(3151), - [anon_sym_static_assert] = ACTIONS(3151), - [anon_sym_concept] = ACTIONS(3151), - [anon_sym_co_return] = ACTIONS(3151), - [anon_sym_co_yield] = ACTIONS(3151), - [anon_sym_R_DQUOTE] = ACTIONS(3153), - [anon_sym_LR_DQUOTE] = ACTIONS(3153), - [anon_sym_uR_DQUOTE] = ACTIONS(3153), - [anon_sym_UR_DQUOTE] = ACTIONS(3153), - [anon_sym_u8R_DQUOTE] = ACTIONS(3153), - [anon_sym_co_await] = ACTIONS(3151), - [anon_sym_new] = ACTIONS(3151), - [anon_sym_requires] = ACTIONS(3151), - [sym_this] = ACTIONS(3151), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3153), - [sym_semgrep_named_ellipsis] = ACTIONS(3153), + [sym_auto] = ACTIONS(3171), + [anon_sym_decltype] = ACTIONS(3171), + [anon_sym_virtual] = ACTIONS(3171), + [anon_sym_alignas] = ACTIONS(3171), + [anon_sym_explicit] = ACTIONS(3171), + [anon_sym_typename] = ACTIONS(3171), + [anon_sym_template] = ACTIONS(3171), + [anon_sym_operator] = ACTIONS(3171), + [anon_sym_try] = ACTIONS(3171), + [anon_sym_delete] = ACTIONS(3171), + [anon_sym_throw] = ACTIONS(3171), + [anon_sym_namespace] = ACTIONS(3171), + [anon_sym_using] = ACTIONS(3171), + [anon_sym_static_assert] = ACTIONS(3171), + [anon_sym_concept] = ACTIONS(3171), + [anon_sym_co_return] = ACTIONS(3171), + [anon_sym_co_yield] = ACTIONS(3171), + [anon_sym_R_DQUOTE] = ACTIONS(3173), + [anon_sym_LR_DQUOTE] = ACTIONS(3173), + [anon_sym_uR_DQUOTE] = ACTIONS(3173), + [anon_sym_UR_DQUOTE] = ACTIONS(3173), + [anon_sym_u8R_DQUOTE] = ACTIONS(3173), + [anon_sym_co_await] = ACTIONS(3171), + [anon_sym_new] = ACTIONS(3171), + [anon_sym_requires] = ACTIONS(3171), + [sym_this] = ACTIONS(3171), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3173), + [sym_semgrep_named_ellipsis] = ACTIONS(3173), }, - [465] = { + [463] = { [sym_identifier] = ACTIONS(3155), [aux_sym_preproc_include_token1] = ACTIONS(3155), [aux_sym_preproc_def_token1] = ACTIONS(3155), @@ -130016,1387 +119912,697 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3157), [sym_semgrep_named_ellipsis] = ACTIONS(3157), }, - [466] = { - [sym_identifier] = ACTIONS(3159), - [aux_sym_preproc_include_token1] = ACTIONS(3159), - [aux_sym_preproc_def_token1] = ACTIONS(3159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3161), - [aux_sym_preproc_if_token1] = ACTIONS(3159), - [aux_sym_preproc_if_token2] = ACTIONS(3159), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3159), - [aux_sym_preproc_else_token1] = ACTIONS(3159), - [aux_sym_preproc_elif_token1] = ACTIONS(3159), - [sym_preproc_directive] = ACTIONS(3159), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3159), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym___extension__] = ACTIONS(3159), - [anon_sym_typedef] = ACTIONS(3159), - [anon_sym_extern] = ACTIONS(3159), - [anon_sym___attribute__] = ACTIONS(3159), - [anon_sym_COLON_COLON] = ACTIONS(3161), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), - [anon_sym___declspec] = ACTIONS(3159), - [anon_sym___based] = ACTIONS(3159), - [anon_sym___cdecl] = ACTIONS(3159), - [anon_sym___clrcall] = ACTIONS(3159), - [anon_sym___stdcall] = ACTIONS(3159), - [anon_sym___fastcall] = ACTIONS(3159), - [anon_sym___thiscall] = ACTIONS(3159), - [anon_sym___vectorcall] = ACTIONS(3159), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_signed] = ACTIONS(3159), - [anon_sym_unsigned] = ACTIONS(3159), - [anon_sym_long] = ACTIONS(3159), - [anon_sym_short] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(3159), - [anon_sym_static] = ACTIONS(3159), - [anon_sym_register] = ACTIONS(3159), - [anon_sym_inline] = ACTIONS(3159), - [anon_sym___inline] = ACTIONS(3159), - [anon_sym___inline__] = ACTIONS(3159), - [anon_sym___forceinline] = ACTIONS(3159), - [anon_sym_thread_local] = ACTIONS(3159), - [anon_sym___thread] = ACTIONS(3159), - [anon_sym_const] = ACTIONS(3159), - [anon_sym_constexpr] = ACTIONS(3159), - [anon_sym_volatile] = ACTIONS(3159), - [anon_sym_restrict] = ACTIONS(3159), - [anon_sym___restrict__] = ACTIONS(3159), - [anon_sym__Atomic] = ACTIONS(3159), - [anon_sym__Noreturn] = ACTIONS(3159), - [anon_sym_noreturn] = ACTIONS(3159), - [anon_sym_mutable] = ACTIONS(3159), - [anon_sym_constinit] = ACTIONS(3159), - [anon_sym_consteval] = ACTIONS(3159), - [sym_primitive_type] = ACTIONS(3159), - [anon_sym_enum] = ACTIONS(3159), - [anon_sym_class] = ACTIONS(3159), - [anon_sym_struct] = ACTIONS(3159), - [anon_sym_union] = ACTIONS(3159), - [anon_sym_if] = ACTIONS(3159), - [anon_sym_else] = ACTIONS(3159), - [anon_sym_switch] = ACTIONS(3159), - [anon_sym_case] = ACTIONS(3159), - [anon_sym_default] = ACTIONS(3159), - [anon_sym_while] = ACTIONS(3159), - [anon_sym_do] = ACTIONS(3159), - [anon_sym_for] = ACTIONS(3159), - [anon_sym_return] = ACTIONS(3159), - [anon_sym_break] = ACTIONS(3159), - [anon_sym_continue] = ACTIONS(3159), - [anon_sym_goto] = ACTIONS(3159), - [anon_sym___try] = ACTIONS(3159), - [anon_sym___leave] = ACTIONS(3159), - [anon_sym_not] = ACTIONS(3159), - [anon_sym_compl] = ACTIONS(3159), - [anon_sym_DASH_DASH] = ACTIONS(3161), - [anon_sym_PLUS_PLUS] = ACTIONS(3161), - [anon_sym_sizeof] = ACTIONS(3159), - [anon_sym___alignof__] = ACTIONS(3159), - [anon_sym___alignof] = ACTIONS(3159), - [anon_sym__alignof] = ACTIONS(3159), - [anon_sym_alignof] = ACTIONS(3159), - [anon_sym__Alignof] = ACTIONS(3159), - [anon_sym_offsetof] = ACTIONS(3159), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3159), - [anon_sym___asm__] = ACTIONS(3159), - [sym_number_literal] = ACTIONS(3161), - [anon_sym_L_SQUOTE] = ACTIONS(3161), - [anon_sym_u_SQUOTE] = ACTIONS(3161), - [anon_sym_U_SQUOTE] = ACTIONS(3161), - [anon_sym_u8_SQUOTE] = ACTIONS(3161), - [anon_sym_SQUOTE] = ACTIONS(3161), - [anon_sym_L_DQUOTE] = ACTIONS(3161), - [anon_sym_u_DQUOTE] = ACTIONS(3161), - [anon_sym_U_DQUOTE] = ACTIONS(3161), - [anon_sym_u8_DQUOTE] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(3161), - [sym_true] = ACTIONS(3159), - [sym_false] = ACTIONS(3159), - [anon_sym_NULL] = ACTIONS(3159), - [anon_sym_nullptr] = ACTIONS(3159), + [464] = { + [sym_identifier] = ACTIONS(3181), + [aux_sym_preproc_include_token1] = ACTIONS(3181), + [aux_sym_preproc_def_token1] = ACTIONS(3181), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3183), + [aux_sym_preproc_if_token1] = ACTIONS(3181), + [aux_sym_preproc_if_token2] = ACTIONS(3181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3181), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3181), + [aux_sym_preproc_else_token1] = ACTIONS(3181), + [aux_sym_preproc_elif_token1] = ACTIONS(3181), + [sym_preproc_directive] = ACTIONS(3181), + [anon_sym_LPAREN2] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3183), + [anon_sym_TILDE] = ACTIONS(3183), + [anon_sym_DASH] = ACTIONS(3181), + [anon_sym_PLUS] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3183), + [anon_sym_AMP_AMP] = ACTIONS(3183), + [anon_sym_AMP] = ACTIONS(3181), + [anon_sym_SEMI] = ACTIONS(3183), + [anon_sym___extension__] = ACTIONS(3181), + [anon_sym_typedef] = ACTIONS(3181), + [anon_sym_extern] = ACTIONS(3181), + [anon_sym___attribute__] = ACTIONS(3181), + [anon_sym_COLON_COLON] = ACTIONS(3183), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3183), + [anon_sym___declspec] = ACTIONS(3181), + [anon_sym___based] = ACTIONS(3181), + [anon_sym___cdecl] = ACTIONS(3181), + [anon_sym___clrcall] = ACTIONS(3181), + [anon_sym___stdcall] = ACTIONS(3181), + [anon_sym___fastcall] = ACTIONS(3181), + [anon_sym___thiscall] = ACTIONS(3181), + [anon_sym___vectorcall] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_signed] = ACTIONS(3181), + [anon_sym_unsigned] = ACTIONS(3181), + [anon_sym_long] = ACTIONS(3181), + [anon_sym_short] = ACTIONS(3181), + [anon_sym_LBRACK] = ACTIONS(3181), + [anon_sym_static] = ACTIONS(3181), + [anon_sym_register] = ACTIONS(3181), + [anon_sym_inline] = ACTIONS(3181), + [anon_sym___inline] = ACTIONS(3181), + [anon_sym___inline__] = ACTIONS(3181), + [anon_sym___forceinline] = ACTIONS(3181), + [anon_sym_thread_local] = ACTIONS(3181), + [anon_sym___thread] = ACTIONS(3181), + [anon_sym_const] = ACTIONS(3181), + [anon_sym_constexpr] = ACTIONS(3181), + [anon_sym_volatile] = ACTIONS(3181), + [anon_sym_restrict] = ACTIONS(3181), + [anon_sym___restrict__] = ACTIONS(3181), + [anon_sym__Atomic] = ACTIONS(3181), + [anon_sym__Noreturn] = ACTIONS(3181), + [anon_sym_noreturn] = ACTIONS(3181), + [anon_sym_mutable] = ACTIONS(3181), + [anon_sym_constinit] = ACTIONS(3181), + [anon_sym_consteval] = ACTIONS(3181), + [sym_primitive_type] = ACTIONS(3181), + [anon_sym_enum] = ACTIONS(3181), + [anon_sym_class] = ACTIONS(3181), + [anon_sym_struct] = ACTIONS(3181), + [anon_sym_union] = ACTIONS(3181), + [anon_sym_if] = ACTIONS(3181), + [anon_sym_else] = ACTIONS(3181), + [anon_sym_switch] = ACTIONS(3181), + [anon_sym_case] = ACTIONS(3181), + [anon_sym_default] = ACTIONS(3181), + [anon_sym_while] = ACTIONS(3181), + [anon_sym_do] = ACTIONS(3181), + [anon_sym_for] = ACTIONS(3181), + [anon_sym_return] = ACTIONS(3181), + [anon_sym_break] = ACTIONS(3181), + [anon_sym_continue] = ACTIONS(3181), + [anon_sym_goto] = ACTIONS(3181), + [anon_sym___try] = ACTIONS(3181), + [anon_sym___leave] = ACTIONS(3181), + [anon_sym_not] = ACTIONS(3181), + [anon_sym_compl] = ACTIONS(3181), + [anon_sym_DASH_DASH] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_sizeof] = ACTIONS(3181), + [anon_sym___alignof__] = ACTIONS(3181), + [anon_sym___alignof] = ACTIONS(3181), + [anon_sym__alignof] = ACTIONS(3181), + [anon_sym_alignof] = ACTIONS(3181), + [anon_sym__Alignof] = ACTIONS(3181), + [anon_sym_offsetof] = ACTIONS(3181), + [anon_sym__Generic] = ACTIONS(3181), + [anon_sym_asm] = ACTIONS(3181), + [anon_sym___asm__] = ACTIONS(3181), + [sym_number_literal] = ACTIONS(3183), + [anon_sym_L_SQUOTE] = ACTIONS(3183), + [anon_sym_u_SQUOTE] = ACTIONS(3183), + [anon_sym_U_SQUOTE] = ACTIONS(3183), + [anon_sym_u8_SQUOTE] = ACTIONS(3183), + [anon_sym_SQUOTE] = ACTIONS(3183), + [anon_sym_L_DQUOTE] = ACTIONS(3183), + [anon_sym_u_DQUOTE] = ACTIONS(3183), + [anon_sym_U_DQUOTE] = ACTIONS(3183), + [anon_sym_u8_DQUOTE] = ACTIONS(3183), + [anon_sym_DQUOTE] = ACTIONS(3183), + [sym_true] = ACTIONS(3181), + [sym_false] = ACTIONS(3181), + [anon_sym_NULL] = ACTIONS(3181), + [anon_sym_nullptr] = ACTIONS(3181), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3181), + [anon_sym_decltype] = ACTIONS(3181), + [anon_sym_virtual] = ACTIONS(3181), + [anon_sym_alignas] = ACTIONS(3181), + [anon_sym_explicit] = ACTIONS(3181), + [anon_sym_typename] = ACTIONS(3181), + [anon_sym_template] = ACTIONS(3181), + [anon_sym_operator] = ACTIONS(3181), + [anon_sym_try] = ACTIONS(3181), + [anon_sym_delete] = ACTIONS(3181), + [anon_sym_throw] = ACTIONS(3181), + [anon_sym_namespace] = ACTIONS(3181), + [anon_sym_using] = ACTIONS(3181), + [anon_sym_static_assert] = ACTIONS(3181), + [anon_sym_concept] = ACTIONS(3181), + [anon_sym_co_return] = ACTIONS(3181), + [anon_sym_co_yield] = ACTIONS(3181), + [anon_sym_R_DQUOTE] = ACTIONS(3183), + [anon_sym_LR_DQUOTE] = ACTIONS(3183), + [anon_sym_uR_DQUOTE] = ACTIONS(3183), + [anon_sym_UR_DQUOTE] = ACTIONS(3183), + [anon_sym_u8R_DQUOTE] = ACTIONS(3183), + [anon_sym_co_await] = ACTIONS(3181), + [anon_sym_new] = ACTIONS(3181), + [anon_sym_requires] = ACTIONS(3181), + [sym_this] = ACTIONS(3181), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3183), + [sym_semgrep_named_ellipsis] = ACTIONS(3183), + }, + [465] = { + [sym_identifier] = ACTIONS(3175), + [aux_sym_preproc_include_token1] = ACTIONS(3175), + [aux_sym_preproc_def_token1] = ACTIONS(3175), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3177), + [aux_sym_preproc_if_token1] = ACTIONS(3175), + [aux_sym_preproc_if_token2] = ACTIONS(3175), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3175), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3175), + [aux_sym_preproc_else_token1] = ACTIONS(3175), + [aux_sym_preproc_elif_token1] = ACTIONS(3175), + [sym_preproc_directive] = ACTIONS(3175), + [anon_sym_LPAREN2] = ACTIONS(3177), + [anon_sym_BANG] = ACTIONS(3177), + [anon_sym_TILDE] = ACTIONS(3177), + [anon_sym_DASH] = ACTIONS(3175), + [anon_sym_PLUS] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_AMP] = ACTIONS(3175), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym___extension__] = ACTIONS(3175), + [anon_sym_typedef] = ACTIONS(3175), + [anon_sym_extern] = ACTIONS(3175), + [anon_sym___attribute__] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(3177), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3177), + [anon_sym___declspec] = ACTIONS(3175), + [anon_sym___based] = ACTIONS(3175), + [anon_sym___cdecl] = ACTIONS(3175), + [anon_sym___clrcall] = ACTIONS(3175), + [anon_sym___stdcall] = ACTIONS(3175), + [anon_sym___fastcall] = ACTIONS(3175), + [anon_sym___thiscall] = ACTIONS(3175), + [anon_sym___vectorcall] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(3177), + [anon_sym_signed] = ACTIONS(3175), + [anon_sym_unsigned] = ACTIONS(3175), + [anon_sym_long] = ACTIONS(3175), + [anon_sym_short] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_static] = ACTIONS(3175), + [anon_sym_register] = ACTIONS(3175), + [anon_sym_inline] = ACTIONS(3175), + [anon_sym___inline] = ACTIONS(3175), + [anon_sym___inline__] = ACTIONS(3175), + [anon_sym___forceinline] = ACTIONS(3175), + [anon_sym_thread_local] = ACTIONS(3175), + [anon_sym___thread] = ACTIONS(3175), + [anon_sym_const] = ACTIONS(3175), + [anon_sym_constexpr] = ACTIONS(3175), + [anon_sym_volatile] = ACTIONS(3175), + [anon_sym_restrict] = ACTIONS(3175), + [anon_sym___restrict__] = ACTIONS(3175), + [anon_sym__Atomic] = ACTIONS(3175), + [anon_sym__Noreturn] = ACTIONS(3175), + [anon_sym_noreturn] = ACTIONS(3175), + [anon_sym_mutable] = ACTIONS(3175), + [anon_sym_constinit] = ACTIONS(3175), + [anon_sym_consteval] = ACTIONS(3175), + [sym_primitive_type] = ACTIONS(3175), + [anon_sym_enum] = ACTIONS(3175), + [anon_sym_class] = ACTIONS(3175), + [anon_sym_struct] = ACTIONS(3175), + [anon_sym_union] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_switch] = ACTIONS(3175), + [anon_sym_case] = ACTIONS(3175), + [anon_sym_default] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_do] = ACTIONS(3175), + [anon_sym_for] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_break] = ACTIONS(3175), + [anon_sym_continue] = ACTIONS(3175), + [anon_sym_goto] = ACTIONS(3175), + [anon_sym___try] = ACTIONS(3175), + [anon_sym___leave] = ACTIONS(3175), + [anon_sym_not] = ACTIONS(3175), + [anon_sym_compl] = ACTIONS(3175), + [anon_sym_DASH_DASH] = ACTIONS(3177), + [anon_sym_PLUS_PLUS] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(3175), + [anon_sym___alignof__] = ACTIONS(3175), + [anon_sym___alignof] = ACTIONS(3175), + [anon_sym__alignof] = ACTIONS(3175), + [anon_sym_alignof] = ACTIONS(3175), + [anon_sym__Alignof] = ACTIONS(3175), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3175), + [anon_sym_asm] = ACTIONS(3175), + [anon_sym___asm__] = ACTIONS(3175), + [sym_number_literal] = ACTIONS(3177), + [anon_sym_L_SQUOTE] = ACTIONS(3177), + [anon_sym_u_SQUOTE] = ACTIONS(3177), + [anon_sym_U_SQUOTE] = ACTIONS(3177), + [anon_sym_u8_SQUOTE] = ACTIONS(3177), + [anon_sym_SQUOTE] = ACTIONS(3177), + [anon_sym_L_DQUOTE] = ACTIONS(3177), + [anon_sym_u_DQUOTE] = ACTIONS(3177), + [anon_sym_U_DQUOTE] = ACTIONS(3177), + [anon_sym_u8_DQUOTE] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(3177), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [anon_sym_NULL] = ACTIONS(3175), + [anon_sym_nullptr] = ACTIONS(3175), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3159), - [anon_sym_decltype] = ACTIONS(3159), - [anon_sym_virtual] = ACTIONS(3159), - [anon_sym_alignas] = ACTIONS(3159), - [anon_sym_explicit] = ACTIONS(3159), - [anon_sym_typename] = ACTIONS(3159), - [anon_sym_template] = ACTIONS(3159), - [anon_sym_operator] = ACTIONS(3159), - [anon_sym_try] = ACTIONS(3159), - [anon_sym_delete] = ACTIONS(3159), - [anon_sym_throw] = ACTIONS(3159), - [anon_sym_namespace] = ACTIONS(3159), - [anon_sym_using] = ACTIONS(3159), - [anon_sym_static_assert] = ACTIONS(3159), - [anon_sym_concept] = ACTIONS(3159), - [anon_sym_co_return] = ACTIONS(3159), - [anon_sym_co_yield] = ACTIONS(3159), - [anon_sym_R_DQUOTE] = ACTIONS(3161), - [anon_sym_LR_DQUOTE] = ACTIONS(3161), - [anon_sym_uR_DQUOTE] = ACTIONS(3161), - [anon_sym_UR_DQUOTE] = ACTIONS(3161), - [anon_sym_u8R_DQUOTE] = ACTIONS(3161), - [anon_sym_co_await] = ACTIONS(3159), - [anon_sym_new] = ACTIONS(3159), - [anon_sym_requires] = ACTIONS(3159), - [sym_this] = ACTIONS(3159), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3161), - [sym_semgrep_named_ellipsis] = ACTIONS(3161), + [sym_auto] = ACTIONS(3175), + [anon_sym_decltype] = ACTIONS(3175), + [anon_sym_virtual] = ACTIONS(3175), + [anon_sym_alignas] = ACTIONS(3175), + [anon_sym_explicit] = ACTIONS(3175), + [anon_sym_typename] = ACTIONS(3175), + [anon_sym_template] = ACTIONS(3175), + [anon_sym_operator] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_delete] = ACTIONS(3175), + [anon_sym_throw] = ACTIONS(3175), + [anon_sym_namespace] = ACTIONS(3175), + [anon_sym_using] = ACTIONS(3175), + [anon_sym_static_assert] = ACTIONS(3175), + [anon_sym_concept] = ACTIONS(3175), + [anon_sym_co_return] = ACTIONS(3175), + [anon_sym_co_yield] = ACTIONS(3175), + [anon_sym_R_DQUOTE] = ACTIONS(3177), + [anon_sym_LR_DQUOTE] = ACTIONS(3177), + [anon_sym_uR_DQUOTE] = ACTIONS(3177), + [anon_sym_UR_DQUOTE] = ACTIONS(3177), + [anon_sym_u8R_DQUOTE] = ACTIONS(3177), + [anon_sym_co_await] = ACTIONS(3175), + [anon_sym_new] = ACTIONS(3175), + [anon_sym_requires] = ACTIONS(3175), + [sym_this] = ACTIONS(3175), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3177), + [sym_semgrep_named_ellipsis] = ACTIONS(3177), + }, + [466] = { + [sym_identifier] = ACTIONS(3103), + [aux_sym_preproc_include_token1] = ACTIONS(3103), + [aux_sym_preproc_def_token1] = ACTIONS(3103), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3105), + [aux_sym_preproc_if_token1] = ACTIONS(3103), + [aux_sym_preproc_if_token2] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3103), + [aux_sym_preproc_else_token1] = ACTIONS(3103), + [aux_sym_preproc_elif_token1] = ACTIONS(3103), + [sym_preproc_directive] = ACTIONS(3103), + [anon_sym_LPAREN2] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3103), + [anon_sym_PLUS] = ACTIONS(3103), + [anon_sym_STAR] = ACTIONS(3105), + [anon_sym_AMP_AMP] = ACTIONS(3105), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym___extension__] = ACTIONS(3103), + [anon_sym_typedef] = ACTIONS(3103), + [anon_sym_extern] = ACTIONS(3103), + [anon_sym___attribute__] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3105), + [anon_sym___declspec] = ACTIONS(3103), + [anon_sym___based] = ACTIONS(3103), + [anon_sym___cdecl] = ACTIONS(3103), + [anon_sym___clrcall] = ACTIONS(3103), + [anon_sym___stdcall] = ACTIONS(3103), + [anon_sym___fastcall] = ACTIONS(3103), + [anon_sym___thiscall] = ACTIONS(3103), + [anon_sym___vectorcall] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(3105), + [anon_sym_signed] = ACTIONS(3103), + [anon_sym_unsigned] = ACTIONS(3103), + [anon_sym_long] = ACTIONS(3103), + [anon_sym_short] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(3103), + [anon_sym_static] = ACTIONS(3103), + [anon_sym_register] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym___inline] = ACTIONS(3103), + [anon_sym___inline__] = ACTIONS(3103), + [anon_sym___forceinline] = ACTIONS(3103), + [anon_sym_thread_local] = ACTIONS(3103), + [anon_sym___thread] = ACTIONS(3103), + [anon_sym_const] = ACTIONS(3103), + [anon_sym_constexpr] = ACTIONS(3103), + [anon_sym_volatile] = ACTIONS(3103), + [anon_sym_restrict] = ACTIONS(3103), + [anon_sym___restrict__] = ACTIONS(3103), + [anon_sym__Atomic] = ACTIONS(3103), + [anon_sym__Noreturn] = ACTIONS(3103), + [anon_sym_noreturn] = ACTIONS(3103), + [anon_sym_mutable] = ACTIONS(3103), + [anon_sym_constinit] = ACTIONS(3103), + [anon_sym_consteval] = ACTIONS(3103), + [sym_primitive_type] = ACTIONS(3103), + [anon_sym_enum] = ACTIONS(3103), + [anon_sym_class] = ACTIONS(3103), + [anon_sym_struct] = ACTIONS(3103), + [anon_sym_union] = ACTIONS(3103), + [anon_sym_if] = ACTIONS(3103), + [anon_sym_else] = ACTIONS(3103), + [anon_sym_switch] = ACTIONS(3103), + [anon_sym_case] = ACTIONS(3103), + [anon_sym_default] = ACTIONS(3103), + [anon_sym_while] = ACTIONS(3103), + [anon_sym_do] = ACTIONS(3103), + [anon_sym_for] = ACTIONS(3103), + [anon_sym_return] = ACTIONS(3103), + [anon_sym_break] = ACTIONS(3103), + [anon_sym_continue] = ACTIONS(3103), + [anon_sym_goto] = ACTIONS(3103), + [anon_sym___try] = ACTIONS(3103), + [anon_sym___leave] = ACTIONS(3103), + [anon_sym_not] = ACTIONS(3103), + [anon_sym_compl] = ACTIONS(3103), + [anon_sym_DASH_DASH] = ACTIONS(3105), + [anon_sym_PLUS_PLUS] = ACTIONS(3105), + [anon_sym_sizeof] = ACTIONS(3103), + [anon_sym___alignof__] = ACTIONS(3103), + [anon_sym___alignof] = ACTIONS(3103), + [anon_sym__alignof] = ACTIONS(3103), + [anon_sym_alignof] = ACTIONS(3103), + [anon_sym__Alignof] = ACTIONS(3103), + [anon_sym_offsetof] = ACTIONS(3103), + [anon_sym__Generic] = ACTIONS(3103), + [anon_sym_asm] = ACTIONS(3103), + [anon_sym___asm__] = ACTIONS(3103), + [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(3103), + [sym_false] = ACTIONS(3103), + [anon_sym_NULL] = ACTIONS(3103), + [anon_sym_nullptr] = ACTIONS(3103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3103), + [anon_sym_decltype] = ACTIONS(3103), + [anon_sym_virtual] = ACTIONS(3103), + [anon_sym_alignas] = ACTIONS(3103), + [anon_sym_explicit] = ACTIONS(3103), + [anon_sym_typename] = ACTIONS(3103), + [anon_sym_template] = ACTIONS(3103), + [anon_sym_operator] = ACTIONS(3103), + [anon_sym_try] = ACTIONS(3103), + [anon_sym_delete] = ACTIONS(3103), + [anon_sym_throw] = ACTIONS(3103), + [anon_sym_namespace] = ACTIONS(3103), + [anon_sym_using] = ACTIONS(3103), + [anon_sym_static_assert] = ACTIONS(3103), + [anon_sym_concept] = ACTIONS(3103), + [anon_sym_co_return] = ACTIONS(3103), + [anon_sym_co_yield] = ACTIONS(3103), + [anon_sym_R_DQUOTE] = ACTIONS(3105), + [anon_sym_LR_DQUOTE] = ACTIONS(3105), + [anon_sym_uR_DQUOTE] = ACTIONS(3105), + [anon_sym_UR_DQUOTE] = ACTIONS(3105), + [anon_sym_u8R_DQUOTE] = ACTIONS(3105), + [anon_sym_co_await] = ACTIONS(3103), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(3103), + [sym_this] = ACTIONS(3103), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3105), + [sym_semgrep_named_ellipsis] = ACTIONS(3105), }, [467] = { - [sym_identifier] = ACTIONS(3167), - [aux_sym_preproc_include_token1] = ACTIONS(3167), - [aux_sym_preproc_def_token1] = ACTIONS(3167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3169), - [aux_sym_preproc_if_token1] = ACTIONS(3167), - [aux_sym_preproc_if_token2] = ACTIONS(3167), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3167), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3167), - [aux_sym_preproc_else_token1] = ACTIONS(3167), - [aux_sym_preproc_elif_token1] = ACTIONS(3167), - [sym_preproc_directive] = 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___extension__] = ACTIONS(3167), - [anon_sym_typedef] = ACTIONS(3167), - [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___cdecl] = ACTIONS(3167), - [anon_sym___clrcall] = ACTIONS(3167), - [anon_sym___stdcall] = ACTIONS(3167), - [anon_sym___fastcall] = ACTIONS(3167), - [anon_sym___thiscall] = ACTIONS(3167), - [anon_sym___vectorcall] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_signed] = ACTIONS(3167), - [anon_sym_unsigned] = ACTIONS(3167), - [anon_sym_long] = ACTIONS(3167), - [anon_sym_short] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_static] = ACTIONS(3167), - [anon_sym_register] = ACTIONS(3167), - [anon_sym_inline] = ACTIONS(3167), - [anon_sym___inline] = ACTIONS(3167), - [anon_sym___inline__] = ACTIONS(3167), - [anon_sym___forceinline] = ACTIONS(3167), - [anon_sym_thread_local] = ACTIONS(3167), - [anon_sym___thread] = ACTIONS(3167), - [anon_sym_const] = ACTIONS(3167), - [anon_sym_constexpr] = ACTIONS(3167), - [anon_sym_volatile] = ACTIONS(3167), - [anon_sym_restrict] = ACTIONS(3167), - [anon_sym___restrict__] = ACTIONS(3167), - [anon_sym__Atomic] = ACTIONS(3167), - [anon_sym__Noreturn] = ACTIONS(3167), - [anon_sym_noreturn] = ACTIONS(3167), - [anon_sym_mutable] = ACTIONS(3167), - [anon_sym_constinit] = ACTIONS(3167), - [anon_sym_consteval] = 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_else] = 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___try] = ACTIONS(3167), - [anon_sym___leave] = 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), - [anon_sym___alignof__] = ACTIONS(3167), - [anon_sym___alignof] = ACTIONS(3167), - [anon_sym__alignof] = ACTIONS(3167), - [anon_sym_alignof] = ACTIONS(3167), - [anon_sym__Alignof] = ACTIONS(3167), - [anon_sym_offsetof] = ACTIONS(3167), - [anon_sym__Generic] = ACTIONS(3167), - [anon_sym_asm] = ACTIONS(3167), - [anon_sym___asm__] = 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), - [anon_sym_NULL] = ACTIONS(3167), - [anon_sym_nullptr] = ACTIONS(3167), + [sym_identifier] = ACTIONS(3147), + [aux_sym_preproc_include_token1] = ACTIONS(3147), + [aux_sym_preproc_def_token1] = ACTIONS(3147), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3149), + [aux_sym_preproc_if_token1] = ACTIONS(3147), + [aux_sym_preproc_if_token2] = ACTIONS(3147), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3147), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3147), + [aux_sym_preproc_else_token1] = ACTIONS(3147), + [aux_sym_preproc_elif_token1] = ACTIONS(3147), + [sym_preproc_directive] = ACTIONS(3147), + [anon_sym_LPAREN2] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_TILDE] = ACTIONS(3149), + [anon_sym_DASH] = ACTIONS(3147), + [anon_sym_PLUS] = ACTIONS(3147), + [anon_sym_STAR] = ACTIONS(3149), + [anon_sym_AMP_AMP] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3147), + [anon_sym_SEMI] = ACTIONS(3149), + [anon_sym___extension__] = ACTIONS(3147), + [anon_sym_typedef] = ACTIONS(3147), + [anon_sym_extern] = ACTIONS(3147), + [anon_sym___attribute__] = ACTIONS(3147), + [anon_sym_COLON_COLON] = ACTIONS(3149), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3149), + [anon_sym___declspec] = ACTIONS(3147), + [anon_sym___based] = ACTIONS(3147), + [anon_sym___cdecl] = ACTIONS(3147), + [anon_sym___clrcall] = ACTIONS(3147), + [anon_sym___stdcall] = ACTIONS(3147), + [anon_sym___fastcall] = ACTIONS(3147), + [anon_sym___thiscall] = ACTIONS(3147), + [anon_sym___vectorcall] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_signed] = ACTIONS(3147), + [anon_sym_unsigned] = ACTIONS(3147), + [anon_sym_long] = ACTIONS(3147), + [anon_sym_short] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_static] = ACTIONS(3147), + [anon_sym_register] = ACTIONS(3147), + [anon_sym_inline] = ACTIONS(3147), + [anon_sym___inline] = ACTIONS(3147), + [anon_sym___inline__] = ACTIONS(3147), + [anon_sym___forceinline] = ACTIONS(3147), + [anon_sym_thread_local] = ACTIONS(3147), + [anon_sym___thread] = ACTIONS(3147), + [anon_sym_const] = ACTIONS(3147), + [anon_sym_constexpr] = ACTIONS(3147), + [anon_sym_volatile] = ACTIONS(3147), + [anon_sym_restrict] = ACTIONS(3147), + [anon_sym___restrict__] = ACTIONS(3147), + [anon_sym__Atomic] = ACTIONS(3147), + [anon_sym__Noreturn] = ACTIONS(3147), + [anon_sym_noreturn] = ACTIONS(3147), + [anon_sym_mutable] = ACTIONS(3147), + [anon_sym_constinit] = ACTIONS(3147), + [anon_sym_consteval] = ACTIONS(3147), + [sym_primitive_type] = ACTIONS(3147), + [anon_sym_enum] = ACTIONS(3147), + [anon_sym_class] = ACTIONS(3147), + [anon_sym_struct] = ACTIONS(3147), + [anon_sym_union] = ACTIONS(3147), + [anon_sym_if] = ACTIONS(3147), + [anon_sym_else] = ACTIONS(3147), + [anon_sym_switch] = ACTIONS(3147), + [anon_sym_case] = ACTIONS(3147), + [anon_sym_default] = ACTIONS(3147), + [anon_sym_while] = ACTIONS(3147), + [anon_sym_do] = ACTIONS(3147), + [anon_sym_for] = ACTIONS(3147), + [anon_sym_return] = ACTIONS(3147), + [anon_sym_break] = ACTIONS(3147), + [anon_sym_continue] = ACTIONS(3147), + [anon_sym_goto] = ACTIONS(3147), + [anon_sym___try] = ACTIONS(3147), + [anon_sym___leave] = ACTIONS(3147), + [anon_sym_not] = ACTIONS(3147), + [anon_sym_compl] = ACTIONS(3147), + [anon_sym_DASH_DASH] = ACTIONS(3149), + [anon_sym_PLUS_PLUS] = ACTIONS(3149), + [anon_sym_sizeof] = ACTIONS(3147), + [anon_sym___alignof__] = ACTIONS(3147), + [anon_sym___alignof] = ACTIONS(3147), + [anon_sym__alignof] = ACTIONS(3147), + [anon_sym_alignof] = ACTIONS(3147), + [anon_sym__Alignof] = ACTIONS(3147), + [anon_sym_offsetof] = ACTIONS(3147), + [anon_sym__Generic] = ACTIONS(3147), + [anon_sym_asm] = ACTIONS(3147), + [anon_sym___asm__] = ACTIONS(3147), + [sym_number_literal] = ACTIONS(3149), + [anon_sym_L_SQUOTE] = ACTIONS(3149), + [anon_sym_u_SQUOTE] = ACTIONS(3149), + [anon_sym_U_SQUOTE] = ACTIONS(3149), + [anon_sym_u8_SQUOTE] = ACTIONS(3149), + [anon_sym_SQUOTE] = ACTIONS(3149), + [anon_sym_L_DQUOTE] = ACTIONS(3149), + [anon_sym_u_DQUOTE] = ACTIONS(3149), + [anon_sym_U_DQUOTE] = ACTIONS(3149), + [anon_sym_u8_DQUOTE] = ACTIONS(3149), + [anon_sym_DQUOTE] = ACTIONS(3149), + [sym_true] = ACTIONS(3147), + [sym_false] = ACTIONS(3147), + [anon_sym_NULL] = ACTIONS(3147), + [anon_sym_nullptr] = ACTIONS(3147), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3167), - [anon_sym_decltype] = ACTIONS(3167), - [anon_sym_virtual] = ACTIONS(3167), - [anon_sym_alignas] = 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_namespace] = ACTIONS(3167), - [anon_sym_using] = ACTIONS(3167), - [anon_sym_static_assert] = ACTIONS(3167), - [anon_sym_concept] = ACTIONS(3167), - [anon_sym_co_return] = ACTIONS(3167), - [anon_sym_co_yield] = ACTIONS(3167), - [anon_sym_R_DQUOTE] = ACTIONS(3169), - [anon_sym_LR_DQUOTE] = ACTIONS(3169), - [anon_sym_uR_DQUOTE] = ACTIONS(3169), - [anon_sym_UR_DQUOTE] = ACTIONS(3169), - [anon_sym_u8R_DQUOTE] = ACTIONS(3169), - [anon_sym_co_await] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_requires] = ACTIONS(3167), - [sym_this] = ACTIONS(3167), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3169), - [sym_semgrep_named_ellipsis] = ACTIONS(3169), + [sym_auto] = ACTIONS(3147), + [anon_sym_decltype] = ACTIONS(3147), + [anon_sym_virtual] = ACTIONS(3147), + [anon_sym_alignas] = ACTIONS(3147), + [anon_sym_explicit] = ACTIONS(3147), + [anon_sym_typename] = ACTIONS(3147), + [anon_sym_template] = ACTIONS(3147), + [anon_sym_operator] = ACTIONS(3147), + [anon_sym_try] = ACTIONS(3147), + [anon_sym_delete] = ACTIONS(3147), + [anon_sym_throw] = ACTIONS(3147), + [anon_sym_namespace] = ACTIONS(3147), + [anon_sym_using] = ACTIONS(3147), + [anon_sym_static_assert] = ACTIONS(3147), + [anon_sym_concept] = ACTIONS(3147), + [anon_sym_co_return] = ACTIONS(3147), + [anon_sym_co_yield] = ACTIONS(3147), + [anon_sym_R_DQUOTE] = ACTIONS(3149), + [anon_sym_LR_DQUOTE] = ACTIONS(3149), + [anon_sym_uR_DQUOTE] = ACTIONS(3149), + [anon_sym_UR_DQUOTE] = ACTIONS(3149), + [anon_sym_u8R_DQUOTE] = ACTIONS(3149), + [anon_sym_co_await] = ACTIONS(3147), + [anon_sym_new] = ACTIONS(3147), + [anon_sym_requires] = ACTIONS(3147), + [sym_this] = ACTIONS(3147), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3149), + [sym_semgrep_named_ellipsis] = ACTIONS(3149), }, [468] = { - [sym_identifier] = ACTIONS(3171), - [aux_sym_preproc_include_token1] = ACTIONS(3171), - [aux_sym_preproc_def_token1] = ACTIONS(3171), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3173), - [aux_sym_preproc_if_token1] = ACTIONS(3171), - [aux_sym_preproc_if_token2] = ACTIONS(3171), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3171), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3171), - [aux_sym_preproc_else_token1] = ACTIONS(3171), - [aux_sym_preproc_elif_token1] = ACTIONS(3171), - [sym_preproc_directive] = ACTIONS(3171), - [anon_sym_LPAREN2] = ACTIONS(3173), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3171), - [anon_sym_PLUS] = ACTIONS(3171), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_AMP_AMP] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3171), - [anon_sym_SEMI] = ACTIONS(3173), - [anon_sym___extension__] = ACTIONS(3171), - [anon_sym_typedef] = ACTIONS(3171), - [anon_sym_extern] = ACTIONS(3171), - [anon_sym___attribute__] = ACTIONS(3171), - [anon_sym_COLON_COLON] = ACTIONS(3173), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3173), - [anon_sym___declspec] = ACTIONS(3171), - [anon_sym___based] = ACTIONS(3171), - [anon_sym___cdecl] = ACTIONS(3171), - [anon_sym___clrcall] = ACTIONS(3171), - [anon_sym___stdcall] = ACTIONS(3171), - [anon_sym___fastcall] = ACTIONS(3171), - [anon_sym___thiscall] = ACTIONS(3171), - [anon_sym___vectorcall] = ACTIONS(3171), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_signed] = ACTIONS(3171), - [anon_sym_unsigned] = ACTIONS(3171), - [anon_sym_long] = ACTIONS(3171), - [anon_sym_short] = ACTIONS(3171), - [anon_sym_LBRACK] = ACTIONS(3171), - [anon_sym_static] = ACTIONS(3171), - [anon_sym_register] = ACTIONS(3171), - [anon_sym_inline] = ACTIONS(3171), - [anon_sym___inline] = ACTIONS(3171), - [anon_sym___inline__] = ACTIONS(3171), - [anon_sym___forceinline] = ACTIONS(3171), - [anon_sym_thread_local] = ACTIONS(3171), - [anon_sym___thread] = ACTIONS(3171), - [anon_sym_const] = ACTIONS(3171), - [anon_sym_constexpr] = ACTIONS(3171), - [anon_sym_volatile] = ACTIONS(3171), - [anon_sym_restrict] = ACTIONS(3171), - [anon_sym___restrict__] = ACTIONS(3171), - [anon_sym__Atomic] = ACTIONS(3171), - [anon_sym__Noreturn] = ACTIONS(3171), - [anon_sym_noreturn] = ACTIONS(3171), - [anon_sym_mutable] = ACTIONS(3171), - [anon_sym_constinit] = ACTIONS(3171), - [anon_sym_consteval] = ACTIONS(3171), - [sym_primitive_type] = ACTIONS(3171), - [anon_sym_enum] = ACTIONS(3171), - [anon_sym_class] = ACTIONS(3171), - [anon_sym_struct] = ACTIONS(3171), - [anon_sym_union] = ACTIONS(3171), - [anon_sym_if] = ACTIONS(3171), - [anon_sym_else] = ACTIONS(3171), - [anon_sym_switch] = ACTIONS(3171), - [anon_sym_case] = ACTIONS(3171), - [anon_sym_default] = ACTIONS(3171), - [anon_sym_while] = ACTIONS(3171), - [anon_sym_do] = ACTIONS(3171), - [anon_sym_for] = ACTIONS(3171), - [anon_sym_return] = ACTIONS(3171), - [anon_sym_break] = ACTIONS(3171), - [anon_sym_continue] = ACTIONS(3171), - [anon_sym_goto] = ACTIONS(3171), - [anon_sym___try] = ACTIONS(3171), - [anon_sym___leave] = ACTIONS(3171), - [anon_sym_not] = ACTIONS(3171), - [anon_sym_compl] = ACTIONS(3171), - [anon_sym_DASH_DASH] = ACTIONS(3173), - [anon_sym_PLUS_PLUS] = ACTIONS(3173), - [anon_sym_sizeof] = ACTIONS(3171), - [anon_sym___alignof__] = ACTIONS(3171), - [anon_sym___alignof] = ACTIONS(3171), - [anon_sym__alignof] = ACTIONS(3171), - [anon_sym_alignof] = ACTIONS(3171), - [anon_sym__Alignof] = ACTIONS(3171), - [anon_sym_offsetof] = ACTIONS(3171), - [anon_sym__Generic] = ACTIONS(3171), - [anon_sym_asm] = ACTIONS(3171), - [anon_sym___asm__] = ACTIONS(3171), - [sym_number_literal] = ACTIONS(3173), - [anon_sym_L_SQUOTE] = ACTIONS(3173), - [anon_sym_u_SQUOTE] = ACTIONS(3173), - [anon_sym_U_SQUOTE] = ACTIONS(3173), - [anon_sym_u8_SQUOTE] = ACTIONS(3173), - [anon_sym_SQUOTE] = ACTIONS(3173), - [anon_sym_L_DQUOTE] = ACTIONS(3173), - [anon_sym_u_DQUOTE] = ACTIONS(3173), - [anon_sym_U_DQUOTE] = ACTIONS(3173), - [anon_sym_u8_DQUOTE] = ACTIONS(3173), - [anon_sym_DQUOTE] = ACTIONS(3173), - [sym_true] = ACTIONS(3171), - [sym_false] = ACTIONS(3171), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3171), - [anon_sym_decltype] = ACTIONS(3171), - [anon_sym_virtual] = ACTIONS(3171), - [anon_sym_alignas] = ACTIONS(3171), - [anon_sym_explicit] = ACTIONS(3171), - [anon_sym_typename] = ACTIONS(3171), - [anon_sym_template] = ACTIONS(3171), - [anon_sym_operator] = ACTIONS(3171), - [anon_sym_try] = ACTIONS(3171), - [anon_sym_delete] = ACTIONS(3171), - [anon_sym_throw] = ACTIONS(3171), - [anon_sym_namespace] = ACTIONS(3171), - [anon_sym_using] = ACTIONS(3171), - [anon_sym_static_assert] = ACTIONS(3171), - [anon_sym_concept] = ACTIONS(3171), - [anon_sym_co_return] = ACTIONS(3171), - [anon_sym_co_yield] = ACTIONS(3171), - [anon_sym_R_DQUOTE] = ACTIONS(3173), - [anon_sym_LR_DQUOTE] = ACTIONS(3173), - [anon_sym_uR_DQUOTE] = ACTIONS(3173), - [anon_sym_UR_DQUOTE] = ACTIONS(3173), - [anon_sym_u8R_DQUOTE] = ACTIONS(3173), - [anon_sym_co_await] = ACTIONS(3171), - [anon_sym_new] = ACTIONS(3171), - [anon_sym_requires] = ACTIONS(3171), - [sym_this] = ACTIONS(3171), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3173), - [sym_semgrep_named_ellipsis] = ACTIONS(3173), - }, - [469] = { - [sym_identifier] = ACTIONS(3245), - [aux_sym_preproc_include_token1] = ACTIONS(3245), - [aux_sym_preproc_def_token1] = ACTIONS(3245), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3247), - [aux_sym_preproc_if_token1] = ACTIONS(3245), - [aux_sym_preproc_if_token2] = ACTIONS(3245), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3245), - [aux_sym_preproc_else_token1] = ACTIONS(3245), - [aux_sym_preproc_elif_token1] = ACTIONS(3245), - [sym_preproc_directive] = ACTIONS(3245), - [anon_sym_LPAREN2] = ACTIONS(3247), - [anon_sym_BANG] = ACTIONS(3247), - [anon_sym_TILDE] = ACTIONS(3247), - [anon_sym_DASH] = ACTIONS(3245), - [anon_sym_PLUS] = ACTIONS(3245), - [anon_sym_STAR] = ACTIONS(3247), - [anon_sym_AMP_AMP] = ACTIONS(3247), - [anon_sym_AMP] = ACTIONS(3245), - [anon_sym_SEMI] = ACTIONS(3247), - [anon_sym___extension__] = ACTIONS(3245), - [anon_sym_typedef] = ACTIONS(3245), - [anon_sym_extern] = ACTIONS(3245), - [anon_sym___attribute__] = ACTIONS(3245), - [anon_sym_COLON_COLON] = ACTIONS(3247), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3247), - [anon_sym___declspec] = ACTIONS(3245), - [anon_sym___based] = ACTIONS(3245), - [anon_sym___cdecl] = ACTIONS(3245), - [anon_sym___clrcall] = ACTIONS(3245), - [anon_sym___stdcall] = ACTIONS(3245), - [anon_sym___fastcall] = ACTIONS(3245), - [anon_sym___thiscall] = ACTIONS(3245), - [anon_sym___vectorcall] = ACTIONS(3245), - [anon_sym_LBRACE] = ACTIONS(3247), - [anon_sym_signed] = ACTIONS(3245), - [anon_sym_unsigned] = ACTIONS(3245), - [anon_sym_long] = ACTIONS(3245), - [anon_sym_short] = ACTIONS(3245), - [anon_sym_LBRACK] = ACTIONS(3245), - [anon_sym_static] = ACTIONS(3245), - [anon_sym_register] = ACTIONS(3245), - [anon_sym_inline] = ACTIONS(3245), - [anon_sym___inline] = ACTIONS(3245), - [anon_sym___inline__] = ACTIONS(3245), - [anon_sym___forceinline] = ACTIONS(3245), - [anon_sym_thread_local] = ACTIONS(3245), - [anon_sym___thread] = ACTIONS(3245), - [anon_sym_const] = ACTIONS(3245), - [anon_sym_constexpr] = ACTIONS(3245), - [anon_sym_volatile] = ACTIONS(3245), - [anon_sym_restrict] = ACTIONS(3245), - [anon_sym___restrict__] = ACTIONS(3245), - [anon_sym__Atomic] = ACTIONS(3245), - [anon_sym__Noreturn] = ACTIONS(3245), - [anon_sym_noreturn] = ACTIONS(3245), - [anon_sym_mutable] = ACTIONS(3245), - [anon_sym_constinit] = ACTIONS(3245), - [anon_sym_consteval] = ACTIONS(3245), - [sym_primitive_type] = ACTIONS(3245), - [anon_sym_enum] = ACTIONS(3245), - [anon_sym_class] = ACTIONS(3245), - [anon_sym_struct] = ACTIONS(3245), - [anon_sym_union] = ACTIONS(3245), - [anon_sym_if] = ACTIONS(3245), - [anon_sym_else] = ACTIONS(3245), - [anon_sym_switch] = ACTIONS(3245), - [anon_sym_case] = ACTIONS(3245), - [anon_sym_default] = ACTIONS(3245), - [anon_sym_while] = ACTIONS(3245), - [anon_sym_do] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(3245), - [anon_sym_return] = ACTIONS(3245), - [anon_sym_break] = ACTIONS(3245), - [anon_sym_continue] = ACTIONS(3245), - [anon_sym_goto] = ACTIONS(3245), - [anon_sym___try] = ACTIONS(3245), - [anon_sym___leave] = ACTIONS(3245), - [anon_sym_not] = ACTIONS(3245), - [anon_sym_compl] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_PLUS_PLUS] = ACTIONS(3247), - [anon_sym_sizeof] = ACTIONS(3245), - [anon_sym___alignof__] = ACTIONS(3245), - [anon_sym___alignof] = ACTIONS(3245), - [anon_sym__alignof] = ACTIONS(3245), - [anon_sym_alignof] = ACTIONS(3245), - [anon_sym__Alignof] = ACTIONS(3245), - [anon_sym_offsetof] = ACTIONS(3245), - [anon_sym__Generic] = ACTIONS(3245), - [anon_sym_asm] = ACTIONS(3245), - [anon_sym___asm__] = ACTIONS(3245), - [sym_number_literal] = ACTIONS(3247), - [anon_sym_L_SQUOTE] = ACTIONS(3247), - [anon_sym_u_SQUOTE] = ACTIONS(3247), - [anon_sym_U_SQUOTE] = ACTIONS(3247), - [anon_sym_u8_SQUOTE] = ACTIONS(3247), - [anon_sym_SQUOTE] = ACTIONS(3247), - [anon_sym_L_DQUOTE] = ACTIONS(3247), - [anon_sym_u_DQUOTE] = ACTIONS(3247), - [anon_sym_U_DQUOTE] = ACTIONS(3247), - [anon_sym_u8_DQUOTE] = ACTIONS(3247), - [anon_sym_DQUOTE] = ACTIONS(3247), - [sym_true] = ACTIONS(3245), - [sym_false] = ACTIONS(3245), - [anon_sym_NULL] = ACTIONS(3245), - [anon_sym_nullptr] = ACTIONS(3245), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3245), - [anon_sym_decltype] = ACTIONS(3245), - [anon_sym_virtual] = ACTIONS(3245), - [anon_sym_alignas] = ACTIONS(3245), - [anon_sym_explicit] = ACTIONS(3245), - [anon_sym_typename] = ACTIONS(3245), - [anon_sym_template] = ACTIONS(3245), - [anon_sym_operator] = ACTIONS(3245), - [anon_sym_try] = ACTIONS(3245), - [anon_sym_delete] = ACTIONS(3245), - [anon_sym_throw] = ACTIONS(3245), - [anon_sym_namespace] = ACTIONS(3245), - [anon_sym_using] = ACTIONS(3245), - [anon_sym_static_assert] = ACTIONS(3245), - [anon_sym_concept] = ACTIONS(3245), - [anon_sym_co_return] = ACTIONS(3245), - [anon_sym_co_yield] = ACTIONS(3245), - [anon_sym_R_DQUOTE] = ACTIONS(3247), - [anon_sym_LR_DQUOTE] = ACTIONS(3247), - [anon_sym_uR_DQUOTE] = ACTIONS(3247), - [anon_sym_UR_DQUOTE] = ACTIONS(3247), - [anon_sym_u8R_DQUOTE] = ACTIONS(3247), - [anon_sym_co_await] = ACTIONS(3245), - [anon_sym_new] = ACTIONS(3245), - [anon_sym_requires] = ACTIONS(3245), - [sym_this] = ACTIONS(3245), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3247), - [sym_semgrep_named_ellipsis] = ACTIONS(3247), - }, - [470] = { - [sym_catch_clause] = STATE(374), - [aux_sym_constructor_try_statement_repeat1] = STATE(374), - [sym_identifier] = ACTIONS(3074), - [aux_sym_preproc_include_token1] = ACTIONS(3074), - [aux_sym_preproc_def_token1] = ACTIONS(3074), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3076), - [aux_sym_preproc_if_token1] = ACTIONS(3074), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3074), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3074), - [sym_preproc_directive] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3076), - [anon_sym_BANG] = ACTIONS(3076), - [anon_sym_TILDE] = ACTIONS(3076), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_STAR] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_SEMI] = ACTIONS(3076), - [anon_sym___extension__] = ACTIONS(3074), - [anon_sym_typedef] = ACTIONS(3074), - [anon_sym_extern] = ACTIONS(3074), - [anon_sym___attribute__] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3076), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3076), - [anon_sym___declspec] = ACTIONS(3074), - [anon_sym___based] = ACTIONS(3074), - [anon_sym___cdecl] = ACTIONS(3074), - [anon_sym___clrcall] = ACTIONS(3074), - [anon_sym___stdcall] = ACTIONS(3074), - [anon_sym___fastcall] = ACTIONS(3074), - [anon_sym___thiscall] = ACTIONS(3074), - [anon_sym___vectorcall] = ACTIONS(3074), - [anon_sym_LBRACE] = ACTIONS(3076), - [anon_sym_RBRACE] = ACTIONS(3076), - [anon_sym_signed] = ACTIONS(3074), - [anon_sym_unsigned] = ACTIONS(3074), - [anon_sym_long] = ACTIONS(3074), - [anon_sym_short] = ACTIONS(3074), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_static] = ACTIONS(3074), - [anon_sym_register] = ACTIONS(3074), - [anon_sym_inline] = ACTIONS(3074), - [anon_sym___inline] = ACTIONS(3074), - [anon_sym___inline__] = ACTIONS(3074), - [anon_sym___forceinline] = ACTIONS(3074), - [anon_sym_thread_local] = ACTIONS(3074), - [anon_sym___thread] = ACTIONS(3074), - [anon_sym_const] = ACTIONS(3074), - [anon_sym_constexpr] = ACTIONS(3074), - [anon_sym_volatile] = ACTIONS(3074), - [anon_sym_restrict] = ACTIONS(3074), - [anon_sym___restrict__] = ACTIONS(3074), - [anon_sym__Atomic] = ACTIONS(3074), - [anon_sym__Noreturn] = ACTIONS(3074), - [anon_sym_noreturn] = ACTIONS(3074), - [anon_sym_mutable] = ACTIONS(3074), - [anon_sym_constinit] = ACTIONS(3074), - [anon_sym_consteval] = ACTIONS(3074), - [sym_primitive_type] = ACTIONS(3074), - [anon_sym_enum] = ACTIONS(3074), - [anon_sym_class] = ACTIONS(3074), - [anon_sym_struct] = ACTIONS(3074), - [anon_sym_union] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_switch] = ACTIONS(3074), - [anon_sym_case] = ACTIONS(3074), - [anon_sym_default] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_break] = ACTIONS(3074), - [anon_sym_continue] = ACTIONS(3074), - [anon_sym_goto] = ACTIONS(3074), - [anon_sym___try] = ACTIONS(3074), - [anon_sym___leave] = ACTIONS(3074), - [anon_sym_not] = ACTIONS(3074), - [anon_sym_compl] = ACTIONS(3074), - [anon_sym_DASH_DASH] = ACTIONS(3076), - [anon_sym_PLUS_PLUS] = ACTIONS(3076), - [anon_sym_sizeof] = ACTIONS(3074), - [anon_sym___alignof__] = ACTIONS(3074), - [anon_sym___alignof] = ACTIONS(3074), - [anon_sym__alignof] = ACTIONS(3074), - [anon_sym_alignof] = ACTIONS(3074), - [anon_sym__Alignof] = ACTIONS(3074), - [anon_sym_offsetof] = ACTIONS(3074), - [anon_sym__Generic] = ACTIONS(3074), - [anon_sym_asm] = ACTIONS(3074), - [anon_sym___asm__] = ACTIONS(3074), - [sym_number_literal] = ACTIONS(3076), - [anon_sym_L_SQUOTE] = ACTIONS(3076), - [anon_sym_u_SQUOTE] = ACTIONS(3076), - [anon_sym_U_SQUOTE] = ACTIONS(3076), - [anon_sym_u8_SQUOTE] = ACTIONS(3076), - [anon_sym_SQUOTE] = ACTIONS(3076), - [anon_sym_L_DQUOTE] = ACTIONS(3076), - [anon_sym_u_DQUOTE] = ACTIONS(3076), - [anon_sym_U_DQUOTE] = ACTIONS(3076), - [anon_sym_u8_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE] = ACTIONS(3076), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3074), - [anon_sym_nullptr] = ACTIONS(3074), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3074), - [anon_sym_decltype] = ACTIONS(3074), - [anon_sym_virtual] = ACTIONS(3074), - [anon_sym_alignas] = ACTIONS(3074), - [anon_sym_explicit] = ACTIONS(3074), - [anon_sym_typename] = ACTIONS(3074), - [anon_sym_template] = ACTIONS(3074), - [anon_sym_operator] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_delete] = ACTIONS(3074), - [anon_sym_throw] = ACTIONS(3074), - [anon_sym_namespace] = ACTIONS(3074), - [anon_sym_using] = ACTIONS(3074), - [anon_sym_static_assert] = ACTIONS(3074), - [anon_sym_concept] = ACTIONS(3074), - [anon_sym_co_return] = ACTIONS(3074), - [anon_sym_co_yield] = ACTIONS(3074), - [anon_sym_catch] = ACTIONS(3536), - [anon_sym_R_DQUOTE] = ACTIONS(3076), - [anon_sym_LR_DQUOTE] = ACTIONS(3076), - [anon_sym_uR_DQUOTE] = ACTIONS(3076), - [anon_sym_UR_DQUOTE] = ACTIONS(3076), - [anon_sym_u8R_DQUOTE] = ACTIONS(3076), - [anon_sym_co_await] = ACTIONS(3074), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_requires] = ACTIONS(3074), - [sym_this] = ACTIONS(3074), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3076), - [sym_semgrep_named_ellipsis] = ACTIONS(3076), - }, - [471] = { - [sym_identifier] = ACTIONS(3078), - [aux_sym_preproc_include_token1] = ACTIONS(3078), - [aux_sym_preproc_def_token1] = ACTIONS(3078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3080), - [anon_sym_COMMA] = ACTIONS(3187), - [aux_sym_preproc_if_token1] = ACTIONS(3078), - [aux_sym_preproc_if_token2] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3078), - [aux_sym_preproc_else_token1] = ACTIONS(3078), - [aux_sym_preproc_elif_token1] = ACTIONS(3078), - [sym_preproc_directive] = ACTIONS(3078), - [anon_sym_LPAREN2] = ACTIONS(3080), - [anon_sym_BANG] = ACTIONS(3080), - [anon_sym_TILDE] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_AMP] = ACTIONS(3078), + [sym_identifier] = ACTIONS(3185), + [aux_sym_preproc_include_token1] = ACTIONS(3185), + [aux_sym_preproc_def_token1] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3187), + [aux_sym_preproc_if_token1] = ACTIONS(3185), + [aux_sym_preproc_if_token2] = ACTIONS(3185), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3185), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3185), + [aux_sym_preproc_else_token1] = ACTIONS(3185), + [aux_sym_preproc_elif_token1] = ACTIONS(3185), + [sym_preproc_directive] = ACTIONS(3185), + [anon_sym_LPAREN2] = ACTIONS(3187), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_TILDE] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3185), + [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(3187), + [anon_sym_AMP_AMP] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(3185), [anon_sym_SEMI] = ACTIONS(3187), - [anon_sym___extension__] = ACTIONS(3078), - [anon_sym_typedef] = ACTIONS(3078), - [anon_sym_extern] = ACTIONS(3078), - [anon_sym___attribute__] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3080), - [anon_sym___declspec] = ACTIONS(3078), - [anon_sym___based] = ACTIONS(3078), - [anon_sym___cdecl] = ACTIONS(3078), - [anon_sym___clrcall] = ACTIONS(3078), - [anon_sym___stdcall] = ACTIONS(3078), - [anon_sym___fastcall] = ACTIONS(3078), - [anon_sym___thiscall] = ACTIONS(3078), - [anon_sym___vectorcall] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_signed] = ACTIONS(3078), - [anon_sym_unsigned] = ACTIONS(3078), - [anon_sym_long] = ACTIONS(3078), - [anon_sym_short] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_static] = ACTIONS(3078), - [anon_sym_register] = ACTIONS(3078), - [anon_sym_inline] = ACTIONS(3078), - [anon_sym___inline] = ACTIONS(3078), - [anon_sym___inline__] = ACTIONS(3078), - [anon_sym___forceinline] = ACTIONS(3078), - [anon_sym_thread_local] = ACTIONS(3078), - [anon_sym___thread] = ACTIONS(3078), - [anon_sym_const] = ACTIONS(3078), - [anon_sym_constexpr] = ACTIONS(3078), - [anon_sym_volatile] = ACTIONS(3078), - [anon_sym_restrict] = ACTIONS(3078), - [anon_sym___restrict__] = ACTIONS(3078), - [anon_sym__Atomic] = ACTIONS(3078), - [anon_sym__Noreturn] = ACTIONS(3078), - [anon_sym_noreturn] = ACTIONS(3078), - [anon_sym_mutable] = ACTIONS(3078), - [anon_sym_constinit] = ACTIONS(3078), - [anon_sym_consteval] = ACTIONS(3078), - [sym_primitive_type] = ACTIONS(3078), - [anon_sym_enum] = ACTIONS(3078), - [anon_sym_class] = ACTIONS(3078), - [anon_sym_struct] = ACTIONS(3078), - [anon_sym_union] = ACTIONS(3078), - [anon_sym_if] = ACTIONS(3078), - [anon_sym_switch] = ACTIONS(3078), - [anon_sym_case] = ACTIONS(3078), - [anon_sym_default] = ACTIONS(3078), - [anon_sym_while] = ACTIONS(3078), - [anon_sym_do] = ACTIONS(3078), - [anon_sym_for] = ACTIONS(3078), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_break] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(3078), - [anon_sym_goto] = ACTIONS(3078), - [anon_sym___try] = ACTIONS(3078), - [anon_sym___leave] = ACTIONS(3078), - [anon_sym_not] = ACTIONS(3078), - [anon_sym_compl] = ACTIONS(3078), - [anon_sym_DASH_DASH] = ACTIONS(3080), - [anon_sym_PLUS_PLUS] = ACTIONS(3080), - [anon_sym_sizeof] = ACTIONS(3078), - [anon_sym___alignof__] = ACTIONS(3078), - [anon_sym___alignof] = ACTIONS(3078), - [anon_sym__alignof] = ACTIONS(3078), - [anon_sym_alignof] = ACTIONS(3078), - [anon_sym__Alignof] = ACTIONS(3078), - [anon_sym_offsetof] = ACTIONS(3078), - [anon_sym__Generic] = ACTIONS(3078), - [anon_sym_asm] = ACTIONS(3078), - [anon_sym___asm__] = ACTIONS(3078), - [sym_number_literal] = ACTIONS(3080), - [anon_sym_L_SQUOTE] = ACTIONS(3080), - [anon_sym_u_SQUOTE] = ACTIONS(3080), - [anon_sym_U_SQUOTE] = ACTIONS(3080), - [anon_sym_u8_SQUOTE] = ACTIONS(3080), - [anon_sym_SQUOTE] = ACTIONS(3080), - [anon_sym_L_DQUOTE] = ACTIONS(3080), - [anon_sym_u_DQUOTE] = ACTIONS(3080), - [anon_sym_U_DQUOTE] = ACTIONS(3080), - [anon_sym_u8_DQUOTE] = ACTIONS(3080), - [anon_sym_DQUOTE] = ACTIONS(3080), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [anon_sym_NULL] = ACTIONS(3078), - [anon_sym_nullptr] = ACTIONS(3078), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3078), - [anon_sym_decltype] = ACTIONS(3078), - [anon_sym_virtual] = ACTIONS(3078), - [anon_sym_alignas] = ACTIONS(3078), - [anon_sym_explicit] = ACTIONS(3078), - [anon_sym_typename] = ACTIONS(3078), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_operator] = ACTIONS(3078), - [anon_sym_try] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3078), - [anon_sym_throw] = ACTIONS(3078), - [anon_sym_namespace] = ACTIONS(3078), - [anon_sym_using] = ACTIONS(3078), - [anon_sym_static_assert] = ACTIONS(3078), - [anon_sym_concept] = ACTIONS(3078), - [anon_sym_co_return] = ACTIONS(3078), - [anon_sym_co_yield] = ACTIONS(3078), - [anon_sym_R_DQUOTE] = ACTIONS(3080), - [anon_sym_LR_DQUOTE] = ACTIONS(3080), - [anon_sym_uR_DQUOTE] = ACTIONS(3080), - [anon_sym_UR_DQUOTE] = ACTIONS(3080), - [anon_sym_u8R_DQUOTE] = ACTIONS(3080), - [anon_sym_co_await] = ACTIONS(3078), - [anon_sym_new] = ACTIONS(3078), - [anon_sym_requires] = ACTIONS(3078), - [sym_this] = ACTIONS(3078), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3080), - [sym_semgrep_named_ellipsis] = ACTIONS(3080), + [anon_sym___extension__] = ACTIONS(3185), + [anon_sym_typedef] = ACTIONS(3185), + [anon_sym_extern] = ACTIONS(3185), + [anon_sym___attribute__] = ACTIONS(3185), + [anon_sym_COLON_COLON] = ACTIONS(3187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3187), + [anon_sym___declspec] = ACTIONS(3185), + [anon_sym___based] = ACTIONS(3185), + [anon_sym___cdecl] = ACTIONS(3185), + [anon_sym___clrcall] = ACTIONS(3185), + [anon_sym___stdcall] = ACTIONS(3185), + [anon_sym___fastcall] = ACTIONS(3185), + [anon_sym___thiscall] = ACTIONS(3185), + [anon_sym___vectorcall] = ACTIONS(3185), + [anon_sym_LBRACE] = ACTIONS(3187), + [anon_sym_signed] = ACTIONS(3185), + [anon_sym_unsigned] = ACTIONS(3185), + [anon_sym_long] = ACTIONS(3185), + [anon_sym_short] = ACTIONS(3185), + [anon_sym_LBRACK] = ACTIONS(3185), + [anon_sym_static] = ACTIONS(3185), + [anon_sym_register] = ACTIONS(3185), + [anon_sym_inline] = ACTIONS(3185), + [anon_sym___inline] = ACTIONS(3185), + [anon_sym___inline__] = ACTIONS(3185), + [anon_sym___forceinline] = ACTIONS(3185), + [anon_sym_thread_local] = ACTIONS(3185), + [anon_sym___thread] = ACTIONS(3185), + [anon_sym_const] = ACTIONS(3185), + [anon_sym_constexpr] = ACTIONS(3185), + [anon_sym_volatile] = ACTIONS(3185), + [anon_sym_restrict] = ACTIONS(3185), + [anon_sym___restrict__] = ACTIONS(3185), + [anon_sym__Atomic] = ACTIONS(3185), + [anon_sym__Noreturn] = ACTIONS(3185), + [anon_sym_noreturn] = ACTIONS(3185), + [anon_sym_mutable] = ACTIONS(3185), + [anon_sym_constinit] = ACTIONS(3185), + [anon_sym_consteval] = ACTIONS(3185), + [sym_primitive_type] = ACTIONS(3185), + [anon_sym_enum] = ACTIONS(3185), + [anon_sym_class] = ACTIONS(3185), + [anon_sym_struct] = ACTIONS(3185), + [anon_sym_union] = ACTIONS(3185), + [anon_sym_if] = ACTIONS(3185), + [anon_sym_else] = ACTIONS(3185), + [anon_sym_switch] = ACTIONS(3185), + [anon_sym_case] = ACTIONS(3185), + [anon_sym_default] = ACTIONS(3185), + [anon_sym_while] = ACTIONS(3185), + [anon_sym_do] = ACTIONS(3185), + [anon_sym_for] = ACTIONS(3185), + [anon_sym_return] = ACTIONS(3185), + [anon_sym_break] = ACTIONS(3185), + [anon_sym_continue] = ACTIONS(3185), + [anon_sym_goto] = ACTIONS(3185), + [anon_sym___try] = ACTIONS(3185), + [anon_sym___leave] = ACTIONS(3185), + [anon_sym_not] = ACTIONS(3185), + [anon_sym_compl] = ACTIONS(3185), + [anon_sym_DASH_DASH] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3187), + [anon_sym_sizeof] = ACTIONS(3185), + [anon_sym___alignof__] = ACTIONS(3185), + [anon_sym___alignof] = ACTIONS(3185), + [anon_sym__alignof] = ACTIONS(3185), + [anon_sym_alignof] = ACTIONS(3185), + [anon_sym__Alignof] = ACTIONS(3185), + [anon_sym_offsetof] = ACTIONS(3185), + [anon_sym__Generic] = ACTIONS(3185), + [anon_sym_asm] = ACTIONS(3185), + [anon_sym___asm__] = ACTIONS(3185), + [sym_number_literal] = ACTIONS(3187), + [anon_sym_L_SQUOTE] = ACTIONS(3187), + [anon_sym_u_SQUOTE] = ACTIONS(3187), + [anon_sym_U_SQUOTE] = ACTIONS(3187), + [anon_sym_u8_SQUOTE] = ACTIONS(3187), + [anon_sym_SQUOTE] = ACTIONS(3187), + [anon_sym_L_DQUOTE] = ACTIONS(3187), + [anon_sym_u_DQUOTE] = ACTIONS(3187), + [anon_sym_U_DQUOTE] = ACTIONS(3187), + [anon_sym_u8_DQUOTE] = ACTIONS(3187), + [anon_sym_DQUOTE] = ACTIONS(3187), + [sym_true] = ACTIONS(3185), + [sym_false] = ACTIONS(3185), + [anon_sym_NULL] = ACTIONS(3185), + [anon_sym_nullptr] = ACTIONS(3185), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3185), + [anon_sym_decltype] = ACTIONS(3185), + [anon_sym_virtual] = ACTIONS(3185), + [anon_sym_alignas] = ACTIONS(3185), + [anon_sym_explicit] = ACTIONS(3185), + [anon_sym_typename] = ACTIONS(3185), + [anon_sym_template] = ACTIONS(3185), + [anon_sym_operator] = ACTIONS(3185), + [anon_sym_try] = ACTIONS(3185), + [anon_sym_delete] = ACTIONS(3185), + [anon_sym_throw] = ACTIONS(3185), + [anon_sym_namespace] = ACTIONS(3185), + [anon_sym_using] = ACTIONS(3185), + [anon_sym_static_assert] = ACTIONS(3185), + [anon_sym_concept] = ACTIONS(3185), + [anon_sym_co_return] = ACTIONS(3185), + [anon_sym_co_yield] = ACTIONS(3185), + [anon_sym_R_DQUOTE] = ACTIONS(3187), + [anon_sym_LR_DQUOTE] = ACTIONS(3187), + [anon_sym_uR_DQUOTE] = ACTIONS(3187), + [anon_sym_UR_DQUOTE] = ACTIONS(3187), + [anon_sym_u8R_DQUOTE] = ACTIONS(3187), + [anon_sym_co_await] = ACTIONS(3185), + [anon_sym_new] = ACTIONS(3185), + [anon_sym_requires] = ACTIONS(3185), + [sym_this] = ACTIONS(3185), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3187), + [sym_semgrep_named_ellipsis] = ACTIONS(3187), }, - [472] = { - [sym_identifier] = ACTIONS(3193), - [aux_sym_preproc_include_token1] = ACTIONS(3193), - [aux_sym_preproc_def_token1] = ACTIONS(3193), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3195), - [aux_sym_preproc_if_token1] = ACTIONS(3193), - [aux_sym_preproc_if_token2] = ACTIONS(3193), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3193), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3193), - [aux_sym_preproc_else_token1] = ACTIONS(3193), - [aux_sym_preproc_elif_token1] = ACTIONS(3193), - [sym_preproc_directive] = ACTIONS(3193), - [anon_sym_LPAREN2] = ACTIONS(3195), - [anon_sym_BANG] = ACTIONS(3195), - [anon_sym_TILDE] = ACTIONS(3195), - [anon_sym_DASH] = ACTIONS(3193), - [anon_sym_PLUS] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3195), - [anon_sym___extension__] = ACTIONS(3193), - [anon_sym_typedef] = ACTIONS(3193), - [anon_sym_extern] = ACTIONS(3193), - [anon_sym___attribute__] = ACTIONS(3193), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3195), - [anon_sym___declspec] = ACTIONS(3193), - [anon_sym___based] = ACTIONS(3193), - [anon_sym___cdecl] = ACTIONS(3193), - [anon_sym___clrcall] = ACTIONS(3193), - [anon_sym___stdcall] = ACTIONS(3193), - [anon_sym___fastcall] = ACTIONS(3193), - [anon_sym___thiscall] = ACTIONS(3193), - [anon_sym___vectorcall] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3195), - [anon_sym_signed] = ACTIONS(3193), - [anon_sym_unsigned] = ACTIONS(3193), - [anon_sym_long] = ACTIONS(3193), - [anon_sym_short] = ACTIONS(3193), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_static] = ACTIONS(3193), - [anon_sym_register] = ACTIONS(3193), - [anon_sym_inline] = ACTIONS(3193), - [anon_sym___inline] = ACTIONS(3193), - [anon_sym___inline__] = ACTIONS(3193), - [anon_sym___forceinline] = ACTIONS(3193), - [anon_sym_thread_local] = ACTIONS(3193), - [anon_sym___thread] = ACTIONS(3193), - [anon_sym_const] = ACTIONS(3193), - [anon_sym_constexpr] = ACTIONS(3193), - [anon_sym_volatile] = ACTIONS(3193), - [anon_sym_restrict] = ACTIONS(3193), - [anon_sym___restrict__] = ACTIONS(3193), - [anon_sym__Atomic] = ACTIONS(3193), - [anon_sym__Noreturn] = ACTIONS(3193), - [anon_sym_noreturn] = ACTIONS(3193), - [anon_sym_mutable] = ACTIONS(3193), - [anon_sym_constinit] = ACTIONS(3193), - [anon_sym_consteval] = ACTIONS(3193), - [sym_primitive_type] = ACTIONS(3193), - [anon_sym_enum] = ACTIONS(3193), - [anon_sym_class] = ACTIONS(3193), - [anon_sym_struct] = ACTIONS(3193), - [anon_sym_union] = ACTIONS(3193), - [anon_sym_if] = ACTIONS(3193), - [anon_sym_else] = ACTIONS(3193), - [anon_sym_switch] = ACTIONS(3193), - [anon_sym_case] = ACTIONS(3193), - [anon_sym_default] = ACTIONS(3193), - [anon_sym_while] = ACTIONS(3193), - [anon_sym_do] = ACTIONS(3193), - [anon_sym_for] = ACTIONS(3193), - [anon_sym_return] = ACTIONS(3193), - [anon_sym_break] = ACTIONS(3193), - [anon_sym_continue] = ACTIONS(3193), - [anon_sym_goto] = ACTIONS(3193), - [anon_sym___try] = ACTIONS(3193), - [anon_sym___leave] = ACTIONS(3193), - [anon_sym_not] = ACTIONS(3193), - [anon_sym_compl] = ACTIONS(3193), - [anon_sym_DASH_DASH] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_sizeof] = ACTIONS(3193), - [anon_sym___alignof__] = ACTIONS(3193), - [anon_sym___alignof] = ACTIONS(3193), - [anon_sym__alignof] = ACTIONS(3193), - [anon_sym_alignof] = ACTIONS(3193), - [anon_sym__Alignof] = ACTIONS(3193), - [anon_sym_offsetof] = ACTIONS(3193), - [anon_sym__Generic] = ACTIONS(3193), - [anon_sym_asm] = ACTIONS(3193), - [anon_sym___asm__] = ACTIONS(3193), - [sym_number_literal] = ACTIONS(3195), - [anon_sym_L_SQUOTE] = ACTIONS(3195), - [anon_sym_u_SQUOTE] = ACTIONS(3195), - [anon_sym_U_SQUOTE] = ACTIONS(3195), - [anon_sym_u8_SQUOTE] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(3195), - [anon_sym_L_DQUOTE] = ACTIONS(3195), - [anon_sym_u_DQUOTE] = ACTIONS(3195), - [anon_sym_U_DQUOTE] = ACTIONS(3195), - [anon_sym_u8_DQUOTE] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(3195), - [sym_true] = ACTIONS(3193), - [sym_false] = ACTIONS(3193), - [anon_sym_NULL] = ACTIONS(3193), - [anon_sym_nullptr] = ACTIONS(3193), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3193), - [anon_sym_decltype] = ACTIONS(3193), - [anon_sym_virtual] = ACTIONS(3193), - [anon_sym_alignas] = ACTIONS(3193), - [anon_sym_explicit] = ACTIONS(3193), - [anon_sym_typename] = ACTIONS(3193), - [anon_sym_template] = ACTIONS(3193), - [anon_sym_operator] = ACTIONS(3193), - [anon_sym_try] = ACTIONS(3193), - [anon_sym_delete] = ACTIONS(3193), - [anon_sym_throw] = ACTIONS(3193), - [anon_sym_namespace] = ACTIONS(3193), - [anon_sym_using] = ACTIONS(3193), - [anon_sym_static_assert] = ACTIONS(3193), - [anon_sym_concept] = ACTIONS(3193), - [anon_sym_co_return] = ACTIONS(3193), - [anon_sym_co_yield] = ACTIONS(3193), - [anon_sym_R_DQUOTE] = ACTIONS(3195), - [anon_sym_LR_DQUOTE] = ACTIONS(3195), - [anon_sym_uR_DQUOTE] = ACTIONS(3195), - [anon_sym_UR_DQUOTE] = ACTIONS(3195), - [anon_sym_u8R_DQUOTE] = ACTIONS(3195), - [anon_sym_co_await] = ACTIONS(3193), - [anon_sym_new] = ACTIONS(3193), - [anon_sym_requires] = ACTIONS(3193), - [sym_this] = ACTIONS(3193), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3195), - [sym_semgrep_named_ellipsis] = ACTIONS(3195), - }, - [473] = { - [sym_identifier] = ACTIONS(3201), - [aux_sym_preproc_include_token1] = ACTIONS(3201), - [aux_sym_preproc_def_token1] = ACTIONS(3201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3203), - [aux_sym_preproc_if_token1] = ACTIONS(3201), - [aux_sym_preproc_if_token2] = ACTIONS(3201), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3201), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3201), - [aux_sym_preproc_else_token1] = ACTIONS(3201), - [aux_sym_preproc_elif_token1] = ACTIONS(3201), - [sym_preproc_directive] = ACTIONS(3201), - [anon_sym_LPAREN2] = ACTIONS(3203), - [anon_sym_BANG] = ACTIONS(3203), - [anon_sym_TILDE] = ACTIONS(3203), - [anon_sym_DASH] = ACTIONS(3201), - [anon_sym_PLUS] = ACTIONS(3201), - [anon_sym_STAR] = ACTIONS(3203), - [anon_sym_AMP_AMP] = ACTIONS(3203), - [anon_sym_AMP] = ACTIONS(3201), - [anon_sym_SEMI] = ACTIONS(3203), - [anon_sym___extension__] = ACTIONS(3201), - [anon_sym_typedef] = ACTIONS(3201), - [anon_sym_extern] = ACTIONS(3201), - [anon_sym___attribute__] = ACTIONS(3201), - [anon_sym_COLON_COLON] = ACTIONS(3203), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3203), - [anon_sym___declspec] = ACTIONS(3201), - [anon_sym___based] = ACTIONS(3201), - [anon_sym___cdecl] = ACTIONS(3201), - [anon_sym___clrcall] = ACTIONS(3201), - [anon_sym___stdcall] = ACTIONS(3201), - [anon_sym___fastcall] = ACTIONS(3201), - [anon_sym___thiscall] = ACTIONS(3201), - [anon_sym___vectorcall] = ACTIONS(3201), - [anon_sym_LBRACE] = ACTIONS(3203), - [anon_sym_signed] = ACTIONS(3201), - [anon_sym_unsigned] = ACTIONS(3201), - [anon_sym_long] = ACTIONS(3201), - [anon_sym_short] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_static] = ACTIONS(3201), - [anon_sym_register] = ACTIONS(3201), - [anon_sym_inline] = ACTIONS(3201), - [anon_sym___inline] = ACTIONS(3201), - [anon_sym___inline__] = ACTIONS(3201), - [anon_sym___forceinline] = ACTIONS(3201), - [anon_sym_thread_local] = ACTIONS(3201), - [anon_sym___thread] = ACTIONS(3201), - [anon_sym_const] = ACTIONS(3201), - [anon_sym_constexpr] = ACTIONS(3201), - [anon_sym_volatile] = ACTIONS(3201), - [anon_sym_restrict] = ACTIONS(3201), - [anon_sym___restrict__] = ACTIONS(3201), - [anon_sym__Atomic] = ACTIONS(3201), - [anon_sym__Noreturn] = ACTIONS(3201), - [anon_sym_noreturn] = ACTIONS(3201), - [anon_sym_mutable] = ACTIONS(3201), - [anon_sym_constinit] = ACTIONS(3201), - [anon_sym_consteval] = ACTIONS(3201), - [sym_primitive_type] = ACTIONS(3201), - [anon_sym_enum] = ACTIONS(3201), - [anon_sym_class] = ACTIONS(3201), - [anon_sym_struct] = ACTIONS(3201), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_if] = ACTIONS(3201), - [anon_sym_else] = ACTIONS(3201), - [anon_sym_switch] = ACTIONS(3201), - [anon_sym_case] = ACTIONS(3201), - [anon_sym_default] = ACTIONS(3201), - [anon_sym_while] = ACTIONS(3201), - [anon_sym_do] = ACTIONS(3201), - [anon_sym_for] = ACTIONS(3201), - [anon_sym_return] = ACTIONS(3201), - [anon_sym_break] = ACTIONS(3201), - [anon_sym_continue] = ACTIONS(3201), - [anon_sym_goto] = ACTIONS(3201), - [anon_sym___try] = ACTIONS(3201), - [anon_sym___leave] = ACTIONS(3201), - [anon_sym_not] = ACTIONS(3201), - [anon_sym_compl] = ACTIONS(3201), - [anon_sym_DASH_DASH] = ACTIONS(3203), - [anon_sym_PLUS_PLUS] = ACTIONS(3203), - [anon_sym_sizeof] = ACTIONS(3201), - [anon_sym___alignof__] = ACTIONS(3201), - [anon_sym___alignof] = ACTIONS(3201), - [anon_sym__alignof] = ACTIONS(3201), - [anon_sym_alignof] = ACTIONS(3201), - [anon_sym__Alignof] = ACTIONS(3201), - [anon_sym_offsetof] = ACTIONS(3201), - [anon_sym__Generic] = ACTIONS(3201), - [anon_sym_asm] = ACTIONS(3201), - [anon_sym___asm__] = ACTIONS(3201), - [sym_number_literal] = ACTIONS(3203), - [anon_sym_L_SQUOTE] = ACTIONS(3203), - [anon_sym_u_SQUOTE] = ACTIONS(3203), - [anon_sym_U_SQUOTE] = ACTIONS(3203), - [anon_sym_u8_SQUOTE] = ACTIONS(3203), - [anon_sym_SQUOTE] = ACTIONS(3203), - [anon_sym_L_DQUOTE] = ACTIONS(3203), - [anon_sym_u_DQUOTE] = ACTIONS(3203), - [anon_sym_U_DQUOTE] = ACTIONS(3203), - [anon_sym_u8_DQUOTE] = ACTIONS(3203), - [anon_sym_DQUOTE] = ACTIONS(3203), - [sym_true] = ACTIONS(3201), - [sym_false] = ACTIONS(3201), - [anon_sym_NULL] = ACTIONS(3201), - [anon_sym_nullptr] = ACTIONS(3201), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3201), - [anon_sym_decltype] = ACTIONS(3201), - [anon_sym_virtual] = ACTIONS(3201), - [anon_sym_alignas] = ACTIONS(3201), - [anon_sym_explicit] = ACTIONS(3201), - [anon_sym_typename] = ACTIONS(3201), - [anon_sym_template] = ACTIONS(3201), - [anon_sym_operator] = ACTIONS(3201), - [anon_sym_try] = ACTIONS(3201), - [anon_sym_delete] = ACTIONS(3201), - [anon_sym_throw] = ACTIONS(3201), - [anon_sym_namespace] = ACTIONS(3201), - [anon_sym_using] = ACTIONS(3201), - [anon_sym_static_assert] = ACTIONS(3201), - [anon_sym_concept] = ACTIONS(3201), - [anon_sym_co_return] = ACTIONS(3201), - [anon_sym_co_yield] = ACTIONS(3201), - [anon_sym_R_DQUOTE] = ACTIONS(3203), - [anon_sym_LR_DQUOTE] = ACTIONS(3203), - [anon_sym_uR_DQUOTE] = ACTIONS(3203), - [anon_sym_UR_DQUOTE] = ACTIONS(3203), - [anon_sym_u8R_DQUOTE] = ACTIONS(3203), - [anon_sym_co_await] = ACTIONS(3201), - [anon_sym_new] = ACTIONS(3201), - [anon_sym_requires] = ACTIONS(3201), - [sym_this] = ACTIONS(3201), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3203), - [sym_semgrep_named_ellipsis] = ACTIONS(3203), - }, - [474] = { - [sym_catch_clause] = STATE(374), - [aux_sym_constructor_try_statement_repeat1] = STATE(374), - [sym_identifier] = ACTIONS(3070), - [aux_sym_preproc_include_token1] = ACTIONS(3070), - [aux_sym_preproc_def_token1] = ACTIONS(3070), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3072), - [aux_sym_preproc_if_token1] = ACTIONS(3070), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3070), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3070), - [sym_preproc_directive] = ACTIONS(3070), - [anon_sym_LPAREN2] = ACTIONS(3072), - [anon_sym_BANG] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_AMP] = ACTIONS(3070), - [anon_sym_SEMI] = ACTIONS(3072), - [anon_sym___extension__] = ACTIONS(3070), - [anon_sym_typedef] = ACTIONS(3070), - [anon_sym_extern] = ACTIONS(3070), - [anon_sym___attribute__] = ACTIONS(3070), - [anon_sym_COLON_COLON] = ACTIONS(3072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3072), - [anon_sym___declspec] = ACTIONS(3070), - [anon_sym___based] = ACTIONS(3070), - [anon_sym___cdecl] = ACTIONS(3070), - [anon_sym___clrcall] = ACTIONS(3070), - [anon_sym___stdcall] = ACTIONS(3070), - [anon_sym___fastcall] = ACTIONS(3070), - [anon_sym___thiscall] = ACTIONS(3070), - [anon_sym___vectorcall] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_RBRACE] = ACTIONS(3072), - [anon_sym_signed] = ACTIONS(3070), - [anon_sym_unsigned] = ACTIONS(3070), - [anon_sym_long] = ACTIONS(3070), - [anon_sym_short] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(3070), - [anon_sym_static] = ACTIONS(3070), - [anon_sym_register] = ACTIONS(3070), - [anon_sym_inline] = ACTIONS(3070), - [anon_sym___inline] = ACTIONS(3070), - [anon_sym___inline__] = ACTIONS(3070), - [anon_sym___forceinline] = ACTIONS(3070), - [anon_sym_thread_local] = ACTIONS(3070), - [anon_sym___thread] = ACTIONS(3070), - [anon_sym_const] = ACTIONS(3070), - [anon_sym_constexpr] = ACTIONS(3070), - [anon_sym_volatile] = ACTIONS(3070), - [anon_sym_restrict] = ACTIONS(3070), - [anon_sym___restrict__] = ACTIONS(3070), - [anon_sym__Atomic] = ACTIONS(3070), - [anon_sym__Noreturn] = ACTIONS(3070), - [anon_sym_noreturn] = ACTIONS(3070), - [anon_sym_mutable] = ACTIONS(3070), - [anon_sym_constinit] = ACTIONS(3070), - [anon_sym_consteval] = ACTIONS(3070), - [sym_primitive_type] = ACTIONS(3070), - [anon_sym_enum] = ACTIONS(3070), - [anon_sym_class] = ACTIONS(3070), - [anon_sym_struct] = ACTIONS(3070), - [anon_sym_union] = ACTIONS(3070), - [anon_sym_if] = ACTIONS(3070), - [anon_sym_switch] = ACTIONS(3070), - [anon_sym_case] = ACTIONS(3070), - [anon_sym_default] = ACTIONS(3070), - [anon_sym_while] = ACTIONS(3070), - [anon_sym_do] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3070), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_break] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(3070), - [anon_sym_goto] = ACTIONS(3070), - [anon_sym___try] = ACTIONS(3070), - [anon_sym___leave] = ACTIONS(3070), - [anon_sym_not] = ACTIONS(3070), - [anon_sym_compl] = ACTIONS(3070), - [anon_sym_DASH_DASH] = ACTIONS(3072), - [anon_sym_PLUS_PLUS] = ACTIONS(3072), - [anon_sym_sizeof] = ACTIONS(3070), - [anon_sym___alignof__] = ACTIONS(3070), - [anon_sym___alignof] = ACTIONS(3070), - [anon_sym__alignof] = ACTIONS(3070), - [anon_sym_alignof] = ACTIONS(3070), - [anon_sym__Alignof] = ACTIONS(3070), - [anon_sym_offsetof] = ACTIONS(3070), - [anon_sym__Generic] = ACTIONS(3070), - [anon_sym_asm] = ACTIONS(3070), - [anon_sym___asm__] = ACTIONS(3070), - [sym_number_literal] = ACTIONS(3072), - [anon_sym_L_SQUOTE] = ACTIONS(3072), - [anon_sym_u_SQUOTE] = ACTIONS(3072), - [anon_sym_U_SQUOTE] = ACTIONS(3072), - [anon_sym_u8_SQUOTE] = ACTIONS(3072), - [anon_sym_SQUOTE] = ACTIONS(3072), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3070), - [sym_false] = ACTIONS(3070), - [anon_sym_NULL] = ACTIONS(3070), - [anon_sym_nullptr] = ACTIONS(3070), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3070), - [anon_sym_decltype] = ACTIONS(3070), - [anon_sym_virtual] = ACTIONS(3070), - [anon_sym_alignas] = ACTIONS(3070), - [anon_sym_explicit] = ACTIONS(3070), - [anon_sym_typename] = ACTIONS(3070), - [anon_sym_template] = ACTIONS(3070), - [anon_sym_operator] = ACTIONS(3070), - [anon_sym_try] = ACTIONS(3070), - [anon_sym_delete] = ACTIONS(3070), - [anon_sym_throw] = ACTIONS(3070), - [anon_sym_namespace] = ACTIONS(3070), - [anon_sym_using] = ACTIONS(3070), - [anon_sym_static_assert] = ACTIONS(3070), - [anon_sym_concept] = ACTIONS(3070), - [anon_sym_co_return] = ACTIONS(3070), - [anon_sym_co_yield] = ACTIONS(3070), - [anon_sym_catch] = ACTIONS(3536), - [anon_sym_R_DQUOTE] = ACTIONS(3072), - [anon_sym_LR_DQUOTE] = ACTIONS(3072), - [anon_sym_uR_DQUOTE] = ACTIONS(3072), - [anon_sym_UR_DQUOTE] = ACTIONS(3072), - [anon_sym_u8R_DQUOTE] = ACTIONS(3072), - [anon_sym_co_await] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3070), - [anon_sym_requires] = ACTIONS(3070), - [sym_this] = ACTIONS(3070), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3072), - [sym_semgrep_named_ellipsis] = ACTIONS(3072), - }, - [475] = { - [sym_identifier] = ACTIONS(3223), - [aux_sym_preproc_include_token1] = ACTIONS(3223), - [aux_sym_preproc_def_token1] = ACTIONS(3223), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3225), - [aux_sym_preproc_if_token1] = ACTIONS(3223), - [aux_sym_preproc_if_token2] = ACTIONS(3223), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3223), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3223), - [aux_sym_preproc_else_token1] = ACTIONS(3223), - [aux_sym_preproc_elif_token1] = ACTIONS(3223), - [sym_preproc_directive] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(3225), - [anon_sym_BANG] = ACTIONS(3225), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_STAR] = ACTIONS(3225), - [anon_sym_AMP_AMP] = ACTIONS(3225), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3225), - [anon_sym___extension__] = ACTIONS(3223), - [anon_sym_typedef] = ACTIONS(3223), - [anon_sym_extern] = ACTIONS(3223), - [anon_sym___attribute__] = ACTIONS(3223), - [anon_sym_COLON_COLON] = ACTIONS(3225), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3225), - [anon_sym___declspec] = ACTIONS(3223), - [anon_sym___based] = ACTIONS(3223), - [anon_sym___cdecl] = ACTIONS(3223), - [anon_sym___clrcall] = ACTIONS(3223), - [anon_sym___stdcall] = ACTIONS(3223), - [anon_sym___fastcall] = ACTIONS(3223), - [anon_sym___thiscall] = ACTIONS(3223), - [anon_sym___vectorcall] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3225), - [anon_sym_signed] = ACTIONS(3223), - [anon_sym_unsigned] = ACTIONS(3223), - [anon_sym_long] = ACTIONS(3223), - [anon_sym_short] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_register] = ACTIONS(3223), - [anon_sym_inline] = ACTIONS(3223), - [anon_sym___inline] = ACTIONS(3223), - [anon_sym___inline__] = ACTIONS(3223), - [anon_sym___forceinline] = ACTIONS(3223), - [anon_sym_thread_local] = ACTIONS(3223), - [anon_sym___thread] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_constexpr] = ACTIONS(3223), - [anon_sym_volatile] = ACTIONS(3223), - [anon_sym_restrict] = ACTIONS(3223), - [anon_sym___restrict__] = ACTIONS(3223), - [anon_sym__Atomic] = ACTIONS(3223), - [anon_sym__Noreturn] = ACTIONS(3223), - [anon_sym_noreturn] = ACTIONS(3223), - [anon_sym_mutable] = ACTIONS(3223), - [anon_sym_constinit] = ACTIONS(3223), - [anon_sym_consteval] = ACTIONS(3223), - [sym_primitive_type] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_struct] = ACTIONS(3223), - [anon_sym_union] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_else] = ACTIONS(3223), - [anon_sym_switch] = ACTIONS(3223), - [anon_sym_case] = ACTIONS(3223), - [anon_sym_default] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_goto] = ACTIONS(3223), - [anon_sym___try] = ACTIONS(3223), - [anon_sym___leave] = ACTIONS(3223), - [anon_sym_not] = ACTIONS(3223), - [anon_sym_compl] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3225), - [anon_sym_PLUS_PLUS] = ACTIONS(3225), - [anon_sym_sizeof] = ACTIONS(3223), - [anon_sym___alignof__] = ACTIONS(3223), - [anon_sym___alignof] = ACTIONS(3223), - [anon_sym__alignof] = ACTIONS(3223), - [anon_sym_alignof] = ACTIONS(3223), - [anon_sym__Alignof] = ACTIONS(3223), - [anon_sym_offsetof] = ACTIONS(3223), - [anon_sym__Generic] = ACTIONS(3223), - [anon_sym_asm] = ACTIONS(3223), - [anon_sym___asm__] = ACTIONS(3223), - [sym_number_literal] = ACTIONS(3225), - [anon_sym_L_SQUOTE] = ACTIONS(3225), - [anon_sym_u_SQUOTE] = ACTIONS(3225), - [anon_sym_U_SQUOTE] = ACTIONS(3225), - [anon_sym_u8_SQUOTE] = ACTIONS(3225), - [anon_sym_SQUOTE] = ACTIONS(3225), - [anon_sym_L_DQUOTE] = ACTIONS(3225), - [anon_sym_u_DQUOTE] = ACTIONS(3225), - [anon_sym_U_DQUOTE] = ACTIONS(3225), - [anon_sym_u8_DQUOTE] = ACTIONS(3225), - [anon_sym_DQUOTE] = ACTIONS(3225), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [anon_sym_NULL] = ACTIONS(3223), - [anon_sym_nullptr] = ACTIONS(3223), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3223), - [anon_sym_decltype] = ACTIONS(3223), - [anon_sym_virtual] = ACTIONS(3223), - [anon_sym_alignas] = ACTIONS(3223), - [anon_sym_explicit] = ACTIONS(3223), - [anon_sym_typename] = ACTIONS(3223), - [anon_sym_template] = ACTIONS(3223), - [anon_sym_operator] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_delete] = ACTIONS(3223), - [anon_sym_throw] = ACTIONS(3223), - [anon_sym_namespace] = ACTIONS(3223), - [anon_sym_using] = ACTIONS(3223), - [anon_sym_static_assert] = ACTIONS(3223), - [anon_sym_concept] = ACTIONS(3223), - [anon_sym_co_return] = ACTIONS(3223), - [anon_sym_co_yield] = ACTIONS(3223), - [anon_sym_R_DQUOTE] = ACTIONS(3225), - [anon_sym_LR_DQUOTE] = ACTIONS(3225), - [anon_sym_uR_DQUOTE] = ACTIONS(3225), - [anon_sym_UR_DQUOTE] = ACTIONS(3225), - [anon_sym_u8R_DQUOTE] = ACTIONS(3225), - [anon_sym_co_await] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_requires] = ACTIONS(3223), - [sym_this] = ACTIONS(3223), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3225), - [sym_semgrep_named_ellipsis] = ACTIONS(3225), - }, - [476] = { + [469] = { [sym_identifier] = ACTIONS(3189), [aux_sym_preproc_include_token1] = ACTIONS(3189), [aux_sym_preproc_def_token1] = ACTIONS(3189), @@ -131534,421 +120740,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3191), [sym_semgrep_named_ellipsis] = ACTIONS(3191), }, - [477] = { - [sym_type_qualifier] = STATE(5046), - [sym_type_specifier] = STATE(6309), - [sym_sized_type_specifier] = STATE(3473), - [sym_enum_specifier] = STATE(3473), - [sym_struct_specifier] = STATE(3473), - [sym_union_specifier] = STATE(3473), - [sym_expression] = STATE(5860), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_type_descriptor] = STATE(8863), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_placeholder_type_specifier] = STATE(3473), - [sym_decltype_auto] = STATE(3472), - [sym_decltype] = STATE(3429), - [sym_class_specifier] = STATE(3473), - [sym_class_name] = STATE(9595), - [sym_dependent_type] = STATE(3473), - [sym_template_type] = STATE(6760), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_type_parameter_pack_expansion] = STATE(9387), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7134), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(6799), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [aux_sym_type_definition_type_repeat1] = STATE(5046), - [aux_sym_sized_type_specifier_repeat1] = STATE(6532), - [sym_identifier] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym___extension__] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_signed] = ACTIONS(3283), - [anon_sym_unsigned] = ACTIONS(3283), - [anon_sym_long] = ACTIONS(3283), - [anon_sym_short] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_constexpr] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_restrict] = ACTIONS(2213), - [anon_sym___restrict__] = ACTIONS(2213), - [anon_sym__Atomic] = ACTIONS(2213), - [anon_sym__Noreturn] = ACTIONS(2213), - [anon_sym_noreturn] = ACTIONS(2213), - [anon_sym_mutable] = ACTIONS(2213), - [anon_sym_constinit] = ACTIONS(2213), - [anon_sym_consteval] = ACTIONS(2213), - [sym_primitive_type] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3317), - [anon_sym_decltype] = ACTIONS(3319), - [anon_sym_typename] = ACTIONS(3321), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), - }, - [478] = { - [sym_identifier] = ACTIONS(3215), - [aux_sym_preproc_include_token1] = ACTIONS(3215), - [aux_sym_preproc_def_token1] = ACTIONS(3215), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3217), - [aux_sym_preproc_if_token1] = ACTIONS(3215), - [aux_sym_preproc_if_token2] = ACTIONS(3215), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3215), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3215), - [aux_sym_preproc_else_token1] = ACTIONS(3215), - [aux_sym_preproc_elif_token1] = ACTIONS(3215), - [sym_preproc_directive] = ACTIONS(3215), - [anon_sym_LPAREN2] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_STAR] = ACTIONS(3217), - [anon_sym_AMP_AMP] = ACTIONS(3217), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym___extension__] = ACTIONS(3215), - [anon_sym_typedef] = ACTIONS(3215), - [anon_sym_extern] = ACTIONS(3215), - [anon_sym___attribute__] = ACTIONS(3215), - [anon_sym_COLON_COLON] = ACTIONS(3217), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3217), - [anon_sym___declspec] = ACTIONS(3215), - [anon_sym___based] = ACTIONS(3215), - [anon_sym___cdecl] = ACTIONS(3215), - [anon_sym___clrcall] = ACTIONS(3215), - [anon_sym___stdcall] = ACTIONS(3215), - [anon_sym___fastcall] = ACTIONS(3215), - [anon_sym___thiscall] = ACTIONS(3215), - [anon_sym___vectorcall] = ACTIONS(3215), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_signed] = ACTIONS(3215), - [anon_sym_unsigned] = ACTIONS(3215), - [anon_sym_long] = ACTIONS(3215), - [anon_sym_short] = ACTIONS(3215), - [anon_sym_LBRACK] = ACTIONS(3215), - [anon_sym_static] = ACTIONS(3215), - [anon_sym_register] = ACTIONS(3215), - [anon_sym_inline] = ACTIONS(3215), - [anon_sym___inline] = ACTIONS(3215), - [anon_sym___inline__] = ACTIONS(3215), - [anon_sym___forceinline] = ACTIONS(3215), - [anon_sym_thread_local] = ACTIONS(3215), - [anon_sym___thread] = ACTIONS(3215), - [anon_sym_const] = ACTIONS(3215), - [anon_sym_constexpr] = ACTIONS(3215), - [anon_sym_volatile] = ACTIONS(3215), - [anon_sym_restrict] = ACTIONS(3215), - [anon_sym___restrict__] = ACTIONS(3215), - [anon_sym__Atomic] = ACTIONS(3215), - [anon_sym__Noreturn] = ACTIONS(3215), - [anon_sym_noreturn] = ACTIONS(3215), - [anon_sym_mutable] = ACTIONS(3215), - [anon_sym_constinit] = ACTIONS(3215), - [anon_sym_consteval] = ACTIONS(3215), - [sym_primitive_type] = ACTIONS(3215), - [anon_sym_enum] = ACTIONS(3215), - [anon_sym_class] = ACTIONS(3215), - [anon_sym_struct] = ACTIONS(3215), - [anon_sym_union] = ACTIONS(3215), - [anon_sym_if] = ACTIONS(3215), - [anon_sym_else] = ACTIONS(3215), - [anon_sym_switch] = ACTIONS(3215), - [anon_sym_case] = ACTIONS(3215), - [anon_sym_default] = ACTIONS(3215), - [anon_sym_while] = ACTIONS(3215), - [anon_sym_do] = ACTIONS(3215), - [anon_sym_for] = ACTIONS(3215), - [anon_sym_return] = ACTIONS(3215), - [anon_sym_break] = ACTIONS(3215), - [anon_sym_continue] = ACTIONS(3215), - [anon_sym_goto] = ACTIONS(3215), - [anon_sym___try] = ACTIONS(3215), - [anon_sym___leave] = ACTIONS(3215), - [anon_sym_not] = ACTIONS(3215), - [anon_sym_compl] = ACTIONS(3215), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_sizeof] = ACTIONS(3215), - [anon_sym___alignof__] = ACTIONS(3215), - [anon_sym___alignof] = ACTIONS(3215), - [anon_sym__alignof] = ACTIONS(3215), - [anon_sym_alignof] = ACTIONS(3215), - [anon_sym__Alignof] = ACTIONS(3215), - [anon_sym_offsetof] = ACTIONS(3215), - [anon_sym__Generic] = ACTIONS(3215), - [anon_sym_asm] = ACTIONS(3215), - [anon_sym___asm__] = ACTIONS(3215), - [sym_number_literal] = ACTIONS(3217), - [anon_sym_L_SQUOTE] = ACTIONS(3217), - [anon_sym_u_SQUOTE] = ACTIONS(3217), - [anon_sym_U_SQUOTE] = ACTIONS(3217), - [anon_sym_u8_SQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_L_DQUOTE] = ACTIONS(3217), - [anon_sym_u_DQUOTE] = ACTIONS(3217), - [anon_sym_U_DQUOTE] = ACTIONS(3217), - [anon_sym_u8_DQUOTE] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [sym_true] = ACTIONS(3215), - [sym_false] = ACTIONS(3215), - [anon_sym_NULL] = ACTIONS(3215), - [anon_sym_nullptr] = ACTIONS(3215), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3215), - [anon_sym_decltype] = ACTIONS(3215), - [anon_sym_virtual] = ACTIONS(3215), - [anon_sym_alignas] = ACTIONS(3215), - [anon_sym_explicit] = ACTIONS(3215), - [anon_sym_typename] = ACTIONS(3215), - [anon_sym_template] = ACTIONS(3215), - [anon_sym_operator] = ACTIONS(3215), - [anon_sym_try] = ACTIONS(3215), - [anon_sym_delete] = ACTIONS(3215), - [anon_sym_throw] = ACTIONS(3215), - [anon_sym_namespace] = ACTIONS(3215), - [anon_sym_using] = ACTIONS(3215), - [anon_sym_static_assert] = ACTIONS(3215), - [anon_sym_concept] = ACTIONS(3215), - [anon_sym_co_return] = ACTIONS(3215), - [anon_sym_co_yield] = ACTIONS(3215), - [anon_sym_R_DQUOTE] = ACTIONS(3217), - [anon_sym_LR_DQUOTE] = ACTIONS(3217), - [anon_sym_uR_DQUOTE] = ACTIONS(3217), - [anon_sym_UR_DQUOTE] = ACTIONS(3217), - [anon_sym_u8R_DQUOTE] = ACTIONS(3217), - [anon_sym_co_await] = ACTIONS(3215), - [anon_sym_new] = ACTIONS(3215), - [anon_sym_requires] = ACTIONS(3215), - [sym_this] = ACTIONS(3215), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3217), - [sym_semgrep_named_ellipsis] = ACTIONS(3217), - }, - [479] = { - [sym_identifier] = ACTIONS(3227), - [aux_sym_preproc_include_token1] = ACTIONS(3227), - [aux_sym_preproc_def_token1] = ACTIONS(3227), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3229), - [aux_sym_preproc_if_token1] = ACTIONS(3227), - [aux_sym_preproc_if_token2] = ACTIONS(3227), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3227), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3227), - [aux_sym_preproc_else_token1] = ACTIONS(3227), - [aux_sym_preproc_elif_token1] = ACTIONS(3227), - [sym_preproc_directive] = ACTIONS(3227), - [anon_sym_LPAREN2] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_TILDE] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_AMP_AMP] = ACTIONS(3229), - [anon_sym_AMP] = ACTIONS(3227), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym___extension__] = ACTIONS(3227), - [anon_sym_typedef] = ACTIONS(3227), - [anon_sym_extern] = ACTIONS(3227), - [anon_sym___attribute__] = ACTIONS(3227), - [anon_sym_COLON_COLON] = ACTIONS(3229), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3229), - [anon_sym___declspec] = ACTIONS(3227), - [anon_sym___based] = ACTIONS(3227), - [anon_sym___cdecl] = ACTIONS(3227), - [anon_sym___clrcall] = ACTIONS(3227), - [anon_sym___stdcall] = ACTIONS(3227), - [anon_sym___fastcall] = ACTIONS(3227), - [anon_sym___thiscall] = ACTIONS(3227), - [anon_sym___vectorcall] = ACTIONS(3227), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_signed] = ACTIONS(3227), - [anon_sym_unsigned] = ACTIONS(3227), - [anon_sym_long] = ACTIONS(3227), - [anon_sym_short] = ACTIONS(3227), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_static] = ACTIONS(3227), - [anon_sym_register] = ACTIONS(3227), - [anon_sym_inline] = ACTIONS(3227), - [anon_sym___inline] = ACTIONS(3227), - [anon_sym___inline__] = ACTIONS(3227), - [anon_sym___forceinline] = ACTIONS(3227), - [anon_sym_thread_local] = ACTIONS(3227), - [anon_sym___thread] = ACTIONS(3227), - [anon_sym_const] = ACTIONS(3227), - [anon_sym_constexpr] = ACTIONS(3227), - [anon_sym_volatile] = ACTIONS(3227), - [anon_sym_restrict] = ACTIONS(3227), - [anon_sym___restrict__] = ACTIONS(3227), - [anon_sym__Atomic] = ACTIONS(3227), - [anon_sym__Noreturn] = ACTIONS(3227), - [anon_sym_noreturn] = ACTIONS(3227), - [anon_sym_mutable] = ACTIONS(3227), - [anon_sym_constinit] = ACTIONS(3227), - [anon_sym_consteval] = ACTIONS(3227), - [sym_primitive_type] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(3227), - [anon_sym_class] = ACTIONS(3227), - [anon_sym_struct] = ACTIONS(3227), - [anon_sym_union] = ACTIONS(3227), - [anon_sym_if] = ACTIONS(3227), - [anon_sym_else] = ACTIONS(3227), - [anon_sym_switch] = ACTIONS(3227), - [anon_sym_case] = ACTIONS(3227), - [anon_sym_default] = ACTIONS(3227), - [anon_sym_while] = ACTIONS(3227), - [anon_sym_do] = ACTIONS(3227), - [anon_sym_for] = ACTIONS(3227), - [anon_sym_return] = ACTIONS(3227), - [anon_sym_break] = ACTIONS(3227), - [anon_sym_continue] = ACTIONS(3227), - [anon_sym_goto] = ACTIONS(3227), - [anon_sym___try] = ACTIONS(3227), - [anon_sym___leave] = ACTIONS(3227), - [anon_sym_not] = ACTIONS(3227), - [anon_sym_compl] = ACTIONS(3227), - [anon_sym_DASH_DASH] = ACTIONS(3229), - [anon_sym_PLUS_PLUS] = ACTIONS(3229), - [anon_sym_sizeof] = ACTIONS(3227), - [anon_sym___alignof__] = ACTIONS(3227), - [anon_sym___alignof] = ACTIONS(3227), - [anon_sym__alignof] = ACTIONS(3227), - [anon_sym_alignof] = ACTIONS(3227), - [anon_sym__Alignof] = ACTIONS(3227), - [anon_sym_offsetof] = ACTIONS(3227), - [anon_sym__Generic] = ACTIONS(3227), - [anon_sym_asm] = ACTIONS(3227), - [anon_sym___asm__] = ACTIONS(3227), - [sym_number_literal] = ACTIONS(3229), - [anon_sym_L_SQUOTE] = ACTIONS(3229), - [anon_sym_u_SQUOTE] = ACTIONS(3229), - [anon_sym_U_SQUOTE] = ACTIONS(3229), - [anon_sym_u8_SQUOTE] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3229), - [anon_sym_L_DQUOTE] = ACTIONS(3229), - [anon_sym_u_DQUOTE] = ACTIONS(3229), - [anon_sym_U_DQUOTE] = ACTIONS(3229), - [anon_sym_u8_DQUOTE] = ACTIONS(3229), - [anon_sym_DQUOTE] = ACTIONS(3229), - [sym_true] = ACTIONS(3227), - [sym_false] = ACTIONS(3227), - [anon_sym_NULL] = ACTIONS(3227), - [anon_sym_nullptr] = ACTIONS(3227), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3227), - [anon_sym_decltype] = ACTIONS(3227), - [anon_sym_virtual] = ACTIONS(3227), - [anon_sym_alignas] = ACTIONS(3227), - [anon_sym_explicit] = ACTIONS(3227), - [anon_sym_typename] = ACTIONS(3227), - [anon_sym_template] = ACTIONS(3227), - [anon_sym_operator] = ACTIONS(3227), - [anon_sym_try] = ACTIONS(3227), - [anon_sym_delete] = ACTIONS(3227), - [anon_sym_throw] = ACTIONS(3227), - [anon_sym_namespace] = ACTIONS(3227), - [anon_sym_using] = ACTIONS(3227), - [anon_sym_static_assert] = ACTIONS(3227), - [anon_sym_concept] = ACTIONS(3227), - [anon_sym_co_return] = ACTIONS(3227), - [anon_sym_co_yield] = ACTIONS(3227), - [anon_sym_R_DQUOTE] = ACTIONS(3229), - [anon_sym_LR_DQUOTE] = ACTIONS(3229), - [anon_sym_uR_DQUOTE] = ACTIONS(3229), - [anon_sym_UR_DQUOTE] = ACTIONS(3229), - [anon_sym_u8R_DQUOTE] = ACTIONS(3229), - [anon_sym_co_await] = ACTIONS(3227), - [anon_sym_new] = ACTIONS(3227), - [anon_sym_requires] = ACTIONS(3227), - [sym_this] = ACTIONS(3227), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3229), - [sym_semgrep_named_ellipsis] = ACTIONS(3229), + [470] = { + [sym_identifier] = ACTIONS(3193), + [aux_sym_preproc_include_token1] = ACTIONS(3193), + [aux_sym_preproc_def_token1] = ACTIONS(3193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3195), + [aux_sym_preproc_if_token1] = ACTIONS(3193), + [aux_sym_preproc_if_token2] = ACTIONS(3193), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3193), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3193), + [aux_sym_preproc_else_token1] = ACTIONS(3193), + [aux_sym_preproc_elif_token1] = ACTIONS(3193), + [sym_preproc_directive] = ACTIONS(3193), + [anon_sym_LPAREN2] = ACTIONS(3195), + [anon_sym_BANG] = ACTIONS(3195), + [anon_sym_TILDE] = ACTIONS(3195), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_AMP] = ACTIONS(3193), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym___extension__] = ACTIONS(3193), + [anon_sym_typedef] = ACTIONS(3193), + [anon_sym_extern] = ACTIONS(3193), + [anon_sym___attribute__] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(3195), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3195), + [anon_sym___declspec] = ACTIONS(3193), + [anon_sym___based] = ACTIONS(3193), + [anon_sym___cdecl] = ACTIONS(3193), + [anon_sym___clrcall] = ACTIONS(3193), + [anon_sym___stdcall] = ACTIONS(3193), + [anon_sym___fastcall] = ACTIONS(3193), + [anon_sym___thiscall] = ACTIONS(3193), + [anon_sym___vectorcall] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(3195), + [anon_sym_signed] = ACTIONS(3193), + [anon_sym_unsigned] = ACTIONS(3193), + [anon_sym_long] = ACTIONS(3193), + [anon_sym_short] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(3193), + [anon_sym_static] = ACTIONS(3193), + [anon_sym_register] = ACTIONS(3193), + [anon_sym_inline] = ACTIONS(3193), + [anon_sym___inline] = ACTIONS(3193), + [anon_sym___inline__] = ACTIONS(3193), + [anon_sym___forceinline] = ACTIONS(3193), + [anon_sym_thread_local] = ACTIONS(3193), + [anon_sym___thread] = ACTIONS(3193), + [anon_sym_const] = ACTIONS(3193), + [anon_sym_constexpr] = ACTIONS(3193), + [anon_sym_volatile] = ACTIONS(3193), + [anon_sym_restrict] = ACTIONS(3193), + [anon_sym___restrict__] = ACTIONS(3193), + [anon_sym__Atomic] = ACTIONS(3193), + [anon_sym__Noreturn] = ACTIONS(3193), + [anon_sym_noreturn] = ACTIONS(3193), + [anon_sym_mutable] = ACTIONS(3193), + [anon_sym_constinit] = ACTIONS(3193), + [anon_sym_consteval] = ACTIONS(3193), + [sym_primitive_type] = ACTIONS(3193), + [anon_sym_enum] = ACTIONS(3193), + [anon_sym_class] = ACTIONS(3193), + [anon_sym_struct] = ACTIONS(3193), + [anon_sym_union] = ACTIONS(3193), + [anon_sym_if] = ACTIONS(3193), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_switch] = ACTIONS(3193), + [anon_sym_case] = ACTIONS(3193), + [anon_sym_default] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_do] = ACTIONS(3193), + [anon_sym_for] = ACTIONS(3193), + [anon_sym_return] = ACTIONS(3193), + [anon_sym_break] = ACTIONS(3193), + [anon_sym_continue] = ACTIONS(3193), + [anon_sym_goto] = ACTIONS(3193), + [anon_sym___try] = ACTIONS(3193), + [anon_sym___leave] = ACTIONS(3193), + [anon_sym_not] = ACTIONS(3193), + [anon_sym_compl] = ACTIONS(3193), + [anon_sym_DASH_DASH] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3195), + [anon_sym_sizeof] = ACTIONS(3193), + [anon_sym___alignof__] = ACTIONS(3193), + [anon_sym___alignof] = ACTIONS(3193), + [anon_sym__alignof] = ACTIONS(3193), + [anon_sym_alignof] = ACTIONS(3193), + [anon_sym__Alignof] = ACTIONS(3193), + [anon_sym_offsetof] = ACTIONS(3193), + [anon_sym__Generic] = ACTIONS(3193), + [anon_sym_asm] = ACTIONS(3193), + [anon_sym___asm__] = ACTIONS(3193), + [sym_number_literal] = ACTIONS(3195), + [anon_sym_L_SQUOTE] = ACTIONS(3195), + [anon_sym_u_SQUOTE] = ACTIONS(3195), + [anon_sym_U_SQUOTE] = ACTIONS(3195), + [anon_sym_u8_SQUOTE] = ACTIONS(3195), + [anon_sym_SQUOTE] = ACTIONS(3195), + [anon_sym_L_DQUOTE] = ACTIONS(3195), + [anon_sym_u_DQUOTE] = ACTIONS(3195), + [anon_sym_U_DQUOTE] = ACTIONS(3195), + [anon_sym_u8_DQUOTE] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(3195), + [sym_true] = ACTIONS(3193), + [sym_false] = ACTIONS(3193), + [anon_sym_NULL] = ACTIONS(3193), + [anon_sym_nullptr] = ACTIONS(3193), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3193), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_virtual] = ACTIONS(3193), + [anon_sym_alignas] = ACTIONS(3193), + [anon_sym_explicit] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3193), + [anon_sym_template] = ACTIONS(3193), + [anon_sym_operator] = ACTIONS(3193), + [anon_sym_try] = ACTIONS(3193), + [anon_sym_delete] = ACTIONS(3193), + [anon_sym_throw] = ACTIONS(3193), + [anon_sym_namespace] = ACTIONS(3193), + [anon_sym_using] = ACTIONS(3193), + [anon_sym_static_assert] = ACTIONS(3193), + [anon_sym_concept] = ACTIONS(3193), + [anon_sym_co_return] = ACTIONS(3193), + [anon_sym_co_yield] = ACTIONS(3193), + [anon_sym_R_DQUOTE] = ACTIONS(3195), + [anon_sym_LR_DQUOTE] = ACTIONS(3195), + [anon_sym_uR_DQUOTE] = ACTIONS(3195), + [anon_sym_UR_DQUOTE] = ACTIONS(3195), + [anon_sym_u8R_DQUOTE] = ACTIONS(3195), + [anon_sym_co_await] = ACTIONS(3193), + [anon_sym_new] = ACTIONS(3193), + [anon_sym_requires] = ACTIONS(3193), + [sym_this] = ACTIONS(3193), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3195), + [sym_semgrep_named_ellipsis] = ACTIONS(3195), }, - [480] = { + [471] = { [sym_identifier] = ACTIONS(3163), [aux_sym_preproc_include_token1] = ACTIONS(3163), [aux_sym_preproc_def_token1] = ACTIONS(3163), @@ -132086,2077 +121016,1111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3165), [sym_semgrep_named_ellipsis] = ACTIONS(3165), }, - [481] = { - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_unaligned_ptr_modifier] = STATE(6585), - [sym_ms_pointer_modifier] = STATE(4046), - [sym_declarator] = STATE(7557), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7634), - [sym_array_declarator] = STATE(7634), - [sym_type_qualifier] = STATE(5102), - [sym_expression] = STATE(3755), - [sym_expression_not_binary] = STATE(4050), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9276), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3890), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7129), - [sym_qualified_identifier] = STATE(3833), - [sym_qualified_type_identifier] = STATE(4648), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [aux_sym_type_definition_type_repeat1] = STATE(5102), - [aux_sym_pointer_declarator_repeat1] = STATE(4046), - [sym_identifier] = ACTIONS(3660), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(2201), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2209), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(2211), - [anon_sym___extension__] = ACTIONS(3664), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym___based] = ACTIONS(51), - [sym_ms_restrict_modifier] = ACTIONS(3666), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3666), - [sym_ms_signed_ptr_modifier] = ACTIONS(3666), - [anon_sym__unaligned] = ACTIONS(3668), - [anon_sym___unaligned] = ACTIONS(3668), - [anon_sym_LBRACK] = ACTIONS(2219), - [anon_sym_const] = ACTIONS(3664), - [anon_sym_constexpr] = ACTIONS(3664), - [anon_sym_volatile] = ACTIONS(3664), - [anon_sym_restrict] = ACTIONS(3664), - [anon_sym___restrict__] = ACTIONS(3664), - [anon_sym__Atomic] = ACTIONS(3664), - [anon_sym__Noreturn] = ACTIONS(3664), - [anon_sym_noreturn] = ACTIONS(3664), - [anon_sym_mutable] = ACTIONS(3664), - [anon_sym_constinit] = ACTIONS(3664), - [anon_sym_consteval] = ACTIONS(3664), - [sym_primitive_type] = ACTIONS(2858), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_operator] = ACTIONS(2259), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), - }, - [482] = { - [sym_identifier] = ACTIONS(3179), - [aux_sym_preproc_include_token1] = ACTIONS(3179), - [aux_sym_preproc_def_token1] = ACTIONS(3179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3181), - [aux_sym_preproc_if_token1] = ACTIONS(3179), - [aux_sym_preproc_if_token2] = ACTIONS(3179), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3179), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3179), - [aux_sym_preproc_else_token1] = ACTIONS(3179), - [aux_sym_preproc_elif_token1] = ACTIONS(3179), - [sym_preproc_directive] = ACTIONS(3179), - [anon_sym_LPAREN2] = ACTIONS(3181), - [anon_sym_BANG] = ACTIONS(3181), - [anon_sym_TILDE] = ACTIONS(3181), - [anon_sym_DASH] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_STAR] = ACTIONS(3181), - [anon_sym_AMP_AMP] = ACTIONS(3181), - [anon_sym_AMP] = ACTIONS(3179), - [anon_sym_SEMI] = ACTIONS(3181), - [anon_sym___extension__] = ACTIONS(3179), - [anon_sym_typedef] = ACTIONS(3179), - [anon_sym_extern] = ACTIONS(3179), - [anon_sym___attribute__] = ACTIONS(3179), - [anon_sym_COLON_COLON] = ACTIONS(3181), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3181), - [anon_sym___declspec] = ACTIONS(3179), - [anon_sym___based] = ACTIONS(3179), - [anon_sym___cdecl] = ACTIONS(3179), - [anon_sym___clrcall] = ACTIONS(3179), - [anon_sym___stdcall] = ACTIONS(3179), - [anon_sym___fastcall] = ACTIONS(3179), - [anon_sym___thiscall] = ACTIONS(3179), - [anon_sym___vectorcall] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3181), - [anon_sym_signed] = ACTIONS(3179), - [anon_sym_unsigned] = ACTIONS(3179), - [anon_sym_long] = ACTIONS(3179), - [anon_sym_short] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_static] = ACTIONS(3179), - [anon_sym_register] = ACTIONS(3179), - [anon_sym_inline] = ACTIONS(3179), - [anon_sym___inline] = ACTIONS(3179), - [anon_sym___inline__] = ACTIONS(3179), - [anon_sym___forceinline] = ACTIONS(3179), - [anon_sym_thread_local] = ACTIONS(3179), - [anon_sym___thread] = ACTIONS(3179), - [anon_sym_const] = ACTIONS(3179), - [anon_sym_constexpr] = ACTIONS(3179), - [anon_sym_volatile] = ACTIONS(3179), - [anon_sym_restrict] = ACTIONS(3179), - [anon_sym___restrict__] = ACTIONS(3179), - [anon_sym__Atomic] = ACTIONS(3179), - [anon_sym__Noreturn] = ACTIONS(3179), - [anon_sym_noreturn] = ACTIONS(3179), - [anon_sym_mutable] = ACTIONS(3179), - [anon_sym_constinit] = ACTIONS(3179), - [anon_sym_consteval] = ACTIONS(3179), - [sym_primitive_type] = ACTIONS(3179), - [anon_sym_enum] = ACTIONS(3179), - [anon_sym_class] = ACTIONS(3179), - [anon_sym_struct] = ACTIONS(3179), - [anon_sym_union] = ACTIONS(3179), - [anon_sym_if] = ACTIONS(3179), - [anon_sym_else] = ACTIONS(3179), - [anon_sym_switch] = ACTIONS(3179), - [anon_sym_case] = ACTIONS(3179), - [anon_sym_default] = ACTIONS(3179), - [anon_sym_while] = ACTIONS(3179), - [anon_sym_do] = ACTIONS(3179), - [anon_sym_for] = ACTIONS(3179), - [anon_sym_return] = ACTIONS(3179), - [anon_sym_break] = ACTIONS(3179), - [anon_sym_continue] = ACTIONS(3179), - [anon_sym_goto] = ACTIONS(3179), - [anon_sym___try] = ACTIONS(3179), - [anon_sym___leave] = ACTIONS(3179), - [anon_sym_not] = ACTIONS(3179), - [anon_sym_compl] = ACTIONS(3179), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_sizeof] = ACTIONS(3179), - [anon_sym___alignof__] = ACTIONS(3179), - [anon_sym___alignof] = ACTIONS(3179), - [anon_sym__alignof] = ACTIONS(3179), - [anon_sym_alignof] = ACTIONS(3179), - [anon_sym__Alignof] = ACTIONS(3179), - [anon_sym_offsetof] = ACTIONS(3179), - [anon_sym__Generic] = ACTIONS(3179), - [anon_sym_asm] = ACTIONS(3179), - [anon_sym___asm__] = ACTIONS(3179), - [sym_number_literal] = ACTIONS(3181), - [anon_sym_L_SQUOTE] = ACTIONS(3181), - [anon_sym_u_SQUOTE] = ACTIONS(3181), - [anon_sym_U_SQUOTE] = ACTIONS(3181), - [anon_sym_u8_SQUOTE] = ACTIONS(3181), - [anon_sym_SQUOTE] = ACTIONS(3181), - [anon_sym_L_DQUOTE] = ACTIONS(3181), - [anon_sym_u_DQUOTE] = ACTIONS(3181), - [anon_sym_U_DQUOTE] = ACTIONS(3181), - [anon_sym_u8_DQUOTE] = ACTIONS(3181), - [anon_sym_DQUOTE] = ACTIONS(3181), - [sym_true] = ACTIONS(3179), - [sym_false] = ACTIONS(3179), - [anon_sym_NULL] = ACTIONS(3179), - [anon_sym_nullptr] = ACTIONS(3179), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3179), - [anon_sym_decltype] = ACTIONS(3179), - [anon_sym_virtual] = ACTIONS(3179), - [anon_sym_alignas] = ACTIONS(3179), - [anon_sym_explicit] = ACTIONS(3179), - [anon_sym_typename] = ACTIONS(3179), - [anon_sym_template] = ACTIONS(3179), - [anon_sym_operator] = ACTIONS(3179), - [anon_sym_try] = ACTIONS(3179), - [anon_sym_delete] = ACTIONS(3179), - [anon_sym_throw] = ACTIONS(3179), - [anon_sym_namespace] = ACTIONS(3179), - [anon_sym_using] = ACTIONS(3179), - [anon_sym_static_assert] = ACTIONS(3179), - [anon_sym_concept] = ACTIONS(3179), - [anon_sym_co_return] = ACTIONS(3179), - [anon_sym_co_yield] = ACTIONS(3179), - [anon_sym_R_DQUOTE] = ACTIONS(3181), - [anon_sym_LR_DQUOTE] = ACTIONS(3181), - [anon_sym_uR_DQUOTE] = ACTIONS(3181), - [anon_sym_UR_DQUOTE] = ACTIONS(3181), - [anon_sym_u8R_DQUOTE] = ACTIONS(3181), - [anon_sym_co_await] = ACTIONS(3179), - [anon_sym_new] = ACTIONS(3179), - [anon_sym_requires] = ACTIONS(3179), - [sym_this] = ACTIONS(3179), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3181), - [sym_semgrep_named_ellipsis] = ACTIONS(3181), - }, - [483] = { - [sym_identifier] = ACTIONS(3231), - [aux_sym_preproc_include_token1] = ACTIONS(3231), - [aux_sym_preproc_def_token1] = ACTIONS(3231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3233), - [aux_sym_preproc_if_token1] = ACTIONS(3231), - [aux_sym_preproc_if_token2] = ACTIONS(3231), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3231), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3231), - [aux_sym_preproc_else_token1] = ACTIONS(3231), - [aux_sym_preproc_elif_token1] = ACTIONS(3231), - [sym_preproc_directive] = ACTIONS(3231), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(3233), - [anon_sym_TILDE] = ACTIONS(3233), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3233), - [anon_sym_AMP_AMP] = ACTIONS(3233), - [anon_sym_AMP] = ACTIONS(3231), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym___extension__] = ACTIONS(3231), - [anon_sym_typedef] = ACTIONS(3231), - [anon_sym_extern] = ACTIONS(3231), - [anon_sym___attribute__] = ACTIONS(3231), - [anon_sym_COLON_COLON] = ACTIONS(3233), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3233), - [anon_sym___declspec] = ACTIONS(3231), - [anon_sym___based] = ACTIONS(3231), - [anon_sym___cdecl] = ACTIONS(3231), - [anon_sym___clrcall] = ACTIONS(3231), - [anon_sym___stdcall] = ACTIONS(3231), - [anon_sym___fastcall] = ACTIONS(3231), - [anon_sym___thiscall] = ACTIONS(3231), - [anon_sym___vectorcall] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_signed] = ACTIONS(3231), - [anon_sym_unsigned] = ACTIONS(3231), - [anon_sym_long] = ACTIONS(3231), - [anon_sym_short] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_static] = ACTIONS(3231), - [anon_sym_register] = ACTIONS(3231), - [anon_sym_inline] = ACTIONS(3231), - [anon_sym___inline] = ACTIONS(3231), - [anon_sym___inline__] = ACTIONS(3231), - [anon_sym___forceinline] = ACTIONS(3231), - [anon_sym_thread_local] = ACTIONS(3231), - [anon_sym___thread] = ACTIONS(3231), - [anon_sym_const] = ACTIONS(3231), - [anon_sym_constexpr] = ACTIONS(3231), - [anon_sym_volatile] = ACTIONS(3231), - [anon_sym_restrict] = ACTIONS(3231), - [anon_sym___restrict__] = ACTIONS(3231), - [anon_sym__Atomic] = ACTIONS(3231), - [anon_sym__Noreturn] = ACTIONS(3231), - [anon_sym_noreturn] = ACTIONS(3231), - [anon_sym_mutable] = ACTIONS(3231), - [anon_sym_constinit] = ACTIONS(3231), - [anon_sym_consteval] = ACTIONS(3231), - [sym_primitive_type] = ACTIONS(3231), - [anon_sym_enum] = ACTIONS(3231), - [anon_sym_class] = ACTIONS(3231), - [anon_sym_struct] = ACTIONS(3231), - [anon_sym_union] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_else] = ACTIONS(3231), - [anon_sym_switch] = ACTIONS(3231), - [anon_sym_case] = ACTIONS(3231), - [anon_sym_default] = ACTIONS(3231), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_do] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_break] = ACTIONS(3231), - [anon_sym_continue] = ACTIONS(3231), - [anon_sym_goto] = ACTIONS(3231), - [anon_sym___try] = ACTIONS(3231), - [anon_sym___leave] = ACTIONS(3231), - [anon_sym_not] = ACTIONS(3231), - [anon_sym_compl] = ACTIONS(3231), - [anon_sym_DASH_DASH] = ACTIONS(3233), - [anon_sym_PLUS_PLUS] = ACTIONS(3233), - [anon_sym_sizeof] = ACTIONS(3231), - [anon_sym___alignof__] = ACTIONS(3231), - [anon_sym___alignof] = ACTIONS(3231), - [anon_sym__alignof] = ACTIONS(3231), - [anon_sym_alignof] = ACTIONS(3231), - [anon_sym__Alignof] = ACTIONS(3231), - [anon_sym_offsetof] = ACTIONS(3231), - [anon_sym__Generic] = ACTIONS(3231), - [anon_sym_asm] = ACTIONS(3231), - [anon_sym___asm__] = ACTIONS(3231), - [sym_number_literal] = ACTIONS(3233), - [anon_sym_L_SQUOTE] = ACTIONS(3233), - [anon_sym_u_SQUOTE] = ACTIONS(3233), - [anon_sym_U_SQUOTE] = ACTIONS(3233), - [anon_sym_u8_SQUOTE] = ACTIONS(3233), - [anon_sym_SQUOTE] = ACTIONS(3233), - [anon_sym_L_DQUOTE] = ACTIONS(3233), - [anon_sym_u_DQUOTE] = ACTIONS(3233), - [anon_sym_U_DQUOTE] = ACTIONS(3233), - [anon_sym_u8_DQUOTE] = ACTIONS(3233), - [anon_sym_DQUOTE] = ACTIONS(3233), - [sym_true] = ACTIONS(3231), - [sym_false] = ACTIONS(3231), - [anon_sym_NULL] = ACTIONS(3231), - [anon_sym_nullptr] = ACTIONS(3231), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3231), - [anon_sym_decltype] = ACTIONS(3231), - [anon_sym_virtual] = ACTIONS(3231), - [anon_sym_alignas] = ACTIONS(3231), - [anon_sym_explicit] = ACTIONS(3231), - [anon_sym_typename] = ACTIONS(3231), - [anon_sym_template] = ACTIONS(3231), - [anon_sym_operator] = ACTIONS(3231), - [anon_sym_try] = ACTIONS(3231), - [anon_sym_delete] = ACTIONS(3231), - [anon_sym_throw] = ACTIONS(3231), - [anon_sym_namespace] = ACTIONS(3231), - [anon_sym_using] = ACTIONS(3231), - [anon_sym_static_assert] = ACTIONS(3231), - [anon_sym_concept] = ACTIONS(3231), - [anon_sym_co_return] = ACTIONS(3231), - [anon_sym_co_yield] = ACTIONS(3231), - [anon_sym_R_DQUOTE] = ACTIONS(3233), - [anon_sym_LR_DQUOTE] = ACTIONS(3233), - [anon_sym_uR_DQUOTE] = ACTIONS(3233), - [anon_sym_UR_DQUOTE] = ACTIONS(3233), - [anon_sym_u8R_DQUOTE] = ACTIONS(3233), - [anon_sym_co_await] = ACTIONS(3231), - [anon_sym_new] = ACTIONS(3231), - [anon_sym_requires] = ACTIONS(3231), - [sym_this] = ACTIONS(3231), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3233), - [sym_semgrep_named_ellipsis] = ACTIONS(3233), - }, - [484] = { - [sym_identifier] = ACTIONS(3175), - [aux_sym_preproc_include_token1] = ACTIONS(3175), - [aux_sym_preproc_def_token1] = ACTIONS(3175), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3177), - [aux_sym_preproc_if_token1] = ACTIONS(3175), - [aux_sym_preproc_if_token2] = ACTIONS(3175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3175), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3175), - [aux_sym_preproc_else_token1] = ACTIONS(3175), - [aux_sym_preproc_elif_token1] = ACTIONS(3175), - [sym_preproc_directive] = ACTIONS(3175), - [anon_sym_LPAREN2] = ACTIONS(3177), - [anon_sym_BANG] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(3175), - [anon_sym_STAR] = ACTIONS(3177), - [anon_sym_AMP_AMP] = ACTIONS(3177), - [anon_sym_AMP] = ACTIONS(3175), - [anon_sym_SEMI] = ACTIONS(3177), - [anon_sym___extension__] = ACTIONS(3175), - [anon_sym_typedef] = ACTIONS(3175), - [anon_sym_extern] = ACTIONS(3175), - [anon_sym___attribute__] = ACTIONS(3175), - [anon_sym_COLON_COLON] = ACTIONS(3177), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3177), - [anon_sym___declspec] = ACTIONS(3175), - [anon_sym___based] = ACTIONS(3175), - [anon_sym___cdecl] = ACTIONS(3175), - [anon_sym___clrcall] = ACTIONS(3175), - [anon_sym___stdcall] = ACTIONS(3175), - [anon_sym___fastcall] = ACTIONS(3175), - [anon_sym___thiscall] = ACTIONS(3175), - [anon_sym___vectorcall] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_signed] = ACTIONS(3175), - [anon_sym_unsigned] = ACTIONS(3175), - [anon_sym_long] = ACTIONS(3175), - [anon_sym_short] = ACTIONS(3175), - [anon_sym_LBRACK] = ACTIONS(3175), - [anon_sym_static] = ACTIONS(3175), - [anon_sym_register] = ACTIONS(3175), - [anon_sym_inline] = ACTIONS(3175), - [anon_sym___inline] = ACTIONS(3175), - [anon_sym___inline__] = ACTIONS(3175), - [anon_sym___forceinline] = ACTIONS(3175), - [anon_sym_thread_local] = ACTIONS(3175), - [anon_sym___thread] = ACTIONS(3175), - [anon_sym_const] = ACTIONS(3175), - [anon_sym_constexpr] = ACTIONS(3175), - [anon_sym_volatile] = ACTIONS(3175), - [anon_sym_restrict] = ACTIONS(3175), - [anon_sym___restrict__] = ACTIONS(3175), - [anon_sym__Atomic] = ACTIONS(3175), - [anon_sym__Noreturn] = ACTIONS(3175), - [anon_sym_noreturn] = ACTIONS(3175), - [anon_sym_mutable] = ACTIONS(3175), - [anon_sym_constinit] = ACTIONS(3175), - [anon_sym_consteval] = ACTIONS(3175), - [sym_primitive_type] = ACTIONS(3175), - [anon_sym_enum] = ACTIONS(3175), - [anon_sym_class] = ACTIONS(3175), - [anon_sym_struct] = ACTIONS(3175), - [anon_sym_union] = ACTIONS(3175), - [anon_sym_if] = ACTIONS(3175), - [anon_sym_else] = ACTIONS(3175), - [anon_sym_switch] = ACTIONS(3175), - [anon_sym_case] = ACTIONS(3175), - [anon_sym_default] = ACTIONS(3175), - [anon_sym_while] = ACTIONS(3175), - [anon_sym_do] = ACTIONS(3175), - [anon_sym_for] = ACTIONS(3175), - [anon_sym_return] = ACTIONS(3175), - [anon_sym_break] = ACTIONS(3175), - [anon_sym_continue] = ACTIONS(3175), - [anon_sym_goto] = ACTIONS(3175), - [anon_sym___try] = ACTIONS(3175), - [anon_sym___leave] = ACTIONS(3175), - [anon_sym_not] = ACTIONS(3175), - [anon_sym_compl] = ACTIONS(3175), - [anon_sym_DASH_DASH] = ACTIONS(3177), - [anon_sym_PLUS_PLUS] = ACTIONS(3177), - [anon_sym_sizeof] = ACTIONS(3175), - [anon_sym___alignof__] = ACTIONS(3175), - [anon_sym___alignof] = ACTIONS(3175), - [anon_sym__alignof] = ACTIONS(3175), - [anon_sym_alignof] = ACTIONS(3175), - [anon_sym__Alignof] = ACTIONS(3175), - [anon_sym_offsetof] = ACTIONS(3175), - [anon_sym__Generic] = ACTIONS(3175), - [anon_sym_asm] = ACTIONS(3175), - [anon_sym___asm__] = ACTIONS(3175), - [sym_number_literal] = ACTIONS(3177), - [anon_sym_L_SQUOTE] = ACTIONS(3177), - [anon_sym_u_SQUOTE] = ACTIONS(3177), - [anon_sym_U_SQUOTE] = ACTIONS(3177), - [anon_sym_u8_SQUOTE] = ACTIONS(3177), - [anon_sym_SQUOTE] = ACTIONS(3177), - [anon_sym_L_DQUOTE] = ACTIONS(3177), - [anon_sym_u_DQUOTE] = ACTIONS(3177), - [anon_sym_U_DQUOTE] = ACTIONS(3177), - [anon_sym_u8_DQUOTE] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(3177), - [sym_true] = ACTIONS(3175), - [sym_false] = ACTIONS(3175), - [anon_sym_NULL] = ACTIONS(3175), - [anon_sym_nullptr] = ACTIONS(3175), + [472] = { + [sym_identifier] = ACTIONS(3159), + [aux_sym_preproc_include_token1] = ACTIONS(3159), + [aux_sym_preproc_def_token1] = ACTIONS(3159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3161), + [aux_sym_preproc_if_token1] = ACTIONS(3159), + [aux_sym_preproc_if_token2] = ACTIONS(3159), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3159), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3159), + [aux_sym_preproc_else_token1] = ACTIONS(3159), + [aux_sym_preproc_elif_token1] = ACTIONS(3159), + [sym_preproc_directive] = ACTIONS(3159), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_AMP_AMP] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_SEMI] = ACTIONS(3161), + [anon_sym___extension__] = ACTIONS(3159), + [anon_sym_typedef] = ACTIONS(3159), + [anon_sym_extern] = ACTIONS(3159), + [anon_sym___attribute__] = ACTIONS(3159), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), + [anon_sym___declspec] = ACTIONS(3159), + [anon_sym___based] = ACTIONS(3159), + [anon_sym___cdecl] = ACTIONS(3159), + [anon_sym___clrcall] = ACTIONS(3159), + [anon_sym___stdcall] = ACTIONS(3159), + [anon_sym___fastcall] = ACTIONS(3159), + [anon_sym___thiscall] = ACTIONS(3159), + [anon_sym___vectorcall] = ACTIONS(3159), + [anon_sym_LBRACE] = ACTIONS(3161), + [anon_sym_signed] = ACTIONS(3159), + [anon_sym_unsigned] = ACTIONS(3159), + [anon_sym_long] = ACTIONS(3159), + [anon_sym_short] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_static] = ACTIONS(3159), + [anon_sym_register] = ACTIONS(3159), + [anon_sym_inline] = ACTIONS(3159), + [anon_sym___inline] = ACTIONS(3159), + [anon_sym___inline__] = ACTIONS(3159), + [anon_sym___forceinline] = ACTIONS(3159), + [anon_sym_thread_local] = ACTIONS(3159), + [anon_sym___thread] = ACTIONS(3159), + [anon_sym_const] = ACTIONS(3159), + [anon_sym_constexpr] = ACTIONS(3159), + [anon_sym_volatile] = ACTIONS(3159), + [anon_sym_restrict] = ACTIONS(3159), + [anon_sym___restrict__] = ACTIONS(3159), + [anon_sym__Atomic] = ACTIONS(3159), + [anon_sym__Noreturn] = ACTIONS(3159), + [anon_sym_noreturn] = ACTIONS(3159), + [anon_sym_mutable] = ACTIONS(3159), + [anon_sym_constinit] = ACTIONS(3159), + [anon_sym_consteval] = ACTIONS(3159), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3159), + [anon_sym_class] = ACTIONS(3159), + [anon_sym_struct] = ACTIONS(3159), + [anon_sym_union] = ACTIONS(3159), + [anon_sym_if] = ACTIONS(3159), + [anon_sym_else] = ACTIONS(3159), + [anon_sym_switch] = ACTIONS(3159), + [anon_sym_case] = ACTIONS(3159), + [anon_sym_default] = ACTIONS(3159), + [anon_sym_while] = ACTIONS(3159), + [anon_sym_do] = ACTIONS(3159), + [anon_sym_for] = ACTIONS(3159), + [anon_sym_return] = ACTIONS(3159), + [anon_sym_break] = ACTIONS(3159), + [anon_sym_continue] = ACTIONS(3159), + [anon_sym_goto] = ACTIONS(3159), + [anon_sym___try] = ACTIONS(3159), + [anon_sym___leave] = ACTIONS(3159), + [anon_sym_not] = ACTIONS(3159), + [anon_sym_compl] = ACTIONS(3159), + [anon_sym_DASH_DASH] = ACTIONS(3161), + [anon_sym_PLUS_PLUS] = ACTIONS(3161), + [anon_sym_sizeof] = ACTIONS(3159), + [anon_sym___alignof__] = ACTIONS(3159), + [anon_sym___alignof] = ACTIONS(3159), + [anon_sym__alignof] = ACTIONS(3159), + [anon_sym_alignof] = ACTIONS(3159), + [anon_sym__Alignof] = ACTIONS(3159), + [anon_sym_offsetof] = ACTIONS(3159), + [anon_sym__Generic] = ACTIONS(3159), + [anon_sym_asm] = ACTIONS(3159), + [anon_sym___asm__] = ACTIONS(3159), + [sym_number_literal] = ACTIONS(3161), + [anon_sym_L_SQUOTE] = ACTIONS(3161), + [anon_sym_u_SQUOTE] = ACTIONS(3161), + [anon_sym_U_SQUOTE] = ACTIONS(3161), + [anon_sym_u8_SQUOTE] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3161), + [anon_sym_L_DQUOTE] = ACTIONS(3161), + [anon_sym_u_DQUOTE] = ACTIONS(3161), + [anon_sym_U_DQUOTE] = ACTIONS(3161), + [anon_sym_u8_DQUOTE] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(3161), + [sym_true] = ACTIONS(3159), + [sym_false] = ACTIONS(3159), + [anon_sym_NULL] = ACTIONS(3159), + [anon_sym_nullptr] = ACTIONS(3159), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3175), - [anon_sym_decltype] = ACTIONS(3175), - [anon_sym_virtual] = ACTIONS(3175), - [anon_sym_alignas] = ACTIONS(3175), - [anon_sym_explicit] = ACTIONS(3175), - [anon_sym_typename] = ACTIONS(3175), - [anon_sym_template] = ACTIONS(3175), - [anon_sym_operator] = ACTIONS(3175), - [anon_sym_try] = ACTIONS(3175), - [anon_sym_delete] = ACTIONS(3175), - [anon_sym_throw] = ACTIONS(3175), - [anon_sym_namespace] = ACTIONS(3175), - [anon_sym_using] = ACTIONS(3175), - [anon_sym_static_assert] = ACTIONS(3175), - [anon_sym_concept] = ACTIONS(3175), - [anon_sym_co_return] = ACTIONS(3175), - [anon_sym_co_yield] = ACTIONS(3175), - [anon_sym_R_DQUOTE] = ACTIONS(3177), - [anon_sym_LR_DQUOTE] = ACTIONS(3177), - [anon_sym_uR_DQUOTE] = ACTIONS(3177), - [anon_sym_UR_DQUOTE] = ACTIONS(3177), - [anon_sym_u8R_DQUOTE] = ACTIONS(3177), - [anon_sym_co_await] = ACTIONS(3175), - [anon_sym_new] = ACTIONS(3175), - [anon_sym_requires] = ACTIONS(3175), - [sym_this] = ACTIONS(3175), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3177), - [sym_semgrep_named_ellipsis] = ACTIONS(3177), + [sym_auto] = ACTIONS(3159), + [anon_sym_decltype] = ACTIONS(3159), + [anon_sym_virtual] = ACTIONS(3159), + [anon_sym_alignas] = ACTIONS(3159), + [anon_sym_explicit] = ACTIONS(3159), + [anon_sym_typename] = ACTIONS(3159), + [anon_sym_template] = ACTIONS(3159), + [anon_sym_operator] = ACTIONS(3159), + [anon_sym_try] = ACTIONS(3159), + [anon_sym_delete] = ACTIONS(3159), + [anon_sym_throw] = ACTIONS(3159), + [anon_sym_namespace] = ACTIONS(3159), + [anon_sym_using] = ACTIONS(3159), + [anon_sym_static_assert] = ACTIONS(3159), + [anon_sym_concept] = ACTIONS(3159), + [anon_sym_co_return] = ACTIONS(3159), + [anon_sym_co_yield] = ACTIONS(3159), + [anon_sym_R_DQUOTE] = ACTIONS(3161), + [anon_sym_LR_DQUOTE] = ACTIONS(3161), + [anon_sym_uR_DQUOTE] = ACTIONS(3161), + [anon_sym_UR_DQUOTE] = ACTIONS(3161), + [anon_sym_u8R_DQUOTE] = ACTIONS(3161), + [anon_sym_co_await] = ACTIONS(3159), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_requires] = ACTIONS(3159), + [sym_this] = ACTIONS(3159), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3161), + [sym_semgrep_named_ellipsis] = ACTIONS(3161), }, - [485] = { - [sym_identifier] = ACTIONS(3183), - [aux_sym_preproc_include_token1] = ACTIONS(3183), - [aux_sym_preproc_def_token1] = ACTIONS(3183), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3185), - [aux_sym_preproc_if_token1] = ACTIONS(3183), - [aux_sym_preproc_if_token2] = ACTIONS(3183), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3183), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3183), - [aux_sym_preproc_else_token1] = ACTIONS(3183), - [aux_sym_preproc_elif_token1] = ACTIONS(3183), - [sym_preproc_directive] = ACTIONS(3183), - [anon_sym_LPAREN2] = ACTIONS(3185), - [anon_sym_BANG] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3183), - [anon_sym_PLUS] = ACTIONS(3183), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_AMP_AMP] = ACTIONS(3185), - [anon_sym_AMP] = ACTIONS(3183), - [anon_sym_SEMI] = ACTIONS(3185), - [anon_sym___extension__] = ACTIONS(3183), - [anon_sym_typedef] = ACTIONS(3183), - [anon_sym_extern] = ACTIONS(3183), - [anon_sym___attribute__] = ACTIONS(3183), - [anon_sym_COLON_COLON] = ACTIONS(3185), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3185), - [anon_sym___declspec] = ACTIONS(3183), - [anon_sym___based] = ACTIONS(3183), - [anon_sym___cdecl] = ACTIONS(3183), - [anon_sym___clrcall] = ACTIONS(3183), - [anon_sym___stdcall] = ACTIONS(3183), - [anon_sym___fastcall] = ACTIONS(3183), - [anon_sym___thiscall] = ACTIONS(3183), - [anon_sym___vectorcall] = ACTIONS(3183), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_signed] = ACTIONS(3183), - [anon_sym_unsigned] = ACTIONS(3183), - [anon_sym_long] = ACTIONS(3183), - [anon_sym_short] = ACTIONS(3183), - [anon_sym_LBRACK] = ACTIONS(3183), - [anon_sym_static] = ACTIONS(3183), - [anon_sym_register] = ACTIONS(3183), - [anon_sym_inline] = ACTIONS(3183), - [anon_sym___inline] = ACTIONS(3183), - [anon_sym___inline__] = ACTIONS(3183), - [anon_sym___forceinline] = ACTIONS(3183), - [anon_sym_thread_local] = ACTIONS(3183), - [anon_sym___thread] = ACTIONS(3183), - [anon_sym_const] = ACTIONS(3183), - [anon_sym_constexpr] = ACTIONS(3183), - [anon_sym_volatile] = ACTIONS(3183), - [anon_sym_restrict] = ACTIONS(3183), - [anon_sym___restrict__] = ACTIONS(3183), - [anon_sym__Atomic] = ACTIONS(3183), - [anon_sym__Noreturn] = ACTIONS(3183), - [anon_sym_noreturn] = ACTIONS(3183), - [anon_sym_mutable] = ACTIONS(3183), - [anon_sym_constinit] = ACTIONS(3183), - [anon_sym_consteval] = ACTIONS(3183), - [sym_primitive_type] = ACTIONS(3183), - [anon_sym_enum] = ACTIONS(3183), - [anon_sym_class] = ACTIONS(3183), - [anon_sym_struct] = ACTIONS(3183), - [anon_sym_union] = ACTIONS(3183), - [anon_sym_if] = ACTIONS(3183), - [anon_sym_else] = ACTIONS(3183), - [anon_sym_switch] = ACTIONS(3183), - [anon_sym_case] = ACTIONS(3183), - [anon_sym_default] = ACTIONS(3183), - [anon_sym_while] = ACTIONS(3183), - [anon_sym_do] = ACTIONS(3183), - [anon_sym_for] = ACTIONS(3183), - [anon_sym_return] = ACTIONS(3183), - [anon_sym_break] = ACTIONS(3183), - [anon_sym_continue] = ACTIONS(3183), - [anon_sym_goto] = ACTIONS(3183), - [anon_sym___try] = ACTIONS(3183), - [anon_sym___leave] = ACTIONS(3183), - [anon_sym_not] = ACTIONS(3183), - [anon_sym_compl] = ACTIONS(3183), - [anon_sym_DASH_DASH] = ACTIONS(3185), - [anon_sym_PLUS_PLUS] = ACTIONS(3185), - [anon_sym_sizeof] = ACTIONS(3183), - [anon_sym___alignof__] = ACTIONS(3183), - [anon_sym___alignof] = ACTIONS(3183), - [anon_sym__alignof] = ACTIONS(3183), - [anon_sym_alignof] = ACTIONS(3183), - [anon_sym__Alignof] = ACTIONS(3183), - [anon_sym_offsetof] = ACTIONS(3183), - [anon_sym__Generic] = ACTIONS(3183), - [anon_sym_asm] = ACTIONS(3183), - [anon_sym___asm__] = ACTIONS(3183), - [sym_number_literal] = ACTIONS(3185), - [anon_sym_L_SQUOTE] = ACTIONS(3185), - [anon_sym_u_SQUOTE] = ACTIONS(3185), - [anon_sym_U_SQUOTE] = ACTIONS(3185), - [anon_sym_u8_SQUOTE] = ACTIONS(3185), - [anon_sym_SQUOTE] = ACTIONS(3185), - [anon_sym_L_DQUOTE] = ACTIONS(3185), - [anon_sym_u_DQUOTE] = ACTIONS(3185), - [anon_sym_U_DQUOTE] = ACTIONS(3185), - [anon_sym_u8_DQUOTE] = ACTIONS(3185), - [anon_sym_DQUOTE] = ACTIONS(3185), - [sym_true] = ACTIONS(3183), - [sym_false] = ACTIONS(3183), - [anon_sym_NULL] = ACTIONS(3183), - [anon_sym_nullptr] = ACTIONS(3183), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3183), - [anon_sym_decltype] = ACTIONS(3183), - [anon_sym_virtual] = ACTIONS(3183), - [anon_sym_alignas] = ACTIONS(3183), - [anon_sym_explicit] = ACTIONS(3183), - [anon_sym_typename] = ACTIONS(3183), - [anon_sym_template] = ACTIONS(3183), - [anon_sym_operator] = ACTIONS(3183), - [anon_sym_try] = ACTIONS(3183), - [anon_sym_delete] = ACTIONS(3183), - [anon_sym_throw] = ACTIONS(3183), - [anon_sym_namespace] = ACTIONS(3183), - [anon_sym_using] = ACTIONS(3183), - [anon_sym_static_assert] = ACTIONS(3183), - [anon_sym_concept] = ACTIONS(3183), - [anon_sym_co_return] = ACTIONS(3183), - [anon_sym_co_yield] = ACTIONS(3183), - [anon_sym_R_DQUOTE] = ACTIONS(3185), - [anon_sym_LR_DQUOTE] = ACTIONS(3185), - [anon_sym_uR_DQUOTE] = ACTIONS(3185), - [anon_sym_UR_DQUOTE] = ACTIONS(3185), - [anon_sym_u8R_DQUOTE] = ACTIONS(3185), - [anon_sym_co_await] = ACTIONS(3183), - [anon_sym_new] = ACTIONS(3183), - [anon_sym_requires] = ACTIONS(3183), - [sym_this] = ACTIONS(3183), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3185), - [sym_semgrep_named_ellipsis] = ACTIONS(3185), + [473] = { + [sym_identifier] = ACTIONS(3127), + [aux_sym_preproc_include_token1] = ACTIONS(3127), + [aux_sym_preproc_def_token1] = ACTIONS(3127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3129), + [aux_sym_preproc_if_token1] = ACTIONS(3127), + [aux_sym_preproc_if_token2] = ACTIONS(3127), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3127), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3127), + [aux_sym_preproc_else_token1] = ACTIONS(3127), + [aux_sym_preproc_elif_token1] = ACTIONS(3127), + [sym_preproc_directive] = ACTIONS(3127), + [anon_sym_LPAREN2] = ACTIONS(3129), + [anon_sym_BANG] = ACTIONS(3129), + [anon_sym_TILDE] = ACTIONS(3129), + [anon_sym_DASH] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(3127), + [anon_sym_STAR] = ACTIONS(3129), + [anon_sym_AMP_AMP] = ACTIONS(3129), + [anon_sym_AMP] = ACTIONS(3127), + [anon_sym_SEMI] = ACTIONS(3129), + [anon_sym___extension__] = ACTIONS(3127), + [anon_sym_typedef] = ACTIONS(3127), + [anon_sym_extern] = ACTIONS(3127), + [anon_sym___attribute__] = ACTIONS(3127), + [anon_sym_COLON_COLON] = ACTIONS(3129), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3129), + [anon_sym___declspec] = ACTIONS(3127), + [anon_sym___based] = ACTIONS(3127), + [anon_sym___cdecl] = ACTIONS(3127), + [anon_sym___clrcall] = ACTIONS(3127), + [anon_sym___stdcall] = ACTIONS(3127), + [anon_sym___fastcall] = ACTIONS(3127), + [anon_sym___thiscall] = ACTIONS(3127), + [anon_sym___vectorcall] = ACTIONS(3127), + [anon_sym_LBRACE] = ACTIONS(3129), + [anon_sym_signed] = ACTIONS(3127), + [anon_sym_unsigned] = ACTIONS(3127), + [anon_sym_long] = ACTIONS(3127), + [anon_sym_short] = ACTIONS(3127), + [anon_sym_LBRACK] = ACTIONS(3127), + [anon_sym_static] = ACTIONS(3127), + [anon_sym_register] = ACTIONS(3127), + [anon_sym_inline] = ACTIONS(3127), + [anon_sym___inline] = ACTIONS(3127), + [anon_sym___inline__] = ACTIONS(3127), + [anon_sym___forceinline] = ACTIONS(3127), + [anon_sym_thread_local] = ACTIONS(3127), + [anon_sym___thread] = ACTIONS(3127), + [anon_sym_const] = ACTIONS(3127), + [anon_sym_constexpr] = ACTIONS(3127), + [anon_sym_volatile] = ACTIONS(3127), + [anon_sym_restrict] = ACTIONS(3127), + [anon_sym___restrict__] = ACTIONS(3127), + [anon_sym__Atomic] = ACTIONS(3127), + [anon_sym__Noreturn] = ACTIONS(3127), + [anon_sym_noreturn] = ACTIONS(3127), + [anon_sym_mutable] = ACTIONS(3127), + [anon_sym_constinit] = ACTIONS(3127), + [anon_sym_consteval] = ACTIONS(3127), + [sym_primitive_type] = ACTIONS(3127), + [anon_sym_enum] = ACTIONS(3127), + [anon_sym_class] = ACTIONS(3127), + [anon_sym_struct] = ACTIONS(3127), + [anon_sym_union] = ACTIONS(3127), + [anon_sym_if] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(3127), + [anon_sym_switch] = ACTIONS(3127), + [anon_sym_case] = ACTIONS(3127), + [anon_sym_default] = ACTIONS(3127), + [anon_sym_while] = ACTIONS(3127), + [anon_sym_do] = ACTIONS(3127), + [anon_sym_for] = ACTIONS(3127), + [anon_sym_return] = ACTIONS(3127), + [anon_sym_break] = ACTIONS(3127), + [anon_sym_continue] = ACTIONS(3127), + [anon_sym_goto] = ACTIONS(3127), + [anon_sym___try] = ACTIONS(3127), + [anon_sym___leave] = ACTIONS(3127), + [anon_sym_not] = ACTIONS(3127), + [anon_sym_compl] = ACTIONS(3127), + [anon_sym_DASH_DASH] = ACTIONS(3129), + [anon_sym_PLUS_PLUS] = ACTIONS(3129), + [anon_sym_sizeof] = ACTIONS(3127), + [anon_sym___alignof__] = ACTIONS(3127), + [anon_sym___alignof] = ACTIONS(3127), + [anon_sym__alignof] = ACTIONS(3127), + [anon_sym_alignof] = ACTIONS(3127), + [anon_sym__Alignof] = ACTIONS(3127), + [anon_sym_offsetof] = ACTIONS(3127), + [anon_sym__Generic] = ACTIONS(3127), + [anon_sym_asm] = ACTIONS(3127), + [anon_sym___asm__] = ACTIONS(3127), + [sym_number_literal] = ACTIONS(3129), + [anon_sym_L_SQUOTE] = ACTIONS(3129), + [anon_sym_u_SQUOTE] = ACTIONS(3129), + [anon_sym_U_SQUOTE] = ACTIONS(3129), + [anon_sym_u8_SQUOTE] = ACTIONS(3129), + [anon_sym_SQUOTE] = ACTIONS(3129), + [anon_sym_L_DQUOTE] = ACTIONS(3129), + [anon_sym_u_DQUOTE] = ACTIONS(3129), + [anon_sym_U_DQUOTE] = ACTIONS(3129), + [anon_sym_u8_DQUOTE] = ACTIONS(3129), + [anon_sym_DQUOTE] = ACTIONS(3129), + [sym_true] = ACTIONS(3127), + [sym_false] = ACTIONS(3127), + [anon_sym_NULL] = ACTIONS(3127), + [anon_sym_nullptr] = ACTIONS(3127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3127), + [anon_sym_decltype] = ACTIONS(3127), + [anon_sym_virtual] = ACTIONS(3127), + [anon_sym_alignas] = ACTIONS(3127), + [anon_sym_explicit] = ACTIONS(3127), + [anon_sym_typename] = ACTIONS(3127), + [anon_sym_template] = ACTIONS(3127), + [anon_sym_operator] = ACTIONS(3127), + [anon_sym_try] = ACTIONS(3127), + [anon_sym_delete] = ACTIONS(3127), + [anon_sym_throw] = ACTIONS(3127), + [anon_sym_namespace] = ACTIONS(3127), + [anon_sym_using] = ACTIONS(3127), + [anon_sym_static_assert] = ACTIONS(3127), + [anon_sym_concept] = ACTIONS(3127), + [anon_sym_co_return] = ACTIONS(3127), + [anon_sym_co_yield] = ACTIONS(3127), + [anon_sym_R_DQUOTE] = ACTIONS(3129), + [anon_sym_LR_DQUOTE] = ACTIONS(3129), + [anon_sym_uR_DQUOTE] = ACTIONS(3129), + [anon_sym_UR_DQUOTE] = ACTIONS(3129), + [anon_sym_u8R_DQUOTE] = ACTIONS(3129), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3127), + [anon_sym_requires] = ACTIONS(3127), + [sym_this] = ACTIONS(3127), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3129), + [sym_semgrep_named_ellipsis] = ACTIONS(3129), }, - [486] = { - [sym_identifier] = ACTIONS(3197), - [aux_sym_preproc_include_token1] = ACTIONS(3197), - [aux_sym_preproc_def_token1] = ACTIONS(3197), + [474] = { + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_unaligned_ptr_modifier] = STATE(5969), + [sym_ms_pointer_modifier] = STATE(3706), + [sym_declarator] = STATE(7440), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7305), + [sym_array_declarator] = STATE(7305), + [sym_type_qualifier] = STATE(4726), + [sym_expression] = STATE(2946), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3549), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6582), + [sym_qualified_identifier] = STATE(3558), + [sym_qualified_type_identifier] = STATE(3098), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [aux_sym_type_definition_type_repeat1] = STATE(4726), + [aux_sym_pointer_declarator_repeat1] = STATE(3706), + [sym_identifier] = ACTIONS(3688), [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), - [aux_sym_preproc_if_token1] = ACTIONS(3197), - [aux_sym_preproc_if_token2] = ACTIONS(3197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3197), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3197), - [aux_sym_preproc_else_token1] = ACTIONS(3197), - [aux_sym_preproc_elif_token1] = ACTIONS(3197), - [sym_preproc_directive] = ACTIONS(3197), - [anon_sym_LPAREN2] = ACTIONS(3199), - [anon_sym_BANG] = ACTIONS(3199), - [anon_sym_TILDE] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3199), - [anon_sym_AMP_AMP] = ACTIONS(3199), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_SEMI] = ACTIONS(3199), - [anon_sym___extension__] = ACTIONS(3197), - [anon_sym_typedef] = ACTIONS(3197), - [anon_sym_extern] = ACTIONS(3197), - [anon_sym___attribute__] = ACTIONS(3197), - [anon_sym_COLON_COLON] = ACTIONS(3199), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3199), - [anon_sym___declspec] = ACTIONS(3197), - [anon_sym___based] = ACTIONS(3197), - [anon_sym___cdecl] = ACTIONS(3197), - [anon_sym___clrcall] = ACTIONS(3197), - [anon_sym___stdcall] = ACTIONS(3197), - [anon_sym___fastcall] = ACTIONS(3197), - [anon_sym___thiscall] = ACTIONS(3197), - [anon_sym___vectorcall] = ACTIONS(3197), - [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_signed] = ACTIONS(3197), - [anon_sym_unsigned] = ACTIONS(3197), - [anon_sym_long] = ACTIONS(3197), - [anon_sym_short] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_static] = ACTIONS(3197), - [anon_sym_register] = ACTIONS(3197), - [anon_sym_inline] = ACTIONS(3197), - [anon_sym___inline] = ACTIONS(3197), - [anon_sym___inline__] = ACTIONS(3197), - [anon_sym___forceinline] = ACTIONS(3197), - [anon_sym_thread_local] = ACTIONS(3197), - [anon_sym___thread] = ACTIONS(3197), - [anon_sym_const] = ACTIONS(3197), - [anon_sym_constexpr] = ACTIONS(3197), - [anon_sym_volatile] = ACTIONS(3197), - [anon_sym_restrict] = ACTIONS(3197), - [anon_sym___restrict__] = ACTIONS(3197), - [anon_sym__Atomic] = ACTIONS(3197), - [anon_sym__Noreturn] = ACTIONS(3197), - [anon_sym_noreturn] = ACTIONS(3197), - [anon_sym_mutable] = ACTIONS(3197), - [anon_sym_constinit] = ACTIONS(3197), - [anon_sym_consteval] = ACTIONS(3197), - [sym_primitive_type] = ACTIONS(3197), - [anon_sym_enum] = ACTIONS(3197), - [anon_sym_class] = ACTIONS(3197), - [anon_sym_struct] = ACTIONS(3197), - [anon_sym_union] = ACTIONS(3197), - [anon_sym_if] = ACTIONS(3197), - [anon_sym_else] = ACTIONS(3197), - [anon_sym_switch] = ACTIONS(3197), - [anon_sym_case] = ACTIONS(3197), - [anon_sym_default] = ACTIONS(3197), - [anon_sym_while] = ACTIONS(3197), - [anon_sym_do] = ACTIONS(3197), - [anon_sym_for] = ACTIONS(3197), - [anon_sym_return] = ACTIONS(3197), - [anon_sym_break] = ACTIONS(3197), - [anon_sym_continue] = ACTIONS(3197), - [anon_sym_goto] = ACTIONS(3197), - [anon_sym___try] = ACTIONS(3197), - [anon_sym___leave] = ACTIONS(3197), - [anon_sym_not] = ACTIONS(3197), - [anon_sym_compl] = ACTIONS(3197), - [anon_sym_DASH_DASH] = ACTIONS(3199), - [anon_sym_PLUS_PLUS] = ACTIONS(3199), - [anon_sym_sizeof] = ACTIONS(3197), - [anon_sym___alignof__] = ACTIONS(3197), - [anon_sym___alignof] = ACTIONS(3197), - [anon_sym__alignof] = ACTIONS(3197), - [anon_sym_alignof] = ACTIONS(3197), - [anon_sym__Alignof] = ACTIONS(3197), - [anon_sym_offsetof] = ACTIONS(3197), - [anon_sym__Generic] = ACTIONS(3197), - [anon_sym_asm] = ACTIONS(3197), - [anon_sym___asm__] = ACTIONS(3197), - [sym_number_literal] = ACTIONS(3199), - [anon_sym_L_SQUOTE] = ACTIONS(3199), - [anon_sym_u_SQUOTE] = ACTIONS(3199), - [anon_sym_U_SQUOTE] = ACTIONS(3199), - [anon_sym_u8_SQUOTE] = ACTIONS(3199), - [anon_sym_SQUOTE] = ACTIONS(3199), - [anon_sym_L_DQUOTE] = ACTIONS(3199), - [anon_sym_u_DQUOTE] = ACTIONS(3199), - [anon_sym_U_DQUOTE] = ACTIONS(3199), - [anon_sym_u8_DQUOTE] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym_true] = ACTIONS(3197), - [sym_false] = ACTIONS(3197), - [anon_sym_NULL] = ACTIONS(3197), - [anon_sym_nullptr] = ACTIONS(3197), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3197), - [anon_sym_decltype] = ACTIONS(3197), - [anon_sym_virtual] = ACTIONS(3197), - [anon_sym_alignas] = ACTIONS(3197), - [anon_sym_explicit] = ACTIONS(3197), - [anon_sym_typename] = ACTIONS(3197), - [anon_sym_template] = ACTIONS(3197), - [anon_sym_operator] = ACTIONS(3197), - [anon_sym_try] = ACTIONS(3197), - [anon_sym_delete] = ACTIONS(3197), - [anon_sym_throw] = ACTIONS(3197), - [anon_sym_namespace] = ACTIONS(3197), - [anon_sym_using] = ACTIONS(3197), - [anon_sym_static_assert] = ACTIONS(3197), - [anon_sym_concept] = ACTIONS(3197), - [anon_sym_co_return] = ACTIONS(3197), - [anon_sym_co_yield] = ACTIONS(3197), - [anon_sym_R_DQUOTE] = ACTIONS(3199), - [anon_sym_LR_DQUOTE] = ACTIONS(3199), - [anon_sym_uR_DQUOTE] = ACTIONS(3199), - [anon_sym_UR_DQUOTE] = ACTIONS(3199), - [anon_sym_u8R_DQUOTE] = ACTIONS(3199), - [anon_sym_co_await] = ACTIONS(3197), - [anon_sym_new] = ACTIONS(3197), - [anon_sym_requires] = ACTIONS(3197), - [sym_this] = ACTIONS(3197), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3199), - [sym_semgrep_named_ellipsis] = ACTIONS(3199), - }, - [487] = { - [sym_identifier] = ACTIONS(3139), - [aux_sym_preproc_include_token1] = ACTIONS(3139), - [aux_sym_preproc_def_token1] = ACTIONS(3139), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3141), - [aux_sym_preproc_if_token1] = ACTIONS(3139), - [aux_sym_preproc_if_token2] = ACTIONS(3139), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3139), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3139), - [aux_sym_preproc_else_token1] = ACTIONS(3139), - [aux_sym_preproc_elif_token1] = ACTIONS(3139), - [sym_preproc_directive] = ACTIONS(3139), - [anon_sym_LPAREN2] = ACTIONS(3141), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_AMP_AMP] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3139), - [anon_sym_SEMI] = ACTIONS(3141), - [anon_sym___extension__] = ACTIONS(3139), - [anon_sym_typedef] = ACTIONS(3139), - [anon_sym_extern] = ACTIONS(3139), - [anon_sym___attribute__] = ACTIONS(3139), - [anon_sym_COLON_COLON] = ACTIONS(3141), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3141), - [anon_sym___declspec] = ACTIONS(3139), - [anon_sym___based] = ACTIONS(3139), - [anon_sym___cdecl] = ACTIONS(3139), - [anon_sym___clrcall] = ACTIONS(3139), - [anon_sym___stdcall] = ACTIONS(3139), - [anon_sym___fastcall] = ACTIONS(3139), - [anon_sym___thiscall] = ACTIONS(3139), - [anon_sym___vectorcall] = ACTIONS(3139), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_signed] = ACTIONS(3139), - [anon_sym_unsigned] = ACTIONS(3139), - [anon_sym_long] = ACTIONS(3139), - [anon_sym_short] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_static] = ACTIONS(3139), - [anon_sym_register] = ACTIONS(3139), - [anon_sym_inline] = ACTIONS(3139), - [anon_sym___inline] = ACTIONS(3139), - [anon_sym___inline__] = ACTIONS(3139), - [anon_sym___forceinline] = ACTIONS(3139), - [anon_sym_thread_local] = ACTIONS(3139), - [anon_sym___thread] = ACTIONS(3139), - [anon_sym_const] = ACTIONS(3139), - [anon_sym_constexpr] = ACTIONS(3139), - [anon_sym_volatile] = ACTIONS(3139), - [anon_sym_restrict] = ACTIONS(3139), - [anon_sym___restrict__] = ACTIONS(3139), - [anon_sym__Atomic] = ACTIONS(3139), - [anon_sym__Noreturn] = ACTIONS(3139), - [anon_sym_noreturn] = ACTIONS(3139), - [anon_sym_mutable] = ACTIONS(3139), - [anon_sym_constinit] = ACTIONS(3139), - [anon_sym_consteval] = ACTIONS(3139), - [sym_primitive_type] = ACTIONS(3139), - [anon_sym_enum] = ACTIONS(3139), - [anon_sym_class] = ACTIONS(3139), - [anon_sym_struct] = ACTIONS(3139), - [anon_sym_union] = ACTIONS(3139), - [anon_sym_if] = ACTIONS(3139), - [anon_sym_else] = ACTIONS(3139), - [anon_sym_switch] = ACTIONS(3139), - [anon_sym_case] = ACTIONS(3139), - [anon_sym_default] = ACTIONS(3139), - [anon_sym_while] = ACTIONS(3139), - [anon_sym_do] = ACTIONS(3139), - [anon_sym_for] = ACTIONS(3139), - [anon_sym_return] = ACTIONS(3139), - [anon_sym_break] = ACTIONS(3139), - [anon_sym_continue] = ACTIONS(3139), - [anon_sym_goto] = ACTIONS(3139), - [anon_sym___try] = ACTIONS(3139), - [anon_sym___leave] = ACTIONS(3139), - [anon_sym_not] = ACTIONS(3139), - [anon_sym_compl] = ACTIONS(3139), - [anon_sym_DASH_DASH] = ACTIONS(3141), - [anon_sym_PLUS_PLUS] = ACTIONS(3141), - [anon_sym_sizeof] = ACTIONS(3139), - [anon_sym___alignof__] = ACTIONS(3139), - [anon_sym___alignof] = ACTIONS(3139), - [anon_sym__alignof] = ACTIONS(3139), - [anon_sym_alignof] = ACTIONS(3139), - [anon_sym__Alignof] = ACTIONS(3139), - [anon_sym_offsetof] = ACTIONS(3139), - [anon_sym__Generic] = ACTIONS(3139), - [anon_sym_asm] = ACTIONS(3139), - [anon_sym___asm__] = ACTIONS(3139), - [sym_number_literal] = ACTIONS(3141), - [anon_sym_L_SQUOTE] = ACTIONS(3141), - [anon_sym_u_SQUOTE] = ACTIONS(3141), - [anon_sym_U_SQUOTE] = ACTIONS(3141), - [anon_sym_u8_SQUOTE] = ACTIONS(3141), - [anon_sym_SQUOTE] = ACTIONS(3141), - [anon_sym_L_DQUOTE] = ACTIONS(3141), - [anon_sym_u_DQUOTE] = ACTIONS(3141), - [anon_sym_U_DQUOTE] = ACTIONS(3141), - [anon_sym_u8_DQUOTE] = ACTIONS(3141), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym_true] = ACTIONS(3139), - [sym_false] = ACTIONS(3139), - [anon_sym_NULL] = ACTIONS(3139), - [anon_sym_nullptr] = ACTIONS(3139), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3139), - [anon_sym_decltype] = ACTIONS(3139), - [anon_sym_virtual] = ACTIONS(3139), - [anon_sym_alignas] = ACTIONS(3139), - [anon_sym_explicit] = ACTIONS(3139), - [anon_sym_typename] = ACTIONS(3139), - [anon_sym_template] = ACTIONS(3139), - [anon_sym_operator] = ACTIONS(3139), - [anon_sym_try] = ACTIONS(3139), - [anon_sym_delete] = ACTIONS(3139), - [anon_sym_throw] = ACTIONS(3139), - [anon_sym_namespace] = ACTIONS(3139), - [anon_sym_using] = ACTIONS(3139), - [anon_sym_static_assert] = ACTIONS(3139), - [anon_sym_concept] = ACTIONS(3139), - [anon_sym_co_return] = ACTIONS(3139), - [anon_sym_co_yield] = ACTIONS(3139), - [anon_sym_R_DQUOTE] = ACTIONS(3141), - [anon_sym_LR_DQUOTE] = ACTIONS(3141), - [anon_sym_uR_DQUOTE] = ACTIONS(3141), - [anon_sym_UR_DQUOTE] = ACTIONS(3141), - [anon_sym_u8R_DQUOTE] = ACTIONS(3141), - [anon_sym_co_await] = ACTIONS(3139), - [anon_sym_new] = ACTIONS(3139), - [anon_sym_requires] = ACTIONS(3139), - [sym_this] = ACTIONS(3139), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3141), - [sym_semgrep_named_ellipsis] = ACTIONS(3141), - }, - [488] = { - [sym_identifier] = ACTIONS(3235), - [aux_sym_preproc_include_token1] = ACTIONS(3235), - [aux_sym_preproc_def_token1] = ACTIONS(3235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3237), - [aux_sym_preproc_if_token1] = ACTIONS(3235), - [aux_sym_preproc_if_token2] = ACTIONS(3235), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3235), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3235), - [aux_sym_preproc_else_token1] = ACTIONS(3235), - [aux_sym_preproc_elif_token1] = ACTIONS(3235), - [sym_preproc_directive] = ACTIONS(3235), - [anon_sym_LPAREN2] = ACTIONS(3237), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_TILDE] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3235), - [anon_sym_STAR] = ACTIONS(3237), - [anon_sym_AMP_AMP] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3235), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym___extension__] = ACTIONS(3235), - [anon_sym_typedef] = ACTIONS(3235), - [anon_sym_extern] = ACTIONS(3235), - [anon_sym___attribute__] = ACTIONS(3235), - [anon_sym_COLON_COLON] = ACTIONS(3237), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3237), - [anon_sym___declspec] = ACTIONS(3235), - [anon_sym___based] = ACTIONS(3235), - [anon_sym___cdecl] = ACTIONS(3235), - [anon_sym___clrcall] = ACTIONS(3235), - [anon_sym___stdcall] = ACTIONS(3235), - [anon_sym___fastcall] = ACTIONS(3235), - [anon_sym___thiscall] = ACTIONS(3235), - [anon_sym___vectorcall] = ACTIONS(3235), - [anon_sym_LBRACE] = ACTIONS(3237), - [anon_sym_signed] = ACTIONS(3235), - [anon_sym_unsigned] = ACTIONS(3235), - [anon_sym_long] = ACTIONS(3235), - [anon_sym_short] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3235), - [anon_sym_static] = ACTIONS(3235), - [anon_sym_register] = ACTIONS(3235), - [anon_sym_inline] = ACTIONS(3235), - [anon_sym___inline] = ACTIONS(3235), - [anon_sym___inline__] = ACTIONS(3235), - [anon_sym___forceinline] = ACTIONS(3235), - [anon_sym_thread_local] = ACTIONS(3235), - [anon_sym___thread] = ACTIONS(3235), - [anon_sym_const] = ACTIONS(3235), - [anon_sym_constexpr] = ACTIONS(3235), - [anon_sym_volatile] = ACTIONS(3235), - [anon_sym_restrict] = ACTIONS(3235), - [anon_sym___restrict__] = ACTIONS(3235), - [anon_sym__Atomic] = ACTIONS(3235), - [anon_sym__Noreturn] = ACTIONS(3235), - [anon_sym_noreturn] = ACTIONS(3235), - [anon_sym_mutable] = ACTIONS(3235), - [anon_sym_constinit] = ACTIONS(3235), - [anon_sym_consteval] = ACTIONS(3235), - [sym_primitive_type] = ACTIONS(3235), - [anon_sym_enum] = ACTIONS(3235), - [anon_sym_class] = ACTIONS(3235), - [anon_sym_struct] = ACTIONS(3235), - [anon_sym_union] = ACTIONS(3235), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_else] = ACTIONS(3235), - [anon_sym_switch] = ACTIONS(3235), - [anon_sym_case] = ACTIONS(3235), - [anon_sym_default] = ACTIONS(3235), - [anon_sym_while] = ACTIONS(3235), - [anon_sym_do] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_return] = ACTIONS(3235), - [anon_sym_break] = ACTIONS(3235), - [anon_sym_continue] = ACTIONS(3235), - [anon_sym_goto] = ACTIONS(3235), - [anon_sym___try] = ACTIONS(3235), - [anon_sym___leave] = ACTIONS(3235), - [anon_sym_not] = ACTIONS(3235), - [anon_sym_compl] = ACTIONS(3235), - [anon_sym_DASH_DASH] = ACTIONS(3237), - [anon_sym_PLUS_PLUS] = ACTIONS(3237), - [anon_sym_sizeof] = ACTIONS(3235), - [anon_sym___alignof__] = ACTIONS(3235), - [anon_sym___alignof] = ACTIONS(3235), - [anon_sym__alignof] = ACTIONS(3235), - [anon_sym_alignof] = ACTIONS(3235), - [anon_sym__Alignof] = ACTIONS(3235), - [anon_sym_offsetof] = ACTIONS(3235), - [anon_sym__Generic] = ACTIONS(3235), - [anon_sym_asm] = ACTIONS(3235), - [anon_sym___asm__] = ACTIONS(3235), - [sym_number_literal] = ACTIONS(3237), - [anon_sym_L_SQUOTE] = ACTIONS(3237), - [anon_sym_u_SQUOTE] = ACTIONS(3237), - [anon_sym_U_SQUOTE] = ACTIONS(3237), - [anon_sym_u8_SQUOTE] = ACTIONS(3237), - [anon_sym_SQUOTE] = ACTIONS(3237), - [anon_sym_L_DQUOTE] = ACTIONS(3237), - [anon_sym_u_DQUOTE] = ACTIONS(3237), - [anon_sym_U_DQUOTE] = ACTIONS(3237), - [anon_sym_u8_DQUOTE] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(3237), - [sym_true] = ACTIONS(3235), - [sym_false] = ACTIONS(3235), - [anon_sym_NULL] = ACTIONS(3235), - [anon_sym_nullptr] = ACTIONS(3235), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3235), - [anon_sym_decltype] = ACTIONS(3235), - [anon_sym_virtual] = ACTIONS(3235), - [anon_sym_alignas] = ACTIONS(3235), - [anon_sym_explicit] = ACTIONS(3235), - [anon_sym_typename] = ACTIONS(3235), - [anon_sym_template] = ACTIONS(3235), - [anon_sym_operator] = ACTIONS(3235), - [anon_sym_try] = ACTIONS(3235), - [anon_sym_delete] = ACTIONS(3235), - [anon_sym_throw] = ACTIONS(3235), - [anon_sym_namespace] = ACTIONS(3235), - [anon_sym_using] = ACTIONS(3235), - [anon_sym_static_assert] = ACTIONS(3235), - [anon_sym_concept] = ACTIONS(3235), - [anon_sym_co_return] = ACTIONS(3235), - [anon_sym_co_yield] = ACTIONS(3235), - [anon_sym_R_DQUOTE] = ACTIONS(3237), - [anon_sym_LR_DQUOTE] = ACTIONS(3237), - [anon_sym_uR_DQUOTE] = ACTIONS(3237), - [anon_sym_UR_DQUOTE] = ACTIONS(3237), - [anon_sym_u8R_DQUOTE] = ACTIONS(3237), - [anon_sym_co_await] = ACTIONS(3235), - [anon_sym_new] = ACTIONS(3235), - [anon_sym_requires] = ACTIONS(3235), - [sym_this] = ACTIONS(3235), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3237), - [sym_semgrep_named_ellipsis] = ACTIONS(3237), - }, - [489] = { - [sym_identifier] = ACTIONS(3105), - [aux_sym_preproc_include_token1] = ACTIONS(3105), - [aux_sym_preproc_def_token1] = ACTIONS(3105), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3107), - [aux_sym_preproc_if_token1] = ACTIONS(3105), - [aux_sym_preproc_if_token2] = ACTIONS(3105), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3105), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3105), - [aux_sym_preproc_else_token1] = ACTIONS(3105), - [aux_sym_preproc_elif_token1] = ACTIONS(3105), - [sym_preproc_directive] = ACTIONS(3105), - [anon_sym_LPAREN2] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3107), - [anon_sym_TILDE] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(3105), - [anon_sym_PLUS] = ACTIONS(3105), - [anon_sym_STAR] = ACTIONS(3107), - [anon_sym_AMP_AMP] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym___extension__] = ACTIONS(3105), - [anon_sym_typedef] = ACTIONS(3105), - [anon_sym_extern] = ACTIONS(3105), - [anon_sym___attribute__] = ACTIONS(3105), - [anon_sym_COLON_COLON] = ACTIONS(3107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3107), - [anon_sym___declspec] = ACTIONS(3105), - [anon_sym___based] = ACTIONS(3105), - [anon_sym___cdecl] = ACTIONS(3105), - [anon_sym___clrcall] = ACTIONS(3105), - [anon_sym___stdcall] = ACTIONS(3105), - [anon_sym___fastcall] = ACTIONS(3105), - [anon_sym___thiscall] = ACTIONS(3105), - [anon_sym___vectorcall] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(3107), - [anon_sym_signed] = ACTIONS(3105), - [anon_sym_unsigned] = ACTIONS(3105), - [anon_sym_long] = ACTIONS(3105), - [anon_sym_short] = ACTIONS(3105), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_static] = ACTIONS(3105), - [anon_sym_register] = ACTIONS(3105), - [anon_sym_inline] = ACTIONS(3105), - [anon_sym___inline] = ACTIONS(3105), - [anon_sym___inline__] = ACTIONS(3105), - [anon_sym___forceinline] = ACTIONS(3105), - [anon_sym_thread_local] = ACTIONS(3105), - [anon_sym___thread] = ACTIONS(3105), - [anon_sym_const] = ACTIONS(3105), - [anon_sym_constexpr] = ACTIONS(3105), - [anon_sym_volatile] = ACTIONS(3105), - [anon_sym_restrict] = ACTIONS(3105), - [anon_sym___restrict__] = ACTIONS(3105), - [anon_sym__Atomic] = ACTIONS(3105), - [anon_sym__Noreturn] = ACTIONS(3105), - [anon_sym_noreturn] = ACTIONS(3105), - [anon_sym_mutable] = ACTIONS(3105), - [anon_sym_constinit] = ACTIONS(3105), - [anon_sym_consteval] = ACTIONS(3105), - [sym_primitive_type] = ACTIONS(3105), - [anon_sym_enum] = ACTIONS(3105), - [anon_sym_class] = ACTIONS(3105), - [anon_sym_struct] = ACTIONS(3105), - [anon_sym_union] = ACTIONS(3105), - [anon_sym_if] = ACTIONS(3105), - [anon_sym_else] = ACTIONS(3105), - [anon_sym_switch] = ACTIONS(3105), - [anon_sym_case] = ACTIONS(3105), - [anon_sym_default] = ACTIONS(3105), - [anon_sym_while] = ACTIONS(3105), - [anon_sym_do] = ACTIONS(3105), - [anon_sym_for] = ACTIONS(3105), - [anon_sym_return] = ACTIONS(3105), - [anon_sym_break] = ACTIONS(3105), - [anon_sym_continue] = ACTIONS(3105), - [anon_sym_goto] = ACTIONS(3105), - [anon_sym___try] = ACTIONS(3105), - [anon_sym___leave] = ACTIONS(3105), - [anon_sym_not] = ACTIONS(3105), - [anon_sym_compl] = ACTIONS(3105), - [anon_sym_DASH_DASH] = ACTIONS(3107), - [anon_sym_PLUS_PLUS] = ACTIONS(3107), - [anon_sym_sizeof] = ACTIONS(3105), - [anon_sym___alignof__] = ACTIONS(3105), - [anon_sym___alignof] = ACTIONS(3105), - [anon_sym__alignof] = ACTIONS(3105), - [anon_sym_alignof] = ACTIONS(3105), - [anon_sym__Alignof] = ACTIONS(3105), - [anon_sym_offsetof] = ACTIONS(3105), - [anon_sym__Generic] = ACTIONS(3105), - [anon_sym_asm] = ACTIONS(3105), - [anon_sym___asm__] = ACTIONS(3105), - [sym_number_literal] = ACTIONS(3107), - [anon_sym_L_SQUOTE] = ACTIONS(3107), - [anon_sym_u_SQUOTE] = ACTIONS(3107), - [anon_sym_U_SQUOTE] = ACTIONS(3107), - [anon_sym_u8_SQUOTE] = ACTIONS(3107), - [anon_sym_SQUOTE] = ACTIONS(3107), - [anon_sym_L_DQUOTE] = ACTIONS(3107), - [anon_sym_u_DQUOTE] = ACTIONS(3107), - [anon_sym_U_DQUOTE] = ACTIONS(3107), - [anon_sym_u8_DQUOTE] = ACTIONS(3107), - [anon_sym_DQUOTE] = ACTIONS(3107), - [sym_true] = ACTIONS(3105), - [sym_false] = ACTIONS(3105), - [anon_sym_NULL] = ACTIONS(3105), - [anon_sym_nullptr] = ACTIONS(3105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3105), - [anon_sym_decltype] = ACTIONS(3105), - [anon_sym_virtual] = ACTIONS(3105), - [anon_sym_alignas] = ACTIONS(3105), - [anon_sym_explicit] = ACTIONS(3105), - [anon_sym_typename] = ACTIONS(3105), - [anon_sym_template] = ACTIONS(3105), - [anon_sym_operator] = ACTIONS(3105), - [anon_sym_try] = ACTIONS(3105), - [anon_sym_delete] = ACTIONS(3105), - [anon_sym_throw] = ACTIONS(3105), - [anon_sym_namespace] = ACTIONS(3105), - [anon_sym_using] = ACTIONS(3105), - [anon_sym_static_assert] = ACTIONS(3105), - [anon_sym_concept] = ACTIONS(3105), - [anon_sym_co_return] = ACTIONS(3105), - [anon_sym_co_yield] = ACTIONS(3105), - [anon_sym_R_DQUOTE] = ACTIONS(3107), - [anon_sym_LR_DQUOTE] = ACTIONS(3107), - [anon_sym_uR_DQUOTE] = ACTIONS(3107), - [anon_sym_UR_DQUOTE] = ACTIONS(3107), - [anon_sym_u8R_DQUOTE] = ACTIONS(3107), - [anon_sym_co_await] = ACTIONS(3105), - [anon_sym_new] = ACTIONS(3105), - [anon_sym_requires] = ACTIONS(3105), - [sym_this] = ACTIONS(3105), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3107), - [sym_semgrep_named_ellipsis] = ACTIONS(3107), - }, - [490] = { - [sym_identifier] = ACTIONS(3241), - [aux_sym_preproc_include_token1] = ACTIONS(3241), - [aux_sym_preproc_def_token1] = ACTIONS(3241), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3243), - [aux_sym_preproc_if_token1] = ACTIONS(3241), - [aux_sym_preproc_if_token2] = ACTIONS(3241), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3241), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3241), - [aux_sym_preproc_else_token1] = ACTIONS(3241), - [aux_sym_preproc_elif_token1] = ACTIONS(3241), - [sym_preproc_directive] = ACTIONS(3241), - [anon_sym_LPAREN2] = ACTIONS(3243), - [anon_sym_BANG] = ACTIONS(3243), - [anon_sym_TILDE] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(3241), - [anon_sym_PLUS] = ACTIONS(3241), - [anon_sym_STAR] = ACTIONS(3243), - [anon_sym_AMP_AMP] = ACTIONS(3243), - [anon_sym_AMP] = ACTIONS(3241), - [anon_sym_SEMI] = ACTIONS(3243), - [anon_sym___extension__] = ACTIONS(3241), - [anon_sym_typedef] = ACTIONS(3241), - [anon_sym_extern] = ACTIONS(3241), - [anon_sym___attribute__] = ACTIONS(3241), - [anon_sym_COLON_COLON] = ACTIONS(3243), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3243), - [anon_sym___declspec] = ACTIONS(3241), - [anon_sym___based] = ACTIONS(3241), - [anon_sym___cdecl] = ACTIONS(3241), - [anon_sym___clrcall] = ACTIONS(3241), - [anon_sym___stdcall] = ACTIONS(3241), - [anon_sym___fastcall] = ACTIONS(3241), - [anon_sym___thiscall] = ACTIONS(3241), - [anon_sym___vectorcall] = ACTIONS(3241), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_signed] = ACTIONS(3241), - [anon_sym_unsigned] = ACTIONS(3241), - [anon_sym_long] = ACTIONS(3241), - [anon_sym_short] = ACTIONS(3241), - [anon_sym_LBRACK] = ACTIONS(3241), - [anon_sym_static] = ACTIONS(3241), - [anon_sym_register] = ACTIONS(3241), - [anon_sym_inline] = ACTIONS(3241), - [anon_sym___inline] = ACTIONS(3241), - [anon_sym___inline__] = ACTIONS(3241), - [anon_sym___forceinline] = ACTIONS(3241), - [anon_sym_thread_local] = ACTIONS(3241), - [anon_sym___thread] = ACTIONS(3241), - [anon_sym_const] = ACTIONS(3241), - [anon_sym_constexpr] = ACTIONS(3241), - [anon_sym_volatile] = ACTIONS(3241), - [anon_sym_restrict] = ACTIONS(3241), - [anon_sym___restrict__] = ACTIONS(3241), - [anon_sym__Atomic] = ACTIONS(3241), - [anon_sym__Noreturn] = ACTIONS(3241), - [anon_sym_noreturn] = ACTIONS(3241), - [anon_sym_mutable] = ACTIONS(3241), - [anon_sym_constinit] = ACTIONS(3241), - [anon_sym_consteval] = ACTIONS(3241), - [sym_primitive_type] = ACTIONS(3241), - [anon_sym_enum] = ACTIONS(3241), - [anon_sym_class] = ACTIONS(3241), - [anon_sym_struct] = ACTIONS(3241), - [anon_sym_union] = ACTIONS(3241), - [anon_sym_if] = ACTIONS(3241), - [anon_sym_else] = ACTIONS(3241), - [anon_sym_switch] = ACTIONS(3241), - [anon_sym_case] = ACTIONS(3241), - [anon_sym_default] = ACTIONS(3241), - [anon_sym_while] = ACTIONS(3241), - [anon_sym_do] = ACTIONS(3241), - [anon_sym_for] = ACTIONS(3241), - [anon_sym_return] = ACTIONS(3241), - [anon_sym_break] = ACTIONS(3241), - [anon_sym_continue] = ACTIONS(3241), - [anon_sym_goto] = ACTIONS(3241), - [anon_sym___try] = ACTIONS(3241), - [anon_sym___leave] = ACTIONS(3241), - [anon_sym_not] = ACTIONS(3241), - [anon_sym_compl] = ACTIONS(3241), - [anon_sym_DASH_DASH] = ACTIONS(3243), - [anon_sym_PLUS_PLUS] = ACTIONS(3243), - [anon_sym_sizeof] = ACTIONS(3241), - [anon_sym___alignof__] = ACTIONS(3241), - [anon_sym___alignof] = ACTIONS(3241), - [anon_sym__alignof] = ACTIONS(3241), - [anon_sym_alignof] = ACTIONS(3241), - [anon_sym__Alignof] = ACTIONS(3241), - [anon_sym_offsetof] = ACTIONS(3241), - [anon_sym__Generic] = ACTIONS(3241), - [anon_sym_asm] = ACTIONS(3241), - [anon_sym___asm__] = ACTIONS(3241), - [sym_number_literal] = ACTIONS(3243), - [anon_sym_L_SQUOTE] = ACTIONS(3243), - [anon_sym_u_SQUOTE] = ACTIONS(3243), - [anon_sym_U_SQUOTE] = ACTIONS(3243), - [anon_sym_u8_SQUOTE] = ACTIONS(3243), - [anon_sym_SQUOTE] = ACTIONS(3243), - [anon_sym_L_DQUOTE] = ACTIONS(3243), - [anon_sym_u_DQUOTE] = ACTIONS(3243), - [anon_sym_U_DQUOTE] = ACTIONS(3243), - [anon_sym_u8_DQUOTE] = ACTIONS(3243), - [anon_sym_DQUOTE] = ACTIONS(3243), - [sym_true] = ACTIONS(3241), - [sym_false] = ACTIONS(3241), - [anon_sym_NULL] = ACTIONS(3241), - [anon_sym_nullptr] = ACTIONS(3241), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3241), - [anon_sym_decltype] = ACTIONS(3241), - [anon_sym_virtual] = ACTIONS(3241), - [anon_sym_alignas] = ACTIONS(3241), - [anon_sym_explicit] = ACTIONS(3241), - [anon_sym_typename] = ACTIONS(3241), - [anon_sym_template] = ACTIONS(3241), - [anon_sym_operator] = ACTIONS(3241), - [anon_sym_try] = ACTIONS(3241), - [anon_sym_delete] = ACTIONS(3241), - [anon_sym_throw] = ACTIONS(3241), - [anon_sym_namespace] = ACTIONS(3241), - [anon_sym_using] = ACTIONS(3241), - [anon_sym_static_assert] = ACTIONS(3241), - [anon_sym_concept] = ACTIONS(3241), - [anon_sym_co_return] = ACTIONS(3241), - [anon_sym_co_yield] = ACTIONS(3241), - [anon_sym_R_DQUOTE] = ACTIONS(3243), - [anon_sym_LR_DQUOTE] = ACTIONS(3243), - [anon_sym_uR_DQUOTE] = ACTIONS(3243), - [anon_sym_UR_DQUOTE] = ACTIONS(3243), - [anon_sym_u8R_DQUOTE] = ACTIONS(3243), - [anon_sym_co_await] = ACTIONS(3241), - [anon_sym_new] = ACTIONS(3241), - [anon_sym_requires] = ACTIONS(3241), - [sym_this] = ACTIONS(3241), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3243), - [sym_semgrep_named_ellipsis] = ACTIONS(3243), - }, - [491] = { - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_unaligned_ptr_modifier] = STATE(6585), - [sym_ms_pointer_modifier] = STATE(4046), - [sym_declarator] = STATE(7557), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7634), - [sym_array_declarator] = STATE(7634), - [sym_type_qualifier] = STATE(5102), - [sym_expression] = STATE(3048), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3892), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7160), - [sym_qualified_identifier] = STATE(3893), - [sym_qualified_type_identifier] = STATE(4648), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [aux_sym_type_definition_type_repeat1] = STATE(5102), - [aux_sym_pointer_declarator_repeat1] = STATE(4046), - [sym_identifier] = ACTIONS(3670), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3672), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), [anon_sym_STAR] = ACTIONS(31), [anon_sym_AMP_AMP] = ACTIONS(33), [anon_sym_AMP] = ACTIONS(35), - [anon_sym___extension__] = ACTIONS(3664), - [anon_sym_COLON_COLON] = ACTIONS(2335), + [anon_sym___extension__] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(2287), [anon_sym___based] = ACTIONS(51), - [sym_ms_restrict_modifier] = ACTIONS(3666), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3666), - [sym_ms_signed_ptr_modifier] = ACTIONS(3666), - [anon_sym__unaligned] = ACTIONS(3668), - [anon_sym___unaligned] = ACTIONS(3668), - [anon_sym_LBRACK] = ACTIONS(2219), - [anon_sym_const] = ACTIONS(3664), - [anon_sym_constexpr] = ACTIONS(3664), - [anon_sym_volatile] = ACTIONS(3664), - [anon_sym_restrict] = ACTIONS(3664), - [anon_sym___restrict__] = ACTIONS(3664), - [anon_sym__Atomic] = ACTIONS(3664), - [anon_sym__Noreturn] = ACTIONS(3664), - [anon_sym_noreturn] = ACTIONS(3664), - [anon_sym_mutable] = ACTIONS(3664), - [anon_sym_constinit] = ACTIONS(3664), - [anon_sym_consteval] = ACTIONS(3664), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), + [sym_ms_restrict_modifier] = ACTIONS(3696), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3696), + [sym_ms_signed_ptr_modifier] = ACTIONS(3696), + [anon_sym__unaligned] = ACTIONS(3698), + [anon_sym___unaligned] = ACTIONS(3698), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_const] = ACTIONS(3694), + [anon_sym_constexpr] = ACTIONS(3694), + [anon_sym_volatile] = ACTIONS(3694), + [anon_sym_restrict] = ACTIONS(3694), + [anon_sym___restrict__] = ACTIONS(3694), + [anon_sym__Atomic] = ACTIONS(3694), + [anon_sym__Noreturn] = ACTIONS(3694), + [anon_sym_noreturn] = ACTIONS(3694), + [anon_sym_mutable] = ACTIONS(3694), + [anon_sym_constinit] = ACTIONS(3694), + [anon_sym_consteval] = ACTIONS(3694), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_operator] = ACTIONS(2259), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_operator] = ACTIONS(2257), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [492] = { - [sym_identifier] = ACTIONS(3109), - [aux_sym_preproc_include_token1] = ACTIONS(3109), - [aux_sym_preproc_def_token1] = ACTIONS(3109), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3111), - [aux_sym_preproc_if_token1] = ACTIONS(3109), - [aux_sym_preproc_if_token2] = ACTIONS(3109), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3109), - [aux_sym_preproc_else_token1] = ACTIONS(3109), - [aux_sym_preproc_elif_token1] = ACTIONS(3109), - [sym_preproc_directive] = ACTIONS(3109), - [anon_sym_LPAREN2] = ACTIONS(3111), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_TILDE] = ACTIONS(3111), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_AMP_AMP] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym___extension__] = ACTIONS(3109), - [anon_sym_typedef] = ACTIONS(3109), - [anon_sym_extern] = ACTIONS(3109), - [anon_sym___attribute__] = ACTIONS(3109), - [anon_sym_COLON_COLON] = ACTIONS(3111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3111), - [anon_sym___declspec] = ACTIONS(3109), - [anon_sym___based] = ACTIONS(3109), - [anon_sym___cdecl] = ACTIONS(3109), - [anon_sym___clrcall] = ACTIONS(3109), - [anon_sym___stdcall] = ACTIONS(3109), - [anon_sym___fastcall] = ACTIONS(3109), - [anon_sym___thiscall] = ACTIONS(3109), - [anon_sym___vectorcall] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3111), - [anon_sym_signed] = ACTIONS(3109), - [anon_sym_unsigned] = ACTIONS(3109), - [anon_sym_long] = ACTIONS(3109), - [anon_sym_short] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3109), - [anon_sym_static] = ACTIONS(3109), - [anon_sym_register] = ACTIONS(3109), - [anon_sym_inline] = ACTIONS(3109), - [anon_sym___inline] = ACTIONS(3109), - [anon_sym___inline__] = ACTIONS(3109), - [anon_sym___forceinline] = ACTIONS(3109), - [anon_sym_thread_local] = ACTIONS(3109), - [anon_sym___thread] = ACTIONS(3109), - [anon_sym_const] = ACTIONS(3109), - [anon_sym_constexpr] = ACTIONS(3109), - [anon_sym_volatile] = ACTIONS(3109), - [anon_sym_restrict] = ACTIONS(3109), - [anon_sym___restrict__] = ACTIONS(3109), - [anon_sym__Atomic] = ACTIONS(3109), - [anon_sym__Noreturn] = ACTIONS(3109), - [anon_sym_noreturn] = ACTIONS(3109), - [anon_sym_mutable] = ACTIONS(3109), - [anon_sym_constinit] = ACTIONS(3109), - [anon_sym_consteval] = ACTIONS(3109), - [sym_primitive_type] = ACTIONS(3109), - [anon_sym_enum] = ACTIONS(3109), - [anon_sym_class] = ACTIONS(3109), - [anon_sym_struct] = ACTIONS(3109), - [anon_sym_union] = ACTIONS(3109), - [anon_sym_if] = ACTIONS(3109), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_switch] = ACTIONS(3109), - [anon_sym_case] = ACTIONS(3109), - [anon_sym_default] = ACTIONS(3109), - [anon_sym_while] = ACTIONS(3109), - [anon_sym_do] = ACTIONS(3109), - [anon_sym_for] = ACTIONS(3109), - [anon_sym_return] = ACTIONS(3109), - [anon_sym_break] = ACTIONS(3109), - [anon_sym_continue] = ACTIONS(3109), - [anon_sym_goto] = ACTIONS(3109), - [anon_sym___try] = ACTIONS(3109), - [anon_sym___leave] = ACTIONS(3109), - [anon_sym_not] = ACTIONS(3109), - [anon_sym_compl] = ACTIONS(3109), - [anon_sym_DASH_DASH] = ACTIONS(3111), - [anon_sym_PLUS_PLUS] = ACTIONS(3111), - [anon_sym_sizeof] = ACTIONS(3109), - [anon_sym___alignof__] = ACTIONS(3109), - [anon_sym___alignof] = ACTIONS(3109), - [anon_sym__alignof] = ACTIONS(3109), - [anon_sym_alignof] = ACTIONS(3109), - [anon_sym__Alignof] = ACTIONS(3109), - [anon_sym_offsetof] = ACTIONS(3109), - [anon_sym__Generic] = ACTIONS(3109), - [anon_sym_asm] = ACTIONS(3109), - [anon_sym___asm__] = ACTIONS(3109), - [sym_number_literal] = ACTIONS(3111), - [anon_sym_L_SQUOTE] = ACTIONS(3111), - [anon_sym_u_SQUOTE] = ACTIONS(3111), - [anon_sym_U_SQUOTE] = ACTIONS(3111), - [anon_sym_u8_SQUOTE] = ACTIONS(3111), - [anon_sym_SQUOTE] = ACTIONS(3111), - [anon_sym_L_DQUOTE] = ACTIONS(3111), - [anon_sym_u_DQUOTE] = ACTIONS(3111), - [anon_sym_U_DQUOTE] = ACTIONS(3111), - [anon_sym_u8_DQUOTE] = ACTIONS(3111), - [anon_sym_DQUOTE] = ACTIONS(3111), - [sym_true] = ACTIONS(3109), - [sym_false] = ACTIONS(3109), - [anon_sym_NULL] = ACTIONS(3109), - [anon_sym_nullptr] = ACTIONS(3109), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3109), - [anon_sym_decltype] = ACTIONS(3109), - [anon_sym_virtual] = ACTIONS(3109), - [anon_sym_alignas] = ACTIONS(3109), - [anon_sym_explicit] = ACTIONS(3109), - [anon_sym_typename] = ACTIONS(3109), - [anon_sym_template] = ACTIONS(3109), - [anon_sym_operator] = ACTIONS(3109), - [anon_sym_try] = ACTIONS(3109), - [anon_sym_delete] = ACTIONS(3109), - [anon_sym_throw] = ACTIONS(3109), - [anon_sym_namespace] = ACTIONS(3109), - [anon_sym_using] = ACTIONS(3109), - [anon_sym_static_assert] = ACTIONS(3109), - [anon_sym_concept] = ACTIONS(3109), - [anon_sym_co_return] = ACTIONS(3109), - [anon_sym_co_yield] = ACTIONS(3109), - [anon_sym_R_DQUOTE] = ACTIONS(3111), - [anon_sym_LR_DQUOTE] = ACTIONS(3111), - [anon_sym_uR_DQUOTE] = ACTIONS(3111), - [anon_sym_UR_DQUOTE] = ACTIONS(3111), - [anon_sym_u8R_DQUOTE] = ACTIONS(3111), - [anon_sym_co_await] = ACTIONS(3109), - [anon_sym_new] = ACTIONS(3109), - [anon_sym_requires] = ACTIONS(3109), - [sym_this] = ACTIONS(3109), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3111), - [sym_semgrep_named_ellipsis] = ACTIONS(3111), + [475] = { + [sym_identifier] = ACTIONS(3123), + [aux_sym_preproc_include_token1] = ACTIONS(3123), + [aux_sym_preproc_def_token1] = ACTIONS(3123), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3125), + [aux_sym_preproc_if_token1] = ACTIONS(3123), + [aux_sym_preproc_if_token2] = ACTIONS(3123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3123), + [aux_sym_preproc_else_token1] = ACTIONS(3123), + [aux_sym_preproc_elif_token1] = ACTIONS(3123), + [sym_preproc_directive] = ACTIONS(3123), + [anon_sym_LPAREN2] = ACTIONS(3125), + [anon_sym_BANG] = ACTIONS(3125), + [anon_sym_TILDE] = ACTIONS(3125), + [anon_sym_DASH] = ACTIONS(3123), + [anon_sym_PLUS] = ACTIONS(3123), + [anon_sym_STAR] = ACTIONS(3125), + [anon_sym_AMP_AMP] = ACTIONS(3125), + [anon_sym_AMP] = ACTIONS(3123), + [anon_sym_SEMI] = ACTIONS(3125), + [anon_sym___extension__] = ACTIONS(3123), + [anon_sym_typedef] = ACTIONS(3123), + [anon_sym_extern] = ACTIONS(3123), + [anon_sym___attribute__] = ACTIONS(3123), + [anon_sym_COLON_COLON] = ACTIONS(3125), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3125), + [anon_sym___declspec] = ACTIONS(3123), + [anon_sym___based] = ACTIONS(3123), + [anon_sym___cdecl] = ACTIONS(3123), + [anon_sym___clrcall] = ACTIONS(3123), + [anon_sym___stdcall] = ACTIONS(3123), + [anon_sym___fastcall] = ACTIONS(3123), + [anon_sym___thiscall] = ACTIONS(3123), + [anon_sym___vectorcall] = ACTIONS(3123), + [anon_sym_LBRACE] = ACTIONS(3125), + [anon_sym_signed] = ACTIONS(3123), + [anon_sym_unsigned] = ACTIONS(3123), + [anon_sym_long] = ACTIONS(3123), + [anon_sym_short] = ACTIONS(3123), + [anon_sym_LBRACK] = ACTIONS(3123), + [anon_sym_static] = ACTIONS(3123), + [anon_sym_register] = ACTIONS(3123), + [anon_sym_inline] = ACTIONS(3123), + [anon_sym___inline] = ACTIONS(3123), + [anon_sym___inline__] = ACTIONS(3123), + [anon_sym___forceinline] = ACTIONS(3123), + [anon_sym_thread_local] = ACTIONS(3123), + [anon_sym___thread] = ACTIONS(3123), + [anon_sym_const] = ACTIONS(3123), + [anon_sym_constexpr] = ACTIONS(3123), + [anon_sym_volatile] = ACTIONS(3123), + [anon_sym_restrict] = ACTIONS(3123), + [anon_sym___restrict__] = ACTIONS(3123), + [anon_sym__Atomic] = ACTIONS(3123), + [anon_sym__Noreturn] = ACTIONS(3123), + [anon_sym_noreturn] = ACTIONS(3123), + [anon_sym_mutable] = ACTIONS(3123), + [anon_sym_constinit] = ACTIONS(3123), + [anon_sym_consteval] = ACTIONS(3123), + [sym_primitive_type] = ACTIONS(3123), + [anon_sym_enum] = ACTIONS(3123), + [anon_sym_class] = ACTIONS(3123), + [anon_sym_struct] = ACTIONS(3123), + [anon_sym_union] = ACTIONS(3123), + [anon_sym_if] = ACTIONS(3123), + [anon_sym_else] = ACTIONS(3123), + [anon_sym_switch] = ACTIONS(3123), + [anon_sym_case] = ACTIONS(3123), + [anon_sym_default] = ACTIONS(3123), + [anon_sym_while] = ACTIONS(3123), + [anon_sym_do] = ACTIONS(3123), + [anon_sym_for] = ACTIONS(3123), + [anon_sym_return] = ACTIONS(3123), + [anon_sym_break] = ACTIONS(3123), + [anon_sym_continue] = ACTIONS(3123), + [anon_sym_goto] = ACTIONS(3123), + [anon_sym___try] = ACTIONS(3123), + [anon_sym___leave] = ACTIONS(3123), + [anon_sym_not] = ACTIONS(3123), + [anon_sym_compl] = ACTIONS(3123), + [anon_sym_DASH_DASH] = ACTIONS(3125), + [anon_sym_PLUS_PLUS] = ACTIONS(3125), + [anon_sym_sizeof] = ACTIONS(3123), + [anon_sym___alignof__] = ACTIONS(3123), + [anon_sym___alignof] = ACTIONS(3123), + [anon_sym__alignof] = ACTIONS(3123), + [anon_sym_alignof] = ACTIONS(3123), + [anon_sym__Alignof] = ACTIONS(3123), + [anon_sym_offsetof] = ACTIONS(3123), + [anon_sym__Generic] = ACTIONS(3123), + [anon_sym_asm] = ACTIONS(3123), + [anon_sym___asm__] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(3125), + [anon_sym_L_SQUOTE] = ACTIONS(3125), + [anon_sym_u_SQUOTE] = ACTIONS(3125), + [anon_sym_U_SQUOTE] = ACTIONS(3125), + [anon_sym_u8_SQUOTE] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3125), + [anon_sym_L_DQUOTE] = ACTIONS(3125), + [anon_sym_u_DQUOTE] = ACTIONS(3125), + [anon_sym_U_DQUOTE] = ACTIONS(3125), + [anon_sym_u8_DQUOTE] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym_true] = ACTIONS(3123), + [sym_false] = ACTIONS(3123), + [anon_sym_NULL] = ACTIONS(3123), + [anon_sym_nullptr] = ACTIONS(3123), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3123), + [anon_sym_decltype] = ACTIONS(3123), + [anon_sym_virtual] = ACTIONS(3123), + [anon_sym_alignas] = ACTIONS(3123), + [anon_sym_explicit] = ACTIONS(3123), + [anon_sym_typename] = ACTIONS(3123), + [anon_sym_template] = ACTIONS(3123), + [anon_sym_operator] = ACTIONS(3123), + [anon_sym_try] = ACTIONS(3123), + [anon_sym_delete] = ACTIONS(3123), + [anon_sym_throw] = ACTIONS(3123), + [anon_sym_namespace] = ACTIONS(3123), + [anon_sym_using] = ACTIONS(3123), + [anon_sym_static_assert] = ACTIONS(3123), + [anon_sym_concept] = ACTIONS(3123), + [anon_sym_co_return] = ACTIONS(3123), + [anon_sym_co_yield] = ACTIONS(3123), + [anon_sym_R_DQUOTE] = ACTIONS(3125), + [anon_sym_LR_DQUOTE] = ACTIONS(3125), + [anon_sym_uR_DQUOTE] = ACTIONS(3125), + [anon_sym_UR_DQUOTE] = ACTIONS(3125), + [anon_sym_u8R_DQUOTE] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3123), + [anon_sym_new] = ACTIONS(3123), + [anon_sym_requires] = ACTIONS(3123), + [sym_this] = ACTIONS(3123), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3125), + [sym_semgrep_named_ellipsis] = ACTIONS(3125), }, - [493] = { - [sym_identifier] = ACTIONS(3121), - [aux_sym_preproc_include_token1] = ACTIONS(3121), - [aux_sym_preproc_def_token1] = ACTIONS(3121), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3123), - [aux_sym_preproc_if_token1] = ACTIONS(3121), - [aux_sym_preproc_if_token2] = ACTIONS(3121), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3121), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3121), - [aux_sym_preproc_else_token1] = ACTIONS(3121), - [aux_sym_preproc_elif_token1] = ACTIONS(3121), - [sym_preproc_directive] = ACTIONS(3121), - [anon_sym_LPAREN2] = ACTIONS(3123), - [anon_sym_BANG] = ACTIONS(3123), - [anon_sym_TILDE] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3121), - [anon_sym_PLUS] = ACTIONS(3121), - [anon_sym_STAR] = ACTIONS(3123), - [anon_sym_AMP_AMP] = ACTIONS(3123), - [anon_sym_AMP] = ACTIONS(3121), - [anon_sym_SEMI] = ACTIONS(3123), - [anon_sym___extension__] = ACTIONS(3121), - [anon_sym_typedef] = ACTIONS(3121), - [anon_sym_extern] = ACTIONS(3121), - [anon_sym___attribute__] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(3123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3123), - [anon_sym___declspec] = ACTIONS(3121), - [anon_sym___based] = ACTIONS(3121), - [anon_sym___cdecl] = ACTIONS(3121), - [anon_sym___clrcall] = ACTIONS(3121), - [anon_sym___stdcall] = ACTIONS(3121), - [anon_sym___fastcall] = ACTIONS(3121), - [anon_sym___thiscall] = ACTIONS(3121), - [anon_sym___vectorcall] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(3123), - [anon_sym_signed] = ACTIONS(3121), - [anon_sym_unsigned] = ACTIONS(3121), - [anon_sym_long] = ACTIONS(3121), - [anon_sym_short] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3121), - [anon_sym_static] = ACTIONS(3121), - [anon_sym_register] = ACTIONS(3121), - [anon_sym_inline] = ACTIONS(3121), - [anon_sym___inline] = ACTIONS(3121), - [anon_sym___inline__] = ACTIONS(3121), - [anon_sym___forceinline] = ACTIONS(3121), - [anon_sym_thread_local] = ACTIONS(3121), - [anon_sym___thread] = ACTIONS(3121), - [anon_sym_const] = ACTIONS(3121), - [anon_sym_constexpr] = ACTIONS(3121), - [anon_sym_volatile] = ACTIONS(3121), - [anon_sym_restrict] = ACTIONS(3121), - [anon_sym___restrict__] = ACTIONS(3121), - [anon_sym__Atomic] = ACTIONS(3121), - [anon_sym__Noreturn] = ACTIONS(3121), - [anon_sym_noreturn] = ACTIONS(3121), - [anon_sym_mutable] = ACTIONS(3121), - [anon_sym_constinit] = ACTIONS(3121), - [anon_sym_consteval] = ACTIONS(3121), - [sym_primitive_type] = ACTIONS(3121), - [anon_sym_enum] = ACTIONS(3121), - [anon_sym_class] = ACTIONS(3121), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_if] = ACTIONS(3121), - [anon_sym_else] = ACTIONS(3121), - [anon_sym_switch] = ACTIONS(3121), - [anon_sym_case] = ACTIONS(3121), - [anon_sym_default] = ACTIONS(3121), - [anon_sym_while] = ACTIONS(3121), - [anon_sym_do] = ACTIONS(3121), - [anon_sym_for] = ACTIONS(3121), - [anon_sym_return] = ACTIONS(3121), - [anon_sym_break] = ACTIONS(3121), - [anon_sym_continue] = ACTIONS(3121), - [anon_sym_goto] = ACTIONS(3121), - [anon_sym___try] = ACTIONS(3121), - [anon_sym___leave] = ACTIONS(3121), - [anon_sym_not] = ACTIONS(3121), - [anon_sym_compl] = ACTIONS(3121), - [anon_sym_DASH_DASH] = ACTIONS(3123), - [anon_sym_PLUS_PLUS] = ACTIONS(3123), - [anon_sym_sizeof] = ACTIONS(3121), - [anon_sym___alignof__] = ACTIONS(3121), - [anon_sym___alignof] = ACTIONS(3121), - [anon_sym__alignof] = ACTIONS(3121), - [anon_sym_alignof] = ACTIONS(3121), - [anon_sym__Alignof] = ACTIONS(3121), - [anon_sym_offsetof] = ACTIONS(3121), - [anon_sym__Generic] = ACTIONS(3121), - [anon_sym_asm] = ACTIONS(3121), - [anon_sym___asm__] = ACTIONS(3121), - [sym_number_literal] = ACTIONS(3123), - [anon_sym_L_SQUOTE] = ACTIONS(3123), - [anon_sym_u_SQUOTE] = ACTIONS(3123), - [anon_sym_U_SQUOTE] = ACTIONS(3123), - [anon_sym_u8_SQUOTE] = ACTIONS(3123), - [anon_sym_SQUOTE] = ACTIONS(3123), - [anon_sym_L_DQUOTE] = ACTIONS(3123), - [anon_sym_u_DQUOTE] = ACTIONS(3123), - [anon_sym_U_DQUOTE] = ACTIONS(3123), - [anon_sym_u8_DQUOTE] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3123), - [sym_true] = ACTIONS(3121), - [sym_false] = ACTIONS(3121), - [anon_sym_NULL] = ACTIONS(3121), - [anon_sym_nullptr] = ACTIONS(3121), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3121), - [anon_sym_decltype] = ACTIONS(3121), - [anon_sym_virtual] = ACTIONS(3121), - [anon_sym_alignas] = ACTIONS(3121), - [anon_sym_explicit] = ACTIONS(3121), - [anon_sym_typename] = ACTIONS(3121), - [anon_sym_template] = ACTIONS(3121), - [anon_sym_operator] = ACTIONS(3121), - [anon_sym_try] = ACTIONS(3121), - [anon_sym_delete] = ACTIONS(3121), - [anon_sym_throw] = ACTIONS(3121), - [anon_sym_namespace] = ACTIONS(3121), - [anon_sym_using] = ACTIONS(3121), - [anon_sym_static_assert] = ACTIONS(3121), - [anon_sym_concept] = ACTIONS(3121), - [anon_sym_co_return] = ACTIONS(3121), - [anon_sym_co_yield] = ACTIONS(3121), - [anon_sym_R_DQUOTE] = ACTIONS(3123), - [anon_sym_LR_DQUOTE] = ACTIONS(3123), - [anon_sym_uR_DQUOTE] = ACTIONS(3123), - [anon_sym_UR_DQUOTE] = ACTIONS(3123), - [anon_sym_u8R_DQUOTE] = ACTIONS(3123), - [anon_sym_co_await] = ACTIONS(3121), - [anon_sym_new] = ACTIONS(3121), - [anon_sym_requires] = ACTIONS(3121), - [sym_this] = ACTIONS(3121), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3123), - [sym_semgrep_named_ellipsis] = ACTIONS(3123), + [476] = { + [sym_identifier] = ACTIONS(3087), + [aux_sym_preproc_include_token1] = ACTIONS(3087), + [aux_sym_preproc_def_token1] = ACTIONS(3087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [aux_sym_preproc_if_token1] = ACTIONS(3087), + [aux_sym_preproc_if_token2] = ACTIONS(3087), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3087), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3087), + [aux_sym_preproc_else_token1] = ACTIONS(3087), + [aux_sym_preproc_elif_token1] = ACTIONS(3087), + [sym_preproc_directive] = ACTIONS(3087), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_BANG] = ACTIONS(3089), + [anon_sym_TILDE] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3087), + [anon_sym_STAR] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_typedef] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3089), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3089), + [anon_sym___declspec] = ACTIONS(3087), + [anon_sym___based] = ACTIONS(3087), + [anon_sym___cdecl] = ACTIONS(3087), + [anon_sym___clrcall] = ACTIONS(3087), + [anon_sym___stdcall] = ACTIONS(3087), + [anon_sym___fastcall] = ACTIONS(3087), + [anon_sym___thiscall] = ACTIONS(3087), + [anon_sym___vectorcall] = ACTIONS(3087), + [anon_sym_LBRACE] = ACTIONS(3089), + [anon_sym_signed] = ACTIONS(3087), + [anon_sym_unsigned] = ACTIONS(3087), + [anon_sym_long] = ACTIONS(3087), + [anon_sym_short] = ACTIONS(3087), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_register] = ACTIONS(3087), + [anon_sym_inline] = ACTIONS(3087), + [anon_sym___inline] = ACTIONS(3087), + [anon_sym___inline__] = ACTIONS(3087), + [anon_sym___forceinline] = ACTIONS(3087), + [anon_sym_thread_local] = ACTIONS(3087), + [anon_sym___thread] = ACTIONS(3087), + [anon_sym_const] = ACTIONS(3087), + [anon_sym_constexpr] = ACTIONS(3087), + [anon_sym_volatile] = ACTIONS(3087), + [anon_sym_restrict] = ACTIONS(3087), + [anon_sym___restrict__] = ACTIONS(3087), + [anon_sym__Atomic] = ACTIONS(3087), + [anon_sym__Noreturn] = ACTIONS(3087), + [anon_sym_noreturn] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [sym_primitive_type] = ACTIONS(3087), + [anon_sym_enum] = ACTIONS(3087), + [anon_sym_class] = ACTIONS(3087), + [anon_sym_struct] = ACTIONS(3087), + [anon_sym_union] = ACTIONS(3087), + [anon_sym_if] = ACTIONS(3087), + [anon_sym_else] = ACTIONS(3087), + [anon_sym_switch] = ACTIONS(3087), + [anon_sym_case] = ACTIONS(3087), + [anon_sym_default] = ACTIONS(3087), + [anon_sym_while] = ACTIONS(3087), + [anon_sym_do] = ACTIONS(3087), + [anon_sym_for] = ACTIONS(3087), + [anon_sym_return] = ACTIONS(3087), + [anon_sym_break] = ACTIONS(3087), + [anon_sym_continue] = ACTIONS(3087), + [anon_sym_goto] = ACTIONS(3087), + [anon_sym___try] = ACTIONS(3087), + [anon_sym___leave] = ACTIONS(3087), + [anon_sym_not] = ACTIONS(3087), + [anon_sym_compl] = ACTIONS(3087), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_sizeof] = ACTIONS(3087), + [anon_sym___alignof__] = ACTIONS(3087), + [anon_sym___alignof] = ACTIONS(3087), + [anon_sym__alignof] = ACTIONS(3087), + [anon_sym_alignof] = ACTIONS(3087), + [anon_sym__Alignof] = ACTIONS(3087), + [anon_sym_offsetof] = ACTIONS(3087), + [anon_sym__Generic] = ACTIONS(3087), + [anon_sym_asm] = ACTIONS(3087), + [anon_sym___asm__] = ACTIONS(3087), + [sym_number_literal] = ACTIONS(3089), + [anon_sym_L_SQUOTE] = ACTIONS(3089), + [anon_sym_u_SQUOTE] = ACTIONS(3089), + [anon_sym_U_SQUOTE] = ACTIONS(3089), + [anon_sym_u8_SQUOTE] = ACTIONS(3089), + [anon_sym_SQUOTE] = ACTIONS(3089), + [anon_sym_L_DQUOTE] = ACTIONS(3089), + [anon_sym_u_DQUOTE] = ACTIONS(3089), + [anon_sym_U_DQUOTE] = ACTIONS(3089), + [anon_sym_u8_DQUOTE] = ACTIONS(3089), + [anon_sym_DQUOTE] = ACTIONS(3089), + [sym_true] = ACTIONS(3087), + [sym_false] = ACTIONS(3087), + [anon_sym_NULL] = ACTIONS(3087), + [anon_sym_nullptr] = ACTIONS(3087), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym_explicit] = ACTIONS(3087), + [anon_sym_typename] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [anon_sym_try] = ACTIONS(3087), + [anon_sym_delete] = ACTIONS(3087), + [anon_sym_throw] = ACTIONS(3087), + [anon_sym_namespace] = ACTIONS(3087), + [anon_sym_using] = ACTIONS(3087), + [anon_sym_static_assert] = ACTIONS(3087), + [anon_sym_concept] = ACTIONS(3087), + [anon_sym_co_return] = ACTIONS(3087), + [anon_sym_co_yield] = ACTIONS(3087), + [anon_sym_R_DQUOTE] = ACTIONS(3089), + [anon_sym_LR_DQUOTE] = ACTIONS(3089), + [anon_sym_uR_DQUOTE] = ACTIONS(3089), + [anon_sym_UR_DQUOTE] = ACTIONS(3089), + [anon_sym_u8R_DQUOTE] = ACTIONS(3089), + [anon_sym_co_await] = ACTIONS(3087), + [anon_sym_new] = ACTIONS(3087), + [anon_sym_requires] = ACTIONS(3087), + [sym_this] = ACTIONS(3087), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3089), + [sym_semgrep_named_ellipsis] = ACTIONS(3089), }, - [494] = { - [sym_identifier] = ACTIONS(3211), - [aux_sym_preproc_include_token1] = ACTIONS(3211), - [aux_sym_preproc_def_token1] = ACTIONS(3211), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3213), - [aux_sym_preproc_if_token1] = ACTIONS(3211), - [aux_sym_preproc_if_token2] = ACTIONS(3211), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3211), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3211), - [aux_sym_preproc_else_token1] = ACTIONS(3211), - [aux_sym_preproc_elif_token1] = ACTIONS(3211), - [sym_preproc_directive] = ACTIONS(3211), - [anon_sym_LPAREN2] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(3213), - [anon_sym_TILDE] = ACTIONS(3213), - [anon_sym_DASH] = ACTIONS(3211), - [anon_sym_PLUS] = ACTIONS(3211), - [anon_sym_STAR] = ACTIONS(3213), - [anon_sym_AMP_AMP] = ACTIONS(3213), - [anon_sym_AMP] = ACTIONS(3211), - [anon_sym_SEMI] = ACTIONS(3213), - [anon_sym___extension__] = ACTIONS(3211), - [anon_sym_typedef] = ACTIONS(3211), - [anon_sym_extern] = ACTIONS(3211), - [anon_sym___attribute__] = ACTIONS(3211), - [anon_sym_COLON_COLON] = ACTIONS(3213), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3213), - [anon_sym___declspec] = ACTIONS(3211), - [anon_sym___based] = ACTIONS(3211), - [anon_sym___cdecl] = ACTIONS(3211), - [anon_sym___clrcall] = ACTIONS(3211), - [anon_sym___stdcall] = ACTIONS(3211), - [anon_sym___fastcall] = ACTIONS(3211), - [anon_sym___thiscall] = ACTIONS(3211), - [anon_sym___vectorcall] = ACTIONS(3211), - [anon_sym_LBRACE] = ACTIONS(3213), - [anon_sym_signed] = ACTIONS(3211), - [anon_sym_unsigned] = ACTIONS(3211), - [anon_sym_long] = ACTIONS(3211), - [anon_sym_short] = ACTIONS(3211), - [anon_sym_LBRACK] = ACTIONS(3211), - [anon_sym_static] = ACTIONS(3211), - [anon_sym_register] = ACTIONS(3211), - [anon_sym_inline] = ACTIONS(3211), - [anon_sym___inline] = ACTIONS(3211), - [anon_sym___inline__] = ACTIONS(3211), - [anon_sym___forceinline] = ACTIONS(3211), - [anon_sym_thread_local] = ACTIONS(3211), - [anon_sym___thread] = ACTIONS(3211), - [anon_sym_const] = ACTIONS(3211), - [anon_sym_constexpr] = ACTIONS(3211), - [anon_sym_volatile] = ACTIONS(3211), - [anon_sym_restrict] = ACTIONS(3211), - [anon_sym___restrict__] = ACTIONS(3211), - [anon_sym__Atomic] = ACTIONS(3211), - [anon_sym__Noreturn] = ACTIONS(3211), - [anon_sym_noreturn] = ACTIONS(3211), - [anon_sym_mutable] = ACTIONS(3211), - [anon_sym_constinit] = ACTIONS(3211), - [anon_sym_consteval] = ACTIONS(3211), - [sym_primitive_type] = ACTIONS(3211), - [anon_sym_enum] = ACTIONS(3211), - [anon_sym_class] = ACTIONS(3211), - [anon_sym_struct] = ACTIONS(3211), - [anon_sym_union] = ACTIONS(3211), - [anon_sym_if] = ACTIONS(3211), - [anon_sym_else] = ACTIONS(3211), - [anon_sym_switch] = ACTIONS(3211), - [anon_sym_case] = ACTIONS(3211), - [anon_sym_default] = ACTIONS(3211), - [anon_sym_while] = ACTIONS(3211), - [anon_sym_do] = ACTIONS(3211), - [anon_sym_for] = ACTIONS(3211), - [anon_sym_return] = ACTIONS(3211), - [anon_sym_break] = ACTIONS(3211), - [anon_sym_continue] = ACTIONS(3211), - [anon_sym_goto] = ACTIONS(3211), - [anon_sym___try] = ACTIONS(3211), - [anon_sym___leave] = ACTIONS(3211), - [anon_sym_not] = ACTIONS(3211), - [anon_sym_compl] = ACTIONS(3211), - [anon_sym_DASH_DASH] = ACTIONS(3213), - [anon_sym_PLUS_PLUS] = ACTIONS(3213), - [anon_sym_sizeof] = ACTIONS(3211), - [anon_sym___alignof__] = ACTIONS(3211), - [anon_sym___alignof] = ACTIONS(3211), - [anon_sym__alignof] = ACTIONS(3211), - [anon_sym_alignof] = ACTIONS(3211), - [anon_sym__Alignof] = ACTIONS(3211), - [anon_sym_offsetof] = ACTIONS(3211), - [anon_sym__Generic] = ACTIONS(3211), - [anon_sym_asm] = ACTIONS(3211), - [anon_sym___asm__] = ACTIONS(3211), - [sym_number_literal] = ACTIONS(3213), - [anon_sym_L_SQUOTE] = ACTIONS(3213), - [anon_sym_u_SQUOTE] = ACTIONS(3213), - [anon_sym_U_SQUOTE] = ACTIONS(3213), - [anon_sym_u8_SQUOTE] = ACTIONS(3213), - [anon_sym_SQUOTE] = ACTIONS(3213), - [anon_sym_L_DQUOTE] = ACTIONS(3213), - [anon_sym_u_DQUOTE] = ACTIONS(3213), - [anon_sym_U_DQUOTE] = ACTIONS(3213), - [anon_sym_u8_DQUOTE] = ACTIONS(3213), - [anon_sym_DQUOTE] = ACTIONS(3213), - [sym_true] = ACTIONS(3211), - [sym_false] = ACTIONS(3211), - [anon_sym_NULL] = ACTIONS(3211), - [anon_sym_nullptr] = ACTIONS(3211), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3211), - [anon_sym_decltype] = ACTIONS(3211), - [anon_sym_virtual] = ACTIONS(3211), - [anon_sym_alignas] = ACTIONS(3211), - [anon_sym_explicit] = ACTIONS(3211), - [anon_sym_typename] = ACTIONS(3211), - [anon_sym_template] = ACTIONS(3211), - [anon_sym_operator] = ACTIONS(3211), - [anon_sym_try] = ACTIONS(3211), - [anon_sym_delete] = ACTIONS(3211), - [anon_sym_throw] = ACTIONS(3211), - [anon_sym_namespace] = ACTIONS(3211), - [anon_sym_using] = ACTIONS(3211), - [anon_sym_static_assert] = ACTIONS(3211), - [anon_sym_concept] = ACTIONS(3211), - [anon_sym_co_return] = ACTIONS(3211), - [anon_sym_co_yield] = ACTIONS(3211), - [anon_sym_R_DQUOTE] = ACTIONS(3213), - [anon_sym_LR_DQUOTE] = ACTIONS(3213), - [anon_sym_uR_DQUOTE] = ACTIONS(3213), - [anon_sym_UR_DQUOTE] = ACTIONS(3213), - [anon_sym_u8R_DQUOTE] = ACTIONS(3213), - [anon_sym_co_await] = ACTIONS(3211), - [anon_sym_new] = ACTIONS(3211), - [anon_sym_requires] = ACTIONS(3211), - [sym_this] = ACTIONS(3211), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3213), - [sym_semgrep_named_ellipsis] = ACTIONS(3213), + [477] = { + [sym_identifier] = ACTIONS(3083), + [aux_sym_preproc_include_token1] = ACTIONS(3083), + [aux_sym_preproc_def_token1] = ACTIONS(3083), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3085), + [aux_sym_preproc_if_token1] = ACTIONS(3083), + [aux_sym_preproc_if_token2] = ACTIONS(3083), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3083), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3083), + [aux_sym_preproc_else_token1] = ACTIONS(3083), + [aux_sym_preproc_elif_token1] = ACTIONS(3083), + [sym_preproc_directive] = ACTIONS(3083), + [anon_sym_LPAREN2] = ACTIONS(3085), + [anon_sym_BANG] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3085), + [anon_sym_DASH] = ACTIONS(3083), + [anon_sym_PLUS] = ACTIONS(3083), + [anon_sym_STAR] = ACTIONS(3085), + [anon_sym_AMP_AMP] = ACTIONS(3085), + [anon_sym_AMP] = ACTIONS(3083), + [anon_sym_SEMI] = ACTIONS(3085), + [anon_sym___extension__] = ACTIONS(3083), + [anon_sym_typedef] = ACTIONS(3083), + [anon_sym_extern] = ACTIONS(3083), + [anon_sym___attribute__] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(3085), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3085), + [anon_sym___declspec] = ACTIONS(3083), + [anon_sym___based] = ACTIONS(3083), + [anon_sym___cdecl] = ACTIONS(3083), + [anon_sym___clrcall] = ACTIONS(3083), + [anon_sym___stdcall] = ACTIONS(3083), + [anon_sym___fastcall] = ACTIONS(3083), + [anon_sym___thiscall] = ACTIONS(3083), + [anon_sym___vectorcall] = ACTIONS(3083), + [anon_sym_LBRACE] = ACTIONS(3085), + [anon_sym_signed] = ACTIONS(3083), + [anon_sym_unsigned] = ACTIONS(3083), + [anon_sym_long] = ACTIONS(3083), + [anon_sym_short] = ACTIONS(3083), + [anon_sym_LBRACK] = ACTIONS(3083), + [anon_sym_static] = ACTIONS(3083), + [anon_sym_register] = ACTIONS(3083), + [anon_sym_inline] = ACTIONS(3083), + [anon_sym___inline] = ACTIONS(3083), + [anon_sym___inline__] = ACTIONS(3083), + [anon_sym___forceinline] = ACTIONS(3083), + [anon_sym_thread_local] = ACTIONS(3083), + [anon_sym___thread] = ACTIONS(3083), + [anon_sym_const] = ACTIONS(3083), + [anon_sym_constexpr] = ACTIONS(3083), + [anon_sym_volatile] = ACTIONS(3083), + [anon_sym_restrict] = ACTIONS(3083), + [anon_sym___restrict__] = ACTIONS(3083), + [anon_sym__Atomic] = ACTIONS(3083), + [anon_sym__Noreturn] = ACTIONS(3083), + [anon_sym_noreturn] = ACTIONS(3083), + [anon_sym_mutable] = ACTIONS(3083), + [anon_sym_constinit] = ACTIONS(3083), + [anon_sym_consteval] = ACTIONS(3083), + [sym_primitive_type] = ACTIONS(3083), + [anon_sym_enum] = ACTIONS(3083), + [anon_sym_class] = ACTIONS(3083), + [anon_sym_struct] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(3083), + [anon_sym_if] = ACTIONS(3083), + [anon_sym_else] = ACTIONS(3083), + [anon_sym_switch] = ACTIONS(3083), + [anon_sym_case] = ACTIONS(3083), + [anon_sym_default] = ACTIONS(3083), + [anon_sym_while] = ACTIONS(3083), + [anon_sym_do] = ACTIONS(3083), + [anon_sym_for] = ACTIONS(3083), + [anon_sym_return] = ACTIONS(3083), + [anon_sym_break] = ACTIONS(3083), + [anon_sym_continue] = ACTIONS(3083), + [anon_sym_goto] = ACTIONS(3083), + [anon_sym___try] = ACTIONS(3083), + [anon_sym___leave] = ACTIONS(3083), + [anon_sym_not] = ACTIONS(3083), + [anon_sym_compl] = ACTIONS(3083), + [anon_sym_DASH_DASH] = ACTIONS(3085), + [anon_sym_PLUS_PLUS] = ACTIONS(3085), + [anon_sym_sizeof] = ACTIONS(3083), + [anon_sym___alignof__] = ACTIONS(3083), + [anon_sym___alignof] = ACTIONS(3083), + [anon_sym__alignof] = ACTIONS(3083), + [anon_sym_alignof] = ACTIONS(3083), + [anon_sym__Alignof] = ACTIONS(3083), + [anon_sym_offsetof] = ACTIONS(3083), + [anon_sym__Generic] = ACTIONS(3083), + [anon_sym_asm] = ACTIONS(3083), + [anon_sym___asm__] = ACTIONS(3083), + [sym_number_literal] = ACTIONS(3085), + [anon_sym_L_SQUOTE] = ACTIONS(3085), + [anon_sym_u_SQUOTE] = ACTIONS(3085), + [anon_sym_U_SQUOTE] = ACTIONS(3085), + [anon_sym_u8_SQUOTE] = ACTIONS(3085), + [anon_sym_SQUOTE] = ACTIONS(3085), + [anon_sym_L_DQUOTE] = ACTIONS(3085), + [anon_sym_u_DQUOTE] = ACTIONS(3085), + [anon_sym_U_DQUOTE] = ACTIONS(3085), + [anon_sym_u8_DQUOTE] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(3085), + [sym_true] = ACTIONS(3083), + [sym_false] = ACTIONS(3083), + [anon_sym_NULL] = ACTIONS(3083), + [anon_sym_nullptr] = ACTIONS(3083), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3083), + [anon_sym_decltype] = ACTIONS(3083), + [anon_sym_virtual] = ACTIONS(3083), + [anon_sym_alignas] = ACTIONS(3083), + [anon_sym_explicit] = ACTIONS(3083), + [anon_sym_typename] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(3083), + [anon_sym_operator] = ACTIONS(3083), + [anon_sym_try] = ACTIONS(3083), + [anon_sym_delete] = ACTIONS(3083), + [anon_sym_throw] = ACTIONS(3083), + [anon_sym_namespace] = ACTIONS(3083), + [anon_sym_using] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(3083), + [anon_sym_concept] = ACTIONS(3083), + [anon_sym_co_return] = ACTIONS(3083), + [anon_sym_co_yield] = ACTIONS(3083), + [anon_sym_R_DQUOTE] = ACTIONS(3085), + [anon_sym_LR_DQUOTE] = ACTIONS(3085), + [anon_sym_uR_DQUOTE] = ACTIONS(3085), + [anon_sym_UR_DQUOTE] = ACTIONS(3085), + [anon_sym_u8R_DQUOTE] = ACTIONS(3085), + [anon_sym_co_await] = ACTIONS(3083), + [anon_sym_new] = ACTIONS(3083), + [anon_sym_requires] = ACTIONS(3083), + [sym_this] = ACTIONS(3083), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3085), + [sym_semgrep_named_ellipsis] = ACTIONS(3085), }, - [495] = { - [sym_identifier] = ACTIONS(3143), - [aux_sym_preproc_include_token1] = ACTIONS(3143), - [aux_sym_preproc_def_token1] = ACTIONS(3143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3145), - [aux_sym_preproc_if_token1] = ACTIONS(3143), - [aux_sym_preproc_if_token2] = ACTIONS(3143), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3143), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3143), - [aux_sym_preproc_else_token1] = ACTIONS(3143), - [aux_sym_preproc_elif_token1] = ACTIONS(3143), - [sym_preproc_directive] = ACTIONS(3143), - [anon_sym_LPAREN2] = ACTIONS(3145), - [anon_sym_BANG] = ACTIONS(3145), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_DASH] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3145), - [anon_sym_AMP_AMP] = ACTIONS(3145), - [anon_sym_AMP] = ACTIONS(3143), - [anon_sym_SEMI] = ACTIONS(3145), - [anon_sym___extension__] = ACTIONS(3143), - [anon_sym_typedef] = ACTIONS(3143), - [anon_sym_extern] = ACTIONS(3143), - [anon_sym___attribute__] = ACTIONS(3143), - [anon_sym_COLON_COLON] = ACTIONS(3145), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3145), - [anon_sym___declspec] = ACTIONS(3143), - [anon_sym___based] = ACTIONS(3143), - [anon_sym___cdecl] = ACTIONS(3143), - [anon_sym___clrcall] = ACTIONS(3143), - [anon_sym___stdcall] = ACTIONS(3143), - [anon_sym___fastcall] = ACTIONS(3143), - [anon_sym___thiscall] = ACTIONS(3143), - [anon_sym___vectorcall] = ACTIONS(3143), - [anon_sym_LBRACE] = ACTIONS(3145), - [anon_sym_signed] = ACTIONS(3143), - [anon_sym_unsigned] = ACTIONS(3143), - [anon_sym_long] = ACTIONS(3143), - [anon_sym_short] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_static] = ACTIONS(3143), - [anon_sym_register] = ACTIONS(3143), - [anon_sym_inline] = ACTIONS(3143), - [anon_sym___inline] = ACTIONS(3143), - [anon_sym___inline__] = ACTIONS(3143), - [anon_sym___forceinline] = ACTIONS(3143), - [anon_sym_thread_local] = ACTIONS(3143), - [anon_sym___thread] = ACTIONS(3143), - [anon_sym_const] = ACTIONS(3143), - [anon_sym_constexpr] = ACTIONS(3143), - [anon_sym_volatile] = ACTIONS(3143), - [anon_sym_restrict] = ACTIONS(3143), - [anon_sym___restrict__] = ACTIONS(3143), - [anon_sym__Atomic] = ACTIONS(3143), - [anon_sym__Noreturn] = ACTIONS(3143), - [anon_sym_noreturn] = ACTIONS(3143), - [anon_sym_mutable] = ACTIONS(3143), - [anon_sym_constinit] = ACTIONS(3143), - [anon_sym_consteval] = ACTIONS(3143), - [sym_primitive_type] = ACTIONS(3143), - [anon_sym_enum] = ACTIONS(3143), - [anon_sym_class] = ACTIONS(3143), - [anon_sym_struct] = ACTIONS(3143), - [anon_sym_union] = ACTIONS(3143), - [anon_sym_if] = ACTIONS(3143), - [anon_sym_else] = ACTIONS(3143), - [anon_sym_switch] = ACTIONS(3143), - [anon_sym_case] = ACTIONS(3143), - [anon_sym_default] = ACTIONS(3143), - [anon_sym_while] = ACTIONS(3143), - [anon_sym_do] = ACTIONS(3143), - [anon_sym_for] = ACTIONS(3143), - [anon_sym_return] = ACTIONS(3143), - [anon_sym_break] = ACTIONS(3143), - [anon_sym_continue] = ACTIONS(3143), - [anon_sym_goto] = ACTIONS(3143), - [anon_sym___try] = ACTIONS(3143), - [anon_sym___leave] = ACTIONS(3143), - [anon_sym_not] = ACTIONS(3143), - [anon_sym_compl] = ACTIONS(3143), - [anon_sym_DASH_DASH] = ACTIONS(3145), - [anon_sym_PLUS_PLUS] = ACTIONS(3145), - [anon_sym_sizeof] = ACTIONS(3143), - [anon_sym___alignof__] = ACTIONS(3143), - [anon_sym___alignof] = ACTIONS(3143), - [anon_sym__alignof] = ACTIONS(3143), - [anon_sym_alignof] = ACTIONS(3143), - [anon_sym__Alignof] = ACTIONS(3143), - [anon_sym_offsetof] = ACTIONS(3143), - [anon_sym__Generic] = ACTIONS(3143), - [anon_sym_asm] = ACTIONS(3143), - [anon_sym___asm__] = ACTIONS(3143), - [sym_number_literal] = ACTIONS(3145), - [anon_sym_L_SQUOTE] = ACTIONS(3145), - [anon_sym_u_SQUOTE] = ACTIONS(3145), - [anon_sym_U_SQUOTE] = ACTIONS(3145), - [anon_sym_u8_SQUOTE] = ACTIONS(3145), - [anon_sym_SQUOTE] = ACTIONS(3145), - [anon_sym_L_DQUOTE] = ACTIONS(3145), - [anon_sym_u_DQUOTE] = ACTIONS(3145), - [anon_sym_U_DQUOTE] = ACTIONS(3145), - [anon_sym_u8_DQUOTE] = ACTIONS(3145), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym_true] = ACTIONS(3143), - [sym_false] = ACTIONS(3143), - [anon_sym_NULL] = ACTIONS(3143), - [anon_sym_nullptr] = ACTIONS(3143), + [478] = { + [sym_catch_clause] = STATE(348), + [aux_sym_constructor_try_statement_repeat1] = STATE(348), + [sym_identifier] = ACTIONS(3052), + [aux_sym_preproc_include_token1] = ACTIONS(3052), + [aux_sym_preproc_def_token1] = ACTIONS(3052), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3054), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3052), + [sym_preproc_directive] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(3054), + [anon_sym_TILDE] = ACTIONS(3054), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3054), + [anon_sym_AMP_AMP] = ACTIONS(3054), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_SEMI] = ACTIONS(3054), + [anon_sym___extension__] = ACTIONS(3052), + [anon_sym_typedef] = ACTIONS(3052), + [anon_sym_extern] = ACTIONS(3052), + [anon_sym___attribute__] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3054), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3054), + [anon_sym___declspec] = ACTIONS(3052), + [anon_sym___based] = ACTIONS(3052), + [anon_sym___cdecl] = ACTIONS(3052), + [anon_sym___clrcall] = ACTIONS(3052), + [anon_sym___stdcall] = ACTIONS(3052), + [anon_sym___fastcall] = ACTIONS(3052), + [anon_sym___thiscall] = ACTIONS(3052), + [anon_sym___vectorcall] = ACTIONS(3052), + [anon_sym_LBRACE] = ACTIONS(3054), + [anon_sym_RBRACE] = ACTIONS(3054), + [anon_sym_signed] = ACTIONS(3052), + [anon_sym_unsigned] = ACTIONS(3052), + [anon_sym_long] = ACTIONS(3052), + [anon_sym_short] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_static] = ACTIONS(3052), + [anon_sym_register] = ACTIONS(3052), + [anon_sym_inline] = ACTIONS(3052), + [anon_sym___inline] = ACTIONS(3052), + [anon_sym___inline__] = ACTIONS(3052), + [anon_sym___forceinline] = ACTIONS(3052), + [anon_sym_thread_local] = ACTIONS(3052), + [anon_sym___thread] = ACTIONS(3052), + [anon_sym_const] = ACTIONS(3052), + [anon_sym_constexpr] = ACTIONS(3052), + [anon_sym_volatile] = ACTIONS(3052), + [anon_sym_restrict] = ACTIONS(3052), + [anon_sym___restrict__] = ACTIONS(3052), + [anon_sym__Atomic] = ACTIONS(3052), + [anon_sym__Noreturn] = ACTIONS(3052), + [anon_sym_noreturn] = ACTIONS(3052), + [anon_sym_mutable] = ACTIONS(3052), + [anon_sym_constinit] = ACTIONS(3052), + [anon_sym_consteval] = ACTIONS(3052), + [sym_primitive_type] = ACTIONS(3052), + [anon_sym_enum] = ACTIONS(3052), + [anon_sym_class] = ACTIONS(3052), + [anon_sym_struct] = ACTIONS(3052), + [anon_sym_union] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_switch] = ACTIONS(3052), + [anon_sym_case] = ACTIONS(3052), + [anon_sym_default] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_break] = ACTIONS(3052), + [anon_sym_continue] = ACTIONS(3052), + [anon_sym_goto] = ACTIONS(3052), + [anon_sym___try] = ACTIONS(3052), + [anon_sym___leave] = ACTIONS(3052), + [anon_sym_not] = ACTIONS(3052), + [anon_sym_compl] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(3054), + [anon_sym_PLUS_PLUS] = ACTIONS(3054), + [anon_sym_sizeof] = ACTIONS(3052), + [anon_sym___alignof__] = ACTIONS(3052), + [anon_sym___alignof] = ACTIONS(3052), + [anon_sym__alignof] = ACTIONS(3052), + [anon_sym_alignof] = ACTIONS(3052), + [anon_sym__Alignof] = ACTIONS(3052), + [anon_sym_offsetof] = ACTIONS(3052), + [anon_sym__Generic] = ACTIONS(3052), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3054), + [anon_sym_u_SQUOTE] = ACTIONS(3054), + [anon_sym_U_SQUOTE] = ACTIONS(3054), + [anon_sym_u8_SQUOTE] = ACTIONS(3054), + [anon_sym_SQUOTE] = ACTIONS(3054), + [anon_sym_L_DQUOTE] = ACTIONS(3054), + [anon_sym_u_DQUOTE] = ACTIONS(3054), + [anon_sym_U_DQUOTE] = ACTIONS(3054), + [anon_sym_u8_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [sym_true] = ACTIONS(3052), + [sym_false] = ACTIONS(3052), + [anon_sym_NULL] = ACTIONS(3052), + [anon_sym_nullptr] = ACTIONS(3052), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3052), + [anon_sym_decltype] = ACTIONS(3052), + [anon_sym_virtual] = ACTIONS(3052), + [anon_sym_alignas] = ACTIONS(3052), + [anon_sym_explicit] = ACTIONS(3052), + [anon_sym_typename] = ACTIONS(3052), + [anon_sym_template] = ACTIONS(3052), + [anon_sym_operator] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_delete] = ACTIONS(3052), + [anon_sym_throw] = ACTIONS(3052), + [anon_sym_namespace] = ACTIONS(3052), + [anon_sym_using] = ACTIONS(3052), + [anon_sym_static_assert] = ACTIONS(3052), + [anon_sym_concept] = ACTIONS(3052), + [anon_sym_co_return] = ACTIONS(3052), + [anon_sym_co_yield] = ACTIONS(3052), + [anon_sym_catch] = ACTIONS(3643), + [anon_sym_R_DQUOTE] = ACTIONS(3054), + [anon_sym_LR_DQUOTE] = ACTIONS(3054), + [anon_sym_uR_DQUOTE] = ACTIONS(3054), + [anon_sym_UR_DQUOTE] = ACTIONS(3054), + [anon_sym_u8R_DQUOTE] = ACTIONS(3054), + [anon_sym_co_await] = ACTIONS(3052), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_requires] = ACTIONS(3052), + [sym_this] = ACTIONS(3052), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3054), + [sym_semgrep_named_ellipsis] = ACTIONS(3054), + }, + [479] = { + [sym_type_qualifier] = STATE(4685), + [sym_type_specifier] = STATE(5782), + [sym_sized_type_specifier] = STATE(3293), + [sym_enum_specifier] = STATE(3293), + [sym_struct_specifier] = STATE(3293), + [sym_union_specifier] = STATE(3293), + [sym_expression] = STATE(5206), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_type_descriptor] = STATE(8487), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_placeholder_type_specifier] = STATE(3293), + [sym_decltype_auto] = STATE(3292), + [sym_decltype] = STATE(2572), + [sym_class_specifier] = STATE(3293), + [sym_class_name] = STATE(8965), + [sym_dependent_type] = STATE(3293), + [sym_template_type] = STATE(6301), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_type_parameter_pack_expansion] = STATE(8948), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6620), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(6338), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [aux_sym_type_definition_type_repeat1] = STATE(4685), + [aux_sym_sized_type_specifier_repeat1] = STATE(2573), + [sym_identifier] = ACTIONS(3310), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_signed] = ACTIONS(3324), + [anon_sym_unsigned] = ACTIONS(3324), + [anon_sym_long] = ACTIONS(3324), + [anon_sym_short] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3330), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_union] = ACTIONS(3334), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3143), - [anon_sym_decltype] = ACTIONS(3143), - [anon_sym_virtual] = ACTIONS(3143), - [anon_sym_alignas] = ACTIONS(3143), - [anon_sym_explicit] = ACTIONS(3143), - [anon_sym_typename] = ACTIONS(3143), - [anon_sym_template] = ACTIONS(3143), - [anon_sym_operator] = ACTIONS(3143), - [anon_sym_try] = ACTIONS(3143), - [anon_sym_delete] = ACTIONS(3143), - [anon_sym_throw] = ACTIONS(3143), - [anon_sym_namespace] = ACTIONS(3143), - [anon_sym_using] = ACTIONS(3143), - [anon_sym_static_assert] = ACTIONS(3143), - [anon_sym_concept] = ACTIONS(3143), - [anon_sym_co_return] = ACTIONS(3143), - [anon_sym_co_yield] = ACTIONS(3143), - [anon_sym_R_DQUOTE] = ACTIONS(3145), - [anon_sym_LR_DQUOTE] = ACTIONS(3145), - [anon_sym_uR_DQUOTE] = ACTIONS(3145), - [anon_sym_UR_DQUOTE] = ACTIONS(3145), - [anon_sym_u8R_DQUOTE] = ACTIONS(3145), - [anon_sym_co_await] = ACTIONS(3143), - [anon_sym_new] = ACTIONS(3143), - [anon_sym_requires] = ACTIONS(3143), - [sym_this] = ACTIONS(3143), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3145), - [sym_semgrep_named_ellipsis] = ACTIONS(3145), + [sym_auto] = ACTIONS(3358), + [anon_sym_decltype] = ACTIONS(3360), + [anon_sym_typename] = ACTIONS(3362), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), }, - [496] = { + [480] = { [sym_identifier] = ACTIONS(3219), [aux_sym_preproc_include_token1] = ACTIONS(3219), [aux_sym_preproc_def_token1] = ACTIONS(3219), @@ -134294,1515 +122258,2898 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3221), [sym_semgrep_named_ellipsis] = ACTIONS(3221), }, - [497] = { - [sym_catch_clause] = STATE(353), - [aux_sym_constructor_try_statement_repeat1] = STATE(353), - [sym_identifier] = ACTIONS(3074), - [aux_sym_preproc_include_token1] = ACTIONS(3074), - [aux_sym_preproc_def_token1] = ACTIONS(3074), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3076), - [aux_sym_preproc_if_token1] = ACTIONS(3074), - [aux_sym_preproc_if_token2] = ACTIONS(3074), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3074), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3074), - [sym_preproc_directive] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3076), - [anon_sym_BANG] = ACTIONS(3076), - [anon_sym_TILDE] = ACTIONS(3076), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_STAR] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_SEMI] = ACTIONS(3076), - [anon_sym___extension__] = ACTIONS(3074), - [anon_sym_typedef] = ACTIONS(3074), - [anon_sym_extern] = ACTIONS(3074), - [anon_sym___attribute__] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3076), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3076), - [anon_sym___declspec] = ACTIONS(3074), - [anon_sym___based] = ACTIONS(3074), - [anon_sym___cdecl] = ACTIONS(3074), - [anon_sym___clrcall] = ACTIONS(3074), - [anon_sym___stdcall] = ACTIONS(3074), - [anon_sym___fastcall] = ACTIONS(3074), - [anon_sym___thiscall] = ACTIONS(3074), - [anon_sym___vectorcall] = ACTIONS(3074), - [anon_sym_LBRACE] = ACTIONS(3076), - [anon_sym_signed] = ACTIONS(3074), - [anon_sym_unsigned] = ACTIONS(3074), - [anon_sym_long] = ACTIONS(3074), - [anon_sym_short] = ACTIONS(3074), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_static] = ACTIONS(3074), - [anon_sym_register] = ACTIONS(3074), - [anon_sym_inline] = ACTIONS(3074), - [anon_sym___inline] = ACTIONS(3074), - [anon_sym___inline__] = ACTIONS(3074), - [anon_sym___forceinline] = ACTIONS(3074), - [anon_sym_thread_local] = ACTIONS(3074), - [anon_sym___thread] = ACTIONS(3074), - [anon_sym_const] = ACTIONS(3074), - [anon_sym_constexpr] = ACTIONS(3074), - [anon_sym_volatile] = ACTIONS(3074), - [anon_sym_restrict] = ACTIONS(3074), - [anon_sym___restrict__] = ACTIONS(3074), - [anon_sym__Atomic] = ACTIONS(3074), - [anon_sym__Noreturn] = ACTIONS(3074), - [anon_sym_noreturn] = ACTIONS(3074), - [anon_sym_mutable] = ACTIONS(3074), - [anon_sym_constinit] = ACTIONS(3074), - [anon_sym_consteval] = ACTIONS(3074), - [sym_primitive_type] = ACTIONS(3074), - [anon_sym_enum] = ACTIONS(3074), - [anon_sym_class] = ACTIONS(3074), - [anon_sym_struct] = ACTIONS(3074), - [anon_sym_union] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_switch] = ACTIONS(3074), - [anon_sym_case] = ACTIONS(3074), - [anon_sym_default] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_break] = ACTIONS(3074), - [anon_sym_continue] = ACTIONS(3074), - [anon_sym_goto] = ACTIONS(3074), - [anon_sym___try] = ACTIONS(3074), - [anon_sym___leave] = ACTIONS(3074), - [anon_sym_not] = ACTIONS(3074), - [anon_sym_compl] = ACTIONS(3074), - [anon_sym_DASH_DASH] = ACTIONS(3076), - [anon_sym_PLUS_PLUS] = ACTIONS(3076), - [anon_sym_sizeof] = ACTIONS(3074), - [anon_sym___alignof__] = ACTIONS(3074), - [anon_sym___alignof] = ACTIONS(3074), - [anon_sym__alignof] = ACTIONS(3074), - [anon_sym_alignof] = ACTIONS(3074), - [anon_sym__Alignof] = ACTIONS(3074), - [anon_sym_offsetof] = ACTIONS(3074), - [anon_sym__Generic] = ACTIONS(3074), - [anon_sym_asm] = ACTIONS(3074), - [anon_sym___asm__] = ACTIONS(3074), - [sym_number_literal] = ACTIONS(3076), - [anon_sym_L_SQUOTE] = ACTIONS(3076), - [anon_sym_u_SQUOTE] = ACTIONS(3076), - [anon_sym_U_SQUOTE] = ACTIONS(3076), - [anon_sym_u8_SQUOTE] = ACTIONS(3076), - [anon_sym_SQUOTE] = ACTIONS(3076), - [anon_sym_L_DQUOTE] = ACTIONS(3076), - [anon_sym_u_DQUOTE] = ACTIONS(3076), - [anon_sym_U_DQUOTE] = ACTIONS(3076), - [anon_sym_u8_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE] = ACTIONS(3076), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3074), - [anon_sym_nullptr] = ACTIONS(3074), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3074), - [anon_sym_decltype] = ACTIONS(3074), - [anon_sym_virtual] = ACTIONS(3074), - [anon_sym_alignas] = ACTIONS(3074), - [anon_sym_explicit] = ACTIONS(3074), - [anon_sym_typename] = ACTIONS(3074), - [anon_sym_template] = ACTIONS(3074), - [anon_sym_operator] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_delete] = ACTIONS(3074), - [anon_sym_throw] = ACTIONS(3074), - [anon_sym_namespace] = ACTIONS(3074), - [anon_sym_using] = ACTIONS(3074), - [anon_sym_static_assert] = ACTIONS(3074), - [anon_sym_concept] = ACTIONS(3074), - [anon_sym_co_return] = ACTIONS(3074), - [anon_sym_co_yield] = ACTIONS(3074), - [anon_sym_catch] = ACTIONS(3570), - [anon_sym_R_DQUOTE] = ACTIONS(3076), - [anon_sym_LR_DQUOTE] = ACTIONS(3076), - [anon_sym_uR_DQUOTE] = ACTIONS(3076), - [anon_sym_UR_DQUOTE] = ACTIONS(3076), - [anon_sym_u8R_DQUOTE] = ACTIONS(3076), - [anon_sym_co_await] = ACTIONS(3074), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_requires] = ACTIONS(3074), - [sym_this] = ACTIONS(3074), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3076), - [sym_semgrep_named_ellipsis] = ACTIONS(3076), + [481] = { + [sym_identifier] = ACTIONS(2355), + [aux_sym_preproc_include_token1] = ACTIONS(2355), + [aux_sym_preproc_def_token1] = ACTIONS(2355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2353), + [anon_sym_COMMA] = ACTIONS(3211), + [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(2353), + [anon_sym_BANG] = ACTIONS(2353), + [anon_sym_TILDE] = ACTIONS(2353), + [anon_sym_DASH] = ACTIONS(2355), + [anon_sym_PLUS] = ACTIONS(2355), + [anon_sym_STAR] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(2353), + [anon_sym_AMP] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(3211), + [anon_sym___extension__] = ACTIONS(2355), + [anon_sym_typedef] = ACTIONS(2355), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym___attribute__] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(2353), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), + [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(2353), + [anon_sym_signed] = ACTIONS(2355), + [anon_sym_unsigned] = ACTIONS(2355), + [anon_sym_long] = ACTIONS(2355), + [anon_sym_short] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_static] = ACTIONS(2355), + [anon_sym_register] = ACTIONS(2355), + [anon_sym_inline] = ACTIONS(2355), + [anon_sym___inline] = ACTIONS(2355), + [anon_sym___inline__] = ACTIONS(2355), + [anon_sym___forceinline] = ACTIONS(2355), + [anon_sym_thread_local] = ACTIONS(2355), + [anon_sym___thread] = ACTIONS(2355), + [anon_sym_const] = ACTIONS(2355), + [anon_sym_constexpr] = ACTIONS(2355), + [anon_sym_volatile] = ACTIONS(2355), + [anon_sym_restrict] = ACTIONS(2355), + [anon_sym___restrict__] = ACTIONS(2355), + [anon_sym__Atomic] = ACTIONS(2355), + [anon_sym__Noreturn] = ACTIONS(2355), + [anon_sym_noreturn] = ACTIONS(2355), + [anon_sym_mutable] = ACTIONS(2355), + [anon_sym_constinit] = ACTIONS(2355), + [anon_sym_consteval] = 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_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___try] = ACTIONS(2355), + [anon_sym___leave] = ACTIONS(2355), + [anon_sym_not] = ACTIONS(2355), + [anon_sym_compl] = ACTIONS(2355), + [anon_sym_DASH_DASH] = ACTIONS(2353), + [anon_sym_PLUS_PLUS] = ACTIONS(2353), + [anon_sym_sizeof] = ACTIONS(2355), + [anon_sym___alignof__] = ACTIONS(2355), + [anon_sym___alignof] = ACTIONS(2355), + [anon_sym__alignof] = ACTIONS(2355), + [anon_sym_alignof] = ACTIONS(2355), + [anon_sym__Alignof] = ACTIONS(2355), + [anon_sym_offsetof] = ACTIONS(2355), + [anon_sym__Generic] = ACTIONS(2355), + [anon_sym_asm] = ACTIONS(2355), + [anon_sym___asm__] = ACTIONS(2355), + [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(2355), + [sym_false] = ACTIONS(2355), + [anon_sym_NULL] = ACTIONS(2355), + [anon_sym_nullptr] = ACTIONS(2355), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2355), + [anon_sym_decltype] = ACTIONS(2355), + [anon_sym_virtual] = ACTIONS(2355), + [anon_sym_alignas] = 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_R_DQUOTE] = ACTIONS(2353), + [anon_sym_LR_DQUOTE] = ACTIONS(2353), + [anon_sym_uR_DQUOTE] = ACTIONS(2353), + [anon_sym_UR_DQUOTE] = ACTIONS(2353), + [anon_sym_u8R_DQUOTE] = ACTIONS(2353), + [anon_sym_co_await] = ACTIONS(2355), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_requires] = ACTIONS(2355), + [sym_this] = ACTIONS(2355), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2353), + [sym_semgrep_named_ellipsis] = ACTIONS(2353), }, - [498] = { - [sym_identifier] = ACTIONS(3469), - [aux_sym_preproc_include_token1] = ACTIONS(3469), - [aux_sym_preproc_def_token1] = ACTIONS(3469), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3471), - [aux_sym_preproc_if_token1] = ACTIONS(3469), - [aux_sym_preproc_if_token2] = ACTIONS(3469), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3469), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3469), - [aux_sym_preproc_else_token1] = ACTIONS(3469), - [aux_sym_preproc_elif_token1] = ACTIONS(3469), - [sym_preproc_directive] = ACTIONS(3469), - [anon_sym_LPAREN2] = ACTIONS(3471), - [anon_sym_BANG] = ACTIONS(3471), - [anon_sym_TILDE] = ACTIONS(3471), - [anon_sym_DASH] = ACTIONS(3469), - [anon_sym_PLUS] = ACTIONS(3469), - [anon_sym_STAR] = ACTIONS(3471), - [anon_sym_AMP_AMP] = ACTIONS(3471), - [anon_sym_AMP] = ACTIONS(3469), - [anon_sym_SEMI] = ACTIONS(3471), - [anon_sym___extension__] = ACTIONS(3469), - [anon_sym_typedef] = ACTIONS(3469), - [anon_sym_extern] = ACTIONS(3469), - [anon_sym___attribute__] = ACTIONS(3469), - [anon_sym_COLON_COLON] = ACTIONS(3471), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3471), - [anon_sym___declspec] = ACTIONS(3469), - [anon_sym___based] = ACTIONS(3469), - [anon_sym___cdecl] = ACTIONS(3469), - [anon_sym___clrcall] = ACTIONS(3469), - [anon_sym___stdcall] = ACTIONS(3469), - [anon_sym___fastcall] = ACTIONS(3469), - [anon_sym___thiscall] = ACTIONS(3469), - [anon_sym___vectorcall] = ACTIONS(3469), - [anon_sym_LBRACE] = ACTIONS(3471), - [anon_sym_signed] = ACTIONS(3469), - [anon_sym_unsigned] = ACTIONS(3469), - [anon_sym_long] = ACTIONS(3469), - [anon_sym_short] = ACTIONS(3469), - [anon_sym_LBRACK] = ACTIONS(3469), - [anon_sym_static] = ACTIONS(3469), - [anon_sym_register] = ACTIONS(3469), - [anon_sym_inline] = ACTIONS(3469), - [anon_sym___inline] = ACTIONS(3469), - [anon_sym___inline__] = ACTIONS(3469), - [anon_sym___forceinline] = ACTIONS(3469), - [anon_sym_thread_local] = ACTIONS(3469), - [anon_sym___thread] = ACTIONS(3469), - [anon_sym_const] = ACTIONS(3469), - [anon_sym_constexpr] = ACTIONS(3469), - [anon_sym_volatile] = ACTIONS(3469), - [anon_sym_restrict] = ACTIONS(3469), - [anon_sym___restrict__] = ACTIONS(3469), - [anon_sym__Atomic] = ACTIONS(3469), - [anon_sym__Noreturn] = ACTIONS(3469), - [anon_sym_noreturn] = ACTIONS(3469), - [anon_sym_mutable] = ACTIONS(3469), - [anon_sym_constinit] = ACTIONS(3469), - [anon_sym_consteval] = ACTIONS(3469), - [sym_primitive_type] = ACTIONS(3469), - [anon_sym_enum] = ACTIONS(3469), - [anon_sym_class] = ACTIONS(3469), - [anon_sym_struct] = ACTIONS(3469), - [anon_sym_union] = ACTIONS(3469), - [anon_sym_if] = ACTIONS(3469), - [anon_sym_switch] = ACTIONS(3469), - [anon_sym_case] = ACTIONS(3469), - [anon_sym_default] = ACTIONS(3469), - [anon_sym_while] = ACTIONS(3469), - [anon_sym_do] = ACTIONS(3469), - [anon_sym_for] = ACTIONS(3469), - [anon_sym_return] = ACTIONS(3469), - [anon_sym_break] = ACTIONS(3469), - [anon_sym_continue] = ACTIONS(3469), - [anon_sym_goto] = ACTIONS(3469), - [anon_sym___try] = ACTIONS(3469), - [anon_sym___leave] = ACTIONS(3469), - [anon_sym_not] = ACTIONS(3469), - [anon_sym_compl] = ACTIONS(3469), - [anon_sym_DASH_DASH] = ACTIONS(3471), - [anon_sym_PLUS_PLUS] = ACTIONS(3471), - [anon_sym_sizeof] = ACTIONS(3469), - [anon_sym___alignof__] = ACTIONS(3469), - [anon_sym___alignof] = ACTIONS(3469), - [anon_sym__alignof] = ACTIONS(3469), - [anon_sym_alignof] = ACTIONS(3469), - [anon_sym__Alignof] = ACTIONS(3469), - [anon_sym_offsetof] = ACTIONS(3469), - [anon_sym__Generic] = ACTIONS(3469), - [anon_sym_asm] = ACTIONS(3469), - [anon_sym___asm__] = ACTIONS(3469), - [sym_number_literal] = ACTIONS(3471), - [anon_sym_L_SQUOTE] = ACTIONS(3471), - [anon_sym_u_SQUOTE] = ACTIONS(3471), - [anon_sym_U_SQUOTE] = ACTIONS(3471), - [anon_sym_u8_SQUOTE] = ACTIONS(3471), - [anon_sym_SQUOTE] = ACTIONS(3471), - [anon_sym_L_DQUOTE] = ACTIONS(3471), - [anon_sym_u_DQUOTE] = ACTIONS(3471), - [anon_sym_U_DQUOTE] = ACTIONS(3471), - [anon_sym_u8_DQUOTE] = ACTIONS(3471), - [anon_sym_DQUOTE] = ACTIONS(3471), - [sym_true] = ACTIONS(3469), - [sym_false] = ACTIONS(3469), - [anon_sym_NULL] = ACTIONS(3469), - [anon_sym_nullptr] = ACTIONS(3469), + [482] = { + [sym_identifier] = ACTIONS(3095), + [aux_sym_preproc_include_token1] = ACTIONS(3095), + [aux_sym_preproc_def_token1] = ACTIONS(3095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3097), + [aux_sym_preproc_if_token1] = ACTIONS(3095), + [aux_sym_preproc_if_token2] = ACTIONS(3095), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3095), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3095), + [aux_sym_preproc_else_token1] = ACTIONS(3095), + [aux_sym_preproc_elif_token1] = ACTIONS(3095), + [sym_preproc_directive] = ACTIONS(3095), + [anon_sym_LPAREN2] = ACTIONS(3097), + [anon_sym_BANG] = ACTIONS(3097), + [anon_sym_TILDE] = ACTIONS(3097), + [anon_sym_DASH] = ACTIONS(3095), + [anon_sym_PLUS] = ACTIONS(3095), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_AMP_AMP] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3095), + [anon_sym_SEMI] = ACTIONS(3097), + [anon_sym___extension__] = ACTIONS(3095), + [anon_sym_typedef] = ACTIONS(3095), + [anon_sym_extern] = ACTIONS(3095), + [anon_sym___attribute__] = ACTIONS(3095), + [anon_sym_COLON_COLON] = ACTIONS(3097), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3097), + [anon_sym___declspec] = ACTIONS(3095), + [anon_sym___based] = ACTIONS(3095), + [anon_sym___cdecl] = ACTIONS(3095), + [anon_sym___clrcall] = ACTIONS(3095), + [anon_sym___stdcall] = ACTIONS(3095), + [anon_sym___fastcall] = ACTIONS(3095), + [anon_sym___thiscall] = ACTIONS(3095), + [anon_sym___vectorcall] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_signed] = ACTIONS(3095), + [anon_sym_unsigned] = ACTIONS(3095), + [anon_sym_long] = ACTIONS(3095), + [anon_sym_short] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3095), + [anon_sym_static] = ACTIONS(3095), + [anon_sym_register] = ACTIONS(3095), + [anon_sym_inline] = ACTIONS(3095), + [anon_sym___inline] = ACTIONS(3095), + [anon_sym___inline__] = ACTIONS(3095), + [anon_sym___forceinline] = ACTIONS(3095), + [anon_sym_thread_local] = ACTIONS(3095), + [anon_sym___thread] = ACTIONS(3095), + [anon_sym_const] = ACTIONS(3095), + [anon_sym_constexpr] = ACTIONS(3095), + [anon_sym_volatile] = ACTIONS(3095), + [anon_sym_restrict] = ACTIONS(3095), + [anon_sym___restrict__] = ACTIONS(3095), + [anon_sym__Atomic] = ACTIONS(3095), + [anon_sym__Noreturn] = ACTIONS(3095), + [anon_sym_noreturn] = ACTIONS(3095), + [anon_sym_mutable] = ACTIONS(3095), + [anon_sym_constinit] = ACTIONS(3095), + [anon_sym_consteval] = ACTIONS(3095), + [sym_primitive_type] = ACTIONS(3095), + [anon_sym_enum] = ACTIONS(3095), + [anon_sym_class] = ACTIONS(3095), + [anon_sym_struct] = ACTIONS(3095), + [anon_sym_union] = ACTIONS(3095), + [anon_sym_if] = ACTIONS(3095), + [anon_sym_else] = ACTIONS(3095), + [anon_sym_switch] = ACTIONS(3095), + [anon_sym_case] = ACTIONS(3095), + [anon_sym_default] = ACTIONS(3095), + [anon_sym_while] = ACTIONS(3095), + [anon_sym_do] = ACTIONS(3095), + [anon_sym_for] = ACTIONS(3095), + [anon_sym_return] = ACTIONS(3095), + [anon_sym_break] = ACTIONS(3095), + [anon_sym_continue] = ACTIONS(3095), + [anon_sym_goto] = ACTIONS(3095), + [anon_sym___try] = ACTIONS(3095), + [anon_sym___leave] = ACTIONS(3095), + [anon_sym_not] = ACTIONS(3095), + [anon_sym_compl] = ACTIONS(3095), + [anon_sym_DASH_DASH] = ACTIONS(3097), + [anon_sym_PLUS_PLUS] = ACTIONS(3097), + [anon_sym_sizeof] = ACTIONS(3095), + [anon_sym___alignof__] = ACTIONS(3095), + [anon_sym___alignof] = ACTIONS(3095), + [anon_sym__alignof] = ACTIONS(3095), + [anon_sym_alignof] = ACTIONS(3095), + [anon_sym__Alignof] = ACTIONS(3095), + [anon_sym_offsetof] = ACTIONS(3095), + [anon_sym__Generic] = ACTIONS(3095), + [anon_sym_asm] = ACTIONS(3095), + [anon_sym___asm__] = ACTIONS(3095), + [sym_number_literal] = ACTIONS(3097), + [anon_sym_L_SQUOTE] = ACTIONS(3097), + [anon_sym_u_SQUOTE] = ACTIONS(3097), + [anon_sym_U_SQUOTE] = ACTIONS(3097), + [anon_sym_u8_SQUOTE] = ACTIONS(3097), + [anon_sym_SQUOTE] = ACTIONS(3097), + [anon_sym_L_DQUOTE] = ACTIONS(3097), + [anon_sym_u_DQUOTE] = ACTIONS(3097), + [anon_sym_U_DQUOTE] = ACTIONS(3097), + [anon_sym_u8_DQUOTE] = ACTIONS(3097), + [anon_sym_DQUOTE] = ACTIONS(3097), + [sym_true] = ACTIONS(3095), + [sym_false] = ACTIONS(3095), + [anon_sym_NULL] = ACTIONS(3095), + [anon_sym_nullptr] = ACTIONS(3095), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3095), + [anon_sym_decltype] = ACTIONS(3095), + [anon_sym_virtual] = ACTIONS(3095), + [anon_sym_alignas] = ACTIONS(3095), + [anon_sym_explicit] = ACTIONS(3095), + [anon_sym_typename] = ACTIONS(3095), + [anon_sym_template] = ACTIONS(3095), + [anon_sym_operator] = ACTIONS(3095), + [anon_sym_try] = ACTIONS(3095), + [anon_sym_delete] = ACTIONS(3095), + [anon_sym_throw] = ACTIONS(3095), + [anon_sym_namespace] = ACTIONS(3095), + [anon_sym_using] = ACTIONS(3095), + [anon_sym_static_assert] = ACTIONS(3095), + [anon_sym_concept] = ACTIONS(3095), + [anon_sym_co_return] = ACTIONS(3095), + [anon_sym_co_yield] = ACTIONS(3095), + [anon_sym_R_DQUOTE] = ACTIONS(3097), + [anon_sym_LR_DQUOTE] = ACTIONS(3097), + [anon_sym_uR_DQUOTE] = ACTIONS(3097), + [anon_sym_UR_DQUOTE] = ACTIONS(3097), + [anon_sym_u8R_DQUOTE] = ACTIONS(3097), + [anon_sym_co_await] = ACTIONS(3095), + [anon_sym_new] = ACTIONS(3095), + [anon_sym_requires] = ACTIONS(3095), + [sym_this] = ACTIONS(3095), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3097), + [sym_semgrep_named_ellipsis] = ACTIONS(3097), + }, + [483] = { + [sym_identifier] = ACTIONS(3207), + [aux_sym_preproc_include_token1] = ACTIONS(3207), + [aux_sym_preproc_def_token1] = ACTIONS(3207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3209), + [aux_sym_preproc_if_token1] = ACTIONS(3207), + [aux_sym_preproc_if_token2] = ACTIONS(3207), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3207), + [aux_sym_preproc_else_token1] = ACTIONS(3207), + [aux_sym_preproc_elif_token1] = ACTIONS(3207), + [sym_preproc_directive] = ACTIONS(3207), + [anon_sym_LPAREN2] = ACTIONS(3209), + [anon_sym_BANG] = ACTIONS(3209), + [anon_sym_TILDE] = ACTIONS(3209), + [anon_sym_DASH] = ACTIONS(3207), + [anon_sym_PLUS] = ACTIONS(3207), + [anon_sym_STAR] = ACTIONS(3209), + [anon_sym_AMP_AMP] = ACTIONS(3209), + [anon_sym_AMP] = ACTIONS(3207), + [anon_sym_SEMI] = ACTIONS(3209), + [anon_sym___extension__] = ACTIONS(3207), + [anon_sym_typedef] = ACTIONS(3207), + [anon_sym_extern] = ACTIONS(3207), + [anon_sym___attribute__] = ACTIONS(3207), + [anon_sym_COLON_COLON] = ACTIONS(3209), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3209), + [anon_sym___declspec] = ACTIONS(3207), + [anon_sym___based] = ACTIONS(3207), + [anon_sym___cdecl] = ACTIONS(3207), + [anon_sym___clrcall] = ACTIONS(3207), + [anon_sym___stdcall] = ACTIONS(3207), + [anon_sym___fastcall] = ACTIONS(3207), + [anon_sym___thiscall] = ACTIONS(3207), + [anon_sym___vectorcall] = ACTIONS(3207), + [anon_sym_LBRACE] = ACTIONS(3209), + [anon_sym_signed] = ACTIONS(3207), + [anon_sym_unsigned] = ACTIONS(3207), + [anon_sym_long] = ACTIONS(3207), + [anon_sym_short] = ACTIONS(3207), + [anon_sym_LBRACK] = ACTIONS(3207), + [anon_sym_static] = ACTIONS(3207), + [anon_sym_register] = ACTIONS(3207), + [anon_sym_inline] = ACTIONS(3207), + [anon_sym___inline] = ACTIONS(3207), + [anon_sym___inline__] = ACTIONS(3207), + [anon_sym___forceinline] = ACTIONS(3207), + [anon_sym_thread_local] = ACTIONS(3207), + [anon_sym___thread] = ACTIONS(3207), + [anon_sym_const] = ACTIONS(3207), + [anon_sym_constexpr] = ACTIONS(3207), + [anon_sym_volatile] = ACTIONS(3207), + [anon_sym_restrict] = ACTIONS(3207), + [anon_sym___restrict__] = ACTIONS(3207), + [anon_sym__Atomic] = ACTIONS(3207), + [anon_sym__Noreturn] = ACTIONS(3207), + [anon_sym_noreturn] = ACTIONS(3207), + [anon_sym_mutable] = ACTIONS(3207), + [anon_sym_constinit] = ACTIONS(3207), + [anon_sym_consteval] = ACTIONS(3207), + [sym_primitive_type] = ACTIONS(3207), + [anon_sym_enum] = ACTIONS(3207), + [anon_sym_class] = ACTIONS(3207), + [anon_sym_struct] = ACTIONS(3207), + [anon_sym_union] = ACTIONS(3207), + [anon_sym_if] = ACTIONS(3207), + [anon_sym_else] = ACTIONS(3207), + [anon_sym_switch] = ACTIONS(3207), + [anon_sym_case] = ACTIONS(3207), + [anon_sym_default] = ACTIONS(3207), + [anon_sym_while] = ACTIONS(3207), + [anon_sym_do] = ACTIONS(3207), + [anon_sym_for] = ACTIONS(3207), + [anon_sym_return] = ACTIONS(3207), + [anon_sym_break] = ACTIONS(3207), + [anon_sym_continue] = ACTIONS(3207), + [anon_sym_goto] = ACTIONS(3207), + [anon_sym___try] = ACTIONS(3207), + [anon_sym___leave] = ACTIONS(3207), + [anon_sym_not] = ACTIONS(3207), + [anon_sym_compl] = ACTIONS(3207), + [anon_sym_DASH_DASH] = ACTIONS(3209), + [anon_sym_PLUS_PLUS] = ACTIONS(3209), + [anon_sym_sizeof] = ACTIONS(3207), + [anon_sym___alignof__] = ACTIONS(3207), + [anon_sym___alignof] = ACTIONS(3207), + [anon_sym__alignof] = ACTIONS(3207), + [anon_sym_alignof] = ACTIONS(3207), + [anon_sym__Alignof] = ACTIONS(3207), + [anon_sym_offsetof] = ACTIONS(3207), + [anon_sym__Generic] = ACTIONS(3207), + [anon_sym_asm] = ACTIONS(3207), + [anon_sym___asm__] = ACTIONS(3207), + [sym_number_literal] = ACTIONS(3209), + [anon_sym_L_SQUOTE] = ACTIONS(3209), + [anon_sym_u_SQUOTE] = ACTIONS(3209), + [anon_sym_U_SQUOTE] = ACTIONS(3209), + [anon_sym_u8_SQUOTE] = ACTIONS(3209), + [anon_sym_SQUOTE] = ACTIONS(3209), + [anon_sym_L_DQUOTE] = ACTIONS(3209), + [anon_sym_u_DQUOTE] = ACTIONS(3209), + [anon_sym_U_DQUOTE] = ACTIONS(3209), + [anon_sym_u8_DQUOTE] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3209), + [sym_true] = ACTIONS(3207), + [sym_false] = ACTIONS(3207), + [anon_sym_NULL] = ACTIONS(3207), + [anon_sym_nullptr] = ACTIONS(3207), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3469), - [anon_sym_decltype] = ACTIONS(3469), - [anon_sym_virtual] = ACTIONS(3469), - [anon_sym_alignas] = ACTIONS(3469), - [anon_sym_explicit] = ACTIONS(3469), - [anon_sym_typename] = ACTIONS(3469), - [anon_sym_template] = ACTIONS(3469), - [anon_sym_operator] = ACTIONS(3469), - [anon_sym_try] = ACTIONS(3469), - [anon_sym_delete] = ACTIONS(3469), - [anon_sym_throw] = ACTIONS(3469), - [anon_sym_namespace] = ACTIONS(3469), - [anon_sym_using] = ACTIONS(3469), - [anon_sym_static_assert] = ACTIONS(3469), - [anon_sym_concept] = ACTIONS(3469), - [anon_sym_co_return] = ACTIONS(3469), - [anon_sym_co_yield] = ACTIONS(3469), - [anon_sym_R_DQUOTE] = ACTIONS(3471), - [anon_sym_LR_DQUOTE] = ACTIONS(3471), - [anon_sym_uR_DQUOTE] = ACTIONS(3471), - [anon_sym_UR_DQUOTE] = ACTIONS(3471), - [anon_sym_u8R_DQUOTE] = ACTIONS(3471), - [anon_sym_co_await] = ACTIONS(3469), - [anon_sym_new] = ACTIONS(3469), - [anon_sym_requires] = ACTIONS(3469), - [sym_this] = ACTIONS(3469), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3471), - [sym_semgrep_named_ellipsis] = ACTIONS(3471), + [sym_auto] = ACTIONS(3207), + [anon_sym_decltype] = ACTIONS(3207), + [anon_sym_virtual] = ACTIONS(3207), + [anon_sym_alignas] = ACTIONS(3207), + [anon_sym_explicit] = ACTIONS(3207), + [anon_sym_typename] = ACTIONS(3207), + [anon_sym_template] = ACTIONS(3207), + [anon_sym_operator] = ACTIONS(3207), + [anon_sym_try] = ACTIONS(3207), + [anon_sym_delete] = ACTIONS(3207), + [anon_sym_throw] = ACTIONS(3207), + [anon_sym_namespace] = ACTIONS(3207), + [anon_sym_using] = ACTIONS(3207), + [anon_sym_static_assert] = ACTIONS(3207), + [anon_sym_concept] = ACTIONS(3207), + [anon_sym_co_return] = ACTIONS(3207), + [anon_sym_co_yield] = ACTIONS(3207), + [anon_sym_R_DQUOTE] = ACTIONS(3209), + [anon_sym_LR_DQUOTE] = ACTIONS(3209), + [anon_sym_uR_DQUOTE] = ACTIONS(3209), + [anon_sym_UR_DQUOTE] = ACTIONS(3209), + [anon_sym_u8R_DQUOTE] = ACTIONS(3209), + [anon_sym_co_await] = ACTIONS(3207), + [anon_sym_new] = ACTIONS(3207), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3207), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3209), + [sym_semgrep_named_ellipsis] = ACTIONS(3209), }, - [499] = { - [sym_identifier] = ACTIONS(3078), - [aux_sym_preproc_include_token1] = ACTIONS(3078), - [aux_sym_preproc_def_token1] = ACTIONS(3078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3080), - [aux_sym_preproc_if_token1] = ACTIONS(3078), - [aux_sym_preproc_if_token2] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3078), - [sym_preproc_directive] = ACTIONS(3078), - [anon_sym_LPAREN2] = ACTIONS(3080), - [anon_sym_BANG] = ACTIONS(3080), - [anon_sym_TILDE] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym_SEMI] = ACTIONS(3080), - [anon_sym___extension__] = ACTIONS(3078), - [anon_sym_typedef] = ACTIONS(3078), - [anon_sym_extern] = ACTIONS(3078), - [anon_sym___attribute__] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3080), - [anon_sym___declspec] = ACTIONS(3078), - [anon_sym___based] = ACTIONS(3078), - [anon_sym___cdecl] = ACTIONS(3078), - [anon_sym___clrcall] = ACTIONS(3078), - [anon_sym___stdcall] = ACTIONS(3078), - [anon_sym___fastcall] = ACTIONS(3078), - [anon_sym___thiscall] = ACTIONS(3078), - [anon_sym___vectorcall] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_signed] = ACTIONS(3078), - [anon_sym_unsigned] = ACTIONS(3078), - [anon_sym_long] = ACTIONS(3078), - [anon_sym_short] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_static] = ACTIONS(3078), - [anon_sym_register] = ACTIONS(3078), - [anon_sym_inline] = ACTIONS(3078), - [anon_sym___inline] = ACTIONS(3078), - [anon_sym___inline__] = ACTIONS(3078), - [anon_sym___forceinline] = ACTIONS(3078), - [anon_sym_thread_local] = ACTIONS(3078), - [anon_sym___thread] = ACTIONS(3078), - [anon_sym_const] = ACTIONS(3078), - [anon_sym_constexpr] = ACTIONS(3078), - [anon_sym_volatile] = ACTIONS(3078), - [anon_sym_restrict] = ACTIONS(3078), - [anon_sym___restrict__] = ACTIONS(3078), - [anon_sym__Atomic] = ACTIONS(3078), - [anon_sym__Noreturn] = ACTIONS(3078), - [anon_sym_noreturn] = ACTIONS(3078), - [anon_sym_mutable] = ACTIONS(3078), - [anon_sym_constinit] = ACTIONS(3078), - [anon_sym_consteval] = ACTIONS(3078), - [sym_primitive_type] = ACTIONS(3078), - [anon_sym_enum] = ACTIONS(3078), - [anon_sym_class] = ACTIONS(3078), - [anon_sym_struct] = ACTIONS(3078), - [anon_sym_union] = ACTIONS(3078), - [anon_sym_if] = ACTIONS(3078), - [anon_sym_else] = ACTIONS(3078), - [anon_sym_switch] = ACTIONS(3078), - [anon_sym_case] = ACTIONS(3078), - [anon_sym_default] = ACTIONS(3078), - [anon_sym_while] = ACTIONS(3078), - [anon_sym_do] = ACTIONS(3078), - [anon_sym_for] = ACTIONS(3078), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_break] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(3078), - [anon_sym_goto] = ACTIONS(3078), - [anon_sym___try] = ACTIONS(3078), - [anon_sym___leave] = ACTIONS(3078), - [anon_sym_not] = ACTIONS(3078), - [anon_sym_compl] = ACTIONS(3078), - [anon_sym_DASH_DASH] = ACTIONS(3080), - [anon_sym_PLUS_PLUS] = ACTIONS(3080), - [anon_sym_sizeof] = ACTIONS(3078), - [anon_sym___alignof__] = ACTIONS(3078), - [anon_sym___alignof] = ACTIONS(3078), - [anon_sym__alignof] = ACTIONS(3078), - [anon_sym_alignof] = ACTIONS(3078), - [anon_sym__Alignof] = ACTIONS(3078), - [anon_sym_offsetof] = ACTIONS(3078), - [anon_sym__Generic] = ACTIONS(3078), - [anon_sym_asm] = ACTIONS(3078), - [anon_sym___asm__] = ACTIONS(3078), - [sym_number_literal] = ACTIONS(3080), - [anon_sym_L_SQUOTE] = ACTIONS(3080), - [anon_sym_u_SQUOTE] = ACTIONS(3080), - [anon_sym_U_SQUOTE] = ACTIONS(3080), - [anon_sym_u8_SQUOTE] = ACTIONS(3080), - [anon_sym_SQUOTE] = ACTIONS(3080), - [anon_sym_L_DQUOTE] = ACTIONS(3080), - [anon_sym_u_DQUOTE] = ACTIONS(3080), - [anon_sym_U_DQUOTE] = ACTIONS(3080), - [anon_sym_u8_DQUOTE] = ACTIONS(3080), - [anon_sym_DQUOTE] = ACTIONS(3080), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [anon_sym_NULL] = ACTIONS(3078), - [anon_sym_nullptr] = ACTIONS(3078), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3078), - [anon_sym_decltype] = ACTIONS(3078), - [anon_sym_virtual] = ACTIONS(3078), - [anon_sym_alignas] = ACTIONS(3078), - [anon_sym_explicit] = ACTIONS(3078), - [anon_sym_typename] = ACTIONS(3078), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_operator] = ACTIONS(3078), - [anon_sym_try] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3078), - [anon_sym_throw] = ACTIONS(3078), - [anon_sym_namespace] = ACTIONS(3078), - [anon_sym_using] = ACTIONS(3078), - [anon_sym_static_assert] = ACTIONS(3078), - [anon_sym_concept] = ACTIONS(3078), - [anon_sym_co_return] = ACTIONS(3078), - [anon_sym_co_yield] = ACTIONS(3078), - [anon_sym_catch] = ACTIONS(3078), - [anon_sym_R_DQUOTE] = ACTIONS(3080), - [anon_sym_LR_DQUOTE] = ACTIONS(3080), - [anon_sym_uR_DQUOTE] = ACTIONS(3080), - [anon_sym_UR_DQUOTE] = ACTIONS(3080), - [anon_sym_u8R_DQUOTE] = ACTIONS(3080), - [anon_sym_co_await] = ACTIONS(3078), - [anon_sym_new] = ACTIONS(3078), - [anon_sym_requires] = ACTIONS(3078), - [sym_this] = ACTIONS(3078), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3080), - [sym_semgrep_named_ellipsis] = ACTIONS(3080), + [484] = { + [sym_expression] = STATE(5126), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(3700), + [anon_sym_extern] = ACTIONS(3700), + [anon_sym___attribute__] = ACTIONS(3700), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3702), + [anon_sym___declspec] = ACTIONS(3700), + [anon_sym_signed] = ACTIONS(3700), + [anon_sym_unsigned] = ACTIONS(3700), + [anon_sym_long] = ACTIONS(3700), + [anon_sym_short] = ACTIONS(3700), + [anon_sym_LBRACK] = ACTIONS(1532), + [anon_sym_static] = ACTIONS(3700), + [anon_sym_register] = ACTIONS(3700), + [anon_sym_inline] = ACTIONS(3700), + [anon_sym___inline] = ACTIONS(3700), + [anon_sym___inline__] = ACTIONS(3700), + [anon_sym___forceinline] = ACTIONS(3700), + [anon_sym_thread_local] = ACTIONS(3700), + [anon_sym___thread] = ACTIONS(3700), + [anon_sym_const] = ACTIONS(3700), + [anon_sym_constexpr] = ACTIONS(3700), + [anon_sym_volatile] = ACTIONS(3700), + [anon_sym_restrict] = ACTIONS(3700), + [anon_sym___restrict__] = ACTIONS(3700), + [anon_sym__Atomic] = ACTIONS(3700), + [anon_sym__Noreturn] = ACTIONS(3700), + [anon_sym_noreturn] = ACTIONS(3700), + [anon_sym_mutable] = ACTIONS(3700), + [anon_sym_constinit] = ACTIONS(3700), + [anon_sym_consteval] = ACTIONS(3700), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_enum] = ACTIONS(3700), + [anon_sym_class] = ACTIONS(3700), + [anon_sym_struct] = ACTIONS(3700), + [anon_sym_union] = ACTIONS(3700), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3700), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_virtual] = ACTIONS(3700), + [anon_sym_alignas] = ACTIONS(3700), + [anon_sym_typename] = ACTIONS(3700), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [500] = { - [sym_identifier] = ACTIONS(3396), - [aux_sym_preproc_include_token1] = ACTIONS(3396), - [aux_sym_preproc_def_token1] = ACTIONS(3396), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3398), - [aux_sym_preproc_if_token1] = ACTIONS(3396), - [aux_sym_preproc_if_token2] = ACTIONS(3396), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3396), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3396), - [aux_sym_preproc_else_token1] = ACTIONS(3396), - [aux_sym_preproc_elif_token1] = ACTIONS(3396), - [sym_preproc_directive] = ACTIONS(3396), - [anon_sym_LPAREN2] = ACTIONS(3398), - [anon_sym_BANG] = ACTIONS(3398), - [anon_sym_TILDE] = ACTIONS(3398), - [anon_sym_DASH] = ACTIONS(3396), - [anon_sym_PLUS] = ACTIONS(3396), - [anon_sym_STAR] = ACTIONS(3398), - [anon_sym_AMP_AMP] = ACTIONS(3398), - [anon_sym_AMP] = ACTIONS(3396), - [anon_sym_SEMI] = ACTIONS(3398), - [anon_sym___extension__] = ACTIONS(3396), - [anon_sym_typedef] = ACTIONS(3396), - [anon_sym_extern] = ACTIONS(3396), - [anon_sym___attribute__] = ACTIONS(3396), - [anon_sym_COLON_COLON] = ACTIONS(3398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3398), - [anon_sym___declspec] = ACTIONS(3396), - [anon_sym___based] = ACTIONS(3396), - [anon_sym___cdecl] = ACTIONS(3396), - [anon_sym___clrcall] = ACTIONS(3396), - [anon_sym___stdcall] = ACTIONS(3396), - [anon_sym___fastcall] = ACTIONS(3396), - [anon_sym___thiscall] = ACTIONS(3396), - [anon_sym___vectorcall] = ACTIONS(3396), - [anon_sym_LBRACE] = ACTIONS(3398), - [anon_sym_signed] = ACTIONS(3396), - [anon_sym_unsigned] = ACTIONS(3396), - [anon_sym_long] = ACTIONS(3396), - [anon_sym_short] = ACTIONS(3396), - [anon_sym_LBRACK] = ACTIONS(3396), - [anon_sym_static] = ACTIONS(3396), - [anon_sym_register] = ACTIONS(3396), - [anon_sym_inline] = ACTIONS(3396), - [anon_sym___inline] = ACTIONS(3396), - [anon_sym___inline__] = ACTIONS(3396), - [anon_sym___forceinline] = ACTIONS(3396), - [anon_sym_thread_local] = ACTIONS(3396), - [anon_sym___thread] = ACTIONS(3396), - [anon_sym_const] = ACTIONS(3396), - [anon_sym_constexpr] = ACTIONS(3396), - [anon_sym_volatile] = ACTIONS(3396), - [anon_sym_restrict] = ACTIONS(3396), - [anon_sym___restrict__] = ACTIONS(3396), - [anon_sym__Atomic] = ACTIONS(3396), - [anon_sym__Noreturn] = ACTIONS(3396), - [anon_sym_noreturn] = ACTIONS(3396), - [anon_sym_mutable] = ACTIONS(3396), - [anon_sym_constinit] = ACTIONS(3396), - [anon_sym_consteval] = ACTIONS(3396), - [sym_primitive_type] = ACTIONS(3396), - [anon_sym_enum] = ACTIONS(3396), - [anon_sym_class] = ACTIONS(3396), - [anon_sym_struct] = ACTIONS(3396), - [anon_sym_union] = ACTIONS(3396), - [anon_sym_if] = ACTIONS(3396), - [anon_sym_switch] = ACTIONS(3396), - [anon_sym_case] = ACTIONS(3396), - [anon_sym_default] = ACTIONS(3396), - [anon_sym_while] = ACTIONS(3396), - [anon_sym_do] = ACTIONS(3396), - [anon_sym_for] = ACTIONS(3396), - [anon_sym_return] = ACTIONS(3396), - [anon_sym_break] = ACTIONS(3396), - [anon_sym_continue] = ACTIONS(3396), - [anon_sym_goto] = ACTIONS(3396), - [anon_sym___try] = ACTIONS(3396), - [anon_sym___leave] = ACTIONS(3396), - [anon_sym_not] = ACTIONS(3396), - [anon_sym_compl] = ACTIONS(3396), - [anon_sym_DASH_DASH] = ACTIONS(3398), - [anon_sym_PLUS_PLUS] = ACTIONS(3398), - [anon_sym_sizeof] = ACTIONS(3396), - [anon_sym___alignof__] = ACTIONS(3396), - [anon_sym___alignof] = ACTIONS(3396), - [anon_sym__alignof] = ACTIONS(3396), - [anon_sym_alignof] = ACTIONS(3396), - [anon_sym__Alignof] = ACTIONS(3396), - [anon_sym_offsetof] = ACTIONS(3396), - [anon_sym__Generic] = ACTIONS(3396), - [anon_sym_asm] = ACTIONS(3396), - [anon_sym___asm__] = ACTIONS(3396), - [sym_number_literal] = ACTIONS(3398), - [anon_sym_L_SQUOTE] = ACTIONS(3398), - [anon_sym_u_SQUOTE] = ACTIONS(3398), - [anon_sym_U_SQUOTE] = ACTIONS(3398), - [anon_sym_u8_SQUOTE] = ACTIONS(3398), - [anon_sym_SQUOTE] = ACTIONS(3398), - [anon_sym_L_DQUOTE] = ACTIONS(3398), - [anon_sym_u_DQUOTE] = ACTIONS(3398), - [anon_sym_U_DQUOTE] = ACTIONS(3398), - [anon_sym_u8_DQUOTE] = ACTIONS(3398), - [anon_sym_DQUOTE] = ACTIONS(3398), - [sym_true] = ACTIONS(3396), - [sym_false] = ACTIONS(3396), - [anon_sym_NULL] = ACTIONS(3396), - [anon_sym_nullptr] = ACTIONS(3396), + [485] = { + [sym_identifier] = ACTIONS(3143), + [aux_sym_preproc_include_token1] = ACTIONS(3143), + [aux_sym_preproc_def_token1] = ACTIONS(3143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3145), + [aux_sym_preproc_if_token1] = ACTIONS(3143), + [aux_sym_preproc_if_token2] = ACTIONS(3143), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3143), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3143), + [aux_sym_preproc_else_token1] = ACTIONS(3143), + [aux_sym_preproc_elif_token1] = ACTIONS(3143), + [sym_preproc_directive] = ACTIONS(3143), + [anon_sym_LPAREN2] = ACTIONS(3145), + [anon_sym_BANG] = ACTIONS(3145), + [anon_sym_TILDE] = ACTIONS(3145), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(3145), + [anon_sym_AMP_AMP] = ACTIONS(3145), + [anon_sym_AMP] = ACTIONS(3143), + [anon_sym_SEMI] = ACTIONS(3145), + [anon_sym___extension__] = ACTIONS(3143), + [anon_sym_typedef] = ACTIONS(3143), + [anon_sym_extern] = ACTIONS(3143), + [anon_sym___attribute__] = ACTIONS(3143), + [anon_sym_COLON_COLON] = ACTIONS(3145), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3145), + [anon_sym___declspec] = ACTIONS(3143), + [anon_sym___based] = ACTIONS(3143), + [anon_sym___cdecl] = ACTIONS(3143), + [anon_sym___clrcall] = ACTIONS(3143), + [anon_sym___stdcall] = ACTIONS(3143), + [anon_sym___fastcall] = ACTIONS(3143), + [anon_sym___thiscall] = ACTIONS(3143), + [anon_sym___vectorcall] = ACTIONS(3143), + [anon_sym_LBRACE] = ACTIONS(3145), + [anon_sym_signed] = ACTIONS(3143), + [anon_sym_unsigned] = ACTIONS(3143), + [anon_sym_long] = ACTIONS(3143), + [anon_sym_short] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(3143), + [anon_sym_static] = ACTIONS(3143), + [anon_sym_register] = ACTIONS(3143), + [anon_sym_inline] = ACTIONS(3143), + [anon_sym___inline] = ACTIONS(3143), + [anon_sym___inline__] = ACTIONS(3143), + [anon_sym___forceinline] = ACTIONS(3143), + [anon_sym_thread_local] = ACTIONS(3143), + [anon_sym___thread] = ACTIONS(3143), + [anon_sym_const] = ACTIONS(3143), + [anon_sym_constexpr] = ACTIONS(3143), + [anon_sym_volatile] = ACTIONS(3143), + [anon_sym_restrict] = ACTIONS(3143), + [anon_sym___restrict__] = ACTIONS(3143), + [anon_sym__Atomic] = ACTIONS(3143), + [anon_sym__Noreturn] = ACTIONS(3143), + [anon_sym_noreturn] = ACTIONS(3143), + [anon_sym_mutable] = ACTIONS(3143), + [anon_sym_constinit] = ACTIONS(3143), + [anon_sym_consteval] = ACTIONS(3143), + [sym_primitive_type] = ACTIONS(3143), + [anon_sym_enum] = ACTIONS(3143), + [anon_sym_class] = ACTIONS(3143), + [anon_sym_struct] = ACTIONS(3143), + [anon_sym_union] = ACTIONS(3143), + [anon_sym_if] = ACTIONS(3143), + [anon_sym_else] = ACTIONS(3143), + [anon_sym_switch] = ACTIONS(3143), + [anon_sym_case] = ACTIONS(3143), + [anon_sym_default] = ACTIONS(3143), + [anon_sym_while] = ACTIONS(3143), + [anon_sym_do] = ACTIONS(3143), + [anon_sym_for] = ACTIONS(3143), + [anon_sym_return] = ACTIONS(3143), + [anon_sym_break] = ACTIONS(3143), + [anon_sym_continue] = ACTIONS(3143), + [anon_sym_goto] = ACTIONS(3143), + [anon_sym___try] = ACTIONS(3143), + [anon_sym___leave] = ACTIONS(3143), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3145), + [anon_sym_PLUS_PLUS] = ACTIONS(3145), + [anon_sym_sizeof] = ACTIONS(3143), + [anon_sym___alignof__] = ACTIONS(3143), + [anon_sym___alignof] = ACTIONS(3143), + [anon_sym__alignof] = ACTIONS(3143), + [anon_sym_alignof] = ACTIONS(3143), + [anon_sym__Alignof] = ACTIONS(3143), + [anon_sym_offsetof] = ACTIONS(3143), + [anon_sym__Generic] = ACTIONS(3143), + [anon_sym_asm] = ACTIONS(3143), + [anon_sym___asm__] = ACTIONS(3143), + [sym_number_literal] = ACTIONS(3145), + [anon_sym_L_SQUOTE] = ACTIONS(3145), + [anon_sym_u_SQUOTE] = ACTIONS(3145), + [anon_sym_U_SQUOTE] = ACTIONS(3145), + [anon_sym_u8_SQUOTE] = ACTIONS(3145), + [anon_sym_SQUOTE] = ACTIONS(3145), + [anon_sym_L_DQUOTE] = ACTIONS(3145), + [anon_sym_u_DQUOTE] = ACTIONS(3145), + [anon_sym_U_DQUOTE] = ACTIONS(3145), + [anon_sym_u8_DQUOTE] = ACTIONS(3145), + [anon_sym_DQUOTE] = ACTIONS(3145), + [sym_true] = ACTIONS(3143), + [sym_false] = ACTIONS(3143), + [anon_sym_NULL] = ACTIONS(3143), + [anon_sym_nullptr] = ACTIONS(3143), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3396), - [anon_sym_decltype] = ACTIONS(3396), - [anon_sym_virtual] = ACTIONS(3396), - [anon_sym_alignas] = ACTIONS(3396), - [anon_sym_explicit] = ACTIONS(3396), - [anon_sym_typename] = ACTIONS(3396), - [anon_sym_template] = ACTIONS(3396), - [anon_sym_operator] = ACTIONS(3396), - [anon_sym_try] = ACTIONS(3396), - [anon_sym_delete] = ACTIONS(3396), - [anon_sym_throw] = ACTIONS(3396), - [anon_sym_namespace] = ACTIONS(3396), - [anon_sym_using] = ACTIONS(3396), - [anon_sym_static_assert] = ACTIONS(3396), - [anon_sym_concept] = ACTIONS(3396), - [anon_sym_co_return] = ACTIONS(3396), - [anon_sym_co_yield] = ACTIONS(3396), - [anon_sym_R_DQUOTE] = ACTIONS(3398), - [anon_sym_LR_DQUOTE] = ACTIONS(3398), - [anon_sym_uR_DQUOTE] = ACTIONS(3398), - [anon_sym_UR_DQUOTE] = ACTIONS(3398), - [anon_sym_u8R_DQUOTE] = ACTIONS(3398), - [anon_sym_co_await] = ACTIONS(3396), - [anon_sym_new] = ACTIONS(3396), - [anon_sym_requires] = ACTIONS(3396), - [sym_this] = ACTIONS(3396), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3398), - [sym_semgrep_named_ellipsis] = ACTIONS(3398), + [sym_auto] = ACTIONS(3143), + [anon_sym_decltype] = ACTIONS(3143), + [anon_sym_virtual] = ACTIONS(3143), + [anon_sym_alignas] = ACTIONS(3143), + [anon_sym_explicit] = ACTIONS(3143), + [anon_sym_typename] = ACTIONS(3143), + [anon_sym_template] = ACTIONS(3143), + [anon_sym_operator] = ACTIONS(3143), + [anon_sym_try] = ACTIONS(3143), + [anon_sym_delete] = ACTIONS(3143), + [anon_sym_throw] = ACTIONS(3143), + [anon_sym_namespace] = ACTIONS(3143), + [anon_sym_using] = ACTIONS(3143), + [anon_sym_static_assert] = ACTIONS(3143), + [anon_sym_concept] = ACTIONS(3143), + [anon_sym_co_return] = ACTIONS(3143), + [anon_sym_co_yield] = ACTIONS(3143), + [anon_sym_R_DQUOTE] = ACTIONS(3145), + [anon_sym_LR_DQUOTE] = ACTIONS(3145), + [anon_sym_uR_DQUOTE] = ACTIONS(3145), + [anon_sym_UR_DQUOTE] = ACTIONS(3145), + [anon_sym_u8R_DQUOTE] = ACTIONS(3145), + [anon_sym_co_await] = ACTIONS(3143), + [anon_sym_new] = ACTIONS(3143), + [anon_sym_requires] = ACTIONS(3143), + [sym_this] = ACTIONS(3143), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3145), + [sym_semgrep_named_ellipsis] = ACTIONS(3145), }, - [501] = { - [sym_identifier] = ACTIONS(3420), - [aux_sym_preproc_include_token1] = ACTIONS(3420), - [aux_sym_preproc_def_token1] = ACTIONS(3420), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3422), - [aux_sym_preproc_if_token1] = ACTIONS(3420), - [aux_sym_preproc_if_token2] = ACTIONS(3420), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3420), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3420), - [aux_sym_preproc_else_token1] = ACTIONS(3420), - [aux_sym_preproc_elif_token1] = ACTIONS(3420), - [sym_preproc_directive] = ACTIONS(3420), - [anon_sym_LPAREN2] = ACTIONS(3422), - [anon_sym_BANG] = ACTIONS(3422), - [anon_sym_TILDE] = ACTIONS(3422), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_STAR] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_AMP] = ACTIONS(3420), - [anon_sym_SEMI] = ACTIONS(3422), - [anon_sym___extension__] = ACTIONS(3420), - [anon_sym_typedef] = ACTIONS(3420), - [anon_sym_extern] = ACTIONS(3420), - [anon_sym___attribute__] = ACTIONS(3420), - [anon_sym_COLON_COLON] = ACTIONS(3422), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3422), - [anon_sym___declspec] = ACTIONS(3420), - [anon_sym___based] = ACTIONS(3420), - [anon_sym___cdecl] = ACTIONS(3420), - [anon_sym___clrcall] = ACTIONS(3420), - [anon_sym___stdcall] = ACTIONS(3420), - [anon_sym___fastcall] = ACTIONS(3420), - [anon_sym___thiscall] = ACTIONS(3420), - [anon_sym___vectorcall] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3422), - [anon_sym_signed] = ACTIONS(3420), - [anon_sym_unsigned] = ACTIONS(3420), - [anon_sym_long] = ACTIONS(3420), - [anon_sym_short] = ACTIONS(3420), - [anon_sym_LBRACK] = ACTIONS(3420), - [anon_sym_static] = ACTIONS(3420), - [anon_sym_register] = ACTIONS(3420), - [anon_sym_inline] = ACTIONS(3420), - [anon_sym___inline] = ACTIONS(3420), - [anon_sym___inline__] = ACTIONS(3420), - [anon_sym___forceinline] = ACTIONS(3420), - [anon_sym_thread_local] = ACTIONS(3420), - [anon_sym___thread] = ACTIONS(3420), - [anon_sym_const] = ACTIONS(3420), - [anon_sym_constexpr] = ACTIONS(3420), - [anon_sym_volatile] = ACTIONS(3420), - [anon_sym_restrict] = ACTIONS(3420), - [anon_sym___restrict__] = ACTIONS(3420), - [anon_sym__Atomic] = ACTIONS(3420), - [anon_sym__Noreturn] = ACTIONS(3420), - [anon_sym_noreturn] = ACTIONS(3420), - [anon_sym_mutable] = ACTIONS(3420), - [anon_sym_constinit] = ACTIONS(3420), - [anon_sym_consteval] = ACTIONS(3420), - [sym_primitive_type] = ACTIONS(3420), - [anon_sym_enum] = ACTIONS(3420), - [anon_sym_class] = ACTIONS(3420), - [anon_sym_struct] = ACTIONS(3420), - [anon_sym_union] = ACTIONS(3420), - [anon_sym_if] = ACTIONS(3420), - [anon_sym_switch] = ACTIONS(3420), - [anon_sym_case] = ACTIONS(3420), - [anon_sym_default] = ACTIONS(3420), - [anon_sym_while] = ACTIONS(3420), - [anon_sym_do] = ACTIONS(3420), - [anon_sym_for] = ACTIONS(3420), - [anon_sym_return] = ACTIONS(3420), - [anon_sym_break] = ACTIONS(3420), - [anon_sym_continue] = ACTIONS(3420), - [anon_sym_goto] = ACTIONS(3420), - [anon_sym___try] = ACTIONS(3420), - [anon_sym___leave] = ACTIONS(3420), - [anon_sym_not] = ACTIONS(3420), - [anon_sym_compl] = ACTIONS(3420), - [anon_sym_DASH_DASH] = ACTIONS(3422), - [anon_sym_PLUS_PLUS] = ACTIONS(3422), - [anon_sym_sizeof] = ACTIONS(3420), - [anon_sym___alignof__] = ACTIONS(3420), - [anon_sym___alignof] = ACTIONS(3420), - [anon_sym__alignof] = ACTIONS(3420), - [anon_sym_alignof] = ACTIONS(3420), - [anon_sym__Alignof] = ACTIONS(3420), - [anon_sym_offsetof] = ACTIONS(3420), - [anon_sym__Generic] = ACTIONS(3420), - [anon_sym_asm] = ACTIONS(3420), - [anon_sym___asm__] = ACTIONS(3420), - [sym_number_literal] = ACTIONS(3422), - [anon_sym_L_SQUOTE] = ACTIONS(3422), - [anon_sym_u_SQUOTE] = ACTIONS(3422), - [anon_sym_U_SQUOTE] = ACTIONS(3422), - [anon_sym_u8_SQUOTE] = ACTIONS(3422), - [anon_sym_SQUOTE] = ACTIONS(3422), - [anon_sym_L_DQUOTE] = ACTIONS(3422), - [anon_sym_u_DQUOTE] = ACTIONS(3422), - [anon_sym_U_DQUOTE] = ACTIONS(3422), - [anon_sym_u8_DQUOTE] = ACTIONS(3422), - [anon_sym_DQUOTE] = ACTIONS(3422), - [sym_true] = ACTIONS(3420), - [sym_false] = ACTIONS(3420), - [anon_sym_NULL] = ACTIONS(3420), - [anon_sym_nullptr] = ACTIONS(3420), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3420), - [anon_sym_decltype] = ACTIONS(3420), - [anon_sym_virtual] = ACTIONS(3420), - [anon_sym_alignas] = ACTIONS(3420), - [anon_sym_explicit] = ACTIONS(3420), - [anon_sym_typename] = ACTIONS(3420), - [anon_sym_template] = ACTIONS(3420), - [anon_sym_operator] = ACTIONS(3420), - [anon_sym_try] = ACTIONS(3420), - [anon_sym_delete] = ACTIONS(3420), - [anon_sym_throw] = ACTIONS(3420), - [anon_sym_namespace] = ACTIONS(3420), - [anon_sym_using] = ACTIONS(3420), - [anon_sym_static_assert] = ACTIONS(3420), - [anon_sym_concept] = ACTIONS(3420), - [anon_sym_co_return] = ACTIONS(3420), - [anon_sym_co_yield] = ACTIONS(3420), - [anon_sym_R_DQUOTE] = ACTIONS(3422), - [anon_sym_LR_DQUOTE] = ACTIONS(3422), - [anon_sym_uR_DQUOTE] = ACTIONS(3422), - [anon_sym_UR_DQUOTE] = ACTIONS(3422), - [anon_sym_u8R_DQUOTE] = ACTIONS(3422), - [anon_sym_co_await] = ACTIONS(3420), - [anon_sym_new] = ACTIONS(3420), - [anon_sym_requires] = ACTIONS(3420), - [sym_this] = ACTIONS(3420), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3422), - [sym_semgrep_named_ellipsis] = ACTIONS(3422), + [486] = { + [sym_identifier] = ACTIONS(3213), + [aux_sym_preproc_include_token1] = ACTIONS(3213), + [aux_sym_preproc_def_token1] = ACTIONS(3213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3215), + [aux_sym_preproc_if_token1] = ACTIONS(3213), + [aux_sym_preproc_if_token2] = ACTIONS(3213), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3213), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3213), + [aux_sym_preproc_else_token1] = ACTIONS(3213), + [aux_sym_preproc_elif_token1] = ACTIONS(3213), + [sym_preproc_directive] = ACTIONS(3213), + [anon_sym_LPAREN2] = ACTIONS(3215), + [anon_sym_BANG] = ACTIONS(3215), + [anon_sym_TILDE] = ACTIONS(3215), + [anon_sym_DASH] = ACTIONS(3213), + [anon_sym_PLUS] = ACTIONS(3213), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP_AMP] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3213), + [anon_sym_SEMI] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(3213), + [anon_sym_typedef] = ACTIONS(3213), + [anon_sym_extern] = ACTIONS(3213), + [anon_sym___attribute__] = ACTIONS(3213), + [anon_sym_COLON_COLON] = ACTIONS(3215), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3215), + [anon_sym___declspec] = ACTIONS(3213), + [anon_sym___based] = ACTIONS(3213), + [anon_sym___cdecl] = ACTIONS(3213), + [anon_sym___clrcall] = ACTIONS(3213), + [anon_sym___stdcall] = ACTIONS(3213), + [anon_sym___fastcall] = ACTIONS(3213), + [anon_sym___thiscall] = ACTIONS(3213), + [anon_sym___vectorcall] = ACTIONS(3213), + [anon_sym_LBRACE] = ACTIONS(3215), + [anon_sym_signed] = ACTIONS(3213), + [anon_sym_unsigned] = ACTIONS(3213), + [anon_sym_long] = ACTIONS(3213), + [anon_sym_short] = ACTIONS(3213), + [anon_sym_LBRACK] = ACTIONS(3213), + [anon_sym_static] = ACTIONS(3213), + [anon_sym_register] = ACTIONS(3213), + [anon_sym_inline] = ACTIONS(3213), + [anon_sym___inline] = ACTIONS(3213), + [anon_sym___inline__] = ACTIONS(3213), + [anon_sym___forceinline] = ACTIONS(3213), + [anon_sym_thread_local] = ACTIONS(3213), + [anon_sym___thread] = ACTIONS(3213), + [anon_sym_const] = ACTIONS(3213), + [anon_sym_constexpr] = ACTIONS(3213), + [anon_sym_volatile] = ACTIONS(3213), + [anon_sym_restrict] = ACTIONS(3213), + [anon_sym___restrict__] = ACTIONS(3213), + [anon_sym__Atomic] = ACTIONS(3213), + [anon_sym__Noreturn] = ACTIONS(3213), + [anon_sym_noreturn] = ACTIONS(3213), + [anon_sym_mutable] = ACTIONS(3213), + [anon_sym_constinit] = ACTIONS(3213), + [anon_sym_consteval] = ACTIONS(3213), + [sym_primitive_type] = ACTIONS(3213), + [anon_sym_enum] = ACTIONS(3213), + [anon_sym_class] = ACTIONS(3213), + [anon_sym_struct] = ACTIONS(3213), + [anon_sym_union] = ACTIONS(3213), + [anon_sym_if] = ACTIONS(3213), + [anon_sym_else] = ACTIONS(3213), + [anon_sym_switch] = ACTIONS(3213), + [anon_sym_case] = ACTIONS(3213), + [anon_sym_default] = ACTIONS(3213), + [anon_sym_while] = ACTIONS(3213), + [anon_sym_do] = ACTIONS(3213), + [anon_sym_for] = ACTIONS(3213), + [anon_sym_return] = ACTIONS(3213), + [anon_sym_break] = ACTIONS(3213), + [anon_sym_continue] = ACTIONS(3213), + [anon_sym_goto] = ACTIONS(3213), + [anon_sym___try] = ACTIONS(3213), + [anon_sym___leave] = ACTIONS(3213), + [anon_sym_not] = ACTIONS(3213), + [anon_sym_compl] = ACTIONS(3213), + [anon_sym_DASH_DASH] = ACTIONS(3215), + [anon_sym_PLUS_PLUS] = ACTIONS(3215), + [anon_sym_sizeof] = ACTIONS(3213), + [anon_sym___alignof__] = ACTIONS(3213), + [anon_sym___alignof] = ACTIONS(3213), + [anon_sym__alignof] = ACTIONS(3213), + [anon_sym_alignof] = ACTIONS(3213), + [anon_sym__Alignof] = ACTIONS(3213), + [anon_sym_offsetof] = ACTIONS(3213), + [anon_sym__Generic] = ACTIONS(3213), + [anon_sym_asm] = ACTIONS(3213), + [anon_sym___asm__] = ACTIONS(3213), + [sym_number_literal] = ACTIONS(3215), + [anon_sym_L_SQUOTE] = ACTIONS(3215), + [anon_sym_u_SQUOTE] = ACTIONS(3215), + [anon_sym_U_SQUOTE] = ACTIONS(3215), + [anon_sym_u8_SQUOTE] = ACTIONS(3215), + [anon_sym_SQUOTE] = ACTIONS(3215), + [anon_sym_L_DQUOTE] = ACTIONS(3215), + [anon_sym_u_DQUOTE] = ACTIONS(3215), + [anon_sym_U_DQUOTE] = ACTIONS(3215), + [anon_sym_u8_DQUOTE] = ACTIONS(3215), + [anon_sym_DQUOTE] = ACTIONS(3215), + [sym_true] = ACTIONS(3213), + [sym_false] = ACTIONS(3213), + [anon_sym_NULL] = ACTIONS(3213), + [anon_sym_nullptr] = ACTIONS(3213), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3213), + [anon_sym_decltype] = ACTIONS(3213), + [anon_sym_virtual] = ACTIONS(3213), + [anon_sym_alignas] = ACTIONS(3213), + [anon_sym_explicit] = ACTIONS(3213), + [anon_sym_typename] = ACTIONS(3213), + [anon_sym_template] = ACTIONS(3213), + [anon_sym_operator] = ACTIONS(3213), + [anon_sym_try] = ACTIONS(3213), + [anon_sym_delete] = ACTIONS(3213), + [anon_sym_throw] = ACTIONS(3213), + [anon_sym_namespace] = ACTIONS(3213), + [anon_sym_using] = ACTIONS(3213), + [anon_sym_static_assert] = ACTIONS(3213), + [anon_sym_concept] = ACTIONS(3213), + [anon_sym_co_return] = ACTIONS(3213), + [anon_sym_co_yield] = ACTIONS(3213), + [anon_sym_R_DQUOTE] = ACTIONS(3215), + [anon_sym_LR_DQUOTE] = ACTIONS(3215), + [anon_sym_uR_DQUOTE] = ACTIONS(3215), + [anon_sym_UR_DQUOTE] = ACTIONS(3215), + [anon_sym_u8R_DQUOTE] = ACTIONS(3215), + [anon_sym_co_await] = ACTIONS(3213), + [anon_sym_new] = ACTIONS(3213), + [anon_sym_requires] = ACTIONS(3213), + [sym_this] = ACTIONS(3213), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3215), + [sym_semgrep_named_ellipsis] = ACTIONS(3215), }, - [502] = { - [sym_identifier] = ACTIONS(3556), - [aux_sym_preproc_include_token1] = ACTIONS(3556), - [aux_sym_preproc_def_token1] = ACTIONS(3556), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3558), - [aux_sym_preproc_if_token1] = ACTIONS(3556), - [aux_sym_preproc_if_token2] = ACTIONS(3556), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3556), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3556), - [aux_sym_preproc_else_token1] = ACTIONS(3556), - [aux_sym_preproc_elif_token1] = ACTIONS(3556), - [sym_preproc_directive] = ACTIONS(3556), - [anon_sym_LPAREN2] = ACTIONS(3558), - [anon_sym_BANG] = ACTIONS(3558), - [anon_sym_TILDE] = ACTIONS(3558), - [anon_sym_DASH] = ACTIONS(3556), - [anon_sym_PLUS] = ACTIONS(3556), - [anon_sym_STAR] = ACTIONS(3558), - [anon_sym_AMP_AMP] = ACTIONS(3558), - [anon_sym_AMP] = ACTIONS(3556), - [anon_sym_SEMI] = ACTIONS(3558), - [anon_sym___extension__] = ACTIONS(3556), - [anon_sym_typedef] = ACTIONS(3556), - [anon_sym_extern] = ACTIONS(3556), - [anon_sym___attribute__] = ACTIONS(3556), - [anon_sym_COLON_COLON] = ACTIONS(3558), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3558), - [anon_sym___declspec] = ACTIONS(3556), - [anon_sym___based] = ACTIONS(3556), - [anon_sym___cdecl] = ACTIONS(3556), - [anon_sym___clrcall] = ACTIONS(3556), - [anon_sym___stdcall] = ACTIONS(3556), - [anon_sym___fastcall] = ACTIONS(3556), - [anon_sym___thiscall] = ACTIONS(3556), - [anon_sym___vectorcall] = ACTIONS(3556), - [anon_sym_LBRACE] = ACTIONS(3558), - [anon_sym_signed] = ACTIONS(3556), - [anon_sym_unsigned] = ACTIONS(3556), - [anon_sym_long] = ACTIONS(3556), - [anon_sym_short] = ACTIONS(3556), - [anon_sym_LBRACK] = ACTIONS(3556), - [anon_sym_static] = ACTIONS(3556), - [anon_sym_register] = ACTIONS(3556), - [anon_sym_inline] = ACTIONS(3556), - [anon_sym___inline] = ACTIONS(3556), - [anon_sym___inline__] = ACTIONS(3556), - [anon_sym___forceinline] = ACTIONS(3556), - [anon_sym_thread_local] = ACTIONS(3556), - [anon_sym___thread] = ACTIONS(3556), - [anon_sym_const] = ACTIONS(3556), - [anon_sym_constexpr] = ACTIONS(3556), - [anon_sym_volatile] = ACTIONS(3556), - [anon_sym_restrict] = ACTIONS(3556), - [anon_sym___restrict__] = ACTIONS(3556), - [anon_sym__Atomic] = ACTIONS(3556), - [anon_sym__Noreturn] = ACTIONS(3556), - [anon_sym_noreturn] = ACTIONS(3556), - [anon_sym_mutable] = ACTIONS(3556), - [anon_sym_constinit] = ACTIONS(3556), - [anon_sym_consteval] = ACTIONS(3556), - [sym_primitive_type] = ACTIONS(3556), - [anon_sym_enum] = ACTIONS(3556), - [anon_sym_class] = ACTIONS(3556), - [anon_sym_struct] = ACTIONS(3556), - [anon_sym_union] = ACTIONS(3556), - [anon_sym_if] = ACTIONS(3556), - [anon_sym_switch] = ACTIONS(3556), - [anon_sym_case] = ACTIONS(3556), - [anon_sym_default] = ACTIONS(3556), - [anon_sym_while] = ACTIONS(3556), - [anon_sym_do] = ACTIONS(3556), - [anon_sym_for] = ACTIONS(3556), - [anon_sym_return] = ACTIONS(3556), - [anon_sym_break] = ACTIONS(3556), - [anon_sym_continue] = ACTIONS(3556), - [anon_sym_goto] = ACTIONS(3556), - [anon_sym___try] = ACTIONS(3556), - [anon_sym___leave] = ACTIONS(3556), - [anon_sym_not] = ACTIONS(3556), - [anon_sym_compl] = ACTIONS(3556), - [anon_sym_DASH_DASH] = ACTIONS(3558), - [anon_sym_PLUS_PLUS] = ACTIONS(3558), - [anon_sym_sizeof] = ACTIONS(3556), - [anon_sym___alignof__] = ACTIONS(3556), - [anon_sym___alignof] = ACTIONS(3556), - [anon_sym__alignof] = ACTIONS(3556), - [anon_sym_alignof] = ACTIONS(3556), - [anon_sym__Alignof] = ACTIONS(3556), - [anon_sym_offsetof] = ACTIONS(3556), - [anon_sym__Generic] = ACTIONS(3556), - [anon_sym_asm] = ACTIONS(3556), - [anon_sym___asm__] = ACTIONS(3556), - [sym_number_literal] = ACTIONS(3558), - [anon_sym_L_SQUOTE] = ACTIONS(3558), - [anon_sym_u_SQUOTE] = ACTIONS(3558), - [anon_sym_U_SQUOTE] = ACTIONS(3558), - [anon_sym_u8_SQUOTE] = ACTIONS(3558), - [anon_sym_SQUOTE] = ACTIONS(3558), - [anon_sym_L_DQUOTE] = ACTIONS(3558), - [anon_sym_u_DQUOTE] = ACTIONS(3558), - [anon_sym_U_DQUOTE] = ACTIONS(3558), - [anon_sym_u8_DQUOTE] = ACTIONS(3558), - [anon_sym_DQUOTE] = ACTIONS(3558), - [sym_true] = ACTIONS(3556), - [sym_false] = ACTIONS(3556), - [anon_sym_NULL] = ACTIONS(3556), - [anon_sym_nullptr] = ACTIONS(3556), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3556), - [anon_sym_decltype] = ACTIONS(3556), - [anon_sym_virtual] = ACTIONS(3556), - [anon_sym_alignas] = ACTIONS(3556), - [anon_sym_explicit] = ACTIONS(3556), - [anon_sym_typename] = ACTIONS(3556), - [anon_sym_template] = ACTIONS(3556), - [anon_sym_operator] = ACTIONS(3556), - [anon_sym_try] = ACTIONS(3556), - [anon_sym_delete] = ACTIONS(3556), - [anon_sym_throw] = ACTIONS(3556), - [anon_sym_namespace] = ACTIONS(3556), - [anon_sym_using] = ACTIONS(3556), - [anon_sym_static_assert] = ACTIONS(3556), - [anon_sym_concept] = ACTIONS(3556), - [anon_sym_co_return] = ACTIONS(3556), - [anon_sym_co_yield] = ACTIONS(3556), - [anon_sym_R_DQUOTE] = ACTIONS(3558), - [anon_sym_LR_DQUOTE] = ACTIONS(3558), - [anon_sym_uR_DQUOTE] = ACTIONS(3558), - [anon_sym_UR_DQUOTE] = ACTIONS(3558), - [anon_sym_u8R_DQUOTE] = ACTIONS(3558), - [anon_sym_co_await] = ACTIONS(3556), - [anon_sym_new] = ACTIONS(3556), - [anon_sym_requires] = ACTIONS(3556), - [sym_this] = ACTIONS(3556), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3558), - [sym_semgrep_named_ellipsis] = ACTIONS(3558), + [487] = { + [sym_identifier] = ACTIONS(3119), + [aux_sym_preproc_include_token1] = ACTIONS(3119), + [aux_sym_preproc_def_token1] = ACTIONS(3119), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3121), + [aux_sym_preproc_if_token1] = ACTIONS(3119), + [aux_sym_preproc_if_token2] = ACTIONS(3119), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3119), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3119), + [aux_sym_preproc_else_token1] = ACTIONS(3119), + [aux_sym_preproc_elif_token1] = ACTIONS(3119), + [sym_preproc_directive] = ACTIONS(3119), + [anon_sym_LPAREN2] = ACTIONS(3121), + [anon_sym_BANG] = ACTIONS(3121), + [anon_sym_TILDE] = ACTIONS(3121), + [anon_sym_DASH] = ACTIONS(3119), + [anon_sym_PLUS] = ACTIONS(3119), + [anon_sym_STAR] = ACTIONS(3121), + [anon_sym_AMP_AMP] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3119), + [anon_sym_SEMI] = ACTIONS(3121), + [anon_sym___extension__] = ACTIONS(3119), + [anon_sym_typedef] = ACTIONS(3119), + [anon_sym_extern] = ACTIONS(3119), + [anon_sym___attribute__] = ACTIONS(3119), + [anon_sym_COLON_COLON] = ACTIONS(3121), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3121), + [anon_sym___declspec] = ACTIONS(3119), + [anon_sym___based] = ACTIONS(3119), + [anon_sym___cdecl] = ACTIONS(3119), + [anon_sym___clrcall] = ACTIONS(3119), + [anon_sym___stdcall] = ACTIONS(3119), + [anon_sym___fastcall] = ACTIONS(3119), + [anon_sym___thiscall] = ACTIONS(3119), + [anon_sym___vectorcall] = ACTIONS(3119), + [anon_sym_LBRACE] = ACTIONS(3121), + [anon_sym_signed] = ACTIONS(3119), + [anon_sym_unsigned] = ACTIONS(3119), + [anon_sym_long] = ACTIONS(3119), + [anon_sym_short] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(3119), + [anon_sym_static] = ACTIONS(3119), + [anon_sym_register] = ACTIONS(3119), + [anon_sym_inline] = ACTIONS(3119), + [anon_sym___inline] = ACTIONS(3119), + [anon_sym___inline__] = ACTIONS(3119), + [anon_sym___forceinline] = ACTIONS(3119), + [anon_sym_thread_local] = ACTIONS(3119), + [anon_sym___thread] = ACTIONS(3119), + [anon_sym_const] = ACTIONS(3119), + [anon_sym_constexpr] = ACTIONS(3119), + [anon_sym_volatile] = ACTIONS(3119), + [anon_sym_restrict] = ACTIONS(3119), + [anon_sym___restrict__] = ACTIONS(3119), + [anon_sym__Atomic] = ACTIONS(3119), + [anon_sym__Noreturn] = ACTIONS(3119), + [anon_sym_noreturn] = ACTIONS(3119), + [anon_sym_mutable] = ACTIONS(3119), + [anon_sym_constinit] = ACTIONS(3119), + [anon_sym_consteval] = ACTIONS(3119), + [sym_primitive_type] = ACTIONS(3119), + [anon_sym_enum] = ACTIONS(3119), + [anon_sym_class] = ACTIONS(3119), + [anon_sym_struct] = ACTIONS(3119), + [anon_sym_union] = ACTIONS(3119), + [anon_sym_if] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3119), + [anon_sym_switch] = ACTIONS(3119), + [anon_sym_case] = ACTIONS(3119), + [anon_sym_default] = ACTIONS(3119), + [anon_sym_while] = ACTIONS(3119), + [anon_sym_do] = ACTIONS(3119), + [anon_sym_for] = ACTIONS(3119), + [anon_sym_return] = ACTIONS(3119), + [anon_sym_break] = ACTIONS(3119), + [anon_sym_continue] = ACTIONS(3119), + [anon_sym_goto] = ACTIONS(3119), + [anon_sym___try] = ACTIONS(3119), + [anon_sym___leave] = ACTIONS(3119), + [anon_sym_not] = ACTIONS(3119), + [anon_sym_compl] = ACTIONS(3119), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3119), + [anon_sym___alignof__] = ACTIONS(3119), + [anon_sym___alignof] = ACTIONS(3119), + [anon_sym__alignof] = ACTIONS(3119), + [anon_sym_alignof] = ACTIONS(3119), + [anon_sym__Alignof] = ACTIONS(3119), + [anon_sym_offsetof] = ACTIONS(3119), + [anon_sym__Generic] = ACTIONS(3119), + [anon_sym_asm] = ACTIONS(3119), + [anon_sym___asm__] = ACTIONS(3119), + [sym_number_literal] = ACTIONS(3121), + [anon_sym_L_SQUOTE] = ACTIONS(3121), + [anon_sym_u_SQUOTE] = ACTIONS(3121), + [anon_sym_U_SQUOTE] = ACTIONS(3121), + [anon_sym_u8_SQUOTE] = ACTIONS(3121), + [anon_sym_SQUOTE] = ACTIONS(3121), + [anon_sym_L_DQUOTE] = ACTIONS(3121), + [anon_sym_u_DQUOTE] = ACTIONS(3121), + [anon_sym_U_DQUOTE] = ACTIONS(3121), + [anon_sym_u8_DQUOTE] = ACTIONS(3121), + [anon_sym_DQUOTE] = ACTIONS(3121), + [sym_true] = ACTIONS(3119), + [sym_false] = ACTIONS(3119), + [anon_sym_NULL] = ACTIONS(3119), + [anon_sym_nullptr] = ACTIONS(3119), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3119), + [anon_sym_decltype] = ACTIONS(3119), + [anon_sym_virtual] = ACTIONS(3119), + [anon_sym_alignas] = ACTIONS(3119), + [anon_sym_explicit] = ACTIONS(3119), + [anon_sym_typename] = ACTIONS(3119), + [anon_sym_template] = ACTIONS(3119), + [anon_sym_operator] = ACTIONS(3119), + [anon_sym_try] = ACTIONS(3119), + [anon_sym_delete] = ACTIONS(3119), + [anon_sym_throw] = ACTIONS(3119), + [anon_sym_namespace] = ACTIONS(3119), + [anon_sym_using] = ACTIONS(3119), + [anon_sym_static_assert] = ACTIONS(3119), + [anon_sym_concept] = ACTIONS(3119), + [anon_sym_co_return] = ACTIONS(3119), + [anon_sym_co_yield] = ACTIONS(3119), + [anon_sym_R_DQUOTE] = ACTIONS(3121), + [anon_sym_LR_DQUOTE] = ACTIONS(3121), + [anon_sym_uR_DQUOTE] = ACTIONS(3121), + [anon_sym_UR_DQUOTE] = ACTIONS(3121), + [anon_sym_u8R_DQUOTE] = ACTIONS(3121), + [anon_sym_co_await] = ACTIONS(3119), + [anon_sym_new] = ACTIONS(3119), + [anon_sym_requires] = ACTIONS(3119), + [sym_this] = ACTIONS(3119), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3121), + [sym_semgrep_named_ellipsis] = ACTIONS(3121), }, - [503] = { - [sym_identifier] = ACTIONS(3560), - [aux_sym_preproc_include_token1] = ACTIONS(3560), - [aux_sym_preproc_def_token1] = ACTIONS(3560), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3562), - [aux_sym_preproc_if_token1] = ACTIONS(3560), - [aux_sym_preproc_if_token2] = ACTIONS(3560), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3560), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3560), - [aux_sym_preproc_else_token1] = ACTIONS(3560), - [aux_sym_preproc_elif_token1] = ACTIONS(3560), - [sym_preproc_directive] = ACTIONS(3560), - [anon_sym_LPAREN2] = ACTIONS(3562), - [anon_sym_BANG] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_DASH] = ACTIONS(3560), - [anon_sym_PLUS] = ACTIONS(3560), - [anon_sym_STAR] = ACTIONS(3562), - [anon_sym_AMP_AMP] = ACTIONS(3562), - [anon_sym_AMP] = ACTIONS(3560), - [anon_sym_SEMI] = ACTIONS(3562), - [anon_sym___extension__] = ACTIONS(3560), - [anon_sym_typedef] = ACTIONS(3560), - [anon_sym_extern] = ACTIONS(3560), - [anon_sym___attribute__] = ACTIONS(3560), - [anon_sym_COLON_COLON] = ACTIONS(3562), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3562), - [anon_sym___declspec] = ACTIONS(3560), - [anon_sym___based] = ACTIONS(3560), - [anon_sym___cdecl] = ACTIONS(3560), - [anon_sym___clrcall] = ACTIONS(3560), - [anon_sym___stdcall] = ACTIONS(3560), - [anon_sym___fastcall] = ACTIONS(3560), - [anon_sym___thiscall] = ACTIONS(3560), - [anon_sym___vectorcall] = ACTIONS(3560), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_signed] = ACTIONS(3560), - [anon_sym_unsigned] = ACTIONS(3560), - [anon_sym_long] = ACTIONS(3560), - [anon_sym_short] = ACTIONS(3560), - [anon_sym_LBRACK] = ACTIONS(3560), - [anon_sym_static] = ACTIONS(3560), - [anon_sym_register] = ACTIONS(3560), - [anon_sym_inline] = ACTIONS(3560), - [anon_sym___inline] = ACTIONS(3560), - [anon_sym___inline__] = ACTIONS(3560), - [anon_sym___forceinline] = ACTIONS(3560), - [anon_sym_thread_local] = ACTIONS(3560), - [anon_sym___thread] = ACTIONS(3560), - [anon_sym_const] = ACTIONS(3560), - [anon_sym_constexpr] = ACTIONS(3560), - [anon_sym_volatile] = ACTIONS(3560), - [anon_sym_restrict] = ACTIONS(3560), - [anon_sym___restrict__] = ACTIONS(3560), - [anon_sym__Atomic] = ACTIONS(3560), - [anon_sym__Noreturn] = ACTIONS(3560), - [anon_sym_noreturn] = ACTIONS(3560), - [anon_sym_mutable] = ACTIONS(3560), - [anon_sym_constinit] = ACTIONS(3560), - [anon_sym_consteval] = ACTIONS(3560), - [sym_primitive_type] = ACTIONS(3560), - [anon_sym_enum] = ACTIONS(3560), - [anon_sym_class] = ACTIONS(3560), - [anon_sym_struct] = ACTIONS(3560), - [anon_sym_union] = ACTIONS(3560), - [anon_sym_if] = ACTIONS(3560), - [anon_sym_switch] = ACTIONS(3560), - [anon_sym_case] = ACTIONS(3560), - [anon_sym_default] = ACTIONS(3560), - [anon_sym_while] = ACTIONS(3560), - [anon_sym_do] = ACTIONS(3560), - [anon_sym_for] = ACTIONS(3560), - [anon_sym_return] = ACTIONS(3560), - [anon_sym_break] = ACTIONS(3560), - [anon_sym_continue] = ACTIONS(3560), - [anon_sym_goto] = ACTIONS(3560), - [anon_sym___try] = ACTIONS(3560), - [anon_sym___leave] = ACTIONS(3560), - [anon_sym_not] = ACTIONS(3560), - [anon_sym_compl] = ACTIONS(3560), - [anon_sym_DASH_DASH] = ACTIONS(3562), - [anon_sym_PLUS_PLUS] = ACTIONS(3562), - [anon_sym_sizeof] = ACTIONS(3560), - [anon_sym___alignof__] = ACTIONS(3560), - [anon_sym___alignof] = ACTIONS(3560), - [anon_sym__alignof] = ACTIONS(3560), - [anon_sym_alignof] = ACTIONS(3560), - [anon_sym__Alignof] = ACTIONS(3560), - [anon_sym_offsetof] = ACTIONS(3560), - [anon_sym__Generic] = ACTIONS(3560), - [anon_sym_asm] = ACTIONS(3560), - [anon_sym___asm__] = ACTIONS(3560), - [sym_number_literal] = ACTIONS(3562), - [anon_sym_L_SQUOTE] = ACTIONS(3562), - [anon_sym_u_SQUOTE] = ACTIONS(3562), - [anon_sym_U_SQUOTE] = ACTIONS(3562), - [anon_sym_u8_SQUOTE] = ACTIONS(3562), - [anon_sym_SQUOTE] = ACTIONS(3562), - [anon_sym_L_DQUOTE] = ACTIONS(3562), - [anon_sym_u_DQUOTE] = ACTIONS(3562), - [anon_sym_U_DQUOTE] = ACTIONS(3562), - [anon_sym_u8_DQUOTE] = ACTIONS(3562), - [anon_sym_DQUOTE] = ACTIONS(3562), - [sym_true] = ACTIONS(3560), - [sym_false] = ACTIONS(3560), - [anon_sym_NULL] = ACTIONS(3560), - [anon_sym_nullptr] = ACTIONS(3560), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3560), - [anon_sym_decltype] = ACTIONS(3560), - [anon_sym_virtual] = ACTIONS(3560), - [anon_sym_alignas] = ACTIONS(3560), - [anon_sym_explicit] = ACTIONS(3560), - [anon_sym_typename] = ACTIONS(3560), - [anon_sym_template] = ACTIONS(3560), - [anon_sym_operator] = ACTIONS(3560), - [anon_sym_try] = ACTIONS(3560), - [anon_sym_delete] = ACTIONS(3560), - [anon_sym_throw] = ACTIONS(3560), - [anon_sym_namespace] = ACTIONS(3560), - [anon_sym_using] = ACTIONS(3560), - [anon_sym_static_assert] = ACTIONS(3560), - [anon_sym_concept] = ACTIONS(3560), - [anon_sym_co_return] = ACTIONS(3560), - [anon_sym_co_yield] = ACTIONS(3560), - [anon_sym_R_DQUOTE] = ACTIONS(3562), - [anon_sym_LR_DQUOTE] = ACTIONS(3562), - [anon_sym_uR_DQUOTE] = ACTIONS(3562), - [anon_sym_UR_DQUOTE] = ACTIONS(3562), - [anon_sym_u8R_DQUOTE] = ACTIONS(3562), - [anon_sym_co_await] = ACTIONS(3560), - [anon_sym_new] = ACTIONS(3560), - [anon_sym_requires] = ACTIONS(3560), - [sym_this] = ACTIONS(3560), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3562), - [sym_semgrep_named_ellipsis] = ACTIONS(3562), + [488] = { + [sym_catch_clause] = STATE(380), + [aux_sym_constructor_try_statement_repeat1] = STATE(380), + [sym_identifier] = ACTIONS(3056), + [aux_sym_preproc_include_token1] = ACTIONS(3056), + [aux_sym_preproc_def_token1] = ACTIONS(3056), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3058), + [aux_sym_preproc_if_token1] = ACTIONS(3056), + [aux_sym_preproc_if_token2] = ACTIONS(3056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3056), + [sym_preproc_directive] = ACTIONS(3056), + [anon_sym_LPAREN2] = ACTIONS(3058), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3058), + [anon_sym_DASH] = ACTIONS(3056), + [anon_sym_PLUS] = ACTIONS(3056), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_AMP_AMP] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3056), + [anon_sym_SEMI] = ACTIONS(3058), + [anon_sym___extension__] = ACTIONS(3056), + [anon_sym_typedef] = ACTIONS(3056), + [anon_sym_extern] = ACTIONS(3056), + [anon_sym___attribute__] = ACTIONS(3056), + [anon_sym_COLON_COLON] = ACTIONS(3058), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3058), + [anon_sym___declspec] = ACTIONS(3056), + [anon_sym___based] = ACTIONS(3056), + [anon_sym___cdecl] = ACTIONS(3056), + [anon_sym___clrcall] = ACTIONS(3056), + [anon_sym___stdcall] = ACTIONS(3056), + [anon_sym___fastcall] = ACTIONS(3056), + [anon_sym___thiscall] = ACTIONS(3056), + [anon_sym___vectorcall] = ACTIONS(3056), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_signed] = ACTIONS(3056), + [anon_sym_unsigned] = ACTIONS(3056), + [anon_sym_long] = ACTIONS(3056), + [anon_sym_short] = ACTIONS(3056), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_static] = ACTIONS(3056), + [anon_sym_register] = ACTIONS(3056), + [anon_sym_inline] = ACTIONS(3056), + [anon_sym___inline] = ACTIONS(3056), + [anon_sym___inline__] = ACTIONS(3056), + [anon_sym___forceinline] = ACTIONS(3056), + [anon_sym_thread_local] = ACTIONS(3056), + [anon_sym___thread] = ACTIONS(3056), + [anon_sym_const] = ACTIONS(3056), + [anon_sym_constexpr] = ACTIONS(3056), + [anon_sym_volatile] = ACTIONS(3056), + [anon_sym_restrict] = ACTIONS(3056), + [anon_sym___restrict__] = ACTIONS(3056), + [anon_sym__Atomic] = ACTIONS(3056), + [anon_sym__Noreturn] = ACTIONS(3056), + [anon_sym_noreturn] = ACTIONS(3056), + [anon_sym_mutable] = ACTIONS(3056), + [anon_sym_constinit] = ACTIONS(3056), + [anon_sym_consteval] = ACTIONS(3056), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3056), + [anon_sym_class] = ACTIONS(3056), + [anon_sym_struct] = ACTIONS(3056), + [anon_sym_union] = ACTIONS(3056), + [anon_sym_if] = ACTIONS(3056), + [anon_sym_switch] = ACTIONS(3056), + [anon_sym_case] = ACTIONS(3056), + [anon_sym_default] = ACTIONS(3056), + [anon_sym_while] = ACTIONS(3056), + [anon_sym_do] = ACTIONS(3056), + [anon_sym_for] = ACTIONS(3056), + [anon_sym_return] = ACTIONS(3056), + [anon_sym_break] = ACTIONS(3056), + [anon_sym_continue] = ACTIONS(3056), + [anon_sym_goto] = ACTIONS(3056), + [anon_sym___try] = ACTIONS(3056), + [anon_sym___leave] = ACTIONS(3056), + [anon_sym_not] = ACTIONS(3056), + [anon_sym_compl] = ACTIONS(3056), + [anon_sym_DASH_DASH] = ACTIONS(3058), + [anon_sym_PLUS_PLUS] = ACTIONS(3058), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3056), + [anon_sym___alignof] = ACTIONS(3056), + [anon_sym__alignof] = ACTIONS(3056), + [anon_sym_alignof] = ACTIONS(3056), + [anon_sym__Alignof] = ACTIONS(3056), + [anon_sym_offsetof] = ACTIONS(3056), + [anon_sym__Generic] = ACTIONS(3056), + [anon_sym_asm] = ACTIONS(3056), + [anon_sym___asm__] = ACTIONS(3056), + [sym_number_literal] = ACTIONS(3058), + [anon_sym_L_SQUOTE] = ACTIONS(3058), + [anon_sym_u_SQUOTE] = ACTIONS(3058), + [anon_sym_U_SQUOTE] = ACTIONS(3058), + [anon_sym_u8_SQUOTE] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [anon_sym_NULL] = ACTIONS(3056), + [anon_sym_nullptr] = ACTIONS(3056), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3056), + [anon_sym_decltype] = ACTIONS(3056), + [anon_sym_virtual] = ACTIONS(3056), + [anon_sym_alignas] = ACTIONS(3056), + [anon_sym_explicit] = ACTIONS(3056), + [anon_sym_typename] = ACTIONS(3056), + [anon_sym_template] = ACTIONS(3056), + [anon_sym_operator] = ACTIONS(3056), + [anon_sym_try] = ACTIONS(3056), + [anon_sym_delete] = ACTIONS(3056), + [anon_sym_throw] = ACTIONS(3056), + [anon_sym_namespace] = ACTIONS(3056), + [anon_sym_using] = ACTIONS(3056), + [anon_sym_static_assert] = ACTIONS(3056), + [anon_sym_concept] = ACTIONS(3056), + [anon_sym_co_return] = ACTIONS(3056), + [anon_sym_co_yield] = ACTIONS(3056), + [anon_sym_catch] = ACTIONS(3422), + [anon_sym_R_DQUOTE] = ACTIONS(3058), + [anon_sym_LR_DQUOTE] = ACTIONS(3058), + [anon_sym_uR_DQUOTE] = ACTIONS(3058), + [anon_sym_UR_DQUOTE] = ACTIONS(3058), + [anon_sym_u8R_DQUOTE] = ACTIONS(3058), + [anon_sym_co_await] = ACTIONS(3056), + [anon_sym_new] = ACTIONS(3056), + [anon_sym_requires] = ACTIONS(3056), + [sym_this] = ACTIONS(3056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3058), + [sym_semgrep_named_ellipsis] = ACTIONS(3058), }, - [504] = { - [sym_identifier] = ACTIONS(3101), - [aux_sym_preproc_include_token1] = ACTIONS(3101), - [aux_sym_preproc_def_token1] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3103), - [aux_sym_preproc_if_token1] = ACTIONS(3101), - [aux_sym_preproc_if_token2] = ACTIONS(3101), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3101), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3101), - [sym_preproc_directive] = ACTIONS(3101), - [anon_sym_LPAREN2] = ACTIONS(3103), - [anon_sym_BANG] = ACTIONS(3103), - [anon_sym_TILDE] = ACTIONS(3103), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_AMP_AMP] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym___extension__] = ACTIONS(3101), - [anon_sym_typedef] = ACTIONS(3101), - [anon_sym_extern] = ACTIONS(3101), - [anon_sym___attribute__] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(3103), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3103), - [anon_sym___declspec] = ACTIONS(3101), - [anon_sym___based] = ACTIONS(3101), - [anon_sym___cdecl] = ACTIONS(3101), - [anon_sym___clrcall] = ACTIONS(3101), - [anon_sym___stdcall] = ACTIONS(3101), - [anon_sym___fastcall] = ACTIONS(3101), - [anon_sym___thiscall] = ACTIONS(3101), - [anon_sym___vectorcall] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3103), - [anon_sym_signed] = ACTIONS(3101), - [anon_sym_unsigned] = ACTIONS(3101), - [anon_sym_long] = ACTIONS(3101), - [anon_sym_short] = ACTIONS(3101), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_static] = ACTIONS(3101), - [anon_sym_register] = ACTIONS(3101), - [anon_sym_inline] = ACTIONS(3101), - [anon_sym___inline] = ACTIONS(3101), - [anon_sym___inline__] = ACTIONS(3101), - [anon_sym___forceinline] = ACTIONS(3101), - [anon_sym_thread_local] = ACTIONS(3101), - [anon_sym___thread] = ACTIONS(3101), - [anon_sym_const] = ACTIONS(3101), - [anon_sym_constexpr] = ACTIONS(3101), - [anon_sym_volatile] = ACTIONS(3101), - [anon_sym_restrict] = ACTIONS(3101), - [anon_sym___restrict__] = ACTIONS(3101), - [anon_sym__Atomic] = ACTIONS(3101), - [anon_sym__Noreturn] = ACTIONS(3101), - [anon_sym_noreturn] = ACTIONS(3101), - [anon_sym_mutable] = ACTIONS(3101), - [anon_sym_constinit] = ACTIONS(3101), - [anon_sym_consteval] = ACTIONS(3101), - [sym_primitive_type] = ACTIONS(3101), - [anon_sym_enum] = ACTIONS(3101), - [anon_sym_class] = ACTIONS(3101), - [anon_sym_struct] = ACTIONS(3101), - [anon_sym_union] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_else] = ACTIONS(3101), - [anon_sym_switch] = ACTIONS(3101), - [anon_sym_case] = ACTIONS(3101), - [anon_sym_default] = ACTIONS(3101), - [anon_sym_while] = ACTIONS(3101), - [anon_sym_do] = ACTIONS(3101), - [anon_sym_for] = ACTIONS(3101), - [anon_sym_return] = ACTIONS(3101), - [anon_sym_break] = ACTIONS(3101), - [anon_sym_continue] = ACTIONS(3101), - [anon_sym_goto] = ACTIONS(3101), - [anon_sym___try] = ACTIONS(3101), - [anon_sym___leave] = ACTIONS(3101), - [anon_sym_not] = ACTIONS(3101), - [anon_sym_compl] = ACTIONS(3101), - [anon_sym_DASH_DASH] = ACTIONS(3103), - [anon_sym_PLUS_PLUS] = ACTIONS(3103), - [anon_sym_sizeof] = ACTIONS(3101), - [anon_sym___alignof__] = ACTIONS(3101), - [anon_sym___alignof] = ACTIONS(3101), - [anon_sym__alignof] = ACTIONS(3101), - [anon_sym_alignof] = ACTIONS(3101), - [anon_sym__Alignof] = ACTIONS(3101), - [anon_sym_offsetof] = ACTIONS(3101), - [anon_sym__Generic] = ACTIONS(3101), - [anon_sym_asm] = ACTIONS(3101), - [anon_sym___asm__] = ACTIONS(3101), - [sym_number_literal] = ACTIONS(3103), - [anon_sym_L_SQUOTE] = ACTIONS(3103), - [anon_sym_u_SQUOTE] = ACTIONS(3103), - [anon_sym_U_SQUOTE] = ACTIONS(3103), - [anon_sym_u8_SQUOTE] = ACTIONS(3103), - [anon_sym_SQUOTE] = ACTIONS(3103), - [anon_sym_L_DQUOTE] = ACTIONS(3103), - [anon_sym_u_DQUOTE] = ACTIONS(3103), - [anon_sym_U_DQUOTE] = ACTIONS(3103), - [anon_sym_u8_DQUOTE] = ACTIONS(3103), - [anon_sym_DQUOTE] = ACTIONS(3103), - [sym_true] = ACTIONS(3101), - [sym_false] = ACTIONS(3101), - [anon_sym_NULL] = ACTIONS(3101), - [anon_sym_nullptr] = ACTIONS(3101), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3101), - [anon_sym_decltype] = ACTIONS(3101), - [anon_sym_virtual] = ACTIONS(3101), - [anon_sym_alignas] = ACTIONS(3101), - [anon_sym_explicit] = ACTIONS(3101), - [anon_sym_typename] = ACTIONS(3101), - [anon_sym_template] = ACTIONS(3101), - [anon_sym_operator] = ACTIONS(3101), - [anon_sym_try] = ACTIONS(3101), - [anon_sym_delete] = ACTIONS(3101), - [anon_sym_throw] = ACTIONS(3101), - [anon_sym_namespace] = ACTIONS(3101), - [anon_sym_using] = ACTIONS(3101), - [anon_sym_static_assert] = ACTIONS(3101), - [anon_sym_concept] = ACTIONS(3101), - [anon_sym_co_return] = ACTIONS(3101), - [anon_sym_co_yield] = ACTIONS(3101), - [anon_sym_catch] = ACTIONS(3101), - [anon_sym_R_DQUOTE] = ACTIONS(3103), - [anon_sym_LR_DQUOTE] = ACTIONS(3103), - [anon_sym_uR_DQUOTE] = ACTIONS(3103), - [anon_sym_UR_DQUOTE] = ACTIONS(3103), - [anon_sym_u8R_DQUOTE] = ACTIONS(3103), - [anon_sym_co_await] = ACTIONS(3101), - [anon_sym_new] = ACTIONS(3101), - [anon_sym_requires] = ACTIONS(3101), - [sym_this] = ACTIONS(3101), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3103), - [sym_semgrep_named_ellipsis] = ACTIONS(3103), + [489] = { + [sym_identifier] = ACTIONS(3079), + [aux_sym_preproc_include_token1] = ACTIONS(3079), + [aux_sym_preproc_def_token1] = ACTIONS(3079), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3081), + [aux_sym_preproc_if_token1] = ACTIONS(3079), + [aux_sym_preproc_if_token2] = ACTIONS(3079), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3079), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3079), + [aux_sym_preproc_else_token1] = ACTIONS(3079), + [aux_sym_preproc_elif_token1] = ACTIONS(3079), + [sym_preproc_directive] = ACTIONS(3079), + [anon_sym_LPAREN2] = ACTIONS(3081), + [anon_sym_BANG] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(3079), + [anon_sym_STAR] = ACTIONS(3081), + [anon_sym_AMP_AMP] = ACTIONS(3081), + [anon_sym_AMP] = ACTIONS(3079), + [anon_sym_SEMI] = ACTIONS(3081), + [anon_sym___extension__] = ACTIONS(3079), + [anon_sym_typedef] = ACTIONS(3079), + [anon_sym_extern] = ACTIONS(3079), + [anon_sym___attribute__] = ACTIONS(3079), + [anon_sym_COLON_COLON] = ACTIONS(3081), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3081), + [anon_sym___declspec] = ACTIONS(3079), + [anon_sym___based] = ACTIONS(3079), + [anon_sym___cdecl] = ACTIONS(3079), + [anon_sym___clrcall] = ACTIONS(3079), + [anon_sym___stdcall] = ACTIONS(3079), + [anon_sym___fastcall] = ACTIONS(3079), + [anon_sym___thiscall] = ACTIONS(3079), + [anon_sym___vectorcall] = ACTIONS(3079), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_signed] = ACTIONS(3079), + [anon_sym_unsigned] = ACTIONS(3079), + [anon_sym_long] = ACTIONS(3079), + [anon_sym_short] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3079), + [anon_sym_static] = ACTIONS(3079), + [anon_sym_register] = ACTIONS(3079), + [anon_sym_inline] = ACTIONS(3079), + [anon_sym___inline] = ACTIONS(3079), + [anon_sym___inline__] = ACTIONS(3079), + [anon_sym___forceinline] = ACTIONS(3079), + [anon_sym_thread_local] = ACTIONS(3079), + [anon_sym___thread] = ACTIONS(3079), + [anon_sym_const] = ACTIONS(3079), + [anon_sym_constexpr] = ACTIONS(3079), + [anon_sym_volatile] = ACTIONS(3079), + [anon_sym_restrict] = ACTIONS(3079), + [anon_sym___restrict__] = ACTIONS(3079), + [anon_sym__Atomic] = ACTIONS(3079), + [anon_sym__Noreturn] = ACTIONS(3079), + [anon_sym_noreturn] = ACTIONS(3079), + [anon_sym_mutable] = ACTIONS(3079), + [anon_sym_constinit] = ACTIONS(3079), + [anon_sym_consteval] = ACTIONS(3079), + [sym_primitive_type] = ACTIONS(3079), + [anon_sym_enum] = ACTIONS(3079), + [anon_sym_class] = ACTIONS(3079), + [anon_sym_struct] = ACTIONS(3079), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_if] = ACTIONS(3079), + [anon_sym_else] = ACTIONS(3079), + [anon_sym_switch] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3079), + [anon_sym_default] = ACTIONS(3079), + [anon_sym_while] = ACTIONS(3079), + [anon_sym_do] = ACTIONS(3079), + [anon_sym_for] = ACTIONS(3079), + [anon_sym_return] = ACTIONS(3079), + [anon_sym_break] = ACTIONS(3079), + [anon_sym_continue] = ACTIONS(3079), + [anon_sym_goto] = ACTIONS(3079), + [anon_sym___try] = ACTIONS(3079), + [anon_sym___leave] = ACTIONS(3079), + [anon_sym_not] = ACTIONS(3079), + [anon_sym_compl] = ACTIONS(3079), + [anon_sym_DASH_DASH] = ACTIONS(3081), + [anon_sym_PLUS_PLUS] = ACTIONS(3081), + [anon_sym_sizeof] = ACTIONS(3079), + [anon_sym___alignof__] = ACTIONS(3079), + [anon_sym___alignof] = ACTIONS(3079), + [anon_sym__alignof] = ACTIONS(3079), + [anon_sym_alignof] = ACTIONS(3079), + [anon_sym__Alignof] = ACTIONS(3079), + [anon_sym_offsetof] = ACTIONS(3079), + [anon_sym__Generic] = ACTIONS(3079), + [anon_sym_asm] = ACTIONS(3079), + [anon_sym___asm__] = ACTIONS(3079), + [sym_number_literal] = ACTIONS(3081), + [anon_sym_L_SQUOTE] = ACTIONS(3081), + [anon_sym_u_SQUOTE] = ACTIONS(3081), + [anon_sym_U_SQUOTE] = ACTIONS(3081), + [anon_sym_u8_SQUOTE] = ACTIONS(3081), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_L_DQUOTE] = ACTIONS(3081), + [anon_sym_u_DQUOTE] = ACTIONS(3081), + [anon_sym_U_DQUOTE] = ACTIONS(3081), + [anon_sym_u8_DQUOTE] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(3081), + [sym_true] = ACTIONS(3079), + [sym_false] = ACTIONS(3079), + [anon_sym_NULL] = ACTIONS(3079), + [anon_sym_nullptr] = ACTIONS(3079), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3079), + [anon_sym_decltype] = ACTIONS(3079), + [anon_sym_virtual] = ACTIONS(3079), + [anon_sym_alignas] = ACTIONS(3079), + [anon_sym_explicit] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3079), + [anon_sym_template] = ACTIONS(3079), + [anon_sym_operator] = ACTIONS(3079), + [anon_sym_try] = ACTIONS(3079), + [anon_sym_delete] = ACTIONS(3079), + [anon_sym_throw] = ACTIONS(3079), + [anon_sym_namespace] = ACTIONS(3079), + [anon_sym_using] = ACTIONS(3079), + [anon_sym_static_assert] = ACTIONS(3079), + [anon_sym_concept] = ACTIONS(3079), + [anon_sym_co_return] = ACTIONS(3079), + [anon_sym_co_yield] = ACTIONS(3079), + [anon_sym_R_DQUOTE] = ACTIONS(3081), + [anon_sym_LR_DQUOTE] = ACTIONS(3081), + [anon_sym_uR_DQUOTE] = ACTIONS(3081), + [anon_sym_UR_DQUOTE] = ACTIONS(3081), + [anon_sym_u8R_DQUOTE] = ACTIONS(3081), + [anon_sym_co_await] = ACTIONS(3079), + [anon_sym_new] = ACTIONS(3079), + [anon_sym_requires] = ACTIONS(3079), + [sym_this] = ACTIONS(3079), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3081), + [sym_semgrep_named_ellipsis] = ACTIONS(3081), }, - [505] = { - [sym_identifier] = ACTIONS(3261), - [aux_sym_preproc_include_token1] = ACTIONS(3261), - [aux_sym_preproc_def_token1] = ACTIONS(3261), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3263), - [aux_sym_preproc_if_token1] = ACTIONS(3261), - [aux_sym_preproc_if_token2] = ACTIONS(3261), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3261), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3261), - [aux_sym_preproc_else_token1] = ACTIONS(3261), - [aux_sym_preproc_elif_token1] = ACTIONS(3261), - [sym_preproc_directive] = ACTIONS(3261), - [anon_sym_LPAREN2] = ACTIONS(3263), - [anon_sym_BANG] = ACTIONS(3263), - [anon_sym_TILDE] = ACTIONS(3263), - [anon_sym_DASH] = ACTIONS(3261), - [anon_sym_PLUS] = ACTIONS(3261), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP_AMP] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3261), - [anon_sym_SEMI] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(3261), - [anon_sym_typedef] = ACTIONS(3261), - [anon_sym_extern] = ACTIONS(3261), - [anon_sym___attribute__] = ACTIONS(3261), - [anon_sym_COLON_COLON] = ACTIONS(3263), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3263), - [anon_sym___declspec] = ACTIONS(3261), - [anon_sym___based] = ACTIONS(3261), - [anon_sym___cdecl] = ACTIONS(3261), - [anon_sym___clrcall] = ACTIONS(3261), - [anon_sym___stdcall] = ACTIONS(3261), - [anon_sym___fastcall] = ACTIONS(3261), - [anon_sym___thiscall] = ACTIONS(3261), - [anon_sym___vectorcall] = ACTIONS(3261), - [anon_sym_LBRACE] = ACTIONS(3263), - [anon_sym_signed] = ACTIONS(3261), - [anon_sym_unsigned] = ACTIONS(3261), - [anon_sym_long] = ACTIONS(3261), - [anon_sym_short] = ACTIONS(3261), - [anon_sym_LBRACK] = ACTIONS(3261), - [anon_sym_static] = ACTIONS(3261), - [anon_sym_register] = ACTIONS(3261), - [anon_sym_inline] = ACTIONS(3261), - [anon_sym___inline] = ACTIONS(3261), - [anon_sym___inline__] = ACTIONS(3261), - [anon_sym___forceinline] = ACTIONS(3261), - [anon_sym_thread_local] = ACTIONS(3261), - [anon_sym___thread] = ACTIONS(3261), - [anon_sym_const] = ACTIONS(3261), - [anon_sym_constexpr] = ACTIONS(3261), - [anon_sym_volatile] = ACTIONS(3261), - [anon_sym_restrict] = ACTIONS(3261), - [anon_sym___restrict__] = ACTIONS(3261), - [anon_sym__Atomic] = ACTIONS(3261), - [anon_sym__Noreturn] = ACTIONS(3261), - [anon_sym_noreturn] = ACTIONS(3261), - [anon_sym_mutable] = ACTIONS(3261), - [anon_sym_constinit] = ACTIONS(3261), - [anon_sym_consteval] = ACTIONS(3261), - [sym_primitive_type] = ACTIONS(3261), - [anon_sym_enum] = ACTIONS(3261), - [anon_sym_class] = ACTIONS(3261), - [anon_sym_struct] = ACTIONS(3261), - [anon_sym_union] = ACTIONS(3261), - [anon_sym_if] = ACTIONS(3261), - [anon_sym_switch] = ACTIONS(3261), - [anon_sym_case] = ACTIONS(3261), - [anon_sym_default] = ACTIONS(3261), - [anon_sym_while] = ACTIONS(3261), - [anon_sym_do] = ACTIONS(3261), - [anon_sym_for] = ACTIONS(3261), - [anon_sym_return] = ACTIONS(3261), - [anon_sym_break] = ACTIONS(3261), - [anon_sym_continue] = ACTIONS(3261), - [anon_sym_goto] = ACTIONS(3261), - [anon_sym___try] = ACTIONS(3261), - [anon_sym___leave] = ACTIONS(3261), - [anon_sym_not] = ACTIONS(3261), - [anon_sym_compl] = ACTIONS(3261), - [anon_sym_DASH_DASH] = ACTIONS(3263), - [anon_sym_PLUS_PLUS] = ACTIONS(3263), - [anon_sym_sizeof] = ACTIONS(3261), - [anon_sym___alignof__] = ACTIONS(3261), - [anon_sym___alignof] = ACTIONS(3261), - [anon_sym__alignof] = ACTIONS(3261), - [anon_sym_alignof] = ACTIONS(3261), - [anon_sym__Alignof] = ACTIONS(3261), - [anon_sym_offsetof] = ACTIONS(3261), - [anon_sym__Generic] = ACTIONS(3261), - [anon_sym_asm] = ACTIONS(3261), - [anon_sym___asm__] = ACTIONS(3261), - [sym_number_literal] = ACTIONS(3263), - [anon_sym_L_SQUOTE] = ACTIONS(3263), - [anon_sym_u_SQUOTE] = ACTIONS(3263), - [anon_sym_U_SQUOTE] = ACTIONS(3263), - [anon_sym_u8_SQUOTE] = ACTIONS(3263), - [anon_sym_SQUOTE] = ACTIONS(3263), - [anon_sym_L_DQUOTE] = ACTIONS(3263), - [anon_sym_u_DQUOTE] = ACTIONS(3263), - [anon_sym_U_DQUOTE] = ACTIONS(3263), - [anon_sym_u8_DQUOTE] = ACTIONS(3263), - [anon_sym_DQUOTE] = ACTIONS(3263), - [sym_true] = ACTIONS(3261), - [sym_false] = ACTIONS(3261), - [anon_sym_NULL] = ACTIONS(3261), - [anon_sym_nullptr] = ACTIONS(3261), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3261), - [anon_sym_decltype] = ACTIONS(3261), - [anon_sym_virtual] = ACTIONS(3261), - [anon_sym_alignas] = ACTIONS(3261), - [anon_sym_explicit] = ACTIONS(3261), - [anon_sym_typename] = ACTIONS(3261), - [anon_sym_template] = ACTIONS(3261), - [anon_sym_operator] = ACTIONS(3261), - [anon_sym_try] = ACTIONS(3261), - [anon_sym_delete] = ACTIONS(3261), - [anon_sym_throw] = ACTIONS(3261), - [anon_sym_namespace] = ACTIONS(3261), - [anon_sym_using] = ACTIONS(3261), - [anon_sym_static_assert] = ACTIONS(3261), - [anon_sym_concept] = ACTIONS(3261), - [anon_sym_co_return] = ACTIONS(3261), - [anon_sym_co_yield] = ACTIONS(3261), - [anon_sym_R_DQUOTE] = ACTIONS(3263), - [anon_sym_LR_DQUOTE] = ACTIONS(3263), - [anon_sym_uR_DQUOTE] = ACTIONS(3263), - [anon_sym_UR_DQUOTE] = ACTIONS(3263), - [anon_sym_u8R_DQUOTE] = ACTIONS(3263), - [anon_sym_co_await] = ACTIONS(3261), - [anon_sym_new] = ACTIONS(3261), - [anon_sym_requires] = ACTIONS(3261), - [sym_this] = ACTIONS(3261), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3263), - [sym_semgrep_named_ellipsis] = ACTIONS(3263), + [490] = { + [sym_identifier] = ACTIONS(3091), + [aux_sym_preproc_include_token1] = ACTIONS(3091), + [aux_sym_preproc_def_token1] = ACTIONS(3091), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3093), + [aux_sym_preproc_if_token1] = ACTIONS(3091), + [aux_sym_preproc_if_token2] = ACTIONS(3091), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3091), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3091), + [aux_sym_preproc_else_token1] = ACTIONS(3091), + [aux_sym_preproc_elif_token1] = ACTIONS(3091), + [sym_preproc_directive] = ACTIONS(3091), + [anon_sym_LPAREN2] = ACTIONS(3093), + [anon_sym_BANG] = ACTIONS(3093), + [anon_sym_TILDE] = ACTIONS(3093), + [anon_sym_DASH] = ACTIONS(3091), + [anon_sym_PLUS] = ACTIONS(3091), + [anon_sym_STAR] = ACTIONS(3093), + [anon_sym_AMP_AMP] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym___extension__] = ACTIONS(3091), + [anon_sym_typedef] = ACTIONS(3091), + [anon_sym_extern] = ACTIONS(3091), + [anon_sym___attribute__] = ACTIONS(3091), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3093), + [anon_sym___declspec] = ACTIONS(3091), + [anon_sym___based] = ACTIONS(3091), + [anon_sym___cdecl] = ACTIONS(3091), + [anon_sym___clrcall] = ACTIONS(3091), + [anon_sym___stdcall] = ACTIONS(3091), + [anon_sym___fastcall] = ACTIONS(3091), + [anon_sym___thiscall] = ACTIONS(3091), + [anon_sym___vectorcall] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_signed] = ACTIONS(3091), + [anon_sym_unsigned] = ACTIONS(3091), + [anon_sym_long] = ACTIONS(3091), + [anon_sym_short] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_static] = ACTIONS(3091), + [anon_sym_register] = ACTIONS(3091), + [anon_sym_inline] = ACTIONS(3091), + [anon_sym___inline] = ACTIONS(3091), + [anon_sym___inline__] = ACTIONS(3091), + [anon_sym___forceinline] = ACTIONS(3091), + [anon_sym_thread_local] = ACTIONS(3091), + [anon_sym___thread] = ACTIONS(3091), + [anon_sym_const] = ACTIONS(3091), + [anon_sym_constexpr] = ACTIONS(3091), + [anon_sym_volatile] = ACTIONS(3091), + [anon_sym_restrict] = ACTIONS(3091), + [anon_sym___restrict__] = ACTIONS(3091), + [anon_sym__Atomic] = ACTIONS(3091), + [anon_sym__Noreturn] = ACTIONS(3091), + [anon_sym_noreturn] = ACTIONS(3091), + [anon_sym_mutable] = ACTIONS(3091), + [anon_sym_constinit] = ACTIONS(3091), + [anon_sym_consteval] = ACTIONS(3091), + [sym_primitive_type] = ACTIONS(3091), + [anon_sym_enum] = ACTIONS(3091), + [anon_sym_class] = ACTIONS(3091), + [anon_sym_struct] = ACTIONS(3091), + [anon_sym_union] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3091), + [anon_sym_else] = ACTIONS(3091), + [anon_sym_switch] = ACTIONS(3091), + [anon_sym_case] = ACTIONS(3091), + [anon_sym_default] = ACTIONS(3091), + [anon_sym_while] = ACTIONS(3091), + [anon_sym_do] = ACTIONS(3091), + [anon_sym_for] = ACTIONS(3091), + [anon_sym_return] = ACTIONS(3091), + [anon_sym_break] = ACTIONS(3091), + [anon_sym_continue] = ACTIONS(3091), + [anon_sym_goto] = ACTIONS(3091), + [anon_sym___try] = ACTIONS(3091), + [anon_sym___leave] = ACTIONS(3091), + [anon_sym_not] = ACTIONS(3091), + [anon_sym_compl] = ACTIONS(3091), + [anon_sym_DASH_DASH] = ACTIONS(3093), + [anon_sym_PLUS_PLUS] = ACTIONS(3093), + [anon_sym_sizeof] = ACTIONS(3091), + [anon_sym___alignof__] = ACTIONS(3091), + [anon_sym___alignof] = ACTIONS(3091), + [anon_sym__alignof] = ACTIONS(3091), + [anon_sym_alignof] = ACTIONS(3091), + [anon_sym__Alignof] = ACTIONS(3091), + [anon_sym_offsetof] = ACTIONS(3091), + [anon_sym__Generic] = ACTIONS(3091), + [anon_sym_asm] = ACTIONS(3091), + [anon_sym___asm__] = ACTIONS(3091), + [sym_number_literal] = ACTIONS(3093), + [anon_sym_L_SQUOTE] = ACTIONS(3093), + [anon_sym_u_SQUOTE] = ACTIONS(3093), + [anon_sym_U_SQUOTE] = ACTIONS(3093), + [anon_sym_u8_SQUOTE] = ACTIONS(3093), + [anon_sym_SQUOTE] = ACTIONS(3093), + [anon_sym_L_DQUOTE] = ACTIONS(3093), + [anon_sym_u_DQUOTE] = ACTIONS(3093), + [anon_sym_U_DQUOTE] = ACTIONS(3093), + [anon_sym_u8_DQUOTE] = ACTIONS(3093), + [anon_sym_DQUOTE] = ACTIONS(3093), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [anon_sym_NULL] = ACTIONS(3091), + [anon_sym_nullptr] = ACTIONS(3091), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3091), + [anon_sym_decltype] = ACTIONS(3091), + [anon_sym_virtual] = ACTIONS(3091), + [anon_sym_alignas] = ACTIONS(3091), + [anon_sym_explicit] = ACTIONS(3091), + [anon_sym_typename] = ACTIONS(3091), + [anon_sym_template] = ACTIONS(3091), + [anon_sym_operator] = ACTIONS(3091), + [anon_sym_try] = ACTIONS(3091), + [anon_sym_delete] = ACTIONS(3091), + [anon_sym_throw] = ACTIONS(3091), + [anon_sym_namespace] = ACTIONS(3091), + [anon_sym_using] = ACTIONS(3091), + [anon_sym_static_assert] = ACTIONS(3091), + [anon_sym_concept] = ACTIONS(3091), + [anon_sym_co_return] = ACTIONS(3091), + [anon_sym_co_yield] = ACTIONS(3091), + [anon_sym_R_DQUOTE] = ACTIONS(3093), + [anon_sym_LR_DQUOTE] = ACTIONS(3093), + [anon_sym_uR_DQUOTE] = ACTIONS(3093), + [anon_sym_UR_DQUOTE] = ACTIONS(3093), + [anon_sym_u8R_DQUOTE] = ACTIONS(3093), + [anon_sym_co_await] = ACTIONS(3091), + [anon_sym_new] = ACTIONS(3091), + [anon_sym_requires] = ACTIONS(3091), + [sym_this] = ACTIONS(3091), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3093), + [sym_semgrep_named_ellipsis] = ACTIONS(3093), }, - [506] = { - [sym_else_clause] = STATE(587), - [sym_identifier] = ACTIONS(3088), - [aux_sym_preproc_include_token1] = ACTIONS(3088), - [aux_sym_preproc_def_token1] = ACTIONS(3088), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3090), - [aux_sym_preproc_if_token1] = ACTIONS(3088), - [aux_sym_preproc_if_token2] = ACTIONS(3088), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3088), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3088), - [sym_preproc_directive] = ACTIONS(3088), - [anon_sym_LPAREN2] = ACTIONS(3090), - [anon_sym_BANG] = ACTIONS(3090), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3088), - [anon_sym_PLUS] = ACTIONS(3088), - [anon_sym_STAR] = ACTIONS(3090), - [anon_sym_AMP_AMP] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3088), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym___extension__] = ACTIONS(3088), - [anon_sym_typedef] = ACTIONS(3088), - [anon_sym_extern] = ACTIONS(3088), - [anon_sym___attribute__] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3090), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3090), - [anon_sym___declspec] = ACTIONS(3088), - [anon_sym___based] = ACTIONS(3088), - [anon_sym___cdecl] = ACTIONS(3088), - [anon_sym___clrcall] = ACTIONS(3088), - [anon_sym___stdcall] = ACTIONS(3088), - [anon_sym___fastcall] = ACTIONS(3088), - [anon_sym___thiscall] = ACTIONS(3088), - [anon_sym___vectorcall] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_signed] = ACTIONS(3088), - [anon_sym_unsigned] = ACTIONS(3088), - [anon_sym_long] = ACTIONS(3088), - [anon_sym_short] = ACTIONS(3088), - [anon_sym_LBRACK] = ACTIONS(3088), - [anon_sym_static] = ACTIONS(3088), - [anon_sym_register] = ACTIONS(3088), - [anon_sym_inline] = ACTIONS(3088), - [anon_sym___inline] = ACTIONS(3088), - [anon_sym___inline__] = ACTIONS(3088), - [anon_sym___forceinline] = ACTIONS(3088), - [anon_sym_thread_local] = ACTIONS(3088), - [anon_sym___thread] = ACTIONS(3088), - [anon_sym_const] = ACTIONS(3088), - [anon_sym_constexpr] = ACTIONS(3088), - [anon_sym_volatile] = ACTIONS(3088), - [anon_sym_restrict] = ACTIONS(3088), - [anon_sym___restrict__] = ACTIONS(3088), - [anon_sym__Atomic] = ACTIONS(3088), - [anon_sym__Noreturn] = ACTIONS(3088), - [anon_sym_noreturn] = ACTIONS(3088), - [anon_sym_mutable] = ACTIONS(3088), - [anon_sym_constinit] = ACTIONS(3088), - [anon_sym_consteval] = ACTIONS(3088), - [sym_primitive_type] = ACTIONS(3088), - [anon_sym_enum] = ACTIONS(3088), - [anon_sym_class] = ACTIONS(3088), - [anon_sym_struct] = ACTIONS(3088), - [anon_sym_union] = ACTIONS(3088), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_else] = ACTIONS(3676), - [anon_sym_switch] = ACTIONS(3088), - [anon_sym_case] = ACTIONS(3088), - [anon_sym_default] = ACTIONS(3088), - [anon_sym_while] = ACTIONS(3088), - [anon_sym_do] = ACTIONS(3088), - [anon_sym_for] = ACTIONS(3088), - [anon_sym_return] = ACTIONS(3088), - [anon_sym_break] = ACTIONS(3088), - [anon_sym_continue] = ACTIONS(3088), - [anon_sym_goto] = ACTIONS(3088), - [anon_sym___try] = ACTIONS(3088), - [anon_sym___leave] = ACTIONS(3088), - [anon_sym_not] = ACTIONS(3088), - [anon_sym_compl] = ACTIONS(3088), - [anon_sym_DASH_DASH] = ACTIONS(3090), - [anon_sym_PLUS_PLUS] = ACTIONS(3090), - [anon_sym_sizeof] = ACTIONS(3088), - [anon_sym___alignof__] = ACTIONS(3088), - [anon_sym___alignof] = ACTIONS(3088), - [anon_sym__alignof] = ACTIONS(3088), - [anon_sym_alignof] = ACTIONS(3088), - [anon_sym__Alignof] = ACTIONS(3088), - [anon_sym_offsetof] = ACTIONS(3088), - [anon_sym__Generic] = ACTIONS(3088), - [anon_sym_asm] = ACTIONS(3088), - [anon_sym___asm__] = ACTIONS(3088), - [sym_number_literal] = ACTIONS(3090), - [anon_sym_L_SQUOTE] = ACTIONS(3090), - [anon_sym_u_SQUOTE] = ACTIONS(3090), - [anon_sym_U_SQUOTE] = ACTIONS(3090), - [anon_sym_u8_SQUOTE] = ACTIONS(3090), - [anon_sym_SQUOTE] = ACTIONS(3090), - [anon_sym_L_DQUOTE] = ACTIONS(3090), - [anon_sym_u_DQUOTE] = ACTIONS(3090), - [anon_sym_U_DQUOTE] = ACTIONS(3090), - [anon_sym_u8_DQUOTE] = ACTIONS(3090), - [anon_sym_DQUOTE] = ACTIONS(3090), - [sym_true] = ACTIONS(3088), - [sym_false] = ACTIONS(3088), - [anon_sym_NULL] = ACTIONS(3088), - [anon_sym_nullptr] = ACTIONS(3088), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3088), - [anon_sym_decltype] = ACTIONS(3088), - [anon_sym_virtual] = ACTIONS(3088), - [anon_sym_alignas] = ACTIONS(3088), - [anon_sym_explicit] = ACTIONS(3088), - [anon_sym_typename] = ACTIONS(3088), - [anon_sym_template] = ACTIONS(3088), - [anon_sym_operator] = ACTIONS(3088), - [anon_sym_try] = ACTIONS(3088), - [anon_sym_delete] = ACTIONS(3088), - [anon_sym_throw] = ACTIONS(3088), - [anon_sym_namespace] = ACTIONS(3088), - [anon_sym_using] = ACTIONS(3088), - [anon_sym_static_assert] = ACTIONS(3088), - [anon_sym_concept] = ACTIONS(3088), - [anon_sym_co_return] = ACTIONS(3088), - [anon_sym_co_yield] = ACTIONS(3088), - [anon_sym_R_DQUOTE] = ACTIONS(3090), - [anon_sym_LR_DQUOTE] = ACTIONS(3090), - [anon_sym_uR_DQUOTE] = ACTIONS(3090), - [anon_sym_UR_DQUOTE] = ACTIONS(3090), - [anon_sym_u8R_DQUOTE] = ACTIONS(3090), - [anon_sym_co_await] = ACTIONS(3088), - [anon_sym_new] = ACTIONS(3088), - [anon_sym_requires] = ACTIONS(3088), - [sym_this] = ACTIONS(3088), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3090), - [sym_semgrep_named_ellipsis] = ACTIONS(3090), + [491] = { + [sym_identifier] = ACTIONS(3151), + [aux_sym_preproc_include_token1] = ACTIONS(3151), + [aux_sym_preproc_def_token1] = ACTIONS(3151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3153), + [aux_sym_preproc_if_token1] = ACTIONS(3151), + [aux_sym_preproc_if_token2] = ACTIONS(3151), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3151), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3151), + [aux_sym_preproc_else_token1] = ACTIONS(3151), + [aux_sym_preproc_elif_token1] = ACTIONS(3151), + [sym_preproc_directive] = ACTIONS(3151), + [anon_sym_LPAREN2] = ACTIONS(3153), + [anon_sym_BANG] = ACTIONS(3153), + [anon_sym_TILDE] = ACTIONS(3153), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_AMP_AMP] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_SEMI] = ACTIONS(3153), + [anon_sym___extension__] = ACTIONS(3151), + [anon_sym_typedef] = ACTIONS(3151), + [anon_sym_extern] = ACTIONS(3151), + [anon_sym___attribute__] = ACTIONS(3151), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3153), + [anon_sym___declspec] = ACTIONS(3151), + [anon_sym___based] = ACTIONS(3151), + [anon_sym___cdecl] = ACTIONS(3151), + [anon_sym___clrcall] = ACTIONS(3151), + [anon_sym___stdcall] = ACTIONS(3151), + [anon_sym___fastcall] = ACTIONS(3151), + [anon_sym___thiscall] = ACTIONS(3151), + [anon_sym___vectorcall] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_signed] = ACTIONS(3151), + [anon_sym_unsigned] = ACTIONS(3151), + [anon_sym_long] = ACTIONS(3151), + [anon_sym_short] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_static] = ACTIONS(3151), + [anon_sym_register] = ACTIONS(3151), + [anon_sym_inline] = ACTIONS(3151), + [anon_sym___inline] = ACTIONS(3151), + [anon_sym___inline__] = ACTIONS(3151), + [anon_sym___forceinline] = ACTIONS(3151), + [anon_sym_thread_local] = ACTIONS(3151), + [anon_sym___thread] = ACTIONS(3151), + [anon_sym_const] = ACTIONS(3151), + [anon_sym_constexpr] = ACTIONS(3151), + [anon_sym_volatile] = ACTIONS(3151), + [anon_sym_restrict] = ACTIONS(3151), + [anon_sym___restrict__] = ACTIONS(3151), + [anon_sym__Atomic] = ACTIONS(3151), + [anon_sym__Noreturn] = ACTIONS(3151), + [anon_sym_noreturn] = ACTIONS(3151), + [anon_sym_mutable] = ACTIONS(3151), + [anon_sym_constinit] = ACTIONS(3151), + [anon_sym_consteval] = ACTIONS(3151), + [sym_primitive_type] = ACTIONS(3151), + [anon_sym_enum] = ACTIONS(3151), + [anon_sym_class] = ACTIONS(3151), + [anon_sym_struct] = ACTIONS(3151), + [anon_sym_union] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_else] = ACTIONS(3151), + [anon_sym_switch] = ACTIONS(3151), + [anon_sym_case] = ACTIONS(3151), + [anon_sym_default] = ACTIONS(3151), + [anon_sym_while] = ACTIONS(3151), + [anon_sym_do] = ACTIONS(3151), + [anon_sym_for] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3151), + [anon_sym_break] = ACTIONS(3151), + [anon_sym_continue] = ACTIONS(3151), + [anon_sym_goto] = ACTIONS(3151), + [anon_sym___try] = ACTIONS(3151), + [anon_sym___leave] = ACTIONS(3151), + [anon_sym_not] = ACTIONS(3151), + [anon_sym_compl] = ACTIONS(3151), + [anon_sym_DASH_DASH] = ACTIONS(3153), + [anon_sym_PLUS_PLUS] = ACTIONS(3153), + [anon_sym_sizeof] = ACTIONS(3151), + [anon_sym___alignof__] = ACTIONS(3151), + [anon_sym___alignof] = ACTIONS(3151), + [anon_sym__alignof] = ACTIONS(3151), + [anon_sym_alignof] = ACTIONS(3151), + [anon_sym__Alignof] = ACTIONS(3151), + [anon_sym_offsetof] = ACTIONS(3151), + [anon_sym__Generic] = ACTIONS(3151), + [anon_sym_asm] = ACTIONS(3151), + [anon_sym___asm__] = ACTIONS(3151), + [sym_number_literal] = ACTIONS(3153), + [anon_sym_L_SQUOTE] = ACTIONS(3153), + [anon_sym_u_SQUOTE] = ACTIONS(3153), + [anon_sym_U_SQUOTE] = ACTIONS(3153), + [anon_sym_u8_SQUOTE] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3153), + [anon_sym_L_DQUOTE] = ACTIONS(3153), + [anon_sym_u_DQUOTE] = ACTIONS(3153), + [anon_sym_U_DQUOTE] = ACTIONS(3153), + [anon_sym_u8_DQUOTE] = ACTIONS(3153), + [anon_sym_DQUOTE] = ACTIONS(3153), + [sym_true] = ACTIONS(3151), + [sym_false] = ACTIONS(3151), + [anon_sym_NULL] = ACTIONS(3151), + [anon_sym_nullptr] = ACTIONS(3151), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3151), + [anon_sym_decltype] = ACTIONS(3151), + [anon_sym_virtual] = ACTIONS(3151), + [anon_sym_alignas] = ACTIONS(3151), + [anon_sym_explicit] = ACTIONS(3151), + [anon_sym_typename] = ACTIONS(3151), + [anon_sym_template] = ACTIONS(3151), + [anon_sym_operator] = ACTIONS(3151), + [anon_sym_try] = ACTIONS(3151), + [anon_sym_delete] = ACTIONS(3151), + [anon_sym_throw] = ACTIONS(3151), + [anon_sym_namespace] = ACTIONS(3151), + [anon_sym_using] = ACTIONS(3151), + [anon_sym_static_assert] = ACTIONS(3151), + [anon_sym_concept] = ACTIONS(3151), + [anon_sym_co_return] = ACTIONS(3151), + [anon_sym_co_yield] = ACTIONS(3151), + [anon_sym_R_DQUOTE] = ACTIONS(3153), + [anon_sym_LR_DQUOTE] = ACTIONS(3153), + [anon_sym_uR_DQUOTE] = ACTIONS(3153), + [anon_sym_UR_DQUOTE] = ACTIONS(3153), + [anon_sym_u8R_DQUOTE] = ACTIONS(3153), + [anon_sym_co_await] = ACTIONS(3151), + [anon_sym_new] = ACTIONS(3151), + [anon_sym_requires] = ACTIONS(3151), + [sym_this] = ACTIONS(3151), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3153), + [sym_semgrep_named_ellipsis] = ACTIONS(3153), }, - [507] = { - [sym_else_clause] = STATE(593), - [sym_identifier] = ACTIONS(3082), - [aux_sym_preproc_include_token1] = ACTIONS(3082), - [aux_sym_preproc_def_token1] = ACTIONS(3082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3084), - [aux_sym_preproc_if_token1] = ACTIONS(3082), - [aux_sym_preproc_if_token2] = ACTIONS(3082), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3082), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3082), - [sym_preproc_directive] = ACTIONS(3082), - [anon_sym_LPAREN2] = ACTIONS(3084), - [anon_sym_BANG] = ACTIONS(3084), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_AMP_AMP] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3084), - [anon_sym___extension__] = ACTIONS(3082), - [anon_sym_typedef] = ACTIONS(3082), - [anon_sym_extern] = ACTIONS(3082), - [anon_sym___attribute__] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(3084), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3084), - [anon_sym___declspec] = ACTIONS(3082), - [anon_sym___based] = ACTIONS(3082), - [anon_sym___cdecl] = ACTIONS(3082), - [anon_sym___clrcall] = ACTIONS(3082), - [anon_sym___stdcall] = ACTIONS(3082), - [anon_sym___fastcall] = ACTIONS(3082), - [anon_sym___thiscall] = ACTIONS(3082), - [anon_sym___vectorcall] = ACTIONS(3082), - [anon_sym_LBRACE] = ACTIONS(3084), - [anon_sym_signed] = ACTIONS(3082), - [anon_sym_unsigned] = ACTIONS(3082), - [anon_sym_long] = ACTIONS(3082), - [anon_sym_short] = ACTIONS(3082), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_static] = ACTIONS(3082), - [anon_sym_register] = ACTIONS(3082), - [anon_sym_inline] = ACTIONS(3082), - [anon_sym___inline] = ACTIONS(3082), - [anon_sym___inline__] = ACTIONS(3082), - [anon_sym___forceinline] = ACTIONS(3082), - [anon_sym_thread_local] = ACTIONS(3082), - [anon_sym___thread] = ACTIONS(3082), - [anon_sym_const] = ACTIONS(3082), - [anon_sym_constexpr] = ACTIONS(3082), - [anon_sym_volatile] = ACTIONS(3082), - [anon_sym_restrict] = ACTIONS(3082), - [anon_sym___restrict__] = ACTIONS(3082), - [anon_sym__Atomic] = ACTIONS(3082), - [anon_sym__Noreturn] = ACTIONS(3082), - [anon_sym_noreturn] = ACTIONS(3082), - [anon_sym_mutable] = ACTIONS(3082), - [anon_sym_constinit] = ACTIONS(3082), - [anon_sym_consteval] = ACTIONS(3082), - [sym_primitive_type] = ACTIONS(3082), - [anon_sym_enum] = ACTIONS(3082), - [anon_sym_class] = ACTIONS(3082), - [anon_sym_struct] = ACTIONS(3082), - [anon_sym_union] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_else] = ACTIONS(3676), - [anon_sym_switch] = ACTIONS(3082), - [anon_sym_case] = ACTIONS(3082), - [anon_sym_default] = ACTIONS(3082), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_do] = ACTIONS(3082), - [anon_sym_for] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_break] = ACTIONS(3082), - [anon_sym_continue] = ACTIONS(3082), - [anon_sym_goto] = ACTIONS(3082), - [anon_sym___try] = ACTIONS(3082), - [anon_sym___leave] = ACTIONS(3082), - [anon_sym_not] = ACTIONS(3082), - [anon_sym_compl] = ACTIONS(3082), - [anon_sym_DASH_DASH] = ACTIONS(3084), - [anon_sym_PLUS_PLUS] = ACTIONS(3084), - [anon_sym_sizeof] = ACTIONS(3082), - [anon_sym___alignof__] = ACTIONS(3082), - [anon_sym___alignof] = ACTIONS(3082), - [anon_sym__alignof] = ACTIONS(3082), - [anon_sym_alignof] = ACTIONS(3082), - [anon_sym__Alignof] = ACTIONS(3082), - [anon_sym_offsetof] = ACTIONS(3082), - [anon_sym__Generic] = ACTIONS(3082), - [anon_sym_asm] = ACTIONS(3082), - [anon_sym___asm__] = ACTIONS(3082), - [sym_number_literal] = ACTIONS(3084), - [anon_sym_L_SQUOTE] = ACTIONS(3084), - [anon_sym_u_SQUOTE] = ACTIONS(3084), - [anon_sym_U_SQUOTE] = ACTIONS(3084), - [anon_sym_u8_SQUOTE] = ACTIONS(3084), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_L_DQUOTE] = ACTIONS(3084), - [anon_sym_u_DQUOTE] = ACTIONS(3084), - [anon_sym_U_DQUOTE] = ACTIONS(3084), - [anon_sym_u8_DQUOTE] = ACTIONS(3084), - [anon_sym_DQUOTE] = ACTIONS(3084), - [sym_true] = ACTIONS(3082), - [sym_false] = ACTIONS(3082), - [anon_sym_NULL] = ACTIONS(3082), - [anon_sym_nullptr] = ACTIONS(3082), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3082), - [anon_sym_decltype] = ACTIONS(3082), - [anon_sym_virtual] = ACTIONS(3082), - [anon_sym_alignas] = ACTIONS(3082), - [anon_sym_explicit] = ACTIONS(3082), - [anon_sym_typename] = ACTIONS(3082), - [anon_sym_template] = ACTIONS(3082), - [anon_sym_operator] = ACTIONS(3082), - [anon_sym_try] = ACTIONS(3082), - [anon_sym_delete] = ACTIONS(3082), - [anon_sym_throw] = ACTIONS(3082), - [anon_sym_namespace] = ACTIONS(3082), - [anon_sym_using] = ACTIONS(3082), - [anon_sym_static_assert] = ACTIONS(3082), - [anon_sym_concept] = ACTIONS(3082), - [anon_sym_co_return] = ACTIONS(3082), - [anon_sym_co_yield] = ACTIONS(3082), - [anon_sym_R_DQUOTE] = ACTIONS(3084), - [anon_sym_LR_DQUOTE] = ACTIONS(3084), - [anon_sym_uR_DQUOTE] = ACTIONS(3084), - [anon_sym_UR_DQUOTE] = ACTIONS(3084), - [anon_sym_u8R_DQUOTE] = ACTIONS(3084), - [anon_sym_co_await] = ACTIONS(3082), - [anon_sym_new] = ACTIONS(3082), - [anon_sym_requires] = ACTIONS(3082), - [sym_this] = ACTIONS(3082), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3084), - [sym_semgrep_named_ellipsis] = ACTIONS(3084), + [492] = { + [sym_identifier] = ACTIONS(3131), + [aux_sym_preproc_include_token1] = ACTIONS(3131), + [aux_sym_preproc_def_token1] = ACTIONS(3131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3133), + [aux_sym_preproc_if_token1] = ACTIONS(3131), + [aux_sym_preproc_if_token2] = ACTIONS(3131), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3131), + [aux_sym_preproc_else_token1] = ACTIONS(3131), + [aux_sym_preproc_elif_token1] = ACTIONS(3131), + [sym_preproc_directive] = ACTIONS(3131), + [anon_sym_LPAREN2] = ACTIONS(3133), + [anon_sym_BANG] = ACTIONS(3133), + [anon_sym_TILDE] = ACTIONS(3133), + [anon_sym_DASH] = ACTIONS(3131), + [anon_sym_PLUS] = ACTIONS(3131), + [anon_sym_STAR] = ACTIONS(3133), + [anon_sym_AMP_AMP] = ACTIONS(3133), + [anon_sym_AMP] = ACTIONS(3131), + [anon_sym_SEMI] = ACTIONS(3133), + [anon_sym___extension__] = ACTIONS(3131), + [anon_sym_typedef] = ACTIONS(3131), + [anon_sym_extern] = ACTIONS(3131), + [anon_sym___attribute__] = ACTIONS(3131), + [anon_sym_COLON_COLON] = ACTIONS(3133), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3133), + [anon_sym___declspec] = ACTIONS(3131), + [anon_sym___based] = ACTIONS(3131), + [anon_sym___cdecl] = ACTIONS(3131), + [anon_sym___clrcall] = ACTIONS(3131), + [anon_sym___stdcall] = ACTIONS(3131), + [anon_sym___fastcall] = ACTIONS(3131), + [anon_sym___thiscall] = ACTIONS(3131), + [anon_sym___vectorcall] = ACTIONS(3131), + [anon_sym_LBRACE] = ACTIONS(3133), + [anon_sym_signed] = ACTIONS(3131), + [anon_sym_unsigned] = ACTIONS(3131), + [anon_sym_long] = ACTIONS(3131), + [anon_sym_short] = ACTIONS(3131), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_static] = ACTIONS(3131), + [anon_sym_register] = ACTIONS(3131), + [anon_sym_inline] = ACTIONS(3131), + [anon_sym___inline] = ACTIONS(3131), + [anon_sym___inline__] = ACTIONS(3131), + [anon_sym___forceinline] = ACTIONS(3131), + [anon_sym_thread_local] = ACTIONS(3131), + [anon_sym___thread] = ACTIONS(3131), + [anon_sym_const] = ACTIONS(3131), + [anon_sym_constexpr] = ACTIONS(3131), + [anon_sym_volatile] = ACTIONS(3131), + [anon_sym_restrict] = ACTIONS(3131), + [anon_sym___restrict__] = ACTIONS(3131), + [anon_sym__Atomic] = ACTIONS(3131), + [anon_sym__Noreturn] = ACTIONS(3131), + [anon_sym_noreturn] = ACTIONS(3131), + [anon_sym_mutable] = ACTIONS(3131), + [anon_sym_constinit] = ACTIONS(3131), + [anon_sym_consteval] = ACTIONS(3131), + [sym_primitive_type] = ACTIONS(3131), + [anon_sym_enum] = ACTIONS(3131), + [anon_sym_class] = ACTIONS(3131), + [anon_sym_struct] = ACTIONS(3131), + [anon_sym_union] = ACTIONS(3131), + [anon_sym_if] = ACTIONS(3131), + [anon_sym_else] = ACTIONS(3131), + [anon_sym_switch] = ACTIONS(3131), + [anon_sym_case] = ACTIONS(3131), + [anon_sym_default] = ACTIONS(3131), + [anon_sym_while] = ACTIONS(3131), + [anon_sym_do] = ACTIONS(3131), + [anon_sym_for] = ACTIONS(3131), + [anon_sym_return] = ACTIONS(3131), + [anon_sym_break] = ACTIONS(3131), + [anon_sym_continue] = ACTIONS(3131), + [anon_sym_goto] = ACTIONS(3131), + [anon_sym___try] = ACTIONS(3131), + [anon_sym___leave] = ACTIONS(3131), + [anon_sym_not] = ACTIONS(3131), + [anon_sym_compl] = ACTIONS(3131), + [anon_sym_DASH_DASH] = ACTIONS(3133), + [anon_sym_PLUS_PLUS] = ACTIONS(3133), + [anon_sym_sizeof] = ACTIONS(3131), + [anon_sym___alignof__] = ACTIONS(3131), + [anon_sym___alignof] = ACTIONS(3131), + [anon_sym__alignof] = ACTIONS(3131), + [anon_sym_alignof] = ACTIONS(3131), + [anon_sym__Alignof] = ACTIONS(3131), + [anon_sym_offsetof] = ACTIONS(3131), + [anon_sym__Generic] = ACTIONS(3131), + [anon_sym_asm] = ACTIONS(3131), + [anon_sym___asm__] = ACTIONS(3131), + [sym_number_literal] = ACTIONS(3133), + [anon_sym_L_SQUOTE] = ACTIONS(3133), + [anon_sym_u_SQUOTE] = ACTIONS(3133), + [anon_sym_U_SQUOTE] = ACTIONS(3133), + [anon_sym_u8_SQUOTE] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3133), + [anon_sym_L_DQUOTE] = ACTIONS(3133), + [anon_sym_u_DQUOTE] = ACTIONS(3133), + [anon_sym_U_DQUOTE] = ACTIONS(3133), + [anon_sym_u8_DQUOTE] = ACTIONS(3133), + [anon_sym_DQUOTE] = ACTIONS(3133), + [sym_true] = ACTIONS(3131), + [sym_false] = ACTIONS(3131), + [anon_sym_NULL] = ACTIONS(3131), + [anon_sym_nullptr] = ACTIONS(3131), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3131), + [anon_sym_decltype] = ACTIONS(3131), + [anon_sym_virtual] = ACTIONS(3131), + [anon_sym_alignas] = ACTIONS(3131), + [anon_sym_explicit] = ACTIONS(3131), + [anon_sym_typename] = ACTIONS(3131), + [anon_sym_template] = ACTIONS(3131), + [anon_sym_operator] = ACTIONS(3131), + [anon_sym_try] = ACTIONS(3131), + [anon_sym_delete] = ACTIONS(3131), + [anon_sym_throw] = ACTIONS(3131), + [anon_sym_namespace] = ACTIONS(3131), + [anon_sym_using] = ACTIONS(3131), + [anon_sym_static_assert] = ACTIONS(3131), + [anon_sym_concept] = ACTIONS(3131), + [anon_sym_co_return] = ACTIONS(3131), + [anon_sym_co_yield] = ACTIONS(3131), + [anon_sym_R_DQUOTE] = ACTIONS(3133), + [anon_sym_LR_DQUOTE] = ACTIONS(3133), + [anon_sym_uR_DQUOTE] = ACTIONS(3133), + [anon_sym_UR_DQUOTE] = ACTIONS(3133), + [anon_sym_u8R_DQUOTE] = ACTIONS(3133), + [anon_sym_co_await] = ACTIONS(3131), + [anon_sym_new] = ACTIONS(3131), + [anon_sym_requires] = ACTIONS(3131), + [sym_this] = ACTIONS(3131), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3133), + [sym_semgrep_named_ellipsis] = ACTIONS(3133), }, - [508] = { + [493] = { + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_unaligned_ptr_modifier] = STATE(5969), + [sym_ms_pointer_modifier] = STATE(3706), + [sym_declarator] = STATE(7440), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7305), + [sym_array_declarator] = STATE(7305), + [sym_type_qualifier] = STATE(4726), + [sym_expression] = STATE(3325), + [sym_expression_not_binary] = STATE(3766), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8737), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3633), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6615), + [sym_qualified_identifier] = STATE(3639), + [sym_qualified_type_identifier] = STATE(3098), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [aux_sym_type_definition_type_repeat1] = STATE(4726), + [aux_sym_pointer_declarator_repeat1] = STATE(3706), + [sym_identifier] = ACTIONS(3704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3706), + [anon_sym_LPAREN2] = ACTIONS(2201), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym___extension__] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym___based] = ACTIONS(51), + [sym_ms_restrict_modifier] = ACTIONS(3696), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3696), + [sym_ms_signed_ptr_modifier] = ACTIONS(3696), + [anon_sym__unaligned] = ACTIONS(3698), + [anon_sym___unaligned] = ACTIONS(3698), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_const] = ACTIONS(3694), + [anon_sym_constexpr] = ACTIONS(3694), + [anon_sym_volatile] = ACTIONS(3694), + [anon_sym_restrict] = ACTIONS(3694), + [anon_sym___restrict__] = ACTIONS(3694), + [anon_sym__Atomic] = ACTIONS(3694), + [anon_sym__Noreturn] = ACTIONS(3694), + [anon_sym_noreturn] = ACTIONS(3694), + [anon_sym_mutable] = ACTIONS(3694), + [anon_sym_constinit] = ACTIONS(3694), + [anon_sym_consteval] = ACTIONS(3694), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_compl] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_operator] = ACTIONS(2257), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), + }, + [494] = { + [sym_identifier] = ACTIONS(3167), + [aux_sym_preproc_include_token1] = ACTIONS(3167), + [aux_sym_preproc_def_token1] = ACTIONS(3167), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3169), + [aux_sym_preproc_if_token1] = ACTIONS(3167), + [aux_sym_preproc_if_token2] = ACTIONS(3167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3167), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3167), + [aux_sym_preproc_else_token1] = ACTIONS(3167), + [aux_sym_preproc_elif_token1] = ACTIONS(3167), + [sym_preproc_directive] = 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___extension__] = ACTIONS(3167), + [anon_sym_typedef] = ACTIONS(3167), + [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___cdecl] = ACTIONS(3167), + [anon_sym___clrcall] = ACTIONS(3167), + [anon_sym___stdcall] = ACTIONS(3167), + [anon_sym___fastcall] = ACTIONS(3167), + [anon_sym___thiscall] = ACTIONS(3167), + [anon_sym___vectorcall] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_signed] = ACTIONS(3167), + [anon_sym_unsigned] = ACTIONS(3167), + [anon_sym_long] = ACTIONS(3167), + [anon_sym_short] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_static] = ACTIONS(3167), + [anon_sym_register] = ACTIONS(3167), + [anon_sym_inline] = ACTIONS(3167), + [anon_sym___inline] = ACTIONS(3167), + [anon_sym___inline__] = ACTIONS(3167), + [anon_sym___forceinline] = ACTIONS(3167), + [anon_sym_thread_local] = ACTIONS(3167), + [anon_sym___thread] = ACTIONS(3167), + [anon_sym_const] = ACTIONS(3167), + [anon_sym_constexpr] = ACTIONS(3167), + [anon_sym_volatile] = ACTIONS(3167), + [anon_sym_restrict] = ACTIONS(3167), + [anon_sym___restrict__] = ACTIONS(3167), + [anon_sym__Atomic] = ACTIONS(3167), + [anon_sym__Noreturn] = ACTIONS(3167), + [anon_sym_noreturn] = ACTIONS(3167), + [anon_sym_mutable] = ACTIONS(3167), + [anon_sym_constinit] = ACTIONS(3167), + [anon_sym_consteval] = 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_else] = 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___try] = ACTIONS(3167), + [anon_sym___leave] = 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), + [anon_sym___alignof__] = ACTIONS(3167), + [anon_sym___alignof] = ACTIONS(3167), + [anon_sym__alignof] = ACTIONS(3167), + [anon_sym_alignof] = ACTIONS(3167), + [anon_sym__Alignof] = ACTIONS(3167), + [anon_sym_offsetof] = ACTIONS(3167), + [anon_sym__Generic] = ACTIONS(3167), + [anon_sym_asm] = ACTIONS(3167), + [anon_sym___asm__] = 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), + [anon_sym_NULL] = ACTIONS(3167), + [anon_sym_nullptr] = ACTIONS(3167), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3167), + [anon_sym_decltype] = ACTIONS(3167), + [anon_sym_virtual] = ACTIONS(3167), + [anon_sym_alignas] = 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_namespace] = ACTIONS(3167), + [anon_sym_using] = ACTIONS(3167), + [anon_sym_static_assert] = ACTIONS(3167), + [anon_sym_concept] = ACTIONS(3167), + [anon_sym_co_return] = ACTIONS(3167), + [anon_sym_co_yield] = ACTIONS(3167), + [anon_sym_R_DQUOTE] = ACTIONS(3169), + [anon_sym_LR_DQUOTE] = ACTIONS(3169), + [anon_sym_uR_DQUOTE] = ACTIONS(3169), + [anon_sym_UR_DQUOTE] = ACTIONS(3169), + [anon_sym_u8R_DQUOTE] = ACTIONS(3169), + [anon_sym_co_await] = ACTIONS(3167), + [anon_sym_new] = ACTIONS(3167), + [anon_sym_requires] = ACTIONS(3167), + [sym_this] = ACTIONS(3167), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3169), + [sym_semgrep_named_ellipsis] = ACTIONS(3169), + }, + [495] = { + [sym_identifier] = ACTIONS(3613), + [aux_sym_preproc_include_token1] = ACTIONS(3613), + [aux_sym_preproc_def_token1] = ACTIONS(3613), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3615), + [aux_sym_preproc_if_token1] = ACTIONS(3613), + [aux_sym_preproc_if_token2] = ACTIONS(3613), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3613), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3613), + [aux_sym_preproc_else_token1] = ACTIONS(3613), + [aux_sym_preproc_elif_token1] = ACTIONS(3613), + [sym_preproc_directive] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3615), + [anon_sym_TILDE] = ACTIONS(3615), + [anon_sym_DASH] = ACTIONS(3613), + [anon_sym_PLUS] = ACTIONS(3613), + [anon_sym_STAR] = ACTIONS(3615), + [anon_sym_AMP_AMP] = ACTIONS(3615), + [anon_sym_AMP] = ACTIONS(3613), + [anon_sym_SEMI] = ACTIONS(3615), + [anon_sym___extension__] = ACTIONS(3613), + [anon_sym_typedef] = ACTIONS(3613), + [anon_sym_extern] = ACTIONS(3613), + [anon_sym___attribute__] = ACTIONS(3613), + [anon_sym_COLON_COLON] = ACTIONS(3615), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3615), + [anon_sym___declspec] = ACTIONS(3613), + [anon_sym___based] = ACTIONS(3613), + [anon_sym___cdecl] = ACTIONS(3613), + [anon_sym___clrcall] = ACTIONS(3613), + [anon_sym___stdcall] = ACTIONS(3613), + [anon_sym___fastcall] = ACTIONS(3613), + [anon_sym___thiscall] = ACTIONS(3613), + [anon_sym___vectorcall] = ACTIONS(3613), + [anon_sym_LBRACE] = ACTIONS(3615), + [anon_sym_signed] = ACTIONS(3613), + [anon_sym_unsigned] = ACTIONS(3613), + [anon_sym_long] = ACTIONS(3613), + [anon_sym_short] = ACTIONS(3613), + [anon_sym_LBRACK] = ACTIONS(3613), + [anon_sym_static] = ACTIONS(3613), + [anon_sym_register] = ACTIONS(3613), + [anon_sym_inline] = ACTIONS(3613), + [anon_sym___inline] = ACTIONS(3613), + [anon_sym___inline__] = ACTIONS(3613), + [anon_sym___forceinline] = ACTIONS(3613), + [anon_sym_thread_local] = ACTIONS(3613), + [anon_sym___thread] = ACTIONS(3613), + [anon_sym_const] = ACTIONS(3613), + [anon_sym_constexpr] = ACTIONS(3613), + [anon_sym_volatile] = ACTIONS(3613), + [anon_sym_restrict] = ACTIONS(3613), + [anon_sym___restrict__] = ACTIONS(3613), + [anon_sym__Atomic] = ACTIONS(3613), + [anon_sym__Noreturn] = ACTIONS(3613), + [anon_sym_noreturn] = ACTIONS(3613), + [anon_sym_mutable] = ACTIONS(3613), + [anon_sym_constinit] = ACTIONS(3613), + [anon_sym_consteval] = ACTIONS(3613), + [sym_primitive_type] = ACTIONS(3613), + [anon_sym_enum] = ACTIONS(3613), + [anon_sym_class] = ACTIONS(3613), + [anon_sym_struct] = ACTIONS(3613), + [anon_sym_union] = ACTIONS(3613), + [anon_sym_if] = ACTIONS(3613), + [anon_sym_switch] = ACTIONS(3613), + [anon_sym_case] = ACTIONS(3613), + [anon_sym_default] = ACTIONS(3613), + [anon_sym_while] = ACTIONS(3613), + [anon_sym_do] = ACTIONS(3613), + [anon_sym_for] = ACTIONS(3613), + [anon_sym_return] = ACTIONS(3613), + [anon_sym_break] = ACTIONS(3613), + [anon_sym_continue] = ACTIONS(3613), + [anon_sym_goto] = ACTIONS(3613), + [anon_sym___try] = ACTIONS(3613), + [anon_sym___leave] = ACTIONS(3613), + [anon_sym_not] = ACTIONS(3613), + [anon_sym_compl] = ACTIONS(3613), + [anon_sym_DASH_DASH] = ACTIONS(3615), + [anon_sym_PLUS_PLUS] = ACTIONS(3615), + [anon_sym_sizeof] = ACTIONS(3613), + [anon_sym___alignof__] = ACTIONS(3613), + [anon_sym___alignof] = ACTIONS(3613), + [anon_sym__alignof] = ACTIONS(3613), + [anon_sym_alignof] = ACTIONS(3613), + [anon_sym__Alignof] = ACTIONS(3613), + [anon_sym_offsetof] = ACTIONS(3613), + [anon_sym__Generic] = ACTIONS(3613), + [anon_sym_asm] = ACTIONS(3613), + [anon_sym___asm__] = ACTIONS(3613), + [sym_number_literal] = ACTIONS(3615), + [anon_sym_L_SQUOTE] = ACTIONS(3615), + [anon_sym_u_SQUOTE] = ACTIONS(3615), + [anon_sym_U_SQUOTE] = ACTIONS(3615), + [anon_sym_u8_SQUOTE] = ACTIONS(3615), + [anon_sym_SQUOTE] = ACTIONS(3615), + [anon_sym_L_DQUOTE] = ACTIONS(3615), + [anon_sym_u_DQUOTE] = ACTIONS(3615), + [anon_sym_U_DQUOTE] = ACTIONS(3615), + [anon_sym_u8_DQUOTE] = ACTIONS(3615), + [anon_sym_DQUOTE] = ACTIONS(3615), + [sym_true] = ACTIONS(3613), + [sym_false] = ACTIONS(3613), + [anon_sym_NULL] = ACTIONS(3613), + [anon_sym_nullptr] = ACTIONS(3613), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3613), + [anon_sym_decltype] = ACTIONS(3613), + [anon_sym_virtual] = ACTIONS(3613), + [anon_sym_alignas] = ACTIONS(3613), + [anon_sym_explicit] = ACTIONS(3613), + [anon_sym_typename] = ACTIONS(3613), + [anon_sym_template] = ACTIONS(3613), + [anon_sym_operator] = ACTIONS(3613), + [anon_sym_try] = ACTIONS(3613), + [anon_sym_delete] = ACTIONS(3613), + [anon_sym_throw] = ACTIONS(3613), + [anon_sym_namespace] = ACTIONS(3613), + [anon_sym_using] = ACTIONS(3613), + [anon_sym_static_assert] = ACTIONS(3613), + [anon_sym_concept] = ACTIONS(3613), + [anon_sym_co_return] = ACTIONS(3613), + [anon_sym_co_yield] = ACTIONS(3613), + [anon_sym_R_DQUOTE] = ACTIONS(3615), + [anon_sym_LR_DQUOTE] = ACTIONS(3615), + [anon_sym_uR_DQUOTE] = ACTIONS(3615), + [anon_sym_UR_DQUOTE] = ACTIONS(3615), + [anon_sym_u8R_DQUOTE] = ACTIONS(3615), + [anon_sym_co_await] = ACTIONS(3613), + [anon_sym_new] = ACTIONS(3613), + [anon_sym_requires] = ACTIONS(3613), + [sym_this] = ACTIONS(3613), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3615), + [sym_semgrep_named_ellipsis] = ACTIONS(3615), + }, + [496] = { + [sym_identifier] = ACTIONS(3577), + [aux_sym_preproc_include_token1] = ACTIONS(3577), + [aux_sym_preproc_def_token1] = ACTIONS(3577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3579), + [aux_sym_preproc_if_token1] = ACTIONS(3577), + [aux_sym_preproc_if_token2] = ACTIONS(3577), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3577), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3577), + [aux_sym_preproc_else_token1] = ACTIONS(3577), + [aux_sym_preproc_elif_token1] = ACTIONS(3577), + [sym_preproc_directive] = ACTIONS(3577), + [anon_sym_LPAREN2] = ACTIONS(3579), + [anon_sym_BANG] = ACTIONS(3579), + [anon_sym_TILDE] = ACTIONS(3579), + [anon_sym_DASH] = ACTIONS(3577), + [anon_sym_PLUS] = ACTIONS(3577), + [anon_sym_STAR] = ACTIONS(3579), + [anon_sym_AMP_AMP] = ACTIONS(3579), + [anon_sym_AMP] = ACTIONS(3577), + [anon_sym_SEMI] = ACTIONS(3579), + [anon_sym___extension__] = ACTIONS(3577), + [anon_sym_typedef] = ACTIONS(3577), + [anon_sym_extern] = ACTIONS(3577), + [anon_sym___attribute__] = ACTIONS(3577), + [anon_sym_COLON_COLON] = ACTIONS(3579), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3579), + [anon_sym___declspec] = ACTIONS(3577), + [anon_sym___based] = ACTIONS(3577), + [anon_sym___cdecl] = ACTIONS(3577), + [anon_sym___clrcall] = ACTIONS(3577), + [anon_sym___stdcall] = ACTIONS(3577), + [anon_sym___fastcall] = ACTIONS(3577), + [anon_sym___thiscall] = ACTIONS(3577), + [anon_sym___vectorcall] = ACTIONS(3577), + [anon_sym_LBRACE] = ACTIONS(3579), + [anon_sym_signed] = ACTIONS(3577), + [anon_sym_unsigned] = ACTIONS(3577), + [anon_sym_long] = ACTIONS(3577), + [anon_sym_short] = ACTIONS(3577), + [anon_sym_LBRACK] = ACTIONS(3577), + [anon_sym_static] = ACTIONS(3577), + [anon_sym_register] = ACTIONS(3577), + [anon_sym_inline] = ACTIONS(3577), + [anon_sym___inline] = ACTIONS(3577), + [anon_sym___inline__] = ACTIONS(3577), + [anon_sym___forceinline] = ACTIONS(3577), + [anon_sym_thread_local] = ACTIONS(3577), + [anon_sym___thread] = ACTIONS(3577), + [anon_sym_const] = ACTIONS(3577), + [anon_sym_constexpr] = ACTIONS(3577), + [anon_sym_volatile] = ACTIONS(3577), + [anon_sym_restrict] = ACTIONS(3577), + [anon_sym___restrict__] = ACTIONS(3577), + [anon_sym__Atomic] = ACTIONS(3577), + [anon_sym__Noreturn] = ACTIONS(3577), + [anon_sym_noreturn] = ACTIONS(3577), + [anon_sym_mutable] = ACTIONS(3577), + [anon_sym_constinit] = ACTIONS(3577), + [anon_sym_consteval] = ACTIONS(3577), + [sym_primitive_type] = ACTIONS(3577), + [anon_sym_enum] = ACTIONS(3577), + [anon_sym_class] = ACTIONS(3577), + [anon_sym_struct] = ACTIONS(3577), + [anon_sym_union] = ACTIONS(3577), + [anon_sym_if] = ACTIONS(3577), + [anon_sym_switch] = ACTIONS(3577), + [anon_sym_case] = ACTIONS(3577), + [anon_sym_default] = ACTIONS(3577), + [anon_sym_while] = ACTIONS(3577), + [anon_sym_do] = ACTIONS(3577), + [anon_sym_for] = ACTIONS(3577), + [anon_sym_return] = ACTIONS(3577), + [anon_sym_break] = ACTIONS(3577), + [anon_sym_continue] = ACTIONS(3577), + [anon_sym_goto] = ACTIONS(3577), + [anon_sym___try] = ACTIONS(3577), + [anon_sym___leave] = ACTIONS(3577), + [anon_sym_not] = ACTIONS(3577), + [anon_sym_compl] = ACTIONS(3577), + [anon_sym_DASH_DASH] = ACTIONS(3579), + [anon_sym_PLUS_PLUS] = ACTIONS(3579), + [anon_sym_sizeof] = ACTIONS(3577), + [anon_sym___alignof__] = ACTIONS(3577), + [anon_sym___alignof] = ACTIONS(3577), + [anon_sym__alignof] = ACTIONS(3577), + [anon_sym_alignof] = ACTIONS(3577), + [anon_sym__Alignof] = ACTIONS(3577), + [anon_sym_offsetof] = ACTIONS(3577), + [anon_sym__Generic] = ACTIONS(3577), + [anon_sym_asm] = ACTIONS(3577), + [anon_sym___asm__] = ACTIONS(3577), + [sym_number_literal] = ACTIONS(3579), + [anon_sym_L_SQUOTE] = ACTIONS(3579), + [anon_sym_u_SQUOTE] = ACTIONS(3579), + [anon_sym_U_SQUOTE] = ACTIONS(3579), + [anon_sym_u8_SQUOTE] = ACTIONS(3579), + [anon_sym_SQUOTE] = ACTIONS(3579), + [anon_sym_L_DQUOTE] = ACTIONS(3579), + [anon_sym_u_DQUOTE] = ACTIONS(3579), + [anon_sym_U_DQUOTE] = ACTIONS(3579), + [anon_sym_u8_DQUOTE] = ACTIONS(3579), + [anon_sym_DQUOTE] = ACTIONS(3579), + [sym_true] = ACTIONS(3577), + [sym_false] = ACTIONS(3577), + [anon_sym_NULL] = ACTIONS(3577), + [anon_sym_nullptr] = ACTIONS(3577), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3577), + [anon_sym_decltype] = ACTIONS(3577), + [anon_sym_virtual] = ACTIONS(3577), + [anon_sym_alignas] = ACTIONS(3577), + [anon_sym_explicit] = ACTIONS(3577), + [anon_sym_typename] = ACTIONS(3577), + [anon_sym_template] = ACTIONS(3577), + [anon_sym_operator] = ACTIONS(3577), + [anon_sym_try] = ACTIONS(3577), + [anon_sym_delete] = ACTIONS(3577), + [anon_sym_throw] = ACTIONS(3577), + [anon_sym_namespace] = ACTIONS(3577), + [anon_sym_using] = ACTIONS(3577), + [anon_sym_static_assert] = ACTIONS(3577), + [anon_sym_concept] = ACTIONS(3577), + [anon_sym_co_return] = ACTIONS(3577), + [anon_sym_co_yield] = ACTIONS(3577), + [anon_sym_R_DQUOTE] = ACTIONS(3579), + [anon_sym_LR_DQUOTE] = ACTIONS(3579), + [anon_sym_uR_DQUOTE] = ACTIONS(3579), + [anon_sym_UR_DQUOTE] = ACTIONS(3579), + [anon_sym_u8R_DQUOTE] = ACTIONS(3579), + [anon_sym_co_await] = ACTIONS(3577), + [anon_sym_new] = ACTIONS(3577), + [anon_sym_requires] = ACTIONS(3577), + [sym_this] = ACTIONS(3577), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3579), + [sym_semgrep_named_ellipsis] = ACTIONS(3579), + }, + [497] = { + [sym_identifier] = ACTIONS(3587), + [aux_sym_preproc_include_token1] = ACTIONS(3587), + [aux_sym_preproc_def_token1] = ACTIONS(3587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3589), + [aux_sym_preproc_if_token1] = ACTIONS(3587), + [aux_sym_preproc_if_token2] = ACTIONS(3587), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3587), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3587), + [aux_sym_preproc_else_token1] = ACTIONS(3587), + [aux_sym_preproc_elif_token1] = ACTIONS(3587), + [sym_preproc_directive] = ACTIONS(3587), + [anon_sym_LPAREN2] = ACTIONS(3589), + [anon_sym_BANG] = ACTIONS(3589), + [anon_sym_TILDE] = ACTIONS(3589), + [anon_sym_DASH] = ACTIONS(3587), + [anon_sym_PLUS] = ACTIONS(3587), + [anon_sym_STAR] = ACTIONS(3589), + [anon_sym_AMP_AMP] = ACTIONS(3589), + [anon_sym_AMP] = ACTIONS(3587), + [anon_sym_SEMI] = ACTIONS(3589), + [anon_sym___extension__] = ACTIONS(3587), + [anon_sym_typedef] = ACTIONS(3587), + [anon_sym_extern] = ACTIONS(3587), + [anon_sym___attribute__] = ACTIONS(3587), + [anon_sym_COLON_COLON] = ACTIONS(3589), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3589), + [anon_sym___declspec] = ACTIONS(3587), + [anon_sym___based] = ACTIONS(3587), + [anon_sym___cdecl] = ACTIONS(3587), + [anon_sym___clrcall] = ACTIONS(3587), + [anon_sym___stdcall] = ACTIONS(3587), + [anon_sym___fastcall] = ACTIONS(3587), + [anon_sym___thiscall] = ACTIONS(3587), + [anon_sym___vectorcall] = ACTIONS(3587), + [anon_sym_LBRACE] = ACTIONS(3589), + [anon_sym_signed] = ACTIONS(3587), + [anon_sym_unsigned] = ACTIONS(3587), + [anon_sym_long] = ACTIONS(3587), + [anon_sym_short] = ACTIONS(3587), + [anon_sym_LBRACK] = ACTIONS(3587), + [anon_sym_static] = ACTIONS(3587), + [anon_sym_register] = ACTIONS(3587), + [anon_sym_inline] = ACTIONS(3587), + [anon_sym___inline] = ACTIONS(3587), + [anon_sym___inline__] = ACTIONS(3587), + [anon_sym___forceinline] = ACTIONS(3587), + [anon_sym_thread_local] = ACTIONS(3587), + [anon_sym___thread] = ACTIONS(3587), + [anon_sym_const] = ACTIONS(3587), + [anon_sym_constexpr] = ACTIONS(3587), + [anon_sym_volatile] = ACTIONS(3587), + [anon_sym_restrict] = ACTIONS(3587), + [anon_sym___restrict__] = ACTIONS(3587), + [anon_sym__Atomic] = ACTIONS(3587), + [anon_sym__Noreturn] = ACTIONS(3587), + [anon_sym_noreturn] = ACTIONS(3587), + [anon_sym_mutable] = ACTIONS(3587), + [anon_sym_constinit] = ACTIONS(3587), + [anon_sym_consteval] = ACTIONS(3587), + [sym_primitive_type] = ACTIONS(3587), + [anon_sym_enum] = ACTIONS(3587), + [anon_sym_class] = ACTIONS(3587), + [anon_sym_struct] = ACTIONS(3587), + [anon_sym_union] = ACTIONS(3587), + [anon_sym_if] = ACTIONS(3587), + [anon_sym_switch] = ACTIONS(3587), + [anon_sym_case] = ACTIONS(3587), + [anon_sym_default] = ACTIONS(3587), + [anon_sym_while] = ACTIONS(3587), + [anon_sym_do] = ACTIONS(3587), + [anon_sym_for] = ACTIONS(3587), + [anon_sym_return] = ACTIONS(3587), + [anon_sym_break] = ACTIONS(3587), + [anon_sym_continue] = ACTIONS(3587), + [anon_sym_goto] = ACTIONS(3587), + [anon_sym___try] = ACTIONS(3587), + [anon_sym___leave] = ACTIONS(3587), + [anon_sym_not] = ACTIONS(3587), + [anon_sym_compl] = ACTIONS(3587), + [anon_sym_DASH_DASH] = ACTIONS(3589), + [anon_sym_PLUS_PLUS] = ACTIONS(3589), + [anon_sym_sizeof] = ACTIONS(3587), + [anon_sym___alignof__] = ACTIONS(3587), + [anon_sym___alignof] = ACTIONS(3587), + [anon_sym__alignof] = ACTIONS(3587), + [anon_sym_alignof] = ACTIONS(3587), + [anon_sym__Alignof] = ACTIONS(3587), + [anon_sym_offsetof] = ACTIONS(3587), + [anon_sym__Generic] = ACTIONS(3587), + [anon_sym_asm] = ACTIONS(3587), + [anon_sym___asm__] = ACTIONS(3587), + [sym_number_literal] = ACTIONS(3589), + [anon_sym_L_SQUOTE] = ACTIONS(3589), + [anon_sym_u_SQUOTE] = ACTIONS(3589), + [anon_sym_U_SQUOTE] = ACTIONS(3589), + [anon_sym_u8_SQUOTE] = ACTIONS(3589), + [anon_sym_SQUOTE] = ACTIONS(3589), + [anon_sym_L_DQUOTE] = ACTIONS(3589), + [anon_sym_u_DQUOTE] = ACTIONS(3589), + [anon_sym_U_DQUOTE] = ACTIONS(3589), + [anon_sym_u8_DQUOTE] = ACTIONS(3589), + [anon_sym_DQUOTE] = ACTIONS(3589), + [sym_true] = ACTIONS(3587), + [sym_false] = ACTIONS(3587), + [anon_sym_NULL] = ACTIONS(3587), + [anon_sym_nullptr] = ACTIONS(3587), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3587), + [anon_sym_decltype] = ACTIONS(3587), + [anon_sym_virtual] = ACTIONS(3587), + [anon_sym_alignas] = ACTIONS(3587), + [anon_sym_explicit] = ACTIONS(3587), + [anon_sym_typename] = ACTIONS(3587), + [anon_sym_template] = ACTIONS(3587), + [anon_sym_operator] = ACTIONS(3587), + [anon_sym_try] = ACTIONS(3587), + [anon_sym_delete] = ACTIONS(3587), + [anon_sym_throw] = ACTIONS(3587), + [anon_sym_namespace] = ACTIONS(3587), + [anon_sym_using] = ACTIONS(3587), + [anon_sym_static_assert] = ACTIONS(3587), + [anon_sym_concept] = ACTIONS(3587), + [anon_sym_co_return] = ACTIONS(3587), + [anon_sym_co_yield] = ACTIONS(3587), + [anon_sym_R_DQUOTE] = ACTIONS(3589), + [anon_sym_LR_DQUOTE] = ACTIONS(3589), + [anon_sym_uR_DQUOTE] = ACTIONS(3589), + [anon_sym_UR_DQUOTE] = ACTIONS(3589), + [anon_sym_u8R_DQUOTE] = ACTIONS(3589), + [anon_sym_co_await] = ACTIONS(3587), + [anon_sym_new] = ACTIONS(3587), + [anon_sym_requires] = ACTIONS(3587), + [sym_this] = ACTIONS(3587), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3589), + [sym_semgrep_named_ellipsis] = ACTIONS(3589), + }, + [498] = { + [sym_identifier] = ACTIONS(3593), + [aux_sym_preproc_include_token1] = ACTIONS(3593), + [aux_sym_preproc_def_token1] = ACTIONS(3593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3595), + [aux_sym_preproc_if_token1] = ACTIONS(3593), + [aux_sym_preproc_if_token2] = ACTIONS(3593), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3593), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3593), + [aux_sym_preproc_else_token1] = ACTIONS(3593), + [aux_sym_preproc_elif_token1] = ACTIONS(3593), + [sym_preproc_directive] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(3595), + [anon_sym_DASH] = ACTIONS(3593), + [anon_sym_PLUS] = ACTIONS(3593), + [anon_sym_STAR] = ACTIONS(3595), + [anon_sym_AMP_AMP] = ACTIONS(3595), + [anon_sym_AMP] = ACTIONS(3593), + [anon_sym_SEMI] = ACTIONS(3595), + [anon_sym___extension__] = ACTIONS(3593), + [anon_sym_typedef] = ACTIONS(3593), + [anon_sym_extern] = ACTIONS(3593), + [anon_sym___attribute__] = ACTIONS(3593), + [anon_sym_COLON_COLON] = ACTIONS(3595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3595), + [anon_sym___declspec] = ACTIONS(3593), + [anon_sym___based] = ACTIONS(3593), + [anon_sym___cdecl] = ACTIONS(3593), + [anon_sym___clrcall] = ACTIONS(3593), + [anon_sym___stdcall] = ACTIONS(3593), + [anon_sym___fastcall] = ACTIONS(3593), + [anon_sym___thiscall] = ACTIONS(3593), + [anon_sym___vectorcall] = ACTIONS(3593), + [anon_sym_LBRACE] = ACTIONS(3595), + [anon_sym_signed] = ACTIONS(3593), + [anon_sym_unsigned] = ACTIONS(3593), + [anon_sym_long] = ACTIONS(3593), + [anon_sym_short] = ACTIONS(3593), + [anon_sym_LBRACK] = ACTIONS(3593), + [anon_sym_static] = ACTIONS(3593), + [anon_sym_register] = ACTIONS(3593), + [anon_sym_inline] = ACTIONS(3593), + [anon_sym___inline] = ACTIONS(3593), + [anon_sym___inline__] = ACTIONS(3593), + [anon_sym___forceinline] = ACTIONS(3593), + [anon_sym_thread_local] = ACTIONS(3593), + [anon_sym___thread] = ACTIONS(3593), + [anon_sym_const] = ACTIONS(3593), + [anon_sym_constexpr] = ACTIONS(3593), + [anon_sym_volatile] = ACTIONS(3593), + [anon_sym_restrict] = ACTIONS(3593), + [anon_sym___restrict__] = ACTIONS(3593), + [anon_sym__Atomic] = ACTIONS(3593), + [anon_sym__Noreturn] = ACTIONS(3593), + [anon_sym_noreturn] = ACTIONS(3593), + [anon_sym_mutable] = ACTIONS(3593), + [anon_sym_constinit] = ACTIONS(3593), + [anon_sym_consteval] = ACTIONS(3593), + [sym_primitive_type] = ACTIONS(3593), + [anon_sym_enum] = ACTIONS(3593), + [anon_sym_class] = ACTIONS(3593), + [anon_sym_struct] = ACTIONS(3593), + [anon_sym_union] = ACTIONS(3593), + [anon_sym_if] = ACTIONS(3593), + [anon_sym_switch] = ACTIONS(3593), + [anon_sym_case] = ACTIONS(3593), + [anon_sym_default] = ACTIONS(3593), + [anon_sym_while] = ACTIONS(3593), + [anon_sym_do] = ACTIONS(3593), + [anon_sym_for] = ACTIONS(3593), + [anon_sym_return] = ACTIONS(3593), + [anon_sym_break] = ACTIONS(3593), + [anon_sym_continue] = ACTIONS(3593), + [anon_sym_goto] = ACTIONS(3593), + [anon_sym___try] = ACTIONS(3593), + [anon_sym___leave] = ACTIONS(3593), + [anon_sym_not] = ACTIONS(3593), + [anon_sym_compl] = ACTIONS(3593), + [anon_sym_DASH_DASH] = ACTIONS(3595), + [anon_sym_PLUS_PLUS] = ACTIONS(3595), + [anon_sym_sizeof] = ACTIONS(3593), + [anon_sym___alignof__] = ACTIONS(3593), + [anon_sym___alignof] = ACTIONS(3593), + [anon_sym__alignof] = ACTIONS(3593), + [anon_sym_alignof] = ACTIONS(3593), + [anon_sym__Alignof] = ACTIONS(3593), + [anon_sym_offsetof] = ACTIONS(3593), + [anon_sym__Generic] = ACTIONS(3593), + [anon_sym_asm] = ACTIONS(3593), + [anon_sym___asm__] = ACTIONS(3593), + [sym_number_literal] = ACTIONS(3595), + [anon_sym_L_SQUOTE] = ACTIONS(3595), + [anon_sym_u_SQUOTE] = ACTIONS(3595), + [anon_sym_U_SQUOTE] = ACTIONS(3595), + [anon_sym_u8_SQUOTE] = ACTIONS(3595), + [anon_sym_SQUOTE] = ACTIONS(3595), + [anon_sym_L_DQUOTE] = ACTIONS(3595), + [anon_sym_u_DQUOTE] = ACTIONS(3595), + [anon_sym_U_DQUOTE] = ACTIONS(3595), + [anon_sym_u8_DQUOTE] = ACTIONS(3595), + [anon_sym_DQUOTE] = ACTIONS(3595), + [sym_true] = ACTIONS(3593), + [sym_false] = ACTIONS(3593), + [anon_sym_NULL] = ACTIONS(3593), + [anon_sym_nullptr] = ACTIONS(3593), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3593), + [anon_sym_decltype] = ACTIONS(3593), + [anon_sym_virtual] = ACTIONS(3593), + [anon_sym_alignas] = ACTIONS(3593), + [anon_sym_explicit] = ACTIONS(3593), + [anon_sym_typename] = ACTIONS(3593), + [anon_sym_template] = ACTIONS(3593), + [anon_sym_operator] = ACTIONS(3593), + [anon_sym_try] = ACTIONS(3593), + [anon_sym_delete] = ACTIONS(3593), + [anon_sym_throw] = ACTIONS(3593), + [anon_sym_namespace] = ACTIONS(3593), + [anon_sym_using] = ACTIONS(3593), + [anon_sym_static_assert] = ACTIONS(3593), + [anon_sym_concept] = ACTIONS(3593), + [anon_sym_co_return] = ACTIONS(3593), + [anon_sym_co_yield] = ACTIONS(3593), + [anon_sym_R_DQUOTE] = ACTIONS(3595), + [anon_sym_LR_DQUOTE] = ACTIONS(3595), + [anon_sym_uR_DQUOTE] = ACTIONS(3595), + [anon_sym_UR_DQUOTE] = ACTIONS(3595), + [anon_sym_u8R_DQUOTE] = ACTIONS(3595), + [anon_sym_co_await] = ACTIONS(3593), + [anon_sym_new] = ACTIONS(3593), + [anon_sym_requires] = ACTIONS(3593), + [sym_this] = ACTIONS(3593), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3595), + [sym_semgrep_named_ellipsis] = ACTIONS(3595), + }, + [499] = { + [sym_identifier] = ACTIONS(3631), + [aux_sym_preproc_include_token1] = ACTIONS(3631), + [aux_sym_preproc_def_token1] = ACTIONS(3631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3633), + [aux_sym_preproc_if_token1] = ACTIONS(3631), + [aux_sym_preproc_if_token2] = ACTIONS(3631), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3631), + [aux_sym_preproc_else_token1] = ACTIONS(3631), + [aux_sym_preproc_elif_token1] = ACTIONS(3631), + [sym_preproc_directive] = ACTIONS(3631), + [anon_sym_LPAREN2] = ACTIONS(3633), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(3633), + [anon_sym_AMP_AMP] = ACTIONS(3633), + [anon_sym_AMP] = ACTIONS(3631), + [anon_sym_SEMI] = ACTIONS(3633), + [anon_sym___extension__] = ACTIONS(3631), + [anon_sym_typedef] = ACTIONS(3631), + [anon_sym_extern] = ACTIONS(3631), + [anon_sym___attribute__] = ACTIONS(3631), + [anon_sym_COLON_COLON] = ACTIONS(3633), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3633), + [anon_sym___declspec] = ACTIONS(3631), + [anon_sym___based] = ACTIONS(3631), + [anon_sym___cdecl] = ACTIONS(3631), + [anon_sym___clrcall] = ACTIONS(3631), + [anon_sym___stdcall] = ACTIONS(3631), + [anon_sym___fastcall] = ACTIONS(3631), + [anon_sym___thiscall] = ACTIONS(3631), + [anon_sym___vectorcall] = ACTIONS(3631), + [anon_sym_LBRACE] = ACTIONS(3633), + [anon_sym_signed] = ACTIONS(3631), + [anon_sym_unsigned] = ACTIONS(3631), + [anon_sym_long] = ACTIONS(3631), + [anon_sym_short] = ACTIONS(3631), + [anon_sym_LBRACK] = ACTIONS(3631), + [anon_sym_static] = ACTIONS(3631), + [anon_sym_register] = ACTIONS(3631), + [anon_sym_inline] = ACTIONS(3631), + [anon_sym___inline] = ACTIONS(3631), + [anon_sym___inline__] = ACTIONS(3631), + [anon_sym___forceinline] = ACTIONS(3631), + [anon_sym_thread_local] = ACTIONS(3631), + [anon_sym___thread] = ACTIONS(3631), + [anon_sym_const] = ACTIONS(3631), + [anon_sym_constexpr] = ACTIONS(3631), + [anon_sym_volatile] = ACTIONS(3631), + [anon_sym_restrict] = ACTIONS(3631), + [anon_sym___restrict__] = ACTIONS(3631), + [anon_sym__Atomic] = ACTIONS(3631), + [anon_sym__Noreturn] = ACTIONS(3631), + [anon_sym_noreturn] = ACTIONS(3631), + [anon_sym_mutable] = ACTIONS(3631), + [anon_sym_constinit] = ACTIONS(3631), + [anon_sym_consteval] = ACTIONS(3631), + [sym_primitive_type] = ACTIONS(3631), + [anon_sym_enum] = ACTIONS(3631), + [anon_sym_class] = ACTIONS(3631), + [anon_sym_struct] = ACTIONS(3631), + [anon_sym_union] = ACTIONS(3631), + [anon_sym_if] = ACTIONS(3631), + [anon_sym_switch] = ACTIONS(3631), + [anon_sym_case] = ACTIONS(3631), + [anon_sym_default] = ACTIONS(3631), + [anon_sym_while] = ACTIONS(3631), + [anon_sym_do] = ACTIONS(3631), + [anon_sym_for] = ACTIONS(3631), + [anon_sym_return] = ACTIONS(3631), + [anon_sym_break] = ACTIONS(3631), + [anon_sym_continue] = ACTIONS(3631), + [anon_sym_goto] = ACTIONS(3631), + [anon_sym___try] = ACTIONS(3631), + [anon_sym___leave] = ACTIONS(3631), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3633), + [anon_sym_PLUS_PLUS] = ACTIONS(3633), + [anon_sym_sizeof] = ACTIONS(3631), + [anon_sym___alignof__] = ACTIONS(3631), + [anon_sym___alignof] = ACTIONS(3631), + [anon_sym__alignof] = ACTIONS(3631), + [anon_sym_alignof] = ACTIONS(3631), + [anon_sym__Alignof] = ACTIONS(3631), + [anon_sym_offsetof] = ACTIONS(3631), + [anon_sym__Generic] = ACTIONS(3631), + [anon_sym_asm] = ACTIONS(3631), + [anon_sym___asm__] = ACTIONS(3631), + [sym_number_literal] = ACTIONS(3633), + [anon_sym_L_SQUOTE] = ACTIONS(3633), + [anon_sym_u_SQUOTE] = ACTIONS(3633), + [anon_sym_U_SQUOTE] = ACTIONS(3633), + [anon_sym_u8_SQUOTE] = ACTIONS(3633), + [anon_sym_SQUOTE] = ACTIONS(3633), + [anon_sym_L_DQUOTE] = ACTIONS(3633), + [anon_sym_u_DQUOTE] = ACTIONS(3633), + [anon_sym_U_DQUOTE] = ACTIONS(3633), + [anon_sym_u8_DQUOTE] = ACTIONS(3633), + [anon_sym_DQUOTE] = ACTIONS(3633), + [sym_true] = ACTIONS(3631), + [sym_false] = ACTIONS(3631), + [anon_sym_NULL] = ACTIONS(3631), + [anon_sym_nullptr] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3631), + [anon_sym_decltype] = ACTIONS(3631), + [anon_sym_virtual] = ACTIONS(3631), + [anon_sym_alignas] = ACTIONS(3631), + [anon_sym_explicit] = ACTIONS(3631), + [anon_sym_typename] = ACTIONS(3631), + [anon_sym_template] = ACTIONS(3631), + [anon_sym_operator] = ACTIONS(3631), + [anon_sym_try] = ACTIONS(3631), + [anon_sym_delete] = ACTIONS(3631), + [anon_sym_throw] = ACTIONS(3631), + [anon_sym_namespace] = ACTIONS(3631), + [anon_sym_using] = ACTIONS(3631), + [anon_sym_static_assert] = ACTIONS(3631), + [anon_sym_concept] = ACTIONS(3631), + [anon_sym_co_return] = ACTIONS(3631), + [anon_sym_co_yield] = ACTIONS(3631), + [anon_sym_R_DQUOTE] = ACTIONS(3633), + [anon_sym_LR_DQUOTE] = ACTIONS(3633), + [anon_sym_uR_DQUOTE] = ACTIONS(3633), + [anon_sym_UR_DQUOTE] = ACTIONS(3633), + [anon_sym_u8R_DQUOTE] = ACTIONS(3633), + [anon_sym_co_await] = ACTIONS(3631), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(3631), + [sym_this] = ACTIONS(3631), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3633), + [sym_semgrep_named_ellipsis] = ACTIONS(3633), + }, + [500] = { + [sym_identifier] = ACTIONS(3657), + [aux_sym_preproc_include_token1] = ACTIONS(3657), + [aux_sym_preproc_def_token1] = ACTIONS(3657), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3659), + [aux_sym_preproc_if_token1] = ACTIONS(3657), + [aux_sym_preproc_if_token2] = ACTIONS(3657), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3657), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3657), + [aux_sym_preproc_else_token1] = ACTIONS(3657), + [aux_sym_preproc_elif_token1] = ACTIONS(3657), + [sym_preproc_directive] = ACTIONS(3657), + [anon_sym_LPAREN2] = ACTIONS(3659), + [anon_sym_BANG] = ACTIONS(3659), + [anon_sym_TILDE] = ACTIONS(3659), + [anon_sym_DASH] = ACTIONS(3657), + [anon_sym_PLUS] = ACTIONS(3657), + [anon_sym_STAR] = ACTIONS(3659), + [anon_sym_AMP_AMP] = ACTIONS(3659), + [anon_sym_AMP] = ACTIONS(3657), + [anon_sym_SEMI] = ACTIONS(3659), + [anon_sym___extension__] = ACTIONS(3657), + [anon_sym_typedef] = ACTIONS(3657), + [anon_sym_extern] = ACTIONS(3657), + [anon_sym___attribute__] = ACTIONS(3657), + [anon_sym_COLON_COLON] = ACTIONS(3659), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3659), + [anon_sym___declspec] = ACTIONS(3657), + [anon_sym___based] = ACTIONS(3657), + [anon_sym___cdecl] = ACTIONS(3657), + [anon_sym___clrcall] = ACTIONS(3657), + [anon_sym___stdcall] = ACTIONS(3657), + [anon_sym___fastcall] = ACTIONS(3657), + [anon_sym___thiscall] = ACTIONS(3657), + [anon_sym___vectorcall] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3659), + [anon_sym_signed] = ACTIONS(3657), + [anon_sym_unsigned] = ACTIONS(3657), + [anon_sym_long] = ACTIONS(3657), + [anon_sym_short] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_static] = ACTIONS(3657), + [anon_sym_register] = ACTIONS(3657), + [anon_sym_inline] = ACTIONS(3657), + [anon_sym___inline] = ACTIONS(3657), + [anon_sym___inline__] = ACTIONS(3657), + [anon_sym___forceinline] = ACTIONS(3657), + [anon_sym_thread_local] = ACTIONS(3657), + [anon_sym___thread] = ACTIONS(3657), + [anon_sym_const] = ACTIONS(3657), + [anon_sym_constexpr] = ACTIONS(3657), + [anon_sym_volatile] = ACTIONS(3657), + [anon_sym_restrict] = ACTIONS(3657), + [anon_sym___restrict__] = ACTIONS(3657), + [anon_sym__Atomic] = ACTIONS(3657), + [anon_sym__Noreturn] = ACTIONS(3657), + [anon_sym_noreturn] = ACTIONS(3657), + [anon_sym_mutable] = ACTIONS(3657), + [anon_sym_constinit] = ACTIONS(3657), + [anon_sym_consteval] = ACTIONS(3657), + [sym_primitive_type] = ACTIONS(3657), + [anon_sym_enum] = ACTIONS(3657), + [anon_sym_class] = ACTIONS(3657), + [anon_sym_struct] = ACTIONS(3657), + [anon_sym_union] = ACTIONS(3657), + [anon_sym_if] = ACTIONS(3657), + [anon_sym_switch] = ACTIONS(3657), + [anon_sym_case] = ACTIONS(3657), + [anon_sym_default] = ACTIONS(3657), + [anon_sym_while] = ACTIONS(3657), + [anon_sym_do] = ACTIONS(3657), + [anon_sym_for] = ACTIONS(3657), + [anon_sym_return] = ACTIONS(3657), + [anon_sym_break] = ACTIONS(3657), + [anon_sym_continue] = ACTIONS(3657), + [anon_sym_goto] = ACTIONS(3657), + [anon_sym___try] = ACTIONS(3657), + [anon_sym___leave] = ACTIONS(3657), + [anon_sym_not] = ACTIONS(3657), + [anon_sym_compl] = ACTIONS(3657), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3657), + [anon_sym___alignof__] = ACTIONS(3657), + [anon_sym___alignof] = ACTIONS(3657), + [anon_sym__alignof] = ACTIONS(3657), + [anon_sym_alignof] = ACTIONS(3657), + [anon_sym__Alignof] = ACTIONS(3657), + [anon_sym_offsetof] = ACTIONS(3657), + [anon_sym__Generic] = ACTIONS(3657), + [anon_sym_asm] = ACTIONS(3657), + [anon_sym___asm__] = ACTIONS(3657), + [sym_number_literal] = ACTIONS(3659), + [anon_sym_L_SQUOTE] = ACTIONS(3659), + [anon_sym_u_SQUOTE] = ACTIONS(3659), + [anon_sym_U_SQUOTE] = ACTIONS(3659), + [anon_sym_u8_SQUOTE] = ACTIONS(3659), + [anon_sym_SQUOTE] = ACTIONS(3659), + [anon_sym_L_DQUOTE] = ACTIONS(3659), + [anon_sym_u_DQUOTE] = ACTIONS(3659), + [anon_sym_U_DQUOTE] = ACTIONS(3659), + [anon_sym_u8_DQUOTE] = ACTIONS(3659), + [anon_sym_DQUOTE] = ACTIONS(3659), + [sym_true] = ACTIONS(3657), + [sym_false] = ACTIONS(3657), + [anon_sym_NULL] = ACTIONS(3657), + [anon_sym_nullptr] = ACTIONS(3657), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3657), + [anon_sym_decltype] = ACTIONS(3657), + [anon_sym_virtual] = ACTIONS(3657), + [anon_sym_alignas] = ACTIONS(3657), + [anon_sym_explicit] = ACTIONS(3657), + [anon_sym_typename] = ACTIONS(3657), + [anon_sym_template] = ACTIONS(3657), + [anon_sym_operator] = ACTIONS(3657), + [anon_sym_try] = ACTIONS(3657), + [anon_sym_delete] = ACTIONS(3657), + [anon_sym_throw] = ACTIONS(3657), + [anon_sym_namespace] = ACTIONS(3657), + [anon_sym_using] = ACTIONS(3657), + [anon_sym_static_assert] = ACTIONS(3657), + [anon_sym_concept] = ACTIONS(3657), + [anon_sym_co_return] = ACTIONS(3657), + [anon_sym_co_yield] = ACTIONS(3657), + [anon_sym_R_DQUOTE] = ACTIONS(3659), + [anon_sym_LR_DQUOTE] = ACTIONS(3659), + [anon_sym_uR_DQUOTE] = ACTIONS(3659), + [anon_sym_UR_DQUOTE] = ACTIONS(3659), + [anon_sym_u8R_DQUOTE] = ACTIONS(3659), + [anon_sym_co_await] = ACTIONS(3657), + [anon_sym_new] = ACTIONS(3657), + [anon_sym_requires] = ACTIONS(3657), + [sym_this] = ACTIONS(3657), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3659), + [sym_semgrep_named_ellipsis] = ACTIONS(3659), + }, + [501] = { + [sym_else_clause] = STATE(641), + [sym_identifier] = ACTIONS(3064), + [aux_sym_preproc_include_token1] = ACTIONS(3064), + [aux_sym_preproc_def_token1] = ACTIONS(3064), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3066), + [aux_sym_preproc_if_token1] = ACTIONS(3064), + [aux_sym_preproc_if_token2] = ACTIONS(3064), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3064), + [sym_preproc_directive] = ACTIONS(3064), + [anon_sym_LPAREN2] = ACTIONS(3066), + [anon_sym_BANG] = ACTIONS(3066), + [anon_sym_TILDE] = ACTIONS(3066), + [anon_sym_DASH] = ACTIONS(3064), + [anon_sym_PLUS] = ACTIONS(3064), + [anon_sym_STAR] = ACTIONS(3066), + [anon_sym_AMP_AMP] = ACTIONS(3066), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_SEMI] = ACTIONS(3066), + [anon_sym___extension__] = ACTIONS(3064), + [anon_sym_typedef] = ACTIONS(3064), + [anon_sym_extern] = ACTIONS(3064), + [anon_sym___attribute__] = ACTIONS(3064), + [anon_sym_COLON_COLON] = ACTIONS(3066), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3066), + [anon_sym___declspec] = ACTIONS(3064), + [anon_sym___based] = ACTIONS(3064), + [anon_sym___cdecl] = ACTIONS(3064), + [anon_sym___clrcall] = ACTIONS(3064), + [anon_sym___stdcall] = ACTIONS(3064), + [anon_sym___fastcall] = ACTIONS(3064), + [anon_sym___thiscall] = ACTIONS(3064), + [anon_sym___vectorcall] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(3066), + [anon_sym_signed] = ACTIONS(3064), + [anon_sym_unsigned] = ACTIONS(3064), + [anon_sym_long] = ACTIONS(3064), + [anon_sym_short] = ACTIONS(3064), + [anon_sym_LBRACK] = ACTIONS(3064), + [anon_sym_static] = ACTIONS(3064), + [anon_sym_register] = ACTIONS(3064), + [anon_sym_inline] = ACTIONS(3064), + [anon_sym___inline] = ACTIONS(3064), + [anon_sym___inline__] = ACTIONS(3064), + [anon_sym___forceinline] = ACTIONS(3064), + [anon_sym_thread_local] = ACTIONS(3064), + [anon_sym___thread] = ACTIONS(3064), + [anon_sym_const] = ACTIONS(3064), + [anon_sym_constexpr] = ACTIONS(3064), + [anon_sym_volatile] = ACTIONS(3064), + [anon_sym_restrict] = ACTIONS(3064), + [anon_sym___restrict__] = ACTIONS(3064), + [anon_sym__Atomic] = ACTIONS(3064), + [anon_sym__Noreturn] = ACTIONS(3064), + [anon_sym_noreturn] = ACTIONS(3064), + [anon_sym_mutable] = ACTIONS(3064), + [anon_sym_constinit] = ACTIONS(3064), + [anon_sym_consteval] = ACTIONS(3064), + [sym_primitive_type] = ACTIONS(3064), + [anon_sym_enum] = ACTIONS(3064), + [anon_sym_class] = ACTIONS(3064), + [anon_sym_struct] = ACTIONS(3064), + [anon_sym_union] = ACTIONS(3064), + [anon_sym_if] = ACTIONS(3064), + [anon_sym_else] = ACTIONS(3708), + [anon_sym_switch] = ACTIONS(3064), + [anon_sym_case] = ACTIONS(3064), + [anon_sym_default] = ACTIONS(3064), + [anon_sym_while] = ACTIONS(3064), + [anon_sym_do] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(3064), + [anon_sym_return] = ACTIONS(3064), + [anon_sym_break] = ACTIONS(3064), + [anon_sym_continue] = ACTIONS(3064), + [anon_sym_goto] = ACTIONS(3064), + [anon_sym___try] = ACTIONS(3064), + [anon_sym___leave] = ACTIONS(3064), + [anon_sym_not] = ACTIONS(3064), + [anon_sym_compl] = ACTIONS(3064), + [anon_sym_DASH_DASH] = ACTIONS(3066), + [anon_sym_PLUS_PLUS] = ACTIONS(3066), + [anon_sym_sizeof] = ACTIONS(3064), + [anon_sym___alignof__] = ACTIONS(3064), + [anon_sym___alignof] = ACTIONS(3064), + [anon_sym__alignof] = ACTIONS(3064), + [anon_sym_alignof] = ACTIONS(3064), + [anon_sym__Alignof] = ACTIONS(3064), + [anon_sym_offsetof] = ACTIONS(3064), + [anon_sym__Generic] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3064), + [anon_sym___asm__] = ACTIONS(3064), + [sym_number_literal] = ACTIONS(3066), + [anon_sym_L_SQUOTE] = ACTIONS(3066), + [anon_sym_u_SQUOTE] = ACTIONS(3066), + [anon_sym_U_SQUOTE] = ACTIONS(3066), + [anon_sym_u8_SQUOTE] = ACTIONS(3066), + [anon_sym_SQUOTE] = ACTIONS(3066), + [anon_sym_L_DQUOTE] = ACTIONS(3066), + [anon_sym_u_DQUOTE] = ACTIONS(3066), + [anon_sym_U_DQUOTE] = ACTIONS(3066), + [anon_sym_u8_DQUOTE] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3066), + [sym_true] = ACTIONS(3064), + [sym_false] = ACTIONS(3064), + [anon_sym_NULL] = ACTIONS(3064), + [anon_sym_nullptr] = ACTIONS(3064), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3064), + [anon_sym_decltype] = ACTIONS(3064), + [anon_sym_virtual] = ACTIONS(3064), + [anon_sym_alignas] = ACTIONS(3064), + [anon_sym_explicit] = ACTIONS(3064), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_operator] = ACTIONS(3064), + [anon_sym_try] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3064), + [anon_sym_throw] = ACTIONS(3064), + [anon_sym_namespace] = ACTIONS(3064), + [anon_sym_using] = ACTIONS(3064), + [anon_sym_static_assert] = ACTIONS(3064), + [anon_sym_concept] = ACTIONS(3064), + [anon_sym_co_return] = ACTIONS(3064), + [anon_sym_co_yield] = ACTIONS(3064), + [anon_sym_R_DQUOTE] = ACTIONS(3066), + [anon_sym_LR_DQUOTE] = ACTIONS(3066), + [anon_sym_uR_DQUOTE] = ACTIONS(3066), + [anon_sym_UR_DQUOTE] = ACTIONS(3066), + [anon_sym_u8R_DQUOTE] = ACTIONS(3066), + [anon_sym_co_await] = ACTIONS(3064), + [anon_sym_new] = ACTIONS(3064), + [anon_sym_requires] = ACTIONS(3064), + [sym_this] = ACTIONS(3064), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3066), + [sym_semgrep_named_ellipsis] = ACTIONS(3066), + }, + [502] = { [sym_identifier] = ACTIONS(3392), [aux_sym_preproc_include_token1] = ACTIONS(3392), [aux_sym_preproc_def_token1] = ACTIONS(3392), @@ -135939,1141 +125286,867 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3394), [sym_semgrep_named_ellipsis] = ACTIONS(3394), }, - [509] = { - [sym_else_clause] = STATE(622), - [sym_identifier] = ACTIONS(3082), - [aux_sym_preproc_include_token1] = ACTIONS(3082), - [aux_sym_preproc_def_token1] = ACTIONS(3082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3084), - [aux_sym_preproc_if_token1] = ACTIONS(3082), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3082), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3082), - [sym_preproc_directive] = ACTIONS(3082), - [anon_sym_LPAREN2] = ACTIONS(3084), - [anon_sym_BANG] = ACTIONS(3084), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_AMP_AMP] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3084), - [anon_sym___extension__] = ACTIONS(3082), - [anon_sym_typedef] = ACTIONS(3082), - [anon_sym_extern] = ACTIONS(3082), - [anon_sym___attribute__] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(3084), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3084), - [anon_sym___declspec] = ACTIONS(3082), - [anon_sym___based] = ACTIONS(3082), - [anon_sym___cdecl] = ACTIONS(3082), - [anon_sym___clrcall] = ACTIONS(3082), - [anon_sym___stdcall] = ACTIONS(3082), - [anon_sym___fastcall] = ACTIONS(3082), - [anon_sym___thiscall] = ACTIONS(3082), - [anon_sym___vectorcall] = ACTIONS(3082), - [anon_sym_LBRACE] = ACTIONS(3084), - [anon_sym_RBRACE] = ACTIONS(3084), - [anon_sym_signed] = ACTIONS(3082), - [anon_sym_unsigned] = ACTIONS(3082), - [anon_sym_long] = ACTIONS(3082), - [anon_sym_short] = ACTIONS(3082), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_static] = ACTIONS(3082), - [anon_sym_register] = ACTIONS(3082), - [anon_sym_inline] = ACTIONS(3082), - [anon_sym___inline] = ACTIONS(3082), - [anon_sym___inline__] = ACTIONS(3082), - [anon_sym___forceinline] = ACTIONS(3082), - [anon_sym_thread_local] = ACTIONS(3082), - [anon_sym___thread] = ACTIONS(3082), - [anon_sym_const] = ACTIONS(3082), - [anon_sym_constexpr] = ACTIONS(3082), - [anon_sym_volatile] = ACTIONS(3082), - [anon_sym_restrict] = ACTIONS(3082), - [anon_sym___restrict__] = ACTIONS(3082), - [anon_sym__Atomic] = ACTIONS(3082), - [anon_sym__Noreturn] = ACTIONS(3082), - [anon_sym_noreturn] = ACTIONS(3082), - [anon_sym_mutable] = ACTIONS(3082), - [anon_sym_constinit] = ACTIONS(3082), - [anon_sym_consteval] = ACTIONS(3082), - [sym_primitive_type] = ACTIONS(3082), - [anon_sym_enum] = ACTIONS(3082), - [anon_sym_class] = ACTIONS(3082), - [anon_sym_struct] = ACTIONS(3082), - [anon_sym_union] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_else] = ACTIONS(3678), - [anon_sym_switch] = ACTIONS(3082), - [anon_sym_case] = ACTIONS(3082), - [anon_sym_default] = ACTIONS(3082), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_do] = ACTIONS(3082), - [anon_sym_for] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_break] = ACTIONS(3082), - [anon_sym_continue] = ACTIONS(3082), - [anon_sym_goto] = ACTIONS(3082), - [anon_sym___try] = ACTIONS(3082), - [anon_sym___leave] = ACTIONS(3082), - [anon_sym_not] = ACTIONS(3082), - [anon_sym_compl] = ACTIONS(3082), - [anon_sym_DASH_DASH] = ACTIONS(3084), - [anon_sym_PLUS_PLUS] = ACTIONS(3084), - [anon_sym_sizeof] = ACTIONS(3082), - [anon_sym___alignof__] = ACTIONS(3082), - [anon_sym___alignof] = ACTIONS(3082), - [anon_sym__alignof] = ACTIONS(3082), - [anon_sym_alignof] = ACTIONS(3082), - [anon_sym__Alignof] = ACTIONS(3082), - [anon_sym_offsetof] = ACTIONS(3082), - [anon_sym__Generic] = ACTIONS(3082), - [anon_sym_asm] = ACTIONS(3082), - [anon_sym___asm__] = ACTIONS(3082), - [sym_number_literal] = ACTIONS(3084), - [anon_sym_L_SQUOTE] = ACTIONS(3084), - [anon_sym_u_SQUOTE] = ACTIONS(3084), - [anon_sym_U_SQUOTE] = ACTIONS(3084), - [anon_sym_u8_SQUOTE] = ACTIONS(3084), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_L_DQUOTE] = ACTIONS(3084), - [anon_sym_u_DQUOTE] = ACTIONS(3084), - [anon_sym_U_DQUOTE] = ACTIONS(3084), - [anon_sym_u8_DQUOTE] = ACTIONS(3084), - [anon_sym_DQUOTE] = ACTIONS(3084), - [sym_true] = ACTIONS(3082), - [sym_false] = ACTIONS(3082), - [anon_sym_NULL] = ACTIONS(3082), - [anon_sym_nullptr] = ACTIONS(3082), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3082), - [anon_sym_decltype] = ACTIONS(3082), - [anon_sym_virtual] = ACTIONS(3082), - [anon_sym_alignas] = ACTIONS(3082), - [anon_sym_explicit] = ACTIONS(3082), - [anon_sym_typename] = ACTIONS(3082), - [anon_sym_template] = ACTIONS(3082), - [anon_sym_operator] = ACTIONS(3082), - [anon_sym_try] = ACTIONS(3082), - [anon_sym_delete] = ACTIONS(3082), - [anon_sym_throw] = ACTIONS(3082), - [anon_sym_namespace] = ACTIONS(3082), - [anon_sym_using] = ACTIONS(3082), - [anon_sym_static_assert] = ACTIONS(3082), - [anon_sym_concept] = ACTIONS(3082), - [anon_sym_co_return] = ACTIONS(3082), - [anon_sym_co_yield] = ACTIONS(3082), - [anon_sym_R_DQUOTE] = ACTIONS(3084), - [anon_sym_LR_DQUOTE] = ACTIONS(3084), - [anon_sym_uR_DQUOTE] = ACTIONS(3084), - [anon_sym_UR_DQUOTE] = ACTIONS(3084), - [anon_sym_u8R_DQUOTE] = ACTIONS(3084), - [anon_sym_co_await] = ACTIONS(3082), - [anon_sym_new] = ACTIONS(3082), - [anon_sym_requires] = ACTIONS(3082), - [sym_this] = ACTIONS(3082), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3084), - [sym_semgrep_named_ellipsis] = ACTIONS(3084), - }, - [510] = { - [sym_identifier] = ACTIONS(3350), - [aux_sym_preproc_include_token1] = ACTIONS(3350), - [aux_sym_preproc_def_token1] = ACTIONS(3350), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3352), - [aux_sym_preproc_if_token1] = ACTIONS(3350), - [aux_sym_preproc_if_token2] = ACTIONS(3350), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3350), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3350), - [aux_sym_preproc_else_token1] = ACTIONS(3350), - [aux_sym_preproc_elif_token1] = ACTIONS(3350), - [sym_preproc_directive] = ACTIONS(3350), - [anon_sym_LPAREN2] = ACTIONS(3352), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(3352), - [anon_sym_DASH] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3350), - [anon_sym_STAR] = ACTIONS(3352), - [anon_sym_AMP_AMP] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3350), - [anon_sym_SEMI] = ACTIONS(3352), - [anon_sym___extension__] = ACTIONS(3350), - [anon_sym_typedef] = ACTIONS(3350), - [anon_sym_extern] = ACTIONS(3350), - [anon_sym___attribute__] = ACTIONS(3350), - [anon_sym_COLON_COLON] = ACTIONS(3352), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3352), - [anon_sym___declspec] = ACTIONS(3350), - [anon_sym___based] = ACTIONS(3350), - [anon_sym___cdecl] = ACTIONS(3350), - [anon_sym___clrcall] = ACTIONS(3350), - [anon_sym___stdcall] = ACTIONS(3350), - [anon_sym___fastcall] = ACTIONS(3350), - [anon_sym___thiscall] = ACTIONS(3350), - [anon_sym___vectorcall] = ACTIONS(3350), - [anon_sym_LBRACE] = ACTIONS(3352), - [anon_sym_signed] = ACTIONS(3350), - [anon_sym_unsigned] = ACTIONS(3350), - [anon_sym_long] = ACTIONS(3350), - [anon_sym_short] = ACTIONS(3350), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_static] = ACTIONS(3350), - [anon_sym_register] = ACTIONS(3350), - [anon_sym_inline] = ACTIONS(3350), - [anon_sym___inline] = ACTIONS(3350), - [anon_sym___inline__] = ACTIONS(3350), - [anon_sym___forceinline] = ACTIONS(3350), - [anon_sym_thread_local] = ACTIONS(3350), - [anon_sym___thread] = ACTIONS(3350), - [anon_sym_const] = ACTIONS(3350), - [anon_sym_constexpr] = ACTIONS(3350), - [anon_sym_volatile] = ACTIONS(3350), - [anon_sym_restrict] = ACTIONS(3350), - [anon_sym___restrict__] = ACTIONS(3350), - [anon_sym__Atomic] = ACTIONS(3350), - [anon_sym__Noreturn] = ACTIONS(3350), - [anon_sym_noreturn] = ACTIONS(3350), - [anon_sym_mutable] = ACTIONS(3350), - [anon_sym_constinit] = ACTIONS(3350), - [anon_sym_consteval] = ACTIONS(3350), - [sym_primitive_type] = ACTIONS(3350), - [anon_sym_enum] = ACTIONS(3350), - [anon_sym_class] = ACTIONS(3350), - [anon_sym_struct] = ACTIONS(3350), - [anon_sym_union] = ACTIONS(3350), - [anon_sym_if] = ACTIONS(3350), - [anon_sym_switch] = ACTIONS(3350), - [anon_sym_case] = ACTIONS(3350), - [anon_sym_default] = ACTIONS(3350), - [anon_sym_while] = ACTIONS(3350), - [anon_sym_do] = ACTIONS(3350), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(3350), - [anon_sym_break] = ACTIONS(3350), - [anon_sym_continue] = ACTIONS(3350), - [anon_sym_goto] = ACTIONS(3350), - [anon_sym___try] = ACTIONS(3350), - [anon_sym___leave] = ACTIONS(3350), - [anon_sym_not] = ACTIONS(3350), - [anon_sym_compl] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3352), - [anon_sym_PLUS_PLUS] = ACTIONS(3352), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3350), - [anon_sym___alignof] = ACTIONS(3350), - [anon_sym__alignof] = ACTIONS(3350), - [anon_sym_alignof] = ACTIONS(3350), - [anon_sym__Alignof] = ACTIONS(3350), - [anon_sym_offsetof] = ACTIONS(3350), - [anon_sym__Generic] = ACTIONS(3350), - [anon_sym_asm] = ACTIONS(3350), - [anon_sym___asm__] = ACTIONS(3350), - [sym_number_literal] = ACTIONS(3352), - [anon_sym_L_SQUOTE] = ACTIONS(3352), - [anon_sym_u_SQUOTE] = ACTIONS(3352), - [anon_sym_U_SQUOTE] = ACTIONS(3352), - [anon_sym_u8_SQUOTE] = ACTIONS(3352), - [anon_sym_SQUOTE] = ACTIONS(3352), - [anon_sym_L_DQUOTE] = ACTIONS(3352), - [anon_sym_u_DQUOTE] = ACTIONS(3352), - [anon_sym_U_DQUOTE] = ACTIONS(3352), - [anon_sym_u8_DQUOTE] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(3352), - [sym_true] = ACTIONS(3350), - [sym_false] = ACTIONS(3350), - [anon_sym_NULL] = ACTIONS(3350), - [anon_sym_nullptr] = ACTIONS(3350), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3350), - [anon_sym_decltype] = ACTIONS(3350), - [anon_sym_virtual] = ACTIONS(3350), - [anon_sym_alignas] = ACTIONS(3350), - [anon_sym_explicit] = ACTIONS(3350), - [anon_sym_typename] = ACTIONS(3350), - [anon_sym_template] = ACTIONS(3350), - [anon_sym_operator] = ACTIONS(3350), - [anon_sym_try] = ACTIONS(3350), - [anon_sym_delete] = ACTIONS(3350), - [anon_sym_throw] = ACTIONS(3350), - [anon_sym_namespace] = ACTIONS(3350), - [anon_sym_using] = ACTIONS(3350), - [anon_sym_static_assert] = ACTIONS(3350), - [anon_sym_concept] = ACTIONS(3350), - [anon_sym_co_return] = ACTIONS(3350), - [anon_sym_co_yield] = ACTIONS(3350), - [anon_sym_R_DQUOTE] = ACTIONS(3352), - [anon_sym_LR_DQUOTE] = ACTIONS(3352), - [anon_sym_uR_DQUOTE] = ACTIONS(3352), - [anon_sym_UR_DQUOTE] = ACTIONS(3352), - [anon_sym_u8R_DQUOTE] = ACTIONS(3352), - [anon_sym_co_await] = ACTIONS(3350), - [anon_sym_new] = ACTIONS(3350), - [anon_sym_requires] = ACTIONS(3350), - [sym_this] = ACTIONS(3350), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3352), - [sym_semgrep_named_ellipsis] = ACTIONS(3352), - }, - [511] = { - [sym_identifier] = ACTIONS(3495), - [aux_sym_preproc_include_token1] = ACTIONS(3495), - [aux_sym_preproc_def_token1] = ACTIONS(3495), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3497), - [aux_sym_preproc_if_token1] = ACTIONS(3495), - [aux_sym_preproc_if_token2] = ACTIONS(3495), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3495), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3495), - [aux_sym_preproc_else_token1] = ACTIONS(3495), - [aux_sym_preproc_elif_token1] = ACTIONS(3495), - [sym_preproc_directive] = ACTIONS(3495), - [anon_sym_LPAREN2] = ACTIONS(3497), - [anon_sym_BANG] = ACTIONS(3497), - [anon_sym_TILDE] = ACTIONS(3497), - [anon_sym_DASH] = ACTIONS(3495), - [anon_sym_PLUS] = ACTIONS(3495), - [anon_sym_STAR] = ACTIONS(3497), - [anon_sym_AMP_AMP] = ACTIONS(3497), - [anon_sym_AMP] = ACTIONS(3495), - [anon_sym_SEMI] = ACTIONS(3497), - [anon_sym___extension__] = ACTIONS(3495), - [anon_sym_typedef] = ACTIONS(3495), - [anon_sym_extern] = ACTIONS(3495), - [anon_sym___attribute__] = ACTIONS(3495), - [anon_sym_COLON_COLON] = ACTIONS(3497), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3497), - [anon_sym___declspec] = ACTIONS(3495), - [anon_sym___based] = ACTIONS(3495), - [anon_sym___cdecl] = ACTIONS(3495), - [anon_sym___clrcall] = ACTIONS(3495), - [anon_sym___stdcall] = ACTIONS(3495), - [anon_sym___fastcall] = ACTIONS(3495), - [anon_sym___thiscall] = ACTIONS(3495), - [anon_sym___vectorcall] = ACTIONS(3495), - [anon_sym_LBRACE] = ACTIONS(3497), - [anon_sym_signed] = ACTIONS(3495), - [anon_sym_unsigned] = ACTIONS(3495), - [anon_sym_long] = ACTIONS(3495), - [anon_sym_short] = ACTIONS(3495), - [anon_sym_LBRACK] = ACTIONS(3495), - [anon_sym_static] = ACTIONS(3495), - [anon_sym_register] = ACTIONS(3495), - [anon_sym_inline] = ACTIONS(3495), - [anon_sym___inline] = ACTIONS(3495), - [anon_sym___inline__] = ACTIONS(3495), - [anon_sym___forceinline] = ACTIONS(3495), - [anon_sym_thread_local] = ACTIONS(3495), - [anon_sym___thread] = ACTIONS(3495), - [anon_sym_const] = ACTIONS(3495), - [anon_sym_constexpr] = ACTIONS(3495), - [anon_sym_volatile] = ACTIONS(3495), - [anon_sym_restrict] = ACTIONS(3495), - [anon_sym___restrict__] = ACTIONS(3495), - [anon_sym__Atomic] = ACTIONS(3495), - [anon_sym__Noreturn] = ACTIONS(3495), - [anon_sym_noreturn] = ACTIONS(3495), - [anon_sym_mutable] = ACTIONS(3495), - [anon_sym_constinit] = ACTIONS(3495), - [anon_sym_consteval] = ACTIONS(3495), - [sym_primitive_type] = ACTIONS(3495), - [anon_sym_enum] = ACTIONS(3495), - [anon_sym_class] = ACTIONS(3495), - [anon_sym_struct] = ACTIONS(3495), - [anon_sym_union] = ACTIONS(3495), - [anon_sym_if] = ACTIONS(3495), - [anon_sym_switch] = ACTIONS(3495), - [anon_sym_case] = ACTIONS(3495), - [anon_sym_default] = ACTIONS(3495), - [anon_sym_while] = ACTIONS(3495), - [anon_sym_do] = ACTIONS(3495), - [anon_sym_for] = ACTIONS(3495), - [anon_sym_return] = ACTIONS(3495), - [anon_sym_break] = ACTIONS(3495), - [anon_sym_continue] = ACTIONS(3495), - [anon_sym_goto] = ACTIONS(3495), - [anon_sym___try] = ACTIONS(3495), - [anon_sym___leave] = ACTIONS(3495), - [anon_sym_not] = ACTIONS(3495), - [anon_sym_compl] = ACTIONS(3495), - [anon_sym_DASH_DASH] = ACTIONS(3497), - [anon_sym_PLUS_PLUS] = ACTIONS(3497), - [anon_sym_sizeof] = ACTIONS(3495), - [anon_sym___alignof__] = ACTIONS(3495), - [anon_sym___alignof] = ACTIONS(3495), - [anon_sym__alignof] = ACTIONS(3495), - [anon_sym_alignof] = ACTIONS(3495), - [anon_sym__Alignof] = ACTIONS(3495), - [anon_sym_offsetof] = ACTIONS(3495), - [anon_sym__Generic] = ACTIONS(3495), - [anon_sym_asm] = ACTIONS(3495), - [anon_sym___asm__] = ACTIONS(3495), - [sym_number_literal] = ACTIONS(3497), - [anon_sym_L_SQUOTE] = ACTIONS(3497), - [anon_sym_u_SQUOTE] = ACTIONS(3497), - [anon_sym_U_SQUOTE] = ACTIONS(3497), - [anon_sym_u8_SQUOTE] = ACTIONS(3497), - [anon_sym_SQUOTE] = ACTIONS(3497), - [anon_sym_L_DQUOTE] = ACTIONS(3497), - [anon_sym_u_DQUOTE] = ACTIONS(3497), - [anon_sym_U_DQUOTE] = ACTIONS(3497), - [anon_sym_u8_DQUOTE] = ACTIONS(3497), - [anon_sym_DQUOTE] = ACTIONS(3497), - [sym_true] = ACTIONS(3495), - [sym_false] = ACTIONS(3495), - [anon_sym_NULL] = ACTIONS(3495), - [anon_sym_nullptr] = ACTIONS(3495), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3495), - [anon_sym_decltype] = ACTIONS(3495), - [anon_sym_virtual] = ACTIONS(3495), - [anon_sym_alignas] = ACTIONS(3495), - [anon_sym_explicit] = ACTIONS(3495), - [anon_sym_typename] = ACTIONS(3495), - [anon_sym_template] = ACTIONS(3495), - [anon_sym_operator] = ACTIONS(3495), - [anon_sym_try] = ACTIONS(3495), - [anon_sym_delete] = ACTIONS(3495), - [anon_sym_throw] = ACTIONS(3495), - [anon_sym_namespace] = ACTIONS(3495), - [anon_sym_using] = ACTIONS(3495), - [anon_sym_static_assert] = ACTIONS(3495), - [anon_sym_concept] = ACTIONS(3495), - [anon_sym_co_return] = ACTIONS(3495), - [anon_sym_co_yield] = ACTIONS(3495), - [anon_sym_R_DQUOTE] = ACTIONS(3497), - [anon_sym_LR_DQUOTE] = ACTIONS(3497), - [anon_sym_uR_DQUOTE] = ACTIONS(3497), - [anon_sym_UR_DQUOTE] = ACTIONS(3497), - [anon_sym_u8R_DQUOTE] = ACTIONS(3497), - [anon_sym_co_await] = ACTIONS(3495), - [anon_sym_new] = ACTIONS(3495), - [anon_sym_requires] = ACTIONS(3495), - [sym_this] = ACTIONS(3495), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3497), - [sym_semgrep_named_ellipsis] = ACTIONS(3497), - }, - [512] = { - [sym_identifier] = ACTIONS(3427), - [aux_sym_preproc_include_token1] = ACTIONS(3427), - [aux_sym_preproc_def_token1] = ACTIONS(3427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3429), - [aux_sym_preproc_if_token1] = ACTIONS(3427), - [aux_sym_preproc_if_token2] = ACTIONS(3427), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3427), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3427), - [aux_sym_preproc_else_token1] = ACTIONS(3427), - [aux_sym_preproc_elif_token1] = ACTIONS(3427), - [sym_preproc_directive] = ACTIONS(3427), - [anon_sym_LPAREN2] = ACTIONS(3429), - [anon_sym_BANG] = ACTIONS(3429), - [anon_sym_TILDE] = ACTIONS(3429), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3427), - [anon_sym_STAR] = ACTIONS(3429), - [anon_sym_AMP_AMP] = ACTIONS(3429), - [anon_sym_AMP] = ACTIONS(3427), - [anon_sym_SEMI] = ACTIONS(3429), - [anon_sym___extension__] = ACTIONS(3427), - [anon_sym_typedef] = ACTIONS(3427), - [anon_sym_extern] = ACTIONS(3427), - [anon_sym___attribute__] = ACTIONS(3427), - [anon_sym_COLON_COLON] = ACTIONS(3429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3429), - [anon_sym___declspec] = ACTIONS(3427), - [anon_sym___based] = ACTIONS(3427), - [anon_sym___cdecl] = ACTIONS(3427), - [anon_sym___clrcall] = ACTIONS(3427), - [anon_sym___stdcall] = ACTIONS(3427), - [anon_sym___fastcall] = ACTIONS(3427), - [anon_sym___thiscall] = ACTIONS(3427), - [anon_sym___vectorcall] = ACTIONS(3427), - [anon_sym_LBRACE] = ACTIONS(3429), - [anon_sym_signed] = ACTIONS(3427), - [anon_sym_unsigned] = ACTIONS(3427), - [anon_sym_long] = ACTIONS(3427), - [anon_sym_short] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3427), - [anon_sym_static] = ACTIONS(3427), - [anon_sym_register] = ACTIONS(3427), - [anon_sym_inline] = ACTIONS(3427), - [anon_sym___inline] = ACTIONS(3427), - [anon_sym___inline__] = ACTIONS(3427), - [anon_sym___forceinline] = ACTIONS(3427), - [anon_sym_thread_local] = ACTIONS(3427), - [anon_sym___thread] = ACTIONS(3427), - [anon_sym_const] = ACTIONS(3427), - [anon_sym_constexpr] = ACTIONS(3427), - [anon_sym_volatile] = ACTIONS(3427), - [anon_sym_restrict] = ACTIONS(3427), - [anon_sym___restrict__] = ACTIONS(3427), - [anon_sym__Atomic] = ACTIONS(3427), - [anon_sym__Noreturn] = ACTIONS(3427), - [anon_sym_noreturn] = ACTIONS(3427), - [anon_sym_mutable] = ACTIONS(3427), - [anon_sym_constinit] = ACTIONS(3427), - [anon_sym_consteval] = ACTIONS(3427), - [sym_primitive_type] = ACTIONS(3427), - [anon_sym_enum] = ACTIONS(3427), - [anon_sym_class] = ACTIONS(3427), - [anon_sym_struct] = ACTIONS(3427), - [anon_sym_union] = ACTIONS(3427), - [anon_sym_if] = ACTIONS(3427), - [anon_sym_switch] = ACTIONS(3427), - [anon_sym_case] = ACTIONS(3427), - [anon_sym_default] = ACTIONS(3427), - [anon_sym_while] = ACTIONS(3427), - [anon_sym_do] = ACTIONS(3427), - [anon_sym_for] = ACTIONS(3427), - [anon_sym_return] = ACTIONS(3427), - [anon_sym_break] = ACTIONS(3427), - [anon_sym_continue] = ACTIONS(3427), - [anon_sym_goto] = ACTIONS(3427), - [anon_sym___try] = ACTIONS(3427), - [anon_sym___leave] = ACTIONS(3427), - [anon_sym_not] = ACTIONS(3427), - [anon_sym_compl] = ACTIONS(3427), - [anon_sym_DASH_DASH] = ACTIONS(3429), - [anon_sym_PLUS_PLUS] = ACTIONS(3429), - [anon_sym_sizeof] = ACTIONS(3427), - [anon_sym___alignof__] = ACTIONS(3427), - [anon_sym___alignof] = ACTIONS(3427), - [anon_sym__alignof] = ACTIONS(3427), - [anon_sym_alignof] = ACTIONS(3427), - [anon_sym__Alignof] = ACTIONS(3427), - [anon_sym_offsetof] = ACTIONS(3427), - [anon_sym__Generic] = ACTIONS(3427), - [anon_sym_asm] = ACTIONS(3427), - [anon_sym___asm__] = ACTIONS(3427), - [sym_number_literal] = ACTIONS(3429), - [anon_sym_L_SQUOTE] = ACTIONS(3429), - [anon_sym_u_SQUOTE] = ACTIONS(3429), - [anon_sym_U_SQUOTE] = ACTIONS(3429), - [anon_sym_u8_SQUOTE] = ACTIONS(3429), - [anon_sym_SQUOTE] = ACTIONS(3429), - [anon_sym_L_DQUOTE] = ACTIONS(3429), - [anon_sym_u_DQUOTE] = ACTIONS(3429), - [anon_sym_U_DQUOTE] = ACTIONS(3429), - [anon_sym_u8_DQUOTE] = ACTIONS(3429), - [anon_sym_DQUOTE] = ACTIONS(3429), - [sym_true] = ACTIONS(3427), - [sym_false] = ACTIONS(3427), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3427), - [anon_sym_decltype] = ACTIONS(3427), - [anon_sym_virtual] = ACTIONS(3427), - [anon_sym_alignas] = ACTIONS(3427), - [anon_sym_explicit] = ACTIONS(3427), - [anon_sym_typename] = ACTIONS(3427), - [anon_sym_template] = ACTIONS(3427), - [anon_sym_operator] = ACTIONS(3427), - [anon_sym_try] = ACTIONS(3427), - [anon_sym_delete] = ACTIONS(3427), - [anon_sym_throw] = ACTIONS(3427), - [anon_sym_namespace] = ACTIONS(3427), - [anon_sym_using] = ACTIONS(3427), - [anon_sym_static_assert] = ACTIONS(3427), - [anon_sym_concept] = ACTIONS(3427), - [anon_sym_co_return] = ACTIONS(3427), - [anon_sym_co_yield] = ACTIONS(3427), - [anon_sym_R_DQUOTE] = ACTIONS(3429), - [anon_sym_LR_DQUOTE] = ACTIONS(3429), - [anon_sym_uR_DQUOTE] = ACTIONS(3429), - [anon_sym_UR_DQUOTE] = ACTIONS(3429), - [anon_sym_u8R_DQUOTE] = ACTIONS(3429), - [anon_sym_co_await] = ACTIONS(3427), - [anon_sym_new] = ACTIONS(3427), - [anon_sym_requires] = ACTIONS(3427), - [sym_this] = ACTIONS(3427), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3429), - [sym_semgrep_named_ellipsis] = ACTIONS(3429), + [503] = { + [sym_identifier] = ACTIONS(3410), + [aux_sym_preproc_include_token1] = ACTIONS(3410), + [aux_sym_preproc_def_token1] = ACTIONS(3410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3412), + [aux_sym_preproc_if_token1] = ACTIONS(3410), + [aux_sym_preproc_if_token2] = ACTIONS(3410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3410), + [aux_sym_preproc_else_token1] = ACTIONS(3410), + [aux_sym_preproc_elif_token1] = ACTIONS(3410), + [sym_preproc_directive] = ACTIONS(3410), + [anon_sym_LPAREN2] = ACTIONS(3412), + [anon_sym_BANG] = ACTIONS(3412), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3410), + [anon_sym_PLUS] = ACTIONS(3410), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_AMP] = ACTIONS(3410), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym___extension__] = ACTIONS(3410), + [anon_sym_typedef] = ACTIONS(3410), + [anon_sym_extern] = ACTIONS(3410), + [anon_sym___attribute__] = ACTIONS(3410), + [anon_sym_COLON_COLON] = ACTIONS(3412), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3412), + [anon_sym___declspec] = ACTIONS(3410), + [anon_sym___based] = ACTIONS(3410), + [anon_sym___cdecl] = ACTIONS(3410), + [anon_sym___clrcall] = ACTIONS(3410), + [anon_sym___stdcall] = ACTIONS(3410), + [anon_sym___fastcall] = ACTIONS(3410), + [anon_sym___thiscall] = ACTIONS(3410), + [anon_sym___vectorcall] = ACTIONS(3410), + [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_signed] = ACTIONS(3410), + [anon_sym_unsigned] = ACTIONS(3410), + [anon_sym_long] = ACTIONS(3410), + [anon_sym_short] = ACTIONS(3410), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_static] = ACTIONS(3410), + [anon_sym_register] = ACTIONS(3410), + [anon_sym_inline] = ACTIONS(3410), + [anon_sym___inline] = ACTIONS(3410), + [anon_sym___inline__] = ACTIONS(3410), + [anon_sym___forceinline] = ACTIONS(3410), + [anon_sym_thread_local] = ACTIONS(3410), + [anon_sym___thread] = ACTIONS(3410), + [anon_sym_const] = ACTIONS(3410), + [anon_sym_constexpr] = ACTIONS(3410), + [anon_sym_volatile] = ACTIONS(3410), + [anon_sym_restrict] = ACTIONS(3410), + [anon_sym___restrict__] = ACTIONS(3410), + [anon_sym__Atomic] = ACTIONS(3410), + [anon_sym__Noreturn] = ACTIONS(3410), + [anon_sym_noreturn] = ACTIONS(3410), + [anon_sym_mutable] = ACTIONS(3410), + [anon_sym_constinit] = ACTIONS(3410), + [anon_sym_consteval] = ACTIONS(3410), + [sym_primitive_type] = ACTIONS(3410), + [anon_sym_enum] = ACTIONS(3410), + [anon_sym_class] = ACTIONS(3410), + [anon_sym_struct] = ACTIONS(3410), + [anon_sym_union] = ACTIONS(3410), + [anon_sym_if] = ACTIONS(3410), + [anon_sym_switch] = ACTIONS(3410), + [anon_sym_case] = ACTIONS(3410), + [anon_sym_default] = ACTIONS(3410), + [anon_sym_while] = ACTIONS(3410), + [anon_sym_do] = ACTIONS(3410), + [anon_sym_for] = ACTIONS(3410), + [anon_sym_return] = ACTIONS(3410), + [anon_sym_break] = ACTIONS(3410), + [anon_sym_continue] = ACTIONS(3410), + [anon_sym_goto] = ACTIONS(3410), + [anon_sym___try] = ACTIONS(3410), + [anon_sym___leave] = ACTIONS(3410), + [anon_sym_not] = ACTIONS(3410), + [anon_sym_compl] = ACTIONS(3410), + [anon_sym_DASH_DASH] = ACTIONS(3412), + [anon_sym_PLUS_PLUS] = ACTIONS(3412), + [anon_sym_sizeof] = ACTIONS(3410), + [anon_sym___alignof__] = ACTIONS(3410), + [anon_sym___alignof] = ACTIONS(3410), + [anon_sym__alignof] = ACTIONS(3410), + [anon_sym_alignof] = ACTIONS(3410), + [anon_sym__Alignof] = ACTIONS(3410), + [anon_sym_offsetof] = ACTIONS(3410), + [anon_sym__Generic] = ACTIONS(3410), + [anon_sym_asm] = ACTIONS(3410), + [anon_sym___asm__] = ACTIONS(3410), + [sym_number_literal] = ACTIONS(3412), + [anon_sym_L_SQUOTE] = ACTIONS(3412), + [anon_sym_u_SQUOTE] = ACTIONS(3412), + [anon_sym_U_SQUOTE] = ACTIONS(3412), + [anon_sym_u8_SQUOTE] = ACTIONS(3412), + [anon_sym_SQUOTE] = ACTIONS(3412), + [anon_sym_L_DQUOTE] = ACTIONS(3412), + [anon_sym_u_DQUOTE] = ACTIONS(3412), + [anon_sym_U_DQUOTE] = ACTIONS(3412), + [anon_sym_u8_DQUOTE] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3412), + [sym_true] = ACTIONS(3410), + [sym_false] = ACTIONS(3410), + [anon_sym_NULL] = ACTIONS(3410), + [anon_sym_nullptr] = ACTIONS(3410), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3410), + [anon_sym_decltype] = ACTIONS(3410), + [anon_sym_virtual] = ACTIONS(3410), + [anon_sym_alignas] = ACTIONS(3410), + [anon_sym_explicit] = ACTIONS(3410), + [anon_sym_typename] = ACTIONS(3410), + [anon_sym_template] = ACTIONS(3410), + [anon_sym_operator] = ACTIONS(3410), + [anon_sym_try] = ACTIONS(3410), + [anon_sym_delete] = ACTIONS(3410), + [anon_sym_throw] = ACTIONS(3410), + [anon_sym_namespace] = ACTIONS(3410), + [anon_sym_using] = ACTIONS(3410), + [anon_sym_static_assert] = ACTIONS(3410), + [anon_sym_concept] = ACTIONS(3410), + [anon_sym_co_return] = ACTIONS(3410), + [anon_sym_co_yield] = ACTIONS(3410), + [anon_sym_R_DQUOTE] = ACTIONS(3412), + [anon_sym_LR_DQUOTE] = ACTIONS(3412), + [anon_sym_uR_DQUOTE] = ACTIONS(3412), + [anon_sym_UR_DQUOTE] = ACTIONS(3412), + [anon_sym_u8R_DQUOTE] = ACTIONS(3412), + [anon_sym_co_await] = ACTIONS(3410), + [anon_sym_new] = ACTIONS(3410), + [anon_sym_requires] = ACTIONS(3410), + [sym_this] = ACTIONS(3410), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3412), + [sym_semgrep_named_ellipsis] = ACTIONS(3412), }, - [513] = { - [sym_identifier] = ACTIONS(3618), - [aux_sym_preproc_include_token1] = ACTIONS(3618), - [aux_sym_preproc_def_token1] = ACTIONS(3618), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3620), - [aux_sym_preproc_if_token1] = ACTIONS(3618), - [aux_sym_preproc_if_token2] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), - [aux_sym_preproc_else_token1] = ACTIONS(3618), - [aux_sym_preproc_elif_token1] = ACTIONS(3618), - [sym_preproc_directive] = ACTIONS(3618), - [anon_sym_LPAREN2] = ACTIONS(3620), - [anon_sym_BANG] = ACTIONS(3620), - [anon_sym_TILDE] = ACTIONS(3620), - [anon_sym_DASH] = ACTIONS(3618), - [anon_sym_PLUS] = ACTIONS(3618), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_AMP_AMP] = ACTIONS(3620), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_SEMI] = ACTIONS(3620), - [anon_sym___extension__] = ACTIONS(3618), - [anon_sym_typedef] = ACTIONS(3618), - [anon_sym_extern] = ACTIONS(3618), - [anon_sym___attribute__] = ACTIONS(3618), - [anon_sym_COLON_COLON] = ACTIONS(3620), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), - [anon_sym___declspec] = ACTIONS(3618), - [anon_sym___based] = ACTIONS(3618), - [anon_sym___cdecl] = ACTIONS(3618), - [anon_sym___clrcall] = ACTIONS(3618), - [anon_sym___stdcall] = ACTIONS(3618), - [anon_sym___fastcall] = ACTIONS(3618), - [anon_sym___thiscall] = ACTIONS(3618), - [anon_sym___vectorcall] = ACTIONS(3618), - [anon_sym_LBRACE] = ACTIONS(3620), - [anon_sym_signed] = ACTIONS(3618), - [anon_sym_unsigned] = ACTIONS(3618), - [anon_sym_long] = ACTIONS(3618), - [anon_sym_short] = ACTIONS(3618), - [anon_sym_LBRACK] = ACTIONS(3618), - [anon_sym_static] = ACTIONS(3618), - [anon_sym_register] = ACTIONS(3618), - [anon_sym_inline] = ACTIONS(3618), - [anon_sym___inline] = ACTIONS(3618), - [anon_sym___inline__] = ACTIONS(3618), - [anon_sym___forceinline] = ACTIONS(3618), - [anon_sym_thread_local] = ACTIONS(3618), - [anon_sym___thread] = ACTIONS(3618), - [anon_sym_const] = ACTIONS(3618), - [anon_sym_constexpr] = ACTIONS(3618), - [anon_sym_volatile] = ACTIONS(3618), - [anon_sym_restrict] = ACTIONS(3618), - [anon_sym___restrict__] = ACTIONS(3618), - [anon_sym__Atomic] = ACTIONS(3618), - [anon_sym__Noreturn] = ACTIONS(3618), - [anon_sym_noreturn] = ACTIONS(3618), - [anon_sym_mutable] = ACTIONS(3618), - [anon_sym_constinit] = ACTIONS(3618), - [anon_sym_consteval] = ACTIONS(3618), - [sym_primitive_type] = ACTIONS(3618), - [anon_sym_enum] = ACTIONS(3618), - [anon_sym_class] = ACTIONS(3618), - [anon_sym_struct] = ACTIONS(3618), - [anon_sym_union] = ACTIONS(3618), - [anon_sym_if] = ACTIONS(3618), - [anon_sym_switch] = ACTIONS(3618), - [anon_sym_case] = ACTIONS(3618), - [anon_sym_default] = ACTIONS(3618), - [anon_sym_while] = ACTIONS(3618), - [anon_sym_do] = ACTIONS(3618), - [anon_sym_for] = ACTIONS(3618), - [anon_sym_return] = ACTIONS(3618), - [anon_sym_break] = ACTIONS(3618), - [anon_sym_continue] = ACTIONS(3618), - [anon_sym_goto] = ACTIONS(3618), - [anon_sym___try] = ACTIONS(3618), - [anon_sym___leave] = ACTIONS(3618), - [anon_sym_not] = ACTIONS(3618), - [anon_sym_compl] = ACTIONS(3618), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_sizeof] = ACTIONS(3618), - [anon_sym___alignof__] = ACTIONS(3618), - [anon_sym___alignof] = ACTIONS(3618), - [anon_sym__alignof] = ACTIONS(3618), - [anon_sym_alignof] = ACTIONS(3618), - [anon_sym__Alignof] = ACTIONS(3618), - [anon_sym_offsetof] = ACTIONS(3618), - [anon_sym__Generic] = ACTIONS(3618), - [anon_sym_asm] = ACTIONS(3618), - [anon_sym___asm__] = ACTIONS(3618), - [sym_number_literal] = ACTIONS(3620), - [anon_sym_L_SQUOTE] = ACTIONS(3620), - [anon_sym_u_SQUOTE] = ACTIONS(3620), - [anon_sym_U_SQUOTE] = ACTIONS(3620), - [anon_sym_u8_SQUOTE] = ACTIONS(3620), - [anon_sym_SQUOTE] = ACTIONS(3620), - [anon_sym_L_DQUOTE] = ACTIONS(3620), - [anon_sym_u_DQUOTE] = ACTIONS(3620), - [anon_sym_U_DQUOTE] = ACTIONS(3620), - [anon_sym_u8_DQUOTE] = ACTIONS(3620), - [anon_sym_DQUOTE] = ACTIONS(3620), - [sym_true] = ACTIONS(3618), - [sym_false] = ACTIONS(3618), - [anon_sym_NULL] = ACTIONS(3618), - [anon_sym_nullptr] = ACTIONS(3618), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3618), - [anon_sym_decltype] = ACTIONS(3618), - [anon_sym_virtual] = ACTIONS(3618), - [anon_sym_alignas] = ACTIONS(3618), - [anon_sym_explicit] = ACTIONS(3618), - [anon_sym_typename] = ACTIONS(3618), - [anon_sym_template] = ACTIONS(3618), - [anon_sym_operator] = ACTIONS(3618), - [anon_sym_try] = ACTIONS(3618), - [anon_sym_delete] = ACTIONS(3618), - [anon_sym_throw] = ACTIONS(3618), - [anon_sym_namespace] = ACTIONS(3618), - [anon_sym_using] = ACTIONS(3618), - [anon_sym_static_assert] = ACTIONS(3618), - [anon_sym_concept] = ACTIONS(3618), - [anon_sym_co_return] = ACTIONS(3618), - [anon_sym_co_yield] = ACTIONS(3618), - [anon_sym_R_DQUOTE] = ACTIONS(3620), - [anon_sym_LR_DQUOTE] = ACTIONS(3620), - [anon_sym_uR_DQUOTE] = ACTIONS(3620), - [anon_sym_UR_DQUOTE] = ACTIONS(3620), - [anon_sym_u8R_DQUOTE] = ACTIONS(3620), - [anon_sym_co_await] = ACTIONS(3618), - [anon_sym_new] = ACTIONS(3618), - [anon_sym_requires] = ACTIONS(3618), - [sym_this] = ACTIONS(3618), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3620), - [sym_semgrep_named_ellipsis] = ACTIONS(3620), + [504] = { + [sym_identifier] = ACTIONS(3434), + [aux_sym_preproc_include_token1] = ACTIONS(3434), + [aux_sym_preproc_def_token1] = ACTIONS(3434), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3436), + [aux_sym_preproc_if_token1] = ACTIONS(3434), + [aux_sym_preproc_if_token2] = ACTIONS(3434), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3434), + [aux_sym_preproc_else_token1] = ACTIONS(3434), + [aux_sym_preproc_elif_token1] = ACTIONS(3434), + [sym_preproc_directive] = ACTIONS(3434), + [anon_sym_LPAREN2] = ACTIONS(3436), + [anon_sym_BANG] = ACTIONS(3436), + [anon_sym_TILDE] = ACTIONS(3436), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_STAR] = ACTIONS(3436), + [anon_sym_AMP_AMP] = ACTIONS(3436), + [anon_sym_AMP] = ACTIONS(3434), + [anon_sym_SEMI] = ACTIONS(3436), + [anon_sym___extension__] = ACTIONS(3434), + [anon_sym_typedef] = ACTIONS(3434), + [anon_sym_extern] = ACTIONS(3434), + [anon_sym___attribute__] = ACTIONS(3434), + [anon_sym_COLON_COLON] = ACTIONS(3436), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3436), + [anon_sym___declspec] = ACTIONS(3434), + [anon_sym___based] = ACTIONS(3434), + [anon_sym___cdecl] = ACTIONS(3434), + [anon_sym___clrcall] = ACTIONS(3434), + [anon_sym___stdcall] = ACTIONS(3434), + [anon_sym___fastcall] = ACTIONS(3434), + [anon_sym___thiscall] = ACTIONS(3434), + [anon_sym___vectorcall] = ACTIONS(3434), + [anon_sym_LBRACE] = ACTIONS(3436), + [anon_sym_signed] = ACTIONS(3434), + [anon_sym_unsigned] = ACTIONS(3434), + [anon_sym_long] = ACTIONS(3434), + [anon_sym_short] = ACTIONS(3434), + [anon_sym_LBRACK] = ACTIONS(3434), + [anon_sym_static] = ACTIONS(3434), + [anon_sym_register] = ACTIONS(3434), + [anon_sym_inline] = ACTIONS(3434), + [anon_sym___inline] = ACTIONS(3434), + [anon_sym___inline__] = ACTIONS(3434), + [anon_sym___forceinline] = ACTIONS(3434), + [anon_sym_thread_local] = ACTIONS(3434), + [anon_sym___thread] = ACTIONS(3434), + [anon_sym_const] = ACTIONS(3434), + [anon_sym_constexpr] = ACTIONS(3434), + [anon_sym_volatile] = ACTIONS(3434), + [anon_sym_restrict] = ACTIONS(3434), + [anon_sym___restrict__] = ACTIONS(3434), + [anon_sym__Atomic] = ACTIONS(3434), + [anon_sym__Noreturn] = ACTIONS(3434), + [anon_sym_noreturn] = ACTIONS(3434), + [anon_sym_mutable] = ACTIONS(3434), + [anon_sym_constinit] = ACTIONS(3434), + [anon_sym_consteval] = ACTIONS(3434), + [sym_primitive_type] = ACTIONS(3434), + [anon_sym_enum] = ACTIONS(3434), + [anon_sym_class] = ACTIONS(3434), + [anon_sym_struct] = ACTIONS(3434), + [anon_sym_union] = ACTIONS(3434), + [anon_sym_if] = ACTIONS(3434), + [anon_sym_switch] = ACTIONS(3434), + [anon_sym_case] = ACTIONS(3434), + [anon_sym_default] = ACTIONS(3434), + [anon_sym_while] = ACTIONS(3434), + [anon_sym_do] = ACTIONS(3434), + [anon_sym_for] = ACTIONS(3434), + [anon_sym_return] = ACTIONS(3434), + [anon_sym_break] = ACTIONS(3434), + [anon_sym_continue] = ACTIONS(3434), + [anon_sym_goto] = ACTIONS(3434), + [anon_sym___try] = ACTIONS(3434), + [anon_sym___leave] = ACTIONS(3434), + [anon_sym_not] = ACTIONS(3434), + [anon_sym_compl] = ACTIONS(3434), + [anon_sym_DASH_DASH] = ACTIONS(3436), + [anon_sym_PLUS_PLUS] = ACTIONS(3436), + [anon_sym_sizeof] = ACTIONS(3434), + [anon_sym___alignof__] = ACTIONS(3434), + [anon_sym___alignof] = ACTIONS(3434), + [anon_sym__alignof] = ACTIONS(3434), + [anon_sym_alignof] = ACTIONS(3434), + [anon_sym__Alignof] = ACTIONS(3434), + [anon_sym_offsetof] = ACTIONS(3434), + [anon_sym__Generic] = ACTIONS(3434), + [anon_sym_asm] = ACTIONS(3434), + [anon_sym___asm__] = ACTIONS(3434), + [sym_number_literal] = ACTIONS(3436), + [anon_sym_L_SQUOTE] = ACTIONS(3436), + [anon_sym_u_SQUOTE] = ACTIONS(3436), + [anon_sym_U_SQUOTE] = ACTIONS(3436), + [anon_sym_u8_SQUOTE] = ACTIONS(3436), + [anon_sym_SQUOTE] = ACTIONS(3436), + [anon_sym_L_DQUOTE] = ACTIONS(3436), + [anon_sym_u_DQUOTE] = ACTIONS(3436), + [anon_sym_U_DQUOTE] = ACTIONS(3436), + [anon_sym_u8_DQUOTE] = ACTIONS(3436), + [anon_sym_DQUOTE] = ACTIONS(3436), + [sym_true] = ACTIONS(3434), + [sym_false] = ACTIONS(3434), + [anon_sym_NULL] = ACTIONS(3434), + [anon_sym_nullptr] = ACTIONS(3434), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3434), + [anon_sym_decltype] = ACTIONS(3434), + [anon_sym_virtual] = ACTIONS(3434), + [anon_sym_alignas] = ACTIONS(3434), + [anon_sym_explicit] = ACTIONS(3434), + [anon_sym_typename] = ACTIONS(3434), + [anon_sym_template] = ACTIONS(3434), + [anon_sym_operator] = ACTIONS(3434), + [anon_sym_try] = ACTIONS(3434), + [anon_sym_delete] = ACTIONS(3434), + [anon_sym_throw] = ACTIONS(3434), + [anon_sym_namespace] = ACTIONS(3434), + [anon_sym_using] = ACTIONS(3434), + [anon_sym_static_assert] = ACTIONS(3434), + [anon_sym_concept] = ACTIONS(3434), + [anon_sym_co_return] = ACTIONS(3434), + [anon_sym_co_yield] = ACTIONS(3434), + [anon_sym_R_DQUOTE] = ACTIONS(3436), + [anon_sym_LR_DQUOTE] = ACTIONS(3436), + [anon_sym_uR_DQUOTE] = ACTIONS(3436), + [anon_sym_UR_DQUOTE] = ACTIONS(3436), + [anon_sym_u8R_DQUOTE] = ACTIONS(3436), + [anon_sym_co_await] = ACTIONS(3434), + [anon_sym_new] = ACTIONS(3434), + [anon_sym_requires] = ACTIONS(3434), + [sym_this] = ACTIONS(3434), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3436), + [sym_semgrep_named_ellipsis] = ACTIONS(3436), }, - [514] = { - [sym_identifier] = ACTIONS(3622), - [aux_sym_preproc_include_token1] = ACTIONS(3622), - [aux_sym_preproc_def_token1] = ACTIONS(3622), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3624), - [aux_sym_preproc_if_token1] = ACTIONS(3622), - [aux_sym_preproc_if_token2] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), - [aux_sym_preproc_else_token1] = ACTIONS(3622), - [aux_sym_preproc_elif_token1] = ACTIONS(3622), - [sym_preproc_directive] = ACTIONS(3622), - [anon_sym_LPAREN2] = ACTIONS(3624), - [anon_sym_BANG] = ACTIONS(3624), - [anon_sym_TILDE] = ACTIONS(3624), - [anon_sym_DASH] = ACTIONS(3622), - [anon_sym_PLUS] = ACTIONS(3622), - [anon_sym_STAR] = ACTIONS(3624), - [anon_sym_AMP_AMP] = ACTIONS(3624), - [anon_sym_AMP] = ACTIONS(3622), - [anon_sym_SEMI] = ACTIONS(3624), - [anon_sym___extension__] = ACTIONS(3622), - [anon_sym_typedef] = ACTIONS(3622), - [anon_sym_extern] = ACTIONS(3622), - [anon_sym___attribute__] = ACTIONS(3622), - [anon_sym_COLON_COLON] = ACTIONS(3624), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), - [anon_sym___declspec] = ACTIONS(3622), - [anon_sym___based] = ACTIONS(3622), - [anon_sym___cdecl] = ACTIONS(3622), - [anon_sym___clrcall] = ACTIONS(3622), - [anon_sym___stdcall] = ACTIONS(3622), - [anon_sym___fastcall] = ACTIONS(3622), - [anon_sym___thiscall] = ACTIONS(3622), - [anon_sym___vectorcall] = ACTIONS(3622), - [anon_sym_LBRACE] = ACTIONS(3624), - [anon_sym_signed] = ACTIONS(3622), - [anon_sym_unsigned] = ACTIONS(3622), - [anon_sym_long] = ACTIONS(3622), - [anon_sym_short] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3622), - [anon_sym_static] = ACTIONS(3622), - [anon_sym_register] = ACTIONS(3622), - [anon_sym_inline] = ACTIONS(3622), - [anon_sym___inline] = ACTIONS(3622), - [anon_sym___inline__] = ACTIONS(3622), - [anon_sym___forceinline] = ACTIONS(3622), - [anon_sym_thread_local] = ACTIONS(3622), - [anon_sym___thread] = ACTIONS(3622), - [anon_sym_const] = ACTIONS(3622), - [anon_sym_constexpr] = ACTIONS(3622), - [anon_sym_volatile] = ACTIONS(3622), - [anon_sym_restrict] = ACTIONS(3622), - [anon_sym___restrict__] = ACTIONS(3622), - [anon_sym__Atomic] = ACTIONS(3622), - [anon_sym__Noreturn] = ACTIONS(3622), - [anon_sym_noreturn] = ACTIONS(3622), - [anon_sym_mutable] = ACTIONS(3622), - [anon_sym_constinit] = ACTIONS(3622), - [anon_sym_consteval] = ACTIONS(3622), - [sym_primitive_type] = ACTIONS(3622), - [anon_sym_enum] = ACTIONS(3622), - [anon_sym_class] = ACTIONS(3622), - [anon_sym_struct] = ACTIONS(3622), - [anon_sym_union] = ACTIONS(3622), - [anon_sym_if] = ACTIONS(3622), - [anon_sym_switch] = ACTIONS(3622), - [anon_sym_case] = ACTIONS(3622), - [anon_sym_default] = ACTIONS(3622), - [anon_sym_while] = ACTIONS(3622), - [anon_sym_do] = ACTIONS(3622), - [anon_sym_for] = ACTIONS(3622), - [anon_sym_return] = ACTIONS(3622), - [anon_sym_break] = ACTIONS(3622), - [anon_sym_continue] = ACTIONS(3622), - [anon_sym_goto] = ACTIONS(3622), - [anon_sym___try] = ACTIONS(3622), - [anon_sym___leave] = ACTIONS(3622), - [anon_sym_not] = ACTIONS(3622), - [anon_sym_compl] = ACTIONS(3622), - [anon_sym_DASH_DASH] = ACTIONS(3624), - [anon_sym_PLUS_PLUS] = ACTIONS(3624), - [anon_sym_sizeof] = ACTIONS(3622), - [anon_sym___alignof__] = ACTIONS(3622), - [anon_sym___alignof] = ACTIONS(3622), - [anon_sym__alignof] = ACTIONS(3622), - [anon_sym_alignof] = ACTIONS(3622), - [anon_sym__Alignof] = ACTIONS(3622), - [anon_sym_offsetof] = ACTIONS(3622), - [anon_sym__Generic] = ACTIONS(3622), - [anon_sym_asm] = ACTIONS(3622), - [anon_sym___asm__] = ACTIONS(3622), - [sym_number_literal] = ACTIONS(3624), - [anon_sym_L_SQUOTE] = ACTIONS(3624), - [anon_sym_u_SQUOTE] = ACTIONS(3624), - [anon_sym_U_SQUOTE] = ACTIONS(3624), - [anon_sym_u8_SQUOTE] = ACTIONS(3624), - [anon_sym_SQUOTE] = ACTIONS(3624), - [anon_sym_L_DQUOTE] = ACTIONS(3624), - [anon_sym_u_DQUOTE] = ACTIONS(3624), - [anon_sym_U_DQUOTE] = ACTIONS(3624), - [anon_sym_u8_DQUOTE] = ACTIONS(3624), - [anon_sym_DQUOTE] = ACTIONS(3624), - [sym_true] = ACTIONS(3622), - [sym_false] = ACTIONS(3622), - [anon_sym_NULL] = ACTIONS(3622), - [anon_sym_nullptr] = ACTIONS(3622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3622), - [anon_sym_decltype] = ACTIONS(3622), - [anon_sym_virtual] = ACTIONS(3622), - [anon_sym_alignas] = ACTIONS(3622), - [anon_sym_explicit] = ACTIONS(3622), - [anon_sym_typename] = ACTIONS(3622), - [anon_sym_template] = ACTIONS(3622), - [anon_sym_operator] = ACTIONS(3622), - [anon_sym_try] = ACTIONS(3622), - [anon_sym_delete] = ACTIONS(3622), - [anon_sym_throw] = ACTIONS(3622), - [anon_sym_namespace] = ACTIONS(3622), - [anon_sym_using] = ACTIONS(3622), - [anon_sym_static_assert] = ACTIONS(3622), - [anon_sym_concept] = ACTIONS(3622), - [anon_sym_co_return] = ACTIONS(3622), - [anon_sym_co_yield] = ACTIONS(3622), - [anon_sym_R_DQUOTE] = ACTIONS(3624), - [anon_sym_LR_DQUOTE] = ACTIONS(3624), - [anon_sym_uR_DQUOTE] = ACTIONS(3624), - [anon_sym_UR_DQUOTE] = ACTIONS(3624), - [anon_sym_u8R_DQUOTE] = ACTIONS(3624), - [anon_sym_co_await] = ACTIONS(3622), - [anon_sym_new] = ACTIONS(3622), - [anon_sym_requires] = ACTIONS(3622), - [sym_this] = ACTIONS(3622), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3624), - [sym_semgrep_named_ellipsis] = ACTIONS(3624), + [505] = { + [sym_identifier] = ACTIONS(3438), + [aux_sym_preproc_include_token1] = ACTIONS(3438), + [aux_sym_preproc_def_token1] = ACTIONS(3438), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3440), + [aux_sym_preproc_if_token1] = ACTIONS(3438), + [aux_sym_preproc_if_token2] = ACTIONS(3438), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3438), + [aux_sym_preproc_else_token1] = ACTIONS(3438), + [aux_sym_preproc_elif_token1] = ACTIONS(3438), + [sym_preproc_directive] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_BANG] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3440), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_STAR] = ACTIONS(3440), + [anon_sym_AMP_AMP] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_SEMI] = ACTIONS(3440), + [anon_sym___extension__] = ACTIONS(3438), + [anon_sym_typedef] = ACTIONS(3438), + [anon_sym_extern] = ACTIONS(3438), + [anon_sym___attribute__] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3440), + [anon_sym___declspec] = ACTIONS(3438), + [anon_sym___based] = ACTIONS(3438), + [anon_sym___cdecl] = ACTIONS(3438), + [anon_sym___clrcall] = ACTIONS(3438), + [anon_sym___stdcall] = ACTIONS(3438), + [anon_sym___fastcall] = ACTIONS(3438), + [anon_sym___thiscall] = ACTIONS(3438), + [anon_sym___vectorcall] = ACTIONS(3438), + [anon_sym_LBRACE] = ACTIONS(3440), + [anon_sym_signed] = ACTIONS(3438), + [anon_sym_unsigned] = ACTIONS(3438), + [anon_sym_long] = ACTIONS(3438), + [anon_sym_short] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_static] = ACTIONS(3438), + [anon_sym_register] = ACTIONS(3438), + [anon_sym_inline] = ACTIONS(3438), + [anon_sym___inline] = ACTIONS(3438), + [anon_sym___inline__] = ACTIONS(3438), + [anon_sym___forceinline] = ACTIONS(3438), + [anon_sym_thread_local] = ACTIONS(3438), + [anon_sym___thread] = ACTIONS(3438), + [anon_sym_const] = ACTIONS(3438), + [anon_sym_constexpr] = ACTIONS(3438), + [anon_sym_volatile] = ACTIONS(3438), + [anon_sym_restrict] = ACTIONS(3438), + [anon_sym___restrict__] = ACTIONS(3438), + [anon_sym__Atomic] = ACTIONS(3438), + [anon_sym__Noreturn] = ACTIONS(3438), + [anon_sym_noreturn] = ACTIONS(3438), + [anon_sym_mutable] = ACTIONS(3438), + [anon_sym_constinit] = ACTIONS(3438), + [anon_sym_consteval] = ACTIONS(3438), + [sym_primitive_type] = ACTIONS(3438), + [anon_sym_enum] = ACTIONS(3438), + [anon_sym_class] = ACTIONS(3438), + [anon_sym_struct] = ACTIONS(3438), + [anon_sym_union] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_switch] = ACTIONS(3438), + [anon_sym_case] = ACTIONS(3438), + [anon_sym_default] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_break] = ACTIONS(3438), + [anon_sym_continue] = ACTIONS(3438), + [anon_sym_goto] = ACTIONS(3438), + [anon_sym___try] = ACTIONS(3438), + [anon_sym___leave] = ACTIONS(3438), + [anon_sym_not] = ACTIONS(3438), + [anon_sym_compl] = ACTIONS(3438), + [anon_sym_DASH_DASH] = ACTIONS(3440), + [anon_sym_PLUS_PLUS] = ACTIONS(3440), + [anon_sym_sizeof] = ACTIONS(3438), + [anon_sym___alignof__] = ACTIONS(3438), + [anon_sym___alignof] = ACTIONS(3438), + [anon_sym__alignof] = ACTIONS(3438), + [anon_sym_alignof] = ACTIONS(3438), + [anon_sym__Alignof] = ACTIONS(3438), + [anon_sym_offsetof] = ACTIONS(3438), + [anon_sym__Generic] = ACTIONS(3438), + [anon_sym_asm] = ACTIONS(3438), + [anon_sym___asm__] = ACTIONS(3438), + [sym_number_literal] = ACTIONS(3440), + [anon_sym_L_SQUOTE] = ACTIONS(3440), + [anon_sym_u_SQUOTE] = ACTIONS(3440), + [anon_sym_U_SQUOTE] = ACTIONS(3440), + [anon_sym_u8_SQUOTE] = ACTIONS(3440), + [anon_sym_SQUOTE] = ACTIONS(3440), + [anon_sym_L_DQUOTE] = ACTIONS(3440), + [anon_sym_u_DQUOTE] = ACTIONS(3440), + [anon_sym_U_DQUOTE] = ACTIONS(3440), + [anon_sym_u8_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE] = ACTIONS(3440), + [sym_true] = ACTIONS(3438), + [sym_false] = ACTIONS(3438), + [anon_sym_NULL] = ACTIONS(3438), + [anon_sym_nullptr] = ACTIONS(3438), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3438), + [anon_sym_decltype] = ACTIONS(3438), + [anon_sym_virtual] = ACTIONS(3438), + [anon_sym_alignas] = ACTIONS(3438), + [anon_sym_explicit] = ACTIONS(3438), + [anon_sym_typename] = ACTIONS(3438), + [anon_sym_template] = ACTIONS(3438), + [anon_sym_operator] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_delete] = ACTIONS(3438), + [anon_sym_throw] = ACTIONS(3438), + [anon_sym_namespace] = ACTIONS(3438), + [anon_sym_using] = ACTIONS(3438), + [anon_sym_static_assert] = ACTIONS(3438), + [anon_sym_concept] = ACTIONS(3438), + [anon_sym_co_return] = ACTIONS(3438), + [anon_sym_co_yield] = ACTIONS(3438), + [anon_sym_R_DQUOTE] = ACTIONS(3440), + [anon_sym_LR_DQUOTE] = ACTIONS(3440), + [anon_sym_uR_DQUOTE] = ACTIONS(3440), + [anon_sym_UR_DQUOTE] = ACTIONS(3440), + [anon_sym_u8R_DQUOTE] = ACTIONS(3440), + [anon_sym_co_await] = ACTIONS(3438), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_requires] = ACTIONS(3438), + [sym_this] = ACTIONS(3438), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3440), + [sym_semgrep_named_ellipsis] = ACTIONS(3440), }, - [515] = { - [sym_identifier] = ACTIONS(3437), - [aux_sym_preproc_include_token1] = ACTIONS(3437), - [aux_sym_preproc_def_token1] = ACTIONS(3437), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3439), - [aux_sym_preproc_if_token1] = ACTIONS(3437), - [aux_sym_preproc_if_token2] = ACTIONS(3437), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3437), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3437), - [aux_sym_preproc_else_token1] = ACTIONS(3437), - [aux_sym_preproc_elif_token1] = ACTIONS(3437), - [sym_preproc_directive] = ACTIONS(3437), - [anon_sym_LPAREN2] = ACTIONS(3439), - [anon_sym_BANG] = ACTIONS(3439), - [anon_sym_TILDE] = ACTIONS(3439), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_STAR] = ACTIONS(3439), - [anon_sym_AMP_AMP] = ACTIONS(3439), - [anon_sym_AMP] = ACTIONS(3437), - [anon_sym_SEMI] = ACTIONS(3439), - [anon_sym___extension__] = ACTIONS(3437), - [anon_sym_typedef] = ACTIONS(3437), - [anon_sym_extern] = ACTIONS(3437), - [anon_sym___attribute__] = ACTIONS(3437), - [anon_sym_COLON_COLON] = ACTIONS(3439), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3439), - [anon_sym___declspec] = ACTIONS(3437), - [anon_sym___based] = ACTIONS(3437), - [anon_sym___cdecl] = ACTIONS(3437), - [anon_sym___clrcall] = ACTIONS(3437), - [anon_sym___stdcall] = ACTIONS(3437), - [anon_sym___fastcall] = ACTIONS(3437), - [anon_sym___thiscall] = ACTIONS(3437), - [anon_sym___vectorcall] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3439), - [anon_sym_signed] = ACTIONS(3437), - [anon_sym_unsigned] = ACTIONS(3437), - [anon_sym_long] = ACTIONS(3437), - [anon_sym_short] = ACTIONS(3437), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_static] = ACTIONS(3437), - [anon_sym_register] = ACTIONS(3437), - [anon_sym_inline] = ACTIONS(3437), - [anon_sym___inline] = ACTIONS(3437), - [anon_sym___inline__] = ACTIONS(3437), - [anon_sym___forceinline] = ACTIONS(3437), - [anon_sym_thread_local] = ACTIONS(3437), - [anon_sym___thread] = ACTIONS(3437), - [anon_sym_const] = ACTIONS(3437), - [anon_sym_constexpr] = ACTIONS(3437), - [anon_sym_volatile] = ACTIONS(3437), - [anon_sym_restrict] = ACTIONS(3437), - [anon_sym___restrict__] = ACTIONS(3437), - [anon_sym__Atomic] = ACTIONS(3437), - [anon_sym__Noreturn] = ACTIONS(3437), - [anon_sym_noreturn] = ACTIONS(3437), - [anon_sym_mutable] = ACTIONS(3437), - [anon_sym_constinit] = ACTIONS(3437), - [anon_sym_consteval] = ACTIONS(3437), - [sym_primitive_type] = ACTIONS(3437), - [anon_sym_enum] = ACTIONS(3437), - [anon_sym_class] = ACTIONS(3437), - [anon_sym_struct] = ACTIONS(3437), - [anon_sym_union] = ACTIONS(3437), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_switch] = ACTIONS(3437), - [anon_sym_case] = ACTIONS(3437), - [anon_sym_default] = ACTIONS(3437), - [anon_sym_while] = ACTIONS(3437), - [anon_sym_do] = ACTIONS(3437), - [anon_sym_for] = ACTIONS(3437), - [anon_sym_return] = ACTIONS(3437), - [anon_sym_break] = ACTIONS(3437), - [anon_sym_continue] = ACTIONS(3437), - [anon_sym_goto] = ACTIONS(3437), - [anon_sym___try] = ACTIONS(3437), - [anon_sym___leave] = ACTIONS(3437), - [anon_sym_not] = ACTIONS(3437), - [anon_sym_compl] = ACTIONS(3437), - [anon_sym_DASH_DASH] = ACTIONS(3439), - [anon_sym_PLUS_PLUS] = ACTIONS(3439), - [anon_sym_sizeof] = ACTIONS(3437), - [anon_sym___alignof__] = ACTIONS(3437), - [anon_sym___alignof] = ACTIONS(3437), - [anon_sym__alignof] = ACTIONS(3437), - [anon_sym_alignof] = ACTIONS(3437), - [anon_sym__Alignof] = ACTIONS(3437), - [anon_sym_offsetof] = ACTIONS(3437), - [anon_sym__Generic] = ACTIONS(3437), - [anon_sym_asm] = ACTIONS(3437), - [anon_sym___asm__] = ACTIONS(3437), - [sym_number_literal] = ACTIONS(3439), - [anon_sym_L_SQUOTE] = ACTIONS(3439), - [anon_sym_u_SQUOTE] = ACTIONS(3439), - [anon_sym_U_SQUOTE] = ACTIONS(3439), - [anon_sym_u8_SQUOTE] = ACTIONS(3439), - [anon_sym_SQUOTE] = ACTIONS(3439), - [anon_sym_L_DQUOTE] = ACTIONS(3439), - [anon_sym_u_DQUOTE] = ACTIONS(3439), - [anon_sym_U_DQUOTE] = ACTIONS(3439), - [anon_sym_u8_DQUOTE] = ACTIONS(3439), - [anon_sym_DQUOTE] = ACTIONS(3439), - [sym_true] = ACTIONS(3437), - [sym_false] = ACTIONS(3437), - [anon_sym_NULL] = ACTIONS(3437), - [anon_sym_nullptr] = ACTIONS(3437), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3437), - [anon_sym_decltype] = ACTIONS(3437), - [anon_sym_virtual] = ACTIONS(3437), - [anon_sym_alignas] = ACTIONS(3437), - [anon_sym_explicit] = ACTIONS(3437), - [anon_sym_typename] = ACTIONS(3437), - [anon_sym_template] = ACTIONS(3437), - [anon_sym_operator] = ACTIONS(3437), - [anon_sym_try] = ACTIONS(3437), - [anon_sym_delete] = ACTIONS(3437), - [anon_sym_throw] = ACTIONS(3437), - [anon_sym_namespace] = ACTIONS(3437), - [anon_sym_using] = ACTIONS(3437), - [anon_sym_static_assert] = ACTIONS(3437), - [anon_sym_concept] = ACTIONS(3437), - [anon_sym_co_return] = ACTIONS(3437), - [anon_sym_co_yield] = ACTIONS(3437), - [anon_sym_R_DQUOTE] = ACTIONS(3439), - [anon_sym_LR_DQUOTE] = ACTIONS(3439), - [anon_sym_uR_DQUOTE] = ACTIONS(3439), - [anon_sym_UR_DQUOTE] = ACTIONS(3439), - [anon_sym_u8R_DQUOTE] = ACTIONS(3439), - [anon_sym_co_await] = ACTIONS(3437), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3437), - [sym_this] = ACTIONS(3437), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3439), - [sym_semgrep_named_ellipsis] = ACTIONS(3439), + [506] = { + [sym_identifier] = ACTIONS(3442), + [aux_sym_preproc_include_token1] = ACTIONS(3442), + [aux_sym_preproc_def_token1] = ACTIONS(3442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3444), + [aux_sym_preproc_if_token1] = ACTIONS(3442), + [aux_sym_preproc_if_token2] = ACTIONS(3442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3442), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3442), + [aux_sym_preproc_else_token1] = ACTIONS(3442), + [aux_sym_preproc_elif_token1] = ACTIONS(3442), + [sym_preproc_directive] = ACTIONS(3442), + [anon_sym_LPAREN2] = ACTIONS(3444), + [anon_sym_BANG] = ACTIONS(3444), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), + [anon_sym_AMP_AMP] = ACTIONS(3444), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym_SEMI] = ACTIONS(3444), + [anon_sym___extension__] = ACTIONS(3442), + [anon_sym_typedef] = ACTIONS(3442), + [anon_sym_extern] = ACTIONS(3442), + [anon_sym___attribute__] = ACTIONS(3442), + [anon_sym_COLON_COLON] = ACTIONS(3444), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3444), + [anon_sym___declspec] = ACTIONS(3442), + [anon_sym___based] = ACTIONS(3442), + [anon_sym___cdecl] = ACTIONS(3442), + [anon_sym___clrcall] = ACTIONS(3442), + [anon_sym___stdcall] = ACTIONS(3442), + [anon_sym___fastcall] = ACTIONS(3442), + [anon_sym___thiscall] = ACTIONS(3442), + [anon_sym___vectorcall] = ACTIONS(3442), + [anon_sym_LBRACE] = ACTIONS(3444), + [anon_sym_signed] = ACTIONS(3442), + [anon_sym_unsigned] = ACTIONS(3442), + [anon_sym_long] = ACTIONS(3442), + [anon_sym_short] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_static] = ACTIONS(3442), + [anon_sym_register] = ACTIONS(3442), + [anon_sym_inline] = ACTIONS(3442), + [anon_sym___inline] = ACTIONS(3442), + [anon_sym___inline__] = ACTIONS(3442), + [anon_sym___forceinline] = ACTIONS(3442), + [anon_sym_thread_local] = ACTIONS(3442), + [anon_sym___thread] = ACTIONS(3442), + [anon_sym_const] = ACTIONS(3442), + [anon_sym_constexpr] = ACTIONS(3442), + [anon_sym_volatile] = ACTIONS(3442), + [anon_sym_restrict] = ACTIONS(3442), + [anon_sym___restrict__] = ACTIONS(3442), + [anon_sym__Atomic] = ACTIONS(3442), + [anon_sym__Noreturn] = ACTIONS(3442), + [anon_sym_noreturn] = ACTIONS(3442), + [anon_sym_mutable] = ACTIONS(3442), + [anon_sym_constinit] = ACTIONS(3442), + [anon_sym_consteval] = ACTIONS(3442), + [sym_primitive_type] = ACTIONS(3442), + [anon_sym_enum] = ACTIONS(3442), + [anon_sym_class] = ACTIONS(3442), + [anon_sym_struct] = ACTIONS(3442), + [anon_sym_union] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_switch] = ACTIONS(3442), + [anon_sym_case] = ACTIONS(3442), + [anon_sym_default] = ACTIONS(3442), + [anon_sym_while] = ACTIONS(3442), + [anon_sym_do] = ACTIONS(3442), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3442), + [anon_sym_break] = ACTIONS(3442), + [anon_sym_continue] = ACTIONS(3442), + [anon_sym_goto] = ACTIONS(3442), + [anon_sym___try] = ACTIONS(3442), + [anon_sym___leave] = ACTIONS(3442), + [anon_sym_not] = ACTIONS(3442), + [anon_sym_compl] = ACTIONS(3442), + [anon_sym_DASH_DASH] = ACTIONS(3444), + [anon_sym_PLUS_PLUS] = ACTIONS(3444), + [anon_sym_sizeof] = ACTIONS(3442), + [anon_sym___alignof__] = ACTIONS(3442), + [anon_sym___alignof] = ACTIONS(3442), + [anon_sym__alignof] = ACTIONS(3442), + [anon_sym_alignof] = ACTIONS(3442), + [anon_sym__Alignof] = ACTIONS(3442), + [anon_sym_offsetof] = ACTIONS(3442), + [anon_sym__Generic] = ACTIONS(3442), + [anon_sym_asm] = ACTIONS(3442), + [anon_sym___asm__] = ACTIONS(3442), + [sym_number_literal] = ACTIONS(3444), + [anon_sym_L_SQUOTE] = ACTIONS(3444), + [anon_sym_u_SQUOTE] = ACTIONS(3444), + [anon_sym_U_SQUOTE] = ACTIONS(3444), + [anon_sym_u8_SQUOTE] = ACTIONS(3444), + [anon_sym_SQUOTE] = ACTIONS(3444), + [anon_sym_L_DQUOTE] = ACTIONS(3444), + [anon_sym_u_DQUOTE] = ACTIONS(3444), + [anon_sym_U_DQUOTE] = ACTIONS(3444), + [anon_sym_u8_DQUOTE] = ACTIONS(3444), + [anon_sym_DQUOTE] = ACTIONS(3444), + [sym_true] = ACTIONS(3442), + [sym_false] = ACTIONS(3442), + [anon_sym_NULL] = ACTIONS(3442), + [anon_sym_nullptr] = ACTIONS(3442), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3442), + [anon_sym_decltype] = ACTIONS(3442), + [anon_sym_virtual] = ACTIONS(3442), + [anon_sym_alignas] = ACTIONS(3442), + [anon_sym_explicit] = ACTIONS(3442), + [anon_sym_typename] = ACTIONS(3442), + [anon_sym_template] = ACTIONS(3442), + [anon_sym_operator] = ACTIONS(3442), + [anon_sym_try] = ACTIONS(3442), + [anon_sym_delete] = ACTIONS(3442), + [anon_sym_throw] = ACTIONS(3442), + [anon_sym_namespace] = ACTIONS(3442), + [anon_sym_using] = ACTIONS(3442), + [anon_sym_static_assert] = ACTIONS(3442), + [anon_sym_concept] = ACTIONS(3442), + [anon_sym_co_return] = ACTIONS(3442), + [anon_sym_co_yield] = ACTIONS(3442), + [anon_sym_R_DQUOTE] = ACTIONS(3444), + [anon_sym_LR_DQUOTE] = ACTIONS(3444), + [anon_sym_uR_DQUOTE] = ACTIONS(3444), + [anon_sym_UR_DQUOTE] = ACTIONS(3444), + [anon_sym_u8R_DQUOTE] = ACTIONS(3444), + [anon_sym_co_await] = ACTIONS(3442), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_requires] = ACTIONS(3442), + [sym_this] = ACTIONS(3442), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3444), + [sym_semgrep_named_ellipsis] = ACTIONS(3444), }, - [516] = { - [sym_identifier] = ACTIONS(3445), - [aux_sym_preproc_include_token1] = ACTIONS(3445), - [aux_sym_preproc_def_token1] = ACTIONS(3445), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3447), - [aux_sym_preproc_if_token1] = ACTIONS(3445), - [aux_sym_preproc_if_token2] = ACTIONS(3445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3445), - [aux_sym_preproc_else_token1] = ACTIONS(3445), - [aux_sym_preproc_elif_token1] = ACTIONS(3445), - [sym_preproc_directive] = ACTIONS(3445), - [anon_sym_LPAREN2] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_TILDE] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3445), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3445), - [anon_sym_SEMI] = ACTIONS(3447), - [anon_sym___extension__] = ACTIONS(3445), - [anon_sym_typedef] = ACTIONS(3445), - [anon_sym_extern] = ACTIONS(3445), - [anon_sym___attribute__] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3447), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3447), - [anon_sym___declspec] = ACTIONS(3445), - [anon_sym___based] = ACTIONS(3445), - [anon_sym___cdecl] = ACTIONS(3445), - [anon_sym___clrcall] = ACTIONS(3445), - [anon_sym___stdcall] = ACTIONS(3445), - [anon_sym___fastcall] = ACTIONS(3445), - [anon_sym___thiscall] = ACTIONS(3445), - [anon_sym___vectorcall] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_signed] = ACTIONS(3445), - [anon_sym_unsigned] = ACTIONS(3445), - [anon_sym_long] = ACTIONS(3445), - [anon_sym_short] = ACTIONS(3445), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_static] = ACTIONS(3445), - [anon_sym_register] = ACTIONS(3445), - [anon_sym_inline] = ACTIONS(3445), - [anon_sym___inline] = ACTIONS(3445), - [anon_sym___inline__] = ACTIONS(3445), - [anon_sym___forceinline] = ACTIONS(3445), - [anon_sym_thread_local] = ACTIONS(3445), - [anon_sym___thread] = ACTIONS(3445), - [anon_sym_const] = ACTIONS(3445), - [anon_sym_constexpr] = ACTIONS(3445), - [anon_sym_volatile] = ACTIONS(3445), - [anon_sym_restrict] = ACTIONS(3445), - [anon_sym___restrict__] = ACTIONS(3445), - [anon_sym__Atomic] = ACTIONS(3445), - [anon_sym__Noreturn] = ACTIONS(3445), - [anon_sym_noreturn] = ACTIONS(3445), - [anon_sym_mutable] = ACTIONS(3445), - [anon_sym_constinit] = ACTIONS(3445), - [anon_sym_consteval] = ACTIONS(3445), - [sym_primitive_type] = ACTIONS(3445), - [anon_sym_enum] = ACTIONS(3445), - [anon_sym_class] = ACTIONS(3445), - [anon_sym_struct] = ACTIONS(3445), - [anon_sym_union] = ACTIONS(3445), - [anon_sym_if] = ACTIONS(3445), - [anon_sym_switch] = ACTIONS(3445), - [anon_sym_case] = ACTIONS(3445), - [anon_sym_default] = ACTIONS(3445), - [anon_sym_while] = ACTIONS(3445), - [anon_sym_do] = ACTIONS(3445), - [anon_sym_for] = ACTIONS(3445), - [anon_sym_return] = ACTIONS(3445), - [anon_sym_break] = ACTIONS(3445), - [anon_sym_continue] = ACTIONS(3445), - [anon_sym_goto] = ACTIONS(3445), - [anon_sym___try] = ACTIONS(3445), - [anon_sym___leave] = ACTIONS(3445), - [anon_sym_not] = ACTIONS(3445), - [anon_sym_compl] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3447), - [anon_sym_sizeof] = ACTIONS(3445), - [anon_sym___alignof__] = ACTIONS(3445), - [anon_sym___alignof] = ACTIONS(3445), - [anon_sym__alignof] = ACTIONS(3445), - [anon_sym_alignof] = ACTIONS(3445), - [anon_sym__Alignof] = ACTIONS(3445), - [anon_sym_offsetof] = ACTIONS(3445), - [anon_sym__Generic] = ACTIONS(3445), - [anon_sym_asm] = ACTIONS(3445), - [anon_sym___asm__] = ACTIONS(3445), - [sym_number_literal] = ACTIONS(3447), - [anon_sym_L_SQUOTE] = ACTIONS(3447), - [anon_sym_u_SQUOTE] = ACTIONS(3447), - [anon_sym_U_SQUOTE] = ACTIONS(3447), - [anon_sym_u8_SQUOTE] = ACTIONS(3447), - [anon_sym_SQUOTE] = ACTIONS(3447), - [anon_sym_L_DQUOTE] = ACTIONS(3447), - [anon_sym_u_DQUOTE] = ACTIONS(3447), - [anon_sym_U_DQUOTE] = ACTIONS(3447), - [anon_sym_u8_DQUOTE] = ACTIONS(3447), - [anon_sym_DQUOTE] = ACTIONS(3447), - [sym_true] = ACTIONS(3445), - [sym_false] = ACTIONS(3445), - [anon_sym_NULL] = ACTIONS(3445), - [anon_sym_nullptr] = ACTIONS(3445), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3445), - [anon_sym_decltype] = ACTIONS(3445), - [anon_sym_virtual] = ACTIONS(3445), - [anon_sym_alignas] = ACTIONS(3445), - [anon_sym_explicit] = ACTIONS(3445), - [anon_sym_typename] = ACTIONS(3445), - [anon_sym_template] = ACTIONS(3445), - [anon_sym_operator] = ACTIONS(3445), - [anon_sym_try] = ACTIONS(3445), - [anon_sym_delete] = ACTIONS(3445), - [anon_sym_throw] = ACTIONS(3445), - [anon_sym_namespace] = ACTIONS(3445), - [anon_sym_using] = ACTIONS(3445), - [anon_sym_static_assert] = ACTIONS(3445), - [anon_sym_concept] = ACTIONS(3445), - [anon_sym_co_return] = ACTIONS(3445), - [anon_sym_co_yield] = ACTIONS(3445), - [anon_sym_R_DQUOTE] = ACTIONS(3447), - [anon_sym_LR_DQUOTE] = ACTIONS(3447), - [anon_sym_uR_DQUOTE] = ACTIONS(3447), - [anon_sym_UR_DQUOTE] = ACTIONS(3447), - [anon_sym_u8R_DQUOTE] = ACTIONS(3447), - [anon_sym_co_await] = ACTIONS(3445), - [anon_sym_new] = ACTIONS(3445), - [anon_sym_requires] = ACTIONS(3445), - [sym_this] = ACTIONS(3445), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3447), - [sym_semgrep_named_ellipsis] = ACTIONS(3447), + [507] = { + [sym_identifier] = ACTIONS(3451), + [aux_sym_preproc_include_token1] = ACTIONS(3451), + [aux_sym_preproc_def_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3453), + [aux_sym_preproc_if_token1] = ACTIONS(3451), + [aux_sym_preproc_if_token2] = ACTIONS(3451), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3451), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3451), + [aux_sym_preproc_else_token1] = ACTIONS(3451), + [aux_sym_preproc_elif_token1] = ACTIONS(3451), + [sym_preproc_directive] = ACTIONS(3451), + [anon_sym_LPAREN2] = ACTIONS(3453), + [anon_sym_BANG] = ACTIONS(3453), + [anon_sym_TILDE] = ACTIONS(3453), + [anon_sym_DASH] = ACTIONS(3451), + [anon_sym_PLUS] = ACTIONS(3451), + [anon_sym_STAR] = ACTIONS(3453), + [anon_sym_AMP_AMP] = ACTIONS(3453), + [anon_sym_AMP] = ACTIONS(3451), + [anon_sym_SEMI] = ACTIONS(3453), + [anon_sym___extension__] = ACTIONS(3451), + [anon_sym_typedef] = ACTIONS(3451), + [anon_sym_extern] = ACTIONS(3451), + [anon_sym___attribute__] = ACTIONS(3451), + [anon_sym_COLON_COLON] = ACTIONS(3453), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3453), + [anon_sym___declspec] = ACTIONS(3451), + [anon_sym___based] = ACTIONS(3451), + [anon_sym___cdecl] = ACTIONS(3451), + [anon_sym___clrcall] = ACTIONS(3451), + [anon_sym___stdcall] = ACTIONS(3451), + [anon_sym___fastcall] = ACTIONS(3451), + [anon_sym___thiscall] = ACTIONS(3451), + [anon_sym___vectorcall] = ACTIONS(3451), + [anon_sym_LBRACE] = ACTIONS(3453), + [anon_sym_signed] = ACTIONS(3451), + [anon_sym_unsigned] = ACTIONS(3451), + [anon_sym_long] = ACTIONS(3451), + [anon_sym_short] = ACTIONS(3451), + [anon_sym_LBRACK] = ACTIONS(3451), + [anon_sym_static] = ACTIONS(3451), + [anon_sym_register] = ACTIONS(3451), + [anon_sym_inline] = ACTIONS(3451), + [anon_sym___inline] = ACTIONS(3451), + [anon_sym___inline__] = ACTIONS(3451), + [anon_sym___forceinline] = ACTIONS(3451), + [anon_sym_thread_local] = ACTIONS(3451), + [anon_sym___thread] = ACTIONS(3451), + [anon_sym_const] = ACTIONS(3451), + [anon_sym_constexpr] = ACTIONS(3451), + [anon_sym_volatile] = ACTIONS(3451), + [anon_sym_restrict] = ACTIONS(3451), + [anon_sym___restrict__] = ACTIONS(3451), + [anon_sym__Atomic] = ACTIONS(3451), + [anon_sym__Noreturn] = ACTIONS(3451), + [anon_sym_noreturn] = ACTIONS(3451), + [anon_sym_mutable] = ACTIONS(3451), + [anon_sym_constinit] = ACTIONS(3451), + [anon_sym_consteval] = ACTIONS(3451), + [sym_primitive_type] = ACTIONS(3451), + [anon_sym_enum] = ACTIONS(3451), + [anon_sym_class] = ACTIONS(3451), + [anon_sym_struct] = ACTIONS(3451), + [anon_sym_union] = ACTIONS(3451), + [anon_sym_if] = ACTIONS(3451), + [anon_sym_switch] = ACTIONS(3451), + [anon_sym_case] = ACTIONS(3451), + [anon_sym_default] = ACTIONS(3451), + [anon_sym_while] = ACTIONS(3451), + [anon_sym_do] = ACTIONS(3451), + [anon_sym_for] = ACTIONS(3451), + [anon_sym_return] = ACTIONS(3451), + [anon_sym_break] = ACTIONS(3451), + [anon_sym_continue] = ACTIONS(3451), + [anon_sym_goto] = ACTIONS(3451), + [anon_sym___try] = ACTIONS(3451), + [anon_sym___leave] = ACTIONS(3451), + [anon_sym_not] = ACTIONS(3451), + [anon_sym_compl] = ACTIONS(3451), + [anon_sym_DASH_DASH] = ACTIONS(3453), + [anon_sym_PLUS_PLUS] = ACTIONS(3453), + [anon_sym_sizeof] = ACTIONS(3451), + [anon_sym___alignof__] = ACTIONS(3451), + [anon_sym___alignof] = ACTIONS(3451), + [anon_sym__alignof] = ACTIONS(3451), + [anon_sym_alignof] = ACTIONS(3451), + [anon_sym__Alignof] = ACTIONS(3451), + [anon_sym_offsetof] = ACTIONS(3451), + [anon_sym__Generic] = ACTIONS(3451), + [anon_sym_asm] = ACTIONS(3451), + [anon_sym___asm__] = ACTIONS(3451), + [sym_number_literal] = ACTIONS(3453), + [anon_sym_L_SQUOTE] = ACTIONS(3453), + [anon_sym_u_SQUOTE] = ACTIONS(3453), + [anon_sym_U_SQUOTE] = ACTIONS(3453), + [anon_sym_u8_SQUOTE] = ACTIONS(3453), + [anon_sym_SQUOTE] = ACTIONS(3453), + [anon_sym_L_DQUOTE] = ACTIONS(3453), + [anon_sym_u_DQUOTE] = ACTIONS(3453), + [anon_sym_U_DQUOTE] = ACTIONS(3453), + [anon_sym_u8_DQUOTE] = ACTIONS(3453), + [anon_sym_DQUOTE] = ACTIONS(3453), + [sym_true] = ACTIONS(3451), + [sym_false] = ACTIONS(3451), + [anon_sym_NULL] = ACTIONS(3451), + [anon_sym_nullptr] = ACTIONS(3451), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3451), + [anon_sym_decltype] = ACTIONS(3451), + [anon_sym_virtual] = ACTIONS(3451), + [anon_sym_alignas] = ACTIONS(3451), + [anon_sym_explicit] = ACTIONS(3451), + [anon_sym_typename] = ACTIONS(3451), + [anon_sym_template] = ACTIONS(3451), + [anon_sym_operator] = ACTIONS(3451), + [anon_sym_try] = ACTIONS(3451), + [anon_sym_delete] = ACTIONS(3451), + [anon_sym_throw] = ACTIONS(3451), + [anon_sym_namespace] = ACTIONS(3451), + [anon_sym_using] = ACTIONS(3451), + [anon_sym_static_assert] = ACTIONS(3451), + [anon_sym_concept] = ACTIONS(3451), + [anon_sym_co_return] = ACTIONS(3451), + [anon_sym_co_yield] = ACTIONS(3451), + [anon_sym_R_DQUOTE] = ACTIONS(3453), + [anon_sym_LR_DQUOTE] = ACTIONS(3453), + [anon_sym_uR_DQUOTE] = ACTIONS(3453), + [anon_sym_UR_DQUOTE] = ACTIONS(3453), + [anon_sym_u8R_DQUOTE] = ACTIONS(3453), + [anon_sym_co_await] = ACTIONS(3451), + [anon_sym_new] = ACTIONS(3451), + [anon_sym_requires] = ACTIONS(3451), + [sym_this] = ACTIONS(3451), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3453), + [sym_semgrep_named_ellipsis] = ACTIONS(3453), }, - [517] = { - [sym_identifier] = ACTIONS(3461), - [aux_sym_preproc_include_token1] = ACTIONS(3461), - [aux_sym_preproc_def_token1] = ACTIONS(3461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3463), - [aux_sym_preproc_if_token1] = ACTIONS(3461), - [aux_sym_preproc_if_token2] = ACTIONS(3461), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3461), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3461), - [aux_sym_preproc_else_token1] = ACTIONS(3461), - [aux_sym_preproc_elif_token1] = ACTIONS(3461), - [sym_preproc_directive] = ACTIONS(3461), - [anon_sym_LPAREN2] = ACTIONS(3463), - [anon_sym_BANG] = ACTIONS(3463), - [anon_sym_TILDE] = ACTIONS(3463), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3463), - [anon_sym_AMP_AMP] = ACTIONS(3463), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_SEMI] = ACTIONS(3463), - [anon_sym___extension__] = ACTIONS(3461), - [anon_sym_typedef] = ACTIONS(3461), - [anon_sym_extern] = ACTIONS(3461), - [anon_sym___attribute__] = ACTIONS(3461), - [anon_sym_COLON_COLON] = ACTIONS(3463), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3463), - [anon_sym___declspec] = ACTIONS(3461), - [anon_sym___based] = ACTIONS(3461), - [anon_sym___cdecl] = ACTIONS(3461), - [anon_sym___clrcall] = ACTIONS(3461), - [anon_sym___stdcall] = ACTIONS(3461), - [anon_sym___fastcall] = ACTIONS(3461), - [anon_sym___thiscall] = ACTIONS(3461), - [anon_sym___vectorcall] = ACTIONS(3461), - [anon_sym_LBRACE] = ACTIONS(3463), - [anon_sym_signed] = ACTIONS(3461), - [anon_sym_unsigned] = ACTIONS(3461), - [anon_sym_long] = ACTIONS(3461), + [508] = { + [sym_identifier] = ACTIONS(3457), + [aux_sym_preproc_include_token1] = ACTIONS(3457), + [aux_sym_preproc_def_token1] = ACTIONS(3457), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3459), + [aux_sym_preproc_if_token1] = ACTIONS(3457), + [aux_sym_preproc_if_token2] = ACTIONS(3457), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3457), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3457), + [aux_sym_preproc_else_token1] = ACTIONS(3457), + [aux_sym_preproc_elif_token1] = ACTIONS(3457), + [sym_preproc_directive] = ACTIONS(3457), + [anon_sym_LPAREN2] = ACTIONS(3459), + [anon_sym_BANG] = ACTIONS(3459), + [anon_sym_TILDE] = ACTIONS(3459), + [anon_sym_DASH] = ACTIONS(3457), + [anon_sym_PLUS] = ACTIONS(3457), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_AMP] = ACTIONS(3457), + [anon_sym_SEMI] = ACTIONS(3459), + [anon_sym___extension__] = ACTIONS(3457), + [anon_sym_typedef] = ACTIONS(3457), + [anon_sym_extern] = ACTIONS(3457), + [anon_sym___attribute__] = ACTIONS(3457), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3459), + [anon_sym___declspec] = ACTIONS(3457), + [anon_sym___based] = ACTIONS(3457), + [anon_sym___cdecl] = ACTIONS(3457), + [anon_sym___clrcall] = ACTIONS(3457), + [anon_sym___stdcall] = ACTIONS(3457), + [anon_sym___fastcall] = ACTIONS(3457), + [anon_sym___thiscall] = ACTIONS(3457), + [anon_sym___vectorcall] = ACTIONS(3457), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_signed] = ACTIONS(3457), + [anon_sym_unsigned] = ACTIONS(3457), + [anon_sym_long] = ACTIONS(3457), + [anon_sym_short] = ACTIONS(3457), + [anon_sym_LBRACK] = ACTIONS(3457), + [anon_sym_static] = ACTIONS(3457), + [anon_sym_register] = ACTIONS(3457), + [anon_sym_inline] = ACTIONS(3457), + [anon_sym___inline] = ACTIONS(3457), + [anon_sym___inline__] = ACTIONS(3457), + [anon_sym___forceinline] = ACTIONS(3457), + [anon_sym_thread_local] = ACTIONS(3457), + [anon_sym___thread] = ACTIONS(3457), + [anon_sym_const] = ACTIONS(3457), + [anon_sym_constexpr] = ACTIONS(3457), + [anon_sym_volatile] = ACTIONS(3457), + [anon_sym_restrict] = ACTIONS(3457), + [anon_sym___restrict__] = ACTIONS(3457), + [anon_sym__Atomic] = ACTIONS(3457), + [anon_sym__Noreturn] = ACTIONS(3457), + [anon_sym_noreturn] = ACTIONS(3457), + [anon_sym_mutable] = ACTIONS(3457), + [anon_sym_constinit] = ACTIONS(3457), + [anon_sym_consteval] = ACTIONS(3457), + [sym_primitive_type] = ACTIONS(3457), + [anon_sym_enum] = ACTIONS(3457), + [anon_sym_class] = ACTIONS(3457), + [anon_sym_struct] = ACTIONS(3457), + [anon_sym_union] = ACTIONS(3457), + [anon_sym_if] = ACTIONS(3457), + [anon_sym_switch] = ACTIONS(3457), + [anon_sym_case] = ACTIONS(3457), + [anon_sym_default] = ACTIONS(3457), + [anon_sym_while] = ACTIONS(3457), + [anon_sym_do] = ACTIONS(3457), + [anon_sym_for] = ACTIONS(3457), + [anon_sym_return] = ACTIONS(3457), + [anon_sym_break] = ACTIONS(3457), + [anon_sym_continue] = ACTIONS(3457), + [anon_sym_goto] = ACTIONS(3457), + [anon_sym___try] = ACTIONS(3457), + [anon_sym___leave] = ACTIONS(3457), + [anon_sym_not] = ACTIONS(3457), + [anon_sym_compl] = ACTIONS(3457), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_sizeof] = ACTIONS(3457), + [anon_sym___alignof__] = ACTIONS(3457), + [anon_sym___alignof] = ACTIONS(3457), + [anon_sym__alignof] = ACTIONS(3457), + [anon_sym_alignof] = ACTIONS(3457), + [anon_sym__Alignof] = ACTIONS(3457), + [anon_sym_offsetof] = ACTIONS(3457), + [anon_sym__Generic] = ACTIONS(3457), + [anon_sym_asm] = ACTIONS(3457), + [anon_sym___asm__] = ACTIONS(3457), + [sym_number_literal] = ACTIONS(3459), + [anon_sym_L_SQUOTE] = ACTIONS(3459), + [anon_sym_u_SQUOTE] = ACTIONS(3459), + [anon_sym_U_SQUOTE] = ACTIONS(3459), + [anon_sym_u8_SQUOTE] = ACTIONS(3459), + [anon_sym_SQUOTE] = ACTIONS(3459), + [anon_sym_L_DQUOTE] = ACTIONS(3459), + [anon_sym_u_DQUOTE] = ACTIONS(3459), + [anon_sym_U_DQUOTE] = ACTIONS(3459), + [anon_sym_u8_DQUOTE] = ACTIONS(3459), + [anon_sym_DQUOTE] = ACTIONS(3459), + [sym_true] = ACTIONS(3457), + [sym_false] = ACTIONS(3457), + [anon_sym_NULL] = ACTIONS(3457), + [anon_sym_nullptr] = ACTIONS(3457), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3457), + [anon_sym_decltype] = ACTIONS(3457), + [anon_sym_virtual] = ACTIONS(3457), + [anon_sym_alignas] = ACTIONS(3457), + [anon_sym_explicit] = ACTIONS(3457), + [anon_sym_typename] = ACTIONS(3457), + [anon_sym_template] = ACTIONS(3457), + [anon_sym_operator] = ACTIONS(3457), + [anon_sym_try] = ACTIONS(3457), + [anon_sym_delete] = ACTIONS(3457), + [anon_sym_throw] = ACTIONS(3457), + [anon_sym_namespace] = ACTIONS(3457), + [anon_sym_using] = ACTIONS(3457), + [anon_sym_static_assert] = ACTIONS(3457), + [anon_sym_concept] = ACTIONS(3457), + [anon_sym_co_return] = ACTIONS(3457), + [anon_sym_co_yield] = ACTIONS(3457), + [anon_sym_R_DQUOTE] = ACTIONS(3459), + [anon_sym_LR_DQUOTE] = ACTIONS(3459), + [anon_sym_uR_DQUOTE] = ACTIONS(3459), + [anon_sym_UR_DQUOTE] = ACTIONS(3459), + [anon_sym_u8R_DQUOTE] = ACTIONS(3459), + [anon_sym_co_await] = ACTIONS(3457), + [anon_sym_new] = ACTIONS(3457), + [anon_sym_requires] = ACTIONS(3457), + [sym_this] = ACTIONS(3457), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3459), + [sym_semgrep_named_ellipsis] = ACTIONS(3459), + }, + [509] = { + [sym_identifier] = ACTIONS(3461), + [aux_sym_preproc_include_token1] = ACTIONS(3461), + [aux_sym_preproc_def_token1] = ACTIONS(3461), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3463), + [aux_sym_preproc_if_token1] = ACTIONS(3461), + [aux_sym_preproc_if_token2] = ACTIONS(3461), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3461), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3461), + [aux_sym_preproc_else_token1] = ACTIONS(3461), + [aux_sym_preproc_elif_token1] = ACTIONS(3461), + [sym_preproc_directive] = ACTIONS(3461), + [anon_sym_LPAREN2] = ACTIONS(3463), + [anon_sym_BANG] = ACTIONS(3463), + [anon_sym_TILDE] = ACTIONS(3463), + [anon_sym_DASH] = ACTIONS(3461), + [anon_sym_PLUS] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3463), + [anon_sym_AMP_AMP] = ACTIONS(3463), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_SEMI] = ACTIONS(3463), + [anon_sym___extension__] = ACTIONS(3461), + [anon_sym_typedef] = ACTIONS(3461), + [anon_sym_extern] = ACTIONS(3461), + [anon_sym___attribute__] = ACTIONS(3461), + [anon_sym_COLON_COLON] = ACTIONS(3463), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3463), + [anon_sym___declspec] = ACTIONS(3461), + [anon_sym___based] = ACTIONS(3461), + [anon_sym___cdecl] = ACTIONS(3461), + [anon_sym___clrcall] = ACTIONS(3461), + [anon_sym___stdcall] = ACTIONS(3461), + [anon_sym___fastcall] = ACTIONS(3461), + [anon_sym___thiscall] = ACTIONS(3461), + [anon_sym___vectorcall] = ACTIONS(3461), + [anon_sym_LBRACE] = ACTIONS(3463), + [anon_sym_signed] = ACTIONS(3461), + [anon_sym_unsigned] = ACTIONS(3461), + [anon_sym_long] = ACTIONS(3461), [anon_sym_short] = ACTIONS(3461), [anon_sym_LBRACK] = ACTIONS(3461), [anon_sym_static] = ACTIONS(3461), @@ -137172,1514 +126245,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3463), [sym_semgrep_named_ellipsis] = ACTIONS(3463), }, - [518] = { - [sym_identifier] = ACTIONS(3384), - [aux_sym_preproc_include_token1] = ACTIONS(3384), - [aux_sym_preproc_def_token1] = ACTIONS(3384), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3386), - [aux_sym_preproc_if_token1] = ACTIONS(3384), - [aux_sym_preproc_if_token2] = ACTIONS(3384), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3384), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3384), - [aux_sym_preproc_else_token1] = ACTIONS(3384), - [aux_sym_preproc_elif_token1] = ACTIONS(3384), - [sym_preproc_directive] = ACTIONS(3384), - [anon_sym_LPAREN2] = ACTIONS(3386), - [anon_sym_BANG] = ACTIONS(3386), - [anon_sym_TILDE] = ACTIONS(3386), - [anon_sym_DASH] = ACTIONS(3384), - [anon_sym_PLUS] = ACTIONS(3384), - [anon_sym_STAR] = ACTIONS(3386), - [anon_sym_AMP_AMP] = ACTIONS(3386), - [anon_sym_AMP] = ACTIONS(3384), - [anon_sym_SEMI] = ACTIONS(3386), - [anon_sym___extension__] = ACTIONS(3384), - [anon_sym_typedef] = ACTIONS(3384), - [anon_sym_extern] = ACTIONS(3384), - [anon_sym___attribute__] = ACTIONS(3384), - [anon_sym_COLON_COLON] = ACTIONS(3386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3386), - [anon_sym___declspec] = ACTIONS(3384), - [anon_sym___based] = ACTIONS(3384), - [anon_sym___cdecl] = ACTIONS(3384), - [anon_sym___clrcall] = ACTIONS(3384), - [anon_sym___stdcall] = ACTIONS(3384), - [anon_sym___fastcall] = ACTIONS(3384), - [anon_sym___thiscall] = ACTIONS(3384), - [anon_sym___vectorcall] = ACTIONS(3384), - [anon_sym_LBRACE] = ACTIONS(3386), - [anon_sym_signed] = ACTIONS(3384), - [anon_sym_unsigned] = ACTIONS(3384), - [anon_sym_long] = ACTIONS(3384), - [anon_sym_short] = ACTIONS(3384), - [anon_sym_LBRACK] = ACTIONS(3384), - [anon_sym_static] = ACTIONS(3384), - [anon_sym_register] = ACTIONS(3384), - [anon_sym_inline] = ACTIONS(3384), - [anon_sym___inline] = ACTIONS(3384), - [anon_sym___inline__] = ACTIONS(3384), - [anon_sym___forceinline] = ACTIONS(3384), - [anon_sym_thread_local] = ACTIONS(3384), - [anon_sym___thread] = ACTIONS(3384), - [anon_sym_const] = ACTIONS(3384), - [anon_sym_constexpr] = ACTIONS(3384), - [anon_sym_volatile] = ACTIONS(3384), - [anon_sym_restrict] = ACTIONS(3384), - [anon_sym___restrict__] = ACTIONS(3384), - [anon_sym__Atomic] = ACTIONS(3384), - [anon_sym__Noreturn] = ACTIONS(3384), - [anon_sym_noreturn] = ACTIONS(3384), - [anon_sym_mutable] = ACTIONS(3384), - [anon_sym_constinit] = ACTIONS(3384), - [anon_sym_consteval] = ACTIONS(3384), - [sym_primitive_type] = ACTIONS(3384), - [anon_sym_enum] = ACTIONS(3384), - [anon_sym_class] = ACTIONS(3384), - [anon_sym_struct] = ACTIONS(3384), - [anon_sym_union] = ACTIONS(3384), - [anon_sym_if] = ACTIONS(3384), - [anon_sym_switch] = ACTIONS(3384), - [anon_sym_case] = ACTIONS(3384), - [anon_sym_default] = ACTIONS(3384), - [anon_sym_while] = ACTIONS(3384), - [anon_sym_do] = ACTIONS(3384), - [anon_sym_for] = ACTIONS(3384), - [anon_sym_return] = ACTIONS(3384), - [anon_sym_break] = ACTIONS(3384), - [anon_sym_continue] = ACTIONS(3384), - [anon_sym_goto] = ACTIONS(3384), - [anon_sym___try] = ACTIONS(3384), - [anon_sym___leave] = ACTIONS(3384), - [anon_sym_not] = ACTIONS(3384), - [anon_sym_compl] = ACTIONS(3384), - [anon_sym_DASH_DASH] = ACTIONS(3386), - [anon_sym_PLUS_PLUS] = ACTIONS(3386), - [anon_sym_sizeof] = ACTIONS(3384), - [anon_sym___alignof__] = ACTIONS(3384), - [anon_sym___alignof] = ACTIONS(3384), - [anon_sym__alignof] = ACTIONS(3384), - [anon_sym_alignof] = ACTIONS(3384), - [anon_sym__Alignof] = ACTIONS(3384), - [anon_sym_offsetof] = ACTIONS(3384), - [anon_sym__Generic] = ACTIONS(3384), - [anon_sym_asm] = ACTIONS(3384), - [anon_sym___asm__] = ACTIONS(3384), - [sym_number_literal] = ACTIONS(3386), - [anon_sym_L_SQUOTE] = ACTIONS(3386), - [anon_sym_u_SQUOTE] = ACTIONS(3386), - [anon_sym_U_SQUOTE] = ACTIONS(3386), - [anon_sym_u8_SQUOTE] = ACTIONS(3386), - [anon_sym_SQUOTE] = ACTIONS(3386), - [anon_sym_L_DQUOTE] = ACTIONS(3386), - [anon_sym_u_DQUOTE] = ACTIONS(3386), - [anon_sym_U_DQUOTE] = ACTIONS(3386), - [anon_sym_u8_DQUOTE] = ACTIONS(3386), - [anon_sym_DQUOTE] = ACTIONS(3386), - [sym_true] = ACTIONS(3384), - [sym_false] = ACTIONS(3384), - [anon_sym_NULL] = ACTIONS(3384), - [anon_sym_nullptr] = ACTIONS(3384), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3384), - [anon_sym_decltype] = ACTIONS(3384), - [anon_sym_virtual] = ACTIONS(3384), - [anon_sym_alignas] = ACTIONS(3384), - [anon_sym_explicit] = ACTIONS(3384), - [anon_sym_typename] = ACTIONS(3384), - [anon_sym_template] = ACTIONS(3384), - [anon_sym_operator] = ACTIONS(3384), - [anon_sym_try] = ACTIONS(3384), - [anon_sym_delete] = ACTIONS(3384), - [anon_sym_throw] = ACTIONS(3384), - [anon_sym_namespace] = ACTIONS(3384), - [anon_sym_using] = ACTIONS(3384), - [anon_sym_static_assert] = ACTIONS(3384), - [anon_sym_concept] = ACTIONS(3384), - [anon_sym_co_return] = ACTIONS(3384), - [anon_sym_co_yield] = ACTIONS(3384), - [anon_sym_R_DQUOTE] = ACTIONS(3386), - [anon_sym_LR_DQUOTE] = ACTIONS(3386), - [anon_sym_uR_DQUOTE] = ACTIONS(3386), - [anon_sym_UR_DQUOTE] = ACTIONS(3386), - [anon_sym_u8R_DQUOTE] = ACTIONS(3386), - [anon_sym_co_await] = ACTIONS(3384), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3384), - [sym_this] = ACTIONS(3384), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3386), - [sym_semgrep_named_ellipsis] = ACTIONS(3386), - }, - [519] = { - [sym_identifier] = ACTIONS(3473), - [aux_sym_preproc_include_token1] = ACTIONS(3473), - [aux_sym_preproc_def_token1] = ACTIONS(3473), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3475), - [aux_sym_preproc_if_token1] = ACTIONS(3473), - [aux_sym_preproc_if_token2] = ACTIONS(3473), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3473), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3473), - [aux_sym_preproc_else_token1] = ACTIONS(3473), - [aux_sym_preproc_elif_token1] = ACTIONS(3473), - [sym_preproc_directive] = ACTIONS(3473), - [anon_sym_LPAREN2] = ACTIONS(3475), - [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(3475), - [anon_sym_DASH] = ACTIONS(3473), - [anon_sym_PLUS] = ACTIONS(3473), - [anon_sym_STAR] = ACTIONS(3475), - [anon_sym_AMP_AMP] = ACTIONS(3475), - [anon_sym_AMP] = ACTIONS(3473), - [anon_sym_SEMI] = ACTIONS(3475), - [anon_sym___extension__] = ACTIONS(3473), - [anon_sym_typedef] = ACTIONS(3473), - [anon_sym_extern] = ACTIONS(3473), - [anon_sym___attribute__] = ACTIONS(3473), - [anon_sym_COLON_COLON] = ACTIONS(3475), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3475), - [anon_sym___declspec] = ACTIONS(3473), - [anon_sym___based] = ACTIONS(3473), - [anon_sym___cdecl] = ACTIONS(3473), - [anon_sym___clrcall] = ACTIONS(3473), - [anon_sym___stdcall] = ACTIONS(3473), - [anon_sym___fastcall] = ACTIONS(3473), - [anon_sym___thiscall] = ACTIONS(3473), - [anon_sym___vectorcall] = ACTIONS(3473), - [anon_sym_LBRACE] = ACTIONS(3475), - [anon_sym_signed] = ACTIONS(3473), - [anon_sym_unsigned] = ACTIONS(3473), - [anon_sym_long] = ACTIONS(3473), - [anon_sym_short] = ACTIONS(3473), - [anon_sym_LBRACK] = ACTIONS(3473), - [anon_sym_static] = ACTIONS(3473), - [anon_sym_register] = ACTIONS(3473), - [anon_sym_inline] = ACTIONS(3473), - [anon_sym___inline] = ACTIONS(3473), - [anon_sym___inline__] = ACTIONS(3473), - [anon_sym___forceinline] = ACTIONS(3473), - [anon_sym_thread_local] = ACTIONS(3473), - [anon_sym___thread] = ACTIONS(3473), - [anon_sym_const] = ACTIONS(3473), - [anon_sym_constexpr] = ACTIONS(3473), - [anon_sym_volatile] = ACTIONS(3473), - [anon_sym_restrict] = ACTIONS(3473), - [anon_sym___restrict__] = ACTIONS(3473), - [anon_sym__Atomic] = ACTIONS(3473), - [anon_sym__Noreturn] = ACTIONS(3473), - [anon_sym_noreturn] = ACTIONS(3473), - [anon_sym_mutable] = ACTIONS(3473), - [anon_sym_constinit] = ACTIONS(3473), - [anon_sym_consteval] = ACTIONS(3473), - [sym_primitive_type] = ACTIONS(3473), - [anon_sym_enum] = ACTIONS(3473), - [anon_sym_class] = ACTIONS(3473), - [anon_sym_struct] = ACTIONS(3473), - [anon_sym_union] = ACTIONS(3473), - [anon_sym_if] = ACTIONS(3473), - [anon_sym_switch] = ACTIONS(3473), - [anon_sym_case] = ACTIONS(3473), - [anon_sym_default] = ACTIONS(3473), - [anon_sym_while] = ACTIONS(3473), - [anon_sym_do] = ACTIONS(3473), - [anon_sym_for] = ACTIONS(3473), - [anon_sym_return] = ACTIONS(3473), - [anon_sym_break] = ACTIONS(3473), - [anon_sym_continue] = ACTIONS(3473), - [anon_sym_goto] = ACTIONS(3473), - [anon_sym___try] = ACTIONS(3473), - [anon_sym___leave] = ACTIONS(3473), - [anon_sym_not] = ACTIONS(3473), - [anon_sym_compl] = ACTIONS(3473), - [anon_sym_DASH_DASH] = ACTIONS(3475), - [anon_sym_PLUS_PLUS] = ACTIONS(3475), - [anon_sym_sizeof] = ACTIONS(3473), - [anon_sym___alignof__] = ACTIONS(3473), - [anon_sym___alignof] = ACTIONS(3473), - [anon_sym__alignof] = ACTIONS(3473), - [anon_sym_alignof] = ACTIONS(3473), - [anon_sym__Alignof] = ACTIONS(3473), - [anon_sym_offsetof] = ACTIONS(3473), - [anon_sym__Generic] = ACTIONS(3473), - [anon_sym_asm] = ACTIONS(3473), - [anon_sym___asm__] = ACTIONS(3473), - [sym_number_literal] = ACTIONS(3475), - [anon_sym_L_SQUOTE] = ACTIONS(3475), - [anon_sym_u_SQUOTE] = ACTIONS(3475), - [anon_sym_U_SQUOTE] = ACTIONS(3475), - [anon_sym_u8_SQUOTE] = ACTIONS(3475), - [anon_sym_SQUOTE] = ACTIONS(3475), - [anon_sym_L_DQUOTE] = ACTIONS(3475), - [anon_sym_u_DQUOTE] = ACTIONS(3475), - [anon_sym_U_DQUOTE] = ACTIONS(3475), - [anon_sym_u8_DQUOTE] = ACTIONS(3475), - [anon_sym_DQUOTE] = ACTIONS(3475), - [sym_true] = ACTIONS(3473), - [sym_false] = ACTIONS(3473), - [anon_sym_NULL] = ACTIONS(3473), - [anon_sym_nullptr] = ACTIONS(3473), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3473), - [anon_sym_decltype] = ACTIONS(3473), - [anon_sym_virtual] = ACTIONS(3473), - [anon_sym_alignas] = ACTIONS(3473), - [anon_sym_explicit] = ACTIONS(3473), - [anon_sym_typename] = ACTIONS(3473), - [anon_sym_template] = ACTIONS(3473), - [anon_sym_operator] = ACTIONS(3473), - [anon_sym_try] = ACTIONS(3473), - [anon_sym_delete] = ACTIONS(3473), - [anon_sym_throw] = ACTIONS(3473), - [anon_sym_namespace] = ACTIONS(3473), - [anon_sym_using] = ACTIONS(3473), - [anon_sym_static_assert] = ACTIONS(3473), - [anon_sym_concept] = ACTIONS(3473), - [anon_sym_co_return] = ACTIONS(3473), - [anon_sym_co_yield] = ACTIONS(3473), - [anon_sym_R_DQUOTE] = ACTIONS(3475), - [anon_sym_LR_DQUOTE] = ACTIONS(3475), - [anon_sym_uR_DQUOTE] = ACTIONS(3475), - [anon_sym_UR_DQUOTE] = ACTIONS(3475), - [anon_sym_u8R_DQUOTE] = ACTIONS(3475), - [anon_sym_co_await] = ACTIONS(3473), - [anon_sym_new] = ACTIONS(3473), - [anon_sym_requires] = ACTIONS(3473), - [sym_this] = ACTIONS(3473), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3475), - [sym_semgrep_named_ellipsis] = ACTIONS(3475), - }, - [520] = { - [sym_identifier] = ACTIONS(3652), - [aux_sym_preproc_include_token1] = ACTIONS(3652), - [aux_sym_preproc_def_token1] = ACTIONS(3652), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3654), - [aux_sym_preproc_if_token1] = ACTIONS(3652), - [aux_sym_preproc_if_token2] = ACTIONS(3652), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3652), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3652), - [aux_sym_preproc_else_token1] = ACTIONS(3652), - [aux_sym_preproc_elif_token1] = ACTIONS(3652), - [sym_preproc_directive] = ACTIONS(3652), - [anon_sym_LPAREN2] = ACTIONS(3654), - [anon_sym_BANG] = ACTIONS(3654), - [anon_sym_TILDE] = ACTIONS(3654), - [anon_sym_DASH] = ACTIONS(3652), - [anon_sym_PLUS] = ACTIONS(3652), - [anon_sym_STAR] = ACTIONS(3654), - [anon_sym_AMP_AMP] = ACTIONS(3654), - [anon_sym_AMP] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3654), - [anon_sym___extension__] = ACTIONS(3652), - [anon_sym_typedef] = ACTIONS(3652), - [anon_sym_extern] = ACTIONS(3652), - [anon_sym___attribute__] = ACTIONS(3652), - [anon_sym_COLON_COLON] = ACTIONS(3654), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3654), - [anon_sym___declspec] = ACTIONS(3652), - [anon_sym___based] = ACTIONS(3652), - [anon_sym___cdecl] = ACTIONS(3652), - [anon_sym___clrcall] = ACTIONS(3652), - [anon_sym___stdcall] = ACTIONS(3652), - [anon_sym___fastcall] = ACTIONS(3652), - [anon_sym___thiscall] = ACTIONS(3652), - [anon_sym___vectorcall] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3654), - [anon_sym_signed] = ACTIONS(3652), - [anon_sym_unsigned] = ACTIONS(3652), - [anon_sym_long] = ACTIONS(3652), - [anon_sym_short] = ACTIONS(3652), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_static] = ACTIONS(3652), - [anon_sym_register] = ACTIONS(3652), - [anon_sym_inline] = ACTIONS(3652), - [anon_sym___inline] = ACTIONS(3652), - [anon_sym___inline__] = ACTIONS(3652), - [anon_sym___forceinline] = ACTIONS(3652), - [anon_sym_thread_local] = ACTIONS(3652), - [anon_sym___thread] = ACTIONS(3652), - [anon_sym_const] = ACTIONS(3652), - [anon_sym_constexpr] = ACTIONS(3652), - [anon_sym_volatile] = ACTIONS(3652), - [anon_sym_restrict] = ACTIONS(3652), - [anon_sym___restrict__] = ACTIONS(3652), - [anon_sym__Atomic] = ACTIONS(3652), - [anon_sym__Noreturn] = ACTIONS(3652), - [anon_sym_noreturn] = ACTIONS(3652), - [anon_sym_mutable] = ACTIONS(3652), - [anon_sym_constinit] = ACTIONS(3652), - [anon_sym_consteval] = ACTIONS(3652), - [sym_primitive_type] = ACTIONS(3652), - [anon_sym_enum] = ACTIONS(3652), - [anon_sym_class] = ACTIONS(3652), - [anon_sym_struct] = ACTIONS(3652), - [anon_sym_union] = ACTIONS(3652), - [anon_sym_if] = ACTIONS(3652), - [anon_sym_switch] = ACTIONS(3652), - [anon_sym_case] = ACTIONS(3652), - [anon_sym_default] = ACTIONS(3652), - [anon_sym_while] = ACTIONS(3652), - [anon_sym_do] = ACTIONS(3652), - [anon_sym_for] = ACTIONS(3652), - [anon_sym_return] = ACTIONS(3652), - [anon_sym_break] = ACTIONS(3652), - [anon_sym_continue] = ACTIONS(3652), - [anon_sym_goto] = ACTIONS(3652), - [anon_sym___try] = ACTIONS(3652), - [anon_sym___leave] = ACTIONS(3652), - [anon_sym_not] = ACTIONS(3652), - [anon_sym_compl] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3654), - [anon_sym_PLUS_PLUS] = ACTIONS(3654), - [anon_sym_sizeof] = ACTIONS(3652), - [anon_sym___alignof__] = ACTIONS(3652), - [anon_sym___alignof] = ACTIONS(3652), - [anon_sym__alignof] = ACTIONS(3652), - [anon_sym_alignof] = ACTIONS(3652), - [anon_sym__Alignof] = ACTIONS(3652), - [anon_sym_offsetof] = ACTIONS(3652), - [anon_sym__Generic] = ACTIONS(3652), - [anon_sym_asm] = ACTIONS(3652), - [anon_sym___asm__] = ACTIONS(3652), - [sym_number_literal] = ACTIONS(3654), - [anon_sym_L_SQUOTE] = ACTIONS(3654), - [anon_sym_u_SQUOTE] = ACTIONS(3654), - [anon_sym_U_SQUOTE] = ACTIONS(3654), - [anon_sym_u8_SQUOTE] = ACTIONS(3654), - [anon_sym_SQUOTE] = ACTIONS(3654), - [anon_sym_L_DQUOTE] = ACTIONS(3654), - [anon_sym_u_DQUOTE] = ACTIONS(3654), - [anon_sym_U_DQUOTE] = ACTIONS(3654), - [anon_sym_u8_DQUOTE] = ACTIONS(3654), - [anon_sym_DQUOTE] = ACTIONS(3654), - [sym_true] = ACTIONS(3652), - [sym_false] = ACTIONS(3652), - [anon_sym_NULL] = ACTIONS(3652), - [anon_sym_nullptr] = ACTIONS(3652), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3652), - [anon_sym_decltype] = ACTIONS(3652), - [anon_sym_virtual] = ACTIONS(3652), - [anon_sym_alignas] = ACTIONS(3652), - [anon_sym_explicit] = ACTIONS(3652), - [anon_sym_typename] = ACTIONS(3652), - [anon_sym_template] = ACTIONS(3652), - [anon_sym_operator] = ACTIONS(3652), - [anon_sym_try] = ACTIONS(3652), - [anon_sym_delete] = ACTIONS(3652), - [anon_sym_throw] = ACTIONS(3652), - [anon_sym_namespace] = ACTIONS(3652), - [anon_sym_using] = ACTIONS(3652), - [anon_sym_static_assert] = ACTIONS(3652), - [anon_sym_concept] = ACTIONS(3652), - [anon_sym_co_return] = ACTIONS(3652), - [anon_sym_co_yield] = ACTIONS(3652), - [anon_sym_R_DQUOTE] = ACTIONS(3654), - [anon_sym_LR_DQUOTE] = ACTIONS(3654), - [anon_sym_uR_DQUOTE] = ACTIONS(3654), - [anon_sym_UR_DQUOTE] = ACTIONS(3654), - [anon_sym_u8R_DQUOTE] = ACTIONS(3654), - [anon_sym_co_await] = ACTIONS(3652), - [anon_sym_new] = ACTIONS(3652), - [anon_sym_requires] = ACTIONS(3652), - [sym_this] = ACTIONS(3652), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3654), - [sym_semgrep_named_ellipsis] = ACTIONS(3654), - }, - [521] = { - [sym_identifier] = ACTIONS(3503), - [aux_sym_preproc_include_token1] = ACTIONS(3503), - [aux_sym_preproc_def_token1] = ACTIONS(3503), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3505), - [aux_sym_preproc_if_token1] = ACTIONS(3503), - [aux_sym_preproc_if_token2] = ACTIONS(3503), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3503), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3503), - [aux_sym_preproc_else_token1] = ACTIONS(3503), - [aux_sym_preproc_elif_token1] = ACTIONS(3503), - [sym_preproc_directive] = ACTIONS(3503), - [anon_sym_LPAREN2] = ACTIONS(3505), - [anon_sym_BANG] = ACTIONS(3505), - [anon_sym_TILDE] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3503), - [anon_sym_PLUS] = ACTIONS(3503), - [anon_sym_STAR] = ACTIONS(3505), - [anon_sym_AMP_AMP] = ACTIONS(3505), - [anon_sym_AMP] = ACTIONS(3503), - [anon_sym_SEMI] = ACTIONS(3505), - [anon_sym___extension__] = ACTIONS(3503), - [anon_sym_typedef] = ACTIONS(3503), - [anon_sym_extern] = ACTIONS(3503), - [anon_sym___attribute__] = ACTIONS(3503), - [anon_sym_COLON_COLON] = ACTIONS(3505), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3505), - [anon_sym___declspec] = ACTIONS(3503), - [anon_sym___based] = ACTIONS(3503), - [anon_sym___cdecl] = ACTIONS(3503), - [anon_sym___clrcall] = ACTIONS(3503), - [anon_sym___stdcall] = ACTIONS(3503), - [anon_sym___fastcall] = ACTIONS(3503), - [anon_sym___thiscall] = ACTIONS(3503), - [anon_sym___vectorcall] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_signed] = ACTIONS(3503), - [anon_sym_unsigned] = ACTIONS(3503), - [anon_sym_long] = ACTIONS(3503), - [anon_sym_short] = ACTIONS(3503), - [anon_sym_LBRACK] = ACTIONS(3503), - [anon_sym_static] = ACTIONS(3503), - [anon_sym_register] = ACTIONS(3503), - [anon_sym_inline] = ACTIONS(3503), - [anon_sym___inline] = ACTIONS(3503), - [anon_sym___inline__] = ACTIONS(3503), - [anon_sym___forceinline] = ACTIONS(3503), - [anon_sym_thread_local] = ACTIONS(3503), - [anon_sym___thread] = ACTIONS(3503), - [anon_sym_const] = ACTIONS(3503), - [anon_sym_constexpr] = ACTIONS(3503), - [anon_sym_volatile] = ACTIONS(3503), - [anon_sym_restrict] = ACTIONS(3503), - [anon_sym___restrict__] = ACTIONS(3503), - [anon_sym__Atomic] = ACTIONS(3503), - [anon_sym__Noreturn] = ACTIONS(3503), - [anon_sym_noreturn] = ACTIONS(3503), - [anon_sym_mutable] = ACTIONS(3503), - [anon_sym_constinit] = ACTIONS(3503), - [anon_sym_consteval] = ACTIONS(3503), - [sym_primitive_type] = ACTIONS(3503), - [anon_sym_enum] = ACTIONS(3503), - [anon_sym_class] = ACTIONS(3503), - [anon_sym_struct] = ACTIONS(3503), - [anon_sym_union] = ACTIONS(3503), - [anon_sym_if] = ACTIONS(3503), - [anon_sym_switch] = ACTIONS(3503), - [anon_sym_case] = ACTIONS(3503), - [anon_sym_default] = ACTIONS(3503), - [anon_sym_while] = ACTIONS(3503), - [anon_sym_do] = ACTIONS(3503), - [anon_sym_for] = ACTIONS(3503), - [anon_sym_return] = ACTIONS(3503), - [anon_sym_break] = ACTIONS(3503), - [anon_sym_continue] = ACTIONS(3503), - [anon_sym_goto] = ACTIONS(3503), - [anon_sym___try] = ACTIONS(3503), - [anon_sym___leave] = ACTIONS(3503), - [anon_sym_not] = ACTIONS(3503), - [anon_sym_compl] = ACTIONS(3503), - [anon_sym_DASH_DASH] = ACTIONS(3505), - [anon_sym_PLUS_PLUS] = ACTIONS(3505), - [anon_sym_sizeof] = ACTIONS(3503), - [anon_sym___alignof__] = ACTIONS(3503), - [anon_sym___alignof] = ACTIONS(3503), - [anon_sym__alignof] = ACTIONS(3503), - [anon_sym_alignof] = ACTIONS(3503), - [anon_sym__Alignof] = ACTIONS(3503), - [anon_sym_offsetof] = ACTIONS(3503), - [anon_sym__Generic] = ACTIONS(3503), - [anon_sym_asm] = ACTIONS(3503), - [anon_sym___asm__] = ACTIONS(3503), - [sym_number_literal] = ACTIONS(3505), - [anon_sym_L_SQUOTE] = ACTIONS(3505), - [anon_sym_u_SQUOTE] = ACTIONS(3505), - [anon_sym_U_SQUOTE] = ACTIONS(3505), - [anon_sym_u8_SQUOTE] = ACTIONS(3505), - [anon_sym_SQUOTE] = ACTIONS(3505), - [anon_sym_L_DQUOTE] = ACTIONS(3505), - [anon_sym_u_DQUOTE] = ACTIONS(3505), - [anon_sym_U_DQUOTE] = ACTIONS(3505), - [anon_sym_u8_DQUOTE] = ACTIONS(3505), - [anon_sym_DQUOTE] = ACTIONS(3505), - [sym_true] = ACTIONS(3503), - [sym_false] = ACTIONS(3503), - [anon_sym_NULL] = ACTIONS(3503), - [anon_sym_nullptr] = ACTIONS(3503), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3503), - [anon_sym_decltype] = ACTIONS(3503), - [anon_sym_virtual] = ACTIONS(3503), - [anon_sym_alignas] = ACTIONS(3503), - [anon_sym_explicit] = ACTIONS(3503), - [anon_sym_typename] = ACTIONS(3503), - [anon_sym_template] = ACTIONS(3503), - [anon_sym_operator] = ACTIONS(3503), - [anon_sym_try] = ACTIONS(3503), - [anon_sym_delete] = ACTIONS(3503), - [anon_sym_throw] = ACTIONS(3503), - [anon_sym_namespace] = ACTIONS(3503), - [anon_sym_using] = ACTIONS(3503), - [anon_sym_static_assert] = ACTIONS(3503), - [anon_sym_concept] = ACTIONS(3503), - [anon_sym_co_return] = ACTIONS(3503), - [anon_sym_co_yield] = ACTIONS(3503), - [anon_sym_R_DQUOTE] = ACTIONS(3505), - [anon_sym_LR_DQUOTE] = ACTIONS(3505), - [anon_sym_uR_DQUOTE] = ACTIONS(3505), - [anon_sym_UR_DQUOTE] = ACTIONS(3505), - [anon_sym_u8R_DQUOTE] = ACTIONS(3505), - [anon_sym_co_await] = ACTIONS(3503), - [anon_sym_new] = ACTIONS(3503), - [anon_sym_requires] = ACTIONS(3503), - [sym_this] = ACTIONS(3503), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3505), - [sym_semgrep_named_ellipsis] = ACTIONS(3505), - }, - [522] = { - [sym_identifier] = ACTIONS(3515), - [aux_sym_preproc_include_token1] = ACTIONS(3515), - [aux_sym_preproc_def_token1] = ACTIONS(3515), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3517), - [aux_sym_preproc_if_token1] = ACTIONS(3515), - [aux_sym_preproc_if_token2] = ACTIONS(3515), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3515), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3515), - [aux_sym_preproc_else_token1] = ACTIONS(3515), - [aux_sym_preproc_elif_token1] = ACTIONS(3515), - [sym_preproc_directive] = ACTIONS(3515), - [anon_sym_LPAREN2] = ACTIONS(3517), - [anon_sym_BANG] = ACTIONS(3517), - [anon_sym_TILDE] = ACTIONS(3517), - [anon_sym_DASH] = ACTIONS(3515), - [anon_sym_PLUS] = ACTIONS(3515), - [anon_sym_STAR] = ACTIONS(3517), - [anon_sym_AMP_AMP] = ACTIONS(3517), - [anon_sym_AMP] = ACTIONS(3515), - [anon_sym_SEMI] = ACTIONS(3517), - [anon_sym___extension__] = ACTIONS(3515), - [anon_sym_typedef] = ACTIONS(3515), - [anon_sym_extern] = ACTIONS(3515), - [anon_sym___attribute__] = ACTIONS(3515), - [anon_sym_COLON_COLON] = ACTIONS(3517), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3517), - [anon_sym___declspec] = ACTIONS(3515), - [anon_sym___based] = ACTIONS(3515), - [anon_sym___cdecl] = ACTIONS(3515), - [anon_sym___clrcall] = ACTIONS(3515), - [anon_sym___stdcall] = ACTIONS(3515), - [anon_sym___fastcall] = ACTIONS(3515), - [anon_sym___thiscall] = ACTIONS(3515), - [anon_sym___vectorcall] = ACTIONS(3515), - [anon_sym_LBRACE] = ACTIONS(3517), - [anon_sym_signed] = ACTIONS(3515), - [anon_sym_unsigned] = ACTIONS(3515), - [anon_sym_long] = ACTIONS(3515), - [anon_sym_short] = ACTIONS(3515), - [anon_sym_LBRACK] = ACTIONS(3515), - [anon_sym_static] = ACTIONS(3515), - [anon_sym_register] = ACTIONS(3515), - [anon_sym_inline] = ACTIONS(3515), - [anon_sym___inline] = ACTIONS(3515), - [anon_sym___inline__] = ACTIONS(3515), - [anon_sym___forceinline] = ACTIONS(3515), - [anon_sym_thread_local] = ACTIONS(3515), - [anon_sym___thread] = ACTIONS(3515), - [anon_sym_const] = ACTIONS(3515), - [anon_sym_constexpr] = ACTIONS(3515), - [anon_sym_volatile] = ACTIONS(3515), - [anon_sym_restrict] = ACTIONS(3515), - [anon_sym___restrict__] = ACTIONS(3515), - [anon_sym__Atomic] = ACTIONS(3515), - [anon_sym__Noreturn] = ACTIONS(3515), - [anon_sym_noreturn] = ACTIONS(3515), - [anon_sym_mutable] = ACTIONS(3515), - [anon_sym_constinit] = ACTIONS(3515), - [anon_sym_consteval] = ACTIONS(3515), - [sym_primitive_type] = ACTIONS(3515), - [anon_sym_enum] = ACTIONS(3515), - [anon_sym_class] = ACTIONS(3515), - [anon_sym_struct] = ACTIONS(3515), - [anon_sym_union] = ACTIONS(3515), - [anon_sym_if] = ACTIONS(3515), - [anon_sym_switch] = ACTIONS(3515), - [anon_sym_case] = ACTIONS(3515), - [anon_sym_default] = ACTIONS(3515), - [anon_sym_while] = ACTIONS(3515), - [anon_sym_do] = ACTIONS(3515), - [anon_sym_for] = ACTIONS(3515), - [anon_sym_return] = ACTIONS(3515), - [anon_sym_break] = ACTIONS(3515), - [anon_sym_continue] = ACTIONS(3515), - [anon_sym_goto] = ACTIONS(3515), - [anon_sym___try] = ACTIONS(3515), - [anon_sym___leave] = ACTIONS(3515), - [anon_sym_not] = ACTIONS(3515), - [anon_sym_compl] = ACTIONS(3515), - [anon_sym_DASH_DASH] = ACTIONS(3517), - [anon_sym_PLUS_PLUS] = ACTIONS(3517), - [anon_sym_sizeof] = ACTIONS(3515), - [anon_sym___alignof__] = ACTIONS(3515), - [anon_sym___alignof] = ACTIONS(3515), - [anon_sym__alignof] = ACTIONS(3515), - [anon_sym_alignof] = ACTIONS(3515), - [anon_sym__Alignof] = ACTIONS(3515), - [anon_sym_offsetof] = ACTIONS(3515), - [anon_sym__Generic] = ACTIONS(3515), - [anon_sym_asm] = ACTIONS(3515), - [anon_sym___asm__] = ACTIONS(3515), - [sym_number_literal] = ACTIONS(3517), - [anon_sym_L_SQUOTE] = ACTIONS(3517), - [anon_sym_u_SQUOTE] = ACTIONS(3517), - [anon_sym_U_SQUOTE] = ACTIONS(3517), - [anon_sym_u8_SQUOTE] = ACTIONS(3517), - [anon_sym_SQUOTE] = ACTIONS(3517), - [anon_sym_L_DQUOTE] = ACTIONS(3517), - [anon_sym_u_DQUOTE] = ACTIONS(3517), - [anon_sym_U_DQUOTE] = ACTIONS(3517), - [anon_sym_u8_DQUOTE] = ACTIONS(3517), - [anon_sym_DQUOTE] = ACTIONS(3517), - [sym_true] = ACTIONS(3515), - [sym_false] = ACTIONS(3515), - [anon_sym_NULL] = ACTIONS(3515), - [anon_sym_nullptr] = ACTIONS(3515), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3515), - [anon_sym_decltype] = ACTIONS(3515), - [anon_sym_virtual] = ACTIONS(3515), - [anon_sym_alignas] = ACTIONS(3515), - [anon_sym_explicit] = ACTIONS(3515), - [anon_sym_typename] = ACTIONS(3515), - [anon_sym_template] = ACTIONS(3515), - [anon_sym_operator] = ACTIONS(3515), - [anon_sym_try] = ACTIONS(3515), - [anon_sym_delete] = ACTIONS(3515), - [anon_sym_throw] = ACTIONS(3515), - [anon_sym_namespace] = ACTIONS(3515), - [anon_sym_using] = ACTIONS(3515), - [anon_sym_static_assert] = ACTIONS(3515), - [anon_sym_concept] = ACTIONS(3515), - [anon_sym_co_return] = ACTIONS(3515), - [anon_sym_co_yield] = ACTIONS(3515), - [anon_sym_R_DQUOTE] = ACTIONS(3517), - [anon_sym_LR_DQUOTE] = ACTIONS(3517), - [anon_sym_uR_DQUOTE] = ACTIONS(3517), - [anon_sym_UR_DQUOTE] = ACTIONS(3517), - [anon_sym_u8R_DQUOTE] = ACTIONS(3517), - [anon_sym_co_await] = ACTIONS(3515), - [anon_sym_new] = ACTIONS(3515), - [anon_sym_requires] = ACTIONS(3515), - [sym_this] = ACTIONS(3515), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3517), - [sym_semgrep_named_ellipsis] = ACTIONS(3517), - }, - [523] = { - [sym_identifier] = ACTIONS(3078), - [aux_sym_preproc_include_token1] = ACTIONS(3078), - [aux_sym_preproc_def_token1] = ACTIONS(3078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3080), - [aux_sym_preproc_if_token1] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3078), - [sym_preproc_directive] = ACTIONS(3078), - [anon_sym_LPAREN2] = ACTIONS(3080), - [anon_sym_BANG] = ACTIONS(3080), - [anon_sym_TILDE] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym_SEMI] = ACTIONS(3080), - [anon_sym___extension__] = ACTIONS(3078), - [anon_sym_typedef] = ACTIONS(3078), - [anon_sym_extern] = ACTIONS(3078), - [anon_sym___attribute__] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3080), - [anon_sym___declspec] = ACTIONS(3078), - [anon_sym___based] = ACTIONS(3078), - [anon_sym___cdecl] = ACTIONS(3078), - [anon_sym___clrcall] = ACTIONS(3078), - [anon_sym___stdcall] = ACTIONS(3078), - [anon_sym___fastcall] = ACTIONS(3078), - [anon_sym___thiscall] = ACTIONS(3078), - [anon_sym___vectorcall] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_RBRACE] = ACTIONS(3080), - [anon_sym_signed] = ACTIONS(3078), - [anon_sym_unsigned] = ACTIONS(3078), - [anon_sym_long] = ACTIONS(3078), - [anon_sym_short] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_static] = ACTIONS(3078), - [anon_sym_register] = ACTIONS(3078), - [anon_sym_inline] = ACTIONS(3078), - [anon_sym___inline] = ACTIONS(3078), - [anon_sym___inline__] = ACTIONS(3078), - [anon_sym___forceinline] = ACTIONS(3078), - [anon_sym_thread_local] = ACTIONS(3078), - [anon_sym___thread] = ACTIONS(3078), - [anon_sym_const] = ACTIONS(3078), - [anon_sym_constexpr] = ACTIONS(3078), - [anon_sym_volatile] = ACTIONS(3078), - [anon_sym_restrict] = ACTIONS(3078), - [anon_sym___restrict__] = ACTIONS(3078), - [anon_sym__Atomic] = ACTIONS(3078), - [anon_sym__Noreturn] = ACTIONS(3078), - [anon_sym_noreturn] = ACTIONS(3078), - [anon_sym_mutable] = ACTIONS(3078), - [anon_sym_constinit] = ACTIONS(3078), - [anon_sym_consteval] = ACTIONS(3078), - [sym_primitive_type] = ACTIONS(3078), - [anon_sym_enum] = ACTIONS(3078), - [anon_sym_class] = ACTIONS(3078), - [anon_sym_struct] = ACTIONS(3078), - [anon_sym_union] = ACTIONS(3078), - [anon_sym_if] = ACTIONS(3078), - [anon_sym_else] = ACTIONS(3078), - [anon_sym_switch] = ACTIONS(3078), - [anon_sym_case] = ACTIONS(3078), - [anon_sym_default] = ACTIONS(3078), - [anon_sym_while] = ACTIONS(3078), - [anon_sym_do] = ACTIONS(3078), - [anon_sym_for] = ACTIONS(3078), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_break] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(3078), - [anon_sym_goto] = ACTIONS(3078), - [anon_sym___try] = ACTIONS(3078), - [anon_sym___leave] = ACTIONS(3078), - [anon_sym_not] = ACTIONS(3078), - [anon_sym_compl] = ACTIONS(3078), - [anon_sym_DASH_DASH] = ACTIONS(3080), - [anon_sym_PLUS_PLUS] = ACTIONS(3080), - [anon_sym_sizeof] = ACTIONS(3078), - [anon_sym___alignof__] = ACTIONS(3078), - [anon_sym___alignof] = ACTIONS(3078), - [anon_sym__alignof] = ACTIONS(3078), - [anon_sym_alignof] = ACTIONS(3078), - [anon_sym__Alignof] = ACTIONS(3078), - [anon_sym_offsetof] = ACTIONS(3078), - [anon_sym__Generic] = ACTIONS(3078), - [anon_sym_asm] = ACTIONS(3078), - [anon_sym___asm__] = ACTIONS(3078), - [sym_number_literal] = ACTIONS(3080), - [anon_sym_L_SQUOTE] = ACTIONS(3080), - [anon_sym_u_SQUOTE] = ACTIONS(3080), - [anon_sym_U_SQUOTE] = ACTIONS(3080), - [anon_sym_u8_SQUOTE] = ACTIONS(3080), - [anon_sym_SQUOTE] = ACTIONS(3080), - [anon_sym_L_DQUOTE] = ACTIONS(3080), - [anon_sym_u_DQUOTE] = ACTIONS(3080), - [anon_sym_U_DQUOTE] = ACTIONS(3080), - [anon_sym_u8_DQUOTE] = ACTIONS(3080), - [anon_sym_DQUOTE] = ACTIONS(3080), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [anon_sym_NULL] = ACTIONS(3078), - [anon_sym_nullptr] = ACTIONS(3078), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3078), - [anon_sym_decltype] = ACTIONS(3078), - [anon_sym_virtual] = ACTIONS(3078), - [anon_sym_alignas] = ACTIONS(3078), - [anon_sym_explicit] = ACTIONS(3078), - [anon_sym_typename] = ACTIONS(3078), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_operator] = ACTIONS(3078), - [anon_sym_try] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3078), - [anon_sym_throw] = ACTIONS(3078), - [anon_sym_namespace] = ACTIONS(3078), - [anon_sym_using] = ACTIONS(3078), - [anon_sym_static_assert] = ACTIONS(3078), - [anon_sym_concept] = ACTIONS(3078), - [anon_sym_co_return] = ACTIONS(3078), - [anon_sym_co_yield] = ACTIONS(3078), - [anon_sym_catch] = ACTIONS(3078), - [anon_sym_R_DQUOTE] = ACTIONS(3080), - [anon_sym_LR_DQUOTE] = ACTIONS(3080), - [anon_sym_uR_DQUOTE] = ACTIONS(3080), - [anon_sym_UR_DQUOTE] = ACTIONS(3080), - [anon_sym_u8R_DQUOTE] = ACTIONS(3080), - [anon_sym_co_await] = ACTIONS(3078), - [anon_sym_new] = ACTIONS(3078), - [anon_sym_requires] = ACTIONS(3078), - [sym_this] = ACTIONS(3078), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3080), - [sym_semgrep_named_ellipsis] = ACTIONS(3080), - }, - [524] = { - [sym_else_clause] = STATE(664), - [ts_builtin_sym_end] = ACTIONS(3084), - [sym_identifier] = ACTIONS(3082), - [aux_sym_preproc_include_token1] = ACTIONS(3082), - [aux_sym_preproc_def_token1] = ACTIONS(3082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3084), - [aux_sym_preproc_if_token1] = ACTIONS(3082), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3082), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3082), - [sym_preproc_directive] = ACTIONS(3082), - [anon_sym_LPAREN2] = ACTIONS(3084), - [anon_sym_BANG] = ACTIONS(3084), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_AMP_AMP] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3084), - [anon_sym___extension__] = ACTIONS(3082), - [anon_sym_typedef] = ACTIONS(3082), - [anon_sym_extern] = ACTIONS(3082), - [anon_sym___attribute__] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(3084), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3084), - [anon_sym___declspec] = ACTIONS(3082), - [anon_sym___based] = ACTIONS(3082), - [anon_sym___cdecl] = ACTIONS(3082), - [anon_sym___clrcall] = ACTIONS(3082), - [anon_sym___stdcall] = ACTIONS(3082), - [anon_sym___fastcall] = ACTIONS(3082), - [anon_sym___thiscall] = ACTIONS(3082), - [anon_sym___vectorcall] = ACTIONS(3082), - [anon_sym_LBRACE] = ACTIONS(3084), - [anon_sym_signed] = ACTIONS(3082), - [anon_sym_unsigned] = ACTIONS(3082), - [anon_sym_long] = ACTIONS(3082), - [anon_sym_short] = ACTIONS(3082), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_static] = ACTIONS(3082), - [anon_sym_register] = ACTIONS(3082), - [anon_sym_inline] = ACTIONS(3082), - [anon_sym___inline] = ACTIONS(3082), - [anon_sym___inline__] = ACTIONS(3082), - [anon_sym___forceinline] = ACTIONS(3082), - [anon_sym_thread_local] = ACTIONS(3082), - [anon_sym___thread] = ACTIONS(3082), - [anon_sym_const] = ACTIONS(3082), - [anon_sym_constexpr] = ACTIONS(3082), - [anon_sym_volatile] = ACTIONS(3082), - [anon_sym_restrict] = ACTIONS(3082), - [anon_sym___restrict__] = ACTIONS(3082), - [anon_sym__Atomic] = ACTIONS(3082), - [anon_sym__Noreturn] = ACTIONS(3082), - [anon_sym_noreturn] = ACTIONS(3082), - [anon_sym_mutable] = ACTIONS(3082), - [anon_sym_constinit] = ACTIONS(3082), - [anon_sym_consteval] = ACTIONS(3082), - [sym_primitive_type] = ACTIONS(3082), - [anon_sym_enum] = ACTIONS(3082), - [anon_sym_class] = ACTIONS(3082), - [anon_sym_struct] = ACTIONS(3082), - [anon_sym_union] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_else] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3082), - [anon_sym_case] = ACTIONS(3082), - [anon_sym_default] = ACTIONS(3082), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_do] = ACTIONS(3082), - [anon_sym_for] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_break] = ACTIONS(3082), - [anon_sym_continue] = ACTIONS(3082), - [anon_sym_goto] = ACTIONS(3082), - [anon_sym___try] = ACTIONS(3082), - [anon_sym___leave] = ACTIONS(3082), - [anon_sym_not] = ACTIONS(3082), - [anon_sym_compl] = ACTIONS(3082), - [anon_sym_DASH_DASH] = ACTIONS(3084), - [anon_sym_PLUS_PLUS] = ACTIONS(3084), - [anon_sym_sizeof] = ACTIONS(3082), - [anon_sym___alignof__] = ACTIONS(3082), - [anon_sym___alignof] = ACTIONS(3082), - [anon_sym__alignof] = ACTIONS(3082), - [anon_sym_alignof] = ACTIONS(3082), - [anon_sym__Alignof] = ACTIONS(3082), - [anon_sym_offsetof] = ACTIONS(3082), - [anon_sym__Generic] = ACTIONS(3082), - [anon_sym_asm] = ACTIONS(3082), - [anon_sym___asm__] = ACTIONS(3082), - [sym_number_literal] = ACTIONS(3084), - [anon_sym_L_SQUOTE] = ACTIONS(3084), - [anon_sym_u_SQUOTE] = ACTIONS(3084), - [anon_sym_U_SQUOTE] = ACTIONS(3084), - [anon_sym_u8_SQUOTE] = ACTIONS(3084), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_L_DQUOTE] = ACTIONS(3084), - [anon_sym_u_DQUOTE] = ACTIONS(3084), - [anon_sym_U_DQUOTE] = ACTIONS(3084), - [anon_sym_u8_DQUOTE] = ACTIONS(3084), - [anon_sym_DQUOTE] = ACTIONS(3084), - [sym_true] = ACTIONS(3082), - [sym_false] = ACTIONS(3082), - [anon_sym_NULL] = ACTIONS(3082), - [anon_sym_nullptr] = ACTIONS(3082), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3082), - [anon_sym_decltype] = ACTIONS(3082), - [anon_sym_virtual] = ACTIONS(3082), - [anon_sym_alignas] = ACTIONS(3082), - [anon_sym_explicit] = ACTIONS(3082), - [anon_sym_typename] = ACTIONS(3082), - [anon_sym_template] = ACTIONS(3082), - [anon_sym_operator] = ACTIONS(3082), - [anon_sym_try] = ACTIONS(3082), - [anon_sym_delete] = ACTIONS(3082), - [anon_sym_throw] = ACTIONS(3082), - [anon_sym_namespace] = ACTIONS(3082), - [anon_sym_using] = ACTIONS(3082), - [anon_sym_static_assert] = ACTIONS(3082), - [anon_sym_concept] = ACTIONS(3082), - [anon_sym_co_return] = ACTIONS(3082), - [anon_sym_co_yield] = ACTIONS(3082), - [anon_sym_R_DQUOTE] = ACTIONS(3084), - [anon_sym_LR_DQUOTE] = ACTIONS(3084), - [anon_sym_uR_DQUOTE] = ACTIONS(3084), - [anon_sym_UR_DQUOTE] = ACTIONS(3084), - [anon_sym_u8R_DQUOTE] = ACTIONS(3084), - [anon_sym_co_await] = ACTIONS(3082), - [anon_sym_new] = ACTIONS(3082), - [anon_sym_requires] = ACTIONS(3082), - [sym_this] = ACTIONS(3082), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3084), - [sym_semgrep_named_ellipsis] = ACTIONS(3084), - }, - [525] = { - [sym_else_clause] = STATE(657), - [ts_builtin_sym_end] = ACTIONS(3090), - [sym_identifier] = ACTIONS(3088), - [aux_sym_preproc_include_token1] = ACTIONS(3088), - [aux_sym_preproc_def_token1] = ACTIONS(3088), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3090), - [aux_sym_preproc_if_token1] = ACTIONS(3088), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3088), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3088), - [sym_preproc_directive] = ACTIONS(3088), - [anon_sym_LPAREN2] = ACTIONS(3090), - [anon_sym_BANG] = ACTIONS(3090), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3088), - [anon_sym_PLUS] = ACTIONS(3088), - [anon_sym_STAR] = ACTIONS(3090), - [anon_sym_AMP_AMP] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3088), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym___extension__] = ACTIONS(3088), - [anon_sym_typedef] = ACTIONS(3088), - [anon_sym_extern] = ACTIONS(3088), - [anon_sym___attribute__] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3090), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3090), - [anon_sym___declspec] = ACTIONS(3088), - [anon_sym___based] = ACTIONS(3088), - [anon_sym___cdecl] = ACTIONS(3088), - [anon_sym___clrcall] = ACTIONS(3088), - [anon_sym___stdcall] = ACTIONS(3088), - [anon_sym___fastcall] = ACTIONS(3088), - [anon_sym___thiscall] = ACTIONS(3088), - [anon_sym___vectorcall] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_signed] = ACTIONS(3088), - [anon_sym_unsigned] = ACTIONS(3088), - [anon_sym_long] = ACTIONS(3088), - [anon_sym_short] = ACTIONS(3088), - [anon_sym_LBRACK] = ACTIONS(3088), - [anon_sym_static] = ACTIONS(3088), - [anon_sym_register] = ACTIONS(3088), - [anon_sym_inline] = ACTIONS(3088), - [anon_sym___inline] = ACTIONS(3088), - [anon_sym___inline__] = ACTIONS(3088), - [anon_sym___forceinline] = ACTIONS(3088), - [anon_sym_thread_local] = ACTIONS(3088), - [anon_sym___thread] = ACTIONS(3088), - [anon_sym_const] = ACTIONS(3088), - [anon_sym_constexpr] = ACTIONS(3088), - [anon_sym_volatile] = ACTIONS(3088), - [anon_sym_restrict] = ACTIONS(3088), - [anon_sym___restrict__] = ACTIONS(3088), - [anon_sym__Atomic] = ACTIONS(3088), - [anon_sym__Noreturn] = ACTIONS(3088), - [anon_sym_noreturn] = ACTIONS(3088), - [anon_sym_mutable] = ACTIONS(3088), - [anon_sym_constinit] = ACTIONS(3088), - [anon_sym_consteval] = ACTIONS(3088), - [sym_primitive_type] = ACTIONS(3088), - [anon_sym_enum] = ACTIONS(3088), - [anon_sym_class] = ACTIONS(3088), - [anon_sym_struct] = ACTIONS(3088), - [anon_sym_union] = ACTIONS(3088), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_else] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3088), - [anon_sym_case] = ACTIONS(3088), - [anon_sym_default] = ACTIONS(3088), - [anon_sym_while] = ACTIONS(3088), - [anon_sym_do] = ACTIONS(3088), - [anon_sym_for] = ACTIONS(3088), - [anon_sym_return] = ACTIONS(3088), - [anon_sym_break] = ACTIONS(3088), - [anon_sym_continue] = ACTIONS(3088), - [anon_sym_goto] = ACTIONS(3088), - [anon_sym___try] = ACTIONS(3088), - [anon_sym___leave] = ACTIONS(3088), - [anon_sym_not] = ACTIONS(3088), - [anon_sym_compl] = ACTIONS(3088), - [anon_sym_DASH_DASH] = ACTIONS(3090), - [anon_sym_PLUS_PLUS] = ACTIONS(3090), - [anon_sym_sizeof] = ACTIONS(3088), - [anon_sym___alignof__] = ACTIONS(3088), - [anon_sym___alignof] = ACTIONS(3088), - [anon_sym__alignof] = ACTIONS(3088), - [anon_sym_alignof] = ACTIONS(3088), - [anon_sym__Alignof] = ACTIONS(3088), - [anon_sym_offsetof] = ACTIONS(3088), - [anon_sym__Generic] = ACTIONS(3088), - [anon_sym_asm] = ACTIONS(3088), - [anon_sym___asm__] = ACTIONS(3088), - [sym_number_literal] = ACTIONS(3090), - [anon_sym_L_SQUOTE] = ACTIONS(3090), - [anon_sym_u_SQUOTE] = ACTIONS(3090), - [anon_sym_U_SQUOTE] = ACTIONS(3090), - [anon_sym_u8_SQUOTE] = ACTIONS(3090), - [anon_sym_SQUOTE] = ACTIONS(3090), - [anon_sym_L_DQUOTE] = ACTIONS(3090), - [anon_sym_u_DQUOTE] = ACTIONS(3090), - [anon_sym_U_DQUOTE] = ACTIONS(3090), - [anon_sym_u8_DQUOTE] = ACTIONS(3090), - [anon_sym_DQUOTE] = ACTIONS(3090), - [sym_true] = ACTIONS(3088), - [sym_false] = ACTIONS(3088), - [anon_sym_NULL] = ACTIONS(3088), - [anon_sym_nullptr] = ACTIONS(3088), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3088), - [anon_sym_decltype] = ACTIONS(3088), - [anon_sym_virtual] = ACTIONS(3088), - [anon_sym_alignas] = ACTIONS(3088), - [anon_sym_explicit] = ACTIONS(3088), - [anon_sym_typename] = ACTIONS(3088), - [anon_sym_template] = ACTIONS(3088), - [anon_sym_operator] = ACTIONS(3088), - [anon_sym_try] = ACTIONS(3088), - [anon_sym_delete] = ACTIONS(3088), - [anon_sym_throw] = ACTIONS(3088), - [anon_sym_namespace] = ACTIONS(3088), - [anon_sym_using] = ACTIONS(3088), - [anon_sym_static_assert] = ACTIONS(3088), - [anon_sym_concept] = ACTIONS(3088), - [anon_sym_co_return] = ACTIONS(3088), - [anon_sym_co_yield] = ACTIONS(3088), - [anon_sym_R_DQUOTE] = ACTIONS(3090), - [anon_sym_LR_DQUOTE] = ACTIONS(3090), - [anon_sym_uR_DQUOTE] = ACTIONS(3090), - [anon_sym_UR_DQUOTE] = ACTIONS(3090), - [anon_sym_u8R_DQUOTE] = ACTIONS(3090), - [anon_sym_co_await] = ACTIONS(3088), - [anon_sym_new] = ACTIONS(3088), - [anon_sym_requires] = ACTIONS(3088), - [sym_this] = ACTIONS(3088), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3090), - [sym_semgrep_named_ellipsis] = ACTIONS(3090), - }, - [526] = { - [sym_identifier] = ACTIONS(3644), - [aux_sym_preproc_include_token1] = ACTIONS(3644), - [aux_sym_preproc_def_token1] = ACTIONS(3644), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3646), - [aux_sym_preproc_if_token1] = ACTIONS(3644), - [aux_sym_preproc_if_token2] = ACTIONS(3644), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3644), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3644), - [aux_sym_preproc_else_token1] = ACTIONS(3644), - [aux_sym_preproc_elif_token1] = ACTIONS(3644), - [sym_preproc_directive] = ACTIONS(3644), - [anon_sym_LPAREN2] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3646), - [anon_sym_TILDE] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3644), - [anon_sym_PLUS] = ACTIONS(3644), - [anon_sym_STAR] = ACTIONS(3646), - [anon_sym_AMP_AMP] = ACTIONS(3646), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_SEMI] = ACTIONS(3646), - [anon_sym___extension__] = ACTIONS(3644), - [anon_sym_typedef] = ACTIONS(3644), - [anon_sym_extern] = ACTIONS(3644), - [anon_sym___attribute__] = ACTIONS(3644), - [anon_sym_COLON_COLON] = ACTIONS(3646), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3646), - [anon_sym___declspec] = ACTIONS(3644), - [anon_sym___based] = ACTIONS(3644), - [anon_sym___cdecl] = ACTIONS(3644), - [anon_sym___clrcall] = ACTIONS(3644), - [anon_sym___stdcall] = ACTIONS(3644), - [anon_sym___fastcall] = ACTIONS(3644), - [anon_sym___thiscall] = ACTIONS(3644), - [anon_sym___vectorcall] = ACTIONS(3644), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_signed] = ACTIONS(3644), - [anon_sym_unsigned] = ACTIONS(3644), - [anon_sym_long] = ACTIONS(3644), - [anon_sym_short] = ACTIONS(3644), - [anon_sym_LBRACK] = ACTIONS(3644), - [anon_sym_static] = ACTIONS(3644), - [anon_sym_register] = ACTIONS(3644), - [anon_sym_inline] = ACTIONS(3644), - [anon_sym___inline] = ACTIONS(3644), - [anon_sym___inline__] = ACTIONS(3644), - [anon_sym___forceinline] = ACTIONS(3644), - [anon_sym_thread_local] = ACTIONS(3644), - [anon_sym___thread] = ACTIONS(3644), - [anon_sym_const] = ACTIONS(3644), - [anon_sym_constexpr] = ACTIONS(3644), - [anon_sym_volatile] = ACTIONS(3644), - [anon_sym_restrict] = ACTIONS(3644), - [anon_sym___restrict__] = ACTIONS(3644), - [anon_sym__Atomic] = ACTIONS(3644), - [anon_sym__Noreturn] = ACTIONS(3644), - [anon_sym_noreturn] = ACTIONS(3644), - [anon_sym_mutable] = ACTIONS(3644), - [anon_sym_constinit] = ACTIONS(3644), - [anon_sym_consteval] = ACTIONS(3644), - [sym_primitive_type] = ACTIONS(3644), - [anon_sym_enum] = ACTIONS(3644), - [anon_sym_class] = ACTIONS(3644), - [anon_sym_struct] = ACTIONS(3644), - [anon_sym_union] = ACTIONS(3644), - [anon_sym_if] = ACTIONS(3644), - [anon_sym_switch] = ACTIONS(3644), - [anon_sym_case] = ACTIONS(3644), - [anon_sym_default] = ACTIONS(3644), - [anon_sym_while] = ACTIONS(3644), - [anon_sym_do] = ACTIONS(3644), - [anon_sym_for] = ACTIONS(3644), - [anon_sym_return] = ACTIONS(3644), - [anon_sym_break] = ACTIONS(3644), - [anon_sym_continue] = ACTIONS(3644), - [anon_sym_goto] = ACTIONS(3644), - [anon_sym___try] = ACTIONS(3644), - [anon_sym___leave] = ACTIONS(3644), - [anon_sym_not] = ACTIONS(3644), - [anon_sym_compl] = ACTIONS(3644), - [anon_sym_DASH_DASH] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3646), - [anon_sym_sizeof] = ACTIONS(3644), - [anon_sym___alignof__] = ACTIONS(3644), - [anon_sym___alignof] = ACTIONS(3644), - [anon_sym__alignof] = ACTIONS(3644), - [anon_sym_alignof] = ACTIONS(3644), - [anon_sym__Alignof] = ACTIONS(3644), - [anon_sym_offsetof] = ACTIONS(3644), - [anon_sym__Generic] = ACTIONS(3644), - [anon_sym_asm] = ACTIONS(3644), - [anon_sym___asm__] = ACTIONS(3644), - [sym_number_literal] = ACTIONS(3646), - [anon_sym_L_SQUOTE] = ACTIONS(3646), - [anon_sym_u_SQUOTE] = ACTIONS(3646), - [anon_sym_U_SQUOTE] = ACTIONS(3646), - [anon_sym_u8_SQUOTE] = ACTIONS(3646), - [anon_sym_SQUOTE] = ACTIONS(3646), - [anon_sym_L_DQUOTE] = ACTIONS(3646), - [anon_sym_u_DQUOTE] = ACTIONS(3646), - [anon_sym_U_DQUOTE] = ACTIONS(3646), - [anon_sym_u8_DQUOTE] = ACTIONS(3646), - [anon_sym_DQUOTE] = ACTIONS(3646), - [sym_true] = ACTIONS(3644), - [sym_false] = ACTIONS(3644), - [anon_sym_NULL] = ACTIONS(3644), - [anon_sym_nullptr] = ACTIONS(3644), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3644), - [anon_sym_decltype] = ACTIONS(3644), - [anon_sym_virtual] = ACTIONS(3644), - [anon_sym_alignas] = ACTIONS(3644), - [anon_sym_explicit] = ACTIONS(3644), - [anon_sym_typename] = ACTIONS(3644), - [anon_sym_template] = ACTIONS(3644), - [anon_sym_operator] = ACTIONS(3644), - [anon_sym_try] = ACTIONS(3644), - [anon_sym_delete] = ACTIONS(3644), - [anon_sym_throw] = ACTIONS(3644), - [anon_sym_namespace] = ACTIONS(3644), - [anon_sym_using] = ACTIONS(3644), - [anon_sym_static_assert] = ACTIONS(3644), - [anon_sym_concept] = ACTIONS(3644), - [anon_sym_co_return] = ACTIONS(3644), - [anon_sym_co_yield] = ACTIONS(3644), - [anon_sym_R_DQUOTE] = ACTIONS(3646), - [anon_sym_LR_DQUOTE] = ACTIONS(3646), - [anon_sym_uR_DQUOTE] = ACTIONS(3646), - [anon_sym_UR_DQUOTE] = ACTIONS(3646), - [anon_sym_u8R_DQUOTE] = ACTIONS(3646), - [anon_sym_co_await] = ACTIONS(3644), - [anon_sym_new] = ACTIONS(3644), - [anon_sym_requires] = ACTIONS(3644), - [sym_this] = ACTIONS(3644), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3646), - [sym_semgrep_named_ellipsis] = ACTIONS(3646), - }, - [527] = { - [sym_identifier] = ACTIONS(3265), - [aux_sym_preproc_include_token1] = ACTIONS(3265), - [aux_sym_preproc_def_token1] = ACTIONS(3265), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3267), - [aux_sym_preproc_if_token1] = ACTIONS(3265), - [aux_sym_preproc_if_token2] = ACTIONS(3265), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3265), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3265), - [aux_sym_preproc_else_token1] = ACTIONS(3265), - [aux_sym_preproc_elif_token1] = ACTIONS(3265), - [sym_preproc_directive] = ACTIONS(3265), - [anon_sym_LPAREN2] = ACTIONS(3267), - [anon_sym_BANG] = ACTIONS(3267), - [anon_sym_TILDE] = ACTIONS(3267), - [anon_sym_DASH] = ACTIONS(3265), - [anon_sym_PLUS] = ACTIONS(3265), - [anon_sym_STAR] = ACTIONS(3267), - [anon_sym_AMP_AMP] = ACTIONS(3267), - [anon_sym_AMP] = ACTIONS(3265), - [anon_sym_SEMI] = ACTIONS(3267), - [anon_sym___extension__] = ACTIONS(3265), - [anon_sym_typedef] = ACTIONS(3265), - [anon_sym_extern] = ACTIONS(3265), - [anon_sym___attribute__] = ACTIONS(3265), - [anon_sym_COLON_COLON] = ACTIONS(3267), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3267), - [anon_sym___declspec] = ACTIONS(3265), - [anon_sym___based] = ACTIONS(3265), - [anon_sym___cdecl] = ACTIONS(3265), - [anon_sym___clrcall] = ACTIONS(3265), - [anon_sym___stdcall] = ACTIONS(3265), - [anon_sym___fastcall] = ACTIONS(3265), - [anon_sym___thiscall] = ACTIONS(3265), - [anon_sym___vectorcall] = ACTIONS(3265), - [anon_sym_LBRACE] = ACTIONS(3267), - [anon_sym_signed] = ACTIONS(3265), - [anon_sym_unsigned] = ACTIONS(3265), - [anon_sym_long] = ACTIONS(3265), - [anon_sym_short] = ACTIONS(3265), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_static] = ACTIONS(3265), - [anon_sym_register] = ACTIONS(3265), - [anon_sym_inline] = ACTIONS(3265), - [anon_sym___inline] = ACTIONS(3265), - [anon_sym___inline__] = ACTIONS(3265), - [anon_sym___forceinline] = ACTIONS(3265), - [anon_sym_thread_local] = ACTIONS(3265), - [anon_sym___thread] = ACTIONS(3265), - [anon_sym_const] = ACTIONS(3265), - [anon_sym_constexpr] = ACTIONS(3265), - [anon_sym_volatile] = ACTIONS(3265), - [anon_sym_restrict] = ACTIONS(3265), - [anon_sym___restrict__] = ACTIONS(3265), - [anon_sym__Atomic] = ACTIONS(3265), - [anon_sym__Noreturn] = ACTIONS(3265), - [anon_sym_noreturn] = ACTIONS(3265), - [anon_sym_mutable] = ACTIONS(3265), - [anon_sym_constinit] = ACTIONS(3265), - [anon_sym_consteval] = ACTIONS(3265), - [sym_primitive_type] = ACTIONS(3265), - [anon_sym_enum] = ACTIONS(3265), - [anon_sym_class] = ACTIONS(3265), - [anon_sym_struct] = ACTIONS(3265), - [anon_sym_union] = ACTIONS(3265), - [anon_sym_if] = ACTIONS(3265), - [anon_sym_switch] = ACTIONS(3265), - [anon_sym_case] = ACTIONS(3265), - [anon_sym_default] = ACTIONS(3265), - [anon_sym_while] = ACTIONS(3265), - [anon_sym_do] = ACTIONS(3265), - [anon_sym_for] = ACTIONS(3265), - [anon_sym_return] = ACTIONS(3265), - [anon_sym_break] = ACTIONS(3265), - [anon_sym_continue] = ACTIONS(3265), - [anon_sym_goto] = ACTIONS(3265), - [anon_sym___try] = ACTIONS(3265), - [anon_sym___leave] = ACTIONS(3265), - [anon_sym_not] = ACTIONS(3265), - [anon_sym_compl] = ACTIONS(3265), - [anon_sym_DASH_DASH] = ACTIONS(3267), - [anon_sym_PLUS_PLUS] = ACTIONS(3267), - [anon_sym_sizeof] = ACTIONS(3265), - [anon_sym___alignof__] = ACTIONS(3265), - [anon_sym___alignof] = ACTIONS(3265), - [anon_sym__alignof] = ACTIONS(3265), - [anon_sym_alignof] = ACTIONS(3265), - [anon_sym__Alignof] = ACTIONS(3265), - [anon_sym_offsetof] = ACTIONS(3265), - [anon_sym__Generic] = ACTIONS(3265), - [anon_sym_asm] = ACTIONS(3265), - [anon_sym___asm__] = ACTIONS(3265), - [sym_number_literal] = ACTIONS(3267), - [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(3267), - [anon_sym_u_DQUOTE] = ACTIONS(3267), - [anon_sym_U_DQUOTE] = ACTIONS(3267), - [anon_sym_u8_DQUOTE] = ACTIONS(3267), - [anon_sym_DQUOTE] = ACTIONS(3267), - [sym_true] = ACTIONS(3265), - [sym_false] = ACTIONS(3265), - [anon_sym_NULL] = ACTIONS(3265), - [anon_sym_nullptr] = ACTIONS(3265), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3265), - [anon_sym_decltype] = ACTIONS(3265), - [anon_sym_virtual] = ACTIONS(3265), - [anon_sym_alignas] = ACTIONS(3265), - [anon_sym_explicit] = ACTIONS(3265), - [anon_sym_typename] = ACTIONS(3265), - [anon_sym_template] = ACTIONS(3265), - [anon_sym_operator] = ACTIONS(3265), - [anon_sym_try] = ACTIONS(3265), - [anon_sym_delete] = ACTIONS(3265), - [anon_sym_throw] = ACTIONS(3265), - [anon_sym_namespace] = ACTIONS(3265), - [anon_sym_using] = ACTIONS(3265), - [anon_sym_static_assert] = ACTIONS(3265), - [anon_sym_concept] = ACTIONS(3265), - [anon_sym_co_return] = ACTIONS(3265), - [anon_sym_co_yield] = ACTIONS(3265), - [anon_sym_R_DQUOTE] = ACTIONS(3267), - [anon_sym_LR_DQUOTE] = ACTIONS(3267), - [anon_sym_uR_DQUOTE] = ACTIONS(3267), - [anon_sym_UR_DQUOTE] = ACTIONS(3267), - [anon_sym_u8R_DQUOTE] = ACTIONS(3267), - [anon_sym_co_await] = ACTIONS(3265), - [anon_sym_new] = ACTIONS(3265), - [anon_sym_requires] = ACTIONS(3265), - [sym_this] = ACTIONS(3265), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3267), - [sym_semgrep_named_ellipsis] = ACTIONS(3267), - }, - [528] = { - [sym_identifier] = ACTIONS(3096), - [aux_sym_preproc_include_token1] = ACTIONS(3096), - [aux_sym_preproc_def_token1] = ACTIONS(3096), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3094), - [aux_sym_preproc_if_token1] = ACTIONS(3096), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3096), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3096), - [sym_preproc_directive] = ACTIONS(3096), - [anon_sym_LPAREN2] = ACTIONS(3094), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_TILDE] = ACTIONS(3094), - [anon_sym_DASH] = ACTIONS(3096), - [anon_sym_PLUS] = ACTIONS(3096), - [anon_sym_STAR] = ACTIONS(3094), - [anon_sym_AMP_AMP] = ACTIONS(3094), - [anon_sym_AMP] = ACTIONS(3096), - [anon_sym_SEMI] = ACTIONS(3094), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_typedef] = ACTIONS(3096), - [anon_sym_extern] = ACTIONS(3096), - [anon_sym___attribute__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(3094), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3094), - [anon_sym___declspec] = ACTIONS(3096), - [anon_sym___based] = ACTIONS(3096), - [anon_sym___cdecl] = ACTIONS(3096), - [anon_sym___clrcall] = ACTIONS(3096), - [anon_sym___stdcall] = ACTIONS(3096), - [anon_sym___fastcall] = ACTIONS(3096), - [anon_sym___thiscall] = ACTIONS(3096), - [anon_sym___vectorcall] = ACTIONS(3096), - [anon_sym_LBRACE] = ACTIONS(3094), - [anon_sym_RBRACE] = ACTIONS(3094), - [anon_sym_signed] = ACTIONS(3096), - [anon_sym_unsigned] = ACTIONS(3096), - [anon_sym_long] = ACTIONS(3096), - [anon_sym_short] = ACTIONS(3096), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_static] = ACTIONS(3096), - [anon_sym_register] = ACTIONS(3096), - [anon_sym_inline] = ACTIONS(3096), - [anon_sym___inline] = ACTIONS(3096), - [anon_sym___inline__] = ACTIONS(3096), - [anon_sym___forceinline] = ACTIONS(3096), - [anon_sym_thread_local] = ACTIONS(3096), - [anon_sym___thread] = ACTIONS(3096), - [anon_sym_const] = ACTIONS(3096), - [anon_sym_constexpr] = ACTIONS(3096), - [anon_sym_volatile] = ACTIONS(3096), - [anon_sym_restrict] = ACTIONS(3096), - [anon_sym___restrict__] = ACTIONS(3096), - [anon_sym__Atomic] = ACTIONS(3096), - [anon_sym__Noreturn] = ACTIONS(3096), - [anon_sym_noreturn] = ACTIONS(3096), - [anon_sym_mutable] = ACTIONS(3096), - [anon_sym_constinit] = ACTIONS(3096), - [anon_sym_consteval] = ACTIONS(3096), - [sym_primitive_type] = ACTIONS(3096), - [anon_sym_enum] = ACTIONS(3096), - [anon_sym_class] = ACTIONS(3096), - [anon_sym_struct] = ACTIONS(3096), - [anon_sym_union] = ACTIONS(3096), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_else] = ACTIONS(3096), - [anon_sym_switch] = ACTIONS(3096), - [anon_sym_case] = ACTIONS(3096), - [anon_sym_default] = ACTIONS(3096), - [anon_sym_while] = ACTIONS(3096), - [anon_sym_do] = ACTIONS(3096), - [anon_sym_for] = ACTIONS(3096), - [anon_sym_return] = ACTIONS(3096), - [anon_sym_break] = ACTIONS(3096), - [anon_sym_continue] = ACTIONS(3096), - [anon_sym_goto] = ACTIONS(3096), - [anon_sym___try] = ACTIONS(3096), - [anon_sym___leave] = ACTIONS(3096), - [anon_sym_not] = ACTIONS(3096), - [anon_sym_compl] = ACTIONS(3096), - [anon_sym_DASH_DASH] = ACTIONS(3094), - [anon_sym_PLUS_PLUS] = ACTIONS(3094), - [anon_sym_sizeof] = ACTIONS(3096), - [anon_sym___alignof__] = ACTIONS(3096), - [anon_sym___alignof] = ACTIONS(3096), - [anon_sym__alignof] = ACTIONS(3096), - [anon_sym_alignof] = ACTIONS(3096), - [anon_sym__Alignof] = ACTIONS(3096), - [anon_sym_offsetof] = ACTIONS(3096), - [anon_sym__Generic] = ACTIONS(3096), - [anon_sym_asm] = ACTIONS(3096), - [anon_sym___asm__] = ACTIONS(3096), - [sym_number_literal] = ACTIONS(3094), - [anon_sym_L_SQUOTE] = ACTIONS(3094), - [anon_sym_u_SQUOTE] = ACTIONS(3094), - [anon_sym_U_SQUOTE] = ACTIONS(3094), - [anon_sym_u8_SQUOTE] = ACTIONS(3094), - [anon_sym_SQUOTE] = ACTIONS(3094), - [anon_sym_L_DQUOTE] = ACTIONS(3094), - [anon_sym_u_DQUOTE] = ACTIONS(3094), - [anon_sym_U_DQUOTE] = ACTIONS(3094), - [anon_sym_u8_DQUOTE] = ACTIONS(3094), - [anon_sym_DQUOTE] = ACTIONS(3094), - [sym_true] = ACTIONS(3096), - [sym_false] = ACTIONS(3096), - [anon_sym_NULL] = ACTIONS(3096), - [anon_sym_nullptr] = ACTIONS(3096), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3096), - [anon_sym_decltype] = ACTIONS(3096), - [anon_sym_virtual] = ACTIONS(3096), - [anon_sym_alignas] = ACTIONS(3096), - [anon_sym_explicit] = ACTIONS(3096), - [anon_sym_typename] = ACTIONS(3096), - [anon_sym_template] = ACTIONS(3096), - [anon_sym_operator] = ACTIONS(3096), - [anon_sym_try] = ACTIONS(3096), - [anon_sym_delete] = ACTIONS(3096), - [anon_sym_throw] = ACTIONS(3096), - [anon_sym_namespace] = ACTIONS(3096), - [anon_sym_using] = ACTIONS(3096), - [anon_sym_static_assert] = ACTIONS(3096), - [anon_sym_concept] = ACTIONS(3096), - [anon_sym_co_return] = ACTIONS(3096), - [anon_sym_co_yield] = ACTIONS(3096), - [anon_sym_catch] = ACTIONS(3096), - [anon_sym_R_DQUOTE] = ACTIONS(3094), - [anon_sym_LR_DQUOTE] = ACTIONS(3094), - [anon_sym_uR_DQUOTE] = ACTIONS(3094), - [anon_sym_UR_DQUOTE] = ACTIONS(3094), - [anon_sym_u8R_DQUOTE] = ACTIONS(3094), - [anon_sym_co_await] = ACTIONS(3096), - [anon_sym_new] = ACTIONS(3096), - [anon_sym_requires] = ACTIONS(3096), - [sym_this] = ACTIONS(3096), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3094), - [sym_semgrep_named_ellipsis] = ACTIONS(3094), - }, - [529] = { + [510] = { [sym_identifier] = ACTIONS(3465), [aux_sym_preproc_include_token1] = ACTIONS(3465), [aux_sym_preproc_def_token1] = ACTIONS(3465), @@ -138816,4117 +126382,5624 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3467), [sym_semgrep_named_ellipsis] = ACTIONS(3467), }, + [511] = { + [sym_else_clause] = STATE(660), + [sym_identifier] = ACTIONS(3073), + [aux_sym_preproc_include_token1] = ACTIONS(3073), + [aux_sym_preproc_def_token1] = ACTIONS(3073), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3075), + [aux_sym_preproc_if_token1] = ACTIONS(3073), + [aux_sym_preproc_if_token2] = ACTIONS(3073), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3073), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3073), + [sym_preproc_directive] = ACTIONS(3073), + [anon_sym_LPAREN2] = ACTIONS(3075), + [anon_sym_BANG] = ACTIONS(3075), + [anon_sym_TILDE] = ACTIONS(3075), + [anon_sym_DASH] = ACTIONS(3073), + [anon_sym_PLUS] = ACTIONS(3073), + [anon_sym_STAR] = ACTIONS(3075), + [anon_sym_AMP_AMP] = ACTIONS(3075), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_SEMI] = ACTIONS(3075), + [anon_sym___extension__] = ACTIONS(3073), + [anon_sym_typedef] = ACTIONS(3073), + [anon_sym_extern] = ACTIONS(3073), + [anon_sym___attribute__] = ACTIONS(3073), + [anon_sym_COLON_COLON] = ACTIONS(3075), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3075), + [anon_sym___declspec] = ACTIONS(3073), + [anon_sym___based] = ACTIONS(3073), + [anon_sym___cdecl] = ACTIONS(3073), + [anon_sym___clrcall] = ACTIONS(3073), + [anon_sym___stdcall] = ACTIONS(3073), + [anon_sym___fastcall] = ACTIONS(3073), + [anon_sym___thiscall] = ACTIONS(3073), + [anon_sym___vectorcall] = ACTIONS(3073), + [anon_sym_LBRACE] = ACTIONS(3075), + [anon_sym_signed] = ACTIONS(3073), + [anon_sym_unsigned] = ACTIONS(3073), + [anon_sym_long] = ACTIONS(3073), + [anon_sym_short] = ACTIONS(3073), + [anon_sym_LBRACK] = ACTIONS(3073), + [anon_sym_static] = ACTIONS(3073), + [anon_sym_register] = ACTIONS(3073), + [anon_sym_inline] = ACTIONS(3073), + [anon_sym___inline] = ACTIONS(3073), + [anon_sym___inline__] = ACTIONS(3073), + [anon_sym___forceinline] = ACTIONS(3073), + [anon_sym_thread_local] = ACTIONS(3073), + [anon_sym___thread] = ACTIONS(3073), + [anon_sym_const] = ACTIONS(3073), + [anon_sym_constexpr] = ACTIONS(3073), + [anon_sym_volatile] = ACTIONS(3073), + [anon_sym_restrict] = ACTIONS(3073), + [anon_sym___restrict__] = ACTIONS(3073), + [anon_sym__Atomic] = ACTIONS(3073), + [anon_sym__Noreturn] = ACTIONS(3073), + [anon_sym_noreturn] = ACTIONS(3073), + [anon_sym_mutable] = ACTIONS(3073), + [anon_sym_constinit] = ACTIONS(3073), + [anon_sym_consteval] = ACTIONS(3073), + [sym_primitive_type] = ACTIONS(3073), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3073), + [anon_sym_struct] = ACTIONS(3073), + [anon_sym_union] = ACTIONS(3073), + [anon_sym_if] = ACTIONS(3073), + [anon_sym_else] = ACTIONS(3708), + [anon_sym_switch] = ACTIONS(3073), + [anon_sym_case] = ACTIONS(3073), + [anon_sym_default] = ACTIONS(3073), + [anon_sym_while] = ACTIONS(3073), + [anon_sym_do] = ACTIONS(3073), + [anon_sym_for] = ACTIONS(3073), + [anon_sym_return] = ACTIONS(3073), + [anon_sym_break] = ACTIONS(3073), + [anon_sym_continue] = ACTIONS(3073), + [anon_sym_goto] = ACTIONS(3073), + [anon_sym___try] = ACTIONS(3073), + [anon_sym___leave] = ACTIONS(3073), + [anon_sym_not] = ACTIONS(3073), + [anon_sym_compl] = ACTIONS(3073), + [anon_sym_DASH_DASH] = ACTIONS(3075), + [anon_sym_PLUS_PLUS] = ACTIONS(3075), + [anon_sym_sizeof] = ACTIONS(3073), + [anon_sym___alignof__] = ACTIONS(3073), + [anon_sym___alignof] = ACTIONS(3073), + [anon_sym__alignof] = ACTIONS(3073), + [anon_sym_alignof] = ACTIONS(3073), + [anon_sym__Alignof] = ACTIONS(3073), + [anon_sym_offsetof] = ACTIONS(3073), + [anon_sym__Generic] = ACTIONS(3073), + [anon_sym_asm] = ACTIONS(3073), + [anon_sym___asm__] = ACTIONS(3073), + [sym_number_literal] = ACTIONS(3075), + [anon_sym_L_SQUOTE] = ACTIONS(3075), + [anon_sym_u_SQUOTE] = ACTIONS(3075), + [anon_sym_U_SQUOTE] = ACTIONS(3075), + [anon_sym_u8_SQUOTE] = ACTIONS(3075), + [anon_sym_SQUOTE] = ACTIONS(3075), + [anon_sym_L_DQUOTE] = ACTIONS(3075), + [anon_sym_u_DQUOTE] = ACTIONS(3075), + [anon_sym_U_DQUOTE] = ACTIONS(3075), + [anon_sym_u8_DQUOTE] = ACTIONS(3075), + [anon_sym_DQUOTE] = ACTIONS(3075), + [sym_true] = ACTIONS(3073), + [sym_false] = ACTIONS(3073), + [anon_sym_NULL] = ACTIONS(3073), + [anon_sym_nullptr] = ACTIONS(3073), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3073), + [anon_sym_decltype] = ACTIONS(3073), + [anon_sym_virtual] = ACTIONS(3073), + [anon_sym_alignas] = ACTIONS(3073), + [anon_sym_explicit] = ACTIONS(3073), + [anon_sym_typename] = ACTIONS(3073), + [anon_sym_template] = ACTIONS(3073), + [anon_sym_operator] = ACTIONS(3073), + [anon_sym_try] = ACTIONS(3073), + [anon_sym_delete] = ACTIONS(3073), + [anon_sym_throw] = ACTIONS(3073), + [anon_sym_namespace] = ACTIONS(3073), + [anon_sym_using] = ACTIONS(3073), + [anon_sym_static_assert] = ACTIONS(3073), + [anon_sym_concept] = ACTIONS(3073), + [anon_sym_co_return] = ACTIONS(3073), + [anon_sym_co_yield] = ACTIONS(3073), + [anon_sym_R_DQUOTE] = ACTIONS(3075), + [anon_sym_LR_DQUOTE] = ACTIONS(3075), + [anon_sym_uR_DQUOTE] = ACTIONS(3075), + [anon_sym_UR_DQUOTE] = ACTIONS(3075), + [anon_sym_u8R_DQUOTE] = ACTIONS(3075), + [anon_sym_co_await] = ACTIONS(3073), + [anon_sym_new] = ACTIONS(3073), + [anon_sym_requires] = ACTIONS(3073), + [sym_this] = ACTIONS(3073), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3075), + [sym_semgrep_named_ellipsis] = ACTIONS(3075), + }, + [512] = { + [sym_identifier] = ACTIONS(3513), + [aux_sym_preproc_include_token1] = ACTIONS(3513), + [aux_sym_preproc_def_token1] = ACTIONS(3513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3515), + [aux_sym_preproc_if_token1] = ACTIONS(3513), + [aux_sym_preproc_if_token2] = ACTIONS(3513), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3513), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3513), + [aux_sym_preproc_else_token1] = ACTIONS(3513), + [aux_sym_preproc_elif_token1] = ACTIONS(3513), + [sym_preproc_directive] = ACTIONS(3513), + [anon_sym_LPAREN2] = ACTIONS(3515), + [anon_sym_BANG] = ACTIONS(3515), + [anon_sym_TILDE] = ACTIONS(3515), + [anon_sym_DASH] = ACTIONS(3513), + [anon_sym_PLUS] = ACTIONS(3513), + [anon_sym_STAR] = ACTIONS(3515), + [anon_sym_AMP_AMP] = ACTIONS(3515), + [anon_sym_AMP] = ACTIONS(3513), + [anon_sym_SEMI] = ACTIONS(3515), + [anon_sym___extension__] = ACTIONS(3513), + [anon_sym_typedef] = ACTIONS(3513), + [anon_sym_extern] = ACTIONS(3513), + [anon_sym___attribute__] = ACTIONS(3513), + [anon_sym_COLON_COLON] = ACTIONS(3515), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3515), + [anon_sym___declspec] = ACTIONS(3513), + [anon_sym___based] = ACTIONS(3513), + [anon_sym___cdecl] = ACTIONS(3513), + [anon_sym___clrcall] = ACTIONS(3513), + [anon_sym___stdcall] = ACTIONS(3513), + [anon_sym___fastcall] = ACTIONS(3513), + [anon_sym___thiscall] = ACTIONS(3513), + [anon_sym___vectorcall] = ACTIONS(3513), + [anon_sym_LBRACE] = ACTIONS(3515), + [anon_sym_signed] = ACTIONS(3513), + [anon_sym_unsigned] = ACTIONS(3513), + [anon_sym_long] = ACTIONS(3513), + [anon_sym_short] = ACTIONS(3513), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_static] = ACTIONS(3513), + [anon_sym_register] = ACTIONS(3513), + [anon_sym_inline] = ACTIONS(3513), + [anon_sym___inline] = ACTIONS(3513), + [anon_sym___inline__] = ACTIONS(3513), + [anon_sym___forceinline] = ACTIONS(3513), + [anon_sym_thread_local] = ACTIONS(3513), + [anon_sym___thread] = ACTIONS(3513), + [anon_sym_const] = ACTIONS(3513), + [anon_sym_constexpr] = ACTIONS(3513), + [anon_sym_volatile] = ACTIONS(3513), + [anon_sym_restrict] = ACTIONS(3513), + [anon_sym___restrict__] = ACTIONS(3513), + [anon_sym__Atomic] = ACTIONS(3513), + [anon_sym__Noreturn] = ACTIONS(3513), + [anon_sym_noreturn] = ACTIONS(3513), + [anon_sym_mutable] = ACTIONS(3513), + [anon_sym_constinit] = ACTIONS(3513), + [anon_sym_consteval] = ACTIONS(3513), + [sym_primitive_type] = ACTIONS(3513), + [anon_sym_enum] = ACTIONS(3513), + [anon_sym_class] = ACTIONS(3513), + [anon_sym_struct] = ACTIONS(3513), + [anon_sym_union] = ACTIONS(3513), + [anon_sym_if] = ACTIONS(3513), + [anon_sym_switch] = ACTIONS(3513), + [anon_sym_case] = ACTIONS(3513), + [anon_sym_default] = ACTIONS(3513), + [anon_sym_while] = ACTIONS(3513), + [anon_sym_do] = ACTIONS(3513), + [anon_sym_for] = ACTIONS(3513), + [anon_sym_return] = ACTIONS(3513), + [anon_sym_break] = ACTIONS(3513), + [anon_sym_continue] = ACTIONS(3513), + [anon_sym_goto] = ACTIONS(3513), + [anon_sym___try] = ACTIONS(3513), + [anon_sym___leave] = ACTIONS(3513), + [anon_sym_not] = ACTIONS(3513), + [anon_sym_compl] = ACTIONS(3513), + [anon_sym_DASH_DASH] = ACTIONS(3515), + [anon_sym_PLUS_PLUS] = ACTIONS(3515), + [anon_sym_sizeof] = ACTIONS(3513), + [anon_sym___alignof__] = ACTIONS(3513), + [anon_sym___alignof] = ACTIONS(3513), + [anon_sym__alignof] = ACTIONS(3513), + [anon_sym_alignof] = ACTIONS(3513), + [anon_sym__Alignof] = ACTIONS(3513), + [anon_sym_offsetof] = ACTIONS(3513), + [anon_sym__Generic] = ACTIONS(3513), + [anon_sym_asm] = ACTIONS(3513), + [anon_sym___asm__] = ACTIONS(3513), + [sym_number_literal] = ACTIONS(3515), + [anon_sym_L_SQUOTE] = ACTIONS(3515), + [anon_sym_u_SQUOTE] = ACTIONS(3515), + [anon_sym_U_SQUOTE] = ACTIONS(3515), + [anon_sym_u8_SQUOTE] = ACTIONS(3515), + [anon_sym_SQUOTE] = ACTIONS(3515), + [anon_sym_L_DQUOTE] = ACTIONS(3515), + [anon_sym_u_DQUOTE] = ACTIONS(3515), + [anon_sym_U_DQUOTE] = ACTIONS(3515), + [anon_sym_u8_DQUOTE] = ACTIONS(3515), + [anon_sym_DQUOTE] = ACTIONS(3515), + [sym_true] = ACTIONS(3513), + [sym_false] = ACTIONS(3513), + [anon_sym_NULL] = ACTIONS(3513), + [anon_sym_nullptr] = ACTIONS(3513), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3513), + [anon_sym_decltype] = ACTIONS(3513), + [anon_sym_virtual] = ACTIONS(3513), + [anon_sym_alignas] = ACTIONS(3513), + [anon_sym_explicit] = ACTIONS(3513), + [anon_sym_typename] = ACTIONS(3513), + [anon_sym_template] = ACTIONS(3513), + [anon_sym_operator] = ACTIONS(3513), + [anon_sym_try] = ACTIONS(3513), + [anon_sym_delete] = ACTIONS(3513), + [anon_sym_throw] = ACTIONS(3513), + [anon_sym_namespace] = ACTIONS(3513), + [anon_sym_using] = ACTIONS(3513), + [anon_sym_static_assert] = ACTIONS(3513), + [anon_sym_concept] = ACTIONS(3513), + [anon_sym_co_return] = ACTIONS(3513), + [anon_sym_co_yield] = ACTIONS(3513), + [anon_sym_R_DQUOTE] = ACTIONS(3515), + [anon_sym_LR_DQUOTE] = ACTIONS(3515), + [anon_sym_uR_DQUOTE] = ACTIONS(3515), + [anon_sym_UR_DQUOTE] = ACTIONS(3515), + [anon_sym_u8R_DQUOTE] = ACTIONS(3515), + [anon_sym_co_await] = ACTIONS(3513), + [anon_sym_new] = ACTIONS(3513), + [anon_sym_requires] = ACTIONS(3513), + [sym_this] = ACTIONS(3513), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3515), + [sym_semgrep_named_ellipsis] = ACTIONS(3515), + }, + [513] = { + [sym_identifier] = ACTIONS(3684), + [aux_sym_preproc_include_token1] = ACTIONS(3684), + [aux_sym_preproc_def_token1] = ACTIONS(3684), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3686), + [aux_sym_preproc_if_token1] = ACTIONS(3684), + [aux_sym_preproc_if_token2] = ACTIONS(3684), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3684), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3684), + [aux_sym_preproc_else_token1] = ACTIONS(3684), + [aux_sym_preproc_elif_token1] = ACTIONS(3684), + [sym_preproc_directive] = ACTIONS(3684), + [anon_sym_LPAREN2] = ACTIONS(3686), + [anon_sym_BANG] = ACTIONS(3686), + [anon_sym_TILDE] = ACTIONS(3686), + [anon_sym_DASH] = ACTIONS(3684), + [anon_sym_PLUS] = ACTIONS(3684), + [anon_sym_STAR] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3686), + [anon_sym_AMP] = ACTIONS(3684), + [anon_sym_SEMI] = ACTIONS(3686), + [anon_sym___extension__] = ACTIONS(3684), + [anon_sym_typedef] = ACTIONS(3684), + [anon_sym_extern] = ACTIONS(3684), + [anon_sym___attribute__] = ACTIONS(3684), + [anon_sym_COLON_COLON] = ACTIONS(3686), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3686), + [anon_sym___declspec] = ACTIONS(3684), + [anon_sym___based] = ACTIONS(3684), + [anon_sym___cdecl] = ACTIONS(3684), + [anon_sym___clrcall] = ACTIONS(3684), + [anon_sym___stdcall] = ACTIONS(3684), + [anon_sym___fastcall] = ACTIONS(3684), + [anon_sym___thiscall] = ACTIONS(3684), + [anon_sym___vectorcall] = ACTIONS(3684), + [anon_sym_LBRACE] = ACTIONS(3686), + [anon_sym_signed] = ACTIONS(3684), + [anon_sym_unsigned] = ACTIONS(3684), + [anon_sym_long] = ACTIONS(3684), + [anon_sym_short] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3684), + [anon_sym_static] = ACTIONS(3684), + [anon_sym_register] = ACTIONS(3684), + [anon_sym_inline] = ACTIONS(3684), + [anon_sym___inline] = ACTIONS(3684), + [anon_sym___inline__] = ACTIONS(3684), + [anon_sym___forceinline] = ACTIONS(3684), + [anon_sym_thread_local] = ACTIONS(3684), + [anon_sym___thread] = ACTIONS(3684), + [anon_sym_const] = ACTIONS(3684), + [anon_sym_constexpr] = ACTIONS(3684), + [anon_sym_volatile] = ACTIONS(3684), + [anon_sym_restrict] = ACTIONS(3684), + [anon_sym___restrict__] = ACTIONS(3684), + [anon_sym__Atomic] = ACTIONS(3684), + [anon_sym__Noreturn] = ACTIONS(3684), + [anon_sym_noreturn] = ACTIONS(3684), + [anon_sym_mutable] = ACTIONS(3684), + [anon_sym_constinit] = ACTIONS(3684), + [anon_sym_consteval] = ACTIONS(3684), + [sym_primitive_type] = ACTIONS(3684), + [anon_sym_enum] = ACTIONS(3684), + [anon_sym_class] = ACTIONS(3684), + [anon_sym_struct] = ACTIONS(3684), + [anon_sym_union] = ACTIONS(3684), + [anon_sym_if] = ACTIONS(3684), + [anon_sym_switch] = ACTIONS(3684), + [anon_sym_case] = ACTIONS(3684), + [anon_sym_default] = ACTIONS(3684), + [anon_sym_while] = ACTIONS(3684), + [anon_sym_do] = ACTIONS(3684), + [anon_sym_for] = ACTIONS(3684), + [anon_sym_return] = ACTIONS(3684), + [anon_sym_break] = ACTIONS(3684), + [anon_sym_continue] = ACTIONS(3684), + [anon_sym_goto] = ACTIONS(3684), + [anon_sym___try] = ACTIONS(3684), + [anon_sym___leave] = ACTIONS(3684), + [anon_sym_not] = ACTIONS(3684), + [anon_sym_compl] = ACTIONS(3684), + [anon_sym_DASH_DASH] = ACTIONS(3686), + [anon_sym_PLUS_PLUS] = ACTIONS(3686), + [anon_sym_sizeof] = ACTIONS(3684), + [anon_sym___alignof__] = ACTIONS(3684), + [anon_sym___alignof] = ACTIONS(3684), + [anon_sym__alignof] = ACTIONS(3684), + [anon_sym_alignof] = ACTIONS(3684), + [anon_sym__Alignof] = ACTIONS(3684), + [anon_sym_offsetof] = ACTIONS(3684), + [anon_sym__Generic] = ACTIONS(3684), + [anon_sym_asm] = ACTIONS(3684), + [anon_sym___asm__] = ACTIONS(3684), + [sym_number_literal] = ACTIONS(3686), + [anon_sym_L_SQUOTE] = ACTIONS(3686), + [anon_sym_u_SQUOTE] = ACTIONS(3686), + [anon_sym_U_SQUOTE] = ACTIONS(3686), + [anon_sym_u8_SQUOTE] = ACTIONS(3686), + [anon_sym_SQUOTE] = ACTIONS(3686), + [anon_sym_L_DQUOTE] = ACTIONS(3686), + [anon_sym_u_DQUOTE] = ACTIONS(3686), + [anon_sym_U_DQUOTE] = ACTIONS(3686), + [anon_sym_u8_DQUOTE] = ACTIONS(3686), + [anon_sym_DQUOTE] = ACTIONS(3686), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [anon_sym_NULL] = ACTIONS(3684), + [anon_sym_nullptr] = ACTIONS(3684), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3684), + [anon_sym_decltype] = ACTIONS(3684), + [anon_sym_virtual] = ACTIONS(3684), + [anon_sym_alignas] = ACTIONS(3684), + [anon_sym_explicit] = ACTIONS(3684), + [anon_sym_typename] = ACTIONS(3684), + [anon_sym_template] = ACTIONS(3684), + [anon_sym_operator] = ACTIONS(3684), + [anon_sym_try] = ACTIONS(3684), + [anon_sym_delete] = ACTIONS(3684), + [anon_sym_throw] = ACTIONS(3684), + [anon_sym_namespace] = ACTIONS(3684), + [anon_sym_using] = ACTIONS(3684), + [anon_sym_static_assert] = ACTIONS(3684), + [anon_sym_concept] = ACTIONS(3684), + [anon_sym_co_return] = ACTIONS(3684), + [anon_sym_co_yield] = ACTIONS(3684), + [anon_sym_R_DQUOTE] = ACTIONS(3686), + [anon_sym_LR_DQUOTE] = ACTIONS(3686), + [anon_sym_uR_DQUOTE] = ACTIONS(3686), + [anon_sym_UR_DQUOTE] = ACTIONS(3686), + [anon_sym_u8R_DQUOTE] = ACTIONS(3686), + [anon_sym_co_await] = ACTIONS(3684), + [anon_sym_new] = ACTIONS(3684), + [anon_sym_requires] = ACTIONS(3684), + [sym_this] = ACTIONS(3684), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3686), + [sym_semgrep_named_ellipsis] = ACTIONS(3686), + }, + [514] = { + [sym_identifier] = ACTIONS(3529), + [aux_sym_preproc_include_token1] = ACTIONS(3529), + [aux_sym_preproc_def_token1] = ACTIONS(3529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3531), + [aux_sym_preproc_if_token1] = ACTIONS(3529), + [aux_sym_preproc_if_token2] = ACTIONS(3529), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3529), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3529), + [aux_sym_preproc_else_token1] = ACTIONS(3529), + [aux_sym_preproc_elif_token1] = ACTIONS(3529), + [sym_preproc_directive] = ACTIONS(3529), + [anon_sym_LPAREN2] = ACTIONS(3531), + [anon_sym_BANG] = ACTIONS(3531), + [anon_sym_TILDE] = ACTIONS(3531), + [anon_sym_DASH] = ACTIONS(3529), + [anon_sym_PLUS] = ACTIONS(3529), + [anon_sym_STAR] = ACTIONS(3531), + [anon_sym_AMP_AMP] = ACTIONS(3531), + [anon_sym_AMP] = ACTIONS(3529), + [anon_sym_SEMI] = ACTIONS(3531), + [anon_sym___extension__] = ACTIONS(3529), + [anon_sym_typedef] = ACTIONS(3529), + [anon_sym_extern] = ACTIONS(3529), + [anon_sym___attribute__] = ACTIONS(3529), + [anon_sym_COLON_COLON] = ACTIONS(3531), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3531), + [anon_sym___declspec] = ACTIONS(3529), + [anon_sym___based] = ACTIONS(3529), + [anon_sym___cdecl] = ACTIONS(3529), + [anon_sym___clrcall] = ACTIONS(3529), + [anon_sym___stdcall] = ACTIONS(3529), + [anon_sym___fastcall] = ACTIONS(3529), + [anon_sym___thiscall] = ACTIONS(3529), + [anon_sym___vectorcall] = ACTIONS(3529), + [anon_sym_LBRACE] = ACTIONS(3531), + [anon_sym_signed] = ACTIONS(3529), + [anon_sym_unsigned] = ACTIONS(3529), + [anon_sym_long] = ACTIONS(3529), + [anon_sym_short] = ACTIONS(3529), + [anon_sym_LBRACK] = ACTIONS(3529), + [anon_sym_static] = ACTIONS(3529), + [anon_sym_register] = ACTIONS(3529), + [anon_sym_inline] = ACTIONS(3529), + [anon_sym___inline] = ACTIONS(3529), + [anon_sym___inline__] = ACTIONS(3529), + [anon_sym___forceinline] = ACTIONS(3529), + [anon_sym_thread_local] = ACTIONS(3529), + [anon_sym___thread] = ACTIONS(3529), + [anon_sym_const] = ACTIONS(3529), + [anon_sym_constexpr] = ACTIONS(3529), + [anon_sym_volatile] = ACTIONS(3529), + [anon_sym_restrict] = ACTIONS(3529), + [anon_sym___restrict__] = ACTIONS(3529), + [anon_sym__Atomic] = ACTIONS(3529), + [anon_sym__Noreturn] = ACTIONS(3529), + [anon_sym_noreturn] = ACTIONS(3529), + [anon_sym_mutable] = ACTIONS(3529), + [anon_sym_constinit] = ACTIONS(3529), + [anon_sym_consteval] = ACTIONS(3529), + [sym_primitive_type] = ACTIONS(3529), + [anon_sym_enum] = ACTIONS(3529), + [anon_sym_class] = ACTIONS(3529), + [anon_sym_struct] = ACTIONS(3529), + [anon_sym_union] = ACTIONS(3529), + [anon_sym_if] = ACTIONS(3529), + [anon_sym_switch] = ACTIONS(3529), + [anon_sym_case] = ACTIONS(3529), + [anon_sym_default] = ACTIONS(3529), + [anon_sym_while] = ACTIONS(3529), + [anon_sym_do] = ACTIONS(3529), + [anon_sym_for] = ACTIONS(3529), + [anon_sym_return] = ACTIONS(3529), + [anon_sym_break] = ACTIONS(3529), + [anon_sym_continue] = ACTIONS(3529), + [anon_sym_goto] = ACTIONS(3529), + [anon_sym___try] = ACTIONS(3529), + [anon_sym___leave] = ACTIONS(3529), + [anon_sym_not] = ACTIONS(3529), + [anon_sym_compl] = ACTIONS(3529), + [anon_sym_DASH_DASH] = ACTIONS(3531), + [anon_sym_PLUS_PLUS] = ACTIONS(3531), + [anon_sym_sizeof] = ACTIONS(3529), + [anon_sym___alignof__] = ACTIONS(3529), + [anon_sym___alignof] = ACTIONS(3529), + [anon_sym__alignof] = ACTIONS(3529), + [anon_sym_alignof] = ACTIONS(3529), + [anon_sym__Alignof] = ACTIONS(3529), + [anon_sym_offsetof] = ACTIONS(3529), + [anon_sym__Generic] = ACTIONS(3529), + [anon_sym_asm] = ACTIONS(3529), + [anon_sym___asm__] = ACTIONS(3529), + [sym_number_literal] = ACTIONS(3531), + [anon_sym_L_SQUOTE] = ACTIONS(3531), + [anon_sym_u_SQUOTE] = ACTIONS(3531), + [anon_sym_U_SQUOTE] = ACTIONS(3531), + [anon_sym_u8_SQUOTE] = ACTIONS(3531), + [anon_sym_SQUOTE] = ACTIONS(3531), + [anon_sym_L_DQUOTE] = ACTIONS(3531), + [anon_sym_u_DQUOTE] = ACTIONS(3531), + [anon_sym_U_DQUOTE] = ACTIONS(3531), + [anon_sym_u8_DQUOTE] = ACTIONS(3531), + [anon_sym_DQUOTE] = ACTIONS(3531), + [sym_true] = ACTIONS(3529), + [sym_false] = ACTIONS(3529), + [anon_sym_NULL] = ACTIONS(3529), + [anon_sym_nullptr] = ACTIONS(3529), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3529), + [anon_sym_decltype] = ACTIONS(3529), + [anon_sym_virtual] = ACTIONS(3529), + [anon_sym_alignas] = ACTIONS(3529), + [anon_sym_explicit] = ACTIONS(3529), + [anon_sym_typename] = ACTIONS(3529), + [anon_sym_template] = ACTIONS(3529), + [anon_sym_operator] = ACTIONS(3529), + [anon_sym_try] = ACTIONS(3529), + [anon_sym_delete] = ACTIONS(3529), + [anon_sym_throw] = ACTIONS(3529), + [anon_sym_namespace] = ACTIONS(3529), + [anon_sym_using] = ACTIONS(3529), + [anon_sym_static_assert] = ACTIONS(3529), + [anon_sym_concept] = ACTIONS(3529), + [anon_sym_co_return] = ACTIONS(3529), + [anon_sym_co_yield] = ACTIONS(3529), + [anon_sym_R_DQUOTE] = ACTIONS(3531), + [anon_sym_LR_DQUOTE] = ACTIONS(3531), + [anon_sym_uR_DQUOTE] = ACTIONS(3531), + [anon_sym_UR_DQUOTE] = ACTIONS(3531), + [anon_sym_u8R_DQUOTE] = ACTIONS(3531), + [anon_sym_co_await] = ACTIONS(3529), + [anon_sym_new] = ACTIONS(3529), + [anon_sym_requires] = ACTIONS(3529), + [sym_this] = ACTIONS(3529), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3531), + [sym_semgrep_named_ellipsis] = ACTIONS(3531), + }, + [515] = { + [sym_identifier] = ACTIONS(3533), + [aux_sym_preproc_include_token1] = ACTIONS(3533), + [aux_sym_preproc_def_token1] = ACTIONS(3533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3535), + [aux_sym_preproc_if_token1] = ACTIONS(3533), + [aux_sym_preproc_if_token2] = ACTIONS(3533), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3533), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3533), + [aux_sym_preproc_else_token1] = ACTIONS(3533), + [aux_sym_preproc_elif_token1] = ACTIONS(3533), + [sym_preproc_directive] = ACTIONS(3533), + [anon_sym_LPAREN2] = ACTIONS(3535), + [anon_sym_BANG] = ACTIONS(3535), + [anon_sym_TILDE] = ACTIONS(3535), + [anon_sym_DASH] = ACTIONS(3533), + [anon_sym_PLUS] = ACTIONS(3533), + [anon_sym_STAR] = ACTIONS(3535), + [anon_sym_AMP_AMP] = ACTIONS(3535), + [anon_sym_AMP] = ACTIONS(3533), + [anon_sym_SEMI] = ACTIONS(3535), + [anon_sym___extension__] = ACTIONS(3533), + [anon_sym_typedef] = ACTIONS(3533), + [anon_sym_extern] = ACTIONS(3533), + [anon_sym___attribute__] = ACTIONS(3533), + [anon_sym_COLON_COLON] = ACTIONS(3535), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3535), + [anon_sym___declspec] = ACTIONS(3533), + [anon_sym___based] = ACTIONS(3533), + [anon_sym___cdecl] = ACTIONS(3533), + [anon_sym___clrcall] = ACTIONS(3533), + [anon_sym___stdcall] = ACTIONS(3533), + [anon_sym___fastcall] = ACTIONS(3533), + [anon_sym___thiscall] = ACTIONS(3533), + [anon_sym___vectorcall] = ACTIONS(3533), + [anon_sym_LBRACE] = ACTIONS(3535), + [anon_sym_signed] = ACTIONS(3533), + [anon_sym_unsigned] = ACTIONS(3533), + [anon_sym_long] = ACTIONS(3533), + [anon_sym_short] = ACTIONS(3533), + [anon_sym_LBRACK] = ACTIONS(3533), + [anon_sym_static] = ACTIONS(3533), + [anon_sym_register] = ACTIONS(3533), + [anon_sym_inline] = ACTIONS(3533), + [anon_sym___inline] = ACTIONS(3533), + [anon_sym___inline__] = ACTIONS(3533), + [anon_sym___forceinline] = ACTIONS(3533), + [anon_sym_thread_local] = ACTIONS(3533), + [anon_sym___thread] = ACTIONS(3533), + [anon_sym_const] = ACTIONS(3533), + [anon_sym_constexpr] = ACTIONS(3533), + [anon_sym_volatile] = ACTIONS(3533), + [anon_sym_restrict] = ACTIONS(3533), + [anon_sym___restrict__] = ACTIONS(3533), + [anon_sym__Atomic] = ACTIONS(3533), + [anon_sym__Noreturn] = ACTIONS(3533), + [anon_sym_noreturn] = ACTIONS(3533), + [anon_sym_mutable] = ACTIONS(3533), + [anon_sym_constinit] = ACTIONS(3533), + [anon_sym_consteval] = ACTIONS(3533), + [sym_primitive_type] = ACTIONS(3533), + [anon_sym_enum] = ACTIONS(3533), + [anon_sym_class] = ACTIONS(3533), + [anon_sym_struct] = ACTIONS(3533), + [anon_sym_union] = ACTIONS(3533), + [anon_sym_if] = ACTIONS(3533), + [anon_sym_switch] = ACTIONS(3533), + [anon_sym_case] = ACTIONS(3533), + [anon_sym_default] = ACTIONS(3533), + [anon_sym_while] = ACTIONS(3533), + [anon_sym_do] = ACTIONS(3533), + [anon_sym_for] = ACTIONS(3533), + [anon_sym_return] = ACTIONS(3533), + [anon_sym_break] = ACTIONS(3533), + [anon_sym_continue] = ACTIONS(3533), + [anon_sym_goto] = ACTIONS(3533), + [anon_sym___try] = ACTIONS(3533), + [anon_sym___leave] = ACTIONS(3533), + [anon_sym_not] = ACTIONS(3533), + [anon_sym_compl] = ACTIONS(3533), + [anon_sym_DASH_DASH] = ACTIONS(3535), + [anon_sym_PLUS_PLUS] = ACTIONS(3535), + [anon_sym_sizeof] = ACTIONS(3533), + [anon_sym___alignof__] = ACTIONS(3533), + [anon_sym___alignof] = ACTIONS(3533), + [anon_sym__alignof] = ACTIONS(3533), + [anon_sym_alignof] = ACTIONS(3533), + [anon_sym__Alignof] = ACTIONS(3533), + [anon_sym_offsetof] = ACTIONS(3533), + [anon_sym__Generic] = ACTIONS(3533), + [anon_sym_asm] = ACTIONS(3533), + [anon_sym___asm__] = ACTIONS(3533), + [sym_number_literal] = ACTIONS(3535), + [anon_sym_L_SQUOTE] = ACTIONS(3535), + [anon_sym_u_SQUOTE] = ACTIONS(3535), + [anon_sym_U_SQUOTE] = ACTIONS(3535), + [anon_sym_u8_SQUOTE] = ACTIONS(3535), + [anon_sym_SQUOTE] = ACTIONS(3535), + [anon_sym_L_DQUOTE] = ACTIONS(3535), + [anon_sym_u_DQUOTE] = ACTIONS(3535), + [anon_sym_U_DQUOTE] = ACTIONS(3535), + [anon_sym_u8_DQUOTE] = ACTIONS(3535), + [anon_sym_DQUOTE] = ACTIONS(3535), + [sym_true] = ACTIONS(3533), + [sym_false] = ACTIONS(3533), + [anon_sym_NULL] = ACTIONS(3533), + [anon_sym_nullptr] = ACTIONS(3533), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3533), + [anon_sym_decltype] = ACTIONS(3533), + [anon_sym_virtual] = ACTIONS(3533), + [anon_sym_alignas] = ACTIONS(3533), + [anon_sym_explicit] = ACTIONS(3533), + [anon_sym_typename] = ACTIONS(3533), + [anon_sym_template] = ACTIONS(3533), + [anon_sym_operator] = ACTIONS(3533), + [anon_sym_try] = ACTIONS(3533), + [anon_sym_delete] = ACTIONS(3533), + [anon_sym_throw] = ACTIONS(3533), + [anon_sym_namespace] = ACTIONS(3533), + [anon_sym_using] = ACTIONS(3533), + [anon_sym_static_assert] = ACTIONS(3533), + [anon_sym_concept] = ACTIONS(3533), + [anon_sym_co_return] = ACTIONS(3533), + [anon_sym_co_yield] = ACTIONS(3533), + [anon_sym_R_DQUOTE] = ACTIONS(3535), + [anon_sym_LR_DQUOTE] = ACTIONS(3535), + [anon_sym_uR_DQUOTE] = ACTIONS(3535), + [anon_sym_UR_DQUOTE] = ACTIONS(3535), + [anon_sym_u8R_DQUOTE] = ACTIONS(3535), + [anon_sym_co_await] = ACTIONS(3533), + [anon_sym_new] = ACTIONS(3533), + [anon_sym_requires] = ACTIONS(3533), + [sym_this] = ACTIONS(3533), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3535), + [sym_semgrep_named_ellipsis] = ACTIONS(3535), + }, + [516] = { + [sym_identifier] = ACTIONS(3541), + [aux_sym_preproc_include_token1] = ACTIONS(3541), + [aux_sym_preproc_def_token1] = ACTIONS(3541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3543), + [aux_sym_preproc_if_token1] = ACTIONS(3541), + [aux_sym_preproc_if_token2] = ACTIONS(3541), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3541), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3541), + [aux_sym_preproc_else_token1] = ACTIONS(3541), + [aux_sym_preproc_elif_token1] = ACTIONS(3541), + [sym_preproc_directive] = ACTIONS(3541), + [anon_sym_LPAREN2] = ACTIONS(3543), + [anon_sym_BANG] = ACTIONS(3543), + [anon_sym_TILDE] = ACTIONS(3543), + [anon_sym_DASH] = ACTIONS(3541), + [anon_sym_PLUS] = ACTIONS(3541), + [anon_sym_STAR] = ACTIONS(3543), + [anon_sym_AMP_AMP] = ACTIONS(3543), + [anon_sym_AMP] = ACTIONS(3541), + [anon_sym_SEMI] = ACTIONS(3543), + [anon_sym___extension__] = ACTIONS(3541), + [anon_sym_typedef] = ACTIONS(3541), + [anon_sym_extern] = ACTIONS(3541), + [anon_sym___attribute__] = ACTIONS(3541), + [anon_sym_COLON_COLON] = ACTIONS(3543), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3543), + [anon_sym___declspec] = ACTIONS(3541), + [anon_sym___based] = ACTIONS(3541), + [anon_sym___cdecl] = ACTIONS(3541), + [anon_sym___clrcall] = ACTIONS(3541), + [anon_sym___stdcall] = ACTIONS(3541), + [anon_sym___fastcall] = ACTIONS(3541), + [anon_sym___thiscall] = ACTIONS(3541), + [anon_sym___vectorcall] = ACTIONS(3541), + [anon_sym_LBRACE] = ACTIONS(3543), + [anon_sym_signed] = ACTIONS(3541), + [anon_sym_unsigned] = ACTIONS(3541), + [anon_sym_long] = ACTIONS(3541), + [anon_sym_short] = ACTIONS(3541), + [anon_sym_LBRACK] = ACTIONS(3541), + [anon_sym_static] = ACTIONS(3541), + [anon_sym_register] = ACTIONS(3541), + [anon_sym_inline] = ACTIONS(3541), + [anon_sym___inline] = ACTIONS(3541), + [anon_sym___inline__] = ACTIONS(3541), + [anon_sym___forceinline] = ACTIONS(3541), + [anon_sym_thread_local] = ACTIONS(3541), + [anon_sym___thread] = ACTIONS(3541), + [anon_sym_const] = ACTIONS(3541), + [anon_sym_constexpr] = ACTIONS(3541), + [anon_sym_volatile] = ACTIONS(3541), + [anon_sym_restrict] = ACTIONS(3541), + [anon_sym___restrict__] = ACTIONS(3541), + [anon_sym__Atomic] = ACTIONS(3541), + [anon_sym__Noreturn] = ACTIONS(3541), + [anon_sym_noreturn] = ACTIONS(3541), + [anon_sym_mutable] = ACTIONS(3541), + [anon_sym_constinit] = ACTIONS(3541), + [anon_sym_consteval] = ACTIONS(3541), + [sym_primitive_type] = ACTIONS(3541), + [anon_sym_enum] = ACTIONS(3541), + [anon_sym_class] = ACTIONS(3541), + [anon_sym_struct] = ACTIONS(3541), + [anon_sym_union] = ACTIONS(3541), + [anon_sym_if] = ACTIONS(3541), + [anon_sym_switch] = ACTIONS(3541), + [anon_sym_case] = ACTIONS(3541), + [anon_sym_default] = ACTIONS(3541), + [anon_sym_while] = ACTIONS(3541), + [anon_sym_do] = ACTIONS(3541), + [anon_sym_for] = ACTIONS(3541), + [anon_sym_return] = ACTIONS(3541), + [anon_sym_break] = ACTIONS(3541), + [anon_sym_continue] = ACTIONS(3541), + [anon_sym_goto] = ACTIONS(3541), + [anon_sym___try] = ACTIONS(3541), + [anon_sym___leave] = ACTIONS(3541), + [anon_sym_not] = ACTIONS(3541), + [anon_sym_compl] = ACTIONS(3541), + [anon_sym_DASH_DASH] = ACTIONS(3543), + [anon_sym_PLUS_PLUS] = ACTIONS(3543), + [anon_sym_sizeof] = ACTIONS(3541), + [anon_sym___alignof__] = ACTIONS(3541), + [anon_sym___alignof] = ACTIONS(3541), + [anon_sym__alignof] = ACTIONS(3541), + [anon_sym_alignof] = ACTIONS(3541), + [anon_sym__Alignof] = ACTIONS(3541), + [anon_sym_offsetof] = ACTIONS(3541), + [anon_sym__Generic] = ACTIONS(3541), + [anon_sym_asm] = ACTIONS(3541), + [anon_sym___asm__] = ACTIONS(3541), + [sym_number_literal] = ACTIONS(3543), + [anon_sym_L_SQUOTE] = ACTIONS(3543), + [anon_sym_u_SQUOTE] = ACTIONS(3543), + [anon_sym_U_SQUOTE] = ACTIONS(3543), + [anon_sym_u8_SQUOTE] = ACTIONS(3543), + [anon_sym_SQUOTE] = ACTIONS(3543), + [anon_sym_L_DQUOTE] = ACTIONS(3543), + [anon_sym_u_DQUOTE] = ACTIONS(3543), + [anon_sym_U_DQUOTE] = ACTIONS(3543), + [anon_sym_u8_DQUOTE] = ACTIONS(3543), + [anon_sym_DQUOTE] = ACTIONS(3543), + [sym_true] = ACTIONS(3541), + [sym_false] = ACTIONS(3541), + [anon_sym_NULL] = ACTIONS(3541), + [anon_sym_nullptr] = ACTIONS(3541), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3541), + [anon_sym_decltype] = ACTIONS(3541), + [anon_sym_virtual] = ACTIONS(3541), + [anon_sym_alignas] = ACTIONS(3541), + [anon_sym_explicit] = ACTIONS(3541), + [anon_sym_typename] = ACTIONS(3541), + [anon_sym_template] = ACTIONS(3541), + [anon_sym_operator] = ACTIONS(3541), + [anon_sym_try] = ACTIONS(3541), + [anon_sym_delete] = ACTIONS(3541), + [anon_sym_throw] = ACTIONS(3541), + [anon_sym_namespace] = ACTIONS(3541), + [anon_sym_using] = ACTIONS(3541), + [anon_sym_static_assert] = ACTIONS(3541), + [anon_sym_concept] = ACTIONS(3541), + [anon_sym_co_return] = ACTIONS(3541), + [anon_sym_co_yield] = ACTIONS(3541), + [anon_sym_R_DQUOTE] = ACTIONS(3543), + [anon_sym_LR_DQUOTE] = ACTIONS(3543), + [anon_sym_uR_DQUOTE] = ACTIONS(3543), + [anon_sym_UR_DQUOTE] = ACTIONS(3543), + [anon_sym_u8R_DQUOTE] = ACTIONS(3543), + [anon_sym_co_await] = ACTIONS(3541), + [anon_sym_new] = ACTIONS(3541), + [anon_sym_requires] = ACTIONS(3541), + [sym_this] = ACTIONS(3541), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3543), + [sym_semgrep_named_ellipsis] = ACTIONS(3543), + }, + [517] = { + [sym_identifier] = ACTIONS(3545), + [aux_sym_preproc_include_token1] = ACTIONS(3545), + [aux_sym_preproc_def_token1] = ACTIONS(3545), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3547), + [aux_sym_preproc_if_token1] = ACTIONS(3545), + [aux_sym_preproc_if_token2] = ACTIONS(3545), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3545), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3545), + [aux_sym_preproc_else_token1] = ACTIONS(3545), + [aux_sym_preproc_elif_token1] = ACTIONS(3545), + [sym_preproc_directive] = ACTIONS(3545), + [anon_sym_LPAREN2] = ACTIONS(3547), + [anon_sym_BANG] = ACTIONS(3547), + [anon_sym_TILDE] = ACTIONS(3547), + [anon_sym_DASH] = ACTIONS(3545), + [anon_sym_PLUS] = ACTIONS(3545), + [anon_sym_STAR] = ACTIONS(3547), + [anon_sym_AMP_AMP] = ACTIONS(3547), + [anon_sym_AMP] = ACTIONS(3545), + [anon_sym_SEMI] = ACTIONS(3547), + [anon_sym___extension__] = ACTIONS(3545), + [anon_sym_typedef] = ACTIONS(3545), + [anon_sym_extern] = ACTIONS(3545), + [anon_sym___attribute__] = ACTIONS(3545), + [anon_sym_COLON_COLON] = ACTIONS(3547), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3547), + [anon_sym___declspec] = ACTIONS(3545), + [anon_sym___based] = ACTIONS(3545), + [anon_sym___cdecl] = ACTIONS(3545), + [anon_sym___clrcall] = ACTIONS(3545), + [anon_sym___stdcall] = ACTIONS(3545), + [anon_sym___fastcall] = ACTIONS(3545), + [anon_sym___thiscall] = ACTIONS(3545), + [anon_sym___vectorcall] = ACTIONS(3545), + [anon_sym_LBRACE] = ACTIONS(3547), + [anon_sym_signed] = ACTIONS(3545), + [anon_sym_unsigned] = ACTIONS(3545), + [anon_sym_long] = ACTIONS(3545), + [anon_sym_short] = ACTIONS(3545), + [anon_sym_LBRACK] = ACTIONS(3545), + [anon_sym_static] = ACTIONS(3545), + [anon_sym_register] = ACTIONS(3545), + [anon_sym_inline] = ACTIONS(3545), + [anon_sym___inline] = ACTIONS(3545), + [anon_sym___inline__] = ACTIONS(3545), + [anon_sym___forceinline] = ACTIONS(3545), + [anon_sym_thread_local] = ACTIONS(3545), + [anon_sym___thread] = ACTIONS(3545), + [anon_sym_const] = ACTIONS(3545), + [anon_sym_constexpr] = ACTIONS(3545), + [anon_sym_volatile] = ACTIONS(3545), + [anon_sym_restrict] = ACTIONS(3545), + [anon_sym___restrict__] = ACTIONS(3545), + [anon_sym__Atomic] = ACTIONS(3545), + [anon_sym__Noreturn] = ACTIONS(3545), + [anon_sym_noreturn] = ACTIONS(3545), + [anon_sym_mutable] = ACTIONS(3545), + [anon_sym_constinit] = ACTIONS(3545), + [anon_sym_consteval] = ACTIONS(3545), + [sym_primitive_type] = ACTIONS(3545), + [anon_sym_enum] = ACTIONS(3545), + [anon_sym_class] = ACTIONS(3545), + [anon_sym_struct] = ACTIONS(3545), + [anon_sym_union] = ACTIONS(3545), + [anon_sym_if] = ACTIONS(3545), + [anon_sym_switch] = ACTIONS(3545), + [anon_sym_case] = ACTIONS(3545), + [anon_sym_default] = ACTIONS(3545), + [anon_sym_while] = ACTIONS(3545), + [anon_sym_do] = ACTIONS(3545), + [anon_sym_for] = ACTIONS(3545), + [anon_sym_return] = ACTIONS(3545), + [anon_sym_break] = ACTIONS(3545), + [anon_sym_continue] = ACTIONS(3545), + [anon_sym_goto] = ACTIONS(3545), + [anon_sym___try] = ACTIONS(3545), + [anon_sym___leave] = ACTIONS(3545), + [anon_sym_not] = ACTIONS(3545), + [anon_sym_compl] = ACTIONS(3545), + [anon_sym_DASH_DASH] = ACTIONS(3547), + [anon_sym_PLUS_PLUS] = ACTIONS(3547), + [anon_sym_sizeof] = ACTIONS(3545), + [anon_sym___alignof__] = ACTIONS(3545), + [anon_sym___alignof] = ACTIONS(3545), + [anon_sym__alignof] = ACTIONS(3545), + [anon_sym_alignof] = ACTIONS(3545), + [anon_sym__Alignof] = ACTIONS(3545), + [anon_sym_offsetof] = ACTIONS(3545), + [anon_sym__Generic] = ACTIONS(3545), + [anon_sym_asm] = ACTIONS(3545), + [anon_sym___asm__] = ACTIONS(3545), + [sym_number_literal] = ACTIONS(3547), + [anon_sym_L_SQUOTE] = ACTIONS(3547), + [anon_sym_u_SQUOTE] = ACTIONS(3547), + [anon_sym_U_SQUOTE] = ACTIONS(3547), + [anon_sym_u8_SQUOTE] = ACTIONS(3547), + [anon_sym_SQUOTE] = ACTIONS(3547), + [anon_sym_L_DQUOTE] = ACTIONS(3547), + [anon_sym_u_DQUOTE] = ACTIONS(3547), + [anon_sym_U_DQUOTE] = ACTIONS(3547), + [anon_sym_u8_DQUOTE] = ACTIONS(3547), + [anon_sym_DQUOTE] = ACTIONS(3547), + [sym_true] = ACTIONS(3545), + [sym_false] = ACTIONS(3545), + [anon_sym_NULL] = ACTIONS(3545), + [anon_sym_nullptr] = ACTIONS(3545), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3545), + [anon_sym_decltype] = ACTIONS(3545), + [anon_sym_virtual] = ACTIONS(3545), + [anon_sym_alignas] = ACTIONS(3545), + [anon_sym_explicit] = ACTIONS(3545), + [anon_sym_typename] = ACTIONS(3545), + [anon_sym_template] = ACTIONS(3545), + [anon_sym_operator] = ACTIONS(3545), + [anon_sym_try] = ACTIONS(3545), + [anon_sym_delete] = ACTIONS(3545), + [anon_sym_throw] = ACTIONS(3545), + [anon_sym_namespace] = ACTIONS(3545), + [anon_sym_using] = ACTIONS(3545), + [anon_sym_static_assert] = ACTIONS(3545), + [anon_sym_concept] = ACTIONS(3545), + [anon_sym_co_return] = ACTIONS(3545), + [anon_sym_co_yield] = ACTIONS(3545), + [anon_sym_R_DQUOTE] = ACTIONS(3547), + [anon_sym_LR_DQUOTE] = ACTIONS(3547), + [anon_sym_uR_DQUOTE] = ACTIONS(3547), + [anon_sym_UR_DQUOTE] = ACTIONS(3547), + [anon_sym_u8R_DQUOTE] = ACTIONS(3547), + [anon_sym_co_await] = ACTIONS(3545), + [anon_sym_new] = ACTIONS(3545), + [anon_sym_requires] = ACTIONS(3545), + [sym_this] = ACTIONS(3545), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3547), + [sym_semgrep_named_ellipsis] = ACTIONS(3547), + }, + [518] = { + [sym_identifier] = ACTIONS(3551), + [aux_sym_preproc_include_token1] = ACTIONS(3551), + [aux_sym_preproc_def_token1] = ACTIONS(3551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3553), + [aux_sym_preproc_if_token1] = ACTIONS(3551), + [aux_sym_preproc_if_token2] = ACTIONS(3551), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3551), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3551), + [aux_sym_preproc_else_token1] = ACTIONS(3551), + [aux_sym_preproc_elif_token1] = ACTIONS(3551), + [sym_preproc_directive] = ACTIONS(3551), + [anon_sym_LPAREN2] = ACTIONS(3553), + [anon_sym_BANG] = ACTIONS(3553), + [anon_sym_TILDE] = ACTIONS(3553), + [anon_sym_DASH] = ACTIONS(3551), + [anon_sym_PLUS] = ACTIONS(3551), + [anon_sym_STAR] = ACTIONS(3553), + [anon_sym_AMP_AMP] = ACTIONS(3553), + [anon_sym_AMP] = ACTIONS(3551), + [anon_sym_SEMI] = ACTIONS(3553), + [anon_sym___extension__] = ACTIONS(3551), + [anon_sym_typedef] = ACTIONS(3551), + [anon_sym_extern] = ACTIONS(3551), + [anon_sym___attribute__] = ACTIONS(3551), + [anon_sym_COLON_COLON] = ACTIONS(3553), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3553), + [anon_sym___declspec] = ACTIONS(3551), + [anon_sym___based] = ACTIONS(3551), + [anon_sym___cdecl] = ACTIONS(3551), + [anon_sym___clrcall] = ACTIONS(3551), + [anon_sym___stdcall] = ACTIONS(3551), + [anon_sym___fastcall] = ACTIONS(3551), + [anon_sym___thiscall] = ACTIONS(3551), + [anon_sym___vectorcall] = ACTIONS(3551), + [anon_sym_LBRACE] = ACTIONS(3553), + [anon_sym_signed] = ACTIONS(3551), + [anon_sym_unsigned] = ACTIONS(3551), + [anon_sym_long] = ACTIONS(3551), + [anon_sym_short] = ACTIONS(3551), + [anon_sym_LBRACK] = ACTIONS(3551), + [anon_sym_static] = ACTIONS(3551), + [anon_sym_register] = ACTIONS(3551), + [anon_sym_inline] = ACTIONS(3551), + [anon_sym___inline] = ACTIONS(3551), + [anon_sym___inline__] = ACTIONS(3551), + [anon_sym___forceinline] = ACTIONS(3551), + [anon_sym_thread_local] = ACTIONS(3551), + [anon_sym___thread] = ACTIONS(3551), + [anon_sym_const] = ACTIONS(3551), + [anon_sym_constexpr] = ACTIONS(3551), + [anon_sym_volatile] = ACTIONS(3551), + [anon_sym_restrict] = ACTIONS(3551), + [anon_sym___restrict__] = ACTIONS(3551), + [anon_sym__Atomic] = ACTIONS(3551), + [anon_sym__Noreturn] = ACTIONS(3551), + [anon_sym_noreturn] = ACTIONS(3551), + [anon_sym_mutable] = ACTIONS(3551), + [anon_sym_constinit] = ACTIONS(3551), + [anon_sym_consteval] = ACTIONS(3551), + [sym_primitive_type] = ACTIONS(3551), + [anon_sym_enum] = ACTIONS(3551), + [anon_sym_class] = ACTIONS(3551), + [anon_sym_struct] = ACTIONS(3551), + [anon_sym_union] = ACTIONS(3551), + [anon_sym_if] = ACTIONS(3551), + [anon_sym_switch] = ACTIONS(3551), + [anon_sym_case] = ACTIONS(3551), + [anon_sym_default] = ACTIONS(3551), + [anon_sym_while] = ACTIONS(3551), + [anon_sym_do] = ACTIONS(3551), + [anon_sym_for] = ACTIONS(3551), + [anon_sym_return] = ACTIONS(3551), + [anon_sym_break] = ACTIONS(3551), + [anon_sym_continue] = ACTIONS(3551), + [anon_sym_goto] = ACTIONS(3551), + [anon_sym___try] = ACTIONS(3551), + [anon_sym___leave] = ACTIONS(3551), + [anon_sym_not] = ACTIONS(3551), + [anon_sym_compl] = ACTIONS(3551), + [anon_sym_DASH_DASH] = ACTIONS(3553), + [anon_sym_PLUS_PLUS] = ACTIONS(3553), + [anon_sym_sizeof] = ACTIONS(3551), + [anon_sym___alignof__] = ACTIONS(3551), + [anon_sym___alignof] = ACTIONS(3551), + [anon_sym__alignof] = ACTIONS(3551), + [anon_sym_alignof] = ACTIONS(3551), + [anon_sym__Alignof] = ACTIONS(3551), + [anon_sym_offsetof] = ACTIONS(3551), + [anon_sym__Generic] = ACTIONS(3551), + [anon_sym_asm] = ACTIONS(3551), + [anon_sym___asm__] = ACTIONS(3551), + [sym_number_literal] = ACTIONS(3553), + [anon_sym_L_SQUOTE] = ACTIONS(3553), + [anon_sym_u_SQUOTE] = ACTIONS(3553), + [anon_sym_U_SQUOTE] = ACTIONS(3553), + [anon_sym_u8_SQUOTE] = ACTIONS(3553), + [anon_sym_SQUOTE] = ACTIONS(3553), + [anon_sym_L_DQUOTE] = ACTIONS(3553), + [anon_sym_u_DQUOTE] = ACTIONS(3553), + [anon_sym_U_DQUOTE] = ACTIONS(3553), + [anon_sym_u8_DQUOTE] = ACTIONS(3553), + [anon_sym_DQUOTE] = ACTIONS(3553), + [sym_true] = ACTIONS(3551), + [sym_false] = ACTIONS(3551), + [anon_sym_NULL] = ACTIONS(3551), + [anon_sym_nullptr] = ACTIONS(3551), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3551), + [anon_sym_decltype] = ACTIONS(3551), + [anon_sym_virtual] = ACTIONS(3551), + [anon_sym_alignas] = ACTIONS(3551), + [anon_sym_explicit] = ACTIONS(3551), + [anon_sym_typename] = ACTIONS(3551), + [anon_sym_template] = ACTIONS(3551), + [anon_sym_operator] = ACTIONS(3551), + [anon_sym_try] = ACTIONS(3551), + [anon_sym_delete] = ACTIONS(3551), + [anon_sym_throw] = ACTIONS(3551), + [anon_sym_namespace] = ACTIONS(3551), + [anon_sym_using] = ACTIONS(3551), + [anon_sym_static_assert] = ACTIONS(3551), + [anon_sym_concept] = ACTIONS(3551), + [anon_sym_co_return] = ACTIONS(3551), + [anon_sym_co_yield] = ACTIONS(3551), + [anon_sym_R_DQUOTE] = ACTIONS(3553), + [anon_sym_LR_DQUOTE] = ACTIONS(3553), + [anon_sym_uR_DQUOTE] = ACTIONS(3553), + [anon_sym_UR_DQUOTE] = ACTIONS(3553), + [anon_sym_u8R_DQUOTE] = ACTIONS(3553), + [anon_sym_co_await] = ACTIONS(3551), + [anon_sym_new] = ACTIONS(3551), + [anon_sym_requires] = ACTIONS(3551), + [sym_this] = ACTIONS(3551), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3553), + [sym_semgrep_named_ellipsis] = ACTIONS(3553), + }, + [519] = { + [sym_identifier] = ACTIONS(3060), + [aux_sym_preproc_include_token1] = ACTIONS(3060), + [aux_sym_preproc_def_token1] = ACTIONS(3060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3062), + [aux_sym_preproc_if_token1] = ACTIONS(3060), + [aux_sym_preproc_if_token2] = ACTIONS(3060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3060), + [sym_preproc_directive] = ACTIONS(3060), + [anon_sym_LPAREN2] = ACTIONS(3062), + [anon_sym_BANG] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(3062), + [anon_sym_AMP_AMP] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3062), + [anon_sym___extension__] = ACTIONS(3060), + [anon_sym_typedef] = ACTIONS(3060), + [anon_sym_extern] = ACTIONS(3060), + [anon_sym___attribute__] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3062), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3062), + [anon_sym___declspec] = ACTIONS(3060), + [anon_sym___based] = ACTIONS(3060), + [anon_sym___cdecl] = ACTIONS(3060), + [anon_sym___clrcall] = ACTIONS(3060), + [anon_sym___stdcall] = ACTIONS(3060), + [anon_sym___fastcall] = ACTIONS(3060), + [anon_sym___thiscall] = ACTIONS(3060), + [anon_sym___vectorcall] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_signed] = ACTIONS(3060), + [anon_sym_unsigned] = ACTIONS(3060), + [anon_sym_long] = ACTIONS(3060), + [anon_sym_short] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_register] = ACTIONS(3060), + [anon_sym_inline] = ACTIONS(3060), + [anon_sym___inline] = ACTIONS(3060), + [anon_sym___inline__] = ACTIONS(3060), + [anon_sym___forceinline] = ACTIONS(3060), + [anon_sym_thread_local] = ACTIONS(3060), + [anon_sym___thread] = ACTIONS(3060), + [anon_sym_const] = ACTIONS(3060), + [anon_sym_constexpr] = ACTIONS(3060), + [anon_sym_volatile] = ACTIONS(3060), + [anon_sym_restrict] = ACTIONS(3060), + [anon_sym___restrict__] = ACTIONS(3060), + [anon_sym__Atomic] = ACTIONS(3060), + [anon_sym__Noreturn] = ACTIONS(3060), + [anon_sym_noreturn] = ACTIONS(3060), + [anon_sym_mutable] = ACTIONS(3060), + [anon_sym_constinit] = ACTIONS(3060), + [anon_sym_consteval] = ACTIONS(3060), + [sym_primitive_type] = ACTIONS(3060), + [anon_sym_enum] = ACTIONS(3060), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3060), + [anon_sym_union] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_else] = ACTIONS(3060), + [anon_sym_switch] = ACTIONS(3060), + [anon_sym_case] = ACTIONS(3060), + [anon_sym_default] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_goto] = ACTIONS(3060), + [anon_sym___try] = ACTIONS(3060), + [anon_sym___leave] = ACTIONS(3060), + [anon_sym_not] = ACTIONS(3060), + [anon_sym_compl] = ACTIONS(3060), + [anon_sym_DASH_DASH] = ACTIONS(3062), + [anon_sym_PLUS_PLUS] = ACTIONS(3062), + [anon_sym_sizeof] = ACTIONS(3060), + [anon_sym___alignof__] = ACTIONS(3060), + [anon_sym___alignof] = ACTIONS(3060), + [anon_sym__alignof] = ACTIONS(3060), + [anon_sym_alignof] = ACTIONS(3060), + [anon_sym__Alignof] = ACTIONS(3060), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3060), + [anon_sym_asm] = ACTIONS(3060), + [anon_sym___asm__] = ACTIONS(3060), + [sym_number_literal] = ACTIONS(3062), + [anon_sym_L_SQUOTE] = ACTIONS(3062), + [anon_sym_u_SQUOTE] = ACTIONS(3062), + [anon_sym_U_SQUOTE] = ACTIONS(3062), + [anon_sym_u8_SQUOTE] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3062), + [anon_sym_L_DQUOTE] = ACTIONS(3062), + [anon_sym_u_DQUOTE] = ACTIONS(3062), + [anon_sym_U_DQUOTE] = ACTIONS(3062), + [anon_sym_u8_DQUOTE] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3060), + [anon_sym_nullptr] = ACTIONS(3060), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3060), + [anon_sym_decltype] = ACTIONS(3060), + [anon_sym_virtual] = ACTIONS(3060), + [anon_sym_alignas] = ACTIONS(3060), + [anon_sym_explicit] = ACTIONS(3060), + [anon_sym_typename] = ACTIONS(3060), + [anon_sym_template] = ACTIONS(3060), + [anon_sym_operator] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3060), + [anon_sym_throw] = ACTIONS(3060), + [anon_sym_namespace] = ACTIONS(3060), + [anon_sym_using] = ACTIONS(3060), + [anon_sym_static_assert] = ACTIONS(3060), + [anon_sym_concept] = ACTIONS(3060), + [anon_sym_co_return] = ACTIONS(3060), + [anon_sym_co_yield] = ACTIONS(3060), + [anon_sym_catch] = ACTIONS(3060), + [anon_sym_R_DQUOTE] = ACTIONS(3062), + [anon_sym_LR_DQUOTE] = ACTIONS(3062), + [anon_sym_uR_DQUOTE] = ACTIONS(3062), + [anon_sym_UR_DQUOTE] = ACTIONS(3062), + [anon_sym_u8R_DQUOTE] = ACTIONS(3062), + [anon_sym_co_await] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_requires] = ACTIONS(3060), + [sym_this] = ACTIONS(3060), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3062), + [sym_semgrep_named_ellipsis] = ACTIONS(3062), + }, + [520] = { + [sym_identifier] = ACTIONS(3623), + [aux_sym_preproc_include_token1] = ACTIONS(3623), + [aux_sym_preproc_def_token1] = ACTIONS(3623), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3625), + [aux_sym_preproc_if_token1] = ACTIONS(3623), + [aux_sym_preproc_if_token2] = ACTIONS(3623), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3623), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3623), + [aux_sym_preproc_else_token1] = ACTIONS(3623), + [aux_sym_preproc_elif_token1] = ACTIONS(3623), + [sym_preproc_directive] = ACTIONS(3623), + [anon_sym_LPAREN2] = ACTIONS(3625), + [anon_sym_BANG] = ACTIONS(3625), + [anon_sym_TILDE] = ACTIONS(3625), + [anon_sym_DASH] = ACTIONS(3623), + [anon_sym_PLUS] = ACTIONS(3623), + [anon_sym_STAR] = ACTIONS(3625), + [anon_sym_AMP_AMP] = ACTIONS(3625), + [anon_sym_AMP] = ACTIONS(3623), + [anon_sym_SEMI] = ACTIONS(3625), + [anon_sym___extension__] = ACTIONS(3623), + [anon_sym_typedef] = ACTIONS(3623), + [anon_sym_extern] = ACTIONS(3623), + [anon_sym___attribute__] = ACTIONS(3623), + [anon_sym_COLON_COLON] = ACTIONS(3625), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3625), + [anon_sym___declspec] = ACTIONS(3623), + [anon_sym___based] = ACTIONS(3623), + [anon_sym___cdecl] = ACTIONS(3623), + [anon_sym___clrcall] = ACTIONS(3623), + [anon_sym___stdcall] = ACTIONS(3623), + [anon_sym___fastcall] = ACTIONS(3623), + [anon_sym___thiscall] = ACTIONS(3623), + [anon_sym___vectorcall] = ACTIONS(3623), + [anon_sym_LBRACE] = ACTIONS(3625), + [anon_sym_signed] = ACTIONS(3623), + [anon_sym_unsigned] = ACTIONS(3623), + [anon_sym_long] = ACTIONS(3623), + [anon_sym_short] = ACTIONS(3623), + [anon_sym_LBRACK] = ACTIONS(3623), + [anon_sym_static] = ACTIONS(3623), + [anon_sym_register] = ACTIONS(3623), + [anon_sym_inline] = ACTIONS(3623), + [anon_sym___inline] = ACTIONS(3623), + [anon_sym___inline__] = ACTIONS(3623), + [anon_sym___forceinline] = ACTIONS(3623), + [anon_sym_thread_local] = ACTIONS(3623), + [anon_sym___thread] = ACTIONS(3623), + [anon_sym_const] = ACTIONS(3623), + [anon_sym_constexpr] = ACTIONS(3623), + [anon_sym_volatile] = ACTIONS(3623), + [anon_sym_restrict] = ACTIONS(3623), + [anon_sym___restrict__] = ACTIONS(3623), + [anon_sym__Atomic] = ACTIONS(3623), + [anon_sym__Noreturn] = ACTIONS(3623), + [anon_sym_noreturn] = ACTIONS(3623), + [anon_sym_mutable] = ACTIONS(3623), + [anon_sym_constinit] = ACTIONS(3623), + [anon_sym_consteval] = ACTIONS(3623), + [sym_primitive_type] = ACTIONS(3623), + [anon_sym_enum] = ACTIONS(3623), + [anon_sym_class] = ACTIONS(3623), + [anon_sym_struct] = ACTIONS(3623), + [anon_sym_union] = ACTIONS(3623), + [anon_sym_if] = ACTIONS(3623), + [anon_sym_switch] = ACTIONS(3623), + [anon_sym_case] = ACTIONS(3623), + [anon_sym_default] = ACTIONS(3623), + [anon_sym_while] = ACTIONS(3623), + [anon_sym_do] = ACTIONS(3623), + [anon_sym_for] = ACTIONS(3623), + [anon_sym_return] = ACTIONS(3623), + [anon_sym_break] = ACTIONS(3623), + [anon_sym_continue] = ACTIONS(3623), + [anon_sym_goto] = ACTIONS(3623), + [anon_sym___try] = ACTIONS(3623), + [anon_sym___leave] = ACTIONS(3623), + [anon_sym_not] = ACTIONS(3623), + [anon_sym_compl] = ACTIONS(3623), + [anon_sym_DASH_DASH] = ACTIONS(3625), + [anon_sym_PLUS_PLUS] = ACTIONS(3625), + [anon_sym_sizeof] = ACTIONS(3623), + [anon_sym___alignof__] = ACTIONS(3623), + [anon_sym___alignof] = ACTIONS(3623), + [anon_sym__alignof] = ACTIONS(3623), + [anon_sym_alignof] = ACTIONS(3623), + [anon_sym__Alignof] = ACTIONS(3623), + [anon_sym_offsetof] = ACTIONS(3623), + [anon_sym__Generic] = ACTIONS(3623), + [anon_sym_asm] = ACTIONS(3623), + [anon_sym___asm__] = ACTIONS(3623), + [sym_number_literal] = ACTIONS(3625), + [anon_sym_L_SQUOTE] = ACTIONS(3625), + [anon_sym_u_SQUOTE] = ACTIONS(3625), + [anon_sym_U_SQUOTE] = ACTIONS(3625), + [anon_sym_u8_SQUOTE] = ACTIONS(3625), + [anon_sym_SQUOTE] = ACTIONS(3625), + [anon_sym_L_DQUOTE] = ACTIONS(3625), + [anon_sym_u_DQUOTE] = ACTIONS(3625), + [anon_sym_U_DQUOTE] = ACTIONS(3625), + [anon_sym_u8_DQUOTE] = ACTIONS(3625), + [anon_sym_DQUOTE] = ACTIONS(3625), + [sym_true] = ACTIONS(3623), + [sym_false] = ACTIONS(3623), + [anon_sym_NULL] = ACTIONS(3623), + [anon_sym_nullptr] = ACTIONS(3623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3623), + [anon_sym_decltype] = ACTIONS(3623), + [anon_sym_virtual] = ACTIONS(3623), + [anon_sym_alignas] = ACTIONS(3623), + [anon_sym_explicit] = ACTIONS(3623), + [anon_sym_typename] = ACTIONS(3623), + [anon_sym_template] = ACTIONS(3623), + [anon_sym_operator] = ACTIONS(3623), + [anon_sym_try] = ACTIONS(3623), + [anon_sym_delete] = ACTIONS(3623), + [anon_sym_throw] = ACTIONS(3623), + [anon_sym_namespace] = ACTIONS(3623), + [anon_sym_using] = ACTIONS(3623), + [anon_sym_static_assert] = ACTIONS(3623), + [anon_sym_concept] = ACTIONS(3623), + [anon_sym_co_return] = ACTIONS(3623), + [anon_sym_co_yield] = ACTIONS(3623), + [anon_sym_R_DQUOTE] = ACTIONS(3625), + [anon_sym_LR_DQUOTE] = ACTIONS(3625), + [anon_sym_uR_DQUOTE] = ACTIONS(3625), + [anon_sym_UR_DQUOTE] = ACTIONS(3625), + [anon_sym_u8R_DQUOTE] = ACTIONS(3625), + [anon_sym_co_await] = ACTIONS(3623), + [anon_sym_new] = ACTIONS(3623), + [anon_sym_requires] = ACTIONS(3623), + [sym_this] = ACTIONS(3623), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3625), + [sym_semgrep_named_ellipsis] = ACTIONS(3625), + }, + [521] = { + [sym_identifier] = ACTIONS(3649), + [aux_sym_preproc_include_token1] = ACTIONS(3649), + [aux_sym_preproc_def_token1] = ACTIONS(3649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3651), + [aux_sym_preproc_if_token1] = ACTIONS(3649), + [aux_sym_preproc_if_token2] = ACTIONS(3649), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3649), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3649), + [aux_sym_preproc_else_token1] = ACTIONS(3649), + [aux_sym_preproc_elif_token1] = ACTIONS(3649), + [sym_preproc_directive] = ACTIONS(3649), + [anon_sym_LPAREN2] = ACTIONS(3651), + [anon_sym_BANG] = ACTIONS(3651), + [anon_sym_TILDE] = ACTIONS(3651), + [anon_sym_DASH] = ACTIONS(3649), + [anon_sym_PLUS] = ACTIONS(3649), + [anon_sym_STAR] = ACTIONS(3651), + [anon_sym_AMP_AMP] = ACTIONS(3651), + [anon_sym_AMP] = ACTIONS(3649), + [anon_sym_SEMI] = ACTIONS(3651), + [anon_sym___extension__] = ACTIONS(3649), + [anon_sym_typedef] = ACTIONS(3649), + [anon_sym_extern] = ACTIONS(3649), + [anon_sym___attribute__] = ACTIONS(3649), + [anon_sym_COLON_COLON] = ACTIONS(3651), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3651), + [anon_sym___declspec] = ACTIONS(3649), + [anon_sym___based] = ACTIONS(3649), + [anon_sym___cdecl] = ACTIONS(3649), + [anon_sym___clrcall] = ACTIONS(3649), + [anon_sym___stdcall] = ACTIONS(3649), + [anon_sym___fastcall] = ACTIONS(3649), + [anon_sym___thiscall] = ACTIONS(3649), + [anon_sym___vectorcall] = ACTIONS(3649), + [anon_sym_LBRACE] = ACTIONS(3651), + [anon_sym_signed] = ACTIONS(3649), + [anon_sym_unsigned] = ACTIONS(3649), + [anon_sym_long] = ACTIONS(3649), + [anon_sym_short] = ACTIONS(3649), + [anon_sym_LBRACK] = ACTIONS(3649), + [anon_sym_static] = ACTIONS(3649), + [anon_sym_register] = ACTIONS(3649), + [anon_sym_inline] = ACTIONS(3649), + [anon_sym___inline] = ACTIONS(3649), + [anon_sym___inline__] = ACTIONS(3649), + [anon_sym___forceinline] = ACTIONS(3649), + [anon_sym_thread_local] = ACTIONS(3649), + [anon_sym___thread] = ACTIONS(3649), + [anon_sym_const] = ACTIONS(3649), + [anon_sym_constexpr] = ACTIONS(3649), + [anon_sym_volatile] = ACTIONS(3649), + [anon_sym_restrict] = ACTIONS(3649), + [anon_sym___restrict__] = ACTIONS(3649), + [anon_sym__Atomic] = ACTIONS(3649), + [anon_sym__Noreturn] = ACTIONS(3649), + [anon_sym_noreturn] = ACTIONS(3649), + [anon_sym_mutable] = ACTIONS(3649), + [anon_sym_constinit] = ACTIONS(3649), + [anon_sym_consteval] = ACTIONS(3649), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_enum] = ACTIONS(3649), + [anon_sym_class] = ACTIONS(3649), + [anon_sym_struct] = ACTIONS(3649), + [anon_sym_union] = ACTIONS(3649), + [anon_sym_if] = ACTIONS(3649), + [anon_sym_switch] = ACTIONS(3649), + [anon_sym_case] = ACTIONS(3649), + [anon_sym_default] = ACTIONS(3649), + [anon_sym_while] = ACTIONS(3649), + [anon_sym_do] = ACTIONS(3649), + [anon_sym_for] = ACTIONS(3649), + [anon_sym_return] = ACTIONS(3649), + [anon_sym_break] = ACTIONS(3649), + [anon_sym_continue] = ACTIONS(3649), + [anon_sym_goto] = ACTIONS(3649), + [anon_sym___try] = ACTIONS(3649), + [anon_sym___leave] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3649), + [anon_sym_compl] = ACTIONS(3649), + [anon_sym_DASH_DASH] = ACTIONS(3651), + [anon_sym_PLUS_PLUS] = ACTIONS(3651), + [anon_sym_sizeof] = ACTIONS(3649), + [anon_sym___alignof__] = ACTIONS(3649), + [anon_sym___alignof] = ACTIONS(3649), + [anon_sym__alignof] = ACTIONS(3649), + [anon_sym_alignof] = ACTIONS(3649), + [anon_sym__Alignof] = ACTIONS(3649), + [anon_sym_offsetof] = ACTIONS(3649), + [anon_sym__Generic] = ACTIONS(3649), + [anon_sym_asm] = ACTIONS(3649), + [anon_sym___asm__] = ACTIONS(3649), + [sym_number_literal] = ACTIONS(3651), + [anon_sym_L_SQUOTE] = ACTIONS(3651), + [anon_sym_u_SQUOTE] = ACTIONS(3651), + [anon_sym_U_SQUOTE] = ACTIONS(3651), + [anon_sym_u8_SQUOTE] = ACTIONS(3651), + [anon_sym_SQUOTE] = ACTIONS(3651), + [anon_sym_L_DQUOTE] = ACTIONS(3651), + [anon_sym_u_DQUOTE] = ACTIONS(3651), + [anon_sym_U_DQUOTE] = ACTIONS(3651), + [anon_sym_u8_DQUOTE] = ACTIONS(3651), + [anon_sym_DQUOTE] = ACTIONS(3651), + [sym_true] = ACTIONS(3649), + [sym_false] = ACTIONS(3649), + [anon_sym_NULL] = ACTIONS(3649), + [anon_sym_nullptr] = ACTIONS(3649), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3649), + [anon_sym_decltype] = ACTIONS(3649), + [anon_sym_virtual] = ACTIONS(3649), + [anon_sym_alignas] = ACTIONS(3649), + [anon_sym_explicit] = ACTIONS(3649), + [anon_sym_typename] = ACTIONS(3649), + [anon_sym_template] = ACTIONS(3649), + [anon_sym_operator] = ACTIONS(3649), + [anon_sym_try] = ACTIONS(3649), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_throw] = ACTIONS(3649), + [anon_sym_namespace] = ACTIONS(3649), + [anon_sym_using] = ACTIONS(3649), + [anon_sym_static_assert] = ACTIONS(3649), + [anon_sym_concept] = ACTIONS(3649), + [anon_sym_co_return] = ACTIONS(3649), + [anon_sym_co_yield] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(3651), + [anon_sym_LR_DQUOTE] = ACTIONS(3651), + [anon_sym_uR_DQUOTE] = ACTIONS(3651), + [anon_sym_UR_DQUOTE] = ACTIONS(3651), + [anon_sym_u8R_DQUOTE] = ACTIONS(3651), + [anon_sym_co_await] = ACTIONS(3649), + [anon_sym_new] = ACTIONS(3649), + [anon_sym_requires] = ACTIONS(3649), + [sym_this] = ACTIONS(3649), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3651), + [sym_semgrep_named_ellipsis] = ACTIONS(3651), + }, + [522] = { + [sym_identifier] = ACTIONS(3668), + [aux_sym_preproc_include_token1] = ACTIONS(3668), + [aux_sym_preproc_def_token1] = ACTIONS(3668), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3670), + [aux_sym_preproc_if_token1] = ACTIONS(3668), + [aux_sym_preproc_if_token2] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [aux_sym_preproc_else_token1] = ACTIONS(3668), + [aux_sym_preproc_elif_token1] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3668), + [anon_sym_LPAREN2] = ACTIONS(3670), + [anon_sym_BANG] = ACTIONS(3670), + [anon_sym_TILDE] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_AMP_AMP] = ACTIONS(3670), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_SEMI] = ACTIONS(3670), + [anon_sym___extension__] = ACTIONS(3668), + [anon_sym_typedef] = ACTIONS(3668), + [anon_sym_extern] = ACTIONS(3668), + [anon_sym___attribute__] = ACTIONS(3668), + [anon_sym_COLON_COLON] = ACTIONS(3670), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3670), + [anon_sym___declspec] = ACTIONS(3668), + [anon_sym___based] = ACTIONS(3668), + [anon_sym___cdecl] = ACTIONS(3668), + [anon_sym___clrcall] = ACTIONS(3668), + [anon_sym___stdcall] = ACTIONS(3668), + [anon_sym___fastcall] = ACTIONS(3668), + [anon_sym___thiscall] = ACTIONS(3668), + [anon_sym___vectorcall] = ACTIONS(3668), + [anon_sym_LBRACE] = ACTIONS(3670), + [anon_sym_signed] = ACTIONS(3668), + [anon_sym_unsigned] = ACTIONS(3668), + [anon_sym_long] = ACTIONS(3668), + [anon_sym_short] = ACTIONS(3668), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_static] = ACTIONS(3668), + [anon_sym_register] = ACTIONS(3668), + [anon_sym_inline] = ACTIONS(3668), + [anon_sym___inline] = ACTIONS(3668), + [anon_sym___inline__] = ACTIONS(3668), + [anon_sym___forceinline] = ACTIONS(3668), + [anon_sym_thread_local] = ACTIONS(3668), + [anon_sym___thread] = ACTIONS(3668), + [anon_sym_const] = ACTIONS(3668), + [anon_sym_constexpr] = ACTIONS(3668), + [anon_sym_volatile] = ACTIONS(3668), + [anon_sym_restrict] = ACTIONS(3668), + [anon_sym___restrict__] = ACTIONS(3668), + [anon_sym__Atomic] = ACTIONS(3668), + [anon_sym__Noreturn] = ACTIONS(3668), + [anon_sym_noreturn] = ACTIONS(3668), + [anon_sym_mutable] = ACTIONS(3668), + [anon_sym_constinit] = ACTIONS(3668), + [anon_sym_consteval] = ACTIONS(3668), + [sym_primitive_type] = ACTIONS(3668), + [anon_sym_enum] = ACTIONS(3668), + [anon_sym_class] = ACTIONS(3668), + [anon_sym_struct] = ACTIONS(3668), + [anon_sym_union] = ACTIONS(3668), + [anon_sym_if] = ACTIONS(3668), + [anon_sym_switch] = ACTIONS(3668), + [anon_sym_case] = ACTIONS(3668), + [anon_sym_default] = ACTIONS(3668), + [anon_sym_while] = ACTIONS(3668), + [anon_sym_do] = ACTIONS(3668), + [anon_sym_for] = ACTIONS(3668), + [anon_sym_return] = ACTIONS(3668), + [anon_sym_break] = ACTIONS(3668), + [anon_sym_continue] = ACTIONS(3668), + [anon_sym_goto] = ACTIONS(3668), + [anon_sym___try] = ACTIONS(3668), + [anon_sym___leave] = ACTIONS(3668), + [anon_sym_not] = ACTIONS(3668), + [anon_sym_compl] = ACTIONS(3668), + [anon_sym_DASH_DASH] = ACTIONS(3670), + [anon_sym_PLUS_PLUS] = ACTIONS(3670), + [anon_sym_sizeof] = ACTIONS(3668), + [anon_sym___alignof__] = ACTIONS(3668), + [anon_sym___alignof] = ACTIONS(3668), + [anon_sym__alignof] = ACTIONS(3668), + [anon_sym_alignof] = ACTIONS(3668), + [anon_sym__Alignof] = ACTIONS(3668), + [anon_sym_offsetof] = ACTIONS(3668), + [anon_sym__Generic] = ACTIONS(3668), + [anon_sym_asm] = ACTIONS(3668), + [anon_sym___asm__] = ACTIONS(3668), + [sym_number_literal] = ACTIONS(3670), + [anon_sym_L_SQUOTE] = ACTIONS(3670), + [anon_sym_u_SQUOTE] = ACTIONS(3670), + [anon_sym_U_SQUOTE] = ACTIONS(3670), + [anon_sym_u8_SQUOTE] = ACTIONS(3670), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_L_DQUOTE] = ACTIONS(3670), + [anon_sym_u_DQUOTE] = ACTIONS(3670), + [anon_sym_U_DQUOTE] = ACTIONS(3670), + [anon_sym_u8_DQUOTE] = ACTIONS(3670), + [anon_sym_DQUOTE] = ACTIONS(3670), + [sym_true] = ACTIONS(3668), + [sym_false] = ACTIONS(3668), + [anon_sym_NULL] = ACTIONS(3668), + [anon_sym_nullptr] = ACTIONS(3668), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3668), + [anon_sym_decltype] = ACTIONS(3668), + [anon_sym_virtual] = ACTIONS(3668), + [anon_sym_alignas] = ACTIONS(3668), + [anon_sym_explicit] = ACTIONS(3668), + [anon_sym_typename] = ACTIONS(3668), + [anon_sym_template] = ACTIONS(3668), + [anon_sym_operator] = ACTIONS(3668), + [anon_sym_try] = ACTIONS(3668), + [anon_sym_delete] = ACTIONS(3668), + [anon_sym_throw] = ACTIONS(3668), + [anon_sym_namespace] = ACTIONS(3668), + [anon_sym_using] = ACTIONS(3668), + [anon_sym_static_assert] = ACTIONS(3668), + [anon_sym_concept] = ACTIONS(3668), + [anon_sym_co_return] = ACTIONS(3668), + [anon_sym_co_yield] = ACTIONS(3668), + [anon_sym_R_DQUOTE] = ACTIONS(3670), + [anon_sym_LR_DQUOTE] = ACTIONS(3670), + [anon_sym_uR_DQUOTE] = ACTIONS(3670), + [anon_sym_UR_DQUOTE] = ACTIONS(3670), + [anon_sym_u8R_DQUOTE] = ACTIONS(3670), + [anon_sym_co_await] = ACTIONS(3668), + [anon_sym_new] = ACTIONS(3668), + [anon_sym_requires] = ACTIONS(3668), + [sym_this] = ACTIONS(3668), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3670), + [sym_semgrep_named_ellipsis] = ACTIONS(3670), + }, + [523] = { + [sym_identifier] = ACTIONS(3672), + [aux_sym_preproc_include_token1] = ACTIONS(3672), + [aux_sym_preproc_def_token1] = ACTIONS(3672), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3674), + [aux_sym_preproc_if_token1] = ACTIONS(3672), + [aux_sym_preproc_if_token2] = ACTIONS(3672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3672), + [aux_sym_preproc_else_token1] = ACTIONS(3672), + [aux_sym_preproc_elif_token1] = ACTIONS(3672), + [sym_preproc_directive] = ACTIONS(3672), + [anon_sym_LPAREN2] = ACTIONS(3674), + [anon_sym_BANG] = ACTIONS(3674), + [anon_sym_TILDE] = ACTIONS(3674), + [anon_sym_DASH] = ACTIONS(3672), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_STAR] = ACTIONS(3674), + [anon_sym_AMP_AMP] = ACTIONS(3674), + [anon_sym_AMP] = ACTIONS(3672), + [anon_sym_SEMI] = ACTIONS(3674), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3672), + [anon_sym_extern] = ACTIONS(3672), + [anon_sym___attribute__] = ACTIONS(3672), + [anon_sym_COLON_COLON] = ACTIONS(3674), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3674), + [anon_sym___declspec] = ACTIONS(3672), + [anon_sym___based] = ACTIONS(3672), + [anon_sym___cdecl] = ACTIONS(3672), + [anon_sym___clrcall] = ACTIONS(3672), + [anon_sym___stdcall] = ACTIONS(3672), + [anon_sym___fastcall] = ACTIONS(3672), + [anon_sym___thiscall] = ACTIONS(3672), + [anon_sym___vectorcall] = ACTIONS(3672), + [anon_sym_LBRACE] = ACTIONS(3674), + [anon_sym_signed] = ACTIONS(3672), + [anon_sym_unsigned] = ACTIONS(3672), + [anon_sym_long] = ACTIONS(3672), + [anon_sym_short] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_static] = ACTIONS(3672), + [anon_sym_register] = ACTIONS(3672), + [anon_sym_inline] = ACTIONS(3672), + [anon_sym___inline] = ACTIONS(3672), + [anon_sym___inline__] = ACTIONS(3672), + [anon_sym___forceinline] = ACTIONS(3672), + [anon_sym_thread_local] = ACTIONS(3672), + [anon_sym___thread] = ACTIONS(3672), + [anon_sym_const] = ACTIONS(3672), + [anon_sym_constexpr] = ACTIONS(3672), + [anon_sym_volatile] = ACTIONS(3672), + [anon_sym_restrict] = ACTIONS(3672), + [anon_sym___restrict__] = ACTIONS(3672), + [anon_sym__Atomic] = ACTIONS(3672), + [anon_sym__Noreturn] = ACTIONS(3672), + [anon_sym_noreturn] = ACTIONS(3672), + [anon_sym_mutable] = ACTIONS(3672), + [anon_sym_constinit] = ACTIONS(3672), + [anon_sym_consteval] = ACTIONS(3672), + [sym_primitive_type] = ACTIONS(3672), + [anon_sym_enum] = ACTIONS(3672), + [anon_sym_class] = ACTIONS(3672), + [anon_sym_struct] = ACTIONS(3672), + [anon_sym_union] = ACTIONS(3672), + [anon_sym_if] = ACTIONS(3672), + [anon_sym_switch] = ACTIONS(3672), + [anon_sym_case] = ACTIONS(3672), + [anon_sym_default] = ACTIONS(3672), + [anon_sym_while] = ACTIONS(3672), + [anon_sym_do] = ACTIONS(3672), + [anon_sym_for] = ACTIONS(3672), + [anon_sym_return] = ACTIONS(3672), + [anon_sym_break] = ACTIONS(3672), + [anon_sym_continue] = ACTIONS(3672), + [anon_sym_goto] = ACTIONS(3672), + [anon_sym___try] = ACTIONS(3672), + [anon_sym___leave] = ACTIONS(3672), + [anon_sym_not] = ACTIONS(3672), + [anon_sym_compl] = ACTIONS(3672), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_sizeof] = ACTIONS(3672), + [anon_sym___alignof__] = ACTIONS(3672), + [anon_sym___alignof] = ACTIONS(3672), + [anon_sym__alignof] = ACTIONS(3672), + [anon_sym_alignof] = ACTIONS(3672), + [anon_sym__Alignof] = ACTIONS(3672), + [anon_sym_offsetof] = ACTIONS(3672), + [anon_sym__Generic] = ACTIONS(3672), + [anon_sym_asm] = ACTIONS(3672), + [anon_sym___asm__] = ACTIONS(3672), + [sym_number_literal] = ACTIONS(3674), + [anon_sym_L_SQUOTE] = ACTIONS(3674), + [anon_sym_u_SQUOTE] = ACTIONS(3674), + [anon_sym_U_SQUOTE] = ACTIONS(3674), + [anon_sym_u8_SQUOTE] = ACTIONS(3674), + [anon_sym_SQUOTE] = ACTIONS(3674), + [anon_sym_L_DQUOTE] = ACTIONS(3674), + [anon_sym_u_DQUOTE] = ACTIONS(3674), + [anon_sym_U_DQUOTE] = ACTIONS(3674), + [anon_sym_u8_DQUOTE] = ACTIONS(3674), + [anon_sym_DQUOTE] = ACTIONS(3674), + [sym_true] = ACTIONS(3672), + [sym_false] = ACTIONS(3672), + [anon_sym_NULL] = ACTIONS(3672), + [anon_sym_nullptr] = ACTIONS(3672), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3672), + [anon_sym_decltype] = ACTIONS(3672), + [anon_sym_virtual] = ACTIONS(3672), + [anon_sym_alignas] = ACTIONS(3672), + [anon_sym_explicit] = ACTIONS(3672), + [anon_sym_typename] = ACTIONS(3672), + [anon_sym_template] = ACTIONS(3672), + [anon_sym_operator] = ACTIONS(3672), + [anon_sym_try] = ACTIONS(3672), + [anon_sym_delete] = ACTIONS(3672), + [anon_sym_throw] = ACTIONS(3672), + [anon_sym_namespace] = ACTIONS(3672), + [anon_sym_using] = ACTIONS(3672), + [anon_sym_static_assert] = ACTIONS(3672), + [anon_sym_concept] = ACTIONS(3672), + [anon_sym_co_return] = ACTIONS(3672), + [anon_sym_co_yield] = ACTIONS(3672), + [anon_sym_R_DQUOTE] = ACTIONS(3674), + [anon_sym_LR_DQUOTE] = ACTIONS(3674), + [anon_sym_uR_DQUOTE] = ACTIONS(3674), + [anon_sym_UR_DQUOTE] = ACTIONS(3674), + [anon_sym_u8R_DQUOTE] = ACTIONS(3674), + [anon_sym_co_await] = ACTIONS(3672), + [anon_sym_new] = ACTIONS(3672), + [anon_sym_requires] = ACTIONS(3672), + [sym_this] = ACTIONS(3672), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3674), + [sym_semgrep_named_ellipsis] = ACTIONS(3674), + }, + [524] = { + [sym_identifier] = ACTIONS(3294), + [aux_sym_preproc_include_token1] = ACTIONS(3294), + [aux_sym_preproc_def_token1] = ACTIONS(3294), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3296), + [aux_sym_preproc_if_token1] = ACTIONS(3294), + [aux_sym_preproc_if_token2] = ACTIONS(3294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3294), + [aux_sym_preproc_else_token1] = ACTIONS(3294), + [aux_sym_preproc_elif_token1] = ACTIONS(3294), + [sym_preproc_directive] = ACTIONS(3294), + [anon_sym_LPAREN2] = ACTIONS(3296), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3294), + [anon_sym_PLUS] = ACTIONS(3294), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_AMP] = ACTIONS(3294), + [anon_sym_SEMI] = ACTIONS(3296), + [anon_sym___extension__] = ACTIONS(3294), + [anon_sym_typedef] = ACTIONS(3294), + [anon_sym_extern] = ACTIONS(3294), + [anon_sym___attribute__] = ACTIONS(3294), + [anon_sym_COLON_COLON] = ACTIONS(3296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3296), + [anon_sym___declspec] = ACTIONS(3294), + [anon_sym___based] = ACTIONS(3294), + [anon_sym___cdecl] = ACTIONS(3294), + [anon_sym___clrcall] = ACTIONS(3294), + [anon_sym___stdcall] = ACTIONS(3294), + [anon_sym___fastcall] = ACTIONS(3294), + [anon_sym___thiscall] = ACTIONS(3294), + [anon_sym___vectorcall] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_signed] = ACTIONS(3294), + [anon_sym_unsigned] = ACTIONS(3294), + [anon_sym_long] = ACTIONS(3294), + [anon_sym_short] = ACTIONS(3294), + [anon_sym_LBRACK] = ACTIONS(3294), + [anon_sym_static] = ACTIONS(3294), + [anon_sym_register] = ACTIONS(3294), + [anon_sym_inline] = ACTIONS(3294), + [anon_sym___inline] = ACTIONS(3294), + [anon_sym___inline__] = ACTIONS(3294), + [anon_sym___forceinline] = ACTIONS(3294), + [anon_sym_thread_local] = ACTIONS(3294), + [anon_sym___thread] = ACTIONS(3294), + [anon_sym_const] = ACTIONS(3294), + [anon_sym_constexpr] = ACTIONS(3294), + [anon_sym_volatile] = ACTIONS(3294), + [anon_sym_restrict] = ACTIONS(3294), + [anon_sym___restrict__] = ACTIONS(3294), + [anon_sym__Atomic] = ACTIONS(3294), + [anon_sym__Noreturn] = ACTIONS(3294), + [anon_sym_noreturn] = ACTIONS(3294), + [anon_sym_mutable] = ACTIONS(3294), + [anon_sym_constinit] = ACTIONS(3294), + [anon_sym_consteval] = ACTIONS(3294), + [sym_primitive_type] = ACTIONS(3294), + [anon_sym_enum] = ACTIONS(3294), + [anon_sym_class] = ACTIONS(3294), + [anon_sym_struct] = ACTIONS(3294), + [anon_sym_union] = ACTIONS(3294), + [anon_sym_if] = ACTIONS(3294), + [anon_sym_switch] = ACTIONS(3294), + [anon_sym_case] = ACTIONS(3294), + [anon_sym_default] = ACTIONS(3294), + [anon_sym_while] = ACTIONS(3294), + [anon_sym_do] = ACTIONS(3294), + [anon_sym_for] = ACTIONS(3294), + [anon_sym_return] = ACTIONS(3294), + [anon_sym_break] = ACTIONS(3294), + [anon_sym_continue] = ACTIONS(3294), + [anon_sym_goto] = ACTIONS(3294), + [anon_sym___try] = ACTIONS(3294), + [anon_sym___leave] = ACTIONS(3294), + [anon_sym_not] = ACTIONS(3294), + [anon_sym_compl] = ACTIONS(3294), + [anon_sym_DASH_DASH] = ACTIONS(3296), + [anon_sym_PLUS_PLUS] = ACTIONS(3296), + [anon_sym_sizeof] = ACTIONS(3294), + [anon_sym___alignof__] = ACTIONS(3294), + [anon_sym___alignof] = ACTIONS(3294), + [anon_sym__alignof] = ACTIONS(3294), + [anon_sym_alignof] = ACTIONS(3294), + [anon_sym__Alignof] = ACTIONS(3294), + [anon_sym_offsetof] = ACTIONS(3294), + [anon_sym__Generic] = ACTIONS(3294), + [anon_sym_asm] = ACTIONS(3294), + [anon_sym___asm__] = ACTIONS(3294), + [sym_number_literal] = ACTIONS(3296), + [anon_sym_L_SQUOTE] = ACTIONS(3296), + [anon_sym_u_SQUOTE] = ACTIONS(3296), + [anon_sym_U_SQUOTE] = ACTIONS(3296), + [anon_sym_u8_SQUOTE] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3296), + [anon_sym_L_DQUOTE] = ACTIONS(3296), + [anon_sym_u_DQUOTE] = ACTIONS(3296), + [anon_sym_U_DQUOTE] = ACTIONS(3296), + [anon_sym_u8_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [sym_true] = ACTIONS(3294), + [sym_false] = ACTIONS(3294), + [anon_sym_NULL] = ACTIONS(3294), + [anon_sym_nullptr] = ACTIONS(3294), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3294), + [anon_sym_decltype] = ACTIONS(3294), + [anon_sym_virtual] = ACTIONS(3294), + [anon_sym_alignas] = ACTIONS(3294), + [anon_sym_explicit] = ACTIONS(3294), + [anon_sym_typename] = ACTIONS(3294), + [anon_sym_template] = ACTIONS(3294), + [anon_sym_operator] = ACTIONS(3294), + [anon_sym_try] = ACTIONS(3294), + [anon_sym_delete] = ACTIONS(3294), + [anon_sym_throw] = ACTIONS(3294), + [anon_sym_namespace] = ACTIONS(3294), + [anon_sym_using] = ACTIONS(3294), + [anon_sym_static_assert] = ACTIONS(3294), + [anon_sym_concept] = ACTIONS(3294), + [anon_sym_co_return] = ACTIONS(3294), + [anon_sym_co_yield] = ACTIONS(3294), + [anon_sym_R_DQUOTE] = ACTIONS(3296), + [anon_sym_LR_DQUOTE] = ACTIONS(3296), + [anon_sym_uR_DQUOTE] = ACTIONS(3296), + [anon_sym_UR_DQUOTE] = ACTIONS(3296), + [anon_sym_u8R_DQUOTE] = ACTIONS(3296), + [anon_sym_co_await] = ACTIONS(3294), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3294), + [sym_this] = ACTIONS(3294), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3296), + [sym_semgrep_named_ellipsis] = ACTIONS(3296), + }, + [525] = { + [sym_identifier] = ACTIONS(3302), + [aux_sym_preproc_include_token1] = ACTIONS(3302), + [aux_sym_preproc_def_token1] = ACTIONS(3302), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3304), + [aux_sym_preproc_if_token1] = ACTIONS(3302), + [aux_sym_preproc_if_token2] = ACTIONS(3302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3302), + [aux_sym_preproc_else_token1] = ACTIONS(3302), + [aux_sym_preproc_elif_token1] = ACTIONS(3302), + [sym_preproc_directive] = ACTIONS(3302), + [anon_sym_LPAREN2] = ACTIONS(3304), + [anon_sym_BANG] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_AMP_AMP] = ACTIONS(3304), + [anon_sym_AMP] = ACTIONS(3302), + [anon_sym_SEMI] = ACTIONS(3304), + [anon_sym___extension__] = ACTIONS(3302), + [anon_sym_typedef] = ACTIONS(3302), + [anon_sym_extern] = ACTIONS(3302), + [anon_sym___attribute__] = ACTIONS(3302), + [anon_sym_COLON_COLON] = ACTIONS(3304), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3304), + [anon_sym___declspec] = ACTIONS(3302), + [anon_sym___based] = ACTIONS(3302), + [anon_sym___cdecl] = ACTIONS(3302), + [anon_sym___clrcall] = ACTIONS(3302), + [anon_sym___stdcall] = ACTIONS(3302), + [anon_sym___fastcall] = ACTIONS(3302), + [anon_sym___thiscall] = ACTIONS(3302), + [anon_sym___vectorcall] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_signed] = ACTIONS(3302), + [anon_sym_unsigned] = ACTIONS(3302), + [anon_sym_long] = ACTIONS(3302), + [anon_sym_short] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_register] = ACTIONS(3302), + [anon_sym_inline] = ACTIONS(3302), + [anon_sym___inline] = ACTIONS(3302), + [anon_sym___inline__] = ACTIONS(3302), + [anon_sym___forceinline] = ACTIONS(3302), + [anon_sym_thread_local] = ACTIONS(3302), + [anon_sym___thread] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_constexpr] = ACTIONS(3302), + [anon_sym_volatile] = ACTIONS(3302), + [anon_sym_restrict] = ACTIONS(3302), + [anon_sym___restrict__] = ACTIONS(3302), + [anon_sym__Atomic] = ACTIONS(3302), + [anon_sym__Noreturn] = ACTIONS(3302), + [anon_sym_noreturn] = ACTIONS(3302), + [anon_sym_mutable] = ACTIONS(3302), + [anon_sym_constinit] = ACTIONS(3302), + [anon_sym_consteval] = ACTIONS(3302), + [sym_primitive_type] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_struct] = ACTIONS(3302), + [anon_sym_union] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3302), + [anon_sym_case] = ACTIONS(3302), + [anon_sym_default] = ACTIONS(3302), + [anon_sym_while] = ACTIONS(3302), + [anon_sym_do] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_goto] = ACTIONS(3302), + [anon_sym___try] = ACTIONS(3302), + [anon_sym___leave] = ACTIONS(3302), + [anon_sym_not] = ACTIONS(3302), + [anon_sym_compl] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3304), + [anon_sym_PLUS_PLUS] = ACTIONS(3304), + [anon_sym_sizeof] = ACTIONS(3302), + [anon_sym___alignof__] = ACTIONS(3302), + [anon_sym___alignof] = ACTIONS(3302), + [anon_sym__alignof] = ACTIONS(3302), + [anon_sym_alignof] = ACTIONS(3302), + [anon_sym__Alignof] = ACTIONS(3302), + [anon_sym_offsetof] = ACTIONS(3302), + [anon_sym__Generic] = ACTIONS(3302), + [anon_sym_asm] = ACTIONS(3302), + [anon_sym___asm__] = ACTIONS(3302), + [sym_number_literal] = ACTIONS(3304), + [anon_sym_L_SQUOTE] = ACTIONS(3304), + [anon_sym_u_SQUOTE] = ACTIONS(3304), + [anon_sym_U_SQUOTE] = ACTIONS(3304), + [anon_sym_u8_SQUOTE] = ACTIONS(3304), + [anon_sym_SQUOTE] = ACTIONS(3304), + [anon_sym_L_DQUOTE] = ACTIONS(3304), + [anon_sym_u_DQUOTE] = ACTIONS(3304), + [anon_sym_U_DQUOTE] = ACTIONS(3304), + [anon_sym_u8_DQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [anon_sym_NULL] = ACTIONS(3302), + [anon_sym_nullptr] = ACTIONS(3302), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3302), + [anon_sym_decltype] = ACTIONS(3302), + [anon_sym_virtual] = ACTIONS(3302), + [anon_sym_alignas] = ACTIONS(3302), + [anon_sym_explicit] = ACTIONS(3302), + [anon_sym_typename] = ACTIONS(3302), + [anon_sym_template] = ACTIONS(3302), + [anon_sym_operator] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3302), + [anon_sym_throw] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_static_assert] = ACTIONS(3302), + [anon_sym_concept] = ACTIONS(3302), + [anon_sym_co_return] = ACTIONS(3302), + [anon_sym_co_yield] = ACTIONS(3302), + [anon_sym_R_DQUOTE] = ACTIONS(3304), + [anon_sym_LR_DQUOTE] = ACTIONS(3304), + [anon_sym_uR_DQUOTE] = ACTIONS(3304), + [anon_sym_UR_DQUOTE] = ACTIONS(3304), + [anon_sym_u8R_DQUOTE] = ACTIONS(3304), + [anon_sym_co_await] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_requires] = ACTIONS(3302), + [sym_this] = ACTIONS(3302), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3304), + [sym_semgrep_named_ellipsis] = ACTIONS(3304), + }, + [526] = { + [sym_identifier] = ACTIONS(3396), + [aux_sym_preproc_include_token1] = ACTIONS(3396), + [aux_sym_preproc_def_token1] = ACTIONS(3396), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3398), + [aux_sym_preproc_if_token1] = ACTIONS(3396), + [aux_sym_preproc_if_token2] = ACTIONS(3396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3396), + [aux_sym_preproc_else_token1] = ACTIONS(3396), + [aux_sym_preproc_elif_token1] = ACTIONS(3396), + [sym_preproc_directive] = ACTIONS(3396), + [anon_sym_LPAREN2] = ACTIONS(3398), + [anon_sym_BANG] = ACTIONS(3398), + [anon_sym_TILDE] = ACTIONS(3398), + [anon_sym_DASH] = ACTIONS(3396), + [anon_sym_PLUS] = ACTIONS(3396), + [anon_sym_STAR] = ACTIONS(3398), + [anon_sym_AMP_AMP] = ACTIONS(3398), + [anon_sym_AMP] = ACTIONS(3396), + [anon_sym_SEMI] = ACTIONS(3398), + [anon_sym___extension__] = ACTIONS(3396), + [anon_sym_typedef] = ACTIONS(3396), + [anon_sym_extern] = ACTIONS(3396), + [anon_sym___attribute__] = ACTIONS(3396), + [anon_sym_COLON_COLON] = ACTIONS(3398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3398), + [anon_sym___declspec] = ACTIONS(3396), + [anon_sym___based] = ACTIONS(3396), + [anon_sym___cdecl] = ACTIONS(3396), + [anon_sym___clrcall] = ACTIONS(3396), + [anon_sym___stdcall] = ACTIONS(3396), + [anon_sym___fastcall] = ACTIONS(3396), + [anon_sym___thiscall] = ACTIONS(3396), + [anon_sym___vectorcall] = ACTIONS(3396), + [anon_sym_LBRACE] = ACTIONS(3398), + [anon_sym_signed] = ACTIONS(3396), + [anon_sym_unsigned] = ACTIONS(3396), + [anon_sym_long] = ACTIONS(3396), + [anon_sym_short] = ACTIONS(3396), + [anon_sym_LBRACK] = ACTIONS(3396), + [anon_sym_static] = ACTIONS(3396), + [anon_sym_register] = ACTIONS(3396), + [anon_sym_inline] = ACTIONS(3396), + [anon_sym___inline] = ACTIONS(3396), + [anon_sym___inline__] = ACTIONS(3396), + [anon_sym___forceinline] = ACTIONS(3396), + [anon_sym_thread_local] = ACTIONS(3396), + [anon_sym___thread] = ACTIONS(3396), + [anon_sym_const] = ACTIONS(3396), + [anon_sym_constexpr] = ACTIONS(3396), + [anon_sym_volatile] = ACTIONS(3396), + [anon_sym_restrict] = ACTIONS(3396), + [anon_sym___restrict__] = ACTIONS(3396), + [anon_sym__Atomic] = ACTIONS(3396), + [anon_sym__Noreturn] = ACTIONS(3396), + [anon_sym_noreturn] = ACTIONS(3396), + [anon_sym_mutable] = ACTIONS(3396), + [anon_sym_constinit] = ACTIONS(3396), + [anon_sym_consteval] = ACTIONS(3396), + [sym_primitive_type] = ACTIONS(3396), + [anon_sym_enum] = ACTIONS(3396), + [anon_sym_class] = ACTIONS(3396), + [anon_sym_struct] = ACTIONS(3396), + [anon_sym_union] = ACTIONS(3396), + [anon_sym_if] = ACTIONS(3396), + [anon_sym_switch] = ACTIONS(3396), + [anon_sym_case] = ACTIONS(3396), + [anon_sym_default] = ACTIONS(3396), + [anon_sym_while] = ACTIONS(3396), + [anon_sym_do] = ACTIONS(3396), + [anon_sym_for] = ACTIONS(3396), + [anon_sym_return] = ACTIONS(3396), + [anon_sym_break] = ACTIONS(3396), + [anon_sym_continue] = ACTIONS(3396), + [anon_sym_goto] = ACTIONS(3396), + [anon_sym___try] = ACTIONS(3396), + [anon_sym___leave] = ACTIONS(3396), + [anon_sym_not] = ACTIONS(3396), + [anon_sym_compl] = ACTIONS(3396), + [anon_sym_DASH_DASH] = ACTIONS(3398), + [anon_sym_PLUS_PLUS] = ACTIONS(3398), + [anon_sym_sizeof] = ACTIONS(3396), + [anon_sym___alignof__] = ACTIONS(3396), + [anon_sym___alignof] = ACTIONS(3396), + [anon_sym__alignof] = ACTIONS(3396), + [anon_sym_alignof] = ACTIONS(3396), + [anon_sym__Alignof] = ACTIONS(3396), + [anon_sym_offsetof] = ACTIONS(3396), + [anon_sym__Generic] = ACTIONS(3396), + [anon_sym_asm] = ACTIONS(3396), + [anon_sym___asm__] = ACTIONS(3396), + [sym_number_literal] = ACTIONS(3398), + [anon_sym_L_SQUOTE] = ACTIONS(3398), + [anon_sym_u_SQUOTE] = ACTIONS(3398), + [anon_sym_U_SQUOTE] = ACTIONS(3398), + [anon_sym_u8_SQUOTE] = ACTIONS(3398), + [anon_sym_SQUOTE] = ACTIONS(3398), + [anon_sym_L_DQUOTE] = ACTIONS(3398), + [anon_sym_u_DQUOTE] = ACTIONS(3398), + [anon_sym_U_DQUOTE] = ACTIONS(3398), + [anon_sym_u8_DQUOTE] = ACTIONS(3398), + [anon_sym_DQUOTE] = ACTIONS(3398), + [sym_true] = ACTIONS(3396), + [sym_false] = ACTIONS(3396), + [anon_sym_NULL] = ACTIONS(3396), + [anon_sym_nullptr] = ACTIONS(3396), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3396), + [anon_sym_decltype] = ACTIONS(3396), + [anon_sym_virtual] = ACTIONS(3396), + [anon_sym_alignas] = ACTIONS(3396), + [anon_sym_explicit] = ACTIONS(3396), + [anon_sym_typename] = ACTIONS(3396), + [anon_sym_template] = ACTIONS(3396), + [anon_sym_operator] = ACTIONS(3396), + [anon_sym_try] = ACTIONS(3396), + [anon_sym_delete] = ACTIONS(3396), + [anon_sym_throw] = ACTIONS(3396), + [anon_sym_namespace] = ACTIONS(3396), + [anon_sym_using] = ACTIONS(3396), + [anon_sym_static_assert] = ACTIONS(3396), + [anon_sym_concept] = ACTIONS(3396), + [anon_sym_co_return] = ACTIONS(3396), + [anon_sym_co_yield] = ACTIONS(3396), + [anon_sym_R_DQUOTE] = ACTIONS(3398), + [anon_sym_LR_DQUOTE] = ACTIONS(3398), + [anon_sym_uR_DQUOTE] = ACTIONS(3398), + [anon_sym_UR_DQUOTE] = ACTIONS(3398), + [anon_sym_u8R_DQUOTE] = ACTIONS(3398), + [anon_sym_co_await] = ACTIONS(3396), + [anon_sym_new] = ACTIONS(3396), + [anon_sym_requires] = ACTIONS(3396), + [sym_this] = ACTIONS(3396), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3398), + [sym_semgrep_named_ellipsis] = ACTIONS(3398), + }, + [527] = { + [sym_identifier] = ACTIONS(3609), + [aux_sym_preproc_include_token1] = ACTIONS(3609), + [aux_sym_preproc_def_token1] = ACTIONS(3609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3611), + [aux_sym_preproc_if_token1] = ACTIONS(3609), + [aux_sym_preproc_if_token2] = ACTIONS(3609), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3609), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3609), + [aux_sym_preproc_else_token1] = ACTIONS(3609), + [aux_sym_preproc_elif_token1] = ACTIONS(3609), + [sym_preproc_directive] = ACTIONS(3609), + [anon_sym_LPAREN2] = ACTIONS(3611), + [anon_sym_BANG] = ACTIONS(3611), + [anon_sym_TILDE] = ACTIONS(3611), + [anon_sym_DASH] = ACTIONS(3609), + [anon_sym_PLUS] = ACTIONS(3609), + [anon_sym_STAR] = ACTIONS(3611), + [anon_sym_AMP_AMP] = ACTIONS(3611), + [anon_sym_AMP] = ACTIONS(3609), + [anon_sym_SEMI] = ACTIONS(3611), + [anon_sym___extension__] = ACTIONS(3609), + [anon_sym_typedef] = ACTIONS(3609), + [anon_sym_extern] = ACTIONS(3609), + [anon_sym___attribute__] = ACTIONS(3609), + [anon_sym_COLON_COLON] = ACTIONS(3611), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3611), + [anon_sym___declspec] = ACTIONS(3609), + [anon_sym___based] = ACTIONS(3609), + [anon_sym___cdecl] = ACTIONS(3609), + [anon_sym___clrcall] = ACTIONS(3609), + [anon_sym___stdcall] = ACTIONS(3609), + [anon_sym___fastcall] = ACTIONS(3609), + [anon_sym___thiscall] = ACTIONS(3609), + [anon_sym___vectorcall] = ACTIONS(3609), + [anon_sym_LBRACE] = ACTIONS(3611), + [anon_sym_signed] = ACTIONS(3609), + [anon_sym_unsigned] = ACTIONS(3609), + [anon_sym_long] = ACTIONS(3609), + [anon_sym_short] = ACTIONS(3609), + [anon_sym_LBRACK] = ACTIONS(3609), + [anon_sym_static] = ACTIONS(3609), + [anon_sym_register] = ACTIONS(3609), + [anon_sym_inline] = ACTIONS(3609), + [anon_sym___inline] = ACTIONS(3609), + [anon_sym___inline__] = ACTIONS(3609), + [anon_sym___forceinline] = ACTIONS(3609), + [anon_sym_thread_local] = ACTIONS(3609), + [anon_sym___thread] = ACTIONS(3609), + [anon_sym_const] = ACTIONS(3609), + [anon_sym_constexpr] = ACTIONS(3609), + [anon_sym_volatile] = ACTIONS(3609), + [anon_sym_restrict] = ACTIONS(3609), + [anon_sym___restrict__] = ACTIONS(3609), + [anon_sym__Atomic] = ACTIONS(3609), + [anon_sym__Noreturn] = ACTIONS(3609), + [anon_sym_noreturn] = ACTIONS(3609), + [anon_sym_mutable] = ACTIONS(3609), + [anon_sym_constinit] = ACTIONS(3609), + [anon_sym_consteval] = ACTIONS(3609), + [sym_primitive_type] = ACTIONS(3609), + [anon_sym_enum] = ACTIONS(3609), + [anon_sym_class] = ACTIONS(3609), + [anon_sym_struct] = ACTIONS(3609), + [anon_sym_union] = ACTIONS(3609), + [anon_sym_if] = ACTIONS(3609), + [anon_sym_switch] = ACTIONS(3609), + [anon_sym_case] = ACTIONS(3609), + [anon_sym_default] = ACTIONS(3609), + [anon_sym_while] = ACTIONS(3609), + [anon_sym_do] = ACTIONS(3609), + [anon_sym_for] = ACTIONS(3609), + [anon_sym_return] = ACTIONS(3609), + [anon_sym_break] = ACTIONS(3609), + [anon_sym_continue] = ACTIONS(3609), + [anon_sym_goto] = ACTIONS(3609), + [anon_sym___try] = ACTIONS(3609), + [anon_sym___leave] = ACTIONS(3609), + [anon_sym_not] = ACTIONS(3609), + [anon_sym_compl] = ACTIONS(3609), + [anon_sym_DASH_DASH] = ACTIONS(3611), + [anon_sym_PLUS_PLUS] = ACTIONS(3611), + [anon_sym_sizeof] = ACTIONS(3609), + [anon_sym___alignof__] = ACTIONS(3609), + [anon_sym___alignof] = ACTIONS(3609), + [anon_sym__alignof] = ACTIONS(3609), + [anon_sym_alignof] = ACTIONS(3609), + [anon_sym__Alignof] = ACTIONS(3609), + [anon_sym_offsetof] = ACTIONS(3609), + [anon_sym__Generic] = ACTIONS(3609), + [anon_sym_asm] = ACTIONS(3609), + [anon_sym___asm__] = ACTIONS(3609), + [sym_number_literal] = ACTIONS(3611), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3611), + [anon_sym_u_DQUOTE] = ACTIONS(3611), + [anon_sym_U_DQUOTE] = ACTIONS(3611), + [anon_sym_u8_DQUOTE] = ACTIONS(3611), + [anon_sym_DQUOTE] = ACTIONS(3611), + [sym_true] = ACTIONS(3609), + [sym_false] = ACTIONS(3609), + [anon_sym_NULL] = ACTIONS(3609), + [anon_sym_nullptr] = ACTIONS(3609), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3609), + [anon_sym_decltype] = ACTIONS(3609), + [anon_sym_virtual] = ACTIONS(3609), + [anon_sym_alignas] = ACTIONS(3609), + [anon_sym_explicit] = ACTIONS(3609), + [anon_sym_typename] = ACTIONS(3609), + [anon_sym_template] = ACTIONS(3609), + [anon_sym_operator] = ACTIONS(3609), + [anon_sym_try] = ACTIONS(3609), + [anon_sym_delete] = ACTIONS(3609), + [anon_sym_throw] = ACTIONS(3609), + [anon_sym_namespace] = ACTIONS(3609), + [anon_sym_using] = ACTIONS(3609), + [anon_sym_static_assert] = ACTIONS(3609), + [anon_sym_concept] = ACTIONS(3609), + [anon_sym_co_return] = ACTIONS(3609), + [anon_sym_co_yield] = ACTIONS(3609), + [anon_sym_R_DQUOTE] = ACTIONS(3611), + [anon_sym_LR_DQUOTE] = ACTIONS(3611), + [anon_sym_uR_DQUOTE] = ACTIONS(3611), + [anon_sym_UR_DQUOTE] = ACTIONS(3611), + [anon_sym_u8R_DQUOTE] = ACTIONS(3611), + [anon_sym_co_await] = ACTIONS(3609), + [anon_sym_new] = ACTIONS(3609), + [anon_sym_requires] = ACTIONS(3609), + [sym_this] = ACTIONS(3609), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3611), + [sym_semgrep_named_ellipsis] = ACTIONS(3611), + }, + [528] = { + [sym_identifier] = ACTIONS(3223), + [aux_sym_preproc_include_token1] = ACTIONS(3223), + [aux_sym_preproc_def_token1] = ACTIONS(3223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3225), + [aux_sym_preproc_if_token1] = ACTIONS(3223), + [aux_sym_preproc_if_token2] = ACTIONS(3223), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3223), + [aux_sym_preproc_else_token1] = ACTIONS(3223), + [aux_sym_preproc_elif_token1] = ACTIONS(3223), + [sym_preproc_directive] = ACTIONS(3223), + [anon_sym_LPAREN2] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3225), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(3223), + [anon_sym_PLUS] = ACTIONS(3223), + [anon_sym_STAR] = ACTIONS(3225), + [anon_sym_AMP_AMP] = ACTIONS(3225), + [anon_sym_AMP] = ACTIONS(3223), + [anon_sym_SEMI] = ACTIONS(3225), + [anon_sym___extension__] = ACTIONS(3223), + [anon_sym_typedef] = ACTIONS(3223), + [anon_sym_extern] = ACTIONS(3223), + [anon_sym___attribute__] = ACTIONS(3223), + [anon_sym_COLON_COLON] = ACTIONS(3225), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3225), + [anon_sym___declspec] = ACTIONS(3223), + [anon_sym___based] = ACTIONS(3223), + [anon_sym___cdecl] = ACTIONS(3223), + [anon_sym___clrcall] = ACTIONS(3223), + [anon_sym___stdcall] = ACTIONS(3223), + [anon_sym___fastcall] = ACTIONS(3223), + [anon_sym___thiscall] = ACTIONS(3223), + [anon_sym___vectorcall] = ACTIONS(3223), + [anon_sym_LBRACE] = ACTIONS(3225), + [anon_sym_signed] = ACTIONS(3223), + [anon_sym_unsigned] = ACTIONS(3223), + [anon_sym_long] = ACTIONS(3223), + [anon_sym_short] = ACTIONS(3223), + [anon_sym_LBRACK] = ACTIONS(3223), + [anon_sym_static] = ACTIONS(3223), + [anon_sym_register] = ACTIONS(3223), + [anon_sym_inline] = ACTIONS(3223), + [anon_sym___inline] = ACTIONS(3223), + [anon_sym___inline__] = ACTIONS(3223), + [anon_sym___forceinline] = ACTIONS(3223), + [anon_sym_thread_local] = ACTIONS(3223), + [anon_sym___thread] = ACTIONS(3223), + [anon_sym_const] = ACTIONS(3223), + [anon_sym_constexpr] = ACTIONS(3223), + [anon_sym_volatile] = ACTIONS(3223), + [anon_sym_restrict] = ACTIONS(3223), + [anon_sym___restrict__] = ACTIONS(3223), + [anon_sym__Atomic] = ACTIONS(3223), + [anon_sym__Noreturn] = ACTIONS(3223), + [anon_sym_noreturn] = ACTIONS(3223), + [anon_sym_mutable] = ACTIONS(3223), + [anon_sym_constinit] = ACTIONS(3223), + [anon_sym_consteval] = ACTIONS(3223), + [sym_primitive_type] = ACTIONS(3223), + [anon_sym_enum] = ACTIONS(3223), + [anon_sym_class] = ACTIONS(3223), + [anon_sym_struct] = ACTIONS(3223), + [anon_sym_union] = ACTIONS(3223), + [anon_sym_if] = ACTIONS(3223), + [anon_sym_switch] = ACTIONS(3223), + [anon_sym_case] = ACTIONS(3223), + [anon_sym_default] = ACTIONS(3223), + [anon_sym_while] = ACTIONS(3223), + [anon_sym_do] = ACTIONS(3223), + [anon_sym_for] = ACTIONS(3223), + [anon_sym_return] = ACTIONS(3223), + [anon_sym_break] = ACTIONS(3223), + [anon_sym_continue] = ACTIONS(3223), + [anon_sym_goto] = ACTIONS(3223), + [anon_sym___try] = ACTIONS(3223), + [anon_sym___leave] = ACTIONS(3223), + [anon_sym_not] = ACTIONS(3223), + [anon_sym_compl] = ACTIONS(3223), + [anon_sym_DASH_DASH] = ACTIONS(3225), + [anon_sym_PLUS_PLUS] = ACTIONS(3225), + [anon_sym_sizeof] = ACTIONS(3223), + [anon_sym___alignof__] = ACTIONS(3223), + [anon_sym___alignof] = ACTIONS(3223), + [anon_sym__alignof] = ACTIONS(3223), + [anon_sym_alignof] = ACTIONS(3223), + [anon_sym__Alignof] = ACTIONS(3223), + [anon_sym_offsetof] = ACTIONS(3223), + [anon_sym__Generic] = ACTIONS(3223), + [anon_sym_asm] = ACTIONS(3223), + [anon_sym___asm__] = ACTIONS(3223), + [sym_number_literal] = ACTIONS(3225), + [anon_sym_L_SQUOTE] = ACTIONS(3225), + [anon_sym_u_SQUOTE] = ACTIONS(3225), + [anon_sym_U_SQUOTE] = ACTIONS(3225), + [anon_sym_u8_SQUOTE] = ACTIONS(3225), + [anon_sym_SQUOTE] = ACTIONS(3225), + [anon_sym_L_DQUOTE] = ACTIONS(3225), + [anon_sym_u_DQUOTE] = ACTIONS(3225), + [anon_sym_U_DQUOTE] = ACTIONS(3225), + [anon_sym_u8_DQUOTE] = ACTIONS(3225), + [anon_sym_DQUOTE] = ACTIONS(3225), + [sym_true] = ACTIONS(3223), + [sym_false] = ACTIONS(3223), + [anon_sym_NULL] = ACTIONS(3223), + [anon_sym_nullptr] = ACTIONS(3223), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3223), + [anon_sym_decltype] = ACTIONS(3223), + [anon_sym_virtual] = ACTIONS(3223), + [anon_sym_alignas] = ACTIONS(3223), + [anon_sym_explicit] = ACTIONS(3223), + [anon_sym_typename] = ACTIONS(3223), + [anon_sym_template] = ACTIONS(3223), + [anon_sym_operator] = ACTIONS(3223), + [anon_sym_try] = ACTIONS(3223), + [anon_sym_delete] = ACTIONS(3223), + [anon_sym_throw] = ACTIONS(3223), + [anon_sym_namespace] = ACTIONS(3223), + [anon_sym_using] = ACTIONS(3223), + [anon_sym_static_assert] = ACTIONS(3223), + [anon_sym_concept] = ACTIONS(3223), + [anon_sym_co_return] = ACTIONS(3223), + [anon_sym_co_yield] = ACTIONS(3223), + [anon_sym_R_DQUOTE] = ACTIONS(3225), + [anon_sym_LR_DQUOTE] = ACTIONS(3225), + [anon_sym_uR_DQUOTE] = ACTIONS(3225), + [anon_sym_UR_DQUOTE] = ACTIONS(3225), + [anon_sym_u8R_DQUOTE] = ACTIONS(3225), + [anon_sym_co_await] = ACTIONS(3223), + [anon_sym_new] = ACTIONS(3223), + [anon_sym_requires] = ACTIONS(3223), + [sym_this] = ACTIONS(3223), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3225), + [sym_semgrep_named_ellipsis] = ACTIONS(3225), + }, + [529] = { + [sym_identifier] = ACTIONS(2355), + [aux_sym_preproc_include_token1] = ACTIONS(2355), + [aux_sym_preproc_def_token1] = ACTIONS(2355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2353), + [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(2353), + [anon_sym_BANG] = ACTIONS(2353), + [anon_sym_TILDE] = ACTIONS(2353), + [anon_sym_DASH] = ACTIONS(2355), + [anon_sym_PLUS] = ACTIONS(2355), + [anon_sym_STAR] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(2353), + [anon_sym_AMP] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2353), + [anon_sym___extension__] = ACTIONS(2355), + [anon_sym_typedef] = ACTIONS(2355), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym___attribute__] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(2353), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), + [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(2353), + [anon_sym_signed] = ACTIONS(2355), + [anon_sym_unsigned] = ACTIONS(2355), + [anon_sym_long] = ACTIONS(2355), + [anon_sym_short] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_static] = ACTIONS(2355), + [anon_sym_register] = ACTIONS(2355), + [anon_sym_inline] = ACTIONS(2355), + [anon_sym___inline] = ACTIONS(2355), + [anon_sym___inline__] = ACTIONS(2355), + [anon_sym___forceinline] = ACTIONS(2355), + [anon_sym_thread_local] = ACTIONS(2355), + [anon_sym___thread] = ACTIONS(2355), + [anon_sym_const] = ACTIONS(2355), + [anon_sym_constexpr] = ACTIONS(2355), + [anon_sym_volatile] = ACTIONS(2355), + [anon_sym_restrict] = ACTIONS(2355), + [anon_sym___restrict__] = ACTIONS(2355), + [anon_sym__Atomic] = ACTIONS(2355), + [anon_sym__Noreturn] = ACTIONS(2355), + [anon_sym_noreturn] = ACTIONS(2355), + [anon_sym_mutable] = ACTIONS(2355), + [anon_sym_constinit] = ACTIONS(2355), + [anon_sym_consteval] = 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___try] = ACTIONS(2355), + [anon_sym___leave] = ACTIONS(2355), + [anon_sym_not] = ACTIONS(2355), + [anon_sym_compl] = ACTIONS(2355), + [anon_sym_DASH_DASH] = ACTIONS(2353), + [anon_sym_PLUS_PLUS] = ACTIONS(2353), + [anon_sym_sizeof] = ACTIONS(2355), + [anon_sym___alignof__] = ACTIONS(2355), + [anon_sym___alignof] = ACTIONS(2355), + [anon_sym__alignof] = ACTIONS(2355), + [anon_sym_alignof] = ACTIONS(2355), + [anon_sym__Alignof] = ACTIONS(2355), + [anon_sym_offsetof] = ACTIONS(2355), + [anon_sym__Generic] = ACTIONS(2355), + [anon_sym_asm] = ACTIONS(2355), + [anon_sym___asm__] = ACTIONS(2355), + [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(2355), + [sym_false] = ACTIONS(2355), + [anon_sym_NULL] = ACTIONS(2355), + [anon_sym_nullptr] = ACTIONS(2355), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2355), + [anon_sym_decltype] = ACTIONS(2355), + [anon_sym_virtual] = ACTIONS(2355), + [anon_sym_alignas] = 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_catch] = ACTIONS(2355), + [anon_sym_R_DQUOTE] = ACTIONS(2353), + [anon_sym_LR_DQUOTE] = ACTIONS(2353), + [anon_sym_uR_DQUOTE] = ACTIONS(2353), + [anon_sym_UR_DQUOTE] = ACTIONS(2353), + [anon_sym_u8R_DQUOTE] = ACTIONS(2353), + [anon_sym_co_await] = ACTIONS(2355), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_requires] = ACTIONS(2355), + [sym_this] = ACTIONS(2355), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2353), + [sym_semgrep_named_ellipsis] = ACTIONS(2353), + }, [530] = { - [sym_identifier] = ACTIONS(3614), - [aux_sym_preproc_include_token1] = ACTIONS(3614), - [aux_sym_preproc_def_token1] = ACTIONS(3614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3616), - [aux_sym_preproc_if_token1] = ACTIONS(3614), - [aux_sym_preproc_if_token2] = ACTIONS(3614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3614), - [aux_sym_preproc_else_token1] = ACTIONS(3614), - [aux_sym_preproc_elif_token1] = ACTIONS(3614), - [sym_preproc_directive] = ACTIONS(3614), - [anon_sym_LPAREN2] = ACTIONS(3616), - [anon_sym_BANG] = ACTIONS(3616), - [anon_sym_TILDE] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_STAR] = ACTIONS(3616), - [anon_sym_AMP_AMP] = ACTIONS(3616), - [anon_sym_AMP] = ACTIONS(3614), - [anon_sym_SEMI] = ACTIONS(3616), - [anon_sym___extension__] = ACTIONS(3614), - [anon_sym_typedef] = ACTIONS(3614), - [anon_sym_extern] = ACTIONS(3614), - [anon_sym___attribute__] = ACTIONS(3614), - [anon_sym_COLON_COLON] = ACTIONS(3616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3616), - [anon_sym___declspec] = ACTIONS(3614), - [anon_sym___based] = ACTIONS(3614), - [anon_sym___cdecl] = ACTIONS(3614), - [anon_sym___clrcall] = ACTIONS(3614), - [anon_sym___stdcall] = ACTIONS(3614), - [anon_sym___fastcall] = ACTIONS(3614), - [anon_sym___thiscall] = ACTIONS(3614), - [anon_sym___vectorcall] = ACTIONS(3614), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_signed] = ACTIONS(3614), - [anon_sym_unsigned] = ACTIONS(3614), - [anon_sym_long] = ACTIONS(3614), - [anon_sym_short] = ACTIONS(3614), - [anon_sym_LBRACK] = ACTIONS(3614), - [anon_sym_static] = ACTIONS(3614), - [anon_sym_register] = ACTIONS(3614), - [anon_sym_inline] = ACTIONS(3614), - [anon_sym___inline] = ACTIONS(3614), - [anon_sym___inline__] = ACTIONS(3614), - [anon_sym___forceinline] = ACTIONS(3614), - [anon_sym_thread_local] = ACTIONS(3614), - [anon_sym___thread] = ACTIONS(3614), - [anon_sym_const] = ACTIONS(3614), - [anon_sym_constexpr] = ACTIONS(3614), - [anon_sym_volatile] = ACTIONS(3614), - [anon_sym_restrict] = ACTIONS(3614), - [anon_sym___restrict__] = ACTIONS(3614), - [anon_sym__Atomic] = ACTIONS(3614), - [anon_sym__Noreturn] = ACTIONS(3614), - [anon_sym_noreturn] = ACTIONS(3614), - [anon_sym_mutable] = ACTIONS(3614), - [anon_sym_constinit] = ACTIONS(3614), - [anon_sym_consteval] = ACTIONS(3614), - [sym_primitive_type] = ACTIONS(3614), - [anon_sym_enum] = ACTIONS(3614), - [anon_sym_class] = ACTIONS(3614), - [anon_sym_struct] = ACTIONS(3614), - [anon_sym_union] = ACTIONS(3614), - [anon_sym_if] = ACTIONS(3614), - [anon_sym_switch] = ACTIONS(3614), - [anon_sym_case] = ACTIONS(3614), - [anon_sym_default] = ACTIONS(3614), - [anon_sym_while] = ACTIONS(3614), - [anon_sym_do] = ACTIONS(3614), - [anon_sym_for] = ACTIONS(3614), - [anon_sym_return] = ACTIONS(3614), - [anon_sym_break] = ACTIONS(3614), - [anon_sym_continue] = ACTIONS(3614), - [anon_sym_goto] = ACTIONS(3614), - [anon_sym___try] = ACTIONS(3614), - [anon_sym___leave] = ACTIONS(3614), - [anon_sym_not] = ACTIONS(3614), - [anon_sym_compl] = ACTIONS(3614), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_sizeof] = ACTIONS(3614), - [anon_sym___alignof__] = ACTIONS(3614), - [anon_sym___alignof] = ACTIONS(3614), - [anon_sym__alignof] = ACTIONS(3614), - [anon_sym_alignof] = ACTIONS(3614), - [anon_sym__Alignof] = ACTIONS(3614), - [anon_sym_offsetof] = ACTIONS(3614), - [anon_sym__Generic] = ACTIONS(3614), - [anon_sym_asm] = ACTIONS(3614), - [anon_sym___asm__] = ACTIONS(3614), - [sym_number_literal] = ACTIONS(3616), - [anon_sym_L_SQUOTE] = ACTIONS(3616), - [anon_sym_u_SQUOTE] = ACTIONS(3616), - [anon_sym_U_SQUOTE] = ACTIONS(3616), - [anon_sym_u8_SQUOTE] = ACTIONS(3616), - [anon_sym_SQUOTE] = ACTIONS(3616), - [anon_sym_L_DQUOTE] = ACTIONS(3616), - [anon_sym_u_DQUOTE] = ACTIONS(3616), - [anon_sym_U_DQUOTE] = ACTIONS(3616), - [anon_sym_u8_DQUOTE] = ACTIONS(3616), - [anon_sym_DQUOTE] = ACTIONS(3616), - [sym_true] = ACTIONS(3614), - [sym_false] = ACTIONS(3614), - [anon_sym_NULL] = ACTIONS(3614), - [anon_sym_nullptr] = ACTIONS(3614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3614), - [anon_sym_decltype] = ACTIONS(3614), - [anon_sym_virtual] = ACTIONS(3614), - [anon_sym_alignas] = ACTIONS(3614), - [anon_sym_explicit] = ACTIONS(3614), - [anon_sym_typename] = ACTIONS(3614), - [anon_sym_template] = ACTIONS(3614), - [anon_sym_operator] = ACTIONS(3614), - [anon_sym_try] = ACTIONS(3614), - [anon_sym_delete] = ACTIONS(3614), - [anon_sym_throw] = ACTIONS(3614), - [anon_sym_namespace] = ACTIONS(3614), - [anon_sym_using] = ACTIONS(3614), - [anon_sym_static_assert] = ACTIONS(3614), - [anon_sym_concept] = ACTIONS(3614), - [anon_sym_co_return] = ACTIONS(3614), - [anon_sym_co_yield] = ACTIONS(3614), - [anon_sym_R_DQUOTE] = ACTIONS(3616), - [anon_sym_LR_DQUOTE] = ACTIONS(3616), - [anon_sym_uR_DQUOTE] = ACTIONS(3616), - [anon_sym_UR_DQUOTE] = ACTIONS(3616), - [anon_sym_u8R_DQUOTE] = ACTIONS(3616), - [anon_sym_co_await] = ACTIONS(3614), - [anon_sym_new] = ACTIONS(3614), - [anon_sym_requires] = ACTIONS(3614), - [sym_this] = ACTIONS(3614), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3616), - [sym_semgrep_named_ellipsis] = ACTIONS(3616), + [sym_identifier] = ACTIONS(2359), + [aux_sym_preproc_include_token1] = ACTIONS(2359), + [aux_sym_preproc_def_token1] = ACTIONS(2359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2357), + [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(2357), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_DASH] = ACTIONS(2359), + [anon_sym_PLUS] = ACTIONS(2359), + [anon_sym_STAR] = ACTIONS(2357), + [anon_sym_AMP_AMP] = ACTIONS(2357), + [anon_sym_AMP] = ACTIONS(2359), + [anon_sym_SEMI] = ACTIONS(2357), + [anon_sym___extension__] = ACTIONS(2359), + [anon_sym_typedef] = ACTIONS(2359), + [anon_sym_extern] = ACTIONS(2359), + [anon_sym___attribute__] = ACTIONS(2359), + [anon_sym_COLON_COLON] = ACTIONS(2357), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2357), + [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(2357), + [anon_sym_signed] = ACTIONS(2359), + [anon_sym_unsigned] = ACTIONS(2359), + [anon_sym_long] = ACTIONS(2359), + [anon_sym_short] = ACTIONS(2359), + [anon_sym_LBRACK] = ACTIONS(2359), + [anon_sym_static] = ACTIONS(2359), + [anon_sym_register] = ACTIONS(2359), + [anon_sym_inline] = ACTIONS(2359), + [anon_sym___inline] = ACTIONS(2359), + [anon_sym___inline__] = ACTIONS(2359), + [anon_sym___forceinline] = ACTIONS(2359), + [anon_sym_thread_local] = ACTIONS(2359), + [anon_sym___thread] = ACTIONS(2359), + [anon_sym_const] = ACTIONS(2359), + [anon_sym_constexpr] = ACTIONS(2359), + [anon_sym_volatile] = ACTIONS(2359), + [anon_sym_restrict] = ACTIONS(2359), + [anon_sym___restrict__] = ACTIONS(2359), + [anon_sym__Atomic] = ACTIONS(2359), + [anon_sym__Noreturn] = ACTIONS(2359), + [anon_sym_noreturn] = ACTIONS(2359), + [anon_sym_mutable] = ACTIONS(2359), + [anon_sym_constinit] = ACTIONS(2359), + [anon_sym_consteval] = 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___try] = ACTIONS(2359), + [anon_sym___leave] = ACTIONS(2359), + [anon_sym_not] = ACTIONS(2359), + [anon_sym_compl] = ACTIONS(2359), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_sizeof] = ACTIONS(2359), + [anon_sym___alignof__] = ACTIONS(2359), + [anon_sym___alignof] = ACTIONS(2359), + [anon_sym__alignof] = ACTIONS(2359), + [anon_sym_alignof] = ACTIONS(2359), + [anon_sym__Alignof] = ACTIONS(2359), + [anon_sym_offsetof] = ACTIONS(2359), + [anon_sym__Generic] = ACTIONS(2359), + [anon_sym_asm] = ACTIONS(2359), + [anon_sym___asm__] = ACTIONS(2359), + [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(2359), + [sym_false] = ACTIONS(2359), + [anon_sym_NULL] = ACTIONS(2359), + [anon_sym_nullptr] = ACTIONS(2359), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2359), + [anon_sym_decltype] = ACTIONS(2359), + [anon_sym_virtual] = ACTIONS(2359), + [anon_sym_alignas] = 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_catch] = ACTIONS(2359), + [anon_sym_R_DQUOTE] = ACTIONS(2357), + [anon_sym_LR_DQUOTE] = ACTIONS(2357), + [anon_sym_uR_DQUOTE] = ACTIONS(2357), + [anon_sym_UR_DQUOTE] = ACTIONS(2357), + [anon_sym_u8R_DQUOTE] = ACTIONS(2357), + [anon_sym_co_await] = ACTIONS(2359), + [anon_sym_new] = ACTIONS(2359), + [anon_sym_requires] = ACTIONS(2359), + [sym_this] = ACTIONS(2359), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2357), + [sym_semgrep_named_ellipsis] = ACTIONS(2357), }, [531] = { - [sym_identifier] = ACTIONS(3626), - [aux_sym_preproc_include_token1] = ACTIONS(3626), - [aux_sym_preproc_def_token1] = ACTIONS(3626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3628), - [aux_sym_preproc_if_token1] = ACTIONS(3626), - [aux_sym_preproc_if_token2] = ACTIONS(3626), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3626), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3626), - [aux_sym_preproc_else_token1] = ACTIONS(3626), - [aux_sym_preproc_elif_token1] = ACTIONS(3626), - [sym_preproc_directive] = ACTIONS(3626), - [anon_sym_LPAREN2] = ACTIONS(3628), - [anon_sym_BANG] = ACTIONS(3628), - [anon_sym_TILDE] = ACTIONS(3628), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_STAR] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3628), - [anon_sym___extension__] = ACTIONS(3626), - [anon_sym_typedef] = ACTIONS(3626), - [anon_sym_extern] = ACTIONS(3626), - [anon_sym___attribute__] = ACTIONS(3626), - [anon_sym_COLON_COLON] = ACTIONS(3628), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3628), - [anon_sym___declspec] = ACTIONS(3626), - [anon_sym___based] = ACTIONS(3626), - [anon_sym___cdecl] = ACTIONS(3626), - [anon_sym___clrcall] = ACTIONS(3626), - [anon_sym___stdcall] = ACTIONS(3626), - [anon_sym___fastcall] = ACTIONS(3626), - [anon_sym___thiscall] = ACTIONS(3626), - [anon_sym___vectorcall] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_signed] = ACTIONS(3626), - [anon_sym_unsigned] = ACTIONS(3626), - [anon_sym_long] = ACTIONS(3626), - [anon_sym_short] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_register] = ACTIONS(3626), - [anon_sym_inline] = ACTIONS(3626), - [anon_sym___inline] = ACTIONS(3626), - [anon_sym___inline__] = ACTIONS(3626), - [anon_sym___forceinline] = ACTIONS(3626), - [anon_sym_thread_local] = ACTIONS(3626), - [anon_sym___thread] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_constexpr] = ACTIONS(3626), - [anon_sym_volatile] = ACTIONS(3626), - [anon_sym_restrict] = ACTIONS(3626), - [anon_sym___restrict__] = ACTIONS(3626), - [anon_sym__Atomic] = ACTIONS(3626), - [anon_sym__Noreturn] = ACTIONS(3626), - [anon_sym_noreturn] = ACTIONS(3626), - [anon_sym_mutable] = ACTIONS(3626), - [anon_sym_constinit] = ACTIONS(3626), - [anon_sym_consteval] = ACTIONS(3626), - [sym_primitive_type] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_struct] = ACTIONS(3626), - [anon_sym_union] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_goto] = ACTIONS(3626), - [anon_sym___try] = ACTIONS(3626), - [anon_sym___leave] = ACTIONS(3626), - [anon_sym_not] = ACTIONS(3626), - [anon_sym_compl] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3628), - [anon_sym_PLUS_PLUS] = ACTIONS(3628), - [anon_sym_sizeof] = ACTIONS(3626), - [anon_sym___alignof__] = ACTIONS(3626), - [anon_sym___alignof] = ACTIONS(3626), - [anon_sym__alignof] = ACTIONS(3626), - [anon_sym_alignof] = ACTIONS(3626), - [anon_sym__Alignof] = ACTIONS(3626), - [anon_sym_offsetof] = ACTIONS(3626), - [anon_sym__Generic] = ACTIONS(3626), - [anon_sym_asm] = ACTIONS(3626), - [anon_sym___asm__] = ACTIONS(3626), - [sym_number_literal] = ACTIONS(3628), - [anon_sym_L_SQUOTE] = ACTIONS(3628), - [anon_sym_u_SQUOTE] = ACTIONS(3628), - [anon_sym_U_SQUOTE] = ACTIONS(3628), - [anon_sym_u8_SQUOTE] = ACTIONS(3628), - [anon_sym_SQUOTE] = ACTIONS(3628), - [anon_sym_L_DQUOTE] = ACTIONS(3628), - [anon_sym_u_DQUOTE] = ACTIONS(3628), - [anon_sym_U_DQUOTE] = ACTIONS(3628), - [anon_sym_u8_DQUOTE] = ACTIONS(3628), - [anon_sym_DQUOTE] = ACTIONS(3628), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [anon_sym_NULL] = ACTIONS(3626), - [anon_sym_nullptr] = ACTIONS(3626), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3626), - [anon_sym_decltype] = ACTIONS(3626), - [anon_sym_virtual] = ACTIONS(3626), - [anon_sym_alignas] = ACTIONS(3626), - [anon_sym_explicit] = ACTIONS(3626), - [anon_sym_typename] = ACTIONS(3626), - [anon_sym_template] = ACTIONS(3626), - [anon_sym_operator] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_static_assert] = ACTIONS(3626), - [anon_sym_concept] = ACTIONS(3626), - [anon_sym_co_return] = ACTIONS(3626), - [anon_sym_co_yield] = ACTIONS(3626), - [anon_sym_R_DQUOTE] = ACTIONS(3628), - [anon_sym_LR_DQUOTE] = ACTIONS(3628), - [anon_sym_uR_DQUOTE] = ACTIONS(3628), - [anon_sym_UR_DQUOTE] = ACTIONS(3628), - [anon_sym_u8R_DQUOTE] = ACTIONS(3628), - [anon_sym_co_await] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_requires] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3628), - [sym_semgrep_named_ellipsis] = ACTIONS(3628), + [sym_else_clause] = STATE(592), + [sym_identifier] = ACTIONS(3073), + [aux_sym_preproc_include_token1] = ACTIONS(3073), + [aux_sym_preproc_def_token1] = ACTIONS(3073), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3075), + [aux_sym_preproc_if_token1] = ACTIONS(3073), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3073), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3073), + [sym_preproc_directive] = ACTIONS(3073), + [anon_sym_LPAREN2] = ACTIONS(3075), + [anon_sym_BANG] = ACTIONS(3075), + [anon_sym_TILDE] = ACTIONS(3075), + [anon_sym_DASH] = ACTIONS(3073), + [anon_sym_PLUS] = ACTIONS(3073), + [anon_sym_STAR] = ACTIONS(3075), + [anon_sym_AMP_AMP] = ACTIONS(3075), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_SEMI] = ACTIONS(3075), + [anon_sym___extension__] = ACTIONS(3073), + [anon_sym_typedef] = ACTIONS(3073), + [anon_sym_extern] = ACTIONS(3073), + [anon_sym___attribute__] = ACTIONS(3073), + [anon_sym_COLON_COLON] = ACTIONS(3075), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3075), + [anon_sym___declspec] = ACTIONS(3073), + [anon_sym___based] = ACTIONS(3073), + [anon_sym___cdecl] = ACTIONS(3073), + [anon_sym___clrcall] = ACTIONS(3073), + [anon_sym___stdcall] = ACTIONS(3073), + [anon_sym___fastcall] = ACTIONS(3073), + [anon_sym___thiscall] = ACTIONS(3073), + [anon_sym___vectorcall] = ACTIONS(3073), + [anon_sym_LBRACE] = ACTIONS(3075), + [anon_sym_RBRACE] = ACTIONS(3075), + [anon_sym_signed] = ACTIONS(3073), + [anon_sym_unsigned] = ACTIONS(3073), + [anon_sym_long] = ACTIONS(3073), + [anon_sym_short] = ACTIONS(3073), + [anon_sym_LBRACK] = ACTIONS(3073), + [anon_sym_static] = ACTIONS(3073), + [anon_sym_register] = ACTIONS(3073), + [anon_sym_inline] = ACTIONS(3073), + [anon_sym___inline] = ACTIONS(3073), + [anon_sym___inline__] = ACTIONS(3073), + [anon_sym___forceinline] = ACTIONS(3073), + [anon_sym_thread_local] = ACTIONS(3073), + [anon_sym___thread] = ACTIONS(3073), + [anon_sym_const] = ACTIONS(3073), + [anon_sym_constexpr] = ACTIONS(3073), + [anon_sym_volatile] = ACTIONS(3073), + [anon_sym_restrict] = ACTIONS(3073), + [anon_sym___restrict__] = ACTIONS(3073), + [anon_sym__Atomic] = ACTIONS(3073), + [anon_sym__Noreturn] = ACTIONS(3073), + [anon_sym_noreturn] = ACTIONS(3073), + [anon_sym_mutable] = ACTIONS(3073), + [anon_sym_constinit] = ACTIONS(3073), + [anon_sym_consteval] = ACTIONS(3073), + [sym_primitive_type] = ACTIONS(3073), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3073), + [anon_sym_struct] = ACTIONS(3073), + [anon_sym_union] = ACTIONS(3073), + [anon_sym_if] = ACTIONS(3073), + [anon_sym_else] = ACTIONS(3710), + [anon_sym_switch] = ACTIONS(3073), + [anon_sym_case] = ACTIONS(3073), + [anon_sym_default] = ACTIONS(3073), + [anon_sym_while] = ACTIONS(3073), + [anon_sym_do] = ACTIONS(3073), + [anon_sym_for] = ACTIONS(3073), + [anon_sym_return] = ACTIONS(3073), + [anon_sym_break] = ACTIONS(3073), + [anon_sym_continue] = ACTIONS(3073), + [anon_sym_goto] = ACTIONS(3073), + [anon_sym___try] = ACTIONS(3073), + [anon_sym___leave] = ACTIONS(3073), + [anon_sym_not] = ACTIONS(3073), + [anon_sym_compl] = ACTIONS(3073), + [anon_sym_DASH_DASH] = ACTIONS(3075), + [anon_sym_PLUS_PLUS] = ACTIONS(3075), + [anon_sym_sizeof] = ACTIONS(3073), + [anon_sym___alignof__] = ACTIONS(3073), + [anon_sym___alignof] = ACTIONS(3073), + [anon_sym__alignof] = ACTIONS(3073), + [anon_sym_alignof] = ACTIONS(3073), + [anon_sym__Alignof] = ACTIONS(3073), + [anon_sym_offsetof] = ACTIONS(3073), + [anon_sym__Generic] = ACTIONS(3073), + [anon_sym_asm] = ACTIONS(3073), + [anon_sym___asm__] = ACTIONS(3073), + [sym_number_literal] = ACTIONS(3075), + [anon_sym_L_SQUOTE] = ACTIONS(3075), + [anon_sym_u_SQUOTE] = ACTIONS(3075), + [anon_sym_U_SQUOTE] = ACTIONS(3075), + [anon_sym_u8_SQUOTE] = ACTIONS(3075), + [anon_sym_SQUOTE] = ACTIONS(3075), + [anon_sym_L_DQUOTE] = ACTIONS(3075), + [anon_sym_u_DQUOTE] = ACTIONS(3075), + [anon_sym_U_DQUOTE] = ACTIONS(3075), + [anon_sym_u8_DQUOTE] = ACTIONS(3075), + [anon_sym_DQUOTE] = ACTIONS(3075), + [sym_true] = ACTIONS(3073), + [sym_false] = ACTIONS(3073), + [anon_sym_NULL] = ACTIONS(3073), + [anon_sym_nullptr] = ACTIONS(3073), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3073), + [anon_sym_decltype] = ACTIONS(3073), + [anon_sym_virtual] = ACTIONS(3073), + [anon_sym_alignas] = ACTIONS(3073), + [anon_sym_explicit] = ACTIONS(3073), + [anon_sym_typename] = ACTIONS(3073), + [anon_sym_template] = ACTIONS(3073), + [anon_sym_operator] = ACTIONS(3073), + [anon_sym_try] = ACTIONS(3073), + [anon_sym_delete] = ACTIONS(3073), + [anon_sym_throw] = ACTIONS(3073), + [anon_sym_namespace] = ACTIONS(3073), + [anon_sym_using] = ACTIONS(3073), + [anon_sym_static_assert] = ACTIONS(3073), + [anon_sym_concept] = ACTIONS(3073), + [anon_sym_co_return] = ACTIONS(3073), + [anon_sym_co_yield] = ACTIONS(3073), + [anon_sym_R_DQUOTE] = ACTIONS(3075), + [anon_sym_LR_DQUOTE] = ACTIONS(3075), + [anon_sym_uR_DQUOTE] = ACTIONS(3075), + [anon_sym_UR_DQUOTE] = ACTIONS(3075), + [anon_sym_u8R_DQUOTE] = ACTIONS(3075), + [anon_sym_co_await] = ACTIONS(3073), + [anon_sym_new] = ACTIONS(3073), + [anon_sym_requires] = ACTIONS(3073), + [sym_this] = ACTIONS(3073), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3075), + [sym_semgrep_named_ellipsis] = ACTIONS(3075), }, [532] = { - [sym_identifier] = ACTIONS(3339), - [aux_sym_preproc_include_token1] = ACTIONS(3339), - [aux_sym_preproc_def_token1] = ACTIONS(3339), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3341), - [aux_sym_preproc_if_token1] = ACTIONS(3339), - [aux_sym_preproc_if_token2] = ACTIONS(3339), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3339), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3339), - [aux_sym_preproc_else_token1] = ACTIONS(3339), - [aux_sym_preproc_elif_token1] = ACTIONS(3339), - [sym_preproc_directive] = ACTIONS(3339), - [anon_sym_LPAREN2] = ACTIONS(3341), - [anon_sym_BANG] = ACTIONS(3341), - [anon_sym_TILDE] = ACTIONS(3341), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_STAR] = ACTIONS(3341), - [anon_sym_AMP_AMP] = ACTIONS(3341), - [anon_sym_AMP] = ACTIONS(3339), - [anon_sym_SEMI] = ACTIONS(3341), - [anon_sym___extension__] = ACTIONS(3339), - [anon_sym_typedef] = ACTIONS(3339), - [anon_sym_extern] = ACTIONS(3339), - [anon_sym___attribute__] = ACTIONS(3339), - [anon_sym_COLON_COLON] = ACTIONS(3341), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3341), - [anon_sym___declspec] = ACTIONS(3339), - [anon_sym___based] = ACTIONS(3339), - [anon_sym___cdecl] = ACTIONS(3339), - [anon_sym___clrcall] = ACTIONS(3339), - [anon_sym___stdcall] = ACTIONS(3339), - [anon_sym___fastcall] = ACTIONS(3339), - [anon_sym___thiscall] = ACTIONS(3339), - [anon_sym___vectorcall] = ACTIONS(3339), - [anon_sym_LBRACE] = ACTIONS(3341), - [anon_sym_signed] = ACTIONS(3339), - [anon_sym_unsigned] = ACTIONS(3339), - [anon_sym_long] = ACTIONS(3339), - [anon_sym_short] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3339), - [anon_sym_static] = ACTIONS(3339), - [anon_sym_register] = ACTIONS(3339), - [anon_sym_inline] = ACTIONS(3339), - [anon_sym___inline] = ACTIONS(3339), - [anon_sym___inline__] = ACTIONS(3339), - [anon_sym___forceinline] = ACTIONS(3339), - [anon_sym_thread_local] = ACTIONS(3339), - [anon_sym___thread] = ACTIONS(3339), - [anon_sym_const] = ACTIONS(3339), - [anon_sym_constexpr] = ACTIONS(3339), - [anon_sym_volatile] = ACTIONS(3339), - [anon_sym_restrict] = ACTIONS(3339), - [anon_sym___restrict__] = ACTIONS(3339), - [anon_sym__Atomic] = ACTIONS(3339), - [anon_sym__Noreturn] = ACTIONS(3339), - [anon_sym_noreturn] = ACTIONS(3339), - [anon_sym_mutable] = ACTIONS(3339), - [anon_sym_constinit] = ACTIONS(3339), - [anon_sym_consteval] = ACTIONS(3339), - [sym_primitive_type] = ACTIONS(3339), - [anon_sym_enum] = ACTIONS(3339), - [anon_sym_class] = ACTIONS(3339), - [anon_sym_struct] = ACTIONS(3339), - [anon_sym_union] = ACTIONS(3339), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_switch] = ACTIONS(3339), - [anon_sym_case] = ACTIONS(3339), - [anon_sym_default] = ACTIONS(3339), - [anon_sym_while] = ACTIONS(3339), - [anon_sym_do] = ACTIONS(3339), - [anon_sym_for] = ACTIONS(3339), - [anon_sym_return] = ACTIONS(3339), - [anon_sym_break] = ACTIONS(3339), - [anon_sym_continue] = ACTIONS(3339), - [anon_sym_goto] = ACTIONS(3339), - [anon_sym___try] = ACTIONS(3339), - [anon_sym___leave] = ACTIONS(3339), - [anon_sym_not] = ACTIONS(3339), - [anon_sym_compl] = ACTIONS(3339), - [anon_sym_DASH_DASH] = ACTIONS(3341), - [anon_sym_PLUS_PLUS] = ACTIONS(3341), - [anon_sym_sizeof] = ACTIONS(3339), - [anon_sym___alignof__] = ACTIONS(3339), - [anon_sym___alignof] = ACTIONS(3339), - [anon_sym__alignof] = ACTIONS(3339), - [anon_sym_alignof] = ACTIONS(3339), - [anon_sym__Alignof] = ACTIONS(3339), - [anon_sym_offsetof] = ACTIONS(3339), - [anon_sym__Generic] = ACTIONS(3339), - [anon_sym_asm] = ACTIONS(3339), - [anon_sym___asm__] = ACTIONS(3339), - [sym_number_literal] = ACTIONS(3341), - [anon_sym_L_SQUOTE] = ACTIONS(3341), - [anon_sym_u_SQUOTE] = ACTIONS(3341), - [anon_sym_U_SQUOTE] = ACTIONS(3341), - [anon_sym_u8_SQUOTE] = ACTIONS(3341), - [anon_sym_SQUOTE] = ACTIONS(3341), - [anon_sym_L_DQUOTE] = ACTIONS(3341), - [anon_sym_u_DQUOTE] = ACTIONS(3341), - [anon_sym_U_DQUOTE] = ACTIONS(3341), - [anon_sym_u8_DQUOTE] = ACTIONS(3341), - [anon_sym_DQUOTE] = ACTIONS(3341), - [sym_true] = ACTIONS(3339), - [sym_false] = ACTIONS(3339), - [anon_sym_NULL] = ACTIONS(3339), - [anon_sym_nullptr] = ACTIONS(3339), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3339), - [anon_sym_decltype] = ACTIONS(3339), - [anon_sym_virtual] = ACTIONS(3339), - [anon_sym_alignas] = ACTIONS(3339), - [anon_sym_explicit] = ACTIONS(3339), - [anon_sym_typename] = ACTIONS(3339), - [anon_sym_template] = ACTIONS(3339), - [anon_sym_operator] = ACTIONS(3339), - [anon_sym_try] = ACTIONS(3339), - [anon_sym_delete] = ACTIONS(3339), - [anon_sym_throw] = ACTIONS(3339), - [anon_sym_namespace] = ACTIONS(3339), - [anon_sym_using] = ACTIONS(3339), - [anon_sym_static_assert] = ACTIONS(3339), - [anon_sym_concept] = ACTIONS(3339), - [anon_sym_co_return] = ACTIONS(3339), - [anon_sym_co_yield] = ACTIONS(3339), - [anon_sym_R_DQUOTE] = ACTIONS(3341), - [anon_sym_LR_DQUOTE] = ACTIONS(3341), - [anon_sym_uR_DQUOTE] = ACTIONS(3341), - [anon_sym_UR_DQUOTE] = ACTIONS(3341), - [anon_sym_u8R_DQUOTE] = ACTIONS(3341), - [anon_sym_co_await] = ACTIONS(3339), - [anon_sym_new] = ACTIONS(3339), - [anon_sym_requires] = ACTIONS(3339), - [sym_this] = ACTIONS(3339), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3341), - [sym_semgrep_named_ellipsis] = ACTIONS(3341), + [sym_identifier] = ACTIONS(3060), + [aux_sym_preproc_include_token1] = ACTIONS(3060), + [aux_sym_preproc_def_token1] = ACTIONS(3060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3062), + [aux_sym_preproc_if_token1] = ACTIONS(3060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3060), + [sym_preproc_directive] = ACTIONS(3060), + [anon_sym_LPAREN2] = ACTIONS(3062), + [anon_sym_BANG] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(3062), + [anon_sym_AMP_AMP] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3062), + [anon_sym___extension__] = ACTIONS(3060), + [anon_sym_typedef] = ACTIONS(3060), + [anon_sym_extern] = ACTIONS(3060), + [anon_sym___attribute__] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3062), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3062), + [anon_sym___declspec] = ACTIONS(3060), + [anon_sym___based] = ACTIONS(3060), + [anon_sym___cdecl] = ACTIONS(3060), + [anon_sym___clrcall] = ACTIONS(3060), + [anon_sym___stdcall] = ACTIONS(3060), + [anon_sym___fastcall] = ACTIONS(3060), + [anon_sym___thiscall] = ACTIONS(3060), + [anon_sym___vectorcall] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_RBRACE] = ACTIONS(3062), + [anon_sym_signed] = ACTIONS(3060), + [anon_sym_unsigned] = ACTIONS(3060), + [anon_sym_long] = ACTIONS(3060), + [anon_sym_short] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_register] = ACTIONS(3060), + [anon_sym_inline] = ACTIONS(3060), + [anon_sym___inline] = ACTIONS(3060), + [anon_sym___inline__] = ACTIONS(3060), + [anon_sym___forceinline] = ACTIONS(3060), + [anon_sym_thread_local] = ACTIONS(3060), + [anon_sym___thread] = ACTIONS(3060), + [anon_sym_const] = ACTIONS(3060), + [anon_sym_constexpr] = ACTIONS(3060), + [anon_sym_volatile] = ACTIONS(3060), + [anon_sym_restrict] = ACTIONS(3060), + [anon_sym___restrict__] = ACTIONS(3060), + [anon_sym__Atomic] = ACTIONS(3060), + [anon_sym__Noreturn] = ACTIONS(3060), + [anon_sym_noreturn] = ACTIONS(3060), + [anon_sym_mutable] = ACTIONS(3060), + [anon_sym_constinit] = ACTIONS(3060), + [anon_sym_consteval] = ACTIONS(3060), + [sym_primitive_type] = ACTIONS(3060), + [anon_sym_enum] = ACTIONS(3060), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3060), + [anon_sym_union] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_else] = ACTIONS(3060), + [anon_sym_switch] = ACTIONS(3060), + [anon_sym_case] = ACTIONS(3060), + [anon_sym_default] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_goto] = ACTIONS(3060), + [anon_sym___try] = ACTIONS(3060), + [anon_sym___leave] = ACTIONS(3060), + [anon_sym_not] = ACTIONS(3060), + [anon_sym_compl] = ACTIONS(3060), + [anon_sym_DASH_DASH] = ACTIONS(3062), + [anon_sym_PLUS_PLUS] = ACTIONS(3062), + [anon_sym_sizeof] = ACTIONS(3060), + [anon_sym___alignof__] = ACTIONS(3060), + [anon_sym___alignof] = ACTIONS(3060), + [anon_sym__alignof] = ACTIONS(3060), + [anon_sym_alignof] = ACTIONS(3060), + [anon_sym__Alignof] = ACTIONS(3060), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3060), + [anon_sym_asm] = ACTIONS(3060), + [anon_sym___asm__] = ACTIONS(3060), + [sym_number_literal] = ACTIONS(3062), + [anon_sym_L_SQUOTE] = ACTIONS(3062), + [anon_sym_u_SQUOTE] = ACTIONS(3062), + [anon_sym_U_SQUOTE] = ACTIONS(3062), + [anon_sym_u8_SQUOTE] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3062), + [anon_sym_L_DQUOTE] = ACTIONS(3062), + [anon_sym_u_DQUOTE] = ACTIONS(3062), + [anon_sym_U_DQUOTE] = ACTIONS(3062), + [anon_sym_u8_DQUOTE] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3060), + [anon_sym_nullptr] = ACTIONS(3060), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3060), + [anon_sym_decltype] = ACTIONS(3060), + [anon_sym_virtual] = ACTIONS(3060), + [anon_sym_alignas] = ACTIONS(3060), + [anon_sym_explicit] = ACTIONS(3060), + [anon_sym_typename] = ACTIONS(3060), + [anon_sym_template] = ACTIONS(3060), + [anon_sym_operator] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3060), + [anon_sym_throw] = ACTIONS(3060), + [anon_sym_namespace] = ACTIONS(3060), + [anon_sym_using] = ACTIONS(3060), + [anon_sym_static_assert] = ACTIONS(3060), + [anon_sym_concept] = ACTIONS(3060), + [anon_sym_co_return] = ACTIONS(3060), + [anon_sym_co_yield] = ACTIONS(3060), + [anon_sym_catch] = ACTIONS(3060), + [anon_sym_R_DQUOTE] = ACTIONS(3062), + [anon_sym_LR_DQUOTE] = ACTIONS(3062), + [anon_sym_uR_DQUOTE] = ACTIONS(3062), + [anon_sym_UR_DQUOTE] = ACTIONS(3062), + [anon_sym_u8R_DQUOTE] = ACTIONS(3062), + [anon_sym_co_await] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_requires] = ACTIONS(3060), + [sym_this] = ACTIONS(3060), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3062), + [sym_semgrep_named_ellipsis] = ACTIONS(3062), }, [533] = { - [sym_identifier] = ACTIONS(3346), - [aux_sym_preproc_include_token1] = ACTIONS(3346), - [aux_sym_preproc_def_token1] = ACTIONS(3346), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3348), - [aux_sym_preproc_if_token1] = ACTIONS(3346), - [aux_sym_preproc_if_token2] = ACTIONS(3346), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3346), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3346), - [aux_sym_preproc_else_token1] = ACTIONS(3346), - [aux_sym_preproc_elif_token1] = ACTIONS(3346), - [sym_preproc_directive] = ACTIONS(3346), - [anon_sym_LPAREN2] = ACTIONS(3348), - [anon_sym_BANG] = ACTIONS(3348), - [anon_sym_TILDE] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_STAR] = ACTIONS(3348), - [anon_sym_AMP_AMP] = ACTIONS(3348), - [anon_sym_AMP] = ACTIONS(3346), - [anon_sym_SEMI] = ACTIONS(3348), - [anon_sym___extension__] = ACTIONS(3346), - [anon_sym_typedef] = ACTIONS(3346), - [anon_sym_extern] = ACTIONS(3346), - [anon_sym___attribute__] = ACTIONS(3346), - [anon_sym_COLON_COLON] = ACTIONS(3348), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3348), - [anon_sym___declspec] = ACTIONS(3346), - [anon_sym___based] = ACTIONS(3346), - [anon_sym___cdecl] = ACTIONS(3346), - [anon_sym___clrcall] = ACTIONS(3346), - [anon_sym___stdcall] = ACTIONS(3346), - [anon_sym___fastcall] = ACTIONS(3346), - [anon_sym___thiscall] = ACTIONS(3346), - [anon_sym___vectorcall] = ACTIONS(3346), - [anon_sym_LBRACE] = ACTIONS(3348), - [anon_sym_signed] = ACTIONS(3346), - [anon_sym_unsigned] = ACTIONS(3346), - [anon_sym_long] = ACTIONS(3346), - [anon_sym_short] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_static] = ACTIONS(3346), - [anon_sym_register] = ACTIONS(3346), - [anon_sym_inline] = ACTIONS(3346), - [anon_sym___inline] = ACTIONS(3346), - [anon_sym___inline__] = ACTIONS(3346), - [anon_sym___forceinline] = ACTIONS(3346), - [anon_sym_thread_local] = ACTIONS(3346), - [anon_sym___thread] = ACTIONS(3346), - [anon_sym_const] = ACTIONS(3346), - [anon_sym_constexpr] = ACTIONS(3346), - [anon_sym_volatile] = ACTIONS(3346), - [anon_sym_restrict] = ACTIONS(3346), - [anon_sym___restrict__] = ACTIONS(3346), - [anon_sym__Atomic] = ACTIONS(3346), - [anon_sym__Noreturn] = ACTIONS(3346), - [anon_sym_noreturn] = ACTIONS(3346), - [anon_sym_mutable] = ACTIONS(3346), - [anon_sym_constinit] = ACTIONS(3346), - [anon_sym_consteval] = ACTIONS(3346), - [sym_primitive_type] = ACTIONS(3346), - [anon_sym_enum] = ACTIONS(3346), - [anon_sym_class] = ACTIONS(3346), - [anon_sym_struct] = ACTIONS(3346), - [anon_sym_union] = ACTIONS(3346), - [anon_sym_if] = ACTIONS(3346), - [anon_sym_switch] = ACTIONS(3346), - [anon_sym_case] = ACTIONS(3346), - [anon_sym_default] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3346), - [anon_sym_do] = ACTIONS(3346), - [anon_sym_for] = ACTIONS(3346), - [anon_sym_return] = ACTIONS(3346), - [anon_sym_break] = ACTIONS(3346), - [anon_sym_continue] = ACTIONS(3346), - [anon_sym_goto] = ACTIONS(3346), - [anon_sym___try] = ACTIONS(3346), - [anon_sym___leave] = ACTIONS(3346), - [anon_sym_not] = ACTIONS(3346), - [anon_sym_compl] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3346), - [anon_sym___alignof__] = ACTIONS(3346), - [anon_sym___alignof] = ACTIONS(3346), - [anon_sym__alignof] = ACTIONS(3346), - [anon_sym_alignof] = ACTIONS(3346), - [anon_sym__Alignof] = ACTIONS(3346), - [anon_sym_offsetof] = ACTIONS(3346), - [anon_sym__Generic] = ACTIONS(3346), - [anon_sym_asm] = ACTIONS(3346), - [anon_sym___asm__] = ACTIONS(3346), - [sym_number_literal] = ACTIONS(3348), - [anon_sym_L_SQUOTE] = ACTIONS(3348), - [anon_sym_u_SQUOTE] = ACTIONS(3348), - [anon_sym_U_SQUOTE] = ACTIONS(3348), - [anon_sym_u8_SQUOTE] = ACTIONS(3348), - [anon_sym_SQUOTE] = ACTIONS(3348), - [anon_sym_L_DQUOTE] = ACTIONS(3348), - [anon_sym_u_DQUOTE] = ACTIONS(3348), - [anon_sym_U_DQUOTE] = ACTIONS(3348), - [anon_sym_u8_DQUOTE] = ACTIONS(3348), - [anon_sym_DQUOTE] = ACTIONS(3348), - [sym_true] = ACTIONS(3346), - [sym_false] = ACTIONS(3346), - [anon_sym_NULL] = ACTIONS(3346), - [anon_sym_nullptr] = ACTIONS(3346), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3346), - [anon_sym_decltype] = ACTIONS(3346), - [anon_sym_virtual] = ACTIONS(3346), - [anon_sym_alignas] = ACTIONS(3346), - [anon_sym_explicit] = ACTIONS(3346), - [anon_sym_typename] = ACTIONS(3346), - [anon_sym_template] = ACTIONS(3346), - [anon_sym_operator] = ACTIONS(3346), - [anon_sym_try] = ACTIONS(3346), - [anon_sym_delete] = ACTIONS(3346), - [anon_sym_throw] = ACTIONS(3346), - [anon_sym_namespace] = ACTIONS(3346), - [anon_sym_using] = ACTIONS(3346), - [anon_sym_static_assert] = ACTIONS(3346), - [anon_sym_concept] = ACTIONS(3346), - [anon_sym_co_return] = ACTIONS(3346), - [anon_sym_co_yield] = ACTIONS(3346), - [anon_sym_R_DQUOTE] = ACTIONS(3348), - [anon_sym_LR_DQUOTE] = ACTIONS(3348), - [anon_sym_uR_DQUOTE] = ACTIONS(3348), - [anon_sym_UR_DQUOTE] = ACTIONS(3348), - [anon_sym_u8R_DQUOTE] = ACTIONS(3348), - [anon_sym_co_await] = ACTIONS(3346), - [anon_sym_new] = ACTIONS(3346), - [anon_sym_requires] = ACTIONS(3346), - [sym_this] = ACTIONS(3346), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3348), - [sym_semgrep_named_ellipsis] = ACTIONS(3348), + [sym_else_clause] = STATE(675), + [ts_builtin_sym_end] = ACTIONS(3075), + [sym_identifier] = ACTIONS(3073), + [aux_sym_preproc_include_token1] = ACTIONS(3073), + [aux_sym_preproc_def_token1] = ACTIONS(3073), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3075), + [aux_sym_preproc_if_token1] = ACTIONS(3073), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3073), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3073), + [sym_preproc_directive] = ACTIONS(3073), + [anon_sym_LPAREN2] = ACTIONS(3075), + [anon_sym_BANG] = ACTIONS(3075), + [anon_sym_TILDE] = ACTIONS(3075), + [anon_sym_DASH] = ACTIONS(3073), + [anon_sym_PLUS] = ACTIONS(3073), + [anon_sym_STAR] = ACTIONS(3075), + [anon_sym_AMP_AMP] = ACTIONS(3075), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_SEMI] = ACTIONS(3075), + [anon_sym___extension__] = ACTIONS(3073), + [anon_sym_typedef] = ACTIONS(3073), + [anon_sym_extern] = ACTIONS(3073), + [anon_sym___attribute__] = ACTIONS(3073), + [anon_sym_COLON_COLON] = ACTIONS(3075), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3075), + [anon_sym___declspec] = ACTIONS(3073), + [anon_sym___based] = ACTIONS(3073), + [anon_sym___cdecl] = ACTIONS(3073), + [anon_sym___clrcall] = ACTIONS(3073), + [anon_sym___stdcall] = ACTIONS(3073), + [anon_sym___fastcall] = ACTIONS(3073), + [anon_sym___thiscall] = ACTIONS(3073), + [anon_sym___vectorcall] = ACTIONS(3073), + [anon_sym_LBRACE] = ACTIONS(3075), + [anon_sym_signed] = ACTIONS(3073), + [anon_sym_unsigned] = ACTIONS(3073), + [anon_sym_long] = ACTIONS(3073), + [anon_sym_short] = ACTIONS(3073), + [anon_sym_LBRACK] = ACTIONS(3073), + [anon_sym_static] = ACTIONS(3073), + [anon_sym_register] = ACTIONS(3073), + [anon_sym_inline] = ACTIONS(3073), + [anon_sym___inline] = ACTIONS(3073), + [anon_sym___inline__] = ACTIONS(3073), + [anon_sym___forceinline] = ACTIONS(3073), + [anon_sym_thread_local] = ACTIONS(3073), + [anon_sym___thread] = ACTIONS(3073), + [anon_sym_const] = ACTIONS(3073), + [anon_sym_constexpr] = ACTIONS(3073), + [anon_sym_volatile] = ACTIONS(3073), + [anon_sym_restrict] = ACTIONS(3073), + [anon_sym___restrict__] = ACTIONS(3073), + [anon_sym__Atomic] = ACTIONS(3073), + [anon_sym__Noreturn] = ACTIONS(3073), + [anon_sym_noreturn] = ACTIONS(3073), + [anon_sym_mutable] = ACTIONS(3073), + [anon_sym_constinit] = ACTIONS(3073), + [anon_sym_consteval] = ACTIONS(3073), + [sym_primitive_type] = ACTIONS(3073), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3073), + [anon_sym_struct] = ACTIONS(3073), + [anon_sym_union] = ACTIONS(3073), + [anon_sym_if] = ACTIONS(3073), + [anon_sym_else] = ACTIONS(3712), + [anon_sym_switch] = ACTIONS(3073), + [anon_sym_case] = ACTIONS(3073), + [anon_sym_default] = ACTIONS(3073), + [anon_sym_while] = ACTIONS(3073), + [anon_sym_do] = ACTIONS(3073), + [anon_sym_for] = ACTIONS(3073), + [anon_sym_return] = ACTIONS(3073), + [anon_sym_break] = ACTIONS(3073), + [anon_sym_continue] = ACTIONS(3073), + [anon_sym_goto] = ACTIONS(3073), + [anon_sym___try] = ACTIONS(3073), + [anon_sym___leave] = ACTIONS(3073), + [anon_sym_not] = ACTIONS(3073), + [anon_sym_compl] = ACTIONS(3073), + [anon_sym_DASH_DASH] = ACTIONS(3075), + [anon_sym_PLUS_PLUS] = ACTIONS(3075), + [anon_sym_sizeof] = ACTIONS(3073), + [anon_sym___alignof__] = ACTIONS(3073), + [anon_sym___alignof] = ACTIONS(3073), + [anon_sym__alignof] = ACTIONS(3073), + [anon_sym_alignof] = ACTIONS(3073), + [anon_sym__Alignof] = ACTIONS(3073), + [anon_sym_offsetof] = ACTIONS(3073), + [anon_sym__Generic] = ACTIONS(3073), + [anon_sym_asm] = ACTIONS(3073), + [anon_sym___asm__] = ACTIONS(3073), + [sym_number_literal] = ACTIONS(3075), + [anon_sym_L_SQUOTE] = ACTIONS(3075), + [anon_sym_u_SQUOTE] = ACTIONS(3075), + [anon_sym_U_SQUOTE] = ACTIONS(3075), + [anon_sym_u8_SQUOTE] = ACTIONS(3075), + [anon_sym_SQUOTE] = ACTIONS(3075), + [anon_sym_L_DQUOTE] = ACTIONS(3075), + [anon_sym_u_DQUOTE] = ACTIONS(3075), + [anon_sym_U_DQUOTE] = ACTIONS(3075), + [anon_sym_u8_DQUOTE] = ACTIONS(3075), + [anon_sym_DQUOTE] = ACTIONS(3075), + [sym_true] = ACTIONS(3073), + [sym_false] = ACTIONS(3073), + [anon_sym_NULL] = ACTIONS(3073), + [anon_sym_nullptr] = ACTIONS(3073), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3073), + [anon_sym_decltype] = ACTIONS(3073), + [anon_sym_virtual] = ACTIONS(3073), + [anon_sym_alignas] = ACTIONS(3073), + [anon_sym_explicit] = ACTIONS(3073), + [anon_sym_typename] = ACTIONS(3073), + [anon_sym_template] = ACTIONS(3073), + [anon_sym_operator] = ACTIONS(3073), + [anon_sym_try] = ACTIONS(3073), + [anon_sym_delete] = ACTIONS(3073), + [anon_sym_throw] = ACTIONS(3073), + [anon_sym_namespace] = ACTIONS(3073), + [anon_sym_using] = ACTIONS(3073), + [anon_sym_static_assert] = ACTIONS(3073), + [anon_sym_concept] = ACTIONS(3073), + [anon_sym_co_return] = ACTIONS(3073), + [anon_sym_co_yield] = ACTIONS(3073), + [anon_sym_R_DQUOTE] = ACTIONS(3075), + [anon_sym_LR_DQUOTE] = ACTIONS(3075), + [anon_sym_uR_DQUOTE] = ACTIONS(3075), + [anon_sym_UR_DQUOTE] = ACTIONS(3075), + [anon_sym_u8R_DQUOTE] = ACTIONS(3075), + [anon_sym_co_await] = ACTIONS(3073), + [anon_sym_new] = ACTIONS(3073), + [anon_sym_requires] = ACTIONS(3073), + [sym_this] = ACTIONS(3073), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3075), + [sym_semgrep_named_ellipsis] = ACTIONS(3075), }, [534] = { - [sym_else_clause] = STATE(616), - [sym_identifier] = ACTIONS(3088), - [aux_sym_preproc_include_token1] = ACTIONS(3088), - [aux_sym_preproc_def_token1] = ACTIONS(3088), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3090), - [aux_sym_preproc_if_token1] = ACTIONS(3088), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3088), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3088), - [sym_preproc_directive] = ACTIONS(3088), - [anon_sym_LPAREN2] = ACTIONS(3090), - [anon_sym_BANG] = ACTIONS(3090), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3088), - [anon_sym_PLUS] = ACTIONS(3088), - [anon_sym_STAR] = ACTIONS(3090), - [anon_sym_AMP_AMP] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3088), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym___extension__] = ACTIONS(3088), - [anon_sym_typedef] = ACTIONS(3088), - [anon_sym_extern] = ACTIONS(3088), - [anon_sym___attribute__] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3090), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3090), - [anon_sym___declspec] = ACTIONS(3088), - [anon_sym___based] = ACTIONS(3088), - [anon_sym___cdecl] = ACTIONS(3088), - [anon_sym___clrcall] = ACTIONS(3088), - [anon_sym___stdcall] = ACTIONS(3088), - [anon_sym___fastcall] = ACTIONS(3088), - [anon_sym___thiscall] = ACTIONS(3088), - [anon_sym___vectorcall] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_signed] = ACTIONS(3088), - [anon_sym_unsigned] = ACTIONS(3088), - [anon_sym_long] = ACTIONS(3088), - [anon_sym_short] = ACTIONS(3088), - [anon_sym_LBRACK] = ACTIONS(3088), - [anon_sym_static] = ACTIONS(3088), - [anon_sym_register] = ACTIONS(3088), - [anon_sym_inline] = ACTIONS(3088), - [anon_sym___inline] = ACTIONS(3088), - [anon_sym___inline__] = ACTIONS(3088), - [anon_sym___forceinline] = ACTIONS(3088), - [anon_sym_thread_local] = ACTIONS(3088), - [anon_sym___thread] = ACTIONS(3088), - [anon_sym_const] = ACTIONS(3088), - [anon_sym_constexpr] = ACTIONS(3088), - [anon_sym_volatile] = ACTIONS(3088), - [anon_sym_restrict] = ACTIONS(3088), - [anon_sym___restrict__] = ACTIONS(3088), - [anon_sym__Atomic] = ACTIONS(3088), - [anon_sym__Noreturn] = ACTIONS(3088), - [anon_sym_noreturn] = ACTIONS(3088), - [anon_sym_mutable] = ACTIONS(3088), - [anon_sym_constinit] = ACTIONS(3088), - [anon_sym_consteval] = ACTIONS(3088), - [sym_primitive_type] = ACTIONS(3088), - [anon_sym_enum] = ACTIONS(3088), - [anon_sym_class] = ACTIONS(3088), - [anon_sym_struct] = ACTIONS(3088), - [anon_sym_union] = ACTIONS(3088), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_else] = ACTIONS(3678), - [anon_sym_switch] = ACTIONS(3088), - [anon_sym_case] = ACTIONS(3088), - [anon_sym_default] = ACTIONS(3088), - [anon_sym_while] = ACTIONS(3088), - [anon_sym_do] = ACTIONS(3088), - [anon_sym_for] = ACTIONS(3088), - [anon_sym_return] = ACTIONS(3088), - [anon_sym_break] = ACTIONS(3088), - [anon_sym_continue] = ACTIONS(3088), - [anon_sym_goto] = ACTIONS(3088), - [anon_sym___try] = ACTIONS(3088), - [anon_sym___leave] = ACTIONS(3088), - [anon_sym_not] = ACTIONS(3088), - [anon_sym_compl] = ACTIONS(3088), - [anon_sym_DASH_DASH] = ACTIONS(3090), - [anon_sym_PLUS_PLUS] = ACTIONS(3090), - [anon_sym_sizeof] = ACTIONS(3088), - [anon_sym___alignof__] = ACTIONS(3088), - [anon_sym___alignof] = ACTIONS(3088), - [anon_sym__alignof] = ACTIONS(3088), - [anon_sym_alignof] = ACTIONS(3088), - [anon_sym__Alignof] = ACTIONS(3088), - [anon_sym_offsetof] = ACTIONS(3088), - [anon_sym__Generic] = ACTIONS(3088), - [anon_sym_asm] = ACTIONS(3088), - [anon_sym___asm__] = ACTIONS(3088), - [sym_number_literal] = ACTIONS(3090), - [anon_sym_L_SQUOTE] = ACTIONS(3090), - [anon_sym_u_SQUOTE] = ACTIONS(3090), - [anon_sym_U_SQUOTE] = ACTIONS(3090), - [anon_sym_u8_SQUOTE] = ACTIONS(3090), - [anon_sym_SQUOTE] = ACTIONS(3090), - [anon_sym_L_DQUOTE] = ACTIONS(3090), - [anon_sym_u_DQUOTE] = ACTIONS(3090), - [anon_sym_U_DQUOTE] = ACTIONS(3090), - [anon_sym_u8_DQUOTE] = ACTIONS(3090), - [anon_sym_DQUOTE] = ACTIONS(3090), - [sym_true] = ACTIONS(3088), - [sym_false] = ACTIONS(3088), - [anon_sym_NULL] = ACTIONS(3088), - [anon_sym_nullptr] = ACTIONS(3088), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3088), - [anon_sym_decltype] = ACTIONS(3088), - [anon_sym_virtual] = ACTIONS(3088), - [anon_sym_alignas] = ACTIONS(3088), - [anon_sym_explicit] = ACTIONS(3088), - [anon_sym_typename] = ACTIONS(3088), - [anon_sym_template] = ACTIONS(3088), - [anon_sym_operator] = ACTIONS(3088), - [anon_sym_try] = ACTIONS(3088), - [anon_sym_delete] = ACTIONS(3088), - [anon_sym_throw] = ACTIONS(3088), - [anon_sym_namespace] = ACTIONS(3088), - [anon_sym_using] = ACTIONS(3088), - [anon_sym_static_assert] = ACTIONS(3088), - [anon_sym_concept] = ACTIONS(3088), - [anon_sym_co_return] = ACTIONS(3088), - [anon_sym_co_yield] = ACTIONS(3088), - [anon_sym_R_DQUOTE] = ACTIONS(3090), - [anon_sym_LR_DQUOTE] = ACTIONS(3090), - [anon_sym_uR_DQUOTE] = ACTIONS(3090), - [anon_sym_UR_DQUOTE] = ACTIONS(3090), - [anon_sym_u8R_DQUOTE] = ACTIONS(3090), - [anon_sym_co_await] = ACTIONS(3088), - [anon_sym_new] = ACTIONS(3088), - [anon_sym_requires] = ACTIONS(3088), - [sym_this] = ACTIONS(3088), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3090), - [sym_semgrep_named_ellipsis] = ACTIONS(3090), + [ts_builtin_sym_end] = ACTIONS(3062), + [sym_identifier] = ACTIONS(3060), + [aux_sym_preproc_include_token1] = ACTIONS(3060), + [aux_sym_preproc_def_token1] = ACTIONS(3060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3062), + [aux_sym_preproc_if_token1] = ACTIONS(3060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3060), + [sym_preproc_directive] = ACTIONS(3060), + [anon_sym_LPAREN2] = ACTIONS(3062), + [anon_sym_BANG] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(3062), + [anon_sym_AMP_AMP] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3062), + [anon_sym___extension__] = ACTIONS(3060), + [anon_sym_typedef] = ACTIONS(3060), + [anon_sym_extern] = ACTIONS(3060), + [anon_sym___attribute__] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3062), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3062), + [anon_sym___declspec] = ACTIONS(3060), + [anon_sym___based] = ACTIONS(3060), + [anon_sym___cdecl] = ACTIONS(3060), + [anon_sym___clrcall] = ACTIONS(3060), + [anon_sym___stdcall] = ACTIONS(3060), + [anon_sym___fastcall] = ACTIONS(3060), + [anon_sym___thiscall] = ACTIONS(3060), + [anon_sym___vectorcall] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_signed] = ACTIONS(3060), + [anon_sym_unsigned] = ACTIONS(3060), + [anon_sym_long] = ACTIONS(3060), + [anon_sym_short] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_register] = ACTIONS(3060), + [anon_sym_inline] = ACTIONS(3060), + [anon_sym___inline] = ACTIONS(3060), + [anon_sym___inline__] = ACTIONS(3060), + [anon_sym___forceinline] = ACTIONS(3060), + [anon_sym_thread_local] = ACTIONS(3060), + [anon_sym___thread] = ACTIONS(3060), + [anon_sym_const] = ACTIONS(3060), + [anon_sym_constexpr] = ACTIONS(3060), + [anon_sym_volatile] = ACTIONS(3060), + [anon_sym_restrict] = ACTIONS(3060), + [anon_sym___restrict__] = ACTIONS(3060), + [anon_sym__Atomic] = ACTIONS(3060), + [anon_sym__Noreturn] = ACTIONS(3060), + [anon_sym_noreturn] = ACTIONS(3060), + [anon_sym_mutable] = ACTIONS(3060), + [anon_sym_constinit] = ACTIONS(3060), + [anon_sym_consteval] = ACTIONS(3060), + [sym_primitive_type] = ACTIONS(3060), + [anon_sym_enum] = ACTIONS(3060), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3060), + [anon_sym_union] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_else] = ACTIONS(3060), + [anon_sym_switch] = ACTIONS(3060), + [anon_sym_case] = ACTIONS(3060), + [anon_sym_default] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_goto] = ACTIONS(3060), + [anon_sym___try] = ACTIONS(3060), + [anon_sym___leave] = ACTIONS(3060), + [anon_sym_not] = ACTIONS(3060), + [anon_sym_compl] = ACTIONS(3060), + [anon_sym_DASH_DASH] = ACTIONS(3062), + [anon_sym_PLUS_PLUS] = ACTIONS(3062), + [anon_sym_sizeof] = ACTIONS(3060), + [anon_sym___alignof__] = ACTIONS(3060), + [anon_sym___alignof] = ACTIONS(3060), + [anon_sym__alignof] = ACTIONS(3060), + [anon_sym_alignof] = ACTIONS(3060), + [anon_sym__Alignof] = ACTIONS(3060), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3060), + [anon_sym_asm] = ACTIONS(3060), + [anon_sym___asm__] = ACTIONS(3060), + [sym_number_literal] = ACTIONS(3062), + [anon_sym_L_SQUOTE] = ACTIONS(3062), + [anon_sym_u_SQUOTE] = ACTIONS(3062), + [anon_sym_U_SQUOTE] = ACTIONS(3062), + [anon_sym_u8_SQUOTE] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3062), + [anon_sym_L_DQUOTE] = ACTIONS(3062), + [anon_sym_u_DQUOTE] = ACTIONS(3062), + [anon_sym_U_DQUOTE] = ACTIONS(3062), + [anon_sym_u8_DQUOTE] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3060), + [anon_sym_nullptr] = ACTIONS(3060), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3060), + [anon_sym_decltype] = ACTIONS(3060), + [anon_sym_virtual] = ACTIONS(3060), + [anon_sym_alignas] = ACTIONS(3060), + [anon_sym_explicit] = ACTIONS(3060), + [anon_sym_typename] = ACTIONS(3060), + [anon_sym_template] = ACTIONS(3060), + [anon_sym_operator] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3060), + [anon_sym_throw] = ACTIONS(3060), + [anon_sym_namespace] = ACTIONS(3060), + [anon_sym_using] = ACTIONS(3060), + [anon_sym_static_assert] = ACTIONS(3060), + [anon_sym_concept] = ACTIONS(3060), + [anon_sym_co_return] = ACTIONS(3060), + [anon_sym_co_yield] = ACTIONS(3060), + [anon_sym_catch] = ACTIONS(3060), + [anon_sym_R_DQUOTE] = ACTIONS(3062), + [anon_sym_LR_DQUOTE] = ACTIONS(3062), + [anon_sym_uR_DQUOTE] = ACTIONS(3062), + [anon_sym_UR_DQUOTE] = ACTIONS(3062), + [anon_sym_u8R_DQUOTE] = ACTIONS(3062), + [anon_sym_co_await] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_requires] = ACTIONS(3060), + [sym_this] = ACTIONS(3060), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3062), + [sym_semgrep_named_ellipsis] = ACTIONS(3062), }, [535] = { - [sym_identifier] = ACTIONS(3491), - [aux_sym_preproc_include_token1] = ACTIONS(3491), - [aux_sym_preproc_def_token1] = ACTIONS(3491), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3493), - [aux_sym_preproc_if_token1] = ACTIONS(3491), - [aux_sym_preproc_if_token2] = ACTIONS(3491), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3491), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3491), - [aux_sym_preproc_else_token1] = ACTIONS(3491), - [aux_sym_preproc_elif_token1] = ACTIONS(3491), - [sym_preproc_directive] = ACTIONS(3491), - [anon_sym_LPAREN2] = ACTIONS(3493), - [anon_sym_BANG] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(3493), - [anon_sym_DASH] = ACTIONS(3491), - [anon_sym_PLUS] = ACTIONS(3491), - [anon_sym_STAR] = ACTIONS(3493), - [anon_sym_AMP_AMP] = ACTIONS(3493), - [anon_sym_AMP] = ACTIONS(3491), - [anon_sym_SEMI] = ACTIONS(3493), - [anon_sym___extension__] = ACTIONS(3491), - [anon_sym_typedef] = ACTIONS(3491), - [anon_sym_extern] = ACTIONS(3491), - [anon_sym___attribute__] = ACTIONS(3491), - [anon_sym_COLON_COLON] = ACTIONS(3493), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3493), - [anon_sym___declspec] = ACTIONS(3491), - [anon_sym___based] = ACTIONS(3491), - [anon_sym___cdecl] = ACTIONS(3491), - [anon_sym___clrcall] = ACTIONS(3491), - [anon_sym___stdcall] = ACTIONS(3491), - [anon_sym___fastcall] = ACTIONS(3491), - [anon_sym___thiscall] = ACTIONS(3491), - [anon_sym___vectorcall] = ACTIONS(3491), - [anon_sym_LBRACE] = ACTIONS(3493), - [anon_sym_signed] = ACTIONS(3491), - [anon_sym_unsigned] = ACTIONS(3491), - [anon_sym_long] = ACTIONS(3491), - [anon_sym_short] = ACTIONS(3491), - [anon_sym_LBRACK] = ACTIONS(3491), - [anon_sym_static] = ACTIONS(3491), - [anon_sym_register] = ACTIONS(3491), - [anon_sym_inline] = ACTIONS(3491), - [anon_sym___inline] = ACTIONS(3491), - [anon_sym___inline__] = ACTIONS(3491), - [anon_sym___forceinline] = ACTIONS(3491), - [anon_sym_thread_local] = ACTIONS(3491), - [anon_sym___thread] = ACTIONS(3491), - [anon_sym_const] = ACTIONS(3491), - [anon_sym_constexpr] = ACTIONS(3491), - [anon_sym_volatile] = ACTIONS(3491), - [anon_sym_restrict] = ACTIONS(3491), - [anon_sym___restrict__] = ACTIONS(3491), - [anon_sym__Atomic] = ACTIONS(3491), - [anon_sym__Noreturn] = ACTIONS(3491), - [anon_sym_noreturn] = ACTIONS(3491), - [anon_sym_mutable] = ACTIONS(3491), - [anon_sym_constinit] = ACTIONS(3491), - [anon_sym_consteval] = ACTIONS(3491), - [sym_primitive_type] = ACTIONS(3491), - [anon_sym_enum] = ACTIONS(3491), - [anon_sym_class] = ACTIONS(3491), - [anon_sym_struct] = ACTIONS(3491), - [anon_sym_union] = ACTIONS(3491), - [anon_sym_if] = ACTIONS(3491), - [anon_sym_switch] = ACTIONS(3491), - [anon_sym_case] = ACTIONS(3491), - [anon_sym_default] = ACTIONS(3491), - [anon_sym_while] = ACTIONS(3491), - [anon_sym_do] = ACTIONS(3491), - [anon_sym_for] = ACTIONS(3491), - [anon_sym_return] = ACTIONS(3491), - [anon_sym_break] = ACTIONS(3491), - [anon_sym_continue] = ACTIONS(3491), - [anon_sym_goto] = ACTIONS(3491), - [anon_sym___try] = ACTIONS(3491), - [anon_sym___leave] = ACTIONS(3491), - [anon_sym_not] = ACTIONS(3491), - [anon_sym_compl] = ACTIONS(3491), - [anon_sym_DASH_DASH] = ACTIONS(3493), - [anon_sym_PLUS_PLUS] = ACTIONS(3493), - [anon_sym_sizeof] = ACTIONS(3491), - [anon_sym___alignof__] = ACTIONS(3491), - [anon_sym___alignof] = ACTIONS(3491), - [anon_sym__alignof] = ACTIONS(3491), - [anon_sym_alignof] = ACTIONS(3491), - [anon_sym__Alignof] = ACTIONS(3491), - [anon_sym_offsetof] = ACTIONS(3491), - [anon_sym__Generic] = ACTIONS(3491), - [anon_sym_asm] = ACTIONS(3491), - [anon_sym___asm__] = ACTIONS(3491), - [sym_number_literal] = ACTIONS(3493), - [anon_sym_L_SQUOTE] = ACTIONS(3493), - [anon_sym_u_SQUOTE] = ACTIONS(3493), - [anon_sym_U_SQUOTE] = ACTIONS(3493), - [anon_sym_u8_SQUOTE] = ACTIONS(3493), - [anon_sym_SQUOTE] = ACTIONS(3493), - [anon_sym_L_DQUOTE] = ACTIONS(3493), - [anon_sym_u_DQUOTE] = ACTIONS(3493), - [anon_sym_U_DQUOTE] = ACTIONS(3493), - [anon_sym_u8_DQUOTE] = ACTIONS(3493), - [anon_sym_DQUOTE] = ACTIONS(3493), - [sym_true] = ACTIONS(3491), - [sym_false] = ACTIONS(3491), - [anon_sym_NULL] = ACTIONS(3491), - [anon_sym_nullptr] = ACTIONS(3491), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3491), - [anon_sym_decltype] = ACTIONS(3491), - [anon_sym_virtual] = ACTIONS(3491), - [anon_sym_alignas] = ACTIONS(3491), - [anon_sym_explicit] = ACTIONS(3491), - [anon_sym_typename] = ACTIONS(3491), - [anon_sym_template] = ACTIONS(3491), - [anon_sym_operator] = ACTIONS(3491), - [anon_sym_try] = ACTIONS(3491), - [anon_sym_delete] = ACTIONS(3491), - [anon_sym_throw] = ACTIONS(3491), - [anon_sym_namespace] = ACTIONS(3491), - [anon_sym_using] = ACTIONS(3491), - [anon_sym_static_assert] = ACTIONS(3491), - [anon_sym_concept] = ACTIONS(3491), - [anon_sym_co_return] = ACTIONS(3491), - [anon_sym_co_yield] = ACTIONS(3491), - [anon_sym_R_DQUOTE] = ACTIONS(3493), - [anon_sym_LR_DQUOTE] = ACTIONS(3493), - [anon_sym_uR_DQUOTE] = ACTIONS(3493), - [anon_sym_UR_DQUOTE] = ACTIONS(3493), - [anon_sym_u8R_DQUOTE] = ACTIONS(3493), - [anon_sym_co_await] = ACTIONS(3491), - [anon_sym_new] = ACTIONS(3491), - [anon_sym_requires] = ACTIONS(3491), - [sym_this] = ACTIONS(3491), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3493), - [sym_semgrep_named_ellipsis] = ACTIONS(3493), + [sym_identifier] = ACTIONS(3503), + [aux_sym_preproc_include_token1] = ACTIONS(3503), + [aux_sym_preproc_def_token1] = ACTIONS(3503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3505), + [aux_sym_preproc_if_token1] = ACTIONS(3503), + [aux_sym_preproc_if_token2] = ACTIONS(3503), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3503), + [aux_sym_preproc_else_token1] = ACTIONS(3503), + [aux_sym_preproc_elif_token1] = ACTIONS(3503), + [sym_preproc_directive] = ACTIONS(3503), + [anon_sym_LPAREN2] = ACTIONS(3505), + [anon_sym_BANG] = ACTIONS(3505), + [anon_sym_TILDE] = ACTIONS(3505), + [anon_sym_DASH] = ACTIONS(3503), + [anon_sym_PLUS] = ACTIONS(3503), + [anon_sym_STAR] = ACTIONS(3505), + [anon_sym_AMP_AMP] = ACTIONS(3505), + [anon_sym_AMP] = ACTIONS(3503), + [anon_sym_SEMI] = ACTIONS(3505), + [anon_sym___extension__] = ACTIONS(3503), + [anon_sym_typedef] = ACTIONS(3503), + [anon_sym_extern] = ACTIONS(3503), + [anon_sym___attribute__] = ACTIONS(3503), + [anon_sym_COLON_COLON] = ACTIONS(3505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3505), + [anon_sym___declspec] = ACTIONS(3503), + [anon_sym___based] = ACTIONS(3503), + [anon_sym___cdecl] = ACTIONS(3503), + [anon_sym___clrcall] = ACTIONS(3503), + [anon_sym___stdcall] = ACTIONS(3503), + [anon_sym___fastcall] = ACTIONS(3503), + [anon_sym___thiscall] = ACTIONS(3503), + [anon_sym___vectorcall] = ACTIONS(3503), + [anon_sym_LBRACE] = ACTIONS(3505), + [anon_sym_signed] = ACTIONS(3503), + [anon_sym_unsigned] = ACTIONS(3503), + [anon_sym_long] = ACTIONS(3503), + [anon_sym_short] = ACTIONS(3503), + [anon_sym_LBRACK] = ACTIONS(3503), + [anon_sym_static] = ACTIONS(3503), + [anon_sym_register] = ACTIONS(3503), + [anon_sym_inline] = ACTIONS(3503), + [anon_sym___inline] = ACTIONS(3503), + [anon_sym___inline__] = ACTIONS(3503), + [anon_sym___forceinline] = ACTIONS(3503), + [anon_sym_thread_local] = ACTIONS(3503), + [anon_sym___thread] = ACTIONS(3503), + [anon_sym_const] = ACTIONS(3503), + [anon_sym_constexpr] = ACTIONS(3503), + [anon_sym_volatile] = ACTIONS(3503), + [anon_sym_restrict] = ACTIONS(3503), + [anon_sym___restrict__] = ACTIONS(3503), + [anon_sym__Atomic] = ACTIONS(3503), + [anon_sym__Noreturn] = ACTIONS(3503), + [anon_sym_noreturn] = ACTIONS(3503), + [anon_sym_mutable] = ACTIONS(3503), + [anon_sym_constinit] = ACTIONS(3503), + [anon_sym_consteval] = ACTIONS(3503), + [sym_primitive_type] = ACTIONS(3503), + [anon_sym_enum] = ACTIONS(3503), + [anon_sym_class] = ACTIONS(3503), + [anon_sym_struct] = ACTIONS(3503), + [anon_sym_union] = ACTIONS(3503), + [anon_sym_if] = ACTIONS(3503), + [anon_sym_switch] = ACTIONS(3503), + [anon_sym_case] = ACTIONS(3503), + [anon_sym_default] = ACTIONS(3503), + [anon_sym_while] = ACTIONS(3503), + [anon_sym_do] = ACTIONS(3503), + [anon_sym_for] = ACTIONS(3503), + [anon_sym_return] = ACTIONS(3503), + [anon_sym_break] = ACTIONS(3503), + [anon_sym_continue] = ACTIONS(3503), + [anon_sym_goto] = ACTIONS(3503), + [anon_sym___try] = ACTIONS(3503), + [anon_sym___leave] = ACTIONS(3503), + [anon_sym_not] = ACTIONS(3503), + [anon_sym_compl] = ACTIONS(3503), + [anon_sym_DASH_DASH] = ACTIONS(3505), + [anon_sym_PLUS_PLUS] = ACTIONS(3505), + [anon_sym_sizeof] = ACTIONS(3503), + [anon_sym___alignof__] = ACTIONS(3503), + [anon_sym___alignof] = ACTIONS(3503), + [anon_sym__alignof] = ACTIONS(3503), + [anon_sym_alignof] = ACTIONS(3503), + [anon_sym__Alignof] = ACTIONS(3503), + [anon_sym_offsetof] = ACTIONS(3503), + [anon_sym__Generic] = ACTIONS(3503), + [anon_sym_asm] = ACTIONS(3503), + [anon_sym___asm__] = ACTIONS(3503), + [sym_number_literal] = ACTIONS(3505), + [anon_sym_L_SQUOTE] = ACTIONS(3505), + [anon_sym_u_SQUOTE] = ACTIONS(3505), + [anon_sym_U_SQUOTE] = ACTIONS(3505), + [anon_sym_u8_SQUOTE] = ACTIONS(3505), + [anon_sym_SQUOTE] = ACTIONS(3505), + [anon_sym_L_DQUOTE] = ACTIONS(3505), + [anon_sym_u_DQUOTE] = ACTIONS(3505), + [anon_sym_U_DQUOTE] = ACTIONS(3505), + [anon_sym_u8_DQUOTE] = ACTIONS(3505), + [anon_sym_DQUOTE] = ACTIONS(3505), + [sym_true] = ACTIONS(3503), + [sym_false] = ACTIONS(3503), + [anon_sym_NULL] = ACTIONS(3503), + [anon_sym_nullptr] = ACTIONS(3503), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3503), + [anon_sym_decltype] = ACTIONS(3503), + [anon_sym_virtual] = ACTIONS(3503), + [anon_sym_alignas] = ACTIONS(3503), + [anon_sym_explicit] = ACTIONS(3503), + [anon_sym_typename] = ACTIONS(3503), + [anon_sym_template] = ACTIONS(3503), + [anon_sym_operator] = ACTIONS(3503), + [anon_sym_try] = ACTIONS(3503), + [anon_sym_delete] = ACTIONS(3503), + [anon_sym_throw] = ACTIONS(3503), + [anon_sym_namespace] = ACTIONS(3503), + [anon_sym_using] = ACTIONS(3503), + [anon_sym_static_assert] = ACTIONS(3503), + [anon_sym_concept] = ACTIONS(3503), + [anon_sym_co_return] = ACTIONS(3503), + [anon_sym_co_yield] = ACTIONS(3503), + [anon_sym_R_DQUOTE] = ACTIONS(3505), + [anon_sym_LR_DQUOTE] = ACTIONS(3505), + [anon_sym_uR_DQUOTE] = ACTIONS(3505), + [anon_sym_UR_DQUOTE] = ACTIONS(3505), + [anon_sym_u8R_DQUOTE] = ACTIONS(3505), + [anon_sym_co_await] = ACTIONS(3503), + [anon_sym_new] = ACTIONS(3503), + [anon_sym_requires] = ACTIONS(3503), + [sym_this] = ACTIONS(3503), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3505), + [sym_semgrep_named_ellipsis] = ACTIONS(3505), }, [536] = { - [sym_identifier] = ACTIONS(3634), - [aux_sym_preproc_include_token1] = ACTIONS(3634), - [aux_sym_preproc_def_token1] = ACTIONS(3634), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3636), - [aux_sym_preproc_if_token1] = ACTIONS(3634), - [aux_sym_preproc_if_token2] = ACTIONS(3634), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3634), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3634), - [aux_sym_preproc_else_token1] = ACTIONS(3634), - [aux_sym_preproc_elif_token1] = ACTIONS(3634), - [sym_preproc_directive] = ACTIONS(3634), - [anon_sym_LPAREN2] = ACTIONS(3636), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_TILDE] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3634), - [anon_sym_PLUS] = ACTIONS(3634), - [anon_sym_STAR] = ACTIONS(3636), - [anon_sym_AMP_AMP] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3634), - [anon_sym_SEMI] = ACTIONS(3636), - [anon_sym___extension__] = ACTIONS(3634), - [anon_sym_typedef] = ACTIONS(3634), - [anon_sym_extern] = ACTIONS(3634), - [anon_sym___attribute__] = ACTIONS(3634), - [anon_sym_COLON_COLON] = ACTIONS(3636), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3636), - [anon_sym___declspec] = ACTIONS(3634), - [anon_sym___based] = ACTIONS(3634), - [anon_sym___cdecl] = ACTIONS(3634), - [anon_sym___clrcall] = ACTIONS(3634), - [anon_sym___stdcall] = ACTIONS(3634), - [anon_sym___fastcall] = ACTIONS(3634), - [anon_sym___thiscall] = ACTIONS(3634), - [anon_sym___vectorcall] = ACTIONS(3634), - [anon_sym_LBRACE] = ACTIONS(3636), - [anon_sym_signed] = ACTIONS(3634), - [anon_sym_unsigned] = ACTIONS(3634), - [anon_sym_long] = ACTIONS(3634), - [anon_sym_short] = ACTIONS(3634), - [anon_sym_LBRACK] = ACTIONS(3634), - [anon_sym_static] = ACTIONS(3634), - [anon_sym_register] = ACTIONS(3634), - [anon_sym_inline] = ACTIONS(3634), - [anon_sym___inline] = ACTIONS(3634), - [anon_sym___inline__] = ACTIONS(3634), - [anon_sym___forceinline] = ACTIONS(3634), - [anon_sym_thread_local] = ACTIONS(3634), - [anon_sym___thread] = ACTIONS(3634), - [anon_sym_const] = ACTIONS(3634), - [anon_sym_constexpr] = ACTIONS(3634), - [anon_sym_volatile] = ACTIONS(3634), - [anon_sym_restrict] = ACTIONS(3634), - [anon_sym___restrict__] = ACTIONS(3634), - [anon_sym__Atomic] = ACTIONS(3634), - [anon_sym__Noreturn] = ACTIONS(3634), - [anon_sym_noreturn] = ACTIONS(3634), - [anon_sym_mutable] = ACTIONS(3634), - [anon_sym_constinit] = ACTIONS(3634), - [anon_sym_consteval] = ACTIONS(3634), - [sym_primitive_type] = ACTIONS(3634), - [anon_sym_enum] = ACTIONS(3634), - [anon_sym_class] = ACTIONS(3634), - [anon_sym_struct] = ACTIONS(3634), - [anon_sym_union] = ACTIONS(3634), - [anon_sym_if] = ACTIONS(3634), - [anon_sym_switch] = ACTIONS(3634), - [anon_sym_case] = ACTIONS(3634), - [anon_sym_default] = ACTIONS(3634), - [anon_sym_while] = ACTIONS(3634), - [anon_sym_do] = ACTIONS(3634), - [anon_sym_for] = ACTIONS(3634), - [anon_sym_return] = ACTIONS(3634), - [anon_sym_break] = ACTIONS(3634), - [anon_sym_continue] = ACTIONS(3634), - [anon_sym_goto] = ACTIONS(3634), - [anon_sym___try] = ACTIONS(3634), - [anon_sym___leave] = ACTIONS(3634), - [anon_sym_not] = ACTIONS(3634), - [anon_sym_compl] = ACTIONS(3634), - [anon_sym_DASH_DASH] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3636), - [anon_sym_sizeof] = ACTIONS(3634), - [anon_sym___alignof__] = ACTIONS(3634), - [anon_sym___alignof] = ACTIONS(3634), - [anon_sym__alignof] = ACTIONS(3634), - [anon_sym_alignof] = ACTIONS(3634), - [anon_sym__Alignof] = ACTIONS(3634), - [anon_sym_offsetof] = ACTIONS(3634), - [anon_sym__Generic] = ACTIONS(3634), - [anon_sym_asm] = ACTIONS(3634), - [anon_sym___asm__] = ACTIONS(3634), - [sym_number_literal] = ACTIONS(3636), - [anon_sym_L_SQUOTE] = ACTIONS(3636), - [anon_sym_u_SQUOTE] = ACTIONS(3636), - [anon_sym_U_SQUOTE] = ACTIONS(3636), - [anon_sym_u8_SQUOTE] = ACTIONS(3636), - [anon_sym_SQUOTE] = ACTIONS(3636), - [anon_sym_L_DQUOTE] = ACTIONS(3636), - [anon_sym_u_DQUOTE] = ACTIONS(3636), - [anon_sym_U_DQUOTE] = ACTIONS(3636), - [anon_sym_u8_DQUOTE] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(3636), - [sym_true] = ACTIONS(3634), - [sym_false] = ACTIONS(3634), - [anon_sym_NULL] = ACTIONS(3634), - [anon_sym_nullptr] = ACTIONS(3634), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3634), - [anon_sym_decltype] = ACTIONS(3634), - [anon_sym_virtual] = ACTIONS(3634), - [anon_sym_alignas] = ACTIONS(3634), - [anon_sym_explicit] = ACTIONS(3634), - [anon_sym_typename] = ACTIONS(3634), - [anon_sym_template] = ACTIONS(3634), - [anon_sym_operator] = ACTIONS(3634), - [anon_sym_try] = ACTIONS(3634), - [anon_sym_delete] = ACTIONS(3634), - [anon_sym_throw] = ACTIONS(3634), - [anon_sym_namespace] = ACTIONS(3634), - [anon_sym_using] = ACTIONS(3634), - [anon_sym_static_assert] = ACTIONS(3634), - [anon_sym_concept] = ACTIONS(3634), - [anon_sym_co_return] = ACTIONS(3634), - [anon_sym_co_yield] = ACTIONS(3634), - [anon_sym_R_DQUOTE] = ACTIONS(3636), - [anon_sym_LR_DQUOTE] = ACTIONS(3636), - [anon_sym_uR_DQUOTE] = ACTIONS(3636), - [anon_sym_UR_DQUOTE] = ACTIONS(3636), - [anon_sym_u8R_DQUOTE] = ACTIONS(3636), - [anon_sym_co_await] = ACTIONS(3634), - [anon_sym_new] = ACTIONS(3634), - [anon_sym_requires] = ACTIONS(3634), - [sym_this] = ACTIONS(3634), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3636), - [sym_semgrep_named_ellipsis] = ACTIONS(3636), + [sym_identifier] = ACTIONS(3497), + [aux_sym_preproc_include_token1] = ACTIONS(3497), + [aux_sym_preproc_def_token1] = ACTIONS(3497), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3499), + [aux_sym_preproc_if_token1] = ACTIONS(3497), + [aux_sym_preproc_if_token2] = ACTIONS(3497), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3497), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3497), + [aux_sym_preproc_else_token1] = ACTIONS(3497), + [aux_sym_preproc_elif_token1] = ACTIONS(3497), + [sym_preproc_directive] = ACTIONS(3497), + [anon_sym_LPAREN2] = ACTIONS(3499), + [anon_sym_BANG] = ACTIONS(3499), + [anon_sym_TILDE] = ACTIONS(3499), + [anon_sym_DASH] = ACTIONS(3497), + [anon_sym_PLUS] = ACTIONS(3497), + [anon_sym_STAR] = ACTIONS(3499), + [anon_sym_AMP_AMP] = ACTIONS(3499), + [anon_sym_AMP] = ACTIONS(3497), + [anon_sym_SEMI] = ACTIONS(3499), + [anon_sym___extension__] = ACTIONS(3497), + [anon_sym_typedef] = 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___cdecl] = ACTIONS(3497), + [anon_sym___clrcall] = ACTIONS(3497), + [anon_sym___stdcall] = ACTIONS(3497), + [anon_sym___fastcall] = ACTIONS(3497), + [anon_sym___thiscall] = ACTIONS(3497), + [anon_sym___vectorcall] = ACTIONS(3497), + [anon_sym_LBRACE] = ACTIONS(3499), + [anon_sym_signed] = ACTIONS(3497), + [anon_sym_unsigned] = ACTIONS(3497), + [anon_sym_long] = ACTIONS(3497), + [anon_sym_short] = ACTIONS(3497), + [anon_sym_LBRACK] = ACTIONS(3497), + [anon_sym_static] = ACTIONS(3497), + [anon_sym_register] = ACTIONS(3497), + [anon_sym_inline] = ACTIONS(3497), + [anon_sym___inline] = ACTIONS(3497), + [anon_sym___inline__] = ACTIONS(3497), + [anon_sym___forceinline] = ACTIONS(3497), + [anon_sym_thread_local] = ACTIONS(3497), + [anon_sym___thread] = ACTIONS(3497), + [anon_sym_const] = ACTIONS(3497), + [anon_sym_constexpr] = ACTIONS(3497), + [anon_sym_volatile] = ACTIONS(3497), + [anon_sym_restrict] = ACTIONS(3497), + [anon_sym___restrict__] = ACTIONS(3497), + [anon_sym__Atomic] = ACTIONS(3497), + [anon_sym__Noreturn] = ACTIONS(3497), + [anon_sym_noreturn] = ACTIONS(3497), + [anon_sym_mutable] = ACTIONS(3497), + [anon_sym_constinit] = ACTIONS(3497), + [anon_sym_consteval] = ACTIONS(3497), + [sym_primitive_type] = ACTIONS(3497), + [anon_sym_enum] = ACTIONS(3497), + [anon_sym_class] = ACTIONS(3497), + [anon_sym_struct] = ACTIONS(3497), + [anon_sym_union] = ACTIONS(3497), + [anon_sym_if] = ACTIONS(3497), + [anon_sym_switch] = ACTIONS(3497), + [anon_sym_case] = ACTIONS(3497), + [anon_sym_default] = ACTIONS(3497), + [anon_sym_while] = ACTIONS(3497), + [anon_sym_do] = ACTIONS(3497), + [anon_sym_for] = ACTIONS(3497), + [anon_sym_return] = ACTIONS(3497), + [anon_sym_break] = ACTIONS(3497), + [anon_sym_continue] = ACTIONS(3497), + [anon_sym_goto] = ACTIONS(3497), + [anon_sym___try] = ACTIONS(3497), + [anon_sym___leave] = ACTIONS(3497), + [anon_sym_not] = ACTIONS(3497), + [anon_sym_compl] = ACTIONS(3497), + [anon_sym_DASH_DASH] = ACTIONS(3499), + [anon_sym_PLUS_PLUS] = ACTIONS(3499), + [anon_sym_sizeof] = ACTIONS(3497), + [anon_sym___alignof__] = ACTIONS(3497), + [anon_sym___alignof] = ACTIONS(3497), + [anon_sym__alignof] = ACTIONS(3497), + [anon_sym_alignof] = ACTIONS(3497), + [anon_sym__Alignof] = ACTIONS(3497), + [anon_sym_offsetof] = ACTIONS(3497), + [anon_sym__Generic] = ACTIONS(3497), + [anon_sym_asm] = ACTIONS(3497), + [anon_sym___asm__] = ACTIONS(3497), + [sym_number_literal] = ACTIONS(3499), + [anon_sym_L_SQUOTE] = ACTIONS(3499), + [anon_sym_u_SQUOTE] = ACTIONS(3499), + [anon_sym_U_SQUOTE] = ACTIONS(3499), + [anon_sym_u8_SQUOTE] = ACTIONS(3499), + [anon_sym_SQUOTE] = ACTIONS(3499), + [anon_sym_L_DQUOTE] = ACTIONS(3499), + [anon_sym_u_DQUOTE] = ACTIONS(3499), + [anon_sym_U_DQUOTE] = ACTIONS(3499), + [anon_sym_u8_DQUOTE] = ACTIONS(3499), + [anon_sym_DQUOTE] = ACTIONS(3499), + [sym_true] = ACTIONS(3497), + [sym_false] = ACTIONS(3497), + [anon_sym_NULL] = ACTIONS(3497), + [anon_sym_nullptr] = ACTIONS(3497), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3497), + [anon_sym_decltype] = ACTIONS(3497), + [anon_sym_virtual] = ACTIONS(3497), + [anon_sym_alignas] = ACTIONS(3497), + [anon_sym_explicit] = ACTIONS(3497), + [anon_sym_typename] = ACTIONS(3497), + [anon_sym_template] = ACTIONS(3497), + [anon_sym_operator] = ACTIONS(3497), + [anon_sym_try] = ACTIONS(3497), + [anon_sym_delete] = ACTIONS(3497), + [anon_sym_throw] = ACTIONS(3497), + [anon_sym_namespace] = ACTIONS(3497), + [anon_sym_using] = ACTIONS(3497), + [anon_sym_static_assert] = ACTIONS(3497), + [anon_sym_concept] = ACTIONS(3497), + [anon_sym_co_return] = ACTIONS(3497), + [anon_sym_co_yield] = ACTIONS(3497), + [anon_sym_R_DQUOTE] = ACTIONS(3499), + [anon_sym_LR_DQUOTE] = ACTIONS(3499), + [anon_sym_uR_DQUOTE] = ACTIONS(3499), + [anon_sym_UR_DQUOTE] = ACTIONS(3499), + [anon_sym_u8R_DQUOTE] = ACTIONS(3499), + [anon_sym_co_await] = ACTIONS(3497), + [anon_sym_new] = ACTIONS(3497), + [anon_sym_requires] = ACTIONS(3497), + [sym_this] = ACTIONS(3497), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3499), + [sym_semgrep_named_ellipsis] = ACTIONS(3499), }, [537] = { - [sym_identifier] = ACTIONS(3249), - [aux_sym_preproc_include_token1] = ACTIONS(3249), - [aux_sym_preproc_def_token1] = ACTIONS(3249), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3251), - [aux_sym_preproc_if_token1] = ACTIONS(3249), - [aux_sym_preproc_if_token2] = ACTIONS(3249), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3249), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3249), - [aux_sym_preproc_else_token1] = ACTIONS(3249), - [aux_sym_preproc_elif_token1] = ACTIONS(3249), - [sym_preproc_directive] = ACTIONS(3249), - [anon_sym_LPAREN2] = ACTIONS(3251), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_TILDE] = ACTIONS(3251), - [anon_sym_DASH] = ACTIONS(3249), - [anon_sym_PLUS] = ACTIONS(3249), - [anon_sym_STAR] = ACTIONS(3251), - [anon_sym_AMP_AMP] = ACTIONS(3251), - [anon_sym_AMP] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym___extension__] = ACTIONS(3249), - [anon_sym_typedef] = ACTIONS(3249), - [anon_sym_extern] = ACTIONS(3249), - [anon_sym___attribute__] = ACTIONS(3249), - [anon_sym_COLON_COLON] = ACTIONS(3251), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3251), - [anon_sym___declspec] = ACTIONS(3249), - [anon_sym___based] = ACTIONS(3249), - [anon_sym___cdecl] = ACTIONS(3249), - [anon_sym___clrcall] = ACTIONS(3249), - [anon_sym___stdcall] = ACTIONS(3249), - [anon_sym___fastcall] = ACTIONS(3249), - [anon_sym___thiscall] = ACTIONS(3249), - [anon_sym___vectorcall] = ACTIONS(3249), - [anon_sym_LBRACE] = ACTIONS(3251), - [anon_sym_signed] = ACTIONS(3249), - [anon_sym_unsigned] = ACTIONS(3249), - [anon_sym_long] = ACTIONS(3249), - [anon_sym_short] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_static] = ACTIONS(3249), - [anon_sym_register] = ACTIONS(3249), - [anon_sym_inline] = ACTIONS(3249), - [anon_sym___inline] = ACTIONS(3249), - [anon_sym___inline__] = ACTIONS(3249), - [anon_sym___forceinline] = ACTIONS(3249), - [anon_sym_thread_local] = ACTIONS(3249), - [anon_sym___thread] = ACTIONS(3249), - [anon_sym_const] = ACTIONS(3249), - [anon_sym_constexpr] = ACTIONS(3249), - [anon_sym_volatile] = ACTIONS(3249), - [anon_sym_restrict] = ACTIONS(3249), - [anon_sym___restrict__] = ACTIONS(3249), - [anon_sym__Atomic] = ACTIONS(3249), - [anon_sym__Noreturn] = ACTIONS(3249), - [anon_sym_noreturn] = ACTIONS(3249), - [anon_sym_mutable] = ACTIONS(3249), - [anon_sym_constinit] = ACTIONS(3249), - [anon_sym_consteval] = ACTIONS(3249), - [sym_primitive_type] = ACTIONS(3249), - [anon_sym_enum] = ACTIONS(3249), - [anon_sym_class] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3249), - [anon_sym_if] = ACTIONS(3249), - [anon_sym_switch] = ACTIONS(3249), - [anon_sym_case] = ACTIONS(3249), - [anon_sym_default] = ACTIONS(3249), - [anon_sym_while] = ACTIONS(3249), - [anon_sym_do] = ACTIONS(3249), - [anon_sym_for] = ACTIONS(3249), - [anon_sym_return] = ACTIONS(3249), - [anon_sym_break] = ACTIONS(3249), - [anon_sym_continue] = ACTIONS(3249), - [anon_sym_goto] = ACTIONS(3249), - [anon_sym___try] = ACTIONS(3249), - [anon_sym___leave] = ACTIONS(3249), - [anon_sym_not] = ACTIONS(3249), - [anon_sym_compl] = ACTIONS(3249), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_sizeof] = ACTIONS(3249), - [anon_sym___alignof__] = ACTIONS(3249), - [anon_sym___alignof] = ACTIONS(3249), - [anon_sym__alignof] = ACTIONS(3249), - [anon_sym_alignof] = ACTIONS(3249), - [anon_sym__Alignof] = ACTIONS(3249), - [anon_sym_offsetof] = ACTIONS(3249), - [anon_sym__Generic] = ACTIONS(3249), - [anon_sym_asm] = ACTIONS(3249), - [anon_sym___asm__] = ACTIONS(3249), - [sym_number_literal] = ACTIONS(3251), - [anon_sym_L_SQUOTE] = ACTIONS(3251), - [anon_sym_u_SQUOTE] = ACTIONS(3251), - [anon_sym_U_SQUOTE] = ACTIONS(3251), - [anon_sym_u8_SQUOTE] = ACTIONS(3251), - [anon_sym_SQUOTE] = ACTIONS(3251), - [anon_sym_L_DQUOTE] = ACTIONS(3251), - [anon_sym_u_DQUOTE] = ACTIONS(3251), - [anon_sym_U_DQUOTE] = ACTIONS(3251), - [anon_sym_u8_DQUOTE] = ACTIONS(3251), - [anon_sym_DQUOTE] = ACTIONS(3251), - [sym_true] = ACTIONS(3249), - [sym_false] = ACTIONS(3249), - [anon_sym_NULL] = ACTIONS(3249), - [anon_sym_nullptr] = ACTIONS(3249), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3249), - [anon_sym_decltype] = ACTIONS(3249), - [anon_sym_virtual] = ACTIONS(3249), - [anon_sym_alignas] = ACTIONS(3249), - [anon_sym_explicit] = ACTIONS(3249), - [anon_sym_typename] = ACTIONS(3249), - [anon_sym_template] = ACTIONS(3249), - [anon_sym_operator] = ACTIONS(3249), - [anon_sym_try] = ACTIONS(3249), - [anon_sym_delete] = ACTIONS(3249), - [anon_sym_throw] = ACTIONS(3249), - [anon_sym_namespace] = ACTIONS(3249), - [anon_sym_using] = ACTIONS(3249), - [anon_sym_static_assert] = ACTIONS(3249), - [anon_sym_concept] = ACTIONS(3249), - [anon_sym_co_return] = ACTIONS(3249), - [anon_sym_co_yield] = ACTIONS(3249), - [anon_sym_R_DQUOTE] = ACTIONS(3251), - [anon_sym_LR_DQUOTE] = ACTIONS(3251), - [anon_sym_uR_DQUOTE] = ACTIONS(3251), - [anon_sym_UR_DQUOTE] = ACTIONS(3251), - [anon_sym_u8R_DQUOTE] = ACTIONS(3251), - [anon_sym_co_await] = ACTIONS(3249), - [anon_sym_new] = ACTIONS(3249), - [anon_sym_requires] = ACTIONS(3249), - [sym_this] = ACTIONS(3249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3251), - [sym_semgrep_named_ellipsis] = ACTIONS(3251), + [sym_else_clause] = STATE(612), + [ts_builtin_sym_end] = ACTIONS(3066), + [sym_identifier] = ACTIONS(3064), + [aux_sym_preproc_include_token1] = ACTIONS(3064), + [aux_sym_preproc_def_token1] = ACTIONS(3064), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3066), + [aux_sym_preproc_if_token1] = ACTIONS(3064), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3064), + [sym_preproc_directive] = ACTIONS(3064), + [anon_sym_LPAREN2] = ACTIONS(3066), + [anon_sym_BANG] = ACTIONS(3066), + [anon_sym_TILDE] = ACTIONS(3066), + [anon_sym_DASH] = ACTIONS(3064), + [anon_sym_PLUS] = ACTIONS(3064), + [anon_sym_STAR] = ACTIONS(3066), + [anon_sym_AMP_AMP] = ACTIONS(3066), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_SEMI] = ACTIONS(3066), + [anon_sym___extension__] = ACTIONS(3064), + [anon_sym_typedef] = ACTIONS(3064), + [anon_sym_extern] = ACTIONS(3064), + [anon_sym___attribute__] = ACTIONS(3064), + [anon_sym_COLON_COLON] = ACTIONS(3066), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3066), + [anon_sym___declspec] = ACTIONS(3064), + [anon_sym___based] = ACTIONS(3064), + [anon_sym___cdecl] = ACTIONS(3064), + [anon_sym___clrcall] = ACTIONS(3064), + [anon_sym___stdcall] = ACTIONS(3064), + [anon_sym___fastcall] = ACTIONS(3064), + [anon_sym___thiscall] = ACTIONS(3064), + [anon_sym___vectorcall] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(3066), + [anon_sym_signed] = ACTIONS(3064), + [anon_sym_unsigned] = ACTIONS(3064), + [anon_sym_long] = ACTIONS(3064), + [anon_sym_short] = ACTIONS(3064), + [anon_sym_LBRACK] = ACTIONS(3064), + [anon_sym_static] = ACTIONS(3064), + [anon_sym_register] = ACTIONS(3064), + [anon_sym_inline] = ACTIONS(3064), + [anon_sym___inline] = ACTIONS(3064), + [anon_sym___inline__] = ACTIONS(3064), + [anon_sym___forceinline] = ACTIONS(3064), + [anon_sym_thread_local] = ACTIONS(3064), + [anon_sym___thread] = ACTIONS(3064), + [anon_sym_const] = ACTIONS(3064), + [anon_sym_constexpr] = ACTIONS(3064), + [anon_sym_volatile] = ACTIONS(3064), + [anon_sym_restrict] = ACTIONS(3064), + [anon_sym___restrict__] = ACTIONS(3064), + [anon_sym__Atomic] = ACTIONS(3064), + [anon_sym__Noreturn] = ACTIONS(3064), + [anon_sym_noreturn] = ACTIONS(3064), + [anon_sym_mutable] = ACTIONS(3064), + [anon_sym_constinit] = ACTIONS(3064), + [anon_sym_consteval] = ACTIONS(3064), + [sym_primitive_type] = ACTIONS(3064), + [anon_sym_enum] = ACTIONS(3064), + [anon_sym_class] = ACTIONS(3064), + [anon_sym_struct] = ACTIONS(3064), + [anon_sym_union] = ACTIONS(3064), + [anon_sym_if] = ACTIONS(3064), + [anon_sym_else] = ACTIONS(3712), + [anon_sym_switch] = ACTIONS(3064), + [anon_sym_case] = ACTIONS(3064), + [anon_sym_default] = ACTIONS(3064), + [anon_sym_while] = ACTIONS(3064), + [anon_sym_do] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(3064), + [anon_sym_return] = ACTIONS(3064), + [anon_sym_break] = ACTIONS(3064), + [anon_sym_continue] = ACTIONS(3064), + [anon_sym_goto] = ACTIONS(3064), + [anon_sym___try] = ACTIONS(3064), + [anon_sym___leave] = ACTIONS(3064), + [anon_sym_not] = ACTIONS(3064), + [anon_sym_compl] = ACTIONS(3064), + [anon_sym_DASH_DASH] = ACTIONS(3066), + [anon_sym_PLUS_PLUS] = ACTIONS(3066), + [anon_sym_sizeof] = ACTIONS(3064), + [anon_sym___alignof__] = ACTIONS(3064), + [anon_sym___alignof] = ACTIONS(3064), + [anon_sym__alignof] = ACTIONS(3064), + [anon_sym_alignof] = ACTIONS(3064), + [anon_sym__Alignof] = ACTIONS(3064), + [anon_sym_offsetof] = ACTIONS(3064), + [anon_sym__Generic] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3064), + [anon_sym___asm__] = ACTIONS(3064), + [sym_number_literal] = ACTIONS(3066), + [anon_sym_L_SQUOTE] = ACTIONS(3066), + [anon_sym_u_SQUOTE] = ACTIONS(3066), + [anon_sym_U_SQUOTE] = ACTIONS(3066), + [anon_sym_u8_SQUOTE] = ACTIONS(3066), + [anon_sym_SQUOTE] = ACTIONS(3066), + [anon_sym_L_DQUOTE] = ACTIONS(3066), + [anon_sym_u_DQUOTE] = ACTIONS(3066), + [anon_sym_U_DQUOTE] = ACTIONS(3066), + [anon_sym_u8_DQUOTE] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3066), + [sym_true] = ACTIONS(3064), + [sym_false] = ACTIONS(3064), + [anon_sym_NULL] = ACTIONS(3064), + [anon_sym_nullptr] = ACTIONS(3064), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3064), + [anon_sym_decltype] = ACTIONS(3064), + [anon_sym_virtual] = ACTIONS(3064), + [anon_sym_alignas] = ACTIONS(3064), + [anon_sym_explicit] = ACTIONS(3064), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_operator] = ACTIONS(3064), + [anon_sym_try] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3064), + [anon_sym_throw] = ACTIONS(3064), + [anon_sym_namespace] = ACTIONS(3064), + [anon_sym_using] = ACTIONS(3064), + [anon_sym_static_assert] = ACTIONS(3064), + [anon_sym_concept] = ACTIONS(3064), + [anon_sym_co_return] = ACTIONS(3064), + [anon_sym_co_yield] = ACTIONS(3064), + [anon_sym_R_DQUOTE] = ACTIONS(3066), + [anon_sym_LR_DQUOTE] = ACTIONS(3066), + [anon_sym_uR_DQUOTE] = ACTIONS(3066), + [anon_sym_UR_DQUOTE] = ACTIONS(3066), + [anon_sym_u8R_DQUOTE] = ACTIONS(3066), + [anon_sym_co_await] = ACTIONS(3064), + [anon_sym_new] = ACTIONS(3064), + [anon_sym_requires] = ACTIONS(3064), + [sym_this] = ACTIONS(3064), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3066), + [sym_semgrep_named_ellipsis] = ACTIONS(3066), }, [538] = { - [sym_identifier] = ACTIONS(3253), - [aux_sym_preproc_include_token1] = ACTIONS(3253), - [aux_sym_preproc_def_token1] = ACTIONS(3253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3255), - [aux_sym_preproc_if_token1] = ACTIONS(3253), - [aux_sym_preproc_if_token2] = ACTIONS(3253), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3253), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3253), - [aux_sym_preproc_else_token1] = ACTIONS(3253), - [aux_sym_preproc_elif_token1] = ACTIONS(3253), - [sym_preproc_directive] = ACTIONS(3253), - [anon_sym_LPAREN2] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3253), - [anon_sym_PLUS] = ACTIONS(3253), - [anon_sym_STAR] = ACTIONS(3255), - [anon_sym_AMP_AMP] = ACTIONS(3255), - [anon_sym_AMP] = ACTIONS(3253), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym___extension__] = ACTIONS(3253), - [anon_sym_typedef] = ACTIONS(3253), - [anon_sym_extern] = ACTIONS(3253), - [anon_sym___attribute__] = ACTIONS(3253), - [anon_sym_COLON_COLON] = ACTIONS(3255), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3255), - [anon_sym___declspec] = ACTIONS(3253), - [anon_sym___based] = ACTIONS(3253), - [anon_sym___cdecl] = ACTIONS(3253), - [anon_sym___clrcall] = ACTIONS(3253), - [anon_sym___stdcall] = ACTIONS(3253), - [anon_sym___fastcall] = ACTIONS(3253), - [anon_sym___thiscall] = ACTIONS(3253), - [anon_sym___vectorcall] = ACTIONS(3253), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_signed] = ACTIONS(3253), - [anon_sym_unsigned] = ACTIONS(3253), - [anon_sym_long] = ACTIONS(3253), - [anon_sym_short] = ACTIONS(3253), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_static] = ACTIONS(3253), - [anon_sym_register] = ACTIONS(3253), - [anon_sym_inline] = ACTIONS(3253), - [anon_sym___inline] = ACTIONS(3253), - [anon_sym___inline__] = ACTIONS(3253), - [anon_sym___forceinline] = ACTIONS(3253), - [anon_sym_thread_local] = ACTIONS(3253), - [anon_sym___thread] = ACTIONS(3253), - [anon_sym_const] = ACTIONS(3253), - [anon_sym_constexpr] = ACTIONS(3253), - [anon_sym_volatile] = ACTIONS(3253), - [anon_sym_restrict] = ACTIONS(3253), - [anon_sym___restrict__] = ACTIONS(3253), - [anon_sym__Atomic] = ACTIONS(3253), - [anon_sym__Noreturn] = ACTIONS(3253), - [anon_sym_noreturn] = ACTIONS(3253), - [anon_sym_mutable] = ACTIONS(3253), - [anon_sym_constinit] = ACTIONS(3253), - [anon_sym_consteval] = ACTIONS(3253), - [sym_primitive_type] = ACTIONS(3253), - [anon_sym_enum] = ACTIONS(3253), - [anon_sym_class] = ACTIONS(3253), - [anon_sym_struct] = ACTIONS(3253), - [anon_sym_union] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(3253), - [anon_sym_switch] = ACTIONS(3253), - [anon_sym_case] = ACTIONS(3253), - [anon_sym_default] = ACTIONS(3253), - [anon_sym_while] = ACTIONS(3253), - [anon_sym_do] = ACTIONS(3253), - [anon_sym_for] = ACTIONS(3253), - [anon_sym_return] = ACTIONS(3253), - [anon_sym_break] = ACTIONS(3253), - [anon_sym_continue] = ACTIONS(3253), - [anon_sym_goto] = ACTIONS(3253), - [anon_sym___try] = ACTIONS(3253), - [anon_sym___leave] = ACTIONS(3253), - [anon_sym_not] = ACTIONS(3253), - [anon_sym_compl] = ACTIONS(3253), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_sizeof] = ACTIONS(3253), - [anon_sym___alignof__] = ACTIONS(3253), - [anon_sym___alignof] = ACTIONS(3253), - [anon_sym__alignof] = ACTIONS(3253), - [anon_sym_alignof] = ACTIONS(3253), - [anon_sym__Alignof] = ACTIONS(3253), - [anon_sym_offsetof] = ACTIONS(3253), - [anon_sym__Generic] = ACTIONS(3253), - [anon_sym_asm] = ACTIONS(3253), - [anon_sym___asm__] = ACTIONS(3253), - [sym_number_literal] = ACTIONS(3255), - [anon_sym_L_SQUOTE] = ACTIONS(3255), - [anon_sym_u_SQUOTE] = ACTIONS(3255), - [anon_sym_U_SQUOTE] = ACTIONS(3255), - [anon_sym_u8_SQUOTE] = ACTIONS(3255), - [anon_sym_SQUOTE] = ACTIONS(3255), - [anon_sym_L_DQUOTE] = ACTIONS(3255), - [anon_sym_u_DQUOTE] = ACTIONS(3255), - [anon_sym_U_DQUOTE] = ACTIONS(3255), - [anon_sym_u8_DQUOTE] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(3255), - [sym_true] = ACTIONS(3253), - [sym_false] = ACTIONS(3253), - [anon_sym_NULL] = ACTIONS(3253), - [anon_sym_nullptr] = ACTIONS(3253), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3253), - [anon_sym_decltype] = ACTIONS(3253), - [anon_sym_virtual] = ACTIONS(3253), - [anon_sym_alignas] = ACTIONS(3253), - [anon_sym_explicit] = ACTIONS(3253), - [anon_sym_typename] = ACTIONS(3253), - [anon_sym_template] = ACTIONS(3253), - [anon_sym_operator] = ACTIONS(3253), - [anon_sym_try] = ACTIONS(3253), - [anon_sym_delete] = ACTIONS(3253), - [anon_sym_throw] = ACTIONS(3253), - [anon_sym_namespace] = ACTIONS(3253), - [anon_sym_using] = ACTIONS(3253), - [anon_sym_static_assert] = ACTIONS(3253), - [anon_sym_concept] = ACTIONS(3253), - [anon_sym_co_return] = ACTIONS(3253), - [anon_sym_co_yield] = ACTIONS(3253), - [anon_sym_R_DQUOTE] = ACTIONS(3255), - [anon_sym_LR_DQUOTE] = ACTIONS(3255), - [anon_sym_uR_DQUOTE] = ACTIONS(3255), - [anon_sym_UR_DQUOTE] = ACTIONS(3255), - [anon_sym_u8R_DQUOTE] = ACTIONS(3255), - [anon_sym_co_await] = ACTIONS(3253), - [anon_sym_new] = ACTIONS(3253), - [anon_sym_requires] = ACTIONS(3253), - [sym_this] = ACTIONS(3253), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3255), - [sym_semgrep_named_ellipsis] = ACTIONS(3255), + [sym_identifier] = ACTIONS(3581), + [aux_sym_preproc_include_token1] = ACTIONS(3581), + [aux_sym_preproc_def_token1] = ACTIONS(3581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3583), + [aux_sym_preproc_if_token1] = ACTIONS(3581), + [aux_sym_preproc_if_token2] = ACTIONS(3581), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3581), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3581), + [aux_sym_preproc_else_token1] = ACTIONS(3581), + [aux_sym_preproc_elif_token1] = ACTIONS(3581), + [sym_preproc_directive] = ACTIONS(3581), + [anon_sym_LPAREN2] = ACTIONS(3583), + [anon_sym_BANG] = ACTIONS(3583), + [anon_sym_TILDE] = ACTIONS(3583), + [anon_sym_DASH] = ACTIONS(3581), + [anon_sym_PLUS] = ACTIONS(3581), + [anon_sym_STAR] = ACTIONS(3583), + [anon_sym_AMP_AMP] = ACTIONS(3583), + [anon_sym_AMP] = ACTIONS(3581), + [anon_sym_SEMI] = ACTIONS(3583), + [anon_sym___extension__] = ACTIONS(3581), + [anon_sym_typedef] = ACTIONS(3581), + [anon_sym_extern] = ACTIONS(3581), + [anon_sym___attribute__] = ACTIONS(3581), + [anon_sym_COLON_COLON] = ACTIONS(3583), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3583), + [anon_sym___declspec] = ACTIONS(3581), + [anon_sym___based] = ACTIONS(3581), + [anon_sym___cdecl] = ACTIONS(3581), + [anon_sym___clrcall] = ACTIONS(3581), + [anon_sym___stdcall] = ACTIONS(3581), + [anon_sym___fastcall] = ACTIONS(3581), + [anon_sym___thiscall] = ACTIONS(3581), + [anon_sym___vectorcall] = ACTIONS(3581), + [anon_sym_LBRACE] = ACTIONS(3583), + [anon_sym_signed] = ACTIONS(3581), + [anon_sym_unsigned] = ACTIONS(3581), + [anon_sym_long] = ACTIONS(3581), + [anon_sym_short] = ACTIONS(3581), + [anon_sym_LBRACK] = ACTIONS(3581), + [anon_sym_static] = ACTIONS(3581), + [anon_sym_register] = ACTIONS(3581), + [anon_sym_inline] = ACTIONS(3581), + [anon_sym___inline] = ACTIONS(3581), + [anon_sym___inline__] = ACTIONS(3581), + [anon_sym___forceinline] = ACTIONS(3581), + [anon_sym_thread_local] = ACTIONS(3581), + [anon_sym___thread] = ACTIONS(3581), + [anon_sym_const] = ACTIONS(3581), + [anon_sym_constexpr] = ACTIONS(3581), + [anon_sym_volatile] = ACTIONS(3581), + [anon_sym_restrict] = ACTIONS(3581), + [anon_sym___restrict__] = ACTIONS(3581), + [anon_sym__Atomic] = ACTIONS(3581), + [anon_sym__Noreturn] = ACTIONS(3581), + [anon_sym_noreturn] = ACTIONS(3581), + [anon_sym_mutable] = ACTIONS(3581), + [anon_sym_constinit] = ACTIONS(3581), + [anon_sym_consteval] = ACTIONS(3581), + [sym_primitive_type] = ACTIONS(3581), + [anon_sym_enum] = ACTIONS(3581), + [anon_sym_class] = ACTIONS(3581), + [anon_sym_struct] = ACTIONS(3581), + [anon_sym_union] = ACTIONS(3581), + [anon_sym_if] = ACTIONS(3581), + [anon_sym_switch] = ACTIONS(3581), + [anon_sym_case] = ACTIONS(3581), + [anon_sym_default] = ACTIONS(3581), + [anon_sym_while] = ACTIONS(3581), + [anon_sym_do] = ACTIONS(3581), + [anon_sym_for] = ACTIONS(3581), + [anon_sym_return] = ACTIONS(3581), + [anon_sym_break] = ACTIONS(3581), + [anon_sym_continue] = ACTIONS(3581), + [anon_sym_goto] = ACTIONS(3581), + [anon_sym___try] = ACTIONS(3581), + [anon_sym___leave] = ACTIONS(3581), + [anon_sym_not] = ACTIONS(3581), + [anon_sym_compl] = ACTIONS(3581), + [anon_sym_DASH_DASH] = ACTIONS(3583), + [anon_sym_PLUS_PLUS] = ACTIONS(3583), + [anon_sym_sizeof] = ACTIONS(3581), + [anon_sym___alignof__] = ACTIONS(3581), + [anon_sym___alignof] = ACTIONS(3581), + [anon_sym__alignof] = ACTIONS(3581), + [anon_sym_alignof] = ACTIONS(3581), + [anon_sym__Alignof] = ACTIONS(3581), + [anon_sym_offsetof] = ACTIONS(3581), + [anon_sym__Generic] = ACTIONS(3581), + [anon_sym_asm] = ACTIONS(3581), + [anon_sym___asm__] = ACTIONS(3581), + [sym_number_literal] = ACTIONS(3583), + [anon_sym_L_SQUOTE] = ACTIONS(3583), + [anon_sym_u_SQUOTE] = ACTIONS(3583), + [anon_sym_U_SQUOTE] = ACTIONS(3583), + [anon_sym_u8_SQUOTE] = ACTIONS(3583), + [anon_sym_SQUOTE] = ACTIONS(3583), + [anon_sym_L_DQUOTE] = ACTIONS(3583), + [anon_sym_u_DQUOTE] = ACTIONS(3583), + [anon_sym_U_DQUOTE] = ACTIONS(3583), + [anon_sym_u8_DQUOTE] = ACTIONS(3583), + [anon_sym_DQUOTE] = ACTIONS(3583), + [sym_true] = ACTIONS(3581), + [sym_false] = ACTIONS(3581), + [anon_sym_NULL] = ACTIONS(3581), + [anon_sym_nullptr] = ACTIONS(3581), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3581), + [anon_sym_decltype] = ACTIONS(3581), + [anon_sym_virtual] = ACTIONS(3581), + [anon_sym_alignas] = ACTIONS(3581), + [anon_sym_explicit] = ACTIONS(3581), + [anon_sym_typename] = ACTIONS(3581), + [anon_sym_template] = ACTIONS(3581), + [anon_sym_operator] = ACTIONS(3581), + [anon_sym_try] = ACTIONS(3581), + [anon_sym_delete] = ACTIONS(3581), + [anon_sym_throw] = ACTIONS(3581), + [anon_sym_namespace] = ACTIONS(3581), + [anon_sym_using] = ACTIONS(3581), + [anon_sym_static_assert] = ACTIONS(3581), + [anon_sym_concept] = ACTIONS(3581), + [anon_sym_co_return] = ACTIONS(3581), + [anon_sym_co_yield] = ACTIONS(3581), + [anon_sym_R_DQUOTE] = ACTIONS(3583), + [anon_sym_LR_DQUOTE] = ACTIONS(3583), + [anon_sym_uR_DQUOTE] = ACTIONS(3583), + [anon_sym_UR_DQUOTE] = ACTIONS(3583), + [anon_sym_u8R_DQUOTE] = ACTIONS(3583), + [anon_sym_co_await] = ACTIONS(3581), + [anon_sym_new] = ACTIONS(3581), + [anon_sym_requires] = ACTIONS(3581), + [sym_this] = ACTIONS(3581), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3583), + [sym_semgrep_named_ellipsis] = ACTIONS(3583), }, [539] = { - [sym_identifier] = ACTIONS(3362), - [aux_sym_preproc_include_token1] = ACTIONS(3362), - [aux_sym_preproc_def_token1] = ACTIONS(3362), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3364), - [aux_sym_preproc_if_token1] = ACTIONS(3362), - [aux_sym_preproc_if_token2] = ACTIONS(3362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3362), - [aux_sym_preproc_else_token1] = ACTIONS(3362), - [aux_sym_preproc_elif_token1] = ACTIONS(3362), - [sym_preproc_directive] = ACTIONS(3362), - [anon_sym_LPAREN2] = ACTIONS(3364), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(3364), - [anon_sym_DASH] = ACTIONS(3362), - [anon_sym_PLUS] = ACTIONS(3362), - [anon_sym_STAR] = ACTIONS(3364), - [anon_sym_AMP_AMP] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3362), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym___extension__] = ACTIONS(3362), - [anon_sym_typedef] = ACTIONS(3362), - [anon_sym_extern] = ACTIONS(3362), - [anon_sym___attribute__] = ACTIONS(3362), - [anon_sym_COLON_COLON] = ACTIONS(3364), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3364), - [anon_sym___declspec] = ACTIONS(3362), - [anon_sym___based] = ACTIONS(3362), - [anon_sym___cdecl] = ACTIONS(3362), - [anon_sym___clrcall] = ACTIONS(3362), - [anon_sym___stdcall] = ACTIONS(3362), - [anon_sym___fastcall] = ACTIONS(3362), - [anon_sym___thiscall] = ACTIONS(3362), - [anon_sym___vectorcall] = ACTIONS(3362), - [anon_sym_LBRACE] = ACTIONS(3364), - [anon_sym_signed] = ACTIONS(3362), - [anon_sym_unsigned] = ACTIONS(3362), - [anon_sym_long] = ACTIONS(3362), - [anon_sym_short] = ACTIONS(3362), - [anon_sym_LBRACK] = ACTIONS(3362), - [anon_sym_static] = ACTIONS(3362), - [anon_sym_register] = ACTIONS(3362), - [anon_sym_inline] = ACTIONS(3362), - [anon_sym___inline] = ACTIONS(3362), - [anon_sym___inline__] = ACTIONS(3362), - [anon_sym___forceinline] = ACTIONS(3362), - [anon_sym_thread_local] = ACTIONS(3362), - [anon_sym___thread] = ACTIONS(3362), - [anon_sym_const] = ACTIONS(3362), - [anon_sym_constexpr] = ACTIONS(3362), - [anon_sym_volatile] = ACTIONS(3362), - [anon_sym_restrict] = ACTIONS(3362), - [anon_sym___restrict__] = ACTIONS(3362), - [anon_sym__Atomic] = ACTIONS(3362), - [anon_sym__Noreturn] = ACTIONS(3362), - [anon_sym_noreturn] = ACTIONS(3362), - [anon_sym_mutable] = ACTIONS(3362), - [anon_sym_constinit] = ACTIONS(3362), - [anon_sym_consteval] = ACTIONS(3362), - [sym_primitive_type] = ACTIONS(3362), - [anon_sym_enum] = ACTIONS(3362), - [anon_sym_class] = ACTIONS(3362), - [anon_sym_struct] = ACTIONS(3362), - [anon_sym_union] = ACTIONS(3362), - [anon_sym_if] = ACTIONS(3362), - [anon_sym_switch] = ACTIONS(3362), - [anon_sym_case] = ACTIONS(3362), - [anon_sym_default] = ACTIONS(3362), - [anon_sym_while] = ACTIONS(3362), - [anon_sym_do] = ACTIONS(3362), - [anon_sym_for] = ACTIONS(3362), - [anon_sym_return] = ACTIONS(3362), - [anon_sym_break] = ACTIONS(3362), - [anon_sym_continue] = ACTIONS(3362), - [anon_sym_goto] = ACTIONS(3362), - [anon_sym___try] = ACTIONS(3362), - [anon_sym___leave] = ACTIONS(3362), - [anon_sym_not] = ACTIONS(3362), - [anon_sym_compl] = ACTIONS(3362), - [anon_sym_DASH_DASH] = ACTIONS(3364), - [anon_sym_PLUS_PLUS] = ACTIONS(3364), - [anon_sym_sizeof] = ACTIONS(3362), - [anon_sym___alignof__] = ACTIONS(3362), - [anon_sym___alignof] = ACTIONS(3362), - [anon_sym__alignof] = ACTIONS(3362), - [anon_sym_alignof] = ACTIONS(3362), - [anon_sym__Alignof] = ACTIONS(3362), - [anon_sym_offsetof] = ACTIONS(3362), - [anon_sym__Generic] = ACTIONS(3362), - [anon_sym_asm] = ACTIONS(3362), - [anon_sym___asm__] = ACTIONS(3362), - [sym_number_literal] = ACTIONS(3364), - [anon_sym_L_SQUOTE] = ACTIONS(3364), - [anon_sym_u_SQUOTE] = ACTIONS(3364), - [anon_sym_U_SQUOTE] = ACTIONS(3364), - [anon_sym_u8_SQUOTE] = ACTIONS(3364), - [anon_sym_SQUOTE] = ACTIONS(3364), - [anon_sym_L_DQUOTE] = ACTIONS(3364), - [anon_sym_u_DQUOTE] = ACTIONS(3364), - [anon_sym_U_DQUOTE] = ACTIONS(3364), - [anon_sym_u8_DQUOTE] = ACTIONS(3364), - [anon_sym_DQUOTE] = ACTIONS(3364), - [sym_true] = ACTIONS(3362), - [sym_false] = ACTIONS(3362), - [anon_sym_NULL] = ACTIONS(3362), - [anon_sym_nullptr] = ACTIONS(3362), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3362), - [anon_sym_decltype] = ACTIONS(3362), - [anon_sym_virtual] = ACTIONS(3362), - [anon_sym_alignas] = ACTIONS(3362), - [anon_sym_explicit] = ACTIONS(3362), - [anon_sym_typename] = ACTIONS(3362), - [anon_sym_template] = ACTIONS(3362), - [anon_sym_operator] = ACTIONS(3362), - [anon_sym_try] = ACTIONS(3362), - [anon_sym_delete] = ACTIONS(3362), - [anon_sym_throw] = ACTIONS(3362), - [anon_sym_namespace] = ACTIONS(3362), - [anon_sym_using] = ACTIONS(3362), - [anon_sym_static_assert] = ACTIONS(3362), - [anon_sym_concept] = ACTIONS(3362), - [anon_sym_co_return] = ACTIONS(3362), - [anon_sym_co_yield] = ACTIONS(3362), - [anon_sym_R_DQUOTE] = ACTIONS(3364), - [anon_sym_LR_DQUOTE] = ACTIONS(3364), - [anon_sym_uR_DQUOTE] = ACTIONS(3364), - [anon_sym_UR_DQUOTE] = ACTIONS(3364), - [anon_sym_u8R_DQUOTE] = ACTIONS(3364), - [anon_sym_co_await] = ACTIONS(3362), - [anon_sym_new] = ACTIONS(3362), - [anon_sym_requires] = ACTIONS(3362), - [sym_this] = ACTIONS(3362), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3364), - [sym_semgrep_named_ellipsis] = ACTIONS(3364), + [sym_identifier] = ACTIONS(3599), + [aux_sym_preproc_include_token1] = ACTIONS(3599), + [aux_sym_preproc_def_token1] = ACTIONS(3599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3601), + [aux_sym_preproc_if_token1] = ACTIONS(3599), + [aux_sym_preproc_if_token2] = ACTIONS(3599), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3599), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3599), + [aux_sym_preproc_else_token1] = ACTIONS(3599), + [aux_sym_preproc_elif_token1] = ACTIONS(3599), + [sym_preproc_directive] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(3601), + [anon_sym_BANG] = ACTIONS(3601), + [anon_sym_TILDE] = ACTIONS(3601), + [anon_sym_DASH] = ACTIONS(3599), + [anon_sym_PLUS] = ACTIONS(3599), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP_AMP] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3599), + [anon_sym_SEMI] = ACTIONS(3601), + [anon_sym___extension__] = ACTIONS(3599), + [anon_sym_typedef] = ACTIONS(3599), + [anon_sym_extern] = ACTIONS(3599), + [anon_sym___attribute__] = ACTIONS(3599), + [anon_sym_COLON_COLON] = ACTIONS(3601), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3601), + [anon_sym___declspec] = ACTIONS(3599), + [anon_sym___based] = ACTIONS(3599), + [anon_sym___cdecl] = ACTIONS(3599), + [anon_sym___clrcall] = ACTIONS(3599), + [anon_sym___stdcall] = ACTIONS(3599), + [anon_sym___fastcall] = ACTIONS(3599), + [anon_sym___thiscall] = ACTIONS(3599), + [anon_sym___vectorcall] = ACTIONS(3599), + [anon_sym_LBRACE] = ACTIONS(3601), + [anon_sym_signed] = ACTIONS(3599), + [anon_sym_unsigned] = ACTIONS(3599), + [anon_sym_long] = ACTIONS(3599), + [anon_sym_short] = ACTIONS(3599), + [anon_sym_LBRACK] = ACTIONS(3599), + [anon_sym_static] = ACTIONS(3599), + [anon_sym_register] = ACTIONS(3599), + [anon_sym_inline] = ACTIONS(3599), + [anon_sym___inline] = ACTIONS(3599), + [anon_sym___inline__] = ACTIONS(3599), + [anon_sym___forceinline] = ACTIONS(3599), + [anon_sym_thread_local] = ACTIONS(3599), + [anon_sym___thread] = ACTIONS(3599), + [anon_sym_const] = ACTIONS(3599), + [anon_sym_constexpr] = ACTIONS(3599), + [anon_sym_volatile] = ACTIONS(3599), + [anon_sym_restrict] = ACTIONS(3599), + [anon_sym___restrict__] = ACTIONS(3599), + [anon_sym__Atomic] = ACTIONS(3599), + [anon_sym__Noreturn] = ACTIONS(3599), + [anon_sym_noreturn] = ACTIONS(3599), + [anon_sym_mutable] = ACTIONS(3599), + [anon_sym_constinit] = ACTIONS(3599), + [anon_sym_consteval] = ACTIONS(3599), + [sym_primitive_type] = ACTIONS(3599), + [anon_sym_enum] = ACTIONS(3599), + [anon_sym_class] = ACTIONS(3599), + [anon_sym_struct] = ACTIONS(3599), + [anon_sym_union] = ACTIONS(3599), + [anon_sym_if] = ACTIONS(3599), + [anon_sym_switch] = ACTIONS(3599), + [anon_sym_case] = ACTIONS(3599), + [anon_sym_default] = ACTIONS(3599), + [anon_sym_while] = ACTIONS(3599), + [anon_sym_do] = ACTIONS(3599), + [anon_sym_for] = ACTIONS(3599), + [anon_sym_return] = ACTIONS(3599), + [anon_sym_break] = ACTIONS(3599), + [anon_sym_continue] = ACTIONS(3599), + [anon_sym_goto] = ACTIONS(3599), + [anon_sym___try] = ACTIONS(3599), + [anon_sym___leave] = ACTIONS(3599), + [anon_sym_not] = ACTIONS(3599), + [anon_sym_compl] = ACTIONS(3599), + [anon_sym_DASH_DASH] = ACTIONS(3601), + [anon_sym_PLUS_PLUS] = ACTIONS(3601), + [anon_sym_sizeof] = ACTIONS(3599), + [anon_sym___alignof__] = ACTIONS(3599), + [anon_sym___alignof] = ACTIONS(3599), + [anon_sym__alignof] = ACTIONS(3599), + [anon_sym_alignof] = ACTIONS(3599), + [anon_sym__Alignof] = ACTIONS(3599), + [anon_sym_offsetof] = ACTIONS(3599), + [anon_sym__Generic] = ACTIONS(3599), + [anon_sym_asm] = ACTIONS(3599), + [anon_sym___asm__] = ACTIONS(3599), + [sym_number_literal] = ACTIONS(3601), + [anon_sym_L_SQUOTE] = ACTIONS(3601), + [anon_sym_u_SQUOTE] = ACTIONS(3601), + [anon_sym_U_SQUOTE] = ACTIONS(3601), + [anon_sym_u8_SQUOTE] = ACTIONS(3601), + [anon_sym_SQUOTE] = ACTIONS(3601), + [anon_sym_L_DQUOTE] = ACTIONS(3601), + [anon_sym_u_DQUOTE] = ACTIONS(3601), + [anon_sym_U_DQUOTE] = ACTIONS(3601), + [anon_sym_u8_DQUOTE] = ACTIONS(3601), + [anon_sym_DQUOTE] = ACTIONS(3601), + [sym_true] = ACTIONS(3599), + [sym_false] = ACTIONS(3599), + [anon_sym_NULL] = ACTIONS(3599), + [anon_sym_nullptr] = ACTIONS(3599), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3599), + [anon_sym_decltype] = ACTIONS(3599), + [anon_sym_virtual] = ACTIONS(3599), + [anon_sym_alignas] = ACTIONS(3599), + [anon_sym_explicit] = ACTIONS(3599), + [anon_sym_typename] = ACTIONS(3599), + [anon_sym_template] = ACTIONS(3599), + [anon_sym_operator] = ACTIONS(3599), + [anon_sym_try] = ACTIONS(3599), + [anon_sym_delete] = ACTIONS(3599), + [anon_sym_throw] = ACTIONS(3599), + [anon_sym_namespace] = ACTIONS(3599), + [anon_sym_using] = ACTIONS(3599), + [anon_sym_static_assert] = ACTIONS(3599), + [anon_sym_concept] = ACTIONS(3599), + [anon_sym_co_return] = ACTIONS(3599), + [anon_sym_co_yield] = ACTIONS(3599), + [anon_sym_R_DQUOTE] = ACTIONS(3601), + [anon_sym_LR_DQUOTE] = ACTIONS(3601), + [anon_sym_uR_DQUOTE] = ACTIONS(3601), + [anon_sym_UR_DQUOTE] = ACTIONS(3601), + [anon_sym_u8R_DQUOTE] = ACTIONS(3601), + [anon_sym_co_await] = ACTIONS(3599), + [anon_sym_new] = ACTIONS(3599), + [anon_sym_requires] = ACTIONS(3599), + [sym_this] = ACTIONS(3599), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3601), + [sym_semgrep_named_ellipsis] = ACTIONS(3601), }, [540] = { - [sym_identifier] = ACTIONS(3096), - [aux_sym_preproc_include_token1] = ACTIONS(3096), - [aux_sym_preproc_def_token1] = ACTIONS(3096), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3094), - [aux_sym_preproc_if_token1] = ACTIONS(3096), - [aux_sym_preproc_if_token2] = ACTIONS(3096), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3096), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3096), - [sym_preproc_directive] = ACTIONS(3096), - [anon_sym_LPAREN2] = ACTIONS(3094), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_TILDE] = ACTIONS(3094), - [anon_sym_DASH] = ACTIONS(3096), - [anon_sym_PLUS] = ACTIONS(3096), - [anon_sym_STAR] = ACTIONS(3094), - [anon_sym_AMP_AMP] = ACTIONS(3094), - [anon_sym_AMP] = ACTIONS(3096), - [anon_sym_SEMI] = ACTIONS(3094), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_typedef] = ACTIONS(3096), - [anon_sym_extern] = ACTIONS(3096), - [anon_sym___attribute__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(3094), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3094), - [anon_sym___declspec] = ACTIONS(3096), - [anon_sym___based] = ACTIONS(3096), - [anon_sym___cdecl] = ACTIONS(3096), - [anon_sym___clrcall] = ACTIONS(3096), - [anon_sym___stdcall] = ACTIONS(3096), - [anon_sym___fastcall] = ACTIONS(3096), - [anon_sym___thiscall] = ACTIONS(3096), - [anon_sym___vectorcall] = ACTIONS(3096), - [anon_sym_LBRACE] = ACTIONS(3094), - [anon_sym_signed] = ACTIONS(3096), - [anon_sym_unsigned] = ACTIONS(3096), - [anon_sym_long] = ACTIONS(3096), - [anon_sym_short] = ACTIONS(3096), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_static] = ACTIONS(3096), - [anon_sym_register] = ACTIONS(3096), - [anon_sym_inline] = ACTIONS(3096), - [anon_sym___inline] = ACTIONS(3096), - [anon_sym___inline__] = ACTIONS(3096), - [anon_sym___forceinline] = ACTIONS(3096), - [anon_sym_thread_local] = ACTIONS(3096), - [anon_sym___thread] = ACTIONS(3096), - [anon_sym_const] = ACTIONS(3096), - [anon_sym_constexpr] = ACTIONS(3096), - [anon_sym_volatile] = ACTIONS(3096), - [anon_sym_restrict] = ACTIONS(3096), - [anon_sym___restrict__] = ACTIONS(3096), - [anon_sym__Atomic] = ACTIONS(3096), - [anon_sym__Noreturn] = ACTIONS(3096), - [anon_sym_noreturn] = ACTIONS(3096), - [anon_sym_mutable] = ACTIONS(3096), - [anon_sym_constinit] = ACTIONS(3096), - [anon_sym_consteval] = ACTIONS(3096), - [sym_primitive_type] = ACTIONS(3096), - [anon_sym_enum] = ACTIONS(3096), - [anon_sym_class] = ACTIONS(3096), - [anon_sym_struct] = ACTIONS(3096), - [anon_sym_union] = ACTIONS(3096), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_else] = ACTIONS(3096), - [anon_sym_switch] = ACTIONS(3096), - [anon_sym_case] = ACTIONS(3096), - [anon_sym_default] = ACTIONS(3096), - [anon_sym_while] = ACTIONS(3096), - [anon_sym_do] = ACTIONS(3096), - [anon_sym_for] = ACTIONS(3096), - [anon_sym_return] = ACTIONS(3096), - [anon_sym_break] = ACTIONS(3096), - [anon_sym_continue] = ACTIONS(3096), - [anon_sym_goto] = ACTIONS(3096), - [anon_sym___try] = ACTIONS(3096), - [anon_sym___leave] = ACTIONS(3096), - [anon_sym_not] = ACTIONS(3096), - [anon_sym_compl] = ACTIONS(3096), - [anon_sym_DASH_DASH] = ACTIONS(3094), - [anon_sym_PLUS_PLUS] = ACTIONS(3094), - [anon_sym_sizeof] = ACTIONS(3096), - [anon_sym___alignof__] = ACTIONS(3096), - [anon_sym___alignof] = ACTIONS(3096), - [anon_sym__alignof] = ACTIONS(3096), - [anon_sym_alignof] = ACTIONS(3096), - [anon_sym__Alignof] = ACTIONS(3096), - [anon_sym_offsetof] = ACTIONS(3096), - [anon_sym__Generic] = ACTIONS(3096), - [anon_sym_asm] = ACTIONS(3096), - [anon_sym___asm__] = ACTIONS(3096), - [sym_number_literal] = ACTIONS(3094), - [anon_sym_L_SQUOTE] = ACTIONS(3094), - [anon_sym_u_SQUOTE] = ACTIONS(3094), - [anon_sym_U_SQUOTE] = ACTIONS(3094), - [anon_sym_u8_SQUOTE] = ACTIONS(3094), - [anon_sym_SQUOTE] = ACTIONS(3094), - [anon_sym_L_DQUOTE] = ACTIONS(3094), - [anon_sym_u_DQUOTE] = ACTIONS(3094), - [anon_sym_U_DQUOTE] = ACTIONS(3094), - [anon_sym_u8_DQUOTE] = ACTIONS(3094), - [anon_sym_DQUOTE] = ACTIONS(3094), - [sym_true] = ACTIONS(3096), - [sym_false] = ACTIONS(3096), - [anon_sym_NULL] = ACTIONS(3096), - [anon_sym_nullptr] = ACTIONS(3096), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3096), - [anon_sym_decltype] = ACTIONS(3096), - [anon_sym_virtual] = ACTIONS(3096), - [anon_sym_alignas] = ACTIONS(3096), - [anon_sym_explicit] = ACTIONS(3096), - [anon_sym_typename] = ACTIONS(3096), - [anon_sym_template] = ACTIONS(3096), - [anon_sym_operator] = ACTIONS(3096), - [anon_sym_try] = ACTIONS(3096), - [anon_sym_delete] = ACTIONS(3096), - [anon_sym_throw] = ACTIONS(3096), - [anon_sym_namespace] = ACTIONS(3096), - [anon_sym_using] = ACTIONS(3096), - [anon_sym_static_assert] = ACTIONS(3096), - [anon_sym_concept] = ACTIONS(3096), - [anon_sym_co_return] = ACTIONS(3096), - [anon_sym_co_yield] = ACTIONS(3096), - [anon_sym_catch] = ACTIONS(3096), - [anon_sym_R_DQUOTE] = ACTIONS(3094), - [anon_sym_LR_DQUOTE] = ACTIONS(3094), - [anon_sym_uR_DQUOTE] = ACTIONS(3094), - [anon_sym_UR_DQUOTE] = ACTIONS(3094), - [anon_sym_u8R_DQUOTE] = ACTIONS(3094), - [anon_sym_co_await] = ACTIONS(3096), - [anon_sym_new] = ACTIONS(3096), - [anon_sym_requires] = ACTIONS(3096), - [sym_this] = ACTIONS(3096), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3094), - [sym_semgrep_named_ellipsis] = ACTIONS(3094), + [sym_identifier] = ACTIONS(3635), + [aux_sym_preproc_include_token1] = ACTIONS(3635), + [aux_sym_preproc_def_token1] = ACTIONS(3635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3637), + [aux_sym_preproc_if_token1] = ACTIONS(3635), + [aux_sym_preproc_if_token2] = ACTIONS(3635), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3635), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3635), + [aux_sym_preproc_else_token1] = ACTIONS(3635), + [aux_sym_preproc_elif_token1] = ACTIONS(3635), + [sym_preproc_directive] = ACTIONS(3635), + [anon_sym_LPAREN2] = ACTIONS(3637), + [anon_sym_BANG] = ACTIONS(3637), + [anon_sym_TILDE] = ACTIONS(3637), + [anon_sym_DASH] = ACTIONS(3635), + [anon_sym_PLUS] = ACTIONS(3635), + [anon_sym_STAR] = ACTIONS(3637), + [anon_sym_AMP_AMP] = ACTIONS(3637), + [anon_sym_AMP] = ACTIONS(3635), + [anon_sym_SEMI] = ACTIONS(3637), + [anon_sym___extension__] = ACTIONS(3635), + [anon_sym_typedef] = ACTIONS(3635), + [anon_sym_extern] = ACTIONS(3635), + [anon_sym___attribute__] = ACTIONS(3635), + [anon_sym_COLON_COLON] = ACTIONS(3637), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3637), + [anon_sym___declspec] = ACTIONS(3635), + [anon_sym___based] = ACTIONS(3635), + [anon_sym___cdecl] = ACTIONS(3635), + [anon_sym___clrcall] = ACTIONS(3635), + [anon_sym___stdcall] = ACTIONS(3635), + [anon_sym___fastcall] = ACTIONS(3635), + [anon_sym___thiscall] = ACTIONS(3635), + [anon_sym___vectorcall] = ACTIONS(3635), + [anon_sym_LBRACE] = ACTIONS(3637), + [anon_sym_signed] = ACTIONS(3635), + [anon_sym_unsigned] = ACTIONS(3635), + [anon_sym_long] = ACTIONS(3635), + [anon_sym_short] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(3635), + [anon_sym_static] = ACTIONS(3635), + [anon_sym_register] = ACTIONS(3635), + [anon_sym_inline] = ACTIONS(3635), + [anon_sym___inline] = ACTIONS(3635), + [anon_sym___inline__] = ACTIONS(3635), + [anon_sym___forceinline] = ACTIONS(3635), + [anon_sym_thread_local] = ACTIONS(3635), + [anon_sym___thread] = ACTIONS(3635), + [anon_sym_const] = ACTIONS(3635), + [anon_sym_constexpr] = ACTIONS(3635), + [anon_sym_volatile] = ACTIONS(3635), + [anon_sym_restrict] = ACTIONS(3635), + [anon_sym___restrict__] = ACTIONS(3635), + [anon_sym__Atomic] = ACTIONS(3635), + [anon_sym__Noreturn] = ACTIONS(3635), + [anon_sym_noreturn] = ACTIONS(3635), + [anon_sym_mutable] = ACTIONS(3635), + [anon_sym_constinit] = ACTIONS(3635), + [anon_sym_consteval] = ACTIONS(3635), + [sym_primitive_type] = ACTIONS(3635), + [anon_sym_enum] = ACTIONS(3635), + [anon_sym_class] = ACTIONS(3635), + [anon_sym_struct] = ACTIONS(3635), + [anon_sym_union] = ACTIONS(3635), + [anon_sym_if] = ACTIONS(3635), + [anon_sym_switch] = ACTIONS(3635), + [anon_sym_case] = ACTIONS(3635), + [anon_sym_default] = ACTIONS(3635), + [anon_sym_while] = ACTIONS(3635), + [anon_sym_do] = ACTIONS(3635), + [anon_sym_for] = ACTIONS(3635), + [anon_sym_return] = ACTIONS(3635), + [anon_sym_break] = ACTIONS(3635), + [anon_sym_continue] = ACTIONS(3635), + [anon_sym_goto] = ACTIONS(3635), + [anon_sym___try] = ACTIONS(3635), + [anon_sym___leave] = ACTIONS(3635), + [anon_sym_not] = ACTIONS(3635), + [anon_sym_compl] = ACTIONS(3635), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3635), + [anon_sym___alignof__] = ACTIONS(3635), + [anon_sym___alignof] = ACTIONS(3635), + [anon_sym__alignof] = ACTIONS(3635), + [anon_sym_alignof] = ACTIONS(3635), + [anon_sym__Alignof] = ACTIONS(3635), + [anon_sym_offsetof] = ACTIONS(3635), + [anon_sym__Generic] = ACTIONS(3635), + [anon_sym_asm] = ACTIONS(3635), + [anon_sym___asm__] = ACTIONS(3635), + [sym_number_literal] = ACTIONS(3637), + [anon_sym_L_SQUOTE] = ACTIONS(3637), + [anon_sym_u_SQUOTE] = ACTIONS(3637), + [anon_sym_U_SQUOTE] = ACTIONS(3637), + [anon_sym_u8_SQUOTE] = ACTIONS(3637), + [anon_sym_SQUOTE] = ACTIONS(3637), + [anon_sym_L_DQUOTE] = ACTIONS(3637), + [anon_sym_u_DQUOTE] = ACTIONS(3637), + [anon_sym_U_DQUOTE] = ACTIONS(3637), + [anon_sym_u8_DQUOTE] = ACTIONS(3637), + [anon_sym_DQUOTE] = ACTIONS(3637), + [sym_true] = ACTIONS(3635), + [sym_false] = ACTIONS(3635), + [anon_sym_NULL] = ACTIONS(3635), + [anon_sym_nullptr] = ACTIONS(3635), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3635), + [anon_sym_decltype] = ACTIONS(3635), + [anon_sym_virtual] = ACTIONS(3635), + [anon_sym_alignas] = ACTIONS(3635), + [anon_sym_explicit] = ACTIONS(3635), + [anon_sym_typename] = ACTIONS(3635), + [anon_sym_template] = ACTIONS(3635), + [anon_sym_operator] = ACTIONS(3635), + [anon_sym_try] = ACTIONS(3635), + [anon_sym_delete] = ACTIONS(3635), + [anon_sym_throw] = ACTIONS(3635), + [anon_sym_namespace] = ACTIONS(3635), + [anon_sym_using] = ACTIONS(3635), + [anon_sym_static_assert] = ACTIONS(3635), + [anon_sym_concept] = ACTIONS(3635), + [anon_sym_co_return] = ACTIONS(3635), + [anon_sym_co_yield] = ACTIONS(3635), + [anon_sym_R_DQUOTE] = ACTIONS(3637), + [anon_sym_LR_DQUOTE] = ACTIONS(3637), + [anon_sym_uR_DQUOTE] = ACTIONS(3637), + [anon_sym_UR_DQUOTE] = ACTIONS(3637), + [anon_sym_u8R_DQUOTE] = ACTIONS(3637), + [anon_sym_co_await] = ACTIONS(3635), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_requires] = ACTIONS(3635), + [sym_this] = ACTIONS(3635), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3637), + [sym_semgrep_named_ellipsis] = ACTIONS(3637), }, [541] = { - [sym_identifier] = ACTIONS(3453), - [aux_sym_preproc_include_token1] = ACTIONS(3453), - [aux_sym_preproc_def_token1] = ACTIONS(3453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3455), - [aux_sym_preproc_if_token1] = ACTIONS(3453), - [aux_sym_preproc_if_token2] = ACTIONS(3453), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3453), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3453), - [aux_sym_preproc_else_token1] = ACTIONS(3453), - [aux_sym_preproc_elif_token1] = ACTIONS(3453), - [sym_preproc_directive] = ACTIONS(3453), - [anon_sym_LPAREN2] = ACTIONS(3455), - [anon_sym_BANG] = ACTIONS(3455), - [anon_sym_TILDE] = ACTIONS(3455), - [anon_sym_DASH] = ACTIONS(3453), - [anon_sym_PLUS] = ACTIONS(3453), - [anon_sym_STAR] = ACTIONS(3455), - [anon_sym_AMP_AMP] = ACTIONS(3455), - [anon_sym_AMP] = ACTIONS(3453), - [anon_sym_SEMI] = ACTIONS(3455), - [anon_sym___extension__] = ACTIONS(3453), - [anon_sym_typedef] = ACTIONS(3453), - [anon_sym_extern] = ACTIONS(3453), - [anon_sym___attribute__] = ACTIONS(3453), - [anon_sym_COLON_COLON] = ACTIONS(3455), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3455), - [anon_sym___declspec] = ACTIONS(3453), - [anon_sym___based] = ACTIONS(3453), - [anon_sym___cdecl] = ACTIONS(3453), - [anon_sym___clrcall] = ACTIONS(3453), - [anon_sym___stdcall] = ACTIONS(3453), - [anon_sym___fastcall] = ACTIONS(3453), - [anon_sym___thiscall] = ACTIONS(3453), - [anon_sym___vectorcall] = ACTIONS(3453), - [anon_sym_LBRACE] = ACTIONS(3455), - [anon_sym_signed] = ACTIONS(3453), - [anon_sym_unsigned] = ACTIONS(3453), - [anon_sym_long] = ACTIONS(3453), - [anon_sym_short] = ACTIONS(3453), - [anon_sym_LBRACK] = ACTIONS(3453), - [anon_sym_static] = ACTIONS(3453), - [anon_sym_register] = ACTIONS(3453), - [anon_sym_inline] = ACTIONS(3453), - [anon_sym___inline] = ACTIONS(3453), - [anon_sym___inline__] = ACTIONS(3453), - [anon_sym___forceinline] = ACTIONS(3453), - [anon_sym_thread_local] = ACTIONS(3453), - [anon_sym___thread] = ACTIONS(3453), - [anon_sym_const] = ACTIONS(3453), - [anon_sym_constexpr] = ACTIONS(3453), - [anon_sym_volatile] = ACTIONS(3453), - [anon_sym_restrict] = ACTIONS(3453), - [anon_sym___restrict__] = ACTIONS(3453), - [anon_sym__Atomic] = ACTIONS(3453), - [anon_sym__Noreturn] = ACTIONS(3453), - [anon_sym_noreturn] = ACTIONS(3453), - [anon_sym_mutable] = ACTIONS(3453), - [anon_sym_constinit] = ACTIONS(3453), - [anon_sym_consteval] = ACTIONS(3453), - [sym_primitive_type] = ACTIONS(3453), - [anon_sym_enum] = ACTIONS(3453), - [anon_sym_class] = ACTIONS(3453), - [anon_sym_struct] = ACTIONS(3453), - [anon_sym_union] = ACTIONS(3453), - [anon_sym_if] = ACTIONS(3453), - [anon_sym_switch] = ACTIONS(3453), - [anon_sym_case] = ACTIONS(3453), - [anon_sym_default] = ACTIONS(3453), - [anon_sym_while] = ACTIONS(3453), - [anon_sym_do] = ACTIONS(3453), - [anon_sym_for] = ACTIONS(3453), - [anon_sym_return] = ACTIONS(3453), - [anon_sym_break] = ACTIONS(3453), - [anon_sym_continue] = ACTIONS(3453), - [anon_sym_goto] = ACTIONS(3453), - [anon_sym___try] = ACTIONS(3453), - [anon_sym___leave] = ACTIONS(3453), - [anon_sym_not] = ACTIONS(3453), - [anon_sym_compl] = ACTIONS(3453), - [anon_sym_DASH_DASH] = ACTIONS(3455), - [anon_sym_PLUS_PLUS] = ACTIONS(3455), - [anon_sym_sizeof] = ACTIONS(3453), - [anon_sym___alignof__] = ACTIONS(3453), - [anon_sym___alignof] = ACTIONS(3453), - [anon_sym__alignof] = ACTIONS(3453), - [anon_sym_alignof] = ACTIONS(3453), - [anon_sym__Alignof] = ACTIONS(3453), - [anon_sym_offsetof] = ACTIONS(3453), - [anon_sym__Generic] = ACTIONS(3453), - [anon_sym_asm] = ACTIONS(3453), - [anon_sym___asm__] = ACTIONS(3453), - [sym_number_literal] = ACTIONS(3455), - [anon_sym_L_SQUOTE] = ACTIONS(3455), - [anon_sym_u_SQUOTE] = ACTIONS(3455), - [anon_sym_U_SQUOTE] = ACTIONS(3455), - [anon_sym_u8_SQUOTE] = ACTIONS(3455), - [anon_sym_SQUOTE] = ACTIONS(3455), - [anon_sym_L_DQUOTE] = ACTIONS(3455), - [anon_sym_u_DQUOTE] = ACTIONS(3455), - [anon_sym_U_DQUOTE] = ACTIONS(3455), - [anon_sym_u8_DQUOTE] = ACTIONS(3455), - [anon_sym_DQUOTE] = ACTIONS(3455), - [sym_true] = ACTIONS(3453), - [sym_false] = ACTIONS(3453), - [anon_sym_NULL] = ACTIONS(3453), - [anon_sym_nullptr] = ACTIONS(3453), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3453), - [anon_sym_decltype] = ACTIONS(3453), - [anon_sym_virtual] = ACTIONS(3453), - [anon_sym_alignas] = ACTIONS(3453), - [anon_sym_explicit] = ACTIONS(3453), - [anon_sym_typename] = ACTIONS(3453), - [anon_sym_template] = ACTIONS(3453), - [anon_sym_operator] = ACTIONS(3453), - [anon_sym_try] = ACTIONS(3453), - [anon_sym_delete] = ACTIONS(3453), - [anon_sym_throw] = ACTIONS(3453), - [anon_sym_namespace] = ACTIONS(3453), - [anon_sym_using] = ACTIONS(3453), - [anon_sym_static_assert] = ACTIONS(3453), - [anon_sym_concept] = ACTIONS(3453), - [anon_sym_co_return] = ACTIONS(3453), - [anon_sym_co_yield] = ACTIONS(3453), - [anon_sym_R_DQUOTE] = ACTIONS(3455), - [anon_sym_LR_DQUOTE] = ACTIONS(3455), - [anon_sym_uR_DQUOTE] = ACTIONS(3455), - [anon_sym_UR_DQUOTE] = ACTIONS(3455), - [anon_sym_u8R_DQUOTE] = ACTIONS(3455), - [anon_sym_co_await] = ACTIONS(3453), - [anon_sym_new] = ACTIONS(3453), - [anon_sym_requires] = ACTIONS(3453), - [sym_this] = ACTIONS(3453), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3455), - [sym_semgrep_named_ellipsis] = ACTIONS(3455), + [sym_identifier] = ACTIONS(3653), + [aux_sym_preproc_include_token1] = ACTIONS(3653), + [aux_sym_preproc_def_token1] = ACTIONS(3653), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3655), + [aux_sym_preproc_if_token1] = ACTIONS(3653), + [aux_sym_preproc_if_token2] = ACTIONS(3653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3653), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3653), + [aux_sym_preproc_else_token1] = ACTIONS(3653), + [aux_sym_preproc_elif_token1] = ACTIONS(3653), + [sym_preproc_directive] = ACTIONS(3653), + [anon_sym_LPAREN2] = ACTIONS(3655), + [anon_sym_BANG] = ACTIONS(3655), + [anon_sym_TILDE] = ACTIONS(3655), + [anon_sym_DASH] = ACTIONS(3653), + [anon_sym_PLUS] = ACTIONS(3653), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP_AMP] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3653), + [anon_sym_SEMI] = ACTIONS(3655), + [anon_sym___extension__] = ACTIONS(3653), + [anon_sym_typedef] = ACTIONS(3653), + [anon_sym_extern] = ACTIONS(3653), + [anon_sym___attribute__] = ACTIONS(3653), + [anon_sym_COLON_COLON] = ACTIONS(3655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3655), + [anon_sym___declspec] = ACTIONS(3653), + [anon_sym___based] = ACTIONS(3653), + [anon_sym___cdecl] = ACTIONS(3653), + [anon_sym___clrcall] = ACTIONS(3653), + [anon_sym___stdcall] = ACTIONS(3653), + [anon_sym___fastcall] = ACTIONS(3653), + [anon_sym___thiscall] = ACTIONS(3653), + [anon_sym___vectorcall] = ACTIONS(3653), + [anon_sym_LBRACE] = ACTIONS(3655), + [anon_sym_signed] = ACTIONS(3653), + [anon_sym_unsigned] = ACTIONS(3653), + [anon_sym_long] = ACTIONS(3653), + [anon_sym_short] = ACTIONS(3653), + [anon_sym_LBRACK] = ACTIONS(3653), + [anon_sym_static] = ACTIONS(3653), + [anon_sym_register] = ACTIONS(3653), + [anon_sym_inline] = ACTIONS(3653), + [anon_sym___inline] = ACTIONS(3653), + [anon_sym___inline__] = ACTIONS(3653), + [anon_sym___forceinline] = ACTIONS(3653), + [anon_sym_thread_local] = ACTIONS(3653), + [anon_sym___thread] = ACTIONS(3653), + [anon_sym_const] = ACTIONS(3653), + [anon_sym_constexpr] = ACTIONS(3653), + [anon_sym_volatile] = ACTIONS(3653), + [anon_sym_restrict] = ACTIONS(3653), + [anon_sym___restrict__] = ACTIONS(3653), + [anon_sym__Atomic] = ACTIONS(3653), + [anon_sym__Noreturn] = ACTIONS(3653), + [anon_sym_noreturn] = ACTIONS(3653), + [anon_sym_mutable] = ACTIONS(3653), + [anon_sym_constinit] = ACTIONS(3653), + [anon_sym_consteval] = ACTIONS(3653), + [sym_primitive_type] = ACTIONS(3653), + [anon_sym_enum] = ACTIONS(3653), + [anon_sym_class] = ACTIONS(3653), + [anon_sym_struct] = ACTIONS(3653), + [anon_sym_union] = ACTIONS(3653), + [anon_sym_if] = ACTIONS(3653), + [anon_sym_switch] = ACTIONS(3653), + [anon_sym_case] = ACTIONS(3653), + [anon_sym_default] = ACTIONS(3653), + [anon_sym_while] = ACTIONS(3653), + [anon_sym_do] = ACTIONS(3653), + [anon_sym_for] = ACTIONS(3653), + [anon_sym_return] = ACTIONS(3653), + [anon_sym_break] = ACTIONS(3653), + [anon_sym_continue] = ACTIONS(3653), + [anon_sym_goto] = ACTIONS(3653), + [anon_sym___try] = ACTIONS(3653), + [anon_sym___leave] = ACTIONS(3653), + [anon_sym_not] = ACTIONS(3653), + [anon_sym_compl] = ACTIONS(3653), + [anon_sym_DASH_DASH] = ACTIONS(3655), + [anon_sym_PLUS_PLUS] = ACTIONS(3655), + [anon_sym_sizeof] = ACTIONS(3653), + [anon_sym___alignof__] = ACTIONS(3653), + [anon_sym___alignof] = ACTIONS(3653), + [anon_sym__alignof] = ACTIONS(3653), + [anon_sym_alignof] = ACTIONS(3653), + [anon_sym__Alignof] = ACTIONS(3653), + [anon_sym_offsetof] = ACTIONS(3653), + [anon_sym__Generic] = ACTIONS(3653), + [anon_sym_asm] = ACTIONS(3653), + [anon_sym___asm__] = ACTIONS(3653), + [sym_number_literal] = ACTIONS(3655), + [anon_sym_L_SQUOTE] = ACTIONS(3655), + [anon_sym_u_SQUOTE] = ACTIONS(3655), + [anon_sym_U_SQUOTE] = ACTIONS(3655), + [anon_sym_u8_SQUOTE] = ACTIONS(3655), + [anon_sym_SQUOTE] = ACTIONS(3655), + [anon_sym_L_DQUOTE] = ACTIONS(3655), + [anon_sym_u_DQUOTE] = ACTIONS(3655), + [anon_sym_U_DQUOTE] = ACTIONS(3655), + [anon_sym_u8_DQUOTE] = ACTIONS(3655), + [anon_sym_DQUOTE] = ACTIONS(3655), + [sym_true] = ACTIONS(3653), + [sym_false] = ACTIONS(3653), + [anon_sym_NULL] = ACTIONS(3653), + [anon_sym_nullptr] = ACTIONS(3653), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3653), + [anon_sym_decltype] = ACTIONS(3653), + [anon_sym_virtual] = ACTIONS(3653), + [anon_sym_alignas] = ACTIONS(3653), + [anon_sym_explicit] = ACTIONS(3653), + [anon_sym_typename] = ACTIONS(3653), + [anon_sym_template] = ACTIONS(3653), + [anon_sym_operator] = ACTIONS(3653), + [anon_sym_try] = ACTIONS(3653), + [anon_sym_delete] = ACTIONS(3653), + [anon_sym_throw] = ACTIONS(3653), + [anon_sym_namespace] = ACTIONS(3653), + [anon_sym_using] = ACTIONS(3653), + [anon_sym_static_assert] = ACTIONS(3653), + [anon_sym_concept] = ACTIONS(3653), + [anon_sym_co_return] = ACTIONS(3653), + [anon_sym_co_yield] = ACTIONS(3653), + [anon_sym_R_DQUOTE] = ACTIONS(3655), + [anon_sym_LR_DQUOTE] = ACTIONS(3655), + [anon_sym_uR_DQUOTE] = ACTIONS(3655), + [anon_sym_UR_DQUOTE] = ACTIONS(3655), + [anon_sym_u8R_DQUOTE] = ACTIONS(3655), + [anon_sym_co_await] = ACTIONS(3653), + [anon_sym_new] = ACTIONS(3653), + [anon_sym_requires] = ACTIONS(3653), + [sym_this] = ACTIONS(3653), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3655), + [sym_semgrep_named_ellipsis] = ACTIONS(3655), }, [542] = { - [sym_identifier] = ACTIONS(3441), - [aux_sym_preproc_include_token1] = ACTIONS(3441), - [aux_sym_preproc_def_token1] = ACTIONS(3441), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3443), - [aux_sym_preproc_if_token1] = ACTIONS(3441), - [aux_sym_preproc_if_token2] = ACTIONS(3441), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3441), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3441), - [aux_sym_preproc_else_token1] = ACTIONS(3441), - [aux_sym_preproc_elif_token1] = ACTIONS(3441), - [sym_preproc_directive] = ACTIONS(3441), - [anon_sym_LPAREN2] = ACTIONS(3443), - [anon_sym_BANG] = ACTIONS(3443), - [anon_sym_TILDE] = ACTIONS(3443), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_PLUS] = ACTIONS(3441), - [anon_sym_STAR] = ACTIONS(3443), - [anon_sym_AMP_AMP] = ACTIONS(3443), - [anon_sym_AMP] = ACTIONS(3441), - [anon_sym_SEMI] = ACTIONS(3443), - [anon_sym___extension__] = ACTIONS(3441), - [anon_sym_typedef] = ACTIONS(3441), - [anon_sym_extern] = ACTIONS(3441), - [anon_sym___attribute__] = ACTIONS(3441), - [anon_sym_COLON_COLON] = ACTIONS(3443), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3443), - [anon_sym___declspec] = ACTIONS(3441), - [anon_sym___based] = ACTIONS(3441), - [anon_sym___cdecl] = ACTIONS(3441), - [anon_sym___clrcall] = ACTIONS(3441), - [anon_sym___stdcall] = ACTIONS(3441), - [anon_sym___fastcall] = ACTIONS(3441), - [anon_sym___thiscall] = ACTIONS(3441), - [anon_sym___vectorcall] = ACTIONS(3441), - [anon_sym_LBRACE] = ACTIONS(3443), - [anon_sym_signed] = ACTIONS(3441), - [anon_sym_unsigned] = ACTIONS(3441), - [anon_sym_long] = ACTIONS(3441), - [anon_sym_short] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_static] = ACTIONS(3441), - [anon_sym_register] = ACTIONS(3441), - [anon_sym_inline] = ACTIONS(3441), - [anon_sym___inline] = ACTIONS(3441), - [anon_sym___inline__] = ACTIONS(3441), - [anon_sym___forceinline] = ACTIONS(3441), - [anon_sym_thread_local] = ACTIONS(3441), - [anon_sym___thread] = ACTIONS(3441), - [anon_sym_const] = ACTIONS(3441), - [anon_sym_constexpr] = ACTIONS(3441), - [anon_sym_volatile] = ACTIONS(3441), - [anon_sym_restrict] = ACTIONS(3441), - [anon_sym___restrict__] = ACTIONS(3441), - [anon_sym__Atomic] = ACTIONS(3441), - [anon_sym__Noreturn] = ACTIONS(3441), - [anon_sym_noreturn] = ACTIONS(3441), - [anon_sym_mutable] = ACTIONS(3441), - [anon_sym_constinit] = ACTIONS(3441), - [anon_sym_consteval] = ACTIONS(3441), - [sym_primitive_type] = ACTIONS(3441), - [anon_sym_enum] = ACTIONS(3441), - [anon_sym_class] = ACTIONS(3441), - [anon_sym_struct] = ACTIONS(3441), - [anon_sym_union] = ACTIONS(3441), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_switch] = ACTIONS(3441), - [anon_sym_case] = ACTIONS(3441), - [anon_sym_default] = ACTIONS(3441), - [anon_sym_while] = ACTIONS(3441), - [anon_sym_do] = ACTIONS(3441), - [anon_sym_for] = ACTIONS(3441), - [anon_sym_return] = ACTIONS(3441), - [anon_sym_break] = ACTIONS(3441), - [anon_sym_continue] = ACTIONS(3441), - [anon_sym_goto] = ACTIONS(3441), - [anon_sym___try] = ACTIONS(3441), - [anon_sym___leave] = ACTIONS(3441), - [anon_sym_not] = ACTIONS(3441), - [anon_sym_compl] = ACTIONS(3441), - [anon_sym_DASH_DASH] = ACTIONS(3443), - [anon_sym_PLUS_PLUS] = ACTIONS(3443), - [anon_sym_sizeof] = ACTIONS(3441), - [anon_sym___alignof__] = ACTIONS(3441), - [anon_sym___alignof] = ACTIONS(3441), - [anon_sym__alignof] = ACTIONS(3441), - [anon_sym_alignof] = ACTIONS(3441), - [anon_sym__Alignof] = ACTIONS(3441), - [anon_sym_offsetof] = ACTIONS(3441), - [anon_sym__Generic] = ACTIONS(3441), - [anon_sym_asm] = ACTIONS(3441), - [anon_sym___asm__] = ACTIONS(3441), - [sym_number_literal] = ACTIONS(3443), - [anon_sym_L_SQUOTE] = ACTIONS(3443), - [anon_sym_u_SQUOTE] = ACTIONS(3443), - [anon_sym_U_SQUOTE] = ACTIONS(3443), - [anon_sym_u8_SQUOTE] = ACTIONS(3443), - [anon_sym_SQUOTE] = ACTIONS(3443), - [anon_sym_L_DQUOTE] = ACTIONS(3443), - [anon_sym_u_DQUOTE] = ACTIONS(3443), - [anon_sym_U_DQUOTE] = ACTIONS(3443), - [anon_sym_u8_DQUOTE] = ACTIONS(3443), - [anon_sym_DQUOTE] = ACTIONS(3443), - [sym_true] = ACTIONS(3441), - [sym_false] = ACTIONS(3441), - [anon_sym_NULL] = ACTIONS(3441), - [anon_sym_nullptr] = ACTIONS(3441), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3441), - [anon_sym_decltype] = ACTIONS(3441), - [anon_sym_virtual] = ACTIONS(3441), - [anon_sym_alignas] = ACTIONS(3441), - [anon_sym_explicit] = ACTIONS(3441), - [anon_sym_typename] = ACTIONS(3441), - [anon_sym_template] = ACTIONS(3441), - [anon_sym_operator] = ACTIONS(3441), - [anon_sym_try] = ACTIONS(3441), - [anon_sym_delete] = ACTIONS(3441), - [anon_sym_throw] = ACTIONS(3441), - [anon_sym_namespace] = ACTIONS(3441), - [anon_sym_using] = ACTIONS(3441), - [anon_sym_static_assert] = ACTIONS(3441), - [anon_sym_concept] = ACTIONS(3441), - [anon_sym_co_return] = ACTIONS(3441), - [anon_sym_co_yield] = ACTIONS(3441), - [anon_sym_R_DQUOTE] = ACTIONS(3443), - [anon_sym_LR_DQUOTE] = ACTIONS(3443), - [anon_sym_uR_DQUOTE] = ACTIONS(3443), - [anon_sym_UR_DQUOTE] = ACTIONS(3443), - [anon_sym_u8R_DQUOTE] = ACTIONS(3443), - [anon_sym_co_await] = ACTIONS(3441), - [anon_sym_new] = ACTIONS(3441), - [anon_sym_requires] = ACTIONS(3441), - [sym_this] = ACTIONS(3441), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3443), - [sym_semgrep_named_ellipsis] = ACTIONS(3443), + [sym_identifier] = ACTIONS(3661), + [aux_sym_preproc_include_token1] = ACTIONS(3661), + [aux_sym_preproc_def_token1] = ACTIONS(3661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3663), + [aux_sym_preproc_if_token1] = ACTIONS(3661), + [aux_sym_preproc_if_token2] = ACTIONS(3661), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3661), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3661), + [aux_sym_preproc_else_token1] = ACTIONS(3661), + [aux_sym_preproc_elif_token1] = ACTIONS(3661), + [sym_preproc_directive] = ACTIONS(3661), + [anon_sym_LPAREN2] = ACTIONS(3663), + [anon_sym_BANG] = ACTIONS(3663), + [anon_sym_TILDE] = ACTIONS(3663), + [anon_sym_DASH] = ACTIONS(3661), + [anon_sym_PLUS] = ACTIONS(3661), + [anon_sym_STAR] = ACTIONS(3663), + [anon_sym_AMP_AMP] = ACTIONS(3663), + [anon_sym_AMP] = ACTIONS(3661), + [anon_sym_SEMI] = ACTIONS(3663), + [anon_sym___extension__] = ACTIONS(3661), + [anon_sym_typedef] = ACTIONS(3661), + [anon_sym_extern] = ACTIONS(3661), + [anon_sym___attribute__] = ACTIONS(3661), + [anon_sym_COLON_COLON] = ACTIONS(3663), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3663), + [anon_sym___declspec] = ACTIONS(3661), + [anon_sym___based] = ACTIONS(3661), + [anon_sym___cdecl] = ACTIONS(3661), + [anon_sym___clrcall] = ACTIONS(3661), + [anon_sym___stdcall] = ACTIONS(3661), + [anon_sym___fastcall] = ACTIONS(3661), + [anon_sym___thiscall] = ACTIONS(3661), + [anon_sym___vectorcall] = ACTIONS(3661), + [anon_sym_LBRACE] = ACTIONS(3663), + [anon_sym_signed] = ACTIONS(3661), + [anon_sym_unsigned] = ACTIONS(3661), + [anon_sym_long] = ACTIONS(3661), + [anon_sym_short] = ACTIONS(3661), + [anon_sym_LBRACK] = ACTIONS(3661), + [anon_sym_static] = ACTIONS(3661), + [anon_sym_register] = ACTIONS(3661), + [anon_sym_inline] = ACTIONS(3661), + [anon_sym___inline] = ACTIONS(3661), + [anon_sym___inline__] = ACTIONS(3661), + [anon_sym___forceinline] = ACTIONS(3661), + [anon_sym_thread_local] = ACTIONS(3661), + [anon_sym___thread] = ACTIONS(3661), + [anon_sym_const] = ACTIONS(3661), + [anon_sym_constexpr] = ACTIONS(3661), + [anon_sym_volatile] = ACTIONS(3661), + [anon_sym_restrict] = ACTIONS(3661), + [anon_sym___restrict__] = ACTIONS(3661), + [anon_sym__Atomic] = ACTIONS(3661), + [anon_sym__Noreturn] = ACTIONS(3661), + [anon_sym_noreturn] = ACTIONS(3661), + [anon_sym_mutable] = ACTIONS(3661), + [anon_sym_constinit] = ACTIONS(3661), + [anon_sym_consteval] = ACTIONS(3661), + [sym_primitive_type] = ACTIONS(3661), + [anon_sym_enum] = ACTIONS(3661), + [anon_sym_class] = ACTIONS(3661), + [anon_sym_struct] = ACTIONS(3661), + [anon_sym_union] = ACTIONS(3661), + [anon_sym_if] = ACTIONS(3661), + [anon_sym_switch] = ACTIONS(3661), + [anon_sym_case] = ACTIONS(3661), + [anon_sym_default] = ACTIONS(3661), + [anon_sym_while] = ACTIONS(3661), + [anon_sym_do] = ACTIONS(3661), + [anon_sym_for] = ACTIONS(3661), + [anon_sym_return] = ACTIONS(3661), + [anon_sym_break] = ACTIONS(3661), + [anon_sym_continue] = ACTIONS(3661), + [anon_sym_goto] = ACTIONS(3661), + [anon_sym___try] = ACTIONS(3661), + [anon_sym___leave] = ACTIONS(3661), + [anon_sym_not] = ACTIONS(3661), + [anon_sym_compl] = ACTIONS(3661), + [anon_sym_DASH_DASH] = ACTIONS(3663), + [anon_sym_PLUS_PLUS] = ACTIONS(3663), + [anon_sym_sizeof] = ACTIONS(3661), + [anon_sym___alignof__] = ACTIONS(3661), + [anon_sym___alignof] = ACTIONS(3661), + [anon_sym__alignof] = ACTIONS(3661), + [anon_sym_alignof] = ACTIONS(3661), + [anon_sym__Alignof] = ACTIONS(3661), + [anon_sym_offsetof] = ACTIONS(3661), + [anon_sym__Generic] = ACTIONS(3661), + [anon_sym_asm] = ACTIONS(3661), + [anon_sym___asm__] = ACTIONS(3661), + [sym_number_literal] = ACTIONS(3663), + [anon_sym_L_SQUOTE] = ACTIONS(3663), + [anon_sym_u_SQUOTE] = ACTIONS(3663), + [anon_sym_U_SQUOTE] = ACTIONS(3663), + [anon_sym_u8_SQUOTE] = ACTIONS(3663), + [anon_sym_SQUOTE] = ACTIONS(3663), + [anon_sym_L_DQUOTE] = ACTIONS(3663), + [anon_sym_u_DQUOTE] = ACTIONS(3663), + [anon_sym_U_DQUOTE] = ACTIONS(3663), + [anon_sym_u8_DQUOTE] = ACTIONS(3663), + [anon_sym_DQUOTE] = ACTIONS(3663), + [sym_true] = ACTIONS(3661), + [sym_false] = ACTIONS(3661), + [anon_sym_NULL] = ACTIONS(3661), + [anon_sym_nullptr] = ACTIONS(3661), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3661), + [anon_sym_decltype] = ACTIONS(3661), + [anon_sym_virtual] = ACTIONS(3661), + [anon_sym_alignas] = ACTIONS(3661), + [anon_sym_explicit] = ACTIONS(3661), + [anon_sym_typename] = ACTIONS(3661), + [anon_sym_template] = ACTIONS(3661), + [anon_sym_operator] = ACTIONS(3661), + [anon_sym_try] = ACTIONS(3661), + [anon_sym_delete] = ACTIONS(3661), + [anon_sym_throw] = ACTIONS(3661), + [anon_sym_namespace] = ACTIONS(3661), + [anon_sym_using] = ACTIONS(3661), + [anon_sym_static_assert] = ACTIONS(3661), + [anon_sym_concept] = ACTIONS(3661), + [anon_sym_co_return] = ACTIONS(3661), + [anon_sym_co_yield] = ACTIONS(3661), + [anon_sym_R_DQUOTE] = ACTIONS(3663), + [anon_sym_LR_DQUOTE] = ACTIONS(3663), + [anon_sym_uR_DQUOTE] = ACTIONS(3663), + [anon_sym_UR_DQUOTE] = ACTIONS(3663), + [anon_sym_u8R_DQUOTE] = ACTIONS(3663), + [anon_sym_co_await] = ACTIONS(3661), + [anon_sym_new] = ACTIONS(3661), + [anon_sym_requires] = ACTIONS(3661), + [sym_this] = ACTIONS(3661), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3663), + [sym_semgrep_named_ellipsis] = ACTIONS(3663), }, [543] = { - [sym_identifier] = ACTIONS(3354), - [aux_sym_preproc_include_token1] = ACTIONS(3354), - [aux_sym_preproc_def_token1] = ACTIONS(3354), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3356), - [aux_sym_preproc_if_token1] = ACTIONS(3354), - [aux_sym_preproc_if_token2] = ACTIONS(3354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3354), - [aux_sym_preproc_else_token1] = ACTIONS(3354), - [aux_sym_preproc_elif_token1] = ACTIONS(3354), - [sym_preproc_directive] = ACTIONS(3354), - [anon_sym_LPAREN2] = ACTIONS(3356), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(3356), - [anon_sym_DASH] = ACTIONS(3354), - [anon_sym_PLUS] = ACTIONS(3354), - [anon_sym_STAR] = ACTIONS(3356), - [anon_sym_AMP_AMP] = ACTIONS(3356), - [anon_sym_AMP] = ACTIONS(3354), - [anon_sym_SEMI] = ACTIONS(3356), - [anon_sym___extension__] = ACTIONS(3354), - [anon_sym_typedef] = ACTIONS(3354), - [anon_sym_extern] = ACTIONS(3354), - [anon_sym___attribute__] = ACTIONS(3354), - [anon_sym_COLON_COLON] = ACTIONS(3356), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3356), - [anon_sym___declspec] = ACTIONS(3354), - [anon_sym___based] = ACTIONS(3354), - [anon_sym___cdecl] = ACTIONS(3354), - [anon_sym___clrcall] = ACTIONS(3354), - [anon_sym___stdcall] = ACTIONS(3354), - [anon_sym___fastcall] = ACTIONS(3354), - [anon_sym___thiscall] = ACTIONS(3354), - [anon_sym___vectorcall] = ACTIONS(3354), - [anon_sym_LBRACE] = ACTIONS(3356), - [anon_sym_signed] = ACTIONS(3354), - [anon_sym_unsigned] = ACTIONS(3354), - [anon_sym_long] = ACTIONS(3354), - [anon_sym_short] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3354), - [anon_sym_static] = ACTIONS(3354), - [anon_sym_register] = ACTIONS(3354), - [anon_sym_inline] = ACTIONS(3354), - [anon_sym___inline] = ACTIONS(3354), - [anon_sym___inline__] = ACTIONS(3354), - [anon_sym___forceinline] = ACTIONS(3354), - [anon_sym_thread_local] = ACTIONS(3354), - [anon_sym___thread] = ACTIONS(3354), - [anon_sym_const] = ACTIONS(3354), - [anon_sym_constexpr] = ACTIONS(3354), - [anon_sym_volatile] = ACTIONS(3354), - [anon_sym_restrict] = ACTIONS(3354), - [anon_sym___restrict__] = ACTIONS(3354), - [anon_sym__Atomic] = ACTIONS(3354), - [anon_sym__Noreturn] = ACTIONS(3354), - [anon_sym_noreturn] = ACTIONS(3354), - [anon_sym_mutable] = ACTIONS(3354), - [anon_sym_constinit] = ACTIONS(3354), - [anon_sym_consteval] = ACTIONS(3354), - [sym_primitive_type] = ACTIONS(3354), - [anon_sym_enum] = ACTIONS(3354), - [anon_sym_class] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(3354), - [anon_sym_union] = ACTIONS(3354), - [anon_sym_if] = ACTIONS(3354), - [anon_sym_switch] = ACTIONS(3354), - [anon_sym_case] = ACTIONS(3354), - [anon_sym_default] = ACTIONS(3354), - [anon_sym_while] = ACTIONS(3354), - [anon_sym_do] = ACTIONS(3354), - [anon_sym_for] = ACTIONS(3354), - [anon_sym_return] = ACTIONS(3354), - [anon_sym_break] = ACTIONS(3354), - [anon_sym_continue] = ACTIONS(3354), - [anon_sym_goto] = ACTIONS(3354), - [anon_sym___try] = ACTIONS(3354), - [anon_sym___leave] = ACTIONS(3354), - [anon_sym_not] = ACTIONS(3354), - [anon_sym_compl] = ACTIONS(3354), - [anon_sym_DASH_DASH] = ACTIONS(3356), - [anon_sym_PLUS_PLUS] = ACTIONS(3356), - [anon_sym_sizeof] = ACTIONS(3354), - [anon_sym___alignof__] = ACTIONS(3354), - [anon_sym___alignof] = ACTIONS(3354), - [anon_sym__alignof] = ACTIONS(3354), - [anon_sym_alignof] = ACTIONS(3354), - [anon_sym__Alignof] = ACTIONS(3354), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3354), - [anon_sym_asm] = ACTIONS(3354), - [anon_sym___asm__] = ACTIONS(3354), - [sym_number_literal] = ACTIONS(3356), - [anon_sym_L_SQUOTE] = ACTIONS(3356), - [anon_sym_u_SQUOTE] = ACTIONS(3356), - [anon_sym_U_SQUOTE] = ACTIONS(3356), - [anon_sym_u8_SQUOTE] = ACTIONS(3356), - [anon_sym_SQUOTE] = ACTIONS(3356), - [anon_sym_L_DQUOTE] = ACTIONS(3356), - [anon_sym_u_DQUOTE] = ACTIONS(3356), - [anon_sym_U_DQUOTE] = ACTIONS(3356), - [anon_sym_u8_DQUOTE] = ACTIONS(3356), - [anon_sym_DQUOTE] = ACTIONS(3356), - [sym_true] = ACTIONS(3354), - [sym_false] = ACTIONS(3354), - [anon_sym_NULL] = ACTIONS(3354), - [anon_sym_nullptr] = ACTIONS(3354), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3354), - [anon_sym_decltype] = ACTIONS(3354), - [anon_sym_virtual] = ACTIONS(3354), - [anon_sym_alignas] = ACTIONS(3354), - [anon_sym_explicit] = ACTIONS(3354), - [anon_sym_typename] = ACTIONS(3354), - [anon_sym_template] = ACTIONS(3354), - [anon_sym_operator] = ACTIONS(3354), - [anon_sym_try] = ACTIONS(3354), - [anon_sym_delete] = ACTIONS(3354), - [anon_sym_throw] = ACTIONS(3354), - [anon_sym_namespace] = ACTIONS(3354), - [anon_sym_using] = ACTIONS(3354), - [anon_sym_static_assert] = ACTIONS(3354), - [anon_sym_concept] = ACTIONS(3354), - [anon_sym_co_return] = ACTIONS(3354), - [anon_sym_co_yield] = ACTIONS(3354), - [anon_sym_R_DQUOTE] = ACTIONS(3356), - [anon_sym_LR_DQUOTE] = ACTIONS(3356), - [anon_sym_uR_DQUOTE] = ACTIONS(3356), - [anon_sym_UR_DQUOTE] = ACTIONS(3356), - [anon_sym_u8R_DQUOTE] = ACTIONS(3356), - [anon_sym_co_await] = ACTIONS(3354), - [anon_sym_new] = ACTIONS(3354), - [anon_sym_requires] = ACTIONS(3354), - [sym_this] = ACTIONS(3354), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3356), - [sym_semgrep_named_ellipsis] = ACTIONS(3356), + [sym_identifier] = ACTIONS(3680), + [aux_sym_preproc_include_token1] = ACTIONS(3680), + [aux_sym_preproc_def_token1] = ACTIONS(3680), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3682), + [aux_sym_preproc_if_token1] = ACTIONS(3680), + [aux_sym_preproc_if_token2] = ACTIONS(3680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3680), + [aux_sym_preproc_else_token1] = ACTIONS(3680), + [aux_sym_preproc_elif_token1] = ACTIONS(3680), + [sym_preproc_directive] = ACTIONS(3680), + [anon_sym_LPAREN2] = ACTIONS(3682), + [anon_sym_BANG] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(3682), + [anon_sym_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3680), + [anon_sym_STAR] = ACTIONS(3682), + [anon_sym_AMP_AMP] = ACTIONS(3682), + [anon_sym_AMP] = ACTIONS(3680), + [anon_sym_SEMI] = ACTIONS(3682), + [anon_sym___extension__] = ACTIONS(3680), + [anon_sym_typedef] = ACTIONS(3680), + [anon_sym_extern] = ACTIONS(3680), + [anon_sym___attribute__] = ACTIONS(3680), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3682), + [anon_sym___declspec] = ACTIONS(3680), + [anon_sym___based] = ACTIONS(3680), + [anon_sym___cdecl] = ACTIONS(3680), + [anon_sym___clrcall] = ACTIONS(3680), + [anon_sym___stdcall] = ACTIONS(3680), + [anon_sym___fastcall] = ACTIONS(3680), + [anon_sym___thiscall] = ACTIONS(3680), + [anon_sym___vectorcall] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3682), + [anon_sym_signed] = ACTIONS(3680), + [anon_sym_unsigned] = ACTIONS(3680), + [anon_sym_long] = ACTIONS(3680), + [anon_sym_short] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_static] = ACTIONS(3680), + [anon_sym_register] = ACTIONS(3680), + [anon_sym_inline] = ACTIONS(3680), + [anon_sym___inline] = ACTIONS(3680), + [anon_sym___inline__] = ACTIONS(3680), + [anon_sym___forceinline] = ACTIONS(3680), + [anon_sym_thread_local] = ACTIONS(3680), + [anon_sym___thread] = ACTIONS(3680), + [anon_sym_const] = ACTIONS(3680), + [anon_sym_constexpr] = ACTIONS(3680), + [anon_sym_volatile] = ACTIONS(3680), + [anon_sym_restrict] = ACTIONS(3680), + [anon_sym___restrict__] = ACTIONS(3680), + [anon_sym__Atomic] = ACTIONS(3680), + [anon_sym__Noreturn] = ACTIONS(3680), + [anon_sym_noreturn] = ACTIONS(3680), + [anon_sym_mutable] = ACTIONS(3680), + [anon_sym_constinit] = ACTIONS(3680), + [anon_sym_consteval] = ACTIONS(3680), + [sym_primitive_type] = ACTIONS(3680), + [anon_sym_enum] = ACTIONS(3680), + [anon_sym_class] = ACTIONS(3680), + [anon_sym_struct] = ACTIONS(3680), + [anon_sym_union] = ACTIONS(3680), + [anon_sym_if] = ACTIONS(3680), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_case] = ACTIONS(3680), + [anon_sym_default] = ACTIONS(3680), + [anon_sym_while] = ACTIONS(3680), + [anon_sym_do] = ACTIONS(3680), + [anon_sym_for] = ACTIONS(3680), + [anon_sym_return] = ACTIONS(3680), + [anon_sym_break] = ACTIONS(3680), + [anon_sym_continue] = ACTIONS(3680), + [anon_sym_goto] = ACTIONS(3680), + [anon_sym___try] = ACTIONS(3680), + [anon_sym___leave] = ACTIONS(3680), + [anon_sym_not] = ACTIONS(3680), + [anon_sym_compl] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3682), + [anon_sym_PLUS_PLUS] = ACTIONS(3682), + [anon_sym_sizeof] = ACTIONS(3680), + [anon_sym___alignof__] = ACTIONS(3680), + [anon_sym___alignof] = ACTIONS(3680), + [anon_sym__alignof] = ACTIONS(3680), + [anon_sym_alignof] = ACTIONS(3680), + [anon_sym__Alignof] = ACTIONS(3680), + [anon_sym_offsetof] = ACTIONS(3680), + [anon_sym__Generic] = ACTIONS(3680), + [anon_sym_asm] = ACTIONS(3680), + [anon_sym___asm__] = ACTIONS(3680), + [sym_number_literal] = ACTIONS(3682), + [anon_sym_L_SQUOTE] = ACTIONS(3682), + [anon_sym_u_SQUOTE] = ACTIONS(3682), + [anon_sym_U_SQUOTE] = ACTIONS(3682), + [anon_sym_u8_SQUOTE] = ACTIONS(3682), + [anon_sym_SQUOTE] = ACTIONS(3682), + [anon_sym_L_DQUOTE] = ACTIONS(3682), + [anon_sym_u_DQUOTE] = ACTIONS(3682), + [anon_sym_U_DQUOTE] = ACTIONS(3682), + [anon_sym_u8_DQUOTE] = ACTIONS(3682), + [anon_sym_DQUOTE] = ACTIONS(3682), + [sym_true] = ACTIONS(3680), + [sym_false] = ACTIONS(3680), + [anon_sym_NULL] = ACTIONS(3680), + [anon_sym_nullptr] = ACTIONS(3680), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3680), + [anon_sym_decltype] = ACTIONS(3680), + [anon_sym_virtual] = ACTIONS(3680), + [anon_sym_alignas] = ACTIONS(3680), + [anon_sym_explicit] = ACTIONS(3680), + [anon_sym_typename] = ACTIONS(3680), + [anon_sym_template] = ACTIONS(3680), + [anon_sym_operator] = ACTIONS(3680), + [anon_sym_try] = ACTIONS(3680), + [anon_sym_delete] = ACTIONS(3680), + [anon_sym_throw] = ACTIONS(3680), + [anon_sym_namespace] = ACTIONS(3680), + [anon_sym_using] = ACTIONS(3680), + [anon_sym_static_assert] = ACTIONS(3680), + [anon_sym_concept] = ACTIONS(3680), + [anon_sym_co_return] = ACTIONS(3680), + [anon_sym_co_yield] = ACTIONS(3680), + [anon_sym_R_DQUOTE] = ACTIONS(3682), + [anon_sym_LR_DQUOTE] = ACTIONS(3682), + [anon_sym_uR_DQUOTE] = ACTIONS(3682), + [anon_sym_UR_DQUOTE] = ACTIONS(3682), + [anon_sym_u8R_DQUOTE] = ACTIONS(3682), + [anon_sym_co_await] = ACTIONS(3680), + [anon_sym_new] = ACTIONS(3680), + [anon_sym_requires] = ACTIONS(3680), + [sym_this] = ACTIONS(3680), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3682), + [sym_semgrep_named_ellipsis] = ACTIONS(3682), }, [544] = { - [sym_identifier] = ACTIONS(3358), - [aux_sym_preproc_include_token1] = ACTIONS(3358), - [aux_sym_preproc_def_token1] = ACTIONS(3358), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3360), - [aux_sym_preproc_if_token1] = ACTIONS(3358), - [aux_sym_preproc_if_token2] = ACTIONS(3358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3358), - [aux_sym_preproc_else_token1] = ACTIONS(3358), - [aux_sym_preproc_elif_token1] = ACTIONS(3358), - [sym_preproc_directive] = ACTIONS(3358), - [anon_sym_LPAREN2] = ACTIONS(3360), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_AMP_AMP] = ACTIONS(3360), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_SEMI] = ACTIONS(3360), - [anon_sym___extension__] = ACTIONS(3358), - [anon_sym_typedef] = ACTIONS(3358), - [anon_sym_extern] = ACTIONS(3358), - [anon_sym___attribute__] = ACTIONS(3358), - [anon_sym_COLON_COLON] = ACTIONS(3360), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3360), - [anon_sym___declspec] = ACTIONS(3358), - [anon_sym___based] = ACTIONS(3358), - [anon_sym___cdecl] = ACTIONS(3358), - [anon_sym___clrcall] = ACTIONS(3358), - [anon_sym___stdcall] = ACTIONS(3358), - [anon_sym___fastcall] = ACTIONS(3358), - [anon_sym___thiscall] = ACTIONS(3358), - [anon_sym___vectorcall] = ACTIONS(3358), - [anon_sym_LBRACE] = ACTIONS(3360), - [anon_sym_signed] = ACTIONS(3358), - [anon_sym_unsigned] = ACTIONS(3358), - [anon_sym_long] = ACTIONS(3358), - [anon_sym_short] = ACTIONS(3358), - [anon_sym_LBRACK] = ACTIONS(3358), - [anon_sym_static] = ACTIONS(3358), - [anon_sym_register] = ACTIONS(3358), - [anon_sym_inline] = ACTIONS(3358), - [anon_sym___inline] = ACTIONS(3358), - [anon_sym___inline__] = ACTIONS(3358), - [anon_sym___forceinline] = ACTIONS(3358), - [anon_sym_thread_local] = ACTIONS(3358), - [anon_sym___thread] = ACTIONS(3358), - [anon_sym_const] = ACTIONS(3358), - [anon_sym_constexpr] = ACTIONS(3358), - [anon_sym_volatile] = ACTIONS(3358), - [anon_sym_restrict] = ACTIONS(3358), - [anon_sym___restrict__] = ACTIONS(3358), - [anon_sym__Atomic] = ACTIONS(3358), - [anon_sym__Noreturn] = ACTIONS(3358), - [anon_sym_noreturn] = ACTIONS(3358), - [anon_sym_mutable] = ACTIONS(3358), - [anon_sym_constinit] = ACTIONS(3358), - [anon_sym_consteval] = ACTIONS(3358), - [sym_primitive_type] = ACTIONS(3358), - [anon_sym_enum] = ACTIONS(3358), - [anon_sym_class] = ACTIONS(3358), - [anon_sym_struct] = ACTIONS(3358), - [anon_sym_union] = ACTIONS(3358), - [anon_sym_if] = ACTIONS(3358), - [anon_sym_switch] = ACTIONS(3358), - [anon_sym_case] = ACTIONS(3358), - [anon_sym_default] = ACTIONS(3358), - [anon_sym_while] = ACTIONS(3358), - [anon_sym_do] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3358), - [anon_sym_return] = ACTIONS(3358), - [anon_sym_break] = ACTIONS(3358), - [anon_sym_continue] = ACTIONS(3358), - [anon_sym_goto] = ACTIONS(3358), - [anon_sym___try] = ACTIONS(3358), - [anon_sym___leave] = ACTIONS(3358), - [anon_sym_not] = ACTIONS(3358), - [anon_sym_compl] = ACTIONS(3358), - [anon_sym_DASH_DASH] = ACTIONS(3360), - [anon_sym_PLUS_PLUS] = ACTIONS(3360), - [anon_sym_sizeof] = ACTIONS(3358), - [anon_sym___alignof__] = ACTIONS(3358), - [anon_sym___alignof] = ACTIONS(3358), - [anon_sym__alignof] = ACTIONS(3358), - [anon_sym_alignof] = ACTIONS(3358), - [anon_sym__Alignof] = ACTIONS(3358), - [anon_sym_offsetof] = ACTIONS(3358), - [anon_sym__Generic] = ACTIONS(3358), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3360), - [anon_sym_u_SQUOTE] = ACTIONS(3360), - [anon_sym_U_SQUOTE] = ACTIONS(3360), - [anon_sym_u8_SQUOTE] = ACTIONS(3360), - [anon_sym_SQUOTE] = ACTIONS(3360), - [anon_sym_L_DQUOTE] = ACTIONS(3360), - [anon_sym_u_DQUOTE] = ACTIONS(3360), - [anon_sym_U_DQUOTE] = ACTIONS(3360), - [anon_sym_u8_DQUOTE] = ACTIONS(3360), - [anon_sym_DQUOTE] = ACTIONS(3360), - [sym_true] = ACTIONS(3358), - [sym_false] = ACTIONS(3358), - [anon_sym_NULL] = ACTIONS(3358), - [anon_sym_nullptr] = ACTIONS(3358), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3358), - [anon_sym_decltype] = ACTIONS(3358), - [anon_sym_virtual] = ACTIONS(3358), - [anon_sym_alignas] = ACTIONS(3358), - [anon_sym_explicit] = ACTIONS(3358), - [anon_sym_typename] = ACTIONS(3358), - [anon_sym_template] = ACTIONS(3358), - [anon_sym_operator] = ACTIONS(3358), - [anon_sym_try] = ACTIONS(3358), - [anon_sym_delete] = ACTIONS(3358), - [anon_sym_throw] = ACTIONS(3358), - [anon_sym_namespace] = ACTIONS(3358), - [anon_sym_using] = ACTIONS(3358), - [anon_sym_static_assert] = ACTIONS(3358), - [anon_sym_concept] = ACTIONS(3358), - [anon_sym_co_return] = ACTIONS(3358), - [anon_sym_co_yield] = ACTIONS(3358), - [anon_sym_R_DQUOTE] = ACTIONS(3360), - [anon_sym_LR_DQUOTE] = ACTIONS(3360), - [anon_sym_uR_DQUOTE] = ACTIONS(3360), - [anon_sym_UR_DQUOTE] = ACTIONS(3360), - [anon_sym_u8R_DQUOTE] = ACTIONS(3360), - [anon_sym_co_await] = ACTIONS(3358), - [anon_sym_new] = ACTIONS(3358), - [anon_sym_requires] = ACTIONS(3358), - [sym_this] = ACTIONS(3358), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3360), - [sym_semgrep_named_ellipsis] = ACTIONS(3360), - }, - [545] = { - [sym_identifier] = ACTIONS(3638), - [aux_sym_preproc_include_token1] = ACTIONS(3638), - [aux_sym_preproc_def_token1] = ACTIONS(3638), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3640), - [aux_sym_preproc_if_token1] = ACTIONS(3638), - [aux_sym_preproc_if_token2] = ACTIONS(3638), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3638), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3638), - [aux_sym_preproc_else_token1] = ACTIONS(3638), - [aux_sym_preproc_elif_token1] = ACTIONS(3638), - [sym_preproc_directive] = ACTIONS(3638), - [anon_sym_LPAREN2] = ACTIONS(3640), - [anon_sym_BANG] = ACTIONS(3640), - [anon_sym_TILDE] = ACTIONS(3640), - [anon_sym_DASH] = ACTIONS(3638), - [anon_sym_PLUS] = ACTIONS(3638), - [anon_sym_STAR] = ACTIONS(3640), - [anon_sym_AMP_AMP] = ACTIONS(3640), - [anon_sym_AMP] = ACTIONS(3638), - [anon_sym_SEMI] = ACTIONS(3640), - [anon_sym___extension__] = ACTIONS(3638), - [anon_sym_typedef] = ACTIONS(3638), - [anon_sym_extern] = ACTIONS(3638), - [anon_sym___attribute__] = ACTIONS(3638), - [anon_sym_COLON_COLON] = ACTIONS(3640), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3640), - [anon_sym___declspec] = ACTIONS(3638), - [anon_sym___based] = ACTIONS(3638), - [anon_sym___cdecl] = ACTIONS(3638), - [anon_sym___clrcall] = ACTIONS(3638), - [anon_sym___stdcall] = ACTIONS(3638), - [anon_sym___fastcall] = ACTIONS(3638), - [anon_sym___thiscall] = ACTIONS(3638), - [anon_sym___vectorcall] = ACTIONS(3638), - [anon_sym_LBRACE] = ACTIONS(3640), - [anon_sym_signed] = ACTIONS(3638), - [anon_sym_unsigned] = ACTIONS(3638), - [anon_sym_long] = ACTIONS(3638), - [anon_sym_short] = ACTIONS(3638), - [anon_sym_LBRACK] = ACTIONS(3638), - [anon_sym_static] = ACTIONS(3638), - [anon_sym_register] = ACTIONS(3638), - [anon_sym_inline] = ACTIONS(3638), - [anon_sym___inline] = ACTIONS(3638), - [anon_sym___inline__] = ACTIONS(3638), - [anon_sym___forceinline] = ACTIONS(3638), - [anon_sym_thread_local] = ACTIONS(3638), - [anon_sym___thread] = ACTIONS(3638), - [anon_sym_const] = ACTIONS(3638), - [anon_sym_constexpr] = ACTIONS(3638), - [anon_sym_volatile] = ACTIONS(3638), - [anon_sym_restrict] = ACTIONS(3638), - [anon_sym___restrict__] = ACTIONS(3638), - [anon_sym__Atomic] = ACTIONS(3638), - [anon_sym__Noreturn] = ACTIONS(3638), - [anon_sym_noreturn] = ACTIONS(3638), - [anon_sym_mutable] = ACTIONS(3638), - [anon_sym_constinit] = ACTIONS(3638), - [anon_sym_consteval] = ACTIONS(3638), - [sym_primitive_type] = ACTIONS(3638), - [anon_sym_enum] = ACTIONS(3638), - [anon_sym_class] = ACTIONS(3638), - [anon_sym_struct] = ACTIONS(3638), - [anon_sym_union] = ACTIONS(3638), - [anon_sym_if] = ACTIONS(3638), - [anon_sym_switch] = ACTIONS(3638), - [anon_sym_case] = ACTIONS(3638), - [anon_sym_default] = ACTIONS(3638), - [anon_sym_while] = ACTIONS(3638), - [anon_sym_do] = ACTIONS(3638), - [anon_sym_for] = ACTIONS(3638), - [anon_sym_return] = ACTIONS(3638), - [anon_sym_break] = ACTIONS(3638), - [anon_sym_continue] = ACTIONS(3638), - [anon_sym_goto] = ACTIONS(3638), - [anon_sym___try] = ACTIONS(3638), - [anon_sym___leave] = ACTIONS(3638), - [anon_sym_not] = ACTIONS(3638), - [anon_sym_compl] = ACTIONS(3638), - [anon_sym_DASH_DASH] = ACTIONS(3640), - [anon_sym_PLUS_PLUS] = ACTIONS(3640), - [anon_sym_sizeof] = ACTIONS(3638), - [anon_sym___alignof__] = ACTIONS(3638), - [anon_sym___alignof] = ACTIONS(3638), - [anon_sym__alignof] = ACTIONS(3638), - [anon_sym_alignof] = ACTIONS(3638), - [anon_sym__Alignof] = ACTIONS(3638), - [anon_sym_offsetof] = ACTIONS(3638), - [anon_sym__Generic] = ACTIONS(3638), - [anon_sym_asm] = ACTIONS(3638), - [anon_sym___asm__] = ACTIONS(3638), - [sym_number_literal] = ACTIONS(3640), - [anon_sym_L_SQUOTE] = ACTIONS(3640), - [anon_sym_u_SQUOTE] = ACTIONS(3640), - [anon_sym_U_SQUOTE] = ACTIONS(3640), - [anon_sym_u8_SQUOTE] = ACTIONS(3640), - [anon_sym_SQUOTE] = ACTIONS(3640), - [anon_sym_L_DQUOTE] = ACTIONS(3640), - [anon_sym_u_DQUOTE] = ACTIONS(3640), - [anon_sym_U_DQUOTE] = ACTIONS(3640), - [anon_sym_u8_DQUOTE] = ACTIONS(3640), - [anon_sym_DQUOTE] = ACTIONS(3640), - [sym_true] = ACTIONS(3638), - [sym_false] = ACTIONS(3638), - [anon_sym_NULL] = ACTIONS(3638), - [anon_sym_nullptr] = ACTIONS(3638), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3638), - [anon_sym_decltype] = ACTIONS(3638), - [anon_sym_virtual] = ACTIONS(3638), - [anon_sym_alignas] = ACTIONS(3638), - [anon_sym_explicit] = ACTIONS(3638), - [anon_sym_typename] = ACTIONS(3638), - [anon_sym_template] = ACTIONS(3638), - [anon_sym_operator] = ACTIONS(3638), - [anon_sym_try] = ACTIONS(3638), - [anon_sym_delete] = ACTIONS(3638), - [anon_sym_throw] = ACTIONS(3638), - [anon_sym_namespace] = ACTIONS(3638), - [anon_sym_using] = ACTIONS(3638), - [anon_sym_static_assert] = ACTIONS(3638), - [anon_sym_concept] = ACTIONS(3638), - [anon_sym_co_return] = ACTIONS(3638), - [anon_sym_co_yield] = ACTIONS(3638), - [anon_sym_R_DQUOTE] = ACTIONS(3640), - [anon_sym_LR_DQUOTE] = ACTIONS(3640), - [anon_sym_uR_DQUOTE] = ACTIONS(3640), - [anon_sym_UR_DQUOTE] = ACTIONS(3640), - [anon_sym_u8R_DQUOTE] = ACTIONS(3640), - [anon_sym_co_await] = ACTIONS(3638), - [anon_sym_new] = ACTIONS(3638), - [anon_sym_requires] = ACTIONS(3638), - [sym_this] = ACTIONS(3638), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3640), - [sym_semgrep_named_ellipsis] = ACTIONS(3640), - }, - [546] = { - [sym_identifier] = ACTIONS(3449), - [aux_sym_preproc_include_token1] = ACTIONS(3449), - [aux_sym_preproc_def_token1] = ACTIONS(3449), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3451), - [aux_sym_preproc_if_token1] = ACTIONS(3449), - [aux_sym_preproc_if_token2] = ACTIONS(3449), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3449), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3449), - [aux_sym_preproc_else_token1] = ACTIONS(3449), - [aux_sym_preproc_elif_token1] = ACTIONS(3449), - [sym_preproc_directive] = ACTIONS(3449), - [anon_sym_LPAREN2] = ACTIONS(3451), - [anon_sym_BANG] = ACTIONS(3451), - [anon_sym_TILDE] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3449), - [anon_sym_PLUS] = ACTIONS(3449), - [anon_sym_STAR] = ACTIONS(3451), - [anon_sym_AMP_AMP] = ACTIONS(3451), - [anon_sym_AMP] = ACTIONS(3449), - [anon_sym_SEMI] = ACTIONS(3451), - [anon_sym___extension__] = ACTIONS(3449), - [anon_sym_typedef] = ACTIONS(3449), - [anon_sym_extern] = ACTIONS(3449), - [anon_sym___attribute__] = ACTIONS(3449), - [anon_sym_COLON_COLON] = ACTIONS(3451), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3451), - [anon_sym___declspec] = ACTIONS(3449), - [anon_sym___based] = ACTIONS(3449), - [anon_sym___cdecl] = ACTIONS(3449), - [anon_sym___clrcall] = ACTIONS(3449), - [anon_sym___stdcall] = ACTIONS(3449), - [anon_sym___fastcall] = ACTIONS(3449), - [anon_sym___thiscall] = ACTIONS(3449), - [anon_sym___vectorcall] = ACTIONS(3449), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_signed] = ACTIONS(3449), - [anon_sym_unsigned] = ACTIONS(3449), - [anon_sym_long] = ACTIONS(3449), - [anon_sym_short] = ACTIONS(3449), - [anon_sym_LBRACK] = ACTIONS(3449), - [anon_sym_static] = ACTIONS(3449), - [anon_sym_register] = ACTIONS(3449), - [anon_sym_inline] = ACTIONS(3449), - [anon_sym___inline] = ACTIONS(3449), - [anon_sym___inline__] = ACTIONS(3449), - [anon_sym___forceinline] = ACTIONS(3449), - [anon_sym_thread_local] = ACTIONS(3449), - [anon_sym___thread] = ACTIONS(3449), - [anon_sym_const] = ACTIONS(3449), - [anon_sym_constexpr] = ACTIONS(3449), - [anon_sym_volatile] = ACTIONS(3449), - [anon_sym_restrict] = ACTIONS(3449), - [anon_sym___restrict__] = ACTIONS(3449), - [anon_sym__Atomic] = ACTIONS(3449), - [anon_sym__Noreturn] = ACTIONS(3449), - [anon_sym_noreturn] = ACTIONS(3449), - [anon_sym_mutable] = ACTIONS(3449), - [anon_sym_constinit] = ACTIONS(3449), - [anon_sym_consteval] = ACTIONS(3449), - [sym_primitive_type] = ACTIONS(3449), - [anon_sym_enum] = ACTIONS(3449), - [anon_sym_class] = ACTIONS(3449), - [anon_sym_struct] = ACTIONS(3449), - [anon_sym_union] = ACTIONS(3449), - [anon_sym_if] = ACTIONS(3449), - [anon_sym_switch] = ACTIONS(3449), - [anon_sym_case] = ACTIONS(3449), - [anon_sym_default] = ACTIONS(3449), - [anon_sym_while] = ACTIONS(3449), - [anon_sym_do] = ACTIONS(3449), - [anon_sym_for] = ACTIONS(3449), - [anon_sym_return] = ACTIONS(3449), - [anon_sym_break] = ACTIONS(3449), - [anon_sym_continue] = ACTIONS(3449), - [anon_sym_goto] = ACTIONS(3449), - [anon_sym___try] = ACTIONS(3449), - [anon_sym___leave] = ACTIONS(3449), - [anon_sym_not] = ACTIONS(3449), - [anon_sym_compl] = ACTIONS(3449), - [anon_sym_DASH_DASH] = ACTIONS(3451), - [anon_sym_PLUS_PLUS] = ACTIONS(3451), - [anon_sym_sizeof] = ACTIONS(3449), - [anon_sym___alignof__] = ACTIONS(3449), - [anon_sym___alignof] = ACTIONS(3449), - [anon_sym__alignof] = ACTIONS(3449), - [anon_sym_alignof] = ACTIONS(3449), - [anon_sym__Alignof] = ACTIONS(3449), - [anon_sym_offsetof] = ACTIONS(3449), - [anon_sym__Generic] = ACTIONS(3449), - [anon_sym_asm] = ACTIONS(3449), - [anon_sym___asm__] = ACTIONS(3449), - [sym_number_literal] = ACTIONS(3451), - [anon_sym_L_SQUOTE] = ACTIONS(3451), - [anon_sym_u_SQUOTE] = ACTIONS(3451), - [anon_sym_U_SQUOTE] = ACTIONS(3451), - [anon_sym_u8_SQUOTE] = ACTIONS(3451), - [anon_sym_SQUOTE] = ACTIONS(3451), - [anon_sym_L_DQUOTE] = ACTIONS(3451), - [anon_sym_u_DQUOTE] = ACTIONS(3451), - [anon_sym_U_DQUOTE] = ACTIONS(3451), - [anon_sym_u8_DQUOTE] = ACTIONS(3451), - [anon_sym_DQUOTE] = ACTIONS(3451), - [sym_true] = ACTIONS(3449), - [sym_false] = ACTIONS(3449), - [anon_sym_NULL] = ACTIONS(3449), - [anon_sym_nullptr] = ACTIONS(3449), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3449), - [anon_sym_decltype] = ACTIONS(3449), - [anon_sym_virtual] = ACTIONS(3449), - [anon_sym_alignas] = ACTIONS(3449), - [anon_sym_explicit] = ACTIONS(3449), - [anon_sym_typename] = ACTIONS(3449), - [anon_sym_template] = ACTIONS(3449), - [anon_sym_operator] = ACTIONS(3449), - [anon_sym_try] = ACTIONS(3449), - [anon_sym_delete] = ACTIONS(3449), - [anon_sym_throw] = ACTIONS(3449), - [anon_sym_namespace] = ACTIONS(3449), - [anon_sym_using] = ACTIONS(3449), - [anon_sym_static_assert] = ACTIONS(3449), - [anon_sym_concept] = ACTIONS(3449), - [anon_sym_co_return] = ACTIONS(3449), - [anon_sym_co_yield] = ACTIONS(3449), - [anon_sym_R_DQUOTE] = ACTIONS(3451), - [anon_sym_LR_DQUOTE] = ACTIONS(3451), - [anon_sym_uR_DQUOTE] = ACTIONS(3451), - [anon_sym_UR_DQUOTE] = ACTIONS(3451), - [anon_sym_u8R_DQUOTE] = ACTIONS(3451), - [anon_sym_co_await] = ACTIONS(3449), - [anon_sym_new] = ACTIONS(3449), - [anon_sym_requires] = ACTIONS(3449), - [sym_this] = ACTIONS(3449), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3451), - [sym_semgrep_named_ellipsis] = ACTIONS(3451), - }, - [547] = { - [sym_identifier] = ACTIONS(3257), - [aux_sym_preproc_include_token1] = ACTIONS(3257), - [aux_sym_preproc_def_token1] = ACTIONS(3257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3259), - [aux_sym_preproc_if_token1] = ACTIONS(3257), - [aux_sym_preproc_if_token2] = ACTIONS(3257), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3257), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3257), - [aux_sym_preproc_else_token1] = ACTIONS(3257), - [aux_sym_preproc_elif_token1] = ACTIONS(3257), - [sym_preproc_directive] = ACTIONS(3257), - [anon_sym_LPAREN2] = ACTIONS(3259), - [anon_sym_BANG] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3257), - [anon_sym_PLUS] = ACTIONS(3257), - [anon_sym_STAR] = ACTIONS(3259), - [anon_sym_AMP_AMP] = ACTIONS(3259), - [anon_sym_AMP] = ACTIONS(3257), - [anon_sym_SEMI] = ACTIONS(3259), - [anon_sym___extension__] = ACTIONS(3257), - [anon_sym_typedef] = ACTIONS(3257), - [anon_sym_extern] = ACTIONS(3257), - [anon_sym___attribute__] = ACTIONS(3257), - [anon_sym_COLON_COLON] = ACTIONS(3259), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3259), - [anon_sym___declspec] = ACTIONS(3257), - [anon_sym___based] = ACTIONS(3257), - [anon_sym___cdecl] = ACTIONS(3257), - [anon_sym___clrcall] = ACTIONS(3257), - [anon_sym___stdcall] = ACTIONS(3257), - [anon_sym___fastcall] = ACTIONS(3257), - [anon_sym___thiscall] = ACTIONS(3257), - [anon_sym___vectorcall] = ACTIONS(3257), - [anon_sym_LBRACE] = ACTIONS(3259), - [anon_sym_signed] = ACTIONS(3257), - [anon_sym_unsigned] = ACTIONS(3257), - [anon_sym_long] = ACTIONS(3257), - [anon_sym_short] = ACTIONS(3257), - [anon_sym_LBRACK] = ACTIONS(3257), - [anon_sym_static] = ACTIONS(3257), - [anon_sym_register] = ACTIONS(3257), - [anon_sym_inline] = ACTIONS(3257), - [anon_sym___inline] = ACTIONS(3257), - [anon_sym___inline__] = ACTIONS(3257), - [anon_sym___forceinline] = ACTIONS(3257), - [anon_sym_thread_local] = ACTIONS(3257), - [anon_sym___thread] = ACTIONS(3257), - [anon_sym_const] = ACTIONS(3257), - [anon_sym_constexpr] = ACTIONS(3257), - [anon_sym_volatile] = ACTIONS(3257), - [anon_sym_restrict] = ACTIONS(3257), - [anon_sym___restrict__] = ACTIONS(3257), - [anon_sym__Atomic] = ACTIONS(3257), - [anon_sym__Noreturn] = ACTIONS(3257), - [anon_sym_noreturn] = ACTIONS(3257), - [anon_sym_mutable] = ACTIONS(3257), - [anon_sym_constinit] = ACTIONS(3257), - [anon_sym_consteval] = ACTIONS(3257), - [sym_primitive_type] = ACTIONS(3257), - [anon_sym_enum] = ACTIONS(3257), - [anon_sym_class] = ACTIONS(3257), - [anon_sym_struct] = ACTIONS(3257), - [anon_sym_union] = ACTIONS(3257), - [anon_sym_if] = ACTIONS(3257), - [anon_sym_switch] = ACTIONS(3257), - [anon_sym_case] = ACTIONS(3257), - [anon_sym_default] = ACTIONS(3257), - [anon_sym_while] = ACTIONS(3257), - [anon_sym_do] = ACTIONS(3257), - [anon_sym_for] = ACTIONS(3257), - [anon_sym_return] = ACTIONS(3257), - [anon_sym_break] = ACTIONS(3257), - [anon_sym_continue] = ACTIONS(3257), - [anon_sym_goto] = ACTIONS(3257), - [anon_sym___try] = ACTIONS(3257), - [anon_sym___leave] = ACTIONS(3257), - [anon_sym_not] = ACTIONS(3257), - [anon_sym_compl] = ACTIONS(3257), - [anon_sym_DASH_DASH] = ACTIONS(3259), - [anon_sym_PLUS_PLUS] = ACTIONS(3259), - [anon_sym_sizeof] = ACTIONS(3257), - [anon_sym___alignof__] = ACTIONS(3257), - [anon_sym___alignof] = ACTIONS(3257), - [anon_sym__alignof] = ACTIONS(3257), - [anon_sym_alignof] = ACTIONS(3257), - [anon_sym__Alignof] = ACTIONS(3257), - [anon_sym_offsetof] = ACTIONS(3257), - [anon_sym__Generic] = ACTIONS(3257), - [anon_sym_asm] = ACTIONS(3257), - [anon_sym___asm__] = ACTIONS(3257), - [sym_number_literal] = ACTIONS(3259), - [anon_sym_L_SQUOTE] = ACTIONS(3259), - [anon_sym_u_SQUOTE] = ACTIONS(3259), - [anon_sym_U_SQUOTE] = ACTIONS(3259), - [anon_sym_u8_SQUOTE] = ACTIONS(3259), - [anon_sym_SQUOTE] = ACTIONS(3259), - [anon_sym_L_DQUOTE] = ACTIONS(3259), - [anon_sym_u_DQUOTE] = ACTIONS(3259), - [anon_sym_U_DQUOTE] = ACTIONS(3259), - [anon_sym_u8_DQUOTE] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(3259), - [sym_true] = ACTIONS(3257), - [sym_false] = ACTIONS(3257), - [anon_sym_NULL] = ACTIONS(3257), - [anon_sym_nullptr] = ACTIONS(3257), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3257), - [anon_sym_decltype] = ACTIONS(3257), - [anon_sym_virtual] = ACTIONS(3257), - [anon_sym_alignas] = ACTIONS(3257), - [anon_sym_explicit] = ACTIONS(3257), - [anon_sym_typename] = ACTIONS(3257), - [anon_sym_template] = ACTIONS(3257), - [anon_sym_operator] = ACTIONS(3257), - [anon_sym_try] = ACTIONS(3257), - [anon_sym_delete] = ACTIONS(3257), - [anon_sym_throw] = ACTIONS(3257), - [anon_sym_namespace] = ACTIONS(3257), - [anon_sym_using] = ACTIONS(3257), - [anon_sym_static_assert] = ACTIONS(3257), - [anon_sym_concept] = ACTIONS(3257), - [anon_sym_co_return] = ACTIONS(3257), - [anon_sym_co_yield] = ACTIONS(3257), - [anon_sym_R_DQUOTE] = ACTIONS(3259), - [anon_sym_LR_DQUOTE] = ACTIONS(3259), - [anon_sym_uR_DQUOTE] = ACTIONS(3259), - [anon_sym_UR_DQUOTE] = ACTIONS(3259), - [anon_sym_u8R_DQUOTE] = ACTIONS(3259), - [anon_sym_co_await] = ACTIONS(3257), - [anon_sym_new] = ACTIONS(3257), - [anon_sym_requires] = ACTIONS(3257), - [sym_this] = ACTIONS(3257), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3259), - [sym_semgrep_named_ellipsis] = ACTIONS(3259), - }, - [548] = { - [sym_identifier] = ACTIONS(3366), - [aux_sym_preproc_include_token1] = ACTIONS(3366), - [aux_sym_preproc_def_token1] = ACTIONS(3366), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3368), - [aux_sym_preproc_if_token1] = ACTIONS(3366), - [aux_sym_preproc_if_token2] = ACTIONS(3366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3366), - [aux_sym_preproc_else_token1] = ACTIONS(3366), - [aux_sym_preproc_elif_token1] = ACTIONS(3366), - [sym_preproc_directive] = ACTIONS(3366), - [anon_sym_LPAREN2] = ACTIONS(3368), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(3368), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_PLUS] = ACTIONS(3366), - [anon_sym_STAR] = ACTIONS(3368), - [anon_sym_AMP_AMP] = ACTIONS(3368), - [anon_sym_AMP] = ACTIONS(3366), - [anon_sym_SEMI] = ACTIONS(3368), - [anon_sym___extension__] = ACTIONS(3366), - [anon_sym_typedef] = ACTIONS(3366), - [anon_sym_extern] = ACTIONS(3366), - [anon_sym___attribute__] = ACTIONS(3366), - [anon_sym_COLON_COLON] = ACTIONS(3368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3368), - [anon_sym___declspec] = ACTIONS(3366), - [anon_sym___based] = ACTIONS(3366), - [anon_sym___cdecl] = ACTIONS(3366), - [anon_sym___clrcall] = ACTIONS(3366), - [anon_sym___stdcall] = ACTIONS(3366), - [anon_sym___fastcall] = ACTIONS(3366), - [anon_sym___thiscall] = ACTIONS(3366), - [anon_sym___vectorcall] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3368), - [anon_sym_signed] = ACTIONS(3366), - [anon_sym_unsigned] = ACTIONS(3366), - [anon_sym_long] = ACTIONS(3366), - [anon_sym_short] = ACTIONS(3366), - [anon_sym_LBRACK] = ACTIONS(3366), - [anon_sym_static] = ACTIONS(3366), - [anon_sym_register] = ACTIONS(3366), - [anon_sym_inline] = ACTIONS(3366), - [anon_sym___inline] = ACTIONS(3366), - [anon_sym___inline__] = ACTIONS(3366), - [anon_sym___forceinline] = ACTIONS(3366), - [anon_sym_thread_local] = ACTIONS(3366), - [anon_sym___thread] = ACTIONS(3366), - [anon_sym_const] = ACTIONS(3366), - [anon_sym_constexpr] = ACTIONS(3366), - [anon_sym_volatile] = ACTIONS(3366), - [anon_sym_restrict] = ACTIONS(3366), - [anon_sym___restrict__] = ACTIONS(3366), - [anon_sym__Atomic] = ACTIONS(3366), - [anon_sym__Noreturn] = ACTIONS(3366), - [anon_sym_noreturn] = ACTIONS(3366), - [anon_sym_mutable] = ACTIONS(3366), - [anon_sym_constinit] = ACTIONS(3366), - [anon_sym_consteval] = ACTIONS(3366), - [sym_primitive_type] = ACTIONS(3366), - [anon_sym_enum] = ACTIONS(3366), - [anon_sym_class] = ACTIONS(3366), - [anon_sym_struct] = ACTIONS(3366), - [anon_sym_union] = ACTIONS(3366), - [anon_sym_if] = ACTIONS(3366), - [anon_sym_switch] = ACTIONS(3366), - [anon_sym_case] = ACTIONS(3366), - [anon_sym_default] = ACTIONS(3366), - [anon_sym_while] = ACTIONS(3366), - [anon_sym_do] = ACTIONS(3366), - [anon_sym_for] = ACTIONS(3366), - [anon_sym_return] = ACTIONS(3366), - [anon_sym_break] = ACTIONS(3366), - [anon_sym_continue] = ACTIONS(3366), - [anon_sym_goto] = ACTIONS(3366), - [anon_sym___try] = ACTIONS(3366), - [anon_sym___leave] = ACTIONS(3366), - [anon_sym_not] = ACTIONS(3366), - [anon_sym_compl] = ACTIONS(3366), - [anon_sym_DASH_DASH] = ACTIONS(3368), - [anon_sym_PLUS_PLUS] = ACTIONS(3368), - [anon_sym_sizeof] = ACTIONS(3366), - [anon_sym___alignof__] = ACTIONS(3366), - [anon_sym___alignof] = ACTIONS(3366), - [anon_sym__alignof] = ACTIONS(3366), - [anon_sym_alignof] = ACTIONS(3366), - [anon_sym__Alignof] = ACTIONS(3366), - [anon_sym_offsetof] = ACTIONS(3366), - [anon_sym__Generic] = ACTIONS(3366), - [anon_sym_asm] = ACTIONS(3366), - [anon_sym___asm__] = ACTIONS(3366), - [sym_number_literal] = ACTIONS(3368), - [anon_sym_L_SQUOTE] = ACTIONS(3368), - [anon_sym_u_SQUOTE] = ACTIONS(3368), - [anon_sym_U_SQUOTE] = ACTIONS(3368), - [anon_sym_u8_SQUOTE] = ACTIONS(3368), - [anon_sym_SQUOTE] = ACTIONS(3368), - [anon_sym_L_DQUOTE] = ACTIONS(3368), - [anon_sym_u_DQUOTE] = ACTIONS(3368), - [anon_sym_U_DQUOTE] = ACTIONS(3368), - [anon_sym_u8_DQUOTE] = ACTIONS(3368), - [anon_sym_DQUOTE] = ACTIONS(3368), - [sym_true] = ACTIONS(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3366), - [anon_sym_nullptr] = ACTIONS(3366), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3366), - [anon_sym_decltype] = ACTIONS(3366), - [anon_sym_virtual] = ACTIONS(3366), - [anon_sym_alignas] = ACTIONS(3366), - [anon_sym_explicit] = ACTIONS(3366), - [anon_sym_typename] = ACTIONS(3366), - [anon_sym_template] = ACTIONS(3366), - [anon_sym_operator] = ACTIONS(3366), - [anon_sym_try] = ACTIONS(3366), - [anon_sym_delete] = ACTIONS(3366), - [anon_sym_throw] = ACTIONS(3366), - [anon_sym_namespace] = ACTIONS(3366), - [anon_sym_using] = ACTIONS(3366), - [anon_sym_static_assert] = ACTIONS(3366), - [anon_sym_concept] = ACTIONS(3366), - [anon_sym_co_return] = ACTIONS(3366), - [anon_sym_co_yield] = ACTIONS(3366), - [anon_sym_R_DQUOTE] = ACTIONS(3368), - [anon_sym_LR_DQUOTE] = ACTIONS(3368), - [anon_sym_uR_DQUOTE] = ACTIONS(3368), - [anon_sym_UR_DQUOTE] = ACTIONS(3368), - [anon_sym_u8R_DQUOTE] = ACTIONS(3368), - [anon_sym_co_await] = ACTIONS(3366), - [anon_sym_new] = ACTIONS(3366), - [anon_sym_requires] = ACTIONS(3366), - [sym_this] = ACTIONS(3366), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3368), - [sym_semgrep_named_ellipsis] = ACTIONS(3368), - }, - [549] = { - [sym_identifier] = ACTIONS(3610), - [aux_sym_preproc_include_token1] = ACTIONS(3610), - [aux_sym_preproc_def_token1] = ACTIONS(3610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3612), - [aux_sym_preproc_if_token1] = ACTIONS(3610), - [aux_sym_preproc_if_token2] = ACTIONS(3610), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3610), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3610), - [aux_sym_preproc_else_token1] = ACTIONS(3610), - [aux_sym_preproc_elif_token1] = ACTIONS(3610), - [sym_preproc_directive] = ACTIONS(3610), - [anon_sym_LPAREN2] = ACTIONS(3612), - [anon_sym_BANG] = ACTIONS(3612), - [anon_sym_TILDE] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3610), - [anon_sym_STAR] = ACTIONS(3612), - [anon_sym_AMP_AMP] = ACTIONS(3612), - [anon_sym_AMP] = ACTIONS(3610), - [anon_sym_SEMI] = ACTIONS(3612), - [anon_sym___extension__] = ACTIONS(3610), - [anon_sym_typedef] = ACTIONS(3610), - [anon_sym_extern] = ACTIONS(3610), - [anon_sym___attribute__] = ACTIONS(3610), - [anon_sym_COLON_COLON] = ACTIONS(3612), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3612), - [anon_sym___declspec] = ACTIONS(3610), - [anon_sym___based] = ACTIONS(3610), - [anon_sym___cdecl] = ACTIONS(3610), - [anon_sym___clrcall] = ACTIONS(3610), - [anon_sym___stdcall] = ACTIONS(3610), - [anon_sym___fastcall] = ACTIONS(3610), - [anon_sym___thiscall] = ACTIONS(3610), - [anon_sym___vectorcall] = ACTIONS(3610), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym_signed] = ACTIONS(3610), - [anon_sym_unsigned] = ACTIONS(3610), - [anon_sym_long] = ACTIONS(3610), - [anon_sym_short] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3610), - [anon_sym_static] = ACTIONS(3610), - [anon_sym_register] = ACTIONS(3610), - [anon_sym_inline] = ACTIONS(3610), - [anon_sym___inline] = ACTIONS(3610), - [anon_sym___inline__] = ACTIONS(3610), - [anon_sym___forceinline] = ACTIONS(3610), - [anon_sym_thread_local] = ACTIONS(3610), - [anon_sym___thread] = ACTIONS(3610), - [anon_sym_const] = ACTIONS(3610), - [anon_sym_constexpr] = ACTIONS(3610), - [anon_sym_volatile] = ACTIONS(3610), - [anon_sym_restrict] = ACTIONS(3610), - [anon_sym___restrict__] = ACTIONS(3610), - [anon_sym__Atomic] = ACTIONS(3610), - [anon_sym__Noreturn] = ACTIONS(3610), - [anon_sym_noreturn] = ACTIONS(3610), - [anon_sym_mutable] = ACTIONS(3610), - [anon_sym_constinit] = ACTIONS(3610), - [anon_sym_consteval] = ACTIONS(3610), - [sym_primitive_type] = ACTIONS(3610), - [anon_sym_enum] = ACTIONS(3610), - [anon_sym_class] = ACTIONS(3610), - [anon_sym_struct] = ACTIONS(3610), - [anon_sym_union] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(3610), - [anon_sym_switch] = ACTIONS(3610), - [anon_sym_case] = ACTIONS(3610), - [anon_sym_default] = ACTIONS(3610), - [anon_sym_while] = ACTIONS(3610), - [anon_sym_do] = ACTIONS(3610), - [anon_sym_for] = ACTIONS(3610), - [anon_sym_return] = ACTIONS(3610), - [anon_sym_break] = ACTIONS(3610), - [anon_sym_continue] = ACTIONS(3610), - [anon_sym_goto] = ACTIONS(3610), - [anon_sym___try] = ACTIONS(3610), - [anon_sym___leave] = ACTIONS(3610), - [anon_sym_not] = ACTIONS(3610), - [anon_sym_compl] = ACTIONS(3610), - [anon_sym_DASH_DASH] = ACTIONS(3612), - [anon_sym_PLUS_PLUS] = ACTIONS(3612), - [anon_sym_sizeof] = ACTIONS(3610), - [anon_sym___alignof__] = ACTIONS(3610), - [anon_sym___alignof] = ACTIONS(3610), - [anon_sym__alignof] = ACTIONS(3610), - [anon_sym_alignof] = ACTIONS(3610), - [anon_sym__Alignof] = ACTIONS(3610), - [anon_sym_offsetof] = ACTIONS(3610), - [anon_sym__Generic] = ACTIONS(3610), - [anon_sym_asm] = ACTIONS(3610), - [anon_sym___asm__] = ACTIONS(3610), - [sym_number_literal] = ACTIONS(3612), - [anon_sym_L_SQUOTE] = ACTIONS(3612), - [anon_sym_u_SQUOTE] = ACTIONS(3612), - [anon_sym_U_SQUOTE] = ACTIONS(3612), - [anon_sym_u8_SQUOTE] = ACTIONS(3612), - [anon_sym_SQUOTE] = ACTIONS(3612), - [anon_sym_L_DQUOTE] = ACTIONS(3612), - [anon_sym_u_DQUOTE] = ACTIONS(3612), - [anon_sym_U_DQUOTE] = ACTIONS(3612), - [anon_sym_u8_DQUOTE] = ACTIONS(3612), - [anon_sym_DQUOTE] = ACTIONS(3612), - [sym_true] = ACTIONS(3610), - [sym_false] = ACTIONS(3610), - [anon_sym_NULL] = ACTIONS(3610), - [anon_sym_nullptr] = ACTIONS(3610), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3610), - [anon_sym_decltype] = ACTIONS(3610), - [anon_sym_virtual] = ACTIONS(3610), - [anon_sym_alignas] = ACTIONS(3610), - [anon_sym_explicit] = ACTIONS(3610), - [anon_sym_typename] = ACTIONS(3610), - [anon_sym_template] = ACTIONS(3610), - [anon_sym_operator] = ACTIONS(3610), - [anon_sym_try] = ACTIONS(3610), - [anon_sym_delete] = ACTIONS(3610), - [anon_sym_throw] = ACTIONS(3610), - [anon_sym_namespace] = ACTIONS(3610), - [anon_sym_using] = ACTIONS(3610), - [anon_sym_static_assert] = ACTIONS(3610), - [anon_sym_concept] = ACTIONS(3610), - [anon_sym_co_return] = ACTIONS(3610), - [anon_sym_co_yield] = ACTIONS(3610), - [anon_sym_R_DQUOTE] = ACTIONS(3612), - [anon_sym_LR_DQUOTE] = ACTIONS(3612), - [anon_sym_uR_DQUOTE] = ACTIONS(3612), - [anon_sym_UR_DQUOTE] = ACTIONS(3612), - [anon_sym_u8R_DQUOTE] = ACTIONS(3612), - [anon_sym_co_await] = ACTIONS(3610), - [anon_sym_new] = ACTIONS(3610), - [anon_sym_requires] = ACTIONS(3610), - [sym_this] = ACTIONS(3610), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3612), - [sym_semgrep_named_ellipsis] = ACTIONS(3612), - }, - [550] = { - [sym_identifier] = ACTIONS(3101), - [aux_sym_preproc_include_token1] = ACTIONS(3101), - [aux_sym_preproc_def_token1] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3103), - [aux_sym_preproc_if_token1] = ACTIONS(3101), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3101), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3101), - [sym_preproc_directive] = ACTIONS(3101), - [anon_sym_LPAREN2] = ACTIONS(3103), - [anon_sym_BANG] = ACTIONS(3103), - [anon_sym_TILDE] = ACTIONS(3103), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_AMP_AMP] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym___extension__] = ACTIONS(3101), - [anon_sym_typedef] = ACTIONS(3101), - [anon_sym_extern] = ACTIONS(3101), - [anon_sym___attribute__] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(3103), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3103), - [anon_sym___declspec] = ACTIONS(3101), - [anon_sym___based] = ACTIONS(3101), - [anon_sym___cdecl] = ACTIONS(3101), - [anon_sym___clrcall] = ACTIONS(3101), - [anon_sym___stdcall] = ACTIONS(3101), - [anon_sym___fastcall] = ACTIONS(3101), - [anon_sym___thiscall] = ACTIONS(3101), - [anon_sym___vectorcall] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3103), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_signed] = ACTIONS(3101), - [anon_sym_unsigned] = ACTIONS(3101), - [anon_sym_long] = ACTIONS(3101), - [anon_sym_short] = ACTIONS(3101), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_static] = ACTIONS(3101), - [anon_sym_register] = ACTIONS(3101), - [anon_sym_inline] = ACTIONS(3101), - [anon_sym___inline] = ACTIONS(3101), - [anon_sym___inline__] = ACTIONS(3101), - [anon_sym___forceinline] = ACTIONS(3101), - [anon_sym_thread_local] = ACTIONS(3101), - [anon_sym___thread] = ACTIONS(3101), - [anon_sym_const] = ACTIONS(3101), - [anon_sym_constexpr] = ACTIONS(3101), - [anon_sym_volatile] = ACTIONS(3101), - [anon_sym_restrict] = ACTIONS(3101), - [anon_sym___restrict__] = ACTIONS(3101), - [anon_sym__Atomic] = ACTIONS(3101), - [anon_sym__Noreturn] = ACTIONS(3101), - [anon_sym_noreturn] = ACTIONS(3101), - [anon_sym_mutable] = ACTIONS(3101), - [anon_sym_constinit] = ACTIONS(3101), - [anon_sym_consteval] = ACTIONS(3101), - [sym_primitive_type] = ACTIONS(3101), - [anon_sym_enum] = ACTIONS(3101), - [anon_sym_class] = ACTIONS(3101), - [anon_sym_struct] = ACTIONS(3101), - [anon_sym_union] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_else] = ACTIONS(3101), - [anon_sym_switch] = ACTIONS(3101), - [anon_sym_case] = ACTIONS(3101), - [anon_sym_default] = ACTIONS(3101), - [anon_sym_while] = ACTIONS(3101), - [anon_sym_do] = ACTIONS(3101), - [anon_sym_for] = ACTIONS(3101), - [anon_sym_return] = ACTIONS(3101), - [anon_sym_break] = ACTIONS(3101), - [anon_sym_continue] = ACTIONS(3101), - [anon_sym_goto] = ACTIONS(3101), - [anon_sym___try] = ACTIONS(3101), - [anon_sym___leave] = ACTIONS(3101), - [anon_sym_not] = ACTIONS(3101), - [anon_sym_compl] = ACTIONS(3101), - [anon_sym_DASH_DASH] = ACTIONS(3103), - [anon_sym_PLUS_PLUS] = ACTIONS(3103), - [anon_sym_sizeof] = ACTIONS(3101), - [anon_sym___alignof__] = ACTIONS(3101), - [anon_sym___alignof] = ACTIONS(3101), - [anon_sym__alignof] = ACTIONS(3101), - [anon_sym_alignof] = ACTIONS(3101), - [anon_sym__Alignof] = ACTIONS(3101), - [anon_sym_offsetof] = ACTIONS(3101), - [anon_sym__Generic] = ACTIONS(3101), - [anon_sym_asm] = ACTIONS(3101), - [anon_sym___asm__] = ACTIONS(3101), - [sym_number_literal] = ACTIONS(3103), - [anon_sym_L_SQUOTE] = ACTIONS(3103), - [anon_sym_u_SQUOTE] = ACTIONS(3103), - [anon_sym_U_SQUOTE] = ACTIONS(3103), - [anon_sym_u8_SQUOTE] = ACTIONS(3103), - [anon_sym_SQUOTE] = ACTIONS(3103), - [anon_sym_L_DQUOTE] = ACTIONS(3103), - [anon_sym_u_DQUOTE] = ACTIONS(3103), - [anon_sym_U_DQUOTE] = ACTIONS(3103), - [anon_sym_u8_DQUOTE] = ACTIONS(3103), - [anon_sym_DQUOTE] = ACTIONS(3103), - [sym_true] = ACTIONS(3101), - [sym_false] = ACTIONS(3101), - [anon_sym_NULL] = ACTIONS(3101), - [anon_sym_nullptr] = ACTIONS(3101), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3101), - [anon_sym_decltype] = ACTIONS(3101), - [anon_sym_virtual] = ACTIONS(3101), - [anon_sym_alignas] = ACTIONS(3101), - [anon_sym_explicit] = ACTIONS(3101), - [anon_sym_typename] = ACTIONS(3101), - [anon_sym_template] = ACTIONS(3101), - [anon_sym_operator] = ACTIONS(3101), - [anon_sym_try] = ACTIONS(3101), - [anon_sym_delete] = ACTIONS(3101), - [anon_sym_throw] = ACTIONS(3101), - [anon_sym_namespace] = ACTIONS(3101), - [anon_sym_using] = ACTIONS(3101), - [anon_sym_static_assert] = ACTIONS(3101), - [anon_sym_concept] = ACTIONS(3101), - [anon_sym_co_return] = ACTIONS(3101), - [anon_sym_co_yield] = ACTIONS(3101), - [anon_sym_catch] = ACTIONS(3101), - [anon_sym_R_DQUOTE] = ACTIONS(3103), - [anon_sym_LR_DQUOTE] = ACTIONS(3103), - [anon_sym_uR_DQUOTE] = ACTIONS(3103), - [anon_sym_UR_DQUOTE] = ACTIONS(3103), - [anon_sym_u8R_DQUOTE] = ACTIONS(3103), - [anon_sym_co_await] = ACTIONS(3101), - [anon_sym_new] = ACTIONS(3101), - [anon_sym_requires] = ACTIONS(3101), - [sym_this] = ACTIONS(3101), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3103), - [sym_semgrep_named_ellipsis] = ACTIONS(3103), - }, - [551] = { - [sym_identifier] = ACTIONS(3372), - [aux_sym_preproc_include_token1] = ACTIONS(3372), - [aux_sym_preproc_def_token1] = ACTIONS(3372), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3374), - [aux_sym_preproc_if_token1] = ACTIONS(3372), - [aux_sym_preproc_if_token2] = ACTIONS(3372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3372), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3372), - [aux_sym_preproc_else_token1] = ACTIONS(3372), - [aux_sym_preproc_elif_token1] = ACTIONS(3372), - [sym_preproc_directive] = ACTIONS(3372), - [anon_sym_LPAREN2] = ACTIONS(3374), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(3374), - [anon_sym_DASH] = ACTIONS(3372), - [anon_sym_PLUS] = ACTIONS(3372), - [anon_sym_STAR] = ACTIONS(3374), - [anon_sym_AMP_AMP] = ACTIONS(3374), - [anon_sym_AMP] = ACTIONS(3372), - [anon_sym_SEMI] = ACTIONS(3374), - [anon_sym___extension__] = ACTIONS(3372), - [anon_sym_typedef] = ACTIONS(3372), - [anon_sym_extern] = ACTIONS(3372), - [anon_sym___attribute__] = ACTIONS(3372), - [anon_sym_COLON_COLON] = ACTIONS(3374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3374), - [anon_sym___declspec] = ACTIONS(3372), - [anon_sym___based] = ACTIONS(3372), - [anon_sym___cdecl] = ACTIONS(3372), - [anon_sym___clrcall] = ACTIONS(3372), - [anon_sym___stdcall] = ACTIONS(3372), - [anon_sym___fastcall] = ACTIONS(3372), - [anon_sym___thiscall] = ACTIONS(3372), - [anon_sym___vectorcall] = ACTIONS(3372), - [anon_sym_LBRACE] = ACTIONS(3374), - [anon_sym_signed] = ACTIONS(3372), - [anon_sym_unsigned] = ACTIONS(3372), - [anon_sym_long] = ACTIONS(3372), - [anon_sym_short] = ACTIONS(3372), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_static] = ACTIONS(3372), - [anon_sym_register] = ACTIONS(3372), - [anon_sym_inline] = ACTIONS(3372), - [anon_sym___inline] = ACTIONS(3372), - [anon_sym___inline__] = ACTIONS(3372), - [anon_sym___forceinline] = ACTIONS(3372), - [anon_sym_thread_local] = ACTIONS(3372), - [anon_sym___thread] = ACTIONS(3372), - [anon_sym_const] = ACTIONS(3372), - [anon_sym_constexpr] = ACTIONS(3372), - [anon_sym_volatile] = ACTIONS(3372), - [anon_sym_restrict] = ACTIONS(3372), - [anon_sym___restrict__] = ACTIONS(3372), - [anon_sym__Atomic] = ACTIONS(3372), - [anon_sym__Noreturn] = ACTIONS(3372), - [anon_sym_noreturn] = ACTIONS(3372), - [anon_sym_mutable] = ACTIONS(3372), - [anon_sym_constinit] = ACTIONS(3372), - [anon_sym_consteval] = ACTIONS(3372), - [sym_primitive_type] = ACTIONS(3372), - [anon_sym_enum] = ACTIONS(3372), - [anon_sym_class] = ACTIONS(3372), - [anon_sym_struct] = ACTIONS(3372), - [anon_sym_union] = ACTIONS(3372), - [anon_sym_if] = ACTIONS(3372), - [anon_sym_switch] = ACTIONS(3372), - [anon_sym_case] = ACTIONS(3372), - [anon_sym_default] = ACTIONS(3372), - [anon_sym_while] = ACTIONS(3372), - [anon_sym_do] = ACTIONS(3372), - [anon_sym_for] = ACTIONS(3372), - [anon_sym_return] = ACTIONS(3372), - [anon_sym_break] = ACTIONS(3372), - [anon_sym_continue] = ACTIONS(3372), - [anon_sym_goto] = ACTIONS(3372), - [anon_sym___try] = ACTIONS(3372), - [anon_sym___leave] = ACTIONS(3372), - [anon_sym_not] = ACTIONS(3372), - [anon_sym_compl] = ACTIONS(3372), - [anon_sym_DASH_DASH] = ACTIONS(3374), - [anon_sym_PLUS_PLUS] = ACTIONS(3374), - [anon_sym_sizeof] = ACTIONS(3372), - [anon_sym___alignof__] = ACTIONS(3372), - [anon_sym___alignof] = ACTIONS(3372), - [anon_sym__alignof] = ACTIONS(3372), - [anon_sym_alignof] = ACTIONS(3372), - [anon_sym__Alignof] = ACTIONS(3372), - [anon_sym_offsetof] = ACTIONS(3372), - [anon_sym__Generic] = ACTIONS(3372), - [anon_sym_asm] = ACTIONS(3372), - [anon_sym___asm__] = ACTIONS(3372), - [sym_number_literal] = ACTIONS(3374), - [anon_sym_L_SQUOTE] = ACTIONS(3374), - [anon_sym_u_SQUOTE] = ACTIONS(3374), - [anon_sym_U_SQUOTE] = ACTIONS(3374), - [anon_sym_u8_SQUOTE] = ACTIONS(3374), - [anon_sym_SQUOTE] = ACTIONS(3374), - [anon_sym_L_DQUOTE] = ACTIONS(3374), - [anon_sym_u_DQUOTE] = ACTIONS(3374), - [anon_sym_U_DQUOTE] = ACTIONS(3374), - [anon_sym_u8_DQUOTE] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(3374), - [sym_true] = ACTIONS(3372), - [sym_false] = ACTIONS(3372), - [anon_sym_NULL] = ACTIONS(3372), - [anon_sym_nullptr] = ACTIONS(3372), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3372), - [anon_sym_decltype] = ACTIONS(3372), - [anon_sym_virtual] = ACTIONS(3372), - [anon_sym_alignas] = ACTIONS(3372), - [anon_sym_explicit] = ACTIONS(3372), - [anon_sym_typename] = ACTIONS(3372), - [anon_sym_template] = ACTIONS(3372), - [anon_sym_operator] = ACTIONS(3372), - [anon_sym_try] = ACTIONS(3372), - [anon_sym_delete] = ACTIONS(3372), - [anon_sym_throw] = ACTIONS(3372), - [anon_sym_namespace] = ACTIONS(3372), - [anon_sym_using] = ACTIONS(3372), - [anon_sym_static_assert] = ACTIONS(3372), - [anon_sym_concept] = ACTIONS(3372), - [anon_sym_co_return] = ACTIONS(3372), - [anon_sym_co_yield] = ACTIONS(3372), - [anon_sym_R_DQUOTE] = ACTIONS(3374), - [anon_sym_LR_DQUOTE] = ACTIONS(3374), - [anon_sym_uR_DQUOTE] = ACTIONS(3374), - [anon_sym_UR_DQUOTE] = ACTIONS(3374), - [anon_sym_u8R_DQUOTE] = ACTIONS(3374), - [anon_sym_co_await] = ACTIONS(3372), - [anon_sym_new] = ACTIONS(3372), - [anon_sym_requires] = ACTIONS(3372), - [sym_this] = ACTIONS(3372), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3374), - [sym_semgrep_named_ellipsis] = ACTIONS(3374), - }, - [552] = { - [sym_identifier] = ACTIONS(3511), - [aux_sym_preproc_include_token1] = ACTIONS(3511), - [aux_sym_preproc_def_token1] = ACTIONS(3511), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3513), - [aux_sym_preproc_if_token1] = ACTIONS(3511), - [aux_sym_preproc_if_token2] = ACTIONS(3511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3511), - [aux_sym_preproc_else_token1] = ACTIONS(3511), - [aux_sym_preproc_elif_token1] = ACTIONS(3511), - [sym_preproc_directive] = ACTIONS(3511), - [anon_sym_LPAREN2] = ACTIONS(3513), - [anon_sym_BANG] = ACTIONS(3513), - [anon_sym_TILDE] = ACTIONS(3513), - [anon_sym_DASH] = ACTIONS(3511), - [anon_sym_PLUS] = ACTIONS(3511), - [anon_sym_STAR] = ACTIONS(3513), - [anon_sym_AMP_AMP] = ACTIONS(3513), - [anon_sym_AMP] = ACTIONS(3511), - [anon_sym_SEMI] = ACTIONS(3513), - [anon_sym___extension__] = ACTIONS(3511), - [anon_sym_typedef] = ACTIONS(3511), - [anon_sym_extern] = ACTIONS(3511), - [anon_sym___attribute__] = ACTIONS(3511), - [anon_sym_COLON_COLON] = ACTIONS(3513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3513), - [anon_sym___declspec] = ACTIONS(3511), - [anon_sym___based] = ACTIONS(3511), - [anon_sym___cdecl] = ACTIONS(3511), - [anon_sym___clrcall] = ACTIONS(3511), - [anon_sym___stdcall] = ACTIONS(3511), - [anon_sym___fastcall] = ACTIONS(3511), - [anon_sym___thiscall] = ACTIONS(3511), - [anon_sym___vectorcall] = ACTIONS(3511), - [anon_sym_LBRACE] = ACTIONS(3513), - [anon_sym_signed] = ACTIONS(3511), - [anon_sym_unsigned] = ACTIONS(3511), - [anon_sym_long] = ACTIONS(3511), - [anon_sym_short] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3511), - [anon_sym_static] = ACTIONS(3511), - [anon_sym_register] = ACTIONS(3511), - [anon_sym_inline] = ACTIONS(3511), - [anon_sym___inline] = ACTIONS(3511), - [anon_sym___inline__] = ACTIONS(3511), - [anon_sym___forceinline] = ACTIONS(3511), - [anon_sym_thread_local] = ACTIONS(3511), - [anon_sym___thread] = ACTIONS(3511), - [anon_sym_const] = ACTIONS(3511), - [anon_sym_constexpr] = ACTIONS(3511), - [anon_sym_volatile] = ACTIONS(3511), - [anon_sym_restrict] = ACTIONS(3511), - [anon_sym___restrict__] = ACTIONS(3511), - [anon_sym__Atomic] = ACTIONS(3511), - [anon_sym__Noreturn] = ACTIONS(3511), - [anon_sym_noreturn] = ACTIONS(3511), - [anon_sym_mutable] = ACTIONS(3511), - [anon_sym_constinit] = ACTIONS(3511), - [anon_sym_consteval] = ACTIONS(3511), - [sym_primitive_type] = ACTIONS(3511), - [anon_sym_enum] = ACTIONS(3511), - [anon_sym_class] = ACTIONS(3511), - [anon_sym_struct] = ACTIONS(3511), - [anon_sym_union] = ACTIONS(3511), - [anon_sym_if] = ACTIONS(3511), - [anon_sym_switch] = ACTIONS(3511), - [anon_sym_case] = ACTIONS(3511), - [anon_sym_default] = ACTIONS(3511), - [anon_sym_while] = ACTIONS(3511), - [anon_sym_do] = ACTIONS(3511), - [anon_sym_for] = ACTIONS(3511), - [anon_sym_return] = ACTIONS(3511), - [anon_sym_break] = ACTIONS(3511), - [anon_sym_continue] = ACTIONS(3511), - [anon_sym_goto] = ACTIONS(3511), - [anon_sym___try] = ACTIONS(3511), - [anon_sym___leave] = ACTIONS(3511), - [anon_sym_not] = ACTIONS(3511), - [anon_sym_compl] = ACTIONS(3511), - [anon_sym_DASH_DASH] = ACTIONS(3513), - [anon_sym_PLUS_PLUS] = ACTIONS(3513), - [anon_sym_sizeof] = ACTIONS(3511), - [anon_sym___alignof__] = ACTIONS(3511), - [anon_sym___alignof] = ACTIONS(3511), - [anon_sym__alignof] = ACTIONS(3511), - [anon_sym_alignof] = ACTIONS(3511), - [anon_sym__Alignof] = ACTIONS(3511), - [anon_sym_offsetof] = ACTIONS(3511), - [anon_sym__Generic] = ACTIONS(3511), - [anon_sym_asm] = ACTIONS(3511), - [anon_sym___asm__] = ACTIONS(3511), - [sym_number_literal] = ACTIONS(3513), - [anon_sym_L_SQUOTE] = ACTIONS(3513), - [anon_sym_u_SQUOTE] = ACTIONS(3513), - [anon_sym_U_SQUOTE] = ACTIONS(3513), - [anon_sym_u8_SQUOTE] = ACTIONS(3513), - [anon_sym_SQUOTE] = ACTIONS(3513), - [anon_sym_L_DQUOTE] = ACTIONS(3513), - [anon_sym_u_DQUOTE] = ACTIONS(3513), - [anon_sym_U_DQUOTE] = ACTIONS(3513), - [anon_sym_u8_DQUOTE] = ACTIONS(3513), - [anon_sym_DQUOTE] = ACTIONS(3513), - [sym_true] = ACTIONS(3511), - [sym_false] = ACTIONS(3511), - [anon_sym_NULL] = ACTIONS(3511), - [anon_sym_nullptr] = ACTIONS(3511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3511), - [anon_sym_decltype] = ACTIONS(3511), - [anon_sym_virtual] = ACTIONS(3511), - [anon_sym_alignas] = ACTIONS(3511), - [anon_sym_explicit] = ACTIONS(3511), - [anon_sym_typename] = ACTIONS(3511), - [anon_sym_template] = ACTIONS(3511), - [anon_sym_operator] = ACTIONS(3511), - [anon_sym_try] = ACTIONS(3511), - [anon_sym_delete] = ACTIONS(3511), - [anon_sym_throw] = ACTIONS(3511), - [anon_sym_namespace] = ACTIONS(3511), - [anon_sym_using] = ACTIONS(3511), - [anon_sym_static_assert] = ACTIONS(3511), - [anon_sym_concept] = ACTIONS(3511), - [anon_sym_co_return] = ACTIONS(3511), - [anon_sym_co_yield] = ACTIONS(3511), - [anon_sym_R_DQUOTE] = ACTIONS(3513), - [anon_sym_LR_DQUOTE] = ACTIONS(3513), - [anon_sym_uR_DQUOTE] = ACTIONS(3513), - [anon_sym_UR_DQUOTE] = ACTIONS(3513), - [anon_sym_u8R_DQUOTE] = ACTIONS(3513), - [anon_sym_co_await] = ACTIONS(3511), - [anon_sym_new] = ACTIONS(3511), - [anon_sym_requires] = ACTIONS(3511), - [sym_this] = ACTIONS(3511), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3513), - [sym_semgrep_named_ellipsis] = ACTIONS(3513), - }, - [553] = { - [sym_identifier] = ACTIONS(3433), - [aux_sym_preproc_include_token1] = ACTIONS(3433), - [aux_sym_preproc_def_token1] = ACTIONS(3433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3435), - [aux_sym_preproc_if_token1] = ACTIONS(3433), - [aux_sym_preproc_if_token2] = ACTIONS(3433), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3433), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3433), - [aux_sym_preproc_else_token1] = ACTIONS(3433), - [aux_sym_preproc_elif_token1] = ACTIONS(3433), - [sym_preproc_directive] = ACTIONS(3433), - [anon_sym_LPAREN2] = ACTIONS(3435), - [anon_sym_BANG] = ACTIONS(3435), - [anon_sym_TILDE] = ACTIONS(3435), - [anon_sym_DASH] = ACTIONS(3433), - [anon_sym_PLUS] = ACTIONS(3433), - [anon_sym_STAR] = ACTIONS(3435), - [anon_sym_AMP_AMP] = ACTIONS(3435), - [anon_sym_AMP] = ACTIONS(3433), - [anon_sym_SEMI] = ACTIONS(3435), - [anon_sym___extension__] = ACTIONS(3433), - [anon_sym_typedef] = ACTIONS(3433), - [anon_sym_extern] = ACTIONS(3433), - [anon_sym___attribute__] = ACTIONS(3433), - [anon_sym_COLON_COLON] = ACTIONS(3435), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3435), - [anon_sym___declspec] = ACTIONS(3433), - [anon_sym___based] = ACTIONS(3433), - [anon_sym___cdecl] = ACTIONS(3433), - [anon_sym___clrcall] = ACTIONS(3433), - [anon_sym___stdcall] = ACTIONS(3433), - [anon_sym___fastcall] = ACTIONS(3433), - [anon_sym___thiscall] = ACTIONS(3433), - [anon_sym___vectorcall] = ACTIONS(3433), - [anon_sym_LBRACE] = ACTIONS(3435), - [anon_sym_signed] = ACTIONS(3433), - [anon_sym_unsigned] = ACTIONS(3433), - [anon_sym_long] = ACTIONS(3433), - [anon_sym_short] = ACTIONS(3433), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_static] = ACTIONS(3433), - [anon_sym_register] = ACTIONS(3433), - [anon_sym_inline] = ACTIONS(3433), - [anon_sym___inline] = ACTIONS(3433), - [anon_sym___inline__] = ACTIONS(3433), - [anon_sym___forceinline] = ACTIONS(3433), - [anon_sym_thread_local] = ACTIONS(3433), - [anon_sym___thread] = ACTIONS(3433), - [anon_sym_const] = ACTIONS(3433), - [anon_sym_constexpr] = ACTIONS(3433), - [anon_sym_volatile] = ACTIONS(3433), - [anon_sym_restrict] = ACTIONS(3433), - [anon_sym___restrict__] = ACTIONS(3433), - [anon_sym__Atomic] = ACTIONS(3433), - [anon_sym__Noreturn] = ACTIONS(3433), - [anon_sym_noreturn] = ACTIONS(3433), - [anon_sym_mutable] = ACTIONS(3433), - [anon_sym_constinit] = ACTIONS(3433), - [anon_sym_consteval] = ACTIONS(3433), - [sym_primitive_type] = ACTIONS(3433), - [anon_sym_enum] = ACTIONS(3433), - [anon_sym_class] = ACTIONS(3433), - [anon_sym_struct] = ACTIONS(3433), - [anon_sym_union] = ACTIONS(3433), - [anon_sym_if] = ACTIONS(3433), - [anon_sym_switch] = ACTIONS(3433), - [anon_sym_case] = ACTIONS(3433), - [anon_sym_default] = ACTIONS(3433), - [anon_sym_while] = ACTIONS(3433), - [anon_sym_do] = ACTIONS(3433), - [anon_sym_for] = ACTIONS(3433), - [anon_sym_return] = ACTIONS(3433), - [anon_sym_break] = ACTIONS(3433), - [anon_sym_continue] = ACTIONS(3433), - [anon_sym_goto] = ACTIONS(3433), - [anon_sym___try] = ACTIONS(3433), - [anon_sym___leave] = ACTIONS(3433), - [anon_sym_not] = ACTIONS(3433), - [anon_sym_compl] = ACTIONS(3433), - [anon_sym_DASH_DASH] = ACTIONS(3435), - [anon_sym_PLUS_PLUS] = ACTIONS(3435), - [anon_sym_sizeof] = ACTIONS(3433), - [anon_sym___alignof__] = ACTIONS(3433), - [anon_sym___alignof] = ACTIONS(3433), - [anon_sym__alignof] = ACTIONS(3433), - [anon_sym_alignof] = ACTIONS(3433), - [anon_sym__Alignof] = ACTIONS(3433), - [anon_sym_offsetof] = ACTIONS(3433), - [anon_sym__Generic] = ACTIONS(3433), - [anon_sym_asm] = ACTIONS(3433), - [anon_sym___asm__] = ACTIONS(3433), - [sym_number_literal] = ACTIONS(3435), - [anon_sym_L_SQUOTE] = ACTIONS(3435), - [anon_sym_u_SQUOTE] = ACTIONS(3435), - [anon_sym_U_SQUOTE] = ACTIONS(3435), - [anon_sym_u8_SQUOTE] = ACTIONS(3435), - [anon_sym_SQUOTE] = ACTIONS(3435), - [anon_sym_L_DQUOTE] = ACTIONS(3435), - [anon_sym_u_DQUOTE] = ACTIONS(3435), - [anon_sym_U_DQUOTE] = ACTIONS(3435), - [anon_sym_u8_DQUOTE] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(3435), - [sym_true] = ACTIONS(3433), - [sym_false] = ACTIONS(3433), - [anon_sym_NULL] = ACTIONS(3433), - [anon_sym_nullptr] = ACTIONS(3433), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3433), - [anon_sym_decltype] = ACTIONS(3433), - [anon_sym_virtual] = ACTIONS(3433), - [anon_sym_alignas] = ACTIONS(3433), - [anon_sym_explicit] = ACTIONS(3433), - [anon_sym_typename] = ACTIONS(3433), - [anon_sym_template] = ACTIONS(3433), - [anon_sym_operator] = ACTIONS(3433), - [anon_sym_try] = ACTIONS(3433), - [anon_sym_delete] = ACTIONS(3433), - [anon_sym_throw] = ACTIONS(3433), - [anon_sym_namespace] = ACTIONS(3433), - [anon_sym_using] = ACTIONS(3433), - [anon_sym_static_assert] = ACTIONS(3433), - [anon_sym_concept] = ACTIONS(3433), - [anon_sym_co_return] = ACTIONS(3433), - [anon_sym_co_yield] = ACTIONS(3433), - [anon_sym_R_DQUOTE] = ACTIONS(3435), - [anon_sym_LR_DQUOTE] = ACTIONS(3435), - [anon_sym_uR_DQUOTE] = ACTIONS(3435), - [anon_sym_UR_DQUOTE] = ACTIONS(3435), - [anon_sym_u8R_DQUOTE] = ACTIONS(3435), - [anon_sym_co_await] = ACTIONS(3433), - [anon_sym_new] = ACTIONS(3433), - [anon_sym_requires] = ACTIONS(3433), - [sym_this] = ACTIONS(3433), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3435), - [sym_semgrep_named_ellipsis] = ACTIONS(3435), - }, - [554] = { - [sym_identifier] = ACTIONS(3376), - [aux_sym_preproc_include_token1] = ACTIONS(3376), - [aux_sym_preproc_def_token1] = ACTIONS(3376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3378), - [aux_sym_preproc_if_token1] = ACTIONS(3376), - [aux_sym_preproc_if_token2] = ACTIONS(3376), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3376), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3376), - [aux_sym_preproc_else_token1] = ACTIONS(3376), - [aux_sym_preproc_elif_token1] = ACTIONS(3376), - [sym_preproc_directive] = ACTIONS(3376), - [anon_sym_LPAREN2] = ACTIONS(3378), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(3378), - [anon_sym_DASH] = ACTIONS(3376), - [anon_sym_PLUS] = ACTIONS(3376), - [anon_sym_STAR] = ACTIONS(3378), - [anon_sym_AMP_AMP] = ACTIONS(3378), - [anon_sym_AMP] = ACTIONS(3376), - [anon_sym_SEMI] = ACTIONS(3378), - [anon_sym___extension__] = ACTIONS(3376), - [anon_sym_typedef] = ACTIONS(3376), - [anon_sym_extern] = ACTIONS(3376), - [anon_sym___attribute__] = ACTIONS(3376), - [anon_sym_COLON_COLON] = ACTIONS(3378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3378), - [anon_sym___declspec] = ACTIONS(3376), - [anon_sym___based] = ACTIONS(3376), - [anon_sym___cdecl] = ACTIONS(3376), - [anon_sym___clrcall] = ACTIONS(3376), - [anon_sym___stdcall] = ACTIONS(3376), - [anon_sym___fastcall] = ACTIONS(3376), - [anon_sym___thiscall] = ACTIONS(3376), - [anon_sym___vectorcall] = ACTIONS(3376), - [anon_sym_LBRACE] = ACTIONS(3378), - [anon_sym_signed] = ACTIONS(3376), - [anon_sym_unsigned] = ACTIONS(3376), - [anon_sym_long] = ACTIONS(3376), - [anon_sym_short] = ACTIONS(3376), - [anon_sym_LBRACK] = ACTIONS(3376), - [anon_sym_static] = ACTIONS(3376), - [anon_sym_register] = ACTIONS(3376), - [anon_sym_inline] = ACTIONS(3376), - [anon_sym___inline] = ACTIONS(3376), - [anon_sym___inline__] = ACTIONS(3376), - [anon_sym___forceinline] = ACTIONS(3376), - [anon_sym_thread_local] = ACTIONS(3376), - [anon_sym___thread] = ACTIONS(3376), - [anon_sym_const] = ACTIONS(3376), - [anon_sym_constexpr] = ACTIONS(3376), - [anon_sym_volatile] = ACTIONS(3376), - [anon_sym_restrict] = ACTIONS(3376), - [anon_sym___restrict__] = ACTIONS(3376), - [anon_sym__Atomic] = ACTIONS(3376), - [anon_sym__Noreturn] = ACTIONS(3376), - [anon_sym_noreturn] = ACTIONS(3376), - [anon_sym_mutable] = ACTIONS(3376), - [anon_sym_constinit] = ACTIONS(3376), - [anon_sym_consteval] = ACTIONS(3376), - [sym_primitive_type] = ACTIONS(3376), - [anon_sym_enum] = ACTIONS(3376), - [anon_sym_class] = ACTIONS(3376), - [anon_sym_struct] = ACTIONS(3376), - [anon_sym_union] = ACTIONS(3376), - [anon_sym_if] = ACTIONS(3376), - [anon_sym_switch] = ACTIONS(3376), - [anon_sym_case] = ACTIONS(3376), - [anon_sym_default] = ACTIONS(3376), - [anon_sym_while] = ACTIONS(3376), - [anon_sym_do] = ACTIONS(3376), - [anon_sym_for] = ACTIONS(3376), - [anon_sym_return] = ACTIONS(3376), - [anon_sym_break] = ACTIONS(3376), - [anon_sym_continue] = ACTIONS(3376), - [anon_sym_goto] = ACTIONS(3376), - [anon_sym___try] = ACTIONS(3376), - [anon_sym___leave] = ACTIONS(3376), - [anon_sym_not] = ACTIONS(3376), - [anon_sym_compl] = ACTIONS(3376), - [anon_sym_DASH_DASH] = ACTIONS(3378), - [anon_sym_PLUS_PLUS] = ACTIONS(3378), - [anon_sym_sizeof] = ACTIONS(3376), - [anon_sym___alignof__] = ACTIONS(3376), - [anon_sym___alignof] = ACTIONS(3376), - [anon_sym__alignof] = ACTIONS(3376), - [anon_sym_alignof] = ACTIONS(3376), - [anon_sym__Alignof] = ACTIONS(3376), - [anon_sym_offsetof] = ACTIONS(3376), - [anon_sym__Generic] = ACTIONS(3376), - [anon_sym_asm] = ACTIONS(3376), - [anon_sym___asm__] = ACTIONS(3376), - [sym_number_literal] = ACTIONS(3378), - [anon_sym_L_SQUOTE] = ACTIONS(3378), - [anon_sym_u_SQUOTE] = ACTIONS(3378), - [anon_sym_U_SQUOTE] = ACTIONS(3378), - [anon_sym_u8_SQUOTE] = ACTIONS(3378), - [anon_sym_SQUOTE] = ACTIONS(3378), - [anon_sym_L_DQUOTE] = ACTIONS(3378), - [anon_sym_u_DQUOTE] = ACTIONS(3378), - [anon_sym_U_DQUOTE] = ACTIONS(3378), - [anon_sym_u8_DQUOTE] = ACTIONS(3378), - [anon_sym_DQUOTE] = ACTIONS(3378), - [sym_true] = ACTIONS(3376), - [sym_false] = ACTIONS(3376), - [anon_sym_NULL] = ACTIONS(3376), - [anon_sym_nullptr] = ACTIONS(3376), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3376), - [anon_sym_decltype] = ACTIONS(3376), - [anon_sym_virtual] = ACTIONS(3376), - [anon_sym_alignas] = ACTIONS(3376), - [anon_sym_explicit] = ACTIONS(3376), - [anon_sym_typename] = ACTIONS(3376), - [anon_sym_template] = ACTIONS(3376), - [anon_sym_operator] = ACTIONS(3376), - [anon_sym_try] = ACTIONS(3376), - [anon_sym_delete] = ACTIONS(3376), - [anon_sym_throw] = ACTIONS(3376), - [anon_sym_namespace] = ACTIONS(3376), - [anon_sym_using] = ACTIONS(3376), - [anon_sym_static_assert] = ACTIONS(3376), - [anon_sym_concept] = ACTIONS(3376), - [anon_sym_co_return] = ACTIONS(3376), - [anon_sym_co_yield] = ACTIONS(3376), - [anon_sym_R_DQUOTE] = ACTIONS(3378), - [anon_sym_LR_DQUOTE] = ACTIONS(3378), - [anon_sym_uR_DQUOTE] = ACTIONS(3378), - [anon_sym_UR_DQUOTE] = ACTIONS(3378), - [anon_sym_u8R_DQUOTE] = ACTIONS(3378), - [anon_sym_co_await] = ACTIONS(3376), - [anon_sym_new] = ACTIONS(3376), - [anon_sym_requires] = ACTIONS(3376), - [sym_this] = ACTIONS(3376), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3378), - [sym_semgrep_named_ellipsis] = ACTIONS(3378), - }, - [555] = { - [sym_identifier] = ACTIONS(3400), - [aux_sym_preproc_include_token1] = ACTIONS(3400), - [aux_sym_preproc_def_token1] = ACTIONS(3400), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3402), - [aux_sym_preproc_if_token1] = ACTIONS(3400), - [aux_sym_preproc_if_token2] = ACTIONS(3400), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3400), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3400), - [aux_sym_preproc_else_token1] = ACTIONS(3400), - [aux_sym_preproc_elif_token1] = ACTIONS(3400), - [sym_preproc_directive] = ACTIONS(3400), - [anon_sym_LPAREN2] = ACTIONS(3402), - [anon_sym_BANG] = ACTIONS(3402), - [anon_sym_TILDE] = ACTIONS(3402), - [anon_sym_DASH] = ACTIONS(3400), - [anon_sym_PLUS] = ACTIONS(3400), - [anon_sym_STAR] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_AMP] = ACTIONS(3400), - [anon_sym_SEMI] = ACTIONS(3402), - [anon_sym___extension__] = ACTIONS(3400), - [anon_sym_typedef] = ACTIONS(3400), - [anon_sym_extern] = ACTIONS(3400), - [anon_sym___attribute__] = ACTIONS(3400), - [anon_sym_COLON_COLON] = ACTIONS(3402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3402), - [anon_sym___declspec] = ACTIONS(3400), - [anon_sym___based] = ACTIONS(3400), - [anon_sym___cdecl] = ACTIONS(3400), - [anon_sym___clrcall] = ACTIONS(3400), - [anon_sym___stdcall] = ACTIONS(3400), - [anon_sym___fastcall] = ACTIONS(3400), - [anon_sym___thiscall] = ACTIONS(3400), - [anon_sym___vectorcall] = ACTIONS(3400), - [anon_sym_LBRACE] = ACTIONS(3402), - [anon_sym_signed] = ACTIONS(3400), - [anon_sym_unsigned] = ACTIONS(3400), - [anon_sym_long] = ACTIONS(3400), - [anon_sym_short] = ACTIONS(3400), - [anon_sym_LBRACK] = ACTIONS(3400), - [anon_sym_static] = ACTIONS(3400), - [anon_sym_register] = ACTIONS(3400), - [anon_sym_inline] = ACTIONS(3400), - [anon_sym___inline] = ACTIONS(3400), - [anon_sym___inline__] = ACTIONS(3400), - [anon_sym___forceinline] = ACTIONS(3400), - [anon_sym_thread_local] = ACTIONS(3400), - [anon_sym___thread] = ACTIONS(3400), - [anon_sym_const] = ACTIONS(3400), - [anon_sym_constexpr] = ACTIONS(3400), - [anon_sym_volatile] = ACTIONS(3400), - [anon_sym_restrict] = ACTIONS(3400), - [anon_sym___restrict__] = ACTIONS(3400), - [anon_sym__Atomic] = ACTIONS(3400), - [anon_sym__Noreturn] = ACTIONS(3400), - [anon_sym_noreturn] = ACTIONS(3400), - [anon_sym_mutable] = ACTIONS(3400), - [anon_sym_constinit] = ACTIONS(3400), - [anon_sym_consteval] = ACTIONS(3400), - [sym_primitive_type] = ACTIONS(3400), - [anon_sym_enum] = ACTIONS(3400), - [anon_sym_class] = ACTIONS(3400), - [anon_sym_struct] = ACTIONS(3400), - [anon_sym_union] = ACTIONS(3400), - [anon_sym_if] = ACTIONS(3400), - [anon_sym_switch] = ACTIONS(3400), - [anon_sym_case] = ACTIONS(3400), - [anon_sym_default] = ACTIONS(3400), - [anon_sym_while] = ACTIONS(3400), - [anon_sym_do] = ACTIONS(3400), - [anon_sym_for] = ACTIONS(3400), - [anon_sym_return] = ACTIONS(3400), - [anon_sym_break] = ACTIONS(3400), - [anon_sym_continue] = ACTIONS(3400), - [anon_sym_goto] = ACTIONS(3400), - [anon_sym___try] = ACTIONS(3400), - [anon_sym___leave] = ACTIONS(3400), - [anon_sym_not] = ACTIONS(3400), - [anon_sym_compl] = ACTIONS(3400), - [anon_sym_DASH_DASH] = ACTIONS(3402), - [anon_sym_PLUS_PLUS] = ACTIONS(3402), - [anon_sym_sizeof] = ACTIONS(3400), - [anon_sym___alignof__] = ACTIONS(3400), - [anon_sym___alignof] = ACTIONS(3400), - [anon_sym__alignof] = ACTIONS(3400), - [anon_sym_alignof] = ACTIONS(3400), - [anon_sym__Alignof] = ACTIONS(3400), - [anon_sym_offsetof] = ACTIONS(3400), - [anon_sym__Generic] = ACTIONS(3400), - [anon_sym_asm] = ACTIONS(3400), - [anon_sym___asm__] = ACTIONS(3400), - [sym_number_literal] = ACTIONS(3402), - [anon_sym_L_SQUOTE] = ACTIONS(3402), - [anon_sym_u_SQUOTE] = ACTIONS(3402), - [anon_sym_U_SQUOTE] = ACTIONS(3402), - [anon_sym_u8_SQUOTE] = ACTIONS(3402), - [anon_sym_SQUOTE] = ACTIONS(3402), - [anon_sym_L_DQUOTE] = ACTIONS(3402), - [anon_sym_u_DQUOTE] = ACTIONS(3402), - [anon_sym_U_DQUOTE] = ACTIONS(3402), - [anon_sym_u8_DQUOTE] = ACTIONS(3402), - [anon_sym_DQUOTE] = ACTIONS(3402), - [sym_true] = ACTIONS(3400), - [sym_false] = ACTIONS(3400), - [anon_sym_NULL] = ACTIONS(3400), - [anon_sym_nullptr] = ACTIONS(3400), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3400), - [anon_sym_decltype] = ACTIONS(3400), - [anon_sym_virtual] = ACTIONS(3400), - [anon_sym_alignas] = ACTIONS(3400), - [anon_sym_explicit] = ACTIONS(3400), - [anon_sym_typename] = ACTIONS(3400), - [anon_sym_template] = ACTIONS(3400), - [anon_sym_operator] = ACTIONS(3400), - [anon_sym_try] = ACTIONS(3400), - [anon_sym_delete] = ACTIONS(3400), - [anon_sym_throw] = ACTIONS(3400), - [anon_sym_namespace] = ACTIONS(3400), - [anon_sym_using] = ACTIONS(3400), - [anon_sym_static_assert] = ACTIONS(3400), - [anon_sym_concept] = ACTIONS(3400), - [anon_sym_co_return] = ACTIONS(3400), - [anon_sym_co_yield] = ACTIONS(3400), - [anon_sym_R_DQUOTE] = ACTIONS(3402), - [anon_sym_LR_DQUOTE] = ACTIONS(3402), - [anon_sym_uR_DQUOTE] = ACTIONS(3402), - [anon_sym_UR_DQUOTE] = ACTIONS(3402), - [anon_sym_u8R_DQUOTE] = ACTIONS(3402), - [anon_sym_co_await] = ACTIONS(3400), - [anon_sym_new] = ACTIONS(3400), - [anon_sym_requires] = ACTIONS(3400), - [sym_this] = ACTIONS(3400), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3402), - [sym_semgrep_named_ellipsis] = ACTIONS(3402), - }, - [556] = { - [sym_identifier] = ACTIONS(3404), - [aux_sym_preproc_include_token1] = ACTIONS(3404), - [aux_sym_preproc_def_token1] = ACTIONS(3404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3406), - [aux_sym_preproc_if_token1] = ACTIONS(3404), - [aux_sym_preproc_if_token2] = ACTIONS(3404), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3404), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3404), - [aux_sym_preproc_else_token1] = ACTIONS(3404), - [aux_sym_preproc_elif_token1] = ACTIONS(3404), - [sym_preproc_directive] = ACTIONS(3404), - [anon_sym_LPAREN2] = ACTIONS(3406), - [anon_sym_BANG] = ACTIONS(3406), - [anon_sym_TILDE] = ACTIONS(3406), - [anon_sym_DASH] = ACTIONS(3404), - [anon_sym_PLUS] = ACTIONS(3404), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_AMP_AMP] = ACTIONS(3406), - [anon_sym_AMP] = ACTIONS(3404), - [anon_sym_SEMI] = ACTIONS(3406), - [anon_sym___extension__] = ACTIONS(3404), - [anon_sym_typedef] = ACTIONS(3404), - [anon_sym_extern] = ACTIONS(3404), - [anon_sym___attribute__] = ACTIONS(3404), - [anon_sym_COLON_COLON] = ACTIONS(3406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3406), - [anon_sym___declspec] = ACTIONS(3404), - [anon_sym___based] = ACTIONS(3404), - [anon_sym___cdecl] = ACTIONS(3404), - [anon_sym___clrcall] = ACTIONS(3404), - [anon_sym___stdcall] = ACTIONS(3404), - [anon_sym___fastcall] = ACTIONS(3404), - [anon_sym___thiscall] = ACTIONS(3404), - [anon_sym___vectorcall] = ACTIONS(3404), - [anon_sym_LBRACE] = ACTIONS(3406), - [anon_sym_signed] = ACTIONS(3404), - [anon_sym_unsigned] = ACTIONS(3404), - [anon_sym_long] = ACTIONS(3404), - [anon_sym_short] = ACTIONS(3404), - [anon_sym_LBRACK] = ACTIONS(3404), - [anon_sym_static] = ACTIONS(3404), - [anon_sym_register] = ACTIONS(3404), - [anon_sym_inline] = ACTIONS(3404), - [anon_sym___inline] = ACTIONS(3404), - [anon_sym___inline__] = ACTIONS(3404), - [anon_sym___forceinline] = ACTIONS(3404), - [anon_sym_thread_local] = ACTIONS(3404), - [anon_sym___thread] = ACTIONS(3404), - [anon_sym_const] = ACTIONS(3404), - [anon_sym_constexpr] = ACTIONS(3404), - [anon_sym_volatile] = ACTIONS(3404), - [anon_sym_restrict] = ACTIONS(3404), - [anon_sym___restrict__] = ACTIONS(3404), - [anon_sym__Atomic] = ACTIONS(3404), - [anon_sym__Noreturn] = ACTIONS(3404), - [anon_sym_noreturn] = ACTIONS(3404), - [anon_sym_mutable] = ACTIONS(3404), - [anon_sym_constinit] = ACTIONS(3404), - [anon_sym_consteval] = ACTIONS(3404), - [sym_primitive_type] = ACTIONS(3404), - [anon_sym_enum] = ACTIONS(3404), - [anon_sym_class] = ACTIONS(3404), - [anon_sym_struct] = ACTIONS(3404), - [anon_sym_union] = ACTIONS(3404), - [anon_sym_if] = ACTIONS(3404), - [anon_sym_switch] = ACTIONS(3404), - [anon_sym_case] = ACTIONS(3404), - [anon_sym_default] = ACTIONS(3404), - [anon_sym_while] = ACTIONS(3404), - [anon_sym_do] = ACTIONS(3404), - [anon_sym_for] = ACTIONS(3404), - [anon_sym_return] = ACTIONS(3404), - [anon_sym_break] = ACTIONS(3404), - [anon_sym_continue] = ACTIONS(3404), - [anon_sym_goto] = ACTIONS(3404), - [anon_sym___try] = ACTIONS(3404), - [anon_sym___leave] = ACTIONS(3404), - [anon_sym_not] = ACTIONS(3404), - [anon_sym_compl] = ACTIONS(3404), - [anon_sym_DASH_DASH] = ACTIONS(3406), - [anon_sym_PLUS_PLUS] = ACTIONS(3406), - [anon_sym_sizeof] = ACTIONS(3404), - [anon_sym___alignof__] = ACTIONS(3404), - [anon_sym___alignof] = ACTIONS(3404), - [anon_sym__alignof] = ACTIONS(3404), - [anon_sym_alignof] = ACTIONS(3404), - [anon_sym__Alignof] = ACTIONS(3404), - [anon_sym_offsetof] = ACTIONS(3404), - [anon_sym__Generic] = ACTIONS(3404), - [anon_sym_asm] = ACTIONS(3404), - [anon_sym___asm__] = ACTIONS(3404), - [sym_number_literal] = ACTIONS(3406), - [anon_sym_L_SQUOTE] = ACTIONS(3406), - [anon_sym_u_SQUOTE] = ACTIONS(3406), - [anon_sym_U_SQUOTE] = ACTIONS(3406), - [anon_sym_u8_SQUOTE] = ACTIONS(3406), - [anon_sym_SQUOTE] = ACTIONS(3406), - [anon_sym_L_DQUOTE] = ACTIONS(3406), - [anon_sym_u_DQUOTE] = ACTIONS(3406), - [anon_sym_U_DQUOTE] = ACTIONS(3406), - [anon_sym_u8_DQUOTE] = ACTIONS(3406), - [anon_sym_DQUOTE] = ACTIONS(3406), - [sym_true] = ACTIONS(3404), - [sym_false] = ACTIONS(3404), - [anon_sym_NULL] = ACTIONS(3404), - [anon_sym_nullptr] = ACTIONS(3404), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3404), - [anon_sym_decltype] = ACTIONS(3404), - [anon_sym_virtual] = ACTIONS(3404), - [anon_sym_alignas] = ACTIONS(3404), - [anon_sym_explicit] = ACTIONS(3404), - [anon_sym_typename] = ACTIONS(3404), - [anon_sym_template] = ACTIONS(3404), - [anon_sym_operator] = ACTIONS(3404), - [anon_sym_try] = ACTIONS(3404), - [anon_sym_delete] = ACTIONS(3404), - [anon_sym_throw] = ACTIONS(3404), - [anon_sym_namespace] = ACTIONS(3404), - [anon_sym_using] = ACTIONS(3404), - [anon_sym_static_assert] = ACTIONS(3404), - [anon_sym_concept] = ACTIONS(3404), - [anon_sym_co_return] = ACTIONS(3404), - [anon_sym_co_yield] = ACTIONS(3404), - [anon_sym_R_DQUOTE] = ACTIONS(3406), - [anon_sym_LR_DQUOTE] = ACTIONS(3406), - [anon_sym_uR_DQUOTE] = ACTIONS(3406), - [anon_sym_UR_DQUOTE] = ACTIONS(3406), - [anon_sym_u8R_DQUOTE] = ACTIONS(3406), - [anon_sym_co_await] = ACTIONS(3404), - [anon_sym_new] = ACTIONS(3404), - [anon_sym_requires] = ACTIONS(3404), - [sym_this] = ACTIONS(3404), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3406), - [sym_semgrep_named_ellipsis] = ACTIONS(3406), - }, - [557] = { - [sym_identifier] = ACTIONS(3457), - [aux_sym_preproc_include_token1] = ACTIONS(3457), - [aux_sym_preproc_def_token1] = ACTIONS(3457), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3459), - [aux_sym_preproc_if_token1] = ACTIONS(3457), - [aux_sym_preproc_if_token2] = ACTIONS(3457), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3457), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3457), - [aux_sym_preproc_else_token1] = ACTIONS(3457), - [aux_sym_preproc_elif_token1] = ACTIONS(3457), - [sym_preproc_directive] = ACTIONS(3457), - [anon_sym_LPAREN2] = ACTIONS(3459), - [anon_sym_BANG] = ACTIONS(3459), - [anon_sym_TILDE] = ACTIONS(3459), - [anon_sym_DASH] = ACTIONS(3457), - [anon_sym_PLUS] = ACTIONS(3457), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_AMP] = ACTIONS(3457), - [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym___extension__] = ACTIONS(3457), - [anon_sym_typedef] = ACTIONS(3457), - [anon_sym_extern] = ACTIONS(3457), - [anon_sym___attribute__] = ACTIONS(3457), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3459), - [anon_sym___declspec] = ACTIONS(3457), - [anon_sym___based] = ACTIONS(3457), - [anon_sym___cdecl] = ACTIONS(3457), - [anon_sym___clrcall] = ACTIONS(3457), - [anon_sym___stdcall] = ACTIONS(3457), - [anon_sym___fastcall] = ACTIONS(3457), - [anon_sym___thiscall] = ACTIONS(3457), - [anon_sym___vectorcall] = ACTIONS(3457), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_signed] = ACTIONS(3457), - [anon_sym_unsigned] = ACTIONS(3457), - [anon_sym_long] = ACTIONS(3457), - [anon_sym_short] = ACTIONS(3457), - [anon_sym_LBRACK] = ACTIONS(3457), - [anon_sym_static] = ACTIONS(3457), - [anon_sym_register] = ACTIONS(3457), - [anon_sym_inline] = ACTIONS(3457), - [anon_sym___inline] = ACTIONS(3457), - [anon_sym___inline__] = ACTIONS(3457), - [anon_sym___forceinline] = ACTIONS(3457), - [anon_sym_thread_local] = ACTIONS(3457), - [anon_sym___thread] = ACTIONS(3457), - [anon_sym_const] = ACTIONS(3457), - [anon_sym_constexpr] = ACTIONS(3457), - [anon_sym_volatile] = ACTIONS(3457), - [anon_sym_restrict] = ACTIONS(3457), - [anon_sym___restrict__] = ACTIONS(3457), - [anon_sym__Atomic] = ACTIONS(3457), - [anon_sym__Noreturn] = ACTIONS(3457), - [anon_sym_noreturn] = ACTIONS(3457), - [anon_sym_mutable] = ACTIONS(3457), - [anon_sym_constinit] = ACTIONS(3457), - [anon_sym_consteval] = ACTIONS(3457), - [sym_primitive_type] = ACTIONS(3457), - [anon_sym_enum] = ACTIONS(3457), - [anon_sym_class] = ACTIONS(3457), - [anon_sym_struct] = ACTIONS(3457), - [anon_sym_union] = ACTIONS(3457), - [anon_sym_if] = ACTIONS(3457), - [anon_sym_switch] = ACTIONS(3457), - [anon_sym_case] = ACTIONS(3457), - [anon_sym_default] = ACTIONS(3457), - [anon_sym_while] = ACTIONS(3457), - [anon_sym_do] = ACTIONS(3457), - [anon_sym_for] = ACTIONS(3457), - [anon_sym_return] = ACTIONS(3457), - [anon_sym_break] = ACTIONS(3457), - [anon_sym_continue] = ACTIONS(3457), - [anon_sym_goto] = ACTIONS(3457), - [anon_sym___try] = ACTIONS(3457), - [anon_sym___leave] = ACTIONS(3457), - [anon_sym_not] = ACTIONS(3457), - [anon_sym_compl] = ACTIONS(3457), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_sizeof] = ACTIONS(3457), - [anon_sym___alignof__] = ACTIONS(3457), - [anon_sym___alignof] = ACTIONS(3457), - [anon_sym__alignof] = ACTIONS(3457), - [anon_sym_alignof] = ACTIONS(3457), - [anon_sym__Alignof] = ACTIONS(3457), - [anon_sym_offsetof] = ACTIONS(3457), - [anon_sym__Generic] = ACTIONS(3457), - [anon_sym_asm] = ACTIONS(3457), - [anon_sym___asm__] = ACTIONS(3457), - [sym_number_literal] = ACTIONS(3459), - [anon_sym_L_SQUOTE] = ACTIONS(3459), - [anon_sym_u_SQUOTE] = ACTIONS(3459), - [anon_sym_U_SQUOTE] = ACTIONS(3459), - [anon_sym_u8_SQUOTE] = ACTIONS(3459), - [anon_sym_SQUOTE] = ACTIONS(3459), - [anon_sym_L_DQUOTE] = ACTIONS(3459), - [anon_sym_u_DQUOTE] = ACTIONS(3459), - [anon_sym_U_DQUOTE] = ACTIONS(3459), - [anon_sym_u8_DQUOTE] = ACTIONS(3459), - [anon_sym_DQUOTE] = ACTIONS(3459), - [sym_true] = ACTIONS(3457), - [sym_false] = ACTIONS(3457), - [anon_sym_NULL] = ACTIONS(3457), - [anon_sym_nullptr] = ACTIONS(3457), + [sym_identifier] = ACTIONS(3384), + [aux_sym_preproc_include_token1] = ACTIONS(3384), + [aux_sym_preproc_def_token1] = ACTIONS(3384), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3386), + [aux_sym_preproc_if_token1] = ACTIONS(3384), + [aux_sym_preproc_if_token2] = ACTIONS(3384), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3384), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3384), + [aux_sym_preproc_else_token1] = ACTIONS(3384), + [aux_sym_preproc_elif_token1] = ACTIONS(3384), + [sym_preproc_directive] = ACTIONS(3384), + [anon_sym_LPAREN2] = ACTIONS(3386), + [anon_sym_BANG] = ACTIONS(3386), + [anon_sym_TILDE] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3384), + [anon_sym_PLUS] = ACTIONS(3384), + [anon_sym_STAR] = ACTIONS(3386), + [anon_sym_AMP_AMP] = ACTIONS(3386), + [anon_sym_AMP] = ACTIONS(3384), + [anon_sym_SEMI] = ACTIONS(3386), + [anon_sym___extension__] = ACTIONS(3384), + [anon_sym_typedef] = ACTIONS(3384), + [anon_sym_extern] = ACTIONS(3384), + [anon_sym___attribute__] = ACTIONS(3384), + [anon_sym_COLON_COLON] = ACTIONS(3386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3386), + [anon_sym___declspec] = ACTIONS(3384), + [anon_sym___based] = ACTIONS(3384), + [anon_sym___cdecl] = ACTIONS(3384), + [anon_sym___clrcall] = ACTIONS(3384), + [anon_sym___stdcall] = ACTIONS(3384), + [anon_sym___fastcall] = ACTIONS(3384), + [anon_sym___thiscall] = ACTIONS(3384), + [anon_sym___vectorcall] = ACTIONS(3384), + [anon_sym_LBRACE] = ACTIONS(3386), + [anon_sym_signed] = ACTIONS(3384), + [anon_sym_unsigned] = ACTIONS(3384), + [anon_sym_long] = ACTIONS(3384), + [anon_sym_short] = ACTIONS(3384), + [anon_sym_LBRACK] = ACTIONS(3384), + [anon_sym_static] = ACTIONS(3384), + [anon_sym_register] = ACTIONS(3384), + [anon_sym_inline] = ACTIONS(3384), + [anon_sym___inline] = ACTIONS(3384), + [anon_sym___inline__] = ACTIONS(3384), + [anon_sym___forceinline] = ACTIONS(3384), + [anon_sym_thread_local] = ACTIONS(3384), + [anon_sym___thread] = ACTIONS(3384), + [anon_sym_const] = ACTIONS(3384), + [anon_sym_constexpr] = ACTIONS(3384), + [anon_sym_volatile] = ACTIONS(3384), + [anon_sym_restrict] = ACTIONS(3384), + [anon_sym___restrict__] = ACTIONS(3384), + [anon_sym__Atomic] = ACTIONS(3384), + [anon_sym__Noreturn] = ACTIONS(3384), + [anon_sym_noreturn] = ACTIONS(3384), + [anon_sym_mutable] = ACTIONS(3384), + [anon_sym_constinit] = ACTIONS(3384), + [anon_sym_consteval] = ACTIONS(3384), + [sym_primitive_type] = ACTIONS(3384), + [anon_sym_enum] = ACTIONS(3384), + [anon_sym_class] = ACTIONS(3384), + [anon_sym_struct] = ACTIONS(3384), + [anon_sym_union] = ACTIONS(3384), + [anon_sym_if] = ACTIONS(3384), + [anon_sym_switch] = ACTIONS(3384), + [anon_sym_case] = ACTIONS(3384), + [anon_sym_default] = ACTIONS(3384), + [anon_sym_while] = ACTIONS(3384), + [anon_sym_do] = ACTIONS(3384), + [anon_sym_for] = ACTIONS(3384), + [anon_sym_return] = ACTIONS(3384), + [anon_sym_break] = ACTIONS(3384), + [anon_sym_continue] = ACTIONS(3384), + [anon_sym_goto] = ACTIONS(3384), + [anon_sym___try] = ACTIONS(3384), + [anon_sym___leave] = ACTIONS(3384), + [anon_sym_not] = ACTIONS(3384), + [anon_sym_compl] = ACTIONS(3384), + [anon_sym_DASH_DASH] = ACTIONS(3386), + [anon_sym_PLUS_PLUS] = ACTIONS(3386), + [anon_sym_sizeof] = ACTIONS(3384), + [anon_sym___alignof__] = ACTIONS(3384), + [anon_sym___alignof] = ACTIONS(3384), + [anon_sym__alignof] = ACTIONS(3384), + [anon_sym_alignof] = ACTIONS(3384), + [anon_sym__Alignof] = ACTIONS(3384), + [anon_sym_offsetof] = ACTIONS(3384), + [anon_sym__Generic] = ACTIONS(3384), + [anon_sym_asm] = ACTIONS(3384), + [anon_sym___asm__] = ACTIONS(3384), + [sym_number_literal] = ACTIONS(3386), + [anon_sym_L_SQUOTE] = ACTIONS(3386), + [anon_sym_u_SQUOTE] = ACTIONS(3386), + [anon_sym_U_SQUOTE] = ACTIONS(3386), + [anon_sym_u8_SQUOTE] = ACTIONS(3386), + [anon_sym_SQUOTE] = ACTIONS(3386), + [anon_sym_L_DQUOTE] = ACTIONS(3386), + [anon_sym_u_DQUOTE] = ACTIONS(3386), + [anon_sym_U_DQUOTE] = ACTIONS(3386), + [anon_sym_u8_DQUOTE] = ACTIONS(3386), + [anon_sym_DQUOTE] = ACTIONS(3386), + [sym_true] = ACTIONS(3384), + [sym_false] = ACTIONS(3384), + [anon_sym_NULL] = ACTIONS(3384), + [anon_sym_nullptr] = ACTIONS(3384), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3457), - [anon_sym_decltype] = ACTIONS(3457), - [anon_sym_virtual] = ACTIONS(3457), - [anon_sym_alignas] = ACTIONS(3457), - [anon_sym_explicit] = ACTIONS(3457), - [anon_sym_typename] = ACTIONS(3457), - [anon_sym_template] = ACTIONS(3457), - [anon_sym_operator] = ACTIONS(3457), - [anon_sym_try] = ACTIONS(3457), - [anon_sym_delete] = ACTIONS(3457), - [anon_sym_throw] = ACTIONS(3457), - [anon_sym_namespace] = ACTIONS(3457), - [anon_sym_using] = ACTIONS(3457), - [anon_sym_static_assert] = ACTIONS(3457), - [anon_sym_concept] = ACTIONS(3457), - [anon_sym_co_return] = ACTIONS(3457), - [anon_sym_co_yield] = ACTIONS(3457), - [anon_sym_R_DQUOTE] = ACTIONS(3459), - [anon_sym_LR_DQUOTE] = ACTIONS(3459), - [anon_sym_uR_DQUOTE] = ACTIONS(3459), - [anon_sym_UR_DQUOTE] = ACTIONS(3459), - [anon_sym_u8R_DQUOTE] = ACTIONS(3459), - [anon_sym_co_await] = ACTIONS(3457), - [anon_sym_new] = ACTIONS(3457), - [anon_sym_requires] = ACTIONS(3457), - [sym_this] = ACTIONS(3457), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3459), - [sym_semgrep_named_ellipsis] = ACTIONS(3459), + [sym_auto] = ACTIONS(3384), + [anon_sym_decltype] = ACTIONS(3384), + [anon_sym_virtual] = ACTIONS(3384), + [anon_sym_alignas] = ACTIONS(3384), + [anon_sym_explicit] = ACTIONS(3384), + [anon_sym_typename] = ACTIONS(3384), + [anon_sym_template] = ACTIONS(3384), + [anon_sym_operator] = ACTIONS(3384), + [anon_sym_try] = ACTIONS(3384), + [anon_sym_delete] = ACTIONS(3384), + [anon_sym_throw] = ACTIONS(3384), + [anon_sym_namespace] = ACTIONS(3384), + [anon_sym_using] = ACTIONS(3384), + [anon_sym_static_assert] = ACTIONS(3384), + [anon_sym_concept] = ACTIONS(3384), + [anon_sym_co_return] = ACTIONS(3384), + [anon_sym_co_yield] = ACTIONS(3384), + [anon_sym_R_DQUOTE] = ACTIONS(3386), + [anon_sym_LR_DQUOTE] = ACTIONS(3386), + [anon_sym_uR_DQUOTE] = ACTIONS(3386), + [anon_sym_UR_DQUOTE] = ACTIONS(3386), + [anon_sym_u8R_DQUOTE] = ACTIONS(3386), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3384), + [anon_sym_requires] = ACTIONS(3384), + [sym_this] = ACTIONS(3384), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3386), + [sym_semgrep_named_ellipsis] = ACTIONS(3386), }, - [558] = { - [sym_identifier] = ACTIONS(3408), - [aux_sym_preproc_include_token1] = ACTIONS(3408), - [aux_sym_preproc_def_token1] = ACTIONS(3408), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3410), - [aux_sym_preproc_if_token1] = ACTIONS(3408), - [aux_sym_preproc_if_token2] = ACTIONS(3408), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3408), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3408), - [aux_sym_preproc_else_token1] = ACTIONS(3408), - [aux_sym_preproc_elif_token1] = ACTIONS(3408), - [sym_preproc_directive] = ACTIONS(3408), - [anon_sym_LPAREN2] = ACTIONS(3410), - [anon_sym_BANG] = ACTIONS(3410), - [anon_sym_TILDE] = ACTIONS(3410), - [anon_sym_DASH] = ACTIONS(3408), - [anon_sym_PLUS] = ACTIONS(3408), - [anon_sym_STAR] = ACTIONS(3410), - [anon_sym_AMP_AMP] = ACTIONS(3410), - [anon_sym_AMP] = ACTIONS(3408), - [anon_sym_SEMI] = ACTIONS(3410), - [anon_sym___extension__] = ACTIONS(3408), - [anon_sym_typedef] = ACTIONS(3408), - [anon_sym_extern] = ACTIONS(3408), - [anon_sym___attribute__] = ACTIONS(3408), - [anon_sym_COLON_COLON] = ACTIONS(3410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3410), - [anon_sym___declspec] = ACTIONS(3408), - [anon_sym___based] = ACTIONS(3408), - [anon_sym___cdecl] = ACTIONS(3408), - [anon_sym___clrcall] = ACTIONS(3408), - [anon_sym___stdcall] = ACTIONS(3408), - [anon_sym___fastcall] = ACTIONS(3408), - [anon_sym___thiscall] = ACTIONS(3408), - [anon_sym___vectorcall] = ACTIONS(3408), - [anon_sym_LBRACE] = ACTIONS(3410), - [anon_sym_signed] = ACTIONS(3408), - [anon_sym_unsigned] = ACTIONS(3408), - [anon_sym_long] = ACTIONS(3408), - [anon_sym_short] = ACTIONS(3408), - [anon_sym_LBRACK] = ACTIONS(3408), - [anon_sym_static] = ACTIONS(3408), - [anon_sym_register] = ACTIONS(3408), - [anon_sym_inline] = ACTIONS(3408), - [anon_sym___inline] = ACTIONS(3408), - [anon_sym___inline__] = ACTIONS(3408), - [anon_sym___forceinline] = ACTIONS(3408), - [anon_sym_thread_local] = ACTIONS(3408), - [anon_sym___thread] = ACTIONS(3408), - [anon_sym_const] = ACTIONS(3408), - [anon_sym_constexpr] = ACTIONS(3408), - [anon_sym_volatile] = ACTIONS(3408), - [anon_sym_restrict] = ACTIONS(3408), - [anon_sym___restrict__] = ACTIONS(3408), - [anon_sym__Atomic] = ACTIONS(3408), - [anon_sym__Noreturn] = ACTIONS(3408), - [anon_sym_noreturn] = ACTIONS(3408), - [anon_sym_mutable] = ACTIONS(3408), - [anon_sym_constinit] = ACTIONS(3408), - [anon_sym_consteval] = ACTIONS(3408), - [sym_primitive_type] = ACTIONS(3408), - [anon_sym_enum] = ACTIONS(3408), - [anon_sym_class] = ACTIONS(3408), - [anon_sym_struct] = ACTIONS(3408), - [anon_sym_union] = ACTIONS(3408), - [anon_sym_if] = ACTIONS(3408), - [anon_sym_switch] = ACTIONS(3408), - [anon_sym_case] = ACTIONS(3408), - [anon_sym_default] = ACTIONS(3408), - [anon_sym_while] = ACTIONS(3408), - [anon_sym_do] = ACTIONS(3408), - [anon_sym_for] = ACTIONS(3408), - [anon_sym_return] = ACTIONS(3408), - [anon_sym_break] = ACTIONS(3408), - [anon_sym_continue] = ACTIONS(3408), - [anon_sym_goto] = ACTIONS(3408), - [anon_sym___try] = ACTIONS(3408), - [anon_sym___leave] = ACTIONS(3408), - [anon_sym_not] = ACTIONS(3408), - [anon_sym_compl] = ACTIONS(3408), - [anon_sym_DASH_DASH] = ACTIONS(3410), - [anon_sym_PLUS_PLUS] = ACTIONS(3410), - [anon_sym_sizeof] = ACTIONS(3408), - [anon_sym___alignof__] = ACTIONS(3408), - [anon_sym___alignof] = ACTIONS(3408), - [anon_sym__alignof] = ACTIONS(3408), - [anon_sym_alignof] = ACTIONS(3408), - [anon_sym__Alignof] = ACTIONS(3408), - [anon_sym_offsetof] = ACTIONS(3408), - [anon_sym__Generic] = ACTIONS(3408), - [anon_sym_asm] = ACTIONS(3408), - [anon_sym___asm__] = ACTIONS(3408), - [sym_number_literal] = ACTIONS(3410), - [anon_sym_L_SQUOTE] = ACTIONS(3410), - [anon_sym_u_SQUOTE] = ACTIONS(3410), - [anon_sym_U_SQUOTE] = ACTIONS(3410), - [anon_sym_u8_SQUOTE] = ACTIONS(3410), - [anon_sym_SQUOTE] = ACTIONS(3410), - [anon_sym_L_DQUOTE] = ACTIONS(3410), - [anon_sym_u_DQUOTE] = ACTIONS(3410), - [anon_sym_U_DQUOTE] = ACTIONS(3410), - [anon_sym_u8_DQUOTE] = ACTIONS(3410), - [anon_sym_DQUOTE] = ACTIONS(3410), - [sym_true] = ACTIONS(3408), - [sym_false] = ACTIONS(3408), - [anon_sym_NULL] = ACTIONS(3408), - [anon_sym_nullptr] = ACTIONS(3408), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3408), - [anon_sym_decltype] = ACTIONS(3408), - [anon_sym_virtual] = ACTIONS(3408), - [anon_sym_alignas] = ACTIONS(3408), - [anon_sym_explicit] = ACTIONS(3408), - [anon_sym_typename] = ACTIONS(3408), - [anon_sym_template] = ACTIONS(3408), - [anon_sym_operator] = ACTIONS(3408), - [anon_sym_try] = ACTIONS(3408), - [anon_sym_delete] = ACTIONS(3408), - [anon_sym_throw] = ACTIONS(3408), - [anon_sym_namespace] = ACTIONS(3408), - [anon_sym_using] = ACTIONS(3408), - [anon_sym_static_assert] = ACTIONS(3408), - [anon_sym_concept] = ACTIONS(3408), - [anon_sym_co_return] = ACTIONS(3408), - [anon_sym_co_yield] = ACTIONS(3408), - [anon_sym_R_DQUOTE] = ACTIONS(3410), - [anon_sym_LR_DQUOTE] = ACTIONS(3410), - [anon_sym_uR_DQUOTE] = ACTIONS(3410), - [anon_sym_UR_DQUOTE] = ACTIONS(3410), - [anon_sym_u8R_DQUOTE] = ACTIONS(3410), - [anon_sym_co_await] = ACTIONS(3408), - [anon_sym_new] = ACTIONS(3408), - [anon_sym_requires] = ACTIONS(3408), - [sym_this] = ACTIONS(3408), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3410), - [sym_semgrep_named_ellipsis] = ACTIONS(3410), + [545] = { + [sym_identifier] = ACTIONS(3402), + [aux_sym_preproc_include_token1] = ACTIONS(3402), + [aux_sym_preproc_def_token1] = ACTIONS(3402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3404), + [aux_sym_preproc_if_token1] = ACTIONS(3402), + [aux_sym_preproc_if_token2] = ACTIONS(3402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3402), + [aux_sym_preproc_else_token1] = ACTIONS(3402), + [aux_sym_preproc_elif_token1] = ACTIONS(3402), + [sym_preproc_directive] = ACTIONS(3402), + [anon_sym_LPAREN2] = ACTIONS(3404), + [anon_sym_BANG] = ACTIONS(3404), + [anon_sym_TILDE] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3402), + [anon_sym_PLUS] = ACTIONS(3402), + [anon_sym_STAR] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3402), + [anon_sym_SEMI] = ACTIONS(3404), + [anon_sym___extension__] = ACTIONS(3402), + [anon_sym_typedef] = ACTIONS(3402), + [anon_sym_extern] = ACTIONS(3402), + [anon_sym___attribute__] = ACTIONS(3402), + [anon_sym_COLON_COLON] = ACTIONS(3404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3404), + [anon_sym___declspec] = ACTIONS(3402), + [anon_sym___based] = ACTIONS(3402), + [anon_sym___cdecl] = ACTIONS(3402), + [anon_sym___clrcall] = ACTIONS(3402), + [anon_sym___stdcall] = ACTIONS(3402), + [anon_sym___fastcall] = ACTIONS(3402), + [anon_sym___thiscall] = ACTIONS(3402), + [anon_sym___vectorcall] = ACTIONS(3402), + [anon_sym_LBRACE] = ACTIONS(3404), + [anon_sym_signed] = ACTIONS(3402), + [anon_sym_unsigned] = ACTIONS(3402), + [anon_sym_long] = ACTIONS(3402), + [anon_sym_short] = ACTIONS(3402), + [anon_sym_LBRACK] = ACTIONS(3402), + [anon_sym_static] = ACTIONS(3402), + [anon_sym_register] = ACTIONS(3402), + [anon_sym_inline] = ACTIONS(3402), + [anon_sym___inline] = ACTIONS(3402), + [anon_sym___inline__] = ACTIONS(3402), + [anon_sym___forceinline] = ACTIONS(3402), + [anon_sym_thread_local] = ACTIONS(3402), + [anon_sym___thread] = ACTIONS(3402), + [anon_sym_const] = ACTIONS(3402), + [anon_sym_constexpr] = ACTIONS(3402), + [anon_sym_volatile] = ACTIONS(3402), + [anon_sym_restrict] = ACTIONS(3402), + [anon_sym___restrict__] = ACTIONS(3402), + [anon_sym__Atomic] = ACTIONS(3402), + [anon_sym__Noreturn] = ACTIONS(3402), + [anon_sym_noreturn] = ACTIONS(3402), + [anon_sym_mutable] = ACTIONS(3402), + [anon_sym_constinit] = ACTIONS(3402), + [anon_sym_consteval] = ACTIONS(3402), + [sym_primitive_type] = ACTIONS(3402), + [anon_sym_enum] = ACTIONS(3402), + [anon_sym_class] = ACTIONS(3402), + [anon_sym_struct] = ACTIONS(3402), + [anon_sym_union] = ACTIONS(3402), + [anon_sym_if] = ACTIONS(3402), + [anon_sym_switch] = ACTIONS(3402), + [anon_sym_case] = ACTIONS(3402), + [anon_sym_default] = ACTIONS(3402), + [anon_sym_while] = ACTIONS(3402), + [anon_sym_do] = ACTIONS(3402), + [anon_sym_for] = ACTIONS(3402), + [anon_sym_return] = ACTIONS(3402), + [anon_sym_break] = ACTIONS(3402), + [anon_sym_continue] = ACTIONS(3402), + [anon_sym_goto] = ACTIONS(3402), + [anon_sym___try] = ACTIONS(3402), + [anon_sym___leave] = ACTIONS(3402), + [anon_sym_not] = ACTIONS(3402), + [anon_sym_compl] = ACTIONS(3402), + [anon_sym_DASH_DASH] = ACTIONS(3404), + [anon_sym_PLUS_PLUS] = ACTIONS(3404), + [anon_sym_sizeof] = ACTIONS(3402), + [anon_sym___alignof__] = ACTIONS(3402), + [anon_sym___alignof] = ACTIONS(3402), + [anon_sym__alignof] = ACTIONS(3402), + [anon_sym_alignof] = ACTIONS(3402), + [anon_sym__Alignof] = ACTIONS(3402), + [anon_sym_offsetof] = ACTIONS(3402), + [anon_sym__Generic] = ACTIONS(3402), + [anon_sym_asm] = ACTIONS(3402), + [anon_sym___asm__] = ACTIONS(3402), + [sym_number_literal] = ACTIONS(3404), + [anon_sym_L_SQUOTE] = ACTIONS(3404), + [anon_sym_u_SQUOTE] = ACTIONS(3404), + [anon_sym_U_SQUOTE] = ACTIONS(3404), + [anon_sym_u8_SQUOTE] = ACTIONS(3404), + [anon_sym_SQUOTE] = ACTIONS(3404), + [anon_sym_L_DQUOTE] = ACTIONS(3404), + [anon_sym_u_DQUOTE] = ACTIONS(3404), + [anon_sym_U_DQUOTE] = ACTIONS(3404), + [anon_sym_u8_DQUOTE] = ACTIONS(3404), + [anon_sym_DQUOTE] = ACTIONS(3404), + [sym_true] = ACTIONS(3402), + [sym_false] = ACTIONS(3402), + [anon_sym_NULL] = ACTIONS(3402), + [anon_sym_nullptr] = ACTIONS(3402), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3402), + [anon_sym_decltype] = ACTIONS(3402), + [anon_sym_virtual] = ACTIONS(3402), + [anon_sym_alignas] = ACTIONS(3402), + [anon_sym_explicit] = ACTIONS(3402), + [anon_sym_typename] = ACTIONS(3402), + [anon_sym_template] = ACTIONS(3402), + [anon_sym_operator] = ACTIONS(3402), + [anon_sym_try] = ACTIONS(3402), + [anon_sym_delete] = ACTIONS(3402), + [anon_sym_throw] = ACTIONS(3402), + [anon_sym_namespace] = ACTIONS(3402), + [anon_sym_using] = ACTIONS(3402), + [anon_sym_static_assert] = ACTIONS(3402), + [anon_sym_concept] = ACTIONS(3402), + [anon_sym_co_return] = ACTIONS(3402), + [anon_sym_co_yield] = ACTIONS(3402), + [anon_sym_R_DQUOTE] = ACTIONS(3404), + [anon_sym_LR_DQUOTE] = ACTIONS(3404), + [anon_sym_uR_DQUOTE] = ACTIONS(3404), + [anon_sym_UR_DQUOTE] = ACTIONS(3404), + [anon_sym_u8R_DQUOTE] = ACTIONS(3404), + [anon_sym_co_await] = ACTIONS(3402), + [anon_sym_new] = ACTIONS(3402), + [anon_sym_requires] = ACTIONS(3402), + [sym_this] = ACTIONS(3402), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3404), + [sym_semgrep_named_ellipsis] = ACTIONS(3404), }, - [559] = { - [sym_identifier] = ACTIONS(3412), - [aux_sym_preproc_include_token1] = ACTIONS(3412), - [aux_sym_preproc_def_token1] = ACTIONS(3412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3414), - [aux_sym_preproc_if_token1] = ACTIONS(3412), - [aux_sym_preproc_if_token2] = ACTIONS(3412), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3412), - [aux_sym_preproc_else_token1] = ACTIONS(3412), - [aux_sym_preproc_elif_token1] = ACTIONS(3412), - [sym_preproc_directive] = ACTIONS(3412), - [anon_sym_LPAREN2] = ACTIONS(3414), - [anon_sym_BANG] = ACTIONS(3414), - [anon_sym_TILDE] = ACTIONS(3414), - [anon_sym_DASH] = ACTIONS(3412), - [anon_sym_PLUS] = ACTIONS(3412), - [anon_sym_STAR] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3414), - [anon_sym_AMP] = ACTIONS(3412), - [anon_sym_SEMI] = ACTIONS(3414), - [anon_sym___extension__] = ACTIONS(3412), - [anon_sym_typedef] = ACTIONS(3412), - [anon_sym_extern] = ACTIONS(3412), - [anon_sym___attribute__] = ACTIONS(3412), - [anon_sym_COLON_COLON] = ACTIONS(3414), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3414), - [anon_sym___declspec] = ACTIONS(3412), - [anon_sym___based] = ACTIONS(3412), - [anon_sym___cdecl] = ACTIONS(3412), - [anon_sym___clrcall] = ACTIONS(3412), - [anon_sym___stdcall] = ACTIONS(3412), - [anon_sym___fastcall] = ACTIONS(3412), - [anon_sym___thiscall] = ACTIONS(3412), - [anon_sym___vectorcall] = ACTIONS(3412), - [anon_sym_LBRACE] = ACTIONS(3414), - [anon_sym_signed] = ACTIONS(3412), - [anon_sym_unsigned] = ACTIONS(3412), - [anon_sym_long] = ACTIONS(3412), - [anon_sym_short] = ACTIONS(3412), - [anon_sym_LBRACK] = ACTIONS(3412), - [anon_sym_static] = ACTIONS(3412), - [anon_sym_register] = ACTIONS(3412), - [anon_sym_inline] = ACTIONS(3412), - [anon_sym___inline] = ACTIONS(3412), - [anon_sym___inline__] = ACTIONS(3412), - [anon_sym___forceinline] = ACTIONS(3412), - [anon_sym_thread_local] = ACTIONS(3412), - [anon_sym___thread] = ACTIONS(3412), - [anon_sym_const] = ACTIONS(3412), - [anon_sym_constexpr] = ACTIONS(3412), - [anon_sym_volatile] = ACTIONS(3412), - [anon_sym_restrict] = ACTIONS(3412), - [anon_sym___restrict__] = ACTIONS(3412), - [anon_sym__Atomic] = ACTIONS(3412), - [anon_sym__Noreturn] = ACTIONS(3412), - [anon_sym_noreturn] = ACTIONS(3412), - [anon_sym_mutable] = ACTIONS(3412), - [anon_sym_constinit] = ACTIONS(3412), - [anon_sym_consteval] = ACTIONS(3412), - [sym_primitive_type] = ACTIONS(3412), - [anon_sym_enum] = ACTIONS(3412), - [anon_sym_class] = ACTIONS(3412), - [anon_sym_struct] = ACTIONS(3412), - [anon_sym_union] = ACTIONS(3412), - [anon_sym_if] = ACTIONS(3412), - [anon_sym_switch] = ACTIONS(3412), - [anon_sym_case] = ACTIONS(3412), - [anon_sym_default] = ACTIONS(3412), - [anon_sym_while] = ACTIONS(3412), - [anon_sym_do] = ACTIONS(3412), - [anon_sym_for] = ACTIONS(3412), - [anon_sym_return] = ACTIONS(3412), - [anon_sym_break] = ACTIONS(3412), - [anon_sym_continue] = ACTIONS(3412), - [anon_sym_goto] = ACTIONS(3412), - [anon_sym___try] = ACTIONS(3412), - [anon_sym___leave] = ACTIONS(3412), - [anon_sym_not] = ACTIONS(3412), - [anon_sym_compl] = ACTIONS(3412), - [anon_sym_DASH_DASH] = ACTIONS(3414), - [anon_sym_PLUS_PLUS] = ACTIONS(3414), - [anon_sym_sizeof] = ACTIONS(3412), - [anon_sym___alignof__] = ACTIONS(3412), - [anon_sym___alignof] = ACTIONS(3412), - [anon_sym__alignof] = ACTIONS(3412), - [anon_sym_alignof] = ACTIONS(3412), - [anon_sym__Alignof] = ACTIONS(3412), - [anon_sym_offsetof] = ACTIONS(3412), - [anon_sym__Generic] = ACTIONS(3412), - [anon_sym_asm] = ACTIONS(3412), - [anon_sym___asm__] = ACTIONS(3412), - [sym_number_literal] = ACTIONS(3414), - [anon_sym_L_SQUOTE] = ACTIONS(3414), - [anon_sym_u_SQUOTE] = ACTIONS(3414), - [anon_sym_U_SQUOTE] = ACTIONS(3414), - [anon_sym_u8_SQUOTE] = ACTIONS(3414), - [anon_sym_SQUOTE] = ACTIONS(3414), - [anon_sym_L_DQUOTE] = ACTIONS(3414), - [anon_sym_u_DQUOTE] = ACTIONS(3414), - [anon_sym_U_DQUOTE] = ACTIONS(3414), - [anon_sym_u8_DQUOTE] = ACTIONS(3414), - [anon_sym_DQUOTE] = ACTIONS(3414), - [sym_true] = ACTIONS(3412), - [sym_false] = ACTIONS(3412), - [anon_sym_NULL] = ACTIONS(3412), - [anon_sym_nullptr] = ACTIONS(3412), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3412), - [anon_sym_decltype] = ACTIONS(3412), - [anon_sym_virtual] = ACTIONS(3412), - [anon_sym_alignas] = ACTIONS(3412), - [anon_sym_explicit] = ACTIONS(3412), - [anon_sym_typename] = ACTIONS(3412), - [anon_sym_template] = ACTIONS(3412), - [anon_sym_operator] = ACTIONS(3412), - [anon_sym_try] = ACTIONS(3412), - [anon_sym_delete] = ACTIONS(3412), - [anon_sym_throw] = ACTIONS(3412), - [anon_sym_namespace] = ACTIONS(3412), - [anon_sym_using] = ACTIONS(3412), - [anon_sym_static_assert] = ACTIONS(3412), - [anon_sym_concept] = ACTIONS(3412), - [anon_sym_co_return] = ACTIONS(3412), - [anon_sym_co_yield] = ACTIONS(3412), - [anon_sym_R_DQUOTE] = ACTIONS(3414), - [anon_sym_LR_DQUOTE] = ACTIONS(3414), - [anon_sym_uR_DQUOTE] = ACTIONS(3414), - [anon_sym_UR_DQUOTE] = ACTIONS(3414), - [anon_sym_u8R_DQUOTE] = ACTIONS(3414), - [anon_sym_co_await] = ACTIONS(3412), - [anon_sym_new] = ACTIONS(3412), - [anon_sym_requires] = ACTIONS(3412), - [sym_this] = ACTIONS(3412), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3414), - [sym_semgrep_named_ellipsis] = ACTIONS(3414), + [546] = { + [sym_identifier] = ACTIONS(3406), + [aux_sym_preproc_include_token1] = ACTIONS(3406), + [aux_sym_preproc_def_token1] = ACTIONS(3406), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3408), + [aux_sym_preproc_if_token1] = ACTIONS(3406), + [aux_sym_preproc_if_token2] = ACTIONS(3406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3406), + [aux_sym_preproc_else_token1] = ACTIONS(3406), + [aux_sym_preproc_elif_token1] = ACTIONS(3406), + [sym_preproc_directive] = ACTIONS(3406), + [anon_sym_LPAREN2] = ACTIONS(3408), + [anon_sym_BANG] = ACTIONS(3408), + [anon_sym_TILDE] = ACTIONS(3408), + [anon_sym_DASH] = ACTIONS(3406), + [anon_sym_PLUS] = ACTIONS(3406), + [anon_sym_STAR] = ACTIONS(3408), + [anon_sym_AMP_AMP] = ACTIONS(3408), + [anon_sym_AMP] = ACTIONS(3406), + [anon_sym_SEMI] = ACTIONS(3408), + [anon_sym___extension__] = ACTIONS(3406), + [anon_sym_typedef] = ACTIONS(3406), + [anon_sym_extern] = ACTIONS(3406), + [anon_sym___attribute__] = ACTIONS(3406), + [anon_sym_COLON_COLON] = ACTIONS(3408), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3408), + [anon_sym___declspec] = ACTIONS(3406), + [anon_sym___based] = ACTIONS(3406), + [anon_sym___cdecl] = ACTIONS(3406), + [anon_sym___clrcall] = ACTIONS(3406), + [anon_sym___stdcall] = ACTIONS(3406), + [anon_sym___fastcall] = ACTIONS(3406), + [anon_sym___thiscall] = ACTIONS(3406), + [anon_sym___vectorcall] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3408), + [anon_sym_signed] = ACTIONS(3406), + [anon_sym_unsigned] = ACTIONS(3406), + [anon_sym_long] = ACTIONS(3406), + [anon_sym_short] = ACTIONS(3406), + [anon_sym_LBRACK] = ACTIONS(3406), + [anon_sym_static] = ACTIONS(3406), + [anon_sym_register] = ACTIONS(3406), + [anon_sym_inline] = ACTIONS(3406), + [anon_sym___inline] = ACTIONS(3406), + [anon_sym___inline__] = ACTIONS(3406), + [anon_sym___forceinline] = ACTIONS(3406), + [anon_sym_thread_local] = ACTIONS(3406), + [anon_sym___thread] = ACTIONS(3406), + [anon_sym_const] = ACTIONS(3406), + [anon_sym_constexpr] = ACTIONS(3406), + [anon_sym_volatile] = ACTIONS(3406), + [anon_sym_restrict] = ACTIONS(3406), + [anon_sym___restrict__] = ACTIONS(3406), + [anon_sym__Atomic] = ACTIONS(3406), + [anon_sym__Noreturn] = ACTIONS(3406), + [anon_sym_noreturn] = ACTIONS(3406), + [anon_sym_mutable] = ACTIONS(3406), + [anon_sym_constinit] = ACTIONS(3406), + [anon_sym_consteval] = ACTIONS(3406), + [sym_primitive_type] = ACTIONS(3406), + [anon_sym_enum] = ACTIONS(3406), + [anon_sym_class] = ACTIONS(3406), + [anon_sym_struct] = ACTIONS(3406), + [anon_sym_union] = ACTIONS(3406), + [anon_sym_if] = ACTIONS(3406), + [anon_sym_switch] = ACTIONS(3406), + [anon_sym_case] = ACTIONS(3406), + [anon_sym_default] = ACTIONS(3406), + [anon_sym_while] = ACTIONS(3406), + [anon_sym_do] = ACTIONS(3406), + [anon_sym_for] = ACTIONS(3406), + [anon_sym_return] = ACTIONS(3406), + [anon_sym_break] = ACTIONS(3406), + [anon_sym_continue] = ACTIONS(3406), + [anon_sym_goto] = ACTIONS(3406), + [anon_sym___try] = ACTIONS(3406), + [anon_sym___leave] = ACTIONS(3406), + [anon_sym_not] = ACTIONS(3406), + [anon_sym_compl] = ACTIONS(3406), + [anon_sym_DASH_DASH] = ACTIONS(3408), + [anon_sym_PLUS_PLUS] = ACTIONS(3408), + [anon_sym_sizeof] = ACTIONS(3406), + [anon_sym___alignof__] = ACTIONS(3406), + [anon_sym___alignof] = ACTIONS(3406), + [anon_sym__alignof] = ACTIONS(3406), + [anon_sym_alignof] = ACTIONS(3406), + [anon_sym__Alignof] = ACTIONS(3406), + [anon_sym_offsetof] = ACTIONS(3406), + [anon_sym__Generic] = ACTIONS(3406), + [anon_sym_asm] = ACTIONS(3406), + [anon_sym___asm__] = ACTIONS(3406), + [sym_number_literal] = ACTIONS(3408), + [anon_sym_L_SQUOTE] = ACTIONS(3408), + [anon_sym_u_SQUOTE] = ACTIONS(3408), + [anon_sym_U_SQUOTE] = ACTIONS(3408), + [anon_sym_u8_SQUOTE] = ACTIONS(3408), + [anon_sym_SQUOTE] = ACTIONS(3408), + [anon_sym_L_DQUOTE] = ACTIONS(3408), + [anon_sym_u_DQUOTE] = ACTIONS(3408), + [anon_sym_U_DQUOTE] = ACTIONS(3408), + [anon_sym_u8_DQUOTE] = ACTIONS(3408), + [anon_sym_DQUOTE] = ACTIONS(3408), + [sym_true] = ACTIONS(3406), + [sym_false] = ACTIONS(3406), + [anon_sym_NULL] = ACTIONS(3406), + [anon_sym_nullptr] = ACTIONS(3406), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3406), + [anon_sym_decltype] = ACTIONS(3406), + [anon_sym_virtual] = ACTIONS(3406), + [anon_sym_alignas] = ACTIONS(3406), + [anon_sym_explicit] = ACTIONS(3406), + [anon_sym_typename] = ACTIONS(3406), + [anon_sym_template] = ACTIONS(3406), + [anon_sym_operator] = ACTIONS(3406), + [anon_sym_try] = ACTIONS(3406), + [anon_sym_delete] = ACTIONS(3406), + [anon_sym_throw] = ACTIONS(3406), + [anon_sym_namespace] = ACTIONS(3406), + [anon_sym_using] = ACTIONS(3406), + [anon_sym_static_assert] = ACTIONS(3406), + [anon_sym_concept] = ACTIONS(3406), + [anon_sym_co_return] = ACTIONS(3406), + [anon_sym_co_yield] = ACTIONS(3406), + [anon_sym_R_DQUOTE] = ACTIONS(3408), + [anon_sym_LR_DQUOTE] = ACTIONS(3408), + [anon_sym_uR_DQUOTE] = ACTIONS(3408), + [anon_sym_UR_DQUOTE] = ACTIONS(3408), + [anon_sym_u8R_DQUOTE] = ACTIONS(3408), + [anon_sym_co_await] = ACTIONS(3406), + [anon_sym_new] = ACTIONS(3406), + [anon_sym_requires] = ACTIONS(3406), + [sym_this] = ACTIONS(3406), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3408), + [sym_semgrep_named_ellipsis] = ACTIONS(3408), }, - [560] = { + [547] = { + [sym_identifier] = ACTIONS(3428), + [aux_sym_preproc_include_token1] = ACTIONS(3428), + [aux_sym_preproc_def_token1] = ACTIONS(3428), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3430), + [aux_sym_preproc_if_token1] = ACTIONS(3428), + [aux_sym_preproc_if_token2] = ACTIONS(3428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3428), + [aux_sym_preproc_else_token1] = ACTIONS(3428), + [aux_sym_preproc_elif_token1] = ACTIONS(3428), + [sym_preproc_directive] = ACTIONS(3428), + [anon_sym_LPAREN2] = ACTIONS(3430), + [anon_sym_BANG] = ACTIONS(3430), + [anon_sym_TILDE] = ACTIONS(3430), + [anon_sym_DASH] = ACTIONS(3428), + [anon_sym_PLUS] = ACTIONS(3428), + [anon_sym_STAR] = ACTIONS(3430), + [anon_sym_AMP_AMP] = ACTIONS(3430), + [anon_sym_AMP] = ACTIONS(3428), + [anon_sym_SEMI] = ACTIONS(3430), + [anon_sym___extension__] = ACTIONS(3428), + [anon_sym_typedef] = ACTIONS(3428), + [anon_sym_extern] = ACTIONS(3428), + [anon_sym___attribute__] = ACTIONS(3428), + [anon_sym_COLON_COLON] = ACTIONS(3430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3430), + [anon_sym___declspec] = ACTIONS(3428), + [anon_sym___based] = ACTIONS(3428), + [anon_sym___cdecl] = ACTIONS(3428), + [anon_sym___clrcall] = ACTIONS(3428), + [anon_sym___stdcall] = ACTIONS(3428), + [anon_sym___fastcall] = ACTIONS(3428), + [anon_sym___thiscall] = ACTIONS(3428), + [anon_sym___vectorcall] = ACTIONS(3428), + [anon_sym_LBRACE] = ACTIONS(3430), + [anon_sym_signed] = ACTIONS(3428), + [anon_sym_unsigned] = ACTIONS(3428), + [anon_sym_long] = ACTIONS(3428), + [anon_sym_short] = ACTIONS(3428), + [anon_sym_LBRACK] = ACTIONS(3428), + [anon_sym_static] = ACTIONS(3428), + [anon_sym_register] = ACTIONS(3428), + [anon_sym_inline] = ACTIONS(3428), + [anon_sym___inline] = ACTIONS(3428), + [anon_sym___inline__] = ACTIONS(3428), + [anon_sym___forceinline] = ACTIONS(3428), + [anon_sym_thread_local] = ACTIONS(3428), + [anon_sym___thread] = ACTIONS(3428), + [anon_sym_const] = ACTIONS(3428), + [anon_sym_constexpr] = ACTIONS(3428), + [anon_sym_volatile] = ACTIONS(3428), + [anon_sym_restrict] = ACTIONS(3428), + [anon_sym___restrict__] = ACTIONS(3428), + [anon_sym__Atomic] = ACTIONS(3428), + [anon_sym__Noreturn] = ACTIONS(3428), + [anon_sym_noreturn] = ACTIONS(3428), + [anon_sym_mutable] = ACTIONS(3428), + [anon_sym_constinit] = ACTIONS(3428), + [anon_sym_consteval] = ACTIONS(3428), + [sym_primitive_type] = ACTIONS(3428), + [anon_sym_enum] = ACTIONS(3428), + [anon_sym_class] = ACTIONS(3428), + [anon_sym_struct] = ACTIONS(3428), + [anon_sym_union] = ACTIONS(3428), + [anon_sym_if] = ACTIONS(3428), + [anon_sym_switch] = ACTIONS(3428), + [anon_sym_case] = ACTIONS(3428), + [anon_sym_default] = ACTIONS(3428), + [anon_sym_while] = ACTIONS(3428), + [anon_sym_do] = ACTIONS(3428), + [anon_sym_for] = ACTIONS(3428), + [anon_sym_return] = ACTIONS(3428), + [anon_sym_break] = ACTIONS(3428), + [anon_sym_continue] = ACTIONS(3428), + [anon_sym_goto] = ACTIONS(3428), + [anon_sym___try] = ACTIONS(3428), + [anon_sym___leave] = ACTIONS(3428), + [anon_sym_not] = ACTIONS(3428), + [anon_sym_compl] = ACTIONS(3428), + [anon_sym_DASH_DASH] = ACTIONS(3430), + [anon_sym_PLUS_PLUS] = ACTIONS(3430), + [anon_sym_sizeof] = ACTIONS(3428), + [anon_sym___alignof__] = ACTIONS(3428), + [anon_sym___alignof] = ACTIONS(3428), + [anon_sym__alignof] = ACTIONS(3428), + [anon_sym_alignof] = ACTIONS(3428), + [anon_sym__Alignof] = ACTIONS(3428), + [anon_sym_offsetof] = ACTIONS(3428), + [anon_sym__Generic] = ACTIONS(3428), + [anon_sym_asm] = ACTIONS(3428), + [anon_sym___asm__] = ACTIONS(3428), + [sym_number_literal] = ACTIONS(3430), + [anon_sym_L_SQUOTE] = ACTIONS(3430), + [anon_sym_u_SQUOTE] = ACTIONS(3430), + [anon_sym_U_SQUOTE] = ACTIONS(3430), + [anon_sym_u8_SQUOTE] = ACTIONS(3430), + [anon_sym_SQUOTE] = ACTIONS(3430), + [anon_sym_L_DQUOTE] = ACTIONS(3430), + [anon_sym_u_DQUOTE] = ACTIONS(3430), + [anon_sym_U_DQUOTE] = ACTIONS(3430), + [anon_sym_u8_DQUOTE] = ACTIONS(3430), + [anon_sym_DQUOTE] = ACTIONS(3430), + [sym_true] = ACTIONS(3428), + [sym_false] = ACTIONS(3428), + [anon_sym_NULL] = ACTIONS(3428), + [anon_sym_nullptr] = ACTIONS(3428), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3428), + [anon_sym_decltype] = ACTIONS(3428), + [anon_sym_virtual] = ACTIONS(3428), + [anon_sym_alignas] = ACTIONS(3428), + [anon_sym_explicit] = ACTIONS(3428), + [anon_sym_typename] = ACTIONS(3428), + [anon_sym_template] = ACTIONS(3428), + [anon_sym_operator] = ACTIONS(3428), + [anon_sym_try] = ACTIONS(3428), + [anon_sym_delete] = ACTIONS(3428), + [anon_sym_throw] = ACTIONS(3428), + [anon_sym_namespace] = ACTIONS(3428), + [anon_sym_using] = ACTIONS(3428), + [anon_sym_static_assert] = ACTIONS(3428), + [anon_sym_concept] = ACTIONS(3428), + [anon_sym_co_return] = ACTIONS(3428), + [anon_sym_co_yield] = ACTIONS(3428), + [anon_sym_R_DQUOTE] = ACTIONS(3430), + [anon_sym_LR_DQUOTE] = ACTIONS(3430), + [anon_sym_uR_DQUOTE] = ACTIONS(3430), + [anon_sym_UR_DQUOTE] = ACTIONS(3430), + [anon_sym_u8R_DQUOTE] = ACTIONS(3430), + [anon_sym_co_await] = ACTIONS(3428), + [anon_sym_new] = ACTIONS(3428), + [anon_sym_requires] = ACTIONS(3428), + [sym_this] = ACTIONS(3428), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3430), + [sym_semgrep_named_ellipsis] = ACTIONS(3430), + }, + [548] = { + [sym_identifier] = ACTIONS(3469), + [aux_sym_preproc_include_token1] = ACTIONS(3469), + [aux_sym_preproc_def_token1] = ACTIONS(3469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3471), + [aux_sym_preproc_if_token1] = ACTIONS(3469), + [aux_sym_preproc_if_token2] = ACTIONS(3469), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3469), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3469), + [aux_sym_preproc_else_token1] = ACTIONS(3469), + [aux_sym_preproc_elif_token1] = ACTIONS(3469), + [sym_preproc_directive] = ACTIONS(3469), + [anon_sym_LPAREN2] = ACTIONS(3471), + [anon_sym_BANG] = ACTIONS(3471), + [anon_sym_TILDE] = ACTIONS(3471), + [anon_sym_DASH] = ACTIONS(3469), + [anon_sym_PLUS] = ACTIONS(3469), + [anon_sym_STAR] = ACTIONS(3471), + [anon_sym_AMP_AMP] = ACTIONS(3471), + [anon_sym_AMP] = ACTIONS(3469), + [anon_sym_SEMI] = ACTIONS(3471), + [anon_sym___extension__] = ACTIONS(3469), + [anon_sym_typedef] = ACTIONS(3469), + [anon_sym_extern] = ACTIONS(3469), + [anon_sym___attribute__] = ACTIONS(3469), + [anon_sym_COLON_COLON] = ACTIONS(3471), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3471), + [anon_sym___declspec] = ACTIONS(3469), + [anon_sym___based] = ACTIONS(3469), + [anon_sym___cdecl] = ACTIONS(3469), + [anon_sym___clrcall] = ACTIONS(3469), + [anon_sym___stdcall] = ACTIONS(3469), + [anon_sym___fastcall] = ACTIONS(3469), + [anon_sym___thiscall] = ACTIONS(3469), + [anon_sym___vectorcall] = ACTIONS(3469), + [anon_sym_LBRACE] = ACTIONS(3471), + [anon_sym_signed] = ACTIONS(3469), + [anon_sym_unsigned] = ACTIONS(3469), + [anon_sym_long] = ACTIONS(3469), + [anon_sym_short] = ACTIONS(3469), + [anon_sym_LBRACK] = ACTIONS(3469), + [anon_sym_static] = ACTIONS(3469), + [anon_sym_register] = ACTIONS(3469), + [anon_sym_inline] = ACTIONS(3469), + [anon_sym___inline] = ACTIONS(3469), + [anon_sym___inline__] = ACTIONS(3469), + [anon_sym___forceinline] = ACTIONS(3469), + [anon_sym_thread_local] = ACTIONS(3469), + [anon_sym___thread] = ACTIONS(3469), + [anon_sym_const] = ACTIONS(3469), + [anon_sym_constexpr] = ACTIONS(3469), + [anon_sym_volatile] = ACTIONS(3469), + [anon_sym_restrict] = ACTIONS(3469), + [anon_sym___restrict__] = ACTIONS(3469), + [anon_sym__Atomic] = ACTIONS(3469), + [anon_sym__Noreturn] = ACTIONS(3469), + [anon_sym_noreturn] = ACTIONS(3469), + [anon_sym_mutable] = ACTIONS(3469), + [anon_sym_constinit] = ACTIONS(3469), + [anon_sym_consteval] = ACTIONS(3469), + [sym_primitive_type] = ACTIONS(3469), + [anon_sym_enum] = ACTIONS(3469), + [anon_sym_class] = ACTIONS(3469), + [anon_sym_struct] = ACTIONS(3469), + [anon_sym_union] = ACTIONS(3469), + [anon_sym_if] = ACTIONS(3469), + [anon_sym_switch] = ACTIONS(3469), + [anon_sym_case] = ACTIONS(3469), + [anon_sym_default] = ACTIONS(3469), + [anon_sym_while] = ACTIONS(3469), + [anon_sym_do] = ACTIONS(3469), + [anon_sym_for] = ACTIONS(3469), + [anon_sym_return] = ACTIONS(3469), + [anon_sym_break] = ACTIONS(3469), + [anon_sym_continue] = ACTIONS(3469), + [anon_sym_goto] = ACTIONS(3469), + [anon_sym___try] = ACTIONS(3469), + [anon_sym___leave] = ACTIONS(3469), + [anon_sym_not] = ACTIONS(3469), + [anon_sym_compl] = ACTIONS(3469), + [anon_sym_DASH_DASH] = ACTIONS(3471), + [anon_sym_PLUS_PLUS] = ACTIONS(3471), + [anon_sym_sizeof] = ACTIONS(3469), + [anon_sym___alignof__] = ACTIONS(3469), + [anon_sym___alignof] = ACTIONS(3469), + [anon_sym__alignof] = ACTIONS(3469), + [anon_sym_alignof] = ACTIONS(3469), + [anon_sym__Alignof] = ACTIONS(3469), + [anon_sym_offsetof] = ACTIONS(3469), + [anon_sym__Generic] = ACTIONS(3469), + [anon_sym_asm] = ACTIONS(3469), + [anon_sym___asm__] = ACTIONS(3469), + [sym_number_literal] = ACTIONS(3471), + [anon_sym_L_SQUOTE] = ACTIONS(3471), + [anon_sym_u_SQUOTE] = ACTIONS(3471), + [anon_sym_U_SQUOTE] = ACTIONS(3471), + [anon_sym_u8_SQUOTE] = ACTIONS(3471), + [anon_sym_SQUOTE] = ACTIONS(3471), + [anon_sym_L_DQUOTE] = ACTIONS(3471), + [anon_sym_u_DQUOTE] = ACTIONS(3471), + [anon_sym_U_DQUOTE] = ACTIONS(3471), + [anon_sym_u8_DQUOTE] = ACTIONS(3471), + [anon_sym_DQUOTE] = ACTIONS(3471), + [sym_true] = ACTIONS(3469), + [sym_false] = ACTIONS(3469), + [anon_sym_NULL] = ACTIONS(3469), + [anon_sym_nullptr] = ACTIONS(3469), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3469), + [anon_sym_decltype] = ACTIONS(3469), + [anon_sym_virtual] = ACTIONS(3469), + [anon_sym_alignas] = ACTIONS(3469), + [anon_sym_explicit] = ACTIONS(3469), + [anon_sym_typename] = ACTIONS(3469), + [anon_sym_template] = ACTIONS(3469), + [anon_sym_operator] = ACTIONS(3469), + [anon_sym_try] = ACTIONS(3469), + [anon_sym_delete] = ACTIONS(3469), + [anon_sym_throw] = ACTIONS(3469), + [anon_sym_namespace] = ACTIONS(3469), + [anon_sym_using] = ACTIONS(3469), + [anon_sym_static_assert] = ACTIONS(3469), + [anon_sym_concept] = ACTIONS(3469), + [anon_sym_co_return] = ACTIONS(3469), + [anon_sym_co_yield] = ACTIONS(3469), + [anon_sym_R_DQUOTE] = ACTIONS(3471), + [anon_sym_LR_DQUOTE] = ACTIONS(3471), + [anon_sym_uR_DQUOTE] = ACTIONS(3471), + [anon_sym_UR_DQUOTE] = ACTIONS(3471), + [anon_sym_u8R_DQUOTE] = ACTIONS(3471), + [anon_sym_co_await] = ACTIONS(3469), + [anon_sym_new] = ACTIONS(3469), + [anon_sym_requires] = ACTIONS(3469), + [sym_this] = ACTIONS(3469), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3471), + [sym_semgrep_named_ellipsis] = ACTIONS(3471), + }, + [549] = { + [sym_identifier] = ACTIONS(3475), + [aux_sym_preproc_include_token1] = ACTIONS(3475), + [aux_sym_preproc_def_token1] = ACTIONS(3475), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3477), + [aux_sym_preproc_if_token1] = ACTIONS(3475), + [aux_sym_preproc_if_token2] = ACTIONS(3475), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3475), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3475), + [aux_sym_preproc_else_token1] = ACTIONS(3475), + [aux_sym_preproc_elif_token1] = ACTIONS(3475), + [sym_preproc_directive] = ACTIONS(3475), + [anon_sym_LPAREN2] = ACTIONS(3477), + [anon_sym_BANG] = ACTIONS(3477), + [anon_sym_TILDE] = ACTIONS(3477), + [anon_sym_DASH] = ACTIONS(3475), + [anon_sym_PLUS] = ACTIONS(3475), + [anon_sym_STAR] = ACTIONS(3477), + [anon_sym_AMP_AMP] = ACTIONS(3477), + [anon_sym_AMP] = ACTIONS(3475), + [anon_sym_SEMI] = ACTIONS(3477), + [anon_sym___extension__] = ACTIONS(3475), + [anon_sym_typedef] = ACTIONS(3475), + [anon_sym_extern] = ACTIONS(3475), + [anon_sym___attribute__] = ACTIONS(3475), + [anon_sym_COLON_COLON] = ACTIONS(3477), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3477), + [anon_sym___declspec] = ACTIONS(3475), + [anon_sym___based] = ACTIONS(3475), + [anon_sym___cdecl] = ACTIONS(3475), + [anon_sym___clrcall] = ACTIONS(3475), + [anon_sym___stdcall] = ACTIONS(3475), + [anon_sym___fastcall] = ACTIONS(3475), + [anon_sym___thiscall] = ACTIONS(3475), + [anon_sym___vectorcall] = ACTIONS(3475), + [anon_sym_LBRACE] = ACTIONS(3477), + [anon_sym_signed] = ACTIONS(3475), + [anon_sym_unsigned] = ACTIONS(3475), + [anon_sym_long] = ACTIONS(3475), + [anon_sym_short] = ACTIONS(3475), + [anon_sym_LBRACK] = ACTIONS(3475), + [anon_sym_static] = ACTIONS(3475), + [anon_sym_register] = ACTIONS(3475), + [anon_sym_inline] = ACTIONS(3475), + [anon_sym___inline] = ACTIONS(3475), + [anon_sym___inline__] = ACTIONS(3475), + [anon_sym___forceinline] = ACTIONS(3475), + [anon_sym_thread_local] = ACTIONS(3475), + [anon_sym___thread] = ACTIONS(3475), + [anon_sym_const] = ACTIONS(3475), + [anon_sym_constexpr] = ACTIONS(3475), + [anon_sym_volatile] = ACTIONS(3475), + [anon_sym_restrict] = ACTIONS(3475), + [anon_sym___restrict__] = ACTIONS(3475), + [anon_sym__Atomic] = ACTIONS(3475), + [anon_sym__Noreturn] = ACTIONS(3475), + [anon_sym_noreturn] = ACTIONS(3475), + [anon_sym_mutable] = ACTIONS(3475), + [anon_sym_constinit] = ACTIONS(3475), + [anon_sym_consteval] = ACTIONS(3475), + [sym_primitive_type] = ACTIONS(3475), + [anon_sym_enum] = ACTIONS(3475), + [anon_sym_class] = ACTIONS(3475), + [anon_sym_struct] = ACTIONS(3475), + [anon_sym_union] = ACTIONS(3475), + [anon_sym_if] = ACTIONS(3475), + [anon_sym_switch] = ACTIONS(3475), + [anon_sym_case] = ACTIONS(3475), + [anon_sym_default] = ACTIONS(3475), + [anon_sym_while] = ACTIONS(3475), + [anon_sym_do] = ACTIONS(3475), + [anon_sym_for] = ACTIONS(3475), + [anon_sym_return] = ACTIONS(3475), + [anon_sym_break] = ACTIONS(3475), + [anon_sym_continue] = ACTIONS(3475), + [anon_sym_goto] = ACTIONS(3475), + [anon_sym___try] = ACTIONS(3475), + [anon_sym___leave] = ACTIONS(3475), + [anon_sym_not] = ACTIONS(3475), + [anon_sym_compl] = ACTIONS(3475), + [anon_sym_DASH_DASH] = ACTIONS(3477), + [anon_sym_PLUS_PLUS] = ACTIONS(3477), + [anon_sym_sizeof] = ACTIONS(3475), + [anon_sym___alignof__] = ACTIONS(3475), + [anon_sym___alignof] = ACTIONS(3475), + [anon_sym__alignof] = ACTIONS(3475), + [anon_sym_alignof] = ACTIONS(3475), + [anon_sym__Alignof] = ACTIONS(3475), + [anon_sym_offsetof] = ACTIONS(3475), + [anon_sym__Generic] = ACTIONS(3475), + [anon_sym_asm] = ACTIONS(3475), + [anon_sym___asm__] = ACTIONS(3475), + [sym_number_literal] = ACTIONS(3477), + [anon_sym_L_SQUOTE] = ACTIONS(3477), + [anon_sym_u_SQUOTE] = ACTIONS(3477), + [anon_sym_U_SQUOTE] = ACTIONS(3477), + [anon_sym_u8_SQUOTE] = ACTIONS(3477), + [anon_sym_SQUOTE] = ACTIONS(3477), + [anon_sym_L_DQUOTE] = ACTIONS(3477), + [anon_sym_u_DQUOTE] = ACTIONS(3477), + [anon_sym_U_DQUOTE] = ACTIONS(3477), + [anon_sym_u8_DQUOTE] = ACTIONS(3477), + [anon_sym_DQUOTE] = ACTIONS(3477), + [sym_true] = ACTIONS(3475), + [sym_false] = ACTIONS(3475), + [anon_sym_NULL] = ACTIONS(3475), + [anon_sym_nullptr] = ACTIONS(3475), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3475), + [anon_sym_decltype] = ACTIONS(3475), + [anon_sym_virtual] = ACTIONS(3475), + [anon_sym_alignas] = ACTIONS(3475), + [anon_sym_explicit] = ACTIONS(3475), + [anon_sym_typename] = ACTIONS(3475), + [anon_sym_template] = ACTIONS(3475), + [anon_sym_operator] = ACTIONS(3475), + [anon_sym_try] = ACTIONS(3475), + [anon_sym_delete] = ACTIONS(3475), + [anon_sym_throw] = ACTIONS(3475), + [anon_sym_namespace] = ACTIONS(3475), + [anon_sym_using] = ACTIONS(3475), + [anon_sym_static_assert] = ACTIONS(3475), + [anon_sym_concept] = ACTIONS(3475), + [anon_sym_co_return] = ACTIONS(3475), + [anon_sym_co_yield] = ACTIONS(3475), + [anon_sym_R_DQUOTE] = ACTIONS(3477), + [anon_sym_LR_DQUOTE] = ACTIONS(3477), + [anon_sym_uR_DQUOTE] = ACTIONS(3477), + [anon_sym_UR_DQUOTE] = ACTIONS(3477), + [anon_sym_u8R_DQUOTE] = ACTIONS(3477), + [anon_sym_co_await] = ACTIONS(3475), + [anon_sym_new] = ACTIONS(3475), + [anon_sym_requires] = ACTIONS(3475), + [sym_this] = ACTIONS(3475), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3477), + [sym_semgrep_named_ellipsis] = ACTIONS(3477), + }, + [550] = { + [sym_identifier] = ACTIONS(3479), + [aux_sym_preproc_include_token1] = ACTIONS(3479), + [aux_sym_preproc_def_token1] = ACTIONS(3479), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3481), + [aux_sym_preproc_if_token1] = ACTIONS(3479), + [aux_sym_preproc_if_token2] = ACTIONS(3479), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3479), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3479), + [aux_sym_preproc_else_token1] = ACTIONS(3479), + [aux_sym_preproc_elif_token1] = ACTIONS(3479), + [sym_preproc_directive] = ACTIONS(3479), + [anon_sym_LPAREN2] = ACTIONS(3481), + [anon_sym_BANG] = ACTIONS(3481), + [anon_sym_TILDE] = ACTIONS(3481), + [anon_sym_DASH] = ACTIONS(3479), + [anon_sym_PLUS] = ACTIONS(3479), + [anon_sym_STAR] = ACTIONS(3481), + [anon_sym_AMP_AMP] = ACTIONS(3481), + [anon_sym_AMP] = ACTIONS(3479), + [anon_sym_SEMI] = ACTIONS(3481), + [anon_sym___extension__] = ACTIONS(3479), + [anon_sym_typedef] = ACTIONS(3479), + [anon_sym_extern] = ACTIONS(3479), + [anon_sym___attribute__] = ACTIONS(3479), + [anon_sym_COLON_COLON] = ACTIONS(3481), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3481), + [anon_sym___declspec] = ACTIONS(3479), + [anon_sym___based] = ACTIONS(3479), + [anon_sym___cdecl] = ACTIONS(3479), + [anon_sym___clrcall] = ACTIONS(3479), + [anon_sym___stdcall] = ACTIONS(3479), + [anon_sym___fastcall] = ACTIONS(3479), + [anon_sym___thiscall] = ACTIONS(3479), + [anon_sym___vectorcall] = ACTIONS(3479), + [anon_sym_LBRACE] = ACTIONS(3481), + [anon_sym_signed] = ACTIONS(3479), + [anon_sym_unsigned] = ACTIONS(3479), + [anon_sym_long] = ACTIONS(3479), + [anon_sym_short] = ACTIONS(3479), + [anon_sym_LBRACK] = ACTIONS(3479), + [anon_sym_static] = ACTIONS(3479), + [anon_sym_register] = ACTIONS(3479), + [anon_sym_inline] = ACTIONS(3479), + [anon_sym___inline] = ACTIONS(3479), + [anon_sym___inline__] = ACTIONS(3479), + [anon_sym___forceinline] = ACTIONS(3479), + [anon_sym_thread_local] = ACTIONS(3479), + [anon_sym___thread] = ACTIONS(3479), + [anon_sym_const] = ACTIONS(3479), + [anon_sym_constexpr] = ACTIONS(3479), + [anon_sym_volatile] = ACTIONS(3479), + [anon_sym_restrict] = ACTIONS(3479), + [anon_sym___restrict__] = ACTIONS(3479), + [anon_sym__Atomic] = ACTIONS(3479), + [anon_sym__Noreturn] = ACTIONS(3479), + [anon_sym_noreturn] = ACTIONS(3479), + [anon_sym_mutable] = ACTIONS(3479), + [anon_sym_constinit] = ACTIONS(3479), + [anon_sym_consteval] = ACTIONS(3479), + [sym_primitive_type] = ACTIONS(3479), + [anon_sym_enum] = ACTIONS(3479), + [anon_sym_class] = ACTIONS(3479), + [anon_sym_struct] = ACTIONS(3479), + [anon_sym_union] = ACTIONS(3479), + [anon_sym_if] = ACTIONS(3479), + [anon_sym_switch] = ACTIONS(3479), + [anon_sym_case] = ACTIONS(3479), + [anon_sym_default] = ACTIONS(3479), + [anon_sym_while] = ACTIONS(3479), + [anon_sym_do] = ACTIONS(3479), + [anon_sym_for] = ACTIONS(3479), + [anon_sym_return] = ACTIONS(3479), + [anon_sym_break] = ACTIONS(3479), + [anon_sym_continue] = ACTIONS(3479), + [anon_sym_goto] = ACTIONS(3479), + [anon_sym___try] = ACTIONS(3479), + [anon_sym___leave] = ACTIONS(3479), + [anon_sym_not] = ACTIONS(3479), + [anon_sym_compl] = ACTIONS(3479), + [anon_sym_DASH_DASH] = ACTIONS(3481), + [anon_sym_PLUS_PLUS] = ACTIONS(3481), + [anon_sym_sizeof] = ACTIONS(3479), + [anon_sym___alignof__] = ACTIONS(3479), + [anon_sym___alignof] = ACTIONS(3479), + [anon_sym__alignof] = ACTIONS(3479), + [anon_sym_alignof] = ACTIONS(3479), + [anon_sym__Alignof] = ACTIONS(3479), + [anon_sym_offsetof] = ACTIONS(3479), + [anon_sym__Generic] = ACTIONS(3479), + [anon_sym_asm] = ACTIONS(3479), + [anon_sym___asm__] = ACTIONS(3479), + [sym_number_literal] = ACTIONS(3481), + [anon_sym_L_SQUOTE] = ACTIONS(3481), + [anon_sym_u_SQUOTE] = ACTIONS(3481), + [anon_sym_U_SQUOTE] = ACTIONS(3481), + [anon_sym_u8_SQUOTE] = ACTIONS(3481), + [anon_sym_SQUOTE] = ACTIONS(3481), + [anon_sym_L_DQUOTE] = ACTIONS(3481), + [anon_sym_u_DQUOTE] = ACTIONS(3481), + [anon_sym_U_DQUOTE] = ACTIONS(3481), + [anon_sym_u8_DQUOTE] = ACTIONS(3481), + [anon_sym_DQUOTE] = ACTIONS(3481), + [sym_true] = ACTIONS(3479), + [sym_false] = ACTIONS(3479), + [anon_sym_NULL] = ACTIONS(3479), + [anon_sym_nullptr] = ACTIONS(3479), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3479), + [anon_sym_decltype] = ACTIONS(3479), + [anon_sym_virtual] = ACTIONS(3479), + [anon_sym_alignas] = ACTIONS(3479), + [anon_sym_explicit] = ACTIONS(3479), + [anon_sym_typename] = ACTIONS(3479), + [anon_sym_template] = ACTIONS(3479), + [anon_sym_operator] = ACTIONS(3479), + [anon_sym_try] = ACTIONS(3479), + [anon_sym_delete] = ACTIONS(3479), + [anon_sym_throw] = ACTIONS(3479), + [anon_sym_namespace] = ACTIONS(3479), + [anon_sym_using] = ACTIONS(3479), + [anon_sym_static_assert] = ACTIONS(3479), + [anon_sym_concept] = ACTIONS(3479), + [anon_sym_co_return] = ACTIONS(3479), + [anon_sym_co_yield] = ACTIONS(3479), + [anon_sym_R_DQUOTE] = ACTIONS(3481), + [anon_sym_LR_DQUOTE] = ACTIONS(3481), + [anon_sym_uR_DQUOTE] = ACTIONS(3481), + [anon_sym_UR_DQUOTE] = ACTIONS(3481), + [anon_sym_u8R_DQUOTE] = ACTIONS(3481), + [anon_sym_co_await] = ACTIONS(3479), + [anon_sym_new] = ACTIONS(3479), + [anon_sym_requires] = ACTIONS(3479), + [sym_this] = ACTIONS(3479), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3481), + [sym_semgrep_named_ellipsis] = ACTIONS(3481), + }, + [551] = { + [sym_identifier] = ACTIONS(3483), + [aux_sym_preproc_include_token1] = ACTIONS(3483), + [aux_sym_preproc_def_token1] = ACTIONS(3483), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3485), + [aux_sym_preproc_if_token1] = ACTIONS(3483), + [aux_sym_preproc_if_token2] = ACTIONS(3483), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3483), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3483), + [aux_sym_preproc_else_token1] = ACTIONS(3483), + [aux_sym_preproc_elif_token1] = ACTIONS(3483), + [sym_preproc_directive] = ACTIONS(3483), + [anon_sym_LPAREN2] = ACTIONS(3485), + [anon_sym_BANG] = ACTIONS(3485), + [anon_sym_TILDE] = ACTIONS(3485), + [anon_sym_DASH] = ACTIONS(3483), + [anon_sym_PLUS] = ACTIONS(3483), + [anon_sym_STAR] = ACTIONS(3485), + [anon_sym_AMP_AMP] = ACTIONS(3485), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_SEMI] = ACTIONS(3485), + [anon_sym___extension__] = ACTIONS(3483), + [anon_sym_typedef] = ACTIONS(3483), + [anon_sym_extern] = ACTIONS(3483), + [anon_sym___attribute__] = ACTIONS(3483), + [anon_sym_COLON_COLON] = ACTIONS(3485), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3485), + [anon_sym___declspec] = ACTIONS(3483), + [anon_sym___based] = ACTIONS(3483), + [anon_sym___cdecl] = ACTIONS(3483), + [anon_sym___clrcall] = ACTIONS(3483), + [anon_sym___stdcall] = ACTIONS(3483), + [anon_sym___fastcall] = ACTIONS(3483), + [anon_sym___thiscall] = ACTIONS(3483), + [anon_sym___vectorcall] = ACTIONS(3483), + [anon_sym_LBRACE] = ACTIONS(3485), + [anon_sym_signed] = ACTIONS(3483), + [anon_sym_unsigned] = ACTIONS(3483), + [anon_sym_long] = ACTIONS(3483), + [anon_sym_short] = ACTIONS(3483), + [anon_sym_LBRACK] = ACTIONS(3483), + [anon_sym_static] = ACTIONS(3483), + [anon_sym_register] = ACTIONS(3483), + [anon_sym_inline] = ACTIONS(3483), + [anon_sym___inline] = ACTIONS(3483), + [anon_sym___inline__] = ACTIONS(3483), + [anon_sym___forceinline] = ACTIONS(3483), + [anon_sym_thread_local] = ACTIONS(3483), + [anon_sym___thread] = ACTIONS(3483), + [anon_sym_const] = ACTIONS(3483), + [anon_sym_constexpr] = ACTIONS(3483), + [anon_sym_volatile] = ACTIONS(3483), + [anon_sym_restrict] = ACTIONS(3483), + [anon_sym___restrict__] = ACTIONS(3483), + [anon_sym__Atomic] = ACTIONS(3483), + [anon_sym__Noreturn] = ACTIONS(3483), + [anon_sym_noreturn] = ACTIONS(3483), + [anon_sym_mutable] = ACTIONS(3483), + [anon_sym_constinit] = ACTIONS(3483), + [anon_sym_consteval] = ACTIONS(3483), + [sym_primitive_type] = ACTIONS(3483), + [anon_sym_enum] = ACTIONS(3483), + [anon_sym_class] = ACTIONS(3483), + [anon_sym_struct] = ACTIONS(3483), + [anon_sym_union] = ACTIONS(3483), + [anon_sym_if] = ACTIONS(3483), + [anon_sym_switch] = ACTIONS(3483), + [anon_sym_case] = ACTIONS(3483), + [anon_sym_default] = ACTIONS(3483), + [anon_sym_while] = ACTIONS(3483), + [anon_sym_do] = ACTIONS(3483), + [anon_sym_for] = ACTIONS(3483), + [anon_sym_return] = ACTIONS(3483), + [anon_sym_break] = ACTIONS(3483), + [anon_sym_continue] = ACTIONS(3483), + [anon_sym_goto] = ACTIONS(3483), + [anon_sym___try] = ACTIONS(3483), + [anon_sym___leave] = ACTIONS(3483), + [anon_sym_not] = ACTIONS(3483), + [anon_sym_compl] = ACTIONS(3483), + [anon_sym_DASH_DASH] = ACTIONS(3485), + [anon_sym_PLUS_PLUS] = ACTIONS(3485), + [anon_sym_sizeof] = ACTIONS(3483), + [anon_sym___alignof__] = ACTIONS(3483), + [anon_sym___alignof] = ACTIONS(3483), + [anon_sym__alignof] = ACTIONS(3483), + [anon_sym_alignof] = ACTIONS(3483), + [anon_sym__Alignof] = ACTIONS(3483), + [anon_sym_offsetof] = ACTIONS(3483), + [anon_sym__Generic] = ACTIONS(3483), + [anon_sym_asm] = ACTIONS(3483), + [anon_sym___asm__] = ACTIONS(3483), + [sym_number_literal] = ACTIONS(3485), + [anon_sym_L_SQUOTE] = ACTIONS(3485), + [anon_sym_u_SQUOTE] = ACTIONS(3485), + [anon_sym_U_SQUOTE] = ACTIONS(3485), + [anon_sym_u8_SQUOTE] = ACTIONS(3485), + [anon_sym_SQUOTE] = ACTIONS(3485), + [anon_sym_L_DQUOTE] = ACTIONS(3485), + [anon_sym_u_DQUOTE] = ACTIONS(3485), + [anon_sym_U_DQUOTE] = ACTIONS(3485), + [anon_sym_u8_DQUOTE] = ACTIONS(3485), + [anon_sym_DQUOTE] = ACTIONS(3485), + [sym_true] = ACTIONS(3483), + [sym_false] = ACTIONS(3483), + [anon_sym_NULL] = ACTIONS(3483), + [anon_sym_nullptr] = ACTIONS(3483), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3483), + [anon_sym_decltype] = ACTIONS(3483), + [anon_sym_virtual] = ACTIONS(3483), + [anon_sym_alignas] = ACTIONS(3483), + [anon_sym_explicit] = ACTIONS(3483), + [anon_sym_typename] = ACTIONS(3483), + [anon_sym_template] = ACTIONS(3483), + [anon_sym_operator] = ACTIONS(3483), + [anon_sym_try] = ACTIONS(3483), + [anon_sym_delete] = ACTIONS(3483), + [anon_sym_throw] = ACTIONS(3483), + [anon_sym_namespace] = ACTIONS(3483), + [anon_sym_using] = ACTIONS(3483), + [anon_sym_static_assert] = ACTIONS(3483), + [anon_sym_concept] = ACTIONS(3483), + [anon_sym_co_return] = ACTIONS(3483), + [anon_sym_co_yield] = ACTIONS(3483), + [anon_sym_R_DQUOTE] = ACTIONS(3485), + [anon_sym_LR_DQUOTE] = ACTIONS(3485), + [anon_sym_uR_DQUOTE] = ACTIONS(3485), + [anon_sym_UR_DQUOTE] = ACTIONS(3485), + [anon_sym_u8R_DQUOTE] = ACTIONS(3485), + [anon_sym_co_await] = ACTIONS(3483), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_requires] = ACTIONS(3483), + [sym_this] = ACTIONS(3483), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3485), + [sym_semgrep_named_ellipsis] = ACTIONS(3485), + }, + [552] = { [sym_identifier] = ACTIONS(3487), [aux_sym_preproc_include_token1] = ACTIONS(3487), [aux_sym_preproc_def_token1] = ACTIONS(3487), @@ -143063,144 +132136,1788 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3489), [sym_semgrep_named_ellipsis] = ACTIONS(3489), }, + [553] = { + [sym_identifier] = ACTIONS(3493), + [aux_sym_preproc_include_token1] = ACTIONS(3493), + [aux_sym_preproc_def_token1] = ACTIONS(3493), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3495), + [aux_sym_preproc_if_token1] = ACTIONS(3493), + [aux_sym_preproc_if_token2] = ACTIONS(3493), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3493), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3493), + [aux_sym_preproc_else_token1] = ACTIONS(3493), + [aux_sym_preproc_elif_token1] = ACTIONS(3493), + [sym_preproc_directive] = ACTIONS(3493), + [anon_sym_LPAREN2] = ACTIONS(3495), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3495), + [anon_sym_DASH] = ACTIONS(3493), + [anon_sym_PLUS] = ACTIONS(3493), + [anon_sym_STAR] = ACTIONS(3495), + [anon_sym_AMP_AMP] = ACTIONS(3495), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_SEMI] = ACTIONS(3495), + [anon_sym___extension__] = ACTIONS(3493), + [anon_sym_typedef] = 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___cdecl] = ACTIONS(3493), + [anon_sym___clrcall] = ACTIONS(3493), + [anon_sym___stdcall] = ACTIONS(3493), + [anon_sym___fastcall] = ACTIONS(3493), + [anon_sym___thiscall] = ACTIONS(3493), + [anon_sym___vectorcall] = ACTIONS(3493), + [anon_sym_LBRACE] = ACTIONS(3495), + [anon_sym_signed] = ACTIONS(3493), + [anon_sym_unsigned] = ACTIONS(3493), + [anon_sym_long] = ACTIONS(3493), + [anon_sym_short] = ACTIONS(3493), + [anon_sym_LBRACK] = ACTIONS(3493), + [anon_sym_static] = ACTIONS(3493), + [anon_sym_register] = ACTIONS(3493), + [anon_sym_inline] = ACTIONS(3493), + [anon_sym___inline] = ACTIONS(3493), + [anon_sym___inline__] = ACTIONS(3493), + [anon_sym___forceinline] = ACTIONS(3493), + [anon_sym_thread_local] = ACTIONS(3493), + [anon_sym___thread] = ACTIONS(3493), + [anon_sym_const] = ACTIONS(3493), + [anon_sym_constexpr] = ACTIONS(3493), + [anon_sym_volatile] = ACTIONS(3493), + [anon_sym_restrict] = ACTIONS(3493), + [anon_sym___restrict__] = ACTIONS(3493), + [anon_sym__Atomic] = ACTIONS(3493), + [anon_sym__Noreturn] = ACTIONS(3493), + [anon_sym_noreturn] = ACTIONS(3493), + [anon_sym_mutable] = ACTIONS(3493), + [anon_sym_constinit] = ACTIONS(3493), + [anon_sym_consteval] = ACTIONS(3493), + [sym_primitive_type] = ACTIONS(3493), + [anon_sym_enum] = ACTIONS(3493), + [anon_sym_class] = ACTIONS(3493), + [anon_sym_struct] = ACTIONS(3493), + [anon_sym_union] = ACTIONS(3493), + [anon_sym_if] = ACTIONS(3493), + [anon_sym_switch] = ACTIONS(3493), + [anon_sym_case] = ACTIONS(3493), + [anon_sym_default] = ACTIONS(3493), + [anon_sym_while] = ACTIONS(3493), + [anon_sym_do] = ACTIONS(3493), + [anon_sym_for] = ACTIONS(3493), + [anon_sym_return] = ACTIONS(3493), + [anon_sym_break] = ACTIONS(3493), + [anon_sym_continue] = ACTIONS(3493), + [anon_sym_goto] = ACTIONS(3493), + [anon_sym___try] = ACTIONS(3493), + [anon_sym___leave] = ACTIONS(3493), + [anon_sym_not] = ACTIONS(3493), + [anon_sym_compl] = ACTIONS(3493), + [anon_sym_DASH_DASH] = ACTIONS(3495), + [anon_sym_PLUS_PLUS] = ACTIONS(3495), + [anon_sym_sizeof] = ACTIONS(3493), + [anon_sym___alignof__] = ACTIONS(3493), + [anon_sym___alignof] = ACTIONS(3493), + [anon_sym__alignof] = ACTIONS(3493), + [anon_sym_alignof] = ACTIONS(3493), + [anon_sym__Alignof] = ACTIONS(3493), + [anon_sym_offsetof] = ACTIONS(3493), + [anon_sym__Generic] = ACTIONS(3493), + [anon_sym_asm] = ACTIONS(3493), + [anon_sym___asm__] = ACTIONS(3493), + [sym_number_literal] = ACTIONS(3495), + [anon_sym_L_SQUOTE] = ACTIONS(3495), + [anon_sym_u_SQUOTE] = ACTIONS(3495), + [anon_sym_U_SQUOTE] = ACTIONS(3495), + [anon_sym_u8_SQUOTE] = ACTIONS(3495), + [anon_sym_SQUOTE] = ACTIONS(3495), + [anon_sym_L_DQUOTE] = ACTIONS(3495), + [anon_sym_u_DQUOTE] = ACTIONS(3495), + [anon_sym_U_DQUOTE] = ACTIONS(3495), + [anon_sym_u8_DQUOTE] = ACTIONS(3495), + [anon_sym_DQUOTE] = ACTIONS(3495), + [sym_true] = ACTIONS(3493), + [sym_false] = ACTIONS(3493), + [anon_sym_NULL] = ACTIONS(3493), + [anon_sym_nullptr] = ACTIONS(3493), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3493), + [anon_sym_decltype] = ACTIONS(3493), + [anon_sym_virtual] = ACTIONS(3493), + [anon_sym_alignas] = ACTIONS(3493), + [anon_sym_explicit] = ACTIONS(3493), + [anon_sym_typename] = ACTIONS(3493), + [anon_sym_template] = ACTIONS(3493), + [anon_sym_operator] = ACTIONS(3493), + [anon_sym_try] = ACTIONS(3493), + [anon_sym_delete] = ACTIONS(3493), + [anon_sym_throw] = ACTIONS(3493), + [anon_sym_namespace] = ACTIONS(3493), + [anon_sym_using] = ACTIONS(3493), + [anon_sym_static_assert] = ACTIONS(3493), + [anon_sym_concept] = ACTIONS(3493), + [anon_sym_co_return] = ACTIONS(3493), + [anon_sym_co_yield] = ACTIONS(3493), + [anon_sym_R_DQUOTE] = ACTIONS(3495), + [anon_sym_LR_DQUOTE] = ACTIONS(3495), + [anon_sym_uR_DQUOTE] = ACTIONS(3495), + [anon_sym_UR_DQUOTE] = ACTIONS(3495), + [anon_sym_u8R_DQUOTE] = ACTIONS(3495), + [anon_sym_co_await] = ACTIONS(3493), + [anon_sym_new] = ACTIONS(3493), + [anon_sym_requires] = ACTIONS(3493), + [sym_this] = ACTIONS(3493), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3495), + [sym_semgrep_named_ellipsis] = ACTIONS(3495), + }, + [554] = { + [sym_identifier] = ACTIONS(3509), + [aux_sym_preproc_include_token1] = ACTIONS(3509), + [aux_sym_preproc_def_token1] = ACTIONS(3509), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3511), + [aux_sym_preproc_if_token1] = ACTIONS(3509), + [aux_sym_preproc_if_token2] = ACTIONS(3509), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3509), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3509), + [aux_sym_preproc_else_token1] = ACTIONS(3509), + [aux_sym_preproc_elif_token1] = ACTIONS(3509), + [sym_preproc_directive] = ACTIONS(3509), + [anon_sym_LPAREN2] = ACTIONS(3511), + [anon_sym_BANG] = ACTIONS(3511), + [anon_sym_TILDE] = ACTIONS(3511), + [anon_sym_DASH] = ACTIONS(3509), + [anon_sym_PLUS] = ACTIONS(3509), + [anon_sym_STAR] = ACTIONS(3511), + [anon_sym_AMP_AMP] = ACTIONS(3511), + [anon_sym_AMP] = ACTIONS(3509), + [anon_sym_SEMI] = ACTIONS(3511), + [anon_sym___extension__] = ACTIONS(3509), + [anon_sym_typedef] = 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___cdecl] = ACTIONS(3509), + [anon_sym___clrcall] = ACTIONS(3509), + [anon_sym___stdcall] = ACTIONS(3509), + [anon_sym___fastcall] = ACTIONS(3509), + [anon_sym___thiscall] = ACTIONS(3509), + [anon_sym___vectorcall] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3511), + [anon_sym_signed] = ACTIONS(3509), + [anon_sym_unsigned] = ACTIONS(3509), + [anon_sym_long] = ACTIONS(3509), + [anon_sym_short] = ACTIONS(3509), + [anon_sym_LBRACK] = ACTIONS(3509), + [anon_sym_static] = ACTIONS(3509), + [anon_sym_register] = ACTIONS(3509), + [anon_sym_inline] = ACTIONS(3509), + [anon_sym___inline] = ACTIONS(3509), + [anon_sym___inline__] = ACTIONS(3509), + [anon_sym___forceinline] = ACTIONS(3509), + [anon_sym_thread_local] = ACTIONS(3509), + [anon_sym___thread] = ACTIONS(3509), + [anon_sym_const] = ACTIONS(3509), + [anon_sym_constexpr] = ACTIONS(3509), + [anon_sym_volatile] = ACTIONS(3509), + [anon_sym_restrict] = ACTIONS(3509), + [anon_sym___restrict__] = ACTIONS(3509), + [anon_sym__Atomic] = ACTIONS(3509), + [anon_sym__Noreturn] = ACTIONS(3509), + [anon_sym_noreturn] = ACTIONS(3509), + [anon_sym_mutable] = ACTIONS(3509), + [anon_sym_constinit] = ACTIONS(3509), + [anon_sym_consteval] = ACTIONS(3509), + [sym_primitive_type] = ACTIONS(3509), + [anon_sym_enum] = ACTIONS(3509), + [anon_sym_class] = ACTIONS(3509), + [anon_sym_struct] = ACTIONS(3509), + [anon_sym_union] = ACTIONS(3509), + [anon_sym_if] = ACTIONS(3509), + [anon_sym_switch] = ACTIONS(3509), + [anon_sym_case] = ACTIONS(3509), + [anon_sym_default] = ACTIONS(3509), + [anon_sym_while] = ACTIONS(3509), + [anon_sym_do] = ACTIONS(3509), + [anon_sym_for] = ACTIONS(3509), + [anon_sym_return] = ACTIONS(3509), + [anon_sym_break] = ACTIONS(3509), + [anon_sym_continue] = ACTIONS(3509), + [anon_sym_goto] = ACTIONS(3509), + [anon_sym___try] = ACTIONS(3509), + [anon_sym___leave] = ACTIONS(3509), + [anon_sym_not] = ACTIONS(3509), + [anon_sym_compl] = ACTIONS(3509), + [anon_sym_DASH_DASH] = ACTIONS(3511), + [anon_sym_PLUS_PLUS] = ACTIONS(3511), + [anon_sym_sizeof] = ACTIONS(3509), + [anon_sym___alignof__] = ACTIONS(3509), + [anon_sym___alignof] = ACTIONS(3509), + [anon_sym__alignof] = ACTIONS(3509), + [anon_sym_alignof] = ACTIONS(3509), + [anon_sym__Alignof] = ACTIONS(3509), + [anon_sym_offsetof] = ACTIONS(3509), + [anon_sym__Generic] = ACTIONS(3509), + [anon_sym_asm] = ACTIONS(3509), + [anon_sym___asm__] = ACTIONS(3509), + [sym_number_literal] = ACTIONS(3511), + [anon_sym_L_SQUOTE] = ACTIONS(3511), + [anon_sym_u_SQUOTE] = ACTIONS(3511), + [anon_sym_U_SQUOTE] = ACTIONS(3511), + [anon_sym_u8_SQUOTE] = ACTIONS(3511), + [anon_sym_SQUOTE] = ACTIONS(3511), + [anon_sym_L_DQUOTE] = ACTIONS(3511), + [anon_sym_u_DQUOTE] = ACTIONS(3511), + [anon_sym_U_DQUOTE] = ACTIONS(3511), + [anon_sym_u8_DQUOTE] = ACTIONS(3511), + [anon_sym_DQUOTE] = ACTIONS(3511), + [sym_true] = ACTIONS(3509), + [sym_false] = ACTIONS(3509), + [anon_sym_NULL] = ACTIONS(3509), + [anon_sym_nullptr] = ACTIONS(3509), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3509), + [anon_sym_decltype] = ACTIONS(3509), + [anon_sym_virtual] = ACTIONS(3509), + [anon_sym_alignas] = ACTIONS(3509), + [anon_sym_explicit] = ACTIONS(3509), + [anon_sym_typename] = ACTIONS(3509), + [anon_sym_template] = ACTIONS(3509), + [anon_sym_operator] = ACTIONS(3509), + [anon_sym_try] = ACTIONS(3509), + [anon_sym_delete] = ACTIONS(3509), + [anon_sym_throw] = ACTIONS(3509), + [anon_sym_namespace] = ACTIONS(3509), + [anon_sym_using] = ACTIONS(3509), + [anon_sym_static_assert] = ACTIONS(3509), + [anon_sym_concept] = ACTIONS(3509), + [anon_sym_co_return] = ACTIONS(3509), + [anon_sym_co_yield] = ACTIONS(3509), + [anon_sym_R_DQUOTE] = ACTIONS(3511), + [anon_sym_LR_DQUOTE] = ACTIONS(3511), + [anon_sym_uR_DQUOTE] = ACTIONS(3511), + [anon_sym_UR_DQUOTE] = ACTIONS(3511), + [anon_sym_u8R_DQUOTE] = ACTIONS(3511), + [anon_sym_co_await] = ACTIONS(3509), + [anon_sym_new] = ACTIONS(3509), + [anon_sym_requires] = ACTIONS(3509), + [sym_this] = ACTIONS(3509), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3511), + [sym_semgrep_named_ellipsis] = ACTIONS(3511), + }, + [555] = { + [sym_identifier] = ACTIONS(3519), + [aux_sym_preproc_include_token1] = ACTIONS(3519), + [aux_sym_preproc_def_token1] = ACTIONS(3519), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3521), + [aux_sym_preproc_if_token1] = ACTIONS(3519), + [aux_sym_preproc_if_token2] = ACTIONS(3519), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3519), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3519), + [aux_sym_preproc_else_token1] = ACTIONS(3519), + [aux_sym_preproc_elif_token1] = ACTIONS(3519), + [sym_preproc_directive] = ACTIONS(3519), + [anon_sym_LPAREN2] = ACTIONS(3521), + [anon_sym_BANG] = ACTIONS(3521), + [anon_sym_TILDE] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(3519), + [anon_sym_STAR] = ACTIONS(3521), + [anon_sym_AMP_AMP] = ACTIONS(3521), + [anon_sym_AMP] = ACTIONS(3519), + [anon_sym_SEMI] = ACTIONS(3521), + [anon_sym___extension__] = ACTIONS(3519), + [anon_sym_typedef] = ACTIONS(3519), + [anon_sym_extern] = ACTIONS(3519), + [anon_sym___attribute__] = ACTIONS(3519), + [anon_sym_COLON_COLON] = ACTIONS(3521), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3521), + [anon_sym___declspec] = ACTIONS(3519), + [anon_sym___based] = ACTIONS(3519), + [anon_sym___cdecl] = ACTIONS(3519), + [anon_sym___clrcall] = ACTIONS(3519), + [anon_sym___stdcall] = ACTIONS(3519), + [anon_sym___fastcall] = ACTIONS(3519), + [anon_sym___thiscall] = ACTIONS(3519), + [anon_sym___vectorcall] = ACTIONS(3519), + [anon_sym_LBRACE] = ACTIONS(3521), + [anon_sym_signed] = ACTIONS(3519), + [anon_sym_unsigned] = ACTIONS(3519), + [anon_sym_long] = ACTIONS(3519), + [anon_sym_short] = ACTIONS(3519), + [anon_sym_LBRACK] = ACTIONS(3519), + [anon_sym_static] = ACTIONS(3519), + [anon_sym_register] = ACTIONS(3519), + [anon_sym_inline] = ACTIONS(3519), + [anon_sym___inline] = ACTIONS(3519), + [anon_sym___inline__] = ACTIONS(3519), + [anon_sym___forceinline] = ACTIONS(3519), + [anon_sym_thread_local] = ACTIONS(3519), + [anon_sym___thread] = ACTIONS(3519), + [anon_sym_const] = ACTIONS(3519), + [anon_sym_constexpr] = ACTIONS(3519), + [anon_sym_volatile] = ACTIONS(3519), + [anon_sym_restrict] = ACTIONS(3519), + [anon_sym___restrict__] = ACTIONS(3519), + [anon_sym__Atomic] = ACTIONS(3519), + [anon_sym__Noreturn] = ACTIONS(3519), + [anon_sym_noreturn] = ACTIONS(3519), + [anon_sym_mutable] = ACTIONS(3519), + [anon_sym_constinit] = ACTIONS(3519), + [anon_sym_consteval] = ACTIONS(3519), + [sym_primitive_type] = ACTIONS(3519), + [anon_sym_enum] = ACTIONS(3519), + [anon_sym_class] = ACTIONS(3519), + [anon_sym_struct] = ACTIONS(3519), + [anon_sym_union] = ACTIONS(3519), + [anon_sym_if] = ACTIONS(3519), + [anon_sym_switch] = ACTIONS(3519), + [anon_sym_case] = ACTIONS(3519), + [anon_sym_default] = ACTIONS(3519), + [anon_sym_while] = ACTIONS(3519), + [anon_sym_do] = ACTIONS(3519), + [anon_sym_for] = ACTIONS(3519), + [anon_sym_return] = ACTIONS(3519), + [anon_sym_break] = ACTIONS(3519), + [anon_sym_continue] = ACTIONS(3519), + [anon_sym_goto] = ACTIONS(3519), + [anon_sym___try] = ACTIONS(3519), + [anon_sym___leave] = ACTIONS(3519), + [anon_sym_not] = ACTIONS(3519), + [anon_sym_compl] = ACTIONS(3519), + [anon_sym_DASH_DASH] = ACTIONS(3521), + [anon_sym_PLUS_PLUS] = ACTIONS(3521), + [anon_sym_sizeof] = ACTIONS(3519), + [anon_sym___alignof__] = ACTIONS(3519), + [anon_sym___alignof] = ACTIONS(3519), + [anon_sym__alignof] = ACTIONS(3519), + [anon_sym_alignof] = ACTIONS(3519), + [anon_sym__Alignof] = ACTIONS(3519), + [anon_sym_offsetof] = ACTIONS(3519), + [anon_sym__Generic] = ACTIONS(3519), + [anon_sym_asm] = ACTIONS(3519), + [anon_sym___asm__] = ACTIONS(3519), + [sym_number_literal] = ACTIONS(3521), + [anon_sym_L_SQUOTE] = ACTIONS(3521), + [anon_sym_u_SQUOTE] = ACTIONS(3521), + [anon_sym_U_SQUOTE] = ACTIONS(3521), + [anon_sym_u8_SQUOTE] = ACTIONS(3521), + [anon_sym_SQUOTE] = ACTIONS(3521), + [anon_sym_L_DQUOTE] = ACTIONS(3521), + [anon_sym_u_DQUOTE] = ACTIONS(3521), + [anon_sym_U_DQUOTE] = ACTIONS(3521), + [anon_sym_u8_DQUOTE] = ACTIONS(3521), + [anon_sym_DQUOTE] = ACTIONS(3521), + [sym_true] = ACTIONS(3519), + [sym_false] = ACTIONS(3519), + [anon_sym_NULL] = ACTIONS(3519), + [anon_sym_nullptr] = ACTIONS(3519), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3519), + [anon_sym_decltype] = ACTIONS(3519), + [anon_sym_virtual] = ACTIONS(3519), + [anon_sym_alignas] = ACTIONS(3519), + [anon_sym_explicit] = ACTIONS(3519), + [anon_sym_typename] = ACTIONS(3519), + [anon_sym_template] = ACTIONS(3519), + [anon_sym_operator] = ACTIONS(3519), + [anon_sym_try] = ACTIONS(3519), + [anon_sym_delete] = ACTIONS(3519), + [anon_sym_throw] = ACTIONS(3519), + [anon_sym_namespace] = ACTIONS(3519), + [anon_sym_using] = ACTIONS(3519), + [anon_sym_static_assert] = ACTIONS(3519), + [anon_sym_concept] = ACTIONS(3519), + [anon_sym_co_return] = ACTIONS(3519), + [anon_sym_co_yield] = ACTIONS(3519), + [anon_sym_R_DQUOTE] = ACTIONS(3521), + [anon_sym_LR_DQUOTE] = ACTIONS(3521), + [anon_sym_uR_DQUOTE] = ACTIONS(3521), + [anon_sym_UR_DQUOTE] = ACTIONS(3521), + [anon_sym_u8R_DQUOTE] = ACTIONS(3521), + [anon_sym_co_await] = ACTIONS(3519), + [anon_sym_new] = ACTIONS(3519), + [anon_sym_requires] = ACTIONS(3519), + [sym_this] = ACTIONS(3519), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3521), + [sym_semgrep_named_ellipsis] = ACTIONS(3521), + }, + [556] = { + [sym_identifier] = ACTIONS(3525), + [aux_sym_preproc_include_token1] = ACTIONS(3525), + [aux_sym_preproc_def_token1] = ACTIONS(3525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3527), + [aux_sym_preproc_if_token1] = ACTIONS(3525), + [aux_sym_preproc_if_token2] = ACTIONS(3525), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3525), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3525), + [aux_sym_preproc_else_token1] = ACTIONS(3525), + [aux_sym_preproc_elif_token1] = ACTIONS(3525), + [sym_preproc_directive] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(3527), + [anon_sym_BANG] = ACTIONS(3527), + [anon_sym_TILDE] = ACTIONS(3527), + [anon_sym_DASH] = ACTIONS(3525), + [anon_sym_PLUS] = ACTIONS(3525), + [anon_sym_STAR] = ACTIONS(3527), + [anon_sym_AMP_AMP] = ACTIONS(3527), + [anon_sym_AMP] = ACTIONS(3525), + [anon_sym_SEMI] = ACTIONS(3527), + [anon_sym___extension__] = ACTIONS(3525), + [anon_sym_typedef] = ACTIONS(3525), + [anon_sym_extern] = ACTIONS(3525), + [anon_sym___attribute__] = ACTIONS(3525), + [anon_sym_COLON_COLON] = ACTIONS(3527), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3527), + [anon_sym___declspec] = ACTIONS(3525), + [anon_sym___based] = ACTIONS(3525), + [anon_sym___cdecl] = ACTIONS(3525), + [anon_sym___clrcall] = ACTIONS(3525), + [anon_sym___stdcall] = ACTIONS(3525), + [anon_sym___fastcall] = ACTIONS(3525), + [anon_sym___thiscall] = ACTIONS(3525), + [anon_sym___vectorcall] = ACTIONS(3525), + [anon_sym_LBRACE] = ACTIONS(3527), + [anon_sym_signed] = ACTIONS(3525), + [anon_sym_unsigned] = ACTIONS(3525), + [anon_sym_long] = ACTIONS(3525), + [anon_sym_short] = ACTIONS(3525), + [anon_sym_LBRACK] = ACTIONS(3525), + [anon_sym_static] = ACTIONS(3525), + [anon_sym_register] = ACTIONS(3525), + [anon_sym_inline] = ACTIONS(3525), + [anon_sym___inline] = ACTIONS(3525), + [anon_sym___inline__] = ACTIONS(3525), + [anon_sym___forceinline] = ACTIONS(3525), + [anon_sym_thread_local] = ACTIONS(3525), + [anon_sym___thread] = ACTIONS(3525), + [anon_sym_const] = ACTIONS(3525), + [anon_sym_constexpr] = ACTIONS(3525), + [anon_sym_volatile] = ACTIONS(3525), + [anon_sym_restrict] = ACTIONS(3525), + [anon_sym___restrict__] = ACTIONS(3525), + [anon_sym__Atomic] = ACTIONS(3525), + [anon_sym__Noreturn] = ACTIONS(3525), + [anon_sym_noreturn] = ACTIONS(3525), + [anon_sym_mutable] = ACTIONS(3525), + [anon_sym_constinit] = ACTIONS(3525), + [anon_sym_consteval] = ACTIONS(3525), + [sym_primitive_type] = ACTIONS(3525), + [anon_sym_enum] = ACTIONS(3525), + [anon_sym_class] = ACTIONS(3525), + [anon_sym_struct] = ACTIONS(3525), + [anon_sym_union] = ACTIONS(3525), + [anon_sym_if] = ACTIONS(3525), + [anon_sym_switch] = ACTIONS(3525), + [anon_sym_case] = ACTIONS(3525), + [anon_sym_default] = ACTIONS(3525), + [anon_sym_while] = ACTIONS(3525), + [anon_sym_do] = ACTIONS(3525), + [anon_sym_for] = ACTIONS(3525), + [anon_sym_return] = ACTIONS(3525), + [anon_sym_break] = ACTIONS(3525), + [anon_sym_continue] = ACTIONS(3525), + [anon_sym_goto] = ACTIONS(3525), + [anon_sym___try] = ACTIONS(3525), + [anon_sym___leave] = ACTIONS(3525), + [anon_sym_not] = ACTIONS(3525), + [anon_sym_compl] = ACTIONS(3525), + [anon_sym_DASH_DASH] = ACTIONS(3527), + [anon_sym_PLUS_PLUS] = ACTIONS(3527), + [anon_sym_sizeof] = ACTIONS(3525), + [anon_sym___alignof__] = ACTIONS(3525), + [anon_sym___alignof] = ACTIONS(3525), + [anon_sym__alignof] = ACTIONS(3525), + [anon_sym_alignof] = ACTIONS(3525), + [anon_sym__Alignof] = ACTIONS(3525), + [anon_sym_offsetof] = ACTIONS(3525), + [anon_sym__Generic] = ACTIONS(3525), + [anon_sym_asm] = ACTIONS(3525), + [anon_sym___asm__] = ACTIONS(3525), + [sym_number_literal] = ACTIONS(3527), + [anon_sym_L_SQUOTE] = ACTIONS(3527), + [anon_sym_u_SQUOTE] = ACTIONS(3527), + [anon_sym_U_SQUOTE] = ACTIONS(3527), + [anon_sym_u8_SQUOTE] = ACTIONS(3527), + [anon_sym_SQUOTE] = ACTIONS(3527), + [anon_sym_L_DQUOTE] = ACTIONS(3527), + [anon_sym_u_DQUOTE] = ACTIONS(3527), + [anon_sym_U_DQUOTE] = ACTIONS(3527), + [anon_sym_u8_DQUOTE] = ACTIONS(3527), + [anon_sym_DQUOTE] = ACTIONS(3527), + [sym_true] = ACTIONS(3525), + [sym_false] = ACTIONS(3525), + [anon_sym_NULL] = ACTIONS(3525), + [anon_sym_nullptr] = ACTIONS(3525), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3525), + [anon_sym_decltype] = ACTIONS(3525), + [anon_sym_virtual] = ACTIONS(3525), + [anon_sym_alignas] = ACTIONS(3525), + [anon_sym_explicit] = ACTIONS(3525), + [anon_sym_typename] = ACTIONS(3525), + [anon_sym_template] = ACTIONS(3525), + [anon_sym_operator] = ACTIONS(3525), + [anon_sym_try] = ACTIONS(3525), + [anon_sym_delete] = ACTIONS(3525), + [anon_sym_throw] = ACTIONS(3525), + [anon_sym_namespace] = ACTIONS(3525), + [anon_sym_using] = ACTIONS(3525), + [anon_sym_static_assert] = ACTIONS(3525), + [anon_sym_concept] = ACTIONS(3525), + [anon_sym_co_return] = ACTIONS(3525), + [anon_sym_co_yield] = ACTIONS(3525), + [anon_sym_R_DQUOTE] = ACTIONS(3527), + [anon_sym_LR_DQUOTE] = ACTIONS(3527), + [anon_sym_uR_DQUOTE] = ACTIONS(3527), + [anon_sym_UR_DQUOTE] = ACTIONS(3527), + [anon_sym_u8R_DQUOTE] = ACTIONS(3527), + [anon_sym_co_await] = ACTIONS(3525), + [anon_sym_new] = ACTIONS(3525), + [anon_sym_requires] = ACTIONS(3525), + [sym_this] = ACTIONS(3525), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3527), + [sym_semgrep_named_ellipsis] = ACTIONS(3527), + }, + [557] = { + [sym_identifier] = ACTIONS(3555), + [aux_sym_preproc_include_token1] = ACTIONS(3555), + [aux_sym_preproc_def_token1] = ACTIONS(3555), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3557), + [aux_sym_preproc_if_token1] = ACTIONS(3555), + [aux_sym_preproc_if_token2] = ACTIONS(3555), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3555), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3555), + [aux_sym_preproc_else_token1] = ACTIONS(3555), + [aux_sym_preproc_elif_token1] = ACTIONS(3555), + [sym_preproc_directive] = ACTIONS(3555), + [anon_sym_LPAREN2] = ACTIONS(3557), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3557), + [anon_sym_DASH] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3555), + [anon_sym_STAR] = ACTIONS(3557), + [anon_sym_AMP_AMP] = ACTIONS(3557), + [anon_sym_AMP] = ACTIONS(3555), + [anon_sym_SEMI] = ACTIONS(3557), + [anon_sym___extension__] = ACTIONS(3555), + [anon_sym_typedef] = ACTIONS(3555), + [anon_sym_extern] = ACTIONS(3555), + [anon_sym___attribute__] = ACTIONS(3555), + [anon_sym_COLON_COLON] = ACTIONS(3557), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3557), + [anon_sym___declspec] = ACTIONS(3555), + [anon_sym___based] = ACTIONS(3555), + [anon_sym___cdecl] = ACTIONS(3555), + [anon_sym___clrcall] = ACTIONS(3555), + [anon_sym___stdcall] = ACTIONS(3555), + [anon_sym___fastcall] = ACTIONS(3555), + [anon_sym___thiscall] = ACTIONS(3555), + [anon_sym___vectorcall] = ACTIONS(3555), + [anon_sym_LBRACE] = ACTIONS(3557), + [anon_sym_signed] = ACTIONS(3555), + [anon_sym_unsigned] = ACTIONS(3555), + [anon_sym_long] = ACTIONS(3555), + [anon_sym_short] = ACTIONS(3555), + [anon_sym_LBRACK] = ACTIONS(3555), + [anon_sym_static] = ACTIONS(3555), + [anon_sym_register] = ACTIONS(3555), + [anon_sym_inline] = ACTIONS(3555), + [anon_sym___inline] = ACTIONS(3555), + [anon_sym___inline__] = ACTIONS(3555), + [anon_sym___forceinline] = ACTIONS(3555), + [anon_sym_thread_local] = ACTIONS(3555), + [anon_sym___thread] = ACTIONS(3555), + [anon_sym_const] = ACTIONS(3555), + [anon_sym_constexpr] = ACTIONS(3555), + [anon_sym_volatile] = ACTIONS(3555), + [anon_sym_restrict] = ACTIONS(3555), + [anon_sym___restrict__] = ACTIONS(3555), + [anon_sym__Atomic] = ACTIONS(3555), + [anon_sym__Noreturn] = ACTIONS(3555), + [anon_sym_noreturn] = ACTIONS(3555), + [anon_sym_mutable] = ACTIONS(3555), + [anon_sym_constinit] = ACTIONS(3555), + [anon_sym_consteval] = ACTIONS(3555), + [sym_primitive_type] = ACTIONS(3555), + [anon_sym_enum] = ACTIONS(3555), + [anon_sym_class] = ACTIONS(3555), + [anon_sym_struct] = ACTIONS(3555), + [anon_sym_union] = ACTIONS(3555), + [anon_sym_if] = ACTIONS(3555), + [anon_sym_switch] = ACTIONS(3555), + [anon_sym_case] = ACTIONS(3555), + [anon_sym_default] = ACTIONS(3555), + [anon_sym_while] = ACTIONS(3555), + [anon_sym_do] = ACTIONS(3555), + [anon_sym_for] = ACTIONS(3555), + [anon_sym_return] = ACTIONS(3555), + [anon_sym_break] = ACTIONS(3555), + [anon_sym_continue] = ACTIONS(3555), + [anon_sym_goto] = ACTIONS(3555), + [anon_sym___try] = ACTIONS(3555), + [anon_sym___leave] = ACTIONS(3555), + [anon_sym_not] = ACTIONS(3555), + [anon_sym_compl] = ACTIONS(3555), + [anon_sym_DASH_DASH] = ACTIONS(3557), + [anon_sym_PLUS_PLUS] = ACTIONS(3557), + [anon_sym_sizeof] = ACTIONS(3555), + [anon_sym___alignof__] = ACTIONS(3555), + [anon_sym___alignof] = ACTIONS(3555), + [anon_sym__alignof] = ACTIONS(3555), + [anon_sym_alignof] = ACTIONS(3555), + [anon_sym__Alignof] = ACTIONS(3555), + [anon_sym_offsetof] = ACTIONS(3555), + [anon_sym__Generic] = ACTIONS(3555), + [anon_sym_asm] = ACTIONS(3555), + [anon_sym___asm__] = ACTIONS(3555), + [sym_number_literal] = ACTIONS(3557), + [anon_sym_L_SQUOTE] = ACTIONS(3557), + [anon_sym_u_SQUOTE] = ACTIONS(3557), + [anon_sym_U_SQUOTE] = ACTIONS(3557), + [anon_sym_u8_SQUOTE] = ACTIONS(3557), + [anon_sym_SQUOTE] = ACTIONS(3557), + [anon_sym_L_DQUOTE] = ACTIONS(3557), + [anon_sym_u_DQUOTE] = ACTIONS(3557), + [anon_sym_U_DQUOTE] = ACTIONS(3557), + [anon_sym_u8_DQUOTE] = ACTIONS(3557), + [anon_sym_DQUOTE] = ACTIONS(3557), + [sym_true] = ACTIONS(3555), + [sym_false] = ACTIONS(3555), + [anon_sym_NULL] = ACTIONS(3555), + [anon_sym_nullptr] = ACTIONS(3555), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3555), + [anon_sym_decltype] = ACTIONS(3555), + [anon_sym_virtual] = ACTIONS(3555), + [anon_sym_alignas] = ACTIONS(3555), + [anon_sym_explicit] = ACTIONS(3555), + [anon_sym_typename] = ACTIONS(3555), + [anon_sym_template] = ACTIONS(3555), + [anon_sym_operator] = ACTIONS(3555), + [anon_sym_try] = ACTIONS(3555), + [anon_sym_delete] = ACTIONS(3555), + [anon_sym_throw] = ACTIONS(3555), + [anon_sym_namespace] = ACTIONS(3555), + [anon_sym_using] = ACTIONS(3555), + [anon_sym_static_assert] = ACTIONS(3555), + [anon_sym_concept] = ACTIONS(3555), + [anon_sym_co_return] = ACTIONS(3555), + [anon_sym_co_yield] = ACTIONS(3555), + [anon_sym_R_DQUOTE] = ACTIONS(3557), + [anon_sym_LR_DQUOTE] = ACTIONS(3557), + [anon_sym_uR_DQUOTE] = ACTIONS(3557), + [anon_sym_UR_DQUOTE] = ACTIONS(3557), + [anon_sym_u8R_DQUOTE] = ACTIONS(3557), + [anon_sym_co_await] = ACTIONS(3555), + [anon_sym_new] = ACTIONS(3555), + [anon_sym_requires] = ACTIONS(3555), + [sym_this] = ACTIONS(3555), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3557), + [sym_semgrep_named_ellipsis] = ACTIONS(3557), + }, + [558] = { + [sym_identifier] = ACTIONS(3561), + [aux_sym_preproc_include_token1] = ACTIONS(3561), + [aux_sym_preproc_def_token1] = ACTIONS(3561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3563), + [aux_sym_preproc_if_token1] = ACTIONS(3561), + [aux_sym_preproc_if_token2] = ACTIONS(3561), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3561), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3561), + [aux_sym_preproc_else_token1] = ACTIONS(3561), + [aux_sym_preproc_elif_token1] = ACTIONS(3561), + [sym_preproc_directive] = ACTIONS(3561), + [anon_sym_LPAREN2] = ACTIONS(3563), + [anon_sym_BANG] = ACTIONS(3563), + [anon_sym_TILDE] = ACTIONS(3563), + [anon_sym_DASH] = ACTIONS(3561), + [anon_sym_PLUS] = ACTIONS(3561), + [anon_sym_STAR] = ACTIONS(3563), + [anon_sym_AMP_AMP] = ACTIONS(3563), + [anon_sym_AMP] = ACTIONS(3561), + [anon_sym_SEMI] = ACTIONS(3563), + [anon_sym___extension__] = ACTIONS(3561), + [anon_sym_typedef] = ACTIONS(3561), + [anon_sym_extern] = ACTIONS(3561), + [anon_sym___attribute__] = ACTIONS(3561), + [anon_sym_COLON_COLON] = ACTIONS(3563), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3563), + [anon_sym___declspec] = ACTIONS(3561), + [anon_sym___based] = ACTIONS(3561), + [anon_sym___cdecl] = ACTIONS(3561), + [anon_sym___clrcall] = ACTIONS(3561), + [anon_sym___stdcall] = ACTIONS(3561), + [anon_sym___fastcall] = ACTIONS(3561), + [anon_sym___thiscall] = ACTIONS(3561), + [anon_sym___vectorcall] = ACTIONS(3561), + [anon_sym_LBRACE] = ACTIONS(3563), + [anon_sym_signed] = ACTIONS(3561), + [anon_sym_unsigned] = ACTIONS(3561), + [anon_sym_long] = ACTIONS(3561), + [anon_sym_short] = ACTIONS(3561), + [anon_sym_LBRACK] = ACTIONS(3561), + [anon_sym_static] = ACTIONS(3561), + [anon_sym_register] = ACTIONS(3561), + [anon_sym_inline] = ACTIONS(3561), + [anon_sym___inline] = ACTIONS(3561), + [anon_sym___inline__] = ACTIONS(3561), + [anon_sym___forceinline] = ACTIONS(3561), + [anon_sym_thread_local] = ACTIONS(3561), + [anon_sym___thread] = ACTIONS(3561), + [anon_sym_const] = ACTIONS(3561), + [anon_sym_constexpr] = ACTIONS(3561), + [anon_sym_volatile] = ACTIONS(3561), + [anon_sym_restrict] = ACTIONS(3561), + [anon_sym___restrict__] = ACTIONS(3561), + [anon_sym__Atomic] = ACTIONS(3561), + [anon_sym__Noreturn] = ACTIONS(3561), + [anon_sym_noreturn] = ACTIONS(3561), + [anon_sym_mutable] = ACTIONS(3561), + [anon_sym_constinit] = ACTIONS(3561), + [anon_sym_consteval] = ACTIONS(3561), + [sym_primitive_type] = ACTIONS(3561), + [anon_sym_enum] = ACTIONS(3561), + [anon_sym_class] = ACTIONS(3561), + [anon_sym_struct] = ACTIONS(3561), + [anon_sym_union] = ACTIONS(3561), + [anon_sym_if] = ACTIONS(3561), + [anon_sym_switch] = ACTIONS(3561), + [anon_sym_case] = ACTIONS(3561), + [anon_sym_default] = ACTIONS(3561), + [anon_sym_while] = ACTIONS(3561), + [anon_sym_do] = ACTIONS(3561), + [anon_sym_for] = ACTIONS(3561), + [anon_sym_return] = ACTIONS(3561), + [anon_sym_break] = ACTIONS(3561), + [anon_sym_continue] = ACTIONS(3561), + [anon_sym_goto] = ACTIONS(3561), + [anon_sym___try] = ACTIONS(3561), + [anon_sym___leave] = ACTIONS(3561), + [anon_sym_not] = ACTIONS(3561), + [anon_sym_compl] = ACTIONS(3561), + [anon_sym_DASH_DASH] = ACTIONS(3563), + [anon_sym_PLUS_PLUS] = ACTIONS(3563), + [anon_sym_sizeof] = ACTIONS(3561), + [anon_sym___alignof__] = ACTIONS(3561), + [anon_sym___alignof] = ACTIONS(3561), + [anon_sym__alignof] = ACTIONS(3561), + [anon_sym_alignof] = ACTIONS(3561), + [anon_sym__Alignof] = ACTIONS(3561), + [anon_sym_offsetof] = ACTIONS(3561), + [anon_sym__Generic] = ACTIONS(3561), + [anon_sym_asm] = ACTIONS(3561), + [anon_sym___asm__] = ACTIONS(3561), + [sym_number_literal] = ACTIONS(3563), + [anon_sym_L_SQUOTE] = ACTIONS(3563), + [anon_sym_u_SQUOTE] = ACTIONS(3563), + [anon_sym_U_SQUOTE] = ACTIONS(3563), + [anon_sym_u8_SQUOTE] = ACTIONS(3563), + [anon_sym_SQUOTE] = ACTIONS(3563), + [anon_sym_L_DQUOTE] = ACTIONS(3563), + [anon_sym_u_DQUOTE] = ACTIONS(3563), + [anon_sym_U_DQUOTE] = ACTIONS(3563), + [anon_sym_u8_DQUOTE] = ACTIONS(3563), + [anon_sym_DQUOTE] = ACTIONS(3563), + [sym_true] = ACTIONS(3561), + [sym_false] = ACTIONS(3561), + [anon_sym_NULL] = ACTIONS(3561), + [anon_sym_nullptr] = ACTIONS(3561), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3561), + [anon_sym_decltype] = ACTIONS(3561), + [anon_sym_virtual] = ACTIONS(3561), + [anon_sym_alignas] = ACTIONS(3561), + [anon_sym_explicit] = ACTIONS(3561), + [anon_sym_typename] = ACTIONS(3561), + [anon_sym_template] = ACTIONS(3561), + [anon_sym_operator] = ACTIONS(3561), + [anon_sym_try] = ACTIONS(3561), + [anon_sym_delete] = ACTIONS(3561), + [anon_sym_throw] = ACTIONS(3561), + [anon_sym_namespace] = ACTIONS(3561), + [anon_sym_using] = ACTIONS(3561), + [anon_sym_static_assert] = ACTIONS(3561), + [anon_sym_concept] = ACTIONS(3561), + [anon_sym_co_return] = ACTIONS(3561), + [anon_sym_co_yield] = ACTIONS(3561), + [anon_sym_R_DQUOTE] = ACTIONS(3563), + [anon_sym_LR_DQUOTE] = ACTIONS(3563), + [anon_sym_uR_DQUOTE] = ACTIONS(3563), + [anon_sym_UR_DQUOTE] = ACTIONS(3563), + [anon_sym_u8R_DQUOTE] = ACTIONS(3563), + [anon_sym_co_await] = ACTIONS(3561), + [anon_sym_new] = ACTIONS(3561), + [anon_sym_requires] = ACTIONS(3561), + [sym_this] = ACTIONS(3561), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3563), + [sym_semgrep_named_ellipsis] = ACTIONS(3563), + }, + [559] = { + [sym_identifier] = ACTIONS(3565), + [aux_sym_preproc_include_token1] = ACTIONS(3565), + [aux_sym_preproc_def_token1] = ACTIONS(3565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3567), + [aux_sym_preproc_if_token1] = ACTIONS(3565), + [aux_sym_preproc_if_token2] = ACTIONS(3565), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3565), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3565), + [aux_sym_preproc_else_token1] = ACTIONS(3565), + [aux_sym_preproc_elif_token1] = ACTIONS(3565), + [sym_preproc_directive] = ACTIONS(3565), + [anon_sym_LPAREN2] = ACTIONS(3567), + [anon_sym_BANG] = ACTIONS(3567), + [anon_sym_TILDE] = ACTIONS(3567), + [anon_sym_DASH] = ACTIONS(3565), + [anon_sym_PLUS] = ACTIONS(3565), + [anon_sym_STAR] = ACTIONS(3567), + [anon_sym_AMP_AMP] = ACTIONS(3567), + [anon_sym_AMP] = ACTIONS(3565), + [anon_sym_SEMI] = ACTIONS(3567), + [anon_sym___extension__] = ACTIONS(3565), + [anon_sym_typedef] = ACTIONS(3565), + [anon_sym_extern] = ACTIONS(3565), + [anon_sym___attribute__] = ACTIONS(3565), + [anon_sym_COLON_COLON] = ACTIONS(3567), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3567), + [anon_sym___declspec] = ACTIONS(3565), + [anon_sym___based] = ACTIONS(3565), + [anon_sym___cdecl] = ACTIONS(3565), + [anon_sym___clrcall] = ACTIONS(3565), + [anon_sym___stdcall] = ACTIONS(3565), + [anon_sym___fastcall] = ACTIONS(3565), + [anon_sym___thiscall] = ACTIONS(3565), + [anon_sym___vectorcall] = ACTIONS(3565), + [anon_sym_LBRACE] = ACTIONS(3567), + [anon_sym_signed] = ACTIONS(3565), + [anon_sym_unsigned] = ACTIONS(3565), + [anon_sym_long] = ACTIONS(3565), + [anon_sym_short] = ACTIONS(3565), + [anon_sym_LBRACK] = ACTIONS(3565), + [anon_sym_static] = ACTIONS(3565), + [anon_sym_register] = ACTIONS(3565), + [anon_sym_inline] = ACTIONS(3565), + [anon_sym___inline] = ACTIONS(3565), + [anon_sym___inline__] = ACTIONS(3565), + [anon_sym___forceinline] = ACTIONS(3565), + [anon_sym_thread_local] = ACTIONS(3565), + [anon_sym___thread] = ACTIONS(3565), + [anon_sym_const] = ACTIONS(3565), + [anon_sym_constexpr] = ACTIONS(3565), + [anon_sym_volatile] = ACTIONS(3565), + [anon_sym_restrict] = ACTIONS(3565), + [anon_sym___restrict__] = ACTIONS(3565), + [anon_sym__Atomic] = ACTIONS(3565), + [anon_sym__Noreturn] = ACTIONS(3565), + [anon_sym_noreturn] = ACTIONS(3565), + [anon_sym_mutable] = ACTIONS(3565), + [anon_sym_constinit] = ACTIONS(3565), + [anon_sym_consteval] = ACTIONS(3565), + [sym_primitive_type] = ACTIONS(3565), + [anon_sym_enum] = ACTIONS(3565), + [anon_sym_class] = ACTIONS(3565), + [anon_sym_struct] = ACTIONS(3565), + [anon_sym_union] = ACTIONS(3565), + [anon_sym_if] = ACTIONS(3565), + [anon_sym_switch] = ACTIONS(3565), + [anon_sym_case] = ACTIONS(3565), + [anon_sym_default] = ACTIONS(3565), + [anon_sym_while] = ACTIONS(3565), + [anon_sym_do] = ACTIONS(3565), + [anon_sym_for] = ACTIONS(3565), + [anon_sym_return] = ACTIONS(3565), + [anon_sym_break] = ACTIONS(3565), + [anon_sym_continue] = ACTIONS(3565), + [anon_sym_goto] = ACTIONS(3565), + [anon_sym___try] = ACTIONS(3565), + [anon_sym___leave] = ACTIONS(3565), + [anon_sym_not] = ACTIONS(3565), + [anon_sym_compl] = ACTIONS(3565), + [anon_sym_DASH_DASH] = ACTIONS(3567), + [anon_sym_PLUS_PLUS] = ACTIONS(3567), + [anon_sym_sizeof] = ACTIONS(3565), + [anon_sym___alignof__] = ACTIONS(3565), + [anon_sym___alignof] = ACTIONS(3565), + [anon_sym__alignof] = ACTIONS(3565), + [anon_sym_alignof] = ACTIONS(3565), + [anon_sym__Alignof] = ACTIONS(3565), + [anon_sym_offsetof] = ACTIONS(3565), + [anon_sym__Generic] = ACTIONS(3565), + [anon_sym_asm] = ACTIONS(3565), + [anon_sym___asm__] = ACTIONS(3565), + [sym_number_literal] = ACTIONS(3567), + [anon_sym_L_SQUOTE] = ACTIONS(3567), + [anon_sym_u_SQUOTE] = ACTIONS(3567), + [anon_sym_U_SQUOTE] = ACTIONS(3567), + [anon_sym_u8_SQUOTE] = ACTIONS(3567), + [anon_sym_SQUOTE] = ACTIONS(3567), + [anon_sym_L_DQUOTE] = ACTIONS(3567), + [anon_sym_u_DQUOTE] = ACTIONS(3567), + [anon_sym_U_DQUOTE] = ACTIONS(3567), + [anon_sym_u8_DQUOTE] = ACTIONS(3567), + [anon_sym_DQUOTE] = ACTIONS(3567), + [sym_true] = ACTIONS(3565), + [sym_false] = ACTIONS(3565), + [anon_sym_NULL] = ACTIONS(3565), + [anon_sym_nullptr] = ACTIONS(3565), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3565), + [anon_sym_decltype] = ACTIONS(3565), + [anon_sym_virtual] = ACTIONS(3565), + [anon_sym_alignas] = ACTIONS(3565), + [anon_sym_explicit] = ACTIONS(3565), + [anon_sym_typename] = ACTIONS(3565), + [anon_sym_template] = ACTIONS(3565), + [anon_sym_operator] = ACTIONS(3565), + [anon_sym_try] = ACTIONS(3565), + [anon_sym_delete] = ACTIONS(3565), + [anon_sym_throw] = ACTIONS(3565), + [anon_sym_namespace] = ACTIONS(3565), + [anon_sym_using] = ACTIONS(3565), + [anon_sym_static_assert] = ACTIONS(3565), + [anon_sym_concept] = ACTIONS(3565), + [anon_sym_co_return] = ACTIONS(3565), + [anon_sym_co_yield] = ACTIONS(3565), + [anon_sym_R_DQUOTE] = ACTIONS(3567), + [anon_sym_LR_DQUOTE] = ACTIONS(3567), + [anon_sym_uR_DQUOTE] = ACTIONS(3567), + [anon_sym_UR_DQUOTE] = ACTIONS(3567), + [anon_sym_u8R_DQUOTE] = ACTIONS(3567), + [anon_sym_co_await] = ACTIONS(3565), + [anon_sym_new] = ACTIONS(3565), + [anon_sym_requires] = ACTIONS(3565), + [sym_this] = ACTIONS(3565), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3567), + [sym_semgrep_named_ellipsis] = ACTIONS(3567), + }, + [560] = { + [sym_identifier] = ACTIONS(3571), + [aux_sym_preproc_include_token1] = ACTIONS(3571), + [aux_sym_preproc_def_token1] = ACTIONS(3571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3573), + [aux_sym_preproc_if_token1] = ACTIONS(3571), + [aux_sym_preproc_if_token2] = ACTIONS(3571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3571), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3571), + [aux_sym_preproc_else_token1] = ACTIONS(3571), + [aux_sym_preproc_elif_token1] = ACTIONS(3571), + [sym_preproc_directive] = ACTIONS(3571), + [anon_sym_LPAREN2] = ACTIONS(3573), + [anon_sym_BANG] = ACTIONS(3573), + [anon_sym_TILDE] = ACTIONS(3573), + [anon_sym_DASH] = ACTIONS(3571), + [anon_sym_PLUS] = ACTIONS(3571), + [anon_sym_STAR] = ACTIONS(3573), + [anon_sym_AMP_AMP] = ACTIONS(3573), + [anon_sym_AMP] = ACTIONS(3571), + [anon_sym_SEMI] = ACTIONS(3573), + [anon_sym___extension__] = ACTIONS(3571), + [anon_sym_typedef] = ACTIONS(3571), + [anon_sym_extern] = ACTIONS(3571), + [anon_sym___attribute__] = ACTIONS(3571), + [anon_sym_COLON_COLON] = ACTIONS(3573), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3573), + [anon_sym___declspec] = ACTIONS(3571), + [anon_sym___based] = ACTIONS(3571), + [anon_sym___cdecl] = ACTIONS(3571), + [anon_sym___clrcall] = ACTIONS(3571), + [anon_sym___stdcall] = ACTIONS(3571), + [anon_sym___fastcall] = ACTIONS(3571), + [anon_sym___thiscall] = ACTIONS(3571), + [anon_sym___vectorcall] = ACTIONS(3571), + [anon_sym_LBRACE] = ACTIONS(3573), + [anon_sym_signed] = ACTIONS(3571), + [anon_sym_unsigned] = ACTIONS(3571), + [anon_sym_long] = ACTIONS(3571), + [anon_sym_short] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(3571), + [anon_sym_static] = ACTIONS(3571), + [anon_sym_register] = ACTIONS(3571), + [anon_sym_inline] = ACTIONS(3571), + [anon_sym___inline] = ACTIONS(3571), + [anon_sym___inline__] = ACTIONS(3571), + [anon_sym___forceinline] = ACTIONS(3571), + [anon_sym_thread_local] = ACTIONS(3571), + [anon_sym___thread] = ACTIONS(3571), + [anon_sym_const] = ACTIONS(3571), + [anon_sym_constexpr] = ACTIONS(3571), + [anon_sym_volatile] = ACTIONS(3571), + [anon_sym_restrict] = ACTIONS(3571), + [anon_sym___restrict__] = ACTIONS(3571), + [anon_sym__Atomic] = ACTIONS(3571), + [anon_sym__Noreturn] = ACTIONS(3571), + [anon_sym_noreturn] = ACTIONS(3571), + [anon_sym_mutable] = ACTIONS(3571), + [anon_sym_constinit] = ACTIONS(3571), + [anon_sym_consteval] = ACTIONS(3571), + [sym_primitive_type] = ACTIONS(3571), + [anon_sym_enum] = ACTIONS(3571), + [anon_sym_class] = ACTIONS(3571), + [anon_sym_struct] = ACTIONS(3571), + [anon_sym_union] = ACTIONS(3571), + [anon_sym_if] = ACTIONS(3571), + [anon_sym_switch] = ACTIONS(3571), + [anon_sym_case] = ACTIONS(3571), + [anon_sym_default] = ACTIONS(3571), + [anon_sym_while] = ACTIONS(3571), + [anon_sym_do] = ACTIONS(3571), + [anon_sym_for] = ACTIONS(3571), + [anon_sym_return] = ACTIONS(3571), + [anon_sym_break] = ACTIONS(3571), + [anon_sym_continue] = ACTIONS(3571), + [anon_sym_goto] = ACTIONS(3571), + [anon_sym___try] = ACTIONS(3571), + [anon_sym___leave] = ACTIONS(3571), + [anon_sym_not] = ACTIONS(3571), + [anon_sym_compl] = ACTIONS(3571), + [anon_sym_DASH_DASH] = ACTIONS(3573), + [anon_sym_PLUS_PLUS] = ACTIONS(3573), + [anon_sym_sizeof] = ACTIONS(3571), + [anon_sym___alignof__] = ACTIONS(3571), + [anon_sym___alignof] = ACTIONS(3571), + [anon_sym__alignof] = ACTIONS(3571), + [anon_sym_alignof] = ACTIONS(3571), + [anon_sym__Alignof] = ACTIONS(3571), + [anon_sym_offsetof] = ACTIONS(3571), + [anon_sym__Generic] = ACTIONS(3571), + [anon_sym_asm] = ACTIONS(3571), + [anon_sym___asm__] = ACTIONS(3571), + [sym_number_literal] = ACTIONS(3573), + [anon_sym_L_SQUOTE] = ACTIONS(3573), + [anon_sym_u_SQUOTE] = ACTIONS(3573), + [anon_sym_U_SQUOTE] = ACTIONS(3573), + [anon_sym_u8_SQUOTE] = ACTIONS(3573), + [anon_sym_SQUOTE] = ACTIONS(3573), + [anon_sym_L_DQUOTE] = ACTIONS(3573), + [anon_sym_u_DQUOTE] = ACTIONS(3573), + [anon_sym_U_DQUOTE] = ACTIONS(3573), + [anon_sym_u8_DQUOTE] = ACTIONS(3573), + [anon_sym_DQUOTE] = ACTIONS(3573), + [sym_true] = ACTIONS(3571), + [sym_false] = ACTIONS(3571), + [anon_sym_NULL] = ACTIONS(3571), + [anon_sym_nullptr] = ACTIONS(3571), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3571), + [anon_sym_decltype] = ACTIONS(3571), + [anon_sym_virtual] = ACTIONS(3571), + [anon_sym_alignas] = ACTIONS(3571), + [anon_sym_explicit] = ACTIONS(3571), + [anon_sym_typename] = ACTIONS(3571), + [anon_sym_template] = ACTIONS(3571), + [anon_sym_operator] = ACTIONS(3571), + [anon_sym_try] = ACTIONS(3571), + [anon_sym_delete] = ACTIONS(3571), + [anon_sym_throw] = ACTIONS(3571), + [anon_sym_namespace] = ACTIONS(3571), + [anon_sym_using] = ACTIONS(3571), + [anon_sym_static_assert] = ACTIONS(3571), + [anon_sym_concept] = ACTIONS(3571), + [anon_sym_co_return] = ACTIONS(3571), + [anon_sym_co_yield] = ACTIONS(3571), + [anon_sym_R_DQUOTE] = ACTIONS(3573), + [anon_sym_LR_DQUOTE] = ACTIONS(3573), + [anon_sym_uR_DQUOTE] = ACTIONS(3573), + [anon_sym_UR_DQUOTE] = ACTIONS(3573), + [anon_sym_u8R_DQUOTE] = ACTIONS(3573), + [anon_sym_co_await] = ACTIONS(3571), + [anon_sym_new] = ACTIONS(3571), + [anon_sym_requires] = ACTIONS(3571), + [sym_this] = ACTIONS(3571), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3573), + [sym_semgrep_named_ellipsis] = ACTIONS(3573), + }, [561] = { - [sym_identifier] = ACTIONS(3499), - [aux_sym_preproc_include_token1] = ACTIONS(3499), - [aux_sym_preproc_def_token1] = ACTIONS(3499), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3501), - [aux_sym_preproc_if_token1] = ACTIONS(3499), - [aux_sym_preproc_if_token2] = ACTIONS(3499), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3499), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3499), - [aux_sym_preproc_else_token1] = ACTIONS(3499), - [aux_sym_preproc_elif_token1] = ACTIONS(3499), - [sym_preproc_directive] = ACTIONS(3499), - [anon_sym_LPAREN2] = ACTIONS(3501), - [anon_sym_BANG] = ACTIONS(3501), - [anon_sym_TILDE] = ACTIONS(3501), - [anon_sym_DASH] = ACTIONS(3499), - [anon_sym_PLUS] = ACTIONS(3499), - [anon_sym_STAR] = ACTIONS(3501), - [anon_sym_AMP_AMP] = ACTIONS(3501), - [anon_sym_AMP] = ACTIONS(3499), - [anon_sym_SEMI] = ACTIONS(3501), - [anon_sym___extension__] = ACTIONS(3499), - [anon_sym_typedef] = ACTIONS(3499), - [anon_sym_extern] = ACTIONS(3499), - [anon_sym___attribute__] = ACTIONS(3499), - [anon_sym_COLON_COLON] = ACTIONS(3501), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3501), - [anon_sym___declspec] = ACTIONS(3499), - [anon_sym___based] = ACTIONS(3499), - [anon_sym___cdecl] = ACTIONS(3499), - [anon_sym___clrcall] = ACTIONS(3499), - [anon_sym___stdcall] = ACTIONS(3499), - [anon_sym___fastcall] = ACTIONS(3499), - [anon_sym___thiscall] = ACTIONS(3499), - [anon_sym___vectorcall] = ACTIONS(3499), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_signed] = ACTIONS(3499), - [anon_sym_unsigned] = ACTIONS(3499), - [anon_sym_long] = ACTIONS(3499), - [anon_sym_short] = ACTIONS(3499), - [anon_sym_LBRACK] = ACTIONS(3499), - [anon_sym_static] = ACTIONS(3499), - [anon_sym_register] = ACTIONS(3499), - [anon_sym_inline] = ACTIONS(3499), - [anon_sym___inline] = ACTIONS(3499), - [anon_sym___inline__] = ACTIONS(3499), - [anon_sym___forceinline] = ACTIONS(3499), - [anon_sym_thread_local] = ACTIONS(3499), - [anon_sym___thread] = ACTIONS(3499), - [anon_sym_const] = ACTIONS(3499), - [anon_sym_constexpr] = ACTIONS(3499), - [anon_sym_volatile] = ACTIONS(3499), - [anon_sym_restrict] = ACTIONS(3499), - [anon_sym___restrict__] = ACTIONS(3499), - [anon_sym__Atomic] = ACTIONS(3499), - [anon_sym__Noreturn] = ACTIONS(3499), - [anon_sym_noreturn] = ACTIONS(3499), - [anon_sym_mutable] = ACTIONS(3499), - [anon_sym_constinit] = ACTIONS(3499), - [anon_sym_consteval] = ACTIONS(3499), - [sym_primitive_type] = ACTIONS(3499), - [anon_sym_enum] = ACTIONS(3499), - [anon_sym_class] = ACTIONS(3499), - [anon_sym_struct] = ACTIONS(3499), - [anon_sym_union] = ACTIONS(3499), - [anon_sym_if] = ACTIONS(3499), - [anon_sym_switch] = ACTIONS(3499), - [anon_sym_case] = ACTIONS(3499), - [anon_sym_default] = ACTIONS(3499), - [anon_sym_while] = ACTIONS(3499), - [anon_sym_do] = ACTIONS(3499), - [anon_sym_for] = ACTIONS(3499), - [anon_sym_return] = ACTIONS(3499), - [anon_sym_break] = ACTIONS(3499), - [anon_sym_continue] = ACTIONS(3499), - [anon_sym_goto] = ACTIONS(3499), - [anon_sym___try] = ACTIONS(3499), - [anon_sym___leave] = ACTIONS(3499), - [anon_sym_not] = ACTIONS(3499), - [anon_sym_compl] = ACTIONS(3499), - [anon_sym_DASH_DASH] = ACTIONS(3501), - [anon_sym_PLUS_PLUS] = ACTIONS(3501), - [anon_sym_sizeof] = ACTIONS(3499), - [anon_sym___alignof__] = ACTIONS(3499), - [anon_sym___alignof] = ACTIONS(3499), - [anon_sym__alignof] = ACTIONS(3499), - [anon_sym_alignof] = ACTIONS(3499), - [anon_sym__Alignof] = ACTIONS(3499), - [anon_sym_offsetof] = ACTIONS(3499), - [anon_sym__Generic] = ACTIONS(3499), - [anon_sym_asm] = ACTIONS(3499), - [anon_sym___asm__] = ACTIONS(3499), - [sym_number_literal] = ACTIONS(3501), - [anon_sym_L_SQUOTE] = ACTIONS(3501), - [anon_sym_u_SQUOTE] = ACTIONS(3501), - [anon_sym_U_SQUOTE] = ACTIONS(3501), - [anon_sym_u8_SQUOTE] = ACTIONS(3501), - [anon_sym_SQUOTE] = ACTIONS(3501), - [anon_sym_L_DQUOTE] = ACTIONS(3501), - [anon_sym_u_DQUOTE] = ACTIONS(3501), - [anon_sym_U_DQUOTE] = ACTIONS(3501), - [anon_sym_u8_DQUOTE] = ACTIONS(3501), - [anon_sym_DQUOTE] = ACTIONS(3501), - [sym_true] = ACTIONS(3499), - [sym_false] = ACTIONS(3499), - [anon_sym_NULL] = ACTIONS(3499), - [anon_sym_nullptr] = ACTIONS(3499), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3499), - [anon_sym_decltype] = ACTIONS(3499), - [anon_sym_virtual] = ACTIONS(3499), - [anon_sym_alignas] = ACTIONS(3499), - [anon_sym_explicit] = ACTIONS(3499), - [anon_sym_typename] = ACTIONS(3499), - [anon_sym_template] = ACTIONS(3499), - [anon_sym_operator] = ACTIONS(3499), - [anon_sym_try] = ACTIONS(3499), - [anon_sym_delete] = ACTIONS(3499), - [anon_sym_throw] = ACTIONS(3499), - [anon_sym_namespace] = ACTIONS(3499), - [anon_sym_using] = ACTIONS(3499), - [anon_sym_static_assert] = ACTIONS(3499), - [anon_sym_concept] = ACTIONS(3499), - [anon_sym_co_return] = ACTIONS(3499), - [anon_sym_co_yield] = ACTIONS(3499), - [anon_sym_R_DQUOTE] = ACTIONS(3501), - [anon_sym_LR_DQUOTE] = ACTIONS(3501), - [anon_sym_uR_DQUOTE] = ACTIONS(3501), - [anon_sym_UR_DQUOTE] = ACTIONS(3501), - [anon_sym_u8R_DQUOTE] = ACTIONS(3501), - [anon_sym_co_await] = ACTIONS(3499), - [anon_sym_new] = ACTIONS(3499), - [anon_sym_requires] = ACTIONS(3499), - [sym_this] = ACTIONS(3499), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3501), - [sym_semgrep_named_ellipsis] = ACTIONS(3501), + [sym_identifier] = ACTIONS(2359), + [aux_sym_preproc_include_token1] = ACTIONS(2359), + [aux_sym_preproc_def_token1] = ACTIONS(2359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2357), + [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(2357), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_DASH] = ACTIONS(2359), + [anon_sym_PLUS] = ACTIONS(2359), + [anon_sym_STAR] = ACTIONS(2357), + [anon_sym_AMP_AMP] = ACTIONS(2357), + [anon_sym_AMP] = ACTIONS(2359), + [anon_sym_SEMI] = ACTIONS(2357), + [anon_sym___extension__] = ACTIONS(2359), + [anon_sym_typedef] = ACTIONS(2359), + [anon_sym_extern] = ACTIONS(2359), + [anon_sym___attribute__] = ACTIONS(2359), + [anon_sym_COLON_COLON] = ACTIONS(2357), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2357), + [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(2357), + [anon_sym_RBRACE] = ACTIONS(2357), + [anon_sym_signed] = ACTIONS(2359), + [anon_sym_unsigned] = ACTIONS(2359), + [anon_sym_long] = ACTIONS(2359), + [anon_sym_short] = ACTIONS(2359), + [anon_sym_LBRACK] = ACTIONS(2359), + [anon_sym_static] = ACTIONS(2359), + [anon_sym_register] = ACTIONS(2359), + [anon_sym_inline] = ACTIONS(2359), + [anon_sym___inline] = ACTIONS(2359), + [anon_sym___inline__] = ACTIONS(2359), + [anon_sym___forceinline] = ACTIONS(2359), + [anon_sym_thread_local] = ACTIONS(2359), + [anon_sym___thread] = ACTIONS(2359), + [anon_sym_const] = ACTIONS(2359), + [anon_sym_constexpr] = ACTIONS(2359), + [anon_sym_volatile] = ACTIONS(2359), + [anon_sym_restrict] = ACTIONS(2359), + [anon_sym___restrict__] = ACTIONS(2359), + [anon_sym__Atomic] = ACTIONS(2359), + [anon_sym__Noreturn] = ACTIONS(2359), + [anon_sym_noreturn] = ACTIONS(2359), + [anon_sym_mutable] = ACTIONS(2359), + [anon_sym_constinit] = ACTIONS(2359), + [anon_sym_consteval] = 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___try] = ACTIONS(2359), + [anon_sym___leave] = ACTIONS(2359), + [anon_sym_not] = ACTIONS(2359), + [anon_sym_compl] = ACTIONS(2359), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_sizeof] = ACTIONS(2359), + [anon_sym___alignof__] = ACTIONS(2359), + [anon_sym___alignof] = ACTIONS(2359), + [anon_sym__alignof] = ACTIONS(2359), + [anon_sym_alignof] = ACTIONS(2359), + [anon_sym__Alignof] = ACTIONS(2359), + [anon_sym_offsetof] = ACTIONS(2359), + [anon_sym__Generic] = ACTIONS(2359), + [anon_sym_asm] = ACTIONS(2359), + [anon_sym___asm__] = ACTIONS(2359), + [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(2359), + [sym_false] = ACTIONS(2359), + [anon_sym_NULL] = ACTIONS(2359), + [anon_sym_nullptr] = ACTIONS(2359), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2359), + [anon_sym_decltype] = ACTIONS(2359), + [anon_sym_virtual] = ACTIONS(2359), + [anon_sym_alignas] = 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_catch] = ACTIONS(2359), + [anon_sym_R_DQUOTE] = ACTIONS(2357), + [anon_sym_LR_DQUOTE] = ACTIONS(2357), + [anon_sym_uR_DQUOTE] = ACTIONS(2357), + [anon_sym_UR_DQUOTE] = ACTIONS(2357), + [anon_sym_u8R_DQUOTE] = ACTIONS(2357), + [anon_sym_co_await] = ACTIONS(2359), + [anon_sym_new] = ACTIONS(2359), + [anon_sym_requires] = ACTIONS(2359), + [sym_this] = ACTIONS(2359), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2357), + [sym_semgrep_named_ellipsis] = ACTIONS(2357), }, [562] = { + [sym_else_clause] = STATE(588), + [sym_identifier] = ACTIONS(3064), + [aux_sym_preproc_include_token1] = ACTIONS(3064), + [aux_sym_preproc_def_token1] = ACTIONS(3064), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3066), + [aux_sym_preproc_if_token1] = ACTIONS(3064), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3064), + [sym_preproc_directive] = ACTIONS(3064), + [anon_sym_LPAREN2] = ACTIONS(3066), + [anon_sym_BANG] = ACTIONS(3066), + [anon_sym_TILDE] = ACTIONS(3066), + [anon_sym_DASH] = ACTIONS(3064), + [anon_sym_PLUS] = ACTIONS(3064), + [anon_sym_STAR] = ACTIONS(3066), + [anon_sym_AMP_AMP] = ACTIONS(3066), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_SEMI] = ACTIONS(3066), + [anon_sym___extension__] = ACTIONS(3064), + [anon_sym_typedef] = ACTIONS(3064), + [anon_sym_extern] = ACTIONS(3064), + [anon_sym___attribute__] = ACTIONS(3064), + [anon_sym_COLON_COLON] = ACTIONS(3066), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3066), + [anon_sym___declspec] = ACTIONS(3064), + [anon_sym___based] = ACTIONS(3064), + [anon_sym___cdecl] = ACTIONS(3064), + [anon_sym___clrcall] = ACTIONS(3064), + [anon_sym___stdcall] = ACTIONS(3064), + [anon_sym___fastcall] = ACTIONS(3064), + [anon_sym___thiscall] = ACTIONS(3064), + [anon_sym___vectorcall] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(3066), + [anon_sym_RBRACE] = ACTIONS(3066), + [anon_sym_signed] = ACTIONS(3064), + [anon_sym_unsigned] = ACTIONS(3064), + [anon_sym_long] = ACTIONS(3064), + [anon_sym_short] = ACTIONS(3064), + [anon_sym_LBRACK] = ACTIONS(3064), + [anon_sym_static] = ACTIONS(3064), + [anon_sym_register] = ACTIONS(3064), + [anon_sym_inline] = ACTIONS(3064), + [anon_sym___inline] = ACTIONS(3064), + [anon_sym___inline__] = ACTIONS(3064), + [anon_sym___forceinline] = ACTIONS(3064), + [anon_sym_thread_local] = ACTIONS(3064), + [anon_sym___thread] = ACTIONS(3064), + [anon_sym_const] = ACTIONS(3064), + [anon_sym_constexpr] = ACTIONS(3064), + [anon_sym_volatile] = ACTIONS(3064), + [anon_sym_restrict] = ACTIONS(3064), + [anon_sym___restrict__] = ACTIONS(3064), + [anon_sym__Atomic] = ACTIONS(3064), + [anon_sym__Noreturn] = ACTIONS(3064), + [anon_sym_noreturn] = ACTIONS(3064), + [anon_sym_mutable] = ACTIONS(3064), + [anon_sym_constinit] = ACTIONS(3064), + [anon_sym_consteval] = ACTIONS(3064), + [sym_primitive_type] = ACTIONS(3064), + [anon_sym_enum] = ACTIONS(3064), + [anon_sym_class] = ACTIONS(3064), + [anon_sym_struct] = ACTIONS(3064), + [anon_sym_union] = ACTIONS(3064), + [anon_sym_if] = ACTIONS(3064), + [anon_sym_else] = ACTIONS(3710), + [anon_sym_switch] = ACTIONS(3064), + [anon_sym_case] = ACTIONS(3064), + [anon_sym_default] = ACTIONS(3064), + [anon_sym_while] = ACTIONS(3064), + [anon_sym_do] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(3064), + [anon_sym_return] = ACTIONS(3064), + [anon_sym_break] = ACTIONS(3064), + [anon_sym_continue] = ACTIONS(3064), + [anon_sym_goto] = ACTIONS(3064), + [anon_sym___try] = ACTIONS(3064), + [anon_sym___leave] = ACTIONS(3064), + [anon_sym_not] = ACTIONS(3064), + [anon_sym_compl] = ACTIONS(3064), + [anon_sym_DASH_DASH] = ACTIONS(3066), + [anon_sym_PLUS_PLUS] = ACTIONS(3066), + [anon_sym_sizeof] = ACTIONS(3064), + [anon_sym___alignof__] = ACTIONS(3064), + [anon_sym___alignof] = ACTIONS(3064), + [anon_sym__alignof] = ACTIONS(3064), + [anon_sym_alignof] = ACTIONS(3064), + [anon_sym__Alignof] = ACTIONS(3064), + [anon_sym_offsetof] = ACTIONS(3064), + [anon_sym__Generic] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3064), + [anon_sym___asm__] = ACTIONS(3064), + [sym_number_literal] = ACTIONS(3066), + [anon_sym_L_SQUOTE] = ACTIONS(3066), + [anon_sym_u_SQUOTE] = ACTIONS(3066), + [anon_sym_U_SQUOTE] = ACTIONS(3066), + [anon_sym_u8_SQUOTE] = ACTIONS(3066), + [anon_sym_SQUOTE] = ACTIONS(3066), + [anon_sym_L_DQUOTE] = ACTIONS(3066), + [anon_sym_u_DQUOTE] = ACTIONS(3066), + [anon_sym_U_DQUOTE] = ACTIONS(3066), + [anon_sym_u8_DQUOTE] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3066), + [sym_true] = ACTIONS(3064), + [sym_false] = ACTIONS(3064), + [anon_sym_NULL] = ACTIONS(3064), + [anon_sym_nullptr] = ACTIONS(3064), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3064), + [anon_sym_decltype] = ACTIONS(3064), + [anon_sym_virtual] = ACTIONS(3064), + [anon_sym_alignas] = ACTIONS(3064), + [anon_sym_explicit] = ACTIONS(3064), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_operator] = ACTIONS(3064), + [anon_sym_try] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3064), + [anon_sym_throw] = ACTIONS(3064), + [anon_sym_namespace] = ACTIONS(3064), + [anon_sym_using] = ACTIONS(3064), + [anon_sym_static_assert] = ACTIONS(3064), + [anon_sym_concept] = ACTIONS(3064), + [anon_sym_co_return] = ACTIONS(3064), + [anon_sym_co_yield] = ACTIONS(3064), + [anon_sym_R_DQUOTE] = ACTIONS(3066), + [anon_sym_LR_DQUOTE] = ACTIONS(3066), + [anon_sym_uR_DQUOTE] = ACTIONS(3066), + [anon_sym_UR_DQUOTE] = ACTIONS(3066), + [anon_sym_u8R_DQUOTE] = ACTIONS(3066), + [anon_sym_co_await] = ACTIONS(3064), + [anon_sym_new] = ACTIONS(3064), + [anon_sym_requires] = ACTIONS(3064), + [sym_this] = ACTIONS(3064), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3066), + [sym_semgrep_named_ellipsis] = ACTIONS(3066), + }, + [563] = { + [sym_identifier] = ACTIONS(3603), + [aux_sym_preproc_include_token1] = ACTIONS(3603), + [aux_sym_preproc_def_token1] = ACTIONS(3603), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3605), + [aux_sym_preproc_if_token1] = ACTIONS(3603), + [aux_sym_preproc_if_token2] = ACTIONS(3603), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3603), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3603), + [aux_sym_preproc_else_token1] = ACTIONS(3603), + [aux_sym_preproc_elif_token1] = ACTIONS(3603), + [sym_preproc_directive] = ACTIONS(3603), + [anon_sym_LPAREN2] = ACTIONS(3605), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(3605), + [anon_sym_DASH] = ACTIONS(3603), + [anon_sym_PLUS] = ACTIONS(3603), + [anon_sym_STAR] = ACTIONS(3605), + [anon_sym_AMP_AMP] = ACTIONS(3605), + [anon_sym_AMP] = ACTIONS(3603), + [anon_sym_SEMI] = ACTIONS(3605), + [anon_sym___extension__] = ACTIONS(3603), + [anon_sym_typedef] = ACTIONS(3603), + [anon_sym_extern] = ACTIONS(3603), + [anon_sym___attribute__] = ACTIONS(3603), + [anon_sym_COLON_COLON] = ACTIONS(3605), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3605), + [anon_sym___declspec] = ACTIONS(3603), + [anon_sym___based] = ACTIONS(3603), + [anon_sym___cdecl] = ACTIONS(3603), + [anon_sym___clrcall] = ACTIONS(3603), + [anon_sym___stdcall] = ACTIONS(3603), + [anon_sym___fastcall] = ACTIONS(3603), + [anon_sym___thiscall] = ACTIONS(3603), + [anon_sym___vectorcall] = ACTIONS(3603), + [anon_sym_LBRACE] = ACTIONS(3605), + [anon_sym_signed] = ACTIONS(3603), + [anon_sym_unsigned] = ACTIONS(3603), + [anon_sym_long] = ACTIONS(3603), + [anon_sym_short] = ACTIONS(3603), + [anon_sym_LBRACK] = ACTIONS(3603), + [anon_sym_static] = ACTIONS(3603), + [anon_sym_register] = ACTIONS(3603), + [anon_sym_inline] = ACTIONS(3603), + [anon_sym___inline] = ACTIONS(3603), + [anon_sym___inline__] = ACTIONS(3603), + [anon_sym___forceinline] = ACTIONS(3603), + [anon_sym_thread_local] = ACTIONS(3603), + [anon_sym___thread] = ACTIONS(3603), + [anon_sym_const] = ACTIONS(3603), + [anon_sym_constexpr] = ACTIONS(3603), + [anon_sym_volatile] = ACTIONS(3603), + [anon_sym_restrict] = ACTIONS(3603), + [anon_sym___restrict__] = ACTIONS(3603), + [anon_sym__Atomic] = ACTIONS(3603), + [anon_sym__Noreturn] = ACTIONS(3603), + [anon_sym_noreturn] = ACTIONS(3603), + [anon_sym_mutable] = ACTIONS(3603), + [anon_sym_constinit] = ACTIONS(3603), + [anon_sym_consteval] = ACTIONS(3603), + [sym_primitive_type] = ACTIONS(3603), + [anon_sym_enum] = ACTIONS(3603), + [anon_sym_class] = ACTIONS(3603), + [anon_sym_struct] = ACTIONS(3603), + [anon_sym_union] = ACTIONS(3603), + [anon_sym_if] = ACTIONS(3603), + [anon_sym_switch] = ACTIONS(3603), + [anon_sym_case] = ACTIONS(3603), + [anon_sym_default] = ACTIONS(3603), + [anon_sym_while] = ACTIONS(3603), + [anon_sym_do] = ACTIONS(3603), + [anon_sym_for] = ACTIONS(3603), + [anon_sym_return] = ACTIONS(3603), + [anon_sym_break] = ACTIONS(3603), + [anon_sym_continue] = ACTIONS(3603), + [anon_sym_goto] = ACTIONS(3603), + [anon_sym___try] = ACTIONS(3603), + [anon_sym___leave] = ACTIONS(3603), + [anon_sym_not] = ACTIONS(3603), + [anon_sym_compl] = ACTIONS(3603), + [anon_sym_DASH_DASH] = ACTIONS(3605), + [anon_sym_PLUS_PLUS] = ACTIONS(3605), + [anon_sym_sizeof] = ACTIONS(3603), + [anon_sym___alignof__] = ACTIONS(3603), + [anon_sym___alignof] = ACTIONS(3603), + [anon_sym__alignof] = ACTIONS(3603), + [anon_sym_alignof] = ACTIONS(3603), + [anon_sym__Alignof] = ACTIONS(3603), + [anon_sym_offsetof] = ACTIONS(3603), + [anon_sym__Generic] = ACTIONS(3603), + [anon_sym_asm] = ACTIONS(3603), + [anon_sym___asm__] = ACTIONS(3603), + [sym_number_literal] = ACTIONS(3605), + [anon_sym_L_SQUOTE] = ACTIONS(3605), + [anon_sym_u_SQUOTE] = ACTIONS(3605), + [anon_sym_U_SQUOTE] = ACTIONS(3605), + [anon_sym_u8_SQUOTE] = ACTIONS(3605), + [anon_sym_SQUOTE] = ACTIONS(3605), + [anon_sym_L_DQUOTE] = ACTIONS(3605), + [anon_sym_u_DQUOTE] = ACTIONS(3605), + [anon_sym_U_DQUOTE] = ACTIONS(3605), + [anon_sym_u8_DQUOTE] = ACTIONS(3605), + [anon_sym_DQUOTE] = ACTIONS(3605), + [sym_true] = ACTIONS(3603), + [sym_false] = ACTIONS(3603), + [anon_sym_NULL] = ACTIONS(3603), + [anon_sym_nullptr] = ACTIONS(3603), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3603), + [anon_sym_decltype] = ACTIONS(3603), + [anon_sym_virtual] = ACTIONS(3603), + [anon_sym_alignas] = ACTIONS(3603), + [anon_sym_explicit] = ACTIONS(3603), + [anon_sym_typename] = ACTIONS(3603), + [anon_sym_template] = ACTIONS(3603), + [anon_sym_operator] = ACTIONS(3603), + [anon_sym_try] = ACTIONS(3603), + [anon_sym_delete] = ACTIONS(3603), + [anon_sym_throw] = ACTIONS(3603), + [anon_sym_namespace] = ACTIONS(3603), + [anon_sym_using] = ACTIONS(3603), + [anon_sym_static_assert] = ACTIONS(3603), + [anon_sym_concept] = ACTIONS(3603), + [anon_sym_co_return] = ACTIONS(3603), + [anon_sym_co_yield] = ACTIONS(3603), + [anon_sym_R_DQUOTE] = ACTIONS(3605), + [anon_sym_LR_DQUOTE] = ACTIONS(3605), + [anon_sym_uR_DQUOTE] = ACTIONS(3605), + [anon_sym_UR_DQUOTE] = ACTIONS(3605), + [anon_sym_u8R_DQUOTE] = ACTIONS(3605), + [anon_sym_co_await] = ACTIONS(3603), + [anon_sym_new] = ACTIONS(3603), + [anon_sym_requires] = ACTIONS(3603), + [sym_this] = ACTIONS(3603), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3605), + [sym_semgrep_named_ellipsis] = ACTIONS(3605), + }, + [564] = { + [sym_identifier] = ACTIONS(3619), + [aux_sym_preproc_include_token1] = ACTIONS(3619), + [aux_sym_preproc_def_token1] = ACTIONS(3619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3621), + [aux_sym_preproc_if_token1] = ACTIONS(3619), + [aux_sym_preproc_if_token2] = ACTIONS(3619), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3619), + [aux_sym_preproc_else_token1] = ACTIONS(3619), + [aux_sym_preproc_elif_token1] = ACTIONS(3619), + [sym_preproc_directive] = ACTIONS(3619), + [anon_sym_LPAREN2] = ACTIONS(3621), + [anon_sym_BANG] = ACTIONS(3621), + [anon_sym_TILDE] = ACTIONS(3621), + [anon_sym_DASH] = ACTIONS(3619), + [anon_sym_PLUS] = ACTIONS(3619), + [anon_sym_STAR] = ACTIONS(3621), + [anon_sym_AMP_AMP] = ACTIONS(3621), + [anon_sym_AMP] = ACTIONS(3619), + [anon_sym_SEMI] = ACTIONS(3621), + [anon_sym___extension__] = ACTIONS(3619), + [anon_sym_typedef] = ACTIONS(3619), + [anon_sym_extern] = ACTIONS(3619), + [anon_sym___attribute__] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3621), + [anon_sym___declspec] = ACTIONS(3619), + [anon_sym___based] = ACTIONS(3619), + [anon_sym___cdecl] = ACTIONS(3619), + [anon_sym___clrcall] = ACTIONS(3619), + [anon_sym___stdcall] = ACTIONS(3619), + [anon_sym___fastcall] = ACTIONS(3619), + [anon_sym___thiscall] = ACTIONS(3619), + [anon_sym___vectorcall] = ACTIONS(3619), + [anon_sym_LBRACE] = ACTIONS(3621), + [anon_sym_signed] = ACTIONS(3619), + [anon_sym_unsigned] = ACTIONS(3619), + [anon_sym_long] = ACTIONS(3619), + [anon_sym_short] = ACTIONS(3619), + [anon_sym_LBRACK] = ACTIONS(3619), + [anon_sym_static] = ACTIONS(3619), + [anon_sym_register] = ACTIONS(3619), + [anon_sym_inline] = ACTIONS(3619), + [anon_sym___inline] = ACTIONS(3619), + [anon_sym___inline__] = ACTIONS(3619), + [anon_sym___forceinline] = ACTIONS(3619), + [anon_sym_thread_local] = ACTIONS(3619), + [anon_sym___thread] = ACTIONS(3619), + [anon_sym_const] = ACTIONS(3619), + [anon_sym_constexpr] = ACTIONS(3619), + [anon_sym_volatile] = ACTIONS(3619), + [anon_sym_restrict] = ACTIONS(3619), + [anon_sym___restrict__] = ACTIONS(3619), + [anon_sym__Atomic] = ACTIONS(3619), + [anon_sym__Noreturn] = ACTIONS(3619), + [anon_sym_noreturn] = ACTIONS(3619), + [anon_sym_mutable] = ACTIONS(3619), + [anon_sym_constinit] = ACTIONS(3619), + [anon_sym_consteval] = ACTIONS(3619), + [sym_primitive_type] = ACTIONS(3619), + [anon_sym_enum] = ACTIONS(3619), + [anon_sym_class] = ACTIONS(3619), + [anon_sym_struct] = ACTIONS(3619), + [anon_sym_union] = ACTIONS(3619), + [anon_sym_if] = ACTIONS(3619), + [anon_sym_switch] = ACTIONS(3619), + [anon_sym_case] = ACTIONS(3619), + [anon_sym_default] = ACTIONS(3619), + [anon_sym_while] = ACTIONS(3619), + [anon_sym_do] = ACTIONS(3619), + [anon_sym_for] = ACTIONS(3619), + [anon_sym_return] = ACTIONS(3619), + [anon_sym_break] = ACTIONS(3619), + [anon_sym_continue] = ACTIONS(3619), + [anon_sym_goto] = ACTIONS(3619), + [anon_sym___try] = ACTIONS(3619), + [anon_sym___leave] = ACTIONS(3619), + [anon_sym_not] = ACTIONS(3619), + [anon_sym_compl] = ACTIONS(3619), + [anon_sym_DASH_DASH] = ACTIONS(3621), + [anon_sym_PLUS_PLUS] = ACTIONS(3621), + [anon_sym_sizeof] = ACTIONS(3619), + [anon_sym___alignof__] = ACTIONS(3619), + [anon_sym___alignof] = ACTIONS(3619), + [anon_sym__alignof] = ACTIONS(3619), + [anon_sym_alignof] = ACTIONS(3619), + [anon_sym__Alignof] = ACTIONS(3619), + [anon_sym_offsetof] = ACTIONS(3619), + [anon_sym__Generic] = ACTIONS(3619), + [anon_sym_asm] = ACTIONS(3619), + [anon_sym___asm__] = ACTIONS(3619), + [sym_number_literal] = ACTIONS(3621), + [anon_sym_L_SQUOTE] = ACTIONS(3621), + [anon_sym_u_SQUOTE] = ACTIONS(3621), + [anon_sym_U_SQUOTE] = ACTIONS(3621), + [anon_sym_u8_SQUOTE] = ACTIONS(3621), + [anon_sym_SQUOTE] = ACTIONS(3621), + [anon_sym_L_DQUOTE] = ACTIONS(3621), + [anon_sym_u_DQUOTE] = ACTIONS(3621), + [anon_sym_U_DQUOTE] = ACTIONS(3621), + [anon_sym_u8_DQUOTE] = ACTIONS(3621), + [anon_sym_DQUOTE] = ACTIONS(3621), + [sym_true] = ACTIONS(3619), + [sym_false] = ACTIONS(3619), + [anon_sym_NULL] = ACTIONS(3619), + [anon_sym_nullptr] = ACTIONS(3619), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3619), + [anon_sym_decltype] = ACTIONS(3619), + [anon_sym_virtual] = ACTIONS(3619), + [anon_sym_alignas] = ACTIONS(3619), + [anon_sym_explicit] = ACTIONS(3619), + [anon_sym_typename] = ACTIONS(3619), + [anon_sym_template] = ACTIONS(3619), + [anon_sym_operator] = ACTIONS(3619), + [anon_sym_try] = ACTIONS(3619), + [anon_sym_delete] = ACTIONS(3619), + [anon_sym_throw] = ACTIONS(3619), + [anon_sym_namespace] = ACTIONS(3619), + [anon_sym_using] = ACTIONS(3619), + [anon_sym_static_assert] = ACTIONS(3619), + [anon_sym_concept] = ACTIONS(3619), + [anon_sym_co_return] = ACTIONS(3619), + [anon_sym_co_yield] = ACTIONS(3619), + [anon_sym_R_DQUOTE] = ACTIONS(3621), + [anon_sym_LR_DQUOTE] = ACTIONS(3621), + [anon_sym_uR_DQUOTE] = ACTIONS(3621), + [anon_sym_UR_DQUOTE] = ACTIONS(3621), + [anon_sym_u8R_DQUOTE] = ACTIONS(3621), + [anon_sym_co_await] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(3619), + [anon_sym_requires] = ACTIONS(3619), + [sym_this] = ACTIONS(3619), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3621), + [sym_semgrep_named_ellipsis] = ACTIONS(3621), + }, + [565] = { + [sym_identifier] = ACTIONS(3627), + [aux_sym_preproc_include_token1] = ACTIONS(3627), + [aux_sym_preproc_def_token1] = ACTIONS(3627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3629), + [aux_sym_preproc_if_token1] = ACTIONS(3627), + [aux_sym_preproc_if_token2] = ACTIONS(3627), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3627), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3627), + [aux_sym_preproc_else_token1] = ACTIONS(3627), + [aux_sym_preproc_elif_token1] = ACTIONS(3627), + [sym_preproc_directive] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3629), + [anon_sym_TILDE] = ACTIONS(3629), + [anon_sym_DASH] = ACTIONS(3627), + [anon_sym_PLUS] = ACTIONS(3627), + [anon_sym_STAR] = ACTIONS(3629), + [anon_sym_AMP_AMP] = ACTIONS(3629), + [anon_sym_AMP] = ACTIONS(3627), + [anon_sym_SEMI] = ACTIONS(3629), + [anon_sym___extension__] = ACTIONS(3627), + [anon_sym_typedef] = ACTIONS(3627), + [anon_sym_extern] = ACTIONS(3627), + [anon_sym___attribute__] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3629), + [anon_sym___declspec] = ACTIONS(3627), + [anon_sym___based] = ACTIONS(3627), + [anon_sym___cdecl] = ACTIONS(3627), + [anon_sym___clrcall] = ACTIONS(3627), + [anon_sym___stdcall] = ACTIONS(3627), + [anon_sym___fastcall] = ACTIONS(3627), + [anon_sym___thiscall] = ACTIONS(3627), + [anon_sym___vectorcall] = ACTIONS(3627), + [anon_sym_LBRACE] = ACTIONS(3629), + [anon_sym_signed] = ACTIONS(3627), + [anon_sym_unsigned] = ACTIONS(3627), + [anon_sym_long] = ACTIONS(3627), + [anon_sym_short] = ACTIONS(3627), + [anon_sym_LBRACK] = ACTIONS(3627), + [anon_sym_static] = ACTIONS(3627), + [anon_sym_register] = ACTIONS(3627), + [anon_sym_inline] = ACTIONS(3627), + [anon_sym___inline] = ACTIONS(3627), + [anon_sym___inline__] = ACTIONS(3627), + [anon_sym___forceinline] = ACTIONS(3627), + [anon_sym_thread_local] = ACTIONS(3627), + [anon_sym___thread] = ACTIONS(3627), + [anon_sym_const] = ACTIONS(3627), + [anon_sym_constexpr] = ACTIONS(3627), + [anon_sym_volatile] = ACTIONS(3627), + [anon_sym_restrict] = ACTIONS(3627), + [anon_sym___restrict__] = ACTIONS(3627), + [anon_sym__Atomic] = ACTIONS(3627), + [anon_sym__Noreturn] = ACTIONS(3627), + [anon_sym_noreturn] = ACTIONS(3627), + [anon_sym_mutable] = ACTIONS(3627), + [anon_sym_constinit] = ACTIONS(3627), + [anon_sym_consteval] = ACTIONS(3627), + [sym_primitive_type] = ACTIONS(3627), + [anon_sym_enum] = ACTIONS(3627), + [anon_sym_class] = ACTIONS(3627), + [anon_sym_struct] = ACTIONS(3627), + [anon_sym_union] = ACTIONS(3627), + [anon_sym_if] = ACTIONS(3627), + [anon_sym_switch] = ACTIONS(3627), + [anon_sym_case] = ACTIONS(3627), + [anon_sym_default] = ACTIONS(3627), + [anon_sym_while] = ACTIONS(3627), + [anon_sym_do] = ACTIONS(3627), + [anon_sym_for] = ACTIONS(3627), + [anon_sym_return] = ACTIONS(3627), + [anon_sym_break] = ACTIONS(3627), + [anon_sym_continue] = ACTIONS(3627), + [anon_sym_goto] = ACTIONS(3627), + [anon_sym___try] = ACTIONS(3627), + [anon_sym___leave] = ACTIONS(3627), + [anon_sym_not] = ACTIONS(3627), + [anon_sym_compl] = ACTIONS(3627), + [anon_sym_DASH_DASH] = ACTIONS(3629), + [anon_sym_PLUS_PLUS] = ACTIONS(3629), + [anon_sym_sizeof] = ACTIONS(3627), + [anon_sym___alignof__] = ACTIONS(3627), + [anon_sym___alignof] = ACTIONS(3627), + [anon_sym__alignof] = ACTIONS(3627), + [anon_sym_alignof] = ACTIONS(3627), + [anon_sym__Alignof] = ACTIONS(3627), + [anon_sym_offsetof] = ACTIONS(3627), + [anon_sym__Generic] = ACTIONS(3627), + [anon_sym_asm] = ACTIONS(3627), + [anon_sym___asm__] = ACTIONS(3627), + [sym_number_literal] = ACTIONS(3629), + [anon_sym_L_SQUOTE] = ACTIONS(3629), + [anon_sym_u_SQUOTE] = ACTIONS(3629), + [anon_sym_U_SQUOTE] = ACTIONS(3629), + [anon_sym_u8_SQUOTE] = ACTIONS(3629), + [anon_sym_SQUOTE] = ACTIONS(3629), + [anon_sym_L_DQUOTE] = ACTIONS(3629), + [anon_sym_u_DQUOTE] = ACTIONS(3629), + [anon_sym_U_DQUOTE] = ACTIONS(3629), + [anon_sym_u8_DQUOTE] = ACTIONS(3629), + [anon_sym_DQUOTE] = ACTIONS(3629), + [sym_true] = ACTIONS(3627), + [sym_false] = ACTIONS(3627), + [anon_sym_NULL] = ACTIONS(3627), + [anon_sym_nullptr] = ACTIONS(3627), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3627), + [anon_sym_decltype] = ACTIONS(3627), + [anon_sym_virtual] = ACTIONS(3627), + [anon_sym_alignas] = ACTIONS(3627), + [anon_sym_explicit] = ACTIONS(3627), + [anon_sym_typename] = ACTIONS(3627), + [anon_sym_template] = ACTIONS(3627), + [anon_sym_operator] = ACTIONS(3627), + [anon_sym_try] = ACTIONS(3627), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_throw] = ACTIONS(3627), + [anon_sym_namespace] = ACTIONS(3627), + [anon_sym_using] = ACTIONS(3627), + [anon_sym_static_assert] = ACTIONS(3627), + [anon_sym_concept] = ACTIONS(3627), + [anon_sym_co_return] = ACTIONS(3627), + [anon_sym_co_yield] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(3629), + [anon_sym_LR_DQUOTE] = ACTIONS(3629), + [anon_sym_uR_DQUOTE] = ACTIONS(3629), + [anon_sym_UR_DQUOTE] = ACTIONS(3629), + [anon_sym_u8R_DQUOTE] = ACTIONS(3629), + [anon_sym_co_await] = ACTIONS(3627), + [anon_sym_new] = ACTIONS(3627), + [anon_sym_requires] = ACTIONS(3627), + [sym_this] = ACTIONS(3627), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3629), + [sym_semgrep_named_ellipsis] = ACTIONS(3629), + }, + [566] = { [sym_identifier] = ACTIONS(3380), [aux_sym_preproc_include_token1] = ACTIONS(3380), [aux_sym_preproc_def_token1] = ACTIONS(3380), @@ -143337,1109 +134054,558 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3382), [sym_semgrep_named_ellipsis] = ACTIONS(3382), }, - [563] = { - [sym_identifier] = ACTIONS(3630), - [aux_sym_preproc_include_token1] = ACTIONS(3630), - [aux_sym_preproc_def_token1] = ACTIONS(3630), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3632), - [aux_sym_preproc_if_token1] = ACTIONS(3630), - [aux_sym_preproc_if_token2] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), - [aux_sym_preproc_else_token1] = ACTIONS(3630), - [aux_sym_preproc_elif_token1] = ACTIONS(3630), - [sym_preproc_directive] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(3632), - [anon_sym_BANG] = ACTIONS(3632), - [anon_sym_TILDE] = ACTIONS(3632), - [anon_sym_DASH] = ACTIONS(3630), - [anon_sym_PLUS] = ACTIONS(3630), - [anon_sym_STAR] = ACTIONS(3632), - [anon_sym_AMP_AMP] = ACTIONS(3632), - [anon_sym_AMP] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3632), - [anon_sym___extension__] = ACTIONS(3630), - [anon_sym_typedef] = ACTIONS(3630), - [anon_sym_extern] = ACTIONS(3630), - [anon_sym___attribute__] = ACTIONS(3630), - [anon_sym_COLON_COLON] = ACTIONS(3632), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), - [anon_sym___declspec] = ACTIONS(3630), - [anon_sym___based] = ACTIONS(3630), - [anon_sym___cdecl] = ACTIONS(3630), - [anon_sym___clrcall] = ACTIONS(3630), - [anon_sym___stdcall] = ACTIONS(3630), - [anon_sym___fastcall] = ACTIONS(3630), - [anon_sym___thiscall] = ACTIONS(3630), - [anon_sym___vectorcall] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym_signed] = ACTIONS(3630), - [anon_sym_unsigned] = ACTIONS(3630), - [anon_sym_long] = ACTIONS(3630), - [anon_sym_short] = ACTIONS(3630), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_static] = ACTIONS(3630), - [anon_sym_register] = ACTIONS(3630), - [anon_sym_inline] = ACTIONS(3630), - [anon_sym___inline] = ACTIONS(3630), - [anon_sym___inline__] = ACTIONS(3630), - [anon_sym___forceinline] = ACTIONS(3630), - [anon_sym_thread_local] = ACTIONS(3630), - [anon_sym___thread] = ACTIONS(3630), - [anon_sym_const] = ACTIONS(3630), - [anon_sym_constexpr] = ACTIONS(3630), - [anon_sym_volatile] = ACTIONS(3630), - [anon_sym_restrict] = ACTIONS(3630), - [anon_sym___restrict__] = ACTIONS(3630), - [anon_sym__Atomic] = ACTIONS(3630), - [anon_sym__Noreturn] = ACTIONS(3630), - [anon_sym_noreturn] = ACTIONS(3630), - [anon_sym_mutable] = ACTIONS(3630), - [anon_sym_constinit] = ACTIONS(3630), - [anon_sym_consteval] = ACTIONS(3630), - [sym_primitive_type] = ACTIONS(3630), - [anon_sym_enum] = ACTIONS(3630), - [anon_sym_class] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3630), - [anon_sym_union] = ACTIONS(3630), - [anon_sym_if] = ACTIONS(3630), - [anon_sym_switch] = ACTIONS(3630), - [anon_sym_case] = ACTIONS(3630), - [anon_sym_default] = ACTIONS(3630), - [anon_sym_while] = ACTIONS(3630), - [anon_sym_do] = ACTIONS(3630), - [anon_sym_for] = ACTIONS(3630), - [anon_sym_return] = ACTIONS(3630), - [anon_sym_break] = ACTIONS(3630), - [anon_sym_continue] = ACTIONS(3630), - [anon_sym_goto] = ACTIONS(3630), - [anon_sym___try] = ACTIONS(3630), - [anon_sym___leave] = ACTIONS(3630), - [anon_sym_not] = ACTIONS(3630), - [anon_sym_compl] = ACTIONS(3630), - [anon_sym_DASH_DASH] = ACTIONS(3632), - [anon_sym_PLUS_PLUS] = ACTIONS(3632), - [anon_sym_sizeof] = ACTIONS(3630), - [anon_sym___alignof__] = ACTIONS(3630), - [anon_sym___alignof] = ACTIONS(3630), - [anon_sym__alignof] = ACTIONS(3630), - [anon_sym_alignof] = ACTIONS(3630), - [anon_sym__Alignof] = ACTIONS(3630), - [anon_sym_offsetof] = ACTIONS(3630), - [anon_sym__Generic] = ACTIONS(3630), - [anon_sym_asm] = ACTIONS(3630), - [anon_sym___asm__] = ACTIONS(3630), - [sym_number_literal] = ACTIONS(3632), - [anon_sym_L_SQUOTE] = ACTIONS(3632), - [anon_sym_u_SQUOTE] = ACTIONS(3632), - [anon_sym_U_SQUOTE] = ACTIONS(3632), - [anon_sym_u8_SQUOTE] = ACTIONS(3632), - [anon_sym_SQUOTE] = ACTIONS(3632), - [anon_sym_L_DQUOTE] = ACTIONS(3632), - [anon_sym_u_DQUOTE] = ACTIONS(3632), - [anon_sym_U_DQUOTE] = ACTIONS(3632), - [anon_sym_u8_DQUOTE] = ACTIONS(3632), - [anon_sym_DQUOTE] = ACTIONS(3632), - [sym_true] = ACTIONS(3630), - [sym_false] = ACTIONS(3630), - [anon_sym_NULL] = ACTIONS(3630), - [anon_sym_nullptr] = ACTIONS(3630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3630), - [anon_sym_decltype] = ACTIONS(3630), - [anon_sym_virtual] = ACTIONS(3630), - [anon_sym_alignas] = ACTIONS(3630), - [anon_sym_explicit] = ACTIONS(3630), - [anon_sym_typename] = ACTIONS(3630), - [anon_sym_template] = ACTIONS(3630), - [anon_sym_operator] = ACTIONS(3630), - [anon_sym_try] = ACTIONS(3630), - [anon_sym_delete] = ACTIONS(3630), - [anon_sym_throw] = ACTIONS(3630), - [anon_sym_namespace] = ACTIONS(3630), - [anon_sym_using] = ACTIONS(3630), - [anon_sym_static_assert] = ACTIONS(3630), - [anon_sym_concept] = ACTIONS(3630), - [anon_sym_co_return] = ACTIONS(3630), - [anon_sym_co_yield] = ACTIONS(3630), - [anon_sym_R_DQUOTE] = ACTIONS(3632), - [anon_sym_LR_DQUOTE] = ACTIONS(3632), - [anon_sym_uR_DQUOTE] = ACTIONS(3632), - [anon_sym_UR_DQUOTE] = ACTIONS(3632), - [anon_sym_u8R_DQUOTE] = ACTIONS(3632), - [anon_sym_co_await] = ACTIONS(3630), - [anon_sym_new] = ACTIONS(3630), - [anon_sym_requires] = ACTIONS(3630), - [sym_this] = ACTIONS(3630), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3632), - [sym_semgrep_named_ellipsis] = ACTIONS(3632), - }, - [564] = { - [sym_identifier] = ACTIONS(3507), - [aux_sym_preproc_include_token1] = ACTIONS(3507), - [aux_sym_preproc_def_token1] = ACTIONS(3507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3509), - [aux_sym_preproc_if_token1] = ACTIONS(3507), - [aux_sym_preproc_if_token2] = ACTIONS(3507), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3507), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3507), - [aux_sym_preproc_else_token1] = ACTIONS(3507), - [aux_sym_preproc_elif_token1] = ACTIONS(3507), - [sym_preproc_directive] = ACTIONS(3507), - [anon_sym_LPAREN2] = ACTIONS(3509), - [anon_sym_BANG] = ACTIONS(3509), - [anon_sym_TILDE] = ACTIONS(3509), - [anon_sym_DASH] = ACTIONS(3507), - [anon_sym_PLUS] = ACTIONS(3507), - [anon_sym_STAR] = ACTIONS(3509), - [anon_sym_AMP_AMP] = ACTIONS(3509), - [anon_sym_AMP] = ACTIONS(3507), - [anon_sym_SEMI] = ACTIONS(3509), - [anon_sym___extension__] = ACTIONS(3507), - [anon_sym_typedef] = ACTIONS(3507), - [anon_sym_extern] = ACTIONS(3507), - [anon_sym___attribute__] = ACTIONS(3507), - [anon_sym_COLON_COLON] = ACTIONS(3509), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3509), - [anon_sym___declspec] = ACTIONS(3507), - [anon_sym___based] = ACTIONS(3507), - [anon_sym___cdecl] = ACTIONS(3507), - [anon_sym___clrcall] = ACTIONS(3507), - [anon_sym___stdcall] = ACTIONS(3507), - [anon_sym___fastcall] = ACTIONS(3507), - [anon_sym___thiscall] = ACTIONS(3507), - [anon_sym___vectorcall] = ACTIONS(3507), - [anon_sym_LBRACE] = ACTIONS(3509), - [anon_sym_signed] = ACTIONS(3507), - [anon_sym_unsigned] = ACTIONS(3507), - [anon_sym_long] = ACTIONS(3507), - [anon_sym_short] = ACTIONS(3507), - [anon_sym_LBRACK] = ACTIONS(3507), - [anon_sym_static] = ACTIONS(3507), - [anon_sym_register] = ACTIONS(3507), - [anon_sym_inline] = ACTIONS(3507), - [anon_sym___inline] = ACTIONS(3507), - [anon_sym___inline__] = ACTIONS(3507), - [anon_sym___forceinline] = ACTIONS(3507), - [anon_sym_thread_local] = ACTIONS(3507), - [anon_sym___thread] = ACTIONS(3507), - [anon_sym_const] = ACTIONS(3507), - [anon_sym_constexpr] = ACTIONS(3507), - [anon_sym_volatile] = ACTIONS(3507), - [anon_sym_restrict] = ACTIONS(3507), - [anon_sym___restrict__] = ACTIONS(3507), - [anon_sym__Atomic] = ACTIONS(3507), - [anon_sym__Noreturn] = ACTIONS(3507), - [anon_sym_noreturn] = ACTIONS(3507), - [anon_sym_mutable] = ACTIONS(3507), - [anon_sym_constinit] = ACTIONS(3507), - [anon_sym_consteval] = ACTIONS(3507), - [sym_primitive_type] = ACTIONS(3507), - [anon_sym_enum] = ACTIONS(3507), - [anon_sym_class] = ACTIONS(3507), - [anon_sym_struct] = ACTIONS(3507), - [anon_sym_union] = ACTIONS(3507), - [anon_sym_if] = ACTIONS(3507), - [anon_sym_switch] = ACTIONS(3507), - [anon_sym_case] = ACTIONS(3507), - [anon_sym_default] = ACTIONS(3507), - [anon_sym_while] = ACTIONS(3507), - [anon_sym_do] = ACTIONS(3507), - [anon_sym_for] = ACTIONS(3507), - [anon_sym_return] = ACTIONS(3507), - [anon_sym_break] = ACTIONS(3507), - [anon_sym_continue] = ACTIONS(3507), - [anon_sym_goto] = ACTIONS(3507), - [anon_sym___try] = ACTIONS(3507), - [anon_sym___leave] = ACTIONS(3507), - [anon_sym_not] = ACTIONS(3507), - [anon_sym_compl] = ACTIONS(3507), - [anon_sym_DASH_DASH] = ACTIONS(3509), - [anon_sym_PLUS_PLUS] = ACTIONS(3509), - [anon_sym_sizeof] = ACTIONS(3507), - [anon_sym___alignof__] = ACTIONS(3507), - [anon_sym___alignof] = ACTIONS(3507), - [anon_sym__alignof] = ACTIONS(3507), - [anon_sym_alignof] = ACTIONS(3507), - [anon_sym__Alignof] = ACTIONS(3507), - [anon_sym_offsetof] = ACTIONS(3507), - [anon_sym__Generic] = ACTIONS(3507), - [anon_sym_asm] = ACTIONS(3507), - [anon_sym___asm__] = ACTIONS(3507), - [sym_number_literal] = ACTIONS(3509), - [anon_sym_L_SQUOTE] = ACTIONS(3509), - [anon_sym_u_SQUOTE] = ACTIONS(3509), - [anon_sym_U_SQUOTE] = ACTIONS(3509), - [anon_sym_u8_SQUOTE] = ACTIONS(3509), - [anon_sym_SQUOTE] = ACTIONS(3509), - [anon_sym_L_DQUOTE] = ACTIONS(3509), - [anon_sym_u_DQUOTE] = ACTIONS(3509), - [anon_sym_U_DQUOTE] = ACTIONS(3509), - [anon_sym_u8_DQUOTE] = ACTIONS(3509), - [anon_sym_DQUOTE] = ACTIONS(3509), - [sym_true] = ACTIONS(3507), - [sym_false] = ACTIONS(3507), - [anon_sym_NULL] = ACTIONS(3507), - [anon_sym_nullptr] = ACTIONS(3507), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3507), - [anon_sym_decltype] = ACTIONS(3507), - [anon_sym_virtual] = ACTIONS(3507), - [anon_sym_alignas] = ACTIONS(3507), - [anon_sym_explicit] = ACTIONS(3507), - [anon_sym_typename] = ACTIONS(3507), - [anon_sym_template] = ACTIONS(3507), - [anon_sym_operator] = ACTIONS(3507), - [anon_sym_try] = ACTIONS(3507), - [anon_sym_delete] = ACTIONS(3507), - [anon_sym_throw] = ACTIONS(3507), - [anon_sym_namespace] = ACTIONS(3507), - [anon_sym_using] = ACTIONS(3507), - [anon_sym_static_assert] = ACTIONS(3507), - [anon_sym_concept] = ACTIONS(3507), - [anon_sym_co_return] = ACTIONS(3507), - [anon_sym_co_yield] = ACTIONS(3507), - [anon_sym_R_DQUOTE] = ACTIONS(3509), - [anon_sym_LR_DQUOTE] = ACTIONS(3509), - [anon_sym_uR_DQUOTE] = ACTIONS(3509), - [anon_sym_UR_DQUOTE] = ACTIONS(3509), - [anon_sym_u8R_DQUOTE] = ACTIONS(3509), - [anon_sym_co_await] = ACTIONS(3507), - [anon_sym_new] = ACTIONS(3507), - [anon_sym_requires] = ACTIONS(3507), - [sym_this] = ACTIONS(3507), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3509), - [sym_semgrep_named_ellipsis] = ACTIONS(3509), - }, - [565] = { - [sym_identifier] = ACTIONS(3388), - [aux_sym_preproc_include_token1] = ACTIONS(3388), - [aux_sym_preproc_def_token1] = ACTIONS(3388), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3390), - [aux_sym_preproc_if_token1] = ACTIONS(3388), - [aux_sym_preproc_if_token2] = ACTIONS(3388), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3388), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3388), - [aux_sym_preproc_else_token1] = ACTIONS(3388), - [aux_sym_preproc_elif_token1] = ACTIONS(3388), - [sym_preproc_directive] = ACTIONS(3388), - [anon_sym_LPAREN2] = ACTIONS(3390), - [anon_sym_BANG] = ACTIONS(3390), - [anon_sym_TILDE] = ACTIONS(3390), - [anon_sym_DASH] = ACTIONS(3388), - [anon_sym_PLUS] = ACTIONS(3388), - [anon_sym_STAR] = ACTIONS(3390), - [anon_sym_AMP_AMP] = ACTIONS(3390), - [anon_sym_AMP] = ACTIONS(3388), - [anon_sym_SEMI] = ACTIONS(3390), - [anon_sym___extension__] = ACTIONS(3388), - [anon_sym_typedef] = ACTIONS(3388), - [anon_sym_extern] = ACTIONS(3388), - [anon_sym___attribute__] = ACTIONS(3388), - [anon_sym_COLON_COLON] = ACTIONS(3390), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3390), - [anon_sym___declspec] = ACTIONS(3388), - [anon_sym___based] = ACTIONS(3388), - [anon_sym___cdecl] = ACTIONS(3388), - [anon_sym___clrcall] = ACTIONS(3388), - [anon_sym___stdcall] = ACTIONS(3388), - [anon_sym___fastcall] = ACTIONS(3388), - [anon_sym___thiscall] = ACTIONS(3388), - [anon_sym___vectorcall] = ACTIONS(3388), - [anon_sym_LBRACE] = ACTIONS(3390), - [anon_sym_signed] = ACTIONS(3388), - [anon_sym_unsigned] = ACTIONS(3388), - [anon_sym_long] = ACTIONS(3388), - [anon_sym_short] = ACTIONS(3388), - [anon_sym_LBRACK] = ACTIONS(3388), - [anon_sym_static] = ACTIONS(3388), - [anon_sym_register] = ACTIONS(3388), - [anon_sym_inline] = ACTIONS(3388), - [anon_sym___inline] = ACTIONS(3388), - [anon_sym___inline__] = ACTIONS(3388), - [anon_sym___forceinline] = ACTIONS(3388), - [anon_sym_thread_local] = ACTIONS(3388), - [anon_sym___thread] = ACTIONS(3388), - [anon_sym_const] = ACTIONS(3388), - [anon_sym_constexpr] = ACTIONS(3388), - [anon_sym_volatile] = ACTIONS(3388), - [anon_sym_restrict] = ACTIONS(3388), - [anon_sym___restrict__] = ACTIONS(3388), - [anon_sym__Atomic] = ACTIONS(3388), - [anon_sym__Noreturn] = ACTIONS(3388), - [anon_sym_noreturn] = ACTIONS(3388), - [anon_sym_mutable] = ACTIONS(3388), - [anon_sym_constinit] = ACTIONS(3388), - [anon_sym_consteval] = ACTIONS(3388), - [sym_primitive_type] = ACTIONS(3388), - [anon_sym_enum] = ACTIONS(3388), - [anon_sym_class] = ACTIONS(3388), - [anon_sym_struct] = ACTIONS(3388), - [anon_sym_union] = ACTIONS(3388), - [anon_sym_if] = ACTIONS(3388), - [anon_sym_switch] = ACTIONS(3388), - [anon_sym_case] = ACTIONS(3388), - [anon_sym_default] = ACTIONS(3388), - [anon_sym_while] = ACTIONS(3388), - [anon_sym_do] = ACTIONS(3388), - [anon_sym_for] = ACTIONS(3388), - [anon_sym_return] = ACTIONS(3388), - [anon_sym_break] = ACTIONS(3388), - [anon_sym_continue] = ACTIONS(3388), - [anon_sym_goto] = ACTIONS(3388), - [anon_sym___try] = ACTIONS(3388), - [anon_sym___leave] = ACTIONS(3388), - [anon_sym_not] = ACTIONS(3388), - [anon_sym_compl] = ACTIONS(3388), - [anon_sym_DASH_DASH] = ACTIONS(3390), - [anon_sym_PLUS_PLUS] = ACTIONS(3390), - [anon_sym_sizeof] = ACTIONS(3388), - [anon_sym___alignof__] = ACTIONS(3388), - [anon_sym___alignof] = ACTIONS(3388), - [anon_sym__alignof] = ACTIONS(3388), - [anon_sym_alignof] = ACTIONS(3388), - [anon_sym__Alignof] = ACTIONS(3388), - [anon_sym_offsetof] = ACTIONS(3388), - [anon_sym__Generic] = ACTIONS(3388), - [anon_sym_asm] = ACTIONS(3388), - [anon_sym___asm__] = ACTIONS(3388), - [sym_number_literal] = ACTIONS(3390), - [anon_sym_L_SQUOTE] = ACTIONS(3390), - [anon_sym_u_SQUOTE] = ACTIONS(3390), - [anon_sym_U_SQUOTE] = ACTIONS(3390), - [anon_sym_u8_SQUOTE] = ACTIONS(3390), - [anon_sym_SQUOTE] = ACTIONS(3390), - [anon_sym_L_DQUOTE] = ACTIONS(3390), - [anon_sym_u_DQUOTE] = ACTIONS(3390), - [anon_sym_U_DQUOTE] = ACTIONS(3390), - [anon_sym_u8_DQUOTE] = ACTIONS(3390), - [anon_sym_DQUOTE] = ACTIONS(3390), - [sym_true] = ACTIONS(3388), - [sym_false] = ACTIONS(3388), - [anon_sym_NULL] = ACTIONS(3388), - [anon_sym_nullptr] = ACTIONS(3388), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3388), - [anon_sym_decltype] = ACTIONS(3388), - [anon_sym_virtual] = ACTIONS(3388), - [anon_sym_alignas] = ACTIONS(3388), - [anon_sym_explicit] = ACTIONS(3388), - [anon_sym_typename] = ACTIONS(3388), - [anon_sym_template] = ACTIONS(3388), - [anon_sym_operator] = ACTIONS(3388), - [anon_sym_try] = ACTIONS(3388), - [anon_sym_delete] = ACTIONS(3388), - [anon_sym_throw] = ACTIONS(3388), - [anon_sym_namespace] = ACTIONS(3388), - [anon_sym_using] = ACTIONS(3388), - [anon_sym_static_assert] = ACTIONS(3388), - [anon_sym_concept] = ACTIONS(3388), - [anon_sym_co_return] = ACTIONS(3388), - [anon_sym_co_yield] = ACTIONS(3388), - [anon_sym_R_DQUOTE] = ACTIONS(3390), - [anon_sym_LR_DQUOTE] = ACTIONS(3390), - [anon_sym_uR_DQUOTE] = ACTIONS(3390), - [anon_sym_UR_DQUOTE] = ACTIONS(3390), - [anon_sym_u8R_DQUOTE] = ACTIONS(3390), - [anon_sym_co_await] = ACTIONS(3388), - [anon_sym_new] = ACTIONS(3388), - [anon_sym_requires] = ACTIONS(3388), - [sym_this] = ACTIONS(3388), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3390), - [sym_semgrep_named_ellipsis] = ACTIONS(3390), - }, - [566] = { - [sym_identifier] = ACTIONS(3416), - [aux_sym_preproc_include_token1] = ACTIONS(3416), - [aux_sym_preproc_def_token1] = ACTIONS(3416), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3418), - [aux_sym_preproc_if_token1] = ACTIONS(3416), - [aux_sym_preproc_if_token2] = ACTIONS(3416), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3416), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3416), - [aux_sym_preproc_else_token1] = ACTIONS(3416), - [aux_sym_preproc_elif_token1] = ACTIONS(3416), - [sym_preproc_directive] = ACTIONS(3416), - [anon_sym_LPAREN2] = ACTIONS(3418), - [anon_sym_BANG] = ACTIONS(3418), - [anon_sym_TILDE] = ACTIONS(3418), - [anon_sym_DASH] = ACTIONS(3416), - [anon_sym_PLUS] = ACTIONS(3416), - [anon_sym_STAR] = ACTIONS(3418), - [anon_sym_AMP_AMP] = ACTIONS(3418), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_SEMI] = ACTIONS(3418), - [anon_sym___extension__] = ACTIONS(3416), - [anon_sym_typedef] = ACTIONS(3416), - [anon_sym_extern] = ACTIONS(3416), - [anon_sym___attribute__] = ACTIONS(3416), - [anon_sym_COLON_COLON] = ACTIONS(3418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3418), - [anon_sym___declspec] = ACTIONS(3416), - [anon_sym___based] = ACTIONS(3416), - [anon_sym___cdecl] = ACTIONS(3416), - [anon_sym___clrcall] = ACTIONS(3416), - [anon_sym___stdcall] = ACTIONS(3416), - [anon_sym___fastcall] = ACTIONS(3416), - [anon_sym___thiscall] = ACTIONS(3416), - [anon_sym___vectorcall] = ACTIONS(3416), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_signed] = ACTIONS(3416), - [anon_sym_unsigned] = ACTIONS(3416), - [anon_sym_long] = ACTIONS(3416), - [anon_sym_short] = ACTIONS(3416), - [anon_sym_LBRACK] = ACTIONS(3416), - [anon_sym_static] = ACTIONS(3416), - [anon_sym_register] = ACTIONS(3416), - [anon_sym_inline] = ACTIONS(3416), - [anon_sym___inline] = ACTIONS(3416), - [anon_sym___inline__] = ACTIONS(3416), - [anon_sym___forceinline] = ACTIONS(3416), - [anon_sym_thread_local] = ACTIONS(3416), - [anon_sym___thread] = ACTIONS(3416), - [anon_sym_const] = ACTIONS(3416), - [anon_sym_constexpr] = ACTIONS(3416), - [anon_sym_volatile] = ACTIONS(3416), - [anon_sym_restrict] = ACTIONS(3416), - [anon_sym___restrict__] = ACTIONS(3416), - [anon_sym__Atomic] = ACTIONS(3416), - [anon_sym__Noreturn] = ACTIONS(3416), - [anon_sym_noreturn] = ACTIONS(3416), - [anon_sym_mutable] = ACTIONS(3416), - [anon_sym_constinit] = ACTIONS(3416), - [anon_sym_consteval] = ACTIONS(3416), - [sym_primitive_type] = ACTIONS(3416), - [anon_sym_enum] = ACTIONS(3416), - [anon_sym_class] = ACTIONS(3416), - [anon_sym_struct] = ACTIONS(3416), - [anon_sym_union] = ACTIONS(3416), - [anon_sym_if] = ACTIONS(3416), - [anon_sym_switch] = ACTIONS(3416), - [anon_sym_case] = ACTIONS(3416), - [anon_sym_default] = ACTIONS(3416), - [anon_sym_while] = ACTIONS(3416), - [anon_sym_do] = ACTIONS(3416), - [anon_sym_for] = ACTIONS(3416), - [anon_sym_return] = ACTIONS(3416), - [anon_sym_break] = ACTIONS(3416), - [anon_sym_continue] = ACTIONS(3416), - [anon_sym_goto] = ACTIONS(3416), - [anon_sym___try] = ACTIONS(3416), - [anon_sym___leave] = ACTIONS(3416), - [anon_sym_not] = ACTIONS(3416), - [anon_sym_compl] = ACTIONS(3416), - [anon_sym_DASH_DASH] = ACTIONS(3418), - [anon_sym_PLUS_PLUS] = ACTIONS(3418), - [anon_sym_sizeof] = ACTIONS(3416), - [anon_sym___alignof__] = ACTIONS(3416), - [anon_sym___alignof] = ACTIONS(3416), - [anon_sym__alignof] = ACTIONS(3416), - [anon_sym_alignof] = ACTIONS(3416), - [anon_sym__Alignof] = ACTIONS(3416), - [anon_sym_offsetof] = ACTIONS(3416), - [anon_sym__Generic] = ACTIONS(3416), - [anon_sym_asm] = ACTIONS(3416), - [anon_sym___asm__] = ACTIONS(3416), - [sym_number_literal] = ACTIONS(3418), - [anon_sym_L_SQUOTE] = ACTIONS(3418), - [anon_sym_u_SQUOTE] = ACTIONS(3418), - [anon_sym_U_SQUOTE] = ACTIONS(3418), - [anon_sym_u8_SQUOTE] = ACTIONS(3418), - [anon_sym_SQUOTE] = ACTIONS(3418), - [anon_sym_L_DQUOTE] = ACTIONS(3418), - [anon_sym_u_DQUOTE] = ACTIONS(3418), - [anon_sym_U_DQUOTE] = ACTIONS(3418), - [anon_sym_u8_DQUOTE] = ACTIONS(3418), - [anon_sym_DQUOTE] = ACTIONS(3418), - [sym_true] = ACTIONS(3416), - [sym_false] = ACTIONS(3416), - [anon_sym_NULL] = ACTIONS(3416), - [anon_sym_nullptr] = ACTIONS(3416), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3416), - [anon_sym_decltype] = ACTIONS(3416), - [anon_sym_virtual] = ACTIONS(3416), - [anon_sym_alignas] = ACTIONS(3416), - [anon_sym_explicit] = ACTIONS(3416), - [anon_sym_typename] = ACTIONS(3416), - [anon_sym_template] = ACTIONS(3416), - [anon_sym_operator] = ACTIONS(3416), - [anon_sym_try] = ACTIONS(3416), - [anon_sym_delete] = ACTIONS(3416), - [anon_sym_throw] = ACTIONS(3416), - [anon_sym_namespace] = ACTIONS(3416), - [anon_sym_using] = ACTIONS(3416), - [anon_sym_static_assert] = ACTIONS(3416), - [anon_sym_concept] = ACTIONS(3416), - [anon_sym_co_return] = ACTIONS(3416), - [anon_sym_co_yield] = ACTIONS(3416), - [anon_sym_R_DQUOTE] = ACTIONS(3418), - [anon_sym_LR_DQUOTE] = ACTIONS(3418), - [anon_sym_uR_DQUOTE] = ACTIONS(3418), - [anon_sym_UR_DQUOTE] = ACTIONS(3418), - [anon_sym_u8R_DQUOTE] = ACTIONS(3418), - [anon_sym_co_await] = ACTIONS(3416), - [anon_sym_new] = ACTIONS(3416), - [anon_sym_requires] = ACTIONS(3416), - [sym_this] = ACTIONS(3416), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3418), - [sym_semgrep_named_ellipsis] = ACTIONS(3418), - }, [567] = { - [sym_identifier] = ACTIONS(3481), - [aux_sym_preproc_include_token1] = ACTIONS(3481), - [aux_sym_preproc_def_token1] = ACTIONS(3481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3483), - [aux_sym_preproc_if_token1] = ACTIONS(3481), - [aux_sym_preproc_if_token2] = ACTIONS(3481), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3481), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3481), - [aux_sym_preproc_else_token1] = ACTIONS(3481), - [aux_sym_preproc_elif_token1] = ACTIONS(3481), - [sym_preproc_directive] = ACTIONS(3481), - [anon_sym_LPAREN2] = ACTIONS(3483), - [anon_sym_BANG] = ACTIONS(3483), - [anon_sym_TILDE] = ACTIONS(3483), - [anon_sym_DASH] = ACTIONS(3481), - [anon_sym_PLUS] = ACTIONS(3481), - [anon_sym_STAR] = ACTIONS(3483), - [anon_sym_AMP_AMP] = ACTIONS(3483), - [anon_sym_AMP] = ACTIONS(3481), - [anon_sym_SEMI] = ACTIONS(3483), - [anon_sym___extension__] = ACTIONS(3481), - [anon_sym_typedef] = ACTIONS(3481), - [anon_sym_extern] = ACTIONS(3481), - [anon_sym___attribute__] = ACTIONS(3481), - [anon_sym_COLON_COLON] = ACTIONS(3483), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3483), - [anon_sym___declspec] = ACTIONS(3481), - [anon_sym___based] = ACTIONS(3481), - [anon_sym___cdecl] = ACTIONS(3481), - [anon_sym___clrcall] = ACTIONS(3481), - [anon_sym___stdcall] = ACTIONS(3481), - [anon_sym___fastcall] = ACTIONS(3481), - [anon_sym___thiscall] = ACTIONS(3481), - [anon_sym___vectorcall] = ACTIONS(3481), - [anon_sym_LBRACE] = ACTIONS(3483), - [anon_sym_signed] = ACTIONS(3481), - [anon_sym_unsigned] = ACTIONS(3481), - [anon_sym_long] = ACTIONS(3481), - [anon_sym_short] = ACTIONS(3481), - [anon_sym_LBRACK] = ACTIONS(3481), - [anon_sym_static] = ACTIONS(3481), - [anon_sym_register] = ACTIONS(3481), - [anon_sym_inline] = ACTIONS(3481), - [anon_sym___inline] = ACTIONS(3481), - [anon_sym___inline__] = ACTIONS(3481), - [anon_sym___forceinline] = ACTIONS(3481), - [anon_sym_thread_local] = ACTIONS(3481), - [anon_sym___thread] = ACTIONS(3481), - [anon_sym_const] = ACTIONS(3481), - [anon_sym_constexpr] = ACTIONS(3481), - [anon_sym_volatile] = ACTIONS(3481), - [anon_sym_restrict] = ACTIONS(3481), - [anon_sym___restrict__] = ACTIONS(3481), - [anon_sym__Atomic] = ACTIONS(3481), - [anon_sym__Noreturn] = ACTIONS(3481), - [anon_sym_noreturn] = ACTIONS(3481), - [anon_sym_mutable] = ACTIONS(3481), - [anon_sym_constinit] = ACTIONS(3481), - [anon_sym_consteval] = ACTIONS(3481), - [sym_primitive_type] = ACTIONS(3481), - [anon_sym_enum] = ACTIONS(3481), - [anon_sym_class] = ACTIONS(3481), - [anon_sym_struct] = ACTIONS(3481), - [anon_sym_union] = ACTIONS(3481), - [anon_sym_if] = ACTIONS(3481), - [anon_sym_switch] = ACTIONS(3481), - [anon_sym_case] = ACTIONS(3481), - [anon_sym_default] = ACTIONS(3481), - [anon_sym_while] = ACTIONS(3481), - [anon_sym_do] = ACTIONS(3481), - [anon_sym_for] = ACTIONS(3481), - [anon_sym_return] = ACTIONS(3481), - [anon_sym_break] = ACTIONS(3481), - [anon_sym_continue] = ACTIONS(3481), - [anon_sym_goto] = ACTIONS(3481), - [anon_sym___try] = ACTIONS(3481), - [anon_sym___leave] = ACTIONS(3481), - [anon_sym_not] = ACTIONS(3481), - [anon_sym_compl] = ACTIONS(3481), - [anon_sym_DASH_DASH] = ACTIONS(3483), - [anon_sym_PLUS_PLUS] = ACTIONS(3483), - [anon_sym_sizeof] = ACTIONS(3481), - [anon_sym___alignof__] = ACTIONS(3481), - [anon_sym___alignof] = ACTIONS(3481), - [anon_sym__alignof] = ACTIONS(3481), - [anon_sym_alignof] = ACTIONS(3481), - [anon_sym__Alignof] = ACTIONS(3481), - [anon_sym_offsetof] = ACTIONS(3481), - [anon_sym__Generic] = ACTIONS(3481), - [anon_sym_asm] = ACTIONS(3481), - [anon_sym___asm__] = ACTIONS(3481), - [sym_number_literal] = ACTIONS(3483), - [anon_sym_L_SQUOTE] = ACTIONS(3483), - [anon_sym_u_SQUOTE] = ACTIONS(3483), - [anon_sym_U_SQUOTE] = ACTIONS(3483), - [anon_sym_u8_SQUOTE] = ACTIONS(3483), - [anon_sym_SQUOTE] = ACTIONS(3483), - [anon_sym_L_DQUOTE] = ACTIONS(3483), - [anon_sym_u_DQUOTE] = ACTIONS(3483), - [anon_sym_U_DQUOTE] = ACTIONS(3483), - [anon_sym_u8_DQUOTE] = ACTIONS(3483), - [anon_sym_DQUOTE] = ACTIONS(3483), - [sym_true] = ACTIONS(3481), - [sym_false] = ACTIONS(3481), - [anon_sym_NULL] = ACTIONS(3481), - [anon_sym_nullptr] = ACTIONS(3481), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3481), - [anon_sym_decltype] = ACTIONS(3481), - [anon_sym_virtual] = ACTIONS(3481), - [anon_sym_alignas] = ACTIONS(3481), - [anon_sym_explicit] = ACTIONS(3481), - [anon_sym_typename] = ACTIONS(3481), - [anon_sym_template] = ACTIONS(3481), - [anon_sym_operator] = ACTIONS(3481), - [anon_sym_try] = ACTIONS(3481), - [anon_sym_delete] = ACTIONS(3481), - [anon_sym_throw] = ACTIONS(3481), - [anon_sym_namespace] = ACTIONS(3481), - [anon_sym_using] = ACTIONS(3481), - [anon_sym_static_assert] = ACTIONS(3481), - [anon_sym_concept] = ACTIONS(3481), - [anon_sym_co_return] = ACTIONS(3481), - [anon_sym_co_yield] = ACTIONS(3481), - [anon_sym_R_DQUOTE] = ACTIONS(3483), - [anon_sym_LR_DQUOTE] = ACTIONS(3483), - [anon_sym_uR_DQUOTE] = ACTIONS(3483), - [anon_sym_UR_DQUOTE] = ACTIONS(3483), - [anon_sym_u8R_DQUOTE] = ACTIONS(3483), - [anon_sym_co_await] = ACTIONS(3481), - [anon_sym_new] = ACTIONS(3481), - [anon_sym_requires] = ACTIONS(3481), - [sym_this] = ACTIONS(3481), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3483), - [sym_semgrep_named_ellipsis] = ACTIONS(3483), + [sym_identifier] = ACTIONS(2355), + [aux_sym_preproc_include_token1] = ACTIONS(2355), + [aux_sym_preproc_def_token1] = ACTIONS(2355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2353), + [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(2353), + [anon_sym_BANG] = ACTIONS(2353), + [anon_sym_TILDE] = ACTIONS(2353), + [anon_sym_DASH] = ACTIONS(2355), + [anon_sym_PLUS] = ACTIONS(2355), + [anon_sym_STAR] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(2353), + [anon_sym_AMP] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2353), + [anon_sym___extension__] = ACTIONS(2355), + [anon_sym_typedef] = ACTIONS(2355), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym___attribute__] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(2353), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), + [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(2353), + [anon_sym_RBRACE] = ACTIONS(2353), + [anon_sym_signed] = ACTIONS(2355), + [anon_sym_unsigned] = ACTIONS(2355), + [anon_sym_long] = ACTIONS(2355), + [anon_sym_short] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_static] = ACTIONS(2355), + [anon_sym_register] = ACTIONS(2355), + [anon_sym_inline] = ACTIONS(2355), + [anon_sym___inline] = ACTIONS(2355), + [anon_sym___inline__] = ACTIONS(2355), + [anon_sym___forceinline] = ACTIONS(2355), + [anon_sym_thread_local] = ACTIONS(2355), + [anon_sym___thread] = ACTIONS(2355), + [anon_sym_const] = ACTIONS(2355), + [anon_sym_constexpr] = ACTIONS(2355), + [anon_sym_volatile] = ACTIONS(2355), + [anon_sym_restrict] = ACTIONS(2355), + [anon_sym___restrict__] = ACTIONS(2355), + [anon_sym__Atomic] = ACTIONS(2355), + [anon_sym__Noreturn] = ACTIONS(2355), + [anon_sym_noreturn] = ACTIONS(2355), + [anon_sym_mutable] = ACTIONS(2355), + [anon_sym_constinit] = ACTIONS(2355), + [anon_sym_consteval] = 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___try] = ACTIONS(2355), + [anon_sym___leave] = ACTIONS(2355), + [anon_sym_not] = ACTIONS(2355), + [anon_sym_compl] = ACTIONS(2355), + [anon_sym_DASH_DASH] = ACTIONS(2353), + [anon_sym_PLUS_PLUS] = ACTIONS(2353), + [anon_sym_sizeof] = ACTIONS(2355), + [anon_sym___alignof__] = ACTIONS(2355), + [anon_sym___alignof] = ACTIONS(2355), + [anon_sym__alignof] = ACTIONS(2355), + [anon_sym_alignof] = ACTIONS(2355), + [anon_sym__Alignof] = ACTIONS(2355), + [anon_sym_offsetof] = ACTIONS(2355), + [anon_sym__Generic] = ACTIONS(2355), + [anon_sym_asm] = ACTIONS(2355), + [anon_sym___asm__] = ACTIONS(2355), + [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(2355), + [sym_false] = ACTIONS(2355), + [anon_sym_NULL] = ACTIONS(2355), + [anon_sym_nullptr] = ACTIONS(2355), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2355), + [anon_sym_decltype] = ACTIONS(2355), + [anon_sym_virtual] = ACTIONS(2355), + [anon_sym_alignas] = 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_catch] = ACTIONS(2355), + [anon_sym_R_DQUOTE] = ACTIONS(2353), + [anon_sym_LR_DQUOTE] = ACTIONS(2353), + [anon_sym_uR_DQUOTE] = ACTIONS(2353), + [anon_sym_UR_DQUOTE] = ACTIONS(2353), + [anon_sym_u8R_DQUOTE] = ACTIONS(2353), + [anon_sym_co_await] = ACTIONS(2355), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_requires] = ACTIONS(2355), + [sym_this] = ACTIONS(2355), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2353), + [sym_semgrep_named_ellipsis] = ACTIONS(2353), }, [568] = { - [sym_identifier] = ACTIONS(3648), - [aux_sym_preproc_include_token1] = ACTIONS(3648), - [aux_sym_preproc_def_token1] = ACTIONS(3648), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3650), - [aux_sym_preproc_if_token1] = ACTIONS(3648), - [aux_sym_preproc_if_token2] = ACTIONS(3648), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3648), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3648), - [aux_sym_preproc_else_token1] = ACTIONS(3648), - [aux_sym_preproc_elif_token1] = ACTIONS(3648), - [sym_preproc_directive] = ACTIONS(3648), - [anon_sym_LPAREN2] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3650), - [anon_sym_TILDE] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_AMP_AMP] = ACTIONS(3650), - [anon_sym_AMP] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3650), - [anon_sym___extension__] = ACTIONS(3648), - [anon_sym_typedef] = ACTIONS(3648), - [anon_sym_extern] = ACTIONS(3648), - [anon_sym___attribute__] = ACTIONS(3648), - [anon_sym_COLON_COLON] = ACTIONS(3650), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3650), - [anon_sym___declspec] = ACTIONS(3648), - [anon_sym___based] = ACTIONS(3648), - [anon_sym___cdecl] = ACTIONS(3648), - [anon_sym___clrcall] = ACTIONS(3648), - [anon_sym___stdcall] = ACTIONS(3648), - [anon_sym___fastcall] = ACTIONS(3648), - [anon_sym___thiscall] = ACTIONS(3648), - [anon_sym___vectorcall] = ACTIONS(3648), - [anon_sym_LBRACE] = ACTIONS(3650), - [anon_sym_signed] = ACTIONS(3648), - [anon_sym_unsigned] = ACTIONS(3648), - [anon_sym_long] = ACTIONS(3648), - [anon_sym_short] = ACTIONS(3648), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_static] = ACTIONS(3648), - [anon_sym_register] = ACTIONS(3648), - [anon_sym_inline] = ACTIONS(3648), - [anon_sym___inline] = ACTIONS(3648), - [anon_sym___inline__] = ACTIONS(3648), - [anon_sym___forceinline] = ACTIONS(3648), - [anon_sym_thread_local] = ACTIONS(3648), - [anon_sym___thread] = ACTIONS(3648), - [anon_sym_const] = ACTIONS(3648), - [anon_sym_constexpr] = ACTIONS(3648), - [anon_sym_volatile] = ACTIONS(3648), - [anon_sym_restrict] = ACTIONS(3648), - [anon_sym___restrict__] = ACTIONS(3648), - [anon_sym__Atomic] = ACTIONS(3648), - [anon_sym__Noreturn] = ACTIONS(3648), - [anon_sym_noreturn] = ACTIONS(3648), - [anon_sym_mutable] = ACTIONS(3648), - [anon_sym_constinit] = ACTIONS(3648), - [anon_sym_consteval] = ACTIONS(3648), - [sym_primitive_type] = ACTIONS(3648), - [anon_sym_enum] = ACTIONS(3648), - [anon_sym_class] = ACTIONS(3648), - [anon_sym_struct] = ACTIONS(3648), - [anon_sym_union] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3648), - [anon_sym_switch] = ACTIONS(3648), - [anon_sym_case] = ACTIONS(3648), - [anon_sym_default] = ACTIONS(3648), - [anon_sym_while] = ACTIONS(3648), - [anon_sym_do] = ACTIONS(3648), - [anon_sym_for] = ACTIONS(3648), - [anon_sym_return] = ACTIONS(3648), - [anon_sym_break] = ACTIONS(3648), - [anon_sym_continue] = ACTIONS(3648), - [anon_sym_goto] = ACTIONS(3648), - [anon_sym___try] = ACTIONS(3648), - [anon_sym___leave] = ACTIONS(3648), - [anon_sym_not] = ACTIONS(3648), - [anon_sym_compl] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3650), - [anon_sym_sizeof] = ACTIONS(3648), - [anon_sym___alignof__] = ACTIONS(3648), - [anon_sym___alignof] = ACTIONS(3648), - [anon_sym__alignof] = ACTIONS(3648), - [anon_sym_alignof] = ACTIONS(3648), - [anon_sym__Alignof] = ACTIONS(3648), - [anon_sym_offsetof] = ACTIONS(3648), - [anon_sym__Generic] = ACTIONS(3648), - [anon_sym_asm] = ACTIONS(3648), - [anon_sym___asm__] = ACTIONS(3648), - [sym_number_literal] = ACTIONS(3650), - [anon_sym_L_SQUOTE] = ACTIONS(3650), - [anon_sym_u_SQUOTE] = ACTIONS(3650), - [anon_sym_U_SQUOTE] = ACTIONS(3650), - [anon_sym_u8_SQUOTE] = ACTIONS(3650), - [anon_sym_SQUOTE] = ACTIONS(3650), - [anon_sym_L_DQUOTE] = ACTIONS(3650), - [anon_sym_u_DQUOTE] = ACTIONS(3650), - [anon_sym_U_DQUOTE] = ACTIONS(3650), - [anon_sym_u8_DQUOTE] = ACTIONS(3650), - [anon_sym_DQUOTE] = ACTIONS(3650), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [anon_sym_NULL] = ACTIONS(3648), - [anon_sym_nullptr] = ACTIONS(3648), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3648), - [anon_sym_decltype] = ACTIONS(3648), - [anon_sym_virtual] = ACTIONS(3648), - [anon_sym_alignas] = ACTIONS(3648), - [anon_sym_explicit] = ACTIONS(3648), - [anon_sym_typename] = ACTIONS(3648), - [anon_sym_template] = ACTIONS(3648), - [anon_sym_operator] = ACTIONS(3648), - [anon_sym_try] = ACTIONS(3648), - [anon_sym_delete] = ACTIONS(3648), - [anon_sym_throw] = ACTIONS(3648), - [anon_sym_namespace] = ACTIONS(3648), - [anon_sym_using] = ACTIONS(3648), - [anon_sym_static_assert] = ACTIONS(3648), - [anon_sym_concept] = ACTIONS(3648), - [anon_sym_co_return] = ACTIONS(3648), - [anon_sym_co_yield] = ACTIONS(3648), - [anon_sym_R_DQUOTE] = ACTIONS(3650), - [anon_sym_LR_DQUOTE] = ACTIONS(3650), - [anon_sym_uR_DQUOTE] = ACTIONS(3650), - [anon_sym_UR_DQUOTE] = ACTIONS(3650), - [anon_sym_u8R_DQUOTE] = ACTIONS(3650), - [anon_sym_co_await] = ACTIONS(3648), - [anon_sym_new] = ACTIONS(3648), - [anon_sym_requires] = ACTIONS(3648), - [sym_this] = ACTIONS(3648), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3650), - [sym_semgrep_named_ellipsis] = ACTIONS(3650), + [sym_identifier] = ACTIONS(3159), + [aux_sym_preproc_include_token1] = ACTIONS(3159), + [aux_sym_preproc_def_token1] = ACTIONS(3159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3161), + [aux_sym_preproc_if_token1] = ACTIONS(3159), + [aux_sym_preproc_if_token2] = ACTIONS(3159), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3159), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3159), + [sym_preproc_directive] = ACTIONS(3159), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_AMP_AMP] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_SEMI] = ACTIONS(3161), + [anon_sym___extension__] = ACTIONS(3159), + [anon_sym_typedef] = ACTIONS(3159), + [anon_sym_extern] = ACTIONS(3159), + [anon_sym___attribute__] = ACTIONS(3159), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), + [anon_sym___declspec] = ACTIONS(3159), + [anon_sym___based] = ACTIONS(3159), + [anon_sym___cdecl] = ACTIONS(3159), + [anon_sym___clrcall] = ACTIONS(3159), + [anon_sym___stdcall] = ACTIONS(3159), + [anon_sym___fastcall] = ACTIONS(3159), + [anon_sym___thiscall] = ACTIONS(3159), + [anon_sym___vectorcall] = ACTIONS(3159), + [anon_sym_LBRACE] = ACTIONS(3161), + [anon_sym_signed] = ACTIONS(3159), + [anon_sym_unsigned] = ACTIONS(3159), + [anon_sym_long] = ACTIONS(3159), + [anon_sym_short] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_static] = ACTIONS(3159), + [anon_sym_register] = ACTIONS(3159), + [anon_sym_inline] = ACTIONS(3159), + [anon_sym___inline] = ACTIONS(3159), + [anon_sym___inline__] = ACTIONS(3159), + [anon_sym___forceinline] = ACTIONS(3159), + [anon_sym_thread_local] = ACTIONS(3159), + [anon_sym___thread] = ACTIONS(3159), + [anon_sym_const] = ACTIONS(3159), + [anon_sym_constexpr] = ACTIONS(3159), + [anon_sym_volatile] = ACTIONS(3159), + [anon_sym_restrict] = ACTIONS(3159), + [anon_sym___restrict__] = ACTIONS(3159), + [anon_sym__Atomic] = ACTIONS(3159), + [anon_sym__Noreturn] = ACTIONS(3159), + [anon_sym_noreturn] = ACTIONS(3159), + [anon_sym_mutable] = ACTIONS(3159), + [anon_sym_constinit] = ACTIONS(3159), + [anon_sym_consteval] = ACTIONS(3159), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3159), + [anon_sym_class] = ACTIONS(3159), + [anon_sym_struct] = ACTIONS(3159), + [anon_sym_union] = ACTIONS(3159), + [anon_sym_if] = ACTIONS(3159), + [anon_sym_else] = ACTIONS(3159), + [anon_sym_switch] = ACTIONS(3159), + [anon_sym_case] = ACTIONS(3159), + [anon_sym_default] = ACTIONS(3159), + [anon_sym_while] = ACTIONS(3159), + [anon_sym_do] = ACTIONS(3159), + [anon_sym_for] = ACTIONS(3159), + [anon_sym_return] = ACTIONS(3159), + [anon_sym_break] = ACTIONS(3159), + [anon_sym_continue] = ACTIONS(3159), + [anon_sym_goto] = ACTIONS(3159), + [anon_sym___try] = ACTIONS(3159), + [anon_sym___leave] = ACTIONS(3159), + [anon_sym_not] = ACTIONS(3159), + [anon_sym_compl] = ACTIONS(3159), + [anon_sym_DASH_DASH] = ACTIONS(3161), + [anon_sym_PLUS_PLUS] = ACTIONS(3161), + [anon_sym_sizeof] = ACTIONS(3159), + [anon_sym___alignof__] = ACTIONS(3159), + [anon_sym___alignof] = ACTIONS(3159), + [anon_sym__alignof] = ACTIONS(3159), + [anon_sym_alignof] = ACTIONS(3159), + [anon_sym__Alignof] = ACTIONS(3159), + [anon_sym_offsetof] = ACTIONS(3159), + [anon_sym__Generic] = ACTIONS(3159), + [anon_sym_asm] = ACTIONS(3159), + [anon_sym___asm__] = ACTIONS(3159), + [sym_number_literal] = ACTIONS(3161), + [anon_sym_L_SQUOTE] = ACTIONS(3161), + [anon_sym_u_SQUOTE] = ACTIONS(3161), + [anon_sym_U_SQUOTE] = ACTIONS(3161), + [anon_sym_u8_SQUOTE] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3161), + [anon_sym_L_DQUOTE] = ACTIONS(3161), + [anon_sym_u_DQUOTE] = ACTIONS(3161), + [anon_sym_U_DQUOTE] = ACTIONS(3161), + [anon_sym_u8_DQUOTE] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(3161), + [sym_true] = ACTIONS(3159), + [sym_false] = ACTIONS(3159), + [anon_sym_NULL] = ACTIONS(3159), + [anon_sym_nullptr] = ACTIONS(3159), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3159), + [anon_sym_decltype] = ACTIONS(3159), + [anon_sym_virtual] = ACTIONS(3159), + [anon_sym_alignas] = ACTIONS(3159), + [anon_sym_explicit] = ACTIONS(3159), + [anon_sym_typename] = ACTIONS(3159), + [anon_sym_template] = ACTIONS(3159), + [anon_sym_operator] = ACTIONS(3159), + [anon_sym_try] = ACTIONS(3159), + [anon_sym_delete] = ACTIONS(3159), + [anon_sym_throw] = ACTIONS(3159), + [anon_sym_namespace] = ACTIONS(3159), + [anon_sym_using] = ACTIONS(3159), + [anon_sym_static_assert] = ACTIONS(3159), + [anon_sym_concept] = ACTIONS(3159), + [anon_sym_co_return] = ACTIONS(3159), + [anon_sym_co_yield] = ACTIONS(3159), + [anon_sym_R_DQUOTE] = ACTIONS(3161), + [anon_sym_LR_DQUOTE] = ACTIONS(3161), + [anon_sym_uR_DQUOTE] = ACTIONS(3161), + [anon_sym_UR_DQUOTE] = ACTIONS(3161), + [anon_sym_u8R_DQUOTE] = ACTIONS(3161), + [anon_sym_co_await] = ACTIONS(3159), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_requires] = ACTIONS(3159), + [sym_this] = ACTIONS(3159), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3161), + [sym_semgrep_named_ellipsis] = ACTIONS(3161), }, [569] = { - [ts_builtin_sym_end] = ACTIONS(3103), - [sym_identifier] = ACTIONS(3101), - [aux_sym_preproc_include_token1] = ACTIONS(3101), - [aux_sym_preproc_def_token1] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3103), - [aux_sym_preproc_if_token1] = ACTIONS(3101), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3101), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3101), - [sym_preproc_directive] = ACTIONS(3101), - [anon_sym_LPAREN2] = ACTIONS(3103), - [anon_sym_BANG] = ACTIONS(3103), - [anon_sym_TILDE] = ACTIONS(3103), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_AMP_AMP] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym___extension__] = ACTIONS(3101), - [anon_sym_typedef] = ACTIONS(3101), - [anon_sym_extern] = ACTIONS(3101), - [anon_sym___attribute__] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(3103), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3103), - [anon_sym___declspec] = ACTIONS(3101), - [anon_sym___based] = ACTIONS(3101), - [anon_sym___cdecl] = ACTIONS(3101), - [anon_sym___clrcall] = ACTIONS(3101), - [anon_sym___stdcall] = ACTIONS(3101), - [anon_sym___fastcall] = ACTIONS(3101), - [anon_sym___thiscall] = ACTIONS(3101), - [anon_sym___vectorcall] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3103), - [anon_sym_signed] = ACTIONS(3101), - [anon_sym_unsigned] = ACTIONS(3101), - [anon_sym_long] = ACTIONS(3101), - [anon_sym_short] = ACTIONS(3101), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_static] = ACTIONS(3101), - [anon_sym_register] = ACTIONS(3101), - [anon_sym_inline] = ACTIONS(3101), - [anon_sym___inline] = ACTIONS(3101), - [anon_sym___inline__] = ACTIONS(3101), - [anon_sym___forceinline] = ACTIONS(3101), - [anon_sym_thread_local] = ACTIONS(3101), - [anon_sym___thread] = ACTIONS(3101), - [anon_sym_const] = ACTIONS(3101), - [anon_sym_constexpr] = ACTIONS(3101), - [anon_sym_volatile] = ACTIONS(3101), - [anon_sym_restrict] = ACTIONS(3101), - [anon_sym___restrict__] = ACTIONS(3101), - [anon_sym__Atomic] = ACTIONS(3101), - [anon_sym__Noreturn] = ACTIONS(3101), - [anon_sym_noreturn] = ACTIONS(3101), - [anon_sym_mutable] = ACTIONS(3101), - [anon_sym_constinit] = ACTIONS(3101), - [anon_sym_consteval] = ACTIONS(3101), - [sym_primitive_type] = ACTIONS(3101), - [anon_sym_enum] = ACTIONS(3101), - [anon_sym_class] = ACTIONS(3101), - [anon_sym_struct] = ACTIONS(3101), - [anon_sym_union] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_else] = ACTIONS(3101), - [anon_sym_switch] = ACTIONS(3101), - [anon_sym_case] = ACTIONS(3101), - [anon_sym_default] = ACTIONS(3101), - [anon_sym_while] = ACTIONS(3101), - [anon_sym_do] = ACTIONS(3101), - [anon_sym_for] = ACTIONS(3101), - [anon_sym_return] = ACTIONS(3101), - [anon_sym_break] = ACTIONS(3101), - [anon_sym_continue] = ACTIONS(3101), - [anon_sym_goto] = ACTIONS(3101), - [anon_sym___try] = ACTIONS(3101), - [anon_sym___leave] = ACTIONS(3101), - [anon_sym_not] = ACTIONS(3101), - [anon_sym_compl] = ACTIONS(3101), - [anon_sym_DASH_DASH] = ACTIONS(3103), - [anon_sym_PLUS_PLUS] = ACTIONS(3103), - [anon_sym_sizeof] = ACTIONS(3101), - [anon_sym___alignof__] = ACTIONS(3101), - [anon_sym___alignof] = ACTIONS(3101), - [anon_sym__alignof] = ACTIONS(3101), - [anon_sym_alignof] = ACTIONS(3101), - [anon_sym__Alignof] = ACTIONS(3101), - [anon_sym_offsetof] = ACTIONS(3101), - [anon_sym__Generic] = ACTIONS(3101), - [anon_sym_asm] = ACTIONS(3101), - [anon_sym___asm__] = ACTIONS(3101), - [sym_number_literal] = ACTIONS(3103), - [anon_sym_L_SQUOTE] = ACTIONS(3103), - [anon_sym_u_SQUOTE] = ACTIONS(3103), - [anon_sym_U_SQUOTE] = ACTIONS(3103), - [anon_sym_u8_SQUOTE] = ACTIONS(3103), - [anon_sym_SQUOTE] = ACTIONS(3103), - [anon_sym_L_DQUOTE] = ACTIONS(3103), - [anon_sym_u_DQUOTE] = ACTIONS(3103), - [anon_sym_U_DQUOTE] = ACTIONS(3103), - [anon_sym_u8_DQUOTE] = ACTIONS(3103), - [anon_sym_DQUOTE] = ACTIONS(3103), - [sym_true] = ACTIONS(3101), - [sym_false] = ACTIONS(3101), - [anon_sym_NULL] = ACTIONS(3101), - [anon_sym_nullptr] = ACTIONS(3101), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3101), - [anon_sym_decltype] = ACTIONS(3101), - [anon_sym_virtual] = ACTIONS(3101), - [anon_sym_alignas] = ACTIONS(3101), - [anon_sym_explicit] = ACTIONS(3101), - [anon_sym_typename] = ACTIONS(3101), - [anon_sym_template] = ACTIONS(3101), - [anon_sym_operator] = ACTIONS(3101), - [anon_sym_try] = ACTIONS(3101), - [anon_sym_delete] = ACTIONS(3101), - [anon_sym_throw] = ACTIONS(3101), - [anon_sym_namespace] = ACTIONS(3101), - [anon_sym_using] = ACTIONS(3101), - [anon_sym_static_assert] = ACTIONS(3101), - [anon_sym_concept] = ACTIONS(3101), - [anon_sym_co_return] = ACTIONS(3101), - [anon_sym_co_yield] = ACTIONS(3101), - [anon_sym_catch] = ACTIONS(3101), - [anon_sym_R_DQUOTE] = ACTIONS(3103), - [anon_sym_LR_DQUOTE] = ACTIONS(3103), - [anon_sym_uR_DQUOTE] = ACTIONS(3103), - [anon_sym_UR_DQUOTE] = ACTIONS(3103), - [anon_sym_u8R_DQUOTE] = ACTIONS(3103), - [anon_sym_co_await] = ACTIONS(3101), - [anon_sym_new] = ACTIONS(3101), - [anon_sym_requires] = ACTIONS(3101), - [sym_this] = ACTIONS(3101), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3103), - [sym_semgrep_named_ellipsis] = ACTIONS(3103), + [sym_identifier] = ACTIONS(3123), + [aux_sym_preproc_include_token1] = ACTIONS(3123), + [aux_sym_preproc_def_token1] = ACTIONS(3123), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3125), + [aux_sym_preproc_if_token1] = ACTIONS(3123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3123), + [sym_preproc_directive] = ACTIONS(3123), + [anon_sym_LPAREN2] = ACTIONS(3125), + [anon_sym_BANG] = ACTIONS(3125), + [anon_sym_TILDE] = ACTIONS(3125), + [anon_sym_DASH] = ACTIONS(3123), + [anon_sym_PLUS] = ACTIONS(3123), + [anon_sym_STAR] = ACTIONS(3125), + [anon_sym_AMP_AMP] = ACTIONS(3125), + [anon_sym_AMP] = ACTIONS(3123), + [anon_sym_SEMI] = ACTIONS(3125), + [anon_sym___extension__] = ACTIONS(3123), + [anon_sym_typedef] = ACTIONS(3123), + [anon_sym_extern] = ACTIONS(3123), + [anon_sym___attribute__] = ACTIONS(3123), + [anon_sym_COLON_COLON] = ACTIONS(3125), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3125), + [anon_sym___declspec] = ACTIONS(3123), + [anon_sym___based] = ACTIONS(3123), + [anon_sym___cdecl] = ACTIONS(3123), + [anon_sym___clrcall] = ACTIONS(3123), + [anon_sym___stdcall] = ACTIONS(3123), + [anon_sym___fastcall] = ACTIONS(3123), + [anon_sym___thiscall] = ACTIONS(3123), + [anon_sym___vectorcall] = ACTIONS(3123), + [anon_sym_LBRACE] = ACTIONS(3125), + [anon_sym_RBRACE] = ACTIONS(3125), + [anon_sym_signed] = ACTIONS(3123), + [anon_sym_unsigned] = ACTIONS(3123), + [anon_sym_long] = ACTIONS(3123), + [anon_sym_short] = ACTIONS(3123), + [anon_sym_LBRACK] = ACTIONS(3123), + [anon_sym_static] = ACTIONS(3123), + [anon_sym_register] = ACTIONS(3123), + [anon_sym_inline] = ACTIONS(3123), + [anon_sym___inline] = ACTIONS(3123), + [anon_sym___inline__] = ACTIONS(3123), + [anon_sym___forceinline] = ACTIONS(3123), + [anon_sym_thread_local] = ACTIONS(3123), + [anon_sym___thread] = ACTIONS(3123), + [anon_sym_const] = ACTIONS(3123), + [anon_sym_constexpr] = ACTIONS(3123), + [anon_sym_volatile] = ACTIONS(3123), + [anon_sym_restrict] = ACTIONS(3123), + [anon_sym___restrict__] = ACTIONS(3123), + [anon_sym__Atomic] = ACTIONS(3123), + [anon_sym__Noreturn] = ACTIONS(3123), + [anon_sym_noreturn] = ACTIONS(3123), + [anon_sym_mutable] = ACTIONS(3123), + [anon_sym_constinit] = ACTIONS(3123), + [anon_sym_consteval] = ACTIONS(3123), + [sym_primitive_type] = ACTIONS(3123), + [anon_sym_enum] = ACTIONS(3123), + [anon_sym_class] = ACTIONS(3123), + [anon_sym_struct] = ACTIONS(3123), + [anon_sym_union] = ACTIONS(3123), + [anon_sym_if] = ACTIONS(3123), + [anon_sym_else] = ACTIONS(3123), + [anon_sym_switch] = ACTIONS(3123), + [anon_sym_case] = ACTIONS(3123), + [anon_sym_default] = ACTIONS(3123), + [anon_sym_while] = ACTIONS(3123), + [anon_sym_do] = ACTIONS(3123), + [anon_sym_for] = ACTIONS(3123), + [anon_sym_return] = ACTIONS(3123), + [anon_sym_break] = ACTIONS(3123), + [anon_sym_continue] = ACTIONS(3123), + [anon_sym_goto] = ACTIONS(3123), + [anon_sym___try] = ACTIONS(3123), + [anon_sym___leave] = ACTIONS(3123), + [anon_sym_not] = ACTIONS(3123), + [anon_sym_compl] = ACTIONS(3123), + [anon_sym_DASH_DASH] = ACTIONS(3125), + [anon_sym_PLUS_PLUS] = ACTIONS(3125), + [anon_sym_sizeof] = ACTIONS(3123), + [anon_sym___alignof__] = ACTIONS(3123), + [anon_sym___alignof] = ACTIONS(3123), + [anon_sym__alignof] = ACTIONS(3123), + [anon_sym_alignof] = ACTIONS(3123), + [anon_sym__Alignof] = ACTIONS(3123), + [anon_sym_offsetof] = ACTIONS(3123), + [anon_sym__Generic] = ACTIONS(3123), + [anon_sym_asm] = ACTIONS(3123), + [anon_sym___asm__] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(3125), + [anon_sym_L_SQUOTE] = ACTIONS(3125), + [anon_sym_u_SQUOTE] = ACTIONS(3125), + [anon_sym_U_SQUOTE] = ACTIONS(3125), + [anon_sym_u8_SQUOTE] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3125), + [anon_sym_L_DQUOTE] = ACTIONS(3125), + [anon_sym_u_DQUOTE] = ACTIONS(3125), + [anon_sym_U_DQUOTE] = ACTIONS(3125), + [anon_sym_u8_DQUOTE] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym_true] = ACTIONS(3123), + [sym_false] = ACTIONS(3123), + [anon_sym_NULL] = ACTIONS(3123), + [anon_sym_nullptr] = ACTIONS(3123), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3123), + [anon_sym_decltype] = ACTIONS(3123), + [anon_sym_virtual] = ACTIONS(3123), + [anon_sym_alignas] = ACTIONS(3123), + [anon_sym_explicit] = ACTIONS(3123), + [anon_sym_typename] = ACTIONS(3123), + [anon_sym_template] = ACTIONS(3123), + [anon_sym_operator] = ACTIONS(3123), + [anon_sym_try] = ACTIONS(3123), + [anon_sym_delete] = ACTIONS(3123), + [anon_sym_throw] = ACTIONS(3123), + [anon_sym_namespace] = ACTIONS(3123), + [anon_sym_using] = ACTIONS(3123), + [anon_sym_static_assert] = ACTIONS(3123), + [anon_sym_concept] = ACTIONS(3123), + [anon_sym_co_return] = ACTIONS(3123), + [anon_sym_co_yield] = ACTIONS(3123), + [anon_sym_R_DQUOTE] = ACTIONS(3125), + [anon_sym_LR_DQUOTE] = ACTIONS(3125), + [anon_sym_uR_DQUOTE] = ACTIONS(3125), + [anon_sym_UR_DQUOTE] = ACTIONS(3125), + [anon_sym_u8R_DQUOTE] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3123), + [anon_sym_new] = ACTIONS(3123), + [anon_sym_requires] = ACTIONS(3123), + [sym_this] = ACTIONS(3123), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3125), + [sym_semgrep_named_ellipsis] = ACTIONS(3125), }, [570] = { - [sym_identifier] = ACTIONS(3477), - [aux_sym_preproc_include_token1] = ACTIONS(3477), - [aux_sym_preproc_def_token1] = ACTIONS(3477), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3479), - [aux_sym_preproc_if_token1] = ACTIONS(3477), - [aux_sym_preproc_if_token2] = ACTIONS(3477), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3477), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3477), - [aux_sym_preproc_else_token1] = ACTIONS(3477), - [aux_sym_preproc_elif_token1] = ACTIONS(3477), - [sym_preproc_directive] = ACTIONS(3477), - [anon_sym_LPAREN2] = ACTIONS(3479), - [anon_sym_BANG] = ACTIONS(3479), - [anon_sym_TILDE] = ACTIONS(3479), - [anon_sym_DASH] = ACTIONS(3477), - [anon_sym_PLUS] = ACTIONS(3477), - [anon_sym_STAR] = ACTIONS(3479), - [anon_sym_AMP_AMP] = ACTIONS(3479), - [anon_sym_AMP] = ACTIONS(3477), - [anon_sym_SEMI] = ACTIONS(3479), - [anon_sym___extension__] = ACTIONS(3477), - [anon_sym_typedef] = ACTIONS(3477), - [anon_sym_extern] = ACTIONS(3477), - [anon_sym___attribute__] = ACTIONS(3477), - [anon_sym_COLON_COLON] = ACTIONS(3479), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3479), - [anon_sym___declspec] = ACTIONS(3477), - [anon_sym___based] = ACTIONS(3477), - [anon_sym___cdecl] = ACTIONS(3477), - [anon_sym___clrcall] = ACTIONS(3477), - [anon_sym___stdcall] = ACTIONS(3477), - [anon_sym___fastcall] = ACTIONS(3477), - [anon_sym___thiscall] = ACTIONS(3477), - [anon_sym___vectorcall] = ACTIONS(3477), - [anon_sym_LBRACE] = ACTIONS(3479), - [anon_sym_signed] = ACTIONS(3477), - [anon_sym_unsigned] = ACTIONS(3477), - [anon_sym_long] = ACTIONS(3477), - [anon_sym_short] = ACTIONS(3477), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_static] = ACTIONS(3477), - [anon_sym_register] = ACTIONS(3477), - [anon_sym_inline] = ACTIONS(3477), - [anon_sym___inline] = ACTIONS(3477), - [anon_sym___inline__] = ACTIONS(3477), - [anon_sym___forceinline] = ACTIONS(3477), - [anon_sym_thread_local] = ACTIONS(3477), - [anon_sym___thread] = ACTIONS(3477), - [anon_sym_const] = ACTIONS(3477), - [anon_sym_constexpr] = ACTIONS(3477), - [anon_sym_volatile] = ACTIONS(3477), - [anon_sym_restrict] = ACTIONS(3477), - [anon_sym___restrict__] = ACTIONS(3477), - [anon_sym__Atomic] = ACTIONS(3477), - [anon_sym__Noreturn] = ACTIONS(3477), - [anon_sym_noreturn] = ACTIONS(3477), - [anon_sym_mutable] = ACTIONS(3477), - [anon_sym_constinit] = ACTIONS(3477), - [anon_sym_consteval] = ACTIONS(3477), - [sym_primitive_type] = ACTIONS(3477), - [anon_sym_enum] = ACTIONS(3477), - [anon_sym_class] = ACTIONS(3477), - [anon_sym_struct] = ACTIONS(3477), - [anon_sym_union] = ACTIONS(3477), - [anon_sym_if] = ACTIONS(3477), - [anon_sym_switch] = ACTIONS(3477), - [anon_sym_case] = ACTIONS(3477), - [anon_sym_default] = ACTIONS(3477), - [anon_sym_while] = ACTIONS(3477), - [anon_sym_do] = ACTIONS(3477), - [anon_sym_for] = ACTIONS(3477), - [anon_sym_return] = ACTIONS(3477), - [anon_sym_break] = ACTIONS(3477), - [anon_sym_continue] = ACTIONS(3477), - [anon_sym_goto] = ACTIONS(3477), - [anon_sym___try] = ACTIONS(3477), - [anon_sym___leave] = ACTIONS(3477), - [anon_sym_not] = ACTIONS(3477), - [anon_sym_compl] = ACTIONS(3477), - [anon_sym_DASH_DASH] = ACTIONS(3479), - [anon_sym_PLUS_PLUS] = ACTIONS(3479), - [anon_sym_sizeof] = ACTIONS(3477), - [anon_sym___alignof__] = ACTIONS(3477), - [anon_sym___alignof] = ACTIONS(3477), - [anon_sym__alignof] = ACTIONS(3477), - [anon_sym_alignof] = ACTIONS(3477), - [anon_sym__Alignof] = ACTIONS(3477), - [anon_sym_offsetof] = ACTIONS(3477), - [anon_sym__Generic] = ACTIONS(3477), - [anon_sym_asm] = ACTIONS(3477), - [anon_sym___asm__] = ACTIONS(3477), - [sym_number_literal] = ACTIONS(3479), - [anon_sym_L_SQUOTE] = ACTIONS(3479), - [anon_sym_u_SQUOTE] = ACTIONS(3479), - [anon_sym_U_SQUOTE] = ACTIONS(3479), - [anon_sym_u8_SQUOTE] = ACTIONS(3479), - [anon_sym_SQUOTE] = ACTIONS(3479), - [anon_sym_L_DQUOTE] = ACTIONS(3479), - [anon_sym_u_DQUOTE] = ACTIONS(3479), - [anon_sym_U_DQUOTE] = ACTIONS(3479), - [anon_sym_u8_DQUOTE] = ACTIONS(3479), - [anon_sym_DQUOTE] = ACTIONS(3479), - [sym_true] = ACTIONS(3477), - [sym_false] = ACTIONS(3477), - [anon_sym_NULL] = ACTIONS(3477), - [anon_sym_nullptr] = ACTIONS(3477), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3477), - [anon_sym_decltype] = ACTIONS(3477), - [anon_sym_virtual] = ACTIONS(3477), - [anon_sym_alignas] = ACTIONS(3477), - [anon_sym_explicit] = ACTIONS(3477), - [anon_sym_typename] = ACTIONS(3477), - [anon_sym_template] = ACTIONS(3477), - [anon_sym_operator] = ACTIONS(3477), - [anon_sym_try] = ACTIONS(3477), - [anon_sym_delete] = ACTIONS(3477), - [anon_sym_throw] = ACTIONS(3477), - [anon_sym_namespace] = ACTIONS(3477), - [anon_sym_using] = ACTIONS(3477), - [anon_sym_static_assert] = ACTIONS(3477), - [anon_sym_concept] = ACTIONS(3477), - [anon_sym_co_return] = ACTIONS(3477), - [anon_sym_co_yield] = ACTIONS(3477), - [anon_sym_R_DQUOTE] = ACTIONS(3479), - [anon_sym_LR_DQUOTE] = ACTIONS(3479), - [anon_sym_uR_DQUOTE] = ACTIONS(3479), - [anon_sym_UR_DQUOTE] = ACTIONS(3479), - [anon_sym_u8R_DQUOTE] = ACTIONS(3479), - [anon_sym_co_await] = ACTIONS(3477), - [anon_sym_new] = ACTIONS(3477), - [anon_sym_requires] = ACTIONS(3477), - [sym_this] = ACTIONS(3477), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3479), - [sym_semgrep_named_ellipsis] = ACTIONS(3479), + [sym_identifier] = ACTIONS(3143), + [aux_sym_preproc_include_token1] = ACTIONS(3143), + [aux_sym_preproc_def_token1] = ACTIONS(3143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3145), + [aux_sym_preproc_if_token1] = ACTIONS(3143), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3143), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3143), + [sym_preproc_directive] = ACTIONS(3143), + [anon_sym_LPAREN2] = ACTIONS(3145), + [anon_sym_BANG] = ACTIONS(3145), + [anon_sym_TILDE] = ACTIONS(3145), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(3145), + [anon_sym_AMP_AMP] = ACTIONS(3145), + [anon_sym_AMP] = ACTIONS(3143), + [anon_sym_SEMI] = ACTIONS(3145), + [anon_sym___extension__] = ACTIONS(3143), + [anon_sym_typedef] = ACTIONS(3143), + [anon_sym_extern] = ACTIONS(3143), + [anon_sym___attribute__] = ACTIONS(3143), + [anon_sym_COLON_COLON] = ACTIONS(3145), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3145), + [anon_sym___declspec] = ACTIONS(3143), + [anon_sym___based] = ACTIONS(3143), + [anon_sym___cdecl] = ACTIONS(3143), + [anon_sym___clrcall] = ACTIONS(3143), + [anon_sym___stdcall] = ACTIONS(3143), + [anon_sym___fastcall] = ACTIONS(3143), + [anon_sym___thiscall] = ACTIONS(3143), + [anon_sym___vectorcall] = ACTIONS(3143), + [anon_sym_LBRACE] = ACTIONS(3145), + [anon_sym_RBRACE] = ACTIONS(3145), + [anon_sym_signed] = ACTIONS(3143), + [anon_sym_unsigned] = ACTIONS(3143), + [anon_sym_long] = ACTIONS(3143), + [anon_sym_short] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(3143), + [anon_sym_static] = ACTIONS(3143), + [anon_sym_register] = ACTIONS(3143), + [anon_sym_inline] = ACTIONS(3143), + [anon_sym___inline] = ACTIONS(3143), + [anon_sym___inline__] = ACTIONS(3143), + [anon_sym___forceinline] = ACTIONS(3143), + [anon_sym_thread_local] = ACTIONS(3143), + [anon_sym___thread] = ACTIONS(3143), + [anon_sym_const] = ACTIONS(3143), + [anon_sym_constexpr] = ACTIONS(3143), + [anon_sym_volatile] = ACTIONS(3143), + [anon_sym_restrict] = ACTIONS(3143), + [anon_sym___restrict__] = ACTIONS(3143), + [anon_sym__Atomic] = ACTIONS(3143), + [anon_sym__Noreturn] = ACTIONS(3143), + [anon_sym_noreturn] = ACTIONS(3143), + [anon_sym_mutable] = ACTIONS(3143), + [anon_sym_constinit] = ACTIONS(3143), + [anon_sym_consteval] = ACTIONS(3143), + [sym_primitive_type] = ACTIONS(3143), + [anon_sym_enum] = ACTIONS(3143), + [anon_sym_class] = ACTIONS(3143), + [anon_sym_struct] = ACTIONS(3143), + [anon_sym_union] = ACTIONS(3143), + [anon_sym_if] = ACTIONS(3143), + [anon_sym_else] = ACTIONS(3143), + [anon_sym_switch] = ACTIONS(3143), + [anon_sym_case] = ACTIONS(3143), + [anon_sym_default] = ACTIONS(3143), + [anon_sym_while] = ACTIONS(3143), + [anon_sym_do] = ACTIONS(3143), + [anon_sym_for] = ACTIONS(3143), + [anon_sym_return] = ACTIONS(3143), + [anon_sym_break] = ACTIONS(3143), + [anon_sym_continue] = ACTIONS(3143), + [anon_sym_goto] = ACTIONS(3143), + [anon_sym___try] = ACTIONS(3143), + [anon_sym___leave] = ACTIONS(3143), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3145), + [anon_sym_PLUS_PLUS] = ACTIONS(3145), + [anon_sym_sizeof] = ACTIONS(3143), + [anon_sym___alignof__] = ACTIONS(3143), + [anon_sym___alignof] = ACTIONS(3143), + [anon_sym__alignof] = ACTIONS(3143), + [anon_sym_alignof] = ACTIONS(3143), + [anon_sym__Alignof] = ACTIONS(3143), + [anon_sym_offsetof] = ACTIONS(3143), + [anon_sym__Generic] = ACTIONS(3143), + [anon_sym_asm] = ACTIONS(3143), + [anon_sym___asm__] = ACTIONS(3143), + [sym_number_literal] = ACTIONS(3145), + [anon_sym_L_SQUOTE] = ACTIONS(3145), + [anon_sym_u_SQUOTE] = ACTIONS(3145), + [anon_sym_U_SQUOTE] = ACTIONS(3145), + [anon_sym_u8_SQUOTE] = ACTIONS(3145), + [anon_sym_SQUOTE] = ACTIONS(3145), + [anon_sym_L_DQUOTE] = ACTIONS(3145), + [anon_sym_u_DQUOTE] = ACTIONS(3145), + [anon_sym_U_DQUOTE] = ACTIONS(3145), + [anon_sym_u8_DQUOTE] = ACTIONS(3145), + [anon_sym_DQUOTE] = ACTIONS(3145), + [sym_true] = ACTIONS(3143), + [sym_false] = ACTIONS(3143), + [anon_sym_NULL] = ACTIONS(3143), + [anon_sym_nullptr] = ACTIONS(3143), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3143), + [anon_sym_decltype] = ACTIONS(3143), + [anon_sym_virtual] = ACTIONS(3143), + [anon_sym_alignas] = ACTIONS(3143), + [anon_sym_explicit] = ACTIONS(3143), + [anon_sym_typename] = ACTIONS(3143), + [anon_sym_template] = ACTIONS(3143), + [anon_sym_operator] = ACTIONS(3143), + [anon_sym_try] = ACTIONS(3143), + [anon_sym_delete] = ACTIONS(3143), + [anon_sym_throw] = ACTIONS(3143), + [anon_sym_namespace] = ACTIONS(3143), + [anon_sym_using] = ACTIONS(3143), + [anon_sym_static_assert] = ACTIONS(3143), + [anon_sym_concept] = ACTIONS(3143), + [anon_sym_co_return] = ACTIONS(3143), + [anon_sym_co_yield] = ACTIONS(3143), + [anon_sym_R_DQUOTE] = ACTIONS(3145), + [anon_sym_LR_DQUOTE] = ACTIONS(3145), + [anon_sym_uR_DQUOTE] = ACTIONS(3145), + [anon_sym_UR_DQUOTE] = ACTIONS(3145), + [anon_sym_u8R_DQUOTE] = ACTIONS(3145), + [anon_sym_co_await] = ACTIONS(3143), + [anon_sym_new] = ACTIONS(3143), + [anon_sym_requires] = ACTIONS(3143), + [sym_this] = ACTIONS(3143), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3145), + [sym_semgrep_named_ellipsis] = ACTIONS(3145), }, [571] = { - [ts_builtin_sym_end] = ACTIONS(3149), [sym_identifier] = ACTIONS(3147), [aux_sym_preproc_include_token1] = ACTIONS(3147), [aux_sym_preproc_def_token1] = ACTIONS(3147), [anon_sym_DOT_DOT_DOT] = ACTIONS(3149), [aux_sym_preproc_if_token1] = ACTIONS(3147), + [aux_sym_preproc_if_token2] = ACTIONS(3147), [aux_sym_preproc_ifdef_token1] = ACTIONS(3147), [aux_sym_preproc_ifdef_token2] = ACTIONS(3147), [sym_preproc_directive] = ACTIONS(3147), @@ -144570,550 +134736,3814 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(3149), }, [572] = { - [sym_identifier] = ACTIONS(3211), - [aux_sym_preproc_include_token1] = ACTIONS(3211), - [aux_sym_preproc_def_token1] = ACTIONS(3211), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3213), - [aux_sym_preproc_if_token1] = ACTIONS(3211), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3211), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3211), - [sym_preproc_directive] = ACTIONS(3211), - [anon_sym_LPAREN2] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(3213), - [anon_sym_TILDE] = ACTIONS(3213), - [anon_sym_DASH] = ACTIONS(3211), - [anon_sym_PLUS] = ACTIONS(3211), - [anon_sym_STAR] = ACTIONS(3213), - [anon_sym_AMP_AMP] = ACTIONS(3213), - [anon_sym_AMP] = ACTIONS(3211), - [anon_sym_SEMI] = ACTIONS(3213), - [anon_sym___extension__] = ACTIONS(3211), - [anon_sym_typedef] = ACTIONS(3211), - [anon_sym_extern] = ACTIONS(3211), - [anon_sym___attribute__] = ACTIONS(3211), - [anon_sym_COLON_COLON] = ACTIONS(3213), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3213), - [anon_sym___declspec] = ACTIONS(3211), - [anon_sym___based] = ACTIONS(3211), - [anon_sym___cdecl] = ACTIONS(3211), - [anon_sym___clrcall] = ACTIONS(3211), - [anon_sym___stdcall] = ACTIONS(3211), - [anon_sym___fastcall] = ACTIONS(3211), - [anon_sym___thiscall] = ACTIONS(3211), - [anon_sym___vectorcall] = ACTIONS(3211), - [anon_sym_LBRACE] = ACTIONS(3213), - [anon_sym_RBRACE] = ACTIONS(3213), - [anon_sym_signed] = ACTIONS(3211), - [anon_sym_unsigned] = ACTIONS(3211), - [anon_sym_long] = ACTIONS(3211), - [anon_sym_short] = ACTIONS(3211), - [anon_sym_LBRACK] = ACTIONS(3211), - [anon_sym_static] = ACTIONS(3211), - [anon_sym_register] = ACTIONS(3211), - [anon_sym_inline] = ACTIONS(3211), - [anon_sym___inline] = ACTIONS(3211), - [anon_sym___inline__] = ACTIONS(3211), - [anon_sym___forceinline] = ACTIONS(3211), - [anon_sym_thread_local] = ACTIONS(3211), - [anon_sym___thread] = ACTIONS(3211), - [anon_sym_const] = ACTIONS(3211), - [anon_sym_constexpr] = ACTIONS(3211), - [anon_sym_volatile] = ACTIONS(3211), - [anon_sym_restrict] = ACTIONS(3211), - [anon_sym___restrict__] = ACTIONS(3211), - [anon_sym__Atomic] = ACTIONS(3211), - [anon_sym__Noreturn] = ACTIONS(3211), - [anon_sym_noreturn] = ACTIONS(3211), - [anon_sym_mutable] = ACTIONS(3211), - [anon_sym_constinit] = ACTIONS(3211), - [anon_sym_consteval] = ACTIONS(3211), - [sym_primitive_type] = ACTIONS(3211), - [anon_sym_enum] = ACTIONS(3211), - [anon_sym_class] = ACTIONS(3211), - [anon_sym_struct] = ACTIONS(3211), - [anon_sym_union] = ACTIONS(3211), - [anon_sym_if] = ACTIONS(3211), - [anon_sym_else] = ACTIONS(3211), - [anon_sym_switch] = ACTIONS(3211), - [anon_sym_case] = ACTIONS(3211), - [anon_sym_default] = ACTIONS(3211), - [anon_sym_while] = ACTIONS(3211), - [anon_sym_do] = ACTIONS(3211), - [anon_sym_for] = ACTIONS(3211), - [anon_sym_return] = ACTIONS(3211), - [anon_sym_break] = ACTIONS(3211), - [anon_sym_continue] = ACTIONS(3211), - [anon_sym_goto] = ACTIONS(3211), - [anon_sym___try] = ACTIONS(3211), - [anon_sym___leave] = ACTIONS(3211), - [anon_sym_not] = ACTIONS(3211), - [anon_sym_compl] = ACTIONS(3211), - [anon_sym_DASH_DASH] = ACTIONS(3213), - [anon_sym_PLUS_PLUS] = ACTIONS(3213), - [anon_sym_sizeof] = ACTIONS(3211), - [anon_sym___alignof__] = ACTIONS(3211), - [anon_sym___alignof] = ACTIONS(3211), - [anon_sym__alignof] = ACTIONS(3211), - [anon_sym_alignof] = ACTIONS(3211), - [anon_sym__Alignof] = ACTIONS(3211), - [anon_sym_offsetof] = ACTIONS(3211), - [anon_sym__Generic] = ACTIONS(3211), - [anon_sym_asm] = ACTIONS(3211), - [anon_sym___asm__] = ACTIONS(3211), - [sym_number_literal] = ACTIONS(3213), - [anon_sym_L_SQUOTE] = ACTIONS(3213), - [anon_sym_u_SQUOTE] = ACTIONS(3213), - [anon_sym_U_SQUOTE] = ACTIONS(3213), - [anon_sym_u8_SQUOTE] = ACTIONS(3213), - [anon_sym_SQUOTE] = ACTIONS(3213), - [anon_sym_L_DQUOTE] = ACTIONS(3213), - [anon_sym_u_DQUOTE] = ACTIONS(3213), - [anon_sym_U_DQUOTE] = ACTIONS(3213), - [anon_sym_u8_DQUOTE] = ACTIONS(3213), - [anon_sym_DQUOTE] = ACTIONS(3213), - [sym_true] = ACTIONS(3211), - [sym_false] = ACTIONS(3211), - [anon_sym_NULL] = ACTIONS(3211), - [anon_sym_nullptr] = ACTIONS(3211), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3211), - [anon_sym_decltype] = ACTIONS(3211), - [anon_sym_virtual] = ACTIONS(3211), - [anon_sym_alignas] = ACTIONS(3211), - [anon_sym_explicit] = ACTIONS(3211), - [anon_sym_typename] = ACTIONS(3211), - [anon_sym_template] = ACTIONS(3211), - [anon_sym_operator] = ACTIONS(3211), - [anon_sym_try] = ACTIONS(3211), - [anon_sym_delete] = ACTIONS(3211), - [anon_sym_throw] = ACTIONS(3211), - [anon_sym_namespace] = ACTIONS(3211), - [anon_sym_using] = ACTIONS(3211), - [anon_sym_static_assert] = ACTIONS(3211), - [anon_sym_concept] = ACTIONS(3211), - [anon_sym_co_return] = ACTIONS(3211), - [anon_sym_co_yield] = ACTIONS(3211), - [anon_sym_R_DQUOTE] = ACTIONS(3213), - [anon_sym_LR_DQUOTE] = ACTIONS(3213), - [anon_sym_uR_DQUOTE] = ACTIONS(3213), - [anon_sym_UR_DQUOTE] = ACTIONS(3213), - [anon_sym_u8R_DQUOTE] = ACTIONS(3213), - [anon_sym_co_await] = ACTIONS(3211), - [anon_sym_new] = ACTIONS(3211), - [anon_sym_requires] = ACTIONS(3211), - [sym_this] = ACTIONS(3211), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3213), - [sym_semgrep_named_ellipsis] = ACTIONS(3213), + [sym_identifier] = ACTIONS(3143), + [aux_sym_preproc_include_token1] = ACTIONS(3143), + [aux_sym_preproc_def_token1] = ACTIONS(3143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3145), + [aux_sym_preproc_if_token1] = ACTIONS(3143), + [aux_sym_preproc_if_token2] = ACTIONS(3143), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3143), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3143), + [sym_preproc_directive] = ACTIONS(3143), + [anon_sym_LPAREN2] = ACTIONS(3145), + [anon_sym_BANG] = ACTIONS(3145), + [anon_sym_TILDE] = ACTIONS(3145), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(3145), + [anon_sym_AMP_AMP] = ACTIONS(3145), + [anon_sym_AMP] = ACTIONS(3143), + [anon_sym_SEMI] = ACTIONS(3145), + [anon_sym___extension__] = ACTIONS(3143), + [anon_sym_typedef] = ACTIONS(3143), + [anon_sym_extern] = ACTIONS(3143), + [anon_sym___attribute__] = ACTIONS(3143), + [anon_sym_COLON_COLON] = ACTIONS(3145), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3145), + [anon_sym___declspec] = ACTIONS(3143), + [anon_sym___based] = ACTIONS(3143), + [anon_sym___cdecl] = ACTIONS(3143), + [anon_sym___clrcall] = ACTIONS(3143), + [anon_sym___stdcall] = ACTIONS(3143), + [anon_sym___fastcall] = ACTIONS(3143), + [anon_sym___thiscall] = ACTIONS(3143), + [anon_sym___vectorcall] = ACTIONS(3143), + [anon_sym_LBRACE] = ACTIONS(3145), + [anon_sym_signed] = ACTIONS(3143), + [anon_sym_unsigned] = ACTIONS(3143), + [anon_sym_long] = ACTIONS(3143), + [anon_sym_short] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(3143), + [anon_sym_static] = ACTIONS(3143), + [anon_sym_register] = ACTIONS(3143), + [anon_sym_inline] = ACTIONS(3143), + [anon_sym___inline] = ACTIONS(3143), + [anon_sym___inline__] = ACTIONS(3143), + [anon_sym___forceinline] = ACTIONS(3143), + [anon_sym_thread_local] = ACTIONS(3143), + [anon_sym___thread] = ACTIONS(3143), + [anon_sym_const] = ACTIONS(3143), + [anon_sym_constexpr] = ACTIONS(3143), + [anon_sym_volatile] = ACTIONS(3143), + [anon_sym_restrict] = ACTIONS(3143), + [anon_sym___restrict__] = ACTIONS(3143), + [anon_sym__Atomic] = ACTIONS(3143), + [anon_sym__Noreturn] = ACTIONS(3143), + [anon_sym_noreturn] = ACTIONS(3143), + [anon_sym_mutable] = ACTIONS(3143), + [anon_sym_constinit] = ACTIONS(3143), + [anon_sym_consteval] = ACTIONS(3143), + [sym_primitive_type] = ACTIONS(3143), + [anon_sym_enum] = ACTIONS(3143), + [anon_sym_class] = ACTIONS(3143), + [anon_sym_struct] = ACTIONS(3143), + [anon_sym_union] = ACTIONS(3143), + [anon_sym_if] = ACTIONS(3143), + [anon_sym_else] = ACTIONS(3143), + [anon_sym_switch] = ACTIONS(3143), + [anon_sym_case] = ACTIONS(3143), + [anon_sym_default] = ACTIONS(3143), + [anon_sym_while] = ACTIONS(3143), + [anon_sym_do] = ACTIONS(3143), + [anon_sym_for] = ACTIONS(3143), + [anon_sym_return] = ACTIONS(3143), + [anon_sym_break] = ACTIONS(3143), + [anon_sym_continue] = ACTIONS(3143), + [anon_sym_goto] = ACTIONS(3143), + [anon_sym___try] = ACTIONS(3143), + [anon_sym___leave] = ACTIONS(3143), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3145), + [anon_sym_PLUS_PLUS] = ACTIONS(3145), + [anon_sym_sizeof] = ACTIONS(3143), + [anon_sym___alignof__] = ACTIONS(3143), + [anon_sym___alignof] = ACTIONS(3143), + [anon_sym__alignof] = ACTIONS(3143), + [anon_sym_alignof] = ACTIONS(3143), + [anon_sym__Alignof] = ACTIONS(3143), + [anon_sym_offsetof] = ACTIONS(3143), + [anon_sym__Generic] = ACTIONS(3143), + [anon_sym_asm] = ACTIONS(3143), + [anon_sym___asm__] = ACTIONS(3143), + [sym_number_literal] = ACTIONS(3145), + [anon_sym_L_SQUOTE] = ACTIONS(3145), + [anon_sym_u_SQUOTE] = ACTIONS(3145), + [anon_sym_U_SQUOTE] = ACTIONS(3145), + [anon_sym_u8_SQUOTE] = ACTIONS(3145), + [anon_sym_SQUOTE] = ACTIONS(3145), + [anon_sym_L_DQUOTE] = ACTIONS(3145), + [anon_sym_u_DQUOTE] = ACTIONS(3145), + [anon_sym_U_DQUOTE] = ACTIONS(3145), + [anon_sym_u8_DQUOTE] = ACTIONS(3145), + [anon_sym_DQUOTE] = ACTIONS(3145), + [sym_true] = ACTIONS(3143), + [sym_false] = ACTIONS(3143), + [anon_sym_NULL] = ACTIONS(3143), + [anon_sym_nullptr] = ACTIONS(3143), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3143), + [anon_sym_decltype] = ACTIONS(3143), + [anon_sym_virtual] = ACTIONS(3143), + [anon_sym_alignas] = ACTIONS(3143), + [anon_sym_explicit] = ACTIONS(3143), + [anon_sym_typename] = ACTIONS(3143), + [anon_sym_template] = ACTIONS(3143), + [anon_sym_operator] = ACTIONS(3143), + [anon_sym_try] = ACTIONS(3143), + [anon_sym_delete] = ACTIONS(3143), + [anon_sym_throw] = ACTIONS(3143), + [anon_sym_namespace] = ACTIONS(3143), + [anon_sym_using] = ACTIONS(3143), + [anon_sym_static_assert] = ACTIONS(3143), + [anon_sym_concept] = ACTIONS(3143), + [anon_sym_co_return] = ACTIONS(3143), + [anon_sym_co_yield] = ACTIONS(3143), + [anon_sym_R_DQUOTE] = ACTIONS(3145), + [anon_sym_LR_DQUOTE] = ACTIONS(3145), + [anon_sym_uR_DQUOTE] = ACTIONS(3145), + [anon_sym_UR_DQUOTE] = ACTIONS(3145), + [anon_sym_u8R_DQUOTE] = ACTIONS(3145), + [anon_sym_co_await] = ACTIONS(3143), + [anon_sym_new] = ACTIONS(3143), + [anon_sym_requires] = ACTIONS(3143), + [sym_this] = ACTIONS(3143), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3145), + [sym_semgrep_named_ellipsis] = ACTIONS(3145), }, [573] = { - [sym_identifier] = ACTIONS(3219), - [aux_sym_preproc_include_token1] = ACTIONS(3219), - [aux_sym_preproc_def_token1] = ACTIONS(3219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3221), - [aux_sym_preproc_if_token1] = ACTIONS(3219), - [aux_sym_preproc_if_token2] = ACTIONS(3219), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3219), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3219), - [sym_preproc_directive] = ACTIONS(3219), - [anon_sym_LPAREN2] = ACTIONS(3221), - [anon_sym_BANG] = ACTIONS(3221), - [anon_sym_TILDE] = ACTIONS(3221), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3221), - [anon_sym_AMP_AMP] = ACTIONS(3221), - [anon_sym_AMP] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3221), - [anon_sym___extension__] = ACTIONS(3219), - [anon_sym_typedef] = ACTIONS(3219), - [anon_sym_extern] = ACTIONS(3219), - [anon_sym___attribute__] = ACTIONS(3219), - [anon_sym_COLON_COLON] = ACTIONS(3221), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3221), - [anon_sym___declspec] = ACTIONS(3219), - [anon_sym___based] = ACTIONS(3219), - [anon_sym___cdecl] = ACTIONS(3219), - [anon_sym___clrcall] = ACTIONS(3219), - [anon_sym___stdcall] = ACTIONS(3219), - [anon_sym___fastcall] = ACTIONS(3219), - [anon_sym___thiscall] = ACTIONS(3219), - [anon_sym___vectorcall] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3221), - [anon_sym_signed] = ACTIONS(3219), - [anon_sym_unsigned] = ACTIONS(3219), - [anon_sym_long] = ACTIONS(3219), - [anon_sym_short] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_register] = ACTIONS(3219), - [anon_sym_inline] = ACTIONS(3219), - [anon_sym___inline] = ACTIONS(3219), - [anon_sym___inline__] = ACTIONS(3219), - [anon_sym___forceinline] = ACTIONS(3219), - [anon_sym_thread_local] = ACTIONS(3219), - [anon_sym___thread] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_constexpr] = ACTIONS(3219), - [anon_sym_volatile] = ACTIONS(3219), - [anon_sym_restrict] = ACTIONS(3219), - [anon_sym___restrict__] = ACTIONS(3219), - [anon_sym__Atomic] = ACTIONS(3219), - [anon_sym__Noreturn] = ACTIONS(3219), - [anon_sym_noreturn] = ACTIONS(3219), - [anon_sym_mutable] = ACTIONS(3219), - [anon_sym_constinit] = ACTIONS(3219), - [anon_sym_consteval] = ACTIONS(3219), - [sym_primitive_type] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_struct] = ACTIONS(3219), - [anon_sym_union] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_else] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_case] = ACTIONS(3219), - [anon_sym_default] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_goto] = ACTIONS(3219), - [anon_sym___try] = ACTIONS(3219), - [anon_sym___leave] = ACTIONS(3219), - [anon_sym_not] = ACTIONS(3219), - [anon_sym_compl] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_sizeof] = ACTIONS(3219), - [anon_sym___alignof__] = ACTIONS(3219), - [anon_sym___alignof] = ACTIONS(3219), - [anon_sym__alignof] = ACTIONS(3219), - [anon_sym_alignof] = ACTIONS(3219), - [anon_sym__Alignof] = ACTIONS(3219), - [anon_sym_offsetof] = ACTIONS(3219), - [anon_sym__Generic] = ACTIONS(3219), - [anon_sym_asm] = ACTIONS(3219), - [anon_sym___asm__] = ACTIONS(3219), - [sym_number_literal] = ACTIONS(3221), - [anon_sym_L_SQUOTE] = ACTIONS(3221), - [anon_sym_u_SQUOTE] = ACTIONS(3221), - [anon_sym_U_SQUOTE] = ACTIONS(3221), - [anon_sym_u8_SQUOTE] = ACTIONS(3221), - [anon_sym_SQUOTE] = ACTIONS(3221), - [anon_sym_L_DQUOTE] = ACTIONS(3221), - [anon_sym_u_DQUOTE] = ACTIONS(3221), - [anon_sym_U_DQUOTE] = ACTIONS(3221), - [anon_sym_u8_DQUOTE] = ACTIONS(3221), - [anon_sym_DQUOTE] = ACTIONS(3221), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [anon_sym_NULL] = ACTIONS(3219), - [anon_sym_nullptr] = ACTIONS(3219), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3219), - [anon_sym_decltype] = ACTIONS(3219), - [anon_sym_virtual] = ACTIONS(3219), - [anon_sym_alignas] = ACTIONS(3219), - [anon_sym_explicit] = ACTIONS(3219), - [anon_sym_typename] = ACTIONS(3219), - [anon_sym_template] = ACTIONS(3219), - [anon_sym_operator] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_static_assert] = ACTIONS(3219), - [anon_sym_concept] = ACTIONS(3219), - [anon_sym_co_return] = ACTIONS(3219), - [anon_sym_co_yield] = ACTIONS(3219), - [anon_sym_R_DQUOTE] = ACTIONS(3221), - [anon_sym_LR_DQUOTE] = ACTIONS(3221), - [anon_sym_uR_DQUOTE] = ACTIONS(3221), - [anon_sym_UR_DQUOTE] = ACTIONS(3221), - [anon_sym_u8R_DQUOTE] = ACTIONS(3221), - [anon_sym_co_await] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_requires] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3221), - [sym_semgrep_named_ellipsis] = ACTIONS(3221), + [sym_identifier] = ACTIONS(3119), + [aux_sym_preproc_include_token1] = ACTIONS(3119), + [aux_sym_preproc_def_token1] = ACTIONS(3119), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3121), + [aux_sym_preproc_if_token1] = ACTIONS(3119), + [aux_sym_preproc_if_token2] = ACTIONS(3119), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3119), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3119), + [sym_preproc_directive] = ACTIONS(3119), + [anon_sym_LPAREN2] = ACTIONS(3121), + [anon_sym_BANG] = ACTIONS(3121), + [anon_sym_TILDE] = ACTIONS(3121), + [anon_sym_DASH] = ACTIONS(3119), + [anon_sym_PLUS] = ACTIONS(3119), + [anon_sym_STAR] = ACTIONS(3121), + [anon_sym_AMP_AMP] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3119), + [anon_sym_SEMI] = ACTIONS(3121), + [anon_sym___extension__] = ACTIONS(3119), + [anon_sym_typedef] = ACTIONS(3119), + [anon_sym_extern] = ACTIONS(3119), + [anon_sym___attribute__] = ACTIONS(3119), + [anon_sym_COLON_COLON] = ACTIONS(3121), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3121), + [anon_sym___declspec] = ACTIONS(3119), + [anon_sym___based] = ACTIONS(3119), + [anon_sym___cdecl] = ACTIONS(3119), + [anon_sym___clrcall] = ACTIONS(3119), + [anon_sym___stdcall] = ACTIONS(3119), + [anon_sym___fastcall] = ACTIONS(3119), + [anon_sym___thiscall] = ACTIONS(3119), + [anon_sym___vectorcall] = ACTIONS(3119), + [anon_sym_LBRACE] = ACTIONS(3121), + [anon_sym_signed] = ACTIONS(3119), + [anon_sym_unsigned] = ACTIONS(3119), + [anon_sym_long] = ACTIONS(3119), + [anon_sym_short] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(3119), + [anon_sym_static] = ACTIONS(3119), + [anon_sym_register] = ACTIONS(3119), + [anon_sym_inline] = ACTIONS(3119), + [anon_sym___inline] = ACTIONS(3119), + [anon_sym___inline__] = ACTIONS(3119), + [anon_sym___forceinline] = ACTIONS(3119), + [anon_sym_thread_local] = ACTIONS(3119), + [anon_sym___thread] = ACTIONS(3119), + [anon_sym_const] = ACTIONS(3119), + [anon_sym_constexpr] = ACTIONS(3119), + [anon_sym_volatile] = ACTIONS(3119), + [anon_sym_restrict] = ACTIONS(3119), + [anon_sym___restrict__] = ACTIONS(3119), + [anon_sym__Atomic] = ACTIONS(3119), + [anon_sym__Noreturn] = ACTIONS(3119), + [anon_sym_noreturn] = ACTIONS(3119), + [anon_sym_mutable] = ACTIONS(3119), + [anon_sym_constinit] = ACTIONS(3119), + [anon_sym_consteval] = ACTIONS(3119), + [sym_primitive_type] = ACTIONS(3119), + [anon_sym_enum] = ACTIONS(3119), + [anon_sym_class] = ACTIONS(3119), + [anon_sym_struct] = ACTIONS(3119), + [anon_sym_union] = ACTIONS(3119), + [anon_sym_if] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3119), + [anon_sym_switch] = ACTIONS(3119), + [anon_sym_case] = ACTIONS(3119), + [anon_sym_default] = ACTIONS(3119), + [anon_sym_while] = ACTIONS(3119), + [anon_sym_do] = ACTIONS(3119), + [anon_sym_for] = ACTIONS(3119), + [anon_sym_return] = ACTIONS(3119), + [anon_sym_break] = ACTIONS(3119), + [anon_sym_continue] = ACTIONS(3119), + [anon_sym_goto] = ACTIONS(3119), + [anon_sym___try] = ACTIONS(3119), + [anon_sym___leave] = ACTIONS(3119), + [anon_sym_not] = ACTIONS(3119), + [anon_sym_compl] = ACTIONS(3119), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3119), + [anon_sym___alignof__] = ACTIONS(3119), + [anon_sym___alignof] = ACTIONS(3119), + [anon_sym__alignof] = ACTIONS(3119), + [anon_sym_alignof] = ACTIONS(3119), + [anon_sym__Alignof] = ACTIONS(3119), + [anon_sym_offsetof] = ACTIONS(3119), + [anon_sym__Generic] = ACTIONS(3119), + [anon_sym_asm] = ACTIONS(3119), + [anon_sym___asm__] = ACTIONS(3119), + [sym_number_literal] = ACTIONS(3121), + [anon_sym_L_SQUOTE] = ACTIONS(3121), + [anon_sym_u_SQUOTE] = ACTIONS(3121), + [anon_sym_U_SQUOTE] = ACTIONS(3121), + [anon_sym_u8_SQUOTE] = ACTIONS(3121), + [anon_sym_SQUOTE] = ACTIONS(3121), + [anon_sym_L_DQUOTE] = ACTIONS(3121), + [anon_sym_u_DQUOTE] = ACTIONS(3121), + [anon_sym_U_DQUOTE] = ACTIONS(3121), + [anon_sym_u8_DQUOTE] = ACTIONS(3121), + [anon_sym_DQUOTE] = ACTIONS(3121), + [sym_true] = ACTIONS(3119), + [sym_false] = ACTIONS(3119), + [anon_sym_NULL] = ACTIONS(3119), + [anon_sym_nullptr] = ACTIONS(3119), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3119), + [anon_sym_decltype] = ACTIONS(3119), + [anon_sym_virtual] = ACTIONS(3119), + [anon_sym_alignas] = ACTIONS(3119), + [anon_sym_explicit] = ACTIONS(3119), + [anon_sym_typename] = ACTIONS(3119), + [anon_sym_template] = ACTIONS(3119), + [anon_sym_operator] = ACTIONS(3119), + [anon_sym_try] = ACTIONS(3119), + [anon_sym_delete] = ACTIONS(3119), + [anon_sym_throw] = ACTIONS(3119), + [anon_sym_namespace] = ACTIONS(3119), + [anon_sym_using] = ACTIONS(3119), + [anon_sym_static_assert] = ACTIONS(3119), + [anon_sym_concept] = ACTIONS(3119), + [anon_sym_co_return] = ACTIONS(3119), + [anon_sym_co_yield] = ACTIONS(3119), + [anon_sym_R_DQUOTE] = ACTIONS(3121), + [anon_sym_LR_DQUOTE] = ACTIONS(3121), + [anon_sym_uR_DQUOTE] = ACTIONS(3121), + [anon_sym_UR_DQUOTE] = ACTIONS(3121), + [anon_sym_u8R_DQUOTE] = ACTIONS(3121), + [anon_sym_co_await] = ACTIONS(3119), + [anon_sym_new] = ACTIONS(3119), + [anon_sym_requires] = ACTIONS(3119), + [sym_this] = ACTIONS(3119), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3121), + [sym_semgrep_named_ellipsis] = ACTIONS(3121), }, [574] = { - [sym_identifier] = ACTIONS(3223), - [aux_sym_preproc_include_token1] = ACTIONS(3223), - [aux_sym_preproc_def_token1] = ACTIONS(3223), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3225), - [aux_sym_preproc_if_token1] = ACTIONS(3223), - [aux_sym_preproc_if_token2] = ACTIONS(3223), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3223), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3223), - [sym_preproc_directive] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(3225), - [anon_sym_BANG] = ACTIONS(3225), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_STAR] = ACTIONS(3225), - [anon_sym_AMP_AMP] = ACTIONS(3225), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3225), - [anon_sym___extension__] = ACTIONS(3223), - [anon_sym_typedef] = ACTIONS(3223), - [anon_sym_extern] = ACTIONS(3223), - [anon_sym___attribute__] = ACTIONS(3223), - [anon_sym_COLON_COLON] = ACTIONS(3225), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3225), - [anon_sym___declspec] = ACTIONS(3223), - [anon_sym___based] = ACTIONS(3223), - [anon_sym___cdecl] = ACTIONS(3223), - [anon_sym___clrcall] = ACTIONS(3223), - [anon_sym___stdcall] = ACTIONS(3223), - [anon_sym___fastcall] = ACTIONS(3223), - [anon_sym___thiscall] = ACTIONS(3223), - [anon_sym___vectorcall] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3225), - [anon_sym_signed] = ACTIONS(3223), - [anon_sym_unsigned] = ACTIONS(3223), - [anon_sym_long] = ACTIONS(3223), - [anon_sym_short] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_register] = ACTIONS(3223), - [anon_sym_inline] = ACTIONS(3223), - [anon_sym___inline] = ACTIONS(3223), - [anon_sym___inline__] = ACTIONS(3223), - [anon_sym___forceinline] = ACTIONS(3223), - [anon_sym_thread_local] = ACTIONS(3223), - [anon_sym___thread] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_constexpr] = ACTIONS(3223), - [anon_sym_volatile] = ACTIONS(3223), - [anon_sym_restrict] = ACTIONS(3223), - [anon_sym___restrict__] = ACTIONS(3223), - [anon_sym__Atomic] = ACTIONS(3223), - [anon_sym__Noreturn] = ACTIONS(3223), - [anon_sym_noreturn] = ACTIONS(3223), - [anon_sym_mutable] = ACTIONS(3223), - [anon_sym_constinit] = ACTIONS(3223), - [anon_sym_consteval] = ACTIONS(3223), - [sym_primitive_type] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_struct] = ACTIONS(3223), - [anon_sym_union] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_else] = ACTIONS(3223), - [anon_sym_switch] = ACTIONS(3223), - [anon_sym_case] = ACTIONS(3223), - [anon_sym_default] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_goto] = ACTIONS(3223), - [anon_sym___try] = ACTIONS(3223), - [anon_sym___leave] = ACTIONS(3223), - [anon_sym_not] = ACTIONS(3223), - [anon_sym_compl] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3225), - [anon_sym_PLUS_PLUS] = ACTIONS(3225), - [anon_sym_sizeof] = ACTIONS(3223), - [anon_sym___alignof__] = ACTIONS(3223), - [anon_sym___alignof] = ACTIONS(3223), - [anon_sym__alignof] = ACTIONS(3223), - [anon_sym_alignof] = ACTIONS(3223), - [anon_sym__Alignof] = ACTIONS(3223), - [anon_sym_offsetof] = ACTIONS(3223), - [anon_sym__Generic] = ACTIONS(3223), - [anon_sym_asm] = ACTIONS(3223), - [anon_sym___asm__] = ACTIONS(3223), - [sym_number_literal] = ACTIONS(3225), - [anon_sym_L_SQUOTE] = ACTIONS(3225), - [anon_sym_u_SQUOTE] = ACTIONS(3225), - [anon_sym_U_SQUOTE] = ACTIONS(3225), - [anon_sym_u8_SQUOTE] = ACTIONS(3225), - [anon_sym_SQUOTE] = ACTIONS(3225), - [anon_sym_L_DQUOTE] = ACTIONS(3225), - [anon_sym_u_DQUOTE] = ACTIONS(3225), - [anon_sym_U_DQUOTE] = ACTIONS(3225), - [anon_sym_u8_DQUOTE] = ACTIONS(3225), - [anon_sym_DQUOTE] = ACTIONS(3225), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [anon_sym_NULL] = ACTIONS(3223), - [anon_sym_nullptr] = ACTIONS(3223), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3223), - [anon_sym_decltype] = ACTIONS(3223), - [anon_sym_virtual] = ACTIONS(3223), - [anon_sym_alignas] = ACTIONS(3223), - [anon_sym_explicit] = ACTIONS(3223), - [anon_sym_typename] = ACTIONS(3223), - [anon_sym_template] = ACTIONS(3223), - [anon_sym_operator] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_delete] = ACTIONS(3223), - [anon_sym_throw] = ACTIONS(3223), - [anon_sym_namespace] = ACTIONS(3223), - [anon_sym_using] = ACTIONS(3223), - [anon_sym_static_assert] = ACTIONS(3223), - [anon_sym_concept] = ACTIONS(3223), - [anon_sym_co_return] = ACTIONS(3223), - [anon_sym_co_yield] = ACTIONS(3223), - [anon_sym_R_DQUOTE] = ACTIONS(3225), - [anon_sym_LR_DQUOTE] = ACTIONS(3225), - [anon_sym_uR_DQUOTE] = ACTIONS(3225), - [anon_sym_UR_DQUOTE] = ACTIONS(3225), - [anon_sym_u8R_DQUOTE] = ACTIONS(3225), - [anon_sym_co_await] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_requires] = ACTIONS(3223), - [sym_this] = ACTIONS(3223), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3225), - [sym_semgrep_named_ellipsis] = ACTIONS(3225), + [sym_identifier] = ACTIONS(3123), + [aux_sym_preproc_include_token1] = ACTIONS(3123), + [aux_sym_preproc_def_token1] = ACTIONS(3123), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3125), + [aux_sym_preproc_if_token1] = ACTIONS(3123), + [aux_sym_preproc_if_token2] = ACTIONS(3123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3123), + [sym_preproc_directive] = ACTIONS(3123), + [anon_sym_LPAREN2] = ACTIONS(3125), + [anon_sym_BANG] = ACTIONS(3125), + [anon_sym_TILDE] = ACTIONS(3125), + [anon_sym_DASH] = ACTIONS(3123), + [anon_sym_PLUS] = ACTIONS(3123), + [anon_sym_STAR] = ACTIONS(3125), + [anon_sym_AMP_AMP] = ACTIONS(3125), + [anon_sym_AMP] = ACTIONS(3123), + [anon_sym_SEMI] = ACTIONS(3125), + [anon_sym___extension__] = ACTIONS(3123), + [anon_sym_typedef] = ACTIONS(3123), + [anon_sym_extern] = ACTIONS(3123), + [anon_sym___attribute__] = ACTIONS(3123), + [anon_sym_COLON_COLON] = ACTIONS(3125), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3125), + [anon_sym___declspec] = ACTIONS(3123), + [anon_sym___based] = ACTIONS(3123), + [anon_sym___cdecl] = ACTIONS(3123), + [anon_sym___clrcall] = ACTIONS(3123), + [anon_sym___stdcall] = ACTIONS(3123), + [anon_sym___fastcall] = ACTIONS(3123), + [anon_sym___thiscall] = ACTIONS(3123), + [anon_sym___vectorcall] = ACTIONS(3123), + [anon_sym_LBRACE] = ACTIONS(3125), + [anon_sym_signed] = ACTIONS(3123), + [anon_sym_unsigned] = ACTIONS(3123), + [anon_sym_long] = ACTIONS(3123), + [anon_sym_short] = ACTIONS(3123), + [anon_sym_LBRACK] = ACTIONS(3123), + [anon_sym_static] = ACTIONS(3123), + [anon_sym_register] = ACTIONS(3123), + [anon_sym_inline] = ACTIONS(3123), + [anon_sym___inline] = ACTIONS(3123), + [anon_sym___inline__] = ACTIONS(3123), + [anon_sym___forceinline] = ACTIONS(3123), + [anon_sym_thread_local] = ACTIONS(3123), + [anon_sym___thread] = ACTIONS(3123), + [anon_sym_const] = ACTIONS(3123), + [anon_sym_constexpr] = ACTIONS(3123), + [anon_sym_volatile] = ACTIONS(3123), + [anon_sym_restrict] = ACTIONS(3123), + [anon_sym___restrict__] = ACTIONS(3123), + [anon_sym__Atomic] = ACTIONS(3123), + [anon_sym__Noreturn] = ACTIONS(3123), + [anon_sym_noreturn] = ACTIONS(3123), + [anon_sym_mutable] = ACTIONS(3123), + [anon_sym_constinit] = ACTIONS(3123), + [anon_sym_consteval] = ACTIONS(3123), + [sym_primitive_type] = ACTIONS(3123), + [anon_sym_enum] = ACTIONS(3123), + [anon_sym_class] = ACTIONS(3123), + [anon_sym_struct] = ACTIONS(3123), + [anon_sym_union] = ACTIONS(3123), + [anon_sym_if] = ACTIONS(3123), + [anon_sym_else] = ACTIONS(3123), + [anon_sym_switch] = ACTIONS(3123), + [anon_sym_case] = ACTIONS(3123), + [anon_sym_default] = ACTIONS(3123), + [anon_sym_while] = ACTIONS(3123), + [anon_sym_do] = ACTIONS(3123), + [anon_sym_for] = ACTIONS(3123), + [anon_sym_return] = ACTIONS(3123), + [anon_sym_break] = ACTIONS(3123), + [anon_sym_continue] = ACTIONS(3123), + [anon_sym_goto] = ACTIONS(3123), + [anon_sym___try] = ACTIONS(3123), + [anon_sym___leave] = ACTIONS(3123), + [anon_sym_not] = ACTIONS(3123), + [anon_sym_compl] = ACTIONS(3123), + [anon_sym_DASH_DASH] = ACTIONS(3125), + [anon_sym_PLUS_PLUS] = ACTIONS(3125), + [anon_sym_sizeof] = ACTIONS(3123), + [anon_sym___alignof__] = ACTIONS(3123), + [anon_sym___alignof] = ACTIONS(3123), + [anon_sym__alignof] = ACTIONS(3123), + [anon_sym_alignof] = ACTIONS(3123), + [anon_sym__Alignof] = ACTIONS(3123), + [anon_sym_offsetof] = ACTIONS(3123), + [anon_sym__Generic] = ACTIONS(3123), + [anon_sym_asm] = ACTIONS(3123), + [anon_sym___asm__] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(3125), + [anon_sym_L_SQUOTE] = ACTIONS(3125), + [anon_sym_u_SQUOTE] = ACTIONS(3125), + [anon_sym_U_SQUOTE] = ACTIONS(3125), + [anon_sym_u8_SQUOTE] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3125), + [anon_sym_L_DQUOTE] = ACTIONS(3125), + [anon_sym_u_DQUOTE] = ACTIONS(3125), + [anon_sym_U_DQUOTE] = ACTIONS(3125), + [anon_sym_u8_DQUOTE] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym_true] = ACTIONS(3123), + [sym_false] = ACTIONS(3123), + [anon_sym_NULL] = ACTIONS(3123), + [anon_sym_nullptr] = ACTIONS(3123), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3123), + [anon_sym_decltype] = ACTIONS(3123), + [anon_sym_virtual] = ACTIONS(3123), + [anon_sym_alignas] = ACTIONS(3123), + [anon_sym_explicit] = ACTIONS(3123), + [anon_sym_typename] = ACTIONS(3123), + [anon_sym_template] = ACTIONS(3123), + [anon_sym_operator] = ACTIONS(3123), + [anon_sym_try] = ACTIONS(3123), + [anon_sym_delete] = ACTIONS(3123), + [anon_sym_throw] = ACTIONS(3123), + [anon_sym_namespace] = ACTIONS(3123), + [anon_sym_using] = ACTIONS(3123), + [anon_sym_static_assert] = ACTIONS(3123), + [anon_sym_concept] = ACTIONS(3123), + [anon_sym_co_return] = ACTIONS(3123), + [anon_sym_co_yield] = ACTIONS(3123), + [anon_sym_R_DQUOTE] = ACTIONS(3125), + [anon_sym_LR_DQUOTE] = ACTIONS(3125), + [anon_sym_uR_DQUOTE] = ACTIONS(3125), + [anon_sym_UR_DQUOTE] = ACTIONS(3125), + [anon_sym_u8R_DQUOTE] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3123), + [anon_sym_new] = ACTIONS(3123), + [anon_sym_requires] = ACTIONS(3123), + [sym_this] = ACTIONS(3123), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3125), + [sym_semgrep_named_ellipsis] = ACTIONS(3125), }, [575] = { - [sym_identifier] = ACTIONS(3125), - [aux_sym_preproc_include_token1] = ACTIONS(3125), - [aux_sym_preproc_def_token1] = ACTIONS(3125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3127), - [aux_sym_preproc_if_token1] = ACTIONS(3125), - [aux_sym_preproc_if_token2] = ACTIONS(3125), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3125), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3125), - [sym_preproc_directive] = ACTIONS(3125), - [anon_sym_LPAREN2] = ACTIONS(3127), - [anon_sym_BANG] = ACTIONS(3127), - [anon_sym_TILDE] = ACTIONS(3127), - [anon_sym_DASH] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(3127), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_AMP] = ACTIONS(3125), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym___extension__] = ACTIONS(3125), - [anon_sym_typedef] = ACTIONS(3125), - [anon_sym_extern] = ACTIONS(3125), - [anon_sym___attribute__] = ACTIONS(3125), - [anon_sym_COLON_COLON] = ACTIONS(3127), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3127), - [anon_sym___declspec] = ACTIONS(3125), - [anon_sym___based] = ACTIONS(3125), - [anon_sym___cdecl] = ACTIONS(3125), - [anon_sym___clrcall] = ACTIONS(3125), - [anon_sym___stdcall] = ACTIONS(3125), - [anon_sym___fastcall] = ACTIONS(3125), - [anon_sym___thiscall] = ACTIONS(3125), - [anon_sym___vectorcall] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(3127), - [anon_sym_signed] = ACTIONS(3125), - [anon_sym_unsigned] = ACTIONS(3125), - [anon_sym_long] = ACTIONS(3125), - [anon_sym_short] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3125), - [anon_sym_static] = ACTIONS(3125), - [anon_sym_register] = ACTIONS(3125), - [anon_sym_inline] = ACTIONS(3125), - [anon_sym___inline] = ACTIONS(3125), - [anon_sym___inline__] = ACTIONS(3125), - [anon_sym___forceinline] = ACTIONS(3125), - [anon_sym_thread_local] = ACTIONS(3125), - [anon_sym___thread] = ACTIONS(3125), - [anon_sym_const] = ACTIONS(3125), - [anon_sym_constexpr] = ACTIONS(3125), - [anon_sym_volatile] = ACTIONS(3125), - [anon_sym_restrict] = ACTIONS(3125), - [anon_sym___restrict__] = ACTIONS(3125), - [anon_sym__Atomic] = ACTIONS(3125), - [anon_sym__Noreturn] = ACTIONS(3125), - [anon_sym_noreturn] = ACTIONS(3125), - [anon_sym_mutable] = ACTIONS(3125), - [anon_sym_constinit] = ACTIONS(3125), - [anon_sym_consteval] = ACTIONS(3125), - [sym_primitive_type] = ACTIONS(3125), - [anon_sym_enum] = ACTIONS(3125), - [anon_sym_class] = ACTIONS(3125), - [anon_sym_struct] = ACTIONS(3125), - [anon_sym_union] = ACTIONS(3125), - [anon_sym_if] = ACTIONS(3125), - [anon_sym_else] = ACTIONS(3125), - [anon_sym_switch] = ACTIONS(3125), - [anon_sym_case] = ACTIONS(3125), - [anon_sym_default] = ACTIONS(3125), - [anon_sym_while] = ACTIONS(3125), - [anon_sym_do] = ACTIONS(3125), - [anon_sym_for] = ACTIONS(3125), - [anon_sym_return] = ACTIONS(3125), - [anon_sym_break] = ACTIONS(3125), - [anon_sym_continue] = ACTIONS(3125), - [anon_sym_goto] = ACTIONS(3125), - [anon_sym___try] = ACTIONS(3125), - [anon_sym___leave] = ACTIONS(3125), - [anon_sym_not] = ACTIONS(3125), - [anon_sym_compl] = ACTIONS(3125), - [anon_sym_DASH_DASH] = ACTIONS(3127), - [anon_sym_PLUS_PLUS] = ACTIONS(3127), - [anon_sym_sizeof] = ACTIONS(3125), - [anon_sym___alignof__] = ACTIONS(3125), - [anon_sym___alignof] = ACTIONS(3125), - [anon_sym__alignof] = ACTIONS(3125), - [anon_sym_alignof] = ACTIONS(3125), - [anon_sym__Alignof] = ACTIONS(3125), - [anon_sym_offsetof] = ACTIONS(3125), - [anon_sym__Generic] = ACTIONS(3125), - [anon_sym_asm] = ACTIONS(3125), - [anon_sym___asm__] = ACTIONS(3125), - [sym_number_literal] = ACTIONS(3127), - [anon_sym_L_SQUOTE] = ACTIONS(3127), - [anon_sym_u_SQUOTE] = ACTIONS(3127), - [anon_sym_U_SQUOTE] = ACTIONS(3127), - [anon_sym_u8_SQUOTE] = ACTIONS(3127), - [anon_sym_SQUOTE] = ACTIONS(3127), - [anon_sym_L_DQUOTE] = ACTIONS(3127), - [anon_sym_u_DQUOTE] = ACTIONS(3127), - [anon_sym_U_DQUOTE] = ACTIONS(3127), - [anon_sym_u8_DQUOTE] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym_true] = ACTIONS(3125), - [sym_false] = ACTIONS(3125), - [anon_sym_NULL] = ACTIONS(3125), - [anon_sym_nullptr] = ACTIONS(3125), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3125), - [anon_sym_decltype] = ACTIONS(3125), - [anon_sym_virtual] = ACTIONS(3125), - [anon_sym_alignas] = ACTIONS(3125), - [anon_sym_explicit] = ACTIONS(3125), - [anon_sym_typename] = ACTIONS(3125), - [anon_sym_template] = ACTIONS(3125), - [anon_sym_operator] = ACTIONS(3125), - [anon_sym_try] = ACTIONS(3125), - [anon_sym_delete] = ACTIONS(3125), - [anon_sym_throw] = ACTIONS(3125), - [anon_sym_namespace] = ACTIONS(3125), - [anon_sym_using] = ACTIONS(3125), - [anon_sym_static_assert] = ACTIONS(3125), - [anon_sym_concept] = ACTIONS(3125), - [anon_sym_co_return] = ACTIONS(3125), - [anon_sym_co_yield] = ACTIONS(3125), - [anon_sym_R_DQUOTE] = ACTIONS(3127), - [anon_sym_LR_DQUOTE] = ACTIONS(3127), - [anon_sym_uR_DQUOTE] = ACTIONS(3127), - [anon_sym_UR_DQUOTE] = ACTIONS(3127), - [anon_sym_u8R_DQUOTE] = ACTIONS(3127), - [anon_sym_co_await] = ACTIONS(3125), - [anon_sym_new] = ACTIONS(3125), - [anon_sym_requires] = ACTIONS(3125), - [sym_this] = ACTIONS(3125), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3127), - [sym_semgrep_named_ellipsis] = ACTIONS(3127), + [sym_identifier] = ACTIONS(3083), + [aux_sym_preproc_include_token1] = ACTIONS(3083), + [aux_sym_preproc_def_token1] = ACTIONS(3083), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3085), + [aux_sym_preproc_if_token1] = ACTIONS(3083), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3083), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3083), + [sym_preproc_directive] = ACTIONS(3083), + [anon_sym_LPAREN2] = ACTIONS(3085), + [anon_sym_BANG] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3085), + [anon_sym_DASH] = ACTIONS(3083), + [anon_sym_PLUS] = ACTIONS(3083), + [anon_sym_STAR] = ACTIONS(3085), + [anon_sym_AMP_AMP] = ACTIONS(3085), + [anon_sym_AMP] = ACTIONS(3083), + [anon_sym_SEMI] = ACTIONS(3085), + [anon_sym___extension__] = ACTIONS(3083), + [anon_sym_typedef] = ACTIONS(3083), + [anon_sym_extern] = ACTIONS(3083), + [anon_sym___attribute__] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(3085), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3085), + [anon_sym___declspec] = ACTIONS(3083), + [anon_sym___based] = ACTIONS(3083), + [anon_sym___cdecl] = ACTIONS(3083), + [anon_sym___clrcall] = ACTIONS(3083), + [anon_sym___stdcall] = ACTIONS(3083), + [anon_sym___fastcall] = ACTIONS(3083), + [anon_sym___thiscall] = ACTIONS(3083), + [anon_sym___vectorcall] = ACTIONS(3083), + [anon_sym_LBRACE] = ACTIONS(3085), + [anon_sym_RBRACE] = ACTIONS(3085), + [anon_sym_signed] = ACTIONS(3083), + [anon_sym_unsigned] = ACTIONS(3083), + [anon_sym_long] = ACTIONS(3083), + [anon_sym_short] = ACTIONS(3083), + [anon_sym_LBRACK] = ACTIONS(3083), + [anon_sym_static] = ACTIONS(3083), + [anon_sym_register] = ACTIONS(3083), + [anon_sym_inline] = ACTIONS(3083), + [anon_sym___inline] = ACTIONS(3083), + [anon_sym___inline__] = ACTIONS(3083), + [anon_sym___forceinline] = ACTIONS(3083), + [anon_sym_thread_local] = ACTIONS(3083), + [anon_sym___thread] = ACTIONS(3083), + [anon_sym_const] = ACTIONS(3083), + [anon_sym_constexpr] = ACTIONS(3083), + [anon_sym_volatile] = ACTIONS(3083), + [anon_sym_restrict] = ACTIONS(3083), + [anon_sym___restrict__] = ACTIONS(3083), + [anon_sym__Atomic] = ACTIONS(3083), + [anon_sym__Noreturn] = ACTIONS(3083), + [anon_sym_noreturn] = ACTIONS(3083), + [anon_sym_mutable] = ACTIONS(3083), + [anon_sym_constinit] = ACTIONS(3083), + [anon_sym_consteval] = ACTIONS(3083), + [sym_primitive_type] = ACTIONS(3083), + [anon_sym_enum] = ACTIONS(3083), + [anon_sym_class] = ACTIONS(3083), + [anon_sym_struct] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(3083), + [anon_sym_if] = ACTIONS(3083), + [anon_sym_else] = ACTIONS(3083), + [anon_sym_switch] = ACTIONS(3083), + [anon_sym_case] = ACTIONS(3083), + [anon_sym_default] = ACTIONS(3083), + [anon_sym_while] = ACTIONS(3083), + [anon_sym_do] = ACTIONS(3083), + [anon_sym_for] = ACTIONS(3083), + [anon_sym_return] = ACTIONS(3083), + [anon_sym_break] = ACTIONS(3083), + [anon_sym_continue] = ACTIONS(3083), + [anon_sym_goto] = ACTIONS(3083), + [anon_sym___try] = ACTIONS(3083), + [anon_sym___leave] = ACTIONS(3083), + [anon_sym_not] = ACTIONS(3083), + [anon_sym_compl] = ACTIONS(3083), + [anon_sym_DASH_DASH] = ACTIONS(3085), + [anon_sym_PLUS_PLUS] = ACTIONS(3085), + [anon_sym_sizeof] = ACTIONS(3083), + [anon_sym___alignof__] = ACTIONS(3083), + [anon_sym___alignof] = ACTIONS(3083), + [anon_sym__alignof] = ACTIONS(3083), + [anon_sym_alignof] = ACTIONS(3083), + [anon_sym__Alignof] = ACTIONS(3083), + [anon_sym_offsetof] = ACTIONS(3083), + [anon_sym__Generic] = ACTIONS(3083), + [anon_sym_asm] = ACTIONS(3083), + [anon_sym___asm__] = ACTIONS(3083), + [sym_number_literal] = ACTIONS(3085), + [anon_sym_L_SQUOTE] = ACTIONS(3085), + [anon_sym_u_SQUOTE] = ACTIONS(3085), + [anon_sym_U_SQUOTE] = ACTIONS(3085), + [anon_sym_u8_SQUOTE] = ACTIONS(3085), + [anon_sym_SQUOTE] = ACTIONS(3085), + [anon_sym_L_DQUOTE] = ACTIONS(3085), + [anon_sym_u_DQUOTE] = ACTIONS(3085), + [anon_sym_U_DQUOTE] = ACTIONS(3085), + [anon_sym_u8_DQUOTE] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(3085), + [sym_true] = ACTIONS(3083), + [sym_false] = ACTIONS(3083), + [anon_sym_NULL] = ACTIONS(3083), + [anon_sym_nullptr] = ACTIONS(3083), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3083), + [anon_sym_decltype] = ACTIONS(3083), + [anon_sym_virtual] = ACTIONS(3083), + [anon_sym_alignas] = ACTIONS(3083), + [anon_sym_explicit] = ACTIONS(3083), + [anon_sym_typename] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(3083), + [anon_sym_operator] = ACTIONS(3083), + [anon_sym_try] = ACTIONS(3083), + [anon_sym_delete] = ACTIONS(3083), + [anon_sym_throw] = ACTIONS(3083), + [anon_sym_namespace] = ACTIONS(3083), + [anon_sym_using] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(3083), + [anon_sym_concept] = ACTIONS(3083), + [anon_sym_co_return] = ACTIONS(3083), + [anon_sym_co_yield] = ACTIONS(3083), + [anon_sym_R_DQUOTE] = ACTIONS(3085), + [anon_sym_LR_DQUOTE] = ACTIONS(3085), + [anon_sym_uR_DQUOTE] = ACTIONS(3085), + [anon_sym_UR_DQUOTE] = ACTIONS(3085), + [anon_sym_u8R_DQUOTE] = ACTIONS(3085), + [anon_sym_co_await] = ACTIONS(3083), + [anon_sym_new] = ACTIONS(3083), + [anon_sym_requires] = ACTIONS(3083), + [sym_this] = ACTIONS(3083), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3085), + [sym_semgrep_named_ellipsis] = ACTIONS(3085), }, [576] = { + [sym_identifier] = ACTIONS(3181), + [aux_sym_preproc_include_token1] = ACTIONS(3181), + [aux_sym_preproc_def_token1] = ACTIONS(3181), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3183), + [aux_sym_preproc_if_token1] = ACTIONS(3181), + [aux_sym_preproc_if_token2] = ACTIONS(3181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3181), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3181), + [sym_preproc_directive] = ACTIONS(3181), + [anon_sym_LPAREN2] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3183), + [anon_sym_TILDE] = ACTIONS(3183), + [anon_sym_DASH] = ACTIONS(3181), + [anon_sym_PLUS] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3183), + [anon_sym_AMP_AMP] = ACTIONS(3183), + [anon_sym_AMP] = ACTIONS(3181), + [anon_sym_SEMI] = ACTIONS(3183), + [anon_sym___extension__] = ACTIONS(3181), + [anon_sym_typedef] = ACTIONS(3181), + [anon_sym_extern] = ACTIONS(3181), + [anon_sym___attribute__] = ACTIONS(3181), + [anon_sym_COLON_COLON] = ACTIONS(3183), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3183), + [anon_sym___declspec] = ACTIONS(3181), + [anon_sym___based] = ACTIONS(3181), + [anon_sym___cdecl] = ACTIONS(3181), + [anon_sym___clrcall] = ACTIONS(3181), + [anon_sym___stdcall] = ACTIONS(3181), + [anon_sym___fastcall] = ACTIONS(3181), + [anon_sym___thiscall] = ACTIONS(3181), + [anon_sym___vectorcall] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_signed] = ACTIONS(3181), + [anon_sym_unsigned] = ACTIONS(3181), + [anon_sym_long] = ACTIONS(3181), + [anon_sym_short] = ACTIONS(3181), + [anon_sym_LBRACK] = ACTIONS(3181), + [anon_sym_static] = ACTIONS(3181), + [anon_sym_register] = ACTIONS(3181), + [anon_sym_inline] = ACTIONS(3181), + [anon_sym___inline] = ACTIONS(3181), + [anon_sym___inline__] = ACTIONS(3181), + [anon_sym___forceinline] = ACTIONS(3181), + [anon_sym_thread_local] = ACTIONS(3181), + [anon_sym___thread] = ACTIONS(3181), + [anon_sym_const] = ACTIONS(3181), + [anon_sym_constexpr] = ACTIONS(3181), + [anon_sym_volatile] = ACTIONS(3181), + [anon_sym_restrict] = ACTIONS(3181), + [anon_sym___restrict__] = ACTIONS(3181), + [anon_sym__Atomic] = ACTIONS(3181), + [anon_sym__Noreturn] = ACTIONS(3181), + [anon_sym_noreturn] = ACTIONS(3181), + [anon_sym_mutable] = ACTIONS(3181), + [anon_sym_constinit] = ACTIONS(3181), + [anon_sym_consteval] = ACTIONS(3181), + [sym_primitive_type] = ACTIONS(3181), + [anon_sym_enum] = ACTIONS(3181), + [anon_sym_class] = ACTIONS(3181), + [anon_sym_struct] = ACTIONS(3181), + [anon_sym_union] = ACTIONS(3181), + [anon_sym_if] = ACTIONS(3181), + [anon_sym_else] = ACTIONS(3181), + [anon_sym_switch] = ACTIONS(3181), + [anon_sym_case] = ACTIONS(3181), + [anon_sym_default] = ACTIONS(3181), + [anon_sym_while] = ACTIONS(3181), + [anon_sym_do] = ACTIONS(3181), + [anon_sym_for] = ACTIONS(3181), + [anon_sym_return] = ACTIONS(3181), + [anon_sym_break] = ACTIONS(3181), + [anon_sym_continue] = ACTIONS(3181), + [anon_sym_goto] = ACTIONS(3181), + [anon_sym___try] = ACTIONS(3181), + [anon_sym___leave] = ACTIONS(3181), + [anon_sym_not] = ACTIONS(3181), + [anon_sym_compl] = ACTIONS(3181), + [anon_sym_DASH_DASH] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_sizeof] = ACTIONS(3181), + [anon_sym___alignof__] = ACTIONS(3181), + [anon_sym___alignof] = ACTIONS(3181), + [anon_sym__alignof] = ACTIONS(3181), + [anon_sym_alignof] = ACTIONS(3181), + [anon_sym__Alignof] = ACTIONS(3181), + [anon_sym_offsetof] = ACTIONS(3181), + [anon_sym__Generic] = ACTIONS(3181), + [anon_sym_asm] = ACTIONS(3181), + [anon_sym___asm__] = ACTIONS(3181), + [sym_number_literal] = ACTIONS(3183), + [anon_sym_L_SQUOTE] = ACTIONS(3183), + [anon_sym_u_SQUOTE] = ACTIONS(3183), + [anon_sym_U_SQUOTE] = ACTIONS(3183), + [anon_sym_u8_SQUOTE] = ACTIONS(3183), + [anon_sym_SQUOTE] = ACTIONS(3183), + [anon_sym_L_DQUOTE] = ACTIONS(3183), + [anon_sym_u_DQUOTE] = ACTIONS(3183), + [anon_sym_U_DQUOTE] = ACTIONS(3183), + [anon_sym_u8_DQUOTE] = ACTIONS(3183), + [anon_sym_DQUOTE] = ACTIONS(3183), + [sym_true] = ACTIONS(3181), + [sym_false] = ACTIONS(3181), + [anon_sym_NULL] = ACTIONS(3181), + [anon_sym_nullptr] = ACTIONS(3181), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3181), + [anon_sym_decltype] = ACTIONS(3181), + [anon_sym_virtual] = ACTIONS(3181), + [anon_sym_alignas] = ACTIONS(3181), + [anon_sym_explicit] = ACTIONS(3181), + [anon_sym_typename] = ACTIONS(3181), + [anon_sym_template] = ACTIONS(3181), + [anon_sym_operator] = ACTIONS(3181), + [anon_sym_try] = ACTIONS(3181), + [anon_sym_delete] = ACTIONS(3181), + [anon_sym_throw] = ACTIONS(3181), + [anon_sym_namespace] = ACTIONS(3181), + [anon_sym_using] = ACTIONS(3181), + [anon_sym_static_assert] = ACTIONS(3181), + [anon_sym_concept] = ACTIONS(3181), + [anon_sym_co_return] = ACTIONS(3181), + [anon_sym_co_yield] = ACTIONS(3181), + [anon_sym_R_DQUOTE] = ACTIONS(3183), + [anon_sym_LR_DQUOTE] = ACTIONS(3183), + [anon_sym_uR_DQUOTE] = ACTIONS(3183), + [anon_sym_UR_DQUOTE] = ACTIONS(3183), + [anon_sym_u8R_DQUOTE] = ACTIONS(3183), + [anon_sym_co_await] = ACTIONS(3181), + [anon_sym_new] = ACTIONS(3181), + [anon_sym_requires] = ACTIONS(3181), + [sym_this] = ACTIONS(3181), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3183), + [sym_semgrep_named_ellipsis] = ACTIONS(3183), + }, + [577] = { + [sym_identifier] = ACTIONS(3185), + [aux_sym_preproc_include_token1] = ACTIONS(3185), + [aux_sym_preproc_def_token1] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3187), + [aux_sym_preproc_if_token1] = ACTIONS(3185), + [aux_sym_preproc_if_token2] = ACTIONS(3185), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3185), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3185), + [sym_preproc_directive] = ACTIONS(3185), + [anon_sym_LPAREN2] = ACTIONS(3187), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_TILDE] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3185), + [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(3187), + [anon_sym_AMP_AMP] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(3185), + [anon_sym_SEMI] = ACTIONS(3187), + [anon_sym___extension__] = ACTIONS(3185), + [anon_sym_typedef] = ACTIONS(3185), + [anon_sym_extern] = ACTIONS(3185), + [anon_sym___attribute__] = ACTIONS(3185), + [anon_sym_COLON_COLON] = ACTIONS(3187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3187), + [anon_sym___declspec] = ACTIONS(3185), + [anon_sym___based] = ACTIONS(3185), + [anon_sym___cdecl] = ACTIONS(3185), + [anon_sym___clrcall] = ACTIONS(3185), + [anon_sym___stdcall] = ACTIONS(3185), + [anon_sym___fastcall] = ACTIONS(3185), + [anon_sym___thiscall] = ACTIONS(3185), + [anon_sym___vectorcall] = ACTIONS(3185), + [anon_sym_LBRACE] = ACTIONS(3187), + [anon_sym_signed] = ACTIONS(3185), + [anon_sym_unsigned] = ACTIONS(3185), + [anon_sym_long] = ACTIONS(3185), + [anon_sym_short] = ACTIONS(3185), + [anon_sym_LBRACK] = ACTIONS(3185), + [anon_sym_static] = ACTIONS(3185), + [anon_sym_register] = ACTIONS(3185), + [anon_sym_inline] = ACTIONS(3185), + [anon_sym___inline] = ACTIONS(3185), + [anon_sym___inline__] = ACTIONS(3185), + [anon_sym___forceinline] = ACTIONS(3185), + [anon_sym_thread_local] = ACTIONS(3185), + [anon_sym___thread] = ACTIONS(3185), + [anon_sym_const] = ACTIONS(3185), + [anon_sym_constexpr] = ACTIONS(3185), + [anon_sym_volatile] = ACTIONS(3185), + [anon_sym_restrict] = ACTIONS(3185), + [anon_sym___restrict__] = ACTIONS(3185), + [anon_sym__Atomic] = ACTIONS(3185), + [anon_sym__Noreturn] = ACTIONS(3185), + [anon_sym_noreturn] = ACTIONS(3185), + [anon_sym_mutable] = ACTIONS(3185), + [anon_sym_constinit] = ACTIONS(3185), + [anon_sym_consteval] = ACTIONS(3185), + [sym_primitive_type] = ACTIONS(3185), + [anon_sym_enum] = ACTIONS(3185), + [anon_sym_class] = ACTIONS(3185), + [anon_sym_struct] = ACTIONS(3185), + [anon_sym_union] = ACTIONS(3185), + [anon_sym_if] = ACTIONS(3185), + [anon_sym_else] = ACTIONS(3185), + [anon_sym_switch] = ACTIONS(3185), + [anon_sym_case] = ACTIONS(3185), + [anon_sym_default] = ACTIONS(3185), + [anon_sym_while] = ACTIONS(3185), + [anon_sym_do] = ACTIONS(3185), + [anon_sym_for] = ACTIONS(3185), + [anon_sym_return] = ACTIONS(3185), + [anon_sym_break] = ACTIONS(3185), + [anon_sym_continue] = ACTIONS(3185), + [anon_sym_goto] = ACTIONS(3185), + [anon_sym___try] = ACTIONS(3185), + [anon_sym___leave] = ACTIONS(3185), + [anon_sym_not] = ACTIONS(3185), + [anon_sym_compl] = ACTIONS(3185), + [anon_sym_DASH_DASH] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3187), + [anon_sym_sizeof] = ACTIONS(3185), + [anon_sym___alignof__] = ACTIONS(3185), + [anon_sym___alignof] = ACTIONS(3185), + [anon_sym__alignof] = ACTIONS(3185), + [anon_sym_alignof] = ACTIONS(3185), + [anon_sym__Alignof] = ACTIONS(3185), + [anon_sym_offsetof] = ACTIONS(3185), + [anon_sym__Generic] = ACTIONS(3185), + [anon_sym_asm] = ACTIONS(3185), + [anon_sym___asm__] = ACTIONS(3185), + [sym_number_literal] = ACTIONS(3187), + [anon_sym_L_SQUOTE] = ACTIONS(3187), + [anon_sym_u_SQUOTE] = ACTIONS(3187), + [anon_sym_U_SQUOTE] = ACTIONS(3187), + [anon_sym_u8_SQUOTE] = ACTIONS(3187), + [anon_sym_SQUOTE] = ACTIONS(3187), + [anon_sym_L_DQUOTE] = ACTIONS(3187), + [anon_sym_u_DQUOTE] = ACTIONS(3187), + [anon_sym_U_DQUOTE] = ACTIONS(3187), + [anon_sym_u8_DQUOTE] = ACTIONS(3187), + [anon_sym_DQUOTE] = ACTIONS(3187), + [sym_true] = ACTIONS(3185), + [sym_false] = ACTIONS(3185), + [anon_sym_NULL] = ACTIONS(3185), + [anon_sym_nullptr] = ACTIONS(3185), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3185), + [anon_sym_decltype] = ACTIONS(3185), + [anon_sym_virtual] = ACTIONS(3185), + [anon_sym_alignas] = ACTIONS(3185), + [anon_sym_explicit] = ACTIONS(3185), + [anon_sym_typename] = ACTIONS(3185), + [anon_sym_template] = ACTIONS(3185), + [anon_sym_operator] = ACTIONS(3185), + [anon_sym_try] = ACTIONS(3185), + [anon_sym_delete] = ACTIONS(3185), + [anon_sym_throw] = ACTIONS(3185), + [anon_sym_namespace] = ACTIONS(3185), + [anon_sym_using] = ACTIONS(3185), + [anon_sym_static_assert] = ACTIONS(3185), + [anon_sym_concept] = ACTIONS(3185), + [anon_sym_co_return] = ACTIONS(3185), + [anon_sym_co_yield] = ACTIONS(3185), + [anon_sym_R_DQUOTE] = ACTIONS(3187), + [anon_sym_LR_DQUOTE] = ACTIONS(3187), + [anon_sym_uR_DQUOTE] = ACTIONS(3187), + [anon_sym_UR_DQUOTE] = ACTIONS(3187), + [anon_sym_u8R_DQUOTE] = ACTIONS(3187), + [anon_sym_co_await] = ACTIONS(3185), + [anon_sym_new] = ACTIONS(3185), + [anon_sym_requires] = ACTIONS(3185), + [sym_this] = ACTIONS(3185), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3187), + [sym_semgrep_named_ellipsis] = ACTIONS(3187), + }, + [578] = { + [sym_identifier] = ACTIONS(3189), + [aux_sym_preproc_include_token1] = ACTIONS(3189), + [aux_sym_preproc_def_token1] = ACTIONS(3189), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), + [aux_sym_preproc_if_token1] = ACTIONS(3189), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3189), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3189), + [sym_preproc_directive] = ACTIONS(3189), + [anon_sym_LPAREN2] = ACTIONS(3191), + [anon_sym_BANG] = ACTIONS(3191), + [anon_sym_TILDE] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3189), + [anon_sym_STAR] = ACTIONS(3191), + [anon_sym_AMP_AMP] = ACTIONS(3191), + [anon_sym_AMP] = ACTIONS(3189), + [anon_sym_SEMI] = ACTIONS(3191), + [anon_sym___extension__] = ACTIONS(3189), + [anon_sym_typedef] = ACTIONS(3189), + [anon_sym_extern] = ACTIONS(3189), + [anon_sym___attribute__] = ACTIONS(3189), + [anon_sym_COLON_COLON] = ACTIONS(3191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3191), + [anon_sym___declspec] = ACTIONS(3189), + [anon_sym___based] = ACTIONS(3189), + [anon_sym___cdecl] = ACTIONS(3189), + [anon_sym___clrcall] = ACTIONS(3189), + [anon_sym___stdcall] = ACTIONS(3189), + [anon_sym___fastcall] = ACTIONS(3189), + [anon_sym___thiscall] = ACTIONS(3189), + [anon_sym___vectorcall] = ACTIONS(3189), + [anon_sym_LBRACE] = ACTIONS(3191), + [anon_sym_RBRACE] = ACTIONS(3191), + [anon_sym_signed] = ACTIONS(3189), + [anon_sym_unsigned] = ACTIONS(3189), + [anon_sym_long] = ACTIONS(3189), + [anon_sym_short] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_static] = ACTIONS(3189), + [anon_sym_register] = ACTIONS(3189), + [anon_sym_inline] = ACTIONS(3189), + [anon_sym___inline] = ACTIONS(3189), + [anon_sym___inline__] = ACTIONS(3189), + [anon_sym___forceinline] = ACTIONS(3189), + [anon_sym_thread_local] = ACTIONS(3189), + [anon_sym___thread] = ACTIONS(3189), + [anon_sym_const] = ACTIONS(3189), + [anon_sym_constexpr] = ACTIONS(3189), + [anon_sym_volatile] = ACTIONS(3189), + [anon_sym_restrict] = ACTIONS(3189), + [anon_sym___restrict__] = ACTIONS(3189), + [anon_sym__Atomic] = ACTIONS(3189), + [anon_sym__Noreturn] = ACTIONS(3189), + [anon_sym_noreturn] = ACTIONS(3189), + [anon_sym_mutable] = ACTIONS(3189), + [anon_sym_constinit] = ACTIONS(3189), + [anon_sym_consteval] = ACTIONS(3189), + [sym_primitive_type] = ACTIONS(3189), + [anon_sym_enum] = ACTIONS(3189), + [anon_sym_class] = ACTIONS(3189), + [anon_sym_struct] = ACTIONS(3189), + [anon_sym_union] = ACTIONS(3189), + [anon_sym_if] = ACTIONS(3189), + [anon_sym_else] = ACTIONS(3189), + [anon_sym_switch] = ACTIONS(3189), + [anon_sym_case] = ACTIONS(3189), + [anon_sym_default] = ACTIONS(3189), + [anon_sym_while] = ACTIONS(3189), + [anon_sym_do] = ACTIONS(3189), + [anon_sym_for] = ACTIONS(3189), + [anon_sym_return] = ACTIONS(3189), + [anon_sym_break] = ACTIONS(3189), + [anon_sym_continue] = ACTIONS(3189), + [anon_sym_goto] = ACTIONS(3189), + [anon_sym___try] = ACTIONS(3189), + [anon_sym___leave] = ACTIONS(3189), + [anon_sym_not] = ACTIONS(3189), + [anon_sym_compl] = ACTIONS(3189), + [anon_sym_DASH_DASH] = ACTIONS(3191), + [anon_sym_PLUS_PLUS] = ACTIONS(3191), + [anon_sym_sizeof] = ACTIONS(3189), + [anon_sym___alignof__] = ACTIONS(3189), + [anon_sym___alignof] = ACTIONS(3189), + [anon_sym__alignof] = ACTIONS(3189), + [anon_sym_alignof] = ACTIONS(3189), + [anon_sym__Alignof] = ACTIONS(3189), + [anon_sym_offsetof] = ACTIONS(3189), + [anon_sym__Generic] = ACTIONS(3189), + [anon_sym_asm] = ACTIONS(3189), + [anon_sym___asm__] = ACTIONS(3189), + [sym_number_literal] = ACTIONS(3191), + [anon_sym_L_SQUOTE] = ACTIONS(3191), + [anon_sym_u_SQUOTE] = ACTIONS(3191), + [anon_sym_U_SQUOTE] = ACTIONS(3191), + [anon_sym_u8_SQUOTE] = ACTIONS(3191), + [anon_sym_SQUOTE] = ACTIONS(3191), + [anon_sym_L_DQUOTE] = ACTIONS(3191), + [anon_sym_u_DQUOTE] = ACTIONS(3191), + [anon_sym_U_DQUOTE] = ACTIONS(3191), + [anon_sym_u8_DQUOTE] = ACTIONS(3191), + [anon_sym_DQUOTE] = ACTIONS(3191), + [sym_true] = ACTIONS(3189), + [sym_false] = ACTIONS(3189), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3189), + [anon_sym_decltype] = ACTIONS(3189), + [anon_sym_virtual] = ACTIONS(3189), + [anon_sym_alignas] = ACTIONS(3189), + [anon_sym_explicit] = ACTIONS(3189), + [anon_sym_typename] = ACTIONS(3189), + [anon_sym_template] = ACTIONS(3189), + [anon_sym_operator] = ACTIONS(3189), + [anon_sym_try] = ACTIONS(3189), + [anon_sym_delete] = ACTIONS(3189), + [anon_sym_throw] = ACTIONS(3189), + [anon_sym_namespace] = ACTIONS(3189), + [anon_sym_using] = ACTIONS(3189), + [anon_sym_static_assert] = ACTIONS(3189), + [anon_sym_concept] = ACTIONS(3189), + [anon_sym_co_return] = ACTIONS(3189), + [anon_sym_co_yield] = ACTIONS(3189), + [anon_sym_R_DQUOTE] = ACTIONS(3191), + [anon_sym_LR_DQUOTE] = ACTIONS(3191), + [anon_sym_uR_DQUOTE] = ACTIONS(3191), + [anon_sym_UR_DQUOTE] = ACTIONS(3191), + [anon_sym_u8R_DQUOTE] = ACTIONS(3191), + [anon_sym_co_await] = ACTIONS(3189), + [anon_sym_new] = ACTIONS(3189), + [anon_sym_requires] = ACTIONS(3189), + [sym_this] = ACTIONS(3189), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3191), + [sym_semgrep_named_ellipsis] = ACTIONS(3191), + }, + [579] = { + [sym_identifier] = ACTIONS(2355), + [aux_sym_preproc_include_token1] = ACTIONS(2355), + [aux_sym_preproc_def_token1] = ACTIONS(2355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2353), + [anon_sym_COMMA] = ACTIONS(3211), + [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(2353), + [anon_sym_BANG] = ACTIONS(2353), + [anon_sym_TILDE] = ACTIONS(2353), + [anon_sym_DASH] = ACTIONS(2355), + [anon_sym_PLUS] = ACTIONS(2355), + [anon_sym_STAR] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(2353), + [anon_sym_AMP] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(3211), + [anon_sym___extension__] = ACTIONS(2355), + [anon_sym_typedef] = ACTIONS(2355), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym___attribute__] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(2353), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), + [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(2353), + [anon_sym_signed] = ACTIONS(2355), + [anon_sym_unsigned] = ACTIONS(2355), + [anon_sym_long] = ACTIONS(2355), + [anon_sym_short] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_static] = ACTIONS(2355), + [anon_sym_register] = ACTIONS(2355), + [anon_sym_inline] = ACTIONS(2355), + [anon_sym___inline] = ACTIONS(2355), + [anon_sym___inline__] = ACTIONS(2355), + [anon_sym___forceinline] = ACTIONS(2355), + [anon_sym_thread_local] = ACTIONS(2355), + [anon_sym___thread] = ACTIONS(2355), + [anon_sym_const] = ACTIONS(2355), + [anon_sym_constexpr] = ACTIONS(2355), + [anon_sym_volatile] = ACTIONS(2355), + [anon_sym_restrict] = ACTIONS(2355), + [anon_sym___restrict__] = ACTIONS(2355), + [anon_sym__Atomic] = ACTIONS(2355), + [anon_sym__Noreturn] = ACTIONS(2355), + [anon_sym_noreturn] = ACTIONS(2355), + [anon_sym_mutable] = ACTIONS(2355), + [anon_sym_constinit] = ACTIONS(2355), + [anon_sym_consteval] = 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_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___try] = ACTIONS(2355), + [anon_sym___leave] = ACTIONS(2355), + [anon_sym_not] = ACTIONS(2355), + [anon_sym_compl] = ACTIONS(2355), + [anon_sym_DASH_DASH] = ACTIONS(2353), + [anon_sym_PLUS_PLUS] = ACTIONS(2353), + [anon_sym_sizeof] = ACTIONS(2355), + [anon_sym___alignof__] = ACTIONS(2355), + [anon_sym___alignof] = ACTIONS(2355), + [anon_sym__alignof] = ACTIONS(2355), + [anon_sym_alignof] = ACTIONS(2355), + [anon_sym__Alignof] = ACTIONS(2355), + [anon_sym_offsetof] = ACTIONS(2355), + [anon_sym__Generic] = ACTIONS(2355), + [anon_sym_asm] = ACTIONS(2355), + [anon_sym___asm__] = ACTIONS(2355), + [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(2355), + [sym_false] = ACTIONS(2355), + [anon_sym_NULL] = ACTIONS(2355), + [anon_sym_nullptr] = ACTIONS(2355), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2355), + [anon_sym_decltype] = ACTIONS(2355), + [anon_sym_virtual] = ACTIONS(2355), + [anon_sym_alignas] = 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_R_DQUOTE] = ACTIONS(2353), + [anon_sym_LR_DQUOTE] = ACTIONS(2353), + [anon_sym_uR_DQUOTE] = ACTIONS(2353), + [anon_sym_UR_DQUOTE] = ACTIONS(2353), + [anon_sym_u8R_DQUOTE] = ACTIONS(2353), + [anon_sym_co_await] = ACTIONS(2355), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_requires] = ACTIONS(2355), + [sym_this] = ACTIONS(2355), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2353), + [sym_semgrep_named_ellipsis] = ACTIONS(2353), + }, + [580] = { + [sym_identifier] = ACTIONS(2355), + [aux_sym_preproc_include_token1] = ACTIONS(2355), + [aux_sym_preproc_def_token1] = ACTIONS(2355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2353), + [anon_sym_COMMA] = ACTIONS(3211), + [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(2353), + [anon_sym_BANG] = ACTIONS(2353), + [anon_sym_TILDE] = ACTIONS(2353), + [anon_sym_DASH] = ACTIONS(2355), + [anon_sym_PLUS] = ACTIONS(2355), + [anon_sym_STAR] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(2353), + [anon_sym_AMP] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2353), + [anon_sym___extension__] = ACTIONS(2355), + [anon_sym_typedef] = ACTIONS(2355), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym___attribute__] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(2353), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), + [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(2353), + [anon_sym_RBRACE] = ACTIONS(3211), + [anon_sym_signed] = ACTIONS(2355), + [anon_sym_unsigned] = ACTIONS(2355), + [anon_sym_long] = ACTIONS(2355), + [anon_sym_short] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_static] = ACTIONS(2355), + [anon_sym_register] = ACTIONS(2355), + [anon_sym_inline] = ACTIONS(2355), + [anon_sym___inline] = ACTIONS(2355), + [anon_sym___inline__] = ACTIONS(2355), + [anon_sym___forceinline] = ACTIONS(2355), + [anon_sym_thread_local] = ACTIONS(2355), + [anon_sym___thread] = ACTIONS(2355), + [anon_sym_const] = ACTIONS(2355), + [anon_sym_constexpr] = ACTIONS(2355), + [anon_sym_volatile] = ACTIONS(2355), + [anon_sym_restrict] = ACTIONS(2355), + [anon_sym___restrict__] = ACTIONS(2355), + [anon_sym__Atomic] = ACTIONS(2355), + [anon_sym__Noreturn] = ACTIONS(2355), + [anon_sym_noreturn] = ACTIONS(2355), + [anon_sym_mutable] = ACTIONS(2355), + [anon_sym_constinit] = ACTIONS(2355), + [anon_sym_consteval] = 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_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___try] = ACTIONS(2355), + [anon_sym___leave] = ACTIONS(2355), + [anon_sym_not] = ACTIONS(2355), + [anon_sym_compl] = ACTIONS(2355), + [anon_sym_DASH_DASH] = ACTIONS(2353), + [anon_sym_PLUS_PLUS] = ACTIONS(2353), + [anon_sym_sizeof] = ACTIONS(2355), + [anon_sym___alignof__] = ACTIONS(2355), + [anon_sym___alignof] = ACTIONS(2355), + [anon_sym__alignof] = ACTIONS(2355), + [anon_sym_alignof] = ACTIONS(2355), + [anon_sym__Alignof] = ACTIONS(2355), + [anon_sym_offsetof] = ACTIONS(2355), + [anon_sym__Generic] = ACTIONS(2355), + [anon_sym_asm] = ACTIONS(2355), + [anon_sym___asm__] = ACTIONS(2355), + [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(2355), + [sym_false] = ACTIONS(2355), + [anon_sym_NULL] = ACTIONS(2355), + [anon_sym_nullptr] = ACTIONS(2355), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2355), + [anon_sym_decltype] = ACTIONS(2355), + [anon_sym_virtual] = ACTIONS(2355), + [anon_sym_alignas] = 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_R_DQUOTE] = ACTIONS(2353), + [anon_sym_LR_DQUOTE] = ACTIONS(2353), + [anon_sym_uR_DQUOTE] = ACTIONS(2353), + [anon_sym_UR_DQUOTE] = ACTIONS(2353), + [anon_sym_u8R_DQUOTE] = ACTIONS(2353), + [anon_sym_co_await] = ACTIONS(2355), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_requires] = ACTIONS(2355), + [sym_this] = ACTIONS(2355), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2353), + [sym_semgrep_named_ellipsis] = ACTIONS(2353), + }, + [581] = { + [ts_builtin_sym_end] = ACTIONS(3195), + [sym_identifier] = ACTIONS(3193), + [aux_sym_preproc_include_token1] = ACTIONS(3193), + [aux_sym_preproc_def_token1] = ACTIONS(3193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3195), + [aux_sym_preproc_if_token1] = ACTIONS(3193), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3193), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3193), + [sym_preproc_directive] = ACTIONS(3193), + [anon_sym_LPAREN2] = ACTIONS(3195), + [anon_sym_BANG] = ACTIONS(3195), + [anon_sym_TILDE] = ACTIONS(3195), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_AMP] = ACTIONS(3193), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym___extension__] = ACTIONS(3193), + [anon_sym_typedef] = ACTIONS(3193), + [anon_sym_extern] = ACTIONS(3193), + [anon_sym___attribute__] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(3195), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3195), + [anon_sym___declspec] = ACTIONS(3193), + [anon_sym___based] = ACTIONS(3193), + [anon_sym___cdecl] = ACTIONS(3193), + [anon_sym___clrcall] = ACTIONS(3193), + [anon_sym___stdcall] = ACTIONS(3193), + [anon_sym___fastcall] = ACTIONS(3193), + [anon_sym___thiscall] = ACTIONS(3193), + [anon_sym___vectorcall] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(3195), + [anon_sym_signed] = ACTIONS(3193), + [anon_sym_unsigned] = ACTIONS(3193), + [anon_sym_long] = ACTIONS(3193), + [anon_sym_short] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(3193), + [anon_sym_static] = ACTIONS(3193), + [anon_sym_register] = ACTIONS(3193), + [anon_sym_inline] = ACTIONS(3193), + [anon_sym___inline] = ACTIONS(3193), + [anon_sym___inline__] = ACTIONS(3193), + [anon_sym___forceinline] = ACTIONS(3193), + [anon_sym_thread_local] = ACTIONS(3193), + [anon_sym___thread] = ACTIONS(3193), + [anon_sym_const] = ACTIONS(3193), + [anon_sym_constexpr] = ACTIONS(3193), + [anon_sym_volatile] = ACTIONS(3193), + [anon_sym_restrict] = ACTIONS(3193), + [anon_sym___restrict__] = ACTIONS(3193), + [anon_sym__Atomic] = ACTIONS(3193), + [anon_sym__Noreturn] = ACTIONS(3193), + [anon_sym_noreturn] = ACTIONS(3193), + [anon_sym_mutable] = ACTIONS(3193), + [anon_sym_constinit] = ACTIONS(3193), + [anon_sym_consteval] = ACTIONS(3193), + [sym_primitive_type] = ACTIONS(3193), + [anon_sym_enum] = ACTIONS(3193), + [anon_sym_class] = ACTIONS(3193), + [anon_sym_struct] = ACTIONS(3193), + [anon_sym_union] = ACTIONS(3193), + [anon_sym_if] = ACTIONS(3193), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_switch] = ACTIONS(3193), + [anon_sym_case] = ACTIONS(3193), + [anon_sym_default] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_do] = ACTIONS(3193), + [anon_sym_for] = ACTIONS(3193), + [anon_sym_return] = ACTIONS(3193), + [anon_sym_break] = ACTIONS(3193), + [anon_sym_continue] = ACTIONS(3193), + [anon_sym_goto] = ACTIONS(3193), + [anon_sym___try] = ACTIONS(3193), + [anon_sym___leave] = ACTIONS(3193), + [anon_sym_not] = ACTIONS(3193), + [anon_sym_compl] = ACTIONS(3193), + [anon_sym_DASH_DASH] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3195), + [anon_sym_sizeof] = ACTIONS(3193), + [anon_sym___alignof__] = ACTIONS(3193), + [anon_sym___alignof] = ACTIONS(3193), + [anon_sym__alignof] = ACTIONS(3193), + [anon_sym_alignof] = ACTIONS(3193), + [anon_sym__Alignof] = ACTIONS(3193), + [anon_sym_offsetof] = ACTIONS(3193), + [anon_sym__Generic] = ACTIONS(3193), + [anon_sym_asm] = ACTIONS(3193), + [anon_sym___asm__] = ACTIONS(3193), + [sym_number_literal] = ACTIONS(3195), + [anon_sym_L_SQUOTE] = ACTIONS(3195), + [anon_sym_u_SQUOTE] = ACTIONS(3195), + [anon_sym_U_SQUOTE] = ACTIONS(3195), + [anon_sym_u8_SQUOTE] = ACTIONS(3195), + [anon_sym_SQUOTE] = ACTIONS(3195), + [anon_sym_L_DQUOTE] = ACTIONS(3195), + [anon_sym_u_DQUOTE] = ACTIONS(3195), + [anon_sym_U_DQUOTE] = ACTIONS(3195), + [anon_sym_u8_DQUOTE] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(3195), + [sym_true] = ACTIONS(3193), + [sym_false] = ACTIONS(3193), + [anon_sym_NULL] = ACTIONS(3193), + [anon_sym_nullptr] = ACTIONS(3193), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3193), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_virtual] = ACTIONS(3193), + [anon_sym_alignas] = ACTIONS(3193), + [anon_sym_explicit] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3193), + [anon_sym_template] = ACTIONS(3193), + [anon_sym_operator] = ACTIONS(3193), + [anon_sym_try] = ACTIONS(3193), + [anon_sym_delete] = ACTIONS(3193), + [anon_sym_throw] = ACTIONS(3193), + [anon_sym_namespace] = ACTIONS(3193), + [anon_sym_using] = ACTIONS(3193), + [anon_sym_static_assert] = ACTIONS(3193), + [anon_sym_concept] = ACTIONS(3193), + [anon_sym_co_return] = ACTIONS(3193), + [anon_sym_co_yield] = ACTIONS(3193), + [anon_sym_R_DQUOTE] = ACTIONS(3195), + [anon_sym_LR_DQUOTE] = ACTIONS(3195), + [anon_sym_uR_DQUOTE] = ACTIONS(3195), + [anon_sym_UR_DQUOTE] = ACTIONS(3195), + [anon_sym_u8R_DQUOTE] = ACTIONS(3195), + [anon_sym_co_await] = ACTIONS(3193), + [anon_sym_new] = ACTIONS(3193), + [anon_sym_requires] = ACTIONS(3193), + [sym_this] = ACTIONS(3193), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3195), + [sym_semgrep_named_ellipsis] = ACTIONS(3195), + }, + [582] = { + [sym_identifier] = ACTIONS(3127), + [aux_sym_preproc_include_token1] = ACTIONS(3127), + [aux_sym_preproc_def_token1] = ACTIONS(3127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3129), + [aux_sym_preproc_if_token1] = ACTIONS(3127), + [aux_sym_preproc_if_token2] = ACTIONS(3127), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3127), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3127), + [sym_preproc_directive] = ACTIONS(3127), + [anon_sym_LPAREN2] = ACTIONS(3129), + [anon_sym_BANG] = ACTIONS(3129), + [anon_sym_TILDE] = ACTIONS(3129), + [anon_sym_DASH] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(3127), + [anon_sym_STAR] = ACTIONS(3129), + [anon_sym_AMP_AMP] = ACTIONS(3129), + [anon_sym_AMP] = ACTIONS(3127), + [anon_sym_SEMI] = ACTIONS(3129), + [anon_sym___extension__] = ACTIONS(3127), + [anon_sym_typedef] = ACTIONS(3127), + [anon_sym_extern] = ACTIONS(3127), + [anon_sym___attribute__] = ACTIONS(3127), + [anon_sym_COLON_COLON] = ACTIONS(3129), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3129), + [anon_sym___declspec] = ACTIONS(3127), + [anon_sym___based] = ACTIONS(3127), + [anon_sym___cdecl] = ACTIONS(3127), + [anon_sym___clrcall] = ACTIONS(3127), + [anon_sym___stdcall] = ACTIONS(3127), + [anon_sym___fastcall] = ACTIONS(3127), + [anon_sym___thiscall] = ACTIONS(3127), + [anon_sym___vectorcall] = ACTIONS(3127), + [anon_sym_LBRACE] = ACTIONS(3129), + [anon_sym_signed] = ACTIONS(3127), + [anon_sym_unsigned] = ACTIONS(3127), + [anon_sym_long] = ACTIONS(3127), + [anon_sym_short] = ACTIONS(3127), + [anon_sym_LBRACK] = ACTIONS(3127), + [anon_sym_static] = ACTIONS(3127), + [anon_sym_register] = ACTIONS(3127), + [anon_sym_inline] = ACTIONS(3127), + [anon_sym___inline] = ACTIONS(3127), + [anon_sym___inline__] = ACTIONS(3127), + [anon_sym___forceinline] = ACTIONS(3127), + [anon_sym_thread_local] = ACTIONS(3127), + [anon_sym___thread] = ACTIONS(3127), + [anon_sym_const] = ACTIONS(3127), + [anon_sym_constexpr] = ACTIONS(3127), + [anon_sym_volatile] = ACTIONS(3127), + [anon_sym_restrict] = ACTIONS(3127), + [anon_sym___restrict__] = ACTIONS(3127), + [anon_sym__Atomic] = ACTIONS(3127), + [anon_sym__Noreturn] = ACTIONS(3127), + [anon_sym_noreturn] = ACTIONS(3127), + [anon_sym_mutable] = ACTIONS(3127), + [anon_sym_constinit] = ACTIONS(3127), + [anon_sym_consteval] = ACTIONS(3127), + [sym_primitive_type] = ACTIONS(3127), + [anon_sym_enum] = ACTIONS(3127), + [anon_sym_class] = ACTIONS(3127), + [anon_sym_struct] = ACTIONS(3127), + [anon_sym_union] = ACTIONS(3127), + [anon_sym_if] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(3127), + [anon_sym_switch] = ACTIONS(3127), + [anon_sym_case] = ACTIONS(3127), + [anon_sym_default] = ACTIONS(3127), + [anon_sym_while] = ACTIONS(3127), + [anon_sym_do] = ACTIONS(3127), + [anon_sym_for] = ACTIONS(3127), + [anon_sym_return] = ACTIONS(3127), + [anon_sym_break] = ACTIONS(3127), + [anon_sym_continue] = ACTIONS(3127), + [anon_sym_goto] = ACTIONS(3127), + [anon_sym___try] = ACTIONS(3127), + [anon_sym___leave] = ACTIONS(3127), + [anon_sym_not] = ACTIONS(3127), + [anon_sym_compl] = ACTIONS(3127), + [anon_sym_DASH_DASH] = ACTIONS(3129), + [anon_sym_PLUS_PLUS] = ACTIONS(3129), + [anon_sym_sizeof] = ACTIONS(3127), + [anon_sym___alignof__] = ACTIONS(3127), + [anon_sym___alignof] = ACTIONS(3127), + [anon_sym__alignof] = ACTIONS(3127), + [anon_sym_alignof] = ACTIONS(3127), + [anon_sym__Alignof] = ACTIONS(3127), + [anon_sym_offsetof] = ACTIONS(3127), + [anon_sym__Generic] = ACTIONS(3127), + [anon_sym_asm] = ACTIONS(3127), + [anon_sym___asm__] = ACTIONS(3127), + [sym_number_literal] = ACTIONS(3129), + [anon_sym_L_SQUOTE] = ACTIONS(3129), + [anon_sym_u_SQUOTE] = ACTIONS(3129), + [anon_sym_U_SQUOTE] = ACTIONS(3129), + [anon_sym_u8_SQUOTE] = ACTIONS(3129), + [anon_sym_SQUOTE] = ACTIONS(3129), + [anon_sym_L_DQUOTE] = ACTIONS(3129), + [anon_sym_u_DQUOTE] = ACTIONS(3129), + [anon_sym_U_DQUOTE] = ACTIONS(3129), + [anon_sym_u8_DQUOTE] = ACTIONS(3129), + [anon_sym_DQUOTE] = ACTIONS(3129), + [sym_true] = ACTIONS(3127), + [sym_false] = ACTIONS(3127), + [anon_sym_NULL] = ACTIONS(3127), + [anon_sym_nullptr] = ACTIONS(3127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3127), + [anon_sym_decltype] = ACTIONS(3127), + [anon_sym_virtual] = ACTIONS(3127), + [anon_sym_alignas] = ACTIONS(3127), + [anon_sym_explicit] = ACTIONS(3127), + [anon_sym_typename] = ACTIONS(3127), + [anon_sym_template] = ACTIONS(3127), + [anon_sym_operator] = ACTIONS(3127), + [anon_sym_try] = ACTIONS(3127), + [anon_sym_delete] = ACTIONS(3127), + [anon_sym_throw] = ACTIONS(3127), + [anon_sym_namespace] = ACTIONS(3127), + [anon_sym_using] = ACTIONS(3127), + [anon_sym_static_assert] = ACTIONS(3127), + [anon_sym_concept] = ACTIONS(3127), + [anon_sym_co_return] = ACTIONS(3127), + [anon_sym_co_yield] = ACTIONS(3127), + [anon_sym_R_DQUOTE] = ACTIONS(3129), + [anon_sym_LR_DQUOTE] = ACTIONS(3129), + [anon_sym_uR_DQUOTE] = ACTIONS(3129), + [anon_sym_UR_DQUOTE] = ACTIONS(3129), + [anon_sym_u8R_DQUOTE] = ACTIONS(3129), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3127), + [anon_sym_requires] = ACTIONS(3127), + [sym_this] = ACTIONS(3127), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3129), + [sym_semgrep_named_ellipsis] = ACTIONS(3129), + }, + [583] = { + [sym_identifier] = ACTIONS(3189), + [aux_sym_preproc_include_token1] = ACTIONS(3189), + [aux_sym_preproc_def_token1] = ACTIONS(3189), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), + [aux_sym_preproc_if_token1] = ACTIONS(3189), + [aux_sym_preproc_if_token2] = ACTIONS(3189), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3189), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3189), + [sym_preproc_directive] = ACTIONS(3189), + [anon_sym_LPAREN2] = ACTIONS(3191), + [anon_sym_BANG] = ACTIONS(3191), + [anon_sym_TILDE] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3189), + [anon_sym_STAR] = ACTIONS(3191), + [anon_sym_AMP_AMP] = ACTIONS(3191), + [anon_sym_AMP] = ACTIONS(3189), + [anon_sym_SEMI] = ACTIONS(3191), + [anon_sym___extension__] = ACTIONS(3189), + [anon_sym_typedef] = ACTIONS(3189), + [anon_sym_extern] = ACTIONS(3189), + [anon_sym___attribute__] = ACTIONS(3189), + [anon_sym_COLON_COLON] = ACTIONS(3191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3191), + [anon_sym___declspec] = ACTIONS(3189), + [anon_sym___based] = ACTIONS(3189), + [anon_sym___cdecl] = ACTIONS(3189), + [anon_sym___clrcall] = ACTIONS(3189), + [anon_sym___stdcall] = ACTIONS(3189), + [anon_sym___fastcall] = ACTIONS(3189), + [anon_sym___thiscall] = ACTIONS(3189), + [anon_sym___vectorcall] = ACTIONS(3189), + [anon_sym_LBRACE] = ACTIONS(3191), + [anon_sym_signed] = ACTIONS(3189), + [anon_sym_unsigned] = ACTIONS(3189), + [anon_sym_long] = ACTIONS(3189), + [anon_sym_short] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_static] = ACTIONS(3189), + [anon_sym_register] = ACTIONS(3189), + [anon_sym_inline] = ACTIONS(3189), + [anon_sym___inline] = ACTIONS(3189), + [anon_sym___inline__] = ACTIONS(3189), + [anon_sym___forceinline] = ACTIONS(3189), + [anon_sym_thread_local] = ACTIONS(3189), + [anon_sym___thread] = ACTIONS(3189), + [anon_sym_const] = ACTIONS(3189), + [anon_sym_constexpr] = ACTIONS(3189), + [anon_sym_volatile] = ACTIONS(3189), + [anon_sym_restrict] = ACTIONS(3189), + [anon_sym___restrict__] = ACTIONS(3189), + [anon_sym__Atomic] = ACTIONS(3189), + [anon_sym__Noreturn] = ACTIONS(3189), + [anon_sym_noreturn] = ACTIONS(3189), + [anon_sym_mutable] = ACTIONS(3189), + [anon_sym_constinit] = ACTIONS(3189), + [anon_sym_consteval] = ACTIONS(3189), + [sym_primitive_type] = ACTIONS(3189), + [anon_sym_enum] = ACTIONS(3189), + [anon_sym_class] = ACTIONS(3189), + [anon_sym_struct] = ACTIONS(3189), + [anon_sym_union] = ACTIONS(3189), + [anon_sym_if] = ACTIONS(3189), + [anon_sym_else] = ACTIONS(3189), + [anon_sym_switch] = ACTIONS(3189), + [anon_sym_case] = ACTIONS(3189), + [anon_sym_default] = ACTIONS(3189), + [anon_sym_while] = ACTIONS(3189), + [anon_sym_do] = ACTIONS(3189), + [anon_sym_for] = ACTIONS(3189), + [anon_sym_return] = ACTIONS(3189), + [anon_sym_break] = ACTIONS(3189), + [anon_sym_continue] = ACTIONS(3189), + [anon_sym_goto] = ACTIONS(3189), + [anon_sym___try] = ACTIONS(3189), + [anon_sym___leave] = ACTIONS(3189), + [anon_sym_not] = ACTIONS(3189), + [anon_sym_compl] = ACTIONS(3189), + [anon_sym_DASH_DASH] = ACTIONS(3191), + [anon_sym_PLUS_PLUS] = ACTIONS(3191), + [anon_sym_sizeof] = ACTIONS(3189), + [anon_sym___alignof__] = ACTIONS(3189), + [anon_sym___alignof] = ACTIONS(3189), + [anon_sym__alignof] = ACTIONS(3189), + [anon_sym_alignof] = ACTIONS(3189), + [anon_sym__Alignof] = ACTIONS(3189), + [anon_sym_offsetof] = ACTIONS(3189), + [anon_sym__Generic] = ACTIONS(3189), + [anon_sym_asm] = ACTIONS(3189), + [anon_sym___asm__] = ACTIONS(3189), + [sym_number_literal] = ACTIONS(3191), + [anon_sym_L_SQUOTE] = ACTIONS(3191), + [anon_sym_u_SQUOTE] = ACTIONS(3191), + [anon_sym_U_SQUOTE] = ACTIONS(3191), + [anon_sym_u8_SQUOTE] = ACTIONS(3191), + [anon_sym_SQUOTE] = ACTIONS(3191), + [anon_sym_L_DQUOTE] = ACTIONS(3191), + [anon_sym_u_DQUOTE] = ACTIONS(3191), + [anon_sym_U_DQUOTE] = ACTIONS(3191), + [anon_sym_u8_DQUOTE] = ACTIONS(3191), + [anon_sym_DQUOTE] = ACTIONS(3191), + [sym_true] = ACTIONS(3189), + [sym_false] = ACTIONS(3189), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3189), + [anon_sym_decltype] = ACTIONS(3189), + [anon_sym_virtual] = ACTIONS(3189), + [anon_sym_alignas] = ACTIONS(3189), + [anon_sym_explicit] = ACTIONS(3189), + [anon_sym_typename] = ACTIONS(3189), + [anon_sym_template] = ACTIONS(3189), + [anon_sym_operator] = ACTIONS(3189), + [anon_sym_try] = ACTIONS(3189), + [anon_sym_delete] = ACTIONS(3189), + [anon_sym_throw] = ACTIONS(3189), + [anon_sym_namespace] = ACTIONS(3189), + [anon_sym_using] = ACTIONS(3189), + [anon_sym_static_assert] = ACTIONS(3189), + [anon_sym_concept] = ACTIONS(3189), + [anon_sym_co_return] = ACTIONS(3189), + [anon_sym_co_yield] = ACTIONS(3189), + [anon_sym_R_DQUOTE] = ACTIONS(3191), + [anon_sym_LR_DQUOTE] = ACTIONS(3191), + [anon_sym_uR_DQUOTE] = ACTIONS(3191), + [anon_sym_UR_DQUOTE] = ACTIONS(3191), + [anon_sym_u8R_DQUOTE] = ACTIONS(3191), + [anon_sym_co_await] = ACTIONS(3189), + [anon_sym_new] = ACTIONS(3189), + [anon_sym_requires] = ACTIONS(3189), + [sym_this] = ACTIONS(3189), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3191), + [sym_semgrep_named_ellipsis] = ACTIONS(3191), + }, + [584] = { + [sym_preproc_def] = STATE(1935), + [sym_preproc_function_def] = STATE(1935), + [sym_preproc_call] = STATE(1935), + [sym_preproc_if_in_field_declaration_list] = STATE(1935), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1935), + [sym_type_definition] = STATE(1935), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6440), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7286), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(584), + [sym_field_declaration] = STATE(1935), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(1935), + [sym_operator_cast] = STATE(7765), + [sym_inline_method_definition] = STATE(1935), + [sym_constructor_specifiers] = STATE(1957), + [sym_operator_cast_definition] = STATE(1935), + [sym_operator_cast_declaration] = STATE(1935), + [sym_constructor_or_destructor_definition] = STATE(1935), + [sym_constructor_or_destructor_declaration] = STATE(1935), + [sym_friend_declaration] = STATE(1935), + [sym_access_specifier] = STATE(9998), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(1935), + [sym_alias_declaration] = STATE(1935), + [sym_static_assert_declaration] = STATE(1935), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7765), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(1935), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(584), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1957), + [sym_identifier] = ACTIONS(3714), + [aux_sym_preproc_def_token1] = ACTIONS(3717), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3720), + [aux_sym_preproc_if_token1] = ACTIONS(3723), + [aux_sym_preproc_if_token2] = ACTIONS(3726), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3728), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3731), + [aux_sym_preproc_else_token1] = ACTIONS(3726), + [aux_sym_preproc_elif_token1] = ACTIONS(3726), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3726), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3726), + [sym_preproc_directive] = ACTIONS(3734), + [anon_sym_LPAREN2] = ACTIONS(3737), + [anon_sym_TILDE] = ACTIONS(3740), + [anon_sym_STAR] = ACTIONS(3743), + [anon_sym_AMP_AMP] = ACTIONS(3746), + [anon_sym_AMP] = ACTIONS(3749), + [anon_sym___extension__] = ACTIONS(3752), + [anon_sym_typedef] = ACTIONS(3755), + [anon_sym_extern] = ACTIONS(3758), + [anon_sym___attribute__] = ACTIONS(3761), + [anon_sym_COLON_COLON] = ACTIONS(3764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3767), + [anon_sym___declspec] = ACTIONS(3770), + [anon_sym___based] = ACTIONS(3773), + [anon_sym_signed] = ACTIONS(3776), + [anon_sym_unsigned] = ACTIONS(3776), + [anon_sym_long] = ACTIONS(3776), + [anon_sym_short] = ACTIONS(3776), + [anon_sym_LBRACK] = ACTIONS(3779), + [anon_sym_static] = ACTIONS(3758), + [anon_sym_register] = ACTIONS(3758), + [anon_sym_inline] = ACTIONS(3758), + [anon_sym___inline] = ACTIONS(3758), + [anon_sym___inline__] = ACTIONS(3758), + [anon_sym___forceinline] = ACTIONS(3758), + [anon_sym_thread_local] = ACTIONS(3758), + [anon_sym___thread] = ACTIONS(3758), + [anon_sym_const] = ACTIONS(3782), + [anon_sym_constexpr] = ACTIONS(3782), + [anon_sym_volatile] = ACTIONS(3782), + [anon_sym_restrict] = ACTIONS(3782), + [anon_sym___restrict__] = ACTIONS(3782), + [anon_sym__Atomic] = ACTIONS(3782), + [anon_sym__Noreturn] = ACTIONS(3782), + [anon_sym_noreturn] = ACTIONS(3782), + [anon_sym_mutable] = ACTIONS(3782), + [anon_sym_constinit] = ACTIONS(3782), + [anon_sym_consteval] = ACTIONS(3782), + [sym_primitive_type] = ACTIONS(3785), + [anon_sym_enum] = ACTIONS(3788), + [anon_sym_class] = ACTIONS(3791), + [anon_sym_struct] = ACTIONS(3794), + [anon_sym_union] = ACTIONS(3797), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3800), + [anon_sym_decltype] = ACTIONS(3803), + [anon_sym_virtual] = ACTIONS(3806), + [anon_sym_alignas] = ACTIONS(3809), + [anon_sym_explicit] = ACTIONS(3812), + [anon_sym_typename] = ACTIONS(3815), + [anon_sym_template] = ACTIONS(3818), + [anon_sym_operator] = ACTIONS(3821), + [anon_sym_friend] = ACTIONS(3824), + [anon_sym_public] = ACTIONS(3827), + [anon_sym_private] = ACTIONS(3827), + [anon_sym_protected] = ACTIONS(3827), + [anon_sym_using] = ACTIONS(3830), + [anon_sym_static_assert] = ACTIONS(3833), + [sym_semgrep_metavar] = ACTIONS(3836), + }, + [585] = { + [sym_identifier] = ACTIONS(3087), + [aux_sym_preproc_include_token1] = ACTIONS(3087), + [aux_sym_preproc_def_token1] = ACTIONS(3087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [aux_sym_preproc_if_token1] = ACTIONS(3087), + [aux_sym_preproc_if_token2] = ACTIONS(3087), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3087), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3087), + [sym_preproc_directive] = ACTIONS(3087), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_BANG] = ACTIONS(3089), + [anon_sym_TILDE] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3087), + [anon_sym_STAR] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_typedef] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3089), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3089), + [anon_sym___declspec] = ACTIONS(3087), + [anon_sym___based] = ACTIONS(3087), + [anon_sym___cdecl] = ACTIONS(3087), + [anon_sym___clrcall] = ACTIONS(3087), + [anon_sym___stdcall] = ACTIONS(3087), + [anon_sym___fastcall] = ACTIONS(3087), + [anon_sym___thiscall] = ACTIONS(3087), + [anon_sym___vectorcall] = ACTIONS(3087), + [anon_sym_LBRACE] = ACTIONS(3089), + [anon_sym_signed] = ACTIONS(3087), + [anon_sym_unsigned] = ACTIONS(3087), + [anon_sym_long] = ACTIONS(3087), + [anon_sym_short] = ACTIONS(3087), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_register] = ACTIONS(3087), + [anon_sym_inline] = ACTIONS(3087), + [anon_sym___inline] = ACTIONS(3087), + [anon_sym___inline__] = ACTIONS(3087), + [anon_sym___forceinline] = ACTIONS(3087), + [anon_sym_thread_local] = ACTIONS(3087), + [anon_sym___thread] = ACTIONS(3087), + [anon_sym_const] = ACTIONS(3087), + [anon_sym_constexpr] = ACTIONS(3087), + [anon_sym_volatile] = ACTIONS(3087), + [anon_sym_restrict] = ACTIONS(3087), + [anon_sym___restrict__] = ACTIONS(3087), + [anon_sym__Atomic] = ACTIONS(3087), + [anon_sym__Noreturn] = ACTIONS(3087), + [anon_sym_noreturn] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [sym_primitive_type] = ACTIONS(3087), + [anon_sym_enum] = ACTIONS(3087), + [anon_sym_class] = ACTIONS(3087), + [anon_sym_struct] = ACTIONS(3087), + [anon_sym_union] = ACTIONS(3087), + [anon_sym_if] = ACTIONS(3087), + [anon_sym_else] = ACTIONS(3087), + [anon_sym_switch] = ACTIONS(3087), + [anon_sym_case] = ACTIONS(3087), + [anon_sym_default] = ACTIONS(3087), + [anon_sym_while] = ACTIONS(3087), + [anon_sym_do] = ACTIONS(3087), + [anon_sym_for] = ACTIONS(3087), + [anon_sym_return] = ACTIONS(3087), + [anon_sym_break] = ACTIONS(3087), + [anon_sym_continue] = ACTIONS(3087), + [anon_sym_goto] = ACTIONS(3087), + [anon_sym___try] = ACTIONS(3087), + [anon_sym___leave] = ACTIONS(3087), + [anon_sym_not] = ACTIONS(3087), + [anon_sym_compl] = ACTIONS(3087), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_sizeof] = ACTIONS(3087), + [anon_sym___alignof__] = ACTIONS(3087), + [anon_sym___alignof] = ACTIONS(3087), + [anon_sym__alignof] = ACTIONS(3087), + [anon_sym_alignof] = ACTIONS(3087), + [anon_sym__Alignof] = ACTIONS(3087), + [anon_sym_offsetof] = ACTIONS(3087), + [anon_sym__Generic] = ACTIONS(3087), + [anon_sym_asm] = ACTIONS(3087), + [anon_sym___asm__] = ACTIONS(3087), + [sym_number_literal] = ACTIONS(3089), + [anon_sym_L_SQUOTE] = ACTIONS(3089), + [anon_sym_u_SQUOTE] = ACTIONS(3089), + [anon_sym_U_SQUOTE] = ACTIONS(3089), + [anon_sym_u8_SQUOTE] = ACTIONS(3089), + [anon_sym_SQUOTE] = ACTIONS(3089), + [anon_sym_L_DQUOTE] = ACTIONS(3089), + [anon_sym_u_DQUOTE] = ACTIONS(3089), + [anon_sym_U_DQUOTE] = ACTIONS(3089), + [anon_sym_u8_DQUOTE] = ACTIONS(3089), + [anon_sym_DQUOTE] = ACTIONS(3089), + [sym_true] = ACTIONS(3087), + [sym_false] = ACTIONS(3087), + [anon_sym_NULL] = ACTIONS(3087), + [anon_sym_nullptr] = ACTIONS(3087), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym_explicit] = ACTIONS(3087), + [anon_sym_typename] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [anon_sym_try] = ACTIONS(3087), + [anon_sym_delete] = ACTIONS(3087), + [anon_sym_throw] = ACTIONS(3087), + [anon_sym_namespace] = ACTIONS(3087), + [anon_sym_using] = ACTIONS(3087), + [anon_sym_static_assert] = ACTIONS(3087), + [anon_sym_concept] = ACTIONS(3087), + [anon_sym_co_return] = ACTIONS(3087), + [anon_sym_co_yield] = ACTIONS(3087), + [anon_sym_R_DQUOTE] = ACTIONS(3089), + [anon_sym_LR_DQUOTE] = ACTIONS(3089), + [anon_sym_uR_DQUOTE] = ACTIONS(3089), + [anon_sym_UR_DQUOTE] = ACTIONS(3089), + [anon_sym_u8R_DQUOTE] = ACTIONS(3089), + [anon_sym_co_await] = ACTIONS(3087), + [anon_sym_new] = ACTIONS(3087), + [anon_sym_requires] = ACTIONS(3087), + [sym_this] = ACTIONS(3087), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3089), + [sym_semgrep_named_ellipsis] = ACTIONS(3089), + }, + [586] = { + [sym_identifier] = ACTIONS(3219), + [aux_sym_preproc_include_token1] = ACTIONS(3219), + [aux_sym_preproc_def_token1] = ACTIONS(3219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3221), + [aux_sym_preproc_if_token1] = ACTIONS(3219), + [aux_sym_preproc_if_token2] = ACTIONS(3219), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3219), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3219), + [sym_preproc_directive] = ACTIONS(3219), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_BANG] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_STAR] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_AMP] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3221), + [anon_sym___extension__] = ACTIONS(3219), + [anon_sym_typedef] = ACTIONS(3219), + [anon_sym_extern] = ACTIONS(3219), + [anon_sym___attribute__] = ACTIONS(3219), + [anon_sym_COLON_COLON] = ACTIONS(3221), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3221), + [anon_sym___declspec] = ACTIONS(3219), + [anon_sym___based] = ACTIONS(3219), + [anon_sym___cdecl] = ACTIONS(3219), + [anon_sym___clrcall] = ACTIONS(3219), + [anon_sym___stdcall] = ACTIONS(3219), + [anon_sym___fastcall] = ACTIONS(3219), + [anon_sym___thiscall] = ACTIONS(3219), + [anon_sym___vectorcall] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_signed] = ACTIONS(3219), + [anon_sym_unsigned] = ACTIONS(3219), + [anon_sym_long] = ACTIONS(3219), + [anon_sym_short] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_register] = ACTIONS(3219), + [anon_sym_inline] = ACTIONS(3219), + [anon_sym___inline] = ACTIONS(3219), + [anon_sym___inline__] = ACTIONS(3219), + [anon_sym___forceinline] = ACTIONS(3219), + [anon_sym_thread_local] = ACTIONS(3219), + [anon_sym___thread] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_constexpr] = ACTIONS(3219), + [anon_sym_volatile] = ACTIONS(3219), + [anon_sym_restrict] = ACTIONS(3219), + [anon_sym___restrict__] = ACTIONS(3219), + [anon_sym__Atomic] = ACTIONS(3219), + [anon_sym__Noreturn] = ACTIONS(3219), + [anon_sym_noreturn] = ACTIONS(3219), + [anon_sym_mutable] = ACTIONS(3219), + [anon_sym_constinit] = ACTIONS(3219), + [anon_sym_consteval] = ACTIONS(3219), + [sym_primitive_type] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_struct] = ACTIONS(3219), + [anon_sym_union] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_else] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_case] = ACTIONS(3219), + [anon_sym_default] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_goto] = ACTIONS(3219), + [anon_sym___try] = ACTIONS(3219), + [anon_sym___leave] = ACTIONS(3219), + [anon_sym_not] = ACTIONS(3219), + [anon_sym_compl] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_sizeof] = ACTIONS(3219), + [anon_sym___alignof__] = ACTIONS(3219), + [anon_sym___alignof] = ACTIONS(3219), + [anon_sym__alignof] = ACTIONS(3219), + [anon_sym_alignof] = ACTIONS(3219), + [anon_sym__Alignof] = ACTIONS(3219), + [anon_sym_offsetof] = ACTIONS(3219), + [anon_sym__Generic] = ACTIONS(3219), + [anon_sym_asm] = ACTIONS(3219), + [anon_sym___asm__] = ACTIONS(3219), + [sym_number_literal] = ACTIONS(3221), + [anon_sym_L_SQUOTE] = ACTIONS(3221), + [anon_sym_u_SQUOTE] = ACTIONS(3221), + [anon_sym_U_SQUOTE] = ACTIONS(3221), + [anon_sym_u8_SQUOTE] = ACTIONS(3221), + [anon_sym_SQUOTE] = ACTIONS(3221), + [anon_sym_L_DQUOTE] = ACTIONS(3221), + [anon_sym_u_DQUOTE] = ACTIONS(3221), + [anon_sym_U_DQUOTE] = ACTIONS(3221), + [anon_sym_u8_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [anon_sym_NULL] = ACTIONS(3219), + [anon_sym_nullptr] = ACTIONS(3219), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3219), + [anon_sym_decltype] = ACTIONS(3219), + [anon_sym_virtual] = ACTIONS(3219), + [anon_sym_alignas] = ACTIONS(3219), + [anon_sym_explicit] = ACTIONS(3219), + [anon_sym_typename] = ACTIONS(3219), + [anon_sym_template] = ACTIONS(3219), + [anon_sym_operator] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_delete] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_namespace] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_static_assert] = ACTIONS(3219), + [anon_sym_concept] = ACTIONS(3219), + [anon_sym_co_return] = ACTIONS(3219), + [anon_sym_co_yield] = ACTIONS(3219), + [anon_sym_R_DQUOTE] = ACTIONS(3221), + [anon_sym_LR_DQUOTE] = ACTIONS(3221), + [anon_sym_uR_DQUOTE] = ACTIONS(3221), + [anon_sym_UR_DQUOTE] = ACTIONS(3221), + [anon_sym_u8R_DQUOTE] = ACTIONS(3221), + [anon_sym_co_await] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_requires] = ACTIONS(3219), + [sym_this] = ACTIONS(3219), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3221), + [sym_semgrep_named_ellipsis] = ACTIONS(3221), + }, + [587] = { + [sym_identifier] = ACTIONS(3207), + [aux_sym_preproc_include_token1] = ACTIONS(3207), + [aux_sym_preproc_def_token1] = ACTIONS(3207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3209), + [aux_sym_preproc_if_token1] = ACTIONS(3207), + [aux_sym_preproc_if_token2] = ACTIONS(3207), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3207), + [sym_preproc_directive] = ACTIONS(3207), + [anon_sym_LPAREN2] = ACTIONS(3209), + [anon_sym_BANG] = ACTIONS(3209), + [anon_sym_TILDE] = ACTIONS(3209), + [anon_sym_DASH] = ACTIONS(3207), + [anon_sym_PLUS] = ACTIONS(3207), + [anon_sym_STAR] = ACTIONS(3209), + [anon_sym_AMP_AMP] = ACTIONS(3209), + [anon_sym_AMP] = ACTIONS(3207), + [anon_sym_SEMI] = ACTIONS(3209), + [anon_sym___extension__] = ACTIONS(3207), + [anon_sym_typedef] = ACTIONS(3207), + [anon_sym_extern] = ACTIONS(3207), + [anon_sym___attribute__] = ACTIONS(3207), + [anon_sym_COLON_COLON] = ACTIONS(3209), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3209), + [anon_sym___declspec] = ACTIONS(3207), + [anon_sym___based] = ACTIONS(3207), + [anon_sym___cdecl] = ACTIONS(3207), + [anon_sym___clrcall] = ACTIONS(3207), + [anon_sym___stdcall] = ACTIONS(3207), + [anon_sym___fastcall] = ACTIONS(3207), + [anon_sym___thiscall] = ACTIONS(3207), + [anon_sym___vectorcall] = ACTIONS(3207), + [anon_sym_LBRACE] = ACTIONS(3209), + [anon_sym_signed] = ACTIONS(3207), + [anon_sym_unsigned] = ACTIONS(3207), + [anon_sym_long] = ACTIONS(3207), + [anon_sym_short] = ACTIONS(3207), + [anon_sym_LBRACK] = ACTIONS(3207), + [anon_sym_static] = ACTIONS(3207), + [anon_sym_register] = ACTIONS(3207), + [anon_sym_inline] = ACTIONS(3207), + [anon_sym___inline] = ACTIONS(3207), + [anon_sym___inline__] = ACTIONS(3207), + [anon_sym___forceinline] = ACTIONS(3207), + [anon_sym_thread_local] = ACTIONS(3207), + [anon_sym___thread] = ACTIONS(3207), + [anon_sym_const] = ACTIONS(3207), + [anon_sym_constexpr] = ACTIONS(3207), + [anon_sym_volatile] = ACTIONS(3207), + [anon_sym_restrict] = ACTIONS(3207), + [anon_sym___restrict__] = ACTIONS(3207), + [anon_sym__Atomic] = ACTIONS(3207), + [anon_sym__Noreturn] = ACTIONS(3207), + [anon_sym_noreturn] = ACTIONS(3207), + [anon_sym_mutable] = ACTIONS(3207), + [anon_sym_constinit] = ACTIONS(3207), + [anon_sym_consteval] = ACTIONS(3207), + [sym_primitive_type] = ACTIONS(3207), + [anon_sym_enum] = ACTIONS(3207), + [anon_sym_class] = ACTIONS(3207), + [anon_sym_struct] = ACTIONS(3207), + [anon_sym_union] = ACTIONS(3207), + [anon_sym_if] = ACTIONS(3207), + [anon_sym_else] = ACTIONS(3207), + [anon_sym_switch] = ACTIONS(3207), + [anon_sym_case] = ACTIONS(3207), + [anon_sym_default] = ACTIONS(3207), + [anon_sym_while] = ACTIONS(3207), + [anon_sym_do] = ACTIONS(3207), + [anon_sym_for] = ACTIONS(3207), + [anon_sym_return] = ACTIONS(3207), + [anon_sym_break] = ACTIONS(3207), + [anon_sym_continue] = ACTIONS(3207), + [anon_sym_goto] = ACTIONS(3207), + [anon_sym___try] = ACTIONS(3207), + [anon_sym___leave] = ACTIONS(3207), + [anon_sym_not] = ACTIONS(3207), + [anon_sym_compl] = ACTIONS(3207), + [anon_sym_DASH_DASH] = ACTIONS(3209), + [anon_sym_PLUS_PLUS] = ACTIONS(3209), + [anon_sym_sizeof] = ACTIONS(3207), + [anon_sym___alignof__] = ACTIONS(3207), + [anon_sym___alignof] = ACTIONS(3207), + [anon_sym__alignof] = ACTIONS(3207), + [anon_sym_alignof] = ACTIONS(3207), + [anon_sym__Alignof] = ACTIONS(3207), + [anon_sym_offsetof] = ACTIONS(3207), + [anon_sym__Generic] = ACTIONS(3207), + [anon_sym_asm] = ACTIONS(3207), + [anon_sym___asm__] = ACTIONS(3207), + [sym_number_literal] = ACTIONS(3209), + [anon_sym_L_SQUOTE] = ACTIONS(3209), + [anon_sym_u_SQUOTE] = ACTIONS(3209), + [anon_sym_U_SQUOTE] = ACTIONS(3209), + [anon_sym_u8_SQUOTE] = ACTIONS(3209), + [anon_sym_SQUOTE] = ACTIONS(3209), + [anon_sym_L_DQUOTE] = ACTIONS(3209), + [anon_sym_u_DQUOTE] = ACTIONS(3209), + [anon_sym_U_DQUOTE] = ACTIONS(3209), + [anon_sym_u8_DQUOTE] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3209), + [sym_true] = ACTIONS(3207), + [sym_false] = ACTIONS(3207), + [anon_sym_NULL] = ACTIONS(3207), + [anon_sym_nullptr] = ACTIONS(3207), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3207), + [anon_sym_decltype] = ACTIONS(3207), + [anon_sym_virtual] = ACTIONS(3207), + [anon_sym_alignas] = ACTIONS(3207), + [anon_sym_explicit] = ACTIONS(3207), + [anon_sym_typename] = ACTIONS(3207), + [anon_sym_template] = ACTIONS(3207), + [anon_sym_operator] = ACTIONS(3207), + [anon_sym_try] = ACTIONS(3207), + [anon_sym_delete] = ACTIONS(3207), + [anon_sym_throw] = ACTIONS(3207), + [anon_sym_namespace] = ACTIONS(3207), + [anon_sym_using] = ACTIONS(3207), + [anon_sym_static_assert] = ACTIONS(3207), + [anon_sym_concept] = ACTIONS(3207), + [anon_sym_co_return] = ACTIONS(3207), + [anon_sym_co_yield] = ACTIONS(3207), + [anon_sym_R_DQUOTE] = ACTIONS(3209), + [anon_sym_LR_DQUOTE] = ACTIONS(3209), + [anon_sym_uR_DQUOTE] = ACTIONS(3209), + [anon_sym_UR_DQUOTE] = ACTIONS(3209), + [anon_sym_u8R_DQUOTE] = ACTIONS(3209), + [anon_sym_co_await] = ACTIONS(3207), + [anon_sym_new] = ACTIONS(3207), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3207), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3209), + [sym_semgrep_named_ellipsis] = ACTIONS(3209), + }, + [588] = { + [sym_identifier] = ACTIONS(3079), + [aux_sym_preproc_include_token1] = ACTIONS(3079), + [aux_sym_preproc_def_token1] = ACTIONS(3079), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3081), + [aux_sym_preproc_if_token1] = ACTIONS(3079), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3079), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3079), + [sym_preproc_directive] = ACTIONS(3079), + [anon_sym_LPAREN2] = ACTIONS(3081), + [anon_sym_BANG] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(3079), + [anon_sym_STAR] = ACTIONS(3081), + [anon_sym_AMP_AMP] = ACTIONS(3081), + [anon_sym_AMP] = ACTIONS(3079), + [anon_sym_SEMI] = ACTIONS(3081), + [anon_sym___extension__] = ACTIONS(3079), + [anon_sym_typedef] = ACTIONS(3079), + [anon_sym_extern] = ACTIONS(3079), + [anon_sym___attribute__] = ACTIONS(3079), + [anon_sym_COLON_COLON] = ACTIONS(3081), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3081), + [anon_sym___declspec] = ACTIONS(3079), + [anon_sym___based] = ACTIONS(3079), + [anon_sym___cdecl] = ACTIONS(3079), + [anon_sym___clrcall] = ACTIONS(3079), + [anon_sym___stdcall] = ACTIONS(3079), + [anon_sym___fastcall] = ACTIONS(3079), + [anon_sym___thiscall] = ACTIONS(3079), + [anon_sym___vectorcall] = ACTIONS(3079), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_RBRACE] = ACTIONS(3081), + [anon_sym_signed] = ACTIONS(3079), + [anon_sym_unsigned] = ACTIONS(3079), + [anon_sym_long] = ACTIONS(3079), + [anon_sym_short] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3079), + [anon_sym_static] = ACTIONS(3079), + [anon_sym_register] = ACTIONS(3079), + [anon_sym_inline] = ACTIONS(3079), + [anon_sym___inline] = ACTIONS(3079), + [anon_sym___inline__] = ACTIONS(3079), + [anon_sym___forceinline] = ACTIONS(3079), + [anon_sym_thread_local] = ACTIONS(3079), + [anon_sym___thread] = ACTIONS(3079), + [anon_sym_const] = ACTIONS(3079), + [anon_sym_constexpr] = ACTIONS(3079), + [anon_sym_volatile] = ACTIONS(3079), + [anon_sym_restrict] = ACTIONS(3079), + [anon_sym___restrict__] = ACTIONS(3079), + [anon_sym__Atomic] = ACTIONS(3079), + [anon_sym__Noreturn] = ACTIONS(3079), + [anon_sym_noreturn] = ACTIONS(3079), + [anon_sym_mutable] = ACTIONS(3079), + [anon_sym_constinit] = ACTIONS(3079), + [anon_sym_consteval] = ACTIONS(3079), + [sym_primitive_type] = ACTIONS(3079), + [anon_sym_enum] = ACTIONS(3079), + [anon_sym_class] = ACTIONS(3079), + [anon_sym_struct] = ACTIONS(3079), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_if] = ACTIONS(3079), + [anon_sym_else] = ACTIONS(3079), + [anon_sym_switch] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3079), + [anon_sym_default] = ACTIONS(3079), + [anon_sym_while] = ACTIONS(3079), + [anon_sym_do] = ACTIONS(3079), + [anon_sym_for] = ACTIONS(3079), + [anon_sym_return] = ACTIONS(3079), + [anon_sym_break] = ACTIONS(3079), + [anon_sym_continue] = ACTIONS(3079), + [anon_sym_goto] = ACTIONS(3079), + [anon_sym___try] = ACTIONS(3079), + [anon_sym___leave] = ACTIONS(3079), + [anon_sym_not] = ACTIONS(3079), + [anon_sym_compl] = ACTIONS(3079), + [anon_sym_DASH_DASH] = ACTIONS(3081), + [anon_sym_PLUS_PLUS] = ACTIONS(3081), + [anon_sym_sizeof] = ACTIONS(3079), + [anon_sym___alignof__] = ACTIONS(3079), + [anon_sym___alignof] = ACTIONS(3079), + [anon_sym__alignof] = ACTIONS(3079), + [anon_sym_alignof] = ACTIONS(3079), + [anon_sym__Alignof] = ACTIONS(3079), + [anon_sym_offsetof] = ACTIONS(3079), + [anon_sym__Generic] = ACTIONS(3079), + [anon_sym_asm] = ACTIONS(3079), + [anon_sym___asm__] = ACTIONS(3079), + [sym_number_literal] = ACTIONS(3081), + [anon_sym_L_SQUOTE] = ACTIONS(3081), + [anon_sym_u_SQUOTE] = ACTIONS(3081), + [anon_sym_U_SQUOTE] = ACTIONS(3081), + [anon_sym_u8_SQUOTE] = ACTIONS(3081), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_L_DQUOTE] = ACTIONS(3081), + [anon_sym_u_DQUOTE] = ACTIONS(3081), + [anon_sym_U_DQUOTE] = ACTIONS(3081), + [anon_sym_u8_DQUOTE] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(3081), + [sym_true] = ACTIONS(3079), + [sym_false] = ACTIONS(3079), + [anon_sym_NULL] = ACTIONS(3079), + [anon_sym_nullptr] = ACTIONS(3079), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3079), + [anon_sym_decltype] = ACTIONS(3079), + [anon_sym_virtual] = ACTIONS(3079), + [anon_sym_alignas] = ACTIONS(3079), + [anon_sym_explicit] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3079), + [anon_sym_template] = ACTIONS(3079), + [anon_sym_operator] = ACTIONS(3079), + [anon_sym_try] = ACTIONS(3079), + [anon_sym_delete] = ACTIONS(3079), + [anon_sym_throw] = ACTIONS(3079), + [anon_sym_namespace] = ACTIONS(3079), + [anon_sym_using] = ACTIONS(3079), + [anon_sym_static_assert] = ACTIONS(3079), + [anon_sym_concept] = ACTIONS(3079), + [anon_sym_co_return] = ACTIONS(3079), + [anon_sym_co_yield] = ACTIONS(3079), + [anon_sym_R_DQUOTE] = ACTIONS(3081), + [anon_sym_LR_DQUOTE] = ACTIONS(3081), + [anon_sym_uR_DQUOTE] = ACTIONS(3081), + [anon_sym_UR_DQUOTE] = ACTIONS(3081), + [anon_sym_u8R_DQUOTE] = ACTIONS(3081), + [anon_sym_co_await] = ACTIONS(3079), + [anon_sym_new] = ACTIONS(3079), + [anon_sym_requires] = ACTIONS(3079), + [sym_this] = ACTIONS(3079), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3081), + [sym_semgrep_named_ellipsis] = ACTIONS(3081), + }, + [589] = { + [ts_builtin_sym_end] = ACTIONS(3085), + [sym_identifier] = ACTIONS(3083), + [aux_sym_preproc_include_token1] = ACTIONS(3083), + [aux_sym_preproc_def_token1] = ACTIONS(3083), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3085), + [aux_sym_preproc_if_token1] = ACTIONS(3083), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3083), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3083), + [sym_preproc_directive] = ACTIONS(3083), + [anon_sym_LPAREN2] = ACTIONS(3085), + [anon_sym_BANG] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3085), + [anon_sym_DASH] = ACTIONS(3083), + [anon_sym_PLUS] = ACTIONS(3083), + [anon_sym_STAR] = ACTIONS(3085), + [anon_sym_AMP_AMP] = ACTIONS(3085), + [anon_sym_AMP] = ACTIONS(3083), + [anon_sym_SEMI] = ACTIONS(3085), + [anon_sym___extension__] = ACTIONS(3083), + [anon_sym_typedef] = ACTIONS(3083), + [anon_sym_extern] = ACTIONS(3083), + [anon_sym___attribute__] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(3085), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3085), + [anon_sym___declspec] = ACTIONS(3083), + [anon_sym___based] = ACTIONS(3083), + [anon_sym___cdecl] = ACTIONS(3083), + [anon_sym___clrcall] = ACTIONS(3083), + [anon_sym___stdcall] = ACTIONS(3083), + [anon_sym___fastcall] = ACTIONS(3083), + [anon_sym___thiscall] = ACTIONS(3083), + [anon_sym___vectorcall] = ACTIONS(3083), + [anon_sym_LBRACE] = ACTIONS(3085), + [anon_sym_signed] = ACTIONS(3083), + [anon_sym_unsigned] = ACTIONS(3083), + [anon_sym_long] = ACTIONS(3083), + [anon_sym_short] = ACTIONS(3083), + [anon_sym_LBRACK] = ACTIONS(3083), + [anon_sym_static] = ACTIONS(3083), + [anon_sym_register] = ACTIONS(3083), + [anon_sym_inline] = ACTIONS(3083), + [anon_sym___inline] = ACTIONS(3083), + [anon_sym___inline__] = ACTIONS(3083), + [anon_sym___forceinline] = ACTIONS(3083), + [anon_sym_thread_local] = ACTIONS(3083), + [anon_sym___thread] = ACTIONS(3083), + [anon_sym_const] = ACTIONS(3083), + [anon_sym_constexpr] = ACTIONS(3083), + [anon_sym_volatile] = ACTIONS(3083), + [anon_sym_restrict] = ACTIONS(3083), + [anon_sym___restrict__] = ACTIONS(3083), + [anon_sym__Atomic] = ACTIONS(3083), + [anon_sym__Noreturn] = ACTIONS(3083), + [anon_sym_noreturn] = ACTIONS(3083), + [anon_sym_mutable] = ACTIONS(3083), + [anon_sym_constinit] = ACTIONS(3083), + [anon_sym_consteval] = ACTIONS(3083), + [sym_primitive_type] = ACTIONS(3083), + [anon_sym_enum] = ACTIONS(3083), + [anon_sym_class] = ACTIONS(3083), + [anon_sym_struct] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(3083), + [anon_sym_if] = ACTIONS(3083), + [anon_sym_else] = ACTIONS(3083), + [anon_sym_switch] = ACTIONS(3083), + [anon_sym_case] = ACTIONS(3083), + [anon_sym_default] = ACTIONS(3083), + [anon_sym_while] = ACTIONS(3083), + [anon_sym_do] = ACTIONS(3083), + [anon_sym_for] = ACTIONS(3083), + [anon_sym_return] = ACTIONS(3083), + [anon_sym_break] = ACTIONS(3083), + [anon_sym_continue] = ACTIONS(3083), + [anon_sym_goto] = ACTIONS(3083), + [anon_sym___try] = ACTIONS(3083), + [anon_sym___leave] = ACTIONS(3083), + [anon_sym_not] = ACTIONS(3083), + [anon_sym_compl] = ACTIONS(3083), + [anon_sym_DASH_DASH] = ACTIONS(3085), + [anon_sym_PLUS_PLUS] = ACTIONS(3085), + [anon_sym_sizeof] = ACTIONS(3083), + [anon_sym___alignof__] = ACTIONS(3083), + [anon_sym___alignof] = ACTIONS(3083), + [anon_sym__alignof] = ACTIONS(3083), + [anon_sym_alignof] = ACTIONS(3083), + [anon_sym__Alignof] = ACTIONS(3083), + [anon_sym_offsetof] = ACTIONS(3083), + [anon_sym__Generic] = ACTIONS(3083), + [anon_sym_asm] = ACTIONS(3083), + [anon_sym___asm__] = ACTIONS(3083), + [sym_number_literal] = ACTIONS(3085), + [anon_sym_L_SQUOTE] = ACTIONS(3085), + [anon_sym_u_SQUOTE] = ACTIONS(3085), + [anon_sym_U_SQUOTE] = ACTIONS(3085), + [anon_sym_u8_SQUOTE] = ACTIONS(3085), + [anon_sym_SQUOTE] = ACTIONS(3085), + [anon_sym_L_DQUOTE] = ACTIONS(3085), + [anon_sym_u_DQUOTE] = ACTIONS(3085), + [anon_sym_U_DQUOTE] = ACTIONS(3085), + [anon_sym_u8_DQUOTE] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(3085), + [sym_true] = ACTIONS(3083), + [sym_false] = ACTIONS(3083), + [anon_sym_NULL] = ACTIONS(3083), + [anon_sym_nullptr] = ACTIONS(3083), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3083), + [anon_sym_decltype] = ACTIONS(3083), + [anon_sym_virtual] = ACTIONS(3083), + [anon_sym_alignas] = ACTIONS(3083), + [anon_sym_explicit] = ACTIONS(3083), + [anon_sym_typename] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(3083), + [anon_sym_operator] = ACTIONS(3083), + [anon_sym_try] = ACTIONS(3083), + [anon_sym_delete] = ACTIONS(3083), + [anon_sym_throw] = ACTIONS(3083), + [anon_sym_namespace] = ACTIONS(3083), + [anon_sym_using] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(3083), + [anon_sym_concept] = ACTIONS(3083), + [anon_sym_co_return] = ACTIONS(3083), + [anon_sym_co_yield] = ACTIONS(3083), + [anon_sym_R_DQUOTE] = ACTIONS(3085), + [anon_sym_LR_DQUOTE] = ACTIONS(3085), + [anon_sym_uR_DQUOTE] = ACTIONS(3085), + [anon_sym_UR_DQUOTE] = ACTIONS(3085), + [anon_sym_u8R_DQUOTE] = ACTIONS(3085), + [anon_sym_co_await] = ACTIONS(3083), + [anon_sym_new] = ACTIONS(3083), + [anon_sym_requires] = ACTIONS(3083), + [sym_this] = ACTIONS(3083), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3085), + [sym_semgrep_named_ellipsis] = ACTIONS(3085), + }, + [590] = { + [sym_identifier] = ACTIONS(3087), + [aux_sym_preproc_include_token1] = ACTIONS(3087), + [aux_sym_preproc_def_token1] = ACTIONS(3087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [aux_sym_preproc_if_token1] = ACTIONS(3087), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3087), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3087), + [sym_preproc_directive] = ACTIONS(3087), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_BANG] = ACTIONS(3089), + [anon_sym_TILDE] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3087), + [anon_sym_STAR] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_typedef] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3089), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3089), + [anon_sym___declspec] = ACTIONS(3087), + [anon_sym___based] = ACTIONS(3087), + [anon_sym___cdecl] = ACTIONS(3087), + [anon_sym___clrcall] = ACTIONS(3087), + [anon_sym___stdcall] = ACTIONS(3087), + [anon_sym___fastcall] = ACTIONS(3087), + [anon_sym___thiscall] = ACTIONS(3087), + [anon_sym___vectorcall] = ACTIONS(3087), + [anon_sym_LBRACE] = ACTIONS(3089), + [anon_sym_RBRACE] = ACTIONS(3089), + [anon_sym_signed] = ACTIONS(3087), + [anon_sym_unsigned] = ACTIONS(3087), + [anon_sym_long] = ACTIONS(3087), + [anon_sym_short] = ACTIONS(3087), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_register] = ACTIONS(3087), + [anon_sym_inline] = ACTIONS(3087), + [anon_sym___inline] = ACTIONS(3087), + [anon_sym___inline__] = ACTIONS(3087), + [anon_sym___forceinline] = ACTIONS(3087), + [anon_sym_thread_local] = ACTIONS(3087), + [anon_sym___thread] = ACTIONS(3087), + [anon_sym_const] = ACTIONS(3087), + [anon_sym_constexpr] = ACTIONS(3087), + [anon_sym_volatile] = ACTIONS(3087), + [anon_sym_restrict] = ACTIONS(3087), + [anon_sym___restrict__] = ACTIONS(3087), + [anon_sym__Atomic] = ACTIONS(3087), + [anon_sym__Noreturn] = ACTIONS(3087), + [anon_sym_noreturn] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [sym_primitive_type] = ACTIONS(3087), + [anon_sym_enum] = ACTIONS(3087), + [anon_sym_class] = ACTIONS(3087), + [anon_sym_struct] = ACTIONS(3087), + [anon_sym_union] = ACTIONS(3087), + [anon_sym_if] = ACTIONS(3087), + [anon_sym_else] = ACTIONS(3087), + [anon_sym_switch] = ACTIONS(3087), + [anon_sym_case] = ACTIONS(3087), + [anon_sym_default] = ACTIONS(3087), + [anon_sym_while] = ACTIONS(3087), + [anon_sym_do] = ACTIONS(3087), + [anon_sym_for] = ACTIONS(3087), + [anon_sym_return] = ACTIONS(3087), + [anon_sym_break] = ACTIONS(3087), + [anon_sym_continue] = ACTIONS(3087), + [anon_sym_goto] = ACTIONS(3087), + [anon_sym___try] = ACTIONS(3087), + [anon_sym___leave] = ACTIONS(3087), + [anon_sym_not] = ACTIONS(3087), + [anon_sym_compl] = ACTIONS(3087), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_sizeof] = ACTIONS(3087), + [anon_sym___alignof__] = ACTIONS(3087), + [anon_sym___alignof] = ACTIONS(3087), + [anon_sym__alignof] = ACTIONS(3087), + [anon_sym_alignof] = ACTIONS(3087), + [anon_sym__Alignof] = ACTIONS(3087), + [anon_sym_offsetof] = ACTIONS(3087), + [anon_sym__Generic] = ACTIONS(3087), + [anon_sym_asm] = ACTIONS(3087), + [anon_sym___asm__] = ACTIONS(3087), + [sym_number_literal] = ACTIONS(3089), + [anon_sym_L_SQUOTE] = ACTIONS(3089), + [anon_sym_u_SQUOTE] = ACTIONS(3089), + [anon_sym_U_SQUOTE] = ACTIONS(3089), + [anon_sym_u8_SQUOTE] = ACTIONS(3089), + [anon_sym_SQUOTE] = ACTIONS(3089), + [anon_sym_L_DQUOTE] = ACTIONS(3089), + [anon_sym_u_DQUOTE] = ACTIONS(3089), + [anon_sym_U_DQUOTE] = ACTIONS(3089), + [anon_sym_u8_DQUOTE] = ACTIONS(3089), + [anon_sym_DQUOTE] = ACTIONS(3089), + [sym_true] = ACTIONS(3087), + [sym_false] = ACTIONS(3087), + [anon_sym_NULL] = ACTIONS(3087), + [anon_sym_nullptr] = ACTIONS(3087), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym_explicit] = ACTIONS(3087), + [anon_sym_typename] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [anon_sym_try] = ACTIONS(3087), + [anon_sym_delete] = ACTIONS(3087), + [anon_sym_throw] = ACTIONS(3087), + [anon_sym_namespace] = ACTIONS(3087), + [anon_sym_using] = ACTIONS(3087), + [anon_sym_static_assert] = ACTIONS(3087), + [anon_sym_concept] = ACTIONS(3087), + [anon_sym_co_return] = ACTIONS(3087), + [anon_sym_co_yield] = ACTIONS(3087), + [anon_sym_R_DQUOTE] = ACTIONS(3089), + [anon_sym_LR_DQUOTE] = ACTIONS(3089), + [anon_sym_uR_DQUOTE] = ACTIONS(3089), + [anon_sym_UR_DQUOTE] = ACTIONS(3089), + [anon_sym_u8R_DQUOTE] = ACTIONS(3089), + [anon_sym_co_await] = ACTIONS(3087), + [anon_sym_new] = ACTIONS(3087), + [anon_sym_requires] = ACTIONS(3087), + [sym_this] = ACTIONS(3087), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3089), + [sym_semgrep_named_ellipsis] = ACTIONS(3089), + }, + [591] = { + [ts_builtin_sym_end] = ACTIONS(3093), + [sym_identifier] = ACTIONS(3091), + [aux_sym_preproc_include_token1] = ACTIONS(3091), + [aux_sym_preproc_def_token1] = ACTIONS(3091), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3093), + [aux_sym_preproc_if_token1] = ACTIONS(3091), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3091), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3091), + [sym_preproc_directive] = ACTIONS(3091), + [anon_sym_LPAREN2] = ACTIONS(3093), + [anon_sym_BANG] = ACTIONS(3093), + [anon_sym_TILDE] = ACTIONS(3093), + [anon_sym_DASH] = ACTIONS(3091), + [anon_sym_PLUS] = ACTIONS(3091), + [anon_sym_STAR] = ACTIONS(3093), + [anon_sym_AMP_AMP] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym___extension__] = ACTIONS(3091), + [anon_sym_typedef] = ACTIONS(3091), + [anon_sym_extern] = ACTIONS(3091), + [anon_sym___attribute__] = ACTIONS(3091), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3093), + [anon_sym___declspec] = ACTIONS(3091), + [anon_sym___based] = ACTIONS(3091), + [anon_sym___cdecl] = ACTIONS(3091), + [anon_sym___clrcall] = ACTIONS(3091), + [anon_sym___stdcall] = ACTIONS(3091), + [anon_sym___fastcall] = ACTIONS(3091), + [anon_sym___thiscall] = ACTIONS(3091), + [anon_sym___vectorcall] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_signed] = ACTIONS(3091), + [anon_sym_unsigned] = ACTIONS(3091), + [anon_sym_long] = ACTIONS(3091), + [anon_sym_short] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_static] = ACTIONS(3091), + [anon_sym_register] = ACTIONS(3091), + [anon_sym_inline] = ACTIONS(3091), + [anon_sym___inline] = ACTIONS(3091), + [anon_sym___inline__] = ACTIONS(3091), + [anon_sym___forceinline] = ACTIONS(3091), + [anon_sym_thread_local] = ACTIONS(3091), + [anon_sym___thread] = ACTIONS(3091), + [anon_sym_const] = ACTIONS(3091), + [anon_sym_constexpr] = ACTIONS(3091), + [anon_sym_volatile] = ACTIONS(3091), + [anon_sym_restrict] = ACTIONS(3091), + [anon_sym___restrict__] = ACTIONS(3091), + [anon_sym__Atomic] = ACTIONS(3091), + [anon_sym__Noreturn] = ACTIONS(3091), + [anon_sym_noreturn] = ACTIONS(3091), + [anon_sym_mutable] = ACTIONS(3091), + [anon_sym_constinit] = ACTIONS(3091), + [anon_sym_consteval] = ACTIONS(3091), + [sym_primitive_type] = ACTIONS(3091), + [anon_sym_enum] = ACTIONS(3091), + [anon_sym_class] = ACTIONS(3091), + [anon_sym_struct] = ACTIONS(3091), + [anon_sym_union] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3091), + [anon_sym_else] = ACTIONS(3091), + [anon_sym_switch] = ACTIONS(3091), + [anon_sym_case] = ACTIONS(3091), + [anon_sym_default] = ACTIONS(3091), + [anon_sym_while] = ACTIONS(3091), + [anon_sym_do] = ACTIONS(3091), + [anon_sym_for] = ACTIONS(3091), + [anon_sym_return] = ACTIONS(3091), + [anon_sym_break] = ACTIONS(3091), + [anon_sym_continue] = ACTIONS(3091), + [anon_sym_goto] = ACTIONS(3091), + [anon_sym___try] = ACTIONS(3091), + [anon_sym___leave] = ACTIONS(3091), + [anon_sym_not] = ACTIONS(3091), + [anon_sym_compl] = ACTIONS(3091), + [anon_sym_DASH_DASH] = ACTIONS(3093), + [anon_sym_PLUS_PLUS] = ACTIONS(3093), + [anon_sym_sizeof] = ACTIONS(3091), + [anon_sym___alignof__] = ACTIONS(3091), + [anon_sym___alignof] = ACTIONS(3091), + [anon_sym__alignof] = ACTIONS(3091), + [anon_sym_alignof] = ACTIONS(3091), + [anon_sym__Alignof] = ACTIONS(3091), + [anon_sym_offsetof] = ACTIONS(3091), + [anon_sym__Generic] = ACTIONS(3091), + [anon_sym_asm] = ACTIONS(3091), + [anon_sym___asm__] = ACTIONS(3091), + [sym_number_literal] = ACTIONS(3093), + [anon_sym_L_SQUOTE] = ACTIONS(3093), + [anon_sym_u_SQUOTE] = ACTIONS(3093), + [anon_sym_U_SQUOTE] = ACTIONS(3093), + [anon_sym_u8_SQUOTE] = ACTIONS(3093), + [anon_sym_SQUOTE] = ACTIONS(3093), + [anon_sym_L_DQUOTE] = ACTIONS(3093), + [anon_sym_u_DQUOTE] = ACTIONS(3093), + [anon_sym_U_DQUOTE] = ACTIONS(3093), + [anon_sym_u8_DQUOTE] = ACTIONS(3093), + [anon_sym_DQUOTE] = ACTIONS(3093), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [anon_sym_NULL] = ACTIONS(3091), + [anon_sym_nullptr] = ACTIONS(3091), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3091), + [anon_sym_decltype] = ACTIONS(3091), + [anon_sym_virtual] = ACTIONS(3091), + [anon_sym_alignas] = ACTIONS(3091), + [anon_sym_explicit] = ACTIONS(3091), + [anon_sym_typename] = ACTIONS(3091), + [anon_sym_template] = ACTIONS(3091), + [anon_sym_operator] = ACTIONS(3091), + [anon_sym_try] = ACTIONS(3091), + [anon_sym_delete] = ACTIONS(3091), + [anon_sym_throw] = ACTIONS(3091), + [anon_sym_namespace] = ACTIONS(3091), + [anon_sym_using] = ACTIONS(3091), + [anon_sym_static_assert] = ACTIONS(3091), + [anon_sym_concept] = ACTIONS(3091), + [anon_sym_co_return] = ACTIONS(3091), + [anon_sym_co_yield] = ACTIONS(3091), + [anon_sym_R_DQUOTE] = ACTIONS(3093), + [anon_sym_LR_DQUOTE] = ACTIONS(3093), + [anon_sym_uR_DQUOTE] = ACTIONS(3093), + [anon_sym_UR_DQUOTE] = ACTIONS(3093), + [anon_sym_u8R_DQUOTE] = ACTIONS(3093), + [anon_sym_co_await] = ACTIONS(3091), + [anon_sym_new] = ACTIONS(3091), + [anon_sym_requires] = ACTIONS(3091), + [sym_this] = ACTIONS(3091), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3093), + [sym_semgrep_named_ellipsis] = ACTIONS(3093), + }, + [592] = { + [sym_identifier] = ACTIONS(3095), + [aux_sym_preproc_include_token1] = ACTIONS(3095), + [aux_sym_preproc_def_token1] = ACTIONS(3095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3097), + [aux_sym_preproc_if_token1] = ACTIONS(3095), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3095), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3095), + [sym_preproc_directive] = ACTIONS(3095), + [anon_sym_LPAREN2] = ACTIONS(3097), + [anon_sym_BANG] = ACTIONS(3097), + [anon_sym_TILDE] = ACTIONS(3097), + [anon_sym_DASH] = ACTIONS(3095), + [anon_sym_PLUS] = ACTIONS(3095), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_AMP_AMP] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3095), + [anon_sym_SEMI] = ACTIONS(3097), + [anon_sym___extension__] = ACTIONS(3095), + [anon_sym_typedef] = ACTIONS(3095), + [anon_sym_extern] = ACTIONS(3095), + [anon_sym___attribute__] = ACTIONS(3095), + [anon_sym_COLON_COLON] = ACTIONS(3097), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3097), + [anon_sym___declspec] = ACTIONS(3095), + [anon_sym___based] = ACTIONS(3095), + [anon_sym___cdecl] = ACTIONS(3095), + [anon_sym___clrcall] = ACTIONS(3095), + [anon_sym___stdcall] = ACTIONS(3095), + [anon_sym___fastcall] = ACTIONS(3095), + [anon_sym___thiscall] = ACTIONS(3095), + [anon_sym___vectorcall] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_RBRACE] = ACTIONS(3097), + [anon_sym_signed] = ACTIONS(3095), + [anon_sym_unsigned] = ACTIONS(3095), + [anon_sym_long] = ACTIONS(3095), + [anon_sym_short] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3095), + [anon_sym_static] = ACTIONS(3095), + [anon_sym_register] = ACTIONS(3095), + [anon_sym_inline] = ACTIONS(3095), + [anon_sym___inline] = ACTIONS(3095), + [anon_sym___inline__] = ACTIONS(3095), + [anon_sym___forceinline] = ACTIONS(3095), + [anon_sym_thread_local] = ACTIONS(3095), + [anon_sym___thread] = ACTIONS(3095), + [anon_sym_const] = ACTIONS(3095), + [anon_sym_constexpr] = ACTIONS(3095), + [anon_sym_volatile] = ACTIONS(3095), + [anon_sym_restrict] = ACTIONS(3095), + [anon_sym___restrict__] = ACTIONS(3095), + [anon_sym__Atomic] = ACTIONS(3095), + [anon_sym__Noreturn] = ACTIONS(3095), + [anon_sym_noreturn] = ACTIONS(3095), + [anon_sym_mutable] = ACTIONS(3095), + [anon_sym_constinit] = ACTIONS(3095), + [anon_sym_consteval] = ACTIONS(3095), + [sym_primitive_type] = ACTIONS(3095), + [anon_sym_enum] = ACTIONS(3095), + [anon_sym_class] = ACTIONS(3095), + [anon_sym_struct] = ACTIONS(3095), + [anon_sym_union] = ACTIONS(3095), + [anon_sym_if] = ACTIONS(3095), + [anon_sym_else] = ACTIONS(3095), + [anon_sym_switch] = ACTIONS(3095), + [anon_sym_case] = ACTIONS(3095), + [anon_sym_default] = ACTIONS(3095), + [anon_sym_while] = ACTIONS(3095), + [anon_sym_do] = ACTIONS(3095), + [anon_sym_for] = ACTIONS(3095), + [anon_sym_return] = ACTIONS(3095), + [anon_sym_break] = ACTIONS(3095), + [anon_sym_continue] = ACTIONS(3095), + [anon_sym_goto] = ACTIONS(3095), + [anon_sym___try] = ACTIONS(3095), + [anon_sym___leave] = ACTIONS(3095), + [anon_sym_not] = ACTIONS(3095), + [anon_sym_compl] = ACTIONS(3095), + [anon_sym_DASH_DASH] = ACTIONS(3097), + [anon_sym_PLUS_PLUS] = ACTIONS(3097), + [anon_sym_sizeof] = ACTIONS(3095), + [anon_sym___alignof__] = ACTIONS(3095), + [anon_sym___alignof] = ACTIONS(3095), + [anon_sym__alignof] = ACTIONS(3095), + [anon_sym_alignof] = ACTIONS(3095), + [anon_sym__Alignof] = ACTIONS(3095), + [anon_sym_offsetof] = ACTIONS(3095), + [anon_sym__Generic] = ACTIONS(3095), + [anon_sym_asm] = ACTIONS(3095), + [anon_sym___asm__] = ACTIONS(3095), + [sym_number_literal] = ACTIONS(3097), + [anon_sym_L_SQUOTE] = ACTIONS(3097), + [anon_sym_u_SQUOTE] = ACTIONS(3097), + [anon_sym_U_SQUOTE] = ACTIONS(3097), + [anon_sym_u8_SQUOTE] = ACTIONS(3097), + [anon_sym_SQUOTE] = ACTIONS(3097), + [anon_sym_L_DQUOTE] = ACTIONS(3097), + [anon_sym_u_DQUOTE] = ACTIONS(3097), + [anon_sym_U_DQUOTE] = ACTIONS(3097), + [anon_sym_u8_DQUOTE] = ACTIONS(3097), + [anon_sym_DQUOTE] = ACTIONS(3097), + [sym_true] = ACTIONS(3095), + [sym_false] = ACTIONS(3095), + [anon_sym_NULL] = ACTIONS(3095), + [anon_sym_nullptr] = ACTIONS(3095), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3095), + [anon_sym_decltype] = ACTIONS(3095), + [anon_sym_virtual] = ACTIONS(3095), + [anon_sym_alignas] = ACTIONS(3095), + [anon_sym_explicit] = ACTIONS(3095), + [anon_sym_typename] = ACTIONS(3095), + [anon_sym_template] = ACTIONS(3095), + [anon_sym_operator] = ACTIONS(3095), + [anon_sym_try] = ACTIONS(3095), + [anon_sym_delete] = ACTIONS(3095), + [anon_sym_throw] = ACTIONS(3095), + [anon_sym_namespace] = ACTIONS(3095), + [anon_sym_using] = ACTIONS(3095), + [anon_sym_static_assert] = ACTIONS(3095), + [anon_sym_concept] = ACTIONS(3095), + [anon_sym_co_return] = ACTIONS(3095), + [anon_sym_co_yield] = ACTIONS(3095), + [anon_sym_R_DQUOTE] = ACTIONS(3097), + [anon_sym_LR_DQUOTE] = ACTIONS(3097), + [anon_sym_uR_DQUOTE] = ACTIONS(3097), + [anon_sym_UR_DQUOTE] = ACTIONS(3097), + [anon_sym_u8R_DQUOTE] = ACTIONS(3097), + [anon_sym_co_await] = ACTIONS(3095), + [anon_sym_new] = ACTIONS(3095), + [anon_sym_requires] = ACTIONS(3095), + [sym_this] = ACTIONS(3095), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3097), + [sym_semgrep_named_ellipsis] = ACTIONS(3097), + }, + [593] = { + [sym_identifier] = ACTIONS(3099), + [aux_sym_preproc_include_token1] = ACTIONS(3099), + [aux_sym_preproc_def_token1] = ACTIONS(3099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3101), + [aux_sym_preproc_if_token1] = ACTIONS(3099), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3099), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3099), + [sym_preproc_directive] = ACTIONS(3099), + [anon_sym_LPAREN2] = ACTIONS(3101), + [anon_sym_BANG] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3101), + [anon_sym_DASH] = ACTIONS(3099), + [anon_sym_PLUS] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_AMP_AMP] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym_SEMI] = ACTIONS(3101), + [anon_sym___extension__] = ACTIONS(3099), + [anon_sym_typedef] = ACTIONS(3099), + [anon_sym_extern] = ACTIONS(3099), + [anon_sym___attribute__] = ACTIONS(3099), + [anon_sym_COLON_COLON] = ACTIONS(3101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3101), + [anon_sym___declspec] = ACTIONS(3099), + [anon_sym___based] = ACTIONS(3099), + [anon_sym___cdecl] = ACTIONS(3099), + [anon_sym___clrcall] = ACTIONS(3099), + [anon_sym___stdcall] = ACTIONS(3099), + [anon_sym___fastcall] = ACTIONS(3099), + [anon_sym___thiscall] = ACTIONS(3099), + [anon_sym___vectorcall] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(3101), + [anon_sym_RBRACE] = ACTIONS(3101), + [anon_sym_signed] = ACTIONS(3099), + [anon_sym_unsigned] = ACTIONS(3099), + [anon_sym_long] = ACTIONS(3099), + [anon_sym_short] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3099), + [anon_sym_register] = ACTIONS(3099), + [anon_sym_inline] = ACTIONS(3099), + [anon_sym___inline] = ACTIONS(3099), + [anon_sym___inline__] = ACTIONS(3099), + [anon_sym___forceinline] = ACTIONS(3099), + [anon_sym_thread_local] = ACTIONS(3099), + [anon_sym___thread] = ACTIONS(3099), + [anon_sym_const] = ACTIONS(3099), + [anon_sym_constexpr] = ACTIONS(3099), + [anon_sym_volatile] = ACTIONS(3099), + [anon_sym_restrict] = ACTIONS(3099), + [anon_sym___restrict__] = ACTIONS(3099), + [anon_sym__Atomic] = ACTIONS(3099), + [anon_sym__Noreturn] = ACTIONS(3099), + [anon_sym_noreturn] = ACTIONS(3099), + [anon_sym_mutable] = ACTIONS(3099), + [anon_sym_constinit] = ACTIONS(3099), + [anon_sym_consteval] = ACTIONS(3099), + [sym_primitive_type] = ACTIONS(3099), + [anon_sym_enum] = ACTIONS(3099), + [anon_sym_class] = ACTIONS(3099), + [anon_sym_struct] = ACTIONS(3099), + [anon_sym_union] = ACTIONS(3099), + [anon_sym_if] = ACTIONS(3099), + [anon_sym_else] = ACTIONS(3099), + [anon_sym_switch] = ACTIONS(3099), + [anon_sym_case] = ACTIONS(3099), + [anon_sym_default] = ACTIONS(3099), + [anon_sym_while] = ACTIONS(3099), + [anon_sym_do] = ACTIONS(3099), + [anon_sym_for] = ACTIONS(3099), + [anon_sym_return] = ACTIONS(3099), + [anon_sym_break] = ACTIONS(3099), + [anon_sym_continue] = ACTIONS(3099), + [anon_sym_goto] = ACTIONS(3099), + [anon_sym___try] = ACTIONS(3099), + [anon_sym___leave] = ACTIONS(3099), + [anon_sym_not] = ACTIONS(3099), + [anon_sym_compl] = ACTIONS(3099), + [anon_sym_DASH_DASH] = ACTIONS(3101), + [anon_sym_PLUS_PLUS] = ACTIONS(3101), + [anon_sym_sizeof] = ACTIONS(3099), + [anon_sym___alignof__] = ACTIONS(3099), + [anon_sym___alignof] = ACTIONS(3099), + [anon_sym__alignof] = ACTIONS(3099), + [anon_sym_alignof] = ACTIONS(3099), + [anon_sym__Alignof] = ACTIONS(3099), + [anon_sym_offsetof] = ACTIONS(3099), + [anon_sym__Generic] = ACTIONS(3099), + [anon_sym_asm] = ACTIONS(3099), + [anon_sym___asm__] = ACTIONS(3099), + [sym_number_literal] = ACTIONS(3101), + [anon_sym_L_SQUOTE] = ACTIONS(3101), + [anon_sym_u_SQUOTE] = ACTIONS(3101), + [anon_sym_U_SQUOTE] = ACTIONS(3101), + [anon_sym_u8_SQUOTE] = ACTIONS(3101), + [anon_sym_SQUOTE] = ACTIONS(3101), + [anon_sym_L_DQUOTE] = ACTIONS(3101), + [anon_sym_u_DQUOTE] = ACTIONS(3101), + [anon_sym_U_DQUOTE] = ACTIONS(3101), + [anon_sym_u8_DQUOTE] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(3101), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [anon_sym_NULL] = ACTIONS(3099), + [anon_sym_nullptr] = ACTIONS(3099), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3099), + [anon_sym_decltype] = ACTIONS(3099), + [anon_sym_virtual] = ACTIONS(3099), + [anon_sym_alignas] = ACTIONS(3099), + [anon_sym_explicit] = ACTIONS(3099), + [anon_sym_typename] = ACTIONS(3099), + [anon_sym_template] = ACTIONS(3099), + [anon_sym_operator] = ACTIONS(3099), + [anon_sym_try] = ACTIONS(3099), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_throw] = ACTIONS(3099), + [anon_sym_namespace] = ACTIONS(3099), + [anon_sym_using] = ACTIONS(3099), + [anon_sym_static_assert] = ACTIONS(3099), + [anon_sym_concept] = ACTIONS(3099), + [anon_sym_co_return] = ACTIONS(3099), + [anon_sym_co_yield] = ACTIONS(3099), + [anon_sym_R_DQUOTE] = ACTIONS(3101), + [anon_sym_LR_DQUOTE] = ACTIONS(3101), + [anon_sym_uR_DQUOTE] = ACTIONS(3101), + [anon_sym_UR_DQUOTE] = ACTIONS(3101), + [anon_sym_u8R_DQUOTE] = ACTIONS(3101), + [anon_sym_co_await] = ACTIONS(3099), + [anon_sym_new] = ACTIONS(3099), + [anon_sym_requires] = ACTIONS(3099), + [sym_this] = ACTIONS(3099), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3101), + [sym_semgrep_named_ellipsis] = ACTIONS(3101), + }, + [594] = { + [sym_identifier] = ACTIONS(3103), + [aux_sym_preproc_include_token1] = ACTIONS(3103), + [aux_sym_preproc_def_token1] = ACTIONS(3103), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3105), + [aux_sym_preproc_if_token1] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3103), + [sym_preproc_directive] = ACTIONS(3103), + [anon_sym_LPAREN2] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3103), + [anon_sym_PLUS] = ACTIONS(3103), + [anon_sym_STAR] = ACTIONS(3105), + [anon_sym_AMP_AMP] = ACTIONS(3105), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym___extension__] = ACTIONS(3103), + [anon_sym_typedef] = ACTIONS(3103), + [anon_sym_extern] = ACTIONS(3103), + [anon_sym___attribute__] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3105), + [anon_sym___declspec] = ACTIONS(3103), + [anon_sym___based] = ACTIONS(3103), + [anon_sym___cdecl] = ACTIONS(3103), + [anon_sym___clrcall] = ACTIONS(3103), + [anon_sym___stdcall] = ACTIONS(3103), + [anon_sym___fastcall] = ACTIONS(3103), + [anon_sym___thiscall] = ACTIONS(3103), + [anon_sym___vectorcall] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(3105), + [anon_sym_RBRACE] = ACTIONS(3105), + [anon_sym_signed] = ACTIONS(3103), + [anon_sym_unsigned] = ACTIONS(3103), + [anon_sym_long] = ACTIONS(3103), + [anon_sym_short] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(3103), + [anon_sym_static] = ACTIONS(3103), + [anon_sym_register] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym___inline] = ACTIONS(3103), + [anon_sym___inline__] = ACTIONS(3103), + [anon_sym___forceinline] = ACTIONS(3103), + [anon_sym_thread_local] = ACTIONS(3103), + [anon_sym___thread] = ACTIONS(3103), + [anon_sym_const] = ACTIONS(3103), + [anon_sym_constexpr] = ACTIONS(3103), + [anon_sym_volatile] = ACTIONS(3103), + [anon_sym_restrict] = ACTIONS(3103), + [anon_sym___restrict__] = ACTIONS(3103), + [anon_sym__Atomic] = ACTIONS(3103), + [anon_sym__Noreturn] = ACTIONS(3103), + [anon_sym_noreturn] = ACTIONS(3103), + [anon_sym_mutable] = ACTIONS(3103), + [anon_sym_constinit] = ACTIONS(3103), + [anon_sym_consteval] = ACTIONS(3103), + [sym_primitive_type] = ACTIONS(3103), + [anon_sym_enum] = ACTIONS(3103), + [anon_sym_class] = ACTIONS(3103), + [anon_sym_struct] = ACTIONS(3103), + [anon_sym_union] = ACTIONS(3103), + [anon_sym_if] = ACTIONS(3103), + [anon_sym_else] = ACTIONS(3103), + [anon_sym_switch] = ACTIONS(3103), + [anon_sym_case] = ACTIONS(3103), + [anon_sym_default] = ACTIONS(3103), + [anon_sym_while] = ACTIONS(3103), + [anon_sym_do] = ACTIONS(3103), + [anon_sym_for] = ACTIONS(3103), + [anon_sym_return] = ACTIONS(3103), + [anon_sym_break] = ACTIONS(3103), + [anon_sym_continue] = ACTIONS(3103), + [anon_sym_goto] = ACTIONS(3103), + [anon_sym___try] = ACTIONS(3103), + [anon_sym___leave] = ACTIONS(3103), + [anon_sym_not] = ACTIONS(3103), + [anon_sym_compl] = ACTIONS(3103), + [anon_sym_DASH_DASH] = ACTIONS(3105), + [anon_sym_PLUS_PLUS] = ACTIONS(3105), + [anon_sym_sizeof] = ACTIONS(3103), + [anon_sym___alignof__] = ACTIONS(3103), + [anon_sym___alignof] = ACTIONS(3103), + [anon_sym__alignof] = ACTIONS(3103), + [anon_sym_alignof] = ACTIONS(3103), + [anon_sym__Alignof] = ACTIONS(3103), + [anon_sym_offsetof] = ACTIONS(3103), + [anon_sym__Generic] = ACTIONS(3103), + [anon_sym_asm] = ACTIONS(3103), + [anon_sym___asm__] = ACTIONS(3103), + [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(3103), + [sym_false] = ACTIONS(3103), + [anon_sym_NULL] = ACTIONS(3103), + [anon_sym_nullptr] = ACTIONS(3103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3103), + [anon_sym_decltype] = ACTIONS(3103), + [anon_sym_virtual] = ACTIONS(3103), + [anon_sym_alignas] = ACTIONS(3103), + [anon_sym_explicit] = ACTIONS(3103), + [anon_sym_typename] = ACTIONS(3103), + [anon_sym_template] = ACTIONS(3103), + [anon_sym_operator] = ACTIONS(3103), + [anon_sym_try] = ACTIONS(3103), + [anon_sym_delete] = ACTIONS(3103), + [anon_sym_throw] = ACTIONS(3103), + [anon_sym_namespace] = ACTIONS(3103), + [anon_sym_using] = ACTIONS(3103), + [anon_sym_static_assert] = ACTIONS(3103), + [anon_sym_concept] = ACTIONS(3103), + [anon_sym_co_return] = ACTIONS(3103), + [anon_sym_co_yield] = ACTIONS(3103), + [anon_sym_R_DQUOTE] = ACTIONS(3105), + [anon_sym_LR_DQUOTE] = ACTIONS(3105), + [anon_sym_uR_DQUOTE] = ACTIONS(3105), + [anon_sym_UR_DQUOTE] = ACTIONS(3105), + [anon_sym_u8R_DQUOTE] = ACTIONS(3105), + [anon_sym_co_await] = ACTIONS(3103), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(3103), + [sym_this] = ACTIONS(3103), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3105), + [sym_semgrep_named_ellipsis] = ACTIONS(3105), + }, + [595] = { + [sym_identifier] = ACTIONS(3107), + [aux_sym_preproc_include_token1] = ACTIONS(3107), + [aux_sym_preproc_def_token1] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3109), + [aux_sym_preproc_if_token1] = ACTIONS(3107), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3107), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3107), + [sym_preproc_directive] = ACTIONS(3107), + [anon_sym_LPAREN2] = ACTIONS(3109), + [anon_sym_BANG] = ACTIONS(3109), + [anon_sym_TILDE] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_AMP] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym___extension__] = ACTIONS(3107), + [anon_sym_typedef] = ACTIONS(3107), + [anon_sym_extern] = ACTIONS(3107), + [anon_sym___attribute__] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(3109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3109), + [anon_sym___declspec] = ACTIONS(3107), + [anon_sym___based] = ACTIONS(3107), + [anon_sym___cdecl] = ACTIONS(3107), + [anon_sym___clrcall] = ACTIONS(3107), + [anon_sym___stdcall] = ACTIONS(3107), + [anon_sym___fastcall] = ACTIONS(3107), + [anon_sym___thiscall] = ACTIONS(3107), + [anon_sym___vectorcall] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(3109), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_signed] = ACTIONS(3107), + [anon_sym_unsigned] = ACTIONS(3107), + [anon_sym_long] = ACTIONS(3107), + [anon_sym_short] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3107), + [anon_sym_static] = ACTIONS(3107), + [anon_sym_register] = ACTIONS(3107), + [anon_sym_inline] = ACTIONS(3107), + [anon_sym___inline] = ACTIONS(3107), + [anon_sym___inline__] = ACTIONS(3107), + [anon_sym___forceinline] = ACTIONS(3107), + [anon_sym_thread_local] = ACTIONS(3107), + [anon_sym___thread] = ACTIONS(3107), + [anon_sym_const] = ACTIONS(3107), + [anon_sym_constexpr] = ACTIONS(3107), + [anon_sym_volatile] = ACTIONS(3107), + [anon_sym_restrict] = ACTIONS(3107), + [anon_sym___restrict__] = ACTIONS(3107), + [anon_sym__Atomic] = ACTIONS(3107), + [anon_sym__Noreturn] = ACTIONS(3107), + [anon_sym_noreturn] = ACTIONS(3107), + [anon_sym_mutable] = ACTIONS(3107), + [anon_sym_constinit] = ACTIONS(3107), + [anon_sym_consteval] = ACTIONS(3107), + [sym_primitive_type] = ACTIONS(3107), + [anon_sym_enum] = ACTIONS(3107), + [anon_sym_class] = ACTIONS(3107), + [anon_sym_struct] = ACTIONS(3107), + [anon_sym_union] = ACTIONS(3107), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_else] = 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___try] = ACTIONS(3107), + [anon_sym___leave] = ACTIONS(3107), + [anon_sym_not] = ACTIONS(3107), + [anon_sym_compl] = ACTIONS(3107), + [anon_sym_DASH_DASH] = ACTIONS(3109), + [anon_sym_PLUS_PLUS] = ACTIONS(3109), + [anon_sym_sizeof] = ACTIONS(3107), + [anon_sym___alignof__] = ACTIONS(3107), + [anon_sym___alignof] = ACTIONS(3107), + [anon_sym__alignof] = ACTIONS(3107), + [anon_sym_alignof] = ACTIONS(3107), + [anon_sym__Alignof] = ACTIONS(3107), + [anon_sym_offsetof] = ACTIONS(3107), + [anon_sym__Generic] = ACTIONS(3107), + [anon_sym_asm] = ACTIONS(3107), + [anon_sym___asm__] = ACTIONS(3107), + [sym_number_literal] = ACTIONS(3109), + [anon_sym_L_SQUOTE] = ACTIONS(3109), + [anon_sym_u_SQUOTE] = ACTIONS(3109), + [anon_sym_U_SQUOTE] = ACTIONS(3109), + [anon_sym_u8_SQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3109), + [anon_sym_L_DQUOTE] = ACTIONS(3109), + [anon_sym_u_DQUOTE] = ACTIONS(3109), + [anon_sym_U_DQUOTE] = ACTIONS(3109), + [anon_sym_u8_DQUOTE] = ACTIONS(3109), + [anon_sym_DQUOTE] = ACTIONS(3109), + [sym_true] = ACTIONS(3107), + [sym_false] = ACTIONS(3107), + [anon_sym_NULL] = ACTIONS(3107), + [anon_sym_nullptr] = ACTIONS(3107), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3107), + [anon_sym_decltype] = ACTIONS(3107), + [anon_sym_virtual] = ACTIONS(3107), + [anon_sym_alignas] = ACTIONS(3107), + [anon_sym_explicit] = ACTIONS(3107), + [anon_sym_typename] = ACTIONS(3107), + [anon_sym_template] = ACTIONS(3107), + [anon_sym_operator] = ACTIONS(3107), + [anon_sym_try] = ACTIONS(3107), + [anon_sym_delete] = ACTIONS(3107), + [anon_sym_throw] = ACTIONS(3107), + [anon_sym_namespace] = ACTIONS(3107), + [anon_sym_using] = ACTIONS(3107), + [anon_sym_static_assert] = ACTIONS(3107), + [anon_sym_concept] = ACTIONS(3107), + [anon_sym_co_return] = ACTIONS(3107), + [anon_sym_co_yield] = ACTIONS(3107), + [anon_sym_R_DQUOTE] = ACTIONS(3109), + [anon_sym_LR_DQUOTE] = ACTIONS(3109), + [anon_sym_uR_DQUOTE] = ACTIONS(3109), + [anon_sym_UR_DQUOTE] = ACTIONS(3109), + [anon_sym_u8R_DQUOTE] = ACTIONS(3109), + [anon_sym_co_await] = ACTIONS(3107), + [anon_sym_new] = ACTIONS(3107), + [anon_sym_requires] = ACTIONS(3107), + [sym_this] = ACTIONS(3107), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3109), + [sym_semgrep_named_ellipsis] = ACTIONS(3109), + }, + [596] = { + [sym_preproc_def] = STATE(2142), + [sym_preproc_function_def] = STATE(2142), + [sym_preproc_call] = STATE(2142), + [sym_preproc_if_in_field_declaration_list] = STATE(2142), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2142), + [sym_preproc_else_in_field_declaration_list] = STATE(9581), + [sym_preproc_elif_in_field_declaration_list] = STATE(9581), + [sym_type_definition] = STATE(2142), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6398), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7291), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(598), + [sym_field_declaration] = STATE(2142), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2142), + [sym_operator_cast] = STATE(7774), + [sym_inline_method_definition] = STATE(2142), + [sym_constructor_specifiers] = STATE(1937), + [sym_operator_cast_definition] = STATE(2142), + [sym_operator_cast_declaration] = STATE(2142), + [sym_constructor_or_destructor_definition] = STATE(2142), + [sym_constructor_or_destructor_declaration] = STATE(2142), + [sym_friend_declaration] = STATE(2142), + [sym_access_specifier] = STATE(9170), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2142), + [sym_alias_declaration] = STATE(2142), + [sym_static_assert_declaration] = STATE(2142), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7774), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2142), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(598), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1937), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(3839), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3841), + [aux_sym_preproc_if_token1] = ACTIONS(3843), + [aux_sym_preproc_if_token2] = ACTIONS(3845), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3847), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3849), + [aux_sym_preproc_else_token1] = ACTIONS(3241), + [aux_sym_preproc_elif_token1] = ACTIONS(3243), + [sym_preproc_directive] = ACTIONS(3851), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(3853), + [anon_sym_typedef] = ACTIONS(3855), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(3857), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(3859), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3861), + [anon_sym_static_assert] = ACTIONS(3863), + [sym_semgrep_metavar] = ACTIONS(3865), + }, + [597] = { + [sym_identifier] = ACTIONS(3111), + [aux_sym_preproc_include_token1] = ACTIONS(3111), + [aux_sym_preproc_def_token1] = ACTIONS(3111), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3113), + [aux_sym_preproc_if_token1] = ACTIONS(3111), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3111), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3111), + [sym_preproc_directive] = ACTIONS(3111), + [anon_sym_LPAREN2] = ACTIONS(3113), + [anon_sym_BANG] = ACTIONS(3113), + [anon_sym_TILDE] = ACTIONS(3113), + [anon_sym_DASH] = ACTIONS(3111), + [anon_sym_PLUS] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_AMP_AMP] = ACTIONS(3113), + [anon_sym_AMP] = ACTIONS(3111), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym___extension__] = ACTIONS(3111), + [anon_sym_typedef] = ACTIONS(3111), + [anon_sym_extern] = ACTIONS(3111), + [anon_sym___attribute__] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(3113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3113), + [anon_sym___declspec] = ACTIONS(3111), + [anon_sym___based] = ACTIONS(3111), + [anon_sym___cdecl] = ACTIONS(3111), + [anon_sym___clrcall] = ACTIONS(3111), + [anon_sym___stdcall] = ACTIONS(3111), + [anon_sym___fastcall] = ACTIONS(3111), + [anon_sym___thiscall] = ACTIONS(3111), + [anon_sym___vectorcall] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_RBRACE] = ACTIONS(3113), + [anon_sym_signed] = ACTIONS(3111), + [anon_sym_unsigned] = ACTIONS(3111), + [anon_sym_long] = ACTIONS(3111), + [anon_sym_short] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3111), + [anon_sym_static] = ACTIONS(3111), + [anon_sym_register] = ACTIONS(3111), + [anon_sym_inline] = ACTIONS(3111), + [anon_sym___inline] = ACTIONS(3111), + [anon_sym___inline__] = ACTIONS(3111), + [anon_sym___forceinline] = ACTIONS(3111), + [anon_sym_thread_local] = ACTIONS(3111), + [anon_sym___thread] = ACTIONS(3111), + [anon_sym_const] = ACTIONS(3111), + [anon_sym_constexpr] = ACTIONS(3111), + [anon_sym_volatile] = ACTIONS(3111), + [anon_sym_restrict] = ACTIONS(3111), + [anon_sym___restrict__] = ACTIONS(3111), + [anon_sym__Atomic] = ACTIONS(3111), + [anon_sym__Noreturn] = ACTIONS(3111), + [anon_sym_noreturn] = ACTIONS(3111), + [anon_sym_mutable] = ACTIONS(3111), + [anon_sym_constinit] = ACTIONS(3111), + [anon_sym_consteval] = ACTIONS(3111), + [sym_primitive_type] = ACTIONS(3111), + [anon_sym_enum] = ACTIONS(3111), + [anon_sym_class] = ACTIONS(3111), + [anon_sym_struct] = ACTIONS(3111), + [anon_sym_union] = ACTIONS(3111), + [anon_sym_if] = ACTIONS(3111), + [anon_sym_else] = ACTIONS(3111), + [anon_sym_switch] = ACTIONS(3111), + [anon_sym_case] = ACTIONS(3111), + [anon_sym_default] = ACTIONS(3111), + [anon_sym_while] = ACTIONS(3111), + [anon_sym_do] = ACTIONS(3111), + [anon_sym_for] = ACTIONS(3111), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_break] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(3111), + [anon_sym_goto] = ACTIONS(3111), + [anon_sym___try] = ACTIONS(3111), + [anon_sym___leave] = ACTIONS(3111), + [anon_sym_not] = ACTIONS(3111), + [anon_sym_compl] = ACTIONS(3111), + [anon_sym_DASH_DASH] = ACTIONS(3113), + [anon_sym_PLUS_PLUS] = ACTIONS(3113), + [anon_sym_sizeof] = ACTIONS(3111), + [anon_sym___alignof__] = ACTIONS(3111), + [anon_sym___alignof] = ACTIONS(3111), + [anon_sym__alignof] = ACTIONS(3111), + [anon_sym_alignof] = ACTIONS(3111), + [anon_sym__Alignof] = ACTIONS(3111), + [anon_sym_offsetof] = ACTIONS(3111), + [anon_sym__Generic] = ACTIONS(3111), + [anon_sym_asm] = ACTIONS(3111), + [anon_sym___asm__] = ACTIONS(3111), + [sym_number_literal] = ACTIONS(3113), + [anon_sym_L_SQUOTE] = ACTIONS(3113), + [anon_sym_u_SQUOTE] = ACTIONS(3113), + [anon_sym_U_SQUOTE] = ACTIONS(3113), + [anon_sym_u8_SQUOTE] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3113), + [anon_sym_L_DQUOTE] = ACTIONS(3113), + [anon_sym_u_DQUOTE] = ACTIONS(3113), + [anon_sym_U_DQUOTE] = ACTIONS(3113), + [anon_sym_u8_DQUOTE] = ACTIONS(3113), + [anon_sym_DQUOTE] = ACTIONS(3113), + [sym_true] = ACTIONS(3111), + [sym_false] = ACTIONS(3111), + [anon_sym_NULL] = ACTIONS(3111), + [anon_sym_nullptr] = ACTIONS(3111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3111), + [anon_sym_decltype] = ACTIONS(3111), + [anon_sym_virtual] = ACTIONS(3111), + [anon_sym_alignas] = ACTIONS(3111), + [anon_sym_explicit] = ACTIONS(3111), + [anon_sym_typename] = ACTIONS(3111), + [anon_sym_template] = ACTIONS(3111), + [anon_sym_operator] = ACTIONS(3111), + [anon_sym_try] = ACTIONS(3111), + [anon_sym_delete] = ACTIONS(3111), + [anon_sym_throw] = ACTIONS(3111), + [anon_sym_namespace] = ACTIONS(3111), + [anon_sym_using] = ACTIONS(3111), + [anon_sym_static_assert] = ACTIONS(3111), + [anon_sym_concept] = ACTIONS(3111), + [anon_sym_co_return] = ACTIONS(3111), + [anon_sym_co_yield] = ACTIONS(3111), + [anon_sym_R_DQUOTE] = ACTIONS(3113), + [anon_sym_LR_DQUOTE] = ACTIONS(3113), + [anon_sym_uR_DQUOTE] = ACTIONS(3113), + [anon_sym_UR_DQUOTE] = ACTIONS(3113), + [anon_sym_u8R_DQUOTE] = ACTIONS(3113), + [anon_sym_co_await] = ACTIONS(3111), + [anon_sym_new] = ACTIONS(3111), + [anon_sym_requires] = ACTIONS(3111), + [sym_this] = ACTIONS(3111), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3113), + [sym_semgrep_named_ellipsis] = ACTIONS(3113), + }, + [598] = { + [sym_preproc_def] = STATE(2142), + [sym_preproc_function_def] = STATE(2142), + [sym_preproc_call] = STATE(2142), + [sym_preproc_if_in_field_declaration_list] = STATE(2142), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2142), + [sym_preproc_else_in_field_declaration_list] = STATE(9628), + [sym_preproc_elif_in_field_declaration_list] = STATE(9628), + [sym_type_definition] = STATE(2142), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6398), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7291), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(803), + [sym_field_declaration] = STATE(2142), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2142), + [sym_operator_cast] = STATE(7774), + [sym_inline_method_definition] = STATE(2142), + [sym_constructor_specifiers] = STATE(1937), + [sym_operator_cast_definition] = STATE(2142), + [sym_operator_cast_declaration] = STATE(2142), + [sym_constructor_or_destructor_definition] = STATE(2142), + [sym_constructor_or_destructor_declaration] = STATE(2142), + [sym_friend_declaration] = STATE(2142), + [sym_access_specifier] = STATE(9170), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2142), + [sym_alias_declaration] = STATE(2142), + [sym_static_assert_declaration] = STATE(2142), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7774), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2142), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(803), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1937), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(3839), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3841), + [aux_sym_preproc_if_token1] = ACTIONS(3843), + [aux_sym_preproc_if_token2] = ACTIONS(3867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3847), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3849), + [aux_sym_preproc_else_token1] = ACTIONS(3241), + [aux_sym_preproc_elif_token1] = ACTIONS(3243), + [sym_preproc_directive] = ACTIONS(3851), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(3853), + [anon_sym_typedef] = ACTIONS(3855), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(3857), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(3859), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3861), + [anon_sym_static_assert] = ACTIONS(3863), + [sym_semgrep_metavar] = ACTIONS(3865), + }, + [599] = { + [ts_builtin_sym_end] = ACTIONS(3121), + [sym_identifier] = ACTIONS(3119), + [aux_sym_preproc_include_token1] = ACTIONS(3119), + [aux_sym_preproc_def_token1] = ACTIONS(3119), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3121), + [aux_sym_preproc_if_token1] = ACTIONS(3119), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3119), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3119), + [sym_preproc_directive] = ACTIONS(3119), + [anon_sym_LPAREN2] = ACTIONS(3121), + [anon_sym_BANG] = ACTIONS(3121), + [anon_sym_TILDE] = ACTIONS(3121), + [anon_sym_DASH] = ACTIONS(3119), + [anon_sym_PLUS] = ACTIONS(3119), + [anon_sym_STAR] = ACTIONS(3121), + [anon_sym_AMP_AMP] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3119), + [anon_sym_SEMI] = ACTIONS(3121), + [anon_sym___extension__] = ACTIONS(3119), + [anon_sym_typedef] = ACTIONS(3119), + [anon_sym_extern] = ACTIONS(3119), + [anon_sym___attribute__] = ACTIONS(3119), + [anon_sym_COLON_COLON] = ACTIONS(3121), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3121), + [anon_sym___declspec] = ACTIONS(3119), + [anon_sym___based] = ACTIONS(3119), + [anon_sym___cdecl] = ACTIONS(3119), + [anon_sym___clrcall] = ACTIONS(3119), + [anon_sym___stdcall] = ACTIONS(3119), + [anon_sym___fastcall] = ACTIONS(3119), + [anon_sym___thiscall] = ACTIONS(3119), + [anon_sym___vectorcall] = ACTIONS(3119), + [anon_sym_LBRACE] = ACTIONS(3121), + [anon_sym_signed] = ACTIONS(3119), + [anon_sym_unsigned] = ACTIONS(3119), + [anon_sym_long] = ACTIONS(3119), + [anon_sym_short] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(3119), + [anon_sym_static] = ACTIONS(3119), + [anon_sym_register] = ACTIONS(3119), + [anon_sym_inline] = ACTIONS(3119), + [anon_sym___inline] = ACTIONS(3119), + [anon_sym___inline__] = ACTIONS(3119), + [anon_sym___forceinline] = ACTIONS(3119), + [anon_sym_thread_local] = ACTIONS(3119), + [anon_sym___thread] = ACTIONS(3119), + [anon_sym_const] = ACTIONS(3119), + [anon_sym_constexpr] = ACTIONS(3119), + [anon_sym_volatile] = ACTIONS(3119), + [anon_sym_restrict] = ACTIONS(3119), + [anon_sym___restrict__] = ACTIONS(3119), + [anon_sym__Atomic] = ACTIONS(3119), + [anon_sym__Noreturn] = ACTIONS(3119), + [anon_sym_noreturn] = ACTIONS(3119), + [anon_sym_mutable] = ACTIONS(3119), + [anon_sym_constinit] = ACTIONS(3119), + [anon_sym_consteval] = ACTIONS(3119), + [sym_primitive_type] = ACTIONS(3119), + [anon_sym_enum] = ACTIONS(3119), + [anon_sym_class] = ACTIONS(3119), + [anon_sym_struct] = ACTIONS(3119), + [anon_sym_union] = ACTIONS(3119), + [anon_sym_if] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3119), + [anon_sym_switch] = ACTIONS(3119), + [anon_sym_case] = ACTIONS(3119), + [anon_sym_default] = ACTIONS(3119), + [anon_sym_while] = ACTIONS(3119), + [anon_sym_do] = ACTIONS(3119), + [anon_sym_for] = ACTIONS(3119), + [anon_sym_return] = ACTIONS(3119), + [anon_sym_break] = ACTIONS(3119), + [anon_sym_continue] = ACTIONS(3119), + [anon_sym_goto] = ACTIONS(3119), + [anon_sym___try] = ACTIONS(3119), + [anon_sym___leave] = ACTIONS(3119), + [anon_sym_not] = ACTIONS(3119), + [anon_sym_compl] = ACTIONS(3119), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3119), + [anon_sym___alignof__] = ACTIONS(3119), + [anon_sym___alignof] = ACTIONS(3119), + [anon_sym__alignof] = ACTIONS(3119), + [anon_sym_alignof] = ACTIONS(3119), + [anon_sym__Alignof] = ACTIONS(3119), + [anon_sym_offsetof] = ACTIONS(3119), + [anon_sym__Generic] = ACTIONS(3119), + [anon_sym_asm] = ACTIONS(3119), + [anon_sym___asm__] = ACTIONS(3119), + [sym_number_literal] = ACTIONS(3121), + [anon_sym_L_SQUOTE] = ACTIONS(3121), + [anon_sym_u_SQUOTE] = ACTIONS(3121), + [anon_sym_U_SQUOTE] = ACTIONS(3121), + [anon_sym_u8_SQUOTE] = ACTIONS(3121), + [anon_sym_SQUOTE] = ACTIONS(3121), + [anon_sym_L_DQUOTE] = ACTIONS(3121), + [anon_sym_u_DQUOTE] = ACTIONS(3121), + [anon_sym_U_DQUOTE] = ACTIONS(3121), + [anon_sym_u8_DQUOTE] = ACTIONS(3121), + [anon_sym_DQUOTE] = ACTIONS(3121), + [sym_true] = ACTIONS(3119), + [sym_false] = ACTIONS(3119), + [anon_sym_NULL] = ACTIONS(3119), + [anon_sym_nullptr] = ACTIONS(3119), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3119), + [anon_sym_decltype] = ACTIONS(3119), + [anon_sym_virtual] = ACTIONS(3119), + [anon_sym_alignas] = ACTIONS(3119), + [anon_sym_explicit] = ACTIONS(3119), + [anon_sym_typename] = ACTIONS(3119), + [anon_sym_template] = ACTIONS(3119), + [anon_sym_operator] = ACTIONS(3119), + [anon_sym_try] = ACTIONS(3119), + [anon_sym_delete] = ACTIONS(3119), + [anon_sym_throw] = ACTIONS(3119), + [anon_sym_namespace] = ACTIONS(3119), + [anon_sym_using] = ACTIONS(3119), + [anon_sym_static_assert] = ACTIONS(3119), + [anon_sym_concept] = ACTIONS(3119), + [anon_sym_co_return] = ACTIONS(3119), + [anon_sym_co_yield] = ACTIONS(3119), + [anon_sym_R_DQUOTE] = ACTIONS(3121), + [anon_sym_LR_DQUOTE] = ACTIONS(3121), + [anon_sym_uR_DQUOTE] = ACTIONS(3121), + [anon_sym_UR_DQUOTE] = ACTIONS(3121), + [anon_sym_u8R_DQUOTE] = ACTIONS(3121), + [anon_sym_co_await] = ACTIONS(3119), + [anon_sym_new] = ACTIONS(3119), + [anon_sym_requires] = ACTIONS(3119), + [sym_this] = ACTIONS(3119), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3121), + [sym_semgrep_named_ellipsis] = ACTIONS(3121), + }, + [600] = { [sym_identifier] = ACTIONS(3219), [aux_sym_preproc_include_token1] = ACTIONS(3219), [aux_sym_preproc_def_token1] = ACTIONS(3219), @@ -145249,13 +138679,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3221), [sym_semgrep_named_ellipsis] = ACTIONS(3221), }, - [577] = { + [601] = { + [ts_builtin_sym_end] = ACTIONS(3149), [sym_identifier] = ACTIONS(3147), [aux_sym_preproc_include_token1] = ACTIONS(3147), [aux_sym_preproc_def_token1] = ACTIONS(3147), [anon_sym_DOT_DOT_DOT] = ACTIONS(3149), [aux_sym_preproc_if_token1] = ACTIONS(3147), - [aux_sym_preproc_if_token2] = ACTIONS(3147), [aux_sym_preproc_ifdef_token1] = ACTIONS(3147), [aux_sym_preproc_ifdef_token2] = ACTIONS(3147), [sym_preproc_directive] = ACTIONS(3147), @@ -145385,415 +138815,1231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3149), [sym_semgrep_named_ellipsis] = ACTIONS(3149), }, - [578] = { - [sym_identifier] = ACTIONS(3151), - [aux_sym_preproc_include_token1] = ACTIONS(3151), - [aux_sym_preproc_def_token1] = ACTIONS(3151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3153), - [aux_sym_preproc_if_token1] = ACTIONS(3151), - [aux_sym_preproc_if_token2] = ACTIONS(3151), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3151), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3151), - [sym_preproc_directive] = ACTIONS(3151), - [anon_sym_LPAREN2] = ACTIONS(3153), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_TILDE] = ACTIONS(3153), - [anon_sym_DASH] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(3151), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_AMP_AMP] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3151), - [anon_sym_SEMI] = ACTIONS(3153), - [anon_sym___extension__] = ACTIONS(3151), - [anon_sym_typedef] = ACTIONS(3151), - [anon_sym_extern] = ACTIONS(3151), - [anon_sym___attribute__] = ACTIONS(3151), - [anon_sym_COLON_COLON] = ACTIONS(3153), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3153), - [anon_sym___declspec] = ACTIONS(3151), - [anon_sym___based] = ACTIONS(3151), - [anon_sym___cdecl] = ACTIONS(3151), - [anon_sym___clrcall] = ACTIONS(3151), - [anon_sym___stdcall] = ACTIONS(3151), - [anon_sym___fastcall] = ACTIONS(3151), - [anon_sym___thiscall] = ACTIONS(3151), - [anon_sym___vectorcall] = ACTIONS(3151), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_signed] = ACTIONS(3151), - [anon_sym_unsigned] = ACTIONS(3151), - [anon_sym_long] = ACTIONS(3151), - [anon_sym_short] = ACTIONS(3151), - [anon_sym_LBRACK] = ACTIONS(3151), - [anon_sym_static] = ACTIONS(3151), - [anon_sym_register] = ACTIONS(3151), - [anon_sym_inline] = ACTIONS(3151), - [anon_sym___inline] = ACTIONS(3151), - [anon_sym___inline__] = ACTIONS(3151), - [anon_sym___forceinline] = ACTIONS(3151), - [anon_sym_thread_local] = ACTIONS(3151), - [anon_sym___thread] = ACTIONS(3151), - [anon_sym_const] = ACTIONS(3151), - [anon_sym_constexpr] = ACTIONS(3151), - [anon_sym_volatile] = ACTIONS(3151), - [anon_sym_restrict] = ACTIONS(3151), - [anon_sym___restrict__] = ACTIONS(3151), - [anon_sym__Atomic] = ACTIONS(3151), - [anon_sym__Noreturn] = ACTIONS(3151), - [anon_sym_noreturn] = ACTIONS(3151), - [anon_sym_mutable] = ACTIONS(3151), - [anon_sym_constinit] = ACTIONS(3151), - [anon_sym_consteval] = ACTIONS(3151), - [sym_primitive_type] = ACTIONS(3151), - [anon_sym_enum] = ACTIONS(3151), - [anon_sym_class] = ACTIONS(3151), - [anon_sym_struct] = ACTIONS(3151), - [anon_sym_union] = ACTIONS(3151), - [anon_sym_if] = ACTIONS(3151), - [anon_sym_else] = ACTIONS(3151), - [anon_sym_switch] = ACTIONS(3151), - [anon_sym_case] = ACTIONS(3151), - [anon_sym_default] = ACTIONS(3151), - [anon_sym_while] = ACTIONS(3151), - [anon_sym_do] = ACTIONS(3151), - [anon_sym_for] = ACTIONS(3151), - [anon_sym_return] = ACTIONS(3151), - [anon_sym_break] = ACTIONS(3151), - [anon_sym_continue] = ACTIONS(3151), - [anon_sym_goto] = ACTIONS(3151), - [anon_sym___try] = ACTIONS(3151), - [anon_sym___leave] = ACTIONS(3151), - [anon_sym_not] = ACTIONS(3151), - [anon_sym_compl] = ACTIONS(3151), - [anon_sym_DASH_DASH] = ACTIONS(3153), - [anon_sym_PLUS_PLUS] = ACTIONS(3153), - [anon_sym_sizeof] = ACTIONS(3151), - [anon_sym___alignof__] = ACTIONS(3151), - [anon_sym___alignof] = ACTIONS(3151), - [anon_sym__alignof] = ACTIONS(3151), - [anon_sym_alignof] = ACTIONS(3151), - [anon_sym__Alignof] = ACTIONS(3151), - [anon_sym_offsetof] = ACTIONS(3151), - [anon_sym__Generic] = ACTIONS(3151), - [anon_sym_asm] = ACTIONS(3151), - [anon_sym___asm__] = ACTIONS(3151), - [sym_number_literal] = ACTIONS(3153), - [anon_sym_L_SQUOTE] = ACTIONS(3153), - [anon_sym_u_SQUOTE] = ACTIONS(3153), - [anon_sym_U_SQUOTE] = ACTIONS(3153), - [anon_sym_u8_SQUOTE] = ACTIONS(3153), - [anon_sym_SQUOTE] = ACTIONS(3153), - [anon_sym_L_DQUOTE] = ACTIONS(3153), - [anon_sym_u_DQUOTE] = ACTIONS(3153), - [anon_sym_U_DQUOTE] = ACTIONS(3153), - [anon_sym_u8_DQUOTE] = ACTIONS(3153), - [anon_sym_DQUOTE] = ACTIONS(3153), - [sym_true] = ACTIONS(3151), - [sym_false] = ACTIONS(3151), - [anon_sym_NULL] = ACTIONS(3151), - [anon_sym_nullptr] = ACTIONS(3151), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3151), - [anon_sym_decltype] = ACTIONS(3151), - [anon_sym_virtual] = ACTIONS(3151), - [anon_sym_alignas] = ACTIONS(3151), - [anon_sym_explicit] = ACTIONS(3151), - [anon_sym_typename] = ACTIONS(3151), - [anon_sym_template] = ACTIONS(3151), - [anon_sym_operator] = ACTIONS(3151), - [anon_sym_try] = ACTIONS(3151), - [anon_sym_delete] = ACTIONS(3151), - [anon_sym_throw] = ACTIONS(3151), - [anon_sym_namespace] = ACTIONS(3151), - [anon_sym_using] = ACTIONS(3151), - [anon_sym_static_assert] = ACTIONS(3151), - [anon_sym_concept] = ACTIONS(3151), - [anon_sym_co_return] = ACTIONS(3151), - [anon_sym_co_yield] = ACTIONS(3151), - [anon_sym_R_DQUOTE] = ACTIONS(3153), - [anon_sym_LR_DQUOTE] = ACTIONS(3153), - [anon_sym_uR_DQUOTE] = ACTIONS(3153), - [anon_sym_UR_DQUOTE] = ACTIONS(3153), - [anon_sym_u8R_DQUOTE] = ACTIONS(3153), - [anon_sym_co_await] = ACTIONS(3151), - [anon_sym_new] = ACTIONS(3151), - [anon_sym_requires] = ACTIONS(3151), - [sym_this] = ACTIONS(3151), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3153), - [sym_semgrep_named_ellipsis] = ACTIONS(3153), + [602] = { + [ts_builtin_sym_end] = ACTIONS(3125), + [sym_identifier] = ACTIONS(3123), + [aux_sym_preproc_include_token1] = ACTIONS(3123), + [aux_sym_preproc_def_token1] = ACTIONS(3123), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3125), + [aux_sym_preproc_if_token1] = ACTIONS(3123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3123), + [sym_preproc_directive] = ACTIONS(3123), + [anon_sym_LPAREN2] = ACTIONS(3125), + [anon_sym_BANG] = ACTIONS(3125), + [anon_sym_TILDE] = ACTIONS(3125), + [anon_sym_DASH] = ACTIONS(3123), + [anon_sym_PLUS] = ACTIONS(3123), + [anon_sym_STAR] = ACTIONS(3125), + [anon_sym_AMP_AMP] = ACTIONS(3125), + [anon_sym_AMP] = ACTIONS(3123), + [anon_sym_SEMI] = ACTIONS(3125), + [anon_sym___extension__] = ACTIONS(3123), + [anon_sym_typedef] = ACTIONS(3123), + [anon_sym_extern] = ACTIONS(3123), + [anon_sym___attribute__] = ACTIONS(3123), + [anon_sym_COLON_COLON] = ACTIONS(3125), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3125), + [anon_sym___declspec] = ACTIONS(3123), + [anon_sym___based] = ACTIONS(3123), + [anon_sym___cdecl] = ACTIONS(3123), + [anon_sym___clrcall] = ACTIONS(3123), + [anon_sym___stdcall] = ACTIONS(3123), + [anon_sym___fastcall] = ACTIONS(3123), + [anon_sym___thiscall] = ACTIONS(3123), + [anon_sym___vectorcall] = ACTIONS(3123), + [anon_sym_LBRACE] = ACTIONS(3125), + [anon_sym_signed] = ACTIONS(3123), + [anon_sym_unsigned] = ACTIONS(3123), + [anon_sym_long] = ACTIONS(3123), + [anon_sym_short] = ACTIONS(3123), + [anon_sym_LBRACK] = ACTIONS(3123), + [anon_sym_static] = ACTIONS(3123), + [anon_sym_register] = ACTIONS(3123), + [anon_sym_inline] = ACTIONS(3123), + [anon_sym___inline] = ACTIONS(3123), + [anon_sym___inline__] = ACTIONS(3123), + [anon_sym___forceinline] = ACTIONS(3123), + [anon_sym_thread_local] = ACTIONS(3123), + [anon_sym___thread] = ACTIONS(3123), + [anon_sym_const] = ACTIONS(3123), + [anon_sym_constexpr] = ACTIONS(3123), + [anon_sym_volatile] = ACTIONS(3123), + [anon_sym_restrict] = ACTIONS(3123), + [anon_sym___restrict__] = ACTIONS(3123), + [anon_sym__Atomic] = ACTIONS(3123), + [anon_sym__Noreturn] = ACTIONS(3123), + [anon_sym_noreturn] = ACTIONS(3123), + [anon_sym_mutable] = ACTIONS(3123), + [anon_sym_constinit] = ACTIONS(3123), + [anon_sym_consteval] = ACTIONS(3123), + [sym_primitive_type] = ACTIONS(3123), + [anon_sym_enum] = ACTIONS(3123), + [anon_sym_class] = ACTIONS(3123), + [anon_sym_struct] = ACTIONS(3123), + [anon_sym_union] = ACTIONS(3123), + [anon_sym_if] = ACTIONS(3123), + [anon_sym_else] = ACTIONS(3123), + [anon_sym_switch] = ACTIONS(3123), + [anon_sym_case] = ACTIONS(3123), + [anon_sym_default] = ACTIONS(3123), + [anon_sym_while] = ACTIONS(3123), + [anon_sym_do] = ACTIONS(3123), + [anon_sym_for] = ACTIONS(3123), + [anon_sym_return] = ACTIONS(3123), + [anon_sym_break] = ACTIONS(3123), + [anon_sym_continue] = ACTIONS(3123), + [anon_sym_goto] = ACTIONS(3123), + [anon_sym___try] = ACTIONS(3123), + [anon_sym___leave] = ACTIONS(3123), + [anon_sym_not] = ACTIONS(3123), + [anon_sym_compl] = ACTIONS(3123), + [anon_sym_DASH_DASH] = ACTIONS(3125), + [anon_sym_PLUS_PLUS] = ACTIONS(3125), + [anon_sym_sizeof] = ACTIONS(3123), + [anon_sym___alignof__] = ACTIONS(3123), + [anon_sym___alignof] = ACTIONS(3123), + [anon_sym__alignof] = ACTIONS(3123), + [anon_sym_alignof] = ACTIONS(3123), + [anon_sym__Alignof] = ACTIONS(3123), + [anon_sym_offsetof] = ACTIONS(3123), + [anon_sym__Generic] = ACTIONS(3123), + [anon_sym_asm] = ACTIONS(3123), + [anon_sym___asm__] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(3125), + [anon_sym_L_SQUOTE] = ACTIONS(3125), + [anon_sym_u_SQUOTE] = ACTIONS(3125), + [anon_sym_U_SQUOTE] = ACTIONS(3125), + [anon_sym_u8_SQUOTE] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3125), + [anon_sym_L_DQUOTE] = ACTIONS(3125), + [anon_sym_u_DQUOTE] = ACTIONS(3125), + [anon_sym_U_DQUOTE] = ACTIONS(3125), + [anon_sym_u8_DQUOTE] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym_true] = ACTIONS(3123), + [sym_false] = ACTIONS(3123), + [anon_sym_NULL] = ACTIONS(3123), + [anon_sym_nullptr] = ACTIONS(3123), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3123), + [anon_sym_decltype] = ACTIONS(3123), + [anon_sym_virtual] = ACTIONS(3123), + [anon_sym_alignas] = ACTIONS(3123), + [anon_sym_explicit] = ACTIONS(3123), + [anon_sym_typename] = ACTIONS(3123), + [anon_sym_template] = ACTIONS(3123), + [anon_sym_operator] = ACTIONS(3123), + [anon_sym_try] = ACTIONS(3123), + [anon_sym_delete] = ACTIONS(3123), + [anon_sym_throw] = ACTIONS(3123), + [anon_sym_namespace] = ACTIONS(3123), + [anon_sym_using] = ACTIONS(3123), + [anon_sym_static_assert] = ACTIONS(3123), + [anon_sym_concept] = ACTIONS(3123), + [anon_sym_co_return] = ACTIONS(3123), + [anon_sym_co_yield] = ACTIONS(3123), + [anon_sym_R_DQUOTE] = ACTIONS(3125), + [anon_sym_LR_DQUOTE] = ACTIONS(3125), + [anon_sym_uR_DQUOTE] = ACTIONS(3125), + [anon_sym_UR_DQUOTE] = ACTIONS(3125), + [anon_sym_u8R_DQUOTE] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3123), + [anon_sym_new] = ACTIONS(3123), + [anon_sym_requires] = ACTIONS(3123), + [sym_this] = ACTIONS(3123), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3125), + [sym_semgrep_named_ellipsis] = ACTIONS(3125), }, - [579] = { - [sym_identifier] = ACTIONS(3155), - [aux_sym_preproc_include_token1] = ACTIONS(3155), - [aux_sym_preproc_def_token1] = ACTIONS(3155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3157), - [aux_sym_preproc_if_token1] = ACTIONS(3155), - [aux_sym_preproc_if_token2] = ACTIONS(3155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3155), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3155), - [sym_preproc_directive] = ACTIONS(3155), - [anon_sym_LPAREN2] = ACTIONS(3157), - [anon_sym_BANG] = ACTIONS(3157), - [anon_sym_TILDE] = ACTIONS(3157), - [anon_sym_DASH] = ACTIONS(3155), - [anon_sym_PLUS] = ACTIONS(3155), - [anon_sym_STAR] = ACTIONS(3157), - [anon_sym_AMP_AMP] = ACTIONS(3157), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_SEMI] = ACTIONS(3157), - [anon_sym___extension__] = ACTIONS(3155), - [anon_sym_typedef] = ACTIONS(3155), - [anon_sym_extern] = ACTIONS(3155), - [anon_sym___attribute__] = ACTIONS(3155), - [anon_sym_COLON_COLON] = ACTIONS(3157), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3157), - [anon_sym___declspec] = ACTIONS(3155), - [anon_sym___based] = ACTIONS(3155), - [anon_sym___cdecl] = ACTIONS(3155), - [anon_sym___clrcall] = ACTIONS(3155), - [anon_sym___stdcall] = ACTIONS(3155), - [anon_sym___fastcall] = ACTIONS(3155), - [anon_sym___thiscall] = ACTIONS(3155), - [anon_sym___vectorcall] = ACTIONS(3155), - [anon_sym_LBRACE] = ACTIONS(3157), - [anon_sym_signed] = ACTIONS(3155), - [anon_sym_unsigned] = ACTIONS(3155), - [anon_sym_long] = ACTIONS(3155), - [anon_sym_short] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_static] = ACTIONS(3155), - [anon_sym_register] = ACTIONS(3155), - [anon_sym_inline] = ACTIONS(3155), - [anon_sym___inline] = ACTIONS(3155), - [anon_sym___inline__] = ACTIONS(3155), - [anon_sym___forceinline] = ACTIONS(3155), - [anon_sym_thread_local] = ACTIONS(3155), - [anon_sym___thread] = ACTIONS(3155), - [anon_sym_const] = ACTIONS(3155), - [anon_sym_constexpr] = ACTIONS(3155), - [anon_sym_volatile] = ACTIONS(3155), - [anon_sym_restrict] = ACTIONS(3155), - [anon_sym___restrict__] = ACTIONS(3155), - [anon_sym__Atomic] = ACTIONS(3155), - [anon_sym__Noreturn] = ACTIONS(3155), - [anon_sym_noreturn] = ACTIONS(3155), - [anon_sym_mutable] = ACTIONS(3155), - [anon_sym_constinit] = ACTIONS(3155), - [anon_sym_consteval] = ACTIONS(3155), - [sym_primitive_type] = ACTIONS(3155), - [anon_sym_enum] = ACTIONS(3155), - [anon_sym_class] = ACTIONS(3155), - [anon_sym_struct] = ACTIONS(3155), - [anon_sym_union] = ACTIONS(3155), - [anon_sym_if] = ACTIONS(3155), - [anon_sym_else] = ACTIONS(3155), - [anon_sym_switch] = ACTIONS(3155), - [anon_sym_case] = ACTIONS(3155), - [anon_sym_default] = ACTIONS(3155), - [anon_sym_while] = ACTIONS(3155), - [anon_sym_do] = ACTIONS(3155), - [anon_sym_for] = ACTIONS(3155), - [anon_sym_return] = ACTIONS(3155), - [anon_sym_break] = ACTIONS(3155), - [anon_sym_continue] = ACTIONS(3155), - [anon_sym_goto] = ACTIONS(3155), - [anon_sym___try] = ACTIONS(3155), - [anon_sym___leave] = ACTIONS(3155), - [anon_sym_not] = ACTIONS(3155), - [anon_sym_compl] = ACTIONS(3155), - [anon_sym_DASH_DASH] = ACTIONS(3157), - [anon_sym_PLUS_PLUS] = ACTIONS(3157), - [anon_sym_sizeof] = ACTIONS(3155), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3155), - [anon_sym__Generic] = ACTIONS(3155), - [anon_sym_asm] = ACTIONS(3155), - [anon_sym___asm__] = ACTIONS(3155), - [sym_number_literal] = ACTIONS(3157), - [anon_sym_L_SQUOTE] = ACTIONS(3157), - [anon_sym_u_SQUOTE] = ACTIONS(3157), - [anon_sym_U_SQUOTE] = ACTIONS(3157), - [anon_sym_u8_SQUOTE] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3157), - [anon_sym_L_DQUOTE] = ACTIONS(3157), - [anon_sym_u_DQUOTE] = ACTIONS(3157), - [anon_sym_U_DQUOTE] = ACTIONS(3157), - [anon_sym_u8_DQUOTE] = ACTIONS(3157), - [anon_sym_DQUOTE] = ACTIONS(3157), - [sym_true] = ACTIONS(3155), - [sym_false] = ACTIONS(3155), - [anon_sym_NULL] = ACTIONS(3155), - [anon_sym_nullptr] = ACTIONS(3155), + [603] = { + [ts_builtin_sym_end] = ACTIONS(3145), + [sym_identifier] = ACTIONS(3143), + [aux_sym_preproc_include_token1] = ACTIONS(3143), + [aux_sym_preproc_def_token1] = ACTIONS(3143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3145), + [aux_sym_preproc_if_token1] = ACTIONS(3143), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3143), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3143), + [sym_preproc_directive] = ACTIONS(3143), + [anon_sym_LPAREN2] = ACTIONS(3145), + [anon_sym_BANG] = ACTIONS(3145), + [anon_sym_TILDE] = ACTIONS(3145), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(3145), + [anon_sym_AMP_AMP] = ACTIONS(3145), + [anon_sym_AMP] = ACTIONS(3143), + [anon_sym_SEMI] = ACTIONS(3145), + [anon_sym___extension__] = ACTIONS(3143), + [anon_sym_typedef] = ACTIONS(3143), + [anon_sym_extern] = ACTIONS(3143), + [anon_sym___attribute__] = ACTIONS(3143), + [anon_sym_COLON_COLON] = ACTIONS(3145), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3145), + [anon_sym___declspec] = ACTIONS(3143), + [anon_sym___based] = ACTIONS(3143), + [anon_sym___cdecl] = ACTIONS(3143), + [anon_sym___clrcall] = ACTIONS(3143), + [anon_sym___stdcall] = ACTIONS(3143), + [anon_sym___fastcall] = ACTIONS(3143), + [anon_sym___thiscall] = ACTIONS(3143), + [anon_sym___vectorcall] = ACTIONS(3143), + [anon_sym_LBRACE] = ACTIONS(3145), + [anon_sym_signed] = ACTIONS(3143), + [anon_sym_unsigned] = ACTIONS(3143), + [anon_sym_long] = ACTIONS(3143), + [anon_sym_short] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(3143), + [anon_sym_static] = ACTIONS(3143), + [anon_sym_register] = ACTIONS(3143), + [anon_sym_inline] = ACTIONS(3143), + [anon_sym___inline] = ACTIONS(3143), + [anon_sym___inline__] = ACTIONS(3143), + [anon_sym___forceinline] = ACTIONS(3143), + [anon_sym_thread_local] = ACTIONS(3143), + [anon_sym___thread] = ACTIONS(3143), + [anon_sym_const] = ACTIONS(3143), + [anon_sym_constexpr] = ACTIONS(3143), + [anon_sym_volatile] = ACTIONS(3143), + [anon_sym_restrict] = ACTIONS(3143), + [anon_sym___restrict__] = ACTIONS(3143), + [anon_sym__Atomic] = ACTIONS(3143), + [anon_sym__Noreturn] = ACTIONS(3143), + [anon_sym_noreturn] = ACTIONS(3143), + [anon_sym_mutable] = ACTIONS(3143), + [anon_sym_constinit] = ACTIONS(3143), + [anon_sym_consteval] = ACTIONS(3143), + [sym_primitive_type] = ACTIONS(3143), + [anon_sym_enum] = ACTIONS(3143), + [anon_sym_class] = ACTIONS(3143), + [anon_sym_struct] = ACTIONS(3143), + [anon_sym_union] = ACTIONS(3143), + [anon_sym_if] = ACTIONS(3143), + [anon_sym_else] = ACTIONS(3143), + [anon_sym_switch] = ACTIONS(3143), + [anon_sym_case] = ACTIONS(3143), + [anon_sym_default] = ACTIONS(3143), + [anon_sym_while] = ACTIONS(3143), + [anon_sym_do] = ACTIONS(3143), + [anon_sym_for] = ACTIONS(3143), + [anon_sym_return] = ACTIONS(3143), + [anon_sym_break] = ACTIONS(3143), + [anon_sym_continue] = ACTIONS(3143), + [anon_sym_goto] = ACTIONS(3143), + [anon_sym___try] = ACTIONS(3143), + [anon_sym___leave] = ACTIONS(3143), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3145), + [anon_sym_PLUS_PLUS] = ACTIONS(3145), + [anon_sym_sizeof] = ACTIONS(3143), + [anon_sym___alignof__] = ACTIONS(3143), + [anon_sym___alignof] = ACTIONS(3143), + [anon_sym__alignof] = ACTIONS(3143), + [anon_sym_alignof] = ACTIONS(3143), + [anon_sym__Alignof] = ACTIONS(3143), + [anon_sym_offsetof] = ACTIONS(3143), + [anon_sym__Generic] = ACTIONS(3143), + [anon_sym_asm] = ACTIONS(3143), + [anon_sym___asm__] = ACTIONS(3143), + [sym_number_literal] = ACTIONS(3145), + [anon_sym_L_SQUOTE] = ACTIONS(3145), + [anon_sym_u_SQUOTE] = ACTIONS(3145), + [anon_sym_U_SQUOTE] = ACTIONS(3145), + [anon_sym_u8_SQUOTE] = ACTIONS(3145), + [anon_sym_SQUOTE] = ACTIONS(3145), + [anon_sym_L_DQUOTE] = ACTIONS(3145), + [anon_sym_u_DQUOTE] = ACTIONS(3145), + [anon_sym_U_DQUOTE] = ACTIONS(3145), + [anon_sym_u8_DQUOTE] = ACTIONS(3145), + [anon_sym_DQUOTE] = ACTIONS(3145), + [sym_true] = ACTIONS(3143), + [sym_false] = ACTIONS(3143), + [anon_sym_NULL] = ACTIONS(3143), + [anon_sym_nullptr] = ACTIONS(3143), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3155), - [anon_sym_decltype] = ACTIONS(3155), - [anon_sym_virtual] = ACTIONS(3155), - [anon_sym_alignas] = ACTIONS(3155), - [anon_sym_explicit] = ACTIONS(3155), - [anon_sym_typename] = ACTIONS(3155), - [anon_sym_template] = ACTIONS(3155), - [anon_sym_operator] = ACTIONS(3155), - [anon_sym_try] = ACTIONS(3155), - [anon_sym_delete] = ACTIONS(3155), - [anon_sym_throw] = ACTIONS(3155), - [anon_sym_namespace] = ACTIONS(3155), - [anon_sym_using] = ACTIONS(3155), - [anon_sym_static_assert] = ACTIONS(3155), - [anon_sym_concept] = ACTIONS(3155), - [anon_sym_co_return] = ACTIONS(3155), - [anon_sym_co_yield] = ACTIONS(3155), - [anon_sym_R_DQUOTE] = ACTIONS(3157), - [anon_sym_LR_DQUOTE] = ACTIONS(3157), - [anon_sym_uR_DQUOTE] = ACTIONS(3157), - [anon_sym_UR_DQUOTE] = ACTIONS(3157), - [anon_sym_u8R_DQUOTE] = ACTIONS(3157), - [anon_sym_co_await] = ACTIONS(3155), - [anon_sym_new] = ACTIONS(3155), - [anon_sym_requires] = ACTIONS(3155), - [sym_this] = ACTIONS(3155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3157), - [sym_semgrep_named_ellipsis] = ACTIONS(3157), + [sym_auto] = ACTIONS(3143), + [anon_sym_decltype] = ACTIONS(3143), + [anon_sym_virtual] = ACTIONS(3143), + [anon_sym_alignas] = ACTIONS(3143), + [anon_sym_explicit] = ACTIONS(3143), + [anon_sym_typename] = ACTIONS(3143), + [anon_sym_template] = ACTIONS(3143), + [anon_sym_operator] = ACTIONS(3143), + [anon_sym_try] = ACTIONS(3143), + [anon_sym_delete] = ACTIONS(3143), + [anon_sym_throw] = ACTIONS(3143), + [anon_sym_namespace] = ACTIONS(3143), + [anon_sym_using] = ACTIONS(3143), + [anon_sym_static_assert] = ACTIONS(3143), + [anon_sym_concept] = ACTIONS(3143), + [anon_sym_co_return] = ACTIONS(3143), + [anon_sym_co_yield] = ACTIONS(3143), + [anon_sym_R_DQUOTE] = ACTIONS(3145), + [anon_sym_LR_DQUOTE] = ACTIONS(3145), + [anon_sym_uR_DQUOTE] = ACTIONS(3145), + [anon_sym_UR_DQUOTE] = ACTIONS(3145), + [anon_sym_u8R_DQUOTE] = ACTIONS(3145), + [anon_sym_co_await] = ACTIONS(3143), + [anon_sym_new] = ACTIONS(3143), + [anon_sym_requires] = ACTIONS(3143), + [sym_this] = ACTIONS(3143), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3145), + [sym_semgrep_named_ellipsis] = ACTIONS(3145), }, - [580] = { - [sym_identifier] = ACTIONS(3159), - [aux_sym_preproc_include_token1] = ACTIONS(3159), - [aux_sym_preproc_def_token1] = ACTIONS(3159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3161), - [aux_sym_preproc_if_token1] = ACTIONS(3159), - [aux_sym_preproc_if_token2] = ACTIONS(3159), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3159), - [sym_preproc_directive] = ACTIONS(3159), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3159), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym___extension__] = ACTIONS(3159), - [anon_sym_typedef] = ACTIONS(3159), - [anon_sym_extern] = ACTIONS(3159), - [anon_sym___attribute__] = ACTIONS(3159), - [anon_sym_COLON_COLON] = ACTIONS(3161), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), - [anon_sym___declspec] = ACTIONS(3159), - [anon_sym___based] = ACTIONS(3159), - [anon_sym___cdecl] = ACTIONS(3159), - [anon_sym___clrcall] = ACTIONS(3159), - [anon_sym___stdcall] = ACTIONS(3159), - [anon_sym___fastcall] = ACTIONS(3159), - [anon_sym___thiscall] = ACTIONS(3159), - [anon_sym___vectorcall] = ACTIONS(3159), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_signed] = ACTIONS(3159), - [anon_sym_unsigned] = ACTIONS(3159), - [anon_sym_long] = ACTIONS(3159), - [anon_sym_short] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(3159), - [anon_sym_static] = ACTIONS(3159), - [anon_sym_register] = ACTIONS(3159), - [anon_sym_inline] = ACTIONS(3159), - [anon_sym___inline] = ACTIONS(3159), - [anon_sym___inline__] = ACTIONS(3159), - [anon_sym___forceinline] = ACTIONS(3159), - [anon_sym_thread_local] = ACTIONS(3159), - [anon_sym___thread] = ACTIONS(3159), - [anon_sym_const] = ACTIONS(3159), - [anon_sym_constexpr] = ACTIONS(3159), - [anon_sym_volatile] = ACTIONS(3159), - [anon_sym_restrict] = ACTIONS(3159), - [anon_sym___restrict__] = ACTIONS(3159), - [anon_sym__Atomic] = ACTIONS(3159), - [anon_sym__Noreturn] = ACTIONS(3159), - [anon_sym_noreturn] = ACTIONS(3159), - [anon_sym_mutable] = ACTIONS(3159), - [anon_sym_constinit] = ACTIONS(3159), - [anon_sym_consteval] = ACTIONS(3159), - [sym_primitive_type] = ACTIONS(3159), - [anon_sym_enum] = ACTIONS(3159), - [anon_sym_class] = ACTIONS(3159), - [anon_sym_struct] = ACTIONS(3159), - [anon_sym_union] = ACTIONS(3159), - [anon_sym_if] = ACTIONS(3159), - [anon_sym_else] = ACTIONS(3159), - [anon_sym_switch] = ACTIONS(3159), - [anon_sym_case] = ACTIONS(3159), - [anon_sym_default] = ACTIONS(3159), - [anon_sym_while] = ACTIONS(3159), - [anon_sym_do] = ACTIONS(3159), - [anon_sym_for] = ACTIONS(3159), - [anon_sym_return] = ACTIONS(3159), - [anon_sym_break] = ACTIONS(3159), - [anon_sym_continue] = ACTIONS(3159), - [anon_sym_goto] = ACTIONS(3159), - [anon_sym___try] = ACTIONS(3159), - [anon_sym___leave] = ACTIONS(3159), - [anon_sym_not] = ACTIONS(3159), - [anon_sym_compl] = ACTIONS(3159), - [anon_sym_DASH_DASH] = ACTIONS(3161), - [anon_sym_PLUS_PLUS] = ACTIONS(3161), - [anon_sym_sizeof] = ACTIONS(3159), - [anon_sym___alignof__] = ACTIONS(3159), - [anon_sym___alignof] = ACTIONS(3159), - [anon_sym__alignof] = ACTIONS(3159), - [anon_sym_alignof] = ACTIONS(3159), - [anon_sym__Alignof] = ACTIONS(3159), - [anon_sym_offsetof] = ACTIONS(3159), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3159), - [anon_sym___asm__] = ACTIONS(3159), - [sym_number_literal] = ACTIONS(3161), - [anon_sym_L_SQUOTE] = ACTIONS(3161), - [anon_sym_u_SQUOTE] = ACTIONS(3161), - [anon_sym_U_SQUOTE] = ACTIONS(3161), - [anon_sym_u8_SQUOTE] = ACTIONS(3161), - [anon_sym_SQUOTE] = ACTIONS(3161), - [anon_sym_L_DQUOTE] = ACTIONS(3161), - [anon_sym_u_DQUOTE] = ACTIONS(3161), - [anon_sym_U_DQUOTE] = ACTIONS(3161), - [anon_sym_u8_DQUOTE] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(3161), - [sym_true] = ACTIONS(3159), - [sym_false] = ACTIONS(3159), - [anon_sym_NULL] = ACTIONS(3159), - [anon_sym_nullptr] = ACTIONS(3159), + [604] = { + [ts_builtin_sym_end] = ACTIONS(3129), + [sym_identifier] = ACTIONS(3127), + [aux_sym_preproc_include_token1] = ACTIONS(3127), + [aux_sym_preproc_def_token1] = ACTIONS(3127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3129), + [aux_sym_preproc_if_token1] = ACTIONS(3127), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3127), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3127), + [sym_preproc_directive] = ACTIONS(3127), + [anon_sym_LPAREN2] = ACTIONS(3129), + [anon_sym_BANG] = ACTIONS(3129), + [anon_sym_TILDE] = ACTIONS(3129), + [anon_sym_DASH] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(3127), + [anon_sym_STAR] = ACTIONS(3129), + [anon_sym_AMP_AMP] = ACTIONS(3129), + [anon_sym_AMP] = ACTIONS(3127), + [anon_sym_SEMI] = ACTIONS(3129), + [anon_sym___extension__] = ACTIONS(3127), + [anon_sym_typedef] = ACTIONS(3127), + [anon_sym_extern] = ACTIONS(3127), + [anon_sym___attribute__] = ACTIONS(3127), + [anon_sym_COLON_COLON] = ACTIONS(3129), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3129), + [anon_sym___declspec] = ACTIONS(3127), + [anon_sym___based] = ACTIONS(3127), + [anon_sym___cdecl] = ACTIONS(3127), + [anon_sym___clrcall] = ACTIONS(3127), + [anon_sym___stdcall] = ACTIONS(3127), + [anon_sym___fastcall] = ACTIONS(3127), + [anon_sym___thiscall] = ACTIONS(3127), + [anon_sym___vectorcall] = ACTIONS(3127), + [anon_sym_LBRACE] = ACTIONS(3129), + [anon_sym_signed] = ACTIONS(3127), + [anon_sym_unsigned] = ACTIONS(3127), + [anon_sym_long] = ACTIONS(3127), + [anon_sym_short] = ACTIONS(3127), + [anon_sym_LBRACK] = ACTIONS(3127), + [anon_sym_static] = ACTIONS(3127), + [anon_sym_register] = ACTIONS(3127), + [anon_sym_inline] = ACTIONS(3127), + [anon_sym___inline] = ACTIONS(3127), + [anon_sym___inline__] = ACTIONS(3127), + [anon_sym___forceinline] = ACTIONS(3127), + [anon_sym_thread_local] = ACTIONS(3127), + [anon_sym___thread] = ACTIONS(3127), + [anon_sym_const] = ACTIONS(3127), + [anon_sym_constexpr] = ACTIONS(3127), + [anon_sym_volatile] = ACTIONS(3127), + [anon_sym_restrict] = ACTIONS(3127), + [anon_sym___restrict__] = ACTIONS(3127), + [anon_sym__Atomic] = ACTIONS(3127), + [anon_sym__Noreturn] = ACTIONS(3127), + [anon_sym_noreturn] = ACTIONS(3127), + [anon_sym_mutable] = ACTIONS(3127), + [anon_sym_constinit] = ACTIONS(3127), + [anon_sym_consteval] = ACTIONS(3127), + [sym_primitive_type] = ACTIONS(3127), + [anon_sym_enum] = ACTIONS(3127), + [anon_sym_class] = ACTIONS(3127), + [anon_sym_struct] = ACTIONS(3127), + [anon_sym_union] = ACTIONS(3127), + [anon_sym_if] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(3127), + [anon_sym_switch] = ACTIONS(3127), + [anon_sym_case] = ACTIONS(3127), + [anon_sym_default] = ACTIONS(3127), + [anon_sym_while] = ACTIONS(3127), + [anon_sym_do] = ACTIONS(3127), + [anon_sym_for] = ACTIONS(3127), + [anon_sym_return] = ACTIONS(3127), + [anon_sym_break] = ACTIONS(3127), + [anon_sym_continue] = ACTIONS(3127), + [anon_sym_goto] = ACTIONS(3127), + [anon_sym___try] = ACTIONS(3127), + [anon_sym___leave] = ACTIONS(3127), + [anon_sym_not] = ACTIONS(3127), + [anon_sym_compl] = ACTIONS(3127), + [anon_sym_DASH_DASH] = ACTIONS(3129), + [anon_sym_PLUS_PLUS] = ACTIONS(3129), + [anon_sym_sizeof] = ACTIONS(3127), + [anon_sym___alignof__] = ACTIONS(3127), + [anon_sym___alignof] = ACTIONS(3127), + [anon_sym__alignof] = ACTIONS(3127), + [anon_sym_alignof] = ACTIONS(3127), + [anon_sym__Alignof] = ACTIONS(3127), + [anon_sym_offsetof] = ACTIONS(3127), + [anon_sym__Generic] = ACTIONS(3127), + [anon_sym_asm] = ACTIONS(3127), + [anon_sym___asm__] = ACTIONS(3127), + [sym_number_literal] = ACTIONS(3129), + [anon_sym_L_SQUOTE] = ACTIONS(3129), + [anon_sym_u_SQUOTE] = ACTIONS(3129), + [anon_sym_U_SQUOTE] = ACTIONS(3129), + [anon_sym_u8_SQUOTE] = ACTIONS(3129), + [anon_sym_SQUOTE] = ACTIONS(3129), + [anon_sym_L_DQUOTE] = ACTIONS(3129), + [anon_sym_u_DQUOTE] = ACTIONS(3129), + [anon_sym_U_DQUOTE] = ACTIONS(3129), + [anon_sym_u8_DQUOTE] = ACTIONS(3129), + [anon_sym_DQUOTE] = ACTIONS(3129), + [sym_true] = ACTIONS(3127), + [sym_false] = ACTIONS(3127), + [anon_sym_NULL] = ACTIONS(3127), + [anon_sym_nullptr] = ACTIONS(3127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3127), + [anon_sym_decltype] = ACTIONS(3127), + [anon_sym_virtual] = ACTIONS(3127), + [anon_sym_alignas] = ACTIONS(3127), + [anon_sym_explicit] = ACTIONS(3127), + [anon_sym_typename] = ACTIONS(3127), + [anon_sym_template] = ACTIONS(3127), + [anon_sym_operator] = ACTIONS(3127), + [anon_sym_try] = ACTIONS(3127), + [anon_sym_delete] = ACTIONS(3127), + [anon_sym_throw] = ACTIONS(3127), + [anon_sym_namespace] = ACTIONS(3127), + [anon_sym_using] = ACTIONS(3127), + [anon_sym_static_assert] = ACTIONS(3127), + [anon_sym_concept] = ACTIONS(3127), + [anon_sym_co_return] = ACTIONS(3127), + [anon_sym_co_yield] = ACTIONS(3127), + [anon_sym_R_DQUOTE] = ACTIONS(3129), + [anon_sym_LR_DQUOTE] = ACTIONS(3129), + [anon_sym_uR_DQUOTE] = ACTIONS(3129), + [anon_sym_UR_DQUOTE] = ACTIONS(3129), + [anon_sym_u8R_DQUOTE] = ACTIONS(3129), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3127), + [anon_sym_requires] = ACTIONS(3127), + [sym_this] = ACTIONS(3127), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3129), + [sym_semgrep_named_ellipsis] = ACTIONS(3129), + }, + [605] = { + [ts_builtin_sym_end] = ACTIONS(3117), + [sym_identifier] = ACTIONS(3115), + [aux_sym_preproc_include_token1] = ACTIONS(3115), + [aux_sym_preproc_def_token1] = ACTIONS(3115), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3117), + [aux_sym_preproc_if_token1] = ACTIONS(3115), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3115), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3115), + [sym_preproc_directive] = ACTIONS(3115), + [anon_sym_LPAREN2] = ACTIONS(3117), + [anon_sym_BANG] = ACTIONS(3117), + [anon_sym_TILDE] = ACTIONS(3117), + [anon_sym_DASH] = ACTIONS(3115), + [anon_sym_PLUS] = ACTIONS(3115), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP_AMP] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3115), + [anon_sym_SEMI] = ACTIONS(3117), + [anon_sym___extension__] = ACTIONS(3115), + [anon_sym_typedef] = ACTIONS(3115), + [anon_sym_extern] = ACTIONS(3115), + [anon_sym___attribute__] = ACTIONS(3115), + [anon_sym_COLON_COLON] = ACTIONS(3117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3117), + [anon_sym___declspec] = ACTIONS(3115), + [anon_sym___based] = ACTIONS(3115), + [anon_sym___cdecl] = ACTIONS(3115), + [anon_sym___clrcall] = ACTIONS(3115), + [anon_sym___stdcall] = ACTIONS(3115), + [anon_sym___fastcall] = ACTIONS(3115), + [anon_sym___thiscall] = ACTIONS(3115), + [anon_sym___vectorcall] = ACTIONS(3115), + [anon_sym_LBRACE] = ACTIONS(3117), + [anon_sym_signed] = ACTIONS(3115), + [anon_sym_unsigned] = ACTIONS(3115), + [anon_sym_long] = ACTIONS(3115), + [anon_sym_short] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3115), + [anon_sym_static] = ACTIONS(3115), + [anon_sym_register] = ACTIONS(3115), + [anon_sym_inline] = ACTIONS(3115), + [anon_sym___inline] = ACTIONS(3115), + [anon_sym___inline__] = ACTIONS(3115), + [anon_sym___forceinline] = ACTIONS(3115), + [anon_sym_thread_local] = ACTIONS(3115), + [anon_sym___thread] = ACTIONS(3115), + [anon_sym_const] = ACTIONS(3115), + [anon_sym_constexpr] = ACTIONS(3115), + [anon_sym_volatile] = ACTIONS(3115), + [anon_sym_restrict] = ACTIONS(3115), + [anon_sym___restrict__] = ACTIONS(3115), + [anon_sym__Atomic] = ACTIONS(3115), + [anon_sym__Noreturn] = ACTIONS(3115), + [anon_sym_noreturn] = ACTIONS(3115), + [anon_sym_mutable] = ACTIONS(3115), + [anon_sym_constinit] = ACTIONS(3115), + [anon_sym_consteval] = ACTIONS(3115), + [sym_primitive_type] = ACTIONS(3115), + [anon_sym_enum] = ACTIONS(3115), + [anon_sym_class] = ACTIONS(3115), + [anon_sym_struct] = ACTIONS(3115), + [anon_sym_union] = ACTIONS(3115), + [anon_sym_if] = ACTIONS(3115), + [anon_sym_else] = ACTIONS(3115), + [anon_sym_switch] = ACTIONS(3115), + [anon_sym_case] = ACTIONS(3115), + [anon_sym_default] = ACTIONS(3115), + [anon_sym_while] = ACTIONS(3115), + [anon_sym_do] = ACTIONS(3115), + [anon_sym_for] = ACTIONS(3115), + [anon_sym_return] = ACTIONS(3115), + [anon_sym_break] = ACTIONS(3115), + [anon_sym_continue] = ACTIONS(3115), + [anon_sym_goto] = ACTIONS(3115), + [anon_sym___try] = ACTIONS(3115), + [anon_sym___leave] = ACTIONS(3115), + [anon_sym_not] = ACTIONS(3115), + [anon_sym_compl] = ACTIONS(3115), + [anon_sym_DASH_DASH] = ACTIONS(3117), + [anon_sym_PLUS_PLUS] = ACTIONS(3117), + [anon_sym_sizeof] = ACTIONS(3115), + [anon_sym___alignof__] = ACTIONS(3115), + [anon_sym___alignof] = ACTIONS(3115), + [anon_sym__alignof] = ACTIONS(3115), + [anon_sym_alignof] = ACTIONS(3115), + [anon_sym__Alignof] = ACTIONS(3115), + [anon_sym_offsetof] = ACTIONS(3115), + [anon_sym__Generic] = ACTIONS(3115), + [anon_sym_asm] = ACTIONS(3115), + [anon_sym___asm__] = ACTIONS(3115), + [sym_number_literal] = ACTIONS(3117), + [anon_sym_L_SQUOTE] = ACTIONS(3117), + [anon_sym_u_SQUOTE] = ACTIONS(3117), + [anon_sym_U_SQUOTE] = ACTIONS(3117), + [anon_sym_u8_SQUOTE] = ACTIONS(3117), + [anon_sym_SQUOTE] = ACTIONS(3117), + [anon_sym_L_DQUOTE] = ACTIONS(3117), + [anon_sym_u_DQUOTE] = ACTIONS(3117), + [anon_sym_U_DQUOTE] = ACTIONS(3117), + [anon_sym_u8_DQUOTE] = ACTIONS(3117), + [anon_sym_DQUOTE] = ACTIONS(3117), + [sym_true] = ACTIONS(3115), + [sym_false] = ACTIONS(3115), + [anon_sym_NULL] = ACTIONS(3115), + [anon_sym_nullptr] = ACTIONS(3115), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3115), + [anon_sym_decltype] = ACTIONS(3115), + [anon_sym_virtual] = ACTIONS(3115), + [anon_sym_alignas] = ACTIONS(3115), + [anon_sym_explicit] = ACTIONS(3115), + [anon_sym_typename] = ACTIONS(3115), + [anon_sym_template] = ACTIONS(3115), + [anon_sym_operator] = ACTIONS(3115), + [anon_sym_try] = ACTIONS(3115), + [anon_sym_delete] = ACTIONS(3115), + [anon_sym_throw] = ACTIONS(3115), + [anon_sym_namespace] = ACTIONS(3115), + [anon_sym_using] = ACTIONS(3115), + [anon_sym_static_assert] = ACTIONS(3115), + [anon_sym_concept] = ACTIONS(3115), + [anon_sym_co_return] = ACTIONS(3115), + [anon_sym_co_yield] = ACTIONS(3115), + [anon_sym_R_DQUOTE] = ACTIONS(3117), + [anon_sym_LR_DQUOTE] = ACTIONS(3117), + [anon_sym_uR_DQUOTE] = ACTIONS(3117), + [anon_sym_UR_DQUOTE] = ACTIONS(3117), + [anon_sym_u8R_DQUOTE] = ACTIONS(3117), + [anon_sym_co_await] = ACTIONS(3115), + [anon_sym_new] = ACTIONS(3115), + [anon_sym_requires] = ACTIONS(3115), + [sym_this] = ACTIONS(3115), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3117), + [sym_semgrep_named_ellipsis] = ACTIONS(3117), + }, + [606] = { + [sym_preproc_def] = STATE(2142), + [sym_preproc_function_def] = STATE(2142), + [sym_preproc_call] = STATE(2142), + [sym_preproc_if_in_field_declaration_list] = STATE(2142), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2142), + [sym_preproc_else_in_field_declaration_list] = STATE(9279), + [sym_preproc_elif_in_field_declaration_list] = STATE(9279), + [sym_type_definition] = STATE(2142), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6398), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7291), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(607), + [sym_field_declaration] = STATE(2142), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2142), + [sym_operator_cast] = STATE(7774), + [sym_inline_method_definition] = STATE(2142), + [sym_constructor_specifiers] = STATE(1937), + [sym_operator_cast_definition] = STATE(2142), + [sym_operator_cast_declaration] = STATE(2142), + [sym_constructor_or_destructor_definition] = STATE(2142), + [sym_constructor_or_destructor_declaration] = STATE(2142), + [sym_friend_declaration] = STATE(2142), + [sym_access_specifier] = STATE(9170), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2142), + [sym_alias_declaration] = STATE(2142), + [sym_static_assert_declaration] = STATE(2142), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7774), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2142), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(607), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1937), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(3839), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3841), + [aux_sym_preproc_if_token1] = ACTIONS(3843), + [aux_sym_preproc_if_token2] = ACTIONS(3869), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3847), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3849), + [aux_sym_preproc_else_token1] = ACTIONS(3241), + [aux_sym_preproc_elif_token1] = ACTIONS(3243), + [sym_preproc_directive] = ACTIONS(3851), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(3853), + [anon_sym_typedef] = ACTIONS(3855), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3159), - [anon_sym_decltype] = ACTIONS(3159), - [anon_sym_virtual] = ACTIONS(3159), - [anon_sym_alignas] = ACTIONS(3159), - [anon_sym_explicit] = ACTIONS(3159), - [anon_sym_typename] = ACTIONS(3159), - [anon_sym_template] = ACTIONS(3159), - [anon_sym_operator] = ACTIONS(3159), - [anon_sym_try] = ACTIONS(3159), - [anon_sym_delete] = ACTIONS(3159), - [anon_sym_throw] = ACTIONS(3159), - [anon_sym_namespace] = ACTIONS(3159), - [anon_sym_using] = ACTIONS(3159), - [anon_sym_static_assert] = ACTIONS(3159), - [anon_sym_concept] = ACTIONS(3159), - [anon_sym_co_return] = ACTIONS(3159), - [anon_sym_co_yield] = ACTIONS(3159), - [anon_sym_R_DQUOTE] = ACTIONS(3161), - [anon_sym_LR_DQUOTE] = ACTIONS(3161), - [anon_sym_uR_DQUOTE] = ACTIONS(3161), - [anon_sym_UR_DQUOTE] = ACTIONS(3161), - [anon_sym_u8R_DQUOTE] = ACTIONS(3161), - [anon_sym_co_await] = ACTIONS(3159), - [anon_sym_new] = ACTIONS(3159), - [anon_sym_requires] = ACTIONS(3159), - [sym_this] = ACTIONS(3159), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3161), - [sym_semgrep_named_ellipsis] = ACTIONS(3161), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(3857), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(3859), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3861), + [anon_sym_static_assert] = ACTIONS(3863), + [sym_semgrep_metavar] = ACTIONS(3865), }, - [581] = { + [607] = { + [sym_preproc_def] = STATE(2142), + [sym_preproc_function_def] = STATE(2142), + [sym_preproc_call] = STATE(2142), + [sym_preproc_if_in_field_declaration_list] = STATE(2142), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2142), + [sym_preproc_else_in_field_declaration_list] = STATE(9364), + [sym_preproc_elif_in_field_declaration_list] = STATE(9364), + [sym_type_definition] = STATE(2142), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6398), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7291), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(803), + [sym_field_declaration] = STATE(2142), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2142), + [sym_operator_cast] = STATE(7774), + [sym_inline_method_definition] = STATE(2142), + [sym_constructor_specifiers] = STATE(1937), + [sym_operator_cast_definition] = STATE(2142), + [sym_operator_cast_declaration] = STATE(2142), + [sym_constructor_or_destructor_definition] = STATE(2142), + [sym_constructor_or_destructor_declaration] = STATE(2142), + [sym_friend_declaration] = STATE(2142), + [sym_access_specifier] = STATE(9170), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2142), + [sym_alias_declaration] = STATE(2142), + [sym_static_assert_declaration] = STATE(2142), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7774), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2142), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(803), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1937), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(3839), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3841), + [aux_sym_preproc_if_token1] = ACTIONS(3843), + [aux_sym_preproc_if_token2] = ACTIONS(3871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3847), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3849), + [aux_sym_preproc_else_token1] = ACTIONS(3241), + [aux_sym_preproc_elif_token1] = ACTIONS(3243), + [sym_preproc_directive] = ACTIONS(3851), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(3853), + [anon_sym_typedef] = ACTIONS(3855), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(3857), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(3859), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3861), + [anon_sym_static_assert] = ACTIONS(3863), + [sym_semgrep_metavar] = ACTIONS(3865), + }, + [608] = { + [ts_builtin_sym_end] = ACTIONS(3191), + [sym_identifier] = ACTIONS(3189), + [aux_sym_preproc_include_token1] = ACTIONS(3189), + [aux_sym_preproc_def_token1] = ACTIONS(3189), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), + [aux_sym_preproc_if_token1] = ACTIONS(3189), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3189), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3189), + [sym_preproc_directive] = ACTIONS(3189), + [anon_sym_LPAREN2] = ACTIONS(3191), + [anon_sym_BANG] = ACTIONS(3191), + [anon_sym_TILDE] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3189), + [anon_sym_STAR] = ACTIONS(3191), + [anon_sym_AMP_AMP] = ACTIONS(3191), + [anon_sym_AMP] = ACTIONS(3189), + [anon_sym_SEMI] = ACTIONS(3191), + [anon_sym___extension__] = ACTIONS(3189), + [anon_sym_typedef] = ACTIONS(3189), + [anon_sym_extern] = ACTIONS(3189), + [anon_sym___attribute__] = ACTIONS(3189), + [anon_sym_COLON_COLON] = ACTIONS(3191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3191), + [anon_sym___declspec] = ACTIONS(3189), + [anon_sym___based] = ACTIONS(3189), + [anon_sym___cdecl] = ACTIONS(3189), + [anon_sym___clrcall] = ACTIONS(3189), + [anon_sym___stdcall] = ACTIONS(3189), + [anon_sym___fastcall] = ACTIONS(3189), + [anon_sym___thiscall] = ACTIONS(3189), + [anon_sym___vectorcall] = ACTIONS(3189), + [anon_sym_LBRACE] = ACTIONS(3191), + [anon_sym_signed] = ACTIONS(3189), + [anon_sym_unsigned] = ACTIONS(3189), + [anon_sym_long] = ACTIONS(3189), + [anon_sym_short] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_static] = ACTIONS(3189), + [anon_sym_register] = ACTIONS(3189), + [anon_sym_inline] = ACTIONS(3189), + [anon_sym___inline] = ACTIONS(3189), + [anon_sym___inline__] = ACTIONS(3189), + [anon_sym___forceinline] = ACTIONS(3189), + [anon_sym_thread_local] = ACTIONS(3189), + [anon_sym___thread] = ACTIONS(3189), + [anon_sym_const] = ACTIONS(3189), + [anon_sym_constexpr] = ACTIONS(3189), + [anon_sym_volatile] = ACTIONS(3189), + [anon_sym_restrict] = ACTIONS(3189), + [anon_sym___restrict__] = ACTIONS(3189), + [anon_sym__Atomic] = ACTIONS(3189), + [anon_sym__Noreturn] = ACTIONS(3189), + [anon_sym_noreturn] = ACTIONS(3189), + [anon_sym_mutable] = ACTIONS(3189), + [anon_sym_constinit] = ACTIONS(3189), + [anon_sym_consteval] = ACTIONS(3189), + [sym_primitive_type] = ACTIONS(3189), + [anon_sym_enum] = ACTIONS(3189), + [anon_sym_class] = ACTIONS(3189), + [anon_sym_struct] = ACTIONS(3189), + [anon_sym_union] = ACTIONS(3189), + [anon_sym_if] = ACTIONS(3189), + [anon_sym_else] = ACTIONS(3189), + [anon_sym_switch] = ACTIONS(3189), + [anon_sym_case] = ACTIONS(3189), + [anon_sym_default] = ACTIONS(3189), + [anon_sym_while] = ACTIONS(3189), + [anon_sym_do] = ACTIONS(3189), + [anon_sym_for] = ACTIONS(3189), + [anon_sym_return] = ACTIONS(3189), + [anon_sym_break] = ACTIONS(3189), + [anon_sym_continue] = ACTIONS(3189), + [anon_sym_goto] = ACTIONS(3189), + [anon_sym___try] = ACTIONS(3189), + [anon_sym___leave] = ACTIONS(3189), + [anon_sym_not] = ACTIONS(3189), + [anon_sym_compl] = ACTIONS(3189), + [anon_sym_DASH_DASH] = ACTIONS(3191), + [anon_sym_PLUS_PLUS] = ACTIONS(3191), + [anon_sym_sizeof] = ACTIONS(3189), + [anon_sym___alignof__] = ACTIONS(3189), + [anon_sym___alignof] = ACTIONS(3189), + [anon_sym__alignof] = ACTIONS(3189), + [anon_sym_alignof] = ACTIONS(3189), + [anon_sym__Alignof] = ACTIONS(3189), + [anon_sym_offsetof] = ACTIONS(3189), + [anon_sym__Generic] = ACTIONS(3189), + [anon_sym_asm] = ACTIONS(3189), + [anon_sym___asm__] = ACTIONS(3189), + [sym_number_literal] = ACTIONS(3191), + [anon_sym_L_SQUOTE] = ACTIONS(3191), + [anon_sym_u_SQUOTE] = ACTIONS(3191), + [anon_sym_U_SQUOTE] = ACTIONS(3191), + [anon_sym_u8_SQUOTE] = ACTIONS(3191), + [anon_sym_SQUOTE] = ACTIONS(3191), + [anon_sym_L_DQUOTE] = ACTIONS(3191), + [anon_sym_u_DQUOTE] = ACTIONS(3191), + [anon_sym_U_DQUOTE] = ACTIONS(3191), + [anon_sym_u8_DQUOTE] = ACTIONS(3191), + [anon_sym_DQUOTE] = ACTIONS(3191), + [sym_true] = ACTIONS(3189), + [sym_false] = ACTIONS(3189), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3189), + [anon_sym_decltype] = ACTIONS(3189), + [anon_sym_virtual] = ACTIONS(3189), + [anon_sym_alignas] = ACTIONS(3189), + [anon_sym_explicit] = ACTIONS(3189), + [anon_sym_typename] = ACTIONS(3189), + [anon_sym_template] = ACTIONS(3189), + [anon_sym_operator] = ACTIONS(3189), + [anon_sym_try] = ACTIONS(3189), + [anon_sym_delete] = ACTIONS(3189), + [anon_sym_throw] = ACTIONS(3189), + [anon_sym_namespace] = ACTIONS(3189), + [anon_sym_using] = ACTIONS(3189), + [anon_sym_static_assert] = ACTIONS(3189), + [anon_sym_concept] = ACTIONS(3189), + [anon_sym_co_return] = ACTIONS(3189), + [anon_sym_co_yield] = ACTIONS(3189), + [anon_sym_R_DQUOTE] = ACTIONS(3191), + [anon_sym_LR_DQUOTE] = ACTIONS(3191), + [anon_sym_uR_DQUOTE] = ACTIONS(3191), + [anon_sym_UR_DQUOTE] = ACTIONS(3191), + [anon_sym_u8R_DQUOTE] = ACTIONS(3191), + [anon_sym_co_await] = ACTIONS(3189), + [anon_sym_new] = ACTIONS(3189), + [anon_sym_requires] = ACTIONS(3189), + [sym_this] = ACTIONS(3189), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3191), + [sym_semgrep_named_ellipsis] = ACTIONS(3191), + }, + [609] = { + [sym_identifier] = ACTIONS(3193), + [aux_sym_preproc_include_token1] = ACTIONS(3193), + [aux_sym_preproc_def_token1] = ACTIONS(3193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3195), + [aux_sym_preproc_if_token1] = ACTIONS(3193), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3193), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3193), + [sym_preproc_directive] = ACTIONS(3193), + [anon_sym_LPAREN2] = ACTIONS(3195), + [anon_sym_BANG] = ACTIONS(3195), + [anon_sym_TILDE] = ACTIONS(3195), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_AMP] = ACTIONS(3193), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym___extension__] = ACTIONS(3193), + [anon_sym_typedef] = ACTIONS(3193), + [anon_sym_extern] = ACTIONS(3193), + [anon_sym___attribute__] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(3195), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3195), + [anon_sym___declspec] = ACTIONS(3193), + [anon_sym___based] = ACTIONS(3193), + [anon_sym___cdecl] = ACTIONS(3193), + [anon_sym___clrcall] = ACTIONS(3193), + [anon_sym___stdcall] = ACTIONS(3193), + [anon_sym___fastcall] = ACTIONS(3193), + [anon_sym___thiscall] = ACTIONS(3193), + [anon_sym___vectorcall] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(3195), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_signed] = ACTIONS(3193), + [anon_sym_unsigned] = ACTIONS(3193), + [anon_sym_long] = ACTIONS(3193), + [anon_sym_short] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(3193), + [anon_sym_static] = ACTIONS(3193), + [anon_sym_register] = ACTIONS(3193), + [anon_sym_inline] = ACTIONS(3193), + [anon_sym___inline] = ACTIONS(3193), + [anon_sym___inline__] = ACTIONS(3193), + [anon_sym___forceinline] = ACTIONS(3193), + [anon_sym_thread_local] = ACTIONS(3193), + [anon_sym___thread] = ACTIONS(3193), + [anon_sym_const] = ACTIONS(3193), + [anon_sym_constexpr] = ACTIONS(3193), + [anon_sym_volatile] = ACTIONS(3193), + [anon_sym_restrict] = ACTIONS(3193), + [anon_sym___restrict__] = ACTIONS(3193), + [anon_sym__Atomic] = ACTIONS(3193), + [anon_sym__Noreturn] = ACTIONS(3193), + [anon_sym_noreturn] = ACTIONS(3193), + [anon_sym_mutable] = ACTIONS(3193), + [anon_sym_constinit] = ACTIONS(3193), + [anon_sym_consteval] = ACTIONS(3193), + [sym_primitive_type] = ACTIONS(3193), + [anon_sym_enum] = ACTIONS(3193), + [anon_sym_class] = ACTIONS(3193), + [anon_sym_struct] = ACTIONS(3193), + [anon_sym_union] = ACTIONS(3193), + [anon_sym_if] = ACTIONS(3193), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_switch] = ACTIONS(3193), + [anon_sym_case] = ACTIONS(3193), + [anon_sym_default] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_do] = ACTIONS(3193), + [anon_sym_for] = ACTIONS(3193), + [anon_sym_return] = ACTIONS(3193), + [anon_sym_break] = ACTIONS(3193), + [anon_sym_continue] = ACTIONS(3193), + [anon_sym_goto] = ACTIONS(3193), + [anon_sym___try] = ACTIONS(3193), + [anon_sym___leave] = ACTIONS(3193), + [anon_sym_not] = ACTIONS(3193), + [anon_sym_compl] = ACTIONS(3193), + [anon_sym_DASH_DASH] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3195), + [anon_sym_sizeof] = ACTIONS(3193), + [anon_sym___alignof__] = ACTIONS(3193), + [anon_sym___alignof] = ACTIONS(3193), + [anon_sym__alignof] = ACTIONS(3193), + [anon_sym_alignof] = ACTIONS(3193), + [anon_sym__Alignof] = ACTIONS(3193), + [anon_sym_offsetof] = ACTIONS(3193), + [anon_sym__Generic] = ACTIONS(3193), + [anon_sym_asm] = ACTIONS(3193), + [anon_sym___asm__] = ACTIONS(3193), + [sym_number_literal] = ACTIONS(3195), + [anon_sym_L_SQUOTE] = ACTIONS(3195), + [anon_sym_u_SQUOTE] = ACTIONS(3195), + [anon_sym_U_SQUOTE] = ACTIONS(3195), + [anon_sym_u8_SQUOTE] = ACTIONS(3195), + [anon_sym_SQUOTE] = ACTIONS(3195), + [anon_sym_L_DQUOTE] = ACTIONS(3195), + [anon_sym_u_DQUOTE] = ACTIONS(3195), + [anon_sym_U_DQUOTE] = ACTIONS(3195), + [anon_sym_u8_DQUOTE] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(3195), + [sym_true] = ACTIONS(3193), + [sym_false] = ACTIONS(3193), + [anon_sym_NULL] = ACTIONS(3193), + [anon_sym_nullptr] = ACTIONS(3193), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3193), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_virtual] = ACTIONS(3193), + [anon_sym_alignas] = ACTIONS(3193), + [anon_sym_explicit] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3193), + [anon_sym_template] = ACTIONS(3193), + [anon_sym_operator] = ACTIONS(3193), + [anon_sym_try] = ACTIONS(3193), + [anon_sym_delete] = ACTIONS(3193), + [anon_sym_throw] = ACTIONS(3193), + [anon_sym_namespace] = ACTIONS(3193), + [anon_sym_using] = ACTIONS(3193), + [anon_sym_static_assert] = ACTIONS(3193), + [anon_sym_concept] = ACTIONS(3193), + [anon_sym_co_return] = ACTIONS(3193), + [anon_sym_co_yield] = ACTIONS(3193), + [anon_sym_R_DQUOTE] = ACTIONS(3195), + [anon_sym_LR_DQUOTE] = ACTIONS(3195), + [anon_sym_uR_DQUOTE] = ACTIONS(3195), + [anon_sym_UR_DQUOTE] = ACTIONS(3195), + [anon_sym_u8R_DQUOTE] = ACTIONS(3195), + [anon_sym_co_await] = ACTIONS(3193), + [anon_sym_new] = ACTIONS(3193), + [anon_sym_requires] = ACTIONS(3193), + [sym_this] = ACTIONS(3193), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3195), + [sym_semgrep_named_ellipsis] = ACTIONS(3195), + }, + [610] = { + [ts_builtin_sym_end] = ACTIONS(3133), + [sym_identifier] = ACTIONS(3131), + [aux_sym_preproc_include_token1] = ACTIONS(3131), + [aux_sym_preproc_def_token1] = ACTIONS(3131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3133), + [aux_sym_preproc_if_token1] = ACTIONS(3131), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3131), + [sym_preproc_directive] = ACTIONS(3131), + [anon_sym_LPAREN2] = ACTIONS(3133), + [anon_sym_BANG] = ACTIONS(3133), + [anon_sym_TILDE] = ACTIONS(3133), + [anon_sym_DASH] = ACTIONS(3131), + [anon_sym_PLUS] = ACTIONS(3131), + [anon_sym_STAR] = ACTIONS(3133), + [anon_sym_AMP_AMP] = ACTIONS(3133), + [anon_sym_AMP] = ACTIONS(3131), + [anon_sym_SEMI] = ACTIONS(3133), + [anon_sym___extension__] = ACTIONS(3131), + [anon_sym_typedef] = ACTIONS(3131), + [anon_sym_extern] = ACTIONS(3131), + [anon_sym___attribute__] = ACTIONS(3131), + [anon_sym_COLON_COLON] = ACTIONS(3133), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3133), + [anon_sym___declspec] = ACTIONS(3131), + [anon_sym___based] = ACTIONS(3131), + [anon_sym___cdecl] = ACTIONS(3131), + [anon_sym___clrcall] = ACTIONS(3131), + [anon_sym___stdcall] = ACTIONS(3131), + [anon_sym___fastcall] = ACTIONS(3131), + [anon_sym___thiscall] = ACTIONS(3131), + [anon_sym___vectorcall] = ACTIONS(3131), + [anon_sym_LBRACE] = ACTIONS(3133), + [anon_sym_signed] = ACTIONS(3131), + [anon_sym_unsigned] = ACTIONS(3131), + [anon_sym_long] = ACTIONS(3131), + [anon_sym_short] = ACTIONS(3131), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_static] = ACTIONS(3131), + [anon_sym_register] = ACTIONS(3131), + [anon_sym_inline] = ACTIONS(3131), + [anon_sym___inline] = ACTIONS(3131), + [anon_sym___inline__] = ACTIONS(3131), + [anon_sym___forceinline] = ACTIONS(3131), + [anon_sym_thread_local] = ACTIONS(3131), + [anon_sym___thread] = ACTIONS(3131), + [anon_sym_const] = ACTIONS(3131), + [anon_sym_constexpr] = ACTIONS(3131), + [anon_sym_volatile] = ACTIONS(3131), + [anon_sym_restrict] = ACTIONS(3131), + [anon_sym___restrict__] = ACTIONS(3131), + [anon_sym__Atomic] = ACTIONS(3131), + [anon_sym__Noreturn] = ACTIONS(3131), + [anon_sym_noreturn] = ACTIONS(3131), + [anon_sym_mutable] = ACTIONS(3131), + [anon_sym_constinit] = ACTIONS(3131), + [anon_sym_consteval] = ACTIONS(3131), + [sym_primitive_type] = ACTIONS(3131), + [anon_sym_enum] = ACTIONS(3131), + [anon_sym_class] = ACTIONS(3131), + [anon_sym_struct] = ACTIONS(3131), + [anon_sym_union] = ACTIONS(3131), + [anon_sym_if] = ACTIONS(3131), + [anon_sym_else] = ACTIONS(3131), + [anon_sym_switch] = ACTIONS(3131), + [anon_sym_case] = ACTIONS(3131), + [anon_sym_default] = ACTIONS(3131), + [anon_sym_while] = ACTIONS(3131), + [anon_sym_do] = ACTIONS(3131), + [anon_sym_for] = ACTIONS(3131), + [anon_sym_return] = ACTIONS(3131), + [anon_sym_break] = ACTIONS(3131), + [anon_sym_continue] = ACTIONS(3131), + [anon_sym_goto] = ACTIONS(3131), + [anon_sym___try] = ACTIONS(3131), + [anon_sym___leave] = ACTIONS(3131), + [anon_sym_not] = ACTIONS(3131), + [anon_sym_compl] = ACTIONS(3131), + [anon_sym_DASH_DASH] = ACTIONS(3133), + [anon_sym_PLUS_PLUS] = ACTIONS(3133), + [anon_sym_sizeof] = ACTIONS(3131), + [anon_sym___alignof__] = ACTIONS(3131), + [anon_sym___alignof] = ACTIONS(3131), + [anon_sym__alignof] = ACTIONS(3131), + [anon_sym_alignof] = ACTIONS(3131), + [anon_sym__Alignof] = ACTIONS(3131), + [anon_sym_offsetof] = ACTIONS(3131), + [anon_sym__Generic] = ACTIONS(3131), + [anon_sym_asm] = ACTIONS(3131), + [anon_sym___asm__] = ACTIONS(3131), + [sym_number_literal] = ACTIONS(3133), + [anon_sym_L_SQUOTE] = ACTIONS(3133), + [anon_sym_u_SQUOTE] = ACTIONS(3133), + [anon_sym_U_SQUOTE] = ACTIONS(3133), + [anon_sym_u8_SQUOTE] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3133), + [anon_sym_L_DQUOTE] = ACTIONS(3133), + [anon_sym_u_DQUOTE] = ACTIONS(3133), + [anon_sym_U_DQUOTE] = ACTIONS(3133), + [anon_sym_u8_DQUOTE] = ACTIONS(3133), + [anon_sym_DQUOTE] = ACTIONS(3133), + [sym_true] = ACTIONS(3131), + [sym_false] = ACTIONS(3131), + [anon_sym_NULL] = ACTIONS(3131), + [anon_sym_nullptr] = ACTIONS(3131), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3131), + [anon_sym_decltype] = ACTIONS(3131), + [anon_sym_virtual] = ACTIONS(3131), + [anon_sym_alignas] = ACTIONS(3131), + [anon_sym_explicit] = ACTIONS(3131), + [anon_sym_typename] = ACTIONS(3131), + [anon_sym_template] = ACTIONS(3131), + [anon_sym_operator] = ACTIONS(3131), + [anon_sym_try] = ACTIONS(3131), + [anon_sym_delete] = ACTIONS(3131), + [anon_sym_throw] = ACTIONS(3131), + [anon_sym_namespace] = ACTIONS(3131), + [anon_sym_using] = ACTIONS(3131), + [anon_sym_static_assert] = ACTIONS(3131), + [anon_sym_concept] = ACTIONS(3131), + [anon_sym_co_return] = ACTIONS(3131), + [anon_sym_co_yield] = ACTIONS(3131), + [anon_sym_R_DQUOTE] = ACTIONS(3133), + [anon_sym_LR_DQUOTE] = ACTIONS(3133), + [anon_sym_uR_DQUOTE] = ACTIONS(3133), + [anon_sym_UR_DQUOTE] = ACTIONS(3133), + [anon_sym_u8R_DQUOTE] = ACTIONS(3133), + [anon_sym_co_await] = ACTIONS(3131), + [anon_sym_new] = ACTIONS(3131), + [anon_sym_requires] = ACTIONS(3131), + [sym_this] = ACTIONS(3131), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3133), + [sym_semgrep_named_ellipsis] = ACTIONS(3133), + }, + [611] = { [sym_identifier] = ACTIONS(3167), [aux_sym_preproc_include_token1] = ACTIONS(3167), [aux_sym_preproc_def_token1] = ACTIONS(3167), @@ -145929,416 +140175,687 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3169), [sym_semgrep_named_ellipsis] = ACTIONS(3169), }, - [582] = { - [sym_identifier] = ACTIONS(3171), - [aux_sym_preproc_include_token1] = ACTIONS(3171), - [aux_sym_preproc_def_token1] = ACTIONS(3171), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3173), - [aux_sym_preproc_if_token1] = ACTIONS(3171), - [aux_sym_preproc_if_token2] = ACTIONS(3171), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3171), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3171), - [sym_preproc_directive] = ACTIONS(3171), - [anon_sym_LPAREN2] = ACTIONS(3173), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3171), - [anon_sym_PLUS] = ACTIONS(3171), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_AMP_AMP] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3171), - [anon_sym_SEMI] = ACTIONS(3173), - [anon_sym___extension__] = ACTIONS(3171), - [anon_sym_typedef] = ACTIONS(3171), - [anon_sym_extern] = ACTIONS(3171), - [anon_sym___attribute__] = ACTIONS(3171), - [anon_sym_COLON_COLON] = ACTIONS(3173), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3173), - [anon_sym___declspec] = ACTIONS(3171), - [anon_sym___based] = ACTIONS(3171), - [anon_sym___cdecl] = ACTIONS(3171), - [anon_sym___clrcall] = ACTIONS(3171), - [anon_sym___stdcall] = ACTIONS(3171), - [anon_sym___fastcall] = ACTIONS(3171), - [anon_sym___thiscall] = ACTIONS(3171), - [anon_sym___vectorcall] = ACTIONS(3171), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_signed] = ACTIONS(3171), - [anon_sym_unsigned] = ACTIONS(3171), - [anon_sym_long] = ACTIONS(3171), - [anon_sym_short] = ACTIONS(3171), - [anon_sym_LBRACK] = ACTIONS(3171), - [anon_sym_static] = ACTIONS(3171), - [anon_sym_register] = ACTIONS(3171), - [anon_sym_inline] = ACTIONS(3171), - [anon_sym___inline] = ACTIONS(3171), - [anon_sym___inline__] = ACTIONS(3171), - [anon_sym___forceinline] = ACTIONS(3171), - [anon_sym_thread_local] = ACTIONS(3171), - [anon_sym___thread] = ACTIONS(3171), - [anon_sym_const] = ACTIONS(3171), - [anon_sym_constexpr] = ACTIONS(3171), - [anon_sym_volatile] = ACTIONS(3171), - [anon_sym_restrict] = ACTIONS(3171), - [anon_sym___restrict__] = ACTIONS(3171), - [anon_sym__Atomic] = ACTIONS(3171), - [anon_sym__Noreturn] = ACTIONS(3171), - [anon_sym_noreturn] = ACTIONS(3171), - [anon_sym_mutable] = ACTIONS(3171), - [anon_sym_constinit] = ACTIONS(3171), - [anon_sym_consteval] = ACTIONS(3171), - [sym_primitive_type] = ACTIONS(3171), - [anon_sym_enum] = ACTIONS(3171), - [anon_sym_class] = ACTIONS(3171), - [anon_sym_struct] = ACTIONS(3171), - [anon_sym_union] = ACTIONS(3171), - [anon_sym_if] = ACTIONS(3171), - [anon_sym_else] = ACTIONS(3171), - [anon_sym_switch] = ACTIONS(3171), - [anon_sym_case] = ACTIONS(3171), - [anon_sym_default] = ACTIONS(3171), - [anon_sym_while] = ACTIONS(3171), - [anon_sym_do] = ACTIONS(3171), - [anon_sym_for] = ACTIONS(3171), - [anon_sym_return] = ACTIONS(3171), - [anon_sym_break] = ACTIONS(3171), - [anon_sym_continue] = ACTIONS(3171), - [anon_sym_goto] = ACTIONS(3171), - [anon_sym___try] = ACTIONS(3171), - [anon_sym___leave] = ACTIONS(3171), - [anon_sym_not] = ACTIONS(3171), - [anon_sym_compl] = ACTIONS(3171), - [anon_sym_DASH_DASH] = ACTIONS(3173), - [anon_sym_PLUS_PLUS] = ACTIONS(3173), - [anon_sym_sizeof] = ACTIONS(3171), - [anon_sym___alignof__] = ACTIONS(3171), - [anon_sym___alignof] = ACTIONS(3171), - [anon_sym__alignof] = ACTIONS(3171), - [anon_sym_alignof] = ACTIONS(3171), - [anon_sym__Alignof] = ACTIONS(3171), - [anon_sym_offsetof] = ACTIONS(3171), - [anon_sym__Generic] = ACTIONS(3171), - [anon_sym_asm] = ACTIONS(3171), - [anon_sym___asm__] = ACTIONS(3171), - [sym_number_literal] = ACTIONS(3173), - [anon_sym_L_SQUOTE] = ACTIONS(3173), - [anon_sym_u_SQUOTE] = ACTIONS(3173), - [anon_sym_U_SQUOTE] = ACTIONS(3173), - [anon_sym_u8_SQUOTE] = ACTIONS(3173), - [anon_sym_SQUOTE] = ACTIONS(3173), - [anon_sym_L_DQUOTE] = ACTIONS(3173), - [anon_sym_u_DQUOTE] = ACTIONS(3173), - [anon_sym_U_DQUOTE] = ACTIONS(3173), - [anon_sym_u8_DQUOTE] = ACTIONS(3173), - [anon_sym_DQUOTE] = ACTIONS(3173), - [sym_true] = ACTIONS(3171), - [sym_false] = ACTIONS(3171), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3171), - [anon_sym_decltype] = ACTIONS(3171), - [anon_sym_virtual] = ACTIONS(3171), - [anon_sym_alignas] = ACTIONS(3171), - [anon_sym_explicit] = ACTIONS(3171), - [anon_sym_typename] = ACTIONS(3171), - [anon_sym_template] = ACTIONS(3171), - [anon_sym_operator] = ACTIONS(3171), - [anon_sym_try] = ACTIONS(3171), - [anon_sym_delete] = ACTIONS(3171), - [anon_sym_throw] = ACTIONS(3171), - [anon_sym_namespace] = ACTIONS(3171), - [anon_sym_using] = ACTIONS(3171), - [anon_sym_static_assert] = ACTIONS(3171), - [anon_sym_concept] = ACTIONS(3171), - [anon_sym_co_return] = ACTIONS(3171), - [anon_sym_co_yield] = ACTIONS(3171), - [anon_sym_R_DQUOTE] = ACTIONS(3173), - [anon_sym_LR_DQUOTE] = ACTIONS(3173), - [anon_sym_uR_DQUOTE] = ACTIONS(3173), - [anon_sym_UR_DQUOTE] = ACTIONS(3173), - [anon_sym_u8R_DQUOTE] = ACTIONS(3173), - [anon_sym_co_await] = ACTIONS(3171), - [anon_sym_new] = ACTIONS(3171), - [anon_sym_requires] = ACTIONS(3171), - [sym_this] = ACTIONS(3171), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3173), - [sym_semgrep_named_ellipsis] = ACTIONS(3173), - }, - [583] = { - [sym_identifier] = ACTIONS(3245), - [aux_sym_preproc_include_token1] = ACTIONS(3245), - [aux_sym_preproc_def_token1] = ACTIONS(3245), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3247), - [aux_sym_preproc_if_token1] = ACTIONS(3245), - [aux_sym_preproc_if_token2] = ACTIONS(3245), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3245), - [sym_preproc_directive] = ACTIONS(3245), - [anon_sym_LPAREN2] = ACTIONS(3247), - [anon_sym_BANG] = ACTIONS(3247), - [anon_sym_TILDE] = ACTIONS(3247), - [anon_sym_DASH] = ACTIONS(3245), - [anon_sym_PLUS] = ACTIONS(3245), - [anon_sym_STAR] = ACTIONS(3247), - [anon_sym_AMP_AMP] = ACTIONS(3247), - [anon_sym_AMP] = ACTIONS(3245), - [anon_sym_SEMI] = ACTIONS(3247), - [anon_sym___extension__] = ACTIONS(3245), - [anon_sym_typedef] = ACTIONS(3245), - [anon_sym_extern] = ACTIONS(3245), - [anon_sym___attribute__] = ACTIONS(3245), - [anon_sym_COLON_COLON] = ACTIONS(3247), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3247), - [anon_sym___declspec] = ACTIONS(3245), - [anon_sym___based] = ACTIONS(3245), - [anon_sym___cdecl] = ACTIONS(3245), - [anon_sym___clrcall] = ACTIONS(3245), - [anon_sym___stdcall] = ACTIONS(3245), - [anon_sym___fastcall] = ACTIONS(3245), - [anon_sym___thiscall] = ACTIONS(3245), - [anon_sym___vectorcall] = ACTIONS(3245), - [anon_sym_LBRACE] = ACTIONS(3247), - [anon_sym_signed] = ACTIONS(3245), - [anon_sym_unsigned] = ACTIONS(3245), - [anon_sym_long] = ACTIONS(3245), - [anon_sym_short] = ACTIONS(3245), - [anon_sym_LBRACK] = ACTIONS(3245), - [anon_sym_static] = ACTIONS(3245), - [anon_sym_register] = ACTIONS(3245), - [anon_sym_inline] = ACTIONS(3245), - [anon_sym___inline] = ACTIONS(3245), - [anon_sym___inline__] = ACTIONS(3245), - [anon_sym___forceinline] = ACTIONS(3245), - [anon_sym_thread_local] = ACTIONS(3245), - [anon_sym___thread] = ACTIONS(3245), - [anon_sym_const] = ACTIONS(3245), - [anon_sym_constexpr] = ACTIONS(3245), - [anon_sym_volatile] = ACTIONS(3245), - [anon_sym_restrict] = ACTIONS(3245), - [anon_sym___restrict__] = ACTIONS(3245), - [anon_sym__Atomic] = ACTIONS(3245), - [anon_sym__Noreturn] = ACTIONS(3245), - [anon_sym_noreturn] = ACTIONS(3245), - [anon_sym_mutable] = ACTIONS(3245), - [anon_sym_constinit] = ACTIONS(3245), - [anon_sym_consteval] = ACTIONS(3245), - [sym_primitive_type] = ACTIONS(3245), - [anon_sym_enum] = ACTIONS(3245), - [anon_sym_class] = ACTIONS(3245), - [anon_sym_struct] = ACTIONS(3245), - [anon_sym_union] = ACTIONS(3245), - [anon_sym_if] = ACTIONS(3245), - [anon_sym_else] = ACTIONS(3245), - [anon_sym_switch] = ACTIONS(3245), - [anon_sym_case] = ACTIONS(3245), - [anon_sym_default] = ACTIONS(3245), - [anon_sym_while] = ACTIONS(3245), - [anon_sym_do] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(3245), - [anon_sym_return] = ACTIONS(3245), - [anon_sym_break] = ACTIONS(3245), - [anon_sym_continue] = ACTIONS(3245), - [anon_sym_goto] = ACTIONS(3245), - [anon_sym___try] = ACTIONS(3245), - [anon_sym___leave] = ACTIONS(3245), - [anon_sym_not] = ACTIONS(3245), - [anon_sym_compl] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_PLUS_PLUS] = ACTIONS(3247), - [anon_sym_sizeof] = ACTIONS(3245), - [anon_sym___alignof__] = ACTIONS(3245), - [anon_sym___alignof] = ACTIONS(3245), - [anon_sym__alignof] = ACTIONS(3245), - [anon_sym_alignof] = ACTIONS(3245), - [anon_sym__Alignof] = ACTIONS(3245), - [anon_sym_offsetof] = ACTIONS(3245), - [anon_sym__Generic] = ACTIONS(3245), - [anon_sym_asm] = ACTIONS(3245), - [anon_sym___asm__] = ACTIONS(3245), - [sym_number_literal] = ACTIONS(3247), - [anon_sym_L_SQUOTE] = ACTIONS(3247), - [anon_sym_u_SQUOTE] = ACTIONS(3247), - [anon_sym_U_SQUOTE] = ACTIONS(3247), - [anon_sym_u8_SQUOTE] = ACTIONS(3247), - [anon_sym_SQUOTE] = ACTIONS(3247), - [anon_sym_L_DQUOTE] = ACTIONS(3247), - [anon_sym_u_DQUOTE] = ACTIONS(3247), - [anon_sym_U_DQUOTE] = ACTIONS(3247), - [anon_sym_u8_DQUOTE] = ACTIONS(3247), - [anon_sym_DQUOTE] = ACTIONS(3247), - [sym_true] = ACTIONS(3245), - [sym_false] = ACTIONS(3245), - [anon_sym_NULL] = ACTIONS(3245), - [anon_sym_nullptr] = ACTIONS(3245), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3245), - [anon_sym_decltype] = ACTIONS(3245), - [anon_sym_virtual] = ACTIONS(3245), - [anon_sym_alignas] = ACTIONS(3245), - [anon_sym_explicit] = ACTIONS(3245), - [anon_sym_typename] = ACTIONS(3245), - [anon_sym_template] = ACTIONS(3245), - [anon_sym_operator] = ACTIONS(3245), - [anon_sym_try] = ACTIONS(3245), - [anon_sym_delete] = ACTIONS(3245), - [anon_sym_throw] = ACTIONS(3245), - [anon_sym_namespace] = ACTIONS(3245), - [anon_sym_using] = ACTIONS(3245), - [anon_sym_static_assert] = ACTIONS(3245), - [anon_sym_concept] = ACTIONS(3245), - [anon_sym_co_return] = ACTIONS(3245), - [anon_sym_co_yield] = ACTIONS(3245), - [anon_sym_R_DQUOTE] = ACTIONS(3247), - [anon_sym_LR_DQUOTE] = ACTIONS(3247), - [anon_sym_uR_DQUOTE] = ACTIONS(3247), - [anon_sym_UR_DQUOTE] = ACTIONS(3247), - [anon_sym_u8R_DQUOTE] = ACTIONS(3247), - [anon_sym_co_await] = ACTIONS(3245), - [anon_sym_new] = ACTIONS(3245), - [anon_sym_requires] = ACTIONS(3245), - [sym_this] = ACTIONS(3245), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3247), - [sym_semgrep_named_ellipsis] = ACTIONS(3247), + [612] = { + [ts_builtin_sym_end] = ACTIONS(3081), + [sym_identifier] = ACTIONS(3079), + [aux_sym_preproc_include_token1] = ACTIONS(3079), + [aux_sym_preproc_def_token1] = ACTIONS(3079), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3081), + [aux_sym_preproc_if_token1] = ACTIONS(3079), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3079), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3079), + [sym_preproc_directive] = ACTIONS(3079), + [anon_sym_LPAREN2] = ACTIONS(3081), + [anon_sym_BANG] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(3079), + [anon_sym_STAR] = ACTIONS(3081), + [anon_sym_AMP_AMP] = ACTIONS(3081), + [anon_sym_AMP] = ACTIONS(3079), + [anon_sym_SEMI] = ACTIONS(3081), + [anon_sym___extension__] = ACTIONS(3079), + [anon_sym_typedef] = ACTIONS(3079), + [anon_sym_extern] = ACTIONS(3079), + [anon_sym___attribute__] = ACTIONS(3079), + [anon_sym_COLON_COLON] = ACTIONS(3081), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3081), + [anon_sym___declspec] = ACTIONS(3079), + [anon_sym___based] = ACTIONS(3079), + [anon_sym___cdecl] = ACTIONS(3079), + [anon_sym___clrcall] = ACTIONS(3079), + [anon_sym___stdcall] = ACTIONS(3079), + [anon_sym___fastcall] = ACTIONS(3079), + [anon_sym___thiscall] = ACTIONS(3079), + [anon_sym___vectorcall] = ACTIONS(3079), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_signed] = ACTIONS(3079), + [anon_sym_unsigned] = ACTIONS(3079), + [anon_sym_long] = ACTIONS(3079), + [anon_sym_short] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3079), + [anon_sym_static] = ACTIONS(3079), + [anon_sym_register] = ACTIONS(3079), + [anon_sym_inline] = ACTIONS(3079), + [anon_sym___inline] = ACTIONS(3079), + [anon_sym___inline__] = ACTIONS(3079), + [anon_sym___forceinline] = ACTIONS(3079), + [anon_sym_thread_local] = ACTIONS(3079), + [anon_sym___thread] = ACTIONS(3079), + [anon_sym_const] = ACTIONS(3079), + [anon_sym_constexpr] = ACTIONS(3079), + [anon_sym_volatile] = ACTIONS(3079), + [anon_sym_restrict] = ACTIONS(3079), + [anon_sym___restrict__] = ACTIONS(3079), + [anon_sym__Atomic] = ACTIONS(3079), + [anon_sym__Noreturn] = ACTIONS(3079), + [anon_sym_noreturn] = ACTIONS(3079), + [anon_sym_mutable] = ACTIONS(3079), + [anon_sym_constinit] = ACTIONS(3079), + [anon_sym_consteval] = ACTIONS(3079), + [sym_primitive_type] = ACTIONS(3079), + [anon_sym_enum] = ACTIONS(3079), + [anon_sym_class] = ACTIONS(3079), + [anon_sym_struct] = ACTIONS(3079), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_if] = ACTIONS(3079), + [anon_sym_else] = ACTIONS(3079), + [anon_sym_switch] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3079), + [anon_sym_default] = ACTIONS(3079), + [anon_sym_while] = ACTIONS(3079), + [anon_sym_do] = ACTIONS(3079), + [anon_sym_for] = ACTIONS(3079), + [anon_sym_return] = ACTIONS(3079), + [anon_sym_break] = ACTIONS(3079), + [anon_sym_continue] = ACTIONS(3079), + [anon_sym_goto] = ACTIONS(3079), + [anon_sym___try] = ACTIONS(3079), + [anon_sym___leave] = ACTIONS(3079), + [anon_sym_not] = ACTIONS(3079), + [anon_sym_compl] = ACTIONS(3079), + [anon_sym_DASH_DASH] = ACTIONS(3081), + [anon_sym_PLUS_PLUS] = ACTIONS(3081), + [anon_sym_sizeof] = ACTIONS(3079), + [anon_sym___alignof__] = ACTIONS(3079), + [anon_sym___alignof] = ACTIONS(3079), + [anon_sym__alignof] = ACTIONS(3079), + [anon_sym_alignof] = ACTIONS(3079), + [anon_sym__Alignof] = ACTIONS(3079), + [anon_sym_offsetof] = ACTIONS(3079), + [anon_sym__Generic] = ACTIONS(3079), + [anon_sym_asm] = ACTIONS(3079), + [anon_sym___asm__] = ACTIONS(3079), + [sym_number_literal] = ACTIONS(3081), + [anon_sym_L_SQUOTE] = ACTIONS(3081), + [anon_sym_u_SQUOTE] = ACTIONS(3081), + [anon_sym_U_SQUOTE] = ACTIONS(3081), + [anon_sym_u8_SQUOTE] = ACTIONS(3081), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_L_DQUOTE] = ACTIONS(3081), + [anon_sym_u_DQUOTE] = ACTIONS(3081), + [anon_sym_U_DQUOTE] = ACTIONS(3081), + [anon_sym_u8_DQUOTE] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(3081), + [sym_true] = ACTIONS(3079), + [sym_false] = ACTIONS(3079), + [anon_sym_NULL] = ACTIONS(3079), + [anon_sym_nullptr] = ACTIONS(3079), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3079), + [anon_sym_decltype] = ACTIONS(3079), + [anon_sym_virtual] = ACTIONS(3079), + [anon_sym_alignas] = ACTIONS(3079), + [anon_sym_explicit] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3079), + [anon_sym_template] = ACTIONS(3079), + [anon_sym_operator] = ACTIONS(3079), + [anon_sym_try] = ACTIONS(3079), + [anon_sym_delete] = ACTIONS(3079), + [anon_sym_throw] = ACTIONS(3079), + [anon_sym_namespace] = ACTIONS(3079), + [anon_sym_using] = ACTIONS(3079), + [anon_sym_static_assert] = ACTIONS(3079), + [anon_sym_concept] = ACTIONS(3079), + [anon_sym_co_return] = ACTIONS(3079), + [anon_sym_co_yield] = ACTIONS(3079), + [anon_sym_R_DQUOTE] = ACTIONS(3081), + [anon_sym_LR_DQUOTE] = ACTIONS(3081), + [anon_sym_uR_DQUOTE] = ACTIONS(3081), + [anon_sym_UR_DQUOTE] = ACTIONS(3081), + [anon_sym_u8R_DQUOTE] = ACTIONS(3081), + [anon_sym_co_await] = ACTIONS(3079), + [anon_sym_new] = ACTIONS(3079), + [anon_sym_requires] = ACTIONS(3079), + [sym_this] = ACTIONS(3079), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3081), + [sym_semgrep_named_ellipsis] = ACTIONS(3081), }, - [584] = { - [ts_builtin_sym_end] = ACTIONS(3225), - [sym_identifier] = ACTIONS(3223), - [aux_sym_preproc_include_token1] = ACTIONS(3223), - [aux_sym_preproc_def_token1] = ACTIONS(3223), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3225), - [aux_sym_preproc_if_token1] = ACTIONS(3223), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3223), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3223), - [sym_preproc_directive] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(3225), - [anon_sym_BANG] = ACTIONS(3225), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_STAR] = ACTIONS(3225), - [anon_sym_AMP_AMP] = ACTIONS(3225), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3225), - [anon_sym___extension__] = ACTIONS(3223), - [anon_sym_typedef] = ACTIONS(3223), - [anon_sym_extern] = ACTIONS(3223), - [anon_sym___attribute__] = ACTIONS(3223), - [anon_sym_COLON_COLON] = ACTIONS(3225), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3225), - [anon_sym___declspec] = ACTIONS(3223), - [anon_sym___based] = ACTIONS(3223), - [anon_sym___cdecl] = ACTIONS(3223), - [anon_sym___clrcall] = ACTIONS(3223), - [anon_sym___stdcall] = ACTIONS(3223), - [anon_sym___fastcall] = ACTIONS(3223), - [anon_sym___thiscall] = ACTIONS(3223), - [anon_sym___vectorcall] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3225), - [anon_sym_signed] = ACTIONS(3223), - [anon_sym_unsigned] = ACTIONS(3223), - [anon_sym_long] = ACTIONS(3223), - [anon_sym_short] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_register] = ACTIONS(3223), - [anon_sym_inline] = ACTIONS(3223), - [anon_sym___inline] = ACTIONS(3223), - [anon_sym___inline__] = ACTIONS(3223), - [anon_sym___forceinline] = ACTIONS(3223), - [anon_sym_thread_local] = ACTIONS(3223), - [anon_sym___thread] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_constexpr] = ACTIONS(3223), - [anon_sym_volatile] = ACTIONS(3223), - [anon_sym_restrict] = ACTIONS(3223), - [anon_sym___restrict__] = ACTIONS(3223), - [anon_sym__Atomic] = ACTIONS(3223), - [anon_sym__Noreturn] = ACTIONS(3223), - [anon_sym_noreturn] = ACTIONS(3223), - [anon_sym_mutable] = ACTIONS(3223), - [anon_sym_constinit] = ACTIONS(3223), - [anon_sym_consteval] = ACTIONS(3223), - [sym_primitive_type] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_struct] = ACTIONS(3223), - [anon_sym_union] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_else] = ACTIONS(3223), - [anon_sym_switch] = ACTIONS(3223), - [anon_sym_case] = ACTIONS(3223), - [anon_sym_default] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_goto] = ACTIONS(3223), - [anon_sym___try] = ACTIONS(3223), - [anon_sym___leave] = ACTIONS(3223), - [anon_sym_not] = ACTIONS(3223), - [anon_sym_compl] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3225), - [anon_sym_PLUS_PLUS] = ACTIONS(3225), - [anon_sym_sizeof] = ACTIONS(3223), - [anon_sym___alignof__] = ACTIONS(3223), - [anon_sym___alignof] = ACTIONS(3223), - [anon_sym__alignof] = ACTIONS(3223), - [anon_sym_alignof] = ACTIONS(3223), - [anon_sym__Alignof] = ACTIONS(3223), - [anon_sym_offsetof] = ACTIONS(3223), - [anon_sym__Generic] = ACTIONS(3223), - [anon_sym_asm] = ACTIONS(3223), - [anon_sym___asm__] = ACTIONS(3223), - [sym_number_literal] = ACTIONS(3225), - [anon_sym_L_SQUOTE] = ACTIONS(3225), - [anon_sym_u_SQUOTE] = ACTIONS(3225), - [anon_sym_U_SQUOTE] = ACTIONS(3225), - [anon_sym_u8_SQUOTE] = ACTIONS(3225), - [anon_sym_SQUOTE] = ACTIONS(3225), - [anon_sym_L_DQUOTE] = ACTIONS(3225), - [anon_sym_u_DQUOTE] = ACTIONS(3225), - [anon_sym_U_DQUOTE] = ACTIONS(3225), - [anon_sym_u8_DQUOTE] = ACTIONS(3225), - [anon_sym_DQUOTE] = ACTIONS(3225), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [anon_sym_NULL] = ACTIONS(3223), - [anon_sym_nullptr] = ACTIONS(3223), + [613] = { + [ts_builtin_sym_end] = ACTIONS(3153), + [sym_identifier] = ACTIONS(3151), + [aux_sym_preproc_include_token1] = ACTIONS(3151), + [aux_sym_preproc_def_token1] = ACTIONS(3151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3153), + [aux_sym_preproc_if_token1] = ACTIONS(3151), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3151), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3151), + [sym_preproc_directive] = ACTIONS(3151), + [anon_sym_LPAREN2] = ACTIONS(3153), + [anon_sym_BANG] = ACTIONS(3153), + [anon_sym_TILDE] = ACTIONS(3153), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_AMP_AMP] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_SEMI] = ACTIONS(3153), + [anon_sym___extension__] = ACTIONS(3151), + [anon_sym_typedef] = ACTIONS(3151), + [anon_sym_extern] = ACTIONS(3151), + [anon_sym___attribute__] = ACTIONS(3151), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3153), + [anon_sym___declspec] = ACTIONS(3151), + [anon_sym___based] = ACTIONS(3151), + [anon_sym___cdecl] = ACTIONS(3151), + [anon_sym___clrcall] = ACTIONS(3151), + [anon_sym___stdcall] = ACTIONS(3151), + [anon_sym___fastcall] = ACTIONS(3151), + [anon_sym___thiscall] = ACTIONS(3151), + [anon_sym___vectorcall] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_signed] = ACTIONS(3151), + [anon_sym_unsigned] = ACTIONS(3151), + [anon_sym_long] = ACTIONS(3151), + [anon_sym_short] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_static] = ACTIONS(3151), + [anon_sym_register] = ACTIONS(3151), + [anon_sym_inline] = ACTIONS(3151), + [anon_sym___inline] = ACTIONS(3151), + [anon_sym___inline__] = ACTIONS(3151), + [anon_sym___forceinline] = ACTIONS(3151), + [anon_sym_thread_local] = ACTIONS(3151), + [anon_sym___thread] = ACTIONS(3151), + [anon_sym_const] = ACTIONS(3151), + [anon_sym_constexpr] = ACTIONS(3151), + [anon_sym_volatile] = ACTIONS(3151), + [anon_sym_restrict] = ACTIONS(3151), + [anon_sym___restrict__] = ACTIONS(3151), + [anon_sym__Atomic] = ACTIONS(3151), + [anon_sym__Noreturn] = ACTIONS(3151), + [anon_sym_noreturn] = ACTIONS(3151), + [anon_sym_mutable] = ACTIONS(3151), + [anon_sym_constinit] = ACTIONS(3151), + [anon_sym_consteval] = ACTIONS(3151), + [sym_primitive_type] = ACTIONS(3151), + [anon_sym_enum] = ACTIONS(3151), + [anon_sym_class] = ACTIONS(3151), + [anon_sym_struct] = ACTIONS(3151), + [anon_sym_union] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_else] = ACTIONS(3151), + [anon_sym_switch] = ACTIONS(3151), + [anon_sym_case] = ACTIONS(3151), + [anon_sym_default] = ACTIONS(3151), + [anon_sym_while] = ACTIONS(3151), + [anon_sym_do] = ACTIONS(3151), + [anon_sym_for] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3151), + [anon_sym_break] = ACTIONS(3151), + [anon_sym_continue] = ACTIONS(3151), + [anon_sym_goto] = ACTIONS(3151), + [anon_sym___try] = ACTIONS(3151), + [anon_sym___leave] = ACTIONS(3151), + [anon_sym_not] = ACTIONS(3151), + [anon_sym_compl] = ACTIONS(3151), + [anon_sym_DASH_DASH] = ACTIONS(3153), + [anon_sym_PLUS_PLUS] = ACTIONS(3153), + [anon_sym_sizeof] = ACTIONS(3151), + [anon_sym___alignof__] = ACTIONS(3151), + [anon_sym___alignof] = ACTIONS(3151), + [anon_sym__alignof] = ACTIONS(3151), + [anon_sym_alignof] = ACTIONS(3151), + [anon_sym__Alignof] = ACTIONS(3151), + [anon_sym_offsetof] = ACTIONS(3151), + [anon_sym__Generic] = ACTIONS(3151), + [anon_sym_asm] = ACTIONS(3151), + [anon_sym___asm__] = ACTIONS(3151), + [sym_number_literal] = ACTIONS(3153), + [anon_sym_L_SQUOTE] = ACTIONS(3153), + [anon_sym_u_SQUOTE] = ACTIONS(3153), + [anon_sym_U_SQUOTE] = ACTIONS(3153), + [anon_sym_u8_SQUOTE] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3153), + [anon_sym_L_DQUOTE] = ACTIONS(3153), + [anon_sym_u_DQUOTE] = ACTIONS(3153), + [anon_sym_U_DQUOTE] = ACTIONS(3153), + [anon_sym_u8_DQUOTE] = ACTIONS(3153), + [anon_sym_DQUOTE] = ACTIONS(3153), + [sym_true] = ACTIONS(3151), + [sym_false] = ACTIONS(3151), + [anon_sym_NULL] = ACTIONS(3151), + [anon_sym_nullptr] = ACTIONS(3151), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3223), - [anon_sym_decltype] = ACTIONS(3223), - [anon_sym_virtual] = ACTIONS(3223), - [anon_sym_alignas] = ACTIONS(3223), - [anon_sym_explicit] = ACTIONS(3223), - [anon_sym_typename] = ACTIONS(3223), - [anon_sym_template] = ACTIONS(3223), - [anon_sym_operator] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_delete] = ACTIONS(3223), - [anon_sym_throw] = ACTIONS(3223), - [anon_sym_namespace] = ACTIONS(3223), - [anon_sym_using] = ACTIONS(3223), - [anon_sym_static_assert] = ACTIONS(3223), - [anon_sym_concept] = ACTIONS(3223), - [anon_sym_co_return] = ACTIONS(3223), - [anon_sym_co_yield] = ACTIONS(3223), - [anon_sym_R_DQUOTE] = ACTIONS(3225), - [anon_sym_LR_DQUOTE] = ACTIONS(3225), - [anon_sym_uR_DQUOTE] = ACTIONS(3225), - [anon_sym_UR_DQUOTE] = ACTIONS(3225), - [anon_sym_u8R_DQUOTE] = ACTIONS(3225), - [anon_sym_co_await] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_requires] = ACTIONS(3223), - [sym_this] = ACTIONS(3223), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3225), - [sym_semgrep_named_ellipsis] = ACTIONS(3225), + [sym_auto] = ACTIONS(3151), + [anon_sym_decltype] = ACTIONS(3151), + [anon_sym_virtual] = ACTIONS(3151), + [anon_sym_alignas] = ACTIONS(3151), + [anon_sym_explicit] = ACTIONS(3151), + [anon_sym_typename] = ACTIONS(3151), + [anon_sym_template] = ACTIONS(3151), + [anon_sym_operator] = ACTIONS(3151), + [anon_sym_try] = ACTIONS(3151), + [anon_sym_delete] = ACTIONS(3151), + [anon_sym_throw] = ACTIONS(3151), + [anon_sym_namespace] = ACTIONS(3151), + [anon_sym_using] = ACTIONS(3151), + [anon_sym_static_assert] = ACTIONS(3151), + [anon_sym_concept] = ACTIONS(3151), + [anon_sym_co_return] = ACTIONS(3151), + [anon_sym_co_yield] = ACTIONS(3151), + [anon_sym_R_DQUOTE] = ACTIONS(3153), + [anon_sym_LR_DQUOTE] = ACTIONS(3153), + [anon_sym_uR_DQUOTE] = ACTIONS(3153), + [anon_sym_UR_DQUOTE] = ACTIONS(3153), + [anon_sym_u8R_DQUOTE] = ACTIONS(3153), + [anon_sym_co_await] = ACTIONS(3151), + [anon_sym_new] = ACTIONS(3151), + [anon_sym_requires] = ACTIONS(3151), + [sym_this] = ACTIONS(3151), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3153), + [sym_semgrep_named_ellipsis] = ACTIONS(3153), }, - [585] = { - [ts_builtin_sym_end] = ACTIONS(3209), + [614] = { + [sym_identifier] = ACTIONS(3181), + [aux_sym_preproc_include_token1] = ACTIONS(3181), + [aux_sym_preproc_def_token1] = ACTIONS(3181), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3183), + [aux_sym_preproc_if_token1] = ACTIONS(3181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3181), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3181), + [sym_preproc_directive] = ACTIONS(3181), + [anon_sym_LPAREN2] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3183), + [anon_sym_TILDE] = ACTIONS(3183), + [anon_sym_DASH] = ACTIONS(3181), + [anon_sym_PLUS] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3183), + [anon_sym_AMP_AMP] = ACTIONS(3183), + [anon_sym_AMP] = ACTIONS(3181), + [anon_sym_SEMI] = ACTIONS(3183), + [anon_sym___extension__] = ACTIONS(3181), + [anon_sym_typedef] = ACTIONS(3181), + [anon_sym_extern] = ACTIONS(3181), + [anon_sym___attribute__] = ACTIONS(3181), + [anon_sym_COLON_COLON] = ACTIONS(3183), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3183), + [anon_sym___declspec] = ACTIONS(3181), + [anon_sym___based] = ACTIONS(3181), + [anon_sym___cdecl] = ACTIONS(3181), + [anon_sym___clrcall] = ACTIONS(3181), + [anon_sym___stdcall] = ACTIONS(3181), + [anon_sym___fastcall] = ACTIONS(3181), + [anon_sym___thiscall] = ACTIONS(3181), + [anon_sym___vectorcall] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_RBRACE] = ACTIONS(3183), + [anon_sym_signed] = ACTIONS(3181), + [anon_sym_unsigned] = ACTIONS(3181), + [anon_sym_long] = ACTIONS(3181), + [anon_sym_short] = ACTIONS(3181), + [anon_sym_LBRACK] = ACTIONS(3181), + [anon_sym_static] = ACTIONS(3181), + [anon_sym_register] = ACTIONS(3181), + [anon_sym_inline] = ACTIONS(3181), + [anon_sym___inline] = ACTIONS(3181), + [anon_sym___inline__] = ACTIONS(3181), + [anon_sym___forceinline] = ACTIONS(3181), + [anon_sym_thread_local] = ACTIONS(3181), + [anon_sym___thread] = ACTIONS(3181), + [anon_sym_const] = ACTIONS(3181), + [anon_sym_constexpr] = ACTIONS(3181), + [anon_sym_volatile] = ACTIONS(3181), + [anon_sym_restrict] = ACTIONS(3181), + [anon_sym___restrict__] = ACTIONS(3181), + [anon_sym__Atomic] = ACTIONS(3181), + [anon_sym__Noreturn] = ACTIONS(3181), + [anon_sym_noreturn] = ACTIONS(3181), + [anon_sym_mutable] = ACTIONS(3181), + [anon_sym_constinit] = ACTIONS(3181), + [anon_sym_consteval] = ACTIONS(3181), + [sym_primitive_type] = ACTIONS(3181), + [anon_sym_enum] = ACTIONS(3181), + [anon_sym_class] = ACTIONS(3181), + [anon_sym_struct] = ACTIONS(3181), + [anon_sym_union] = ACTIONS(3181), + [anon_sym_if] = ACTIONS(3181), + [anon_sym_else] = ACTIONS(3181), + [anon_sym_switch] = ACTIONS(3181), + [anon_sym_case] = ACTIONS(3181), + [anon_sym_default] = ACTIONS(3181), + [anon_sym_while] = ACTIONS(3181), + [anon_sym_do] = ACTIONS(3181), + [anon_sym_for] = ACTIONS(3181), + [anon_sym_return] = ACTIONS(3181), + [anon_sym_break] = ACTIONS(3181), + [anon_sym_continue] = ACTIONS(3181), + [anon_sym_goto] = ACTIONS(3181), + [anon_sym___try] = ACTIONS(3181), + [anon_sym___leave] = ACTIONS(3181), + [anon_sym_not] = ACTIONS(3181), + [anon_sym_compl] = ACTIONS(3181), + [anon_sym_DASH_DASH] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_sizeof] = ACTIONS(3181), + [anon_sym___alignof__] = ACTIONS(3181), + [anon_sym___alignof] = ACTIONS(3181), + [anon_sym__alignof] = ACTIONS(3181), + [anon_sym_alignof] = ACTIONS(3181), + [anon_sym__Alignof] = ACTIONS(3181), + [anon_sym_offsetof] = ACTIONS(3181), + [anon_sym__Generic] = ACTIONS(3181), + [anon_sym_asm] = ACTIONS(3181), + [anon_sym___asm__] = ACTIONS(3181), + [sym_number_literal] = ACTIONS(3183), + [anon_sym_L_SQUOTE] = ACTIONS(3183), + [anon_sym_u_SQUOTE] = ACTIONS(3183), + [anon_sym_U_SQUOTE] = ACTIONS(3183), + [anon_sym_u8_SQUOTE] = ACTIONS(3183), + [anon_sym_SQUOTE] = ACTIONS(3183), + [anon_sym_L_DQUOTE] = ACTIONS(3183), + [anon_sym_u_DQUOTE] = ACTIONS(3183), + [anon_sym_U_DQUOTE] = ACTIONS(3183), + [anon_sym_u8_DQUOTE] = ACTIONS(3183), + [anon_sym_DQUOTE] = ACTIONS(3183), + [sym_true] = ACTIONS(3181), + [sym_false] = ACTIONS(3181), + [anon_sym_NULL] = ACTIONS(3181), + [anon_sym_nullptr] = ACTIONS(3181), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3181), + [anon_sym_decltype] = ACTIONS(3181), + [anon_sym_virtual] = ACTIONS(3181), + [anon_sym_alignas] = ACTIONS(3181), + [anon_sym_explicit] = ACTIONS(3181), + [anon_sym_typename] = ACTIONS(3181), + [anon_sym_template] = ACTIONS(3181), + [anon_sym_operator] = ACTIONS(3181), + [anon_sym_try] = ACTIONS(3181), + [anon_sym_delete] = ACTIONS(3181), + [anon_sym_throw] = ACTIONS(3181), + [anon_sym_namespace] = ACTIONS(3181), + [anon_sym_using] = ACTIONS(3181), + [anon_sym_static_assert] = ACTIONS(3181), + [anon_sym_concept] = ACTIONS(3181), + [anon_sym_co_return] = ACTIONS(3181), + [anon_sym_co_yield] = ACTIONS(3181), + [anon_sym_R_DQUOTE] = ACTIONS(3183), + [anon_sym_LR_DQUOTE] = ACTIONS(3183), + [anon_sym_uR_DQUOTE] = ACTIONS(3183), + [anon_sym_UR_DQUOTE] = ACTIONS(3183), + [anon_sym_u8R_DQUOTE] = ACTIONS(3183), + [anon_sym_co_await] = ACTIONS(3181), + [anon_sym_new] = ACTIONS(3181), + [anon_sym_requires] = ACTIONS(3181), + [sym_this] = ACTIONS(3181), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3183), + [sym_semgrep_named_ellipsis] = ACTIONS(3183), + }, + [615] = { + [sym_preproc_def] = STATE(2142), + [sym_preproc_function_def] = STATE(2142), + [sym_preproc_call] = STATE(2142), + [sym_preproc_if_in_field_declaration_list] = STATE(2142), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2142), + [sym_preproc_else_in_field_declaration_list] = STATE(9547), + [sym_preproc_elif_in_field_declaration_list] = STATE(9547), + [sym_type_definition] = STATE(2142), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6398), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7291), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(616), + [sym_field_declaration] = STATE(2142), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2142), + [sym_operator_cast] = STATE(7774), + [sym_inline_method_definition] = STATE(2142), + [sym_constructor_specifiers] = STATE(1937), + [sym_operator_cast_definition] = STATE(2142), + [sym_operator_cast_declaration] = STATE(2142), + [sym_constructor_or_destructor_definition] = STATE(2142), + [sym_constructor_or_destructor_declaration] = STATE(2142), + [sym_friend_declaration] = STATE(2142), + [sym_access_specifier] = STATE(9170), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2142), + [sym_alias_declaration] = STATE(2142), + [sym_static_assert_declaration] = STATE(2142), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7774), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2142), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(616), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1937), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(3839), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3841), + [aux_sym_preproc_if_token1] = ACTIONS(3843), + [aux_sym_preproc_if_token2] = ACTIONS(3873), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3847), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3849), + [aux_sym_preproc_else_token1] = ACTIONS(3241), + [aux_sym_preproc_elif_token1] = ACTIONS(3243), + [sym_preproc_directive] = ACTIONS(3851), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(3853), + [anon_sym_typedef] = ACTIONS(3855), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(3857), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(3859), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3861), + [anon_sym_static_assert] = ACTIONS(3863), + [sym_semgrep_metavar] = ACTIONS(3865), + }, + [616] = { + [sym_preproc_def] = STATE(2142), + [sym_preproc_function_def] = STATE(2142), + [sym_preproc_call] = STATE(2142), + [sym_preproc_if_in_field_declaration_list] = STATE(2142), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2142), + [sym_preproc_else_in_field_declaration_list] = STATE(9128), + [sym_preproc_elif_in_field_declaration_list] = STATE(9128), + [sym_type_definition] = STATE(2142), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6398), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7291), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(803), + [sym_field_declaration] = STATE(2142), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2142), + [sym_operator_cast] = STATE(7774), + [sym_inline_method_definition] = STATE(2142), + [sym_constructor_specifiers] = STATE(1937), + [sym_operator_cast_definition] = STATE(2142), + [sym_operator_cast_declaration] = STATE(2142), + [sym_constructor_or_destructor_definition] = STATE(2142), + [sym_constructor_or_destructor_declaration] = STATE(2142), + [sym_friend_declaration] = STATE(2142), + [sym_access_specifier] = STATE(9170), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2142), + [sym_alias_declaration] = STATE(2142), + [sym_static_assert_declaration] = STATE(2142), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7774), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2142), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(803), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1937), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(3839), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3841), + [aux_sym_preproc_if_token1] = ACTIONS(3843), + [aux_sym_preproc_if_token2] = ACTIONS(3875), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3847), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3849), + [aux_sym_preproc_else_token1] = ACTIONS(3241), + [aux_sym_preproc_elif_token1] = ACTIONS(3243), + [sym_preproc_directive] = ACTIONS(3851), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(3853), + [anon_sym_typedef] = ACTIONS(3855), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(3857), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(3859), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3861), + [anon_sym_static_assert] = ACTIONS(3863), + [sym_semgrep_metavar] = ACTIONS(3865), + }, + [617] = { [sym_identifier] = ACTIONS(3207), [aux_sym_preproc_include_token1] = ACTIONS(3207), [aux_sym_preproc_def_token1] = ACTIONS(3207), @@ -146371,6 +140888,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(3207), [anon_sym___vectorcall] = ACTIONS(3207), [anon_sym_LBRACE] = ACTIONS(3209), + [anon_sym_RBRACE] = ACTIONS(3209), [anon_sym_signed] = ACTIONS(3207), [anon_sym_unsigned] = ACTIONS(3207), [anon_sym_long] = ACTIONS(3207), @@ -146473,692 +140991,829 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3209), [sym_semgrep_named_ellipsis] = ACTIONS(3209), }, - [586] = { - [sym_identifier] = ACTIONS(3193), - [aux_sym_preproc_include_token1] = ACTIONS(3193), - [aux_sym_preproc_def_token1] = ACTIONS(3193), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3195), - [aux_sym_preproc_if_token1] = ACTIONS(3193), - [aux_sym_preproc_if_token2] = ACTIONS(3193), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3193), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3193), - [sym_preproc_directive] = ACTIONS(3193), - [anon_sym_LPAREN2] = ACTIONS(3195), - [anon_sym_BANG] = ACTIONS(3195), - [anon_sym_TILDE] = ACTIONS(3195), - [anon_sym_DASH] = ACTIONS(3193), - [anon_sym_PLUS] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3195), - [anon_sym___extension__] = ACTIONS(3193), - [anon_sym_typedef] = ACTIONS(3193), - [anon_sym_extern] = ACTIONS(3193), - [anon_sym___attribute__] = ACTIONS(3193), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3195), - [anon_sym___declspec] = ACTIONS(3193), - [anon_sym___based] = ACTIONS(3193), - [anon_sym___cdecl] = ACTIONS(3193), - [anon_sym___clrcall] = ACTIONS(3193), - [anon_sym___stdcall] = ACTIONS(3193), - [anon_sym___fastcall] = ACTIONS(3193), - [anon_sym___thiscall] = ACTIONS(3193), - [anon_sym___vectorcall] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3195), - [anon_sym_signed] = ACTIONS(3193), - [anon_sym_unsigned] = ACTIONS(3193), - [anon_sym_long] = ACTIONS(3193), - [anon_sym_short] = ACTIONS(3193), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_static] = ACTIONS(3193), - [anon_sym_register] = ACTIONS(3193), - [anon_sym_inline] = ACTIONS(3193), - [anon_sym___inline] = ACTIONS(3193), - [anon_sym___inline__] = ACTIONS(3193), - [anon_sym___forceinline] = ACTIONS(3193), - [anon_sym_thread_local] = ACTIONS(3193), - [anon_sym___thread] = ACTIONS(3193), - [anon_sym_const] = ACTIONS(3193), - [anon_sym_constexpr] = ACTIONS(3193), - [anon_sym_volatile] = ACTIONS(3193), - [anon_sym_restrict] = ACTIONS(3193), - [anon_sym___restrict__] = ACTIONS(3193), - [anon_sym__Atomic] = ACTIONS(3193), - [anon_sym__Noreturn] = ACTIONS(3193), - [anon_sym_noreturn] = ACTIONS(3193), - [anon_sym_mutable] = ACTIONS(3193), - [anon_sym_constinit] = ACTIONS(3193), - [anon_sym_consteval] = ACTIONS(3193), - [sym_primitive_type] = ACTIONS(3193), - [anon_sym_enum] = ACTIONS(3193), - [anon_sym_class] = ACTIONS(3193), - [anon_sym_struct] = ACTIONS(3193), - [anon_sym_union] = ACTIONS(3193), - [anon_sym_if] = ACTIONS(3193), - [anon_sym_else] = ACTIONS(3193), - [anon_sym_switch] = ACTIONS(3193), - [anon_sym_case] = ACTIONS(3193), - [anon_sym_default] = ACTIONS(3193), - [anon_sym_while] = ACTIONS(3193), - [anon_sym_do] = ACTIONS(3193), - [anon_sym_for] = ACTIONS(3193), - [anon_sym_return] = ACTIONS(3193), - [anon_sym_break] = ACTIONS(3193), - [anon_sym_continue] = ACTIONS(3193), - [anon_sym_goto] = ACTIONS(3193), - [anon_sym___try] = ACTIONS(3193), - [anon_sym___leave] = ACTIONS(3193), - [anon_sym_not] = ACTIONS(3193), - [anon_sym_compl] = ACTIONS(3193), - [anon_sym_DASH_DASH] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_sizeof] = ACTIONS(3193), - [anon_sym___alignof__] = ACTIONS(3193), - [anon_sym___alignof] = ACTIONS(3193), - [anon_sym__alignof] = ACTIONS(3193), - [anon_sym_alignof] = ACTIONS(3193), - [anon_sym__Alignof] = ACTIONS(3193), - [anon_sym_offsetof] = ACTIONS(3193), - [anon_sym__Generic] = ACTIONS(3193), - [anon_sym_asm] = ACTIONS(3193), - [anon_sym___asm__] = ACTIONS(3193), - [sym_number_literal] = ACTIONS(3195), - [anon_sym_L_SQUOTE] = ACTIONS(3195), - [anon_sym_u_SQUOTE] = ACTIONS(3195), - [anon_sym_U_SQUOTE] = ACTIONS(3195), - [anon_sym_u8_SQUOTE] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(3195), - [anon_sym_L_DQUOTE] = ACTIONS(3195), - [anon_sym_u_DQUOTE] = ACTIONS(3195), - [anon_sym_U_DQUOTE] = ACTIONS(3195), - [anon_sym_u8_DQUOTE] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(3195), - [sym_true] = ACTIONS(3193), - [sym_false] = ACTIONS(3193), - [anon_sym_NULL] = ACTIONS(3193), - [anon_sym_nullptr] = ACTIONS(3193), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3193), - [anon_sym_decltype] = ACTIONS(3193), - [anon_sym_virtual] = ACTIONS(3193), - [anon_sym_alignas] = ACTIONS(3193), - [anon_sym_explicit] = ACTIONS(3193), - [anon_sym_typename] = ACTIONS(3193), - [anon_sym_template] = ACTIONS(3193), - [anon_sym_operator] = ACTIONS(3193), - [anon_sym_try] = ACTIONS(3193), - [anon_sym_delete] = ACTIONS(3193), - [anon_sym_throw] = ACTIONS(3193), - [anon_sym_namespace] = ACTIONS(3193), - [anon_sym_using] = ACTIONS(3193), - [anon_sym_static_assert] = ACTIONS(3193), - [anon_sym_concept] = ACTIONS(3193), - [anon_sym_co_return] = ACTIONS(3193), - [anon_sym_co_yield] = ACTIONS(3193), - [anon_sym_R_DQUOTE] = ACTIONS(3195), - [anon_sym_LR_DQUOTE] = ACTIONS(3195), - [anon_sym_uR_DQUOTE] = ACTIONS(3195), - [anon_sym_UR_DQUOTE] = ACTIONS(3195), - [anon_sym_u8R_DQUOTE] = ACTIONS(3195), - [anon_sym_co_await] = ACTIONS(3193), - [anon_sym_new] = ACTIONS(3193), - [anon_sym_requires] = ACTIONS(3193), - [sym_this] = ACTIONS(3193), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3195), - [sym_semgrep_named_ellipsis] = ACTIONS(3195), - }, - [587] = { - [sym_identifier] = ACTIONS(3201), - [aux_sym_preproc_include_token1] = ACTIONS(3201), - [aux_sym_preproc_def_token1] = ACTIONS(3201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3203), - [aux_sym_preproc_if_token1] = ACTIONS(3201), - [aux_sym_preproc_if_token2] = ACTIONS(3201), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3201), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3201), - [sym_preproc_directive] = ACTIONS(3201), - [anon_sym_LPAREN2] = ACTIONS(3203), - [anon_sym_BANG] = ACTIONS(3203), - [anon_sym_TILDE] = ACTIONS(3203), - [anon_sym_DASH] = ACTIONS(3201), - [anon_sym_PLUS] = ACTIONS(3201), - [anon_sym_STAR] = ACTIONS(3203), - [anon_sym_AMP_AMP] = ACTIONS(3203), - [anon_sym_AMP] = ACTIONS(3201), - [anon_sym_SEMI] = ACTIONS(3203), - [anon_sym___extension__] = ACTIONS(3201), - [anon_sym_typedef] = ACTIONS(3201), - [anon_sym_extern] = ACTIONS(3201), - [anon_sym___attribute__] = ACTIONS(3201), - [anon_sym_COLON_COLON] = ACTIONS(3203), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3203), - [anon_sym___declspec] = ACTIONS(3201), - [anon_sym___based] = ACTIONS(3201), - [anon_sym___cdecl] = ACTIONS(3201), - [anon_sym___clrcall] = ACTIONS(3201), - [anon_sym___stdcall] = ACTIONS(3201), - [anon_sym___fastcall] = ACTIONS(3201), - [anon_sym___thiscall] = ACTIONS(3201), - [anon_sym___vectorcall] = ACTIONS(3201), - [anon_sym_LBRACE] = ACTIONS(3203), - [anon_sym_signed] = ACTIONS(3201), - [anon_sym_unsigned] = ACTIONS(3201), - [anon_sym_long] = ACTIONS(3201), - [anon_sym_short] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_static] = ACTIONS(3201), - [anon_sym_register] = ACTIONS(3201), - [anon_sym_inline] = ACTIONS(3201), - [anon_sym___inline] = ACTIONS(3201), - [anon_sym___inline__] = ACTIONS(3201), - [anon_sym___forceinline] = ACTIONS(3201), - [anon_sym_thread_local] = ACTIONS(3201), - [anon_sym___thread] = ACTIONS(3201), - [anon_sym_const] = ACTIONS(3201), - [anon_sym_constexpr] = ACTIONS(3201), - [anon_sym_volatile] = ACTIONS(3201), - [anon_sym_restrict] = ACTIONS(3201), - [anon_sym___restrict__] = ACTIONS(3201), - [anon_sym__Atomic] = ACTIONS(3201), - [anon_sym__Noreturn] = ACTIONS(3201), - [anon_sym_noreturn] = ACTIONS(3201), - [anon_sym_mutable] = ACTIONS(3201), - [anon_sym_constinit] = ACTIONS(3201), - [anon_sym_consteval] = ACTIONS(3201), - [sym_primitive_type] = ACTIONS(3201), - [anon_sym_enum] = ACTIONS(3201), - [anon_sym_class] = ACTIONS(3201), - [anon_sym_struct] = ACTIONS(3201), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_if] = ACTIONS(3201), - [anon_sym_else] = ACTIONS(3201), - [anon_sym_switch] = ACTIONS(3201), - [anon_sym_case] = ACTIONS(3201), - [anon_sym_default] = ACTIONS(3201), - [anon_sym_while] = ACTIONS(3201), - [anon_sym_do] = ACTIONS(3201), - [anon_sym_for] = ACTIONS(3201), - [anon_sym_return] = ACTIONS(3201), - [anon_sym_break] = ACTIONS(3201), - [anon_sym_continue] = ACTIONS(3201), - [anon_sym_goto] = ACTIONS(3201), - [anon_sym___try] = ACTIONS(3201), - [anon_sym___leave] = ACTIONS(3201), - [anon_sym_not] = ACTIONS(3201), - [anon_sym_compl] = ACTIONS(3201), - [anon_sym_DASH_DASH] = ACTIONS(3203), - [anon_sym_PLUS_PLUS] = ACTIONS(3203), - [anon_sym_sizeof] = ACTIONS(3201), - [anon_sym___alignof__] = ACTIONS(3201), - [anon_sym___alignof] = ACTIONS(3201), - [anon_sym__alignof] = ACTIONS(3201), - [anon_sym_alignof] = ACTIONS(3201), - [anon_sym__Alignof] = ACTIONS(3201), - [anon_sym_offsetof] = ACTIONS(3201), - [anon_sym__Generic] = ACTIONS(3201), - [anon_sym_asm] = ACTIONS(3201), - [anon_sym___asm__] = ACTIONS(3201), - [sym_number_literal] = ACTIONS(3203), - [anon_sym_L_SQUOTE] = ACTIONS(3203), - [anon_sym_u_SQUOTE] = ACTIONS(3203), - [anon_sym_U_SQUOTE] = ACTIONS(3203), - [anon_sym_u8_SQUOTE] = ACTIONS(3203), - [anon_sym_SQUOTE] = ACTIONS(3203), - [anon_sym_L_DQUOTE] = ACTIONS(3203), - [anon_sym_u_DQUOTE] = ACTIONS(3203), - [anon_sym_U_DQUOTE] = ACTIONS(3203), - [anon_sym_u8_DQUOTE] = ACTIONS(3203), - [anon_sym_DQUOTE] = ACTIONS(3203), - [sym_true] = ACTIONS(3201), - [sym_false] = ACTIONS(3201), - [anon_sym_NULL] = ACTIONS(3201), - [anon_sym_nullptr] = ACTIONS(3201), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3201), - [anon_sym_decltype] = ACTIONS(3201), - [anon_sym_virtual] = ACTIONS(3201), - [anon_sym_alignas] = ACTIONS(3201), - [anon_sym_explicit] = ACTIONS(3201), - [anon_sym_typename] = ACTIONS(3201), - [anon_sym_template] = ACTIONS(3201), - [anon_sym_operator] = ACTIONS(3201), - [anon_sym_try] = ACTIONS(3201), - [anon_sym_delete] = ACTIONS(3201), - [anon_sym_throw] = ACTIONS(3201), - [anon_sym_namespace] = ACTIONS(3201), - [anon_sym_using] = ACTIONS(3201), - [anon_sym_static_assert] = ACTIONS(3201), - [anon_sym_concept] = ACTIONS(3201), - [anon_sym_co_return] = ACTIONS(3201), - [anon_sym_co_yield] = ACTIONS(3201), - [anon_sym_R_DQUOTE] = ACTIONS(3203), - [anon_sym_LR_DQUOTE] = ACTIONS(3203), - [anon_sym_uR_DQUOTE] = ACTIONS(3203), - [anon_sym_UR_DQUOTE] = ACTIONS(3203), - [anon_sym_u8R_DQUOTE] = ACTIONS(3203), - [anon_sym_co_await] = ACTIONS(3201), - [anon_sym_new] = ACTIONS(3201), - [anon_sym_requires] = ACTIONS(3201), - [sym_this] = ACTIONS(3201), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3203), - [sym_semgrep_named_ellipsis] = ACTIONS(3203), + [618] = { + [sym_identifier] = ACTIONS(2355), + [aux_sym_preproc_include_token1] = ACTIONS(2355), + [aux_sym_preproc_def_token1] = ACTIONS(2355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2353), + [anon_sym_COMMA] = ACTIONS(3211), + [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(2353), + [anon_sym_BANG] = ACTIONS(2353), + [anon_sym_TILDE] = ACTIONS(2353), + [anon_sym_DASH] = ACTIONS(2355), + [anon_sym_PLUS] = ACTIONS(2355), + [anon_sym_STAR] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(2353), + [anon_sym_AMP] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(3211), + [anon_sym___extension__] = ACTIONS(2355), + [anon_sym_typedef] = ACTIONS(2355), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym___attribute__] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(2353), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), + [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(2353), + [anon_sym_RBRACE] = ACTIONS(2353), + [anon_sym_signed] = ACTIONS(2355), + [anon_sym_unsigned] = ACTIONS(2355), + [anon_sym_long] = ACTIONS(2355), + [anon_sym_short] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_static] = ACTIONS(2355), + [anon_sym_register] = ACTIONS(2355), + [anon_sym_inline] = ACTIONS(2355), + [anon_sym___inline] = ACTIONS(2355), + [anon_sym___inline__] = ACTIONS(2355), + [anon_sym___forceinline] = ACTIONS(2355), + [anon_sym_thread_local] = ACTIONS(2355), + [anon_sym___thread] = ACTIONS(2355), + [anon_sym_const] = ACTIONS(2355), + [anon_sym_constexpr] = ACTIONS(2355), + [anon_sym_volatile] = ACTIONS(2355), + [anon_sym_restrict] = ACTIONS(2355), + [anon_sym___restrict__] = ACTIONS(2355), + [anon_sym__Atomic] = ACTIONS(2355), + [anon_sym__Noreturn] = ACTIONS(2355), + [anon_sym_noreturn] = ACTIONS(2355), + [anon_sym_mutable] = ACTIONS(2355), + [anon_sym_constinit] = ACTIONS(2355), + [anon_sym_consteval] = 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_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___try] = ACTIONS(2355), + [anon_sym___leave] = ACTIONS(2355), + [anon_sym_not] = ACTIONS(2355), + [anon_sym_compl] = ACTIONS(2355), + [anon_sym_DASH_DASH] = ACTIONS(2353), + [anon_sym_PLUS_PLUS] = ACTIONS(2353), + [anon_sym_sizeof] = ACTIONS(2355), + [anon_sym___alignof__] = ACTIONS(2355), + [anon_sym___alignof] = ACTIONS(2355), + [anon_sym__alignof] = ACTIONS(2355), + [anon_sym_alignof] = ACTIONS(2355), + [anon_sym__Alignof] = ACTIONS(2355), + [anon_sym_offsetof] = ACTIONS(2355), + [anon_sym__Generic] = ACTIONS(2355), + [anon_sym_asm] = ACTIONS(2355), + [anon_sym___asm__] = ACTIONS(2355), + [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(2355), + [sym_false] = ACTIONS(2355), + [anon_sym_NULL] = ACTIONS(2355), + [anon_sym_nullptr] = ACTIONS(2355), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2355), + [anon_sym_decltype] = ACTIONS(2355), + [anon_sym_virtual] = ACTIONS(2355), + [anon_sym_alignas] = 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_R_DQUOTE] = ACTIONS(2353), + [anon_sym_LR_DQUOTE] = ACTIONS(2353), + [anon_sym_uR_DQUOTE] = ACTIONS(2353), + [anon_sym_UR_DQUOTE] = ACTIONS(2353), + [anon_sym_u8R_DQUOTE] = ACTIONS(2353), + [anon_sym_co_await] = ACTIONS(2355), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_requires] = ACTIONS(2355), + [sym_this] = ACTIONS(2355), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2353), + [sym_semgrep_named_ellipsis] = ACTIONS(2353), }, - [588] = { - [sym_identifier] = ACTIONS(3125), - [aux_sym_preproc_include_token1] = ACTIONS(3125), - [aux_sym_preproc_def_token1] = ACTIONS(3125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3127), - [aux_sym_preproc_if_token1] = ACTIONS(3125), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3125), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3125), - [sym_preproc_directive] = ACTIONS(3125), - [anon_sym_LPAREN2] = ACTIONS(3127), - [anon_sym_BANG] = ACTIONS(3127), - [anon_sym_TILDE] = ACTIONS(3127), - [anon_sym_DASH] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(3127), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_AMP] = ACTIONS(3125), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym___extension__] = ACTIONS(3125), - [anon_sym_typedef] = ACTIONS(3125), - [anon_sym_extern] = ACTIONS(3125), - [anon_sym___attribute__] = ACTIONS(3125), - [anon_sym_COLON_COLON] = ACTIONS(3127), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3127), - [anon_sym___declspec] = ACTIONS(3125), - [anon_sym___based] = ACTIONS(3125), - [anon_sym___cdecl] = ACTIONS(3125), - [anon_sym___clrcall] = ACTIONS(3125), - [anon_sym___stdcall] = ACTIONS(3125), - [anon_sym___fastcall] = ACTIONS(3125), - [anon_sym___thiscall] = ACTIONS(3125), - [anon_sym___vectorcall] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(3127), - [anon_sym_RBRACE] = ACTIONS(3127), - [anon_sym_signed] = ACTIONS(3125), - [anon_sym_unsigned] = ACTIONS(3125), - [anon_sym_long] = ACTIONS(3125), - [anon_sym_short] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3125), - [anon_sym_static] = ACTIONS(3125), - [anon_sym_register] = ACTIONS(3125), - [anon_sym_inline] = ACTIONS(3125), - [anon_sym___inline] = ACTIONS(3125), - [anon_sym___inline__] = ACTIONS(3125), - [anon_sym___forceinline] = ACTIONS(3125), - [anon_sym_thread_local] = ACTIONS(3125), - [anon_sym___thread] = ACTIONS(3125), - [anon_sym_const] = ACTIONS(3125), - [anon_sym_constexpr] = ACTIONS(3125), - [anon_sym_volatile] = ACTIONS(3125), - [anon_sym_restrict] = ACTIONS(3125), - [anon_sym___restrict__] = ACTIONS(3125), - [anon_sym__Atomic] = ACTIONS(3125), - [anon_sym__Noreturn] = ACTIONS(3125), - [anon_sym_noreturn] = ACTIONS(3125), - [anon_sym_mutable] = ACTIONS(3125), - [anon_sym_constinit] = ACTIONS(3125), - [anon_sym_consteval] = ACTIONS(3125), - [sym_primitive_type] = ACTIONS(3125), - [anon_sym_enum] = ACTIONS(3125), - [anon_sym_class] = ACTIONS(3125), - [anon_sym_struct] = ACTIONS(3125), - [anon_sym_union] = ACTIONS(3125), - [anon_sym_if] = ACTIONS(3125), - [anon_sym_else] = ACTIONS(3125), - [anon_sym_switch] = ACTIONS(3125), - [anon_sym_case] = ACTIONS(3125), - [anon_sym_default] = ACTIONS(3125), - [anon_sym_while] = ACTIONS(3125), - [anon_sym_do] = ACTIONS(3125), - [anon_sym_for] = ACTIONS(3125), - [anon_sym_return] = ACTIONS(3125), - [anon_sym_break] = ACTIONS(3125), - [anon_sym_continue] = ACTIONS(3125), - [anon_sym_goto] = ACTIONS(3125), - [anon_sym___try] = ACTIONS(3125), - [anon_sym___leave] = ACTIONS(3125), - [anon_sym_not] = ACTIONS(3125), - [anon_sym_compl] = ACTIONS(3125), - [anon_sym_DASH_DASH] = ACTIONS(3127), - [anon_sym_PLUS_PLUS] = ACTIONS(3127), - [anon_sym_sizeof] = ACTIONS(3125), - [anon_sym___alignof__] = ACTIONS(3125), - [anon_sym___alignof] = ACTIONS(3125), - [anon_sym__alignof] = ACTIONS(3125), - [anon_sym_alignof] = ACTIONS(3125), - [anon_sym__Alignof] = ACTIONS(3125), - [anon_sym_offsetof] = ACTIONS(3125), - [anon_sym__Generic] = ACTIONS(3125), - [anon_sym_asm] = ACTIONS(3125), - [anon_sym___asm__] = ACTIONS(3125), - [sym_number_literal] = ACTIONS(3127), - [anon_sym_L_SQUOTE] = ACTIONS(3127), - [anon_sym_u_SQUOTE] = ACTIONS(3127), - [anon_sym_U_SQUOTE] = ACTIONS(3127), - [anon_sym_u8_SQUOTE] = ACTIONS(3127), - [anon_sym_SQUOTE] = ACTIONS(3127), - [anon_sym_L_DQUOTE] = ACTIONS(3127), - [anon_sym_u_DQUOTE] = ACTIONS(3127), - [anon_sym_U_DQUOTE] = ACTIONS(3127), - [anon_sym_u8_DQUOTE] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym_true] = ACTIONS(3125), - [sym_false] = ACTIONS(3125), - [anon_sym_NULL] = ACTIONS(3125), - [anon_sym_nullptr] = ACTIONS(3125), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3125), - [anon_sym_decltype] = ACTIONS(3125), - [anon_sym_virtual] = ACTIONS(3125), - [anon_sym_alignas] = ACTIONS(3125), - [anon_sym_explicit] = ACTIONS(3125), - [anon_sym_typename] = ACTIONS(3125), - [anon_sym_template] = ACTIONS(3125), - [anon_sym_operator] = ACTIONS(3125), - [anon_sym_try] = ACTIONS(3125), - [anon_sym_delete] = ACTIONS(3125), - [anon_sym_throw] = ACTIONS(3125), - [anon_sym_namespace] = ACTIONS(3125), - [anon_sym_using] = ACTIONS(3125), - [anon_sym_static_assert] = ACTIONS(3125), - [anon_sym_concept] = ACTIONS(3125), - [anon_sym_co_return] = ACTIONS(3125), - [anon_sym_co_yield] = ACTIONS(3125), - [anon_sym_R_DQUOTE] = ACTIONS(3127), - [anon_sym_LR_DQUOTE] = ACTIONS(3127), - [anon_sym_uR_DQUOTE] = ACTIONS(3127), - [anon_sym_UR_DQUOTE] = ACTIONS(3127), - [anon_sym_u8R_DQUOTE] = ACTIONS(3127), - [anon_sym_co_await] = ACTIONS(3125), - [anon_sym_new] = ACTIONS(3125), - [anon_sym_requires] = ACTIONS(3125), - [sym_this] = ACTIONS(3125), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3127), - [sym_semgrep_named_ellipsis] = ACTIONS(3127), + [619] = { + [sym_identifier] = ACTIONS(3185), + [aux_sym_preproc_include_token1] = ACTIONS(3185), + [aux_sym_preproc_def_token1] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3187), + [aux_sym_preproc_if_token1] = ACTIONS(3185), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3185), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3185), + [sym_preproc_directive] = ACTIONS(3185), + [anon_sym_LPAREN2] = ACTIONS(3187), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_TILDE] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3185), + [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(3187), + [anon_sym_AMP_AMP] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(3185), + [anon_sym_SEMI] = ACTIONS(3187), + [anon_sym___extension__] = ACTIONS(3185), + [anon_sym_typedef] = ACTIONS(3185), + [anon_sym_extern] = ACTIONS(3185), + [anon_sym___attribute__] = ACTIONS(3185), + [anon_sym_COLON_COLON] = ACTIONS(3187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3187), + [anon_sym___declspec] = ACTIONS(3185), + [anon_sym___based] = ACTIONS(3185), + [anon_sym___cdecl] = ACTIONS(3185), + [anon_sym___clrcall] = ACTIONS(3185), + [anon_sym___stdcall] = ACTIONS(3185), + [anon_sym___fastcall] = ACTIONS(3185), + [anon_sym___thiscall] = ACTIONS(3185), + [anon_sym___vectorcall] = ACTIONS(3185), + [anon_sym_LBRACE] = ACTIONS(3187), + [anon_sym_RBRACE] = ACTIONS(3187), + [anon_sym_signed] = ACTIONS(3185), + [anon_sym_unsigned] = ACTIONS(3185), + [anon_sym_long] = ACTIONS(3185), + [anon_sym_short] = ACTIONS(3185), + [anon_sym_LBRACK] = ACTIONS(3185), + [anon_sym_static] = ACTIONS(3185), + [anon_sym_register] = ACTIONS(3185), + [anon_sym_inline] = ACTIONS(3185), + [anon_sym___inline] = ACTIONS(3185), + [anon_sym___inline__] = ACTIONS(3185), + [anon_sym___forceinline] = ACTIONS(3185), + [anon_sym_thread_local] = ACTIONS(3185), + [anon_sym___thread] = ACTIONS(3185), + [anon_sym_const] = ACTIONS(3185), + [anon_sym_constexpr] = ACTIONS(3185), + [anon_sym_volatile] = ACTIONS(3185), + [anon_sym_restrict] = ACTIONS(3185), + [anon_sym___restrict__] = ACTIONS(3185), + [anon_sym__Atomic] = ACTIONS(3185), + [anon_sym__Noreturn] = ACTIONS(3185), + [anon_sym_noreturn] = ACTIONS(3185), + [anon_sym_mutable] = ACTIONS(3185), + [anon_sym_constinit] = ACTIONS(3185), + [anon_sym_consteval] = ACTIONS(3185), + [sym_primitive_type] = ACTIONS(3185), + [anon_sym_enum] = ACTIONS(3185), + [anon_sym_class] = ACTIONS(3185), + [anon_sym_struct] = ACTIONS(3185), + [anon_sym_union] = ACTIONS(3185), + [anon_sym_if] = ACTIONS(3185), + [anon_sym_else] = ACTIONS(3185), + [anon_sym_switch] = ACTIONS(3185), + [anon_sym_case] = ACTIONS(3185), + [anon_sym_default] = ACTIONS(3185), + [anon_sym_while] = ACTIONS(3185), + [anon_sym_do] = ACTIONS(3185), + [anon_sym_for] = ACTIONS(3185), + [anon_sym_return] = ACTIONS(3185), + [anon_sym_break] = ACTIONS(3185), + [anon_sym_continue] = ACTIONS(3185), + [anon_sym_goto] = ACTIONS(3185), + [anon_sym___try] = ACTIONS(3185), + [anon_sym___leave] = ACTIONS(3185), + [anon_sym_not] = ACTIONS(3185), + [anon_sym_compl] = ACTIONS(3185), + [anon_sym_DASH_DASH] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3187), + [anon_sym_sizeof] = ACTIONS(3185), + [anon_sym___alignof__] = ACTIONS(3185), + [anon_sym___alignof] = ACTIONS(3185), + [anon_sym__alignof] = ACTIONS(3185), + [anon_sym_alignof] = ACTIONS(3185), + [anon_sym__Alignof] = ACTIONS(3185), + [anon_sym_offsetof] = ACTIONS(3185), + [anon_sym__Generic] = ACTIONS(3185), + [anon_sym_asm] = ACTIONS(3185), + [anon_sym___asm__] = ACTIONS(3185), + [sym_number_literal] = ACTIONS(3187), + [anon_sym_L_SQUOTE] = ACTIONS(3187), + [anon_sym_u_SQUOTE] = ACTIONS(3187), + [anon_sym_U_SQUOTE] = ACTIONS(3187), + [anon_sym_u8_SQUOTE] = ACTIONS(3187), + [anon_sym_SQUOTE] = ACTIONS(3187), + [anon_sym_L_DQUOTE] = ACTIONS(3187), + [anon_sym_u_DQUOTE] = ACTIONS(3187), + [anon_sym_U_DQUOTE] = ACTIONS(3187), + [anon_sym_u8_DQUOTE] = ACTIONS(3187), + [anon_sym_DQUOTE] = ACTIONS(3187), + [sym_true] = ACTIONS(3185), + [sym_false] = ACTIONS(3185), + [anon_sym_NULL] = ACTIONS(3185), + [anon_sym_nullptr] = ACTIONS(3185), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3185), + [anon_sym_decltype] = ACTIONS(3185), + [anon_sym_virtual] = ACTIONS(3185), + [anon_sym_alignas] = ACTIONS(3185), + [anon_sym_explicit] = ACTIONS(3185), + [anon_sym_typename] = ACTIONS(3185), + [anon_sym_template] = ACTIONS(3185), + [anon_sym_operator] = ACTIONS(3185), + [anon_sym_try] = ACTIONS(3185), + [anon_sym_delete] = ACTIONS(3185), + [anon_sym_throw] = ACTIONS(3185), + [anon_sym_namespace] = ACTIONS(3185), + [anon_sym_using] = ACTIONS(3185), + [anon_sym_static_assert] = ACTIONS(3185), + [anon_sym_concept] = ACTIONS(3185), + [anon_sym_co_return] = ACTIONS(3185), + [anon_sym_co_yield] = ACTIONS(3185), + [anon_sym_R_DQUOTE] = ACTIONS(3187), + [anon_sym_LR_DQUOTE] = ACTIONS(3187), + [anon_sym_uR_DQUOTE] = ACTIONS(3187), + [anon_sym_UR_DQUOTE] = ACTIONS(3187), + [anon_sym_u8R_DQUOTE] = ACTIONS(3187), + [anon_sym_co_await] = ACTIONS(3185), + [anon_sym_new] = ACTIONS(3185), + [anon_sym_requires] = ACTIONS(3185), + [sym_this] = ACTIONS(3185), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3187), + [sym_semgrep_named_ellipsis] = ACTIONS(3187), }, - [589] = { - [sym_identifier] = ACTIONS(3147), - [aux_sym_preproc_include_token1] = ACTIONS(3147), - [aux_sym_preproc_def_token1] = ACTIONS(3147), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3149), - [aux_sym_preproc_if_token1] = ACTIONS(3147), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3147), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3147), - [sym_preproc_directive] = ACTIONS(3147), - [anon_sym_LPAREN2] = ACTIONS(3149), - [anon_sym_BANG] = ACTIONS(3149), - [anon_sym_TILDE] = ACTIONS(3149), - [anon_sym_DASH] = ACTIONS(3147), - [anon_sym_PLUS] = ACTIONS(3147), - [anon_sym_STAR] = ACTIONS(3149), - [anon_sym_AMP_AMP] = ACTIONS(3149), - [anon_sym_AMP] = ACTIONS(3147), - [anon_sym_SEMI] = ACTIONS(3149), - [anon_sym___extension__] = ACTIONS(3147), - [anon_sym_typedef] = ACTIONS(3147), - [anon_sym_extern] = ACTIONS(3147), - [anon_sym___attribute__] = ACTIONS(3147), - [anon_sym_COLON_COLON] = ACTIONS(3149), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3149), - [anon_sym___declspec] = ACTIONS(3147), - [anon_sym___based] = ACTIONS(3147), - [anon_sym___cdecl] = ACTIONS(3147), - [anon_sym___clrcall] = ACTIONS(3147), - [anon_sym___stdcall] = ACTIONS(3147), - [anon_sym___fastcall] = ACTIONS(3147), - [anon_sym___thiscall] = ACTIONS(3147), - [anon_sym___vectorcall] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_RBRACE] = ACTIONS(3149), - [anon_sym_signed] = ACTIONS(3147), - [anon_sym_unsigned] = ACTIONS(3147), - [anon_sym_long] = ACTIONS(3147), - [anon_sym_short] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3147), - [anon_sym_static] = ACTIONS(3147), - [anon_sym_register] = ACTIONS(3147), - [anon_sym_inline] = ACTIONS(3147), - [anon_sym___inline] = ACTIONS(3147), - [anon_sym___inline__] = ACTIONS(3147), - [anon_sym___forceinline] = ACTIONS(3147), - [anon_sym_thread_local] = ACTIONS(3147), - [anon_sym___thread] = ACTIONS(3147), - [anon_sym_const] = ACTIONS(3147), - [anon_sym_constexpr] = ACTIONS(3147), - [anon_sym_volatile] = ACTIONS(3147), - [anon_sym_restrict] = ACTIONS(3147), - [anon_sym___restrict__] = ACTIONS(3147), - [anon_sym__Atomic] = ACTIONS(3147), - [anon_sym__Noreturn] = ACTIONS(3147), - [anon_sym_noreturn] = ACTIONS(3147), - [anon_sym_mutable] = ACTIONS(3147), - [anon_sym_constinit] = ACTIONS(3147), - [anon_sym_consteval] = ACTIONS(3147), - [sym_primitive_type] = ACTIONS(3147), - [anon_sym_enum] = ACTIONS(3147), - [anon_sym_class] = ACTIONS(3147), - [anon_sym_struct] = ACTIONS(3147), - [anon_sym_union] = ACTIONS(3147), - [anon_sym_if] = ACTIONS(3147), - [anon_sym_else] = ACTIONS(3147), - [anon_sym_switch] = ACTIONS(3147), - [anon_sym_case] = ACTIONS(3147), - [anon_sym_default] = ACTIONS(3147), - [anon_sym_while] = ACTIONS(3147), - [anon_sym_do] = ACTIONS(3147), - [anon_sym_for] = ACTIONS(3147), - [anon_sym_return] = ACTIONS(3147), - [anon_sym_break] = ACTIONS(3147), - [anon_sym_continue] = ACTIONS(3147), - [anon_sym_goto] = ACTIONS(3147), - [anon_sym___try] = ACTIONS(3147), - [anon_sym___leave] = ACTIONS(3147), - [anon_sym_not] = ACTIONS(3147), - [anon_sym_compl] = ACTIONS(3147), - [anon_sym_DASH_DASH] = ACTIONS(3149), - [anon_sym_PLUS_PLUS] = ACTIONS(3149), - [anon_sym_sizeof] = ACTIONS(3147), - [anon_sym___alignof__] = ACTIONS(3147), - [anon_sym___alignof] = ACTIONS(3147), - [anon_sym__alignof] = ACTIONS(3147), - [anon_sym_alignof] = ACTIONS(3147), - [anon_sym__Alignof] = ACTIONS(3147), - [anon_sym_offsetof] = ACTIONS(3147), - [anon_sym__Generic] = ACTIONS(3147), - [anon_sym_asm] = ACTIONS(3147), - [anon_sym___asm__] = ACTIONS(3147), - [sym_number_literal] = ACTIONS(3149), - [anon_sym_L_SQUOTE] = ACTIONS(3149), - [anon_sym_u_SQUOTE] = ACTIONS(3149), - [anon_sym_U_SQUOTE] = ACTIONS(3149), - [anon_sym_u8_SQUOTE] = ACTIONS(3149), - [anon_sym_SQUOTE] = ACTIONS(3149), - [anon_sym_L_DQUOTE] = ACTIONS(3149), - [anon_sym_u_DQUOTE] = ACTIONS(3149), - [anon_sym_U_DQUOTE] = ACTIONS(3149), - [anon_sym_u8_DQUOTE] = ACTIONS(3149), - [anon_sym_DQUOTE] = ACTIONS(3149), - [sym_true] = ACTIONS(3147), - [sym_false] = ACTIONS(3147), - [anon_sym_NULL] = ACTIONS(3147), - [anon_sym_nullptr] = ACTIONS(3147), + [620] = { + [ts_builtin_sym_end] = ACTIONS(3157), + [sym_identifier] = ACTIONS(3155), + [aux_sym_preproc_include_token1] = ACTIONS(3155), + [aux_sym_preproc_def_token1] = ACTIONS(3155), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3157), + [aux_sym_preproc_if_token1] = ACTIONS(3155), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3155), + [sym_preproc_directive] = ACTIONS(3155), + [anon_sym_LPAREN2] = ACTIONS(3157), + [anon_sym_BANG] = ACTIONS(3157), + [anon_sym_TILDE] = ACTIONS(3157), + [anon_sym_DASH] = ACTIONS(3155), + [anon_sym_PLUS] = ACTIONS(3155), + [anon_sym_STAR] = ACTIONS(3157), + [anon_sym_AMP_AMP] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym_SEMI] = ACTIONS(3157), + [anon_sym___extension__] = ACTIONS(3155), + [anon_sym_typedef] = ACTIONS(3155), + [anon_sym_extern] = ACTIONS(3155), + [anon_sym___attribute__] = ACTIONS(3155), + [anon_sym_COLON_COLON] = ACTIONS(3157), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3157), + [anon_sym___declspec] = ACTIONS(3155), + [anon_sym___based] = ACTIONS(3155), + [anon_sym___cdecl] = ACTIONS(3155), + [anon_sym___clrcall] = ACTIONS(3155), + [anon_sym___stdcall] = ACTIONS(3155), + [anon_sym___fastcall] = ACTIONS(3155), + [anon_sym___thiscall] = ACTIONS(3155), + [anon_sym___vectorcall] = ACTIONS(3155), + [anon_sym_LBRACE] = ACTIONS(3157), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3155), + [anon_sym_static] = ACTIONS(3155), + [anon_sym_register] = ACTIONS(3155), + [anon_sym_inline] = ACTIONS(3155), + [anon_sym___inline] = ACTIONS(3155), + [anon_sym___inline__] = ACTIONS(3155), + [anon_sym___forceinline] = ACTIONS(3155), + [anon_sym_thread_local] = ACTIONS(3155), + [anon_sym___thread] = ACTIONS(3155), + [anon_sym_const] = ACTIONS(3155), + [anon_sym_constexpr] = ACTIONS(3155), + [anon_sym_volatile] = ACTIONS(3155), + [anon_sym_restrict] = ACTIONS(3155), + [anon_sym___restrict__] = ACTIONS(3155), + [anon_sym__Atomic] = ACTIONS(3155), + [anon_sym__Noreturn] = ACTIONS(3155), + [anon_sym_noreturn] = ACTIONS(3155), + [anon_sym_mutable] = ACTIONS(3155), + [anon_sym_constinit] = ACTIONS(3155), + [anon_sym_consteval] = ACTIONS(3155), + [sym_primitive_type] = ACTIONS(3155), + [anon_sym_enum] = ACTIONS(3155), + [anon_sym_class] = ACTIONS(3155), + [anon_sym_struct] = ACTIONS(3155), + [anon_sym_union] = ACTIONS(3155), + [anon_sym_if] = ACTIONS(3155), + [anon_sym_else] = ACTIONS(3155), + [anon_sym_switch] = ACTIONS(3155), + [anon_sym_case] = ACTIONS(3155), + [anon_sym_default] = ACTIONS(3155), + [anon_sym_while] = ACTIONS(3155), + [anon_sym_do] = ACTIONS(3155), + [anon_sym_for] = ACTIONS(3155), + [anon_sym_return] = ACTIONS(3155), + [anon_sym_break] = ACTIONS(3155), + [anon_sym_continue] = ACTIONS(3155), + [anon_sym_goto] = ACTIONS(3155), + [anon_sym___try] = ACTIONS(3155), + [anon_sym___leave] = ACTIONS(3155), + [anon_sym_not] = ACTIONS(3155), + [anon_sym_compl] = ACTIONS(3155), + [anon_sym_DASH_DASH] = ACTIONS(3157), + [anon_sym_PLUS_PLUS] = ACTIONS(3157), + [anon_sym_sizeof] = ACTIONS(3155), + [anon_sym___alignof__] = ACTIONS(3155), + [anon_sym___alignof] = ACTIONS(3155), + [anon_sym__alignof] = ACTIONS(3155), + [anon_sym_alignof] = ACTIONS(3155), + [anon_sym__Alignof] = ACTIONS(3155), + [anon_sym_offsetof] = ACTIONS(3155), + [anon_sym__Generic] = ACTIONS(3155), + [anon_sym_asm] = ACTIONS(3155), + [anon_sym___asm__] = ACTIONS(3155), + [sym_number_literal] = ACTIONS(3157), + [anon_sym_L_SQUOTE] = ACTIONS(3157), + [anon_sym_u_SQUOTE] = ACTIONS(3157), + [anon_sym_U_SQUOTE] = ACTIONS(3157), + [anon_sym_u8_SQUOTE] = ACTIONS(3157), + [anon_sym_SQUOTE] = ACTIONS(3157), + [anon_sym_L_DQUOTE] = ACTIONS(3157), + [anon_sym_u_DQUOTE] = ACTIONS(3157), + [anon_sym_U_DQUOTE] = ACTIONS(3157), + [anon_sym_u8_DQUOTE] = ACTIONS(3157), + [anon_sym_DQUOTE] = ACTIONS(3157), + [sym_true] = ACTIONS(3155), + [sym_false] = ACTIONS(3155), + [anon_sym_NULL] = ACTIONS(3155), + [anon_sym_nullptr] = ACTIONS(3155), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3147), - [anon_sym_decltype] = ACTIONS(3147), - [anon_sym_virtual] = ACTIONS(3147), - [anon_sym_alignas] = ACTIONS(3147), - [anon_sym_explicit] = ACTIONS(3147), - [anon_sym_typename] = ACTIONS(3147), - [anon_sym_template] = ACTIONS(3147), - [anon_sym_operator] = ACTIONS(3147), - [anon_sym_try] = ACTIONS(3147), - [anon_sym_delete] = ACTIONS(3147), - [anon_sym_throw] = ACTIONS(3147), - [anon_sym_namespace] = ACTIONS(3147), - [anon_sym_using] = ACTIONS(3147), - [anon_sym_static_assert] = ACTIONS(3147), - [anon_sym_concept] = ACTIONS(3147), - [anon_sym_co_return] = ACTIONS(3147), - [anon_sym_co_yield] = ACTIONS(3147), - [anon_sym_R_DQUOTE] = ACTIONS(3149), - [anon_sym_LR_DQUOTE] = ACTIONS(3149), - [anon_sym_uR_DQUOTE] = ACTIONS(3149), - [anon_sym_UR_DQUOTE] = ACTIONS(3149), - [anon_sym_u8R_DQUOTE] = ACTIONS(3149), - [anon_sym_co_await] = ACTIONS(3147), - [anon_sym_new] = ACTIONS(3147), - [anon_sym_requires] = ACTIONS(3147), - [sym_this] = ACTIONS(3147), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3149), - [sym_semgrep_named_ellipsis] = ACTIONS(3149), + [sym_auto] = ACTIONS(3155), + [anon_sym_decltype] = ACTIONS(3155), + [anon_sym_virtual] = ACTIONS(3155), + [anon_sym_alignas] = ACTIONS(3155), + [anon_sym_explicit] = ACTIONS(3155), + [anon_sym_typename] = ACTIONS(3155), + [anon_sym_template] = ACTIONS(3155), + [anon_sym_operator] = ACTIONS(3155), + [anon_sym_try] = ACTIONS(3155), + [anon_sym_delete] = ACTIONS(3155), + [anon_sym_throw] = ACTIONS(3155), + [anon_sym_namespace] = ACTIONS(3155), + [anon_sym_using] = ACTIONS(3155), + [anon_sym_static_assert] = ACTIONS(3155), + [anon_sym_concept] = ACTIONS(3155), + [anon_sym_co_return] = ACTIONS(3155), + [anon_sym_co_yield] = ACTIONS(3155), + [anon_sym_R_DQUOTE] = ACTIONS(3157), + [anon_sym_LR_DQUOTE] = ACTIONS(3157), + [anon_sym_uR_DQUOTE] = ACTIONS(3157), + [anon_sym_UR_DQUOTE] = ACTIONS(3157), + [anon_sym_u8R_DQUOTE] = ACTIONS(3157), + [anon_sym_co_await] = ACTIONS(3155), + [anon_sym_new] = ACTIONS(3155), + [anon_sym_requires] = ACTIONS(3155), + [sym_this] = ACTIONS(3155), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3157), + [sym_semgrep_named_ellipsis] = ACTIONS(3157), }, - [590] = { - [sym_identifier] = ACTIONS(3151), - [aux_sym_preproc_include_token1] = ACTIONS(3151), - [aux_sym_preproc_def_token1] = ACTIONS(3151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3153), - [aux_sym_preproc_if_token1] = ACTIONS(3151), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3151), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3151), - [sym_preproc_directive] = ACTIONS(3151), - [anon_sym_LPAREN2] = ACTIONS(3153), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_TILDE] = ACTIONS(3153), - [anon_sym_DASH] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(3151), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_AMP_AMP] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3151), - [anon_sym_SEMI] = ACTIONS(3153), - [anon_sym___extension__] = ACTIONS(3151), - [anon_sym_typedef] = ACTIONS(3151), - [anon_sym_extern] = ACTIONS(3151), - [anon_sym___attribute__] = ACTIONS(3151), - [anon_sym_COLON_COLON] = ACTIONS(3153), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3153), - [anon_sym___declspec] = ACTIONS(3151), - [anon_sym___based] = ACTIONS(3151), - [anon_sym___cdecl] = ACTIONS(3151), - [anon_sym___clrcall] = ACTIONS(3151), - [anon_sym___stdcall] = ACTIONS(3151), - [anon_sym___fastcall] = ACTIONS(3151), - [anon_sym___thiscall] = ACTIONS(3151), - [anon_sym___vectorcall] = ACTIONS(3151), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_RBRACE] = ACTIONS(3153), - [anon_sym_signed] = ACTIONS(3151), - [anon_sym_unsigned] = ACTIONS(3151), - [anon_sym_long] = ACTIONS(3151), - [anon_sym_short] = ACTIONS(3151), - [anon_sym_LBRACK] = ACTIONS(3151), - [anon_sym_static] = ACTIONS(3151), - [anon_sym_register] = ACTIONS(3151), - [anon_sym_inline] = ACTIONS(3151), - [anon_sym___inline] = ACTIONS(3151), - [anon_sym___inline__] = ACTIONS(3151), - [anon_sym___forceinline] = ACTIONS(3151), - [anon_sym_thread_local] = ACTIONS(3151), - [anon_sym___thread] = ACTIONS(3151), - [anon_sym_const] = ACTIONS(3151), - [anon_sym_constexpr] = ACTIONS(3151), - [anon_sym_volatile] = ACTIONS(3151), - [anon_sym_restrict] = ACTIONS(3151), - [anon_sym___restrict__] = ACTIONS(3151), - [anon_sym__Atomic] = ACTIONS(3151), - [anon_sym__Noreturn] = ACTIONS(3151), - [anon_sym_noreturn] = ACTIONS(3151), - [anon_sym_mutable] = ACTIONS(3151), - [anon_sym_constinit] = ACTIONS(3151), - [anon_sym_consteval] = ACTIONS(3151), - [sym_primitive_type] = ACTIONS(3151), - [anon_sym_enum] = ACTIONS(3151), - [anon_sym_class] = ACTIONS(3151), - [anon_sym_struct] = ACTIONS(3151), - [anon_sym_union] = ACTIONS(3151), - [anon_sym_if] = ACTIONS(3151), - [anon_sym_else] = ACTIONS(3151), - [anon_sym_switch] = ACTIONS(3151), - [anon_sym_case] = ACTIONS(3151), - [anon_sym_default] = ACTIONS(3151), - [anon_sym_while] = ACTIONS(3151), - [anon_sym_do] = ACTIONS(3151), - [anon_sym_for] = ACTIONS(3151), - [anon_sym_return] = ACTIONS(3151), - [anon_sym_break] = ACTIONS(3151), - [anon_sym_continue] = ACTIONS(3151), - [anon_sym_goto] = ACTIONS(3151), - [anon_sym___try] = ACTIONS(3151), - [anon_sym___leave] = ACTIONS(3151), - [anon_sym_not] = ACTIONS(3151), - [anon_sym_compl] = ACTIONS(3151), - [anon_sym_DASH_DASH] = ACTIONS(3153), - [anon_sym_PLUS_PLUS] = ACTIONS(3153), - [anon_sym_sizeof] = ACTIONS(3151), - [anon_sym___alignof__] = ACTIONS(3151), - [anon_sym___alignof] = ACTIONS(3151), - [anon_sym__alignof] = ACTIONS(3151), - [anon_sym_alignof] = ACTIONS(3151), - [anon_sym__Alignof] = ACTIONS(3151), - [anon_sym_offsetof] = ACTIONS(3151), - [anon_sym__Generic] = ACTIONS(3151), - [anon_sym_asm] = ACTIONS(3151), - [anon_sym___asm__] = ACTIONS(3151), - [sym_number_literal] = ACTIONS(3153), - [anon_sym_L_SQUOTE] = ACTIONS(3153), - [anon_sym_u_SQUOTE] = ACTIONS(3153), - [anon_sym_U_SQUOTE] = ACTIONS(3153), - [anon_sym_u8_SQUOTE] = ACTIONS(3153), - [anon_sym_SQUOTE] = ACTIONS(3153), - [anon_sym_L_DQUOTE] = ACTIONS(3153), - [anon_sym_u_DQUOTE] = ACTIONS(3153), - [anon_sym_U_DQUOTE] = ACTIONS(3153), - [anon_sym_u8_DQUOTE] = ACTIONS(3153), - [anon_sym_DQUOTE] = ACTIONS(3153), - [sym_true] = ACTIONS(3151), - [sym_false] = ACTIONS(3151), - [anon_sym_NULL] = ACTIONS(3151), - [anon_sym_nullptr] = ACTIONS(3151), + [621] = { + [ts_builtin_sym_end] = ACTIONS(3089), + [sym_identifier] = ACTIONS(3087), + [aux_sym_preproc_include_token1] = ACTIONS(3087), + [aux_sym_preproc_def_token1] = ACTIONS(3087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [aux_sym_preproc_if_token1] = ACTIONS(3087), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3087), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3087), + [sym_preproc_directive] = ACTIONS(3087), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_BANG] = ACTIONS(3089), + [anon_sym_TILDE] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3087), + [anon_sym_STAR] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_typedef] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3089), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3089), + [anon_sym___declspec] = ACTIONS(3087), + [anon_sym___based] = ACTIONS(3087), + [anon_sym___cdecl] = ACTIONS(3087), + [anon_sym___clrcall] = ACTIONS(3087), + [anon_sym___stdcall] = ACTIONS(3087), + [anon_sym___fastcall] = ACTIONS(3087), + [anon_sym___thiscall] = ACTIONS(3087), + [anon_sym___vectorcall] = ACTIONS(3087), + [anon_sym_LBRACE] = ACTIONS(3089), + [anon_sym_signed] = ACTIONS(3087), + [anon_sym_unsigned] = ACTIONS(3087), + [anon_sym_long] = ACTIONS(3087), + [anon_sym_short] = ACTIONS(3087), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_register] = ACTIONS(3087), + [anon_sym_inline] = ACTIONS(3087), + [anon_sym___inline] = ACTIONS(3087), + [anon_sym___inline__] = ACTIONS(3087), + [anon_sym___forceinline] = ACTIONS(3087), + [anon_sym_thread_local] = ACTIONS(3087), + [anon_sym___thread] = ACTIONS(3087), + [anon_sym_const] = ACTIONS(3087), + [anon_sym_constexpr] = ACTIONS(3087), + [anon_sym_volatile] = ACTIONS(3087), + [anon_sym_restrict] = ACTIONS(3087), + [anon_sym___restrict__] = ACTIONS(3087), + [anon_sym__Atomic] = ACTIONS(3087), + [anon_sym__Noreturn] = ACTIONS(3087), + [anon_sym_noreturn] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [sym_primitive_type] = ACTIONS(3087), + [anon_sym_enum] = ACTIONS(3087), + [anon_sym_class] = ACTIONS(3087), + [anon_sym_struct] = ACTIONS(3087), + [anon_sym_union] = ACTIONS(3087), + [anon_sym_if] = ACTIONS(3087), + [anon_sym_else] = ACTIONS(3087), + [anon_sym_switch] = ACTIONS(3087), + [anon_sym_case] = ACTIONS(3087), + [anon_sym_default] = ACTIONS(3087), + [anon_sym_while] = ACTIONS(3087), + [anon_sym_do] = ACTIONS(3087), + [anon_sym_for] = ACTIONS(3087), + [anon_sym_return] = ACTIONS(3087), + [anon_sym_break] = ACTIONS(3087), + [anon_sym_continue] = ACTIONS(3087), + [anon_sym_goto] = ACTIONS(3087), + [anon_sym___try] = ACTIONS(3087), + [anon_sym___leave] = ACTIONS(3087), + [anon_sym_not] = ACTIONS(3087), + [anon_sym_compl] = ACTIONS(3087), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_sizeof] = ACTIONS(3087), + [anon_sym___alignof__] = ACTIONS(3087), + [anon_sym___alignof] = ACTIONS(3087), + [anon_sym__alignof] = ACTIONS(3087), + [anon_sym_alignof] = ACTIONS(3087), + [anon_sym__Alignof] = ACTIONS(3087), + [anon_sym_offsetof] = ACTIONS(3087), + [anon_sym__Generic] = ACTIONS(3087), + [anon_sym_asm] = ACTIONS(3087), + [anon_sym___asm__] = ACTIONS(3087), + [sym_number_literal] = ACTIONS(3089), + [anon_sym_L_SQUOTE] = ACTIONS(3089), + [anon_sym_u_SQUOTE] = ACTIONS(3089), + [anon_sym_U_SQUOTE] = ACTIONS(3089), + [anon_sym_u8_SQUOTE] = ACTIONS(3089), + [anon_sym_SQUOTE] = ACTIONS(3089), + [anon_sym_L_DQUOTE] = ACTIONS(3089), + [anon_sym_u_DQUOTE] = ACTIONS(3089), + [anon_sym_U_DQUOTE] = ACTIONS(3089), + [anon_sym_u8_DQUOTE] = ACTIONS(3089), + [anon_sym_DQUOTE] = ACTIONS(3089), + [sym_true] = ACTIONS(3087), + [sym_false] = ACTIONS(3087), + [anon_sym_NULL] = ACTIONS(3087), + [anon_sym_nullptr] = ACTIONS(3087), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym_explicit] = ACTIONS(3087), + [anon_sym_typename] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [anon_sym_try] = ACTIONS(3087), + [anon_sym_delete] = ACTIONS(3087), + [anon_sym_throw] = ACTIONS(3087), + [anon_sym_namespace] = ACTIONS(3087), + [anon_sym_using] = ACTIONS(3087), + [anon_sym_static_assert] = ACTIONS(3087), + [anon_sym_concept] = ACTIONS(3087), + [anon_sym_co_return] = ACTIONS(3087), + [anon_sym_co_yield] = ACTIONS(3087), + [anon_sym_R_DQUOTE] = ACTIONS(3089), + [anon_sym_LR_DQUOTE] = ACTIONS(3089), + [anon_sym_uR_DQUOTE] = ACTIONS(3089), + [anon_sym_UR_DQUOTE] = ACTIONS(3089), + [anon_sym_u8R_DQUOTE] = ACTIONS(3089), + [anon_sym_co_await] = ACTIONS(3087), + [anon_sym_new] = ACTIONS(3087), + [anon_sym_requires] = ACTIONS(3087), + [sym_this] = ACTIONS(3087), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3089), + [sym_semgrep_named_ellipsis] = ACTIONS(3089), + }, + [622] = { + [sym_identifier] = ACTIONS(3091), + [aux_sym_preproc_include_token1] = ACTIONS(3091), + [aux_sym_preproc_def_token1] = ACTIONS(3091), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3093), + [aux_sym_preproc_if_token1] = ACTIONS(3091), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3091), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3091), + [sym_preproc_directive] = ACTIONS(3091), + [anon_sym_LPAREN2] = ACTIONS(3093), + [anon_sym_BANG] = ACTIONS(3093), + [anon_sym_TILDE] = ACTIONS(3093), + [anon_sym_DASH] = ACTIONS(3091), + [anon_sym_PLUS] = ACTIONS(3091), + [anon_sym_STAR] = ACTIONS(3093), + [anon_sym_AMP_AMP] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym___extension__] = ACTIONS(3091), + [anon_sym_typedef] = ACTIONS(3091), + [anon_sym_extern] = ACTIONS(3091), + [anon_sym___attribute__] = ACTIONS(3091), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3093), + [anon_sym___declspec] = ACTIONS(3091), + [anon_sym___based] = ACTIONS(3091), + [anon_sym___cdecl] = ACTIONS(3091), + [anon_sym___clrcall] = ACTIONS(3091), + [anon_sym___stdcall] = ACTIONS(3091), + [anon_sym___fastcall] = ACTIONS(3091), + [anon_sym___thiscall] = ACTIONS(3091), + [anon_sym___vectorcall] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_RBRACE] = ACTIONS(3093), + [anon_sym_signed] = ACTIONS(3091), + [anon_sym_unsigned] = ACTIONS(3091), + [anon_sym_long] = ACTIONS(3091), + [anon_sym_short] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_static] = ACTIONS(3091), + [anon_sym_register] = ACTIONS(3091), + [anon_sym_inline] = ACTIONS(3091), + [anon_sym___inline] = ACTIONS(3091), + [anon_sym___inline__] = ACTIONS(3091), + [anon_sym___forceinline] = ACTIONS(3091), + [anon_sym_thread_local] = ACTIONS(3091), + [anon_sym___thread] = ACTIONS(3091), + [anon_sym_const] = ACTIONS(3091), + [anon_sym_constexpr] = ACTIONS(3091), + [anon_sym_volatile] = ACTIONS(3091), + [anon_sym_restrict] = ACTIONS(3091), + [anon_sym___restrict__] = ACTIONS(3091), + [anon_sym__Atomic] = ACTIONS(3091), + [anon_sym__Noreturn] = ACTIONS(3091), + [anon_sym_noreturn] = ACTIONS(3091), + [anon_sym_mutable] = ACTIONS(3091), + [anon_sym_constinit] = ACTIONS(3091), + [anon_sym_consteval] = ACTIONS(3091), + [sym_primitive_type] = ACTIONS(3091), + [anon_sym_enum] = ACTIONS(3091), + [anon_sym_class] = ACTIONS(3091), + [anon_sym_struct] = ACTIONS(3091), + [anon_sym_union] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3091), + [anon_sym_else] = ACTIONS(3091), + [anon_sym_switch] = ACTIONS(3091), + [anon_sym_case] = ACTIONS(3091), + [anon_sym_default] = ACTIONS(3091), + [anon_sym_while] = ACTIONS(3091), + [anon_sym_do] = ACTIONS(3091), + [anon_sym_for] = ACTIONS(3091), + [anon_sym_return] = ACTIONS(3091), + [anon_sym_break] = ACTIONS(3091), + [anon_sym_continue] = ACTIONS(3091), + [anon_sym_goto] = ACTIONS(3091), + [anon_sym___try] = ACTIONS(3091), + [anon_sym___leave] = ACTIONS(3091), + [anon_sym_not] = ACTIONS(3091), + [anon_sym_compl] = ACTIONS(3091), + [anon_sym_DASH_DASH] = ACTIONS(3093), + [anon_sym_PLUS_PLUS] = ACTIONS(3093), + [anon_sym_sizeof] = ACTIONS(3091), + [anon_sym___alignof__] = ACTIONS(3091), + [anon_sym___alignof] = ACTIONS(3091), + [anon_sym__alignof] = ACTIONS(3091), + [anon_sym_alignof] = ACTIONS(3091), + [anon_sym__Alignof] = ACTIONS(3091), + [anon_sym_offsetof] = ACTIONS(3091), + [anon_sym__Generic] = ACTIONS(3091), + [anon_sym_asm] = ACTIONS(3091), + [anon_sym___asm__] = ACTIONS(3091), + [sym_number_literal] = ACTIONS(3093), + [anon_sym_L_SQUOTE] = ACTIONS(3093), + [anon_sym_u_SQUOTE] = ACTIONS(3093), + [anon_sym_U_SQUOTE] = ACTIONS(3093), + [anon_sym_u8_SQUOTE] = ACTIONS(3093), + [anon_sym_SQUOTE] = ACTIONS(3093), + [anon_sym_L_DQUOTE] = ACTIONS(3093), + [anon_sym_u_DQUOTE] = ACTIONS(3093), + [anon_sym_U_DQUOTE] = ACTIONS(3093), + [anon_sym_u8_DQUOTE] = ACTIONS(3093), + [anon_sym_DQUOTE] = ACTIONS(3093), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [anon_sym_NULL] = ACTIONS(3091), + [anon_sym_nullptr] = ACTIONS(3091), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3091), + [anon_sym_decltype] = ACTIONS(3091), + [anon_sym_virtual] = ACTIONS(3091), + [anon_sym_alignas] = ACTIONS(3091), + [anon_sym_explicit] = ACTIONS(3091), + [anon_sym_typename] = ACTIONS(3091), + [anon_sym_template] = ACTIONS(3091), + [anon_sym_operator] = ACTIONS(3091), + [anon_sym_try] = ACTIONS(3091), + [anon_sym_delete] = ACTIONS(3091), + [anon_sym_throw] = ACTIONS(3091), + [anon_sym_namespace] = ACTIONS(3091), + [anon_sym_using] = ACTIONS(3091), + [anon_sym_static_assert] = ACTIONS(3091), + [anon_sym_concept] = ACTIONS(3091), + [anon_sym_co_return] = ACTIONS(3091), + [anon_sym_co_yield] = ACTIONS(3091), + [anon_sym_R_DQUOTE] = ACTIONS(3093), + [anon_sym_LR_DQUOTE] = ACTIONS(3093), + [anon_sym_uR_DQUOTE] = ACTIONS(3093), + [anon_sym_UR_DQUOTE] = ACTIONS(3093), + [anon_sym_u8R_DQUOTE] = ACTIONS(3093), + [anon_sym_co_await] = ACTIONS(3091), + [anon_sym_new] = ACTIONS(3091), + [anon_sym_requires] = ACTIONS(3091), + [sym_this] = ACTIONS(3091), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3093), + [sym_semgrep_named_ellipsis] = ACTIONS(3093), + }, + [623] = { + [sym_preproc_def] = STATE(2142), + [sym_preproc_function_def] = STATE(2142), + [sym_preproc_call] = STATE(2142), + [sym_preproc_if_in_field_declaration_list] = STATE(2142), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2142), + [sym_preproc_else_in_field_declaration_list] = STATE(9514), + [sym_preproc_elif_in_field_declaration_list] = STATE(9514), + [sym_type_definition] = STATE(2142), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6398), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7291), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(631), + [sym_field_declaration] = STATE(2142), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2142), + [sym_operator_cast] = STATE(7774), + [sym_inline_method_definition] = STATE(2142), + [sym_constructor_specifiers] = STATE(1937), + [sym_operator_cast_definition] = STATE(2142), + [sym_operator_cast_declaration] = STATE(2142), + [sym_constructor_or_destructor_definition] = STATE(2142), + [sym_constructor_or_destructor_declaration] = STATE(2142), + [sym_friend_declaration] = STATE(2142), + [sym_access_specifier] = STATE(9170), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2142), + [sym_alias_declaration] = STATE(2142), + [sym_static_assert_declaration] = STATE(2142), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7774), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2142), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(631), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1937), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(3839), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3841), + [aux_sym_preproc_if_token1] = ACTIONS(3843), + [aux_sym_preproc_if_token2] = ACTIONS(3877), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3847), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3849), + [aux_sym_preproc_else_token1] = ACTIONS(3241), + [aux_sym_preproc_elif_token1] = ACTIONS(3243), + [sym_preproc_directive] = ACTIONS(3851), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(3853), + [anon_sym_typedef] = ACTIONS(3855), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3151), - [anon_sym_decltype] = ACTIONS(3151), - [anon_sym_virtual] = ACTIONS(3151), - [anon_sym_alignas] = ACTIONS(3151), - [anon_sym_explicit] = ACTIONS(3151), - [anon_sym_typename] = ACTIONS(3151), - [anon_sym_template] = ACTIONS(3151), - [anon_sym_operator] = ACTIONS(3151), - [anon_sym_try] = ACTIONS(3151), - [anon_sym_delete] = ACTIONS(3151), - [anon_sym_throw] = ACTIONS(3151), - [anon_sym_namespace] = ACTIONS(3151), - [anon_sym_using] = ACTIONS(3151), - [anon_sym_static_assert] = ACTIONS(3151), - [anon_sym_concept] = ACTIONS(3151), - [anon_sym_co_return] = ACTIONS(3151), - [anon_sym_co_yield] = ACTIONS(3151), - [anon_sym_R_DQUOTE] = ACTIONS(3153), - [anon_sym_LR_DQUOTE] = ACTIONS(3153), - [anon_sym_uR_DQUOTE] = ACTIONS(3153), - [anon_sym_UR_DQUOTE] = ACTIONS(3153), - [anon_sym_u8R_DQUOTE] = ACTIONS(3153), - [anon_sym_co_await] = ACTIONS(3151), - [anon_sym_new] = ACTIONS(3151), - [anon_sym_requires] = ACTIONS(3151), - [sym_this] = ACTIONS(3151), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3153), - [sym_semgrep_named_ellipsis] = ACTIONS(3153), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(3857), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(3859), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3861), + [anon_sym_static_assert] = ACTIONS(3863), + [sym_semgrep_metavar] = ACTIONS(3865), }, - [591] = { + [624] = { [sym_identifier] = ACTIONS(3155), [aux_sym_preproc_include_token1] = ACTIONS(3155), [aux_sym_preproc_def_token1] = ACTIONS(3155), [anon_sym_DOT_DOT_DOT] = ACTIONS(3157), [aux_sym_preproc_if_token1] = ACTIONS(3155), + [aux_sym_preproc_if_token2] = ACTIONS(3155), [aux_sym_preproc_ifdef_token1] = ACTIONS(3155), [aux_sym_preproc_ifdef_token2] = ACTIONS(3155), [sym_preproc_directive] = ACTIONS(3155), @@ -147186,7 +141841,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(3155), [anon_sym___vectorcall] = ACTIONS(3155), [anon_sym_LBRACE] = ACTIONS(3157), - [anon_sym_RBRACE] = ACTIONS(3157), [anon_sym_signed] = ACTIONS(3155), [anon_sym_unsigned] = ACTIONS(3155), [anon_sym_long] = ACTIONS(3155), @@ -147289,824 +141943,1913 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3157), [sym_semgrep_named_ellipsis] = ACTIONS(3157), }, - [592] = { - [sym_identifier] = ACTIONS(3231), - [aux_sym_preproc_include_token1] = ACTIONS(3231), - [aux_sym_preproc_def_token1] = ACTIONS(3231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3233), - [aux_sym_preproc_if_token1] = ACTIONS(3231), - [aux_sym_preproc_if_token2] = ACTIONS(3231), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3231), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3231), - [sym_preproc_directive] = ACTIONS(3231), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(3233), - [anon_sym_TILDE] = ACTIONS(3233), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3233), - [anon_sym_AMP_AMP] = ACTIONS(3233), - [anon_sym_AMP] = ACTIONS(3231), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym___extension__] = ACTIONS(3231), - [anon_sym_typedef] = ACTIONS(3231), - [anon_sym_extern] = ACTIONS(3231), - [anon_sym___attribute__] = ACTIONS(3231), - [anon_sym_COLON_COLON] = ACTIONS(3233), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3233), - [anon_sym___declspec] = ACTIONS(3231), - [anon_sym___based] = ACTIONS(3231), - [anon_sym___cdecl] = ACTIONS(3231), - [anon_sym___clrcall] = ACTIONS(3231), - [anon_sym___stdcall] = ACTIONS(3231), - [anon_sym___fastcall] = ACTIONS(3231), - [anon_sym___thiscall] = ACTIONS(3231), - [anon_sym___vectorcall] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_signed] = ACTIONS(3231), - [anon_sym_unsigned] = ACTIONS(3231), - [anon_sym_long] = ACTIONS(3231), - [anon_sym_short] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_static] = ACTIONS(3231), - [anon_sym_register] = ACTIONS(3231), - [anon_sym_inline] = ACTIONS(3231), - [anon_sym___inline] = ACTIONS(3231), - [anon_sym___inline__] = ACTIONS(3231), - [anon_sym___forceinline] = ACTIONS(3231), - [anon_sym_thread_local] = ACTIONS(3231), - [anon_sym___thread] = ACTIONS(3231), - [anon_sym_const] = ACTIONS(3231), - [anon_sym_constexpr] = ACTIONS(3231), - [anon_sym_volatile] = ACTIONS(3231), - [anon_sym_restrict] = ACTIONS(3231), - [anon_sym___restrict__] = ACTIONS(3231), - [anon_sym__Atomic] = ACTIONS(3231), - [anon_sym__Noreturn] = ACTIONS(3231), - [anon_sym_noreturn] = ACTIONS(3231), - [anon_sym_mutable] = ACTIONS(3231), - [anon_sym_constinit] = ACTIONS(3231), - [anon_sym_consteval] = ACTIONS(3231), - [sym_primitive_type] = ACTIONS(3231), - [anon_sym_enum] = ACTIONS(3231), - [anon_sym_class] = ACTIONS(3231), - [anon_sym_struct] = ACTIONS(3231), - [anon_sym_union] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_else] = ACTIONS(3231), - [anon_sym_switch] = ACTIONS(3231), - [anon_sym_case] = ACTIONS(3231), - [anon_sym_default] = ACTIONS(3231), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_do] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_break] = ACTIONS(3231), - [anon_sym_continue] = ACTIONS(3231), - [anon_sym_goto] = ACTIONS(3231), - [anon_sym___try] = ACTIONS(3231), - [anon_sym___leave] = ACTIONS(3231), - [anon_sym_not] = ACTIONS(3231), - [anon_sym_compl] = ACTIONS(3231), - [anon_sym_DASH_DASH] = ACTIONS(3233), - [anon_sym_PLUS_PLUS] = ACTIONS(3233), - [anon_sym_sizeof] = ACTIONS(3231), - [anon_sym___alignof__] = ACTIONS(3231), - [anon_sym___alignof] = ACTIONS(3231), - [anon_sym__alignof] = ACTIONS(3231), - [anon_sym_alignof] = ACTIONS(3231), - [anon_sym__Alignof] = ACTIONS(3231), - [anon_sym_offsetof] = ACTIONS(3231), - [anon_sym__Generic] = ACTIONS(3231), - [anon_sym_asm] = ACTIONS(3231), - [anon_sym___asm__] = ACTIONS(3231), - [sym_number_literal] = ACTIONS(3233), - [anon_sym_L_SQUOTE] = ACTIONS(3233), - [anon_sym_u_SQUOTE] = ACTIONS(3233), - [anon_sym_U_SQUOTE] = ACTIONS(3233), - [anon_sym_u8_SQUOTE] = ACTIONS(3233), - [anon_sym_SQUOTE] = ACTIONS(3233), - [anon_sym_L_DQUOTE] = ACTIONS(3233), - [anon_sym_u_DQUOTE] = ACTIONS(3233), - [anon_sym_U_DQUOTE] = ACTIONS(3233), - [anon_sym_u8_DQUOTE] = ACTIONS(3233), - [anon_sym_DQUOTE] = ACTIONS(3233), - [sym_true] = ACTIONS(3231), - [sym_false] = ACTIONS(3231), - [anon_sym_NULL] = ACTIONS(3231), - [anon_sym_nullptr] = ACTIONS(3231), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3231), - [anon_sym_decltype] = ACTIONS(3231), - [anon_sym_virtual] = ACTIONS(3231), - [anon_sym_alignas] = ACTIONS(3231), - [anon_sym_explicit] = ACTIONS(3231), - [anon_sym_typename] = ACTIONS(3231), - [anon_sym_template] = ACTIONS(3231), - [anon_sym_operator] = ACTIONS(3231), - [anon_sym_try] = ACTIONS(3231), - [anon_sym_delete] = ACTIONS(3231), - [anon_sym_throw] = ACTIONS(3231), - [anon_sym_namespace] = ACTIONS(3231), - [anon_sym_using] = ACTIONS(3231), - [anon_sym_static_assert] = ACTIONS(3231), - [anon_sym_concept] = ACTIONS(3231), - [anon_sym_co_return] = ACTIONS(3231), - [anon_sym_co_yield] = ACTIONS(3231), - [anon_sym_R_DQUOTE] = ACTIONS(3233), - [anon_sym_LR_DQUOTE] = ACTIONS(3233), - [anon_sym_uR_DQUOTE] = ACTIONS(3233), - [anon_sym_UR_DQUOTE] = ACTIONS(3233), - [anon_sym_u8R_DQUOTE] = ACTIONS(3233), - [anon_sym_co_await] = ACTIONS(3231), - [anon_sym_new] = ACTIONS(3231), - [anon_sym_requires] = ACTIONS(3231), - [sym_this] = ACTIONS(3231), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3233), - [sym_semgrep_named_ellipsis] = ACTIONS(3233), - }, - [593] = { - [sym_identifier] = ACTIONS(3235), - [aux_sym_preproc_include_token1] = ACTIONS(3235), - [aux_sym_preproc_def_token1] = ACTIONS(3235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3237), - [aux_sym_preproc_if_token1] = ACTIONS(3235), - [aux_sym_preproc_if_token2] = ACTIONS(3235), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3235), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3235), - [sym_preproc_directive] = ACTIONS(3235), - [anon_sym_LPAREN2] = ACTIONS(3237), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_TILDE] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3235), - [anon_sym_STAR] = ACTIONS(3237), - [anon_sym_AMP_AMP] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3235), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym___extension__] = ACTIONS(3235), - [anon_sym_typedef] = ACTIONS(3235), - [anon_sym_extern] = ACTIONS(3235), - [anon_sym___attribute__] = ACTIONS(3235), - [anon_sym_COLON_COLON] = ACTIONS(3237), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3237), - [anon_sym___declspec] = ACTIONS(3235), - [anon_sym___based] = ACTIONS(3235), - [anon_sym___cdecl] = ACTIONS(3235), - [anon_sym___clrcall] = ACTIONS(3235), - [anon_sym___stdcall] = ACTIONS(3235), - [anon_sym___fastcall] = ACTIONS(3235), - [anon_sym___thiscall] = ACTIONS(3235), - [anon_sym___vectorcall] = ACTIONS(3235), - [anon_sym_LBRACE] = ACTIONS(3237), - [anon_sym_signed] = ACTIONS(3235), - [anon_sym_unsigned] = ACTIONS(3235), - [anon_sym_long] = ACTIONS(3235), - [anon_sym_short] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3235), - [anon_sym_static] = ACTIONS(3235), - [anon_sym_register] = ACTIONS(3235), - [anon_sym_inline] = ACTIONS(3235), - [anon_sym___inline] = ACTIONS(3235), - [anon_sym___inline__] = ACTIONS(3235), - [anon_sym___forceinline] = ACTIONS(3235), - [anon_sym_thread_local] = ACTIONS(3235), - [anon_sym___thread] = ACTIONS(3235), - [anon_sym_const] = ACTIONS(3235), - [anon_sym_constexpr] = ACTIONS(3235), - [anon_sym_volatile] = ACTIONS(3235), - [anon_sym_restrict] = ACTIONS(3235), - [anon_sym___restrict__] = ACTIONS(3235), - [anon_sym__Atomic] = ACTIONS(3235), - [anon_sym__Noreturn] = ACTIONS(3235), - [anon_sym_noreturn] = ACTIONS(3235), - [anon_sym_mutable] = ACTIONS(3235), - [anon_sym_constinit] = ACTIONS(3235), - [anon_sym_consteval] = ACTIONS(3235), - [sym_primitive_type] = ACTIONS(3235), - [anon_sym_enum] = ACTIONS(3235), - [anon_sym_class] = ACTIONS(3235), - [anon_sym_struct] = ACTIONS(3235), - [anon_sym_union] = ACTIONS(3235), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_else] = ACTIONS(3235), - [anon_sym_switch] = ACTIONS(3235), - [anon_sym_case] = ACTIONS(3235), - [anon_sym_default] = ACTIONS(3235), - [anon_sym_while] = ACTIONS(3235), - [anon_sym_do] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_return] = ACTIONS(3235), - [anon_sym_break] = ACTIONS(3235), - [anon_sym_continue] = ACTIONS(3235), - [anon_sym_goto] = ACTIONS(3235), - [anon_sym___try] = ACTIONS(3235), - [anon_sym___leave] = ACTIONS(3235), - [anon_sym_not] = ACTIONS(3235), - [anon_sym_compl] = ACTIONS(3235), - [anon_sym_DASH_DASH] = ACTIONS(3237), - [anon_sym_PLUS_PLUS] = ACTIONS(3237), - [anon_sym_sizeof] = ACTIONS(3235), - [anon_sym___alignof__] = ACTIONS(3235), - [anon_sym___alignof] = ACTIONS(3235), - [anon_sym__alignof] = ACTIONS(3235), - [anon_sym_alignof] = ACTIONS(3235), - [anon_sym__Alignof] = ACTIONS(3235), - [anon_sym_offsetof] = ACTIONS(3235), - [anon_sym__Generic] = ACTIONS(3235), - [anon_sym_asm] = ACTIONS(3235), - [anon_sym___asm__] = ACTIONS(3235), - [sym_number_literal] = ACTIONS(3237), - [anon_sym_L_SQUOTE] = ACTIONS(3237), - [anon_sym_u_SQUOTE] = ACTIONS(3237), - [anon_sym_U_SQUOTE] = ACTIONS(3237), - [anon_sym_u8_SQUOTE] = ACTIONS(3237), - [anon_sym_SQUOTE] = ACTIONS(3237), - [anon_sym_L_DQUOTE] = ACTIONS(3237), - [anon_sym_u_DQUOTE] = ACTIONS(3237), - [anon_sym_U_DQUOTE] = ACTIONS(3237), - [anon_sym_u8_DQUOTE] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(3237), - [sym_true] = ACTIONS(3235), - [sym_false] = ACTIONS(3235), - [anon_sym_NULL] = ACTIONS(3235), - [anon_sym_nullptr] = ACTIONS(3235), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3235), - [anon_sym_decltype] = ACTIONS(3235), - [anon_sym_virtual] = ACTIONS(3235), - [anon_sym_alignas] = ACTIONS(3235), - [anon_sym_explicit] = ACTIONS(3235), - [anon_sym_typename] = ACTIONS(3235), - [anon_sym_template] = ACTIONS(3235), - [anon_sym_operator] = ACTIONS(3235), - [anon_sym_try] = ACTIONS(3235), - [anon_sym_delete] = ACTIONS(3235), - [anon_sym_throw] = ACTIONS(3235), - [anon_sym_namespace] = ACTIONS(3235), - [anon_sym_using] = ACTIONS(3235), - [anon_sym_static_assert] = ACTIONS(3235), - [anon_sym_concept] = ACTIONS(3235), - [anon_sym_co_return] = ACTIONS(3235), - [anon_sym_co_yield] = ACTIONS(3235), - [anon_sym_R_DQUOTE] = ACTIONS(3237), - [anon_sym_LR_DQUOTE] = ACTIONS(3237), - [anon_sym_uR_DQUOTE] = ACTIONS(3237), - [anon_sym_UR_DQUOTE] = ACTIONS(3237), - [anon_sym_u8R_DQUOTE] = ACTIONS(3237), - [anon_sym_co_await] = ACTIONS(3235), - [anon_sym_new] = ACTIONS(3235), - [anon_sym_requires] = ACTIONS(3235), - [sym_this] = ACTIONS(3235), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3237), - [sym_semgrep_named_ellipsis] = ACTIONS(3237), + [625] = { + [ts_builtin_sym_end] = ACTIONS(3101), + [sym_identifier] = ACTIONS(3099), + [aux_sym_preproc_include_token1] = ACTIONS(3099), + [aux_sym_preproc_def_token1] = ACTIONS(3099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3101), + [aux_sym_preproc_if_token1] = ACTIONS(3099), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3099), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3099), + [sym_preproc_directive] = ACTIONS(3099), + [anon_sym_LPAREN2] = ACTIONS(3101), + [anon_sym_BANG] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3101), + [anon_sym_DASH] = ACTIONS(3099), + [anon_sym_PLUS] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_AMP_AMP] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym_SEMI] = ACTIONS(3101), + [anon_sym___extension__] = ACTIONS(3099), + [anon_sym_typedef] = ACTIONS(3099), + [anon_sym_extern] = ACTIONS(3099), + [anon_sym___attribute__] = ACTIONS(3099), + [anon_sym_COLON_COLON] = ACTIONS(3101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3101), + [anon_sym___declspec] = ACTIONS(3099), + [anon_sym___based] = ACTIONS(3099), + [anon_sym___cdecl] = ACTIONS(3099), + [anon_sym___clrcall] = ACTIONS(3099), + [anon_sym___stdcall] = ACTIONS(3099), + [anon_sym___fastcall] = ACTIONS(3099), + [anon_sym___thiscall] = ACTIONS(3099), + [anon_sym___vectorcall] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(3101), + [anon_sym_signed] = ACTIONS(3099), + [anon_sym_unsigned] = ACTIONS(3099), + [anon_sym_long] = ACTIONS(3099), + [anon_sym_short] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3099), + [anon_sym_register] = ACTIONS(3099), + [anon_sym_inline] = ACTIONS(3099), + [anon_sym___inline] = ACTIONS(3099), + [anon_sym___inline__] = ACTIONS(3099), + [anon_sym___forceinline] = ACTIONS(3099), + [anon_sym_thread_local] = ACTIONS(3099), + [anon_sym___thread] = ACTIONS(3099), + [anon_sym_const] = ACTIONS(3099), + [anon_sym_constexpr] = ACTIONS(3099), + [anon_sym_volatile] = ACTIONS(3099), + [anon_sym_restrict] = ACTIONS(3099), + [anon_sym___restrict__] = ACTIONS(3099), + [anon_sym__Atomic] = ACTIONS(3099), + [anon_sym__Noreturn] = ACTIONS(3099), + [anon_sym_noreturn] = ACTIONS(3099), + [anon_sym_mutable] = ACTIONS(3099), + [anon_sym_constinit] = ACTIONS(3099), + [anon_sym_consteval] = ACTIONS(3099), + [sym_primitive_type] = ACTIONS(3099), + [anon_sym_enum] = ACTIONS(3099), + [anon_sym_class] = ACTIONS(3099), + [anon_sym_struct] = ACTIONS(3099), + [anon_sym_union] = ACTIONS(3099), + [anon_sym_if] = ACTIONS(3099), + [anon_sym_else] = ACTIONS(3099), + [anon_sym_switch] = ACTIONS(3099), + [anon_sym_case] = ACTIONS(3099), + [anon_sym_default] = ACTIONS(3099), + [anon_sym_while] = ACTIONS(3099), + [anon_sym_do] = ACTIONS(3099), + [anon_sym_for] = ACTIONS(3099), + [anon_sym_return] = ACTIONS(3099), + [anon_sym_break] = ACTIONS(3099), + [anon_sym_continue] = ACTIONS(3099), + [anon_sym_goto] = ACTIONS(3099), + [anon_sym___try] = ACTIONS(3099), + [anon_sym___leave] = ACTIONS(3099), + [anon_sym_not] = ACTIONS(3099), + [anon_sym_compl] = ACTIONS(3099), + [anon_sym_DASH_DASH] = ACTIONS(3101), + [anon_sym_PLUS_PLUS] = ACTIONS(3101), + [anon_sym_sizeof] = ACTIONS(3099), + [anon_sym___alignof__] = ACTIONS(3099), + [anon_sym___alignof] = ACTIONS(3099), + [anon_sym__alignof] = ACTIONS(3099), + [anon_sym_alignof] = ACTIONS(3099), + [anon_sym__Alignof] = ACTIONS(3099), + [anon_sym_offsetof] = ACTIONS(3099), + [anon_sym__Generic] = ACTIONS(3099), + [anon_sym_asm] = ACTIONS(3099), + [anon_sym___asm__] = ACTIONS(3099), + [sym_number_literal] = ACTIONS(3101), + [anon_sym_L_SQUOTE] = ACTIONS(3101), + [anon_sym_u_SQUOTE] = ACTIONS(3101), + [anon_sym_U_SQUOTE] = ACTIONS(3101), + [anon_sym_u8_SQUOTE] = ACTIONS(3101), + [anon_sym_SQUOTE] = ACTIONS(3101), + [anon_sym_L_DQUOTE] = ACTIONS(3101), + [anon_sym_u_DQUOTE] = ACTIONS(3101), + [anon_sym_U_DQUOTE] = ACTIONS(3101), + [anon_sym_u8_DQUOTE] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(3101), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [anon_sym_NULL] = ACTIONS(3099), + [anon_sym_nullptr] = ACTIONS(3099), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3099), + [anon_sym_decltype] = ACTIONS(3099), + [anon_sym_virtual] = ACTIONS(3099), + [anon_sym_alignas] = ACTIONS(3099), + [anon_sym_explicit] = ACTIONS(3099), + [anon_sym_typename] = ACTIONS(3099), + [anon_sym_template] = ACTIONS(3099), + [anon_sym_operator] = ACTIONS(3099), + [anon_sym_try] = ACTIONS(3099), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_throw] = ACTIONS(3099), + [anon_sym_namespace] = ACTIONS(3099), + [anon_sym_using] = ACTIONS(3099), + [anon_sym_static_assert] = ACTIONS(3099), + [anon_sym_concept] = ACTIONS(3099), + [anon_sym_co_return] = ACTIONS(3099), + [anon_sym_co_yield] = ACTIONS(3099), + [anon_sym_R_DQUOTE] = ACTIONS(3101), + [anon_sym_LR_DQUOTE] = ACTIONS(3101), + [anon_sym_uR_DQUOTE] = ACTIONS(3101), + [anon_sym_UR_DQUOTE] = ACTIONS(3101), + [anon_sym_u8R_DQUOTE] = ACTIONS(3101), + [anon_sym_co_await] = ACTIONS(3099), + [anon_sym_new] = ACTIONS(3099), + [anon_sym_requires] = ACTIONS(3099), + [sym_this] = ACTIONS(3099), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3101), + [sym_semgrep_named_ellipsis] = ACTIONS(3101), }, - [594] = { - [sym_identifier] = ACTIONS(3105), - [aux_sym_preproc_include_token1] = ACTIONS(3105), - [aux_sym_preproc_def_token1] = ACTIONS(3105), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3107), - [aux_sym_preproc_if_token1] = ACTIONS(3105), - [aux_sym_preproc_if_token2] = ACTIONS(3105), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3105), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3105), - [sym_preproc_directive] = ACTIONS(3105), - [anon_sym_LPAREN2] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3107), - [anon_sym_TILDE] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(3105), - [anon_sym_PLUS] = ACTIONS(3105), - [anon_sym_STAR] = ACTIONS(3107), - [anon_sym_AMP_AMP] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym___extension__] = ACTIONS(3105), - [anon_sym_typedef] = ACTIONS(3105), - [anon_sym_extern] = ACTIONS(3105), - [anon_sym___attribute__] = ACTIONS(3105), - [anon_sym_COLON_COLON] = ACTIONS(3107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3107), - [anon_sym___declspec] = ACTIONS(3105), - [anon_sym___based] = ACTIONS(3105), - [anon_sym___cdecl] = ACTIONS(3105), - [anon_sym___clrcall] = ACTIONS(3105), - [anon_sym___stdcall] = ACTIONS(3105), - [anon_sym___fastcall] = ACTIONS(3105), - [anon_sym___thiscall] = ACTIONS(3105), - [anon_sym___vectorcall] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(3107), - [anon_sym_signed] = ACTIONS(3105), - [anon_sym_unsigned] = ACTIONS(3105), - [anon_sym_long] = ACTIONS(3105), - [anon_sym_short] = ACTIONS(3105), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_static] = ACTIONS(3105), - [anon_sym_register] = ACTIONS(3105), - [anon_sym_inline] = ACTIONS(3105), - [anon_sym___inline] = ACTIONS(3105), - [anon_sym___inline__] = ACTIONS(3105), - [anon_sym___forceinline] = ACTIONS(3105), - [anon_sym_thread_local] = ACTIONS(3105), - [anon_sym___thread] = ACTIONS(3105), - [anon_sym_const] = ACTIONS(3105), - [anon_sym_constexpr] = ACTIONS(3105), - [anon_sym_volatile] = ACTIONS(3105), - [anon_sym_restrict] = ACTIONS(3105), - [anon_sym___restrict__] = ACTIONS(3105), - [anon_sym__Atomic] = ACTIONS(3105), - [anon_sym__Noreturn] = ACTIONS(3105), - [anon_sym_noreturn] = ACTIONS(3105), - [anon_sym_mutable] = ACTIONS(3105), - [anon_sym_constinit] = ACTIONS(3105), - [anon_sym_consteval] = ACTIONS(3105), - [sym_primitive_type] = ACTIONS(3105), - [anon_sym_enum] = ACTIONS(3105), - [anon_sym_class] = ACTIONS(3105), - [anon_sym_struct] = ACTIONS(3105), - [anon_sym_union] = ACTIONS(3105), - [anon_sym_if] = ACTIONS(3105), - [anon_sym_else] = ACTIONS(3105), - [anon_sym_switch] = ACTIONS(3105), - [anon_sym_case] = ACTIONS(3105), - [anon_sym_default] = ACTIONS(3105), - [anon_sym_while] = ACTIONS(3105), - [anon_sym_do] = ACTIONS(3105), - [anon_sym_for] = ACTIONS(3105), - [anon_sym_return] = ACTIONS(3105), - [anon_sym_break] = ACTIONS(3105), - [anon_sym_continue] = ACTIONS(3105), - [anon_sym_goto] = ACTIONS(3105), - [anon_sym___try] = ACTIONS(3105), - [anon_sym___leave] = ACTIONS(3105), - [anon_sym_not] = ACTIONS(3105), - [anon_sym_compl] = ACTIONS(3105), - [anon_sym_DASH_DASH] = ACTIONS(3107), - [anon_sym_PLUS_PLUS] = ACTIONS(3107), - [anon_sym_sizeof] = ACTIONS(3105), - [anon_sym___alignof__] = ACTIONS(3105), - [anon_sym___alignof] = ACTIONS(3105), - [anon_sym__alignof] = ACTIONS(3105), - [anon_sym_alignof] = ACTIONS(3105), - [anon_sym__Alignof] = ACTIONS(3105), - [anon_sym_offsetof] = ACTIONS(3105), - [anon_sym__Generic] = ACTIONS(3105), - [anon_sym_asm] = ACTIONS(3105), - [anon_sym___asm__] = ACTIONS(3105), - [sym_number_literal] = ACTIONS(3107), - [anon_sym_L_SQUOTE] = ACTIONS(3107), - [anon_sym_u_SQUOTE] = ACTIONS(3107), - [anon_sym_U_SQUOTE] = ACTIONS(3107), - [anon_sym_u8_SQUOTE] = ACTIONS(3107), - [anon_sym_SQUOTE] = ACTIONS(3107), - [anon_sym_L_DQUOTE] = ACTIONS(3107), - [anon_sym_u_DQUOTE] = ACTIONS(3107), - [anon_sym_U_DQUOTE] = ACTIONS(3107), - [anon_sym_u8_DQUOTE] = ACTIONS(3107), - [anon_sym_DQUOTE] = ACTIONS(3107), - [sym_true] = ACTIONS(3105), - [sym_false] = ACTIONS(3105), - [anon_sym_NULL] = ACTIONS(3105), - [anon_sym_nullptr] = ACTIONS(3105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3105), - [anon_sym_decltype] = ACTIONS(3105), - [anon_sym_virtual] = ACTIONS(3105), - [anon_sym_alignas] = ACTIONS(3105), - [anon_sym_explicit] = ACTIONS(3105), - [anon_sym_typename] = ACTIONS(3105), - [anon_sym_template] = ACTIONS(3105), - [anon_sym_operator] = ACTIONS(3105), - [anon_sym_try] = ACTIONS(3105), - [anon_sym_delete] = ACTIONS(3105), - [anon_sym_throw] = ACTIONS(3105), - [anon_sym_namespace] = ACTIONS(3105), - [anon_sym_using] = ACTIONS(3105), - [anon_sym_static_assert] = ACTIONS(3105), - [anon_sym_concept] = ACTIONS(3105), - [anon_sym_co_return] = ACTIONS(3105), - [anon_sym_co_yield] = ACTIONS(3105), - [anon_sym_R_DQUOTE] = ACTIONS(3107), - [anon_sym_LR_DQUOTE] = ACTIONS(3107), - [anon_sym_uR_DQUOTE] = ACTIONS(3107), - [anon_sym_UR_DQUOTE] = ACTIONS(3107), - [anon_sym_u8R_DQUOTE] = ACTIONS(3107), - [anon_sym_co_await] = ACTIONS(3105), - [anon_sym_new] = ACTIONS(3105), - [anon_sym_requires] = ACTIONS(3105), - [sym_this] = ACTIONS(3105), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3107), - [sym_semgrep_named_ellipsis] = ACTIONS(3107), + [626] = { + [ts_builtin_sym_end] = ACTIONS(3105), + [sym_identifier] = ACTIONS(3103), + [aux_sym_preproc_include_token1] = ACTIONS(3103), + [aux_sym_preproc_def_token1] = ACTIONS(3103), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3105), + [aux_sym_preproc_if_token1] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3103), + [sym_preproc_directive] = ACTIONS(3103), + [anon_sym_LPAREN2] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3103), + [anon_sym_PLUS] = ACTIONS(3103), + [anon_sym_STAR] = ACTIONS(3105), + [anon_sym_AMP_AMP] = ACTIONS(3105), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym___extension__] = ACTIONS(3103), + [anon_sym_typedef] = ACTIONS(3103), + [anon_sym_extern] = ACTIONS(3103), + [anon_sym___attribute__] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3105), + [anon_sym___declspec] = ACTIONS(3103), + [anon_sym___based] = ACTIONS(3103), + [anon_sym___cdecl] = ACTIONS(3103), + [anon_sym___clrcall] = ACTIONS(3103), + [anon_sym___stdcall] = ACTIONS(3103), + [anon_sym___fastcall] = ACTIONS(3103), + [anon_sym___thiscall] = ACTIONS(3103), + [anon_sym___vectorcall] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(3105), + [anon_sym_signed] = ACTIONS(3103), + [anon_sym_unsigned] = ACTIONS(3103), + [anon_sym_long] = ACTIONS(3103), + [anon_sym_short] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(3103), + [anon_sym_static] = ACTIONS(3103), + [anon_sym_register] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym___inline] = ACTIONS(3103), + [anon_sym___inline__] = ACTIONS(3103), + [anon_sym___forceinline] = ACTIONS(3103), + [anon_sym_thread_local] = ACTIONS(3103), + [anon_sym___thread] = ACTIONS(3103), + [anon_sym_const] = ACTIONS(3103), + [anon_sym_constexpr] = ACTIONS(3103), + [anon_sym_volatile] = ACTIONS(3103), + [anon_sym_restrict] = ACTIONS(3103), + [anon_sym___restrict__] = ACTIONS(3103), + [anon_sym__Atomic] = ACTIONS(3103), + [anon_sym__Noreturn] = ACTIONS(3103), + [anon_sym_noreturn] = ACTIONS(3103), + [anon_sym_mutable] = ACTIONS(3103), + [anon_sym_constinit] = ACTIONS(3103), + [anon_sym_consteval] = ACTIONS(3103), + [sym_primitive_type] = ACTIONS(3103), + [anon_sym_enum] = ACTIONS(3103), + [anon_sym_class] = ACTIONS(3103), + [anon_sym_struct] = ACTIONS(3103), + [anon_sym_union] = ACTIONS(3103), + [anon_sym_if] = ACTIONS(3103), + [anon_sym_else] = ACTIONS(3103), + [anon_sym_switch] = ACTIONS(3103), + [anon_sym_case] = ACTIONS(3103), + [anon_sym_default] = ACTIONS(3103), + [anon_sym_while] = ACTIONS(3103), + [anon_sym_do] = ACTIONS(3103), + [anon_sym_for] = ACTIONS(3103), + [anon_sym_return] = ACTIONS(3103), + [anon_sym_break] = ACTIONS(3103), + [anon_sym_continue] = ACTIONS(3103), + [anon_sym_goto] = ACTIONS(3103), + [anon_sym___try] = ACTIONS(3103), + [anon_sym___leave] = ACTIONS(3103), + [anon_sym_not] = ACTIONS(3103), + [anon_sym_compl] = ACTIONS(3103), + [anon_sym_DASH_DASH] = ACTIONS(3105), + [anon_sym_PLUS_PLUS] = ACTIONS(3105), + [anon_sym_sizeof] = ACTIONS(3103), + [anon_sym___alignof__] = ACTIONS(3103), + [anon_sym___alignof] = ACTIONS(3103), + [anon_sym__alignof] = ACTIONS(3103), + [anon_sym_alignof] = ACTIONS(3103), + [anon_sym__Alignof] = ACTIONS(3103), + [anon_sym_offsetof] = ACTIONS(3103), + [anon_sym__Generic] = ACTIONS(3103), + [anon_sym_asm] = ACTIONS(3103), + [anon_sym___asm__] = ACTIONS(3103), + [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(3103), + [sym_false] = ACTIONS(3103), + [anon_sym_NULL] = ACTIONS(3103), + [anon_sym_nullptr] = ACTIONS(3103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3103), + [anon_sym_decltype] = ACTIONS(3103), + [anon_sym_virtual] = ACTIONS(3103), + [anon_sym_alignas] = ACTIONS(3103), + [anon_sym_explicit] = ACTIONS(3103), + [anon_sym_typename] = ACTIONS(3103), + [anon_sym_template] = ACTIONS(3103), + [anon_sym_operator] = ACTIONS(3103), + [anon_sym_try] = ACTIONS(3103), + [anon_sym_delete] = ACTIONS(3103), + [anon_sym_throw] = ACTIONS(3103), + [anon_sym_namespace] = ACTIONS(3103), + [anon_sym_using] = ACTIONS(3103), + [anon_sym_static_assert] = ACTIONS(3103), + [anon_sym_concept] = ACTIONS(3103), + [anon_sym_co_return] = ACTIONS(3103), + [anon_sym_co_yield] = ACTIONS(3103), + [anon_sym_R_DQUOTE] = ACTIONS(3105), + [anon_sym_LR_DQUOTE] = ACTIONS(3105), + [anon_sym_uR_DQUOTE] = ACTIONS(3105), + [anon_sym_UR_DQUOTE] = ACTIONS(3105), + [anon_sym_u8R_DQUOTE] = ACTIONS(3105), + [anon_sym_co_await] = ACTIONS(3103), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(3103), + [sym_this] = ACTIONS(3103), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3105), + [sym_semgrep_named_ellipsis] = ACTIONS(3105), }, - [595] = { - [sym_identifier] = ACTIONS(3241), - [aux_sym_preproc_include_token1] = ACTIONS(3241), - [aux_sym_preproc_def_token1] = ACTIONS(3241), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3243), - [aux_sym_preproc_if_token1] = ACTIONS(3241), - [aux_sym_preproc_if_token2] = ACTIONS(3241), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3241), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3241), - [sym_preproc_directive] = ACTIONS(3241), - [anon_sym_LPAREN2] = ACTIONS(3243), - [anon_sym_BANG] = ACTIONS(3243), - [anon_sym_TILDE] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(3241), - [anon_sym_PLUS] = ACTIONS(3241), - [anon_sym_STAR] = ACTIONS(3243), - [anon_sym_AMP_AMP] = ACTIONS(3243), - [anon_sym_AMP] = ACTIONS(3241), - [anon_sym_SEMI] = ACTIONS(3243), - [anon_sym___extension__] = ACTIONS(3241), - [anon_sym_typedef] = ACTIONS(3241), - [anon_sym_extern] = ACTIONS(3241), - [anon_sym___attribute__] = ACTIONS(3241), - [anon_sym_COLON_COLON] = ACTIONS(3243), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3243), - [anon_sym___declspec] = ACTIONS(3241), - [anon_sym___based] = ACTIONS(3241), - [anon_sym___cdecl] = ACTIONS(3241), - [anon_sym___clrcall] = ACTIONS(3241), - [anon_sym___stdcall] = ACTIONS(3241), - [anon_sym___fastcall] = ACTIONS(3241), - [anon_sym___thiscall] = ACTIONS(3241), - [anon_sym___vectorcall] = ACTIONS(3241), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_signed] = ACTIONS(3241), - [anon_sym_unsigned] = ACTIONS(3241), - [anon_sym_long] = ACTIONS(3241), - [anon_sym_short] = ACTIONS(3241), - [anon_sym_LBRACK] = ACTIONS(3241), - [anon_sym_static] = ACTIONS(3241), - [anon_sym_register] = ACTIONS(3241), - [anon_sym_inline] = ACTIONS(3241), - [anon_sym___inline] = ACTIONS(3241), - [anon_sym___inline__] = ACTIONS(3241), - [anon_sym___forceinline] = ACTIONS(3241), - [anon_sym_thread_local] = ACTIONS(3241), - [anon_sym___thread] = ACTIONS(3241), - [anon_sym_const] = ACTIONS(3241), - [anon_sym_constexpr] = ACTIONS(3241), - [anon_sym_volatile] = ACTIONS(3241), - [anon_sym_restrict] = ACTIONS(3241), - [anon_sym___restrict__] = ACTIONS(3241), - [anon_sym__Atomic] = ACTIONS(3241), - [anon_sym__Noreturn] = ACTIONS(3241), - [anon_sym_noreturn] = ACTIONS(3241), - [anon_sym_mutable] = ACTIONS(3241), - [anon_sym_constinit] = ACTIONS(3241), - [anon_sym_consteval] = ACTIONS(3241), - [sym_primitive_type] = ACTIONS(3241), - [anon_sym_enum] = ACTIONS(3241), - [anon_sym_class] = ACTIONS(3241), - [anon_sym_struct] = ACTIONS(3241), - [anon_sym_union] = ACTIONS(3241), - [anon_sym_if] = ACTIONS(3241), - [anon_sym_else] = ACTIONS(3241), - [anon_sym_switch] = ACTIONS(3241), - [anon_sym_case] = ACTIONS(3241), - [anon_sym_default] = ACTIONS(3241), - [anon_sym_while] = ACTIONS(3241), - [anon_sym_do] = ACTIONS(3241), - [anon_sym_for] = ACTIONS(3241), - [anon_sym_return] = ACTIONS(3241), - [anon_sym_break] = ACTIONS(3241), - [anon_sym_continue] = ACTIONS(3241), - [anon_sym_goto] = ACTIONS(3241), - [anon_sym___try] = ACTIONS(3241), - [anon_sym___leave] = ACTIONS(3241), - [anon_sym_not] = ACTIONS(3241), - [anon_sym_compl] = ACTIONS(3241), - [anon_sym_DASH_DASH] = ACTIONS(3243), - [anon_sym_PLUS_PLUS] = ACTIONS(3243), - [anon_sym_sizeof] = ACTIONS(3241), - [anon_sym___alignof__] = ACTIONS(3241), - [anon_sym___alignof] = ACTIONS(3241), - [anon_sym__alignof] = ACTIONS(3241), - [anon_sym_alignof] = ACTIONS(3241), - [anon_sym__Alignof] = ACTIONS(3241), - [anon_sym_offsetof] = ACTIONS(3241), - [anon_sym__Generic] = ACTIONS(3241), - [anon_sym_asm] = ACTIONS(3241), - [anon_sym___asm__] = ACTIONS(3241), - [sym_number_literal] = ACTIONS(3243), - [anon_sym_L_SQUOTE] = ACTIONS(3243), - [anon_sym_u_SQUOTE] = ACTIONS(3243), - [anon_sym_U_SQUOTE] = ACTIONS(3243), - [anon_sym_u8_SQUOTE] = ACTIONS(3243), - [anon_sym_SQUOTE] = ACTIONS(3243), - [anon_sym_L_DQUOTE] = ACTIONS(3243), - [anon_sym_u_DQUOTE] = ACTIONS(3243), - [anon_sym_U_DQUOTE] = ACTIONS(3243), - [anon_sym_u8_DQUOTE] = ACTIONS(3243), - [anon_sym_DQUOTE] = ACTIONS(3243), - [sym_true] = ACTIONS(3241), - [sym_false] = ACTIONS(3241), - [anon_sym_NULL] = ACTIONS(3241), - [anon_sym_nullptr] = ACTIONS(3241), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3241), - [anon_sym_decltype] = ACTIONS(3241), - [anon_sym_virtual] = ACTIONS(3241), - [anon_sym_alignas] = ACTIONS(3241), - [anon_sym_explicit] = ACTIONS(3241), - [anon_sym_typename] = ACTIONS(3241), - [anon_sym_template] = ACTIONS(3241), - [anon_sym_operator] = ACTIONS(3241), - [anon_sym_try] = ACTIONS(3241), - [anon_sym_delete] = ACTIONS(3241), - [anon_sym_throw] = ACTIONS(3241), - [anon_sym_namespace] = ACTIONS(3241), - [anon_sym_using] = ACTIONS(3241), - [anon_sym_static_assert] = ACTIONS(3241), - [anon_sym_concept] = ACTIONS(3241), - [anon_sym_co_return] = ACTIONS(3241), - [anon_sym_co_yield] = ACTIONS(3241), - [anon_sym_R_DQUOTE] = ACTIONS(3243), - [anon_sym_LR_DQUOTE] = ACTIONS(3243), - [anon_sym_uR_DQUOTE] = ACTIONS(3243), - [anon_sym_UR_DQUOTE] = ACTIONS(3243), - [anon_sym_u8R_DQUOTE] = ACTIONS(3243), - [anon_sym_co_await] = ACTIONS(3241), - [anon_sym_new] = ACTIONS(3241), - [anon_sym_requires] = ACTIONS(3241), - [sym_this] = ACTIONS(3241), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3243), - [sym_semgrep_named_ellipsis] = ACTIONS(3243), + [627] = { + [ts_builtin_sym_end] = ACTIONS(3109), + [sym_identifier] = ACTIONS(3107), + [aux_sym_preproc_include_token1] = ACTIONS(3107), + [aux_sym_preproc_def_token1] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3109), + [aux_sym_preproc_if_token1] = ACTIONS(3107), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3107), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3107), + [sym_preproc_directive] = ACTIONS(3107), + [anon_sym_LPAREN2] = ACTIONS(3109), + [anon_sym_BANG] = ACTIONS(3109), + [anon_sym_TILDE] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_AMP] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym___extension__] = ACTIONS(3107), + [anon_sym_typedef] = ACTIONS(3107), + [anon_sym_extern] = ACTIONS(3107), + [anon_sym___attribute__] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(3109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3109), + [anon_sym___declspec] = ACTIONS(3107), + [anon_sym___based] = ACTIONS(3107), + [anon_sym___cdecl] = ACTIONS(3107), + [anon_sym___clrcall] = ACTIONS(3107), + [anon_sym___stdcall] = ACTIONS(3107), + [anon_sym___fastcall] = ACTIONS(3107), + [anon_sym___thiscall] = ACTIONS(3107), + [anon_sym___vectorcall] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(3109), + [anon_sym_signed] = ACTIONS(3107), + [anon_sym_unsigned] = ACTIONS(3107), + [anon_sym_long] = ACTIONS(3107), + [anon_sym_short] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3107), + [anon_sym_static] = ACTIONS(3107), + [anon_sym_register] = ACTIONS(3107), + [anon_sym_inline] = ACTIONS(3107), + [anon_sym___inline] = ACTIONS(3107), + [anon_sym___inline__] = ACTIONS(3107), + [anon_sym___forceinline] = ACTIONS(3107), + [anon_sym_thread_local] = ACTIONS(3107), + [anon_sym___thread] = ACTIONS(3107), + [anon_sym_const] = ACTIONS(3107), + [anon_sym_constexpr] = ACTIONS(3107), + [anon_sym_volatile] = ACTIONS(3107), + [anon_sym_restrict] = ACTIONS(3107), + [anon_sym___restrict__] = ACTIONS(3107), + [anon_sym__Atomic] = ACTIONS(3107), + [anon_sym__Noreturn] = ACTIONS(3107), + [anon_sym_noreturn] = ACTIONS(3107), + [anon_sym_mutable] = ACTIONS(3107), + [anon_sym_constinit] = ACTIONS(3107), + [anon_sym_consteval] = ACTIONS(3107), + [sym_primitive_type] = ACTIONS(3107), + [anon_sym_enum] = ACTIONS(3107), + [anon_sym_class] = ACTIONS(3107), + [anon_sym_struct] = ACTIONS(3107), + [anon_sym_union] = ACTIONS(3107), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_else] = 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___try] = ACTIONS(3107), + [anon_sym___leave] = ACTIONS(3107), + [anon_sym_not] = ACTIONS(3107), + [anon_sym_compl] = ACTIONS(3107), + [anon_sym_DASH_DASH] = ACTIONS(3109), + [anon_sym_PLUS_PLUS] = ACTIONS(3109), + [anon_sym_sizeof] = ACTIONS(3107), + [anon_sym___alignof__] = ACTIONS(3107), + [anon_sym___alignof] = ACTIONS(3107), + [anon_sym__alignof] = ACTIONS(3107), + [anon_sym_alignof] = ACTIONS(3107), + [anon_sym__Alignof] = ACTIONS(3107), + [anon_sym_offsetof] = ACTIONS(3107), + [anon_sym__Generic] = ACTIONS(3107), + [anon_sym_asm] = ACTIONS(3107), + [anon_sym___asm__] = ACTIONS(3107), + [sym_number_literal] = ACTIONS(3109), + [anon_sym_L_SQUOTE] = ACTIONS(3109), + [anon_sym_u_SQUOTE] = ACTIONS(3109), + [anon_sym_U_SQUOTE] = ACTIONS(3109), + [anon_sym_u8_SQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3109), + [anon_sym_L_DQUOTE] = ACTIONS(3109), + [anon_sym_u_DQUOTE] = ACTIONS(3109), + [anon_sym_U_DQUOTE] = ACTIONS(3109), + [anon_sym_u8_DQUOTE] = ACTIONS(3109), + [anon_sym_DQUOTE] = ACTIONS(3109), + [sym_true] = ACTIONS(3107), + [sym_false] = ACTIONS(3107), + [anon_sym_NULL] = ACTIONS(3107), + [anon_sym_nullptr] = ACTIONS(3107), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3107), + [anon_sym_decltype] = ACTIONS(3107), + [anon_sym_virtual] = ACTIONS(3107), + [anon_sym_alignas] = ACTIONS(3107), + [anon_sym_explicit] = ACTIONS(3107), + [anon_sym_typename] = ACTIONS(3107), + [anon_sym_template] = ACTIONS(3107), + [anon_sym_operator] = ACTIONS(3107), + [anon_sym_try] = ACTIONS(3107), + [anon_sym_delete] = ACTIONS(3107), + [anon_sym_throw] = ACTIONS(3107), + [anon_sym_namespace] = ACTIONS(3107), + [anon_sym_using] = ACTIONS(3107), + [anon_sym_static_assert] = ACTIONS(3107), + [anon_sym_concept] = ACTIONS(3107), + [anon_sym_co_return] = ACTIONS(3107), + [anon_sym_co_yield] = ACTIONS(3107), + [anon_sym_R_DQUOTE] = ACTIONS(3109), + [anon_sym_LR_DQUOTE] = ACTIONS(3109), + [anon_sym_uR_DQUOTE] = ACTIONS(3109), + [anon_sym_UR_DQUOTE] = ACTIONS(3109), + [anon_sym_u8R_DQUOTE] = ACTIONS(3109), + [anon_sym_co_await] = ACTIONS(3107), + [anon_sym_new] = ACTIONS(3107), + [anon_sym_requires] = ACTIONS(3107), + [sym_this] = ACTIONS(3107), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3109), + [sym_semgrep_named_ellipsis] = ACTIONS(3109), }, - [596] = { - [sym_identifier] = ACTIONS(3109), - [aux_sym_preproc_include_token1] = ACTIONS(3109), - [aux_sym_preproc_def_token1] = ACTIONS(3109), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3111), - [aux_sym_preproc_if_token1] = ACTIONS(3109), - [aux_sym_preproc_if_token2] = ACTIONS(3109), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3109), - [sym_preproc_directive] = ACTIONS(3109), - [anon_sym_LPAREN2] = ACTIONS(3111), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_TILDE] = ACTIONS(3111), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_AMP_AMP] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym___extension__] = ACTIONS(3109), - [anon_sym_typedef] = ACTIONS(3109), - [anon_sym_extern] = ACTIONS(3109), - [anon_sym___attribute__] = ACTIONS(3109), - [anon_sym_COLON_COLON] = ACTIONS(3111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3111), - [anon_sym___declspec] = ACTIONS(3109), - [anon_sym___based] = ACTIONS(3109), - [anon_sym___cdecl] = ACTIONS(3109), - [anon_sym___clrcall] = ACTIONS(3109), - [anon_sym___stdcall] = ACTIONS(3109), - [anon_sym___fastcall] = ACTIONS(3109), - [anon_sym___thiscall] = ACTIONS(3109), - [anon_sym___vectorcall] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3111), - [anon_sym_signed] = ACTIONS(3109), - [anon_sym_unsigned] = ACTIONS(3109), - [anon_sym_long] = ACTIONS(3109), - [anon_sym_short] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3109), - [anon_sym_static] = ACTIONS(3109), - [anon_sym_register] = ACTIONS(3109), - [anon_sym_inline] = ACTIONS(3109), - [anon_sym___inline] = ACTIONS(3109), - [anon_sym___inline__] = ACTIONS(3109), - [anon_sym___forceinline] = ACTIONS(3109), - [anon_sym_thread_local] = ACTIONS(3109), - [anon_sym___thread] = ACTIONS(3109), - [anon_sym_const] = ACTIONS(3109), - [anon_sym_constexpr] = ACTIONS(3109), - [anon_sym_volatile] = ACTIONS(3109), - [anon_sym_restrict] = ACTIONS(3109), - [anon_sym___restrict__] = ACTIONS(3109), - [anon_sym__Atomic] = ACTIONS(3109), - [anon_sym__Noreturn] = ACTIONS(3109), - [anon_sym_noreturn] = ACTIONS(3109), - [anon_sym_mutable] = ACTIONS(3109), - [anon_sym_constinit] = ACTIONS(3109), - [anon_sym_consteval] = ACTIONS(3109), - [sym_primitive_type] = ACTIONS(3109), - [anon_sym_enum] = ACTIONS(3109), - [anon_sym_class] = ACTIONS(3109), - [anon_sym_struct] = ACTIONS(3109), - [anon_sym_union] = ACTIONS(3109), - [anon_sym_if] = ACTIONS(3109), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_switch] = ACTIONS(3109), - [anon_sym_case] = ACTIONS(3109), - [anon_sym_default] = ACTIONS(3109), - [anon_sym_while] = ACTIONS(3109), - [anon_sym_do] = ACTIONS(3109), - [anon_sym_for] = ACTIONS(3109), - [anon_sym_return] = ACTIONS(3109), - [anon_sym_break] = ACTIONS(3109), - [anon_sym_continue] = ACTIONS(3109), - [anon_sym_goto] = ACTIONS(3109), - [anon_sym___try] = ACTIONS(3109), - [anon_sym___leave] = ACTIONS(3109), - [anon_sym_not] = ACTIONS(3109), - [anon_sym_compl] = ACTIONS(3109), - [anon_sym_DASH_DASH] = ACTIONS(3111), - [anon_sym_PLUS_PLUS] = ACTIONS(3111), - [anon_sym_sizeof] = ACTIONS(3109), - [anon_sym___alignof__] = ACTIONS(3109), - [anon_sym___alignof] = ACTIONS(3109), - [anon_sym__alignof] = ACTIONS(3109), - [anon_sym_alignof] = ACTIONS(3109), - [anon_sym__Alignof] = ACTIONS(3109), - [anon_sym_offsetof] = ACTIONS(3109), - [anon_sym__Generic] = ACTIONS(3109), - [anon_sym_asm] = ACTIONS(3109), - [anon_sym___asm__] = ACTIONS(3109), - [sym_number_literal] = ACTIONS(3111), - [anon_sym_L_SQUOTE] = ACTIONS(3111), - [anon_sym_u_SQUOTE] = ACTIONS(3111), - [anon_sym_U_SQUOTE] = ACTIONS(3111), - [anon_sym_u8_SQUOTE] = ACTIONS(3111), - [anon_sym_SQUOTE] = ACTIONS(3111), - [anon_sym_L_DQUOTE] = ACTIONS(3111), - [anon_sym_u_DQUOTE] = ACTIONS(3111), - [anon_sym_U_DQUOTE] = ACTIONS(3111), - [anon_sym_u8_DQUOTE] = ACTIONS(3111), - [anon_sym_DQUOTE] = ACTIONS(3111), - [sym_true] = ACTIONS(3109), - [sym_false] = ACTIONS(3109), - [anon_sym_NULL] = ACTIONS(3109), - [anon_sym_nullptr] = ACTIONS(3109), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3109), - [anon_sym_decltype] = ACTIONS(3109), - [anon_sym_virtual] = ACTIONS(3109), - [anon_sym_alignas] = ACTIONS(3109), - [anon_sym_explicit] = ACTIONS(3109), - [anon_sym_typename] = ACTIONS(3109), - [anon_sym_template] = ACTIONS(3109), - [anon_sym_operator] = ACTIONS(3109), - [anon_sym_try] = ACTIONS(3109), - [anon_sym_delete] = ACTIONS(3109), - [anon_sym_throw] = ACTIONS(3109), - [anon_sym_namespace] = ACTIONS(3109), - [anon_sym_using] = ACTIONS(3109), - [anon_sym_static_assert] = ACTIONS(3109), - [anon_sym_concept] = ACTIONS(3109), - [anon_sym_co_return] = ACTIONS(3109), - [anon_sym_co_yield] = ACTIONS(3109), - [anon_sym_R_DQUOTE] = ACTIONS(3111), - [anon_sym_LR_DQUOTE] = ACTIONS(3111), - [anon_sym_uR_DQUOTE] = ACTIONS(3111), - [anon_sym_UR_DQUOTE] = ACTIONS(3111), - [anon_sym_u8R_DQUOTE] = ACTIONS(3111), - [anon_sym_co_await] = ACTIONS(3109), - [anon_sym_new] = ACTIONS(3109), - [anon_sym_requires] = ACTIONS(3109), - [sym_this] = ACTIONS(3109), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3111), - [sym_semgrep_named_ellipsis] = ACTIONS(3111), + [628] = { + [ts_builtin_sym_end] = ACTIONS(3113), + [sym_identifier] = ACTIONS(3111), + [aux_sym_preproc_include_token1] = ACTIONS(3111), + [aux_sym_preproc_def_token1] = ACTIONS(3111), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3113), + [aux_sym_preproc_if_token1] = ACTIONS(3111), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3111), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3111), + [sym_preproc_directive] = ACTIONS(3111), + [anon_sym_LPAREN2] = ACTIONS(3113), + [anon_sym_BANG] = ACTIONS(3113), + [anon_sym_TILDE] = ACTIONS(3113), + [anon_sym_DASH] = ACTIONS(3111), + [anon_sym_PLUS] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_AMP_AMP] = ACTIONS(3113), + [anon_sym_AMP] = ACTIONS(3111), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym___extension__] = ACTIONS(3111), + [anon_sym_typedef] = ACTIONS(3111), + [anon_sym_extern] = ACTIONS(3111), + [anon_sym___attribute__] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(3113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3113), + [anon_sym___declspec] = ACTIONS(3111), + [anon_sym___based] = ACTIONS(3111), + [anon_sym___cdecl] = ACTIONS(3111), + [anon_sym___clrcall] = ACTIONS(3111), + [anon_sym___stdcall] = ACTIONS(3111), + [anon_sym___fastcall] = ACTIONS(3111), + [anon_sym___thiscall] = ACTIONS(3111), + [anon_sym___vectorcall] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_signed] = ACTIONS(3111), + [anon_sym_unsigned] = ACTIONS(3111), + [anon_sym_long] = ACTIONS(3111), + [anon_sym_short] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3111), + [anon_sym_static] = ACTIONS(3111), + [anon_sym_register] = ACTIONS(3111), + [anon_sym_inline] = ACTIONS(3111), + [anon_sym___inline] = ACTIONS(3111), + [anon_sym___inline__] = ACTIONS(3111), + [anon_sym___forceinline] = ACTIONS(3111), + [anon_sym_thread_local] = ACTIONS(3111), + [anon_sym___thread] = ACTIONS(3111), + [anon_sym_const] = ACTIONS(3111), + [anon_sym_constexpr] = ACTIONS(3111), + [anon_sym_volatile] = ACTIONS(3111), + [anon_sym_restrict] = ACTIONS(3111), + [anon_sym___restrict__] = ACTIONS(3111), + [anon_sym__Atomic] = ACTIONS(3111), + [anon_sym__Noreturn] = ACTIONS(3111), + [anon_sym_noreturn] = ACTIONS(3111), + [anon_sym_mutable] = ACTIONS(3111), + [anon_sym_constinit] = ACTIONS(3111), + [anon_sym_consteval] = ACTIONS(3111), + [sym_primitive_type] = ACTIONS(3111), + [anon_sym_enum] = ACTIONS(3111), + [anon_sym_class] = ACTIONS(3111), + [anon_sym_struct] = ACTIONS(3111), + [anon_sym_union] = ACTIONS(3111), + [anon_sym_if] = ACTIONS(3111), + [anon_sym_else] = ACTIONS(3111), + [anon_sym_switch] = ACTIONS(3111), + [anon_sym_case] = ACTIONS(3111), + [anon_sym_default] = ACTIONS(3111), + [anon_sym_while] = ACTIONS(3111), + [anon_sym_do] = ACTIONS(3111), + [anon_sym_for] = ACTIONS(3111), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_break] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(3111), + [anon_sym_goto] = ACTIONS(3111), + [anon_sym___try] = ACTIONS(3111), + [anon_sym___leave] = ACTIONS(3111), + [anon_sym_not] = ACTIONS(3111), + [anon_sym_compl] = ACTIONS(3111), + [anon_sym_DASH_DASH] = ACTIONS(3113), + [anon_sym_PLUS_PLUS] = ACTIONS(3113), + [anon_sym_sizeof] = ACTIONS(3111), + [anon_sym___alignof__] = ACTIONS(3111), + [anon_sym___alignof] = ACTIONS(3111), + [anon_sym__alignof] = ACTIONS(3111), + [anon_sym_alignof] = ACTIONS(3111), + [anon_sym__Alignof] = ACTIONS(3111), + [anon_sym_offsetof] = ACTIONS(3111), + [anon_sym__Generic] = ACTIONS(3111), + [anon_sym_asm] = ACTIONS(3111), + [anon_sym___asm__] = ACTIONS(3111), + [sym_number_literal] = ACTIONS(3113), + [anon_sym_L_SQUOTE] = ACTIONS(3113), + [anon_sym_u_SQUOTE] = ACTIONS(3113), + [anon_sym_U_SQUOTE] = ACTIONS(3113), + [anon_sym_u8_SQUOTE] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3113), + [anon_sym_L_DQUOTE] = ACTIONS(3113), + [anon_sym_u_DQUOTE] = ACTIONS(3113), + [anon_sym_U_DQUOTE] = ACTIONS(3113), + [anon_sym_u8_DQUOTE] = ACTIONS(3113), + [anon_sym_DQUOTE] = ACTIONS(3113), + [sym_true] = ACTIONS(3111), + [sym_false] = ACTIONS(3111), + [anon_sym_NULL] = ACTIONS(3111), + [anon_sym_nullptr] = ACTIONS(3111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3111), + [anon_sym_decltype] = ACTIONS(3111), + [anon_sym_virtual] = ACTIONS(3111), + [anon_sym_alignas] = ACTIONS(3111), + [anon_sym_explicit] = ACTIONS(3111), + [anon_sym_typename] = ACTIONS(3111), + [anon_sym_template] = ACTIONS(3111), + [anon_sym_operator] = ACTIONS(3111), + [anon_sym_try] = ACTIONS(3111), + [anon_sym_delete] = ACTIONS(3111), + [anon_sym_throw] = ACTIONS(3111), + [anon_sym_namespace] = ACTIONS(3111), + [anon_sym_using] = ACTIONS(3111), + [anon_sym_static_assert] = ACTIONS(3111), + [anon_sym_concept] = ACTIONS(3111), + [anon_sym_co_return] = ACTIONS(3111), + [anon_sym_co_yield] = ACTIONS(3111), + [anon_sym_R_DQUOTE] = ACTIONS(3113), + [anon_sym_LR_DQUOTE] = ACTIONS(3113), + [anon_sym_uR_DQUOTE] = ACTIONS(3113), + [anon_sym_UR_DQUOTE] = ACTIONS(3113), + [anon_sym_u8R_DQUOTE] = ACTIONS(3113), + [anon_sym_co_await] = ACTIONS(3111), + [anon_sym_new] = ACTIONS(3111), + [anon_sym_requires] = ACTIONS(3111), + [sym_this] = ACTIONS(3111), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3113), + [sym_semgrep_named_ellipsis] = ACTIONS(3113), }, - [597] = { - [sym_identifier] = ACTIONS(3121), - [aux_sym_preproc_include_token1] = ACTIONS(3121), - [aux_sym_preproc_def_token1] = ACTIONS(3121), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3123), - [aux_sym_preproc_if_token1] = ACTIONS(3121), - [aux_sym_preproc_if_token2] = ACTIONS(3121), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3121), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3121), - [sym_preproc_directive] = ACTIONS(3121), - [anon_sym_LPAREN2] = ACTIONS(3123), - [anon_sym_BANG] = ACTIONS(3123), - [anon_sym_TILDE] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3121), - [anon_sym_PLUS] = ACTIONS(3121), - [anon_sym_STAR] = ACTIONS(3123), - [anon_sym_AMP_AMP] = ACTIONS(3123), - [anon_sym_AMP] = ACTIONS(3121), - [anon_sym_SEMI] = ACTIONS(3123), - [anon_sym___extension__] = ACTIONS(3121), - [anon_sym_typedef] = ACTIONS(3121), - [anon_sym_extern] = ACTIONS(3121), - [anon_sym___attribute__] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(3123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3123), - [anon_sym___declspec] = ACTIONS(3121), - [anon_sym___based] = ACTIONS(3121), - [anon_sym___cdecl] = ACTIONS(3121), - [anon_sym___clrcall] = ACTIONS(3121), - [anon_sym___stdcall] = ACTIONS(3121), - [anon_sym___fastcall] = ACTIONS(3121), - [anon_sym___thiscall] = ACTIONS(3121), - [anon_sym___vectorcall] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(3123), - [anon_sym_signed] = ACTIONS(3121), - [anon_sym_unsigned] = ACTIONS(3121), - [anon_sym_long] = ACTIONS(3121), - [anon_sym_short] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3121), - [anon_sym_static] = ACTIONS(3121), - [anon_sym_register] = ACTIONS(3121), - [anon_sym_inline] = ACTIONS(3121), - [anon_sym___inline] = ACTIONS(3121), - [anon_sym___inline__] = ACTIONS(3121), - [anon_sym___forceinline] = ACTIONS(3121), - [anon_sym_thread_local] = ACTIONS(3121), - [anon_sym___thread] = ACTIONS(3121), - [anon_sym_const] = ACTIONS(3121), - [anon_sym_constexpr] = ACTIONS(3121), - [anon_sym_volatile] = ACTIONS(3121), - [anon_sym_restrict] = ACTIONS(3121), - [anon_sym___restrict__] = ACTIONS(3121), - [anon_sym__Atomic] = ACTIONS(3121), - [anon_sym__Noreturn] = ACTIONS(3121), - [anon_sym_noreturn] = ACTIONS(3121), - [anon_sym_mutable] = ACTIONS(3121), - [anon_sym_constinit] = ACTIONS(3121), - [anon_sym_consteval] = ACTIONS(3121), - [sym_primitive_type] = ACTIONS(3121), - [anon_sym_enum] = ACTIONS(3121), - [anon_sym_class] = ACTIONS(3121), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_if] = ACTIONS(3121), - [anon_sym_else] = ACTIONS(3121), - [anon_sym_switch] = ACTIONS(3121), - [anon_sym_case] = ACTIONS(3121), - [anon_sym_default] = ACTIONS(3121), - [anon_sym_while] = ACTIONS(3121), - [anon_sym_do] = ACTIONS(3121), - [anon_sym_for] = ACTIONS(3121), - [anon_sym_return] = ACTIONS(3121), - [anon_sym_break] = ACTIONS(3121), - [anon_sym_continue] = ACTIONS(3121), - [anon_sym_goto] = ACTIONS(3121), - [anon_sym___try] = ACTIONS(3121), - [anon_sym___leave] = ACTIONS(3121), - [anon_sym_not] = ACTIONS(3121), - [anon_sym_compl] = ACTIONS(3121), - [anon_sym_DASH_DASH] = ACTIONS(3123), - [anon_sym_PLUS_PLUS] = ACTIONS(3123), - [anon_sym_sizeof] = ACTIONS(3121), - [anon_sym___alignof__] = ACTIONS(3121), - [anon_sym___alignof] = ACTIONS(3121), - [anon_sym__alignof] = ACTIONS(3121), - [anon_sym_alignof] = ACTIONS(3121), - [anon_sym__Alignof] = ACTIONS(3121), - [anon_sym_offsetof] = ACTIONS(3121), - [anon_sym__Generic] = ACTIONS(3121), - [anon_sym_asm] = ACTIONS(3121), - [anon_sym___asm__] = ACTIONS(3121), - [sym_number_literal] = ACTIONS(3123), - [anon_sym_L_SQUOTE] = ACTIONS(3123), - [anon_sym_u_SQUOTE] = ACTIONS(3123), - [anon_sym_U_SQUOTE] = ACTIONS(3123), - [anon_sym_u8_SQUOTE] = ACTIONS(3123), - [anon_sym_SQUOTE] = ACTIONS(3123), - [anon_sym_L_DQUOTE] = ACTIONS(3123), - [anon_sym_u_DQUOTE] = ACTIONS(3123), - [anon_sym_U_DQUOTE] = ACTIONS(3123), - [anon_sym_u8_DQUOTE] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3123), - [sym_true] = ACTIONS(3121), - [sym_false] = ACTIONS(3121), - [anon_sym_NULL] = ACTIONS(3121), - [anon_sym_nullptr] = ACTIONS(3121), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3121), - [anon_sym_decltype] = ACTIONS(3121), - [anon_sym_virtual] = ACTIONS(3121), - [anon_sym_alignas] = ACTIONS(3121), - [anon_sym_explicit] = ACTIONS(3121), - [anon_sym_typename] = ACTIONS(3121), - [anon_sym_template] = ACTIONS(3121), - [anon_sym_operator] = ACTIONS(3121), - [anon_sym_try] = ACTIONS(3121), - [anon_sym_delete] = ACTIONS(3121), - [anon_sym_throw] = ACTIONS(3121), - [anon_sym_namespace] = ACTIONS(3121), - [anon_sym_using] = ACTIONS(3121), - [anon_sym_static_assert] = ACTIONS(3121), - [anon_sym_concept] = ACTIONS(3121), - [anon_sym_co_return] = ACTIONS(3121), - [anon_sym_co_yield] = ACTIONS(3121), - [anon_sym_R_DQUOTE] = ACTIONS(3123), - [anon_sym_LR_DQUOTE] = ACTIONS(3123), - [anon_sym_uR_DQUOTE] = ACTIONS(3123), - [anon_sym_UR_DQUOTE] = ACTIONS(3123), - [anon_sym_u8R_DQUOTE] = ACTIONS(3123), - [anon_sym_co_await] = ACTIONS(3121), - [anon_sym_new] = ACTIONS(3121), - [anon_sym_requires] = ACTIONS(3121), - [sym_this] = ACTIONS(3121), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3123), - [sym_semgrep_named_ellipsis] = ACTIONS(3123), + [629] = { + [ts_builtin_sym_end] = ACTIONS(3221), + [sym_identifier] = ACTIONS(3219), + [aux_sym_preproc_include_token1] = ACTIONS(3219), + [aux_sym_preproc_def_token1] = ACTIONS(3219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3221), + [aux_sym_preproc_if_token1] = ACTIONS(3219), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3219), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3219), + [sym_preproc_directive] = ACTIONS(3219), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_BANG] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_STAR] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_AMP] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3221), + [anon_sym___extension__] = ACTIONS(3219), + [anon_sym_typedef] = ACTIONS(3219), + [anon_sym_extern] = ACTIONS(3219), + [anon_sym___attribute__] = ACTIONS(3219), + [anon_sym_COLON_COLON] = ACTIONS(3221), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3221), + [anon_sym___declspec] = ACTIONS(3219), + [anon_sym___based] = ACTIONS(3219), + [anon_sym___cdecl] = ACTIONS(3219), + [anon_sym___clrcall] = ACTIONS(3219), + [anon_sym___stdcall] = ACTIONS(3219), + [anon_sym___fastcall] = ACTIONS(3219), + [anon_sym___thiscall] = ACTIONS(3219), + [anon_sym___vectorcall] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_signed] = ACTIONS(3219), + [anon_sym_unsigned] = ACTIONS(3219), + [anon_sym_long] = ACTIONS(3219), + [anon_sym_short] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_register] = ACTIONS(3219), + [anon_sym_inline] = ACTIONS(3219), + [anon_sym___inline] = ACTIONS(3219), + [anon_sym___inline__] = ACTIONS(3219), + [anon_sym___forceinline] = ACTIONS(3219), + [anon_sym_thread_local] = ACTIONS(3219), + [anon_sym___thread] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_constexpr] = ACTIONS(3219), + [anon_sym_volatile] = ACTIONS(3219), + [anon_sym_restrict] = ACTIONS(3219), + [anon_sym___restrict__] = ACTIONS(3219), + [anon_sym__Atomic] = ACTIONS(3219), + [anon_sym__Noreturn] = ACTIONS(3219), + [anon_sym_noreturn] = ACTIONS(3219), + [anon_sym_mutable] = ACTIONS(3219), + [anon_sym_constinit] = ACTIONS(3219), + [anon_sym_consteval] = ACTIONS(3219), + [sym_primitive_type] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_struct] = ACTIONS(3219), + [anon_sym_union] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_else] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_case] = ACTIONS(3219), + [anon_sym_default] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_goto] = ACTIONS(3219), + [anon_sym___try] = ACTIONS(3219), + [anon_sym___leave] = ACTIONS(3219), + [anon_sym_not] = ACTIONS(3219), + [anon_sym_compl] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_sizeof] = ACTIONS(3219), + [anon_sym___alignof__] = ACTIONS(3219), + [anon_sym___alignof] = ACTIONS(3219), + [anon_sym__alignof] = ACTIONS(3219), + [anon_sym_alignof] = ACTIONS(3219), + [anon_sym__Alignof] = ACTIONS(3219), + [anon_sym_offsetof] = ACTIONS(3219), + [anon_sym__Generic] = ACTIONS(3219), + [anon_sym_asm] = ACTIONS(3219), + [anon_sym___asm__] = ACTIONS(3219), + [sym_number_literal] = ACTIONS(3221), + [anon_sym_L_SQUOTE] = ACTIONS(3221), + [anon_sym_u_SQUOTE] = ACTIONS(3221), + [anon_sym_U_SQUOTE] = ACTIONS(3221), + [anon_sym_u8_SQUOTE] = ACTIONS(3221), + [anon_sym_SQUOTE] = ACTIONS(3221), + [anon_sym_L_DQUOTE] = ACTIONS(3221), + [anon_sym_u_DQUOTE] = ACTIONS(3221), + [anon_sym_U_DQUOTE] = ACTIONS(3221), + [anon_sym_u8_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [anon_sym_NULL] = ACTIONS(3219), + [anon_sym_nullptr] = ACTIONS(3219), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3219), + [anon_sym_decltype] = ACTIONS(3219), + [anon_sym_virtual] = ACTIONS(3219), + [anon_sym_alignas] = ACTIONS(3219), + [anon_sym_explicit] = ACTIONS(3219), + [anon_sym_typename] = ACTIONS(3219), + [anon_sym_template] = ACTIONS(3219), + [anon_sym_operator] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_delete] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_namespace] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_static_assert] = ACTIONS(3219), + [anon_sym_concept] = ACTIONS(3219), + [anon_sym_co_return] = ACTIONS(3219), + [anon_sym_co_yield] = ACTIONS(3219), + [anon_sym_R_DQUOTE] = ACTIONS(3221), + [anon_sym_LR_DQUOTE] = ACTIONS(3221), + [anon_sym_uR_DQUOTE] = ACTIONS(3221), + [anon_sym_UR_DQUOTE] = ACTIONS(3221), + [anon_sym_u8R_DQUOTE] = ACTIONS(3221), + [anon_sym_co_await] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_requires] = ACTIONS(3219), + [sym_this] = ACTIONS(3219), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3221), + [sym_semgrep_named_ellipsis] = ACTIONS(3221), }, - [598] = { - [sym_identifier] = ACTIONS(3159), + [630] = { + [sym_identifier] = ACTIONS(3147), + [aux_sym_preproc_include_token1] = ACTIONS(3147), + [aux_sym_preproc_def_token1] = ACTIONS(3147), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3149), + [aux_sym_preproc_if_token1] = ACTIONS(3147), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3147), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3147), + [sym_preproc_directive] = ACTIONS(3147), + [anon_sym_LPAREN2] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_TILDE] = ACTIONS(3149), + [anon_sym_DASH] = ACTIONS(3147), + [anon_sym_PLUS] = ACTIONS(3147), + [anon_sym_STAR] = ACTIONS(3149), + [anon_sym_AMP_AMP] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3147), + [anon_sym_SEMI] = ACTIONS(3149), + [anon_sym___extension__] = ACTIONS(3147), + [anon_sym_typedef] = ACTIONS(3147), + [anon_sym_extern] = ACTIONS(3147), + [anon_sym___attribute__] = ACTIONS(3147), + [anon_sym_COLON_COLON] = ACTIONS(3149), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3149), + [anon_sym___declspec] = ACTIONS(3147), + [anon_sym___based] = ACTIONS(3147), + [anon_sym___cdecl] = ACTIONS(3147), + [anon_sym___clrcall] = ACTIONS(3147), + [anon_sym___stdcall] = ACTIONS(3147), + [anon_sym___fastcall] = ACTIONS(3147), + [anon_sym___thiscall] = ACTIONS(3147), + [anon_sym___vectorcall] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_RBRACE] = ACTIONS(3149), + [anon_sym_signed] = ACTIONS(3147), + [anon_sym_unsigned] = ACTIONS(3147), + [anon_sym_long] = ACTIONS(3147), + [anon_sym_short] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_static] = ACTIONS(3147), + [anon_sym_register] = ACTIONS(3147), + [anon_sym_inline] = ACTIONS(3147), + [anon_sym___inline] = ACTIONS(3147), + [anon_sym___inline__] = ACTIONS(3147), + [anon_sym___forceinline] = ACTIONS(3147), + [anon_sym_thread_local] = ACTIONS(3147), + [anon_sym___thread] = ACTIONS(3147), + [anon_sym_const] = ACTIONS(3147), + [anon_sym_constexpr] = ACTIONS(3147), + [anon_sym_volatile] = ACTIONS(3147), + [anon_sym_restrict] = ACTIONS(3147), + [anon_sym___restrict__] = ACTIONS(3147), + [anon_sym__Atomic] = ACTIONS(3147), + [anon_sym__Noreturn] = ACTIONS(3147), + [anon_sym_noreturn] = ACTIONS(3147), + [anon_sym_mutable] = ACTIONS(3147), + [anon_sym_constinit] = ACTIONS(3147), + [anon_sym_consteval] = ACTIONS(3147), + [sym_primitive_type] = ACTIONS(3147), + [anon_sym_enum] = ACTIONS(3147), + [anon_sym_class] = ACTIONS(3147), + [anon_sym_struct] = ACTIONS(3147), + [anon_sym_union] = ACTIONS(3147), + [anon_sym_if] = ACTIONS(3147), + [anon_sym_else] = ACTIONS(3147), + [anon_sym_switch] = ACTIONS(3147), + [anon_sym_case] = ACTIONS(3147), + [anon_sym_default] = ACTIONS(3147), + [anon_sym_while] = ACTIONS(3147), + [anon_sym_do] = ACTIONS(3147), + [anon_sym_for] = ACTIONS(3147), + [anon_sym_return] = ACTIONS(3147), + [anon_sym_break] = ACTIONS(3147), + [anon_sym_continue] = ACTIONS(3147), + [anon_sym_goto] = ACTIONS(3147), + [anon_sym___try] = ACTIONS(3147), + [anon_sym___leave] = ACTIONS(3147), + [anon_sym_not] = ACTIONS(3147), + [anon_sym_compl] = ACTIONS(3147), + [anon_sym_DASH_DASH] = ACTIONS(3149), + [anon_sym_PLUS_PLUS] = ACTIONS(3149), + [anon_sym_sizeof] = ACTIONS(3147), + [anon_sym___alignof__] = ACTIONS(3147), + [anon_sym___alignof] = ACTIONS(3147), + [anon_sym__alignof] = ACTIONS(3147), + [anon_sym_alignof] = ACTIONS(3147), + [anon_sym__Alignof] = ACTIONS(3147), + [anon_sym_offsetof] = ACTIONS(3147), + [anon_sym__Generic] = ACTIONS(3147), + [anon_sym_asm] = ACTIONS(3147), + [anon_sym___asm__] = ACTIONS(3147), + [sym_number_literal] = ACTIONS(3149), + [anon_sym_L_SQUOTE] = ACTIONS(3149), + [anon_sym_u_SQUOTE] = ACTIONS(3149), + [anon_sym_U_SQUOTE] = ACTIONS(3149), + [anon_sym_u8_SQUOTE] = ACTIONS(3149), + [anon_sym_SQUOTE] = ACTIONS(3149), + [anon_sym_L_DQUOTE] = ACTIONS(3149), + [anon_sym_u_DQUOTE] = ACTIONS(3149), + [anon_sym_U_DQUOTE] = ACTIONS(3149), + [anon_sym_u8_DQUOTE] = ACTIONS(3149), + [anon_sym_DQUOTE] = ACTIONS(3149), + [sym_true] = ACTIONS(3147), + [sym_false] = ACTIONS(3147), + [anon_sym_NULL] = ACTIONS(3147), + [anon_sym_nullptr] = ACTIONS(3147), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3147), + [anon_sym_decltype] = ACTIONS(3147), + [anon_sym_virtual] = ACTIONS(3147), + [anon_sym_alignas] = ACTIONS(3147), + [anon_sym_explicit] = ACTIONS(3147), + [anon_sym_typename] = ACTIONS(3147), + [anon_sym_template] = ACTIONS(3147), + [anon_sym_operator] = ACTIONS(3147), + [anon_sym_try] = ACTIONS(3147), + [anon_sym_delete] = ACTIONS(3147), + [anon_sym_throw] = ACTIONS(3147), + [anon_sym_namespace] = ACTIONS(3147), + [anon_sym_using] = ACTIONS(3147), + [anon_sym_static_assert] = ACTIONS(3147), + [anon_sym_concept] = ACTIONS(3147), + [anon_sym_co_return] = ACTIONS(3147), + [anon_sym_co_yield] = ACTIONS(3147), + [anon_sym_R_DQUOTE] = ACTIONS(3149), + [anon_sym_LR_DQUOTE] = ACTIONS(3149), + [anon_sym_uR_DQUOTE] = ACTIONS(3149), + [anon_sym_UR_DQUOTE] = ACTIONS(3149), + [anon_sym_u8R_DQUOTE] = ACTIONS(3149), + [anon_sym_co_await] = ACTIONS(3147), + [anon_sym_new] = ACTIONS(3147), + [anon_sym_requires] = ACTIONS(3147), + [sym_this] = ACTIONS(3147), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3149), + [sym_semgrep_named_ellipsis] = ACTIONS(3149), + }, + [631] = { + [sym_preproc_def] = STATE(2142), + [sym_preproc_function_def] = STATE(2142), + [sym_preproc_call] = STATE(2142), + [sym_preproc_if_in_field_declaration_list] = STATE(2142), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2142), + [sym_preproc_else_in_field_declaration_list] = STATE(9239), + [sym_preproc_elif_in_field_declaration_list] = STATE(9239), + [sym_type_definition] = STATE(2142), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6398), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7291), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(803), + [sym_field_declaration] = STATE(2142), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2142), + [sym_operator_cast] = STATE(7774), + [sym_inline_method_definition] = STATE(2142), + [sym_constructor_specifiers] = STATE(1937), + [sym_operator_cast_definition] = STATE(2142), + [sym_operator_cast_declaration] = STATE(2142), + [sym_constructor_or_destructor_definition] = STATE(2142), + [sym_constructor_or_destructor_declaration] = STATE(2142), + [sym_friend_declaration] = STATE(2142), + [sym_access_specifier] = STATE(9170), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2142), + [sym_alias_declaration] = STATE(2142), + [sym_static_assert_declaration] = STATE(2142), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7774), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2142), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(803), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1937), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(3839), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3841), + [aux_sym_preproc_if_token1] = ACTIONS(3843), + [aux_sym_preproc_if_token2] = ACTIONS(3879), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3847), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3849), + [aux_sym_preproc_else_token1] = ACTIONS(3241), + [aux_sym_preproc_elif_token1] = ACTIONS(3243), + [sym_preproc_directive] = ACTIONS(3851), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(3853), + [anon_sym_typedef] = ACTIONS(3855), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(3857), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(3859), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3861), + [anon_sym_static_assert] = ACTIONS(3863), + [sym_semgrep_metavar] = ACTIONS(3865), + }, + [632] = { + [sym_preproc_def] = STATE(2142), + [sym_preproc_function_def] = STATE(2142), + [sym_preproc_call] = STATE(2142), + [sym_preproc_if_in_field_declaration_list] = STATE(2142), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2142), + [sym_preproc_else_in_field_declaration_list] = STATE(9899), + [sym_preproc_elif_in_field_declaration_list] = STATE(9899), + [sym_type_definition] = STATE(2142), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6398), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7291), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(635), + [sym_field_declaration] = STATE(2142), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2142), + [sym_operator_cast] = STATE(7774), + [sym_inline_method_definition] = STATE(2142), + [sym_constructor_specifiers] = STATE(1937), + [sym_operator_cast_definition] = STATE(2142), + [sym_operator_cast_declaration] = STATE(2142), + [sym_constructor_or_destructor_definition] = STATE(2142), + [sym_constructor_or_destructor_declaration] = STATE(2142), + [sym_friend_declaration] = STATE(2142), + [sym_access_specifier] = STATE(9170), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2142), + [sym_alias_declaration] = STATE(2142), + [sym_static_assert_declaration] = STATE(2142), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7774), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2142), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(635), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1937), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(3839), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3841), + [aux_sym_preproc_if_token1] = ACTIONS(3843), + [aux_sym_preproc_if_token2] = ACTIONS(3881), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3847), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3849), + [aux_sym_preproc_else_token1] = ACTIONS(3241), + [aux_sym_preproc_elif_token1] = ACTIONS(3243), + [sym_preproc_directive] = ACTIONS(3851), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(3853), + [anon_sym_typedef] = ACTIONS(3855), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(3857), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(3859), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3861), + [anon_sym_static_assert] = ACTIONS(3863), + [sym_semgrep_metavar] = ACTIONS(3865), + }, + [633] = { + [sym_preproc_def] = STATE(2142), + [sym_preproc_function_def] = STATE(2142), + [sym_preproc_call] = STATE(2142), + [sym_preproc_if_in_field_declaration_list] = STATE(2142), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2142), + [sym_preproc_else_in_field_declaration_list] = STATE(9188), + [sym_preproc_elif_in_field_declaration_list] = STATE(9188), + [sym_type_definition] = STATE(2142), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6398), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7291), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(636), + [sym_field_declaration] = STATE(2142), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2142), + [sym_operator_cast] = STATE(7774), + [sym_inline_method_definition] = STATE(2142), + [sym_constructor_specifiers] = STATE(1937), + [sym_operator_cast_definition] = STATE(2142), + [sym_operator_cast_declaration] = STATE(2142), + [sym_constructor_or_destructor_definition] = STATE(2142), + [sym_constructor_or_destructor_declaration] = STATE(2142), + [sym_friend_declaration] = STATE(2142), + [sym_access_specifier] = STATE(9170), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2142), + [sym_alias_declaration] = STATE(2142), + [sym_static_assert_declaration] = STATE(2142), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7774), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2142), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(636), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1937), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(3839), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3841), + [aux_sym_preproc_if_token1] = ACTIONS(3843), + [aux_sym_preproc_if_token2] = ACTIONS(3883), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3847), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3849), + [aux_sym_preproc_else_token1] = ACTIONS(3241), + [aux_sym_preproc_elif_token1] = ACTIONS(3243), + [sym_preproc_directive] = ACTIONS(3851), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(3853), + [anon_sym_typedef] = ACTIONS(3855), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(3857), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(3859), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3861), + [anon_sym_static_assert] = ACTIONS(3863), + [sym_semgrep_metavar] = ACTIONS(3865), + }, + [634] = { + [sym_preproc_def] = STATE(2142), + [sym_preproc_function_def] = STATE(2142), + [sym_preproc_call] = STATE(2142), + [sym_preproc_if_in_field_declaration_list] = STATE(2142), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2142), + [sym_preproc_else_in_field_declaration_list] = STATE(9285), + [sym_preproc_elif_in_field_declaration_list] = STATE(9285), + [sym_type_definition] = STATE(2142), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6398), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7291), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(637), + [sym_field_declaration] = STATE(2142), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2142), + [sym_operator_cast] = STATE(7774), + [sym_inline_method_definition] = STATE(2142), + [sym_constructor_specifiers] = STATE(1937), + [sym_operator_cast_definition] = STATE(2142), + [sym_operator_cast_declaration] = STATE(2142), + [sym_constructor_or_destructor_definition] = STATE(2142), + [sym_constructor_or_destructor_declaration] = STATE(2142), + [sym_friend_declaration] = STATE(2142), + [sym_access_specifier] = STATE(9170), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2142), + [sym_alias_declaration] = STATE(2142), + [sym_static_assert_declaration] = STATE(2142), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7774), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2142), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(637), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1937), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(3839), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3841), + [aux_sym_preproc_if_token1] = ACTIONS(3843), + [aux_sym_preproc_if_token2] = ACTIONS(3885), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3847), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3849), + [aux_sym_preproc_else_token1] = ACTIONS(3241), + [aux_sym_preproc_elif_token1] = ACTIONS(3243), + [sym_preproc_directive] = ACTIONS(3851), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(3853), + [anon_sym_typedef] = ACTIONS(3855), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(3857), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(3859), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3861), + [anon_sym_static_assert] = ACTIONS(3863), + [sym_semgrep_metavar] = ACTIONS(3865), + }, + [635] = { + [sym_preproc_def] = STATE(2142), + [sym_preproc_function_def] = STATE(2142), + [sym_preproc_call] = STATE(2142), + [sym_preproc_if_in_field_declaration_list] = STATE(2142), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2142), + [sym_preproc_else_in_field_declaration_list] = STATE(9297), + [sym_preproc_elif_in_field_declaration_list] = STATE(9297), + [sym_type_definition] = STATE(2142), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6398), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7291), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(803), + [sym_field_declaration] = STATE(2142), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2142), + [sym_operator_cast] = STATE(7774), + [sym_inline_method_definition] = STATE(2142), + [sym_constructor_specifiers] = STATE(1937), + [sym_operator_cast_definition] = STATE(2142), + [sym_operator_cast_declaration] = STATE(2142), + [sym_constructor_or_destructor_definition] = STATE(2142), + [sym_constructor_or_destructor_declaration] = STATE(2142), + [sym_friend_declaration] = STATE(2142), + [sym_access_specifier] = STATE(9170), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2142), + [sym_alias_declaration] = STATE(2142), + [sym_static_assert_declaration] = STATE(2142), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7774), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2142), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(803), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1937), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(3839), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3841), + [aux_sym_preproc_if_token1] = ACTIONS(3843), + [aux_sym_preproc_if_token2] = ACTIONS(3887), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3847), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3849), + [aux_sym_preproc_else_token1] = ACTIONS(3241), + [aux_sym_preproc_elif_token1] = ACTIONS(3243), + [sym_preproc_directive] = ACTIONS(3851), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(3853), + [anon_sym_typedef] = ACTIONS(3855), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(3857), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(3859), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3861), + [anon_sym_static_assert] = ACTIONS(3863), + [sym_semgrep_metavar] = ACTIONS(3865), + }, + [636] = { + [sym_preproc_def] = STATE(2142), + [sym_preproc_function_def] = STATE(2142), + [sym_preproc_call] = STATE(2142), + [sym_preproc_if_in_field_declaration_list] = STATE(2142), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2142), + [sym_preproc_else_in_field_declaration_list] = STATE(9298), + [sym_preproc_elif_in_field_declaration_list] = STATE(9298), + [sym_type_definition] = STATE(2142), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6398), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7291), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(803), + [sym_field_declaration] = STATE(2142), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2142), + [sym_operator_cast] = STATE(7774), + [sym_inline_method_definition] = STATE(2142), + [sym_constructor_specifiers] = STATE(1937), + [sym_operator_cast_definition] = STATE(2142), + [sym_operator_cast_declaration] = STATE(2142), + [sym_constructor_or_destructor_definition] = STATE(2142), + [sym_constructor_or_destructor_declaration] = STATE(2142), + [sym_friend_declaration] = STATE(2142), + [sym_access_specifier] = STATE(9170), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2142), + [sym_alias_declaration] = STATE(2142), + [sym_static_assert_declaration] = STATE(2142), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7774), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2142), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(803), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1937), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(3839), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3841), + [aux_sym_preproc_if_token1] = ACTIONS(3843), + [aux_sym_preproc_if_token2] = ACTIONS(3889), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3847), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3849), + [aux_sym_preproc_else_token1] = ACTIONS(3241), + [aux_sym_preproc_elif_token1] = ACTIONS(3243), + [sym_preproc_directive] = ACTIONS(3851), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(3853), + [anon_sym_typedef] = ACTIONS(3855), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(3857), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(3859), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3861), + [anon_sym_static_assert] = ACTIONS(3863), + [sym_semgrep_metavar] = ACTIONS(3865), + }, + [637] = { + [sym_preproc_def] = STATE(2142), + [sym_preproc_function_def] = STATE(2142), + [sym_preproc_call] = STATE(2142), + [sym_preproc_if_in_field_declaration_list] = STATE(2142), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2142), + [sym_preproc_else_in_field_declaration_list] = STATE(9153), + [sym_preproc_elif_in_field_declaration_list] = STATE(9153), + [sym_type_definition] = STATE(2142), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6398), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7291), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(803), + [sym_field_declaration] = STATE(2142), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2142), + [sym_operator_cast] = STATE(7774), + [sym_inline_method_definition] = STATE(2142), + [sym_constructor_specifiers] = STATE(1937), + [sym_operator_cast_definition] = STATE(2142), + [sym_operator_cast_declaration] = STATE(2142), + [sym_constructor_or_destructor_definition] = STATE(2142), + [sym_constructor_or_destructor_declaration] = STATE(2142), + [sym_friend_declaration] = STATE(2142), + [sym_access_specifier] = STATE(9170), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2142), + [sym_alias_declaration] = STATE(2142), + [sym_static_assert_declaration] = STATE(2142), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7774), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2142), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(803), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1937), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(3839), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3841), + [aux_sym_preproc_if_token1] = ACTIONS(3843), + [aux_sym_preproc_if_token2] = ACTIONS(3891), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3847), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3849), + [aux_sym_preproc_else_token1] = ACTIONS(3241), + [aux_sym_preproc_elif_token1] = ACTIONS(3243), + [sym_preproc_directive] = ACTIONS(3851), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(3853), + [anon_sym_typedef] = ACTIONS(3855), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(3857), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(3859), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3861), + [anon_sym_static_assert] = ACTIONS(3863), + [sym_semgrep_metavar] = ACTIONS(3865), + }, + [638] = { + [ts_builtin_sym_end] = ACTIONS(3183), + [sym_identifier] = ACTIONS(3181), + [aux_sym_preproc_include_token1] = ACTIONS(3181), + [aux_sym_preproc_def_token1] = ACTIONS(3181), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3183), + [aux_sym_preproc_if_token1] = ACTIONS(3181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3181), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3181), + [sym_preproc_directive] = ACTIONS(3181), + [anon_sym_LPAREN2] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3183), + [anon_sym_TILDE] = ACTIONS(3183), + [anon_sym_DASH] = ACTIONS(3181), + [anon_sym_PLUS] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3183), + [anon_sym_AMP_AMP] = ACTIONS(3183), + [anon_sym_AMP] = ACTIONS(3181), + [anon_sym_SEMI] = ACTIONS(3183), + [anon_sym___extension__] = ACTIONS(3181), + [anon_sym_typedef] = ACTIONS(3181), + [anon_sym_extern] = ACTIONS(3181), + [anon_sym___attribute__] = ACTIONS(3181), + [anon_sym_COLON_COLON] = ACTIONS(3183), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3183), + [anon_sym___declspec] = ACTIONS(3181), + [anon_sym___based] = ACTIONS(3181), + [anon_sym___cdecl] = ACTIONS(3181), + [anon_sym___clrcall] = ACTIONS(3181), + [anon_sym___stdcall] = ACTIONS(3181), + [anon_sym___fastcall] = ACTIONS(3181), + [anon_sym___thiscall] = ACTIONS(3181), + [anon_sym___vectorcall] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_signed] = ACTIONS(3181), + [anon_sym_unsigned] = ACTIONS(3181), + [anon_sym_long] = ACTIONS(3181), + [anon_sym_short] = ACTIONS(3181), + [anon_sym_LBRACK] = ACTIONS(3181), + [anon_sym_static] = ACTIONS(3181), + [anon_sym_register] = ACTIONS(3181), + [anon_sym_inline] = ACTIONS(3181), + [anon_sym___inline] = ACTIONS(3181), + [anon_sym___inline__] = ACTIONS(3181), + [anon_sym___forceinline] = ACTIONS(3181), + [anon_sym_thread_local] = ACTIONS(3181), + [anon_sym___thread] = ACTIONS(3181), + [anon_sym_const] = ACTIONS(3181), + [anon_sym_constexpr] = ACTIONS(3181), + [anon_sym_volatile] = ACTIONS(3181), + [anon_sym_restrict] = ACTIONS(3181), + [anon_sym___restrict__] = ACTIONS(3181), + [anon_sym__Atomic] = ACTIONS(3181), + [anon_sym__Noreturn] = ACTIONS(3181), + [anon_sym_noreturn] = ACTIONS(3181), + [anon_sym_mutable] = ACTIONS(3181), + [anon_sym_constinit] = ACTIONS(3181), + [anon_sym_consteval] = ACTIONS(3181), + [sym_primitive_type] = ACTIONS(3181), + [anon_sym_enum] = ACTIONS(3181), + [anon_sym_class] = ACTIONS(3181), + [anon_sym_struct] = ACTIONS(3181), + [anon_sym_union] = ACTIONS(3181), + [anon_sym_if] = ACTIONS(3181), + [anon_sym_else] = ACTIONS(3181), + [anon_sym_switch] = ACTIONS(3181), + [anon_sym_case] = ACTIONS(3181), + [anon_sym_default] = ACTIONS(3181), + [anon_sym_while] = ACTIONS(3181), + [anon_sym_do] = ACTIONS(3181), + [anon_sym_for] = ACTIONS(3181), + [anon_sym_return] = ACTIONS(3181), + [anon_sym_break] = ACTIONS(3181), + [anon_sym_continue] = ACTIONS(3181), + [anon_sym_goto] = ACTIONS(3181), + [anon_sym___try] = ACTIONS(3181), + [anon_sym___leave] = ACTIONS(3181), + [anon_sym_not] = ACTIONS(3181), + [anon_sym_compl] = ACTIONS(3181), + [anon_sym_DASH_DASH] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_sizeof] = ACTIONS(3181), + [anon_sym___alignof__] = ACTIONS(3181), + [anon_sym___alignof] = ACTIONS(3181), + [anon_sym__alignof] = ACTIONS(3181), + [anon_sym_alignof] = ACTIONS(3181), + [anon_sym__Alignof] = ACTIONS(3181), + [anon_sym_offsetof] = ACTIONS(3181), + [anon_sym__Generic] = ACTIONS(3181), + [anon_sym_asm] = ACTIONS(3181), + [anon_sym___asm__] = ACTIONS(3181), + [sym_number_literal] = ACTIONS(3183), + [anon_sym_L_SQUOTE] = ACTIONS(3183), + [anon_sym_u_SQUOTE] = ACTIONS(3183), + [anon_sym_U_SQUOTE] = ACTIONS(3183), + [anon_sym_u8_SQUOTE] = ACTIONS(3183), + [anon_sym_SQUOTE] = ACTIONS(3183), + [anon_sym_L_DQUOTE] = ACTIONS(3183), + [anon_sym_u_DQUOTE] = ACTIONS(3183), + [anon_sym_U_DQUOTE] = ACTIONS(3183), + [anon_sym_u8_DQUOTE] = ACTIONS(3183), + [anon_sym_DQUOTE] = ACTIONS(3183), + [sym_true] = ACTIONS(3181), + [sym_false] = ACTIONS(3181), + [anon_sym_NULL] = ACTIONS(3181), + [anon_sym_nullptr] = ACTIONS(3181), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3181), + [anon_sym_decltype] = ACTIONS(3181), + [anon_sym_virtual] = ACTIONS(3181), + [anon_sym_alignas] = ACTIONS(3181), + [anon_sym_explicit] = ACTIONS(3181), + [anon_sym_typename] = ACTIONS(3181), + [anon_sym_template] = ACTIONS(3181), + [anon_sym_operator] = ACTIONS(3181), + [anon_sym_try] = ACTIONS(3181), + [anon_sym_delete] = ACTIONS(3181), + [anon_sym_throw] = ACTIONS(3181), + [anon_sym_namespace] = ACTIONS(3181), + [anon_sym_using] = ACTIONS(3181), + [anon_sym_static_assert] = ACTIONS(3181), + [anon_sym_concept] = ACTIONS(3181), + [anon_sym_co_return] = ACTIONS(3181), + [anon_sym_co_yield] = ACTIONS(3181), + [anon_sym_R_DQUOTE] = ACTIONS(3183), + [anon_sym_LR_DQUOTE] = ACTIONS(3183), + [anon_sym_uR_DQUOTE] = ACTIONS(3183), + [anon_sym_UR_DQUOTE] = ACTIONS(3183), + [anon_sym_u8R_DQUOTE] = ACTIONS(3183), + [anon_sym_co_await] = ACTIONS(3181), + [anon_sym_new] = ACTIONS(3181), + [anon_sym_requires] = ACTIONS(3181), + [sym_this] = ACTIONS(3181), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3183), + [sym_semgrep_named_ellipsis] = ACTIONS(3183), + }, + [639] = { + [ts_builtin_sym_end] = ACTIONS(3161), + [sym_identifier] = ACTIONS(3159), [aux_sym_preproc_include_token1] = ACTIONS(3159), [aux_sym_preproc_def_token1] = ACTIONS(3159), [anon_sym_DOT_DOT_DOT] = ACTIONS(3161), @@ -148138,7 +143881,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(3159), [anon_sym___vectorcall] = ACTIONS(3159), [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_RBRACE] = ACTIONS(3161), [anon_sym_signed] = ACTIONS(3159), [anon_sym_unsigned] = ACTIONS(3159), [anon_sym_long] = ACTIONS(3159), @@ -148241,279 +143983,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3161), [sym_semgrep_named_ellipsis] = ACTIONS(3161), }, - [599] = { - [sym_identifier] = ACTIONS(3223), - [aux_sym_preproc_include_token1] = ACTIONS(3223), - [aux_sym_preproc_def_token1] = ACTIONS(3223), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3225), - [aux_sym_preproc_if_token1] = ACTIONS(3223), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3223), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3223), - [sym_preproc_directive] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(3225), - [anon_sym_BANG] = ACTIONS(3225), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_STAR] = ACTIONS(3225), - [anon_sym_AMP_AMP] = ACTIONS(3225), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3225), - [anon_sym___extension__] = ACTIONS(3223), - [anon_sym_typedef] = ACTIONS(3223), - [anon_sym_extern] = ACTIONS(3223), - [anon_sym___attribute__] = ACTIONS(3223), - [anon_sym_COLON_COLON] = ACTIONS(3225), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3225), - [anon_sym___declspec] = ACTIONS(3223), - [anon_sym___based] = ACTIONS(3223), - [anon_sym___cdecl] = ACTIONS(3223), - [anon_sym___clrcall] = ACTIONS(3223), - [anon_sym___stdcall] = ACTIONS(3223), - [anon_sym___fastcall] = ACTIONS(3223), - [anon_sym___thiscall] = ACTIONS(3223), - [anon_sym___vectorcall] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3225), - [anon_sym_RBRACE] = ACTIONS(3225), - [anon_sym_signed] = ACTIONS(3223), - [anon_sym_unsigned] = ACTIONS(3223), - [anon_sym_long] = ACTIONS(3223), - [anon_sym_short] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_register] = ACTIONS(3223), - [anon_sym_inline] = ACTIONS(3223), - [anon_sym___inline] = ACTIONS(3223), - [anon_sym___inline__] = ACTIONS(3223), - [anon_sym___forceinline] = ACTIONS(3223), - [anon_sym_thread_local] = ACTIONS(3223), - [anon_sym___thread] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_constexpr] = ACTIONS(3223), - [anon_sym_volatile] = ACTIONS(3223), - [anon_sym_restrict] = ACTIONS(3223), - [anon_sym___restrict__] = ACTIONS(3223), - [anon_sym__Atomic] = ACTIONS(3223), - [anon_sym__Noreturn] = ACTIONS(3223), - [anon_sym_noreturn] = ACTIONS(3223), - [anon_sym_mutable] = ACTIONS(3223), - [anon_sym_constinit] = ACTIONS(3223), - [anon_sym_consteval] = ACTIONS(3223), - [sym_primitive_type] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_struct] = ACTIONS(3223), - [anon_sym_union] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_else] = ACTIONS(3223), - [anon_sym_switch] = ACTIONS(3223), - [anon_sym_case] = ACTIONS(3223), - [anon_sym_default] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_goto] = ACTIONS(3223), - [anon_sym___try] = ACTIONS(3223), - [anon_sym___leave] = ACTIONS(3223), - [anon_sym_not] = ACTIONS(3223), - [anon_sym_compl] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3225), - [anon_sym_PLUS_PLUS] = ACTIONS(3225), - [anon_sym_sizeof] = ACTIONS(3223), - [anon_sym___alignof__] = ACTIONS(3223), - [anon_sym___alignof] = ACTIONS(3223), - [anon_sym__alignof] = ACTIONS(3223), - [anon_sym_alignof] = ACTIONS(3223), - [anon_sym__Alignof] = ACTIONS(3223), - [anon_sym_offsetof] = ACTIONS(3223), - [anon_sym__Generic] = ACTIONS(3223), - [anon_sym_asm] = ACTIONS(3223), - [anon_sym___asm__] = ACTIONS(3223), - [sym_number_literal] = ACTIONS(3225), - [anon_sym_L_SQUOTE] = ACTIONS(3225), - [anon_sym_u_SQUOTE] = ACTIONS(3225), - [anon_sym_U_SQUOTE] = ACTIONS(3225), - [anon_sym_u8_SQUOTE] = ACTIONS(3225), - [anon_sym_SQUOTE] = ACTIONS(3225), - [anon_sym_L_DQUOTE] = ACTIONS(3225), - [anon_sym_u_DQUOTE] = ACTIONS(3225), - [anon_sym_U_DQUOTE] = ACTIONS(3225), - [anon_sym_u8_DQUOTE] = ACTIONS(3225), - [anon_sym_DQUOTE] = ACTIONS(3225), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [anon_sym_NULL] = ACTIONS(3223), - [anon_sym_nullptr] = ACTIONS(3223), + [640] = { + [sym_identifier] = ACTIONS(3193), + [aux_sym_preproc_include_token1] = ACTIONS(3193), + [aux_sym_preproc_def_token1] = ACTIONS(3193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3195), + [aux_sym_preproc_if_token1] = ACTIONS(3193), + [aux_sym_preproc_if_token2] = ACTIONS(3193), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3193), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3193), + [sym_preproc_directive] = ACTIONS(3193), + [anon_sym_LPAREN2] = ACTIONS(3195), + [anon_sym_BANG] = ACTIONS(3195), + [anon_sym_TILDE] = ACTIONS(3195), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_AMP] = ACTIONS(3193), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym___extension__] = ACTIONS(3193), + [anon_sym_typedef] = ACTIONS(3193), + [anon_sym_extern] = ACTIONS(3193), + [anon_sym___attribute__] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(3195), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3195), + [anon_sym___declspec] = ACTIONS(3193), + [anon_sym___based] = ACTIONS(3193), + [anon_sym___cdecl] = ACTIONS(3193), + [anon_sym___clrcall] = ACTIONS(3193), + [anon_sym___stdcall] = ACTIONS(3193), + [anon_sym___fastcall] = ACTIONS(3193), + [anon_sym___thiscall] = ACTIONS(3193), + [anon_sym___vectorcall] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(3195), + [anon_sym_signed] = ACTIONS(3193), + [anon_sym_unsigned] = ACTIONS(3193), + [anon_sym_long] = ACTIONS(3193), + [anon_sym_short] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(3193), + [anon_sym_static] = ACTIONS(3193), + [anon_sym_register] = ACTIONS(3193), + [anon_sym_inline] = ACTIONS(3193), + [anon_sym___inline] = ACTIONS(3193), + [anon_sym___inline__] = ACTIONS(3193), + [anon_sym___forceinline] = ACTIONS(3193), + [anon_sym_thread_local] = ACTIONS(3193), + [anon_sym___thread] = ACTIONS(3193), + [anon_sym_const] = ACTIONS(3193), + [anon_sym_constexpr] = ACTIONS(3193), + [anon_sym_volatile] = ACTIONS(3193), + [anon_sym_restrict] = ACTIONS(3193), + [anon_sym___restrict__] = ACTIONS(3193), + [anon_sym__Atomic] = ACTIONS(3193), + [anon_sym__Noreturn] = ACTIONS(3193), + [anon_sym_noreturn] = ACTIONS(3193), + [anon_sym_mutable] = ACTIONS(3193), + [anon_sym_constinit] = ACTIONS(3193), + [anon_sym_consteval] = ACTIONS(3193), + [sym_primitive_type] = ACTIONS(3193), + [anon_sym_enum] = ACTIONS(3193), + [anon_sym_class] = ACTIONS(3193), + [anon_sym_struct] = ACTIONS(3193), + [anon_sym_union] = ACTIONS(3193), + [anon_sym_if] = ACTIONS(3193), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_switch] = ACTIONS(3193), + [anon_sym_case] = ACTIONS(3193), + [anon_sym_default] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_do] = ACTIONS(3193), + [anon_sym_for] = ACTIONS(3193), + [anon_sym_return] = ACTIONS(3193), + [anon_sym_break] = ACTIONS(3193), + [anon_sym_continue] = ACTIONS(3193), + [anon_sym_goto] = ACTIONS(3193), + [anon_sym___try] = ACTIONS(3193), + [anon_sym___leave] = ACTIONS(3193), + [anon_sym_not] = ACTIONS(3193), + [anon_sym_compl] = ACTIONS(3193), + [anon_sym_DASH_DASH] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3195), + [anon_sym_sizeof] = ACTIONS(3193), + [anon_sym___alignof__] = ACTIONS(3193), + [anon_sym___alignof] = ACTIONS(3193), + [anon_sym__alignof] = ACTIONS(3193), + [anon_sym_alignof] = ACTIONS(3193), + [anon_sym__Alignof] = ACTIONS(3193), + [anon_sym_offsetof] = ACTIONS(3193), + [anon_sym__Generic] = ACTIONS(3193), + [anon_sym_asm] = ACTIONS(3193), + [anon_sym___asm__] = ACTIONS(3193), + [sym_number_literal] = ACTIONS(3195), + [anon_sym_L_SQUOTE] = ACTIONS(3195), + [anon_sym_u_SQUOTE] = ACTIONS(3195), + [anon_sym_U_SQUOTE] = ACTIONS(3195), + [anon_sym_u8_SQUOTE] = ACTIONS(3195), + [anon_sym_SQUOTE] = ACTIONS(3195), + [anon_sym_L_DQUOTE] = ACTIONS(3195), + [anon_sym_u_DQUOTE] = ACTIONS(3195), + [anon_sym_U_DQUOTE] = ACTIONS(3195), + [anon_sym_u8_DQUOTE] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(3195), + [sym_true] = ACTIONS(3193), + [sym_false] = ACTIONS(3193), + [anon_sym_NULL] = ACTIONS(3193), + [anon_sym_nullptr] = ACTIONS(3193), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3223), - [anon_sym_decltype] = ACTIONS(3223), - [anon_sym_virtual] = ACTIONS(3223), - [anon_sym_alignas] = ACTIONS(3223), - [anon_sym_explicit] = ACTIONS(3223), - [anon_sym_typename] = ACTIONS(3223), - [anon_sym_template] = ACTIONS(3223), - [anon_sym_operator] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_delete] = ACTIONS(3223), - [anon_sym_throw] = ACTIONS(3223), - [anon_sym_namespace] = ACTIONS(3223), - [anon_sym_using] = ACTIONS(3223), - [anon_sym_static_assert] = ACTIONS(3223), - [anon_sym_concept] = ACTIONS(3223), - [anon_sym_co_return] = ACTIONS(3223), - [anon_sym_co_yield] = ACTIONS(3223), - [anon_sym_R_DQUOTE] = ACTIONS(3225), - [anon_sym_LR_DQUOTE] = ACTIONS(3225), - [anon_sym_uR_DQUOTE] = ACTIONS(3225), - [anon_sym_UR_DQUOTE] = ACTIONS(3225), - [anon_sym_u8R_DQUOTE] = ACTIONS(3225), - [anon_sym_co_await] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_requires] = ACTIONS(3223), - [sym_this] = ACTIONS(3223), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3225), - [sym_semgrep_named_ellipsis] = ACTIONS(3225), + [sym_auto] = ACTIONS(3193), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_virtual] = ACTIONS(3193), + [anon_sym_alignas] = ACTIONS(3193), + [anon_sym_explicit] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3193), + [anon_sym_template] = ACTIONS(3193), + [anon_sym_operator] = ACTIONS(3193), + [anon_sym_try] = ACTIONS(3193), + [anon_sym_delete] = ACTIONS(3193), + [anon_sym_throw] = ACTIONS(3193), + [anon_sym_namespace] = ACTIONS(3193), + [anon_sym_using] = ACTIONS(3193), + [anon_sym_static_assert] = ACTIONS(3193), + [anon_sym_concept] = ACTIONS(3193), + [anon_sym_co_return] = ACTIONS(3193), + [anon_sym_co_yield] = ACTIONS(3193), + [anon_sym_R_DQUOTE] = ACTIONS(3195), + [anon_sym_LR_DQUOTE] = ACTIONS(3195), + [anon_sym_uR_DQUOTE] = ACTIONS(3195), + [anon_sym_UR_DQUOTE] = ACTIONS(3195), + [anon_sym_u8R_DQUOTE] = ACTIONS(3195), + [anon_sym_co_await] = ACTIONS(3193), + [anon_sym_new] = ACTIONS(3193), + [anon_sym_requires] = ACTIONS(3193), + [sym_this] = ACTIONS(3193), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3195), + [sym_semgrep_named_ellipsis] = ACTIONS(3195), }, - [600] = { - [sym_identifier] = ACTIONS(3143), - [aux_sym_preproc_include_token1] = ACTIONS(3143), - [aux_sym_preproc_def_token1] = ACTIONS(3143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3145), - [aux_sym_preproc_if_token1] = ACTIONS(3143), - [aux_sym_preproc_if_token2] = ACTIONS(3143), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3143), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3143), - [sym_preproc_directive] = ACTIONS(3143), - [anon_sym_LPAREN2] = ACTIONS(3145), - [anon_sym_BANG] = ACTIONS(3145), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_DASH] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3145), - [anon_sym_AMP_AMP] = ACTIONS(3145), - [anon_sym_AMP] = ACTIONS(3143), - [anon_sym_SEMI] = ACTIONS(3145), - [anon_sym___extension__] = ACTIONS(3143), - [anon_sym_typedef] = ACTIONS(3143), - [anon_sym_extern] = ACTIONS(3143), - [anon_sym___attribute__] = ACTIONS(3143), - [anon_sym_COLON_COLON] = ACTIONS(3145), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3145), - [anon_sym___declspec] = ACTIONS(3143), - [anon_sym___based] = ACTIONS(3143), - [anon_sym___cdecl] = ACTIONS(3143), - [anon_sym___clrcall] = ACTIONS(3143), - [anon_sym___stdcall] = ACTIONS(3143), - [anon_sym___fastcall] = ACTIONS(3143), - [anon_sym___thiscall] = ACTIONS(3143), - [anon_sym___vectorcall] = ACTIONS(3143), - [anon_sym_LBRACE] = ACTIONS(3145), - [anon_sym_signed] = ACTIONS(3143), - [anon_sym_unsigned] = ACTIONS(3143), - [anon_sym_long] = ACTIONS(3143), - [anon_sym_short] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_static] = ACTIONS(3143), - [anon_sym_register] = ACTIONS(3143), - [anon_sym_inline] = ACTIONS(3143), - [anon_sym___inline] = ACTIONS(3143), - [anon_sym___inline__] = ACTIONS(3143), - [anon_sym___forceinline] = ACTIONS(3143), - [anon_sym_thread_local] = ACTIONS(3143), - [anon_sym___thread] = ACTIONS(3143), - [anon_sym_const] = ACTIONS(3143), - [anon_sym_constexpr] = ACTIONS(3143), - [anon_sym_volatile] = ACTIONS(3143), - [anon_sym_restrict] = ACTIONS(3143), - [anon_sym___restrict__] = ACTIONS(3143), - [anon_sym__Atomic] = ACTIONS(3143), - [anon_sym__Noreturn] = ACTIONS(3143), - [anon_sym_noreturn] = ACTIONS(3143), - [anon_sym_mutable] = ACTIONS(3143), - [anon_sym_constinit] = ACTIONS(3143), - [anon_sym_consteval] = ACTIONS(3143), - [sym_primitive_type] = ACTIONS(3143), - [anon_sym_enum] = ACTIONS(3143), - [anon_sym_class] = ACTIONS(3143), - [anon_sym_struct] = ACTIONS(3143), - [anon_sym_union] = ACTIONS(3143), - [anon_sym_if] = ACTIONS(3143), - [anon_sym_else] = ACTIONS(3143), - [anon_sym_switch] = ACTIONS(3143), - [anon_sym_case] = ACTIONS(3143), - [anon_sym_default] = ACTIONS(3143), - [anon_sym_while] = ACTIONS(3143), - [anon_sym_do] = ACTIONS(3143), - [anon_sym_for] = ACTIONS(3143), - [anon_sym_return] = ACTIONS(3143), - [anon_sym_break] = ACTIONS(3143), - [anon_sym_continue] = ACTIONS(3143), - [anon_sym_goto] = ACTIONS(3143), - [anon_sym___try] = ACTIONS(3143), - [anon_sym___leave] = ACTIONS(3143), - [anon_sym_not] = ACTIONS(3143), - [anon_sym_compl] = ACTIONS(3143), - [anon_sym_DASH_DASH] = ACTIONS(3145), - [anon_sym_PLUS_PLUS] = ACTIONS(3145), - [anon_sym_sizeof] = ACTIONS(3143), - [anon_sym___alignof__] = ACTIONS(3143), - [anon_sym___alignof] = ACTIONS(3143), - [anon_sym__alignof] = ACTIONS(3143), - [anon_sym_alignof] = ACTIONS(3143), - [anon_sym__Alignof] = ACTIONS(3143), - [anon_sym_offsetof] = ACTIONS(3143), - [anon_sym__Generic] = ACTIONS(3143), - [anon_sym_asm] = ACTIONS(3143), - [anon_sym___asm__] = ACTIONS(3143), - [sym_number_literal] = ACTIONS(3145), - [anon_sym_L_SQUOTE] = ACTIONS(3145), - [anon_sym_u_SQUOTE] = ACTIONS(3145), - [anon_sym_U_SQUOTE] = ACTIONS(3145), - [anon_sym_u8_SQUOTE] = ACTIONS(3145), - [anon_sym_SQUOTE] = ACTIONS(3145), - [anon_sym_L_DQUOTE] = ACTIONS(3145), - [anon_sym_u_DQUOTE] = ACTIONS(3145), - [anon_sym_U_DQUOTE] = ACTIONS(3145), - [anon_sym_u8_DQUOTE] = ACTIONS(3145), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym_true] = ACTIONS(3143), - [sym_false] = ACTIONS(3143), - [anon_sym_NULL] = ACTIONS(3143), - [anon_sym_nullptr] = ACTIONS(3143), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3143), - [anon_sym_decltype] = ACTIONS(3143), - [anon_sym_virtual] = ACTIONS(3143), - [anon_sym_alignas] = ACTIONS(3143), - [anon_sym_explicit] = ACTIONS(3143), - [anon_sym_typename] = ACTIONS(3143), - [anon_sym_template] = ACTIONS(3143), - [anon_sym_operator] = ACTIONS(3143), - [anon_sym_try] = ACTIONS(3143), - [anon_sym_delete] = ACTIONS(3143), - [anon_sym_throw] = ACTIONS(3143), - [anon_sym_namespace] = ACTIONS(3143), - [anon_sym_using] = ACTIONS(3143), - [anon_sym_static_assert] = ACTIONS(3143), - [anon_sym_concept] = ACTIONS(3143), - [anon_sym_co_return] = ACTIONS(3143), - [anon_sym_co_yield] = ACTIONS(3143), - [anon_sym_R_DQUOTE] = ACTIONS(3145), - [anon_sym_LR_DQUOTE] = ACTIONS(3145), - [anon_sym_uR_DQUOTE] = ACTIONS(3145), - [anon_sym_UR_DQUOTE] = ACTIONS(3145), - [anon_sym_u8R_DQUOTE] = ACTIONS(3145), - [anon_sym_co_await] = ACTIONS(3143), - [anon_sym_new] = ACTIONS(3143), - [anon_sym_requires] = ACTIONS(3143), - [sym_this] = ACTIONS(3143), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3145), - [sym_semgrep_named_ellipsis] = ACTIONS(3145), + [641] = { + [sym_identifier] = ACTIONS(3079), + [aux_sym_preproc_include_token1] = ACTIONS(3079), + [aux_sym_preproc_def_token1] = ACTIONS(3079), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3081), + [aux_sym_preproc_if_token1] = ACTIONS(3079), + [aux_sym_preproc_if_token2] = ACTIONS(3079), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3079), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3079), + [sym_preproc_directive] = ACTIONS(3079), + [anon_sym_LPAREN2] = ACTIONS(3081), + [anon_sym_BANG] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(3079), + [anon_sym_STAR] = ACTIONS(3081), + [anon_sym_AMP_AMP] = ACTIONS(3081), + [anon_sym_AMP] = ACTIONS(3079), + [anon_sym_SEMI] = ACTIONS(3081), + [anon_sym___extension__] = ACTIONS(3079), + [anon_sym_typedef] = ACTIONS(3079), + [anon_sym_extern] = ACTIONS(3079), + [anon_sym___attribute__] = ACTIONS(3079), + [anon_sym_COLON_COLON] = ACTIONS(3081), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3081), + [anon_sym___declspec] = ACTIONS(3079), + [anon_sym___based] = ACTIONS(3079), + [anon_sym___cdecl] = ACTIONS(3079), + [anon_sym___clrcall] = ACTIONS(3079), + [anon_sym___stdcall] = ACTIONS(3079), + [anon_sym___fastcall] = ACTIONS(3079), + [anon_sym___thiscall] = ACTIONS(3079), + [anon_sym___vectorcall] = ACTIONS(3079), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_signed] = ACTIONS(3079), + [anon_sym_unsigned] = ACTIONS(3079), + [anon_sym_long] = ACTIONS(3079), + [anon_sym_short] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3079), + [anon_sym_static] = ACTIONS(3079), + [anon_sym_register] = ACTIONS(3079), + [anon_sym_inline] = ACTIONS(3079), + [anon_sym___inline] = ACTIONS(3079), + [anon_sym___inline__] = ACTIONS(3079), + [anon_sym___forceinline] = ACTIONS(3079), + [anon_sym_thread_local] = ACTIONS(3079), + [anon_sym___thread] = ACTIONS(3079), + [anon_sym_const] = ACTIONS(3079), + [anon_sym_constexpr] = ACTIONS(3079), + [anon_sym_volatile] = ACTIONS(3079), + [anon_sym_restrict] = ACTIONS(3079), + [anon_sym___restrict__] = ACTIONS(3079), + [anon_sym__Atomic] = ACTIONS(3079), + [anon_sym__Noreturn] = ACTIONS(3079), + [anon_sym_noreturn] = ACTIONS(3079), + [anon_sym_mutable] = ACTIONS(3079), + [anon_sym_constinit] = ACTIONS(3079), + [anon_sym_consteval] = ACTIONS(3079), + [sym_primitive_type] = ACTIONS(3079), + [anon_sym_enum] = ACTIONS(3079), + [anon_sym_class] = ACTIONS(3079), + [anon_sym_struct] = ACTIONS(3079), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_if] = ACTIONS(3079), + [anon_sym_else] = ACTIONS(3079), + [anon_sym_switch] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3079), + [anon_sym_default] = ACTIONS(3079), + [anon_sym_while] = ACTIONS(3079), + [anon_sym_do] = ACTIONS(3079), + [anon_sym_for] = ACTIONS(3079), + [anon_sym_return] = ACTIONS(3079), + [anon_sym_break] = ACTIONS(3079), + [anon_sym_continue] = ACTIONS(3079), + [anon_sym_goto] = ACTIONS(3079), + [anon_sym___try] = ACTIONS(3079), + [anon_sym___leave] = ACTIONS(3079), + [anon_sym_not] = ACTIONS(3079), + [anon_sym_compl] = ACTIONS(3079), + [anon_sym_DASH_DASH] = ACTIONS(3081), + [anon_sym_PLUS_PLUS] = ACTIONS(3081), + [anon_sym_sizeof] = ACTIONS(3079), + [anon_sym___alignof__] = ACTIONS(3079), + [anon_sym___alignof] = ACTIONS(3079), + [anon_sym__alignof] = ACTIONS(3079), + [anon_sym_alignof] = ACTIONS(3079), + [anon_sym__Alignof] = ACTIONS(3079), + [anon_sym_offsetof] = ACTIONS(3079), + [anon_sym__Generic] = ACTIONS(3079), + [anon_sym_asm] = ACTIONS(3079), + [anon_sym___asm__] = ACTIONS(3079), + [sym_number_literal] = ACTIONS(3081), + [anon_sym_L_SQUOTE] = ACTIONS(3081), + [anon_sym_u_SQUOTE] = ACTIONS(3081), + [anon_sym_U_SQUOTE] = ACTIONS(3081), + [anon_sym_u8_SQUOTE] = ACTIONS(3081), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_L_DQUOTE] = ACTIONS(3081), + [anon_sym_u_DQUOTE] = ACTIONS(3081), + [anon_sym_U_DQUOTE] = ACTIONS(3081), + [anon_sym_u8_DQUOTE] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(3081), + [sym_true] = ACTIONS(3079), + [sym_false] = ACTIONS(3079), + [anon_sym_NULL] = ACTIONS(3079), + [anon_sym_nullptr] = ACTIONS(3079), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3079), + [anon_sym_decltype] = ACTIONS(3079), + [anon_sym_virtual] = ACTIONS(3079), + [anon_sym_alignas] = ACTIONS(3079), + [anon_sym_explicit] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3079), + [anon_sym_template] = ACTIONS(3079), + [anon_sym_operator] = ACTIONS(3079), + [anon_sym_try] = ACTIONS(3079), + [anon_sym_delete] = ACTIONS(3079), + [anon_sym_throw] = ACTIONS(3079), + [anon_sym_namespace] = ACTIONS(3079), + [anon_sym_using] = ACTIONS(3079), + [anon_sym_static_assert] = ACTIONS(3079), + [anon_sym_concept] = ACTIONS(3079), + [anon_sym_co_return] = ACTIONS(3079), + [anon_sym_co_yield] = ACTIONS(3079), + [anon_sym_R_DQUOTE] = ACTIONS(3081), + [anon_sym_LR_DQUOTE] = ACTIONS(3081), + [anon_sym_uR_DQUOTE] = ACTIONS(3081), + [anon_sym_UR_DQUOTE] = ACTIONS(3081), + [anon_sym_u8R_DQUOTE] = ACTIONS(3081), + [anon_sym_co_await] = ACTIONS(3079), + [anon_sym_new] = ACTIONS(3079), + [anon_sym_requires] = ACTIONS(3079), + [sym_this] = ACTIONS(3079), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3081), + [sym_semgrep_named_ellipsis] = ACTIONS(3081), }, - [601] = { + [642] = { + [ts_builtin_sym_end] = ACTIONS(3169), [sym_identifier] = ACTIONS(3167), [aux_sym_preproc_include_token1] = ACTIONS(3167), [aux_sym_preproc_def_token1] = ACTIONS(3167), @@ -148546,7 +144289,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(3167), [anon_sym___vectorcall] = ACTIONS(3167), [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_RBRACE] = ACTIONS(3169), [anon_sym_signed] = ACTIONS(3167), [anon_sym_unsigned] = ACTIONS(3167), [anon_sym_long] = ACTIONS(3167), @@ -148649,693 +144391,1509 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3169), [sym_semgrep_named_ellipsis] = ACTIONS(3169), }, - [602] = { - [sym_identifier] = ACTIONS(3171), - [aux_sym_preproc_include_token1] = ACTIONS(3171), - [aux_sym_preproc_def_token1] = ACTIONS(3171), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3173), - [aux_sym_preproc_if_token1] = ACTIONS(3171), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3171), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3171), - [sym_preproc_directive] = ACTIONS(3171), - [anon_sym_LPAREN2] = ACTIONS(3173), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3171), - [anon_sym_PLUS] = ACTIONS(3171), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_AMP_AMP] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3171), - [anon_sym_SEMI] = ACTIONS(3173), - [anon_sym___extension__] = ACTIONS(3171), - [anon_sym_typedef] = ACTIONS(3171), - [anon_sym_extern] = ACTIONS(3171), - [anon_sym___attribute__] = ACTIONS(3171), - [anon_sym_COLON_COLON] = ACTIONS(3173), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3173), - [anon_sym___declspec] = ACTIONS(3171), - [anon_sym___based] = ACTIONS(3171), - [anon_sym___cdecl] = ACTIONS(3171), - [anon_sym___clrcall] = ACTIONS(3171), - [anon_sym___stdcall] = ACTIONS(3171), - [anon_sym___fastcall] = ACTIONS(3171), - [anon_sym___thiscall] = ACTIONS(3171), - [anon_sym___vectorcall] = ACTIONS(3171), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_RBRACE] = ACTIONS(3173), - [anon_sym_signed] = ACTIONS(3171), - [anon_sym_unsigned] = ACTIONS(3171), - [anon_sym_long] = ACTIONS(3171), - [anon_sym_short] = ACTIONS(3171), - [anon_sym_LBRACK] = ACTIONS(3171), - [anon_sym_static] = ACTIONS(3171), - [anon_sym_register] = ACTIONS(3171), - [anon_sym_inline] = ACTIONS(3171), - [anon_sym___inline] = ACTIONS(3171), - [anon_sym___inline__] = ACTIONS(3171), - [anon_sym___forceinline] = ACTIONS(3171), - [anon_sym_thread_local] = ACTIONS(3171), - [anon_sym___thread] = ACTIONS(3171), - [anon_sym_const] = ACTIONS(3171), - [anon_sym_constexpr] = ACTIONS(3171), - [anon_sym_volatile] = ACTIONS(3171), - [anon_sym_restrict] = ACTIONS(3171), - [anon_sym___restrict__] = ACTIONS(3171), - [anon_sym__Atomic] = ACTIONS(3171), - [anon_sym__Noreturn] = ACTIONS(3171), - [anon_sym_noreturn] = ACTIONS(3171), - [anon_sym_mutable] = ACTIONS(3171), - [anon_sym_constinit] = ACTIONS(3171), - [anon_sym_consteval] = ACTIONS(3171), - [sym_primitive_type] = ACTIONS(3171), - [anon_sym_enum] = ACTIONS(3171), - [anon_sym_class] = ACTIONS(3171), - [anon_sym_struct] = ACTIONS(3171), - [anon_sym_union] = ACTIONS(3171), - [anon_sym_if] = ACTIONS(3171), - [anon_sym_else] = ACTIONS(3171), - [anon_sym_switch] = ACTIONS(3171), - [anon_sym_case] = ACTIONS(3171), - [anon_sym_default] = ACTIONS(3171), - [anon_sym_while] = ACTIONS(3171), - [anon_sym_do] = ACTIONS(3171), - [anon_sym_for] = ACTIONS(3171), - [anon_sym_return] = ACTIONS(3171), - [anon_sym_break] = ACTIONS(3171), - [anon_sym_continue] = ACTIONS(3171), - [anon_sym_goto] = ACTIONS(3171), - [anon_sym___try] = ACTIONS(3171), - [anon_sym___leave] = ACTIONS(3171), - [anon_sym_not] = ACTIONS(3171), - [anon_sym_compl] = ACTIONS(3171), - [anon_sym_DASH_DASH] = ACTIONS(3173), - [anon_sym_PLUS_PLUS] = ACTIONS(3173), - [anon_sym_sizeof] = ACTIONS(3171), - [anon_sym___alignof__] = ACTIONS(3171), - [anon_sym___alignof] = ACTIONS(3171), - [anon_sym__alignof] = ACTIONS(3171), - [anon_sym_alignof] = ACTIONS(3171), - [anon_sym__Alignof] = ACTIONS(3171), - [anon_sym_offsetof] = ACTIONS(3171), - [anon_sym__Generic] = ACTIONS(3171), - [anon_sym_asm] = ACTIONS(3171), - [anon_sym___asm__] = ACTIONS(3171), - [sym_number_literal] = ACTIONS(3173), - [anon_sym_L_SQUOTE] = ACTIONS(3173), - [anon_sym_u_SQUOTE] = ACTIONS(3173), - [anon_sym_U_SQUOTE] = ACTIONS(3173), - [anon_sym_u8_SQUOTE] = ACTIONS(3173), - [anon_sym_SQUOTE] = ACTIONS(3173), - [anon_sym_L_DQUOTE] = ACTIONS(3173), - [anon_sym_u_DQUOTE] = ACTIONS(3173), - [anon_sym_U_DQUOTE] = ACTIONS(3173), - [anon_sym_u8_DQUOTE] = ACTIONS(3173), - [anon_sym_DQUOTE] = ACTIONS(3173), - [sym_true] = ACTIONS(3171), - [sym_false] = ACTIONS(3171), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3171), - [anon_sym_decltype] = ACTIONS(3171), - [anon_sym_virtual] = ACTIONS(3171), - [anon_sym_alignas] = ACTIONS(3171), - [anon_sym_explicit] = ACTIONS(3171), - [anon_sym_typename] = ACTIONS(3171), - [anon_sym_template] = ACTIONS(3171), - [anon_sym_operator] = ACTIONS(3171), - [anon_sym_try] = ACTIONS(3171), - [anon_sym_delete] = ACTIONS(3171), - [anon_sym_throw] = ACTIONS(3171), - [anon_sym_namespace] = ACTIONS(3171), - [anon_sym_using] = ACTIONS(3171), - [anon_sym_static_assert] = ACTIONS(3171), - [anon_sym_concept] = ACTIONS(3171), - [anon_sym_co_return] = ACTIONS(3171), - [anon_sym_co_yield] = ACTIONS(3171), - [anon_sym_R_DQUOTE] = ACTIONS(3173), - [anon_sym_LR_DQUOTE] = ACTIONS(3173), - [anon_sym_uR_DQUOTE] = ACTIONS(3173), - [anon_sym_UR_DQUOTE] = ACTIONS(3173), - [anon_sym_u8R_DQUOTE] = ACTIONS(3173), - [anon_sym_co_await] = ACTIONS(3171), - [anon_sym_new] = ACTIONS(3171), - [anon_sym_requires] = ACTIONS(3171), - [sym_this] = ACTIONS(3171), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3173), - [sym_semgrep_named_ellipsis] = ACTIONS(3173), - }, - [603] = { - [sym_identifier] = ACTIONS(3245), - [aux_sym_preproc_include_token1] = ACTIONS(3245), - [aux_sym_preproc_def_token1] = ACTIONS(3245), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3247), - [aux_sym_preproc_if_token1] = ACTIONS(3245), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3245), - [sym_preproc_directive] = ACTIONS(3245), - [anon_sym_LPAREN2] = ACTIONS(3247), - [anon_sym_BANG] = ACTIONS(3247), - [anon_sym_TILDE] = ACTIONS(3247), - [anon_sym_DASH] = ACTIONS(3245), - [anon_sym_PLUS] = ACTIONS(3245), - [anon_sym_STAR] = ACTIONS(3247), - [anon_sym_AMP_AMP] = ACTIONS(3247), - [anon_sym_AMP] = ACTIONS(3245), - [anon_sym_SEMI] = ACTIONS(3247), - [anon_sym___extension__] = ACTIONS(3245), - [anon_sym_typedef] = ACTIONS(3245), - [anon_sym_extern] = ACTIONS(3245), - [anon_sym___attribute__] = ACTIONS(3245), - [anon_sym_COLON_COLON] = ACTIONS(3247), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3247), - [anon_sym___declspec] = ACTIONS(3245), - [anon_sym___based] = ACTIONS(3245), - [anon_sym___cdecl] = ACTIONS(3245), - [anon_sym___clrcall] = ACTIONS(3245), - [anon_sym___stdcall] = ACTIONS(3245), - [anon_sym___fastcall] = ACTIONS(3245), - [anon_sym___thiscall] = ACTIONS(3245), - [anon_sym___vectorcall] = ACTIONS(3245), - [anon_sym_LBRACE] = ACTIONS(3247), - [anon_sym_RBRACE] = ACTIONS(3247), - [anon_sym_signed] = ACTIONS(3245), - [anon_sym_unsigned] = ACTIONS(3245), - [anon_sym_long] = ACTIONS(3245), - [anon_sym_short] = ACTIONS(3245), - [anon_sym_LBRACK] = ACTIONS(3245), - [anon_sym_static] = ACTIONS(3245), - [anon_sym_register] = ACTIONS(3245), - [anon_sym_inline] = ACTIONS(3245), - [anon_sym___inline] = ACTIONS(3245), - [anon_sym___inline__] = ACTIONS(3245), - [anon_sym___forceinline] = ACTIONS(3245), - [anon_sym_thread_local] = ACTIONS(3245), - [anon_sym___thread] = ACTIONS(3245), - [anon_sym_const] = ACTIONS(3245), - [anon_sym_constexpr] = ACTIONS(3245), - [anon_sym_volatile] = ACTIONS(3245), - [anon_sym_restrict] = ACTIONS(3245), - [anon_sym___restrict__] = ACTIONS(3245), - [anon_sym__Atomic] = ACTIONS(3245), - [anon_sym__Noreturn] = ACTIONS(3245), - [anon_sym_noreturn] = ACTIONS(3245), - [anon_sym_mutable] = ACTIONS(3245), - [anon_sym_constinit] = ACTIONS(3245), - [anon_sym_consteval] = ACTIONS(3245), - [sym_primitive_type] = ACTIONS(3245), - [anon_sym_enum] = ACTIONS(3245), - [anon_sym_class] = ACTIONS(3245), - [anon_sym_struct] = ACTIONS(3245), - [anon_sym_union] = ACTIONS(3245), - [anon_sym_if] = ACTIONS(3245), - [anon_sym_else] = ACTIONS(3245), - [anon_sym_switch] = ACTIONS(3245), - [anon_sym_case] = ACTIONS(3245), - [anon_sym_default] = ACTIONS(3245), - [anon_sym_while] = ACTIONS(3245), - [anon_sym_do] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(3245), - [anon_sym_return] = ACTIONS(3245), - [anon_sym_break] = ACTIONS(3245), - [anon_sym_continue] = ACTIONS(3245), - [anon_sym_goto] = ACTIONS(3245), - [anon_sym___try] = ACTIONS(3245), - [anon_sym___leave] = ACTIONS(3245), - [anon_sym_not] = ACTIONS(3245), - [anon_sym_compl] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_PLUS_PLUS] = ACTIONS(3247), - [anon_sym_sizeof] = ACTIONS(3245), - [anon_sym___alignof__] = ACTIONS(3245), - [anon_sym___alignof] = ACTIONS(3245), - [anon_sym__alignof] = ACTIONS(3245), - [anon_sym_alignof] = ACTIONS(3245), - [anon_sym__Alignof] = ACTIONS(3245), - [anon_sym_offsetof] = ACTIONS(3245), - [anon_sym__Generic] = ACTIONS(3245), - [anon_sym_asm] = ACTIONS(3245), - [anon_sym___asm__] = ACTIONS(3245), - [sym_number_literal] = ACTIONS(3247), - [anon_sym_L_SQUOTE] = ACTIONS(3247), - [anon_sym_u_SQUOTE] = ACTIONS(3247), - [anon_sym_U_SQUOTE] = ACTIONS(3247), - [anon_sym_u8_SQUOTE] = ACTIONS(3247), - [anon_sym_SQUOTE] = ACTIONS(3247), - [anon_sym_L_DQUOTE] = ACTIONS(3247), - [anon_sym_u_DQUOTE] = ACTIONS(3247), - [anon_sym_U_DQUOTE] = ACTIONS(3247), - [anon_sym_u8_DQUOTE] = ACTIONS(3247), - [anon_sym_DQUOTE] = ACTIONS(3247), - [sym_true] = ACTIONS(3245), - [sym_false] = ACTIONS(3245), - [anon_sym_NULL] = ACTIONS(3245), - [anon_sym_nullptr] = ACTIONS(3245), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3245), - [anon_sym_decltype] = ACTIONS(3245), - [anon_sym_virtual] = ACTIONS(3245), - [anon_sym_alignas] = ACTIONS(3245), - [anon_sym_explicit] = ACTIONS(3245), - [anon_sym_typename] = ACTIONS(3245), - [anon_sym_template] = ACTIONS(3245), - [anon_sym_operator] = ACTIONS(3245), - [anon_sym_try] = ACTIONS(3245), - [anon_sym_delete] = ACTIONS(3245), - [anon_sym_throw] = ACTIONS(3245), - [anon_sym_namespace] = ACTIONS(3245), - [anon_sym_using] = ACTIONS(3245), - [anon_sym_static_assert] = ACTIONS(3245), - [anon_sym_concept] = ACTIONS(3245), - [anon_sym_co_return] = ACTIONS(3245), - [anon_sym_co_yield] = ACTIONS(3245), - [anon_sym_R_DQUOTE] = ACTIONS(3247), - [anon_sym_LR_DQUOTE] = ACTIONS(3247), - [anon_sym_uR_DQUOTE] = ACTIONS(3247), - [anon_sym_UR_DQUOTE] = ACTIONS(3247), - [anon_sym_u8R_DQUOTE] = ACTIONS(3247), - [anon_sym_co_await] = ACTIONS(3245), - [anon_sym_new] = ACTIONS(3245), - [anon_sym_requires] = ACTIONS(3245), - [sym_this] = ACTIONS(3245), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3247), - [sym_semgrep_named_ellipsis] = ACTIONS(3247), - }, - [604] = { - [sym_identifier] = ACTIONS(3179), - [aux_sym_preproc_include_token1] = ACTIONS(3179), - [aux_sym_preproc_def_token1] = ACTIONS(3179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3181), - [aux_sym_preproc_if_token1] = ACTIONS(3179), - [aux_sym_preproc_if_token2] = ACTIONS(3179), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3179), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3179), - [sym_preproc_directive] = ACTIONS(3179), - [anon_sym_LPAREN2] = ACTIONS(3181), - [anon_sym_BANG] = ACTIONS(3181), - [anon_sym_TILDE] = ACTIONS(3181), - [anon_sym_DASH] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_STAR] = ACTIONS(3181), - [anon_sym_AMP_AMP] = ACTIONS(3181), - [anon_sym_AMP] = ACTIONS(3179), - [anon_sym_SEMI] = ACTIONS(3181), - [anon_sym___extension__] = ACTIONS(3179), - [anon_sym_typedef] = ACTIONS(3179), - [anon_sym_extern] = ACTIONS(3179), - [anon_sym___attribute__] = ACTIONS(3179), - [anon_sym_COLON_COLON] = ACTIONS(3181), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3181), - [anon_sym___declspec] = ACTIONS(3179), - [anon_sym___based] = ACTIONS(3179), - [anon_sym___cdecl] = ACTIONS(3179), - [anon_sym___clrcall] = ACTIONS(3179), - [anon_sym___stdcall] = ACTIONS(3179), - [anon_sym___fastcall] = ACTIONS(3179), - [anon_sym___thiscall] = ACTIONS(3179), - [anon_sym___vectorcall] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3181), - [anon_sym_signed] = ACTIONS(3179), - [anon_sym_unsigned] = ACTIONS(3179), - [anon_sym_long] = ACTIONS(3179), - [anon_sym_short] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_static] = ACTIONS(3179), - [anon_sym_register] = ACTIONS(3179), - [anon_sym_inline] = ACTIONS(3179), - [anon_sym___inline] = ACTIONS(3179), - [anon_sym___inline__] = ACTIONS(3179), - [anon_sym___forceinline] = ACTIONS(3179), - [anon_sym_thread_local] = ACTIONS(3179), - [anon_sym___thread] = ACTIONS(3179), - [anon_sym_const] = ACTIONS(3179), - [anon_sym_constexpr] = ACTIONS(3179), - [anon_sym_volatile] = ACTIONS(3179), - [anon_sym_restrict] = ACTIONS(3179), - [anon_sym___restrict__] = ACTIONS(3179), - [anon_sym__Atomic] = ACTIONS(3179), - [anon_sym__Noreturn] = ACTIONS(3179), - [anon_sym_noreturn] = ACTIONS(3179), - [anon_sym_mutable] = ACTIONS(3179), - [anon_sym_constinit] = ACTIONS(3179), - [anon_sym_consteval] = ACTIONS(3179), - [sym_primitive_type] = ACTIONS(3179), - [anon_sym_enum] = ACTIONS(3179), - [anon_sym_class] = ACTIONS(3179), - [anon_sym_struct] = ACTIONS(3179), - [anon_sym_union] = ACTIONS(3179), - [anon_sym_if] = ACTIONS(3179), - [anon_sym_else] = ACTIONS(3179), - [anon_sym_switch] = ACTIONS(3179), - [anon_sym_case] = ACTIONS(3179), - [anon_sym_default] = ACTIONS(3179), - [anon_sym_while] = ACTIONS(3179), - [anon_sym_do] = ACTIONS(3179), - [anon_sym_for] = ACTIONS(3179), - [anon_sym_return] = ACTIONS(3179), - [anon_sym_break] = ACTIONS(3179), - [anon_sym_continue] = ACTIONS(3179), - [anon_sym_goto] = ACTIONS(3179), - [anon_sym___try] = ACTIONS(3179), - [anon_sym___leave] = ACTIONS(3179), - [anon_sym_not] = ACTIONS(3179), - [anon_sym_compl] = ACTIONS(3179), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_sizeof] = ACTIONS(3179), - [anon_sym___alignof__] = ACTIONS(3179), - [anon_sym___alignof] = ACTIONS(3179), - [anon_sym__alignof] = ACTIONS(3179), - [anon_sym_alignof] = ACTIONS(3179), - [anon_sym__Alignof] = ACTIONS(3179), - [anon_sym_offsetof] = ACTIONS(3179), - [anon_sym__Generic] = ACTIONS(3179), - [anon_sym_asm] = ACTIONS(3179), - [anon_sym___asm__] = ACTIONS(3179), - [sym_number_literal] = ACTIONS(3181), - [anon_sym_L_SQUOTE] = ACTIONS(3181), - [anon_sym_u_SQUOTE] = ACTIONS(3181), - [anon_sym_U_SQUOTE] = ACTIONS(3181), - [anon_sym_u8_SQUOTE] = ACTIONS(3181), - [anon_sym_SQUOTE] = ACTIONS(3181), - [anon_sym_L_DQUOTE] = ACTIONS(3181), - [anon_sym_u_DQUOTE] = ACTIONS(3181), - [anon_sym_U_DQUOTE] = ACTIONS(3181), - [anon_sym_u8_DQUOTE] = ACTIONS(3181), - [anon_sym_DQUOTE] = ACTIONS(3181), - [sym_true] = ACTIONS(3179), - [sym_false] = ACTIONS(3179), - [anon_sym_NULL] = ACTIONS(3179), - [anon_sym_nullptr] = ACTIONS(3179), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3179), - [anon_sym_decltype] = ACTIONS(3179), - [anon_sym_virtual] = ACTIONS(3179), - [anon_sym_alignas] = ACTIONS(3179), - [anon_sym_explicit] = ACTIONS(3179), - [anon_sym_typename] = ACTIONS(3179), - [anon_sym_template] = ACTIONS(3179), - [anon_sym_operator] = ACTIONS(3179), - [anon_sym_try] = ACTIONS(3179), - [anon_sym_delete] = ACTIONS(3179), - [anon_sym_throw] = ACTIONS(3179), - [anon_sym_namespace] = ACTIONS(3179), - [anon_sym_using] = ACTIONS(3179), - [anon_sym_static_assert] = ACTIONS(3179), - [anon_sym_concept] = ACTIONS(3179), - [anon_sym_co_return] = ACTIONS(3179), - [anon_sym_co_yield] = ACTIONS(3179), - [anon_sym_R_DQUOTE] = ACTIONS(3181), - [anon_sym_LR_DQUOTE] = ACTIONS(3181), - [anon_sym_uR_DQUOTE] = ACTIONS(3181), - [anon_sym_UR_DQUOTE] = ACTIONS(3181), - [anon_sym_u8R_DQUOTE] = ACTIONS(3181), - [anon_sym_co_await] = ACTIONS(3179), - [anon_sym_new] = ACTIONS(3179), - [anon_sym_requires] = ACTIONS(3179), - [sym_this] = ACTIONS(3179), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3181), - [sym_semgrep_named_ellipsis] = ACTIONS(3181), + [643] = { + [sym_identifier] = ACTIONS(3115), + [aux_sym_preproc_include_token1] = ACTIONS(3115), + [aux_sym_preproc_def_token1] = ACTIONS(3115), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3117), + [aux_sym_preproc_if_token1] = ACTIONS(3115), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3115), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3115), + [sym_preproc_directive] = ACTIONS(3115), + [anon_sym_LPAREN2] = ACTIONS(3117), + [anon_sym_BANG] = ACTIONS(3117), + [anon_sym_TILDE] = ACTIONS(3117), + [anon_sym_DASH] = ACTIONS(3115), + [anon_sym_PLUS] = ACTIONS(3115), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP_AMP] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3115), + [anon_sym_SEMI] = ACTIONS(3117), + [anon_sym___extension__] = ACTIONS(3115), + [anon_sym_typedef] = ACTIONS(3115), + [anon_sym_extern] = ACTIONS(3115), + [anon_sym___attribute__] = ACTIONS(3115), + [anon_sym_COLON_COLON] = ACTIONS(3117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3117), + [anon_sym___declspec] = ACTIONS(3115), + [anon_sym___based] = ACTIONS(3115), + [anon_sym___cdecl] = ACTIONS(3115), + [anon_sym___clrcall] = ACTIONS(3115), + [anon_sym___stdcall] = ACTIONS(3115), + [anon_sym___fastcall] = ACTIONS(3115), + [anon_sym___thiscall] = ACTIONS(3115), + [anon_sym___vectorcall] = ACTIONS(3115), + [anon_sym_LBRACE] = ACTIONS(3117), + [anon_sym_RBRACE] = ACTIONS(3117), + [anon_sym_signed] = ACTIONS(3115), + [anon_sym_unsigned] = ACTIONS(3115), + [anon_sym_long] = ACTIONS(3115), + [anon_sym_short] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3115), + [anon_sym_static] = ACTIONS(3115), + [anon_sym_register] = ACTIONS(3115), + [anon_sym_inline] = ACTIONS(3115), + [anon_sym___inline] = ACTIONS(3115), + [anon_sym___inline__] = ACTIONS(3115), + [anon_sym___forceinline] = ACTIONS(3115), + [anon_sym_thread_local] = ACTIONS(3115), + [anon_sym___thread] = ACTIONS(3115), + [anon_sym_const] = ACTIONS(3115), + [anon_sym_constexpr] = ACTIONS(3115), + [anon_sym_volatile] = ACTIONS(3115), + [anon_sym_restrict] = ACTIONS(3115), + [anon_sym___restrict__] = ACTIONS(3115), + [anon_sym__Atomic] = ACTIONS(3115), + [anon_sym__Noreturn] = ACTIONS(3115), + [anon_sym_noreturn] = ACTIONS(3115), + [anon_sym_mutable] = ACTIONS(3115), + [anon_sym_constinit] = ACTIONS(3115), + [anon_sym_consteval] = ACTIONS(3115), + [sym_primitive_type] = ACTIONS(3115), + [anon_sym_enum] = ACTIONS(3115), + [anon_sym_class] = ACTIONS(3115), + [anon_sym_struct] = ACTIONS(3115), + [anon_sym_union] = ACTIONS(3115), + [anon_sym_if] = ACTIONS(3115), + [anon_sym_else] = ACTIONS(3115), + [anon_sym_switch] = ACTIONS(3115), + [anon_sym_case] = ACTIONS(3115), + [anon_sym_default] = ACTIONS(3115), + [anon_sym_while] = ACTIONS(3115), + [anon_sym_do] = ACTIONS(3115), + [anon_sym_for] = ACTIONS(3115), + [anon_sym_return] = ACTIONS(3115), + [anon_sym_break] = ACTIONS(3115), + [anon_sym_continue] = ACTIONS(3115), + [anon_sym_goto] = ACTIONS(3115), + [anon_sym___try] = ACTIONS(3115), + [anon_sym___leave] = ACTIONS(3115), + [anon_sym_not] = ACTIONS(3115), + [anon_sym_compl] = ACTIONS(3115), + [anon_sym_DASH_DASH] = ACTIONS(3117), + [anon_sym_PLUS_PLUS] = ACTIONS(3117), + [anon_sym_sizeof] = ACTIONS(3115), + [anon_sym___alignof__] = ACTIONS(3115), + [anon_sym___alignof] = ACTIONS(3115), + [anon_sym__alignof] = ACTIONS(3115), + [anon_sym_alignof] = ACTIONS(3115), + [anon_sym__Alignof] = ACTIONS(3115), + [anon_sym_offsetof] = ACTIONS(3115), + [anon_sym__Generic] = ACTIONS(3115), + [anon_sym_asm] = ACTIONS(3115), + [anon_sym___asm__] = ACTIONS(3115), + [sym_number_literal] = ACTIONS(3117), + [anon_sym_L_SQUOTE] = ACTIONS(3117), + [anon_sym_u_SQUOTE] = ACTIONS(3117), + [anon_sym_U_SQUOTE] = ACTIONS(3117), + [anon_sym_u8_SQUOTE] = ACTIONS(3117), + [anon_sym_SQUOTE] = ACTIONS(3117), + [anon_sym_L_DQUOTE] = ACTIONS(3117), + [anon_sym_u_DQUOTE] = ACTIONS(3117), + [anon_sym_U_DQUOTE] = ACTIONS(3117), + [anon_sym_u8_DQUOTE] = ACTIONS(3117), + [anon_sym_DQUOTE] = ACTIONS(3117), + [sym_true] = ACTIONS(3115), + [sym_false] = ACTIONS(3115), + [anon_sym_NULL] = ACTIONS(3115), + [anon_sym_nullptr] = ACTIONS(3115), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3115), + [anon_sym_decltype] = ACTIONS(3115), + [anon_sym_virtual] = ACTIONS(3115), + [anon_sym_alignas] = ACTIONS(3115), + [anon_sym_explicit] = ACTIONS(3115), + [anon_sym_typename] = ACTIONS(3115), + [anon_sym_template] = ACTIONS(3115), + [anon_sym_operator] = ACTIONS(3115), + [anon_sym_try] = ACTIONS(3115), + [anon_sym_delete] = ACTIONS(3115), + [anon_sym_throw] = ACTIONS(3115), + [anon_sym_namespace] = ACTIONS(3115), + [anon_sym_using] = ACTIONS(3115), + [anon_sym_static_assert] = ACTIONS(3115), + [anon_sym_concept] = ACTIONS(3115), + [anon_sym_co_return] = ACTIONS(3115), + [anon_sym_co_yield] = ACTIONS(3115), + [anon_sym_R_DQUOTE] = ACTIONS(3117), + [anon_sym_LR_DQUOTE] = ACTIONS(3117), + [anon_sym_uR_DQUOTE] = ACTIONS(3117), + [anon_sym_UR_DQUOTE] = ACTIONS(3117), + [anon_sym_u8R_DQUOTE] = ACTIONS(3117), + [anon_sym_co_await] = ACTIONS(3115), + [anon_sym_new] = ACTIONS(3115), + [anon_sym_requires] = ACTIONS(3115), + [sym_this] = ACTIONS(3115), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3117), + [sym_semgrep_named_ellipsis] = ACTIONS(3117), }, - [605] = { - [sym_identifier] = ACTIONS(3179), - [aux_sym_preproc_include_token1] = ACTIONS(3179), - [aux_sym_preproc_def_token1] = ACTIONS(3179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3181), - [aux_sym_preproc_if_token1] = ACTIONS(3179), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3179), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3179), - [sym_preproc_directive] = ACTIONS(3179), - [anon_sym_LPAREN2] = ACTIONS(3181), - [anon_sym_BANG] = ACTIONS(3181), - [anon_sym_TILDE] = ACTIONS(3181), - [anon_sym_DASH] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_STAR] = ACTIONS(3181), - [anon_sym_AMP_AMP] = ACTIONS(3181), - [anon_sym_AMP] = ACTIONS(3179), - [anon_sym_SEMI] = ACTIONS(3181), - [anon_sym___extension__] = ACTIONS(3179), - [anon_sym_typedef] = ACTIONS(3179), - [anon_sym_extern] = ACTIONS(3179), - [anon_sym___attribute__] = ACTIONS(3179), - [anon_sym_COLON_COLON] = ACTIONS(3181), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3181), - [anon_sym___declspec] = ACTIONS(3179), - [anon_sym___based] = ACTIONS(3179), - [anon_sym___cdecl] = ACTIONS(3179), - [anon_sym___clrcall] = ACTIONS(3179), - [anon_sym___stdcall] = ACTIONS(3179), - [anon_sym___fastcall] = ACTIONS(3179), - [anon_sym___thiscall] = ACTIONS(3179), - [anon_sym___vectorcall] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3181), - [anon_sym_RBRACE] = ACTIONS(3181), - [anon_sym_signed] = ACTIONS(3179), - [anon_sym_unsigned] = ACTIONS(3179), - [anon_sym_long] = ACTIONS(3179), - [anon_sym_short] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_static] = ACTIONS(3179), - [anon_sym_register] = ACTIONS(3179), - [anon_sym_inline] = ACTIONS(3179), - [anon_sym___inline] = ACTIONS(3179), - [anon_sym___inline__] = ACTIONS(3179), - [anon_sym___forceinline] = ACTIONS(3179), - [anon_sym_thread_local] = ACTIONS(3179), - [anon_sym___thread] = ACTIONS(3179), - [anon_sym_const] = ACTIONS(3179), - [anon_sym_constexpr] = ACTIONS(3179), - [anon_sym_volatile] = ACTIONS(3179), - [anon_sym_restrict] = ACTIONS(3179), - [anon_sym___restrict__] = ACTIONS(3179), - [anon_sym__Atomic] = ACTIONS(3179), - [anon_sym__Noreturn] = ACTIONS(3179), - [anon_sym_noreturn] = ACTIONS(3179), - [anon_sym_mutable] = ACTIONS(3179), - [anon_sym_constinit] = ACTIONS(3179), - [anon_sym_consteval] = ACTIONS(3179), - [sym_primitive_type] = ACTIONS(3179), - [anon_sym_enum] = ACTIONS(3179), - [anon_sym_class] = ACTIONS(3179), - [anon_sym_struct] = ACTIONS(3179), - [anon_sym_union] = ACTIONS(3179), - [anon_sym_if] = ACTIONS(3179), - [anon_sym_else] = ACTIONS(3179), - [anon_sym_switch] = ACTIONS(3179), - [anon_sym_case] = ACTIONS(3179), - [anon_sym_default] = ACTIONS(3179), - [anon_sym_while] = ACTIONS(3179), - [anon_sym_do] = ACTIONS(3179), - [anon_sym_for] = ACTIONS(3179), - [anon_sym_return] = ACTIONS(3179), - [anon_sym_break] = ACTIONS(3179), - [anon_sym_continue] = ACTIONS(3179), - [anon_sym_goto] = ACTIONS(3179), - [anon_sym___try] = ACTIONS(3179), - [anon_sym___leave] = ACTIONS(3179), - [anon_sym_not] = ACTIONS(3179), - [anon_sym_compl] = ACTIONS(3179), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_sizeof] = ACTIONS(3179), - [anon_sym___alignof__] = ACTIONS(3179), - [anon_sym___alignof] = ACTIONS(3179), - [anon_sym__alignof] = ACTIONS(3179), - [anon_sym_alignof] = ACTIONS(3179), - [anon_sym__Alignof] = ACTIONS(3179), - [anon_sym_offsetof] = ACTIONS(3179), - [anon_sym__Generic] = ACTIONS(3179), - [anon_sym_asm] = ACTIONS(3179), - [anon_sym___asm__] = ACTIONS(3179), - [sym_number_literal] = ACTIONS(3181), - [anon_sym_L_SQUOTE] = ACTIONS(3181), - [anon_sym_u_SQUOTE] = ACTIONS(3181), - [anon_sym_U_SQUOTE] = ACTIONS(3181), - [anon_sym_u8_SQUOTE] = ACTIONS(3181), - [anon_sym_SQUOTE] = ACTIONS(3181), - [anon_sym_L_DQUOTE] = ACTIONS(3181), - [anon_sym_u_DQUOTE] = ACTIONS(3181), - [anon_sym_U_DQUOTE] = ACTIONS(3181), - [anon_sym_u8_DQUOTE] = ACTIONS(3181), - [anon_sym_DQUOTE] = ACTIONS(3181), - [sym_true] = ACTIONS(3179), - [sym_false] = ACTIONS(3179), - [anon_sym_NULL] = ACTIONS(3179), - [anon_sym_nullptr] = ACTIONS(3179), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3179), - [anon_sym_decltype] = ACTIONS(3179), - [anon_sym_virtual] = ACTIONS(3179), - [anon_sym_alignas] = ACTIONS(3179), - [anon_sym_explicit] = ACTIONS(3179), - [anon_sym_typename] = ACTIONS(3179), - [anon_sym_template] = ACTIONS(3179), - [anon_sym_operator] = ACTIONS(3179), - [anon_sym_try] = ACTIONS(3179), - [anon_sym_delete] = ACTIONS(3179), - [anon_sym_throw] = ACTIONS(3179), - [anon_sym_namespace] = ACTIONS(3179), - [anon_sym_using] = ACTIONS(3179), - [anon_sym_static_assert] = ACTIONS(3179), - [anon_sym_concept] = ACTIONS(3179), - [anon_sym_co_return] = ACTIONS(3179), - [anon_sym_co_yield] = ACTIONS(3179), - [anon_sym_R_DQUOTE] = ACTIONS(3181), - [anon_sym_LR_DQUOTE] = ACTIONS(3181), - [anon_sym_uR_DQUOTE] = ACTIONS(3181), - [anon_sym_UR_DQUOTE] = ACTIONS(3181), - [anon_sym_u8R_DQUOTE] = ACTIONS(3181), - [anon_sym_co_await] = ACTIONS(3179), - [anon_sym_new] = ACTIONS(3179), - [anon_sym_requires] = ACTIONS(3179), - [sym_this] = ACTIONS(3179), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3181), - [sym_semgrep_named_ellipsis] = ACTIONS(3181), + [644] = { + [sym_identifier] = ACTIONS(3131), + [aux_sym_preproc_include_token1] = ACTIONS(3131), + [aux_sym_preproc_def_token1] = ACTIONS(3131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3133), + [aux_sym_preproc_if_token1] = ACTIONS(3131), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3131), + [sym_preproc_directive] = ACTIONS(3131), + [anon_sym_LPAREN2] = ACTIONS(3133), + [anon_sym_BANG] = ACTIONS(3133), + [anon_sym_TILDE] = ACTIONS(3133), + [anon_sym_DASH] = ACTIONS(3131), + [anon_sym_PLUS] = ACTIONS(3131), + [anon_sym_STAR] = ACTIONS(3133), + [anon_sym_AMP_AMP] = ACTIONS(3133), + [anon_sym_AMP] = ACTIONS(3131), + [anon_sym_SEMI] = ACTIONS(3133), + [anon_sym___extension__] = ACTIONS(3131), + [anon_sym_typedef] = ACTIONS(3131), + [anon_sym_extern] = ACTIONS(3131), + [anon_sym___attribute__] = ACTIONS(3131), + [anon_sym_COLON_COLON] = ACTIONS(3133), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3133), + [anon_sym___declspec] = ACTIONS(3131), + [anon_sym___based] = ACTIONS(3131), + [anon_sym___cdecl] = ACTIONS(3131), + [anon_sym___clrcall] = ACTIONS(3131), + [anon_sym___stdcall] = ACTIONS(3131), + [anon_sym___fastcall] = ACTIONS(3131), + [anon_sym___thiscall] = ACTIONS(3131), + [anon_sym___vectorcall] = ACTIONS(3131), + [anon_sym_LBRACE] = ACTIONS(3133), + [anon_sym_RBRACE] = ACTIONS(3133), + [anon_sym_signed] = ACTIONS(3131), + [anon_sym_unsigned] = ACTIONS(3131), + [anon_sym_long] = ACTIONS(3131), + [anon_sym_short] = ACTIONS(3131), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_static] = ACTIONS(3131), + [anon_sym_register] = ACTIONS(3131), + [anon_sym_inline] = ACTIONS(3131), + [anon_sym___inline] = ACTIONS(3131), + [anon_sym___inline__] = ACTIONS(3131), + [anon_sym___forceinline] = ACTIONS(3131), + [anon_sym_thread_local] = ACTIONS(3131), + [anon_sym___thread] = ACTIONS(3131), + [anon_sym_const] = ACTIONS(3131), + [anon_sym_constexpr] = ACTIONS(3131), + [anon_sym_volatile] = ACTIONS(3131), + [anon_sym_restrict] = ACTIONS(3131), + [anon_sym___restrict__] = ACTIONS(3131), + [anon_sym__Atomic] = ACTIONS(3131), + [anon_sym__Noreturn] = ACTIONS(3131), + [anon_sym_noreturn] = ACTIONS(3131), + [anon_sym_mutable] = ACTIONS(3131), + [anon_sym_constinit] = ACTIONS(3131), + [anon_sym_consteval] = ACTIONS(3131), + [sym_primitive_type] = ACTIONS(3131), + [anon_sym_enum] = ACTIONS(3131), + [anon_sym_class] = ACTIONS(3131), + [anon_sym_struct] = ACTIONS(3131), + [anon_sym_union] = ACTIONS(3131), + [anon_sym_if] = ACTIONS(3131), + [anon_sym_else] = ACTIONS(3131), + [anon_sym_switch] = ACTIONS(3131), + [anon_sym_case] = ACTIONS(3131), + [anon_sym_default] = ACTIONS(3131), + [anon_sym_while] = ACTIONS(3131), + [anon_sym_do] = ACTIONS(3131), + [anon_sym_for] = ACTIONS(3131), + [anon_sym_return] = ACTIONS(3131), + [anon_sym_break] = ACTIONS(3131), + [anon_sym_continue] = ACTIONS(3131), + [anon_sym_goto] = ACTIONS(3131), + [anon_sym___try] = ACTIONS(3131), + [anon_sym___leave] = ACTIONS(3131), + [anon_sym_not] = ACTIONS(3131), + [anon_sym_compl] = ACTIONS(3131), + [anon_sym_DASH_DASH] = ACTIONS(3133), + [anon_sym_PLUS_PLUS] = ACTIONS(3133), + [anon_sym_sizeof] = ACTIONS(3131), + [anon_sym___alignof__] = ACTIONS(3131), + [anon_sym___alignof] = ACTIONS(3131), + [anon_sym__alignof] = ACTIONS(3131), + [anon_sym_alignof] = ACTIONS(3131), + [anon_sym__Alignof] = ACTIONS(3131), + [anon_sym_offsetof] = ACTIONS(3131), + [anon_sym__Generic] = ACTIONS(3131), + [anon_sym_asm] = ACTIONS(3131), + [anon_sym___asm__] = ACTIONS(3131), + [sym_number_literal] = ACTIONS(3133), + [anon_sym_L_SQUOTE] = ACTIONS(3133), + [anon_sym_u_SQUOTE] = ACTIONS(3133), + [anon_sym_U_SQUOTE] = ACTIONS(3133), + [anon_sym_u8_SQUOTE] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3133), + [anon_sym_L_DQUOTE] = ACTIONS(3133), + [anon_sym_u_DQUOTE] = ACTIONS(3133), + [anon_sym_U_DQUOTE] = ACTIONS(3133), + [anon_sym_u8_DQUOTE] = ACTIONS(3133), + [anon_sym_DQUOTE] = ACTIONS(3133), + [sym_true] = ACTIONS(3131), + [sym_false] = ACTIONS(3131), + [anon_sym_NULL] = ACTIONS(3131), + [anon_sym_nullptr] = ACTIONS(3131), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3131), + [anon_sym_decltype] = ACTIONS(3131), + [anon_sym_virtual] = ACTIONS(3131), + [anon_sym_alignas] = ACTIONS(3131), + [anon_sym_explicit] = ACTIONS(3131), + [anon_sym_typename] = ACTIONS(3131), + [anon_sym_template] = ACTIONS(3131), + [anon_sym_operator] = ACTIONS(3131), + [anon_sym_try] = ACTIONS(3131), + [anon_sym_delete] = ACTIONS(3131), + [anon_sym_throw] = ACTIONS(3131), + [anon_sym_namespace] = ACTIONS(3131), + [anon_sym_using] = ACTIONS(3131), + [anon_sym_static_assert] = ACTIONS(3131), + [anon_sym_concept] = ACTIONS(3131), + [anon_sym_co_return] = ACTIONS(3131), + [anon_sym_co_yield] = ACTIONS(3131), + [anon_sym_R_DQUOTE] = ACTIONS(3133), + [anon_sym_LR_DQUOTE] = ACTIONS(3133), + [anon_sym_uR_DQUOTE] = ACTIONS(3133), + [anon_sym_UR_DQUOTE] = ACTIONS(3133), + [anon_sym_u8R_DQUOTE] = ACTIONS(3133), + [anon_sym_co_await] = ACTIONS(3131), + [anon_sym_new] = ACTIONS(3131), + [anon_sym_requires] = ACTIONS(3131), + [sym_this] = ACTIONS(3131), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3133), + [sym_semgrep_named_ellipsis] = ACTIONS(3133), }, - [606] = { - [sym_identifier] = ACTIONS(3215), - [aux_sym_preproc_include_token1] = ACTIONS(3215), - [aux_sym_preproc_def_token1] = ACTIONS(3215), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3217), - [aux_sym_preproc_if_token1] = ACTIONS(3215), - [aux_sym_preproc_if_token2] = ACTIONS(3215), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3215), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3215), - [sym_preproc_directive] = ACTIONS(3215), - [anon_sym_LPAREN2] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_STAR] = ACTIONS(3217), - [anon_sym_AMP_AMP] = ACTIONS(3217), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym___extension__] = ACTIONS(3215), - [anon_sym_typedef] = ACTIONS(3215), - [anon_sym_extern] = ACTIONS(3215), - [anon_sym___attribute__] = ACTIONS(3215), - [anon_sym_COLON_COLON] = ACTIONS(3217), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3217), - [anon_sym___declspec] = ACTIONS(3215), - [anon_sym___based] = ACTIONS(3215), - [anon_sym___cdecl] = ACTIONS(3215), - [anon_sym___clrcall] = ACTIONS(3215), - [anon_sym___stdcall] = ACTIONS(3215), - [anon_sym___fastcall] = ACTIONS(3215), - [anon_sym___thiscall] = ACTIONS(3215), - [anon_sym___vectorcall] = ACTIONS(3215), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_signed] = ACTIONS(3215), - [anon_sym_unsigned] = ACTIONS(3215), - [anon_sym_long] = ACTIONS(3215), - [anon_sym_short] = ACTIONS(3215), - [anon_sym_LBRACK] = ACTIONS(3215), - [anon_sym_static] = ACTIONS(3215), - [anon_sym_register] = ACTIONS(3215), - [anon_sym_inline] = ACTIONS(3215), - [anon_sym___inline] = ACTIONS(3215), - [anon_sym___inline__] = ACTIONS(3215), - [anon_sym___forceinline] = ACTIONS(3215), - [anon_sym_thread_local] = ACTIONS(3215), - [anon_sym___thread] = ACTIONS(3215), - [anon_sym_const] = ACTIONS(3215), - [anon_sym_constexpr] = ACTIONS(3215), - [anon_sym_volatile] = ACTIONS(3215), - [anon_sym_restrict] = ACTIONS(3215), - [anon_sym___restrict__] = ACTIONS(3215), - [anon_sym__Atomic] = ACTIONS(3215), - [anon_sym__Noreturn] = ACTIONS(3215), - [anon_sym_noreturn] = ACTIONS(3215), - [anon_sym_mutable] = ACTIONS(3215), - [anon_sym_constinit] = ACTIONS(3215), - [anon_sym_consteval] = ACTIONS(3215), - [sym_primitive_type] = ACTIONS(3215), - [anon_sym_enum] = ACTIONS(3215), - [anon_sym_class] = ACTIONS(3215), - [anon_sym_struct] = ACTIONS(3215), - [anon_sym_union] = ACTIONS(3215), - [anon_sym_if] = ACTIONS(3215), - [anon_sym_else] = ACTIONS(3215), - [anon_sym_switch] = ACTIONS(3215), - [anon_sym_case] = ACTIONS(3215), - [anon_sym_default] = ACTIONS(3215), - [anon_sym_while] = ACTIONS(3215), - [anon_sym_do] = ACTIONS(3215), - [anon_sym_for] = ACTIONS(3215), - [anon_sym_return] = ACTIONS(3215), - [anon_sym_break] = ACTIONS(3215), - [anon_sym_continue] = ACTIONS(3215), - [anon_sym_goto] = ACTIONS(3215), - [anon_sym___try] = ACTIONS(3215), - [anon_sym___leave] = ACTIONS(3215), - [anon_sym_not] = ACTIONS(3215), - [anon_sym_compl] = ACTIONS(3215), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_sizeof] = ACTIONS(3215), - [anon_sym___alignof__] = ACTIONS(3215), - [anon_sym___alignof] = ACTIONS(3215), - [anon_sym__alignof] = ACTIONS(3215), - [anon_sym_alignof] = ACTIONS(3215), - [anon_sym__Alignof] = ACTIONS(3215), - [anon_sym_offsetof] = ACTIONS(3215), - [anon_sym__Generic] = ACTIONS(3215), - [anon_sym_asm] = ACTIONS(3215), - [anon_sym___asm__] = ACTIONS(3215), - [sym_number_literal] = ACTIONS(3217), - [anon_sym_L_SQUOTE] = ACTIONS(3217), - [anon_sym_u_SQUOTE] = ACTIONS(3217), - [anon_sym_U_SQUOTE] = ACTIONS(3217), - [anon_sym_u8_SQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_L_DQUOTE] = ACTIONS(3217), - [anon_sym_u_DQUOTE] = ACTIONS(3217), - [anon_sym_U_DQUOTE] = ACTIONS(3217), - [anon_sym_u8_DQUOTE] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [sym_true] = ACTIONS(3215), - [sym_false] = ACTIONS(3215), - [anon_sym_NULL] = ACTIONS(3215), - [anon_sym_nullptr] = ACTIONS(3215), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3215), - [anon_sym_decltype] = ACTIONS(3215), - [anon_sym_virtual] = ACTIONS(3215), - [anon_sym_alignas] = ACTIONS(3215), - [anon_sym_explicit] = ACTIONS(3215), - [anon_sym_typename] = ACTIONS(3215), - [anon_sym_template] = ACTIONS(3215), - [anon_sym_operator] = ACTIONS(3215), - [anon_sym_try] = ACTIONS(3215), - [anon_sym_delete] = ACTIONS(3215), - [anon_sym_throw] = ACTIONS(3215), - [anon_sym_namespace] = ACTIONS(3215), - [anon_sym_using] = ACTIONS(3215), - [anon_sym_static_assert] = ACTIONS(3215), - [anon_sym_concept] = ACTIONS(3215), - [anon_sym_co_return] = ACTIONS(3215), - [anon_sym_co_yield] = ACTIONS(3215), - [anon_sym_R_DQUOTE] = ACTIONS(3217), - [anon_sym_LR_DQUOTE] = ACTIONS(3217), - [anon_sym_uR_DQUOTE] = ACTIONS(3217), - [anon_sym_UR_DQUOTE] = ACTIONS(3217), - [anon_sym_u8R_DQUOTE] = ACTIONS(3217), - [anon_sym_co_await] = ACTIONS(3215), - [anon_sym_new] = ACTIONS(3215), - [anon_sym_requires] = ACTIONS(3215), - [sym_this] = ACTIONS(3215), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3217), - [sym_semgrep_named_ellipsis] = ACTIONS(3217), + [645] = { + [sym_identifier] = ACTIONS(3151), + [aux_sym_preproc_include_token1] = ACTIONS(3151), + [aux_sym_preproc_def_token1] = ACTIONS(3151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3153), + [aux_sym_preproc_if_token1] = ACTIONS(3151), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3151), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3151), + [sym_preproc_directive] = ACTIONS(3151), + [anon_sym_LPAREN2] = ACTIONS(3153), + [anon_sym_BANG] = ACTIONS(3153), + [anon_sym_TILDE] = ACTIONS(3153), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_AMP_AMP] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_SEMI] = ACTIONS(3153), + [anon_sym___extension__] = ACTIONS(3151), + [anon_sym_typedef] = ACTIONS(3151), + [anon_sym_extern] = ACTIONS(3151), + [anon_sym___attribute__] = ACTIONS(3151), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3153), + [anon_sym___declspec] = ACTIONS(3151), + [anon_sym___based] = ACTIONS(3151), + [anon_sym___cdecl] = ACTIONS(3151), + [anon_sym___clrcall] = ACTIONS(3151), + [anon_sym___stdcall] = ACTIONS(3151), + [anon_sym___fastcall] = ACTIONS(3151), + [anon_sym___thiscall] = ACTIONS(3151), + [anon_sym___vectorcall] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_RBRACE] = ACTIONS(3153), + [anon_sym_signed] = ACTIONS(3151), + [anon_sym_unsigned] = ACTIONS(3151), + [anon_sym_long] = ACTIONS(3151), + [anon_sym_short] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_static] = ACTIONS(3151), + [anon_sym_register] = ACTIONS(3151), + [anon_sym_inline] = ACTIONS(3151), + [anon_sym___inline] = ACTIONS(3151), + [anon_sym___inline__] = ACTIONS(3151), + [anon_sym___forceinline] = ACTIONS(3151), + [anon_sym_thread_local] = ACTIONS(3151), + [anon_sym___thread] = ACTIONS(3151), + [anon_sym_const] = ACTIONS(3151), + [anon_sym_constexpr] = ACTIONS(3151), + [anon_sym_volatile] = ACTIONS(3151), + [anon_sym_restrict] = ACTIONS(3151), + [anon_sym___restrict__] = ACTIONS(3151), + [anon_sym__Atomic] = ACTIONS(3151), + [anon_sym__Noreturn] = ACTIONS(3151), + [anon_sym_noreturn] = ACTIONS(3151), + [anon_sym_mutable] = ACTIONS(3151), + [anon_sym_constinit] = ACTIONS(3151), + [anon_sym_consteval] = ACTIONS(3151), + [sym_primitive_type] = ACTIONS(3151), + [anon_sym_enum] = ACTIONS(3151), + [anon_sym_class] = ACTIONS(3151), + [anon_sym_struct] = ACTIONS(3151), + [anon_sym_union] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_else] = ACTIONS(3151), + [anon_sym_switch] = ACTIONS(3151), + [anon_sym_case] = ACTIONS(3151), + [anon_sym_default] = ACTIONS(3151), + [anon_sym_while] = ACTIONS(3151), + [anon_sym_do] = ACTIONS(3151), + [anon_sym_for] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3151), + [anon_sym_break] = ACTIONS(3151), + [anon_sym_continue] = ACTIONS(3151), + [anon_sym_goto] = ACTIONS(3151), + [anon_sym___try] = ACTIONS(3151), + [anon_sym___leave] = ACTIONS(3151), + [anon_sym_not] = ACTIONS(3151), + [anon_sym_compl] = ACTIONS(3151), + [anon_sym_DASH_DASH] = ACTIONS(3153), + [anon_sym_PLUS_PLUS] = ACTIONS(3153), + [anon_sym_sizeof] = ACTIONS(3151), + [anon_sym___alignof__] = ACTIONS(3151), + [anon_sym___alignof] = ACTIONS(3151), + [anon_sym__alignof] = ACTIONS(3151), + [anon_sym_alignof] = ACTIONS(3151), + [anon_sym__Alignof] = ACTIONS(3151), + [anon_sym_offsetof] = ACTIONS(3151), + [anon_sym__Generic] = ACTIONS(3151), + [anon_sym_asm] = ACTIONS(3151), + [anon_sym___asm__] = ACTIONS(3151), + [sym_number_literal] = ACTIONS(3153), + [anon_sym_L_SQUOTE] = ACTIONS(3153), + [anon_sym_u_SQUOTE] = ACTIONS(3153), + [anon_sym_U_SQUOTE] = ACTIONS(3153), + [anon_sym_u8_SQUOTE] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3153), + [anon_sym_L_DQUOTE] = ACTIONS(3153), + [anon_sym_u_DQUOTE] = ACTIONS(3153), + [anon_sym_U_DQUOTE] = ACTIONS(3153), + [anon_sym_u8_DQUOTE] = ACTIONS(3153), + [anon_sym_DQUOTE] = ACTIONS(3153), + [sym_true] = ACTIONS(3151), + [sym_false] = ACTIONS(3151), + [anon_sym_NULL] = ACTIONS(3151), + [anon_sym_nullptr] = ACTIONS(3151), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3151), + [anon_sym_decltype] = ACTIONS(3151), + [anon_sym_virtual] = ACTIONS(3151), + [anon_sym_alignas] = ACTIONS(3151), + [anon_sym_explicit] = ACTIONS(3151), + [anon_sym_typename] = ACTIONS(3151), + [anon_sym_template] = ACTIONS(3151), + [anon_sym_operator] = ACTIONS(3151), + [anon_sym_try] = ACTIONS(3151), + [anon_sym_delete] = ACTIONS(3151), + [anon_sym_throw] = ACTIONS(3151), + [anon_sym_namespace] = ACTIONS(3151), + [anon_sym_using] = ACTIONS(3151), + [anon_sym_static_assert] = ACTIONS(3151), + [anon_sym_concept] = ACTIONS(3151), + [anon_sym_co_return] = ACTIONS(3151), + [anon_sym_co_yield] = ACTIONS(3151), + [anon_sym_R_DQUOTE] = ACTIONS(3153), + [anon_sym_LR_DQUOTE] = ACTIONS(3153), + [anon_sym_uR_DQUOTE] = ACTIONS(3153), + [anon_sym_UR_DQUOTE] = ACTIONS(3153), + [anon_sym_u8R_DQUOTE] = ACTIONS(3153), + [anon_sym_co_await] = ACTIONS(3151), + [anon_sym_new] = ACTIONS(3151), + [anon_sym_requires] = ACTIONS(3151), + [sym_this] = ACTIONS(3151), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3153), + [sym_semgrep_named_ellipsis] = ACTIONS(3153), }, - [607] = { + [646] = { + [ts_builtin_sym_end] = ACTIONS(3215), + [sym_identifier] = ACTIONS(3213), + [aux_sym_preproc_include_token1] = ACTIONS(3213), + [aux_sym_preproc_def_token1] = ACTIONS(3213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3215), + [aux_sym_preproc_if_token1] = ACTIONS(3213), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3213), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3213), + [sym_preproc_directive] = ACTIONS(3213), + [anon_sym_LPAREN2] = ACTIONS(3215), + [anon_sym_BANG] = ACTIONS(3215), + [anon_sym_TILDE] = ACTIONS(3215), + [anon_sym_DASH] = ACTIONS(3213), + [anon_sym_PLUS] = ACTIONS(3213), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP_AMP] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3213), + [anon_sym_SEMI] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(3213), + [anon_sym_typedef] = ACTIONS(3213), + [anon_sym_extern] = ACTIONS(3213), + [anon_sym___attribute__] = ACTIONS(3213), + [anon_sym_COLON_COLON] = ACTIONS(3215), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3215), + [anon_sym___declspec] = ACTIONS(3213), + [anon_sym___based] = ACTIONS(3213), + [anon_sym___cdecl] = ACTIONS(3213), + [anon_sym___clrcall] = ACTIONS(3213), + [anon_sym___stdcall] = ACTIONS(3213), + [anon_sym___fastcall] = ACTIONS(3213), + [anon_sym___thiscall] = ACTIONS(3213), + [anon_sym___vectorcall] = ACTIONS(3213), + [anon_sym_LBRACE] = ACTIONS(3215), + [anon_sym_signed] = ACTIONS(3213), + [anon_sym_unsigned] = ACTIONS(3213), + [anon_sym_long] = ACTIONS(3213), + [anon_sym_short] = ACTIONS(3213), + [anon_sym_LBRACK] = ACTIONS(3213), + [anon_sym_static] = ACTIONS(3213), + [anon_sym_register] = ACTIONS(3213), + [anon_sym_inline] = ACTIONS(3213), + [anon_sym___inline] = ACTIONS(3213), + [anon_sym___inline__] = ACTIONS(3213), + [anon_sym___forceinline] = ACTIONS(3213), + [anon_sym_thread_local] = ACTIONS(3213), + [anon_sym___thread] = ACTIONS(3213), + [anon_sym_const] = ACTIONS(3213), + [anon_sym_constexpr] = ACTIONS(3213), + [anon_sym_volatile] = ACTIONS(3213), + [anon_sym_restrict] = ACTIONS(3213), + [anon_sym___restrict__] = ACTIONS(3213), + [anon_sym__Atomic] = ACTIONS(3213), + [anon_sym__Noreturn] = ACTIONS(3213), + [anon_sym_noreturn] = ACTIONS(3213), + [anon_sym_mutable] = ACTIONS(3213), + [anon_sym_constinit] = ACTIONS(3213), + [anon_sym_consteval] = ACTIONS(3213), + [sym_primitive_type] = ACTIONS(3213), + [anon_sym_enum] = ACTIONS(3213), + [anon_sym_class] = ACTIONS(3213), + [anon_sym_struct] = ACTIONS(3213), + [anon_sym_union] = ACTIONS(3213), + [anon_sym_if] = ACTIONS(3213), + [anon_sym_else] = ACTIONS(3213), + [anon_sym_switch] = ACTIONS(3213), + [anon_sym_case] = ACTIONS(3213), + [anon_sym_default] = ACTIONS(3213), + [anon_sym_while] = ACTIONS(3213), + [anon_sym_do] = ACTIONS(3213), + [anon_sym_for] = ACTIONS(3213), + [anon_sym_return] = ACTIONS(3213), + [anon_sym_break] = ACTIONS(3213), + [anon_sym_continue] = ACTIONS(3213), + [anon_sym_goto] = ACTIONS(3213), + [anon_sym___try] = ACTIONS(3213), + [anon_sym___leave] = ACTIONS(3213), + [anon_sym_not] = ACTIONS(3213), + [anon_sym_compl] = ACTIONS(3213), + [anon_sym_DASH_DASH] = ACTIONS(3215), + [anon_sym_PLUS_PLUS] = ACTIONS(3215), + [anon_sym_sizeof] = ACTIONS(3213), + [anon_sym___alignof__] = ACTIONS(3213), + [anon_sym___alignof] = ACTIONS(3213), + [anon_sym__alignof] = ACTIONS(3213), + [anon_sym_alignof] = ACTIONS(3213), + [anon_sym__Alignof] = ACTIONS(3213), + [anon_sym_offsetof] = ACTIONS(3213), + [anon_sym__Generic] = ACTIONS(3213), + [anon_sym_asm] = ACTIONS(3213), + [anon_sym___asm__] = ACTIONS(3213), + [sym_number_literal] = ACTIONS(3215), + [anon_sym_L_SQUOTE] = ACTIONS(3215), + [anon_sym_u_SQUOTE] = ACTIONS(3215), + [anon_sym_U_SQUOTE] = ACTIONS(3215), + [anon_sym_u8_SQUOTE] = ACTIONS(3215), + [anon_sym_SQUOTE] = ACTIONS(3215), + [anon_sym_L_DQUOTE] = ACTIONS(3215), + [anon_sym_u_DQUOTE] = ACTIONS(3215), + [anon_sym_U_DQUOTE] = ACTIONS(3215), + [anon_sym_u8_DQUOTE] = ACTIONS(3215), + [anon_sym_DQUOTE] = ACTIONS(3215), + [sym_true] = ACTIONS(3213), + [sym_false] = ACTIONS(3213), + [anon_sym_NULL] = ACTIONS(3213), + [anon_sym_nullptr] = ACTIONS(3213), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3213), + [anon_sym_decltype] = ACTIONS(3213), + [anon_sym_virtual] = ACTIONS(3213), + [anon_sym_alignas] = ACTIONS(3213), + [anon_sym_explicit] = ACTIONS(3213), + [anon_sym_typename] = ACTIONS(3213), + [anon_sym_template] = ACTIONS(3213), + [anon_sym_operator] = ACTIONS(3213), + [anon_sym_try] = ACTIONS(3213), + [anon_sym_delete] = ACTIONS(3213), + [anon_sym_throw] = ACTIONS(3213), + [anon_sym_namespace] = ACTIONS(3213), + [anon_sym_using] = ACTIONS(3213), + [anon_sym_static_assert] = ACTIONS(3213), + [anon_sym_concept] = ACTIONS(3213), + [anon_sym_co_return] = ACTIONS(3213), + [anon_sym_co_yield] = ACTIONS(3213), + [anon_sym_R_DQUOTE] = ACTIONS(3215), + [anon_sym_LR_DQUOTE] = ACTIONS(3215), + [anon_sym_uR_DQUOTE] = ACTIONS(3215), + [anon_sym_UR_DQUOTE] = ACTIONS(3215), + [anon_sym_u8R_DQUOTE] = ACTIONS(3215), + [anon_sym_co_await] = ACTIONS(3213), + [anon_sym_new] = ACTIONS(3213), + [anon_sym_requires] = ACTIONS(3213), + [sym_this] = ACTIONS(3213), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3215), + [sym_semgrep_named_ellipsis] = ACTIONS(3215), + }, + [647] = { + [sym_identifier] = ACTIONS(3155), + [aux_sym_preproc_include_token1] = ACTIONS(3155), + [aux_sym_preproc_def_token1] = ACTIONS(3155), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3157), + [aux_sym_preproc_if_token1] = ACTIONS(3155), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3155), + [sym_preproc_directive] = ACTIONS(3155), + [anon_sym_LPAREN2] = ACTIONS(3157), + [anon_sym_BANG] = ACTIONS(3157), + [anon_sym_TILDE] = ACTIONS(3157), + [anon_sym_DASH] = ACTIONS(3155), + [anon_sym_PLUS] = ACTIONS(3155), + [anon_sym_STAR] = ACTIONS(3157), + [anon_sym_AMP_AMP] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym_SEMI] = ACTIONS(3157), + [anon_sym___extension__] = ACTIONS(3155), + [anon_sym_typedef] = ACTIONS(3155), + [anon_sym_extern] = ACTIONS(3155), + [anon_sym___attribute__] = ACTIONS(3155), + [anon_sym_COLON_COLON] = ACTIONS(3157), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3157), + [anon_sym___declspec] = ACTIONS(3155), + [anon_sym___based] = ACTIONS(3155), + [anon_sym___cdecl] = ACTIONS(3155), + [anon_sym___clrcall] = ACTIONS(3155), + [anon_sym___stdcall] = ACTIONS(3155), + [anon_sym___fastcall] = ACTIONS(3155), + [anon_sym___thiscall] = ACTIONS(3155), + [anon_sym___vectorcall] = ACTIONS(3155), + [anon_sym_LBRACE] = ACTIONS(3157), + [anon_sym_RBRACE] = ACTIONS(3157), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3155), + [anon_sym_static] = ACTIONS(3155), + [anon_sym_register] = ACTIONS(3155), + [anon_sym_inline] = ACTIONS(3155), + [anon_sym___inline] = ACTIONS(3155), + [anon_sym___inline__] = ACTIONS(3155), + [anon_sym___forceinline] = ACTIONS(3155), + [anon_sym_thread_local] = ACTIONS(3155), + [anon_sym___thread] = ACTIONS(3155), + [anon_sym_const] = ACTIONS(3155), + [anon_sym_constexpr] = ACTIONS(3155), + [anon_sym_volatile] = ACTIONS(3155), + [anon_sym_restrict] = ACTIONS(3155), + [anon_sym___restrict__] = ACTIONS(3155), + [anon_sym__Atomic] = ACTIONS(3155), + [anon_sym__Noreturn] = ACTIONS(3155), + [anon_sym_noreturn] = ACTIONS(3155), + [anon_sym_mutable] = ACTIONS(3155), + [anon_sym_constinit] = ACTIONS(3155), + [anon_sym_consteval] = ACTIONS(3155), + [sym_primitive_type] = ACTIONS(3155), + [anon_sym_enum] = ACTIONS(3155), + [anon_sym_class] = ACTIONS(3155), + [anon_sym_struct] = ACTIONS(3155), + [anon_sym_union] = ACTIONS(3155), + [anon_sym_if] = ACTIONS(3155), + [anon_sym_else] = ACTIONS(3155), + [anon_sym_switch] = ACTIONS(3155), + [anon_sym_case] = ACTIONS(3155), + [anon_sym_default] = ACTIONS(3155), + [anon_sym_while] = ACTIONS(3155), + [anon_sym_do] = ACTIONS(3155), + [anon_sym_for] = ACTIONS(3155), + [anon_sym_return] = ACTIONS(3155), + [anon_sym_break] = ACTIONS(3155), + [anon_sym_continue] = ACTIONS(3155), + [anon_sym_goto] = ACTIONS(3155), + [anon_sym___try] = ACTIONS(3155), + [anon_sym___leave] = ACTIONS(3155), + [anon_sym_not] = ACTIONS(3155), + [anon_sym_compl] = ACTIONS(3155), + [anon_sym_DASH_DASH] = ACTIONS(3157), + [anon_sym_PLUS_PLUS] = ACTIONS(3157), + [anon_sym_sizeof] = ACTIONS(3155), + [anon_sym___alignof__] = ACTIONS(3155), + [anon_sym___alignof] = ACTIONS(3155), + [anon_sym__alignof] = ACTIONS(3155), + [anon_sym_alignof] = ACTIONS(3155), + [anon_sym__Alignof] = ACTIONS(3155), + [anon_sym_offsetof] = ACTIONS(3155), + [anon_sym__Generic] = ACTIONS(3155), + [anon_sym_asm] = ACTIONS(3155), + [anon_sym___asm__] = ACTIONS(3155), + [sym_number_literal] = ACTIONS(3157), + [anon_sym_L_SQUOTE] = ACTIONS(3157), + [anon_sym_u_SQUOTE] = ACTIONS(3157), + [anon_sym_U_SQUOTE] = ACTIONS(3157), + [anon_sym_u8_SQUOTE] = ACTIONS(3157), + [anon_sym_SQUOTE] = ACTIONS(3157), + [anon_sym_L_DQUOTE] = ACTIONS(3157), + [anon_sym_u_DQUOTE] = ACTIONS(3157), + [anon_sym_U_DQUOTE] = ACTIONS(3157), + [anon_sym_u8_DQUOTE] = ACTIONS(3157), + [anon_sym_DQUOTE] = ACTIONS(3157), + [sym_true] = ACTIONS(3155), + [sym_false] = ACTIONS(3155), + [anon_sym_NULL] = ACTIONS(3155), + [anon_sym_nullptr] = ACTIONS(3155), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3155), + [anon_sym_decltype] = ACTIONS(3155), + [anon_sym_virtual] = ACTIONS(3155), + [anon_sym_alignas] = ACTIONS(3155), + [anon_sym_explicit] = ACTIONS(3155), + [anon_sym_typename] = ACTIONS(3155), + [anon_sym_template] = ACTIONS(3155), + [anon_sym_operator] = ACTIONS(3155), + [anon_sym_try] = ACTIONS(3155), + [anon_sym_delete] = ACTIONS(3155), + [anon_sym_throw] = ACTIONS(3155), + [anon_sym_namespace] = ACTIONS(3155), + [anon_sym_using] = ACTIONS(3155), + [anon_sym_static_assert] = ACTIONS(3155), + [anon_sym_concept] = ACTIONS(3155), + [anon_sym_co_return] = ACTIONS(3155), + [anon_sym_co_yield] = ACTIONS(3155), + [anon_sym_R_DQUOTE] = ACTIONS(3157), + [anon_sym_LR_DQUOTE] = ACTIONS(3157), + [anon_sym_uR_DQUOTE] = ACTIONS(3157), + [anon_sym_UR_DQUOTE] = ACTIONS(3157), + [anon_sym_u8R_DQUOTE] = ACTIONS(3157), + [anon_sym_co_await] = ACTIONS(3155), + [anon_sym_new] = ACTIONS(3155), + [anon_sym_requires] = ACTIONS(3155), + [sym_this] = ACTIONS(3155), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3157), + [sym_semgrep_named_ellipsis] = ACTIONS(3157), + }, + [648] = { + [sym_identifier] = ACTIONS(3167), + [aux_sym_preproc_include_token1] = ACTIONS(3167), + [aux_sym_preproc_def_token1] = ACTIONS(3167), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3169), + [aux_sym_preproc_if_token1] = ACTIONS(3167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3167), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3167), + [sym_preproc_directive] = 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___extension__] = ACTIONS(3167), + [anon_sym_typedef] = ACTIONS(3167), + [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___cdecl] = ACTIONS(3167), + [anon_sym___clrcall] = ACTIONS(3167), + [anon_sym___stdcall] = ACTIONS(3167), + [anon_sym___fastcall] = ACTIONS(3167), + [anon_sym___thiscall] = ACTIONS(3167), + [anon_sym___vectorcall] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_signed] = ACTIONS(3167), + [anon_sym_unsigned] = ACTIONS(3167), + [anon_sym_long] = ACTIONS(3167), + [anon_sym_short] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_static] = ACTIONS(3167), + [anon_sym_register] = ACTIONS(3167), + [anon_sym_inline] = ACTIONS(3167), + [anon_sym___inline] = ACTIONS(3167), + [anon_sym___inline__] = ACTIONS(3167), + [anon_sym___forceinline] = ACTIONS(3167), + [anon_sym_thread_local] = ACTIONS(3167), + [anon_sym___thread] = ACTIONS(3167), + [anon_sym_const] = ACTIONS(3167), + [anon_sym_constexpr] = ACTIONS(3167), + [anon_sym_volatile] = ACTIONS(3167), + [anon_sym_restrict] = ACTIONS(3167), + [anon_sym___restrict__] = ACTIONS(3167), + [anon_sym__Atomic] = ACTIONS(3167), + [anon_sym__Noreturn] = ACTIONS(3167), + [anon_sym_noreturn] = ACTIONS(3167), + [anon_sym_mutable] = ACTIONS(3167), + [anon_sym_constinit] = ACTIONS(3167), + [anon_sym_consteval] = 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_else] = 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___try] = ACTIONS(3167), + [anon_sym___leave] = 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), + [anon_sym___alignof__] = ACTIONS(3167), + [anon_sym___alignof] = ACTIONS(3167), + [anon_sym__alignof] = ACTIONS(3167), + [anon_sym_alignof] = ACTIONS(3167), + [anon_sym__Alignof] = ACTIONS(3167), + [anon_sym_offsetof] = ACTIONS(3167), + [anon_sym__Generic] = ACTIONS(3167), + [anon_sym_asm] = ACTIONS(3167), + [anon_sym___asm__] = 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), + [anon_sym_NULL] = ACTIONS(3167), + [anon_sym_nullptr] = ACTIONS(3167), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3167), + [anon_sym_decltype] = ACTIONS(3167), + [anon_sym_virtual] = ACTIONS(3167), + [anon_sym_alignas] = 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_namespace] = ACTIONS(3167), + [anon_sym_using] = ACTIONS(3167), + [anon_sym_static_assert] = ACTIONS(3167), + [anon_sym_concept] = ACTIONS(3167), + [anon_sym_co_return] = ACTIONS(3167), + [anon_sym_co_yield] = ACTIONS(3167), + [anon_sym_R_DQUOTE] = ACTIONS(3169), + [anon_sym_LR_DQUOTE] = ACTIONS(3169), + [anon_sym_uR_DQUOTE] = ACTIONS(3169), + [anon_sym_UR_DQUOTE] = ACTIONS(3169), + [anon_sym_u8R_DQUOTE] = ACTIONS(3169), + [anon_sym_co_await] = ACTIONS(3167), + [anon_sym_new] = ACTIONS(3167), + [anon_sym_requires] = ACTIONS(3167), + [sym_this] = ACTIONS(3167), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3169), + [sym_semgrep_named_ellipsis] = ACTIONS(3169), + }, + [649] = { + [sym_identifier] = ACTIONS(3127), + [aux_sym_preproc_include_token1] = ACTIONS(3127), + [aux_sym_preproc_def_token1] = ACTIONS(3127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3129), + [aux_sym_preproc_if_token1] = ACTIONS(3127), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3127), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3127), + [sym_preproc_directive] = ACTIONS(3127), + [anon_sym_LPAREN2] = ACTIONS(3129), + [anon_sym_BANG] = ACTIONS(3129), + [anon_sym_TILDE] = ACTIONS(3129), + [anon_sym_DASH] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(3127), + [anon_sym_STAR] = ACTIONS(3129), + [anon_sym_AMP_AMP] = ACTIONS(3129), + [anon_sym_AMP] = ACTIONS(3127), + [anon_sym_SEMI] = ACTIONS(3129), + [anon_sym___extension__] = ACTIONS(3127), + [anon_sym_typedef] = ACTIONS(3127), + [anon_sym_extern] = ACTIONS(3127), + [anon_sym___attribute__] = ACTIONS(3127), + [anon_sym_COLON_COLON] = ACTIONS(3129), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3129), + [anon_sym___declspec] = ACTIONS(3127), + [anon_sym___based] = ACTIONS(3127), + [anon_sym___cdecl] = ACTIONS(3127), + [anon_sym___clrcall] = ACTIONS(3127), + [anon_sym___stdcall] = ACTIONS(3127), + [anon_sym___fastcall] = ACTIONS(3127), + [anon_sym___thiscall] = ACTIONS(3127), + [anon_sym___vectorcall] = ACTIONS(3127), + [anon_sym_LBRACE] = ACTIONS(3129), + [anon_sym_RBRACE] = ACTIONS(3129), + [anon_sym_signed] = ACTIONS(3127), + [anon_sym_unsigned] = ACTIONS(3127), + [anon_sym_long] = ACTIONS(3127), + [anon_sym_short] = ACTIONS(3127), + [anon_sym_LBRACK] = ACTIONS(3127), + [anon_sym_static] = ACTIONS(3127), + [anon_sym_register] = ACTIONS(3127), + [anon_sym_inline] = ACTIONS(3127), + [anon_sym___inline] = ACTIONS(3127), + [anon_sym___inline__] = ACTIONS(3127), + [anon_sym___forceinline] = ACTIONS(3127), + [anon_sym_thread_local] = ACTIONS(3127), + [anon_sym___thread] = ACTIONS(3127), + [anon_sym_const] = ACTIONS(3127), + [anon_sym_constexpr] = ACTIONS(3127), + [anon_sym_volatile] = ACTIONS(3127), + [anon_sym_restrict] = ACTIONS(3127), + [anon_sym___restrict__] = ACTIONS(3127), + [anon_sym__Atomic] = ACTIONS(3127), + [anon_sym__Noreturn] = ACTIONS(3127), + [anon_sym_noreturn] = ACTIONS(3127), + [anon_sym_mutable] = ACTIONS(3127), + [anon_sym_constinit] = ACTIONS(3127), + [anon_sym_consteval] = ACTIONS(3127), + [sym_primitive_type] = ACTIONS(3127), + [anon_sym_enum] = ACTIONS(3127), + [anon_sym_class] = ACTIONS(3127), + [anon_sym_struct] = ACTIONS(3127), + [anon_sym_union] = ACTIONS(3127), + [anon_sym_if] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(3127), + [anon_sym_switch] = ACTIONS(3127), + [anon_sym_case] = ACTIONS(3127), + [anon_sym_default] = ACTIONS(3127), + [anon_sym_while] = ACTIONS(3127), + [anon_sym_do] = ACTIONS(3127), + [anon_sym_for] = ACTIONS(3127), + [anon_sym_return] = ACTIONS(3127), + [anon_sym_break] = ACTIONS(3127), + [anon_sym_continue] = ACTIONS(3127), + [anon_sym_goto] = ACTIONS(3127), + [anon_sym___try] = ACTIONS(3127), + [anon_sym___leave] = ACTIONS(3127), + [anon_sym_not] = ACTIONS(3127), + [anon_sym_compl] = ACTIONS(3127), + [anon_sym_DASH_DASH] = ACTIONS(3129), + [anon_sym_PLUS_PLUS] = ACTIONS(3129), + [anon_sym_sizeof] = ACTIONS(3127), + [anon_sym___alignof__] = ACTIONS(3127), + [anon_sym___alignof] = ACTIONS(3127), + [anon_sym__alignof] = ACTIONS(3127), + [anon_sym_alignof] = ACTIONS(3127), + [anon_sym__Alignof] = ACTIONS(3127), + [anon_sym_offsetof] = ACTIONS(3127), + [anon_sym__Generic] = ACTIONS(3127), + [anon_sym_asm] = ACTIONS(3127), + [anon_sym___asm__] = ACTIONS(3127), + [sym_number_literal] = ACTIONS(3129), + [anon_sym_L_SQUOTE] = ACTIONS(3129), + [anon_sym_u_SQUOTE] = ACTIONS(3129), + [anon_sym_U_SQUOTE] = ACTIONS(3129), + [anon_sym_u8_SQUOTE] = ACTIONS(3129), + [anon_sym_SQUOTE] = ACTIONS(3129), + [anon_sym_L_DQUOTE] = ACTIONS(3129), + [anon_sym_u_DQUOTE] = ACTIONS(3129), + [anon_sym_U_DQUOTE] = ACTIONS(3129), + [anon_sym_u8_DQUOTE] = ACTIONS(3129), + [anon_sym_DQUOTE] = ACTIONS(3129), + [sym_true] = ACTIONS(3127), + [sym_false] = ACTIONS(3127), + [anon_sym_NULL] = ACTIONS(3127), + [anon_sym_nullptr] = ACTIONS(3127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3127), + [anon_sym_decltype] = ACTIONS(3127), + [anon_sym_virtual] = ACTIONS(3127), + [anon_sym_alignas] = ACTIONS(3127), + [anon_sym_explicit] = ACTIONS(3127), + [anon_sym_typename] = ACTIONS(3127), + [anon_sym_template] = ACTIONS(3127), + [anon_sym_operator] = ACTIONS(3127), + [anon_sym_try] = ACTIONS(3127), + [anon_sym_delete] = ACTIONS(3127), + [anon_sym_throw] = ACTIONS(3127), + [anon_sym_namespace] = ACTIONS(3127), + [anon_sym_using] = ACTIONS(3127), + [anon_sym_static_assert] = ACTIONS(3127), + [anon_sym_concept] = ACTIONS(3127), + [anon_sym_co_return] = ACTIONS(3127), + [anon_sym_co_yield] = ACTIONS(3127), + [anon_sym_R_DQUOTE] = ACTIONS(3129), + [anon_sym_LR_DQUOTE] = ACTIONS(3129), + [anon_sym_uR_DQUOTE] = ACTIONS(3129), + [anon_sym_UR_DQUOTE] = ACTIONS(3129), + [anon_sym_u8R_DQUOTE] = ACTIONS(3129), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3127), + [anon_sym_requires] = ACTIONS(3127), + [sym_this] = ACTIONS(3127), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3129), + [sym_semgrep_named_ellipsis] = ACTIONS(3129), + }, + [650] = { + [sym_identifier] = ACTIONS(3213), + [aux_sym_preproc_include_token1] = ACTIONS(3213), + [aux_sym_preproc_def_token1] = ACTIONS(3213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3215), + [aux_sym_preproc_if_token1] = ACTIONS(3213), + [aux_sym_preproc_if_token2] = ACTIONS(3213), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3213), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3213), + [sym_preproc_directive] = ACTIONS(3213), + [anon_sym_LPAREN2] = ACTIONS(3215), + [anon_sym_BANG] = ACTIONS(3215), + [anon_sym_TILDE] = ACTIONS(3215), + [anon_sym_DASH] = ACTIONS(3213), + [anon_sym_PLUS] = ACTIONS(3213), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP_AMP] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3213), + [anon_sym_SEMI] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(3213), + [anon_sym_typedef] = ACTIONS(3213), + [anon_sym_extern] = ACTIONS(3213), + [anon_sym___attribute__] = ACTIONS(3213), + [anon_sym_COLON_COLON] = ACTIONS(3215), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3215), + [anon_sym___declspec] = ACTIONS(3213), + [anon_sym___based] = ACTIONS(3213), + [anon_sym___cdecl] = ACTIONS(3213), + [anon_sym___clrcall] = ACTIONS(3213), + [anon_sym___stdcall] = ACTIONS(3213), + [anon_sym___fastcall] = ACTIONS(3213), + [anon_sym___thiscall] = ACTIONS(3213), + [anon_sym___vectorcall] = ACTIONS(3213), + [anon_sym_LBRACE] = ACTIONS(3215), + [anon_sym_signed] = ACTIONS(3213), + [anon_sym_unsigned] = ACTIONS(3213), + [anon_sym_long] = ACTIONS(3213), + [anon_sym_short] = ACTIONS(3213), + [anon_sym_LBRACK] = ACTIONS(3213), + [anon_sym_static] = ACTIONS(3213), + [anon_sym_register] = ACTIONS(3213), + [anon_sym_inline] = ACTIONS(3213), + [anon_sym___inline] = ACTIONS(3213), + [anon_sym___inline__] = ACTIONS(3213), + [anon_sym___forceinline] = ACTIONS(3213), + [anon_sym_thread_local] = ACTIONS(3213), + [anon_sym___thread] = ACTIONS(3213), + [anon_sym_const] = ACTIONS(3213), + [anon_sym_constexpr] = ACTIONS(3213), + [anon_sym_volatile] = ACTIONS(3213), + [anon_sym_restrict] = ACTIONS(3213), + [anon_sym___restrict__] = ACTIONS(3213), + [anon_sym__Atomic] = ACTIONS(3213), + [anon_sym__Noreturn] = ACTIONS(3213), + [anon_sym_noreturn] = ACTIONS(3213), + [anon_sym_mutable] = ACTIONS(3213), + [anon_sym_constinit] = ACTIONS(3213), + [anon_sym_consteval] = ACTIONS(3213), + [sym_primitive_type] = ACTIONS(3213), + [anon_sym_enum] = ACTIONS(3213), + [anon_sym_class] = ACTIONS(3213), + [anon_sym_struct] = ACTIONS(3213), + [anon_sym_union] = ACTIONS(3213), + [anon_sym_if] = ACTIONS(3213), + [anon_sym_else] = ACTIONS(3213), + [anon_sym_switch] = ACTIONS(3213), + [anon_sym_case] = ACTIONS(3213), + [anon_sym_default] = ACTIONS(3213), + [anon_sym_while] = ACTIONS(3213), + [anon_sym_do] = ACTIONS(3213), + [anon_sym_for] = ACTIONS(3213), + [anon_sym_return] = ACTIONS(3213), + [anon_sym_break] = ACTIONS(3213), + [anon_sym_continue] = ACTIONS(3213), + [anon_sym_goto] = ACTIONS(3213), + [anon_sym___try] = ACTIONS(3213), + [anon_sym___leave] = ACTIONS(3213), + [anon_sym_not] = ACTIONS(3213), + [anon_sym_compl] = ACTIONS(3213), + [anon_sym_DASH_DASH] = ACTIONS(3215), + [anon_sym_PLUS_PLUS] = ACTIONS(3215), + [anon_sym_sizeof] = ACTIONS(3213), + [anon_sym___alignof__] = ACTIONS(3213), + [anon_sym___alignof] = ACTIONS(3213), + [anon_sym__alignof] = ACTIONS(3213), + [anon_sym_alignof] = ACTIONS(3213), + [anon_sym__Alignof] = ACTIONS(3213), + [anon_sym_offsetof] = ACTIONS(3213), + [anon_sym__Generic] = ACTIONS(3213), + [anon_sym_asm] = ACTIONS(3213), + [anon_sym___asm__] = ACTIONS(3213), + [sym_number_literal] = ACTIONS(3215), + [anon_sym_L_SQUOTE] = ACTIONS(3215), + [anon_sym_u_SQUOTE] = ACTIONS(3215), + [anon_sym_U_SQUOTE] = ACTIONS(3215), + [anon_sym_u8_SQUOTE] = ACTIONS(3215), + [anon_sym_SQUOTE] = ACTIONS(3215), + [anon_sym_L_DQUOTE] = ACTIONS(3215), + [anon_sym_u_DQUOTE] = ACTIONS(3215), + [anon_sym_U_DQUOTE] = ACTIONS(3215), + [anon_sym_u8_DQUOTE] = ACTIONS(3215), + [anon_sym_DQUOTE] = ACTIONS(3215), + [sym_true] = ACTIONS(3213), + [sym_false] = ACTIONS(3213), + [anon_sym_NULL] = ACTIONS(3213), + [anon_sym_nullptr] = ACTIONS(3213), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3213), + [anon_sym_decltype] = ACTIONS(3213), + [anon_sym_virtual] = ACTIONS(3213), + [anon_sym_alignas] = ACTIONS(3213), + [anon_sym_explicit] = ACTIONS(3213), + [anon_sym_typename] = ACTIONS(3213), + [anon_sym_template] = ACTIONS(3213), + [anon_sym_operator] = ACTIONS(3213), + [anon_sym_try] = ACTIONS(3213), + [anon_sym_delete] = ACTIONS(3213), + [anon_sym_throw] = ACTIONS(3213), + [anon_sym_namespace] = ACTIONS(3213), + [anon_sym_using] = ACTIONS(3213), + [anon_sym_static_assert] = ACTIONS(3213), + [anon_sym_concept] = ACTIONS(3213), + [anon_sym_co_return] = ACTIONS(3213), + [anon_sym_co_yield] = ACTIONS(3213), + [anon_sym_R_DQUOTE] = ACTIONS(3215), + [anon_sym_LR_DQUOTE] = ACTIONS(3215), + [anon_sym_uR_DQUOTE] = ACTIONS(3215), + [anon_sym_UR_DQUOTE] = ACTIONS(3215), + [anon_sym_u8R_DQUOTE] = ACTIONS(3215), + [anon_sym_co_await] = ACTIONS(3213), + [anon_sym_new] = ACTIONS(3213), + [anon_sym_requires] = ACTIONS(3213), + [sym_this] = ACTIONS(3213), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3215), + [sym_semgrep_named_ellipsis] = ACTIONS(3215), + }, + [651] = { + [sym_identifier] = ACTIONS(3163), + [aux_sym_preproc_include_token1] = ACTIONS(3163), + [aux_sym_preproc_def_token1] = ACTIONS(3163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3165), + [aux_sym_preproc_if_token1] = ACTIONS(3163), + [aux_sym_preproc_if_token2] = ACTIONS(3163), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3163), + [sym_preproc_directive] = 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___extension__] = ACTIONS(3163), + [anon_sym_typedef] = ACTIONS(3163), + [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___cdecl] = ACTIONS(3163), + [anon_sym___clrcall] = ACTIONS(3163), + [anon_sym___stdcall] = ACTIONS(3163), + [anon_sym___fastcall] = ACTIONS(3163), + [anon_sym___thiscall] = ACTIONS(3163), + [anon_sym___vectorcall] = ACTIONS(3163), + [anon_sym_LBRACE] = ACTIONS(3165), + [anon_sym_signed] = ACTIONS(3163), + [anon_sym_unsigned] = ACTIONS(3163), + [anon_sym_long] = ACTIONS(3163), + [anon_sym_short] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_static] = ACTIONS(3163), + [anon_sym_register] = ACTIONS(3163), + [anon_sym_inline] = ACTIONS(3163), + [anon_sym___inline] = ACTIONS(3163), + [anon_sym___inline__] = ACTIONS(3163), + [anon_sym___forceinline] = ACTIONS(3163), + [anon_sym_thread_local] = ACTIONS(3163), + [anon_sym___thread] = ACTIONS(3163), + [anon_sym_const] = ACTIONS(3163), + [anon_sym_constexpr] = ACTIONS(3163), + [anon_sym_volatile] = ACTIONS(3163), + [anon_sym_restrict] = ACTIONS(3163), + [anon_sym___restrict__] = ACTIONS(3163), + [anon_sym__Atomic] = ACTIONS(3163), + [anon_sym__Noreturn] = ACTIONS(3163), + [anon_sym_noreturn] = ACTIONS(3163), + [anon_sym_mutable] = ACTIONS(3163), + [anon_sym_constinit] = ACTIONS(3163), + [anon_sym_consteval] = 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_else] = 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___try] = ACTIONS(3163), + [anon_sym___leave] = 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), + [anon_sym___alignof__] = ACTIONS(3163), + [anon_sym___alignof] = ACTIONS(3163), + [anon_sym__alignof] = ACTIONS(3163), + [anon_sym_alignof] = ACTIONS(3163), + [anon_sym__Alignof] = ACTIONS(3163), + [anon_sym_offsetof] = ACTIONS(3163), + [anon_sym__Generic] = ACTIONS(3163), + [anon_sym_asm] = ACTIONS(3163), + [anon_sym___asm__] = 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), + [anon_sym_NULL] = ACTIONS(3163), + [anon_sym_nullptr] = ACTIONS(3163), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3163), + [anon_sym_decltype] = ACTIONS(3163), + [anon_sym_virtual] = ACTIONS(3163), + [anon_sym_alignas] = 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_namespace] = ACTIONS(3163), + [anon_sym_using] = ACTIONS(3163), + [anon_sym_static_assert] = ACTIONS(3163), + [anon_sym_concept] = ACTIONS(3163), + [anon_sym_co_return] = ACTIONS(3163), + [anon_sym_co_yield] = ACTIONS(3163), + [anon_sym_R_DQUOTE] = ACTIONS(3165), + [anon_sym_LR_DQUOTE] = ACTIONS(3165), + [anon_sym_uR_DQUOTE] = ACTIONS(3165), + [anon_sym_UR_DQUOTE] = ACTIONS(3165), + [anon_sym_u8R_DQUOTE] = ACTIONS(3165), + [anon_sym_co_await] = ACTIONS(3163), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_requires] = ACTIONS(3163), + [sym_this] = ACTIONS(3163), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3165), + [sym_semgrep_named_ellipsis] = ACTIONS(3165), + }, + [652] = { + [sym_identifier] = ACTIONS(3171), + [aux_sym_preproc_include_token1] = ACTIONS(3171), + [aux_sym_preproc_def_token1] = ACTIONS(3171), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3173), + [aux_sym_preproc_if_token1] = ACTIONS(3171), + [aux_sym_preproc_if_token2] = ACTIONS(3171), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3171), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3171), + [sym_preproc_directive] = ACTIONS(3171), + [anon_sym_LPAREN2] = ACTIONS(3173), + [anon_sym_BANG] = ACTIONS(3173), + [anon_sym_TILDE] = ACTIONS(3173), + [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_PLUS] = ACTIONS(3171), + [anon_sym_STAR] = ACTIONS(3173), + [anon_sym_AMP_AMP] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(3171), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym___extension__] = ACTIONS(3171), + [anon_sym_typedef] = ACTIONS(3171), + [anon_sym_extern] = ACTIONS(3171), + [anon_sym___attribute__] = ACTIONS(3171), + [anon_sym_COLON_COLON] = ACTIONS(3173), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3173), + [anon_sym___declspec] = ACTIONS(3171), + [anon_sym___based] = ACTIONS(3171), + [anon_sym___cdecl] = ACTIONS(3171), + [anon_sym___clrcall] = ACTIONS(3171), + [anon_sym___stdcall] = ACTIONS(3171), + [anon_sym___fastcall] = ACTIONS(3171), + [anon_sym___thiscall] = ACTIONS(3171), + [anon_sym___vectorcall] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(3173), + [anon_sym_signed] = ACTIONS(3171), + [anon_sym_unsigned] = ACTIONS(3171), + [anon_sym_long] = ACTIONS(3171), + [anon_sym_short] = ACTIONS(3171), + [anon_sym_LBRACK] = ACTIONS(3171), + [anon_sym_static] = ACTIONS(3171), + [anon_sym_register] = ACTIONS(3171), + [anon_sym_inline] = ACTIONS(3171), + [anon_sym___inline] = ACTIONS(3171), + [anon_sym___inline__] = ACTIONS(3171), + [anon_sym___forceinline] = ACTIONS(3171), + [anon_sym_thread_local] = ACTIONS(3171), + [anon_sym___thread] = ACTIONS(3171), + [anon_sym_const] = ACTIONS(3171), + [anon_sym_constexpr] = ACTIONS(3171), + [anon_sym_volatile] = ACTIONS(3171), + [anon_sym_restrict] = ACTIONS(3171), + [anon_sym___restrict__] = ACTIONS(3171), + [anon_sym__Atomic] = ACTIONS(3171), + [anon_sym__Noreturn] = ACTIONS(3171), + [anon_sym_noreturn] = ACTIONS(3171), + [anon_sym_mutable] = ACTIONS(3171), + [anon_sym_constinit] = ACTIONS(3171), + [anon_sym_consteval] = ACTIONS(3171), + [sym_primitive_type] = ACTIONS(3171), + [anon_sym_enum] = ACTIONS(3171), + [anon_sym_class] = ACTIONS(3171), + [anon_sym_struct] = ACTIONS(3171), + [anon_sym_union] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_else] = ACTIONS(3171), + [anon_sym_switch] = ACTIONS(3171), + [anon_sym_case] = ACTIONS(3171), + [anon_sym_default] = ACTIONS(3171), + [anon_sym_while] = ACTIONS(3171), + [anon_sym_do] = ACTIONS(3171), + [anon_sym_for] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_break] = ACTIONS(3171), + [anon_sym_continue] = ACTIONS(3171), + [anon_sym_goto] = ACTIONS(3171), + [anon_sym___try] = ACTIONS(3171), + [anon_sym___leave] = ACTIONS(3171), + [anon_sym_not] = ACTIONS(3171), + [anon_sym_compl] = ACTIONS(3171), + [anon_sym_DASH_DASH] = ACTIONS(3173), + [anon_sym_PLUS_PLUS] = ACTIONS(3173), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3171), + [anon_sym___alignof] = ACTIONS(3171), + [anon_sym__alignof] = ACTIONS(3171), + [anon_sym_alignof] = ACTIONS(3171), + [anon_sym__Alignof] = ACTIONS(3171), + [anon_sym_offsetof] = ACTIONS(3171), + [anon_sym__Generic] = ACTIONS(3171), + [anon_sym_asm] = ACTIONS(3171), + [anon_sym___asm__] = ACTIONS(3171), + [sym_number_literal] = ACTIONS(3173), + [anon_sym_L_SQUOTE] = ACTIONS(3173), + [anon_sym_u_SQUOTE] = ACTIONS(3173), + [anon_sym_U_SQUOTE] = ACTIONS(3173), + [anon_sym_u8_SQUOTE] = ACTIONS(3173), + [anon_sym_SQUOTE] = ACTIONS(3173), + [anon_sym_L_DQUOTE] = ACTIONS(3173), + [anon_sym_u_DQUOTE] = ACTIONS(3173), + [anon_sym_U_DQUOTE] = ACTIONS(3173), + [anon_sym_u8_DQUOTE] = ACTIONS(3173), + [anon_sym_DQUOTE] = ACTIONS(3173), + [sym_true] = ACTIONS(3171), + [sym_false] = ACTIONS(3171), + [anon_sym_NULL] = ACTIONS(3171), + [anon_sym_nullptr] = ACTIONS(3171), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3171), + [anon_sym_decltype] = ACTIONS(3171), + [anon_sym_virtual] = ACTIONS(3171), + [anon_sym_alignas] = ACTIONS(3171), + [anon_sym_explicit] = ACTIONS(3171), + [anon_sym_typename] = ACTIONS(3171), + [anon_sym_template] = ACTIONS(3171), + [anon_sym_operator] = ACTIONS(3171), + [anon_sym_try] = ACTIONS(3171), + [anon_sym_delete] = ACTIONS(3171), + [anon_sym_throw] = ACTIONS(3171), + [anon_sym_namespace] = ACTIONS(3171), + [anon_sym_using] = ACTIONS(3171), + [anon_sym_static_assert] = ACTIONS(3171), + [anon_sym_concept] = ACTIONS(3171), + [anon_sym_co_return] = ACTIONS(3171), + [anon_sym_co_yield] = ACTIONS(3171), + [anon_sym_R_DQUOTE] = ACTIONS(3173), + [anon_sym_LR_DQUOTE] = ACTIONS(3173), + [anon_sym_uR_DQUOTE] = ACTIONS(3173), + [anon_sym_UR_DQUOTE] = ACTIONS(3173), + [anon_sym_u8R_DQUOTE] = ACTIONS(3173), + [anon_sym_co_await] = ACTIONS(3171), + [anon_sym_new] = ACTIONS(3171), + [anon_sym_requires] = ACTIONS(3171), + [sym_this] = ACTIONS(3171), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3173), + [sym_semgrep_named_ellipsis] = ACTIONS(3173), + }, + [653] = { + [sym_identifier] = ACTIONS(3119), + [aux_sym_preproc_include_token1] = ACTIONS(3119), + [aux_sym_preproc_def_token1] = ACTIONS(3119), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3121), + [aux_sym_preproc_if_token1] = ACTIONS(3119), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3119), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3119), + [sym_preproc_directive] = ACTIONS(3119), + [anon_sym_LPAREN2] = ACTIONS(3121), + [anon_sym_BANG] = ACTIONS(3121), + [anon_sym_TILDE] = ACTIONS(3121), + [anon_sym_DASH] = ACTIONS(3119), + [anon_sym_PLUS] = ACTIONS(3119), + [anon_sym_STAR] = ACTIONS(3121), + [anon_sym_AMP_AMP] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3119), + [anon_sym_SEMI] = ACTIONS(3121), + [anon_sym___extension__] = ACTIONS(3119), + [anon_sym_typedef] = ACTIONS(3119), + [anon_sym_extern] = ACTIONS(3119), + [anon_sym___attribute__] = ACTIONS(3119), + [anon_sym_COLON_COLON] = ACTIONS(3121), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3121), + [anon_sym___declspec] = ACTIONS(3119), + [anon_sym___based] = ACTIONS(3119), + [anon_sym___cdecl] = ACTIONS(3119), + [anon_sym___clrcall] = ACTIONS(3119), + [anon_sym___stdcall] = ACTIONS(3119), + [anon_sym___fastcall] = ACTIONS(3119), + [anon_sym___thiscall] = ACTIONS(3119), + [anon_sym___vectorcall] = ACTIONS(3119), + [anon_sym_LBRACE] = ACTIONS(3121), + [anon_sym_RBRACE] = ACTIONS(3121), + [anon_sym_signed] = ACTIONS(3119), + [anon_sym_unsigned] = ACTIONS(3119), + [anon_sym_long] = ACTIONS(3119), + [anon_sym_short] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(3119), + [anon_sym_static] = ACTIONS(3119), + [anon_sym_register] = ACTIONS(3119), + [anon_sym_inline] = ACTIONS(3119), + [anon_sym___inline] = ACTIONS(3119), + [anon_sym___inline__] = ACTIONS(3119), + [anon_sym___forceinline] = ACTIONS(3119), + [anon_sym_thread_local] = ACTIONS(3119), + [anon_sym___thread] = ACTIONS(3119), + [anon_sym_const] = ACTIONS(3119), + [anon_sym_constexpr] = ACTIONS(3119), + [anon_sym_volatile] = ACTIONS(3119), + [anon_sym_restrict] = ACTIONS(3119), + [anon_sym___restrict__] = ACTIONS(3119), + [anon_sym__Atomic] = ACTIONS(3119), + [anon_sym__Noreturn] = ACTIONS(3119), + [anon_sym_noreturn] = ACTIONS(3119), + [anon_sym_mutable] = ACTIONS(3119), + [anon_sym_constinit] = ACTIONS(3119), + [anon_sym_consteval] = ACTIONS(3119), + [sym_primitive_type] = ACTIONS(3119), + [anon_sym_enum] = ACTIONS(3119), + [anon_sym_class] = ACTIONS(3119), + [anon_sym_struct] = ACTIONS(3119), + [anon_sym_union] = ACTIONS(3119), + [anon_sym_if] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3119), + [anon_sym_switch] = ACTIONS(3119), + [anon_sym_case] = ACTIONS(3119), + [anon_sym_default] = ACTIONS(3119), + [anon_sym_while] = ACTIONS(3119), + [anon_sym_do] = ACTIONS(3119), + [anon_sym_for] = ACTIONS(3119), + [anon_sym_return] = ACTIONS(3119), + [anon_sym_break] = ACTIONS(3119), + [anon_sym_continue] = ACTIONS(3119), + [anon_sym_goto] = ACTIONS(3119), + [anon_sym___try] = ACTIONS(3119), + [anon_sym___leave] = ACTIONS(3119), + [anon_sym_not] = ACTIONS(3119), + [anon_sym_compl] = ACTIONS(3119), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3119), + [anon_sym___alignof__] = ACTIONS(3119), + [anon_sym___alignof] = ACTIONS(3119), + [anon_sym__alignof] = ACTIONS(3119), + [anon_sym_alignof] = ACTIONS(3119), + [anon_sym__Alignof] = ACTIONS(3119), + [anon_sym_offsetof] = ACTIONS(3119), + [anon_sym__Generic] = ACTIONS(3119), + [anon_sym_asm] = ACTIONS(3119), + [anon_sym___asm__] = ACTIONS(3119), + [sym_number_literal] = ACTIONS(3121), + [anon_sym_L_SQUOTE] = ACTIONS(3121), + [anon_sym_u_SQUOTE] = ACTIONS(3121), + [anon_sym_U_SQUOTE] = ACTIONS(3121), + [anon_sym_u8_SQUOTE] = ACTIONS(3121), + [anon_sym_SQUOTE] = ACTIONS(3121), + [anon_sym_L_DQUOTE] = ACTIONS(3121), + [anon_sym_u_DQUOTE] = ACTIONS(3121), + [anon_sym_U_DQUOTE] = ACTIONS(3121), + [anon_sym_u8_DQUOTE] = ACTIONS(3121), + [anon_sym_DQUOTE] = ACTIONS(3121), + [sym_true] = ACTIONS(3119), + [sym_false] = ACTIONS(3119), + [anon_sym_NULL] = ACTIONS(3119), + [anon_sym_nullptr] = ACTIONS(3119), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3119), + [anon_sym_decltype] = ACTIONS(3119), + [anon_sym_virtual] = ACTIONS(3119), + [anon_sym_alignas] = ACTIONS(3119), + [anon_sym_explicit] = ACTIONS(3119), + [anon_sym_typename] = ACTIONS(3119), + [anon_sym_template] = ACTIONS(3119), + [anon_sym_operator] = ACTIONS(3119), + [anon_sym_try] = ACTIONS(3119), + [anon_sym_delete] = ACTIONS(3119), + [anon_sym_throw] = ACTIONS(3119), + [anon_sym_namespace] = ACTIONS(3119), + [anon_sym_using] = ACTIONS(3119), + [anon_sym_static_assert] = ACTIONS(3119), + [anon_sym_concept] = ACTIONS(3119), + [anon_sym_co_return] = ACTIONS(3119), + [anon_sym_co_yield] = ACTIONS(3119), + [anon_sym_R_DQUOTE] = ACTIONS(3121), + [anon_sym_LR_DQUOTE] = ACTIONS(3121), + [anon_sym_uR_DQUOTE] = ACTIONS(3121), + [anon_sym_UR_DQUOTE] = ACTIONS(3121), + [anon_sym_u8R_DQUOTE] = ACTIONS(3121), + [anon_sym_co_await] = ACTIONS(3119), + [anon_sym_new] = ACTIONS(3119), + [anon_sym_requires] = ACTIONS(3119), + [sym_this] = ACTIONS(3119), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3121), + [sym_semgrep_named_ellipsis] = ACTIONS(3121), + }, + [654] = { + [ts_builtin_sym_end] = ACTIONS(3209), [sym_identifier] = ACTIONS(3207), [aux_sym_preproc_include_token1] = ACTIONS(3207), [aux_sym_preproc_def_token1] = ACTIONS(3207), [anon_sym_DOT_DOT_DOT] = ACTIONS(3209), [aux_sym_preproc_if_token1] = ACTIONS(3207), - [aux_sym_preproc_if_token2] = ACTIONS(3207), [aux_sym_preproc_ifdef_token1] = ACTIONS(3207), [aux_sym_preproc_ifdef_token2] = ACTIONS(3207), [sym_preproc_directive] = ACTIONS(3207), @@ -149465,1231 +146023,551 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3209), [sym_semgrep_named_ellipsis] = ACTIONS(3209), }, - [608] = { - [sym_identifier] = ACTIONS(3078), - [aux_sym_preproc_include_token1] = ACTIONS(3078), - [aux_sym_preproc_def_token1] = ACTIONS(3078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3080), - [anon_sym_COMMA] = ACTIONS(3187), - [aux_sym_preproc_if_token1] = ACTIONS(3078), - [aux_sym_preproc_if_token2] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3078), - [sym_preproc_directive] = ACTIONS(3078), - [anon_sym_LPAREN2] = ACTIONS(3080), - [anon_sym_BANG] = ACTIONS(3080), - [anon_sym_TILDE] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_AMP] = ACTIONS(3078), + [655] = { + [sym_identifier] = ACTIONS(3175), + [aux_sym_preproc_include_token1] = ACTIONS(3175), + [aux_sym_preproc_def_token1] = ACTIONS(3175), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3177), + [aux_sym_preproc_if_token1] = ACTIONS(3175), + [aux_sym_preproc_if_token2] = ACTIONS(3175), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3175), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3175), + [sym_preproc_directive] = ACTIONS(3175), + [anon_sym_LPAREN2] = ACTIONS(3177), + [anon_sym_BANG] = ACTIONS(3177), + [anon_sym_TILDE] = ACTIONS(3177), + [anon_sym_DASH] = ACTIONS(3175), + [anon_sym_PLUS] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_AMP] = ACTIONS(3175), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym___extension__] = ACTIONS(3175), + [anon_sym_typedef] = ACTIONS(3175), + [anon_sym_extern] = ACTIONS(3175), + [anon_sym___attribute__] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(3177), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3177), + [anon_sym___declspec] = ACTIONS(3175), + [anon_sym___based] = ACTIONS(3175), + [anon_sym___cdecl] = ACTIONS(3175), + [anon_sym___clrcall] = ACTIONS(3175), + [anon_sym___stdcall] = ACTIONS(3175), + [anon_sym___fastcall] = ACTIONS(3175), + [anon_sym___thiscall] = ACTIONS(3175), + [anon_sym___vectorcall] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(3177), + [anon_sym_signed] = ACTIONS(3175), + [anon_sym_unsigned] = ACTIONS(3175), + [anon_sym_long] = ACTIONS(3175), + [anon_sym_short] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_static] = ACTIONS(3175), + [anon_sym_register] = ACTIONS(3175), + [anon_sym_inline] = ACTIONS(3175), + [anon_sym___inline] = ACTIONS(3175), + [anon_sym___inline__] = ACTIONS(3175), + [anon_sym___forceinline] = ACTIONS(3175), + [anon_sym_thread_local] = ACTIONS(3175), + [anon_sym___thread] = ACTIONS(3175), + [anon_sym_const] = ACTIONS(3175), + [anon_sym_constexpr] = ACTIONS(3175), + [anon_sym_volatile] = ACTIONS(3175), + [anon_sym_restrict] = ACTIONS(3175), + [anon_sym___restrict__] = ACTIONS(3175), + [anon_sym__Atomic] = ACTIONS(3175), + [anon_sym__Noreturn] = ACTIONS(3175), + [anon_sym_noreturn] = ACTIONS(3175), + [anon_sym_mutable] = ACTIONS(3175), + [anon_sym_constinit] = ACTIONS(3175), + [anon_sym_consteval] = ACTIONS(3175), + [sym_primitive_type] = ACTIONS(3175), + [anon_sym_enum] = ACTIONS(3175), + [anon_sym_class] = ACTIONS(3175), + [anon_sym_struct] = ACTIONS(3175), + [anon_sym_union] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_switch] = ACTIONS(3175), + [anon_sym_case] = ACTIONS(3175), + [anon_sym_default] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_do] = ACTIONS(3175), + [anon_sym_for] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_break] = ACTIONS(3175), + [anon_sym_continue] = ACTIONS(3175), + [anon_sym_goto] = ACTIONS(3175), + [anon_sym___try] = ACTIONS(3175), + [anon_sym___leave] = ACTIONS(3175), + [anon_sym_not] = ACTIONS(3175), + [anon_sym_compl] = ACTIONS(3175), + [anon_sym_DASH_DASH] = ACTIONS(3177), + [anon_sym_PLUS_PLUS] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(3175), + [anon_sym___alignof__] = ACTIONS(3175), + [anon_sym___alignof] = ACTIONS(3175), + [anon_sym__alignof] = ACTIONS(3175), + [anon_sym_alignof] = ACTIONS(3175), + [anon_sym__Alignof] = ACTIONS(3175), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3175), + [anon_sym_asm] = ACTIONS(3175), + [anon_sym___asm__] = ACTIONS(3175), + [sym_number_literal] = ACTIONS(3177), + [anon_sym_L_SQUOTE] = ACTIONS(3177), + [anon_sym_u_SQUOTE] = ACTIONS(3177), + [anon_sym_U_SQUOTE] = ACTIONS(3177), + [anon_sym_u8_SQUOTE] = ACTIONS(3177), + [anon_sym_SQUOTE] = ACTIONS(3177), + [anon_sym_L_DQUOTE] = ACTIONS(3177), + [anon_sym_u_DQUOTE] = ACTIONS(3177), + [anon_sym_U_DQUOTE] = ACTIONS(3177), + [anon_sym_u8_DQUOTE] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(3177), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [anon_sym_NULL] = ACTIONS(3175), + [anon_sym_nullptr] = ACTIONS(3175), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3175), + [anon_sym_decltype] = ACTIONS(3175), + [anon_sym_virtual] = ACTIONS(3175), + [anon_sym_alignas] = ACTIONS(3175), + [anon_sym_explicit] = ACTIONS(3175), + [anon_sym_typename] = ACTIONS(3175), + [anon_sym_template] = ACTIONS(3175), + [anon_sym_operator] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_delete] = ACTIONS(3175), + [anon_sym_throw] = ACTIONS(3175), + [anon_sym_namespace] = ACTIONS(3175), + [anon_sym_using] = ACTIONS(3175), + [anon_sym_static_assert] = ACTIONS(3175), + [anon_sym_concept] = ACTIONS(3175), + [anon_sym_co_return] = ACTIONS(3175), + [anon_sym_co_yield] = ACTIONS(3175), + [anon_sym_R_DQUOTE] = ACTIONS(3177), + [anon_sym_LR_DQUOTE] = ACTIONS(3177), + [anon_sym_uR_DQUOTE] = ACTIONS(3177), + [anon_sym_UR_DQUOTE] = ACTIONS(3177), + [anon_sym_u8R_DQUOTE] = ACTIONS(3177), + [anon_sym_co_await] = ACTIONS(3175), + [anon_sym_new] = ACTIONS(3175), + [anon_sym_requires] = ACTIONS(3175), + [sym_this] = ACTIONS(3175), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3177), + [sym_semgrep_named_ellipsis] = ACTIONS(3177), + }, + [656] = { + [ts_builtin_sym_end] = ACTIONS(3187), + [sym_identifier] = ACTIONS(3185), + [aux_sym_preproc_include_token1] = ACTIONS(3185), + [aux_sym_preproc_def_token1] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3187), + [aux_sym_preproc_if_token1] = ACTIONS(3185), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3185), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3185), + [sym_preproc_directive] = ACTIONS(3185), + [anon_sym_LPAREN2] = ACTIONS(3187), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_TILDE] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3185), + [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(3187), + [anon_sym_AMP_AMP] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(3185), [anon_sym_SEMI] = ACTIONS(3187), - [anon_sym___extension__] = ACTIONS(3078), - [anon_sym_typedef] = ACTIONS(3078), - [anon_sym_extern] = ACTIONS(3078), - [anon_sym___attribute__] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3080), - [anon_sym___declspec] = ACTIONS(3078), - [anon_sym___based] = ACTIONS(3078), - [anon_sym___cdecl] = ACTIONS(3078), - [anon_sym___clrcall] = ACTIONS(3078), - [anon_sym___stdcall] = ACTIONS(3078), - [anon_sym___fastcall] = ACTIONS(3078), - [anon_sym___thiscall] = ACTIONS(3078), - [anon_sym___vectorcall] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_signed] = ACTIONS(3078), - [anon_sym_unsigned] = ACTIONS(3078), - [anon_sym_long] = ACTIONS(3078), - [anon_sym_short] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_static] = ACTIONS(3078), - [anon_sym_register] = ACTIONS(3078), - [anon_sym_inline] = ACTIONS(3078), - [anon_sym___inline] = ACTIONS(3078), - [anon_sym___inline__] = ACTIONS(3078), - [anon_sym___forceinline] = ACTIONS(3078), - [anon_sym_thread_local] = ACTIONS(3078), - [anon_sym___thread] = ACTIONS(3078), - [anon_sym_const] = ACTIONS(3078), - [anon_sym_constexpr] = ACTIONS(3078), - [anon_sym_volatile] = ACTIONS(3078), - [anon_sym_restrict] = ACTIONS(3078), - [anon_sym___restrict__] = ACTIONS(3078), - [anon_sym__Atomic] = ACTIONS(3078), - [anon_sym__Noreturn] = ACTIONS(3078), - [anon_sym_noreturn] = ACTIONS(3078), - [anon_sym_mutable] = ACTIONS(3078), - [anon_sym_constinit] = ACTIONS(3078), - [anon_sym_consteval] = ACTIONS(3078), - [sym_primitive_type] = ACTIONS(3078), - [anon_sym_enum] = ACTIONS(3078), - [anon_sym_class] = ACTIONS(3078), - [anon_sym_struct] = ACTIONS(3078), - [anon_sym_union] = ACTIONS(3078), - [anon_sym_if] = ACTIONS(3078), - [anon_sym_switch] = ACTIONS(3078), - [anon_sym_case] = ACTIONS(3078), - [anon_sym_default] = ACTIONS(3078), - [anon_sym_while] = ACTIONS(3078), - [anon_sym_do] = ACTIONS(3078), - [anon_sym_for] = ACTIONS(3078), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_break] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(3078), - [anon_sym_goto] = ACTIONS(3078), - [anon_sym___try] = ACTIONS(3078), - [anon_sym___leave] = ACTIONS(3078), - [anon_sym_not] = ACTIONS(3078), - [anon_sym_compl] = ACTIONS(3078), - [anon_sym_DASH_DASH] = ACTIONS(3080), - [anon_sym_PLUS_PLUS] = ACTIONS(3080), - [anon_sym_sizeof] = ACTIONS(3078), - [anon_sym___alignof__] = ACTIONS(3078), - [anon_sym___alignof] = ACTIONS(3078), - [anon_sym__alignof] = ACTIONS(3078), - [anon_sym_alignof] = ACTIONS(3078), - [anon_sym__Alignof] = ACTIONS(3078), - [anon_sym_offsetof] = ACTIONS(3078), - [anon_sym__Generic] = ACTIONS(3078), - [anon_sym_asm] = ACTIONS(3078), - [anon_sym___asm__] = ACTIONS(3078), - [sym_number_literal] = ACTIONS(3080), - [anon_sym_L_SQUOTE] = ACTIONS(3080), - [anon_sym_u_SQUOTE] = ACTIONS(3080), - [anon_sym_U_SQUOTE] = ACTIONS(3080), - [anon_sym_u8_SQUOTE] = ACTIONS(3080), - [anon_sym_SQUOTE] = ACTIONS(3080), - [anon_sym_L_DQUOTE] = ACTIONS(3080), - [anon_sym_u_DQUOTE] = ACTIONS(3080), - [anon_sym_U_DQUOTE] = ACTIONS(3080), - [anon_sym_u8_DQUOTE] = ACTIONS(3080), - [anon_sym_DQUOTE] = ACTIONS(3080), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [anon_sym_NULL] = ACTIONS(3078), - [anon_sym_nullptr] = ACTIONS(3078), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3078), - [anon_sym_decltype] = ACTIONS(3078), - [anon_sym_virtual] = ACTIONS(3078), - [anon_sym_alignas] = ACTIONS(3078), - [anon_sym_explicit] = ACTIONS(3078), - [anon_sym_typename] = ACTIONS(3078), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_operator] = ACTIONS(3078), - [anon_sym_try] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3078), - [anon_sym_throw] = ACTIONS(3078), - [anon_sym_namespace] = ACTIONS(3078), - [anon_sym_using] = ACTIONS(3078), - [anon_sym_static_assert] = ACTIONS(3078), - [anon_sym_concept] = ACTIONS(3078), - [anon_sym_co_return] = ACTIONS(3078), - [anon_sym_co_yield] = ACTIONS(3078), - [anon_sym_R_DQUOTE] = ACTIONS(3080), - [anon_sym_LR_DQUOTE] = ACTIONS(3080), - [anon_sym_uR_DQUOTE] = ACTIONS(3080), - [anon_sym_UR_DQUOTE] = ACTIONS(3080), - [anon_sym_u8R_DQUOTE] = ACTIONS(3080), - [anon_sym_co_await] = ACTIONS(3078), - [anon_sym_new] = ACTIONS(3078), - [anon_sym_requires] = ACTIONS(3078), - [sym_this] = ACTIONS(3078), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3080), - [sym_semgrep_named_ellipsis] = ACTIONS(3080), + [anon_sym___extension__] = ACTIONS(3185), + [anon_sym_typedef] = ACTIONS(3185), + [anon_sym_extern] = ACTIONS(3185), + [anon_sym___attribute__] = ACTIONS(3185), + [anon_sym_COLON_COLON] = ACTIONS(3187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3187), + [anon_sym___declspec] = ACTIONS(3185), + [anon_sym___based] = ACTIONS(3185), + [anon_sym___cdecl] = ACTIONS(3185), + [anon_sym___clrcall] = ACTIONS(3185), + [anon_sym___stdcall] = ACTIONS(3185), + [anon_sym___fastcall] = ACTIONS(3185), + [anon_sym___thiscall] = ACTIONS(3185), + [anon_sym___vectorcall] = ACTIONS(3185), + [anon_sym_LBRACE] = ACTIONS(3187), + [anon_sym_signed] = ACTIONS(3185), + [anon_sym_unsigned] = ACTIONS(3185), + [anon_sym_long] = ACTIONS(3185), + [anon_sym_short] = ACTIONS(3185), + [anon_sym_LBRACK] = ACTIONS(3185), + [anon_sym_static] = ACTIONS(3185), + [anon_sym_register] = ACTIONS(3185), + [anon_sym_inline] = ACTIONS(3185), + [anon_sym___inline] = ACTIONS(3185), + [anon_sym___inline__] = ACTIONS(3185), + [anon_sym___forceinline] = ACTIONS(3185), + [anon_sym_thread_local] = ACTIONS(3185), + [anon_sym___thread] = ACTIONS(3185), + [anon_sym_const] = ACTIONS(3185), + [anon_sym_constexpr] = ACTIONS(3185), + [anon_sym_volatile] = ACTIONS(3185), + [anon_sym_restrict] = ACTIONS(3185), + [anon_sym___restrict__] = ACTIONS(3185), + [anon_sym__Atomic] = ACTIONS(3185), + [anon_sym__Noreturn] = ACTIONS(3185), + [anon_sym_noreturn] = ACTIONS(3185), + [anon_sym_mutable] = ACTIONS(3185), + [anon_sym_constinit] = ACTIONS(3185), + [anon_sym_consteval] = ACTIONS(3185), + [sym_primitive_type] = ACTIONS(3185), + [anon_sym_enum] = ACTIONS(3185), + [anon_sym_class] = ACTIONS(3185), + [anon_sym_struct] = ACTIONS(3185), + [anon_sym_union] = ACTIONS(3185), + [anon_sym_if] = ACTIONS(3185), + [anon_sym_else] = ACTIONS(3185), + [anon_sym_switch] = ACTIONS(3185), + [anon_sym_case] = ACTIONS(3185), + [anon_sym_default] = ACTIONS(3185), + [anon_sym_while] = ACTIONS(3185), + [anon_sym_do] = ACTIONS(3185), + [anon_sym_for] = ACTIONS(3185), + [anon_sym_return] = ACTIONS(3185), + [anon_sym_break] = ACTIONS(3185), + [anon_sym_continue] = ACTIONS(3185), + [anon_sym_goto] = ACTIONS(3185), + [anon_sym___try] = ACTIONS(3185), + [anon_sym___leave] = ACTIONS(3185), + [anon_sym_not] = ACTIONS(3185), + [anon_sym_compl] = ACTIONS(3185), + [anon_sym_DASH_DASH] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3187), + [anon_sym_sizeof] = ACTIONS(3185), + [anon_sym___alignof__] = ACTIONS(3185), + [anon_sym___alignof] = ACTIONS(3185), + [anon_sym__alignof] = ACTIONS(3185), + [anon_sym_alignof] = ACTIONS(3185), + [anon_sym__Alignof] = ACTIONS(3185), + [anon_sym_offsetof] = ACTIONS(3185), + [anon_sym__Generic] = ACTIONS(3185), + [anon_sym_asm] = ACTIONS(3185), + [anon_sym___asm__] = ACTIONS(3185), + [sym_number_literal] = ACTIONS(3187), + [anon_sym_L_SQUOTE] = ACTIONS(3187), + [anon_sym_u_SQUOTE] = ACTIONS(3187), + [anon_sym_U_SQUOTE] = ACTIONS(3187), + [anon_sym_u8_SQUOTE] = ACTIONS(3187), + [anon_sym_SQUOTE] = ACTIONS(3187), + [anon_sym_L_DQUOTE] = ACTIONS(3187), + [anon_sym_u_DQUOTE] = ACTIONS(3187), + [anon_sym_U_DQUOTE] = ACTIONS(3187), + [anon_sym_u8_DQUOTE] = ACTIONS(3187), + [anon_sym_DQUOTE] = ACTIONS(3187), + [sym_true] = ACTIONS(3185), + [sym_false] = ACTIONS(3185), + [anon_sym_NULL] = ACTIONS(3185), + [anon_sym_nullptr] = ACTIONS(3185), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3185), + [anon_sym_decltype] = ACTIONS(3185), + [anon_sym_virtual] = ACTIONS(3185), + [anon_sym_alignas] = ACTIONS(3185), + [anon_sym_explicit] = ACTIONS(3185), + [anon_sym_typename] = ACTIONS(3185), + [anon_sym_template] = ACTIONS(3185), + [anon_sym_operator] = ACTIONS(3185), + [anon_sym_try] = ACTIONS(3185), + [anon_sym_delete] = ACTIONS(3185), + [anon_sym_throw] = ACTIONS(3185), + [anon_sym_namespace] = ACTIONS(3185), + [anon_sym_using] = ACTIONS(3185), + [anon_sym_static_assert] = ACTIONS(3185), + [anon_sym_concept] = ACTIONS(3185), + [anon_sym_co_return] = ACTIONS(3185), + [anon_sym_co_yield] = ACTIONS(3185), + [anon_sym_R_DQUOTE] = ACTIONS(3187), + [anon_sym_LR_DQUOTE] = ACTIONS(3187), + [anon_sym_uR_DQUOTE] = ACTIONS(3187), + [anon_sym_UR_DQUOTE] = ACTIONS(3187), + [anon_sym_u8R_DQUOTE] = ACTIONS(3187), + [anon_sym_co_await] = ACTIONS(3185), + [anon_sym_new] = ACTIONS(3185), + [anon_sym_requires] = ACTIONS(3185), + [sym_this] = ACTIONS(3185), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3187), + [sym_semgrep_named_ellipsis] = ACTIONS(3187), }, - [609] = { - [sym_identifier] = ACTIONS(3189), - [aux_sym_preproc_include_token1] = ACTIONS(3189), - [aux_sym_preproc_def_token1] = ACTIONS(3189), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), - [aux_sym_preproc_if_token1] = ACTIONS(3189), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3189), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3189), - [sym_preproc_directive] = ACTIONS(3189), - [anon_sym_LPAREN2] = ACTIONS(3191), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_TILDE] = ACTIONS(3191), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_STAR] = ACTIONS(3191), - [anon_sym_AMP_AMP] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_SEMI] = ACTIONS(3191), - [anon_sym___extension__] = ACTIONS(3189), - [anon_sym_typedef] = ACTIONS(3189), - [anon_sym_extern] = ACTIONS(3189), - [anon_sym___attribute__] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3191), - [anon_sym___declspec] = ACTIONS(3189), - [anon_sym___based] = ACTIONS(3189), - [anon_sym___cdecl] = ACTIONS(3189), - [anon_sym___clrcall] = ACTIONS(3189), - [anon_sym___stdcall] = ACTIONS(3189), - [anon_sym___fastcall] = ACTIONS(3189), - [anon_sym___thiscall] = ACTIONS(3189), - [anon_sym___vectorcall] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3191), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_signed] = ACTIONS(3189), - [anon_sym_unsigned] = ACTIONS(3189), - [anon_sym_long] = ACTIONS(3189), - [anon_sym_short] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_static] = ACTIONS(3189), - [anon_sym_register] = ACTIONS(3189), - [anon_sym_inline] = ACTIONS(3189), - [anon_sym___inline] = ACTIONS(3189), - [anon_sym___inline__] = ACTIONS(3189), - [anon_sym___forceinline] = ACTIONS(3189), - [anon_sym_thread_local] = ACTIONS(3189), - [anon_sym___thread] = ACTIONS(3189), - [anon_sym_const] = ACTIONS(3189), - [anon_sym_constexpr] = ACTIONS(3189), - [anon_sym_volatile] = ACTIONS(3189), - [anon_sym_restrict] = ACTIONS(3189), - [anon_sym___restrict__] = ACTIONS(3189), - [anon_sym__Atomic] = ACTIONS(3189), - [anon_sym__Noreturn] = ACTIONS(3189), - [anon_sym_noreturn] = ACTIONS(3189), - [anon_sym_mutable] = ACTIONS(3189), - [anon_sym_constinit] = ACTIONS(3189), - [anon_sym_consteval] = ACTIONS(3189), - [sym_primitive_type] = ACTIONS(3189), - [anon_sym_enum] = ACTIONS(3189), - [anon_sym_class] = ACTIONS(3189), - [anon_sym_struct] = ACTIONS(3189), - [anon_sym_union] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_switch] = ACTIONS(3189), - [anon_sym_case] = ACTIONS(3189), - [anon_sym_default] = ACTIONS(3189), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_do] = ACTIONS(3189), - [anon_sym_for] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_break] = ACTIONS(3189), - [anon_sym_continue] = ACTIONS(3189), - [anon_sym_goto] = ACTIONS(3189), - [anon_sym___try] = ACTIONS(3189), - [anon_sym___leave] = ACTIONS(3189), - [anon_sym_not] = ACTIONS(3189), - [anon_sym_compl] = ACTIONS(3189), - [anon_sym_DASH_DASH] = ACTIONS(3191), - [anon_sym_PLUS_PLUS] = ACTIONS(3191), - [anon_sym_sizeof] = ACTIONS(3189), - [anon_sym___alignof__] = ACTIONS(3189), - [anon_sym___alignof] = ACTIONS(3189), - [anon_sym__alignof] = ACTIONS(3189), - [anon_sym_alignof] = ACTIONS(3189), - [anon_sym__Alignof] = ACTIONS(3189), - [anon_sym_offsetof] = ACTIONS(3189), - [anon_sym__Generic] = ACTIONS(3189), - [anon_sym_asm] = ACTIONS(3189), - [anon_sym___asm__] = ACTIONS(3189), - [sym_number_literal] = ACTIONS(3191), - [anon_sym_L_SQUOTE] = ACTIONS(3191), - [anon_sym_u_SQUOTE] = ACTIONS(3191), - [anon_sym_U_SQUOTE] = ACTIONS(3191), - [anon_sym_u8_SQUOTE] = ACTIONS(3191), - [anon_sym_SQUOTE] = ACTIONS(3191), - [anon_sym_L_DQUOTE] = ACTIONS(3191), - [anon_sym_u_DQUOTE] = ACTIONS(3191), - [anon_sym_U_DQUOTE] = ACTIONS(3191), - [anon_sym_u8_DQUOTE] = ACTIONS(3191), - [anon_sym_DQUOTE] = ACTIONS(3191), - [sym_true] = ACTIONS(3189), - [sym_false] = ACTIONS(3189), - [anon_sym_NULL] = ACTIONS(3189), - [anon_sym_nullptr] = ACTIONS(3189), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3189), - [anon_sym_decltype] = ACTIONS(3189), - [anon_sym_virtual] = ACTIONS(3189), - [anon_sym_alignas] = ACTIONS(3189), - [anon_sym_explicit] = ACTIONS(3189), - [anon_sym_typename] = ACTIONS(3189), - [anon_sym_template] = ACTIONS(3189), - [anon_sym_operator] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_delete] = ACTIONS(3189), - [anon_sym_throw] = ACTIONS(3189), - [anon_sym_namespace] = ACTIONS(3189), - [anon_sym_using] = ACTIONS(3189), - [anon_sym_static_assert] = ACTIONS(3189), - [anon_sym_concept] = ACTIONS(3189), - [anon_sym_co_return] = ACTIONS(3189), - [anon_sym_co_yield] = ACTIONS(3189), - [anon_sym_R_DQUOTE] = ACTIONS(3191), - [anon_sym_LR_DQUOTE] = ACTIONS(3191), - [anon_sym_uR_DQUOTE] = ACTIONS(3191), - [anon_sym_UR_DQUOTE] = ACTIONS(3191), - [anon_sym_u8R_DQUOTE] = ACTIONS(3191), - [anon_sym_co_await] = ACTIONS(3189), - [anon_sym_new] = ACTIONS(3189), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3189), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3191), - [sym_semgrep_named_ellipsis] = ACTIONS(3191), + [657] = { + [sym_identifier] = ACTIONS(3083), + [aux_sym_preproc_include_token1] = ACTIONS(3083), + [aux_sym_preproc_def_token1] = ACTIONS(3083), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3085), + [aux_sym_preproc_if_token1] = ACTIONS(3083), + [aux_sym_preproc_if_token2] = ACTIONS(3083), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3083), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3083), + [sym_preproc_directive] = ACTIONS(3083), + [anon_sym_LPAREN2] = ACTIONS(3085), + [anon_sym_BANG] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3085), + [anon_sym_DASH] = ACTIONS(3083), + [anon_sym_PLUS] = ACTIONS(3083), + [anon_sym_STAR] = ACTIONS(3085), + [anon_sym_AMP_AMP] = ACTIONS(3085), + [anon_sym_AMP] = ACTIONS(3083), + [anon_sym_SEMI] = ACTIONS(3085), + [anon_sym___extension__] = ACTIONS(3083), + [anon_sym_typedef] = ACTIONS(3083), + [anon_sym_extern] = ACTIONS(3083), + [anon_sym___attribute__] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(3085), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3085), + [anon_sym___declspec] = ACTIONS(3083), + [anon_sym___based] = ACTIONS(3083), + [anon_sym___cdecl] = ACTIONS(3083), + [anon_sym___clrcall] = ACTIONS(3083), + [anon_sym___stdcall] = ACTIONS(3083), + [anon_sym___fastcall] = ACTIONS(3083), + [anon_sym___thiscall] = ACTIONS(3083), + [anon_sym___vectorcall] = ACTIONS(3083), + [anon_sym_LBRACE] = ACTIONS(3085), + [anon_sym_signed] = ACTIONS(3083), + [anon_sym_unsigned] = ACTIONS(3083), + [anon_sym_long] = ACTIONS(3083), + [anon_sym_short] = ACTIONS(3083), + [anon_sym_LBRACK] = ACTIONS(3083), + [anon_sym_static] = ACTIONS(3083), + [anon_sym_register] = ACTIONS(3083), + [anon_sym_inline] = ACTIONS(3083), + [anon_sym___inline] = ACTIONS(3083), + [anon_sym___inline__] = ACTIONS(3083), + [anon_sym___forceinline] = ACTIONS(3083), + [anon_sym_thread_local] = ACTIONS(3083), + [anon_sym___thread] = ACTIONS(3083), + [anon_sym_const] = ACTIONS(3083), + [anon_sym_constexpr] = ACTIONS(3083), + [anon_sym_volatile] = ACTIONS(3083), + [anon_sym_restrict] = ACTIONS(3083), + [anon_sym___restrict__] = ACTIONS(3083), + [anon_sym__Atomic] = ACTIONS(3083), + [anon_sym__Noreturn] = ACTIONS(3083), + [anon_sym_noreturn] = ACTIONS(3083), + [anon_sym_mutable] = ACTIONS(3083), + [anon_sym_constinit] = ACTIONS(3083), + [anon_sym_consteval] = ACTIONS(3083), + [sym_primitive_type] = ACTIONS(3083), + [anon_sym_enum] = ACTIONS(3083), + [anon_sym_class] = ACTIONS(3083), + [anon_sym_struct] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(3083), + [anon_sym_if] = ACTIONS(3083), + [anon_sym_else] = ACTIONS(3083), + [anon_sym_switch] = ACTIONS(3083), + [anon_sym_case] = ACTIONS(3083), + [anon_sym_default] = ACTIONS(3083), + [anon_sym_while] = ACTIONS(3083), + [anon_sym_do] = ACTIONS(3083), + [anon_sym_for] = ACTIONS(3083), + [anon_sym_return] = ACTIONS(3083), + [anon_sym_break] = ACTIONS(3083), + [anon_sym_continue] = ACTIONS(3083), + [anon_sym_goto] = ACTIONS(3083), + [anon_sym___try] = ACTIONS(3083), + [anon_sym___leave] = ACTIONS(3083), + [anon_sym_not] = ACTIONS(3083), + [anon_sym_compl] = ACTIONS(3083), + [anon_sym_DASH_DASH] = ACTIONS(3085), + [anon_sym_PLUS_PLUS] = ACTIONS(3085), + [anon_sym_sizeof] = ACTIONS(3083), + [anon_sym___alignof__] = ACTIONS(3083), + [anon_sym___alignof] = ACTIONS(3083), + [anon_sym__alignof] = ACTIONS(3083), + [anon_sym_alignof] = ACTIONS(3083), + [anon_sym__Alignof] = ACTIONS(3083), + [anon_sym_offsetof] = ACTIONS(3083), + [anon_sym__Generic] = ACTIONS(3083), + [anon_sym_asm] = ACTIONS(3083), + [anon_sym___asm__] = ACTIONS(3083), + [sym_number_literal] = ACTIONS(3085), + [anon_sym_L_SQUOTE] = ACTIONS(3085), + [anon_sym_u_SQUOTE] = ACTIONS(3085), + [anon_sym_U_SQUOTE] = ACTIONS(3085), + [anon_sym_u8_SQUOTE] = ACTIONS(3085), + [anon_sym_SQUOTE] = ACTIONS(3085), + [anon_sym_L_DQUOTE] = ACTIONS(3085), + [anon_sym_u_DQUOTE] = ACTIONS(3085), + [anon_sym_U_DQUOTE] = ACTIONS(3085), + [anon_sym_u8_DQUOTE] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(3085), + [sym_true] = ACTIONS(3083), + [sym_false] = ACTIONS(3083), + [anon_sym_NULL] = ACTIONS(3083), + [anon_sym_nullptr] = ACTIONS(3083), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3083), + [anon_sym_decltype] = ACTIONS(3083), + [anon_sym_virtual] = ACTIONS(3083), + [anon_sym_alignas] = ACTIONS(3083), + [anon_sym_explicit] = ACTIONS(3083), + [anon_sym_typename] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(3083), + [anon_sym_operator] = ACTIONS(3083), + [anon_sym_try] = ACTIONS(3083), + [anon_sym_delete] = ACTIONS(3083), + [anon_sym_throw] = ACTIONS(3083), + [anon_sym_namespace] = ACTIONS(3083), + [anon_sym_using] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(3083), + [anon_sym_concept] = ACTIONS(3083), + [anon_sym_co_return] = ACTIONS(3083), + [anon_sym_co_yield] = ACTIONS(3083), + [anon_sym_R_DQUOTE] = ACTIONS(3085), + [anon_sym_LR_DQUOTE] = ACTIONS(3085), + [anon_sym_uR_DQUOTE] = ACTIONS(3085), + [anon_sym_UR_DQUOTE] = ACTIONS(3085), + [anon_sym_u8R_DQUOTE] = ACTIONS(3085), + [anon_sym_co_await] = ACTIONS(3083), + [anon_sym_new] = ACTIONS(3083), + [anon_sym_requires] = ACTIONS(3083), + [sym_this] = ACTIONS(3083), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3085), + [sym_semgrep_named_ellipsis] = ACTIONS(3085), }, - [610] = { - [sym_identifier] = ACTIONS(3078), - [aux_sym_preproc_include_token1] = ACTIONS(3078), - [aux_sym_preproc_def_token1] = ACTIONS(3078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3080), - [anon_sym_COMMA] = ACTIONS(3187), - [aux_sym_preproc_if_token1] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3078), - [sym_preproc_directive] = ACTIONS(3078), - [anon_sym_LPAREN2] = ACTIONS(3080), - [anon_sym_BANG] = ACTIONS(3080), - [anon_sym_TILDE] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym_SEMI] = ACTIONS(3080), - [anon_sym___extension__] = ACTIONS(3078), - [anon_sym_typedef] = ACTIONS(3078), - [anon_sym_extern] = ACTIONS(3078), - [anon_sym___attribute__] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3080), - [anon_sym___declspec] = ACTIONS(3078), - [anon_sym___based] = ACTIONS(3078), - [anon_sym___cdecl] = ACTIONS(3078), - [anon_sym___clrcall] = ACTIONS(3078), - [anon_sym___stdcall] = ACTIONS(3078), - [anon_sym___fastcall] = ACTIONS(3078), - [anon_sym___thiscall] = ACTIONS(3078), - [anon_sym___vectorcall] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_RBRACE] = ACTIONS(3187), - [anon_sym_signed] = ACTIONS(3078), - [anon_sym_unsigned] = ACTIONS(3078), - [anon_sym_long] = ACTIONS(3078), - [anon_sym_short] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_static] = ACTIONS(3078), - [anon_sym_register] = ACTIONS(3078), - [anon_sym_inline] = ACTIONS(3078), - [anon_sym___inline] = ACTIONS(3078), - [anon_sym___inline__] = ACTIONS(3078), - [anon_sym___forceinline] = ACTIONS(3078), - [anon_sym_thread_local] = ACTIONS(3078), - [anon_sym___thread] = ACTIONS(3078), - [anon_sym_const] = ACTIONS(3078), - [anon_sym_constexpr] = ACTIONS(3078), - [anon_sym_volatile] = ACTIONS(3078), - [anon_sym_restrict] = ACTIONS(3078), - [anon_sym___restrict__] = ACTIONS(3078), - [anon_sym__Atomic] = ACTIONS(3078), - [anon_sym__Noreturn] = ACTIONS(3078), - [anon_sym_noreturn] = ACTIONS(3078), - [anon_sym_mutable] = ACTIONS(3078), - [anon_sym_constinit] = ACTIONS(3078), - [anon_sym_consteval] = ACTIONS(3078), - [sym_primitive_type] = ACTIONS(3078), - [anon_sym_enum] = ACTIONS(3078), - [anon_sym_class] = ACTIONS(3078), - [anon_sym_struct] = ACTIONS(3078), - [anon_sym_union] = ACTIONS(3078), - [anon_sym_if] = ACTIONS(3078), - [anon_sym_switch] = ACTIONS(3078), - [anon_sym_case] = ACTIONS(3078), - [anon_sym_default] = ACTIONS(3078), - [anon_sym_while] = ACTIONS(3078), - [anon_sym_do] = ACTIONS(3078), - [anon_sym_for] = ACTIONS(3078), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_break] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(3078), - [anon_sym_goto] = ACTIONS(3078), - [anon_sym___try] = ACTIONS(3078), - [anon_sym___leave] = ACTIONS(3078), - [anon_sym_not] = ACTIONS(3078), - [anon_sym_compl] = ACTIONS(3078), - [anon_sym_DASH_DASH] = ACTIONS(3080), - [anon_sym_PLUS_PLUS] = ACTIONS(3080), - [anon_sym_sizeof] = ACTIONS(3078), - [anon_sym___alignof__] = ACTIONS(3078), - [anon_sym___alignof] = ACTIONS(3078), - [anon_sym__alignof] = ACTIONS(3078), - [anon_sym_alignof] = ACTIONS(3078), - [anon_sym__Alignof] = ACTIONS(3078), - [anon_sym_offsetof] = ACTIONS(3078), - [anon_sym__Generic] = ACTIONS(3078), - [anon_sym_asm] = ACTIONS(3078), - [anon_sym___asm__] = ACTIONS(3078), - [sym_number_literal] = ACTIONS(3080), - [anon_sym_L_SQUOTE] = ACTIONS(3080), - [anon_sym_u_SQUOTE] = ACTIONS(3080), - [anon_sym_U_SQUOTE] = ACTIONS(3080), - [anon_sym_u8_SQUOTE] = ACTIONS(3080), - [anon_sym_SQUOTE] = ACTIONS(3080), - [anon_sym_L_DQUOTE] = ACTIONS(3080), - [anon_sym_u_DQUOTE] = ACTIONS(3080), - [anon_sym_U_DQUOTE] = ACTIONS(3080), - [anon_sym_u8_DQUOTE] = ACTIONS(3080), - [anon_sym_DQUOTE] = ACTIONS(3080), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [anon_sym_NULL] = ACTIONS(3078), - [anon_sym_nullptr] = ACTIONS(3078), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3078), - [anon_sym_decltype] = ACTIONS(3078), - [anon_sym_virtual] = ACTIONS(3078), - [anon_sym_alignas] = ACTIONS(3078), - [anon_sym_explicit] = ACTIONS(3078), - [anon_sym_typename] = ACTIONS(3078), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_operator] = ACTIONS(3078), - [anon_sym_try] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3078), - [anon_sym_throw] = ACTIONS(3078), - [anon_sym_namespace] = ACTIONS(3078), - [anon_sym_using] = ACTIONS(3078), - [anon_sym_static_assert] = ACTIONS(3078), - [anon_sym_concept] = ACTIONS(3078), - [anon_sym_co_return] = ACTIONS(3078), - [anon_sym_co_yield] = ACTIONS(3078), - [anon_sym_R_DQUOTE] = ACTIONS(3080), - [anon_sym_LR_DQUOTE] = ACTIONS(3080), - [anon_sym_uR_DQUOTE] = ACTIONS(3080), - [anon_sym_UR_DQUOTE] = ACTIONS(3080), - [anon_sym_u8R_DQUOTE] = ACTIONS(3080), - [anon_sym_co_await] = ACTIONS(3078), - [anon_sym_new] = ACTIONS(3078), - [anon_sym_requires] = ACTIONS(3078), - [sym_this] = ACTIONS(3078), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3080), - [sym_semgrep_named_ellipsis] = ACTIONS(3080), + [658] = { + [sym_identifier] = ACTIONS(3091), + [aux_sym_preproc_include_token1] = ACTIONS(3091), + [aux_sym_preproc_def_token1] = ACTIONS(3091), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3093), + [aux_sym_preproc_if_token1] = ACTIONS(3091), + [aux_sym_preproc_if_token2] = ACTIONS(3091), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3091), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3091), + [sym_preproc_directive] = ACTIONS(3091), + [anon_sym_LPAREN2] = ACTIONS(3093), + [anon_sym_BANG] = ACTIONS(3093), + [anon_sym_TILDE] = ACTIONS(3093), + [anon_sym_DASH] = ACTIONS(3091), + [anon_sym_PLUS] = ACTIONS(3091), + [anon_sym_STAR] = ACTIONS(3093), + [anon_sym_AMP_AMP] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym___extension__] = ACTIONS(3091), + [anon_sym_typedef] = ACTIONS(3091), + [anon_sym_extern] = ACTIONS(3091), + [anon_sym___attribute__] = ACTIONS(3091), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3093), + [anon_sym___declspec] = ACTIONS(3091), + [anon_sym___based] = ACTIONS(3091), + [anon_sym___cdecl] = ACTIONS(3091), + [anon_sym___clrcall] = ACTIONS(3091), + [anon_sym___stdcall] = ACTIONS(3091), + [anon_sym___fastcall] = ACTIONS(3091), + [anon_sym___thiscall] = ACTIONS(3091), + [anon_sym___vectorcall] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_signed] = ACTIONS(3091), + [anon_sym_unsigned] = ACTIONS(3091), + [anon_sym_long] = ACTIONS(3091), + [anon_sym_short] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_static] = ACTIONS(3091), + [anon_sym_register] = ACTIONS(3091), + [anon_sym_inline] = ACTIONS(3091), + [anon_sym___inline] = ACTIONS(3091), + [anon_sym___inline__] = ACTIONS(3091), + [anon_sym___forceinline] = ACTIONS(3091), + [anon_sym_thread_local] = ACTIONS(3091), + [anon_sym___thread] = ACTIONS(3091), + [anon_sym_const] = ACTIONS(3091), + [anon_sym_constexpr] = ACTIONS(3091), + [anon_sym_volatile] = ACTIONS(3091), + [anon_sym_restrict] = ACTIONS(3091), + [anon_sym___restrict__] = ACTIONS(3091), + [anon_sym__Atomic] = ACTIONS(3091), + [anon_sym__Noreturn] = ACTIONS(3091), + [anon_sym_noreturn] = ACTIONS(3091), + [anon_sym_mutable] = ACTIONS(3091), + [anon_sym_constinit] = ACTIONS(3091), + [anon_sym_consteval] = ACTIONS(3091), + [sym_primitive_type] = ACTIONS(3091), + [anon_sym_enum] = ACTIONS(3091), + [anon_sym_class] = ACTIONS(3091), + [anon_sym_struct] = ACTIONS(3091), + [anon_sym_union] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3091), + [anon_sym_else] = ACTIONS(3091), + [anon_sym_switch] = ACTIONS(3091), + [anon_sym_case] = ACTIONS(3091), + [anon_sym_default] = ACTIONS(3091), + [anon_sym_while] = ACTIONS(3091), + [anon_sym_do] = ACTIONS(3091), + [anon_sym_for] = ACTIONS(3091), + [anon_sym_return] = ACTIONS(3091), + [anon_sym_break] = ACTIONS(3091), + [anon_sym_continue] = ACTIONS(3091), + [anon_sym_goto] = ACTIONS(3091), + [anon_sym___try] = ACTIONS(3091), + [anon_sym___leave] = ACTIONS(3091), + [anon_sym_not] = ACTIONS(3091), + [anon_sym_compl] = ACTIONS(3091), + [anon_sym_DASH_DASH] = ACTIONS(3093), + [anon_sym_PLUS_PLUS] = ACTIONS(3093), + [anon_sym_sizeof] = ACTIONS(3091), + [anon_sym___alignof__] = ACTIONS(3091), + [anon_sym___alignof] = ACTIONS(3091), + [anon_sym__alignof] = ACTIONS(3091), + [anon_sym_alignof] = ACTIONS(3091), + [anon_sym__Alignof] = ACTIONS(3091), + [anon_sym_offsetof] = ACTIONS(3091), + [anon_sym__Generic] = ACTIONS(3091), + [anon_sym_asm] = ACTIONS(3091), + [anon_sym___asm__] = ACTIONS(3091), + [sym_number_literal] = ACTIONS(3093), + [anon_sym_L_SQUOTE] = ACTIONS(3093), + [anon_sym_u_SQUOTE] = ACTIONS(3093), + [anon_sym_U_SQUOTE] = ACTIONS(3093), + [anon_sym_u8_SQUOTE] = ACTIONS(3093), + [anon_sym_SQUOTE] = ACTIONS(3093), + [anon_sym_L_DQUOTE] = ACTIONS(3093), + [anon_sym_u_DQUOTE] = ACTIONS(3093), + [anon_sym_U_DQUOTE] = ACTIONS(3093), + [anon_sym_u8_DQUOTE] = ACTIONS(3093), + [anon_sym_DQUOTE] = ACTIONS(3093), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [anon_sym_NULL] = ACTIONS(3091), + [anon_sym_nullptr] = ACTIONS(3091), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3091), + [anon_sym_decltype] = ACTIONS(3091), + [anon_sym_virtual] = ACTIONS(3091), + [anon_sym_alignas] = ACTIONS(3091), + [anon_sym_explicit] = ACTIONS(3091), + [anon_sym_typename] = ACTIONS(3091), + [anon_sym_template] = ACTIONS(3091), + [anon_sym_operator] = ACTIONS(3091), + [anon_sym_try] = ACTIONS(3091), + [anon_sym_delete] = ACTIONS(3091), + [anon_sym_throw] = ACTIONS(3091), + [anon_sym_namespace] = ACTIONS(3091), + [anon_sym_using] = ACTIONS(3091), + [anon_sym_static_assert] = ACTIONS(3091), + [anon_sym_concept] = ACTIONS(3091), + [anon_sym_co_return] = ACTIONS(3091), + [anon_sym_co_yield] = ACTIONS(3091), + [anon_sym_R_DQUOTE] = ACTIONS(3093), + [anon_sym_LR_DQUOTE] = ACTIONS(3093), + [anon_sym_uR_DQUOTE] = ACTIONS(3093), + [anon_sym_UR_DQUOTE] = ACTIONS(3093), + [anon_sym_u8R_DQUOTE] = ACTIONS(3093), + [anon_sym_co_await] = ACTIONS(3091), + [anon_sym_new] = ACTIONS(3091), + [anon_sym_requires] = ACTIONS(3091), + [sym_this] = ACTIONS(3091), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3093), + [sym_semgrep_named_ellipsis] = ACTIONS(3093), }, - [611] = { - [ts_builtin_sym_end] = ACTIONS(3195), - [sym_identifier] = ACTIONS(3193), - [aux_sym_preproc_include_token1] = ACTIONS(3193), - [aux_sym_preproc_def_token1] = ACTIONS(3193), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3195), - [aux_sym_preproc_if_token1] = ACTIONS(3193), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3193), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3193), - [sym_preproc_directive] = ACTIONS(3193), - [anon_sym_LPAREN2] = ACTIONS(3195), - [anon_sym_BANG] = ACTIONS(3195), - [anon_sym_TILDE] = ACTIONS(3195), - [anon_sym_DASH] = ACTIONS(3193), - [anon_sym_PLUS] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3195), - [anon_sym___extension__] = ACTIONS(3193), - [anon_sym_typedef] = ACTIONS(3193), - [anon_sym_extern] = ACTIONS(3193), - [anon_sym___attribute__] = ACTIONS(3193), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3195), - [anon_sym___declspec] = ACTIONS(3193), - [anon_sym___based] = ACTIONS(3193), - [anon_sym___cdecl] = ACTIONS(3193), - [anon_sym___clrcall] = ACTIONS(3193), - [anon_sym___stdcall] = ACTIONS(3193), - [anon_sym___fastcall] = ACTIONS(3193), - [anon_sym___thiscall] = ACTIONS(3193), - [anon_sym___vectorcall] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3195), - [anon_sym_signed] = ACTIONS(3193), - [anon_sym_unsigned] = ACTIONS(3193), - [anon_sym_long] = ACTIONS(3193), - [anon_sym_short] = ACTIONS(3193), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_static] = ACTIONS(3193), - [anon_sym_register] = ACTIONS(3193), - [anon_sym_inline] = ACTIONS(3193), - [anon_sym___inline] = ACTIONS(3193), - [anon_sym___inline__] = ACTIONS(3193), - [anon_sym___forceinline] = ACTIONS(3193), - [anon_sym_thread_local] = ACTIONS(3193), - [anon_sym___thread] = ACTIONS(3193), - [anon_sym_const] = ACTIONS(3193), - [anon_sym_constexpr] = ACTIONS(3193), - [anon_sym_volatile] = ACTIONS(3193), - [anon_sym_restrict] = ACTIONS(3193), - [anon_sym___restrict__] = ACTIONS(3193), - [anon_sym__Atomic] = ACTIONS(3193), - [anon_sym__Noreturn] = ACTIONS(3193), - [anon_sym_noreturn] = ACTIONS(3193), - [anon_sym_mutable] = ACTIONS(3193), - [anon_sym_constinit] = ACTIONS(3193), - [anon_sym_consteval] = ACTIONS(3193), - [sym_primitive_type] = ACTIONS(3193), - [anon_sym_enum] = ACTIONS(3193), - [anon_sym_class] = ACTIONS(3193), - [anon_sym_struct] = ACTIONS(3193), - [anon_sym_union] = ACTIONS(3193), - [anon_sym_if] = ACTIONS(3193), - [anon_sym_else] = ACTIONS(3193), - [anon_sym_switch] = ACTIONS(3193), - [anon_sym_case] = ACTIONS(3193), - [anon_sym_default] = ACTIONS(3193), - [anon_sym_while] = ACTIONS(3193), - [anon_sym_do] = ACTIONS(3193), - [anon_sym_for] = ACTIONS(3193), - [anon_sym_return] = ACTIONS(3193), - [anon_sym_break] = ACTIONS(3193), - [anon_sym_continue] = ACTIONS(3193), - [anon_sym_goto] = ACTIONS(3193), - [anon_sym___try] = ACTIONS(3193), - [anon_sym___leave] = ACTIONS(3193), - [anon_sym_not] = ACTIONS(3193), - [anon_sym_compl] = ACTIONS(3193), - [anon_sym_DASH_DASH] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_sizeof] = ACTIONS(3193), - [anon_sym___alignof__] = ACTIONS(3193), - [anon_sym___alignof] = ACTIONS(3193), - [anon_sym__alignof] = ACTIONS(3193), - [anon_sym_alignof] = ACTIONS(3193), - [anon_sym__Alignof] = ACTIONS(3193), - [anon_sym_offsetof] = ACTIONS(3193), - [anon_sym__Generic] = ACTIONS(3193), - [anon_sym_asm] = ACTIONS(3193), - [anon_sym___asm__] = ACTIONS(3193), - [sym_number_literal] = ACTIONS(3195), - [anon_sym_L_SQUOTE] = ACTIONS(3195), - [anon_sym_u_SQUOTE] = ACTIONS(3195), - [anon_sym_U_SQUOTE] = ACTIONS(3195), - [anon_sym_u8_SQUOTE] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(3195), - [anon_sym_L_DQUOTE] = ACTIONS(3195), - [anon_sym_u_DQUOTE] = ACTIONS(3195), - [anon_sym_U_DQUOTE] = ACTIONS(3195), - [anon_sym_u8_DQUOTE] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(3195), - [sym_true] = ACTIONS(3193), - [sym_false] = ACTIONS(3193), - [anon_sym_NULL] = ACTIONS(3193), - [anon_sym_nullptr] = ACTIONS(3193), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3193), - [anon_sym_decltype] = ACTIONS(3193), - [anon_sym_virtual] = ACTIONS(3193), - [anon_sym_alignas] = ACTIONS(3193), - [anon_sym_explicit] = ACTIONS(3193), - [anon_sym_typename] = ACTIONS(3193), - [anon_sym_template] = ACTIONS(3193), - [anon_sym_operator] = ACTIONS(3193), - [anon_sym_try] = ACTIONS(3193), - [anon_sym_delete] = ACTIONS(3193), - [anon_sym_throw] = ACTIONS(3193), - [anon_sym_namespace] = ACTIONS(3193), - [anon_sym_using] = ACTIONS(3193), - [anon_sym_static_assert] = ACTIONS(3193), - [anon_sym_concept] = ACTIONS(3193), - [anon_sym_co_return] = ACTIONS(3193), - [anon_sym_co_yield] = ACTIONS(3193), - [anon_sym_R_DQUOTE] = ACTIONS(3195), - [anon_sym_LR_DQUOTE] = ACTIONS(3195), - [anon_sym_uR_DQUOTE] = ACTIONS(3195), - [anon_sym_UR_DQUOTE] = ACTIONS(3195), - [anon_sym_u8R_DQUOTE] = ACTIONS(3195), - [anon_sym_co_await] = ACTIONS(3193), - [anon_sym_new] = ACTIONS(3193), - [anon_sym_requires] = ACTIONS(3193), - [sym_this] = ACTIONS(3193), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3195), - [sym_semgrep_named_ellipsis] = ACTIONS(3195), - }, - [612] = { - [sym_identifier] = ACTIONS(3189), - [aux_sym_preproc_include_token1] = ACTIONS(3189), - [aux_sym_preproc_def_token1] = ACTIONS(3189), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), - [aux_sym_preproc_if_token1] = ACTIONS(3189), - [aux_sym_preproc_if_token2] = ACTIONS(3189), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3189), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3189), - [sym_preproc_directive] = ACTIONS(3189), - [anon_sym_LPAREN2] = ACTIONS(3191), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_TILDE] = ACTIONS(3191), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_STAR] = ACTIONS(3191), - [anon_sym_AMP_AMP] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_SEMI] = ACTIONS(3191), - [anon_sym___extension__] = ACTIONS(3189), - [anon_sym_typedef] = ACTIONS(3189), - [anon_sym_extern] = ACTIONS(3189), - [anon_sym___attribute__] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3191), - [anon_sym___declspec] = ACTIONS(3189), - [anon_sym___based] = ACTIONS(3189), - [anon_sym___cdecl] = ACTIONS(3189), - [anon_sym___clrcall] = ACTIONS(3189), - [anon_sym___stdcall] = ACTIONS(3189), - [anon_sym___fastcall] = ACTIONS(3189), - [anon_sym___thiscall] = ACTIONS(3189), - [anon_sym___vectorcall] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3191), - [anon_sym_signed] = ACTIONS(3189), - [anon_sym_unsigned] = ACTIONS(3189), - [anon_sym_long] = ACTIONS(3189), - [anon_sym_short] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_static] = ACTIONS(3189), - [anon_sym_register] = ACTIONS(3189), - [anon_sym_inline] = ACTIONS(3189), - [anon_sym___inline] = ACTIONS(3189), - [anon_sym___inline__] = ACTIONS(3189), - [anon_sym___forceinline] = ACTIONS(3189), - [anon_sym_thread_local] = ACTIONS(3189), - [anon_sym___thread] = ACTIONS(3189), - [anon_sym_const] = ACTIONS(3189), - [anon_sym_constexpr] = ACTIONS(3189), - [anon_sym_volatile] = ACTIONS(3189), - [anon_sym_restrict] = ACTIONS(3189), - [anon_sym___restrict__] = ACTIONS(3189), - [anon_sym__Atomic] = ACTIONS(3189), - [anon_sym__Noreturn] = ACTIONS(3189), - [anon_sym_noreturn] = ACTIONS(3189), - [anon_sym_mutable] = ACTIONS(3189), - [anon_sym_constinit] = ACTIONS(3189), - [anon_sym_consteval] = ACTIONS(3189), - [sym_primitive_type] = ACTIONS(3189), - [anon_sym_enum] = ACTIONS(3189), - [anon_sym_class] = ACTIONS(3189), - [anon_sym_struct] = ACTIONS(3189), - [anon_sym_union] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_switch] = ACTIONS(3189), - [anon_sym_case] = ACTIONS(3189), - [anon_sym_default] = ACTIONS(3189), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_do] = ACTIONS(3189), - [anon_sym_for] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_break] = ACTIONS(3189), - [anon_sym_continue] = ACTIONS(3189), - [anon_sym_goto] = ACTIONS(3189), - [anon_sym___try] = ACTIONS(3189), - [anon_sym___leave] = ACTIONS(3189), - [anon_sym_not] = ACTIONS(3189), - [anon_sym_compl] = ACTIONS(3189), - [anon_sym_DASH_DASH] = ACTIONS(3191), - [anon_sym_PLUS_PLUS] = ACTIONS(3191), - [anon_sym_sizeof] = ACTIONS(3189), - [anon_sym___alignof__] = ACTIONS(3189), - [anon_sym___alignof] = ACTIONS(3189), - [anon_sym__alignof] = ACTIONS(3189), - [anon_sym_alignof] = ACTIONS(3189), - [anon_sym__Alignof] = ACTIONS(3189), - [anon_sym_offsetof] = ACTIONS(3189), - [anon_sym__Generic] = ACTIONS(3189), - [anon_sym_asm] = ACTIONS(3189), - [anon_sym___asm__] = ACTIONS(3189), - [sym_number_literal] = ACTIONS(3191), - [anon_sym_L_SQUOTE] = ACTIONS(3191), - [anon_sym_u_SQUOTE] = ACTIONS(3191), - [anon_sym_U_SQUOTE] = ACTIONS(3191), - [anon_sym_u8_SQUOTE] = ACTIONS(3191), - [anon_sym_SQUOTE] = ACTIONS(3191), - [anon_sym_L_DQUOTE] = ACTIONS(3191), - [anon_sym_u_DQUOTE] = ACTIONS(3191), - [anon_sym_U_DQUOTE] = ACTIONS(3191), - [anon_sym_u8_DQUOTE] = ACTIONS(3191), - [anon_sym_DQUOTE] = ACTIONS(3191), - [sym_true] = ACTIONS(3189), - [sym_false] = ACTIONS(3189), - [anon_sym_NULL] = ACTIONS(3189), - [anon_sym_nullptr] = ACTIONS(3189), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3189), - [anon_sym_decltype] = ACTIONS(3189), - [anon_sym_virtual] = ACTIONS(3189), - [anon_sym_alignas] = ACTIONS(3189), - [anon_sym_explicit] = ACTIONS(3189), - [anon_sym_typename] = ACTIONS(3189), - [anon_sym_template] = ACTIONS(3189), - [anon_sym_operator] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_delete] = ACTIONS(3189), - [anon_sym_throw] = ACTIONS(3189), - [anon_sym_namespace] = ACTIONS(3189), - [anon_sym_using] = ACTIONS(3189), - [anon_sym_static_assert] = ACTIONS(3189), - [anon_sym_concept] = ACTIONS(3189), - [anon_sym_co_return] = ACTIONS(3189), - [anon_sym_co_yield] = ACTIONS(3189), - [anon_sym_R_DQUOTE] = ACTIONS(3191), - [anon_sym_LR_DQUOTE] = ACTIONS(3191), - [anon_sym_uR_DQUOTE] = ACTIONS(3191), - [anon_sym_UR_DQUOTE] = ACTIONS(3191), - [anon_sym_u8R_DQUOTE] = ACTIONS(3191), - [anon_sym_co_await] = ACTIONS(3189), - [anon_sym_new] = ACTIONS(3189), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3189), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3191), - [sym_semgrep_named_ellipsis] = ACTIONS(3191), - }, - [613] = { - [sym_identifier] = ACTIONS(3227), - [aux_sym_preproc_include_token1] = ACTIONS(3227), - [aux_sym_preproc_def_token1] = ACTIONS(3227), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3229), - [aux_sym_preproc_if_token1] = ACTIONS(3227), - [aux_sym_preproc_if_token2] = ACTIONS(3227), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3227), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3227), - [sym_preproc_directive] = ACTIONS(3227), - [anon_sym_LPAREN2] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_TILDE] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_AMP_AMP] = ACTIONS(3229), - [anon_sym_AMP] = ACTIONS(3227), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym___extension__] = ACTIONS(3227), - [anon_sym_typedef] = ACTIONS(3227), - [anon_sym_extern] = ACTIONS(3227), - [anon_sym___attribute__] = ACTIONS(3227), - [anon_sym_COLON_COLON] = ACTIONS(3229), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3229), - [anon_sym___declspec] = ACTIONS(3227), - [anon_sym___based] = ACTIONS(3227), - [anon_sym___cdecl] = ACTIONS(3227), - [anon_sym___clrcall] = ACTIONS(3227), - [anon_sym___stdcall] = ACTIONS(3227), - [anon_sym___fastcall] = ACTIONS(3227), - [anon_sym___thiscall] = ACTIONS(3227), - [anon_sym___vectorcall] = ACTIONS(3227), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_signed] = ACTIONS(3227), - [anon_sym_unsigned] = ACTIONS(3227), - [anon_sym_long] = ACTIONS(3227), - [anon_sym_short] = ACTIONS(3227), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_static] = ACTIONS(3227), - [anon_sym_register] = ACTIONS(3227), - [anon_sym_inline] = ACTIONS(3227), - [anon_sym___inline] = ACTIONS(3227), - [anon_sym___inline__] = ACTIONS(3227), - [anon_sym___forceinline] = ACTIONS(3227), - [anon_sym_thread_local] = ACTIONS(3227), - [anon_sym___thread] = ACTIONS(3227), - [anon_sym_const] = ACTIONS(3227), - [anon_sym_constexpr] = ACTIONS(3227), - [anon_sym_volatile] = ACTIONS(3227), - [anon_sym_restrict] = ACTIONS(3227), - [anon_sym___restrict__] = ACTIONS(3227), - [anon_sym__Atomic] = ACTIONS(3227), - [anon_sym__Noreturn] = ACTIONS(3227), - [anon_sym_noreturn] = ACTIONS(3227), - [anon_sym_mutable] = ACTIONS(3227), - [anon_sym_constinit] = ACTIONS(3227), - [anon_sym_consteval] = ACTIONS(3227), - [sym_primitive_type] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(3227), - [anon_sym_class] = ACTIONS(3227), - [anon_sym_struct] = ACTIONS(3227), - [anon_sym_union] = ACTIONS(3227), - [anon_sym_if] = ACTIONS(3227), - [anon_sym_else] = ACTIONS(3227), - [anon_sym_switch] = ACTIONS(3227), - [anon_sym_case] = ACTIONS(3227), - [anon_sym_default] = ACTIONS(3227), - [anon_sym_while] = ACTIONS(3227), - [anon_sym_do] = ACTIONS(3227), - [anon_sym_for] = ACTIONS(3227), - [anon_sym_return] = ACTIONS(3227), - [anon_sym_break] = ACTIONS(3227), - [anon_sym_continue] = ACTIONS(3227), - [anon_sym_goto] = ACTIONS(3227), - [anon_sym___try] = ACTIONS(3227), - [anon_sym___leave] = ACTIONS(3227), - [anon_sym_not] = ACTIONS(3227), - [anon_sym_compl] = ACTIONS(3227), - [anon_sym_DASH_DASH] = ACTIONS(3229), - [anon_sym_PLUS_PLUS] = ACTIONS(3229), - [anon_sym_sizeof] = ACTIONS(3227), - [anon_sym___alignof__] = ACTIONS(3227), - [anon_sym___alignof] = ACTIONS(3227), - [anon_sym__alignof] = ACTIONS(3227), - [anon_sym_alignof] = ACTIONS(3227), - [anon_sym__Alignof] = ACTIONS(3227), - [anon_sym_offsetof] = ACTIONS(3227), - [anon_sym__Generic] = ACTIONS(3227), - [anon_sym_asm] = ACTIONS(3227), - [anon_sym___asm__] = ACTIONS(3227), - [sym_number_literal] = ACTIONS(3229), - [anon_sym_L_SQUOTE] = ACTIONS(3229), - [anon_sym_u_SQUOTE] = ACTIONS(3229), - [anon_sym_U_SQUOTE] = ACTIONS(3229), - [anon_sym_u8_SQUOTE] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3229), - [anon_sym_L_DQUOTE] = ACTIONS(3229), - [anon_sym_u_DQUOTE] = ACTIONS(3229), - [anon_sym_U_DQUOTE] = ACTIONS(3229), - [anon_sym_u8_DQUOTE] = ACTIONS(3229), - [anon_sym_DQUOTE] = ACTIONS(3229), - [sym_true] = ACTIONS(3227), - [sym_false] = ACTIONS(3227), - [anon_sym_NULL] = ACTIONS(3227), - [anon_sym_nullptr] = ACTIONS(3227), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3227), - [anon_sym_decltype] = ACTIONS(3227), - [anon_sym_virtual] = ACTIONS(3227), - [anon_sym_alignas] = ACTIONS(3227), - [anon_sym_explicit] = ACTIONS(3227), - [anon_sym_typename] = ACTIONS(3227), - [anon_sym_template] = ACTIONS(3227), - [anon_sym_operator] = ACTIONS(3227), - [anon_sym_try] = ACTIONS(3227), - [anon_sym_delete] = ACTIONS(3227), - [anon_sym_throw] = ACTIONS(3227), - [anon_sym_namespace] = ACTIONS(3227), - [anon_sym_using] = ACTIONS(3227), - [anon_sym_static_assert] = ACTIONS(3227), - [anon_sym_concept] = ACTIONS(3227), - [anon_sym_co_return] = ACTIONS(3227), - [anon_sym_co_yield] = ACTIONS(3227), - [anon_sym_R_DQUOTE] = ACTIONS(3229), - [anon_sym_LR_DQUOTE] = ACTIONS(3229), - [anon_sym_uR_DQUOTE] = ACTIONS(3229), - [anon_sym_UR_DQUOTE] = ACTIONS(3229), - [anon_sym_u8R_DQUOTE] = ACTIONS(3229), - [anon_sym_co_await] = ACTIONS(3227), - [anon_sym_new] = ACTIONS(3227), - [anon_sym_requires] = ACTIONS(3227), - [sym_this] = ACTIONS(3227), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3229), - [sym_semgrep_named_ellipsis] = ACTIONS(3229), - }, - [614] = { - [sym_identifier] = ACTIONS(3139), - [aux_sym_preproc_include_token1] = ACTIONS(3139), - [aux_sym_preproc_def_token1] = ACTIONS(3139), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3141), - [aux_sym_preproc_if_token1] = ACTIONS(3139), - [aux_sym_preproc_if_token2] = ACTIONS(3139), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3139), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3139), - [sym_preproc_directive] = ACTIONS(3139), - [anon_sym_LPAREN2] = ACTIONS(3141), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_AMP_AMP] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3139), - [anon_sym_SEMI] = ACTIONS(3141), - [anon_sym___extension__] = ACTIONS(3139), - [anon_sym_typedef] = ACTIONS(3139), - [anon_sym_extern] = ACTIONS(3139), - [anon_sym___attribute__] = ACTIONS(3139), - [anon_sym_COLON_COLON] = ACTIONS(3141), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3141), - [anon_sym___declspec] = ACTIONS(3139), - [anon_sym___based] = ACTIONS(3139), - [anon_sym___cdecl] = ACTIONS(3139), - [anon_sym___clrcall] = ACTIONS(3139), - [anon_sym___stdcall] = ACTIONS(3139), - [anon_sym___fastcall] = ACTIONS(3139), - [anon_sym___thiscall] = ACTIONS(3139), - [anon_sym___vectorcall] = ACTIONS(3139), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_signed] = ACTIONS(3139), - [anon_sym_unsigned] = ACTIONS(3139), - [anon_sym_long] = ACTIONS(3139), - [anon_sym_short] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_static] = ACTIONS(3139), - [anon_sym_register] = ACTIONS(3139), - [anon_sym_inline] = ACTIONS(3139), - [anon_sym___inline] = ACTIONS(3139), - [anon_sym___inline__] = ACTIONS(3139), - [anon_sym___forceinline] = ACTIONS(3139), - [anon_sym_thread_local] = ACTIONS(3139), - [anon_sym___thread] = ACTIONS(3139), - [anon_sym_const] = ACTIONS(3139), - [anon_sym_constexpr] = ACTIONS(3139), - [anon_sym_volatile] = ACTIONS(3139), - [anon_sym_restrict] = ACTIONS(3139), - [anon_sym___restrict__] = ACTIONS(3139), - [anon_sym__Atomic] = ACTIONS(3139), - [anon_sym__Noreturn] = ACTIONS(3139), - [anon_sym_noreturn] = ACTIONS(3139), - [anon_sym_mutable] = ACTIONS(3139), - [anon_sym_constinit] = ACTIONS(3139), - [anon_sym_consteval] = ACTIONS(3139), - [sym_primitive_type] = ACTIONS(3139), - [anon_sym_enum] = ACTIONS(3139), - [anon_sym_class] = ACTIONS(3139), - [anon_sym_struct] = ACTIONS(3139), - [anon_sym_union] = ACTIONS(3139), - [anon_sym_if] = ACTIONS(3139), - [anon_sym_else] = ACTIONS(3139), - [anon_sym_switch] = ACTIONS(3139), - [anon_sym_case] = ACTIONS(3139), - [anon_sym_default] = ACTIONS(3139), - [anon_sym_while] = ACTIONS(3139), - [anon_sym_do] = ACTIONS(3139), - [anon_sym_for] = ACTIONS(3139), - [anon_sym_return] = ACTIONS(3139), - [anon_sym_break] = ACTIONS(3139), - [anon_sym_continue] = ACTIONS(3139), - [anon_sym_goto] = ACTIONS(3139), - [anon_sym___try] = ACTIONS(3139), - [anon_sym___leave] = ACTIONS(3139), - [anon_sym_not] = ACTIONS(3139), - [anon_sym_compl] = ACTIONS(3139), - [anon_sym_DASH_DASH] = ACTIONS(3141), - [anon_sym_PLUS_PLUS] = ACTIONS(3141), - [anon_sym_sizeof] = ACTIONS(3139), - [anon_sym___alignof__] = ACTIONS(3139), - [anon_sym___alignof] = ACTIONS(3139), - [anon_sym__alignof] = ACTIONS(3139), - [anon_sym_alignof] = ACTIONS(3139), - [anon_sym__Alignof] = ACTIONS(3139), - [anon_sym_offsetof] = ACTIONS(3139), - [anon_sym__Generic] = ACTIONS(3139), - [anon_sym_asm] = ACTIONS(3139), - [anon_sym___asm__] = ACTIONS(3139), - [sym_number_literal] = ACTIONS(3141), - [anon_sym_L_SQUOTE] = ACTIONS(3141), - [anon_sym_u_SQUOTE] = ACTIONS(3141), - [anon_sym_U_SQUOTE] = ACTIONS(3141), - [anon_sym_u8_SQUOTE] = ACTIONS(3141), - [anon_sym_SQUOTE] = ACTIONS(3141), - [anon_sym_L_DQUOTE] = ACTIONS(3141), - [anon_sym_u_DQUOTE] = ACTIONS(3141), - [anon_sym_U_DQUOTE] = ACTIONS(3141), - [anon_sym_u8_DQUOTE] = ACTIONS(3141), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym_true] = ACTIONS(3139), - [sym_false] = ACTIONS(3139), - [anon_sym_NULL] = ACTIONS(3139), - [anon_sym_nullptr] = ACTIONS(3139), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3139), - [anon_sym_decltype] = ACTIONS(3139), - [anon_sym_virtual] = ACTIONS(3139), - [anon_sym_alignas] = ACTIONS(3139), - [anon_sym_explicit] = ACTIONS(3139), - [anon_sym_typename] = ACTIONS(3139), - [anon_sym_template] = ACTIONS(3139), - [anon_sym_operator] = ACTIONS(3139), - [anon_sym_try] = ACTIONS(3139), - [anon_sym_delete] = ACTIONS(3139), - [anon_sym_throw] = ACTIONS(3139), - [anon_sym_namespace] = ACTIONS(3139), - [anon_sym_using] = ACTIONS(3139), - [anon_sym_static_assert] = ACTIONS(3139), - [anon_sym_concept] = ACTIONS(3139), - [anon_sym_co_return] = ACTIONS(3139), - [anon_sym_co_yield] = ACTIONS(3139), - [anon_sym_R_DQUOTE] = ACTIONS(3141), - [anon_sym_LR_DQUOTE] = ACTIONS(3141), - [anon_sym_uR_DQUOTE] = ACTIONS(3141), - [anon_sym_UR_DQUOTE] = ACTIONS(3141), - [anon_sym_u8R_DQUOTE] = ACTIONS(3141), - [anon_sym_co_await] = ACTIONS(3139), - [anon_sym_new] = ACTIONS(3139), - [anon_sym_requires] = ACTIONS(3139), - [sym_this] = ACTIONS(3139), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3141), - [sym_semgrep_named_ellipsis] = ACTIONS(3141), - }, - [615] = { - [sym_identifier] = ACTIONS(3207), - [aux_sym_preproc_include_token1] = ACTIONS(3207), - [aux_sym_preproc_def_token1] = ACTIONS(3207), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3209), - [aux_sym_preproc_if_token1] = ACTIONS(3207), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3207), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3207), - [sym_preproc_directive] = ACTIONS(3207), - [anon_sym_LPAREN2] = ACTIONS(3209), - [anon_sym_BANG] = ACTIONS(3209), - [anon_sym_TILDE] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(3209), - [anon_sym_AMP_AMP] = ACTIONS(3209), - [anon_sym_AMP] = ACTIONS(3207), - [anon_sym_SEMI] = ACTIONS(3209), - [anon_sym___extension__] = ACTIONS(3207), - [anon_sym_typedef] = ACTIONS(3207), - [anon_sym_extern] = ACTIONS(3207), - [anon_sym___attribute__] = ACTIONS(3207), - [anon_sym_COLON_COLON] = ACTIONS(3209), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3209), - [anon_sym___declspec] = ACTIONS(3207), - [anon_sym___based] = ACTIONS(3207), - [anon_sym___cdecl] = ACTIONS(3207), - [anon_sym___clrcall] = ACTIONS(3207), - [anon_sym___stdcall] = ACTIONS(3207), - [anon_sym___fastcall] = ACTIONS(3207), - [anon_sym___thiscall] = ACTIONS(3207), - [anon_sym___vectorcall] = ACTIONS(3207), - [anon_sym_LBRACE] = ACTIONS(3209), - [anon_sym_RBRACE] = ACTIONS(3209), - [anon_sym_signed] = ACTIONS(3207), - [anon_sym_unsigned] = ACTIONS(3207), - [anon_sym_long] = ACTIONS(3207), - [anon_sym_short] = ACTIONS(3207), - [anon_sym_LBRACK] = ACTIONS(3207), - [anon_sym_static] = ACTIONS(3207), - [anon_sym_register] = ACTIONS(3207), - [anon_sym_inline] = ACTIONS(3207), - [anon_sym___inline] = ACTIONS(3207), - [anon_sym___inline__] = ACTIONS(3207), - [anon_sym___forceinline] = ACTIONS(3207), - [anon_sym_thread_local] = ACTIONS(3207), - [anon_sym___thread] = ACTIONS(3207), - [anon_sym_const] = ACTIONS(3207), - [anon_sym_constexpr] = ACTIONS(3207), - [anon_sym_volatile] = ACTIONS(3207), - [anon_sym_restrict] = ACTIONS(3207), - [anon_sym___restrict__] = ACTIONS(3207), - [anon_sym__Atomic] = ACTIONS(3207), - [anon_sym__Noreturn] = ACTIONS(3207), - [anon_sym_noreturn] = ACTIONS(3207), - [anon_sym_mutable] = ACTIONS(3207), - [anon_sym_constinit] = ACTIONS(3207), - [anon_sym_consteval] = ACTIONS(3207), - [sym_primitive_type] = ACTIONS(3207), - [anon_sym_enum] = ACTIONS(3207), - [anon_sym_class] = ACTIONS(3207), - [anon_sym_struct] = ACTIONS(3207), - [anon_sym_union] = ACTIONS(3207), - [anon_sym_if] = ACTIONS(3207), - [anon_sym_else] = ACTIONS(3207), - [anon_sym_switch] = ACTIONS(3207), - [anon_sym_case] = ACTIONS(3207), - [anon_sym_default] = ACTIONS(3207), - [anon_sym_while] = ACTIONS(3207), - [anon_sym_do] = ACTIONS(3207), - [anon_sym_for] = ACTIONS(3207), - [anon_sym_return] = ACTIONS(3207), - [anon_sym_break] = ACTIONS(3207), - [anon_sym_continue] = ACTIONS(3207), - [anon_sym_goto] = ACTIONS(3207), - [anon_sym___try] = ACTIONS(3207), - [anon_sym___leave] = ACTIONS(3207), - [anon_sym_not] = ACTIONS(3207), - [anon_sym_compl] = ACTIONS(3207), - [anon_sym_DASH_DASH] = ACTIONS(3209), - [anon_sym_PLUS_PLUS] = ACTIONS(3209), - [anon_sym_sizeof] = ACTIONS(3207), - [anon_sym___alignof__] = ACTIONS(3207), - [anon_sym___alignof] = ACTIONS(3207), - [anon_sym__alignof] = ACTIONS(3207), - [anon_sym_alignof] = ACTIONS(3207), - [anon_sym__Alignof] = ACTIONS(3207), - [anon_sym_offsetof] = ACTIONS(3207), - [anon_sym__Generic] = ACTIONS(3207), - [anon_sym_asm] = ACTIONS(3207), - [anon_sym___asm__] = ACTIONS(3207), - [sym_number_literal] = ACTIONS(3209), - [anon_sym_L_SQUOTE] = ACTIONS(3209), - [anon_sym_u_SQUOTE] = ACTIONS(3209), - [anon_sym_U_SQUOTE] = ACTIONS(3209), - [anon_sym_u8_SQUOTE] = ACTIONS(3209), - [anon_sym_SQUOTE] = ACTIONS(3209), - [anon_sym_L_DQUOTE] = ACTIONS(3209), - [anon_sym_u_DQUOTE] = ACTIONS(3209), - [anon_sym_U_DQUOTE] = ACTIONS(3209), - [anon_sym_u8_DQUOTE] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(3209), - [sym_true] = ACTIONS(3207), - [sym_false] = ACTIONS(3207), - [anon_sym_NULL] = ACTIONS(3207), - [anon_sym_nullptr] = ACTIONS(3207), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3207), - [anon_sym_decltype] = ACTIONS(3207), - [anon_sym_virtual] = ACTIONS(3207), - [anon_sym_alignas] = ACTIONS(3207), - [anon_sym_explicit] = ACTIONS(3207), - [anon_sym_typename] = ACTIONS(3207), - [anon_sym_template] = ACTIONS(3207), - [anon_sym_operator] = ACTIONS(3207), - [anon_sym_try] = ACTIONS(3207), - [anon_sym_delete] = ACTIONS(3207), - [anon_sym_throw] = ACTIONS(3207), - [anon_sym_namespace] = ACTIONS(3207), - [anon_sym_using] = ACTIONS(3207), - [anon_sym_static_assert] = ACTIONS(3207), - [anon_sym_concept] = ACTIONS(3207), - [anon_sym_co_return] = ACTIONS(3207), - [anon_sym_co_yield] = ACTIONS(3207), - [anon_sym_R_DQUOTE] = ACTIONS(3209), - [anon_sym_LR_DQUOTE] = ACTIONS(3209), - [anon_sym_uR_DQUOTE] = ACTIONS(3209), - [anon_sym_UR_DQUOTE] = ACTIONS(3209), - [anon_sym_u8R_DQUOTE] = ACTIONS(3209), - [anon_sym_co_await] = ACTIONS(3207), - [anon_sym_new] = ACTIONS(3207), - [anon_sym_requires] = ACTIONS(3207), - [sym_this] = ACTIONS(3207), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3209), - [sym_semgrep_named_ellipsis] = ACTIONS(3209), - }, - [616] = { - [sym_identifier] = ACTIONS(3201), - [aux_sym_preproc_include_token1] = ACTIONS(3201), - [aux_sym_preproc_def_token1] = ACTIONS(3201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3203), - [aux_sym_preproc_if_token1] = ACTIONS(3201), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3201), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3201), - [sym_preproc_directive] = ACTIONS(3201), - [anon_sym_LPAREN2] = ACTIONS(3203), - [anon_sym_BANG] = ACTIONS(3203), - [anon_sym_TILDE] = ACTIONS(3203), - [anon_sym_DASH] = ACTIONS(3201), - [anon_sym_PLUS] = ACTIONS(3201), - [anon_sym_STAR] = ACTIONS(3203), - [anon_sym_AMP_AMP] = ACTIONS(3203), - [anon_sym_AMP] = ACTIONS(3201), - [anon_sym_SEMI] = ACTIONS(3203), - [anon_sym___extension__] = ACTIONS(3201), - [anon_sym_typedef] = ACTIONS(3201), - [anon_sym_extern] = ACTIONS(3201), - [anon_sym___attribute__] = ACTIONS(3201), - [anon_sym_COLON_COLON] = ACTIONS(3203), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3203), - [anon_sym___declspec] = ACTIONS(3201), - [anon_sym___based] = ACTIONS(3201), - [anon_sym___cdecl] = ACTIONS(3201), - [anon_sym___clrcall] = ACTIONS(3201), - [anon_sym___stdcall] = ACTIONS(3201), - [anon_sym___fastcall] = ACTIONS(3201), - [anon_sym___thiscall] = ACTIONS(3201), - [anon_sym___vectorcall] = ACTIONS(3201), - [anon_sym_LBRACE] = ACTIONS(3203), - [anon_sym_RBRACE] = ACTIONS(3203), - [anon_sym_signed] = ACTIONS(3201), - [anon_sym_unsigned] = ACTIONS(3201), - [anon_sym_long] = ACTIONS(3201), - [anon_sym_short] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_static] = ACTIONS(3201), - [anon_sym_register] = ACTIONS(3201), - [anon_sym_inline] = ACTIONS(3201), - [anon_sym___inline] = ACTIONS(3201), - [anon_sym___inline__] = ACTIONS(3201), - [anon_sym___forceinline] = ACTIONS(3201), - [anon_sym_thread_local] = ACTIONS(3201), - [anon_sym___thread] = ACTIONS(3201), - [anon_sym_const] = ACTIONS(3201), - [anon_sym_constexpr] = ACTIONS(3201), - [anon_sym_volatile] = ACTIONS(3201), - [anon_sym_restrict] = ACTIONS(3201), - [anon_sym___restrict__] = ACTIONS(3201), - [anon_sym__Atomic] = ACTIONS(3201), - [anon_sym__Noreturn] = ACTIONS(3201), - [anon_sym_noreturn] = ACTIONS(3201), - [anon_sym_mutable] = ACTIONS(3201), - [anon_sym_constinit] = ACTIONS(3201), - [anon_sym_consteval] = ACTIONS(3201), - [sym_primitive_type] = ACTIONS(3201), - [anon_sym_enum] = ACTIONS(3201), - [anon_sym_class] = ACTIONS(3201), - [anon_sym_struct] = ACTIONS(3201), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_if] = ACTIONS(3201), - [anon_sym_else] = ACTIONS(3201), - [anon_sym_switch] = ACTIONS(3201), - [anon_sym_case] = ACTIONS(3201), - [anon_sym_default] = ACTIONS(3201), - [anon_sym_while] = ACTIONS(3201), - [anon_sym_do] = ACTIONS(3201), - [anon_sym_for] = ACTIONS(3201), - [anon_sym_return] = ACTIONS(3201), - [anon_sym_break] = ACTIONS(3201), - [anon_sym_continue] = ACTIONS(3201), - [anon_sym_goto] = ACTIONS(3201), - [anon_sym___try] = ACTIONS(3201), - [anon_sym___leave] = ACTIONS(3201), - [anon_sym_not] = ACTIONS(3201), - [anon_sym_compl] = ACTIONS(3201), - [anon_sym_DASH_DASH] = ACTIONS(3203), - [anon_sym_PLUS_PLUS] = ACTIONS(3203), - [anon_sym_sizeof] = ACTIONS(3201), - [anon_sym___alignof__] = ACTIONS(3201), - [anon_sym___alignof] = ACTIONS(3201), - [anon_sym__alignof] = ACTIONS(3201), - [anon_sym_alignof] = ACTIONS(3201), - [anon_sym__Alignof] = ACTIONS(3201), - [anon_sym_offsetof] = ACTIONS(3201), - [anon_sym__Generic] = ACTIONS(3201), - [anon_sym_asm] = ACTIONS(3201), - [anon_sym___asm__] = ACTIONS(3201), - [sym_number_literal] = ACTIONS(3203), - [anon_sym_L_SQUOTE] = ACTIONS(3203), - [anon_sym_u_SQUOTE] = ACTIONS(3203), - [anon_sym_U_SQUOTE] = ACTIONS(3203), - [anon_sym_u8_SQUOTE] = ACTIONS(3203), - [anon_sym_SQUOTE] = ACTIONS(3203), - [anon_sym_L_DQUOTE] = ACTIONS(3203), - [anon_sym_u_DQUOTE] = ACTIONS(3203), - [anon_sym_U_DQUOTE] = ACTIONS(3203), - [anon_sym_u8_DQUOTE] = ACTIONS(3203), - [anon_sym_DQUOTE] = ACTIONS(3203), - [sym_true] = ACTIONS(3201), - [sym_false] = ACTIONS(3201), - [anon_sym_NULL] = ACTIONS(3201), - [anon_sym_nullptr] = ACTIONS(3201), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3201), - [anon_sym_decltype] = ACTIONS(3201), - [anon_sym_virtual] = ACTIONS(3201), - [anon_sym_alignas] = ACTIONS(3201), - [anon_sym_explicit] = ACTIONS(3201), - [anon_sym_typename] = ACTIONS(3201), - [anon_sym_template] = ACTIONS(3201), - [anon_sym_operator] = ACTIONS(3201), - [anon_sym_try] = ACTIONS(3201), - [anon_sym_delete] = ACTIONS(3201), - [anon_sym_throw] = ACTIONS(3201), - [anon_sym_namespace] = ACTIONS(3201), - [anon_sym_using] = ACTIONS(3201), - [anon_sym_static_assert] = ACTIONS(3201), - [anon_sym_concept] = ACTIONS(3201), - [anon_sym_co_return] = ACTIONS(3201), - [anon_sym_co_yield] = ACTIONS(3201), - [anon_sym_R_DQUOTE] = ACTIONS(3203), - [anon_sym_LR_DQUOTE] = ACTIONS(3203), - [anon_sym_uR_DQUOTE] = ACTIONS(3203), - [anon_sym_UR_DQUOTE] = ACTIONS(3203), - [anon_sym_u8R_DQUOTE] = ACTIONS(3203), - [anon_sym_co_await] = ACTIONS(3201), - [anon_sym_new] = ACTIONS(3201), - [anon_sym_requires] = ACTIONS(3201), - [sym_this] = ACTIONS(3201), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3203), - [sym_semgrep_named_ellipsis] = ACTIONS(3203), - }, - [617] = { + [659] = { [ts_builtin_sym_end] = ACTIONS(3165), [sym_identifier] = ACTIONS(3163), [aux_sym_preproc_include_token1] = ACTIONS(3163), @@ -150825,1503 +146703,415 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3165), [sym_semgrep_named_ellipsis] = ACTIONS(3165), }, - [618] = { - [sym_identifier] = ACTIONS(3227), - [aux_sym_preproc_include_token1] = ACTIONS(3227), - [aux_sym_preproc_def_token1] = ACTIONS(3227), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3229), - [aux_sym_preproc_if_token1] = ACTIONS(3227), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3227), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3227), - [sym_preproc_directive] = ACTIONS(3227), - [anon_sym_LPAREN2] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_TILDE] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_AMP_AMP] = ACTIONS(3229), - [anon_sym_AMP] = ACTIONS(3227), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym___extension__] = ACTIONS(3227), - [anon_sym_typedef] = ACTIONS(3227), - [anon_sym_extern] = ACTIONS(3227), - [anon_sym___attribute__] = ACTIONS(3227), - [anon_sym_COLON_COLON] = ACTIONS(3229), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3229), - [anon_sym___declspec] = ACTIONS(3227), - [anon_sym___based] = ACTIONS(3227), - [anon_sym___cdecl] = ACTIONS(3227), - [anon_sym___clrcall] = ACTIONS(3227), - [anon_sym___stdcall] = ACTIONS(3227), - [anon_sym___fastcall] = ACTIONS(3227), - [anon_sym___thiscall] = ACTIONS(3227), - [anon_sym___vectorcall] = ACTIONS(3227), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_signed] = ACTIONS(3227), - [anon_sym_unsigned] = ACTIONS(3227), - [anon_sym_long] = ACTIONS(3227), - [anon_sym_short] = ACTIONS(3227), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_static] = ACTIONS(3227), - [anon_sym_register] = ACTIONS(3227), - [anon_sym_inline] = ACTIONS(3227), - [anon_sym___inline] = ACTIONS(3227), - [anon_sym___inline__] = ACTIONS(3227), - [anon_sym___forceinline] = ACTIONS(3227), - [anon_sym_thread_local] = ACTIONS(3227), - [anon_sym___thread] = ACTIONS(3227), - [anon_sym_const] = ACTIONS(3227), - [anon_sym_constexpr] = ACTIONS(3227), - [anon_sym_volatile] = ACTIONS(3227), - [anon_sym_restrict] = ACTIONS(3227), - [anon_sym___restrict__] = ACTIONS(3227), - [anon_sym__Atomic] = ACTIONS(3227), - [anon_sym__Noreturn] = ACTIONS(3227), - [anon_sym_noreturn] = ACTIONS(3227), - [anon_sym_mutable] = ACTIONS(3227), - [anon_sym_constinit] = ACTIONS(3227), - [anon_sym_consteval] = ACTIONS(3227), - [sym_primitive_type] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(3227), - [anon_sym_class] = ACTIONS(3227), - [anon_sym_struct] = ACTIONS(3227), - [anon_sym_union] = ACTIONS(3227), - [anon_sym_if] = ACTIONS(3227), - [anon_sym_else] = ACTIONS(3227), - [anon_sym_switch] = ACTIONS(3227), - [anon_sym_case] = ACTIONS(3227), - [anon_sym_default] = ACTIONS(3227), - [anon_sym_while] = ACTIONS(3227), - [anon_sym_do] = ACTIONS(3227), - [anon_sym_for] = ACTIONS(3227), - [anon_sym_return] = ACTIONS(3227), - [anon_sym_break] = ACTIONS(3227), - [anon_sym_continue] = ACTIONS(3227), - [anon_sym_goto] = ACTIONS(3227), - [anon_sym___try] = ACTIONS(3227), - [anon_sym___leave] = ACTIONS(3227), - [anon_sym_not] = ACTIONS(3227), - [anon_sym_compl] = ACTIONS(3227), - [anon_sym_DASH_DASH] = ACTIONS(3229), - [anon_sym_PLUS_PLUS] = ACTIONS(3229), - [anon_sym_sizeof] = ACTIONS(3227), - [anon_sym___alignof__] = ACTIONS(3227), - [anon_sym___alignof] = ACTIONS(3227), - [anon_sym__alignof] = ACTIONS(3227), - [anon_sym_alignof] = ACTIONS(3227), - [anon_sym__Alignof] = ACTIONS(3227), - [anon_sym_offsetof] = ACTIONS(3227), - [anon_sym__Generic] = ACTIONS(3227), - [anon_sym_asm] = ACTIONS(3227), - [anon_sym___asm__] = ACTIONS(3227), - [sym_number_literal] = ACTIONS(3229), - [anon_sym_L_SQUOTE] = ACTIONS(3229), - [anon_sym_u_SQUOTE] = ACTIONS(3229), - [anon_sym_U_SQUOTE] = ACTIONS(3229), - [anon_sym_u8_SQUOTE] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3229), - [anon_sym_L_DQUOTE] = ACTIONS(3229), - [anon_sym_u_DQUOTE] = ACTIONS(3229), - [anon_sym_U_DQUOTE] = ACTIONS(3229), - [anon_sym_u8_DQUOTE] = ACTIONS(3229), - [anon_sym_DQUOTE] = ACTIONS(3229), - [sym_true] = ACTIONS(3227), - [sym_false] = ACTIONS(3227), - [anon_sym_NULL] = ACTIONS(3227), - [anon_sym_nullptr] = ACTIONS(3227), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3227), - [anon_sym_decltype] = ACTIONS(3227), - [anon_sym_virtual] = ACTIONS(3227), - [anon_sym_alignas] = ACTIONS(3227), - [anon_sym_explicit] = ACTIONS(3227), - [anon_sym_typename] = ACTIONS(3227), - [anon_sym_template] = ACTIONS(3227), - [anon_sym_operator] = ACTIONS(3227), - [anon_sym_try] = ACTIONS(3227), - [anon_sym_delete] = ACTIONS(3227), - [anon_sym_throw] = ACTIONS(3227), - [anon_sym_namespace] = ACTIONS(3227), - [anon_sym_using] = ACTIONS(3227), - [anon_sym_static_assert] = ACTIONS(3227), - [anon_sym_concept] = ACTIONS(3227), - [anon_sym_co_return] = ACTIONS(3227), - [anon_sym_co_yield] = ACTIONS(3227), - [anon_sym_R_DQUOTE] = ACTIONS(3229), - [anon_sym_LR_DQUOTE] = ACTIONS(3229), - [anon_sym_uR_DQUOTE] = ACTIONS(3229), - [anon_sym_UR_DQUOTE] = ACTIONS(3229), - [anon_sym_u8R_DQUOTE] = ACTIONS(3229), - [anon_sym_co_await] = ACTIONS(3227), - [anon_sym_new] = ACTIONS(3227), - [anon_sym_requires] = ACTIONS(3227), - [sym_this] = ACTIONS(3227), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3229), - [sym_semgrep_named_ellipsis] = ACTIONS(3229), - }, - [619] = { - [ts_builtin_sym_end] = ACTIONS(3233), - [sym_identifier] = ACTIONS(3231), - [aux_sym_preproc_include_token1] = ACTIONS(3231), - [aux_sym_preproc_def_token1] = ACTIONS(3231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3233), - [aux_sym_preproc_if_token1] = ACTIONS(3231), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3231), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3231), - [sym_preproc_directive] = ACTIONS(3231), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(3233), - [anon_sym_TILDE] = ACTIONS(3233), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3233), - [anon_sym_AMP_AMP] = ACTIONS(3233), - [anon_sym_AMP] = ACTIONS(3231), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym___extension__] = ACTIONS(3231), - [anon_sym_typedef] = ACTIONS(3231), - [anon_sym_extern] = ACTIONS(3231), - [anon_sym___attribute__] = ACTIONS(3231), - [anon_sym_COLON_COLON] = ACTIONS(3233), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3233), - [anon_sym___declspec] = ACTIONS(3231), - [anon_sym___based] = ACTIONS(3231), - [anon_sym___cdecl] = ACTIONS(3231), - [anon_sym___clrcall] = ACTIONS(3231), - [anon_sym___stdcall] = ACTIONS(3231), - [anon_sym___fastcall] = ACTIONS(3231), - [anon_sym___thiscall] = ACTIONS(3231), - [anon_sym___vectorcall] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_signed] = ACTIONS(3231), - [anon_sym_unsigned] = ACTIONS(3231), - [anon_sym_long] = ACTIONS(3231), - [anon_sym_short] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_static] = ACTIONS(3231), - [anon_sym_register] = ACTIONS(3231), - [anon_sym_inline] = ACTIONS(3231), - [anon_sym___inline] = ACTIONS(3231), - [anon_sym___inline__] = ACTIONS(3231), - [anon_sym___forceinline] = ACTIONS(3231), - [anon_sym_thread_local] = ACTIONS(3231), - [anon_sym___thread] = ACTIONS(3231), - [anon_sym_const] = ACTIONS(3231), - [anon_sym_constexpr] = ACTIONS(3231), - [anon_sym_volatile] = ACTIONS(3231), - [anon_sym_restrict] = ACTIONS(3231), - [anon_sym___restrict__] = ACTIONS(3231), - [anon_sym__Atomic] = ACTIONS(3231), - [anon_sym__Noreturn] = ACTIONS(3231), - [anon_sym_noreturn] = ACTIONS(3231), - [anon_sym_mutable] = ACTIONS(3231), - [anon_sym_constinit] = ACTIONS(3231), - [anon_sym_consteval] = ACTIONS(3231), - [sym_primitive_type] = ACTIONS(3231), - [anon_sym_enum] = ACTIONS(3231), - [anon_sym_class] = ACTIONS(3231), - [anon_sym_struct] = ACTIONS(3231), - [anon_sym_union] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_else] = ACTIONS(3231), - [anon_sym_switch] = ACTIONS(3231), - [anon_sym_case] = ACTIONS(3231), - [anon_sym_default] = ACTIONS(3231), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_do] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_break] = ACTIONS(3231), - [anon_sym_continue] = ACTIONS(3231), - [anon_sym_goto] = ACTIONS(3231), - [anon_sym___try] = ACTIONS(3231), - [anon_sym___leave] = ACTIONS(3231), - [anon_sym_not] = ACTIONS(3231), - [anon_sym_compl] = ACTIONS(3231), - [anon_sym_DASH_DASH] = ACTIONS(3233), - [anon_sym_PLUS_PLUS] = ACTIONS(3233), - [anon_sym_sizeof] = ACTIONS(3231), - [anon_sym___alignof__] = ACTIONS(3231), - [anon_sym___alignof] = ACTIONS(3231), - [anon_sym__alignof] = ACTIONS(3231), - [anon_sym_alignof] = ACTIONS(3231), - [anon_sym__Alignof] = ACTIONS(3231), - [anon_sym_offsetof] = ACTIONS(3231), - [anon_sym__Generic] = ACTIONS(3231), - [anon_sym_asm] = ACTIONS(3231), - [anon_sym___asm__] = ACTIONS(3231), - [sym_number_literal] = ACTIONS(3233), - [anon_sym_L_SQUOTE] = ACTIONS(3233), - [anon_sym_u_SQUOTE] = ACTIONS(3233), - [anon_sym_U_SQUOTE] = ACTIONS(3233), - [anon_sym_u8_SQUOTE] = ACTIONS(3233), - [anon_sym_SQUOTE] = ACTIONS(3233), - [anon_sym_L_DQUOTE] = ACTIONS(3233), - [anon_sym_u_DQUOTE] = ACTIONS(3233), - [anon_sym_U_DQUOTE] = ACTIONS(3233), - [anon_sym_u8_DQUOTE] = ACTIONS(3233), - [anon_sym_DQUOTE] = ACTIONS(3233), - [sym_true] = ACTIONS(3231), - [sym_false] = ACTIONS(3231), - [anon_sym_NULL] = ACTIONS(3231), - [anon_sym_nullptr] = ACTIONS(3231), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3231), - [anon_sym_decltype] = ACTIONS(3231), - [anon_sym_virtual] = ACTIONS(3231), - [anon_sym_alignas] = ACTIONS(3231), - [anon_sym_explicit] = ACTIONS(3231), - [anon_sym_typename] = ACTIONS(3231), - [anon_sym_template] = ACTIONS(3231), - [anon_sym_operator] = ACTIONS(3231), - [anon_sym_try] = ACTIONS(3231), - [anon_sym_delete] = ACTIONS(3231), - [anon_sym_throw] = ACTIONS(3231), - [anon_sym_namespace] = ACTIONS(3231), - [anon_sym_using] = ACTIONS(3231), - [anon_sym_static_assert] = ACTIONS(3231), - [anon_sym_concept] = ACTIONS(3231), - [anon_sym_co_return] = ACTIONS(3231), - [anon_sym_co_yield] = ACTIONS(3231), - [anon_sym_R_DQUOTE] = ACTIONS(3233), - [anon_sym_LR_DQUOTE] = ACTIONS(3233), - [anon_sym_uR_DQUOTE] = ACTIONS(3233), - [anon_sym_UR_DQUOTE] = ACTIONS(3233), - [anon_sym_u8R_DQUOTE] = ACTIONS(3233), - [anon_sym_co_await] = ACTIONS(3231), - [anon_sym_new] = ACTIONS(3231), - [anon_sym_requires] = ACTIONS(3231), - [sym_this] = ACTIONS(3231), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3233), - [sym_semgrep_named_ellipsis] = ACTIONS(3233), - }, - [620] = { - [sym_preproc_def] = STATE(1988), - [sym_preproc_function_def] = STATE(1988), - [sym_preproc_call] = STATE(1988), - [sym_preproc_if_in_field_declaration_list] = STATE(1988), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1988), - [sym_preproc_else_in_field_declaration_list] = STATE(10130), - [sym_preproc_elif_in_field_declaration_list] = STATE(10130), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(10130), - [sym_type_definition] = STATE(1988), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6897), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7690), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(625), - [sym_field_declaration] = STATE(1988), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(1988), - [sym_operator_cast] = STATE(8046), - [sym_inline_method_definition] = STATE(1988), - [sym_constructor_specifiers] = STATE(1934), - [sym_operator_cast_definition] = STATE(1988), - [sym_operator_cast_declaration] = STATE(1988), - [sym_constructor_or_destructor_definition] = STATE(1988), - [sym_constructor_or_destructor_declaration] = STATE(1988), - [sym_friend_declaration] = STATE(1988), - [sym_access_specifier] = STATE(9892), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(1988), - [sym_alias_declaration] = STATE(1988), - [sym_static_assert_declaration] = STATE(1988), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8046), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(625), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1934), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(3684), - [aux_sym_preproc_if_token1] = ACTIONS(3686), - [aux_sym_preproc_if_token2] = ACTIONS(3688), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [aux_sym_preproc_else_token1] = ACTIONS(3694), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3698), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3700), - [sym_preproc_directive] = ACTIONS(3702), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(3712), - [anon_sym_typedef] = ACTIONS(3714), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(3732), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(3734), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(3738), - [anon_sym_static_assert] = ACTIONS(3740), - }, - [621] = { - [sym_preproc_def] = STATE(1988), - [sym_preproc_function_def] = STATE(1988), - [sym_preproc_call] = STATE(1988), - [sym_preproc_if_in_field_declaration_list] = STATE(1988), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1988), - [sym_preproc_else_in_field_declaration_list] = STATE(10227), - [sym_preproc_elif_in_field_declaration_list] = STATE(10227), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(10227), - [sym_type_definition] = STATE(1988), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6897), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7690), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(626), - [sym_field_declaration] = STATE(1988), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(1988), - [sym_operator_cast] = STATE(8046), - [sym_inline_method_definition] = STATE(1988), - [sym_constructor_specifiers] = STATE(1934), - [sym_operator_cast_definition] = STATE(1988), - [sym_operator_cast_declaration] = STATE(1988), - [sym_constructor_or_destructor_definition] = STATE(1988), - [sym_constructor_or_destructor_declaration] = STATE(1988), - [sym_friend_declaration] = STATE(1988), - [sym_access_specifier] = STATE(9892), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(1988), - [sym_alias_declaration] = STATE(1988), - [sym_static_assert_declaration] = STATE(1988), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8046), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(626), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1934), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(3684), - [aux_sym_preproc_if_token1] = ACTIONS(3686), - [aux_sym_preproc_if_token2] = ACTIONS(3742), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [aux_sym_preproc_else_token1] = ACTIONS(3694), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3698), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3700), - [sym_preproc_directive] = ACTIONS(3702), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(3712), - [anon_sym_typedef] = ACTIONS(3714), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(3732), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(3734), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(3738), - [anon_sym_static_assert] = ACTIONS(3740), - }, - [622] = { - [sym_identifier] = ACTIONS(3235), - [aux_sym_preproc_include_token1] = ACTIONS(3235), - [aux_sym_preproc_def_token1] = ACTIONS(3235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3237), - [aux_sym_preproc_if_token1] = ACTIONS(3235), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3235), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3235), - [sym_preproc_directive] = ACTIONS(3235), - [anon_sym_LPAREN2] = ACTIONS(3237), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_TILDE] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3235), - [anon_sym_STAR] = ACTIONS(3237), - [anon_sym_AMP_AMP] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3235), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym___extension__] = ACTIONS(3235), - [anon_sym_typedef] = ACTIONS(3235), - [anon_sym_extern] = ACTIONS(3235), - [anon_sym___attribute__] = ACTIONS(3235), - [anon_sym_COLON_COLON] = ACTIONS(3237), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3237), - [anon_sym___declspec] = ACTIONS(3235), - [anon_sym___based] = ACTIONS(3235), - [anon_sym___cdecl] = ACTIONS(3235), - [anon_sym___clrcall] = ACTIONS(3235), - [anon_sym___stdcall] = ACTIONS(3235), - [anon_sym___fastcall] = ACTIONS(3235), - [anon_sym___thiscall] = ACTIONS(3235), - [anon_sym___vectorcall] = ACTIONS(3235), - [anon_sym_LBRACE] = ACTIONS(3237), - [anon_sym_RBRACE] = ACTIONS(3237), - [anon_sym_signed] = ACTIONS(3235), - [anon_sym_unsigned] = ACTIONS(3235), - [anon_sym_long] = ACTIONS(3235), - [anon_sym_short] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3235), - [anon_sym_static] = ACTIONS(3235), - [anon_sym_register] = ACTIONS(3235), - [anon_sym_inline] = ACTIONS(3235), - [anon_sym___inline] = ACTIONS(3235), - [anon_sym___inline__] = ACTIONS(3235), - [anon_sym___forceinline] = ACTIONS(3235), - [anon_sym_thread_local] = ACTIONS(3235), - [anon_sym___thread] = ACTIONS(3235), - [anon_sym_const] = ACTIONS(3235), - [anon_sym_constexpr] = ACTIONS(3235), - [anon_sym_volatile] = ACTIONS(3235), - [anon_sym_restrict] = ACTIONS(3235), - [anon_sym___restrict__] = ACTIONS(3235), - [anon_sym__Atomic] = ACTIONS(3235), - [anon_sym__Noreturn] = ACTIONS(3235), - [anon_sym_noreturn] = ACTIONS(3235), - [anon_sym_mutable] = ACTIONS(3235), - [anon_sym_constinit] = ACTIONS(3235), - [anon_sym_consteval] = ACTIONS(3235), - [sym_primitive_type] = ACTIONS(3235), - [anon_sym_enum] = ACTIONS(3235), - [anon_sym_class] = ACTIONS(3235), - [anon_sym_struct] = ACTIONS(3235), - [anon_sym_union] = ACTIONS(3235), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_else] = ACTIONS(3235), - [anon_sym_switch] = ACTIONS(3235), - [anon_sym_case] = ACTIONS(3235), - [anon_sym_default] = ACTIONS(3235), - [anon_sym_while] = ACTIONS(3235), - [anon_sym_do] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_return] = ACTIONS(3235), - [anon_sym_break] = ACTIONS(3235), - [anon_sym_continue] = ACTIONS(3235), - [anon_sym_goto] = ACTIONS(3235), - [anon_sym___try] = ACTIONS(3235), - [anon_sym___leave] = ACTIONS(3235), - [anon_sym_not] = ACTIONS(3235), - [anon_sym_compl] = ACTIONS(3235), - [anon_sym_DASH_DASH] = ACTIONS(3237), - [anon_sym_PLUS_PLUS] = ACTIONS(3237), - [anon_sym_sizeof] = ACTIONS(3235), - [anon_sym___alignof__] = ACTIONS(3235), - [anon_sym___alignof] = ACTIONS(3235), - [anon_sym__alignof] = ACTIONS(3235), - [anon_sym_alignof] = ACTIONS(3235), - [anon_sym__Alignof] = ACTIONS(3235), - [anon_sym_offsetof] = ACTIONS(3235), - [anon_sym__Generic] = ACTIONS(3235), - [anon_sym_asm] = ACTIONS(3235), - [anon_sym___asm__] = ACTIONS(3235), - [sym_number_literal] = ACTIONS(3237), - [anon_sym_L_SQUOTE] = ACTIONS(3237), - [anon_sym_u_SQUOTE] = ACTIONS(3237), - [anon_sym_U_SQUOTE] = ACTIONS(3237), - [anon_sym_u8_SQUOTE] = ACTIONS(3237), - [anon_sym_SQUOTE] = ACTIONS(3237), - [anon_sym_L_DQUOTE] = ACTIONS(3237), - [anon_sym_u_DQUOTE] = ACTIONS(3237), - [anon_sym_U_DQUOTE] = ACTIONS(3237), - [anon_sym_u8_DQUOTE] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(3237), - [sym_true] = ACTIONS(3235), - [sym_false] = ACTIONS(3235), - [anon_sym_NULL] = ACTIONS(3235), - [anon_sym_nullptr] = ACTIONS(3235), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3235), - [anon_sym_decltype] = ACTIONS(3235), - [anon_sym_virtual] = ACTIONS(3235), - [anon_sym_alignas] = ACTIONS(3235), - [anon_sym_explicit] = ACTIONS(3235), - [anon_sym_typename] = ACTIONS(3235), - [anon_sym_template] = ACTIONS(3235), - [anon_sym_operator] = ACTIONS(3235), - [anon_sym_try] = ACTIONS(3235), - [anon_sym_delete] = ACTIONS(3235), - [anon_sym_throw] = ACTIONS(3235), - [anon_sym_namespace] = ACTIONS(3235), - [anon_sym_using] = ACTIONS(3235), - [anon_sym_static_assert] = ACTIONS(3235), - [anon_sym_concept] = ACTIONS(3235), - [anon_sym_co_return] = ACTIONS(3235), - [anon_sym_co_yield] = ACTIONS(3235), - [anon_sym_R_DQUOTE] = ACTIONS(3237), - [anon_sym_LR_DQUOTE] = ACTIONS(3237), - [anon_sym_uR_DQUOTE] = ACTIONS(3237), - [anon_sym_UR_DQUOTE] = ACTIONS(3237), - [anon_sym_u8R_DQUOTE] = ACTIONS(3237), - [anon_sym_co_await] = ACTIONS(3235), - [anon_sym_new] = ACTIONS(3235), - [anon_sym_requires] = ACTIONS(3235), - [sym_this] = ACTIONS(3235), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3237), - [sym_semgrep_named_ellipsis] = ACTIONS(3237), - }, - [623] = { - [sym_identifier] = ACTIONS(3105), - [aux_sym_preproc_include_token1] = ACTIONS(3105), - [aux_sym_preproc_def_token1] = ACTIONS(3105), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3107), - [aux_sym_preproc_if_token1] = ACTIONS(3105), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3105), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3105), - [sym_preproc_directive] = ACTIONS(3105), - [anon_sym_LPAREN2] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3107), - [anon_sym_TILDE] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(3105), - [anon_sym_PLUS] = ACTIONS(3105), - [anon_sym_STAR] = ACTIONS(3107), - [anon_sym_AMP_AMP] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym___extension__] = ACTIONS(3105), - [anon_sym_typedef] = ACTIONS(3105), - [anon_sym_extern] = ACTIONS(3105), - [anon_sym___attribute__] = ACTIONS(3105), - [anon_sym_COLON_COLON] = ACTIONS(3107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3107), - [anon_sym___declspec] = ACTIONS(3105), - [anon_sym___based] = ACTIONS(3105), - [anon_sym___cdecl] = ACTIONS(3105), - [anon_sym___clrcall] = ACTIONS(3105), - [anon_sym___stdcall] = ACTIONS(3105), - [anon_sym___fastcall] = ACTIONS(3105), - [anon_sym___thiscall] = ACTIONS(3105), - [anon_sym___vectorcall] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(3107), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_signed] = ACTIONS(3105), - [anon_sym_unsigned] = ACTIONS(3105), - [anon_sym_long] = ACTIONS(3105), - [anon_sym_short] = ACTIONS(3105), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_static] = ACTIONS(3105), - [anon_sym_register] = ACTIONS(3105), - [anon_sym_inline] = ACTIONS(3105), - [anon_sym___inline] = ACTIONS(3105), - [anon_sym___inline__] = ACTIONS(3105), - [anon_sym___forceinline] = ACTIONS(3105), - [anon_sym_thread_local] = ACTIONS(3105), - [anon_sym___thread] = ACTIONS(3105), - [anon_sym_const] = ACTIONS(3105), - [anon_sym_constexpr] = ACTIONS(3105), - [anon_sym_volatile] = ACTIONS(3105), - [anon_sym_restrict] = ACTIONS(3105), - [anon_sym___restrict__] = ACTIONS(3105), - [anon_sym__Atomic] = ACTIONS(3105), - [anon_sym__Noreturn] = ACTIONS(3105), - [anon_sym_noreturn] = ACTIONS(3105), - [anon_sym_mutable] = ACTIONS(3105), - [anon_sym_constinit] = ACTIONS(3105), - [anon_sym_consteval] = ACTIONS(3105), - [sym_primitive_type] = ACTIONS(3105), - [anon_sym_enum] = ACTIONS(3105), - [anon_sym_class] = ACTIONS(3105), - [anon_sym_struct] = ACTIONS(3105), - [anon_sym_union] = ACTIONS(3105), - [anon_sym_if] = ACTIONS(3105), - [anon_sym_else] = ACTIONS(3105), - [anon_sym_switch] = ACTIONS(3105), - [anon_sym_case] = ACTIONS(3105), - [anon_sym_default] = ACTIONS(3105), - [anon_sym_while] = ACTIONS(3105), - [anon_sym_do] = ACTIONS(3105), - [anon_sym_for] = ACTIONS(3105), - [anon_sym_return] = ACTIONS(3105), - [anon_sym_break] = ACTIONS(3105), - [anon_sym_continue] = ACTIONS(3105), - [anon_sym_goto] = ACTIONS(3105), - [anon_sym___try] = ACTIONS(3105), - [anon_sym___leave] = ACTIONS(3105), - [anon_sym_not] = ACTIONS(3105), - [anon_sym_compl] = ACTIONS(3105), - [anon_sym_DASH_DASH] = ACTIONS(3107), - [anon_sym_PLUS_PLUS] = ACTIONS(3107), - [anon_sym_sizeof] = ACTIONS(3105), - [anon_sym___alignof__] = ACTIONS(3105), - [anon_sym___alignof] = ACTIONS(3105), - [anon_sym__alignof] = ACTIONS(3105), - [anon_sym_alignof] = ACTIONS(3105), - [anon_sym__Alignof] = ACTIONS(3105), - [anon_sym_offsetof] = ACTIONS(3105), - [anon_sym__Generic] = ACTIONS(3105), - [anon_sym_asm] = ACTIONS(3105), - [anon_sym___asm__] = ACTIONS(3105), - [sym_number_literal] = ACTIONS(3107), - [anon_sym_L_SQUOTE] = ACTIONS(3107), - [anon_sym_u_SQUOTE] = ACTIONS(3107), - [anon_sym_U_SQUOTE] = ACTIONS(3107), - [anon_sym_u8_SQUOTE] = ACTIONS(3107), - [anon_sym_SQUOTE] = ACTIONS(3107), - [anon_sym_L_DQUOTE] = ACTIONS(3107), - [anon_sym_u_DQUOTE] = ACTIONS(3107), - [anon_sym_U_DQUOTE] = ACTIONS(3107), - [anon_sym_u8_DQUOTE] = ACTIONS(3107), - [anon_sym_DQUOTE] = ACTIONS(3107), - [sym_true] = ACTIONS(3105), - [sym_false] = ACTIONS(3105), - [anon_sym_NULL] = ACTIONS(3105), - [anon_sym_nullptr] = ACTIONS(3105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3105), - [anon_sym_decltype] = ACTIONS(3105), - [anon_sym_virtual] = ACTIONS(3105), - [anon_sym_alignas] = ACTIONS(3105), - [anon_sym_explicit] = ACTIONS(3105), - [anon_sym_typename] = ACTIONS(3105), - [anon_sym_template] = ACTIONS(3105), - [anon_sym_operator] = ACTIONS(3105), - [anon_sym_try] = ACTIONS(3105), - [anon_sym_delete] = ACTIONS(3105), - [anon_sym_throw] = ACTIONS(3105), - [anon_sym_namespace] = ACTIONS(3105), - [anon_sym_using] = ACTIONS(3105), - [anon_sym_static_assert] = ACTIONS(3105), - [anon_sym_concept] = ACTIONS(3105), - [anon_sym_co_return] = ACTIONS(3105), - [anon_sym_co_yield] = ACTIONS(3105), - [anon_sym_R_DQUOTE] = ACTIONS(3107), - [anon_sym_LR_DQUOTE] = ACTIONS(3107), - [anon_sym_uR_DQUOTE] = ACTIONS(3107), - [anon_sym_UR_DQUOTE] = ACTIONS(3107), - [anon_sym_u8R_DQUOTE] = ACTIONS(3107), - [anon_sym_co_await] = ACTIONS(3105), - [anon_sym_new] = ACTIONS(3105), - [anon_sym_requires] = ACTIONS(3105), - [sym_this] = ACTIONS(3105), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3107), - [sym_semgrep_named_ellipsis] = ACTIONS(3107), - }, - [624] = { - [sym_identifier] = ACTIONS(3241), - [aux_sym_preproc_include_token1] = ACTIONS(3241), - [aux_sym_preproc_def_token1] = ACTIONS(3241), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3243), - [aux_sym_preproc_if_token1] = ACTIONS(3241), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3241), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3241), - [sym_preproc_directive] = ACTIONS(3241), - [anon_sym_LPAREN2] = ACTIONS(3243), - [anon_sym_BANG] = ACTIONS(3243), - [anon_sym_TILDE] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(3241), - [anon_sym_PLUS] = ACTIONS(3241), - [anon_sym_STAR] = ACTIONS(3243), - [anon_sym_AMP_AMP] = ACTIONS(3243), - [anon_sym_AMP] = ACTIONS(3241), - [anon_sym_SEMI] = ACTIONS(3243), - [anon_sym___extension__] = ACTIONS(3241), - [anon_sym_typedef] = ACTIONS(3241), - [anon_sym_extern] = ACTIONS(3241), - [anon_sym___attribute__] = ACTIONS(3241), - [anon_sym_COLON_COLON] = ACTIONS(3243), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3243), - [anon_sym___declspec] = ACTIONS(3241), - [anon_sym___based] = ACTIONS(3241), - [anon_sym___cdecl] = ACTIONS(3241), - [anon_sym___clrcall] = ACTIONS(3241), - [anon_sym___stdcall] = ACTIONS(3241), - [anon_sym___fastcall] = ACTIONS(3241), - [anon_sym___thiscall] = ACTIONS(3241), - [anon_sym___vectorcall] = ACTIONS(3241), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_RBRACE] = ACTIONS(3243), - [anon_sym_signed] = ACTIONS(3241), - [anon_sym_unsigned] = ACTIONS(3241), - [anon_sym_long] = ACTIONS(3241), - [anon_sym_short] = ACTIONS(3241), - [anon_sym_LBRACK] = ACTIONS(3241), - [anon_sym_static] = ACTIONS(3241), - [anon_sym_register] = ACTIONS(3241), - [anon_sym_inline] = ACTIONS(3241), - [anon_sym___inline] = ACTIONS(3241), - [anon_sym___inline__] = ACTIONS(3241), - [anon_sym___forceinline] = ACTIONS(3241), - [anon_sym_thread_local] = ACTIONS(3241), - [anon_sym___thread] = ACTIONS(3241), - [anon_sym_const] = ACTIONS(3241), - [anon_sym_constexpr] = ACTIONS(3241), - [anon_sym_volatile] = ACTIONS(3241), - [anon_sym_restrict] = ACTIONS(3241), - [anon_sym___restrict__] = ACTIONS(3241), - [anon_sym__Atomic] = ACTIONS(3241), - [anon_sym__Noreturn] = ACTIONS(3241), - [anon_sym_noreturn] = ACTIONS(3241), - [anon_sym_mutable] = ACTIONS(3241), - [anon_sym_constinit] = ACTIONS(3241), - [anon_sym_consteval] = ACTIONS(3241), - [sym_primitive_type] = ACTIONS(3241), - [anon_sym_enum] = ACTIONS(3241), - [anon_sym_class] = ACTIONS(3241), - [anon_sym_struct] = ACTIONS(3241), - [anon_sym_union] = ACTIONS(3241), - [anon_sym_if] = ACTIONS(3241), - [anon_sym_else] = ACTIONS(3241), - [anon_sym_switch] = ACTIONS(3241), - [anon_sym_case] = ACTIONS(3241), - [anon_sym_default] = ACTIONS(3241), - [anon_sym_while] = ACTIONS(3241), - [anon_sym_do] = ACTIONS(3241), - [anon_sym_for] = ACTIONS(3241), - [anon_sym_return] = ACTIONS(3241), - [anon_sym_break] = ACTIONS(3241), - [anon_sym_continue] = ACTIONS(3241), - [anon_sym_goto] = ACTIONS(3241), - [anon_sym___try] = ACTIONS(3241), - [anon_sym___leave] = ACTIONS(3241), - [anon_sym_not] = ACTIONS(3241), - [anon_sym_compl] = ACTIONS(3241), - [anon_sym_DASH_DASH] = ACTIONS(3243), - [anon_sym_PLUS_PLUS] = ACTIONS(3243), - [anon_sym_sizeof] = ACTIONS(3241), - [anon_sym___alignof__] = ACTIONS(3241), - [anon_sym___alignof] = ACTIONS(3241), - [anon_sym__alignof] = ACTIONS(3241), - [anon_sym_alignof] = ACTIONS(3241), - [anon_sym__Alignof] = ACTIONS(3241), - [anon_sym_offsetof] = ACTIONS(3241), - [anon_sym__Generic] = ACTIONS(3241), - [anon_sym_asm] = ACTIONS(3241), - [anon_sym___asm__] = ACTIONS(3241), - [sym_number_literal] = ACTIONS(3243), - [anon_sym_L_SQUOTE] = ACTIONS(3243), - [anon_sym_u_SQUOTE] = ACTIONS(3243), - [anon_sym_U_SQUOTE] = ACTIONS(3243), - [anon_sym_u8_SQUOTE] = ACTIONS(3243), - [anon_sym_SQUOTE] = ACTIONS(3243), - [anon_sym_L_DQUOTE] = ACTIONS(3243), - [anon_sym_u_DQUOTE] = ACTIONS(3243), - [anon_sym_U_DQUOTE] = ACTIONS(3243), - [anon_sym_u8_DQUOTE] = ACTIONS(3243), - [anon_sym_DQUOTE] = ACTIONS(3243), - [sym_true] = ACTIONS(3241), - [sym_false] = ACTIONS(3241), - [anon_sym_NULL] = ACTIONS(3241), - [anon_sym_nullptr] = ACTIONS(3241), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3241), - [anon_sym_decltype] = ACTIONS(3241), - [anon_sym_virtual] = ACTIONS(3241), - [anon_sym_alignas] = ACTIONS(3241), - [anon_sym_explicit] = ACTIONS(3241), - [anon_sym_typename] = ACTIONS(3241), - [anon_sym_template] = ACTIONS(3241), - [anon_sym_operator] = ACTIONS(3241), - [anon_sym_try] = ACTIONS(3241), - [anon_sym_delete] = ACTIONS(3241), - [anon_sym_throw] = ACTIONS(3241), - [anon_sym_namespace] = ACTIONS(3241), - [anon_sym_using] = ACTIONS(3241), - [anon_sym_static_assert] = ACTIONS(3241), - [anon_sym_concept] = ACTIONS(3241), - [anon_sym_co_return] = ACTIONS(3241), - [anon_sym_co_yield] = ACTIONS(3241), - [anon_sym_R_DQUOTE] = ACTIONS(3243), - [anon_sym_LR_DQUOTE] = ACTIONS(3243), - [anon_sym_uR_DQUOTE] = ACTIONS(3243), - [anon_sym_UR_DQUOTE] = ACTIONS(3243), - [anon_sym_u8R_DQUOTE] = ACTIONS(3243), - [anon_sym_co_await] = ACTIONS(3241), - [anon_sym_new] = ACTIONS(3241), - [anon_sym_requires] = ACTIONS(3241), - [sym_this] = ACTIONS(3241), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3243), - [sym_semgrep_named_ellipsis] = ACTIONS(3243), + [660] = { + [sym_identifier] = ACTIONS(3095), + [aux_sym_preproc_include_token1] = ACTIONS(3095), + [aux_sym_preproc_def_token1] = ACTIONS(3095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3097), + [aux_sym_preproc_if_token1] = ACTIONS(3095), + [aux_sym_preproc_if_token2] = ACTIONS(3095), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3095), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3095), + [sym_preproc_directive] = ACTIONS(3095), + [anon_sym_LPAREN2] = ACTIONS(3097), + [anon_sym_BANG] = ACTIONS(3097), + [anon_sym_TILDE] = ACTIONS(3097), + [anon_sym_DASH] = ACTIONS(3095), + [anon_sym_PLUS] = ACTIONS(3095), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_AMP_AMP] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3095), + [anon_sym_SEMI] = ACTIONS(3097), + [anon_sym___extension__] = ACTIONS(3095), + [anon_sym_typedef] = ACTIONS(3095), + [anon_sym_extern] = ACTIONS(3095), + [anon_sym___attribute__] = ACTIONS(3095), + [anon_sym_COLON_COLON] = ACTIONS(3097), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3097), + [anon_sym___declspec] = ACTIONS(3095), + [anon_sym___based] = ACTIONS(3095), + [anon_sym___cdecl] = ACTIONS(3095), + [anon_sym___clrcall] = ACTIONS(3095), + [anon_sym___stdcall] = ACTIONS(3095), + [anon_sym___fastcall] = ACTIONS(3095), + [anon_sym___thiscall] = ACTIONS(3095), + [anon_sym___vectorcall] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_signed] = ACTIONS(3095), + [anon_sym_unsigned] = ACTIONS(3095), + [anon_sym_long] = ACTIONS(3095), + [anon_sym_short] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3095), + [anon_sym_static] = ACTIONS(3095), + [anon_sym_register] = ACTIONS(3095), + [anon_sym_inline] = ACTIONS(3095), + [anon_sym___inline] = ACTIONS(3095), + [anon_sym___inline__] = ACTIONS(3095), + [anon_sym___forceinline] = ACTIONS(3095), + [anon_sym_thread_local] = ACTIONS(3095), + [anon_sym___thread] = ACTIONS(3095), + [anon_sym_const] = ACTIONS(3095), + [anon_sym_constexpr] = ACTIONS(3095), + [anon_sym_volatile] = ACTIONS(3095), + [anon_sym_restrict] = ACTIONS(3095), + [anon_sym___restrict__] = ACTIONS(3095), + [anon_sym__Atomic] = ACTIONS(3095), + [anon_sym__Noreturn] = ACTIONS(3095), + [anon_sym_noreturn] = ACTIONS(3095), + [anon_sym_mutable] = ACTIONS(3095), + [anon_sym_constinit] = ACTIONS(3095), + [anon_sym_consteval] = ACTIONS(3095), + [sym_primitive_type] = ACTIONS(3095), + [anon_sym_enum] = ACTIONS(3095), + [anon_sym_class] = ACTIONS(3095), + [anon_sym_struct] = ACTIONS(3095), + [anon_sym_union] = ACTIONS(3095), + [anon_sym_if] = ACTIONS(3095), + [anon_sym_else] = ACTIONS(3095), + [anon_sym_switch] = ACTIONS(3095), + [anon_sym_case] = ACTIONS(3095), + [anon_sym_default] = ACTIONS(3095), + [anon_sym_while] = ACTIONS(3095), + [anon_sym_do] = ACTIONS(3095), + [anon_sym_for] = ACTIONS(3095), + [anon_sym_return] = ACTIONS(3095), + [anon_sym_break] = ACTIONS(3095), + [anon_sym_continue] = ACTIONS(3095), + [anon_sym_goto] = ACTIONS(3095), + [anon_sym___try] = ACTIONS(3095), + [anon_sym___leave] = ACTIONS(3095), + [anon_sym_not] = ACTIONS(3095), + [anon_sym_compl] = ACTIONS(3095), + [anon_sym_DASH_DASH] = ACTIONS(3097), + [anon_sym_PLUS_PLUS] = ACTIONS(3097), + [anon_sym_sizeof] = ACTIONS(3095), + [anon_sym___alignof__] = ACTIONS(3095), + [anon_sym___alignof] = ACTIONS(3095), + [anon_sym__alignof] = ACTIONS(3095), + [anon_sym_alignof] = ACTIONS(3095), + [anon_sym__Alignof] = ACTIONS(3095), + [anon_sym_offsetof] = ACTIONS(3095), + [anon_sym__Generic] = ACTIONS(3095), + [anon_sym_asm] = ACTIONS(3095), + [anon_sym___asm__] = ACTIONS(3095), + [sym_number_literal] = ACTIONS(3097), + [anon_sym_L_SQUOTE] = ACTIONS(3097), + [anon_sym_u_SQUOTE] = ACTIONS(3097), + [anon_sym_U_SQUOTE] = ACTIONS(3097), + [anon_sym_u8_SQUOTE] = ACTIONS(3097), + [anon_sym_SQUOTE] = ACTIONS(3097), + [anon_sym_L_DQUOTE] = ACTIONS(3097), + [anon_sym_u_DQUOTE] = ACTIONS(3097), + [anon_sym_U_DQUOTE] = ACTIONS(3097), + [anon_sym_u8_DQUOTE] = ACTIONS(3097), + [anon_sym_DQUOTE] = ACTIONS(3097), + [sym_true] = ACTIONS(3095), + [sym_false] = ACTIONS(3095), + [anon_sym_NULL] = ACTIONS(3095), + [anon_sym_nullptr] = ACTIONS(3095), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3095), + [anon_sym_decltype] = ACTIONS(3095), + [anon_sym_virtual] = ACTIONS(3095), + [anon_sym_alignas] = ACTIONS(3095), + [anon_sym_explicit] = ACTIONS(3095), + [anon_sym_typename] = ACTIONS(3095), + [anon_sym_template] = ACTIONS(3095), + [anon_sym_operator] = ACTIONS(3095), + [anon_sym_try] = ACTIONS(3095), + [anon_sym_delete] = ACTIONS(3095), + [anon_sym_throw] = ACTIONS(3095), + [anon_sym_namespace] = ACTIONS(3095), + [anon_sym_using] = ACTIONS(3095), + [anon_sym_static_assert] = ACTIONS(3095), + [anon_sym_concept] = ACTIONS(3095), + [anon_sym_co_return] = ACTIONS(3095), + [anon_sym_co_yield] = ACTIONS(3095), + [anon_sym_R_DQUOTE] = ACTIONS(3097), + [anon_sym_LR_DQUOTE] = ACTIONS(3097), + [anon_sym_uR_DQUOTE] = ACTIONS(3097), + [anon_sym_UR_DQUOTE] = ACTIONS(3097), + [anon_sym_u8R_DQUOTE] = ACTIONS(3097), + [anon_sym_co_await] = ACTIONS(3095), + [anon_sym_new] = ACTIONS(3095), + [anon_sym_requires] = ACTIONS(3095), + [sym_this] = ACTIONS(3095), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3097), + [sym_semgrep_named_ellipsis] = ACTIONS(3097), }, - [625] = { - [sym_preproc_def] = STATE(1988), - [sym_preproc_function_def] = STATE(1988), - [sym_preproc_call] = STATE(1988), - [sym_preproc_if_in_field_declaration_list] = STATE(1988), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1988), - [sym_preproc_else_in_field_declaration_list] = STATE(9954), - [sym_preproc_elif_in_field_declaration_list] = STATE(9954), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(9954), - [sym_type_definition] = STATE(1988), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6897), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7690), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(820), - [sym_field_declaration] = STATE(1988), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(1988), - [sym_operator_cast] = STATE(8046), - [sym_inline_method_definition] = STATE(1988), - [sym_constructor_specifiers] = STATE(1934), - [sym_operator_cast_definition] = STATE(1988), - [sym_operator_cast_declaration] = STATE(1988), - [sym_constructor_or_destructor_definition] = STATE(1988), - [sym_constructor_or_destructor_declaration] = STATE(1988), - [sym_friend_declaration] = STATE(1988), - [sym_access_specifier] = STATE(9892), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(1988), - [sym_alias_declaration] = STATE(1988), - [sym_static_assert_declaration] = STATE(1988), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8046), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(820), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1934), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(3684), - [aux_sym_preproc_if_token1] = ACTIONS(3686), - [aux_sym_preproc_if_token2] = ACTIONS(3744), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [aux_sym_preproc_else_token1] = ACTIONS(3694), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3698), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3700), - [sym_preproc_directive] = ACTIONS(3702), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(3712), - [anon_sym_typedef] = ACTIONS(3714), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [661] = { + [sym_identifier] = ACTIONS(3159), + [aux_sym_preproc_include_token1] = ACTIONS(3159), + [aux_sym_preproc_def_token1] = ACTIONS(3159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3161), + [aux_sym_preproc_if_token1] = ACTIONS(3159), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3159), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3159), + [sym_preproc_directive] = ACTIONS(3159), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_AMP_AMP] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_SEMI] = ACTIONS(3161), + [anon_sym___extension__] = ACTIONS(3159), + [anon_sym_typedef] = ACTIONS(3159), + [anon_sym_extern] = ACTIONS(3159), + [anon_sym___attribute__] = ACTIONS(3159), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), + [anon_sym___declspec] = ACTIONS(3159), + [anon_sym___based] = ACTIONS(3159), + [anon_sym___cdecl] = ACTIONS(3159), + [anon_sym___clrcall] = ACTIONS(3159), + [anon_sym___stdcall] = ACTIONS(3159), + [anon_sym___fastcall] = ACTIONS(3159), + [anon_sym___thiscall] = ACTIONS(3159), + [anon_sym___vectorcall] = ACTIONS(3159), + [anon_sym_LBRACE] = ACTIONS(3161), + [anon_sym_RBRACE] = ACTIONS(3161), + [anon_sym_signed] = ACTIONS(3159), + [anon_sym_unsigned] = ACTIONS(3159), + [anon_sym_long] = ACTIONS(3159), + [anon_sym_short] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_static] = ACTIONS(3159), + [anon_sym_register] = ACTIONS(3159), + [anon_sym_inline] = ACTIONS(3159), + [anon_sym___inline] = ACTIONS(3159), + [anon_sym___inline__] = ACTIONS(3159), + [anon_sym___forceinline] = ACTIONS(3159), + [anon_sym_thread_local] = ACTIONS(3159), + [anon_sym___thread] = ACTIONS(3159), + [anon_sym_const] = ACTIONS(3159), + [anon_sym_constexpr] = ACTIONS(3159), + [anon_sym_volatile] = ACTIONS(3159), + [anon_sym_restrict] = ACTIONS(3159), + [anon_sym___restrict__] = ACTIONS(3159), + [anon_sym__Atomic] = ACTIONS(3159), + [anon_sym__Noreturn] = ACTIONS(3159), + [anon_sym_noreturn] = ACTIONS(3159), + [anon_sym_mutable] = ACTIONS(3159), + [anon_sym_constinit] = ACTIONS(3159), + [anon_sym_consteval] = ACTIONS(3159), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3159), + [anon_sym_class] = ACTIONS(3159), + [anon_sym_struct] = ACTIONS(3159), + [anon_sym_union] = ACTIONS(3159), + [anon_sym_if] = ACTIONS(3159), + [anon_sym_else] = ACTIONS(3159), + [anon_sym_switch] = ACTIONS(3159), + [anon_sym_case] = ACTIONS(3159), + [anon_sym_default] = ACTIONS(3159), + [anon_sym_while] = ACTIONS(3159), + [anon_sym_do] = ACTIONS(3159), + [anon_sym_for] = ACTIONS(3159), + [anon_sym_return] = ACTIONS(3159), + [anon_sym_break] = ACTIONS(3159), + [anon_sym_continue] = ACTIONS(3159), + [anon_sym_goto] = ACTIONS(3159), + [anon_sym___try] = ACTIONS(3159), + [anon_sym___leave] = ACTIONS(3159), + [anon_sym_not] = ACTIONS(3159), + [anon_sym_compl] = ACTIONS(3159), + [anon_sym_DASH_DASH] = ACTIONS(3161), + [anon_sym_PLUS_PLUS] = ACTIONS(3161), + [anon_sym_sizeof] = ACTIONS(3159), + [anon_sym___alignof__] = ACTIONS(3159), + [anon_sym___alignof] = ACTIONS(3159), + [anon_sym__alignof] = ACTIONS(3159), + [anon_sym_alignof] = ACTIONS(3159), + [anon_sym__Alignof] = ACTIONS(3159), + [anon_sym_offsetof] = ACTIONS(3159), + [anon_sym__Generic] = ACTIONS(3159), + [anon_sym_asm] = ACTIONS(3159), + [anon_sym___asm__] = ACTIONS(3159), + [sym_number_literal] = ACTIONS(3161), + [anon_sym_L_SQUOTE] = ACTIONS(3161), + [anon_sym_u_SQUOTE] = ACTIONS(3161), + [anon_sym_U_SQUOTE] = ACTIONS(3161), + [anon_sym_u8_SQUOTE] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3161), + [anon_sym_L_DQUOTE] = ACTIONS(3161), + [anon_sym_u_DQUOTE] = ACTIONS(3161), + [anon_sym_U_DQUOTE] = ACTIONS(3161), + [anon_sym_u8_DQUOTE] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(3161), + [sym_true] = ACTIONS(3159), + [sym_false] = ACTIONS(3159), + [anon_sym_NULL] = ACTIONS(3159), + [anon_sym_nullptr] = ACTIONS(3159), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(3732), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(3734), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(3738), - [anon_sym_static_assert] = ACTIONS(3740), + [sym_auto] = ACTIONS(3159), + [anon_sym_decltype] = ACTIONS(3159), + [anon_sym_virtual] = ACTIONS(3159), + [anon_sym_alignas] = ACTIONS(3159), + [anon_sym_explicit] = ACTIONS(3159), + [anon_sym_typename] = ACTIONS(3159), + [anon_sym_template] = ACTIONS(3159), + [anon_sym_operator] = ACTIONS(3159), + [anon_sym_try] = ACTIONS(3159), + [anon_sym_delete] = ACTIONS(3159), + [anon_sym_throw] = ACTIONS(3159), + [anon_sym_namespace] = ACTIONS(3159), + [anon_sym_using] = ACTIONS(3159), + [anon_sym_static_assert] = ACTIONS(3159), + [anon_sym_concept] = ACTIONS(3159), + [anon_sym_co_return] = ACTIONS(3159), + [anon_sym_co_yield] = ACTIONS(3159), + [anon_sym_R_DQUOTE] = ACTIONS(3161), + [anon_sym_LR_DQUOTE] = ACTIONS(3161), + [anon_sym_uR_DQUOTE] = ACTIONS(3161), + [anon_sym_UR_DQUOTE] = ACTIONS(3161), + [anon_sym_u8R_DQUOTE] = ACTIONS(3161), + [anon_sym_co_await] = ACTIONS(3159), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_requires] = ACTIONS(3159), + [sym_this] = ACTIONS(3159), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3161), + [sym_semgrep_named_ellipsis] = ACTIONS(3161), }, - [626] = { - [sym_preproc_def] = STATE(1988), - [sym_preproc_function_def] = STATE(1988), - [sym_preproc_call] = STATE(1988), - [sym_preproc_if_in_field_declaration_list] = STATE(1988), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1988), - [sym_preproc_else_in_field_declaration_list] = STATE(9969), - [sym_preproc_elif_in_field_declaration_list] = STATE(9969), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(9969), - [sym_type_definition] = STATE(1988), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6897), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7690), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(820), - [sym_field_declaration] = STATE(1988), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(1988), - [sym_operator_cast] = STATE(8046), - [sym_inline_method_definition] = STATE(1988), - [sym_constructor_specifiers] = STATE(1934), - [sym_operator_cast_definition] = STATE(1988), - [sym_operator_cast_declaration] = STATE(1988), - [sym_constructor_or_destructor_definition] = STATE(1988), - [sym_constructor_or_destructor_declaration] = STATE(1988), - [sym_friend_declaration] = STATE(1988), - [sym_access_specifier] = STATE(9892), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(1988), - [sym_alias_declaration] = STATE(1988), - [sym_static_assert_declaration] = STATE(1988), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8046), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(820), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1934), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(3684), - [aux_sym_preproc_if_token1] = ACTIONS(3686), - [aux_sym_preproc_if_token2] = ACTIONS(3746), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [aux_sym_preproc_else_token1] = ACTIONS(3694), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3698), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3700), - [sym_preproc_directive] = ACTIONS(3702), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(3712), - [anon_sym_typedef] = ACTIONS(3714), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [662] = { + [ts_builtin_sym_end] = ACTIONS(3173), + [sym_identifier] = ACTIONS(3171), + [aux_sym_preproc_include_token1] = ACTIONS(3171), + [aux_sym_preproc_def_token1] = ACTIONS(3171), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3173), + [aux_sym_preproc_if_token1] = ACTIONS(3171), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3171), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3171), + [sym_preproc_directive] = ACTIONS(3171), + [anon_sym_LPAREN2] = ACTIONS(3173), + [anon_sym_BANG] = ACTIONS(3173), + [anon_sym_TILDE] = ACTIONS(3173), + [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_PLUS] = ACTIONS(3171), + [anon_sym_STAR] = ACTIONS(3173), + [anon_sym_AMP_AMP] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(3171), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym___extension__] = ACTIONS(3171), + [anon_sym_typedef] = ACTIONS(3171), + [anon_sym_extern] = ACTIONS(3171), + [anon_sym___attribute__] = ACTIONS(3171), + [anon_sym_COLON_COLON] = ACTIONS(3173), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3173), + [anon_sym___declspec] = ACTIONS(3171), + [anon_sym___based] = ACTIONS(3171), + [anon_sym___cdecl] = ACTIONS(3171), + [anon_sym___clrcall] = ACTIONS(3171), + [anon_sym___stdcall] = ACTIONS(3171), + [anon_sym___fastcall] = ACTIONS(3171), + [anon_sym___thiscall] = ACTIONS(3171), + [anon_sym___vectorcall] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(3173), + [anon_sym_signed] = ACTIONS(3171), + [anon_sym_unsigned] = ACTIONS(3171), + [anon_sym_long] = ACTIONS(3171), + [anon_sym_short] = ACTIONS(3171), + [anon_sym_LBRACK] = ACTIONS(3171), + [anon_sym_static] = ACTIONS(3171), + [anon_sym_register] = ACTIONS(3171), + [anon_sym_inline] = ACTIONS(3171), + [anon_sym___inline] = ACTIONS(3171), + [anon_sym___inline__] = ACTIONS(3171), + [anon_sym___forceinline] = ACTIONS(3171), + [anon_sym_thread_local] = ACTIONS(3171), + [anon_sym___thread] = ACTIONS(3171), + [anon_sym_const] = ACTIONS(3171), + [anon_sym_constexpr] = ACTIONS(3171), + [anon_sym_volatile] = ACTIONS(3171), + [anon_sym_restrict] = ACTIONS(3171), + [anon_sym___restrict__] = ACTIONS(3171), + [anon_sym__Atomic] = ACTIONS(3171), + [anon_sym__Noreturn] = ACTIONS(3171), + [anon_sym_noreturn] = ACTIONS(3171), + [anon_sym_mutable] = ACTIONS(3171), + [anon_sym_constinit] = ACTIONS(3171), + [anon_sym_consteval] = ACTIONS(3171), + [sym_primitive_type] = ACTIONS(3171), + [anon_sym_enum] = ACTIONS(3171), + [anon_sym_class] = ACTIONS(3171), + [anon_sym_struct] = ACTIONS(3171), + [anon_sym_union] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_else] = ACTIONS(3171), + [anon_sym_switch] = ACTIONS(3171), + [anon_sym_case] = ACTIONS(3171), + [anon_sym_default] = ACTIONS(3171), + [anon_sym_while] = ACTIONS(3171), + [anon_sym_do] = ACTIONS(3171), + [anon_sym_for] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_break] = ACTIONS(3171), + [anon_sym_continue] = ACTIONS(3171), + [anon_sym_goto] = ACTIONS(3171), + [anon_sym___try] = ACTIONS(3171), + [anon_sym___leave] = ACTIONS(3171), + [anon_sym_not] = ACTIONS(3171), + [anon_sym_compl] = ACTIONS(3171), + [anon_sym_DASH_DASH] = ACTIONS(3173), + [anon_sym_PLUS_PLUS] = ACTIONS(3173), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3171), + [anon_sym___alignof] = ACTIONS(3171), + [anon_sym__alignof] = ACTIONS(3171), + [anon_sym_alignof] = ACTIONS(3171), + [anon_sym__Alignof] = ACTIONS(3171), + [anon_sym_offsetof] = ACTIONS(3171), + [anon_sym__Generic] = ACTIONS(3171), + [anon_sym_asm] = ACTIONS(3171), + [anon_sym___asm__] = ACTIONS(3171), + [sym_number_literal] = ACTIONS(3173), + [anon_sym_L_SQUOTE] = ACTIONS(3173), + [anon_sym_u_SQUOTE] = ACTIONS(3173), + [anon_sym_U_SQUOTE] = ACTIONS(3173), + [anon_sym_u8_SQUOTE] = ACTIONS(3173), + [anon_sym_SQUOTE] = ACTIONS(3173), + [anon_sym_L_DQUOTE] = ACTIONS(3173), + [anon_sym_u_DQUOTE] = ACTIONS(3173), + [anon_sym_U_DQUOTE] = ACTIONS(3173), + [anon_sym_u8_DQUOTE] = ACTIONS(3173), + [anon_sym_DQUOTE] = ACTIONS(3173), + [sym_true] = ACTIONS(3171), + [sym_false] = ACTIONS(3171), + [anon_sym_NULL] = ACTIONS(3171), + [anon_sym_nullptr] = ACTIONS(3171), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(3732), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(3734), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(3738), - [anon_sym_static_assert] = ACTIONS(3740), - }, - [627] = { - [sym_identifier] = ACTIONS(3197), - [aux_sym_preproc_include_token1] = ACTIONS(3197), - [aux_sym_preproc_def_token1] = ACTIONS(3197), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), - [aux_sym_preproc_if_token1] = ACTIONS(3197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3197), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3197), - [sym_preproc_directive] = ACTIONS(3197), - [anon_sym_LPAREN2] = ACTIONS(3199), - [anon_sym_BANG] = ACTIONS(3199), - [anon_sym_TILDE] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3199), - [anon_sym_AMP_AMP] = ACTIONS(3199), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_SEMI] = ACTIONS(3199), - [anon_sym___extension__] = ACTIONS(3197), - [anon_sym_typedef] = ACTIONS(3197), - [anon_sym_extern] = ACTIONS(3197), - [anon_sym___attribute__] = ACTIONS(3197), - [anon_sym_COLON_COLON] = ACTIONS(3199), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3199), - [anon_sym___declspec] = ACTIONS(3197), - [anon_sym___based] = ACTIONS(3197), - [anon_sym___cdecl] = ACTIONS(3197), - [anon_sym___clrcall] = ACTIONS(3197), - [anon_sym___stdcall] = ACTIONS(3197), - [anon_sym___fastcall] = ACTIONS(3197), - [anon_sym___thiscall] = ACTIONS(3197), - [anon_sym___vectorcall] = ACTIONS(3197), - [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym_signed] = ACTIONS(3197), - [anon_sym_unsigned] = ACTIONS(3197), - [anon_sym_long] = ACTIONS(3197), - [anon_sym_short] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_static] = ACTIONS(3197), - [anon_sym_register] = ACTIONS(3197), - [anon_sym_inline] = ACTIONS(3197), - [anon_sym___inline] = ACTIONS(3197), - [anon_sym___inline__] = ACTIONS(3197), - [anon_sym___forceinline] = ACTIONS(3197), - [anon_sym_thread_local] = ACTIONS(3197), - [anon_sym___thread] = ACTIONS(3197), - [anon_sym_const] = ACTIONS(3197), - [anon_sym_constexpr] = ACTIONS(3197), - [anon_sym_volatile] = ACTIONS(3197), - [anon_sym_restrict] = ACTIONS(3197), - [anon_sym___restrict__] = ACTIONS(3197), - [anon_sym__Atomic] = ACTIONS(3197), - [anon_sym__Noreturn] = ACTIONS(3197), - [anon_sym_noreturn] = ACTIONS(3197), - [anon_sym_mutable] = ACTIONS(3197), - [anon_sym_constinit] = ACTIONS(3197), - [anon_sym_consteval] = ACTIONS(3197), - [sym_primitive_type] = ACTIONS(3197), - [anon_sym_enum] = ACTIONS(3197), - [anon_sym_class] = ACTIONS(3197), - [anon_sym_struct] = ACTIONS(3197), - [anon_sym_union] = ACTIONS(3197), - [anon_sym_if] = ACTIONS(3197), - [anon_sym_else] = ACTIONS(3197), - [anon_sym_switch] = ACTIONS(3197), - [anon_sym_case] = ACTIONS(3197), - [anon_sym_default] = ACTIONS(3197), - [anon_sym_while] = ACTIONS(3197), - [anon_sym_do] = ACTIONS(3197), - [anon_sym_for] = ACTIONS(3197), - [anon_sym_return] = ACTIONS(3197), - [anon_sym_break] = ACTIONS(3197), - [anon_sym_continue] = ACTIONS(3197), - [anon_sym_goto] = ACTIONS(3197), - [anon_sym___try] = ACTIONS(3197), - [anon_sym___leave] = ACTIONS(3197), - [anon_sym_not] = ACTIONS(3197), - [anon_sym_compl] = ACTIONS(3197), - [anon_sym_DASH_DASH] = ACTIONS(3199), - [anon_sym_PLUS_PLUS] = ACTIONS(3199), - [anon_sym_sizeof] = ACTIONS(3197), - [anon_sym___alignof__] = ACTIONS(3197), - [anon_sym___alignof] = ACTIONS(3197), - [anon_sym__alignof] = ACTIONS(3197), - [anon_sym_alignof] = ACTIONS(3197), - [anon_sym__Alignof] = ACTIONS(3197), - [anon_sym_offsetof] = ACTIONS(3197), - [anon_sym__Generic] = ACTIONS(3197), - [anon_sym_asm] = ACTIONS(3197), - [anon_sym___asm__] = ACTIONS(3197), - [sym_number_literal] = ACTIONS(3199), - [anon_sym_L_SQUOTE] = ACTIONS(3199), - [anon_sym_u_SQUOTE] = ACTIONS(3199), - [anon_sym_U_SQUOTE] = ACTIONS(3199), - [anon_sym_u8_SQUOTE] = ACTIONS(3199), - [anon_sym_SQUOTE] = ACTIONS(3199), - [anon_sym_L_DQUOTE] = ACTIONS(3199), - [anon_sym_u_DQUOTE] = ACTIONS(3199), - [anon_sym_U_DQUOTE] = ACTIONS(3199), - [anon_sym_u8_DQUOTE] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym_true] = ACTIONS(3197), - [sym_false] = ACTIONS(3197), - [anon_sym_NULL] = ACTIONS(3197), - [anon_sym_nullptr] = ACTIONS(3197), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3197), - [anon_sym_decltype] = ACTIONS(3197), - [anon_sym_virtual] = ACTIONS(3197), - [anon_sym_alignas] = ACTIONS(3197), - [anon_sym_explicit] = ACTIONS(3197), - [anon_sym_typename] = ACTIONS(3197), - [anon_sym_template] = ACTIONS(3197), - [anon_sym_operator] = ACTIONS(3197), - [anon_sym_try] = ACTIONS(3197), - [anon_sym_delete] = ACTIONS(3197), - [anon_sym_throw] = ACTIONS(3197), - [anon_sym_namespace] = ACTIONS(3197), - [anon_sym_using] = ACTIONS(3197), - [anon_sym_static_assert] = ACTIONS(3197), - [anon_sym_concept] = ACTIONS(3197), - [anon_sym_co_return] = ACTIONS(3197), - [anon_sym_co_yield] = ACTIONS(3197), - [anon_sym_R_DQUOTE] = ACTIONS(3199), - [anon_sym_LR_DQUOTE] = ACTIONS(3199), - [anon_sym_uR_DQUOTE] = ACTIONS(3199), - [anon_sym_UR_DQUOTE] = ACTIONS(3199), - [anon_sym_u8R_DQUOTE] = ACTIONS(3199), - [anon_sym_co_await] = ACTIONS(3197), - [anon_sym_new] = ACTIONS(3197), - [anon_sym_requires] = ACTIONS(3197), - [sym_this] = ACTIONS(3197), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3199), - [sym_semgrep_named_ellipsis] = ACTIONS(3199), - }, - [628] = { - [sym_identifier] = ACTIONS(3121), - [aux_sym_preproc_include_token1] = ACTIONS(3121), - [aux_sym_preproc_def_token1] = ACTIONS(3121), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3123), - [aux_sym_preproc_if_token1] = ACTIONS(3121), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3121), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3121), - [sym_preproc_directive] = ACTIONS(3121), - [anon_sym_LPAREN2] = ACTIONS(3123), - [anon_sym_BANG] = ACTIONS(3123), - [anon_sym_TILDE] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3121), - [anon_sym_PLUS] = ACTIONS(3121), - [anon_sym_STAR] = ACTIONS(3123), - [anon_sym_AMP_AMP] = ACTIONS(3123), - [anon_sym_AMP] = ACTIONS(3121), - [anon_sym_SEMI] = ACTIONS(3123), - [anon_sym___extension__] = ACTIONS(3121), - [anon_sym_typedef] = ACTIONS(3121), - [anon_sym_extern] = ACTIONS(3121), - [anon_sym___attribute__] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(3123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3123), - [anon_sym___declspec] = ACTIONS(3121), - [anon_sym___based] = ACTIONS(3121), - [anon_sym___cdecl] = ACTIONS(3121), - [anon_sym___clrcall] = ACTIONS(3121), - [anon_sym___stdcall] = ACTIONS(3121), - [anon_sym___fastcall] = ACTIONS(3121), - [anon_sym___thiscall] = ACTIONS(3121), - [anon_sym___vectorcall] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(3123), - [anon_sym_RBRACE] = ACTIONS(3123), - [anon_sym_signed] = ACTIONS(3121), - [anon_sym_unsigned] = ACTIONS(3121), - [anon_sym_long] = ACTIONS(3121), - [anon_sym_short] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3121), - [anon_sym_static] = ACTIONS(3121), - [anon_sym_register] = ACTIONS(3121), - [anon_sym_inline] = ACTIONS(3121), - [anon_sym___inline] = ACTIONS(3121), - [anon_sym___inline__] = ACTIONS(3121), - [anon_sym___forceinline] = ACTIONS(3121), - [anon_sym_thread_local] = ACTIONS(3121), - [anon_sym___thread] = ACTIONS(3121), - [anon_sym_const] = ACTIONS(3121), - [anon_sym_constexpr] = ACTIONS(3121), - [anon_sym_volatile] = ACTIONS(3121), - [anon_sym_restrict] = ACTIONS(3121), - [anon_sym___restrict__] = ACTIONS(3121), - [anon_sym__Atomic] = ACTIONS(3121), - [anon_sym__Noreturn] = ACTIONS(3121), - [anon_sym_noreturn] = ACTIONS(3121), - [anon_sym_mutable] = ACTIONS(3121), - [anon_sym_constinit] = ACTIONS(3121), - [anon_sym_consteval] = ACTIONS(3121), - [sym_primitive_type] = ACTIONS(3121), - [anon_sym_enum] = ACTIONS(3121), - [anon_sym_class] = ACTIONS(3121), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_if] = ACTIONS(3121), - [anon_sym_else] = ACTIONS(3121), - [anon_sym_switch] = ACTIONS(3121), - [anon_sym_case] = ACTIONS(3121), - [anon_sym_default] = ACTIONS(3121), - [anon_sym_while] = ACTIONS(3121), - [anon_sym_do] = ACTIONS(3121), - [anon_sym_for] = ACTIONS(3121), - [anon_sym_return] = ACTIONS(3121), - [anon_sym_break] = ACTIONS(3121), - [anon_sym_continue] = ACTIONS(3121), - [anon_sym_goto] = ACTIONS(3121), - [anon_sym___try] = ACTIONS(3121), - [anon_sym___leave] = ACTIONS(3121), - [anon_sym_not] = ACTIONS(3121), - [anon_sym_compl] = ACTIONS(3121), - [anon_sym_DASH_DASH] = ACTIONS(3123), - [anon_sym_PLUS_PLUS] = ACTIONS(3123), - [anon_sym_sizeof] = ACTIONS(3121), - [anon_sym___alignof__] = ACTIONS(3121), - [anon_sym___alignof] = ACTIONS(3121), - [anon_sym__alignof] = ACTIONS(3121), - [anon_sym_alignof] = ACTIONS(3121), - [anon_sym__Alignof] = ACTIONS(3121), - [anon_sym_offsetof] = ACTIONS(3121), - [anon_sym__Generic] = ACTIONS(3121), - [anon_sym_asm] = ACTIONS(3121), - [anon_sym___asm__] = ACTIONS(3121), - [sym_number_literal] = ACTIONS(3123), - [anon_sym_L_SQUOTE] = ACTIONS(3123), - [anon_sym_u_SQUOTE] = ACTIONS(3123), - [anon_sym_U_SQUOTE] = ACTIONS(3123), - [anon_sym_u8_SQUOTE] = ACTIONS(3123), - [anon_sym_SQUOTE] = ACTIONS(3123), - [anon_sym_L_DQUOTE] = ACTIONS(3123), - [anon_sym_u_DQUOTE] = ACTIONS(3123), - [anon_sym_U_DQUOTE] = ACTIONS(3123), - [anon_sym_u8_DQUOTE] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3123), - [sym_true] = ACTIONS(3121), - [sym_false] = ACTIONS(3121), - [anon_sym_NULL] = ACTIONS(3121), - [anon_sym_nullptr] = ACTIONS(3121), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3121), - [anon_sym_decltype] = ACTIONS(3121), - [anon_sym_virtual] = ACTIONS(3121), - [anon_sym_alignas] = ACTIONS(3121), - [anon_sym_explicit] = ACTIONS(3121), - [anon_sym_typename] = ACTIONS(3121), - [anon_sym_template] = ACTIONS(3121), - [anon_sym_operator] = ACTIONS(3121), - [anon_sym_try] = ACTIONS(3121), - [anon_sym_delete] = ACTIONS(3121), - [anon_sym_throw] = ACTIONS(3121), - [anon_sym_namespace] = ACTIONS(3121), - [anon_sym_using] = ACTIONS(3121), - [anon_sym_static_assert] = ACTIONS(3121), - [anon_sym_concept] = ACTIONS(3121), - [anon_sym_co_return] = ACTIONS(3121), - [anon_sym_co_yield] = ACTIONS(3121), - [anon_sym_R_DQUOTE] = ACTIONS(3123), - [anon_sym_LR_DQUOTE] = ACTIONS(3123), - [anon_sym_uR_DQUOTE] = ACTIONS(3123), - [anon_sym_UR_DQUOTE] = ACTIONS(3123), - [anon_sym_u8R_DQUOTE] = ACTIONS(3123), - [anon_sym_co_await] = ACTIONS(3121), - [anon_sym_new] = ACTIONS(3121), - [anon_sym_requires] = ACTIONS(3121), - [sym_this] = ACTIONS(3121), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3123), - [sym_semgrep_named_ellipsis] = ACTIONS(3123), + [sym_auto] = ACTIONS(3171), + [anon_sym_decltype] = ACTIONS(3171), + [anon_sym_virtual] = ACTIONS(3171), + [anon_sym_alignas] = ACTIONS(3171), + [anon_sym_explicit] = ACTIONS(3171), + [anon_sym_typename] = ACTIONS(3171), + [anon_sym_template] = ACTIONS(3171), + [anon_sym_operator] = ACTIONS(3171), + [anon_sym_try] = ACTIONS(3171), + [anon_sym_delete] = ACTIONS(3171), + [anon_sym_throw] = ACTIONS(3171), + [anon_sym_namespace] = ACTIONS(3171), + [anon_sym_using] = ACTIONS(3171), + [anon_sym_static_assert] = ACTIONS(3171), + [anon_sym_concept] = ACTIONS(3171), + [anon_sym_co_return] = ACTIONS(3171), + [anon_sym_co_yield] = ACTIONS(3171), + [anon_sym_R_DQUOTE] = ACTIONS(3173), + [anon_sym_LR_DQUOTE] = ACTIONS(3173), + [anon_sym_uR_DQUOTE] = ACTIONS(3173), + [anon_sym_UR_DQUOTE] = ACTIONS(3173), + [anon_sym_u8R_DQUOTE] = ACTIONS(3173), + [anon_sym_co_await] = ACTIONS(3171), + [anon_sym_new] = ACTIONS(3171), + [anon_sym_requires] = ACTIONS(3171), + [sym_this] = ACTIONS(3171), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3173), + [sym_semgrep_named_ellipsis] = ACTIONS(3173), }, - [629] = { + [663] = { [ts_builtin_sym_end] = ACTIONS(3177), [sym_identifier] = ACTIONS(3175), [aux_sym_preproc_include_token1] = ACTIONS(3175), @@ -152457,557 +147247,1373 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3177), [sym_semgrep_named_ellipsis] = ACTIONS(3177), }, - [630] = { - [ts_builtin_sym_end] = ACTIONS(3127), - [sym_identifier] = ACTIONS(3125), - [aux_sym_preproc_include_token1] = ACTIONS(3125), - [aux_sym_preproc_def_token1] = ACTIONS(3125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3127), - [aux_sym_preproc_if_token1] = ACTIONS(3125), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3125), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3125), - [sym_preproc_directive] = ACTIONS(3125), - [anon_sym_LPAREN2] = ACTIONS(3127), - [anon_sym_BANG] = ACTIONS(3127), - [anon_sym_TILDE] = ACTIONS(3127), - [anon_sym_DASH] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(3127), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_AMP] = ACTIONS(3125), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym___extension__] = ACTIONS(3125), - [anon_sym_typedef] = ACTIONS(3125), - [anon_sym_extern] = ACTIONS(3125), - [anon_sym___attribute__] = ACTIONS(3125), - [anon_sym_COLON_COLON] = ACTIONS(3127), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3127), - [anon_sym___declspec] = ACTIONS(3125), - [anon_sym___based] = ACTIONS(3125), - [anon_sym___cdecl] = ACTIONS(3125), - [anon_sym___clrcall] = ACTIONS(3125), - [anon_sym___stdcall] = ACTIONS(3125), - [anon_sym___fastcall] = ACTIONS(3125), - [anon_sym___thiscall] = ACTIONS(3125), - [anon_sym___vectorcall] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(3127), - [anon_sym_signed] = ACTIONS(3125), - [anon_sym_unsigned] = ACTIONS(3125), - [anon_sym_long] = ACTIONS(3125), - [anon_sym_short] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3125), - [anon_sym_static] = ACTIONS(3125), - [anon_sym_register] = ACTIONS(3125), - [anon_sym_inline] = ACTIONS(3125), - [anon_sym___inline] = ACTIONS(3125), - [anon_sym___inline__] = ACTIONS(3125), - [anon_sym___forceinline] = ACTIONS(3125), - [anon_sym_thread_local] = ACTIONS(3125), - [anon_sym___thread] = ACTIONS(3125), - [anon_sym_const] = ACTIONS(3125), - [anon_sym_constexpr] = ACTIONS(3125), - [anon_sym_volatile] = ACTIONS(3125), - [anon_sym_restrict] = ACTIONS(3125), - [anon_sym___restrict__] = ACTIONS(3125), - [anon_sym__Atomic] = ACTIONS(3125), - [anon_sym__Noreturn] = ACTIONS(3125), - [anon_sym_noreturn] = ACTIONS(3125), - [anon_sym_mutable] = ACTIONS(3125), - [anon_sym_constinit] = ACTIONS(3125), - [anon_sym_consteval] = ACTIONS(3125), - [sym_primitive_type] = ACTIONS(3125), - [anon_sym_enum] = ACTIONS(3125), - [anon_sym_class] = ACTIONS(3125), - [anon_sym_struct] = ACTIONS(3125), - [anon_sym_union] = ACTIONS(3125), - [anon_sym_if] = ACTIONS(3125), - [anon_sym_else] = ACTIONS(3125), - [anon_sym_switch] = ACTIONS(3125), - [anon_sym_case] = ACTIONS(3125), - [anon_sym_default] = ACTIONS(3125), - [anon_sym_while] = ACTIONS(3125), - [anon_sym_do] = ACTIONS(3125), - [anon_sym_for] = ACTIONS(3125), - [anon_sym_return] = ACTIONS(3125), - [anon_sym_break] = ACTIONS(3125), - [anon_sym_continue] = ACTIONS(3125), - [anon_sym_goto] = ACTIONS(3125), - [anon_sym___try] = ACTIONS(3125), - [anon_sym___leave] = ACTIONS(3125), - [anon_sym_not] = ACTIONS(3125), - [anon_sym_compl] = ACTIONS(3125), - [anon_sym_DASH_DASH] = ACTIONS(3127), - [anon_sym_PLUS_PLUS] = ACTIONS(3127), - [anon_sym_sizeof] = ACTIONS(3125), - [anon_sym___alignof__] = ACTIONS(3125), - [anon_sym___alignof] = ACTIONS(3125), - [anon_sym__alignof] = ACTIONS(3125), - [anon_sym_alignof] = ACTIONS(3125), - [anon_sym__Alignof] = ACTIONS(3125), - [anon_sym_offsetof] = ACTIONS(3125), - [anon_sym__Generic] = ACTIONS(3125), - [anon_sym_asm] = ACTIONS(3125), - [anon_sym___asm__] = ACTIONS(3125), - [sym_number_literal] = ACTIONS(3127), - [anon_sym_L_SQUOTE] = ACTIONS(3127), - [anon_sym_u_SQUOTE] = ACTIONS(3127), - [anon_sym_U_SQUOTE] = ACTIONS(3127), - [anon_sym_u8_SQUOTE] = ACTIONS(3127), - [anon_sym_SQUOTE] = ACTIONS(3127), - [anon_sym_L_DQUOTE] = ACTIONS(3127), - [anon_sym_u_DQUOTE] = ACTIONS(3127), - [anon_sym_U_DQUOTE] = ACTIONS(3127), - [anon_sym_u8_DQUOTE] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym_true] = ACTIONS(3125), - [sym_false] = ACTIONS(3125), - [anon_sym_NULL] = ACTIONS(3125), - [anon_sym_nullptr] = ACTIONS(3125), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3125), - [anon_sym_decltype] = ACTIONS(3125), - [anon_sym_virtual] = ACTIONS(3125), - [anon_sym_alignas] = ACTIONS(3125), - [anon_sym_explicit] = ACTIONS(3125), - [anon_sym_typename] = ACTIONS(3125), - [anon_sym_template] = ACTIONS(3125), - [anon_sym_operator] = ACTIONS(3125), - [anon_sym_try] = ACTIONS(3125), - [anon_sym_delete] = ACTIONS(3125), - [anon_sym_throw] = ACTIONS(3125), - [anon_sym_namespace] = ACTIONS(3125), - [anon_sym_using] = ACTIONS(3125), - [anon_sym_static_assert] = ACTIONS(3125), - [anon_sym_concept] = ACTIONS(3125), - [anon_sym_co_return] = ACTIONS(3125), - [anon_sym_co_yield] = ACTIONS(3125), - [anon_sym_R_DQUOTE] = ACTIONS(3127), - [anon_sym_LR_DQUOTE] = ACTIONS(3127), - [anon_sym_uR_DQUOTE] = ACTIONS(3127), - [anon_sym_UR_DQUOTE] = ACTIONS(3127), - [anon_sym_u8R_DQUOTE] = ACTIONS(3127), - [anon_sym_co_await] = ACTIONS(3125), - [anon_sym_new] = ACTIONS(3125), - [anon_sym_requires] = ACTIONS(3125), - [sym_this] = ACTIONS(3125), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3127), - [sym_semgrep_named_ellipsis] = ACTIONS(3127), + [664] = { + [sym_identifier] = ACTIONS(3213), + [aux_sym_preproc_include_token1] = ACTIONS(3213), + [aux_sym_preproc_def_token1] = ACTIONS(3213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3215), + [aux_sym_preproc_if_token1] = ACTIONS(3213), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3213), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3213), + [sym_preproc_directive] = ACTIONS(3213), + [anon_sym_LPAREN2] = ACTIONS(3215), + [anon_sym_BANG] = ACTIONS(3215), + [anon_sym_TILDE] = ACTIONS(3215), + [anon_sym_DASH] = ACTIONS(3213), + [anon_sym_PLUS] = ACTIONS(3213), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP_AMP] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3213), + [anon_sym_SEMI] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(3213), + [anon_sym_typedef] = ACTIONS(3213), + [anon_sym_extern] = ACTIONS(3213), + [anon_sym___attribute__] = ACTIONS(3213), + [anon_sym_COLON_COLON] = ACTIONS(3215), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3215), + [anon_sym___declspec] = ACTIONS(3213), + [anon_sym___based] = ACTIONS(3213), + [anon_sym___cdecl] = ACTIONS(3213), + [anon_sym___clrcall] = ACTIONS(3213), + [anon_sym___stdcall] = ACTIONS(3213), + [anon_sym___fastcall] = ACTIONS(3213), + [anon_sym___thiscall] = ACTIONS(3213), + [anon_sym___vectorcall] = ACTIONS(3213), + [anon_sym_LBRACE] = ACTIONS(3215), + [anon_sym_RBRACE] = ACTIONS(3215), + [anon_sym_signed] = ACTIONS(3213), + [anon_sym_unsigned] = ACTIONS(3213), + [anon_sym_long] = ACTIONS(3213), + [anon_sym_short] = ACTIONS(3213), + [anon_sym_LBRACK] = ACTIONS(3213), + [anon_sym_static] = ACTIONS(3213), + [anon_sym_register] = ACTIONS(3213), + [anon_sym_inline] = ACTIONS(3213), + [anon_sym___inline] = ACTIONS(3213), + [anon_sym___inline__] = ACTIONS(3213), + [anon_sym___forceinline] = ACTIONS(3213), + [anon_sym_thread_local] = ACTIONS(3213), + [anon_sym___thread] = ACTIONS(3213), + [anon_sym_const] = ACTIONS(3213), + [anon_sym_constexpr] = ACTIONS(3213), + [anon_sym_volatile] = ACTIONS(3213), + [anon_sym_restrict] = ACTIONS(3213), + [anon_sym___restrict__] = ACTIONS(3213), + [anon_sym__Atomic] = ACTIONS(3213), + [anon_sym__Noreturn] = ACTIONS(3213), + [anon_sym_noreturn] = ACTIONS(3213), + [anon_sym_mutable] = ACTIONS(3213), + [anon_sym_constinit] = ACTIONS(3213), + [anon_sym_consteval] = ACTIONS(3213), + [sym_primitive_type] = ACTIONS(3213), + [anon_sym_enum] = ACTIONS(3213), + [anon_sym_class] = ACTIONS(3213), + [anon_sym_struct] = ACTIONS(3213), + [anon_sym_union] = ACTIONS(3213), + [anon_sym_if] = ACTIONS(3213), + [anon_sym_else] = ACTIONS(3213), + [anon_sym_switch] = ACTIONS(3213), + [anon_sym_case] = ACTIONS(3213), + [anon_sym_default] = ACTIONS(3213), + [anon_sym_while] = ACTIONS(3213), + [anon_sym_do] = ACTIONS(3213), + [anon_sym_for] = ACTIONS(3213), + [anon_sym_return] = ACTIONS(3213), + [anon_sym_break] = ACTIONS(3213), + [anon_sym_continue] = ACTIONS(3213), + [anon_sym_goto] = ACTIONS(3213), + [anon_sym___try] = ACTIONS(3213), + [anon_sym___leave] = ACTIONS(3213), + [anon_sym_not] = ACTIONS(3213), + [anon_sym_compl] = ACTIONS(3213), + [anon_sym_DASH_DASH] = ACTIONS(3215), + [anon_sym_PLUS_PLUS] = ACTIONS(3215), + [anon_sym_sizeof] = ACTIONS(3213), + [anon_sym___alignof__] = ACTIONS(3213), + [anon_sym___alignof] = ACTIONS(3213), + [anon_sym__alignof] = ACTIONS(3213), + [anon_sym_alignof] = ACTIONS(3213), + [anon_sym__Alignof] = ACTIONS(3213), + [anon_sym_offsetof] = ACTIONS(3213), + [anon_sym__Generic] = ACTIONS(3213), + [anon_sym_asm] = ACTIONS(3213), + [anon_sym___asm__] = ACTIONS(3213), + [sym_number_literal] = ACTIONS(3215), + [anon_sym_L_SQUOTE] = ACTIONS(3215), + [anon_sym_u_SQUOTE] = ACTIONS(3215), + [anon_sym_U_SQUOTE] = ACTIONS(3215), + [anon_sym_u8_SQUOTE] = ACTIONS(3215), + [anon_sym_SQUOTE] = ACTIONS(3215), + [anon_sym_L_DQUOTE] = ACTIONS(3215), + [anon_sym_u_DQUOTE] = ACTIONS(3215), + [anon_sym_U_DQUOTE] = ACTIONS(3215), + [anon_sym_u8_DQUOTE] = ACTIONS(3215), + [anon_sym_DQUOTE] = ACTIONS(3215), + [sym_true] = ACTIONS(3213), + [sym_false] = ACTIONS(3213), + [anon_sym_NULL] = ACTIONS(3213), + [anon_sym_nullptr] = ACTIONS(3213), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3213), + [anon_sym_decltype] = ACTIONS(3213), + [anon_sym_virtual] = ACTIONS(3213), + [anon_sym_alignas] = ACTIONS(3213), + [anon_sym_explicit] = ACTIONS(3213), + [anon_sym_typename] = ACTIONS(3213), + [anon_sym_template] = ACTIONS(3213), + [anon_sym_operator] = ACTIONS(3213), + [anon_sym_try] = ACTIONS(3213), + [anon_sym_delete] = ACTIONS(3213), + [anon_sym_throw] = ACTIONS(3213), + [anon_sym_namespace] = ACTIONS(3213), + [anon_sym_using] = ACTIONS(3213), + [anon_sym_static_assert] = ACTIONS(3213), + [anon_sym_concept] = ACTIONS(3213), + [anon_sym_co_return] = ACTIONS(3213), + [anon_sym_co_yield] = ACTIONS(3213), + [anon_sym_R_DQUOTE] = ACTIONS(3215), + [anon_sym_LR_DQUOTE] = ACTIONS(3215), + [anon_sym_uR_DQUOTE] = ACTIONS(3215), + [anon_sym_UR_DQUOTE] = ACTIONS(3215), + [anon_sym_u8R_DQUOTE] = ACTIONS(3215), + [anon_sym_co_await] = ACTIONS(3213), + [anon_sym_new] = ACTIONS(3213), + [anon_sym_requires] = ACTIONS(3213), + [sym_this] = ACTIONS(3213), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3215), + [sym_semgrep_named_ellipsis] = ACTIONS(3215), }, - [631] = { - [sym_identifier] = ACTIONS(3139), - [aux_sym_preproc_include_token1] = ACTIONS(3139), - [aux_sym_preproc_def_token1] = ACTIONS(3139), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3141), - [aux_sym_preproc_if_token1] = ACTIONS(3139), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3139), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3139), - [sym_preproc_directive] = ACTIONS(3139), - [anon_sym_LPAREN2] = ACTIONS(3141), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_AMP_AMP] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3139), - [anon_sym_SEMI] = ACTIONS(3141), - [anon_sym___extension__] = ACTIONS(3139), - [anon_sym_typedef] = ACTIONS(3139), - [anon_sym_extern] = ACTIONS(3139), - [anon_sym___attribute__] = ACTIONS(3139), - [anon_sym_COLON_COLON] = ACTIONS(3141), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3141), - [anon_sym___declspec] = ACTIONS(3139), - [anon_sym___based] = ACTIONS(3139), - [anon_sym___cdecl] = ACTIONS(3139), - [anon_sym___clrcall] = ACTIONS(3139), - [anon_sym___stdcall] = ACTIONS(3139), - [anon_sym___fastcall] = ACTIONS(3139), - [anon_sym___thiscall] = ACTIONS(3139), - [anon_sym___vectorcall] = ACTIONS(3139), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_RBRACE] = ACTIONS(3141), - [anon_sym_signed] = ACTIONS(3139), - [anon_sym_unsigned] = ACTIONS(3139), - [anon_sym_long] = ACTIONS(3139), - [anon_sym_short] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_static] = ACTIONS(3139), - [anon_sym_register] = ACTIONS(3139), - [anon_sym_inline] = ACTIONS(3139), - [anon_sym___inline] = ACTIONS(3139), - [anon_sym___inline__] = ACTIONS(3139), - [anon_sym___forceinline] = ACTIONS(3139), - [anon_sym_thread_local] = ACTIONS(3139), - [anon_sym___thread] = ACTIONS(3139), - [anon_sym_const] = ACTIONS(3139), - [anon_sym_constexpr] = ACTIONS(3139), - [anon_sym_volatile] = ACTIONS(3139), - [anon_sym_restrict] = ACTIONS(3139), - [anon_sym___restrict__] = ACTIONS(3139), - [anon_sym__Atomic] = ACTIONS(3139), - [anon_sym__Noreturn] = ACTIONS(3139), - [anon_sym_noreturn] = ACTIONS(3139), - [anon_sym_mutable] = ACTIONS(3139), - [anon_sym_constinit] = ACTIONS(3139), - [anon_sym_consteval] = ACTIONS(3139), - [sym_primitive_type] = ACTIONS(3139), - [anon_sym_enum] = ACTIONS(3139), - [anon_sym_class] = ACTIONS(3139), - [anon_sym_struct] = ACTIONS(3139), - [anon_sym_union] = ACTIONS(3139), - [anon_sym_if] = ACTIONS(3139), - [anon_sym_else] = ACTIONS(3139), - [anon_sym_switch] = ACTIONS(3139), - [anon_sym_case] = ACTIONS(3139), - [anon_sym_default] = ACTIONS(3139), - [anon_sym_while] = ACTIONS(3139), - [anon_sym_do] = ACTIONS(3139), - [anon_sym_for] = ACTIONS(3139), - [anon_sym_return] = ACTIONS(3139), - [anon_sym_break] = ACTIONS(3139), - [anon_sym_continue] = ACTIONS(3139), - [anon_sym_goto] = ACTIONS(3139), - [anon_sym___try] = ACTIONS(3139), - [anon_sym___leave] = ACTIONS(3139), - [anon_sym_not] = ACTIONS(3139), - [anon_sym_compl] = ACTIONS(3139), - [anon_sym_DASH_DASH] = ACTIONS(3141), - [anon_sym_PLUS_PLUS] = ACTIONS(3141), - [anon_sym_sizeof] = ACTIONS(3139), - [anon_sym___alignof__] = ACTIONS(3139), - [anon_sym___alignof] = ACTIONS(3139), - [anon_sym__alignof] = ACTIONS(3139), - [anon_sym_alignof] = ACTIONS(3139), - [anon_sym__Alignof] = ACTIONS(3139), - [anon_sym_offsetof] = ACTIONS(3139), - [anon_sym__Generic] = ACTIONS(3139), - [anon_sym_asm] = ACTIONS(3139), - [anon_sym___asm__] = ACTIONS(3139), - [sym_number_literal] = ACTIONS(3141), - [anon_sym_L_SQUOTE] = ACTIONS(3141), - [anon_sym_u_SQUOTE] = ACTIONS(3141), - [anon_sym_U_SQUOTE] = ACTIONS(3141), - [anon_sym_u8_SQUOTE] = ACTIONS(3141), - [anon_sym_SQUOTE] = ACTIONS(3141), - [anon_sym_L_DQUOTE] = ACTIONS(3141), - [anon_sym_u_DQUOTE] = ACTIONS(3141), - [anon_sym_U_DQUOTE] = ACTIONS(3141), - [anon_sym_u8_DQUOTE] = ACTIONS(3141), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym_true] = ACTIONS(3139), - [sym_false] = ACTIONS(3139), - [anon_sym_NULL] = ACTIONS(3139), - [anon_sym_nullptr] = ACTIONS(3139), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3139), - [anon_sym_decltype] = ACTIONS(3139), - [anon_sym_virtual] = ACTIONS(3139), - [anon_sym_alignas] = ACTIONS(3139), - [anon_sym_explicit] = ACTIONS(3139), - [anon_sym_typename] = ACTIONS(3139), - [anon_sym_template] = ACTIONS(3139), - [anon_sym_operator] = ACTIONS(3139), - [anon_sym_try] = ACTIONS(3139), - [anon_sym_delete] = ACTIONS(3139), - [anon_sym_throw] = ACTIONS(3139), - [anon_sym_namespace] = ACTIONS(3139), - [anon_sym_using] = ACTIONS(3139), - [anon_sym_static_assert] = ACTIONS(3139), - [anon_sym_concept] = ACTIONS(3139), - [anon_sym_co_return] = ACTIONS(3139), - [anon_sym_co_yield] = ACTIONS(3139), - [anon_sym_R_DQUOTE] = ACTIONS(3141), - [anon_sym_LR_DQUOTE] = ACTIONS(3141), - [anon_sym_uR_DQUOTE] = ACTIONS(3141), - [anon_sym_UR_DQUOTE] = ACTIONS(3141), - [anon_sym_u8R_DQUOTE] = ACTIONS(3141), - [anon_sym_co_await] = ACTIONS(3139), - [anon_sym_new] = ACTIONS(3139), - [anon_sym_requires] = ACTIONS(3139), - [sym_this] = ACTIONS(3139), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3141), - [sym_semgrep_named_ellipsis] = ACTIONS(3141), + [665] = { + [sym_identifier] = ACTIONS(3099), + [aux_sym_preproc_include_token1] = ACTIONS(3099), + [aux_sym_preproc_def_token1] = ACTIONS(3099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3101), + [aux_sym_preproc_if_token1] = ACTIONS(3099), + [aux_sym_preproc_if_token2] = ACTIONS(3099), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3099), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3099), + [sym_preproc_directive] = ACTIONS(3099), + [anon_sym_LPAREN2] = ACTIONS(3101), + [anon_sym_BANG] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3101), + [anon_sym_DASH] = ACTIONS(3099), + [anon_sym_PLUS] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_AMP_AMP] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym_SEMI] = ACTIONS(3101), + [anon_sym___extension__] = ACTIONS(3099), + [anon_sym_typedef] = ACTIONS(3099), + [anon_sym_extern] = ACTIONS(3099), + [anon_sym___attribute__] = ACTIONS(3099), + [anon_sym_COLON_COLON] = ACTIONS(3101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3101), + [anon_sym___declspec] = ACTIONS(3099), + [anon_sym___based] = ACTIONS(3099), + [anon_sym___cdecl] = ACTIONS(3099), + [anon_sym___clrcall] = ACTIONS(3099), + [anon_sym___stdcall] = ACTIONS(3099), + [anon_sym___fastcall] = ACTIONS(3099), + [anon_sym___thiscall] = ACTIONS(3099), + [anon_sym___vectorcall] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(3101), + [anon_sym_signed] = ACTIONS(3099), + [anon_sym_unsigned] = ACTIONS(3099), + [anon_sym_long] = ACTIONS(3099), + [anon_sym_short] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3099), + [anon_sym_register] = ACTIONS(3099), + [anon_sym_inline] = ACTIONS(3099), + [anon_sym___inline] = ACTIONS(3099), + [anon_sym___inline__] = ACTIONS(3099), + [anon_sym___forceinline] = ACTIONS(3099), + [anon_sym_thread_local] = ACTIONS(3099), + [anon_sym___thread] = ACTIONS(3099), + [anon_sym_const] = ACTIONS(3099), + [anon_sym_constexpr] = ACTIONS(3099), + [anon_sym_volatile] = ACTIONS(3099), + [anon_sym_restrict] = ACTIONS(3099), + [anon_sym___restrict__] = ACTIONS(3099), + [anon_sym__Atomic] = ACTIONS(3099), + [anon_sym__Noreturn] = ACTIONS(3099), + [anon_sym_noreturn] = ACTIONS(3099), + [anon_sym_mutable] = ACTIONS(3099), + [anon_sym_constinit] = ACTIONS(3099), + [anon_sym_consteval] = ACTIONS(3099), + [sym_primitive_type] = ACTIONS(3099), + [anon_sym_enum] = ACTIONS(3099), + [anon_sym_class] = ACTIONS(3099), + [anon_sym_struct] = ACTIONS(3099), + [anon_sym_union] = ACTIONS(3099), + [anon_sym_if] = ACTIONS(3099), + [anon_sym_else] = ACTIONS(3099), + [anon_sym_switch] = ACTIONS(3099), + [anon_sym_case] = ACTIONS(3099), + [anon_sym_default] = ACTIONS(3099), + [anon_sym_while] = ACTIONS(3099), + [anon_sym_do] = ACTIONS(3099), + [anon_sym_for] = ACTIONS(3099), + [anon_sym_return] = ACTIONS(3099), + [anon_sym_break] = ACTIONS(3099), + [anon_sym_continue] = ACTIONS(3099), + [anon_sym_goto] = ACTIONS(3099), + [anon_sym___try] = ACTIONS(3099), + [anon_sym___leave] = ACTIONS(3099), + [anon_sym_not] = ACTIONS(3099), + [anon_sym_compl] = ACTIONS(3099), + [anon_sym_DASH_DASH] = ACTIONS(3101), + [anon_sym_PLUS_PLUS] = ACTIONS(3101), + [anon_sym_sizeof] = ACTIONS(3099), + [anon_sym___alignof__] = ACTIONS(3099), + [anon_sym___alignof] = ACTIONS(3099), + [anon_sym__alignof] = ACTIONS(3099), + [anon_sym_alignof] = ACTIONS(3099), + [anon_sym__Alignof] = ACTIONS(3099), + [anon_sym_offsetof] = ACTIONS(3099), + [anon_sym__Generic] = ACTIONS(3099), + [anon_sym_asm] = ACTIONS(3099), + [anon_sym___asm__] = ACTIONS(3099), + [sym_number_literal] = ACTIONS(3101), + [anon_sym_L_SQUOTE] = ACTIONS(3101), + [anon_sym_u_SQUOTE] = ACTIONS(3101), + [anon_sym_U_SQUOTE] = ACTIONS(3101), + [anon_sym_u8_SQUOTE] = ACTIONS(3101), + [anon_sym_SQUOTE] = ACTIONS(3101), + [anon_sym_L_DQUOTE] = ACTIONS(3101), + [anon_sym_u_DQUOTE] = ACTIONS(3101), + [anon_sym_U_DQUOTE] = ACTIONS(3101), + [anon_sym_u8_DQUOTE] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(3101), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [anon_sym_NULL] = ACTIONS(3099), + [anon_sym_nullptr] = ACTIONS(3099), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3099), + [anon_sym_decltype] = ACTIONS(3099), + [anon_sym_virtual] = ACTIONS(3099), + [anon_sym_alignas] = ACTIONS(3099), + [anon_sym_explicit] = ACTIONS(3099), + [anon_sym_typename] = ACTIONS(3099), + [anon_sym_template] = ACTIONS(3099), + [anon_sym_operator] = ACTIONS(3099), + [anon_sym_try] = ACTIONS(3099), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_throw] = ACTIONS(3099), + [anon_sym_namespace] = ACTIONS(3099), + [anon_sym_using] = ACTIONS(3099), + [anon_sym_static_assert] = ACTIONS(3099), + [anon_sym_concept] = ACTIONS(3099), + [anon_sym_co_return] = ACTIONS(3099), + [anon_sym_co_yield] = ACTIONS(3099), + [anon_sym_R_DQUOTE] = ACTIONS(3101), + [anon_sym_LR_DQUOTE] = ACTIONS(3101), + [anon_sym_uR_DQUOTE] = ACTIONS(3101), + [anon_sym_UR_DQUOTE] = ACTIONS(3101), + [anon_sym_u8R_DQUOTE] = ACTIONS(3101), + [anon_sym_co_await] = ACTIONS(3099), + [anon_sym_new] = ACTIONS(3099), + [anon_sym_requires] = ACTIONS(3099), + [sym_this] = ACTIONS(3099), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3101), + [sym_semgrep_named_ellipsis] = ACTIONS(3101), }, - [632] = { - [ts_builtin_sym_end] = ACTIONS(3145), - [sym_identifier] = ACTIONS(3143), - [aux_sym_preproc_include_token1] = ACTIONS(3143), - [aux_sym_preproc_def_token1] = ACTIONS(3143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3145), - [aux_sym_preproc_if_token1] = ACTIONS(3143), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3143), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3143), - [sym_preproc_directive] = ACTIONS(3143), - [anon_sym_LPAREN2] = ACTIONS(3145), - [anon_sym_BANG] = ACTIONS(3145), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_DASH] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3145), - [anon_sym_AMP_AMP] = ACTIONS(3145), - [anon_sym_AMP] = ACTIONS(3143), - [anon_sym_SEMI] = ACTIONS(3145), - [anon_sym___extension__] = ACTIONS(3143), - [anon_sym_typedef] = ACTIONS(3143), - [anon_sym_extern] = ACTIONS(3143), - [anon_sym___attribute__] = ACTIONS(3143), - [anon_sym_COLON_COLON] = ACTIONS(3145), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3145), - [anon_sym___declspec] = ACTIONS(3143), - [anon_sym___based] = ACTIONS(3143), - [anon_sym___cdecl] = ACTIONS(3143), - [anon_sym___clrcall] = ACTIONS(3143), - [anon_sym___stdcall] = ACTIONS(3143), - [anon_sym___fastcall] = ACTIONS(3143), - [anon_sym___thiscall] = ACTIONS(3143), - [anon_sym___vectorcall] = ACTIONS(3143), - [anon_sym_LBRACE] = ACTIONS(3145), - [anon_sym_signed] = ACTIONS(3143), - [anon_sym_unsigned] = ACTIONS(3143), - [anon_sym_long] = ACTIONS(3143), - [anon_sym_short] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_static] = ACTIONS(3143), - [anon_sym_register] = ACTIONS(3143), - [anon_sym_inline] = ACTIONS(3143), - [anon_sym___inline] = ACTIONS(3143), - [anon_sym___inline__] = ACTIONS(3143), - [anon_sym___forceinline] = ACTIONS(3143), - [anon_sym_thread_local] = ACTIONS(3143), - [anon_sym___thread] = ACTIONS(3143), - [anon_sym_const] = ACTIONS(3143), - [anon_sym_constexpr] = ACTIONS(3143), - [anon_sym_volatile] = ACTIONS(3143), - [anon_sym_restrict] = ACTIONS(3143), - [anon_sym___restrict__] = ACTIONS(3143), - [anon_sym__Atomic] = ACTIONS(3143), - [anon_sym__Noreturn] = ACTIONS(3143), - [anon_sym_noreturn] = ACTIONS(3143), - [anon_sym_mutable] = ACTIONS(3143), - [anon_sym_constinit] = ACTIONS(3143), - [anon_sym_consteval] = ACTIONS(3143), - [sym_primitive_type] = ACTIONS(3143), - [anon_sym_enum] = ACTIONS(3143), - [anon_sym_class] = ACTIONS(3143), - [anon_sym_struct] = ACTIONS(3143), - [anon_sym_union] = ACTIONS(3143), - [anon_sym_if] = ACTIONS(3143), - [anon_sym_else] = ACTIONS(3143), - [anon_sym_switch] = ACTIONS(3143), - [anon_sym_case] = ACTIONS(3143), - [anon_sym_default] = ACTIONS(3143), - [anon_sym_while] = ACTIONS(3143), - [anon_sym_do] = ACTIONS(3143), - [anon_sym_for] = ACTIONS(3143), - [anon_sym_return] = ACTIONS(3143), - [anon_sym_break] = ACTIONS(3143), - [anon_sym_continue] = ACTIONS(3143), - [anon_sym_goto] = ACTIONS(3143), - [anon_sym___try] = ACTIONS(3143), - [anon_sym___leave] = ACTIONS(3143), - [anon_sym_not] = ACTIONS(3143), - [anon_sym_compl] = ACTIONS(3143), - [anon_sym_DASH_DASH] = ACTIONS(3145), - [anon_sym_PLUS_PLUS] = ACTIONS(3145), - [anon_sym_sizeof] = ACTIONS(3143), - [anon_sym___alignof__] = ACTIONS(3143), - [anon_sym___alignof] = ACTIONS(3143), - [anon_sym__alignof] = ACTIONS(3143), - [anon_sym_alignof] = ACTIONS(3143), - [anon_sym__Alignof] = ACTIONS(3143), - [anon_sym_offsetof] = ACTIONS(3143), - [anon_sym__Generic] = ACTIONS(3143), - [anon_sym_asm] = ACTIONS(3143), - [anon_sym___asm__] = ACTIONS(3143), - [sym_number_literal] = ACTIONS(3145), - [anon_sym_L_SQUOTE] = ACTIONS(3145), - [anon_sym_u_SQUOTE] = ACTIONS(3145), - [anon_sym_U_SQUOTE] = ACTIONS(3145), - [anon_sym_u8_SQUOTE] = ACTIONS(3145), - [anon_sym_SQUOTE] = ACTIONS(3145), - [anon_sym_L_DQUOTE] = ACTIONS(3145), - [anon_sym_u_DQUOTE] = ACTIONS(3145), - [anon_sym_U_DQUOTE] = ACTIONS(3145), - [anon_sym_u8_DQUOTE] = ACTIONS(3145), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym_true] = ACTIONS(3143), - [sym_false] = ACTIONS(3143), - [anon_sym_NULL] = ACTIONS(3143), - [anon_sym_nullptr] = ACTIONS(3143), + [666] = { + [sym_identifier] = ACTIONS(3103), + [aux_sym_preproc_include_token1] = ACTIONS(3103), + [aux_sym_preproc_def_token1] = ACTIONS(3103), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3105), + [aux_sym_preproc_if_token1] = ACTIONS(3103), + [aux_sym_preproc_if_token2] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3103), + [sym_preproc_directive] = ACTIONS(3103), + [anon_sym_LPAREN2] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3103), + [anon_sym_PLUS] = ACTIONS(3103), + [anon_sym_STAR] = ACTIONS(3105), + [anon_sym_AMP_AMP] = ACTIONS(3105), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym___extension__] = ACTIONS(3103), + [anon_sym_typedef] = ACTIONS(3103), + [anon_sym_extern] = ACTIONS(3103), + [anon_sym___attribute__] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3105), + [anon_sym___declspec] = ACTIONS(3103), + [anon_sym___based] = ACTIONS(3103), + [anon_sym___cdecl] = ACTIONS(3103), + [anon_sym___clrcall] = ACTIONS(3103), + [anon_sym___stdcall] = ACTIONS(3103), + [anon_sym___fastcall] = ACTIONS(3103), + [anon_sym___thiscall] = ACTIONS(3103), + [anon_sym___vectorcall] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(3105), + [anon_sym_signed] = ACTIONS(3103), + [anon_sym_unsigned] = ACTIONS(3103), + [anon_sym_long] = ACTIONS(3103), + [anon_sym_short] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(3103), + [anon_sym_static] = ACTIONS(3103), + [anon_sym_register] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym___inline] = ACTIONS(3103), + [anon_sym___inline__] = ACTIONS(3103), + [anon_sym___forceinline] = ACTIONS(3103), + [anon_sym_thread_local] = ACTIONS(3103), + [anon_sym___thread] = ACTIONS(3103), + [anon_sym_const] = ACTIONS(3103), + [anon_sym_constexpr] = ACTIONS(3103), + [anon_sym_volatile] = ACTIONS(3103), + [anon_sym_restrict] = ACTIONS(3103), + [anon_sym___restrict__] = ACTIONS(3103), + [anon_sym__Atomic] = ACTIONS(3103), + [anon_sym__Noreturn] = ACTIONS(3103), + [anon_sym_noreturn] = ACTIONS(3103), + [anon_sym_mutable] = ACTIONS(3103), + [anon_sym_constinit] = ACTIONS(3103), + [anon_sym_consteval] = ACTIONS(3103), + [sym_primitive_type] = ACTIONS(3103), + [anon_sym_enum] = ACTIONS(3103), + [anon_sym_class] = ACTIONS(3103), + [anon_sym_struct] = ACTIONS(3103), + [anon_sym_union] = ACTIONS(3103), + [anon_sym_if] = ACTIONS(3103), + [anon_sym_else] = ACTIONS(3103), + [anon_sym_switch] = ACTIONS(3103), + [anon_sym_case] = ACTIONS(3103), + [anon_sym_default] = ACTIONS(3103), + [anon_sym_while] = ACTIONS(3103), + [anon_sym_do] = ACTIONS(3103), + [anon_sym_for] = ACTIONS(3103), + [anon_sym_return] = ACTIONS(3103), + [anon_sym_break] = ACTIONS(3103), + [anon_sym_continue] = ACTIONS(3103), + [anon_sym_goto] = ACTIONS(3103), + [anon_sym___try] = ACTIONS(3103), + [anon_sym___leave] = ACTIONS(3103), + [anon_sym_not] = ACTIONS(3103), + [anon_sym_compl] = ACTIONS(3103), + [anon_sym_DASH_DASH] = ACTIONS(3105), + [anon_sym_PLUS_PLUS] = ACTIONS(3105), + [anon_sym_sizeof] = ACTIONS(3103), + [anon_sym___alignof__] = ACTIONS(3103), + [anon_sym___alignof] = ACTIONS(3103), + [anon_sym__alignof] = ACTIONS(3103), + [anon_sym_alignof] = ACTIONS(3103), + [anon_sym__Alignof] = ACTIONS(3103), + [anon_sym_offsetof] = ACTIONS(3103), + [anon_sym__Generic] = ACTIONS(3103), + [anon_sym_asm] = ACTIONS(3103), + [anon_sym___asm__] = ACTIONS(3103), + [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(3103), + [sym_false] = ACTIONS(3103), + [anon_sym_NULL] = ACTIONS(3103), + [anon_sym_nullptr] = ACTIONS(3103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3103), + [anon_sym_decltype] = ACTIONS(3103), + [anon_sym_virtual] = ACTIONS(3103), + [anon_sym_alignas] = ACTIONS(3103), + [anon_sym_explicit] = ACTIONS(3103), + [anon_sym_typename] = ACTIONS(3103), + [anon_sym_template] = ACTIONS(3103), + [anon_sym_operator] = ACTIONS(3103), + [anon_sym_try] = ACTIONS(3103), + [anon_sym_delete] = ACTIONS(3103), + [anon_sym_throw] = ACTIONS(3103), + [anon_sym_namespace] = ACTIONS(3103), + [anon_sym_using] = ACTIONS(3103), + [anon_sym_static_assert] = ACTIONS(3103), + [anon_sym_concept] = ACTIONS(3103), + [anon_sym_co_return] = ACTIONS(3103), + [anon_sym_co_yield] = ACTIONS(3103), + [anon_sym_R_DQUOTE] = ACTIONS(3105), + [anon_sym_LR_DQUOTE] = ACTIONS(3105), + [anon_sym_uR_DQUOTE] = ACTIONS(3105), + [anon_sym_UR_DQUOTE] = ACTIONS(3105), + [anon_sym_u8R_DQUOTE] = ACTIONS(3105), + [anon_sym_co_await] = ACTIONS(3103), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(3103), + [sym_this] = ACTIONS(3103), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3105), + [sym_semgrep_named_ellipsis] = ACTIONS(3105), + }, + [667] = { + [sym_identifier] = ACTIONS(3107), + [aux_sym_preproc_include_token1] = ACTIONS(3107), + [aux_sym_preproc_def_token1] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3109), + [aux_sym_preproc_if_token1] = ACTIONS(3107), + [aux_sym_preproc_if_token2] = ACTIONS(3107), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3107), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3107), + [sym_preproc_directive] = ACTIONS(3107), + [anon_sym_LPAREN2] = ACTIONS(3109), + [anon_sym_BANG] = ACTIONS(3109), + [anon_sym_TILDE] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_AMP] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym___extension__] = ACTIONS(3107), + [anon_sym_typedef] = ACTIONS(3107), + [anon_sym_extern] = ACTIONS(3107), + [anon_sym___attribute__] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(3109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3109), + [anon_sym___declspec] = ACTIONS(3107), + [anon_sym___based] = ACTIONS(3107), + [anon_sym___cdecl] = ACTIONS(3107), + [anon_sym___clrcall] = ACTIONS(3107), + [anon_sym___stdcall] = ACTIONS(3107), + [anon_sym___fastcall] = ACTIONS(3107), + [anon_sym___thiscall] = ACTIONS(3107), + [anon_sym___vectorcall] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(3109), + [anon_sym_signed] = ACTIONS(3107), + [anon_sym_unsigned] = ACTIONS(3107), + [anon_sym_long] = ACTIONS(3107), + [anon_sym_short] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3107), + [anon_sym_static] = ACTIONS(3107), + [anon_sym_register] = ACTIONS(3107), + [anon_sym_inline] = ACTIONS(3107), + [anon_sym___inline] = ACTIONS(3107), + [anon_sym___inline__] = ACTIONS(3107), + [anon_sym___forceinline] = ACTIONS(3107), + [anon_sym_thread_local] = ACTIONS(3107), + [anon_sym___thread] = ACTIONS(3107), + [anon_sym_const] = ACTIONS(3107), + [anon_sym_constexpr] = ACTIONS(3107), + [anon_sym_volatile] = ACTIONS(3107), + [anon_sym_restrict] = ACTIONS(3107), + [anon_sym___restrict__] = ACTIONS(3107), + [anon_sym__Atomic] = ACTIONS(3107), + [anon_sym__Noreturn] = ACTIONS(3107), + [anon_sym_noreturn] = ACTIONS(3107), + [anon_sym_mutable] = ACTIONS(3107), + [anon_sym_constinit] = ACTIONS(3107), + [anon_sym_consteval] = ACTIONS(3107), + [sym_primitive_type] = ACTIONS(3107), + [anon_sym_enum] = ACTIONS(3107), + [anon_sym_class] = ACTIONS(3107), + [anon_sym_struct] = ACTIONS(3107), + [anon_sym_union] = ACTIONS(3107), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_else] = 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___try] = ACTIONS(3107), + [anon_sym___leave] = ACTIONS(3107), + [anon_sym_not] = ACTIONS(3107), + [anon_sym_compl] = ACTIONS(3107), + [anon_sym_DASH_DASH] = ACTIONS(3109), + [anon_sym_PLUS_PLUS] = ACTIONS(3109), + [anon_sym_sizeof] = ACTIONS(3107), + [anon_sym___alignof__] = ACTIONS(3107), + [anon_sym___alignof] = ACTIONS(3107), + [anon_sym__alignof] = ACTIONS(3107), + [anon_sym_alignof] = ACTIONS(3107), + [anon_sym__Alignof] = ACTIONS(3107), + [anon_sym_offsetof] = ACTIONS(3107), + [anon_sym__Generic] = ACTIONS(3107), + [anon_sym_asm] = ACTIONS(3107), + [anon_sym___asm__] = ACTIONS(3107), + [sym_number_literal] = ACTIONS(3109), + [anon_sym_L_SQUOTE] = ACTIONS(3109), + [anon_sym_u_SQUOTE] = ACTIONS(3109), + [anon_sym_U_SQUOTE] = ACTIONS(3109), + [anon_sym_u8_SQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3109), + [anon_sym_L_DQUOTE] = ACTIONS(3109), + [anon_sym_u_DQUOTE] = ACTIONS(3109), + [anon_sym_U_DQUOTE] = ACTIONS(3109), + [anon_sym_u8_DQUOTE] = ACTIONS(3109), + [anon_sym_DQUOTE] = ACTIONS(3109), + [sym_true] = ACTIONS(3107), + [sym_false] = ACTIONS(3107), + [anon_sym_NULL] = ACTIONS(3107), + [anon_sym_nullptr] = ACTIONS(3107), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3107), + [anon_sym_decltype] = ACTIONS(3107), + [anon_sym_virtual] = ACTIONS(3107), + [anon_sym_alignas] = ACTIONS(3107), + [anon_sym_explicit] = ACTIONS(3107), + [anon_sym_typename] = ACTIONS(3107), + [anon_sym_template] = ACTIONS(3107), + [anon_sym_operator] = ACTIONS(3107), + [anon_sym_try] = ACTIONS(3107), + [anon_sym_delete] = ACTIONS(3107), + [anon_sym_throw] = ACTIONS(3107), + [anon_sym_namespace] = ACTIONS(3107), + [anon_sym_using] = ACTIONS(3107), + [anon_sym_static_assert] = ACTIONS(3107), + [anon_sym_concept] = ACTIONS(3107), + [anon_sym_co_return] = ACTIONS(3107), + [anon_sym_co_yield] = ACTIONS(3107), + [anon_sym_R_DQUOTE] = ACTIONS(3109), + [anon_sym_LR_DQUOTE] = ACTIONS(3109), + [anon_sym_uR_DQUOTE] = ACTIONS(3109), + [anon_sym_UR_DQUOTE] = ACTIONS(3109), + [anon_sym_u8R_DQUOTE] = ACTIONS(3109), + [anon_sym_co_await] = ACTIONS(3107), + [anon_sym_new] = ACTIONS(3107), + [anon_sym_requires] = ACTIONS(3107), + [sym_this] = ACTIONS(3107), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3109), + [sym_semgrep_named_ellipsis] = ACTIONS(3109), + }, + [668] = { + [sym_identifier] = ACTIONS(3163), + [aux_sym_preproc_include_token1] = ACTIONS(3163), + [aux_sym_preproc_def_token1] = ACTIONS(3163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3165), + [aux_sym_preproc_if_token1] = ACTIONS(3163), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3163), + [sym_preproc_directive] = 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___extension__] = ACTIONS(3163), + [anon_sym_typedef] = ACTIONS(3163), + [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___cdecl] = ACTIONS(3163), + [anon_sym___clrcall] = ACTIONS(3163), + [anon_sym___stdcall] = ACTIONS(3163), + [anon_sym___fastcall] = ACTIONS(3163), + [anon_sym___thiscall] = ACTIONS(3163), + [anon_sym___vectorcall] = ACTIONS(3163), + [anon_sym_LBRACE] = ACTIONS(3165), + [anon_sym_RBRACE] = ACTIONS(3165), + [anon_sym_signed] = ACTIONS(3163), + [anon_sym_unsigned] = ACTIONS(3163), + [anon_sym_long] = ACTIONS(3163), + [anon_sym_short] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_static] = ACTIONS(3163), + [anon_sym_register] = ACTIONS(3163), + [anon_sym_inline] = ACTIONS(3163), + [anon_sym___inline] = ACTIONS(3163), + [anon_sym___inline__] = ACTIONS(3163), + [anon_sym___forceinline] = ACTIONS(3163), + [anon_sym_thread_local] = ACTIONS(3163), + [anon_sym___thread] = ACTIONS(3163), + [anon_sym_const] = ACTIONS(3163), + [anon_sym_constexpr] = ACTIONS(3163), + [anon_sym_volatile] = ACTIONS(3163), + [anon_sym_restrict] = ACTIONS(3163), + [anon_sym___restrict__] = ACTIONS(3163), + [anon_sym__Atomic] = ACTIONS(3163), + [anon_sym__Noreturn] = ACTIONS(3163), + [anon_sym_noreturn] = ACTIONS(3163), + [anon_sym_mutable] = ACTIONS(3163), + [anon_sym_constinit] = ACTIONS(3163), + [anon_sym_consteval] = 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_else] = 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___try] = ACTIONS(3163), + [anon_sym___leave] = 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), + [anon_sym___alignof__] = ACTIONS(3163), + [anon_sym___alignof] = ACTIONS(3163), + [anon_sym__alignof] = ACTIONS(3163), + [anon_sym_alignof] = ACTIONS(3163), + [anon_sym__Alignof] = ACTIONS(3163), + [anon_sym_offsetof] = ACTIONS(3163), + [anon_sym__Generic] = ACTIONS(3163), + [anon_sym_asm] = ACTIONS(3163), + [anon_sym___asm__] = 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), + [anon_sym_NULL] = ACTIONS(3163), + [anon_sym_nullptr] = ACTIONS(3163), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3143), - [anon_sym_decltype] = ACTIONS(3143), - [anon_sym_virtual] = ACTIONS(3143), - [anon_sym_alignas] = ACTIONS(3143), - [anon_sym_explicit] = ACTIONS(3143), - [anon_sym_typename] = ACTIONS(3143), - [anon_sym_template] = ACTIONS(3143), - [anon_sym_operator] = ACTIONS(3143), - [anon_sym_try] = ACTIONS(3143), - [anon_sym_delete] = ACTIONS(3143), - [anon_sym_throw] = ACTIONS(3143), - [anon_sym_namespace] = ACTIONS(3143), - [anon_sym_using] = ACTIONS(3143), - [anon_sym_static_assert] = ACTIONS(3143), - [anon_sym_concept] = ACTIONS(3143), - [anon_sym_co_return] = ACTIONS(3143), - [anon_sym_co_yield] = ACTIONS(3143), - [anon_sym_R_DQUOTE] = ACTIONS(3145), - [anon_sym_LR_DQUOTE] = ACTIONS(3145), - [anon_sym_uR_DQUOTE] = ACTIONS(3145), - [anon_sym_UR_DQUOTE] = ACTIONS(3145), - [anon_sym_u8R_DQUOTE] = ACTIONS(3145), - [anon_sym_co_await] = ACTIONS(3143), - [anon_sym_new] = ACTIONS(3143), - [anon_sym_requires] = ACTIONS(3143), - [sym_this] = ACTIONS(3143), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3145), - [sym_semgrep_named_ellipsis] = ACTIONS(3145), + [sym_auto] = ACTIONS(3163), + [anon_sym_decltype] = ACTIONS(3163), + [anon_sym_virtual] = ACTIONS(3163), + [anon_sym_alignas] = 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_namespace] = ACTIONS(3163), + [anon_sym_using] = ACTIONS(3163), + [anon_sym_static_assert] = ACTIONS(3163), + [anon_sym_concept] = ACTIONS(3163), + [anon_sym_co_return] = ACTIONS(3163), + [anon_sym_co_yield] = ACTIONS(3163), + [anon_sym_R_DQUOTE] = ACTIONS(3165), + [anon_sym_LR_DQUOTE] = ACTIONS(3165), + [anon_sym_uR_DQUOTE] = ACTIONS(3165), + [anon_sym_UR_DQUOTE] = ACTIONS(3165), + [anon_sym_u8R_DQUOTE] = ACTIONS(3165), + [anon_sym_co_await] = ACTIONS(3163), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_requires] = ACTIONS(3163), + [sym_this] = ACTIONS(3163), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3165), + [sym_semgrep_named_ellipsis] = ACTIONS(3165), }, - [633] = { - [ts_builtin_sym_end] = ACTIONS(3185), - [sym_identifier] = ACTIONS(3183), - [aux_sym_preproc_include_token1] = ACTIONS(3183), - [aux_sym_preproc_def_token1] = ACTIONS(3183), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3185), - [aux_sym_preproc_if_token1] = ACTIONS(3183), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3183), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3183), - [sym_preproc_directive] = ACTIONS(3183), - [anon_sym_LPAREN2] = ACTIONS(3185), - [anon_sym_BANG] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3183), - [anon_sym_PLUS] = ACTIONS(3183), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_AMP_AMP] = ACTIONS(3185), - [anon_sym_AMP] = ACTIONS(3183), - [anon_sym_SEMI] = ACTIONS(3185), - [anon_sym___extension__] = ACTIONS(3183), - [anon_sym_typedef] = ACTIONS(3183), - [anon_sym_extern] = ACTIONS(3183), - [anon_sym___attribute__] = ACTIONS(3183), - [anon_sym_COLON_COLON] = ACTIONS(3185), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3185), - [anon_sym___declspec] = ACTIONS(3183), - [anon_sym___based] = ACTIONS(3183), - [anon_sym___cdecl] = ACTIONS(3183), - [anon_sym___clrcall] = ACTIONS(3183), - [anon_sym___stdcall] = ACTIONS(3183), - [anon_sym___fastcall] = ACTIONS(3183), - [anon_sym___thiscall] = ACTIONS(3183), - [anon_sym___vectorcall] = ACTIONS(3183), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_signed] = ACTIONS(3183), - [anon_sym_unsigned] = ACTIONS(3183), - [anon_sym_long] = ACTIONS(3183), - [anon_sym_short] = ACTIONS(3183), - [anon_sym_LBRACK] = ACTIONS(3183), - [anon_sym_static] = ACTIONS(3183), - [anon_sym_register] = ACTIONS(3183), - [anon_sym_inline] = ACTIONS(3183), - [anon_sym___inline] = ACTIONS(3183), - [anon_sym___inline__] = ACTIONS(3183), - [anon_sym___forceinline] = ACTIONS(3183), - [anon_sym_thread_local] = ACTIONS(3183), - [anon_sym___thread] = ACTIONS(3183), - [anon_sym_const] = ACTIONS(3183), - [anon_sym_constexpr] = ACTIONS(3183), - [anon_sym_volatile] = ACTIONS(3183), - [anon_sym_restrict] = ACTIONS(3183), - [anon_sym___restrict__] = ACTIONS(3183), - [anon_sym__Atomic] = ACTIONS(3183), - [anon_sym__Noreturn] = ACTIONS(3183), - [anon_sym_noreturn] = ACTIONS(3183), - [anon_sym_mutable] = ACTIONS(3183), - [anon_sym_constinit] = ACTIONS(3183), - [anon_sym_consteval] = ACTIONS(3183), - [sym_primitive_type] = ACTIONS(3183), - [anon_sym_enum] = ACTIONS(3183), - [anon_sym_class] = ACTIONS(3183), - [anon_sym_struct] = ACTIONS(3183), - [anon_sym_union] = ACTIONS(3183), - [anon_sym_if] = ACTIONS(3183), - [anon_sym_else] = ACTIONS(3183), - [anon_sym_switch] = ACTIONS(3183), - [anon_sym_case] = ACTIONS(3183), - [anon_sym_default] = ACTIONS(3183), - [anon_sym_while] = ACTIONS(3183), - [anon_sym_do] = ACTIONS(3183), - [anon_sym_for] = ACTIONS(3183), - [anon_sym_return] = ACTIONS(3183), - [anon_sym_break] = ACTIONS(3183), - [anon_sym_continue] = ACTIONS(3183), - [anon_sym_goto] = ACTIONS(3183), - [anon_sym___try] = ACTIONS(3183), - [anon_sym___leave] = ACTIONS(3183), - [anon_sym_not] = ACTIONS(3183), - [anon_sym_compl] = ACTIONS(3183), - [anon_sym_DASH_DASH] = ACTIONS(3185), - [anon_sym_PLUS_PLUS] = ACTIONS(3185), - [anon_sym_sizeof] = ACTIONS(3183), - [anon_sym___alignof__] = ACTIONS(3183), - [anon_sym___alignof] = ACTIONS(3183), - [anon_sym__alignof] = ACTIONS(3183), - [anon_sym_alignof] = ACTIONS(3183), - [anon_sym__Alignof] = ACTIONS(3183), - [anon_sym_offsetof] = ACTIONS(3183), - [anon_sym__Generic] = ACTIONS(3183), - [anon_sym_asm] = ACTIONS(3183), - [anon_sym___asm__] = ACTIONS(3183), - [sym_number_literal] = ACTIONS(3185), - [anon_sym_L_SQUOTE] = ACTIONS(3185), - [anon_sym_u_SQUOTE] = ACTIONS(3185), - [anon_sym_U_SQUOTE] = ACTIONS(3185), - [anon_sym_u8_SQUOTE] = ACTIONS(3185), - [anon_sym_SQUOTE] = ACTIONS(3185), - [anon_sym_L_DQUOTE] = ACTIONS(3185), - [anon_sym_u_DQUOTE] = ACTIONS(3185), - [anon_sym_U_DQUOTE] = ACTIONS(3185), - [anon_sym_u8_DQUOTE] = ACTIONS(3185), - [anon_sym_DQUOTE] = ACTIONS(3185), - [sym_true] = ACTIONS(3183), - [sym_false] = ACTIONS(3183), - [anon_sym_NULL] = ACTIONS(3183), - [anon_sym_nullptr] = ACTIONS(3183), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3183), - [anon_sym_decltype] = ACTIONS(3183), - [anon_sym_virtual] = ACTIONS(3183), - [anon_sym_alignas] = ACTIONS(3183), - [anon_sym_explicit] = ACTIONS(3183), - [anon_sym_typename] = ACTIONS(3183), - [anon_sym_template] = ACTIONS(3183), - [anon_sym_operator] = ACTIONS(3183), - [anon_sym_try] = ACTIONS(3183), - [anon_sym_delete] = ACTIONS(3183), - [anon_sym_throw] = ACTIONS(3183), - [anon_sym_namespace] = ACTIONS(3183), - [anon_sym_using] = ACTIONS(3183), - [anon_sym_static_assert] = ACTIONS(3183), - [anon_sym_concept] = ACTIONS(3183), - [anon_sym_co_return] = ACTIONS(3183), - [anon_sym_co_yield] = ACTIONS(3183), - [anon_sym_R_DQUOTE] = ACTIONS(3185), - [anon_sym_LR_DQUOTE] = ACTIONS(3185), - [anon_sym_uR_DQUOTE] = ACTIONS(3185), - [anon_sym_UR_DQUOTE] = ACTIONS(3185), - [anon_sym_u8R_DQUOTE] = ACTIONS(3185), - [anon_sym_co_await] = ACTIONS(3183), - [anon_sym_new] = ACTIONS(3183), - [anon_sym_requires] = ACTIONS(3183), - [sym_this] = ACTIONS(3183), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3185), - [sym_semgrep_named_ellipsis] = ACTIONS(3185), + [669] = { + [sym_identifier] = ACTIONS(3171), + [aux_sym_preproc_include_token1] = ACTIONS(3171), + [aux_sym_preproc_def_token1] = ACTIONS(3171), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3173), + [aux_sym_preproc_if_token1] = ACTIONS(3171), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3171), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3171), + [sym_preproc_directive] = ACTIONS(3171), + [anon_sym_LPAREN2] = ACTIONS(3173), + [anon_sym_BANG] = ACTIONS(3173), + [anon_sym_TILDE] = ACTIONS(3173), + [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_PLUS] = ACTIONS(3171), + [anon_sym_STAR] = ACTIONS(3173), + [anon_sym_AMP_AMP] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(3171), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym___extension__] = ACTIONS(3171), + [anon_sym_typedef] = ACTIONS(3171), + [anon_sym_extern] = ACTIONS(3171), + [anon_sym___attribute__] = ACTIONS(3171), + [anon_sym_COLON_COLON] = ACTIONS(3173), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3173), + [anon_sym___declspec] = ACTIONS(3171), + [anon_sym___based] = ACTIONS(3171), + [anon_sym___cdecl] = ACTIONS(3171), + [anon_sym___clrcall] = ACTIONS(3171), + [anon_sym___stdcall] = ACTIONS(3171), + [anon_sym___fastcall] = ACTIONS(3171), + [anon_sym___thiscall] = ACTIONS(3171), + [anon_sym___vectorcall] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(3173), + [anon_sym_RBRACE] = ACTIONS(3173), + [anon_sym_signed] = ACTIONS(3171), + [anon_sym_unsigned] = ACTIONS(3171), + [anon_sym_long] = ACTIONS(3171), + [anon_sym_short] = ACTIONS(3171), + [anon_sym_LBRACK] = ACTIONS(3171), + [anon_sym_static] = ACTIONS(3171), + [anon_sym_register] = ACTIONS(3171), + [anon_sym_inline] = ACTIONS(3171), + [anon_sym___inline] = ACTIONS(3171), + [anon_sym___inline__] = ACTIONS(3171), + [anon_sym___forceinline] = ACTIONS(3171), + [anon_sym_thread_local] = ACTIONS(3171), + [anon_sym___thread] = ACTIONS(3171), + [anon_sym_const] = ACTIONS(3171), + [anon_sym_constexpr] = ACTIONS(3171), + [anon_sym_volatile] = ACTIONS(3171), + [anon_sym_restrict] = ACTIONS(3171), + [anon_sym___restrict__] = ACTIONS(3171), + [anon_sym__Atomic] = ACTIONS(3171), + [anon_sym__Noreturn] = ACTIONS(3171), + [anon_sym_noreturn] = ACTIONS(3171), + [anon_sym_mutable] = ACTIONS(3171), + [anon_sym_constinit] = ACTIONS(3171), + [anon_sym_consteval] = ACTIONS(3171), + [sym_primitive_type] = ACTIONS(3171), + [anon_sym_enum] = ACTIONS(3171), + [anon_sym_class] = ACTIONS(3171), + [anon_sym_struct] = ACTIONS(3171), + [anon_sym_union] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_else] = ACTIONS(3171), + [anon_sym_switch] = ACTIONS(3171), + [anon_sym_case] = ACTIONS(3171), + [anon_sym_default] = ACTIONS(3171), + [anon_sym_while] = ACTIONS(3171), + [anon_sym_do] = ACTIONS(3171), + [anon_sym_for] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_break] = ACTIONS(3171), + [anon_sym_continue] = ACTIONS(3171), + [anon_sym_goto] = ACTIONS(3171), + [anon_sym___try] = ACTIONS(3171), + [anon_sym___leave] = ACTIONS(3171), + [anon_sym_not] = ACTIONS(3171), + [anon_sym_compl] = ACTIONS(3171), + [anon_sym_DASH_DASH] = ACTIONS(3173), + [anon_sym_PLUS_PLUS] = ACTIONS(3173), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3171), + [anon_sym___alignof] = ACTIONS(3171), + [anon_sym__alignof] = ACTIONS(3171), + [anon_sym_alignof] = ACTIONS(3171), + [anon_sym__Alignof] = ACTIONS(3171), + [anon_sym_offsetof] = ACTIONS(3171), + [anon_sym__Generic] = ACTIONS(3171), + [anon_sym_asm] = ACTIONS(3171), + [anon_sym___asm__] = ACTIONS(3171), + [sym_number_literal] = ACTIONS(3173), + [anon_sym_L_SQUOTE] = ACTIONS(3173), + [anon_sym_u_SQUOTE] = ACTIONS(3173), + [anon_sym_U_SQUOTE] = ACTIONS(3173), + [anon_sym_u8_SQUOTE] = ACTIONS(3173), + [anon_sym_SQUOTE] = ACTIONS(3173), + [anon_sym_L_DQUOTE] = ACTIONS(3173), + [anon_sym_u_DQUOTE] = ACTIONS(3173), + [anon_sym_U_DQUOTE] = ACTIONS(3173), + [anon_sym_u8_DQUOTE] = ACTIONS(3173), + [anon_sym_DQUOTE] = ACTIONS(3173), + [sym_true] = ACTIONS(3171), + [sym_false] = ACTIONS(3171), + [anon_sym_NULL] = ACTIONS(3171), + [anon_sym_nullptr] = ACTIONS(3171), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3171), + [anon_sym_decltype] = ACTIONS(3171), + [anon_sym_virtual] = ACTIONS(3171), + [anon_sym_alignas] = ACTIONS(3171), + [anon_sym_explicit] = ACTIONS(3171), + [anon_sym_typename] = ACTIONS(3171), + [anon_sym_template] = ACTIONS(3171), + [anon_sym_operator] = ACTIONS(3171), + [anon_sym_try] = ACTIONS(3171), + [anon_sym_delete] = ACTIONS(3171), + [anon_sym_throw] = ACTIONS(3171), + [anon_sym_namespace] = ACTIONS(3171), + [anon_sym_using] = ACTIONS(3171), + [anon_sym_static_assert] = ACTIONS(3171), + [anon_sym_concept] = ACTIONS(3171), + [anon_sym_co_return] = ACTIONS(3171), + [anon_sym_co_yield] = ACTIONS(3171), + [anon_sym_R_DQUOTE] = ACTIONS(3173), + [anon_sym_LR_DQUOTE] = ACTIONS(3173), + [anon_sym_uR_DQUOTE] = ACTIONS(3173), + [anon_sym_UR_DQUOTE] = ACTIONS(3173), + [anon_sym_u8R_DQUOTE] = ACTIONS(3173), + [anon_sym_co_await] = ACTIONS(3171), + [anon_sym_new] = ACTIONS(3171), + [anon_sym_requires] = ACTIONS(3171), + [sym_this] = ACTIONS(3171), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3173), + [sym_semgrep_named_ellipsis] = ACTIONS(3173), }, - [634] = { - [ts_builtin_sym_end] = ACTIONS(3153), + [670] = { + [sym_identifier] = ACTIONS(3111), + [aux_sym_preproc_include_token1] = ACTIONS(3111), + [aux_sym_preproc_def_token1] = ACTIONS(3111), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3113), + [aux_sym_preproc_if_token1] = ACTIONS(3111), + [aux_sym_preproc_if_token2] = ACTIONS(3111), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3111), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3111), + [sym_preproc_directive] = ACTIONS(3111), + [anon_sym_LPAREN2] = ACTIONS(3113), + [anon_sym_BANG] = ACTIONS(3113), + [anon_sym_TILDE] = ACTIONS(3113), + [anon_sym_DASH] = ACTIONS(3111), + [anon_sym_PLUS] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_AMP_AMP] = ACTIONS(3113), + [anon_sym_AMP] = ACTIONS(3111), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym___extension__] = ACTIONS(3111), + [anon_sym_typedef] = ACTIONS(3111), + [anon_sym_extern] = ACTIONS(3111), + [anon_sym___attribute__] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(3113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3113), + [anon_sym___declspec] = ACTIONS(3111), + [anon_sym___based] = ACTIONS(3111), + [anon_sym___cdecl] = ACTIONS(3111), + [anon_sym___clrcall] = ACTIONS(3111), + [anon_sym___stdcall] = ACTIONS(3111), + [anon_sym___fastcall] = ACTIONS(3111), + [anon_sym___thiscall] = ACTIONS(3111), + [anon_sym___vectorcall] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_signed] = ACTIONS(3111), + [anon_sym_unsigned] = ACTIONS(3111), + [anon_sym_long] = ACTIONS(3111), + [anon_sym_short] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3111), + [anon_sym_static] = ACTIONS(3111), + [anon_sym_register] = ACTIONS(3111), + [anon_sym_inline] = ACTIONS(3111), + [anon_sym___inline] = ACTIONS(3111), + [anon_sym___inline__] = ACTIONS(3111), + [anon_sym___forceinline] = ACTIONS(3111), + [anon_sym_thread_local] = ACTIONS(3111), + [anon_sym___thread] = ACTIONS(3111), + [anon_sym_const] = ACTIONS(3111), + [anon_sym_constexpr] = ACTIONS(3111), + [anon_sym_volatile] = ACTIONS(3111), + [anon_sym_restrict] = ACTIONS(3111), + [anon_sym___restrict__] = ACTIONS(3111), + [anon_sym__Atomic] = ACTIONS(3111), + [anon_sym__Noreturn] = ACTIONS(3111), + [anon_sym_noreturn] = ACTIONS(3111), + [anon_sym_mutable] = ACTIONS(3111), + [anon_sym_constinit] = ACTIONS(3111), + [anon_sym_consteval] = ACTIONS(3111), + [sym_primitive_type] = ACTIONS(3111), + [anon_sym_enum] = ACTIONS(3111), + [anon_sym_class] = ACTIONS(3111), + [anon_sym_struct] = ACTIONS(3111), + [anon_sym_union] = ACTIONS(3111), + [anon_sym_if] = ACTIONS(3111), + [anon_sym_else] = ACTIONS(3111), + [anon_sym_switch] = ACTIONS(3111), + [anon_sym_case] = ACTIONS(3111), + [anon_sym_default] = ACTIONS(3111), + [anon_sym_while] = ACTIONS(3111), + [anon_sym_do] = ACTIONS(3111), + [anon_sym_for] = ACTIONS(3111), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_break] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(3111), + [anon_sym_goto] = ACTIONS(3111), + [anon_sym___try] = ACTIONS(3111), + [anon_sym___leave] = ACTIONS(3111), + [anon_sym_not] = ACTIONS(3111), + [anon_sym_compl] = ACTIONS(3111), + [anon_sym_DASH_DASH] = ACTIONS(3113), + [anon_sym_PLUS_PLUS] = ACTIONS(3113), + [anon_sym_sizeof] = ACTIONS(3111), + [anon_sym___alignof__] = ACTIONS(3111), + [anon_sym___alignof] = ACTIONS(3111), + [anon_sym__alignof] = ACTIONS(3111), + [anon_sym_alignof] = ACTIONS(3111), + [anon_sym__Alignof] = ACTIONS(3111), + [anon_sym_offsetof] = ACTIONS(3111), + [anon_sym__Generic] = ACTIONS(3111), + [anon_sym_asm] = ACTIONS(3111), + [anon_sym___asm__] = ACTIONS(3111), + [sym_number_literal] = ACTIONS(3113), + [anon_sym_L_SQUOTE] = ACTIONS(3113), + [anon_sym_u_SQUOTE] = ACTIONS(3113), + [anon_sym_U_SQUOTE] = ACTIONS(3113), + [anon_sym_u8_SQUOTE] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3113), + [anon_sym_L_DQUOTE] = ACTIONS(3113), + [anon_sym_u_DQUOTE] = ACTIONS(3113), + [anon_sym_U_DQUOTE] = ACTIONS(3113), + [anon_sym_u8_DQUOTE] = ACTIONS(3113), + [anon_sym_DQUOTE] = ACTIONS(3113), + [sym_true] = ACTIONS(3111), + [sym_false] = ACTIONS(3111), + [anon_sym_NULL] = ACTIONS(3111), + [anon_sym_nullptr] = ACTIONS(3111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3111), + [anon_sym_decltype] = ACTIONS(3111), + [anon_sym_virtual] = ACTIONS(3111), + [anon_sym_alignas] = ACTIONS(3111), + [anon_sym_explicit] = ACTIONS(3111), + [anon_sym_typename] = ACTIONS(3111), + [anon_sym_template] = ACTIONS(3111), + [anon_sym_operator] = ACTIONS(3111), + [anon_sym_try] = ACTIONS(3111), + [anon_sym_delete] = ACTIONS(3111), + [anon_sym_throw] = ACTIONS(3111), + [anon_sym_namespace] = ACTIONS(3111), + [anon_sym_using] = ACTIONS(3111), + [anon_sym_static_assert] = ACTIONS(3111), + [anon_sym_concept] = ACTIONS(3111), + [anon_sym_co_return] = ACTIONS(3111), + [anon_sym_co_yield] = ACTIONS(3111), + [anon_sym_R_DQUOTE] = ACTIONS(3113), + [anon_sym_LR_DQUOTE] = ACTIONS(3113), + [anon_sym_uR_DQUOTE] = ACTIONS(3113), + [anon_sym_UR_DQUOTE] = ACTIONS(3113), + [anon_sym_u8R_DQUOTE] = ACTIONS(3113), + [anon_sym_co_await] = ACTIONS(3111), + [anon_sym_new] = ACTIONS(3111), + [anon_sym_requires] = ACTIONS(3111), + [sym_this] = ACTIONS(3111), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3113), + [sym_semgrep_named_ellipsis] = ACTIONS(3113), + }, + [671] = { + [sym_identifier] = ACTIONS(3175), + [aux_sym_preproc_include_token1] = ACTIONS(3175), + [aux_sym_preproc_def_token1] = ACTIONS(3175), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3177), + [aux_sym_preproc_if_token1] = ACTIONS(3175), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3175), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3175), + [sym_preproc_directive] = ACTIONS(3175), + [anon_sym_LPAREN2] = ACTIONS(3177), + [anon_sym_BANG] = ACTIONS(3177), + [anon_sym_TILDE] = ACTIONS(3177), + [anon_sym_DASH] = ACTIONS(3175), + [anon_sym_PLUS] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_AMP] = ACTIONS(3175), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym___extension__] = ACTIONS(3175), + [anon_sym_typedef] = ACTIONS(3175), + [anon_sym_extern] = ACTIONS(3175), + [anon_sym___attribute__] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(3177), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3177), + [anon_sym___declspec] = ACTIONS(3175), + [anon_sym___based] = ACTIONS(3175), + [anon_sym___cdecl] = ACTIONS(3175), + [anon_sym___clrcall] = ACTIONS(3175), + [anon_sym___stdcall] = ACTIONS(3175), + [anon_sym___fastcall] = ACTIONS(3175), + [anon_sym___thiscall] = ACTIONS(3175), + [anon_sym___vectorcall] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(3177), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_signed] = ACTIONS(3175), + [anon_sym_unsigned] = ACTIONS(3175), + [anon_sym_long] = ACTIONS(3175), + [anon_sym_short] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_static] = ACTIONS(3175), + [anon_sym_register] = ACTIONS(3175), + [anon_sym_inline] = ACTIONS(3175), + [anon_sym___inline] = ACTIONS(3175), + [anon_sym___inline__] = ACTIONS(3175), + [anon_sym___forceinline] = ACTIONS(3175), + [anon_sym_thread_local] = ACTIONS(3175), + [anon_sym___thread] = ACTIONS(3175), + [anon_sym_const] = ACTIONS(3175), + [anon_sym_constexpr] = ACTIONS(3175), + [anon_sym_volatile] = ACTIONS(3175), + [anon_sym_restrict] = ACTIONS(3175), + [anon_sym___restrict__] = ACTIONS(3175), + [anon_sym__Atomic] = ACTIONS(3175), + [anon_sym__Noreturn] = ACTIONS(3175), + [anon_sym_noreturn] = ACTIONS(3175), + [anon_sym_mutable] = ACTIONS(3175), + [anon_sym_constinit] = ACTIONS(3175), + [anon_sym_consteval] = ACTIONS(3175), + [sym_primitive_type] = ACTIONS(3175), + [anon_sym_enum] = ACTIONS(3175), + [anon_sym_class] = ACTIONS(3175), + [anon_sym_struct] = ACTIONS(3175), + [anon_sym_union] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_switch] = ACTIONS(3175), + [anon_sym_case] = ACTIONS(3175), + [anon_sym_default] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_do] = ACTIONS(3175), + [anon_sym_for] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_break] = ACTIONS(3175), + [anon_sym_continue] = ACTIONS(3175), + [anon_sym_goto] = ACTIONS(3175), + [anon_sym___try] = ACTIONS(3175), + [anon_sym___leave] = ACTIONS(3175), + [anon_sym_not] = ACTIONS(3175), + [anon_sym_compl] = ACTIONS(3175), + [anon_sym_DASH_DASH] = ACTIONS(3177), + [anon_sym_PLUS_PLUS] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(3175), + [anon_sym___alignof__] = ACTIONS(3175), + [anon_sym___alignof] = ACTIONS(3175), + [anon_sym__alignof] = ACTIONS(3175), + [anon_sym_alignof] = ACTIONS(3175), + [anon_sym__Alignof] = ACTIONS(3175), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3175), + [anon_sym_asm] = ACTIONS(3175), + [anon_sym___asm__] = ACTIONS(3175), + [sym_number_literal] = ACTIONS(3177), + [anon_sym_L_SQUOTE] = ACTIONS(3177), + [anon_sym_u_SQUOTE] = ACTIONS(3177), + [anon_sym_U_SQUOTE] = ACTIONS(3177), + [anon_sym_u8_SQUOTE] = ACTIONS(3177), + [anon_sym_SQUOTE] = ACTIONS(3177), + [anon_sym_L_DQUOTE] = ACTIONS(3177), + [anon_sym_u_DQUOTE] = ACTIONS(3177), + [anon_sym_U_DQUOTE] = ACTIONS(3177), + [anon_sym_u8_DQUOTE] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(3177), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [anon_sym_NULL] = ACTIONS(3175), + [anon_sym_nullptr] = ACTIONS(3175), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3175), + [anon_sym_decltype] = ACTIONS(3175), + [anon_sym_virtual] = ACTIONS(3175), + [anon_sym_alignas] = ACTIONS(3175), + [anon_sym_explicit] = ACTIONS(3175), + [anon_sym_typename] = ACTIONS(3175), + [anon_sym_template] = ACTIONS(3175), + [anon_sym_operator] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_delete] = ACTIONS(3175), + [anon_sym_throw] = ACTIONS(3175), + [anon_sym_namespace] = ACTIONS(3175), + [anon_sym_using] = ACTIONS(3175), + [anon_sym_static_assert] = ACTIONS(3175), + [anon_sym_concept] = ACTIONS(3175), + [anon_sym_co_return] = ACTIONS(3175), + [anon_sym_co_yield] = ACTIONS(3175), + [anon_sym_R_DQUOTE] = ACTIONS(3177), + [anon_sym_LR_DQUOTE] = ACTIONS(3177), + [anon_sym_uR_DQUOTE] = ACTIONS(3177), + [anon_sym_UR_DQUOTE] = ACTIONS(3177), + [anon_sym_u8R_DQUOTE] = ACTIONS(3177), + [anon_sym_co_await] = ACTIONS(3175), + [anon_sym_new] = ACTIONS(3175), + [anon_sym_requires] = ACTIONS(3175), + [sym_this] = ACTIONS(3175), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3177), + [sym_semgrep_named_ellipsis] = ACTIONS(3177), + }, + [672] = { + [sym_identifier] = ACTIONS(3115), + [aux_sym_preproc_include_token1] = ACTIONS(3115), + [aux_sym_preproc_def_token1] = ACTIONS(3115), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3117), + [aux_sym_preproc_if_token1] = ACTIONS(3115), + [aux_sym_preproc_if_token2] = ACTIONS(3115), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3115), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3115), + [sym_preproc_directive] = ACTIONS(3115), + [anon_sym_LPAREN2] = ACTIONS(3117), + [anon_sym_BANG] = ACTIONS(3117), + [anon_sym_TILDE] = ACTIONS(3117), + [anon_sym_DASH] = ACTIONS(3115), + [anon_sym_PLUS] = ACTIONS(3115), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP_AMP] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3115), + [anon_sym_SEMI] = ACTIONS(3117), + [anon_sym___extension__] = ACTIONS(3115), + [anon_sym_typedef] = ACTIONS(3115), + [anon_sym_extern] = ACTIONS(3115), + [anon_sym___attribute__] = ACTIONS(3115), + [anon_sym_COLON_COLON] = ACTIONS(3117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3117), + [anon_sym___declspec] = ACTIONS(3115), + [anon_sym___based] = ACTIONS(3115), + [anon_sym___cdecl] = ACTIONS(3115), + [anon_sym___clrcall] = ACTIONS(3115), + [anon_sym___stdcall] = ACTIONS(3115), + [anon_sym___fastcall] = ACTIONS(3115), + [anon_sym___thiscall] = ACTIONS(3115), + [anon_sym___vectorcall] = ACTIONS(3115), + [anon_sym_LBRACE] = ACTIONS(3117), + [anon_sym_signed] = ACTIONS(3115), + [anon_sym_unsigned] = ACTIONS(3115), + [anon_sym_long] = ACTIONS(3115), + [anon_sym_short] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3115), + [anon_sym_static] = ACTIONS(3115), + [anon_sym_register] = ACTIONS(3115), + [anon_sym_inline] = ACTIONS(3115), + [anon_sym___inline] = ACTIONS(3115), + [anon_sym___inline__] = ACTIONS(3115), + [anon_sym___forceinline] = ACTIONS(3115), + [anon_sym_thread_local] = ACTIONS(3115), + [anon_sym___thread] = ACTIONS(3115), + [anon_sym_const] = ACTIONS(3115), + [anon_sym_constexpr] = ACTIONS(3115), + [anon_sym_volatile] = ACTIONS(3115), + [anon_sym_restrict] = ACTIONS(3115), + [anon_sym___restrict__] = ACTIONS(3115), + [anon_sym__Atomic] = ACTIONS(3115), + [anon_sym__Noreturn] = ACTIONS(3115), + [anon_sym_noreturn] = ACTIONS(3115), + [anon_sym_mutable] = ACTIONS(3115), + [anon_sym_constinit] = ACTIONS(3115), + [anon_sym_consteval] = ACTIONS(3115), + [sym_primitive_type] = ACTIONS(3115), + [anon_sym_enum] = ACTIONS(3115), + [anon_sym_class] = ACTIONS(3115), + [anon_sym_struct] = ACTIONS(3115), + [anon_sym_union] = ACTIONS(3115), + [anon_sym_if] = ACTIONS(3115), + [anon_sym_else] = ACTIONS(3115), + [anon_sym_switch] = ACTIONS(3115), + [anon_sym_case] = ACTIONS(3115), + [anon_sym_default] = ACTIONS(3115), + [anon_sym_while] = ACTIONS(3115), + [anon_sym_do] = ACTIONS(3115), + [anon_sym_for] = ACTIONS(3115), + [anon_sym_return] = ACTIONS(3115), + [anon_sym_break] = ACTIONS(3115), + [anon_sym_continue] = ACTIONS(3115), + [anon_sym_goto] = ACTIONS(3115), + [anon_sym___try] = ACTIONS(3115), + [anon_sym___leave] = ACTIONS(3115), + [anon_sym_not] = ACTIONS(3115), + [anon_sym_compl] = ACTIONS(3115), + [anon_sym_DASH_DASH] = ACTIONS(3117), + [anon_sym_PLUS_PLUS] = ACTIONS(3117), + [anon_sym_sizeof] = ACTIONS(3115), + [anon_sym___alignof__] = ACTIONS(3115), + [anon_sym___alignof] = ACTIONS(3115), + [anon_sym__alignof] = ACTIONS(3115), + [anon_sym_alignof] = ACTIONS(3115), + [anon_sym__Alignof] = ACTIONS(3115), + [anon_sym_offsetof] = ACTIONS(3115), + [anon_sym__Generic] = ACTIONS(3115), + [anon_sym_asm] = ACTIONS(3115), + [anon_sym___asm__] = ACTIONS(3115), + [sym_number_literal] = ACTIONS(3117), + [anon_sym_L_SQUOTE] = ACTIONS(3117), + [anon_sym_u_SQUOTE] = ACTIONS(3117), + [anon_sym_U_SQUOTE] = ACTIONS(3117), + [anon_sym_u8_SQUOTE] = ACTIONS(3117), + [anon_sym_SQUOTE] = ACTIONS(3117), + [anon_sym_L_DQUOTE] = ACTIONS(3117), + [anon_sym_u_DQUOTE] = ACTIONS(3117), + [anon_sym_U_DQUOTE] = ACTIONS(3117), + [anon_sym_u8_DQUOTE] = ACTIONS(3117), + [anon_sym_DQUOTE] = ACTIONS(3117), + [sym_true] = ACTIONS(3115), + [sym_false] = ACTIONS(3115), + [anon_sym_NULL] = ACTIONS(3115), + [anon_sym_nullptr] = ACTIONS(3115), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3115), + [anon_sym_decltype] = ACTIONS(3115), + [anon_sym_virtual] = ACTIONS(3115), + [anon_sym_alignas] = ACTIONS(3115), + [anon_sym_explicit] = ACTIONS(3115), + [anon_sym_typename] = ACTIONS(3115), + [anon_sym_template] = ACTIONS(3115), + [anon_sym_operator] = ACTIONS(3115), + [anon_sym_try] = ACTIONS(3115), + [anon_sym_delete] = ACTIONS(3115), + [anon_sym_throw] = ACTIONS(3115), + [anon_sym_namespace] = ACTIONS(3115), + [anon_sym_using] = ACTIONS(3115), + [anon_sym_static_assert] = ACTIONS(3115), + [anon_sym_concept] = ACTIONS(3115), + [anon_sym_co_return] = ACTIONS(3115), + [anon_sym_co_yield] = ACTIONS(3115), + [anon_sym_R_DQUOTE] = ACTIONS(3117), + [anon_sym_LR_DQUOTE] = ACTIONS(3117), + [anon_sym_uR_DQUOTE] = ACTIONS(3117), + [anon_sym_UR_DQUOTE] = ACTIONS(3117), + [anon_sym_u8R_DQUOTE] = ACTIONS(3117), + [anon_sym_co_await] = ACTIONS(3115), + [anon_sym_new] = ACTIONS(3115), + [anon_sym_requires] = ACTIONS(3115), + [sym_this] = ACTIONS(3115), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3117), + [sym_semgrep_named_ellipsis] = ACTIONS(3117), + }, + [673] = { + [sym_identifier] = ACTIONS(3131), + [aux_sym_preproc_include_token1] = ACTIONS(3131), + [aux_sym_preproc_def_token1] = ACTIONS(3131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3133), + [aux_sym_preproc_if_token1] = ACTIONS(3131), + [aux_sym_preproc_if_token2] = ACTIONS(3131), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3131), + [sym_preproc_directive] = ACTIONS(3131), + [anon_sym_LPAREN2] = ACTIONS(3133), + [anon_sym_BANG] = ACTIONS(3133), + [anon_sym_TILDE] = ACTIONS(3133), + [anon_sym_DASH] = ACTIONS(3131), + [anon_sym_PLUS] = ACTIONS(3131), + [anon_sym_STAR] = ACTIONS(3133), + [anon_sym_AMP_AMP] = ACTIONS(3133), + [anon_sym_AMP] = ACTIONS(3131), + [anon_sym_SEMI] = ACTIONS(3133), + [anon_sym___extension__] = ACTIONS(3131), + [anon_sym_typedef] = ACTIONS(3131), + [anon_sym_extern] = ACTIONS(3131), + [anon_sym___attribute__] = ACTIONS(3131), + [anon_sym_COLON_COLON] = ACTIONS(3133), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3133), + [anon_sym___declspec] = ACTIONS(3131), + [anon_sym___based] = ACTIONS(3131), + [anon_sym___cdecl] = ACTIONS(3131), + [anon_sym___clrcall] = ACTIONS(3131), + [anon_sym___stdcall] = ACTIONS(3131), + [anon_sym___fastcall] = ACTIONS(3131), + [anon_sym___thiscall] = ACTIONS(3131), + [anon_sym___vectorcall] = ACTIONS(3131), + [anon_sym_LBRACE] = ACTIONS(3133), + [anon_sym_signed] = ACTIONS(3131), + [anon_sym_unsigned] = ACTIONS(3131), + [anon_sym_long] = ACTIONS(3131), + [anon_sym_short] = ACTIONS(3131), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_static] = ACTIONS(3131), + [anon_sym_register] = ACTIONS(3131), + [anon_sym_inline] = ACTIONS(3131), + [anon_sym___inline] = ACTIONS(3131), + [anon_sym___inline__] = ACTIONS(3131), + [anon_sym___forceinline] = ACTIONS(3131), + [anon_sym_thread_local] = ACTIONS(3131), + [anon_sym___thread] = ACTIONS(3131), + [anon_sym_const] = ACTIONS(3131), + [anon_sym_constexpr] = ACTIONS(3131), + [anon_sym_volatile] = ACTIONS(3131), + [anon_sym_restrict] = ACTIONS(3131), + [anon_sym___restrict__] = ACTIONS(3131), + [anon_sym__Atomic] = ACTIONS(3131), + [anon_sym__Noreturn] = ACTIONS(3131), + [anon_sym_noreturn] = ACTIONS(3131), + [anon_sym_mutable] = ACTIONS(3131), + [anon_sym_constinit] = ACTIONS(3131), + [anon_sym_consteval] = ACTIONS(3131), + [sym_primitive_type] = ACTIONS(3131), + [anon_sym_enum] = ACTIONS(3131), + [anon_sym_class] = ACTIONS(3131), + [anon_sym_struct] = ACTIONS(3131), + [anon_sym_union] = ACTIONS(3131), + [anon_sym_if] = ACTIONS(3131), + [anon_sym_else] = ACTIONS(3131), + [anon_sym_switch] = ACTIONS(3131), + [anon_sym_case] = ACTIONS(3131), + [anon_sym_default] = ACTIONS(3131), + [anon_sym_while] = ACTIONS(3131), + [anon_sym_do] = ACTIONS(3131), + [anon_sym_for] = ACTIONS(3131), + [anon_sym_return] = ACTIONS(3131), + [anon_sym_break] = ACTIONS(3131), + [anon_sym_continue] = ACTIONS(3131), + [anon_sym_goto] = ACTIONS(3131), + [anon_sym___try] = ACTIONS(3131), + [anon_sym___leave] = ACTIONS(3131), + [anon_sym_not] = ACTIONS(3131), + [anon_sym_compl] = ACTIONS(3131), + [anon_sym_DASH_DASH] = ACTIONS(3133), + [anon_sym_PLUS_PLUS] = ACTIONS(3133), + [anon_sym_sizeof] = ACTIONS(3131), + [anon_sym___alignof__] = ACTIONS(3131), + [anon_sym___alignof] = ACTIONS(3131), + [anon_sym__alignof] = ACTIONS(3131), + [anon_sym_alignof] = ACTIONS(3131), + [anon_sym__Alignof] = ACTIONS(3131), + [anon_sym_offsetof] = ACTIONS(3131), + [anon_sym__Generic] = ACTIONS(3131), + [anon_sym_asm] = ACTIONS(3131), + [anon_sym___asm__] = ACTIONS(3131), + [sym_number_literal] = ACTIONS(3133), + [anon_sym_L_SQUOTE] = ACTIONS(3133), + [anon_sym_u_SQUOTE] = ACTIONS(3133), + [anon_sym_U_SQUOTE] = ACTIONS(3133), + [anon_sym_u8_SQUOTE] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3133), + [anon_sym_L_DQUOTE] = ACTIONS(3133), + [anon_sym_u_DQUOTE] = ACTIONS(3133), + [anon_sym_U_DQUOTE] = ACTIONS(3133), + [anon_sym_u8_DQUOTE] = ACTIONS(3133), + [anon_sym_DQUOTE] = ACTIONS(3133), + [sym_true] = ACTIONS(3131), + [sym_false] = ACTIONS(3131), + [anon_sym_NULL] = ACTIONS(3131), + [anon_sym_nullptr] = ACTIONS(3131), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3131), + [anon_sym_decltype] = ACTIONS(3131), + [anon_sym_virtual] = ACTIONS(3131), + [anon_sym_alignas] = ACTIONS(3131), + [anon_sym_explicit] = ACTIONS(3131), + [anon_sym_typename] = ACTIONS(3131), + [anon_sym_template] = ACTIONS(3131), + [anon_sym_operator] = ACTIONS(3131), + [anon_sym_try] = ACTIONS(3131), + [anon_sym_delete] = ACTIONS(3131), + [anon_sym_throw] = ACTIONS(3131), + [anon_sym_namespace] = ACTIONS(3131), + [anon_sym_using] = ACTIONS(3131), + [anon_sym_static_assert] = ACTIONS(3131), + [anon_sym_concept] = ACTIONS(3131), + [anon_sym_co_return] = ACTIONS(3131), + [anon_sym_co_yield] = ACTIONS(3131), + [anon_sym_R_DQUOTE] = ACTIONS(3133), + [anon_sym_LR_DQUOTE] = ACTIONS(3133), + [anon_sym_uR_DQUOTE] = ACTIONS(3133), + [anon_sym_UR_DQUOTE] = ACTIONS(3133), + [anon_sym_u8R_DQUOTE] = ACTIONS(3133), + [anon_sym_co_await] = ACTIONS(3131), + [anon_sym_new] = ACTIONS(3131), + [anon_sym_requires] = ACTIONS(3131), + [sym_this] = ACTIONS(3131), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3133), + [sym_semgrep_named_ellipsis] = ACTIONS(3133), + }, + [674] = { [sym_identifier] = ACTIONS(3151), [aux_sym_preproc_include_token1] = ACTIONS(3151), [aux_sym_preproc_def_token1] = ACTIONS(3151), [anon_sym_DOT_DOT_DOT] = ACTIONS(3153), [aux_sym_preproc_if_token1] = ACTIONS(3151), + [aux_sym_preproc_if_token2] = ACTIONS(3151), [aux_sym_preproc_ifdef_token1] = ACTIONS(3151), [aux_sym_preproc_ifdef_token2] = ACTIONS(3151), [sym_preproc_directive] = ACTIONS(3151), @@ -153137,6262 +148743,6623 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3153), [sym_semgrep_named_ellipsis] = ACTIONS(3153), }, - [635] = { - [ts_builtin_sym_end] = ACTIONS(3157), - [sym_identifier] = ACTIONS(3155), - [aux_sym_preproc_include_token1] = ACTIONS(3155), - [aux_sym_preproc_def_token1] = ACTIONS(3155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3157), - [aux_sym_preproc_if_token1] = ACTIONS(3155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3155), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3155), - [sym_preproc_directive] = ACTIONS(3155), - [anon_sym_LPAREN2] = ACTIONS(3157), - [anon_sym_BANG] = ACTIONS(3157), - [anon_sym_TILDE] = ACTIONS(3157), - [anon_sym_DASH] = ACTIONS(3155), - [anon_sym_PLUS] = ACTIONS(3155), - [anon_sym_STAR] = ACTIONS(3157), - [anon_sym_AMP_AMP] = ACTIONS(3157), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_SEMI] = ACTIONS(3157), - [anon_sym___extension__] = ACTIONS(3155), - [anon_sym_typedef] = ACTIONS(3155), - [anon_sym_extern] = ACTIONS(3155), - [anon_sym___attribute__] = ACTIONS(3155), - [anon_sym_COLON_COLON] = ACTIONS(3157), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3157), - [anon_sym___declspec] = ACTIONS(3155), - [anon_sym___based] = ACTIONS(3155), - [anon_sym___cdecl] = ACTIONS(3155), - [anon_sym___clrcall] = ACTIONS(3155), - [anon_sym___stdcall] = ACTIONS(3155), - [anon_sym___fastcall] = ACTIONS(3155), - [anon_sym___thiscall] = ACTIONS(3155), - [anon_sym___vectorcall] = ACTIONS(3155), - [anon_sym_LBRACE] = ACTIONS(3157), - [anon_sym_signed] = ACTIONS(3155), - [anon_sym_unsigned] = ACTIONS(3155), - [anon_sym_long] = ACTIONS(3155), - [anon_sym_short] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_static] = ACTIONS(3155), - [anon_sym_register] = ACTIONS(3155), - [anon_sym_inline] = ACTIONS(3155), - [anon_sym___inline] = ACTIONS(3155), - [anon_sym___inline__] = ACTIONS(3155), - [anon_sym___forceinline] = ACTIONS(3155), - [anon_sym_thread_local] = ACTIONS(3155), - [anon_sym___thread] = ACTIONS(3155), - [anon_sym_const] = ACTIONS(3155), - [anon_sym_constexpr] = ACTIONS(3155), - [anon_sym_volatile] = ACTIONS(3155), - [anon_sym_restrict] = ACTIONS(3155), - [anon_sym___restrict__] = ACTIONS(3155), - [anon_sym__Atomic] = ACTIONS(3155), - [anon_sym__Noreturn] = ACTIONS(3155), - [anon_sym_noreturn] = ACTIONS(3155), - [anon_sym_mutable] = ACTIONS(3155), - [anon_sym_constinit] = ACTIONS(3155), - [anon_sym_consteval] = ACTIONS(3155), - [sym_primitive_type] = ACTIONS(3155), - [anon_sym_enum] = ACTIONS(3155), - [anon_sym_class] = ACTIONS(3155), - [anon_sym_struct] = ACTIONS(3155), - [anon_sym_union] = ACTIONS(3155), - [anon_sym_if] = ACTIONS(3155), - [anon_sym_else] = ACTIONS(3155), - [anon_sym_switch] = ACTIONS(3155), - [anon_sym_case] = ACTIONS(3155), - [anon_sym_default] = ACTIONS(3155), - [anon_sym_while] = ACTIONS(3155), - [anon_sym_do] = ACTIONS(3155), - [anon_sym_for] = ACTIONS(3155), - [anon_sym_return] = ACTIONS(3155), - [anon_sym_break] = ACTIONS(3155), - [anon_sym_continue] = ACTIONS(3155), - [anon_sym_goto] = ACTIONS(3155), - [anon_sym___try] = ACTIONS(3155), - [anon_sym___leave] = ACTIONS(3155), - [anon_sym_not] = ACTIONS(3155), - [anon_sym_compl] = ACTIONS(3155), - [anon_sym_DASH_DASH] = ACTIONS(3157), - [anon_sym_PLUS_PLUS] = ACTIONS(3157), - [anon_sym_sizeof] = ACTIONS(3155), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3155), - [anon_sym__Generic] = ACTIONS(3155), - [anon_sym_asm] = ACTIONS(3155), - [anon_sym___asm__] = ACTIONS(3155), - [sym_number_literal] = ACTIONS(3157), - [anon_sym_L_SQUOTE] = ACTIONS(3157), - [anon_sym_u_SQUOTE] = ACTIONS(3157), - [anon_sym_U_SQUOTE] = ACTIONS(3157), - [anon_sym_u8_SQUOTE] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3157), - [anon_sym_L_DQUOTE] = ACTIONS(3157), - [anon_sym_u_DQUOTE] = ACTIONS(3157), - [anon_sym_U_DQUOTE] = ACTIONS(3157), - [anon_sym_u8_DQUOTE] = ACTIONS(3157), - [anon_sym_DQUOTE] = ACTIONS(3157), - [sym_true] = ACTIONS(3155), - [sym_false] = ACTIONS(3155), - [anon_sym_NULL] = ACTIONS(3155), - [anon_sym_nullptr] = ACTIONS(3155), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3155), - [anon_sym_decltype] = ACTIONS(3155), - [anon_sym_virtual] = ACTIONS(3155), - [anon_sym_alignas] = ACTIONS(3155), - [anon_sym_explicit] = ACTIONS(3155), - [anon_sym_typename] = ACTIONS(3155), - [anon_sym_template] = ACTIONS(3155), - [anon_sym_operator] = ACTIONS(3155), - [anon_sym_try] = ACTIONS(3155), - [anon_sym_delete] = ACTIONS(3155), - [anon_sym_throw] = ACTIONS(3155), - [anon_sym_namespace] = ACTIONS(3155), - [anon_sym_using] = ACTIONS(3155), - [anon_sym_static_assert] = ACTIONS(3155), - [anon_sym_concept] = ACTIONS(3155), - [anon_sym_co_return] = ACTIONS(3155), - [anon_sym_co_yield] = ACTIONS(3155), - [anon_sym_R_DQUOTE] = ACTIONS(3157), - [anon_sym_LR_DQUOTE] = ACTIONS(3157), - [anon_sym_uR_DQUOTE] = ACTIONS(3157), - [anon_sym_UR_DQUOTE] = ACTIONS(3157), - [anon_sym_u8R_DQUOTE] = ACTIONS(3157), - [anon_sym_co_await] = ACTIONS(3155), - [anon_sym_new] = ACTIONS(3155), - [anon_sym_requires] = ACTIONS(3155), - [sym_this] = ACTIONS(3155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3157), - [sym_semgrep_named_ellipsis] = ACTIONS(3157), + [675] = { + [ts_builtin_sym_end] = ACTIONS(3097), + [sym_identifier] = ACTIONS(3095), + [aux_sym_preproc_include_token1] = ACTIONS(3095), + [aux_sym_preproc_def_token1] = ACTIONS(3095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3097), + [aux_sym_preproc_if_token1] = ACTIONS(3095), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3095), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3095), + [sym_preproc_directive] = ACTIONS(3095), + [anon_sym_LPAREN2] = ACTIONS(3097), + [anon_sym_BANG] = ACTIONS(3097), + [anon_sym_TILDE] = ACTIONS(3097), + [anon_sym_DASH] = ACTIONS(3095), + [anon_sym_PLUS] = ACTIONS(3095), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_AMP_AMP] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3095), + [anon_sym_SEMI] = ACTIONS(3097), + [anon_sym___extension__] = ACTIONS(3095), + [anon_sym_typedef] = ACTIONS(3095), + [anon_sym_extern] = ACTIONS(3095), + [anon_sym___attribute__] = ACTIONS(3095), + [anon_sym_COLON_COLON] = ACTIONS(3097), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3097), + [anon_sym___declspec] = ACTIONS(3095), + [anon_sym___based] = ACTIONS(3095), + [anon_sym___cdecl] = ACTIONS(3095), + [anon_sym___clrcall] = ACTIONS(3095), + [anon_sym___stdcall] = ACTIONS(3095), + [anon_sym___fastcall] = ACTIONS(3095), + [anon_sym___thiscall] = ACTIONS(3095), + [anon_sym___vectorcall] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_signed] = ACTIONS(3095), + [anon_sym_unsigned] = ACTIONS(3095), + [anon_sym_long] = ACTIONS(3095), + [anon_sym_short] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3095), + [anon_sym_static] = ACTIONS(3095), + [anon_sym_register] = ACTIONS(3095), + [anon_sym_inline] = ACTIONS(3095), + [anon_sym___inline] = ACTIONS(3095), + [anon_sym___inline__] = ACTIONS(3095), + [anon_sym___forceinline] = ACTIONS(3095), + [anon_sym_thread_local] = ACTIONS(3095), + [anon_sym___thread] = ACTIONS(3095), + [anon_sym_const] = ACTIONS(3095), + [anon_sym_constexpr] = ACTIONS(3095), + [anon_sym_volatile] = ACTIONS(3095), + [anon_sym_restrict] = ACTIONS(3095), + [anon_sym___restrict__] = ACTIONS(3095), + [anon_sym__Atomic] = ACTIONS(3095), + [anon_sym__Noreturn] = ACTIONS(3095), + [anon_sym_noreturn] = ACTIONS(3095), + [anon_sym_mutable] = ACTIONS(3095), + [anon_sym_constinit] = ACTIONS(3095), + [anon_sym_consteval] = ACTIONS(3095), + [sym_primitive_type] = ACTIONS(3095), + [anon_sym_enum] = ACTIONS(3095), + [anon_sym_class] = ACTIONS(3095), + [anon_sym_struct] = ACTIONS(3095), + [anon_sym_union] = ACTIONS(3095), + [anon_sym_if] = ACTIONS(3095), + [anon_sym_else] = ACTIONS(3095), + [anon_sym_switch] = ACTIONS(3095), + [anon_sym_case] = ACTIONS(3095), + [anon_sym_default] = ACTIONS(3095), + [anon_sym_while] = ACTIONS(3095), + [anon_sym_do] = ACTIONS(3095), + [anon_sym_for] = ACTIONS(3095), + [anon_sym_return] = ACTIONS(3095), + [anon_sym_break] = ACTIONS(3095), + [anon_sym_continue] = ACTIONS(3095), + [anon_sym_goto] = ACTIONS(3095), + [anon_sym___try] = ACTIONS(3095), + [anon_sym___leave] = ACTIONS(3095), + [anon_sym_not] = ACTIONS(3095), + [anon_sym_compl] = ACTIONS(3095), + [anon_sym_DASH_DASH] = ACTIONS(3097), + [anon_sym_PLUS_PLUS] = ACTIONS(3097), + [anon_sym_sizeof] = ACTIONS(3095), + [anon_sym___alignof__] = ACTIONS(3095), + [anon_sym___alignof] = ACTIONS(3095), + [anon_sym__alignof] = ACTIONS(3095), + [anon_sym_alignof] = ACTIONS(3095), + [anon_sym__Alignof] = ACTIONS(3095), + [anon_sym_offsetof] = ACTIONS(3095), + [anon_sym__Generic] = ACTIONS(3095), + [anon_sym_asm] = ACTIONS(3095), + [anon_sym___asm__] = ACTIONS(3095), + [sym_number_literal] = ACTIONS(3097), + [anon_sym_L_SQUOTE] = ACTIONS(3097), + [anon_sym_u_SQUOTE] = ACTIONS(3097), + [anon_sym_U_SQUOTE] = ACTIONS(3097), + [anon_sym_u8_SQUOTE] = ACTIONS(3097), + [anon_sym_SQUOTE] = ACTIONS(3097), + [anon_sym_L_DQUOTE] = ACTIONS(3097), + [anon_sym_u_DQUOTE] = ACTIONS(3097), + [anon_sym_U_DQUOTE] = ACTIONS(3097), + [anon_sym_u8_DQUOTE] = ACTIONS(3097), + [anon_sym_DQUOTE] = ACTIONS(3097), + [sym_true] = ACTIONS(3095), + [sym_false] = ACTIONS(3095), + [anon_sym_NULL] = ACTIONS(3095), + [anon_sym_nullptr] = ACTIONS(3095), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3095), + [anon_sym_decltype] = ACTIONS(3095), + [anon_sym_virtual] = ACTIONS(3095), + [anon_sym_alignas] = ACTIONS(3095), + [anon_sym_explicit] = ACTIONS(3095), + [anon_sym_typename] = ACTIONS(3095), + [anon_sym_template] = ACTIONS(3095), + [anon_sym_operator] = ACTIONS(3095), + [anon_sym_try] = ACTIONS(3095), + [anon_sym_delete] = ACTIONS(3095), + [anon_sym_throw] = ACTIONS(3095), + [anon_sym_namespace] = ACTIONS(3095), + [anon_sym_using] = ACTIONS(3095), + [anon_sym_static_assert] = ACTIONS(3095), + [anon_sym_concept] = ACTIONS(3095), + [anon_sym_co_return] = ACTIONS(3095), + [anon_sym_co_yield] = ACTIONS(3095), + [anon_sym_R_DQUOTE] = ACTIONS(3097), + [anon_sym_LR_DQUOTE] = ACTIONS(3097), + [anon_sym_uR_DQUOTE] = ACTIONS(3097), + [anon_sym_UR_DQUOTE] = ACTIONS(3097), + [anon_sym_u8R_DQUOTE] = ACTIONS(3097), + [anon_sym_co_await] = ACTIONS(3095), + [anon_sym_new] = ACTIONS(3095), + [anon_sym_requires] = ACTIONS(3095), + [sym_this] = ACTIONS(3095), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3097), + [sym_semgrep_named_ellipsis] = ACTIONS(3097), }, - [636] = { - [ts_builtin_sym_end] = ACTIONS(3161), - [sym_identifier] = ACTIONS(3159), - [aux_sym_preproc_include_token1] = ACTIONS(3159), - [aux_sym_preproc_def_token1] = ACTIONS(3159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3161), - [aux_sym_preproc_if_token1] = ACTIONS(3159), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3159), - [sym_preproc_directive] = ACTIONS(3159), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3159), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym___extension__] = ACTIONS(3159), - [anon_sym_typedef] = ACTIONS(3159), - [anon_sym_extern] = ACTIONS(3159), - [anon_sym___attribute__] = ACTIONS(3159), - [anon_sym_COLON_COLON] = ACTIONS(3161), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), - [anon_sym___declspec] = ACTIONS(3159), - [anon_sym___based] = ACTIONS(3159), - [anon_sym___cdecl] = ACTIONS(3159), - [anon_sym___clrcall] = ACTIONS(3159), - [anon_sym___stdcall] = ACTIONS(3159), - [anon_sym___fastcall] = ACTIONS(3159), - [anon_sym___thiscall] = ACTIONS(3159), - [anon_sym___vectorcall] = ACTIONS(3159), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_signed] = ACTIONS(3159), - [anon_sym_unsigned] = ACTIONS(3159), - [anon_sym_long] = ACTIONS(3159), - [anon_sym_short] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(3159), - [anon_sym_static] = ACTIONS(3159), - [anon_sym_register] = ACTIONS(3159), - [anon_sym_inline] = ACTIONS(3159), - [anon_sym___inline] = ACTIONS(3159), - [anon_sym___inline__] = ACTIONS(3159), - [anon_sym___forceinline] = ACTIONS(3159), - [anon_sym_thread_local] = ACTIONS(3159), - [anon_sym___thread] = ACTIONS(3159), - [anon_sym_const] = ACTIONS(3159), - [anon_sym_constexpr] = ACTIONS(3159), - [anon_sym_volatile] = ACTIONS(3159), - [anon_sym_restrict] = ACTIONS(3159), - [anon_sym___restrict__] = ACTIONS(3159), - [anon_sym__Atomic] = ACTIONS(3159), - [anon_sym__Noreturn] = ACTIONS(3159), - [anon_sym_noreturn] = ACTIONS(3159), - [anon_sym_mutable] = ACTIONS(3159), - [anon_sym_constinit] = ACTIONS(3159), - [anon_sym_consteval] = ACTIONS(3159), - [sym_primitive_type] = ACTIONS(3159), - [anon_sym_enum] = ACTIONS(3159), - [anon_sym_class] = ACTIONS(3159), - [anon_sym_struct] = ACTIONS(3159), - [anon_sym_union] = ACTIONS(3159), - [anon_sym_if] = ACTIONS(3159), - [anon_sym_else] = ACTIONS(3159), - [anon_sym_switch] = ACTIONS(3159), - [anon_sym_case] = ACTIONS(3159), - [anon_sym_default] = ACTIONS(3159), - [anon_sym_while] = ACTIONS(3159), - [anon_sym_do] = ACTIONS(3159), - [anon_sym_for] = ACTIONS(3159), - [anon_sym_return] = ACTIONS(3159), - [anon_sym_break] = ACTIONS(3159), - [anon_sym_continue] = ACTIONS(3159), - [anon_sym_goto] = ACTIONS(3159), - [anon_sym___try] = ACTIONS(3159), - [anon_sym___leave] = ACTIONS(3159), - [anon_sym_not] = ACTIONS(3159), - [anon_sym_compl] = ACTIONS(3159), - [anon_sym_DASH_DASH] = ACTIONS(3161), - [anon_sym_PLUS_PLUS] = ACTIONS(3161), - [anon_sym_sizeof] = ACTIONS(3159), - [anon_sym___alignof__] = ACTIONS(3159), - [anon_sym___alignof] = ACTIONS(3159), - [anon_sym__alignof] = ACTIONS(3159), - [anon_sym_alignof] = ACTIONS(3159), - [anon_sym__Alignof] = ACTIONS(3159), - [anon_sym_offsetof] = ACTIONS(3159), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3159), - [anon_sym___asm__] = ACTIONS(3159), - [sym_number_literal] = ACTIONS(3161), - [anon_sym_L_SQUOTE] = ACTIONS(3161), - [anon_sym_u_SQUOTE] = ACTIONS(3161), - [anon_sym_U_SQUOTE] = ACTIONS(3161), - [anon_sym_u8_SQUOTE] = ACTIONS(3161), - [anon_sym_SQUOTE] = ACTIONS(3161), - [anon_sym_L_DQUOTE] = ACTIONS(3161), - [anon_sym_u_DQUOTE] = ACTIONS(3161), - [anon_sym_U_DQUOTE] = ACTIONS(3161), - [anon_sym_u8_DQUOTE] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(3161), - [sym_true] = ACTIONS(3159), - [sym_false] = ACTIONS(3159), - [anon_sym_NULL] = ACTIONS(3159), - [anon_sym_nullptr] = ACTIONS(3159), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3159), - [anon_sym_decltype] = ACTIONS(3159), - [anon_sym_virtual] = ACTIONS(3159), - [anon_sym_alignas] = ACTIONS(3159), - [anon_sym_explicit] = ACTIONS(3159), - [anon_sym_typename] = ACTIONS(3159), - [anon_sym_template] = ACTIONS(3159), - [anon_sym_operator] = ACTIONS(3159), - [anon_sym_try] = ACTIONS(3159), - [anon_sym_delete] = ACTIONS(3159), - [anon_sym_throw] = ACTIONS(3159), - [anon_sym_namespace] = ACTIONS(3159), - [anon_sym_using] = ACTIONS(3159), - [anon_sym_static_assert] = ACTIONS(3159), - [anon_sym_concept] = ACTIONS(3159), - [anon_sym_co_return] = ACTIONS(3159), - [anon_sym_co_yield] = ACTIONS(3159), - [anon_sym_R_DQUOTE] = ACTIONS(3161), - [anon_sym_LR_DQUOTE] = ACTIONS(3161), - [anon_sym_uR_DQUOTE] = ACTIONS(3161), - [anon_sym_UR_DQUOTE] = ACTIONS(3161), - [anon_sym_u8R_DQUOTE] = ACTIONS(3161), - [anon_sym_co_await] = ACTIONS(3159), - [anon_sym_new] = ACTIONS(3159), - [anon_sym_requires] = ACTIONS(3159), - [sym_this] = ACTIONS(3159), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3161), - [sym_semgrep_named_ellipsis] = ACTIONS(3161), + [676] = { + [sym_identifier] = ACTIONS(3565), + [aux_sym_preproc_include_token1] = ACTIONS(3565), + [aux_sym_preproc_def_token1] = ACTIONS(3565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3567), + [aux_sym_preproc_if_token1] = ACTIONS(3565), + [aux_sym_preproc_if_token2] = ACTIONS(3565), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3565), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3565), + [sym_preproc_directive] = ACTIONS(3565), + [anon_sym_LPAREN2] = ACTIONS(3567), + [anon_sym_BANG] = ACTIONS(3567), + [anon_sym_TILDE] = ACTIONS(3567), + [anon_sym_DASH] = ACTIONS(3565), + [anon_sym_PLUS] = ACTIONS(3565), + [anon_sym_STAR] = ACTIONS(3567), + [anon_sym_AMP_AMP] = ACTIONS(3567), + [anon_sym_AMP] = ACTIONS(3565), + [anon_sym_SEMI] = ACTIONS(3567), + [anon_sym___extension__] = ACTIONS(3565), + [anon_sym_typedef] = ACTIONS(3565), + [anon_sym_extern] = ACTIONS(3565), + [anon_sym___attribute__] = ACTIONS(3565), + [anon_sym_COLON_COLON] = ACTIONS(3567), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3567), + [anon_sym___declspec] = ACTIONS(3565), + [anon_sym___based] = ACTIONS(3565), + [anon_sym___cdecl] = ACTIONS(3565), + [anon_sym___clrcall] = ACTIONS(3565), + [anon_sym___stdcall] = ACTIONS(3565), + [anon_sym___fastcall] = ACTIONS(3565), + [anon_sym___thiscall] = ACTIONS(3565), + [anon_sym___vectorcall] = ACTIONS(3565), + [anon_sym_LBRACE] = ACTIONS(3567), + [anon_sym_signed] = ACTIONS(3565), + [anon_sym_unsigned] = ACTIONS(3565), + [anon_sym_long] = ACTIONS(3565), + [anon_sym_short] = ACTIONS(3565), + [anon_sym_LBRACK] = ACTIONS(3565), + [anon_sym_static] = ACTIONS(3565), + [anon_sym_register] = ACTIONS(3565), + [anon_sym_inline] = ACTIONS(3565), + [anon_sym___inline] = ACTIONS(3565), + [anon_sym___inline__] = ACTIONS(3565), + [anon_sym___forceinline] = ACTIONS(3565), + [anon_sym_thread_local] = ACTIONS(3565), + [anon_sym___thread] = ACTIONS(3565), + [anon_sym_const] = ACTIONS(3565), + [anon_sym_constexpr] = ACTIONS(3565), + [anon_sym_volatile] = ACTIONS(3565), + [anon_sym_restrict] = ACTIONS(3565), + [anon_sym___restrict__] = ACTIONS(3565), + [anon_sym__Atomic] = ACTIONS(3565), + [anon_sym__Noreturn] = ACTIONS(3565), + [anon_sym_noreturn] = ACTIONS(3565), + [anon_sym_mutable] = ACTIONS(3565), + [anon_sym_constinit] = ACTIONS(3565), + [anon_sym_consteval] = ACTIONS(3565), + [sym_primitive_type] = ACTIONS(3565), + [anon_sym_enum] = ACTIONS(3565), + [anon_sym_class] = ACTIONS(3565), + [anon_sym_struct] = ACTIONS(3565), + [anon_sym_union] = ACTIONS(3565), + [anon_sym_if] = ACTIONS(3565), + [anon_sym_switch] = ACTIONS(3565), + [anon_sym_case] = ACTIONS(3565), + [anon_sym_default] = ACTIONS(3565), + [anon_sym_while] = ACTIONS(3565), + [anon_sym_do] = ACTIONS(3565), + [anon_sym_for] = ACTIONS(3565), + [anon_sym_return] = ACTIONS(3565), + [anon_sym_break] = ACTIONS(3565), + [anon_sym_continue] = ACTIONS(3565), + [anon_sym_goto] = ACTIONS(3565), + [anon_sym___try] = ACTIONS(3565), + [anon_sym___leave] = ACTIONS(3565), + [anon_sym_not] = ACTIONS(3565), + [anon_sym_compl] = ACTIONS(3565), + [anon_sym_DASH_DASH] = ACTIONS(3567), + [anon_sym_PLUS_PLUS] = ACTIONS(3567), + [anon_sym_sizeof] = ACTIONS(3565), + [anon_sym___alignof__] = ACTIONS(3565), + [anon_sym___alignof] = ACTIONS(3565), + [anon_sym__alignof] = ACTIONS(3565), + [anon_sym_alignof] = ACTIONS(3565), + [anon_sym__Alignof] = ACTIONS(3565), + [anon_sym_offsetof] = ACTIONS(3565), + [anon_sym__Generic] = ACTIONS(3565), + [anon_sym_asm] = ACTIONS(3565), + [anon_sym___asm__] = ACTIONS(3565), + [sym_number_literal] = ACTIONS(3567), + [anon_sym_L_SQUOTE] = ACTIONS(3567), + [anon_sym_u_SQUOTE] = ACTIONS(3567), + [anon_sym_U_SQUOTE] = ACTIONS(3567), + [anon_sym_u8_SQUOTE] = ACTIONS(3567), + [anon_sym_SQUOTE] = ACTIONS(3567), + [anon_sym_L_DQUOTE] = ACTIONS(3567), + [anon_sym_u_DQUOTE] = ACTIONS(3567), + [anon_sym_U_DQUOTE] = ACTIONS(3567), + [anon_sym_u8_DQUOTE] = ACTIONS(3567), + [anon_sym_DQUOTE] = ACTIONS(3567), + [sym_true] = ACTIONS(3565), + [sym_false] = ACTIONS(3565), + [anon_sym_NULL] = ACTIONS(3565), + [anon_sym_nullptr] = ACTIONS(3565), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3565), + [anon_sym_decltype] = ACTIONS(3565), + [anon_sym_virtual] = ACTIONS(3565), + [anon_sym_alignas] = ACTIONS(3565), + [anon_sym_explicit] = ACTIONS(3565), + [anon_sym_typename] = ACTIONS(3565), + [anon_sym_template] = ACTIONS(3565), + [anon_sym_operator] = ACTIONS(3565), + [anon_sym_try] = ACTIONS(3565), + [anon_sym_delete] = ACTIONS(3565), + [anon_sym_throw] = ACTIONS(3565), + [anon_sym_namespace] = ACTIONS(3565), + [anon_sym_using] = ACTIONS(3565), + [anon_sym_static_assert] = ACTIONS(3565), + [anon_sym_concept] = ACTIONS(3565), + [anon_sym_co_return] = ACTIONS(3565), + [anon_sym_co_yield] = ACTIONS(3565), + [anon_sym_R_DQUOTE] = ACTIONS(3567), + [anon_sym_LR_DQUOTE] = ACTIONS(3567), + [anon_sym_uR_DQUOTE] = ACTIONS(3567), + [anon_sym_UR_DQUOTE] = ACTIONS(3567), + [anon_sym_u8R_DQUOTE] = ACTIONS(3567), + [anon_sym_co_await] = ACTIONS(3565), + [anon_sym_new] = ACTIONS(3565), + [anon_sym_requires] = ACTIONS(3565), + [sym_this] = ACTIONS(3565), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3567), + [sym_semgrep_named_ellipsis] = ACTIONS(3567), }, - [637] = { - [sym_preproc_def] = STATE(1988), - [sym_preproc_function_def] = STATE(1988), - [sym_preproc_call] = STATE(1988), - [sym_preproc_if_in_field_declaration_list] = STATE(1988), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1988), - [sym_preproc_else_in_field_declaration_list] = STATE(10580), - [sym_preproc_elif_in_field_declaration_list] = STATE(10580), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(10580), - [sym_type_definition] = STATE(1988), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6897), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7690), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(640), - [sym_field_declaration] = STATE(1988), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(1988), - [sym_operator_cast] = STATE(8046), - [sym_inline_method_definition] = STATE(1988), - [sym_constructor_specifiers] = STATE(1934), - [sym_operator_cast_definition] = STATE(1988), - [sym_operator_cast_declaration] = STATE(1988), - [sym_constructor_or_destructor_definition] = STATE(1988), - [sym_constructor_or_destructor_declaration] = STATE(1988), - [sym_friend_declaration] = STATE(1988), - [sym_access_specifier] = STATE(9892), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(1988), - [sym_alias_declaration] = STATE(1988), - [sym_static_assert_declaration] = STATE(1988), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8046), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(640), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1934), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(3684), - [aux_sym_preproc_if_token1] = ACTIONS(3686), - [aux_sym_preproc_if_token2] = ACTIONS(3748), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [aux_sym_preproc_else_token1] = ACTIONS(3694), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3698), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3700), - [sym_preproc_directive] = ACTIONS(3702), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(3712), - [anon_sym_typedef] = ACTIONS(3714), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [677] = { + [sym_identifier] = ACTIONS(3461), + [aux_sym_preproc_include_token1] = ACTIONS(3461), + [aux_sym_preproc_def_token1] = ACTIONS(3461), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3463), + [aux_sym_preproc_if_token1] = ACTIONS(3461), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3461), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3461), + [sym_preproc_directive] = ACTIONS(3461), + [anon_sym_LPAREN2] = ACTIONS(3463), + [anon_sym_BANG] = ACTIONS(3463), + [anon_sym_TILDE] = ACTIONS(3463), + [anon_sym_DASH] = ACTIONS(3461), + [anon_sym_PLUS] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(3463), + [anon_sym_AMP_AMP] = ACTIONS(3463), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_SEMI] = ACTIONS(3463), + [anon_sym___extension__] = ACTIONS(3461), + [anon_sym_typedef] = ACTIONS(3461), + [anon_sym_extern] = ACTIONS(3461), + [anon_sym___attribute__] = ACTIONS(3461), + [anon_sym_COLON_COLON] = ACTIONS(3463), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3463), + [anon_sym___declspec] = ACTIONS(3461), + [anon_sym___based] = ACTIONS(3461), + [anon_sym___cdecl] = ACTIONS(3461), + [anon_sym___clrcall] = ACTIONS(3461), + [anon_sym___stdcall] = ACTIONS(3461), + [anon_sym___fastcall] = ACTIONS(3461), + [anon_sym___thiscall] = ACTIONS(3461), + [anon_sym___vectorcall] = ACTIONS(3461), + [anon_sym_LBRACE] = ACTIONS(3463), + [anon_sym_RBRACE] = ACTIONS(3463), + [anon_sym_signed] = ACTIONS(3461), + [anon_sym_unsigned] = ACTIONS(3461), + [anon_sym_long] = ACTIONS(3461), + [anon_sym_short] = ACTIONS(3461), + [anon_sym_LBRACK] = ACTIONS(3461), + [anon_sym_static] = ACTIONS(3461), + [anon_sym_register] = ACTIONS(3461), + [anon_sym_inline] = ACTIONS(3461), + [anon_sym___inline] = ACTIONS(3461), + [anon_sym___inline__] = ACTIONS(3461), + [anon_sym___forceinline] = ACTIONS(3461), + [anon_sym_thread_local] = ACTIONS(3461), + [anon_sym___thread] = ACTIONS(3461), + [anon_sym_const] = ACTIONS(3461), + [anon_sym_constexpr] = ACTIONS(3461), + [anon_sym_volatile] = ACTIONS(3461), + [anon_sym_restrict] = ACTIONS(3461), + [anon_sym___restrict__] = ACTIONS(3461), + [anon_sym__Atomic] = ACTIONS(3461), + [anon_sym__Noreturn] = ACTIONS(3461), + [anon_sym_noreturn] = ACTIONS(3461), + [anon_sym_mutable] = ACTIONS(3461), + [anon_sym_constinit] = ACTIONS(3461), + [anon_sym_consteval] = ACTIONS(3461), + [sym_primitive_type] = ACTIONS(3461), + [anon_sym_enum] = ACTIONS(3461), + [anon_sym_class] = ACTIONS(3461), + [anon_sym_struct] = ACTIONS(3461), + [anon_sym_union] = ACTIONS(3461), + [anon_sym_if] = ACTIONS(3461), + [anon_sym_switch] = ACTIONS(3461), + [anon_sym_case] = ACTIONS(3461), + [anon_sym_default] = ACTIONS(3461), + [anon_sym_while] = ACTIONS(3461), + [anon_sym_do] = ACTIONS(3461), + [anon_sym_for] = ACTIONS(3461), + [anon_sym_return] = ACTIONS(3461), + [anon_sym_break] = ACTIONS(3461), + [anon_sym_continue] = ACTIONS(3461), + [anon_sym_goto] = ACTIONS(3461), + [anon_sym___try] = ACTIONS(3461), + [anon_sym___leave] = ACTIONS(3461), + [anon_sym_not] = ACTIONS(3461), + [anon_sym_compl] = ACTIONS(3461), + [anon_sym_DASH_DASH] = ACTIONS(3463), + [anon_sym_PLUS_PLUS] = ACTIONS(3463), + [anon_sym_sizeof] = ACTIONS(3461), + [anon_sym___alignof__] = ACTIONS(3461), + [anon_sym___alignof] = ACTIONS(3461), + [anon_sym__alignof] = ACTIONS(3461), + [anon_sym_alignof] = ACTIONS(3461), + [anon_sym__Alignof] = ACTIONS(3461), + [anon_sym_offsetof] = ACTIONS(3461), + [anon_sym__Generic] = ACTIONS(3461), + [anon_sym_asm] = ACTIONS(3461), + [anon_sym___asm__] = ACTIONS(3461), + [sym_number_literal] = ACTIONS(3463), + [anon_sym_L_SQUOTE] = ACTIONS(3463), + [anon_sym_u_SQUOTE] = ACTIONS(3463), + [anon_sym_U_SQUOTE] = ACTIONS(3463), + [anon_sym_u8_SQUOTE] = ACTIONS(3463), + [anon_sym_SQUOTE] = ACTIONS(3463), + [anon_sym_L_DQUOTE] = ACTIONS(3463), + [anon_sym_u_DQUOTE] = ACTIONS(3463), + [anon_sym_U_DQUOTE] = ACTIONS(3463), + [anon_sym_u8_DQUOTE] = ACTIONS(3463), + [anon_sym_DQUOTE] = ACTIONS(3463), + [sym_true] = ACTIONS(3461), + [sym_false] = ACTIONS(3461), + [anon_sym_NULL] = ACTIONS(3461), + [anon_sym_nullptr] = ACTIONS(3461), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(3732), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(3734), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(3738), - [anon_sym_static_assert] = ACTIONS(3740), + [sym_auto] = ACTIONS(3461), + [anon_sym_decltype] = ACTIONS(3461), + [anon_sym_virtual] = ACTIONS(3461), + [anon_sym_alignas] = ACTIONS(3461), + [anon_sym_explicit] = ACTIONS(3461), + [anon_sym_typename] = ACTIONS(3461), + [anon_sym_template] = ACTIONS(3461), + [anon_sym_operator] = ACTIONS(3461), + [anon_sym_try] = ACTIONS(3461), + [anon_sym_delete] = ACTIONS(3461), + [anon_sym_throw] = ACTIONS(3461), + [anon_sym_namespace] = ACTIONS(3461), + [anon_sym_using] = ACTIONS(3461), + [anon_sym_static_assert] = ACTIONS(3461), + [anon_sym_concept] = ACTIONS(3461), + [anon_sym_co_return] = ACTIONS(3461), + [anon_sym_co_yield] = ACTIONS(3461), + [anon_sym_R_DQUOTE] = ACTIONS(3463), + [anon_sym_LR_DQUOTE] = ACTIONS(3463), + [anon_sym_uR_DQUOTE] = ACTIONS(3463), + [anon_sym_UR_DQUOTE] = ACTIONS(3463), + [anon_sym_u8R_DQUOTE] = ACTIONS(3463), + [anon_sym_co_await] = ACTIONS(3461), + [anon_sym_new] = ACTIONS(3461), + [anon_sym_requires] = ACTIONS(3461), + [sym_this] = ACTIONS(3461), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3463), + [sym_semgrep_named_ellipsis] = ACTIONS(3463), }, - [638] = { - [sym_preproc_def] = STATE(1988), - [sym_preproc_function_def] = STATE(1988), - [sym_preproc_call] = STATE(1988), - [sym_preproc_if_in_field_declaration_list] = STATE(1988), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1988), - [sym_preproc_else_in_field_declaration_list] = STATE(10453), - [sym_preproc_elif_in_field_declaration_list] = STATE(10453), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(10453), - [sym_type_definition] = STATE(1988), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6897), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7690), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(641), - [sym_field_declaration] = STATE(1988), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(1988), - [sym_operator_cast] = STATE(8046), - [sym_inline_method_definition] = STATE(1988), - [sym_constructor_specifiers] = STATE(1934), - [sym_operator_cast_definition] = STATE(1988), - [sym_operator_cast_declaration] = STATE(1988), - [sym_constructor_or_destructor_definition] = STATE(1988), - [sym_constructor_or_destructor_declaration] = STATE(1988), - [sym_friend_declaration] = STATE(1988), - [sym_access_specifier] = STATE(9892), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(1988), - [sym_alias_declaration] = STATE(1988), - [sym_static_assert_declaration] = STATE(1988), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8046), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(641), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1934), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(3684), - [aux_sym_preproc_if_token1] = ACTIONS(3686), - [aux_sym_preproc_if_token2] = ACTIONS(3750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [aux_sym_preproc_else_token1] = ACTIONS(3694), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3698), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3700), - [sym_preproc_directive] = ACTIONS(3702), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(3712), - [anon_sym_typedef] = ACTIONS(3714), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(3732), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(3734), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(3738), - [anon_sym_static_assert] = ACTIONS(3740), + [678] = { + [sym_identifier] = ACTIONS(3623), + [aux_sym_preproc_include_token1] = ACTIONS(3623), + [aux_sym_preproc_def_token1] = ACTIONS(3623), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3625), + [aux_sym_preproc_if_token1] = ACTIONS(3623), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3623), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3623), + [sym_preproc_directive] = ACTIONS(3623), + [anon_sym_LPAREN2] = ACTIONS(3625), + [anon_sym_BANG] = ACTIONS(3625), + [anon_sym_TILDE] = ACTIONS(3625), + [anon_sym_DASH] = ACTIONS(3623), + [anon_sym_PLUS] = ACTIONS(3623), + [anon_sym_STAR] = ACTIONS(3625), + [anon_sym_AMP_AMP] = ACTIONS(3625), + [anon_sym_AMP] = ACTIONS(3623), + [anon_sym_SEMI] = ACTIONS(3625), + [anon_sym___extension__] = ACTIONS(3623), + [anon_sym_typedef] = ACTIONS(3623), + [anon_sym_extern] = ACTIONS(3623), + [anon_sym___attribute__] = ACTIONS(3623), + [anon_sym_COLON_COLON] = ACTIONS(3625), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3625), + [anon_sym___declspec] = ACTIONS(3623), + [anon_sym___based] = ACTIONS(3623), + [anon_sym___cdecl] = ACTIONS(3623), + [anon_sym___clrcall] = ACTIONS(3623), + [anon_sym___stdcall] = ACTIONS(3623), + [anon_sym___fastcall] = ACTIONS(3623), + [anon_sym___thiscall] = ACTIONS(3623), + [anon_sym___vectorcall] = ACTIONS(3623), + [anon_sym_LBRACE] = ACTIONS(3625), + [anon_sym_RBRACE] = ACTIONS(3625), + [anon_sym_signed] = ACTIONS(3623), + [anon_sym_unsigned] = ACTIONS(3623), + [anon_sym_long] = ACTIONS(3623), + [anon_sym_short] = ACTIONS(3623), + [anon_sym_LBRACK] = ACTIONS(3623), + [anon_sym_static] = ACTIONS(3623), + [anon_sym_register] = ACTIONS(3623), + [anon_sym_inline] = ACTIONS(3623), + [anon_sym___inline] = ACTIONS(3623), + [anon_sym___inline__] = ACTIONS(3623), + [anon_sym___forceinline] = ACTIONS(3623), + [anon_sym_thread_local] = ACTIONS(3623), + [anon_sym___thread] = ACTIONS(3623), + [anon_sym_const] = ACTIONS(3623), + [anon_sym_constexpr] = ACTIONS(3623), + [anon_sym_volatile] = ACTIONS(3623), + [anon_sym_restrict] = ACTIONS(3623), + [anon_sym___restrict__] = ACTIONS(3623), + [anon_sym__Atomic] = ACTIONS(3623), + [anon_sym__Noreturn] = ACTIONS(3623), + [anon_sym_noreturn] = ACTIONS(3623), + [anon_sym_mutable] = ACTIONS(3623), + [anon_sym_constinit] = ACTIONS(3623), + [anon_sym_consteval] = ACTIONS(3623), + [sym_primitive_type] = ACTIONS(3623), + [anon_sym_enum] = ACTIONS(3623), + [anon_sym_class] = ACTIONS(3623), + [anon_sym_struct] = ACTIONS(3623), + [anon_sym_union] = ACTIONS(3623), + [anon_sym_if] = ACTIONS(3623), + [anon_sym_switch] = ACTIONS(3623), + [anon_sym_case] = ACTIONS(3623), + [anon_sym_default] = ACTIONS(3623), + [anon_sym_while] = ACTIONS(3623), + [anon_sym_do] = ACTIONS(3623), + [anon_sym_for] = ACTIONS(3623), + [anon_sym_return] = ACTIONS(3623), + [anon_sym_break] = ACTIONS(3623), + [anon_sym_continue] = ACTIONS(3623), + [anon_sym_goto] = ACTIONS(3623), + [anon_sym___try] = ACTIONS(3623), + [anon_sym___leave] = ACTIONS(3623), + [anon_sym_not] = ACTIONS(3623), + [anon_sym_compl] = ACTIONS(3623), + [anon_sym_DASH_DASH] = ACTIONS(3625), + [anon_sym_PLUS_PLUS] = ACTIONS(3625), + [anon_sym_sizeof] = ACTIONS(3623), + [anon_sym___alignof__] = ACTIONS(3623), + [anon_sym___alignof] = ACTIONS(3623), + [anon_sym__alignof] = ACTIONS(3623), + [anon_sym_alignof] = ACTIONS(3623), + [anon_sym__Alignof] = ACTIONS(3623), + [anon_sym_offsetof] = ACTIONS(3623), + [anon_sym__Generic] = ACTIONS(3623), + [anon_sym_asm] = ACTIONS(3623), + [anon_sym___asm__] = ACTIONS(3623), + [sym_number_literal] = ACTIONS(3625), + [anon_sym_L_SQUOTE] = ACTIONS(3625), + [anon_sym_u_SQUOTE] = ACTIONS(3625), + [anon_sym_U_SQUOTE] = ACTIONS(3625), + [anon_sym_u8_SQUOTE] = ACTIONS(3625), + [anon_sym_SQUOTE] = ACTIONS(3625), + [anon_sym_L_DQUOTE] = ACTIONS(3625), + [anon_sym_u_DQUOTE] = ACTIONS(3625), + [anon_sym_U_DQUOTE] = ACTIONS(3625), + [anon_sym_u8_DQUOTE] = ACTIONS(3625), + [anon_sym_DQUOTE] = ACTIONS(3625), + [sym_true] = ACTIONS(3623), + [sym_false] = ACTIONS(3623), + [anon_sym_NULL] = ACTIONS(3623), + [anon_sym_nullptr] = ACTIONS(3623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3623), + [anon_sym_decltype] = ACTIONS(3623), + [anon_sym_virtual] = ACTIONS(3623), + [anon_sym_alignas] = ACTIONS(3623), + [anon_sym_explicit] = ACTIONS(3623), + [anon_sym_typename] = ACTIONS(3623), + [anon_sym_template] = ACTIONS(3623), + [anon_sym_operator] = ACTIONS(3623), + [anon_sym_try] = ACTIONS(3623), + [anon_sym_delete] = ACTIONS(3623), + [anon_sym_throw] = ACTIONS(3623), + [anon_sym_namespace] = ACTIONS(3623), + [anon_sym_using] = ACTIONS(3623), + [anon_sym_static_assert] = ACTIONS(3623), + [anon_sym_concept] = ACTIONS(3623), + [anon_sym_co_return] = ACTIONS(3623), + [anon_sym_co_yield] = ACTIONS(3623), + [anon_sym_R_DQUOTE] = ACTIONS(3625), + [anon_sym_LR_DQUOTE] = ACTIONS(3625), + [anon_sym_uR_DQUOTE] = ACTIONS(3625), + [anon_sym_UR_DQUOTE] = ACTIONS(3625), + [anon_sym_u8R_DQUOTE] = ACTIONS(3625), + [anon_sym_co_await] = ACTIONS(3623), + [anon_sym_new] = ACTIONS(3623), + [anon_sym_requires] = ACTIONS(3623), + [sym_this] = ACTIONS(3623), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3625), + [sym_semgrep_named_ellipsis] = ACTIONS(3625), }, - [639] = { - [ts_builtin_sym_end] = ACTIONS(3169), - [sym_identifier] = ACTIONS(3167), - [aux_sym_preproc_include_token1] = ACTIONS(3167), - [aux_sym_preproc_def_token1] = ACTIONS(3167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3169), - [aux_sym_preproc_if_token1] = ACTIONS(3167), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3167), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3167), - [sym_preproc_directive] = 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___extension__] = ACTIONS(3167), - [anon_sym_typedef] = ACTIONS(3167), - [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___cdecl] = ACTIONS(3167), - [anon_sym___clrcall] = ACTIONS(3167), - [anon_sym___stdcall] = ACTIONS(3167), - [anon_sym___fastcall] = ACTIONS(3167), - [anon_sym___thiscall] = ACTIONS(3167), - [anon_sym___vectorcall] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_signed] = ACTIONS(3167), - [anon_sym_unsigned] = ACTIONS(3167), - [anon_sym_long] = ACTIONS(3167), - [anon_sym_short] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_static] = ACTIONS(3167), - [anon_sym_register] = ACTIONS(3167), - [anon_sym_inline] = ACTIONS(3167), - [anon_sym___inline] = ACTIONS(3167), - [anon_sym___inline__] = ACTIONS(3167), - [anon_sym___forceinline] = ACTIONS(3167), - [anon_sym_thread_local] = ACTIONS(3167), - [anon_sym___thread] = ACTIONS(3167), - [anon_sym_const] = ACTIONS(3167), - [anon_sym_constexpr] = ACTIONS(3167), - [anon_sym_volatile] = ACTIONS(3167), - [anon_sym_restrict] = ACTIONS(3167), - [anon_sym___restrict__] = ACTIONS(3167), - [anon_sym__Atomic] = ACTIONS(3167), - [anon_sym__Noreturn] = ACTIONS(3167), - [anon_sym_noreturn] = ACTIONS(3167), - [anon_sym_mutable] = ACTIONS(3167), - [anon_sym_constinit] = ACTIONS(3167), - [anon_sym_consteval] = 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_else] = 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___try] = ACTIONS(3167), - [anon_sym___leave] = 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), - [anon_sym___alignof__] = ACTIONS(3167), - [anon_sym___alignof] = ACTIONS(3167), - [anon_sym__alignof] = ACTIONS(3167), - [anon_sym_alignof] = ACTIONS(3167), - [anon_sym__Alignof] = ACTIONS(3167), - [anon_sym_offsetof] = ACTIONS(3167), - [anon_sym__Generic] = ACTIONS(3167), - [anon_sym_asm] = ACTIONS(3167), - [anon_sym___asm__] = 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), - [anon_sym_NULL] = ACTIONS(3167), - [anon_sym_nullptr] = ACTIONS(3167), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3167), - [anon_sym_decltype] = ACTIONS(3167), - [anon_sym_virtual] = ACTIONS(3167), - [anon_sym_alignas] = 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_namespace] = ACTIONS(3167), - [anon_sym_using] = ACTIONS(3167), - [anon_sym_static_assert] = ACTIONS(3167), - [anon_sym_concept] = ACTIONS(3167), - [anon_sym_co_return] = ACTIONS(3167), - [anon_sym_co_yield] = ACTIONS(3167), - [anon_sym_R_DQUOTE] = ACTIONS(3169), - [anon_sym_LR_DQUOTE] = ACTIONS(3169), - [anon_sym_uR_DQUOTE] = ACTIONS(3169), - [anon_sym_UR_DQUOTE] = ACTIONS(3169), - [anon_sym_u8R_DQUOTE] = ACTIONS(3169), - [anon_sym_co_await] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_requires] = ACTIONS(3167), - [sym_this] = ACTIONS(3167), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3169), - [sym_semgrep_named_ellipsis] = ACTIONS(3169), + [679] = { + [sym_identifier] = ACTIONS(3627), + [aux_sym_preproc_include_token1] = ACTIONS(3627), + [aux_sym_preproc_def_token1] = ACTIONS(3627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3629), + [aux_sym_preproc_if_token1] = ACTIONS(3627), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3627), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3627), + [sym_preproc_directive] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3629), + [anon_sym_TILDE] = ACTIONS(3629), + [anon_sym_DASH] = ACTIONS(3627), + [anon_sym_PLUS] = ACTIONS(3627), + [anon_sym_STAR] = ACTIONS(3629), + [anon_sym_AMP_AMP] = ACTIONS(3629), + [anon_sym_AMP] = ACTIONS(3627), + [anon_sym_SEMI] = ACTIONS(3629), + [anon_sym___extension__] = ACTIONS(3627), + [anon_sym_typedef] = ACTIONS(3627), + [anon_sym_extern] = ACTIONS(3627), + [anon_sym___attribute__] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3629), + [anon_sym___declspec] = ACTIONS(3627), + [anon_sym___based] = ACTIONS(3627), + [anon_sym___cdecl] = ACTIONS(3627), + [anon_sym___clrcall] = ACTIONS(3627), + [anon_sym___stdcall] = ACTIONS(3627), + [anon_sym___fastcall] = ACTIONS(3627), + [anon_sym___thiscall] = ACTIONS(3627), + [anon_sym___vectorcall] = ACTIONS(3627), + [anon_sym_LBRACE] = ACTIONS(3629), + [anon_sym_RBRACE] = ACTIONS(3629), + [anon_sym_signed] = ACTIONS(3627), + [anon_sym_unsigned] = ACTIONS(3627), + [anon_sym_long] = ACTIONS(3627), + [anon_sym_short] = ACTIONS(3627), + [anon_sym_LBRACK] = ACTIONS(3627), + [anon_sym_static] = ACTIONS(3627), + [anon_sym_register] = ACTIONS(3627), + [anon_sym_inline] = ACTIONS(3627), + [anon_sym___inline] = ACTIONS(3627), + [anon_sym___inline__] = ACTIONS(3627), + [anon_sym___forceinline] = ACTIONS(3627), + [anon_sym_thread_local] = ACTIONS(3627), + [anon_sym___thread] = ACTIONS(3627), + [anon_sym_const] = ACTIONS(3627), + [anon_sym_constexpr] = ACTIONS(3627), + [anon_sym_volatile] = ACTIONS(3627), + [anon_sym_restrict] = ACTIONS(3627), + [anon_sym___restrict__] = ACTIONS(3627), + [anon_sym__Atomic] = ACTIONS(3627), + [anon_sym__Noreturn] = ACTIONS(3627), + [anon_sym_noreturn] = ACTIONS(3627), + [anon_sym_mutable] = ACTIONS(3627), + [anon_sym_constinit] = ACTIONS(3627), + [anon_sym_consteval] = ACTIONS(3627), + [sym_primitive_type] = ACTIONS(3627), + [anon_sym_enum] = ACTIONS(3627), + [anon_sym_class] = ACTIONS(3627), + [anon_sym_struct] = ACTIONS(3627), + [anon_sym_union] = ACTIONS(3627), + [anon_sym_if] = ACTIONS(3627), + [anon_sym_switch] = ACTIONS(3627), + [anon_sym_case] = ACTIONS(3627), + [anon_sym_default] = ACTIONS(3627), + [anon_sym_while] = ACTIONS(3627), + [anon_sym_do] = ACTIONS(3627), + [anon_sym_for] = ACTIONS(3627), + [anon_sym_return] = ACTIONS(3627), + [anon_sym_break] = ACTIONS(3627), + [anon_sym_continue] = ACTIONS(3627), + [anon_sym_goto] = ACTIONS(3627), + [anon_sym___try] = ACTIONS(3627), + [anon_sym___leave] = ACTIONS(3627), + [anon_sym_not] = ACTIONS(3627), + [anon_sym_compl] = ACTIONS(3627), + [anon_sym_DASH_DASH] = ACTIONS(3629), + [anon_sym_PLUS_PLUS] = ACTIONS(3629), + [anon_sym_sizeof] = ACTIONS(3627), + [anon_sym___alignof__] = ACTIONS(3627), + [anon_sym___alignof] = ACTIONS(3627), + [anon_sym__alignof] = ACTIONS(3627), + [anon_sym_alignof] = ACTIONS(3627), + [anon_sym__Alignof] = ACTIONS(3627), + [anon_sym_offsetof] = ACTIONS(3627), + [anon_sym__Generic] = ACTIONS(3627), + [anon_sym_asm] = ACTIONS(3627), + [anon_sym___asm__] = ACTIONS(3627), + [sym_number_literal] = ACTIONS(3629), + [anon_sym_L_SQUOTE] = ACTIONS(3629), + [anon_sym_u_SQUOTE] = ACTIONS(3629), + [anon_sym_U_SQUOTE] = ACTIONS(3629), + [anon_sym_u8_SQUOTE] = ACTIONS(3629), + [anon_sym_SQUOTE] = ACTIONS(3629), + [anon_sym_L_DQUOTE] = ACTIONS(3629), + [anon_sym_u_DQUOTE] = ACTIONS(3629), + [anon_sym_U_DQUOTE] = ACTIONS(3629), + [anon_sym_u8_DQUOTE] = ACTIONS(3629), + [anon_sym_DQUOTE] = ACTIONS(3629), + [sym_true] = ACTIONS(3627), + [sym_false] = ACTIONS(3627), + [anon_sym_NULL] = ACTIONS(3627), + [anon_sym_nullptr] = ACTIONS(3627), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3627), + [anon_sym_decltype] = ACTIONS(3627), + [anon_sym_virtual] = ACTIONS(3627), + [anon_sym_alignas] = ACTIONS(3627), + [anon_sym_explicit] = ACTIONS(3627), + [anon_sym_typename] = ACTIONS(3627), + [anon_sym_template] = ACTIONS(3627), + [anon_sym_operator] = ACTIONS(3627), + [anon_sym_try] = ACTIONS(3627), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_throw] = ACTIONS(3627), + [anon_sym_namespace] = ACTIONS(3627), + [anon_sym_using] = ACTIONS(3627), + [anon_sym_static_assert] = ACTIONS(3627), + [anon_sym_concept] = ACTIONS(3627), + [anon_sym_co_return] = ACTIONS(3627), + [anon_sym_co_yield] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(3629), + [anon_sym_LR_DQUOTE] = ACTIONS(3629), + [anon_sym_uR_DQUOTE] = ACTIONS(3629), + [anon_sym_UR_DQUOTE] = ACTIONS(3629), + [anon_sym_u8R_DQUOTE] = ACTIONS(3629), + [anon_sym_co_await] = ACTIONS(3627), + [anon_sym_new] = ACTIONS(3627), + [anon_sym_requires] = ACTIONS(3627), + [sym_this] = ACTIONS(3627), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3629), + [sym_semgrep_named_ellipsis] = ACTIONS(3629), }, - [640] = { - [sym_preproc_def] = STATE(1988), - [sym_preproc_function_def] = STATE(1988), - [sym_preproc_call] = STATE(1988), - [sym_preproc_if_in_field_declaration_list] = STATE(1988), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1988), - [sym_preproc_else_in_field_declaration_list] = STATE(9747), - [sym_preproc_elif_in_field_declaration_list] = STATE(9747), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(9747), - [sym_type_definition] = STATE(1988), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6897), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7690), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(820), - [sym_field_declaration] = STATE(1988), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(1988), - [sym_operator_cast] = STATE(8046), - [sym_inline_method_definition] = STATE(1988), - [sym_constructor_specifiers] = STATE(1934), - [sym_operator_cast_definition] = STATE(1988), - [sym_operator_cast_declaration] = STATE(1988), - [sym_constructor_or_destructor_definition] = STATE(1988), - [sym_constructor_or_destructor_declaration] = STATE(1988), - [sym_friend_declaration] = STATE(1988), - [sym_access_specifier] = STATE(9892), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(1988), - [sym_alias_declaration] = STATE(1988), - [sym_static_assert_declaration] = STATE(1988), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8046), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(820), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1934), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(3684), - [aux_sym_preproc_if_token1] = ACTIONS(3686), - [aux_sym_preproc_if_token2] = ACTIONS(3752), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [aux_sym_preproc_else_token1] = ACTIONS(3694), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3698), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3700), - [sym_preproc_directive] = ACTIONS(3702), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(3712), - [anon_sym_typedef] = ACTIONS(3714), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [680] = { + [sym_identifier] = ACTIONS(3635), + [aux_sym_preproc_include_token1] = ACTIONS(3635), + [aux_sym_preproc_def_token1] = ACTIONS(3635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3637), + [aux_sym_preproc_if_token1] = ACTIONS(3635), + [aux_sym_preproc_if_token2] = ACTIONS(3635), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3635), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3635), + [sym_preproc_directive] = ACTIONS(3635), + [anon_sym_LPAREN2] = ACTIONS(3637), + [anon_sym_BANG] = ACTIONS(3637), + [anon_sym_TILDE] = ACTIONS(3637), + [anon_sym_DASH] = ACTIONS(3635), + [anon_sym_PLUS] = ACTIONS(3635), + [anon_sym_STAR] = ACTIONS(3637), + [anon_sym_AMP_AMP] = ACTIONS(3637), + [anon_sym_AMP] = ACTIONS(3635), + [anon_sym_SEMI] = ACTIONS(3637), + [anon_sym___extension__] = ACTIONS(3635), + [anon_sym_typedef] = ACTIONS(3635), + [anon_sym_extern] = ACTIONS(3635), + [anon_sym___attribute__] = ACTIONS(3635), + [anon_sym_COLON_COLON] = ACTIONS(3637), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3637), + [anon_sym___declspec] = ACTIONS(3635), + [anon_sym___based] = ACTIONS(3635), + [anon_sym___cdecl] = ACTIONS(3635), + [anon_sym___clrcall] = ACTIONS(3635), + [anon_sym___stdcall] = ACTIONS(3635), + [anon_sym___fastcall] = ACTIONS(3635), + [anon_sym___thiscall] = ACTIONS(3635), + [anon_sym___vectorcall] = ACTIONS(3635), + [anon_sym_LBRACE] = ACTIONS(3637), + [anon_sym_signed] = ACTIONS(3635), + [anon_sym_unsigned] = ACTIONS(3635), + [anon_sym_long] = ACTIONS(3635), + [anon_sym_short] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(3635), + [anon_sym_static] = ACTIONS(3635), + [anon_sym_register] = ACTIONS(3635), + [anon_sym_inline] = ACTIONS(3635), + [anon_sym___inline] = ACTIONS(3635), + [anon_sym___inline__] = ACTIONS(3635), + [anon_sym___forceinline] = ACTIONS(3635), + [anon_sym_thread_local] = ACTIONS(3635), + [anon_sym___thread] = ACTIONS(3635), + [anon_sym_const] = ACTIONS(3635), + [anon_sym_constexpr] = ACTIONS(3635), + [anon_sym_volatile] = ACTIONS(3635), + [anon_sym_restrict] = ACTIONS(3635), + [anon_sym___restrict__] = ACTIONS(3635), + [anon_sym__Atomic] = ACTIONS(3635), + [anon_sym__Noreturn] = ACTIONS(3635), + [anon_sym_noreturn] = ACTIONS(3635), + [anon_sym_mutable] = ACTIONS(3635), + [anon_sym_constinit] = ACTIONS(3635), + [anon_sym_consteval] = ACTIONS(3635), + [sym_primitive_type] = ACTIONS(3635), + [anon_sym_enum] = ACTIONS(3635), + [anon_sym_class] = ACTIONS(3635), + [anon_sym_struct] = ACTIONS(3635), + [anon_sym_union] = ACTIONS(3635), + [anon_sym_if] = ACTIONS(3635), + [anon_sym_switch] = ACTIONS(3635), + [anon_sym_case] = ACTIONS(3635), + [anon_sym_default] = ACTIONS(3635), + [anon_sym_while] = ACTIONS(3635), + [anon_sym_do] = ACTIONS(3635), + [anon_sym_for] = ACTIONS(3635), + [anon_sym_return] = ACTIONS(3635), + [anon_sym_break] = ACTIONS(3635), + [anon_sym_continue] = ACTIONS(3635), + [anon_sym_goto] = ACTIONS(3635), + [anon_sym___try] = ACTIONS(3635), + [anon_sym___leave] = ACTIONS(3635), + [anon_sym_not] = ACTIONS(3635), + [anon_sym_compl] = ACTIONS(3635), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3635), + [anon_sym___alignof__] = ACTIONS(3635), + [anon_sym___alignof] = ACTIONS(3635), + [anon_sym__alignof] = ACTIONS(3635), + [anon_sym_alignof] = ACTIONS(3635), + [anon_sym__Alignof] = ACTIONS(3635), + [anon_sym_offsetof] = ACTIONS(3635), + [anon_sym__Generic] = ACTIONS(3635), + [anon_sym_asm] = ACTIONS(3635), + [anon_sym___asm__] = ACTIONS(3635), + [sym_number_literal] = ACTIONS(3637), + [anon_sym_L_SQUOTE] = ACTIONS(3637), + [anon_sym_u_SQUOTE] = ACTIONS(3637), + [anon_sym_U_SQUOTE] = ACTIONS(3637), + [anon_sym_u8_SQUOTE] = ACTIONS(3637), + [anon_sym_SQUOTE] = ACTIONS(3637), + [anon_sym_L_DQUOTE] = ACTIONS(3637), + [anon_sym_u_DQUOTE] = ACTIONS(3637), + [anon_sym_U_DQUOTE] = ACTIONS(3637), + [anon_sym_u8_DQUOTE] = ACTIONS(3637), + [anon_sym_DQUOTE] = ACTIONS(3637), + [sym_true] = ACTIONS(3635), + [sym_false] = ACTIONS(3635), + [anon_sym_NULL] = ACTIONS(3635), + [anon_sym_nullptr] = ACTIONS(3635), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3635), + [anon_sym_decltype] = ACTIONS(3635), + [anon_sym_virtual] = ACTIONS(3635), + [anon_sym_alignas] = ACTIONS(3635), + [anon_sym_explicit] = ACTIONS(3635), + [anon_sym_typename] = ACTIONS(3635), + [anon_sym_template] = ACTIONS(3635), + [anon_sym_operator] = ACTIONS(3635), + [anon_sym_try] = ACTIONS(3635), + [anon_sym_delete] = ACTIONS(3635), + [anon_sym_throw] = ACTIONS(3635), + [anon_sym_namespace] = ACTIONS(3635), + [anon_sym_using] = ACTIONS(3635), + [anon_sym_static_assert] = ACTIONS(3635), + [anon_sym_concept] = ACTIONS(3635), + [anon_sym_co_return] = ACTIONS(3635), + [anon_sym_co_yield] = ACTIONS(3635), + [anon_sym_R_DQUOTE] = ACTIONS(3637), + [anon_sym_LR_DQUOTE] = ACTIONS(3637), + [anon_sym_uR_DQUOTE] = ACTIONS(3637), + [anon_sym_UR_DQUOTE] = ACTIONS(3637), + [anon_sym_u8R_DQUOTE] = ACTIONS(3637), + [anon_sym_co_await] = ACTIONS(3635), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_requires] = ACTIONS(3635), + [sym_this] = ACTIONS(3635), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3637), + [sym_semgrep_named_ellipsis] = ACTIONS(3637), + }, + [681] = { + [sym_identifier] = ACTIONS(3627), + [aux_sym_preproc_include_token1] = ACTIONS(3627), + [aux_sym_preproc_def_token1] = ACTIONS(3627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3629), + [aux_sym_preproc_if_token1] = ACTIONS(3627), + [aux_sym_preproc_if_token2] = ACTIONS(3627), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3627), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3627), + [sym_preproc_directive] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3629), + [anon_sym_TILDE] = ACTIONS(3629), + [anon_sym_DASH] = ACTIONS(3627), + [anon_sym_PLUS] = ACTIONS(3627), + [anon_sym_STAR] = ACTIONS(3629), + [anon_sym_AMP_AMP] = ACTIONS(3629), + [anon_sym_AMP] = ACTIONS(3627), + [anon_sym_SEMI] = ACTIONS(3629), + [anon_sym___extension__] = ACTIONS(3627), + [anon_sym_typedef] = ACTIONS(3627), + [anon_sym_extern] = ACTIONS(3627), + [anon_sym___attribute__] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3629), + [anon_sym___declspec] = ACTIONS(3627), + [anon_sym___based] = ACTIONS(3627), + [anon_sym___cdecl] = ACTIONS(3627), + [anon_sym___clrcall] = ACTIONS(3627), + [anon_sym___stdcall] = ACTIONS(3627), + [anon_sym___fastcall] = ACTIONS(3627), + [anon_sym___thiscall] = ACTIONS(3627), + [anon_sym___vectorcall] = ACTIONS(3627), + [anon_sym_LBRACE] = ACTIONS(3629), + [anon_sym_signed] = ACTIONS(3627), + [anon_sym_unsigned] = ACTIONS(3627), + [anon_sym_long] = ACTIONS(3627), + [anon_sym_short] = ACTIONS(3627), + [anon_sym_LBRACK] = ACTIONS(3627), + [anon_sym_static] = ACTIONS(3627), + [anon_sym_register] = ACTIONS(3627), + [anon_sym_inline] = ACTIONS(3627), + [anon_sym___inline] = ACTIONS(3627), + [anon_sym___inline__] = ACTIONS(3627), + [anon_sym___forceinline] = ACTIONS(3627), + [anon_sym_thread_local] = ACTIONS(3627), + [anon_sym___thread] = ACTIONS(3627), + [anon_sym_const] = ACTIONS(3627), + [anon_sym_constexpr] = ACTIONS(3627), + [anon_sym_volatile] = ACTIONS(3627), + [anon_sym_restrict] = ACTIONS(3627), + [anon_sym___restrict__] = ACTIONS(3627), + [anon_sym__Atomic] = ACTIONS(3627), + [anon_sym__Noreturn] = ACTIONS(3627), + [anon_sym_noreturn] = ACTIONS(3627), + [anon_sym_mutable] = ACTIONS(3627), + [anon_sym_constinit] = ACTIONS(3627), + [anon_sym_consteval] = ACTIONS(3627), + [sym_primitive_type] = ACTIONS(3627), + [anon_sym_enum] = ACTIONS(3627), + [anon_sym_class] = ACTIONS(3627), + [anon_sym_struct] = ACTIONS(3627), + [anon_sym_union] = ACTIONS(3627), + [anon_sym_if] = ACTIONS(3627), + [anon_sym_switch] = ACTIONS(3627), + [anon_sym_case] = ACTIONS(3627), + [anon_sym_default] = ACTIONS(3627), + [anon_sym_while] = ACTIONS(3627), + [anon_sym_do] = ACTIONS(3627), + [anon_sym_for] = ACTIONS(3627), + [anon_sym_return] = ACTIONS(3627), + [anon_sym_break] = ACTIONS(3627), + [anon_sym_continue] = ACTIONS(3627), + [anon_sym_goto] = ACTIONS(3627), + [anon_sym___try] = ACTIONS(3627), + [anon_sym___leave] = ACTIONS(3627), + [anon_sym_not] = ACTIONS(3627), + [anon_sym_compl] = ACTIONS(3627), + [anon_sym_DASH_DASH] = ACTIONS(3629), + [anon_sym_PLUS_PLUS] = ACTIONS(3629), + [anon_sym_sizeof] = ACTIONS(3627), + [anon_sym___alignof__] = ACTIONS(3627), + [anon_sym___alignof] = ACTIONS(3627), + [anon_sym__alignof] = ACTIONS(3627), + [anon_sym_alignof] = ACTIONS(3627), + [anon_sym__Alignof] = ACTIONS(3627), + [anon_sym_offsetof] = ACTIONS(3627), + [anon_sym__Generic] = ACTIONS(3627), + [anon_sym_asm] = ACTIONS(3627), + [anon_sym___asm__] = ACTIONS(3627), + [sym_number_literal] = ACTIONS(3629), + [anon_sym_L_SQUOTE] = ACTIONS(3629), + [anon_sym_u_SQUOTE] = ACTIONS(3629), + [anon_sym_U_SQUOTE] = ACTIONS(3629), + [anon_sym_u8_SQUOTE] = ACTIONS(3629), + [anon_sym_SQUOTE] = ACTIONS(3629), + [anon_sym_L_DQUOTE] = ACTIONS(3629), + [anon_sym_u_DQUOTE] = ACTIONS(3629), + [anon_sym_U_DQUOTE] = ACTIONS(3629), + [anon_sym_u8_DQUOTE] = ACTIONS(3629), + [anon_sym_DQUOTE] = ACTIONS(3629), + [sym_true] = ACTIONS(3627), + [sym_false] = ACTIONS(3627), + [anon_sym_NULL] = ACTIONS(3627), + [anon_sym_nullptr] = ACTIONS(3627), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3627), + [anon_sym_decltype] = ACTIONS(3627), + [anon_sym_virtual] = ACTIONS(3627), + [anon_sym_alignas] = ACTIONS(3627), + [anon_sym_explicit] = ACTIONS(3627), + [anon_sym_typename] = ACTIONS(3627), + [anon_sym_template] = ACTIONS(3627), + [anon_sym_operator] = ACTIONS(3627), + [anon_sym_try] = ACTIONS(3627), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_throw] = ACTIONS(3627), + [anon_sym_namespace] = ACTIONS(3627), + [anon_sym_using] = ACTIONS(3627), + [anon_sym_static_assert] = ACTIONS(3627), + [anon_sym_concept] = ACTIONS(3627), + [anon_sym_co_return] = ACTIONS(3627), + [anon_sym_co_yield] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(3629), + [anon_sym_LR_DQUOTE] = ACTIONS(3629), + [anon_sym_uR_DQUOTE] = ACTIONS(3629), + [anon_sym_UR_DQUOTE] = ACTIONS(3629), + [anon_sym_u8R_DQUOTE] = ACTIONS(3629), + [anon_sym_co_await] = ACTIONS(3627), + [anon_sym_new] = ACTIONS(3627), + [anon_sym_requires] = ACTIONS(3627), + [sym_this] = ACTIONS(3627), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3629), + [sym_semgrep_named_ellipsis] = ACTIONS(3629), + }, + [682] = { + [sym_identifier] = ACTIONS(3223), + [aux_sym_preproc_include_token1] = ACTIONS(3223), + [aux_sym_preproc_def_token1] = ACTIONS(3223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3225), + [aux_sym_preproc_if_token1] = ACTIONS(3223), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3223), + [sym_preproc_directive] = ACTIONS(3223), + [anon_sym_LPAREN2] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3225), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(3223), + [anon_sym_PLUS] = ACTIONS(3223), + [anon_sym_STAR] = ACTIONS(3225), + [anon_sym_AMP_AMP] = ACTIONS(3225), + [anon_sym_AMP] = ACTIONS(3223), + [anon_sym_SEMI] = ACTIONS(3225), + [anon_sym___extension__] = ACTIONS(3223), + [anon_sym_typedef] = ACTIONS(3223), + [anon_sym_extern] = ACTIONS(3223), + [anon_sym___attribute__] = ACTIONS(3223), + [anon_sym_COLON_COLON] = ACTIONS(3225), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3225), + [anon_sym___declspec] = ACTIONS(3223), + [anon_sym___based] = ACTIONS(3223), + [anon_sym___cdecl] = ACTIONS(3223), + [anon_sym___clrcall] = ACTIONS(3223), + [anon_sym___stdcall] = ACTIONS(3223), + [anon_sym___fastcall] = ACTIONS(3223), + [anon_sym___thiscall] = ACTIONS(3223), + [anon_sym___vectorcall] = ACTIONS(3223), + [anon_sym_LBRACE] = ACTIONS(3225), + [anon_sym_RBRACE] = ACTIONS(3225), + [anon_sym_signed] = ACTIONS(3223), + [anon_sym_unsigned] = ACTIONS(3223), + [anon_sym_long] = ACTIONS(3223), + [anon_sym_short] = ACTIONS(3223), + [anon_sym_LBRACK] = ACTIONS(3223), + [anon_sym_static] = ACTIONS(3223), + [anon_sym_register] = ACTIONS(3223), + [anon_sym_inline] = ACTIONS(3223), + [anon_sym___inline] = ACTIONS(3223), + [anon_sym___inline__] = ACTIONS(3223), + [anon_sym___forceinline] = ACTIONS(3223), + [anon_sym_thread_local] = ACTIONS(3223), + [anon_sym___thread] = ACTIONS(3223), + [anon_sym_const] = ACTIONS(3223), + [anon_sym_constexpr] = ACTIONS(3223), + [anon_sym_volatile] = ACTIONS(3223), + [anon_sym_restrict] = ACTIONS(3223), + [anon_sym___restrict__] = ACTIONS(3223), + [anon_sym__Atomic] = ACTIONS(3223), + [anon_sym__Noreturn] = ACTIONS(3223), + [anon_sym_noreturn] = ACTIONS(3223), + [anon_sym_mutable] = ACTIONS(3223), + [anon_sym_constinit] = ACTIONS(3223), + [anon_sym_consteval] = ACTIONS(3223), + [sym_primitive_type] = ACTIONS(3223), + [anon_sym_enum] = ACTIONS(3223), + [anon_sym_class] = ACTIONS(3223), + [anon_sym_struct] = ACTIONS(3223), + [anon_sym_union] = ACTIONS(3223), + [anon_sym_if] = ACTIONS(3223), + [anon_sym_switch] = ACTIONS(3223), + [anon_sym_case] = ACTIONS(3223), + [anon_sym_default] = ACTIONS(3223), + [anon_sym_while] = ACTIONS(3223), + [anon_sym_do] = ACTIONS(3223), + [anon_sym_for] = ACTIONS(3223), + [anon_sym_return] = ACTIONS(3223), + [anon_sym_break] = ACTIONS(3223), + [anon_sym_continue] = ACTIONS(3223), + [anon_sym_goto] = ACTIONS(3223), + [anon_sym___try] = ACTIONS(3223), + [anon_sym___leave] = ACTIONS(3223), + [anon_sym_not] = ACTIONS(3223), + [anon_sym_compl] = ACTIONS(3223), + [anon_sym_DASH_DASH] = ACTIONS(3225), + [anon_sym_PLUS_PLUS] = ACTIONS(3225), + [anon_sym_sizeof] = ACTIONS(3223), + [anon_sym___alignof__] = ACTIONS(3223), + [anon_sym___alignof] = ACTIONS(3223), + [anon_sym__alignof] = ACTIONS(3223), + [anon_sym_alignof] = ACTIONS(3223), + [anon_sym__Alignof] = ACTIONS(3223), + [anon_sym_offsetof] = ACTIONS(3223), + [anon_sym__Generic] = ACTIONS(3223), + [anon_sym_asm] = ACTIONS(3223), + [anon_sym___asm__] = ACTIONS(3223), + [sym_number_literal] = ACTIONS(3225), + [anon_sym_L_SQUOTE] = ACTIONS(3225), + [anon_sym_u_SQUOTE] = ACTIONS(3225), + [anon_sym_U_SQUOTE] = ACTIONS(3225), + [anon_sym_u8_SQUOTE] = ACTIONS(3225), + [anon_sym_SQUOTE] = ACTIONS(3225), + [anon_sym_L_DQUOTE] = ACTIONS(3225), + [anon_sym_u_DQUOTE] = ACTIONS(3225), + [anon_sym_U_DQUOTE] = ACTIONS(3225), + [anon_sym_u8_DQUOTE] = ACTIONS(3225), + [anon_sym_DQUOTE] = ACTIONS(3225), + [sym_true] = ACTIONS(3223), + [sym_false] = ACTIONS(3223), + [anon_sym_NULL] = ACTIONS(3223), + [anon_sym_nullptr] = ACTIONS(3223), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(3732), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(3734), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(3738), - [anon_sym_static_assert] = ACTIONS(3740), + [sym_auto] = ACTIONS(3223), + [anon_sym_decltype] = ACTIONS(3223), + [anon_sym_virtual] = ACTIONS(3223), + [anon_sym_alignas] = ACTIONS(3223), + [anon_sym_explicit] = ACTIONS(3223), + [anon_sym_typename] = ACTIONS(3223), + [anon_sym_template] = ACTIONS(3223), + [anon_sym_operator] = ACTIONS(3223), + [anon_sym_try] = ACTIONS(3223), + [anon_sym_delete] = ACTIONS(3223), + [anon_sym_throw] = ACTIONS(3223), + [anon_sym_namespace] = ACTIONS(3223), + [anon_sym_using] = ACTIONS(3223), + [anon_sym_static_assert] = ACTIONS(3223), + [anon_sym_concept] = ACTIONS(3223), + [anon_sym_co_return] = ACTIONS(3223), + [anon_sym_co_yield] = ACTIONS(3223), + [anon_sym_R_DQUOTE] = ACTIONS(3225), + [anon_sym_LR_DQUOTE] = ACTIONS(3225), + [anon_sym_uR_DQUOTE] = ACTIONS(3225), + [anon_sym_UR_DQUOTE] = ACTIONS(3225), + [anon_sym_u8R_DQUOTE] = ACTIONS(3225), + [anon_sym_co_await] = ACTIONS(3223), + [anon_sym_new] = ACTIONS(3223), + [anon_sym_requires] = ACTIONS(3223), + [sym_this] = ACTIONS(3223), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3225), + [sym_semgrep_named_ellipsis] = ACTIONS(3225), }, - [641] = { - [sym_preproc_def] = STATE(1988), - [sym_preproc_function_def] = STATE(1988), - [sym_preproc_call] = STATE(1988), - [sym_preproc_if_in_field_declaration_list] = STATE(1988), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1988), - [sym_preproc_else_in_field_declaration_list] = STATE(9824), - [sym_preproc_elif_in_field_declaration_list] = STATE(9824), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(9824), - [sym_type_definition] = STATE(1988), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6897), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7690), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(820), - [sym_field_declaration] = STATE(1988), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(1988), - [sym_operator_cast] = STATE(8046), - [sym_inline_method_definition] = STATE(1988), - [sym_constructor_specifiers] = STATE(1934), - [sym_operator_cast_definition] = STATE(1988), - [sym_operator_cast_declaration] = STATE(1988), - [sym_constructor_or_destructor_definition] = STATE(1988), - [sym_constructor_or_destructor_declaration] = STATE(1988), - [sym_friend_declaration] = STATE(1988), - [sym_access_specifier] = STATE(9892), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(1988), - [sym_alias_declaration] = STATE(1988), - [sym_static_assert_declaration] = STATE(1988), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8046), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(820), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1934), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(3684), - [aux_sym_preproc_if_token1] = ACTIONS(3686), - [aux_sym_preproc_if_token2] = ACTIONS(3754), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [aux_sym_preproc_else_token1] = ACTIONS(3694), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3698), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3700), - [sym_preproc_directive] = ACTIONS(3702), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(3712), - [anon_sym_typedef] = ACTIONS(3714), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [683] = { + [sym_identifier] = ACTIONS(3649), + [aux_sym_preproc_include_token1] = ACTIONS(3649), + [aux_sym_preproc_def_token1] = ACTIONS(3649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3651), + [aux_sym_preproc_if_token1] = ACTIONS(3649), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3649), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3649), + [sym_preproc_directive] = ACTIONS(3649), + [anon_sym_LPAREN2] = ACTIONS(3651), + [anon_sym_BANG] = ACTIONS(3651), + [anon_sym_TILDE] = ACTIONS(3651), + [anon_sym_DASH] = ACTIONS(3649), + [anon_sym_PLUS] = ACTIONS(3649), + [anon_sym_STAR] = ACTIONS(3651), + [anon_sym_AMP_AMP] = ACTIONS(3651), + [anon_sym_AMP] = ACTIONS(3649), + [anon_sym_SEMI] = ACTIONS(3651), + [anon_sym___extension__] = ACTIONS(3649), + [anon_sym_typedef] = ACTIONS(3649), + [anon_sym_extern] = ACTIONS(3649), + [anon_sym___attribute__] = ACTIONS(3649), + [anon_sym_COLON_COLON] = ACTIONS(3651), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3651), + [anon_sym___declspec] = ACTIONS(3649), + [anon_sym___based] = ACTIONS(3649), + [anon_sym___cdecl] = ACTIONS(3649), + [anon_sym___clrcall] = ACTIONS(3649), + [anon_sym___stdcall] = ACTIONS(3649), + [anon_sym___fastcall] = ACTIONS(3649), + [anon_sym___thiscall] = ACTIONS(3649), + [anon_sym___vectorcall] = ACTIONS(3649), + [anon_sym_LBRACE] = ACTIONS(3651), + [anon_sym_RBRACE] = ACTIONS(3651), + [anon_sym_signed] = ACTIONS(3649), + [anon_sym_unsigned] = ACTIONS(3649), + [anon_sym_long] = ACTIONS(3649), + [anon_sym_short] = ACTIONS(3649), + [anon_sym_LBRACK] = ACTIONS(3649), + [anon_sym_static] = ACTIONS(3649), + [anon_sym_register] = ACTIONS(3649), + [anon_sym_inline] = ACTIONS(3649), + [anon_sym___inline] = ACTIONS(3649), + [anon_sym___inline__] = ACTIONS(3649), + [anon_sym___forceinline] = ACTIONS(3649), + [anon_sym_thread_local] = ACTIONS(3649), + [anon_sym___thread] = ACTIONS(3649), + [anon_sym_const] = ACTIONS(3649), + [anon_sym_constexpr] = ACTIONS(3649), + [anon_sym_volatile] = ACTIONS(3649), + [anon_sym_restrict] = ACTIONS(3649), + [anon_sym___restrict__] = ACTIONS(3649), + [anon_sym__Atomic] = ACTIONS(3649), + [anon_sym__Noreturn] = ACTIONS(3649), + [anon_sym_noreturn] = ACTIONS(3649), + [anon_sym_mutable] = ACTIONS(3649), + [anon_sym_constinit] = ACTIONS(3649), + [anon_sym_consteval] = ACTIONS(3649), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_enum] = ACTIONS(3649), + [anon_sym_class] = ACTIONS(3649), + [anon_sym_struct] = ACTIONS(3649), + [anon_sym_union] = ACTIONS(3649), + [anon_sym_if] = ACTIONS(3649), + [anon_sym_switch] = ACTIONS(3649), + [anon_sym_case] = ACTIONS(3649), + [anon_sym_default] = ACTIONS(3649), + [anon_sym_while] = ACTIONS(3649), + [anon_sym_do] = ACTIONS(3649), + [anon_sym_for] = ACTIONS(3649), + [anon_sym_return] = ACTIONS(3649), + [anon_sym_break] = ACTIONS(3649), + [anon_sym_continue] = ACTIONS(3649), + [anon_sym_goto] = ACTIONS(3649), + [anon_sym___try] = ACTIONS(3649), + [anon_sym___leave] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3649), + [anon_sym_compl] = ACTIONS(3649), + [anon_sym_DASH_DASH] = ACTIONS(3651), + [anon_sym_PLUS_PLUS] = ACTIONS(3651), + [anon_sym_sizeof] = ACTIONS(3649), + [anon_sym___alignof__] = ACTIONS(3649), + [anon_sym___alignof] = ACTIONS(3649), + [anon_sym__alignof] = ACTIONS(3649), + [anon_sym_alignof] = ACTIONS(3649), + [anon_sym__Alignof] = ACTIONS(3649), + [anon_sym_offsetof] = ACTIONS(3649), + [anon_sym__Generic] = ACTIONS(3649), + [anon_sym_asm] = ACTIONS(3649), + [anon_sym___asm__] = ACTIONS(3649), + [sym_number_literal] = ACTIONS(3651), + [anon_sym_L_SQUOTE] = ACTIONS(3651), + [anon_sym_u_SQUOTE] = ACTIONS(3651), + [anon_sym_U_SQUOTE] = ACTIONS(3651), + [anon_sym_u8_SQUOTE] = ACTIONS(3651), + [anon_sym_SQUOTE] = ACTIONS(3651), + [anon_sym_L_DQUOTE] = ACTIONS(3651), + [anon_sym_u_DQUOTE] = ACTIONS(3651), + [anon_sym_U_DQUOTE] = ACTIONS(3651), + [anon_sym_u8_DQUOTE] = ACTIONS(3651), + [anon_sym_DQUOTE] = ACTIONS(3651), + [sym_true] = ACTIONS(3649), + [sym_false] = ACTIONS(3649), + [anon_sym_NULL] = ACTIONS(3649), + [anon_sym_nullptr] = ACTIONS(3649), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3649), + [anon_sym_decltype] = ACTIONS(3649), + [anon_sym_virtual] = ACTIONS(3649), + [anon_sym_alignas] = ACTIONS(3649), + [anon_sym_explicit] = ACTIONS(3649), + [anon_sym_typename] = ACTIONS(3649), + [anon_sym_template] = ACTIONS(3649), + [anon_sym_operator] = ACTIONS(3649), + [anon_sym_try] = ACTIONS(3649), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_throw] = ACTIONS(3649), + [anon_sym_namespace] = ACTIONS(3649), + [anon_sym_using] = ACTIONS(3649), + [anon_sym_static_assert] = ACTIONS(3649), + [anon_sym_concept] = ACTIONS(3649), + [anon_sym_co_return] = ACTIONS(3649), + [anon_sym_co_yield] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(3651), + [anon_sym_LR_DQUOTE] = ACTIONS(3651), + [anon_sym_uR_DQUOTE] = ACTIONS(3651), + [anon_sym_UR_DQUOTE] = ACTIONS(3651), + [anon_sym_u8R_DQUOTE] = ACTIONS(3651), + [anon_sym_co_await] = ACTIONS(3649), + [anon_sym_new] = ACTIONS(3649), + [anon_sym_requires] = ACTIONS(3649), + [sym_this] = ACTIONS(3649), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3651), + [sym_semgrep_named_ellipsis] = ACTIONS(3651), + }, + [684] = { + [sym_identifier] = ACTIONS(3465), + [aux_sym_preproc_include_token1] = ACTIONS(3465), + [aux_sym_preproc_def_token1] = ACTIONS(3465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3467), + [aux_sym_preproc_if_token1] = ACTIONS(3465), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3465), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3465), + [sym_preproc_directive] = ACTIONS(3465), + [anon_sym_LPAREN2] = ACTIONS(3467), + [anon_sym_BANG] = ACTIONS(3467), + [anon_sym_TILDE] = ACTIONS(3467), + [anon_sym_DASH] = ACTIONS(3465), + [anon_sym_PLUS] = ACTIONS(3465), + [anon_sym_STAR] = ACTIONS(3467), + [anon_sym_AMP_AMP] = ACTIONS(3467), + [anon_sym_AMP] = ACTIONS(3465), + [anon_sym_SEMI] = ACTIONS(3467), + [anon_sym___extension__] = ACTIONS(3465), + [anon_sym_typedef] = ACTIONS(3465), + [anon_sym_extern] = ACTIONS(3465), + [anon_sym___attribute__] = ACTIONS(3465), + [anon_sym_COLON_COLON] = ACTIONS(3467), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3467), + [anon_sym___declspec] = ACTIONS(3465), + [anon_sym___based] = ACTIONS(3465), + [anon_sym___cdecl] = ACTIONS(3465), + [anon_sym___clrcall] = ACTIONS(3465), + [anon_sym___stdcall] = ACTIONS(3465), + [anon_sym___fastcall] = ACTIONS(3465), + [anon_sym___thiscall] = ACTIONS(3465), + [anon_sym___vectorcall] = ACTIONS(3465), + [anon_sym_LBRACE] = ACTIONS(3467), + [anon_sym_RBRACE] = ACTIONS(3467), + [anon_sym_signed] = ACTIONS(3465), + [anon_sym_unsigned] = ACTIONS(3465), + [anon_sym_long] = ACTIONS(3465), + [anon_sym_short] = ACTIONS(3465), + [anon_sym_LBRACK] = ACTIONS(3465), + [anon_sym_static] = ACTIONS(3465), + [anon_sym_register] = ACTIONS(3465), + [anon_sym_inline] = ACTIONS(3465), + [anon_sym___inline] = ACTIONS(3465), + [anon_sym___inline__] = ACTIONS(3465), + [anon_sym___forceinline] = ACTIONS(3465), + [anon_sym_thread_local] = ACTIONS(3465), + [anon_sym___thread] = ACTIONS(3465), + [anon_sym_const] = ACTIONS(3465), + [anon_sym_constexpr] = ACTIONS(3465), + [anon_sym_volatile] = ACTIONS(3465), + [anon_sym_restrict] = ACTIONS(3465), + [anon_sym___restrict__] = ACTIONS(3465), + [anon_sym__Atomic] = ACTIONS(3465), + [anon_sym__Noreturn] = ACTIONS(3465), + [anon_sym_noreturn] = ACTIONS(3465), + [anon_sym_mutable] = ACTIONS(3465), + [anon_sym_constinit] = ACTIONS(3465), + [anon_sym_consteval] = ACTIONS(3465), + [sym_primitive_type] = ACTIONS(3465), + [anon_sym_enum] = ACTIONS(3465), + [anon_sym_class] = ACTIONS(3465), + [anon_sym_struct] = ACTIONS(3465), + [anon_sym_union] = ACTIONS(3465), + [anon_sym_if] = ACTIONS(3465), + [anon_sym_switch] = ACTIONS(3465), + [anon_sym_case] = ACTIONS(3465), + [anon_sym_default] = ACTIONS(3465), + [anon_sym_while] = ACTIONS(3465), + [anon_sym_do] = ACTIONS(3465), + [anon_sym_for] = ACTIONS(3465), + [anon_sym_return] = ACTIONS(3465), + [anon_sym_break] = ACTIONS(3465), + [anon_sym_continue] = ACTIONS(3465), + [anon_sym_goto] = ACTIONS(3465), + [anon_sym___try] = ACTIONS(3465), + [anon_sym___leave] = ACTIONS(3465), + [anon_sym_not] = ACTIONS(3465), + [anon_sym_compl] = ACTIONS(3465), + [anon_sym_DASH_DASH] = ACTIONS(3467), + [anon_sym_PLUS_PLUS] = ACTIONS(3467), + [anon_sym_sizeof] = ACTIONS(3465), + [anon_sym___alignof__] = ACTIONS(3465), + [anon_sym___alignof] = ACTIONS(3465), + [anon_sym__alignof] = ACTIONS(3465), + [anon_sym_alignof] = ACTIONS(3465), + [anon_sym__Alignof] = ACTIONS(3465), + [anon_sym_offsetof] = ACTIONS(3465), + [anon_sym__Generic] = ACTIONS(3465), + [anon_sym_asm] = ACTIONS(3465), + [anon_sym___asm__] = ACTIONS(3465), + [sym_number_literal] = ACTIONS(3467), + [anon_sym_L_SQUOTE] = ACTIONS(3467), + [anon_sym_u_SQUOTE] = ACTIONS(3467), + [anon_sym_U_SQUOTE] = ACTIONS(3467), + [anon_sym_u8_SQUOTE] = ACTIONS(3467), + [anon_sym_SQUOTE] = ACTIONS(3467), + [anon_sym_L_DQUOTE] = ACTIONS(3467), + [anon_sym_u_DQUOTE] = ACTIONS(3467), + [anon_sym_U_DQUOTE] = ACTIONS(3467), + [anon_sym_u8_DQUOTE] = ACTIONS(3467), + [anon_sym_DQUOTE] = ACTIONS(3467), + [sym_true] = ACTIONS(3465), + [sym_false] = ACTIONS(3465), + [anon_sym_NULL] = ACTIONS(3465), + [anon_sym_nullptr] = ACTIONS(3465), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(3732), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(3734), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(3738), - [anon_sym_static_assert] = ACTIONS(3740), + [sym_auto] = ACTIONS(3465), + [anon_sym_decltype] = ACTIONS(3465), + [anon_sym_virtual] = ACTIONS(3465), + [anon_sym_alignas] = ACTIONS(3465), + [anon_sym_explicit] = ACTIONS(3465), + [anon_sym_typename] = ACTIONS(3465), + [anon_sym_template] = ACTIONS(3465), + [anon_sym_operator] = ACTIONS(3465), + [anon_sym_try] = ACTIONS(3465), + [anon_sym_delete] = ACTIONS(3465), + [anon_sym_throw] = ACTIONS(3465), + [anon_sym_namespace] = ACTIONS(3465), + [anon_sym_using] = ACTIONS(3465), + [anon_sym_static_assert] = ACTIONS(3465), + [anon_sym_concept] = ACTIONS(3465), + [anon_sym_co_return] = ACTIONS(3465), + [anon_sym_co_yield] = ACTIONS(3465), + [anon_sym_R_DQUOTE] = ACTIONS(3467), + [anon_sym_LR_DQUOTE] = ACTIONS(3467), + [anon_sym_uR_DQUOTE] = ACTIONS(3467), + [anon_sym_UR_DQUOTE] = ACTIONS(3467), + [anon_sym_u8R_DQUOTE] = ACTIONS(3467), + [anon_sym_co_await] = ACTIONS(3465), + [anon_sym_new] = ACTIONS(3465), + [anon_sym_requires] = ACTIONS(3465), + [sym_this] = ACTIONS(3465), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3467), + [sym_semgrep_named_ellipsis] = ACTIONS(3467), }, - [642] = { - [ts_builtin_sym_end] = ACTIONS(3173), - [sym_identifier] = ACTIONS(3171), - [aux_sym_preproc_include_token1] = ACTIONS(3171), - [aux_sym_preproc_def_token1] = ACTIONS(3171), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3173), - [aux_sym_preproc_if_token1] = ACTIONS(3171), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3171), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3171), - [sym_preproc_directive] = ACTIONS(3171), - [anon_sym_LPAREN2] = ACTIONS(3173), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3171), - [anon_sym_PLUS] = ACTIONS(3171), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_AMP_AMP] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3171), - [anon_sym_SEMI] = ACTIONS(3173), - [anon_sym___extension__] = ACTIONS(3171), - [anon_sym_typedef] = ACTIONS(3171), - [anon_sym_extern] = ACTIONS(3171), - [anon_sym___attribute__] = ACTIONS(3171), - [anon_sym_COLON_COLON] = ACTIONS(3173), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3173), - [anon_sym___declspec] = ACTIONS(3171), - [anon_sym___based] = ACTIONS(3171), - [anon_sym___cdecl] = ACTIONS(3171), - [anon_sym___clrcall] = ACTIONS(3171), - [anon_sym___stdcall] = ACTIONS(3171), - [anon_sym___fastcall] = ACTIONS(3171), - [anon_sym___thiscall] = ACTIONS(3171), - [anon_sym___vectorcall] = ACTIONS(3171), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_signed] = ACTIONS(3171), - [anon_sym_unsigned] = ACTIONS(3171), - [anon_sym_long] = ACTIONS(3171), - [anon_sym_short] = ACTIONS(3171), - [anon_sym_LBRACK] = ACTIONS(3171), - [anon_sym_static] = ACTIONS(3171), - [anon_sym_register] = ACTIONS(3171), - [anon_sym_inline] = ACTIONS(3171), - [anon_sym___inline] = ACTIONS(3171), - [anon_sym___inline__] = ACTIONS(3171), - [anon_sym___forceinline] = ACTIONS(3171), - [anon_sym_thread_local] = ACTIONS(3171), - [anon_sym___thread] = ACTIONS(3171), - [anon_sym_const] = ACTIONS(3171), - [anon_sym_constexpr] = ACTIONS(3171), - [anon_sym_volatile] = ACTIONS(3171), - [anon_sym_restrict] = ACTIONS(3171), - [anon_sym___restrict__] = ACTIONS(3171), - [anon_sym__Atomic] = ACTIONS(3171), - [anon_sym__Noreturn] = ACTIONS(3171), - [anon_sym_noreturn] = ACTIONS(3171), - [anon_sym_mutable] = ACTIONS(3171), - [anon_sym_constinit] = ACTIONS(3171), - [anon_sym_consteval] = ACTIONS(3171), - [sym_primitive_type] = ACTIONS(3171), - [anon_sym_enum] = ACTIONS(3171), - [anon_sym_class] = ACTIONS(3171), - [anon_sym_struct] = ACTIONS(3171), - [anon_sym_union] = ACTIONS(3171), - [anon_sym_if] = ACTIONS(3171), - [anon_sym_else] = ACTIONS(3171), - [anon_sym_switch] = ACTIONS(3171), - [anon_sym_case] = ACTIONS(3171), - [anon_sym_default] = ACTIONS(3171), - [anon_sym_while] = ACTIONS(3171), - [anon_sym_do] = ACTIONS(3171), - [anon_sym_for] = ACTIONS(3171), - [anon_sym_return] = ACTIONS(3171), - [anon_sym_break] = ACTIONS(3171), - [anon_sym_continue] = ACTIONS(3171), - [anon_sym_goto] = ACTIONS(3171), - [anon_sym___try] = ACTIONS(3171), - [anon_sym___leave] = ACTIONS(3171), - [anon_sym_not] = ACTIONS(3171), - [anon_sym_compl] = ACTIONS(3171), - [anon_sym_DASH_DASH] = ACTIONS(3173), - [anon_sym_PLUS_PLUS] = ACTIONS(3173), - [anon_sym_sizeof] = ACTIONS(3171), - [anon_sym___alignof__] = ACTIONS(3171), - [anon_sym___alignof] = ACTIONS(3171), - [anon_sym__alignof] = ACTIONS(3171), - [anon_sym_alignof] = ACTIONS(3171), - [anon_sym__Alignof] = ACTIONS(3171), - [anon_sym_offsetof] = ACTIONS(3171), - [anon_sym__Generic] = ACTIONS(3171), - [anon_sym_asm] = ACTIONS(3171), - [anon_sym___asm__] = ACTIONS(3171), - [sym_number_literal] = ACTIONS(3173), - [anon_sym_L_SQUOTE] = ACTIONS(3173), - [anon_sym_u_SQUOTE] = ACTIONS(3173), - [anon_sym_U_SQUOTE] = ACTIONS(3173), - [anon_sym_u8_SQUOTE] = ACTIONS(3173), - [anon_sym_SQUOTE] = ACTIONS(3173), - [anon_sym_L_DQUOTE] = ACTIONS(3173), - [anon_sym_u_DQUOTE] = ACTIONS(3173), - [anon_sym_U_DQUOTE] = ACTIONS(3173), - [anon_sym_u8_DQUOTE] = ACTIONS(3173), - [anon_sym_DQUOTE] = ACTIONS(3173), - [sym_true] = ACTIONS(3171), - [sym_false] = ACTIONS(3171), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), + [685] = { + [sym_identifier] = ACTIONS(3469), + [aux_sym_preproc_include_token1] = ACTIONS(3469), + [aux_sym_preproc_def_token1] = ACTIONS(3469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3471), + [aux_sym_preproc_if_token1] = ACTIONS(3469), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3469), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3469), + [sym_preproc_directive] = ACTIONS(3469), + [anon_sym_LPAREN2] = ACTIONS(3471), + [anon_sym_BANG] = ACTIONS(3471), + [anon_sym_TILDE] = ACTIONS(3471), + [anon_sym_DASH] = ACTIONS(3469), + [anon_sym_PLUS] = ACTIONS(3469), + [anon_sym_STAR] = ACTIONS(3471), + [anon_sym_AMP_AMP] = ACTIONS(3471), + [anon_sym_AMP] = ACTIONS(3469), + [anon_sym_SEMI] = ACTIONS(3471), + [anon_sym___extension__] = ACTIONS(3469), + [anon_sym_typedef] = ACTIONS(3469), + [anon_sym_extern] = ACTIONS(3469), + [anon_sym___attribute__] = ACTIONS(3469), + [anon_sym_COLON_COLON] = ACTIONS(3471), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3471), + [anon_sym___declspec] = ACTIONS(3469), + [anon_sym___based] = ACTIONS(3469), + [anon_sym___cdecl] = ACTIONS(3469), + [anon_sym___clrcall] = ACTIONS(3469), + [anon_sym___stdcall] = ACTIONS(3469), + [anon_sym___fastcall] = ACTIONS(3469), + [anon_sym___thiscall] = ACTIONS(3469), + [anon_sym___vectorcall] = ACTIONS(3469), + [anon_sym_LBRACE] = ACTIONS(3471), + [anon_sym_RBRACE] = ACTIONS(3471), + [anon_sym_signed] = ACTIONS(3469), + [anon_sym_unsigned] = ACTIONS(3469), + [anon_sym_long] = ACTIONS(3469), + [anon_sym_short] = ACTIONS(3469), + [anon_sym_LBRACK] = ACTIONS(3469), + [anon_sym_static] = ACTIONS(3469), + [anon_sym_register] = ACTIONS(3469), + [anon_sym_inline] = ACTIONS(3469), + [anon_sym___inline] = ACTIONS(3469), + [anon_sym___inline__] = ACTIONS(3469), + [anon_sym___forceinline] = ACTIONS(3469), + [anon_sym_thread_local] = ACTIONS(3469), + [anon_sym___thread] = ACTIONS(3469), + [anon_sym_const] = ACTIONS(3469), + [anon_sym_constexpr] = ACTIONS(3469), + [anon_sym_volatile] = ACTIONS(3469), + [anon_sym_restrict] = ACTIONS(3469), + [anon_sym___restrict__] = ACTIONS(3469), + [anon_sym__Atomic] = ACTIONS(3469), + [anon_sym__Noreturn] = ACTIONS(3469), + [anon_sym_noreturn] = ACTIONS(3469), + [anon_sym_mutable] = ACTIONS(3469), + [anon_sym_constinit] = ACTIONS(3469), + [anon_sym_consteval] = ACTIONS(3469), + [sym_primitive_type] = ACTIONS(3469), + [anon_sym_enum] = ACTIONS(3469), + [anon_sym_class] = ACTIONS(3469), + [anon_sym_struct] = ACTIONS(3469), + [anon_sym_union] = ACTIONS(3469), + [anon_sym_if] = ACTIONS(3469), + [anon_sym_switch] = ACTIONS(3469), + [anon_sym_case] = ACTIONS(3469), + [anon_sym_default] = ACTIONS(3469), + [anon_sym_while] = ACTIONS(3469), + [anon_sym_do] = ACTIONS(3469), + [anon_sym_for] = ACTIONS(3469), + [anon_sym_return] = ACTIONS(3469), + [anon_sym_break] = ACTIONS(3469), + [anon_sym_continue] = ACTIONS(3469), + [anon_sym_goto] = ACTIONS(3469), + [anon_sym___try] = ACTIONS(3469), + [anon_sym___leave] = ACTIONS(3469), + [anon_sym_not] = ACTIONS(3469), + [anon_sym_compl] = ACTIONS(3469), + [anon_sym_DASH_DASH] = ACTIONS(3471), + [anon_sym_PLUS_PLUS] = ACTIONS(3471), + [anon_sym_sizeof] = ACTIONS(3469), + [anon_sym___alignof__] = ACTIONS(3469), + [anon_sym___alignof] = ACTIONS(3469), + [anon_sym__alignof] = ACTIONS(3469), + [anon_sym_alignof] = ACTIONS(3469), + [anon_sym__Alignof] = ACTIONS(3469), + [anon_sym_offsetof] = ACTIONS(3469), + [anon_sym__Generic] = ACTIONS(3469), + [anon_sym_asm] = ACTIONS(3469), + [anon_sym___asm__] = ACTIONS(3469), + [sym_number_literal] = ACTIONS(3471), + [anon_sym_L_SQUOTE] = ACTIONS(3471), + [anon_sym_u_SQUOTE] = ACTIONS(3471), + [anon_sym_U_SQUOTE] = ACTIONS(3471), + [anon_sym_u8_SQUOTE] = ACTIONS(3471), + [anon_sym_SQUOTE] = ACTIONS(3471), + [anon_sym_L_DQUOTE] = ACTIONS(3471), + [anon_sym_u_DQUOTE] = ACTIONS(3471), + [anon_sym_U_DQUOTE] = ACTIONS(3471), + [anon_sym_u8_DQUOTE] = ACTIONS(3471), + [anon_sym_DQUOTE] = ACTIONS(3471), + [sym_true] = ACTIONS(3469), + [sym_false] = ACTIONS(3469), + [anon_sym_NULL] = ACTIONS(3469), + [anon_sym_nullptr] = ACTIONS(3469), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3171), - [anon_sym_decltype] = ACTIONS(3171), - [anon_sym_virtual] = ACTIONS(3171), - [anon_sym_alignas] = ACTIONS(3171), - [anon_sym_explicit] = ACTIONS(3171), - [anon_sym_typename] = ACTIONS(3171), - [anon_sym_template] = ACTIONS(3171), - [anon_sym_operator] = ACTIONS(3171), - [anon_sym_try] = ACTIONS(3171), - [anon_sym_delete] = ACTIONS(3171), - [anon_sym_throw] = ACTIONS(3171), - [anon_sym_namespace] = ACTIONS(3171), - [anon_sym_using] = ACTIONS(3171), - [anon_sym_static_assert] = ACTIONS(3171), - [anon_sym_concept] = ACTIONS(3171), - [anon_sym_co_return] = ACTIONS(3171), - [anon_sym_co_yield] = ACTIONS(3171), - [anon_sym_R_DQUOTE] = ACTIONS(3173), - [anon_sym_LR_DQUOTE] = ACTIONS(3173), - [anon_sym_uR_DQUOTE] = ACTIONS(3173), - [anon_sym_UR_DQUOTE] = ACTIONS(3173), - [anon_sym_u8R_DQUOTE] = ACTIONS(3173), - [anon_sym_co_await] = ACTIONS(3171), - [anon_sym_new] = ACTIONS(3171), - [anon_sym_requires] = ACTIONS(3171), - [sym_this] = ACTIONS(3171), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3173), - [sym_semgrep_named_ellipsis] = ACTIONS(3173), + [sym_auto] = ACTIONS(3469), + [anon_sym_decltype] = ACTIONS(3469), + [anon_sym_virtual] = ACTIONS(3469), + [anon_sym_alignas] = ACTIONS(3469), + [anon_sym_explicit] = ACTIONS(3469), + [anon_sym_typename] = ACTIONS(3469), + [anon_sym_template] = ACTIONS(3469), + [anon_sym_operator] = ACTIONS(3469), + [anon_sym_try] = ACTIONS(3469), + [anon_sym_delete] = ACTIONS(3469), + [anon_sym_throw] = ACTIONS(3469), + [anon_sym_namespace] = ACTIONS(3469), + [anon_sym_using] = ACTIONS(3469), + [anon_sym_static_assert] = ACTIONS(3469), + [anon_sym_concept] = ACTIONS(3469), + [anon_sym_co_return] = ACTIONS(3469), + [anon_sym_co_yield] = ACTIONS(3469), + [anon_sym_R_DQUOTE] = ACTIONS(3471), + [anon_sym_LR_DQUOTE] = ACTIONS(3471), + [anon_sym_uR_DQUOTE] = ACTIONS(3471), + [anon_sym_UR_DQUOTE] = ACTIONS(3471), + [anon_sym_u8R_DQUOTE] = ACTIONS(3471), + [anon_sym_co_await] = ACTIONS(3469), + [anon_sym_new] = ACTIONS(3469), + [anon_sym_requires] = ACTIONS(3469), + [sym_this] = ACTIONS(3469), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3471), + [sym_semgrep_named_ellipsis] = ACTIONS(3471), }, - [643] = { - [ts_builtin_sym_end] = ACTIONS(3247), - [sym_identifier] = ACTIONS(3245), - [aux_sym_preproc_include_token1] = ACTIONS(3245), - [aux_sym_preproc_def_token1] = ACTIONS(3245), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3247), - [aux_sym_preproc_if_token1] = ACTIONS(3245), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3245), - [sym_preproc_directive] = ACTIONS(3245), - [anon_sym_LPAREN2] = ACTIONS(3247), - [anon_sym_BANG] = ACTIONS(3247), - [anon_sym_TILDE] = ACTIONS(3247), - [anon_sym_DASH] = ACTIONS(3245), - [anon_sym_PLUS] = ACTIONS(3245), - [anon_sym_STAR] = ACTIONS(3247), - [anon_sym_AMP_AMP] = ACTIONS(3247), - [anon_sym_AMP] = ACTIONS(3245), - [anon_sym_SEMI] = ACTIONS(3247), - [anon_sym___extension__] = ACTIONS(3245), - [anon_sym_typedef] = ACTIONS(3245), - [anon_sym_extern] = ACTIONS(3245), - [anon_sym___attribute__] = ACTIONS(3245), - [anon_sym_COLON_COLON] = ACTIONS(3247), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3247), - [anon_sym___declspec] = ACTIONS(3245), - [anon_sym___based] = ACTIONS(3245), - [anon_sym___cdecl] = ACTIONS(3245), - [anon_sym___clrcall] = ACTIONS(3245), - [anon_sym___stdcall] = ACTIONS(3245), - [anon_sym___fastcall] = ACTIONS(3245), - [anon_sym___thiscall] = ACTIONS(3245), - [anon_sym___vectorcall] = ACTIONS(3245), - [anon_sym_LBRACE] = ACTIONS(3247), - [anon_sym_signed] = ACTIONS(3245), - [anon_sym_unsigned] = ACTIONS(3245), - [anon_sym_long] = ACTIONS(3245), - [anon_sym_short] = ACTIONS(3245), - [anon_sym_LBRACK] = ACTIONS(3245), - [anon_sym_static] = ACTIONS(3245), - [anon_sym_register] = ACTIONS(3245), - [anon_sym_inline] = ACTIONS(3245), - [anon_sym___inline] = ACTIONS(3245), - [anon_sym___inline__] = ACTIONS(3245), - [anon_sym___forceinline] = ACTIONS(3245), - [anon_sym_thread_local] = ACTIONS(3245), - [anon_sym___thread] = ACTIONS(3245), - [anon_sym_const] = ACTIONS(3245), - [anon_sym_constexpr] = ACTIONS(3245), - [anon_sym_volatile] = ACTIONS(3245), - [anon_sym_restrict] = ACTIONS(3245), - [anon_sym___restrict__] = ACTIONS(3245), - [anon_sym__Atomic] = ACTIONS(3245), - [anon_sym__Noreturn] = ACTIONS(3245), - [anon_sym_noreturn] = ACTIONS(3245), - [anon_sym_mutable] = ACTIONS(3245), - [anon_sym_constinit] = ACTIONS(3245), - [anon_sym_consteval] = ACTIONS(3245), - [sym_primitive_type] = ACTIONS(3245), - [anon_sym_enum] = ACTIONS(3245), - [anon_sym_class] = ACTIONS(3245), - [anon_sym_struct] = ACTIONS(3245), - [anon_sym_union] = ACTIONS(3245), - [anon_sym_if] = ACTIONS(3245), - [anon_sym_else] = ACTIONS(3245), - [anon_sym_switch] = ACTIONS(3245), - [anon_sym_case] = ACTIONS(3245), - [anon_sym_default] = ACTIONS(3245), - [anon_sym_while] = ACTIONS(3245), - [anon_sym_do] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(3245), - [anon_sym_return] = ACTIONS(3245), - [anon_sym_break] = ACTIONS(3245), - [anon_sym_continue] = ACTIONS(3245), - [anon_sym_goto] = ACTIONS(3245), - [anon_sym___try] = ACTIONS(3245), - [anon_sym___leave] = ACTIONS(3245), - [anon_sym_not] = ACTIONS(3245), - [anon_sym_compl] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_PLUS_PLUS] = ACTIONS(3247), - [anon_sym_sizeof] = ACTIONS(3245), - [anon_sym___alignof__] = ACTIONS(3245), - [anon_sym___alignof] = ACTIONS(3245), - [anon_sym__alignof] = ACTIONS(3245), - [anon_sym_alignof] = ACTIONS(3245), - [anon_sym__Alignof] = ACTIONS(3245), - [anon_sym_offsetof] = ACTIONS(3245), - [anon_sym__Generic] = ACTIONS(3245), - [anon_sym_asm] = ACTIONS(3245), - [anon_sym___asm__] = ACTIONS(3245), - [sym_number_literal] = ACTIONS(3247), - [anon_sym_L_SQUOTE] = ACTIONS(3247), - [anon_sym_u_SQUOTE] = ACTIONS(3247), - [anon_sym_U_SQUOTE] = ACTIONS(3247), - [anon_sym_u8_SQUOTE] = ACTIONS(3247), - [anon_sym_SQUOTE] = ACTIONS(3247), - [anon_sym_L_DQUOTE] = ACTIONS(3247), - [anon_sym_u_DQUOTE] = ACTIONS(3247), - [anon_sym_U_DQUOTE] = ACTIONS(3247), - [anon_sym_u8_DQUOTE] = ACTIONS(3247), - [anon_sym_DQUOTE] = ACTIONS(3247), - [sym_true] = ACTIONS(3245), - [sym_false] = ACTIONS(3245), - [anon_sym_NULL] = ACTIONS(3245), - [anon_sym_nullptr] = ACTIONS(3245), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3245), - [anon_sym_decltype] = ACTIONS(3245), - [anon_sym_virtual] = ACTIONS(3245), - [anon_sym_alignas] = ACTIONS(3245), - [anon_sym_explicit] = ACTIONS(3245), - [anon_sym_typename] = ACTIONS(3245), - [anon_sym_template] = ACTIONS(3245), - [anon_sym_operator] = ACTIONS(3245), - [anon_sym_try] = ACTIONS(3245), - [anon_sym_delete] = ACTIONS(3245), - [anon_sym_throw] = ACTIONS(3245), - [anon_sym_namespace] = ACTIONS(3245), - [anon_sym_using] = ACTIONS(3245), - [anon_sym_static_assert] = ACTIONS(3245), - [anon_sym_concept] = ACTIONS(3245), - [anon_sym_co_return] = ACTIONS(3245), - [anon_sym_co_yield] = ACTIONS(3245), - [anon_sym_R_DQUOTE] = ACTIONS(3247), - [anon_sym_LR_DQUOTE] = ACTIONS(3247), - [anon_sym_uR_DQUOTE] = ACTIONS(3247), - [anon_sym_UR_DQUOTE] = ACTIONS(3247), - [anon_sym_u8R_DQUOTE] = ACTIONS(3247), - [anon_sym_co_await] = ACTIONS(3245), - [anon_sym_new] = ACTIONS(3245), - [anon_sym_requires] = ACTIONS(3245), - [sym_this] = ACTIONS(3245), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3247), - [sym_semgrep_named_ellipsis] = ACTIONS(3247), + [686] = { + [sym_identifier] = ACTIONS(3475), + [aux_sym_preproc_include_token1] = ACTIONS(3475), + [aux_sym_preproc_def_token1] = ACTIONS(3475), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3477), + [aux_sym_preproc_if_token1] = ACTIONS(3475), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3475), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3475), + [sym_preproc_directive] = ACTIONS(3475), + [anon_sym_LPAREN2] = ACTIONS(3477), + [anon_sym_BANG] = ACTIONS(3477), + [anon_sym_TILDE] = ACTIONS(3477), + [anon_sym_DASH] = ACTIONS(3475), + [anon_sym_PLUS] = ACTIONS(3475), + [anon_sym_STAR] = ACTIONS(3477), + [anon_sym_AMP_AMP] = ACTIONS(3477), + [anon_sym_AMP] = ACTIONS(3475), + [anon_sym_SEMI] = ACTIONS(3477), + [anon_sym___extension__] = ACTIONS(3475), + [anon_sym_typedef] = ACTIONS(3475), + [anon_sym_extern] = ACTIONS(3475), + [anon_sym___attribute__] = ACTIONS(3475), + [anon_sym_COLON_COLON] = ACTIONS(3477), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3477), + [anon_sym___declspec] = ACTIONS(3475), + [anon_sym___based] = ACTIONS(3475), + [anon_sym___cdecl] = ACTIONS(3475), + [anon_sym___clrcall] = ACTIONS(3475), + [anon_sym___stdcall] = ACTIONS(3475), + [anon_sym___fastcall] = ACTIONS(3475), + [anon_sym___thiscall] = ACTIONS(3475), + [anon_sym___vectorcall] = ACTIONS(3475), + [anon_sym_LBRACE] = ACTIONS(3477), + [anon_sym_RBRACE] = ACTIONS(3477), + [anon_sym_signed] = ACTIONS(3475), + [anon_sym_unsigned] = ACTIONS(3475), + [anon_sym_long] = ACTIONS(3475), + [anon_sym_short] = ACTIONS(3475), + [anon_sym_LBRACK] = ACTIONS(3475), + [anon_sym_static] = ACTIONS(3475), + [anon_sym_register] = ACTIONS(3475), + [anon_sym_inline] = ACTIONS(3475), + [anon_sym___inline] = ACTIONS(3475), + [anon_sym___inline__] = ACTIONS(3475), + [anon_sym___forceinline] = ACTIONS(3475), + [anon_sym_thread_local] = ACTIONS(3475), + [anon_sym___thread] = ACTIONS(3475), + [anon_sym_const] = ACTIONS(3475), + [anon_sym_constexpr] = ACTIONS(3475), + [anon_sym_volatile] = ACTIONS(3475), + [anon_sym_restrict] = ACTIONS(3475), + [anon_sym___restrict__] = ACTIONS(3475), + [anon_sym__Atomic] = ACTIONS(3475), + [anon_sym__Noreturn] = ACTIONS(3475), + [anon_sym_noreturn] = ACTIONS(3475), + [anon_sym_mutable] = ACTIONS(3475), + [anon_sym_constinit] = ACTIONS(3475), + [anon_sym_consteval] = ACTIONS(3475), + [sym_primitive_type] = ACTIONS(3475), + [anon_sym_enum] = ACTIONS(3475), + [anon_sym_class] = ACTIONS(3475), + [anon_sym_struct] = ACTIONS(3475), + [anon_sym_union] = ACTIONS(3475), + [anon_sym_if] = ACTIONS(3475), + [anon_sym_switch] = ACTIONS(3475), + [anon_sym_case] = ACTIONS(3475), + [anon_sym_default] = ACTIONS(3475), + [anon_sym_while] = ACTIONS(3475), + [anon_sym_do] = ACTIONS(3475), + [anon_sym_for] = ACTIONS(3475), + [anon_sym_return] = ACTIONS(3475), + [anon_sym_break] = ACTIONS(3475), + [anon_sym_continue] = ACTIONS(3475), + [anon_sym_goto] = ACTIONS(3475), + [anon_sym___try] = ACTIONS(3475), + [anon_sym___leave] = ACTIONS(3475), + [anon_sym_not] = ACTIONS(3475), + [anon_sym_compl] = ACTIONS(3475), + [anon_sym_DASH_DASH] = ACTIONS(3477), + [anon_sym_PLUS_PLUS] = ACTIONS(3477), + [anon_sym_sizeof] = ACTIONS(3475), + [anon_sym___alignof__] = ACTIONS(3475), + [anon_sym___alignof] = ACTIONS(3475), + [anon_sym__alignof] = ACTIONS(3475), + [anon_sym_alignof] = ACTIONS(3475), + [anon_sym__Alignof] = ACTIONS(3475), + [anon_sym_offsetof] = ACTIONS(3475), + [anon_sym__Generic] = ACTIONS(3475), + [anon_sym_asm] = ACTIONS(3475), + [anon_sym___asm__] = ACTIONS(3475), + [sym_number_literal] = ACTIONS(3477), + [anon_sym_L_SQUOTE] = ACTIONS(3477), + [anon_sym_u_SQUOTE] = ACTIONS(3477), + [anon_sym_U_SQUOTE] = ACTIONS(3477), + [anon_sym_u8_SQUOTE] = ACTIONS(3477), + [anon_sym_SQUOTE] = ACTIONS(3477), + [anon_sym_L_DQUOTE] = ACTIONS(3477), + [anon_sym_u_DQUOTE] = ACTIONS(3477), + [anon_sym_U_DQUOTE] = ACTIONS(3477), + [anon_sym_u8_DQUOTE] = ACTIONS(3477), + [anon_sym_DQUOTE] = ACTIONS(3477), + [sym_true] = ACTIONS(3475), + [sym_false] = ACTIONS(3475), + [anon_sym_NULL] = ACTIONS(3475), + [anon_sym_nullptr] = ACTIONS(3475), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3475), + [anon_sym_decltype] = ACTIONS(3475), + [anon_sym_virtual] = ACTIONS(3475), + [anon_sym_alignas] = ACTIONS(3475), + [anon_sym_explicit] = ACTIONS(3475), + [anon_sym_typename] = ACTIONS(3475), + [anon_sym_template] = ACTIONS(3475), + [anon_sym_operator] = ACTIONS(3475), + [anon_sym_try] = ACTIONS(3475), + [anon_sym_delete] = ACTIONS(3475), + [anon_sym_throw] = ACTIONS(3475), + [anon_sym_namespace] = ACTIONS(3475), + [anon_sym_using] = ACTIONS(3475), + [anon_sym_static_assert] = ACTIONS(3475), + [anon_sym_concept] = ACTIONS(3475), + [anon_sym_co_return] = ACTIONS(3475), + [anon_sym_co_yield] = ACTIONS(3475), + [anon_sym_R_DQUOTE] = ACTIONS(3477), + [anon_sym_LR_DQUOTE] = ACTIONS(3477), + [anon_sym_uR_DQUOTE] = ACTIONS(3477), + [anon_sym_UR_DQUOTE] = ACTIONS(3477), + [anon_sym_u8R_DQUOTE] = ACTIONS(3477), + [anon_sym_co_await] = ACTIONS(3475), + [anon_sym_new] = ACTIONS(3475), + [anon_sym_requires] = ACTIONS(3475), + [sym_this] = ACTIONS(3475), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3477), + [sym_semgrep_named_ellipsis] = ACTIONS(3477), }, - [644] = { - [ts_builtin_sym_end] = ACTIONS(3181), - [sym_identifier] = ACTIONS(3179), - [aux_sym_preproc_include_token1] = ACTIONS(3179), - [aux_sym_preproc_def_token1] = ACTIONS(3179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3181), - [aux_sym_preproc_if_token1] = ACTIONS(3179), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3179), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3179), - [sym_preproc_directive] = ACTIONS(3179), - [anon_sym_LPAREN2] = ACTIONS(3181), - [anon_sym_BANG] = ACTIONS(3181), - [anon_sym_TILDE] = ACTIONS(3181), - [anon_sym_DASH] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_STAR] = ACTIONS(3181), - [anon_sym_AMP_AMP] = ACTIONS(3181), - [anon_sym_AMP] = ACTIONS(3179), - [anon_sym_SEMI] = ACTIONS(3181), - [anon_sym___extension__] = ACTIONS(3179), - [anon_sym_typedef] = ACTIONS(3179), - [anon_sym_extern] = ACTIONS(3179), - [anon_sym___attribute__] = ACTIONS(3179), - [anon_sym_COLON_COLON] = ACTIONS(3181), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3181), - [anon_sym___declspec] = ACTIONS(3179), - [anon_sym___based] = ACTIONS(3179), - [anon_sym___cdecl] = ACTIONS(3179), - [anon_sym___clrcall] = ACTIONS(3179), - [anon_sym___stdcall] = ACTIONS(3179), - [anon_sym___fastcall] = ACTIONS(3179), - [anon_sym___thiscall] = ACTIONS(3179), - [anon_sym___vectorcall] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3181), - [anon_sym_signed] = ACTIONS(3179), - [anon_sym_unsigned] = ACTIONS(3179), - [anon_sym_long] = ACTIONS(3179), - [anon_sym_short] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_static] = ACTIONS(3179), - [anon_sym_register] = ACTIONS(3179), - [anon_sym_inline] = ACTIONS(3179), - [anon_sym___inline] = ACTIONS(3179), - [anon_sym___inline__] = ACTIONS(3179), - [anon_sym___forceinline] = ACTIONS(3179), - [anon_sym_thread_local] = ACTIONS(3179), - [anon_sym___thread] = ACTIONS(3179), - [anon_sym_const] = ACTIONS(3179), - [anon_sym_constexpr] = ACTIONS(3179), - [anon_sym_volatile] = ACTIONS(3179), - [anon_sym_restrict] = ACTIONS(3179), - [anon_sym___restrict__] = ACTIONS(3179), - [anon_sym__Atomic] = ACTIONS(3179), - [anon_sym__Noreturn] = ACTIONS(3179), - [anon_sym_noreturn] = ACTIONS(3179), - [anon_sym_mutable] = ACTIONS(3179), - [anon_sym_constinit] = ACTIONS(3179), - [anon_sym_consteval] = ACTIONS(3179), - [sym_primitive_type] = ACTIONS(3179), - [anon_sym_enum] = ACTIONS(3179), - [anon_sym_class] = ACTIONS(3179), - [anon_sym_struct] = ACTIONS(3179), - [anon_sym_union] = ACTIONS(3179), - [anon_sym_if] = ACTIONS(3179), - [anon_sym_else] = ACTIONS(3179), - [anon_sym_switch] = ACTIONS(3179), - [anon_sym_case] = ACTIONS(3179), - [anon_sym_default] = ACTIONS(3179), - [anon_sym_while] = ACTIONS(3179), - [anon_sym_do] = ACTIONS(3179), - [anon_sym_for] = ACTIONS(3179), - [anon_sym_return] = ACTIONS(3179), - [anon_sym_break] = ACTIONS(3179), - [anon_sym_continue] = ACTIONS(3179), - [anon_sym_goto] = ACTIONS(3179), - [anon_sym___try] = ACTIONS(3179), - [anon_sym___leave] = ACTIONS(3179), - [anon_sym_not] = ACTIONS(3179), - [anon_sym_compl] = ACTIONS(3179), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_sizeof] = ACTIONS(3179), - [anon_sym___alignof__] = ACTIONS(3179), - [anon_sym___alignof] = ACTIONS(3179), - [anon_sym__alignof] = ACTIONS(3179), - [anon_sym_alignof] = ACTIONS(3179), - [anon_sym__Alignof] = ACTIONS(3179), - [anon_sym_offsetof] = ACTIONS(3179), - [anon_sym__Generic] = ACTIONS(3179), - [anon_sym_asm] = ACTIONS(3179), - [anon_sym___asm__] = ACTIONS(3179), - [sym_number_literal] = ACTIONS(3181), - [anon_sym_L_SQUOTE] = ACTIONS(3181), - [anon_sym_u_SQUOTE] = ACTIONS(3181), - [anon_sym_U_SQUOTE] = ACTIONS(3181), - [anon_sym_u8_SQUOTE] = ACTIONS(3181), - [anon_sym_SQUOTE] = ACTIONS(3181), - [anon_sym_L_DQUOTE] = ACTIONS(3181), - [anon_sym_u_DQUOTE] = ACTIONS(3181), - [anon_sym_U_DQUOTE] = ACTIONS(3181), - [anon_sym_u8_DQUOTE] = ACTIONS(3181), - [anon_sym_DQUOTE] = ACTIONS(3181), - [sym_true] = ACTIONS(3179), - [sym_false] = ACTIONS(3179), - [anon_sym_NULL] = ACTIONS(3179), - [anon_sym_nullptr] = ACTIONS(3179), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3179), - [anon_sym_decltype] = ACTIONS(3179), - [anon_sym_virtual] = ACTIONS(3179), - [anon_sym_alignas] = ACTIONS(3179), - [anon_sym_explicit] = ACTIONS(3179), - [anon_sym_typename] = ACTIONS(3179), - [anon_sym_template] = ACTIONS(3179), - [anon_sym_operator] = ACTIONS(3179), - [anon_sym_try] = ACTIONS(3179), - [anon_sym_delete] = ACTIONS(3179), - [anon_sym_throw] = ACTIONS(3179), - [anon_sym_namespace] = ACTIONS(3179), - [anon_sym_using] = ACTIONS(3179), - [anon_sym_static_assert] = ACTIONS(3179), - [anon_sym_concept] = ACTIONS(3179), - [anon_sym_co_return] = ACTIONS(3179), - [anon_sym_co_yield] = ACTIONS(3179), - [anon_sym_R_DQUOTE] = ACTIONS(3181), - [anon_sym_LR_DQUOTE] = ACTIONS(3181), - [anon_sym_uR_DQUOTE] = ACTIONS(3181), - [anon_sym_UR_DQUOTE] = ACTIONS(3181), - [anon_sym_u8R_DQUOTE] = ACTIONS(3181), - [anon_sym_co_await] = ACTIONS(3179), - [anon_sym_new] = ACTIONS(3179), - [anon_sym_requires] = ACTIONS(3179), - [sym_this] = ACTIONS(3179), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3181), - [sym_semgrep_named_ellipsis] = ACTIONS(3181), + [687] = { + [sym_identifier] = ACTIONS(3513), + [aux_sym_preproc_include_token1] = ACTIONS(3513), + [aux_sym_preproc_def_token1] = ACTIONS(3513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3515), + [aux_sym_preproc_if_token1] = ACTIONS(3513), + [aux_sym_preproc_if_token2] = ACTIONS(3513), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3513), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3513), + [sym_preproc_directive] = ACTIONS(3513), + [anon_sym_LPAREN2] = ACTIONS(3515), + [anon_sym_BANG] = ACTIONS(3515), + [anon_sym_TILDE] = ACTIONS(3515), + [anon_sym_DASH] = ACTIONS(3513), + [anon_sym_PLUS] = ACTIONS(3513), + [anon_sym_STAR] = ACTIONS(3515), + [anon_sym_AMP_AMP] = ACTIONS(3515), + [anon_sym_AMP] = ACTIONS(3513), + [anon_sym_SEMI] = ACTIONS(3515), + [anon_sym___extension__] = ACTIONS(3513), + [anon_sym_typedef] = ACTIONS(3513), + [anon_sym_extern] = ACTIONS(3513), + [anon_sym___attribute__] = ACTIONS(3513), + [anon_sym_COLON_COLON] = ACTIONS(3515), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3515), + [anon_sym___declspec] = ACTIONS(3513), + [anon_sym___based] = ACTIONS(3513), + [anon_sym___cdecl] = ACTIONS(3513), + [anon_sym___clrcall] = ACTIONS(3513), + [anon_sym___stdcall] = ACTIONS(3513), + [anon_sym___fastcall] = ACTIONS(3513), + [anon_sym___thiscall] = ACTIONS(3513), + [anon_sym___vectorcall] = ACTIONS(3513), + [anon_sym_LBRACE] = ACTIONS(3515), + [anon_sym_signed] = ACTIONS(3513), + [anon_sym_unsigned] = ACTIONS(3513), + [anon_sym_long] = ACTIONS(3513), + [anon_sym_short] = ACTIONS(3513), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_static] = ACTIONS(3513), + [anon_sym_register] = ACTIONS(3513), + [anon_sym_inline] = ACTIONS(3513), + [anon_sym___inline] = ACTIONS(3513), + [anon_sym___inline__] = ACTIONS(3513), + [anon_sym___forceinline] = ACTIONS(3513), + [anon_sym_thread_local] = ACTIONS(3513), + [anon_sym___thread] = ACTIONS(3513), + [anon_sym_const] = ACTIONS(3513), + [anon_sym_constexpr] = ACTIONS(3513), + [anon_sym_volatile] = ACTIONS(3513), + [anon_sym_restrict] = ACTIONS(3513), + [anon_sym___restrict__] = ACTIONS(3513), + [anon_sym__Atomic] = ACTIONS(3513), + [anon_sym__Noreturn] = ACTIONS(3513), + [anon_sym_noreturn] = ACTIONS(3513), + [anon_sym_mutable] = ACTIONS(3513), + [anon_sym_constinit] = ACTIONS(3513), + [anon_sym_consteval] = ACTIONS(3513), + [sym_primitive_type] = ACTIONS(3513), + [anon_sym_enum] = ACTIONS(3513), + [anon_sym_class] = ACTIONS(3513), + [anon_sym_struct] = ACTIONS(3513), + [anon_sym_union] = ACTIONS(3513), + [anon_sym_if] = ACTIONS(3513), + [anon_sym_switch] = ACTIONS(3513), + [anon_sym_case] = ACTIONS(3513), + [anon_sym_default] = ACTIONS(3513), + [anon_sym_while] = ACTIONS(3513), + [anon_sym_do] = ACTIONS(3513), + [anon_sym_for] = ACTIONS(3513), + [anon_sym_return] = ACTIONS(3513), + [anon_sym_break] = ACTIONS(3513), + [anon_sym_continue] = ACTIONS(3513), + [anon_sym_goto] = ACTIONS(3513), + [anon_sym___try] = ACTIONS(3513), + [anon_sym___leave] = ACTIONS(3513), + [anon_sym_not] = ACTIONS(3513), + [anon_sym_compl] = ACTIONS(3513), + [anon_sym_DASH_DASH] = ACTIONS(3515), + [anon_sym_PLUS_PLUS] = ACTIONS(3515), + [anon_sym_sizeof] = ACTIONS(3513), + [anon_sym___alignof__] = ACTIONS(3513), + [anon_sym___alignof] = ACTIONS(3513), + [anon_sym__alignof] = ACTIONS(3513), + [anon_sym_alignof] = ACTIONS(3513), + [anon_sym__Alignof] = ACTIONS(3513), + [anon_sym_offsetof] = ACTIONS(3513), + [anon_sym__Generic] = ACTIONS(3513), + [anon_sym_asm] = ACTIONS(3513), + [anon_sym___asm__] = ACTIONS(3513), + [sym_number_literal] = ACTIONS(3515), + [anon_sym_L_SQUOTE] = ACTIONS(3515), + [anon_sym_u_SQUOTE] = ACTIONS(3515), + [anon_sym_U_SQUOTE] = ACTIONS(3515), + [anon_sym_u8_SQUOTE] = ACTIONS(3515), + [anon_sym_SQUOTE] = ACTIONS(3515), + [anon_sym_L_DQUOTE] = ACTIONS(3515), + [anon_sym_u_DQUOTE] = ACTIONS(3515), + [anon_sym_U_DQUOTE] = ACTIONS(3515), + [anon_sym_u8_DQUOTE] = ACTIONS(3515), + [anon_sym_DQUOTE] = ACTIONS(3515), + [sym_true] = ACTIONS(3513), + [sym_false] = ACTIONS(3513), + [anon_sym_NULL] = ACTIONS(3513), + [anon_sym_nullptr] = ACTIONS(3513), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3513), + [anon_sym_decltype] = ACTIONS(3513), + [anon_sym_virtual] = ACTIONS(3513), + [anon_sym_alignas] = ACTIONS(3513), + [anon_sym_explicit] = ACTIONS(3513), + [anon_sym_typename] = ACTIONS(3513), + [anon_sym_template] = ACTIONS(3513), + [anon_sym_operator] = ACTIONS(3513), + [anon_sym_try] = ACTIONS(3513), + [anon_sym_delete] = ACTIONS(3513), + [anon_sym_throw] = ACTIONS(3513), + [anon_sym_namespace] = ACTIONS(3513), + [anon_sym_using] = ACTIONS(3513), + [anon_sym_static_assert] = ACTIONS(3513), + [anon_sym_concept] = ACTIONS(3513), + [anon_sym_co_return] = ACTIONS(3513), + [anon_sym_co_yield] = ACTIONS(3513), + [anon_sym_R_DQUOTE] = ACTIONS(3515), + [anon_sym_LR_DQUOTE] = ACTIONS(3515), + [anon_sym_uR_DQUOTE] = ACTIONS(3515), + [anon_sym_UR_DQUOTE] = ACTIONS(3515), + [anon_sym_u8R_DQUOTE] = ACTIONS(3515), + [anon_sym_co_await] = ACTIONS(3513), + [anon_sym_new] = ACTIONS(3513), + [anon_sym_requires] = ACTIONS(3513), + [sym_this] = ACTIONS(3513), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3515), + [sym_semgrep_named_ellipsis] = ACTIONS(3515), }, - [645] = { - [sym_preproc_def] = STATE(1988), - [sym_preproc_function_def] = STATE(1988), - [sym_preproc_call] = STATE(1988), - [sym_preproc_if_in_field_declaration_list] = STATE(1988), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1988), - [sym_preproc_else_in_field_declaration_list] = STATE(9874), - [sym_preproc_elif_in_field_declaration_list] = STATE(9874), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(9874), - [sym_type_definition] = STATE(1988), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6897), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7690), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(647), - [sym_field_declaration] = STATE(1988), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(1988), - [sym_operator_cast] = STATE(8046), - [sym_inline_method_definition] = STATE(1988), - [sym_constructor_specifiers] = STATE(1934), - [sym_operator_cast_definition] = STATE(1988), - [sym_operator_cast_declaration] = STATE(1988), - [sym_constructor_or_destructor_definition] = STATE(1988), - [sym_constructor_or_destructor_declaration] = STATE(1988), - [sym_friend_declaration] = STATE(1988), - [sym_access_specifier] = STATE(9892), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(1988), - [sym_alias_declaration] = STATE(1988), - [sym_static_assert_declaration] = STATE(1988), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8046), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(647), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1934), - [sym_identifier] = ACTIONS(3682), + [688] = { + [sym_identifier] = ACTIONS(3684), + [aux_sym_preproc_include_token1] = ACTIONS(3684), [aux_sym_preproc_def_token1] = ACTIONS(3684), - [aux_sym_preproc_if_token1] = ACTIONS(3686), - [aux_sym_preproc_if_token2] = ACTIONS(3756), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [aux_sym_preproc_else_token1] = ACTIONS(3694), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3698), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3700), - [sym_preproc_directive] = ACTIONS(3702), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(3712), - [anon_sym_typedef] = ACTIONS(3714), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(3732), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(3734), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(3738), - [anon_sym_static_assert] = ACTIONS(3740), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3686), + [aux_sym_preproc_if_token1] = ACTIONS(3684), + [aux_sym_preproc_if_token2] = ACTIONS(3684), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3684), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3684), + [sym_preproc_directive] = ACTIONS(3684), + [anon_sym_LPAREN2] = ACTIONS(3686), + [anon_sym_BANG] = ACTIONS(3686), + [anon_sym_TILDE] = ACTIONS(3686), + [anon_sym_DASH] = ACTIONS(3684), + [anon_sym_PLUS] = ACTIONS(3684), + [anon_sym_STAR] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3686), + [anon_sym_AMP] = ACTIONS(3684), + [anon_sym_SEMI] = ACTIONS(3686), + [anon_sym___extension__] = ACTIONS(3684), + [anon_sym_typedef] = ACTIONS(3684), + [anon_sym_extern] = ACTIONS(3684), + [anon_sym___attribute__] = ACTIONS(3684), + [anon_sym_COLON_COLON] = ACTIONS(3686), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3686), + [anon_sym___declspec] = ACTIONS(3684), + [anon_sym___based] = ACTIONS(3684), + [anon_sym___cdecl] = ACTIONS(3684), + [anon_sym___clrcall] = ACTIONS(3684), + [anon_sym___stdcall] = ACTIONS(3684), + [anon_sym___fastcall] = ACTIONS(3684), + [anon_sym___thiscall] = ACTIONS(3684), + [anon_sym___vectorcall] = ACTIONS(3684), + [anon_sym_LBRACE] = ACTIONS(3686), + [anon_sym_signed] = ACTIONS(3684), + [anon_sym_unsigned] = ACTIONS(3684), + [anon_sym_long] = ACTIONS(3684), + [anon_sym_short] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3684), + [anon_sym_static] = ACTIONS(3684), + [anon_sym_register] = ACTIONS(3684), + [anon_sym_inline] = ACTIONS(3684), + [anon_sym___inline] = ACTIONS(3684), + [anon_sym___inline__] = ACTIONS(3684), + [anon_sym___forceinline] = ACTIONS(3684), + [anon_sym_thread_local] = ACTIONS(3684), + [anon_sym___thread] = ACTIONS(3684), + [anon_sym_const] = ACTIONS(3684), + [anon_sym_constexpr] = ACTIONS(3684), + [anon_sym_volatile] = ACTIONS(3684), + [anon_sym_restrict] = ACTIONS(3684), + [anon_sym___restrict__] = ACTIONS(3684), + [anon_sym__Atomic] = ACTIONS(3684), + [anon_sym__Noreturn] = ACTIONS(3684), + [anon_sym_noreturn] = ACTIONS(3684), + [anon_sym_mutable] = ACTIONS(3684), + [anon_sym_constinit] = ACTIONS(3684), + [anon_sym_consteval] = ACTIONS(3684), + [sym_primitive_type] = ACTIONS(3684), + [anon_sym_enum] = ACTIONS(3684), + [anon_sym_class] = ACTIONS(3684), + [anon_sym_struct] = ACTIONS(3684), + [anon_sym_union] = ACTIONS(3684), + [anon_sym_if] = ACTIONS(3684), + [anon_sym_switch] = ACTIONS(3684), + [anon_sym_case] = ACTIONS(3684), + [anon_sym_default] = ACTIONS(3684), + [anon_sym_while] = ACTIONS(3684), + [anon_sym_do] = ACTIONS(3684), + [anon_sym_for] = ACTIONS(3684), + [anon_sym_return] = ACTIONS(3684), + [anon_sym_break] = ACTIONS(3684), + [anon_sym_continue] = ACTIONS(3684), + [anon_sym_goto] = ACTIONS(3684), + [anon_sym___try] = ACTIONS(3684), + [anon_sym___leave] = ACTIONS(3684), + [anon_sym_not] = ACTIONS(3684), + [anon_sym_compl] = ACTIONS(3684), + [anon_sym_DASH_DASH] = ACTIONS(3686), + [anon_sym_PLUS_PLUS] = ACTIONS(3686), + [anon_sym_sizeof] = ACTIONS(3684), + [anon_sym___alignof__] = ACTIONS(3684), + [anon_sym___alignof] = ACTIONS(3684), + [anon_sym__alignof] = ACTIONS(3684), + [anon_sym_alignof] = ACTIONS(3684), + [anon_sym__Alignof] = ACTIONS(3684), + [anon_sym_offsetof] = ACTIONS(3684), + [anon_sym__Generic] = ACTIONS(3684), + [anon_sym_asm] = ACTIONS(3684), + [anon_sym___asm__] = ACTIONS(3684), + [sym_number_literal] = ACTIONS(3686), + [anon_sym_L_SQUOTE] = ACTIONS(3686), + [anon_sym_u_SQUOTE] = ACTIONS(3686), + [anon_sym_U_SQUOTE] = ACTIONS(3686), + [anon_sym_u8_SQUOTE] = ACTIONS(3686), + [anon_sym_SQUOTE] = ACTIONS(3686), + [anon_sym_L_DQUOTE] = ACTIONS(3686), + [anon_sym_u_DQUOTE] = ACTIONS(3686), + [anon_sym_U_DQUOTE] = ACTIONS(3686), + [anon_sym_u8_DQUOTE] = ACTIONS(3686), + [anon_sym_DQUOTE] = ACTIONS(3686), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [anon_sym_NULL] = ACTIONS(3684), + [anon_sym_nullptr] = ACTIONS(3684), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3684), + [anon_sym_decltype] = ACTIONS(3684), + [anon_sym_virtual] = ACTIONS(3684), + [anon_sym_alignas] = ACTIONS(3684), + [anon_sym_explicit] = ACTIONS(3684), + [anon_sym_typename] = ACTIONS(3684), + [anon_sym_template] = ACTIONS(3684), + [anon_sym_operator] = ACTIONS(3684), + [anon_sym_try] = ACTIONS(3684), + [anon_sym_delete] = ACTIONS(3684), + [anon_sym_throw] = ACTIONS(3684), + [anon_sym_namespace] = ACTIONS(3684), + [anon_sym_using] = ACTIONS(3684), + [anon_sym_static_assert] = ACTIONS(3684), + [anon_sym_concept] = ACTIONS(3684), + [anon_sym_co_return] = ACTIONS(3684), + [anon_sym_co_yield] = ACTIONS(3684), + [anon_sym_R_DQUOTE] = ACTIONS(3686), + [anon_sym_LR_DQUOTE] = ACTIONS(3686), + [anon_sym_uR_DQUOTE] = ACTIONS(3686), + [anon_sym_UR_DQUOTE] = ACTIONS(3686), + [anon_sym_u8R_DQUOTE] = ACTIONS(3686), + [anon_sym_co_await] = ACTIONS(3684), + [anon_sym_new] = ACTIONS(3684), + [anon_sym_requires] = ACTIONS(3684), + [sym_this] = ACTIONS(3684), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3686), + [sym_semgrep_named_ellipsis] = ACTIONS(3686), }, - [646] = { - [sym_preproc_def] = STATE(1988), - [sym_preproc_function_def] = STATE(1988), - [sym_preproc_call] = STATE(1988), - [sym_preproc_if_in_field_declaration_list] = STATE(1988), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1988), - [sym_preproc_else_in_field_declaration_list] = STATE(9884), - [sym_preproc_elif_in_field_declaration_list] = STATE(9884), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(9884), - [sym_type_definition] = STATE(1988), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6897), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7690), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(648), - [sym_field_declaration] = STATE(1988), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(1988), - [sym_operator_cast] = STATE(8046), - [sym_inline_method_definition] = STATE(1988), - [sym_constructor_specifiers] = STATE(1934), - [sym_operator_cast_definition] = STATE(1988), - [sym_operator_cast_declaration] = STATE(1988), - [sym_constructor_or_destructor_definition] = STATE(1988), - [sym_constructor_or_destructor_declaration] = STATE(1988), - [sym_friend_declaration] = STATE(1988), - [sym_access_specifier] = STATE(9892), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(1988), - [sym_alias_declaration] = STATE(1988), - [sym_static_assert_declaration] = STATE(1988), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8046), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(648), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1934), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(3684), - [aux_sym_preproc_if_token1] = ACTIONS(3686), - [aux_sym_preproc_if_token2] = ACTIONS(3758), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [aux_sym_preproc_else_token1] = ACTIONS(3694), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3698), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3700), - [sym_preproc_directive] = ACTIONS(3702), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(3712), - [anon_sym_typedef] = ACTIONS(3714), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(3732), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(3734), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(3738), - [anon_sym_static_assert] = ACTIONS(3740), + [689] = { + [sym_identifier] = ACTIONS(3529), + [aux_sym_preproc_include_token1] = ACTIONS(3529), + [aux_sym_preproc_def_token1] = ACTIONS(3529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3531), + [aux_sym_preproc_if_token1] = ACTIONS(3529), + [aux_sym_preproc_if_token2] = ACTIONS(3529), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3529), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3529), + [sym_preproc_directive] = ACTIONS(3529), + [anon_sym_LPAREN2] = ACTIONS(3531), + [anon_sym_BANG] = ACTIONS(3531), + [anon_sym_TILDE] = ACTIONS(3531), + [anon_sym_DASH] = ACTIONS(3529), + [anon_sym_PLUS] = ACTIONS(3529), + [anon_sym_STAR] = ACTIONS(3531), + [anon_sym_AMP_AMP] = ACTIONS(3531), + [anon_sym_AMP] = ACTIONS(3529), + [anon_sym_SEMI] = ACTIONS(3531), + [anon_sym___extension__] = ACTIONS(3529), + [anon_sym_typedef] = ACTIONS(3529), + [anon_sym_extern] = ACTIONS(3529), + [anon_sym___attribute__] = ACTIONS(3529), + [anon_sym_COLON_COLON] = ACTIONS(3531), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3531), + [anon_sym___declspec] = ACTIONS(3529), + [anon_sym___based] = ACTIONS(3529), + [anon_sym___cdecl] = ACTIONS(3529), + [anon_sym___clrcall] = ACTIONS(3529), + [anon_sym___stdcall] = ACTIONS(3529), + [anon_sym___fastcall] = ACTIONS(3529), + [anon_sym___thiscall] = ACTIONS(3529), + [anon_sym___vectorcall] = ACTIONS(3529), + [anon_sym_LBRACE] = ACTIONS(3531), + [anon_sym_signed] = ACTIONS(3529), + [anon_sym_unsigned] = ACTIONS(3529), + [anon_sym_long] = ACTIONS(3529), + [anon_sym_short] = ACTIONS(3529), + [anon_sym_LBRACK] = ACTIONS(3529), + [anon_sym_static] = ACTIONS(3529), + [anon_sym_register] = ACTIONS(3529), + [anon_sym_inline] = ACTIONS(3529), + [anon_sym___inline] = ACTIONS(3529), + [anon_sym___inline__] = ACTIONS(3529), + [anon_sym___forceinline] = ACTIONS(3529), + [anon_sym_thread_local] = ACTIONS(3529), + [anon_sym___thread] = ACTIONS(3529), + [anon_sym_const] = ACTIONS(3529), + [anon_sym_constexpr] = ACTIONS(3529), + [anon_sym_volatile] = ACTIONS(3529), + [anon_sym_restrict] = ACTIONS(3529), + [anon_sym___restrict__] = ACTIONS(3529), + [anon_sym__Atomic] = ACTIONS(3529), + [anon_sym__Noreturn] = ACTIONS(3529), + [anon_sym_noreturn] = ACTIONS(3529), + [anon_sym_mutable] = ACTIONS(3529), + [anon_sym_constinit] = ACTIONS(3529), + [anon_sym_consteval] = ACTIONS(3529), + [sym_primitive_type] = ACTIONS(3529), + [anon_sym_enum] = ACTIONS(3529), + [anon_sym_class] = ACTIONS(3529), + [anon_sym_struct] = ACTIONS(3529), + [anon_sym_union] = ACTIONS(3529), + [anon_sym_if] = ACTIONS(3529), + [anon_sym_switch] = ACTIONS(3529), + [anon_sym_case] = ACTIONS(3529), + [anon_sym_default] = ACTIONS(3529), + [anon_sym_while] = ACTIONS(3529), + [anon_sym_do] = ACTIONS(3529), + [anon_sym_for] = ACTIONS(3529), + [anon_sym_return] = ACTIONS(3529), + [anon_sym_break] = ACTIONS(3529), + [anon_sym_continue] = ACTIONS(3529), + [anon_sym_goto] = ACTIONS(3529), + [anon_sym___try] = ACTIONS(3529), + [anon_sym___leave] = ACTIONS(3529), + [anon_sym_not] = ACTIONS(3529), + [anon_sym_compl] = ACTIONS(3529), + [anon_sym_DASH_DASH] = ACTIONS(3531), + [anon_sym_PLUS_PLUS] = ACTIONS(3531), + [anon_sym_sizeof] = ACTIONS(3529), + [anon_sym___alignof__] = ACTIONS(3529), + [anon_sym___alignof] = ACTIONS(3529), + [anon_sym__alignof] = ACTIONS(3529), + [anon_sym_alignof] = ACTIONS(3529), + [anon_sym__Alignof] = ACTIONS(3529), + [anon_sym_offsetof] = ACTIONS(3529), + [anon_sym__Generic] = ACTIONS(3529), + [anon_sym_asm] = ACTIONS(3529), + [anon_sym___asm__] = ACTIONS(3529), + [sym_number_literal] = ACTIONS(3531), + [anon_sym_L_SQUOTE] = ACTIONS(3531), + [anon_sym_u_SQUOTE] = ACTIONS(3531), + [anon_sym_U_SQUOTE] = ACTIONS(3531), + [anon_sym_u8_SQUOTE] = ACTIONS(3531), + [anon_sym_SQUOTE] = ACTIONS(3531), + [anon_sym_L_DQUOTE] = ACTIONS(3531), + [anon_sym_u_DQUOTE] = ACTIONS(3531), + [anon_sym_U_DQUOTE] = ACTIONS(3531), + [anon_sym_u8_DQUOTE] = ACTIONS(3531), + [anon_sym_DQUOTE] = ACTIONS(3531), + [sym_true] = ACTIONS(3529), + [sym_false] = ACTIONS(3529), + [anon_sym_NULL] = ACTIONS(3529), + [anon_sym_nullptr] = ACTIONS(3529), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3529), + [anon_sym_decltype] = ACTIONS(3529), + [anon_sym_virtual] = ACTIONS(3529), + [anon_sym_alignas] = ACTIONS(3529), + [anon_sym_explicit] = ACTIONS(3529), + [anon_sym_typename] = ACTIONS(3529), + [anon_sym_template] = ACTIONS(3529), + [anon_sym_operator] = ACTIONS(3529), + [anon_sym_try] = ACTIONS(3529), + [anon_sym_delete] = ACTIONS(3529), + [anon_sym_throw] = ACTIONS(3529), + [anon_sym_namespace] = ACTIONS(3529), + [anon_sym_using] = ACTIONS(3529), + [anon_sym_static_assert] = ACTIONS(3529), + [anon_sym_concept] = ACTIONS(3529), + [anon_sym_co_return] = ACTIONS(3529), + [anon_sym_co_yield] = ACTIONS(3529), + [anon_sym_R_DQUOTE] = ACTIONS(3531), + [anon_sym_LR_DQUOTE] = ACTIONS(3531), + [anon_sym_uR_DQUOTE] = ACTIONS(3531), + [anon_sym_UR_DQUOTE] = ACTIONS(3531), + [anon_sym_u8R_DQUOTE] = ACTIONS(3531), + [anon_sym_co_await] = ACTIONS(3529), + [anon_sym_new] = ACTIONS(3529), + [anon_sym_requires] = ACTIONS(3529), + [sym_this] = ACTIONS(3529), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3531), + [sym_semgrep_named_ellipsis] = ACTIONS(3531), }, - [647] = { - [sym_preproc_def] = STATE(1988), - [sym_preproc_function_def] = STATE(1988), - [sym_preproc_call] = STATE(1988), - [sym_preproc_if_in_field_declaration_list] = STATE(1988), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1988), - [sym_preproc_else_in_field_declaration_list] = STATE(9960), - [sym_preproc_elif_in_field_declaration_list] = STATE(9960), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(9960), - [sym_type_definition] = STATE(1988), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6897), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7690), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(820), - [sym_field_declaration] = STATE(1988), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(1988), - [sym_operator_cast] = STATE(8046), - [sym_inline_method_definition] = STATE(1988), - [sym_constructor_specifiers] = STATE(1934), - [sym_operator_cast_definition] = STATE(1988), - [sym_operator_cast_declaration] = STATE(1988), - [sym_constructor_or_destructor_definition] = STATE(1988), - [sym_constructor_or_destructor_declaration] = STATE(1988), - [sym_friend_declaration] = STATE(1988), - [sym_access_specifier] = STATE(9892), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(1988), - [sym_alias_declaration] = STATE(1988), - [sym_static_assert_declaration] = STATE(1988), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8046), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(820), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1934), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(3684), - [aux_sym_preproc_if_token1] = ACTIONS(3686), - [aux_sym_preproc_if_token2] = ACTIONS(3760), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [aux_sym_preproc_else_token1] = ACTIONS(3694), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3698), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3700), - [sym_preproc_directive] = ACTIONS(3702), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(3712), - [anon_sym_typedef] = ACTIONS(3714), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(3732), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(3734), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(3738), - [anon_sym_static_assert] = ACTIONS(3740), + [690] = { + [sym_identifier] = ACTIONS(3533), + [aux_sym_preproc_include_token1] = ACTIONS(3533), + [aux_sym_preproc_def_token1] = ACTIONS(3533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3535), + [aux_sym_preproc_if_token1] = ACTIONS(3533), + [aux_sym_preproc_if_token2] = ACTIONS(3533), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3533), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3533), + [sym_preproc_directive] = ACTIONS(3533), + [anon_sym_LPAREN2] = ACTIONS(3535), + [anon_sym_BANG] = ACTIONS(3535), + [anon_sym_TILDE] = ACTIONS(3535), + [anon_sym_DASH] = ACTIONS(3533), + [anon_sym_PLUS] = ACTIONS(3533), + [anon_sym_STAR] = ACTIONS(3535), + [anon_sym_AMP_AMP] = ACTIONS(3535), + [anon_sym_AMP] = ACTIONS(3533), + [anon_sym_SEMI] = ACTIONS(3535), + [anon_sym___extension__] = ACTIONS(3533), + [anon_sym_typedef] = ACTIONS(3533), + [anon_sym_extern] = ACTIONS(3533), + [anon_sym___attribute__] = ACTIONS(3533), + [anon_sym_COLON_COLON] = ACTIONS(3535), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3535), + [anon_sym___declspec] = ACTIONS(3533), + [anon_sym___based] = ACTIONS(3533), + [anon_sym___cdecl] = ACTIONS(3533), + [anon_sym___clrcall] = ACTIONS(3533), + [anon_sym___stdcall] = ACTIONS(3533), + [anon_sym___fastcall] = ACTIONS(3533), + [anon_sym___thiscall] = ACTIONS(3533), + [anon_sym___vectorcall] = ACTIONS(3533), + [anon_sym_LBRACE] = ACTIONS(3535), + [anon_sym_signed] = ACTIONS(3533), + [anon_sym_unsigned] = ACTIONS(3533), + [anon_sym_long] = ACTIONS(3533), + [anon_sym_short] = ACTIONS(3533), + [anon_sym_LBRACK] = ACTIONS(3533), + [anon_sym_static] = ACTIONS(3533), + [anon_sym_register] = ACTIONS(3533), + [anon_sym_inline] = ACTIONS(3533), + [anon_sym___inline] = ACTIONS(3533), + [anon_sym___inline__] = ACTIONS(3533), + [anon_sym___forceinline] = ACTIONS(3533), + [anon_sym_thread_local] = ACTIONS(3533), + [anon_sym___thread] = ACTIONS(3533), + [anon_sym_const] = ACTIONS(3533), + [anon_sym_constexpr] = ACTIONS(3533), + [anon_sym_volatile] = ACTIONS(3533), + [anon_sym_restrict] = ACTIONS(3533), + [anon_sym___restrict__] = ACTIONS(3533), + [anon_sym__Atomic] = ACTIONS(3533), + [anon_sym__Noreturn] = ACTIONS(3533), + [anon_sym_noreturn] = ACTIONS(3533), + [anon_sym_mutable] = ACTIONS(3533), + [anon_sym_constinit] = ACTIONS(3533), + [anon_sym_consteval] = ACTIONS(3533), + [sym_primitive_type] = ACTIONS(3533), + [anon_sym_enum] = ACTIONS(3533), + [anon_sym_class] = ACTIONS(3533), + [anon_sym_struct] = ACTIONS(3533), + [anon_sym_union] = ACTIONS(3533), + [anon_sym_if] = ACTIONS(3533), + [anon_sym_switch] = ACTIONS(3533), + [anon_sym_case] = ACTIONS(3533), + [anon_sym_default] = ACTIONS(3533), + [anon_sym_while] = ACTIONS(3533), + [anon_sym_do] = ACTIONS(3533), + [anon_sym_for] = ACTIONS(3533), + [anon_sym_return] = ACTIONS(3533), + [anon_sym_break] = ACTIONS(3533), + [anon_sym_continue] = ACTIONS(3533), + [anon_sym_goto] = ACTIONS(3533), + [anon_sym___try] = ACTIONS(3533), + [anon_sym___leave] = ACTIONS(3533), + [anon_sym_not] = ACTIONS(3533), + [anon_sym_compl] = ACTIONS(3533), + [anon_sym_DASH_DASH] = ACTIONS(3535), + [anon_sym_PLUS_PLUS] = ACTIONS(3535), + [anon_sym_sizeof] = ACTIONS(3533), + [anon_sym___alignof__] = ACTIONS(3533), + [anon_sym___alignof] = ACTIONS(3533), + [anon_sym__alignof] = ACTIONS(3533), + [anon_sym_alignof] = ACTIONS(3533), + [anon_sym__Alignof] = ACTIONS(3533), + [anon_sym_offsetof] = ACTIONS(3533), + [anon_sym__Generic] = ACTIONS(3533), + [anon_sym_asm] = ACTIONS(3533), + [anon_sym___asm__] = ACTIONS(3533), + [sym_number_literal] = ACTIONS(3535), + [anon_sym_L_SQUOTE] = ACTIONS(3535), + [anon_sym_u_SQUOTE] = ACTIONS(3535), + [anon_sym_U_SQUOTE] = ACTIONS(3535), + [anon_sym_u8_SQUOTE] = ACTIONS(3535), + [anon_sym_SQUOTE] = ACTIONS(3535), + [anon_sym_L_DQUOTE] = ACTIONS(3535), + [anon_sym_u_DQUOTE] = ACTIONS(3535), + [anon_sym_U_DQUOTE] = ACTIONS(3535), + [anon_sym_u8_DQUOTE] = ACTIONS(3535), + [anon_sym_DQUOTE] = ACTIONS(3535), + [sym_true] = ACTIONS(3533), + [sym_false] = ACTIONS(3533), + [anon_sym_NULL] = ACTIONS(3533), + [anon_sym_nullptr] = ACTIONS(3533), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3533), + [anon_sym_decltype] = ACTIONS(3533), + [anon_sym_virtual] = ACTIONS(3533), + [anon_sym_alignas] = ACTIONS(3533), + [anon_sym_explicit] = ACTIONS(3533), + [anon_sym_typename] = ACTIONS(3533), + [anon_sym_template] = ACTIONS(3533), + [anon_sym_operator] = ACTIONS(3533), + [anon_sym_try] = ACTIONS(3533), + [anon_sym_delete] = ACTIONS(3533), + [anon_sym_throw] = ACTIONS(3533), + [anon_sym_namespace] = ACTIONS(3533), + [anon_sym_using] = ACTIONS(3533), + [anon_sym_static_assert] = ACTIONS(3533), + [anon_sym_concept] = ACTIONS(3533), + [anon_sym_co_return] = ACTIONS(3533), + [anon_sym_co_yield] = ACTIONS(3533), + [anon_sym_R_DQUOTE] = ACTIONS(3535), + [anon_sym_LR_DQUOTE] = ACTIONS(3535), + [anon_sym_uR_DQUOTE] = ACTIONS(3535), + [anon_sym_UR_DQUOTE] = ACTIONS(3535), + [anon_sym_u8R_DQUOTE] = ACTIONS(3535), + [anon_sym_co_await] = ACTIONS(3533), + [anon_sym_new] = ACTIONS(3533), + [anon_sym_requires] = ACTIONS(3533), + [sym_this] = ACTIONS(3533), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3535), + [sym_semgrep_named_ellipsis] = ACTIONS(3535), }, - [648] = { - [sym_preproc_def] = STATE(1988), - [sym_preproc_function_def] = STATE(1988), - [sym_preproc_call] = STATE(1988), - [sym_preproc_if_in_field_declaration_list] = STATE(1988), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1988), - [sym_preproc_else_in_field_declaration_list] = STATE(9967), - [sym_preproc_elif_in_field_declaration_list] = STATE(9967), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(9967), - [sym_type_definition] = STATE(1988), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6897), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7690), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(820), - [sym_field_declaration] = STATE(1988), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(1988), - [sym_operator_cast] = STATE(8046), - [sym_inline_method_definition] = STATE(1988), - [sym_constructor_specifiers] = STATE(1934), - [sym_operator_cast_definition] = STATE(1988), - [sym_operator_cast_declaration] = STATE(1988), - [sym_constructor_or_destructor_definition] = STATE(1988), - [sym_constructor_or_destructor_declaration] = STATE(1988), - [sym_friend_declaration] = STATE(1988), - [sym_access_specifier] = STATE(9892), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(1988), - [sym_alias_declaration] = STATE(1988), - [sym_static_assert_declaration] = STATE(1988), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8046), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(820), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1934), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(3684), - [aux_sym_preproc_if_token1] = ACTIONS(3686), - [aux_sym_preproc_if_token2] = ACTIONS(3762), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [aux_sym_preproc_else_token1] = ACTIONS(3694), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3698), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3700), - [sym_preproc_directive] = ACTIONS(3702), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(3712), - [anon_sym_typedef] = ACTIONS(3714), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(3732), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(3734), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(3738), - [anon_sym_static_assert] = ACTIONS(3740), + [691] = { + [ts_builtin_sym_end] = ACTIONS(2353), + [sym_identifier] = ACTIONS(2355), + [aux_sym_preproc_include_token1] = ACTIONS(2355), + [aux_sym_preproc_def_token1] = ACTIONS(2355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2353), + [anon_sym_COMMA] = ACTIONS(3211), + [anon_sym_RPAREN] = ACTIONS(3211), + [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(2353), + [anon_sym_BANG] = ACTIONS(2353), + [anon_sym_TILDE] = ACTIONS(2353), + [anon_sym_DASH] = ACTIONS(2355), + [anon_sym_PLUS] = ACTIONS(2355), + [anon_sym_STAR] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(2353), + [anon_sym_AMP] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(3211), + [anon_sym___extension__] = ACTIONS(2355), + [anon_sym_typedef] = ACTIONS(2355), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym___attribute__] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(2353), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), + [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(2353), + [anon_sym_signed] = ACTIONS(2355), + [anon_sym_unsigned] = ACTIONS(2355), + [anon_sym_long] = ACTIONS(2355), + [anon_sym_short] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_static] = ACTIONS(2355), + [anon_sym_register] = ACTIONS(2355), + [anon_sym_inline] = ACTIONS(2355), + [anon_sym___inline] = ACTIONS(2355), + [anon_sym___inline__] = ACTIONS(2355), + [anon_sym___forceinline] = ACTIONS(2355), + [anon_sym_thread_local] = ACTIONS(2355), + [anon_sym___thread] = ACTIONS(2355), + [anon_sym_const] = ACTIONS(2355), + [anon_sym_constexpr] = ACTIONS(2355), + [anon_sym_volatile] = ACTIONS(2355), + [anon_sym_restrict] = ACTIONS(2355), + [anon_sym___restrict__] = ACTIONS(2355), + [anon_sym__Atomic] = ACTIONS(2355), + [anon_sym__Noreturn] = ACTIONS(2355), + [anon_sym_noreturn] = ACTIONS(2355), + [anon_sym_mutable] = ACTIONS(2355), + [anon_sym_constinit] = ACTIONS(2355), + [anon_sym_consteval] = 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_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_not] = ACTIONS(2355), + [anon_sym_compl] = ACTIONS(2355), + [anon_sym_DASH_DASH] = ACTIONS(2353), + [anon_sym_PLUS_PLUS] = ACTIONS(2353), + [anon_sym_sizeof] = ACTIONS(2355), + [anon_sym___alignof__] = ACTIONS(2355), + [anon_sym___alignof] = ACTIONS(2355), + [anon_sym__alignof] = ACTIONS(2355), + [anon_sym_alignof] = ACTIONS(2355), + [anon_sym__Alignof] = ACTIONS(2355), + [anon_sym_offsetof] = ACTIONS(2355), + [anon_sym__Generic] = ACTIONS(2355), + [anon_sym_asm] = ACTIONS(2355), + [anon_sym___asm__] = ACTIONS(2355), + [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(2355), + [sym_false] = ACTIONS(2355), + [anon_sym_NULL] = ACTIONS(2355), + [anon_sym_nullptr] = ACTIONS(2355), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2355), + [anon_sym_decltype] = ACTIONS(2355), + [anon_sym_virtual] = ACTIONS(2355), + [anon_sym_alignas] = 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_R_DQUOTE] = ACTIONS(2353), + [anon_sym_LR_DQUOTE] = ACTIONS(2353), + [anon_sym_uR_DQUOTE] = ACTIONS(2353), + [anon_sym_UR_DQUOTE] = ACTIONS(2353), + [anon_sym_u8R_DQUOTE] = ACTIONS(2353), + [anon_sym_co_await] = ACTIONS(2355), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_requires] = ACTIONS(2355), + [sym_this] = ACTIONS(2355), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2353), + [sym_semgrep_named_ellipsis] = ACTIONS(2353), }, - [649] = { - [ts_builtin_sym_end] = ACTIONS(3199), - [sym_identifier] = ACTIONS(3197), - [aux_sym_preproc_include_token1] = ACTIONS(3197), - [aux_sym_preproc_def_token1] = ACTIONS(3197), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), - [aux_sym_preproc_if_token1] = ACTIONS(3197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3197), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3197), - [sym_preproc_directive] = ACTIONS(3197), - [anon_sym_LPAREN2] = ACTIONS(3199), - [anon_sym_BANG] = ACTIONS(3199), - [anon_sym_TILDE] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3199), - [anon_sym_AMP_AMP] = ACTIONS(3199), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_SEMI] = ACTIONS(3199), - [anon_sym___extension__] = ACTIONS(3197), - [anon_sym_typedef] = ACTIONS(3197), - [anon_sym_extern] = ACTIONS(3197), - [anon_sym___attribute__] = ACTIONS(3197), - [anon_sym_COLON_COLON] = ACTIONS(3199), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3199), - [anon_sym___declspec] = ACTIONS(3197), - [anon_sym___based] = ACTIONS(3197), - [anon_sym___cdecl] = ACTIONS(3197), - [anon_sym___clrcall] = ACTIONS(3197), - [anon_sym___stdcall] = ACTIONS(3197), - [anon_sym___fastcall] = ACTIONS(3197), - [anon_sym___thiscall] = ACTIONS(3197), - [anon_sym___vectorcall] = ACTIONS(3197), - [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_signed] = ACTIONS(3197), - [anon_sym_unsigned] = ACTIONS(3197), - [anon_sym_long] = ACTIONS(3197), - [anon_sym_short] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_static] = ACTIONS(3197), - [anon_sym_register] = ACTIONS(3197), - [anon_sym_inline] = ACTIONS(3197), - [anon_sym___inline] = ACTIONS(3197), - [anon_sym___inline__] = ACTIONS(3197), - [anon_sym___forceinline] = ACTIONS(3197), - [anon_sym_thread_local] = ACTIONS(3197), - [anon_sym___thread] = ACTIONS(3197), - [anon_sym_const] = ACTIONS(3197), - [anon_sym_constexpr] = ACTIONS(3197), - [anon_sym_volatile] = ACTIONS(3197), - [anon_sym_restrict] = ACTIONS(3197), - [anon_sym___restrict__] = ACTIONS(3197), - [anon_sym__Atomic] = ACTIONS(3197), - [anon_sym__Noreturn] = ACTIONS(3197), - [anon_sym_noreturn] = ACTIONS(3197), - [anon_sym_mutable] = ACTIONS(3197), - [anon_sym_constinit] = ACTIONS(3197), - [anon_sym_consteval] = ACTIONS(3197), - [sym_primitive_type] = ACTIONS(3197), - [anon_sym_enum] = ACTIONS(3197), - [anon_sym_class] = ACTIONS(3197), - [anon_sym_struct] = ACTIONS(3197), - [anon_sym_union] = ACTIONS(3197), - [anon_sym_if] = ACTIONS(3197), - [anon_sym_else] = ACTIONS(3197), - [anon_sym_switch] = ACTIONS(3197), - [anon_sym_case] = ACTIONS(3197), - [anon_sym_default] = ACTIONS(3197), - [anon_sym_while] = ACTIONS(3197), - [anon_sym_do] = ACTIONS(3197), - [anon_sym_for] = ACTIONS(3197), - [anon_sym_return] = ACTIONS(3197), - [anon_sym_break] = ACTIONS(3197), - [anon_sym_continue] = ACTIONS(3197), - [anon_sym_goto] = ACTIONS(3197), - [anon_sym___try] = ACTIONS(3197), - [anon_sym___leave] = ACTIONS(3197), - [anon_sym_not] = ACTIONS(3197), - [anon_sym_compl] = ACTIONS(3197), - [anon_sym_DASH_DASH] = ACTIONS(3199), - [anon_sym_PLUS_PLUS] = ACTIONS(3199), - [anon_sym_sizeof] = ACTIONS(3197), - [anon_sym___alignof__] = ACTIONS(3197), - [anon_sym___alignof] = ACTIONS(3197), - [anon_sym__alignof] = ACTIONS(3197), - [anon_sym_alignof] = ACTIONS(3197), - [anon_sym__Alignof] = ACTIONS(3197), - [anon_sym_offsetof] = ACTIONS(3197), - [anon_sym__Generic] = ACTIONS(3197), - [anon_sym_asm] = ACTIONS(3197), - [anon_sym___asm__] = ACTIONS(3197), - [sym_number_literal] = ACTIONS(3199), - [anon_sym_L_SQUOTE] = ACTIONS(3199), - [anon_sym_u_SQUOTE] = ACTIONS(3199), - [anon_sym_U_SQUOTE] = ACTIONS(3199), - [anon_sym_u8_SQUOTE] = ACTIONS(3199), - [anon_sym_SQUOTE] = ACTIONS(3199), - [anon_sym_L_DQUOTE] = ACTIONS(3199), - [anon_sym_u_DQUOTE] = ACTIONS(3199), - [anon_sym_U_DQUOTE] = ACTIONS(3199), - [anon_sym_u8_DQUOTE] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym_true] = ACTIONS(3197), - [sym_false] = ACTIONS(3197), - [anon_sym_NULL] = ACTIONS(3197), - [anon_sym_nullptr] = ACTIONS(3197), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3197), - [anon_sym_decltype] = ACTIONS(3197), - [anon_sym_virtual] = ACTIONS(3197), - [anon_sym_alignas] = ACTIONS(3197), - [anon_sym_explicit] = ACTIONS(3197), - [anon_sym_typename] = ACTIONS(3197), - [anon_sym_template] = ACTIONS(3197), - [anon_sym_operator] = ACTIONS(3197), - [anon_sym_try] = ACTIONS(3197), - [anon_sym_delete] = ACTIONS(3197), - [anon_sym_throw] = ACTIONS(3197), - [anon_sym_namespace] = ACTIONS(3197), - [anon_sym_using] = ACTIONS(3197), - [anon_sym_static_assert] = ACTIONS(3197), - [anon_sym_concept] = ACTIONS(3197), - [anon_sym_co_return] = ACTIONS(3197), - [anon_sym_co_yield] = ACTIONS(3197), - [anon_sym_R_DQUOTE] = ACTIONS(3199), - [anon_sym_LR_DQUOTE] = ACTIONS(3199), - [anon_sym_uR_DQUOTE] = ACTIONS(3199), - [anon_sym_UR_DQUOTE] = ACTIONS(3199), - [anon_sym_u8R_DQUOTE] = ACTIONS(3199), - [anon_sym_co_await] = ACTIONS(3197), - [anon_sym_new] = ACTIONS(3197), - [anon_sym_requires] = ACTIONS(3197), - [sym_this] = ACTIONS(3197), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3199), - [sym_semgrep_named_ellipsis] = ACTIONS(3199), + [692] = { + [sym_identifier] = ACTIONS(3479), + [aux_sym_preproc_include_token1] = ACTIONS(3479), + [aux_sym_preproc_def_token1] = ACTIONS(3479), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3481), + [aux_sym_preproc_if_token1] = ACTIONS(3479), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3479), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3479), + [sym_preproc_directive] = ACTIONS(3479), + [anon_sym_LPAREN2] = ACTIONS(3481), + [anon_sym_BANG] = ACTIONS(3481), + [anon_sym_TILDE] = ACTIONS(3481), + [anon_sym_DASH] = ACTIONS(3479), + [anon_sym_PLUS] = ACTIONS(3479), + [anon_sym_STAR] = ACTIONS(3481), + [anon_sym_AMP_AMP] = ACTIONS(3481), + [anon_sym_AMP] = ACTIONS(3479), + [anon_sym_SEMI] = ACTIONS(3481), + [anon_sym___extension__] = ACTIONS(3479), + [anon_sym_typedef] = ACTIONS(3479), + [anon_sym_extern] = ACTIONS(3479), + [anon_sym___attribute__] = ACTIONS(3479), + [anon_sym_COLON_COLON] = ACTIONS(3481), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3481), + [anon_sym___declspec] = ACTIONS(3479), + [anon_sym___based] = ACTIONS(3479), + [anon_sym___cdecl] = ACTIONS(3479), + [anon_sym___clrcall] = ACTIONS(3479), + [anon_sym___stdcall] = ACTIONS(3479), + [anon_sym___fastcall] = ACTIONS(3479), + [anon_sym___thiscall] = ACTIONS(3479), + [anon_sym___vectorcall] = ACTIONS(3479), + [anon_sym_LBRACE] = ACTIONS(3481), + [anon_sym_RBRACE] = ACTIONS(3481), + [anon_sym_signed] = ACTIONS(3479), + [anon_sym_unsigned] = ACTIONS(3479), + [anon_sym_long] = ACTIONS(3479), + [anon_sym_short] = ACTIONS(3479), + [anon_sym_LBRACK] = ACTIONS(3479), + [anon_sym_static] = ACTIONS(3479), + [anon_sym_register] = ACTIONS(3479), + [anon_sym_inline] = ACTIONS(3479), + [anon_sym___inline] = ACTIONS(3479), + [anon_sym___inline__] = ACTIONS(3479), + [anon_sym___forceinline] = ACTIONS(3479), + [anon_sym_thread_local] = ACTIONS(3479), + [anon_sym___thread] = ACTIONS(3479), + [anon_sym_const] = ACTIONS(3479), + [anon_sym_constexpr] = ACTIONS(3479), + [anon_sym_volatile] = ACTIONS(3479), + [anon_sym_restrict] = ACTIONS(3479), + [anon_sym___restrict__] = ACTIONS(3479), + [anon_sym__Atomic] = ACTIONS(3479), + [anon_sym__Noreturn] = ACTIONS(3479), + [anon_sym_noreturn] = ACTIONS(3479), + [anon_sym_mutable] = ACTIONS(3479), + [anon_sym_constinit] = ACTIONS(3479), + [anon_sym_consteval] = ACTIONS(3479), + [sym_primitive_type] = ACTIONS(3479), + [anon_sym_enum] = ACTIONS(3479), + [anon_sym_class] = ACTIONS(3479), + [anon_sym_struct] = ACTIONS(3479), + [anon_sym_union] = ACTIONS(3479), + [anon_sym_if] = ACTIONS(3479), + [anon_sym_switch] = ACTIONS(3479), + [anon_sym_case] = ACTIONS(3479), + [anon_sym_default] = ACTIONS(3479), + [anon_sym_while] = ACTIONS(3479), + [anon_sym_do] = ACTIONS(3479), + [anon_sym_for] = ACTIONS(3479), + [anon_sym_return] = ACTIONS(3479), + [anon_sym_break] = ACTIONS(3479), + [anon_sym_continue] = ACTIONS(3479), + [anon_sym_goto] = ACTIONS(3479), + [anon_sym___try] = ACTIONS(3479), + [anon_sym___leave] = ACTIONS(3479), + [anon_sym_not] = ACTIONS(3479), + [anon_sym_compl] = ACTIONS(3479), + [anon_sym_DASH_DASH] = ACTIONS(3481), + [anon_sym_PLUS_PLUS] = ACTIONS(3481), + [anon_sym_sizeof] = ACTIONS(3479), + [anon_sym___alignof__] = ACTIONS(3479), + [anon_sym___alignof] = ACTIONS(3479), + [anon_sym__alignof] = ACTIONS(3479), + [anon_sym_alignof] = ACTIONS(3479), + [anon_sym__Alignof] = ACTIONS(3479), + [anon_sym_offsetof] = ACTIONS(3479), + [anon_sym__Generic] = ACTIONS(3479), + [anon_sym_asm] = ACTIONS(3479), + [anon_sym___asm__] = ACTIONS(3479), + [sym_number_literal] = ACTIONS(3481), + [anon_sym_L_SQUOTE] = ACTIONS(3481), + [anon_sym_u_SQUOTE] = ACTIONS(3481), + [anon_sym_U_SQUOTE] = ACTIONS(3481), + [anon_sym_u8_SQUOTE] = ACTIONS(3481), + [anon_sym_SQUOTE] = ACTIONS(3481), + [anon_sym_L_DQUOTE] = ACTIONS(3481), + [anon_sym_u_DQUOTE] = ACTIONS(3481), + [anon_sym_U_DQUOTE] = ACTIONS(3481), + [anon_sym_u8_DQUOTE] = ACTIONS(3481), + [anon_sym_DQUOTE] = ACTIONS(3481), + [sym_true] = ACTIONS(3479), + [sym_false] = ACTIONS(3479), + [anon_sym_NULL] = ACTIONS(3479), + [anon_sym_nullptr] = ACTIONS(3479), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3479), + [anon_sym_decltype] = ACTIONS(3479), + [anon_sym_virtual] = ACTIONS(3479), + [anon_sym_alignas] = ACTIONS(3479), + [anon_sym_explicit] = ACTIONS(3479), + [anon_sym_typename] = ACTIONS(3479), + [anon_sym_template] = ACTIONS(3479), + [anon_sym_operator] = ACTIONS(3479), + [anon_sym_try] = ACTIONS(3479), + [anon_sym_delete] = ACTIONS(3479), + [anon_sym_throw] = ACTIONS(3479), + [anon_sym_namespace] = ACTIONS(3479), + [anon_sym_using] = ACTIONS(3479), + [anon_sym_static_assert] = ACTIONS(3479), + [anon_sym_concept] = ACTIONS(3479), + [anon_sym_co_return] = ACTIONS(3479), + [anon_sym_co_yield] = ACTIONS(3479), + [anon_sym_R_DQUOTE] = ACTIONS(3481), + [anon_sym_LR_DQUOTE] = ACTIONS(3481), + [anon_sym_uR_DQUOTE] = ACTIONS(3481), + [anon_sym_UR_DQUOTE] = ACTIONS(3481), + [anon_sym_u8R_DQUOTE] = ACTIONS(3481), + [anon_sym_co_await] = ACTIONS(3479), + [anon_sym_new] = ACTIONS(3479), + [anon_sym_requires] = ACTIONS(3479), + [sym_this] = ACTIONS(3479), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3481), + [sym_semgrep_named_ellipsis] = ACTIONS(3481), }, - [650] = { - [sym_identifier] = ACTIONS(3215), - [aux_sym_preproc_include_token1] = ACTIONS(3215), - [aux_sym_preproc_def_token1] = ACTIONS(3215), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3217), - [aux_sym_preproc_if_token1] = ACTIONS(3215), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3215), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3215), - [sym_preproc_directive] = ACTIONS(3215), - [anon_sym_LPAREN2] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_STAR] = ACTIONS(3217), - [anon_sym_AMP_AMP] = ACTIONS(3217), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym___extension__] = ACTIONS(3215), - [anon_sym_typedef] = ACTIONS(3215), - [anon_sym_extern] = ACTIONS(3215), - [anon_sym___attribute__] = ACTIONS(3215), - [anon_sym_COLON_COLON] = ACTIONS(3217), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3217), - [anon_sym___declspec] = ACTIONS(3215), - [anon_sym___based] = ACTIONS(3215), - [anon_sym___cdecl] = ACTIONS(3215), - [anon_sym___clrcall] = ACTIONS(3215), - [anon_sym___stdcall] = ACTIONS(3215), - [anon_sym___fastcall] = ACTIONS(3215), - [anon_sym___thiscall] = ACTIONS(3215), - [anon_sym___vectorcall] = ACTIONS(3215), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_signed] = ACTIONS(3215), - [anon_sym_unsigned] = ACTIONS(3215), - [anon_sym_long] = ACTIONS(3215), - [anon_sym_short] = ACTIONS(3215), - [anon_sym_LBRACK] = ACTIONS(3215), - [anon_sym_static] = ACTIONS(3215), - [anon_sym_register] = ACTIONS(3215), - [anon_sym_inline] = ACTIONS(3215), - [anon_sym___inline] = ACTIONS(3215), - [anon_sym___inline__] = ACTIONS(3215), - [anon_sym___forceinline] = ACTIONS(3215), - [anon_sym_thread_local] = ACTIONS(3215), - [anon_sym___thread] = ACTIONS(3215), - [anon_sym_const] = ACTIONS(3215), - [anon_sym_constexpr] = ACTIONS(3215), - [anon_sym_volatile] = ACTIONS(3215), - [anon_sym_restrict] = ACTIONS(3215), - [anon_sym___restrict__] = ACTIONS(3215), - [anon_sym__Atomic] = ACTIONS(3215), - [anon_sym__Noreturn] = ACTIONS(3215), - [anon_sym_noreturn] = ACTIONS(3215), - [anon_sym_mutable] = ACTIONS(3215), - [anon_sym_constinit] = ACTIONS(3215), - [anon_sym_consteval] = ACTIONS(3215), - [sym_primitive_type] = ACTIONS(3215), - [anon_sym_enum] = ACTIONS(3215), - [anon_sym_class] = ACTIONS(3215), - [anon_sym_struct] = ACTIONS(3215), - [anon_sym_union] = ACTIONS(3215), - [anon_sym_if] = ACTIONS(3215), - [anon_sym_else] = ACTIONS(3215), - [anon_sym_switch] = ACTIONS(3215), - [anon_sym_case] = ACTIONS(3215), - [anon_sym_default] = ACTIONS(3215), - [anon_sym_while] = ACTIONS(3215), - [anon_sym_do] = ACTIONS(3215), - [anon_sym_for] = ACTIONS(3215), - [anon_sym_return] = ACTIONS(3215), - [anon_sym_break] = ACTIONS(3215), - [anon_sym_continue] = ACTIONS(3215), - [anon_sym_goto] = ACTIONS(3215), - [anon_sym___try] = ACTIONS(3215), - [anon_sym___leave] = ACTIONS(3215), - [anon_sym_not] = ACTIONS(3215), - [anon_sym_compl] = ACTIONS(3215), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_sizeof] = ACTIONS(3215), - [anon_sym___alignof__] = ACTIONS(3215), - [anon_sym___alignof] = ACTIONS(3215), - [anon_sym__alignof] = ACTIONS(3215), - [anon_sym_alignof] = ACTIONS(3215), - [anon_sym__Alignof] = ACTIONS(3215), - [anon_sym_offsetof] = ACTIONS(3215), - [anon_sym__Generic] = ACTIONS(3215), - [anon_sym_asm] = ACTIONS(3215), - [anon_sym___asm__] = ACTIONS(3215), - [sym_number_literal] = ACTIONS(3217), - [anon_sym_L_SQUOTE] = ACTIONS(3217), - [anon_sym_u_SQUOTE] = ACTIONS(3217), - [anon_sym_U_SQUOTE] = ACTIONS(3217), - [anon_sym_u8_SQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_L_DQUOTE] = ACTIONS(3217), - [anon_sym_u_DQUOTE] = ACTIONS(3217), - [anon_sym_U_DQUOTE] = ACTIONS(3217), - [anon_sym_u8_DQUOTE] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [sym_true] = ACTIONS(3215), - [sym_false] = ACTIONS(3215), - [anon_sym_NULL] = ACTIONS(3215), - [anon_sym_nullptr] = ACTIONS(3215), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3215), - [anon_sym_decltype] = ACTIONS(3215), - [anon_sym_virtual] = ACTIONS(3215), - [anon_sym_alignas] = ACTIONS(3215), - [anon_sym_explicit] = ACTIONS(3215), - [anon_sym_typename] = ACTIONS(3215), - [anon_sym_template] = ACTIONS(3215), - [anon_sym_operator] = ACTIONS(3215), - [anon_sym_try] = ACTIONS(3215), - [anon_sym_delete] = ACTIONS(3215), - [anon_sym_throw] = ACTIONS(3215), - [anon_sym_namespace] = ACTIONS(3215), - [anon_sym_using] = ACTIONS(3215), - [anon_sym_static_assert] = ACTIONS(3215), - [anon_sym_concept] = ACTIONS(3215), - [anon_sym_co_return] = ACTIONS(3215), - [anon_sym_co_yield] = ACTIONS(3215), - [anon_sym_R_DQUOTE] = ACTIONS(3217), - [anon_sym_LR_DQUOTE] = ACTIONS(3217), - [anon_sym_uR_DQUOTE] = ACTIONS(3217), - [anon_sym_UR_DQUOTE] = ACTIONS(3217), - [anon_sym_u8R_DQUOTE] = ACTIONS(3217), - [anon_sym_co_await] = ACTIONS(3215), - [anon_sym_new] = ACTIONS(3215), - [anon_sym_requires] = ACTIONS(3215), - [sym_this] = ACTIONS(3215), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3217), - [sym_semgrep_named_ellipsis] = ACTIONS(3217), + [693] = { + [sym_identifier] = ACTIONS(3541), + [aux_sym_preproc_include_token1] = ACTIONS(3541), + [aux_sym_preproc_def_token1] = ACTIONS(3541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3543), + [aux_sym_preproc_if_token1] = ACTIONS(3541), + [aux_sym_preproc_if_token2] = ACTIONS(3541), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3541), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3541), + [sym_preproc_directive] = ACTIONS(3541), + [anon_sym_LPAREN2] = ACTIONS(3543), + [anon_sym_BANG] = ACTIONS(3543), + [anon_sym_TILDE] = ACTIONS(3543), + [anon_sym_DASH] = ACTIONS(3541), + [anon_sym_PLUS] = ACTIONS(3541), + [anon_sym_STAR] = ACTIONS(3543), + [anon_sym_AMP_AMP] = ACTIONS(3543), + [anon_sym_AMP] = ACTIONS(3541), + [anon_sym_SEMI] = ACTIONS(3543), + [anon_sym___extension__] = ACTIONS(3541), + [anon_sym_typedef] = ACTIONS(3541), + [anon_sym_extern] = ACTIONS(3541), + [anon_sym___attribute__] = ACTIONS(3541), + [anon_sym_COLON_COLON] = ACTIONS(3543), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3543), + [anon_sym___declspec] = ACTIONS(3541), + [anon_sym___based] = ACTIONS(3541), + [anon_sym___cdecl] = ACTIONS(3541), + [anon_sym___clrcall] = ACTIONS(3541), + [anon_sym___stdcall] = ACTIONS(3541), + [anon_sym___fastcall] = ACTIONS(3541), + [anon_sym___thiscall] = ACTIONS(3541), + [anon_sym___vectorcall] = ACTIONS(3541), + [anon_sym_LBRACE] = ACTIONS(3543), + [anon_sym_signed] = ACTIONS(3541), + [anon_sym_unsigned] = ACTIONS(3541), + [anon_sym_long] = ACTIONS(3541), + [anon_sym_short] = ACTIONS(3541), + [anon_sym_LBRACK] = ACTIONS(3541), + [anon_sym_static] = ACTIONS(3541), + [anon_sym_register] = ACTIONS(3541), + [anon_sym_inline] = ACTIONS(3541), + [anon_sym___inline] = ACTIONS(3541), + [anon_sym___inline__] = ACTIONS(3541), + [anon_sym___forceinline] = ACTIONS(3541), + [anon_sym_thread_local] = ACTIONS(3541), + [anon_sym___thread] = ACTIONS(3541), + [anon_sym_const] = ACTIONS(3541), + [anon_sym_constexpr] = ACTIONS(3541), + [anon_sym_volatile] = ACTIONS(3541), + [anon_sym_restrict] = ACTIONS(3541), + [anon_sym___restrict__] = ACTIONS(3541), + [anon_sym__Atomic] = ACTIONS(3541), + [anon_sym__Noreturn] = ACTIONS(3541), + [anon_sym_noreturn] = ACTIONS(3541), + [anon_sym_mutable] = ACTIONS(3541), + [anon_sym_constinit] = ACTIONS(3541), + [anon_sym_consteval] = ACTIONS(3541), + [sym_primitive_type] = ACTIONS(3541), + [anon_sym_enum] = ACTIONS(3541), + [anon_sym_class] = ACTIONS(3541), + [anon_sym_struct] = ACTIONS(3541), + [anon_sym_union] = ACTIONS(3541), + [anon_sym_if] = ACTIONS(3541), + [anon_sym_switch] = ACTIONS(3541), + [anon_sym_case] = ACTIONS(3541), + [anon_sym_default] = ACTIONS(3541), + [anon_sym_while] = ACTIONS(3541), + [anon_sym_do] = ACTIONS(3541), + [anon_sym_for] = ACTIONS(3541), + [anon_sym_return] = ACTIONS(3541), + [anon_sym_break] = ACTIONS(3541), + [anon_sym_continue] = ACTIONS(3541), + [anon_sym_goto] = ACTIONS(3541), + [anon_sym___try] = ACTIONS(3541), + [anon_sym___leave] = ACTIONS(3541), + [anon_sym_not] = ACTIONS(3541), + [anon_sym_compl] = ACTIONS(3541), + [anon_sym_DASH_DASH] = ACTIONS(3543), + [anon_sym_PLUS_PLUS] = ACTIONS(3543), + [anon_sym_sizeof] = ACTIONS(3541), + [anon_sym___alignof__] = ACTIONS(3541), + [anon_sym___alignof] = ACTIONS(3541), + [anon_sym__alignof] = ACTIONS(3541), + [anon_sym_alignof] = ACTIONS(3541), + [anon_sym__Alignof] = ACTIONS(3541), + [anon_sym_offsetof] = ACTIONS(3541), + [anon_sym__Generic] = ACTIONS(3541), + [anon_sym_asm] = ACTIONS(3541), + [anon_sym___asm__] = ACTIONS(3541), + [sym_number_literal] = ACTIONS(3543), + [anon_sym_L_SQUOTE] = ACTIONS(3543), + [anon_sym_u_SQUOTE] = ACTIONS(3543), + [anon_sym_U_SQUOTE] = ACTIONS(3543), + [anon_sym_u8_SQUOTE] = ACTIONS(3543), + [anon_sym_SQUOTE] = ACTIONS(3543), + [anon_sym_L_DQUOTE] = ACTIONS(3543), + [anon_sym_u_DQUOTE] = ACTIONS(3543), + [anon_sym_U_DQUOTE] = ACTIONS(3543), + [anon_sym_u8_DQUOTE] = ACTIONS(3543), + [anon_sym_DQUOTE] = ACTIONS(3543), + [sym_true] = ACTIONS(3541), + [sym_false] = ACTIONS(3541), + [anon_sym_NULL] = ACTIONS(3541), + [anon_sym_nullptr] = ACTIONS(3541), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3541), + [anon_sym_decltype] = ACTIONS(3541), + [anon_sym_virtual] = ACTIONS(3541), + [anon_sym_alignas] = ACTIONS(3541), + [anon_sym_explicit] = ACTIONS(3541), + [anon_sym_typename] = ACTIONS(3541), + [anon_sym_template] = ACTIONS(3541), + [anon_sym_operator] = ACTIONS(3541), + [anon_sym_try] = ACTIONS(3541), + [anon_sym_delete] = ACTIONS(3541), + [anon_sym_throw] = ACTIONS(3541), + [anon_sym_namespace] = ACTIONS(3541), + [anon_sym_using] = ACTIONS(3541), + [anon_sym_static_assert] = ACTIONS(3541), + [anon_sym_concept] = ACTIONS(3541), + [anon_sym_co_return] = ACTIONS(3541), + [anon_sym_co_yield] = ACTIONS(3541), + [anon_sym_R_DQUOTE] = ACTIONS(3543), + [anon_sym_LR_DQUOTE] = ACTIONS(3543), + [anon_sym_uR_DQUOTE] = ACTIONS(3543), + [anon_sym_UR_DQUOTE] = ACTIONS(3543), + [anon_sym_u8R_DQUOTE] = ACTIONS(3543), + [anon_sym_co_await] = ACTIONS(3541), + [anon_sym_new] = ACTIONS(3541), + [anon_sym_requires] = ACTIONS(3541), + [sym_this] = ACTIONS(3541), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3543), + [sym_semgrep_named_ellipsis] = ACTIONS(3543), }, - [651] = { - [ts_builtin_sym_end] = ACTIONS(3213), - [sym_identifier] = ACTIONS(3211), - [aux_sym_preproc_include_token1] = ACTIONS(3211), - [aux_sym_preproc_def_token1] = ACTIONS(3211), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3213), - [aux_sym_preproc_if_token1] = ACTIONS(3211), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3211), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3211), - [sym_preproc_directive] = ACTIONS(3211), - [anon_sym_LPAREN2] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(3213), - [anon_sym_TILDE] = ACTIONS(3213), - [anon_sym_DASH] = ACTIONS(3211), - [anon_sym_PLUS] = ACTIONS(3211), - [anon_sym_STAR] = ACTIONS(3213), - [anon_sym_AMP_AMP] = ACTIONS(3213), - [anon_sym_AMP] = ACTIONS(3211), - [anon_sym_SEMI] = ACTIONS(3213), - [anon_sym___extension__] = ACTIONS(3211), - [anon_sym_typedef] = ACTIONS(3211), - [anon_sym_extern] = ACTIONS(3211), - [anon_sym___attribute__] = ACTIONS(3211), - [anon_sym_COLON_COLON] = ACTIONS(3213), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3213), - [anon_sym___declspec] = ACTIONS(3211), - [anon_sym___based] = ACTIONS(3211), - [anon_sym___cdecl] = ACTIONS(3211), - [anon_sym___clrcall] = ACTIONS(3211), - [anon_sym___stdcall] = ACTIONS(3211), - [anon_sym___fastcall] = ACTIONS(3211), - [anon_sym___thiscall] = ACTIONS(3211), - [anon_sym___vectorcall] = ACTIONS(3211), - [anon_sym_LBRACE] = ACTIONS(3213), - [anon_sym_signed] = ACTIONS(3211), - [anon_sym_unsigned] = ACTIONS(3211), - [anon_sym_long] = ACTIONS(3211), - [anon_sym_short] = ACTIONS(3211), - [anon_sym_LBRACK] = ACTIONS(3211), - [anon_sym_static] = ACTIONS(3211), - [anon_sym_register] = ACTIONS(3211), - [anon_sym_inline] = ACTIONS(3211), - [anon_sym___inline] = ACTIONS(3211), - [anon_sym___inline__] = ACTIONS(3211), - [anon_sym___forceinline] = ACTIONS(3211), - [anon_sym_thread_local] = ACTIONS(3211), - [anon_sym___thread] = ACTIONS(3211), - [anon_sym_const] = ACTIONS(3211), - [anon_sym_constexpr] = ACTIONS(3211), - [anon_sym_volatile] = ACTIONS(3211), - [anon_sym_restrict] = ACTIONS(3211), - [anon_sym___restrict__] = ACTIONS(3211), - [anon_sym__Atomic] = ACTIONS(3211), - [anon_sym__Noreturn] = ACTIONS(3211), - [anon_sym_noreturn] = ACTIONS(3211), - [anon_sym_mutable] = ACTIONS(3211), - [anon_sym_constinit] = ACTIONS(3211), - [anon_sym_consteval] = ACTIONS(3211), - [sym_primitive_type] = ACTIONS(3211), - [anon_sym_enum] = ACTIONS(3211), - [anon_sym_class] = ACTIONS(3211), - [anon_sym_struct] = ACTIONS(3211), - [anon_sym_union] = ACTIONS(3211), - [anon_sym_if] = ACTIONS(3211), - [anon_sym_else] = ACTIONS(3211), - [anon_sym_switch] = ACTIONS(3211), - [anon_sym_case] = ACTIONS(3211), - [anon_sym_default] = ACTIONS(3211), - [anon_sym_while] = ACTIONS(3211), - [anon_sym_do] = ACTIONS(3211), - [anon_sym_for] = ACTIONS(3211), - [anon_sym_return] = ACTIONS(3211), - [anon_sym_break] = ACTIONS(3211), - [anon_sym_continue] = ACTIONS(3211), - [anon_sym_goto] = ACTIONS(3211), - [anon_sym___try] = ACTIONS(3211), - [anon_sym___leave] = ACTIONS(3211), - [anon_sym_not] = ACTIONS(3211), - [anon_sym_compl] = ACTIONS(3211), - [anon_sym_DASH_DASH] = ACTIONS(3213), - [anon_sym_PLUS_PLUS] = ACTIONS(3213), - [anon_sym_sizeof] = ACTIONS(3211), - [anon_sym___alignof__] = ACTIONS(3211), - [anon_sym___alignof] = ACTIONS(3211), - [anon_sym__alignof] = ACTIONS(3211), - [anon_sym_alignof] = ACTIONS(3211), - [anon_sym__Alignof] = ACTIONS(3211), - [anon_sym_offsetof] = ACTIONS(3211), - [anon_sym__Generic] = ACTIONS(3211), - [anon_sym_asm] = ACTIONS(3211), - [anon_sym___asm__] = ACTIONS(3211), - [sym_number_literal] = ACTIONS(3213), - [anon_sym_L_SQUOTE] = ACTIONS(3213), - [anon_sym_u_SQUOTE] = ACTIONS(3213), - [anon_sym_U_SQUOTE] = ACTIONS(3213), - [anon_sym_u8_SQUOTE] = ACTIONS(3213), - [anon_sym_SQUOTE] = ACTIONS(3213), - [anon_sym_L_DQUOTE] = ACTIONS(3213), - [anon_sym_u_DQUOTE] = ACTIONS(3213), - [anon_sym_U_DQUOTE] = ACTIONS(3213), - [anon_sym_u8_DQUOTE] = ACTIONS(3213), - [anon_sym_DQUOTE] = ACTIONS(3213), - [sym_true] = ACTIONS(3211), - [sym_false] = ACTIONS(3211), - [anon_sym_NULL] = ACTIONS(3211), - [anon_sym_nullptr] = ACTIONS(3211), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3211), - [anon_sym_decltype] = ACTIONS(3211), - [anon_sym_virtual] = ACTIONS(3211), - [anon_sym_alignas] = ACTIONS(3211), - [anon_sym_explicit] = ACTIONS(3211), - [anon_sym_typename] = ACTIONS(3211), - [anon_sym_template] = ACTIONS(3211), - [anon_sym_operator] = ACTIONS(3211), - [anon_sym_try] = ACTIONS(3211), - [anon_sym_delete] = ACTIONS(3211), - [anon_sym_throw] = ACTIONS(3211), - [anon_sym_namespace] = ACTIONS(3211), - [anon_sym_using] = ACTIONS(3211), - [anon_sym_static_assert] = ACTIONS(3211), - [anon_sym_concept] = ACTIONS(3211), - [anon_sym_co_return] = ACTIONS(3211), - [anon_sym_co_yield] = ACTIONS(3211), - [anon_sym_R_DQUOTE] = ACTIONS(3213), - [anon_sym_LR_DQUOTE] = ACTIONS(3213), - [anon_sym_uR_DQUOTE] = ACTIONS(3213), - [anon_sym_UR_DQUOTE] = ACTIONS(3213), - [anon_sym_u8R_DQUOTE] = ACTIONS(3213), - [anon_sym_co_await] = ACTIONS(3211), - [anon_sym_new] = ACTIONS(3211), - [anon_sym_requires] = ACTIONS(3211), - [sym_this] = ACTIONS(3211), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3213), - [sym_semgrep_named_ellipsis] = ACTIONS(3213), + [694] = { + [sym_identifier] = ACTIONS(3545), + [aux_sym_preproc_include_token1] = ACTIONS(3545), + [aux_sym_preproc_def_token1] = ACTIONS(3545), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3547), + [aux_sym_preproc_if_token1] = ACTIONS(3545), + [aux_sym_preproc_if_token2] = ACTIONS(3545), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3545), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3545), + [sym_preproc_directive] = ACTIONS(3545), + [anon_sym_LPAREN2] = ACTIONS(3547), + [anon_sym_BANG] = ACTIONS(3547), + [anon_sym_TILDE] = ACTIONS(3547), + [anon_sym_DASH] = ACTIONS(3545), + [anon_sym_PLUS] = ACTIONS(3545), + [anon_sym_STAR] = ACTIONS(3547), + [anon_sym_AMP_AMP] = ACTIONS(3547), + [anon_sym_AMP] = ACTIONS(3545), + [anon_sym_SEMI] = ACTIONS(3547), + [anon_sym___extension__] = ACTIONS(3545), + [anon_sym_typedef] = ACTIONS(3545), + [anon_sym_extern] = ACTIONS(3545), + [anon_sym___attribute__] = ACTIONS(3545), + [anon_sym_COLON_COLON] = ACTIONS(3547), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3547), + [anon_sym___declspec] = ACTIONS(3545), + [anon_sym___based] = ACTIONS(3545), + [anon_sym___cdecl] = ACTIONS(3545), + [anon_sym___clrcall] = ACTIONS(3545), + [anon_sym___stdcall] = ACTIONS(3545), + [anon_sym___fastcall] = ACTIONS(3545), + [anon_sym___thiscall] = ACTIONS(3545), + [anon_sym___vectorcall] = ACTIONS(3545), + [anon_sym_LBRACE] = ACTIONS(3547), + [anon_sym_signed] = ACTIONS(3545), + [anon_sym_unsigned] = ACTIONS(3545), + [anon_sym_long] = ACTIONS(3545), + [anon_sym_short] = ACTIONS(3545), + [anon_sym_LBRACK] = ACTIONS(3545), + [anon_sym_static] = ACTIONS(3545), + [anon_sym_register] = ACTIONS(3545), + [anon_sym_inline] = ACTIONS(3545), + [anon_sym___inline] = ACTIONS(3545), + [anon_sym___inline__] = ACTIONS(3545), + [anon_sym___forceinline] = ACTIONS(3545), + [anon_sym_thread_local] = ACTIONS(3545), + [anon_sym___thread] = ACTIONS(3545), + [anon_sym_const] = ACTIONS(3545), + [anon_sym_constexpr] = ACTIONS(3545), + [anon_sym_volatile] = ACTIONS(3545), + [anon_sym_restrict] = ACTIONS(3545), + [anon_sym___restrict__] = ACTIONS(3545), + [anon_sym__Atomic] = ACTIONS(3545), + [anon_sym__Noreturn] = ACTIONS(3545), + [anon_sym_noreturn] = ACTIONS(3545), + [anon_sym_mutable] = ACTIONS(3545), + [anon_sym_constinit] = ACTIONS(3545), + [anon_sym_consteval] = ACTIONS(3545), + [sym_primitive_type] = ACTIONS(3545), + [anon_sym_enum] = ACTIONS(3545), + [anon_sym_class] = ACTIONS(3545), + [anon_sym_struct] = ACTIONS(3545), + [anon_sym_union] = ACTIONS(3545), + [anon_sym_if] = ACTIONS(3545), + [anon_sym_switch] = ACTIONS(3545), + [anon_sym_case] = ACTIONS(3545), + [anon_sym_default] = ACTIONS(3545), + [anon_sym_while] = ACTIONS(3545), + [anon_sym_do] = ACTIONS(3545), + [anon_sym_for] = ACTIONS(3545), + [anon_sym_return] = ACTIONS(3545), + [anon_sym_break] = ACTIONS(3545), + [anon_sym_continue] = ACTIONS(3545), + [anon_sym_goto] = ACTIONS(3545), + [anon_sym___try] = ACTIONS(3545), + [anon_sym___leave] = ACTIONS(3545), + [anon_sym_not] = ACTIONS(3545), + [anon_sym_compl] = ACTIONS(3545), + [anon_sym_DASH_DASH] = ACTIONS(3547), + [anon_sym_PLUS_PLUS] = ACTIONS(3547), + [anon_sym_sizeof] = ACTIONS(3545), + [anon_sym___alignof__] = ACTIONS(3545), + [anon_sym___alignof] = ACTIONS(3545), + [anon_sym__alignof] = ACTIONS(3545), + [anon_sym_alignof] = ACTIONS(3545), + [anon_sym__Alignof] = ACTIONS(3545), + [anon_sym_offsetof] = ACTIONS(3545), + [anon_sym__Generic] = ACTIONS(3545), + [anon_sym_asm] = ACTIONS(3545), + [anon_sym___asm__] = ACTIONS(3545), + [sym_number_literal] = ACTIONS(3547), + [anon_sym_L_SQUOTE] = ACTIONS(3547), + [anon_sym_u_SQUOTE] = ACTIONS(3547), + [anon_sym_U_SQUOTE] = ACTIONS(3547), + [anon_sym_u8_SQUOTE] = ACTIONS(3547), + [anon_sym_SQUOTE] = ACTIONS(3547), + [anon_sym_L_DQUOTE] = ACTIONS(3547), + [anon_sym_u_DQUOTE] = ACTIONS(3547), + [anon_sym_U_DQUOTE] = ACTIONS(3547), + [anon_sym_u8_DQUOTE] = ACTIONS(3547), + [anon_sym_DQUOTE] = ACTIONS(3547), + [sym_true] = ACTIONS(3545), + [sym_false] = ACTIONS(3545), + [anon_sym_NULL] = ACTIONS(3545), + [anon_sym_nullptr] = ACTIONS(3545), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3545), + [anon_sym_decltype] = ACTIONS(3545), + [anon_sym_virtual] = ACTIONS(3545), + [anon_sym_alignas] = ACTIONS(3545), + [anon_sym_explicit] = ACTIONS(3545), + [anon_sym_typename] = ACTIONS(3545), + [anon_sym_template] = ACTIONS(3545), + [anon_sym_operator] = ACTIONS(3545), + [anon_sym_try] = ACTIONS(3545), + [anon_sym_delete] = ACTIONS(3545), + [anon_sym_throw] = ACTIONS(3545), + [anon_sym_namespace] = ACTIONS(3545), + [anon_sym_using] = ACTIONS(3545), + [anon_sym_static_assert] = ACTIONS(3545), + [anon_sym_concept] = ACTIONS(3545), + [anon_sym_co_return] = ACTIONS(3545), + [anon_sym_co_yield] = ACTIONS(3545), + [anon_sym_R_DQUOTE] = ACTIONS(3547), + [anon_sym_LR_DQUOTE] = ACTIONS(3547), + [anon_sym_uR_DQUOTE] = ACTIONS(3547), + [anon_sym_UR_DQUOTE] = ACTIONS(3547), + [anon_sym_u8R_DQUOTE] = ACTIONS(3547), + [anon_sym_co_await] = ACTIONS(3545), + [anon_sym_new] = ACTIONS(3545), + [anon_sym_requires] = ACTIONS(3545), + [sym_this] = ACTIONS(3545), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3547), + [sym_semgrep_named_ellipsis] = ACTIONS(3547), }, - [652] = { - [ts_builtin_sym_end] = ACTIONS(3191), - [sym_identifier] = ACTIONS(3189), - [aux_sym_preproc_include_token1] = ACTIONS(3189), - [aux_sym_preproc_def_token1] = ACTIONS(3189), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), - [aux_sym_preproc_if_token1] = ACTIONS(3189), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3189), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3189), - [sym_preproc_directive] = ACTIONS(3189), - [anon_sym_LPAREN2] = ACTIONS(3191), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_TILDE] = ACTIONS(3191), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_STAR] = ACTIONS(3191), - [anon_sym_AMP_AMP] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_SEMI] = ACTIONS(3191), - [anon_sym___extension__] = ACTIONS(3189), - [anon_sym_typedef] = ACTIONS(3189), - [anon_sym_extern] = ACTIONS(3189), - [anon_sym___attribute__] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3191), - [anon_sym___declspec] = ACTIONS(3189), - [anon_sym___based] = ACTIONS(3189), - [anon_sym___cdecl] = ACTIONS(3189), - [anon_sym___clrcall] = ACTIONS(3189), - [anon_sym___stdcall] = ACTIONS(3189), - [anon_sym___fastcall] = ACTIONS(3189), - [anon_sym___thiscall] = ACTIONS(3189), - [anon_sym___vectorcall] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3191), - [anon_sym_signed] = ACTIONS(3189), - [anon_sym_unsigned] = ACTIONS(3189), - [anon_sym_long] = ACTIONS(3189), - [anon_sym_short] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_static] = ACTIONS(3189), - [anon_sym_register] = ACTIONS(3189), - [anon_sym_inline] = ACTIONS(3189), - [anon_sym___inline] = ACTIONS(3189), - [anon_sym___inline__] = ACTIONS(3189), - [anon_sym___forceinline] = ACTIONS(3189), - [anon_sym_thread_local] = ACTIONS(3189), - [anon_sym___thread] = ACTIONS(3189), - [anon_sym_const] = ACTIONS(3189), - [anon_sym_constexpr] = ACTIONS(3189), - [anon_sym_volatile] = ACTIONS(3189), - [anon_sym_restrict] = ACTIONS(3189), - [anon_sym___restrict__] = ACTIONS(3189), - [anon_sym__Atomic] = ACTIONS(3189), - [anon_sym__Noreturn] = ACTIONS(3189), - [anon_sym_noreturn] = ACTIONS(3189), - [anon_sym_mutable] = ACTIONS(3189), - [anon_sym_constinit] = ACTIONS(3189), - [anon_sym_consteval] = ACTIONS(3189), - [sym_primitive_type] = ACTIONS(3189), - [anon_sym_enum] = ACTIONS(3189), - [anon_sym_class] = ACTIONS(3189), - [anon_sym_struct] = ACTIONS(3189), - [anon_sym_union] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_switch] = ACTIONS(3189), - [anon_sym_case] = ACTIONS(3189), - [anon_sym_default] = ACTIONS(3189), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_do] = ACTIONS(3189), - [anon_sym_for] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_break] = ACTIONS(3189), - [anon_sym_continue] = ACTIONS(3189), - [anon_sym_goto] = ACTIONS(3189), - [anon_sym___try] = ACTIONS(3189), - [anon_sym___leave] = ACTIONS(3189), - [anon_sym_not] = ACTIONS(3189), - [anon_sym_compl] = ACTIONS(3189), - [anon_sym_DASH_DASH] = ACTIONS(3191), - [anon_sym_PLUS_PLUS] = ACTIONS(3191), - [anon_sym_sizeof] = ACTIONS(3189), - [anon_sym___alignof__] = ACTIONS(3189), - [anon_sym___alignof] = ACTIONS(3189), - [anon_sym__alignof] = ACTIONS(3189), - [anon_sym_alignof] = ACTIONS(3189), - [anon_sym__Alignof] = ACTIONS(3189), - [anon_sym_offsetof] = ACTIONS(3189), - [anon_sym__Generic] = ACTIONS(3189), - [anon_sym_asm] = ACTIONS(3189), - [anon_sym___asm__] = ACTIONS(3189), - [sym_number_literal] = ACTIONS(3191), - [anon_sym_L_SQUOTE] = ACTIONS(3191), - [anon_sym_u_SQUOTE] = ACTIONS(3191), - [anon_sym_U_SQUOTE] = ACTIONS(3191), - [anon_sym_u8_SQUOTE] = ACTIONS(3191), - [anon_sym_SQUOTE] = ACTIONS(3191), - [anon_sym_L_DQUOTE] = ACTIONS(3191), - [anon_sym_u_DQUOTE] = ACTIONS(3191), - [anon_sym_U_DQUOTE] = ACTIONS(3191), - [anon_sym_u8_DQUOTE] = ACTIONS(3191), - [anon_sym_DQUOTE] = ACTIONS(3191), - [sym_true] = ACTIONS(3189), - [sym_false] = ACTIONS(3189), - [anon_sym_NULL] = ACTIONS(3189), - [anon_sym_nullptr] = ACTIONS(3189), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3189), - [anon_sym_decltype] = ACTIONS(3189), - [anon_sym_virtual] = ACTIONS(3189), - [anon_sym_alignas] = ACTIONS(3189), - [anon_sym_explicit] = ACTIONS(3189), - [anon_sym_typename] = ACTIONS(3189), - [anon_sym_template] = ACTIONS(3189), - [anon_sym_operator] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_delete] = ACTIONS(3189), - [anon_sym_throw] = ACTIONS(3189), - [anon_sym_namespace] = ACTIONS(3189), - [anon_sym_using] = ACTIONS(3189), - [anon_sym_static_assert] = ACTIONS(3189), - [anon_sym_concept] = ACTIONS(3189), - [anon_sym_co_return] = ACTIONS(3189), - [anon_sym_co_yield] = ACTIONS(3189), - [anon_sym_R_DQUOTE] = ACTIONS(3191), - [anon_sym_LR_DQUOTE] = ACTIONS(3191), - [anon_sym_uR_DQUOTE] = ACTIONS(3191), - [anon_sym_UR_DQUOTE] = ACTIONS(3191), - [anon_sym_u8R_DQUOTE] = ACTIONS(3191), - [anon_sym_co_await] = ACTIONS(3189), - [anon_sym_new] = ACTIONS(3189), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3189), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3191), - [sym_semgrep_named_ellipsis] = ACTIONS(3191), + [695] = { + [sym_identifier] = ACTIONS(3551), + [aux_sym_preproc_include_token1] = ACTIONS(3551), + [aux_sym_preproc_def_token1] = ACTIONS(3551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3553), + [aux_sym_preproc_if_token1] = ACTIONS(3551), + [aux_sym_preproc_if_token2] = ACTIONS(3551), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3551), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3551), + [sym_preproc_directive] = ACTIONS(3551), + [anon_sym_LPAREN2] = ACTIONS(3553), + [anon_sym_BANG] = ACTIONS(3553), + [anon_sym_TILDE] = ACTIONS(3553), + [anon_sym_DASH] = ACTIONS(3551), + [anon_sym_PLUS] = ACTIONS(3551), + [anon_sym_STAR] = ACTIONS(3553), + [anon_sym_AMP_AMP] = ACTIONS(3553), + [anon_sym_AMP] = ACTIONS(3551), + [anon_sym_SEMI] = ACTIONS(3553), + [anon_sym___extension__] = ACTIONS(3551), + [anon_sym_typedef] = ACTIONS(3551), + [anon_sym_extern] = ACTIONS(3551), + [anon_sym___attribute__] = ACTIONS(3551), + [anon_sym_COLON_COLON] = ACTIONS(3553), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3553), + [anon_sym___declspec] = ACTIONS(3551), + [anon_sym___based] = ACTIONS(3551), + [anon_sym___cdecl] = ACTIONS(3551), + [anon_sym___clrcall] = ACTIONS(3551), + [anon_sym___stdcall] = ACTIONS(3551), + [anon_sym___fastcall] = ACTIONS(3551), + [anon_sym___thiscall] = ACTIONS(3551), + [anon_sym___vectorcall] = ACTIONS(3551), + [anon_sym_LBRACE] = ACTIONS(3553), + [anon_sym_signed] = ACTIONS(3551), + [anon_sym_unsigned] = ACTIONS(3551), + [anon_sym_long] = ACTIONS(3551), + [anon_sym_short] = ACTIONS(3551), + [anon_sym_LBRACK] = ACTIONS(3551), + [anon_sym_static] = ACTIONS(3551), + [anon_sym_register] = ACTIONS(3551), + [anon_sym_inline] = ACTIONS(3551), + [anon_sym___inline] = ACTIONS(3551), + [anon_sym___inline__] = ACTIONS(3551), + [anon_sym___forceinline] = ACTIONS(3551), + [anon_sym_thread_local] = ACTIONS(3551), + [anon_sym___thread] = ACTIONS(3551), + [anon_sym_const] = ACTIONS(3551), + [anon_sym_constexpr] = ACTIONS(3551), + [anon_sym_volatile] = ACTIONS(3551), + [anon_sym_restrict] = ACTIONS(3551), + [anon_sym___restrict__] = ACTIONS(3551), + [anon_sym__Atomic] = ACTIONS(3551), + [anon_sym__Noreturn] = ACTIONS(3551), + [anon_sym_noreturn] = ACTIONS(3551), + [anon_sym_mutable] = ACTIONS(3551), + [anon_sym_constinit] = ACTIONS(3551), + [anon_sym_consteval] = ACTIONS(3551), + [sym_primitive_type] = ACTIONS(3551), + [anon_sym_enum] = ACTIONS(3551), + [anon_sym_class] = ACTIONS(3551), + [anon_sym_struct] = ACTIONS(3551), + [anon_sym_union] = ACTIONS(3551), + [anon_sym_if] = ACTIONS(3551), + [anon_sym_switch] = ACTIONS(3551), + [anon_sym_case] = ACTIONS(3551), + [anon_sym_default] = ACTIONS(3551), + [anon_sym_while] = ACTIONS(3551), + [anon_sym_do] = ACTIONS(3551), + [anon_sym_for] = ACTIONS(3551), + [anon_sym_return] = ACTIONS(3551), + [anon_sym_break] = ACTIONS(3551), + [anon_sym_continue] = ACTIONS(3551), + [anon_sym_goto] = ACTIONS(3551), + [anon_sym___try] = ACTIONS(3551), + [anon_sym___leave] = ACTIONS(3551), + [anon_sym_not] = ACTIONS(3551), + [anon_sym_compl] = ACTIONS(3551), + [anon_sym_DASH_DASH] = ACTIONS(3553), + [anon_sym_PLUS_PLUS] = ACTIONS(3553), + [anon_sym_sizeof] = ACTIONS(3551), + [anon_sym___alignof__] = ACTIONS(3551), + [anon_sym___alignof] = ACTIONS(3551), + [anon_sym__alignof] = ACTIONS(3551), + [anon_sym_alignof] = ACTIONS(3551), + [anon_sym__Alignof] = ACTIONS(3551), + [anon_sym_offsetof] = ACTIONS(3551), + [anon_sym__Generic] = ACTIONS(3551), + [anon_sym_asm] = ACTIONS(3551), + [anon_sym___asm__] = ACTIONS(3551), + [sym_number_literal] = ACTIONS(3553), + [anon_sym_L_SQUOTE] = ACTIONS(3553), + [anon_sym_u_SQUOTE] = ACTIONS(3553), + [anon_sym_U_SQUOTE] = ACTIONS(3553), + [anon_sym_u8_SQUOTE] = ACTIONS(3553), + [anon_sym_SQUOTE] = ACTIONS(3553), + [anon_sym_L_DQUOTE] = ACTIONS(3553), + [anon_sym_u_DQUOTE] = ACTIONS(3553), + [anon_sym_U_DQUOTE] = ACTIONS(3553), + [anon_sym_u8_DQUOTE] = ACTIONS(3553), + [anon_sym_DQUOTE] = ACTIONS(3553), + [sym_true] = ACTIONS(3551), + [sym_false] = ACTIONS(3551), + [anon_sym_NULL] = ACTIONS(3551), + [anon_sym_nullptr] = ACTIONS(3551), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3551), + [anon_sym_decltype] = ACTIONS(3551), + [anon_sym_virtual] = ACTIONS(3551), + [anon_sym_alignas] = ACTIONS(3551), + [anon_sym_explicit] = ACTIONS(3551), + [anon_sym_typename] = ACTIONS(3551), + [anon_sym_template] = ACTIONS(3551), + [anon_sym_operator] = ACTIONS(3551), + [anon_sym_try] = ACTIONS(3551), + [anon_sym_delete] = ACTIONS(3551), + [anon_sym_throw] = ACTIONS(3551), + [anon_sym_namespace] = ACTIONS(3551), + [anon_sym_using] = ACTIONS(3551), + [anon_sym_static_assert] = ACTIONS(3551), + [anon_sym_concept] = ACTIONS(3551), + [anon_sym_co_return] = ACTIONS(3551), + [anon_sym_co_yield] = ACTIONS(3551), + [anon_sym_R_DQUOTE] = ACTIONS(3553), + [anon_sym_LR_DQUOTE] = ACTIONS(3553), + [anon_sym_uR_DQUOTE] = ACTIONS(3553), + [anon_sym_UR_DQUOTE] = ACTIONS(3553), + [anon_sym_u8R_DQUOTE] = ACTIONS(3553), + [anon_sym_co_await] = ACTIONS(3551), + [anon_sym_new] = ACTIONS(3551), + [anon_sym_requires] = ACTIONS(3551), + [sym_this] = ACTIONS(3551), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3553), + [sym_semgrep_named_ellipsis] = ACTIONS(3553), }, - [653] = { - [sym_identifier] = ACTIONS(3193), - [aux_sym_preproc_include_token1] = ACTIONS(3193), - [aux_sym_preproc_def_token1] = ACTIONS(3193), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3195), - [aux_sym_preproc_if_token1] = ACTIONS(3193), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3193), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3193), - [sym_preproc_directive] = ACTIONS(3193), - [anon_sym_LPAREN2] = ACTIONS(3195), - [anon_sym_BANG] = ACTIONS(3195), - [anon_sym_TILDE] = ACTIONS(3195), - [anon_sym_DASH] = ACTIONS(3193), - [anon_sym_PLUS] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3195), - [anon_sym___extension__] = ACTIONS(3193), - [anon_sym_typedef] = ACTIONS(3193), - [anon_sym_extern] = ACTIONS(3193), - [anon_sym___attribute__] = ACTIONS(3193), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3195), - [anon_sym___declspec] = ACTIONS(3193), - [anon_sym___based] = ACTIONS(3193), - [anon_sym___cdecl] = ACTIONS(3193), - [anon_sym___clrcall] = ACTIONS(3193), - [anon_sym___stdcall] = ACTIONS(3193), - [anon_sym___fastcall] = ACTIONS(3193), - [anon_sym___thiscall] = ACTIONS(3193), - [anon_sym___vectorcall] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3195), - [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_signed] = ACTIONS(3193), - [anon_sym_unsigned] = ACTIONS(3193), - [anon_sym_long] = ACTIONS(3193), - [anon_sym_short] = ACTIONS(3193), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_static] = ACTIONS(3193), - [anon_sym_register] = ACTIONS(3193), - [anon_sym_inline] = ACTIONS(3193), - [anon_sym___inline] = ACTIONS(3193), - [anon_sym___inline__] = ACTIONS(3193), - [anon_sym___forceinline] = ACTIONS(3193), - [anon_sym_thread_local] = ACTIONS(3193), - [anon_sym___thread] = ACTIONS(3193), - [anon_sym_const] = ACTIONS(3193), - [anon_sym_constexpr] = ACTIONS(3193), - [anon_sym_volatile] = ACTIONS(3193), - [anon_sym_restrict] = ACTIONS(3193), - [anon_sym___restrict__] = ACTIONS(3193), - [anon_sym__Atomic] = ACTIONS(3193), - [anon_sym__Noreturn] = ACTIONS(3193), - [anon_sym_noreturn] = ACTIONS(3193), - [anon_sym_mutable] = ACTIONS(3193), - [anon_sym_constinit] = ACTIONS(3193), - [anon_sym_consteval] = ACTIONS(3193), - [sym_primitive_type] = ACTIONS(3193), - [anon_sym_enum] = ACTIONS(3193), - [anon_sym_class] = ACTIONS(3193), - [anon_sym_struct] = ACTIONS(3193), - [anon_sym_union] = ACTIONS(3193), - [anon_sym_if] = ACTIONS(3193), - [anon_sym_else] = ACTIONS(3193), - [anon_sym_switch] = ACTIONS(3193), - [anon_sym_case] = ACTIONS(3193), - [anon_sym_default] = ACTIONS(3193), - [anon_sym_while] = ACTIONS(3193), - [anon_sym_do] = ACTIONS(3193), - [anon_sym_for] = ACTIONS(3193), - [anon_sym_return] = ACTIONS(3193), - [anon_sym_break] = ACTIONS(3193), - [anon_sym_continue] = ACTIONS(3193), - [anon_sym_goto] = ACTIONS(3193), - [anon_sym___try] = ACTIONS(3193), - [anon_sym___leave] = ACTIONS(3193), - [anon_sym_not] = ACTIONS(3193), - [anon_sym_compl] = ACTIONS(3193), - [anon_sym_DASH_DASH] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_sizeof] = ACTIONS(3193), - [anon_sym___alignof__] = ACTIONS(3193), - [anon_sym___alignof] = ACTIONS(3193), - [anon_sym__alignof] = ACTIONS(3193), - [anon_sym_alignof] = ACTIONS(3193), - [anon_sym__Alignof] = ACTIONS(3193), - [anon_sym_offsetof] = ACTIONS(3193), - [anon_sym__Generic] = ACTIONS(3193), - [anon_sym_asm] = ACTIONS(3193), - [anon_sym___asm__] = ACTIONS(3193), - [sym_number_literal] = ACTIONS(3195), - [anon_sym_L_SQUOTE] = ACTIONS(3195), - [anon_sym_u_SQUOTE] = ACTIONS(3195), - [anon_sym_U_SQUOTE] = ACTIONS(3195), - [anon_sym_u8_SQUOTE] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(3195), - [anon_sym_L_DQUOTE] = ACTIONS(3195), - [anon_sym_u_DQUOTE] = ACTIONS(3195), - [anon_sym_U_DQUOTE] = ACTIONS(3195), - [anon_sym_u8_DQUOTE] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(3195), - [sym_true] = ACTIONS(3193), - [sym_false] = ACTIONS(3193), - [anon_sym_NULL] = ACTIONS(3193), - [anon_sym_nullptr] = ACTIONS(3193), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3193), - [anon_sym_decltype] = ACTIONS(3193), - [anon_sym_virtual] = ACTIONS(3193), - [anon_sym_alignas] = ACTIONS(3193), - [anon_sym_explicit] = ACTIONS(3193), - [anon_sym_typename] = ACTIONS(3193), - [anon_sym_template] = ACTIONS(3193), - [anon_sym_operator] = ACTIONS(3193), - [anon_sym_try] = ACTIONS(3193), - [anon_sym_delete] = ACTIONS(3193), - [anon_sym_throw] = ACTIONS(3193), - [anon_sym_namespace] = ACTIONS(3193), - [anon_sym_using] = ACTIONS(3193), - [anon_sym_static_assert] = ACTIONS(3193), - [anon_sym_concept] = ACTIONS(3193), - [anon_sym_co_return] = ACTIONS(3193), - [anon_sym_co_yield] = ACTIONS(3193), - [anon_sym_R_DQUOTE] = ACTIONS(3195), - [anon_sym_LR_DQUOTE] = ACTIONS(3195), - [anon_sym_uR_DQUOTE] = ACTIONS(3195), - [anon_sym_UR_DQUOTE] = ACTIONS(3195), - [anon_sym_u8R_DQUOTE] = ACTIONS(3195), - [anon_sym_co_await] = ACTIONS(3193), - [anon_sym_new] = ACTIONS(3193), - [anon_sym_requires] = ACTIONS(3193), - [sym_this] = ACTIONS(3193), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3195), - [sym_semgrep_named_ellipsis] = ACTIONS(3195), + [696] = { + [sym_identifier] = ACTIONS(3619), + [aux_sym_preproc_include_token1] = ACTIONS(3619), + [aux_sym_preproc_def_token1] = ACTIONS(3619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3621), + [aux_sym_preproc_if_token1] = ACTIONS(3619), + [aux_sym_preproc_if_token2] = ACTIONS(3619), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3619), + [sym_preproc_directive] = ACTIONS(3619), + [anon_sym_LPAREN2] = ACTIONS(3621), + [anon_sym_BANG] = ACTIONS(3621), + [anon_sym_TILDE] = ACTIONS(3621), + [anon_sym_DASH] = ACTIONS(3619), + [anon_sym_PLUS] = ACTIONS(3619), + [anon_sym_STAR] = ACTIONS(3621), + [anon_sym_AMP_AMP] = ACTIONS(3621), + [anon_sym_AMP] = ACTIONS(3619), + [anon_sym_SEMI] = ACTIONS(3621), + [anon_sym___extension__] = ACTIONS(3619), + [anon_sym_typedef] = ACTIONS(3619), + [anon_sym_extern] = ACTIONS(3619), + [anon_sym___attribute__] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3621), + [anon_sym___declspec] = ACTIONS(3619), + [anon_sym___based] = ACTIONS(3619), + [anon_sym___cdecl] = ACTIONS(3619), + [anon_sym___clrcall] = ACTIONS(3619), + [anon_sym___stdcall] = ACTIONS(3619), + [anon_sym___fastcall] = ACTIONS(3619), + [anon_sym___thiscall] = ACTIONS(3619), + [anon_sym___vectorcall] = ACTIONS(3619), + [anon_sym_LBRACE] = ACTIONS(3621), + [anon_sym_signed] = ACTIONS(3619), + [anon_sym_unsigned] = ACTIONS(3619), + [anon_sym_long] = ACTIONS(3619), + [anon_sym_short] = ACTIONS(3619), + [anon_sym_LBRACK] = ACTIONS(3619), + [anon_sym_static] = ACTIONS(3619), + [anon_sym_register] = ACTIONS(3619), + [anon_sym_inline] = ACTIONS(3619), + [anon_sym___inline] = ACTIONS(3619), + [anon_sym___inline__] = ACTIONS(3619), + [anon_sym___forceinline] = ACTIONS(3619), + [anon_sym_thread_local] = ACTIONS(3619), + [anon_sym___thread] = ACTIONS(3619), + [anon_sym_const] = ACTIONS(3619), + [anon_sym_constexpr] = ACTIONS(3619), + [anon_sym_volatile] = ACTIONS(3619), + [anon_sym_restrict] = ACTIONS(3619), + [anon_sym___restrict__] = ACTIONS(3619), + [anon_sym__Atomic] = ACTIONS(3619), + [anon_sym__Noreturn] = ACTIONS(3619), + [anon_sym_noreturn] = ACTIONS(3619), + [anon_sym_mutable] = ACTIONS(3619), + [anon_sym_constinit] = ACTIONS(3619), + [anon_sym_consteval] = ACTIONS(3619), + [sym_primitive_type] = ACTIONS(3619), + [anon_sym_enum] = ACTIONS(3619), + [anon_sym_class] = ACTIONS(3619), + [anon_sym_struct] = ACTIONS(3619), + [anon_sym_union] = ACTIONS(3619), + [anon_sym_if] = ACTIONS(3619), + [anon_sym_switch] = ACTIONS(3619), + [anon_sym_case] = ACTIONS(3619), + [anon_sym_default] = ACTIONS(3619), + [anon_sym_while] = ACTIONS(3619), + [anon_sym_do] = ACTIONS(3619), + [anon_sym_for] = ACTIONS(3619), + [anon_sym_return] = ACTIONS(3619), + [anon_sym_break] = ACTIONS(3619), + [anon_sym_continue] = ACTIONS(3619), + [anon_sym_goto] = ACTIONS(3619), + [anon_sym___try] = ACTIONS(3619), + [anon_sym___leave] = ACTIONS(3619), + [anon_sym_not] = ACTIONS(3619), + [anon_sym_compl] = ACTIONS(3619), + [anon_sym_DASH_DASH] = ACTIONS(3621), + [anon_sym_PLUS_PLUS] = ACTIONS(3621), + [anon_sym_sizeof] = ACTIONS(3619), + [anon_sym___alignof__] = ACTIONS(3619), + [anon_sym___alignof] = ACTIONS(3619), + [anon_sym__alignof] = ACTIONS(3619), + [anon_sym_alignof] = ACTIONS(3619), + [anon_sym__Alignof] = ACTIONS(3619), + [anon_sym_offsetof] = ACTIONS(3619), + [anon_sym__Generic] = ACTIONS(3619), + [anon_sym_asm] = ACTIONS(3619), + [anon_sym___asm__] = ACTIONS(3619), + [sym_number_literal] = ACTIONS(3621), + [anon_sym_L_SQUOTE] = ACTIONS(3621), + [anon_sym_u_SQUOTE] = ACTIONS(3621), + [anon_sym_U_SQUOTE] = ACTIONS(3621), + [anon_sym_u8_SQUOTE] = ACTIONS(3621), + [anon_sym_SQUOTE] = ACTIONS(3621), + [anon_sym_L_DQUOTE] = ACTIONS(3621), + [anon_sym_u_DQUOTE] = ACTIONS(3621), + [anon_sym_U_DQUOTE] = ACTIONS(3621), + [anon_sym_u8_DQUOTE] = ACTIONS(3621), + [anon_sym_DQUOTE] = ACTIONS(3621), + [sym_true] = ACTIONS(3619), + [sym_false] = ACTIONS(3619), + [anon_sym_NULL] = ACTIONS(3619), + [anon_sym_nullptr] = ACTIONS(3619), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3619), + [anon_sym_decltype] = ACTIONS(3619), + [anon_sym_virtual] = ACTIONS(3619), + [anon_sym_alignas] = ACTIONS(3619), + [anon_sym_explicit] = ACTIONS(3619), + [anon_sym_typename] = ACTIONS(3619), + [anon_sym_template] = ACTIONS(3619), + [anon_sym_operator] = ACTIONS(3619), + [anon_sym_try] = ACTIONS(3619), + [anon_sym_delete] = ACTIONS(3619), + [anon_sym_throw] = ACTIONS(3619), + [anon_sym_namespace] = ACTIONS(3619), + [anon_sym_using] = ACTIONS(3619), + [anon_sym_static_assert] = ACTIONS(3619), + [anon_sym_concept] = ACTIONS(3619), + [anon_sym_co_return] = ACTIONS(3619), + [anon_sym_co_yield] = ACTIONS(3619), + [anon_sym_R_DQUOTE] = ACTIONS(3621), + [anon_sym_LR_DQUOTE] = ACTIONS(3621), + [anon_sym_uR_DQUOTE] = ACTIONS(3621), + [anon_sym_UR_DQUOTE] = ACTIONS(3621), + [anon_sym_u8R_DQUOTE] = ACTIONS(3621), + [anon_sym_co_await] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(3619), + [anon_sym_requires] = ACTIONS(3619), + [sym_this] = ACTIONS(3619), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3621), + [sym_semgrep_named_ellipsis] = ACTIONS(3621), }, - [654] = { - [sym_identifier] = ACTIONS(3078), - [aux_sym_preproc_include_token1] = ACTIONS(3078), - [aux_sym_preproc_def_token1] = ACTIONS(3078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3080), - [anon_sym_COMMA] = ACTIONS(3187), - [aux_sym_preproc_if_token1] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3078), - [sym_preproc_directive] = ACTIONS(3078), - [anon_sym_LPAREN2] = ACTIONS(3080), - [anon_sym_BANG] = ACTIONS(3080), - [anon_sym_TILDE] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym_SEMI] = ACTIONS(3187), - [anon_sym___extension__] = ACTIONS(3078), - [anon_sym_typedef] = ACTIONS(3078), - [anon_sym_extern] = ACTIONS(3078), - [anon_sym___attribute__] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3080), - [anon_sym___declspec] = ACTIONS(3078), - [anon_sym___based] = ACTIONS(3078), - [anon_sym___cdecl] = ACTIONS(3078), - [anon_sym___clrcall] = ACTIONS(3078), - [anon_sym___stdcall] = ACTIONS(3078), - [anon_sym___fastcall] = ACTIONS(3078), - [anon_sym___thiscall] = ACTIONS(3078), - [anon_sym___vectorcall] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_RBRACE] = ACTIONS(3080), - [anon_sym_signed] = ACTIONS(3078), - [anon_sym_unsigned] = ACTIONS(3078), - [anon_sym_long] = ACTIONS(3078), - [anon_sym_short] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_static] = ACTIONS(3078), - [anon_sym_register] = ACTIONS(3078), - [anon_sym_inline] = ACTIONS(3078), - [anon_sym___inline] = ACTIONS(3078), - [anon_sym___inline__] = ACTIONS(3078), - [anon_sym___forceinline] = ACTIONS(3078), - [anon_sym_thread_local] = ACTIONS(3078), - [anon_sym___thread] = ACTIONS(3078), - [anon_sym_const] = ACTIONS(3078), - [anon_sym_constexpr] = ACTIONS(3078), - [anon_sym_volatile] = ACTIONS(3078), - [anon_sym_restrict] = ACTIONS(3078), - [anon_sym___restrict__] = ACTIONS(3078), - [anon_sym__Atomic] = ACTIONS(3078), - [anon_sym__Noreturn] = ACTIONS(3078), - [anon_sym_noreturn] = ACTIONS(3078), - [anon_sym_mutable] = ACTIONS(3078), - [anon_sym_constinit] = ACTIONS(3078), - [anon_sym_consteval] = ACTIONS(3078), - [sym_primitive_type] = ACTIONS(3078), - [anon_sym_enum] = ACTIONS(3078), - [anon_sym_class] = ACTIONS(3078), - [anon_sym_struct] = ACTIONS(3078), - [anon_sym_union] = ACTIONS(3078), - [anon_sym_if] = ACTIONS(3078), - [anon_sym_switch] = ACTIONS(3078), - [anon_sym_case] = ACTIONS(3078), - [anon_sym_default] = ACTIONS(3078), - [anon_sym_while] = ACTIONS(3078), - [anon_sym_do] = ACTIONS(3078), - [anon_sym_for] = ACTIONS(3078), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_break] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(3078), - [anon_sym_goto] = ACTIONS(3078), - [anon_sym___try] = ACTIONS(3078), - [anon_sym___leave] = ACTIONS(3078), - [anon_sym_not] = ACTIONS(3078), - [anon_sym_compl] = ACTIONS(3078), - [anon_sym_DASH_DASH] = ACTIONS(3080), - [anon_sym_PLUS_PLUS] = ACTIONS(3080), - [anon_sym_sizeof] = ACTIONS(3078), - [anon_sym___alignof__] = ACTIONS(3078), - [anon_sym___alignof] = ACTIONS(3078), - [anon_sym__alignof] = ACTIONS(3078), - [anon_sym_alignof] = ACTIONS(3078), - [anon_sym__Alignof] = ACTIONS(3078), - [anon_sym_offsetof] = ACTIONS(3078), - [anon_sym__Generic] = ACTIONS(3078), - [anon_sym_asm] = ACTIONS(3078), - [anon_sym___asm__] = ACTIONS(3078), - [sym_number_literal] = ACTIONS(3080), - [anon_sym_L_SQUOTE] = ACTIONS(3080), - [anon_sym_u_SQUOTE] = ACTIONS(3080), - [anon_sym_U_SQUOTE] = ACTIONS(3080), - [anon_sym_u8_SQUOTE] = ACTIONS(3080), - [anon_sym_SQUOTE] = ACTIONS(3080), - [anon_sym_L_DQUOTE] = ACTIONS(3080), - [anon_sym_u_DQUOTE] = ACTIONS(3080), - [anon_sym_U_DQUOTE] = ACTIONS(3080), - [anon_sym_u8_DQUOTE] = ACTIONS(3080), - [anon_sym_DQUOTE] = ACTIONS(3080), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [anon_sym_NULL] = ACTIONS(3078), - [anon_sym_nullptr] = ACTIONS(3078), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3078), - [anon_sym_decltype] = ACTIONS(3078), - [anon_sym_virtual] = ACTIONS(3078), - [anon_sym_alignas] = ACTIONS(3078), - [anon_sym_explicit] = ACTIONS(3078), - [anon_sym_typename] = ACTIONS(3078), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_operator] = ACTIONS(3078), - [anon_sym_try] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3078), - [anon_sym_throw] = ACTIONS(3078), - [anon_sym_namespace] = ACTIONS(3078), - [anon_sym_using] = ACTIONS(3078), - [anon_sym_static_assert] = ACTIONS(3078), - [anon_sym_concept] = ACTIONS(3078), - [anon_sym_co_return] = ACTIONS(3078), - [anon_sym_co_yield] = ACTIONS(3078), - [anon_sym_R_DQUOTE] = ACTIONS(3080), - [anon_sym_LR_DQUOTE] = ACTIONS(3080), - [anon_sym_uR_DQUOTE] = ACTIONS(3080), - [anon_sym_UR_DQUOTE] = ACTIONS(3080), - [anon_sym_u8R_DQUOTE] = ACTIONS(3080), - [anon_sym_co_await] = ACTIONS(3078), - [anon_sym_new] = ACTIONS(3078), - [anon_sym_requires] = ACTIONS(3078), - [sym_this] = ACTIONS(3078), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3080), - [sym_semgrep_named_ellipsis] = ACTIONS(3080), + [697] = { + [sym_identifier] = ACTIONS(3406), + [aux_sym_preproc_include_token1] = ACTIONS(3406), + [aux_sym_preproc_def_token1] = ACTIONS(3406), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3408), + [aux_sym_preproc_if_token1] = ACTIONS(3406), + [aux_sym_preproc_if_token2] = ACTIONS(3406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3406), + [sym_preproc_directive] = ACTIONS(3406), + [anon_sym_LPAREN2] = ACTIONS(3408), + [anon_sym_BANG] = ACTIONS(3408), + [anon_sym_TILDE] = ACTIONS(3408), + [anon_sym_DASH] = ACTIONS(3406), + [anon_sym_PLUS] = ACTIONS(3406), + [anon_sym_STAR] = ACTIONS(3408), + [anon_sym_AMP_AMP] = ACTIONS(3408), + [anon_sym_AMP] = ACTIONS(3406), + [anon_sym_SEMI] = ACTIONS(3408), + [anon_sym___extension__] = ACTIONS(3406), + [anon_sym_typedef] = ACTIONS(3406), + [anon_sym_extern] = ACTIONS(3406), + [anon_sym___attribute__] = ACTIONS(3406), + [anon_sym_COLON_COLON] = ACTIONS(3408), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3408), + [anon_sym___declspec] = ACTIONS(3406), + [anon_sym___based] = ACTIONS(3406), + [anon_sym___cdecl] = ACTIONS(3406), + [anon_sym___clrcall] = ACTIONS(3406), + [anon_sym___stdcall] = ACTIONS(3406), + [anon_sym___fastcall] = ACTIONS(3406), + [anon_sym___thiscall] = ACTIONS(3406), + [anon_sym___vectorcall] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3408), + [anon_sym_signed] = ACTIONS(3406), + [anon_sym_unsigned] = ACTIONS(3406), + [anon_sym_long] = ACTIONS(3406), + [anon_sym_short] = ACTIONS(3406), + [anon_sym_LBRACK] = ACTIONS(3406), + [anon_sym_static] = ACTIONS(3406), + [anon_sym_register] = ACTIONS(3406), + [anon_sym_inline] = ACTIONS(3406), + [anon_sym___inline] = ACTIONS(3406), + [anon_sym___inline__] = ACTIONS(3406), + [anon_sym___forceinline] = ACTIONS(3406), + [anon_sym_thread_local] = ACTIONS(3406), + [anon_sym___thread] = ACTIONS(3406), + [anon_sym_const] = ACTIONS(3406), + [anon_sym_constexpr] = ACTIONS(3406), + [anon_sym_volatile] = ACTIONS(3406), + [anon_sym_restrict] = ACTIONS(3406), + [anon_sym___restrict__] = ACTIONS(3406), + [anon_sym__Atomic] = ACTIONS(3406), + [anon_sym__Noreturn] = ACTIONS(3406), + [anon_sym_noreturn] = ACTIONS(3406), + [anon_sym_mutable] = ACTIONS(3406), + [anon_sym_constinit] = ACTIONS(3406), + [anon_sym_consteval] = ACTIONS(3406), + [sym_primitive_type] = ACTIONS(3406), + [anon_sym_enum] = ACTIONS(3406), + [anon_sym_class] = ACTIONS(3406), + [anon_sym_struct] = ACTIONS(3406), + [anon_sym_union] = ACTIONS(3406), + [anon_sym_if] = ACTIONS(3406), + [anon_sym_switch] = ACTIONS(3406), + [anon_sym_case] = ACTIONS(3406), + [anon_sym_default] = ACTIONS(3406), + [anon_sym_while] = ACTIONS(3406), + [anon_sym_do] = ACTIONS(3406), + [anon_sym_for] = ACTIONS(3406), + [anon_sym_return] = ACTIONS(3406), + [anon_sym_break] = ACTIONS(3406), + [anon_sym_continue] = ACTIONS(3406), + [anon_sym_goto] = ACTIONS(3406), + [anon_sym___try] = ACTIONS(3406), + [anon_sym___leave] = ACTIONS(3406), + [anon_sym_not] = ACTIONS(3406), + [anon_sym_compl] = ACTIONS(3406), + [anon_sym_DASH_DASH] = ACTIONS(3408), + [anon_sym_PLUS_PLUS] = ACTIONS(3408), + [anon_sym_sizeof] = ACTIONS(3406), + [anon_sym___alignof__] = ACTIONS(3406), + [anon_sym___alignof] = ACTIONS(3406), + [anon_sym__alignof] = ACTIONS(3406), + [anon_sym_alignof] = ACTIONS(3406), + [anon_sym__Alignof] = ACTIONS(3406), + [anon_sym_offsetof] = ACTIONS(3406), + [anon_sym__Generic] = ACTIONS(3406), + [anon_sym_asm] = ACTIONS(3406), + [anon_sym___asm__] = ACTIONS(3406), + [sym_number_literal] = ACTIONS(3408), + [anon_sym_L_SQUOTE] = ACTIONS(3408), + [anon_sym_u_SQUOTE] = ACTIONS(3408), + [anon_sym_U_SQUOTE] = ACTIONS(3408), + [anon_sym_u8_SQUOTE] = ACTIONS(3408), + [anon_sym_SQUOTE] = ACTIONS(3408), + [anon_sym_L_DQUOTE] = ACTIONS(3408), + [anon_sym_u_DQUOTE] = ACTIONS(3408), + [anon_sym_U_DQUOTE] = ACTIONS(3408), + [anon_sym_u8_DQUOTE] = ACTIONS(3408), + [anon_sym_DQUOTE] = ACTIONS(3408), + [sym_true] = ACTIONS(3406), + [sym_false] = ACTIONS(3406), + [anon_sym_NULL] = ACTIONS(3406), + [anon_sym_nullptr] = ACTIONS(3406), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3406), + [anon_sym_decltype] = ACTIONS(3406), + [anon_sym_virtual] = ACTIONS(3406), + [anon_sym_alignas] = ACTIONS(3406), + [anon_sym_explicit] = ACTIONS(3406), + [anon_sym_typename] = ACTIONS(3406), + [anon_sym_template] = ACTIONS(3406), + [anon_sym_operator] = ACTIONS(3406), + [anon_sym_try] = ACTIONS(3406), + [anon_sym_delete] = ACTIONS(3406), + [anon_sym_throw] = ACTIONS(3406), + [anon_sym_namespace] = ACTIONS(3406), + [anon_sym_using] = ACTIONS(3406), + [anon_sym_static_assert] = ACTIONS(3406), + [anon_sym_concept] = ACTIONS(3406), + [anon_sym_co_return] = ACTIONS(3406), + [anon_sym_co_yield] = ACTIONS(3406), + [anon_sym_R_DQUOTE] = ACTIONS(3408), + [anon_sym_LR_DQUOTE] = ACTIONS(3408), + [anon_sym_uR_DQUOTE] = ACTIONS(3408), + [anon_sym_UR_DQUOTE] = ACTIONS(3408), + [anon_sym_u8R_DQUOTE] = ACTIONS(3408), + [anon_sym_co_await] = ACTIONS(3406), + [anon_sym_new] = ACTIONS(3406), + [anon_sym_requires] = ACTIONS(3406), + [sym_this] = ACTIONS(3406), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3408), + [sym_semgrep_named_ellipsis] = ACTIONS(3408), }, - [655] = { - [sym_preproc_def] = STATE(1988), - [sym_preproc_function_def] = STATE(1988), - [sym_preproc_call] = STATE(1988), - [sym_preproc_if_in_field_declaration_list] = STATE(1988), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1988), - [sym_preproc_else_in_field_declaration_list] = STATE(10517), - [sym_preproc_elif_in_field_declaration_list] = STATE(10517), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(10517), - [sym_type_definition] = STATE(1988), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6897), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7690), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(662), - [sym_field_declaration] = STATE(1988), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(1988), - [sym_operator_cast] = STATE(8046), - [sym_inline_method_definition] = STATE(1988), - [sym_constructor_specifiers] = STATE(1934), - [sym_operator_cast_definition] = STATE(1988), - [sym_operator_cast_declaration] = STATE(1988), - [sym_constructor_or_destructor_definition] = STATE(1988), - [sym_constructor_or_destructor_declaration] = STATE(1988), - [sym_friend_declaration] = STATE(1988), - [sym_access_specifier] = STATE(9892), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(1988), - [sym_alias_declaration] = STATE(1988), - [sym_static_assert_declaration] = STATE(1988), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8046), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(662), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1934), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(3684), - [aux_sym_preproc_if_token1] = ACTIONS(3686), - [aux_sym_preproc_if_token2] = ACTIONS(3764), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [aux_sym_preproc_else_token1] = ACTIONS(3694), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3698), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3700), - [sym_preproc_directive] = ACTIONS(3702), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(3712), - [anon_sym_typedef] = ACTIONS(3714), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(3732), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(3734), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(3738), - [anon_sym_static_assert] = ACTIONS(3740), + [698] = { + [sym_identifier] = ACTIONS(3613), + [aux_sym_preproc_include_token1] = ACTIONS(3613), + [aux_sym_preproc_def_token1] = ACTIONS(3613), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3615), + [aux_sym_preproc_if_token1] = ACTIONS(3613), + [aux_sym_preproc_if_token2] = ACTIONS(3613), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3613), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3613), + [sym_preproc_directive] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3615), + [anon_sym_TILDE] = ACTIONS(3615), + [anon_sym_DASH] = ACTIONS(3613), + [anon_sym_PLUS] = ACTIONS(3613), + [anon_sym_STAR] = ACTIONS(3615), + [anon_sym_AMP_AMP] = ACTIONS(3615), + [anon_sym_AMP] = ACTIONS(3613), + [anon_sym_SEMI] = ACTIONS(3615), + [anon_sym___extension__] = ACTIONS(3613), + [anon_sym_typedef] = ACTIONS(3613), + [anon_sym_extern] = ACTIONS(3613), + [anon_sym___attribute__] = ACTIONS(3613), + [anon_sym_COLON_COLON] = ACTIONS(3615), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3615), + [anon_sym___declspec] = ACTIONS(3613), + [anon_sym___based] = ACTIONS(3613), + [anon_sym___cdecl] = ACTIONS(3613), + [anon_sym___clrcall] = ACTIONS(3613), + [anon_sym___stdcall] = ACTIONS(3613), + [anon_sym___fastcall] = ACTIONS(3613), + [anon_sym___thiscall] = ACTIONS(3613), + [anon_sym___vectorcall] = ACTIONS(3613), + [anon_sym_LBRACE] = ACTIONS(3615), + [anon_sym_signed] = ACTIONS(3613), + [anon_sym_unsigned] = ACTIONS(3613), + [anon_sym_long] = ACTIONS(3613), + [anon_sym_short] = ACTIONS(3613), + [anon_sym_LBRACK] = ACTIONS(3613), + [anon_sym_static] = ACTIONS(3613), + [anon_sym_register] = ACTIONS(3613), + [anon_sym_inline] = ACTIONS(3613), + [anon_sym___inline] = ACTIONS(3613), + [anon_sym___inline__] = ACTIONS(3613), + [anon_sym___forceinline] = ACTIONS(3613), + [anon_sym_thread_local] = ACTIONS(3613), + [anon_sym___thread] = ACTIONS(3613), + [anon_sym_const] = ACTIONS(3613), + [anon_sym_constexpr] = ACTIONS(3613), + [anon_sym_volatile] = ACTIONS(3613), + [anon_sym_restrict] = ACTIONS(3613), + [anon_sym___restrict__] = ACTIONS(3613), + [anon_sym__Atomic] = ACTIONS(3613), + [anon_sym__Noreturn] = ACTIONS(3613), + [anon_sym_noreturn] = ACTIONS(3613), + [anon_sym_mutable] = ACTIONS(3613), + [anon_sym_constinit] = ACTIONS(3613), + [anon_sym_consteval] = ACTIONS(3613), + [sym_primitive_type] = ACTIONS(3613), + [anon_sym_enum] = ACTIONS(3613), + [anon_sym_class] = ACTIONS(3613), + [anon_sym_struct] = ACTIONS(3613), + [anon_sym_union] = ACTIONS(3613), + [anon_sym_if] = ACTIONS(3613), + [anon_sym_switch] = ACTIONS(3613), + [anon_sym_case] = ACTIONS(3613), + [anon_sym_default] = ACTIONS(3613), + [anon_sym_while] = ACTIONS(3613), + [anon_sym_do] = ACTIONS(3613), + [anon_sym_for] = ACTIONS(3613), + [anon_sym_return] = ACTIONS(3613), + [anon_sym_break] = ACTIONS(3613), + [anon_sym_continue] = ACTIONS(3613), + [anon_sym_goto] = ACTIONS(3613), + [anon_sym___try] = ACTIONS(3613), + [anon_sym___leave] = ACTIONS(3613), + [anon_sym_not] = ACTIONS(3613), + [anon_sym_compl] = ACTIONS(3613), + [anon_sym_DASH_DASH] = ACTIONS(3615), + [anon_sym_PLUS_PLUS] = ACTIONS(3615), + [anon_sym_sizeof] = ACTIONS(3613), + [anon_sym___alignof__] = ACTIONS(3613), + [anon_sym___alignof] = ACTIONS(3613), + [anon_sym__alignof] = ACTIONS(3613), + [anon_sym_alignof] = ACTIONS(3613), + [anon_sym__Alignof] = ACTIONS(3613), + [anon_sym_offsetof] = ACTIONS(3613), + [anon_sym__Generic] = ACTIONS(3613), + [anon_sym_asm] = ACTIONS(3613), + [anon_sym___asm__] = ACTIONS(3613), + [sym_number_literal] = ACTIONS(3615), + [anon_sym_L_SQUOTE] = ACTIONS(3615), + [anon_sym_u_SQUOTE] = ACTIONS(3615), + [anon_sym_U_SQUOTE] = ACTIONS(3615), + [anon_sym_u8_SQUOTE] = ACTIONS(3615), + [anon_sym_SQUOTE] = ACTIONS(3615), + [anon_sym_L_DQUOTE] = ACTIONS(3615), + [anon_sym_u_DQUOTE] = ACTIONS(3615), + [anon_sym_U_DQUOTE] = ACTIONS(3615), + [anon_sym_u8_DQUOTE] = ACTIONS(3615), + [anon_sym_DQUOTE] = ACTIONS(3615), + [sym_true] = ACTIONS(3613), + [sym_false] = ACTIONS(3613), + [anon_sym_NULL] = ACTIONS(3613), + [anon_sym_nullptr] = ACTIONS(3613), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3613), + [anon_sym_decltype] = ACTIONS(3613), + [anon_sym_virtual] = ACTIONS(3613), + [anon_sym_alignas] = ACTIONS(3613), + [anon_sym_explicit] = ACTIONS(3613), + [anon_sym_typename] = ACTIONS(3613), + [anon_sym_template] = ACTIONS(3613), + [anon_sym_operator] = ACTIONS(3613), + [anon_sym_try] = ACTIONS(3613), + [anon_sym_delete] = ACTIONS(3613), + [anon_sym_throw] = ACTIONS(3613), + [anon_sym_namespace] = ACTIONS(3613), + [anon_sym_using] = ACTIONS(3613), + [anon_sym_static_assert] = ACTIONS(3613), + [anon_sym_concept] = ACTIONS(3613), + [anon_sym_co_return] = ACTIONS(3613), + [anon_sym_co_yield] = ACTIONS(3613), + [anon_sym_R_DQUOTE] = ACTIONS(3615), + [anon_sym_LR_DQUOTE] = ACTIONS(3615), + [anon_sym_uR_DQUOTE] = ACTIONS(3615), + [anon_sym_UR_DQUOTE] = ACTIONS(3615), + [anon_sym_u8R_DQUOTE] = ACTIONS(3615), + [anon_sym_co_await] = ACTIONS(3613), + [anon_sym_new] = ACTIONS(3613), + [anon_sym_requires] = ACTIONS(3613), + [sym_this] = ACTIONS(3613), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3615), + [sym_semgrep_named_ellipsis] = ACTIONS(3615), }, - [656] = { - [sym_preproc_def] = STATE(1988), - [sym_preproc_function_def] = STATE(1988), - [sym_preproc_call] = STATE(1988), - [sym_preproc_if_in_field_declaration_list] = STATE(1988), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1988), - [sym_preproc_else_in_field_declaration_list] = STATE(10542), - [sym_preproc_elif_in_field_declaration_list] = STATE(10542), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(10542), - [sym_type_definition] = STATE(1988), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6897), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7690), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(663), - [sym_field_declaration] = STATE(1988), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(1988), - [sym_operator_cast] = STATE(8046), - [sym_inline_method_definition] = STATE(1988), - [sym_constructor_specifiers] = STATE(1934), - [sym_operator_cast_definition] = STATE(1988), - [sym_operator_cast_declaration] = STATE(1988), - [sym_constructor_or_destructor_definition] = STATE(1988), - [sym_constructor_or_destructor_declaration] = STATE(1988), - [sym_friend_declaration] = STATE(1988), - [sym_access_specifier] = STATE(9892), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(1988), - [sym_alias_declaration] = STATE(1988), - [sym_static_assert_declaration] = STATE(1988), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8046), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(663), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1934), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(3684), - [aux_sym_preproc_if_token1] = ACTIONS(3686), - [aux_sym_preproc_if_token2] = ACTIONS(3766), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [aux_sym_preproc_else_token1] = ACTIONS(3694), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3698), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3700), - [sym_preproc_directive] = ACTIONS(3702), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(3712), - [anon_sym_typedef] = ACTIONS(3714), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [699] = { + [sym_identifier] = ACTIONS(3483), + [aux_sym_preproc_include_token1] = ACTIONS(3483), + [aux_sym_preproc_def_token1] = ACTIONS(3483), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3485), + [aux_sym_preproc_if_token1] = ACTIONS(3483), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3483), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3483), + [sym_preproc_directive] = ACTIONS(3483), + [anon_sym_LPAREN2] = ACTIONS(3485), + [anon_sym_BANG] = ACTIONS(3485), + [anon_sym_TILDE] = ACTIONS(3485), + [anon_sym_DASH] = ACTIONS(3483), + [anon_sym_PLUS] = ACTIONS(3483), + [anon_sym_STAR] = ACTIONS(3485), + [anon_sym_AMP_AMP] = ACTIONS(3485), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_SEMI] = ACTIONS(3485), + [anon_sym___extension__] = ACTIONS(3483), + [anon_sym_typedef] = ACTIONS(3483), + [anon_sym_extern] = ACTIONS(3483), + [anon_sym___attribute__] = ACTIONS(3483), + [anon_sym_COLON_COLON] = ACTIONS(3485), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3485), + [anon_sym___declspec] = ACTIONS(3483), + [anon_sym___based] = ACTIONS(3483), + [anon_sym___cdecl] = ACTIONS(3483), + [anon_sym___clrcall] = ACTIONS(3483), + [anon_sym___stdcall] = ACTIONS(3483), + [anon_sym___fastcall] = ACTIONS(3483), + [anon_sym___thiscall] = ACTIONS(3483), + [anon_sym___vectorcall] = ACTIONS(3483), + [anon_sym_LBRACE] = ACTIONS(3485), + [anon_sym_RBRACE] = ACTIONS(3485), + [anon_sym_signed] = ACTIONS(3483), + [anon_sym_unsigned] = ACTIONS(3483), + [anon_sym_long] = ACTIONS(3483), + [anon_sym_short] = ACTIONS(3483), + [anon_sym_LBRACK] = ACTIONS(3483), + [anon_sym_static] = ACTIONS(3483), + [anon_sym_register] = ACTIONS(3483), + [anon_sym_inline] = ACTIONS(3483), + [anon_sym___inline] = ACTIONS(3483), + [anon_sym___inline__] = ACTIONS(3483), + [anon_sym___forceinline] = ACTIONS(3483), + [anon_sym_thread_local] = ACTIONS(3483), + [anon_sym___thread] = ACTIONS(3483), + [anon_sym_const] = ACTIONS(3483), + [anon_sym_constexpr] = ACTIONS(3483), + [anon_sym_volatile] = ACTIONS(3483), + [anon_sym_restrict] = ACTIONS(3483), + [anon_sym___restrict__] = ACTIONS(3483), + [anon_sym__Atomic] = ACTIONS(3483), + [anon_sym__Noreturn] = ACTIONS(3483), + [anon_sym_noreturn] = ACTIONS(3483), + [anon_sym_mutable] = ACTIONS(3483), + [anon_sym_constinit] = ACTIONS(3483), + [anon_sym_consteval] = ACTIONS(3483), + [sym_primitive_type] = ACTIONS(3483), + [anon_sym_enum] = ACTIONS(3483), + [anon_sym_class] = ACTIONS(3483), + [anon_sym_struct] = ACTIONS(3483), + [anon_sym_union] = ACTIONS(3483), + [anon_sym_if] = ACTIONS(3483), + [anon_sym_switch] = ACTIONS(3483), + [anon_sym_case] = ACTIONS(3483), + [anon_sym_default] = ACTIONS(3483), + [anon_sym_while] = ACTIONS(3483), + [anon_sym_do] = ACTIONS(3483), + [anon_sym_for] = ACTIONS(3483), + [anon_sym_return] = ACTIONS(3483), + [anon_sym_break] = ACTIONS(3483), + [anon_sym_continue] = ACTIONS(3483), + [anon_sym_goto] = ACTIONS(3483), + [anon_sym___try] = ACTIONS(3483), + [anon_sym___leave] = ACTIONS(3483), + [anon_sym_not] = ACTIONS(3483), + [anon_sym_compl] = ACTIONS(3483), + [anon_sym_DASH_DASH] = ACTIONS(3485), + [anon_sym_PLUS_PLUS] = ACTIONS(3485), + [anon_sym_sizeof] = ACTIONS(3483), + [anon_sym___alignof__] = ACTIONS(3483), + [anon_sym___alignof] = ACTIONS(3483), + [anon_sym__alignof] = ACTIONS(3483), + [anon_sym_alignof] = ACTIONS(3483), + [anon_sym__Alignof] = ACTIONS(3483), + [anon_sym_offsetof] = ACTIONS(3483), + [anon_sym__Generic] = ACTIONS(3483), + [anon_sym_asm] = ACTIONS(3483), + [anon_sym___asm__] = ACTIONS(3483), + [sym_number_literal] = ACTIONS(3485), + [anon_sym_L_SQUOTE] = ACTIONS(3485), + [anon_sym_u_SQUOTE] = ACTIONS(3485), + [anon_sym_U_SQUOTE] = ACTIONS(3485), + [anon_sym_u8_SQUOTE] = ACTIONS(3485), + [anon_sym_SQUOTE] = ACTIONS(3485), + [anon_sym_L_DQUOTE] = ACTIONS(3485), + [anon_sym_u_DQUOTE] = ACTIONS(3485), + [anon_sym_U_DQUOTE] = ACTIONS(3485), + [anon_sym_u8_DQUOTE] = ACTIONS(3485), + [anon_sym_DQUOTE] = ACTIONS(3485), + [sym_true] = ACTIONS(3483), + [sym_false] = ACTIONS(3483), + [anon_sym_NULL] = ACTIONS(3483), + [anon_sym_nullptr] = ACTIONS(3483), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3483), + [anon_sym_decltype] = ACTIONS(3483), + [anon_sym_virtual] = ACTIONS(3483), + [anon_sym_alignas] = ACTIONS(3483), + [anon_sym_explicit] = ACTIONS(3483), + [anon_sym_typename] = ACTIONS(3483), + [anon_sym_template] = ACTIONS(3483), + [anon_sym_operator] = ACTIONS(3483), + [anon_sym_try] = ACTIONS(3483), + [anon_sym_delete] = ACTIONS(3483), + [anon_sym_throw] = ACTIONS(3483), + [anon_sym_namespace] = ACTIONS(3483), + [anon_sym_using] = ACTIONS(3483), + [anon_sym_static_assert] = ACTIONS(3483), + [anon_sym_concept] = ACTIONS(3483), + [anon_sym_co_return] = ACTIONS(3483), + [anon_sym_co_yield] = ACTIONS(3483), + [anon_sym_R_DQUOTE] = ACTIONS(3485), + [anon_sym_LR_DQUOTE] = ACTIONS(3485), + [anon_sym_uR_DQUOTE] = ACTIONS(3485), + [anon_sym_UR_DQUOTE] = ACTIONS(3485), + [anon_sym_u8R_DQUOTE] = ACTIONS(3485), + [anon_sym_co_await] = ACTIONS(3483), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_requires] = ACTIONS(3483), + [sym_this] = ACTIONS(3483), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3485), + [sym_semgrep_named_ellipsis] = ACTIONS(3485), + }, + [700] = { + [sym_identifier] = ACTIONS(3623), + [aux_sym_preproc_include_token1] = ACTIONS(3623), + [aux_sym_preproc_def_token1] = ACTIONS(3623), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3625), + [aux_sym_preproc_if_token1] = ACTIONS(3623), + [aux_sym_preproc_if_token2] = ACTIONS(3623), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3623), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3623), + [sym_preproc_directive] = ACTIONS(3623), + [anon_sym_LPAREN2] = ACTIONS(3625), + [anon_sym_BANG] = ACTIONS(3625), + [anon_sym_TILDE] = ACTIONS(3625), + [anon_sym_DASH] = ACTIONS(3623), + [anon_sym_PLUS] = ACTIONS(3623), + [anon_sym_STAR] = ACTIONS(3625), + [anon_sym_AMP_AMP] = ACTIONS(3625), + [anon_sym_AMP] = ACTIONS(3623), + [anon_sym_SEMI] = ACTIONS(3625), + [anon_sym___extension__] = ACTIONS(3623), + [anon_sym_typedef] = ACTIONS(3623), + [anon_sym_extern] = ACTIONS(3623), + [anon_sym___attribute__] = ACTIONS(3623), + [anon_sym_COLON_COLON] = ACTIONS(3625), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3625), + [anon_sym___declspec] = ACTIONS(3623), + [anon_sym___based] = ACTIONS(3623), + [anon_sym___cdecl] = ACTIONS(3623), + [anon_sym___clrcall] = ACTIONS(3623), + [anon_sym___stdcall] = ACTIONS(3623), + [anon_sym___fastcall] = ACTIONS(3623), + [anon_sym___thiscall] = ACTIONS(3623), + [anon_sym___vectorcall] = ACTIONS(3623), + [anon_sym_LBRACE] = ACTIONS(3625), + [anon_sym_signed] = ACTIONS(3623), + [anon_sym_unsigned] = ACTIONS(3623), + [anon_sym_long] = ACTIONS(3623), + [anon_sym_short] = ACTIONS(3623), + [anon_sym_LBRACK] = ACTIONS(3623), + [anon_sym_static] = ACTIONS(3623), + [anon_sym_register] = ACTIONS(3623), + [anon_sym_inline] = ACTIONS(3623), + [anon_sym___inline] = ACTIONS(3623), + [anon_sym___inline__] = ACTIONS(3623), + [anon_sym___forceinline] = ACTIONS(3623), + [anon_sym_thread_local] = ACTIONS(3623), + [anon_sym___thread] = ACTIONS(3623), + [anon_sym_const] = ACTIONS(3623), + [anon_sym_constexpr] = ACTIONS(3623), + [anon_sym_volatile] = ACTIONS(3623), + [anon_sym_restrict] = ACTIONS(3623), + [anon_sym___restrict__] = ACTIONS(3623), + [anon_sym__Atomic] = ACTIONS(3623), + [anon_sym__Noreturn] = ACTIONS(3623), + [anon_sym_noreturn] = ACTIONS(3623), + [anon_sym_mutable] = ACTIONS(3623), + [anon_sym_constinit] = ACTIONS(3623), + [anon_sym_consteval] = ACTIONS(3623), + [sym_primitive_type] = ACTIONS(3623), + [anon_sym_enum] = ACTIONS(3623), + [anon_sym_class] = ACTIONS(3623), + [anon_sym_struct] = ACTIONS(3623), + [anon_sym_union] = ACTIONS(3623), + [anon_sym_if] = ACTIONS(3623), + [anon_sym_switch] = ACTIONS(3623), + [anon_sym_case] = ACTIONS(3623), + [anon_sym_default] = ACTIONS(3623), + [anon_sym_while] = ACTIONS(3623), + [anon_sym_do] = ACTIONS(3623), + [anon_sym_for] = ACTIONS(3623), + [anon_sym_return] = ACTIONS(3623), + [anon_sym_break] = ACTIONS(3623), + [anon_sym_continue] = ACTIONS(3623), + [anon_sym_goto] = ACTIONS(3623), + [anon_sym___try] = ACTIONS(3623), + [anon_sym___leave] = ACTIONS(3623), + [anon_sym_not] = ACTIONS(3623), + [anon_sym_compl] = ACTIONS(3623), + [anon_sym_DASH_DASH] = ACTIONS(3625), + [anon_sym_PLUS_PLUS] = ACTIONS(3625), + [anon_sym_sizeof] = ACTIONS(3623), + [anon_sym___alignof__] = ACTIONS(3623), + [anon_sym___alignof] = ACTIONS(3623), + [anon_sym__alignof] = ACTIONS(3623), + [anon_sym_alignof] = ACTIONS(3623), + [anon_sym__Alignof] = ACTIONS(3623), + [anon_sym_offsetof] = ACTIONS(3623), + [anon_sym__Generic] = ACTIONS(3623), + [anon_sym_asm] = ACTIONS(3623), + [anon_sym___asm__] = ACTIONS(3623), + [sym_number_literal] = ACTIONS(3625), + [anon_sym_L_SQUOTE] = ACTIONS(3625), + [anon_sym_u_SQUOTE] = ACTIONS(3625), + [anon_sym_U_SQUOTE] = ACTIONS(3625), + [anon_sym_u8_SQUOTE] = ACTIONS(3625), + [anon_sym_SQUOTE] = ACTIONS(3625), + [anon_sym_L_DQUOTE] = ACTIONS(3625), + [anon_sym_u_DQUOTE] = ACTIONS(3625), + [anon_sym_U_DQUOTE] = ACTIONS(3625), + [anon_sym_u8_DQUOTE] = ACTIONS(3625), + [anon_sym_DQUOTE] = ACTIONS(3625), + [sym_true] = ACTIONS(3623), + [sym_false] = ACTIONS(3623), + [anon_sym_NULL] = ACTIONS(3623), + [anon_sym_nullptr] = ACTIONS(3623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3623), + [anon_sym_decltype] = ACTIONS(3623), + [anon_sym_virtual] = ACTIONS(3623), + [anon_sym_alignas] = ACTIONS(3623), + [anon_sym_explicit] = ACTIONS(3623), + [anon_sym_typename] = ACTIONS(3623), + [anon_sym_template] = ACTIONS(3623), + [anon_sym_operator] = ACTIONS(3623), + [anon_sym_try] = ACTIONS(3623), + [anon_sym_delete] = ACTIONS(3623), + [anon_sym_throw] = ACTIONS(3623), + [anon_sym_namespace] = ACTIONS(3623), + [anon_sym_using] = ACTIONS(3623), + [anon_sym_static_assert] = ACTIONS(3623), + [anon_sym_concept] = ACTIONS(3623), + [anon_sym_co_return] = ACTIONS(3623), + [anon_sym_co_yield] = ACTIONS(3623), + [anon_sym_R_DQUOTE] = ACTIONS(3625), + [anon_sym_LR_DQUOTE] = ACTIONS(3625), + [anon_sym_uR_DQUOTE] = ACTIONS(3625), + [anon_sym_UR_DQUOTE] = ACTIONS(3625), + [anon_sym_u8R_DQUOTE] = ACTIONS(3625), + [anon_sym_co_await] = ACTIONS(3623), + [anon_sym_new] = ACTIONS(3623), + [anon_sym_requires] = ACTIONS(3623), + [sym_this] = ACTIONS(3623), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3625), + [sym_semgrep_named_ellipsis] = ACTIONS(3625), + }, + [701] = { + [sym_catch_clause] = STATE(448), + [aux_sym_constructor_try_statement_repeat1] = STATE(448), + [ts_builtin_sym_end] = ACTIONS(3058), + [sym_identifier] = ACTIONS(3056), + [aux_sym_preproc_include_token1] = ACTIONS(3056), + [aux_sym_preproc_def_token1] = ACTIONS(3056), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3058), + [aux_sym_preproc_if_token1] = ACTIONS(3056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3056), + [sym_preproc_directive] = ACTIONS(3056), + [anon_sym_LPAREN2] = ACTIONS(3058), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3058), + [anon_sym_DASH] = ACTIONS(3056), + [anon_sym_PLUS] = ACTIONS(3056), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_AMP_AMP] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3056), + [anon_sym___extension__] = ACTIONS(3056), + [anon_sym_typedef] = ACTIONS(3056), + [anon_sym_extern] = ACTIONS(3056), + [anon_sym___attribute__] = ACTIONS(3056), + [anon_sym_COLON_COLON] = ACTIONS(3058), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3058), + [anon_sym___declspec] = ACTIONS(3056), + [anon_sym___based] = ACTIONS(3056), + [anon_sym___cdecl] = ACTIONS(3056), + [anon_sym___clrcall] = ACTIONS(3056), + [anon_sym___stdcall] = ACTIONS(3056), + [anon_sym___fastcall] = ACTIONS(3056), + [anon_sym___thiscall] = ACTIONS(3056), + [anon_sym___vectorcall] = ACTIONS(3056), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_signed] = ACTIONS(3056), + [anon_sym_unsigned] = ACTIONS(3056), + [anon_sym_long] = ACTIONS(3056), + [anon_sym_short] = ACTIONS(3056), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_static] = ACTIONS(3056), + [anon_sym_register] = ACTIONS(3056), + [anon_sym_inline] = ACTIONS(3056), + [anon_sym___inline] = ACTIONS(3056), + [anon_sym___inline__] = ACTIONS(3056), + [anon_sym___forceinline] = ACTIONS(3056), + [anon_sym_thread_local] = ACTIONS(3056), + [anon_sym___thread] = ACTIONS(3056), + [anon_sym_const] = ACTIONS(3056), + [anon_sym_constexpr] = ACTIONS(3056), + [anon_sym_volatile] = ACTIONS(3056), + [anon_sym_restrict] = ACTIONS(3056), + [anon_sym___restrict__] = ACTIONS(3056), + [anon_sym__Atomic] = ACTIONS(3056), + [anon_sym__Noreturn] = ACTIONS(3056), + [anon_sym_noreturn] = ACTIONS(3056), + [anon_sym_mutable] = ACTIONS(3056), + [anon_sym_constinit] = ACTIONS(3056), + [anon_sym_consteval] = ACTIONS(3056), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3056), + [anon_sym_class] = ACTIONS(3056), + [anon_sym_struct] = ACTIONS(3056), + [anon_sym_union] = ACTIONS(3056), + [anon_sym_if] = ACTIONS(3056), + [anon_sym_switch] = ACTIONS(3056), + [anon_sym_case] = ACTIONS(3056), + [anon_sym_default] = ACTIONS(3056), + [anon_sym_while] = ACTIONS(3056), + [anon_sym_do] = ACTIONS(3056), + [anon_sym_for] = ACTIONS(3056), + [anon_sym_return] = ACTIONS(3056), + [anon_sym_break] = ACTIONS(3056), + [anon_sym_continue] = ACTIONS(3056), + [anon_sym_goto] = ACTIONS(3056), + [anon_sym_not] = ACTIONS(3056), + [anon_sym_compl] = ACTIONS(3056), + [anon_sym_DASH_DASH] = ACTIONS(3058), + [anon_sym_PLUS_PLUS] = ACTIONS(3058), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3056), + [anon_sym___alignof] = ACTIONS(3056), + [anon_sym__alignof] = ACTIONS(3056), + [anon_sym_alignof] = ACTIONS(3056), + [anon_sym__Alignof] = ACTIONS(3056), + [anon_sym_offsetof] = ACTIONS(3056), + [anon_sym__Generic] = ACTIONS(3056), + [anon_sym_asm] = ACTIONS(3056), + [anon_sym___asm__] = ACTIONS(3056), + [sym_number_literal] = ACTIONS(3058), + [anon_sym_L_SQUOTE] = ACTIONS(3058), + [anon_sym_u_SQUOTE] = ACTIONS(3058), + [anon_sym_U_SQUOTE] = ACTIONS(3058), + [anon_sym_u8_SQUOTE] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [anon_sym_NULL] = ACTIONS(3056), + [anon_sym_nullptr] = ACTIONS(3056), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3056), + [anon_sym_decltype] = ACTIONS(3056), + [anon_sym_virtual] = ACTIONS(3056), + [anon_sym_alignas] = ACTIONS(3056), + [anon_sym_explicit] = ACTIONS(3056), + [anon_sym_typename] = ACTIONS(3056), + [anon_sym_template] = ACTIONS(3056), + [anon_sym_operator] = ACTIONS(3056), + [anon_sym_try] = ACTIONS(3056), + [anon_sym_delete] = ACTIONS(3056), + [anon_sym_throw] = ACTIONS(3056), + [anon_sym_namespace] = ACTIONS(3056), + [anon_sym_using] = ACTIONS(3056), + [anon_sym_static_assert] = ACTIONS(3056), + [anon_sym_concept] = ACTIONS(3056), + [anon_sym_co_return] = ACTIONS(3056), + [anon_sym_co_yield] = ACTIONS(3056), + [anon_sym_catch] = ACTIONS(3446), + [anon_sym_R_DQUOTE] = ACTIONS(3058), + [anon_sym_LR_DQUOTE] = ACTIONS(3058), + [anon_sym_uR_DQUOTE] = ACTIONS(3058), + [anon_sym_UR_DQUOTE] = ACTIONS(3058), + [anon_sym_u8R_DQUOTE] = ACTIONS(3058), + [anon_sym_co_await] = ACTIONS(3056), + [anon_sym_new] = ACTIONS(3056), + [anon_sym_requires] = ACTIONS(3056), + [sym_this] = ACTIONS(3056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3058), + [sym_semgrep_named_ellipsis] = ACTIONS(3058), + }, + [702] = { + [sym_identifier] = ACTIONS(3487), + [aux_sym_preproc_include_token1] = ACTIONS(3487), + [aux_sym_preproc_def_token1] = ACTIONS(3487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3489), + [aux_sym_preproc_if_token1] = ACTIONS(3487), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3487), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3487), + [sym_preproc_directive] = ACTIONS(3487), + [anon_sym_LPAREN2] = ACTIONS(3489), + [anon_sym_BANG] = ACTIONS(3489), + [anon_sym_TILDE] = ACTIONS(3489), + [anon_sym_DASH] = ACTIONS(3487), + [anon_sym_PLUS] = ACTIONS(3487), + [anon_sym_STAR] = ACTIONS(3489), + [anon_sym_AMP_AMP] = ACTIONS(3489), + [anon_sym_AMP] = ACTIONS(3487), + [anon_sym_SEMI] = ACTIONS(3489), + [anon_sym___extension__] = ACTIONS(3487), + [anon_sym_typedef] = 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___cdecl] = ACTIONS(3487), + [anon_sym___clrcall] = ACTIONS(3487), + [anon_sym___stdcall] = ACTIONS(3487), + [anon_sym___fastcall] = ACTIONS(3487), + [anon_sym___thiscall] = ACTIONS(3487), + [anon_sym___vectorcall] = ACTIONS(3487), + [anon_sym_LBRACE] = ACTIONS(3489), + [anon_sym_RBRACE] = ACTIONS(3489), + [anon_sym_signed] = ACTIONS(3487), + [anon_sym_unsigned] = ACTIONS(3487), + [anon_sym_long] = ACTIONS(3487), + [anon_sym_short] = ACTIONS(3487), + [anon_sym_LBRACK] = ACTIONS(3487), + [anon_sym_static] = ACTIONS(3487), + [anon_sym_register] = ACTIONS(3487), + [anon_sym_inline] = ACTIONS(3487), + [anon_sym___inline] = ACTIONS(3487), + [anon_sym___inline__] = ACTIONS(3487), + [anon_sym___forceinline] = ACTIONS(3487), + [anon_sym_thread_local] = ACTIONS(3487), + [anon_sym___thread] = ACTIONS(3487), + [anon_sym_const] = ACTIONS(3487), + [anon_sym_constexpr] = ACTIONS(3487), + [anon_sym_volatile] = ACTIONS(3487), + [anon_sym_restrict] = ACTIONS(3487), + [anon_sym___restrict__] = ACTIONS(3487), + [anon_sym__Atomic] = ACTIONS(3487), + [anon_sym__Noreturn] = ACTIONS(3487), + [anon_sym_noreturn] = ACTIONS(3487), + [anon_sym_mutable] = ACTIONS(3487), + [anon_sym_constinit] = ACTIONS(3487), + [anon_sym_consteval] = ACTIONS(3487), + [sym_primitive_type] = ACTIONS(3487), + [anon_sym_enum] = ACTIONS(3487), + [anon_sym_class] = ACTIONS(3487), + [anon_sym_struct] = ACTIONS(3487), + [anon_sym_union] = ACTIONS(3487), + [anon_sym_if] = ACTIONS(3487), + [anon_sym_switch] = ACTIONS(3487), + [anon_sym_case] = ACTIONS(3487), + [anon_sym_default] = ACTIONS(3487), + [anon_sym_while] = ACTIONS(3487), + [anon_sym_do] = ACTIONS(3487), + [anon_sym_for] = ACTIONS(3487), + [anon_sym_return] = ACTIONS(3487), + [anon_sym_break] = ACTIONS(3487), + [anon_sym_continue] = ACTIONS(3487), + [anon_sym_goto] = ACTIONS(3487), + [anon_sym___try] = ACTIONS(3487), + [anon_sym___leave] = ACTIONS(3487), + [anon_sym_not] = ACTIONS(3487), + [anon_sym_compl] = ACTIONS(3487), + [anon_sym_DASH_DASH] = ACTIONS(3489), + [anon_sym_PLUS_PLUS] = ACTIONS(3489), + [anon_sym_sizeof] = ACTIONS(3487), + [anon_sym___alignof__] = ACTIONS(3487), + [anon_sym___alignof] = ACTIONS(3487), + [anon_sym__alignof] = ACTIONS(3487), + [anon_sym_alignof] = ACTIONS(3487), + [anon_sym__Alignof] = ACTIONS(3487), + [anon_sym_offsetof] = ACTIONS(3487), + [anon_sym__Generic] = ACTIONS(3487), + [anon_sym_asm] = ACTIONS(3487), + [anon_sym___asm__] = ACTIONS(3487), + [sym_number_literal] = ACTIONS(3489), + [anon_sym_L_SQUOTE] = ACTIONS(3489), + [anon_sym_u_SQUOTE] = ACTIONS(3489), + [anon_sym_U_SQUOTE] = ACTIONS(3489), + [anon_sym_u8_SQUOTE] = ACTIONS(3489), + [anon_sym_SQUOTE] = ACTIONS(3489), + [anon_sym_L_DQUOTE] = ACTIONS(3489), + [anon_sym_u_DQUOTE] = ACTIONS(3489), + [anon_sym_U_DQUOTE] = ACTIONS(3489), + [anon_sym_u8_DQUOTE] = ACTIONS(3489), + [anon_sym_DQUOTE] = ACTIONS(3489), + [sym_true] = ACTIONS(3487), + [sym_false] = ACTIONS(3487), + [anon_sym_NULL] = ACTIONS(3487), + [anon_sym_nullptr] = ACTIONS(3487), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(3732), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(3734), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(3738), - [anon_sym_static_assert] = ACTIONS(3740), + [sym_auto] = ACTIONS(3487), + [anon_sym_decltype] = ACTIONS(3487), + [anon_sym_virtual] = ACTIONS(3487), + [anon_sym_alignas] = ACTIONS(3487), + [anon_sym_explicit] = ACTIONS(3487), + [anon_sym_typename] = ACTIONS(3487), + [anon_sym_template] = ACTIONS(3487), + [anon_sym_operator] = ACTIONS(3487), + [anon_sym_try] = ACTIONS(3487), + [anon_sym_delete] = ACTIONS(3487), + [anon_sym_throw] = ACTIONS(3487), + [anon_sym_namespace] = ACTIONS(3487), + [anon_sym_using] = ACTIONS(3487), + [anon_sym_static_assert] = ACTIONS(3487), + [anon_sym_concept] = ACTIONS(3487), + [anon_sym_co_return] = ACTIONS(3487), + [anon_sym_co_yield] = ACTIONS(3487), + [anon_sym_R_DQUOTE] = ACTIONS(3489), + [anon_sym_LR_DQUOTE] = ACTIONS(3489), + [anon_sym_uR_DQUOTE] = ACTIONS(3489), + [anon_sym_UR_DQUOTE] = ACTIONS(3489), + [anon_sym_u8R_DQUOTE] = ACTIONS(3489), + [anon_sym_co_await] = ACTIONS(3487), + [anon_sym_new] = ACTIONS(3487), + [anon_sym_requires] = ACTIONS(3487), + [sym_this] = ACTIONS(3487), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3489), + [sym_semgrep_named_ellipsis] = ACTIONS(3489), }, - [657] = { - [ts_builtin_sym_end] = ACTIONS(3203), - [sym_identifier] = ACTIONS(3201), - [aux_sym_preproc_include_token1] = ACTIONS(3201), - [aux_sym_preproc_def_token1] = ACTIONS(3201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3203), - [aux_sym_preproc_if_token1] = ACTIONS(3201), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3201), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3201), - [sym_preproc_directive] = ACTIONS(3201), - [anon_sym_LPAREN2] = ACTIONS(3203), - [anon_sym_BANG] = ACTIONS(3203), - [anon_sym_TILDE] = ACTIONS(3203), - [anon_sym_DASH] = ACTIONS(3201), - [anon_sym_PLUS] = ACTIONS(3201), - [anon_sym_STAR] = ACTIONS(3203), - [anon_sym_AMP_AMP] = ACTIONS(3203), - [anon_sym_AMP] = ACTIONS(3201), - [anon_sym_SEMI] = ACTIONS(3203), - [anon_sym___extension__] = ACTIONS(3201), - [anon_sym_typedef] = ACTIONS(3201), - [anon_sym_extern] = ACTIONS(3201), - [anon_sym___attribute__] = ACTIONS(3201), - [anon_sym_COLON_COLON] = ACTIONS(3203), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3203), - [anon_sym___declspec] = ACTIONS(3201), - [anon_sym___based] = ACTIONS(3201), - [anon_sym___cdecl] = ACTIONS(3201), - [anon_sym___clrcall] = ACTIONS(3201), - [anon_sym___stdcall] = ACTIONS(3201), - [anon_sym___fastcall] = ACTIONS(3201), - [anon_sym___thiscall] = ACTIONS(3201), - [anon_sym___vectorcall] = ACTIONS(3201), - [anon_sym_LBRACE] = ACTIONS(3203), - [anon_sym_signed] = ACTIONS(3201), - [anon_sym_unsigned] = ACTIONS(3201), - [anon_sym_long] = ACTIONS(3201), - [anon_sym_short] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_static] = ACTIONS(3201), - [anon_sym_register] = ACTIONS(3201), - [anon_sym_inline] = ACTIONS(3201), - [anon_sym___inline] = ACTIONS(3201), - [anon_sym___inline__] = ACTIONS(3201), - [anon_sym___forceinline] = ACTIONS(3201), - [anon_sym_thread_local] = ACTIONS(3201), - [anon_sym___thread] = ACTIONS(3201), - [anon_sym_const] = ACTIONS(3201), - [anon_sym_constexpr] = ACTIONS(3201), - [anon_sym_volatile] = ACTIONS(3201), - [anon_sym_restrict] = ACTIONS(3201), - [anon_sym___restrict__] = ACTIONS(3201), - [anon_sym__Atomic] = ACTIONS(3201), - [anon_sym__Noreturn] = ACTIONS(3201), - [anon_sym_noreturn] = ACTIONS(3201), - [anon_sym_mutable] = ACTIONS(3201), - [anon_sym_constinit] = ACTIONS(3201), - [anon_sym_consteval] = ACTIONS(3201), - [sym_primitive_type] = ACTIONS(3201), - [anon_sym_enum] = ACTIONS(3201), - [anon_sym_class] = ACTIONS(3201), - [anon_sym_struct] = ACTIONS(3201), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_if] = ACTIONS(3201), - [anon_sym_else] = ACTIONS(3201), - [anon_sym_switch] = ACTIONS(3201), - [anon_sym_case] = ACTIONS(3201), - [anon_sym_default] = ACTIONS(3201), - [anon_sym_while] = ACTIONS(3201), - [anon_sym_do] = ACTIONS(3201), - [anon_sym_for] = ACTIONS(3201), - [anon_sym_return] = ACTIONS(3201), - [anon_sym_break] = ACTIONS(3201), - [anon_sym_continue] = ACTIONS(3201), - [anon_sym_goto] = ACTIONS(3201), - [anon_sym___try] = ACTIONS(3201), - [anon_sym___leave] = ACTIONS(3201), - [anon_sym_not] = ACTIONS(3201), - [anon_sym_compl] = ACTIONS(3201), - [anon_sym_DASH_DASH] = ACTIONS(3203), - [anon_sym_PLUS_PLUS] = ACTIONS(3203), - [anon_sym_sizeof] = ACTIONS(3201), - [anon_sym___alignof__] = ACTIONS(3201), - [anon_sym___alignof] = ACTIONS(3201), - [anon_sym__alignof] = ACTIONS(3201), - [anon_sym_alignof] = ACTIONS(3201), - [anon_sym__Alignof] = ACTIONS(3201), - [anon_sym_offsetof] = ACTIONS(3201), - [anon_sym__Generic] = ACTIONS(3201), - [anon_sym_asm] = ACTIONS(3201), - [anon_sym___asm__] = ACTIONS(3201), - [sym_number_literal] = ACTIONS(3203), - [anon_sym_L_SQUOTE] = ACTIONS(3203), - [anon_sym_u_SQUOTE] = ACTIONS(3203), - [anon_sym_U_SQUOTE] = ACTIONS(3203), - [anon_sym_u8_SQUOTE] = ACTIONS(3203), - [anon_sym_SQUOTE] = ACTIONS(3203), - [anon_sym_L_DQUOTE] = ACTIONS(3203), - [anon_sym_u_DQUOTE] = ACTIONS(3203), - [anon_sym_U_DQUOTE] = ACTIONS(3203), - [anon_sym_u8_DQUOTE] = ACTIONS(3203), - [anon_sym_DQUOTE] = ACTIONS(3203), - [sym_true] = ACTIONS(3201), - [sym_false] = ACTIONS(3201), - [anon_sym_NULL] = ACTIONS(3201), - [anon_sym_nullptr] = ACTIONS(3201), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3201), - [anon_sym_decltype] = ACTIONS(3201), - [anon_sym_virtual] = ACTIONS(3201), - [anon_sym_alignas] = ACTIONS(3201), - [anon_sym_explicit] = ACTIONS(3201), - [anon_sym_typename] = ACTIONS(3201), - [anon_sym_template] = ACTIONS(3201), - [anon_sym_operator] = ACTIONS(3201), - [anon_sym_try] = ACTIONS(3201), - [anon_sym_delete] = ACTIONS(3201), - [anon_sym_throw] = ACTIONS(3201), - [anon_sym_namespace] = ACTIONS(3201), - [anon_sym_using] = ACTIONS(3201), - [anon_sym_static_assert] = ACTIONS(3201), - [anon_sym_concept] = ACTIONS(3201), - [anon_sym_co_return] = ACTIONS(3201), - [anon_sym_co_yield] = ACTIONS(3201), - [anon_sym_R_DQUOTE] = ACTIONS(3203), - [anon_sym_LR_DQUOTE] = ACTIONS(3203), - [anon_sym_uR_DQUOTE] = ACTIONS(3203), - [anon_sym_UR_DQUOTE] = ACTIONS(3203), - [anon_sym_u8R_DQUOTE] = ACTIONS(3203), - [anon_sym_co_await] = ACTIONS(3201), - [anon_sym_new] = ACTIONS(3201), - [anon_sym_requires] = ACTIONS(3201), - [sym_this] = ACTIONS(3201), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3203), - [sym_semgrep_named_ellipsis] = ACTIONS(3203), + [703] = { + [sym_identifier] = ACTIONS(3668), + [aux_sym_preproc_include_token1] = ACTIONS(3668), + [aux_sym_preproc_def_token1] = ACTIONS(3668), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3670), + [aux_sym_preproc_if_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3668), + [anon_sym_LPAREN2] = ACTIONS(3670), + [anon_sym_BANG] = ACTIONS(3670), + [anon_sym_TILDE] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_AMP_AMP] = ACTIONS(3670), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_SEMI] = ACTIONS(3670), + [anon_sym___extension__] = ACTIONS(3668), + [anon_sym_typedef] = ACTIONS(3668), + [anon_sym_extern] = ACTIONS(3668), + [anon_sym___attribute__] = ACTIONS(3668), + [anon_sym_COLON_COLON] = ACTIONS(3670), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3670), + [anon_sym___declspec] = ACTIONS(3668), + [anon_sym___based] = ACTIONS(3668), + [anon_sym___cdecl] = ACTIONS(3668), + [anon_sym___clrcall] = ACTIONS(3668), + [anon_sym___stdcall] = ACTIONS(3668), + [anon_sym___fastcall] = ACTIONS(3668), + [anon_sym___thiscall] = ACTIONS(3668), + [anon_sym___vectorcall] = ACTIONS(3668), + [anon_sym_LBRACE] = ACTIONS(3670), + [anon_sym_RBRACE] = ACTIONS(3670), + [anon_sym_signed] = ACTIONS(3668), + [anon_sym_unsigned] = ACTIONS(3668), + [anon_sym_long] = ACTIONS(3668), + [anon_sym_short] = ACTIONS(3668), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_static] = ACTIONS(3668), + [anon_sym_register] = ACTIONS(3668), + [anon_sym_inline] = ACTIONS(3668), + [anon_sym___inline] = ACTIONS(3668), + [anon_sym___inline__] = ACTIONS(3668), + [anon_sym___forceinline] = ACTIONS(3668), + [anon_sym_thread_local] = ACTIONS(3668), + [anon_sym___thread] = ACTIONS(3668), + [anon_sym_const] = ACTIONS(3668), + [anon_sym_constexpr] = ACTIONS(3668), + [anon_sym_volatile] = ACTIONS(3668), + [anon_sym_restrict] = ACTIONS(3668), + [anon_sym___restrict__] = ACTIONS(3668), + [anon_sym__Atomic] = ACTIONS(3668), + [anon_sym__Noreturn] = ACTIONS(3668), + [anon_sym_noreturn] = ACTIONS(3668), + [anon_sym_mutable] = ACTIONS(3668), + [anon_sym_constinit] = ACTIONS(3668), + [anon_sym_consteval] = ACTIONS(3668), + [sym_primitive_type] = ACTIONS(3668), + [anon_sym_enum] = ACTIONS(3668), + [anon_sym_class] = ACTIONS(3668), + [anon_sym_struct] = ACTIONS(3668), + [anon_sym_union] = ACTIONS(3668), + [anon_sym_if] = ACTIONS(3668), + [anon_sym_switch] = ACTIONS(3668), + [anon_sym_case] = ACTIONS(3668), + [anon_sym_default] = ACTIONS(3668), + [anon_sym_while] = ACTIONS(3668), + [anon_sym_do] = ACTIONS(3668), + [anon_sym_for] = ACTIONS(3668), + [anon_sym_return] = ACTIONS(3668), + [anon_sym_break] = ACTIONS(3668), + [anon_sym_continue] = ACTIONS(3668), + [anon_sym_goto] = ACTIONS(3668), + [anon_sym___try] = ACTIONS(3668), + [anon_sym___leave] = ACTIONS(3668), + [anon_sym_not] = ACTIONS(3668), + [anon_sym_compl] = ACTIONS(3668), + [anon_sym_DASH_DASH] = ACTIONS(3670), + [anon_sym_PLUS_PLUS] = ACTIONS(3670), + [anon_sym_sizeof] = ACTIONS(3668), + [anon_sym___alignof__] = ACTIONS(3668), + [anon_sym___alignof] = ACTIONS(3668), + [anon_sym__alignof] = ACTIONS(3668), + [anon_sym_alignof] = ACTIONS(3668), + [anon_sym__Alignof] = ACTIONS(3668), + [anon_sym_offsetof] = ACTIONS(3668), + [anon_sym__Generic] = ACTIONS(3668), + [anon_sym_asm] = ACTIONS(3668), + [anon_sym___asm__] = ACTIONS(3668), + [sym_number_literal] = ACTIONS(3670), + [anon_sym_L_SQUOTE] = ACTIONS(3670), + [anon_sym_u_SQUOTE] = ACTIONS(3670), + [anon_sym_U_SQUOTE] = ACTIONS(3670), + [anon_sym_u8_SQUOTE] = ACTIONS(3670), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_L_DQUOTE] = ACTIONS(3670), + [anon_sym_u_DQUOTE] = ACTIONS(3670), + [anon_sym_U_DQUOTE] = ACTIONS(3670), + [anon_sym_u8_DQUOTE] = ACTIONS(3670), + [anon_sym_DQUOTE] = ACTIONS(3670), + [sym_true] = ACTIONS(3668), + [sym_false] = ACTIONS(3668), + [anon_sym_NULL] = ACTIONS(3668), + [anon_sym_nullptr] = ACTIONS(3668), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3668), + [anon_sym_decltype] = ACTIONS(3668), + [anon_sym_virtual] = ACTIONS(3668), + [anon_sym_alignas] = ACTIONS(3668), + [anon_sym_explicit] = ACTIONS(3668), + [anon_sym_typename] = ACTIONS(3668), + [anon_sym_template] = ACTIONS(3668), + [anon_sym_operator] = ACTIONS(3668), + [anon_sym_try] = ACTIONS(3668), + [anon_sym_delete] = ACTIONS(3668), + [anon_sym_throw] = ACTIONS(3668), + [anon_sym_namespace] = ACTIONS(3668), + [anon_sym_using] = ACTIONS(3668), + [anon_sym_static_assert] = ACTIONS(3668), + [anon_sym_concept] = ACTIONS(3668), + [anon_sym_co_return] = ACTIONS(3668), + [anon_sym_co_yield] = ACTIONS(3668), + [anon_sym_R_DQUOTE] = ACTIONS(3670), + [anon_sym_LR_DQUOTE] = ACTIONS(3670), + [anon_sym_uR_DQUOTE] = ACTIONS(3670), + [anon_sym_UR_DQUOTE] = ACTIONS(3670), + [anon_sym_u8R_DQUOTE] = ACTIONS(3670), + [anon_sym_co_await] = ACTIONS(3668), + [anon_sym_new] = ACTIONS(3668), + [anon_sym_requires] = ACTIONS(3668), + [sym_this] = ACTIONS(3668), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3670), + [sym_semgrep_named_ellipsis] = ACTIONS(3670), }, - [658] = { - [sym_identifier] = ACTIONS(3211), - [aux_sym_preproc_include_token1] = ACTIONS(3211), - [aux_sym_preproc_def_token1] = ACTIONS(3211), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3213), - [aux_sym_preproc_if_token1] = ACTIONS(3211), - [aux_sym_preproc_if_token2] = ACTIONS(3211), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3211), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3211), - [sym_preproc_directive] = ACTIONS(3211), - [anon_sym_LPAREN2] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(3213), - [anon_sym_TILDE] = ACTIONS(3213), - [anon_sym_DASH] = ACTIONS(3211), - [anon_sym_PLUS] = ACTIONS(3211), - [anon_sym_STAR] = ACTIONS(3213), - [anon_sym_AMP_AMP] = ACTIONS(3213), - [anon_sym_AMP] = ACTIONS(3211), - [anon_sym_SEMI] = ACTIONS(3213), - [anon_sym___extension__] = ACTIONS(3211), - [anon_sym_typedef] = ACTIONS(3211), - [anon_sym_extern] = ACTIONS(3211), - [anon_sym___attribute__] = ACTIONS(3211), - [anon_sym_COLON_COLON] = ACTIONS(3213), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3213), - [anon_sym___declspec] = ACTIONS(3211), - [anon_sym___based] = ACTIONS(3211), - [anon_sym___cdecl] = ACTIONS(3211), - [anon_sym___clrcall] = ACTIONS(3211), - [anon_sym___stdcall] = ACTIONS(3211), - [anon_sym___fastcall] = ACTIONS(3211), - [anon_sym___thiscall] = ACTIONS(3211), - [anon_sym___vectorcall] = ACTIONS(3211), - [anon_sym_LBRACE] = ACTIONS(3213), - [anon_sym_signed] = ACTIONS(3211), - [anon_sym_unsigned] = ACTIONS(3211), - [anon_sym_long] = ACTIONS(3211), - [anon_sym_short] = ACTIONS(3211), - [anon_sym_LBRACK] = ACTIONS(3211), - [anon_sym_static] = ACTIONS(3211), - [anon_sym_register] = ACTIONS(3211), - [anon_sym_inline] = ACTIONS(3211), - [anon_sym___inline] = ACTIONS(3211), - [anon_sym___inline__] = ACTIONS(3211), - [anon_sym___forceinline] = ACTIONS(3211), - [anon_sym_thread_local] = ACTIONS(3211), - [anon_sym___thread] = ACTIONS(3211), - [anon_sym_const] = ACTIONS(3211), - [anon_sym_constexpr] = ACTIONS(3211), - [anon_sym_volatile] = ACTIONS(3211), - [anon_sym_restrict] = ACTIONS(3211), - [anon_sym___restrict__] = ACTIONS(3211), - [anon_sym__Atomic] = ACTIONS(3211), - [anon_sym__Noreturn] = ACTIONS(3211), - [anon_sym_noreturn] = ACTIONS(3211), - [anon_sym_mutable] = ACTIONS(3211), - [anon_sym_constinit] = ACTIONS(3211), - [anon_sym_consteval] = ACTIONS(3211), - [sym_primitive_type] = ACTIONS(3211), - [anon_sym_enum] = ACTIONS(3211), - [anon_sym_class] = ACTIONS(3211), - [anon_sym_struct] = ACTIONS(3211), - [anon_sym_union] = ACTIONS(3211), - [anon_sym_if] = ACTIONS(3211), - [anon_sym_else] = ACTIONS(3211), - [anon_sym_switch] = ACTIONS(3211), - [anon_sym_case] = ACTIONS(3211), - [anon_sym_default] = ACTIONS(3211), - [anon_sym_while] = ACTIONS(3211), - [anon_sym_do] = ACTIONS(3211), - [anon_sym_for] = ACTIONS(3211), - [anon_sym_return] = ACTIONS(3211), - [anon_sym_break] = ACTIONS(3211), - [anon_sym_continue] = ACTIONS(3211), - [anon_sym_goto] = ACTIONS(3211), - [anon_sym___try] = ACTIONS(3211), - [anon_sym___leave] = ACTIONS(3211), - [anon_sym_not] = ACTIONS(3211), - [anon_sym_compl] = ACTIONS(3211), - [anon_sym_DASH_DASH] = ACTIONS(3213), - [anon_sym_PLUS_PLUS] = ACTIONS(3213), - [anon_sym_sizeof] = ACTIONS(3211), - [anon_sym___alignof__] = ACTIONS(3211), - [anon_sym___alignof] = ACTIONS(3211), - [anon_sym__alignof] = ACTIONS(3211), - [anon_sym_alignof] = ACTIONS(3211), - [anon_sym__Alignof] = ACTIONS(3211), - [anon_sym_offsetof] = ACTIONS(3211), - [anon_sym__Generic] = ACTIONS(3211), - [anon_sym_asm] = ACTIONS(3211), - [anon_sym___asm__] = ACTIONS(3211), - [sym_number_literal] = ACTIONS(3213), - [anon_sym_L_SQUOTE] = ACTIONS(3213), - [anon_sym_u_SQUOTE] = ACTIONS(3213), - [anon_sym_U_SQUOTE] = ACTIONS(3213), - [anon_sym_u8_SQUOTE] = ACTIONS(3213), - [anon_sym_SQUOTE] = ACTIONS(3213), - [anon_sym_L_DQUOTE] = ACTIONS(3213), - [anon_sym_u_DQUOTE] = ACTIONS(3213), - [anon_sym_U_DQUOTE] = ACTIONS(3213), - [anon_sym_u8_DQUOTE] = ACTIONS(3213), - [anon_sym_DQUOTE] = ACTIONS(3213), - [sym_true] = ACTIONS(3211), - [sym_false] = ACTIONS(3211), - [anon_sym_NULL] = ACTIONS(3211), - [anon_sym_nullptr] = ACTIONS(3211), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3211), - [anon_sym_decltype] = ACTIONS(3211), - [anon_sym_virtual] = ACTIONS(3211), - [anon_sym_alignas] = ACTIONS(3211), - [anon_sym_explicit] = ACTIONS(3211), - [anon_sym_typename] = ACTIONS(3211), - [anon_sym_template] = ACTIONS(3211), - [anon_sym_operator] = ACTIONS(3211), - [anon_sym_try] = ACTIONS(3211), - [anon_sym_delete] = ACTIONS(3211), - [anon_sym_throw] = ACTIONS(3211), - [anon_sym_namespace] = ACTIONS(3211), - [anon_sym_using] = ACTIONS(3211), - [anon_sym_static_assert] = ACTIONS(3211), - [anon_sym_concept] = ACTIONS(3211), - [anon_sym_co_return] = ACTIONS(3211), - [anon_sym_co_yield] = ACTIONS(3211), - [anon_sym_R_DQUOTE] = ACTIONS(3213), - [anon_sym_LR_DQUOTE] = ACTIONS(3213), - [anon_sym_uR_DQUOTE] = ACTIONS(3213), - [anon_sym_UR_DQUOTE] = ACTIONS(3213), - [anon_sym_u8R_DQUOTE] = ACTIONS(3213), - [anon_sym_co_await] = ACTIONS(3211), - [anon_sym_new] = ACTIONS(3211), - [anon_sym_requires] = ACTIONS(3211), - [sym_this] = ACTIONS(3211), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3213), - [sym_semgrep_named_ellipsis] = ACTIONS(3213), + [704] = { + [sym_identifier] = ACTIONS(3672), + [aux_sym_preproc_include_token1] = ACTIONS(3672), + [aux_sym_preproc_def_token1] = ACTIONS(3672), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3674), + [aux_sym_preproc_if_token1] = ACTIONS(3672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3672), + [sym_preproc_directive] = ACTIONS(3672), + [anon_sym_LPAREN2] = ACTIONS(3674), + [anon_sym_BANG] = ACTIONS(3674), + [anon_sym_TILDE] = ACTIONS(3674), + [anon_sym_DASH] = ACTIONS(3672), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_STAR] = ACTIONS(3674), + [anon_sym_AMP_AMP] = ACTIONS(3674), + [anon_sym_AMP] = ACTIONS(3672), + [anon_sym_SEMI] = ACTIONS(3674), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3672), + [anon_sym_extern] = ACTIONS(3672), + [anon_sym___attribute__] = ACTIONS(3672), + [anon_sym_COLON_COLON] = ACTIONS(3674), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3674), + [anon_sym___declspec] = ACTIONS(3672), + [anon_sym___based] = ACTIONS(3672), + [anon_sym___cdecl] = ACTIONS(3672), + [anon_sym___clrcall] = ACTIONS(3672), + [anon_sym___stdcall] = ACTIONS(3672), + [anon_sym___fastcall] = ACTIONS(3672), + [anon_sym___thiscall] = ACTIONS(3672), + [anon_sym___vectorcall] = ACTIONS(3672), + [anon_sym_LBRACE] = ACTIONS(3674), + [anon_sym_RBRACE] = ACTIONS(3674), + [anon_sym_signed] = ACTIONS(3672), + [anon_sym_unsigned] = ACTIONS(3672), + [anon_sym_long] = ACTIONS(3672), + [anon_sym_short] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_static] = ACTIONS(3672), + [anon_sym_register] = ACTIONS(3672), + [anon_sym_inline] = ACTIONS(3672), + [anon_sym___inline] = ACTIONS(3672), + [anon_sym___inline__] = ACTIONS(3672), + [anon_sym___forceinline] = ACTIONS(3672), + [anon_sym_thread_local] = ACTIONS(3672), + [anon_sym___thread] = ACTIONS(3672), + [anon_sym_const] = ACTIONS(3672), + [anon_sym_constexpr] = ACTIONS(3672), + [anon_sym_volatile] = ACTIONS(3672), + [anon_sym_restrict] = ACTIONS(3672), + [anon_sym___restrict__] = ACTIONS(3672), + [anon_sym__Atomic] = ACTIONS(3672), + [anon_sym__Noreturn] = ACTIONS(3672), + [anon_sym_noreturn] = ACTIONS(3672), + [anon_sym_mutable] = ACTIONS(3672), + [anon_sym_constinit] = ACTIONS(3672), + [anon_sym_consteval] = ACTIONS(3672), + [sym_primitive_type] = ACTIONS(3672), + [anon_sym_enum] = ACTIONS(3672), + [anon_sym_class] = ACTIONS(3672), + [anon_sym_struct] = ACTIONS(3672), + [anon_sym_union] = ACTIONS(3672), + [anon_sym_if] = ACTIONS(3672), + [anon_sym_switch] = ACTIONS(3672), + [anon_sym_case] = ACTIONS(3672), + [anon_sym_default] = ACTIONS(3672), + [anon_sym_while] = ACTIONS(3672), + [anon_sym_do] = ACTIONS(3672), + [anon_sym_for] = ACTIONS(3672), + [anon_sym_return] = ACTIONS(3672), + [anon_sym_break] = ACTIONS(3672), + [anon_sym_continue] = ACTIONS(3672), + [anon_sym_goto] = ACTIONS(3672), + [anon_sym___try] = ACTIONS(3672), + [anon_sym___leave] = ACTIONS(3672), + [anon_sym_not] = ACTIONS(3672), + [anon_sym_compl] = ACTIONS(3672), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_sizeof] = ACTIONS(3672), + [anon_sym___alignof__] = ACTIONS(3672), + [anon_sym___alignof] = ACTIONS(3672), + [anon_sym__alignof] = ACTIONS(3672), + [anon_sym_alignof] = ACTIONS(3672), + [anon_sym__Alignof] = ACTIONS(3672), + [anon_sym_offsetof] = ACTIONS(3672), + [anon_sym__Generic] = ACTIONS(3672), + [anon_sym_asm] = ACTIONS(3672), + [anon_sym___asm__] = ACTIONS(3672), + [sym_number_literal] = ACTIONS(3674), + [anon_sym_L_SQUOTE] = ACTIONS(3674), + [anon_sym_u_SQUOTE] = ACTIONS(3674), + [anon_sym_U_SQUOTE] = ACTIONS(3674), + [anon_sym_u8_SQUOTE] = ACTIONS(3674), + [anon_sym_SQUOTE] = ACTIONS(3674), + [anon_sym_L_DQUOTE] = ACTIONS(3674), + [anon_sym_u_DQUOTE] = ACTIONS(3674), + [anon_sym_U_DQUOTE] = ACTIONS(3674), + [anon_sym_u8_DQUOTE] = ACTIONS(3674), + [anon_sym_DQUOTE] = ACTIONS(3674), + [sym_true] = ACTIONS(3672), + [sym_false] = ACTIONS(3672), + [anon_sym_NULL] = ACTIONS(3672), + [anon_sym_nullptr] = ACTIONS(3672), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3672), + [anon_sym_decltype] = ACTIONS(3672), + [anon_sym_virtual] = ACTIONS(3672), + [anon_sym_alignas] = ACTIONS(3672), + [anon_sym_explicit] = ACTIONS(3672), + [anon_sym_typename] = ACTIONS(3672), + [anon_sym_template] = ACTIONS(3672), + [anon_sym_operator] = ACTIONS(3672), + [anon_sym_try] = ACTIONS(3672), + [anon_sym_delete] = ACTIONS(3672), + [anon_sym_throw] = ACTIONS(3672), + [anon_sym_namespace] = ACTIONS(3672), + [anon_sym_using] = ACTIONS(3672), + [anon_sym_static_assert] = ACTIONS(3672), + [anon_sym_concept] = ACTIONS(3672), + [anon_sym_co_return] = ACTIONS(3672), + [anon_sym_co_yield] = ACTIONS(3672), + [anon_sym_R_DQUOTE] = ACTIONS(3674), + [anon_sym_LR_DQUOTE] = ACTIONS(3674), + [anon_sym_uR_DQUOTE] = ACTIONS(3674), + [anon_sym_UR_DQUOTE] = ACTIONS(3674), + [anon_sym_u8R_DQUOTE] = ACTIONS(3674), + [anon_sym_co_await] = ACTIONS(3672), + [anon_sym_new] = ACTIONS(3672), + [anon_sym_requires] = ACTIONS(3672), + [sym_this] = ACTIONS(3672), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3674), + [sym_semgrep_named_ellipsis] = ACTIONS(3674), }, - [659] = { - [ts_builtin_sym_end] = ACTIONS(3221), - [sym_identifier] = ACTIONS(3219), - [aux_sym_preproc_include_token1] = ACTIONS(3219), - [aux_sym_preproc_def_token1] = ACTIONS(3219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3221), - [aux_sym_preproc_if_token1] = ACTIONS(3219), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3219), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3219), - [sym_preproc_directive] = ACTIONS(3219), - [anon_sym_LPAREN2] = ACTIONS(3221), - [anon_sym_BANG] = ACTIONS(3221), - [anon_sym_TILDE] = ACTIONS(3221), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3221), - [anon_sym_AMP_AMP] = ACTIONS(3221), - [anon_sym_AMP] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3221), - [anon_sym___extension__] = ACTIONS(3219), - [anon_sym_typedef] = ACTIONS(3219), - [anon_sym_extern] = ACTIONS(3219), - [anon_sym___attribute__] = ACTIONS(3219), - [anon_sym_COLON_COLON] = ACTIONS(3221), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3221), - [anon_sym___declspec] = ACTIONS(3219), - [anon_sym___based] = ACTIONS(3219), - [anon_sym___cdecl] = ACTIONS(3219), - [anon_sym___clrcall] = ACTIONS(3219), - [anon_sym___stdcall] = ACTIONS(3219), - [anon_sym___fastcall] = ACTIONS(3219), - [anon_sym___thiscall] = ACTIONS(3219), - [anon_sym___vectorcall] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3221), - [anon_sym_signed] = ACTIONS(3219), - [anon_sym_unsigned] = ACTIONS(3219), - [anon_sym_long] = ACTIONS(3219), - [anon_sym_short] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_register] = ACTIONS(3219), - [anon_sym_inline] = ACTIONS(3219), - [anon_sym___inline] = ACTIONS(3219), - [anon_sym___inline__] = ACTIONS(3219), - [anon_sym___forceinline] = ACTIONS(3219), - [anon_sym_thread_local] = ACTIONS(3219), - [anon_sym___thread] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_constexpr] = ACTIONS(3219), - [anon_sym_volatile] = ACTIONS(3219), - [anon_sym_restrict] = ACTIONS(3219), - [anon_sym___restrict__] = ACTIONS(3219), - [anon_sym__Atomic] = ACTIONS(3219), - [anon_sym__Noreturn] = ACTIONS(3219), - [anon_sym_noreturn] = ACTIONS(3219), - [anon_sym_mutable] = ACTIONS(3219), - [anon_sym_constinit] = ACTIONS(3219), - [anon_sym_consteval] = ACTIONS(3219), - [sym_primitive_type] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_struct] = ACTIONS(3219), - [anon_sym_union] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_else] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_case] = ACTIONS(3219), - [anon_sym_default] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_goto] = ACTIONS(3219), - [anon_sym___try] = ACTIONS(3219), - [anon_sym___leave] = ACTIONS(3219), - [anon_sym_not] = ACTIONS(3219), - [anon_sym_compl] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_sizeof] = ACTIONS(3219), - [anon_sym___alignof__] = ACTIONS(3219), - [anon_sym___alignof] = ACTIONS(3219), - [anon_sym__alignof] = ACTIONS(3219), - [anon_sym_alignof] = ACTIONS(3219), - [anon_sym__Alignof] = ACTIONS(3219), - [anon_sym_offsetof] = ACTIONS(3219), - [anon_sym__Generic] = ACTIONS(3219), - [anon_sym_asm] = ACTIONS(3219), - [anon_sym___asm__] = ACTIONS(3219), - [sym_number_literal] = ACTIONS(3221), - [anon_sym_L_SQUOTE] = ACTIONS(3221), - [anon_sym_u_SQUOTE] = ACTIONS(3221), - [anon_sym_U_SQUOTE] = ACTIONS(3221), - [anon_sym_u8_SQUOTE] = ACTIONS(3221), - [anon_sym_SQUOTE] = ACTIONS(3221), - [anon_sym_L_DQUOTE] = ACTIONS(3221), - [anon_sym_u_DQUOTE] = ACTIONS(3221), - [anon_sym_U_DQUOTE] = ACTIONS(3221), - [anon_sym_u8_DQUOTE] = ACTIONS(3221), - [anon_sym_DQUOTE] = ACTIONS(3221), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [anon_sym_NULL] = ACTIONS(3219), - [anon_sym_nullptr] = ACTIONS(3219), + [705] = { + [sym_identifier] = ACTIONS(3428), + [aux_sym_preproc_include_token1] = ACTIONS(3428), + [aux_sym_preproc_def_token1] = ACTIONS(3428), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3430), + [aux_sym_preproc_if_token1] = ACTIONS(3428), + [aux_sym_preproc_if_token2] = ACTIONS(3428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3428), + [sym_preproc_directive] = ACTIONS(3428), + [anon_sym_LPAREN2] = ACTIONS(3430), + [anon_sym_BANG] = ACTIONS(3430), + [anon_sym_TILDE] = ACTIONS(3430), + [anon_sym_DASH] = ACTIONS(3428), + [anon_sym_PLUS] = ACTIONS(3428), + [anon_sym_STAR] = ACTIONS(3430), + [anon_sym_AMP_AMP] = ACTIONS(3430), + [anon_sym_AMP] = ACTIONS(3428), + [anon_sym_SEMI] = ACTIONS(3430), + [anon_sym___extension__] = ACTIONS(3428), + [anon_sym_typedef] = ACTIONS(3428), + [anon_sym_extern] = ACTIONS(3428), + [anon_sym___attribute__] = ACTIONS(3428), + [anon_sym_COLON_COLON] = ACTIONS(3430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3430), + [anon_sym___declspec] = ACTIONS(3428), + [anon_sym___based] = ACTIONS(3428), + [anon_sym___cdecl] = ACTIONS(3428), + [anon_sym___clrcall] = ACTIONS(3428), + [anon_sym___stdcall] = ACTIONS(3428), + [anon_sym___fastcall] = ACTIONS(3428), + [anon_sym___thiscall] = ACTIONS(3428), + [anon_sym___vectorcall] = ACTIONS(3428), + [anon_sym_LBRACE] = ACTIONS(3430), + [anon_sym_signed] = ACTIONS(3428), + [anon_sym_unsigned] = ACTIONS(3428), + [anon_sym_long] = ACTIONS(3428), + [anon_sym_short] = ACTIONS(3428), + [anon_sym_LBRACK] = ACTIONS(3428), + [anon_sym_static] = ACTIONS(3428), + [anon_sym_register] = ACTIONS(3428), + [anon_sym_inline] = ACTIONS(3428), + [anon_sym___inline] = ACTIONS(3428), + [anon_sym___inline__] = ACTIONS(3428), + [anon_sym___forceinline] = ACTIONS(3428), + [anon_sym_thread_local] = ACTIONS(3428), + [anon_sym___thread] = ACTIONS(3428), + [anon_sym_const] = ACTIONS(3428), + [anon_sym_constexpr] = ACTIONS(3428), + [anon_sym_volatile] = ACTIONS(3428), + [anon_sym_restrict] = ACTIONS(3428), + [anon_sym___restrict__] = ACTIONS(3428), + [anon_sym__Atomic] = ACTIONS(3428), + [anon_sym__Noreturn] = ACTIONS(3428), + [anon_sym_noreturn] = ACTIONS(3428), + [anon_sym_mutable] = ACTIONS(3428), + [anon_sym_constinit] = ACTIONS(3428), + [anon_sym_consteval] = ACTIONS(3428), + [sym_primitive_type] = ACTIONS(3428), + [anon_sym_enum] = ACTIONS(3428), + [anon_sym_class] = ACTIONS(3428), + [anon_sym_struct] = ACTIONS(3428), + [anon_sym_union] = ACTIONS(3428), + [anon_sym_if] = ACTIONS(3428), + [anon_sym_switch] = ACTIONS(3428), + [anon_sym_case] = ACTIONS(3428), + [anon_sym_default] = ACTIONS(3428), + [anon_sym_while] = ACTIONS(3428), + [anon_sym_do] = ACTIONS(3428), + [anon_sym_for] = ACTIONS(3428), + [anon_sym_return] = ACTIONS(3428), + [anon_sym_break] = ACTIONS(3428), + [anon_sym_continue] = ACTIONS(3428), + [anon_sym_goto] = ACTIONS(3428), + [anon_sym___try] = ACTIONS(3428), + [anon_sym___leave] = ACTIONS(3428), + [anon_sym_not] = ACTIONS(3428), + [anon_sym_compl] = ACTIONS(3428), + [anon_sym_DASH_DASH] = ACTIONS(3430), + [anon_sym_PLUS_PLUS] = ACTIONS(3430), + [anon_sym_sizeof] = ACTIONS(3428), + [anon_sym___alignof__] = ACTIONS(3428), + [anon_sym___alignof] = ACTIONS(3428), + [anon_sym__alignof] = ACTIONS(3428), + [anon_sym_alignof] = ACTIONS(3428), + [anon_sym__Alignof] = ACTIONS(3428), + [anon_sym_offsetof] = ACTIONS(3428), + [anon_sym__Generic] = ACTIONS(3428), + [anon_sym_asm] = ACTIONS(3428), + [anon_sym___asm__] = ACTIONS(3428), + [sym_number_literal] = ACTIONS(3430), + [anon_sym_L_SQUOTE] = ACTIONS(3430), + [anon_sym_u_SQUOTE] = ACTIONS(3430), + [anon_sym_U_SQUOTE] = ACTIONS(3430), + [anon_sym_u8_SQUOTE] = ACTIONS(3430), + [anon_sym_SQUOTE] = ACTIONS(3430), + [anon_sym_L_DQUOTE] = ACTIONS(3430), + [anon_sym_u_DQUOTE] = ACTIONS(3430), + [anon_sym_U_DQUOTE] = ACTIONS(3430), + [anon_sym_u8_DQUOTE] = ACTIONS(3430), + [anon_sym_DQUOTE] = ACTIONS(3430), + [sym_true] = ACTIONS(3428), + [sym_false] = ACTIONS(3428), + [anon_sym_NULL] = ACTIONS(3428), + [anon_sym_nullptr] = ACTIONS(3428), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3428), + [anon_sym_decltype] = ACTIONS(3428), + [anon_sym_virtual] = ACTIONS(3428), + [anon_sym_alignas] = ACTIONS(3428), + [anon_sym_explicit] = ACTIONS(3428), + [anon_sym_typename] = ACTIONS(3428), + [anon_sym_template] = ACTIONS(3428), + [anon_sym_operator] = ACTIONS(3428), + [anon_sym_try] = ACTIONS(3428), + [anon_sym_delete] = ACTIONS(3428), + [anon_sym_throw] = ACTIONS(3428), + [anon_sym_namespace] = ACTIONS(3428), + [anon_sym_using] = ACTIONS(3428), + [anon_sym_static_assert] = ACTIONS(3428), + [anon_sym_concept] = ACTIONS(3428), + [anon_sym_co_return] = ACTIONS(3428), + [anon_sym_co_yield] = ACTIONS(3428), + [anon_sym_R_DQUOTE] = ACTIONS(3430), + [anon_sym_LR_DQUOTE] = ACTIONS(3430), + [anon_sym_uR_DQUOTE] = ACTIONS(3430), + [anon_sym_UR_DQUOTE] = ACTIONS(3430), + [anon_sym_u8R_DQUOTE] = ACTIONS(3430), + [anon_sym_co_await] = ACTIONS(3428), + [anon_sym_new] = ACTIONS(3428), + [anon_sym_requires] = ACTIONS(3428), + [sym_this] = ACTIONS(3428), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3430), + [sym_semgrep_named_ellipsis] = ACTIONS(3430), + }, + [706] = { + [sym_identifier] = ACTIONS(3649), + [aux_sym_preproc_include_token1] = ACTIONS(3649), + [aux_sym_preproc_def_token1] = ACTIONS(3649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3651), + [aux_sym_preproc_if_token1] = ACTIONS(3649), + [aux_sym_preproc_if_token2] = ACTIONS(3649), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3649), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3649), + [sym_preproc_directive] = ACTIONS(3649), + [anon_sym_LPAREN2] = ACTIONS(3651), + [anon_sym_BANG] = ACTIONS(3651), + [anon_sym_TILDE] = ACTIONS(3651), + [anon_sym_DASH] = ACTIONS(3649), + [anon_sym_PLUS] = ACTIONS(3649), + [anon_sym_STAR] = ACTIONS(3651), + [anon_sym_AMP_AMP] = ACTIONS(3651), + [anon_sym_AMP] = ACTIONS(3649), + [anon_sym_SEMI] = ACTIONS(3651), + [anon_sym___extension__] = ACTIONS(3649), + [anon_sym_typedef] = ACTIONS(3649), + [anon_sym_extern] = ACTIONS(3649), + [anon_sym___attribute__] = ACTIONS(3649), + [anon_sym_COLON_COLON] = ACTIONS(3651), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3651), + [anon_sym___declspec] = ACTIONS(3649), + [anon_sym___based] = ACTIONS(3649), + [anon_sym___cdecl] = ACTIONS(3649), + [anon_sym___clrcall] = ACTIONS(3649), + [anon_sym___stdcall] = ACTIONS(3649), + [anon_sym___fastcall] = ACTIONS(3649), + [anon_sym___thiscall] = ACTIONS(3649), + [anon_sym___vectorcall] = ACTIONS(3649), + [anon_sym_LBRACE] = ACTIONS(3651), + [anon_sym_signed] = ACTIONS(3649), + [anon_sym_unsigned] = ACTIONS(3649), + [anon_sym_long] = ACTIONS(3649), + [anon_sym_short] = ACTIONS(3649), + [anon_sym_LBRACK] = ACTIONS(3649), + [anon_sym_static] = ACTIONS(3649), + [anon_sym_register] = ACTIONS(3649), + [anon_sym_inline] = ACTIONS(3649), + [anon_sym___inline] = ACTIONS(3649), + [anon_sym___inline__] = ACTIONS(3649), + [anon_sym___forceinline] = ACTIONS(3649), + [anon_sym_thread_local] = ACTIONS(3649), + [anon_sym___thread] = ACTIONS(3649), + [anon_sym_const] = ACTIONS(3649), + [anon_sym_constexpr] = ACTIONS(3649), + [anon_sym_volatile] = ACTIONS(3649), + [anon_sym_restrict] = ACTIONS(3649), + [anon_sym___restrict__] = ACTIONS(3649), + [anon_sym__Atomic] = ACTIONS(3649), + [anon_sym__Noreturn] = ACTIONS(3649), + [anon_sym_noreturn] = ACTIONS(3649), + [anon_sym_mutable] = ACTIONS(3649), + [anon_sym_constinit] = ACTIONS(3649), + [anon_sym_consteval] = ACTIONS(3649), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_enum] = ACTIONS(3649), + [anon_sym_class] = ACTIONS(3649), + [anon_sym_struct] = ACTIONS(3649), + [anon_sym_union] = ACTIONS(3649), + [anon_sym_if] = ACTIONS(3649), + [anon_sym_switch] = ACTIONS(3649), + [anon_sym_case] = ACTIONS(3649), + [anon_sym_default] = ACTIONS(3649), + [anon_sym_while] = ACTIONS(3649), + [anon_sym_do] = ACTIONS(3649), + [anon_sym_for] = ACTIONS(3649), + [anon_sym_return] = ACTIONS(3649), + [anon_sym_break] = ACTIONS(3649), + [anon_sym_continue] = ACTIONS(3649), + [anon_sym_goto] = ACTIONS(3649), + [anon_sym___try] = ACTIONS(3649), + [anon_sym___leave] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3649), + [anon_sym_compl] = ACTIONS(3649), + [anon_sym_DASH_DASH] = ACTIONS(3651), + [anon_sym_PLUS_PLUS] = ACTIONS(3651), + [anon_sym_sizeof] = ACTIONS(3649), + [anon_sym___alignof__] = ACTIONS(3649), + [anon_sym___alignof] = ACTIONS(3649), + [anon_sym__alignof] = ACTIONS(3649), + [anon_sym_alignof] = ACTIONS(3649), + [anon_sym__Alignof] = ACTIONS(3649), + [anon_sym_offsetof] = ACTIONS(3649), + [anon_sym__Generic] = ACTIONS(3649), + [anon_sym_asm] = ACTIONS(3649), + [anon_sym___asm__] = ACTIONS(3649), + [sym_number_literal] = ACTIONS(3651), + [anon_sym_L_SQUOTE] = ACTIONS(3651), + [anon_sym_u_SQUOTE] = ACTIONS(3651), + [anon_sym_U_SQUOTE] = ACTIONS(3651), + [anon_sym_u8_SQUOTE] = ACTIONS(3651), + [anon_sym_SQUOTE] = ACTIONS(3651), + [anon_sym_L_DQUOTE] = ACTIONS(3651), + [anon_sym_u_DQUOTE] = ACTIONS(3651), + [anon_sym_U_DQUOTE] = ACTIONS(3651), + [anon_sym_u8_DQUOTE] = ACTIONS(3651), + [anon_sym_DQUOTE] = ACTIONS(3651), + [sym_true] = ACTIONS(3649), + [sym_false] = ACTIONS(3649), + [anon_sym_NULL] = ACTIONS(3649), + [anon_sym_nullptr] = ACTIONS(3649), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3649), + [anon_sym_decltype] = ACTIONS(3649), + [anon_sym_virtual] = ACTIONS(3649), + [anon_sym_alignas] = ACTIONS(3649), + [anon_sym_explicit] = ACTIONS(3649), + [anon_sym_typename] = ACTIONS(3649), + [anon_sym_template] = ACTIONS(3649), + [anon_sym_operator] = ACTIONS(3649), + [anon_sym_try] = ACTIONS(3649), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_throw] = ACTIONS(3649), + [anon_sym_namespace] = ACTIONS(3649), + [anon_sym_using] = ACTIONS(3649), + [anon_sym_static_assert] = ACTIONS(3649), + [anon_sym_concept] = ACTIONS(3649), + [anon_sym_co_return] = ACTIONS(3649), + [anon_sym_co_yield] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(3651), + [anon_sym_LR_DQUOTE] = ACTIONS(3651), + [anon_sym_uR_DQUOTE] = ACTIONS(3651), + [anon_sym_UR_DQUOTE] = ACTIONS(3651), + [anon_sym_u8R_DQUOTE] = ACTIONS(3651), + [anon_sym_co_await] = ACTIONS(3649), + [anon_sym_new] = ACTIONS(3649), + [anon_sym_requires] = ACTIONS(3649), + [sym_this] = ACTIONS(3649), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3651), + [sym_semgrep_named_ellipsis] = ACTIONS(3651), + }, + [707] = { + [sym_identifier] = ACTIONS(3428), + [aux_sym_preproc_include_token1] = ACTIONS(3428), + [aux_sym_preproc_def_token1] = ACTIONS(3428), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3430), + [aux_sym_preproc_if_token1] = ACTIONS(3428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3428), + [sym_preproc_directive] = ACTIONS(3428), + [anon_sym_LPAREN2] = ACTIONS(3430), + [anon_sym_BANG] = ACTIONS(3430), + [anon_sym_TILDE] = ACTIONS(3430), + [anon_sym_DASH] = ACTIONS(3428), + [anon_sym_PLUS] = ACTIONS(3428), + [anon_sym_STAR] = ACTIONS(3430), + [anon_sym_AMP_AMP] = ACTIONS(3430), + [anon_sym_AMP] = ACTIONS(3428), + [anon_sym_SEMI] = ACTIONS(3430), + [anon_sym___extension__] = ACTIONS(3428), + [anon_sym_typedef] = ACTIONS(3428), + [anon_sym_extern] = ACTIONS(3428), + [anon_sym___attribute__] = ACTIONS(3428), + [anon_sym_COLON_COLON] = ACTIONS(3430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3430), + [anon_sym___declspec] = ACTIONS(3428), + [anon_sym___based] = ACTIONS(3428), + [anon_sym___cdecl] = ACTIONS(3428), + [anon_sym___clrcall] = ACTIONS(3428), + [anon_sym___stdcall] = ACTIONS(3428), + [anon_sym___fastcall] = ACTIONS(3428), + [anon_sym___thiscall] = ACTIONS(3428), + [anon_sym___vectorcall] = ACTIONS(3428), + [anon_sym_LBRACE] = ACTIONS(3430), + [anon_sym_RBRACE] = ACTIONS(3430), + [anon_sym_signed] = ACTIONS(3428), + [anon_sym_unsigned] = ACTIONS(3428), + [anon_sym_long] = ACTIONS(3428), + [anon_sym_short] = ACTIONS(3428), + [anon_sym_LBRACK] = ACTIONS(3428), + [anon_sym_static] = ACTIONS(3428), + [anon_sym_register] = ACTIONS(3428), + [anon_sym_inline] = ACTIONS(3428), + [anon_sym___inline] = ACTIONS(3428), + [anon_sym___inline__] = ACTIONS(3428), + [anon_sym___forceinline] = ACTIONS(3428), + [anon_sym_thread_local] = ACTIONS(3428), + [anon_sym___thread] = ACTIONS(3428), + [anon_sym_const] = ACTIONS(3428), + [anon_sym_constexpr] = ACTIONS(3428), + [anon_sym_volatile] = ACTIONS(3428), + [anon_sym_restrict] = ACTIONS(3428), + [anon_sym___restrict__] = ACTIONS(3428), + [anon_sym__Atomic] = ACTIONS(3428), + [anon_sym__Noreturn] = ACTIONS(3428), + [anon_sym_noreturn] = ACTIONS(3428), + [anon_sym_mutable] = ACTIONS(3428), + [anon_sym_constinit] = ACTIONS(3428), + [anon_sym_consteval] = ACTIONS(3428), + [sym_primitive_type] = ACTIONS(3428), + [anon_sym_enum] = ACTIONS(3428), + [anon_sym_class] = ACTIONS(3428), + [anon_sym_struct] = ACTIONS(3428), + [anon_sym_union] = ACTIONS(3428), + [anon_sym_if] = ACTIONS(3428), + [anon_sym_switch] = ACTIONS(3428), + [anon_sym_case] = ACTIONS(3428), + [anon_sym_default] = ACTIONS(3428), + [anon_sym_while] = ACTIONS(3428), + [anon_sym_do] = ACTIONS(3428), + [anon_sym_for] = ACTIONS(3428), + [anon_sym_return] = ACTIONS(3428), + [anon_sym_break] = ACTIONS(3428), + [anon_sym_continue] = ACTIONS(3428), + [anon_sym_goto] = ACTIONS(3428), + [anon_sym___try] = ACTIONS(3428), + [anon_sym___leave] = ACTIONS(3428), + [anon_sym_not] = ACTIONS(3428), + [anon_sym_compl] = ACTIONS(3428), + [anon_sym_DASH_DASH] = ACTIONS(3430), + [anon_sym_PLUS_PLUS] = ACTIONS(3430), + [anon_sym_sizeof] = ACTIONS(3428), + [anon_sym___alignof__] = ACTIONS(3428), + [anon_sym___alignof] = ACTIONS(3428), + [anon_sym__alignof] = ACTIONS(3428), + [anon_sym_alignof] = ACTIONS(3428), + [anon_sym__Alignof] = ACTIONS(3428), + [anon_sym_offsetof] = ACTIONS(3428), + [anon_sym__Generic] = ACTIONS(3428), + [anon_sym_asm] = ACTIONS(3428), + [anon_sym___asm__] = ACTIONS(3428), + [sym_number_literal] = ACTIONS(3430), + [anon_sym_L_SQUOTE] = ACTIONS(3430), + [anon_sym_u_SQUOTE] = ACTIONS(3430), + [anon_sym_U_SQUOTE] = ACTIONS(3430), + [anon_sym_u8_SQUOTE] = ACTIONS(3430), + [anon_sym_SQUOTE] = ACTIONS(3430), + [anon_sym_L_DQUOTE] = ACTIONS(3430), + [anon_sym_u_DQUOTE] = ACTIONS(3430), + [anon_sym_U_DQUOTE] = ACTIONS(3430), + [anon_sym_u8_DQUOTE] = ACTIONS(3430), + [anon_sym_DQUOTE] = ACTIONS(3430), + [sym_true] = ACTIONS(3428), + [sym_false] = ACTIONS(3428), + [anon_sym_NULL] = ACTIONS(3428), + [anon_sym_nullptr] = ACTIONS(3428), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3428), + [anon_sym_decltype] = ACTIONS(3428), + [anon_sym_virtual] = ACTIONS(3428), + [anon_sym_alignas] = ACTIONS(3428), + [anon_sym_explicit] = ACTIONS(3428), + [anon_sym_typename] = ACTIONS(3428), + [anon_sym_template] = ACTIONS(3428), + [anon_sym_operator] = ACTIONS(3428), + [anon_sym_try] = ACTIONS(3428), + [anon_sym_delete] = ACTIONS(3428), + [anon_sym_throw] = ACTIONS(3428), + [anon_sym_namespace] = ACTIONS(3428), + [anon_sym_using] = ACTIONS(3428), + [anon_sym_static_assert] = ACTIONS(3428), + [anon_sym_concept] = ACTIONS(3428), + [anon_sym_co_return] = ACTIONS(3428), + [anon_sym_co_yield] = ACTIONS(3428), + [anon_sym_R_DQUOTE] = ACTIONS(3430), + [anon_sym_LR_DQUOTE] = ACTIONS(3430), + [anon_sym_uR_DQUOTE] = ACTIONS(3430), + [anon_sym_UR_DQUOTE] = ACTIONS(3430), + [anon_sym_u8R_DQUOTE] = ACTIONS(3430), + [anon_sym_co_await] = ACTIONS(3428), + [anon_sym_new] = ACTIONS(3428), + [anon_sym_requires] = ACTIONS(3428), + [sym_this] = ACTIONS(3428), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3430), + [sym_semgrep_named_ellipsis] = ACTIONS(3430), + }, + [708] = { + [sym_identifier] = ACTIONS(3380), + [aux_sym_preproc_include_token1] = ACTIONS(3380), + [aux_sym_preproc_def_token1] = ACTIONS(3380), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3382), + [aux_sym_preproc_if_token1] = ACTIONS(3380), + [aux_sym_preproc_if_token2] = ACTIONS(3380), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3380), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3380), + [sym_preproc_directive] = ACTIONS(3380), + [anon_sym_LPAREN2] = ACTIONS(3382), + [anon_sym_BANG] = ACTIONS(3382), + [anon_sym_TILDE] = ACTIONS(3382), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_STAR] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_AMP] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym___extension__] = ACTIONS(3380), + [anon_sym_typedef] = ACTIONS(3380), + [anon_sym_extern] = ACTIONS(3380), + [anon_sym___attribute__] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3382), + [anon_sym___declspec] = ACTIONS(3380), + [anon_sym___based] = ACTIONS(3380), + [anon_sym___cdecl] = ACTIONS(3380), + [anon_sym___clrcall] = ACTIONS(3380), + [anon_sym___stdcall] = ACTIONS(3380), + [anon_sym___fastcall] = ACTIONS(3380), + [anon_sym___thiscall] = ACTIONS(3380), + [anon_sym___vectorcall] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_signed] = ACTIONS(3380), + [anon_sym_unsigned] = ACTIONS(3380), + [anon_sym_long] = ACTIONS(3380), + [anon_sym_short] = ACTIONS(3380), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_static] = ACTIONS(3380), + [anon_sym_register] = ACTIONS(3380), + [anon_sym_inline] = ACTIONS(3380), + [anon_sym___inline] = ACTIONS(3380), + [anon_sym___inline__] = ACTIONS(3380), + [anon_sym___forceinline] = ACTIONS(3380), + [anon_sym_thread_local] = ACTIONS(3380), + [anon_sym___thread] = ACTIONS(3380), + [anon_sym_const] = ACTIONS(3380), + [anon_sym_constexpr] = ACTIONS(3380), + [anon_sym_volatile] = ACTIONS(3380), + [anon_sym_restrict] = ACTIONS(3380), + [anon_sym___restrict__] = ACTIONS(3380), + [anon_sym__Atomic] = ACTIONS(3380), + [anon_sym__Noreturn] = ACTIONS(3380), + [anon_sym_noreturn] = ACTIONS(3380), + [anon_sym_mutable] = ACTIONS(3380), + [anon_sym_constinit] = ACTIONS(3380), + [anon_sym_consteval] = ACTIONS(3380), + [sym_primitive_type] = ACTIONS(3380), + [anon_sym_enum] = ACTIONS(3380), + [anon_sym_class] = ACTIONS(3380), + [anon_sym_struct] = ACTIONS(3380), + [anon_sym_union] = ACTIONS(3380), + [anon_sym_if] = ACTIONS(3380), + [anon_sym_switch] = ACTIONS(3380), + [anon_sym_case] = ACTIONS(3380), + [anon_sym_default] = ACTIONS(3380), + [anon_sym_while] = ACTIONS(3380), + [anon_sym_do] = ACTIONS(3380), + [anon_sym_for] = ACTIONS(3380), + [anon_sym_return] = ACTIONS(3380), + [anon_sym_break] = ACTIONS(3380), + [anon_sym_continue] = ACTIONS(3380), + [anon_sym_goto] = ACTIONS(3380), + [anon_sym___try] = ACTIONS(3380), + [anon_sym___leave] = ACTIONS(3380), + [anon_sym_not] = ACTIONS(3380), + [anon_sym_compl] = ACTIONS(3380), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_sizeof] = ACTIONS(3380), + [anon_sym___alignof__] = ACTIONS(3380), + [anon_sym___alignof] = ACTIONS(3380), + [anon_sym__alignof] = ACTIONS(3380), + [anon_sym_alignof] = ACTIONS(3380), + [anon_sym__Alignof] = ACTIONS(3380), + [anon_sym_offsetof] = ACTIONS(3380), + [anon_sym__Generic] = ACTIONS(3380), + [anon_sym_asm] = ACTIONS(3380), + [anon_sym___asm__] = ACTIONS(3380), + [sym_number_literal] = ACTIONS(3382), + [anon_sym_L_SQUOTE] = ACTIONS(3382), + [anon_sym_u_SQUOTE] = ACTIONS(3382), + [anon_sym_U_SQUOTE] = ACTIONS(3382), + [anon_sym_u8_SQUOTE] = ACTIONS(3382), + [anon_sym_SQUOTE] = ACTIONS(3382), + [anon_sym_L_DQUOTE] = ACTIONS(3382), + [anon_sym_u_DQUOTE] = ACTIONS(3382), + [anon_sym_U_DQUOTE] = ACTIONS(3382), + [anon_sym_u8_DQUOTE] = ACTIONS(3382), + [anon_sym_DQUOTE] = ACTIONS(3382), + [sym_true] = ACTIONS(3380), + [sym_false] = ACTIONS(3380), + [anon_sym_NULL] = ACTIONS(3380), + [anon_sym_nullptr] = ACTIONS(3380), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3219), - [anon_sym_decltype] = ACTIONS(3219), - [anon_sym_virtual] = ACTIONS(3219), - [anon_sym_alignas] = ACTIONS(3219), - [anon_sym_explicit] = ACTIONS(3219), - [anon_sym_typename] = ACTIONS(3219), - [anon_sym_template] = ACTIONS(3219), - [anon_sym_operator] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_static_assert] = ACTIONS(3219), - [anon_sym_concept] = ACTIONS(3219), - [anon_sym_co_return] = ACTIONS(3219), - [anon_sym_co_yield] = ACTIONS(3219), - [anon_sym_R_DQUOTE] = ACTIONS(3221), - [anon_sym_LR_DQUOTE] = ACTIONS(3221), - [anon_sym_uR_DQUOTE] = ACTIONS(3221), - [anon_sym_UR_DQUOTE] = ACTIONS(3221), - [anon_sym_u8R_DQUOTE] = ACTIONS(3221), - [anon_sym_co_await] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_requires] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3221), - [sym_semgrep_named_ellipsis] = ACTIONS(3221), + [sym_auto] = ACTIONS(3380), + [anon_sym_decltype] = ACTIONS(3380), + [anon_sym_virtual] = ACTIONS(3380), + [anon_sym_alignas] = ACTIONS(3380), + [anon_sym_explicit] = ACTIONS(3380), + [anon_sym_typename] = ACTIONS(3380), + [anon_sym_template] = ACTIONS(3380), + [anon_sym_operator] = ACTIONS(3380), + [anon_sym_try] = ACTIONS(3380), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_throw] = ACTIONS(3380), + [anon_sym_namespace] = ACTIONS(3380), + [anon_sym_using] = ACTIONS(3380), + [anon_sym_static_assert] = ACTIONS(3380), + [anon_sym_concept] = ACTIONS(3380), + [anon_sym_co_return] = ACTIONS(3380), + [anon_sym_co_yield] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3380), + [anon_sym_new] = ACTIONS(3380), + [anon_sym_requires] = ACTIONS(3380), + [sym_this] = ACTIONS(3380), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3382), + [sym_semgrep_named_ellipsis] = ACTIONS(3382), }, - [660] = { - [ts_builtin_sym_end] = ACTIONS(3229), - [sym_identifier] = ACTIONS(3227), - [aux_sym_preproc_include_token1] = ACTIONS(3227), - [aux_sym_preproc_def_token1] = ACTIONS(3227), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3229), - [aux_sym_preproc_if_token1] = ACTIONS(3227), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3227), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3227), - [sym_preproc_directive] = ACTIONS(3227), - [anon_sym_LPAREN2] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_TILDE] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_AMP_AMP] = ACTIONS(3229), - [anon_sym_AMP] = ACTIONS(3227), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym___extension__] = ACTIONS(3227), - [anon_sym_typedef] = ACTIONS(3227), - [anon_sym_extern] = ACTIONS(3227), - [anon_sym___attribute__] = ACTIONS(3227), - [anon_sym_COLON_COLON] = ACTIONS(3229), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3229), - [anon_sym___declspec] = ACTIONS(3227), - [anon_sym___based] = ACTIONS(3227), - [anon_sym___cdecl] = ACTIONS(3227), - [anon_sym___clrcall] = ACTIONS(3227), - [anon_sym___stdcall] = ACTIONS(3227), - [anon_sym___fastcall] = ACTIONS(3227), - [anon_sym___thiscall] = ACTIONS(3227), - [anon_sym___vectorcall] = ACTIONS(3227), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_signed] = ACTIONS(3227), - [anon_sym_unsigned] = ACTIONS(3227), - [anon_sym_long] = ACTIONS(3227), - [anon_sym_short] = ACTIONS(3227), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_static] = ACTIONS(3227), - [anon_sym_register] = ACTIONS(3227), - [anon_sym_inline] = ACTIONS(3227), - [anon_sym___inline] = ACTIONS(3227), - [anon_sym___inline__] = ACTIONS(3227), - [anon_sym___forceinline] = ACTIONS(3227), - [anon_sym_thread_local] = ACTIONS(3227), - [anon_sym___thread] = ACTIONS(3227), - [anon_sym_const] = ACTIONS(3227), - [anon_sym_constexpr] = ACTIONS(3227), - [anon_sym_volatile] = ACTIONS(3227), - [anon_sym_restrict] = ACTIONS(3227), - [anon_sym___restrict__] = ACTIONS(3227), - [anon_sym__Atomic] = ACTIONS(3227), - [anon_sym__Noreturn] = ACTIONS(3227), - [anon_sym_noreturn] = ACTIONS(3227), - [anon_sym_mutable] = ACTIONS(3227), - [anon_sym_constinit] = ACTIONS(3227), - [anon_sym_consteval] = ACTIONS(3227), - [sym_primitive_type] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(3227), - [anon_sym_class] = ACTIONS(3227), - [anon_sym_struct] = ACTIONS(3227), - [anon_sym_union] = ACTIONS(3227), - [anon_sym_if] = ACTIONS(3227), - [anon_sym_else] = ACTIONS(3227), - [anon_sym_switch] = ACTIONS(3227), - [anon_sym_case] = ACTIONS(3227), - [anon_sym_default] = ACTIONS(3227), - [anon_sym_while] = ACTIONS(3227), - [anon_sym_do] = ACTIONS(3227), - [anon_sym_for] = ACTIONS(3227), - [anon_sym_return] = ACTIONS(3227), - [anon_sym_break] = ACTIONS(3227), - [anon_sym_continue] = ACTIONS(3227), - [anon_sym_goto] = ACTIONS(3227), - [anon_sym___try] = ACTIONS(3227), - [anon_sym___leave] = ACTIONS(3227), - [anon_sym_not] = ACTIONS(3227), - [anon_sym_compl] = ACTIONS(3227), - [anon_sym_DASH_DASH] = ACTIONS(3229), - [anon_sym_PLUS_PLUS] = ACTIONS(3229), - [anon_sym_sizeof] = ACTIONS(3227), - [anon_sym___alignof__] = ACTIONS(3227), - [anon_sym___alignof] = ACTIONS(3227), - [anon_sym__alignof] = ACTIONS(3227), - [anon_sym_alignof] = ACTIONS(3227), - [anon_sym__Alignof] = ACTIONS(3227), - [anon_sym_offsetof] = ACTIONS(3227), - [anon_sym__Generic] = ACTIONS(3227), - [anon_sym_asm] = ACTIONS(3227), - [anon_sym___asm__] = ACTIONS(3227), - [sym_number_literal] = ACTIONS(3229), - [anon_sym_L_SQUOTE] = ACTIONS(3229), - [anon_sym_u_SQUOTE] = ACTIONS(3229), - [anon_sym_U_SQUOTE] = ACTIONS(3229), - [anon_sym_u8_SQUOTE] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3229), - [anon_sym_L_DQUOTE] = ACTIONS(3229), - [anon_sym_u_DQUOTE] = ACTIONS(3229), - [anon_sym_U_DQUOTE] = ACTIONS(3229), - [anon_sym_u8_DQUOTE] = ACTIONS(3229), - [anon_sym_DQUOTE] = ACTIONS(3229), - [sym_true] = ACTIONS(3227), - [sym_false] = ACTIONS(3227), - [anon_sym_NULL] = ACTIONS(3227), - [anon_sym_nullptr] = ACTIONS(3227), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3227), - [anon_sym_decltype] = ACTIONS(3227), - [anon_sym_virtual] = ACTIONS(3227), - [anon_sym_alignas] = ACTIONS(3227), - [anon_sym_explicit] = ACTIONS(3227), - [anon_sym_typename] = ACTIONS(3227), - [anon_sym_template] = ACTIONS(3227), - [anon_sym_operator] = ACTIONS(3227), - [anon_sym_try] = ACTIONS(3227), - [anon_sym_delete] = ACTIONS(3227), - [anon_sym_throw] = ACTIONS(3227), - [anon_sym_namespace] = ACTIONS(3227), - [anon_sym_using] = ACTIONS(3227), - [anon_sym_static_assert] = ACTIONS(3227), - [anon_sym_concept] = ACTIONS(3227), - [anon_sym_co_return] = ACTIONS(3227), - [anon_sym_co_yield] = ACTIONS(3227), - [anon_sym_R_DQUOTE] = ACTIONS(3229), - [anon_sym_LR_DQUOTE] = ACTIONS(3229), - [anon_sym_uR_DQUOTE] = ACTIONS(3229), - [anon_sym_UR_DQUOTE] = ACTIONS(3229), - [anon_sym_u8R_DQUOTE] = ACTIONS(3229), - [anon_sym_co_await] = ACTIONS(3227), - [anon_sym_new] = ACTIONS(3227), - [anon_sym_requires] = ACTIONS(3227), - [sym_this] = ACTIONS(3227), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3229), - [sym_semgrep_named_ellipsis] = ACTIONS(3229), + [709] = { + [sym_identifier] = ACTIONS(3434), + [aux_sym_preproc_include_token1] = ACTIONS(3434), + [aux_sym_preproc_def_token1] = ACTIONS(3434), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3436), + [aux_sym_preproc_if_token1] = ACTIONS(3434), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3434), + [sym_preproc_directive] = ACTIONS(3434), + [anon_sym_LPAREN2] = ACTIONS(3436), + [anon_sym_BANG] = ACTIONS(3436), + [anon_sym_TILDE] = ACTIONS(3436), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_STAR] = ACTIONS(3436), + [anon_sym_AMP_AMP] = ACTIONS(3436), + [anon_sym_AMP] = ACTIONS(3434), + [anon_sym_SEMI] = ACTIONS(3436), + [anon_sym___extension__] = ACTIONS(3434), + [anon_sym_typedef] = ACTIONS(3434), + [anon_sym_extern] = ACTIONS(3434), + [anon_sym___attribute__] = ACTIONS(3434), + [anon_sym_COLON_COLON] = ACTIONS(3436), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3436), + [anon_sym___declspec] = ACTIONS(3434), + [anon_sym___based] = ACTIONS(3434), + [anon_sym___cdecl] = ACTIONS(3434), + [anon_sym___clrcall] = ACTIONS(3434), + [anon_sym___stdcall] = ACTIONS(3434), + [anon_sym___fastcall] = ACTIONS(3434), + [anon_sym___thiscall] = ACTIONS(3434), + [anon_sym___vectorcall] = ACTIONS(3434), + [anon_sym_LBRACE] = ACTIONS(3436), + [anon_sym_RBRACE] = ACTIONS(3436), + [anon_sym_signed] = ACTIONS(3434), + [anon_sym_unsigned] = ACTIONS(3434), + [anon_sym_long] = ACTIONS(3434), + [anon_sym_short] = ACTIONS(3434), + [anon_sym_LBRACK] = ACTIONS(3434), + [anon_sym_static] = ACTIONS(3434), + [anon_sym_register] = ACTIONS(3434), + [anon_sym_inline] = ACTIONS(3434), + [anon_sym___inline] = ACTIONS(3434), + [anon_sym___inline__] = ACTIONS(3434), + [anon_sym___forceinline] = ACTIONS(3434), + [anon_sym_thread_local] = ACTIONS(3434), + [anon_sym___thread] = ACTIONS(3434), + [anon_sym_const] = ACTIONS(3434), + [anon_sym_constexpr] = ACTIONS(3434), + [anon_sym_volatile] = ACTIONS(3434), + [anon_sym_restrict] = ACTIONS(3434), + [anon_sym___restrict__] = ACTIONS(3434), + [anon_sym__Atomic] = ACTIONS(3434), + [anon_sym__Noreturn] = ACTIONS(3434), + [anon_sym_noreturn] = ACTIONS(3434), + [anon_sym_mutable] = ACTIONS(3434), + [anon_sym_constinit] = ACTIONS(3434), + [anon_sym_consteval] = ACTIONS(3434), + [sym_primitive_type] = ACTIONS(3434), + [anon_sym_enum] = ACTIONS(3434), + [anon_sym_class] = ACTIONS(3434), + [anon_sym_struct] = ACTIONS(3434), + [anon_sym_union] = ACTIONS(3434), + [anon_sym_if] = ACTIONS(3434), + [anon_sym_switch] = ACTIONS(3434), + [anon_sym_case] = ACTIONS(3434), + [anon_sym_default] = ACTIONS(3434), + [anon_sym_while] = ACTIONS(3434), + [anon_sym_do] = ACTIONS(3434), + [anon_sym_for] = ACTIONS(3434), + [anon_sym_return] = ACTIONS(3434), + [anon_sym_break] = ACTIONS(3434), + [anon_sym_continue] = ACTIONS(3434), + [anon_sym_goto] = ACTIONS(3434), + [anon_sym___try] = ACTIONS(3434), + [anon_sym___leave] = ACTIONS(3434), + [anon_sym_not] = ACTIONS(3434), + [anon_sym_compl] = ACTIONS(3434), + [anon_sym_DASH_DASH] = ACTIONS(3436), + [anon_sym_PLUS_PLUS] = ACTIONS(3436), + [anon_sym_sizeof] = ACTIONS(3434), + [anon_sym___alignof__] = ACTIONS(3434), + [anon_sym___alignof] = ACTIONS(3434), + [anon_sym__alignof] = ACTIONS(3434), + [anon_sym_alignof] = ACTIONS(3434), + [anon_sym__Alignof] = ACTIONS(3434), + [anon_sym_offsetof] = ACTIONS(3434), + [anon_sym__Generic] = ACTIONS(3434), + [anon_sym_asm] = ACTIONS(3434), + [anon_sym___asm__] = ACTIONS(3434), + [sym_number_literal] = ACTIONS(3436), + [anon_sym_L_SQUOTE] = ACTIONS(3436), + [anon_sym_u_SQUOTE] = ACTIONS(3436), + [anon_sym_U_SQUOTE] = ACTIONS(3436), + [anon_sym_u8_SQUOTE] = ACTIONS(3436), + [anon_sym_SQUOTE] = ACTIONS(3436), + [anon_sym_L_DQUOTE] = ACTIONS(3436), + [anon_sym_u_DQUOTE] = ACTIONS(3436), + [anon_sym_U_DQUOTE] = ACTIONS(3436), + [anon_sym_u8_DQUOTE] = ACTIONS(3436), + [anon_sym_DQUOTE] = ACTIONS(3436), + [sym_true] = ACTIONS(3434), + [sym_false] = ACTIONS(3434), + [anon_sym_NULL] = ACTIONS(3434), + [anon_sym_nullptr] = ACTIONS(3434), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3434), + [anon_sym_decltype] = ACTIONS(3434), + [anon_sym_virtual] = ACTIONS(3434), + [anon_sym_alignas] = ACTIONS(3434), + [anon_sym_explicit] = ACTIONS(3434), + [anon_sym_typename] = ACTIONS(3434), + [anon_sym_template] = ACTIONS(3434), + [anon_sym_operator] = ACTIONS(3434), + [anon_sym_try] = ACTIONS(3434), + [anon_sym_delete] = ACTIONS(3434), + [anon_sym_throw] = ACTIONS(3434), + [anon_sym_namespace] = ACTIONS(3434), + [anon_sym_using] = ACTIONS(3434), + [anon_sym_static_assert] = ACTIONS(3434), + [anon_sym_concept] = ACTIONS(3434), + [anon_sym_co_return] = ACTIONS(3434), + [anon_sym_co_yield] = ACTIONS(3434), + [anon_sym_R_DQUOTE] = ACTIONS(3436), + [anon_sym_LR_DQUOTE] = ACTIONS(3436), + [anon_sym_uR_DQUOTE] = ACTIONS(3436), + [anon_sym_UR_DQUOTE] = ACTIONS(3436), + [anon_sym_u8R_DQUOTE] = ACTIONS(3436), + [anon_sym_co_await] = ACTIONS(3434), + [anon_sym_new] = ACTIONS(3434), + [anon_sym_requires] = ACTIONS(3434), + [sym_this] = ACTIONS(3434), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3436), + [sym_semgrep_named_ellipsis] = ACTIONS(3436), }, - [661] = { - [sym_identifier] = ACTIONS(3231), - [aux_sym_preproc_include_token1] = ACTIONS(3231), - [aux_sym_preproc_def_token1] = ACTIONS(3231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3233), - [aux_sym_preproc_if_token1] = ACTIONS(3231), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3231), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3231), - [sym_preproc_directive] = ACTIONS(3231), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(3233), - [anon_sym_TILDE] = ACTIONS(3233), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3233), - [anon_sym_AMP_AMP] = ACTIONS(3233), - [anon_sym_AMP] = ACTIONS(3231), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym___extension__] = ACTIONS(3231), - [anon_sym_typedef] = ACTIONS(3231), - [anon_sym_extern] = ACTIONS(3231), - [anon_sym___attribute__] = ACTIONS(3231), - [anon_sym_COLON_COLON] = ACTIONS(3233), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3233), - [anon_sym___declspec] = ACTIONS(3231), - [anon_sym___based] = ACTIONS(3231), - [anon_sym___cdecl] = ACTIONS(3231), - [anon_sym___clrcall] = ACTIONS(3231), - [anon_sym___stdcall] = ACTIONS(3231), - [anon_sym___fastcall] = ACTIONS(3231), - [anon_sym___thiscall] = ACTIONS(3231), - [anon_sym___vectorcall] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_signed] = ACTIONS(3231), - [anon_sym_unsigned] = ACTIONS(3231), - [anon_sym_long] = ACTIONS(3231), - [anon_sym_short] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_static] = ACTIONS(3231), - [anon_sym_register] = ACTIONS(3231), - [anon_sym_inline] = ACTIONS(3231), - [anon_sym___inline] = ACTIONS(3231), - [anon_sym___inline__] = ACTIONS(3231), - [anon_sym___forceinline] = ACTIONS(3231), - [anon_sym_thread_local] = ACTIONS(3231), - [anon_sym___thread] = ACTIONS(3231), - [anon_sym_const] = ACTIONS(3231), - [anon_sym_constexpr] = ACTIONS(3231), - [anon_sym_volatile] = ACTIONS(3231), - [anon_sym_restrict] = ACTIONS(3231), - [anon_sym___restrict__] = ACTIONS(3231), - [anon_sym__Atomic] = ACTIONS(3231), - [anon_sym__Noreturn] = ACTIONS(3231), - [anon_sym_noreturn] = ACTIONS(3231), - [anon_sym_mutable] = ACTIONS(3231), - [anon_sym_constinit] = ACTIONS(3231), - [anon_sym_consteval] = ACTIONS(3231), - [sym_primitive_type] = ACTIONS(3231), - [anon_sym_enum] = ACTIONS(3231), - [anon_sym_class] = ACTIONS(3231), - [anon_sym_struct] = ACTIONS(3231), - [anon_sym_union] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_else] = ACTIONS(3231), - [anon_sym_switch] = ACTIONS(3231), - [anon_sym_case] = ACTIONS(3231), - [anon_sym_default] = ACTIONS(3231), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_do] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_break] = ACTIONS(3231), - [anon_sym_continue] = ACTIONS(3231), - [anon_sym_goto] = ACTIONS(3231), - [anon_sym___try] = ACTIONS(3231), - [anon_sym___leave] = ACTIONS(3231), - [anon_sym_not] = ACTIONS(3231), - [anon_sym_compl] = ACTIONS(3231), - [anon_sym_DASH_DASH] = ACTIONS(3233), - [anon_sym_PLUS_PLUS] = ACTIONS(3233), - [anon_sym_sizeof] = ACTIONS(3231), - [anon_sym___alignof__] = ACTIONS(3231), - [anon_sym___alignof] = ACTIONS(3231), - [anon_sym__alignof] = ACTIONS(3231), - [anon_sym_alignof] = ACTIONS(3231), - [anon_sym__Alignof] = ACTIONS(3231), - [anon_sym_offsetof] = ACTIONS(3231), - [anon_sym__Generic] = ACTIONS(3231), - [anon_sym_asm] = ACTIONS(3231), - [anon_sym___asm__] = ACTIONS(3231), - [sym_number_literal] = ACTIONS(3233), - [anon_sym_L_SQUOTE] = ACTIONS(3233), - [anon_sym_u_SQUOTE] = ACTIONS(3233), - [anon_sym_U_SQUOTE] = ACTIONS(3233), - [anon_sym_u8_SQUOTE] = ACTIONS(3233), - [anon_sym_SQUOTE] = ACTIONS(3233), - [anon_sym_L_DQUOTE] = ACTIONS(3233), - [anon_sym_u_DQUOTE] = ACTIONS(3233), - [anon_sym_U_DQUOTE] = ACTIONS(3233), - [anon_sym_u8_DQUOTE] = ACTIONS(3233), - [anon_sym_DQUOTE] = ACTIONS(3233), - [sym_true] = ACTIONS(3231), - [sym_false] = ACTIONS(3231), - [anon_sym_NULL] = ACTIONS(3231), - [anon_sym_nullptr] = ACTIONS(3231), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3231), - [anon_sym_decltype] = ACTIONS(3231), - [anon_sym_virtual] = ACTIONS(3231), - [anon_sym_alignas] = ACTIONS(3231), - [anon_sym_explicit] = ACTIONS(3231), - [anon_sym_typename] = ACTIONS(3231), - [anon_sym_template] = ACTIONS(3231), - [anon_sym_operator] = ACTIONS(3231), - [anon_sym_try] = ACTIONS(3231), - [anon_sym_delete] = ACTIONS(3231), - [anon_sym_throw] = ACTIONS(3231), - [anon_sym_namespace] = ACTIONS(3231), - [anon_sym_using] = ACTIONS(3231), - [anon_sym_static_assert] = ACTIONS(3231), - [anon_sym_concept] = ACTIONS(3231), - [anon_sym_co_return] = ACTIONS(3231), - [anon_sym_co_yield] = ACTIONS(3231), - [anon_sym_R_DQUOTE] = ACTIONS(3233), - [anon_sym_LR_DQUOTE] = ACTIONS(3233), - [anon_sym_uR_DQUOTE] = ACTIONS(3233), - [anon_sym_UR_DQUOTE] = ACTIONS(3233), - [anon_sym_u8R_DQUOTE] = ACTIONS(3233), - [anon_sym_co_await] = ACTIONS(3231), - [anon_sym_new] = ACTIONS(3231), - [anon_sym_requires] = ACTIONS(3231), - [sym_this] = ACTIONS(3231), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3233), - [sym_semgrep_named_ellipsis] = ACTIONS(3233), + [710] = { + [sym_identifier] = ACTIONS(3438), + [aux_sym_preproc_include_token1] = ACTIONS(3438), + [aux_sym_preproc_def_token1] = ACTIONS(3438), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3440), + [aux_sym_preproc_if_token1] = ACTIONS(3438), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3438), + [sym_preproc_directive] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_BANG] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3440), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_STAR] = ACTIONS(3440), + [anon_sym_AMP_AMP] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_SEMI] = ACTIONS(3440), + [anon_sym___extension__] = ACTIONS(3438), + [anon_sym_typedef] = ACTIONS(3438), + [anon_sym_extern] = ACTIONS(3438), + [anon_sym___attribute__] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3440), + [anon_sym___declspec] = ACTIONS(3438), + [anon_sym___based] = ACTIONS(3438), + [anon_sym___cdecl] = ACTIONS(3438), + [anon_sym___clrcall] = ACTIONS(3438), + [anon_sym___stdcall] = ACTIONS(3438), + [anon_sym___fastcall] = ACTIONS(3438), + [anon_sym___thiscall] = ACTIONS(3438), + [anon_sym___vectorcall] = ACTIONS(3438), + [anon_sym_LBRACE] = ACTIONS(3440), + [anon_sym_RBRACE] = ACTIONS(3440), + [anon_sym_signed] = ACTIONS(3438), + [anon_sym_unsigned] = ACTIONS(3438), + [anon_sym_long] = ACTIONS(3438), + [anon_sym_short] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_static] = ACTIONS(3438), + [anon_sym_register] = ACTIONS(3438), + [anon_sym_inline] = ACTIONS(3438), + [anon_sym___inline] = ACTIONS(3438), + [anon_sym___inline__] = ACTIONS(3438), + [anon_sym___forceinline] = ACTIONS(3438), + [anon_sym_thread_local] = ACTIONS(3438), + [anon_sym___thread] = ACTIONS(3438), + [anon_sym_const] = ACTIONS(3438), + [anon_sym_constexpr] = ACTIONS(3438), + [anon_sym_volatile] = ACTIONS(3438), + [anon_sym_restrict] = ACTIONS(3438), + [anon_sym___restrict__] = ACTIONS(3438), + [anon_sym__Atomic] = ACTIONS(3438), + [anon_sym__Noreturn] = ACTIONS(3438), + [anon_sym_noreturn] = ACTIONS(3438), + [anon_sym_mutable] = ACTIONS(3438), + [anon_sym_constinit] = ACTIONS(3438), + [anon_sym_consteval] = ACTIONS(3438), + [sym_primitive_type] = ACTIONS(3438), + [anon_sym_enum] = ACTIONS(3438), + [anon_sym_class] = ACTIONS(3438), + [anon_sym_struct] = ACTIONS(3438), + [anon_sym_union] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_switch] = ACTIONS(3438), + [anon_sym_case] = ACTIONS(3438), + [anon_sym_default] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_break] = ACTIONS(3438), + [anon_sym_continue] = ACTIONS(3438), + [anon_sym_goto] = ACTIONS(3438), + [anon_sym___try] = ACTIONS(3438), + [anon_sym___leave] = ACTIONS(3438), + [anon_sym_not] = ACTIONS(3438), + [anon_sym_compl] = ACTIONS(3438), + [anon_sym_DASH_DASH] = ACTIONS(3440), + [anon_sym_PLUS_PLUS] = ACTIONS(3440), + [anon_sym_sizeof] = ACTIONS(3438), + [anon_sym___alignof__] = ACTIONS(3438), + [anon_sym___alignof] = ACTIONS(3438), + [anon_sym__alignof] = ACTIONS(3438), + [anon_sym_alignof] = ACTIONS(3438), + [anon_sym__Alignof] = ACTIONS(3438), + [anon_sym_offsetof] = ACTIONS(3438), + [anon_sym__Generic] = ACTIONS(3438), + [anon_sym_asm] = ACTIONS(3438), + [anon_sym___asm__] = ACTIONS(3438), + [sym_number_literal] = ACTIONS(3440), + [anon_sym_L_SQUOTE] = ACTIONS(3440), + [anon_sym_u_SQUOTE] = ACTIONS(3440), + [anon_sym_U_SQUOTE] = ACTIONS(3440), + [anon_sym_u8_SQUOTE] = ACTIONS(3440), + [anon_sym_SQUOTE] = ACTIONS(3440), + [anon_sym_L_DQUOTE] = ACTIONS(3440), + [anon_sym_u_DQUOTE] = ACTIONS(3440), + [anon_sym_U_DQUOTE] = ACTIONS(3440), + [anon_sym_u8_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE] = ACTIONS(3440), + [sym_true] = ACTIONS(3438), + [sym_false] = ACTIONS(3438), + [anon_sym_NULL] = ACTIONS(3438), + [anon_sym_nullptr] = ACTIONS(3438), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3438), + [anon_sym_decltype] = ACTIONS(3438), + [anon_sym_virtual] = ACTIONS(3438), + [anon_sym_alignas] = ACTIONS(3438), + [anon_sym_explicit] = ACTIONS(3438), + [anon_sym_typename] = ACTIONS(3438), + [anon_sym_template] = ACTIONS(3438), + [anon_sym_operator] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_delete] = ACTIONS(3438), + [anon_sym_throw] = ACTIONS(3438), + [anon_sym_namespace] = ACTIONS(3438), + [anon_sym_using] = ACTIONS(3438), + [anon_sym_static_assert] = ACTIONS(3438), + [anon_sym_concept] = ACTIONS(3438), + [anon_sym_co_return] = ACTIONS(3438), + [anon_sym_co_yield] = ACTIONS(3438), + [anon_sym_R_DQUOTE] = ACTIONS(3440), + [anon_sym_LR_DQUOTE] = ACTIONS(3440), + [anon_sym_uR_DQUOTE] = ACTIONS(3440), + [anon_sym_UR_DQUOTE] = ACTIONS(3440), + [anon_sym_u8R_DQUOTE] = ACTIONS(3440), + [anon_sym_co_await] = ACTIONS(3438), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_requires] = ACTIONS(3438), + [sym_this] = ACTIONS(3438), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3440), + [sym_semgrep_named_ellipsis] = ACTIONS(3440), }, - [662] = { - [sym_preproc_def] = STATE(1988), - [sym_preproc_function_def] = STATE(1988), - [sym_preproc_call] = STATE(1988), - [sym_preproc_if_in_field_declaration_list] = STATE(1988), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1988), - [sym_preproc_else_in_field_declaration_list] = STATE(9811), - [sym_preproc_elif_in_field_declaration_list] = STATE(9811), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(9811), - [sym_type_definition] = STATE(1988), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6897), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7690), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(820), - [sym_field_declaration] = STATE(1988), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(1988), - [sym_operator_cast] = STATE(8046), - [sym_inline_method_definition] = STATE(1988), - [sym_constructor_specifiers] = STATE(1934), - [sym_operator_cast_definition] = STATE(1988), - [sym_operator_cast_declaration] = STATE(1988), - [sym_constructor_or_destructor_definition] = STATE(1988), - [sym_constructor_or_destructor_declaration] = STATE(1988), - [sym_friend_declaration] = STATE(1988), - [sym_access_specifier] = STATE(9892), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(1988), - [sym_alias_declaration] = STATE(1988), - [sym_static_assert_declaration] = STATE(1988), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8046), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(820), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1934), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(3684), - [aux_sym_preproc_if_token1] = ACTIONS(3686), - [aux_sym_preproc_if_token2] = ACTIONS(3768), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [aux_sym_preproc_else_token1] = ACTIONS(3694), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3698), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3700), - [sym_preproc_directive] = ACTIONS(3702), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(3712), - [anon_sym_typedef] = ACTIONS(3714), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [711] = { + [sym_identifier] = ACTIONS(3668), + [aux_sym_preproc_include_token1] = ACTIONS(3668), + [aux_sym_preproc_def_token1] = ACTIONS(3668), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3670), + [aux_sym_preproc_if_token1] = ACTIONS(3668), + [aux_sym_preproc_if_token2] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3668), + [anon_sym_LPAREN2] = ACTIONS(3670), + [anon_sym_BANG] = ACTIONS(3670), + [anon_sym_TILDE] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_AMP_AMP] = ACTIONS(3670), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_SEMI] = ACTIONS(3670), + [anon_sym___extension__] = ACTIONS(3668), + [anon_sym_typedef] = ACTIONS(3668), + [anon_sym_extern] = ACTIONS(3668), + [anon_sym___attribute__] = ACTIONS(3668), + [anon_sym_COLON_COLON] = ACTIONS(3670), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3670), + [anon_sym___declspec] = ACTIONS(3668), + [anon_sym___based] = ACTIONS(3668), + [anon_sym___cdecl] = ACTIONS(3668), + [anon_sym___clrcall] = ACTIONS(3668), + [anon_sym___stdcall] = ACTIONS(3668), + [anon_sym___fastcall] = ACTIONS(3668), + [anon_sym___thiscall] = ACTIONS(3668), + [anon_sym___vectorcall] = ACTIONS(3668), + [anon_sym_LBRACE] = ACTIONS(3670), + [anon_sym_signed] = ACTIONS(3668), + [anon_sym_unsigned] = ACTIONS(3668), + [anon_sym_long] = ACTIONS(3668), + [anon_sym_short] = ACTIONS(3668), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_static] = ACTIONS(3668), + [anon_sym_register] = ACTIONS(3668), + [anon_sym_inline] = ACTIONS(3668), + [anon_sym___inline] = ACTIONS(3668), + [anon_sym___inline__] = ACTIONS(3668), + [anon_sym___forceinline] = ACTIONS(3668), + [anon_sym_thread_local] = ACTIONS(3668), + [anon_sym___thread] = ACTIONS(3668), + [anon_sym_const] = ACTIONS(3668), + [anon_sym_constexpr] = ACTIONS(3668), + [anon_sym_volatile] = ACTIONS(3668), + [anon_sym_restrict] = ACTIONS(3668), + [anon_sym___restrict__] = ACTIONS(3668), + [anon_sym__Atomic] = ACTIONS(3668), + [anon_sym__Noreturn] = ACTIONS(3668), + [anon_sym_noreturn] = ACTIONS(3668), + [anon_sym_mutable] = ACTIONS(3668), + [anon_sym_constinit] = ACTIONS(3668), + [anon_sym_consteval] = ACTIONS(3668), + [sym_primitive_type] = ACTIONS(3668), + [anon_sym_enum] = ACTIONS(3668), + [anon_sym_class] = ACTIONS(3668), + [anon_sym_struct] = ACTIONS(3668), + [anon_sym_union] = ACTIONS(3668), + [anon_sym_if] = ACTIONS(3668), + [anon_sym_switch] = ACTIONS(3668), + [anon_sym_case] = ACTIONS(3668), + [anon_sym_default] = ACTIONS(3668), + [anon_sym_while] = ACTIONS(3668), + [anon_sym_do] = ACTIONS(3668), + [anon_sym_for] = ACTIONS(3668), + [anon_sym_return] = ACTIONS(3668), + [anon_sym_break] = ACTIONS(3668), + [anon_sym_continue] = ACTIONS(3668), + [anon_sym_goto] = ACTIONS(3668), + [anon_sym___try] = ACTIONS(3668), + [anon_sym___leave] = ACTIONS(3668), + [anon_sym_not] = ACTIONS(3668), + [anon_sym_compl] = ACTIONS(3668), + [anon_sym_DASH_DASH] = ACTIONS(3670), + [anon_sym_PLUS_PLUS] = ACTIONS(3670), + [anon_sym_sizeof] = ACTIONS(3668), + [anon_sym___alignof__] = ACTIONS(3668), + [anon_sym___alignof] = ACTIONS(3668), + [anon_sym__alignof] = ACTIONS(3668), + [anon_sym_alignof] = ACTIONS(3668), + [anon_sym__Alignof] = ACTIONS(3668), + [anon_sym_offsetof] = ACTIONS(3668), + [anon_sym__Generic] = ACTIONS(3668), + [anon_sym_asm] = ACTIONS(3668), + [anon_sym___asm__] = ACTIONS(3668), + [sym_number_literal] = ACTIONS(3670), + [anon_sym_L_SQUOTE] = ACTIONS(3670), + [anon_sym_u_SQUOTE] = ACTIONS(3670), + [anon_sym_U_SQUOTE] = ACTIONS(3670), + [anon_sym_u8_SQUOTE] = ACTIONS(3670), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_L_DQUOTE] = ACTIONS(3670), + [anon_sym_u_DQUOTE] = ACTIONS(3670), + [anon_sym_U_DQUOTE] = ACTIONS(3670), + [anon_sym_u8_DQUOTE] = ACTIONS(3670), + [anon_sym_DQUOTE] = ACTIONS(3670), + [sym_true] = ACTIONS(3668), + [sym_false] = ACTIONS(3668), + [anon_sym_NULL] = ACTIONS(3668), + [anon_sym_nullptr] = ACTIONS(3668), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3668), + [anon_sym_decltype] = ACTIONS(3668), + [anon_sym_virtual] = ACTIONS(3668), + [anon_sym_alignas] = ACTIONS(3668), + [anon_sym_explicit] = ACTIONS(3668), + [anon_sym_typename] = ACTIONS(3668), + [anon_sym_template] = ACTIONS(3668), + [anon_sym_operator] = ACTIONS(3668), + [anon_sym_try] = ACTIONS(3668), + [anon_sym_delete] = ACTIONS(3668), + [anon_sym_throw] = ACTIONS(3668), + [anon_sym_namespace] = ACTIONS(3668), + [anon_sym_using] = ACTIONS(3668), + [anon_sym_static_assert] = ACTIONS(3668), + [anon_sym_concept] = ACTIONS(3668), + [anon_sym_co_return] = ACTIONS(3668), + [anon_sym_co_yield] = ACTIONS(3668), + [anon_sym_R_DQUOTE] = ACTIONS(3670), + [anon_sym_LR_DQUOTE] = ACTIONS(3670), + [anon_sym_uR_DQUOTE] = ACTIONS(3670), + [anon_sym_UR_DQUOTE] = ACTIONS(3670), + [anon_sym_u8R_DQUOTE] = ACTIONS(3670), + [anon_sym_co_await] = ACTIONS(3668), + [anon_sym_new] = ACTIONS(3668), + [anon_sym_requires] = ACTIONS(3668), + [sym_this] = ACTIONS(3668), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3670), + [sym_semgrep_named_ellipsis] = ACTIONS(3670), + }, + [712] = { + [sym_identifier] = ACTIONS(3672), + [aux_sym_preproc_include_token1] = ACTIONS(3672), + [aux_sym_preproc_def_token1] = ACTIONS(3672), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3674), + [aux_sym_preproc_if_token1] = ACTIONS(3672), + [aux_sym_preproc_if_token2] = ACTIONS(3672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3672), + [sym_preproc_directive] = ACTIONS(3672), + [anon_sym_LPAREN2] = ACTIONS(3674), + [anon_sym_BANG] = ACTIONS(3674), + [anon_sym_TILDE] = ACTIONS(3674), + [anon_sym_DASH] = ACTIONS(3672), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_STAR] = ACTIONS(3674), + [anon_sym_AMP_AMP] = ACTIONS(3674), + [anon_sym_AMP] = ACTIONS(3672), + [anon_sym_SEMI] = ACTIONS(3674), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3672), + [anon_sym_extern] = ACTIONS(3672), + [anon_sym___attribute__] = ACTIONS(3672), + [anon_sym_COLON_COLON] = ACTIONS(3674), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3674), + [anon_sym___declspec] = ACTIONS(3672), + [anon_sym___based] = ACTIONS(3672), + [anon_sym___cdecl] = ACTIONS(3672), + [anon_sym___clrcall] = ACTIONS(3672), + [anon_sym___stdcall] = ACTIONS(3672), + [anon_sym___fastcall] = ACTIONS(3672), + [anon_sym___thiscall] = ACTIONS(3672), + [anon_sym___vectorcall] = ACTIONS(3672), + [anon_sym_LBRACE] = ACTIONS(3674), + [anon_sym_signed] = ACTIONS(3672), + [anon_sym_unsigned] = ACTIONS(3672), + [anon_sym_long] = ACTIONS(3672), + [anon_sym_short] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_static] = ACTIONS(3672), + [anon_sym_register] = ACTIONS(3672), + [anon_sym_inline] = ACTIONS(3672), + [anon_sym___inline] = ACTIONS(3672), + [anon_sym___inline__] = ACTIONS(3672), + [anon_sym___forceinline] = ACTIONS(3672), + [anon_sym_thread_local] = ACTIONS(3672), + [anon_sym___thread] = ACTIONS(3672), + [anon_sym_const] = ACTIONS(3672), + [anon_sym_constexpr] = ACTIONS(3672), + [anon_sym_volatile] = ACTIONS(3672), + [anon_sym_restrict] = ACTIONS(3672), + [anon_sym___restrict__] = ACTIONS(3672), + [anon_sym__Atomic] = ACTIONS(3672), + [anon_sym__Noreturn] = ACTIONS(3672), + [anon_sym_noreturn] = ACTIONS(3672), + [anon_sym_mutable] = ACTIONS(3672), + [anon_sym_constinit] = ACTIONS(3672), + [anon_sym_consteval] = ACTIONS(3672), + [sym_primitive_type] = ACTIONS(3672), + [anon_sym_enum] = ACTIONS(3672), + [anon_sym_class] = ACTIONS(3672), + [anon_sym_struct] = ACTIONS(3672), + [anon_sym_union] = ACTIONS(3672), + [anon_sym_if] = ACTIONS(3672), + [anon_sym_switch] = ACTIONS(3672), + [anon_sym_case] = ACTIONS(3672), + [anon_sym_default] = ACTIONS(3672), + [anon_sym_while] = ACTIONS(3672), + [anon_sym_do] = ACTIONS(3672), + [anon_sym_for] = ACTIONS(3672), + [anon_sym_return] = ACTIONS(3672), + [anon_sym_break] = ACTIONS(3672), + [anon_sym_continue] = ACTIONS(3672), + [anon_sym_goto] = ACTIONS(3672), + [anon_sym___try] = ACTIONS(3672), + [anon_sym___leave] = ACTIONS(3672), + [anon_sym_not] = ACTIONS(3672), + [anon_sym_compl] = ACTIONS(3672), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_sizeof] = ACTIONS(3672), + [anon_sym___alignof__] = ACTIONS(3672), + [anon_sym___alignof] = ACTIONS(3672), + [anon_sym__alignof] = ACTIONS(3672), + [anon_sym_alignof] = ACTIONS(3672), + [anon_sym__Alignof] = ACTIONS(3672), + [anon_sym_offsetof] = ACTIONS(3672), + [anon_sym__Generic] = ACTIONS(3672), + [anon_sym_asm] = ACTIONS(3672), + [anon_sym___asm__] = ACTIONS(3672), + [sym_number_literal] = ACTIONS(3674), + [anon_sym_L_SQUOTE] = ACTIONS(3674), + [anon_sym_u_SQUOTE] = ACTIONS(3674), + [anon_sym_U_SQUOTE] = ACTIONS(3674), + [anon_sym_u8_SQUOTE] = ACTIONS(3674), + [anon_sym_SQUOTE] = ACTIONS(3674), + [anon_sym_L_DQUOTE] = ACTIONS(3674), + [anon_sym_u_DQUOTE] = ACTIONS(3674), + [anon_sym_U_DQUOTE] = ACTIONS(3674), + [anon_sym_u8_DQUOTE] = ACTIONS(3674), + [anon_sym_DQUOTE] = ACTIONS(3674), + [sym_true] = ACTIONS(3672), + [sym_false] = ACTIONS(3672), + [anon_sym_NULL] = ACTIONS(3672), + [anon_sym_nullptr] = ACTIONS(3672), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3672), + [anon_sym_decltype] = ACTIONS(3672), + [anon_sym_virtual] = ACTIONS(3672), + [anon_sym_alignas] = ACTIONS(3672), + [anon_sym_explicit] = ACTIONS(3672), + [anon_sym_typename] = ACTIONS(3672), + [anon_sym_template] = ACTIONS(3672), + [anon_sym_operator] = ACTIONS(3672), + [anon_sym_try] = ACTIONS(3672), + [anon_sym_delete] = ACTIONS(3672), + [anon_sym_throw] = ACTIONS(3672), + [anon_sym_namespace] = ACTIONS(3672), + [anon_sym_using] = ACTIONS(3672), + [anon_sym_static_assert] = ACTIONS(3672), + [anon_sym_concept] = ACTIONS(3672), + [anon_sym_co_return] = ACTIONS(3672), + [anon_sym_co_yield] = ACTIONS(3672), + [anon_sym_R_DQUOTE] = ACTIONS(3674), + [anon_sym_LR_DQUOTE] = ACTIONS(3674), + [anon_sym_uR_DQUOTE] = ACTIONS(3674), + [anon_sym_UR_DQUOTE] = ACTIONS(3674), + [anon_sym_u8R_DQUOTE] = ACTIONS(3674), + [anon_sym_co_await] = ACTIONS(3672), + [anon_sym_new] = ACTIONS(3672), + [anon_sym_requires] = ACTIONS(3672), + [sym_this] = ACTIONS(3672), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3674), + [sym_semgrep_named_ellipsis] = ACTIONS(3674), + }, + [713] = { + [sym_identifier] = ACTIONS(3503), + [aux_sym_preproc_include_token1] = ACTIONS(3503), + [aux_sym_preproc_def_token1] = ACTIONS(3503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3505), + [aux_sym_preproc_if_token1] = ACTIONS(3503), + [aux_sym_preproc_if_token2] = ACTIONS(3503), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3503), + [sym_preproc_directive] = ACTIONS(3503), + [anon_sym_LPAREN2] = ACTIONS(3505), + [anon_sym_BANG] = ACTIONS(3505), + [anon_sym_TILDE] = ACTIONS(3505), + [anon_sym_DASH] = ACTIONS(3503), + [anon_sym_PLUS] = ACTIONS(3503), + [anon_sym_STAR] = ACTIONS(3505), + [anon_sym_AMP_AMP] = ACTIONS(3505), + [anon_sym_AMP] = ACTIONS(3503), + [anon_sym_SEMI] = ACTIONS(3505), + [anon_sym___extension__] = ACTIONS(3503), + [anon_sym_typedef] = ACTIONS(3503), + [anon_sym_extern] = ACTIONS(3503), + [anon_sym___attribute__] = ACTIONS(3503), + [anon_sym_COLON_COLON] = ACTIONS(3505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3505), + [anon_sym___declspec] = ACTIONS(3503), + [anon_sym___based] = ACTIONS(3503), + [anon_sym___cdecl] = ACTIONS(3503), + [anon_sym___clrcall] = ACTIONS(3503), + [anon_sym___stdcall] = ACTIONS(3503), + [anon_sym___fastcall] = ACTIONS(3503), + [anon_sym___thiscall] = ACTIONS(3503), + [anon_sym___vectorcall] = ACTIONS(3503), + [anon_sym_LBRACE] = ACTIONS(3505), + [anon_sym_signed] = ACTIONS(3503), + [anon_sym_unsigned] = ACTIONS(3503), + [anon_sym_long] = ACTIONS(3503), + [anon_sym_short] = ACTIONS(3503), + [anon_sym_LBRACK] = ACTIONS(3503), + [anon_sym_static] = ACTIONS(3503), + [anon_sym_register] = ACTIONS(3503), + [anon_sym_inline] = ACTIONS(3503), + [anon_sym___inline] = ACTIONS(3503), + [anon_sym___inline__] = ACTIONS(3503), + [anon_sym___forceinline] = ACTIONS(3503), + [anon_sym_thread_local] = ACTIONS(3503), + [anon_sym___thread] = ACTIONS(3503), + [anon_sym_const] = ACTIONS(3503), + [anon_sym_constexpr] = ACTIONS(3503), + [anon_sym_volatile] = ACTIONS(3503), + [anon_sym_restrict] = ACTIONS(3503), + [anon_sym___restrict__] = ACTIONS(3503), + [anon_sym__Atomic] = ACTIONS(3503), + [anon_sym__Noreturn] = ACTIONS(3503), + [anon_sym_noreturn] = ACTIONS(3503), + [anon_sym_mutable] = ACTIONS(3503), + [anon_sym_constinit] = ACTIONS(3503), + [anon_sym_consteval] = ACTIONS(3503), + [sym_primitive_type] = ACTIONS(3503), + [anon_sym_enum] = ACTIONS(3503), + [anon_sym_class] = ACTIONS(3503), + [anon_sym_struct] = ACTIONS(3503), + [anon_sym_union] = ACTIONS(3503), + [anon_sym_if] = ACTIONS(3503), + [anon_sym_switch] = ACTIONS(3503), + [anon_sym_case] = ACTIONS(3503), + [anon_sym_default] = ACTIONS(3503), + [anon_sym_while] = ACTIONS(3503), + [anon_sym_do] = ACTIONS(3503), + [anon_sym_for] = ACTIONS(3503), + [anon_sym_return] = ACTIONS(3503), + [anon_sym_break] = ACTIONS(3503), + [anon_sym_continue] = ACTIONS(3503), + [anon_sym_goto] = ACTIONS(3503), + [anon_sym___try] = ACTIONS(3503), + [anon_sym___leave] = ACTIONS(3503), + [anon_sym_not] = ACTIONS(3503), + [anon_sym_compl] = ACTIONS(3503), + [anon_sym_DASH_DASH] = ACTIONS(3505), + [anon_sym_PLUS_PLUS] = ACTIONS(3505), + [anon_sym_sizeof] = ACTIONS(3503), + [anon_sym___alignof__] = ACTIONS(3503), + [anon_sym___alignof] = ACTIONS(3503), + [anon_sym__alignof] = ACTIONS(3503), + [anon_sym_alignof] = ACTIONS(3503), + [anon_sym__Alignof] = ACTIONS(3503), + [anon_sym_offsetof] = ACTIONS(3503), + [anon_sym__Generic] = ACTIONS(3503), + [anon_sym_asm] = ACTIONS(3503), + [anon_sym___asm__] = ACTIONS(3503), + [sym_number_literal] = ACTIONS(3505), + [anon_sym_L_SQUOTE] = ACTIONS(3505), + [anon_sym_u_SQUOTE] = ACTIONS(3505), + [anon_sym_U_SQUOTE] = ACTIONS(3505), + [anon_sym_u8_SQUOTE] = ACTIONS(3505), + [anon_sym_SQUOTE] = ACTIONS(3505), + [anon_sym_L_DQUOTE] = ACTIONS(3505), + [anon_sym_u_DQUOTE] = ACTIONS(3505), + [anon_sym_U_DQUOTE] = ACTIONS(3505), + [anon_sym_u8_DQUOTE] = ACTIONS(3505), + [anon_sym_DQUOTE] = ACTIONS(3505), + [sym_true] = ACTIONS(3503), + [sym_false] = ACTIONS(3503), + [anon_sym_NULL] = ACTIONS(3503), + [anon_sym_nullptr] = ACTIONS(3503), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(3732), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(3734), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(3738), - [anon_sym_static_assert] = ACTIONS(3740), + [sym_auto] = ACTIONS(3503), + [anon_sym_decltype] = ACTIONS(3503), + [anon_sym_virtual] = ACTIONS(3503), + [anon_sym_alignas] = ACTIONS(3503), + [anon_sym_explicit] = ACTIONS(3503), + [anon_sym_typename] = ACTIONS(3503), + [anon_sym_template] = ACTIONS(3503), + [anon_sym_operator] = ACTIONS(3503), + [anon_sym_try] = ACTIONS(3503), + [anon_sym_delete] = ACTIONS(3503), + [anon_sym_throw] = ACTIONS(3503), + [anon_sym_namespace] = ACTIONS(3503), + [anon_sym_using] = ACTIONS(3503), + [anon_sym_static_assert] = ACTIONS(3503), + [anon_sym_concept] = ACTIONS(3503), + [anon_sym_co_return] = ACTIONS(3503), + [anon_sym_co_yield] = ACTIONS(3503), + [anon_sym_R_DQUOTE] = ACTIONS(3505), + [anon_sym_LR_DQUOTE] = ACTIONS(3505), + [anon_sym_uR_DQUOTE] = ACTIONS(3505), + [anon_sym_UR_DQUOTE] = ACTIONS(3505), + [anon_sym_u8R_DQUOTE] = ACTIONS(3505), + [anon_sym_co_await] = ACTIONS(3503), + [anon_sym_new] = ACTIONS(3503), + [anon_sym_requires] = ACTIONS(3503), + [sym_this] = ACTIONS(3503), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3505), + [sym_semgrep_named_ellipsis] = ACTIONS(3505), }, - [663] = { - [sym_preproc_def] = STATE(1988), - [sym_preproc_function_def] = STATE(1988), - [sym_preproc_call] = STATE(1988), - [sym_preproc_if_in_field_declaration_list] = STATE(1988), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1988), - [sym_preproc_else_in_field_declaration_list] = STATE(9994), - [sym_preproc_elif_in_field_declaration_list] = STATE(9994), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(9994), - [sym_type_definition] = STATE(1988), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6897), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7690), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(820), - [sym_field_declaration] = STATE(1988), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(1988), - [sym_operator_cast] = STATE(8046), - [sym_inline_method_definition] = STATE(1988), - [sym_constructor_specifiers] = STATE(1934), - [sym_operator_cast_definition] = STATE(1988), - [sym_operator_cast_declaration] = STATE(1988), - [sym_constructor_or_destructor_definition] = STATE(1988), - [sym_constructor_or_destructor_declaration] = STATE(1988), - [sym_friend_declaration] = STATE(1988), - [sym_access_specifier] = STATE(9892), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(1988), - [sym_alias_declaration] = STATE(1988), - [sym_static_assert_declaration] = STATE(1988), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8046), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(820), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1934), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(3684), - [aux_sym_preproc_if_token1] = ACTIONS(3686), - [aux_sym_preproc_if_token2] = ACTIONS(3770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [aux_sym_preproc_else_token1] = ACTIONS(3694), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3698), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3700), - [sym_preproc_directive] = ACTIONS(3702), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(3712), - [anon_sym_typedef] = ACTIONS(3714), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [714] = { + [sym_identifier] = ACTIONS(3577), + [aux_sym_preproc_include_token1] = ACTIONS(3577), + [aux_sym_preproc_def_token1] = ACTIONS(3577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3579), + [aux_sym_preproc_if_token1] = ACTIONS(3577), + [aux_sym_preproc_if_token2] = ACTIONS(3577), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3577), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3577), + [sym_preproc_directive] = ACTIONS(3577), + [anon_sym_LPAREN2] = ACTIONS(3579), + [anon_sym_BANG] = ACTIONS(3579), + [anon_sym_TILDE] = ACTIONS(3579), + [anon_sym_DASH] = ACTIONS(3577), + [anon_sym_PLUS] = ACTIONS(3577), + [anon_sym_STAR] = ACTIONS(3579), + [anon_sym_AMP_AMP] = ACTIONS(3579), + [anon_sym_AMP] = ACTIONS(3577), + [anon_sym_SEMI] = ACTIONS(3579), + [anon_sym___extension__] = ACTIONS(3577), + [anon_sym_typedef] = ACTIONS(3577), + [anon_sym_extern] = ACTIONS(3577), + [anon_sym___attribute__] = ACTIONS(3577), + [anon_sym_COLON_COLON] = ACTIONS(3579), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3579), + [anon_sym___declspec] = ACTIONS(3577), + [anon_sym___based] = ACTIONS(3577), + [anon_sym___cdecl] = ACTIONS(3577), + [anon_sym___clrcall] = ACTIONS(3577), + [anon_sym___stdcall] = ACTIONS(3577), + [anon_sym___fastcall] = ACTIONS(3577), + [anon_sym___thiscall] = ACTIONS(3577), + [anon_sym___vectorcall] = ACTIONS(3577), + [anon_sym_LBRACE] = ACTIONS(3579), + [anon_sym_signed] = ACTIONS(3577), + [anon_sym_unsigned] = ACTIONS(3577), + [anon_sym_long] = ACTIONS(3577), + [anon_sym_short] = ACTIONS(3577), + [anon_sym_LBRACK] = ACTIONS(3577), + [anon_sym_static] = ACTIONS(3577), + [anon_sym_register] = ACTIONS(3577), + [anon_sym_inline] = ACTIONS(3577), + [anon_sym___inline] = ACTIONS(3577), + [anon_sym___inline__] = ACTIONS(3577), + [anon_sym___forceinline] = ACTIONS(3577), + [anon_sym_thread_local] = ACTIONS(3577), + [anon_sym___thread] = ACTIONS(3577), + [anon_sym_const] = ACTIONS(3577), + [anon_sym_constexpr] = ACTIONS(3577), + [anon_sym_volatile] = ACTIONS(3577), + [anon_sym_restrict] = ACTIONS(3577), + [anon_sym___restrict__] = ACTIONS(3577), + [anon_sym__Atomic] = ACTIONS(3577), + [anon_sym__Noreturn] = ACTIONS(3577), + [anon_sym_noreturn] = ACTIONS(3577), + [anon_sym_mutable] = ACTIONS(3577), + [anon_sym_constinit] = ACTIONS(3577), + [anon_sym_consteval] = ACTIONS(3577), + [sym_primitive_type] = ACTIONS(3577), + [anon_sym_enum] = ACTIONS(3577), + [anon_sym_class] = ACTIONS(3577), + [anon_sym_struct] = ACTIONS(3577), + [anon_sym_union] = ACTIONS(3577), + [anon_sym_if] = ACTIONS(3577), + [anon_sym_switch] = ACTIONS(3577), + [anon_sym_case] = ACTIONS(3577), + [anon_sym_default] = ACTIONS(3577), + [anon_sym_while] = ACTIONS(3577), + [anon_sym_do] = ACTIONS(3577), + [anon_sym_for] = ACTIONS(3577), + [anon_sym_return] = ACTIONS(3577), + [anon_sym_break] = ACTIONS(3577), + [anon_sym_continue] = ACTIONS(3577), + [anon_sym_goto] = ACTIONS(3577), + [anon_sym___try] = ACTIONS(3577), + [anon_sym___leave] = ACTIONS(3577), + [anon_sym_not] = ACTIONS(3577), + [anon_sym_compl] = ACTIONS(3577), + [anon_sym_DASH_DASH] = ACTIONS(3579), + [anon_sym_PLUS_PLUS] = ACTIONS(3579), + [anon_sym_sizeof] = ACTIONS(3577), + [anon_sym___alignof__] = ACTIONS(3577), + [anon_sym___alignof] = ACTIONS(3577), + [anon_sym__alignof] = ACTIONS(3577), + [anon_sym_alignof] = ACTIONS(3577), + [anon_sym__Alignof] = ACTIONS(3577), + [anon_sym_offsetof] = ACTIONS(3577), + [anon_sym__Generic] = ACTIONS(3577), + [anon_sym_asm] = ACTIONS(3577), + [anon_sym___asm__] = ACTIONS(3577), + [sym_number_literal] = ACTIONS(3579), + [anon_sym_L_SQUOTE] = ACTIONS(3579), + [anon_sym_u_SQUOTE] = ACTIONS(3579), + [anon_sym_U_SQUOTE] = ACTIONS(3579), + [anon_sym_u8_SQUOTE] = ACTIONS(3579), + [anon_sym_SQUOTE] = ACTIONS(3579), + [anon_sym_L_DQUOTE] = ACTIONS(3579), + [anon_sym_u_DQUOTE] = ACTIONS(3579), + [anon_sym_U_DQUOTE] = ACTIONS(3579), + [anon_sym_u8_DQUOTE] = ACTIONS(3579), + [anon_sym_DQUOTE] = ACTIONS(3579), + [sym_true] = ACTIONS(3577), + [sym_false] = ACTIONS(3577), + [anon_sym_NULL] = ACTIONS(3577), + [anon_sym_nullptr] = ACTIONS(3577), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3577), + [anon_sym_decltype] = ACTIONS(3577), + [anon_sym_virtual] = ACTIONS(3577), + [anon_sym_alignas] = ACTIONS(3577), + [anon_sym_explicit] = ACTIONS(3577), + [anon_sym_typename] = ACTIONS(3577), + [anon_sym_template] = ACTIONS(3577), + [anon_sym_operator] = ACTIONS(3577), + [anon_sym_try] = ACTIONS(3577), + [anon_sym_delete] = ACTIONS(3577), + [anon_sym_throw] = ACTIONS(3577), + [anon_sym_namespace] = ACTIONS(3577), + [anon_sym_using] = ACTIONS(3577), + [anon_sym_static_assert] = ACTIONS(3577), + [anon_sym_concept] = ACTIONS(3577), + [anon_sym_co_return] = ACTIONS(3577), + [anon_sym_co_yield] = ACTIONS(3577), + [anon_sym_R_DQUOTE] = ACTIONS(3579), + [anon_sym_LR_DQUOTE] = ACTIONS(3579), + [anon_sym_uR_DQUOTE] = ACTIONS(3579), + [anon_sym_UR_DQUOTE] = ACTIONS(3579), + [anon_sym_u8R_DQUOTE] = ACTIONS(3579), + [anon_sym_co_await] = ACTIONS(3577), + [anon_sym_new] = ACTIONS(3577), + [anon_sym_requires] = ACTIONS(3577), + [sym_this] = ACTIONS(3577), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3579), + [sym_semgrep_named_ellipsis] = ACTIONS(3579), + }, + [715] = { + [sym_identifier] = ACTIONS(3294), + [aux_sym_preproc_include_token1] = ACTIONS(3294), + [aux_sym_preproc_def_token1] = ACTIONS(3294), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3296), + [aux_sym_preproc_if_token1] = ACTIONS(3294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3294), + [sym_preproc_directive] = ACTIONS(3294), + [anon_sym_LPAREN2] = ACTIONS(3296), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3294), + [anon_sym_PLUS] = ACTIONS(3294), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_AMP] = ACTIONS(3294), + [anon_sym_SEMI] = ACTIONS(3296), + [anon_sym___extension__] = ACTIONS(3294), + [anon_sym_typedef] = ACTIONS(3294), + [anon_sym_extern] = ACTIONS(3294), + [anon_sym___attribute__] = ACTIONS(3294), + [anon_sym_COLON_COLON] = ACTIONS(3296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3296), + [anon_sym___declspec] = ACTIONS(3294), + [anon_sym___based] = ACTIONS(3294), + [anon_sym___cdecl] = ACTIONS(3294), + [anon_sym___clrcall] = ACTIONS(3294), + [anon_sym___stdcall] = ACTIONS(3294), + [anon_sym___fastcall] = ACTIONS(3294), + [anon_sym___thiscall] = ACTIONS(3294), + [anon_sym___vectorcall] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_signed] = ACTIONS(3294), + [anon_sym_unsigned] = ACTIONS(3294), + [anon_sym_long] = ACTIONS(3294), + [anon_sym_short] = ACTIONS(3294), + [anon_sym_LBRACK] = ACTIONS(3294), + [anon_sym_static] = ACTIONS(3294), + [anon_sym_register] = ACTIONS(3294), + [anon_sym_inline] = ACTIONS(3294), + [anon_sym___inline] = ACTIONS(3294), + [anon_sym___inline__] = ACTIONS(3294), + [anon_sym___forceinline] = ACTIONS(3294), + [anon_sym_thread_local] = ACTIONS(3294), + [anon_sym___thread] = ACTIONS(3294), + [anon_sym_const] = ACTIONS(3294), + [anon_sym_constexpr] = ACTIONS(3294), + [anon_sym_volatile] = ACTIONS(3294), + [anon_sym_restrict] = ACTIONS(3294), + [anon_sym___restrict__] = ACTIONS(3294), + [anon_sym__Atomic] = ACTIONS(3294), + [anon_sym__Noreturn] = ACTIONS(3294), + [anon_sym_noreturn] = ACTIONS(3294), + [anon_sym_mutable] = ACTIONS(3294), + [anon_sym_constinit] = ACTIONS(3294), + [anon_sym_consteval] = ACTIONS(3294), + [sym_primitive_type] = ACTIONS(3294), + [anon_sym_enum] = ACTIONS(3294), + [anon_sym_class] = ACTIONS(3294), + [anon_sym_struct] = ACTIONS(3294), + [anon_sym_union] = ACTIONS(3294), + [anon_sym_if] = ACTIONS(3294), + [anon_sym_switch] = ACTIONS(3294), + [anon_sym_case] = ACTIONS(3294), + [anon_sym_default] = ACTIONS(3294), + [anon_sym_while] = ACTIONS(3294), + [anon_sym_do] = ACTIONS(3294), + [anon_sym_for] = ACTIONS(3294), + [anon_sym_return] = ACTIONS(3294), + [anon_sym_break] = ACTIONS(3294), + [anon_sym_continue] = ACTIONS(3294), + [anon_sym_goto] = ACTIONS(3294), + [anon_sym___try] = ACTIONS(3294), + [anon_sym___leave] = ACTIONS(3294), + [anon_sym_not] = ACTIONS(3294), + [anon_sym_compl] = ACTIONS(3294), + [anon_sym_DASH_DASH] = ACTIONS(3296), + [anon_sym_PLUS_PLUS] = ACTIONS(3296), + [anon_sym_sizeof] = ACTIONS(3294), + [anon_sym___alignof__] = ACTIONS(3294), + [anon_sym___alignof] = ACTIONS(3294), + [anon_sym__alignof] = ACTIONS(3294), + [anon_sym_alignof] = ACTIONS(3294), + [anon_sym__Alignof] = ACTIONS(3294), + [anon_sym_offsetof] = ACTIONS(3294), + [anon_sym__Generic] = ACTIONS(3294), + [anon_sym_asm] = ACTIONS(3294), + [anon_sym___asm__] = ACTIONS(3294), + [sym_number_literal] = ACTIONS(3296), + [anon_sym_L_SQUOTE] = ACTIONS(3296), + [anon_sym_u_SQUOTE] = ACTIONS(3296), + [anon_sym_U_SQUOTE] = ACTIONS(3296), + [anon_sym_u8_SQUOTE] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3296), + [anon_sym_L_DQUOTE] = ACTIONS(3296), + [anon_sym_u_DQUOTE] = ACTIONS(3296), + [anon_sym_U_DQUOTE] = ACTIONS(3296), + [anon_sym_u8_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [sym_true] = ACTIONS(3294), + [sym_false] = ACTIONS(3294), + [anon_sym_NULL] = ACTIONS(3294), + [anon_sym_nullptr] = ACTIONS(3294), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3294), + [anon_sym_decltype] = ACTIONS(3294), + [anon_sym_virtual] = ACTIONS(3294), + [anon_sym_alignas] = ACTIONS(3294), + [anon_sym_explicit] = ACTIONS(3294), + [anon_sym_typename] = ACTIONS(3294), + [anon_sym_template] = ACTIONS(3294), + [anon_sym_operator] = ACTIONS(3294), + [anon_sym_try] = ACTIONS(3294), + [anon_sym_delete] = ACTIONS(3294), + [anon_sym_throw] = ACTIONS(3294), + [anon_sym_namespace] = ACTIONS(3294), + [anon_sym_using] = ACTIONS(3294), + [anon_sym_static_assert] = ACTIONS(3294), + [anon_sym_concept] = ACTIONS(3294), + [anon_sym_co_return] = ACTIONS(3294), + [anon_sym_co_yield] = ACTIONS(3294), + [anon_sym_R_DQUOTE] = ACTIONS(3296), + [anon_sym_LR_DQUOTE] = ACTIONS(3296), + [anon_sym_uR_DQUOTE] = ACTIONS(3296), + [anon_sym_UR_DQUOTE] = ACTIONS(3296), + [anon_sym_u8R_DQUOTE] = ACTIONS(3296), + [anon_sym_co_await] = ACTIONS(3294), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3294), + [sym_this] = ACTIONS(3294), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3296), + [sym_semgrep_named_ellipsis] = ACTIONS(3296), + }, + [716] = { + [sym_identifier] = ACTIONS(3302), + [aux_sym_preproc_include_token1] = ACTIONS(3302), + [aux_sym_preproc_def_token1] = ACTIONS(3302), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3304), + [aux_sym_preproc_if_token1] = ACTIONS(3302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3302), + [sym_preproc_directive] = ACTIONS(3302), + [anon_sym_LPAREN2] = ACTIONS(3304), + [anon_sym_BANG] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_AMP_AMP] = ACTIONS(3304), + [anon_sym_AMP] = ACTIONS(3302), + [anon_sym_SEMI] = ACTIONS(3304), + [anon_sym___extension__] = ACTIONS(3302), + [anon_sym_typedef] = ACTIONS(3302), + [anon_sym_extern] = ACTIONS(3302), + [anon_sym___attribute__] = ACTIONS(3302), + [anon_sym_COLON_COLON] = ACTIONS(3304), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3304), + [anon_sym___declspec] = ACTIONS(3302), + [anon_sym___based] = ACTIONS(3302), + [anon_sym___cdecl] = ACTIONS(3302), + [anon_sym___clrcall] = ACTIONS(3302), + [anon_sym___stdcall] = ACTIONS(3302), + [anon_sym___fastcall] = ACTIONS(3302), + [anon_sym___thiscall] = ACTIONS(3302), + [anon_sym___vectorcall] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_RBRACE] = ACTIONS(3304), + [anon_sym_signed] = ACTIONS(3302), + [anon_sym_unsigned] = ACTIONS(3302), + [anon_sym_long] = ACTIONS(3302), + [anon_sym_short] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_register] = ACTIONS(3302), + [anon_sym_inline] = ACTIONS(3302), + [anon_sym___inline] = ACTIONS(3302), + [anon_sym___inline__] = ACTIONS(3302), + [anon_sym___forceinline] = ACTIONS(3302), + [anon_sym_thread_local] = ACTIONS(3302), + [anon_sym___thread] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_constexpr] = ACTIONS(3302), + [anon_sym_volatile] = ACTIONS(3302), + [anon_sym_restrict] = ACTIONS(3302), + [anon_sym___restrict__] = ACTIONS(3302), + [anon_sym__Atomic] = ACTIONS(3302), + [anon_sym__Noreturn] = ACTIONS(3302), + [anon_sym_noreturn] = ACTIONS(3302), + [anon_sym_mutable] = ACTIONS(3302), + [anon_sym_constinit] = ACTIONS(3302), + [anon_sym_consteval] = ACTIONS(3302), + [sym_primitive_type] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_struct] = ACTIONS(3302), + [anon_sym_union] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3302), + [anon_sym_case] = ACTIONS(3302), + [anon_sym_default] = ACTIONS(3302), + [anon_sym_while] = ACTIONS(3302), + [anon_sym_do] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_goto] = ACTIONS(3302), + [anon_sym___try] = ACTIONS(3302), + [anon_sym___leave] = ACTIONS(3302), + [anon_sym_not] = ACTIONS(3302), + [anon_sym_compl] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3304), + [anon_sym_PLUS_PLUS] = ACTIONS(3304), + [anon_sym_sizeof] = ACTIONS(3302), + [anon_sym___alignof__] = ACTIONS(3302), + [anon_sym___alignof] = ACTIONS(3302), + [anon_sym__alignof] = ACTIONS(3302), + [anon_sym_alignof] = ACTIONS(3302), + [anon_sym__Alignof] = ACTIONS(3302), + [anon_sym_offsetof] = ACTIONS(3302), + [anon_sym__Generic] = ACTIONS(3302), + [anon_sym_asm] = ACTIONS(3302), + [anon_sym___asm__] = ACTIONS(3302), + [sym_number_literal] = ACTIONS(3304), + [anon_sym_L_SQUOTE] = ACTIONS(3304), + [anon_sym_u_SQUOTE] = ACTIONS(3304), + [anon_sym_U_SQUOTE] = ACTIONS(3304), + [anon_sym_u8_SQUOTE] = ACTIONS(3304), + [anon_sym_SQUOTE] = ACTIONS(3304), + [anon_sym_L_DQUOTE] = ACTIONS(3304), + [anon_sym_u_DQUOTE] = ACTIONS(3304), + [anon_sym_U_DQUOTE] = ACTIONS(3304), + [anon_sym_u8_DQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [anon_sym_NULL] = ACTIONS(3302), + [anon_sym_nullptr] = ACTIONS(3302), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3302), + [anon_sym_decltype] = ACTIONS(3302), + [anon_sym_virtual] = ACTIONS(3302), + [anon_sym_alignas] = ACTIONS(3302), + [anon_sym_explicit] = ACTIONS(3302), + [anon_sym_typename] = ACTIONS(3302), + [anon_sym_template] = ACTIONS(3302), + [anon_sym_operator] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3302), + [anon_sym_throw] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_static_assert] = ACTIONS(3302), + [anon_sym_concept] = ACTIONS(3302), + [anon_sym_co_return] = ACTIONS(3302), + [anon_sym_co_yield] = ACTIONS(3302), + [anon_sym_R_DQUOTE] = ACTIONS(3304), + [anon_sym_LR_DQUOTE] = ACTIONS(3304), + [anon_sym_uR_DQUOTE] = ACTIONS(3304), + [anon_sym_UR_DQUOTE] = ACTIONS(3304), + [anon_sym_u8R_DQUOTE] = ACTIONS(3304), + [anon_sym_co_await] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_requires] = ACTIONS(3302), + [sym_this] = ACTIONS(3302), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3304), + [sym_semgrep_named_ellipsis] = ACTIONS(3304), + }, + [717] = { + [sym_identifier] = ACTIONS(3469), + [aux_sym_preproc_include_token1] = ACTIONS(3469), + [aux_sym_preproc_def_token1] = ACTIONS(3469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3471), + [aux_sym_preproc_if_token1] = ACTIONS(3469), + [aux_sym_preproc_if_token2] = ACTIONS(3469), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3469), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3469), + [sym_preproc_directive] = ACTIONS(3469), + [anon_sym_LPAREN2] = ACTIONS(3471), + [anon_sym_BANG] = ACTIONS(3471), + [anon_sym_TILDE] = ACTIONS(3471), + [anon_sym_DASH] = ACTIONS(3469), + [anon_sym_PLUS] = ACTIONS(3469), + [anon_sym_STAR] = ACTIONS(3471), + [anon_sym_AMP_AMP] = ACTIONS(3471), + [anon_sym_AMP] = ACTIONS(3469), + [anon_sym_SEMI] = ACTIONS(3471), + [anon_sym___extension__] = ACTIONS(3469), + [anon_sym_typedef] = ACTIONS(3469), + [anon_sym_extern] = ACTIONS(3469), + [anon_sym___attribute__] = ACTIONS(3469), + [anon_sym_COLON_COLON] = ACTIONS(3471), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3471), + [anon_sym___declspec] = ACTIONS(3469), + [anon_sym___based] = ACTIONS(3469), + [anon_sym___cdecl] = ACTIONS(3469), + [anon_sym___clrcall] = ACTIONS(3469), + [anon_sym___stdcall] = ACTIONS(3469), + [anon_sym___fastcall] = ACTIONS(3469), + [anon_sym___thiscall] = ACTIONS(3469), + [anon_sym___vectorcall] = ACTIONS(3469), + [anon_sym_LBRACE] = ACTIONS(3471), + [anon_sym_signed] = ACTIONS(3469), + [anon_sym_unsigned] = ACTIONS(3469), + [anon_sym_long] = ACTIONS(3469), + [anon_sym_short] = ACTIONS(3469), + [anon_sym_LBRACK] = ACTIONS(3469), + [anon_sym_static] = ACTIONS(3469), + [anon_sym_register] = ACTIONS(3469), + [anon_sym_inline] = ACTIONS(3469), + [anon_sym___inline] = ACTIONS(3469), + [anon_sym___inline__] = ACTIONS(3469), + [anon_sym___forceinline] = ACTIONS(3469), + [anon_sym_thread_local] = ACTIONS(3469), + [anon_sym___thread] = ACTIONS(3469), + [anon_sym_const] = ACTIONS(3469), + [anon_sym_constexpr] = ACTIONS(3469), + [anon_sym_volatile] = ACTIONS(3469), + [anon_sym_restrict] = ACTIONS(3469), + [anon_sym___restrict__] = ACTIONS(3469), + [anon_sym__Atomic] = ACTIONS(3469), + [anon_sym__Noreturn] = ACTIONS(3469), + [anon_sym_noreturn] = ACTIONS(3469), + [anon_sym_mutable] = ACTIONS(3469), + [anon_sym_constinit] = ACTIONS(3469), + [anon_sym_consteval] = ACTIONS(3469), + [sym_primitive_type] = ACTIONS(3469), + [anon_sym_enum] = ACTIONS(3469), + [anon_sym_class] = ACTIONS(3469), + [anon_sym_struct] = ACTIONS(3469), + [anon_sym_union] = ACTIONS(3469), + [anon_sym_if] = ACTIONS(3469), + [anon_sym_switch] = ACTIONS(3469), + [anon_sym_case] = ACTIONS(3469), + [anon_sym_default] = ACTIONS(3469), + [anon_sym_while] = ACTIONS(3469), + [anon_sym_do] = ACTIONS(3469), + [anon_sym_for] = ACTIONS(3469), + [anon_sym_return] = ACTIONS(3469), + [anon_sym_break] = ACTIONS(3469), + [anon_sym_continue] = ACTIONS(3469), + [anon_sym_goto] = ACTIONS(3469), + [anon_sym___try] = ACTIONS(3469), + [anon_sym___leave] = ACTIONS(3469), + [anon_sym_not] = ACTIONS(3469), + [anon_sym_compl] = ACTIONS(3469), + [anon_sym_DASH_DASH] = ACTIONS(3471), + [anon_sym_PLUS_PLUS] = ACTIONS(3471), + [anon_sym_sizeof] = ACTIONS(3469), + [anon_sym___alignof__] = ACTIONS(3469), + [anon_sym___alignof] = ACTIONS(3469), + [anon_sym__alignof] = ACTIONS(3469), + [anon_sym_alignof] = ACTIONS(3469), + [anon_sym__Alignof] = ACTIONS(3469), + [anon_sym_offsetof] = ACTIONS(3469), + [anon_sym__Generic] = ACTIONS(3469), + [anon_sym_asm] = ACTIONS(3469), + [anon_sym___asm__] = ACTIONS(3469), + [sym_number_literal] = ACTIONS(3471), + [anon_sym_L_SQUOTE] = ACTIONS(3471), + [anon_sym_u_SQUOTE] = ACTIONS(3471), + [anon_sym_U_SQUOTE] = ACTIONS(3471), + [anon_sym_u8_SQUOTE] = ACTIONS(3471), + [anon_sym_SQUOTE] = ACTIONS(3471), + [anon_sym_L_DQUOTE] = ACTIONS(3471), + [anon_sym_u_DQUOTE] = ACTIONS(3471), + [anon_sym_U_DQUOTE] = ACTIONS(3471), + [anon_sym_u8_DQUOTE] = ACTIONS(3471), + [anon_sym_DQUOTE] = ACTIONS(3471), + [sym_true] = ACTIONS(3469), + [sym_false] = ACTIONS(3469), + [anon_sym_NULL] = ACTIONS(3469), + [anon_sym_nullptr] = ACTIONS(3469), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(3732), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(3734), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(3738), - [anon_sym_static_assert] = ACTIONS(3740), + [sym_auto] = ACTIONS(3469), + [anon_sym_decltype] = ACTIONS(3469), + [anon_sym_virtual] = ACTIONS(3469), + [anon_sym_alignas] = ACTIONS(3469), + [anon_sym_explicit] = ACTIONS(3469), + [anon_sym_typename] = ACTIONS(3469), + [anon_sym_template] = ACTIONS(3469), + [anon_sym_operator] = ACTIONS(3469), + [anon_sym_try] = ACTIONS(3469), + [anon_sym_delete] = ACTIONS(3469), + [anon_sym_throw] = ACTIONS(3469), + [anon_sym_namespace] = ACTIONS(3469), + [anon_sym_using] = ACTIONS(3469), + [anon_sym_static_assert] = ACTIONS(3469), + [anon_sym_concept] = ACTIONS(3469), + [anon_sym_co_return] = ACTIONS(3469), + [anon_sym_co_yield] = ACTIONS(3469), + [anon_sym_R_DQUOTE] = ACTIONS(3471), + [anon_sym_LR_DQUOTE] = ACTIONS(3471), + [anon_sym_uR_DQUOTE] = ACTIONS(3471), + [anon_sym_UR_DQUOTE] = ACTIONS(3471), + [anon_sym_u8R_DQUOTE] = ACTIONS(3471), + [anon_sym_co_await] = ACTIONS(3469), + [anon_sym_new] = ACTIONS(3469), + [anon_sym_requires] = ACTIONS(3469), + [sym_this] = ACTIONS(3469), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3471), + [sym_semgrep_named_ellipsis] = ACTIONS(3471), }, - [664] = { - [ts_builtin_sym_end] = ACTIONS(3237), - [sym_identifier] = ACTIONS(3235), - [aux_sym_preproc_include_token1] = ACTIONS(3235), - [aux_sym_preproc_def_token1] = ACTIONS(3235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3237), - [aux_sym_preproc_if_token1] = ACTIONS(3235), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3235), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3235), - [sym_preproc_directive] = ACTIONS(3235), - [anon_sym_LPAREN2] = ACTIONS(3237), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_TILDE] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3235), - [anon_sym_STAR] = ACTIONS(3237), - [anon_sym_AMP_AMP] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3235), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym___extension__] = ACTIONS(3235), - [anon_sym_typedef] = ACTIONS(3235), - [anon_sym_extern] = ACTIONS(3235), - [anon_sym___attribute__] = ACTIONS(3235), - [anon_sym_COLON_COLON] = ACTIONS(3237), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3237), - [anon_sym___declspec] = ACTIONS(3235), - [anon_sym___based] = ACTIONS(3235), - [anon_sym___cdecl] = ACTIONS(3235), - [anon_sym___clrcall] = ACTIONS(3235), - [anon_sym___stdcall] = ACTIONS(3235), - [anon_sym___fastcall] = ACTIONS(3235), - [anon_sym___thiscall] = ACTIONS(3235), - [anon_sym___vectorcall] = ACTIONS(3235), - [anon_sym_LBRACE] = ACTIONS(3237), - [anon_sym_signed] = ACTIONS(3235), - [anon_sym_unsigned] = ACTIONS(3235), - [anon_sym_long] = ACTIONS(3235), - [anon_sym_short] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3235), - [anon_sym_static] = ACTIONS(3235), - [anon_sym_register] = ACTIONS(3235), - [anon_sym_inline] = ACTIONS(3235), - [anon_sym___inline] = ACTIONS(3235), - [anon_sym___inline__] = ACTIONS(3235), - [anon_sym___forceinline] = ACTIONS(3235), - [anon_sym_thread_local] = ACTIONS(3235), - [anon_sym___thread] = ACTIONS(3235), - [anon_sym_const] = ACTIONS(3235), - [anon_sym_constexpr] = ACTIONS(3235), - [anon_sym_volatile] = ACTIONS(3235), - [anon_sym_restrict] = ACTIONS(3235), - [anon_sym___restrict__] = ACTIONS(3235), - [anon_sym__Atomic] = ACTIONS(3235), - [anon_sym__Noreturn] = ACTIONS(3235), - [anon_sym_noreturn] = ACTIONS(3235), - [anon_sym_mutable] = ACTIONS(3235), - [anon_sym_constinit] = ACTIONS(3235), - [anon_sym_consteval] = ACTIONS(3235), - [sym_primitive_type] = ACTIONS(3235), - [anon_sym_enum] = ACTIONS(3235), - [anon_sym_class] = ACTIONS(3235), - [anon_sym_struct] = ACTIONS(3235), - [anon_sym_union] = ACTIONS(3235), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_else] = ACTIONS(3235), - [anon_sym_switch] = ACTIONS(3235), - [anon_sym_case] = ACTIONS(3235), - [anon_sym_default] = ACTIONS(3235), - [anon_sym_while] = ACTIONS(3235), - [anon_sym_do] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_return] = ACTIONS(3235), - [anon_sym_break] = ACTIONS(3235), - [anon_sym_continue] = ACTIONS(3235), - [anon_sym_goto] = ACTIONS(3235), - [anon_sym___try] = ACTIONS(3235), - [anon_sym___leave] = ACTIONS(3235), - [anon_sym_not] = ACTIONS(3235), - [anon_sym_compl] = ACTIONS(3235), - [anon_sym_DASH_DASH] = ACTIONS(3237), - [anon_sym_PLUS_PLUS] = ACTIONS(3237), - [anon_sym_sizeof] = ACTIONS(3235), - [anon_sym___alignof__] = ACTIONS(3235), - [anon_sym___alignof] = ACTIONS(3235), - [anon_sym__alignof] = ACTIONS(3235), - [anon_sym_alignof] = ACTIONS(3235), - [anon_sym__Alignof] = ACTIONS(3235), - [anon_sym_offsetof] = ACTIONS(3235), - [anon_sym__Generic] = ACTIONS(3235), - [anon_sym_asm] = ACTIONS(3235), - [anon_sym___asm__] = ACTIONS(3235), - [sym_number_literal] = ACTIONS(3237), - [anon_sym_L_SQUOTE] = ACTIONS(3237), - [anon_sym_u_SQUOTE] = ACTIONS(3237), - [anon_sym_U_SQUOTE] = ACTIONS(3237), - [anon_sym_u8_SQUOTE] = ACTIONS(3237), - [anon_sym_SQUOTE] = ACTIONS(3237), - [anon_sym_L_DQUOTE] = ACTIONS(3237), - [anon_sym_u_DQUOTE] = ACTIONS(3237), - [anon_sym_U_DQUOTE] = ACTIONS(3237), - [anon_sym_u8_DQUOTE] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(3237), - [sym_true] = ACTIONS(3235), - [sym_false] = ACTIONS(3235), - [anon_sym_NULL] = ACTIONS(3235), - [anon_sym_nullptr] = ACTIONS(3235), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3235), - [anon_sym_decltype] = ACTIONS(3235), - [anon_sym_virtual] = ACTIONS(3235), - [anon_sym_alignas] = ACTIONS(3235), - [anon_sym_explicit] = ACTIONS(3235), - [anon_sym_typename] = ACTIONS(3235), - [anon_sym_template] = ACTIONS(3235), - [anon_sym_operator] = ACTIONS(3235), - [anon_sym_try] = ACTIONS(3235), - [anon_sym_delete] = ACTIONS(3235), - [anon_sym_throw] = ACTIONS(3235), - [anon_sym_namespace] = ACTIONS(3235), - [anon_sym_using] = ACTIONS(3235), - [anon_sym_static_assert] = ACTIONS(3235), - [anon_sym_concept] = ACTIONS(3235), - [anon_sym_co_return] = ACTIONS(3235), - [anon_sym_co_yield] = ACTIONS(3235), - [anon_sym_R_DQUOTE] = ACTIONS(3237), - [anon_sym_LR_DQUOTE] = ACTIONS(3237), - [anon_sym_uR_DQUOTE] = ACTIONS(3237), - [anon_sym_UR_DQUOTE] = ACTIONS(3237), - [anon_sym_u8R_DQUOTE] = ACTIONS(3237), - [anon_sym_co_await] = ACTIONS(3235), - [anon_sym_new] = ACTIONS(3235), - [anon_sym_requires] = ACTIONS(3235), - [sym_this] = ACTIONS(3235), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3237), - [sym_semgrep_named_ellipsis] = ACTIONS(3237), + [718] = { + [sym_catch_clause] = STATE(448), + [aux_sym_constructor_try_statement_repeat1] = STATE(448), + [ts_builtin_sym_end] = ACTIONS(3054), + [sym_identifier] = ACTIONS(3052), + [aux_sym_preproc_include_token1] = ACTIONS(3052), + [aux_sym_preproc_def_token1] = ACTIONS(3052), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3054), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3052), + [sym_preproc_directive] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(3054), + [anon_sym_TILDE] = ACTIONS(3054), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3054), + [anon_sym_AMP_AMP] = ACTIONS(3054), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym___extension__] = ACTIONS(3052), + [anon_sym_typedef] = ACTIONS(3052), + [anon_sym_extern] = ACTIONS(3052), + [anon_sym___attribute__] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3054), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3054), + [anon_sym___declspec] = ACTIONS(3052), + [anon_sym___based] = ACTIONS(3052), + [anon_sym___cdecl] = ACTIONS(3052), + [anon_sym___clrcall] = ACTIONS(3052), + [anon_sym___stdcall] = ACTIONS(3052), + [anon_sym___fastcall] = ACTIONS(3052), + [anon_sym___thiscall] = ACTIONS(3052), + [anon_sym___vectorcall] = ACTIONS(3052), + [anon_sym_LBRACE] = ACTIONS(3054), + [anon_sym_signed] = ACTIONS(3052), + [anon_sym_unsigned] = ACTIONS(3052), + [anon_sym_long] = ACTIONS(3052), + [anon_sym_short] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_static] = ACTIONS(3052), + [anon_sym_register] = ACTIONS(3052), + [anon_sym_inline] = ACTIONS(3052), + [anon_sym___inline] = ACTIONS(3052), + [anon_sym___inline__] = ACTIONS(3052), + [anon_sym___forceinline] = ACTIONS(3052), + [anon_sym_thread_local] = ACTIONS(3052), + [anon_sym___thread] = ACTIONS(3052), + [anon_sym_const] = ACTIONS(3052), + [anon_sym_constexpr] = ACTIONS(3052), + [anon_sym_volatile] = ACTIONS(3052), + [anon_sym_restrict] = ACTIONS(3052), + [anon_sym___restrict__] = ACTIONS(3052), + [anon_sym__Atomic] = ACTIONS(3052), + [anon_sym__Noreturn] = ACTIONS(3052), + [anon_sym_noreturn] = ACTIONS(3052), + [anon_sym_mutable] = ACTIONS(3052), + [anon_sym_constinit] = ACTIONS(3052), + [anon_sym_consteval] = ACTIONS(3052), + [sym_primitive_type] = ACTIONS(3052), + [anon_sym_enum] = ACTIONS(3052), + [anon_sym_class] = ACTIONS(3052), + [anon_sym_struct] = ACTIONS(3052), + [anon_sym_union] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_switch] = ACTIONS(3052), + [anon_sym_case] = ACTIONS(3052), + [anon_sym_default] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_break] = ACTIONS(3052), + [anon_sym_continue] = ACTIONS(3052), + [anon_sym_goto] = ACTIONS(3052), + [anon_sym_not] = ACTIONS(3052), + [anon_sym_compl] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(3054), + [anon_sym_PLUS_PLUS] = ACTIONS(3054), + [anon_sym_sizeof] = ACTIONS(3052), + [anon_sym___alignof__] = ACTIONS(3052), + [anon_sym___alignof] = ACTIONS(3052), + [anon_sym__alignof] = ACTIONS(3052), + [anon_sym_alignof] = ACTIONS(3052), + [anon_sym__Alignof] = ACTIONS(3052), + [anon_sym_offsetof] = ACTIONS(3052), + [anon_sym__Generic] = ACTIONS(3052), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3054), + [anon_sym_u_SQUOTE] = ACTIONS(3054), + [anon_sym_U_SQUOTE] = ACTIONS(3054), + [anon_sym_u8_SQUOTE] = ACTIONS(3054), + [anon_sym_SQUOTE] = ACTIONS(3054), + [anon_sym_L_DQUOTE] = ACTIONS(3054), + [anon_sym_u_DQUOTE] = ACTIONS(3054), + [anon_sym_U_DQUOTE] = ACTIONS(3054), + [anon_sym_u8_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [sym_true] = ACTIONS(3052), + [sym_false] = ACTIONS(3052), + [anon_sym_NULL] = ACTIONS(3052), + [anon_sym_nullptr] = ACTIONS(3052), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3052), + [anon_sym_decltype] = ACTIONS(3052), + [anon_sym_virtual] = ACTIONS(3052), + [anon_sym_alignas] = ACTIONS(3052), + [anon_sym_explicit] = ACTIONS(3052), + [anon_sym_typename] = ACTIONS(3052), + [anon_sym_template] = ACTIONS(3052), + [anon_sym_operator] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_delete] = ACTIONS(3052), + [anon_sym_throw] = ACTIONS(3052), + [anon_sym_namespace] = ACTIONS(3052), + [anon_sym_using] = ACTIONS(3052), + [anon_sym_static_assert] = ACTIONS(3052), + [anon_sym_concept] = ACTIONS(3052), + [anon_sym_co_return] = ACTIONS(3052), + [anon_sym_co_yield] = ACTIONS(3052), + [anon_sym_catch] = ACTIONS(3446), + [anon_sym_R_DQUOTE] = ACTIONS(3054), + [anon_sym_LR_DQUOTE] = ACTIONS(3054), + [anon_sym_uR_DQUOTE] = ACTIONS(3054), + [anon_sym_UR_DQUOTE] = ACTIONS(3054), + [anon_sym_u8R_DQUOTE] = ACTIONS(3054), + [anon_sym_co_await] = ACTIONS(3052), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_requires] = ACTIONS(3052), + [sym_this] = ACTIONS(3052), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3054), + [sym_semgrep_named_ellipsis] = ACTIONS(3054), }, - [665] = { - [ts_builtin_sym_end] = ACTIONS(3107), - [sym_identifier] = ACTIONS(3105), - [aux_sym_preproc_include_token1] = ACTIONS(3105), - [aux_sym_preproc_def_token1] = ACTIONS(3105), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3107), - [aux_sym_preproc_if_token1] = ACTIONS(3105), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3105), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3105), - [sym_preproc_directive] = ACTIONS(3105), - [anon_sym_LPAREN2] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3107), - [anon_sym_TILDE] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(3105), - [anon_sym_PLUS] = ACTIONS(3105), - [anon_sym_STAR] = ACTIONS(3107), - [anon_sym_AMP_AMP] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym___extension__] = ACTIONS(3105), - [anon_sym_typedef] = ACTIONS(3105), - [anon_sym_extern] = ACTIONS(3105), - [anon_sym___attribute__] = ACTIONS(3105), - [anon_sym_COLON_COLON] = ACTIONS(3107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3107), - [anon_sym___declspec] = ACTIONS(3105), - [anon_sym___based] = ACTIONS(3105), - [anon_sym___cdecl] = ACTIONS(3105), - [anon_sym___clrcall] = ACTIONS(3105), - [anon_sym___stdcall] = ACTIONS(3105), - [anon_sym___fastcall] = ACTIONS(3105), - [anon_sym___thiscall] = ACTIONS(3105), - [anon_sym___vectorcall] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(3107), - [anon_sym_signed] = ACTIONS(3105), - [anon_sym_unsigned] = ACTIONS(3105), - [anon_sym_long] = ACTIONS(3105), - [anon_sym_short] = ACTIONS(3105), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_static] = ACTIONS(3105), - [anon_sym_register] = ACTIONS(3105), - [anon_sym_inline] = ACTIONS(3105), - [anon_sym___inline] = ACTIONS(3105), - [anon_sym___inline__] = ACTIONS(3105), - [anon_sym___forceinline] = ACTIONS(3105), - [anon_sym_thread_local] = ACTIONS(3105), - [anon_sym___thread] = ACTIONS(3105), - [anon_sym_const] = ACTIONS(3105), - [anon_sym_constexpr] = ACTIONS(3105), - [anon_sym_volatile] = ACTIONS(3105), - [anon_sym_restrict] = ACTIONS(3105), - [anon_sym___restrict__] = ACTIONS(3105), - [anon_sym__Atomic] = ACTIONS(3105), - [anon_sym__Noreturn] = ACTIONS(3105), - [anon_sym_noreturn] = ACTIONS(3105), - [anon_sym_mutable] = ACTIONS(3105), - [anon_sym_constinit] = ACTIONS(3105), - [anon_sym_consteval] = ACTIONS(3105), - [sym_primitive_type] = ACTIONS(3105), - [anon_sym_enum] = ACTIONS(3105), - [anon_sym_class] = ACTIONS(3105), - [anon_sym_struct] = ACTIONS(3105), - [anon_sym_union] = ACTIONS(3105), - [anon_sym_if] = ACTIONS(3105), - [anon_sym_else] = ACTIONS(3105), - [anon_sym_switch] = ACTIONS(3105), - [anon_sym_case] = ACTIONS(3105), - [anon_sym_default] = ACTIONS(3105), - [anon_sym_while] = ACTIONS(3105), - [anon_sym_do] = ACTIONS(3105), - [anon_sym_for] = ACTIONS(3105), - [anon_sym_return] = ACTIONS(3105), - [anon_sym_break] = ACTIONS(3105), - [anon_sym_continue] = ACTIONS(3105), - [anon_sym_goto] = ACTIONS(3105), - [anon_sym___try] = ACTIONS(3105), - [anon_sym___leave] = ACTIONS(3105), - [anon_sym_not] = ACTIONS(3105), - [anon_sym_compl] = ACTIONS(3105), - [anon_sym_DASH_DASH] = ACTIONS(3107), - [anon_sym_PLUS_PLUS] = ACTIONS(3107), - [anon_sym_sizeof] = ACTIONS(3105), - [anon_sym___alignof__] = ACTIONS(3105), - [anon_sym___alignof] = ACTIONS(3105), - [anon_sym__alignof] = ACTIONS(3105), - [anon_sym_alignof] = ACTIONS(3105), - [anon_sym__Alignof] = ACTIONS(3105), - [anon_sym_offsetof] = ACTIONS(3105), - [anon_sym__Generic] = ACTIONS(3105), - [anon_sym_asm] = ACTIONS(3105), - [anon_sym___asm__] = ACTIONS(3105), - [sym_number_literal] = ACTIONS(3107), - [anon_sym_L_SQUOTE] = ACTIONS(3107), - [anon_sym_u_SQUOTE] = ACTIONS(3107), - [anon_sym_U_SQUOTE] = ACTIONS(3107), - [anon_sym_u8_SQUOTE] = ACTIONS(3107), - [anon_sym_SQUOTE] = ACTIONS(3107), - [anon_sym_L_DQUOTE] = ACTIONS(3107), - [anon_sym_u_DQUOTE] = ACTIONS(3107), - [anon_sym_U_DQUOTE] = ACTIONS(3107), - [anon_sym_u8_DQUOTE] = ACTIONS(3107), - [anon_sym_DQUOTE] = ACTIONS(3107), - [sym_true] = ACTIONS(3105), - [sym_false] = ACTIONS(3105), - [anon_sym_NULL] = ACTIONS(3105), - [anon_sym_nullptr] = ACTIONS(3105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3105), - [anon_sym_decltype] = ACTIONS(3105), - [anon_sym_virtual] = ACTIONS(3105), - [anon_sym_alignas] = ACTIONS(3105), - [anon_sym_explicit] = ACTIONS(3105), - [anon_sym_typename] = ACTIONS(3105), - [anon_sym_template] = ACTIONS(3105), - [anon_sym_operator] = ACTIONS(3105), - [anon_sym_try] = ACTIONS(3105), - [anon_sym_delete] = ACTIONS(3105), - [anon_sym_throw] = ACTIONS(3105), - [anon_sym_namespace] = ACTIONS(3105), - [anon_sym_using] = ACTIONS(3105), - [anon_sym_static_assert] = ACTIONS(3105), - [anon_sym_concept] = ACTIONS(3105), - [anon_sym_co_return] = ACTIONS(3105), - [anon_sym_co_yield] = ACTIONS(3105), - [anon_sym_R_DQUOTE] = ACTIONS(3107), - [anon_sym_LR_DQUOTE] = ACTIONS(3107), - [anon_sym_uR_DQUOTE] = ACTIONS(3107), - [anon_sym_UR_DQUOTE] = ACTIONS(3107), - [anon_sym_u8R_DQUOTE] = ACTIONS(3107), - [anon_sym_co_await] = ACTIONS(3105), - [anon_sym_new] = ACTIONS(3105), - [anon_sym_requires] = ACTIONS(3105), - [sym_this] = ACTIONS(3105), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3107), - [sym_semgrep_named_ellipsis] = ACTIONS(3107), + [719] = { + [sym_identifier] = ACTIONS(3294), + [aux_sym_preproc_include_token1] = ACTIONS(3294), + [aux_sym_preproc_def_token1] = ACTIONS(3294), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3296), + [aux_sym_preproc_if_token1] = ACTIONS(3294), + [aux_sym_preproc_if_token2] = ACTIONS(3294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3294), + [sym_preproc_directive] = ACTIONS(3294), + [anon_sym_LPAREN2] = ACTIONS(3296), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3294), + [anon_sym_PLUS] = ACTIONS(3294), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_AMP] = ACTIONS(3294), + [anon_sym_SEMI] = ACTIONS(3296), + [anon_sym___extension__] = ACTIONS(3294), + [anon_sym_typedef] = ACTIONS(3294), + [anon_sym_extern] = ACTIONS(3294), + [anon_sym___attribute__] = ACTIONS(3294), + [anon_sym_COLON_COLON] = ACTIONS(3296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3296), + [anon_sym___declspec] = ACTIONS(3294), + [anon_sym___based] = ACTIONS(3294), + [anon_sym___cdecl] = ACTIONS(3294), + [anon_sym___clrcall] = ACTIONS(3294), + [anon_sym___stdcall] = ACTIONS(3294), + [anon_sym___fastcall] = ACTIONS(3294), + [anon_sym___thiscall] = ACTIONS(3294), + [anon_sym___vectorcall] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_signed] = ACTIONS(3294), + [anon_sym_unsigned] = ACTIONS(3294), + [anon_sym_long] = ACTIONS(3294), + [anon_sym_short] = ACTIONS(3294), + [anon_sym_LBRACK] = ACTIONS(3294), + [anon_sym_static] = ACTIONS(3294), + [anon_sym_register] = ACTIONS(3294), + [anon_sym_inline] = ACTIONS(3294), + [anon_sym___inline] = ACTIONS(3294), + [anon_sym___inline__] = ACTIONS(3294), + [anon_sym___forceinline] = ACTIONS(3294), + [anon_sym_thread_local] = ACTIONS(3294), + [anon_sym___thread] = ACTIONS(3294), + [anon_sym_const] = ACTIONS(3294), + [anon_sym_constexpr] = ACTIONS(3294), + [anon_sym_volatile] = ACTIONS(3294), + [anon_sym_restrict] = ACTIONS(3294), + [anon_sym___restrict__] = ACTIONS(3294), + [anon_sym__Atomic] = ACTIONS(3294), + [anon_sym__Noreturn] = ACTIONS(3294), + [anon_sym_noreturn] = ACTIONS(3294), + [anon_sym_mutable] = ACTIONS(3294), + [anon_sym_constinit] = ACTIONS(3294), + [anon_sym_consteval] = ACTIONS(3294), + [sym_primitive_type] = ACTIONS(3294), + [anon_sym_enum] = ACTIONS(3294), + [anon_sym_class] = ACTIONS(3294), + [anon_sym_struct] = ACTIONS(3294), + [anon_sym_union] = ACTIONS(3294), + [anon_sym_if] = ACTIONS(3294), + [anon_sym_switch] = ACTIONS(3294), + [anon_sym_case] = ACTIONS(3294), + [anon_sym_default] = ACTIONS(3294), + [anon_sym_while] = ACTIONS(3294), + [anon_sym_do] = ACTIONS(3294), + [anon_sym_for] = ACTIONS(3294), + [anon_sym_return] = ACTIONS(3294), + [anon_sym_break] = ACTIONS(3294), + [anon_sym_continue] = ACTIONS(3294), + [anon_sym_goto] = ACTIONS(3294), + [anon_sym___try] = ACTIONS(3294), + [anon_sym___leave] = ACTIONS(3294), + [anon_sym_not] = ACTIONS(3294), + [anon_sym_compl] = ACTIONS(3294), + [anon_sym_DASH_DASH] = ACTIONS(3296), + [anon_sym_PLUS_PLUS] = ACTIONS(3296), + [anon_sym_sizeof] = ACTIONS(3294), + [anon_sym___alignof__] = ACTIONS(3294), + [anon_sym___alignof] = ACTIONS(3294), + [anon_sym__alignof] = ACTIONS(3294), + [anon_sym_alignof] = ACTIONS(3294), + [anon_sym__Alignof] = ACTIONS(3294), + [anon_sym_offsetof] = ACTIONS(3294), + [anon_sym__Generic] = ACTIONS(3294), + [anon_sym_asm] = ACTIONS(3294), + [anon_sym___asm__] = ACTIONS(3294), + [sym_number_literal] = ACTIONS(3296), + [anon_sym_L_SQUOTE] = ACTIONS(3296), + [anon_sym_u_SQUOTE] = ACTIONS(3296), + [anon_sym_U_SQUOTE] = ACTIONS(3296), + [anon_sym_u8_SQUOTE] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3296), + [anon_sym_L_DQUOTE] = ACTIONS(3296), + [anon_sym_u_DQUOTE] = ACTIONS(3296), + [anon_sym_U_DQUOTE] = ACTIONS(3296), + [anon_sym_u8_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [sym_true] = ACTIONS(3294), + [sym_false] = ACTIONS(3294), + [anon_sym_NULL] = ACTIONS(3294), + [anon_sym_nullptr] = ACTIONS(3294), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3294), + [anon_sym_decltype] = ACTIONS(3294), + [anon_sym_virtual] = ACTIONS(3294), + [anon_sym_alignas] = ACTIONS(3294), + [anon_sym_explicit] = ACTIONS(3294), + [anon_sym_typename] = ACTIONS(3294), + [anon_sym_template] = ACTIONS(3294), + [anon_sym_operator] = ACTIONS(3294), + [anon_sym_try] = ACTIONS(3294), + [anon_sym_delete] = ACTIONS(3294), + [anon_sym_throw] = ACTIONS(3294), + [anon_sym_namespace] = ACTIONS(3294), + [anon_sym_using] = ACTIONS(3294), + [anon_sym_static_assert] = ACTIONS(3294), + [anon_sym_concept] = ACTIONS(3294), + [anon_sym_co_return] = ACTIONS(3294), + [anon_sym_co_yield] = ACTIONS(3294), + [anon_sym_R_DQUOTE] = ACTIONS(3296), + [anon_sym_LR_DQUOTE] = ACTIONS(3296), + [anon_sym_uR_DQUOTE] = ACTIONS(3296), + [anon_sym_UR_DQUOTE] = ACTIONS(3296), + [anon_sym_u8R_DQUOTE] = ACTIONS(3296), + [anon_sym_co_await] = ACTIONS(3294), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3294), + [sym_this] = ACTIONS(3294), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3296), + [sym_semgrep_named_ellipsis] = ACTIONS(3296), }, - [666] = { - [ts_builtin_sym_end] = ACTIONS(3243), - [sym_identifier] = ACTIONS(3241), - [aux_sym_preproc_include_token1] = ACTIONS(3241), - [aux_sym_preproc_def_token1] = ACTIONS(3241), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3243), - [aux_sym_preproc_if_token1] = ACTIONS(3241), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3241), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3241), - [sym_preproc_directive] = ACTIONS(3241), - [anon_sym_LPAREN2] = ACTIONS(3243), - [anon_sym_BANG] = ACTIONS(3243), - [anon_sym_TILDE] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(3241), - [anon_sym_PLUS] = ACTIONS(3241), - [anon_sym_STAR] = ACTIONS(3243), - [anon_sym_AMP_AMP] = ACTIONS(3243), - [anon_sym_AMP] = ACTIONS(3241), - [anon_sym_SEMI] = ACTIONS(3243), - [anon_sym___extension__] = ACTIONS(3241), - [anon_sym_typedef] = ACTIONS(3241), - [anon_sym_extern] = ACTIONS(3241), - [anon_sym___attribute__] = ACTIONS(3241), - [anon_sym_COLON_COLON] = ACTIONS(3243), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3243), - [anon_sym___declspec] = ACTIONS(3241), - [anon_sym___based] = ACTIONS(3241), - [anon_sym___cdecl] = ACTIONS(3241), - [anon_sym___clrcall] = ACTIONS(3241), - [anon_sym___stdcall] = ACTIONS(3241), - [anon_sym___fastcall] = ACTIONS(3241), - [anon_sym___thiscall] = ACTIONS(3241), - [anon_sym___vectorcall] = ACTIONS(3241), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_signed] = ACTIONS(3241), - [anon_sym_unsigned] = ACTIONS(3241), - [anon_sym_long] = ACTIONS(3241), - [anon_sym_short] = ACTIONS(3241), - [anon_sym_LBRACK] = ACTIONS(3241), - [anon_sym_static] = ACTIONS(3241), - [anon_sym_register] = ACTIONS(3241), - [anon_sym_inline] = ACTIONS(3241), - [anon_sym___inline] = ACTIONS(3241), - [anon_sym___inline__] = ACTIONS(3241), - [anon_sym___forceinline] = ACTIONS(3241), - [anon_sym_thread_local] = ACTIONS(3241), - [anon_sym___thread] = ACTIONS(3241), - [anon_sym_const] = ACTIONS(3241), - [anon_sym_constexpr] = ACTIONS(3241), - [anon_sym_volatile] = ACTIONS(3241), - [anon_sym_restrict] = ACTIONS(3241), - [anon_sym___restrict__] = ACTIONS(3241), - [anon_sym__Atomic] = ACTIONS(3241), - [anon_sym__Noreturn] = ACTIONS(3241), - [anon_sym_noreturn] = ACTIONS(3241), - [anon_sym_mutable] = ACTIONS(3241), - [anon_sym_constinit] = ACTIONS(3241), - [anon_sym_consteval] = ACTIONS(3241), - [sym_primitive_type] = ACTIONS(3241), - [anon_sym_enum] = ACTIONS(3241), - [anon_sym_class] = ACTIONS(3241), - [anon_sym_struct] = ACTIONS(3241), - [anon_sym_union] = ACTIONS(3241), - [anon_sym_if] = ACTIONS(3241), - [anon_sym_else] = ACTIONS(3241), - [anon_sym_switch] = ACTIONS(3241), - [anon_sym_case] = ACTIONS(3241), - [anon_sym_default] = ACTIONS(3241), - [anon_sym_while] = ACTIONS(3241), - [anon_sym_do] = ACTIONS(3241), - [anon_sym_for] = ACTIONS(3241), - [anon_sym_return] = ACTIONS(3241), - [anon_sym_break] = ACTIONS(3241), - [anon_sym_continue] = ACTIONS(3241), - [anon_sym_goto] = ACTIONS(3241), - [anon_sym___try] = ACTIONS(3241), - [anon_sym___leave] = ACTIONS(3241), - [anon_sym_not] = ACTIONS(3241), - [anon_sym_compl] = ACTIONS(3241), - [anon_sym_DASH_DASH] = ACTIONS(3243), - [anon_sym_PLUS_PLUS] = ACTIONS(3243), - [anon_sym_sizeof] = ACTIONS(3241), - [anon_sym___alignof__] = ACTIONS(3241), - [anon_sym___alignof] = ACTIONS(3241), - [anon_sym__alignof] = ACTIONS(3241), - [anon_sym_alignof] = ACTIONS(3241), - [anon_sym__Alignof] = ACTIONS(3241), - [anon_sym_offsetof] = ACTIONS(3241), - [anon_sym__Generic] = ACTIONS(3241), - [anon_sym_asm] = ACTIONS(3241), - [anon_sym___asm__] = ACTIONS(3241), - [sym_number_literal] = ACTIONS(3243), - [anon_sym_L_SQUOTE] = ACTIONS(3243), - [anon_sym_u_SQUOTE] = ACTIONS(3243), - [anon_sym_U_SQUOTE] = ACTIONS(3243), - [anon_sym_u8_SQUOTE] = ACTIONS(3243), - [anon_sym_SQUOTE] = ACTIONS(3243), - [anon_sym_L_DQUOTE] = ACTIONS(3243), - [anon_sym_u_DQUOTE] = ACTIONS(3243), - [anon_sym_U_DQUOTE] = ACTIONS(3243), - [anon_sym_u8_DQUOTE] = ACTIONS(3243), - [anon_sym_DQUOTE] = ACTIONS(3243), - [sym_true] = ACTIONS(3241), - [sym_false] = ACTIONS(3241), - [anon_sym_NULL] = ACTIONS(3241), - [anon_sym_nullptr] = ACTIONS(3241), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3241), - [anon_sym_decltype] = ACTIONS(3241), - [anon_sym_virtual] = ACTIONS(3241), - [anon_sym_alignas] = ACTIONS(3241), - [anon_sym_explicit] = ACTIONS(3241), - [anon_sym_typename] = ACTIONS(3241), - [anon_sym_template] = ACTIONS(3241), - [anon_sym_operator] = ACTIONS(3241), - [anon_sym_try] = ACTIONS(3241), - [anon_sym_delete] = ACTIONS(3241), - [anon_sym_throw] = ACTIONS(3241), - [anon_sym_namespace] = ACTIONS(3241), - [anon_sym_using] = ACTIONS(3241), - [anon_sym_static_assert] = ACTIONS(3241), - [anon_sym_concept] = ACTIONS(3241), - [anon_sym_co_return] = ACTIONS(3241), - [anon_sym_co_yield] = ACTIONS(3241), - [anon_sym_R_DQUOTE] = ACTIONS(3243), - [anon_sym_LR_DQUOTE] = ACTIONS(3243), - [anon_sym_uR_DQUOTE] = ACTIONS(3243), - [anon_sym_UR_DQUOTE] = ACTIONS(3243), - [anon_sym_u8R_DQUOTE] = ACTIONS(3243), - [anon_sym_co_await] = ACTIONS(3241), - [anon_sym_new] = ACTIONS(3241), - [anon_sym_requires] = ACTIONS(3241), - [sym_this] = ACTIONS(3241), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3243), - [sym_semgrep_named_ellipsis] = ACTIONS(3243), + [720] = { + [sym_identifier] = ACTIONS(3302), + [aux_sym_preproc_include_token1] = ACTIONS(3302), + [aux_sym_preproc_def_token1] = ACTIONS(3302), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3304), + [aux_sym_preproc_if_token1] = ACTIONS(3302), + [aux_sym_preproc_if_token2] = ACTIONS(3302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3302), + [sym_preproc_directive] = ACTIONS(3302), + [anon_sym_LPAREN2] = ACTIONS(3304), + [anon_sym_BANG] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_AMP_AMP] = ACTIONS(3304), + [anon_sym_AMP] = ACTIONS(3302), + [anon_sym_SEMI] = ACTIONS(3304), + [anon_sym___extension__] = ACTIONS(3302), + [anon_sym_typedef] = ACTIONS(3302), + [anon_sym_extern] = ACTIONS(3302), + [anon_sym___attribute__] = ACTIONS(3302), + [anon_sym_COLON_COLON] = ACTIONS(3304), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3304), + [anon_sym___declspec] = ACTIONS(3302), + [anon_sym___based] = ACTIONS(3302), + [anon_sym___cdecl] = ACTIONS(3302), + [anon_sym___clrcall] = ACTIONS(3302), + [anon_sym___stdcall] = ACTIONS(3302), + [anon_sym___fastcall] = ACTIONS(3302), + [anon_sym___thiscall] = ACTIONS(3302), + [anon_sym___vectorcall] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_signed] = ACTIONS(3302), + [anon_sym_unsigned] = ACTIONS(3302), + [anon_sym_long] = ACTIONS(3302), + [anon_sym_short] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_register] = ACTIONS(3302), + [anon_sym_inline] = ACTIONS(3302), + [anon_sym___inline] = ACTIONS(3302), + [anon_sym___inline__] = ACTIONS(3302), + [anon_sym___forceinline] = ACTIONS(3302), + [anon_sym_thread_local] = ACTIONS(3302), + [anon_sym___thread] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_constexpr] = ACTIONS(3302), + [anon_sym_volatile] = ACTIONS(3302), + [anon_sym_restrict] = ACTIONS(3302), + [anon_sym___restrict__] = ACTIONS(3302), + [anon_sym__Atomic] = ACTIONS(3302), + [anon_sym__Noreturn] = ACTIONS(3302), + [anon_sym_noreturn] = ACTIONS(3302), + [anon_sym_mutable] = ACTIONS(3302), + [anon_sym_constinit] = ACTIONS(3302), + [anon_sym_consteval] = ACTIONS(3302), + [sym_primitive_type] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_struct] = ACTIONS(3302), + [anon_sym_union] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3302), + [anon_sym_case] = ACTIONS(3302), + [anon_sym_default] = ACTIONS(3302), + [anon_sym_while] = ACTIONS(3302), + [anon_sym_do] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_goto] = ACTIONS(3302), + [anon_sym___try] = ACTIONS(3302), + [anon_sym___leave] = ACTIONS(3302), + [anon_sym_not] = ACTIONS(3302), + [anon_sym_compl] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3304), + [anon_sym_PLUS_PLUS] = ACTIONS(3304), + [anon_sym_sizeof] = ACTIONS(3302), + [anon_sym___alignof__] = ACTIONS(3302), + [anon_sym___alignof] = ACTIONS(3302), + [anon_sym__alignof] = ACTIONS(3302), + [anon_sym_alignof] = ACTIONS(3302), + [anon_sym__Alignof] = ACTIONS(3302), + [anon_sym_offsetof] = ACTIONS(3302), + [anon_sym__Generic] = ACTIONS(3302), + [anon_sym_asm] = ACTIONS(3302), + [anon_sym___asm__] = ACTIONS(3302), + [sym_number_literal] = ACTIONS(3304), + [anon_sym_L_SQUOTE] = ACTIONS(3304), + [anon_sym_u_SQUOTE] = ACTIONS(3304), + [anon_sym_U_SQUOTE] = ACTIONS(3304), + [anon_sym_u8_SQUOTE] = ACTIONS(3304), + [anon_sym_SQUOTE] = ACTIONS(3304), + [anon_sym_L_DQUOTE] = ACTIONS(3304), + [anon_sym_u_DQUOTE] = ACTIONS(3304), + [anon_sym_U_DQUOTE] = ACTIONS(3304), + [anon_sym_u8_DQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [anon_sym_NULL] = ACTIONS(3302), + [anon_sym_nullptr] = ACTIONS(3302), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3302), + [anon_sym_decltype] = ACTIONS(3302), + [anon_sym_virtual] = ACTIONS(3302), + [anon_sym_alignas] = ACTIONS(3302), + [anon_sym_explicit] = ACTIONS(3302), + [anon_sym_typename] = ACTIONS(3302), + [anon_sym_template] = ACTIONS(3302), + [anon_sym_operator] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3302), + [anon_sym_throw] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_static_assert] = ACTIONS(3302), + [anon_sym_concept] = ACTIONS(3302), + [anon_sym_co_return] = ACTIONS(3302), + [anon_sym_co_yield] = ACTIONS(3302), + [anon_sym_R_DQUOTE] = ACTIONS(3304), + [anon_sym_LR_DQUOTE] = ACTIONS(3304), + [anon_sym_uR_DQUOTE] = ACTIONS(3304), + [anon_sym_UR_DQUOTE] = ACTIONS(3304), + [anon_sym_u8R_DQUOTE] = ACTIONS(3304), + [anon_sym_co_await] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_requires] = ACTIONS(3302), + [sym_this] = ACTIONS(3302), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3304), + [sym_semgrep_named_ellipsis] = ACTIONS(3304), }, - [667] = { - [ts_builtin_sym_end] = ACTIONS(3111), - [sym_identifier] = ACTIONS(3109), - [aux_sym_preproc_include_token1] = ACTIONS(3109), - [aux_sym_preproc_def_token1] = ACTIONS(3109), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3111), - [aux_sym_preproc_if_token1] = ACTIONS(3109), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3109), - [sym_preproc_directive] = ACTIONS(3109), - [anon_sym_LPAREN2] = ACTIONS(3111), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_TILDE] = ACTIONS(3111), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_AMP_AMP] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym___extension__] = ACTIONS(3109), - [anon_sym_typedef] = ACTIONS(3109), - [anon_sym_extern] = ACTIONS(3109), - [anon_sym___attribute__] = ACTIONS(3109), - [anon_sym_COLON_COLON] = ACTIONS(3111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3111), - [anon_sym___declspec] = ACTIONS(3109), - [anon_sym___based] = ACTIONS(3109), - [anon_sym___cdecl] = ACTIONS(3109), - [anon_sym___clrcall] = ACTIONS(3109), - [anon_sym___stdcall] = ACTIONS(3109), - [anon_sym___fastcall] = ACTIONS(3109), - [anon_sym___thiscall] = ACTIONS(3109), - [anon_sym___vectorcall] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3111), - [anon_sym_signed] = ACTIONS(3109), - [anon_sym_unsigned] = ACTIONS(3109), - [anon_sym_long] = ACTIONS(3109), - [anon_sym_short] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3109), - [anon_sym_static] = ACTIONS(3109), - [anon_sym_register] = ACTIONS(3109), - [anon_sym_inline] = ACTIONS(3109), - [anon_sym___inline] = ACTIONS(3109), - [anon_sym___inline__] = ACTIONS(3109), - [anon_sym___forceinline] = ACTIONS(3109), - [anon_sym_thread_local] = ACTIONS(3109), - [anon_sym___thread] = ACTIONS(3109), - [anon_sym_const] = ACTIONS(3109), - [anon_sym_constexpr] = ACTIONS(3109), - [anon_sym_volatile] = ACTIONS(3109), - [anon_sym_restrict] = ACTIONS(3109), - [anon_sym___restrict__] = ACTIONS(3109), - [anon_sym__Atomic] = ACTIONS(3109), - [anon_sym__Noreturn] = ACTIONS(3109), - [anon_sym_noreturn] = ACTIONS(3109), - [anon_sym_mutable] = ACTIONS(3109), - [anon_sym_constinit] = ACTIONS(3109), - [anon_sym_consteval] = ACTIONS(3109), - [sym_primitive_type] = ACTIONS(3109), - [anon_sym_enum] = ACTIONS(3109), - [anon_sym_class] = ACTIONS(3109), - [anon_sym_struct] = ACTIONS(3109), - [anon_sym_union] = ACTIONS(3109), - [anon_sym_if] = ACTIONS(3109), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_switch] = ACTIONS(3109), - [anon_sym_case] = ACTIONS(3109), - [anon_sym_default] = ACTIONS(3109), - [anon_sym_while] = ACTIONS(3109), - [anon_sym_do] = ACTIONS(3109), - [anon_sym_for] = ACTIONS(3109), - [anon_sym_return] = ACTIONS(3109), - [anon_sym_break] = ACTIONS(3109), - [anon_sym_continue] = ACTIONS(3109), - [anon_sym_goto] = ACTIONS(3109), - [anon_sym___try] = ACTIONS(3109), - [anon_sym___leave] = ACTIONS(3109), - [anon_sym_not] = ACTIONS(3109), - [anon_sym_compl] = ACTIONS(3109), - [anon_sym_DASH_DASH] = ACTIONS(3111), - [anon_sym_PLUS_PLUS] = ACTIONS(3111), - [anon_sym_sizeof] = ACTIONS(3109), - [anon_sym___alignof__] = ACTIONS(3109), - [anon_sym___alignof] = ACTIONS(3109), - [anon_sym__alignof] = ACTIONS(3109), - [anon_sym_alignof] = ACTIONS(3109), - [anon_sym__Alignof] = ACTIONS(3109), - [anon_sym_offsetof] = ACTIONS(3109), - [anon_sym__Generic] = ACTIONS(3109), - [anon_sym_asm] = ACTIONS(3109), - [anon_sym___asm__] = ACTIONS(3109), - [sym_number_literal] = ACTIONS(3111), - [anon_sym_L_SQUOTE] = ACTIONS(3111), - [anon_sym_u_SQUOTE] = ACTIONS(3111), - [anon_sym_U_SQUOTE] = ACTIONS(3111), - [anon_sym_u8_SQUOTE] = ACTIONS(3111), - [anon_sym_SQUOTE] = ACTIONS(3111), - [anon_sym_L_DQUOTE] = ACTIONS(3111), - [anon_sym_u_DQUOTE] = ACTIONS(3111), - [anon_sym_U_DQUOTE] = ACTIONS(3111), - [anon_sym_u8_DQUOTE] = ACTIONS(3111), - [anon_sym_DQUOTE] = ACTIONS(3111), - [sym_true] = ACTIONS(3109), - [sym_false] = ACTIONS(3109), - [anon_sym_NULL] = ACTIONS(3109), - [anon_sym_nullptr] = ACTIONS(3109), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3109), - [anon_sym_decltype] = ACTIONS(3109), - [anon_sym_virtual] = ACTIONS(3109), - [anon_sym_alignas] = ACTIONS(3109), - [anon_sym_explicit] = ACTIONS(3109), - [anon_sym_typename] = ACTIONS(3109), - [anon_sym_template] = ACTIONS(3109), - [anon_sym_operator] = ACTIONS(3109), - [anon_sym_try] = ACTIONS(3109), - [anon_sym_delete] = ACTIONS(3109), - [anon_sym_throw] = ACTIONS(3109), - [anon_sym_namespace] = ACTIONS(3109), - [anon_sym_using] = ACTIONS(3109), - [anon_sym_static_assert] = ACTIONS(3109), - [anon_sym_concept] = ACTIONS(3109), - [anon_sym_co_return] = ACTIONS(3109), - [anon_sym_co_yield] = ACTIONS(3109), - [anon_sym_R_DQUOTE] = ACTIONS(3111), - [anon_sym_LR_DQUOTE] = ACTIONS(3111), - [anon_sym_uR_DQUOTE] = ACTIONS(3111), - [anon_sym_UR_DQUOTE] = ACTIONS(3111), - [anon_sym_u8R_DQUOTE] = ACTIONS(3111), - [anon_sym_co_await] = ACTIONS(3109), - [anon_sym_new] = ACTIONS(3109), - [anon_sym_requires] = ACTIONS(3109), - [sym_this] = ACTIONS(3109), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3111), - [sym_semgrep_named_ellipsis] = ACTIONS(3111), + [721] = { + [sym_identifier] = ACTIONS(3653), + [aux_sym_preproc_include_token1] = ACTIONS(3653), + [aux_sym_preproc_def_token1] = ACTIONS(3653), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3655), + [aux_sym_preproc_if_token1] = ACTIONS(3653), + [aux_sym_preproc_if_token2] = ACTIONS(3653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3653), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3653), + [sym_preproc_directive] = ACTIONS(3653), + [anon_sym_LPAREN2] = ACTIONS(3655), + [anon_sym_BANG] = ACTIONS(3655), + [anon_sym_TILDE] = ACTIONS(3655), + [anon_sym_DASH] = ACTIONS(3653), + [anon_sym_PLUS] = ACTIONS(3653), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP_AMP] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3653), + [anon_sym_SEMI] = ACTIONS(3655), + [anon_sym___extension__] = ACTIONS(3653), + [anon_sym_typedef] = ACTIONS(3653), + [anon_sym_extern] = ACTIONS(3653), + [anon_sym___attribute__] = ACTIONS(3653), + [anon_sym_COLON_COLON] = ACTIONS(3655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3655), + [anon_sym___declspec] = ACTIONS(3653), + [anon_sym___based] = ACTIONS(3653), + [anon_sym___cdecl] = ACTIONS(3653), + [anon_sym___clrcall] = ACTIONS(3653), + [anon_sym___stdcall] = ACTIONS(3653), + [anon_sym___fastcall] = ACTIONS(3653), + [anon_sym___thiscall] = ACTIONS(3653), + [anon_sym___vectorcall] = ACTIONS(3653), + [anon_sym_LBRACE] = ACTIONS(3655), + [anon_sym_signed] = ACTIONS(3653), + [anon_sym_unsigned] = ACTIONS(3653), + [anon_sym_long] = ACTIONS(3653), + [anon_sym_short] = ACTIONS(3653), + [anon_sym_LBRACK] = ACTIONS(3653), + [anon_sym_static] = ACTIONS(3653), + [anon_sym_register] = ACTIONS(3653), + [anon_sym_inline] = ACTIONS(3653), + [anon_sym___inline] = ACTIONS(3653), + [anon_sym___inline__] = ACTIONS(3653), + [anon_sym___forceinline] = ACTIONS(3653), + [anon_sym_thread_local] = ACTIONS(3653), + [anon_sym___thread] = ACTIONS(3653), + [anon_sym_const] = ACTIONS(3653), + [anon_sym_constexpr] = ACTIONS(3653), + [anon_sym_volatile] = ACTIONS(3653), + [anon_sym_restrict] = ACTIONS(3653), + [anon_sym___restrict__] = ACTIONS(3653), + [anon_sym__Atomic] = ACTIONS(3653), + [anon_sym__Noreturn] = ACTIONS(3653), + [anon_sym_noreturn] = ACTIONS(3653), + [anon_sym_mutable] = ACTIONS(3653), + [anon_sym_constinit] = ACTIONS(3653), + [anon_sym_consteval] = ACTIONS(3653), + [sym_primitive_type] = ACTIONS(3653), + [anon_sym_enum] = ACTIONS(3653), + [anon_sym_class] = ACTIONS(3653), + [anon_sym_struct] = ACTIONS(3653), + [anon_sym_union] = ACTIONS(3653), + [anon_sym_if] = ACTIONS(3653), + [anon_sym_switch] = ACTIONS(3653), + [anon_sym_case] = ACTIONS(3653), + [anon_sym_default] = ACTIONS(3653), + [anon_sym_while] = ACTIONS(3653), + [anon_sym_do] = ACTIONS(3653), + [anon_sym_for] = ACTIONS(3653), + [anon_sym_return] = ACTIONS(3653), + [anon_sym_break] = ACTIONS(3653), + [anon_sym_continue] = ACTIONS(3653), + [anon_sym_goto] = ACTIONS(3653), + [anon_sym___try] = ACTIONS(3653), + [anon_sym___leave] = ACTIONS(3653), + [anon_sym_not] = ACTIONS(3653), + [anon_sym_compl] = ACTIONS(3653), + [anon_sym_DASH_DASH] = ACTIONS(3655), + [anon_sym_PLUS_PLUS] = ACTIONS(3655), + [anon_sym_sizeof] = ACTIONS(3653), + [anon_sym___alignof__] = ACTIONS(3653), + [anon_sym___alignof] = ACTIONS(3653), + [anon_sym__alignof] = ACTIONS(3653), + [anon_sym_alignof] = ACTIONS(3653), + [anon_sym__Alignof] = ACTIONS(3653), + [anon_sym_offsetof] = ACTIONS(3653), + [anon_sym__Generic] = ACTIONS(3653), + [anon_sym_asm] = ACTIONS(3653), + [anon_sym___asm__] = ACTIONS(3653), + [sym_number_literal] = ACTIONS(3655), + [anon_sym_L_SQUOTE] = ACTIONS(3655), + [anon_sym_u_SQUOTE] = ACTIONS(3655), + [anon_sym_U_SQUOTE] = ACTIONS(3655), + [anon_sym_u8_SQUOTE] = ACTIONS(3655), + [anon_sym_SQUOTE] = ACTIONS(3655), + [anon_sym_L_DQUOTE] = ACTIONS(3655), + [anon_sym_u_DQUOTE] = ACTIONS(3655), + [anon_sym_U_DQUOTE] = ACTIONS(3655), + [anon_sym_u8_DQUOTE] = ACTIONS(3655), + [anon_sym_DQUOTE] = ACTIONS(3655), + [sym_true] = ACTIONS(3653), + [sym_false] = ACTIONS(3653), + [anon_sym_NULL] = ACTIONS(3653), + [anon_sym_nullptr] = ACTIONS(3653), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3653), + [anon_sym_decltype] = ACTIONS(3653), + [anon_sym_virtual] = ACTIONS(3653), + [anon_sym_alignas] = ACTIONS(3653), + [anon_sym_explicit] = ACTIONS(3653), + [anon_sym_typename] = ACTIONS(3653), + [anon_sym_template] = ACTIONS(3653), + [anon_sym_operator] = ACTIONS(3653), + [anon_sym_try] = ACTIONS(3653), + [anon_sym_delete] = ACTIONS(3653), + [anon_sym_throw] = ACTIONS(3653), + [anon_sym_namespace] = ACTIONS(3653), + [anon_sym_using] = ACTIONS(3653), + [anon_sym_static_assert] = ACTIONS(3653), + [anon_sym_concept] = ACTIONS(3653), + [anon_sym_co_return] = ACTIONS(3653), + [anon_sym_co_yield] = ACTIONS(3653), + [anon_sym_R_DQUOTE] = ACTIONS(3655), + [anon_sym_LR_DQUOTE] = ACTIONS(3655), + [anon_sym_uR_DQUOTE] = ACTIONS(3655), + [anon_sym_UR_DQUOTE] = ACTIONS(3655), + [anon_sym_u8R_DQUOTE] = ACTIONS(3655), + [anon_sym_co_await] = ACTIONS(3653), + [anon_sym_new] = ACTIONS(3653), + [anon_sym_requires] = ACTIONS(3653), + [sym_this] = ACTIONS(3653), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3655), + [sym_semgrep_named_ellipsis] = ACTIONS(3655), }, - [668] = { - [ts_builtin_sym_end] = ACTIONS(3123), - [sym_identifier] = ACTIONS(3121), - [aux_sym_preproc_include_token1] = ACTIONS(3121), - [aux_sym_preproc_def_token1] = ACTIONS(3121), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3123), - [aux_sym_preproc_if_token1] = ACTIONS(3121), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3121), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3121), - [sym_preproc_directive] = ACTIONS(3121), - [anon_sym_LPAREN2] = ACTIONS(3123), - [anon_sym_BANG] = ACTIONS(3123), - [anon_sym_TILDE] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3121), - [anon_sym_PLUS] = ACTIONS(3121), - [anon_sym_STAR] = ACTIONS(3123), - [anon_sym_AMP_AMP] = ACTIONS(3123), - [anon_sym_AMP] = ACTIONS(3121), - [anon_sym_SEMI] = ACTIONS(3123), - [anon_sym___extension__] = ACTIONS(3121), - [anon_sym_typedef] = ACTIONS(3121), - [anon_sym_extern] = ACTIONS(3121), - [anon_sym___attribute__] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(3123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3123), - [anon_sym___declspec] = ACTIONS(3121), - [anon_sym___based] = ACTIONS(3121), - [anon_sym___cdecl] = ACTIONS(3121), - [anon_sym___clrcall] = ACTIONS(3121), - [anon_sym___stdcall] = ACTIONS(3121), - [anon_sym___fastcall] = ACTIONS(3121), - [anon_sym___thiscall] = ACTIONS(3121), - [anon_sym___vectorcall] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(3123), - [anon_sym_signed] = ACTIONS(3121), - [anon_sym_unsigned] = ACTIONS(3121), - [anon_sym_long] = ACTIONS(3121), - [anon_sym_short] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3121), - [anon_sym_static] = ACTIONS(3121), - [anon_sym_register] = ACTIONS(3121), - [anon_sym_inline] = ACTIONS(3121), - [anon_sym___inline] = ACTIONS(3121), - [anon_sym___inline__] = ACTIONS(3121), - [anon_sym___forceinline] = ACTIONS(3121), - [anon_sym_thread_local] = ACTIONS(3121), - [anon_sym___thread] = ACTIONS(3121), - [anon_sym_const] = ACTIONS(3121), - [anon_sym_constexpr] = ACTIONS(3121), - [anon_sym_volatile] = ACTIONS(3121), - [anon_sym_restrict] = ACTIONS(3121), - [anon_sym___restrict__] = ACTIONS(3121), - [anon_sym__Atomic] = ACTIONS(3121), - [anon_sym__Noreturn] = ACTIONS(3121), - [anon_sym_noreturn] = ACTIONS(3121), - [anon_sym_mutable] = ACTIONS(3121), - [anon_sym_constinit] = ACTIONS(3121), - [anon_sym_consteval] = ACTIONS(3121), - [sym_primitive_type] = ACTIONS(3121), - [anon_sym_enum] = ACTIONS(3121), - [anon_sym_class] = ACTIONS(3121), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_if] = ACTIONS(3121), - [anon_sym_else] = ACTIONS(3121), - [anon_sym_switch] = ACTIONS(3121), - [anon_sym_case] = ACTIONS(3121), - [anon_sym_default] = ACTIONS(3121), - [anon_sym_while] = ACTIONS(3121), - [anon_sym_do] = ACTIONS(3121), - [anon_sym_for] = ACTIONS(3121), - [anon_sym_return] = ACTIONS(3121), - [anon_sym_break] = ACTIONS(3121), - [anon_sym_continue] = ACTIONS(3121), - [anon_sym_goto] = ACTIONS(3121), - [anon_sym___try] = ACTIONS(3121), - [anon_sym___leave] = ACTIONS(3121), - [anon_sym_not] = ACTIONS(3121), - [anon_sym_compl] = ACTIONS(3121), - [anon_sym_DASH_DASH] = ACTIONS(3123), - [anon_sym_PLUS_PLUS] = ACTIONS(3123), - [anon_sym_sizeof] = ACTIONS(3121), - [anon_sym___alignof__] = ACTIONS(3121), - [anon_sym___alignof] = ACTIONS(3121), - [anon_sym__alignof] = ACTIONS(3121), - [anon_sym_alignof] = ACTIONS(3121), - [anon_sym__Alignof] = ACTIONS(3121), - [anon_sym_offsetof] = ACTIONS(3121), - [anon_sym__Generic] = ACTIONS(3121), - [anon_sym_asm] = ACTIONS(3121), - [anon_sym___asm__] = ACTIONS(3121), - [sym_number_literal] = ACTIONS(3123), - [anon_sym_L_SQUOTE] = ACTIONS(3123), - [anon_sym_u_SQUOTE] = ACTIONS(3123), - [anon_sym_U_SQUOTE] = ACTIONS(3123), - [anon_sym_u8_SQUOTE] = ACTIONS(3123), - [anon_sym_SQUOTE] = ACTIONS(3123), - [anon_sym_L_DQUOTE] = ACTIONS(3123), - [anon_sym_u_DQUOTE] = ACTIONS(3123), - [anon_sym_U_DQUOTE] = ACTIONS(3123), - [anon_sym_u8_DQUOTE] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3123), - [sym_true] = ACTIONS(3121), - [sym_false] = ACTIONS(3121), - [anon_sym_NULL] = ACTIONS(3121), - [anon_sym_nullptr] = ACTIONS(3121), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3121), - [anon_sym_decltype] = ACTIONS(3121), - [anon_sym_virtual] = ACTIONS(3121), - [anon_sym_alignas] = ACTIONS(3121), - [anon_sym_explicit] = ACTIONS(3121), - [anon_sym_typename] = ACTIONS(3121), - [anon_sym_template] = ACTIONS(3121), - [anon_sym_operator] = ACTIONS(3121), - [anon_sym_try] = ACTIONS(3121), - [anon_sym_delete] = ACTIONS(3121), - [anon_sym_throw] = ACTIONS(3121), - [anon_sym_namespace] = ACTIONS(3121), - [anon_sym_using] = ACTIONS(3121), - [anon_sym_static_assert] = ACTIONS(3121), - [anon_sym_concept] = ACTIONS(3121), - [anon_sym_co_return] = ACTIONS(3121), - [anon_sym_co_yield] = ACTIONS(3121), - [anon_sym_R_DQUOTE] = ACTIONS(3123), - [anon_sym_LR_DQUOTE] = ACTIONS(3123), - [anon_sym_uR_DQUOTE] = ACTIONS(3123), - [anon_sym_UR_DQUOTE] = ACTIONS(3123), - [anon_sym_u8R_DQUOTE] = ACTIONS(3123), - [anon_sym_co_await] = ACTIONS(3121), - [anon_sym_new] = ACTIONS(3121), - [anon_sym_requires] = ACTIONS(3121), - [sym_this] = ACTIONS(3121), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3123), - [sym_semgrep_named_ellipsis] = ACTIONS(3123), + [722] = { + [sym_identifier] = ACTIONS(3493), + [aux_sym_preproc_include_token1] = ACTIONS(3493), + [aux_sym_preproc_def_token1] = ACTIONS(3493), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3495), + [aux_sym_preproc_if_token1] = ACTIONS(3493), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3493), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3493), + [sym_preproc_directive] = ACTIONS(3493), + [anon_sym_LPAREN2] = ACTIONS(3495), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3495), + [anon_sym_DASH] = ACTIONS(3493), + [anon_sym_PLUS] = ACTIONS(3493), + [anon_sym_STAR] = ACTIONS(3495), + [anon_sym_AMP_AMP] = ACTIONS(3495), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_SEMI] = ACTIONS(3495), + [anon_sym___extension__] = ACTIONS(3493), + [anon_sym_typedef] = 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___cdecl] = ACTIONS(3493), + [anon_sym___clrcall] = ACTIONS(3493), + [anon_sym___stdcall] = ACTIONS(3493), + [anon_sym___fastcall] = ACTIONS(3493), + [anon_sym___thiscall] = ACTIONS(3493), + [anon_sym___vectorcall] = ACTIONS(3493), + [anon_sym_LBRACE] = ACTIONS(3495), + [anon_sym_RBRACE] = ACTIONS(3495), + [anon_sym_signed] = ACTIONS(3493), + [anon_sym_unsigned] = ACTIONS(3493), + [anon_sym_long] = ACTIONS(3493), + [anon_sym_short] = ACTIONS(3493), + [anon_sym_LBRACK] = ACTIONS(3493), + [anon_sym_static] = ACTIONS(3493), + [anon_sym_register] = ACTIONS(3493), + [anon_sym_inline] = ACTIONS(3493), + [anon_sym___inline] = ACTIONS(3493), + [anon_sym___inline__] = ACTIONS(3493), + [anon_sym___forceinline] = ACTIONS(3493), + [anon_sym_thread_local] = ACTIONS(3493), + [anon_sym___thread] = ACTIONS(3493), + [anon_sym_const] = ACTIONS(3493), + [anon_sym_constexpr] = ACTIONS(3493), + [anon_sym_volatile] = ACTIONS(3493), + [anon_sym_restrict] = ACTIONS(3493), + [anon_sym___restrict__] = ACTIONS(3493), + [anon_sym__Atomic] = ACTIONS(3493), + [anon_sym__Noreturn] = ACTIONS(3493), + [anon_sym_noreturn] = ACTIONS(3493), + [anon_sym_mutable] = ACTIONS(3493), + [anon_sym_constinit] = ACTIONS(3493), + [anon_sym_consteval] = ACTIONS(3493), + [sym_primitive_type] = ACTIONS(3493), + [anon_sym_enum] = ACTIONS(3493), + [anon_sym_class] = ACTIONS(3493), + [anon_sym_struct] = ACTIONS(3493), + [anon_sym_union] = ACTIONS(3493), + [anon_sym_if] = ACTIONS(3493), + [anon_sym_switch] = ACTIONS(3493), + [anon_sym_case] = ACTIONS(3493), + [anon_sym_default] = ACTIONS(3493), + [anon_sym_while] = ACTIONS(3493), + [anon_sym_do] = ACTIONS(3493), + [anon_sym_for] = ACTIONS(3493), + [anon_sym_return] = ACTIONS(3493), + [anon_sym_break] = ACTIONS(3493), + [anon_sym_continue] = ACTIONS(3493), + [anon_sym_goto] = ACTIONS(3493), + [anon_sym___try] = ACTIONS(3493), + [anon_sym___leave] = ACTIONS(3493), + [anon_sym_not] = ACTIONS(3493), + [anon_sym_compl] = ACTIONS(3493), + [anon_sym_DASH_DASH] = ACTIONS(3495), + [anon_sym_PLUS_PLUS] = ACTIONS(3495), + [anon_sym_sizeof] = ACTIONS(3493), + [anon_sym___alignof__] = ACTIONS(3493), + [anon_sym___alignof] = ACTIONS(3493), + [anon_sym__alignof] = ACTIONS(3493), + [anon_sym_alignof] = ACTIONS(3493), + [anon_sym__Alignof] = ACTIONS(3493), + [anon_sym_offsetof] = ACTIONS(3493), + [anon_sym__Generic] = ACTIONS(3493), + [anon_sym_asm] = ACTIONS(3493), + [anon_sym___asm__] = ACTIONS(3493), + [sym_number_literal] = ACTIONS(3495), + [anon_sym_L_SQUOTE] = ACTIONS(3495), + [anon_sym_u_SQUOTE] = ACTIONS(3495), + [anon_sym_U_SQUOTE] = ACTIONS(3495), + [anon_sym_u8_SQUOTE] = ACTIONS(3495), + [anon_sym_SQUOTE] = ACTIONS(3495), + [anon_sym_L_DQUOTE] = ACTIONS(3495), + [anon_sym_u_DQUOTE] = ACTIONS(3495), + [anon_sym_U_DQUOTE] = ACTIONS(3495), + [anon_sym_u8_DQUOTE] = ACTIONS(3495), + [anon_sym_DQUOTE] = ACTIONS(3495), + [sym_true] = ACTIONS(3493), + [sym_false] = ACTIONS(3493), + [anon_sym_NULL] = ACTIONS(3493), + [anon_sym_nullptr] = ACTIONS(3493), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3493), + [anon_sym_decltype] = ACTIONS(3493), + [anon_sym_virtual] = ACTIONS(3493), + [anon_sym_alignas] = ACTIONS(3493), + [anon_sym_explicit] = ACTIONS(3493), + [anon_sym_typename] = ACTIONS(3493), + [anon_sym_template] = ACTIONS(3493), + [anon_sym_operator] = ACTIONS(3493), + [anon_sym_try] = ACTIONS(3493), + [anon_sym_delete] = ACTIONS(3493), + [anon_sym_throw] = ACTIONS(3493), + [anon_sym_namespace] = ACTIONS(3493), + [anon_sym_using] = ACTIONS(3493), + [anon_sym_static_assert] = ACTIONS(3493), + [anon_sym_concept] = ACTIONS(3493), + [anon_sym_co_return] = ACTIONS(3493), + [anon_sym_co_yield] = ACTIONS(3493), + [anon_sym_R_DQUOTE] = ACTIONS(3495), + [anon_sym_LR_DQUOTE] = ACTIONS(3495), + [anon_sym_uR_DQUOTE] = ACTIONS(3495), + [anon_sym_UR_DQUOTE] = ACTIONS(3495), + [anon_sym_u8R_DQUOTE] = ACTIONS(3495), + [anon_sym_co_await] = ACTIONS(3493), + [anon_sym_new] = ACTIONS(3493), + [anon_sym_requires] = ACTIONS(3493), + [sym_this] = ACTIONS(3493), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3495), + [sym_semgrep_named_ellipsis] = ACTIONS(3495), }, - [669] = { - [ts_builtin_sym_end] = ACTIONS(3141), - [sym_identifier] = ACTIONS(3139), - [aux_sym_preproc_include_token1] = ACTIONS(3139), - [aux_sym_preproc_def_token1] = ACTIONS(3139), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3141), - [aux_sym_preproc_if_token1] = ACTIONS(3139), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3139), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3139), - [sym_preproc_directive] = ACTIONS(3139), - [anon_sym_LPAREN2] = ACTIONS(3141), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_AMP_AMP] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3139), - [anon_sym_SEMI] = ACTIONS(3141), - [anon_sym___extension__] = ACTIONS(3139), - [anon_sym_typedef] = ACTIONS(3139), - [anon_sym_extern] = ACTIONS(3139), - [anon_sym___attribute__] = ACTIONS(3139), - [anon_sym_COLON_COLON] = ACTIONS(3141), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3141), - [anon_sym___declspec] = ACTIONS(3139), - [anon_sym___based] = ACTIONS(3139), - [anon_sym___cdecl] = ACTIONS(3139), - [anon_sym___clrcall] = ACTIONS(3139), - [anon_sym___stdcall] = ACTIONS(3139), - [anon_sym___fastcall] = ACTIONS(3139), - [anon_sym___thiscall] = ACTIONS(3139), - [anon_sym___vectorcall] = ACTIONS(3139), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_signed] = ACTIONS(3139), - [anon_sym_unsigned] = ACTIONS(3139), - [anon_sym_long] = ACTIONS(3139), - [anon_sym_short] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_static] = ACTIONS(3139), - [anon_sym_register] = ACTIONS(3139), - [anon_sym_inline] = ACTIONS(3139), - [anon_sym___inline] = ACTIONS(3139), - [anon_sym___inline__] = ACTIONS(3139), - [anon_sym___forceinline] = ACTIONS(3139), - [anon_sym_thread_local] = ACTIONS(3139), - [anon_sym___thread] = ACTIONS(3139), - [anon_sym_const] = ACTIONS(3139), - [anon_sym_constexpr] = ACTIONS(3139), - [anon_sym_volatile] = ACTIONS(3139), - [anon_sym_restrict] = ACTIONS(3139), - [anon_sym___restrict__] = ACTIONS(3139), - [anon_sym__Atomic] = ACTIONS(3139), - [anon_sym__Noreturn] = ACTIONS(3139), - [anon_sym_noreturn] = ACTIONS(3139), - [anon_sym_mutable] = ACTIONS(3139), - [anon_sym_constinit] = ACTIONS(3139), - [anon_sym_consteval] = ACTIONS(3139), - [sym_primitive_type] = ACTIONS(3139), - [anon_sym_enum] = ACTIONS(3139), - [anon_sym_class] = ACTIONS(3139), - [anon_sym_struct] = ACTIONS(3139), - [anon_sym_union] = ACTIONS(3139), - [anon_sym_if] = ACTIONS(3139), - [anon_sym_else] = ACTIONS(3139), - [anon_sym_switch] = ACTIONS(3139), - [anon_sym_case] = ACTIONS(3139), - [anon_sym_default] = ACTIONS(3139), - [anon_sym_while] = ACTIONS(3139), - [anon_sym_do] = ACTIONS(3139), - [anon_sym_for] = ACTIONS(3139), - [anon_sym_return] = ACTIONS(3139), - [anon_sym_break] = ACTIONS(3139), - [anon_sym_continue] = ACTIONS(3139), - [anon_sym_goto] = ACTIONS(3139), - [anon_sym___try] = ACTIONS(3139), - [anon_sym___leave] = ACTIONS(3139), - [anon_sym_not] = ACTIONS(3139), - [anon_sym_compl] = ACTIONS(3139), - [anon_sym_DASH_DASH] = ACTIONS(3141), - [anon_sym_PLUS_PLUS] = ACTIONS(3141), - [anon_sym_sizeof] = ACTIONS(3139), - [anon_sym___alignof__] = ACTIONS(3139), - [anon_sym___alignof] = ACTIONS(3139), - [anon_sym__alignof] = ACTIONS(3139), - [anon_sym_alignof] = ACTIONS(3139), - [anon_sym__Alignof] = ACTIONS(3139), - [anon_sym_offsetof] = ACTIONS(3139), - [anon_sym__Generic] = ACTIONS(3139), - [anon_sym_asm] = ACTIONS(3139), - [anon_sym___asm__] = ACTIONS(3139), - [sym_number_literal] = ACTIONS(3141), - [anon_sym_L_SQUOTE] = ACTIONS(3141), - [anon_sym_u_SQUOTE] = ACTIONS(3141), - [anon_sym_U_SQUOTE] = ACTIONS(3141), - [anon_sym_u8_SQUOTE] = ACTIONS(3141), - [anon_sym_SQUOTE] = ACTIONS(3141), - [anon_sym_L_DQUOTE] = ACTIONS(3141), - [anon_sym_u_DQUOTE] = ACTIONS(3141), - [anon_sym_U_DQUOTE] = ACTIONS(3141), - [anon_sym_u8_DQUOTE] = ACTIONS(3141), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym_true] = ACTIONS(3139), - [sym_false] = ACTIONS(3139), - [anon_sym_NULL] = ACTIONS(3139), - [anon_sym_nullptr] = ACTIONS(3139), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3139), - [anon_sym_decltype] = ACTIONS(3139), - [anon_sym_virtual] = ACTIONS(3139), - [anon_sym_alignas] = ACTIONS(3139), - [anon_sym_explicit] = ACTIONS(3139), - [anon_sym_typename] = ACTIONS(3139), - [anon_sym_template] = ACTIONS(3139), - [anon_sym_operator] = ACTIONS(3139), - [anon_sym_try] = ACTIONS(3139), - [anon_sym_delete] = ACTIONS(3139), - [anon_sym_throw] = ACTIONS(3139), - [anon_sym_namespace] = ACTIONS(3139), - [anon_sym_using] = ACTIONS(3139), - [anon_sym_static_assert] = ACTIONS(3139), - [anon_sym_concept] = ACTIONS(3139), - [anon_sym_co_return] = ACTIONS(3139), - [anon_sym_co_yield] = ACTIONS(3139), - [anon_sym_R_DQUOTE] = ACTIONS(3141), - [anon_sym_LR_DQUOTE] = ACTIONS(3141), - [anon_sym_uR_DQUOTE] = ACTIONS(3141), - [anon_sym_UR_DQUOTE] = ACTIONS(3141), - [anon_sym_u8R_DQUOTE] = ACTIONS(3141), - [anon_sym_co_await] = ACTIONS(3139), - [anon_sym_new] = ACTIONS(3139), - [anon_sym_requires] = ACTIONS(3139), - [sym_this] = ACTIONS(3139), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3141), - [sym_semgrep_named_ellipsis] = ACTIONS(3141), - }, - [670] = { - [sym_identifier] = ACTIONS(3143), - [aux_sym_preproc_include_token1] = ACTIONS(3143), - [aux_sym_preproc_def_token1] = ACTIONS(3143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3145), - [aux_sym_preproc_if_token1] = ACTIONS(3143), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3143), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3143), - [sym_preproc_directive] = ACTIONS(3143), - [anon_sym_LPAREN2] = ACTIONS(3145), - [anon_sym_BANG] = ACTIONS(3145), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_DASH] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3145), - [anon_sym_AMP_AMP] = ACTIONS(3145), - [anon_sym_AMP] = ACTIONS(3143), - [anon_sym_SEMI] = ACTIONS(3145), - [anon_sym___extension__] = ACTIONS(3143), - [anon_sym_typedef] = ACTIONS(3143), - [anon_sym_extern] = ACTIONS(3143), - [anon_sym___attribute__] = ACTIONS(3143), - [anon_sym_COLON_COLON] = ACTIONS(3145), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3145), - [anon_sym___declspec] = ACTIONS(3143), - [anon_sym___based] = ACTIONS(3143), - [anon_sym___cdecl] = ACTIONS(3143), - [anon_sym___clrcall] = ACTIONS(3143), - [anon_sym___stdcall] = ACTIONS(3143), - [anon_sym___fastcall] = ACTIONS(3143), - [anon_sym___thiscall] = ACTIONS(3143), - [anon_sym___vectorcall] = ACTIONS(3143), - [anon_sym_LBRACE] = ACTIONS(3145), - [anon_sym_RBRACE] = ACTIONS(3145), - [anon_sym_signed] = ACTIONS(3143), - [anon_sym_unsigned] = ACTIONS(3143), - [anon_sym_long] = ACTIONS(3143), - [anon_sym_short] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_static] = ACTIONS(3143), - [anon_sym_register] = ACTIONS(3143), - [anon_sym_inline] = ACTIONS(3143), - [anon_sym___inline] = ACTIONS(3143), - [anon_sym___inline__] = ACTIONS(3143), - [anon_sym___forceinline] = ACTIONS(3143), - [anon_sym_thread_local] = ACTIONS(3143), - [anon_sym___thread] = ACTIONS(3143), - [anon_sym_const] = ACTIONS(3143), - [anon_sym_constexpr] = ACTIONS(3143), - [anon_sym_volatile] = ACTIONS(3143), - [anon_sym_restrict] = ACTIONS(3143), - [anon_sym___restrict__] = ACTIONS(3143), - [anon_sym__Atomic] = ACTIONS(3143), - [anon_sym__Noreturn] = ACTIONS(3143), - [anon_sym_noreturn] = ACTIONS(3143), - [anon_sym_mutable] = ACTIONS(3143), - [anon_sym_constinit] = ACTIONS(3143), - [anon_sym_consteval] = ACTIONS(3143), - [sym_primitive_type] = ACTIONS(3143), - [anon_sym_enum] = ACTIONS(3143), - [anon_sym_class] = ACTIONS(3143), - [anon_sym_struct] = ACTIONS(3143), - [anon_sym_union] = ACTIONS(3143), - [anon_sym_if] = ACTIONS(3143), - [anon_sym_else] = ACTIONS(3143), - [anon_sym_switch] = ACTIONS(3143), - [anon_sym_case] = ACTIONS(3143), - [anon_sym_default] = ACTIONS(3143), - [anon_sym_while] = ACTIONS(3143), - [anon_sym_do] = ACTIONS(3143), - [anon_sym_for] = ACTIONS(3143), - [anon_sym_return] = ACTIONS(3143), - [anon_sym_break] = ACTIONS(3143), - [anon_sym_continue] = ACTIONS(3143), - [anon_sym_goto] = ACTIONS(3143), - [anon_sym___try] = ACTIONS(3143), - [anon_sym___leave] = ACTIONS(3143), - [anon_sym_not] = ACTIONS(3143), - [anon_sym_compl] = ACTIONS(3143), - [anon_sym_DASH_DASH] = ACTIONS(3145), - [anon_sym_PLUS_PLUS] = ACTIONS(3145), - [anon_sym_sizeof] = ACTIONS(3143), - [anon_sym___alignof__] = ACTIONS(3143), - [anon_sym___alignof] = ACTIONS(3143), - [anon_sym__alignof] = ACTIONS(3143), - [anon_sym_alignof] = ACTIONS(3143), - [anon_sym__Alignof] = ACTIONS(3143), - [anon_sym_offsetof] = ACTIONS(3143), - [anon_sym__Generic] = ACTIONS(3143), - [anon_sym_asm] = ACTIONS(3143), - [anon_sym___asm__] = ACTIONS(3143), - [sym_number_literal] = ACTIONS(3145), - [anon_sym_L_SQUOTE] = ACTIONS(3145), - [anon_sym_u_SQUOTE] = ACTIONS(3145), - [anon_sym_U_SQUOTE] = ACTIONS(3145), - [anon_sym_u8_SQUOTE] = ACTIONS(3145), - [anon_sym_SQUOTE] = ACTIONS(3145), - [anon_sym_L_DQUOTE] = ACTIONS(3145), - [anon_sym_u_DQUOTE] = ACTIONS(3145), - [anon_sym_U_DQUOTE] = ACTIONS(3145), - [anon_sym_u8_DQUOTE] = ACTIONS(3145), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym_true] = ACTIONS(3143), - [sym_false] = ACTIONS(3143), - [anon_sym_NULL] = ACTIONS(3143), - [anon_sym_nullptr] = ACTIONS(3143), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3143), - [anon_sym_decltype] = ACTIONS(3143), - [anon_sym_virtual] = ACTIONS(3143), - [anon_sym_alignas] = ACTIONS(3143), - [anon_sym_explicit] = ACTIONS(3143), - [anon_sym_typename] = ACTIONS(3143), - [anon_sym_template] = ACTIONS(3143), - [anon_sym_operator] = ACTIONS(3143), - [anon_sym_try] = ACTIONS(3143), - [anon_sym_delete] = ACTIONS(3143), - [anon_sym_throw] = ACTIONS(3143), - [anon_sym_namespace] = ACTIONS(3143), - [anon_sym_using] = ACTIONS(3143), - [anon_sym_static_assert] = ACTIONS(3143), - [anon_sym_concept] = ACTIONS(3143), - [anon_sym_co_return] = ACTIONS(3143), - [anon_sym_co_yield] = ACTIONS(3143), - [anon_sym_R_DQUOTE] = ACTIONS(3145), - [anon_sym_LR_DQUOTE] = ACTIONS(3145), - [anon_sym_uR_DQUOTE] = ACTIONS(3145), - [anon_sym_UR_DQUOTE] = ACTIONS(3145), - [anon_sym_u8R_DQUOTE] = ACTIONS(3145), - [anon_sym_co_await] = ACTIONS(3143), - [anon_sym_new] = ACTIONS(3143), - [anon_sym_requires] = ACTIONS(3143), - [sym_this] = ACTIONS(3143), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3145), - [sym_semgrep_named_ellipsis] = ACTIONS(3145), - }, - [671] = { - [ts_builtin_sym_end] = ACTIONS(3217), - [sym_identifier] = ACTIONS(3215), - [aux_sym_preproc_include_token1] = ACTIONS(3215), - [aux_sym_preproc_def_token1] = ACTIONS(3215), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3217), - [aux_sym_preproc_if_token1] = ACTIONS(3215), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3215), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3215), - [sym_preproc_directive] = ACTIONS(3215), - [anon_sym_LPAREN2] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_STAR] = ACTIONS(3217), - [anon_sym_AMP_AMP] = ACTIONS(3217), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym___extension__] = ACTIONS(3215), - [anon_sym_typedef] = ACTIONS(3215), - [anon_sym_extern] = ACTIONS(3215), - [anon_sym___attribute__] = ACTIONS(3215), - [anon_sym_COLON_COLON] = ACTIONS(3217), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3217), - [anon_sym___declspec] = ACTIONS(3215), - [anon_sym___based] = ACTIONS(3215), - [anon_sym___cdecl] = ACTIONS(3215), - [anon_sym___clrcall] = ACTIONS(3215), - [anon_sym___stdcall] = ACTIONS(3215), - [anon_sym___fastcall] = ACTIONS(3215), - [anon_sym___thiscall] = ACTIONS(3215), - [anon_sym___vectorcall] = ACTIONS(3215), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_signed] = ACTIONS(3215), - [anon_sym_unsigned] = ACTIONS(3215), - [anon_sym_long] = ACTIONS(3215), - [anon_sym_short] = ACTIONS(3215), - [anon_sym_LBRACK] = ACTIONS(3215), - [anon_sym_static] = ACTIONS(3215), - [anon_sym_register] = ACTIONS(3215), - [anon_sym_inline] = ACTIONS(3215), - [anon_sym___inline] = ACTIONS(3215), - [anon_sym___inline__] = ACTIONS(3215), - [anon_sym___forceinline] = ACTIONS(3215), - [anon_sym_thread_local] = ACTIONS(3215), - [anon_sym___thread] = ACTIONS(3215), - [anon_sym_const] = ACTIONS(3215), - [anon_sym_constexpr] = ACTIONS(3215), - [anon_sym_volatile] = ACTIONS(3215), - [anon_sym_restrict] = ACTIONS(3215), - [anon_sym___restrict__] = ACTIONS(3215), - [anon_sym__Atomic] = ACTIONS(3215), - [anon_sym__Noreturn] = ACTIONS(3215), - [anon_sym_noreturn] = ACTIONS(3215), - [anon_sym_mutable] = ACTIONS(3215), - [anon_sym_constinit] = ACTIONS(3215), - [anon_sym_consteval] = ACTIONS(3215), - [sym_primitive_type] = ACTIONS(3215), - [anon_sym_enum] = ACTIONS(3215), - [anon_sym_class] = ACTIONS(3215), - [anon_sym_struct] = ACTIONS(3215), - [anon_sym_union] = ACTIONS(3215), - [anon_sym_if] = ACTIONS(3215), - [anon_sym_else] = ACTIONS(3215), - [anon_sym_switch] = ACTIONS(3215), - [anon_sym_case] = ACTIONS(3215), - [anon_sym_default] = ACTIONS(3215), - [anon_sym_while] = ACTIONS(3215), - [anon_sym_do] = ACTIONS(3215), - [anon_sym_for] = ACTIONS(3215), - [anon_sym_return] = ACTIONS(3215), - [anon_sym_break] = ACTIONS(3215), - [anon_sym_continue] = ACTIONS(3215), - [anon_sym_goto] = ACTIONS(3215), - [anon_sym___try] = ACTIONS(3215), - [anon_sym___leave] = ACTIONS(3215), - [anon_sym_not] = ACTIONS(3215), - [anon_sym_compl] = ACTIONS(3215), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_sizeof] = ACTIONS(3215), - [anon_sym___alignof__] = ACTIONS(3215), - [anon_sym___alignof] = ACTIONS(3215), - [anon_sym__alignof] = ACTIONS(3215), - [anon_sym_alignof] = ACTIONS(3215), - [anon_sym__Alignof] = ACTIONS(3215), - [anon_sym_offsetof] = ACTIONS(3215), - [anon_sym__Generic] = ACTIONS(3215), - [anon_sym_asm] = ACTIONS(3215), - [anon_sym___asm__] = ACTIONS(3215), - [sym_number_literal] = ACTIONS(3217), - [anon_sym_L_SQUOTE] = ACTIONS(3217), - [anon_sym_u_SQUOTE] = ACTIONS(3217), - [anon_sym_U_SQUOTE] = ACTIONS(3217), - [anon_sym_u8_SQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_L_DQUOTE] = ACTIONS(3217), - [anon_sym_u_DQUOTE] = ACTIONS(3217), - [anon_sym_U_DQUOTE] = ACTIONS(3217), - [anon_sym_u8_DQUOTE] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [sym_true] = ACTIONS(3215), - [sym_false] = ACTIONS(3215), - [anon_sym_NULL] = ACTIONS(3215), - [anon_sym_nullptr] = ACTIONS(3215), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3215), - [anon_sym_decltype] = ACTIONS(3215), - [anon_sym_virtual] = ACTIONS(3215), - [anon_sym_alignas] = ACTIONS(3215), - [anon_sym_explicit] = ACTIONS(3215), - [anon_sym_typename] = ACTIONS(3215), - [anon_sym_template] = ACTIONS(3215), - [anon_sym_operator] = ACTIONS(3215), - [anon_sym_try] = ACTIONS(3215), - [anon_sym_delete] = ACTIONS(3215), - [anon_sym_throw] = ACTIONS(3215), - [anon_sym_namespace] = ACTIONS(3215), - [anon_sym_using] = ACTIONS(3215), - [anon_sym_static_assert] = ACTIONS(3215), - [anon_sym_concept] = ACTIONS(3215), - [anon_sym_co_return] = ACTIONS(3215), - [anon_sym_co_yield] = ACTIONS(3215), - [anon_sym_R_DQUOTE] = ACTIONS(3217), - [anon_sym_LR_DQUOTE] = ACTIONS(3217), - [anon_sym_uR_DQUOTE] = ACTIONS(3217), - [anon_sym_UR_DQUOTE] = ACTIONS(3217), - [anon_sym_u8R_DQUOTE] = ACTIONS(3217), - [anon_sym_co_await] = ACTIONS(3215), - [anon_sym_new] = ACTIONS(3215), - [anon_sym_requires] = ACTIONS(3215), - [sym_this] = ACTIONS(3215), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3217), - [sym_semgrep_named_ellipsis] = ACTIONS(3217), - }, - [672] = { - [sym_identifier] = ACTIONS(3163), - [aux_sym_preproc_include_token1] = ACTIONS(3163), - [aux_sym_preproc_def_token1] = ACTIONS(3163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3165), - [aux_sym_preproc_if_token1] = ACTIONS(3163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3163), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3163), - [sym_preproc_directive] = 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___extension__] = ACTIONS(3163), - [anon_sym_typedef] = ACTIONS(3163), - [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___cdecl] = ACTIONS(3163), - [anon_sym___clrcall] = ACTIONS(3163), - [anon_sym___stdcall] = ACTIONS(3163), - [anon_sym___fastcall] = ACTIONS(3163), - [anon_sym___thiscall] = ACTIONS(3163), - [anon_sym___vectorcall] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_RBRACE] = ACTIONS(3165), - [anon_sym_signed] = ACTIONS(3163), - [anon_sym_unsigned] = ACTIONS(3163), - [anon_sym_long] = ACTIONS(3163), - [anon_sym_short] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_register] = ACTIONS(3163), - [anon_sym_inline] = ACTIONS(3163), - [anon_sym___inline] = ACTIONS(3163), - [anon_sym___inline__] = ACTIONS(3163), - [anon_sym___forceinline] = ACTIONS(3163), - [anon_sym_thread_local] = ACTIONS(3163), - [anon_sym___thread] = ACTIONS(3163), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_constexpr] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_restrict] = ACTIONS(3163), - [anon_sym___restrict__] = ACTIONS(3163), - [anon_sym__Atomic] = ACTIONS(3163), - [anon_sym__Noreturn] = ACTIONS(3163), - [anon_sym_noreturn] = ACTIONS(3163), - [anon_sym_mutable] = ACTIONS(3163), - [anon_sym_constinit] = ACTIONS(3163), - [anon_sym_consteval] = 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_else] = 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___try] = ACTIONS(3163), - [anon_sym___leave] = 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), - [anon_sym___alignof__] = ACTIONS(3163), - [anon_sym___alignof] = ACTIONS(3163), - [anon_sym__alignof] = ACTIONS(3163), - [anon_sym_alignof] = ACTIONS(3163), - [anon_sym__Alignof] = ACTIONS(3163), - [anon_sym_offsetof] = ACTIONS(3163), - [anon_sym__Generic] = ACTIONS(3163), - [anon_sym_asm] = ACTIONS(3163), - [anon_sym___asm__] = 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), - [anon_sym_NULL] = ACTIONS(3163), - [anon_sym_nullptr] = ACTIONS(3163), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3163), - [anon_sym_decltype] = ACTIONS(3163), - [anon_sym_virtual] = ACTIONS(3163), - [anon_sym_alignas] = 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_namespace] = ACTIONS(3163), - [anon_sym_using] = ACTIONS(3163), - [anon_sym_static_assert] = ACTIONS(3163), - [anon_sym_concept] = ACTIONS(3163), - [anon_sym_co_return] = ACTIONS(3163), - [anon_sym_co_yield] = ACTIONS(3163), - [anon_sym_R_DQUOTE] = ACTIONS(3165), - [anon_sym_LR_DQUOTE] = ACTIONS(3165), - [anon_sym_uR_DQUOTE] = ACTIONS(3165), - [anon_sym_UR_DQUOTE] = ACTIONS(3165), - [anon_sym_u8R_DQUOTE] = ACTIONS(3165), - [anon_sym_co_await] = ACTIONS(3163), - [anon_sym_new] = ACTIONS(3163), - [anon_sym_requires] = ACTIONS(3163), - [sym_this] = ACTIONS(3163), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3165), - [sym_semgrep_named_ellipsis] = ACTIONS(3165), - }, - [673] = { - [sym_identifier] = ACTIONS(3175), - [aux_sym_preproc_include_token1] = ACTIONS(3175), - [aux_sym_preproc_def_token1] = ACTIONS(3175), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3177), - [aux_sym_preproc_if_token1] = ACTIONS(3175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3175), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3175), - [sym_preproc_directive] = ACTIONS(3175), - [anon_sym_LPAREN2] = ACTIONS(3177), - [anon_sym_BANG] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(3175), - [anon_sym_STAR] = ACTIONS(3177), - [anon_sym_AMP_AMP] = ACTIONS(3177), - [anon_sym_AMP] = ACTIONS(3175), - [anon_sym_SEMI] = ACTIONS(3177), - [anon_sym___extension__] = ACTIONS(3175), - [anon_sym_typedef] = ACTIONS(3175), - [anon_sym_extern] = ACTIONS(3175), - [anon_sym___attribute__] = ACTIONS(3175), - [anon_sym_COLON_COLON] = ACTIONS(3177), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3177), - [anon_sym___declspec] = ACTIONS(3175), - [anon_sym___based] = ACTIONS(3175), - [anon_sym___cdecl] = ACTIONS(3175), - [anon_sym___clrcall] = ACTIONS(3175), - [anon_sym___stdcall] = ACTIONS(3175), - [anon_sym___fastcall] = ACTIONS(3175), - [anon_sym___thiscall] = ACTIONS(3175), - [anon_sym___vectorcall] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_RBRACE] = ACTIONS(3177), - [anon_sym_signed] = ACTIONS(3175), - [anon_sym_unsigned] = ACTIONS(3175), - [anon_sym_long] = ACTIONS(3175), - [anon_sym_short] = ACTIONS(3175), - [anon_sym_LBRACK] = ACTIONS(3175), - [anon_sym_static] = ACTIONS(3175), - [anon_sym_register] = ACTIONS(3175), - [anon_sym_inline] = ACTIONS(3175), - [anon_sym___inline] = ACTIONS(3175), - [anon_sym___inline__] = ACTIONS(3175), - [anon_sym___forceinline] = ACTIONS(3175), - [anon_sym_thread_local] = ACTIONS(3175), - [anon_sym___thread] = ACTIONS(3175), - [anon_sym_const] = ACTIONS(3175), - [anon_sym_constexpr] = ACTIONS(3175), - [anon_sym_volatile] = ACTIONS(3175), - [anon_sym_restrict] = ACTIONS(3175), - [anon_sym___restrict__] = ACTIONS(3175), - [anon_sym__Atomic] = ACTIONS(3175), - [anon_sym__Noreturn] = ACTIONS(3175), - [anon_sym_noreturn] = ACTIONS(3175), - [anon_sym_mutable] = ACTIONS(3175), - [anon_sym_constinit] = ACTIONS(3175), - [anon_sym_consteval] = ACTIONS(3175), - [sym_primitive_type] = ACTIONS(3175), - [anon_sym_enum] = ACTIONS(3175), - [anon_sym_class] = ACTIONS(3175), - [anon_sym_struct] = ACTIONS(3175), - [anon_sym_union] = ACTIONS(3175), - [anon_sym_if] = ACTIONS(3175), - [anon_sym_else] = ACTIONS(3175), - [anon_sym_switch] = ACTIONS(3175), - [anon_sym_case] = ACTIONS(3175), - [anon_sym_default] = ACTIONS(3175), - [anon_sym_while] = ACTIONS(3175), - [anon_sym_do] = ACTIONS(3175), - [anon_sym_for] = ACTIONS(3175), - [anon_sym_return] = ACTIONS(3175), - [anon_sym_break] = ACTIONS(3175), - [anon_sym_continue] = ACTIONS(3175), - [anon_sym_goto] = ACTIONS(3175), - [anon_sym___try] = ACTIONS(3175), - [anon_sym___leave] = ACTIONS(3175), - [anon_sym_not] = ACTIONS(3175), - [anon_sym_compl] = ACTIONS(3175), - [anon_sym_DASH_DASH] = ACTIONS(3177), - [anon_sym_PLUS_PLUS] = ACTIONS(3177), - [anon_sym_sizeof] = ACTIONS(3175), - [anon_sym___alignof__] = ACTIONS(3175), - [anon_sym___alignof] = ACTIONS(3175), - [anon_sym__alignof] = ACTIONS(3175), - [anon_sym_alignof] = ACTIONS(3175), - [anon_sym__Alignof] = ACTIONS(3175), - [anon_sym_offsetof] = ACTIONS(3175), - [anon_sym__Generic] = ACTIONS(3175), - [anon_sym_asm] = ACTIONS(3175), - [anon_sym___asm__] = ACTIONS(3175), - [sym_number_literal] = ACTIONS(3177), - [anon_sym_L_SQUOTE] = ACTIONS(3177), - [anon_sym_u_SQUOTE] = ACTIONS(3177), - [anon_sym_U_SQUOTE] = ACTIONS(3177), - [anon_sym_u8_SQUOTE] = ACTIONS(3177), - [anon_sym_SQUOTE] = ACTIONS(3177), - [anon_sym_L_DQUOTE] = ACTIONS(3177), - [anon_sym_u_DQUOTE] = ACTIONS(3177), - [anon_sym_U_DQUOTE] = ACTIONS(3177), - [anon_sym_u8_DQUOTE] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(3177), - [sym_true] = ACTIONS(3175), - [sym_false] = ACTIONS(3175), - [anon_sym_NULL] = ACTIONS(3175), - [anon_sym_nullptr] = ACTIONS(3175), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3175), - [anon_sym_decltype] = ACTIONS(3175), - [anon_sym_virtual] = ACTIONS(3175), - [anon_sym_alignas] = ACTIONS(3175), - [anon_sym_explicit] = ACTIONS(3175), - [anon_sym_typename] = ACTIONS(3175), - [anon_sym_template] = ACTIONS(3175), - [anon_sym_operator] = ACTIONS(3175), - [anon_sym_try] = ACTIONS(3175), - [anon_sym_delete] = ACTIONS(3175), - [anon_sym_throw] = ACTIONS(3175), - [anon_sym_namespace] = ACTIONS(3175), - [anon_sym_using] = ACTIONS(3175), - [anon_sym_static_assert] = ACTIONS(3175), - [anon_sym_concept] = ACTIONS(3175), - [anon_sym_co_return] = ACTIONS(3175), - [anon_sym_co_yield] = ACTIONS(3175), - [anon_sym_R_DQUOTE] = ACTIONS(3177), - [anon_sym_LR_DQUOTE] = ACTIONS(3177), - [anon_sym_uR_DQUOTE] = ACTIONS(3177), - [anon_sym_UR_DQUOTE] = ACTIONS(3177), - [anon_sym_u8R_DQUOTE] = ACTIONS(3177), - [anon_sym_co_await] = ACTIONS(3175), - [anon_sym_new] = ACTIONS(3175), - [anon_sym_requires] = ACTIONS(3175), - [sym_this] = ACTIONS(3175), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3177), - [sym_semgrep_named_ellipsis] = ACTIONS(3177), - }, - [674] = { - [sym_identifier] = ACTIONS(3183), - [aux_sym_preproc_include_token1] = ACTIONS(3183), - [aux_sym_preproc_def_token1] = ACTIONS(3183), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3185), - [aux_sym_preproc_if_token1] = ACTIONS(3183), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3183), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3183), - [sym_preproc_directive] = ACTIONS(3183), - [anon_sym_LPAREN2] = ACTIONS(3185), - [anon_sym_BANG] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3183), - [anon_sym_PLUS] = ACTIONS(3183), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_AMP_AMP] = ACTIONS(3185), - [anon_sym_AMP] = ACTIONS(3183), - [anon_sym_SEMI] = ACTIONS(3185), - [anon_sym___extension__] = ACTIONS(3183), - [anon_sym_typedef] = ACTIONS(3183), - [anon_sym_extern] = ACTIONS(3183), - [anon_sym___attribute__] = ACTIONS(3183), - [anon_sym_COLON_COLON] = ACTIONS(3185), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3185), - [anon_sym___declspec] = ACTIONS(3183), - [anon_sym___based] = ACTIONS(3183), - [anon_sym___cdecl] = ACTIONS(3183), - [anon_sym___clrcall] = ACTIONS(3183), - [anon_sym___stdcall] = ACTIONS(3183), - [anon_sym___fastcall] = ACTIONS(3183), - [anon_sym___thiscall] = ACTIONS(3183), - [anon_sym___vectorcall] = ACTIONS(3183), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_RBRACE] = ACTIONS(3185), - [anon_sym_signed] = ACTIONS(3183), - [anon_sym_unsigned] = ACTIONS(3183), - [anon_sym_long] = ACTIONS(3183), - [anon_sym_short] = ACTIONS(3183), - [anon_sym_LBRACK] = ACTIONS(3183), - [anon_sym_static] = ACTIONS(3183), - [anon_sym_register] = ACTIONS(3183), - [anon_sym_inline] = ACTIONS(3183), - [anon_sym___inline] = ACTIONS(3183), - [anon_sym___inline__] = ACTIONS(3183), - [anon_sym___forceinline] = ACTIONS(3183), - [anon_sym_thread_local] = ACTIONS(3183), - [anon_sym___thread] = ACTIONS(3183), - [anon_sym_const] = ACTIONS(3183), - [anon_sym_constexpr] = ACTIONS(3183), - [anon_sym_volatile] = ACTIONS(3183), - [anon_sym_restrict] = ACTIONS(3183), - [anon_sym___restrict__] = ACTIONS(3183), - [anon_sym__Atomic] = ACTIONS(3183), - [anon_sym__Noreturn] = ACTIONS(3183), - [anon_sym_noreturn] = ACTIONS(3183), - [anon_sym_mutable] = ACTIONS(3183), - [anon_sym_constinit] = ACTIONS(3183), - [anon_sym_consteval] = ACTIONS(3183), - [sym_primitive_type] = ACTIONS(3183), - [anon_sym_enum] = ACTIONS(3183), - [anon_sym_class] = ACTIONS(3183), - [anon_sym_struct] = ACTIONS(3183), - [anon_sym_union] = ACTIONS(3183), - [anon_sym_if] = ACTIONS(3183), - [anon_sym_else] = ACTIONS(3183), - [anon_sym_switch] = ACTIONS(3183), - [anon_sym_case] = ACTIONS(3183), - [anon_sym_default] = ACTIONS(3183), - [anon_sym_while] = ACTIONS(3183), - [anon_sym_do] = ACTIONS(3183), - [anon_sym_for] = ACTIONS(3183), - [anon_sym_return] = ACTIONS(3183), - [anon_sym_break] = ACTIONS(3183), - [anon_sym_continue] = ACTIONS(3183), - [anon_sym_goto] = ACTIONS(3183), - [anon_sym___try] = ACTIONS(3183), - [anon_sym___leave] = ACTIONS(3183), - [anon_sym_not] = ACTIONS(3183), - [anon_sym_compl] = ACTIONS(3183), - [anon_sym_DASH_DASH] = ACTIONS(3185), - [anon_sym_PLUS_PLUS] = ACTIONS(3185), - [anon_sym_sizeof] = ACTIONS(3183), - [anon_sym___alignof__] = ACTIONS(3183), - [anon_sym___alignof] = ACTIONS(3183), - [anon_sym__alignof] = ACTIONS(3183), - [anon_sym_alignof] = ACTIONS(3183), - [anon_sym__Alignof] = ACTIONS(3183), - [anon_sym_offsetof] = ACTIONS(3183), - [anon_sym__Generic] = ACTIONS(3183), - [anon_sym_asm] = ACTIONS(3183), - [anon_sym___asm__] = ACTIONS(3183), - [sym_number_literal] = ACTIONS(3185), - [anon_sym_L_SQUOTE] = ACTIONS(3185), - [anon_sym_u_SQUOTE] = ACTIONS(3185), - [anon_sym_U_SQUOTE] = ACTIONS(3185), - [anon_sym_u8_SQUOTE] = ACTIONS(3185), - [anon_sym_SQUOTE] = ACTIONS(3185), - [anon_sym_L_DQUOTE] = ACTIONS(3185), - [anon_sym_u_DQUOTE] = ACTIONS(3185), - [anon_sym_U_DQUOTE] = ACTIONS(3185), - [anon_sym_u8_DQUOTE] = ACTIONS(3185), - [anon_sym_DQUOTE] = ACTIONS(3185), - [sym_true] = ACTIONS(3183), - [sym_false] = ACTIONS(3183), - [anon_sym_NULL] = ACTIONS(3183), - [anon_sym_nullptr] = ACTIONS(3183), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3183), - [anon_sym_decltype] = ACTIONS(3183), - [anon_sym_virtual] = ACTIONS(3183), - [anon_sym_alignas] = ACTIONS(3183), - [anon_sym_explicit] = ACTIONS(3183), - [anon_sym_typename] = ACTIONS(3183), - [anon_sym_template] = ACTIONS(3183), - [anon_sym_operator] = ACTIONS(3183), - [anon_sym_try] = ACTIONS(3183), - [anon_sym_delete] = ACTIONS(3183), - [anon_sym_throw] = ACTIONS(3183), - [anon_sym_namespace] = ACTIONS(3183), - [anon_sym_using] = ACTIONS(3183), - [anon_sym_static_assert] = ACTIONS(3183), - [anon_sym_concept] = ACTIONS(3183), - [anon_sym_co_return] = ACTIONS(3183), - [anon_sym_co_yield] = ACTIONS(3183), - [anon_sym_R_DQUOTE] = ACTIONS(3185), - [anon_sym_LR_DQUOTE] = ACTIONS(3185), - [anon_sym_uR_DQUOTE] = ACTIONS(3185), - [anon_sym_UR_DQUOTE] = ACTIONS(3185), - [anon_sym_u8R_DQUOTE] = ACTIONS(3185), - [anon_sym_co_await] = ACTIONS(3183), - [anon_sym_new] = ACTIONS(3183), - [anon_sym_requires] = ACTIONS(3183), - [sym_this] = ACTIONS(3183), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3185), - [sym_semgrep_named_ellipsis] = ACTIONS(3185), - }, - [675] = { - [sym_identifier] = ACTIONS(3163), - [aux_sym_preproc_include_token1] = ACTIONS(3163), - [aux_sym_preproc_def_token1] = ACTIONS(3163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3165), - [aux_sym_preproc_if_token1] = ACTIONS(3163), - [aux_sym_preproc_if_token2] = ACTIONS(3163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3163), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3163), - [sym_preproc_directive] = 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___extension__] = ACTIONS(3163), - [anon_sym_typedef] = ACTIONS(3163), - [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___cdecl] = ACTIONS(3163), - [anon_sym___clrcall] = ACTIONS(3163), - [anon_sym___stdcall] = ACTIONS(3163), - [anon_sym___fastcall] = ACTIONS(3163), - [anon_sym___thiscall] = ACTIONS(3163), - [anon_sym___vectorcall] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_signed] = ACTIONS(3163), - [anon_sym_unsigned] = ACTIONS(3163), - [anon_sym_long] = ACTIONS(3163), - [anon_sym_short] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_register] = ACTIONS(3163), - [anon_sym_inline] = ACTIONS(3163), - [anon_sym___inline] = ACTIONS(3163), - [anon_sym___inline__] = ACTIONS(3163), - [anon_sym___forceinline] = ACTIONS(3163), - [anon_sym_thread_local] = ACTIONS(3163), - [anon_sym___thread] = ACTIONS(3163), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_constexpr] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_restrict] = ACTIONS(3163), - [anon_sym___restrict__] = ACTIONS(3163), - [anon_sym__Atomic] = ACTIONS(3163), - [anon_sym__Noreturn] = ACTIONS(3163), - [anon_sym_noreturn] = ACTIONS(3163), - [anon_sym_mutable] = ACTIONS(3163), - [anon_sym_constinit] = ACTIONS(3163), - [anon_sym_consteval] = 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_else] = 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___try] = ACTIONS(3163), - [anon_sym___leave] = 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), - [anon_sym___alignof__] = ACTIONS(3163), - [anon_sym___alignof] = ACTIONS(3163), - [anon_sym__alignof] = ACTIONS(3163), - [anon_sym_alignof] = ACTIONS(3163), - [anon_sym__Alignof] = ACTIONS(3163), - [anon_sym_offsetof] = ACTIONS(3163), - [anon_sym__Generic] = ACTIONS(3163), - [anon_sym_asm] = ACTIONS(3163), - [anon_sym___asm__] = 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), - [anon_sym_NULL] = ACTIONS(3163), - [anon_sym_nullptr] = ACTIONS(3163), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3163), - [anon_sym_decltype] = ACTIONS(3163), - [anon_sym_virtual] = ACTIONS(3163), - [anon_sym_alignas] = 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_namespace] = ACTIONS(3163), - [anon_sym_using] = ACTIONS(3163), - [anon_sym_static_assert] = ACTIONS(3163), - [anon_sym_concept] = ACTIONS(3163), - [anon_sym_co_return] = ACTIONS(3163), - [anon_sym_co_yield] = ACTIONS(3163), - [anon_sym_R_DQUOTE] = ACTIONS(3165), - [anon_sym_LR_DQUOTE] = ACTIONS(3165), - [anon_sym_uR_DQUOTE] = ACTIONS(3165), - [anon_sym_UR_DQUOTE] = ACTIONS(3165), - [anon_sym_u8R_DQUOTE] = ACTIONS(3165), - [anon_sym_co_await] = ACTIONS(3163), - [anon_sym_new] = ACTIONS(3163), - [anon_sym_requires] = ACTIONS(3163), - [sym_this] = ACTIONS(3163), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3165), - [sym_semgrep_named_ellipsis] = ACTIONS(3165), - }, - [676] = { - [sym_identifier] = ACTIONS(3175), - [aux_sym_preproc_include_token1] = ACTIONS(3175), - [aux_sym_preproc_def_token1] = ACTIONS(3175), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3177), - [aux_sym_preproc_if_token1] = ACTIONS(3175), - [aux_sym_preproc_if_token2] = ACTIONS(3175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3175), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3175), - [sym_preproc_directive] = ACTIONS(3175), - [anon_sym_LPAREN2] = ACTIONS(3177), - [anon_sym_BANG] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(3175), - [anon_sym_STAR] = ACTIONS(3177), - [anon_sym_AMP_AMP] = ACTIONS(3177), - [anon_sym_AMP] = ACTIONS(3175), - [anon_sym_SEMI] = ACTIONS(3177), - [anon_sym___extension__] = ACTIONS(3175), - [anon_sym_typedef] = ACTIONS(3175), - [anon_sym_extern] = ACTIONS(3175), - [anon_sym___attribute__] = ACTIONS(3175), - [anon_sym_COLON_COLON] = ACTIONS(3177), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3177), - [anon_sym___declspec] = ACTIONS(3175), - [anon_sym___based] = ACTIONS(3175), - [anon_sym___cdecl] = ACTIONS(3175), - [anon_sym___clrcall] = ACTIONS(3175), - [anon_sym___stdcall] = ACTIONS(3175), - [anon_sym___fastcall] = ACTIONS(3175), - [anon_sym___thiscall] = ACTIONS(3175), - [anon_sym___vectorcall] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_signed] = ACTIONS(3175), - [anon_sym_unsigned] = ACTIONS(3175), - [anon_sym_long] = ACTIONS(3175), - [anon_sym_short] = ACTIONS(3175), - [anon_sym_LBRACK] = ACTIONS(3175), - [anon_sym_static] = ACTIONS(3175), - [anon_sym_register] = ACTIONS(3175), - [anon_sym_inline] = ACTIONS(3175), - [anon_sym___inline] = ACTIONS(3175), - [anon_sym___inline__] = ACTIONS(3175), - [anon_sym___forceinline] = ACTIONS(3175), - [anon_sym_thread_local] = ACTIONS(3175), - [anon_sym___thread] = ACTIONS(3175), - [anon_sym_const] = ACTIONS(3175), - [anon_sym_constexpr] = ACTIONS(3175), - [anon_sym_volatile] = ACTIONS(3175), - [anon_sym_restrict] = ACTIONS(3175), - [anon_sym___restrict__] = ACTIONS(3175), - [anon_sym__Atomic] = ACTIONS(3175), - [anon_sym__Noreturn] = ACTIONS(3175), - [anon_sym_noreturn] = ACTIONS(3175), - [anon_sym_mutable] = ACTIONS(3175), - [anon_sym_constinit] = ACTIONS(3175), - [anon_sym_consteval] = ACTIONS(3175), - [sym_primitive_type] = ACTIONS(3175), - [anon_sym_enum] = ACTIONS(3175), - [anon_sym_class] = ACTIONS(3175), - [anon_sym_struct] = ACTIONS(3175), - [anon_sym_union] = ACTIONS(3175), - [anon_sym_if] = ACTIONS(3175), - [anon_sym_else] = ACTIONS(3175), - [anon_sym_switch] = ACTIONS(3175), - [anon_sym_case] = ACTIONS(3175), - [anon_sym_default] = ACTIONS(3175), - [anon_sym_while] = ACTIONS(3175), - [anon_sym_do] = ACTIONS(3175), - [anon_sym_for] = ACTIONS(3175), - [anon_sym_return] = ACTIONS(3175), - [anon_sym_break] = ACTIONS(3175), - [anon_sym_continue] = ACTIONS(3175), - [anon_sym_goto] = ACTIONS(3175), - [anon_sym___try] = ACTIONS(3175), - [anon_sym___leave] = ACTIONS(3175), - [anon_sym_not] = ACTIONS(3175), - [anon_sym_compl] = ACTIONS(3175), - [anon_sym_DASH_DASH] = ACTIONS(3177), - [anon_sym_PLUS_PLUS] = ACTIONS(3177), - [anon_sym_sizeof] = ACTIONS(3175), - [anon_sym___alignof__] = ACTIONS(3175), - [anon_sym___alignof] = ACTIONS(3175), - [anon_sym__alignof] = ACTIONS(3175), - [anon_sym_alignof] = ACTIONS(3175), - [anon_sym__Alignof] = ACTIONS(3175), - [anon_sym_offsetof] = ACTIONS(3175), - [anon_sym__Generic] = ACTIONS(3175), - [anon_sym_asm] = ACTIONS(3175), - [anon_sym___asm__] = ACTIONS(3175), - [sym_number_literal] = ACTIONS(3177), - [anon_sym_L_SQUOTE] = ACTIONS(3177), - [anon_sym_u_SQUOTE] = ACTIONS(3177), - [anon_sym_U_SQUOTE] = ACTIONS(3177), - [anon_sym_u8_SQUOTE] = ACTIONS(3177), - [anon_sym_SQUOTE] = ACTIONS(3177), - [anon_sym_L_DQUOTE] = ACTIONS(3177), - [anon_sym_u_DQUOTE] = ACTIONS(3177), - [anon_sym_U_DQUOTE] = ACTIONS(3177), - [anon_sym_u8_DQUOTE] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(3177), - [sym_true] = ACTIONS(3175), - [sym_false] = ACTIONS(3175), - [anon_sym_NULL] = ACTIONS(3175), - [anon_sym_nullptr] = ACTIONS(3175), + [723] = { + [sym_identifier] = ACTIONS(3396), + [aux_sym_preproc_include_token1] = ACTIONS(3396), + [aux_sym_preproc_def_token1] = ACTIONS(3396), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3398), + [aux_sym_preproc_if_token1] = ACTIONS(3396), + [aux_sym_preproc_if_token2] = ACTIONS(3396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3396), + [sym_preproc_directive] = ACTIONS(3396), + [anon_sym_LPAREN2] = ACTIONS(3398), + [anon_sym_BANG] = ACTIONS(3398), + [anon_sym_TILDE] = ACTIONS(3398), + [anon_sym_DASH] = ACTIONS(3396), + [anon_sym_PLUS] = ACTIONS(3396), + [anon_sym_STAR] = ACTIONS(3398), + [anon_sym_AMP_AMP] = ACTIONS(3398), + [anon_sym_AMP] = ACTIONS(3396), + [anon_sym_SEMI] = ACTIONS(3398), + [anon_sym___extension__] = ACTIONS(3396), + [anon_sym_typedef] = ACTIONS(3396), + [anon_sym_extern] = ACTIONS(3396), + [anon_sym___attribute__] = ACTIONS(3396), + [anon_sym_COLON_COLON] = ACTIONS(3398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3398), + [anon_sym___declspec] = ACTIONS(3396), + [anon_sym___based] = ACTIONS(3396), + [anon_sym___cdecl] = ACTIONS(3396), + [anon_sym___clrcall] = ACTIONS(3396), + [anon_sym___stdcall] = ACTIONS(3396), + [anon_sym___fastcall] = ACTIONS(3396), + [anon_sym___thiscall] = ACTIONS(3396), + [anon_sym___vectorcall] = ACTIONS(3396), + [anon_sym_LBRACE] = ACTIONS(3398), + [anon_sym_signed] = ACTIONS(3396), + [anon_sym_unsigned] = ACTIONS(3396), + [anon_sym_long] = ACTIONS(3396), + [anon_sym_short] = ACTIONS(3396), + [anon_sym_LBRACK] = ACTIONS(3396), + [anon_sym_static] = ACTIONS(3396), + [anon_sym_register] = ACTIONS(3396), + [anon_sym_inline] = ACTIONS(3396), + [anon_sym___inline] = ACTIONS(3396), + [anon_sym___inline__] = ACTIONS(3396), + [anon_sym___forceinline] = ACTIONS(3396), + [anon_sym_thread_local] = ACTIONS(3396), + [anon_sym___thread] = ACTIONS(3396), + [anon_sym_const] = ACTIONS(3396), + [anon_sym_constexpr] = ACTIONS(3396), + [anon_sym_volatile] = ACTIONS(3396), + [anon_sym_restrict] = ACTIONS(3396), + [anon_sym___restrict__] = ACTIONS(3396), + [anon_sym__Atomic] = ACTIONS(3396), + [anon_sym__Noreturn] = ACTIONS(3396), + [anon_sym_noreturn] = ACTIONS(3396), + [anon_sym_mutable] = ACTIONS(3396), + [anon_sym_constinit] = ACTIONS(3396), + [anon_sym_consteval] = ACTIONS(3396), + [sym_primitive_type] = ACTIONS(3396), + [anon_sym_enum] = ACTIONS(3396), + [anon_sym_class] = ACTIONS(3396), + [anon_sym_struct] = ACTIONS(3396), + [anon_sym_union] = ACTIONS(3396), + [anon_sym_if] = ACTIONS(3396), + [anon_sym_switch] = ACTIONS(3396), + [anon_sym_case] = ACTIONS(3396), + [anon_sym_default] = ACTIONS(3396), + [anon_sym_while] = ACTIONS(3396), + [anon_sym_do] = ACTIONS(3396), + [anon_sym_for] = ACTIONS(3396), + [anon_sym_return] = ACTIONS(3396), + [anon_sym_break] = ACTIONS(3396), + [anon_sym_continue] = ACTIONS(3396), + [anon_sym_goto] = ACTIONS(3396), + [anon_sym___try] = ACTIONS(3396), + [anon_sym___leave] = ACTIONS(3396), + [anon_sym_not] = ACTIONS(3396), + [anon_sym_compl] = ACTIONS(3396), + [anon_sym_DASH_DASH] = ACTIONS(3398), + [anon_sym_PLUS_PLUS] = ACTIONS(3398), + [anon_sym_sizeof] = ACTIONS(3396), + [anon_sym___alignof__] = ACTIONS(3396), + [anon_sym___alignof] = ACTIONS(3396), + [anon_sym__alignof] = ACTIONS(3396), + [anon_sym_alignof] = ACTIONS(3396), + [anon_sym__Alignof] = ACTIONS(3396), + [anon_sym_offsetof] = ACTIONS(3396), + [anon_sym__Generic] = ACTIONS(3396), + [anon_sym_asm] = ACTIONS(3396), + [anon_sym___asm__] = ACTIONS(3396), + [sym_number_literal] = ACTIONS(3398), + [anon_sym_L_SQUOTE] = ACTIONS(3398), + [anon_sym_u_SQUOTE] = ACTIONS(3398), + [anon_sym_U_SQUOTE] = ACTIONS(3398), + [anon_sym_u8_SQUOTE] = ACTIONS(3398), + [anon_sym_SQUOTE] = ACTIONS(3398), + [anon_sym_L_DQUOTE] = ACTIONS(3398), + [anon_sym_u_DQUOTE] = ACTIONS(3398), + [anon_sym_U_DQUOTE] = ACTIONS(3398), + [anon_sym_u8_DQUOTE] = ACTIONS(3398), + [anon_sym_DQUOTE] = ACTIONS(3398), + [sym_true] = ACTIONS(3396), + [sym_false] = ACTIONS(3396), + [anon_sym_NULL] = ACTIONS(3396), + [anon_sym_nullptr] = ACTIONS(3396), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3175), - [anon_sym_decltype] = ACTIONS(3175), - [anon_sym_virtual] = ACTIONS(3175), - [anon_sym_alignas] = ACTIONS(3175), - [anon_sym_explicit] = ACTIONS(3175), - [anon_sym_typename] = ACTIONS(3175), - [anon_sym_template] = ACTIONS(3175), - [anon_sym_operator] = ACTIONS(3175), - [anon_sym_try] = ACTIONS(3175), - [anon_sym_delete] = ACTIONS(3175), - [anon_sym_throw] = ACTIONS(3175), - [anon_sym_namespace] = ACTIONS(3175), - [anon_sym_using] = ACTIONS(3175), - [anon_sym_static_assert] = ACTIONS(3175), - [anon_sym_concept] = ACTIONS(3175), - [anon_sym_co_return] = ACTIONS(3175), - [anon_sym_co_yield] = ACTIONS(3175), - [anon_sym_R_DQUOTE] = ACTIONS(3177), - [anon_sym_LR_DQUOTE] = ACTIONS(3177), - [anon_sym_uR_DQUOTE] = ACTIONS(3177), - [anon_sym_UR_DQUOTE] = ACTIONS(3177), - [anon_sym_u8R_DQUOTE] = ACTIONS(3177), - [anon_sym_co_await] = ACTIONS(3175), - [anon_sym_new] = ACTIONS(3175), - [anon_sym_requires] = ACTIONS(3175), - [sym_this] = ACTIONS(3175), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3177), - [sym_semgrep_named_ellipsis] = ACTIONS(3177), - }, - [677] = { - [sym_identifier] = ACTIONS(3183), - [aux_sym_preproc_include_token1] = ACTIONS(3183), - [aux_sym_preproc_def_token1] = ACTIONS(3183), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3185), - [aux_sym_preproc_if_token1] = ACTIONS(3183), - [aux_sym_preproc_if_token2] = ACTIONS(3183), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3183), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3183), - [sym_preproc_directive] = ACTIONS(3183), - [anon_sym_LPAREN2] = ACTIONS(3185), - [anon_sym_BANG] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3183), - [anon_sym_PLUS] = ACTIONS(3183), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_AMP_AMP] = ACTIONS(3185), - [anon_sym_AMP] = ACTIONS(3183), - [anon_sym_SEMI] = ACTIONS(3185), - [anon_sym___extension__] = ACTIONS(3183), - [anon_sym_typedef] = ACTIONS(3183), - [anon_sym_extern] = ACTIONS(3183), - [anon_sym___attribute__] = ACTIONS(3183), - [anon_sym_COLON_COLON] = ACTIONS(3185), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3185), - [anon_sym___declspec] = ACTIONS(3183), - [anon_sym___based] = ACTIONS(3183), - [anon_sym___cdecl] = ACTIONS(3183), - [anon_sym___clrcall] = ACTIONS(3183), - [anon_sym___stdcall] = ACTIONS(3183), - [anon_sym___fastcall] = ACTIONS(3183), - [anon_sym___thiscall] = ACTIONS(3183), - [anon_sym___vectorcall] = ACTIONS(3183), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_signed] = ACTIONS(3183), - [anon_sym_unsigned] = ACTIONS(3183), - [anon_sym_long] = ACTIONS(3183), - [anon_sym_short] = ACTIONS(3183), - [anon_sym_LBRACK] = ACTIONS(3183), - [anon_sym_static] = ACTIONS(3183), - [anon_sym_register] = ACTIONS(3183), - [anon_sym_inline] = ACTIONS(3183), - [anon_sym___inline] = ACTIONS(3183), - [anon_sym___inline__] = ACTIONS(3183), - [anon_sym___forceinline] = ACTIONS(3183), - [anon_sym_thread_local] = ACTIONS(3183), - [anon_sym___thread] = ACTIONS(3183), - [anon_sym_const] = ACTIONS(3183), - [anon_sym_constexpr] = ACTIONS(3183), - [anon_sym_volatile] = ACTIONS(3183), - [anon_sym_restrict] = ACTIONS(3183), - [anon_sym___restrict__] = ACTIONS(3183), - [anon_sym__Atomic] = ACTIONS(3183), - [anon_sym__Noreturn] = ACTIONS(3183), - [anon_sym_noreturn] = ACTIONS(3183), - [anon_sym_mutable] = ACTIONS(3183), - [anon_sym_constinit] = ACTIONS(3183), - [anon_sym_consteval] = ACTIONS(3183), - [sym_primitive_type] = ACTIONS(3183), - [anon_sym_enum] = ACTIONS(3183), - [anon_sym_class] = ACTIONS(3183), - [anon_sym_struct] = ACTIONS(3183), - [anon_sym_union] = ACTIONS(3183), - [anon_sym_if] = ACTIONS(3183), - [anon_sym_else] = ACTIONS(3183), - [anon_sym_switch] = ACTIONS(3183), - [anon_sym_case] = ACTIONS(3183), - [anon_sym_default] = ACTIONS(3183), - [anon_sym_while] = ACTIONS(3183), - [anon_sym_do] = ACTIONS(3183), - [anon_sym_for] = ACTIONS(3183), - [anon_sym_return] = ACTIONS(3183), - [anon_sym_break] = ACTIONS(3183), - [anon_sym_continue] = ACTIONS(3183), - [anon_sym_goto] = ACTIONS(3183), - [anon_sym___try] = ACTIONS(3183), - [anon_sym___leave] = ACTIONS(3183), - [anon_sym_not] = ACTIONS(3183), - [anon_sym_compl] = ACTIONS(3183), - [anon_sym_DASH_DASH] = ACTIONS(3185), - [anon_sym_PLUS_PLUS] = ACTIONS(3185), - [anon_sym_sizeof] = ACTIONS(3183), - [anon_sym___alignof__] = ACTIONS(3183), - [anon_sym___alignof] = ACTIONS(3183), - [anon_sym__alignof] = ACTIONS(3183), - [anon_sym_alignof] = ACTIONS(3183), - [anon_sym__Alignof] = ACTIONS(3183), - [anon_sym_offsetof] = ACTIONS(3183), - [anon_sym__Generic] = ACTIONS(3183), - [anon_sym_asm] = ACTIONS(3183), - [anon_sym___asm__] = ACTIONS(3183), - [sym_number_literal] = ACTIONS(3185), - [anon_sym_L_SQUOTE] = ACTIONS(3185), - [anon_sym_u_SQUOTE] = ACTIONS(3185), - [anon_sym_U_SQUOTE] = ACTIONS(3185), - [anon_sym_u8_SQUOTE] = ACTIONS(3185), - [anon_sym_SQUOTE] = ACTIONS(3185), - [anon_sym_L_DQUOTE] = ACTIONS(3185), - [anon_sym_u_DQUOTE] = ACTIONS(3185), - [anon_sym_U_DQUOTE] = ACTIONS(3185), - [anon_sym_u8_DQUOTE] = ACTIONS(3185), - [anon_sym_DQUOTE] = ACTIONS(3185), - [sym_true] = ACTIONS(3183), - [sym_false] = ACTIONS(3183), - [anon_sym_NULL] = ACTIONS(3183), - [anon_sym_nullptr] = ACTIONS(3183), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3183), - [anon_sym_decltype] = ACTIONS(3183), - [anon_sym_virtual] = ACTIONS(3183), - [anon_sym_alignas] = ACTIONS(3183), - [anon_sym_explicit] = ACTIONS(3183), - [anon_sym_typename] = ACTIONS(3183), - [anon_sym_template] = ACTIONS(3183), - [anon_sym_operator] = ACTIONS(3183), - [anon_sym_try] = ACTIONS(3183), - [anon_sym_delete] = ACTIONS(3183), - [anon_sym_throw] = ACTIONS(3183), - [anon_sym_namespace] = ACTIONS(3183), - [anon_sym_using] = ACTIONS(3183), - [anon_sym_static_assert] = ACTIONS(3183), - [anon_sym_concept] = ACTIONS(3183), - [anon_sym_co_return] = ACTIONS(3183), - [anon_sym_co_yield] = ACTIONS(3183), - [anon_sym_R_DQUOTE] = ACTIONS(3185), - [anon_sym_LR_DQUOTE] = ACTIONS(3185), - [anon_sym_uR_DQUOTE] = ACTIONS(3185), - [anon_sym_UR_DQUOTE] = ACTIONS(3185), - [anon_sym_u8R_DQUOTE] = ACTIONS(3185), - [anon_sym_co_await] = ACTIONS(3183), - [anon_sym_new] = ACTIONS(3183), - [anon_sym_requires] = ACTIONS(3183), - [sym_this] = ACTIONS(3183), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3185), - [sym_semgrep_named_ellipsis] = ACTIONS(3185), - }, - [678] = { - [sym_identifier] = ACTIONS(3197), - [aux_sym_preproc_include_token1] = ACTIONS(3197), - [aux_sym_preproc_def_token1] = ACTIONS(3197), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), - [aux_sym_preproc_if_token1] = ACTIONS(3197), - [aux_sym_preproc_if_token2] = ACTIONS(3197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3197), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3197), - [sym_preproc_directive] = ACTIONS(3197), - [anon_sym_LPAREN2] = ACTIONS(3199), - [anon_sym_BANG] = ACTIONS(3199), - [anon_sym_TILDE] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3199), - [anon_sym_AMP_AMP] = ACTIONS(3199), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_SEMI] = ACTIONS(3199), - [anon_sym___extension__] = ACTIONS(3197), - [anon_sym_typedef] = ACTIONS(3197), - [anon_sym_extern] = ACTIONS(3197), - [anon_sym___attribute__] = ACTIONS(3197), - [anon_sym_COLON_COLON] = ACTIONS(3199), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3199), - [anon_sym___declspec] = ACTIONS(3197), - [anon_sym___based] = ACTIONS(3197), - [anon_sym___cdecl] = ACTIONS(3197), - [anon_sym___clrcall] = ACTIONS(3197), - [anon_sym___stdcall] = ACTIONS(3197), - [anon_sym___fastcall] = ACTIONS(3197), - [anon_sym___thiscall] = ACTIONS(3197), - [anon_sym___vectorcall] = ACTIONS(3197), - [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_signed] = ACTIONS(3197), - [anon_sym_unsigned] = ACTIONS(3197), - [anon_sym_long] = ACTIONS(3197), - [anon_sym_short] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_static] = ACTIONS(3197), - [anon_sym_register] = ACTIONS(3197), - [anon_sym_inline] = ACTIONS(3197), - [anon_sym___inline] = ACTIONS(3197), - [anon_sym___inline__] = ACTIONS(3197), - [anon_sym___forceinline] = ACTIONS(3197), - [anon_sym_thread_local] = ACTIONS(3197), - [anon_sym___thread] = ACTIONS(3197), - [anon_sym_const] = ACTIONS(3197), - [anon_sym_constexpr] = ACTIONS(3197), - [anon_sym_volatile] = ACTIONS(3197), - [anon_sym_restrict] = ACTIONS(3197), - [anon_sym___restrict__] = ACTIONS(3197), - [anon_sym__Atomic] = ACTIONS(3197), - [anon_sym__Noreturn] = ACTIONS(3197), - [anon_sym_noreturn] = ACTIONS(3197), - [anon_sym_mutable] = ACTIONS(3197), - [anon_sym_constinit] = ACTIONS(3197), - [anon_sym_consteval] = ACTIONS(3197), - [sym_primitive_type] = ACTIONS(3197), - [anon_sym_enum] = ACTIONS(3197), - [anon_sym_class] = ACTIONS(3197), - [anon_sym_struct] = ACTIONS(3197), - [anon_sym_union] = ACTIONS(3197), - [anon_sym_if] = ACTIONS(3197), - [anon_sym_else] = ACTIONS(3197), - [anon_sym_switch] = ACTIONS(3197), - [anon_sym_case] = ACTIONS(3197), - [anon_sym_default] = ACTIONS(3197), - [anon_sym_while] = ACTIONS(3197), - [anon_sym_do] = ACTIONS(3197), - [anon_sym_for] = ACTIONS(3197), - [anon_sym_return] = ACTIONS(3197), - [anon_sym_break] = ACTIONS(3197), - [anon_sym_continue] = ACTIONS(3197), - [anon_sym_goto] = ACTIONS(3197), - [anon_sym___try] = ACTIONS(3197), - [anon_sym___leave] = ACTIONS(3197), - [anon_sym_not] = ACTIONS(3197), - [anon_sym_compl] = ACTIONS(3197), - [anon_sym_DASH_DASH] = ACTIONS(3199), - [anon_sym_PLUS_PLUS] = ACTIONS(3199), - [anon_sym_sizeof] = ACTIONS(3197), - [anon_sym___alignof__] = ACTIONS(3197), - [anon_sym___alignof] = ACTIONS(3197), - [anon_sym__alignof] = ACTIONS(3197), - [anon_sym_alignof] = ACTIONS(3197), - [anon_sym__Alignof] = ACTIONS(3197), - [anon_sym_offsetof] = ACTIONS(3197), - [anon_sym__Generic] = ACTIONS(3197), - [anon_sym_asm] = ACTIONS(3197), - [anon_sym___asm__] = ACTIONS(3197), - [sym_number_literal] = ACTIONS(3199), - [anon_sym_L_SQUOTE] = ACTIONS(3199), - [anon_sym_u_SQUOTE] = ACTIONS(3199), - [anon_sym_U_SQUOTE] = ACTIONS(3199), - [anon_sym_u8_SQUOTE] = ACTIONS(3199), - [anon_sym_SQUOTE] = ACTIONS(3199), - [anon_sym_L_DQUOTE] = ACTIONS(3199), - [anon_sym_u_DQUOTE] = ACTIONS(3199), - [anon_sym_U_DQUOTE] = ACTIONS(3199), - [anon_sym_u8_DQUOTE] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym_true] = ACTIONS(3197), - [sym_false] = ACTIONS(3197), - [anon_sym_NULL] = ACTIONS(3197), - [anon_sym_nullptr] = ACTIONS(3197), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3197), - [anon_sym_decltype] = ACTIONS(3197), - [anon_sym_virtual] = ACTIONS(3197), - [anon_sym_alignas] = ACTIONS(3197), - [anon_sym_explicit] = ACTIONS(3197), - [anon_sym_typename] = ACTIONS(3197), - [anon_sym_template] = ACTIONS(3197), - [anon_sym_operator] = ACTIONS(3197), - [anon_sym_try] = ACTIONS(3197), - [anon_sym_delete] = ACTIONS(3197), - [anon_sym_throw] = ACTIONS(3197), - [anon_sym_namespace] = ACTIONS(3197), - [anon_sym_using] = ACTIONS(3197), - [anon_sym_static_assert] = ACTIONS(3197), - [anon_sym_concept] = ACTIONS(3197), - [anon_sym_co_return] = ACTIONS(3197), - [anon_sym_co_yield] = ACTIONS(3197), - [anon_sym_R_DQUOTE] = ACTIONS(3199), - [anon_sym_LR_DQUOTE] = ACTIONS(3199), - [anon_sym_uR_DQUOTE] = ACTIONS(3199), - [anon_sym_UR_DQUOTE] = ACTIONS(3199), - [anon_sym_u8R_DQUOTE] = ACTIONS(3199), - [anon_sym_co_await] = ACTIONS(3197), - [anon_sym_new] = ACTIONS(3197), - [anon_sym_requires] = ACTIONS(3197), - [sym_this] = ACTIONS(3197), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3199), - [sym_semgrep_named_ellipsis] = ACTIONS(3199), - }, - [679] = { - [sym_identifier] = ACTIONS(3109), - [aux_sym_preproc_include_token1] = ACTIONS(3109), - [aux_sym_preproc_def_token1] = ACTIONS(3109), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3111), - [aux_sym_preproc_if_token1] = ACTIONS(3109), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3109), - [sym_preproc_directive] = ACTIONS(3109), - [anon_sym_LPAREN2] = ACTIONS(3111), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_TILDE] = ACTIONS(3111), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_AMP_AMP] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym___extension__] = ACTIONS(3109), - [anon_sym_typedef] = ACTIONS(3109), - [anon_sym_extern] = ACTIONS(3109), - [anon_sym___attribute__] = ACTIONS(3109), - [anon_sym_COLON_COLON] = ACTIONS(3111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3111), - [anon_sym___declspec] = ACTIONS(3109), - [anon_sym___based] = ACTIONS(3109), - [anon_sym___cdecl] = ACTIONS(3109), - [anon_sym___clrcall] = ACTIONS(3109), - [anon_sym___stdcall] = ACTIONS(3109), - [anon_sym___fastcall] = ACTIONS(3109), - [anon_sym___thiscall] = ACTIONS(3109), - [anon_sym___vectorcall] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3111), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_signed] = ACTIONS(3109), - [anon_sym_unsigned] = ACTIONS(3109), - [anon_sym_long] = ACTIONS(3109), - [anon_sym_short] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3109), - [anon_sym_static] = ACTIONS(3109), - [anon_sym_register] = ACTIONS(3109), - [anon_sym_inline] = ACTIONS(3109), - [anon_sym___inline] = ACTIONS(3109), - [anon_sym___inline__] = ACTIONS(3109), - [anon_sym___forceinline] = ACTIONS(3109), - [anon_sym_thread_local] = ACTIONS(3109), - [anon_sym___thread] = ACTIONS(3109), - [anon_sym_const] = ACTIONS(3109), - [anon_sym_constexpr] = ACTIONS(3109), - [anon_sym_volatile] = ACTIONS(3109), - [anon_sym_restrict] = ACTIONS(3109), - [anon_sym___restrict__] = ACTIONS(3109), - [anon_sym__Atomic] = ACTIONS(3109), - [anon_sym__Noreturn] = ACTIONS(3109), - [anon_sym_noreturn] = ACTIONS(3109), - [anon_sym_mutable] = ACTIONS(3109), - [anon_sym_constinit] = ACTIONS(3109), - [anon_sym_consteval] = ACTIONS(3109), - [sym_primitive_type] = ACTIONS(3109), - [anon_sym_enum] = ACTIONS(3109), - [anon_sym_class] = ACTIONS(3109), - [anon_sym_struct] = ACTIONS(3109), - [anon_sym_union] = ACTIONS(3109), - [anon_sym_if] = ACTIONS(3109), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_switch] = ACTIONS(3109), - [anon_sym_case] = ACTIONS(3109), - [anon_sym_default] = ACTIONS(3109), - [anon_sym_while] = ACTIONS(3109), - [anon_sym_do] = ACTIONS(3109), - [anon_sym_for] = ACTIONS(3109), - [anon_sym_return] = ACTIONS(3109), - [anon_sym_break] = ACTIONS(3109), - [anon_sym_continue] = ACTIONS(3109), - [anon_sym_goto] = ACTIONS(3109), - [anon_sym___try] = ACTIONS(3109), - [anon_sym___leave] = ACTIONS(3109), - [anon_sym_not] = ACTIONS(3109), - [anon_sym_compl] = ACTIONS(3109), - [anon_sym_DASH_DASH] = ACTIONS(3111), - [anon_sym_PLUS_PLUS] = ACTIONS(3111), - [anon_sym_sizeof] = ACTIONS(3109), - [anon_sym___alignof__] = ACTIONS(3109), - [anon_sym___alignof] = ACTIONS(3109), - [anon_sym__alignof] = ACTIONS(3109), - [anon_sym_alignof] = ACTIONS(3109), - [anon_sym__Alignof] = ACTIONS(3109), - [anon_sym_offsetof] = ACTIONS(3109), - [anon_sym__Generic] = ACTIONS(3109), - [anon_sym_asm] = ACTIONS(3109), - [anon_sym___asm__] = ACTIONS(3109), - [sym_number_literal] = ACTIONS(3111), - [anon_sym_L_SQUOTE] = ACTIONS(3111), - [anon_sym_u_SQUOTE] = ACTIONS(3111), - [anon_sym_U_SQUOTE] = ACTIONS(3111), - [anon_sym_u8_SQUOTE] = ACTIONS(3111), - [anon_sym_SQUOTE] = ACTIONS(3111), - [anon_sym_L_DQUOTE] = ACTIONS(3111), - [anon_sym_u_DQUOTE] = ACTIONS(3111), - [anon_sym_U_DQUOTE] = ACTIONS(3111), - [anon_sym_u8_DQUOTE] = ACTIONS(3111), - [anon_sym_DQUOTE] = ACTIONS(3111), - [sym_true] = ACTIONS(3109), - [sym_false] = ACTIONS(3109), - [anon_sym_NULL] = ACTIONS(3109), - [anon_sym_nullptr] = ACTIONS(3109), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3109), - [anon_sym_decltype] = ACTIONS(3109), - [anon_sym_virtual] = ACTIONS(3109), - [anon_sym_alignas] = ACTIONS(3109), - [anon_sym_explicit] = ACTIONS(3109), - [anon_sym_typename] = ACTIONS(3109), - [anon_sym_template] = ACTIONS(3109), - [anon_sym_operator] = ACTIONS(3109), - [anon_sym_try] = ACTIONS(3109), - [anon_sym_delete] = ACTIONS(3109), - [anon_sym_throw] = ACTIONS(3109), - [anon_sym_namespace] = ACTIONS(3109), - [anon_sym_using] = ACTIONS(3109), - [anon_sym_static_assert] = ACTIONS(3109), - [anon_sym_concept] = ACTIONS(3109), - [anon_sym_co_return] = ACTIONS(3109), - [anon_sym_co_yield] = ACTIONS(3109), - [anon_sym_R_DQUOTE] = ACTIONS(3111), - [anon_sym_LR_DQUOTE] = ACTIONS(3111), - [anon_sym_uR_DQUOTE] = ACTIONS(3111), - [anon_sym_UR_DQUOTE] = ACTIONS(3111), - [anon_sym_u8R_DQUOTE] = ACTIONS(3111), - [anon_sym_co_await] = ACTIONS(3109), - [anon_sym_new] = ACTIONS(3109), - [anon_sym_requires] = ACTIONS(3109), - [sym_this] = ACTIONS(3109), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3111), - [sym_semgrep_named_ellipsis] = ACTIONS(3111), - }, - [680] = { - [sym_catch_clause] = STATE(399), - [aux_sym_constructor_try_statement_repeat1] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(3072), - [sym_identifier] = ACTIONS(3070), - [aux_sym_preproc_include_token1] = ACTIONS(3070), - [aux_sym_preproc_def_token1] = ACTIONS(3070), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3072), - [aux_sym_preproc_if_token1] = ACTIONS(3070), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3070), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3070), - [sym_preproc_directive] = ACTIONS(3070), - [anon_sym_LPAREN2] = ACTIONS(3072), - [anon_sym_BANG] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_AMP] = ACTIONS(3070), - [anon_sym___extension__] = ACTIONS(3070), - [anon_sym_typedef] = ACTIONS(3070), - [anon_sym_extern] = ACTIONS(3070), - [anon_sym___attribute__] = ACTIONS(3070), - [anon_sym_COLON_COLON] = ACTIONS(3072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3072), - [anon_sym___declspec] = ACTIONS(3070), - [anon_sym___based] = ACTIONS(3070), - [anon_sym___cdecl] = ACTIONS(3070), - [anon_sym___clrcall] = ACTIONS(3070), - [anon_sym___stdcall] = ACTIONS(3070), - [anon_sym___fastcall] = ACTIONS(3070), - [anon_sym___thiscall] = ACTIONS(3070), - [anon_sym___vectorcall] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_signed] = ACTIONS(3070), - [anon_sym_unsigned] = ACTIONS(3070), - [anon_sym_long] = ACTIONS(3070), - [anon_sym_short] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(3070), - [anon_sym_static] = ACTIONS(3070), - [anon_sym_register] = ACTIONS(3070), - [anon_sym_inline] = ACTIONS(3070), - [anon_sym___inline] = ACTIONS(3070), - [anon_sym___inline__] = ACTIONS(3070), - [anon_sym___forceinline] = ACTIONS(3070), - [anon_sym_thread_local] = ACTIONS(3070), - [anon_sym___thread] = ACTIONS(3070), - [anon_sym_const] = ACTIONS(3070), - [anon_sym_constexpr] = ACTIONS(3070), - [anon_sym_volatile] = ACTIONS(3070), - [anon_sym_restrict] = ACTIONS(3070), - [anon_sym___restrict__] = ACTIONS(3070), - [anon_sym__Atomic] = ACTIONS(3070), - [anon_sym__Noreturn] = ACTIONS(3070), - [anon_sym_noreturn] = ACTIONS(3070), - [anon_sym_mutable] = ACTIONS(3070), - [anon_sym_constinit] = ACTIONS(3070), - [anon_sym_consteval] = ACTIONS(3070), - [sym_primitive_type] = ACTIONS(3070), - [anon_sym_enum] = ACTIONS(3070), - [anon_sym_class] = ACTIONS(3070), - [anon_sym_struct] = ACTIONS(3070), - [anon_sym_union] = ACTIONS(3070), - [anon_sym_if] = ACTIONS(3070), - [anon_sym_switch] = ACTIONS(3070), - [anon_sym_case] = ACTIONS(3070), - [anon_sym_default] = ACTIONS(3070), - [anon_sym_while] = ACTIONS(3070), - [anon_sym_do] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3070), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_break] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(3070), - [anon_sym_goto] = ACTIONS(3070), - [anon_sym_not] = ACTIONS(3070), - [anon_sym_compl] = ACTIONS(3070), - [anon_sym_DASH_DASH] = ACTIONS(3072), - [anon_sym_PLUS_PLUS] = ACTIONS(3072), - [anon_sym_sizeof] = ACTIONS(3070), - [anon_sym___alignof__] = ACTIONS(3070), - [anon_sym___alignof] = ACTIONS(3070), - [anon_sym__alignof] = ACTIONS(3070), - [anon_sym_alignof] = ACTIONS(3070), - [anon_sym__Alignof] = ACTIONS(3070), - [anon_sym_offsetof] = ACTIONS(3070), - [anon_sym__Generic] = ACTIONS(3070), - [anon_sym_asm] = ACTIONS(3070), - [anon_sym___asm__] = ACTIONS(3070), - [sym_number_literal] = ACTIONS(3072), - [anon_sym_L_SQUOTE] = ACTIONS(3072), - [anon_sym_u_SQUOTE] = ACTIONS(3072), - [anon_sym_U_SQUOTE] = ACTIONS(3072), - [anon_sym_u8_SQUOTE] = ACTIONS(3072), - [anon_sym_SQUOTE] = ACTIONS(3072), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3070), - [sym_false] = ACTIONS(3070), - [anon_sym_NULL] = ACTIONS(3070), - [anon_sym_nullptr] = ACTIONS(3070), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3070), - [anon_sym_decltype] = ACTIONS(3070), - [anon_sym_virtual] = ACTIONS(3070), - [anon_sym_alignas] = ACTIONS(3070), - [anon_sym_explicit] = ACTIONS(3070), - [anon_sym_typename] = ACTIONS(3070), - [anon_sym_template] = ACTIONS(3070), - [anon_sym_operator] = ACTIONS(3070), - [anon_sym_try] = ACTIONS(3070), - [anon_sym_delete] = ACTIONS(3070), - [anon_sym_throw] = ACTIONS(3070), - [anon_sym_namespace] = ACTIONS(3070), - [anon_sym_using] = ACTIONS(3070), - [anon_sym_static_assert] = ACTIONS(3070), - [anon_sym_concept] = ACTIONS(3070), - [anon_sym_co_return] = ACTIONS(3070), - [anon_sym_co_yield] = ACTIONS(3070), - [anon_sym_catch] = ACTIONS(3532), - [anon_sym_R_DQUOTE] = ACTIONS(3072), - [anon_sym_LR_DQUOTE] = ACTIONS(3072), - [anon_sym_uR_DQUOTE] = ACTIONS(3072), - [anon_sym_UR_DQUOTE] = ACTIONS(3072), - [anon_sym_u8R_DQUOTE] = ACTIONS(3072), - [anon_sym_co_await] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3070), - [anon_sym_requires] = ACTIONS(3070), - [sym_this] = ACTIONS(3070), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3072), - [sym_semgrep_named_ellipsis] = ACTIONS(3072), + [sym_auto] = ACTIONS(3396), + [anon_sym_decltype] = ACTIONS(3396), + [anon_sym_virtual] = ACTIONS(3396), + [anon_sym_alignas] = ACTIONS(3396), + [anon_sym_explicit] = ACTIONS(3396), + [anon_sym_typename] = ACTIONS(3396), + [anon_sym_template] = ACTIONS(3396), + [anon_sym_operator] = ACTIONS(3396), + [anon_sym_try] = ACTIONS(3396), + [anon_sym_delete] = ACTIONS(3396), + [anon_sym_throw] = ACTIONS(3396), + [anon_sym_namespace] = ACTIONS(3396), + [anon_sym_using] = ACTIONS(3396), + [anon_sym_static_assert] = ACTIONS(3396), + [anon_sym_concept] = ACTIONS(3396), + [anon_sym_co_return] = ACTIONS(3396), + [anon_sym_co_yield] = ACTIONS(3396), + [anon_sym_R_DQUOTE] = ACTIONS(3398), + [anon_sym_LR_DQUOTE] = ACTIONS(3398), + [anon_sym_uR_DQUOTE] = ACTIONS(3398), + [anon_sym_UR_DQUOTE] = ACTIONS(3398), + [anon_sym_u8R_DQUOTE] = ACTIONS(3398), + [anon_sym_co_await] = ACTIONS(3396), + [anon_sym_new] = ACTIONS(3396), + [anon_sym_requires] = ACTIONS(3396), + [sym_this] = ACTIONS(3396), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3398), + [sym_semgrep_named_ellipsis] = ACTIONS(3398), }, - [681] = { + [724] = { [sym_identifier] = ACTIONS(3396), [aux_sym_preproc_include_token1] = ACTIONS(3396), [aux_sym_preproc_def_token1] = ACTIONS(3396), @@ -159527,7437 +155494,1228 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3398), [sym_semgrep_named_ellipsis] = ACTIONS(3398), }, - [682] = { - [sym_identifier] = ACTIONS(3495), - [aux_sym_preproc_include_token1] = ACTIONS(3495), - [aux_sym_preproc_def_token1] = ACTIONS(3495), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3497), - [aux_sym_preproc_if_token1] = ACTIONS(3495), - [aux_sym_preproc_if_token2] = ACTIONS(3495), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3495), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3495), - [sym_preproc_directive] = ACTIONS(3495), - [anon_sym_LPAREN2] = ACTIONS(3497), - [anon_sym_BANG] = ACTIONS(3497), - [anon_sym_TILDE] = ACTIONS(3497), - [anon_sym_DASH] = ACTIONS(3495), - [anon_sym_PLUS] = ACTIONS(3495), - [anon_sym_STAR] = ACTIONS(3497), - [anon_sym_AMP_AMP] = ACTIONS(3497), - [anon_sym_AMP] = ACTIONS(3495), - [anon_sym_SEMI] = ACTIONS(3497), - [anon_sym___extension__] = ACTIONS(3495), - [anon_sym_typedef] = ACTIONS(3495), - [anon_sym_extern] = ACTIONS(3495), - [anon_sym___attribute__] = ACTIONS(3495), - [anon_sym_COLON_COLON] = ACTIONS(3497), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3497), - [anon_sym___declspec] = ACTIONS(3495), - [anon_sym___based] = ACTIONS(3495), - [anon_sym___cdecl] = ACTIONS(3495), - [anon_sym___clrcall] = ACTIONS(3495), - [anon_sym___stdcall] = ACTIONS(3495), - [anon_sym___fastcall] = ACTIONS(3495), - [anon_sym___thiscall] = ACTIONS(3495), - [anon_sym___vectorcall] = ACTIONS(3495), - [anon_sym_LBRACE] = ACTIONS(3497), - [anon_sym_signed] = ACTIONS(3495), - [anon_sym_unsigned] = ACTIONS(3495), - [anon_sym_long] = ACTIONS(3495), - [anon_sym_short] = ACTIONS(3495), - [anon_sym_LBRACK] = ACTIONS(3495), - [anon_sym_static] = ACTIONS(3495), - [anon_sym_register] = ACTIONS(3495), - [anon_sym_inline] = ACTIONS(3495), - [anon_sym___inline] = ACTIONS(3495), - [anon_sym___inline__] = ACTIONS(3495), - [anon_sym___forceinline] = ACTIONS(3495), - [anon_sym_thread_local] = ACTIONS(3495), - [anon_sym___thread] = ACTIONS(3495), - [anon_sym_const] = ACTIONS(3495), - [anon_sym_constexpr] = ACTIONS(3495), - [anon_sym_volatile] = ACTIONS(3495), - [anon_sym_restrict] = ACTIONS(3495), - [anon_sym___restrict__] = ACTIONS(3495), - [anon_sym__Atomic] = ACTIONS(3495), - [anon_sym__Noreturn] = ACTIONS(3495), - [anon_sym_noreturn] = ACTIONS(3495), - [anon_sym_mutable] = ACTIONS(3495), - [anon_sym_constinit] = ACTIONS(3495), - [anon_sym_consteval] = ACTIONS(3495), - [sym_primitive_type] = ACTIONS(3495), - [anon_sym_enum] = ACTIONS(3495), - [anon_sym_class] = ACTIONS(3495), - [anon_sym_struct] = ACTIONS(3495), - [anon_sym_union] = ACTIONS(3495), - [anon_sym_if] = ACTIONS(3495), - [anon_sym_switch] = ACTIONS(3495), - [anon_sym_case] = ACTIONS(3495), - [anon_sym_default] = ACTIONS(3495), - [anon_sym_while] = ACTIONS(3495), - [anon_sym_do] = ACTIONS(3495), - [anon_sym_for] = ACTIONS(3495), - [anon_sym_return] = ACTIONS(3495), - [anon_sym_break] = ACTIONS(3495), - [anon_sym_continue] = ACTIONS(3495), - [anon_sym_goto] = ACTIONS(3495), - [anon_sym___try] = ACTIONS(3495), - [anon_sym___leave] = ACTIONS(3495), - [anon_sym_not] = ACTIONS(3495), - [anon_sym_compl] = ACTIONS(3495), - [anon_sym_DASH_DASH] = ACTIONS(3497), - [anon_sym_PLUS_PLUS] = ACTIONS(3497), - [anon_sym_sizeof] = ACTIONS(3495), - [anon_sym___alignof__] = ACTIONS(3495), - [anon_sym___alignof] = ACTIONS(3495), - [anon_sym__alignof] = ACTIONS(3495), - [anon_sym_alignof] = ACTIONS(3495), - [anon_sym__Alignof] = ACTIONS(3495), - [anon_sym_offsetof] = ACTIONS(3495), - [anon_sym__Generic] = ACTIONS(3495), - [anon_sym_asm] = ACTIONS(3495), - [anon_sym___asm__] = ACTIONS(3495), - [sym_number_literal] = ACTIONS(3497), - [anon_sym_L_SQUOTE] = ACTIONS(3497), - [anon_sym_u_SQUOTE] = ACTIONS(3497), - [anon_sym_U_SQUOTE] = ACTIONS(3497), - [anon_sym_u8_SQUOTE] = ACTIONS(3497), - [anon_sym_SQUOTE] = ACTIONS(3497), - [anon_sym_L_DQUOTE] = ACTIONS(3497), - [anon_sym_u_DQUOTE] = ACTIONS(3497), - [anon_sym_U_DQUOTE] = ACTIONS(3497), - [anon_sym_u8_DQUOTE] = ACTIONS(3497), - [anon_sym_DQUOTE] = ACTIONS(3497), - [sym_true] = ACTIONS(3495), - [sym_false] = ACTIONS(3495), - [anon_sym_NULL] = ACTIONS(3495), - [anon_sym_nullptr] = ACTIONS(3495), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3495), - [anon_sym_decltype] = ACTIONS(3495), - [anon_sym_virtual] = ACTIONS(3495), - [anon_sym_alignas] = ACTIONS(3495), - [anon_sym_explicit] = ACTIONS(3495), - [anon_sym_typename] = ACTIONS(3495), - [anon_sym_template] = ACTIONS(3495), - [anon_sym_operator] = ACTIONS(3495), - [anon_sym_try] = ACTIONS(3495), - [anon_sym_delete] = ACTIONS(3495), - [anon_sym_throw] = ACTIONS(3495), - [anon_sym_namespace] = ACTIONS(3495), - [anon_sym_using] = ACTIONS(3495), - [anon_sym_static_assert] = ACTIONS(3495), - [anon_sym_concept] = ACTIONS(3495), - [anon_sym_co_return] = ACTIONS(3495), - [anon_sym_co_yield] = ACTIONS(3495), - [anon_sym_R_DQUOTE] = ACTIONS(3497), - [anon_sym_LR_DQUOTE] = ACTIONS(3497), - [anon_sym_uR_DQUOTE] = ACTIONS(3497), - [anon_sym_UR_DQUOTE] = ACTIONS(3497), - [anon_sym_u8R_DQUOTE] = ACTIONS(3497), - [anon_sym_co_await] = ACTIONS(3495), - [anon_sym_new] = ACTIONS(3495), - [anon_sym_requires] = ACTIONS(3495), - [sym_this] = ACTIONS(3495), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3497), - [sym_semgrep_named_ellipsis] = ACTIONS(3497), + [725] = { + [sym_identifier] = ACTIONS(3587), + [aux_sym_preproc_include_token1] = ACTIONS(3587), + [aux_sym_preproc_def_token1] = ACTIONS(3587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3589), + [aux_sym_preproc_if_token1] = ACTIONS(3587), + [aux_sym_preproc_if_token2] = ACTIONS(3587), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3587), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3587), + [sym_preproc_directive] = ACTIONS(3587), + [anon_sym_LPAREN2] = ACTIONS(3589), + [anon_sym_BANG] = ACTIONS(3589), + [anon_sym_TILDE] = ACTIONS(3589), + [anon_sym_DASH] = ACTIONS(3587), + [anon_sym_PLUS] = ACTIONS(3587), + [anon_sym_STAR] = ACTIONS(3589), + [anon_sym_AMP_AMP] = ACTIONS(3589), + [anon_sym_AMP] = ACTIONS(3587), + [anon_sym_SEMI] = ACTIONS(3589), + [anon_sym___extension__] = ACTIONS(3587), + [anon_sym_typedef] = ACTIONS(3587), + [anon_sym_extern] = ACTIONS(3587), + [anon_sym___attribute__] = ACTIONS(3587), + [anon_sym_COLON_COLON] = ACTIONS(3589), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3589), + [anon_sym___declspec] = ACTIONS(3587), + [anon_sym___based] = ACTIONS(3587), + [anon_sym___cdecl] = ACTIONS(3587), + [anon_sym___clrcall] = ACTIONS(3587), + [anon_sym___stdcall] = ACTIONS(3587), + [anon_sym___fastcall] = ACTIONS(3587), + [anon_sym___thiscall] = ACTIONS(3587), + [anon_sym___vectorcall] = ACTIONS(3587), + [anon_sym_LBRACE] = ACTIONS(3589), + [anon_sym_signed] = ACTIONS(3587), + [anon_sym_unsigned] = ACTIONS(3587), + [anon_sym_long] = ACTIONS(3587), + [anon_sym_short] = ACTIONS(3587), + [anon_sym_LBRACK] = ACTIONS(3587), + [anon_sym_static] = ACTIONS(3587), + [anon_sym_register] = ACTIONS(3587), + [anon_sym_inline] = ACTIONS(3587), + [anon_sym___inline] = ACTIONS(3587), + [anon_sym___inline__] = ACTIONS(3587), + [anon_sym___forceinline] = ACTIONS(3587), + [anon_sym_thread_local] = ACTIONS(3587), + [anon_sym___thread] = ACTIONS(3587), + [anon_sym_const] = ACTIONS(3587), + [anon_sym_constexpr] = ACTIONS(3587), + [anon_sym_volatile] = ACTIONS(3587), + [anon_sym_restrict] = ACTIONS(3587), + [anon_sym___restrict__] = ACTIONS(3587), + [anon_sym__Atomic] = ACTIONS(3587), + [anon_sym__Noreturn] = ACTIONS(3587), + [anon_sym_noreturn] = ACTIONS(3587), + [anon_sym_mutable] = ACTIONS(3587), + [anon_sym_constinit] = ACTIONS(3587), + [anon_sym_consteval] = ACTIONS(3587), + [sym_primitive_type] = ACTIONS(3587), + [anon_sym_enum] = ACTIONS(3587), + [anon_sym_class] = ACTIONS(3587), + [anon_sym_struct] = ACTIONS(3587), + [anon_sym_union] = ACTIONS(3587), + [anon_sym_if] = ACTIONS(3587), + [anon_sym_switch] = ACTIONS(3587), + [anon_sym_case] = ACTIONS(3587), + [anon_sym_default] = ACTIONS(3587), + [anon_sym_while] = ACTIONS(3587), + [anon_sym_do] = ACTIONS(3587), + [anon_sym_for] = ACTIONS(3587), + [anon_sym_return] = ACTIONS(3587), + [anon_sym_break] = ACTIONS(3587), + [anon_sym_continue] = ACTIONS(3587), + [anon_sym_goto] = ACTIONS(3587), + [anon_sym___try] = ACTIONS(3587), + [anon_sym___leave] = ACTIONS(3587), + [anon_sym_not] = ACTIONS(3587), + [anon_sym_compl] = ACTIONS(3587), + [anon_sym_DASH_DASH] = ACTIONS(3589), + [anon_sym_PLUS_PLUS] = ACTIONS(3589), + [anon_sym_sizeof] = ACTIONS(3587), + [anon_sym___alignof__] = ACTIONS(3587), + [anon_sym___alignof] = ACTIONS(3587), + [anon_sym__alignof] = ACTIONS(3587), + [anon_sym_alignof] = ACTIONS(3587), + [anon_sym__Alignof] = ACTIONS(3587), + [anon_sym_offsetof] = ACTIONS(3587), + [anon_sym__Generic] = ACTIONS(3587), + [anon_sym_asm] = ACTIONS(3587), + [anon_sym___asm__] = ACTIONS(3587), + [sym_number_literal] = ACTIONS(3589), + [anon_sym_L_SQUOTE] = ACTIONS(3589), + [anon_sym_u_SQUOTE] = ACTIONS(3589), + [anon_sym_U_SQUOTE] = ACTIONS(3589), + [anon_sym_u8_SQUOTE] = ACTIONS(3589), + [anon_sym_SQUOTE] = ACTIONS(3589), + [anon_sym_L_DQUOTE] = ACTIONS(3589), + [anon_sym_u_DQUOTE] = ACTIONS(3589), + [anon_sym_U_DQUOTE] = ACTIONS(3589), + [anon_sym_u8_DQUOTE] = ACTIONS(3589), + [anon_sym_DQUOTE] = ACTIONS(3589), + [sym_true] = ACTIONS(3587), + [sym_false] = ACTIONS(3587), + [anon_sym_NULL] = ACTIONS(3587), + [anon_sym_nullptr] = ACTIONS(3587), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3587), + [anon_sym_decltype] = ACTIONS(3587), + [anon_sym_virtual] = ACTIONS(3587), + [anon_sym_alignas] = ACTIONS(3587), + [anon_sym_explicit] = ACTIONS(3587), + [anon_sym_typename] = ACTIONS(3587), + [anon_sym_template] = ACTIONS(3587), + [anon_sym_operator] = ACTIONS(3587), + [anon_sym_try] = ACTIONS(3587), + [anon_sym_delete] = ACTIONS(3587), + [anon_sym_throw] = ACTIONS(3587), + [anon_sym_namespace] = ACTIONS(3587), + [anon_sym_using] = ACTIONS(3587), + [anon_sym_static_assert] = ACTIONS(3587), + [anon_sym_concept] = ACTIONS(3587), + [anon_sym_co_return] = ACTIONS(3587), + [anon_sym_co_yield] = ACTIONS(3587), + [anon_sym_R_DQUOTE] = ACTIONS(3589), + [anon_sym_LR_DQUOTE] = ACTIONS(3589), + [anon_sym_uR_DQUOTE] = ACTIONS(3589), + [anon_sym_UR_DQUOTE] = ACTIONS(3589), + [anon_sym_u8R_DQUOTE] = ACTIONS(3589), + [anon_sym_co_await] = ACTIONS(3587), + [anon_sym_new] = ACTIONS(3587), + [anon_sym_requires] = ACTIONS(3587), + [sym_this] = ACTIONS(3587), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3589), + [sym_semgrep_named_ellipsis] = ACTIONS(3589), }, - [683] = { - [sym_identifier] = ACTIONS(3400), - [aux_sym_preproc_include_token1] = ACTIONS(3400), - [aux_sym_preproc_def_token1] = ACTIONS(3400), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3402), - [aux_sym_preproc_if_token1] = ACTIONS(3400), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3400), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3400), - [sym_preproc_directive] = ACTIONS(3400), - [anon_sym_LPAREN2] = ACTIONS(3402), - [anon_sym_BANG] = ACTIONS(3402), - [anon_sym_TILDE] = ACTIONS(3402), - [anon_sym_DASH] = ACTIONS(3400), - [anon_sym_PLUS] = ACTIONS(3400), - [anon_sym_STAR] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_AMP] = ACTIONS(3400), - [anon_sym_SEMI] = ACTIONS(3402), - [anon_sym___extension__] = ACTIONS(3400), - [anon_sym_typedef] = ACTIONS(3400), - [anon_sym_extern] = ACTIONS(3400), - [anon_sym___attribute__] = ACTIONS(3400), - [anon_sym_COLON_COLON] = ACTIONS(3402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3402), - [anon_sym___declspec] = ACTIONS(3400), - [anon_sym___based] = ACTIONS(3400), - [anon_sym___cdecl] = ACTIONS(3400), - [anon_sym___clrcall] = ACTIONS(3400), - [anon_sym___stdcall] = ACTIONS(3400), - [anon_sym___fastcall] = ACTIONS(3400), - [anon_sym___thiscall] = ACTIONS(3400), - [anon_sym___vectorcall] = ACTIONS(3400), - [anon_sym_LBRACE] = ACTIONS(3402), - [anon_sym_RBRACE] = ACTIONS(3402), - [anon_sym_signed] = ACTIONS(3400), - [anon_sym_unsigned] = ACTIONS(3400), - [anon_sym_long] = ACTIONS(3400), - [anon_sym_short] = ACTIONS(3400), - [anon_sym_LBRACK] = ACTIONS(3400), - [anon_sym_static] = ACTIONS(3400), - [anon_sym_register] = ACTIONS(3400), - [anon_sym_inline] = ACTIONS(3400), - [anon_sym___inline] = ACTIONS(3400), - [anon_sym___inline__] = ACTIONS(3400), - [anon_sym___forceinline] = ACTIONS(3400), - [anon_sym_thread_local] = ACTIONS(3400), - [anon_sym___thread] = ACTIONS(3400), - [anon_sym_const] = ACTIONS(3400), - [anon_sym_constexpr] = ACTIONS(3400), - [anon_sym_volatile] = ACTIONS(3400), - [anon_sym_restrict] = ACTIONS(3400), - [anon_sym___restrict__] = ACTIONS(3400), - [anon_sym__Atomic] = ACTIONS(3400), - [anon_sym__Noreturn] = ACTIONS(3400), - [anon_sym_noreturn] = ACTIONS(3400), - [anon_sym_mutable] = ACTIONS(3400), - [anon_sym_constinit] = ACTIONS(3400), - [anon_sym_consteval] = ACTIONS(3400), - [sym_primitive_type] = ACTIONS(3400), - [anon_sym_enum] = ACTIONS(3400), - [anon_sym_class] = ACTIONS(3400), - [anon_sym_struct] = ACTIONS(3400), - [anon_sym_union] = ACTIONS(3400), - [anon_sym_if] = ACTIONS(3400), - [anon_sym_switch] = ACTIONS(3400), - [anon_sym_case] = ACTIONS(3400), - [anon_sym_default] = ACTIONS(3400), - [anon_sym_while] = ACTIONS(3400), - [anon_sym_do] = ACTIONS(3400), - [anon_sym_for] = ACTIONS(3400), - [anon_sym_return] = ACTIONS(3400), - [anon_sym_break] = ACTIONS(3400), - [anon_sym_continue] = ACTIONS(3400), - [anon_sym_goto] = ACTIONS(3400), - [anon_sym___try] = ACTIONS(3400), - [anon_sym___leave] = ACTIONS(3400), - [anon_sym_not] = ACTIONS(3400), - [anon_sym_compl] = ACTIONS(3400), - [anon_sym_DASH_DASH] = ACTIONS(3402), - [anon_sym_PLUS_PLUS] = ACTIONS(3402), - [anon_sym_sizeof] = ACTIONS(3400), - [anon_sym___alignof__] = ACTIONS(3400), - [anon_sym___alignof] = ACTIONS(3400), - [anon_sym__alignof] = ACTIONS(3400), - [anon_sym_alignof] = ACTIONS(3400), - [anon_sym__Alignof] = ACTIONS(3400), - [anon_sym_offsetof] = ACTIONS(3400), - [anon_sym__Generic] = ACTIONS(3400), - [anon_sym_asm] = ACTIONS(3400), - [anon_sym___asm__] = ACTIONS(3400), - [sym_number_literal] = ACTIONS(3402), - [anon_sym_L_SQUOTE] = ACTIONS(3402), - [anon_sym_u_SQUOTE] = ACTIONS(3402), - [anon_sym_U_SQUOTE] = ACTIONS(3402), - [anon_sym_u8_SQUOTE] = ACTIONS(3402), - [anon_sym_SQUOTE] = ACTIONS(3402), - [anon_sym_L_DQUOTE] = ACTIONS(3402), - [anon_sym_u_DQUOTE] = ACTIONS(3402), - [anon_sym_U_DQUOTE] = ACTIONS(3402), - [anon_sym_u8_DQUOTE] = ACTIONS(3402), - [anon_sym_DQUOTE] = ACTIONS(3402), - [sym_true] = ACTIONS(3400), - [sym_false] = ACTIONS(3400), - [anon_sym_NULL] = ACTIONS(3400), - [anon_sym_nullptr] = ACTIONS(3400), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3400), - [anon_sym_decltype] = ACTIONS(3400), - [anon_sym_virtual] = ACTIONS(3400), - [anon_sym_alignas] = ACTIONS(3400), - [anon_sym_explicit] = ACTIONS(3400), - [anon_sym_typename] = ACTIONS(3400), - [anon_sym_template] = ACTIONS(3400), - [anon_sym_operator] = ACTIONS(3400), - [anon_sym_try] = ACTIONS(3400), - [anon_sym_delete] = ACTIONS(3400), - [anon_sym_throw] = ACTIONS(3400), - [anon_sym_namespace] = ACTIONS(3400), - [anon_sym_using] = ACTIONS(3400), - [anon_sym_static_assert] = ACTIONS(3400), - [anon_sym_concept] = ACTIONS(3400), - [anon_sym_co_return] = ACTIONS(3400), - [anon_sym_co_yield] = ACTIONS(3400), - [anon_sym_R_DQUOTE] = ACTIONS(3402), - [anon_sym_LR_DQUOTE] = ACTIONS(3402), - [anon_sym_uR_DQUOTE] = ACTIONS(3402), - [anon_sym_UR_DQUOTE] = ACTIONS(3402), - [anon_sym_u8R_DQUOTE] = ACTIONS(3402), - [anon_sym_co_await] = ACTIONS(3400), - [anon_sym_new] = ACTIONS(3400), - [anon_sym_requires] = ACTIONS(3400), - [sym_this] = ACTIONS(3400), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3402), - [sym_semgrep_named_ellipsis] = ACTIONS(3402), - }, - [684] = { - [sym_identifier] = ACTIONS(3503), - [aux_sym_preproc_include_token1] = ACTIONS(3503), - [aux_sym_preproc_def_token1] = ACTIONS(3503), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3505), - [aux_sym_preproc_if_token1] = ACTIONS(3503), - [aux_sym_preproc_if_token2] = ACTIONS(3503), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3503), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3503), - [sym_preproc_directive] = ACTIONS(3503), - [anon_sym_LPAREN2] = ACTIONS(3505), - [anon_sym_BANG] = ACTIONS(3505), - [anon_sym_TILDE] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3503), - [anon_sym_PLUS] = ACTIONS(3503), - [anon_sym_STAR] = ACTIONS(3505), - [anon_sym_AMP_AMP] = ACTIONS(3505), - [anon_sym_AMP] = ACTIONS(3503), - [anon_sym_SEMI] = ACTIONS(3505), - [anon_sym___extension__] = ACTIONS(3503), - [anon_sym_typedef] = ACTIONS(3503), - [anon_sym_extern] = ACTIONS(3503), - [anon_sym___attribute__] = ACTIONS(3503), - [anon_sym_COLON_COLON] = ACTIONS(3505), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3505), - [anon_sym___declspec] = ACTIONS(3503), - [anon_sym___based] = ACTIONS(3503), - [anon_sym___cdecl] = ACTIONS(3503), - [anon_sym___clrcall] = ACTIONS(3503), - [anon_sym___stdcall] = ACTIONS(3503), - [anon_sym___fastcall] = ACTIONS(3503), - [anon_sym___thiscall] = ACTIONS(3503), - [anon_sym___vectorcall] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_signed] = ACTIONS(3503), - [anon_sym_unsigned] = ACTIONS(3503), - [anon_sym_long] = ACTIONS(3503), - [anon_sym_short] = ACTIONS(3503), - [anon_sym_LBRACK] = ACTIONS(3503), - [anon_sym_static] = ACTIONS(3503), - [anon_sym_register] = ACTIONS(3503), - [anon_sym_inline] = ACTIONS(3503), - [anon_sym___inline] = ACTIONS(3503), - [anon_sym___inline__] = ACTIONS(3503), - [anon_sym___forceinline] = ACTIONS(3503), - [anon_sym_thread_local] = ACTIONS(3503), - [anon_sym___thread] = ACTIONS(3503), - [anon_sym_const] = ACTIONS(3503), - [anon_sym_constexpr] = ACTIONS(3503), - [anon_sym_volatile] = ACTIONS(3503), - [anon_sym_restrict] = ACTIONS(3503), - [anon_sym___restrict__] = ACTIONS(3503), - [anon_sym__Atomic] = ACTIONS(3503), - [anon_sym__Noreturn] = ACTIONS(3503), - [anon_sym_noreturn] = ACTIONS(3503), - [anon_sym_mutable] = ACTIONS(3503), - [anon_sym_constinit] = ACTIONS(3503), - [anon_sym_consteval] = ACTIONS(3503), - [sym_primitive_type] = ACTIONS(3503), - [anon_sym_enum] = ACTIONS(3503), - [anon_sym_class] = ACTIONS(3503), - [anon_sym_struct] = ACTIONS(3503), - [anon_sym_union] = ACTIONS(3503), - [anon_sym_if] = ACTIONS(3503), - [anon_sym_switch] = ACTIONS(3503), - [anon_sym_case] = ACTIONS(3503), - [anon_sym_default] = ACTIONS(3503), - [anon_sym_while] = ACTIONS(3503), - [anon_sym_do] = ACTIONS(3503), - [anon_sym_for] = ACTIONS(3503), - [anon_sym_return] = ACTIONS(3503), - [anon_sym_break] = ACTIONS(3503), - [anon_sym_continue] = ACTIONS(3503), - [anon_sym_goto] = ACTIONS(3503), - [anon_sym___try] = ACTIONS(3503), - [anon_sym___leave] = ACTIONS(3503), - [anon_sym_not] = ACTIONS(3503), - [anon_sym_compl] = ACTIONS(3503), - [anon_sym_DASH_DASH] = ACTIONS(3505), - [anon_sym_PLUS_PLUS] = ACTIONS(3505), - [anon_sym_sizeof] = ACTIONS(3503), - [anon_sym___alignof__] = ACTIONS(3503), - [anon_sym___alignof] = ACTIONS(3503), - [anon_sym__alignof] = ACTIONS(3503), - [anon_sym_alignof] = ACTIONS(3503), - [anon_sym__Alignof] = ACTIONS(3503), - [anon_sym_offsetof] = ACTIONS(3503), - [anon_sym__Generic] = ACTIONS(3503), - [anon_sym_asm] = ACTIONS(3503), - [anon_sym___asm__] = ACTIONS(3503), - [sym_number_literal] = ACTIONS(3505), - [anon_sym_L_SQUOTE] = ACTIONS(3505), - [anon_sym_u_SQUOTE] = ACTIONS(3505), - [anon_sym_U_SQUOTE] = ACTIONS(3505), - [anon_sym_u8_SQUOTE] = ACTIONS(3505), - [anon_sym_SQUOTE] = ACTIONS(3505), - [anon_sym_L_DQUOTE] = ACTIONS(3505), - [anon_sym_u_DQUOTE] = ACTIONS(3505), - [anon_sym_U_DQUOTE] = ACTIONS(3505), - [anon_sym_u8_DQUOTE] = ACTIONS(3505), - [anon_sym_DQUOTE] = ACTIONS(3505), - [sym_true] = ACTIONS(3503), - [sym_false] = ACTIONS(3503), - [anon_sym_NULL] = ACTIONS(3503), - [anon_sym_nullptr] = ACTIONS(3503), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3503), - [anon_sym_decltype] = ACTIONS(3503), - [anon_sym_virtual] = ACTIONS(3503), - [anon_sym_alignas] = ACTIONS(3503), - [anon_sym_explicit] = ACTIONS(3503), - [anon_sym_typename] = ACTIONS(3503), - [anon_sym_template] = ACTIONS(3503), - [anon_sym_operator] = ACTIONS(3503), - [anon_sym_try] = ACTIONS(3503), - [anon_sym_delete] = ACTIONS(3503), - [anon_sym_throw] = ACTIONS(3503), - [anon_sym_namespace] = ACTIONS(3503), - [anon_sym_using] = ACTIONS(3503), - [anon_sym_static_assert] = ACTIONS(3503), - [anon_sym_concept] = ACTIONS(3503), - [anon_sym_co_return] = ACTIONS(3503), - [anon_sym_co_yield] = ACTIONS(3503), - [anon_sym_R_DQUOTE] = ACTIONS(3505), - [anon_sym_LR_DQUOTE] = ACTIONS(3505), - [anon_sym_uR_DQUOTE] = ACTIONS(3505), - [anon_sym_UR_DQUOTE] = ACTIONS(3505), - [anon_sym_u8R_DQUOTE] = ACTIONS(3505), - [anon_sym_co_await] = ACTIONS(3503), - [anon_sym_new] = ACTIONS(3503), - [anon_sym_requires] = ACTIONS(3503), - [sym_this] = ACTIONS(3503), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3505), - [sym_semgrep_named_ellipsis] = ACTIONS(3505), - }, - [685] = { - [sym_identifier] = ACTIONS(3404), - [aux_sym_preproc_include_token1] = ACTIONS(3404), - [aux_sym_preproc_def_token1] = ACTIONS(3404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3406), - [aux_sym_preproc_if_token1] = ACTIONS(3404), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3404), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3404), - [sym_preproc_directive] = ACTIONS(3404), - [anon_sym_LPAREN2] = ACTIONS(3406), - [anon_sym_BANG] = ACTIONS(3406), - [anon_sym_TILDE] = ACTIONS(3406), - [anon_sym_DASH] = ACTIONS(3404), - [anon_sym_PLUS] = ACTIONS(3404), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_AMP_AMP] = ACTIONS(3406), - [anon_sym_AMP] = ACTIONS(3404), - [anon_sym_SEMI] = ACTIONS(3406), - [anon_sym___extension__] = ACTIONS(3404), - [anon_sym_typedef] = ACTIONS(3404), - [anon_sym_extern] = ACTIONS(3404), - [anon_sym___attribute__] = ACTIONS(3404), - [anon_sym_COLON_COLON] = ACTIONS(3406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3406), - [anon_sym___declspec] = ACTIONS(3404), - [anon_sym___based] = ACTIONS(3404), - [anon_sym___cdecl] = ACTIONS(3404), - [anon_sym___clrcall] = ACTIONS(3404), - [anon_sym___stdcall] = ACTIONS(3404), - [anon_sym___fastcall] = ACTIONS(3404), - [anon_sym___thiscall] = ACTIONS(3404), - [anon_sym___vectorcall] = ACTIONS(3404), - [anon_sym_LBRACE] = ACTIONS(3406), - [anon_sym_RBRACE] = ACTIONS(3406), - [anon_sym_signed] = ACTIONS(3404), - [anon_sym_unsigned] = ACTIONS(3404), - [anon_sym_long] = ACTIONS(3404), - [anon_sym_short] = ACTIONS(3404), - [anon_sym_LBRACK] = ACTIONS(3404), - [anon_sym_static] = ACTIONS(3404), - [anon_sym_register] = ACTIONS(3404), - [anon_sym_inline] = ACTIONS(3404), - [anon_sym___inline] = ACTIONS(3404), - [anon_sym___inline__] = ACTIONS(3404), - [anon_sym___forceinline] = ACTIONS(3404), - [anon_sym_thread_local] = ACTIONS(3404), - [anon_sym___thread] = ACTIONS(3404), - [anon_sym_const] = ACTIONS(3404), - [anon_sym_constexpr] = ACTIONS(3404), - [anon_sym_volatile] = ACTIONS(3404), - [anon_sym_restrict] = ACTIONS(3404), - [anon_sym___restrict__] = ACTIONS(3404), - [anon_sym__Atomic] = ACTIONS(3404), - [anon_sym__Noreturn] = ACTIONS(3404), - [anon_sym_noreturn] = ACTIONS(3404), - [anon_sym_mutable] = ACTIONS(3404), - [anon_sym_constinit] = ACTIONS(3404), - [anon_sym_consteval] = ACTIONS(3404), - [sym_primitive_type] = ACTIONS(3404), - [anon_sym_enum] = ACTIONS(3404), - [anon_sym_class] = ACTIONS(3404), - [anon_sym_struct] = ACTIONS(3404), - [anon_sym_union] = ACTIONS(3404), - [anon_sym_if] = ACTIONS(3404), - [anon_sym_switch] = ACTIONS(3404), - [anon_sym_case] = ACTIONS(3404), - [anon_sym_default] = ACTIONS(3404), - [anon_sym_while] = ACTIONS(3404), - [anon_sym_do] = ACTIONS(3404), - [anon_sym_for] = ACTIONS(3404), - [anon_sym_return] = ACTIONS(3404), - [anon_sym_break] = ACTIONS(3404), - [anon_sym_continue] = ACTIONS(3404), - [anon_sym_goto] = ACTIONS(3404), - [anon_sym___try] = ACTIONS(3404), - [anon_sym___leave] = ACTIONS(3404), - [anon_sym_not] = ACTIONS(3404), - [anon_sym_compl] = ACTIONS(3404), - [anon_sym_DASH_DASH] = ACTIONS(3406), - [anon_sym_PLUS_PLUS] = ACTIONS(3406), - [anon_sym_sizeof] = ACTIONS(3404), - [anon_sym___alignof__] = ACTIONS(3404), - [anon_sym___alignof] = ACTIONS(3404), - [anon_sym__alignof] = ACTIONS(3404), - [anon_sym_alignof] = ACTIONS(3404), - [anon_sym__Alignof] = ACTIONS(3404), - [anon_sym_offsetof] = ACTIONS(3404), - [anon_sym__Generic] = ACTIONS(3404), - [anon_sym_asm] = ACTIONS(3404), - [anon_sym___asm__] = ACTIONS(3404), - [sym_number_literal] = ACTIONS(3406), - [anon_sym_L_SQUOTE] = ACTIONS(3406), - [anon_sym_u_SQUOTE] = ACTIONS(3406), - [anon_sym_U_SQUOTE] = ACTIONS(3406), - [anon_sym_u8_SQUOTE] = ACTIONS(3406), - [anon_sym_SQUOTE] = ACTIONS(3406), - [anon_sym_L_DQUOTE] = ACTIONS(3406), - [anon_sym_u_DQUOTE] = ACTIONS(3406), - [anon_sym_U_DQUOTE] = ACTIONS(3406), - [anon_sym_u8_DQUOTE] = ACTIONS(3406), - [anon_sym_DQUOTE] = ACTIONS(3406), - [sym_true] = ACTIONS(3404), - [sym_false] = ACTIONS(3404), - [anon_sym_NULL] = ACTIONS(3404), - [anon_sym_nullptr] = ACTIONS(3404), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3404), - [anon_sym_decltype] = ACTIONS(3404), - [anon_sym_virtual] = ACTIONS(3404), - [anon_sym_alignas] = ACTIONS(3404), - [anon_sym_explicit] = ACTIONS(3404), - [anon_sym_typename] = ACTIONS(3404), - [anon_sym_template] = ACTIONS(3404), - [anon_sym_operator] = ACTIONS(3404), - [anon_sym_try] = ACTIONS(3404), - [anon_sym_delete] = ACTIONS(3404), - [anon_sym_throw] = ACTIONS(3404), - [anon_sym_namespace] = ACTIONS(3404), - [anon_sym_using] = ACTIONS(3404), - [anon_sym_static_assert] = ACTIONS(3404), - [anon_sym_concept] = ACTIONS(3404), - [anon_sym_co_return] = ACTIONS(3404), - [anon_sym_co_yield] = ACTIONS(3404), - [anon_sym_R_DQUOTE] = ACTIONS(3406), - [anon_sym_LR_DQUOTE] = ACTIONS(3406), - [anon_sym_uR_DQUOTE] = ACTIONS(3406), - [anon_sym_UR_DQUOTE] = ACTIONS(3406), - [anon_sym_u8R_DQUOTE] = ACTIONS(3406), - [anon_sym_co_await] = ACTIONS(3404), - [anon_sym_new] = ACTIONS(3404), - [anon_sym_requires] = ACTIONS(3404), - [sym_this] = ACTIONS(3404), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3406), - [sym_semgrep_named_ellipsis] = ACTIONS(3406), - }, - [686] = { - [sym_identifier] = ACTIONS(3515), - [aux_sym_preproc_include_token1] = ACTIONS(3515), - [aux_sym_preproc_def_token1] = ACTIONS(3515), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3517), - [aux_sym_preproc_if_token1] = ACTIONS(3515), - [aux_sym_preproc_if_token2] = ACTIONS(3515), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3515), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3515), - [sym_preproc_directive] = ACTIONS(3515), - [anon_sym_LPAREN2] = ACTIONS(3517), - [anon_sym_BANG] = ACTIONS(3517), - [anon_sym_TILDE] = ACTIONS(3517), - [anon_sym_DASH] = ACTIONS(3515), - [anon_sym_PLUS] = ACTIONS(3515), - [anon_sym_STAR] = ACTIONS(3517), - [anon_sym_AMP_AMP] = ACTIONS(3517), - [anon_sym_AMP] = ACTIONS(3515), - [anon_sym_SEMI] = ACTIONS(3517), - [anon_sym___extension__] = ACTIONS(3515), - [anon_sym_typedef] = ACTIONS(3515), - [anon_sym_extern] = ACTIONS(3515), - [anon_sym___attribute__] = ACTIONS(3515), - [anon_sym_COLON_COLON] = ACTIONS(3517), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3517), - [anon_sym___declspec] = ACTIONS(3515), - [anon_sym___based] = ACTIONS(3515), - [anon_sym___cdecl] = ACTIONS(3515), - [anon_sym___clrcall] = ACTIONS(3515), - [anon_sym___stdcall] = ACTIONS(3515), - [anon_sym___fastcall] = ACTIONS(3515), - [anon_sym___thiscall] = ACTIONS(3515), - [anon_sym___vectorcall] = ACTIONS(3515), - [anon_sym_LBRACE] = ACTIONS(3517), - [anon_sym_signed] = ACTIONS(3515), - [anon_sym_unsigned] = ACTIONS(3515), - [anon_sym_long] = ACTIONS(3515), - [anon_sym_short] = ACTIONS(3515), - [anon_sym_LBRACK] = ACTIONS(3515), - [anon_sym_static] = ACTIONS(3515), - [anon_sym_register] = ACTIONS(3515), - [anon_sym_inline] = ACTIONS(3515), - [anon_sym___inline] = ACTIONS(3515), - [anon_sym___inline__] = ACTIONS(3515), - [anon_sym___forceinline] = ACTIONS(3515), - [anon_sym_thread_local] = ACTIONS(3515), - [anon_sym___thread] = ACTIONS(3515), - [anon_sym_const] = ACTIONS(3515), - [anon_sym_constexpr] = ACTIONS(3515), - [anon_sym_volatile] = ACTIONS(3515), - [anon_sym_restrict] = ACTIONS(3515), - [anon_sym___restrict__] = ACTIONS(3515), - [anon_sym__Atomic] = ACTIONS(3515), - [anon_sym__Noreturn] = ACTIONS(3515), - [anon_sym_noreturn] = ACTIONS(3515), - [anon_sym_mutable] = ACTIONS(3515), - [anon_sym_constinit] = ACTIONS(3515), - [anon_sym_consteval] = ACTIONS(3515), - [sym_primitive_type] = ACTIONS(3515), - [anon_sym_enum] = ACTIONS(3515), - [anon_sym_class] = ACTIONS(3515), - [anon_sym_struct] = ACTIONS(3515), - [anon_sym_union] = ACTIONS(3515), - [anon_sym_if] = ACTIONS(3515), - [anon_sym_switch] = ACTIONS(3515), - [anon_sym_case] = ACTIONS(3515), - [anon_sym_default] = ACTIONS(3515), - [anon_sym_while] = ACTIONS(3515), - [anon_sym_do] = ACTIONS(3515), - [anon_sym_for] = ACTIONS(3515), - [anon_sym_return] = ACTIONS(3515), - [anon_sym_break] = ACTIONS(3515), - [anon_sym_continue] = ACTIONS(3515), - [anon_sym_goto] = ACTIONS(3515), - [anon_sym___try] = ACTIONS(3515), - [anon_sym___leave] = ACTIONS(3515), - [anon_sym_not] = ACTIONS(3515), - [anon_sym_compl] = ACTIONS(3515), - [anon_sym_DASH_DASH] = ACTIONS(3517), - [anon_sym_PLUS_PLUS] = ACTIONS(3517), - [anon_sym_sizeof] = ACTIONS(3515), - [anon_sym___alignof__] = ACTIONS(3515), - [anon_sym___alignof] = ACTIONS(3515), - [anon_sym__alignof] = ACTIONS(3515), - [anon_sym_alignof] = ACTIONS(3515), - [anon_sym__Alignof] = ACTIONS(3515), - [anon_sym_offsetof] = ACTIONS(3515), - [anon_sym__Generic] = ACTIONS(3515), - [anon_sym_asm] = ACTIONS(3515), - [anon_sym___asm__] = ACTIONS(3515), - [sym_number_literal] = ACTIONS(3517), - [anon_sym_L_SQUOTE] = ACTIONS(3517), - [anon_sym_u_SQUOTE] = ACTIONS(3517), - [anon_sym_U_SQUOTE] = ACTIONS(3517), - [anon_sym_u8_SQUOTE] = ACTIONS(3517), - [anon_sym_SQUOTE] = ACTIONS(3517), - [anon_sym_L_DQUOTE] = ACTIONS(3517), - [anon_sym_u_DQUOTE] = ACTIONS(3517), - [anon_sym_U_DQUOTE] = ACTIONS(3517), - [anon_sym_u8_DQUOTE] = ACTIONS(3517), - [anon_sym_DQUOTE] = ACTIONS(3517), - [sym_true] = ACTIONS(3515), - [sym_false] = ACTIONS(3515), - [anon_sym_NULL] = ACTIONS(3515), - [anon_sym_nullptr] = ACTIONS(3515), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3515), - [anon_sym_decltype] = ACTIONS(3515), - [anon_sym_virtual] = ACTIONS(3515), - [anon_sym_alignas] = ACTIONS(3515), - [anon_sym_explicit] = ACTIONS(3515), - [anon_sym_typename] = ACTIONS(3515), - [anon_sym_template] = ACTIONS(3515), - [anon_sym_operator] = ACTIONS(3515), - [anon_sym_try] = ACTIONS(3515), - [anon_sym_delete] = ACTIONS(3515), - [anon_sym_throw] = ACTIONS(3515), - [anon_sym_namespace] = ACTIONS(3515), - [anon_sym_using] = ACTIONS(3515), - [anon_sym_static_assert] = ACTIONS(3515), - [anon_sym_concept] = ACTIONS(3515), - [anon_sym_co_return] = ACTIONS(3515), - [anon_sym_co_yield] = ACTIONS(3515), - [anon_sym_R_DQUOTE] = ACTIONS(3517), - [anon_sym_LR_DQUOTE] = ACTIONS(3517), - [anon_sym_uR_DQUOTE] = ACTIONS(3517), - [anon_sym_UR_DQUOTE] = ACTIONS(3517), - [anon_sym_u8R_DQUOTE] = ACTIONS(3517), - [anon_sym_co_await] = ACTIONS(3515), - [anon_sym_new] = ACTIONS(3515), - [anon_sym_requires] = ACTIONS(3515), - [sym_this] = ACTIONS(3515), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3517), - [sym_semgrep_named_ellipsis] = ACTIONS(3517), - }, - [687] = { - [sym_identifier] = ACTIONS(3339), - [aux_sym_preproc_include_token1] = ACTIONS(3339), - [aux_sym_preproc_def_token1] = ACTIONS(3339), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3341), - [aux_sym_preproc_if_token1] = ACTIONS(3339), - [aux_sym_preproc_if_token2] = ACTIONS(3339), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3339), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3339), - [sym_preproc_directive] = ACTIONS(3339), - [anon_sym_LPAREN2] = ACTIONS(3341), - [anon_sym_BANG] = ACTIONS(3341), - [anon_sym_TILDE] = ACTIONS(3341), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_STAR] = ACTIONS(3341), - [anon_sym_AMP_AMP] = ACTIONS(3341), - [anon_sym_AMP] = ACTIONS(3339), - [anon_sym_SEMI] = ACTIONS(3341), - [anon_sym___extension__] = ACTIONS(3339), - [anon_sym_typedef] = ACTIONS(3339), - [anon_sym_extern] = ACTIONS(3339), - [anon_sym___attribute__] = ACTIONS(3339), - [anon_sym_COLON_COLON] = ACTIONS(3341), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3341), - [anon_sym___declspec] = ACTIONS(3339), - [anon_sym___based] = ACTIONS(3339), - [anon_sym___cdecl] = ACTIONS(3339), - [anon_sym___clrcall] = ACTIONS(3339), - [anon_sym___stdcall] = ACTIONS(3339), - [anon_sym___fastcall] = ACTIONS(3339), - [anon_sym___thiscall] = ACTIONS(3339), - [anon_sym___vectorcall] = ACTIONS(3339), - [anon_sym_LBRACE] = ACTIONS(3341), - [anon_sym_signed] = ACTIONS(3339), - [anon_sym_unsigned] = ACTIONS(3339), - [anon_sym_long] = ACTIONS(3339), - [anon_sym_short] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3339), - [anon_sym_static] = ACTIONS(3339), - [anon_sym_register] = ACTIONS(3339), - [anon_sym_inline] = ACTIONS(3339), - [anon_sym___inline] = ACTIONS(3339), - [anon_sym___inline__] = ACTIONS(3339), - [anon_sym___forceinline] = ACTIONS(3339), - [anon_sym_thread_local] = ACTIONS(3339), - [anon_sym___thread] = ACTIONS(3339), - [anon_sym_const] = ACTIONS(3339), - [anon_sym_constexpr] = ACTIONS(3339), - [anon_sym_volatile] = ACTIONS(3339), - [anon_sym_restrict] = ACTIONS(3339), - [anon_sym___restrict__] = ACTIONS(3339), - [anon_sym__Atomic] = ACTIONS(3339), - [anon_sym__Noreturn] = ACTIONS(3339), - [anon_sym_noreturn] = ACTIONS(3339), - [anon_sym_mutable] = ACTIONS(3339), - [anon_sym_constinit] = ACTIONS(3339), - [anon_sym_consteval] = ACTIONS(3339), - [sym_primitive_type] = ACTIONS(3339), - [anon_sym_enum] = ACTIONS(3339), - [anon_sym_class] = ACTIONS(3339), - [anon_sym_struct] = ACTIONS(3339), - [anon_sym_union] = ACTIONS(3339), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_switch] = ACTIONS(3339), - [anon_sym_case] = ACTIONS(3339), - [anon_sym_default] = ACTIONS(3339), - [anon_sym_while] = ACTIONS(3339), - [anon_sym_do] = ACTIONS(3339), - [anon_sym_for] = ACTIONS(3339), - [anon_sym_return] = ACTIONS(3339), - [anon_sym_break] = ACTIONS(3339), - [anon_sym_continue] = ACTIONS(3339), - [anon_sym_goto] = ACTIONS(3339), - [anon_sym___try] = ACTIONS(3339), - [anon_sym___leave] = ACTIONS(3339), - [anon_sym_not] = ACTIONS(3339), - [anon_sym_compl] = ACTIONS(3339), - [anon_sym_DASH_DASH] = ACTIONS(3341), - [anon_sym_PLUS_PLUS] = ACTIONS(3341), - [anon_sym_sizeof] = ACTIONS(3339), - [anon_sym___alignof__] = ACTIONS(3339), - [anon_sym___alignof] = ACTIONS(3339), - [anon_sym__alignof] = ACTIONS(3339), - [anon_sym_alignof] = ACTIONS(3339), - [anon_sym__Alignof] = ACTIONS(3339), - [anon_sym_offsetof] = ACTIONS(3339), - [anon_sym__Generic] = ACTIONS(3339), - [anon_sym_asm] = ACTIONS(3339), - [anon_sym___asm__] = ACTIONS(3339), - [sym_number_literal] = ACTIONS(3341), - [anon_sym_L_SQUOTE] = ACTIONS(3341), - [anon_sym_u_SQUOTE] = ACTIONS(3341), - [anon_sym_U_SQUOTE] = ACTIONS(3341), - [anon_sym_u8_SQUOTE] = ACTIONS(3341), - [anon_sym_SQUOTE] = ACTIONS(3341), - [anon_sym_L_DQUOTE] = ACTIONS(3341), - [anon_sym_u_DQUOTE] = ACTIONS(3341), - [anon_sym_U_DQUOTE] = ACTIONS(3341), - [anon_sym_u8_DQUOTE] = ACTIONS(3341), - [anon_sym_DQUOTE] = ACTIONS(3341), - [sym_true] = ACTIONS(3339), - [sym_false] = ACTIONS(3339), - [anon_sym_NULL] = ACTIONS(3339), - [anon_sym_nullptr] = ACTIONS(3339), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3339), - [anon_sym_decltype] = ACTIONS(3339), - [anon_sym_virtual] = ACTIONS(3339), - [anon_sym_alignas] = ACTIONS(3339), - [anon_sym_explicit] = ACTIONS(3339), - [anon_sym_typename] = ACTIONS(3339), - [anon_sym_template] = ACTIONS(3339), - [anon_sym_operator] = ACTIONS(3339), - [anon_sym_try] = ACTIONS(3339), - [anon_sym_delete] = ACTIONS(3339), - [anon_sym_throw] = ACTIONS(3339), - [anon_sym_namespace] = ACTIONS(3339), - [anon_sym_using] = ACTIONS(3339), - [anon_sym_static_assert] = ACTIONS(3339), - [anon_sym_concept] = ACTIONS(3339), - [anon_sym_co_return] = ACTIONS(3339), - [anon_sym_co_yield] = ACTIONS(3339), - [anon_sym_R_DQUOTE] = ACTIONS(3341), - [anon_sym_LR_DQUOTE] = ACTIONS(3341), - [anon_sym_uR_DQUOTE] = ACTIONS(3341), - [anon_sym_UR_DQUOTE] = ACTIONS(3341), - [anon_sym_u8R_DQUOTE] = ACTIONS(3341), - [anon_sym_co_await] = ACTIONS(3339), - [anon_sym_new] = ACTIONS(3339), - [anon_sym_requires] = ACTIONS(3339), - [sym_this] = ACTIONS(3339), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3341), - [sym_semgrep_named_ellipsis] = ACTIONS(3341), - }, - [688] = { - [sym_identifier] = ACTIONS(3634), - [aux_sym_preproc_include_token1] = ACTIONS(3634), - [aux_sym_preproc_def_token1] = ACTIONS(3634), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3636), - [aux_sym_preproc_if_token1] = ACTIONS(3634), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3634), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3634), - [sym_preproc_directive] = ACTIONS(3634), - [anon_sym_LPAREN2] = ACTIONS(3636), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_TILDE] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3634), - [anon_sym_PLUS] = ACTIONS(3634), - [anon_sym_STAR] = ACTIONS(3636), - [anon_sym_AMP_AMP] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3634), - [anon_sym_SEMI] = ACTIONS(3636), - [anon_sym___extension__] = ACTIONS(3634), - [anon_sym_typedef] = ACTIONS(3634), - [anon_sym_extern] = ACTIONS(3634), - [anon_sym___attribute__] = ACTIONS(3634), - [anon_sym_COLON_COLON] = ACTIONS(3636), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3636), - [anon_sym___declspec] = ACTIONS(3634), - [anon_sym___based] = ACTIONS(3634), - [anon_sym___cdecl] = ACTIONS(3634), - [anon_sym___clrcall] = ACTIONS(3634), - [anon_sym___stdcall] = ACTIONS(3634), - [anon_sym___fastcall] = ACTIONS(3634), - [anon_sym___thiscall] = ACTIONS(3634), - [anon_sym___vectorcall] = ACTIONS(3634), - [anon_sym_LBRACE] = ACTIONS(3636), - [anon_sym_RBRACE] = ACTIONS(3636), - [anon_sym_signed] = ACTIONS(3634), - [anon_sym_unsigned] = ACTIONS(3634), - [anon_sym_long] = ACTIONS(3634), - [anon_sym_short] = ACTIONS(3634), - [anon_sym_LBRACK] = ACTIONS(3634), - [anon_sym_static] = ACTIONS(3634), - [anon_sym_register] = ACTIONS(3634), - [anon_sym_inline] = ACTIONS(3634), - [anon_sym___inline] = ACTIONS(3634), - [anon_sym___inline__] = ACTIONS(3634), - [anon_sym___forceinline] = ACTIONS(3634), - [anon_sym_thread_local] = ACTIONS(3634), - [anon_sym___thread] = ACTIONS(3634), - [anon_sym_const] = ACTIONS(3634), - [anon_sym_constexpr] = ACTIONS(3634), - [anon_sym_volatile] = ACTIONS(3634), - [anon_sym_restrict] = ACTIONS(3634), - [anon_sym___restrict__] = ACTIONS(3634), - [anon_sym__Atomic] = ACTIONS(3634), - [anon_sym__Noreturn] = ACTIONS(3634), - [anon_sym_noreturn] = ACTIONS(3634), - [anon_sym_mutable] = ACTIONS(3634), - [anon_sym_constinit] = ACTIONS(3634), - [anon_sym_consteval] = ACTIONS(3634), - [sym_primitive_type] = ACTIONS(3634), - [anon_sym_enum] = ACTIONS(3634), - [anon_sym_class] = ACTIONS(3634), - [anon_sym_struct] = ACTIONS(3634), - [anon_sym_union] = ACTIONS(3634), - [anon_sym_if] = ACTIONS(3634), - [anon_sym_switch] = ACTIONS(3634), - [anon_sym_case] = ACTIONS(3634), - [anon_sym_default] = ACTIONS(3634), - [anon_sym_while] = ACTIONS(3634), - [anon_sym_do] = ACTIONS(3634), - [anon_sym_for] = ACTIONS(3634), - [anon_sym_return] = ACTIONS(3634), - [anon_sym_break] = ACTIONS(3634), - [anon_sym_continue] = ACTIONS(3634), - [anon_sym_goto] = ACTIONS(3634), - [anon_sym___try] = ACTIONS(3634), - [anon_sym___leave] = ACTIONS(3634), - [anon_sym_not] = ACTIONS(3634), - [anon_sym_compl] = ACTIONS(3634), - [anon_sym_DASH_DASH] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3636), - [anon_sym_sizeof] = ACTIONS(3634), - [anon_sym___alignof__] = ACTIONS(3634), - [anon_sym___alignof] = ACTIONS(3634), - [anon_sym__alignof] = ACTIONS(3634), - [anon_sym_alignof] = ACTIONS(3634), - [anon_sym__Alignof] = ACTIONS(3634), - [anon_sym_offsetof] = ACTIONS(3634), - [anon_sym__Generic] = ACTIONS(3634), - [anon_sym_asm] = ACTIONS(3634), - [anon_sym___asm__] = ACTIONS(3634), - [sym_number_literal] = ACTIONS(3636), - [anon_sym_L_SQUOTE] = ACTIONS(3636), - [anon_sym_u_SQUOTE] = ACTIONS(3636), - [anon_sym_U_SQUOTE] = ACTIONS(3636), - [anon_sym_u8_SQUOTE] = ACTIONS(3636), - [anon_sym_SQUOTE] = ACTIONS(3636), - [anon_sym_L_DQUOTE] = ACTIONS(3636), - [anon_sym_u_DQUOTE] = ACTIONS(3636), - [anon_sym_U_DQUOTE] = ACTIONS(3636), - [anon_sym_u8_DQUOTE] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(3636), - [sym_true] = ACTIONS(3634), - [sym_false] = ACTIONS(3634), - [anon_sym_NULL] = ACTIONS(3634), - [anon_sym_nullptr] = ACTIONS(3634), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3634), - [anon_sym_decltype] = ACTIONS(3634), - [anon_sym_virtual] = ACTIONS(3634), - [anon_sym_alignas] = ACTIONS(3634), - [anon_sym_explicit] = ACTIONS(3634), - [anon_sym_typename] = ACTIONS(3634), - [anon_sym_template] = ACTIONS(3634), - [anon_sym_operator] = ACTIONS(3634), - [anon_sym_try] = ACTIONS(3634), - [anon_sym_delete] = ACTIONS(3634), - [anon_sym_throw] = ACTIONS(3634), - [anon_sym_namespace] = ACTIONS(3634), - [anon_sym_using] = ACTIONS(3634), - [anon_sym_static_assert] = ACTIONS(3634), - [anon_sym_concept] = ACTIONS(3634), - [anon_sym_co_return] = ACTIONS(3634), - [anon_sym_co_yield] = ACTIONS(3634), - [anon_sym_R_DQUOTE] = ACTIONS(3636), - [anon_sym_LR_DQUOTE] = ACTIONS(3636), - [anon_sym_uR_DQUOTE] = ACTIONS(3636), - [anon_sym_UR_DQUOTE] = ACTIONS(3636), - [anon_sym_u8R_DQUOTE] = ACTIONS(3636), - [anon_sym_co_await] = ACTIONS(3634), - [anon_sym_new] = ACTIONS(3634), - [anon_sym_requires] = ACTIONS(3634), - [sym_this] = ACTIONS(3634), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3636), - [sym_semgrep_named_ellipsis] = ACTIONS(3636), - }, - [689] = { - [sym_identifier] = ACTIONS(3408), - [aux_sym_preproc_include_token1] = ACTIONS(3408), - [aux_sym_preproc_def_token1] = ACTIONS(3408), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3410), - [aux_sym_preproc_if_token1] = ACTIONS(3408), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3408), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3408), - [sym_preproc_directive] = ACTIONS(3408), - [anon_sym_LPAREN2] = ACTIONS(3410), - [anon_sym_BANG] = ACTIONS(3410), - [anon_sym_TILDE] = ACTIONS(3410), - [anon_sym_DASH] = ACTIONS(3408), - [anon_sym_PLUS] = ACTIONS(3408), - [anon_sym_STAR] = ACTIONS(3410), - [anon_sym_AMP_AMP] = ACTIONS(3410), - [anon_sym_AMP] = ACTIONS(3408), - [anon_sym_SEMI] = ACTIONS(3410), - [anon_sym___extension__] = ACTIONS(3408), - [anon_sym_typedef] = ACTIONS(3408), - [anon_sym_extern] = ACTIONS(3408), - [anon_sym___attribute__] = ACTIONS(3408), - [anon_sym_COLON_COLON] = ACTIONS(3410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3410), - [anon_sym___declspec] = ACTIONS(3408), - [anon_sym___based] = ACTIONS(3408), - [anon_sym___cdecl] = ACTIONS(3408), - [anon_sym___clrcall] = ACTIONS(3408), - [anon_sym___stdcall] = ACTIONS(3408), - [anon_sym___fastcall] = ACTIONS(3408), - [anon_sym___thiscall] = ACTIONS(3408), - [anon_sym___vectorcall] = ACTIONS(3408), - [anon_sym_LBRACE] = ACTIONS(3410), - [anon_sym_RBRACE] = ACTIONS(3410), - [anon_sym_signed] = ACTIONS(3408), - [anon_sym_unsigned] = ACTIONS(3408), - [anon_sym_long] = ACTIONS(3408), - [anon_sym_short] = ACTIONS(3408), - [anon_sym_LBRACK] = ACTIONS(3408), - [anon_sym_static] = ACTIONS(3408), - [anon_sym_register] = ACTIONS(3408), - [anon_sym_inline] = ACTIONS(3408), - [anon_sym___inline] = ACTIONS(3408), - [anon_sym___inline__] = ACTIONS(3408), - [anon_sym___forceinline] = ACTIONS(3408), - [anon_sym_thread_local] = ACTIONS(3408), - [anon_sym___thread] = ACTIONS(3408), - [anon_sym_const] = ACTIONS(3408), - [anon_sym_constexpr] = ACTIONS(3408), - [anon_sym_volatile] = ACTIONS(3408), - [anon_sym_restrict] = ACTIONS(3408), - [anon_sym___restrict__] = ACTIONS(3408), - [anon_sym__Atomic] = ACTIONS(3408), - [anon_sym__Noreturn] = ACTIONS(3408), - [anon_sym_noreturn] = ACTIONS(3408), - [anon_sym_mutable] = ACTIONS(3408), - [anon_sym_constinit] = ACTIONS(3408), - [anon_sym_consteval] = ACTIONS(3408), - [sym_primitive_type] = ACTIONS(3408), - [anon_sym_enum] = ACTIONS(3408), - [anon_sym_class] = ACTIONS(3408), - [anon_sym_struct] = ACTIONS(3408), - [anon_sym_union] = ACTIONS(3408), - [anon_sym_if] = ACTIONS(3408), - [anon_sym_switch] = ACTIONS(3408), - [anon_sym_case] = ACTIONS(3408), - [anon_sym_default] = ACTIONS(3408), - [anon_sym_while] = ACTIONS(3408), - [anon_sym_do] = ACTIONS(3408), - [anon_sym_for] = ACTIONS(3408), - [anon_sym_return] = ACTIONS(3408), - [anon_sym_break] = ACTIONS(3408), - [anon_sym_continue] = ACTIONS(3408), - [anon_sym_goto] = ACTIONS(3408), - [anon_sym___try] = ACTIONS(3408), - [anon_sym___leave] = ACTIONS(3408), - [anon_sym_not] = ACTIONS(3408), - [anon_sym_compl] = ACTIONS(3408), - [anon_sym_DASH_DASH] = ACTIONS(3410), - [anon_sym_PLUS_PLUS] = ACTIONS(3410), - [anon_sym_sizeof] = ACTIONS(3408), - [anon_sym___alignof__] = ACTIONS(3408), - [anon_sym___alignof] = ACTIONS(3408), - [anon_sym__alignof] = ACTIONS(3408), - [anon_sym_alignof] = ACTIONS(3408), - [anon_sym__Alignof] = ACTIONS(3408), - [anon_sym_offsetof] = ACTIONS(3408), - [anon_sym__Generic] = ACTIONS(3408), - [anon_sym_asm] = ACTIONS(3408), - [anon_sym___asm__] = ACTIONS(3408), - [sym_number_literal] = ACTIONS(3410), - [anon_sym_L_SQUOTE] = ACTIONS(3410), - [anon_sym_u_SQUOTE] = ACTIONS(3410), - [anon_sym_U_SQUOTE] = ACTIONS(3410), - [anon_sym_u8_SQUOTE] = ACTIONS(3410), - [anon_sym_SQUOTE] = ACTIONS(3410), - [anon_sym_L_DQUOTE] = ACTIONS(3410), - [anon_sym_u_DQUOTE] = ACTIONS(3410), - [anon_sym_U_DQUOTE] = ACTIONS(3410), - [anon_sym_u8_DQUOTE] = ACTIONS(3410), - [anon_sym_DQUOTE] = ACTIONS(3410), - [sym_true] = ACTIONS(3408), - [sym_false] = ACTIONS(3408), - [anon_sym_NULL] = ACTIONS(3408), - [anon_sym_nullptr] = ACTIONS(3408), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3408), - [anon_sym_decltype] = ACTIONS(3408), - [anon_sym_virtual] = ACTIONS(3408), - [anon_sym_alignas] = ACTIONS(3408), - [anon_sym_explicit] = ACTIONS(3408), - [anon_sym_typename] = ACTIONS(3408), - [anon_sym_template] = ACTIONS(3408), - [anon_sym_operator] = ACTIONS(3408), - [anon_sym_try] = ACTIONS(3408), - [anon_sym_delete] = ACTIONS(3408), - [anon_sym_throw] = ACTIONS(3408), - [anon_sym_namespace] = ACTIONS(3408), - [anon_sym_using] = ACTIONS(3408), - [anon_sym_static_assert] = ACTIONS(3408), - [anon_sym_concept] = ACTIONS(3408), - [anon_sym_co_return] = ACTIONS(3408), - [anon_sym_co_yield] = ACTIONS(3408), - [anon_sym_R_DQUOTE] = ACTIONS(3410), - [anon_sym_LR_DQUOTE] = ACTIONS(3410), - [anon_sym_uR_DQUOTE] = ACTIONS(3410), - [anon_sym_UR_DQUOTE] = ACTIONS(3410), - [anon_sym_u8R_DQUOTE] = ACTIONS(3410), - [anon_sym_co_await] = ACTIONS(3408), - [anon_sym_new] = ACTIONS(3408), - [anon_sym_requires] = ACTIONS(3408), - [sym_this] = ACTIONS(3408), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3410), - [sym_semgrep_named_ellipsis] = ACTIONS(3410), - }, - [690] = { - [sym_identifier] = ACTIONS(3400), - [aux_sym_preproc_include_token1] = ACTIONS(3400), - [aux_sym_preproc_def_token1] = ACTIONS(3400), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3402), - [aux_sym_preproc_if_token1] = ACTIONS(3400), - [aux_sym_preproc_if_token2] = ACTIONS(3400), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3400), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3400), - [sym_preproc_directive] = ACTIONS(3400), - [anon_sym_LPAREN2] = ACTIONS(3402), - [anon_sym_BANG] = ACTIONS(3402), - [anon_sym_TILDE] = ACTIONS(3402), - [anon_sym_DASH] = ACTIONS(3400), - [anon_sym_PLUS] = ACTIONS(3400), - [anon_sym_STAR] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_AMP] = ACTIONS(3400), - [anon_sym_SEMI] = ACTIONS(3402), - [anon_sym___extension__] = ACTIONS(3400), - [anon_sym_typedef] = ACTIONS(3400), - [anon_sym_extern] = ACTIONS(3400), - [anon_sym___attribute__] = ACTIONS(3400), - [anon_sym_COLON_COLON] = ACTIONS(3402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3402), - [anon_sym___declspec] = ACTIONS(3400), - [anon_sym___based] = ACTIONS(3400), - [anon_sym___cdecl] = ACTIONS(3400), - [anon_sym___clrcall] = ACTIONS(3400), - [anon_sym___stdcall] = ACTIONS(3400), - [anon_sym___fastcall] = ACTIONS(3400), - [anon_sym___thiscall] = ACTIONS(3400), - [anon_sym___vectorcall] = ACTIONS(3400), - [anon_sym_LBRACE] = ACTIONS(3402), - [anon_sym_signed] = ACTIONS(3400), - [anon_sym_unsigned] = ACTIONS(3400), - [anon_sym_long] = ACTIONS(3400), - [anon_sym_short] = ACTIONS(3400), - [anon_sym_LBRACK] = ACTIONS(3400), - [anon_sym_static] = ACTIONS(3400), - [anon_sym_register] = ACTIONS(3400), - [anon_sym_inline] = ACTIONS(3400), - [anon_sym___inline] = ACTIONS(3400), - [anon_sym___inline__] = ACTIONS(3400), - [anon_sym___forceinline] = ACTIONS(3400), - [anon_sym_thread_local] = ACTIONS(3400), - [anon_sym___thread] = ACTIONS(3400), - [anon_sym_const] = ACTIONS(3400), - [anon_sym_constexpr] = ACTIONS(3400), - [anon_sym_volatile] = ACTIONS(3400), - [anon_sym_restrict] = ACTIONS(3400), - [anon_sym___restrict__] = ACTIONS(3400), - [anon_sym__Atomic] = ACTIONS(3400), - [anon_sym__Noreturn] = ACTIONS(3400), - [anon_sym_noreturn] = ACTIONS(3400), - [anon_sym_mutable] = ACTIONS(3400), - [anon_sym_constinit] = ACTIONS(3400), - [anon_sym_consteval] = ACTIONS(3400), - [sym_primitive_type] = ACTIONS(3400), - [anon_sym_enum] = ACTIONS(3400), - [anon_sym_class] = ACTIONS(3400), - [anon_sym_struct] = ACTIONS(3400), - [anon_sym_union] = ACTIONS(3400), - [anon_sym_if] = ACTIONS(3400), - [anon_sym_switch] = ACTIONS(3400), - [anon_sym_case] = ACTIONS(3400), - [anon_sym_default] = ACTIONS(3400), - [anon_sym_while] = ACTIONS(3400), - [anon_sym_do] = ACTIONS(3400), - [anon_sym_for] = ACTIONS(3400), - [anon_sym_return] = ACTIONS(3400), - [anon_sym_break] = ACTIONS(3400), - [anon_sym_continue] = ACTIONS(3400), - [anon_sym_goto] = ACTIONS(3400), - [anon_sym___try] = ACTIONS(3400), - [anon_sym___leave] = ACTIONS(3400), - [anon_sym_not] = ACTIONS(3400), - [anon_sym_compl] = ACTIONS(3400), - [anon_sym_DASH_DASH] = ACTIONS(3402), - [anon_sym_PLUS_PLUS] = ACTIONS(3402), - [anon_sym_sizeof] = ACTIONS(3400), - [anon_sym___alignof__] = ACTIONS(3400), - [anon_sym___alignof] = ACTIONS(3400), - [anon_sym__alignof] = ACTIONS(3400), - [anon_sym_alignof] = ACTIONS(3400), - [anon_sym__Alignof] = ACTIONS(3400), - [anon_sym_offsetof] = ACTIONS(3400), - [anon_sym__Generic] = ACTIONS(3400), - [anon_sym_asm] = ACTIONS(3400), - [anon_sym___asm__] = ACTIONS(3400), - [sym_number_literal] = ACTIONS(3402), - [anon_sym_L_SQUOTE] = ACTIONS(3402), - [anon_sym_u_SQUOTE] = ACTIONS(3402), - [anon_sym_U_SQUOTE] = ACTIONS(3402), - [anon_sym_u8_SQUOTE] = ACTIONS(3402), - [anon_sym_SQUOTE] = ACTIONS(3402), - [anon_sym_L_DQUOTE] = ACTIONS(3402), - [anon_sym_u_DQUOTE] = ACTIONS(3402), - [anon_sym_U_DQUOTE] = ACTIONS(3402), - [anon_sym_u8_DQUOTE] = ACTIONS(3402), - [anon_sym_DQUOTE] = ACTIONS(3402), - [sym_true] = ACTIONS(3400), - [sym_false] = ACTIONS(3400), - [anon_sym_NULL] = ACTIONS(3400), - [anon_sym_nullptr] = ACTIONS(3400), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3400), - [anon_sym_decltype] = ACTIONS(3400), - [anon_sym_virtual] = ACTIONS(3400), - [anon_sym_alignas] = ACTIONS(3400), - [anon_sym_explicit] = ACTIONS(3400), - [anon_sym_typename] = ACTIONS(3400), - [anon_sym_template] = ACTIONS(3400), - [anon_sym_operator] = ACTIONS(3400), - [anon_sym_try] = ACTIONS(3400), - [anon_sym_delete] = ACTIONS(3400), - [anon_sym_throw] = ACTIONS(3400), - [anon_sym_namespace] = ACTIONS(3400), - [anon_sym_using] = ACTIONS(3400), - [anon_sym_static_assert] = ACTIONS(3400), - [anon_sym_concept] = ACTIONS(3400), - [anon_sym_co_return] = ACTIONS(3400), - [anon_sym_co_yield] = ACTIONS(3400), - [anon_sym_R_DQUOTE] = ACTIONS(3402), - [anon_sym_LR_DQUOTE] = ACTIONS(3402), - [anon_sym_uR_DQUOTE] = ACTIONS(3402), - [anon_sym_UR_DQUOTE] = ACTIONS(3402), - [anon_sym_u8R_DQUOTE] = ACTIONS(3402), - [anon_sym_co_await] = ACTIONS(3400), - [anon_sym_new] = ACTIONS(3400), - [anon_sym_requires] = ACTIONS(3400), - [sym_this] = ACTIONS(3400), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3402), - [sym_semgrep_named_ellipsis] = ACTIONS(3402), - }, - [691] = { - [sym_identifier] = ACTIONS(3556), - [aux_sym_preproc_include_token1] = ACTIONS(3556), - [aux_sym_preproc_def_token1] = ACTIONS(3556), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3558), - [aux_sym_preproc_if_token1] = ACTIONS(3556), - [aux_sym_preproc_if_token2] = ACTIONS(3556), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3556), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3556), - [sym_preproc_directive] = ACTIONS(3556), - [anon_sym_LPAREN2] = ACTIONS(3558), - [anon_sym_BANG] = ACTIONS(3558), - [anon_sym_TILDE] = ACTIONS(3558), - [anon_sym_DASH] = ACTIONS(3556), - [anon_sym_PLUS] = ACTIONS(3556), - [anon_sym_STAR] = ACTIONS(3558), - [anon_sym_AMP_AMP] = ACTIONS(3558), - [anon_sym_AMP] = ACTIONS(3556), - [anon_sym_SEMI] = ACTIONS(3558), - [anon_sym___extension__] = ACTIONS(3556), - [anon_sym_typedef] = ACTIONS(3556), - [anon_sym_extern] = ACTIONS(3556), - [anon_sym___attribute__] = ACTIONS(3556), - [anon_sym_COLON_COLON] = ACTIONS(3558), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3558), - [anon_sym___declspec] = ACTIONS(3556), - [anon_sym___based] = ACTIONS(3556), - [anon_sym___cdecl] = ACTIONS(3556), - [anon_sym___clrcall] = ACTIONS(3556), - [anon_sym___stdcall] = ACTIONS(3556), - [anon_sym___fastcall] = ACTIONS(3556), - [anon_sym___thiscall] = ACTIONS(3556), - [anon_sym___vectorcall] = ACTIONS(3556), - [anon_sym_LBRACE] = ACTIONS(3558), - [anon_sym_signed] = ACTIONS(3556), - [anon_sym_unsigned] = ACTIONS(3556), - [anon_sym_long] = ACTIONS(3556), - [anon_sym_short] = ACTIONS(3556), - [anon_sym_LBRACK] = ACTIONS(3556), - [anon_sym_static] = ACTIONS(3556), - [anon_sym_register] = ACTIONS(3556), - [anon_sym_inline] = ACTIONS(3556), - [anon_sym___inline] = ACTIONS(3556), - [anon_sym___inline__] = ACTIONS(3556), - [anon_sym___forceinline] = ACTIONS(3556), - [anon_sym_thread_local] = ACTIONS(3556), - [anon_sym___thread] = ACTIONS(3556), - [anon_sym_const] = ACTIONS(3556), - [anon_sym_constexpr] = ACTIONS(3556), - [anon_sym_volatile] = ACTIONS(3556), - [anon_sym_restrict] = ACTIONS(3556), - [anon_sym___restrict__] = ACTIONS(3556), - [anon_sym__Atomic] = ACTIONS(3556), - [anon_sym__Noreturn] = ACTIONS(3556), - [anon_sym_noreturn] = ACTIONS(3556), - [anon_sym_mutable] = ACTIONS(3556), - [anon_sym_constinit] = ACTIONS(3556), - [anon_sym_consteval] = ACTIONS(3556), - [sym_primitive_type] = ACTIONS(3556), - [anon_sym_enum] = ACTIONS(3556), - [anon_sym_class] = ACTIONS(3556), - [anon_sym_struct] = ACTIONS(3556), - [anon_sym_union] = ACTIONS(3556), - [anon_sym_if] = ACTIONS(3556), - [anon_sym_switch] = ACTIONS(3556), - [anon_sym_case] = ACTIONS(3556), - [anon_sym_default] = ACTIONS(3556), - [anon_sym_while] = ACTIONS(3556), - [anon_sym_do] = ACTIONS(3556), - [anon_sym_for] = ACTIONS(3556), - [anon_sym_return] = ACTIONS(3556), - [anon_sym_break] = ACTIONS(3556), - [anon_sym_continue] = ACTIONS(3556), - [anon_sym_goto] = ACTIONS(3556), - [anon_sym___try] = ACTIONS(3556), - [anon_sym___leave] = ACTIONS(3556), - [anon_sym_not] = ACTIONS(3556), - [anon_sym_compl] = ACTIONS(3556), - [anon_sym_DASH_DASH] = ACTIONS(3558), - [anon_sym_PLUS_PLUS] = ACTIONS(3558), - [anon_sym_sizeof] = ACTIONS(3556), - [anon_sym___alignof__] = ACTIONS(3556), - [anon_sym___alignof] = ACTIONS(3556), - [anon_sym__alignof] = ACTIONS(3556), - [anon_sym_alignof] = ACTIONS(3556), - [anon_sym__Alignof] = ACTIONS(3556), - [anon_sym_offsetof] = ACTIONS(3556), - [anon_sym__Generic] = ACTIONS(3556), - [anon_sym_asm] = ACTIONS(3556), - [anon_sym___asm__] = ACTIONS(3556), - [sym_number_literal] = ACTIONS(3558), - [anon_sym_L_SQUOTE] = ACTIONS(3558), - [anon_sym_u_SQUOTE] = ACTIONS(3558), - [anon_sym_U_SQUOTE] = ACTIONS(3558), - [anon_sym_u8_SQUOTE] = ACTIONS(3558), - [anon_sym_SQUOTE] = ACTIONS(3558), - [anon_sym_L_DQUOTE] = ACTIONS(3558), - [anon_sym_u_DQUOTE] = ACTIONS(3558), - [anon_sym_U_DQUOTE] = ACTIONS(3558), - [anon_sym_u8_DQUOTE] = ACTIONS(3558), - [anon_sym_DQUOTE] = ACTIONS(3558), - [sym_true] = ACTIONS(3556), - [sym_false] = ACTIONS(3556), - [anon_sym_NULL] = ACTIONS(3556), - [anon_sym_nullptr] = ACTIONS(3556), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3556), - [anon_sym_decltype] = ACTIONS(3556), - [anon_sym_virtual] = ACTIONS(3556), - [anon_sym_alignas] = ACTIONS(3556), - [anon_sym_explicit] = ACTIONS(3556), - [anon_sym_typename] = ACTIONS(3556), - [anon_sym_template] = ACTIONS(3556), - [anon_sym_operator] = ACTIONS(3556), - [anon_sym_try] = ACTIONS(3556), - [anon_sym_delete] = ACTIONS(3556), - [anon_sym_throw] = ACTIONS(3556), - [anon_sym_namespace] = ACTIONS(3556), - [anon_sym_using] = ACTIONS(3556), - [anon_sym_static_assert] = ACTIONS(3556), - [anon_sym_concept] = ACTIONS(3556), - [anon_sym_co_return] = ACTIONS(3556), - [anon_sym_co_yield] = ACTIONS(3556), - [anon_sym_R_DQUOTE] = ACTIONS(3558), - [anon_sym_LR_DQUOTE] = ACTIONS(3558), - [anon_sym_uR_DQUOTE] = ACTIONS(3558), - [anon_sym_UR_DQUOTE] = ACTIONS(3558), - [anon_sym_u8R_DQUOTE] = ACTIONS(3558), - [anon_sym_co_await] = ACTIONS(3556), - [anon_sym_new] = ACTIONS(3556), - [anon_sym_requires] = ACTIONS(3556), - [sym_this] = ACTIONS(3556), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3558), - [sym_semgrep_named_ellipsis] = ACTIONS(3558), - }, - [692] = { - [sym_identifier] = ACTIONS(3560), - [aux_sym_preproc_include_token1] = ACTIONS(3560), - [aux_sym_preproc_def_token1] = ACTIONS(3560), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3562), - [aux_sym_preproc_if_token1] = ACTIONS(3560), - [aux_sym_preproc_if_token2] = ACTIONS(3560), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3560), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3560), - [sym_preproc_directive] = ACTIONS(3560), - [anon_sym_LPAREN2] = ACTIONS(3562), - [anon_sym_BANG] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_DASH] = ACTIONS(3560), - [anon_sym_PLUS] = ACTIONS(3560), - [anon_sym_STAR] = ACTIONS(3562), - [anon_sym_AMP_AMP] = ACTIONS(3562), - [anon_sym_AMP] = ACTIONS(3560), - [anon_sym_SEMI] = ACTIONS(3562), - [anon_sym___extension__] = ACTIONS(3560), - [anon_sym_typedef] = ACTIONS(3560), - [anon_sym_extern] = ACTIONS(3560), - [anon_sym___attribute__] = ACTIONS(3560), - [anon_sym_COLON_COLON] = ACTIONS(3562), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3562), - [anon_sym___declspec] = ACTIONS(3560), - [anon_sym___based] = ACTIONS(3560), - [anon_sym___cdecl] = ACTIONS(3560), - [anon_sym___clrcall] = ACTIONS(3560), - [anon_sym___stdcall] = ACTIONS(3560), - [anon_sym___fastcall] = ACTIONS(3560), - [anon_sym___thiscall] = ACTIONS(3560), - [anon_sym___vectorcall] = ACTIONS(3560), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_signed] = ACTIONS(3560), - [anon_sym_unsigned] = ACTIONS(3560), - [anon_sym_long] = ACTIONS(3560), - [anon_sym_short] = ACTIONS(3560), - [anon_sym_LBRACK] = ACTIONS(3560), - [anon_sym_static] = ACTIONS(3560), - [anon_sym_register] = ACTIONS(3560), - [anon_sym_inline] = ACTIONS(3560), - [anon_sym___inline] = ACTIONS(3560), - [anon_sym___inline__] = ACTIONS(3560), - [anon_sym___forceinline] = ACTIONS(3560), - [anon_sym_thread_local] = ACTIONS(3560), - [anon_sym___thread] = ACTIONS(3560), - [anon_sym_const] = ACTIONS(3560), - [anon_sym_constexpr] = ACTIONS(3560), - [anon_sym_volatile] = ACTIONS(3560), - [anon_sym_restrict] = ACTIONS(3560), - [anon_sym___restrict__] = ACTIONS(3560), - [anon_sym__Atomic] = ACTIONS(3560), - [anon_sym__Noreturn] = ACTIONS(3560), - [anon_sym_noreturn] = ACTIONS(3560), - [anon_sym_mutable] = ACTIONS(3560), - [anon_sym_constinit] = ACTIONS(3560), - [anon_sym_consteval] = ACTIONS(3560), - [sym_primitive_type] = ACTIONS(3560), - [anon_sym_enum] = ACTIONS(3560), - [anon_sym_class] = ACTIONS(3560), - [anon_sym_struct] = ACTIONS(3560), - [anon_sym_union] = ACTIONS(3560), - [anon_sym_if] = ACTIONS(3560), - [anon_sym_switch] = ACTIONS(3560), - [anon_sym_case] = ACTIONS(3560), - [anon_sym_default] = ACTIONS(3560), - [anon_sym_while] = ACTIONS(3560), - [anon_sym_do] = ACTIONS(3560), - [anon_sym_for] = ACTIONS(3560), - [anon_sym_return] = ACTIONS(3560), - [anon_sym_break] = ACTIONS(3560), - [anon_sym_continue] = ACTIONS(3560), - [anon_sym_goto] = ACTIONS(3560), - [anon_sym___try] = ACTIONS(3560), - [anon_sym___leave] = ACTIONS(3560), - [anon_sym_not] = ACTIONS(3560), - [anon_sym_compl] = ACTIONS(3560), - [anon_sym_DASH_DASH] = ACTIONS(3562), - [anon_sym_PLUS_PLUS] = ACTIONS(3562), - [anon_sym_sizeof] = ACTIONS(3560), - [anon_sym___alignof__] = ACTIONS(3560), - [anon_sym___alignof] = ACTIONS(3560), - [anon_sym__alignof] = ACTIONS(3560), - [anon_sym_alignof] = ACTIONS(3560), - [anon_sym__Alignof] = ACTIONS(3560), - [anon_sym_offsetof] = ACTIONS(3560), - [anon_sym__Generic] = ACTIONS(3560), - [anon_sym_asm] = ACTIONS(3560), - [anon_sym___asm__] = ACTIONS(3560), - [sym_number_literal] = ACTIONS(3562), - [anon_sym_L_SQUOTE] = ACTIONS(3562), - [anon_sym_u_SQUOTE] = ACTIONS(3562), - [anon_sym_U_SQUOTE] = ACTIONS(3562), - [anon_sym_u8_SQUOTE] = ACTIONS(3562), - [anon_sym_SQUOTE] = ACTIONS(3562), - [anon_sym_L_DQUOTE] = ACTIONS(3562), - [anon_sym_u_DQUOTE] = ACTIONS(3562), - [anon_sym_U_DQUOTE] = ACTIONS(3562), - [anon_sym_u8_DQUOTE] = ACTIONS(3562), - [anon_sym_DQUOTE] = ACTIONS(3562), - [sym_true] = ACTIONS(3560), - [sym_false] = ACTIONS(3560), - [anon_sym_NULL] = ACTIONS(3560), - [anon_sym_nullptr] = ACTIONS(3560), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3560), - [anon_sym_decltype] = ACTIONS(3560), - [anon_sym_virtual] = ACTIONS(3560), - [anon_sym_alignas] = ACTIONS(3560), - [anon_sym_explicit] = ACTIONS(3560), - [anon_sym_typename] = ACTIONS(3560), - [anon_sym_template] = ACTIONS(3560), - [anon_sym_operator] = ACTIONS(3560), - [anon_sym_try] = ACTIONS(3560), - [anon_sym_delete] = ACTIONS(3560), - [anon_sym_throw] = ACTIONS(3560), - [anon_sym_namespace] = ACTIONS(3560), - [anon_sym_using] = ACTIONS(3560), - [anon_sym_static_assert] = ACTIONS(3560), - [anon_sym_concept] = ACTIONS(3560), - [anon_sym_co_return] = ACTIONS(3560), - [anon_sym_co_yield] = ACTIONS(3560), - [anon_sym_R_DQUOTE] = ACTIONS(3562), - [anon_sym_LR_DQUOTE] = ACTIONS(3562), - [anon_sym_uR_DQUOTE] = ACTIONS(3562), - [anon_sym_UR_DQUOTE] = ACTIONS(3562), - [anon_sym_u8R_DQUOTE] = ACTIONS(3562), - [anon_sym_co_await] = ACTIONS(3560), - [anon_sym_new] = ACTIONS(3560), - [anon_sym_requires] = ACTIONS(3560), - [sym_this] = ACTIONS(3560), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3562), - [sym_semgrep_named_ellipsis] = ACTIONS(3562), - }, - [693] = { - [sym_identifier] = ACTIONS(3412), - [aux_sym_preproc_include_token1] = ACTIONS(3412), - [aux_sym_preproc_def_token1] = ACTIONS(3412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3414), - [aux_sym_preproc_if_token1] = ACTIONS(3412), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3412), - [sym_preproc_directive] = ACTIONS(3412), - [anon_sym_LPAREN2] = ACTIONS(3414), - [anon_sym_BANG] = ACTIONS(3414), - [anon_sym_TILDE] = ACTIONS(3414), - [anon_sym_DASH] = ACTIONS(3412), - [anon_sym_PLUS] = ACTIONS(3412), - [anon_sym_STAR] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3414), - [anon_sym_AMP] = ACTIONS(3412), - [anon_sym_SEMI] = ACTIONS(3414), - [anon_sym___extension__] = ACTIONS(3412), - [anon_sym_typedef] = ACTIONS(3412), - [anon_sym_extern] = ACTIONS(3412), - [anon_sym___attribute__] = ACTIONS(3412), - [anon_sym_COLON_COLON] = ACTIONS(3414), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3414), - [anon_sym___declspec] = ACTIONS(3412), - [anon_sym___based] = ACTIONS(3412), - [anon_sym___cdecl] = ACTIONS(3412), - [anon_sym___clrcall] = ACTIONS(3412), - [anon_sym___stdcall] = ACTIONS(3412), - [anon_sym___fastcall] = ACTIONS(3412), - [anon_sym___thiscall] = ACTIONS(3412), - [anon_sym___vectorcall] = ACTIONS(3412), - [anon_sym_LBRACE] = ACTIONS(3414), - [anon_sym_RBRACE] = ACTIONS(3414), - [anon_sym_signed] = ACTIONS(3412), - [anon_sym_unsigned] = ACTIONS(3412), - [anon_sym_long] = ACTIONS(3412), - [anon_sym_short] = ACTIONS(3412), - [anon_sym_LBRACK] = ACTIONS(3412), - [anon_sym_static] = ACTIONS(3412), - [anon_sym_register] = ACTIONS(3412), - [anon_sym_inline] = ACTIONS(3412), - [anon_sym___inline] = ACTIONS(3412), - [anon_sym___inline__] = ACTIONS(3412), - [anon_sym___forceinline] = ACTIONS(3412), - [anon_sym_thread_local] = ACTIONS(3412), - [anon_sym___thread] = ACTIONS(3412), - [anon_sym_const] = ACTIONS(3412), - [anon_sym_constexpr] = ACTIONS(3412), - [anon_sym_volatile] = ACTIONS(3412), - [anon_sym_restrict] = ACTIONS(3412), - [anon_sym___restrict__] = ACTIONS(3412), - [anon_sym__Atomic] = ACTIONS(3412), - [anon_sym__Noreturn] = ACTIONS(3412), - [anon_sym_noreturn] = ACTIONS(3412), - [anon_sym_mutable] = ACTIONS(3412), - [anon_sym_constinit] = ACTIONS(3412), - [anon_sym_consteval] = ACTIONS(3412), - [sym_primitive_type] = ACTIONS(3412), - [anon_sym_enum] = ACTIONS(3412), - [anon_sym_class] = ACTIONS(3412), - [anon_sym_struct] = ACTIONS(3412), - [anon_sym_union] = ACTIONS(3412), - [anon_sym_if] = ACTIONS(3412), - [anon_sym_switch] = ACTIONS(3412), - [anon_sym_case] = ACTIONS(3412), - [anon_sym_default] = ACTIONS(3412), - [anon_sym_while] = ACTIONS(3412), - [anon_sym_do] = ACTIONS(3412), - [anon_sym_for] = ACTIONS(3412), - [anon_sym_return] = ACTIONS(3412), - [anon_sym_break] = ACTIONS(3412), - [anon_sym_continue] = ACTIONS(3412), - [anon_sym_goto] = ACTIONS(3412), - [anon_sym___try] = ACTIONS(3412), - [anon_sym___leave] = ACTIONS(3412), - [anon_sym_not] = ACTIONS(3412), - [anon_sym_compl] = ACTIONS(3412), - [anon_sym_DASH_DASH] = ACTIONS(3414), - [anon_sym_PLUS_PLUS] = ACTIONS(3414), - [anon_sym_sizeof] = ACTIONS(3412), - [anon_sym___alignof__] = ACTIONS(3412), - [anon_sym___alignof] = ACTIONS(3412), - [anon_sym__alignof] = ACTIONS(3412), - [anon_sym_alignof] = ACTIONS(3412), - [anon_sym__Alignof] = ACTIONS(3412), - [anon_sym_offsetof] = ACTIONS(3412), - [anon_sym__Generic] = ACTIONS(3412), - [anon_sym_asm] = ACTIONS(3412), - [anon_sym___asm__] = ACTIONS(3412), - [sym_number_literal] = ACTIONS(3414), - [anon_sym_L_SQUOTE] = ACTIONS(3414), - [anon_sym_u_SQUOTE] = ACTIONS(3414), - [anon_sym_U_SQUOTE] = ACTIONS(3414), - [anon_sym_u8_SQUOTE] = ACTIONS(3414), - [anon_sym_SQUOTE] = ACTIONS(3414), - [anon_sym_L_DQUOTE] = ACTIONS(3414), - [anon_sym_u_DQUOTE] = ACTIONS(3414), - [anon_sym_U_DQUOTE] = ACTIONS(3414), - [anon_sym_u8_DQUOTE] = ACTIONS(3414), - [anon_sym_DQUOTE] = ACTIONS(3414), - [sym_true] = ACTIONS(3412), - [sym_false] = ACTIONS(3412), - [anon_sym_NULL] = ACTIONS(3412), - [anon_sym_nullptr] = ACTIONS(3412), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3412), - [anon_sym_decltype] = ACTIONS(3412), - [anon_sym_virtual] = ACTIONS(3412), - [anon_sym_alignas] = ACTIONS(3412), - [anon_sym_explicit] = ACTIONS(3412), - [anon_sym_typename] = ACTIONS(3412), - [anon_sym_template] = ACTIONS(3412), - [anon_sym_operator] = ACTIONS(3412), - [anon_sym_try] = ACTIONS(3412), - [anon_sym_delete] = ACTIONS(3412), - [anon_sym_throw] = ACTIONS(3412), - [anon_sym_namespace] = ACTIONS(3412), - [anon_sym_using] = ACTIONS(3412), - [anon_sym_static_assert] = ACTIONS(3412), - [anon_sym_concept] = ACTIONS(3412), - [anon_sym_co_return] = ACTIONS(3412), - [anon_sym_co_yield] = ACTIONS(3412), - [anon_sym_R_DQUOTE] = ACTIONS(3414), - [anon_sym_LR_DQUOTE] = ACTIONS(3414), - [anon_sym_uR_DQUOTE] = ACTIONS(3414), - [anon_sym_UR_DQUOTE] = ACTIONS(3414), - [anon_sym_u8R_DQUOTE] = ACTIONS(3414), - [anon_sym_co_await] = ACTIONS(3412), - [anon_sym_new] = ACTIONS(3412), - [anon_sym_requires] = ACTIONS(3412), - [sym_this] = ACTIONS(3412), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3414), - [sym_semgrep_named_ellipsis] = ACTIONS(3414), - }, - [694] = { - [sym_identifier] = ACTIONS(3416), - [aux_sym_preproc_include_token1] = ACTIONS(3416), - [aux_sym_preproc_def_token1] = ACTIONS(3416), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3418), - [aux_sym_preproc_if_token1] = ACTIONS(3416), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3416), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3416), - [sym_preproc_directive] = ACTIONS(3416), - [anon_sym_LPAREN2] = ACTIONS(3418), - [anon_sym_BANG] = ACTIONS(3418), - [anon_sym_TILDE] = ACTIONS(3418), - [anon_sym_DASH] = ACTIONS(3416), - [anon_sym_PLUS] = ACTIONS(3416), - [anon_sym_STAR] = ACTIONS(3418), - [anon_sym_AMP_AMP] = ACTIONS(3418), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_SEMI] = ACTIONS(3418), - [anon_sym___extension__] = ACTIONS(3416), - [anon_sym_typedef] = ACTIONS(3416), - [anon_sym_extern] = ACTIONS(3416), - [anon_sym___attribute__] = ACTIONS(3416), - [anon_sym_COLON_COLON] = ACTIONS(3418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3418), - [anon_sym___declspec] = ACTIONS(3416), - [anon_sym___based] = ACTIONS(3416), - [anon_sym___cdecl] = ACTIONS(3416), - [anon_sym___clrcall] = ACTIONS(3416), - [anon_sym___stdcall] = ACTIONS(3416), - [anon_sym___fastcall] = ACTIONS(3416), - [anon_sym___thiscall] = ACTIONS(3416), - [anon_sym___vectorcall] = ACTIONS(3416), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_RBRACE] = ACTIONS(3418), - [anon_sym_signed] = ACTIONS(3416), - [anon_sym_unsigned] = ACTIONS(3416), - [anon_sym_long] = ACTIONS(3416), - [anon_sym_short] = ACTIONS(3416), - [anon_sym_LBRACK] = ACTIONS(3416), - [anon_sym_static] = ACTIONS(3416), - [anon_sym_register] = ACTIONS(3416), - [anon_sym_inline] = ACTIONS(3416), - [anon_sym___inline] = ACTIONS(3416), - [anon_sym___inline__] = ACTIONS(3416), - [anon_sym___forceinline] = ACTIONS(3416), - [anon_sym_thread_local] = ACTIONS(3416), - [anon_sym___thread] = ACTIONS(3416), - [anon_sym_const] = ACTIONS(3416), - [anon_sym_constexpr] = ACTIONS(3416), - [anon_sym_volatile] = ACTIONS(3416), - [anon_sym_restrict] = ACTIONS(3416), - [anon_sym___restrict__] = ACTIONS(3416), - [anon_sym__Atomic] = ACTIONS(3416), - [anon_sym__Noreturn] = ACTIONS(3416), - [anon_sym_noreturn] = ACTIONS(3416), - [anon_sym_mutable] = ACTIONS(3416), - [anon_sym_constinit] = ACTIONS(3416), - [anon_sym_consteval] = ACTIONS(3416), - [sym_primitive_type] = ACTIONS(3416), - [anon_sym_enum] = ACTIONS(3416), - [anon_sym_class] = ACTIONS(3416), - [anon_sym_struct] = ACTIONS(3416), - [anon_sym_union] = ACTIONS(3416), - [anon_sym_if] = ACTIONS(3416), - [anon_sym_switch] = ACTIONS(3416), - [anon_sym_case] = ACTIONS(3416), - [anon_sym_default] = ACTIONS(3416), - [anon_sym_while] = ACTIONS(3416), - [anon_sym_do] = ACTIONS(3416), - [anon_sym_for] = ACTIONS(3416), - [anon_sym_return] = ACTIONS(3416), - [anon_sym_break] = ACTIONS(3416), - [anon_sym_continue] = ACTIONS(3416), - [anon_sym_goto] = ACTIONS(3416), - [anon_sym___try] = ACTIONS(3416), - [anon_sym___leave] = ACTIONS(3416), - [anon_sym_not] = ACTIONS(3416), - [anon_sym_compl] = ACTIONS(3416), - [anon_sym_DASH_DASH] = ACTIONS(3418), - [anon_sym_PLUS_PLUS] = ACTIONS(3418), - [anon_sym_sizeof] = ACTIONS(3416), - [anon_sym___alignof__] = ACTIONS(3416), - [anon_sym___alignof] = ACTIONS(3416), - [anon_sym__alignof] = ACTIONS(3416), - [anon_sym_alignof] = ACTIONS(3416), - [anon_sym__Alignof] = ACTIONS(3416), - [anon_sym_offsetof] = ACTIONS(3416), - [anon_sym__Generic] = ACTIONS(3416), - [anon_sym_asm] = ACTIONS(3416), - [anon_sym___asm__] = ACTIONS(3416), - [sym_number_literal] = ACTIONS(3418), - [anon_sym_L_SQUOTE] = ACTIONS(3418), - [anon_sym_u_SQUOTE] = ACTIONS(3418), - [anon_sym_U_SQUOTE] = ACTIONS(3418), - [anon_sym_u8_SQUOTE] = ACTIONS(3418), - [anon_sym_SQUOTE] = ACTIONS(3418), - [anon_sym_L_DQUOTE] = ACTIONS(3418), - [anon_sym_u_DQUOTE] = ACTIONS(3418), - [anon_sym_U_DQUOTE] = ACTIONS(3418), - [anon_sym_u8_DQUOTE] = ACTIONS(3418), - [anon_sym_DQUOTE] = ACTIONS(3418), - [sym_true] = ACTIONS(3416), - [sym_false] = ACTIONS(3416), - [anon_sym_NULL] = ACTIONS(3416), - [anon_sym_nullptr] = ACTIONS(3416), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3416), - [anon_sym_decltype] = ACTIONS(3416), - [anon_sym_virtual] = ACTIONS(3416), - [anon_sym_alignas] = ACTIONS(3416), - [anon_sym_explicit] = ACTIONS(3416), - [anon_sym_typename] = ACTIONS(3416), - [anon_sym_template] = ACTIONS(3416), - [anon_sym_operator] = ACTIONS(3416), - [anon_sym_try] = ACTIONS(3416), - [anon_sym_delete] = ACTIONS(3416), - [anon_sym_throw] = ACTIONS(3416), - [anon_sym_namespace] = ACTIONS(3416), - [anon_sym_using] = ACTIONS(3416), - [anon_sym_static_assert] = ACTIONS(3416), - [anon_sym_concept] = ACTIONS(3416), - [anon_sym_co_return] = ACTIONS(3416), - [anon_sym_co_yield] = ACTIONS(3416), - [anon_sym_R_DQUOTE] = ACTIONS(3418), - [anon_sym_LR_DQUOTE] = ACTIONS(3418), - [anon_sym_uR_DQUOTE] = ACTIONS(3418), - [anon_sym_UR_DQUOTE] = ACTIONS(3418), - [anon_sym_u8R_DQUOTE] = ACTIONS(3418), - [anon_sym_co_await] = ACTIONS(3416), - [anon_sym_new] = ACTIONS(3416), - [anon_sym_requires] = ACTIONS(3416), - [sym_this] = ACTIONS(3416), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3418), - [sym_semgrep_named_ellipsis] = ACTIONS(3418), - }, - [695] = { - [sym_identifier] = ACTIONS(3618), - [aux_sym_preproc_include_token1] = ACTIONS(3618), - [aux_sym_preproc_def_token1] = ACTIONS(3618), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3620), - [aux_sym_preproc_if_token1] = ACTIONS(3618), - [aux_sym_preproc_if_token2] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), - [sym_preproc_directive] = ACTIONS(3618), - [anon_sym_LPAREN2] = ACTIONS(3620), - [anon_sym_BANG] = ACTIONS(3620), - [anon_sym_TILDE] = ACTIONS(3620), - [anon_sym_DASH] = ACTIONS(3618), - [anon_sym_PLUS] = ACTIONS(3618), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_AMP_AMP] = ACTIONS(3620), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_SEMI] = ACTIONS(3620), - [anon_sym___extension__] = ACTIONS(3618), - [anon_sym_typedef] = ACTIONS(3618), - [anon_sym_extern] = ACTIONS(3618), - [anon_sym___attribute__] = ACTIONS(3618), - [anon_sym_COLON_COLON] = ACTIONS(3620), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), - [anon_sym___declspec] = ACTIONS(3618), - [anon_sym___based] = ACTIONS(3618), - [anon_sym___cdecl] = ACTIONS(3618), - [anon_sym___clrcall] = ACTIONS(3618), - [anon_sym___stdcall] = ACTIONS(3618), - [anon_sym___fastcall] = ACTIONS(3618), - [anon_sym___thiscall] = ACTIONS(3618), - [anon_sym___vectorcall] = ACTIONS(3618), - [anon_sym_LBRACE] = ACTIONS(3620), - [anon_sym_signed] = ACTIONS(3618), - [anon_sym_unsigned] = ACTIONS(3618), - [anon_sym_long] = ACTIONS(3618), - [anon_sym_short] = ACTIONS(3618), - [anon_sym_LBRACK] = ACTIONS(3618), - [anon_sym_static] = ACTIONS(3618), - [anon_sym_register] = ACTIONS(3618), - [anon_sym_inline] = ACTIONS(3618), - [anon_sym___inline] = ACTIONS(3618), - [anon_sym___inline__] = ACTIONS(3618), - [anon_sym___forceinline] = ACTIONS(3618), - [anon_sym_thread_local] = ACTIONS(3618), - [anon_sym___thread] = ACTIONS(3618), - [anon_sym_const] = ACTIONS(3618), - [anon_sym_constexpr] = ACTIONS(3618), - [anon_sym_volatile] = ACTIONS(3618), - [anon_sym_restrict] = ACTIONS(3618), - [anon_sym___restrict__] = ACTIONS(3618), - [anon_sym__Atomic] = ACTIONS(3618), - [anon_sym__Noreturn] = ACTIONS(3618), - [anon_sym_noreturn] = ACTIONS(3618), - [anon_sym_mutable] = ACTIONS(3618), - [anon_sym_constinit] = ACTIONS(3618), - [anon_sym_consteval] = ACTIONS(3618), - [sym_primitive_type] = ACTIONS(3618), - [anon_sym_enum] = ACTIONS(3618), - [anon_sym_class] = ACTIONS(3618), - [anon_sym_struct] = ACTIONS(3618), - [anon_sym_union] = ACTIONS(3618), - [anon_sym_if] = ACTIONS(3618), - [anon_sym_switch] = ACTIONS(3618), - [anon_sym_case] = ACTIONS(3618), - [anon_sym_default] = ACTIONS(3618), - [anon_sym_while] = ACTIONS(3618), - [anon_sym_do] = ACTIONS(3618), - [anon_sym_for] = ACTIONS(3618), - [anon_sym_return] = ACTIONS(3618), - [anon_sym_break] = ACTIONS(3618), - [anon_sym_continue] = ACTIONS(3618), - [anon_sym_goto] = ACTIONS(3618), - [anon_sym___try] = ACTIONS(3618), - [anon_sym___leave] = ACTIONS(3618), - [anon_sym_not] = ACTIONS(3618), - [anon_sym_compl] = ACTIONS(3618), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_sizeof] = ACTIONS(3618), - [anon_sym___alignof__] = ACTIONS(3618), - [anon_sym___alignof] = ACTIONS(3618), - [anon_sym__alignof] = ACTIONS(3618), - [anon_sym_alignof] = ACTIONS(3618), - [anon_sym__Alignof] = ACTIONS(3618), - [anon_sym_offsetof] = ACTIONS(3618), - [anon_sym__Generic] = ACTIONS(3618), - [anon_sym_asm] = ACTIONS(3618), - [anon_sym___asm__] = ACTIONS(3618), - [sym_number_literal] = ACTIONS(3620), - [anon_sym_L_SQUOTE] = ACTIONS(3620), - [anon_sym_u_SQUOTE] = ACTIONS(3620), - [anon_sym_U_SQUOTE] = ACTIONS(3620), - [anon_sym_u8_SQUOTE] = ACTIONS(3620), - [anon_sym_SQUOTE] = ACTIONS(3620), - [anon_sym_L_DQUOTE] = ACTIONS(3620), - [anon_sym_u_DQUOTE] = ACTIONS(3620), - [anon_sym_U_DQUOTE] = ACTIONS(3620), - [anon_sym_u8_DQUOTE] = ACTIONS(3620), - [anon_sym_DQUOTE] = ACTIONS(3620), - [sym_true] = ACTIONS(3618), - [sym_false] = ACTIONS(3618), - [anon_sym_NULL] = ACTIONS(3618), - [anon_sym_nullptr] = ACTIONS(3618), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3618), - [anon_sym_decltype] = ACTIONS(3618), - [anon_sym_virtual] = ACTIONS(3618), - [anon_sym_alignas] = ACTIONS(3618), - [anon_sym_explicit] = ACTIONS(3618), - [anon_sym_typename] = ACTIONS(3618), - [anon_sym_template] = ACTIONS(3618), - [anon_sym_operator] = ACTIONS(3618), - [anon_sym_try] = ACTIONS(3618), - [anon_sym_delete] = ACTIONS(3618), - [anon_sym_throw] = ACTIONS(3618), - [anon_sym_namespace] = ACTIONS(3618), - [anon_sym_using] = ACTIONS(3618), - [anon_sym_static_assert] = ACTIONS(3618), - [anon_sym_concept] = ACTIONS(3618), - [anon_sym_co_return] = ACTIONS(3618), - [anon_sym_co_yield] = ACTIONS(3618), - [anon_sym_R_DQUOTE] = ACTIONS(3620), - [anon_sym_LR_DQUOTE] = ACTIONS(3620), - [anon_sym_uR_DQUOTE] = ACTIONS(3620), - [anon_sym_UR_DQUOTE] = ACTIONS(3620), - [anon_sym_u8R_DQUOTE] = ACTIONS(3620), - [anon_sym_co_await] = ACTIONS(3618), - [anon_sym_new] = ACTIONS(3618), - [anon_sym_requires] = ACTIONS(3618), - [sym_this] = ACTIONS(3618), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3620), - [sym_semgrep_named_ellipsis] = ACTIONS(3620), - }, - [696] = { - [sym_identifier] = ACTIONS(3622), - [aux_sym_preproc_include_token1] = ACTIONS(3622), - [aux_sym_preproc_def_token1] = ACTIONS(3622), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3624), - [aux_sym_preproc_if_token1] = ACTIONS(3622), - [aux_sym_preproc_if_token2] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), - [sym_preproc_directive] = ACTIONS(3622), - [anon_sym_LPAREN2] = ACTIONS(3624), - [anon_sym_BANG] = ACTIONS(3624), - [anon_sym_TILDE] = ACTIONS(3624), - [anon_sym_DASH] = ACTIONS(3622), - [anon_sym_PLUS] = ACTIONS(3622), - [anon_sym_STAR] = ACTIONS(3624), - [anon_sym_AMP_AMP] = ACTIONS(3624), - [anon_sym_AMP] = ACTIONS(3622), - [anon_sym_SEMI] = ACTIONS(3624), - [anon_sym___extension__] = ACTIONS(3622), - [anon_sym_typedef] = ACTIONS(3622), - [anon_sym_extern] = ACTIONS(3622), - [anon_sym___attribute__] = ACTIONS(3622), - [anon_sym_COLON_COLON] = ACTIONS(3624), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), - [anon_sym___declspec] = ACTIONS(3622), - [anon_sym___based] = ACTIONS(3622), - [anon_sym___cdecl] = ACTIONS(3622), - [anon_sym___clrcall] = ACTIONS(3622), - [anon_sym___stdcall] = ACTIONS(3622), - [anon_sym___fastcall] = ACTIONS(3622), - [anon_sym___thiscall] = ACTIONS(3622), - [anon_sym___vectorcall] = ACTIONS(3622), - [anon_sym_LBRACE] = ACTIONS(3624), - [anon_sym_signed] = ACTIONS(3622), - [anon_sym_unsigned] = ACTIONS(3622), - [anon_sym_long] = ACTIONS(3622), - [anon_sym_short] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3622), - [anon_sym_static] = ACTIONS(3622), - [anon_sym_register] = ACTIONS(3622), - [anon_sym_inline] = ACTIONS(3622), - [anon_sym___inline] = ACTIONS(3622), - [anon_sym___inline__] = ACTIONS(3622), - [anon_sym___forceinline] = ACTIONS(3622), - [anon_sym_thread_local] = ACTIONS(3622), - [anon_sym___thread] = ACTIONS(3622), - [anon_sym_const] = ACTIONS(3622), - [anon_sym_constexpr] = ACTIONS(3622), - [anon_sym_volatile] = ACTIONS(3622), - [anon_sym_restrict] = ACTIONS(3622), - [anon_sym___restrict__] = ACTIONS(3622), - [anon_sym__Atomic] = ACTIONS(3622), - [anon_sym__Noreturn] = ACTIONS(3622), - [anon_sym_noreturn] = ACTIONS(3622), - [anon_sym_mutable] = ACTIONS(3622), - [anon_sym_constinit] = ACTIONS(3622), - [anon_sym_consteval] = ACTIONS(3622), - [sym_primitive_type] = ACTIONS(3622), - [anon_sym_enum] = ACTIONS(3622), - [anon_sym_class] = ACTIONS(3622), - [anon_sym_struct] = ACTIONS(3622), - [anon_sym_union] = ACTIONS(3622), - [anon_sym_if] = ACTIONS(3622), - [anon_sym_switch] = ACTIONS(3622), - [anon_sym_case] = ACTIONS(3622), - [anon_sym_default] = ACTIONS(3622), - [anon_sym_while] = ACTIONS(3622), - [anon_sym_do] = ACTIONS(3622), - [anon_sym_for] = ACTIONS(3622), - [anon_sym_return] = ACTIONS(3622), - [anon_sym_break] = ACTIONS(3622), - [anon_sym_continue] = ACTIONS(3622), - [anon_sym_goto] = ACTIONS(3622), - [anon_sym___try] = ACTIONS(3622), - [anon_sym___leave] = ACTIONS(3622), - [anon_sym_not] = ACTIONS(3622), - [anon_sym_compl] = ACTIONS(3622), - [anon_sym_DASH_DASH] = ACTIONS(3624), - [anon_sym_PLUS_PLUS] = ACTIONS(3624), - [anon_sym_sizeof] = ACTIONS(3622), - [anon_sym___alignof__] = ACTIONS(3622), - [anon_sym___alignof] = ACTIONS(3622), - [anon_sym__alignof] = ACTIONS(3622), - [anon_sym_alignof] = ACTIONS(3622), - [anon_sym__Alignof] = ACTIONS(3622), - [anon_sym_offsetof] = ACTIONS(3622), - [anon_sym__Generic] = ACTIONS(3622), - [anon_sym_asm] = ACTIONS(3622), - [anon_sym___asm__] = ACTIONS(3622), - [sym_number_literal] = ACTIONS(3624), - [anon_sym_L_SQUOTE] = ACTIONS(3624), - [anon_sym_u_SQUOTE] = ACTIONS(3624), - [anon_sym_U_SQUOTE] = ACTIONS(3624), - [anon_sym_u8_SQUOTE] = ACTIONS(3624), - [anon_sym_SQUOTE] = ACTIONS(3624), - [anon_sym_L_DQUOTE] = ACTIONS(3624), - [anon_sym_u_DQUOTE] = ACTIONS(3624), - [anon_sym_U_DQUOTE] = ACTIONS(3624), - [anon_sym_u8_DQUOTE] = ACTIONS(3624), - [anon_sym_DQUOTE] = ACTIONS(3624), - [sym_true] = ACTIONS(3622), - [sym_false] = ACTIONS(3622), - [anon_sym_NULL] = ACTIONS(3622), - [anon_sym_nullptr] = ACTIONS(3622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3622), - [anon_sym_decltype] = ACTIONS(3622), - [anon_sym_virtual] = ACTIONS(3622), - [anon_sym_alignas] = ACTIONS(3622), - [anon_sym_explicit] = ACTIONS(3622), - [anon_sym_typename] = ACTIONS(3622), - [anon_sym_template] = ACTIONS(3622), - [anon_sym_operator] = ACTIONS(3622), - [anon_sym_try] = ACTIONS(3622), - [anon_sym_delete] = ACTIONS(3622), - [anon_sym_throw] = ACTIONS(3622), - [anon_sym_namespace] = ACTIONS(3622), - [anon_sym_using] = ACTIONS(3622), - [anon_sym_static_assert] = ACTIONS(3622), - [anon_sym_concept] = ACTIONS(3622), - [anon_sym_co_return] = ACTIONS(3622), - [anon_sym_co_yield] = ACTIONS(3622), - [anon_sym_R_DQUOTE] = ACTIONS(3624), - [anon_sym_LR_DQUOTE] = ACTIONS(3624), - [anon_sym_uR_DQUOTE] = ACTIONS(3624), - [anon_sym_UR_DQUOTE] = ACTIONS(3624), - [anon_sym_u8R_DQUOTE] = ACTIONS(3624), - [anon_sym_co_await] = ACTIONS(3622), - [anon_sym_new] = ACTIONS(3622), - [anon_sym_requires] = ACTIONS(3622), - [sym_this] = ACTIONS(3622), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3624), - [sym_semgrep_named_ellipsis] = ACTIONS(3624), - }, - [697] = { - [sym_identifier] = ACTIONS(3404), - [aux_sym_preproc_include_token1] = ACTIONS(3404), - [aux_sym_preproc_def_token1] = ACTIONS(3404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3406), - [aux_sym_preproc_if_token1] = ACTIONS(3404), - [aux_sym_preproc_if_token2] = ACTIONS(3404), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3404), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3404), - [sym_preproc_directive] = ACTIONS(3404), - [anon_sym_LPAREN2] = ACTIONS(3406), - [anon_sym_BANG] = ACTIONS(3406), - [anon_sym_TILDE] = ACTIONS(3406), - [anon_sym_DASH] = ACTIONS(3404), - [anon_sym_PLUS] = ACTIONS(3404), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_AMP_AMP] = ACTIONS(3406), - [anon_sym_AMP] = ACTIONS(3404), - [anon_sym_SEMI] = ACTIONS(3406), - [anon_sym___extension__] = ACTIONS(3404), - [anon_sym_typedef] = ACTIONS(3404), - [anon_sym_extern] = ACTIONS(3404), - [anon_sym___attribute__] = ACTIONS(3404), - [anon_sym_COLON_COLON] = ACTIONS(3406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3406), - [anon_sym___declspec] = ACTIONS(3404), - [anon_sym___based] = ACTIONS(3404), - [anon_sym___cdecl] = ACTIONS(3404), - [anon_sym___clrcall] = ACTIONS(3404), - [anon_sym___stdcall] = ACTIONS(3404), - [anon_sym___fastcall] = ACTIONS(3404), - [anon_sym___thiscall] = ACTIONS(3404), - [anon_sym___vectorcall] = ACTIONS(3404), - [anon_sym_LBRACE] = ACTIONS(3406), - [anon_sym_signed] = ACTIONS(3404), - [anon_sym_unsigned] = ACTIONS(3404), - [anon_sym_long] = ACTIONS(3404), - [anon_sym_short] = ACTIONS(3404), - [anon_sym_LBRACK] = ACTIONS(3404), - [anon_sym_static] = ACTIONS(3404), - [anon_sym_register] = ACTIONS(3404), - [anon_sym_inline] = ACTIONS(3404), - [anon_sym___inline] = ACTIONS(3404), - [anon_sym___inline__] = ACTIONS(3404), - [anon_sym___forceinline] = ACTIONS(3404), - [anon_sym_thread_local] = ACTIONS(3404), - [anon_sym___thread] = ACTIONS(3404), - [anon_sym_const] = ACTIONS(3404), - [anon_sym_constexpr] = ACTIONS(3404), - [anon_sym_volatile] = ACTIONS(3404), - [anon_sym_restrict] = ACTIONS(3404), - [anon_sym___restrict__] = ACTIONS(3404), - [anon_sym__Atomic] = ACTIONS(3404), - [anon_sym__Noreturn] = ACTIONS(3404), - [anon_sym_noreturn] = ACTIONS(3404), - [anon_sym_mutable] = ACTIONS(3404), - [anon_sym_constinit] = ACTIONS(3404), - [anon_sym_consteval] = ACTIONS(3404), - [sym_primitive_type] = ACTIONS(3404), - [anon_sym_enum] = ACTIONS(3404), - [anon_sym_class] = ACTIONS(3404), - [anon_sym_struct] = ACTIONS(3404), - [anon_sym_union] = ACTIONS(3404), - [anon_sym_if] = ACTIONS(3404), - [anon_sym_switch] = ACTIONS(3404), - [anon_sym_case] = ACTIONS(3404), - [anon_sym_default] = ACTIONS(3404), - [anon_sym_while] = ACTIONS(3404), - [anon_sym_do] = ACTIONS(3404), - [anon_sym_for] = ACTIONS(3404), - [anon_sym_return] = ACTIONS(3404), - [anon_sym_break] = ACTIONS(3404), - [anon_sym_continue] = ACTIONS(3404), - [anon_sym_goto] = ACTIONS(3404), - [anon_sym___try] = ACTIONS(3404), - [anon_sym___leave] = ACTIONS(3404), - [anon_sym_not] = ACTIONS(3404), - [anon_sym_compl] = ACTIONS(3404), - [anon_sym_DASH_DASH] = ACTIONS(3406), - [anon_sym_PLUS_PLUS] = ACTIONS(3406), - [anon_sym_sizeof] = ACTIONS(3404), - [anon_sym___alignof__] = ACTIONS(3404), - [anon_sym___alignof] = ACTIONS(3404), - [anon_sym__alignof] = ACTIONS(3404), - [anon_sym_alignof] = ACTIONS(3404), - [anon_sym__Alignof] = ACTIONS(3404), - [anon_sym_offsetof] = ACTIONS(3404), - [anon_sym__Generic] = ACTIONS(3404), - [anon_sym_asm] = ACTIONS(3404), - [anon_sym___asm__] = ACTIONS(3404), - [sym_number_literal] = ACTIONS(3406), - [anon_sym_L_SQUOTE] = ACTIONS(3406), - [anon_sym_u_SQUOTE] = ACTIONS(3406), - [anon_sym_U_SQUOTE] = ACTIONS(3406), - [anon_sym_u8_SQUOTE] = ACTIONS(3406), - [anon_sym_SQUOTE] = ACTIONS(3406), - [anon_sym_L_DQUOTE] = ACTIONS(3406), - [anon_sym_u_DQUOTE] = ACTIONS(3406), - [anon_sym_U_DQUOTE] = ACTIONS(3406), - [anon_sym_u8_DQUOTE] = ACTIONS(3406), - [anon_sym_DQUOTE] = ACTIONS(3406), - [sym_true] = ACTIONS(3404), - [sym_false] = ACTIONS(3404), - [anon_sym_NULL] = ACTIONS(3404), - [anon_sym_nullptr] = ACTIONS(3404), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3404), - [anon_sym_decltype] = ACTIONS(3404), - [anon_sym_virtual] = ACTIONS(3404), - [anon_sym_alignas] = ACTIONS(3404), - [anon_sym_explicit] = ACTIONS(3404), - [anon_sym_typename] = ACTIONS(3404), - [anon_sym_template] = ACTIONS(3404), - [anon_sym_operator] = ACTIONS(3404), - [anon_sym_try] = ACTIONS(3404), - [anon_sym_delete] = ACTIONS(3404), - [anon_sym_throw] = ACTIONS(3404), - [anon_sym_namespace] = ACTIONS(3404), - [anon_sym_using] = ACTIONS(3404), - [anon_sym_static_assert] = ACTIONS(3404), - [anon_sym_concept] = ACTIONS(3404), - [anon_sym_co_return] = ACTIONS(3404), - [anon_sym_co_yield] = ACTIONS(3404), - [anon_sym_R_DQUOTE] = ACTIONS(3406), - [anon_sym_LR_DQUOTE] = ACTIONS(3406), - [anon_sym_uR_DQUOTE] = ACTIONS(3406), - [anon_sym_UR_DQUOTE] = ACTIONS(3406), - [anon_sym_u8R_DQUOTE] = ACTIONS(3406), - [anon_sym_co_await] = ACTIONS(3404), - [anon_sym_new] = ACTIONS(3404), - [anon_sym_requires] = ACTIONS(3404), - [sym_this] = ACTIONS(3404), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3406), - [sym_semgrep_named_ellipsis] = ACTIONS(3406), - }, - [698] = { - [sym_identifier] = ACTIONS(3644), - [aux_sym_preproc_include_token1] = ACTIONS(3644), - [aux_sym_preproc_def_token1] = ACTIONS(3644), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3646), - [aux_sym_preproc_if_token1] = ACTIONS(3644), - [aux_sym_preproc_if_token2] = ACTIONS(3644), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3644), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3644), - [sym_preproc_directive] = ACTIONS(3644), - [anon_sym_LPAREN2] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3646), - [anon_sym_TILDE] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3644), - [anon_sym_PLUS] = ACTIONS(3644), - [anon_sym_STAR] = ACTIONS(3646), - [anon_sym_AMP_AMP] = ACTIONS(3646), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_SEMI] = ACTIONS(3646), - [anon_sym___extension__] = ACTIONS(3644), - [anon_sym_typedef] = ACTIONS(3644), - [anon_sym_extern] = ACTIONS(3644), - [anon_sym___attribute__] = ACTIONS(3644), - [anon_sym_COLON_COLON] = ACTIONS(3646), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3646), - [anon_sym___declspec] = ACTIONS(3644), - [anon_sym___based] = ACTIONS(3644), - [anon_sym___cdecl] = ACTIONS(3644), - [anon_sym___clrcall] = ACTIONS(3644), - [anon_sym___stdcall] = ACTIONS(3644), - [anon_sym___fastcall] = ACTIONS(3644), - [anon_sym___thiscall] = ACTIONS(3644), - [anon_sym___vectorcall] = ACTIONS(3644), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_signed] = ACTIONS(3644), - [anon_sym_unsigned] = ACTIONS(3644), - [anon_sym_long] = ACTIONS(3644), - [anon_sym_short] = ACTIONS(3644), - [anon_sym_LBRACK] = ACTIONS(3644), - [anon_sym_static] = ACTIONS(3644), - [anon_sym_register] = ACTIONS(3644), - [anon_sym_inline] = ACTIONS(3644), - [anon_sym___inline] = ACTIONS(3644), - [anon_sym___inline__] = ACTIONS(3644), - [anon_sym___forceinline] = ACTIONS(3644), - [anon_sym_thread_local] = ACTIONS(3644), - [anon_sym___thread] = ACTIONS(3644), - [anon_sym_const] = ACTIONS(3644), - [anon_sym_constexpr] = ACTIONS(3644), - [anon_sym_volatile] = ACTIONS(3644), - [anon_sym_restrict] = ACTIONS(3644), - [anon_sym___restrict__] = ACTIONS(3644), - [anon_sym__Atomic] = ACTIONS(3644), - [anon_sym__Noreturn] = ACTIONS(3644), - [anon_sym_noreturn] = ACTIONS(3644), - [anon_sym_mutable] = ACTIONS(3644), - [anon_sym_constinit] = ACTIONS(3644), - [anon_sym_consteval] = ACTIONS(3644), - [sym_primitive_type] = ACTIONS(3644), - [anon_sym_enum] = ACTIONS(3644), - [anon_sym_class] = ACTIONS(3644), - [anon_sym_struct] = ACTIONS(3644), - [anon_sym_union] = ACTIONS(3644), - [anon_sym_if] = ACTIONS(3644), - [anon_sym_switch] = ACTIONS(3644), - [anon_sym_case] = ACTIONS(3644), - [anon_sym_default] = ACTIONS(3644), - [anon_sym_while] = ACTIONS(3644), - [anon_sym_do] = ACTIONS(3644), - [anon_sym_for] = ACTIONS(3644), - [anon_sym_return] = ACTIONS(3644), - [anon_sym_break] = ACTIONS(3644), - [anon_sym_continue] = ACTIONS(3644), - [anon_sym_goto] = ACTIONS(3644), - [anon_sym___try] = ACTIONS(3644), - [anon_sym___leave] = ACTIONS(3644), - [anon_sym_not] = ACTIONS(3644), - [anon_sym_compl] = ACTIONS(3644), - [anon_sym_DASH_DASH] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3646), - [anon_sym_sizeof] = ACTIONS(3644), - [anon_sym___alignof__] = ACTIONS(3644), - [anon_sym___alignof] = ACTIONS(3644), - [anon_sym__alignof] = ACTIONS(3644), - [anon_sym_alignof] = ACTIONS(3644), - [anon_sym__Alignof] = ACTIONS(3644), - [anon_sym_offsetof] = ACTIONS(3644), - [anon_sym__Generic] = ACTIONS(3644), - [anon_sym_asm] = ACTIONS(3644), - [anon_sym___asm__] = ACTIONS(3644), - [sym_number_literal] = ACTIONS(3646), - [anon_sym_L_SQUOTE] = ACTIONS(3646), - [anon_sym_u_SQUOTE] = ACTIONS(3646), - [anon_sym_U_SQUOTE] = ACTIONS(3646), - [anon_sym_u8_SQUOTE] = ACTIONS(3646), - [anon_sym_SQUOTE] = ACTIONS(3646), - [anon_sym_L_DQUOTE] = ACTIONS(3646), - [anon_sym_u_DQUOTE] = ACTIONS(3646), - [anon_sym_U_DQUOTE] = ACTIONS(3646), - [anon_sym_u8_DQUOTE] = ACTIONS(3646), - [anon_sym_DQUOTE] = ACTIONS(3646), - [sym_true] = ACTIONS(3644), - [sym_false] = ACTIONS(3644), - [anon_sym_NULL] = ACTIONS(3644), - [anon_sym_nullptr] = ACTIONS(3644), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3644), - [anon_sym_decltype] = ACTIONS(3644), - [anon_sym_virtual] = ACTIONS(3644), - [anon_sym_alignas] = ACTIONS(3644), - [anon_sym_explicit] = ACTIONS(3644), - [anon_sym_typename] = ACTIONS(3644), - [anon_sym_template] = ACTIONS(3644), - [anon_sym_operator] = ACTIONS(3644), - [anon_sym_try] = ACTIONS(3644), - [anon_sym_delete] = ACTIONS(3644), - [anon_sym_throw] = ACTIONS(3644), - [anon_sym_namespace] = ACTIONS(3644), - [anon_sym_using] = ACTIONS(3644), - [anon_sym_static_assert] = ACTIONS(3644), - [anon_sym_concept] = ACTIONS(3644), - [anon_sym_co_return] = ACTIONS(3644), - [anon_sym_co_yield] = ACTIONS(3644), - [anon_sym_R_DQUOTE] = ACTIONS(3646), - [anon_sym_LR_DQUOTE] = ACTIONS(3646), - [anon_sym_uR_DQUOTE] = ACTIONS(3646), - [anon_sym_UR_DQUOTE] = ACTIONS(3646), - [anon_sym_u8R_DQUOTE] = ACTIONS(3646), - [anon_sym_co_await] = ACTIONS(3644), - [anon_sym_new] = ACTIONS(3644), - [anon_sym_requires] = ACTIONS(3644), - [sym_this] = ACTIONS(3644), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3646), - [sym_semgrep_named_ellipsis] = ACTIONS(3646), - }, - [699] = { - [sym_identifier] = ACTIONS(3408), - [aux_sym_preproc_include_token1] = ACTIONS(3408), - [aux_sym_preproc_def_token1] = ACTIONS(3408), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3410), - [aux_sym_preproc_if_token1] = ACTIONS(3408), - [aux_sym_preproc_if_token2] = ACTIONS(3408), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3408), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3408), - [sym_preproc_directive] = ACTIONS(3408), - [anon_sym_LPAREN2] = ACTIONS(3410), - [anon_sym_BANG] = ACTIONS(3410), - [anon_sym_TILDE] = ACTIONS(3410), - [anon_sym_DASH] = ACTIONS(3408), - [anon_sym_PLUS] = ACTIONS(3408), - [anon_sym_STAR] = ACTIONS(3410), - [anon_sym_AMP_AMP] = ACTIONS(3410), - [anon_sym_AMP] = ACTIONS(3408), - [anon_sym_SEMI] = ACTIONS(3410), - [anon_sym___extension__] = ACTIONS(3408), - [anon_sym_typedef] = ACTIONS(3408), - [anon_sym_extern] = ACTIONS(3408), - [anon_sym___attribute__] = ACTIONS(3408), - [anon_sym_COLON_COLON] = ACTIONS(3410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3410), - [anon_sym___declspec] = ACTIONS(3408), - [anon_sym___based] = ACTIONS(3408), - [anon_sym___cdecl] = ACTIONS(3408), - [anon_sym___clrcall] = ACTIONS(3408), - [anon_sym___stdcall] = ACTIONS(3408), - [anon_sym___fastcall] = ACTIONS(3408), - [anon_sym___thiscall] = ACTIONS(3408), - [anon_sym___vectorcall] = ACTIONS(3408), - [anon_sym_LBRACE] = ACTIONS(3410), - [anon_sym_signed] = ACTIONS(3408), - [anon_sym_unsigned] = ACTIONS(3408), - [anon_sym_long] = ACTIONS(3408), - [anon_sym_short] = ACTIONS(3408), - [anon_sym_LBRACK] = ACTIONS(3408), - [anon_sym_static] = ACTIONS(3408), - [anon_sym_register] = ACTIONS(3408), - [anon_sym_inline] = ACTIONS(3408), - [anon_sym___inline] = ACTIONS(3408), - [anon_sym___inline__] = ACTIONS(3408), - [anon_sym___forceinline] = ACTIONS(3408), - [anon_sym_thread_local] = ACTIONS(3408), - [anon_sym___thread] = ACTIONS(3408), - [anon_sym_const] = ACTIONS(3408), - [anon_sym_constexpr] = ACTIONS(3408), - [anon_sym_volatile] = ACTIONS(3408), - [anon_sym_restrict] = ACTIONS(3408), - [anon_sym___restrict__] = ACTIONS(3408), - [anon_sym__Atomic] = ACTIONS(3408), - [anon_sym__Noreturn] = ACTIONS(3408), - [anon_sym_noreturn] = ACTIONS(3408), - [anon_sym_mutable] = ACTIONS(3408), - [anon_sym_constinit] = ACTIONS(3408), - [anon_sym_consteval] = ACTIONS(3408), - [sym_primitive_type] = ACTIONS(3408), - [anon_sym_enum] = ACTIONS(3408), - [anon_sym_class] = ACTIONS(3408), - [anon_sym_struct] = ACTIONS(3408), - [anon_sym_union] = ACTIONS(3408), - [anon_sym_if] = ACTIONS(3408), - [anon_sym_switch] = ACTIONS(3408), - [anon_sym_case] = ACTIONS(3408), - [anon_sym_default] = ACTIONS(3408), - [anon_sym_while] = ACTIONS(3408), - [anon_sym_do] = ACTIONS(3408), - [anon_sym_for] = ACTIONS(3408), - [anon_sym_return] = ACTIONS(3408), - [anon_sym_break] = ACTIONS(3408), - [anon_sym_continue] = ACTIONS(3408), - [anon_sym_goto] = ACTIONS(3408), - [anon_sym___try] = ACTIONS(3408), - [anon_sym___leave] = ACTIONS(3408), - [anon_sym_not] = ACTIONS(3408), - [anon_sym_compl] = ACTIONS(3408), - [anon_sym_DASH_DASH] = ACTIONS(3410), - [anon_sym_PLUS_PLUS] = ACTIONS(3410), - [anon_sym_sizeof] = ACTIONS(3408), - [anon_sym___alignof__] = ACTIONS(3408), - [anon_sym___alignof] = ACTIONS(3408), - [anon_sym__alignof] = ACTIONS(3408), - [anon_sym_alignof] = ACTIONS(3408), - [anon_sym__Alignof] = ACTIONS(3408), - [anon_sym_offsetof] = ACTIONS(3408), - [anon_sym__Generic] = ACTIONS(3408), - [anon_sym_asm] = ACTIONS(3408), - [anon_sym___asm__] = ACTIONS(3408), - [sym_number_literal] = ACTIONS(3410), - [anon_sym_L_SQUOTE] = ACTIONS(3410), - [anon_sym_u_SQUOTE] = ACTIONS(3410), - [anon_sym_U_SQUOTE] = ACTIONS(3410), - [anon_sym_u8_SQUOTE] = ACTIONS(3410), - [anon_sym_SQUOTE] = ACTIONS(3410), - [anon_sym_L_DQUOTE] = ACTIONS(3410), - [anon_sym_u_DQUOTE] = ACTIONS(3410), - [anon_sym_U_DQUOTE] = ACTIONS(3410), - [anon_sym_u8_DQUOTE] = ACTIONS(3410), - [anon_sym_DQUOTE] = ACTIONS(3410), - [sym_true] = ACTIONS(3408), - [sym_false] = ACTIONS(3408), - [anon_sym_NULL] = ACTIONS(3408), - [anon_sym_nullptr] = ACTIONS(3408), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3408), - [anon_sym_decltype] = ACTIONS(3408), - [anon_sym_virtual] = ACTIONS(3408), - [anon_sym_alignas] = ACTIONS(3408), - [anon_sym_explicit] = ACTIONS(3408), - [anon_sym_typename] = ACTIONS(3408), - [anon_sym_template] = ACTIONS(3408), - [anon_sym_operator] = ACTIONS(3408), - [anon_sym_try] = ACTIONS(3408), - [anon_sym_delete] = ACTIONS(3408), - [anon_sym_throw] = ACTIONS(3408), - [anon_sym_namespace] = ACTIONS(3408), - [anon_sym_using] = ACTIONS(3408), - [anon_sym_static_assert] = ACTIONS(3408), - [anon_sym_concept] = ACTIONS(3408), - [anon_sym_co_return] = ACTIONS(3408), - [anon_sym_co_yield] = ACTIONS(3408), - [anon_sym_R_DQUOTE] = ACTIONS(3410), - [anon_sym_LR_DQUOTE] = ACTIONS(3410), - [anon_sym_uR_DQUOTE] = ACTIONS(3410), - [anon_sym_UR_DQUOTE] = ACTIONS(3410), - [anon_sym_u8R_DQUOTE] = ACTIONS(3410), - [anon_sym_co_await] = ACTIONS(3408), - [anon_sym_new] = ACTIONS(3408), - [anon_sym_requires] = ACTIONS(3408), - [sym_this] = ACTIONS(3408), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3410), - [sym_semgrep_named_ellipsis] = ACTIONS(3410), - }, - [700] = { - [sym_identifier] = ACTIONS(3412), - [aux_sym_preproc_include_token1] = ACTIONS(3412), - [aux_sym_preproc_def_token1] = ACTIONS(3412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3414), - [aux_sym_preproc_if_token1] = ACTIONS(3412), - [aux_sym_preproc_if_token2] = ACTIONS(3412), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3412), - [sym_preproc_directive] = ACTIONS(3412), - [anon_sym_LPAREN2] = ACTIONS(3414), - [anon_sym_BANG] = ACTIONS(3414), - [anon_sym_TILDE] = ACTIONS(3414), - [anon_sym_DASH] = ACTIONS(3412), - [anon_sym_PLUS] = ACTIONS(3412), - [anon_sym_STAR] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3414), - [anon_sym_AMP] = ACTIONS(3412), - [anon_sym_SEMI] = ACTIONS(3414), - [anon_sym___extension__] = ACTIONS(3412), - [anon_sym_typedef] = ACTIONS(3412), - [anon_sym_extern] = ACTIONS(3412), - [anon_sym___attribute__] = ACTIONS(3412), - [anon_sym_COLON_COLON] = ACTIONS(3414), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3414), - [anon_sym___declspec] = ACTIONS(3412), - [anon_sym___based] = ACTIONS(3412), - [anon_sym___cdecl] = ACTIONS(3412), - [anon_sym___clrcall] = ACTIONS(3412), - [anon_sym___stdcall] = ACTIONS(3412), - [anon_sym___fastcall] = ACTIONS(3412), - [anon_sym___thiscall] = ACTIONS(3412), - [anon_sym___vectorcall] = ACTIONS(3412), - [anon_sym_LBRACE] = ACTIONS(3414), - [anon_sym_signed] = ACTIONS(3412), - [anon_sym_unsigned] = ACTIONS(3412), - [anon_sym_long] = ACTIONS(3412), - [anon_sym_short] = ACTIONS(3412), - [anon_sym_LBRACK] = ACTIONS(3412), - [anon_sym_static] = ACTIONS(3412), - [anon_sym_register] = ACTIONS(3412), - [anon_sym_inline] = ACTIONS(3412), - [anon_sym___inline] = ACTIONS(3412), - [anon_sym___inline__] = ACTIONS(3412), - [anon_sym___forceinline] = ACTIONS(3412), - [anon_sym_thread_local] = ACTIONS(3412), - [anon_sym___thread] = ACTIONS(3412), - [anon_sym_const] = ACTIONS(3412), - [anon_sym_constexpr] = ACTIONS(3412), - [anon_sym_volatile] = ACTIONS(3412), - [anon_sym_restrict] = ACTIONS(3412), - [anon_sym___restrict__] = ACTIONS(3412), - [anon_sym__Atomic] = ACTIONS(3412), - [anon_sym__Noreturn] = ACTIONS(3412), - [anon_sym_noreturn] = ACTIONS(3412), - [anon_sym_mutable] = ACTIONS(3412), - [anon_sym_constinit] = ACTIONS(3412), - [anon_sym_consteval] = ACTIONS(3412), - [sym_primitive_type] = ACTIONS(3412), - [anon_sym_enum] = ACTIONS(3412), - [anon_sym_class] = ACTIONS(3412), - [anon_sym_struct] = ACTIONS(3412), - [anon_sym_union] = ACTIONS(3412), - [anon_sym_if] = ACTIONS(3412), - [anon_sym_switch] = ACTIONS(3412), - [anon_sym_case] = ACTIONS(3412), - [anon_sym_default] = ACTIONS(3412), - [anon_sym_while] = ACTIONS(3412), - [anon_sym_do] = ACTIONS(3412), - [anon_sym_for] = ACTIONS(3412), - [anon_sym_return] = ACTIONS(3412), - [anon_sym_break] = ACTIONS(3412), - [anon_sym_continue] = ACTIONS(3412), - [anon_sym_goto] = ACTIONS(3412), - [anon_sym___try] = ACTIONS(3412), - [anon_sym___leave] = ACTIONS(3412), - [anon_sym_not] = ACTIONS(3412), - [anon_sym_compl] = ACTIONS(3412), - [anon_sym_DASH_DASH] = ACTIONS(3414), - [anon_sym_PLUS_PLUS] = ACTIONS(3414), - [anon_sym_sizeof] = ACTIONS(3412), - [anon_sym___alignof__] = ACTIONS(3412), - [anon_sym___alignof] = ACTIONS(3412), - [anon_sym__alignof] = ACTIONS(3412), - [anon_sym_alignof] = ACTIONS(3412), - [anon_sym__Alignof] = ACTIONS(3412), - [anon_sym_offsetof] = ACTIONS(3412), - [anon_sym__Generic] = ACTIONS(3412), - [anon_sym_asm] = ACTIONS(3412), - [anon_sym___asm__] = ACTIONS(3412), - [sym_number_literal] = ACTIONS(3414), - [anon_sym_L_SQUOTE] = ACTIONS(3414), - [anon_sym_u_SQUOTE] = ACTIONS(3414), - [anon_sym_U_SQUOTE] = ACTIONS(3414), - [anon_sym_u8_SQUOTE] = ACTIONS(3414), - [anon_sym_SQUOTE] = ACTIONS(3414), - [anon_sym_L_DQUOTE] = ACTIONS(3414), - [anon_sym_u_DQUOTE] = ACTIONS(3414), - [anon_sym_U_DQUOTE] = ACTIONS(3414), - [anon_sym_u8_DQUOTE] = ACTIONS(3414), - [anon_sym_DQUOTE] = ACTIONS(3414), - [sym_true] = ACTIONS(3412), - [sym_false] = ACTIONS(3412), - [anon_sym_NULL] = ACTIONS(3412), - [anon_sym_nullptr] = ACTIONS(3412), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3412), - [anon_sym_decltype] = ACTIONS(3412), - [anon_sym_virtual] = ACTIONS(3412), - [anon_sym_alignas] = ACTIONS(3412), - [anon_sym_explicit] = ACTIONS(3412), - [anon_sym_typename] = ACTIONS(3412), - [anon_sym_template] = ACTIONS(3412), - [anon_sym_operator] = ACTIONS(3412), - [anon_sym_try] = ACTIONS(3412), - [anon_sym_delete] = ACTIONS(3412), - [anon_sym_throw] = ACTIONS(3412), - [anon_sym_namespace] = ACTIONS(3412), - [anon_sym_using] = ACTIONS(3412), - [anon_sym_static_assert] = ACTIONS(3412), - [anon_sym_concept] = ACTIONS(3412), - [anon_sym_co_return] = ACTIONS(3412), - [anon_sym_co_yield] = ACTIONS(3412), - [anon_sym_R_DQUOTE] = ACTIONS(3414), - [anon_sym_LR_DQUOTE] = ACTIONS(3414), - [anon_sym_uR_DQUOTE] = ACTIONS(3414), - [anon_sym_UR_DQUOTE] = ACTIONS(3414), - [anon_sym_u8R_DQUOTE] = ACTIONS(3414), - [anon_sym_co_await] = ACTIONS(3412), - [anon_sym_new] = ACTIONS(3412), - [anon_sym_requires] = ACTIONS(3412), - [sym_this] = ACTIONS(3412), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3414), - [sym_semgrep_named_ellipsis] = ACTIONS(3414), - }, - [701] = { - [sym_identifier] = ACTIONS(3420), - [aux_sym_preproc_include_token1] = ACTIONS(3420), - [aux_sym_preproc_def_token1] = ACTIONS(3420), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3422), - [aux_sym_preproc_if_token1] = ACTIONS(3420), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3420), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3420), - [sym_preproc_directive] = ACTIONS(3420), - [anon_sym_LPAREN2] = ACTIONS(3422), - [anon_sym_BANG] = ACTIONS(3422), - [anon_sym_TILDE] = ACTIONS(3422), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_STAR] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_AMP] = ACTIONS(3420), - [anon_sym_SEMI] = ACTIONS(3422), - [anon_sym___extension__] = ACTIONS(3420), - [anon_sym_typedef] = ACTIONS(3420), - [anon_sym_extern] = ACTIONS(3420), - [anon_sym___attribute__] = ACTIONS(3420), - [anon_sym_COLON_COLON] = ACTIONS(3422), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3422), - [anon_sym___declspec] = ACTIONS(3420), - [anon_sym___based] = ACTIONS(3420), - [anon_sym___cdecl] = ACTIONS(3420), - [anon_sym___clrcall] = ACTIONS(3420), - [anon_sym___stdcall] = ACTIONS(3420), - [anon_sym___fastcall] = ACTIONS(3420), - [anon_sym___thiscall] = ACTIONS(3420), - [anon_sym___vectorcall] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3422), - [anon_sym_RBRACE] = ACTIONS(3422), - [anon_sym_signed] = ACTIONS(3420), - [anon_sym_unsigned] = ACTIONS(3420), - [anon_sym_long] = ACTIONS(3420), - [anon_sym_short] = ACTIONS(3420), - [anon_sym_LBRACK] = ACTIONS(3420), - [anon_sym_static] = ACTIONS(3420), - [anon_sym_register] = ACTIONS(3420), - [anon_sym_inline] = ACTIONS(3420), - [anon_sym___inline] = ACTIONS(3420), - [anon_sym___inline__] = ACTIONS(3420), - [anon_sym___forceinline] = ACTIONS(3420), - [anon_sym_thread_local] = ACTIONS(3420), - [anon_sym___thread] = ACTIONS(3420), - [anon_sym_const] = ACTIONS(3420), - [anon_sym_constexpr] = ACTIONS(3420), - [anon_sym_volatile] = ACTIONS(3420), - [anon_sym_restrict] = ACTIONS(3420), - [anon_sym___restrict__] = ACTIONS(3420), - [anon_sym__Atomic] = ACTIONS(3420), - [anon_sym__Noreturn] = ACTIONS(3420), - [anon_sym_noreturn] = ACTIONS(3420), - [anon_sym_mutable] = ACTIONS(3420), - [anon_sym_constinit] = ACTIONS(3420), - [anon_sym_consteval] = ACTIONS(3420), - [sym_primitive_type] = ACTIONS(3420), - [anon_sym_enum] = ACTIONS(3420), - [anon_sym_class] = ACTIONS(3420), - [anon_sym_struct] = ACTIONS(3420), - [anon_sym_union] = ACTIONS(3420), - [anon_sym_if] = ACTIONS(3420), - [anon_sym_switch] = ACTIONS(3420), - [anon_sym_case] = ACTIONS(3420), - [anon_sym_default] = ACTIONS(3420), - [anon_sym_while] = ACTIONS(3420), - [anon_sym_do] = ACTIONS(3420), - [anon_sym_for] = ACTIONS(3420), - [anon_sym_return] = ACTIONS(3420), - [anon_sym_break] = ACTIONS(3420), - [anon_sym_continue] = ACTIONS(3420), - [anon_sym_goto] = ACTIONS(3420), - [anon_sym___try] = ACTIONS(3420), - [anon_sym___leave] = ACTIONS(3420), - [anon_sym_not] = ACTIONS(3420), - [anon_sym_compl] = ACTIONS(3420), - [anon_sym_DASH_DASH] = ACTIONS(3422), - [anon_sym_PLUS_PLUS] = ACTIONS(3422), - [anon_sym_sizeof] = ACTIONS(3420), - [anon_sym___alignof__] = ACTIONS(3420), - [anon_sym___alignof] = ACTIONS(3420), - [anon_sym__alignof] = ACTIONS(3420), - [anon_sym_alignof] = ACTIONS(3420), - [anon_sym__Alignof] = ACTIONS(3420), - [anon_sym_offsetof] = ACTIONS(3420), - [anon_sym__Generic] = ACTIONS(3420), - [anon_sym_asm] = ACTIONS(3420), - [anon_sym___asm__] = ACTIONS(3420), - [sym_number_literal] = ACTIONS(3422), - [anon_sym_L_SQUOTE] = ACTIONS(3422), - [anon_sym_u_SQUOTE] = ACTIONS(3422), - [anon_sym_U_SQUOTE] = ACTIONS(3422), - [anon_sym_u8_SQUOTE] = ACTIONS(3422), - [anon_sym_SQUOTE] = ACTIONS(3422), - [anon_sym_L_DQUOTE] = ACTIONS(3422), - [anon_sym_u_DQUOTE] = ACTIONS(3422), - [anon_sym_U_DQUOTE] = ACTIONS(3422), - [anon_sym_u8_DQUOTE] = ACTIONS(3422), - [anon_sym_DQUOTE] = ACTIONS(3422), - [sym_true] = ACTIONS(3420), - [sym_false] = ACTIONS(3420), - [anon_sym_NULL] = ACTIONS(3420), - [anon_sym_nullptr] = ACTIONS(3420), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3420), - [anon_sym_decltype] = ACTIONS(3420), - [anon_sym_virtual] = ACTIONS(3420), - [anon_sym_alignas] = ACTIONS(3420), - [anon_sym_explicit] = ACTIONS(3420), - [anon_sym_typename] = ACTIONS(3420), - [anon_sym_template] = ACTIONS(3420), - [anon_sym_operator] = ACTIONS(3420), - [anon_sym_try] = ACTIONS(3420), - [anon_sym_delete] = ACTIONS(3420), - [anon_sym_throw] = ACTIONS(3420), - [anon_sym_namespace] = ACTIONS(3420), - [anon_sym_using] = ACTIONS(3420), - [anon_sym_static_assert] = ACTIONS(3420), - [anon_sym_concept] = ACTIONS(3420), - [anon_sym_co_return] = ACTIONS(3420), - [anon_sym_co_yield] = ACTIONS(3420), - [anon_sym_R_DQUOTE] = ACTIONS(3422), - [anon_sym_LR_DQUOTE] = ACTIONS(3422), - [anon_sym_uR_DQUOTE] = ACTIONS(3422), - [anon_sym_UR_DQUOTE] = ACTIONS(3422), - [anon_sym_u8R_DQUOTE] = ACTIONS(3422), - [anon_sym_co_await] = ACTIONS(3420), - [anon_sym_new] = ACTIONS(3420), - [anon_sym_requires] = ACTIONS(3420), - [sym_this] = ACTIONS(3420), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3422), - [sym_semgrep_named_ellipsis] = ACTIONS(3422), - }, - [702] = { - [sym_identifier] = ACTIONS(3416), - [aux_sym_preproc_include_token1] = ACTIONS(3416), - [aux_sym_preproc_def_token1] = ACTIONS(3416), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3418), - [aux_sym_preproc_if_token1] = ACTIONS(3416), - [aux_sym_preproc_if_token2] = ACTIONS(3416), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3416), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3416), - [sym_preproc_directive] = ACTIONS(3416), - [anon_sym_LPAREN2] = ACTIONS(3418), - [anon_sym_BANG] = ACTIONS(3418), - [anon_sym_TILDE] = ACTIONS(3418), - [anon_sym_DASH] = ACTIONS(3416), - [anon_sym_PLUS] = ACTIONS(3416), - [anon_sym_STAR] = ACTIONS(3418), - [anon_sym_AMP_AMP] = ACTIONS(3418), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_SEMI] = ACTIONS(3418), - [anon_sym___extension__] = ACTIONS(3416), - [anon_sym_typedef] = ACTIONS(3416), - [anon_sym_extern] = ACTIONS(3416), - [anon_sym___attribute__] = ACTIONS(3416), - [anon_sym_COLON_COLON] = ACTIONS(3418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3418), - [anon_sym___declspec] = ACTIONS(3416), - [anon_sym___based] = ACTIONS(3416), - [anon_sym___cdecl] = ACTIONS(3416), - [anon_sym___clrcall] = ACTIONS(3416), - [anon_sym___stdcall] = ACTIONS(3416), - [anon_sym___fastcall] = ACTIONS(3416), - [anon_sym___thiscall] = ACTIONS(3416), - [anon_sym___vectorcall] = ACTIONS(3416), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_signed] = ACTIONS(3416), - [anon_sym_unsigned] = ACTIONS(3416), - [anon_sym_long] = ACTIONS(3416), - [anon_sym_short] = ACTIONS(3416), - [anon_sym_LBRACK] = ACTIONS(3416), - [anon_sym_static] = ACTIONS(3416), - [anon_sym_register] = ACTIONS(3416), - [anon_sym_inline] = ACTIONS(3416), - [anon_sym___inline] = ACTIONS(3416), - [anon_sym___inline__] = ACTIONS(3416), - [anon_sym___forceinline] = ACTIONS(3416), - [anon_sym_thread_local] = ACTIONS(3416), - [anon_sym___thread] = ACTIONS(3416), - [anon_sym_const] = ACTIONS(3416), - [anon_sym_constexpr] = ACTIONS(3416), - [anon_sym_volatile] = ACTIONS(3416), - [anon_sym_restrict] = ACTIONS(3416), - [anon_sym___restrict__] = ACTIONS(3416), - [anon_sym__Atomic] = ACTIONS(3416), - [anon_sym__Noreturn] = ACTIONS(3416), - [anon_sym_noreturn] = ACTIONS(3416), - [anon_sym_mutable] = ACTIONS(3416), - [anon_sym_constinit] = ACTIONS(3416), - [anon_sym_consteval] = ACTIONS(3416), - [sym_primitive_type] = ACTIONS(3416), - [anon_sym_enum] = ACTIONS(3416), - [anon_sym_class] = ACTIONS(3416), - [anon_sym_struct] = ACTIONS(3416), - [anon_sym_union] = ACTIONS(3416), - [anon_sym_if] = ACTIONS(3416), - [anon_sym_switch] = ACTIONS(3416), - [anon_sym_case] = ACTIONS(3416), - [anon_sym_default] = ACTIONS(3416), - [anon_sym_while] = ACTIONS(3416), - [anon_sym_do] = ACTIONS(3416), - [anon_sym_for] = ACTIONS(3416), - [anon_sym_return] = ACTIONS(3416), - [anon_sym_break] = ACTIONS(3416), - [anon_sym_continue] = ACTIONS(3416), - [anon_sym_goto] = ACTIONS(3416), - [anon_sym___try] = ACTIONS(3416), - [anon_sym___leave] = ACTIONS(3416), - [anon_sym_not] = ACTIONS(3416), - [anon_sym_compl] = ACTIONS(3416), - [anon_sym_DASH_DASH] = ACTIONS(3418), - [anon_sym_PLUS_PLUS] = ACTIONS(3418), - [anon_sym_sizeof] = ACTIONS(3416), - [anon_sym___alignof__] = ACTIONS(3416), - [anon_sym___alignof] = ACTIONS(3416), - [anon_sym__alignof] = ACTIONS(3416), - [anon_sym_alignof] = ACTIONS(3416), - [anon_sym__Alignof] = ACTIONS(3416), - [anon_sym_offsetof] = ACTIONS(3416), - [anon_sym__Generic] = ACTIONS(3416), - [anon_sym_asm] = ACTIONS(3416), - [anon_sym___asm__] = ACTIONS(3416), - [sym_number_literal] = ACTIONS(3418), - [anon_sym_L_SQUOTE] = ACTIONS(3418), - [anon_sym_u_SQUOTE] = ACTIONS(3418), - [anon_sym_U_SQUOTE] = ACTIONS(3418), - [anon_sym_u8_SQUOTE] = ACTIONS(3418), - [anon_sym_SQUOTE] = ACTIONS(3418), - [anon_sym_L_DQUOTE] = ACTIONS(3418), - [anon_sym_u_DQUOTE] = ACTIONS(3418), - [anon_sym_U_DQUOTE] = ACTIONS(3418), - [anon_sym_u8_DQUOTE] = ACTIONS(3418), - [anon_sym_DQUOTE] = ACTIONS(3418), - [sym_true] = ACTIONS(3416), - [sym_false] = ACTIONS(3416), - [anon_sym_NULL] = ACTIONS(3416), - [anon_sym_nullptr] = ACTIONS(3416), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3416), - [anon_sym_decltype] = ACTIONS(3416), - [anon_sym_virtual] = ACTIONS(3416), - [anon_sym_alignas] = ACTIONS(3416), - [anon_sym_explicit] = ACTIONS(3416), - [anon_sym_typename] = ACTIONS(3416), - [anon_sym_template] = ACTIONS(3416), - [anon_sym_operator] = ACTIONS(3416), - [anon_sym_try] = ACTIONS(3416), - [anon_sym_delete] = ACTIONS(3416), - [anon_sym_throw] = ACTIONS(3416), - [anon_sym_namespace] = ACTIONS(3416), - [anon_sym_using] = ACTIONS(3416), - [anon_sym_static_assert] = ACTIONS(3416), - [anon_sym_concept] = ACTIONS(3416), - [anon_sym_co_return] = ACTIONS(3416), - [anon_sym_co_yield] = ACTIONS(3416), - [anon_sym_R_DQUOTE] = ACTIONS(3418), - [anon_sym_LR_DQUOTE] = ACTIONS(3418), - [anon_sym_uR_DQUOTE] = ACTIONS(3418), - [anon_sym_UR_DQUOTE] = ACTIONS(3418), - [anon_sym_u8R_DQUOTE] = ACTIONS(3418), - [anon_sym_co_await] = ACTIONS(3416), - [anon_sym_new] = ACTIONS(3416), - [anon_sym_requires] = ACTIONS(3416), - [sym_this] = ACTIONS(3416), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3418), - [sym_semgrep_named_ellipsis] = ACTIONS(3418), - }, - [703] = { - [sym_identifier] = ACTIONS(3614), - [aux_sym_preproc_include_token1] = ACTIONS(3614), - [aux_sym_preproc_def_token1] = ACTIONS(3614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3616), - [aux_sym_preproc_if_token1] = ACTIONS(3614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3614), - [sym_preproc_directive] = ACTIONS(3614), - [anon_sym_LPAREN2] = ACTIONS(3616), - [anon_sym_BANG] = ACTIONS(3616), - [anon_sym_TILDE] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_STAR] = ACTIONS(3616), - [anon_sym_AMP_AMP] = ACTIONS(3616), - [anon_sym_AMP] = ACTIONS(3614), - [anon_sym_SEMI] = ACTIONS(3616), - [anon_sym___extension__] = ACTIONS(3614), - [anon_sym_typedef] = ACTIONS(3614), - [anon_sym_extern] = ACTIONS(3614), - [anon_sym___attribute__] = ACTIONS(3614), - [anon_sym_COLON_COLON] = ACTIONS(3616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3616), - [anon_sym___declspec] = ACTIONS(3614), - [anon_sym___based] = ACTIONS(3614), - [anon_sym___cdecl] = ACTIONS(3614), - [anon_sym___clrcall] = ACTIONS(3614), - [anon_sym___stdcall] = ACTIONS(3614), - [anon_sym___fastcall] = ACTIONS(3614), - [anon_sym___thiscall] = ACTIONS(3614), - [anon_sym___vectorcall] = ACTIONS(3614), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_RBRACE] = ACTIONS(3616), - [anon_sym_signed] = ACTIONS(3614), - [anon_sym_unsigned] = ACTIONS(3614), - [anon_sym_long] = ACTIONS(3614), - [anon_sym_short] = ACTIONS(3614), - [anon_sym_LBRACK] = ACTIONS(3614), - [anon_sym_static] = ACTIONS(3614), - [anon_sym_register] = ACTIONS(3614), - [anon_sym_inline] = ACTIONS(3614), - [anon_sym___inline] = ACTIONS(3614), - [anon_sym___inline__] = ACTIONS(3614), - [anon_sym___forceinline] = ACTIONS(3614), - [anon_sym_thread_local] = ACTIONS(3614), - [anon_sym___thread] = ACTIONS(3614), - [anon_sym_const] = ACTIONS(3614), - [anon_sym_constexpr] = ACTIONS(3614), - [anon_sym_volatile] = ACTIONS(3614), - [anon_sym_restrict] = ACTIONS(3614), - [anon_sym___restrict__] = ACTIONS(3614), - [anon_sym__Atomic] = ACTIONS(3614), - [anon_sym__Noreturn] = ACTIONS(3614), - [anon_sym_noreturn] = ACTIONS(3614), - [anon_sym_mutable] = ACTIONS(3614), - [anon_sym_constinit] = ACTIONS(3614), - [anon_sym_consteval] = ACTIONS(3614), - [sym_primitive_type] = ACTIONS(3614), - [anon_sym_enum] = ACTIONS(3614), - [anon_sym_class] = ACTIONS(3614), - [anon_sym_struct] = ACTIONS(3614), - [anon_sym_union] = ACTIONS(3614), - [anon_sym_if] = ACTIONS(3614), - [anon_sym_switch] = ACTIONS(3614), - [anon_sym_case] = ACTIONS(3614), - [anon_sym_default] = ACTIONS(3614), - [anon_sym_while] = ACTIONS(3614), - [anon_sym_do] = ACTIONS(3614), - [anon_sym_for] = ACTIONS(3614), - [anon_sym_return] = ACTIONS(3614), - [anon_sym_break] = ACTIONS(3614), - [anon_sym_continue] = ACTIONS(3614), - [anon_sym_goto] = ACTIONS(3614), - [anon_sym___try] = ACTIONS(3614), - [anon_sym___leave] = ACTIONS(3614), - [anon_sym_not] = ACTIONS(3614), - [anon_sym_compl] = ACTIONS(3614), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_sizeof] = ACTIONS(3614), - [anon_sym___alignof__] = ACTIONS(3614), - [anon_sym___alignof] = ACTIONS(3614), - [anon_sym__alignof] = ACTIONS(3614), - [anon_sym_alignof] = ACTIONS(3614), - [anon_sym__Alignof] = ACTIONS(3614), - [anon_sym_offsetof] = ACTIONS(3614), - [anon_sym__Generic] = ACTIONS(3614), - [anon_sym_asm] = ACTIONS(3614), - [anon_sym___asm__] = ACTIONS(3614), - [sym_number_literal] = ACTIONS(3616), - [anon_sym_L_SQUOTE] = ACTIONS(3616), - [anon_sym_u_SQUOTE] = ACTIONS(3616), - [anon_sym_U_SQUOTE] = ACTIONS(3616), - [anon_sym_u8_SQUOTE] = ACTIONS(3616), - [anon_sym_SQUOTE] = ACTIONS(3616), - [anon_sym_L_DQUOTE] = ACTIONS(3616), - [anon_sym_u_DQUOTE] = ACTIONS(3616), - [anon_sym_U_DQUOTE] = ACTIONS(3616), - [anon_sym_u8_DQUOTE] = ACTIONS(3616), - [anon_sym_DQUOTE] = ACTIONS(3616), - [sym_true] = ACTIONS(3614), - [sym_false] = ACTIONS(3614), - [anon_sym_NULL] = ACTIONS(3614), - [anon_sym_nullptr] = ACTIONS(3614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3614), - [anon_sym_decltype] = ACTIONS(3614), - [anon_sym_virtual] = ACTIONS(3614), - [anon_sym_alignas] = ACTIONS(3614), - [anon_sym_explicit] = ACTIONS(3614), - [anon_sym_typename] = ACTIONS(3614), - [anon_sym_template] = ACTIONS(3614), - [anon_sym_operator] = ACTIONS(3614), - [anon_sym_try] = ACTIONS(3614), - [anon_sym_delete] = ACTIONS(3614), - [anon_sym_throw] = ACTIONS(3614), - [anon_sym_namespace] = ACTIONS(3614), - [anon_sym_using] = ACTIONS(3614), - [anon_sym_static_assert] = ACTIONS(3614), - [anon_sym_concept] = ACTIONS(3614), - [anon_sym_co_return] = ACTIONS(3614), - [anon_sym_co_yield] = ACTIONS(3614), - [anon_sym_R_DQUOTE] = ACTIONS(3616), - [anon_sym_LR_DQUOTE] = ACTIONS(3616), - [anon_sym_uR_DQUOTE] = ACTIONS(3616), - [anon_sym_UR_DQUOTE] = ACTIONS(3616), - [anon_sym_u8R_DQUOTE] = ACTIONS(3616), - [anon_sym_co_await] = ACTIONS(3614), - [anon_sym_new] = ACTIONS(3614), - [anon_sym_requires] = ACTIONS(3614), - [sym_this] = ACTIONS(3614), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3616), - [sym_semgrep_named_ellipsis] = ACTIONS(3616), - }, - [704] = { - [sym_identifier] = ACTIONS(3491), - [aux_sym_preproc_include_token1] = ACTIONS(3491), - [aux_sym_preproc_def_token1] = ACTIONS(3491), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3493), - [aux_sym_preproc_if_token1] = ACTIONS(3491), - [aux_sym_preproc_if_token2] = ACTIONS(3491), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3491), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3491), - [sym_preproc_directive] = ACTIONS(3491), - [anon_sym_LPAREN2] = ACTIONS(3493), - [anon_sym_BANG] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(3493), - [anon_sym_DASH] = ACTIONS(3491), - [anon_sym_PLUS] = ACTIONS(3491), - [anon_sym_STAR] = ACTIONS(3493), - [anon_sym_AMP_AMP] = ACTIONS(3493), - [anon_sym_AMP] = ACTIONS(3491), - [anon_sym_SEMI] = ACTIONS(3493), - [anon_sym___extension__] = ACTIONS(3491), - [anon_sym_typedef] = ACTIONS(3491), - [anon_sym_extern] = ACTIONS(3491), - [anon_sym___attribute__] = ACTIONS(3491), - [anon_sym_COLON_COLON] = ACTIONS(3493), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3493), - [anon_sym___declspec] = ACTIONS(3491), - [anon_sym___based] = ACTIONS(3491), - [anon_sym___cdecl] = ACTIONS(3491), - [anon_sym___clrcall] = ACTIONS(3491), - [anon_sym___stdcall] = ACTIONS(3491), - [anon_sym___fastcall] = ACTIONS(3491), - [anon_sym___thiscall] = ACTIONS(3491), - [anon_sym___vectorcall] = ACTIONS(3491), - [anon_sym_LBRACE] = ACTIONS(3493), - [anon_sym_signed] = ACTIONS(3491), - [anon_sym_unsigned] = ACTIONS(3491), - [anon_sym_long] = ACTIONS(3491), - [anon_sym_short] = ACTIONS(3491), - [anon_sym_LBRACK] = ACTIONS(3491), - [anon_sym_static] = ACTIONS(3491), - [anon_sym_register] = ACTIONS(3491), - [anon_sym_inline] = ACTIONS(3491), - [anon_sym___inline] = ACTIONS(3491), - [anon_sym___inline__] = ACTIONS(3491), - [anon_sym___forceinline] = ACTIONS(3491), - [anon_sym_thread_local] = ACTIONS(3491), - [anon_sym___thread] = ACTIONS(3491), - [anon_sym_const] = ACTIONS(3491), - [anon_sym_constexpr] = ACTIONS(3491), - [anon_sym_volatile] = ACTIONS(3491), - [anon_sym_restrict] = ACTIONS(3491), - [anon_sym___restrict__] = ACTIONS(3491), - [anon_sym__Atomic] = ACTIONS(3491), - [anon_sym__Noreturn] = ACTIONS(3491), - [anon_sym_noreturn] = ACTIONS(3491), - [anon_sym_mutable] = ACTIONS(3491), - [anon_sym_constinit] = ACTIONS(3491), - [anon_sym_consteval] = ACTIONS(3491), - [sym_primitive_type] = ACTIONS(3491), - [anon_sym_enum] = ACTIONS(3491), - [anon_sym_class] = ACTIONS(3491), - [anon_sym_struct] = ACTIONS(3491), - [anon_sym_union] = ACTIONS(3491), - [anon_sym_if] = ACTIONS(3491), - [anon_sym_switch] = ACTIONS(3491), - [anon_sym_case] = ACTIONS(3491), - [anon_sym_default] = ACTIONS(3491), - [anon_sym_while] = ACTIONS(3491), - [anon_sym_do] = ACTIONS(3491), - [anon_sym_for] = ACTIONS(3491), - [anon_sym_return] = ACTIONS(3491), - [anon_sym_break] = ACTIONS(3491), - [anon_sym_continue] = ACTIONS(3491), - [anon_sym_goto] = ACTIONS(3491), - [anon_sym___try] = ACTIONS(3491), - [anon_sym___leave] = ACTIONS(3491), - [anon_sym_not] = ACTIONS(3491), - [anon_sym_compl] = ACTIONS(3491), - [anon_sym_DASH_DASH] = ACTIONS(3493), - [anon_sym_PLUS_PLUS] = ACTIONS(3493), - [anon_sym_sizeof] = ACTIONS(3491), - [anon_sym___alignof__] = ACTIONS(3491), - [anon_sym___alignof] = ACTIONS(3491), - [anon_sym__alignof] = ACTIONS(3491), - [anon_sym_alignof] = ACTIONS(3491), - [anon_sym__Alignof] = ACTIONS(3491), - [anon_sym_offsetof] = ACTIONS(3491), - [anon_sym__Generic] = ACTIONS(3491), - [anon_sym_asm] = ACTIONS(3491), - [anon_sym___asm__] = ACTIONS(3491), - [sym_number_literal] = ACTIONS(3493), - [anon_sym_L_SQUOTE] = ACTIONS(3493), - [anon_sym_u_SQUOTE] = ACTIONS(3493), - [anon_sym_U_SQUOTE] = ACTIONS(3493), - [anon_sym_u8_SQUOTE] = ACTIONS(3493), - [anon_sym_SQUOTE] = ACTIONS(3493), - [anon_sym_L_DQUOTE] = ACTIONS(3493), - [anon_sym_u_DQUOTE] = ACTIONS(3493), - [anon_sym_U_DQUOTE] = ACTIONS(3493), - [anon_sym_u8_DQUOTE] = ACTIONS(3493), - [anon_sym_DQUOTE] = ACTIONS(3493), - [sym_true] = ACTIONS(3491), - [sym_false] = ACTIONS(3491), - [anon_sym_NULL] = ACTIONS(3491), - [anon_sym_nullptr] = ACTIONS(3491), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3491), - [anon_sym_decltype] = ACTIONS(3491), - [anon_sym_virtual] = ACTIONS(3491), - [anon_sym_alignas] = ACTIONS(3491), - [anon_sym_explicit] = ACTIONS(3491), - [anon_sym_typename] = ACTIONS(3491), - [anon_sym_template] = ACTIONS(3491), - [anon_sym_operator] = ACTIONS(3491), - [anon_sym_try] = ACTIONS(3491), - [anon_sym_delete] = ACTIONS(3491), - [anon_sym_throw] = ACTIONS(3491), - [anon_sym_namespace] = ACTIONS(3491), - [anon_sym_using] = ACTIONS(3491), - [anon_sym_static_assert] = ACTIONS(3491), - [anon_sym_concept] = ACTIONS(3491), - [anon_sym_co_return] = ACTIONS(3491), - [anon_sym_co_yield] = ACTIONS(3491), - [anon_sym_R_DQUOTE] = ACTIONS(3493), - [anon_sym_LR_DQUOTE] = ACTIONS(3493), - [anon_sym_uR_DQUOTE] = ACTIONS(3493), - [anon_sym_UR_DQUOTE] = ACTIONS(3493), - [anon_sym_u8R_DQUOTE] = ACTIONS(3493), - [anon_sym_co_await] = ACTIONS(3491), - [anon_sym_new] = ACTIONS(3491), - [anon_sym_requires] = ACTIONS(3491), - [sym_this] = ACTIONS(3491), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3493), - [sym_semgrep_named_ellipsis] = ACTIONS(3493), - }, - [705] = { - [sym_identifier] = ACTIONS(3420), - [aux_sym_preproc_include_token1] = ACTIONS(3420), - [aux_sym_preproc_def_token1] = ACTIONS(3420), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3422), - [aux_sym_preproc_if_token1] = ACTIONS(3420), - [aux_sym_preproc_if_token2] = ACTIONS(3420), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3420), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3420), - [sym_preproc_directive] = ACTIONS(3420), - [anon_sym_LPAREN2] = ACTIONS(3422), - [anon_sym_BANG] = ACTIONS(3422), - [anon_sym_TILDE] = ACTIONS(3422), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_STAR] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_AMP] = ACTIONS(3420), - [anon_sym_SEMI] = ACTIONS(3422), - [anon_sym___extension__] = ACTIONS(3420), - [anon_sym_typedef] = ACTIONS(3420), - [anon_sym_extern] = ACTIONS(3420), - [anon_sym___attribute__] = ACTIONS(3420), - [anon_sym_COLON_COLON] = ACTIONS(3422), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3422), - [anon_sym___declspec] = ACTIONS(3420), - [anon_sym___based] = ACTIONS(3420), - [anon_sym___cdecl] = ACTIONS(3420), - [anon_sym___clrcall] = ACTIONS(3420), - [anon_sym___stdcall] = ACTIONS(3420), - [anon_sym___fastcall] = ACTIONS(3420), - [anon_sym___thiscall] = ACTIONS(3420), - [anon_sym___vectorcall] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3422), - [anon_sym_signed] = ACTIONS(3420), - [anon_sym_unsigned] = ACTIONS(3420), - [anon_sym_long] = ACTIONS(3420), - [anon_sym_short] = ACTIONS(3420), - [anon_sym_LBRACK] = ACTIONS(3420), - [anon_sym_static] = ACTIONS(3420), - [anon_sym_register] = ACTIONS(3420), - [anon_sym_inline] = ACTIONS(3420), - [anon_sym___inline] = ACTIONS(3420), - [anon_sym___inline__] = ACTIONS(3420), - [anon_sym___forceinline] = ACTIONS(3420), - [anon_sym_thread_local] = ACTIONS(3420), - [anon_sym___thread] = ACTIONS(3420), - [anon_sym_const] = ACTIONS(3420), - [anon_sym_constexpr] = ACTIONS(3420), - [anon_sym_volatile] = ACTIONS(3420), - [anon_sym_restrict] = ACTIONS(3420), - [anon_sym___restrict__] = ACTIONS(3420), - [anon_sym__Atomic] = ACTIONS(3420), - [anon_sym__Noreturn] = ACTIONS(3420), - [anon_sym_noreturn] = ACTIONS(3420), - [anon_sym_mutable] = ACTIONS(3420), - [anon_sym_constinit] = ACTIONS(3420), - [anon_sym_consteval] = ACTIONS(3420), - [sym_primitive_type] = ACTIONS(3420), - [anon_sym_enum] = ACTIONS(3420), - [anon_sym_class] = ACTIONS(3420), - [anon_sym_struct] = ACTIONS(3420), - [anon_sym_union] = ACTIONS(3420), - [anon_sym_if] = ACTIONS(3420), - [anon_sym_switch] = ACTIONS(3420), - [anon_sym_case] = ACTIONS(3420), - [anon_sym_default] = ACTIONS(3420), - [anon_sym_while] = ACTIONS(3420), - [anon_sym_do] = ACTIONS(3420), - [anon_sym_for] = ACTIONS(3420), - [anon_sym_return] = ACTIONS(3420), - [anon_sym_break] = ACTIONS(3420), - [anon_sym_continue] = ACTIONS(3420), - [anon_sym_goto] = ACTIONS(3420), - [anon_sym___try] = ACTIONS(3420), - [anon_sym___leave] = ACTIONS(3420), - [anon_sym_not] = ACTIONS(3420), - [anon_sym_compl] = ACTIONS(3420), - [anon_sym_DASH_DASH] = ACTIONS(3422), - [anon_sym_PLUS_PLUS] = ACTIONS(3422), - [anon_sym_sizeof] = ACTIONS(3420), - [anon_sym___alignof__] = ACTIONS(3420), - [anon_sym___alignof] = ACTIONS(3420), - [anon_sym__alignof] = ACTIONS(3420), - [anon_sym_alignof] = ACTIONS(3420), - [anon_sym__Alignof] = ACTIONS(3420), - [anon_sym_offsetof] = ACTIONS(3420), - [anon_sym__Generic] = ACTIONS(3420), - [anon_sym_asm] = ACTIONS(3420), - [anon_sym___asm__] = ACTIONS(3420), - [sym_number_literal] = ACTIONS(3422), - [anon_sym_L_SQUOTE] = ACTIONS(3422), - [anon_sym_u_SQUOTE] = ACTIONS(3422), - [anon_sym_U_SQUOTE] = ACTIONS(3422), - [anon_sym_u8_SQUOTE] = ACTIONS(3422), - [anon_sym_SQUOTE] = ACTIONS(3422), - [anon_sym_L_DQUOTE] = ACTIONS(3422), - [anon_sym_u_DQUOTE] = ACTIONS(3422), - [anon_sym_U_DQUOTE] = ACTIONS(3422), - [anon_sym_u8_DQUOTE] = ACTIONS(3422), - [anon_sym_DQUOTE] = ACTIONS(3422), - [sym_true] = ACTIONS(3420), - [sym_false] = ACTIONS(3420), - [anon_sym_NULL] = ACTIONS(3420), - [anon_sym_nullptr] = ACTIONS(3420), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3420), - [anon_sym_decltype] = ACTIONS(3420), - [anon_sym_virtual] = ACTIONS(3420), - [anon_sym_alignas] = ACTIONS(3420), - [anon_sym_explicit] = ACTIONS(3420), - [anon_sym_typename] = ACTIONS(3420), - [anon_sym_template] = ACTIONS(3420), - [anon_sym_operator] = ACTIONS(3420), - [anon_sym_try] = ACTIONS(3420), - [anon_sym_delete] = ACTIONS(3420), - [anon_sym_throw] = ACTIONS(3420), - [anon_sym_namespace] = ACTIONS(3420), - [anon_sym_using] = ACTIONS(3420), - [anon_sym_static_assert] = ACTIONS(3420), - [anon_sym_concept] = ACTIONS(3420), - [anon_sym_co_return] = ACTIONS(3420), - [anon_sym_co_yield] = ACTIONS(3420), - [anon_sym_R_DQUOTE] = ACTIONS(3422), - [anon_sym_LR_DQUOTE] = ACTIONS(3422), - [anon_sym_uR_DQUOTE] = ACTIONS(3422), - [anon_sym_UR_DQUOTE] = ACTIONS(3422), - [anon_sym_u8R_DQUOTE] = ACTIONS(3422), - [anon_sym_co_await] = ACTIONS(3420), - [anon_sym_new] = ACTIONS(3420), - [anon_sym_requires] = ACTIONS(3420), - [sym_this] = ACTIONS(3420), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3422), - [sym_semgrep_named_ellipsis] = ACTIONS(3422), - }, - [706] = { - [sym_identifier] = ACTIONS(3511), - [aux_sym_preproc_include_token1] = ACTIONS(3511), - [aux_sym_preproc_def_token1] = ACTIONS(3511), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3513), - [aux_sym_preproc_if_token1] = ACTIONS(3511), - [aux_sym_preproc_if_token2] = ACTIONS(3511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3511), - [sym_preproc_directive] = ACTIONS(3511), - [anon_sym_LPAREN2] = ACTIONS(3513), - [anon_sym_BANG] = ACTIONS(3513), - [anon_sym_TILDE] = ACTIONS(3513), - [anon_sym_DASH] = ACTIONS(3511), - [anon_sym_PLUS] = ACTIONS(3511), - [anon_sym_STAR] = ACTIONS(3513), - [anon_sym_AMP_AMP] = ACTIONS(3513), - [anon_sym_AMP] = ACTIONS(3511), - [anon_sym_SEMI] = ACTIONS(3513), - [anon_sym___extension__] = ACTIONS(3511), - [anon_sym_typedef] = ACTIONS(3511), - [anon_sym_extern] = ACTIONS(3511), - [anon_sym___attribute__] = ACTIONS(3511), - [anon_sym_COLON_COLON] = ACTIONS(3513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3513), - [anon_sym___declspec] = ACTIONS(3511), - [anon_sym___based] = ACTIONS(3511), - [anon_sym___cdecl] = ACTIONS(3511), - [anon_sym___clrcall] = ACTIONS(3511), - [anon_sym___stdcall] = ACTIONS(3511), - [anon_sym___fastcall] = ACTIONS(3511), - [anon_sym___thiscall] = ACTIONS(3511), - [anon_sym___vectorcall] = ACTIONS(3511), - [anon_sym_LBRACE] = ACTIONS(3513), - [anon_sym_signed] = ACTIONS(3511), - [anon_sym_unsigned] = ACTIONS(3511), - [anon_sym_long] = ACTIONS(3511), - [anon_sym_short] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3511), - [anon_sym_static] = ACTIONS(3511), - [anon_sym_register] = ACTIONS(3511), - [anon_sym_inline] = ACTIONS(3511), - [anon_sym___inline] = ACTIONS(3511), - [anon_sym___inline__] = ACTIONS(3511), - [anon_sym___forceinline] = ACTIONS(3511), - [anon_sym_thread_local] = ACTIONS(3511), - [anon_sym___thread] = ACTIONS(3511), - [anon_sym_const] = ACTIONS(3511), - [anon_sym_constexpr] = ACTIONS(3511), - [anon_sym_volatile] = ACTIONS(3511), - [anon_sym_restrict] = ACTIONS(3511), - [anon_sym___restrict__] = ACTIONS(3511), - [anon_sym__Atomic] = ACTIONS(3511), - [anon_sym__Noreturn] = ACTIONS(3511), - [anon_sym_noreturn] = ACTIONS(3511), - [anon_sym_mutable] = ACTIONS(3511), - [anon_sym_constinit] = ACTIONS(3511), - [anon_sym_consteval] = ACTIONS(3511), - [sym_primitive_type] = ACTIONS(3511), - [anon_sym_enum] = ACTIONS(3511), - [anon_sym_class] = ACTIONS(3511), - [anon_sym_struct] = ACTIONS(3511), - [anon_sym_union] = ACTIONS(3511), - [anon_sym_if] = ACTIONS(3511), - [anon_sym_switch] = ACTIONS(3511), - [anon_sym_case] = ACTIONS(3511), - [anon_sym_default] = ACTIONS(3511), - [anon_sym_while] = ACTIONS(3511), - [anon_sym_do] = ACTIONS(3511), - [anon_sym_for] = ACTIONS(3511), - [anon_sym_return] = ACTIONS(3511), - [anon_sym_break] = ACTIONS(3511), - [anon_sym_continue] = ACTIONS(3511), - [anon_sym_goto] = ACTIONS(3511), - [anon_sym___try] = ACTIONS(3511), - [anon_sym___leave] = ACTIONS(3511), - [anon_sym_not] = ACTIONS(3511), - [anon_sym_compl] = ACTIONS(3511), - [anon_sym_DASH_DASH] = ACTIONS(3513), - [anon_sym_PLUS_PLUS] = ACTIONS(3513), - [anon_sym_sizeof] = ACTIONS(3511), - [anon_sym___alignof__] = ACTIONS(3511), - [anon_sym___alignof] = ACTIONS(3511), - [anon_sym__alignof] = ACTIONS(3511), - [anon_sym_alignof] = ACTIONS(3511), - [anon_sym__Alignof] = ACTIONS(3511), - [anon_sym_offsetof] = ACTIONS(3511), - [anon_sym__Generic] = ACTIONS(3511), - [anon_sym_asm] = ACTIONS(3511), - [anon_sym___asm__] = ACTIONS(3511), - [sym_number_literal] = ACTIONS(3513), - [anon_sym_L_SQUOTE] = ACTIONS(3513), - [anon_sym_u_SQUOTE] = ACTIONS(3513), - [anon_sym_U_SQUOTE] = ACTIONS(3513), - [anon_sym_u8_SQUOTE] = ACTIONS(3513), - [anon_sym_SQUOTE] = ACTIONS(3513), - [anon_sym_L_DQUOTE] = ACTIONS(3513), - [anon_sym_u_DQUOTE] = ACTIONS(3513), - [anon_sym_U_DQUOTE] = ACTIONS(3513), - [anon_sym_u8_DQUOTE] = ACTIONS(3513), - [anon_sym_DQUOTE] = ACTIONS(3513), - [sym_true] = ACTIONS(3511), - [sym_false] = ACTIONS(3511), - [anon_sym_NULL] = ACTIONS(3511), - [anon_sym_nullptr] = ACTIONS(3511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3511), - [anon_sym_decltype] = ACTIONS(3511), - [anon_sym_virtual] = ACTIONS(3511), - [anon_sym_alignas] = ACTIONS(3511), - [anon_sym_explicit] = ACTIONS(3511), - [anon_sym_typename] = ACTIONS(3511), - [anon_sym_template] = ACTIONS(3511), - [anon_sym_operator] = ACTIONS(3511), - [anon_sym_try] = ACTIONS(3511), - [anon_sym_delete] = ACTIONS(3511), - [anon_sym_throw] = ACTIONS(3511), - [anon_sym_namespace] = ACTIONS(3511), - [anon_sym_using] = ACTIONS(3511), - [anon_sym_static_assert] = ACTIONS(3511), - [anon_sym_concept] = ACTIONS(3511), - [anon_sym_co_return] = ACTIONS(3511), - [anon_sym_co_yield] = ACTIONS(3511), - [anon_sym_R_DQUOTE] = ACTIONS(3513), - [anon_sym_LR_DQUOTE] = ACTIONS(3513), - [anon_sym_uR_DQUOTE] = ACTIONS(3513), - [anon_sym_UR_DQUOTE] = ACTIONS(3513), - [anon_sym_u8R_DQUOTE] = ACTIONS(3513), - [anon_sym_co_await] = ACTIONS(3511), - [anon_sym_new] = ACTIONS(3511), - [anon_sym_requires] = ACTIONS(3511), - [sym_this] = ACTIONS(3511), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3513), - [sym_semgrep_named_ellipsis] = ACTIONS(3513), - }, - [707] = { - [sym_expression] = STATE(5188), - [sym_expression_not_binary] = STATE(5370), - [sym_conditional_expression] = STATE(5364), - [sym_assignment_expression] = STATE(5364), - [sym_pointer_expression] = STATE(3376), - [sym_unary_expression] = STATE(5364), - [sym_binary_expression] = STATE(5370), - [sym_update_expression] = STATE(5364), - [sym_cast_expression] = STATE(5364), - [sym_sizeof_expression] = STATE(5364), - [sym_alignof_expression] = STATE(5364), - [sym_offsetof_expression] = STATE(5364), - [sym_generic_expression] = STATE(5364), - [sym_subscript_expression] = STATE(3376), - [sym_call_expression] = STATE(3376), - [sym_gnu_asm_expression] = STATE(5364), - [sym_field_expression] = STATE(3376), - [sym_compound_literal_expression] = STATE(5364), - [sym_parenthesized_expression] = STATE(3376), - [sym_initializer_list] = STATE(5393), - [sym_char_literal] = STATE(5241), - [sym_concatenated_string] = STATE(5241), - [sym_string_literal] = STATE(3576), - [sym_null] = STATE(5364), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9412), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5364), - [sym_raw_string_literal] = STATE(3576), - [sym_co_await_expression] = STATE(5364), - [sym_new_expression] = STATE(5364), - [sym_delete_expression] = STATE(5364), - [sym_requires_clause] = STATE(5364), - [sym_requires_expression] = STATE(5364), - [sym_lambda_expression] = STATE(5364), - [sym_lambda_capture_specifier] = STATE(7332), - [sym_fold_expression] = STATE(5364), - [sym_parameter_pack_expansion] = STATE(5364), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3376), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3376), - [sym_semgrep_ellipsis] = STATE(5370), - [sym_deep_ellipsis] = STATE(5370), - [sym_identifier] = ACTIONS(2279), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2281), - [anon_sym_COMMA] = ACTIONS(2281), - [aux_sym_preproc_if_token2] = ACTIONS(2281), - [aux_sym_preproc_else_token1] = ACTIONS(2281), - [aux_sym_preproc_elif_token1] = ACTIONS(2279), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2281), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2281), - [anon_sym_LPAREN2] = ACTIONS(2281), - [anon_sym_BANG] = ACTIONS(3772), - [anon_sym_TILDE] = ACTIONS(3774), - [anon_sym_DASH] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2279), - [anon_sym_STAR] = ACTIONS(2281), - [anon_sym_SLASH] = ACTIONS(2279), - [anon_sym_PERCENT] = ACTIONS(2281), - [anon_sym_PIPE_PIPE] = ACTIONS(2281), - [anon_sym_AMP_AMP] = ACTIONS(2281), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_CARET] = ACTIONS(2281), - [anon_sym_AMP] = ACTIONS(2279), - [anon_sym_EQ_EQ] = ACTIONS(2281), - [anon_sym_BANG_EQ] = ACTIONS(2281), - [anon_sym_GT] = ACTIONS(2279), - [anon_sym_GT_EQ] = ACTIONS(2281), - [anon_sym_LT_EQ] = ACTIONS(2279), - [anon_sym_LT] = ACTIONS(2279), - [anon_sym_LT_LT] = ACTIONS(2281), - [anon_sym_GT_GT] = ACTIONS(2281), - [anon_sym_COLON_COLON] = ACTIONS(3776), - [anon_sym_LBRACE] = ACTIONS(3778), - [anon_sym_LBRACK] = ACTIONS(2281), - [sym_primitive_type] = ACTIONS(3780), - [anon_sym_QMARK] = ACTIONS(2281), - [anon_sym_not] = ACTIONS(3772), - [anon_sym_compl] = ACTIONS(3772), - [anon_sym_LT_EQ_GT] = ACTIONS(2281), - [anon_sym_or] = ACTIONS(2279), - [anon_sym_and] = ACTIONS(2279), - [anon_sym_bitor] = ACTIONS(2279), - [anon_sym_xor] = ACTIONS(2279), - [anon_sym_bitand] = ACTIONS(2279), - [anon_sym_not_eq] = ACTIONS(2279), - [anon_sym_DASH_DASH] = ACTIONS(2281), - [anon_sym_PLUS_PLUS] = ACTIONS(2281), - [anon_sym_sizeof] = ACTIONS(3782), - [anon_sym___alignof__] = ACTIONS(3784), - [anon_sym___alignof] = ACTIONS(3784), - [anon_sym__alignof] = ACTIONS(3784), - [anon_sym_alignof] = ACTIONS(3784), - [anon_sym__Alignof] = ACTIONS(3784), - [anon_sym_offsetof] = ACTIONS(3786), - [anon_sym__Generic] = ACTIONS(3788), - [anon_sym_asm] = ACTIONS(3790), - [anon_sym___asm__] = ACTIONS(3790), - [anon_sym_DOT] = ACTIONS(2279), - [anon_sym_DOT_STAR] = ACTIONS(2281), - [anon_sym_DASH_GT] = ACTIONS(2281), - [sym_number_literal] = ACTIONS(3792), - [anon_sym_L_SQUOTE] = ACTIONS(3794), - [anon_sym_u_SQUOTE] = ACTIONS(3794), - [anon_sym_U_SQUOTE] = ACTIONS(3794), - [anon_sym_u8_SQUOTE] = ACTIONS(3794), - [anon_sym_SQUOTE] = ACTIONS(3794), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_true] = ACTIONS(3798), - [sym_false] = ACTIONS(3798), - [anon_sym_NULL] = ACTIONS(3800), - [anon_sym_nullptr] = ACTIONS(3800), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3802), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - [anon_sym_co_await] = ACTIONS(3806), - [anon_sym_new] = ACTIONS(3808), - [anon_sym_requires] = ACTIONS(3810), - [sym_this] = ACTIONS(3798), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3812), - [sym_semgrep_named_ellipsis] = ACTIONS(3814), - }, - [708] = { - [sym_identifier] = ACTIONS(3638), - [aux_sym_preproc_include_token1] = ACTIONS(3638), - [aux_sym_preproc_def_token1] = ACTIONS(3638), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3640), - [aux_sym_preproc_if_token1] = ACTIONS(3638), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3638), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3638), - [sym_preproc_directive] = ACTIONS(3638), - [anon_sym_LPAREN2] = ACTIONS(3640), - [anon_sym_BANG] = ACTIONS(3640), - [anon_sym_TILDE] = ACTIONS(3640), - [anon_sym_DASH] = ACTIONS(3638), - [anon_sym_PLUS] = ACTIONS(3638), - [anon_sym_STAR] = ACTIONS(3640), - [anon_sym_AMP_AMP] = ACTIONS(3640), - [anon_sym_AMP] = ACTIONS(3638), - [anon_sym_SEMI] = ACTIONS(3640), - [anon_sym___extension__] = ACTIONS(3638), - [anon_sym_typedef] = ACTIONS(3638), - [anon_sym_extern] = ACTIONS(3638), - [anon_sym___attribute__] = ACTIONS(3638), - [anon_sym_COLON_COLON] = ACTIONS(3640), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3640), - [anon_sym___declspec] = ACTIONS(3638), - [anon_sym___based] = ACTIONS(3638), - [anon_sym___cdecl] = ACTIONS(3638), - [anon_sym___clrcall] = ACTIONS(3638), - [anon_sym___stdcall] = ACTIONS(3638), - [anon_sym___fastcall] = ACTIONS(3638), - [anon_sym___thiscall] = ACTIONS(3638), - [anon_sym___vectorcall] = ACTIONS(3638), - [anon_sym_LBRACE] = ACTIONS(3640), - [anon_sym_RBRACE] = ACTIONS(3640), - [anon_sym_signed] = ACTIONS(3638), - [anon_sym_unsigned] = ACTIONS(3638), - [anon_sym_long] = ACTIONS(3638), - [anon_sym_short] = ACTIONS(3638), - [anon_sym_LBRACK] = ACTIONS(3638), - [anon_sym_static] = ACTIONS(3638), - [anon_sym_register] = ACTIONS(3638), - [anon_sym_inline] = ACTIONS(3638), - [anon_sym___inline] = ACTIONS(3638), - [anon_sym___inline__] = ACTIONS(3638), - [anon_sym___forceinline] = ACTIONS(3638), - [anon_sym_thread_local] = ACTIONS(3638), - [anon_sym___thread] = ACTIONS(3638), - [anon_sym_const] = ACTIONS(3638), - [anon_sym_constexpr] = ACTIONS(3638), - [anon_sym_volatile] = ACTIONS(3638), - [anon_sym_restrict] = ACTIONS(3638), - [anon_sym___restrict__] = ACTIONS(3638), - [anon_sym__Atomic] = ACTIONS(3638), - [anon_sym__Noreturn] = ACTIONS(3638), - [anon_sym_noreturn] = ACTIONS(3638), - [anon_sym_mutable] = ACTIONS(3638), - [anon_sym_constinit] = ACTIONS(3638), - [anon_sym_consteval] = ACTIONS(3638), - [sym_primitive_type] = ACTIONS(3638), - [anon_sym_enum] = ACTIONS(3638), - [anon_sym_class] = ACTIONS(3638), - [anon_sym_struct] = ACTIONS(3638), - [anon_sym_union] = ACTIONS(3638), - [anon_sym_if] = ACTIONS(3638), - [anon_sym_switch] = ACTIONS(3638), - [anon_sym_case] = ACTIONS(3638), - [anon_sym_default] = ACTIONS(3638), - [anon_sym_while] = ACTIONS(3638), - [anon_sym_do] = ACTIONS(3638), - [anon_sym_for] = ACTIONS(3638), - [anon_sym_return] = ACTIONS(3638), - [anon_sym_break] = ACTIONS(3638), - [anon_sym_continue] = ACTIONS(3638), - [anon_sym_goto] = ACTIONS(3638), - [anon_sym___try] = ACTIONS(3638), - [anon_sym___leave] = ACTIONS(3638), - [anon_sym_not] = ACTIONS(3638), - [anon_sym_compl] = ACTIONS(3638), - [anon_sym_DASH_DASH] = ACTIONS(3640), - [anon_sym_PLUS_PLUS] = ACTIONS(3640), - [anon_sym_sizeof] = ACTIONS(3638), - [anon_sym___alignof__] = ACTIONS(3638), - [anon_sym___alignof] = ACTIONS(3638), - [anon_sym__alignof] = ACTIONS(3638), - [anon_sym_alignof] = ACTIONS(3638), - [anon_sym__Alignof] = ACTIONS(3638), - [anon_sym_offsetof] = ACTIONS(3638), - [anon_sym__Generic] = ACTIONS(3638), - [anon_sym_asm] = ACTIONS(3638), - [anon_sym___asm__] = ACTIONS(3638), - [sym_number_literal] = ACTIONS(3640), - [anon_sym_L_SQUOTE] = ACTIONS(3640), - [anon_sym_u_SQUOTE] = ACTIONS(3640), - [anon_sym_U_SQUOTE] = ACTIONS(3640), - [anon_sym_u8_SQUOTE] = ACTIONS(3640), - [anon_sym_SQUOTE] = ACTIONS(3640), - [anon_sym_L_DQUOTE] = ACTIONS(3640), - [anon_sym_u_DQUOTE] = ACTIONS(3640), - [anon_sym_U_DQUOTE] = ACTIONS(3640), - [anon_sym_u8_DQUOTE] = ACTIONS(3640), - [anon_sym_DQUOTE] = ACTIONS(3640), - [sym_true] = ACTIONS(3638), - [sym_false] = ACTIONS(3638), - [anon_sym_NULL] = ACTIONS(3638), - [anon_sym_nullptr] = ACTIONS(3638), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3638), - [anon_sym_decltype] = ACTIONS(3638), - [anon_sym_virtual] = ACTIONS(3638), - [anon_sym_alignas] = ACTIONS(3638), - [anon_sym_explicit] = ACTIONS(3638), - [anon_sym_typename] = ACTIONS(3638), - [anon_sym_template] = ACTIONS(3638), - [anon_sym_operator] = ACTIONS(3638), - [anon_sym_try] = ACTIONS(3638), - [anon_sym_delete] = ACTIONS(3638), - [anon_sym_throw] = ACTIONS(3638), - [anon_sym_namespace] = ACTIONS(3638), - [anon_sym_using] = ACTIONS(3638), - [anon_sym_static_assert] = ACTIONS(3638), - [anon_sym_concept] = ACTIONS(3638), - [anon_sym_co_return] = ACTIONS(3638), - [anon_sym_co_yield] = ACTIONS(3638), - [anon_sym_R_DQUOTE] = ACTIONS(3640), - [anon_sym_LR_DQUOTE] = ACTIONS(3640), - [anon_sym_uR_DQUOTE] = ACTIONS(3640), - [anon_sym_UR_DQUOTE] = ACTIONS(3640), - [anon_sym_u8R_DQUOTE] = ACTIONS(3640), - [anon_sym_co_await] = ACTIONS(3638), - [anon_sym_new] = ACTIONS(3638), - [anon_sym_requires] = ACTIONS(3638), - [sym_this] = ACTIONS(3638), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3640), - [sym_semgrep_named_ellipsis] = ACTIONS(3640), - }, - [709] = { - [sym_identifier] = ACTIONS(3339), - [aux_sym_preproc_include_token1] = ACTIONS(3339), - [aux_sym_preproc_def_token1] = ACTIONS(3339), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3341), - [aux_sym_preproc_if_token1] = ACTIONS(3339), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3339), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3339), - [sym_preproc_directive] = ACTIONS(3339), - [anon_sym_LPAREN2] = ACTIONS(3341), - [anon_sym_BANG] = ACTIONS(3341), - [anon_sym_TILDE] = ACTIONS(3341), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_STAR] = ACTIONS(3341), - [anon_sym_AMP_AMP] = ACTIONS(3341), - [anon_sym_AMP] = ACTIONS(3339), - [anon_sym_SEMI] = ACTIONS(3341), - [anon_sym___extension__] = ACTIONS(3339), - [anon_sym_typedef] = ACTIONS(3339), - [anon_sym_extern] = ACTIONS(3339), - [anon_sym___attribute__] = ACTIONS(3339), - [anon_sym_COLON_COLON] = ACTIONS(3341), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3341), - [anon_sym___declspec] = ACTIONS(3339), - [anon_sym___based] = ACTIONS(3339), - [anon_sym___cdecl] = ACTIONS(3339), - [anon_sym___clrcall] = ACTIONS(3339), - [anon_sym___stdcall] = ACTIONS(3339), - [anon_sym___fastcall] = ACTIONS(3339), - [anon_sym___thiscall] = ACTIONS(3339), - [anon_sym___vectorcall] = ACTIONS(3339), - [anon_sym_LBRACE] = ACTIONS(3341), - [anon_sym_RBRACE] = ACTIONS(3341), - [anon_sym_signed] = ACTIONS(3339), - [anon_sym_unsigned] = ACTIONS(3339), - [anon_sym_long] = ACTIONS(3339), - [anon_sym_short] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3339), - [anon_sym_static] = ACTIONS(3339), - [anon_sym_register] = ACTIONS(3339), - [anon_sym_inline] = ACTIONS(3339), - [anon_sym___inline] = ACTIONS(3339), - [anon_sym___inline__] = ACTIONS(3339), - [anon_sym___forceinline] = ACTIONS(3339), - [anon_sym_thread_local] = ACTIONS(3339), - [anon_sym___thread] = ACTIONS(3339), - [anon_sym_const] = ACTIONS(3339), - [anon_sym_constexpr] = ACTIONS(3339), - [anon_sym_volatile] = ACTIONS(3339), - [anon_sym_restrict] = ACTIONS(3339), - [anon_sym___restrict__] = ACTIONS(3339), - [anon_sym__Atomic] = ACTIONS(3339), - [anon_sym__Noreturn] = ACTIONS(3339), - [anon_sym_noreturn] = ACTIONS(3339), - [anon_sym_mutable] = ACTIONS(3339), - [anon_sym_constinit] = ACTIONS(3339), - [anon_sym_consteval] = ACTIONS(3339), - [sym_primitive_type] = ACTIONS(3339), - [anon_sym_enum] = ACTIONS(3339), - [anon_sym_class] = ACTIONS(3339), - [anon_sym_struct] = ACTIONS(3339), - [anon_sym_union] = ACTIONS(3339), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_switch] = ACTIONS(3339), - [anon_sym_case] = ACTIONS(3339), - [anon_sym_default] = ACTIONS(3339), - [anon_sym_while] = ACTIONS(3339), - [anon_sym_do] = ACTIONS(3339), - [anon_sym_for] = ACTIONS(3339), - [anon_sym_return] = ACTIONS(3339), - [anon_sym_break] = ACTIONS(3339), - [anon_sym_continue] = ACTIONS(3339), - [anon_sym_goto] = ACTIONS(3339), - [anon_sym___try] = ACTIONS(3339), - [anon_sym___leave] = ACTIONS(3339), - [anon_sym_not] = ACTIONS(3339), - [anon_sym_compl] = ACTIONS(3339), - [anon_sym_DASH_DASH] = ACTIONS(3341), - [anon_sym_PLUS_PLUS] = ACTIONS(3341), - [anon_sym_sizeof] = ACTIONS(3339), - [anon_sym___alignof__] = ACTIONS(3339), - [anon_sym___alignof] = ACTIONS(3339), - [anon_sym__alignof] = ACTIONS(3339), - [anon_sym_alignof] = ACTIONS(3339), - [anon_sym__Alignof] = ACTIONS(3339), - [anon_sym_offsetof] = ACTIONS(3339), - [anon_sym__Generic] = ACTIONS(3339), - [anon_sym_asm] = ACTIONS(3339), - [anon_sym___asm__] = ACTIONS(3339), - [sym_number_literal] = ACTIONS(3341), - [anon_sym_L_SQUOTE] = ACTIONS(3341), - [anon_sym_u_SQUOTE] = ACTIONS(3341), - [anon_sym_U_SQUOTE] = ACTIONS(3341), - [anon_sym_u8_SQUOTE] = ACTIONS(3341), - [anon_sym_SQUOTE] = ACTIONS(3341), - [anon_sym_L_DQUOTE] = ACTIONS(3341), - [anon_sym_u_DQUOTE] = ACTIONS(3341), - [anon_sym_U_DQUOTE] = ACTIONS(3341), - [anon_sym_u8_DQUOTE] = ACTIONS(3341), - [anon_sym_DQUOTE] = ACTIONS(3341), - [sym_true] = ACTIONS(3339), - [sym_false] = ACTIONS(3339), - [anon_sym_NULL] = ACTIONS(3339), - [anon_sym_nullptr] = ACTIONS(3339), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3339), - [anon_sym_decltype] = ACTIONS(3339), - [anon_sym_virtual] = ACTIONS(3339), - [anon_sym_alignas] = ACTIONS(3339), - [anon_sym_explicit] = ACTIONS(3339), - [anon_sym_typename] = ACTIONS(3339), - [anon_sym_template] = ACTIONS(3339), - [anon_sym_operator] = ACTIONS(3339), - [anon_sym_try] = ACTIONS(3339), - [anon_sym_delete] = ACTIONS(3339), - [anon_sym_throw] = ACTIONS(3339), - [anon_sym_namespace] = ACTIONS(3339), - [anon_sym_using] = ACTIONS(3339), - [anon_sym_static_assert] = ACTIONS(3339), - [anon_sym_concept] = ACTIONS(3339), - [anon_sym_co_return] = ACTIONS(3339), - [anon_sym_co_yield] = ACTIONS(3339), - [anon_sym_R_DQUOTE] = ACTIONS(3341), - [anon_sym_LR_DQUOTE] = ACTIONS(3341), - [anon_sym_uR_DQUOTE] = ACTIONS(3341), - [anon_sym_UR_DQUOTE] = ACTIONS(3341), - [anon_sym_u8R_DQUOTE] = ACTIONS(3341), - [anon_sym_co_await] = ACTIONS(3339), - [anon_sym_new] = ACTIONS(3339), - [anon_sym_requires] = ACTIONS(3339), - [sym_this] = ACTIONS(3339), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3341), - [sym_semgrep_named_ellipsis] = ACTIONS(3341), - }, - [710] = { - [sym_identifier] = ACTIONS(3427), - [aux_sym_preproc_include_token1] = ACTIONS(3427), - [aux_sym_preproc_def_token1] = ACTIONS(3427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3429), - [aux_sym_preproc_if_token1] = ACTIONS(3427), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3427), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3427), - [sym_preproc_directive] = ACTIONS(3427), - [anon_sym_LPAREN2] = ACTIONS(3429), - [anon_sym_BANG] = ACTIONS(3429), - [anon_sym_TILDE] = ACTIONS(3429), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3427), - [anon_sym_STAR] = ACTIONS(3429), - [anon_sym_AMP_AMP] = ACTIONS(3429), - [anon_sym_AMP] = ACTIONS(3427), - [anon_sym_SEMI] = ACTIONS(3429), - [anon_sym___extension__] = ACTIONS(3427), - [anon_sym_typedef] = ACTIONS(3427), - [anon_sym_extern] = ACTIONS(3427), - [anon_sym___attribute__] = ACTIONS(3427), - [anon_sym_COLON_COLON] = ACTIONS(3429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3429), - [anon_sym___declspec] = ACTIONS(3427), - [anon_sym___based] = ACTIONS(3427), - [anon_sym___cdecl] = ACTIONS(3427), - [anon_sym___clrcall] = ACTIONS(3427), - [anon_sym___stdcall] = ACTIONS(3427), - [anon_sym___fastcall] = ACTIONS(3427), - [anon_sym___thiscall] = ACTIONS(3427), - [anon_sym___vectorcall] = ACTIONS(3427), - [anon_sym_LBRACE] = ACTIONS(3429), - [anon_sym_RBRACE] = ACTIONS(3429), - [anon_sym_signed] = ACTIONS(3427), - [anon_sym_unsigned] = ACTIONS(3427), - [anon_sym_long] = ACTIONS(3427), - [anon_sym_short] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3427), - [anon_sym_static] = ACTIONS(3427), - [anon_sym_register] = ACTIONS(3427), - [anon_sym_inline] = ACTIONS(3427), - [anon_sym___inline] = ACTIONS(3427), - [anon_sym___inline__] = ACTIONS(3427), - [anon_sym___forceinline] = ACTIONS(3427), - [anon_sym_thread_local] = ACTIONS(3427), - [anon_sym___thread] = ACTIONS(3427), - [anon_sym_const] = ACTIONS(3427), - [anon_sym_constexpr] = ACTIONS(3427), - [anon_sym_volatile] = ACTIONS(3427), - [anon_sym_restrict] = ACTIONS(3427), - [anon_sym___restrict__] = ACTIONS(3427), - [anon_sym__Atomic] = ACTIONS(3427), - [anon_sym__Noreturn] = ACTIONS(3427), - [anon_sym_noreturn] = ACTIONS(3427), - [anon_sym_mutable] = ACTIONS(3427), - [anon_sym_constinit] = ACTIONS(3427), - [anon_sym_consteval] = ACTIONS(3427), - [sym_primitive_type] = ACTIONS(3427), - [anon_sym_enum] = ACTIONS(3427), - [anon_sym_class] = ACTIONS(3427), - [anon_sym_struct] = ACTIONS(3427), - [anon_sym_union] = ACTIONS(3427), - [anon_sym_if] = ACTIONS(3427), - [anon_sym_switch] = ACTIONS(3427), - [anon_sym_case] = ACTIONS(3427), - [anon_sym_default] = ACTIONS(3427), - [anon_sym_while] = ACTIONS(3427), - [anon_sym_do] = ACTIONS(3427), - [anon_sym_for] = ACTIONS(3427), - [anon_sym_return] = ACTIONS(3427), - [anon_sym_break] = ACTIONS(3427), - [anon_sym_continue] = ACTIONS(3427), - [anon_sym_goto] = ACTIONS(3427), - [anon_sym___try] = ACTIONS(3427), - [anon_sym___leave] = ACTIONS(3427), - [anon_sym_not] = ACTIONS(3427), - [anon_sym_compl] = ACTIONS(3427), - [anon_sym_DASH_DASH] = ACTIONS(3429), - [anon_sym_PLUS_PLUS] = ACTIONS(3429), - [anon_sym_sizeof] = ACTIONS(3427), - [anon_sym___alignof__] = ACTIONS(3427), - [anon_sym___alignof] = ACTIONS(3427), - [anon_sym__alignof] = ACTIONS(3427), - [anon_sym_alignof] = ACTIONS(3427), - [anon_sym__Alignof] = ACTIONS(3427), - [anon_sym_offsetof] = ACTIONS(3427), - [anon_sym__Generic] = ACTIONS(3427), - [anon_sym_asm] = ACTIONS(3427), - [anon_sym___asm__] = ACTIONS(3427), - [sym_number_literal] = ACTIONS(3429), - [anon_sym_L_SQUOTE] = ACTIONS(3429), - [anon_sym_u_SQUOTE] = ACTIONS(3429), - [anon_sym_U_SQUOTE] = ACTIONS(3429), - [anon_sym_u8_SQUOTE] = ACTIONS(3429), - [anon_sym_SQUOTE] = ACTIONS(3429), - [anon_sym_L_DQUOTE] = ACTIONS(3429), - [anon_sym_u_DQUOTE] = ACTIONS(3429), - [anon_sym_U_DQUOTE] = ACTIONS(3429), - [anon_sym_u8_DQUOTE] = ACTIONS(3429), - [anon_sym_DQUOTE] = ACTIONS(3429), - [sym_true] = ACTIONS(3427), - [sym_false] = ACTIONS(3427), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3427), - [anon_sym_decltype] = ACTIONS(3427), - [anon_sym_virtual] = ACTIONS(3427), - [anon_sym_alignas] = ACTIONS(3427), - [anon_sym_explicit] = ACTIONS(3427), - [anon_sym_typename] = ACTIONS(3427), - [anon_sym_template] = ACTIONS(3427), - [anon_sym_operator] = ACTIONS(3427), - [anon_sym_try] = ACTIONS(3427), - [anon_sym_delete] = ACTIONS(3427), - [anon_sym_throw] = ACTIONS(3427), - [anon_sym_namespace] = ACTIONS(3427), - [anon_sym_using] = ACTIONS(3427), - [anon_sym_static_assert] = ACTIONS(3427), - [anon_sym_concept] = ACTIONS(3427), - [anon_sym_co_return] = ACTIONS(3427), - [anon_sym_co_yield] = ACTIONS(3427), - [anon_sym_R_DQUOTE] = ACTIONS(3429), - [anon_sym_LR_DQUOTE] = ACTIONS(3429), - [anon_sym_uR_DQUOTE] = ACTIONS(3429), - [anon_sym_UR_DQUOTE] = ACTIONS(3429), - [anon_sym_u8R_DQUOTE] = ACTIONS(3429), - [anon_sym_co_await] = ACTIONS(3427), - [anon_sym_new] = ACTIONS(3427), - [anon_sym_requires] = ACTIONS(3427), - [sym_this] = ACTIONS(3427), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3429), - [sym_semgrep_named_ellipsis] = ACTIONS(3429), - }, - [711] = { - [sym_identifier] = ACTIONS(3433), - [aux_sym_preproc_include_token1] = ACTIONS(3433), - [aux_sym_preproc_def_token1] = ACTIONS(3433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3435), - [aux_sym_preproc_if_token1] = ACTIONS(3433), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3433), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3433), - [sym_preproc_directive] = ACTIONS(3433), - [anon_sym_LPAREN2] = ACTIONS(3435), - [anon_sym_BANG] = ACTIONS(3435), - [anon_sym_TILDE] = ACTIONS(3435), - [anon_sym_DASH] = ACTIONS(3433), - [anon_sym_PLUS] = ACTIONS(3433), - [anon_sym_STAR] = ACTIONS(3435), - [anon_sym_AMP_AMP] = ACTIONS(3435), - [anon_sym_AMP] = ACTIONS(3433), - [anon_sym_SEMI] = ACTIONS(3435), - [anon_sym___extension__] = ACTIONS(3433), - [anon_sym_typedef] = ACTIONS(3433), - [anon_sym_extern] = ACTIONS(3433), - [anon_sym___attribute__] = ACTIONS(3433), - [anon_sym_COLON_COLON] = ACTIONS(3435), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3435), - [anon_sym___declspec] = ACTIONS(3433), - [anon_sym___based] = ACTIONS(3433), - [anon_sym___cdecl] = ACTIONS(3433), - [anon_sym___clrcall] = ACTIONS(3433), - [anon_sym___stdcall] = ACTIONS(3433), - [anon_sym___fastcall] = ACTIONS(3433), - [anon_sym___thiscall] = ACTIONS(3433), - [anon_sym___vectorcall] = ACTIONS(3433), - [anon_sym_LBRACE] = ACTIONS(3435), - [anon_sym_RBRACE] = ACTIONS(3435), - [anon_sym_signed] = ACTIONS(3433), - [anon_sym_unsigned] = ACTIONS(3433), - [anon_sym_long] = ACTIONS(3433), - [anon_sym_short] = ACTIONS(3433), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_static] = ACTIONS(3433), - [anon_sym_register] = ACTIONS(3433), - [anon_sym_inline] = ACTIONS(3433), - [anon_sym___inline] = ACTIONS(3433), - [anon_sym___inline__] = ACTIONS(3433), - [anon_sym___forceinline] = ACTIONS(3433), - [anon_sym_thread_local] = ACTIONS(3433), - [anon_sym___thread] = ACTIONS(3433), - [anon_sym_const] = ACTIONS(3433), - [anon_sym_constexpr] = ACTIONS(3433), - [anon_sym_volatile] = ACTIONS(3433), - [anon_sym_restrict] = ACTIONS(3433), - [anon_sym___restrict__] = ACTIONS(3433), - [anon_sym__Atomic] = ACTIONS(3433), - [anon_sym__Noreturn] = ACTIONS(3433), - [anon_sym_noreturn] = ACTIONS(3433), - [anon_sym_mutable] = ACTIONS(3433), - [anon_sym_constinit] = ACTIONS(3433), - [anon_sym_consteval] = ACTIONS(3433), - [sym_primitive_type] = ACTIONS(3433), - [anon_sym_enum] = ACTIONS(3433), - [anon_sym_class] = ACTIONS(3433), - [anon_sym_struct] = ACTIONS(3433), - [anon_sym_union] = ACTIONS(3433), - [anon_sym_if] = ACTIONS(3433), - [anon_sym_switch] = ACTIONS(3433), - [anon_sym_case] = ACTIONS(3433), - [anon_sym_default] = ACTIONS(3433), - [anon_sym_while] = ACTIONS(3433), - [anon_sym_do] = ACTIONS(3433), - [anon_sym_for] = ACTIONS(3433), - [anon_sym_return] = ACTIONS(3433), - [anon_sym_break] = ACTIONS(3433), - [anon_sym_continue] = ACTIONS(3433), - [anon_sym_goto] = ACTIONS(3433), - [anon_sym___try] = ACTIONS(3433), - [anon_sym___leave] = ACTIONS(3433), - [anon_sym_not] = ACTIONS(3433), - [anon_sym_compl] = ACTIONS(3433), - [anon_sym_DASH_DASH] = ACTIONS(3435), - [anon_sym_PLUS_PLUS] = ACTIONS(3435), - [anon_sym_sizeof] = ACTIONS(3433), - [anon_sym___alignof__] = ACTIONS(3433), - [anon_sym___alignof] = ACTIONS(3433), - [anon_sym__alignof] = ACTIONS(3433), - [anon_sym_alignof] = ACTIONS(3433), - [anon_sym__Alignof] = ACTIONS(3433), - [anon_sym_offsetof] = ACTIONS(3433), - [anon_sym__Generic] = ACTIONS(3433), - [anon_sym_asm] = ACTIONS(3433), - [anon_sym___asm__] = ACTIONS(3433), - [sym_number_literal] = ACTIONS(3435), - [anon_sym_L_SQUOTE] = ACTIONS(3435), - [anon_sym_u_SQUOTE] = ACTIONS(3435), - [anon_sym_U_SQUOTE] = ACTIONS(3435), - [anon_sym_u8_SQUOTE] = ACTIONS(3435), - [anon_sym_SQUOTE] = ACTIONS(3435), - [anon_sym_L_DQUOTE] = ACTIONS(3435), - [anon_sym_u_DQUOTE] = ACTIONS(3435), - [anon_sym_U_DQUOTE] = ACTIONS(3435), - [anon_sym_u8_DQUOTE] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(3435), - [sym_true] = ACTIONS(3433), - [sym_false] = ACTIONS(3433), - [anon_sym_NULL] = ACTIONS(3433), - [anon_sym_nullptr] = ACTIONS(3433), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3433), - [anon_sym_decltype] = ACTIONS(3433), - [anon_sym_virtual] = ACTIONS(3433), - [anon_sym_alignas] = ACTIONS(3433), - [anon_sym_explicit] = ACTIONS(3433), - [anon_sym_typename] = ACTIONS(3433), - [anon_sym_template] = ACTIONS(3433), - [anon_sym_operator] = ACTIONS(3433), - [anon_sym_try] = ACTIONS(3433), - [anon_sym_delete] = ACTIONS(3433), - [anon_sym_throw] = ACTIONS(3433), - [anon_sym_namespace] = ACTIONS(3433), - [anon_sym_using] = ACTIONS(3433), - [anon_sym_static_assert] = ACTIONS(3433), - [anon_sym_concept] = ACTIONS(3433), - [anon_sym_co_return] = ACTIONS(3433), - [anon_sym_co_yield] = ACTIONS(3433), - [anon_sym_R_DQUOTE] = ACTIONS(3435), - [anon_sym_LR_DQUOTE] = ACTIONS(3435), - [anon_sym_uR_DQUOTE] = ACTIONS(3435), - [anon_sym_UR_DQUOTE] = ACTIONS(3435), - [anon_sym_u8R_DQUOTE] = ACTIONS(3435), - [anon_sym_co_await] = ACTIONS(3433), - [anon_sym_new] = ACTIONS(3433), - [anon_sym_requires] = ACTIONS(3433), - [sym_this] = ACTIONS(3433), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3435), - [sym_semgrep_named_ellipsis] = ACTIONS(3435), - }, - [712] = { - [sym_identifier] = ACTIONS(3437), - [aux_sym_preproc_include_token1] = ACTIONS(3437), - [aux_sym_preproc_def_token1] = ACTIONS(3437), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3439), - [aux_sym_preproc_if_token1] = ACTIONS(3437), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3437), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3437), - [sym_preproc_directive] = ACTIONS(3437), - [anon_sym_LPAREN2] = ACTIONS(3439), - [anon_sym_BANG] = ACTIONS(3439), - [anon_sym_TILDE] = ACTIONS(3439), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_STAR] = ACTIONS(3439), - [anon_sym_AMP_AMP] = ACTIONS(3439), - [anon_sym_AMP] = ACTIONS(3437), - [anon_sym_SEMI] = ACTIONS(3439), - [anon_sym___extension__] = ACTIONS(3437), - [anon_sym_typedef] = ACTIONS(3437), - [anon_sym_extern] = ACTIONS(3437), - [anon_sym___attribute__] = ACTIONS(3437), - [anon_sym_COLON_COLON] = ACTIONS(3439), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3439), - [anon_sym___declspec] = ACTIONS(3437), - [anon_sym___based] = ACTIONS(3437), - [anon_sym___cdecl] = ACTIONS(3437), - [anon_sym___clrcall] = ACTIONS(3437), - [anon_sym___stdcall] = ACTIONS(3437), - [anon_sym___fastcall] = ACTIONS(3437), - [anon_sym___thiscall] = ACTIONS(3437), - [anon_sym___vectorcall] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3439), - [anon_sym_RBRACE] = ACTIONS(3439), - [anon_sym_signed] = ACTIONS(3437), - [anon_sym_unsigned] = ACTIONS(3437), - [anon_sym_long] = ACTIONS(3437), - [anon_sym_short] = ACTIONS(3437), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_static] = ACTIONS(3437), - [anon_sym_register] = ACTIONS(3437), - [anon_sym_inline] = ACTIONS(3437), - [anon_sym___inline] = ACTIONS(3437), - [anon_sym___inline__] = ACTIONS(3437), - [anon_sym___forceinline] = ACTIONS(3437), - [anon_sym_thread_local] = ACTIONS(3437), - [anon_sym___thread] = ACTIONS(3437), - [anon_sym_const] = ACTIONS(3437), - [anon_sym_constexpr] = ACTIONS(3437), - [anon_sym_volatile] = ACTIONS(3437), - [anon_sym_restrict] = ACTIONS(3437), - [anon_sym___restrict__] = ACTIONS(3437), - [anon_sym__Atomic] = ACTIONS(3437), - [anon_sym__Noreturn] = ACTIONS(3437), - [anon_sym_noreturn] = ACTIONS(3437), - [anon_sym_mutable] = ACTIONS(3437), - [anon_sym_constinit] = ACTIONS(3437), - [anon_sym_consteval] = ACTIONS(3437), - [sym_primitive_type] = ACTIONS(3437), - [anon_sym_enum] = ACTIONS(3437), - [anon_sym_class] = ACTIONS(3437), - [anon_sym_struct] = ACTIONS(3437), - [anon_sym_union] = ACTIONS(3437), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_switch] = ACTIONS(3437), - [anon_sym_case] = ACTIONS(3437), - [anon_sym_default] = ACTIONS(3437), - [anon_sym_while] = ACTIONS(3437), - [anon_sym_do] = ACTIONS(3437), - [anon_sym_for] = ACTIONS(3437), - [anon_sym_return] = ACTIONS(3437), - [anon_sym_break] = ACTIONS(3437), - [anon_sym_continue] = ACTIONS(3437), - [anon_sym_goto] = ACTIONS(3437), - [anon_sym___try] = ACTIONS(3437), - [anon_sym___leave] = ACTIONS(3437), - [anon_sym_not] = ACTIONS(3437), - [anon_sym_compl] = ACTIONS(3437), - [anon_sym_DASH_DASH] = ACTIONS(3439), - [anon_sym_PLUS_PLUS] = ACTIONS(3439), - [anon_sym_sizeof] = ACTIONS(3437), - [anon_sym___alignof__] = ACTIONS(3437), - [anon_sym___alignof] = ACTIONS(3437), - [anon_sym__alignof] = ACTIONS(3437), - [anon_sym_alignof] = ACTIONS(3437), - [anon_sym__Alignof] = ACTIONS(3437), - [anon_sym_offsetof] = ACTIONS(3437), - [anon_sym__Generic] = ACTIONS(3437), - [anon_sym_asm] = ACTIONS(3437), - [anon_sym___asm__] = ACTIONS(3437), - [sym_number_literal] = ACTIONS(3439), - [anon_sym_L_SQUOTE] = ACTIONS(3439), - [anon_sym_u_SQUOTE] = ACTIONS(3439), - [anon_sym_U_SQUOTE] = ACTIONS(3439), - [anon_sym_u8_SQUOTE] = ACTIONS(3439), - [anon_sym_SQUOTE] = ACTIONS(3439), - [anon_sym_L_DQUOTE] = ACTIONS(3439), - [anon_sym_u_DQUOTE] = ACTIONS(3439), - [anon_sym_U_DQUOTE] = ACTIONS(3439), - [anon_sym_u8_DQUOTE] = ACTIONS(3439), - [anon_sym_DQUOTE] = ACTIONS(3439), - [sym_true] = ACTIONS(3437), - [sym_false] = ACTIONS(3437), - [anon_sym_NULL] = ACTIONS(3437), - [anon_sym_nullptr] = ACTIONS(3437), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3437), - [anon_sym_decltype] = ACTIONS(3437), - [anon_sym_virtual] = ACTIONS(3437), - [anon_sym_alignas] = ACTIONS(3437), - [anon_sym_explicit] = ACTIONS(3437), - [anon_sym_typename] = ACTIONS(3437), - [anon_sym_template] = ACTIONS(3437), - [anon_sym_operator] = ACTIONS(3437), - [anon_sym_try] = ACTIONS(3437), - [anon_sym_delete] = ACTIONS(3437), - [anon_sym_throw] = ACTIONS(3437), - [anon_sym_namespace] = ACTIONS(3437), - [anon_sym_using] = ACTIONS(3437), - [anon_sym_static_assert] = ACTIONS(3437), - [anon_sym_concept] = ACTIONS(3437), - [anon_sym_co_return] = ACTIONS(3437), - [anon_sym_co_yield] = ACTIONS(3437), - [anon_sym_R_DQUOTE] = ACTIONS(3439), - [anon_sym_LR_DQUOTE] = ACTIONS(3439), - [anon_sym_uR_DQUOTE] = ACTIONS(3439), - [anon_sym_UR_DQUOTE] = ACTIONS(3439), - [anon_sym_u8R_DQUOTE] = ACTIONS(3439), - [anon_sym_co_await] = ACTIONS(3437), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3437), - [sym_this] = ACTIONS(3437), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3439), - [sym_semgrep_named_ellipsis] = ACTIONS(3439), - }, - [713] = { - [sym_identifier] = ACTIONS(3441), - [aux_sym_preproc_include_token1] = ACTIONS(3441), - [aux_sym_preproc_def_token1] = ACTIONS(3441), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3443), - [aux_sym_preproc_if_token1] = ACTIONS(3441), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3441), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3441), - [sym_preproc_directive] = ACTIONS(3441), - [anon_sym_LPAREN2] = ACTIONS(3443), - [anon_sym_BANG] = ACTIONS(3443), - [anon_sym_TILDE] = ACTIONS(3443), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_PLUS] = ACTIONS(3441), - [anon_sym_STAR] = ACTIONS(3443), - [anon_sym_AMP_AMP] = ACTIONS(3443), - [anon_sym_AMP] = ACTIONS(3441), - [anon_sym_SEMI] = ACTIONS(3443), - [anon_sym___extension__] = ACTIONS(3441), - [anon_sym_typedef] = ACTIONS(3441), - [anon_sym_extern] = ACTIONS(3441), - [anon_sym___attribute__] = ACTIONS(3441), - [anon_sym_COLON_COLON] = ACTIONS(3443), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3443), - [anon_sym___declspec] = ACTIONS(3441), - [anon_sym___based] = ACTIONS(3441), - [anon_sym___cdecl] = ACTIONS(3441), - [anon_sym___clrcall] = ACTIONS(3441), - [anon_sym___stdcall] = ACTIONS(3441), - [anon_sym___fastcall] = ACTIONS(3441), - [anon_sym___thiscall] = ACTIONS(3441), - [anon_sym___vectorcall] = ACTIONS(3441), - [anon_sym_LBRACE] = ACTIONS(3443), - [anon_sym_RBRACE] = ACTIONS(3443), - [anon_sym_signed] = ACTIONS(3441), - [anon_sym_unsigned] = ACTIONS(3441), - [anon_sym_long] = ACTIONS(3441), - [anon_sym_short] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_static] = ACTIONS(3441), - [anon_sym_register] = ACTIONS(3441), - [anon_sym_inline] = ACTIONS(3441), - [anon_sym___inline] = ACTIONS(3441), - [anon_sym___inline__] = ACTIONS(3441), - [anon_sym___forceinline] = ACTIONS(3441), - [anon_sym_thread_local] = ACTIONS(3441), - [anon_sym___thread] = ACTIONS(3441), - [anon_sym_const] = ACTIONS(3441), - [anon_sym_constexpr] = ACTIONS(3441), - [anon_sym_volatile] = ACTIONS(3441), - [anon_sym_restrict] = ACTIONS(3441), - [anon_sym___restrict__] = ACTIONS(3441), - [anon_sym__Atomic] = ACTIONS(3441), - [anon_sym__Noreturn] = ACTIONS(3441), - [anon_sym_noreturn] = ACTIONS(3441), - [anon_sym_mutable] = ACTIONS(3441), - [anon_sym_constinit] = ACTIONS(3441), - [anon_sym_consteval] = ACTIONS(3441), - [sym_primitive_type] = ACTIONS(3441), - [anon_sym_enum] = ACTIONS(3441), - [anon_sym_class] = ACTIONS(3441), - [anon_sym_struct] = ACTIONS(3441), - [anon_sym_union] = ACTIONS(3441), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_switch] = ACTIONS(3441), - [anon_sym_case] = ACTIONS(3441), - [anon_sym_default] = ACTIONS(3441), - [anon_sym_while] = ACTIONS(3441), - [anon_sym_do] = ACTIONS(3441), - [anon_sym_for] = ACTIONS(3441), - [anon_sym_return] = ACTIONS(3441), - [anon_sym_break] = ACTIONS(3441), - [anon_sym_continue] = ACTIONS(3441), - [anon_sym_goto] = ACTIONS(3441), - [anon_sym___try] = ACTIONS(3441), - [anon_sym___leave] = ACTIONS(3441), - [anon_sym_not] = ACTIONS(3441), - [anon_sym_compl] = ACTIONS(3441), - [anon_sym_DASH_DASH] = ACTIONS(3443), - [anon_sym_PLUS_PLUS] = ACTIONS(3443), - [anon_sym_sizeof] = ACTIONS(3441), - [anon_sym___alignof__] = ACTIONS(3441), - [anon_sym___alignof] = ACTIONS(3441), - [anon_sym__alignof] = ACTIONS(3441), - [anon_sym_alignof] = ACTIONS(3441), - [anon_sym__Alignof] = ACTIONS(3441), - [anon_sym_offsetof] = ACTIONS(3441), - [anon_sym__Generic] = ACTIONS(3441), - [anon_sym_asm] = ACTIONS(3441), - [anon_sym___asm__] = ACTIONS(3441), - [sym_number_literal] = ACTIONS(3443), - [anon_sym_L_SQUOTE] = ACTIONS(3443), - [anon_sym_u_SQUOTE] = ACTIONS(3443), - [anon_sym_U_SQUOTE] = ACTIONS(3443), - [anon_sym_u8_SQUOTE] = ACTIONS(3443), - [anon_sym_SQUOTE] = ACTIONS(3443), - [anon_sym_L_DQUOTE] = ACTIONS(3443), - [anon_sym_u_DQUOTE] = ACTIONS(3443), - [anon_sym_U_DQUOTE] = ACTIONS(3443), - [anon_sym_u8_DQUOTE] = ACTIONS(3443), - [anon_sym_DQUOTE] = ACTIONS(3443), - [sym_true] = ACTIONS(3441), - [sym_false] = ACTIONS(3441), - [anon_sym_NULL] = ACTIONS(3441), - [anon_sym_nullptr] = ACTIONS(3441), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3441), - [anon_sym_decltype] = ACTIONS(3441), - [anon_sym_virtual] = ACTIONS(3441), - [anon_sym_alignas] = ACTIONS(3441), - [anon_sym_explicit] = ACTIONS(3441), - [anon_sym_typename] = ACTIONS(3441), - [anon_sym_template] = ACTIONS(3441), - [anon_sym_operator] = ACTIONS(3441), - [anon_sym_try] = ACTIONS(3441), - [anon_sym_delete] = ACTIONS(3441), - [anon_sym_throw] = ACTIONS(3441), - [anon_sym_namespace] = ACTIONS(3441), - [anon_sym_using] = ACTIONS(3441), - [anon_sym_static_assert] = ACTIONS(3441), - [anon_sym_concept] = ACTIONS(3441), - [anon_sym_co_return] = ACTIONS(3441), - [anon_sym_co_yield] = ACTIONS(3441), - [anon_sym_R_DQUOTE] = ACTIONS(3443), - [anon_sym_LR_DQUOTE] = ACTIONS(3443), - [anon_sym_uR_DQUOTE] = ACTIONS(3443), - [anon_sym_UR_DQUOTE] = ACTIONS(3443), - [anon_sym_u8R_DQUOTE] = ACTIONS(3443), - [anon_sym_co_await] = ACTIONS(3441), - [anon_sym_new] = ACTIONS(3441), - [anon_sym_requires] = ACTIONS(3441), - [sym_this] = ACTIONS(3441), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3443), - [sym_semgrep_named_ellipsis] = ACTIONS(3443), - }, - [714] = { - [sym_identifier] = ACTIONS(3445), - [aux_sym_preproc_include_token1] = ACTIONS(3445), - [aux_sym_preproc_def_token1] = ACTIONS(3445), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3447), - [aux_sym_preproc_if_token1] = ACTIONS(3445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3445), - [sym_preproc_directive] = ACTIONS(3445), - [anon_sym_LPAREN2] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_TILDE] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3445), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3445), - [anon_sym_SEMI] = ACTIONS(3447), - [anon_sym___extension__] = ACTIONS(3445), - [anon_sym_typedef] = ACTIONS(3445), - [anon_sym_extern] = ACTIONS(3445), - [anon_sym___attribute__] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3447), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3447), - [anon_sym___declspec] = ACTIONS(3445), - [anon_sym___based] = ACTIONS(3445), - [anon_sym___cdecl] = ACTIONS(3445), - [anon_sym___clrcall] = ACTIONS(3445), - [anon_sym___stdcall] = ACTIONS(3445), - [anon_sym___fastcall] = ACTIONS(3445), - [anon_sym___thiscall] = ACTIONS(3445), - [anon_sym___vectorcall] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_RBRACE] = ACTIONS(3447), - [anon_sym_signed] = ACTIONS(3445), - [anon_sym_unsigned] = ACTIONS(3445), - [anon_sym_long] = ACTIONS(3445), - [anon_sym_short] = ACTIONS(3445), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_static] = ACTIONS(3445), - [anon_sym_register] = ACTIONS(3445), - [anon_sym_inline] = ACTIONS(3445), - [anon_sym___inline] = ACTIONS(3445), - [anon_sym___inline__] = ACTIONS(3445), - [anon_sym___forceinline] = ACTIONS(3445), - [anon_sym_thread_local] = ACTIONS(3445), - [anon_sym___thread] = ACTIONS(3445), - [anon_sym_const] = ACTIONS(3445), - [anon_sym_constexpr] = ACTIONS(3445), - [anon_sym_volatile] = ACTIONS(3445), - [anon_sym_restrict] = ACTIONS(3445), - [anon_sym___restrict__] = ACTIONS(3445), - [anon_sym__Atomic] = ACTIONS(3445), - [anon_sym__Noreturn] = ACTIONS(3445), - [anon_sym_noreturn] = ACTIONS(3445), - [anon_sym_mutable] = ACTIONS(3445), - [anon_sym_constinit] = ACTIONS(3445), - [anon_sym_consteval] = ACTIONS(3445), - [sym_primitive_type] = ACTIONS(3445), - [anon_sym_enum] = ACTIONS(3445), - [anon_sym_class] = ACTIONS(3445), - [anon_sym_struct] = ACTIONS(3445), - [anon_sym_union] = ACTIONS(3445), - [anon_sym_if] = ACTIONS(3445), - [anon_sym_switch] = ACTIONS(3445), - [anon_sym_case] = ACTIONS(3445), - [anon_sym_default] = ACTIONS(3445), - [anon_sym_while] = ACTIONS(3445), - [anon_sym_do] = ACTIONS(3445), - [anon_sym_for] = ACTIONS(3445), - [anon_sym_return] = ACTIONS(3445), - [anon_sym_break] = ACTIONS(3445), - [anon_sym_continue] = ACTIONS(3445), - [anon_sym_goto] = ACTIONS(3445), - [anon_sym___try] = ACTIONS(3445), - [anon_sym___leave] = ACTIONS(3445), - [anon_sym_not] = ACTIONS(3445), - [anon_sym_compl] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3447), - [anon_sym_sizeof] = ACTIONS(3445), - [anon_sym___alignof__] = ACTIONS(3445), - [anon_sym___alignof] = ACTIONS(3445), - [anon_sym__alignof] = ACTIONS(3445), - [anon_sym_alignof] = ACTIONS(3445), - [anon_sym__Alignof] = ACTIONS(3445), - [anon_sym_offsetof] = ACTIONS(3445), - [anon_sym__Generic] = ACTIONS(3445), - [anon_sym_asm] = ACTIONS(3445), - [anon_sym___asm__] = ACTIONS(3445), - [sym_number_literal] = ACTIONS(3447), - [anon_sym_L_SQUOTE] = ACTIONS(3447), - [anon_sym_u_SQUOTE] = ACTIONS(3447), - [anon_sym_U_SQUOTE] = ACTIONS(3447), - [anon_sym_u8_SQUOTE] = ACTIONS(3447), - [anon_sym_SQUOTE] = ACTIONS(3447), - [anon_sym_L_DQUOTE] = ACTIONS(3447), - [anon_sym_u_DQUOTE] = ACTIONS(3447), - [anon_sym_U_DQUOTE] = ACTIONS(3447), - [anon_sym_u8_DQUOTE] = ACTIONS(3447), - [anon_sym_DQUOTE] = ACTIONS(3447), - [sym_true] = ACTIONS(3445), - [sym_false] = ACTIONS(3445), - [anon_sym_NULL] = ACTIONS(3445), - [anon_sym_nullptr] = ACTIONS(3445), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3445), - [anon_sym_decltype] = ACTIONS(3445), - [anon_sym_virtual] = ACTIONS(3445), - [anon_sym_alignas] = ACTIONS(3445), - [anon_sym_explicit] = ACTIONS(3445), - [anon_sym_typename] = ACTIONS(3445), - [anon_sym_template] = ACTIONS(3445), - [anon_sym_operator] = ACTIONS(3445), - [anon_sym_try] = ACTIONS(3445), - [anon_sym_delete] = ACTIONS(3445), - [anon_sym_throw] = ACTIONS(3445), - [anon_sym_namespace] = ACTIONS(3445), - [anon_sym_using] = ACTIONS(3445), - [anon_sym_static_assert] = ACTIONS(3445), - [anon_sym_concept] = ACTIONS(3445), - [anon_sym_co_return] = ACTIONS(3445), - [anon_sym_co_yield] = ACTIONS(3445), - [anon_sym_R_DQUOTE] = ACTIONS(3447), - [anon_sym_LR_DQUOTE] = ACTIONS(3447), - [anon_sym_uR_DQUOTE] = ACTIONS(3447), - [anon_sym_UR_DQUOTE] = ACTIONS(3447), - [anon_sym_u8R_DQUOTE] = ACTIONS(3447), - [anon_sym_co_await] = ACTIONS(3445), - [anon_sym_new] = ACTIONS(3445), - [anon_sym_requires] = ACTIONS(3445), - [sym_this] = ACTIONS(3445), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3447), - [sym_semgrep_named_ellipsis] = ACTIONS(3447), - }, - [715] = { - [sym_identifier] = ACTIONS(3449), - [aux_sym_preproc_include_token1] = ACTIONS(3449), - [aux_sym_preproc_def_token1] = ACTIONS(3449), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3451), - [aux_sym_preproc_if_token1] = ACTIONS(3449), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3449), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3449), - [sym_preproc_directive] = ACTIONS(3449), - [anon_sym_LPAREN2] = ACTIONS(3451), - [anon_sym_BANG] = ACTIONS(3451), - [anon_sym_TILDE] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3449), - [anon_sym_PLUS] = ACTIONS(3449), - [anon_sym_STAR] = ACTIONS(3451), - [anon_sym_AMP_AMP] = ACTIONS(3451), - [anon_sym_AMP] = ACTIONS(3449), - [anon_sym_SEMI] = ACTIONS(3451), - [anon_sym___extension__] = ACTIONS(3449), - [anon_sym_typedef] = ACTIONS(3449), - [anon_sym_extern] = ACTIONS(3449), - [anon_sym___attribute__] = ACTIONS(3449), - [anon_sym_COLON_COLON] = ACTIONS(3451), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3451), - [anon_sym___declspec] = ACTIONS(3449), - [anon_sym___based] = ACTIONS(3449), - [anon_sym___cdecl] = ACTIONS(3449), - [anon_sym___clrcall] = ACTIONS(3449), - [anon_sym___stdcall] = ACTIONS(3449), - [anon_sym___fastcall] = ACTIONS(3449), - [anon_sym___thiscall] = ACTIONS(3449), - [anon_sym___vectorcall] = ACTIONS(3449), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_RBRACE] = ACTIONS(3451), - [anon_sym_signed] = ACTIONS(3449), - [anon_sym_unsigned] = ACTIONS(3449), - [anon_sym_long] = ACTIONS(3449), - [anon_sym_short] = ACTIONS(3449), - [anon_sym_LBRACK] = ACTIONS(3449), - [anon_sym_static] = ACTIONS(3449), - [anon_sym_register] = ACTIONS(3449), - [anon_sym_inline] = ACTIONS(3449), - [anon_sym___inline] = ACTIONS(3449), - [anon_sym___inline__] = ACTIONS(3449), - [anon_sym___forceinline] = ACTIONS(3449), - [anon_sym_thread_local] = ACTIONS(3449), - [anon_sym___thread] = ACTIONS(3449), - [anon_sym_const] = ACTIONS(3449), - [anon_sym_constexpr] = ACTIONS(3449), - [anon_sym_volatile] = ACTIONS(3449), - [anon_sym_restrict] = ACTIONS(3449), - [anon_sym___restrict__] = ACTIONS(3449), - [anon_sym__Atomic] = ACTIONS(3449), - [anon_sym__Noreturn] = ACTIONS(3449), - [anon_sym_noreturn] = ACTIONS(3449), - [anon_sym_mutable] = ACTIONS(3449), - [anon_sym_constinit] = ACTIONS(3449), - [anon_sym_consteval] = ACTIONS(3449), - [sym_primitive_type] = ACTIONS(3449), - [anon_sym_enum] = ACTIONS(3449), - [anon_sym_class] = ACTIONS(3449), - [anon_sym_struct] = ACTIONS(3449), - [anon_sym_union] = ACTIONS(3449), - [anon_sym_if] = ACTIONS(3449), - [anon_sym_switch] = ACTIONS(3449), - [anon_sym_case] = ACTIONS(3449), - [anon_sym_default] = ACTIONS(3449), - [anon_sym_while] = ACTIONS(3449), - [anon_sym_do] = ACTIONS(3449), - [anon_sym_for] = ACTIONS(3449), - [anon_sym_return] = ACTIONS(3449), - [anon_sym_break] = ACTIONS(3449), - [anon_sym_continue] = ACTIONS(3449), - [anon_sym_goto] = ACTIONS(3449), - [anon_sym___try] = ACTIONS(3449), - [anon_sym___leave] = ACTIONS(3449), - [anon_sym_not] = ACTIONS(3449), - [anon_sym_compl] = ACTIONS(3449), - [anon_sym_DASH_DASH] = ACTIONS(3451), - [anon_sym_PLUS_PLUS] = ACTIONS(3451), - [anon_sym_sizeof] = ACTIONS(3449), - [anon_sym___alignof__] = ACTIONS(3449), - [anon_sym___alignof] = ACTIONS(3449), - [anon_sym__alignof] = ACTIONS(3449), - [anon_sym_alignof] = ACTIONS(3449), - [anon_sym__Alignof] = ACTIONS(3449), - [anon_sym_offsetof] = ACTIONS(3449), - [anon_sym__Generic] = ACTIONS(3449), - [anon_sym_asm] = ACTIONS(3449), - [anon_sym___asm__] = ACTIONS(3449), - [sym_number_literal] = ACTIONS(3451), - [anon_sym_L_SQUOTE] = ACTIONS(3451), - [anon_sym_u_SQUOTE] = ACTIONS(3451), - [anon_sym_U_SQUOTE] = ACTIONS(3451), - [anon_sym_u8_SQUOTE] = ACTIONS(3451), - [anon_sym_SQUOTE] = ACTIONS(3451), - [anon_sym_L_DQUOTE] = ACTIONS(3451), - [anon_sym_u_DQUOTE] = ACTIONS(3451), - [anon_sym_U_DQUOTE] = ACTIONS(3451), - [anon_sym_u8_DQUOTE] = ACTIONS(3451), - [anon_sym_DQUOTE] = ACTIONS(3451), - [sym_true] = ACTIONS(3449), - [sym_false] = ACTIONS(3449), - [anon_sym_NULL] = ACTIONS(3449), - [anon_sym_nullptr] = ACTIONS(3449), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3449), - [anon_sym_decltype] = ACTIONS(3449), - [anon_sym_virtual] = ACTIONS(3449), - [anon_sym_alignas] = ACTIONS(3449), - [anon_sym_explicit] = ACTIONS(3449), - [anon_sym_typename] = ACTIONS(3449), - [anon_sym_template] = ACTIONS(3449), - [anon_sym_operator] = ACTIONS(3449), - [anon_sym_try] = ACTIONS(3449), - [anon_sym_delete] = ACTIONS(3449), - [anon_sym_throw] = ACTIONS(3449), - [anon_sym_namespace] = ACTIONS(3449), - [anon_sym_using] = ACTIONS(3449), - [anon_sym_static_assert] = ACTIONS(3449), - [anon_sym_concept] = ACTIONS(3449), - [anon_sym_co_return] = ACTIONS(3449), - [anon_sym_co_yield] = ACTIONS(3449), - [anon_sym_R_DQUOTE] = ACTIONS(3451), - [anon_sym_LR_DQUOTE] = ACTIONS(3451), - [anon_sym_uR_DQUOTE] = ACTIONS(3451), - [anon_sym_UR_DQUOTE] = ACTIONS(3451), - [anon_sym_u8R_DQUOTE] = ACTIONS(3451), - [anon_sym_co_await] = ACTIONS(3449), - [anon_sym_new] = ACTIONS(3449), - [anon_sym_requires] = ACTIONS(3449), - [sym_this] = ACTIONS(3449), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3451), - [sym_semgrep_named_ellipsis] = ACTIONS(3451), - }, - [716] = { - [sym_identifier] = ACTIONS(3453), - [aux_sym_preproc_include_token1] = ACTIONS(3453), - [aux_sym_preproc_def_token1] = ACTIONS(3453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3455), - [aux_sym_preproc_if_token1] = ACTIONS(3453), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3453), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3453), - [sym_preproc_directive] = ACTIONS(3453), - [anon_sym_LPAREN2] = ACTIONS(3455), - [anon_sym_BANG] = ACTIONS(3455), - [anon_sym_TILDE] = ACTIONS(3455), - [anon_sym_DASH] = ACTIONS(3453), - [anon_sym_PLUS] = ACTIONS(3453), - [anon_sym_STAR] = ACTIONS(3455), - [anon_sym_AMP_AMP] = ACTIONS(3455), - [anon_sym_AMP] = ACTIONS(3453), - [anon_sym_SEMI] = ACTIONS(3455), - [anon_sym___extension__] = ACTIONS(3453), - [anon_sym_typedef] = ACTIONS(3453), - [anon_sym_extern] = ACTIONS(3453), - [anon_sym___attribute__] = ACTIONS(3453), - [anon_sym_COLON_COLON] = ACTIONS(3455), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3455), - [anon_sym___declspec] = ACTIONS(3453), - [anon_sym___based] = ACTIONS(3453), - [anon_sym___cdecl] = ACTIONS(3453), - [anon_sym___clrcall] = ACTIONS(3453), - [anon_sym___stdcall] = ACTIONS(3453), - [anon_sym___fastcall] = ACTIONS(3453), - [anon_sym___thiscall] = ACTIONS(3453), - [anon_sym___vectorcall] = ACTIONS(3453), - [anon_sym_LBRACE] = ACTIONS(3455), - [anon_sym_RBRACE] = ACTIONS(3455), - [anon_sym_signed] = ACTIONS(3453), - [anon_sym_unsigned] = ACTIONS(3453), - [anon_sym_long] = ACTIONS(3453), - [anon_sym_short] = ACTIONS(3453), - [anon_sym_LBRACK] = ACTIONS(3453), - [anon_sym_static] = ACTIONS(3453), - [anon_sym_register] = ACTIONS(3453), - [anon_sym_inline] = ACTIONS(3453), - [anon_sym___inline] = ACTIONS(3453), - [anon_sym___inline__] = ACTIONS(3453), - [anon_sym___forceinline] = ACTIONS(3453), - [anon_sym_thread_local] = ACTIONS(3453), - [anon_sym___thread] = ACTIONS(3453), - [anon_sym_const] = ACTIONS(3453), - [anon_sym_constexpr] = ACTIONS(3453), - [anon_sym_volatile] = ACTIONS(3453), - [anon_sym_restrict] = ACTIONS(3453), - [anon_sym___restrict__] = ACTIONS(3453), - [anon_sym__Atomic] = ACTIONS(3453), - [anon_sym__Noreturn] = ACTIONS(3453), - [anon_sym_noreturn] = ACTIONS(3453), - [anon_sym_mutable] = ACTIONS(3453), - [anon_sym_constinit] = ACTIONS(3453), - [anon_sym_consteval] = ACTIONS(3453), - [sym_primitive_type] = ACTIONS(3453), - [anon_sym_enum] = ACTIONS(3453), - [anon_sym_class] = ACTIONS(3453), - [anon_sym_struct] = ACTIONS(3453), - [anon_sym_union] = ACTIONS(3453), - [anon_sym_if] = ACTIONS(3453), - [anon_sym_switch] = ACTIONS(3453), - [anon_sym_case] = ACTIONS(3453), - [anon_sym_default] = ACTIONS(3453), - [anon_sym_while] = ACTIONS(3453), - [anon_sym_do] = ACTIONS(3453), - [anon_sym_for] = ACTIONS(3453), - [anon_sym_return] = ACTIONS(3453), - [anon_sym_break] = ACTIONS(3453), - [anon_sym_continue] = ACTIONS(3453), - [anon_sym_goto] = ACTIONS(3453), - [anon_sym___try] = ACTIONS(3453), - [anon_sym___leave] = ACTIONS(3453), - [anon_sym_not] = ACTIONS(3453), - [anon_sym_compl] = ACTIONS(3453), - [anon_sym_DASH_DASH] = ACTIONS(3455), - [anon_sym_PLUS_PLUS] = ACTIONS(3455), - [anon_sym_sizeof] = ACTIONS(3453), - [anon_sym___alignof__] = ACTIONS(3453), - [anon_sym___alignof] = ACTIONS(3453), - [anon_sym__alignof] = ACTIONS(3453), - [anon_sym_alignof] = ACTIONS(3453), - [anon_sym__Alignof] = ACTIONS(3453), - [anon_sym_offsetof] = ACTIONS(3453), - [anon_sym__Generic] = ACTIONS(3453), - [anon_sym_asm] = ACTIONS(3453), - [anon_sym___asm__] = ACTIONS(3453), - [sym_number_literal] = ACTIONS(3455), - [anon_sym_L_SQUOTE] = ACTIONS(3455), - [anon_sym_u_SQUOTE] = ACTIONS(3455), - [anon_sym_U_SQUOTE] = ACTIONS(3455), - [anon_sym_u8_SQUOTE] = ACTIONS(3455), - [anon_sym_SQUOTE] = ACTIONS(3455), - [anon_sym_L_DQUOTE] = ACTIONS(3455), - [anon_sym_u_DQUOTE] = ACTIONS(3455), - [anon_sym_U_DQUOTE] = ACTIONS(3455), - [anon_sym_u8_DQUOTE] = ACTIONS(3455), - [anon_sym_DQUOTE] = ACTIONS(3455), - [sym_true] = ACTIONS(3453), - [sym_false] = ACTIONS(3453), - [anon_sym_NULL] = ACTIONS(3453), - [anon_sym_nullptr] = ACTIONS(3453), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3453), - [anon_sym_decltype] = ACTIONS(3453), - [anon_sym_virtual] = ACTIONS(3453), - [anon_sym_alignas] = ACTIONS(3453), - [anon_sym_explicit] = ACTIONS(3453), - [anon_sym_typename] = ACTIONS(3453), - [anon_sym_template] = ACTIONS(3453), - [anon_sym_operator] = ACTIONS(3453), - [anon_sym_try] = ACTIONS(3453), - [anon_sym_delete] = ACTIONS(3453), - [anon_sym_throw] = ACTIONS(3453), - [anon_sym_namespace] = ACTIONS(3453), - [anon_sym_using] = ACTIONS(3453), - [anon_sym_static_assert] = ACTIONS(3453), - [anon_sym_concept] = ACTIONS(3453), - [anon_sym_co_return] = ACTIONS(3453), - [anon_sym_co_yield] = ACTIONS(3453), - [anon_sym_R_DQUOTE] = ACTIONS(3455), - [anon_sym_LR_DQUOTE] = ACTIONS(3455), - [anon_sym_uR_DQUOTE] = ACTIONS(3455), - [anon_sym_UR_DQUOTE] = ACTIONS(3455), - [anon_sym_u8R_DQUOTE] = ACTIONS(3455), - [anon_sym_co_await] = ACTIONS(3453), - [anon_sym_new] = ACTIONS(3453), - [anon_sym_requires] = ACTIONS(3453), - [sym_this] = ACTIONS(3453), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3455), - [sym_semgrep_named_ellipsis] = ACTIONS(3455), - }, - [717] = { - [sym_identifier] = ACTIONS(3427), - [aux_sym_preproc_include_token1] = ACTIONS(3427), - [aux_sym_preproc_def_token1] = ACTIONS(3427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3429), - [aux_sym_preproc_if_token1] = ACTIONS(3427), - [aux_sym_preproc_if_token2] = ACTIONS(3427), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3427), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3427), - [sym_preproc_directive] = ACTIONS(3427), - [anon_sym_LPAREN2] = ACTIONS(3429), - [anon_sym_BANG] = ACTIONS(3429), - [anon_sym_TILDE] = ACTIONS(3429), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3427), - [anon_sym_STAR] = ACTIONS(3429), - [anon_sym_AMP_AMP] = ACTIONS(3429), - [anon_sym_AMP] = ACTIONS(3427), - [anon_sym_SEMI] = ACTIONS(3429), - [anon_sym___extension__] = ACTIONS(3427), - [anon_sym_typedef] = ACTIONS(3427), - [anon_sym_extern] = ACTIONS(3427), - [anon_sym___attribute__] = ACTIONS(3427), - [anon_sym_COLON_COLON] = ACTIONS(3429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3429), - [anon_sym___declspec] = ACTIONS(3427), - [anon_sym___based] = ACTIONS(3427), - [anon_sym___cdecl] = ACTIONS(3427), - [anon_sym___clrcall] = ACTIONS(3427), - [anon_sym___stdcall] = ACTIONS(3427), - [anon_sym___fastcall] = ACTIONS(3427), - [anon_sym___thiscall] = ACTIONS(3427), - [anon_sym___vectorcall] = ACTIONS(3427), - [anon_sym_LBRACE] = ACTIONS(3429), - [anon_sym_signed] = ACTIONS(3427), - [anon_sym_unsigned] = ACTIONS(3427), - [anon_sym_long] = ACTIONS(3427), - [anon_sym_short] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3427), - [anon_sym_static] = ACTIONS(3427), - [anon_sym_register] = ACTIONS(3427), - [anon_sym_inline] = ACTIONS(3427), - [anon_sym___inline] = ACTIONS(3427), - [anon_sym___inline__] = ACTIONS(3427), - [anon_sym___forceinline] = ACTIONS(3427), - [anon_sym_thread_local] = ACTIONS(3427), - [anon_sym___thread] = ACTIONS(3427), - [anon_sym_const] = ACTIONS(3427), - [anon_sym_constexpr] = ACTIONS(3427), - [anon_sym_volatile] = ACTIONS(3427), - [anon_sym_restrict] = ACTIONS(3427), - [anon_sym___restrict__] = ACTIONS(3427), - [anon_sym__Atomic] = ACTIONS(3427), - [anon_sym__Noreturn] = ACTIONS(3427), - [anon_sym_noreturn] = ACTIONS(3427), - [anon_sym_mutable] = ACTIONS(3427), - [anon_sym_constinit] = ACTIONS(3427), - [anon_sym_consteval] = ACTIONS(3427), - [sym_primitive_type] = ACTIONS(3427), - [anon_sym_enum] = ACTIONS(3427), - [anon_sym_class] = ACTIONS(3427), - [anon_sym_struct] = ACTIONS(3427), - [anon_sym_union] = ACTIONS(3427), - [anon_sym_if] = ACTIONS(3427), - [anon_sym_switch] = ACTIONS(3427), - [anon_sym_case] = ACTIONS(3427), - [anon_sym_default] = ACTIONS(3427), - [anon_sym_while] = ACTIONS(3427), - [anon_sym_do] = ACTIONS(3427), - [anon_sym_for] = ACTIONS(3427), - [anon_sym_return] = ACTIONS(3427), - [anon_sym_break] = ACTIONS(3427), - [anon_sym_continue] = ACTIONS(3427), - [anon_sym_goto] = ACTIONS(3427), - [anon_sym___try] = ACTIONS(3427), - [anon_sym___leave] = ACTIONS(3427), - [anon_sym_not] = ACTIONS(3427), - [anon_sym_compl] = ACTIONS(3427), - [anon_sym_DASH_DASH] = ACTIONS(3429), - [anon_sym_PLUS_PLUS] = ACTIONS(3429), - [anon_sym_sizeof] = ACTIONS(3427), - [anon_sym___alignof__] = ACTIONS(3427), - [anon_sym___alignof] = ACTIONS(3427), - [anon_sym__alignof] = ACTIONS(3427), - [anon_sym_alignof] = ACTIONS(3427), - [anon_sym__Alignof] = ACTIONS(3427), - [anon_sym_offsetof] = ACTIONS(3427), - [anon_sym__Generic] = ACTIONS(3427), - [anon_sym_asm] = ACTIONS(3427), - [anon_sym___asm__] = ACTIONS(3427), - [sym_number_literal] = ACTIONS(3429), - [anon_sym_L_SQUOTE] = ACTIONS(3429), - [anon_sym_u_SQUOTE] = ACTIONS(3429), - [anon_sym_U_SQUOTE] = ACTIONS(3429), - [anon_sym_u8_SQUOTE] = ACTIONS(3429), - [anon_sym_SQUOTE] = ACTIONS(3429), - [anon_sym_L_DQUOTE] = ACTIONS(3429), - [anon_sym_u_DQUOTE] = ACTIONS(3429), - [anon_sym_U_DQUOTE] = ACTIONS(3429), - [anon_sym_u8_DQUOTE] = ACTIONS(3429), - [anon_sym_DQUOTE] = ACTIONS(3429), - [sym_true] = ACTIONS(3427), - [sym_false] = ACTIONS(3427), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3427), - [anon_sym_decltype] = ACTIONS(3427), - [anon_sym_virtual] = ACTIONS(3427), - [anon_sym_alignas] = ACTIONS(3427), - [anon_sym_explicit] = ACTIONS(3427), - [anon_sym_typename] = ACTIONS(3427), - [anon_sym_template] = ACTIONS(3427), - [anon_sym_operator] = ACTIONS(3427), - [anon_sym_try] = ACTIONS(3427), - [anon_sym_delete] = ACTIONS(3427), - [anon_sym_throw] = ACTIONS(3427), - [anon_sym_namespace] = ACTIONS(3427), - [anon_sym_using] = ACTIONS(3427), - [anon_sym_static_assert] = ACTIONS(3427), - [anon_sym_concept] = ACTIONS(3427), - [anon_sym_co_return] = ACTIONS(3427), - [anon_sym_co_yield] = ACTIONS(3427), - [anon_sym_R_DQUOTE] = ACTIONS(3429), - [anon_sym_LR_DQUOTE] = ACTIONS(3429), - [anon_sym_uR_DQUOTE] = ACTIONS(3429), - [anon_sym_UR_DQUOTE] = ACTIONS(3429), - [anon_sym_u8R_DQUOTE] = ACTIONS(3429), - [anon_sym_co_await] = ACTIONS(3427), - [anon_sym_new] = ACTIONS(3427), - [anon_sym_requires] = ACTIONS(3427), - [sym_this] = ACTIONS(3427), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3429), - [sym_semgrep_named_ellipsis] = ACTIONS(3429), - }, - [718] = { - [sym_identifier] = ACTIONS(3457), - [aux_sym_preproc_include_token1] = ACTIONS(3457), - [aux_sym_preproc_def_token1] = ACTIONS(3457), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3459), - [aux_sym_preproc_if_token1] = ACTIONS(3457), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3457), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3457), - [sym_preproc_directive] = ACTIONS(3457), - [anon_sym_LPAREN2] = ACTIONS(3459), - [anon_sym_BANG] = ACTIONS(3459), - [anon_sym_TILDE] = ACTIONS(3459), - [anon_sym_DASH] = ACTIONS(3457), - [anon_sym_PLUS] = ACTIONS(3457), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_AMP] = ACTIONS(3457), - [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym___extension__] = ACTIONS(3457), - [anon_sym_typedef] = ACTIONS(3457), - [anon_sym_extern] = ACTIONS(3457), - [anon_sym___attribute__] = ACTIONS(3457), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3459), - [anon_sym___declspec] = ACTIONS(3457), - [anon_sym___based] = ACTIONS(3457), - [anon_sym___cdecl] = ACTIONS(3457), - [anon_sym___clrcall] = ACTIONS(3457), - [anon_sym___stdcall] = ACTIONS(3457), - [anon_sym___fastcall] = ACTIONS(3457), - [anon_sym___thiscall] = ACTIONS(3457), - [anon_sym___vectorcall] = ACTIONS(3457), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_RBRACE] = ACTIONS(3459), - [anon_sym_signed] = ACTIONS(3457), - [anon_sym_unsigned] = ACTIONS(3457), - [anon_sym_long] = ACTIONS(3457), - [anon_sym_short] = ACTIONS(3457), - [anon_sym_LBRACK] = ACTIONS(3457), - [anon_sym_static] = ACTIONS(3457), - [anon_sym_register] = ACTIONS(3457), - [anon_sym_inline] = ACTIONS(3457), - [anon_sym___inline] = ACTIONS(3457), - [anon_sym___inline__] = ACTIONS(3457), - [anon_sym___forceinline] = ACTIONS(3457), - [anon_sym_thread_local] = ACTIONS(3457), - [anon_sym___thread] = ACTIONS(3457), - [anon_sym_const] = ACTIONS(3457), - [anon_sym_constexpr] = ACTIONS(3457), - [anon_sym_volatile] = ACTIONS(3457), - [anon_sym_restrict] = ACTIONS(3457), - [anon_sym___restrict__] = ACTIONS(3457), - [anon_sym__Atomic] = ACTIONS(3457), - [anon_sym__Noreturn] = ACTIONS(3457), - [anon_sym_noreturn] = ACTIONS(3457), - [anon_sym_mutable] = ACTIONS(3457), - [anon_sym_constinit] = ACTIONS(3457), - [anon_sym_consteval] = ACTIONS(3457), - [sym_primitive_type] = ACTIONS(3457), - [anon_sym_enum] = ACTIONS(3457), - [anon_sym_class] = ACTIONS(3457), - [anon_sym_struct] = ACTIONS(3457), - [anon_sym_union] = ACTIONS(3457), - [anon_sym_if] = ACTIONS(3457), - [anon_sym_switch] = ACTIONS(3457), - [anon_sym_case] = ACTIONS(3457), - [anon_sym_default] = ACTIONS(3457), - [anon_sym_while] = ACTIONS(3457), - [anon_sym_do] = ACTIONS(3457), - [anon_sym_for] = ACTIONS(3457), - [anon_sym_return] = ACTIONS(3457), - [anon_sym_break] = ACTIONS(3457), - [anon_sym_continue] = ACTIONS(3457), - [anon_sym_goto] = ACTIONS(3457), - [anon_sym___try] = ACTIONS(3457), - [anon_sym___leave] = ACTIONS(3457), - [anon_sym_not] = ACTIONS(3457), - [anon_sym_compl] = ACTIONS(3457), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_sizeof] = ACTIONS(3457), - [anon_sym___alignof__] = ACTIONS(3457), - [anon_sym___alignof] = ACTIONS(3457), - [anon_sym__alignof] = ACTIONS(3457), - [anon_sym_alignof] = ACTIONS(3457), - [anon_sym__Alignof] = ACTIONS(3457), - [anon_sym_offsetof] = ACTIONS(3457), - [anon_sym__Generic] = ACTIONS(3457), - [anon_sym_asm] = ACTIONS(3457), - [anon_sym___asm__] = ACTIONS(3457), - [sym_number_literal] = ACTIONS(3459), - [anon_sym_L_SQUOTE] = ACTIONS(3459), - [anon_sym_u_SQUOTE] = ACTIONS(3459), - [anon_sym_U_SQUOTE] = ACTIONS(3459), - [anon_sym_u8_SQUOTE] = ACTIONS(3459), - [anon_sym_SQUOTE] = ACTIONS(3459), - [anon_sym_L_DQUOTE] = ACTIONS(3459), - [anon_sym_u_DQUOTE] = ACTIONS(3459), - [anon_sym_U_DQUOTE] = ACTIONS(3459), - [anon_sym_u8_DQUOTE] = ACTIONS(3459), - [anon_sym_DQUOTE] = ACTIONS(3459), - [sym_true] = ACTIONS(3457), - [sym_false] = ACTIONS(3457), - [anon_sym_NULL] = ACTIONS(3457), - [anon_sym_nullptr] = ACTIONS(3457), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3457), - [anon_sym_decltype] = ACTIONS(3457), - [anon_sym_virtual] = ACTIONS(3457), - [anon_sym_alignas] = ACTIONS(3457), - [anon_sym_explicit] = ACTIONS(3457), - [anon_sym_typename] = ACTIONS(3457), - [anon_sym_template] = ACTIONS(3457), - [anon_sym_operator] = ACTIONS(3457), - [anon_sym_try] = ACTIONS(3457), - [anon_sym_delete] = ACTIONS(3457), - [anon_sym_throw] = ACTIONS(3457), - [anon_sym_namespace] = ACTIONS(3457), - [anon_sym_using] = ACTIONS(3457), - [anon_sym_static_assert] = ACTIONS(3457), - [anon_sym_concept] = ACTIONS(3457), - [anon_sym_co_return] = ACTIONS(3457), - [anon_sym_co_yield] = ACTIONS(3457), - [anon_sym_R_DQUOTE] = ACTIONS(3459), - [anon_sym_LR_DQUOTE] = ACTIONS(3459), - [anon_sym_uR_DQUOTE] = ACTIONS(3459), - [anon_sym_UR_DQUOTE] = ACTIONS(3459), - [anon_sym_u8R_DQUOTE] = ACTIONS(3459), - [anon_sym_co_await] = ACTIONS(3457), - [anon_sym_new] = ACTIONS(3457), - [anon_sym_requires] = ACTIONS(3457), - [sym_this] = ACTIONS(3457), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3459), - [sym_semgrep_named_ellipsis] = ACTIONS(3459), - }, - [719] = { - [sym_identifier] = ACTIONS(3461), - [aux_sym_preproc_include_token1] = ACTIONS(3461), - [aux_sym_preproc_def_token1] = ACTIONS(3461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3463), - [aux_sym_preproc_if_token1] = ACTIONS(3461), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3461), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3461), - [sym_preproc_directive] = ACTIONS(3461), - [anon_sym_LPAREN2] = ACTIONS(3463), - [anon_sym_BANG] = ACTIONS(3463), - [anon_sym_TILDE] = ACTIONS(3463), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3463), - [anon_sym_AMP_AMP] = ACTIONS(3463), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_SEMI] = ACTIONS(3463), - [anon_sym___extension__] = ACTIONS(3461), - [anon_sym_typedef] = ACTIONS(3461), - [anon_sym_extern] = ACTIONS(3461), - [anon_sym___attribute__] = ACTIONS(3461), - [anon_sym_COLON_COLON] = ACTIONS(3463), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3463), - [anon_sym___declspec] = ACTIONS(3461), - [anon_sym___based] = ACTIONS(3461), - [anon_sym___cdecl] = ACTIONS(3461), - [anon_sym___clrcall] = ACTIONS(3461), - [anon_sym___stdcall] = ACTIONS(3461), - [anon_sym___fastcall] = ACTIONS(3461), - [anon_sym___thiscall] = ACTIONS(3461), - [anon_sym___vectorcall] = ACTIONS(3461), - [anon_sym_LBRACE] = ACTIONS(3463), - [anon_sym_RBRACE] = ACTIONS(3463), - [anon_sym_signed] = ACTIONS(3461), - [anon_sym_unsigned] = ACTIONS(3461), - [anon_sym_long] = ACTIONS(3461), - [anon_sym_short] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3461), - [anon_sym_static] = ACTIONS(3461), - [anon_sym_register] = ACTIONS(3461), - [anon_sym_inline] = ACTIONS(3461), - [anon_sym___inline] = ACTIONS(3461), - [anon_sym___inline__] = ACTIONS(3461), - [anon_sym___forceinline] = ACTIONS(3461), - [anon_sym_thread_local] = ACTIONS(3461), - [anon_sym___thread] = ACTIONS(3461), - [anon_sym_const] = ACTIONS(3461), - [anon_sym_constexpr] = ACTIONS(3461), - [anon_sym_volatile] = ACTIONS(3461), - [anon_sym_restrict] = ACTIONS(3461), - [anon_sym___restrict__] = ACTIONS(3461), - [anon_sym__Atomic] = ACTIONS(3461), - [anon_sym__Noreturn] = ACTIONS(3461), - [anon_sym_noreturn] = ACTIONS(3461), - [anon_sym_mutable] = ACTIONS(3461), - [anon_sym_constinit] = ACTIONS(3461), - [anon_sym_consteval] = ACTIONS(3461), - [sym_primitive_type] = ACTIONS(3461), - [anon_sym_enum] = ACTIONS(3461), - [anon_sym_class] = ACTIONS(3461), - [anon_sym_struct] = ACTIONS(3461), - [anon_sym_union] = ACTIONS(3461), - [anon_sym_if] = ACTIONS(3461), - [anon_sym_switch] = ACTIONS(3461), - [anon_sym_case] = ACTIONS(3461), - [anon_sym_default] = ACTIONS(3461), - [anon_sym_while] = ACTIONS(3461), - [anon_sym_do] = ACTIONS(3461), - [anon_sym_for] = ACTIONS(3461), - [anon_sym_return] = ACTIONS(3461), - [anon_sym_break] = ACTIONS(3461), - [anon_sym_continue] = ACTIONS(3461), - [anon_sym_goto] = ACTIONS(3461), - [anon_sym___try] = ACTIONS(3461), - [anon_sym___leave] = ACTIONS(3461), - [anon_sym_not] = ACTIONS(3461), - [anon_sym_compl] = ACTIONS(3461), - [anon_sym_DASH_DASH] = ACTIONS(3463), - [anon_sym_PLUS_PLUS] = ACTIONS(3463), - [anon_sym_sizeof] = ACTIONS(3461), - [anon_sym___alignof__] = ACTIONS(3461), - [anon_sym___alignof] = ACTIONS(3461), - [anon_sym__alignof] = ACTIONS(3461), - [anon_sym_alignof] = ACTIONS(3461), - [anon_sym__Alignof] = ACTIONS(3461), - [anon_sym_offsetof] = ACTIONS(3461), - [anon_sym__Generic] = ACTIONS(3461), - [anon_sym_asm] = ACTIONS(3461), - [anon_sym___asm__] = ACTIONS(3461), - [sym_number_literal] = ACTIONS(3463), - [anon_sym_L_SQUOTE] = ACTIONS(3463), - [anon_sym_u_SQUOTE] = ACTIONS(3463), - [anon_sym_U_SQUOTE] = ACTIONS(3463), - [anon_sym_u8_SQUOTE] = ACTIONS(3463), - [anon_sym_SQUOTE] = ACTIONS(3463), - [anon_sym_L_DQUOTE] = ACTIONS(3463), - [anon_sym_u_DQUOTE] = ACTIONS(3463), - [anon_sym_U_DQUOTE] = ACTIONS(3463), - [anon_sym_u8_DQUOTE] = ACTIONS(3463), - [anon_sym_DQUOTE] = ACTIONS(3463), - [sym_true] = ACTIONS(3461), - [sym_false] = ACTIONS(3461), - [anon_sym_NULL] = ACTIONS(3461), - [anon_sym_nullptr] = ACTIONS(3461), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3461), - [anon_sym_decltype] = ACTIONS(3461), - [anon_sym_virtual] = ACTIONS(3461), - [anon_sym_alignas] = ACTIONS(3461), - [anon_sym_explicit] = ACTIONS(3461), - [anon_sym_typename] = ACTIONS(3461), - [anon_sym_template] = ACTIONS(3461), - [anon_sym_operator] = ACTIONS(3461), - [anon_sym_try] = ACTIONS(3461), - [anon_sym_delete] = ACTIONS(3461), - [anon_sym_throw] = ACTIONS(3461), - [anon_sym_namespace] = ACTIONS(3461), - [anon_sym_using] = ACTIONS(3461), - [anon_sym_static_assert] = ACTIONS(3461), - [anon_sym_concept] = ACTIONS(3461), - [anon_sym_co_return] = ACTIONS(3461), - [anon_sym_co_yield] = ACTIONS(3461), - [anon_sym_R_DQUOTE] = ACTIONS(3463), - [anon_sym_LR_DQUOTE] = ACTIONS(3463), - [anon_sym_uR_DQUOTE] = ACTIONS(3463), - [anon_sym_UR_DQUOTE] = ACTIONS(3463), - [anon_sym_u8R_DQUOTE] = ACTIONS(3463), - [anon_sym_co_await] = ACTIONS(3461), - [anon_sym_new] = ACTIONS(3461), - [anon_sym_requires] = ACTIONS(3461), - [sym_this] = ACTIONS(3461), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3463), - [sym_semgrep_named_ellipsis] = ACTIONS(3463), - }, - [720] = { - [sym_identifier] = ACTIONS(3465), - [aux_sym_preproc_include_token1] = ACTIONS(3465), - [aux_sym_preproc_def_token1] = ACTIONS(3465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3467), - [aux_sym_preproc_if_token1] = ACTIONS(3465), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3465), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3465), - [sym_preproc_directive] = ACTIONS(3465), - [anon_sym_LPAREN2] = ACTIONS(3467), - [anon_sym_BANG] = ACTIONS(3467), - [anon_sym_TILDE] = ACTIONS(3467), - [anon_sym_DASH] = ACTIONS(3465), - [anon_sym_PLUS] = ACTIONS(3465), - [anon_sym_STAR] = ACTIONS(3467), - [anon_sym_AMP_AMP] = ACTIONS(3467), - [anon_sym_AMP] = ACTIONS(3465), - [anon_sym_SEMI] = ACTIONS(3467), - [anon_sym___extension__] = ACTIONS(3465), - [anon_sym_typedef] = ACTIONS(3465), - [anon_sym_extern] = ACTIONS(3465), - [anon_sym___attribute__] = ACTIONS(3465), - [anon_sym_COLON_COLON] = ACTIONS(3467), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3467), - [anon_sym___declspec] = ACTIONS(3465), - [anon_sym___based] = ACTIONS(3465), - [anon_sym___cdecl] = ACTIONS(3465), - [anon_sym___clrcall] = ACTIONS(3465), - [anon_sym___stdcall] = ACTIONS(3465), - [anon_sym___fastcall] = ACTIONS(3465), - [anon_sym___thiscall] = ACTIONS(3465), - [anon_sym___vectorcall] = ACTIONS(3465), - [anon_sym_LBRACE] = ACTIONS(3467), - [anon_sym_RBRACE] = ACTIONS(3467), - [anon_sym_signed] = ACTIONS(3465), - [anon_sym_unsigned] = ACTIONS(3465), - [anon_sym_long] = ACTIONS(3465), - [anon_sym_short] = ACTIONS(3465), - [anon_sym_LBRACK] = ACTIONS(3465), - [anon_sym_static] = ACTIONS(3465), - [anon_sym_register] = ACTIONS(3465), - [anon_sym_inline] = ACTIONS(3465), - [anon_sym___inline] = ACTIONS(3465), - [anon_sym___inline__] = ACTIONS(3465), - [anon_sym___forceinline] = ACTIONS(3465), - [anon_sym_thread_local] = ACTIONS(3465), - [anon_sym___thread] = ACTIONS(3465), - [anon_sym_const] = ACTIONS(3465), - [anon_sym_constexpr] = ACTIONS(3465), - [anon_sym_volatile] = ACTIONS(3465), - [anon_sym_restrict] = ACTIONS(3465), - [anon_sym___restrict__] = ACTIONS(3465), - [anon_sym__Atomic] = ACTIONS(3465), - [anon_sym__Noreturn] = ACTIONS(3465), - [anon_sym_noreturn] = ACTIONS(3465), - [anon_sym_mutable] = ACTIONS(3465), - [anon_sym_constinit] = ACTIONS(3465), - [anon_sym_consteval] = ACTIONS(3465), - [sym_primitive_type] = ACTIONS(3465), - [anon_sym_enum] = ACTIONS(3465), - [anon_sym_class] = ACTIONS(3465), - [anon_sym_struct] = ACTIONS(3465), - [anon_sym_union] = ACTIONS(3465), - [anon_sym_if] = ACTIONS(3465), - [anon_sym_switch] = ACTIONS(3465), - [anon_sym_case] = ACTIONS(3465), - [anon_sym_default] = ACTIONS(3465), - [anon_sym_while] = ACTIONS(3465), - [anon_sym_do] = ACTIONS(3465), - [anon_sym_for] = ACTIONS(3465), - [anon_sym_return] = ACTIONS(3465), - [anon_sym_break] = ACTIONS(3465), - [anon_sym_continue] = ACTIONS(3465), - [anon_sym_goto] = ACTIONS(3465), - [anon_sym___try] = ACTIONS(3465), - [anon_sym___leave] = ACTIONS(3465), - [anon_sym_not] = ACTIONS(3465), - [anon_sym_compl] = ACTIONS(3465), - [anon_sym_DASH_DASH] = ACTIONS(3467), - [anon_sym_PLUS_PLUS] = ACTIONS(3467), - [anon_sym_sizeof] = ACTIONS(3465), - [anon_sym___alignof__] = ACTIONS(3465), - [anon_sym___alignof] = ACTIONS(3465), - [anon_sym__alignof] = ACTIONS(3465), - [anon_sym_alignof] = ACTIONS(3465), - [anon_sym__Alignof] = ACTIONS(3465), - [anon_sym_offsetof] = ACTIONS(3465), - [anon_sym__Generic] = ACTIONS(3465), - [anon_sym_asm] = ACTIONS(3465), - [anon_sym___asm__] = ACTIONS(3465), - [sym_number_literal] = ACTIONS(3467), - [anon_sym_L_SQUOTE] = ACTIONS(3467), - [anon_sym_u_SQUOTE] = ACTIONS(3467), - [anon_sym_U_SQUOTE] = ACTIONS(3467), - [anon_sym_u8_SQUOTE] = ACTIONS(3467), - [anon_sym_SQUOTE] = ACTIONS(3467), - [anon_sym_L_DQUOTE] = ACTIONS(3467), - [anon_sym_u_DQUOTE] = ACTIONS(3467), - [anon_sym_U_DQUOTE] = ACTIONS(3467), - [anon_sym_u8_DQUOTE] = ACTIONS(3467), - [anon_sym_DQUOTE] = ACTIONS(3467), - [sym_true] = ACTIONS(3465), - [sym_false] = ACTIONS(3465), - [anon_sym_NULL] = ACTIONS(3465), - [anon_sym_nullptr] = ACTIONS(3465), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3465), - [anon_sym_decltype] = ACTIONS(3465), - [anon_sym_virtual] = ACTIONS(3465), - [anon_sym_alignas] = ACTIONS(3465), - [anon_sym_explicit] = ACTIONS(3465), - [anon_sym_typename] = ACTIONS(3465), - [anon_sym_template] = ACTIONS(3465), - [anon_sym_operator] = ACTIONS(3465), - [anon_sym_try] = ACTIONS(3465), - [anon_sym_delete] = ACTIONS(3465), - [anon_sym_throw] = ACTIONS(3465), - [anon_sym_namespace] = ACTIONS(3465), - [anon_sym_using] = ACTIONS(3465), - [anon_sym_static_assert] = ACTIONS(3465), - [anon_sym_concept] = ACTIONS(3465), - [anon_sym_co_return] = ACTIONS(3465), - [anon_sym_co_yield] = ACTIONS(3465), - [anon_sym_R_DQUOTE] = ACTIONS(3467), - [anon_sym_LR_DQUOTE] = ACTIONS(3467), - [anon_sym_uR_DQUOTE] = ACTIONS(3467), - [anon_sym_UR_DQUOTE] = ACTIONS(3467), - [anon_sym_u8R_DQUOTE] = ACTIONS(3467), - [anon_sym_co_await] = ACTIONS(3465), - [anon_sym_new] = ACTIONS(3465), - [anon_sym_requires] = ACTIONS(3465), - [sym_this] = ACTIONS(3465), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3467), - [sym_semgrep_named_ellipsis] = ACTIONS(3467), - }, - [721] = { - [sym_identifier] = ACTIONS(3469), - [aux_sym_preproc_include_token1] = ACTIONS(3469), - [aux_sym_preproc_def_token1] = ACTIONS(3469), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3471), - [aux_sym_preproc_if_token1] = ACTIONS(3469), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3469), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3469), - [sym_preproc_directive] = ACTIONS(3469), - [anon_sym_LPAREN2] = ACTIONS(3471), - [anon_sym_BANG] = ACTIONS(3471), - [anon_sym_TILDE] = ACTIONS(3471), - [anon_sym_DASH] = ACTIONS(3469), - [anon_sym_PLUS] = ACTIONS(3469), - [anon_sym_STAR] = ACTIONS(3471), - [anon_sym_AMP_AMP] = ACTIONS(3471), - [anon_sym_AMP] = ACTIONS(3469), - [anon_sym_SEMI] = ACTIONS(3471), - [anon_sym___extension__] = ACTIONS(3469), - [anon_sym_typedef] = ACTIONS(3469), - [anon_sym_extern] = ACTIONS(3469), - [anon_sym___attribute__] = ACTIONS(3469), - [anon_sym_COLON_COLON] = ACTIONS(3471), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3471), - [anon_sym___declspec] = ACTIONS(3469), - [anon_sym___based] = ACTIONS(3469), - [anon_sym___cdecl] = ACTIONS(3469), - [anon_sym___clrcall] = ACTIONS(3469), - [anon_sym___stdcall] = ACTIONS(3469), - [anon_sym___fastcall] = ACTIONS(3469), - [anon_sym___thiscall] = ACTIONS(3469), - [anon_sym___vectorcall] = ACTIONS(3469), - [anon_sym_LBRACE] = ACTIONS(3471), - [anon_sym_RBRACE] = ACTIONS(3471), - [anon_sym_signed] = ACTIONS(3469), - [anon_sym_unsigned] = ACTIONS(3469), - [anon_sym_long] = ACTIONS(3469), - [anon_sym_short] = ACTIONS(3469), - [anon_sym_LBRACK] = ACTIONS(3469), - [anon_sym_static] = ACTIONS(3469), - [anon_sym_register] = ACTIONS(3469), - [anon_sym_inline] = ACTIONS(3469), - [anon_sym___inline] = ACTIONS(3469), - [anon_sym___inline__] = ACTIONS(3469), - [anon_sym___forceinline] = ACTIONS(3469), - [anon_sym_thread_local] = ACTIONS(3469), - [anon_sym___thread] = ACTIONS(3469), - [anon_sym_const] = ACTIONS(3469), - [anon_sym_constexpr] = ACTIONS(3469), - [anon_sym_volatile] = ACTIONS(3469), - [anon_sym_restrict] = ACTIONS(3469), - [anon_sym___restrict__] = ACTIONS(3469), - [anon_sym__Atomic] = ACTIONS(3469), - [anon_sym__Noreturn] = ACTIONS(3469), - [anon_sym_noreturn] = ACTIONS(3469), - [anon_sym_mutable] = ACTIONS(3469), - [anon_sym_constinit] = ACTIONS(3469), - [anon_sym_consteval] = ACTIONS(3469), - [sym_primitive_type] = ACTIONS(3469), - [anon_sym_enum] = ACTIONS(3469), - [anon_sym_class] = ACTIONS(3469), - [anon_sym_struct] = ACTIONS(3469), - [anon_sym_union] = ACTIONS(3469), - [anon_sym_if] = ACTIONS(3469), - [anon_sym_switch] = ACTIONS(3469), - [anon_sym_case] = ACTIONS(3469), - [anon_sym_default] = ACTIONS(3469), - [anon_sym_while] = ACTIONS(3469), - [anon_sym_do] = ACTIONS(3469), - [anon_sym_for] = ACTIONS(3469), - [anon_sym_return] = ACTIONS(3469), - [anon_sym_break] = ACTIONS(3469), - [anon_sym_continue] = ACTIONS(3469), - [anon_sym_goto] = ACTIONS(3469), - [anon_sym___try] = ACTIONS(3469), - [anon_sym___leave] = ACTIONS(3469), - [anon_sym_not] = ACTIONS(3469), - [anon_sym_compl] = ACTIONS(3469), - [anon_sym_DASH_DASH] = ACTIONS(3471), - [anon_sym_PLUS_PLUS] = ACTIONS(3471), - [anon_sym_sizeof] = ACTIONS(3469), - [anon_sym___alignof__] = ACTIONS(3469), - [anon_sym___alignof] = ACTIONS(3469), - [anon_sym__alignof] = ACTIONS(3469), - [anon_sym_alignof] = ACTIONS(3469), - [anon_sym__Alignof] = ACTIONS(3469), - [anon_sym_offsetof] = ACTIONS(3469), - [anon_sym__Generic] = ACTIONS(3469), - [anon_sym_asm] = ACTIONS(3469), - [anon_sym___asm__] = ACTIONS(3469), - [sym_number_literal] = ACTIONS(3471), - [anon_sym_L_SQUOTE] = ACTIONS(3471), - [anon_sym_u_SQUOTE] = ACTIONS(3471), - [anon_sym_U_SQUOTE] = ACTIONS(3471), - [anon_sym_u8_SQUOTE] = ACTIONS(3471), - [anon_sym_SQUOTE] = ACTIONS(3471), - [anon_sym_L_DQUOTE] = ACTIONS(3471), - [anon_sym_u_DQUOTE] = ACTIONS(3471), - [anon_sym_U_DQUOTE] = ACTIONS(3471), - [anon_sym_u8_DQUOTE] = ACTIONS(3471), - [anon_sym_DQUOTE] = ACTIONS(3471), - [sym_true] = ACTIONS(3469), - [sym_false] = ACTIONS(3469), - [anon_sym_NULL] = ACTIONS(3469), - [anon_sym_nullptr] = ACTIONS(3469), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3469), - [anon_sym_decltype] = ACTIONS(3469), - [anon_sym_virtual] = ACTIONS(3469), - [anon_sym_alignas] = ACTIONS(3469), - [anon_sym_explicit] = ACTIONS(3469), - [anon_sym_typename] = ACTIONS(3469), - [anon_sym_template] = ACTIONS(3469), - [anon_sym_operator] = ACTIONS(3469), - [anon_sym_try] = ACTIONS(3469), - [anon_sym_delete] = ACTIONS(3469), - [anon_sym_throw] = ACTIONS(3469), - [anon_sym_namespace] = ACTIONS(3469), - [anon_sym_using] = ACTIONS(3469), - [anon_sym_static_assert] = ACTIONS(3469), - [anon_sym_concept] = ACTIONS(3469), - [anon_sym_co_return] = ACTIONS(3469), - [anon_sym_co_yield] = ACTIONS(3469), - [anon_sym_R_DQUOTE] = ACTIONS(3471), - [anon_sym_LR_DQUOTE] = ACTIONS(3471), - [anon_sym_uR_DQUOTE] = ACTIONS(3471), - [anon_sym_UR_DQUOTE] = ACTIONS(3471), - [anon_sym_u8R_DQUOTE] = ACTIONS(3471), - [anon_sym_co_await] = ACTIONS(3469), - [anon_sym_new] = ACTIONS(3469), - [anon_sym_requires] = ACTIONS(3469), - [sym_this] = ACTIONS(3469), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3471), - [sym_semgrep_named_ellipsis] = ACTIONS(3471), - }, - [722] = { - [sym_identifier] = ACTIONS(3473), - [aux_sym_preproc_include_token1] = ACTIONS(3473), - [aux_sym_preproc_def_token1] = ACTIONS(3473), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3475), - [aux_sym_preproc_if_token1] = ACTIONS(3473), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3473), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3473), - [sym_preproc_directive] = ACTIONS(3473), - [anon_sym_LPAREN2] = ACTIONS(3475), - [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(3475), - [anon_sym_DASH] = ACTIONS(3473), - [anon_sym_PLUS] = ACTIONS(3473), - [anon_sym_STAR] = ACTIONS(3475), - [anon_sym_AMP_AMP] = ACTIONS(3475), - [anon_sym_AMP] = ACTIONS(3473), - [anon_sym_SEMI] = ACTIONS(3475), - [anon_sym___extension__] = ACTIONS(3473), - [anon_sym_typedef] = ACTIONS(3473), - [anon_sym_extern] = ACTIONS(3473), - [anon_sym___attribute__] = ACTIONS(3473), - [anon_sym_COLON_COLON] = ACTIONS(3475), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3475), - [anon_sym___declspec] = ACTIONS(3473), - [anon_sym___based] = ACTIONS(3473), - [anon_sym___cdecl] = ACTIONS(3473), - [anon_sym___clrcall] = ACTIONS(3473), - [anon_sym___stdcall] = ACTIONS(3473), - [anon_sym___fastcall] = ACTIONS(3473), - [anon_sym___thiscall] = ACTIONS(3473), - [anon_sym___vectorcall] = ACTIONS(3473), - [anon_sym_LBRACE] = ACTIONS(3475), - [anon_sym_RBRACE] = ACTIONS(3475), - [anon_sym_signed] = ACTIONS(3473), - [anon_sym_unsigned] = ACTIONS(3473), - [anon_sym_long] = ACTIONS(3473), - [anon_sym_short] = ACTIONS(3473), - [anon_sym_LBRACK] = ACTIONS(3473), - [anon_sym_static] = ACTIONS(3473), - [anon_sym_register] = ACTIONS(3473), - [anon_sym_inline] = ACTIONS(3473), - [anon_sym___inline] = ACTIONS(3473), - [anon_sym___inline__] = ACTIONS(3473), - [anon_sym___forceinline] = ACTIONS(3473), - [anon_sym_thread_local] = ACTIONS(3473), - [anon_sym___thread] = ACTIONS(3473), - [anon_sym_const] = ACTIONS(3473), - [anon_sym_constexpr] = ACTIONS(3473), - [anon_sym_volatile] = ACTIONS(3473), - [anon_sym_restrict] = ACTIONS(3473), - [anon_sym___restrict__] = ACTIONS(3473), - [anon_sym__Atomic] = ACTIONS(3473), - [anon_sym__Noreturn] = ACTIONS(3473), - [anon_sym_noreturn] = ACTIONS(3473), - [anon_sym_mutable] = ACTIONS(3473), - [anon_sym_constinit] = ACTIONS(3473), - [anon_sym_consteval] = ACTIONS(3473), - [sym_primitive_type] = ACTIONS(3473), - [anon_sym_enum] = ACTIONS(3473), - [anon_sym_class] = ACTIONS(3473), - [anon_sym_struct] = ACTIONS(3473), - [anon_sym_union] = ACTIONS(3473), - [anon_sym_if] = ACTIONS(3473), - [anon_sym_switch] = ACTIONS(3473), - [anon_sym_case] = ACTIONS(3473), - [anon_sym_default] = ACTIONS(3473), - [anon_sym_while] = ACTIONS(3473), - [anon_sym_do] = ACTIONS(3473), - [anon_sym_for] = ACTIONS(3473), - [anon_sym_return] = ACTIONS(3473), - [anon_sym_break] = ACTIONS(3473), - [anon_sym_continue] = ACTIONS(3473), - [anon_sym_goto] = ACTIONS(3473), - [anon_sym___try] = ACTIONS(3473), - [anon_sym___leave] = ACTIONS(3473), - [anon_sym_not] = ACTIONS(3473), - [anon_sym_compl] = ACTIONS(3473), - [anon_sym_DASH_DASH] = ACTIONS(3475), - [anon_sym_PLUS_PLUS] = ACTIONS(3475), - [anon_sym_sizeof] = ACTIONS(3473), - [anon_sym___alignof__] = ACTIONS(3473), - [anon_sym___alignof] = ACTIONS(3473), - [anon_sym__alignof] = ACTIONS(3473), - [anon_sym_alignof] = ACTIONS(3473), - [anon_sym__Alignof] = ACTIONS(3473), - [anon_sym_offsetof] = ACTIONS(3473), - [anon_sym__Generic] = ACTIONS(3473), - [anon_sym_asm] = ACTIONS(3473), - [anon_sym___asm__] = ACTIONS(3473), - [sym_number_literal] = ACTIONS(3475), - [anon_sym_L_SQUOTE] = ACTIONS(3475), - [anon_sym_u_SQUOTE] = ACTIONS(3475), - [anon_sym_U_SQUOTE] = ACTIONS(3475), - [anon_sym_u8_SQUOTE] = ACTIONS(3475), - [anon_sym_SQUOTE] = ACTIONS(3475), - [anon_sym_L_DQUOTE] = ACTIONS(3475), - [anon_sym_u_DQUOTE] = ACTIONS(3475), - [anon_sym_U_DQUOTE] = ACTIONS(3475), - [anon_sym_u8_DQUOTE] = ACTIONS(3475), - [anon_sym_DQUOTE] = ACTIONS(3475), - [sym_true] = ACTIONS(3473), - [sym_false] = ACTIONS(3473), - [anon_sym_NULL] = ACTIONS(3473), - [anon_sym_nullptr] = ACTIONS(3473), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3473), - [anon_sym_decltype] = ACTIONS(3473), - [anon_sym_virtual] = ACTIONS(3473), - [anon_sym_alignas] = ACTIONS(3473), - [anon_sym_explicit] = ACTIONS(3473), - [anon_sym_typename] = ACTIONS(3473), - [anon_sym_template] = ACTIONS(3473), - [anon_sym_operator] = ACTIONS(3473), - [anon_sym_try] = ACTIONS(3473), - [anon_sym_delete] = ACTIONS(3473), - [anon_sym_throw] = ACTIONS(3473), - [anon_sym_namespace] = ACTIONS(3473), - [anon_sym_using] = ACTIONS(3473), - [anon_sym_static_assert] = ACTIONS(3473), - [anon_sym_concept] = ACTIONS(3473), - [anon_sym_co_return] = ACTIONS(3473), - [anon_sym_co_yield] = ACTIONS(3473), - [anon_sym_R_DQUOTE] = ACTIONS(3475), - [anon_sym_LR_DQUOTE] = ACTIONS(3475), - [anon_sym_uR_DQUOTE] = ACTIONS(3475), - [anon_sym_UR_DQUOTE] = ACTIONS(3475), - [anon_sym_u8R_DQUOTE] = ACTIONS(3475), - [anon_sym_co_await] = ACTIONS(3473), - [anon_sym_new] = ACTIONS(3473), - [anon_sym_requires] = ACTIONS(3473), - [sym_this] = ACTIONS(3473), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3475), - [sym_semgrep_named_ellipsis] = ACTIONS(3475), - }, - [723] = { - [sym_identifier] = ACTIONS(3249), - [aux_sym_preproc_include_token1] = ACTIONS(3249), - [aux_sym_preproc_def_token1] = ACTIONS(3249), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3251), - [aux_sym_preproc_if_token1] = ACTIONS(3249), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3249), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3249), - [sym_preproc_directive] = ACTIONS(3249), - [anon_sym_LPAREN2] = ACTIONS(3251), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_TILDE] = ACTIONS(3251), - [anon_sym_DASH] = ACTIONS(3249), - [anon_sym_PLUS] = ACTIONS(3249), - [anon_sym_STAR] = ACTIONS(3251), - [anon_sym_AMP_AMP] = ACTIONS(3251), - [anon_sym_AMP] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym___extension__] = ACTIONS(3249), - [anon_sym_typedef] = ACTIONS(3249), - [anon_sym_extern] = ACTIONS(3249), - [anon_sym___attribute__] = ACTIONS(3249), - [anon_sym_COLON_COLON] = ACTIONS(3251), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3251), - [anon_sym___declspec] = ACTIONS(3249), - [anon_sym___based] = ACTIONS(3249), - [anon_sym___cdecl] = ACTIONS(3249), - [anon_sym___clrcall] = ACTIONS(3249), - [anon_sym___stdcall] = ACTIONS(3249), - [anon_sym___fastcall] = ACTIONS(3249), - [anon_sym___thiscall] = ACTIONS(3249), - [anon_sym___vectorcall] = ACTIONS(3249), - [anon_sym_LBRACE] = ACTIONS(3251), - [anon_sym_RBRACE] = ACTIONS(3251), - [anon_sym_signed] = ACTIONS(3249), - [anon_sym_unsigned] = ACTIONS(3249), - [anon_sym_long] = ACTIONS(3249), - [anon_sym_short] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_static] = ACTIONS(3249), - [anon_sym_register] = ACTIONS(3249), - [anon_sym_inline] = ACTIONS(3249), - [anon_sym___inline] = ACTIONS(3249), - [anon_sym___inline__] = ACTIONS(3249), - [anon_sym___forceinline] = ACTIONS(3249), - [anon_sym_thread_local] = ACTIONS(3249), - [anon_sym___thread] = ACTIONS(3249), - [anon_sym_const] = ACTIONS(3249), - [anon_sym_constexpr] = ACTIONS(3249), - [anon_sym_volatile] = ACTIONS(3249), - [anon_sym_restrict] = ACTIONS(3249), - [anon_sym___restrict__] = ACTIONS(3249), - [anon_sym__Atomic] = ACTIONS(3249), - [anon_sym__Noreturn] = ACTIONS(3249), - [anon_sym_noreturn] = ACTIONS(3249), - [anon_sym_mutable] = ACTIONS(3249), - [anon_sym_constinit] = ACTIONS(3249), - [anon_sym_consteval] = ACTIONS(3249), - [sym_primitive_type] = ACTIONS(3249), - [anon_sym_enum] = ACTIONS(3249), - [anon_sym_class] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3249), - [anon_sym_if] = ACTIONS(3249), - [anon_sym_switch] = ACTIONS(3249), - [anon_sym_case] = ACTIONS(3249), - [anon_sym_default] = ACTIONS(3249), - [anon_sym_while] = ACTIONS(3249), - [anon_sym_do] = ACTIONS(3249), - [anon_sym_for] = ACTIONS(3249), - [anon_sym_return] = ACTIONS(3249), - [anon_sym_break] = ACTIONS(3249), - [anon_sym_continue] = ACTIONS(3249), - [anon_sym_goto] = ACTIONS(3249), - [anon_sym___try] = ACTIONS(3249), - [anon_sym___leave] = ACTIONS(3249), - [anon_sym_not] = ACTIONS(3249), - [anon_sym_compl] = ACTIONS(3249), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_sizeof] = ACTIONS(3249), - [anon_sym___alignof__] = ACTIONS(3249), - [anon_sym___alignof] = ACTIONS(3249), - [anon_sym__alignof] = ACTIONS(3249), - [anon_sym_alignof] = ACTIONS(3249), - [anon_sym__Alignof] = ACTIONS(3249), - [anon_sym_offsetof] = ACTIONS(3249), - [anon_sym__Generic] = ACTIONS(3249), - [anon_sym_asm] = ACTIONS(3249), - [anon_sym___asm__] = ACTIONS(3249), - [sym_number_literal] = ACTIONS(3251), - [anon_sym_L_SQUOTE] = ACTIONS(3251), - [anon_sym_u_SQUOTE] = ACTIONS(3251), - [anon_sym_U_SQUOTE] = ACTIONS(3251), - [anon_sym_u8_SQUOTE] = ACTIONS(3251), - [anon_sym_SQUOTE] = ACTIONS(3251), - [anon_sym_L_DQUOTE] = ACTIONS(3251), - [anon_sym_u_DQUOTE] = ACTIONS(3251), - [anon_sym_U_DQUOTE] = ACTIONS(3251), - [anon_sym_u8_DQUOTE] = ACTIONS(3251), - [anon_sym_DQUOTE] = ACTIONS(3251), - [sym_true] = ACTIONS(3249), - [sym_false] = ACTIONS(3249), - [anon_sym_NULL] = ACTIONS(3249), - [anon_sym_nullptr] = ACTIONS(3249), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3249), - [anon_sym_decltype] = ACTIONS(3249), - [anon_sym_virtual] = ACTIONS(3249), - [anon_sym_alignas] = ACTIONS(3249), - [anon_sym_explicit] = ACTIONS(3249), - [anon_sym_typename] = ACTIONS(3249), - [anon_sym_template] = ACTIONS(3249), - [anon_sym_operator] = ACTIONS(3249), - [anon_sym_try] = ACTIONS(3249), - [anon_sym_delete] = ACTIONS(3249), - [anon_sym_throw] = ACTIONS(3249), - [anon_sym_namespace] = ACTIONS(3249), - [anon_sym_using] = ACTIONS(3249), - [anon_sym_static_assert] = ACTIONS(3249), - [anon_sym_concept] = ACTIONS(3249), - [anon_sym_co_return] = ACTIONS(3249), - [anon_sym_co_yield] = ACTIONS(3249), - [anon_sym_R_DQUOTE] = ACTIONS(3251), - [anon_sym_LR_DQUOTE] = ACTIONS(3251), - [anon_sym_uR_DQUOTE] = ACTIONS(3251), - [anon_sym_UR_DQUOTE] = ACTIONS(3251), - [anon_sym_u8R_DQUOTE] = ACTIONS(3251), - [anon_sym_co_await] = ACTIONS(3249), - [anon_sym_new] = ACTIONS(3249), - [anon_sym_requires] = ACTIONS(3249), - [sym_this] = ACTIONS(3249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3251), - [sym_semgrep_named_ellipsis] = ACTIONS(3251), - }, - [724] = { - [sym_identifier] = ACTIONS(3477), - [aux_sym_preproc_include_token1] = ACTIONS(3477), - [aux_sym_preproc_def_token1] = ACTIONS(3477), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3479), - [aux_sym_preproc_if_token1] = ACTIONS(3477), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3477), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3477), - [sym_preproc_directive] = ACTIONS(3477), - [anon_sym_LPAREN2] = ACTIONS(3479), - [anon_sym_BANG] = ACTIONS(3479), - [anon_sym_TILDE] = ACTIONS(3479), - [anon_sym_DASH] = ACTIONS(3477), - [anon_sym_PLUS] = ACTIONS(3477), - [anon_sym_STAR] = ACTIONS(3479), - [anon_sym_AMP_AMP] = ACTIONS(3479), - [anon_sym_AMP] = ACTIONS(3477), - [anon_sym_SEMI] = ACTIONS(3479), - [anon_sym___extension__] = ACTIONS(3477), - [anon_sym_typedef] = ACTIONS(3477), - [anon_sym_extern] = ACTIONS(3477), - [anon_sym___attribute__] = ACTIONS(3477), - [anon_sym_COLON_COLON] = ACTIONS(3479), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3479), - [anon_sym___declspec] = ACTIONS(3477), - [anon_sym___based] = ACTIONS(3477), - [anon_sym___cdecl] = ACTIONS(3477), - [anon_sym___clrcall] = ACTIONS(3477), - [anon_sym___stdcall] = ACTIONS(3477), - [anon_sym___fastcall] = ACTIONS(3477), - [anon_sym___thiscall] = ACTIONS(3477), - [anon_sym___vectorcall] = ACTIONS(3477), - [anon_sym_LBRACE] = ACTIONS(3479), - [anon_sym_RBRACE] = ACTIONS(3479), - [anon_sym_signed] = ACTIONS(3477), - [anon_sym_unsigned] = ACTIONS(3477), - [anon_sym_long] = ACTIONS(3477), - [anon_sym_short] = ACTIONS(3477), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_static] = ACTIONS(3477), - [anon_sym_register] = ACTIONS(3477), - [anon_sym_inline] = ACTIONS(3477), - [anon_sym___inline] = ACTIONS(3477), - [anon_sym___inline__] = ACTIONS(3477), - [anon_sym___forceinline] = ACTIONS(3477), - [anon_sym_thread_local] = ACTIONS(3477), - [anon_sym___thread] = ACTIONS(3477), - [anon_sym_const] = ACTIONS(3477), - [anon_sym_constexpr] = ACTIONS(3477), - [anon_sym_volatile] = ACTIONS(3477), - [anon_sym_restrict] = ACTIONS(3477), - [anon_sym___restrict__] = ACTIONS(3477), - [anon_sym__Atomic] = ACTIONS(3477), - [anon_sym__Noreturn] = ACTIONS(3477), - [anon_sym_noreturn] = ACTIONS(3477), - [anon_sym_mutable] = ACTIONS(3477), - [anon_sym_constinit] = ACTIONS(3477), - [anon_sym_consteval] = ACTIONS(3477), - [sym_primitive_type] = ACTIONS(3477), - [anon_sym_enum] = ACTIONS(3477), - [anon_sym_class] = ACTIONS(3477), - [anon_sym_struct] = ACTIONS(3477), - [anon_sym_union] = ACTIONS(3477), - [anon_sym_if] = ACTIONS(3477), - [anon_sym_switch] = ACTIONS(3477), - [anon_sym_case] = ACTIONS(3477), - [anon_sym_default] = ACTIONS(3477), - [anon_sym_while] = ACTIONS(3477), - [anon_sym_do] = ACTIONS(3477), - [anon_sym_for] = ACTIONS(3477), - [anon_sym_return] = ACTIONS(3477), - [anon_sym_break] = ACTIONS(3477), - [anon_sym_continue] = ACTIONS(3477), - [anon_sym_goto] = ACTIONS(3477), - [anon_sym___try] = ACTIONS(3477), - [anon_sym___leave] = ACTIONS(3477), - [anon_sym_not] = ACTIONS(3477), - [anon_sym_compl] = ACTIONS(3477), - [anon_sym_DASH_DASH] = ACTIONS(3479), - [anon_sym_PLUS_PLUS] = ACTIONS(3479), - [anon_sym_sizeof] = ACTIONS(3477), - [anon_sym___alignof__] = ACTIONS(3477), - [anon_sym___alignof] = ACTIONS(3477), - [anon_sym__alignof] = ACTIONS(3477), - [anon_sym_alignof] = ACTIONS(3477), - [anon_sym__Alignof] = ACTIONS(3477), - [anon_sym_offsetof] = ACTIONS(3477), - [anon_sym__Generic] = ACTIONS(3477), - [anon_sym_asm] = ACTIONS(3477), - [anon_sym___asm__] = ACTIONS(3477), - [sym_number_literal] = ACTIONS(3479), - [anon_sym_L_SQUOTE] = ACTIONS(3479), - [anon_sym_u_SQUOTE] = ACTIONS(3479), - [anon_sym_U_SQUOTE] = ACTIONS(3479), - [anon_sym_u8_SQUOTE] = ACTIONS(3479), - [anon_sym_SQUOTE] = ACTIONS(3479), - [anon_sym_L_DQUOTE] = ACTIONS(3479), - [anon_sym_u_DQUOTE] = ACTIONS(3479), - [anon_sym_U_DQUOTE] = ACTIONS(3479), - [anon_sym_u8_DQUOTE] = ACTIONS(3479), - [anon_sym_DQUOTE] = ACTIONS(3479), - [sym_true] = ACTIONS(3477), - [sym_false] = ACTIONS(3477), - [anon_sym_NULL] = ACTIONS(3477), - [anon_sym_nullptr] = ACTIONS(3477), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3477), - [anon_sym_decltype] = ACTIONS(3477), - [anon_sym_virtual] = ACTIONS(3477), - [anon_sym_alignas] = ACTIONS(3477), - [anon_sym_explicit] = ACTIONS(3477), - [anon_sym_typename] = ACTIONS(3477), - [anon_sym_template] = ACTIONS(3477), - [anon_sym_operator] = ACTIONS(3477), - [anon_sym_try] = ACTIONS(3477), - [anon_sym_delete] = ACTIONS(3477), - [anon_sym_throw] = ACTIONS(3477), - [anon_sym_namespace] = ACTIONS(3477), - [anon_sym_using] = ACTIONS(3477), - [anon_sym_static_assert] = ACTIONS(3477), - [anon_sym_concept] = ACTIONS(3477), - [anon_sym_co_return] = ACTIONS(3477), - [anon_sym_co_yield] = ACTIONS(3477), - [anon_sym_R_DQUOTE] = ACTIONS(3479), - [anon_sym_LR_DQUOTE] = ACTIONS(3479), - [anon_sym_uR_DQUOTE] = ACTIONS(3479), - [anon_sym_UR_DQUOTE] = ACTIONS(3479), - [anon_sym_u8R_DQUOTE] = ACTIONS(3479), - [anon_sym_co_await] = ACTIONS(3477), - [anon_sym_new] = ACTIONS(3477), - [anon_sym_requires] = ACTIONS(3477), - [sym_this] = ACTIONS(3477), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3479), - [sym_semgrep_named_ellipsis] = ACTIONS(3479), - }, - [725] = { - [sym_identifier] = ACTIONS(3437), - [aux_sym_preproc_include_token1] = ACTIONS(3437), - [aux_sym_preproc_def_token1] = ACTIONS(3437), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3439), - [aux_sym_preproc_if_token1] = ACTIONS(3437), - [aux_sym_preproc_if_token2] = ACTIONS(3437), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3437), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3437), - [sym_preproc_directive] = ACTIONS(3437), - [anon_sym_LPAREN2] = ACTIONS(3439), - [anon_sym_BANG] = ACTIONS(3439), - [anon_sym_TILDE] = ACTIONS(3439), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_STAR] = ACTIONS(3439), - [anon_sym_AMP_AMP] = ACTIONS(3439), - [anon_sym_AMP] = ACTIONS(3437), - [anon_sym_SEMI] = ACTIONS(3439), - [anon_sym___extension__] = ACTIONS(3437), - [anon_sym_typedef] = ACTIONS(3437), - [anon_sym_extern] = ACTIONS(3437), - [anon_sym___attribute__] = ACTIONS(3437), - [anon_sym_COLON_COLON] = ACTIONS(3439), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3439), - [anon_sym___declspec] = ACTIONS(3437), - [anon_sym___based] = ACTIONS(3437), - [anon_sym___cdecl] = ACTIONS(3437), - [anon_sym___clrcall] = ACTIONS(3437), - [anon_sym___stdcall] = ACTIONS(3437), - [anon_sym___fastcall] = ACTIONS(3437), - [anon_sym___thiscall] = ACTIONS(3437), - [anon_sym___vectorcall] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3439), - [anon_sym_signed] = ACTIONS(3437), - [anon_sym_unsigned] = ACTIONS(3437), - [anon_sym_long] = ACTIONS(3437), - [anon_sym_short] = ACTIONS(3437), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_static] = ACTIONS(3437), - [anon_sym_register] = ACTIONS(3437), - [anon_sym_inline] = ACTIONS(3437), - [anon_sym___inline] = ACTIONS(3437), - [anon_sym___inline__] = ACTIONS(3437), - [anon_sym___forceinline] = ACTIONS(3437), - [anon_sym_thread_local] = ACTIONS(3437), - [anon_sym___thread] = ACTIONS(3437), - [anon_sym_const] = ACTIONS(3437), - [anon_sym_constexpr] = ACTIONS(3437), - [anon_sym_volatile] = ACTIONS(3437), - [anon_sym_restrict] = ACTIONS(3437), - [anon_sym___restrict__] = ACTIONS(3437), - [anon_sym__Atomic] = ACTIONS(3437), - [anon_sym__Noreturn] = ACTIONS(3437), - [anon_sym_noreturn] = ACTIONS(3437), - [anon_sym_mutable] = ACTIONS(3437), - [anon_sym_constinit] = ACTIONS(3437), - [anon_sym_consteval] = ACTIONS(3437), - [sym_primitive_type] = ACTIONS(3437), - [anon_sym_enum] = ACTIONS(3437), - [anon_sym_class] = ACTIONS(3437), - [anon_sym_struct] = ACTIONS(3437), - [anon_sym_union] = ACTIONS(3437), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_switch] = ACTIONS(3437), - [anon_sym_case] = ACTIONS(3437), - [anon_sym_default] = ACTIONS(3437), - [anon_sym_while] = ACTIONS(3437), - [anon_sym_do] = ACTIONS(3437), - [anon_sym_for] = ACTIONS(3437), - [anon_sym_return] = ACTIONS(3437), - [anon_sym_break] = ACTIONS(3437), - [anon_sym_continue] = ACTIONS(3437), - [anon_sym_goto] = ACTIONS(3437), - [anon_sym___try] = ACTIONS(3437), - [anon_sym___leave] = ACTIONS(3437), - [anon_sym_not] = ACTIONS(3437), - [anon_sym_compl] = ACTIONS(3437), - [anon_sym_DASH_DASH] = ACTIONS(3439), - [anon_sym_PLUS_PLUS] = ACTIONS(3439), - [anon_sym_sizeof] = ACTIONS(3437), - [anon_sym___alignof__] = ACTIONS(3437), - [anon_sym___alignof] = ACTIONS(3437), - [anon_sym__alignof] = ACTIONS(3437), - [anon_sym_alignof] = ACTIONS(3437), - [anon_sym__Alignof] = ACTIONS(3437), - [anon_sym_offsetof] = ACTIONS(3437), - [anon_sym__Generic] = ACTIONS(3437), - [anon_sym_asm] = ACTIONS(3437), - [anon_sym___asm__] = ACTIONS(3437), - [sym_number_literal] = ACTIONS(3439), - [anon_sym_L_SQUOTE] = ACTIONS(3439), - [anon_sym_u_SQUOTE] = ACTIONS(3439), - [anon_sym_U_SQUOTE] = ACTIONS(3439), - [anon_sym_u8_SQUOTE] = ACTIONS(3439), - [anon_sym_SQUOTE] = ACTIONS(3439), - [anon_sym_L_DQUOTE] = ACTIONS(3439), - [anon_sym_u_DQUOTE] = ACTIONS(3439), - [anon_sym_U_DQUOTE] = ACTIONS(3439), - [anon_sym_u8_DQUOTE] = ACTIONS(3439), - [anon_sym_DQUOTE] = ACTIONS(3439), - [sym_true] = ACTIONS(3437), - [sym_false] = ACTIONS(3437), - [anon_sym_NULL] = ACTIONS(3437), - [anon_sym_nullptr] = ACTIONS(3437), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3437), - [anon_sym_decltype] = ACTIONS(3437), - [anon_sym_virtual] = ACTIONS(3437), - [anon_sym_alignas] = ACTIONS(3437), - [anon_sym_explicit] = ACTIONS(3437), - [anon_sym_typename] = ACTIONS(3437), - [anon_sym_template] = ACTIONS(3437), - [anon_sym_operator] = ACTIONS(3437), - [anon_sym_try] = ACTIONS(3437), - [anon_sym_delete] = ACTIONS(3437), - [anon_sym_throw] = ACTIONS(3437), - [anon_sym_namespace] = ACTIONS(3437), - [anon_sym_using] = ACTIONS(3437), - [anon_sym_static_assert] = ACTIONS(3437), - [anon_sym_concept] = ACTIONS(3437), - [anon_sym_co_return] = ACTIONS(3437), - [anon_sym_co_yield] = ACTIONS(3437), - [anon_sym_R_DQUOTE] = ACTIONS(3439), - [anon_sym_LR_DQUOTE] = ACTIONS(3439), - [anon_sym_uR_DQUOTE] = ACTIONS(3439), - [anon_sym_UR_DQUOTE] = ACTIONS(3439), - [anon_sym_u8R_DQUOTE] = ACTIONS(3439), - [anon_sym_co_await] = ACTIONS(3437), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3437), - [sym_this] = ACTIONS(3437), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3439), - [sym_semgrep_named_ellipsis] = ACTIONS(3439), - }, - [726] = { - [sym_identifier] = ACTIONS(3630), - [aux_sym_preproc_include_token1] = ACTIONS(3630), - [aux_sym_preproc_def_token1] = ACTIONS(3630), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3632), - [aux_sym_preproc_if_token1] = ACTIONS(3630), - [aux_sym_preproc_if_token2] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), - [sym_preproc_directive] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(3632), - [anon_sym_BANG] = ACTIONS(3632), - [anon_sym_TILDE] = ACTIONS(3632), - [anon_sym_DASH] = ACTIONS(3630), - [anon_sym_PLUS] = ACTIONS(3630), - [anon_sym_STAR] = ACTIONS(3632), - [anon_sym_AMP_AMP] = ACTIONS(3632), - [anon_sym_AMP] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3632), - [anon_sym___extension__] = ACTIONS(3630), - [anon_sym_typedef] = ACTIONS(3630), - [anon_sym_extern] = ACTIONS(3630), - [anon_sym___attribute__] = ACTIONS(3630), - [anon_sym_COLON_COLON] = ACTIONS(3632), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), - [anon_sym___declspec] = ACTIONS(3630), - [anon_sym___based] = ACTIONS(3630), - [anon_sym___cdecl] = ACTIONS(3630), - [anon_sym___clrcall] = ACTIONS(3630), - [anon_sym___stdcall] = ACTIONS(3630), - [anon_sym___fastcall] = ACTIONS(3630), - [anon_sym___thiscall] = ACTIONS(3630), - [anon_sym___vectorcall] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym_signed] = ACTIONS(3630), - [anon_sym_unsigned] = ACTIONS(3630), - [anon_sym_long] = ACTIONS(3630), - [anon_sym_short] = ACTIONS(3630), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_static] = ACTIONS(3630), - [anon_sym_register] = ACTIONS(3630), - [anon_sym_inline] = ACTIONS(3630), - [anon_sym___inline] = ACTIONS(3630), - [anon_sym___inline__] = ACTIONS(3630), - [anon_sym___forceinline] = ACTIONS(3630), - [anon_sym_thread_local] = ACTIONS(3630), - [anon_sym___thread] = ACTIONS(3630), - [anon_sym_const] = ACTIONS(3630), - [anon_sym_constexpr] = ACTIONS(3630), - [anon_sym_volatile] = ACTIONS(3630), - [anon_sym_restrict] = ACTIONS(3630), - [anon_sym___restrict__] = ACTIONS(3630), - [anon_sym__Atomic] = ACTIONS(3630), - [anon_sym__Noreturn] = ACTIONS(3630), - [anon_sym_noreturn] = ACTIONS(3630), - [anon_sym_mutable] = ACTIONS(3630), - [anon_sym_constinit] = ACTIONS(3630), - [anon_sym_consteval] = ACTIONS(3630), - [sym_primitive_type] = ACTIONS(3630), - [anon_sym_enum] = ACTIONS(3630), - [anon_sym_class] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3630), - [anon_sym_union] = ACTIONS(3630), - [anon_sym_if] = ACTIONS(3630), - [anon_sym_switch] = ACTIONS(3630), - [anon_sym_case] = ACTIONS(3630), - [anon_sym_default] = ACTIONS(3630), - [anon_sym_while] = ACTIONS(3630), - [anon_sym_do] = ACTIONS(3630), - [anon_sym_for] = ACTIONS(3630), - [anon_sym_return] = ACTIONS(3630), - [anon_sym_break] = ACTIONS(3630), - [anon_sym_continue] = ACTIONS(3630), - [anon_sym_goto] = ACTIONS(3630), - [anon_sym___try] = ACTIONS(3630), - [anon_sym___leave] = ACTIONS(3630), - [anon_sym_not] = ACTIONS(3630), - [anon_sym_compl] = ACTIONS(3630), - [anon_sym_DASH_DASH] = ACTIONS(3632), - [anon_sym_PLUS_PLUS] = ACTIONS(3632), - [anon_sym_sizeof] = ACTIONS(3630), - [anon_sym___alignof__] = ACTIONS(3630), - [anon_sym___alignof] = ACTIONS(3630), - [anon_sym__alignof] = ACTIONS(3630), - [anon_sym_alignof] = ACTIONS(3630), - [anon_sym__Alignof] = ACTIONS(3630), - [anon_sym_offsetof] = ACTIONS(3630), - [anon_sym__Generic] = ACTIONS(3630), - [anon_sym_asm] = ACTIONS(3630), - [anon_sym___asm__] = ACTIONS(3630), - [sym_number_literal] = ACTIONS(3632), - [anon_sym_L_SQUOTE] = ACTIONS(3632), - [anon_sym_u_SQUOTE] = ACTIONS(3632), - [anon_sym_U_SQUOTE] = ACTIONS(3632), - [anon_sym_u8_SQUOTE] = ACTIONS(3632), - [anon_sym_SQUOTE] = ACTIONS(3632), - [anon_sym_L_DQUOTE] = ACTIONS(3632), - [anon_sym_u_DQUOTE] = ACTIONS(3632), - [anon_sym_U_DQUOTE] = ACTIONS(3632), - [anon_sym_u8_DQUOTE] = ACTIONS(3632), - [anon_sym_DQUOTE] = ACTIONS(3632), - [sym_true] = ACTIONS(3630), - [sym_false] = ACTIONS(3630), - [anon_sym_NULL] = ACTIONS(3630), - [anon_sym_nullptr] = ACTIONS(3630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3630), - [anon_sym_decltype] = ACTIONS(3630), - [anon_sym_virtual] = ACTIONS(3630), - [anon_sym_alignas] = ACTIONS(3630), - [anon_sym_explicit] = ACTIONS(3630), - [anon_sym_typename] = ACTIONS(3630), - [anon_sym_template] = ACTIONS(3630), - [anon_sym_operator] = ACTIONS(3630), - [anon_sym_try] = ACTIONS(3630), - [anon_sym_delete] = ACTIONS(3630), - [anon_sym_throw] = ACTIONS(3630), - [anon_sym_namespace] = ACTIONS(3630), - [anon_sym_using] = ACTIONS(3630), - [anon_sym_static_assert] = ACTIONS(3630), - [anon_sym_concept] = ACTIONS(3630), - [anon_sym_co_return] = ACTIONS(3630), - [anon_sym_co_yield] = ACTIONS(3630), - [anon_sym_R_DQUOTE] = ACTIONS(3632), - [anon_sym_LR_DQUOTE] = ACTIONS(3632), - [anon_sym_uR_DQUOTE] = ACTIONS(3632), - [anon_sym_UR_DQUOTE] = ACTIONS(3632), - [anon_sym_u8R_DQUOTE] = ACTIONS(3632), - [anon_sym_co_await] = ACTIONS(3630), - [anon_sym_new] = ACTIONS(3630), - [anon_sym_requires] = ACTIONS(3630), - [sym_this] = ACTIONS(3630), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3632), - [sym_semgrep_named_ellipsis] = ACTIONS(3632), + [726] = { + [sym_identifier] = ACTIONS(3593), + [aux_sym_preproc_include_token1] = ACTIONS(3593), + [aux_sym_preproc_def_token1] = ACTIONS(3593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3595), + [aux_sym_preproc_if_token1] = ACTIONS(3593), + [aux_sym_preproc_if_token2] = ACTIONS(3593), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3593), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3593), + [sym_preproc_directive] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(3595), + [anon_sym_DASH] = ACTIONS(3593), + [anon_sym_PLUS] = ACTIONS(3593), + [anon_sym_STAR] = ACTIONS(3595), + [anon_sym_AMP_AMP] = ACTIONS(3595), + [anon_sym_AMP] = ACTIONS(3593), + [anon_sym_SEMI] = ACTIONS(3595), + [anon_sym___extension__] = ACTIONS(3593), + [anon_sym_typedef] = ACTIONS(3593), + [anon_sym_extern] = ACTIONS(3593), + [anon_sym___attribute__] = ACTIONS(3593), + [anon_sym_COLON_COLON] = ACTIONS(3595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3595), + [anon_sym___declspec] = ACTIONS(3593), + [anon_sym___based] = ACTIONS(3593), + [anon_sym___cdecl] = ACTIONS(3593), + [anon_sym___clrcall] = ACTIONS(3593), + [anon_sym___stdcall] = ACTIONS(3593), + [anon_sym___fastcall] = ACTIONS(3593), + [anon_sym___thiscall] = ACTIONS(3593), + [anon_sym___vectorcall] = ACTIONS(3593), + [anon_sym_LBRACE] = ACTIONS(3595), + [anon_sym_signed] = ACTIONS(3593), + [anon_sym_unsigned] = ACTIONS(3593), + [anon_sym_long] = ACTIONS(3593), + [anon_sym_short] = ACTIONS(3593), + [anon_sym_LBRACK] = ACTIONS(3593), + [anon_sym_static] = ACTIONS(3593), + [anon_sym_register] = ACTIONS(3593), + [anon_sym_inline] = ACTIONS(3593), + [anon_sym___inline] = ACTIONS(3593), + [anon_sym___inline__] = ACTIONS(3593), + [anon_sym___forceinline] = ACTIONS(3593), + [anon_sym_thread_local] = ACTIONS(3593), + [anon_sym___thread] = ACTIONS(3593), + [anon_sym_const] = ACTIONS(3593), + [anon_sym_constexpr] = ACTIONS(3593), + [anon_sym_volatile] = ACTIONS(3593), + [anon_sym_restrict] = ACTIONS(3593), + [anon_sym___restrict__] = ACTIONS(3593), + [anon_sym__Atomic] = ACTIONS(3593), + [anon_sym__Noreturn] = ACTIONS(3593), + [anon_sym_noreturn] = ACTIONS(3593), + [anon_sym_mutable] = ACTIONS(3593), + [anon_sym_constinit] = ACTIONS(3593), + [anon_sym_consteval] = ACTIONS(3593), + [sym_primitive_type] = ACTIONS(3593), + [anon_sym_enum] = ACTIONS(3593), + [anon_sym_class] = ACTIONS(3593), + [anon_sym_struct] = ACTIONS(3593), + [anon_sym_union] = ACTIONS(3593), + [anon_sym_if] = ACTIONS(3593), + [anon_sym_switch] = ACTIONS(3593), + [anon_sym_case] = ACTIONS(3593), + [anon_sym_default] = ACTIONS(3593), + [anon_sym_while] = ACTIONS(3593), + [anon_sym_do] = ACTIONS(3593), + [anon_sym_for] = ACTIONS(3593), + [anon_sym_return] = ACTIONS(3593), + [anon_sym_break] = ACTIONS(3593), + [anon_sym_continue] = ACTIONS(3593), + [anon_sym_goto] = ACTIONS(3593), + [anon_sym___try] = ACTIONS(3593), + [anon_sym___leave] = ACTIONS(3593), + [anon_sym_not] = ACTIONS(3593), + [anon_sym_compl] = ACTIONS(3593), + [anon_sym_DASH_DASH] = ACTIONS(3595), + [anon_sym_PLUS_PLUS] = ACTIONS(3595), + [anon_sym_sizeof] = ACTIONS(3593), + [anon_sym___alignof__] = ACTIONS(3593), + [anon_sym___alignof] = ACTIONS(3593), + [anon_sym__alignof] = ACTIONS(3593), + [anon_sym_alignof] = ACTIONS(3593), + [anon_sym__Alignof] = ACTIONS(3593), + [anon_sym_offsetof] = ACTIONS(3593), + [anon_sym__Generic] = ACTIONS(3593), + [anon_sym_asm] = ACTIONS(3593), + [anon_sym___asm__] = ACTIONS(3593), + [sym_number_literal] = ACTIONS(3595), + [anon_sym_L_SQUOTE] = ACTIONS(3595), + [anon_sym_u_SQUOTE] = ACTIONS(3595), + [anon_sym_U_SQUOTE] = ACTIONS(3595), + [anon_sym_u8_SQUOTE] = ACTIONS(3595), + [anon_sym_SQUOTE] = ACTIONS(3595), + [anon_sym_L_DQUOTE] = ACTIONS(3595), + [anon_sym_u_DQUOTE] = ACTIONS(3595), + [anon_sym_U_DQUOTE] = ACTIONS(3595), + [anon_sym_u8_DQUOTE] = ACTIONS(3595), + [anon_sym_DQUOTE] = ACTIONS(3595), + [sym_true] = ACTIONS(3593), + [sym_false] = ACTIONS(3593), + [anon_sym_NULL] = ACTIONS(3593), + [anon_sym_nullptr] = ACTIONS(3593), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3593), + [anon_sym_decltype] = ACTIONS(3593), + [anon_sym_virtual] = ACTIONS(3593), + [anon_sym_alignas] = ACTIONS(3593), + [anon_sym_explicit] = ACTIONS(3593), + [anon_sym_typename] = ACTIONS(3593), + [anon_sym_template] = ACTIONS(3593), + [anon_sym_operator] = ACTIONS(3593), + [anon_sym_try] = ACTIONS(3593), + [anon_sym_delete] = ACTIONS(3593), + [anon_sym_throw] = ACTIONS(3593), + [anon_sym_namespace] = ACTIONS(3593), + [anon_sym_using] = ACTIONS(3593), + [anon_sym_static_assert] = ACTIONS(3593), + [anon_sym_concept] = ACTIONS(3593), + [anon_sym_co_return] = ACTIONS(3593), + [anon_sym_co_yield] = ACTIONS(3593), + [anon_sym_R_DQUOTE] = ACTIONS(3595), + [anon_sym_LR_DQUOTE] = ACTIONS(3595), + [anon_sym_uR_DQUOTE] = ACTIONS(3595), + [anon_sym_UR_DQUOTE] = ACTIONS(3595), + [anon_sym_u8R_DQUOTE] = ACTIONS(3595), + [anon_sym_co_await] = ACTIONS(3593), + [anon_sym_new] = ACTIONS(3593), + [anon_sym_requires] = ACTIONS(3593), + [sym_this] = ACTIONS(3593), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3595), + [sym_semgrep_named_ellipsis] = ACTIONS(3595), }, [727] = { - [sym_identifier] = ACTIONS(3445), - [aux_sym_preproc_include_token1] = ACTIONS(3445), - [aux_sym_preproc_def_token1] = ACTIONS(3445), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3447), - [aux_sym_preproc_if_token1] = ACTIONS(3445), - [aux_sym_preproc_if_token2] = ACTIONS(3445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3445), - [sym_preproc_directive] = ACTIONS(3445), - [anon_sym_LPAREN2] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_TILDE] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3445), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3445), - [anon_sym_SEMI] = ACTIONS(3447), - [anon_sym___extension__] = ACTIONS(3445), - [anon_sym_typedef] = ACTIONS(3445), - [anon_sym_extern] = ACTIONS(3445), - [anon_sym___attribute__] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3447), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3447), - [anon_sym___declspec] = ACTIONS(3445), - [anon_sym___based] = ACTIONS(3445), - [anon_sym___cdecl] = ACTIONS(3445), - [anon_sym___clrcall] = ACTIONS(3445), - [anon_sym___stdcall] = ACTIONS(3445), - [anon_sym___fastcall] = ACTIONS(3445), - [anon_sym___thiscall] = ACTIONS(3445), - [anon_sym___vectorcall] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_signed] = ACTIONS(3445), - [anon_sym_unsigned] = ACTIONS(3445), - [anon_sym_long] = ACTIONS(3445), - [anon_sym_short] = ACTIONS(3445), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_static] = ACTIONS(3445), - [anon_sym_register] = ACTIONS(3445), - [anon_sym_inline] = ACTIONS(3445), - [anon_sym___inline] = ACTIONS(3445), - [anon_sym___inline__] = ACTIONS(3445), - [anon_sym___forceinline] = ACTIONS(3445), - [anon_sym_thread_local] = ACTIONS(3445), - [anon_sym___thread] = ACTIONS(3445), - [anon_sym_const] = ACTIONS(3445), - [anon_sym_constexpr] = ACTIONS(3445), - [anon_sym_volatile] = ACTIONS(3445), - [anon_sym_restrict] = ACTIONS(3445), - [anon_sym___restrict__] = ACTIONS(3445), - [anon_sym__Atomic] = ACTIONS(3445), - [anon_sym__Noreturn] = ACTIONS(3445), - [anon_sym_noreturn] = ACTIONS(3445), - [anon_sym_mutable] = ACTIONS(3445), - [anon_sym_constinit] = ACTIONS(3445), - [anon_sym_consteval] = ACTIONS(3445), - [sym_primitive_type] = ACTIONS(3445), - [anon_sym_enum] = ACTIONS(3445), - [anon_sym_class] = ACTIONS(3445), - [anon_sym_struct] = ACTIONS(3445), - [anon_sym_union] = ACTIONS(3445), - [anon_sym_if] = ACTIONS(3445), - [anon_sym_switch] = ACTIONS(3445), - [anon_sym_case] = ACTIONS(3445), - [anon_sym_default] = ACTIONS(3445), - [anon_sym_while] = ACTIONS(3445), - [anon_sym_do] = ACTIONS(3445), - [anon_sym_for] = ACTIONS(3445), - [anon_sym_return] = ACTIONS(3445), - [anon_sym_break] = ACTIONS(3445), - [anon_sym_continue] = ACTIONS(3445), - [anon_sym_goto] = ACTIONS(3445), - [anon_sym___try] = ACTIONS(3445), - [anon_sym___leave] = ACTIONS(3445), - [anon_sym_not] = ACTIONS(3445), - [anon_sym_compl] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3447), - [anon_sym_sizeof] = ACTIONS(3445), - [anon_sym___alignof__] = ACTIONS(3445), - [anon_sym___alignof] = ACTIONS(3445), - [anon_sym__alignof] = ACTIONS(3445), - [anon_sym_alignof] = ACTIONS(3445), - [anon_sym__Alignof] = ACTIONS(3445), - [anon_sym_offsetof] = ACTIONS(3445), - [anon_sym__Generic] = ACTIONS(3445), - [anon_sym_asm] = ACTIONS(3445), - [anon_sym___asm__] = ACTIONS(3445), - [sym_number_literal] = ACTIONS(3447), - [anon_sym_L_SQUOTE] = ACTIONS(3447), - [anon_sym_u_SQUOTE] = ACTIONS(3447), - [anon_sym_U_SQUOTE] = ACTIONS(3447), - [anon_sym_u8_SQUOTE] = ACTIONS(3447), - [anon_sym_SQUOTE] = ACTIONS(3447), - [anon_sym_L_DQUOTE] = ACTIONS(3447), - [anon_sym_u_DQUOTE] = ACTIONS(3447), - [anon_sym_U_DQUOTE] = ACTIONS(3447), - [anon_sym_u8_DQUOTE] = ACTIONS(3447), - [anon_sym_DQUOTE] = ACTIONS(3447), - [sym_true] = ACTIONS(3445), - [sym_false] = ACTIONS(3445), - [anon_sym_NULL] = ACTIONS(3445), - [anon_sym_nullptr] = ACTIONS(3445), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3445), - [anon_sym_decltype] = ACTIONS(3445), - [anon_sym_virtual] = ACTIONS(3445), - [anon_sym_alignas] = ACTIONS(3445), - [anon_sym_explicit] = ACTIONS(3445), - [anon_sym_typename] = ACTIONS(3445), - [anon_sym_template] = ACTIONS(3445), - [anon_sym_operator] = ACTIONS(3445), - [anon_sym_try] = ACTIONS(3445), - [anon_sym_delete] = ACTIONS(3445), - [anon_sym_throw] = ACTIONS(3445), - [anon_sym_namespace] = ACTIONS(3445), - [anon_sym_using] = ACTIONS(3445), - [anon_sym_static_assert] = ACTIONS(3445), - [anon_sym_concept] = ACTIONS(3445), - [anon_sym_co_return] = ACTIONS(3445), - [anon_sym_co_yield] = ACTIONS(3445), - [anon_sym_R_DQUOTE] = ACTIONS(3447), - [anon_sym_LR_DQUOTE] = ACTIONS(3447), - [anon_sym_uR_DQUOTE] = ACTIONS(3447), - [anon_sym_UR_DQUOTE] = ACTIONS(3447), - [anon_sym_u8R_DQUOTE] = ACTIONS(3447), - [anon_sym_co_await] = ACTIONS(3445), - [anon_sym_new] = ACTIONS(3445), - [anon_sym_requires] = ACTIONS(3445), - [sym_this] = ACTIONS(3445), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3447), - [sym_semgrep_named_ellipsis] = ACTIONS(3447), + [sym_identifier] = ACTIONS(3631), + [aux_sym_preproc_include_token1] = ACTIONS(3631), + [aux_sym_preproc_def_token1] = ACTIONS(3631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3633), + [aux_sym_preproc_if_token1] = ACTIONS(3631), + [aux_sym_preproc_if_token2] = ACTIONS(3631), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3631), + [sym_preproc_directive] = ACTIONS(3631), + [anon_sym_LPAREN2] = ACTIONS(3633), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(3633), + [anon_sym_AMP_AMP] = ACTIONS(3633), + [anon_sym_AMP] = ACTIONS(3631), + [anon_sym_SEMI] = ACTIONS(3633), + [anon_sym___extension__] = ACTIONS(3631), + [anon_sym_typedef] = ACTIONS(3631), + [anon_sym_extern] = ACTIONS(3631), + [anon_sym___attribute__] = ACTIONS(3631), + [anon_sym_COLON_COLON] = ACTIONS(3633), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3633), + [anon_sym___declspec] = ACTIONS(3631), + [anon_sym___based] = ACTIONS(3631), + [anon_sym___cdecl] = ACTIONS(3631), + [anon_sym___clrcall] = ACTIONS(3631), + [anon_sym___stdcall] = ACTIONS(3631), + [anon_sym___fastcall] = ACTIONS(3631), + [anon_sym___thiscall] = ACTIONS(3631), + [anon_sym___vectorcall] = ACTIONS(3631), + [anon_sym_LBRACE] = ACTIONS(3633), + [anon_sym_signed] = ACTIONS(3631), + [anon_sym_unsigned] = ACTIONS(3631), + [anon_sym_long] = ACTIONS(3631), + [anon_sym_short] = ACTIONS(3631), + [anon_sym_LBRACK] = ACTIONS(3631), + [anon_sym_static] = ACTIONS(3631), + [anon_sym_register] = ACTIONS(3631), + [anon_sym_inline] = ACTIONS(3631), + [anon_sym___inline] = ACTIONS(3631), + [anon_sym___inline__] = ACTIONS(3631), + [anon_sym___forceinline] = ACTIONS(3631), + [anon_sym_thread_local] = ACTIONS(3631), + [anon_sym___thread] = ACTIONS(3631), + [anon_sym_const] = ACTIONS(3631), + [anon_sym_constexpr] = ACTIONS(3631), + [anon_sym_volatile] = ACTIONS(3631), + [anon_sym_restrict] = ACTIONS(3631), + [anon_sym___restrict__] = ACTIONS(3631), + [anon_sym__Atomic] = ACTIONS(3631), + [anon_sym__Noreturn] = ACTIONS(3631), + [anon_sym_noreturn] = ACTIONS(3631), + [anon_sym_mutable] = ACTIONS(3631), + [anon_sym_constinit] = ACTIONS(3631), + [anon_sym_consteval] = ACTIONS(3631), + [sym_primitive_type] = ACTIONS(3631), + [anon_sym_enum] = ACTIONS(3631), + [anon_sym_class] = ACTIONS(3631), + [anon_sym_struct] = ACTIONS(3631), + [anon_sym_union] = ACTIONS(3631), + [anon_sym_if] = ACTIONS(3631), + [anon_sym_switch] = ACTIONS(3631), + [anon_sym_case] = ACTIONS(3631), + [anon_sym_default] = ACTIONS(3631), + [anon_sym_while] = ACTIONS(3631), + [anon_sym_do] = ACTIONS(3631), + [anon_sym_for] = ACTIONS(3631), + [anon_sym_return] = ACTIONS(3631), + [anon_sym_break] = ACTIONS(3631), + [anon_sym_continue] = ACTIONS(3631), + [anon_sym_goto] = ACTIONS(3631), + [anon_sym___try] = ACTIONS(3631), + [anon_sym___leave] = ACTIONS(3631), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3633), + [anon_sym_PLUS_PLUS] = ACTIONS(3633), + [anon_sym_sizeof] = ACTIONS(3631), + [anon_sym___alignof__] = ACTIONS(3631), + [anon_sym___alignof] = ACTIONS(3631), + [anon_sym__alignof] = ACTIONS(3631), + [anon_sym_alignof] = ACTIONS(3631), + [anon_sym__Alignof] = ACTIONS(3631), + [anon_sym_offsetof] = ACTIONS(3631), + [anon_sym__Generic] = ACTIONS(3631), + [anon_sym_asm] = ACTIONS(3631), + [anon_sym___asm__] = ACTIONS(3631), + [sym_number_literal] = ACTIONS(3633), + [anon_sym_L_SQUOTE] = ACTIONS(3633), + [anon_sym_u_SQUOTE] = ACTIONS(3633), + [anon_sym_U_SQUOTE] = ACTIONS(3633), + [anon_sym_u8_SQUOTE] = ACTIONS(3633), + [anon_sym_SQUOTE] = ACTIONS(3633), + [anon_sym_L_DQUOTE] = ACTIONS(3633), + [anon_sym_u_DQUOTE] = ACTIONS(3633), + [anon_sym_U_DQUOTE] = ACTIONS(3633), + [anon_sym_u8_DQUOTE] = ACTIONS(3633), + [anon_sym_DQUOTE] = ACTIONS(3633), + [sym_true] = ACTIONS(3631), + [sym_false] = ACTIONS(3631), + [anon_sym_NULL] = ACTIONS(3631), + [anon_sym_nullptr] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3631), + [anon_sym_decltype] = ACTIONS(3631), + [anon_sym_virtual] = ACTIONS(3631), + [anon_sym_alignas] = ACTIONS(3631), + [anon_sym_explicit] = ACTIONS(3631), + [anon_sym_typename] = ACTIONS(3631), + [anon_sym_template] = ACTIONS(3631), + [anon_sym_operator] = ACTIONS(3631), + [anon_sym_try] = ACTIONS(3631), + [anon_sym_delete] = ACTIONS(3631), + [anon_sym_throw] = ACTIONS(3631), + [anon_sym_namespace] = ACTIONS(3631), + [anon_sym_using] = ACTIONS(3631), + [anon_sym_static_assert] = ACTIONS(3631), + [anon_sym_concept] = ACTIONS(3631), + [anon_sym_co_return] = ACTIONS(3631), + [anon_sym_co_yield] = ACTIONS(3631), + [anon_sym_R_DQUOTE] = ACTIONS(3633), + [anon_sym_LR_DQUOTE] = ACTIONS(3633), + [anon_sym_uR_DQUOTE] = ACTIONS(3633), + [anon_sym_UR_DQUOTE] = ACTIONS(3633), + [anon_sym_u8R_DQUOTE] = ACTIONS(3633), + [anon_sym_co_await] = ACTIONS(3631), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(3631), + [sym_this] = ACTIONS(3631), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3633), + [sym_semgrep_named_ellipsis] = ACTIONS(3633), }, [728] = { - [sym_identifier] = ACTIONS(3648), - [aux_sym_preproc_include_token1] = ACTIONS(3648), - [aux_sym_preproc_def_token1] = ACTIONS(3648), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3650), - [aux_sym_preproc_if_token1] = ACTIONS(3648), - [aux_sym_preproc_if_token2] = ACTIONS(3648), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3648), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3648), - [sym_preproc_directive] = ACTIONS(3648), - [anon_sym_LPAREN2] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3650), - [anon_sym_TILDE] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_AMP_AMP] = ACTIONS(3650), - [anon_sym_AMP] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3650), - [anon_sym___extension__] = ACTIONS(3648), - [anon_sym_typedef] = ACTIONS(3648), - [anon_sym_extern] = ACTIONS(3648), - [anon_sym___attribute__] = ACTIONS(3648), - [anon_sym_COLON_COLON] = ACTIONS(3650), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3650), - [anon_sym___declspec] = ACTIONS(3648), - [anon_sym___based] = ACTIONS(3648), - [anon_sym___cdecl] = ACTIONS(3648), - [anon_sym___clrcall] = ACTIONS(3648), - [anon_sym___stdcall] = ACTIONS(3648), - [anon_sym___fastcall] = ACTIONS(3648), - [anon_sym___thiscall] = ACTIONS(3648), - [anon_sym___vectorcall] = ACTIONS(3648), - [anon_sym_LBRACE] = ACTIONS(3650), - [anon_sym_signed] = ACTIONS(3648), - [anon_sym_unsigned] = ACTIONS(3648), - [anon_sym_long] = ACTIONS(3648), - [anon_sym_short] = ACTIONS(3648), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_static] = ACTIONS(3648), - [anon_sym_register] = ACTIONS(3648), - [anon_sym_inline] = ACTIONS(3648), - [anon_sym___inline] = ACTIONS(3648), - [anon_sym___inline__] = ACTIONS(3648), - [anon_sym___forceinline] = ACTIONS(3648), - [anon_sym_thread_local] = ACTIONS(3648), - [anon_sym___thread] = ACTIONS(3648), - [anon_sym_const] = ACTIONS(3648), - [anon_sym_constexpr] = ACTIONS(3648), - [anon_sym_volatile] = ACTIONS(3648), - [anon_sym_restrict] = ACTIONS(3648), - [anon_sym___restrict__] = ACTIONS(3648), - [anon_sym__Atomic] = ACTIONS(3648), - [anon_sym__Noreturn] = ACTIONS(3648), - [anon_sym_noreturn] = ACTIONS(3648), - [anon_sym_mutable] = ACTIONS(3648), - [anon_sym_constinit] = ACTIONS(3648), - [anon_sym_consteval] = ACTIONS(3648), - [sym_primitive_type] = ACTIONS(3648), - [anon_sym_enum] = ACTIONS(3648), - [anon_sym_class] = ACTIONS(3648), - [anon_sym_struct] = ACTIONS(3648), - [anon_sym_union] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3648), - [anon_sym_switch] = ACTIONS(3648), - [anon_sym_case] = ACTIONS(3648), - [anon_sym_default] = ACTIONS(3648), - [anon_sym_while] = ACTIONS(3648), - [anon_sym_do] = ACTIONS(3648), - [anon_sym_for] = ACTIONS(3648), - [anon_sym_return] = ACTIONS(3648), - [anon_sym_break] = ACTIONS(3648), - [anon_sym_continue] = ACTIONS(3648), - [anon_sym_goto] = ACTIONS(3648), - [anon_sym___try] = ACTIONS(3648), - [anon_sym___leave] = ACTIONS(3648), - [anon_sym_not] = ACTIONS(3648), - [anon_sym_compl] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3650), - [anon_sym_sizeof] = ACTIONS(3648), - [anon_sym___alignof__] = ACTIONS(3648), - [anon_sym___alignof] = ACTIONS(3648), - [anon_sym__alignof] = ACTIONS(3648), - [anon_sym_alignof] = ACTIONS(3648), - [anon_sym__Alignof] = ACTIONS(3648), - [anon_sym_offsetof] = ACTIONS(3648), - [anon_sym__Generic] = ACTIONS(3648), - [anon_sym_asm] = ACTIONS(3648), - [anon_sym___asm__] = ACTIONS(3648), - [sym_number_literal] = ACTIONS(3650), - [anon_sym_L_SQUOTE] = ACTIONS(3650), - [anon_sym_u_SQUOTE] = ACTIONS(3650), - [anon_sym_U_SQUOTE] = ACTIONS(3650), - [anon_sym_u8_SQUOTE] = ACTIONS(3650), - [anon_sym_SQUOTE] = ACTIONS(3650), - [anon_sym_L_DQUOTE] = ACTIONS(3650), - [anon_sym_u_DQUOTE] = ACTIONS(3650), - [anon_sym_U_DQUOTE] = ACTIONS(3650), - [anon_sym_u8_DQUOTE] = ACTIONS(3650), - [anon_sym_DQUOTE] = ACTIONS(3650), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [anon_sym_NULL] = ACTIONS(3648), - [anon_sym_nullptr] = ACTIONS(3648), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3648), - [anon_sym_decltype] = ACTIONS(3648), - [anon_sym_virtual] = ACTIONS(3648), - [anon_sym_alignas] = ACTIONS(3648), - [anon_sym_explicit] = ACTIONS(3648), - [anon_sym_typename] = ACTIONS(3648), - [anon_sym_template] = ACTIONS(3648), - [anon_sym_operator] = ACTIONS(3648), - [anon_sym_try] = ACTIONS(3648), - [anon_sym_delete] = ACTIONS(3648), - [anon_sym_throw] = ACTIONS(3648), - [anon_sym_namespace] = ACTIONS(3648), - [anon_sym_using] = ACTIONS(3648), - [anon_sym_static_assert] = ACTIONS(3648), - [anon_sym_concept] = ACTIONS(3648), - [anon_sym_co_return] = ACTIONS(3648), - [anon_sym_co_yield] = ACTIONS(3648), - [anon_sym_R_DQUOTE] = ACTIONS(3650), - [anon_sym_LR_DQUOTE] = ACTIONS(3650), - [anon_sym_uR_DQUOTE] = ACTIONS(3650), - [anon_sym_UR_DQUOTE] = ACTIONS(3650), - [anon_sym_u8R_DQUOTE] = ACTIONS(3650), - [anon_sym_co_await] = ACTIONS(3648), - [anon_sym_new] = ACTIONS(3648), - [anon_sym_requires] = ACTIONS(3648), - [sym_this] = ACTIONS(3648), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3650), - [sym_semgrep_named_ellipsis] = ACTIONS(3650), + [sym_identifier] = ACTIONS(3657), + [aux_sym_preproc_include_token1] = ACTIONS(3657), + [aux_sym_preproc_def_token1] = ACTIONS(3657), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3659), + [aux_sym_preproc_if_token1] = ACTIONS(3657), + [aux_sym_preproc_if_token2] = ACTIONS(3657), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3657), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3657), + [sym_preproc_directive] = ACTIONS(3657), + [anon_sym_LPAREN2] = ACTIONS(3659), + [anon_sym_BANG] = ACTIONS(3659), + [anon_sym_TILDE] = ACTIONS(3659), + [anon_sym_DASH] = ACTIONS(3657), + [anon_sym_PLUS] = ACTIONS(3657), + [anon_sym_STAR] = ACTIONS(3659), + [anon_sym_AMP_AMP] = ACTIONS(3659), + [anon_sym_AMP] = ACTIONS(3657), + [anon_sym_SEMI] = ACTIONS(3659), + [anon_sym___extension__] = ACTIONS(3657), + [anon_sym_typedef] = ACTIONS(3657), + [anon_sym_extern] = ACTIONS(3657), + [anon_sym___attribute__] = ACTIONS(3657), + [anon_sym_COLON_COLON] = ACTIONS(3659), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3659), + [anon_sym___declspec] = ACTIONS(3657), + [anon_sym___based] = ACTIONS(3657), + [anon_sym___cdecl] = ACTIONS(3657), + [anon_sym___clrcall] = ACTIONS(3657), + [anon_sym___stdcall] = ACTIONS(3657), + [anon_sym___fastcall] = ACTIONS(3657), + [anon_sym___thiscall] = ACTIONS(3657), + [anon_sym___vectorcall] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3659), + [anon_sym_signed] = ACTIONS(3657), + [anon_sym_unsigned] = ACTIONS(3657), + [anon_sym_long] = ACTIONS(3657), + [anon_sym_short] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_static] = ACTIONS(3657), + [anon_sym_register] = ACTIONS(3657), + [anon_sym_inline] = ACTIONS(3657), + [anon_sym___inline] = ACTIONS(3657), + [anon_sym___inline__] = ACTIONS(3657), + [anon_sym___forceinline] = ACTIONS(3657), + [anon_sym_thread_local] = ACTIONS(3657), + [anon_sym___thread] = ACTIONS(3657), + [anon_sym_const] = ACTIONS(3657), + [anon_sym_constexpr] = ACTIONS(3657), + [anon_sym_volatile] = ACTIONS(3657), + [anon_sym_restrict] = ACTIONS(3657), + [anon_sym___restrict__] = ACTIONS(3657), + [anon_sym__Atomic] = ACTIONS(3657), + [anon_sym__Noreturn] = ACTIONS(3657), + [anon_sym_noreturn] = ACTIONS(3657), + [anon_sym_mutable] = ACTIONS(3657), + [anon_sym_constinit] = ACTIONS(3657), + [anon_sym_consteval] = ACTIONS(3657), + [sym_primitive_type] = ACTIONS(3657), + [anon_sym_enum] = ACTIONS(3657), + [anon_sym_class] = ACTIONS(3657), + [anon_sym_struct] = ACTIONS(3657), + [anon_sym_union] = ACTIONS(3657), + [anon_sym_if] = ACTIONS(3657), + [anon_sym_switch] = ACTIONS(3657), + [anon_sym_case] = ACTIONS(3657), + [anon_sym_default] = ACTIONS(3657), + [anon_sym_while] = ACTIONS(3657), + [anon_sym_do] = ACTIONS(3657), + [anon_sym_for] = ACTIONS(3657), + [anon_sym_return] = ACTIONS(3657), + [anon_sym_break] = ACTIONS(3657), + [anon_sym_continue] = ACTIONS(3657), + [anon_sym_goto] = ACTIONS(3657), + [anon_sym___try] = ACTIONS(3657), + [anon_sym___leave] = ACTIONS(3657), + [anon_sym_not] = ACTIONS(3657), + [anon_sym_compl] = ACTIONS(3657), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3657), + [anon_sym___alignof__] = ACTIONS(3657), + [anon_sym___alignof] = ACTIONS(3657), + [anon_sym__alignof] = ACTIONS(3657), + [anon_sym_alignof] = ACTIONS(3657), + [anon_sym__Alignof] = ACTIONS(3657), + [anon_sym_offsetof] = ACTIONS(3657), + [anon_sym__Generic] = ACTIONS(3657), + [anon_sym_asm] = ACTIONS(3657), + [anon_sym___asm__] = ACTIONS(3657), + [sym_number_literal] = ACTIONS(3659), + [anon_sym_L_SQUOTE] = ACTIONS(3659), + [anon_sym_u_SQUOTE] = ACTIONS(3659), + [anon_sym_U_SQUOTE] = ACTIONS(3659), + [anon_sym_u8_SQUOTE] = ACTIONS(3659), + [anon_sym_SQUOTE] = ACTIONS(3659), + [anon_sym_L_DQUOTE] = ACTIONS(3659), + [anon_sym_u_DQUOTE] = ACTIONS(3659), + [anon_sym_U_DQUOTE] = ACTIONS(3659), + [anon_sym_u8_DQUOTE] = ACTIONS(3659), + [anon_sym_DQUOTE] = ACTIONS(3659), + [sym_true] = ACTIONS(3657), + [sym_false] = ACTIONS(3657), + [anon_sym_NULL] = ACTIONS(3657), + [anon_sym_nullptr] = ACTIONS(3657), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3657), + [anon_sym_decltype] = ACTIONS(3657), + [anon_sym_virtual] = ACTIONS(3657), + [anon_sym_alignas] = ACTIONS(3657), + [anon_sym_explicit] = ACTIONS(3657), + [anon_sym_typename] = ACTIONS(3657), + [anon_sym_template] = ACTIONS(3657), + [anon_sym_operator] = ACTIONS(3657), + [anon_sym_try] = ACTIONS(3657), + [anon_sym_delete] = ACTIONS(3657), + [anon_sym_throw] = ACTIONS(3657), + [anon_sym_namespace] = ACTIONS(3657), + [anon_sym_using] = ACTIONS(3657), + [anon_sym_static_assert] = ACTIONS(3657), + [anon_sym_concept] = ACTIONS(3657), + [anon_sym_co_return] = ACTIONS(3657), + [anon_sym_co_yield] = ACTIONS(3657), + [anon_sym_R_DQUOTE] = ACTIONS(3659), + [anon_sym_LR_DQUOTE] = ACTIONS(3659), + [anon_sym_uR_DQUOTE] = ACTIONS(3659), + [anon_sym_UR_DQUOTE] = ACTIONS(3659), + [anon_sym_u8R_DQUOTE] = ACTIONS(3659), + [anon_sym_co_await] = ACTIONS(3657), + [anon_sym_new] = ACTIONS(3657), + [anon_sym_requires] = ACTIONS(3657), + [sym_this] = ACTIONS(3657), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3659), + [sym_semgrep_named_ellipsis] = ACTIONS(3659), }, [729] = { - [sym_identifier] = ACTIONS(3626), - [aux_sym_preproc_include_token1] = ACTIONS(3626), - [aux_sym_preproc_def_token1] = ACTIONS(3626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3628), - [aux_sym_preproc_if_token1] = ACTIONS(3626), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3626), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3626), - [sym_preproc_directive] = ACTIONS(3626), - [anon_sym_LPAREN2] = ACTIONS(3628), - [anon_sym_BANG] = ACTIONS(3628), - [anon_sym_TILDE] = ACTIONS(3628), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_STAR] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3628), - [anon_sym___extension__] = ACTIONS(3626), - [anon_sym_typedef] = ACTIONS(3626), - [anon_sym_extern] = ACTIONS(3626), - [anon_sym___attribute__] = ACTIONS(3626), - [anon_sym_COLON_COLON] = ACTIONS(3628), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3628), - [anon_sym___declspec] = ACTIONS(3626), - [anon_sym___based] = ACTIONS(3626), - [anon_sym___cdecl] = ACTIONS(3626), - [anon_sym___clrcall] = ACTIONS(3626), - [anon_sym___stdcall] = ACTIONS(3626), - [anon_sym___fastcall] = ACTIONS(3626), - [anon_sym___thiscall] = ACTIONS(3626), - [anon_sym___vectorcall] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_RBRACE] = ACTIONS(3628), - [anon_sym_signed] = ACTIONS(3626), - [anon_sym_unsigned] = ACTIONS(3626), - [anon_sym_long] = ACTIONS(3626), - [anon_sym_short] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_register] = ACTIONS(3626), - [anon_sym_inline] = ACTIONS(3626), - [anon_sym___inline] = ACTIONS(3626), - [anon_sym___inline__] = ACTIONS(3626), - [anon_sym___forceinline] = ACTIONS(3626), - [anon_sym_thread_local] = ACTIONS(3626), - [anon_sym___thread] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_constexpr] = ACTIONS(3626), - [anon_sym_volatile] = ACTIONS(3626), - [anon_sym_restrict] = ACTIONS(3626), - [anon_sym___restrict__] = ACTIONS(3626), - [anon_sym__Atomic] = ACTIONS(3626), - [anon_sym__Noreturn] = ACTIONS(3626), - [anon_sym_noreturn] = ACTIONS(3626), - [anon_sym_mutable] = ACTIONS(3626), - [anon_sym_constinit] = ACTIONS(3626), - [anon_sym_consteval] = ACTIONS(3626), - [sym_primitive_type] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_struct] = ACTIONS(3626), - [anon_sym_union] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_goto] = ACTIONS(3626), - [anon_sym___try] = ACTIONS(3626), - [anon_sym___leave] = ACTIONS(3626), - [anon_sym_not] = ACTIONS(3626), - [anon_sym_compl] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3628), - [anon_sym_PLUS_PLUS] = ACTIONS(3628), - [anon_sym_sizeof] = ACTIONS(3626), - [anon_sym___alignof__] = ACTIONS(3626), - [anon_sym___alignof] = ACTIONS(3626), - [anon_sym__alignof] = ACTIONS(3626), - [anon_sym_alignof] = ACTIONS(3626), - [anon_sym__Alignof] = ACTIONS(3626), - [anon_sym_offsetof] = ACTIONS(3626), - [anon_sym__Generic] = ACTIONS(3626), - [anon_sym_asm] = ACTIONS(3626), - [anon_sym___asm__] = ACTIONS(3626), - [sym_number_literal] = ACTIONS(3628), - [anon_sym_L_SQUOTE] = ACTIONS(3628), - [anon_sym_u_SQUOTE] = ACTIONS(3628), - [anon_sym_U_SQUOTE] = ACTIONS(3628), - [anon_sym_u8_SQUOTE] = ACTIONS(3628), - [anon_sym_SQUOTE] = ACTIONS(3628), - [anon_sym_L_DQUOTE] = ACTIONS(3628), - [anon_sym_u_DQUOTE] = ACTIONS(3628), - [anon_sym_U_DQUOTE] = ACTIONS(3628), - [anon_sym_u8_DQUOTE] = ACTIONS(3628), - [anon_sym_DQUOTE] = ACTIONS(3628), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [anon_sym_NULL] = ACTIONS(3626), - [anon_sym_nullptr] = ACTIONS(3626), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3626), - [anon_sym_decltype] = ACTIONS(3626), - [anon_sym_virtual] = ACTIONS(3626), - [anon_sym_alignas] = ACTIONS(3626), - [anon_sym_explicit] = ACTIONS(3626), - [anon_sym_typename] = ACTIONS(3626), - [anon_sym_template] = ACTIONS(3626), - [anon_sym_operator] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_static_assert] = ACTIONS(3626), - [anon_sym_concept] = ACTIONS(3626), - [anon_sym_co_return] = ACTIONS(3626), - [anon_sym_co_yield] = ACTIONS(3626), - [anon_sym_R_DQUOTE] = ACTIONS(3628), - [anon_sym_LR_DQUOTE] = ACTIONS(3628), - [anon_sym_uR_DQUOTE] = ACTIONS(3628), - [anon_sym_UR_DQUOTE] = ACTIONS(3628), - [anon_sym_u8R_DQUOTE] = ACTIONS(3628), - [anon_sym_co_await] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_requires] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3628), - [sym_semgrep_named_ellipsis] = ACTIONS(3628), + [sym_identifier] = ACTIONS(3380), + [aux_sym_preproc_include_token1] = ACTIONS(3380), + [aux_sym_preproc_def_token1] = ACTIONS(3380), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3382), + [aux_sym_preproc_if_token1] = ACTIONS(3380), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3380), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3380), + [sym_preproc_directive] = ACTIONS(3380), + [anon_sym_LPAREN2] = ACTIONS(3382), + [anon_sym_BANG] = ACTIONS(3382), + [anon_sym_TILDE] = ACTIONS(3382), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_STAR] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_AMP] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym___extension__] = ACTIONS(3380), + [anon_sym_typedef] = ACTIONS(3380), + [anon_sym_extern] = ACTIONS(3380), + [anon_sym___attribute__] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3382), + [anon_sym___declspec] = ACTIONS(3380), + [anon_sym___based] = ACTIONS(3380), + [anon_sym___cdecl] = ACTIONS(3380), + [anon_sym___clrcall] = ACTIONS(3380), + [anon_sym___stdcall] = ACTIONS(3380), + [anon_sym___fastcall] = ACTIONS(3380), + [anon_sym___thiscall] = ACTIONS(3380), + [anon_sym___vectorcall] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_RBRACE] = ACTIONS(3382), + [anon_sym_signed] = ACTIONS(3380), + [anon_sym_unsigned] = ACTIONS(3380), + [anon_sym_long] = ACTIONS(3380), + [anon_sym_short] = ACTIONS(3380), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_static] = ACTIONS(3380), + [anon_sym_register] = ACTIONS(3380), + [anon_sym_inline] = ACTIONS(3380), + [anon_sym___inline] = ACTIONS(3380), + [anon_sym___inline__] = ACTIONS(3380), + [anon_sym___forceinline] = ACTIONS(3380), + [anon_sym_thread_local] = ACTIONS(3380), + [anon_sym___thread] = ACTIONS(3380), + [anon_sym_const] = ACTIONS(3380), + [anon_sym_constexpr] = ACTIONS(3380), + [anon_sym_volatile] = ACTIONS(3380), + [anon_sym_restrict] = ACTIONS(3380), + [anon_sym___restrict__] = ACTIONS(3380), + [anon_sym__Atomic] = ACTIONS(3380), + [anon_sym__Noreturn] = ACTIONS(3380), + [anon_sym_noreturn] = ACTIONS(3380), + [anon_sym_mutable] = ACTIONS(3380), + [anon_sym_constinit] = ACTIONS(3380), + [anon_sym_consteval] = ACTIONS(3380), + [sym_primitive_type] = ACTIONS(3380), + [anon_sym_enum] = ACTIONS(3380), + [anon_sym_class] = ACTIONS(3380), + [anon_sym_struct] = ACTIONS(3380), + [anon_sym_union] = ACTIONS(3380), + [anon_sym_if] = ACTIONS(3380), + [anon_sym_switch] = ACTIONS(3380), + [anon_sym_case] = ACTIONS(3380), + [anon_sym_default] = ACTIONS(3380), + [anon_sym_while] = ACTIONS(3380), + [anon_sym_do] = ACTIONS(3380), + [anon_sym_for] = ACTIONS(3380), + [anon_sym_return] = ACTIONS(3380), + [anon_sym_break] = ACTIONS(3380), + [anon_sym_continue] = ACTIONS(3380), + [anon_sym_goto] = ACTIONS(3380), + [anon_sym___try] = ACTIONS(3380), + [anon_sym___leave] = ACTIONS(3380), + [anon_sym_not] = ACTIONS(3380), + [anon_sym_compl] = ACTIONS(3380), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_sizeof] = ACTIONS(3380), + [anon_sym___alignof__] = ACTIONS(3380), + [anon_sym___alignof] = ACTIONS(3380), + [anon_sym__alignof] = ACTIONS(3380), + [anon_sym_alignof] = ACTIONS(3380), + [anon_sym__Alignof] = ACTIONS(3380), + [anon_sym_offsetof] = ACTIONS(3380), + [anon_sym__Generic] = ACTIONS(3380), + [anon_sym_asm] = ACTIONS(3380), + [anon_sym___asm__] = ACTIONS(3380), + [sym_number_literal] = ACTIONS(3382), + [anon_sym_L_SQUOTE] = ACTIONS(3382), + [anon_sym_u_SQUOTE] = ACTIONS(3382), + [anon_sym_U_SQUOTE] = ACTIONS(3382), + [anon_sym_u8_SQUOTE] = ACTIONS(3382), + [anon_sym_SQUOTE] = ACTIONS(3382), + [anon_sym_L_DQUOTE] = ACTIONS(3382), + [anon_sym_u_DQUOTE] = ACTIONS(3382), + [anon_sym_U_DQUOTE] = ACTIONS(3382), + [anon_sym_u8_DQUOTE] = ACTIONS(3382), + [anon_sym_DQUOTE] = ACTIONS(3382), + [sym_true] = ACTIONS(3380), + [sym_false] = ACTIONS(3380), + [anon_sym_NULL] = ACTIONS(3380), + [anon_sym_nullptr] = ACTIONS(3380), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3380), + [anon_sym_decltype] = ACTIONS(3380), + [anon_sym_virtual] = ACTIONS(3380), + [anon_sym_alignas] = ACTIONS(3380), + [anon_sym_explicit] = ACTIONS(3380), + [anon_sym_typename] = ACTIONS(3380), + [anon_sym_template] = ACTIONS(3380), + [anon_sym_operator] = ACTIONS(3380), + [anon_sym_try] = ACTIONS(3380), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_throw] = ACTIONS(3380), + [anon_sym_namespace] = ACTIONS(3380), + [anon_sym_using] = ACTIONS(3380), + [anon_sym_static_assert] = ACTIONS(3380), + [anon_sym_concept] = ACTIONS(3380), + [anon_sym_co_return] = ACTIONS(3380), + [anon_sym_co_yield] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3380), + [anon_sym_new] = ACTIONS(3380), + [anon_sym_requires] = ACTIONS(3380), + [sym_this] = ACTIONS(3380), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3382), + [sym_semgrep_named_ellipsis] = ACTIONS(3382), }, [730] = { - [sym_identifier] = ACTIONS(3253), - [aux_sym_preproc_include_token1] = ACTIONS(3253), - [aux_sym_preproc_def_token1] = ACTIONS(3253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3255), - [aux_sym_preproc_if_token1] = ACTIONS(3253), - [aux_sym_preproc_if_token2] = ACTIONS(3253), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3253), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3253), - [sym_preproc_directive] = ACTIONS(3253), - [anon_sym_LPAREN2] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3253), - [anon_sym_PLUS] = ACTIONS(3253), - [anon_sym_STAR] = ACTIONS(3255), - [anon_sym_AMP_AMP] = ACTIONS(3255), - [anon_sym_AMP] = ACTIONS(3253), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym___extension__] = ACTIONS(3253), - [anon_sym_typedef] = ACTIONS(3253), - [anon_sym_extern] = ACTIONS(3253), - [anon_sym___attribute__] = ACTIONS(3253), - [anon_sym_COLON_COLON] = ACTIONS(3255), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3255), - [anon_sym___declspec] = ACTIONS(3253), - [anon_sym___based] = ACTIONS(3253), - [anon_sym___cdecl] = ACTIONS(3253), - [anon_sym___clrcall] = ACTIONS(3253), - [anon_sym___stdcall] = ACTIONS(3253), - [anon_sym___fastcall] = ACTIONS(3253), - [anon_sym___thiscall] = ACTIONS(3253), - [anon_sym___vectorcall] = ACTIONS(3253), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_signed] = ACTIONS(3253), - [anon_sym_unsigned] = ACTIONS(3253), - [anon_sym_long] = ACTIONS(3253), - [anon_sym_short] = ACTIONS(3253), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_static] = ACTIONS(3253), - [anon_sym_register] = ACTIONS(3253), - [anon_sym_inline] = ACTIONS(3253), - [anon_sym___inline] = ACTIONS(3253), - [anon_sym___inline__] = ACTIONS(3253), - [anon_sym___forceinline] = ACTIONS(3253), - [anon_sym_thread_local] = ACTIONS(3253), - [anon_sym___thread] = ACTIONS(3253), - [anon_sym_const] = ACTIONS(3253), - [anon_sym_constexpr] = ACTIONS(3253), - [anon_sym_volatile] = ACTIONS(3253), - [anon_sym_restrict] = ACTIONS(3253), - [anon_sym___restrict__] = ACTIONS(3253), - [anon_sym__Atomic] = ACTIONS(3253), - [anon_sym__Noreturn] = ACTIONS(3253), - [anon_sym_noreturn] = ACTIONS(3253), - [anon_sym_mutable] = ACTIONS(3253), - [anon_sym_constinit] = ACTIONS(3253), - [anon_sym_consteval] = ACTIONS(3253), - [sym_primitive_type] = ACTIONS(3253), - [anon_sym_enum] = ACTIONS(3253), - [anon_sym_class] = ACTIONS(3253), - [anon_sym_struct] = ACTIONS(3253), - [anon_sym_union] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(3253), - [anon_sym_switch] = ACTIONS(3253), - [anon_sym_case] = ACTIONS(3253), - [anon_sym_default] = ACTIONS(3253), - [anon_sym_while] = ACTIONS(3253), - [anon_sym_do] = ACTIONS(3253), - [anon_sym_for] = ACTIONS(3253), - [anon_sym_return] = ACTIONS(3253), - [anon_sym_break] = ACTIONS(3253), - [anon_sym_continue] = ACTIONS(3253), - [anon_sym_goto] = ACTIONS(3253), - [anon_sym___try] = ACTIONS(3253), - [anon_sym___leave] = ACTIONS(3253), - [anon_sym_not] = ACTIONS(3253), - [anon_sym_compl] = ACTIONS(3253), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_sizeof] = ACTIONS(3253), - [anon_sym___alignof__] = ACTIONS(3253), - [anon_sym___alignof] = ACTIONS(3253), - [anon_sym__alignof] = ACTIONS(3253), - [anon_sym_alignof] = ACTIONS(3253), - [anon_sym__Alignof] = ACTIONS(3253), - [anon_sym_offsetof] = ACTIONS(3253), - [anon_sym__Generic] = ACTIONS(3253), - [anon_sym_asm] = ACTIONS(3253), - [anon_sym___asm__] = ACTIONS(3253), - [sym_number_literal] = ACTIONS(3255), - [anon_sym_L_SQUOTE] = ACTIONS(3255), - [anon_sym_u_SQUOTE] = ACTIONS(3255), - [anon_sym_U_SQUOTE] = ACTIONS(3255), - [anon_sym_u8_SQUOTE] = ACTIONS(3255), - [anon_sym_SQUOTE] = ACTIONS(3255), - [anon_sym_L_DQUOTE] = ACTIONS(3255), - [anon_sym_u_DQUOTE] = ACTIONS(3255), - [anon_sym_U_DQUOTE] = ACTIONS(3255), - [anon_sym_u8_DQUOTE] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(3255), - [sym_true] = ACTIONS(3253), - [sym_false] = ACTIONS(3253), - [anon_sym_NULL] = ACTIONS(3253), - [anon_sym_nullptr] = ACTIONS(3253), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3253), - [anon_sym_decltype] = ACTIONS(3253), - [anon_sym_virtual] = ACTIONS(3253), - [anon_sym_alignas] = ACTIONS(3253), - [anon_sym_explicit] = ACTIONS(3253), - [anon_sym_typename] = ACTIONS(3253), - [anon_sym_template] = ACTIONS(3253), - [anon_sym_operator] = ACTIONS(3253), - [anon_sym_try] = ACTIONS(3253), - [anon_sym_delete] = ACTIONS(3253), - [anon_sym_throw] = ACTIONS(3253), - [anon_sym_namespace] = ACTIONS(3253), - [anon_sym_using] = ACTIONS(3253), - [anon_sym_static_assert] = ACTIONS(3253), - [anon_sym_concept] = ACTIONS(3253), - [anon_sym_co_return] = ACTIONS(3253), - [anon_sym_co_yield] = ACTIONS(3253), - [anon_sym_R_DQUOTE] = ACTIONS(3255), - [anon_sym_LR_DQUOTE] = ACTIONS(3255), - [anon_sym_uR_DQUOTE] = ACTIONS(3255), - [anon_sym_UR_DQUOTE] = ACTIONS(3255), - [anon_sym_u8R_DQUOTE] = ACTIONS(3255), - [anon_sym_co_await] = ACTIONS(3253), - [anon_sym_new] = ACTIONS(3253), - [anon_sym_requires] = ACTIONS(3253), - [sym_this] = ACTIONS(3253), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3255), - [sym_semgrep_named_ellipsis] = ACTIONS(3255), + [sym_identifier] = ACTIONS(3609), + [aux_sym_preproc_include_token1] = ACTIONS(3609), + [aux_sym_preproc_def_token1] = ACTIONS(3609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3611), + [aux_sym_preproc_if_token1] = ACTIONS(3609), + [aux_sym_preproc_if_token2] = ACTIONS(3609), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3609), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3609), + [sym_preproc_directive] = ACTIONS(3609), + [anon_sym_LPAREN2] = ACTIONS(3611), + [anon_sym_BANG] = ACTIONS(3611), + [anon_sym_TILDE] = ACTIONS(3611), + [anon_sym_DASH] = ACTIONS(3609), + [anon_sym_PLUS] = ACTIONS(3609), + [anon_sym_STAR] = ACTIONS(3611), + [anon_sym_AMP_AMP] = ACTIONS(3611), + [anon_sym_AMP] = ACTIONS(3609), + [anon_sym_SEMI] = ACTIONS(3611), + [anon_sym___extension__] = ACTIONS(3609), + [anon_sym_typedef] = ACTIONS(3609), + [anon_sym_extern] = ACTIONS(3609), + [anon_sym___attribute__] = ACTIONS(3609), + [anon_sym_COLON_COLON] = ACTIONS(3611), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3611), + [anon_sym___declspec] = ACTIONS(3609), + [anon_sym___based] = ACTIONS(3609), + [anon_sym___cdecl] = ACTIONS(3609), + [anon_sym___clrcall] = ACTIONS(3609), + [anon_sym___stdcall] = ACTIONS(3609), + [anon_sym___fastcall] = ACTIONS(3609), + [anon_sym___thiscall] = ACTIONS(3609), + [anon_sym___vectorcall] = ACTIONS(3609), + [anon_sym_LBRACE] = ACTIONS(3611), + [anon_sym_signed] = ACTIONS(3609), + [anon_sym_unsigned] = ACTIONS(3609), + [anon_sym_long] = ACTIONS(3609), + [anon_sym_short] = ACTIONS(3609), + [anon_sym_LBRACK] = ACTIONS(3609), + [anon_sym_static] = ACTIONS(3609), + [anon_sym_register] = ACTIONS(3609), + [anon_sym_inline] = ACTIONS(3609), + [anon_sym___inline] = ACTIONS(3609), + [anon_sym___inline__] = ACTIONS(3609), + [anon_sym___forceinline] = ACTIONS(3609), + [anon_sym_thread_local] = ACTIONS(3609), + [anon_sym___thread] = ACTIONS(3609), + [anon_sym_const] = ACTIONS(3609), + [anon_sym_constexpr] = ACTIONS(3609), + [anon_sym_volatile] = ACTIONS(3609), + [anon_sym_restrict] = ACTIONS(3609), + [anon_sym___restrict__] = ACTIONS(3609), + [anon_sym__Atomic] = ACTIONS(3609), + [anon_sym__Noreturn] = ACTIONS(3609), + [anon_sym_noreturn] = ACTIONS(3609), + [anon_sym_mutable] = ACTIONS(3609), + [anon_sym_constinit] = ACTIONS(3609), + [anon_sym_consteval] = ACTIONS(3609), + [sym_primitive_type] = ACTIONS(3609), + [anon_sym_enum] = ACTIONS(3609), + [anon_sym_class] = ACTIONS(3609), + [anon_sym_struct] = ACTIONS(3609), + [anon_sym_union] = ACTIONS(3609), + [anon_sym_if] = ACTIONS(3609), + [anon_sym_switch] = ACTIONS(3609), + [anon_sym_case] = ACTIONS(3609), + [anon_sym_default] = ACTIONS(3609), + [anon_sym_while] = ACTIONS(3609), + [anon_sym_do] = ACTIONS(3609), + [anon_sym_for] = ACTIONS(3609), + [anon_sym_return] = ACTIONS(3609), + [anon_sym_break] = ACTIONS(3609), + [anon_sym_continue] = ACTIONS(3609), + [anon_sym_goto] = ACTIONS(3609), + [anon_sym___try] = ACTIONS(3609), + [anon_sym___leave] = ACTIONS(3609), + [anon_sym_not] = ACTIONS(3609), + [anon_sym_compl] = ACTIONS(3609), + [anon_sym_DASH_DASH] = ACTIONS(3611), + [anon_sym_PLUS_PLUS] = ACTIONS(3611), + [anon_sym_sizeof] = ACTIONS(3609), + [anon_sym___alignof__] = ACTIONS(3609), + [anon_sym___alignof] = ACTIONS(3609), + [anon_sym__alignof] = ACTIONS(3609), + [anon_sym_alignof] = ACTIONS(3609), + [anon_sym__Alignof] = ACTIONS(3609), + [anon_sym_offsetof] = ACTIONS(3609), + [anon_sym__Generic] = ACTIONS(3609), + [anon_sym_asm] = ACTIONS(3609), + [anon_sym___asm__] = ACTIONS(3609), + [sym_number_literal] = ACTIONS(3611), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3611), + [anon_sym_u_DQUOTE] = ACTIONS(3611), + [anon_sym_U_DQUOTE] = ACTIONS(3611), + [anon_sym_u8_DQUOTE] = ACTIONS(3611), + [anon_sym_DQUOTE] = ACTIONS(3611), + [sym_true] = ACTIONS(3609), + [sym_false] = ACTIONS(3609), + [anon_sym_NULL] = ACTIONS(3609), + [anon_sym_nullptr] = ACTIONS(3609), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3609), + [anon_sym_decltype] = ACTIONS(3609), + [anon_sym_virtual] = ACTIONS(3609), + [anon_sym_alignas] = ACTIONS(3609), + [anon_sym_explicit] = ACTIONS(3609), + [anon_sym_typename] = ACTIONS(3609), + [anon_sym_template] = ACTIONS(3609), + [anon_sym_operator] = ACTIONS(3609), + [anon_sym_try] = ACTIONS(3609), + [anon_sym_delete] = ACTIONS(3609), + [anon_sym_throw] = ACTIONS(3609), + [anon_sym_namespace] = ACTIONS(3609), + [anon_sym_using] = ACTIONS(3609), + [anon_sym_static_assert] = ACTIONS(3609), + [anon_sym_concept] = ACTIONS(3609), + [anon_sym_co_return] = ACTIONS(3609), + [anon_sym_co_yield] = ACTIONS(3609), + [anon_sym_R_DQUOTE] = ACTIONS(3611), + [anon_sym_LR_DQUOTE] = ACTIONS(3611), + [anon_sym_uR_DQUOTE] = ACTIONS(3611), + [anon_sym_UR_DQUOTE] = ACTIONS(3611), + [anon_sym_u8R_DQUOTE] = ACTIONS(3611), + [anon_sym_co_await] = ACTIONS(3609), + [anon_sym_new] = ACTIONS(3609), + [anon_sym_requires] = ACTIONS(3609), + [sym_this] = ACTIONS(3609), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3611), + [sym_semgrep_named_ellipsis] = ACTIONS(3611), }, [731] = { - [sym_identifier] = ACTIONS(3469), - [aux_sym_preproc_include_token1] = ACTIONS(3469), - [aux_sym_preproc_def_token1] = ACTIONS(3469), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3471), - [aux_sym_preproc_if_token1] = ACTIONS(3469), - [aux_sym_preproc_if_token2] = ACTIONS(3469), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3469), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3469), - [sym_preproc_directive] = ACTIONS(3469), - [anon_sym_LPAREN2] = ACTIONS(3471), - [anon_sym_BANG] = ACTIONS(3471), - [anon_sym_TILDE] = ACTIONS(3471), - [anon_sym_DASH] = ACTIONS(3469), - [anon_sym_PLUS] = ACTIONS(3469), - [anon_sym_STAR] = ACTIONS(3471), - [anon_sym_AMP_AMP] = ACTIONS(3471), - [anon_sym_AMP] = ACTIONS(3469), - [anon_sym_SEMI] = ACTIONS(3471), - [anon_sym___extension__] = ACTIONS(3469), - [anon_sym_typedef] = ACTIONS(3469), - [anon_sym_extern] = ACTIONS(3469), - [anon_sym___attribute__] = ACTIONS(3469), - [anon_sym_COLON_COLON] = ACTIONS(3471), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3471), - [anon_sym___declspec] = ACTIONS(3469), - [anon_sym___based] = ACTIONS(3469), - [anon_sym___cdecl] = ACTIONS(3469), - [anon_sym___clrcall] = ACTIONS(3469), - [anon_sym___stdcall] = ACTIONS(3469), - [anon_sym___fastcall] = ACTIONS(3469), - [anon_sym___thiscall] = ACTIONS(3469), - [anon_sym___vectorcall] = ACTIONS(3469), - [anon_sym_LBRACE] = ACTIONS(3471), - [anon_sym_signed] = ACTIONS(3469), - [anon_sym_unsigned] = ACTIONS(3469), - [anon_sym_long] = ACTIONS(3469), - [anon_sym_short] = ACTIONS(3469), - [anon_sym_LBRACK] = ACTIONS(3469), - [anon_sym_static] = ACTIONS(3469), - [anon_sym_register] = ACTIONS(3469), - [anon_sym_inline] = ACTIONS(3469), - [anon_sym___inline] = ACTIONS(3469), - [anon_sym___inline__] = ACTIONS(3469), - [anon_sym___forceinline] = ACTIONS(3469), - [anon_sym_thread_local] = ACTIONS(3469), - [anon_sym___thread] = ACTIONS(3469), - [anon_sym_const] = ACTIONS(3469), - [anon_sym_constexpr] = ACTIONS(3469), - [anon_sym_volatile] = ACTIONS(3469), - [anon_sym_restrict] = ACTIONS(3469), - [anon_sym___restrict__] = ACTIONS(3469), - [anon_sym__Atomic] = ACTIONS(3469), - [anon_sym__Noreturn] = ACTIONS(3469), - [anon_sym_noreturn] = ACTIONS(3469), - [anon_sym_mutable] = ACTIONS(3469), - [anon_sym_constinit] = ACTIONS(3469), - [anon_sym_consteval] = ACTIONS(3469), - [sym_primitive_type] = ACTIONS(3469), - [anon_sym_enum] = ACTIONS(3469), - [anon_sym_class] = ACTIONS(3469), - [anon_sym_struct] = ACTIONS(3469), - [anon_sym_union] = ACTIONS(3469), - [anon_sym_if] = ACTIONS(3469), - [anon_sym_switch] = ACTIONS(3469), - [anon_sym_case] = ACTIONS(3469), - [anon_sym_default] = ACTIONS(3469), - [anon_sym_while] = ACTIONS(3469), - [anon_sym_do] = ACTIONS(3469), - [anon_sym_for] = ACTIONS(3469), - [anon_sym_return] = ACTIONS(3469), - [anon_sym_break] = ACTIONS(3469), - [anon_sym_continue] = ACTIONS(3469), - [anon_sym_goto] = ACTIONS(3469), - [anon_sym___try] = ACTIONS(3469), - [anon_sym___leave] = ACTIONS(3469), - [anon_sym_not] = ACTIONS(3469), - [anon_sym_compl] = ACTIONS(3469), - [anon_sym_DASH_DASH] = ACTIONS(3471), - [anon_sym_PLUS_PLUS] = ACTIONS(3471), - [anon_sym_sizeof] = ACTIONS(3469), - [anon_sym___alignof__] = ACTIONS(3469), - [anon_sym___alignof] = ACTIONS(3469), - [anon_sym__alignof] = ACTIONS(3469), - [anon_sym_alignof] = ACTIONS(3469), - [anon_sym__Alignof] = ACTIONS(3469), - [anon_sym_offsetof] = ACTIONS(3469), - [anon_sym__Generic] = ACTIONS(3469), - [anon_sym_asm] = ACTIONS(3469), - [anon_sym___asm__] = ACTIONS(3469), - [sym_number_literal] = ACTIONS(3471), - [anon_sym_L_SQUOTE] = ACTIONS(3471), - [anon_sym_u_SQUOTE] = ACTIONS(3471), - [anon_sym_U_SQUOTE] = ACTIONS(3471), - [anon_sym_u8_SQUOTE] = ACTIONS(3471), - [anon_sym_SQUOTE] = ACTIONS(3471), - [anon_sym_L_DQUOTE] = ACTIONS(3471), - [anon_sym_u_DQUOTE] = ACTIONS(3471), - [anon_sym_U_DQUOTE] = ACTIONS(3471), - [anon_sym_u8_DQUOTE] = ACTIONS(3471), - [anon_sym_DQUOTE] = ACTIONS(3471), - [sym_true] = ACTIONS(3469), - [sym_false] = ACTIONS(3469), - [anon_sym_NULL] = ACTIONS(3469), - [anon_sym_nullptr] = ACTIONS(3469), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3469), - [anon_sym_decltype] = ACTIONS(3469), - [anon_sym_virtual] = ACTIONS(3469), - [anon_sym_alignas] = ACTIONS(3469), - [anon_sym_explicit] = ACTIONS(3469), - [anon_sym_typename] = ACTIONS(3469), - [anon_sym_template] = ACTIONS(3469), - [anon_sym_operator] = ACTIONS(3469), - [anon_sym_try] = ACTIONS(3469), - [anon_sym_delete] = ACTIONS(3469), - [anon_sym_throw] = ACTIONS(3469), - [anon_sym_namespace] = ACTIONS(3469), - [anon_sym_using] = ACTIONS(3469), - [anon_sym_static_assert] = ACTIONS(3469), - [anon_sym_concept] = ACTIONS(3469), - [anon_sym_co_return] = ACTIONS(3469), - [anon_sym_co_yield] = ACTIONS(3469), - [anon_sym_R_DQUOTE] = ACTIONS(3471), - [anon_sym_LR_DQUOTE] = ACTIONS(3471), - [anon_sym_uR_DQUOTE] = ACTIONS(3471), - [anon_sym_UR_DQUOTE] = ACTIONS(3471), - [anon_sym_u8R_DQUOTE] = ACTIONS(3471), - [anon_sym_co_await] = ACTIONS(3469), - [anon_sym_new] = ACTIONS(3469), - [anon_sym_requires] = ACTIONS(3469), - [sym_this] = ACTIONS(3469), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3471), - [sym_semgrep_named_ellipsis] = ACTIONS(3471), + [sym_identifier] = ACTIONS(3475), + [aux_sym_preproc_include_token1] = ACTIONS(3475), + [aux_sym_preproc_def_token1] = ACTIONS(3475), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3477), + [aux_sym_preproc_if_token1] = ACTIONS(3475), + [aux_sym_preproc_if_token2] = ACTIONS(3475), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3475), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3475), + [sym_preproc_directive] = ACTIONS(3475), + [anon_sym_LPAREN2] = ACTIONS(3477), + [anon_sym_BANG] = ACTIONS(3477), + [anon_sym_TILDE] = ACTIONS(3477), + [anon_sym_DASH] = ACTIONS(3475), + [anon_sym_PLUS] = ACTIONS(3475), + [anon_sym_STAR] = ACTIONS(3477), + [anon_sym_AMP_AMP] = ACTIONS(3477), + [anon_sym_AMP] = ACTIONS(3475), + [anon_sym_SEMI] = ACTIONS(3477), + [anon_sym___extension__] = ACTIONS(3475), + [anon_sym_typedef] = ACTIONS(3475), + [anon_sym_extern] = ACTIONS(3475), + [anon_sym___attribute__] = ACTIONS(3475), + [anon_sym_COLON_COLON] = ACTIONS(3477), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3477), + [anon_sym___declspec] = ACTIONS(3475), + [anon_sym___based] = ACTIONS(3475), + [anon_sym___cdecl] = ACTIONS(3475), + [anon_sym___clrcall] = ACTIONS(3475), + [anon_sym___stdcall] = ACTIONS(3475), + [anon_sym___fastcall] = ACTIONS(3475), + [anon_sym___thiscall] = ACTIONS(3475), + [anon_sym___vectorcall] = ACTIONS(3475), + [anon_sym_LBRACE] = ACTIONS(3477), + [anon_sym_signed] = ACTIONS(3475), + [anon_sym_unsigned] = ACTIONS(3475), + [anon_sym_long] = ACTIONS(3475), + [anon_sym_short] = ACTIONS(3475), + [anon_sym_LBRACK] = ACTIONS(3475), + [anon_sym_static] = ACTIONS(3475), + [anon_sym_register] = ACTIONS(3475), + [anon_sym_inline] = ACTIONS(3475), + [anon_sym___inline] = ACTIONS(3475), + [anon_sym___inline__] = ACTIONS(3475), + [anon_sym___forceinline] = ACTIONS(3475), + [anon_sym_thread_local] = ACTIONS(3475), + [anon_sym___thread] = ACTIONS(3475), + [anon_sym_const] = ACTIONS(3475), + [anon_sym_constexpr] = ACTIONS(3475), + [anon_sym_volatile] = ACTIONS(3475), + [anon_sym_restrict] = ACTIONS(3475), + [anon_sym___restrict__] = ACTIONS(3475), + [anon_sym__Atomic] = ACTIONS(3475), + [anon_sym__Noreturn] = ACTIONS(3475), + [anon_sym_noreturn] = ACTIONS(3475), + [anon_sym_mutable] = ACTIONS(3475), + [anon_sym_constinit] = ACTIONS(3475), + [anon_sym_consteval] = ACTIONS(3475), + [sym_primitive_type] = ACTIONS(3475), + [anon_sym_enum] = ACTIONS(3475), + [anon_sym_class] = ACTIONS(3475), + [anon_sym_struct] = ACTIONS(3475), + [anon_sym_union] = ACTIONS(3475), + [anon_sym_if] = ACTIONS(3475), + [anon_sym_switch] = ACTIONS(3475), + [anon_sym_case] = ACTIONS(3475), + [anon_sym_default] = ACTIONS(3475), + [anon_sym_while] = ACTIONS(3475), + [anon_sym_do] = ACTIONS(3475), + [anon_sym_for] = ACTIONS(3475), + [anon_sym_return] = ACTIONS(3475), + [anon_sym_break] = ACTIONS(3475), + [anon_sym_continue] = ACTIONS(3475), + [anon_sym_goto] = ACTIONS(3475), + [anon_sym___try] = ACTIONS(3475), + [anon_sym___leave] = ACTIONS(3475), + [anon_sym_not] = ACTIONS(3475), + [anon_sym_compl] = ACTIONS(3475), + [anon_sym_DASH_DASH] = ACTIONS(3477), + [anon_sym_PLUS_PLUS] = ACTIONS(3477), + [anon_sym_sizeof] = ACTIONS(3475), + [anon_sym___alignof__] = ACTIONS(3475), + [anon_sym___alignof] = ACTIONS(3475), + [anon_sym__alignof] = ACTIONS(3475), + [anon_sym_alignof] = ACTIONS(3475), + [anon_sym__Alignof] = ACTIONS(3475), + [anon_sym_offsetof] = ACTIONS(3475), + [anon_sym__Generic] = ACTIONS(3475), + [anon_sym_asm] = ACTIONS(3475), + [anon_sym___asm__] = ACTIONS(3475), + [sym_number_literal] = ACTIONS(3477), + [anon_sym_L_SQUOTE] = ACTIONS(3477), + [anon_sym_u_SQUOTE] = ACTIONS(3477), + [anon_sym_U_SQUOTE] = ACTIONS(3477), + [anon_sym_u8_SQUOTE] = ACTIONS(3477), + [anon_sym_SQUOTE] = ACTIONS(3477), + [anon_sym_L_DQUOTE] = ACTIONS(3477), + [anon_sym_u_DQUOTE] = ACTIONS(3477), + [anon_sym_U_DQUOTE] = ACTIONS(3477), + [anon_sym_u8_DQUOTE] = ACTIONS(3477), + [anon_sym_DQUOTE] = ACTIONS(3477), + [sym_true] = ACTIONS(3475), + [sym_false] = ACTIONS(3475), + [anon_sym_NULL] = ACTIONS(3475), + [anon_sym_nullptr] = ACTIONS(3475), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3475), + [anon_sym_decltype] = ACTIONS(3475), + [anon_sym_virtual] = ACTIONS(3475), + [anon_sym_alignas] = ACTIONS(3475), + [anon_sym_explicit] = ACTIONS(3475), + [anon_sym_typename] = ACTIONS(3475), + [anon_sym_template] = ACTIONS(3475), + [anon_sym_operator] = ACTIONS(3475), + [anon_sym_try] = ACTIONS(3475), + [anon_sym_delete] = ACTIONS(3475), + [anon_sym_throw] = ACTIONS(3475), + [anon_sym_namespace] = ACTIONS(3475), + [anon_sym_using] = ACTIONS(3475), + [anon_sym_static_assert] = ACTIONS(3475), + [anon_sym_concept] = ACTIONS(3475), + [anon_sym_co_return] = ACTIONS(3475), + [anon_sym_co_yield] = ACTIONS(3475), + [anon_sym_R_DQUOTE] = ACTIONS(3477), + [anon_sym_LR_DQUOTE] = ACTIONS(3477), + [anon_sym_uR_DQUOTE] = ACTIONS(3477), + [anon_sym_UR_DQUOTE] = ACTIONS(3477), + [anon_sym_u8R_DQUOTE] = ACTIONS(3477), + [anon_sym_co_await] = ACTIONS(3475), + [anon_sym_new] = ACTIONS(3475), + [anon_sym_requires] = ACTIONS(3475), + [sym_this] = ACTIONS(3475), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3477), + [sym_semgrep_named_ellipsis] = ACTIONS(3477), }, [732] = { - [sym_identifier] = ACTIONS(3473), - [aux_sym_preproc_include_token1] = ACTIONS(3473), - [aux_sym_preproc_def_token1] = ACTIONS(3473), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3475), - [aux_sym_preproc_if_token1] = ACTIONS(3473), - [aux_sym_preproc_if_token2] = ACTIONS(3473), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3473), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3473), - [sym_preproc_directive] = ACTIONS(3473), - [anon_sym_LPAREN2] = ACTIONS(3475), - [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(3475), - [anon_sym_DASH] = ACTIONS(3473), - [anon_sym_PLUS] = ACTIONS(3473), - [anon_sym_STAR] = ACTIONS(3475), - [anon_sym_AMP_AMP] = ACTIONS(3475), - [anon_sym_AMP] = ACTIONS(3473), - [anon_sym_SEMI] = ACTIONS(3475), - [anon_sym___extension__] = ACTIONS(3473), - [anon_sym_typedef] = ACTIONS(3473), - [anon_sym_extern] = ACTIONS(3473), - [anon_sym___attribute__] = ACTIONS(3473), - [anon_sym_COLON_COLON] = ACTIONS(3475), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3475), - [anon_sym___declspec] = ACTIONS(3473), - [anon_sym___based] = ACTIONS(3473), - [anon_sym___cdecl] = ACTIONS(3473), - [anon_sym___clrcall] = ACTIONS(3473), - [anon_sym___stdcall] = ACTIONS(3473), - [anon_sym___fastcall] = ACTIONS(3473), - [anon_sym___thiscall] = ACTIONS(3473), - [anon_sym___vectorcall] = ACTIONS(3473), - [anon_sym_LBRACE] = ACTIONS(3475), - [anon_sym_signed] = ACTIONS(3473), - [anon_sym_unsigned] = ACTIONS(3473), - [anon_sym_long] = ACTIONS(3473), - [anon_sym_short] = ACTIONS(3473), - [anon_sym_LBRACK] = ACTIONS(3473), - [anon_sym_static] = ACTIONS(3473), - [anon_sym_register] = ACTIONS(3473), - [anon_sym_inline] = ACTIONS(3473), - [anon_sym___inline] = ACTIONS(3473), - [anon_sym___inline__] = ACTIONS(3473), - [anon_sym___forceinline] = ACTIONS(3473), - [anon_sym_thread_local] = ACTIONS(3473), - [anon_sym___thread] = ACTIONS(3473), - [anon_sym_const] = ACTIONS(3473), - [anon_sym_constexpr] = ACTIONS(3473), - [anon_sym_volatile] = ACTIONS(3473), - [anon_sym_restrict] = ACTIONS(3473), - [anon_sym___restrict__] = ACTIONS(3473), - [anon_sym__Atomic] = ACTIONS(3473), - [anon_sym__Noreturn] = ACTIONS(3473), - [anon_sym_noreturn] = ACTIONS(3473), - [anon_sym_mutable] = ACTIONS(3473), - [anon_sym_constinit] = ACTIONS(3473), - [anon_sym_consteval] = ACTIONS(3473), - [sym_primitive_type] = ACTIONS(3473), - [anon_sym_enum] = ACTIONS(3473), - [anon_sym_class] = ACTIONS(3473), - [anon_sym_struct] = ACTIONS(3473), - [anon_sym_union] = ACTIONS(3473), - [anon_sym_if] = ACTIONS(3473), - [anon_sym_switch] = ACTIONS(3473), - [anon_sym_case] = ACTIONS(3473), - [anon_sym_default] = ACTIONS(3473), - [anon_sym_while] = ACTIONS(3473), - [anon_sym_do] = ACTIONS(3473), - [anon_sym_for] = ACTIONS(3473), - [anon_sym_return] = ACTIONS(3473), - [anon_sym_break] = ACTIONS(3473), - [anon_sym_continue] = ACTIONS(3473), - [anon_sym_goto] = ACTIONS(3473), - [anon_sym___try] = ACTIONS(3473), - [anon_sym___leave] = ACTIONS(3473), - [anon_sym_not] = ACTIONS(3473), - [anon_sym_compl] = ACTIONS(3473), - [anon_sym_DASH_DASH] = ACTIONS(3475), - [anon_sym_PLUS_PLUS] = ACTIONS(3475), - [anon_sym_sizeof] = ACTIONS(3473), - [anon_sym___alignof__] = ACTIONS(3473), - [anon_sym___alignof] = ACTIONS(3473), - [anon_sym__alignof] = ACTIONS(3473), - [anon_sym_alignof] = ACTIONS(3473), - [anon_sym__Alignof] = ACTIONS(3473), - [anon_sym_offsetof] = ACTIONS(3473), - [anon_sym__Generic] = ACTIONS(3473), - [anon_sym_asm] = ACTIONS(3473), - [anon_sym___asm__] = ACTIONS(3473), - [sym_number_literal] = ACTIONS(3475), - [anon_sym_L_SQUOTE] = ACTIONS(3475), - [anon_sym_u_SQUOTE] = ACTIONS(3475), - [anon_sym_U_SQUOTE] = ACTIONS(3475), - [anon_sym_u8_SQUOTE] = ACTIONS(3475), - [anon_sym_SQUOTE] = ACTIONS(3475), - [anon_sym_L_DQUOTE] = ACTIONS(3475), - [anon_sym_u_DQUOTE] = ACTIONS(3475), - [anon_sym_U_DQUOTE] = ACTIONS(3475), - [anon_sym_u8_DQUOTE] = ACTIONS(3475), - [anon_sym_DQUOTE] = ACTIONS(3475), - [sym_true] = ACTIONS(3473), - [sym_false] = ACTIONS(3473), - [anon_sym_NULL] = ACTIONS(3473), - [anon_sym_nullptr] = ACTIONS(3473), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3473), - [anon_sym_decltype] = ACTIONS(3473), - [anon_sym_virtual] = ACTIONS(3473), - [anon_sym_alignas] = ACTIONS(3473), - [anon_sym_explicit] = ACTIONS(3473), - [anon_sym_typename] = ACTIONS(3473), - [anon_sym_template] = ACTIONS(3473), - [anon_sym_operator] = ACTIONS(3473), - [anon_sym_try] = ACTIONS(3473), - [anon_sym_delete] = ACTIONS(3473), - [anon_sym_throw] = ACTIONS(3473), - [anon_sym_namespace] = ACTIONS(3473), - [anon_sym_using] = ACTIONS(3473), - [anon_sym_static_assert] = ACTIONS(3473), - [anon_sym_concept] = ACTIONS(3473), - [anon_sym_co_return] = ACTIONS(3473), - [anon_sym_co_yield] = ACTIONS(3473), - [anon_sym_R_DQUOTE] = ACTIONS(3475), - [anon_sym_LR_DQUOTE] = ACTIONS(3475), - [anon_sym_uR_DQUOTE] = ACTIONS(3475), - [anon_sym_UR_DQUOTE] = ACTIONS(3475), - [anon_sym_u8R_DQUOTE] = ACTIONS(3475), - [anon_sym_co_await] = ACTIONS(3473), - [anon_sym_new] = ACTIONS(3473), - [anon_sym_requires] = ACTIONS(3473), - [sym_this] = ACTIONS(3473), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3475), - [sym_semgrep_named_ellipsis] = ACTIONS(3475), + [sym_identifier] = ACTIONS(3479), + [aux_sym_preproc_include_token1] = ACTIONS(3479), + [aux_sym_preproc_def_token1] = ACTIONS(3479), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3481), + [aux_sym_preproc_if_token1] = ACTIONS(3479), + [aux_sym_preproc_if_token2] = ACTIONS(3479), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3479), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3479), + [sym_preproc_directive] = ACTIONS(3479), + [anon_sym_LPAREN2] = ACTIONS(3481), + [anon_sym_BANG] = ACTIONS(3481), + [anon_sym_TILDE] = ACTIONS(3481), + [anon_sym_DASH] = ACTIONS(3479), + [anon_sym_PLUS] = ACTIONS(3479), + [anon_sym_STAR] = ACTIONS(3481), + [anon_sym_AMP_AMP] = ACTIONS(3481), + [anon_sym_AMP] = ACTIONS(3479), + [anon_sym_SEMI] = ACTIONS(3481), + [anon_sym___extension__] = ACTIONS(3479), + [anon_sym_typedef] = ACTIONS(3479), + [anon_sym_extern] = ACTIONS(3479), + [anon_sym___attribute__] = ACTIONS(3479), + [anon_sym_COLON_COLON] = ACTIONS(3481), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3481), + [anon_sym___declspec] = ACTIONS(3479), + [anon_sym___based] = ACTIONS(3479), + [anon_sym___cdecl] = ACTIONS(3479), + [anon_sym___clrcall] = ACTIONS(3479), + [anon_sym___stdcall] = ACTIONS(3479), + [anon_sym___fastcall] = ACTIONS(3479), + [anon_sym___thiscall] = ACTIONS(3479), + [anon_sym___vectorcall] = ACTIONS(3479), + [anon_sym_LBRACE] = ACTIONS(3481), + [anon_sym_signed] = ACTIONS(3479), + [anon_sym_unsigned] = ACTIONS(3479), + [anon_sym_long] = ACTIONS(3479), + [anon_sym_short] = ACTIONS(3479), + [anon_sym_LBRACK] = ACTIONS(3479), + [anon_sym_static] = ACTIONS(3479), + [anon_sym_register] = ACTIONS(3479), + [anon_sym_inline] = ACTIONS(3479), + [anon_sym___inline] = ACTIONS(3479), + [anon_sym___inline__] = ACTIONS(3479), + [anon_sym___forceinline] = ACTIONS(3479), + [anon_sym_thread_local] = ACTIONS(3479), + [anon_sym___thread] = ACTIONS(3479), + [anon_sym_const] = ACTIONS(3479), + [anon_sym_constexpr] = ACTIONS(3479), + [anon_sym_volatile] = ACTIONS(3479), + [anon_sym_restrict] = ACTIONS(3479), + [anon_sym___restrict__] = ACTIONS(3479), + [anon_sym__Atomic] = ACTIONS(3479), + [anon_sym__Noreturn] = ACTIONS(3479), + [anon_sym_noreturn] = ACTIONS(3479), + [anon_sym_mutable] = ACTIONS(3479), + [anon_sym_constinit] = ACTIONS(3479), + [anon_sym_consteval] = ACTIONS(3479), + [sym_primitive_type] = ACTIONS(3479), + [anon_sym_enum] = ACTIONS(3479), + [anon_sym_class] = ACTIONS(3479), + [anon_sym_struct] = ACTIONS(3479), + [anon_sym_union] = ACTIONS(3479), + [anon_sym_if] = ACTIONS(3479), + [anon_sym_switch] = ACTIONS(3479), + [anon_sym_case] = ACTIONS(3479), + [anon_sym_default] = ACTIONS(3479), + [anon_sym_while] = ACTIONS(3479), + [anon_sym_do] = ACTIONS(3479), + [anon_sym_for] = ACTIONS(3479), + [anon_sym_return] = ACTIONS(3479), + [anon_sym_break] = ACTIONS(3479), + [anon_sym_continue] = ACTIONS(3479), + [anon_sym_goto] = ACTIONS(3479), + [anon_sym___try] = ACTIONS(3479), + [anon_sym___leave] = ACTIONS(3479), + [anon_sym_not] = ACTIONS(3479), + [anon_sym_compl] = ACTIONS(3479), + [anon_sym_DASH_DASH] = ACTIONS(3481), + [anon_sym_PLUS_PLUS] = ACTIONS(3481), + [anon_sym_sizeof] = ACTIONS(3479), + [anon_sym___alignof__] = ACTIONS(3479), + [anon_sym___alignof] = ACTIONS(3479), + [anon_sym__alignof] = ACTIONS(3479), + [anon_sym_alignof] = ACTIONS(3479), + [anon_sym__Alignof] = ACTIONS(3479), + [anon_sym_offsetof] = ACTIONS(3479), + [anon_sym__Generic] = ACTIONS(3479), + [anon_sym_asm] = ACTIONS(3479), + [anon_sym___asm__] = ACTIONS(3479), + [sym_number_literal] = ACTIONS(3481), + [anon_sym_L_SQUOTE] = ACTIONS(3481), + [anon_sym_u_SQUOTE] = ACTIONS(3481), + [anon_sym_U_SQUOTE] = ACTIONS(3481), + [anon_sym_u8_SQUOTE] = ACTIONS(3481), + [anon_sym_SQUOTE] = ACTIONS(3481), + [anon_sym_L_DQUOTE] = ACTIONS(3481), + [anon_sym_u_DQUOTE] = ACTIONS(3481), + [anon_sym_U_DQUOTE] = ACTIONS(3481), + [anon_sym_u8_DQUOTE] = ACTIONS(3481), + [anon_sym_DQUOTE] = ACTIONS(3481), + [sym_true] = ACTIONS(3479), + [sym_false] = ACTIONS(3479), + [anon_sym_NULL] = ACTIONS(3479), + [anon_sym_nullptr] = ACTIONS(3479), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3479), + [anon_sym_decltype] = ACTIONS(3479), + [anon_sym_virtual] = ACTIONS(3479), + [anon_sym_alignas] = ACTIONS(3479), + [anon_sym_explicit] = ACTIONS(3479), + [anon_sym_typename] = ACTIONS(3479), + [anon_sym_template] = ACTIONS(3479), + [anon_sym_operator] = ACTIONS(3479), + [anon_sym_try] = ACTIONS(3479), + [anon_sym_delete] = ACTIONS(3479), + [anon_sym_throw] = ACTIONS(3479), + [anon_sym_namespace] = ACTIONS(3479), + [anon_sym_using] = ACTIONS(3479), + [anon_sym_static_assert] = ACTIONS(3479), + [anon_sym_concept] = ACTIONS(3479), + [anon_sym_co_return] = ACTIONS(3479), + [anon_sym_co_yield] = ACTIONS(3479), + [anon_sym_R_DQUOTE] = ACTIONS(3481), + [anon_sym_LR_DQUOTE] = ACTIONS(3481), + [anon_sym_uR_DQUOTE] = ACTIONS(3481), + [anon_sym_UR_DQUOTE] = ACTIONS(3481), + [anon_sym_u8R_DQUOTE] = ACTIONS(3481), + [anon_sym_co_await] = ACTIONS(3479), + [anon_sym_new] = ACTIONS(3479), + [anon_sym_requires] = ACTIONS(3479), + [sym_this] = ACTIONS(3479), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3481), + [sym_semgrep_named_ellipsis] = ACTIONS(3481), }, [733] = { - [sym_identifier] = ACTIONS(3249), - [aux_sym_preproc_include_token1] = ACTIONS(3249), - [aux_sym_preproc_def_token1] = ACTIONS(3249), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3251), - [aux_sym_preproc_if_token1] = ACTIONS(3249), - [aux_sym_preproc_if_token2] = ACTIONS(3249), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3249), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3249), - [sym_preproc_directive] = ACTIONS(3249), - [anon_sym_LPAREN2] = ACTIONS(3251), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_TILDE] = ACTIONS(3251), - [anon_sym_DASH] = ACTIONS(3249), - [anon_sym_PLUS] = ACTIONS(3249), - [anon_sym_STAR] = ACTIONS(3251), - [anon_sym_AMP_AMP] = ACTIONS(3251), - [anon_sym_AMP] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym___extension__] = ACTIONS(3249), - [anon_sym_typedef] = ACTIONS(3249), - [anon_sym_extern] = ACTIONS(3249), - [anon_sym___attribute__] = ACTIONS(3249), - [anon_sym_COLON_COLON] = ACTIONS(3251), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3251), - [anon_sym___declspec] = ACTIONS(3249), - [anon_sym___based] = ACTIONS(3249), - [anon_sym___cdecl] = ACTIONS(3249), - [anon_sym___clrcall] = ACTIONS(3249), - [anon_sym___stdcall] = ACTIONS(3249), - [anon_sym___fastcall] = ACTIONS(3249), - [anon_sym___thiscall] = ACTIONS(3249), - [anon_sym___vectorcall] = ACTIONS(3249), - [anon_sym_LBRACE] = ACTIONS(3251), - [anon_sym_signed] = ACTIONS(3249), - [anon_sym_unsigned] = ACTIONS(3249), - [anon_sym_long] = ACTIONS(3249), - [anon_sym_short] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_static] = ACTIONS(3249), - [anon_sym_register] = ACTIONS(3249), - [anon_sym_inline] = ACTIONS(3249), - [anon_sym___inline] = ACTIONS(3249), - [anon_sym___inline__] = ACTIONS(3249), - [anon_sym___forceinline] = ACTIONS(3249), - [anon_sym_thread_local] = ACTIONS(3249), - [anon_sym___thread] = ACTIONS(3249), - [anon_sym_const] = ACTIONS(3249), - [anon_sym_constexpr] = ACTIONS(3249), - [anon_sym_volatile] = ACTIONS(3249), - [anon_sym_restrict] = ACTIONS(3249), - [anon_sym___restrict__] = ACTIONS(3249), - [anon_sym__Atomic] = ACTIONS(3249), - [anon_sym__Noreturn] = ACTIONS(3249), - [anon_sym_noreturn] = ACTIONS(3249), - [anon_sym_mutable] = ACTIONS(3249), - [anon_sym_constinit] = ACTIONS(3249), - [anon_sym_consteval] = ACTIONS(3249), - [sym_primitive_type] = ACTIONS(3249), - [anon_sym_enum] = ACTIONS(3249), - [anon_sym_class] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3249), - [anon_sym_if] = ACTIONS(3249), - [anon_sym_switch] = ACTIONS(3249), - [anon_sym_case] = ACTIONS(3249), - [anon_sym_default] = ACTIONS(3249), - [anon_sym_while] = ACTIONS(3249), - [anon_sym_do] = ACTIONS(3249), - [anon_sym_for] = ACTIONS(3249), - [anon_sym_return] = ACTIONS(3249), - [anon_sym_break] = ACTIONS(3249), - [anon_sym_continue] = ACTIONS(3249), - [anon_sym_goto] = ACTIONS(3249), - [anon_sym___try] = ACTIONS(3249), - [anon_sym___leave] = ACTIONS(3249), - [anon_sym_not] = ACTIONS(3249), - [anon_sym_compl] = ACTIONS(3249), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_sizeof] = ACTIONS(3249), - [anon_sym___alignof__] = ACTIONS(3249), - [anon_sym___alignof] = ACTIONS(3249), - [anon_sym__alignof] = ACTIONS(3249), - [anon_sym_alignof] = ACTIONS(3249), - [anon_sym__Alignof] = ACTIONS(3249), - [anon_sym_offsetof] = ACTIONS(3249), - [anon_sym__Generic] = ACTIONS(3249), - [anon_sym_asm] = ACTIONS(3249), - [anon_sym___asm__] = ACTIONS(3249), - [sym_number_literal] = ACTIONS(3251), - [anon_sym_L_SQUOTE] = ACTIONS(3251), - [anon_sym_u_SQUOTE] = ACTIONS(3251), - [anon_sym_U_SQUOTE] = ACTIONS(3251), - [anon_sym_u8_SQUOTE] = ACTIONS(3251), - [anon_sym_SQUOTE] = ACTIONS(3251), - [anon_sym_L_DQUOTE] = ACTIONS(3251), - [anon_sym_u_DQUOTE] = ACTIONS(3251), - [anon_sym_U_DQUOTE] = ACTIONS(3251), - [anon_sym_u8_DQUOTE] = ACTIONS(3251), - [anon_sym_DQUOTE] = ACTIONS(3251), - [sym_true] = ACTIONS(3249), - [sym_false] = ACTIONS(3249), - [anon_sym_NULL] = ACTIONS(3249), - [anon_sym_nullptr] = ACTIONS(3249), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3249), - [anon_sym_decltype] = ACTIONS(3249), - [anon_sym_virtual] = ACTIONS(3249), - [anon_sym_alignas] = ACTIONS(3249), - [anon_sym_explicit] = ACTIONS(3249), - [anon_sym_typename] = ACTIONS(3249), - [anon_sym_template] = ACTIONS(3249), - [anon_sym_operator] = ACTIONS(3249), - [anon_sym_try] = ACTIONS(3249), - [anon_sym_delete] = ACTIONS(3249), - [anon_sym_throw] = ACTIONS(3249), - [anon_sym_namespace] = ACTIONS(3249), - [anon_sym_using] = ACTIONS(3249), - [anon_sym_static_assert] = ACTIONS(3249), - [anon_sym_concept] = ACTIONS(3249), - [anon_sym_co_return] = ACTIONS(3249), - [anon_sym_co_yield] = ACTIONS(3249), - [anon_sym_R_DQUOTE] = ACTIONS(3251), - [anon_sym_LR_DQUOTE] = ACTIONS(3251), - [anon_sym_uR_DQUOTE] = ACTIONS(3251), - [anon_sym_UR_DQUOTE] = ACTIONS(3251), - [anon_sym_u8R_DQUOTE] = ACTIONS(3251), - [anon_sym_co_await] = ACTIONS(3249), - [anon_sym_new] = ACTIONS(3249), - [anon_sym_requires] = ACTIONS(3249), - [sym_this] = ACTIONS(3249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3251), - [sym_semgrep_named_ellipsis] = ACTIONS(3251), + [sym_identifier] = ACTIONS(3483), + [aux_sym_preproc_include_token1] = ACTIONS(3483), + [aux_sym_preproc_def_token1] = ACTIONS(3483), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3485), + [aux_sym_preproc_if_token1] = ACTIONS(3483), + [aux_sym_preproc_if_token2] = ACTIONS(3483), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3483), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3483), + [sym_preproc_directive] = ACTIONS(3483), + [anon_sym_LPAREN2] = ACTIONS(3485), + [anon_sym_BANG] = ACTIONS(3485), + [anon_sym_TILDE] = ACTIONS(3485), + [anon_sym_DASH] = ACTIONS(3483), + [anon_sym_PLUS] = ACTIONS(3483), + [anon_sym_STAR] = ACTIONS(3485), + [anon_sym_AMP_AMP] = ACTIONS(3485), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_SEMI] = ACTIONS(3485), + [anon_sym___extension__] = ACTIONS(3483), + [anon_sym_typedef] = ACTIONS(3483), + [anon_sym_extern] = ACTIONS(3483), + [anon_sym___attribute__] = ACTIONS(3483), + [anon_sym_COLON_COLON] = ACTIONS(3485), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3485), + [anon_sym___declspec] = ACTIONS(3483), + [anon_sym___based] = ACTIONS(3483), + [anon_sym___cdecl] = ACTIONS(3483), + [anon_sym___clrcall] = ACTIONS(3483), + [anon_sym___stdcall] = ACTIONS(3483), + [anon_sym___fastcall] = ACTIONS(3483), + [anon_sym___thiscall] = ACTIONS(3483), + [anon_sym___vectorcall] = ACTIONS(3483), + [anon_sym_LBRACE] = ACTIONS(3485), + [anon_sym_signed] = ACTIONS(3483), + [anon_sym_unsigned] = ACTIONS(3483), + [anon_sym_long] = ACTIONS(3483), + [anon_sym_short] = ACTIONS(3483), + [anon_sym_LBRACK] = ACTIONS(3483), + [anon_sym_static] = ACTIONS(3483), + [anon_sym_register] = ACTIONS(3483), + [anon_sym_inline] = ACTIONS(3483), + [anon_sym___inline] = ACTIONS(3483), + [anon_sym___inline__] = ACTIONS(3483), + [anon_sym___forceinline] = ACTIONS(3483), + [anon_sym_thread_local] = ACTIONS(3483), + [anon_sym___thread] = ACTIONS(3483), + [anon_sym_const] = ACTIONS(3483), + [anon_sym_constexpr] = ACTIONS(3483), + [anon_sym_volatile] = ACTIONS(3483), + [anon_sym_restrict] = ACTIONS(3483), + [anon_sym___restrict__] = ACTIONS(3483), + [anon_sym__Atomic] = ACTIONS(3483), + [anon_sym__Noreturn] = ACTIONS(3483), + [anon_sym_noreturn] = ACTIONS(3483), + [anon_sym_mutable] = ACTIONS(3483), + [anon_sym_constinit] = ACTIONS(3483), + [anon_sym_consteval] = ACTIONS(3483), + [sym_primitive_type] = ACTIONS(3483), + [anon_sym_enum] = ACTIONS(3483), + [anon_sym_class] = ACTIONS(3483), + [anon_sym_struct] = ACTIONS(3483), + [anon_sym_union] = ACTIONS(3483), + [anon_sym_if] = ACTIONS(3483), + [anon_sym_switch] = ACTIONS(3483), + [anon_sym_case] = ACTIONS(3483), + [anon_sym_default] = ACTIONS(3483), + [anon_sym_while] = ACTIONS(3483), + [anon_sym_do] = ACTIONS(3483), + [anon_sym_for] = ACTIONS(3483), + [anon_sym_return] = ACTIONS(3483), + [anon_sym_break] = ACTIONS(3483), + [anon_sym_continue] = ACTIONS(3483), + [anon_sym_goto] = ACTIONS(3483), + [anon_sym___try] = ACTIONS(3483), + [anon_sym___leave] = ACTIONS(3483), + [anon_sym_not] = ACTIONS(3483), + [anon_sym_compl] = ACTIONS(3483), + [anon_sym_DASH_DASH] = ACTIONS(3485), + [anon_sym_PLUS_PLUS] = ACTIONS(3485), + [anon_sym_sizeof] = ACTIONS(3483), + [anon_sym___alignof__] = ACTIONS(3483), + [anon_sym___alignof] = ACTIONS(3483), + [anon_sym__alignof] = ACTIONS(3483), + [anon_sym_alignof] = ACTIONS(3483), + [anon_sym__Alignof] = ACTIONS(3483), + [anon_sym_offsetof] = ACTIONS(3483), + [anon_sym__Generic] = ACTIONS(3483), + [anon_sym_asm] = ACTIONS(3483), + [anon_sym___asm__] = ACTIONS(3483), + [sym_number_literal] = ACTIONS(3485), + [anon_sym_L_SQUOTE] = ACTIONS(3485), + [anon_sym_u_SQUOTE] = ACTIONS(3485), + [anon_sym_U_SQUOTE] = ACTIONS(3485), + [anon_sym_u8_SQUOTE] = ACTIONS(3485), + [anon_sym_SQUOTE] = ACTIONS(3485), + [anon_sym_L_DQUOTE] = ACTIONS(3485), + [anon_sym_u_DQUOTE] = ACTIONS(3485), + [anon_sym_U_DQUOTE] = ACTIONS(3485), + [anon_sym_u8_DQUOTE] = ACTIONS(3485), + [anon_sym_DQUOTE] = ACTIONS(3485), + [sym_true] = ACTIONS(3483), + [sym_false] = ACTIONS(3483), + [anon_sym_NULL] = ACTIONS(3483), + [anon_sym_nullptr] = ACTIONS(3483), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3483), + [anon_sym_decltype] = ACTIONS(3483), + [anon_sym_virtual] = ACTIONS(3483), + [anon_sym_alignas] = ACTIONS(3483), + [anon_sym_explicit] = ACTIONS(3483), + [anon_sym_typename] = ACTIONS(3483), + [anon_sym_template] = ACTIONS(3483), + [anon_sym_operator] = ACTIONS(3483), + [anon_sym_try] = ACTIONS(3483), + [anon_sym_delete] = ACTIONS(3483), + [anon_sym_throw] = ACTIONS(3483), + [anon_sym_namespace] = ACTIONS(3483), + [anon_sym_using] = ACTIONS(3483), + [anon_sym_static_assert] = ACTIONS(3483), + [anon_sym_concept] = ACTIONS(3483), + [anon_sym_co_return] = ACTIONS(3483), + [anon_sym_co_yield] = ACTIONS(3483), + [anon_sym_R_DQUOTE] = ACTIONS(3485), + [anon_sym_LR_DQUOTE] = ACTIONS(3485), + [anon_sym_uR_DQUOTE] = ACTIONS(3485), + [anon_sym_UR_DQUOTE] = ACTIONS(3485), + [anon_sym_u8R_DQUOTE] = ACTIONS(3485), + [anon_sym_co_await] = ACTIONS(3483), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_requires] = ACTIONS(3483), + [sym_this] = ACTIONS(3483), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3485), + [sym_semgrep_named_ellipsis] = ACTIONS(3485), }, [734] = { - [sym_identifier] = ACTIONS(3477), - [aux_sym_preproc_include_token1] = ACTIONS(3477), - [aux_sym_preproc_def_token1] = ACTIONS(3477), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3479), - [aux_sym_preproc_if_token1] = ACTIONS(3477), - [aux_sym_preproc_if_token2] = ACTIONS(3477), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3477), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3477), - [sym_preproc_directive] = ACTIONS(3477), - [anon_sym_LPAREN2] = ACTIONS(3479), - [anon_sym_BANG] = ACTIONS(3479), - [anon_sym_TILDE] = ACTIONS(3479), - [anon_sym_DASH] = ACTIONS(3477), - [anon_sym_PLUS] = ACTIONS(3477), - [anon_sym_STAR] = ACTIONS(3479), - [anon_sym_AMP_AMP] = ACTIONS(3479), - [anon_sym_AMP] = ACTIONS(3477), - [anon_sym_SEMI] = ACTIONS(3479), - [anon_sym___extension__] = ACTIONS(3477), - [anon_sym_typedef] = ACTIONS(3477), - [anon_sym_extern] = ACTIONS(3477), - [anon_sym___attribute__] = ACTIONS(3477), - [anon_sym_COLON_COLON] = ACTIONS(3479), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3479), - [anon_sym___declspec] = ACTIONS(3477), - [anon_sym___based] = ACTIONS(3477), - [anon_sym___cdecl] = ACTIONS(3477), - [anon_sym___clrcall] = ACTIONS(3477), - [anon_sym___stdcall] = ACTIONS(3477), - [anon_sym___fastcall] = ACTIONS(3477), - [anon_sym___thiscall] = ACTIONS(3477), - [anon_sym___vectorcall] = ACTIONS(3477), - [anon_sym_LBRACE] = ACTIONS(3479), - [anon_sym_signed] = ACTIONS(3477), - [anon_sym_unsigned] = ACTIONS(3477), - [anon_sym_long] = ACTIONS(3477), - [anon_sym_short] = ACTIONS(3477), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_static] = ACTIONS(3477), - [anon_sym_register] = ACTIONS(3477), - [anon_sym_inline] = ACTIONS(3477), - [anon_sym___inline] = ACTIONS(3477), - [anon_sym___inline__] = ACTIONS(3477), - [anon_sym___forceinline] = ACTIONS(3477), - [anon_sym_thread_local] = ACTIONS(3477), - [anon_sym___thread] = ACTIONS(3477), - [anon_sym_const] = ACTIONS(3477), - [anon_sym_constexpr] = ACTIONS(3477), - [anon_sym_volatile] = ACTIONS(3477), - [anon_sym_restrict] = ACTIONS(3477), - [anon_sym___restrict__] = ACTIONS(3477), - [anon_sym__Atomic] = ACTIONS(3477), - [anon_sym__Noreturn] = ACTIONS(3477), - [anon_sym_noreturn] = ACTIONS(3477), - [anon_sym_mutable] = ACTIONS(3477), - [anon_sym_constinit] = ACTIONS(3477), - [anon_sym_consteval] = ACTIONS(3477), - [sym_primitive_type] = ACTIONS(3477), - [anon_sym_enum] = ACTIONS(3477), - [anon_sym_class] = ACTIONS(3477), - [anon_sym_struct] = ACTIONS(3477), - [anon_sym_union] = ACTIONS(3477), - [anon_sym_if] = ACTIONS(3477), - [anon_sym_switch] = ACTIONS(3477), - [anon_sym_case] = ACTIONS(3477), - [anon_sym_default] = ACTIONS(3477), - [anon_sym_while] = ACTIONS(3477), - [anon_sym_do] = ACTIONS(3477), - [anon_sym_for] = ACTIONS(3477), - [anon_sym_return] = ACTIONS(3477), - [anon_sym_break] = ACTIONS(3477), - [anon_sym_continue] = ACTIONS(3477), - [anon_sym_goto] = ACTIONS(3477), - [anon_sym___try] = ACTIONS(3477), - [anon_sym___leave] = ACTIONS(3477), - [anon_sym_not] = ACTIONS(3477), - [anon_sym_compl] = ACTIONS(3477), - [anon_sym_DASH_DASH] = ACTIONS(3479), - [anon_sym_PLUS_PLUS] = ACTIONS(3479), - [anon_sym_sizeof] = ACTIONS(3477), - [anon_sym___alignof__] = ACTIONS(3477), - [anon_sym___alignof] = ACTIONS(3477), - [anon_sym__alignof] = ACTIONS(3477), - [anon_sym_alignof] = ACTIONS(3477), - [anon_sym__Alignof] = ACTIONS(3477), - [anon_sym_offsetof] = ACTIONS(3477), - [anon_sym__Generic] = ACTIONS(3477), - [anon_sym_asm] = ACTIONS(3477), - [anon_sym___asm__] = ACTIONS(3477), - [sym_number_literal] = ACTIONS(3479), - [anon_sym_L_SQUOTE] = ACTIONS(3479), - [anon_sym_u_SQUOTE] = ACTIONS(3479), - [anon_sym_U_SQUOTE] = ACTIONS(3479), - [anon_sym_u8_SQUOTE] = ACTIONS(3479), - [anon_sym_SQUOTE] = ACTIONS(3479), - [anon_sym_L_DQUOTE] = ACTIONS(3479), - [anon_sym_u_DQUOTE] = ACTIONS(3479), - [anon_sym_U_DQUOTE] = ACTIONS(3479), - [anon_sym_u8_DQUOTE] = ACTIONS(3479), - [anon_sym_DQUOTE] = ACTIONS(3479), - [sym_true] = ACTIONS(3477), - [sym_false] = ACTIONS(3477), - [anon_sym_NULL] = ACTIONS(3477), - [anon_sym_nullptr] = ACTIONS(3477), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3477), - [anon_sym_decltype] = ACTIONS(3477), - [anon_sym_virtual] = ACTIONS(3477), - [anon_sym_alignas] = ACTIONS(3477), - [anon_sym_explicit] = ACTIONS(3477), - [anon_sym_typename] = ACTIONS(3477), - [anon_sym_template] = ACTIONS(3477), - [anon_sym_operator] = ACTIONS(3477), - [anon_sym_try] = ACTIONS(3477), - [anon_sym_delete] = ACTIONS(3477), - [anon_sym_throw] = ACTIONS(3477), - [anon_sym_namespace] = ACTIONS(3477), - [anon_sym_using] = ACTIONS(3477), - [anon_sym_static_assert] = ACTIONS(3477), - [anon_sym_concept] = ACTIONS(3477), - [anon_sym_co_return] = ACTIONS(3477), - [anon_sym_co_yield] = ACTIONS(3477), - [anon_sym_R_DQUOTE] = ACTIONS(3479), - [anon_sym_LR_DQUOTE] = ACTIONS(3479), - [anon_sym_uR_DQUOTE] = ACTIONS(3479), - [anon_sym_UR_DQUOTE] = ACTIONS(3479), - [anon_sym_u8R_DQUOTE] = ACTIONS(3479), - [anon_sym_co_await] = ACTIONS(3477), - [anon_sym_new] = ACTIONS(3477), - [anon_sym_requires] = ACTIONS(3477), - [sym_this] = ACTIONS(3477), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3479), - [sym_semgrep_named_ellipsis] = ACTIONS(3479), - }, - [735] = { - [sym_identifier] = ACTIONS(3257), - [aux_sym_preproc_include_token1] = ACTIONS(3257), - [aux_sym_preproc_def_token1] = ACTIONS(3257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3259), - [aux_sym_preproc_if_token1] = ACTIONS(3257), - [aux_sym_preproc_if_token2] = ACTIONS(3257), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3257), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3257), - [sym_preproc_directive] = ACTIONS(3257), - [anon_sym_LPAREN2] = ACTIONS(3259), - [anon_sym_BANG] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3257), - [anon_sym_PLUS] = ACTIONS(3257), - [anon_sym_STAR] = ACTIONS(3259), - [anon_sym_AMP_AMP] = ACTIONS(3259), - [anon_sym_AMP] = ACTIONS(3257), - [anon_sym_SEMI] = ACTIONS(3259), - [anon_sym___extension__] = ACTIONS(3257), - [anon_sym_typedef] = ACTIONS(3257), - [anon_sym_extern] = ACTIONS(3257), - [anon_sym___attribute__] = ACTIONS(3257), - [anon_sym_COLON_COLON] = ACTIONS(3259), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3259), - [anon_sym___declspec] = ACTIONS(3257), - [anon_sym___based] = ACTIONS(3257), - [anon_sym___cdecl] = ACTIONS(3257), - [anon_sym___clrcall] = ACTIONS(3257), - [anon_sym___stdcall] = ACTIONS(3257), - [anon_sym___fastcall] = ACTIONS(3257), - [anon_sym___thiscall] = ACTIONS(3257), - [anon_sym___vectorcall] = ACTIONS(3257), - [anon_sym_LBRACE] = ACTIONS(3259), - [anon_sym_signed] = ACTIONS(3257), - [anon_sym_unsigned] = ACTIONS(3257), - [anon_sym_long] = ACTIONS(3257), - [anon_sym_short] = ACTIONS(3257), - [anon_sym_LBRACK] = ACTIONS(3257), - [anon_sym_static] = ACTIONS(3257), - [anon_sym_register] = ACTIONS(3257), - [anon_sym_inline] = ACTIONS(3257), - [anon_sym___inline] = ACTIONS(3257), - [anon_sym___inline__] = ACTIONS(3257), - [anon_sym___forceinline] = ACTIONS(3257), - [anon_sym_thread_local] = ACTIONS(3257), - [anon_sym___thread] = ACTIONS(3257), - [anon_sym_const] = ACTIONS(3257), - [anon_sym_constexpr] = ACTIONS(3257), - [anon_sym_volatile] = ACTIONS(3257), - [anon_sym_restrict] = ACTIONS(3257), - [anon_sym___restrict__] = ACTIONS(3257), - [anon_sym__Atomic] = ACTIONS(3257), - [anon_sym__Noreturn] = ACTIONS(3257), - [anon_sym_noreturn] = ACTIONS(3257), - [anon_sym_mutable] = ACTIONS(3257), - [anon_sym_constinit] = ACTIONS(3257), - [anon_sym_consteval] = ACTIONS(3257), - [sym_primitive_type] = ACTIONS(3257), - [anon_sym_enum] = ACTIONS(3257), - [anon_sym_class] = ACTIONS(3257), - [anon_sym_struct] = ACTIONS(3257), - [anon_sym_union] = ACTIONS(3257), - [anon_sym_if] = ACTIONS(3257), - [anon_sym_switch] = ACTIONS(3257), - [anon_sym_case] = ACTIONS(3257), - [anon_sym_default] = ACTIONS(3257), - [anon_sym_while] = ACTIONS(3257), - [anon_sym_do] = ACTIONS(3257), - [anon_sym_for] = ACTIONS(3257), - [anon_sym_return] = ACTIONS(3257), - [anon_sym_break] = ACTIONS(3257), - [anon_sym_continue] = ACTIONS(3257), - [anon_sym_goto] = ACTIONS(3257), - [anon_sym___try] = ACTIONS(3257), - [anon_sym___leave] = ACTIONS(3257), - [anon_sym_not] = ACTIONS(3257), - [anon_sym_compl] = ACTIONS(3257), - [anon_sym_DASH_DASH] = ACTIONS(3259), - [anon_sym_PLUS_PLUS] = ACTIONS(3259), - [anon_sym_sizeof] = ACTIONS(3257), - [anon_sym___alignof__] = ACTIONS(3257), - [anon_sym___alignof] = ACTIONS(3257), - [anon_sym__alignof] = ACTIONS(3257), - [anon_sym_alignof] = ACTIONS(3257), - [anon_sym__Alignof] = ACTIONS(3257), - [anon_sym_offsetof] = ACTIONS(3257), - [anon_sym__Generic] = ACTIONS(3257), - [anon_sym_asm] = ACTIONS(3257), - [anon_sym___asm__] = ACTIONS(3257), - [sym_number_literal] = ACTIONS(3259), - [anon_sym_L_SQUOTE] = ACTIONS(3259), - [anon_sym_u_SQUOTE] = ACTIONS(3259), - [anon_sym_U_SQUOTE] = ACTIONS(3259), - [anon_sym_u8_SQUOTE] = ACTIONS(3259), - [anon_sym_SQUOTE] = ACTIONS(3259), - [anon_sym_L_DQUOTE] = ACTIONS(3259), - [anon_sym_u_DQUOTE] = ACTIONS(3259), - [anon_sym_U_DQUOTE] = ACTIONS(3259), - [anon_sym_u8_DQUOTE] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(3259), - [sym_true] = ACTIONS(3257), - [sym_false] = ACTIONS(3257), - [anon_sym_NULL] = ACTIONS(3257), - [anon_sym_nullptr] = ACTIONS(3257), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3257), - [anon_sym_decltype] = ACTIONS(3257), - [anon_sym_virtual] = ACTIONS(3257), - [anon_sym_alignas] = ACTIONS(3257), - [anon_sym_explicit] = ACTIONS(3257), - [anon_sym_typename] = ACTIONS(3257), - [anon_sym_template] = ACTIONS(3257), - [anon_sym_operator] = ACTIONS(3257), - [anon_sym_try] = ACTIONS(3257), - [anon_sym_delete] = ACTIONS(3257), - [anon_sym_throw] = ACTIONS(3257), - [anon_sym_namespace] = ACTIONS(3257), - [anon_sym_using] = ACTIONS(3257), - [anon_sym_static_assert] = ACTIONS(3257), - [anon_sym_concept] = ACTIONS(3257), - [anon_sym_co_return] = ACTIONS(3257), - [anon_sym_co_yield] = ACTIONS(3257), - [anon_sym_R_DQUOTE] = ACTIONS(3259), - [anon_sym_LR_DQUOTE] = ACTIONS(3259), - [anon_sym_uR_DQUOTE] = ACTIONS(3259), - [anon_sym_UR_DQUOTE] = ACTIONS(3259), - [anon_sym_u8R_DQUOTE] = ACTIONS(3259), - [anon_sym_co_await] = ACTIONS(3257), - [anon_sym_new] = ACTIONS(3257), - [anon_sym_requires] = ACTIONS(3257), - [sym_this] = ACTIONS(3257), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3259), - [sym_semgrep_named_ellipsis] = ACTIONS(3259), - }, - [736] = { - [sym_identifier] = ACTIONS(3346), - [aux_sym_preproc_include_token1] = ACTIONS(3346), - [aux_sym_preproc_def_token1] = ACTIONS(3346), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3348), - [aux_sym_preproc_if_token1] = ACTIONS(3346), - [aux_sym_preproc_if_token2] = ACTIONS(3346), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3346), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3346), - [sym_preproc_directive] = ACTIONS(3346), - [anon_sym_LPAREN2] = ACTIONS(3348), - [anon_sym_BANG] = ACTIONS(3348), - [anon_sym_TILDE] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_STAR] = ACTIONS(3348), - [anon_sym_AMP_AMP] = ACTIONS(3348), - [anon_sym_AMP] = ACTIONS(3346), - [anon_sym_SEMI] = ACTIONS(3348), - [anon_sym___extension__] = ACTIONS(3346), - [anon_sym_typedef] = ACTIONS(3346), - [anon_sym_extern] = ACTIONS(3346), - [anon_sym___attribute__] = ACTIONS(3346), - [anon_sym_COLON_COLON] = ACTIONS(3348), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3348), - [anon_sym___declspec] = ACTIONS(3346), - [anon_sym___based] = ACTIONS(3346), - [anon_sym___cdecl] = ACTIONS(3346), - [anon_sym___clrcall] = ACTIONS(3346), - [anon_sym___stdcall] = ACTIONS(3346), - [anon_sym___fastcall] = ACTIONS(3346), - [anon_sym___thiscall] = ACTIONS(3346), - [anon_sym___vectorcall] = ACTIONS(3346), - [anon_sym_LBRACE] = ACTIONS(3348), - [anon_sym_signed] = ACTIONS(3346), - [anon_sym_unsigned] = ACTIONS(3346), - [anon_sym_long] = ACTIONS(3346), - [anon_sym_short] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_static] = ACTIONS(3346), - [anon_sym_register] = ACTIONS(3346), - [anon_sym_inline] = ACTIONS(3346), - [anon_sym___inline] = ACTIONS(3346), - [anon_sym___inline__] = ACTIONS(3346), - [anon_sym___forceinline] = ACTIONS(3346), - [anon_sym_thread_local] = ACTIONS(3346), - [anon_sym___thread] = ACTIONS(3346), - [anon_sym_const] = ACTIONS(3346), - [anon_sym_constexpr] = ACTIONS(3346), - [anon_sym_volatile] = ACTIONS(3346), - [anon_sym_restrict] = ACTIONS(3346), - [anon_sym___restrict__] = ACTIONS(3346), - [anon_sym__Atomic] = ACTIONS(3346), - [anon_sym__Noreturn] = ACTIONS(3346), - [anon_sym_noreturn] = ACTIONS(3346), - [anon_sym_mutable] = ACTIONS(3346), - [anon_sym_constinit] = ACTIONS(3346), - [anon_sym_consteval] = ACTIONS(3346), - [sym_primitive_type] = ACTIONS(3346), - [anon_sym_enum] = ACTIONS(3346), - [anon_sym_class] = ACTIONS(3346), - [anon_sym_struct] = ACTIONS(3346), - [anon_sym_union] = ACTIONS(3346), - [anon_sym_if] = ACTIONS(3346), - [anon_sym_switch] = ACTIONS(3346), - [anon_sym_case] = ACTIONS(3346), - [anon_sym_default] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3346), - [anon_sym_do] = ACTIONS(3346), - [anon_sym_for] = ACTIONS(3346), - [anon_sym_return] = ACTIONS(3346), - [anon_sym_break] = ACTIONS(3346), - [anon_sym_continue] = ACTIONS(3346), - [anon_sym_goto] = ACTIONS(3346), - [anon_sym___try] = ACTIONS(3346), - [anon_sym___leave] = ACTIONS(3346), - [anon_sym_not] = ACTIONS(3346), - [anon_sym_compl] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3346), - [anon_sym___alignof__] = ACTIONS(3346), - [anon_sym___alignof] = ACTIONS(3346), - [anon_sym__alignof] = ACTIONS(3346), - [anon_sym_alignof] = ACTIONS(3346), - [anon_sym__Alignof] = ACTIONS(3346), - [anon_sym_offsetof] = ACTIONS(3346), - [anon_sym__Generic] = ACTIONS(3346), - [anon_sym_asm] = ACTIONS(3346), - [anon_sym___asm__] = ACTIONS(3346), - [sym_number_literal] = ACTIONS(3348), - [anon_sym_L_SQUOTE] = ACTIONS(3348), - [anon_sym_u_SQUOTE] = ACTIONS(3348), - [anon_sym_U_SQUOTE] = ACTIONS(3348), - [anon_sym_u8_SQUOTE] = ACTIONS(3348), - [anon_sym_SQUOTE] = ACTIONS(3348), - [anon_sym_L_DQUOTE] = ACTIONS(3348), - [anon_sym_u_DQUOTE] = ACTIONS(3348), - [anon_sym_U_DQUOTE] = ACTIONS(3348), - [anon_sym_u8_DQUOTE] = ACTIONS(3348), - [anon_sym_DQUOTE] = ACTIONS(3348), - [sym_true] = ACTIONS(3346), - [sym_false] = ACTIONS(3346), - [anon_sym_NULL] = ACTIONS(3346), - [anon_sym_nullptr] = ACTIONS(3346), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3346), - [anon_sym_decltype] = ACTIONS(3346), - [anon_sym_virtual] = ACTIONS(3346), - [anon_sym_alignas] = ACTIONS(3346), - [anon_sym_explicit] = ACTIONS(3346), - [anon_sym_typename] = ACTIONS(3346), - [anon_sym_template] = ACTIONS(3346), - [anon_sym_operator] = ACTIONS(3346), - [anon_sym_try] = ACTIONS(3346), - [anon_sym_delete] = ACTIONS(3346), - [anon_sym_throw] = ACTIONS(3346), - [anon_sym_namespace] = ACTIONS(3346), - [anon_sym_using] = ACTIONS(3346), - [anon_sym_static_assert] = ACTIONS(3346), - [anon_sym_concept] = ACTIONS(3346), - [anon_sym_co_return] = ACTIONS(3346), - [anon_sym_co_yield] = ACTIONS(3346), - [anon_sym_R_DQUOTE] = ACTIONS(3348), - [anon_sym_LR_DQUOTE] = ACTIONS(3348), - [anon_sym_uR_DQUOTE] = ACTIONS(3348), - [anon_sym_UR_DQUOTE] = ACTIONS(3348), - [anon_sym_u8R_DQUOTE] = ACTIONS(3348), - [anon_sym_co_await] = ACTIONS(3346), - [anon_sym_new] = ACTIONS(3346), - [anon_sym_requires] = ACTIONS(3346), - [sym_this] = ACTIONS(3346), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3348), - [sym_semgrep_named_ellipsis] = ACTIONS(3348), - }, - [737] = { [sym_identifier] = ACTIONS(3487), [aux_sym_preproc_include_token1] = ACTIONS(3487), [aux_sym_preproc_def_token1] = ACTIONS(3487), [anon_sym_DOT_DOT_DOT] = ACTIONS(3489), [aux_sym_preproc_if_token1] = ACTIONS(3487), + [aux_sym_preproc_if_token2] = ACTIONS(3487), [aux_sym_preproc_ifdef_token1] = ACTIONS(3487), [aux_sym_preproc_ifdef_token2] = ACTIONS(3487), [sym_preproc_directive] = ACTIONS(3487), @@ -166985,7 +156743,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(3487), [anon_sym___vectorcall] = ACTIONS(3487), [anon_sym_LBRACE] = ACTIONS(3489), - [anon_sym_RBRACE] = ACTIONS(3489), [anon_sym_signed] = ACTIONS(3487), [anon_sym_unsigned] = ACTIONS(3487), [anon_sym_long] = ACTIONS(3487), @@ -167087,631 +156844,1846 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3489), [sym_semgrep_named_ellipsis] = ACTIONS(3489), }, - [738] = { - [sym_identifier] = ACTIONS(3491), - [aux_sym_preproc_include_token1] = ACTIONS(3491), - [aux_sym_preproc_def_token1] = ACTIONS(3491), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3493), - [aux_sym_preproc_if_token1] = ACTIONS(3491), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3491), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3491), - [sym_preproc_directive] = ACTIONS(3491), - [anon_sym_LPAREN2] = ACTIONS(3493), - [anon_sym_BANG] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(3493), - [anon_sym_DASH] = ACTIONS(3491), - [anon_sym_PLUS] = ACTIONS(3491), - [anon_sym_STAR] = ACTIONS(3493), - [anon_sym_AMP_AMP] = ACTIONS(3493), - [anon_sym_AMP] = ACTIONS(3491), - [anon_sym_SEMI] = ACTIONS(3493), - [anon_sym___extension__] = ACTIONS(3491), - [anon_sym_typedef] = ACTIONS(3491), - [anon_sym_extern] = ACTIONS(3491), - [anon_sym___attribute__] = ACTIONS(3491), - [anon_sym_COLON_COLON] = ACTIONS(3493), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3493), - [anon_sym___declspec] = ACTIONS(3491), - [anon_sym___based] = ACTIONS(3491), - [anon_sym___cdecl] = ACTIONS(3491), - [anon_sym___clrcall] = ACTIONS(3491), - [anon_sym___stdcall] = ACTIONS(3491), - [anon_sym___fastcall] = ACTIONS(3491), - [anon_sym___thiscall] = ACTIONS(3491), - [anon_sym___vectorcall] = ACTIONS(3491), - [anon_sym_LBRACE] = ACTIONS(3493), - [anon_sym_RBRACE] = ACTIONS(3493), - [anon_sym_signed] = ACTIONS(3491), - [anon_sym_unsigned] = ACTIONS(3491), - [anon_sym_long] = ACTIONS(3491), - [anon_sym_short] = ACTIONS(3491), - [anon_sym_LBRACK] = ACTIONS(3491), - [anon_sym_static] = ACTIONS(3491), - [anon_sym_register] = ACTIONS(3491), - [anon_sym_inline] = ACTIONS(3491), - [anon_sym___inline] = ACTIONS(3491), - [anon_sym___inline__] = ACTIONS(3491), - [anon_sym___forceinline] = ACTIONS(3491), - [anon_sym_thread_local] = ACTIONS(3491), - [anon_sym___thread] = ACTIONS(3491), - [anon_sym_const] = ACTIONS(3491), - [anon_sym_constexpr] = ACTIONS(3491), - [anon_sym_volatile] = ACTIONS(3491), - [anon_sym_restrict] = ACTIONS(3491), - [anon_sym___restrict__] = ACTIONS(3491), - [anon_sym__Atomic] = ACTIONS(3491), - [anon_sym__Noreturn] = ACTIONS(3491), - [anon_sym_noreturn] = ACTIONS(3491), - [anon_sym_mutable] = ACTIONS(3491), - [anon_sym_constinit] = ACTIONS(3491), - [anon_sym_consteval] = ACTIONS(3491), - [sym_primitive_type] = ACTIONS(3491), - [anon_sym_enum] = ACTIONS(3491), - [anon_sym_class] = ACTIONS(3491), - [anon_sym_struct] = ACTIONS(3491), - [anon_sym_union] = ACTIONS(3491), - [anon_sym_if] = ACTIONS(3491), - [anon_sym_switch] = ACTIONS(3491), - [anon_sym_case] = ACTIONS(3491), - [anon_sym_default] = ACTIONS(3491), - [anon_sym_while] = ACTIONS(3491), - [anon_sym_do] = ACTIONS(3491), - [anon_sym_for] = ACTIONS(3491), - [anon_sym_return] = ACTIONS(3491), - [anon_sym_break] = ACTIONS(3491), - [anon_sym_continue] = ACTIONS(3491), - [anon_sym_goto] = ACTIONS(3491), - [anon_sym___try] = ACTIONS(3491), - [anon_sym___leave] = ACTIONS(3491), - [anon_sym_not] = ACTIONS(3491), - [anon_sym_compl] = ACTIONS(3491), - [anon_sym_DASH_DASH] = ACTIONS(3493), - [anon_sym_PLUS_PLUS] = ACTIONS(3493), - [anon_sym_sizeof] = ACTIONS(3491), - [anon_sym___alignof__] = ACTIONS(3491), - [anon_sym___alignof] = ACTIONS(3491), - [anon_sym__alignof] = ACTIONS(3491), - [anon_sym_alignof] = ACTIONS(3491), - [anon_sym__Alignof] = ACTIONS(3491), - [anon_sym_offsetof] = ACTIONS(3491), - [anon_sym__Generic] = ACTIONS(3491), - [anon_sym_asm] = ACTIONS(3491), - [anon_sym___asm__] = ACTIONS(3491), - [sym_number_literal] = ACTIONS(3493), - [anon_sym_L_SQUOTE] = ACTIONS(3493), - [anon_sym_u_SQUOTE] = ACTIONS(3493), - [anon_sym_U_SQUOTE] = ACTIONS(3493), - [anon_sym_u8_SQUOTE] = ACTIONS(3493), - [anon_sym_SQUOTE] = ACTIONS(3493), - [anon_sym_L_DQUOTE] = ACTIONS(3493), - [anon_sym_u_DQUOTE] = ACTIONS(3493), - [anon_sym_U_DQUOTE] = ACTIONS(3493), - [anon_sym_u8_DQUOTE] = ACTIONS(3493), - [anon_sym_DQUOTE] = ACTIONS(3493), - [sym_true] = ACTIONS(3491), - [sym_false] = ACTIONS(3491), - [anon_sym_NULL] = ACTIONS(3491), - [anon_sym_nullptr] = ACTIONS(3491), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3491), - [anon_sym_decltype] = ACTIONS(3491), - [anon_sym_virtual] = ACTIONS(3491), - [anon_sym_alignas] = ACTIONS(3491), - [anon_sym_explicit] = ACTIONS(3491), - [anon_sym_typename] = ACTIONS(3491), - [anon_sym_template] = ACTIONS(3491), - [anon_sym_operator] = ACTIONS(3491), - [anon_sym_try] = ACTIONS(3491), - [anon_sym_delete] = ACTIONS(3491), - [anon_sym_throw] = ACTIONS(3491), - [anon_sym_namespace] = ACTIONS(3491), - [anon_sym_using] = ACTIONS(3491), - [anon_sym_static_assert] = ACTIONS(3491), - [anon_sym_concept] = ACTIONS(3491), - [anon_sym_co_return] = ACTIONS(3491), - [anon_sym_co_yield] = ACTIONS(3491), - [anon_sym_R_DQUOTE] = ACTIONS(3493), - [anon_sym_LR_DQUOTE] = ACTIONS(3493), - [anon_sym_uR_DQUOTE] = ACTIONS(3493), - [anon_sym_UR_DQUOTE] = ACTIONS(3493), - [anon_sym_u8R_DQUOTE] = ACTIONS(3493), - [anon_sym_co_await] = ACTIONS(3491), - [anon_sym_new] = ACTIONS(3491), - [anon_sym_requires] = ACTIONS(3491), - [sym_this] = ACTIONS(3491), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3493), - [sym_semgrep_named_ellipsis] = ACTIONS(3493), - }, - [739] = { - [sym_identifier] = ACTIONS(3495), - [aux_sym_preproc_include_token1] = ACTIONS(3495), - [aux_sym_preproc_def_token1] = ACTIONS(3495), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3497), - [aux_sym_preproc_if_token1] = ACTIONS(3495), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3495), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3495), - [sym_preproc_directive] = ACTIONS(3495), - [anon_sym_LPAREN2] = ACTIONS(3497), - [anon_sym_BANG] = ACTIONS(3497), - [anon_sym_TILDE] = ACTIONS(3497), - [anon_sym_DASH] = ACTIONS(3495), - [anon_sym_PLUS] = ACTIONS(3495), - [anon_sym_STAR] = ACTIONS(3497), - [anon_sym_AMP_AMP] = ACTIONS(3497), - [anon_sym_AMP] = ACTIONS(3495), - [anon_sym_SEMI] = ACTIONS(3497), - [anon_sym___extension__] = ACTIONS(3495), - [anon_sym_typedef] = ACTIONS(3495), - [anon_sym_extern] = ACTIONS(3495), - [anon_sym___attribute__] = ACTIONS(3495), - [anon_sym_COLON_COLON] = ACTIONS(3497), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3497), - [anon_sym___declspec] = ACTIONS(3495), - [anon_sym___based] = ACTIONS(3495), - [anon_sym___cdecl] = ACTIONS(3495), - [anon_sym___clrcall] = ACTIONS(3495), - [anon_sym___stdcall] = ACTIONS(3495), - [anon_sym___fastcall] = ACTIONS(3495), - [anon_sym___thiscall] = ACTIONS(3495), - [anon_sym___vectorcall] = ACTIONS(3495), - [anon_sym_LBRACE] = ACTIONS(3497), - [anon_sym_RBRACE] = ACTIONS(3497), - [anon_sym_signed] = ACTIONS(3495), - [anon_sym_unsigned] = ACTIONS(3495), - [anon_sym_long] = ACTIONS(3495), - [anon_sym_short] = ACTIONS(3495), - [anon_sym_LBRACK] = ACTIONS(3495), - [anon_sym_static] = ACTIONS(3495), - [anon_sym_register] = ACTIONS(3495), - [anon_sym_inline] = ACTIONS(3495), - [anon_sym___inline] = ACTIONS(3495), - [anon_sym___inline__] = ACTIONS(3495), - [anon_sym___forceinline] = ACTIONS(3495), - [anon_sym_thread_local] = ACTIONS(3495), - [anon_sym___thread] = ACTIONS(3495), - [anon_sym_const] = ACTIONS(3495), - [anon_sym_constexpr] = ACTIONS(3495), - [anon_sym_volatile] = ACTIONS(3495), - [anon_sym_restrict] = ACTIONS(3495), - [anon_sym___restrict__] = ACTIONS(3495), - [anon_sym__Atomic] = ACTIONS(3495), - [anon_sym__Noreturn] = ACTIONS(3495), - [anon_sym_noreturn] = ACTIONS(3495), - [anon_sym_mutable] = ACTIONS(3495), - [anon_sym_constinit] = ACTIONS(3495), - [anon_sym_consteval] = ACTIONS(3495), - [sym_primitive_type] = ACTIONS(3495), - [anon_sym_enum] = ACTIONS(3495), - [anon_sym_class] = ACTIONS(3495), - [anon_sym_struct] = ACTIONS(3495), - [anon_sym_union] = ACTIONS(3495), - [anon_sym_if] = ACTIONS(3495), - [anon_sym_switch] = ACTIONS(3495), - [anon_sym_case] = ACTIONS(3495), - [anon_sym_default] = ACTIONS(3495), - [anon_sym_while] = ACTIONS(3495), - [anon_sym_do] = ACTIONS(3495), - [anon_sym_for] = ACTIONS(3495), - [anon_sym_return] = ACTIONS(3495), - [anon_sym_break] = ACTIONS(3495), - [anon_sym_continue] = ACTIONS(3495), - [anon_sym_goto] = ACTIONS(3495), - [anon_sym___try] = ACTIONS(3495), - [anon_sym___leave] = ACTIONS(3495), - [anon_sym_not] = ACTIONS(3495), - [anon_sym_compl] = ACTIONS(3495), - [anon_sym_DASH_DASH] = ACTIONS(3497), - [anon_sym_PLUS_PLUS] = ACTIONS(3497), - [anon_sym_sizeof] = ACTIONS(3495), - [anon_sym___alignof__] = ACTIONS(3495), - [anon_sym___alignof] = ACTIONS(3495), - [anon_sym__alignof] = ACTIONS(3495), - [anon_sym_alignof] = ACTIONS(3495), - [anon_sym__Alignof] = ACTIONS(3495), - [anon_sym_offsetof] = ACTIONS(3495), - [anon_sym__Generic] = ACTIONS(3495), - [anon_sym_asm] = ACTIONS(3495), - [anon_sym___asm__] = ACTIONS(3495), - [sym_number_literal] = ACTIONS(3497), - [anon_sym_L_SQUOTE] = ACTIONS(3497), - [anon_sym_u_SQUOTE] = ACTIONS(3497), - [anon_sym_U_SQUOTE] = ACTIONS(3497), - [anon_sym_u8_SQUOTE] = ACTIONS(3497), - [anon_sym_SQUOTE] = ACTIONS(3497), - [anon_sym_L_DQUOTE] = ACTIONS(3497), - [anon_sym_u_DQUOTE] = ACTIONS(3497), - [anon_sym_U_DQUOTE] = ACTIONS(3497), - [anon_sym_u8_DQUOTE] = ACTIONS(3497), - [anon_sym_DQUOTE] = ACTIONS(3497), - [sym_true] = ACTIONS(3495), - [sym_false] = ACTIONS(3495), - [anon_sym_NULL] = ACTIONS(3495), - [anon_sym_nullptr] = ACTIONS(3495), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3495), - [anon_sym_decltype] = ACTIONS(3495), - [anon_sym_virtual] = ACTIONS(3495), - [anon_sym_alignas] = ACTIONS(3495), - [anon_sym_explicit] = ACTIONS(3495), - [anon_sym_typename] = ACTIONS(3495), - [anon_sym_template] = ACTIONS(3495), - [anon_sym_operator] = ACTIONS(3495), - [anon_sym_try] = ACTIONS(3495), - [anon_sym_delete] = ACTIONS(3495), - [anon_sym_throw] = ACTIONS(3495), - [anon_sym_namespace] = ACTIONS(3495), - [anon_sym_using] = ACTIONS(3495), - [anon_sym_static_assert] = ACTIONS(3495), - [anon_sym_concept] = ACTIONS(3495), - [anon_sym_co_return] = ACTIONS(3495), - [anon_sym_co_yield] = ACTIONS(3495), - [anon_sym_R_DQUOTE] = ACTIONS(3497), - [anon_sym_LR_DQUOTE] = ACTIONS(3497), - [anon_sym_uR_DQUOTE] = ACTIONS(3497), - [anon_sym_UR_DQUOTE] = ACTIONS(3497), - [anon_sym_u8R_DQUOTE] = ACTIONS(3497), - [anon_sym_co_await] = ACTIONS(3495), - [anon_sym_new] = ACTIONS(3495), - [anon_sym_requires] = ACTIONS(3495), - [sym_this] = ACTIONS(3495), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3497), - [sym_semgrep_named_ellipsis] = ACTIONS(3497), - }, - [740] = { - [sym_identifier] = ACTIONS(3499), - [aux_sym_preproc_include_token1] = ACTIONS(3499), - [aux_sym_preproc_def_token1] = ACTIONS(3499), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3501), - [aux_sym_preproc_if_token1] = ACTIONS(3499), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3499), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3499), - [sym_preproc_directive] = ACTIONS(3499), - [anon_sym_LPAREN2] = ACTIONS(3501), - [anon_sym_BANG] = ACTIONS(3501), - [anon_sym_TILDE] = ACTIONS(3501), - [anon_sym_DASH] = ACTIONS(3499), - [anon_sym_PLUS] = ACTIONS(3499), - [anon_sym_STAR] = ACTIONS(3501), - [anon_sym_AMP_AMP] = ACTIONS(3501), - [anon_sym_AMP] = ACTIONS(3499), - [anon_sym_SEMI] = ACTIONS(3501), - [anon_sym___extension__] = ACTIONS(3499), - [anon_sym_typedef] = ACTIONS(3499), - [anon_sym_extern] = ACTIONS(3499), - [anon_sym___attribute__] = ACTIONS(3499), - [anon_sym_COLON_COLON] = ACTIONS(3501), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3501), - [anon_sym___declspec] = ACTIONS(3499), - [anon_sym___based] = ACTIONS(3499), - [anon_sym___cdecl] = ACTIONS(3499), - [anon_sym___clrcall] = ACTIONS(3499), - [anon_sym___stdcall] = ACTIONS(3499), - [anon_sym___fastcall] = ACTIONS(3499), - [anon_sym___thiscall] = ACTIONS(3499), - [anon_sym___vectorcall] = ACTIONS(3499), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_RBRACE] = ACTIONS(3501), - [anon_sym_signed] = ACTIONS(3499), - [anon_sym_unsigned] = ACTIONS(3499), - [anon_sym_long] = ACTIONS(3499), - [anon_sym_short] = ACTIONS(3499), - [anon_sym_LBRACK] = ACTIONS(3499), - [anon_sym_static] = ACTIONS(3499), - [anon_sym_register] = ACTIONS(3499), - [anon_sym_inline] = ACTIONS(3499), - [anon_sym___inline] = ACTIONS(3499), - [anon_sym___inline__] = ACTIONS(3499), - [anon_sym___forceinline] = ACTIONS(3499), - [anon_sym_thread_local] = ACTIONS(3499), - [anon_sym___thread] = ACTIONS(3499), - [anon_sym_const] = ACTIONS(3499), - [anon_sym_constexpr] = ACTIONS(3499), - [anon_sym_volatile] = ACTIONS(3499), - [anon_sym_restrict] = ACTIONS(3499), - [anon_sym___restrict__] = ACTIONS(3499), - [anon_sym__Atomic] = ACTIONS(3499), - [anon_sym__Noreturn] = ACTIONS(3499), - [anon_sym_noreturn] = ACTIONS(3499), - [anon_sym_mutable] = ACTIONS(3499), - [anon_sym_constinit] = ACTIONS(3499), - [anon_sym_consteval] = ACTIONS(3499), - [sym_primitive_type] = ACTIONS(3499), - [anon_sym_enum] = ACTIONS(3499), - [anon_sym_class] = ACTIONS(3499), - [anon_sym_struct] = ACTIONS(3499), - [anon_sym_union] = ACTIONS(3499), - [anon_sym_if] = ACTIONS(3499), - [anon_sym_switch] = ACTIONS(3499), - [anon_sym_case] = ACTIONS(3499), - [anon_sym_default] = ACTIONS(3499), - [anon_sym_while] = ACTIONS(3499), - [anon_sym_do] = ACTIONS(3499), - [anon_sym_for] = ACTIONS(3499), - [anon_sym_return] = ACTIONS(3499), - [anon_sym_break] = ACTIONS(3499), - [anon_sym_continue] = ACTIONS(3499), - [anon_sym_goto] = ACTIONS(3499), - [anon_sym___try] = ACTIONS(3499), - [anon_sym___leave] = ACTIONS(3499), - [anon_sym_not] = ACTIONS(3499), - [anon_sym_compl] = ACTIONS(3499), - [anon_sym_DASH_DASH] = ACTIONS(3501), - [anon_sym_PLUS_PLUS] = ACTIONS(3501), - [anon_sym_sizeof] = ACTIONS(3499), - [anon_sym___alignof__] = ACTIONS(3499), - [anon_sym___alignof] = ACTIONS(3499), - [anon_sym__alignof] = ACTIONS(3499), - [anon_sym_alignof] = ACTIONS(3499), - [anon_sym__Alignof] = ACTIONS(3499), - [anon_sym_offsetof] = ACTIONS(3499), - [anon_sym__Generic] = ACTIONS(3499), - [anon_sym_asm] = ACTIONS(3499), - [anon_sym___asm__] = ACTIONS(3499), - [sym_number_literal] = ACTIONS(3501), - [anon_sym_L_SQUOTE] = ACTIONS(3501), - [anon_sym_u_SQUOTE] = ACTIONS(3501), - [anon_sym_U_SQUOTE] = ACTIONS(3501), - [anon_sym_u8_SQUOTE] = ACTIONS(3501), - [anon_sym_SQUOTE] = ACTIONS(3501), - [anon_sym_L_DQUOTE] = ACTIONS(3501), - [anon_sym_u_DQUOTE] = ACTIONS(3501), - [anon_sym_U_DQUOTE] = ACTIONS(3501), - [anon_sym_u8_DQUOTE] = ACTIONS(3501), - [anon_sym_DQUOTE] = ACTIONS(3501), - [sym_true] = ACTIONS(3499), - [sym_false] = ACTIONS(3499), - [anon_sym_NULL] = ACTIONS(3499), - [anon_sym_nullptr] = ACTIONS(3499), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3499), - [anon_sym_decltype] = ACTIONS(3499), - [anon_sym_virtual] = ACTIONS(3499), - [anon_sym_alignas] = ACTIONS(3499), - [anon_sym_explicit] = ACTIONS(3499), - [anon_sym_typename] = ACTIONS(3499), - [anon_sym_template] = ACTIONS(3499), - [anon_sym_operator] = ACTIONS(3499), - [anon_sym_try] = ACTIONS(3499), - [anon_sym_delete] = ACTIONS(3499), - [anon_sym_throw] = ACTIONS(3499), - [anon_sym_namespace] = ACTIONS(3499), - [anon_sym_using] = ACTIONS(3499), - [anon_sym_static_assert] = ACTIONS(3499), - [anon_sym_concept] = ACTIONS(3499), - [anon_sym_co_return] = ACTIONS(3499), - [anon_sym_co_yield] = ACTIONS(3499), - [anon_sym_R_DQUOTE] = ACTIONS(3501), - [anon_sym_LR_DQUOTE] = ACTIONS(3501), - [anon_sym_uR_DQUOTE] = ACTIONS(3501), - [anon_sym_UR_DQUOTE] = ACTIONS(3501), - [anon_sym_u8R_DQUOTE] = ACTIONS(3501), - [anon_sym_co_await] = ACTIONS(3499), - [anon_sym_new] = ACTIONS(3499), - [anon_sym_requires] = ACTIONS(3499), - [sym_this] = ACTIONS(3499), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3501), - [sym_semgrep_named_ellipsis] = ACTIONS(3501), - }, - [741] = { - [sym_identifier] = ACTIONS(3648), - [aux_sym_preproc_include_token1] = ACTIONS(3648), - [aux_sym_preproc_def_token1] = ACTIONS(3648), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3650), - [aux_sym_preproc_if_token1] = ACTIONS(3648), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3648), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3648), - [sym_preproc_directive] = ACTIONS(3648), - [anon_sym_LPAREN2] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3650), - [anon_sym_TILDE] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_AMP_AMP] = ACTIONS(3650), - [anon_sym_AMP] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3650), - [anon_sym___extension__] = ACTIONS(3648), - [anon_sym_typedef] = ACTIONS(3648), - [anon_sym_extern] = ACTIONS(3648), - [anon_sym___attribute__] = ACTIONS(3648), - [anon_sym_COLON_COLON] = ACTIONS(3650), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3650), - [anon_sym___declspec] = ACTIONS(3648), - [anon_sym___based] = ACTIONS(3648), - [anon_sym___cdecl] = ACTIONS(3648), - [anon_sym___clrcall] = ACTIONS(3648), - [anon_sym___stdcall] = ACTIONS(3648), - [anon_sym___fastcall] = ACTIONS(3648), - [anon_sym___thiscall] = ACTIONS(3648), - [anon_sym___vectorcall] = ACTIONS(3648), - [anon_sym_LBRACE] = ACTIONS(3650), - [anon_sym_RBRACE] = ACTIONS(3650), - [anon_sym_signed] = ACTIONS(3648), - [anon_sym_unsigned] = ACTIONS(3648), - [anon_sym_long] = ACTIONS(3648), - [anon_sym_short] = ACTIONS(3648), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_static] = ACTIONS(3648), - [anon_sym_register] = ACTIONS(3648), - [anon_sym_inline] = ACTIONS(3648), - [anon_sym___inline] = ACTIONS(3648), - [anon_sym___inline__] = ACTIONS(3648), - [anon_sym___forceinline] = ACTIONS(3648), - [anon_sym_thread_local] = ACTIONS(3648), - [anon_sym___thread] = ACTIONS(3648), - [anon_sym_const] = ACTIONS(3648), - [anon_sym_constexpr] = ACTIONS(3648), - [anon_sym_volatile] = ACTIONS(3648), - [anon_sym_restrict] = ACTIONS(3648), - [anon_sym___restrict__] = ACTIONS(3648), - [anon_sym__Atomic] = ACTIONS(3648), - [anon_sym__Noreturn] = ACTIONS(3648), - [anon_sym_noreturn] = ACTIONS(3648), - [anon_sym_mutable] = ACTIONS(3648), - [anon_sym_constinit] = ACTIONS(3648), - [anon_sym_consteval] = ACTIONS(3648), - [sym_primitive_type] = ACTIONS(3648), - [anon_sym_enum] = ACTIONS(3648), - [anon_sym_class] = ACTIONS(3648), - [anon_sym_struct] = ACTIONS(3648), - [anon_sym_union] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3648), - [anon_sym_switch] = ACTIONS(3648), - [anon_sym_case] = ACTIONS(3648), - [anon_sym_default] = ACTIONS(3648), - [anon_sym_while] = ACTIONS(3648), - [anon_sym_do] = ACTIONS(3648), - [anon_sym_for] = ACTIONS(3648), - [anon_sym_return] = ACTIONS(3648), - [anon_sym_break] = ACTIONS(3648), - [anon_sym_continue] = ACTIONS(3648), - [anon_sym_goto] = ACTIONS(3648), - [anon_sym___try] = ACTIONS(3648), - [anon_sym___leave] = ACTIONS(3648), - [anon_sym_not] = ACTIONS(3648), - [anon_sym_compl] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3650), - [anon_sym_sizeof] = ACTIONS(3648), - [anon_sym___alignof__] = ACTIONS(3648), - [anon_sym___alignof] = ACTIONS(3648), - [anon_sym__alignof] = ACTIONS(3648), - [anon_sym_alignof] = ACTIONS(3648), - [anon_sym__Alignof] = ACTIONS(3648), - [anon_sym_offsetof] = ACTIONS(3648), - [anon_sym__Generic] = ACTIONS(3648), - [anon_sym_asm] = ACTIONS(3648), - [anon_sym___asm__] = ACTIONS(3648), - [sym_number_literal] = ACTIONS(3650), - [anon_sym_L_SQUOTE] = ACTIONS(3650), - [anon_sym_u_SQUOTE] = ACTIONS(3650), - [anon_sym_U_SQUOTE] = ACTIONS(3650), - [anon_sym_u8_SQUOTE] = ACTIONS(3650), - [anon_sym_SQUOTE] = ACTIONS(3650), - [anon_sym_L_DQUOTE] = ACTIONS(3650), - [anon_sym_u_DQUOTE] = ACTIONS(3650), - [anon_sym_U_DQUOTE] = ACTIONS(3650), - [anon_sym_u8_DQUOTE] = ACTIONS(3650), - [anon_sym_DQUOTE] = ACTIONS(3650), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [anon_sym_NULL] = ACTIONS(3648), - [anon_sym_nullptr] = ACTIONS(3648), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3648), - [anon_sym_decltype] = ACTIONS(3648), - [anon_sym_virtual] = ACTIONS(3648), - [anon_sym_alignas] = ACTIONS(3648), - [anon_sym_explicit] = ACTIONS(3648), - [anon_sym_typename] = ACTIONS(3648), - [anon_sym_template] = ACTIONS(3648), - [anon_sym_operator] = ACTIONS(3648), - [anon_sym_try] = ACTIONS(3648), - [anon_sym_delete] = ACTIONS(3648), - [anon_sym_throw] = ACTIONS(3648), - [anon_sym_namespace] = ACTIONS(3648), - [anon_sym_using] = ACTIONS(3648), - [anon_sym_static_assert] = ACTIONS(3648), - [anon_sym_concept] = ACTIONS(3648), - [anon_sym_co_return] = ACTIONS(3648), - [anon_sym_co_yield] = ACTIONS(3648), - [anon_sym_R_DQUOTE] = ACTIONS(3650), - [anon_sym_LR_DQUOTE] = ACTIONS(3650), - [anon_sym_uR_DQUOTE] = ACTIONS(3650), - [anon_sym_UR_DQUOTE] = ACTIONS(3650), - [anon_sym_u8R_DQUOTE] = ACTIONS(3650), - [anon_sym_co_await] = ACTIONS(3648), - [anon_sym_new] = ACTIONS(3648), - [anon_sym_requires] = ACTIONS(3648), - [sym_this] = ACTIONS(3648), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3650), - [sym_semgrep_named_ellipsis] = ACTIONS(3650), + [735] = { + [sym_identifier] = ACTIONS(3442), + [aux_sym_preproc_include_token1] = ACTIONS(3442), + [aux_sym_preproc_def_token1] = ACTIONS(3442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3444), + [aux_sym_preproc_if_token1] = ACTIONS(3442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3442), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3442), + [sym_preproc_directive] = ACTIONS(3442), + [anon_sym_LPAREN2] = ACTIONS(3444), + [anon_sym_BANG] = ACTIONS(3444), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), + [anon_sym_AMP_AMP] = ACTIONS(3444), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym_SEMI] = ACTIONS(3444), + [anon_sym___extension__] = ACTIONS(3442), + [anon_sym_typedef] = ACTIONS(3442), + [anon_sym_extern] = ACTIONS(3442), + [anon_sym___attribute__] = ACTIONS(3442), + [anon_sym_COLON_COLON] = ACTIONS(3444), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3444), + [anon_sym___declspec] = ACTIONS(3442), + [anon_sym___based] = ACTIONS(3442), + [anon_sym___cdecl] = ACTIONS(3442), + [anon_sym___clrcall] = ACTIONS(3442), + [anon_sym___stdcall] = ACTIONS(3442), + [anon_sym___fastcall] = ACTIONS(3442), + [anon_sym___thiscall] = ACTIONS(3442), + [anon_sym___vectorcall] = ACTIONS(3442), + [anon_sym_LBRACE] = ACTIONS(3444), + [anon_sym_RBRACE] = ACTIONS(3444), + [anon_sym_signed] = ACTIONS(3442), + [anon_sym_unsigned] = ACTIONS(3442), + [anon_sym_long] = ACTIONS(3442), + [anon_sym_short] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_static] = ACTIONS(3442), + [anon_sym_register] = ACTIONS(3442), + [anon_sym_inline] = ACTIONS(3442), + [anon_sym___inline] = ACTIONS(3442), + [anon_sym___inline__] = ACTIONS(3442), + [anon_sym___forceinline] = ACTIONS(3442), + [anon_sym_thread_local] = ACTIONS(3442), + [anon_sym___thread] = ACTIONS(3442), + [anon_sym_const] = ACTIONS(3442), + [anon_sym_constexpr] = ACTIONS(3442), + [anon_sym_volatile] = ACTIONS(3442), + [anon_sym_restrict] = ACTIONS(3442), + [anon_sym___restrict__] = ACTIONS(3442), + [anon_sym__Atomic] = ACTIONS(3442), + [anon_sym__Noreturn] = ACTIONS(3442), + [anon_sym_noreturn] = ACTIONS(3442), + [anon_sym_mutable] = ACTIONS(3442), + [anon_sym_constinit] = ACTIONS(3442), + [anon_sym_consteval] = ACTIONS(3442), + [sym_primitive_type] = ACTIONS(3442), + [anon_sym_enum] = ACTIONS(3442), + [anon_sym_class] = ACTIONS(3442), + [anon_sym_struct] = ACTIONS(3442), + [anon_sym_union] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_switch] = ACTIONS(3442), + [anon_sym_case] = ACTIONS(3442), + [anon_sym_default] = ACTIONS(3442), + [anon_sym_while] = ACTIONS(3442), + [anon_sym_do] = ACTIONS(3442), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3442), + [anon_sym_break] = ACTIONS(3442), + [anon_sym_continue] = ACTIONS(3442), + [anon_sym_goto] = ACTIONS(3442), + [anon_sym___try] = ACTIONS(3442), + [anon_sym___leave] = ACTIONS(3442), + [anon_sym_not] = ACTIONS(3442), + [anon_sym_compl] = ACTIONS(3442), + [anon_sym_DASH_DASH] = ACTIONS(3444), + [anon_sym_PLUS_PLUS] = ACTIONS(3444), + [anon_sym_sizeof] = ACTIONS(3442), + [anon_sym___alignof__] = ACTIONS(3442), + [anon_sym___alignof] = ACTIONS(3442), + [anon_sym__alignof] = ACTIONS(3442), + [anon_sym_alignof] = ACTIONS(3442), + [anon_sym__Alignof] = ACTIONS(3442), + [anon_sym_offsetof] = ACTIONS(3442), + [anon_sym__Generic] = ACTIONS(3442), + [anon_sym_asm] = ACTIONS(3442), + [anon_sym___asm__] = ACTIONS(3442), + [sym_number_literal] = ACTIONS(3444), + [anon_sym_L_SQUOTE] = ACTIONS(3444), + [anon_sym_u_SQUOTE] = ACTIONS(3444), + [anon_sym_U_SQUOTE] = ACTIONS(3444), + [anon_sym_u8_SQUOTE] = ACTIONS(3444), + [anon_sym_SQUOTE] = ACTIONS(3444), + [anon_sym_L_DQUOTE] = ACTIONS(3444), + [anon_sym_u_DQUOTE] = ACTIONS(3444), + [anon_sym_U_DQUOTE] = ACTIONS(3444), + [anon_sym_u8_DQUOTE] = ACTIONS(3444), + [anon_sym_DQUOTE] = ACTIONS(3444), + [sym_true] = ACTIONS(3442), + [sym_false] = ACTIONS(3442), + [anon_sym_NULL] = ACTIONS(3442), + [anon_sym_nullptr] = ACTIONS(3442), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3442), + [anon_sym_decltype] = ACTIONS(3442), + [anon_sym_virtual] = ACTIONS(3442), + [anon_sym_alignas] = ACTIONS(3442), + [anon_sym_explicit] = ACTIONS(3442), + [anon_sym_typename] = ACTIONS(3442), + [anon_sym_template] = ACTIONS(3442), + [anon_sym_operator] = ACTIONS(3442), + [anon_sym_try] = ACTIONS(3442), + [anon_sym_delete] = ACTIONS(3442), + [anon_sym_throw] = ACTIONS(3442), + [anon_sym_namespace] = ACTIONS(3442), + [anon_sym_using] = ACTIONS(3442), + [anon_sym_static_assert] = ACTIONS(3442), + [anon_sym_concept] = ACTIONS(3442), + [anon_sym_co_return] = ACTIONS(3442), + [anon_sym_co_yield] = ACTIONS(3442), + [anon_sym_R_DQUOTE] = ACTIONS(3444), + [anon_sym_LR_DQUOTE] = ACTIONS(3444), + [anon_sym_uR_DQUOTE] = ACTIONS(3444), + [anon_sym_UR_DQUOTE] = ACTIONS(3444), + [anon_sym_u8R_DQUOTE] = ACTIONS(3444), + [anon_sym_co_await] = ACTIONS(3442), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_requires] = ACTIONS(3442), + [sym_this] = ACTIONS(3442), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3444), + [sym_semgrep_named_ellipsis] = ACTIONS(3444), }, - [742] = { - [sym_identifier] = ACTIONS(3503), - [aux_sym_preproc_include_token1] = ACTIONS(3503), - [aux_sym_preproc_def_token1] = ACTIONS(3503), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3505), - [aux_sym_preproc_if_token1] = ACTIONS(3503), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3503), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3503), - [sym_preproc_directive] = ACTIONS(3503), - [anon_sym_LPAREN2] = ACTIONS(3505), - [anon_sym_BANG] = ACTIONS(3505), - [anon_sym_TILDE] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3503), - [anon_sym_PLUS] = ACTIONS(3503), - [anon_sym_STAR] = ACTIONS(3505), - [anon_sym_AMP_AMP] = ACTIONS(3505), - [anon_sym_AMP] = ACTIONS(3503), - [anon_sym_SEMI] = ACTIONS(3505), - [anon_sym___extension__] = ACTIONS(3503), - [anon_sym_typedef] = ACTIONS(3503), - [anon_sym_extern] = ACTIONS(3503), - [anon_sym___attribute__] = ACTIONS(3503), - [anon_sym_COLON_COLON] = ACTIONS(3505), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3505), - [anon_sym___declspec] = ACTIONS(3503), - [anon_sym___based] = ACTIONS(3503), - [anon_sym___cdecl] = ACTIONS(3503), - [anon_sym___clrcall] = ACTIONS(3503), - [anon_sym___stdcall] = ACTIONS(3503), - [anon_sym___fastcall] = ACTIONS(3503), - [anon_sym___thiscall] = ACTIONS(3503), - [anon_sym___vectorcall] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_RBRACE] = ACTIONS(3505), - [anon_sym_signed] = ACTIONS(3503), - [anon_sym_unsigned] = ACTIONS(3503), - [anon_sym_long] = ACTIONS(3503), - [anon_sym_short] = ACTIONS(3503), - [anon_sym_LBRACK] = ACTIONS(3503), - [anon_sym_static] = ACTIONS(3503), - [anon_sym_register] = ACTIONS(3503), - [anon_sym_inline] = ACTIONS(3503), - [anon_sym___inline] = ACTIONS(3503), - [anon_sym___inline__] = ACTIONS(3503), - [anon_sym___forceinline] = ACTIONS(3503), - [anon_sym_thread_local] = ACTIONS(3503), - [anon_sym___thread] = ACTIONS(3503), - [anon_sym_const] = ACTIONS(3503), - [anon_sym_constexpr] = ACTIONS(3503), - [anon_sym_volatile] = ACTIONS(3503), - [anon_sym_restrict] = ACTIONS(3503), - [anon_sym___restrict__] = ACTIONS(3503), - [anon_sym__Atomic] = ACTIONS(3503), - [anon_sym__Noreturn] = ACTIONS(3503), - [anon_sym_noreturn] = ACTIONS(3503), - [anon_sym_mutable] = ACTIONS(3503), - [anon_sym_constinit] = ACTIONS(3503), - [anon_sym_consteval] = ACTIONS(3503), - [sym_primitive_type] = ACTIONS(3503), - [anon_sym_enum] = ACTIONS(3503), - [anon_sym_class] = ACTIONS(3503), - [anon_sym_struct] = ACTIONS(3503), - [anon_sym_union] = ACTIONS(3503), - [anon_sym_if] = ACTIONS(3503), - [anon_sym_switch] = ACTIONS(3503), - [anon_sym_case] = ACTIONS(3503), - [anon_sym_default] = ACTIONS(3503), - [anon_sym_while] = ACTIONS(3503), - [anon_sym_do] = ACTIONS(3503), - [anon_sym_for] = ACTIONS(3503), - [anon_sym_return] = ACTIONS(3503), - [anon_sym_break] = ACTIONS(3503), - [anon_sym_continue] = ACTIONS(3503), - [anon_sym_goto] = ACTIONS(3503), - [anon_sym___try] = ACTIONS(3503), - [anon_sym___leave] = ACTIONS(3503), - [anon_sym_not] = ACTIONS(3503), - [anon_sym_compl] = ACTIONS(3503), - [anon_sym_DASH_DASH] = ACTIONS(3505), - [anon_sym_PLUS_PLUS] = ACTIONS(3505), - [anon_sym_sizeof] = ACTIONS(3503), - [anon_sym___alignof__] = ACTIONS(3503), - [anon_sym___alignof] = ACTIONS(3503), - [anon_sym__alignof] = ACTIONS(3503), - [anon_sym_alignof] = ACTIONS(3503), + [736] = { + [sym_identifier] = ACTIONS(3223), + [aux_sym_preproc_include_token1] = ACTIONS(3223), + [aux_sym_preproc_def_token1] = ACTIONS(3223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3225), + [aux_sym_preproc_if_token1] = ACTIONS(3223), + [aux_sym_preproc_if_token2] = ACTIONS(3223), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3223), + [sym_preproc_directive] = ACTIONS(3223), + [anon_sym_LPAREN2] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3225), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(3223), + [anon_sym_PLUS] = ACTIONS(3223), + [anon_sym_STAR] = ACTIONS(3225), + [anon_sym_AMP_AMP] = ACTIONS(3225), + [anon_sym_AMP] = ACTIONS(3223), + [anon_sym_SEMI] = ACTIONS(3225), + [anon_sym___extension__] = ACTIONS(3223), + [anon_sym_typedef] = ACTIONS(3223), + [anon_sym_extern] = ACTIONS(3223), + [anon_sym___attribute__] = ACTIONS(3223), + [anon_sym_COLON_COLON] = ACTIONS(3225), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3225), + [anon_sym___declspec] = ACTIONS(3223), + [anon_sym___based] = ACTIONS(3223), + [anon_sym___cdecl] = ACTIONS(3223), + [anon_sym___clrcall] = ACTIONS(3223), + [anon_sym___stdcall] = ACTIONS(3223), + [anon_sym___fastcall] = ACTIONS(3223), + [anon_sym___thiscall] = ACTIONS(3223), + [anon_sym___vectorcall] = ACTIONS(3223), + [anon_sym_LBRACE] = ACTIONS(3225), + [anon_sym_signed] = ACTIONS(3223), + [anon_sym_unsigned] = ACTIONS(3223), + [anon_sym_long] = ACTIONS(3223), + [anon_sym_short] = ACTIONS(3223), + [anon_sym_LBRACK] = ACTIONS(3223), + [anon_sym_static] = ACTIONS(3223), + [anon_sym_register] = ACTIONS(3223), + [anon_sym_inline] = ACTIONS(3223), + [anon_sym___inline] = ACTIONS(3223), + [anon_sym___inline__] = ACTIONS(3223), + [anon_sym___forceinline] = ACTIONS(3223), + [anon_sym_thread_local] = ACTIONS(3223), + [anon_sym___thread] = ACTIONS(3223), + [anon_sym_const] = ACTIONS(3223), + [anon_sym_constexpr] = ACTIONS(3223), + [anon_sym_volatile] = ACTIONS(3223), + [anon_sym_restrict] = ACTIONS(3223), + [anon_sym___restrict__] = ACTIONS(3223), + [anon_sym__Atomic] = ACTIONS(3223), + [anon_sym__Noreturn] = ACTIONS(3223), + [anon_sym_noreturn] = ACTIONS(3223), + [anon_sym_mutable] = ACTIONS(3223), + [anon_sym_constinit] = ACTIONS(3223), + [anon_sym_consteval] = ACTIONS(3223), + [sym_primitive_type] = ACTIONS(3223), + [anon_sym_enum] = ACTIONS(3223), + [anon_sym_class] = ACTIONS(3223), + [anon_sym_struct] = ACTIONS(3223), + [anon_sym_union] = ACTIONS(3223), + [anon_sym_if] = ACTIONS(3223), + [anon_sym_switch] = ACTIONS(3223), + [anon_sym_case] = ACTIONS(3223), + [anon_sym_default] = ACTIONS(3223), + [anon_sym_while] = ACTIONS(3223), + [anon_sym_do] = ACTIONS(3223), + [anon_sym_for] = ACTIONS(3223), + [anon_sym_return] = ACTIONS(3223), + [anon_sym_break] = ACTIONS(3223), + [anon_sym_continue] = ACTIONS(3223), + [anon_sym_goto] = ACTIONS(3223), + [anon_sym___try] = ACTIONS(3223), + [anon_sym___leave] = ACTIONS(3223), + [anon_sym_not] = ACTIONS(3223), + [anon_sym_compl] = ACTIONS(3223), + [anon_sym_DASH_DASH] = ACTIONS(3225), + [anon_sym_PLUS_PLUS] = ACTIONS(3225), + [anon_sym_sizeof] = ACTIONS(3223), + [anon_sym___alignof__] = ACTIONS(3223), + [anon_sym___alignof] = ACTIONS(3223), + [anon_sym__alignof] = ACTIONS(3223), + [anon_sym_alignof] = ACTIONS(3223), + [anon_sym__Alignof] = ACTIONS(3223), + [anon_sym_offsetof] = ACTIONS(3223), + [anon_sym__Generic] = ACTIONS(3223), + [anon_sym_asm] = ACTIONS(3223), + [anon_sym___asm__] = ACTIONS(3223), + [sym_number_literal] = ACTIONS(3225), + [anon_sym_L_SQUOTE] = ACTIONS(3225), + [anon_sym_u_SQUOTE] = ACTIONS(3225), + [anon_sym_U_SQUOTE] = ACTIONS(3225), + [anon_sym_u8_SQUOTE] = ACTIONS(3225), + [anon_sym_SQUOTE] = ACTIONS(3225), + [anon_sym_L_DQUOTE] = ACTIONS(3225), + [anon_sym_u_DQUOTE] = ACTIONS(3225), + [anon_sym_U_DQUOTE] = ACTIONS(3225), + [anon_sym_u8_DQUOTE] = ACTIONS(3225), + [anon_sym_DQUOTE] = ACTIONS(3225), + [sym_true] = ACTIONS(3223), + [sym_false] = ACTIONS(3223), + [anon_sym_NULL] = ACTIONS(3223), + [anon_sym_nullptr] = ACTIONS(3223), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3223), + [anon_sym_decltype] = ACTIONS(3223), + [anon_sym_virtual] = ACTIONS(3223), + [anon_sym_alignas] = ACTIONS(3223), + [anon_sym_explicit] = ACTIONS(3223), + [anon_sym_typename] = ACTIONS(3223), + [anon_sym_template] = ACTIONS(3223), + [anon_sym_operator] = ACTIONS(3223), + [anon_sym_try] = ACTIONS(3223), + [anon_sym_delete] = ACTIONS(3223), + [anon_sym_throw] = ACTIONS(3223), + [anon_sym_namespace] = ACTIONS(3223), + [anon_sym_using] = ACTIONS(3223), + [anon_sym_static_assert] = ACTIONS(3223), + [anon_sym_concept] = ACTIONS(3223), + [anon_sym_co_return] = ACTIONS(3223), + [anon_sym_co_yield] = ACTIONS(3223), + [anon_sym_R_DQUOTE] = ACTIONS(3225), + [anon_sym_LR_DQUOTE] = ACTIONS(3225), + [anon_sym_uR_DQUOTE] = ACTIONS(3225), + [anon_sym_UR_DQUOTE] = ACTIONS(3225), + [anon_sym_u8R_DQUOTE] = ACTIONS(3225), + [anon_sym_co_await] = ACTIONS(3223), + [anon_sym_new] = ACTIONS(3223), + [anon_sym_requires] = ACTIONS(3223), + [sym_this] = ACTIONS(3223), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3225), + [sym_semgrep_named_ellipsis] = ACTIONS(3225), + }, + [737] = { + [sym_identifier] = ACTIONS(3493), + [aux_sym_preproc_include_token1] = ACTIONS(3493), + [aux_sym_preproc_def_token1] = ACTIONS(3493), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3495), + [aux_sym_preproc_if_token1] = ACTIONS(3493), + [aux_sym_preproc_if_token2] = ACTIONS(3493), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3493), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3493), + [sym_preproc_directive] = ACTIONS(3493), + [anon_sym_LPAREN2] = ACTIONS(3495), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3495), + [anon_sym_DASH] = ACTIONS(3493), + [anon_sym_PLUS] = ACTIONS(3493), + [anon_sym_STAR] = ACTIONS(3495), + [anon_sym_AMP_AMP] = ACTIONS(3495), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_SEMI] = ACTIONS(3495), + [anon_sym___extension__] = ACTIONS(3493), + [anon_sym_typedef] = 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___cdecl] = ACTIONS(3493), + [anon_sym___clrcall] = ACTIONS(3493), + [anon_sym___stdcall] = ACTIONS(3493), + [anon_sym___fastcall] = ACTIONS(3493), + [anon_sym___thiscall] = ACTIONS(3493), + [anon_sym___vectorcall] = ACTIONS(3493), + [anon_sym_LBRACE] = ACTIONS(3495), + [anon_sym_signed] = ACTIONS(3493), + [anon_sym_unsigned] = ACTIONS(3493), + [anon_sym_long] = ACTIONS(3493), + [anon_sym_short] = ACTIONS(3493), + [anon_sym_LBRACK] = ACTIONS(3493), + [anon_sym_static] = ACTIONS(3493), + [anon_sym_register] = ACTIONS(3493), + [anon_sym_inline] = ACTIONS(3493), + [anon_sym___inline] = ACTIONS(3493), + [anon_sym___inline__] = ACTIONS(3493), + [anon_sym___forceinline] = ACTIONS(3493), + [anon_sym_thread_local] = ACTIONS(3493), + [anon_sym___thread] = ACTIONS(3493), + [anon_sym_const] = ACTIONS(3493), + [anon_sym_constexpr] = ACTIONS(3493), + [anon_sym_volatile] = ACTIONS(3493), + [anon_sym_restrict] = ACTIONS(3493), + [anon_sym___restrict__] = ACTIONS(3493), + [anon_sym__Atomic] = ACTIONS(3493), + [anon_sym__Noreturn] = ACTIONS(3493), + [anon_sym_noreturn] = ACTIONS(3493), + [anon_sym_mutable] = ACTIONS(3493), + [anon_sym_constinit] = ACTIONS(3493), + [anon_sym_consteval] = ACTIONS(3493), + [sym_primitive_type] = ACTIONS(3493), + [anon_sym_enum] = ACTIONS(3493), + [anon_sym_class] = ACTIONS(3493), + [anon_sym_struct] = ACTIONS(3493), + [anon_sym_union] = ACTIONS(3493), + [anon_sym_if] = ACTIONS(3493), + [anon_sym_switch] = ACTIONS(3493), + [anon_sym_case] = ACTIONS(3493), + [anon_sym_default] = ACTIONS(3493), + [anon_sym_while] = ACTIONS(3493), + [anon_sym_do] = ACTIONS(3493), + [anon_sym_for] = ACTIONS(3493), + [anon_sym_return] = ACTIONS(3493), + [anon_sym_break] = ACTIONS(3493), + [anon_sym_continue] = ACTIONS(3493), + [anon_sym_goto] = ACTIONS(3493), + [anon_sym___try] = ACTIONS(3493), + [anon_sym___leave] = ACTIONS(3493), + [anon_sym_not] = ACTIONS(3493), + [anon_sym_compl] = ACTIONS(3493), + [anon_sym_DASH_DASH] = ACTIONS(3495), + [anon_sym_PLUS_PLUS] = ACTIONS(3495), + [anon_sym_sizeof] = ACTIONS(3493), + [anon_sym___alignof__] = ACTIONS(3493), + [anon_sym___alignof] = ACTIONS(3493), + [anon_sym__alignof] = ACTIONS(3493), + [anon_sym_alignof] = ACTIONS(3493), + [anon_sym__Alignof] = ACTIONS(3493), + [anon_sym_offsetof] = ACTIONS(3493), + [anon_sym__Generic] = ACTIONS(3493), + [anon_sym_asm] = ACTIONS(3493), + [anon_sym___asm__] = ACTIONS(3493), + [sym_number_literal] = ACTIONS(3495), + [anon_sym_L_SQUOTE] = ACTIONS(3495), + [anon_sym_u_SQUOTE] = ACTIONS(3495), + [anon_sym_U_SQUOTE] = ACTIONS(3495), + [anon_sym_u8_SQUOTE] = ACTIONS(3495), + [anon_sym_SQUOTE] = ACTIONS(3495), + [anon_sym_L_DQUOTE] = ACTIONS(3495), + [anon_sym_u_DQUOTE] = ACTIONS(3495), + [anon_sym_U_DQUOTE] = ACTIONS(3495), + [anon_sym_u8_DQUOTE] = ACTIONS(3495), + [anon_sym_DQUOTE] = ACTIONS(3495), + [sym_true] = ACTIONS(3493), + [sym_false] = ACTIONS(3493), + [anon_sym_NULL] = ACTIONS(3493), + [anon_sym_nullptr] = ACTIONS(3493), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3493), + [anon_sym_decltype] = ACTIONS(3493), + [anon_sym_virtual] = ACTIONS(3493), + [anon_sym_alignas] = ACTIONS(3493), + [anon_sym_explicit] = ACTIONS(3493), + [anon_sym_typename] = ACTIONS(3493), + [anon_sym_template] = ACTIONS(3493), + [anon_sym_operator] = ACTIONS(3493), + [anon_sym_try] = ACTIONS(3493), + [anon_sym_delete] = ACTIONS(3493), + [anon_sym_throw] = ACTIONS(3493), + [anon_sym_namespace] = ACTIONS(3493), + [anon_sym_using] = ACTIONS(3493), + [anon_sym_static_assert] = ACTIONS(3493), + [anon_sym_concept] = ACTIONS(3493), + [anon_sym_co_return] = ACTIONS(3493), + [anon_sym_co_yield] = ACTIONS(3493), + [anon_sym_R_DQUOTE] = ACTIONS(3495), + [anon_sym_LR_DQUOTE] = ACTIONS(3495), + [anon_sym_uR_DQUOTE] = ACTIONS(3495), + [anon_sym_UR_DQUOTE] = ACTIONS(3495), + [anon_sym_u8R_DQUOTE] = ACTIONS(3495), + [anon_sym_co_await] = ACTIONS(3493), + [anon_sym_new] = ACTIONS(3493), + [anon_sym_requires] = ACTIONS(3493), + [sym_this] = ACTIONS(3493), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3495), + [sym_semgrep_named_ellipsis] = ACTIONS(3495), + }, + [738] = { + [sym_identifier] = ACTIONS(3384), + [aux_sym_preproc_include_token1] = ACTIONS(3384), + [aux_sym_preproc_def_token1] = ACTIONS(3384), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3386), + [aux_sym_preproc_if_token1] = ACTIONS(3384), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3384), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3384), + [sym_preproc_directive] = ACTIONS(3384), + [anon_sym_LPAREN2] = ACTIONS(3386), + [anon_sym_BANG] = ACTIONS(3386), + [anon_sym_TILDE] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3384), + [anon_sym_PLUS] = ACTIONS(3384), + [anon_sym_STAR] = ACTIONS(3386), + [anon_sym_AMP_AMP] = ACTIONS(3386), + [anon_sym_AMP] = ACTIONS(3384), + [anon_sym_SEMI] = ACTIONS(3386), + [anon_sym___extension__] = ACTIONS(3384), + [anon_sym_typedef] = ACTIONS(3384), + [anon_sym_extern] = ACTIONS(3384), + [anon_sym___attribute__] = ACTIONS(3384), + [anon_sym_COLON_COLON] = ACTIONS(3386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3386), + [anon_sym___declspec] = ACTIONS(3384), + [anon_sym___based] = ACTIONS(3384), + [anon_sym___cdecl] = ACTIONS(3384), + [anon_sym___clrcall] = ACTIONS(3384), + [anon_sym___stdcall] = ACTIONS(3384), + [anon_sym___fastcall] = ACTIONS(3384), + [anon_sym___thiscall] = ACTIONS(3384), + [anon_sym___vectorcall] = ACTIONS(3384), + [anon_sym_LBRACE] = ACTIONS(3386), + [anon_sym_RBRACE] = ACTIONS(3386), + [anon_sym_signed] = ACTIONS(3384), + [anon_sym_unsigned] = ACTIONS(3384), + [anon_sym_long] = ACTIONS(3384), + [anon_sym_short] = ACTIONS(3384), + [anon_sym_LBRACK] = ACTIONS(3384), + [anon_sym_static] = ACTIONS(3384), + [anon_sym_register] = ACTIONS(3384), + [anon_sym_inline] = ACTIONS(3384), + [anon_sym___inline] = ACTIONS(3384), + [anon_sym___inline__] = ACTIONS(3384), + [anon_sym___forceinline] = ACTIONS(3384), + [anon_sym_thread_local] = ACTIONS(3384), + [anon_sym___thread] = ACTIONS(3384), + [anon_sym_const] = ACTIONS(3384), + [anon_sym_constexpr] = ACTIONS(3384), + [anon_sym_volatile] = ACTIONS(3384), + [anon_sym_restrict] = ACTIONS(3384), + [anon_sym___restrict__] = ACTIONS(3384), + [anon_sym__Atomic] = ACTIONS(3384), + [anon_sym__Noreturn] = ACTIONS(3384), + [anon_sym_noreturn] = ACTIONS(3384), + [anon_sym_mutable] = ACTIONS(3384), + [anon_sym_constinit] = ACTIONS(3384), + [anon_sym_consteval] = ACTIONS(3384), + [sym_primitive_type] = ACTIONS(3384), + [anon_sym_enum] = ACTIONS(3384), + [anon_sym_class] = ACTIONS(3384), + [anon_sym_struct] = ACTIONS(3384), + [anon_sym_union] = ACTIONS(3384), + [anon_sym_if] = ACTIONS(3384), + [anon_sym_switch] = ACTIONS(3384), + [anon_sym_case] = ACTIONS(3384), + [anon_sym_default] = ACTIONS(3384), + [anon_sym_while] = ACTIONS(3384), + [anon_sym_do] = ACTIONS(3384), + [anon_sym_for] = ACTIONS(3384), + [anon_sym_return] = ACTIONS(3384), + [anon_sym_break] = ACTIONS(3384), + [anon_sym_continue] = ACTIONS(3384), + [anon_sym_goto] = ACTIONS(3384), + [anon_sym___try] = ACTIONS(3384), + [anon_sym___leave] = ACTIONS(3384), + [anon_sym_not] = ACTIONS(3384), + [anon_sym_compl] = ACTIONS(3384), + [anon_sym_DASH_DASH] = ACTIONS(3386), + [anon_sym_PLUS_PLUS] = ACTIONS(3386), + [anon_sym_sizeof] = ACTIONS(3384), + [anon_sym___alignof__] = ACTIONS(3384), + [anon_sym___alignof] = ACTIONS(3384), + [anon_sym__alignof] = ACTIONS(3384), + [anon_sym_alignof] = ACTIONS(3384), + [anon_sym__Alignof] = ACTIONS(3384), + [anon_sym_offsetof] = ACTIONS(3384), + [anon_sym__Generic] = ACTIONS(3384), + [anon_sym_asm] = ACTIONS(3384), + [anon_sym___asm__] = ACTIONS(3384), + [sym_number_literal] = ACTIONS(3386), + [anon_sym_L_SQUOTE] = ACTIONS(3386), + [anon_sym_u_SQUOTE] = ACTIONS(3386), + [anon_sym_U_SQUOTE] = ACTIONS(3386), + [anon_sym_u8_SQUOTE] = ACTIONS(3386), + [anon_sym_SQUOTE] = ACTIONS(3386), + [anon_sym_L_DQUOTE] = ACTIONS(3386), + [anon_sym_u_DQUOTE] = ACTIONS(3386), + [anon_sym_U_DQUOTE] = ACTIONS(3386), + [anon_sym_u8_DQUOTE] = ACTIONS(3386), + [anon_sym_DQUOTE] = ACTIONS(3386), + [sym_true] = ACTIONS(3384), + [sym_false] = ACTIONS(3384), + [anon_sym_NULL] = ACTIONS(3384), + [anon_sym_nullptr] = ACTIONS(3384), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3384), + [anon_sym_decltype] = ACTIONS(3384), + [anon_sym_virtual] = ACTIONS(3384), + [anon_sym_alignas] = ACTIONS(3384), + [anon_sym_explicit] = ACTIONS(3384), + [anon_sym_typename] = ACTIONS(3384), + [anon_sym_template] = ACTIONS(3384), + [anon_sym_operator] = ACTIONS(3384), + [anon_sym_try] = ACTIONS(3384), + [anon_sym_delete] = ACTIONS(3384), + [anon_sym_throw] = ACTIONS(3384), + [anon_sym_namespace] = ACTIONS(3384), + [anon_sym_using] = ACTIONS(3384), + [anon_sym_static_assert] = ACTIONS(3384), + [anon_sym_concept] = ACTIONS(3384), + [anon_sym_co_return] = ACTIONS(3384), + [anon_sym_co_yield] = ACTIONS(3384), + [anon_sym_R_DQUOTE] = ACTIONS(3386), + [anon_sym_LR_DQUOTE] = ACTIONS(3386), + [anon_sym_uR_DQUOTE] = ACTIONS(3386), + [anon_sym_UR_DQUOTE] = ACTIONS(3386), + [anon_sym_u8R_DQUOTE] = ACTIONS(3386), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3384), + [anon_sym_requires] = ACTIONS(3384), + [sym_this] = ACTIONS(3384), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3386), + [sym_semgrep_named_ellipsis] = ACTIONS(3386), + }, + [739] = { + [sym_identifier] = ACTIONS(3661), + [aux_sym_preproc_include_token1] = ACTIONS(3661), + [aux_sym_preproc_def_token1] = ACTIONS(3661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3663), + [aux_sym_preproc_if_token1] = ACTIONS(3661), + [aux_sym_preproc_if_token2] = ACTIONS(3661), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3661), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3661), + [sym_preproc_directive] = ACTIONS(3661), + [anon_sym_LPAREN2] = ACTIONS(3663), + [anon_sym_BANG] = ACTIONS(3663), + [anon_sym_TILDE] = ACTIONS(3663), + [anon_sym_DASH] = ACTIONS(3661), + [anon_sym_PLUS] = ACTIONS(3661), + [anon_sym_STAR] = ACTIONS(3663), + [anon_sym_AMP_AMP] = ACTIONS(3663), + [anon_sym_AMP] = ACTIONS(3661), + [anon_sym_SEMI] = ACTIONS(3663), + [anon_sym___extension__] = ACTIONS(3661), + [anon_sym_typedef] = ACTIONS(3661), + [anon_sym_extern] = ACTIONS(3661), + [anon_sym___attribute__] = ACTIONS(3661), + [anon_sym_COLON_COLON] = ACTIONS(3663), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3663), + [anon_sym___declspec] = ACTIONS(3661), + [anon_sym___based] = ACTIONS(3661), + [anon_sym___cdecl] = ACTIONS(3661), + [anon_sym___clrcall] = ACTIONS(3661), + [anon_sym___stdcall] = ACTIONS(3661), + [anon_sym___fastcall] = ACTIONS(3661), + [anon_sym___thiscall] = ACTIONS(3661), + [anon_sym___vectorcall] = ACTIONS(3661), + [anon_sym_LBRACE] = ACTIONS(3663), + [anon_sym_signed] = ACTIONS(3661), + [anon_sym_unsigned] = ACTIONS(3661), + [anon_sym_long] = ACTIONS(3661), + [anon_sym_short] = ACTIONS(3661), + [anon_sym_LBRACK] = ACTIONS(3661), + [anon_sym_static] = ACTIONS(3661), + [anon_sym_register] = ACTIONS(3661), + [anon_sym_inline] = ACTIONS(3661), + [anon_sym___inline] = ACTIONS(3661), + [anon_sym___inline__] = ACTIONS(3661), + [anon_sym___forceinline] = ACTIONS(3661), + [anon_sym_thread_local] = ACTIONS(3661), + [anon_sym___thread] = ACTIONS(3661), + [anon_sym_const] = ACTIONS(3661), + [anon_sym_constexpr] = ACTIONS(3661), + [anon_sym_volatile] = ACTIONS(3661), + [anon_sym_restrict] = ACTIONS(3661), + [anon_sym___restrict__] = ACTIONS(3661), + [anon_sym__Atomic] = ACTIONS(3661), + [anon_sym__Noreturn] = ACTIONS(3661), + [anon_sym_noreturn] = ACTIONS(3661), + [anon_sym_mutable] = ACTIONS(3661), + [anon_sym_constinit] = ACTIONS(3661), + [anon_sym_consteval] = ACTIONS(3661), + [sym_primitive_type] = ACTIONS(3661), + [anon_sym_enum] = ACTIONS(3661), + [anon_sym_class] = ACTIONS(3661), + [anon_sym_struct] = ACTIONS(3661), + [anon_sym_union] = ACTIONS(3661), + [anon_sym_if] = ACTIONS(3661), + [anon_sym_switch] = ACTIONS(3661), + [anon_sym_case] = ACTIONS(3661), + [anon_sym_default] = ACTIONS(3661), + [anon_sym_while] = ACTIONS(3661), + [anon_sym_do] = ACTIONS(3661), + [anon_sym_for] = ACTIONS(3661), + [anon_sym_return] = ACTIONS(3661), + [anon_sym_break] = ACTIONS(3661), + [anon_sym_continue] = ACTIONS(3661), + [anon_sym_goto] = ACTIONS(3661), + [anon_sym___try] = ACTIONS(3661), + [anon_sym___leave] = ACTIONS(3661), + [anon_sym_not] = ACTIONS(3661), + [anon_sym_compl] = ACTIONS(3661), + [anon_sym_DASH_DASH] = ACTIONS(3663), + [anon_sym_PLUS_PLUS] = ACTIONS(3663), + [anon_sym_sizeof] = ACTIONS(3661), + [anon_sym___alignof__] = ACTIONS(3661), + [anon_sym___alignof] = ACTIONS(3661), + [anon_sym__alignof] = ACTIONS(3661), + [anon_sym_alignof] = ACTIONS(3661), + [anon_sym__Alignof] = ACTIONS(3661), + [anon_sym_offsetof] = ACTIONS(3661), + [anon_sym__Generic] = ACTIONS(3661), + [anon_sym_asm] = ACTIONS(3661), + [anon_sym___asm__] = ACTIONS(3661), + [sym_number_literal] = ACTIONS(3663), + [anon_sym_L_SQUOTE] = ACTIONS(3663), + [anon_sym_u_SQUOTE] = ACTIONS(3663), + [anon_sym_U_SQUOTE] = ACTIONS(3663), + [anon_sym_u8_SQUOTE] = ACTIONS(3663), + [anon_sym_SQUOTE] = ACTIONS(3663), + [anon_sym_L_DQUOTE] = ACTIONS(3663), + [anon_sym_u_DQUOTE] = ACTIONS(3663), + [anon_sym_U_DQUOTE] = ACTIONS(3663), + [anon_sym_u8_DQUOTE] = ACTIONS(3663), + [anon_sym_DQUOTE] = ACTIONS(3663), + [sym_true] = ACTIONS(3661), + [sym_false] = ACTIONS(3661), + [anon_sym_NULL] = ACTIONS(3661), + [anon_sym_nullptr] = ACTIONS(3661), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3661), + [anon_sym_decltype] = ACTIONS(3661), + [anon_sym_virtual] = ACTIONS(3661), + [anon_sym_alignas] = ACTIONS(3661), + [anon_sym_explicit] = ACTIONS(3661), + [anon_sym_typename] = ACTIONS(3661), + [anon_sym_template] = ACTIONS(3661), + [anon_sym_operator] = ACTIONS(3661), + [anon_sym_try] = ACTIONS(3661), + [anon_sym_delete] = ACTIONS(3661), + [anon_sym_throw] = ACTIONS(3661), + [anon_sym_namespace] = ACTIONS(3661), + [anon_sym_using] = ACTIONS(3661), + [anon_sym_static_assert] = ACTIONS(3661), + [anon_sym_concept] = ACTIONS(3661), + [anon_sym_co_return] = ACTIONS(3661), + [anon_sym_co_yield] = ACTIONS(3661), + [anon_sym_R_DQUOTE] = ACTIONS(3663), + [anon_sym_LR_DQUOTE] = ACTIONS(3663), + [anon_sym_uR_DQUOTE] = ACTIONS(3663), + [anon_sym_UR_DQUOTE] = ACTIONS(3663), + [anon_sym_u8R_DQUOTE] = ACTIONS(3663), + [anon_sym_co_await] = ACTIONS(3661), + [anon_sym_new] = ACTIONS(3661), + [anon_sym_requires] = ACTIONS(3661), + [sym_this] = ACTIONS(3661), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3663), + [sym_semgrep_named_ellipsis] = ACTIONS(3663), + }, + [740] = { + [sym_identifier] = ACTIONS(3451), + [aux_sym_preproc_include_token1] = ACTIONS(3451), + [aux_sym_preproc_def_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3453), + [aux_sym_preproc_if_token1] = ACTIONS(3451), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3451), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3451), + [sym_preproc_directive] = ACTIONS(3451), + [anon_sym_LPAREN2] = ACTIONS(3453), + [anon_sym_BANG] = ACTIONS(3453), + [anon_sym_TILDE] = ACTIONS(3453), + [anon_sym_DASH] = ACTIONS(3451), + [anon_sym_PLUS] = ACTIONS(3451), + [anon_sym_STAR] = ACTIONS(3453), + [anon_sym_AMP_AMP] = ACTIONS(3453), + [anon_sym_AMP] = ACTIONS(3451), + [anon_sym_SEMI] = ACTIONS(3453), + [anon_sym___extension__] = ACTIONS(3451), + [anon_sym_typedef] = ACTIONS(3451), + [anon_sym_extern] = ACTIONS(3451), + [anon_sym___attribute__] = ACTIONS(3451), + [anon_sym_COLON_COLON] = ACTIONS(3453), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3453), + [anon_sym___declspec] = ACTIONS(3451), + [anon_sym___based] = ACTIONS(3451), + [anon_sym___cdecl] = ACTIONS(3451), + [anon_sym___clrcall] = ACTIONS(3451), + [anon_sym___stdcall] = ACTIONS(3451), + [anon_sym___fastcall] = ACTIONS(3451), + [anon_sym___thiscall] = ACTIONS(3451), + [anon_sym___vectorcall] = ACTIONS(3451), + [anon_sym_LBRACE] = ACTIONS(3453), + [anon_sym_RBRACE] = ACTIONS(3453), + [anon_sym_signed] = ACTIONS(3451), + [anon_sym_unsigned] = ACTIONS(3451), + [anon_sym_long] = ACTIONS(3451), + [anon_sym_short] = ACTIONS(3451), + [anon_sym_LBRACK] = ACTIONS(3451), + [anon_sym_static] = ACTIONS(3451), + [anon_sym_register] = ACTIONS(3451), + [anon_sym_inline] = ACTIONS(3451), + [anon_sym___inline] = ACTIONS(3451), + [anon_sym___inline__] = ACTIONS(3451), + [anon_sym___forceinline] = ACTIONS(3451), + [anon_sym_thread_local] = ACTIONS(3451), + [anon_sym___thread] = ACTIONS(3451), + [anon_sym_const] = ACTIONS(3451), + [anon_sym_constexpr] = ACTIONS(3451), + [anon_sym_volatile] = ACTIONS(3451), + [anon_sym_restrict] = ACTIONS(3451), + [anon_sym___restrict__] = ACTIONS(3451), + [anon_sym__Atomic] = ACTIONS(3451), + [anon_sym__Noreturn] = ACTIONS(3451), + [anon_sym_noreturn] = ACTIONS(3451), + [anon_sym_mutable] = ACTIONS(3451), + [anon_sym_constinit] = ACTIONS(3451), + [anon_sym_consteval] = ACTIONS(3451), + [sym_primitive_type] = ACTIONS(3451), + [anon_sym_enum] = ACTIONS(3451), + [anon_sym_class] = ACTIONS(3451), + [anon_sym_struct] = ACTIONS(3451), + [anon_sym_union] = ACTIONS(3451), + [anon_sym_if] = ACTIONS(3451), + [anon_sym_switch] = ACTIONS(3451), + [anon_sym_case] = ACTIONS(3451), + [anon_sym_default] = ACTIONS(3451), + [anon_sym_while] = ACTIONS(3451), + [anon_sym_do] = ACTIONS(3451), + [anon_sym_for] = ACTIONS(3451), + [anon_sym_return] = ACTIONS(3451), + [anon_sym_break] = ACTIONS(3451), + [anon_sym_continue] = ACTIONS(3451), + [anon_sym_goto] = ACTIONS(3451), + [anon_sym___try] = ACTIONS(3451), + [anon_sym___leave] = ACTIONS(3451), + [anon_sym_not] = ACTIONS(3451), + [anon_sym_compl] = ACTIONS(3451), + [anon_sym_DASH_DASH] = ACTIONS(3453), + [anon_sym_PLUS_PLUS] = ACTIONS(3453), + [anon_sym_sizeof] = ACTIONS(3451), + [anon_sym___alignof__] = ACTIONS(3451), + [anon_sym___alignof] = ACTIONS(3451), + [anon_sym__alignof] = ACTIONS(3451), + [anon_sym_alignof] = ACTIONS(3451), + [anon_sym__Alignof] = ACTIONS(3451), + [anon_sym_offsetof] = ACTIONS(3451), + [anon_sym__Generic] = ACTIONS(3451), + [anon_sym_asm] = ACTIONS(3451), + [anon_sym___asm__] = ACTIONS(3451), + [sym_number_literal] = ACTIONS(3453), + [anon_sym_L_SQUOTE] = ACTIONS(3453), + [anon_sym_u_SQUOTE] = ACTIONS(3453), + [anon_sym_U_SQUOTE] = ACTIONS(3453), + [anon_sym_u8_SQUOTE] = ACTIONS(3453), + [anon_sym_SQUOTE] = ACTIONS(3453), + [anon_sym_L_DQUOTE] = ACTIONS(3453), + [anon_sym_u_DQUOTE] = ACTIONS(3453), + [anon_sym_U_DQUOTE] = ACTIONS(3453), + [anon_sym_u8_DQUOTE] = ACTIONS(3453), + [anon_sym_DQUOTE] = ACTIONS(3453), + [sym_true] = ACTIONS(3451), + [sym_false] = ACTIONS(3451), + [anon_sym_NULL] = ACTIONS(3451), + [anon_sym_nullptr] = ACTIONS(3451), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3451), + [anon_sym_decltype] = ACTIONS(3451), + [anon_sym_virtual] = ACTIONS(3451), + [anon_sym_alignas] = ACTIONS(3451), + [anon_sym_explicit] = ACTIONS(3451), + [anon_sym_typename] = ACTIONS(3451), + [anon_sym_template] = ACTIONS(3451), + [anon_sym_operator] = ACTIONS(3451), + [anon_sym_try] = ACTIONS(3451), + [anon_sym_delete] = ACTIONS(3451), + [anon_sym_throw] = ACTIONS(3451), + [anon_sym_namespace] = ACTIONS(3451), + [anon_sym_using] = ACTIONS(3451), + [anon_sym_static_assert] = ACTIONS(3451), + [anon_sym_concept] = ACTIONS(3451), + [anon_sym_co_return] = ACTIONS(3451), + [anon_sym_co_yield] = ACTIONS(3451), + [anon_sym_R_DQUOTE] = ACTIONS(3453), + [anon_sym_LR_DQUOTE] = ACTIONS(3453), + [anon_sym_uR_DQUOTE] = ACTIONS(3453), + [anon_sym_UR_DQUOTE] = ACTIONS(3453), + [anon_sym_u8R_DQUOTE] = ACTIONS(3453), + [anon_sym_co_await] = ACTIONS(3451), + [anon_sym_new] = ACTIONS(3451), + [anon_sym_requires] = ACTIONS(3451), + [sym_this] = ACTIONS(3451), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3453), + [sym_semgrep_named_ellipsis] = ACTIONS(3453), + }, + [741] = { + [sym_expression] = STATE(4631), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3204), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3204), + [sym_call_expression] = STATE(3204), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3204), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3204), + [sym_initializer_list] = STATE(4376), + [sym_char_literal] = STATE(4797), + [sym_concatenated_string] = STATE(4797), + [sym_string_literal] = STATE(3234), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3234), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6827), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(3204), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3204), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(2285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2277), + [anon_sym_COMMA] = ACTIONS(2277), + [aux_sym_preproc_if_token2] = ACTIONS(2277), + [aux_sym_preproc_else_token1] = ACTIONS(2277), + [aux_sym_preproc_elif_token1] = ACTIONS(2285), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2277), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2277), + [anon_sym_LPAREN2] = ACTIONS(2277), + [anon_sym_BANG] = ACTIONS(3893), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2277), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_PERCENT] = ACTIONS(2277), + [anon_sym_PIPE_PIPE] = ACTIONS(2277), + [anon_sym_AMP_AMP] = ACTIONS(2277), + [anon_sym_PIPE] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2277), + [anon_sym_AMP] = ACTIONS(2285), + [anon_sym_EQ_EQ] = ACTIONS(2277), + [anon_sym_BANG_EQ] = ACTIONS(2277), + [anon_sym_GT] = ACTIONS(2285), + [anon_sym_GT_EQ] = ACTIONS(2277), + [anon_sym_LT_EQ] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_LT_LT] = ACTIONS(2277), + [anon_sym_GT_GT] = ACTIONS(2277), + [anon_sym_COLON_COLON] = ACTIONS(3897), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(2277), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_QMARK] = ACTIONS(2277), + [anon_sym_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_LT_EQ_GT] = ACTIONS(2277), + [anon_sym_or] = ACTIONS(2285), + [anon_sym_and] = ACTIONS(2285), + [anon_sym_bitor] = ACTIONS(2285), + [anon_sym_xor] = ACTIONS(2285), + [anon_sym_bitand] = ACTIONS(2285), + [anon_sym_not_eq] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2277), + [anon_sym_PLUS_PLUS] = ACTIONS(2277), + [anon_sym_sizeof] = ACTIONS(3901), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(2285), + [anon_sym_DOT_STAR] = ACTIONS(2277), + [anon_sym_DASH_GT] = ACTIONS(2277), + [sym_number_literal] = ACTIONS(3903), + [anon_sym_L_SQUOTE] = ACTIONS(3905), + [anon_sym_u_SQUOTE] = ACTIONS(3905), + [anon_sym_U_SQUOTE] = ACTIONS(3905), + [anon_sym_u8_SQUOTE] = ACTIONS(3905), + [anon_sym_SQUOTE] = ACTIONS(3905), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3909), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + [anon_sym_co_await] = ACTIONS(3913), + [anon_sym_new] = ACTIONS(3915), + [anon_sym_requires] = ACTIONS(3917), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), + }, + [742] = { + [sym_identifier] = ACTIONS(3402), + [aux_sym_preproc_include_token1] = ACTIONS(3402), + [aux_sym_preproc_def_token1] = ACTIONS(3402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3404), + [aux_sym_preproc_if_token1] = ACTIONS(3402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3402), + [sym_preproc_directive] = ACTIONS(3402), + [anon_sym_LPAREN2] = ACTIONS(3404), + [anon_sym_BANG] = ACTIONS(3404), + [anon_sym_TILDE] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3402), + [anon_sym_PLUS] = ACTIONS(3402), + [anon_sym_STAR] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3402), + [anon_sym_SEMI] = ACTIONS(3404), + [anon_sym___extension__] = ACTIONS(3402), + [anon_sym_typedef] = ACTIONS(3402), + [anon_sym_extern] = ACTIONS(3402), + [anon_sym___attribute__] = ACTIONS(3402), + [anon_sym_COLON_COLON] = ACTIONS(3404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3404), + [anon_sym___declspec] = ACTIONS(3402), + [anon_sym___based] = ACTIONS(3402), + [anon_sym___cdecl] = ACTIONS(3402), + [anon_sym___clrcall] = ACTIONS(3402), + [anon_sym___stdcall] = ACTIONS(3402), + [anon_sym___fastcall] = ACTIONS(3402), + [anon_sym___thiscall] = ACTIONS(3402), + [anon_sym___vectorcall] = ACTIONS(3402), + [anon_sym_LBRACE] = ACTIONS(3404), + [anon_sym_RBRACE] = ACTIONS(3404), + [anon_sym_signed] = ACTIONS(3402), + [anon_sym_unsigned] = ACTIONS(3402), + [anon_sym_long] = ACTIONS(3402), + [anon_sym_short] = ACTIONS(3402), + [anon_sym_LBRACK] = ACTIONS(3402), + [anon_sym_static] = ACTIONS(3402), + [anon_sym_register] = ACTIONS(3402), + [anon_sym_inline] = ACTIONS(3402), + [anon_sym___inline] = ACTIONS(3402), + [anon_sym___inline__] = ACTIONS(3402), + [anon_sym___forceinline] = ACTIONS(3402), + [anon_sym_thread_local] = ACTIONS(3402), + [anon_sym___thread] = ACTIONS(3402), + [anon_sym_const] = ACTIONS(3402), + [anon_sym_constexpr] = ACTIONS(3402), + [anon_sym_volatile] = ACTIONS(3402), + [anon_sym_restrict] = ACTIONS(3402), + [anon_sym___restrict__] = ACTIONS(3402), + [anon_sym__Atomic] = ACTIONS(3402), + [anon_sym__Noreturn] = ACTIONS(3402), + [anon_sym_noreturn] = ACTIONS(3402), + [anon_sym_mutable] = ACTIONS(3402), + [anon_sym_constinit] = ACTIONS(3402), + [anon_sym_consteval] = ACTIONS(3402), + [sym_primitive_type] = ACTIONS(3402), + [anon_sym_enum] = ACTIONS(3402), + [anon_sym_class] = ACTIONS(3402), + [anon_sym_struct] = ACTIONS(3402), + [anon_sym_union] = ACTIONS(3402), + [anon_sym_if] = ACTIONS(3402), + [anon_sym_switch] = ACTIONS(3402), + [anon_sym_case] = ACTIONS(3402), + [anon_sym_default] = ACTIONS(3402), + [anon_sym_while] = ACTIONS(3402), + [anon_sym_do] = ACTIONS(3402), + [anon_sym_for] = ACTIONS(3402), + [anon_sym_return] = ACTIONS(3402), + [anon_sym_break] = ACTIONS(3402), + [anon_sym_continue] = ACTIONS(3402), + [anon_sym_goto] = ACTIONS(3402), + [anon_sym___try] = ACTIONS(3402), + [anon_sym___leave] = ACTIONS(3402), + [anon_sym_not] = ACTIONS(3402), + [anon_sym_compl] = ACTIONS(3402), + [anon_sym_DASH_DASH] = ACTIONS(3404), + [anon_sym_PLUS_PLUS] = ACTIONS(3404), + [anon_sym_sizeof] = ACTIONS(3402), + [anon_sym___alignof__] = ACTIONS(3402), + [anon_sym___alignof] = ACTIONS(3402), + [anon_sym__alignof] = ACTIONS(3402), + [anon_sym_alignof] = ACTIONS(3402), + [anon_sym__Alignof] = ACTIONS(3402), + [anon_sym_offsetof] = ACTIONS(3402), + [anon_sym__Generic] = ACTIONS(3402), + [anon_sym_asm] = ACTIONS(3402), + [anon_sym___asm__] = ACTIONS(3402), + [sym_number_literal] = ACTIONS(3404), + [anon_sym_L_SQUOTE] = ACTIONS(3404), + [anon_sym_u_SQUOTE] = ACTIONS(3404), + [anon_sym_U_SQUOTE] = ACTIONS(3404), + [anon_sym_u8_SQUOTE] = ACTIONS(3404), + [anon_sym_SQUOTE] = ACTIONS(3404), + [anon_sym_L_DQUOTE] = ACTIONS(3404), + [anon_sym_u_DQUOTE] = ACTIONS(3404), + [anon_sym_U_DQUOTE] = ACTIONS(3404), + [anon_sym_u8_DQUOTE] = ACTIONS(3404), + [anon_sym_DQUOTE] = ACTIONS(3404), + [sym_true] = ACTIONS(3402), + [sym_false] = ACTIONS(3402), + [anon_sym_NULL] = ACTIONS(3402), + [anon_sym_nullptr] = ACTIONS(3402), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3402), + [anon_sym_decltype] = ACTIONS(3402), + [anon_sym_virtual] = ACTIONS(3402), + [anon_sym_alignas] = ACTIONS(3402), + [anon_sym_explicit] = ACTIONS(3402), + [anon_sym_typename] = ACTIONS(3402), + [anon_sym_template] = ACTIONS(3402), + [anon_sym_operator] = ACTIONS(3402), + [anon_sym_try] = ACTIONS(3402), + [anon_sym_delete] = ACTIONS(3402), + [anon_sym_throw] = ACTIONS(3402), + [anon_sym_namespace] = ACTIONS(3402), + [anon_sym_using] = ACTIONS(3402), + [anon_sym_static_assert] = ACTIONS(3402), + [anon_sym_concept] = ACTIONS(3402), + [anon_sym_co_return] = ACTIONS(3402), + [anon_sym_co_yield] = ACTIONS(3402), + [anon_sym_R_DQUOTE] = ACTIONS(3404), + [anon_sym_LR_DQUOTE] = ACTIONS(3404), + [anon_sym_uR_DQUOTE] = ACTIONS(3404), + [anon_sym_UR_DQUOTE] = ACTIONS(3404), + [anon_sym_u8R_DQUOTE] = ACTIONS(3404), + [anon_sym_co_await] = ACTIONS(3402), + [anon_sym_new] = ACTIONS(3402), + [anon_sym_requires] = ACTIONS(3402), + [sym_this] = ACTIONS(3402), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3404), + [sym_semgrep_named_ellipsis] = ACTIONS(3404), + }, + [743] = { + [sym_identifier] = ACTIONS(3680), + [aux_sym_preproc_include_token1] = ACTIONS(3680), + [aux_sym_preproc_def_token1] = ACTIONS(3680), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3682), + [aux_sym_preproc_if_token1] = ACTIONS(3680), + [aux_sym_preproc_if_token2] = ACTIONS(3680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3680), + [sym_preproc_directive] = ACTIONS(3680), + [anon_sym_LPAREN2] = ACTIONS(3682), + [anon_sym_BANG] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(3682), + [anon_sym_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3680), + [anon_sym_STAR] = ACTIONS(3682), + [anon_sym_AMP_AMP] = ACTIONS(3682), + [anon_sym_AMP] = ACTIONS(3680), + [anon_sym_SEMI] = ACTIONS(3682), + [anon_sym___extension__] = ACTIONS(3680), + [anon_sym_typedef] = ACTIONS(3680), + [anon_sym_extern] = ACTIONS(3680), + [anon_sym___attribute__] = ACTIONS(3680), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3682), + [anon_sym___declspec] = ACTIONS(3680), + [anon_sym___based] = ACTIONS(3680), + [anon_sym___cdecl] = ACTIONS(3680), + [anon_sym___clrcall] = ACTIONS(3680), + [anon_sym___stdcall] = ACTIONS(3680), + [anon_sym___fastcall] = ACTIONS(3680), + [anon_sym___thiscall] = ACTIONS(3680), + [anon_sym___vectorcall] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3682), + [anon_sym_signed] = ACTIONS(3680), + [anon_sym_unsigned] = ACTIONS(3680), + [anon_sym_long] = ACTIONS(3680), + [anon_sym_short] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_static] = ACTIONS(3680), + [anon_sym_register] = ACTIONS(3680), + [anon_sym_inline] = ACTIONS(3680), + [anon_sym___inline] = ACTIONS(3680), + [anon_sym___inline__] = ACTIONS(3680), + [anon_sym___forceinline] = ACTIONS(3680), + [anon_sym_thread_local] = ACTIONS(3680), + [anon_sym___thread] = ACTIONS(3680), + [anon_sym_const] = ACTIONS(3680), + [anon_sym_constexpr] = ACTIONS(3680), + [anon_sym_volatile] = ACTIONS(3680), + [anon_sym_restrict] = ACTIONS(3680), + [anon_sym___restrict__] = ACTIONS(3680), + [anon_sym__Atomic] = ACTIONS(3680), + [anon_sym__Noreturn] = ACTIONS(3680), + [anon_sym_noreturn] = ACTIONS(3680), + [anon_sym_mutable] = ACTIONS(3680), + [anon_sym_constinit] = ACTIONS(3680), + [anon_sym_consteval] = ACTIONS(3680), + [sym_primitive_type] = ACTIONS(3680), + [anon_sym_enum] = ACTIONS(3680), + [anon_sym_class] = ACTIONS(3680), + [anon_sym_struct] = ACTIONS(3680), + [anon_sym_union] = ACTIONS(3680), + [anon_sym_if] = ACTIONS(3680), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_case] = ACTIONS(3680), + [anon_sym_default] = ACTIONS(3680), + [anon_sym_while] = ACTIONS(3680), + [anon_sym_do] = ACTIONS(3680), + [anon_sym_for] = ACTIONS(3680), + [anon_sym_return] = ACTIONS(3680), + [anon_sym_break] = ACTIONS(3680), + [anon_sym_continue] = ACTIONS(3680), + [anon_sym_goto] = ACTIONS(3680), + [anon_sym___try] = ACTIONS(3680), + [anon_sym___leave] = ACTIONS(3680), + [anon_sym_not] = ACTIONS(3680), + [anon_sym_compl] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3682), + [anon_sym_PLUS_PLUS] = ACTIONS(3682), + [anon_sym_sizeof] = ACTIONS(3680), + [anon_sym___alignof__] = ACTIONS(3680), + [anon_sym___alignof] = ACTIONS(3680), + [anon_sym__alignof] = ACTIONS(3680), + [anon_sym_alignof] = ACTIONS(3680), + [anon_sym__Alignof] = ACTIONS(3680), + [anon_sym_offsetof] = ACTIONS(3680), + [anon_sym__Generic] = ACTIONS(3680), + [anon_sym_asm] = ACTIONS(3680), + [anon_sym___asm__] = ACTIONS(3680), + [sym_number_literal] = ACTIONS(3682), + [anon_sym_L_SQUOTE] = ACTIONS(3682), + [anon_sym_u_SQUOTE] = ACTIONS(3682), + [anon_sym_U_SQUOTE] = ACTIONS(3682), + [anon_sym_u8_SQUOTE] = ACTIONS(3682), + [anon_sym_SQUOTE] = ACTIONS(3682), + [anon_sym_L_DQUOTE] = ACTIONS(3682), + [anon_sym_u_DQUOTE] = ACTIONS(3682), + [anon_sym_U_DQUOTE] = ACTIONS(3682), + [anon_sym_u8_DQUOTE] = ACTIONS(3682), + [anon_sym_DQUOTE] = ACTIONS(3682), + [sym_true] = ACTIONS(3680), + [sym_false] = ACTIONS(3680), + [anon_sym_NULL] = ACTIONS(3680), + [anon_sym_nullptr] = ACTIONS(3680), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3680), + [anon_sym_decltype] = ACTIONS(3680), + [anon_sym_virtual] = ACTIONS(3680), + [anon_sym_alignas] = ACTIONS(3680), + [anon_sym_explicit] = ACTIONS(3680), + [anon_sym_typename] = ACTIONS(3680), + [anon_sym_template] = ACTIONS(3680), + [anon_sym_operator] = ACTIONS(3680), + [anon_sym_try] = ACTIONS(3680), + [anon_sym_delete] = ACTIONS(3680), + [anon_sym_throw] = ACTIONS(3680), + [anon_sym_namespace] = ACTIONS(3680), + [anon_sym_using] = ACTIONS(3680), + [anon_sym_static_assert] = ACTIONS(3680), + [anon_sym_concept] = ACTIONS(3680), + [anon_sym_co_return] = ACTIONS(3680), + [anon_sym_co_yield] = ACTIONS(3680), + [anon_sym_R_DQUOTE] = ACTIONS(3682), + [anon_sym_LR_DQUOTE] = ACTIONS(3682), + [anon_sym_uR_DQUOTE] = ACTIONS(3682), + [anon_sym_UR_DQUOTE] = ACTIONS(3682), + [anon_sym_u8R_DQUOTE] = ACTIONS(3682), + [anon_sym_co_await] = ACTIONS(3680), + [anon_sym_new] = ACTIONS(3680), + [anon_sym_requires] = ACTIONS(3680), + [sym_this] = ACTIONS(3680), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3682), + [sym_semgrep_named_ellipsis] = ACTIONS(3682), + }, + [744] = { + [sym_identifier] = ACTIONS(3603), + [aux_sym_preproc_include_token1] = ACTIONS(3603), + [aux_sym_preproc_def_token1] = ACTIONS(3603), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3605), + [aux_sym_preproc_if_token1] = ACTIONS(3603), + [aux_sym_preproc_if_token2] = ACTIONS(3603), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3603), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3603), + [sym_preproc_directive] = ACTIONS(3603), + [anon_sym_LPAREN2] = ACTIONS(3605), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(3605), + [anon_sym_DASH] = ACTIONS(3603), + [anon_sym_PLUS] = ACTIONS(3603), + [anon_sym_STAR] = ACTIONS(3605), + [anon_sym_AMP_AMP] = ACTIONS(3605), + [anon_sym_AMP] = ACTIONS(3603), + [anon_sym_SEMI] = ACTIONS(3605), + [anon_sym___extension__] = ACTIONS(3603), + [anon_sym_typedef] = ACTIONS(3603), + [anon_sym_extern] = ACTIONS(3603), + [anon_sym___attribute__] = ACTIONS(3603), + [anon_sym_COLON_COLON] = ACTIONS(3605), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3605), + [anon_sym___declspec] = ACTIONS(3603), + [anon_sym___based] = ACTIONS(3603), + [anon_sym___cdecl] = ACTIONS(3603), + [anon_sym___clrcall] = ACTIONS(3603), + [anon_sym___stdcall] = ACTIONS(3603), + [anon_sym___fastcall] = ACTIONS(3603), + [anon_sym___thiscall] = ACTIONS(3603), + [anon_sym___vectorcall] = ACTIONS(3603), + [anon_sym_LBRACE] = ACTIONS(3605), + [anon_sym_signed] = ACTIONS(3603), + [anon_sym_unsigned] = ACTIONS(3603), + [anon_sym_long] = ACTIONS(3603), + [anon_sym_short] = ACTIONS(3603), + [anon_sym_LBRACK] = ACTIONS(3603), + [anon_sym_static] = ACTIONS(3603), + [anon_sym_register] = ACTIONS(3603), + [anon_sym_inline] = ACTIONS(3603), + [anon_sym___inline] = ACTIONS(3603), + [anon_sym___inline__] = ACTIONS(3603), + [anon_sym___forceinline] = ACTIONS(3603), + [anon_sym_thread_local] = ACTIONS(3603), + [anon_sym___thread] = ACTIONS(3603), + [anon_sym_const] = ACTIONS(3603), + [anon_sym_constexpr] = ACTIONS(3603), + [anon_sym_volatile] = ACTIONS(3603), + [anon_sym_restrict] = ACTIONS(3603), + [anon_sym___restrict__] = ACTIONS(3603), + [anon_sym__Atomic] = ACTIONS(3603), + [anon_sym__Noreturn] = ACTIONS(3603), + [anon_sym_noreturn] = ACTIONS(3603), + [anon_sym_mutable] = ACTIONS(3603), + [anon_sym_constinit] = ACTIONS(3603), + [anon_sym_consteval] = ACTIONS(3603), + [sym_primitive_type] = ACTIONS(3603), + [anon_sym_enum] = ACTIONS(3603), + [anon_sym_class] = ACTIONS(3603), + [anon_sym_struct] = ACTIONS(3603), + [anon_sym_union] = ACTIONS(3603), + [anon_sym_if] = ACTIONS(3603), + [anon_sym_switch] = ACTIONS(3603), + [anon_sym_case] = ACTIONS(3603), + [anon_sym_default] = ACTIONS(3603), + [anon_sym_while] = ACTIONS(3603), + [anon_sym_do] = ACTIONS(3603), + [anon_sym_for] = ACTIONS(3603), + [anon_sym_return] = ACTIONS(3603), + [anon_sym_break] = ACTIONS(3603), + [anon_sym_continue] = ACTIONS(3603), + [anon_sym_goto] = ACTIONS(3603), + [anon_sym___try] = ACTIONS(3603), + [anon_sym___leave] = ACTIONS(3603), + [anon_sym_not] = ACTIONS(3603), + [anon_sym_compl] = ACTIONS(3603), + [anon_sym_DASH_DASH] = ACTIONS(3605), + [anon_sym_PLUS_PLUS] = ACTIONS(3605), + [anon_sym_sizeof] = ACTIONS(3603), + [anon_sym___alignof__] = ACTIONS(3603), + [anon_sym___alignof] = ACTIONS(3603), + [anon_sym__alignof] = ACTIONS(3603), + [anon_sym_alignof] = ACTIONS(3603), + [anon_sym__Alignof] = ACTIONS(3603), + [anon_sym_offsetof] = ACTIONS(3603), + [anon_sym__Generic] = ACTIONS(3603), + [anon_sym_asm] = ACTIONS(3603), + [anon_sym___asm__] = ACTIONS(3603), + [sym_number_literal] = ACTIONS(3605), + [anon_sym_L_SQUOTE] = ACTIONS(3605), + [anon_sym_u_SQUOTE] = ACTIONS(3605), + [anon_sym_U_SQUOTE] = ACTIONS(3605), + [anon_sym_u8_SQUOTE] = ACTIONS(3605), + [anon_sym_SQUOTE] = ACTIONS(3605), + [anon_sym_L_DQUOTE] = ACTIONS(3605), + [anon_sym_u_DQUOTE] = ACTIONS(3605), + [anon_sym_U_DQUOTE] = ACTIONS(3605), + [anon_sym_u8_DQUOTE] = ACTIONS(3605), + [anon_sym_DQUOTE] = ACTIONS(3605), + [sym_true] = ACTIONS(3603), + [sym_false] = ACTIONS(3603), + [anon_sym_NULL] = ACTIONS(3603), + [anon_sym_nullptr] = ACTIONS(3603), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3603), + [anon_sym_decltype] = ACTIONS(3603), + [anon_sym_virtual] = ACTIONS(3603), + [anon_sym_alignas] = ACTIONS(3603), + [anon_sym_explicit] = ACTIONS(3603), + [anon_sym_typename] = ACTIONS(3603), + [anon_sym_template] = ACTIONS(3603), + [anon_sym_operator] = ACTIONS(3603), + [anon_sym_try] = ACTIONS(3603), + [anon_sym_delete] = ACTIONS(3603), + [anon_sym_throw] = ACTIONS(3603), + [anon_sym_namespace] = ACTIONS(3603), + [anon_sym_using] = ACTIONS(3603), + [anon_sym_static_assert] = ACTIONS(3603), + [anon_sym_concept] = ACTIONS(3603), + [anon_sym_co_return] = ACTIONS(3603), + [anon_sym_co_yield] = ACTIONS(3603), + [anon_sym_R_DQUOTE] = ACTIONS(3605), + [anon_sym_LR_DQUOTE] = ACTIONS(3605), + [anon_sym_uR_DQUOTE] = ACTIONS(3605), + [anon_sym_UR_DQUOTE] = ACTIONS(3605), + [anon_sym_u8R_DQUOTE] = ACTIONS(3605), + [anon_sym_co_await] = ACTIONS(3603), + [anon_sym_new] = ACTIONS(3603), + [anon_sym_requires] = ACTIONS(3603), + [sym_this] = ACTIONS(3603), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3605), + [sym_semgrep_named_ellipsis] = ACTIONS(3605), + }, + [745] = { + [sym_identifier] = ACTIONS(3392), + [aux_sym_preproc_include_token1] = ACTIONS(3392), + [aux_sym_preproc_def_token1] = ACTIONS(3392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3394), + [aux_sym_preproc_if_token1] = ACTIONS(3392), + [aux_sym_preproc_if_token2] = ACTIONS(3392), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3392), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3392), + [sym_preproc_directive] = ACTIONS(3392), + [anon_sym_LPAREN2] = ACTIONS(3394), + [anon_sym_BANG] = ACTIONS(3394), + [anon_sym_TILDE] = ACTIONS(3394), + [anon_sym_DASH] = ACTIONS(3392), + [anon_sym_PLUS] = ACTIONS(3392), + [anon_sym_STAR] = ACTIONS(3394), + [anon_sym_AMP_AMP] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3392), + [anon_sym_SEMI] = ACTIONS(3394), + [anon_sym___extension__] = ACTIONS(3392), + [anon_sym_typedef] = ACTIONS(3392), + [anon_sym_extern] = ACTIONS(3392), + [anon_sym___attribute__] = ACTIONS(3392), + [anon_sym_COLON_COLON] = ACTIONS(3394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3394), + [anon_sym___declspec] = ACTIONS(3392), + [anon_sym___based] = ACTIONS(3392), + [anon_sym___cdecl] = ACTIONS(3392), + [anon_sym___clrcall] = ACTIONS(3392), + [anon_sym___stdcall] = ACTIONS(3392), + [anon_sym___fastcall] = ACTIONS(3392), + [anon_sym___thiscall] = ACTIONS(3392), + [anon_sym___vectorcall] = ACTIONS(3392), + [anon_sym_LBRACE] = ACTIONS(3394), + [anon_sym_signed] = ACTIONS(3392), + [anon_sym_unsigned] = ACTIONS(3392), + [anon_sym_long] = ACTIONS(3392), + [anon_sym_short] = ACTIONS(3392), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_static] = ACTIONS(3392), + [anon_sym_register] = ACTIONS(3392), + [anon_sym_inline] = ACTIONS(3392), + [anon_sym___inline] = ACTIONS(3392), + [anon_sym___inline__] = ACTIONS(3392), + [anon_sym___forceinline] = ACTIONS(3392), + [anon_sym_thread_local] = ACTIONS(3392), + [anon_sym___thread] = ACTIONS(3392), + [anon_sym_const] = ACTIONS(3392), + [anon_sym_constexpr] = ACTIONS(3392), + [anon_sym_volatile] = ACTIONS(3392), + [anon_sym_restrict] = ACTIONS(3392), + [anon_sym___restrict__] = ACTIONS(3392), + [anon_sym__Atomic] = ACTIONS(3392), + [anon_sym__Noreturn] = ACTIONS(3392), + [anon_sym_noreturn] = ACTIONS(3392), + [anon_sym_mutable] = ACTIONS(3392), + [anon_sym_constinit] = ACTIONS(3392), + [anon_sym_consteval] = ACTIONS(3392), + [sym_primitive_type] = ACTIONS(3392), + [anon_sym_enum] = ACTIONS(3392), + [anon_sym_class] = ACTIONS(3392), + [anon_sym_struct] = ACTIONS(3392), + [anon_sym_union] = ACTIONS(3392), + [anon_sym_if] = ACTIONS(3392), + [anon_sym_switch] = ACTIONS(3392), + [anon_sym_case] = ACTIONS(3392), + [anon_sym_default] = ACTIONS(3392), + [anon_sym_while] = ACTIONS(3392), + [anon_sym_do] = ACTIONS(3392), + [anon_sym_for] = ACTIONS(3392), + [anon_sym_return] = ACTIONS(3392), + [anon_sym_break] = ACTIONS(3392), + [anon_sym_continue] = ACTIONS(3392), + [anon_sym_goto] = ACTIONS(3392), + [anon_sym___try] = ACTIONS(3392), + [anon_sym___leave] = ACTIONS(3392), + [anon_sym_not] = ACTIONS(3392), + [anon_sym_compl] = ACTIONS(3392), + [anon_sym_DASH_DASH] = ACTIONS(3394), + [anon_sym_PLUS_PLUS] = ACTIONS(3394), + [anon_sym_sizeof] = ACTIONS(3392), + [anon_sym___alignof__] = ACTIONS(3392), + [anon_sym___alignof] = ACTIONS(3392), + [anon_sym__alignof] = ACTIONS(3392), + [anon_sym_alignof] = ACTIONS(3392), + [anon_sym__Alignof] = ACTIONS(3392), + [anon_sym_offsetof] = ACTIONS(3392), + [anon_sym__Generic] = ACTIONS(3392), + [anon_sym_asm] = ACTIONS(3392), + [anon_sym___asm__] = ACTIONS(3392), + [sym_number_literal] = ACTIONS(3394), + [anon_sym_L_SQUOTE] = ACTIONS(3394), + [anon_sym_u_SQUOTE] = ACTIONS(3394), + [anon_sym_U_SQUOTE] = ACTIONS(3394), + [anon_sym_u8_SQUOTE] = ACTIONS(3394), + [anon_sym_SQUOTE] = ACTIONS(3394), + [anon_sym_L_DQUOTE] = ACTIONS(3394), + [anon_sym_u_DQUOTE] = ACTIONS(3394), + [anon_sym_U_DQUOTE] = ACTIONS(3394), + [anon_sym_u8_DQUOTE] = ACTIONS(3394), + [anon_sym_DQUOTE] = ACTIONS(3394), + [sym_true] = ACTIONS(3392), + [sym_false] = ACTIONS(3392), + [anon_sym_NULL] = ACTIONS(3392), + [anon_sym_nullptr] = ACTIONS(3392), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3392), + [anon_sym_decltype] = ACTIONS(3392), + [anon_sym_virtual] = ACTIONS(3392), + [anon_sym_alignas] = ACTIONS(3392), + [anon_sym_explicit] = ACTIONS(3392), + [anon_sym_typename] = ACTIONS(3392), + [anon_sym_template] = ACTIONS(3392), + [anon_sym_operator] = ACTIONS(3392), + [anon_sym_try] = ACTIONS(3392), + [anon_sym_delete] = ACTIONS(3392), + [anon_sym_throw] = ACTIONS(3392), + [anon_sym_namespace] = ACTIONS(3392), + [anon_sym_using] = ACTIONS(3392), + [anon_sym_static_assert] = ACTIONS(3392), + [anon_sym_concept] = ACTIONS(3392), + [anon_sym_co_return] = ACTIONS(3392), + [anon_sym_co_yield] = ACTIONS(3392), + [anon_sym_R_DQUOTE] = ACTIONS(3394), + [anon_sym_LR_DQUOTE] = ACTIONS(3394), + [anon_sym_uR_DQUOTE] = ACTIONS(3394), + [anon_sym_UR_DQUOTE] = ACTIONS(3394), + [anon_sym_u8R_DQUOTE] = ACTIONS(3394), + [anon_sym_co_await] = ACTIONS(3392), + [anon_sym_new] = ACTIONS(3392), + [anon_sym_requires] = ACTIONS(3392), + [sym_this] = ACTIONS(3392), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3394), + [sym_semgrep_named_ellipsis] = ACTIONS(3394), + }, + [746] = { + [sym_identifier] = ACTIONS(3497), + [aux_sym_preproc_include_token1] = ACTIONS(3497), + [aux_sym_preproc_def_token1] = ACTIONS(3497), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3499), + [aux_sym_preproc_if_token1] = ACTIONS(3497), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3497), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3497), + [sym_preproc_directive] = ACTIONS(3497), + [anon_sym_LPAREN2] = ACTIONS(3499), + [anon_sym_BANG] = ACTIONS(3499), + [anon_sym_TILDE] = ACTIONS(3499), + [anon_sym_DASH] = ACTIONS(3497), + [anon_sym_PLUS] = ACTIONS(3497), + [anon_sym_STAR] = ACTIONS(3499), + [anon_sym_AMP_AMP] = ACTIONS(3499), + [anon_sym_AMP] = ACTIONS(3497), + [anon_sym_SEMI] = ACTIONS(3499), + [anon_sym___extension__] = ACTIONS(3497), + [anon_sym_typedef] = 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___cdecl] = ACTIONS(3497), + [anon_sym___clrcall] = ACTIONS(3497), + [anon_sym___stdcall] = ACTIONS(3497), + [anon_sym___fastcall] = ACTIONS(3497), + [anon_sym___thiscall] = ACTIONS(3497), + [anon_sym___vectorcall] = ACTIONS(3497), + [anon_sym_LBRACE] = ACTIONS(3499), + [anon_sym_RBRACE] = ACTIONS(3499), + [anon_sym_signed] = ACTIONS(3497), + [anon_sym_unsigned] = ACTIONS(3497), + [anon_sym_long] = ACTIONS(3497), + [anon_sym_short] = ACTIONS(3497), + [anon_sym_LBRACK] = ACTIONS(3497), + [anon_sym_static] = ACTIONS(3497), + [anon_sym_register] = ACTIONS(3497), + [anon_sym_inline] = ACTIONS(3497), + [anon_sym___inline] = ACTIONS(3497), + [anon_sym___inline__] = ACTIONS(3497), + [anon_sym___forceinline] = ACTIONS(3497), + [anon_sym_thread_local] = ACTIONS(3497), + [anon_sym___thread] = ACTIONS(3497), + [anon_sym_const] = ACTIONS(3497), + [anon_sym_constexpr] = ACTIONS(3497), + [anon_sym_volatile] = ACTIONS(3497), + [anon_sym_restrict] = ACTIONS(3497), + [anon_sym___restrict__] = ACTIONS(3497), + [anon_sym__Atomic] = ACTIONS(3497), + [anon_sym__Noreturn] = ACTIONS(3497), + [anon_sym_noreturn] = ACTIONS(3497), + [anon_sym_mutable] = ACTIONS(3497), + [anon_sym_constinit] = ACTIONS(3497), + [anon_sym_consteval] = ACTIONS(3497), + [sym_primitive_type] = ACTIONS(3497), + [anon_sym_enum] = ACTIONS(3497), + [anon_sym_class] = ACTIONS(3497), + [anon_sym_struct] = ACTIONS(3497), + [anon_sym_union] = ACTIONS(3497), + [anon_sym_if] = ACTIONS(3497), + [anon_sym_switch] = ACTIONS(3497), + [anon_sym_case] = ACTIONS(3497), + [anon_sym_default] = ACTIONS(3497), + [anon_sym_while] = ACTIONS(3497), + [anon_sym_do] = ACTIONS(3497), + [anon_sym_for] = ACTIONS(3497), + [anon_sym_return] = ACTIONS(3497), + [anon_sym_break] = ACTIONS(3497), + [anon_sym_continue] = ACTIONS(3497), + [anon_sym_goto] = ACTIONS(3497), + [anon_sym___try] = ACTIONS(3497), + [anon_sym___leave] = ACTIONS(3497), + [anon_sym_not] = ACTIONS(3497), + [anon_sym_compl] = ACTIONS(3497), + [anon_sym_DASH_DASH] = ACTIONS(3499), + [anon_sym_PLUS_PLUS] = ACTIONS(3499), + [anon_sym_sizeof] = ACTIONS(3497), + [anon_sym___alignof__] = ACTIONS(3497), + [anon_sym___alignof] = ACTIONS(3497), + [anon_sym__alignof] = ACTIONS(3497), + [anon_sym_alignof] = ACTIONS(3497), + [anon_sym__Alignof] = ACTIONS(3497), + [anon_sym_offsetof] = ACTIONS(3497), + [anon_sym__Generic] = ACTIONS(3497), + [anon_sym_asm] = ACTIONS(3497), + [anon_sym___asm__] = ACTIONS(3497), + [sym_number_literal] = ACTIONS(3499), + [anon_sym_L_SQUOTE] = ACTIONS(3499), + [anon_sym_u_SQUOTE] = ACTIONS(3499), + [anon_sym_U_SQUOTE] = ACTIONS(3499), + [anon_sym_u8_SQUOTE] = ACTIONS(3499), + [anon_sym_SQUOTE] = ACTIONS(3499), + [anon_sym_L_DQUOTE] = ACTIONS(3499), + [anon_sym_u_DQUOTE] = ACTIONS(3499), + [anon_sym_U_DQUOTE] = ACTIONS(3499), + [anon_sym_u8_DQUOTE] = ACTIONS(3499), + [anon_sym_DQUOTE] = ACTIONS(3499), + [sym_true] = ACTIONS(3497), + [sym_false] = ACTIONS(3497), + [anon_sym_NULL] = ACTIONS(3497), + [anon_sym_nullptr] = ACTIONS(3497), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3497), + [anon_sym_decltype] = ACTIONS(3497), + [anon_sym_virtual] = ACTIONS(3497), + [anon_sym_alignas] = ACTIONS(3497), + [anon_sym_explicit] = ACTIONS(3497), + [anon_sym_typename] = ACTIONS(3497), + [anon_sym_template] = ACTIONS(3497), + [anon_sym_operator] = ACTIONS(3497), + [anon_sym_try] = ACTIONS(3497), + [anon_sym_delete] = ACTIONS(3497), + [anon_sym_throw] = ACTIONS(3497), + [anon_sym_namespace] = ACTIONS(3497), + [anon_sym_using] = ACTIONS(3497), + [anon_sym_static_assert] = ACTIONS(3497), + [anon_sym_concept] = ACTIONS(3497), + [anon_sym_co_return] = ACTIONS(3497), + [anon_sym_co_yield] = ACTIONS(3497), + [anon_sym_R_DQUOTE] = ACTIONS(3499), + [anon_sym_LR_DQUOTE] = ACTIONS(3499), + [anon_sym_uR_DQUOTE] = ACTIONS(3499), + [anon_sym_UR_DQUOTE] = ACTIONS(3499), + [anon_sym_u8R_DQUOTE] = ACTIONS(3499), + [anon_sym_co_await] = ACTIONS(3497), + [anon_sym_new] = ACTIONS(3497), + [anon_sym_requires] = ACTIONS(3497), + [sym_this] = ACTIONS(3497), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3499), + [sym_semgrep_named_ellipsis] = ACTIONS(3499), + }, + [747] = { + [sym_identifier] = ACTIONS(3509), + [aux_sym_preproc_include_token1] = ACTIONS(3509), + [aux_sym_preproc_def_token1] = ACTIONS(3509), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3511), + [aux_sym_preproc_if_token1] = ACTIONS(3509), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3509), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3509), + [sym_preproc_directive] = ACTIONS(3509), + [anon_sym_LPAREN2] = ACTIONS(3511), + [anon_sym_BANG] = ACTIONS(3511), + [anon_sym_TILDE] = ACTIONS(3511), + [anon_sym_DASH] = ACTIONS(3509), + [anon_sym_PLUS] = ACTIONS(3509), + [anon_sym_STAR] = ACTIONS(3511), + [anon_sym_AMP_AMP] = ACTIONS(3511), + [anon_sym_AMP] = ACTIONS(3509), + [anon_sym_SEMI] = ACTIONS(3511), + [anon_sym___extension__] = ACTIONS(3509), + [anon_sym_typedef] = 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___cdecl] = ACTIONS(3509), + [anon_sym___clrcall] = ACTIONS(3509), + [anon_sym___stdcall] = ACTIONS(3509), + [anon_sym___fastcall] = ACTIONS(3509), + [anon_sym___thiscall] = ACTIONS(3509), + [anon_sym___vectorcall] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3511), + [anon_sym_RBRACE] = ACTIONS(3511), + [anon_sym_signed] = ACTIONS(3509), + [anon_sym_unsigned] = ACTIONS(3509), + [anon_sym_long] = ACTIONS(3509), + [anon_sym_short] = ACTIONS(3509), + [anon_sym_LBRACK] = ACTIONS(3509), + [anon_sym_static] = ACTIONS(3509), + [anon_sym_register] = ACTIONS(3509), + [anon_sym_inline] = ACTIONS(3509), + [anon_sym___inline] = ACTIONS(3509), + [anon_sym___inline__] = ACTIONS(3509), + [anon_sym___forceinline] = ACTIONS(3509), + [anon_sym_thread_local] = ACTIONS(3509), + [anon_sym___thread] = ACTIONS(3509), + [anon_sym_const] = ACTIONS(3509), + [anon_sym_constexpr] = ACTIONS(3509), + [anon_sym_volatile] = ACTIONS(3509), + [anon_sym_restrict] = ACTIONS(3509), + [anon_sym___restrict__] = ACTIONS(3509), + [anon_sym__Atomic] = ACTIONS(3509), + [anon_sym__Noreturn] = ACTIONS(3509), + [anon_sym_noreturn] = ACTIONS(3509), + [anon_sym_mutable] = ACTIONS(3509), + [anon_sym_constinit] = ACTIONS(3509), + [anon_sym_consteval] = ACTIONS(3509), + [sym_primitive_type] = ACTIONS(3509), + [anon_sym_enum] = ACTIONS(3509), + [anon_sym_class] = ACTIONS(3509), + [anon_sym_struct] = ACTIONS(3509), + [anon_sym_union] = ACTIONS(3509), + [anon_sym_if] = ACTIONS(3509), + [anon_sym_switch] = ACTIONS(3509), + [anon_sym_case] = ACTIONS(3509), + [anon_sym_default] = ACTIONS(3509), + [anon_sym_while] = ACTIONS(3509), + [anon_sym_do] = ACTIONS(3509), + [anon_sym_for] = ACTIONS(3509), + [anon_sym_return] = ACTIONS(3509), + [anon_sym_break] = ACTIONS(3509), + [anon_sym_continue] = ACTIONS(3509), + [anon_sym_goto] = ACTIONS(3509), + [anon_sym___try] = ACTIONS(3509), + [anon_sym___leave] = ACTIONS(3509), + [anon_sym_not] = ACTIONS(3509), + [anon_sym_compl] = ACTIONS(3509), + [anon_sym_DASH_DASH] = ACTIONS(3511), + [anon_sym_PLUS_PLUS] = ACTIONS(3511), + [anon_sym_sizeof] = ACTIONS(3509), + [anon_sym___alignof__] = ACTIONS(3509), + [anon_sym___alignof] = ACTIONS(3509), + [anon_sym__alignof] = ACTIONS(3509), + [anon_sym_alignof] = ACTIONS(3509), + [anon_sym__Alignof] = ACTIONS(3509), + [anon_sym_offsetof] = ACTIONS(3509), + [anon_sym__Generic] = ACTIONS(3509), + [anon_sym_asm] = ACTIONS(3509), + [anon_sym___asm__] = ACTIONS(3509), + [sym_number_literal] = ACTIONS(3511), + [anon_sym_L_SQUOTE] = ACTIONS(3511), + [anon_sym_u_SQUOTE] = ACTIONS(3511), + [anon_sym_U_SQUOTE] = ACTIONS(3511), + [anon_sym_u8_SQUOTE] = ACTIONS(3511), + [anon_sym_SQUOTE] = ACTIONS(3511), + [anon_sym_L_DQUOTE] = ACTIONS(3511), + [anon_sym_u_DQUOTE] = ACTIONS(3511), + [anon_sym_U_DQUOTE] = ACTIONS(3511), + [anon_sym_u8_DQUOTE] = ACTIONS(3511), + [anon_sym_DQUOTE] = ACTIONS(3511), + [sym_true] = ACTIONS(3509), + [sym_false] = ACTIONS(3509), + [anon_sym_NULL] = ACTIONS(3509), + [anon_sym_nullptr] = ACTIONS(3509), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3509), + [anon_sym_decltype] = ACTIONS(3509), + [anon_sym_virtual] = ACTIONS(3509), + [anon_sym_alignas] = ACTIONS(3509), + [anon_sym_explicit] = ACTIONS(3509), + [anon_sym_typename] = ACTIONS(3509), + [anon_sym_template] = ACTIONS(3509), + [anon_sym_operator] = ACTIONS(3509), + [anon_sym_try] = ACTIONS(3509), + [anon_sym_delete] = ACTIONS(3509), + [anon_sym_throw] = ACTIONS(3509), + [anon_sym_namespace] = ACTIONS(3509), + [anon_sym_using] = ACTIONS(3509), + [anon_sym_static_assert] = ACTIONS(3509), + [anon_sym_concept] = ACTIONS(3509), + [anon_sym_co_return] = ACTIONS(3509), + [anon_sym_co_yield] = ACTIONS(3509), + [anon_sym_R_DQUOTE] = ACTIONS(3511), + [anon_sym_LR_DQUOTE] = ACTIONS(3511), + [anon_sym_uR_DQUOTE] = ACTIONS(3511), + [anon_sym_UR_DQUOTE] = ACTIONS(3511), + [anon_sym_u8R_DQUOTE] = ACTIONS(3511), + [anon_sym_co_await] = ACTIONS(3509), + [anon_sym_new] = ACTIONS(3509), + [anon_sym_requires] = ACTIONS(3509), + [sym_this] = ACTIONS(3509), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3511), + [sym_semgrep_named_ellipsis] = ACTIONS(3511), + }, + [748] = { + [sym_identifier] = ACTIONS(3503), + [aux_sym_preproc_include_token1] = ACTIONS(3503), + [aux_sym_preproc_def_token1] = ACTIONS(3503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3505), + [aux_sym_preproc_if_token1] = ACTIONS(3503), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3503), + [sym_preproc_directive] = ACTIONS(3503), + [anon_sym_LPAREN2] = ACTIONS(3505), + [anon_sym_BANG] = ACTIONS(3505), + [anon_sym_TILDE] = ACTIONS(3505), + [anon_sym_DASH] = ACTIONS(3503), + [anon_sym_PLUS] = ACTIONS(3503), + [anon_sym_STAR] = ACTIONS(3505), + [anon_sym_AMP_AMP] = ACTIONS(3505), + [anon_sym_AMP] = ACTIONS(3503), + [anon_sym_SEMI] = ACTIONS(3505), + [anon_sym___extension__] = ACTIONS(3503), + [anon_sym_typedef] = ACTIONS(3503), + [anon_sym_extern] = ACTIONS(3503), + [anon_sym___attribute__] = ACTIONS(3503), + [anon_sym_COLON_COLON] = ACTIONS(3505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3505), + [anon_sym___declspec] = ACTIONS(3503), + [anon_sym___based] = ACTIONS(3503), + [anon_sym___cdecl] = ACTIONS(3503), + [anon_sym___clrcall] = ACTIONS(3503), + [anon_sym___stdcall] = ACTIONS(3503), + [anon_sym___fastcall] = ACTIONS(3503), + [anon_sym___thiscall] = ACTIONS(3503), + [anon_sym___vectorcall] = ACTIONS(3503), + [anon_sym_LBRACE] = ACTIONS(3505), + [anon_sym_RBRACE] = ACTIONS(3505), + [anon_sym_signed] = ACTIONS(3503), + [anon_sym_unsigned] = ACTIONS(3503), + [anon_sym_long] = ACTIONS(3503), + [anon_sym_short] = ACTIONS(3503), + [anon_sym_LBRACK] = ACTIONS(3503), + [anon_sym_static] = ACTIONS(3503), + [anon_sym_register] = ACTIONS(3503), + [anon_sym_inline] = ACTIONS(3503), + [anon_sym___inline] = ACTIONS(3503), + [anon_sym___inline__] = ACTIONS(3503), + [anon_sym___forceinline] = ACTIONS(3503), + [anon_sym_thread_local] = ACTIONS(3503), + [anon_sym___thread] = ACTIONS(3503), + [anon_sym_const] = ACTIONS(3503), + [anon_sym_constexpr] = ACTIONS(3503), + [anon_sym_volatile] = ACTIONS(3503), + [anon_sym_restrict] = ACTIONS(3503), + [anon_sym___restrict__] = ACTIONS(3503), + [anon_sym__Atomic] = ACTIONS(3503), + [anon_sym__Noreturn] = ACTIONS(3503), + [anon_sym_noreturn] = ACTIONS(3503), + [anon_sym_mutable] = ACTIONS(3503), + [anon_sym_constinit] = ACTIONS(3503), + [anon_sym_consteval] = ACTIONS(3503), + [sym_primitive_type] = ACTIONS(3503), + [anon_sym_enum] = ACTIONS(3503), + [anon_sym_class] = ACTIONS(3503), + [anon_sym_struct] = ACTIONS(3503), + [anon_sym_union] = ACTIONS(3503), + [anon_sym_if] = ACTIONS(3503), + [anon_sym_switch] = ACTIONS(3503), + [anon_sym_case] = ACTIONS(3503), + [anon_sym_default] = ACTIONS(3503), + [anon_sym_while] = ACTIONS(3503), + [anon_sym_do] = ACTIONS(3503), + [anon_sym_for] = ACTIONS(3503), + [anon_sym_return] = ACTIONS(3503), + [anon_sym_break] = ACTIONS(3503), + [anon_sym_continue] = ACTIONS(3503), + [anon_sym_goto] = ACTIONS(3503), + [anon_sym___try] = ACTIONS(3503), + [anon_sym___leave] = ACTIONS(3503), + [anon_sym_not] = ACTIONS(3503), + [anon_sym_compl] = ACTIONS(3503), + [anon_sym_DASH_DASH] = ACTIONS(3505), + [anon_sym_PLUS_PLUS] = ACTIONS(3505), + [anon_sym_sizeof] = ACTIONS(3503), + [anon_sym___alignof__] = ACTIONS(3503), + [anon_sym___alignof] = ACTIONS(3503), + [anon_sym__alignof] = ACTIONS(3503), + [anon_sym_alignof] = ACTIONS(3503), [anon_sym__Alignof] = ACTIONS(3503), [anon_sym_offsetof] = ACTIONS(3503), [anon_sym__Generic] = ACTIONS(3503), @@ -167762,1087 +158734,682 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3505), [sym_semgrep_named_ellipsis] = ACTIONS(3505), }, - [743] = { - [sym_identifier] = ACTIONS(3507), - [aux_sym_preproc_include_token1] = ACTIONS(3507), - [aux_sym_preproc_def_token1] = ACTIONS(3507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3509), - [aux_sym_preproc_if_token1] = ACTIONS(3507), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3507), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3507), - [sym_preproc_directive] = ACTIONS(3507), - [anon_sym_LPAREN2] = ACTIONS(3509), - [anon_sym_BANG] = ACTIONS(3509), - [anon_sym_TILDE] = ACTIONS(3509), - [anon_sym_DASH] = ACTIONS(3507), - [anon_sym_PLUS] = ACTIONS(3507), - [anon_sym_STAR] = ACTIONS(3509), - [anon_sym_AMP_AMP] = ACTIONS(3509), - [anon_sym_AMP] = ACTIONS(3507), - [anon_sym_SEMI] = ACTIONS(3509), - [anon_sym___extension__] = ACTIONS(3507), - [anon_sym_typedef] = ACTIONS(3507), - [anon_sym_extern] = ACTIONS(3507), - [anon_sym___attribute__] = ACTIONS(3507), - [anon_sym_COLON_COLON] = ACTIONS(3509), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3509), - [anon_sym___declspec] = ACTIONS(3507), - [anon_sym___based] = ACTIONS(3507), - [anon_sym___cdecl] = ACTIONS(3507), - [anon_sym___clrcall] = ACTIONS(3507), - [anon_sym___stdcall] = ACTIONS(3507), - [anon_sym___fastcall] = ACTIONS(3507), - [anon_sym___thiscall] = ACTIONS(3507), - [anon_sym___vectorcall] = ACTIONS(3507), - [anon_sym_LBRACE] = ACTIONS(3509), - [anon_sym_RBRACE] = ACTIONS(3509), - [anon_sym_signed] = ACTIONS(3507), - [anon_sym_unsigned] = ACTIONS(3507), - [anon_sym_long] = ACTIONS(3507), - [anon_sym_short] = ACTIONS(3507), - [anon_sym_LBRACK] = ACTIONS(3507), - [anon_sym_static] = ACTIONS(3507), - [anon_sym_register] = ACTIONS(3507), - [anon_sym_inline] = ACTIONS(3507), - [anon_sym___inline] = ACTIONS(3507), - [anon_sym___inline__] = ACTIONS(3507), - [anon_sym___forceinline] = ACTIONS(3507), - [anon_sym_thread_local] = ACTIONS(3507), - [anon_sym___thread] = ACTIONS(3507), - [anon_sym_const] = ACTIONS(3507), - [anon_sym_constexpr] = ACTIONS(3507), - [anon_sym_volatile] = ACTIONS(3507), - [anon_sym_restrict] = ACTIONS(3507), - [anon_sym___restrict__] = ACTIONS(3507), - [anon_sym__Atomic] = ACTIONS(3507), - [anon_sym__Noreturn] = ACTIONS(3507), - [anon_sym_noreturn] = ACTIONS(3507), - [anon_sym_mutable] = ACTIONS(3507), - [anon_sym_constinit] = ACTIONS(3507), - [anon_sym_consteval] = ACTIONS(3507), - [sym_primitive_type] = ACTIONS(3507), - [anon_sym_enum] = ACTIONS(3507), - [anon_sym_class] = ACTIONS(3507), - [anon_sym_struct] = ACTIONS(3507), - [anon_sym_union] = ACTIONS(3507), - [anon_sym_if] = ACTIONS(3507), - [anon_sym_switch] = ACTIONS(3507), - [anon_sym_case] = ACTIONS(3507), - [anon_sym_default] = ACTIONS(3507), - [anon_sym_while] = ACTIONS(3507), - [anon_sym_do] = ACTIONS(3507), - [anon_sym_for] = ACTIONS(3507), - [anon_sym_return] = ACTIONS(3507), - [anon_sym_break] = ACTIONS(3507), - [anon_sym_continue] = ACTIONS(3507), - [anon_sym_goto] = ACTIONS(3507), - [anon_sym___try] = ACTIONS(3507), - [anon_sym___leave] = ACTIONS(3507), - [anon_sym_not] = ACTIONS(3507), - [anon_sym_compl] = ACTIONS(3507), - [anon_sym_DASH_DASH] = ACTIONS(3509), - [anon_sym_PLUS_PLUS] = ACTIONS(3509), - [anon_sym_sizeof] = ACTIONS(3507), - [anon_sym___alignof__] = ACTIONS(3507), - [anon_sym___alignof] = ACTIONS(3507), - [anon_sym__alignof] = ACTIONS(3507), - [anon_sym_alignof] = ACTIONS(3507), - [anon_sym__Alignof] = ACTIONS(3507), - [anon_sym_offsetof] = ACTIONS(3507), - [anon_sym__Generic] = ACTIONS(3507), - [anon_sym_asm] = ACTIONS(3507), - [anon_sym___asm__] = ACTIONS(3507), - [sym_number_literal] = ACTIONS(3509), - [anon_sym_L_SQUOTE] = ACTIONS(3509), - [anon_sym_u_SQUOTE] = ACTIONS(3509), - [anon_sym_U_SQUOTE] = ACTIONS(3509), - [anon_sym_u8_SQUOTE] = ACTIONS(3509), - [anon_sym_SQUOTE] = ACTIONS(3509), - [anon_sym_L_DQUOTE] = ACTIONS(3509), - [anon_sym_u_DQUOTE] = ACTIONS(3509), - [anon_sym_U_DQUOTE] = ACTIONS(3509), - [anon_sym_u8_DQUOTE] = ACTIONS(3509), - [anon_sym_DQUOTE] = ACTIONS(3509), - [sym_true] = ACTIONS(3507), - [sym_false] = ACTIONS(3507), - [anon_sym_NULL] = ACTIONS(3507), - [anon_sym_nullptr] = ACTIONS(3507), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3507), - [anon_sym_decltype] = ACTIONS(3507), - [anon_sym_virtual] = ACTIONS(3507), - [anon_sym_alignas] = ACTIONS(3507), - [anon_sym_explicit] = ACTIONS(3507), - [anon_sym_typename] = ACTIONS(3507), - [anon_sym_template] = ACTIONS(3507), - [anon_sym_operator] = ACTIONS(3507), - [anon_sym_try] = ACTIONS(3507), - [anon_sym_delete] = ACTIONS(3507), - [anon_sym_throw] = ACTIONS(3507), - [anon_sym_namespace] = ACTIONS(3507), - [anon_sym_using] = ACTIONS(3507), - [anon_sym_static_assert] = ACTIONS(3507), - [anon_sym_concept] = ACTIONS(3507), - [anon_sym_co_return] = ACTIONS(3507), - [anon_sym_co_yield] = ACTIONS(3507), - [anon_sym_R_DQUOTE] = ACTIONS(3509), - [anon_sym_LR_DQUOTE] = ACTIONS(3509), - [anon_sym_uR_DQUOTE] = ACTIONS(3509), - [anon_sym_UR_DQUOTE] = ACTIONS(3509), - [anon_sym_u8R_DQUOTE] = ACTIONS(3509), - [anon_sym_co_await] = ACTIONS(3507), - [anon_sym_new] = ACTIONS(3507), - [anon_sym_requires] = ACTIONS(3507), - [sym_this] = ACTIONS(3507), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3509), - [sym_semgrep_named_ellipsis] = ACTIONS(3509), - }, - [744] = { - [sym_identifier] = ACTIONS(3630), - [aux_sym_preproc_include_token1] = ACTIONS(3630), - [aux_sym_preproc_def_token1] = ACTIONS(3630), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3632), - [aux_sym_preproc_if_token1] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), - [sym_preproc_directive] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(3632), - [anon_sym_BANG] = ACTIONS(3632), - [anon_sym_TILDE] = ACTIONS(3632), - [anon_sym_DASH] = ACTIONS(3630), - [anon_sym_PLUS] = ACTIONS(3630), - [anon_sym_STAR] = ACTIONS(3632), - [anon_sym_AMP_AMP] = ACTIONS(3632), - [anon_sym_AMP] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3632), - [anon_sym___extension__] = ACTIONS(3630), - [anon_sym_typedef] = ACTIONS(3630), - [anon_sym_extern] = ACTIONS(3630), - [anon_sym___attribute__] = ACTIONS(3630), - [anon_sym_COLON_COLON] = ACTIONS(3632), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), - [anon_sym___declspec] = ACTIONS(3630), - [anon_sym___based] = ACTIONS(3630), - [anon_sym___cdecl] = ACTIONS(3630), - [anon_sym___clrcall] = ACTIONS(3630), - [anon_sym___stdcall] = ACTIONS(3630), - [anon_sym___fastcall] = ACTIONS(3630), - [anon_sym___thiscall] = ACTIONS(3630), - [anon_sym___vectorcall] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym_RBRACE] = ACTIONS(3632), - [anon_sym_signed] = ACTIONS(3630), - [anon_sym_unsigned] = ACTIONS(3630), - [anon_sym_long] = ACTIONS(3630), - [anon_sym_short] = ACTIONS(3630), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_static] = ACTIONS(3630), - [anon_sym_register] = ACTIONS(3630), - [anon_sym_inline] = ACTIONS(3630), - [anon_sym___inline] = ACTIONS(3630), - [anon_sym___inline__] = ACTIONS(3630), - [anon_sym___forceinline] = ACTIONS(3630), - [anon_sym_thread_local] = ACTIONS(3630), - [anon_sym___thread] = ACTIONS(3630), - [anon_sym_const] = ACTIONS(3630), - [anon_sym_constexpr] = ACTIONS(3630), - [anon_sym_volatile] = ACTIONS(3630), - [anon_sym_restrict] = ACTIONS(3630), - [anon_sym___restrict__] = ACTIONS(3630), - [anon_sym__Atomic] = ACTIONS(3630), - [anon_sym__Noreturn] = ACTIONS(3630), - [anon_sym_noreturn] = ACTIONS(3630), - [anon_sym_mutable] = ACTIONS(3630), - [anon_sym_constinit] = ACTIONS(3630), - [anon_sym_consteval] = ACTIONS(3630), - [sym_primitive_type] = ACTIONS(3630), - [anon_sym_enum] = ACTIONS(3630), - [anon_sym_class] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3630), - [anon_sym_union] = ACTIONS(3630), - [anon_sym_if] = ACTIONS(3630), - [anon_sym_switch] = ACTIONS(3630), - [anon_sym_case] = ACTIONS(3630), - [anon_sym_default] = ACTIONS(3630), - [anon_sym_while] = ACTIONS(3630), - [anon_sym_do] = ACTIONS(3630), - [anon_sym_for] = ACTIONS(3630), - [anon_sym_return] = ACTIONS(3630), - [anon_sym_break] = ACTIONS(3630), - [anon_sym_continue] = ACTIONS(3630), - [anon_sym_goto] = ACTIONS(3630), - [anon_sym___try] = ACTIONS(3630), - [anon_sym___leave] = ACTIONS(3630), - [anon_sym_not] = ACTIONS(3630), - [anon_sym_compl] = ACTIONS(3630), - [anon_sym_DASH_DASH] = ACTIONS(3632), - [anon_sym_PLUS_PLUS] = ACTIONS(3632), - [anon_sym_sizeof] = ACTIONS(3630), - [anon_sym___alignof__] = ACTIONS(3630), - [anon_sym___alignof] = ACTIONS(3630), - [anon_sym__alignof] = ACTIONS(3630), - [anon_sym_alignof] = ACTIONS(3630), - [anon_sym__Alignof] = ACTIONS(3630), - [anon_sym_offsetof] = ACTIONS(3630), - [anon_sym__Generic] = ACTIONS(3630), - [anon_sym_asm] = ACTIONS(3630), - [anon_sym___asm__] = ACTIONS(3630), - [sym_number_literal] = ACTIONS(3632), - [anon_sym_L_SQUOTE] = ACTIONS(3632), - [anon_sym_u_SQUOTE] = ACTIONS(3632), - [anon_sym_U_SQUOTE] = ACTIONS(3632), - [anon_sym_u8_SQUOTE] = ACTIONS(3632), - [anon_sym_SQUOTE] = ACTIONS(3632), - [anon_sym_L_DQUOTE] = ACTIONS(3632), - [anon_sym_u_DQUOTE] = ACTIONS(3632), - [anon_sym_U_DQUOTE] = ACTIONS(3632), - [anon_sym_u8_DQUOTE] = ACTIONS(3632), - [anon_sym_DQUOTE] = ACTIONS(3632), - [sym_true] = ACTIONS(3630), - [sym_false] = ACTIONS(3630), - [anon_sym_NULL] = ACTIONS(3630), - [anon_sym_nullptr] = ACTIONS(3630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3630), - [anon_sym_decltype] = ACTIONS(3630), - [anon_sym_virtual] = ACTIONS(3630), - [anon_sym_alignas] = ACTIONS(3630), - [anon_sym_explicit] = ACTIONS(3630), - [anon_sym_typename] = ACTIONS(3630), - [anon_sym_template] = ACTIONS(3630), - [anon_sym_operator] = ACTIONS(3630), - [anon_sym_try] = ACTIONS(3630), - [anon_sym_delete] = ACTIONS(3630), - [anon_sym_throw] = ACTIONS(3630), - [anon_sym_namespace] = ACTIONS(3630), - [anon_sym_using] = ACTIONS(3630), - [anon_sym_static_assert] = ACTIONS(3630), - [anon_sym_concept] = ACTIONS(3630), - [anon_sym_co_return] = ACTIONS(3630), - [anon_sym_co_yield] = ACTIONS(3630), - [anon_sym_R_DQUOTE] = ACTIONS(3632), - [anon_sym_LR_DQUOTE] = ACTIONS(3632), - [anon_sym_uR_DQUOTE] = ACTIONS(3632), - [anon_sym_UR_DQUOTE] = ACTIONS(3632), - [anon_sym_u8R_DQUOTE] = ACTIONS(3632), - [anon_sym_co_await] = ACTIONS(3630), - [anon_sym_new] = ACTIONS(3630), - [anon_sym_requires] = ACTIONS(3630), - [sym_this] = ACTIONS(3630), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3632), - [sym_semgrep_named_ellipsis] = ACTIONS(3632), - }, - [745] = { - [sym_identifier] = ACTIONS(3354), - [aux_sym_preproc_include_token1] = ACTIONS(3354), - [aux_sym_preproc_def_token1] = ACTIONS(3354), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3356), - [aux_sym_preproc_if_token1] = ACTIONS(3354), - [aux_sym_preproc_if_token2] = ACTIONS(3354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3354), - [sym_preproc_directive] = ACTIONS(3354), - [anon_sym_LPAREN2] = ACTIONS(3356), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(3356), - [anon_sym_DASH] = ACTIONS(3354), - [anon_sym_PLUS] = ACTIONS(3354), - [anon_sym_STAR] = ACTIONS(3356), - [anon_sym_AMP_AMP] = ACTIONS(3356), - [anon_sym_AMP] = ACTIONS(3354), - [anon_sym_SEMI] = ACTIONS(3356), - [anon_sym___extension__] = ACTIONS(3354), - [anon_sym_typedef] = ACTIONS(3354), - [anon_sym_extern] = ACTIONS(3354), - [anon_sym___attribute__] = ACTIONS(3354), - [anon_sym_COLON_COLON] = ACTIONS(3356), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3356), - [anon_sym___declspec] = ACTIONS(3354), - [anon_sym___based] = ACTIONS(3354), - [anon_sym___cdecl] = ACTIONS(3354), - [anon_sym___clrcall] = ACTIONS(3354), - [anon_sym___stdcall] = ACTIONS(3354), - [anon_sym___fastcall] = ACTIONS(3354), - [anon_sym___thiscall] = ACTIONS(3354), - [anon_sym___vectorcall] = ACTIONS(3354), - [anon_sym_LBRACE] = ACTIONS(3356), - [anon_sym_signed] = ACTIONS(3354), - [anon_sym_unsigned] = ACTIONS(3354), - [anon_sym_long] = ACTIONS(3354), - [anon_sym_short] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3354), - [anon_sym_static] = ACTIONS(3354), - [anon_sym_register] = ACTIONS(3354), - [anon_sym_inline] = ACTIONS(3354), - [anon_sym___inline] = ACTIONS(3354), - [anon_sym___inline__] = ACTIONS(3354), - [anon_sym___forceinline] = ACTIONS(3354), - [anon_sym_thread_local] = ACTIONS(3354), - [anon_sym___thread] = ACTIONS(3354), - [anon_sym_const] = ACTIONS(3354), - [anon_sym_constexpr] = ACTIONS(3354), - [anon_sym_volatile] = ACTIONS(3354), - [anon_sym_restrict] = ACTIONS(3354), - [anon_sym___restrict__] = ACTIONS(3354), - [anon_sym__Atomic] = ACTIONS(3354), - [anon_sym__Noreturn] = ACTIONS(3354), - [anon_sym_noreturn] = ACTIONS(3354), - [anon_sym_mutable] = ACTIONS(3354), - [anon_sym_constinit] = ACTIONS(3354), - [anon_sym_consteval] = ACTIONS(3354), - [sym_primitive_type] = ACTIONS(3354), - [anon_sym_enum] = ACTIONS(3354), - [anon_sym_class] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(3354), - [anon_sym_union] = ACTIONS(3354), - [anon_sym_if] = ACTIONS(3354), - [anon_sym_switch] = ACTIONS(3354), - [anon_sym_case] = ACTIONS(3354), - [anon_sym_default] = ACTIONS(3354), - [anon_sym_while] = ACTIONS(3354), - [anon_sym_do] = ACTIONS(3354), - [anon_sym_for] = ACTIONS(3354), - [anon_sym_return] = ACTIONS(3354), - [anon_sym_break] = ACTIONS(3354), - [anon_sym_continue] = ACTIONS(3354), - [anon_sym_goto] = ACTIONS(3354), - [anon_sym___try] = ACTIONS(3354), - [anon_sym___leave] = ACTIONS(3354), - [anon_sym_not] = ACTIONS(3354), - [anon_sym_compl] = ACTIONS(3354), - [anon_sym_DASH_DASH] = ACTIONS(3356), - [anon_sym_PLUS_PLUS] = ACTIONS(3356), - [anon_sym_sizeof] = ACTIONS(3354), - [anon_sym___alignof__] = ACTIONS(3354), - [anon_sym___alignof] = ACTIONS(3354), - [anon_sym__alignof] = ACTIONS(3354), - [anon_sym_alignof] = ACTIONS(3354), - [anon_sym__Alignof] = ACTIONS(3354), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3354), - [anon_sym_asm] = ACTIONS(3354), - [anon_sym___asm__] = ACTIONS(3354), - [sym_number_literal] = ACTIONS(3356), - [anon_sym_L_SQUOTE] = ACTIONS(3356), - [anon_sym_u_SQUOTE] = ACTIONS(3356), - [anon_sym_U_SQUOTE] = ACTIONS(3356), - [anon_sym_u8_SQUOTE] = ACTIONS(3356), - [anon_sym_SQUOTE] = ACTIONS(3356), - [anon_sym_L_DQUOTE] = ACTIONS(3356), - [anon_sym_u_DQUOTE] = ACTIONS(3356), - [anon_sym_U_DQUOTE] = ACTIONS(3356), - [anon_sym_u8_DQUOTE] = ACTIONS(3356), - [anon_sym_DQUOTE] = ACTIONS(3356), - [sym_true] = ACTIONS(3354), - [sym_false] = ACTIONS(3354), - [anon_sym_NULL] = ACTIONS(3354), - [anon_sym_nullptr] = ACTIONS(3354), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3354), - [anon_sym_decltype] = ACTIONS(3354), - [anon_sym_virtual] = ACTIONS(3354), - [anon_sym_alignas] = ACTIONS(3354), - [anon_sym_explicit] = ACTIONS(3354), - [anon_sym_typename] = ACTIONS(3354), - [anon_sym_template] = ACTIONS(3354), - [anon_sym_operator] = ACTIONS(3354), - [anon_sym_try] = ACTIONS(3354), - [anon_sym_delete] = ACTIONS(3354), - [anon_sym_throw] = ACTIONS(3354), - [anon_sym_namespace] = ACTIONS(3354), - [anon_sym_using] = ACTIONS(3354), - [anon_sym_static_assert] = ACTIONS(3354), - [anon_sym_concept] = ACTIONS(3354), - [anon_sym_co_return] = ACTIONS(3354), - [anon_sym_co_yield] = ACTIONS(3354), - [anon_sym_R_DQUOTE] = ACTIONS(3356), - [anon_sym_LR_DQUOTE] = ACTIONS(3356), - [anon_sym_uR_DQUOTE] = ACTIONS(3356), - [anon_sym_UR_DQUOTE] = ACTIONS(3356), - [anon_sym_u8R_DQUOTE] = ACTIONS(3356), - [anon_sym_co_await] = ACTIONS(3354), - [anon_sym_new] = ACTIONS(3354), - [anon_sym_requires] = ACTIONS(3354), - [sym_this] = ACTIONS(3354), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3356), - [sym_semgrep_named_ellipsis] = ACTIONS(3356), - }, - [746] = { - [sym_identifier] = ACTIONS(3511), - [aux_sym_preproc_include_token1] = ACTIONS(3511), - [aux_sym_preproc_def_token1] = ACTIONS(3511), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3513), - [aux_sym_preproc_if_token1] = ACTIONS(3511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3511), - [sym_preproc_directive] = ACTIONS(3511), - [anon_sym_LPAREN2] = ACTIONS(3513), - [anon_sym_BANG] = ACTIONS(3513), - [anon_sym_TILDE] = ACTIONS(3513), - [anon_sym_DASH] = ACTIONS(3511), - [anon_sym_PLUS] = ACTIONS(3511), - [anon_sym_STAR] = ACTIONS(3513), - [anon_sym_AMP_AMP] = ACTIONS(3513), - [anon_sym_AMP] = ACTIONS(3511), - [anon_sym_SEMI] = ACTIONS(3513), - [anon_sym___extension__] = ACTIONS(3511), - [anon_sym_typedef] = ACTIONS(3511), - [anon_sym_extern] = ACTIONS(3511), - [anon_sym___attribute__] = ACTIONS(3511), - [anon_sym_COLON_COLON] = ACTIONS(3513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3513), - [anon_sym___declspec] = ACTIONS(3511), - [anon_sym___based] = ACTIONS(3511), - [anon_sym___cdecl] = ACTIONS(3511), - [anon_sym___clrcall] = ACTIONS(3511), - [anon_sym___stdcall] = ACTIONS(3511), - [anon_sym___fastcall] = ACTIONS(3511), - [anon_sym___thiscall] = ACTIONS(3511), - [anon_sym___vectorcall] = ACTIONS(3511), - [anon_sym_LBRACE] = ACTIONS(3513), - [anon_sym_RBRACE] = ACTIONS(3513), - [anon_sym_signed] = ACTIONS(3511), - [anon_sym_unsigned] = ACTIONS(3511), - [anon_sym_long] = ACTIONS(3511), - [anon_sym_short] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3511), - [anon_sym_static] = ACTIONS(3511), - [anon_sym_register] = ACTIONS(3511), - [anon_sym_inline] = ACTIONS(3511), - [anon_sym___inline] = ACTIONS(3511), - [anon_sym___inline__] = ACTIONS(3511), - [anon_sym___forceinline] = ACTIONS(3511), - [anon_sym_thread_local] = ACTIONS(3511), - [anon_sym___thread] = ACTIONS(3511), - [anon_sym_const] = ACTIONS(3511), - [anon_sym_constexpr] = ACTIONS(3511), - [anon_sym_volatile] = ACTIONS(3511), - [anon_sym_restrict] = ACTIONS(3511), - [anon_sym___restrict__] = ACTIONS(3511), - [anon_sym__Atomic] = ACTIONS(3511), - [anon_sym__Noreturn] = ACTIONS(3511), - [anon_sym_noreturn] = ACTIONS(3511), - [anon_sym_mutable] = ACTIONS(3511), - [anon_sym_constinit] = ACTIONS(3511), - [anon_sym_consteval] = ACTIONS(3511), - [sym_primitive_type] = ACTIONS(3511), - [anon_sym_enum] = ACTIONS(3511), - [anon_sym_class] = ACTIONS(3511), - [anon_sym_struct] = ACTIONS(3511), - [anon_sym_union] = ACTIONS(3511), - [anon_sym_if] = ACTIONS(3511), - [anon_sym_switch] = ACTIONS(3511), - [anon_sym_case] = ACTIONS(3511), - [anon_sym_default] = ACTIONS(3511), - [anon_sym_while] = ACTIONS(3511), - [anon_sym_do] = ACTIONS(3511), - [anon_sym_for] = ACTIONS(3511), - [anon_sym_return] = ACTIONS(3511), - [anon_sym_break] = ACTIONS(3511), - [anon_sym_continue] = ACTIONS(3511), - [anon_sym_goto] = ACTIONS(3511), - [anon_sym___try] = ACTIONS(3511), - [anon_sym___leave] = ACTIONS(3511), - [anon_sym_not] = ACTIONS(3511), - [anon_sym_compl] = ACTIONS(3511), - [anon_sym_DASH_DASH] = ACTIONS(3513), - [anon_sym_PLUS_PLUS] = ACTIONS(3513), - [anon_sym_sizeof] = ACTIONS(3511), - [anon_sym___alignof__] = ACTIONS(3511), - [anon_sym___alignof] = ACTIONS(3511), - [anon_sym__alignof] = ACTIONS(3511), - [anon_sym_alignof] = ACTIONS(3511), - [anon_sym__Alignof] = ACTIONS(3511), - [anon_sym_offsetof] = ACTIONS(3511), - [anon_sym__Generic] = ACTIONS(3511), - [anon_sym_asm] = ACTIONS(3511), - [anon_sym___asm__] = ACTIONS(3511), - [sym_number_literal] = ACTIONS(3513), - [anon_sym_L_SQUOTE] = ACTIONS(3513), - [anon_sym_u_SQUOTE] = ACTIONS(3513), - [anon_sym_U_SQUOTE] = ACTIONS(3513), - [anon_sym_u8_SQUOTE] = ACTIONS(3513), - [anon_sym_SQUOTE] = ACTIONS(3513), - [anon_sym_L_DQUOTE] = ACTIONS(3513), - [anon_sym_u_DQUOTE] = ACTIONS(3513), - [anon_sym_U_DQUOTE] = ACTIONS(3513), - [anon_sym_u8_DQUOTE] = ACTIONS(3513), - [anon_sym_DQUOTE] = ACTIONS(3513), - [sym_true] = ACTIONS(3511), - [sym_false] = ACTIONS(3511), - [anon_sym_NULL] = ACTIONS(3511), - [anon_sym_nullptr] = ACTIONS(3511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3511), - [anon_sym_decltype] = ACTIONS(3511), - [anon_sym_virtual] = ACTIONS(3511), - [anon_sym_alignas] = ACTIONS(3511), - [anon_sym_explicit] = ACTIONS(3511), - [anon_sym_typename] = ACTIONS(3511), - [anon_sym_template] = ACTIONS(3511), - [anon_sym_operator] = ACTIONS(3511), - [anon_sym_try] = ACTIONS(3511), - [anon_sym_delete] = ACTIONS(3511), - [anon_sym_throw] = ACTIONS(3511), - [anon_sym_namespace] = ACTIONS(3511), - [anon_sym_using] = ACTIONS(3511), - [anon_sym_static_assert] = ACTIONS(3511), - [anon_sym_concept] = ACTIONS(3511), - [anon_sym_co_return] = ACTIONS(3511), - [anon_sym_co_yield] = ACTIONS(3511), - [anon_sym_R_DQUOTE] = ACTIONS(3513), - [anon_sym_LR_DQUOTE] = ACTIONS(3513), - [anon_sym_uR_DQUOTE] = ACTIONS(3513), - [anon_sym_UR_DQUOTE] = ACTIONS(3513), - [anon_sym_u8R_DQUOTE] = ACTIONS(3513), - [anon_sym_co_await] = ACTIONS(3511), - [anon_sym_new] = ACTIONS(3511), - [anon_sym_requires] = ACTIONS(3511), - [sym_this] = ACTIONS(3511), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3513), - [sym_semgrep_named_ellipsis] = ACTIONS(3513), - }, - [747] = { - [sym_identifier] = ACTIONS(3515), - [aux_sym_preproc_include_token1] = ACTIONS(3515), - [aux_sym_preproc_def_token1] = ACTIONS(3515), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3517), - [aux_sym_preproc_if_token1] = ACTIONS(3515), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3515), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3515), - [sym_preproc_directive] = ACTIONS(3515), - [anon_sym_LPAREN2] = ACTIONS(3517), - [anon_sym_BANG] = ACTIONS(3517), - [anon_sym_TILDE] = ACTIONS(3517), - [anon_sym_DASH] = ACTIONS(3515), - [anon_sym_PLUS] = ACTIONS(3515), - [anon_sym_STAR] = ACTIONS(3517), - [anon_sym_AMP_AMP] = ACTIONS(3517), - [anon_sym_AMP] = ACTIONS(3515), - [anon_sym_SEMI] = ACTIONS(3517), - [anon_sym___extension__] = ACTIONS(3515), - [anon_sym_typedef] = ACTIONS(3515), - [anon_sym_extern] = ACTIONS(3515), - [anon_sym___attribute__] = ACTIONS(3515), - [anon_sym_COLON_COLON] = ACTIONS(3517), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3517), - [anon_sym___declspec] = ACTIONS(3515), - [anon_sym___based] = ACTIONS(3515), - [anon_sym___cdecl] = ACTIONS(3515), - [anon_sym___clrcall] = ACTIONS(3515), - [anon_sym___stdcall] = ACTIONS(3515), - [anon_sym___fastcall] = ACTIONS(3515), - [anon_sym___thiscall] = ACTIONS(3515), - [anon_sym___vectorcall] = ACTIONS(3515), - [anon_sym_LBRACE] = ACTIONS(3517), - [anon_sym_RBRACE] = ACTIONS(3517), - [anon_sym_signed] = ACTIONS(3515), - [anon_sym_unsigned] = ACTIONS(3515), - [anon_sym_long] = ACTIONS(3515), - [anon_sym_short] = ACTIONS(3515), - [anon_sym_LBRACK] = ACTIONS(3515), - [anon_sym_static] = ACTIONS(3515), - [anon_sym_register] = ACTIONS(3515), - [anon_sym_inline] = ACTIONS(3515), - [anon_sym___inline] = ACTIONS(3515), - [anon_sym___inline__] = ACTIONS(3515), - [anon_sym___forceinline] = ACTIONS(3515), - [anon_sym_thread_local] = ACTIONS(3515), - [anon_sym___thread] = ACTIONS(3515), - [anon_sym_const] = ACTIONS(3515), - [anon_sym_constexpr] = ACTIONS(3515), - [anon_sym_volatile] = ACTIONS(3515), - [anon_sym_restrict] = ACTIONS(3515), - [anon_sym___restrict__] = ACTIONS(3515), - [anon_sym__Atomic] = ACTIONS(3515), - [anon_sym__Noreturn] = ACTIONS(3515), - [anon_sym_noreturn] = ACTIONS(3515), - [anon_sym_mutable] = ACTIONS(3515), - [anon_sym_constinit] = ACTIONS(3515), - [anon_sym_consteval] = ACTIONS(3515), - [sym_primitive_type] = ACTIONS(3515), - [anon_sym_enum] = ACTIONS(3515), - [anon_sym_class] = ACTIONS(3515), - [anon_sym_struct] = ACTIONS(3515), - [anon_sym_union] = ACTIONS(3515), - [anon_sym_if] = ACTIONS(3515), - [anon_sym_switch] = ACTIONS(3515), - [anon_sym_case] = ACTIONS(3515), - [anon_sym_default] = ACTIONS(3515), - [anon_sym_while] = ACTIONS(3515), - [anon_sym_do] = ACTIONS(3515), - [anon_sym_for] = ACTIONS(3515), - [anon_sym_return] = ACTIONS(3515), - [anon_sym_break] = ACTIONS(3515), - [anon_sym_continue] = ACTIONS(3515), - [anon_sym_goto] = ACTIONS(3515), - [anon_sym___try] = ACTIONS(3515), - [anon_sym___leave] = ACTIONS(3515), - [anon_sym_not] = ACTIONS(3515), - [anon_sym_compl] = ACTIONS(3515), - [anon_sym_DASH_DASH] = ACTIONS(3517), - [anon_sym_PLUS_PLUS] = ACTIONS(3517), - [anon_sym_sizeof] = ACTIONS(3515), - [anon_sym___alignof__] = ACTIONS(3515), - [anon_sym___alignof] = ACTIONS(3515), - [anon_sym__alignof] = ACTIONS(3515), - [anon_sym_alignof] = ACTIONS(3515), - [anon_sym__Alignof] = ACTIONS(3515), - [anon_sym_offsetof] = ACTIONS(3515), - [anon_sym__Generic] = ACTIONS(3515), - [anon_sym_asm] = ACTIONS(3515), - [anon_sym___asm__] = ACTIONS(3515), - [sym_number_literal] = ACTIONS(3517), - [anon_sym_L_SQUOTE] = ACTIONS(3517), - [anon_sym_u_SQUOTE] = ACTIONS(3517), - [anon_sym_U_SQUOTE] = ACTIONS(3517), - [anon_sym_u8_SQUOTE] = ACTIONS(3517), - [anon_sym_SQUOTE] = ACTIONS(3517), - [anon_sym_L_DQUOTE] = ACTIONS(3517), - [anon_sym_u_DQUOTE] = ACTIONS(3517), - [anon_sym_U_DQUOTE] = ACTIONS(3517), - [anon_sym_u8_DQUOTE] = ACTIONS(3517), - [anon_sym_DQUOTE] = ACTIONS(3517), - [sym_true] = ACTIONS(3515), - [sym_false] = ACTIONS(3515), - [anon_sym_NULL] = ACTIONS(3515), - [anon_sym_nullptr] = ACTIONS(3515), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3515), - [anon_sym_decltype] = ACTIONS(3515), - [anon_sym_virtual] = ACTIONS(3515), - [anon_sym_alignas] = ACTIONS(3515), - [anon_sym_explicit] = ACTIONS(3515), - [anon_sym_typename] = ACTIONS(3515), - [anon_sym_template] = ACTIONS(3515), - [anon_sym_operator] = ACTIONS(3515), - [anon_sym_try] = ACTIONS(3515), - [anon_sym_delete] = ACTIONS(3515), - [anon_sym_throw] = ACTIONS(3515), - [anon_sym_namespace] = ACTIONS(3515), - [anon_sym_using] = ACTIONS(3515), - [anon_sym_static_assert] = ACTIONS(3515), - [anon_sym_concept] = ACTIONS(3515), - [anon_sym_co_return] = ACTIONS(3515), - [anon_sym_co_yield] = ACTIONS(3515), - [anon_sym_R_DQUOTE] = ACTIONS(3517), - [anon_sym_LR_DQUOTE] = ACTIONS(3517), - [anon_sym_uR_DQUOTE] = ACTIONS(3517), - [anon_sym_UR_DQUOTE] = ACTIONS(3517), - [anon_sym_u8R_DQUOTE] = ACTIONS(3517), - [anon_sym_co_await] = ACTIONS(3515), - [anon_sym_new] = ACTIONS(3515), - [anon_sym_requires] = ACTIONS(3515), - [sym_this] = ACTIONS(3515), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3517), - [sym_semgrep_named_ellipsis] = ACTIONS(3517), - }, - [748] = { - [sym_identifier] = ACTIONS(3358), - [aux_sym_preproc_include_token1] = ACTIONS(3358), - [aux_sym_preproc_def_token1] = ACTIONS(3358), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3360), - [aux_sym_preproc_if_token1] = ACTIONS(3358), - [aux_sym_preproc_if_token2] = ACTIONS(3358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3358), - [sym_preproc_directive] = ACTIONS(3358), - [anon_sym_LPAREN2] = ACTIONS(3360), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_AMP_AMP] = ACTIONS(3360), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_SEMI] = ACTIONS(3360), - [anon_sym___extension__] = ACTIONS(3358), - [anon_sym_typedef] = ACTIONS(3358), - [anon_sym_extern] = ACTIONS(3358), - [anon_sym___attribute__] = ACTIONS(3358), - [anon_sym_COLON_COLON] = ACTIONS(3360), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3360), - [anon_sym___declspec] = ACTIONS(3358), - [anon_sym___based] = ACTIONS(3358), - [anon_sym___cdecl] = ACTIONS(3358), - [anon_sym___clrcall] = ACTIONS(3358), - [anon_sym___stdcall] = ACTIONS(3358), - [anon_sym___fastcall] = ACTIONS(3358), - [anon_sym___thiscall] = ACTIONS(3358), - [anon_sym___vectorcall] = ACTIONS(3358), - [anon_sym_LBRACE] = ACTIONS(3360), - [anon_sym_signed] = ACTIONS(3358), - [anon_sym_unsigned] = ACTIONS(3358), - [anon_sym_long] = ACTIONS(3358), - [anon_sym_short] = ACTIONS(3358), - [anon_sym_LBRACK] = ACTIONS(3358), - [anon_sym_static] = ACTIONS(3358), - [anon_sym_register] = ACTIONS(3358), - [anon_sym_inline] = ACTIONS(3358), - [anon_sym___inline] = ACTIONS(3358), - [anon_sym___inline__] = ACTIONS(3358), - [anon_sym___forceinline] = ACTIONS(3358), - [anon_sym_thread_local] = ACTIONS(3358), - [anon_sym___thread] = ACTIONS(3358), - [anon_sym_const] = ACTIONS(3358), - [anon_sym_constexpr] = ACTIONS(3358), - [anon_sym_volatile] = ACTIONS(3358), - [anon_sym_restrict] = ACTIONS(3358), - [anon_sym___restrict__] = ACTIONS(3358), - [anon_sym__Atomic] = ACTIONS(3358), - [anon_sym__Noreturn] = ACTIONS(3358), - [anon_sym_noreturn] = ACTIONS(3358), - [anon_sym_mutable] = ACTIONS(3358), - [anon_sym_constinit] = ACTIONS(3358), - [anon_sym_consteval] = ACTIONS(3358), - [sym_primitive_type] = ACTIONS(3358), - [anon_sym_enum] = ACTIONS(3358), - [anon_sym_class] = ACTIONS(3358), - [anon_sym_struct] = ACTIONS(3358), - [anon_sym_union] = ACTIONS(3358), - [anon_sym_if] = ACTIONS(3358), - [anon_sym_switch] = ACTIONS(3358), - [anon_sym_case] = ACTIONS(3358), - [anon_sym_default] = ACTIONS(3358), - [anon_sym_while] = ACTIONS(3358), - [anon_sym_do] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3358), - [anon_sym_return] = ACTIONS(3358), - [anon_sym_break] = ACTIONS(3358), - [anon_sym_continue] = ACTIONS(3358), - [anon_sym_goto] = ACTIONS(3358), - [anon_sym___try] = ACTIONS(3358), - [anon_sym___leave] = ACTIONS(3358), - [anon_sym_not] = ACTIONS(3358), - [anon_sym_compl] = ACTIONS(3358), - [anon_sym_DASH_DASH] = ACTIONS(3360), - [anon_sym_PLUS_PLUS] = ACTIONS(3360), - [anon_sym_sizeof] = ACTIONS(3358), - [anon_sym___alignof__] = ACTIONS(3358), - [anon_sym___alignof] = ACTIONS(3358), - [anon_sym__alignof] = ACTIONS(3358), - [anon_sym_alignof] = ACTIONS(3358), - [anon_sym__Alignof] = ACTIONS(3358), - [anon_sym_offsetof] = ACTIONS(3358), - [anon_sym__Generic] = ACTIONS(3358), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3360), - [anon_sym_u_SQUOTE] = ACTIONS(3360), - [anon_sym_U_SQUOTE] = ACTIONS(3360), - [anon_sym_u8_SQUOTE] = ACTIONS(3360), - [anon_sym_SQUOTE] = ACTIONS(3360), - [anon_sym_L_DQUOTE] = ACTIONS(3360), - [anon_sym_u_DQUOTE] = ACTIONS(3360), - [anon_sym_U_DQUOTE] = ACTIONS(3360), - [anon_sym_u8_DQUOTE] = ACTIONS(3360), - [anon_sym_DQUOTE] = ACTIONS(3360), - [sym_true] = ACTIONS(3358), - [sym_false] = ACTIONS(3358), - [anon_sym_NULL] = ACTIONS(3358), - [anon_sym_nullptr] = ACTIONS(3358), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3358), - [anon_sym_decltype] = ACTIONS(3358), - [anon_sym_virtual] = ACTIONS(3358), - [anon_sym_alignas] = ACTIONS(3358), - [anon_sym_explicit] = ACTIONS(3358), - [anon_sym_typename] = ACTIONS(3358), - [anon_sym_template] = ACTIONS(3358), - [anon_sym_operator] = ACTIONS(3358), - [anon_sym_try] = ACTIONS(3358), - [anon_sym_delete] = ACTIONS(3358), - [anon_sym_throw] = ACTIONS(3358), - [anon_sym_namespace] = ACTIONS(3358), - [anon_sym_using] = ACTIONS(3358), - [anon_sym_static_assert] = ACTIONS(3358), - [anon_sym_concept] = ACTIONS(3358), - [anon_sym_co_return] = ACTIONS(3358), - [anon_sym_co_yield] = ACTIONS(3358), - [anon_sym_R_DQUOTE] = ACTIONS(3360), - [anon_sym_LR_DQUOTE] = ACTIONS(3360), - [anon_sym_uR_DQUOTE] = ACTIONS(3360), - [anon_sym_UR_DQUOTE] = ACTIONS(3360), - [anon_sym_u8R_DQUOTE] = ACTIONS(3360), - [anon_sym_co_await] = ACTIONS(3358), - [anon_sym_new] = ACTIONS(3358), - [anon_sym_requires] = ACTIONS(3358), - [sym_this] = ACTIONS(3358), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3360), - [sym_semgrep_named_ellipsis] = ACTIONS(3360), - }, [749] = { - [sym_identifier] = ACTIONS(3652), - [aux_sym_preproc_include_token1] = ACTIONS(3652), - [aux_sym_preproc_def_token1] = ACTIONS(3652), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3654), - [aux_sym_preproc_if_token1] = ACTIONS(3652), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3652), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3652), - [sym_preproc_directive] = ACTIONS(3652), - [anon_sym_LPAREN2] = ACTIONS(3654), - [anon_sym_BANG] = ACTIONS(3654), - [anon_sym_TILDE] = ACTIONS(3654), - [anon_sym_DASH] = ACTIONS(3652), - [anon_sym_PLUS] = ACTIONS(3652), - [anon_sym_STAR] = ACTIONS(3654), - [anon_sym_AMP_AMP] = ACTIONS(3654), - [anon_sym_AMP] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3654), - [anon_sym___extension__] = ACTIONS(3652), - [anon_sym_typedef] = ACTIONS(3652), - [anon_sym_extern] = ACTIONS(3652), - [anon_sym___attribute__] = ACTIONS(3652), - [anon_sym_COLON_COLON] = ACTIONS(3654), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3654), - [anon_sym___declspec] = ACTIONS(3652), - [anon_sym___based] = ACTIONS(3652), - [anon_sym___cdecl] = ACTIONS(3652), - [anon_sym___clrcall] = ACTIONS(3652), - [anon_sym___stdcall] = ACTIONS(3652), - [anon_sym___fastcall] = ACTIONS(3652), - [anon_sym___thiscall] = ACTIONS(3652), - [anon_sym___vectorcall] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3654), - [anon_sym_RBRACE] = ACTIONS(3654), - [anon_sym_signed] = ACTIONS(3652), - [anon_sym_unsigned] = ACTIONS(3652), - [anon_sym_long] = ACTIONS(3652), - [anon_sym_short] = ACTIONS(3652), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_static] = ACTIONS(3652), - [anon_sym_register] = ACTIONS(3652), - [anon_sym_inline] = ACTIONS(3652), - [anon_sym___inline] = ACTIONS(3652), - [anon_sym___inline__] = ACTIONS(3652), - [anon_sym___forceinline] = ACTIONS(3652), - [anon_sym_thread_local] = ACTIONS(3652), - [anon_sym___thread] = ACTIONS(3652), - [anon_sym_const] = ACTIONS(3652), - [anon_sym_constexpr] = ACTIONS(3652), - [anon_sym_volatile] = ACTIONS(3652), - [anon_sym_restrict] = ACTIONS(3652), - [anon_sym___restrict__] = ACTIONS(3652), - [anon_sym__Atomic] = ACTIONS(3652), - [anon_sym__Noreturn] = ACTIONS(3652), - [anon_sym_noreturn] = ACTIONS(3652), - [anon_sym_mutable] = ACTIONS(3652), - [anon_sym_constinit] = ACTIONS(3652), - [anon_sym_consteval] = ACTIONS(3652), - [sym_primitive_type] = ACTIONS(3652), - [anon_sym_enum] = ACTIONS(3652), - [anon_sym_class] = ACTIONS(3652), - [anon_sym_struct] = ACTIONS(3652), - [anon_sym_union] = ACTIONS(3652), - [anon_sym_if] = ACTIONS(3652), - [anon_sym_switch] = ACTIONS(3652), - [anon_sym_case] = ACTIONS(3652), - [anon_sym_default] = ACTIONS(3652), - [anon_sym_while] = ACTIONS(3652), - [anon_sym_do] = ACTIONS(3652), - [anon_sym_for] = ACTIONS(3652), - [anon_sym_return] = ACTIONS(3652), - [anon_sym_break] = ACTIONS(3652), - [anon_sym_continue] = ACTIONS(3652), - [anon_sym_goto] = ACTIONS(3652), - [anon_sym___try] = ACTIONS(3652), - [anon_sym___leave] = ACTIONS(3652), - [anon_sym_not] = ACTIONS(3652), - [anon_sym_compl] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3654), - [anon_sym_PLUS_PLUS] = ACTIONS(3654), - [anon_sym_sizeof] = ACTIONS(3652), - [anon_sym___alignof__] = ACTIONS(3652), - [anon_sym___alignof] = ACTIONS(3652), - [anon_sym__alignof] = ACTIONS(3652), - [anon_sym_alignof] = ACTIONS(3652), - [anon_sym__Alignof] = ACTIONS(3652), - [anon_sym_offsetof] = ACTIONS(3652), - [anon_sym__Generic] = ACTIONS(3652), - [anon_sym_asm] = ACTIONS(3652), - [anon_sym___asm__] = ACTIONS(3652), - [sym_number_literal] = ACTIONS(3654), - [anon_sym_L_SQUOTE] = ACTIONS(3654), - [anon_sym_u_SQUOTE] = ACTIONS(3654), - [anon_sym_U_SQUOTE] = ACTIONS(3654), - [anon_sym_u8_SQUOTE] = ACTIONS(3654), - [anon_sym_SQUOTE] = ACTIONS(3654), - [anon_sym_L_DQUOTE] = ACTIONS(3654), - [anon_sym_u_DQUOTE] = ACTIONS(3654), - [anon_sym_U_DQUOTE] = ACTIONS(3654), - [anon_sym_u8_DQUOTE] = ACTIONS(3654), - [anon_sym_DQUOTE] = ACTIONS(3654), - [sym_true] = ACTIONS(3652), - [sym_false] = ACTIONS(3652), - [anon_sym_NULL] = ACTIONS(3652), - [anon_sym_nullptr] = ACTIONS(3652), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3652), - [anon_sym_decltype] = ACTIONS(3652), - [anon_sym_virtual] = ACTIONS(3652), - [anon_sym_alignas] = ACTIONS(3652), - [anon_sym_explicit] = ACTIONS(3652), - [anon_sym_typename] = ACTIONS(3652), - [anon_sym_template] = ACTIONS(3652), - [anon_sym_operator] = ACTIONS(3652), - [anon_sym_try] = ACTIONS(3652), - [anon_sym_delete] = ACTIONS(3652), - [anon_sym_throw] = ACTIONS(3652), - [anon_sym_namespace] = ACTIONS(3652), - [anon_sym_using] = ACTIONS(3652), - [anon_sym_static_assert] = ACTIONS(3652), - [anon_sym_concept] = ACTIONS(3652), - [anon_sym_co_return] = ACTIONS(3652), - [anon_sym_co_yield] = ACTIONS(3652), - [anon_sym_R_DQUOTE] = ACTIONS(3654), - [anon_sym_LR_DQUOTE] = ACTIONS(3654), - [anon_sym_uR_DQUOTE] = ACTIONS(3654), - [anon_sym_UR_DQUOTE] = ACTIONS(3654), - [anon_sym_u8R_DQUOTE] = ACTIONS(3654), - [anon_sym_co_await] = ACTIONS(3652), - [anon_sym_new] = ACTIONS(3652), - [anon_sym_requires] = ACTIONS(3652), - [sym_this] = ACTIONS(3652), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3654), - [sym_semgrep_named_ellipsis] = ACTIONS(3654), + [sym_identifier] = ACTIONS(3577), + [aux_sym_preproc_include_token1] = ACTIONS(3577), + [aux_sym_preproc_def_token1] = ACTIONS(3577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3579), + [aux_sym_preproc_if_token1] = ACTIONS(3577), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3577), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3577), + [sym_preproc_directive] = ACTIONS(3577), + [anon_sym_LPAREN2] = ACTIONS(3579), + [anon_sym_BANG] = ACTIONS(3579), + [anon_sym_TILDE] = ACTIONS(3579), + [anon_sym_DASH] = ACTIONS(3577), + [anon_sym_PLUS] = ACTIONS(3577), + [anon_sym_STAR] = ACTIONS(3579), + [anon_sym_AMP_AMP] = ACTIONS(3579), + [anon_sym_AMP] = ACTIONS(3577), + [anon_sym_SEMI] = ACTIONS(3579), + [anon_sym___extension__] = ACTIONS(3577), + [anon_sym_typedef] = ACTIONS(3577), + [anon_sym_extern] = ACTIONS(3577), + [anon_sym___attribute__] = ACTIONS(3577), + [anon_sym_COLON_COLON] = ACTIONS(3579), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3579), + [anon_sym___declspec] = ACTIONS(3577), + [anon_sym___based] = ACTIONS(3577), + [anon_sym___cdecl] = ACTIONS(3577), + [anon_sym___clrcall] = ACTIONS(3577), + [anon_sym___stdcall] = ACTIONS(3577), + [anon_sym___fastcall] = ACTIONS(3577), + [anon_sym___thiscall] = ACTIONS(3577), + [anon_sym___vectorcall] = ACTIONS(3577), + [anon_sym_LBRACE] = ACTIONS(3579), + [anon_sym_RBRACE] = ACTIONS(3579), + [anon_sym_signed] = ACTIONS(3577), + [anon_sym_unsigned] = ACTIONS(3577), + [anon_sym_long] = ACTIONS(3577), + [anon_sym_short] = ACTIONS(3577), + [anon_sym_LBRACK] = ACTIONS(3577), + [anon_sym_static] = ACTIONS(3577), + [anon_sym_register] = ACTIONS(3577), + [anon_sym_inline] = ACTIONS(3577), + [anon_sym___inline] = ACTIONS(3577), + [anon_sym___inline__] = ACTIONS(3577), + [anon_sym___forceinline] = ACTIONS(3577), + [anon_sym_thread_local] = ACTIONS(3577), + [anon_sym___thread] = ACTIONS(3577), + [anon_sym_const] = ACTIONS(3577), + [anon_sym_constexpr] = ACTIONS(3577), + [anon_sym_volatile] = ACTIONS(3577), + [anon_sym_restrict] = ACTIONS(3577), + [anon_sym___restrict__] = ACTIONS(3577), + [anon_sym__Atomic] = ACTIONS(3577), + [anon_sym__Noreturn] = ACTIONS(3577), + [anon_sym_noreturn] = ACTIONS(3577), + [anon_sym_mutable] = ACTIONS(3577), + [anon_sym_constinit] = ACTIONS(3577), + [anon_sym_consteval] = ACTIONS(3577), + [sym_primitive_type] = ACTIONS(3577), + [anon_sym_enum] = ACTIONS(3577), + [anon_sym_class] = ACTIONS(3577), + [anon_sym_struct] = ACTIONS(3577), + [anon_sym_union] = ACTIONS(3577), + [anon_sym_if] = ACTIONS(3577), + [anon_sym_switch] = ACTIONS(3577), + [anon_sym_case] = ACTIONS(3577), + [anon_sym_default] = ACTIONS(3577), + [anon_sym_while] = ACTIONS(3577), + [anon_sym_do] = ACTIONS(3577), + [anon_sym_for] = ACTIONS(3577), + [anon_sym_return] = ACTIONS(3577), + [anon_sym_break] = ACTIONS(3577), + [anon_sym_continue] = ACTIONS(3577), + [anon_sym_goto] = ACTIONS(3577), + [anon_sym___try] = ACTIONS(3577), + [anon_sym___leave] = ACTIONS(3577), + [anon_sym_not] = ACTIONS(3577), + [anon_sym_compl] = ACTIONS(3577), + [anon_sym_DASH_DASH] = ACTIONS(3579), + [anon_sym_PLUS_PLUS] = ACTIONS(3579), + [anon_sym_sizeof] = ACTIONS(3577), + [anon_sym___alignof__] = ACTIONS(3577), + [anon_sym___alignof] = ACTIONS(3577), + [anon_sym__alignof] = ACTIONS(3577), + [anon_sym_alignof] = ACTIONS(3577), + [anon_sym__Alignof] = ACTIONS(3577), + [anon_sym_offsetof] = ACTIONS(3577), + [anon_sym__Generic] = ACTIONS(3577), + [anon_sym_asm] = ACTIONS(3577), + [anon_sym___asm__] = ACTIONS(3577), + [sym_number_literal] = ACTIONS(3579), + [anon_sym_L_SQUOTE] = ACTIONS(3579), + [anon_sym_u_SQUOTE] = ACTIONS(3579), + [anon_sym_U_SQUOTE] = ACTIONS(3579), + [anon_sym_u8_SQUOTE] = ACTIONS(3579), + [anon_sym_SQUOTE] = ACTIONS(3579), + [anon_sym_L_DQUOTE] = ACTIONS(3579), + [anon_sym_u_DQUOTE] = ACTIONS(3579), + [anon_sym_U_DQUOTE] = ACTIONS(3579), + [anon_sym_u8_DQUOTE] = ACTIONS(3579), + [anon_sym_DQUOTE] = ACTIONS(3579), + [sym_true] = ACTIONS(3577), + [sym_false] = ACTIONS(3577), + [anon_sym_NULL] = ACTIONS(3577), + [anon_sym_nullptr] = ACTIONS(3577), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3577), + [anon_sym_decltype] = ACTIONS(3577), + [anon_sym_virtual] = ACTIONS(3577), + [anon_sym_alignas] = ACTIONS(3577), + [anon_sym_explicit] = ACTIONS(3577), + [anon_sym_typename] = ACTIONS(3577), + [anon_sym_template] = ACTIONS(3577), + [anon_sym_operator] = ACTIONS(3577), + [anon_sym_try] = ACTIONS(3577), + [anon_sym_delete] = ACTIONS(3577), + [anon_sym_throw] = ACTIONS(3577), + [anon_sym_namespace] = ACTIONS(3577), + [anon_sym_using] = ACTIONS(3577), + [anon_sym_static_assert] = ACTIONS(3577), + [anon_sym_concept] = ACTIONS(3577), + [anon_sym_co_return] = ACTIONS(3577), + [anon_sym_co_yield] = ACTIONS(3577), + [anon_sym_R_DQUOTE] = ACTIONS(3579), + [anon_sym_LR_DQUOTE] = ACTIONS(3579), + [anon_sym_uR_DQUOTE] = ACTIONS(3579), + [anon_sym_UR_DQUOTE] = ACTIONS(3579), + [anon_sym_u8R_DQUOTE] = ACTIONS(3579), + [anon_sym_co_await] = ACTIONS(3577), + [anon_sym_new] = ACTIONS(3577), + [anon_sym_requires] = ACTIONS(3577), + [sym_this] = ACTIONS(3577), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3579), + [sym_semgrep_named_ellipsis] = ACTIONS(3579), }, [750] = { - [sym_identifier] = ACTIONS(3487), - [aux_sym_preproc_include_token1] = ACTIONS(3487), - [aux_sym_preproc_def_token1] = ACTIONS(3487), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3489), - [aux_sym_preproc_if_token1] = ACTIONS(3487), - [aux_sym_preproc_if_token2] = ACTIONS(3487), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3487), - [sym_preproc_directive] = ACTIONS(3487), - [anon_sym_LPAREN2] = ACTIONS(3489), - [anon_sym_BANG] = ACTIONS(3489), - [anon_sym_TILDE] = ACTIONS(3489), - [anon_sym_DASH] = ACTIONS(3487), - [anon_sym_PLUS] = ACTIONS(3487), - [anon_sym_STAR] = ACTIONS(3489), - [anon_sym_AMP_AMP] = ACTIONS(3489), - [anon_sym_AMP] = ACTIONS(3487), - [anon_sym_SEMI] = ACTIONS(3489), - [anon_sym___extension__] = ACTIONS(3487), - [anon_sym_typedef] = 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___cdecl] = ACTIONS(3487), - [anon_sym___clrcall] = ACTIONS(3487), - [anon_sym___stdcall] = ACTIONS(3487), - [anon_sym___fastcall] = ACTIONS(3487), - [anon_sym___thiscall] = ACTIONS(3487), - [anon_sym___vectorcall] = ACTIONS(3487), - [anon_sym_LBRACE] = ACTIONS(3489), - [anon_sym_signed] = ACTIONS(3487), - [anon_sym_unsigned] = ACTIONS(3487), - [anon_sym_long] = ACTIONS(3487), - [anon_sym_short] = ACTIONS(3487), - [anon_sym_LBRACK] = ACTIONS(3487), - [anon_sym_static] = ACTIONS(3487), - [anon_sym_register] = ACTIONS(3487), - [anon_sym_inline] = ACTIONS(3487), - [anon_sym___inline] = ACTIONS(3487), - [anon_sym___inline__] = ACTIONS(3487), - [anon_sym___forceinline] = ACTIONS(3487), - [anon_sym_thread_local] = ACTIONS(3487), - [anon_sym___thread] = ACTIONS(3487), - [anon_sym_const] = ACTIONS(3487), - [anon_sym_constexpr] = ACTIONS(3487), - [anon_sym_volatile] = ACTIONS(3487), - [anon_sym_restrict] = ACTIONS(3487), - [anon_sym___restrict__] = ACTIONS(3487), - [anon_sym__Atomic] = ACTIONS(3487), - [anon_sym__Noreturn] = ACTIONS(3487), - [anon_sym_noreturn] = ACTIONS(3487), - [anon_sym_mutable] = ACTIONS(3487), - [anon_sym_constinit] = ACTIONS(3487), - [anon_sym_consteval] = ACTIONS(3487), - [sym_primitive_type] = ACTIONS(3487), - [anon_sym_enum] = ACTIONS(3487), - [anon_sym_class] = ACTIONS(3487), - [anon_sym_struct] = ACTIONS(3487), - [anon_sym_union] = ACTIONS(3487), - [anon_sym_if] = ACTIONS(3487), - [anon_sym_switch] = ACTIONS(3487), - [anon_sym_case] = ACTIONS(3487), - [anon_sym_default] = ACTIONS(3487), - [anon_sym_while] = ACTIONS(3487), - [anon_sym_do] = ACTIONS(3487), - [anon_sym_for] = ACTIONS(3487), - [anon_sym_return] = ACTIONS(3487), - [anon_sym_break] = ACTIONS(3487), - [anon_sym_continue] = ACTIONS(3487), - [anon_sym_goto] = ACTIONS(3487), - [anon_sym___try] = ACTIONS(3487), - [anon_sym___leave] = ACTIONS(3487), - [anon_sym_not] = ACTIONS(3487), - [anon_sym_compl] = ACTIONS(3487), - [anon_sym_DASH_DASH] = ACTIONS(3489), - [anon_sym_PLUS_PLUS] = ACTIONS(3489), - [anon_sym_sizeof] = ACTIONS(3487), - [anon_sym___alignof__] = ACTIONS(3487), - [anon_sym___alignof] = ACTIONS(3487), - [anon_sym__alignof] = ACTIONS(3487), - [anon_sym_alignof] = ACTIONS(3487), - [anon_sym__Alignof] = ACTIONS(3487), - [anon_sym_offsetof] = ACTIONS(3487), - [anon_sym__Generic] = ACTIONS(3487), - [anon_sym_asm] = ACTIONS(3487), - [anon_sym___asm__] = ACTIONS(3487), - [sym_number_literal] = ACTIONS(3489), - [anon_sym_L_SQUOTE] = ACTIONS(3489), - [anon_sym_u_SQUOTE] = ACTIONS(3489), - [anon_sym_U_SQUOTE] = ACTIONS(3489), - [anon_sym_u8_SQUOTE] = ACTIONS(3489), - [anon_sym_SQUOTE] = ACTIONS(3489), - [anon_sym_L_DQUOTE] = ACTIONS(3489), - [anon_sym_u_DQUOTE] = ACTIONS(3489), - [anon_sym_U_DQUOTE] = ACTIONS(3489), - [anon_sym_u8_DQUOTE] = ACTIONS(3489), - [anon_sym_DQUOTE] = ACTIONS(3489), - [sym_true] = ACTIONS(3487), - [sym_false] = ACTIONS(3487), - [anon_sym_NULL] = ACTIONS(3487), - [anon_sym_nullptr] = ACTIONS(3487), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3487), - [anon_sym_decltype] = ACTIONS(3487), - [anon_sym_virtual] = ACTIONS(3487), - [anon_sym_alignas] = ACTIONS(3487), - [anon_sym_explicit] = ACTIONS(3487), - [anon_sym_typename] = ACTIONS(3487), - [anon_sym_template] = ACTIONS(3487), - [anon_sym_operator] = ACTIONS(3487), - [anon_sym_try] = ACTIONS(3487), - [anon_sym_delete] = ACTIONS(3487), - [anon_sym_throw] = ACTIONS(3487), - [anon_sym_namespace] = ACTIONS(3487), - [anon_sym_using] = ACTIONS(3487), - [anon_sym_static_assert] = ACTIONS(3487), - [anon_sym_concept] = ACTIONS(3487), - [anon_sym_co_return] = ACTIONS(3487), - [anon_sym_co_yield] = ACTIONS(3487), - [anon_sym_R_DQUOTE] = ACTIONS(3489), - [anon_sym_LR_DQUOTE] = ACTIONS(3489), - [anon_sym_uR_DQUOTE] = ACTIONS(3489), - [anon_sym_UR_DQUOTE] = ACTIONS(3489), - [anon_sym_u8R_DQUOTE] = ACTIONS(3489), - [anon_sym_co_await] = ACTIONS(3487), - [anon_sym_new] = ACTIONS(3487), - [anon_sym_requires] = ACTIONS(3487), - [sym_this] = ACTIONS(3487), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3489), - [sym_semgrep_named_ellipsis] = ACTIONS(3489), + [sym_identifier] = ACTIONS(3406), + [aux_sym_preproc_include_token1] = ACTIONS(3406), + [aux_sym_preproc_def_token1] = ACTIONS(3406), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3408), + [aux_sym_preproc_if_token1] = ACTIONS(3406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3406), + [sym_preproc_directive] = ACTIONS(3406), + [anon_sym_LPAREN2] = ACTIONS(3408), + [anon_sym_BANG] = ACTIONS(3408), + [anon_sym_TILDE] = ACTIONS(3408), + [anon_sym_DASH] = ACTIONS(3406), + [anon_sym_PLUS] = ACTIONS(3406), + [anon_sym_STAR] = ACTIONS(3408), + [anon_sym_AMP_AMP] = ACTIONS(3408), + [anon_sym_AMP] = ACTIONS(3406), + [anon_sym_SEMI] = ACTIONS(3408), + [anon_sym___extension__] = ACTIONS(3406), + [anon_sym_typedef] = ACTIONS(3406), + [anon_sym_extern] = ACTIONS(3406), + [anon_sym___attribute__] = ACTIONS(3406), + [anon_sym_COLON_COLON] = ACTIONS(3408), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3408), + [anon_sym___declspec] = ACTIONS(3406), + [anon_sym___based] = ACTIONS(3406), + [anon_sym___cdecl] = ACTIONS(3406), + [anon_sym___clrcall] = ACTIONS(3406), + [anon_sym___stdcall] = ACTIONS(3406), + [anon_sym___fastcall] = ACTIONS(3406), + [anon_sym___thiscall] = ACTIONS(3406), + [anon_sym___vectorcall] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3408), + [anon_sym_RBRACE] = ACTIONS(3408), + [anon_sym_signed] = ACTIONS(3406), + [anon_sym_unsigned] = ACTIONS(3406), + [anon_sym_long] = ACTIONS(3406), + [anon_sym_short] = ACTIONS(3406), + [anon_sym_LBRACK] = ACTIONS(3406), + [anon_sym_static] = ACTIONS(3406), + [anon_sym_register] = ACTIONS(3406), + [anon_sym_inline] = ACTIONS(3406), + [anon_sym___inline] = ACTIONS(3406), + [anon_sym___inline__] = ACTIONS(3406), + [anon_sym___forceinline] = ACTIONS(3406), + [anon_sym_thread_local] = ACTIONS(3406), + [anon_sym___thread] = ACTIONS(3406), + [anon_sym_const] = ACTIONS(3406), + [anon_sym_constexpr] = ACTIONS(3406), + [anon_sym_volatile] = ACTIONS(3406), + [anon_sym_restrict] = ACTIONS(3406), + [anon_sym___restrict__] = ACTIONS(3406), + [anon_sym__Atomic] = ACTIONS(3406), + [anon_sym__Noreturn] = ACTIONS(3406), + [anon_sym_noreturn] = ACTIONS(3406), + [anon_sym_mutable] = ACTIONS(3406), + [anon_sym_constinit] = ACTIONS(3406), + [anon_sym_consteval] = ACTIONS(3406), + [sym_primitive_type] = ACTIONS(3406), + [anon_sym_enum] = ACTIONS(3406), + [anon_sym_class] = ACTIONS(3406), + [anon_sym_struct] = ACTIONS(3406), + [anon_sym_union] = ACTIONS(3406), + [anon_sym_if] = ACTIONS(3406), + [anon_sym_switch] = ACTIONS(3406), + [anon_sym_case] = ACTIONS(3406), + [anon_sym_default] = ACTIONS(3406), + [anon_sym_while] = ACTIONS(3406), + [anon_sym_do] = ACTIONS(3406), + [anon_sym_for] = ACTIONS(3406), + [anon_sym_return] = ACTIONS(3406), + [anon_sym_break] = ACTIONS(3406), + [anon_sym_continue] = ACTIONS(3406), + [anon_sym_goto] = ACTIONS(3406), + [anon_sym___try] = ACTIONS(3406), + [anon_sym___leave] = ACTIONS(3406), + [anon_sym_not] = ACTIONS(3406), + [anon_sym_compl] = ACTIONS(3406), + [anon_sym_DASH_DASH] = ACTIONS(3408), + [anon_sym_PLUS_PLUS] = ACTIONS(3408), + [anon_sym_sizeof] = ACTIONS(3406), + [anon_sym___alignof__] = ACTIONS(3406), + [anon_sym___alignof] = ACTIONS(3406), + [anon_sym__alignof] = ACTIONS(3406), + [anon_sym_alignof] = ACTIONS(3406), + [anon_sym__Alignof] = ACTIONS(3406), + [anon_sym_offsetof] = ACTIONS(3406), + [anon_sym__Generic] = ACTIONS(3406), + [anon_sym_asm] = ACTIONS(3406), + [anon_sym___asm__] = ACTIONS(3406), + [sym_number_literal] = ACTIONS(3408), + [anon_sym_L_SQUOTE] = ACTIONS(3408), + [anon_sym_u_SQUOTE] = ACTIONS(3408), + [anon_sym_U_SQUOTE] = ACTIONS(3408), + [anon_sym_u8_SQUOTE] = ACTIONS(3408), + [anon_sym_SQUOTE] = ACTIONS(3408), + [anon_sym_L_DQUOTE] = ACTIONS(3408), + [anon_sym_u_DQUOTE] = ACTIONS(3408), + [anon_sym_U_DQUOTE] = ACTIONS(3408), + [anon_sym_u8_DQUOTE] = ACTIONS(3408), + [anon_sym_DQUOTE] = ACTIONS(3408), + [sym_true] = ACTIONS(3406), + [sym_false] = ACTIONS(3406), + [anon_sym_NULL] = ACTIONS(3406), + [anon_sym_nullptr] = ACTIONS(3406), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3406), + [anon_sym_decltype] = ACTIONS(3406), + [anon_sym_virtual] = ACTIONS(3406), + [anon_sym_alignas] = ACTIONS(3406), + [anon_sym_explicit] = ACTIONS(3406), + [anon_sym_typename] = ACTIONS(3406), + [anon_sym_template] = ACTIONS(3406), + [anon_sym_operator] = ACTIONS(3406), + [anon_sym_try] = ACTIONS(3406), + [anon_sym_delete] = ACTIONS(3406), + [anon_sym_throw] = ACTIONS(3406), + [anon_sym_namespace] = ACTIONS(3406), + [anon_sym_using] = ACTIONS(3406), + [anon_sym_static_assert] = ACTIONS(3406), + [anon_sym_concept] = ACTIONS(3406), + [anon_sym_co_return] = ACTIONS(3406), + [anon_sym_co_yield] = ACTIONS(3406), + [anon_sym_R_DQUOTE] = ACTIONS(3408), + [anon_sym_LR_DQUOTE] = ACTIONS(3408), + [anon_sym_uR_DQUOTE] = ACTIONS(3408), + [anon_sym_UR_DQUOTE] = ACTIONS(3408), + [anon_sym_u8R_DQUOTE] = ACTIONS(3408), + [anon_sym_co_await] = ACTIONS(3406), + [anon_sym_new] = ACTIONS(3406), + [anon_sym_requires] = ACTIONS(3406), + [sym_this] = ACTIONS(3406), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3408), + [sym_semgrep_named_ellipsis] = ACTIONS(3408), }, [751] = { + [sym_identifier] = ACTIONS(3581), + [aux_sym_preproc_include_token1] = ACTIONS(3581), + [aux_sym_preproc_def_token1] = ACTIONS(3581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3583), + [aux_sym_preproc_if_token1] = ACTIONS(3581), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3581), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3581), + [sym_preproc_directive] = ACTIONS(3581), + [anon_sym_LPAREN2] = ACTIONS(3583), + [anon_sym_BANG] = ACTIONS(3583), + [anon_sym_TILDE] = ACTIONS(3583), + [anon_sym_DASH] = ACTIONS(3581), + [anon_sym_PLUS] = ACTIONS(3581), + [anon_sym_STAR] = ACTIONS(3583), + [anon_sym_AMP_AMP] = ACTIONS(3583), + [anon_sym_AMP] = ACTIONS(3581), + [anon_sym_SEMI] = ACTIONS(3583), + [anon_sym___extension__] = ACTIONS(3581), + [anon_sym_typedef] = ACTIONS(3581), + [anon_sym_extern] = ACTIONS(3581), + [anon_sym___attribute__] = ACTIONS(3581), + [anon_sym_COLON_COLON] = ACTIONS(3583), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3583), + [anon_sym___declspec] = ACTIONS(3581), + [anon_sym___based] = ACTIONS(3581), + [anon_sym___cdecl] = ACTIONS(3581), + [anon_sym___clrcall] = ACTIONS(3581), + [anon_sym___stdcall] = ACTIONS(3581), + [anon_sym___fastcall] = ACTIONS(3581), + [anon_sym___thiscall] = ACTIONS(3581), + [anon_sym___vectorcall] = ACTIONS(3581), + [anon_sym_LBRACE] = ACTIONS(3583), + [anon_sym_RBRACE] = ACTIONS(3583), + [anon_sym_signed] = ACTIONS(3581), + [anon_sym_unsigned] = ACTIONS(3581), + [anon_sym_long] = ACTIONS(3581), + [anon_sym_short] = ACTIONS(3581), + [anon_sym_LBRACK] = ACTIONS(3581), + [anon_sym_static] = ACTIONS(3581), + [anon_sym_register] = ACTIONS(3581), + [anon_sym_inline] = ACTIONS(3581), + [anon_sym___inline] = ACTIONS(3581), + [anon_sym___inline__] = ACTIONS(3581), + [anon_sym___forceinline] = ACTIONS(3581), + [anon_sym_thread_local] = ACTIONS(3581), + [anon_sym___thread] = ACTIONS(3581), + [anon_sym_const] = ACTIONS(3581), + [anon_sym_constexpr] = ACTIONS(3581), + [anon_sym_volatile] = ACTIONS(3581), + [anon_sym_restrict] = ACTIONS(3581), + [anon_sym___restrict__] = ACTIONS(3581), + [anon_sym__Atomic] = ACTIONS(3581), + [anon_sym__Noreturn] = ACTIONS(3581), + [anon_sym_noreturn] = ACTIONS(3581), + [anon_sym_mutable] = ACTIONS(3581), + [anon_sym_constinit] = ACTIONS(3581), + [anon_sym_consteval] = ACTIONS(3581), + [sym_primitive_type] = ACTIONS(3581), + [anon_sym_enum] = ACTIONS(3581), + [anon_sym_class] = ACTIONS(3581), + [anon_sym_struct] = ACTIONS(3581), + [anon_sym_union] = ACTIONS(3581), + [anon_sym_if] = ACTIONS(3581), + [anon_sym_switch] = ACTIONS(3581), + [anon_sym_case] = ACTIONS(3581), + [anon_sym_default] = ACTIONS(3581), + [anon_sym_while] = ACTIONS(3581), + [anon_sym_do] = ACTIONS(3581), + [anon_sym_for] = ACTIONS(3581), + [anon_sym_return] = ACTIONS(3581), + [anon_sym_break] = ACTIONS(3581), + [anon_sym_continue] = ACTIONS(3581), + [anon_sym_goto] = ACTIONS(3581), + [anon_sym___try] = ACTIONS(3581), + [anon_sym___leave] = ACTIONS(3581), + [anon_sym_not] = ACTIONS(3581), + [anon_sym_compl] = ACTIONS(3581), + [anon_sym_DASH_DASH] = ACTIONS(3583), + [anon_sym_PLUS_PLUS] = ACTIONS(3583), + [anon_sym_sizeof] = ACTIONS(3581), + [anon_sym___alignof__] = ACTIONS(3581), + [anon_sym___alignof] = ACTIONS(3581), + [anon_sym__alignof] = ACTIONS(3581), + [anon_sym_alignof] = ACTIONS(3581), + [anon_sym__Alignof] = ACTIONS(3581), + [anon_sym_offsetof] = ACTIONS(3581), + [anon_sym__Generic] = ACTIONS(3581), + [anon_sym_asm] = ACTIONS(3581), + [anon_sym___asm__] = ACTIONS(3581), + [sym_number_literal] = ACTIONS(3583), + [anon_sym_L_SQUOTE] = ACTIONS(3583), + [anon_sym_u_SQUOTE] = ACTIONS(3583), + [anon_sym_U_SQUOTE] = ACTIONS(3583), + [anon_sym_u8_SQUOTE] = ACTIONS(3583), + [anon_sym_SQUOTE] = ACTIONS(3583), + [anon_sym_L_DQUOTE] = ACTIONS(3583), + [anon_sym_u_DQUOTE] = ACTIONS(3583), + [anon_sym_U_DQUOTE] = ACTIONS(3583), + [anon_sym_u8_DQUOTE] = ACTIONS(3583), + [anon_sym_DQUOTE] = ACTIONS(3583), + [sym_true] = ACTIONS(3581), + [sym_false] = ACTIONS(3581), + [anon_sym_NULL] = ACTIONS(3581), + [anon_sym_nullptr] = ACTIONS(3581), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3581), + [anon_sym_decltype] = ACTIONS(3581), + [anon_sym_virtual] = ACTIONS(3581), + [anon_sym_alignas] = ACTIONS(3581), + [anon_sym_explicit] = ACTIONS(3581), + [anon_sym_typename] = ACTIONS(3581), + [anon_sym_template] = ACTIONS(3581), + [anon_sym_operator] = ACTIONS(3581), + [anon_sym_try] = ACTIONS(3581), + [anon_sym_delete] = ACTIONS(3581), + [anon_sym_throw] = ACTIONS(3581), + [anon_sym_namespace] = ACTIONS(3581), + [anon_sym_using] = ACTIONS(3581), + [anon_sym_static_assert] = ACTIONS(3581), + [anon_sym_concept] = ACTIONS(3581), + [anon_sym_co_return] = ACTIONS(3581), + [anon_sym_co_yield] = ACTIONS(3581), + [anon_sym_R_DQUOTE] = ACTIONS(3583), + [anon_sym_LR_DQUOTE] = ACTIONS(3583), + [anon_sym_uR_DQUOTE] = ACTIONS(3583), + [anon_sym_UR_DQUOTE] = ACTIONS(3583), + [anon_sym_u8R_DQUOTE] = ACTIONS(3583), + [anon_sym_co_await] = ACTIONS(3581), + [anon_sym_new] = ACTIONS(3581), + [anon_sym_requires] = ACTIONS(3581), + [sym_this] = ACTIONS(3581), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3583), + [sym_semgrep_named_ellipsis] = ACTIONS(3583), + }, + [752] = { + [sym_identifier] = ACTIONS(3587), + [aux_sym_preproc_include_token1] = ACTIONS(3587), + [aux_sym_preproc_def_token1] = ACTIONS(3587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3589), + [aux_sym_preproc_if_token1] = ACTIONS(3587), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3587), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3587), + [sym_preproc_directive] = ACTIONS(3587), + [anon_sym_LPAREN2] = ACTIONS(3589), + [anon_sym_BANG] = ACTIONS(3589), + [anon_sym_TILDE] = ACTIONS(3589), + [anon_sym_DASH] = ACTIONS(3587), + [anon_sym_PLUS] = ACTIONS(3587), + [anon_sym_STAR] = ACTIONS(3589), + [anon_sym_AMP_AMP] = ACTIONS(3589), + [anon_sym_AMP] = ACTIONS(3587), + [anon_sym_SEMI] = ACTIONS(3589), + [anon_sym___extension__] = ACTIONS(3587), + [anon_sym_typedef] = ACTIONS(3587), + [anon_sym_extern] = ACTIONS(3587), + [anon_sym___attribute__] = ACTIONS(3587), + [anon_sym_COLON_COLON] = ACTIONS(3589), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3589), + [anon_sym___declspec] = ACTIONS(3587), + [anon_sym___based] = ACTIONS(3587), + [anon_sym___cdecl] = ACTIONS(3587), + [anon_sym___clrcall] = ACTIONS(3587), + [anon_sym___stdcall] = ACTIONS(3587), + [anon_sym___fastcall] = ACTIONS(3587), + [anon_sym___thiscall] = ACTIONS(3587), + [anon_sym___vectorcall] = ACTIONS(3587), + [anon_sym_LBRACE] = ACTIONS(3589), + [anon_sym_RBRACE] = ACTIONS(3589), + [anon_sym_signed] = ACTIONS(3587), + [anon_sym_unsigned] = ACTIONS(3587), + [anon_sym_long] = ACTIONS(3587), + [anon_sym_short] = ACTIONS(3587), + [anon_sym_LBRACK] = ACTIONS(3587), + [anon_sym_static] = ACTIONS(3587), + [anon_sym_register] = ACTIONS(3587), + [anon_sym_inline] = ACTIONS(3587), + [anon_sym___inline] = ACTIONS(3587), + [anon_sym___inline__] = ACTIONS(3587), + [anon_sym___forceinline] = ACTIONS(3587), + [anon_sym_thread_local] = ACTIONS(3587), + [anon_sym___thread] = ACTIONS(3587), + [anon_sym_const] = ACTIONS(3587), + [anon_sym_constexpr] = ACTIONS(3587), + [anon_sym_volatile] = ACTIONS(3587), + [anon_sym_restrict] = ACTIONS(3587), + [anon_sym___restrict__] = ACTIONS(3587), + [anon_sym__Atomic] = ACTIONS(3587), + [anon_sym__Noreturn] = ACTIONS(3587), + [anon_sym_noreturn] = ACTIONS(3587), + [anon_sym_mutable] = ACTIONS(3587), + [anon_sym_constinit] = ACTIONS(3587), + [anon_sym_consteval] = ACTIONS(3587), + [sym_primitive_type] = ACTIONS(3587), + [anon_sym_enum] = ACTIONS(3587), + [anon_sym_class] = ACTIONS(3587), + [anon_sym_struct] = ACTIONS(3587), + [anon_sym_union] = ACTIONS(3587), + [anon_sym_if] = ACTIONS(3587), + [anon_sym_switch] = ACTIONS(3587), + [anon_sym_case] = ACTIONS(3587), + [anon_sym_default] = ACTIONS(3587), + [anon_sym_while] = ACTIONS(3587), + [anon_sym_do] = ACTIONS(3587), + [anon_sym_for] = ACTIONS(3587), + [anon_sym_return] = ACTIONS(3587), + [anon_sym_break] = ACTIONS(3587), + [anon_sym_continue] = ACTIONS(3587), + [anon_sym_goto] = ACTIONS(3587), + [anon_sym___try] = ACTIONS(3587), + [anon_sym___leave] = ACTIONS(3587), + [anon_sym_not] = ACTIONS(3587), + [anon_sym_compl] = ACTIONS(3587), + [anon_sym_DASH_DASH] = ACTIONS(3589), + [anon_sym_PLUS_PLUS] = ACTIONS(3589), + [anon_sym_sizeof] = ACTIONS(3587), + [anon_sym___alignof__] = ACTIONS(3587), + [anon_sym___alignof] = ACTIONS(3587), + [anon_sym__alignof] = ACTIONS(3587), + [anon_sym_alignof] = ACTIONS(3587), + [anon_sym__Alignof] = ACTIONS(3587), + [anon_sym_offsetof] = ACTIONS(3587), + [anon_sym__Generic] = ACTIONS(3587), + [anon_sym_asm] = ACTIONS(3587), + [anon_sym___asm__] = ACTIONS(3587), + [sym_number_literal] = ACTIONS(3589), + [anon_sym_L_SQUOTE] = ACTIONS(3589), + [anon_sym_u_SQUOTE] = ACTIONS(3589), + [anon_sym_U_SQUOTE] = ACTIONS(3589), + [anon_sym_u8_SQUOTE] = ACTIONS(3589), + [anon_sym_SQUOTE] = ACTIONS(3589), + [anon_sym_L_DQUOTE] = ACTIONS(3589), + [anon_sym_u_DQUOTE] = ACTIONS(3589), + [anon_sym_U_DQUOTE] = ACTIONS(3589), + [anon_sym_u8_DQUOTE] = ACTIONS(3589), + [anon_sym_DQUOTE] = ACTIONS(3589), + [sym_true] = ACTIONS(3587), + [sym_false] = ACTIONS(3587), + [anon_sym_NULL] = ACTIONS(3587), + [anon_sym_nullptr] = ACTIONS(3587), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3587), + [anon_sym_decltype] = ACTIONS(3587), + [anon_sym_virtual] = ACTIONS(3587), + [anon_sym_alignas] = ACTIONS(3587), + [anon_sym_explicit] = ACTIONS(3587), + [anon_sym_typename] = ACTIONS(3587), + [anon_sym_template] = ACTIONS(3587), + [anon_sym_operator] = ACTIONS(3587), + [anon_sym_try] = ACTIONS(3587), + [anon_sym_delete] = ACTIONS(3587), + [anon_sym_throw] = ACTIONS(3587), + [anon_sym_namespace] = ACTIONS(3587), + [anon_sym_using] = ACTIONS(3587), + [anon_sym_static_assert] = ACTIONS(3587), + [anon_sym_concept] = ACTIONS(3587), + [anon_sym_co_return] = ACTIONS(3587), + [anon_sym_co_yield] = ACTIONS(3587), + [anon_sym_R_DQUOTE] = ACTIONS(3589), + [anon_sym_LR_DQUOTE] = ACTIONS(3589), + [anon_sym_uR_DQUOTE] = ACTIONS(3589), + [anon_sym_UR_DQUOTE] = ACTIONS(3589), + [anon_sym_u8R_DQUOTE] = ACTIONS(3589), + [anon_sym_co_await] = ACTIONS(3587), + [anon_sym_new] = ACTIONS(3587), + [anon_sym_requires] = ACTIONS(3587), + [sym_this] = ACTIONS(3587), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3589), + [sym_semgrep_named_ellipsis] = ACTIONS(3589), + }, + [753] = { + [sym_identifier] = ACTIONS(3509), + [aux_sym_preproc_include_token1] = ACTIONS(3509), + [aux_sym_preproc_def_token1] = ACTIONS(3509), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3511), + [aux_sym_preproc_if_token1] = ACTIONS(3509), + [aux_sym_preproc_if_token2] = ACTIONS(3509), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3509), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3509), + [sym_preproc_directive] = ACTIONS(3509), + [anon_sym_LPAREN2] = ACTIONS(3511), + [anon_sym_BANG] = ACTIONS(3511), + [anon_sym_TILDE] = ACTIONS(3511), + [anon_sym_DASH] = ACTIONS(3509), + [anon_sym_PLUS] = ACTIONS(3509), + [anon_sym_STAR] = ACTIONS(3511), + [anon_sym_AMP_AMP] = ACTIONS(3511), + [anon_sym_AMP] = ACTIONS(3509), + [anon_sym_SEMI] = ACTIONS(3511), + [anon_sym___extension__] = ACTIONS(3509), + [anon_sym_typedef] = 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___cdecl] = ACTIONS(3509), + [anon_sym___clrcall] = ACTIONS(3509), + [anon_sym___stdcall] = ACTIONS(3509), + [anon_sym___fastcall] = ACTIONS(3509), + [anon_sym___thiscall] = ACTIONS(3509), + [anon_sym___vectorcall] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3511), + [anon_sym_signed] = ACTIONS(3509), + [anon_sym_unsigned] = ACTIONS(3509), + [anon_sym_long] = ACTIONS(3509), + [anon_sym_short] = ACTIONS(3509), + [anon_sym_LBRACK] = ACTIONS(3509), + [anon_sym_static] = ACTIONS(3509), + [anon_sym_register] = ACTIONS(3509), + [anon_sym_inline] = ACTIONS(3509), + [anon_sym___inline] = ACTIONS(3509), + [anon_sym___inline__] = ACTIONS(3509), + [anon_sym___forceinline] = ACTIONS(3509), + [anon_sym_thread_local] = ACTIONS(3509), + [anon_sym___thread] = ACTIONS(3509), + [anon_sym_const] = ACTIONS(3509), + [anon_sym_constexpr] = ACTIONS(3509), + [anon_sym_volatile] = ACTIONS(3509), + [anon_sym_restrict] = ACTIONS(3509), + [anon_sym___restrict__] = ACTIONS(3509), + [anon_sym__Atomic] = ACTIONS(3509), + [anon_sym__Noreturn] = ACTIONS(3509), + [anon_sym_noreturn] = ACTIONS(3509), + [anon_sym_mutable] = ACTIONS(3509), + [anon_sym_constinit] = ACTIONS(3509), + [anon_sym_consteval] = ACTIONS(3509), + [sym_primitive_type] = ACTIONS(3509), + [anon_sym_enum] = ACTIONS(3509), + [anon_sym_class] = ACTIONS(3509), + [anon_sym_struct] = ACTIONS(3509), + [anon_sym_union] = ACTIONS(3509), + [anon_sym_if] = ACTIONS(3509), + [anon_sym_switch] = ACTIONS(3509), + [anon_sym_case] = ACTIONS(3509), + [anon_sym_default] = ACTIONS(3509), + [anon_sym_while] = ACTIONS(3509), + [anon_sym_do] = ACTIONS(3509), + [anon_sym_for] = ACTIONS(3509), + [anon_sym_return] = ACTIONS(3509), + [anon_sym_break] = ACTIONS(3509), + [anon_sym_continue] = ACTIONS(3509), + [anon_sym_goto] = ACTIONS(3509), + [anon_sym___try] = ACTIONS(3509), + [anon_sym___leave] = ACTIONS(3509), + [anon_sym_not] = ACTIONS(3509), + [anon_sym_compl] = ACTIONS(3509), + [anon_sym_DASH_DASH] = ACTIONS(3511), + [anon_sym_PLUS_PLUS] = ACTIONS(3511), + [anon_sym_sizeof] = ACTIONS(3509), + [anon_sym___alignof__] = ACTIONS(3509), + [anon_sym___alignof] = ACTIONS(3509), + [anon_sym__alignof] = ACTIONS(3509), + [anon_sym_alignof] = ACTIONS(3509), + [anon_sym__Alignof] = ACTIONS(3509), + [anon_sym_offsetof] = ACTIONS(3509), + [anon_sym__Generic] = ACTIONS(3509), + [anon_sym_asm] = ACTIONS(3509), + [anon_sym___asm__] = ACTIONS(3509), + [sym_number_literal] = ACTIONS(3511), + [anon_sym_L_SQUOTE] = ACTIONS(3511), + [anon_sym_u_SQUOTE] = ACTIONS(3511), + [anon_sym_U_SQUOTE] = ACTIONS(3511), + [anon_sym_u8_SQUOTE] = ACTIONS(3511), + [anon_sym_SQUOTE] = ACTIONS(3511), + [anon_sym_L_DQUOTE] = ACTIONS(3511), + [anon_sym_u_DQUOTE] = ACTIONS(3511), + [anon_sym_U_DQUOTE] = ACTIONS(3511), + [anon_sym_u8_DQUOTE] = ACTIONS(3511), + [anon_sym_DQUOTE] = ACTIONS(3511), + [sym_true] = ACTIONS(3509), + [sym_false] = ACTIONS(3509), + [anon_sym_NULL] = ACTIONS(3509), + [anon_sym_nullptr] = ACTIONS(3509), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3509), + [anon_sym_decltype] = ACTIONS(3509), + [anon_sym_virtual] = ACTIONS(3509), + [anon_sym_alignas] = ACTIONS(3509), + [anon_sym_explicit] = ACTIONS(3509), + [anon_sym_typename] = ACTIONS(3509), + [anon_sym_template] = ACTIONS(3509), + [anon_sym_operator] = ACTIONS(3509), + [anon_sym_try] = ACTIONS(3509), + [anon_sym_delete] = ACTIONS(3509), + [anon_sym_throw] = ACTIONS(3509), + [anon_sym_namespace] = ACTIONS(3509), + [anon_sym_using] = ACTIONS(3509), + [anon_sym_static_assert] = ACTIONS(3509), + [anon_sym_concept] = ACTIONS(3509), + [anon_sym_co_return] = ACTIONS(3509), + [anon_sym_co_yield] = ACTIONS(3509), + [anon_sym_R_DQUOTE] = ACTIONS(3511), + [anon_sym_LR_DQUOTE] = ACTIONS(3511), + [anon_sym_uR_DQUOTE] = ACTIONS(3511), + [anon_sym_UR_DQUOTE] = ACTIONS(3511), + [anon_sym_u8R_DQUOTE] = ACTIONS(3511), + [anon_sym_co_await] = ACTIONS(3509), + [anon_sym_new] = ACTIONS(3509), + [anon_sym_requires] = ACTIONS(3509), + [sym_this] = ACTIONS(3509), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3511), + [sym_semgrep_named_ellipsis] = ACTIONS(3511), + }, + [754] = { [sym_identifier] = ACTIONS(3392), [aux_sym_preproc_include_token1] = ACTIONS(3392), [aux_sym_preproc_def_token1] = ACTIONS(3392), @@ -168977,4192 +159544,2572 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3394), [sym_semgrep_named_ellipsis] = ACTIONS(3394), }, - [752] = { - [sym_identifier] = ACTIONS(3499), - [aux_sym_preproc_include_token1] = ACTIONS(3499), - [aux_sym_preproc_def_token1] = ACTIONS(3499), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3501), - [aux_sym_preproc_if_token1] = ACTIONS(3499), - [aux_sym_preproc_if_token2] = ACTIONS(3499), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3499), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3499), - [sym_preproc_directive] = ACTIONS(3499), - [anon_sym_LPAREN2] = ACTIONS(3501), - [anon_sym_BANG] = ACTIONS(3501), - [anon_sym_TILDE] = ACTIONS(3501), - [anon_sym_DASH] = ACTIONS(3499), - [anon_sym_PLUS] = ACTIONS(3499), - [anon_sym_STAR] = ACTIONS(3501), - [anon_sym_AMP_AMP] = ACTIONS(3501), - [anon_sym_AMP] = ACTIONS(3499), - [anon_sym_SEMI] = ACTIONS(3501), - [anon_sym___extension__] = ACTIONS(3499), - [anon_sym_typedef] = ACTIONS(3499), - [anon_sym_extern] = ACTIONS(3499), - [anon_sym___attribute__] = ACTIONS(3499), - [anon_sym_COLON_COLON] = ACTIONS(3501), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3501), - [anon_sym___declspec] = ACTIONS(3499), - [anon_sym___based] = ACTIONS(3499), - [anon_sym___cdecl] = ACTIONS(3499), - [anon_sym___clrcall] = ACTIONS(3499), - [anon_sym___stdcall] = ACTIONS(3499), - [anon_sym___fastcall] = ACTIONS(3499), - [anon_sym___thiscall] = ACTIONS(3499), - [anon_sym___vectorcall] = ACTIONS(3499), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_signed] = ACTIONS(3499), - [anon_sym_unsigned] = ACTIONS(3499), - [anon_sym_long] = ACTIONS(3499), - [anon_sym_short] = ACTIONS(3499), - [anon_sym_LBRACK] = ACTIONS(3499), - [anon_sym_static] = ACTIONS(3499), - [anon_sym_register] = ACTIONS(3499), - [anon_sym_inline] = ACTIONS(3499), - [anon_sym___inline] = ACTIONS(3499), - [anon_sym___inline__] = ACTIONS(3499), - [anon_sym___forceinline] = ACTIONS(3499), - [anon_sym_thread_local] = ACTIONS(3499), - [anon_sym___thread] = ACTIONS(3499), - [anon_sym_const] = ACTIONS(3499), - [anon_sym_constexpr] = ACTIONS(3499), - [anon_sym_volatile] = ACTIONS(3499), - [anon_sym_restrict] = ACTIONS(3499), - [anon_sym___restrict__] = ACTIONS(3499), - [anon_sym__Atomic] = ACTIONS(3499), - [anon_sym__Noreturn] = ACTIONS(3499), - [anon_sym_noreturn] = ACTIONS(3499), - [anon_sym_mutable] = ACTIONS(3499), - [anon_sym_constinit] = ACTIONS(3499), - [anon_sym_consteval] = ACTIONS(3499), - [sym_primitive_type] = ACTIONS(3499), - [anon_sym_enum] = ACTIONS(3499), - [anon_sym_class] = ACTIONS(3499), - [anon_sym_struct] = ACTIONS(3499), - [anon_sym_union] = ACTIONS(3499), - [anon_sym_if] = ACTIONS(3499), - [anon_sym_switch] = ACTIONS(3499), - [anon_sym_case] = ACTIONS(3499), - [anon_sym_default] = ACTIONS(3499), - [anon_sym_while] = ACTIONS(3499), - [anon_sym_do] = ACTIONS(3499), - [anon_sym_for] = ACTIONS(3499), - [anon_sym_return] = ACTIONS(3499), - [anon_sym_break] = ACTIONS(3499), - [anon_sym_continue] = ACTIONS(3499), - [anon_sym_goto] = ACTIONS(3499), - [anon_sym___try] = ACTIONS(3499), - [anon_sym___leave] = ACTIONS(3499), - [anon_sym_not] = ACTIONS(3499), - [anon_sym_compl] = ACTIONS(3499), - [anon_sym_DASH_DASH] = ACTIONS(3501), - [anon_sym_PLUS_PLUS] = ACTIONS(3501), - [anon_sym_sizeof] = ACTIONS(3499), - [anon_sym___alignof__] = ACTIONS(3499), - [anon_sym___alignof] = ACTIONS(3499), - [anon_sym__alignof] = ACTIONS(3499), - [anon_sym_alignof] = ACTIONS(3499), - [anon_sym__Alignof] = ACTIONS(3499), - [anon_sym_offsetof] = ACTIONS(3499), - [anon_sym__Generic] = ACTIONS(3499), - [anon_sym_asm] = ACTIONS(3499), - [anon_sym___asm__] = ACTIONS(3499), - [sym_number_literal] = ACTIONS(3501), - [anon_sym_L_SQUOTE] = ACTIONS(3501), - [anon_sym_u_SQUOTE] = ACTIONS(3501), - [anon_sym_U_SQUOTE] = ACTIONS(3501), - [anon_sym_u8_SQUOTE] = ACTIONS(3501), - [anon_sym_SQUOTE] = ACTIONS(3501), - [anon_sym_L_DQUOTE] = ACTIONS(3501), - [anon_sym_u_DQUOTE] = ACTIONS(3501), - [anon_sym_U_DQUOTE] = ACTIONS(3501), - [anon_sym_u8_DQUOTE] = ACTIONS(3501), - [anon_sym_DQUOTE] = ACTIONS(3501), - [sym_true] = ACTIONS(3499), - [sym_false] = ACTIONS(3499), - [anon_sym_NULL] = ACTIONS(3499), - [anon_sym_nullptr] = ACTIONS(3499), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3499), - [anon_sym_decltype] = ACTIONS(3499), - [anon_sym_virtual] = ACTIONS(3499), - [anon_sym_alignas] = ACTIONS(3499), - [anon_sym_explicit] = ACTIONS(3499), - [anon_sym_typename] = ACTIONS(3499), - [anon_sym_template] = ACTIONS(3499), - [anon_sym_operator] = ACTIONS(3499), - [anon_sym_try] = ACTIONS(3499), - [anon_sym_delete] = ACTIONS(3499), - [anon_sym_throw] = ACTIONS(3499), - [anon_sym_namespace] = ACTIONS(3499), - [anon_sym_using] = ACTIONS(3499), - [anon_sym_static_assert] = ACTIONS(3499), - [anon_sym_concept] = ACTIONS(3499), - [anon_sym_co_return] = ACTIONS(3499), - [anon_sym_co_yield] = ACTIONS(3499), - [anon_sym_R_DQUOTE] = ACTIONS(3501), - [anon_sym_LR_DQUOTE] = ACTIONS(3501), - [anon_sym_uR_DQUOTE] = ACTIONS(3501), - [anon_sym_UR_DQUOTE] = ACTIONS(3501), - [anon_sym_u8R_DQUOTE] = ACTIONS(3501), - [anon_sym_co_await] = ACTIONS(3499), - [anon_sym_new] = ACTIONS(3499), - [anon_sym_requires] = ACTIONS(3499), - [sym_this] = ACTIONS(3499), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3501), - [sym_semgrep_named_ellipsis] = ACTIONS(3501), - }, - [753] = { - [sym_identifier] = ACTIONS(3350), - [aux_sym_preproc_include_token1] = ACTIONS(3350), - [aux_sym_preproc_def_token1] = ACTIONS(3350), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3352), - [aux_sym_preproc_if_token1] = ACTIONS(3350), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3350), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3350), - [sym_preproc_directive] = ACTIONS(3350), - [anon_sym_LPAREN2] = ACTIONS(3352), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(3352), - [anon_sym_DASH] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3350), - [anon_sym_STAR] = ACTIONS(3352), - [anon_sym_AMP_AMP] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3350), - [anon_sym_SEMI] = ACTIONS(3352), - [anon_sym___extension__] = ACTIONS(3350), - [anon_sym_typedef] = ACTIONS(3350), - [anon_sym_extern] = ACTIONS(3350), - [anon_sym___attribute__] = ACTIONS(3350), - [anon_sym_COLON_COLON] = ACTIONS(3352), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3352), - [anon_sym___declspec] = ACTIONS(3350), - [anon_sym___based] = ACTIONS(3350), - [anon_sym___cdecl] = ACTIONS(3350), - [anon_sym___clrcall] = ACTIONS(3350), - [anon_sym___stdcall] = ACTIONS(3350), - [anon_sym___fastcall] = ACTIONS(3350), - [anon_sym___thiscall] = ACTIONS(3350), - [anon_sym___vectorcall] = ACTIONS(3350), - [anon_sym_LBRACE] = ACTIONS(3352), - [anon_sym_RBRACE] = ACTIONS(3352), - [anon_sym_signed] = ACTIONS(3350), - [anon_sym_unsigned] = ACTIONS(3350), - [anon_sym_long] = ACTIONS(3350), - [anon_sym_short] = ACTIONS(3350), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_static] = ACTIONS(3350), - [anon_sym_register] = ACTIONS(3350), - [anon_sym_inline] = ACTIONS(3350), - [anon_sym___inline] = ACTIONS(3350), - [anon_sym___inline__] = ACTIONS(3350), - [anon_sym___forceinline] = ACTIONS(3350), - [anon_sym_thread_local] = ACTIONS(3350), - [anon_sym___thread] = ACTIONS(3350), - [anon_sym_const] = ACTIONS(3350), - [anon_sym_constexpr] = ACTIONS(3350), - [anon_sym_volatile] = ACTIONS(3350), - [anon_sym_restrict] = ACTIONS(3350), - [anon_sym___restrict__] = ACTIONS(3350), - [anon_sym__Atomic] = ACTIONS(3350), - [anon_sym__Noreturn] = ACTIONS(3350), - [anon_sym_noreturn] = ACTIONS(3350), - [anon_sym_mutable] = ACTIONS(3350), - [anon_sym_constinit] = ACTIONS(3350), - [anon_sym_consteval] = ACTIONS(3350), - [sym_primitive_type] = ACTIONS(3350), - [anon_sym_enum] = ACTIONS(3350), - [anon_sym_class] = ACTIONS(3350), - [anon_sym_struct] = ACTIONS(3350), - [anon_sym_union] = ACTIONS(3350), - [anon_sym_if] = ACTIONS(3350), - [anon_sym_switch] = ACTIONS(3350), - [anon_sym_case] = ACTIONS(3350), - [anon_sym_default] = ACTIONS(3350), - [anon_sym_while] = ACTIONS(3350), - [anon_sym_do] = ACTIONS(3350), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(3350), - [anon_sym_break] = ACTIONS(3350), - [anon_sym_continue] = ACTIONS(3350), - [anon_sym_goto] = ACTIONS(3350), - [anon_sym___try] = ACTIONS(3350), - [anon_sym___leave] = ACTIONS(3350), - [anon_sym_not] = ACTIONS(3350), - [anon_sym_compl] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3352), - [anon_sym_PLUS_PLUS] = ACTIONS(3352), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3350), - [anon_sym___alignof] = ACTIONS(3350), - [anon_sym__alignof] = ACTIONS(3350), - [anon_sym_alignof] = ACTIONS(3350), - [anon_sym__Alignof] = ACTIONS(3350), - [anon_sym_offsetof] = ACTIONS(3350), - [anon_sym__Generic] = ACTIONS(3350), - [anon_sym_asm] = ACTIONS(3350), - [anon_sym___asm__] = ACTIONS(3350), - [sym_number_literal] = ACTIONS(3352), - [anon_sym_L_SQUOTE] = ACTIONS(3352), - [anon_sym_u_SQUOTE] = ACTIONS(3352), - [anon_sym_U_SQUOTE] = ACTIONS(3352), - [anon_sym_u8_SQUOTE] = ACTIONS(3352), - [anon_sym_SQUOTE] = ACTIONS(3352), - [anon_sym_L_DQUOTE] = ACTIONS(3352), - [anon_sym_u_DQUOTE] = ACTIONS(3352), - [anon_sym_U_DQUOTE] = ACTIONS(3352), - [anon_sym_u8_DQUOTE] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(3352), - [sym_true] = ACTIONS(3350), - [sym_false] = ACTIONS(3350), - [anon_sym_NULL] = ACTIONS(3350), - [anon_sym_nullptr] = ACTIONS(3350), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3350), - [anon_sym_decltype] = ACTIONS(3350), - [anon_sym_virtual] = ACTIONS(3350), - [anon_sym_alignas] = ACTIONS(3350), - [anon_sym_explicit] = ACTIONS(3350), - [anon_sym_typename] = ACTIONS(3350), - [anon_sym_template] = ACTIONS(3350), - [anon_sym_operator] = ACTIONS(3350), - [anon_sym_try] = ACTIONS(3350), - [anon_sym_delete] = ACTIONS(3350), - [anon_sym_throw] = ACTIONS(3350), - [anon_sym_namespace] = ACTIONS(3350), - [anon_sym_using] = ACTIONS(3350), - [anon_sym_static_assert] = ACTIONS(3350), - [anon_sym_concept] = ACTIONS(3350), - [anon_sym_co_return] = ACTIONS(3350), - [anon_sym_co_yield] = ACTIONS(3350), - [anon_sym_R_DQUOTE] = ACTIONS(3352), - [anon_sym_LR_DQUOTE] = ACTIONS(3352), - [anon_sym_uR_DQUOTE] = ACTIONS(3352), - [anon_sym_UR_DQUOTE] = ACTIONS(3352), - [anon_sym_u8R_DQUOTE] = ACTIONS(3352), - [anon_sym_co_await] = ACTIONS(3350), - [anon_sym_new] = ACTIONS(3350), - [anon_sym_requires] = ACTIONS(3350), - [sym_this] = ACTIONS(3350), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3352), - [sym_semgrep_named_ellipsis] = ACTIONS(3352), - }, - [754] = { - [sym_identifier] = ACTIONS(3265), - [aux_sym_preproc_include_token1] = ACTIONS(3265), - [aux_sym_preproc_def_token1] = ACTIONS(3265), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3267), - [aux_sym_preproc_if_token1] = ACTIONS(3265), - [aux_sym_preproc_if_token2] = ACTIONS(3265), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3265), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3265), - [sym_preproc_directive] = ACTIONS(3265), - [anon_sym_LPAREN2] = ACTIONS(3267), - [anon_sym_BANG] = ACTIONS(3267), - [anon_sym_TILDE] = ACTIONS(3267), - [anon_sym_DASH] = ACTIONS(3265), - [anon_sym_PLUS] = ACTIONS(3265), - [anon_sym_STAR] = ACTIONS(3267), - [anon_sym_AMP_AMP] = ACTIONS(3267), - [anon_sym_AMP] = ACTIONS(3265), - [anon_sym_SEMI] = ACTIONS(3267), - [anon_sym___extension__] = ACTIONS(3265), - [anon_sym_typedef] = ACTIONS(3265), - [anon_sym_extern] = ACTIONS(3265), - [anon_sym___attribute__] = ACTIONS(3265), - [anon_sym_COLON_COLON] = ACTIONS(3267), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3267), - [anon_sym___declspec] = ACTIONS(3265), - [anon_sym___based] = ACTIONS(3265), - [anon_sym___cdecl] = ACTIONS(3265), - [anon_sym___clrcall] = ACTIONS(3265), - [anon_sym___stdcall] = ACTIONS(3265), - [anon_sym___fastcall] = ACTIONS(3265), - [anon_sym___thiscall] = ACTIONS(3265), - [anon_sym___vectorcall] = ACTIONS(3265), - [anon_sym_LBRACE] = ACTIONS(3267), - [anon_sym_signed] = ACTIONS(3265), - [anon_sym_unsigned] = ACTIONS(3265), - [anon_sym_long] = ACTIONS(3265), - [anon_sym_short] = ACTIONS(3265), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_static] = ACTIONS(3265), - [anon_sym_register] = ACTIONS(3265), - [anon_sym_inline] = ACTIONS(3265), - [anon_sym___inline] = ACTIONS(3265), - [anon_sym___inline__] = ACTIONS(3265), - [anon_sym___forceinline] = ACTIONS(3265), - [anon_sym_thread_local] = ACTIONS(3265), - [anon_sym___thread] = ACTIONS(3265), - [anon_sym_const] = ACTIONS(3265), - [anon_sym_constexpr] = ACTIONS(3265), - [anon_sym_volatile] = ACTIONS(3265), - [anon_sym_restrict] = ACTIONS(3265), - [anon_sym___restrict__] = ACTIONS(3265), - [anon_sym__Atomic] = ACTIONS(3265), - [anon_sym__Noreturn] = ACTIONS(3265), - [anon_sym_noreturn] = ACTIONS(3265), - [anon_sym_mutable] = ACTIONS(3265), - [anon_sym_constinit] = ACTIONS(3265), - [anon_sym_consteval] = ACTIONS(3265), - [sym_primitive_type] = ACTIONS(3265), - [anon_sym_enum] = ACTIONS(3265), - [anon_sym_class] = ACTIONS(3265), - [anon_sym_struct] = ACTIONS(3265), - [anon_sym_union] = ACTIONS(3265), - [anon_sym_if] = ACTIONS(3265), - [anon_sym_switch] = ACTIONS(3265), - [anon_sym_case] = ACTIONS(3265), - [anon_sym_default] = ACTIONS(3265), - [anon_sym_while] = ACTIONS(3265), - [anon_sym_do] = ACTIONS(3265), - [anon_sym_for] = ACTIONS(3265), - [anon_sym_return] = ACTIONS(3265), - [anon_sym_break] = ACTIONS(3265), - [anon_sym_continue] = ACTIONS(3265), - [anon_sym_goto] = ACTIONS(3265), - [anon_sym___try] = ACTIONS(3265), - [anon_sym___leave] = ACTIONS(3265), - [anon_sym_not] = ACTIONS(3265), - [anon_sym_compl] = ACTIONS(3265), - [anon_sym_DASH_DASH] = ACTIONS(3267), - [anon_sym_PLUS_PLUS] = ACTIONS(3267), - [anon_sym_sizeof] = ACTIONS(3265), - [anon_sym___alignof__] = ACTIONS(3265), - [anon_sym___alignof] = ACTIONS(3265), - [anon_sym__alignof] = ACTIONS(3265), - [anon_sym_alignof] = ACTIONS(3265), - [anon_sym__Alignof] = ACTIONS(3265), - [anon_sym_offsetof] = ACTIONS(3265), - [anon_sym__Generic] = ACTIONS(3265), - [anon_sym_asm] = ACTIONS(3265), - [anon_sym___asm__] = ACTIONS(3265), - [sym_number_literal] = ACTIONS(3267), - [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(3267), - [anon_sym_u_DQUOTE] = ACTIONS(3267), - [anon_sym_U_DQUOTE] = ACTIONS(3267), - [anon_sym_u8_DQUOTE] = ACTIONS(3267), - [anon_sym_DQUOTE] = ACTIONS(3267), - [sym_true] = ACTIONS(3265), - [sym_false] = ACTIONS(3265), - [anon_sym_NULL] = ACTIONS(3265), - [anon_sym_nullptr] = ACTIONS(3265), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3265), - [anon_sym_decltype] = ACTIONS(3265), - [anon_sym_virtual] = ACTIONS(3265), - [anon_sym_alignas] = ACTIONS(3265), - [anon_sym_explicit] = ACTIONS(3265), - [anon_sym_typename] = ACTIONS(3265), - [anon_sym_template] = ACTIONS(3265), - [anon_sym_operator] = ACTIONS(3265), - [anon_sym_try] = ACTIONS(3265), - [anon_sym_delete] = ACTIONS(3265), - [anon_sym_throw] = ACTIONS(3265), - [anon_sym_namespace] = ACTIONS(3265), - [anon_sym_using] = ACTIONS(3265), - [anon_sym_static_assert] = ACTIONS(3265), - [anon_sym_concept] = ACTIONS(3265), - [anon_sym_co_return] = ACTIONS(3265), - [anon_sym_co_yield] = ACTIONS(3265), - [anon_sym_R_DQUOTE] = ACTIONS(3267), - [anon_sym_LR_DQUOTE] = ACTIONS(3267), - [anon_sym_uR_DQUOTE] = ACTIONS(3267), - [anon_sym_UR_DQUOTE] = ACTIONS(3267), - [anon_sym_u8R_DQUOTE] = ACTIONS(3267), - [anon_sym_co_await] = ACTIONS(3265), - [anon_sym_new] = ACTIONS(3265), - [anon_sym_requires] = ACTIONS(3265), - [sym_this] = ACTIONS(3265), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3267), - [sym_semgrep_named_ellipsis] = ACTIONS(3267), - }, [755] = { - [sym_identifier] = ACTIONS(3507), - [aux_sym_preproc_include_token1] = ACTIONS(3507), - [aux_sym_preproc_def_token1] = ACTIONS(3507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3509), - [aux_sym_preproc_if_token1] = ACTIONS(3507), - [aux_sym_preproc_if_token2] = ACTIONS(3507), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3507), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3507), - [sym_preproc_directive] = ACTIONS(3507), - [anon_sym_LPAREN2] = ACTIONS(3509), - [anon_sym_BANG] = ACTIONS(3509), - [anon_sym_TILDE] = ACTIONS(3509), - [anon_sym_DASH] = ACTIONS(3507), - [anon_sym_PLUS] = ACTIONS(3507), - [anon_sym_STAR] = ACTIONS(3509), - [anon_sym_AMP_AMP] = ACTIONS(3509), - [anon_sym_AMP] = ACTIONS(3507), - [anon_sym_SEMI] = ACTIONS(3509), - [anon_sym___extension__] = ACTIONS(3507), - [anon_sym_typedef] = ACTIONS(3507), - [anon_sym_extern] = ACTIONS(3507), - [anon_sym___attribute__] = ACTIONS(3507), - [anon_sym_COLON_COLON] = ACTIONS(3509), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3509), - [anon_sym___declspec] = ACTIONS(3507), - [anon_sym___based] = ACTIONS(3507), - [anon_sym___cdecl] = ACTIONS(3507), - [anon_sym___clrcall] = ACTIONS(3507), - [anon_sym___stdcall] = ACTIONS(3507), - [anon_sym___fastcall] = ACTIONS(3507), - [anon_sym___thiscall] = ACTIONS(3507), - [anon_sym___vectorcall] = ACTIONS(3507), - [anon_sym_LBRACE] = ACTIONS(3509), - [anon_sym_signed] = ACTIONS(3507), - [anon_sym_unsigned] = ACTIONS(3507), - [anon_sym_long] = ACTIONS(3507), - [anon_sym_short] = ACTIONS(3507), - [anon_sym_LBRACK] = ACTIONS(3507), - [anon_sym_static] = ACTIONS(3507), - [anon_sym_register] = ACTIONS(3507), - [anon_sym_inline] = ACTIONS(3507), - [anon_sym___inline] = ACTIONS(3507), - [anon_sym___inline__] = ACTIONS(3507), - [anon_sym___forceinline] = ACTIONS(3507), - [anon_sym_thread_local] = ACTIONS(3507), - [anon_sym___thread] = ACTIONS(3507), - [anon_sym_const] = ACTIONS(3507), - [anon_sym_constexpr] = ACTIONS(3507), - [anon_sym_volatile] = ACTIONS(3507), - [anon_sym_restrict] = ACTIONS(3507), - [anon_sym___restrict__] = ACTIONS(3507), - [anon_sym__Atomic] = ACTIONS(3507), - [anon_sym__Noreturn] = ACTIONS(3507), - [anon_sym_noreturn] = ACTIONS(3507), - [anon_sym_mutable] = ACTIONS(3507), - [anon_sym_constinit] = ACTIONS(3507), - [anon_sym_consteval] = ACTIONS(3507), - [sym_primitive_type] = ACTIONS(3507), - [anon_sym_enum] = ACTIONS(3507), - [anon_sym_class] = ACTIONS(3507), - [anon_sym_struct] = ACTIONS(3507), - [anon_sym_union] = ACTIONS(3507), - [anon_sym_if] = ACTIONS(3507), - [anon_sym_switch] = ACTIONS(3507), - [anon_sym_case] = ACTIONS(3507), - [anon_sym_default] = ACTIONS(3507), - [anon_sym_while] = ACTIONS(3507), - [anon_sym_do] = ACTIONS(3507), - [anon_sym_for] = ACTIONS(3507), - [anon_sym_return] = ACTIONS(3507), - [anon_sym_break] = ACTIONS(3507), - [anon_sym_continue] = ACTIONS(3507), - [anon_sym_goto] = ACTIONS(3507), - [anon_sym___try] = ACTIONS(3507), - [anon_sym___leave] = ACTIONS(3507), - [anon_sym_not] = ACTIONS(3507), - [anon_sym_compl] = ACTIONS(3507), - [anon_sym_DASH_DASH] = ACTIONS(3509), - [anon_sym_PLUS_PLUS] = ACTIONS(3509), - [anon_sym_sizeof] = ACTIONS(3507), - [anon_sym___alignof__] = ACTIONS(3507), - [anon_sym___alignof] = ACTIONS(3507), - [anon_sym__alignof] = ACTIONS(3507), - [anon_sym_alignof] = ACTIONS(3507), - [anon_sym__Alignof] = ACTIONS(3507), - [anon_sym_offsetof] = ACTIONS(3507), - [anon_sym__Generic] = ACTIONS(3507), - [anon_sym_asm] = ACTIONS(3507), - [anon_sym___asm__] = ACTIONS(3507), - [sym_number_literal] = ACTIONS(3509), - [anon_sym_L_SQUOTE] = ACTIONS(3509), - [anon_sym_u_SQUOTE] = ACTIONS(3509), - [anon_sym_U_SQUOTE] = ACTIONS(3509), - [anon_sym_u8_SQUOTE] = ACTIONS(3509), - [anon_sym_SQUOTE] = ACTIONS(3509), - [anon_sym_L_DQUOTE] = ACTIONS(3509), - [anon_sym_u_DQUOTE] = ACTIONS(3509), - [anon_sym_U_DQUOTE] = ACTIONS(3509), - [anon_sym_u8_DQUOTE] = ACTIONS(3509), - [anon_sym_DQUOTE] = ACTIONS(3509), - [sym_true] = ACTIONS(3507), - [sym_false] = ACTIONS(3507), - [anon_sym_NULL] = ACTIONS(3507), - [anon_sym_nullptr] = ACTIONS(3507), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3507), - [anon_sym_decltype] = ACTIONS(3507), - [anon_sym_virtual] = ACTIONS(3507), - [anon_sym_alignas] = ACTIONS(3507), - [anon_sym_explicit] = ACTIONS(3507), - [anon_sym_typename] = ACTIONS(3507), - [anon_sym_template] = ACTIONS(3507), - [anon_sym_operator] = ACTIONS(3507), - [anon_sym_try] = ACTIONS(3507), - [anon_sym_delete] = ACTIONS(3507), - [anon_sym_throw] = ACTIONS(3507), - [anon_sym_namespace] = ACTIONS(3507), - [anon_sym_using] = ACTIONS(3507), - [anon_sym_static_assert] = ACTIONS(3507), - [anon_sym_concept] = ACTIONS(3507), - [anon_sym_co_return] = ACTIONS(3507), - [anon_sym_co_yield] = ACTIONS(3507), - [anon_sym_R_DQUOTE] = ACTIONS(3509), - [anon_sym_LR_DQUOTE] = ACTIONS(3509), - [anon_sym_uR_DQUOTE] = ACTIONS(3509), - [anon_sym_UR_DQUOTE] = ACTIONS(3509), - [anon_sym_u8R_DQUOTE] = ACTIONS(3509), - [anon_sym_co_await] = ACTIONS(3507), - [anon_sym_new] = ACTIONS(3507), - [anon_sym_requires] = ACTIONS(3507), - [sym_this] = ACTIONS(3507), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3509), - [sym_semgrep_named_ellipsis] = ACTIONS(3509), + [sym_identifier] = ACTIONS(3593), + [aux_sym_preproc_include_token1] = ACTIONS(3593), + [aux_sym_preproc_def_token1] = ACTIONS(3593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3595), + [aux_sym_preproc_if_token1] = ACTIONS(3593), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3593), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3593), + [sym_preproc_directive] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(3595), + [anon_sym_DASH] = ACTIONS(3593), + [anon_sym_PLUS] = ACTIONS(3593), + [anon_sym_STAR] = ACTIONS(3595), + [anon_sym_AMP_AMP] = ACTIONS(3595), + [anon_sym_AMP] = ACTIONS(3593), + [anon_sym_SEMI] = ACTIONS(3595), + [anon_sym___extension__] = ACTIONS(3593), + [anon_sym_typedef] = ACTIONS(3593), + [anon_sym_extern] = ACTIONS(3593), + [anon_sym___attribute__] = ACTIONS(3593), + [anon_sym_COLON_COLON] = ACTIONS(3595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3595), + [anon_sym___declspec] = ACTIONS(3593), + [anon_sym___based] = ACTIONS(3593), + [anon_sym___cdecl] = ACTIONS(3593), + [anon_sym___clrcall] = ACTIONS(3593), + [anon_sym___stdcall] = ACTIONS(3593), + [anon_sym___fastcall] = ACTIONS(3593), + [anon_sym___thiscall] = ACTIONS(3593), + [anon_sym___vectorcall] = ACTIONS(3593), + [anon_sym_LBRACE] = ACTIONS(3595), + [anon_sym_RBRACE] = ACTIONS(3595), + [anon_sym_signed] = ACTIONS(3593), + [anon_sym_unsigned] = ACTIONS(3593), + [anon_sym_long] = ACTIONS(3593), + [anon_sym_short] = ACTIONS(3593), + [anon_sym_LBRACK] = ACTIONS(3593), + [anon_sym_static] = ACTIONS(3593), + [anon_sym_register] = ACTIONS(3593), + [anon_sym_inline] = ACTIONS(3593), + [anon_sym___inline] = ACTIONS(3593), + [anon_sym___inline__] = ACTIONS(3593), + [anon_sym___forceinline] = ACTIONS(3593), + [anon_sym_thread_local] = ACTIONS(3593), + [anon_sym___thread] = ACTIONS(3593), + [anon_sym_const] = ACTIONS(3593), + [anon_sym_constexpr] = ACTIONS(3593), + [anon_sym_volatile] = ACTIONS(3593), + [anon_sym_restrict] = ACTIONS(3593), + [anon_sym___restrict__] = ACTIONS(3593), + [anon_sym__Atomic] = ACTIONS(3593), + [anon_sym__Noreturn] = ACTIONS(3593), + [anon_sym_noreturn] = ACTIONS(3593), + [anon_sym_mutable] = ACTIONS(3593), + [anon_sym_constinit] = ACTIONS(3593), + [anon_sym_consteval] = ACTIONS(3593), + [sym_primitive_type] = ACTIONS(3593), + [anon_sym_enum] = ACTIONS(3593), + [anon_sym_class] = ACTIONS(3593), + [anon_sym_struct] = ACTIONS(3593), + [anon_sym_union] = ACTIONS(3593), + [anon_sym_if] = ACTIONS(3593), + [anon_sym_switch] = ACTIONS(3593), + [anon_sym_case] = ACTIONS(3593), + [anon_sym_default] = ACTIONS(3593), + [anon_sym_while] = ACTIONS(3593), + [anon_sym_do] = ACTIONS(3593), + [anon_sym_for] = ACTIONS(3593), + [anon_sym_return] = ACTIONS(3593), + [anon_sym_break] = ACTIONS(3593), + [anon_sym_continue] = ACTIONS(3593), + [anon_sym_goto] = ACTIONS(3593), + [anon_sym___try] = ACTIONS(3593), + [anon_sym___leave] = ACTIONS(3593), + [anon_sym_not] = ACTIONS(3593), + [anon_sym_compl] = ACTIONS(3593), + [anon_sym_DASH_DASH] = ACTIONS(3595), + [anon_sym_PLUS_PLUS] = ACTIONS(3595), + [anon_sym_sizeof] = ACTIONS(3593), + [anon_sym___alignof__] = ACTIONS(3593), + [anon_sym___alignof] = ACTIONS(3593), + [anon_sym__alignof] = ACTIONS(3593), + [anon_sym_alignof] = ACTIONS(3593), + [anon_sym__Alignof] = ACTIONS(3593), + [anon_sym_offsetof] = ACTIONS(3593), + [anon_sym__Generic] = ACTIONS(3593), + [anon_sym_asm] = ACTIONS(3593), + [anon_sym___asm__] = ACTIONS(3593), + [sym_number_literal] = ACTIONS(3595), + [anon_sym_L_SQUOTE] = ACTIONS(3595), + [anon_sym_u_SQUOTE] = ACTIONS(3595), + [anon_sym_U_SQUOTE] = ACTIONS(3595), + [anon_sym_u8_SQUOTE] = ACTIONS(3595), + [anon_sym_SQUOTE] = ACTIONS(3595), + [anon_sym_L_DQUOTE] = ACTIONS(3595), + [anon_sym_u_DQUOTE] = ACTIONS(3595), + [anon_sym_U_DQUOTE] = ACTIONS(3595), + [anon_sym_u8_DQUOTE] = ACTIONS(3595), + [anon_sym_DQUOTE] = ACTIONS(3595), + [sym_true] = ACTIONS(3593), + [sym_false] = ACTIONS(3593), + [anon_sym_NULL] = ACTIONS(3593), + [anon_sym_nullptr] = ACTIONS(3593), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3593), + [anon_sym_decltype] = ACTIONS(3593), + [anon_sym_virtual] = ACTIONS(3593), + [anon_sym_alignas] = ACTIONS(3593), + [anon_sym_explicit] = ACTIONS(3593), + [anon_sym_typename] = ACTIONS(3593), + [anon_sym_template] = ACTIONS(3593), + [anon_sym_operator] = ACTIONS(3593), + [anon_sym_try] = ACTIONS(3593), + [anon_sym_delete] = ACTIONS(3593), + [anon_sym_throw] = ACTIONS(3593), + [anon_sym_namespace] = ACTIONS(3593), + [anon_sym_using] = ACTIONS(3593), + [anon_sym_static_assert] = ACTIONS(3593), + [anon_sym_concept] = ACTIONS(3593), + [anon_sym_co_return] = ACTIONS(3593), + [anon_sym_co_yield] = ACTIONS(3593), + [anon_sym_R_DQUOTE] = ACTIONS(3595), + [anon_sym_LR_DQUOTE] = ACTIONS(3595), + [anon_sym_uR_DQUOTE] = ACTIONS(3595), + [anon_sym_UR_DQUOTE] = ACTIONS(3595), + [anon_sym_u8R_DQUOTE] = ACTIONS(3595), + [anon_sym_co_await] = ACTIONS(3593), + [anon_sym_new] = ACTIONS(3593), + [anon_sym_requires] = ACTIONS(3593), + [sym_this] = ACTIONS(3593), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3595), + [sym_semgrep_named_ellipsis] = ACTIONS(3595), }, [756] = { - [sym_identifier] = ACTIONS(3610), - [aux_sym_preproc_include_token1] = ACTIONS(3610), - [aux_sym_preproc_def_token1] = ACTIONS(3610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3612), - [aux_sym_preproc_if_token1] = ACTIONS(3610), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3610), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3610), - [sym_preproc_directive] = ACTIONS(3610), - [anon_sym_LPAREN2] = ACTIONS(3612), - [anon_sym_BANG] = ACTIONS(3612), - [anon_sym_TILDE] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3610), - [anon_sym_STAR] = ACTIONS(3612), - [anon_sym_AMP_AMP] = ACTIONS(3612), - [anon_sym_AMP] = ACTIONS(3610), - [anon_sym_SEMI] = ACTIONS(3612), - [anon_sym___extension__] = ACTIONS(3610), - [anon_sym_typedef] = ACTIONS(3610), - [anon_sym_extern] = ACTIONS(3610), - [anon_sym___attribute__] = ACTIONS(3610), - [anon_sym_COLON_COLON] = ACTIONS(3612), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3612), - [anon_sym___declspec] = ACTIONS(3610), - [anon_sym___based] = ACTIONS(3610), - [anon_sym___cdecl] = ACTIONS(3610), - [anon_sym___clrcall] = ACTIONS(3610), - [anon_sym___stdcall] = ACTIONS(3610), - [anon_sym___fastcall] = ACTIONS(3610), - [anon_sym___thiscall] = ACTIONS(3610), - [anon_sym___vectorcall] = ACTIONS(3610), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym_RBRACE] = ACTIONS(3612), - [anon_sym_signed] = ACTIONS(3610), - [anon_sym_unsigned] = ACTIONS(3610), - [anon_sym_long] = ACTIONS(3610), - [anon_sym_short] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3610), - [anon_sym_static] = ACTIONS(3610), - [anon_sym_register] = ACTIONS(3610), - [anon_sym_inline] = ACTIONS(3610), - [anon_sym___inline] = ACTIONS(3610), - [anon_sym___inline__] = ACTIONS(3610), - [anon_sym___forceinline] = ACTIONS(3610), - [anon_sym_thread_local] = ACTIONS(3610), - [anon_sym___thread] = ACTIONS(3610), - [anon_sym_const] = ACTIONS(3610), - [anon_sym_constexpr] = ACTIONS(3610), - [anon_sym_volatile] = ACTIONS(3610), - [anon_sym_restrict] = ACTIONS(3610), - [anon_sym___restrict__] = ACTIONS(3610), - [anon_sym__Atomic] = ACTIONS(3610), - [anon_sym__Noreturn] = ACTIONS(3610), - [anon_sym_noreturn] = ACTIONS(3610), - [anon_sym_mutable] = ACTIONS(3610), - [anon_sym_constinit] = ACTIONS(3610), - [anon_sym_consteval] = ACTIONS(3610), - [sym_primitive_type] = ACTIONS(3610), - [anon_sym_enum] = ACTIONS(3610), - [anon_sym_class] = ACTIONS(3610), - [anon_sym_struct] = ACTIONS(3610), - [anon_sym_union] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(3610), - [anon_sym_switch] = ACTIONS(3610), - [anon_sym_case] = ACTIONS(3610), - [anon_sym_default] = ACTIONS(3610), - [anon_sym_while] = ACTIONS(3610), - [anon_sym_do] = ACTIONS(3610), - [anon_sym_for] = ACTIONS(3610), - [anon_sym_return] = ACTIONS(3610), - [anon_sym_break] = ACTIONS(3610), - [anon_sym_continue] = ACTIONS(3610), - [anon_sym_goto] = ACTIONS(3610), - [anon_sym___try] = ACTIONS(3610), - [anon_sym___leave] = ACTIONS(3610), - [anon_sym_not] = ACTIONS(3610), - [anon_sym_compl] = ACTIONS(3610), - [anon_sym_DASH_DASH] = ACTIONS(3612), - [anon_sym_PLUS_PLUS] = ACTIONS(3612), - [anon_sym_sizeof] = ACTIONS(3610), - [anon_sym___alignof__] = ACTIONS(3610), - [anon_sym___alignof] = ACTIONS(3610), - [anon_sym__alignof] = ACTIONS(3610), - [anon_sym_alignof] = ACTIONS(3610), - [anon_sym__Alignof] = ACTIONS(3610), - [anon_sym_offsetof] = ACTIONS(3610), - [anon_sym__Generic] = ACTIONS(3610), - [anon_sym_asm] = ACTIONS(3610), - [anon_sym___asm__] = ACTIONS(3610), - [sym_number_literal] = ACTIONS(3612), - [anon_sym_L_SQUOTE] = ACTIONS(3612), - [anon_sym_u_SQUOTE] = ACTIONS(3612), - [anon_sym_U_SQUOTE] = ACTIONS(3612), - [anon_sym_u8_SQUOTE] = ACTIONS(3612), - [anon_sym_SQUOTE] = ACTIONS(3612), - [anon_sym_L_DQUOTE] = ACTIONS(3612), - [anon_sym_u_DQUOTE] = ACTIONS(3612), - [anon_sym_U_DQUOTE] = ACTIONS(3612), - [anon_sym_u8_DQUOTE] = ACTIONS(3612), - [anon_sym_DQUOTE] = ACTIONS(3612), - [sym_true] = ACTIONS(3610), - [sym_false] = ACTIONS(3610), - [anon_sym_NULL] = ACTIONS(3610), - [anon_sym_nullptr] = ACTIONS(3610), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3610), - [anon_sym_decltype] = ACTIONS(3610), - [anon_sym_virtual] = ACTIONS(3610), - [anon_sym_alignas] = ACTIONS(3610), - [anon_sym_explicit] = ACTIONS(3610), - [anon_sym_typename] = ACTIONS(3610), - [anon_sym_template] = ACTIONS(3610), - [anon_sym_operator] = ACTIONS(3610), - [anon_sym_try] = ACTIONS(3610), - [anon_sym_delete] = ACTIONS(3610), - [anon_sym_throw] = ACTIONS(3610), - [anon_sym_namespace] = ACTIONS(3610), - [anon_sym_using] = ACTIONS(3610), - [anon_sym_static_assert] = ACTIONS(3610), - [anon_sym_concept] = ACTIONS(3610), - [anon_sym_co_return] = ACTIONS(3610), - [anon_sym_co_yield] = ACTIONS(3610), - [anon_sym_R_DQUOTE] = ACTIONS(3612), - [anon_sym_LR_DQUOTE] = ACTIONS(3612), - [anon_sym_uR_DQUOTE] = ACTIONS(3612), - [anon_sym_UR_DQUOTE] = ACTIONS(3612), - [anon_sym_u8R_DQUOTE] = ACTIONS(3612), - [anon_sym_co_await] = ACTIONS(3610), - [anon_sym_new] = ACTIONS(3610), - [anon_sym_requires] = ACTIONS(3610), - [sym_this] = ACTIONS(3610), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3612), - [sym_semgrep_named_ellipsis] = ACTIONS(3612), + [sym_identifier] = ACTIONS(3513), + [aux_sym_preproc_include_token1] = ACTIONS(3513), + [aux_sym_preproc_def_token1] = ACTIONS(3513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3515), + [aux_sym_preproc_if_token1] = ACTIONS(3513), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3513), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3513), + [sym_preproc_directive] = ACTIONS(3513), + [anon_sym_LPAREN2] = ACTIONS(3515), + [anon_sym_BANG] = ACTIONS(3515), + [anon_sym_TILDE] = ACTIONS(3515), + [anon_sym_DASH] = ACTIONS(3513), + [anon_sym_PLUS] = ACTIONS(3513), + [anon_sym_STAR] = ACTIONS(3515), + [anon_sym_AMP_AMP] = ACTIONS(3515), + [anon_sym_AMP] = ACTIONS(3513), + [anon_sym_SEMI] = ACTIONS(3515), + [anon_sym___extension__] = ACTIONS(3513), + [anon_sym_typedef] = ACTIONS(3513), + [anon_sym_extern] = ACTIONS(3513), + [anon_sym___attribute__] = ACTIONS(3513), + [anon_sym_COLON_COLON] = ACTIONS(3515), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3515), + [anon_sym___declspec] = ACTIONS(3513), + [anon_sym___based] = ACTIONS(3513), + [anon_sym___cdecl] = ACTIONS(3513), + [anon_sym___clrcall] = ACTIONS(3513), + [anon_sym___stdcall] = ACTIONS(3513), + [anon_sym___fastcall] = ACTIONS(3513), + [anon_sym___thiscall] = ACTIONS(3513), + [anon_sym___vectorcall] = ACTIONS(3513), + [anon_sym_LBRACE] = ACTIONS(3515), + [anon_sym_RBRACE] = ACTIONS(3515), + [anon_sym_signed] = ACTIONS(3513), + [anon_sym_unsigned] = ACTIONS(3513), + [anon_sym_long] = ACTIONS(3513), + [anon_sym_short] = ACTIONS(3513), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_static] = ACTIONS(3513), + [anon_sym_register] = ACTIONS(3513), + [anon_sym_inline] = ACTIONS(3513), + [anon_sym___inline] = ACTIONS(3513), + [anon_sym___inline__] = ACTIONS(3513), + [anon_sym___forceinline] = ACTIONS(3513), + [anon_sym_thread_local] = ACTIONS(3513), + [anon_sym___thread] = ACTIONS(3513), + [anon_sym_const] = ACTIONS(3513), + [anon_sym_constexpr] = ACTIONS(3513), + [anon_sym_volatile] = ACTIONS(3513), + [anon_sym_restrict] = ACTIONS(3513), + [anon_sym___restrict__] = ACTIONS(3513), + [anon_sym__Atomic] = ACTIONS(3513), + [anon_sym__Noreturn] = ACTIONS(3513), + [anon_sym_noreturn] = ACTIONS(3513), + [anon_sym_mutable] = ACTIONS(3513), + [anon_sym_constinit] = ACTIONS(3513), + [anon_sym_consteval] = ACTIONS(3513), + [sym_primitive_type] = ACTIONS(3513), + [anon_sym_enum] = ACTIONS(3513), + [anon_sym_class] = ACTIONS(3513), + [anon_sym_struct] = ACTIONS(3513), + [anon_sym_union] = ACTIONS(3513), + [anon_sym_if] = ACTIONS(3513), + [anon_sym_switch] = ACTIONS(3513), + [anon_sym_case] = ACTIONS(3513), + [anon_sym_default] = ACTIONS(3513), + [anon_sym_while] = ACTIONS(3513), + [anon_sym_do] = ACTIONS(3513), + [anon_sym_for] = ACTIONS(3513), + [anon_sym_return] = ACTIONS(3513), + [anon_sym_break] = ACTIONS(3513), + [anon_sym_continue] = ACTIONS(3513), + [anon_sym_goto] = ACTIONS(3513), + [anon_sym___try] = ACTIONS(3513), + [anon_sym___leave] = ACTIONS(3513), + [anon_sym_not] = ACTIONS(3513), + [anon_sym_compl] = ACTIONS(3513), + [anon_sym_DASH_DASH] = ACTIONS(3515), + [anon_sym_PLUS_PLUS] = ACTIONS(3515), + [anon_sym_sizeof] = ACTIONS(3513), + [anon_sym___alignof__] = ACTIONS(3513), + [anon_sym___alignof] = ACTIONS(3513), + [anon_sym__alignof] = ACTIONS(3513), + [anon_sym_alignof] = ACTIONS(3513), + [anon_sym__Alignof] = ACTIONS(3513), + [anon_sym_offsetof] = ACTIONS(3513), + [anon_sym__Generic] = ACTIONS(3513), + [anon_sym_asm] = ACTIONS(3513), + [anon_sym___asm__] = ACTIONS(3513), + [sym_number_literal] = ACTIONS(3515), + [anon_sym_L_SQUOTE] = ACTIONS(3515), + [anon_sym_u_SQUOTE] = ACTIONS(3515), + [anon_sym_U_SQUOTE] = ACTIONS(3515), + [anon_sym_u8_SQUOTE] = ACTIONS(3515), + [anon_sym_SQUOTE] = ACTIONS(3515), + [anon_sym_L_DQUOTE] = ACTIONS(3515), + [anon_sym_u_DQUOTE] = ACTIONS(3515), + [anon_sym_U_DQUOTE] = ACTIONS(3515), + [anon_sym_u8_DQUOTE] = ACTIONS(3515), + [anon_sym_DQUOTE] = ACTIONS(3515), + [sym_true] = ACTIONS(3513), + [sym_false] = ACTIONS(3513), + [anon_sym_NULL] = ACTIONS(3513), + [anon_sym_nullptr] = ACTIONS(3513), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3513), + [anon_sym_decltype] = ACTIONS(3513), + [anon_sym_virtual] = ACTIONS(3513), + [anon_sym_alignas] = ACTIONS(3513), + [anon_sym_explicit] = ACTIONS(3513), + [anon_sym_typename] = ACTIONS(3513), + [anon_sym_template] = ACTIONS(3513), + [anon_sym_operator] = ACTIONS(3513), + [anon_sym_try] = ACTIONS(3513), + [anon_sym_delete] = ACTIONS(3513), + [anon_sym_throw] = ACTIONS(3513), + [anon_sym_namespace] = ACTIONS(3513), + [anon_sym_using] = ACTIONS(3513), + [anon_sym_static_assert] = ACTIONS(3513), + [anon_sym_concept] = ACTIONS(3513), + [anon_sym_co_return] = ACTIONS(3513), + [anon_sym_co_yield] = ACTIONS(3513), + [anon_sym_R_DQUOTE] = ACTIONS(3515), + [anon_sym_LR_DQUOTE] = ACTIONS(3515), + [anon_sym_uR_DQUOTE] = ACTIONS(3515), + [anon_sym_UR_DQUOTE] = ACTIONS(3515), + [anon_sym_u8R_DQUOTE] = ACTIONS(3515), + [anon_sym_co_await] = ACTIONS(3513), + [anon_sym_new] = ACTIONS(3513), + [anon_sym_requires] = ACTIONS(3513), + [sym_this] = ACTIONS(3513), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3515), + [sym_semgrep_named_ellipsis] = ACTIONS(3515), }, [757] = { - [sym_identifier] = ACTIONS(3253), - [aux_sym_preproc_include_token1] = ACTIONS(3253), - [aux_sym_preproc_def_token1] = ACTIONS(3253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3255), - [aux_sym_preproc_if_token1] = ACTIONS(3253), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3253), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3253), - [sym_preproc_directive] = ACTIONS(3253), - [anon_sym_LPAREN2] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3253), - [anon_sym_PLUS] = ACTIONS(3253), - [anon_sym_STAR] = ACTIONS(3255), - [anon_sym_AMP_AMP] = ACTIONS(3255), - [anon_sym_AMP] = ACTIONS(3253), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym___extension__] = ACTIONS(3253), - [anon_sym_typedef] = ACTIONS(3253), - [anon_sym_extern] = ACTIONS(3253), - [anon_sym___attribute__] = ACTIONS(3253), - [anon_sym_COLON_COLON] = ACTIONS(3255), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3255), - [anon_sym___declspec] = ACTIONS(3253), - [anon_sym___based] = ACTIONS(3253), - [anon_sym___cdecl] = ACTIONS(3253), - [anon_sym___clrcall] = ACTIONS(3253), - [anon_sym___stdcall] = ACTIONS(3253), - [anon_sym___fastcall] = ACTIONS(3253), - [anon_sym___thiscall] = ACTIONS(3253), - [anon_sym___vectorcall] = ACTIONS(3253), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_RBRACE] = ACTIONS(3255), - [anon_sym_signed] = ACTIONS(3253), - [anon_sym_unsigned] = ACTIONS(3253), - [anon_sym_long] = ACTIONS(3253), - [anon_sym_short] = ACTIONS(3253), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_static] = ACTIONS(3253), - [anon_sym_register] = ACTIONS(3253), - [anon_sym_inline] = ACTIONS(3253), - [anon_sym___inline] = ACTIONS(3253), - [anon_sym___inline__] = ACTIONS(3253), - [anon_sym___forceinline] = ACTIONS(3253), - [anon_sym_thread_local] = ACTIONS(3253), - [anon_sym___thread] = ACTIONS(3253), - [anon_sym_const] = ACTIONS(3253), - [anon_sym_constexpr] = ACTIONS(3253), - [anon_sym_volatile] = ACTIONS(3253), - [anon_sym_restrict] = ACTIONS(3253), - [anon_sym___restrict__] = ACTIONS(3253), - [anon_sym__Atomic] = ACTIONS(3253), - [anon_sym__Noreturn] = ACTIONS(3253), - [anon_sym_noreturn] = ACTIONS(3253), - [anon_sym_mutable] = ACTIONS(3253), - [anon_sym_constinit] = ACTIONS(3253), - [anon_sym_consteval] = ACTIONS(3253), - [sym_primitive_type] = ACTIONS(3253), - [anon_sym_enum] = ACTIONS(3253), - [anon_sym_class] = ACTIONS(3253), - [anon_sym_struct] = ACTIONS(3253), - [anon_sym_union] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(3253), - [anon_sym_switch] = ACTIONS(3253), - [anon_sym_case] = ACTIONS(3253), - [anon_sym_default] = ACTIONS(3253), - [anon_sym_while] = ACTIONS(3253), - [anon_sym_do] = ACTIONS(3253), - [anon_sym_for] = ACTIONS(3253), - [anon_sym_return] = ACTIONS(3253), - [anon_sym_break] = ACTIONS(3253), - [anon_sym_continue] = ACTIONS(3253), - [anon_sym_goto] = ACTIONS(3253), - [anon_sym___try] = ACTIONS(3253), - [anon_sym___leave] = ACTIONS(3253), - [anon_sym_not] = ACTIONS(3253), - [anon_sym_compl] = ACTIONS(3253), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_sizeof] = ACTIONS(3253), - [anon_sym___alignof__] = ACTIONS(3253), - [anon_sym___alignof] = ACTIONS(3253), - [anon_sym__alignof] = ACTIONS(3253), - [anon_sym_alignof] = ACTIONS(3253), - [anon_sym__Alignof] = ACTIONS(3253), - [anon_sym_offsetof] = ACTIONS(3253), - [anon_sym__Generic] = ACTIONS(3253), - [anon_sym_asm] = ACTIONS(3253), - [anon_sym___asm__] = ACTIONS(3253), - [sym_number_literal] = ACTIONS(3255), - [anon_sym_L_SQUOTE] = ACTIONS(3255), - [anon_sym_u_SQUOTE] = ACTIONS(3255), - [anon_sym_U_SQUOTE] = ACTIONS(3255), - [anon_sym_u8_SQUOTE] = ACTIONS(3255), - [anon_sym_SQUOTE] = ACTIONS(3255), - [anon_sym_L_DQUOTE] = ACTIONS(3255), - [anon_sym_u_DQUOTE] = ACTIONS(3255), - [anon_sym_U_DQUOTE] = ACTIONS(3255), - [anon_sym_u8_DQUOTE] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(3255), - [sym_true] = ACTIONS(3253), - [sym_false] = ACTIONS(3253), - [anon_sym_NULL] = ACTIONS(3253), - [anon_sym_nullptr] = ACTIONS(3253), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3253), - [anon_sym_decltype] = ACTIONS(3253), - [anon_sym_virtual] = ACTIONS(3253), - [anon_sym_alignas] = ACTIONS(3253), - [anon_sym_explicit] = ACTIONS(3253), - [anon_sym_typename] = ACTIONS(3253), - [anon_sym_template] = ACTIONS(3253), - [anon_sym_operator] = ACTIONS(3253), - [anon_sym_try] = ACTIONS(3253), - [anon_sym_delete] = ACTIONS(3253), - [anon_sym_throw] = ACTIONS(3253), - [anon_sym_namespace] = ACTIONS(3253), - [anon_sym_using] = ACTIONS(3253), - [anon_sym_static_assert] = ACTIONS(3253), - [anon_sym_concept] = ACTIONS(3253), - [anon_sym_co_return] = ACTIONS(3253), - [anon_sym_co_yield] = ACTIONS(3253), - [anon_sym_R_DQUOTE] = ACTIONS(3255), - [anon_sym_LR_DQUOTE] = ACTIONS(3255), - [anon_sym_uR_DQUOTE] = ACTIONS(3255), - [anon_sym_UR_DQUOTE] = ACTIONS(3255), - [anon_sym_u8R_DQUOTE] = ACTIONS(3255), - [anon_sym_co_await] = ACTIONS(3253), - [anon_sym_new] = ACTIONS(3253), - [anon_sym_requires] = ACTIONS(3253), - [sym_this] = ACTIONS(3253), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3255), - [sym_semgrep_named_ellipsis] = ACTIONS(3255), + [sym_identifier] = ACTIONS(3410), + [aux_sym_preproc_include_token1] = ACTIONS(3410), + [aux_sym_preproc_def_token1] = ACTIONS(3410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3412), + [aux_sym_preproc_if_token1] = ACTIONS(3410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3410), + [sym_preproc_directive] = ACTIONS(3410), + [anon_sym_LPAREN2] = ACTIONS(3412), + [anon_sym_BANG] = ACTIONS(3412), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3410), + [anon_sym_PLUS] = ACTIONS(3410), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_AMP] = ACTIONS(3410), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym___extension__] = ACTIONS(3410), + [anon_sym_typedef] = ACTIONS(3410), + [anon_sym_extern] = ACTIONS(3410), + [anon_sym___attribute__] = ACTIONS(3410), + [anon_sym_COLON_COLON] = ACTIONS(3412), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3412), + [anon_sym___declspec] = ACTIONS(3410), + [anon_sym___based] = ACTIONS(3410), + [anon_sym___cdecl] = ACTIONS(3410), + [anon_sym___clrcall] = ACTIONS(3410), + [anon_sym___stdcall] = ACTIONS(3410), + [anon_sym___fastcall] = ACTIONS(3410), + [anon_sym___thiscall] = ACTIONS(3410), + [anon_sym___vectorcall] = ACTIONS(3410), + [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_RBRACE] = ACTIONS(3412), + [anon_sym_signed] = ACTIONS(3410), + [anon_sym_unsigned] = ACTIONS(3410), + [anon_sym_long] = ACTIONS(3410), + [anon_sym_short] = ACTIONS(3410), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_static] = ACTIONS(3410), + [anon_sym_register] = ACTIONS(3410), + [anon_sym_inline] = ACTIONS(3410), + [anon_sym___inline] = ACTIONS(3410), + [anon_sym___inline__] = ACTIONS(3410), + [anon_sym___forceinline] = ACTIONS(3410), + [anon_sym_thread_local] = ACTIONS(3410), + [anon_sym___thread] = ACTIONS(3410), + [anon_sym_const] = ACTIONS(3410), + [anon_sym_constexpr] = ACTIONS(3410), + [anon_sym_volatile] = ACTIONS(3410), + [anon_sym_restrict] = ACTIONS(3410), + [anon_sym___restrict__] = ACTIONS(3410), + [anon_sym__Atomic] = ACTIONS(3410), + [anon_sym__Noreturn] = ACTIONS(3410), + [anon_sym_noreturn] = ACTIONS(3410), + [anon_sym_mutable] = ACTIONS(3410), + [anon_sym_constinit] = ACTIONS(3410), + [anon_sym_consteval] = ACTIONS(3410), + [sym_primitive_type] = ACTIONS(3410), + [anon_sym_enum] = ACTIONS(3410), + [anon_sym_class] = ACTIONS(3410), + [anon_sym_struct] = ACTIONS(3410), + [anon_sym_union] = ACTIONS(3410), + [anon_sym_if] = ACTIONS(3410), + [anon_sym_switch] = ACTIONS(3410), + [anon_sym_case] = ACTIONS(3410), + [anon_sym_default] = ACTIONS(3410), + [anon_sym_while] = ACTIONS(3410), + [anon_sym_do] = ACTIONS(3410), + [anon_sym_for] = ACTIONS(3410), + [anon_sym_return] = ACTIONS(3410), + [anon_sym_break] = ACTIONS(3410), + [anon_sym_continue] = ACTIONS(3410), + [anon_sym_goto] = ACTIONS(3410), + [anon_sym___try] = ACTIONS(3410), + [anon_sym___leave] = ACTIONS(3410), + [anon_sym_not] = ACTIONS(3410), + [anon_sym_compl] = ACTIONS(3410), + [anon_sym_DASH_DASH] = ACTIONS(3412), + [anon_sym_PLUS_PLUS] = ACTIONS(3412), + [anon_sym_sizeof] = ACTIONS(3410), + [anon_sym___alignof__] = ACTIONS(3410), + [anon_sym___alignof] = ACTIONS(3410), + [anon_sym__alignof] = ACTIONS(3410), + [anon_sym_alignof] = ACTIONS(3410), + [anon_sym__Alignof] = ACTIONS(3410), + [anon_sym_offsetof] = ACTIONS(3410), + [anon_sym__Generic] = ACTIONS(3410), + [anon_sym_asm] = ACTIONS(3410), + [anon_sym___asm__] = ACTIONS(3410), + [sym_number_literal] = ACTIONS(3412), + [anon_sym_L_SQUOTE] = ACTIONS(3412), + [anon_sym_u_SQUOTE] = ACTIONS(3412), + [anon_sym_U_SQUOTE] = ACTIONS(3412), + [anon_sym_u8_SQUOTE] = ACTIONS(3412), + [anon_sym_SQUOTE] = ACTIONS(3412), + [anon_sym_L_DQUOTE] = ACTIONS(3412), + [anon_sym_u_DQUOTE] = ACTIONS(3412), + [anon_sym_U_DQUOTE] = ACTIONS(3412), + [anon_sym_u8_DQUOTE] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3412), + [sym_true] = ACTIONS(3410), + [sym_false] = ACTIONS(3410), + [anon_sym_NULL] = ACTIONS(3410), + [anon_sym_nullptr] = ACTIONS(3410), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3410), + [anon_sym_decltype] = ACTIONS(3410), + [anon_sym_virtual] = ACTIONS(3410), + [anon_sym_alignas] = ACTIONS(3410), + [anon_sym_explicit] = ACTIONS(3410), + [anon_sym_typename] = ACTIONS(3410), + [anon_sym_template] = ACTIONS(3410), + [anon_sym_operator] = ACTIONS(3410), + [anon_sym_try] = ACTIONS(3410), + [anon_sym_delete] = ACTIONS(3410), + [anon_sym_throw] = ACTIONS(3410), + [anon_sym_namespace] = ACTIONS(3410), + [anon_sym_using] = ACTIONS(3410), + [anon_sym_static_assert] = ACTIONS(3410), + [anon_sym_concept] = ACTIONS(3410), + [anon_sym_co_return] = ACTIONS(3410), + [anon_sym_co_yield] = ACTIONS(3410), + [anon_sym_R_DQUOTE] = ACTIONS(3412), + [anon_sym_LR_DQUOTE] = ACTIONS(3412), + [anon_sym_uR_DQUOTE] = ACTIONS(3412), + [anon_sym_UR_DQUOTE] = ACTIONS(3412), + [anon_sym_u8R_DQUOTE] = ACTIONS(3412), + [anon_sym_co_await] = ACTIONS(3410), + [anon_sym_new] = ACTIONS(3410), + [anon_sym_requires] = ACTIONS(3410), + [sym_this] = ACTIONS(3410), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3412), + [sym_semgrep_named_ellipsis] = ACTIONS(3412), }, [758] = { - [sym_identifier] = ACTIONS(3481), - [aux_sym_preproc_include_token1] = ACTIONS(3481), - [aux_sym_preproc_def_token1] = ACTIONS(3481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3483), - [aux_sym_preproc_if_token1] = ACTIONS(3481), - [aux_sym_preproc_if_token2] = ACTIONS(3481), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3481), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3481), - [sym_preproc_directive] = ACTIONS(3481), - [anon_sym_LPAREN2] = ACTIONS(3483), - [anon_sym_BANG] = ACTIONS(3483), - [anon_sym_TILDE] = ACTIONS(3483), - [anon_sym_DASH] = ACTIONS(3481), - [anon_sym_PLUS] = ACTIONS(3481), - [anon_sym_STAR] = ACTIONS(3483), - [anon_sym_AMP_AMP] = ACTIONS(3483), - [anon_sym_AMP] = ACTIONS(3481), - [anon_sym_SEMI] = ACTIONS(3483), - [anon_sym___extension__] = ACTIONS(3481), - [anon_sym_typedef] = ACTIONS(3481), - [anon_sym_extern] = ACTIONS(3481), - [anon_sym___attribute__] = ACTIONS(3481), - [anon_sym_COLON_COLON] = ACTIONS(3483), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3483), - [anon_sym___declspec] = ACTIONS(3481), - [anon_sym___based] = ACTIONS(3481), - [anon_sym___cdecl] = ACTIONS(3481), - [anon_sym___clrcall] = ACTIONS(3481), - [anon_sym___stdcall] = ACTIONS(3481), - [anon_sym___fastcall] = ACTIONS(3481), - [anon_sym___thiscall] = ACTIONS(3481), - [anon_sym___vectorcall] = ACTIONS(3481), - [anon_sym_LBRACE] = ACTIONS(3483), - [anon_sym_signed] = ACTIONS(3481), - [anon_sym_unsigned] = ACTIONS(3481), - [anon_sym_long] = ACTIONS(3481), - [anon_sym_short] = ACTIONS(3481), - [anon_sym_LBRACK] = ACTIONS(3481), - [anon_sym_static] = ACTIONS(3481), - [anon_sym_register] = ACTIONS(3481), - [anon_sym_inline] = ACTIONS(3481), - [anon_sym___inline] = ACTIONS(3481), - [anon_sym___inline__] = ACTIONS(3481), - [anon_sym___forceinline] = ACTIONS(3481), - [anon_sym_thread_local] = ACTIONS(3481), - [anon_sym___thread] = ACTIONS(3481), - [anon_sym_const] = ACTIONS(3481), - [anon_sym_constexpr] = ACTIONS(3481), - [anon_sym_volatile] = ACTIONS(3481), - [anon_sym_restrict] = ACTIONS(3481), - [anon_sym___restrict__] = ACTIONS(3481), - [anon_sym__Atomic] = ACTIONS(3481), - [anon_sym__Noreturn] = ACTIONS(3481), - [anon_sym_noreturn] = ACTIONS(3481), - [anon_sym_mutable] = ACTIONS(3481), - [anon_sym_constinit] = ACTIONS(3481), - [anon_sym_consteval] = ACTIONS(3481), - [sym_primitive_type] = ACTIONS(3481), - [anon_sym_enum] = ACTIONS(3481), - [anon_sym_class] = ACTIONS(3481), - [anon_sym_struct] = ACTIONS(3481), - [anon_sym_union] = ACTIONS(3481), - [anon_sym_if] = ACTIONS(3481), - [anon_sym_switch] = ACTIONS(3481), - [anon_sym_case] = ACTIONS(3481), - [anon_sym_default] = ACTIONS(3481), - [anon_sym_while] = ACTIONS(3481), - [anon_sym_do] = ACTIONS(3481), - [anon_sym_for] = ACTIONS(3481), - [anon_sym_return] = ACTIONS(3481), - [anon_sym_break] = ACTIONS(3481), - [anon_sym_continue] = ACTIONS(3481), - [anon_sym_goto] = ACTIONS(3481), - [anon_sym___try] = ACTIONS(3481), - [anon_sym___leave] = ACTIONS(3481), - [anon_sym_not] = ACTIONS(3481), - [anon_sym_compl] = ACTIONS(3481), - [anon_sym_DASH_DASH] = ACTIONS(3483), - [anon_sym_PLUS_PLUS] = ACTIONS(3483), - [anon_sym_sizeof] = ACTIONS(3481), - [anon_sym___alignof__] = ACTIONS(3481), - [anon_sym___alignof] = ACTIONS(3481), - [anon_sym__alignof] = ACTIONS(3481), - [anon_sym_alignof] = ACTIONS(3481), - [anon_sym__Alignof] = ACTIONS(3481), - [anon_sym_offsetof] = ACTIONS(3481), - [anon_sym__Generic] = ACTIONS(3481), - [anon_sym_asm] = ACTIONS(3481), - [anon_sym___asm__] = ACTIONS(3481), - [sym_number_literal] = ACTIONS(3483), - [anon_sym_L_SQUOTE] = ACTIONS(3483), - [anon_sym_u_SQUOTE] = ACTIONS(3483), - [anon_sym_U_SQUOTE] = ACTIONS(3483), - [anon_sym_u8_SQUOTE] = ACTIONS(3483), - [anon_sym_SQUOTE] = ACTIONS(3483), - [anon_sym_L_DQUOTE] = ACTIONS(3483), - [anon_sym_u_DQUOTE] = ACTIONS(3483), - [anon_sym_U_DQUOTE] = ACTIONS(3483), - [anon_sym_u8_DQUOTE] = ACTIONS(3483), - [anon_sym_DQUOTE] = ACTIONS(3483), - [sym_true] = ACTIONS(3481), - [sym_false] = ACTIONS(3481), - [anon_sym_NULL] = ACTIONS(3481), - [anon_sym_nullptr] = ACTIONS(3481), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3481), - [anon_sym_decltype] = ACTIONS(3481), - [anon_sym_virtual] = ACTIONS(3481), - [anon_sym_alignas] = ACTIONS(3481), - [anon_sym_explicit] = ACTIONS(3481), - [anon_sym_typename] = ACTIONS(3481), - [anon_sym_template] = ACTIONS(3481), - [anon_sym_operator] = ACTIONS(3481), - [anon_sym_try] = ACTIONS(3481), - [anon_sym_delete] = ACTIONS(3481), - [anon_sym_throw] = ACTIONS(3481), - [anon_sym_namespace] = ACTIONS(3481), - [anon_sym_using] = ACTIONS(3481), - [anon_sym_static_assert] = ACTIONS(3481), - [anon_sym_concept] = ACTIONS(3481), - [anon_sym_co_return] = ACTIONS(3481), - [anon_sym_co_yield] = ACTIONS(3481), - [anon_sym_R_DQUOTE] = ACTIONS(3483), - [anon_sym_LR_DQUOTE] = ACTIONS(3483), - [anon_sym_uR_DQUOTE] = ACTIONS(3483), - [anon_sym_UR_DQUOTE] = ACTIONS(3483), - [anon_sym_u8R_DQUOTE] = ACTIONS(3483), - [anon_sym_co_await] = ACTIONS(3481), - [anon_sym_new] = ACTIONS(3481), - [anon_sym_requires] = ACTIONS(3481), - [sym_this] = ACTIONS(3481), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3483), - [sym_semgrep_named_ellipsis] = ACTIONS(3483), + [sym_identifier] = ACTIONS(3519), + [aux_sym_preproc_include_token1] = ACTIONS(3519), + [aux_sym_preproc_def_token1] = ACTIONS(3519), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3521), + [aux_sym_preproc_if_token1] = ACTIONS(3519), + [aux_sym_preproc_if_token2] = ACTIONS(3519), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3519), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3519), + [sym_preproc_directive] = ACTIONS(3519), + [anon_sym_LPAREN2] = ACTIONS(3521), + [anon_sym_BANG] = ACTIONS(3521), + [anon_sym_TILDE] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(3519), + [anon_sym_STAR] = ACTIONS(3521), + [anon_sym_AMP_AMP] = ACTIONS(3521), + [anon_sym_AMP] = ACTIONS(3519), + [anon_sym_SEMI] = ACTIONS(3521), + [anon_sym___extension__] = ACTIONS(3519), + [anon_sym_typedef] = ACTIONS(3519), + [anon_sym_extern] = ACTIONS(3519), + [anon_sym___attribute__] = ACTIONS(3519), + [anon_sym_COLON_COLON] = ACTIONS(3521), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3521), + [anon_sym___declspec] = ACTIONS(3519), + [anon_sym___based] = ACTIONS(3519), + [anon_sym___cdecl] = ACTIONS(3519), + [anon_sym___clrcall] = ACTIONS(3519), + [anon_sym___stdcall] = ACTIONS(3519), + [anon_sym___fastcall] = ACTIONS(3519), + [anon_sym___thiscall] = ACTIONS(3519), + [anon_sym___vectorcall] = ACTIONS(3519), + [anon_sym_LBRACE] = ACTIONS(3521), + [anon_sym_signed] = ACTIONS(3519), + [anon_sym_unsigned] = ACTIONS(3519), + [anon_sym_long] = ACTIONS(3519), + [anon_sym_short] = ACTIONS(3519), + [anon_sym_LBRACK] = ACTIONS(3519), + [anon_sym_static] = ACTIONS(3519), + [anon_sym_register] = ACTIONS(3519), + [anon_sym_inline] = ACTIONS(3519), + [anon_sym___inline] = ACTIONS(3519), + [anon_sym___inline__] = ACTIONS(3519), + [anon_sym___forceinline] = ACTIONS(3519), + [anon_sym_thread_local] = ACTIONS(3519), + [anon_sym___thread] = ACTIONS(3519), + [anon_sym_const] = ACTIONS(3519), + [anon_sym_constexpr] = ACTIONS(3519), + [anon_sym_volatile] = ACTIONS(3519), + [anon_sym_restrict] = ACTIONS(3519), + [anon_sym___restrict__] = ACTIONS(3519), + [anon_sym__Atomic] = ACTIONS(3519), + [anon_sym__Noreturn] = ACTIONS(3519), + [anon_sym_noreturn] = ACTIONS(3519), + [anon_sym_mutable] = ACTIONS(3519), + [anon_sym_constinit] = ACTIONS(3519), + [anon_sym_consteval] = ACTIONS(3519), + [sym_primitive_type] = ACTIONS(3519), + [anon_sym_enum] = ACTIONS(3519), + [anon_sym_class] = ACTIONS(3519), + [anon_sym_struct] = ACTIONS(3519), + [anon_sym_union] = ACTIONS(3519), + [anon_sym_if] = ACTIONS(3519), + [anon_sym_switch] = ACTIONS(3519), + [anon_sym_case] = ACTIONS(3519), + [anon_sym_default] = ACTIONS(3519), + [anon_sym_while] = ACTIONS(3519), + [anon_sym_do] = ACTIONS(3519), + [anon_sym_for] = ACTIONS(3519), + [anon_sym_return] = ACTIONS(3519), + [anon_sym_break] = ACTIONS(3519), + [anon_sym_continue] = ACTIONS(3519), + [anon_sym_goto] = ACTIONS(3519), + [anon_sym___try] = ACTIONS(3519), + [anon_sym___leave] = ACTIONS(3519), + [anon_sym_not] = ACTIONS(3519), + [anon_sym_compl] = ACTIONS(3519), + [anon_sym_DASH_DASH] = ACTIONS(3521), + [anon_sym_PLUS_PLUS] = ACTIONS(3521), + [anon_sym_sizeof] = ACTIONS(3519), + [anon_sym___alignof__] = ACTIONS(3519), + [anon_sym___alignof] = ACTIONS(3519), + [anon_sym__alignof] = ACTIONS(3519), + [anon_sym_alignof] = ACTIONS(3519), + [anon_sym__Alignof] = ACTIONS(3519), + [anon_sym_offsetof] = ACTIONS(3519), + [anon_sym__Generic] = ACTIONS(3519), + [anon_sym_asm] = ACTIONS(3519), + [anon_sym___asm__] = ACTIONS(3519), + [sym_number_literal] = ACTIONS(3521), + [anon_sym_L_SQUOTE] = ACTIONS(3521), + [anon_sym_u_SQUOTE] = ACTIONS(3521), + [anon_sym_U_SQUOTE] = ACTIONS(3521), + [anon_sym_u8_SQUOTE] = ACTIONS(3521), + [anon_sym_SQUOTE] = ACTIONS(3521), + [anon_sym_L_DQUOTE] = ACTIONS(3521), + [anon_sym_u_DQUOTE] = ACTIONS(3521), + [anon_sym_U_DQUOTE] = ACTIONS(3521), + [anon_sym_u8_DQUOTE] = ACTIONS(3521), + [anon_sym_DQUOTE] = ACTIONS(3521), + [sym_true] = ACTIONS(3519), + [sym_false] = ACTIONS(3519), + [anon_sym_NULL] = ACTIONS(3519), + [anon_sym_nullptr] = ACTIONS(3519), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3519), + [anon_sym_decltype] = ACTIONS(3519), + [anon_sym_virtual] = ACTIONS(3519), + [anon_sym_alignas] = ACTIONS(3519), + [anon_sym_explicit] = ACTIONS(3519), + [anon_sym_typename] = ACTIONS(3519), + [anon_sym_template] = ACTIONS(3519), + [anon_sym_operator] = ACTIONS(3519), + [anon_sym_try] = ACTIONS(3519), + [anon_sym_delete] = ACTIONS(3519), + [anon_sym_throw] = ACTIONS(3519), + [anon_sym_namespace] = ACTIONS(3519), + [anon_sym_using] = ACTIONS(3519), + [anon_sym_static_assert] = ACTIONS(3519), + [anon_sym_concept] = ACTIONS(3519), + [anon_sym_co_return] = ACTIONS(3519), + [anon_sym_co_yield] = ACTIONS(3519), + [anon_sym_R_DQUOTE] = ACTIONS(3521), + [anon_sym_LR_DQUOTE] = ACTIONS(3521), + [anon_sym_uR_DQUOTE] = ACTIONS(3521), + [anon_sym_UR_DQUOTE] = ACTIONS(3521), + [anon_sym_u8R_DQUOTE] = ACTIONS(3521), + [anon_sym_co_await] = ACTIONS(3519), + [anon_sym_new] = ACTIONS(3519), + [anon_sym_requires] = ACTIONS(3519), + [sym_this] = ACTIONS(3519), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3521), + [sym_semgrep_named_ellipsis] = ACTIONS(3521), }, [759] = { - [sym_identifier] = ACTIONS(3354), - [aux_sym_preproc_include_token1] = ACTIONS(3354), - [aux_sym_preproc_def_token1] = ACTIONS(3354), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3356), - [aux_sym_preproc_if_token1] = ACTIONS(3354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3354), - [sym_preproc_directive] = ACTIONS(3354), - [anon_sym_LPAREN2] = ACTIONS(3356), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(3356), - [anon_sym_DASH] = ACTIONS(3354), - [anon_sym_PLUS] = ACTIONS(3354), - [anon_sym_STAR] = ACTIONS(3356), - [anon_sym_AMP_AMP] = ACTIONS(3356), - [anon_sym_AMP] = ACTIONS(3354), - [anon_sym_SEMI] = ACTIONS(3356), - [anon_sym___extension__] = ACTIONS(3354), - [anon_sym_typedef] = ACTIONS(3354), - [anon_sym_extern] = ACTIONS(3354), - [anon_sym___attribute__] = ACTIONS(3354), - [anon_sym_COLON_COLON] = ACTIONS(3356), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3356), - [anon_sym___declspec] = ACTIONS(3354), - [anon_sym___based] = ACTIONS(3354), - [anon_sym___cdecl] = ACTIONS(3354), - [anon_sym___clrcall] = ACTIONS(3354), - [anon_sym___stdcall] = ACTIONS(3354), - [anon_sym___fastcall] = ACTIONS(3354), - [anon_sym___thiscall] = ACTIONS(3354), - [anon_sym___vectorcall] = ACTIONS(3354), - [anon_sym_LBRACE] = ACTIONS(3356), - [anon_sym_RBRACE] = ACTIONS(3356), - [anon_sym_signed] = ACTIONS(3354), - [anon_sym_unsigned] = ACTIONS(3354), - [anon_sym_long] = ACTIONS(3354), - [anon_sym_short] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3354), - [anon_sym_static] = ACTIONS(3354), - [anon_sym_register] = ACTIONS(3354), - [anon_sym_inline] = ACTIONS(3354), - [anon_sym___inline] = ACTIONS(3354), - [anon_sym___inline__] = ACTIONS(3354), - [anon_sym___forceinline] = ACTIONS(3354), - [anon_sym_thread_local] = ACTIONS(3354), - [anon_sym___thread] = ACTIONS(3354), - [anon_sym_const] = ACTIONS(3354), - [anon_sym_constexpr] = ACTIONS(3354), - [anon_sym_volatile] = ACTIONS(3354), - [anon_sym_restrict] = ACTIONS(3354), - [anon_sym___restrict__] = ACTIONS(3354), - [anon_sym__Atomic] = ACTIONS(3354), - [anon_sym__Noreturn] = ACTIONS(3354), - [anon_sym_noreturn] = ACTIONS(3354), - [anon_sym_mutable] = ACTIONS(3354), - [anon_sym_constinit] = ACTIONS(3354), - [anon_sym_consteval] = ACTIONS(3354), - [sym_primitive_type] = ACTIONS(3354), - [anon_sym_enum] = ACTIONS(3354), - [anon_sym_class] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(3354), - [anon_sym_union] = ACTIONS(3354), - [anon_sym_if] = ACTIONS(3354), - [anon_sym_switch] = ACTIONS(3354), - [anon_sym_case] = ACTIONS(3354), - [anon_sym_default] = ACTIONS(3354), - [anon_sym_while] = ACTIONS(3354), - [anon_sym_do] = ACTIONS(3354), - [anon_sym_for] = ACTIONS(3354), - [anon_sym_return] = ACTIONS(3354), - [anon_sym_break] = ACTIONS(3354), - [anon_sym_continue] = ACTIONS(3354), - [anon_sym_goto] = ACTIONS(3354), - [anon_sym___try] = ACTIONS(3354), - [anon_sym___leave] = ACTIONS(3354), - [anon_sym_not] = ACTIONS(3354), - [anon_sym_compl] = ACTIONS(3354), - [anon_sym_DASH_DASH] = ACTIONS(3356), - [anon_sym_PLUS_PLUS] = ACTIONS(3356), - [anon_sym_sizeof] = ACTIONS(3354), - [anon_sym___alignof__] = ACTIONS(3354), - [anon_sym___alignof] = ACTIONS(3354), - [anon_sym__alignof] = ACTIONS(3354), - [anon_sym_alignof] = ACTIONS(3354), - [anon_sym__Alignof] = ACTIONS(3354), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3354), - [anon_sym_asm] = ACTIONS(3354), - [anon_sym___asm__] = ACTIONS(3354), - [sym_number_literal] = ACTIONS(3356), - [anon_sym_L_SQUOTE] = ACTIONS(3356), - [anon_sym_u_SQUOTE] = ACTIONS(3356), - [anon_sym_U_SQUOTE] = ACTIONS(3356), - [anon_sym_u8_SQUOTE] = ACTIONS(3356), - [anon_sym_SQUOTE] = ACTIONS(3356), - [anon_sym_L_DQUOTE] = ACTIONS(3356), - [anon_sym_u_DQUOTE] = ACTIONS(3356), - [anon_sym_U_DQUOTE] = ACTIONS(3356), - [anon_sym_u8_DQUOTE] = ACTIONS(3356), - [anon_sym_DQUOTE] = ACTIONS(3356), - [sym_true] = ACTIONS(3354), - [sym_false] = ACTIONS(3354), - [anon_sym_NULL] = ACTIONS(3354), - [anon_sym_nullptr] = ACTIONS(3354), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3354), - [anon_sym_decltype] = ACTIONS(3354), - [anon_sym_virtual] = ACTIONS(3354), - [anon_sym_alignas] = ACTIONS(3354), - [anon_sym_explicit] = ACTIONS(3354), - [anon_sym_typename] = ACTIONS(3354), - [anon_sym_template] = ACTIONS(3354), - [anon_sym_operator] = ACTIONS(3354), - [anon_sym_try] = ACTIONS(3354), - [anon_sym_delete] = ACTIONS(3354), - [anon_sym_throw] = ACTIONS(3354), - [anon_sym_namespace] = ACTIONS(3354), - [anon_sym_using] = ACTIONS(3354), - [anon_sym_static_assert] = ACTIONS(3354), - [anon_sym_concept] = ACTIONS(3354), - [anon_sym_co_return] = ACTIONS(3354), - [anon_sym_co_yield] = ACTIONS(3354), - [anon_sym_R_DQUOTE] = ACTIONS(3356), - [anon_sym_LR_DQUOTE] = ACTIONS(3356), - [anon_sym_uR_DQUOTE] = ACTIONS(3356), - [anon_sym_UR_DQUOTE] = ACTIONS(3356), - [anon_sym_u8R_DQUOTE] = ACTIONS(3356), - [anon_sym_co_await] = ACTIONS(3354), - [anon_sym_new] = ACTIONS(3354), - [anon_sym_requires] = ACTIONS(3354), - [sym_this] = ACTIONS(3354), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3356), - [sym_semgrep_named_ellipsis] = ACTIONS(3356), + [sym_identifier] = ACTIONS(3519), + [aux_sym_preproc_include_token1] = ACTIONS(3519), + [aux_sym_preproc_def_token1] = ACTIONS(3519), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3521), + [aux_sym_preproc_if_token1] = ACTIONS(3519), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3519), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3519), + [sym_preproc_directive] = ACTIONS(3519), + [anon_sym_LPAREN2] = ACTIONS(3521), + [anon_sym_BANG] = ACTIONS(3521), + [anon_sym_TILDE] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(3519), + [anon_sym_STAR] = ACTIONS(3521), + [anon_sym_AMP_AMP] = ACTIONS(3521), + [anon_sym_AMP] = ACTIONS(3519), + [anon_sym_SEMI] = ACTIONS(3521), + [anon_sym___extension__] = ACTIONS(3519), + [anon_sym_typedef] = ACTIONS(3519), + [anon_sym_extern] = ACTIONS(3519), + [anon_sym___attribute__] = ACTIONS(3519), + [anon_sym_COLON_COLON] = ACTIONS(3521), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3521), + [anon_sym___declspec] = ACTIONS(3519), + [anon_sym___based] = ACTIONS(3519), + [anon_sym___cdecl] = ACTIONS(3519), + [anon_sym___clrcall] = ACTIONS(3519), + [anon_sym___stdcall] = ACTIONS(3519), + [anon_sym___fastcall] = ACTIONS(3519), + [anon_sym___thiscall] = ACTIONS(3519), + [anon_sym___vectorcall] = ACTIONS(3519), + [anon_sym_LBRACE] = ACTIONS(3521), + [anon_sym_RBRACE] = ACTIONS(3521), + [anon_sym_signed] = ACTIONS(3519), + [anon_sym_unsigned] = ACTIONS(3519), + [anon_sym_long] = ACTIONS(3519), + [anon_sym_short] = ACTIONS(3519), + [anon_sym_LBRACK] = ACTIONS(3519), + [anon_sym_static] = ACTIONS(3519), + [anon_sym_register] = ACTIONS(3519), + [anon_sym_inline] = ACTIONS(3519), + [anon_sym___inline] = ACTIONS(3519), + [anon_sym___inline__] = ACTIONS(3519), + [anon_sym___forceinline] = ACTIONS(3519), + [anon_sym_thread_local] = ACTIONS(3519), + [anon_sym___thread] = ACTIONS(3519), + [anon_sym_const] = ACTIONS(3519), + [anon_sym_constexpr] = ACTIONS(3519), + [anon_sym_volatile] = ACTIONS(3519), + [anon_sym_restrict] = ACTIONS(3519), + [anon_sym___restrict__] = ACTIONS(3519), + [anon_sym__Atomic] = ACTIONS(3519), + [anon_sym__Noreturn] = ACTIONS(3519), + [anon_sym_noreturn] = ACTIONS(3519), + [anon_sym_mutable] = ACTIONS(3519), + [anon_sym_constinit] = ACTIONS(3519), + [anon_sym_consteval] = ACTIONS(3519), + [sym_primitive_type] = ACTIONS(3519), + [anon_sym_enum] = ACTIONS(3519), + [anon_sym_class] = ACTIONS(3519), + [anon_sym_struct] = ACTIONS(3519), + [anon_sym_union] = ACTIONS(3519), + [anon_sym_if] = ACTIONS(3519), + [anon_sym_switch] = ACTIONS(3519), + [anon_sym_case] = ACTIONS(3519), + [anon_sym_default] = ACTIONS(3519), + [anon_sym_while] = ACTIONS(3519), + [anon_sym_do] = ACTIONS(3519), + [anon_sym_for] = ACTIONS(3519), + [anon_sym_return] = ACTIONS(3519), + [anon_sym_break] = ACTIONS(3519), + [anon_sym_continue] = ACTIONS(3519), + [anon_sym_goto] = ACTIONS(3519), + [anon_sym___try] = ACTIONS(3519), + [anon_sym___leave] = ACTIONS(3519), + [anon_sym_not] = ACTIONS(3519), + [anon_sym_compl] = ACTIONS(3519), + [anon_sym_DASH_DASH] = ACTIONS(3521), + [anon_sym_PLUS_PLUS] = ACTIONS(3521), + [anon_sym_sizeof] = ACTIONS(3519), + [anon_sym___alignof__] = ACTIONS(3519), + [anon_sym___alignof] = ACTIONS(3519), + [anon_sym__alignof] = ACTIONS(3519), + [anon_sym_alignof] = ACTIONS(3519), + [anon_sym__Alignof] = ACTIONS(3519), + [anon_sym_offsetof] = ACTIONS(3519), + [anon_sym__Generic] = ACTIONS(3519), + [anon_sym_asm] = ACTIONS(3519), + [anon_sym___asm__] = ACTIONS(3519), + [sym_number_literal] = ACTIONS(3521), + [anon_sym_L_SQUOTE] = ACTIONS(3521), + [anon_sym_u_SQUOTE] = ACTIONS(3521), + [anon_sym_U_SQUOTE] = ACTIONS(3521), + [anon_sym_u8_SQUOTE] = ACTIONS(3521), + [anon_sym_SQUOTE] = ACTIONS(3521), + [anon_sym_L_DQUOTE] = ACTIONS(3521), + [anon_sym_u_DQUOTE] = ACTIONS(3521), + [anon_sym_U_DQUOTE] = ACTIONS(3521), + [anon_sym_u8_DQUOTE] = ACTIONS(3521), + [anon_sym_DQUOTE] = ACTIONS(3521), + [sym_true] = ACTIONS(3519), + [sym_false] = ACTIONS(3519), + [anon_sym_NULL] = ACTIONS(3519), + [anon_sym_nullptr] = ACTIONS(3519), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3519), + [anon_sym_decltype] = ACTIONS(3519), + [anon_sym_virtual] = ACTIONS(3519), + [anon_sym_alignas] = ACTIONS(3519), + [anon_sym_explicit] = ACTIONS(3519), + [anon_sym_typename] = ACTIONS(3519), + [anon_sym_template] = ACTIONS(3519), + [anon_sym_operator] = ACTIONS(3519), + [anon_sym_try] = ACTIONS(3519), + [anon_sym_delete] = ACTIONS(3519), + [anon_sym_throw] = ACTIONS(3519), + [anon_sym_namespace] = ACTIONS(3519), + [anon_sym_using] = ACTIONS(3519), + [anon_sym_static_assert] = ACTIONS(3519), + [anon_sym_concept] = ACTIONS(3519), + [anon_sym_co_return] = ACTIONS(3519), + [anon_sym_co_yield] = ACTIONS(3519), + [anon_sym_R_DQUOTE] = ACTIONS(3521), + [anon_sym_LR_DQUOTE] = ACTIONS(3521), + [anon_sym_uR_DQUOTE] = ACTIONS(3521), + [anon_sym_UR_DQUOTE] = ACTIONS(3521), + [anon_sym_u8R_DQUOTE] = ACTIONS(3521), + [anon_sym_co_await] = ACTIONS(3519), + [anon_sym_new] = ACTIONS(3519), + [anon_sym_requires] = ACTIONS(3519), + [sym_this] = ACTIONS(3519), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3521), + [sym_semgrep_named_ellipsis] = ACTIONS(3521), }, [760] = { - [sym_identifier] = ACTIONS(3358), - [aux_sym_preproc_include_token1] = ACTIONS(3358), - [aux_sym_preproc_def_token1] = ACTIONS(3358), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3360), - [aux_sym_preproc_if_token1] = ACTIONS(3358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3358), - [sym_preproc_directive] = ACTIONS(3358), - [anon_sym_LPAREN2] = ACTIONS(3360), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_AMP_AMP] = ACTIONS(3360), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_SEMI] = ACTIONS(3360), - [anon_sym___extension__] = ACTIONS(3358), - [anon_sym_typedef] = ACTIONS(3358), - [anon_sym_extern] = ACTIONS(3358), - [anon_sym___attribute__] = ACTIONS(3358), - [anon_sym_COLON_COLON] = ACTIONS(3360), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3360), - [anon_sym___declspec] = ACTIONS(3358), - [anon_sym___based] = ACTIONS(3358), - [anon_sym___cdecl] = ACTIONS(3358), - [anon_sym___clrcall] = ACTIONS(3358), - [anon_sym___stdcall] = ACTIONS(3358), - [anon_sym___fastcall] = ACTIONS(3358), - [anon_sym___thiscall] = ACTIONS(3358), - [anon_sym___vectorcall] = ACTIONS(3358), - [anon_sym_LBRACE] = ACTIONS(3360), - [anon_sym_RBRACE] = ACTIONS(3360), - [anon_sym_signed] = ACTIONS(3358), - [anon_sym_unsigned] = ACTIONS(3358), - [anon_sym_long] = ACTIONS(3358), - [anon_sym_short] = ACTIONS(3358), - [anon_sym_LBRACK] = ACTIONS(3358), - [anon_sym_static] = ACTIONS(3358), - [anon_sym_register] = ACTIONS(3358), - [anon_sym_inline] = ACTIONS(3358), - [anon_sym___inline] = ACTIONS(3358), - [anon_sym___inline__] = ACTIONS(3358), - [anon_sym___forceinline] = ACTIONS(3358), - [anon_sym_thread_local] = ACTIONS(3358), - [anon_sym___thread] = ACTIONS(3358), - [anon_sym_const] = ACTIONS(3358), - [anon_sym_constexpr] = ACTIONS(3358), - [anon_sym_volatile] = ACTIONS(3358), - [anon_sym_restrict] = ACTIONS(3358), - [anon_sym___restrict__] = ACTIONS(3358), - [anon_sym__Atomic] = ACTIONS(3358), - [anon_sym__Noreturn] = ACTIONS(3358), - [anon_sym_noreturn] = ACTIONS(3358), - [anon_sym_mutable] = ACTIONS(3358), - [anon_sym_constinit] = ACTIONS(3358), - [anon_sym_consteval] = ACTIONS(3358), - [sym_primitive_type] = ACTIONS(3358), - [anon_sym_enum] = ACTIONS(3358), - [anon_sym_class] = ACTIONS(3358), - [anon_sym_struct] = ACTIONS(3358), - [anon_sym_union] = ACTIONS(3358), - [anon_sym_if] = ACTIONS(3358), - [anon_sym_switch] = ACTIONS(3358), - [anon_sym_case] = ACTIONS(3358), - [anon_sym_default] = ACTIONS(3358), - [anon_sym_while] = ACTIONS(3358), - [anon_sym_do] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3358), - [anon_sym_return] = ACTIONS(3358), - [anon_sym_break] = ACTIONS(3358), - [anon_sym_continue] = ACTIONS(3358), - [anon_sym_goto] = ACTIONS(3358), - [anon_sym___try] = ACTIONS(3358), - [anon_sym___leave] = ACTIONS(3358), - [anon_sym_not] = ACTIONS(3358), - [anon_sym_compl] = ACTIONS(3358), - [anon_sym_DASH_DASH] = ACTIONS(3360), - [anon_sym_PLUS_PLUS] = ACTIONS(3360), - [anon_sym_sizeof] = ACTIONS(3358), - [anon_sym___alignof__] = ACTIONS(3358), - [anon_sym___alignof] = ACTIONS(3358), - [anon_sym__alignof] = ACTIONS(3358), - [anon_sym_alignof] = ACTIONS(3358), - [anon_sym__Alignof] = ACTIONS(3358), - [anon_sym_offsetof] = ACTIONS(3358), - [anon_sym__Generic] = ACTIONS(3358), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3360), - [anon_sym_u_SQUOTE] = ACTIONS(3360), - [anon_sym_U_SQUOTE] = ACTIONS(3360), - [anon_sym_u8_SQUOTE] = ACTIONS(3360), - [anon_sym_SQUOTE] = ACTIONS(3360), - [anon_sym_L_DQUOTE] = ACTIONS(3360), - [anon_sym_u_DQUOTE] = ACTIONS(3360), - [anon_sym_U_DQUOTE] = ACTIONS(3360), - [anon_sym_u8_DQUOTE] = ACTIONS(3360), - [anon_sym_DQUOTE] = ACTIONS(3360), - [sym_true] = ACTIONS(3358), - [sym_false] = ACTIONS(3358), - [anon_sym_NULL] = ACTIONS(3358), - [anon_sym_nullptr] = ACTIONS(3358), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3358), - [anon_sym_decltype] = ACTIONS(3358), - [anon_sym_virtual] = ACTIONS(3358), - [anon_sym_alignas] = ACTIONS(3358), - [anon_sym_explicit] = ACTIONS(3358), - [anon_sym_typename] = ACTIONS(3358), - [anon_sym_template] = ACTIONS(3358), - [anon_sym_operator] = ACTIONS(3358), - [anon_sym_try] = ACTIONS(3358), - [anon_sym_delete] = ACTIONS(3358), - [anon_sym_throw] = ACTIONS(3358), - [anon_sym_namespace] = ACTIONS(3358), - [anon_sym_using] = ACTIONS(3358), - [anon_sym_static_assert] = ACTIONS(3358), - [anon_sym_concept] = ACTIONS(3358), - [anon_sym_co_return] = ACTIONS(3358), - [anon_sym_co_yield] = ACTIONS(3358), - [anon_sym_R_DQUOTE] = ACTIONS(3360), - [anon_sym_LR_DQUOTE] = ACTIONS(3360), - [anon_sym_uR_DQUOTE] = ACTIONS(3360), - [anon_sym_UR_DQUOTE] = ACTIONS(3360), - [anon_sym_u8R_DQUOTE] = ACTIONS(3360), - [anon_sym_co_await] = ACTIONS(3358), - [anon_sym_new] = ACTIONS(3358), - [anon_sym_requires] = ACTIONS(3358), - [sym_this] = ACTIONS(3358), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3360), - [sym_semgrep_named_ellipsis] = ACTIONS(3360), + [sym_identifier] = ACTIONS(3525), + [aux_sym_preproc_include_token1] = ACTIONS(3525), + [aux_sym_preproc_def_token1] = ACTIONS(3525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3527), + [aux_sym_preproc_if_token1] = ACTIONS(3525), + [aux_sym_preproc_if_token2] = ACTIONS(3525), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3525), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3525), + [sym_preproc_directive] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(3527), + [anon_sym_BANG] = ACTIONS(3527), + [anon_sym_TILDE] = ACTIONS(3527), + [anon_sym_DASH] = ACTIONS(3525), + [anon_sym_PLUS] = ACTIONS(3525), + [anon_sym_STAR] = ACTIONS(3527), + [anon_sym_AMP_AMP] = ACTIONS(3527), + [anon_sym_AMP] = ACTIONS(3525), + [anon_sym_SEMI] = ACTIONS(3527), + [anon_sym___extension__] = ACTIONS(3525), + [anon_sym_typedef] = ACTIONS(3525), + [anon_sym_extern] = ACTIONS(3525), + [anon_sym___attribute__] = ACTIONS(3525), + [anon_sym_COLON_COLON] = ACTIONS(3527), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3527), + [anon_sym___declspec] = ACTIONS(3525), + [anon_sym___based] = ACTIONS(3525), + [anon_sym___cdecl] = ACTIONS(3525), + [anon_sym___clrcall] = ACTIONS(3525), + [anon_sym___stdcall] = ACTIONS(3525), + [anon_sym___fastcall] = ACTIONS(3525), + [anon_sym___thiscall] = ACTIONS(3525), + [anon_sym___vectorcall] = ACTIONS(3525), + [anon_sym_LBRACE] = ACTIONS(3527), + [anon_sym_signed] = ACTIONS(3525), + [anon_sym_unsigned] = ACTIONS(3525), + [anon_sym_long] = ACTIONS(3525), + [anon_sym_short] = ACTIONS(3525), + [anon_sym_LBRACK] = ACTIONS(3525), + [anon_sym_static] = ACTIONS(3525), + [anon_sym_register] = ACTIONS(3525), + [anon_sym_inline] = ACTIONS(3525), + [anon_sym___inline] = ACTIONS(3525), + [anon_sym___inline__] = ACTIONS(3525), + [anon_sym___forceinline] = ACTIONS(3525), + [anon_sym_thread_local] = ACTIONS(3525), + [anon_sym___thread] = ACTIONS(3525), + [anon_sym_const] = ACTIONS(3525), + [anon_sym_constexpr] = ACTIONS(3525), + [anon_sym_volatile] = ACTIONS(3525), + [anon_sym_restrict] = ACTIONS(3525), + [anon_sym___restrict__] = ACTIONS(3525), + [anon_sym__Atomic] = ACTIONS(3525), + [anon_sym__Noreturn] = ACTIONS(3525), + [anon_sym_noreturn] = ACTIONS(3525), + [anon_sym_mutable] = ACTIONS(3525), + [anon_sym_constinit] = ACTIONS(3525), + [anon_sym_consteval] = ACTIONS(3525), + [sym_primitive_type] = ACTIONS(3525), + [anon_sym_enum] = ACTIONS(3525), + [anon_sym_class] = ACTIONS(3525), + [anon_sym_struct] = ACTIONS(3525), + [anon_sym_union] = ACTIONS(3525), + [anon_sym_if] = ACTIONS(3525), + [anon_sym_switch] = ACTIONS(3525), + [anon_sym_case] = ACTIONS(3525), + [anon_sym_default] = ACTIONS(3525), + [anon_sym_while] = ACTIONS(3525), + [anon_sym_do] = ACTIONS(3525), + [anon_sym_for] = ACTIONS(3525), + [anon_sym_return] = ACTIONS(3525), + [anon_sym_break] = ACTIONS(3525), + [anon_sym_continue] = ACTIONS(3525), + [anon_sym_goto] = ACTIONS(3525), + [anon_sym___try] = ACTIONS(3525), + [anon_sym___leave] = ACTIONS(3525), + [anon_sym_not] = ACTIONS(3525), + [anon_sym_compl] = ACTIONS(3525), + [anon_sym_DASH_DASH] = ACTIONS(3527), + [anon_sym_PLUS_PLUS] = ACTIONS(3527), + [anon_sym_sizeof] = ACTIONS(3525), + [anon_sym___alignof__] = ACTIONS(3525), + [anon_sym___alignof] = ACTIONS(3525), + [anon_sym__alignof] = ACTIONS(3525), + [anon_sym_alignof] = ACTIONS(3525), + [anon_sym__Alignof] = ACTIONS(3525), + [anon_sym_offsetof] = ACTIONS(3525), + [anon_sym__Generic] = ACTIONS(3525), + [anon_sym_asm] = ACTIONS(3525), + [anon_sym___asm__] = ACTIONS(3525), + [sym_number_literal] = ACTIONS(3527), + [anon_sym_L_SQUOTE] = ACTIONS(3527), + [anon_sym_u_SQUOTE] = ACTIONS(3527), + [anon_sym_U_SQUOTE] = ACTIONS(3527), + [anon_sym_u8_SQUOTE] = ACTIONS(3527), + [anon_sym_SQUOTE] = ACTIONS(3527), + [anon_sym_L_DQUOTE] = ACTIONS(3527), + [anon_sym_u_DQUOTE] = ACTIONS(3527), + [anon_sym_U_DQUOTE] = ACTIONS(3527), + [anon_sym_u8_DQUOTE] = ACTIONS(3527), + [anon_sym_DQUOTE] = ACTIONS(3527), + [sym_true] = ACTIONS(3525), + [sym_false] = ACTIONS(3525), + [anon_sym_NULL] = ACTIONS(3525), + [anon_sym_nullptr] = ACTIONS(3525), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3525), + [anon_sym_decltype] = ACTIONS(3525), + [anon_sym_virtual] = ACTIONS(3525), + [anon_sym_alignas] = ACTIONS(3525), + [anon_sym_explicit] = ACTIONS(3525), + [anon_sym_typename] = ACTIONS(3525), + [anon_sym_template] = ACTIONS(3525), + [anon_sym_operator] = ACTIONS(3525), + [anon_sym_try] = ACTIONS(3525), + [anon_sym_delete] = ACTIONS(3525), + [anon_sym_throw] = ACTIONS(3525), + [anon_sym_namespace] = ACTIONS(3525), + [anon_sym_using] = ACTIONS(3525), + [anon_sym_static_assert] = ACTIONS(3525), + [anon_sym_concept] = ACTIONS(3525), + [anon_sym_co_return] = ACTIONS(3525), + [anon_sym_co_yield] = ACTIONS(3525), + [anon_sym_R_DQUOTE] = ACTIONS(3527), + [anon_sym_LR_DQUOTE] = ACTIONS(3527), + [anon_sym_uR_DQUOTE] = ACTIONS(3527), + [anon_sym_UR_DQUOTE] = ACTIONS(3527), + [anon_sym_u8R_DQUOTE] = ACTIONS(3527), + [anon_sym_co_await] = ACTIONS(3525), + [anon_sym_new] = ACTIONS(3525), + [anon_sym_requires] = ACTIONS(3525), + [sym_this] = ACTIONS(3525), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3527), + [sym_semgrep_named_ellipsis] = ACTIONS(3527), }, [761] = { - [sym_identifier] = ACTIONS(3614), - [aux_sym_preproc_include_token1] = ACTIONS(3614), - [aux_sym_preproc_def_token1] = ACTIONS(3614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3616), - [aux_sym_preproc_if_token1] = ACTIONS(3614), - [aux_sym_preproc_if_token2] = ACTIONS(3614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3614), - [sym_preproc_directive] = ACTIONS(3614), - [anon_sym_LPAREN2] = ACTIONS(3616), - [anon_sym_BANG] = ACTIONS(3616), - [anon_sym_TILDE] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_STAR] = ACTIONS(3616), - [anon_sym_AMP_AMP] = ACTIONS(3616), - [anon_sym_AMP] = ACTIONS(3614), - [anon_sym_SEMI] = ACTIONS(3616), - [anon_sym___extension__] = ACTIONS(3614), - [anon_sym_typedef] = ACTIONS(3614), - [anon_sym_extern] = ACTIONS(3614), - [anon_sym___attribute__] = ACTIONS(3614), - [anon_sym_COLON_COLON] = ACTIONS(3616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3616), - [anon_sym___declspec] = ACTIONS(3614), - [anon_sym___based] = ACTIONS(3614), - [anon_sym___cdecl] = ACTIONS(3614), - [anon_sym___clrcall] = ACTIONS(3614), - [anon_sym___stdcall] = ACTIONS(3614), - [anon_sym___fastcall] = ACTIONS(3614), - [anon_sym___thiscall] = ACTIONS(3614), - [anon_sym___vectorcall] = ACTIONS(3614), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_signed] = ACTIONS(3614), - [anon_sym_unsigned] = ACTIONS(3614), - [anon_sym_long] = ACTIONS(3614), - [anon_sym_short] = ACTIONS(3614), - [anon_sym_LBRACK] = ACTIONS(3614), - [anon_sym_static] = ACTIONS(3614), - [anon_sym_register] = ACTIONS(3614), - [anon_sym_inline] = ACTIONS(3614), - [anon_sym___inline] = ACTIONS(3614), - [anon_sym___inline__] = ACTIONS(3614), - [anon_sym___forceinline] = ACTIONS(3614), - [anon_sym_thread_local] = ACTIONS(3614), - [anon_sym___thread] = ACTIONS(3614), - [anon_sym_const] = ACTIONS(3614), - [anon_sym_constexpr] = ACTIONS(3614), - [anon_sym_volatile] = ACTIONS(3614), - [anon_sym_restrict] = ACTIONS(3614), - [anon_sym___restrict__] = ACTIONS(3614), - [anon_sym__Atomic] = ACTIONS(3614), - [anon_sym__Noreturn] = ACTIONS(3614), - [anon_sym_noreturn] = ACTIONS(3614), - [anon_sym_mutable] = ACTIONS(3614), - [anon_sym_constinit] = ACTIONS(3614), - [anon_sym_consteval] = ACTIONS(3614), - [sym_primitive_type] = ACTIONS(3614), - [anon_sym_enum] = ACTIONS(3614), - [anon_sym_class] = ACTIONS(3614), - [anon_sym_struct] = ACTIONS(3614), - [anon_sym_union] = ACTIONS(3614), - [anon_sym_if] = ACTIONS(3614), - [anon_sym_switch] = ACTIONS(3614), - [anon_sym_case] = ACTIONS(3614), - [anon_sym_default] = ACTIONS(3614), - [anon_sym_while] = ACTIONS(3614), - [anon_sym_do] = ACTIONS(3614), - [anon_sym_for] = ACTIONS(3614), - [anon_sym_return] = ACTIONS(3614), - [anon_sym_break] = ACTIONS(3614), - [anon_sym_continue] = ACTIONS(3614), - [anon_sym_goto] = ACTIONS(3614), - [anon_sym___try] = ACTIONS(3614), - [anon_sym___leave] = ACTIONS(3614), - [anon_sym_not] = ACTIONS(3614), - [anon_sym_compl] = ACTIONS(3614), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_sizeof] = ACTIONS(3614), - [anon_sym___alignof__] = ACTIONS(3614), - [anon_sym___alignof] = ACTIONS(3614), - [anon_sym__alignof] = ACTIONS(3614), - [anon_sym_alignof] = ACTIONS(3614), - [anon_sym__Alignof] = ACTIONS(3614), - [anon_sym_offsetof] = ACTIONS(3614), - [anon_sym__Generic] = ACTIONS(3614), - [anon_sym_asm] = ACTIONS(3614), - [anon_sym___asm__] = ACTIONS(3614), - [sym_number_literal] = ACTIONS(3616), - [anon_sym_L_SQUOTE] = ACTIONS(3616), - [anon_sym_u_SQUOTE] = ACTIONS(3616), - [anon_sym_U_SQUOTE] = ACTIONS(3616), - [anon_sym_u8_SQUOTE] = ACTIONS(3616), - [anon_sym_SQUOTE] = ACTIONS(3616), - [anon_sym_L_DQUOTE] = ACTIONS(3616), - [anon_sym_u_DQUOTE] = ACTIONS(3616), - [anon_sym_U_DQUOTE] = ACTIONS(3616), - [anon_sym_u8_DQUOTE] = ACTIONS(3616), - [anon_sym_DQUOTE] = ACTIONS(3616), - [sym_true] = ACTIONS(3614), - [sym_false] = ACTIONS(3614), - [anon_sym_NULL] = ACTIONS(3614), - [anon_sym_nullptr] = ACTIONS(3614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3614), - [anon_sym_decltype] = ACTIONS(3614), - [anon_sym_virtual] = ACTIONS(3614), - [anon_sym_alignas] = ACTIONS(3614), - [anon_sym_explicit] = ACTIONS(3614), - [anon_sym_typename] = ACTIONS(3614), - [anon_sym_template] = ACTIONS(3614), - [anon_sym_operator] = ACTIONS(3614), - [anon_sym_try] = ACTIONS(3614), - [anon_sym_delete] = ACTIONS(3614), - [anon_sym_throw] = ACTIONS(3614), - [anon_sym_namespace] = ACTIONS(3614), - [anon_sym_using] = ACTIONS(3614), - [anon_sym_static_assert] = ACTIONS(3614), - [anon_sym_concept] = ACTIONS(3614), - [anon_sym_co_return] = ACTIONS(3614), - [anon_sym_co_yield] = ACTIONS(3614), - [anon_sym_R_DQUOTE] = ACTIONS(3616), - [anon_sym_LR_DQUOTE] = ACTIONS(3616), - [anon_sym_uR_DQUOTE] = ACTIONS(3616), - [anon_sym_UR_DQUOTE] = ACTIONS(3616), - [anon_sym_u8R_DQUOTE] = ACTIONS(3616), - [anon_sym_co_await] = ACTIONS(3614), - [anon_sym_new] = ACTIONS(3614), - [anon_sym_requires] = ACTIONS(3614), - [sym_this] = ACTIONS(3614), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3616), - [sym_semgrep_named_ellipsis] = ACTIONS(3616), + [sym_identifier] = ACTIONS(3684), + [aux_sym_preproc_include_token1] = ACTIONS(3684), + [aux_sym_preproc_def_token1] = ACTIONS(3684), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3686), + [aux_sym_preproc_if_token1] = ACTIONS(3684), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3684), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3684), + [sym_preproc_directive] = ACTIONS(3684), + [anon_sym_LPAREN2] = ACTIONS(3686), + [anon_sym_BANG] = ACTIONS(3686), + [anon_sym_TILDE] = ACTIONS(3686), + [anon_sym_DASH] = ACTIONS(3684), + [anon_sym_PLUS] = ACTIONS(3684), + [anon_sym_STAR] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3686), + [anon_sym_AMP] = ACTIONS(3684), + [anon_sym_SEMI] = ACTIONS(3686), + [anon_sym___extension__] = ACTIONS(3684), + [anon_sym_typedef] = ACTIONS(3684), + [anon_sym_extern] = ACTIONS(3684), + [anon_sym___attribute__] = ACTIONS(3684), + [anon_sym_COLON_COLON] = ACTIONS(3686), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3686), + [anon_sym___declspec] = ACTIONS(3684), + [anon_sym___based] = ACTIONS(3684), + [anon_sym___cdecl] = ACTIONS(3684), + [anon_sym___clrcall] = ACTIONS(3684), + [anon_sym___stdcall] = ACTIONS(3684), + [anon_sym___fastcall] = ACTIONS(3684), + [anon_sym___thiscall] = ACTIONS(3684), + [anon_sym___vectorcall] = ACTIONS(3684), + [anon_sym_LBRACE] = ACTIONS(3686), + [anon_sym_RBRACE] = ACTIONS(3686), + [anon_sym_signed] = ACTIONS(3684), + [anon_sym_unsigned] = ACTIONS(3684), + [anon_sym_long] = ACTIONS(3684), + [anon_sym_short] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3684), + [anon_sym_static] = ACTIONS(3684), + [anon_sym_register] = ACTIONS(3684), + [anon_sym_inline] = ACTIONS(3684), + [anon_sym___inline] = ACTIONS(3684), + [anon_sym___inline__] = ACTIONS(3684), + [anon_sym___forceinline] = ACTIONS(3684), + [anon_sym_thread_local] = ACTIONS(3684), + [anon_sym___thread] = ACTIONS(3684), + [anon_sym_const] = ACTIONS(3684), + [anon_sym_constexpr] = ACTIONS(3684), + [anon_sym_volatile] = ACTIONS(3684), + [anon_sym_restrict] = ACTIONS(3684), + [anon_sym___restrict__] = ACTIONS(3684), + [anon_sym__Atomic] = ACTIONS(3684), + [anon_sym__Noreturn] = ACTIONS(3684), + [anon_sym_noreturn] = ACTIONS(3684), + [anon_sym_mutable] = ACTIONS(3684), + [anon_sym_constinit] = ACTIONS(3684), + [anon_sym_consteval] = ACTIONS(3684), + [sym_primitive_type] = ACTIONS(3684), + [anon_sym_enum] = ACTIONS(3684), + [anon_sym_class] = ACTIONS(3684), + [anon_sym_struct] = ACTIONS(3684), + [anon_sym_union] = ACTIONS(3684), + [anon_sym_if] = ACTIONS(3684), + [anon_sym_switch] = ACTIONS(3684), + [anon_sym_case] = ACTIONS(3684), + [anon_sym_default] = ACTIONS(3684), + [anon_sym_while] = ACTIONS(3684), + [anon_sym_do] = ACTIONS(3684), + [anon_sym_for] = ACTIONS(3684), + [anon_sym_return] = ACTIONS(3684), + [anon_sym_break] = ACTIONS(3684), + [anon_sym_continue] = ACTIONS(3684), + [anon_sym_goto] = ACTIONS(3684), + [anon_sym___try] = ACTIONS(3684), + [anon_sym___leave] = ACTIONS(3684), + [anon_sym_not] = ACTIONS(3684), + [anon_sym_compl] = ACTIONS(3684), + [anon_sym_DASH_DASH] = ACTIONS(3686), + [anon_sym_PLUS_PLUS] = ACTIONS(3686), + [anon_sym_sizeof] = ACTIONS(3684), + [anon_sym___alignof__] = ACTIONS(3684), + [anon_sym___alignof] = ACTIONS(3684), + [anon_sym__alignof] = ACTIONS(3684), + [anon_sym_alignof] = ACTIONS(3684), + [anon_sym__Alignof] = ACTIONS(3684), + [anon_sym_offsetof] = ACTIONS(3684), + [anon_sym__Generic] = ACTIONS(3684), + [anon_sym_asm] = ACTIONS(3684), + [anon_sym___asm__] = ACTIONS(3684), + [sym_number_literal] = ACTIONS(3686), + [anon_sym_L_SQUOTE] = ACTIONS(3686), + [anon_sym_u_SQUOTE] = ACTIONS(3686), + [anon_sym_U_SQUOTE] = ACTIONS(3686), + [anon_sym_u8_SQUOTE] = ACTIONS(3686), + [anon_sym_SQUOTE] = ACTIONS(3686), + [anon_sym_L_DQUOTE] = ACTIONS(3686), + [anon_sym_u_DQUOTE] = ACTIONS(3686), + [anon_sym_U_DQUOTE] = ACTIONS(3686), + [anon_sym_u8_DQUOTE] = ACTIONS(3686), + [anon_sym_DQUOTE] = ACTIONS(3686), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [anon_sym_NULL] = ACTIONS(3684), + [anon_sym_nullptr] = ACTIONS(3684), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3684), + [anon_sym_decltype] = ACTIONS(3684), + [anon_sym_virtual] = ACTIONS(3684), + [anon_sym_alignas] = ACTIONS(3684), + [anon_sym_explicit] = ACTIONS(3684), + [anon_sym_typename] = ACTIONS(3684), + [anon_sym_template] = ACTIONS(3684), + [anon_sym_operator] = ACTIONS(3684), + [anon_sym_try] = ACTIONS(3684), + [anon_sym_delete] = ACTIONS(3684), + [anon_sym_throw] = ACTIONS(3684), + [anon_sym_namespace] = ACTIONS(3684), + [anon_sym_using] = ACTIONS(3684), + [anon_sym_static_assert] = ACTIONS(3684), + [anon_sym_concept] = ACTIONS(3684), + [anon_sym_co_return] = ACTIONS(3684), + [anon_sym_co_yield] = ACTIONS(3684), + [anon_sym_R_DQUOTE] = ACTIONS(3686), + [anon_sym_LR_DQUOTE] = ACTIONS(3686), + [anon_sym_uR_DQUOTE] = ACTIONS(3686), + [anon_sym_UR_DQUOTE] = ACTIONS(3686), + [anon_sym_u8R_DQUOTE] = ACTIONS(3686), + [anon_sym_co_await] = ACTIONS(3684), + [anon_sym_new] = ACTIONS(3684), + [anon_sym_requires] = ACTIONS(3684), + [sym_this] = ACTIONS(3684), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3686), + [sym_semgrep_named_ellipsis] = ACTIONS(3686), }, [762] = { - [sym_identifier] = ACTIONS(3626), - [aux_sym_preproc_include_token1] = ACTIONS(3626), - [aux_sym_preproc_def_token1] = ACTIONS(3626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3628), - [aux_sym_preproc_if_token1] = ACTIONS(3626), - [aux_sym_preproc_if_token2] = ACTIONS(3626), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3626), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3626), - [sym_preproc_directive] = ACTIONS(3626), - [anon_sym_LPAREN2] = ACTIONS(3628), - [anon_sym_BANG] = ACTIONS(3628), - [anon_sym_TILDE] = ACTIONS(3628), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_STAR] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3628), - [anon_sym___extension__] = ACTIONS(3626), - [anon_sym_typedef] = ACTIONS(3626), - [anon_sym_extern] = ACTIONS(3626), - [anon_sym___attribute__] = ACTIONS(3626), - [anon_sym_COLON_COLON] = ACTIONS(3628), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3628), - [anon_sym___declspec] = ACTIONS(3626), - [anon_sym___based] = ACTIONS(3626), - [anon_sym___cdecl] = ACTIONS(3626), - [anon_sym___clrcall] = ACTIONS(3626), - [anon_sym___stdcall] = ACTIONS(3626), - [anon_sym___fastcall] = ACTIONS(3626), - [anon_sym___thiscall] = ACTIONS(3626), - [anon_sym___vectorcall] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_signed] = ACTIONS(3626), - [anon_sym_unsigned] = ACTIONS(3626), - [anon_sym_long] = ACTIONS(3626), - [anon_sym_short] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_register] = ACTIONS(3626), - [anon_sym_inline] = ACTIONS(3626), - [anon_sym___inline] = ACTIONS(3626), - [anon_sym___inline__] = ACTIONS(3626), - [anon_sym___forceinline] = ACTIONS(3626), - [anon_sym_thread_local] = ACTIONS(3626), - [anon_sym___thread] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_constexpr] = ACTIONS(3626), - [anon_sym_volatile] = ACTIONS(3626), - [anon_sym_restrict] = ACTIONS(3626), - [anon_sym___restrict__] = ACTIONS(3626), - [anon_sym__Atomic] = ACTIONS(3626), - [anon_sym__Noreturn] = ACTIONS(3626), - [anon_sym_noreturn] = ACTIONS(3626), - [anon_sym_mutable] = ACTIONS(3626), - [anon_sym_constinit] = ACTIONS(3626), - [anon_sym_consteval] = ACTIONS(3626), - [sym_primitive_type] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_struct] = ACTIONS(3626), - [anon_sym_union] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_goto] = ACTIONS(3626), - [anon_sym___try] = ACTIONS(3626), - [anon_sym___leave] = ACTIONS(3626), - [anon_sym_not] = ACTIONS(3626), - [anon_sym_compl] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3628), - [anon_sym_PLUS_PLUS] = ACTIONS(3628), - [anon_sym_sizeof] = ACTIONS(3626), - [anon_sym___alignof__] = ACTIONS(3626), - [anon_sym___alignof] = ACTIONS(3626), - [anon_sym__alignof] = ACTIONS(3626), - [anon_sym_alignof] = ACTIONS(3626), - [anon_sym__Alignof] = ACTIONS(3626), - [anon_sym_offsetof] = ACTIONS(3626), - [anon_sym__Generic] = ACTIONS(3626), - [anon_sym_asm] = ACTIONS(3626), - [anon_sym___asm__] = ACTIONS(3626), - [sym_number_literal] = ACTIONS(3628), - [anon_sym_L_SQUOTE] = ACTIONS(3628), - [anon_sym_u_SQUOTE] = ACTIONS(3628), - [anon_sym_U_SQUOTE] = ACTIONS(3628), - [anon_sym_u8_SQUOTE] = ACTIONS(3628), - [anon_sym_SQUOTE] = ACTIONS(3628), - [anon_sym_L_DQUOTE] = ACTIONS(3628), - [anon_sym_u_DQUOTE] = ACTIONS(3628), - [anon_sym_U_DQUOTE] = ACTIONS(3628), - [anon_sym_u8_DQUOTE] = ACTIONS(3628), - [anon_sym_DQUOTE] = ACTIONS(3628), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [anon_sym_NULL] = ACTIONS(3626), - [anon_sym_nullptr] = ACTIONS(3626), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3626), - [anon_sym_decltype] = ACTIONS(3626), - [anon_sym_virtual] = ACTIONS(3626), - [anon_sym_alignas] = ACTIONS(3626), - [anon_sym_explicit] = ACTIONS(3626), - [anon_sym_typename] = ACTIONS(3626), - [anon_sym_template] = ACTIONS(3626), - [anon_sym_operator] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_static_assert] = ACTIONS(3626), - [anon_sym_concept] = ACTIONS(3626), - [anon_sym_co_return] = ACTIONS(3626), - [anon_sym_co_yield] = ACTIONS(3626), - [anon_sym_R_DQUOTE] = ACTIONS(3628), - [anon_sym_LR_DQUOTE] = ACTIONS(3628), - [anon_sym_uR_DQUOTE] = ACTIONS(3628), - [anon_sym_UR_DQUOTE] = ACTIONS(3628), - [anon_sym_u8R_DQUOTE] = ACTIONS(3628), - [anon_sym_co_await] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_requires] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3628), - [sym_semgrep_named_ellipsis] = ACTIONS(3628), + [sym_identifier] = ACTIONS(3525), + [aux_sym_preproc_include_token1] = ACTIONS(3525), + [aux_sym_preproc_def_token1] = ACTIONS(3525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3527), + [aux_sym_preproc_if_token1] = ACTIONS(3525), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3525), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3525), + [sym_preproc_directive] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(3527), + [anon_sym_BANG] = ACTIONS(3527), + [anon_sym_TILDE] = ACTIONS(3527), + [anon_sym_DASH] = ACTIONS(3525), + [anon_sym_PLUS] = ACTIONS(3525), + [anon_sym_STAR] = ACTIONS(3527), + [anon_sym_AMP_AMP] = ACTIONS(3527), + [anon_sym_AMP] = ACTIONS(3525), + [anon_sym_SEMI] = ACTIONS(3527), + [anon_sym___extension__] = ACTIONS(3525), + [anon_sym_typedef] = ACTIONS(3525), + [anon_sym_extern] = ACTIONS(3525), + [anon_sym___attribute__] = ACTIONS(3525), + [anon_sym_COLON_COLON] = ACTIONS(3527), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3527), + [anon_sym___declspec] = ACTIONS(3525), + [anon_sym___based] = ACTIONS(3525), + [anon_sym___cdecl] = ACTIONS(3525), + [anon_sym___clrcall] = ACTIONS(3525), + [anon_sym___stdcall] = ACTIONS(3525), + [anon_sym___fastcall] = ACTIONS(3525), + [anon_sym___thiscall] = ACTIONS(3525), + [anon_sym___vectorcall] = ACTIONS(3525), + [anon_sym_LBRACE] = ACTIONS(3527), + [anon_sym_RBRACE] = ACTIONS(3527), + [anon_sym_signed] = ACTIONS(3525), + [anon_sym_unsigned] = ACTIONS(3525), + [anon_sym_long] = ACTIONS(3525), + [anon_sym_short] = ACTIONS(3525), + [anon_sym_LBRACK] = ACTIONS(3525), + [anon_sym_static] = ACTIONS(3525), + [anon_sym_register] = ACTIONS(3525), + [anon_sym_inline] = ACTIONS(3525), + [anon_sym___inline] = ACTIONS(3525), + [anon_sym___inline__] = ACTIONS(3525), + [anon_sym___forceinline] = ACTIONS(3525), + [anon_sym_thread_local] = ACTIONS(3525), + [anon_sym___thread] = ACTIONS(3525), + [anon_sym_const] = ACTIONS(3525), + [anon_sym_constexpr] = ACTIONS(3525), + [anon_sym_volatile] = ACTIONS(3525), + [anon_sym_restrict] = ACTIONS(3525), + [anon_sym___restrict__] = ACTIONS(3525), + [anon_sym__Atomic] = ACTIONS(3525), + [anon_sym__Noreturn] = ACTIONS(3525), + [anon_sym_noreturn] = ACTIONS(3525), + [anon_sym_mutable] = ACTIONS(3525), + [anon_sym_constinit] = ACTIONS(3525), + [anon_sym_consteval] = ACTIONS(3525), + [sym_primitive_type] = ACTIONS(3525), + [anon_sym_enum] = ACTIONS(3525), + [anon_sym_class] = ACTIONS(3525), + [anon_sym_struct] = ACTIONS(3525), + [anon_sym_union] = ACTIONS(3525), + [anon_sym_if] = ACTIONS(3525), + [anon_sym_switch] = ACTIONS(3525), + [anon_sym_case] = ACTIONS(3525), + [anon_sym_default] = ACTIONS(3525), + [anon_sym_while] = ACTIONS(3525), + [anon_sym_do] = ACTIONS(3525), + [anon_sym_for] = ACTIONS(3525), + [anon_sym_return] = ACTIONS(3525), + [anon_sym_break] = ACTIONS(3525), + [anon_sym_continue] = ACTIONS(3525), + [anon_sym_goto] = ACTIONS(3525), + [anon_sym___try] = ACTIONS(3525), + [anon_sym___leave] = ACTIONS(3525), + [anon_sym_not] = ACTIONS(3525), + [anon_sym_compl] = ACTIONS(3525), + [anon_sym_DASH_DASH] = ACTIONS(3527), + [anon_sym_PLUS_PLUS] = ACTIONS(3527), + [anon_sym_sizeof] = ACTIONS(3525), + [anon_sym___alignof__] = ACTIONS(3525), + [anon_sym___alignof] = ACTIONS(3525), + [anon_sym__alignof] = ACTIONS(3525), + [anon_sym_alignof] = ACTIONS(3525), + [anon_sym__Alignof] = ACTIONS(3525), + [anon_sym_offsetof] = ACTIONS(3525), + [anon_sym__Generic] = ACTIONS(3525), + [anon_sym_asm] = ACTIONS(3525), + [anon_sym___asm__] = ACTIONS(3525), + [sym_number_literal] = ACTIONS(3527), + [anon_sym_L_SQUOTE] = ACTIONS(3527), + [anon_sym_u_SQUOTE] = ACTIONS(3527), + [anon_sym_U_SQUOTE] = ACTIONS(3527), + [anon_sym_u8_SQUOTE] = ACTIONS(3527), + [anon_sym_SQUOTE] = ACTIONS(3527), + [anon_sym_L_DQUOTE] = ACTIONS(3527), + [anon_sym_u_DQUOTE] = ACTIONS(3527), + [anon_sym_U_DQUOTE] = ACTIONS(3527), + [anon_sym_u8_DQUOTE] = ACTIONS(3527), + [anon_sym_DQUOTE] = ACTIONS(3527), + [sym_true] = ACTIONS(3525), + [sym_false] = ACTIONS(3525), + [anon_sym_NULL] = ACTIONS(3525), + [anon_sym_nullptr] = ACTIONS(3525), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3525), + [anon_sym_decltype] = ACTIONS(3525), + [anon_sym_virtual] = ACTIONS(3525), + [anon_sym_alignas] = ACTIONS(3525), + [anon_sym_explicit] = ACTIONS(3525), + [anon_sym_typename] = ACTIONS(3525), + [anon_sym_template] = ACTIONS(3525), + [anon_sym_operator] = ACTIONS(3525), + [anon_sym_try] = ACTIONS(3525), + [anon_sym_delete] = ACTIONS(3525), + [anon_sym_throw] = ACTIONS(3525), + [anon_sym_namespace] = ACTIONS(3525), + [anon_sym_using] = ACTIONS(3525), + [anon_sym_static_assert] = ACTIONS(3525), + [anon_sym_concept] = ACTIONS(3525), + [anon_sym_co_return] = ACTIONS(3525), + [anon_sym_co_yield] = ACTIONS(3525), + [anon_sym_R_DQUOTE] = ACTIONS(3527), + [anon_sym_LR_DQUOTE] = ACTIONS(3527), + [anon_sym_uR_DQUOTE] = ACTIONS(3527), + [anon_sym_UR_DQUOTE] = ACTIONS(3527), + [anon_sym_u8R_DQUOTE] = ACTIONS(3527), + [anon_sym_co_await] = ACTIONS(3525), + [anon_sym_new] = ACTIONS(3525), + [anon_sym_requires] = ACTIONS(3525), + [sym_this] = ACTIONS(3525), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3527), + [sym_semgrep_named_ellipsis] = ACTIONS(3527), }, [763] = { - [sym_identifier] = ACTIONS(3634), - [aux_sym_preproc_include_token1] = ACTIONS(3634), - [aux_sym_preproc_def_token1] = ACTIONS(3634), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3636), - [aux_sym_preproc_if_token1] = ACTIONS(3634), - [aux_sym_preproc_if_token2] = ACTIONS(3634), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3634), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3634), - [sym_preproc_directive] = ACTIONS(3634), - [anon_sym_LPAREN2] = ACTIONS(3636), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_TILDE] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3634), - [anon_sym_PLUS] = ACTIONS(3634), - [anon_sym_STAR] = ACTIONS(3636), - [anon_sym_AMP_AMP] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3634), - [anon_sym_SEMI] = ACTIONS(3636), - [anon_sym___extension__] = ACTIONS(3634), - [anon_sym_typedef] = ACTIONS(3634), - [anon_sym_extern] = ACTIONS(3634), - [anon_sym___attribute__] = ACTIONS(3634), - [anon_sym_COLON_COLON] = ACTIONS(3636), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3636), - [anon_sym___declspec] = ACTIONS(3634), - [anon_sym___based] = ACTIONS(3634), - [anon_sym___cdecl] = ACTIONS(3634), - [anon_sym___clrcall] = ACTIONS(3634), - [anon_sym___stdcall] = ACTIONS(3634), - [anon_sym___fastcall] = ACTIONS(3634), - [anon_sym___thiscall] = ACTIONS(3634), - [anon_sym___vectorcall] = ACTIONS(3634), - [anon_sym_LBRACE] = ACTIONS(3636), - [anon_sym_signed] = ACTIONS(3634), - [anon_sym_unsigned] = ACTIONS(3634), - [anon_sym_long] = ACTIONS(3634), - [anon_sym_short] = ACTIONS(3634), - [anon_sym_LBRACK] = ACTIONS(3634), - [anon_sym_static] = ACTIONS(3634), - [anon_sym_register] = ACTIONS(3634), - [anon_sym_inline] = ACTIONS(3634), - [anon_sym___inline] = ACTIONS(3634), - [anon_sym___inline__] = ACTIONS(3634), - [anon_sym___forceinline] = ACTIONS(3634), - [anon_sym_thread_local] = ACTIONS(3634), - [anon_sym___thread] = ACTIONS(3634), - [anon_sym_const] = ACTIONS(3634), - [anon_sym_constexpr] = ACTIONS(3634), - [anon_sym_volatile] = ACTIONS(3634), - [anon_sym_restrict] = ACTIONS(3634), - [anon_sym___restrict__] = ACTIONS(3634), - [anon_sym__Atomic] = ACTIONS(3634), - [anon_sym__Noreturn] = ACTIONS(3634), - [anon_sym_noreturn] = ACTIONS(3634), - [anon_sym_mutable] = ACTIONS(3634), - [anon_sym_constinit] = ACTIONS(3634), - [anon_sym_consteval] = ACTIONS(3634), - [sym_primitive_type] = ACTIONS(3634), - [anon_sym_enum] = ACTIONS(3634), - [anon_sym_class] = ACTIONS(3634), - [anon_sym_struct] = ACTIONS(3634), - [anon_sym_union] = ACTIONS(3634), - [anon_sym_if] = ACTIONS(3634), - [anon_sym_switch] = ACTIONS(3634), - [anon_sym_case] = ACTIONS(3634), - [anon_sym_default] = ACTIONS(3634), - [anon_sym_while] = ACTIONS(3634), - [anon_sym_do] = ACTIONS(3634), - [anon_sym_for] = ACTIONS(3634), - [anon_sym_return] = ACTIONS(3634), - [anon_sym_break] = ACTIONS(3634), - [anon_sym_continue] = ACTIONS(3634), - [anon_sym_goto] = ACTIONS(3634), - [anon_sym___try] = ACTIONS(3634), - [anon_sym___leave] = ACTIONS(3634), - [anon_sym_not] = ACTIONS(3634), - [anon_sym_compl] = ACTIONS(3634), - [anon_sym_DASH_DASH] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3636), - [anon_sym_sizeof] = ACTIONS(3634), - [anon_sym___alignof__] = ACTIONS(3634), - [anon_sym___alignof] = ACTIONS(3634), - [anon_sym__alignof] = ACTIONS(3634), - [anon_sym_alignof] = ACTIONS(3634), - [anon_sym__Alignof] = ACTIONS(3634), - [anon_sym_offsetof] = ACTIONS(3634), - [anon_sym__Generic] = ACTIONS(3634), - [anon_sym_asm] = ACTIONS(3634), - [anon_sym___asm__] = ACTIONS(3634), - [sym_number_literal] = ACTIONS(3636), - [anon_sym_L_SQUOTE] = ACTIONS(3636), - [anon_sym_u_SQUOTE] = ACTIONS(3636), - [anon_sym_U_SQUOTE] = ACTIONS(3636), - [anon_sym_u8_SQUOTE] = ACTIONS(3636), - [anon_sym_SQUOTE] = ACTIONS(3636), - [anon_sym_L_DQUOTE] = ACTIONS(3636), - [anon_sym_u_DQUOTE] = ACTIONS(3636), - [anon_sym_U_DQUOTE] = ACTIONS(3636), - [anon_sym_u8_DQUOTE] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(3636), - [sym_true] = ACTIONS(3634), - [sym_false] = ACTIONS(3634), - [anon_sym_NULL] = ACTIONS(3634), - [anon_sym_nullptr] = ACTIONS(3634), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3634), - [anon_sym_decltype] = ACTIONS(3634), - [anon_sym_virtual] = ACTIONS(3634), - [anon_sym_alignas] = ACTIONS(3634), - [anon_sym_explicit] = ACTIONS(3634), - [anon_sym_typename] = ACTIONS(3634), - [anon_sym_template] = ACTIONS(3634), - [anon_sym_operator] = ACTIONS(3634), - [anon_sym_try] = ACTIONS(3634), - [anon_sym_delete] = ACTIONS(3634), - [anon_sym_throw] = ACTIONS(3634), - [anon_sym_namespace] = ACTIONS(3634), - [anon_sym_using] = ACTIONS(3634), - [anon_sym_static_assert] = ACTIONS(3634), - [anon_sym_concept] = ACTIONS(3634), - [anon_sym_co_return] = ACTIONS(3634), - [anon_sym_co_yield] = ACTIONS(3634), - [anon_sym_R_DQUOTE] = ACTIONS(3636), - [anon_sym_LR_DQUOTE] = ACTIONS(3636), - [anon_sym_uR_DQUOTE] = ACTIONS(3636), - [anon_sym_UR_DQUOTE] = ACTIONS(3636), - [anon_sym_u8R_DQUOTE] = ACTIONS(3636), - [anon_sym_co_await] = ACTIONS(3634), - [anon_sym_new] = ACTIONS(3634), - [anon_sym_requires] = ACTIONS(3634), - [sym_this] = ACTIONS(3634), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3636), - [sym_semgrep_named_ellipsis] = ACTIONS(3636), + [sym_identifier] = ACTIONS(3599), + [aux_sym_preproc_include_token1] = ACTIONS(3599), + [aux_sym_preproc_def_token1] = ACTIONS(3599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3601), + [aux_sym_preproc_if_token1] = ACTIONS(3599), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3599), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3599), + [sym_preproc_directive] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(3601), + [anon_sym_BANG] = ACTIONS(3601), + [anon_sym_TILDE] = ACTIONS(3601), + [anon_sym_DASH] = ACTIONS(3599), + [anon_sym_PLUS] = ACTIONS(3599), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP_AMP] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3599), + [anon_sym_SEMI] = ACTIONS(3601), + [anon_sym___extension__] = ACTIONS(3599), + [anon_sym_typedef] = ACTIONS(3599), + [anon_sym_extern] = ACTIONS(3599), + [anon_sym___attribute__] = ACTIONS(3599), + [anon_sym_COLON_COLON] = ACTIONS(3601), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3601), + [anon_sym___declspec] = ACTIONS(3599), + [anon_sym___based] = ACTIONS(3599), + [anon_sym___cdecl] = ACTIONS(3599), + [anon_sym___clrcall] = ACTIONS(3599), + [anon_sym___stdcall] = ACTIONS(3599), + [anon_sym___fastcall] = ACTIONS(3599), + [anon_sym___thiscall] = ACTIONS(3599), + [anon_sym___vectorcall] = ACTIONS(3599), + [anon_sym_LBRACE] = ACTIONS(3601), + [anon_sym_RBRACE] = ACTIONS(3601), + [anon_sym_signed] = ACTIONS(3599), + [anon_sym_unsigned] = ACTIONS(3599), + [anon_sym_long] = ACTIONS(3599), + [anon_sym_short] = ACTIONS(3599), + [anon_sym_LBRACK] = ACTIONS(3599), + [anon_sym_static] = ACTIONS(3599), + [anon_sym_register] = ACTIONS(3599), + [anon_sym_inline] = ACTIONS(3599), + [anon_sym___inline] = ACTIONS(3599), + [anon_sym___inline__] = ACTIONS(3599), + [anon_sym___forceinline] = ACTIONS(3599), + [anon_sym_thread_local] = ACTIONS(3599), + [anon_sym___thread] = ACTIONS(3599), + [anon_sym_const] = ACTIONS(3599), + [anon_sym_constexpr] = ACTIONS(3599), + [anon_sym_volatile] = ACTIONS(3599), + [anon_sym_restrict] = ACTIONS(3599), + [anon_sym___restrict__] = ACTIONS(3599), + [anon_sym__Atomic] = ACTIONS(3599), + [anon_sym__Noreturn] = ACTIONS(3599), + [anon_sym_noreturn] = ACTIONS(3599), + [anon_sym_mutable] = ACTIONS(3599), + [anon_sym_constinit] = ACTIONS(3599), + [anon_sym_consteval] = ACTIONS(3599), + [sym_primitive_type] = ACTIONS(3599), + [anon_sym_enum] = ACTIONS(3599), + [anon_sym_class] = ACTIONS(3599), + [anon_sym_struct] = ACTIONS(3599), + [anon_sym_union] = ACTIONS(3599), + [anon_sym_if] = ACTIONS(3599), + [anon_sym_switch] = ACTIONS(3599), + [anon_sym_case] = ACTIONS(3599), + [anon_sym_default] = ACTIONS(3599), + [anon_sym_while] = ACTIONS(3599), + [anon_sym_do] = ACTIONS(3599), + [anon_sym_for] = ACTIONS(3599), + [anon_sym_return] = ACTIONS(3599), + [anon_sym_break] = ACTIONS(3599), + [anon_sym_continue] = ACTIONS(3599), + [anon_sym_goto] = ACTIONS(3599), + [anon_sym___try] = ACTIONS(3599), + [anon_sym___leave] = ACTIONS(3599), + [anon_sym_not] = ACTIONS(3599), + [anon_sym_compl] = ACTIONS(3599), + [anon_sym_DASH_DASH] = ACTIONS(3601), + [anon_sym_PLUS_PLUS] = ACTIONS(3601), + [anon_sym_sizeof] = ACTIONS(3599), + [anon_sym___alignof__] = ACTIONS(3599), + [anon_sym___alignof] = ACTIONS(3599), + [anon_sym__alignof] = ACTIONS(3599), + [anon_sym_alignof] = ACTIONS(3599), + [anon_sym__Alignof] = ACTIONS(3599), + [anon_sym_offsetof] = ACTIONS(3599), + [anon_sym__Generic] = ACTIONS(3599), + [anon_sym_asm] = ACTIONS(3599), + [anon_sym___asm__] = ACTIONS(3599), + [sym_number_literal] = ACTIONS(3601), + [anon_sym_L_SQUOTE] = ACTIONS(3601), + [anon_sym_u_SQUOTE] = ACTIONS(3601), + [anon_sym_U_SQUOTE] = ACTIONS(3601), + [anon_sym_u8_SQUOTE] = ACTIONS(3601), + [anon_sym_SQUOTE] = ACTIONS(3601), + [anon_sym_L_DQUOTE] = ACTIONS(3601), + [anon_sym_u_DQUOTE] = ACTIONS(3601), + [anon_sym_U_DQUOTE] = ACTIONS(3601), + [anon_sym_u8_DQUOTE] = ACTIONS(3601), + [anon_sym_DQUOTE] = ACTIONS(3601), + [sym_true] = ACTIONS(3599), + [sym_false] = ACTIONS(3599), + [anon_sym_NULL] = ACTIONS(3599), + [anon_sym_nullptr] = ACTIONS(3599), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3599), + [anon_sym_decltype] = ACTIONS(3599), + [anon_sym_virtual] = ACTIONS(3599), + [anon_sym_alignas] = ACTIONS(3599), + [anon_sym_explicit] = ACTIONS(3599), + [anon_sym_typename] = ACTIONS(3599), + [anon_sym_template] = ACTIONS(3599), + [anon_sym_operator] = ACTIONS(3599), + [anon_sym_try] = ACTIONS(3599), + [anon_sym_delete] = ACTIONS(3599), + [anon_sym_throw] = ACTIONS(3599), + [anon_sym_namespace] = ACTIONS(3599), + [anon_sym_using] = ACTIONS(3599), + [anon_sym_static_assert] = ACTIONS(3599), + [anon_sym_concept] = ACTIONS(3599), + [anon_sym_co_return] = ACTIONS(3599), + [anon_sym_co_yield] = ACTIONS(3599), + [anon_sym_R_DQUOTE] = ACTIONS(3601), + [anon_sym_LR_DQUOTE] = ACTIONS(3601), + [anon_sym_uR_DQUOTE] = ACTIONS(3601), + [anon_sym_UR_DQUOTE] = ACTIONS(3601), + [anon_sym_u8R_DQUOTE] = ACTIONS(3601), + [anon_sym_co_await] = ACTIONS(3599), + [anon_sym_new] = ACTIONS(3599), + [anon_sym_requires] = ACTIONS(3599), + [sym_this] = ACTIONS(3599), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3601), + [sym_semgrep_named_ellipsis] = ACTIONS(3601), }, [764] = { - [sym_identifier] = ACTIONS(3638), - [aux_sym_preproc_include_token1] = ACTIONS(3638), - [aux_sym_preproc_def_token1] = ACTIONS(3638), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3640), - [aux_sym_preproc_if_token1] = ACTIONS(3638), - [aux_sym_preproc_if_token2] = ACTIONS(3638), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3638), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3638), - [sym_preproc_directive] = ACTIONS(3638), - [anon_sym_LPAREN2] = ACTIONS(3640), - [anon_sym_BANG] = ACTIONS(3640), - [anon_sym_TILDE] = ACTIONS(3640), - [anon_sym_DASH] = ACTIONS(3638), - [anon_sym_PLUS] = ACTIONS(3638), - [anon_sym_STAR] = ACTIONS(3640), - [anon_sym_AMP_AMP] = ACTIONS(3640), - [anon_sym_AMP] = ACTIONS(3638), - [anon_sym_SEMI] = ACTIONS(3640), - [anon_sym___extension__] = ACTIONS(3638), - [anon_sym_typedef] = ACTIONS(3638), - [anon_sym_extern] = ACTIONS(3638), - [anon_sym___attribute__] = ACTIONS(3638), - [anon_sym_COLON_COLON] = ACTIONS(3640), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3640), - [anon_sym___declspec] = ACTIONS(3638), - [anon_sym___based] = ACTIONS(3638), - [anon_sym___cdecl] = ACTIONS(3638), - [anon_sym___clrcall] = ACTIONS(3638), - [anon_sym___stdcall] = ACTIONS(3638), - [anon_sym___fastcall] = ACTIONS(3638), - [anon_sym___thiscall] = ACTIONS(3638), - [anon_sym___vectorcall] = ACTIONS(3638), - [anon_sym_LBRACE] = ACTIONS(3640), - [anon_sym_signed] = ACTIONS(3638), - [anon_sym_unsigned] = ACTIONS(3638), - [anon_sym_long] = ACTIONS(3638), - [anon_sym_short] = ACTIONS(3638), - [anon_sym_LBRACK] = ACTIONS(3638), - [anon_sym_static] = ACTIONS(3638), - [anon_sym_register] = ACTIONS(3638), - [anon_sym_inline] = ACTIONS(3638), - [anon_sym___inline] = ACTIONS(3638), - [anon_sym___inline__] = ACTIONS(3638), - [anon_sym___forceinline] = ACTIONS(3638), - [anon_sym_thread_local] = ACTIONS(3638), - [anon_sym___thread] = ACTIONS(3638), - [anon_sym_const] = ACTIONS(3638), - [anon_sym_constexpr] = ACTIONS(3638), - [anon_sym_volatile] = ACTIONS(3638), - [anon_sym_restrict] = ACTIONS(3638), - [anon_sym___restrict__] = ACTIONS(3638), - [anon_sym__Atomic] = ACTIONS(3638), - [anon_sym__Noreturn] = ACTIONS(3638), - [anon_sym_noreturn] = ACTIONS(3638), - [anon_sym_mutable] = ACTIONS(3638), - [anon_sym_constinit] = ACTIONS(3638), - [anon_sym_consteval] = ACTIONS(3638), - [sym_primitive_type] = ACTIONS(3638), - [anon_sym_enum] = ACTIONS(3638), - [anon_sym_class] = ACTIONS(3638), - [anon_sym_struct] = ACTIONS(3638), - [anon_sym_union] = ACTIONS(3638), - [anon_sym_if] = ACTIONS(3638), - [anon_sym_switch] = ACTIONS(3638), - [anon_sym_case] = ACTIONS(3638), - [anon_sym_default] = ACTIONS(3638), - [anon_sym_while] = ACTIONS(3638), - [anon_sym_do] = ACTIONS(3638), - [anon_sym_for] = ACTIONS(3638), - [anon_sym_return] = ACTIONS(3638), - [anon_sym_break] = ACTIONS(3638), - [anon_sym_continue] = ACTIONS(3638), - [anon_sym_goto] = ACTIONS(3638), - [anon_sym___try] = ACTIONS(3638), - [anon_sym___leave] = ACTIONS(3638), - [anon_sym_not] = ACTIONS(3638), - [anon_sym_compl] = ACTIONS(3638), - [anon_sym_DASH_DASH] = ACTIONS(3640), - [anon_sym_PLUS_PLUS] = ACTIONS(3640), - [anon_sym_sizeof] = ACTIONS(3638), - [anon_sym___alignof__] = ACTIONS(3638), - [anon_sym___alignof] = ACTIONS(3638), - [anon_sym__alignof] = ACTIONS(3638), - [anon_sym_alignof] = ACTIONS(3638), - [anon_sym__Alignof] = ACTIONS(3638), - [anon_sym_offsetof] = ACTIONS(3638), - [anon_sym__Generic] = ACTIONS(3638), - [anon_sym_asm] = ACTIONS(3638), - [anon_sym___asm__] = ACTIONS(3638), - [sym_number_literal] = ACTIONS(3640), - [anon_sym_L_SQUOTE] = ACTIONS(3640), - [anon_sym_u_SQUOTE] = ACTIONS(3640), - [anon_sym_U_SQUOTE] = ACTIONS(3640), - [anon_sym_u8_SQUOTE] = ACTIONS(3640), - [anon_sym_SQUOTE] = ACTIONS(3640), - [anon_sym_L_DQUOTE] = ACTIONS(3640), - [anon_sym_u_DQUOTE] = ACTIONS(3640), - [anon_sym_U_DQUOTE] = ACTIONS(3640), - [anon_sym_u8_DQUOTE] = ACTIONS(3640), - [anon_sym_DQUOTE] = ACTIONS(3640), - [sym_true] = ACTIONS(3638), - [sym_false] = ACTIONS(3638), - [anon_sym_NULL] = ACTIONS(3638), - [anon_sym_nullptr] = ACTIONS(3638), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3638), - [anon_sym_decltype] = ACTIONS(3638), - [anon_sym_virtual] = ACTIONS(3638), - [anon_sym_alignas] = ACTIONS(3638), - [anon_sym_explicit] = ACTIONS(3638), - [anon_sym_typename] = ACTIONS(3638), - [anon_sym_template] = ACTIONS(3638), - [anon_sym_operator] = ACTIONS(3638), - [anon_sym_try] = ACTIONS(3638), - [anon_sym_delete] = ACTIONS(3638), - [anon_sym_throw] = ACTIONS(3638), - [anon_sym_namespace] = ACTIONS(3638), - [anon_sym_using] = ACTIONS(3638), - [anon_sym_static_assert] = ACTIONS(3638), - [anon_sym_concept] = ACTIONS(3638), - [anon_sym_co_return] = ACTIONS(3638), - [anon_sym_co_yield] = ACTIONS(3638), - [anon_sym_R_DQUOTE] = ACTIONS(3640), - [anon_sym_LR_DQUOTE] = ACTIONS(3640), - [anon_sym_uR_DQUOTE] = ACTIONS(3640), - [anon_sym_UR_DQUOTE] = ACTIONS(3640), - [anon_sym_u8R_DQUOTE] = ACTIONS(3640), - [anon_sym_co_await] = ACTIONS(3638), - [anon_sym_new] = ACTIONS(3638), - [anon_sym_requires] = ACTIONS(3638), - [sym_this] = ACTIONS(3638), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3640), - [sym_semgrep_named_ellipsis] = ACTIONS(3640), + [sym_identifier] = ACTIONS(3529), + [aux_sym_preproc_include_token1] = ACTIONS(3529), + [aux_sym_preproc_def_token1] = ACTIONS(3529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3531), + [aux_sym_preproc_if_token1] = ACTIONS(3529), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3529), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3529), + [sym_preproc_directive] = ACTIONS(3529), + [anon_sym_LPAREN2] = ACTIONS(3531), + [anon_sym_BANG] = ACTIONS(3531), + [anon_sym_TILDE] = ACTIONS(3531), + [anon_sym_DASH] = ACTIONS(3529), + [anon_sym_PLUS] = ACTIONS(3529), + [anon_sym_STAR] = ACTIONS(3531), + [anon_sym_AMP_AMP] = ACTIONS(3531), + [anon_sym_AMP] = ACTIONS(3529), + [anon_sym_SEMI] = ACTIONS(3531), + [anon_sym___extension__] = ACTIONS(3529), + [anon_sym_typedef] = ACTIONS(3529), + [anon_sym_extern] = ACTIONS(3529), + [anon_sym___attribute__] = ACTIONS(3529), + [anon_sym_COLON_COLON] = ACTIONS(3531), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3531), + [anon_sym___declspec] = ACTIONS(3529), + [anon_sym___based] = ACTIONS(3529), + [anon_sym___cdecl] = ACTIONS(3529), + [anon_sym___clrcall] = ACTIONS(3529), + [anon_sym___stdcall] = ACTIONS(3529), + [anon_sym___fastcall] = ACTIONS(3529), + [anon_sym___thiscall] = ACTIONS(3529), + [anon_sym___vectorcall] = ACTIONS(3529), + [anon_sym_LBRACE] = ACTIONS(3531), + [anon_sym_RBRACE] = ACTIONS(3531), + [anon_sym_signed] = ACTIONS(3529), + [anon_sym_unsigned] = ACTIONS(3529), + [anon_sym_long] = ACTIONS(3529), + [anon_sym_short] = ACTIONS(3529), + [anon_sym_LBRACK] = ACTIONS(3529), + [anon_sym_static] = ACTIONS(3529), + [anon_sym_register] = ACTIONS(3529), + [anon_sym_inline] = ACTIONS(3529), + [anon_sym___inline] = ACTIONS(3529), + [anon_sym___inline__] = ACTIONS(3529), + [anon_sym___forceinline] = ACTIONS(3529), + [anon_sym_thread_local] = ACTIONS(3529), + [anon_sym___thread] = ACTIONS(3529), + [anon_sym_const] = ACTIONS(3529), + [anon_sym_constexpr] = ACTIONS(3529), + [anon_sym_volatile] = ACTIONS(3529), + [anon_sym_restrict] = ACTIONS(3529), + [anon_sym___restrict__] = ACTIONS(3529), + [anon_sym__Atomic] = ACTIONS(3529), + [anon_sym__Noreturn] = ACTIONS(3529), + [anon_sym_noreturn] = ACTIONS(3529), + [anon_sym_mutable] = ACTIONS(3529), + [anon_sym_constinit] = ACTIONS(3529), + [anon_sym_consteval] = ACTIONS(3529), + [sym_primitive_type] = ACTIONS(3529), + [anon_sym_enum] = ACTIONS(3529), + [anon_sym_class] = ACTIONS(3529), + [anon_sym_struct] = ACTIONS(3529), + [anon_sym_union] = ACTIONS(3529), + [anon_sym_if] = ACTIONS(3529), + [anon_sym_switch] = ACTIONS(3529), + [anon_sym_case] = ACTIONS(3529), + [anon_sym_default] = ACTIONS(3529), + [anon_sym_while] = ACTIONS(3529), + [anon_sym_do] = ACTIONS(3529), + [anon_sym_for] = ACTIONS(3529), + [anon_sym_return] = ACTIONS(3529), + [anon_sym_break] = ACTIONS(3529), + [anon_sym_continue] = ACTIONS(3529), + [anon_sym_goto] = ACTIONS(3529), + [anon_sym___try] = ACTIONS(3529), + [anon_sym___leave] = ACTIONS(3529), + [anon_sym_not] = ACTIONS(3529), + [anon_sym_compl] = ACTIONS(3529), + [anon_sym_DASH_DASH] = ACTIONS(3531), + [anon_sym_PLUS_PLUS] = ACTIONS(3531), + [anon_sym_sizeof] = ACTIONS(3529), + [anon_sym___alignof__] = ACTIONS(3529), + [anon_sym___alignof] = ACTIONS(3529), + [anon_sym__alignof] = ACTIONS(3529), + [anon_sym_alignof] = ACTIONS(3529), + [anon_sym__Alignof] = ACTIONS(3529), + [anon_sym_offsetof] = ACTIONS(3529), + [anon_sym__Generic] = ACTIONS(3529), + [anon_sym_asm] = ACTIONS(3529), + [anon_sym___asm__] = ACTIONS(3529), + [sym_number_literal] = ACTIONS(3531), + [anon_sym_L_SQUOTE] = ACTIONS(3531), + [anon_sym_u_SQUOTE] = ACTIONS(3531), + [anon_sym_U_SQUOTE] = ACTIONS(3531), + [anon_sym_u8_SQUOTE] = ACTIONS(3531), + [anon_sym_SQUOTE] = ACTIONS(3531), + [anon_sym_L_DQUOTE] = ACTIONS(3531), + [anon_sym_u_DQUOTE] = ACTIONS(3531), + [anon_sym_U_DQUOTE] = ACTIONS(3531), + [anon_sym_u8_DQUOTE] = ACTIONS(3531), + [anon_sym_DQUOTE] = ACTIONS(3531), + [sym_true] = ACTIONS(3529), + [sym_false] = ACTIONS(3529), + [anon_sym_NULL] = ACTIONS(3529), + [anon_sym_nullptr] = ACTIONS(3529), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3529), + [anon_sym_decltype] = ACTIONS(3529), + [anon_sym_virtual] = ACTIONS(3529), + [anon_sym_alignas] = ACTIONS(3529), + [anon_sym_explicit] = ACTIONS(3529), + [anon_sym_typename] = ACTIONS(3529), + [anon_sym_template] = ACTIONS(3529), + [anon_sym_operator] = ACTIONS(3529), + [anon_sym_try] = ACTIONS(3529), + [anon_sym_delete] = ACTIONS(3529), + [anon_sym_throw] = ACTIONS(3529), + [anon_sym_namespace] = ACTIONS(3529), + [anon_sym_using] = ACTIONS(3529), + [anon_sym_static_assert] = ACTIONS(3529), + [anon_sym_concept] = ACTIONS(3529), + [anon_sym_co_return] = ACTIONS(3529), + [anon_sym_co_yield] = ACTIONS(3529), + [anon_sym_R_DQUOTE] = ACTIONS(3531), + [anon_sym_LR_DQUOTE] = ACTIONS(3531), + [anon_sym_uR_DQUOTE] = ACTIONS(3531), + [anon_sym_UR_DQUOTE] = ACTIONS(3531), + [anon_sym_u8R_DQUOTE] = ACTIONS(3531), + [anon_sym_co_await] = ACTIONS(3529), + [anon_sym_new] = ACTIONS(3529), + [anon_sym_requires] = ACTIONS(3529), + [sym_this] = ACTIONS(3529), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3531), + [sym_semgrep_named_ellipsis] = ACTIONS(3531), }, [765] = { - [sym_identifier] = ACTIONS(3652), - [aux_sym_preproc_include_token1] = ACTIONS(3652), - [aux_sym_preproc_def_token1] = ACTIONS(3652), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3654), - [aux_sym_preproc_if_token1] = ACTIONS(3652), - [aux_sym_preproc_if_token2] = ACTIONS(3652), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3652), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3652), - [sym_preproc_directive] = ACTIONS(3652), - [anon_sym_LPAREN2] = ACTIONS(3654), - [anon_sym_BANG] = ACTIONS(3654), - [anon_sym_TILDE] = ACTIONS(3654), - [anon_sym_DASH] = ACTIONS(3652), - [anon_sym_PLUS] = ACTIONS(3652), - [anon_sym_STAR] = ACTIONS(3654), - [anon_sym_AMP_AMP] = ACTIONS(3654), - [anon_sym_AMP] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3654), - [anon_sym___extension__] = ACTIONS(3652), - [anon_sym_typedef] = ACTIONS(3652), - [anon_sym_extern] = ACTIONS(3652), - [anon_sym___attribute__] = ACTIONS(3652), - [anon_sym_COLON_COLON] = ACTIONS(3654), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3654), - [anon_sym___declspec] = ACTIONS(3652), - [anon_sym___based] = ACTIONS(3652), - [anon_sym___cdecl] = ACTIONS(3652), - [anon_sym___clrcall] = ACTIONS(3652), - [anon_sym___stdcall] = ACTIONS(3652), - [anon_sym___fastcall] = ACTIONS(3652), - [anon_sym___thiscall] = ACTIONS(3652), - [anon_sym___vectorcall] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3654), - [anon_sym_signed] = ACTIONS(3652), - [anon_sym_unsigned] = ACTIONS(3652), - [anon_sym_long] = ACTIONS(3652), - [anon_sym_short] = ACTIONS(3652), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_static] = ACTIONS(3652), - [anon_sym_register] = ACTIONS(3652), - [anon_sym_inline] = ACTIONS(3652), - [anon_sym___inline] = ACTIONS(3652), - [anon_sym___inline__] = ACTIONS(3652), - [anon_sym___forceinline] = ACTIONS(3652), - [anon_sym_thread_local] = ACTIONS(3652), - [anon_sym___thread] = ACTIONS(3652), - [anon_sym_const] = ACTIONS(3652), - [anon_sym_constexpr] = ACTIONS(3652), - [anon_sym_volatile] = ACTIONS(3652), - [anon_sym_restrict] = ACTIONS(3652), - [anon_sym___restrict__] = ACTIONS(3652), - [anon_sym__Atomic] = ACTIONS(3652), - [anon_sym__Noreturn] = ACTIONS(3652), - [anon_sym_noreturn] = ACTIONS(3652), - [anon_sym_mutable] = ACTIONS(3652), - [anon_sym_constinit] = ACTIONS(3652), - [anon_sym_consteval] = ACTIONS(3652), - [sym_primitive_type] = ACTIONS(3652), - [anon_sym_enum] = ACTIONS(3652), - [anon_sym_class] = ACTIONS(3652), - [anon_sym_struct] = ACTIONS(3652), - [anon_sym_union] = ACTIONS(3652), - [anon_sym_if] = ACTIONS(3652), - [anon_sym_switch] = ACTIONS(3652), - [anon_sym_case] = ACTIONS(3652), - [anon_sym_default] = ACTIONS(3652), - [anon_sym_while] = ACTIONS(3652), - [anon_sym_do] = ACTIONS(3652), - [anon_sym_for] = ACTIONS(3652), - [anon_sym_return] = ACTIONS(3652), - [anon_sym_break] = ACTIONS(3652), - [anon_sym_continue] = ACTIONS(3652), - [anon_sym_goto] = ACTIONS(3652), - [anon_sym___try] = ACTIONS(3652), - [anon_sym___leave] = ACTIONS(3652), - [anon_sym_not] = ACTIONS(3652), - [anon_sym_compl] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3654), - [anon_sym_PLUS_PLUS] = ACTIONS(3654), - [anon_sym_sizeof] = ACTIONS(3652), - [anon_sym___alignof__] = ACTIONS(3652), - [anon_sym___alignof] = ACTIONS(3652), - [anon_sym__alignof] = ACTIONS(3652), - [anon_sym_alignof] = ACTIONS(3652), - [anon_sym__Alignof] = ACTIONS(3652), - [anon_sym_offsetof] = ACTIONS(3652), - [anon_sym__Generic] = ACTIONS(3652), - [anon_sym_asm] = ACTIONS(3652), - [anon_sym___asm__] = ACTIONS(3652), - [sym_number_literal] = ACTIONS(3654), - [anon_sym_L_SQUOTE] = ACTIONS(3654), - [anon_sym_u_SQUOTE] = ACTIONS(3654), - [anon_sym_U_SQUOTE] = ACTIONS(3654), - [anon_sym_u8_SQUOTE] = ACTIONS(3654), - [anon_sym_SQUOTE] = ACTIONS(3654), - [anon_sym_L_DQUOTE] = ACTIONS(3654), - [anon_sym_u_DQUOTE] = ACTIONS(3654), - [anon_sym_U_DQUOTE] = ACTIONS(3654), - [anon_sym_u8_DQUOTE] = ACTIONS(3654), - [anon_sym_DQUOTE] = ACTIONS(3654), - [sym_true] = ACTIONS(3652), - [sym_false] = ACTIONS(3652), - [anon_sym_NULL] = ACTIONS(3652), - [anon_sym_nullptr] = ACTIONS(3652), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3652), - [anon_sym_decltype] = ACTIONS(3652), - [anon_sym_virtual] = ACTIONS(3652), - [anon_sym_alignas] = ACTIONS(3652), - [anon_sym_explicit] = ACTIONS(3652), - [anon_sym_typename] = ACTIONS(3652), - [anon_sym_template] = ACTIONS(3652), - [anon_sym_operator] = ACTIONS(3652), - [anon_sym_try] = ACTIONS(3652), - [anon_sym_delete] = ACTIONS(3652), - [anon_sym_throw] = ACTIONS(3652), - [anon_sym_namespace] = ACTIONS(3652), - [anon_sym_using] = ACTIONS(3652), - [anon_sym_static_assert] = ACTIONS(3652), - [anon_sym_concept] = ACTIONS(3652), - [anon_sym_co_return] = ACTIONS(3652), - [anon_sym_co_yield] = ACTIONS(3652), - [anon_sym_R_DQUOTE] = ACTIONS(3654), - [anon_sym_LR_DQUOTE] = ACTIONS(3654), - [anon_sym_uR_DQUOTE] = ACTIONS(3654), - [anon_sym_UR_DQUOTE] = ACTIONS(3654), - [anon_sym_u8R_DQUOTE] = ACTIONS(3654), - [anon_sym_co_await] = ACTIONS(3652), - [anon_sym_new] = ACTIONS(3652), - [anon_sym_requires] = ACTIONS(3652), - [sym_this] = ACTIONS(3652), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3654), - [sym_semgrep_named_ellipsis] = ACTIONS(3654), + [sym_identifier] = ACTIONS(3631), + [aux_sym_preproc_include_token1] = ACTIONS(3631), + [aux_sym_preproc_def_token1] = ACTIONS(3631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3633), + [aux_sym_preproc_if_token1] = ACTIONS(3631), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3631), + [sym_preproc_directive] = ACTIONS(3631), + [anon_sym_LPAREN2] = ACTIONS(3633), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(3633), + [anon_sym_AMP_AMP] = ACTIONS(3633), + [anon_sym_AMP] = ACTIONS(3631), + [anon_sym_SEMI] = ACTIONS(3633), + [anon_sym___extension__] = ACTIONS(3631), + [anon_sym_typedef] = ACTIONS(3631), + [anon_sym_extern] = ACTIONS(3631), + [anon_sym___attribute__] = ACTIONS(3631), + [anon_sym_COLON_COLON] = ACTIONS(3633), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3633), + [anon_sym___declspec] = ACTIONS(3631), + [anon_sym___based] = ACTIONS(3631), + [anon_sym___cdecl] = ACTIONS(3631), + [anon_sym___clrcall] = ACTIONS(3631), + [anon_sym___stdcall] = ACTIONS(3631), + [anon_sym___fastcall] = ACTIONS(3631), + [anon_sym___thiscall] = ACTIONS(3631), + [anon_sym___vectorcall] = ACTIONS(3631), + [anon_sym_LBRACE] = ACTIONS(3633), + [anon_sym_RBRACE] = ACTIONS(3633), + [anon_sym_signed] = ACTIONS(3631), + [anon_sym_unsigned] = ACTIONS(3631), + [anon_sym_long] = ACTIONS(3631), + [anon_sym_short] = ACTIONS(3631), + [anon_sym_LBRACK] = ACTIONS(3631), + [anon_sym_static] = ACTIONS(3631), + [anon_sym_register] = ACTIONS(3631), + [anon_sym_inline] = ACTIONS(3631), + [anon_sym___inline] = ACTIONS(3631), + [anon_sym___inline__] = ACTIONS(3631), + [anon_sym___forceinline] = ACTIONS(3631), + [anon_sym_thread_local] = ACTIONS(3631), + [anon_sym___thread] = ACTIONS(3631), + [anon_sym_const] = ACTIONS(3631), + [anon_sym_constexpr] = ACTIONS(3631), + [anon_sym_volatile] = ACTIONS(3631), + [anon_sym_restrict] = ACTIONS(3631), + [anon_sym___restrict__] = ACTIONS(3631), + [anon_sym__Atomic] = ACTIONS(3631), + [anon_sym__Noreturn] = ACTIONS(3631), + [anon_sym_noreturn] = ACTIONS(3631), + [anon_sym_mutable] = ACTIONS(3631), + [anon_sym_constinit] = ACTIONS(3631), + [anon_sym_consteval] = ACTIONS(3631), + [sym_primitive_type] = ACTIONS(3631), + [anon_sym_enum] = ACTIONS(3631), + [anon_sym_class] = ACTIONS(3631), + [anon_sym_struct] = ACTIONS(3631), + [anon_sym_union] = ACTIONS(3631), + [anon_sym_if] = ACTIONS(3631), + [anon_sym_switch] = ACTIONS(3631), + [anon_sym_case] = ACTIONS(3631), + [anon_sym_default] = ACTIONS(3631), + [anon_sym_while] = ACTIONS(3631), + [anon_sym_do] = ACTIONS(3631), + [anon_sym_for] = ACTIONS(3631), + [anon_sym_return] = ACTIONS(3631), + [anon_sym_break] = ACTIONS(3631), + [anon_sym_continue] = ACTIONS(3631), + [anon_sym_goto] = ACTIONS(3631), + [anon_sym___try] = ACTIONS(3631), + [anon_sym___leave] = ACTIONS(3631), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3633), + [anon_sym_PLUS_PLUS] = ACTIONS(3633), + [anon_sym_sizeof] = ACTIONS(3631), + [anon_sym___alignof__] = ACTIONS(3631), + [anon_sym___alignof] = ACTIONS(3631), + [anon_sym__alignof] = ACTIONS(3631), + [anon_sym_alignof] = ACTIONS(3631), + [anon_sym__Alignof] = ACTIONS(3631), + [anon_sym_offsetof] = ACTIONS(3631), + [anon_sym__Generic] = ACTIONS(3631), + [anon_sym_asm] = ACTIONS(3631), + [anon_sym___asm__] = ACTIONS(3631), + [sym_number_literal] = ACTIONS(3633), + [anon_sym_L_SQUOTE] = ACTIONS(3633), + [anon_sym_u_SQUOTE] = ACTIONS(3633), + [anon_sym_U_SQUOTE] = ACTIONS(3633), + [anon_sym_u8_SQUOTE] = ACTIONS(3633), + [anon_sym_SQUOTE] = ACTIONS(3633), + [anon_sym_L_DQUOTE] = ACTIONS(3633), + [anon_sym_u_DQUOTE] = ACTIONS(3633), + [anon_sym_U_DQUOTE] = ACTIONS(3633), + [anon_sym_u8_DQUOTE] = ACTIONS(3633), + [anon_sym_DQUOTE] = ACTIONS(3633), + [sym_true] = ACTIONS(3631), + [sym_false] = ACTIONS(3631), + [anon_sym_NULL] = ACTIONS(3631), + [anon_sym_nullptr] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3631), + [anon_sym_decltype] = ACTIONS(3631), + [anon_sym_virtual] = ACTIONS(3631), + [anon_sym_alignas] = ACTIONS(3631), + [anon_sym_explicit] = ACTIONS(3631), + [anon_sym_typename] = ACTIONS(3631), + [anon_sym_template] = ACTIONS(3631), + [anon_sym_operator] = ACTIONS(3631), + [anon_sym_try] = ACTIONS(3631), + [anon_sym_delete] = ACTIONS(3631), + [anon_sym_throw] = ACTIONS(3631), + [anon_sym_namespace] = ACTIONS(3631), + [anon_sym_using] = ACTIONS(3631), + [anon_sym_static_assert] = ACTIONS(3631), + [anon_sym_concept] = ACTIONS(3631), + [anon_sym_co_return] = ACTIONS(3631), + [anon_sym_co_yield] = ACTIONS(3631), + [anon_sym_R_DQUOTE] = ACTIONS(3633), + [anon_sym_LR_DQUOTE] = ACTIONS(3633), + [anon_sym_uR_DQUOTE] = ACTIONS(3633), + [anon_sym_UR_DQUOTE] = ACTIONS(3633), + [anon_sym_u8R_DQUOTE] = ACTIONS(3633), + [anon_sym_co_await] = ACTIONS(3631), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(3631), + [sym_this] = ACTIONS(3631), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3633), + [sym_semgrep_named_ellipsis] = ACTIONS(3633), }, [766] = { - [sym_identifier] = ACTIONS(3261), - [aux_sym_preproc_include_token1] = ACTIONS(3261), - [aux_sym_preproc_def_token1] = ACTIONS(3261), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3263), - [aux_sym_preproc_if_token1] = ACTIONS(3261), - [aux_sym_preproc_if_token2] = ACTIONS(3261), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3261), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3261), - [sym_preproc_directive] = ACTIONS(3261), - [anon_sym_LPAREN2] = ACTIONS(3263), - [anon_sym_BANG] = ACTIONS(3263), - [anon_sym_TILDE] = ACTIONS(3263), - [anon_sym_DASH] = ACTIONS(3261), - [anon_sym_PLUS] = ACTIONS(3261), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP_AMP] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3261), - [anon_sym_SEMI] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(3261), - [anon_sym_typedef] = ACTIONS(3261), - [anon_sym_extern] = ACTIONS(3261), - [anon_sym___attribute__] = ACTIONS(3261), - [anon_sym_COLON_COLON] = ACTIONS(3263), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3263), - [anon_sym___declspec] = ACTIONS(3261), - [anon_sym___based] = ACTIONS(3261), - [anon_sym___cdecl] = ACTIONS(3261), - [anon_sym___clrcall] = ACTIONS(3261), - [anon_sym___stdcall] = ACTIONS(3261), - [anon_sym___fastcall] = ACTIONS(3261), - [anon_sym___thiscall] = ACTIONS(3261), - [anon_sym___vectorcall] = ACTIONS(3261), - [anon_sym_LBRACE] = ACTIONS(3263), - [anon_sym_signed] = ACTIONS(3261), - [anon_sym_unsigned] = ACTIONS(3261), - [anon_sym_long] = ACTIONS(3261), - [anon_sym_short] = ACTIONS(3261), - [anon_sym_LBRACK] = ACTIONS(3261), - [anon_sym_static] = ACTIONS(3261), - [anon_sym_register] = ACTIONS(3261), - [anon_sym_inline] = ACTIONS(3261), - [anon_sym___inline] = ACTIONS(3261), - [anon_sym___inline__] = ACTIONS(3261), - [anon_sym___forceinline] = ACTIONS(3261), - [anon_sym_thread_local] = ACTIONS(3261), - [anon_sym___thread] = ACTIONS(3261), - [anon_sym_const] = ACTIONS(3261), - [anon_sym_constexpr] = ACTIONS(3261), - [anon_sym_volatile] = ACTIONS(3261), - [anon_sym_restrict] = ACTIONS(3261), - [anon_sym___restrict__] = ACTIONS(3261), - [anon_sym__Atomic] = ACTIONS(3261), - [anon_sym__Noreturn] = ACTIONS(3261), - [anon_sym_noreturn] = ACTIONS(3261), - [anon_sym_mutable] = ACTIONS(3261), - [anon_sym_constinit] = ACTIONS(3261), - [anon_sym_consteval] = ACTIONS(3261), - [sym_primitive_type] = ACTIONS(3261), - [anon_sym_enum] = ACTIONS(3261), - [anon_sym_class] = ACTIONS(3261), - [anon_sym_struct] = ACTIONS(3261), - [anon_sym_union] = ACTIONS(3261), - [anon_sym_if] = ACTIONS(3261), - [anon_sym_switch] = ACTIONS(3261), - [anon_sym_case] = ACTIONS(3261), - [anon_sym_default] = ACTIONS(3261), - [anon_sym_while] = ACTIONS(3261), - [anon_sym_do] = ACTIONS(3261), - [anon_sym_for] = ACTIONS(3261), - [anon_sym_return] = ACTIONS(3261), - [anon_sym_break] = ACTIONS(3261), - [anon_sym_continue] = ACTIONS(3261), - [anon_sym_goto] = ACTIONS(3261), - [anon_sym___try] = ACTIONS(3261), - [anon_sym___leave] = ACTIONS(3261), - [anon_sym_not] = ACTIONS(3261), - [anon_sym_compl] = ACTIONS(3261), - [anon_sym_DASH_DASH] = ACTIONS(3263), - [anon_sym_PLUS_PLUS] = ACTIONS(3263), - [anon_sym_sizeof] = ACTIONS(3261), - [anon_sym___alignof__] = ACTIONS(3261), - [anon_sym___alignof] = ACTIONS(3261), - [anon_sym__alignof] = ACTIONS(3261), - [anon_sym_alignof] = ACTIONS(3261), - [anon_sym__Alignof] = ACTIONS(3261), - [anon_sym_offsetof] = ACTIONS(3261), - [anon_sym__Generic] = ACTIONS(3261), - [anon_sym_asm] = ACTIONS(3261), - [anon_sym___asm__] = ACTIONS(3261), - [sym_number_literal] = ACTIONS(3263), - [anon_sym_L_SQUOTE] = ACTIONS(3263), - [anon_sym_u_SQUOTE] = ACTIONS(3263), - [anon_sym_U_SQUOTE] = ACTIONS(3263), - [anon_sym_u8_SQUOTE] = ACTIONS(3263), - [anon_sym_SQUOTE] = ACTIONS(3263), - [anon_sym_L_DQUOTE] = ACTIONS(3263), - [anon_sym_u_DQUOTE] = ACTIONS(3263), - [anon_sym_U_DQUOTE] = ACTIONS(3263), - [anon_sym_u8_DQUOTE] = ACTIONS(3263), - [anon_sym_DQUOTE] = ACTIONS(3263), - [sym_true] = ACTIONS(3261), - [sym_false] = ACTIONS(3261), - [anon_sym_NULL] = ACTIONS(3261), - [anon_sym_nullptr] = ACTIONS(3261), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3261), - [anon_sym_decltype] = ACTIONS(3261), - [anon_sym_virtual] = ACTIONS(3261), - [anon_sym_alignas] = ACTIONS(3261), - [anon_sym_explicit] = ACTIONS(3261), - [anon_sym_typename] = ACTIONS(3261), - [anon_sym_template] = ACTIONS(3261), - [anon_sym_operator] = ACTIONS(3261), - [anon_sym_try] = ACTIONS(3261), - [anon_sym_delete] = ACTIONS(3261), - [anon_sym_throw] = ACTIONS(3261), - [anon_sym_namespace] = ACTIONS(3261), - [anon_sym_using] = ACTIONS(3261), - [anon_sym_static_assert] = ACTIONS(3261), - [anon_sym_concept] = ACTIONS(3261), - [anon_sym_co_return] = ACTIONS(3261), - [anon_sym_co_yield] = ACTIONS(3261), - [anon_sym_R_DQUOTE] = ACTIONS(3263), - [anon_sym_LR_DQUOTE] = ACTIONS(3263), - [anon_sym_uR_DQUOTE] = ACTIONS(3263), - [anon_sym_UR_DQUOTE] = ACTIONS(3263), - [anon_sym_u8R_DQUOTE] = ACTIONS(3263), - [anon_sym_co_await] = ACTIONS(3261), - [anon_sym_new] = ACTIONS(3261), - [anon_sym_requires] = ACTIONS(3261), - [sym_this] = ACTIONS(3261), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3263), - [sym_semgrep_named_ellipsis] = ACTIONS(3263), + [sym_identifier] = ACTIONS(3635), + [aux_sym_preproc_include_token1] = ACTIONS(3635), + [aux_sym_preproc_def_token1] = ACTIONS(3635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3637), + [aux_sym_preproc_if_token1] = ACTIONS(3635), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3635), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3635), + [sym_preproc_directive] = ACTIONS(3635), + [anon_sym_LPAREN2] = ACTIONS(3637), + [anon_sym_BANG] = ACTIONS(3637), + [anon_sym_TILDE] = ACTIONS(3637), + [anon_sym_DASH] = ACTIONS(3635), + [anon_sym_PLUS] = ACTIONS(3635), + [anon_sym_STAR] = ACTIONS(3637), + [anon_sym_AMP_AMP] = ACTIONS(3637), + [anon_sym_AMP] = ACTIONS(3635), + [anon_sym_SEMI] = ACTIONS(3637), + [anon_sym___extension__] = ACTIONS(3635), + [anon_sym_typedef] = ACTIONS(3635), + [anon_sym_extern] = ACTIONS(3635), + [anon_sym___attribute__] = ACTIONS(3635), + [anon_sym_COLON_COLON] = ACTIONS(3637), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3637), + [anon_sym___declspec] = ACTIONS(3635), + [anon_sym___based] = ACTIONS(3635), + [anon_sym___cdecl] = ACTIONS(3635), + [anon_sym___clrcall] = ACTIONS(3635), + [anon_sym___stdcall] = ACTIONS(3635), + [anon_sym___fastcall] = ACTIONS(3635), + [anon_sym___thiscall] = ACTIONS(3635), + [anon_sym___vectorcall] = ACTIONS(3635), + [anon_sym_LBRACE] = ACTIONS(3637), + [anon_sym_RBRACE] = ACTIONS(3637), + [anon_sym_signed] = ACTIONS(3635), + [anon_sym_unsigned] = ACTIONS(3635), + [anon_sym_long] = ACTIONS(3635), + [anon_sym_short] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(3635), + [anon_sym_static] = ACTIONS(3635), + [anon_sym_register] = ACTIONS(3635), + [anon_sym_inline] = ACTIONS(3635), + [anon_sym___inline] = ACTIONS(3635), + [anon_sym___inline__] = ACTIONS(3635), + [anon_sym___forceinline] = ACTIONS(3635), + [anon_sym_thread_local] = ACTIONS(3635), + [anon_sym___thread] = ACTIONS(3635), + [anon_sym_const] = ACTIONS(3635), + [anon_sym_constexpr] = ACTIONS(3635), + [anon_sym_volatile] = ACTIONS(3635), + [anon_sym_restrict] = ACTIONS(3635), + [anon_sym___restrict__] = ACTIONS(3635), + [anon_sym__Atomic] = ACTIONS(3635), + [anon_sym__Noreturn] = ACTIONS(3635), + [anon_sym_noreturn] = ACTIONS(3635), + [anon_sym_mutable] = ACTIONS(3635), + [anon_sym_constinit] = ACTIONS(3635), + [anon_sym_consteval] = ACTIONS(3635), + [sym_primitive_type] = ACTIONS(3635), + [anon_sym_enum] = ACTIONS(3635), + [anon_sym_class] = ACTIONS(3635), + [anon_sym_struct] = ACTIONS(3635), + [anon_sym_union] = ACTIONS(3635), + [anon_sym_if] = ACTIONS(3635), + [anon_sym_switch] = ACTIONS(3635), + [anon_sym_case] = ACTIONS(3635), + [anon_sym_default] = ACTIONS(3635), + [anon_sym_while] = ACTIONS(3635), + [anon_sym_do] = ACTIONS(3635), + [anon_sym_for] = ACTIONS(3635), + [anon_sym_return] = ACTIONS(3635), + [anon_sym_break] = ACTIONS(3635), + [anon_sym_continue] = ACTIONS(3635), + [anon_sym_goto] = ACTIONS(3635), + [anon_sym___try] = ACTIONS(3635), + [anon_sym___leave] = ACTIONS(3635), + [anon_sym_not] = ACTIONS(3635), + [anon_sym_compl] = ACTIONS(3635), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3635), + [anon_sym___alignof__] = ACTIONS(3635), + [anon_sym___alignof] = ACTIONS(3635), + [anon_sym__alignof] = ACTIONS(3635), + [anon_sym_alignof] = ACTIONS(3635), + [anon_sym__Alignof] = ACTIONS(3635), + [anon_sym_offsetof] = ACTIONS(3635), + [anon_sym__Generic] = ACTIONS(3635), + [anon_sym_asm] = ACTIONS(3635), + [anon_sym___asm__] = ACTIONS(3635), + [sym_number_literal] = ACTIONS(3637), + [anon_sym_L_SQUOTE] = ACTIONS(3637), + [anon_sym_u_SQUOTE] = ACTIONS(3637), + [anon_sym_U_SQUOTE] = ACTIONS(3637), + [anon_sym_u8_SQUOTE] = ACTIONS(3637), + [anon_sym_SQUOTE] = ACTIONS(3637), + [anon_sym_L_DQUOTE] = ACTIONS(3637), + [anon_sym_u_DQUOTE] = ACTIONS(3637), + [anon_sym_U_DQUOTE] = ACTIONS(3637), + [anon_sym_u8_DQUOTE] = ACTIONS(3637), + [anon_sym_DQUOTE] = ACTIONS(3637), + [sym_true] = ACTIONS(3635), + [sym_false] = ACTIONS(3635), + [anon_sym_NULL] = ACTIONS(3635), + [anon_sym_nullptr] = ACTIONS(3635), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3635), + [anon_sym_decltype] = ACTIONS(3635), + [anon_sym_virtual] = ACTIONS(3635), + [anon_sym_alignas] = ACTIONS(3635), + [anon_sym_explicit] = ACTIONS(3635), + [anon_sym_typename] = ACTIONS(3635), + [anon_sym_template] = ACTIONS(3635), + [anon_sym_operator] = ACTIONS(3635), + [anon_sym_try] = ACTIONS(3635), + [anon_sym_delete] = ACTIONS(3635), + [anon_sym_throw] = ACTIONS(3635), + [anon_sym_namespace] = ACTIONS(3635), + [anon_sym_using] = ACTIONS(3635), + [anon_sym_static_assert] = ACTIONS(3635), + [anon_sym_concept] = ACTIONS(3635), + [anon_sym_co_return] = ACTIONS(3635), + [anon_sym_co_yield] = ACTIONS(3635), + [anon_sym_R_DQUOTE] = ACTIONS(3637), + [anon_sym_LR_DQUOTE] = ACTIONS(3637), + [anon_sym_uR_DQUOTE] = ACTIONS(3637), + [anon_sym_UR_DQUOTE] = ACTIONS(3637), + [anon_sym_u8R_DQUOTE] = ACTIONS(3637), + [anon_sym_co_await] = ACTIONS(3635), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_requires] = ACTIONS(3635), + [sym_this] = ACTIONS(3635), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3637), + [sym_semgrep_named_ellipsis] = ACTIONS(3637), }, [767] = { - [sym_identifier] = ACTIONS(3362), - [aux_sym_preproc_include_token1] = ACTIONS(3362), - [aux_sym_preproc_def_token1] = ACTIONS(3362), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3364), - [aux_sym_preproc_if_token1] = ACTIONS(3362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3362), - [sym_preproc_directive] = ACTIONS(3362), - [anon_sym_LPAREN2] = ACTIONS(3364), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(3364), - [anon_sym_DASH] = ACTIONS(3362), - [anon_sym_PLUS] = ACTIONS(3362), - [anon_sym_STAR] = ACTIONS(3364), - [anon_sym_AMP_AMP] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3362), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym___extension__] = ACTIONS(3362), - [anon_sym_typedef] = ACTIONS(3362), - [anon_sym_extern] = ACTIONS(3362), - [anon_sym___attribute__] = ACTIONS(3362), - [anon_sym_COLON_COLON] = ACTIONS(3364), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3364), - [anon_sym___declspec] = ACTIONS(3362), - [anon_sym___based] = ACTIONS(3362), - [anon_sym___cdecl] = ACTIONS(3362), - [anon_sym___clrcall] = ACTIONS(3362), - [anon_sym___stdcall] = ACTIONS(3362), - [anon_sym___fastcall] = ACTIONS(3362), - [anon_sym___thiscall] = ACTIONS(3362), - [anon_sym___vectorcall] = ACTIONS(3362), - [anon_sym_LBRACE] = ACTIONS(3364), - [anon_sym_RBRACE] = ACTIONS(3364), - [anon_sym_signed] = ACTIONS(3362), - [anon_sym_unsigned] = ACTIONS(3362), - [anon_sym_long] = ACTIONS(3362), - [anon_sym_short] = ACTIONS(3362), - [anon_sym_LBRACK] = ACTIONS(3362), - [anon_sym_static] = ACTIONS(3362), - [anon_sym_register] = ACTIONS(3362), - [anon_sym_inline] = ACTIONS(3362), - [anon_sym___inline] = ACTIONS(3362), - [anon_sym___inline__] = ACTIONS(3362), - [anon_sym___forceinline] = ACTIONS(3362), - [anon_sym_thread_local] = ACTIONS(3362), - [anon_sym___thread] = ACTIONS(3362), - [anon_sym_const] = ACTIONS(3362), - [anon_sym_constexpr] = ACTIONS(3362), - [anon_sym_volatile] = ACTIONS(3362), - [anon_sym_restrict] = ACTIONS(3362), - [anon_sym___restrict__] = ACTIONS(3362), - [anon_sym__Atomic] = ACTIONS(3362), - [anon_sym__Noreturn] = ACTIONS(3362), - [anon_sym_noreturn] = ACTIONS(3362), - [anon_sym_mutable] = ACTIONS(3362), - [anon_sym_constinit] = ACTIONS(3362), - [anon_sym_consteval] = ACTIONS(3362), - [sym_primitive_type] = ACTIONS(3362), - [anon_sym_enum] = ACTIONS(3362), - [anon_sym_class] = ACTIONS(3362), - [anon_sym_struct] = ACTIONS(3362), - [anon_sym_union] = ACTIONS(3362), - [anon_sym_if] = ACTIONS(3362), - [anon_sym_switch] = ACTIONS(3362), - [anon_sym_case] = ACTIONS(3362), - [anon_sym_default] = ACTIONS(3362), - [anon_sym_while] = ACTIONS(3362), - [anon_sym_do] = ACTIONS(3362), - [anon_sym_for] = ACTIONS(3362), - [anon_sym_return] = ACTIONS(3362), - [anon_sym_break] = ACTIONS(3362), - [anon_sym_continue] = ACTIONS(3362), - [anon_sym_goto] = ACTIONS(3362), - [anon_sym___try] = ACTIONS(3362), - [anon_sym___leave] = ACTIONS(3362), - [anon_sym_not] = ACTIONS(3362), - [anon_sym_compl] = ACTIONS(3362), - [anon_sym_DASH_DASH] = ACTIONS(3364), - [anon_sym_PLUS_PLUS] = ACTIONS(3364), - [anon_sym_sizeof] = ACTIONS(3362), - [anon_sym___alignof__] = ACTIONS(3362), - [anon_sym___alignof] = ACTIONS(3362), - [anon_sym__alignof] = ACTIONS(3362), - [anon_sym_alignof] = ACTIONS(3362), - [anon_sym__Alignof] = ACTIONS(3362), - [anon_sym_offsetof] = ACTIONS(3362), - [anon_sym__Generic] = ACTIONS(3362), - [anon_sym_asm] = ACTIONS(3362), - [anon_sym___asm__] = ACTIONS(3362), - [sym_number_literal] = ACTIONS(3364), - [anon_sym_L_SQUOTE] = ACTIONS(3364), - [anon_sym_u_SQUOTE] = ACTIONS(3364), - [anon_sym_U_SQUOTE] = ACTIONS(3364), - [anon_sym_u8_SQUOTE] = ACTIONS(3364), - [anon_sym_SQUOTE] = ACTIONS(3364), - [anon_sym_L_DQUOTE] = ACTIONS(3364), - [anon_sym_u_DQUOTE] = ACTIONS(3364), - [anon_sym_U_DQUOTE] = ACTIONS(3364), - [anon_sym_u8_DQUOTE] = ACTIONS(3364), - [anon_sym_DQUOTE] = ACTIONS(3364), - [sym_true] = ACTIONS(3362), - [sym_false] = ACTIONS(3362), - [anon_sym_NULL] = ACTIONS(3362), - [anon_sym_nullptr] = ACTIONS(3362), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3362), - [anon_sym_decltype] = ACTIONS(3362), - [anon_sym_virtual] = ACTIONS(3362), - [anon_sym_alignas] = ACTIONS(3362), - [anon_sym_explicit] = ACTIONS(3362), - [anon_sym_typename] = ACTIONS(3362), - [anon_sym_template] = ACTIONS(3362), - [anon_sym_operator] = ACTIONS(3362), - [anon_sym_try] = ACTIONS(3362), - [anon_sym_delete] = ACTIONS(3362), - [anon_sym_throw] = ACTIONS(3362), - [anon_sym_namespace] = ACTIONS(3362), - [anon_sym_using] = ACTIONS(3362), - [anon_sym_static_assert] = ACTIONS(3362), - [anon_sym_concept] = ACTIONS(3362), - [anon_sym_co_return] = ACTIONS(3362), - [anon_sym_co_yield] = ACTIONS(3362), - [anon_sym_R_DQUOTE] = ACTIONS(3364), - [anon_sym_LR_DQUOTE] = ACTIONS(3364), - [anon_sym_uR_DQUOTE] = ACTIONS(3364), - [anon_sym_UR_DQUOTE] = ACTIONS(3364), - [anon_sym_u8R_DQUOTE] = ACTIONS(3364), - [anon_sym_co_await] = ACTIONS(3362), - [anon_sym_new] = ACTIONS(3362), - [anon_sym_requires] = ACTIONS(3362), - [sym_this] = ACTIONS(3362), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3364), - [sym_semgrep_named_ellipsis] = ACTIONS(3364), + [sym_identifier] = ACTIONS(3497), + [aux_sym_preproc_include_token1] = ACTIONS(3497), + [aux_sym_preproc_def_token1] = ACTIONS(3497), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3499), + [aux_sym_preproc_if_token1] = ACTIONS(3497), + [aux_sym_preproc_if_token2] = ACTIONS(3497), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3497), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3497), + [sym_preproc_directive] = ACTIONS(3497), + [anon_sym_LPAREN2] = ACTIONS(3499), + [anon_sym_BANG] = ACTIONS(3499), + [anon_sym_TILDE] = ACTIONS(3499), + [anon_sym_DASH] = ACTIONS(3497), + [anon_sym_PLUS] = ACTIONS(3497), + [anon_sym_STAR] = ACTIONS(3499), + [anon_sym_AMP_AMP] = ACTIONS(3499), + [anon_sym_AMP] = ACTIONS(3497), + [anon_sym_SEMI] = ACTIONS(3499), + [anon_sym___extension__] = ACTIONS(3497), + [anon_sym_typedef] = 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___cdecl] = ACTIONS(3497), + [anon_sym___clrcall] = ACTIONS(3497), + [anon_sym___stdcall] = ACTIONS(3497), + [anon_sym___fastcall] = ACTIONS(3497), + [anon_sym___thiscall] = ACTIONS(3497), + [anon_sym___vectorcall] = ACTIONS(3497), + [anon_sym_LBRACE] = ACTIONS(3499), + [anon_sym_signed] = ACTIONS(3497), + [anon_sym_unsigned] = ACTIONS(3497), + [anon_sym_long] = ACTIONS(3497), + [anon_sym_short] = ACTIONS(3497), + [anon_sym_LBRACK] = ACTIONS(3497), + [anon_sym_static] = ACTIONS(3497), + [anon_sym_register] = ACTIONS(3497), + [anon_sym_inline] = ACTIONS(3497), + [anon_sym___inline] = ACTIONS(3497), + [anon_sym___inline__] = ACTIONS(3497), + [anon_sym___forceinline] = ACTIONS(3497), + [anon_sym_thread_local] = ACTIONS(3497), + [anon_sym___thread] = ACTIONS(3497), + [anon_sym_const] = ACTIONS(3497), + [anon_sym_constexpr] = ACTIONS(3497), + [anon_sym_volatile] = ACTIONS(3497), + [anon_sym_restrict] = ACTIONS(3497), + [anon_sym___restrict__] = ACTIONS(3497), + [anon_sym__Atomic] = ACTIONS(3497), + [anon_sym__Noreturn] = ACTIONS(3497), + [anon_sym_noreturn] = ACTIONS(3497), + [anon_sym_mutable] = ACTIONS(3497), + [anon_sym_constinit] = ACTIONS(3497), + [anon_sym_consteval] = ACTIONS(3497), + [sym_primitive_type] = ACTIONS(3497), + [anon_sym_enum] = ACTIONS(3497), + [anon_sym_class] = ACTIONS(3497), + [anon_sym_struct] = ACTIONS(3497), + [anon_sym_union] = ACTIONS(3497), + [anon_sym_if] = ACTIONS(3497), + [anon_sym_switch] = ACTIONS(3497), + [anon_sym_case] = ACTIONS(3497), + [anon_sym_default] = ACTIONS(3497), + [anon_sym_while] = ACTIONS(3497), + [anon_sym_do] = ACTIONS(3497), + [anon_sym_for] = ACTIONS(3497), + [anon_sym_return] = ACTIONS(3497), + [anon_sym_break] = ACTIONS(3497), + [anon_sym_continue] = ACTIONS(3497), + [anon_sym_goto] = ACTIONS(3497), + [anon_sym___try] = ACTIONS(3497), + [anon_sym___leave] = ACTIONS(3497), + [anon_sym_not] = ACTIONS(3497), + [anon_sym_compl] = ACTIONS(3497), + [anon_sym_DASH_DASH] = ACTIONS(3499), + [anon_sym_PLUS_PLUS] = ACTIONS(3499), + [anon_sym_sizeof] = ACTIONS(3497), + [anon_sym___alignof__] = ACTIONS(3497), + [anon_sym___alignof] = ACTIONS(3497), + [anon_sym__alignof] = ACTIONS(3497), + [anon_sym_alignof] = ACTIONS(3497), + [anon_sym__Alignof] = ACTIONS(3497), + [anon_sym_offsetof] = ACTIONS(3497), + [anon_sym__Generic] = ACTIONS(3497), + [anon_sym_asm] = ACTIONS(3497), + [anon_sym___asm__] = ACTIONS(3497), + [sym_number_literal] = ACTIONS(3499), + [anon_sym_L_SQUOTE] = ACTIONS(3499), + [anon_sym_u_SQUOTE] = ACTIONS(3499), + [anon_sym_U_SQUOTE] = ACTIONS(3499), + [anon_sym_u8_SQUOTE] = ACTIONS(3499), + [anon_sym_SQUOTE] = ACTIONS(3499), + [anon_sym_L_DQUOTE] = ACTIONS(3499), + [anon_sym_u_DQUOTE] = ACTIONS(3499), + [anon_sym_U_DQUOTE] = ACTIONS(3499), + [anon_sym_u8_DQUOTE] = ACTIONS(3499), + [anon_sym_DQUOTE] = ACTIONS(3499), + [sym_true] = ACTIONS(3497), + [sym_false] = ACTIONS(3497), + [anon_sym_NULL] = ACTIONS(3497), + [anon_sym_nullptr] = ACTIONS(3497), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3497), + [anon_sym_decltype] = ACTIONS(3497), + [anon_sym_virtual] = ACTIONS(3497), + [anon_sym_alignas] = ACTIONS(3497), + [anon_sym_explicit] = ACTIONS(3497), + [anon_sym_typename] = ACTIONS(3497), + [anon_sym_template] = ACTIONS(3497), + [anon_sym_operator] = ACTIONS(3497), + [anon_sym_try] = ACTIONS(3497), + [anon_sym_delete] = ACTIONS(3497), + [anon_sym_throw] = ACTIONS(3497), + [anon_sym_namespace] = ACTIONS(3497), + [anon_sym_using] = ACTIONS(3497), + [anon_sym_static_assert] = ACTIONS(3497), + [anon_sym_concept] = ACTIONS(3497), + [anon_sym_co_return] = ACTIONS(3497), + [anon_sym_co_yield] = ACTIONS(3497), + [anon_sym_R_DQUOTE] = ACTIONS(3499), + [anon_sym_LR_DQUOTE] = ACTIONS(3499), + [anon_sym_uR_DQUOTE] = ACTIONS(3499), + [anon_sym_UR_DQUOTE] = ACTIONS(3499), + [anon_sym_u8R_DQUOTE] = ACTIONS(3499), + [anon_sym_co_await] = ACTIONS(3497), + [anon_sym_new] = ACTIONS(3497), + [anon_sym_requires] = ACTIONS(3497), + [sym_this] = ACTIONS(3497), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3499), + [sym_semgrep_named_ellipsis] = ACTIONS(3499), }, [768] = { - [ts_builtin_sym_end] = ACTIONS(3080), - [sym_identifier] = ACTIONS(3078), - [aux_sym_preproc_include_token1] = ACTIONS(3078), - [aux_sym_preproc_def_token1] = ACTIONS(3078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3080), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_RPAREN] = ACTIONS(3187), - [aux_sym_preproc_if_token1] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3078), - [sym_preproc_directive] = ACTIONS(3078), - [anon_sym_LPAREN2] = ACTIONS(3080), - [anon_sym_BANG] = ACTIONS(3080), - [anon_sym_TILDE] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym_SEMI] = ACTIONS(3187), - [anon_sym___extension__] = ACTIONS(3078), - [anon_sym_typedef] = ACTIONS(3078), - [anon_sym_extern] = ACTIONS(3078), - [anon_sym___attribute__] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3080), - [anon_sym___declspec] = ACTIONS(3078), - [anon_sym___based] = ACTIONS(3078), - [anon_sym___cdecl] = ACTIONS(3078), - [anon_sym___clrcall] = ACTIONS(3078), - [anon_sym___stdcall] = ACTIONS(3078), - [anon_sym___fastcall] = ACTIONS(3078), - [anon_sym___thiscall] = ACTIONS(3078), - [anon_sym___vectorcall] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_signed] = ACTIONS(3078), - [anon_sym_unsigned] = ACTIONS(3078), - [anon_sym_long] = ACTIONS(3078), - [anon_sym_short] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_static] = ACTIONS(3078), - [anon_sym_register] = ACTIONS(3078), - [anon_sym_inline] = ACTIONS(3078), - [anon_sym___inline] = ACTIONS(3078), - [anon_sym___inline__] = ACTIONS(3078), - [anon_sym___forceinline] = ACTIONS(3078), - [anon_sym_thread_local] = ACTIONS(3078), - [anon_sym___thread] = ACTIONS(3078), - [anon_sym_const] = ACTIONS(3078), - [anon_sym_constexpr] = ACTIONS(3078), - [anon_sym_volatile] = ACTIONS(3078), - [anon_sym_restrict] = ACTIONS(3078), - [anon_sym___restrict__] = ACTIONS(3078), - [anon_sym__Atomic] = ACTIONS(3078), - [anon_sym__Noreturn] = ACTIONS(3078), - [anon_sym_noreturn] = ACTIONS(3078), - [anon_sym_mutable] = ACTIONS(3078), - [anon_sym_constinit] = ACTIONS(3078), - [anon_sym_consteval] = ACTIONS(3078), - [sym_primitive_type] = ACTIONS(3078), - [anon_sym_enum] = ACTIONS(3078), - [anon_sym_class] = ACTIONS(3078), - [anon_sym_struct] = ACTIONS(3078), - [anon_sym_union] = ACTIONS(3078), - [anon_sym_if] = ACTIONS(3078), - [anon_sym_switch] = ACTIONS(3078), - [anon_sym_case] = ACTIONS(3078), - [anon_sym_default] = ACTIONS(3078), - [anon_sym_while] = ACTIONS(3078), - [anon_sym_do] = ACTIONS(3078), - [anon_sym_for] = ACTIONS(3078), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_break] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(3078), - [anon_sym_goto] = ACTIONS(3078), - [anon_sym_not] = ACTIONS(3078), - [anon_sym_compl] = ACTIONS(3078), - [anon_sym_DASH_DASH] = ACTIONS(3080), - [anon_sym_PLUS_PLUS] = ACTIONS(3080), - [anon_sym_sizeof] = ACTIONS(3078), - [anon_sym___alignof__] = ACTIONS(3078), - [anon_sym___alignof] = ACTIONS(3078), - [anon_sym__alignof] = ACTIONS(3078), - [anon_sym_alignof] = ACTIONS(3078), - [anon_sym__Alignof] = ACTIONS(3078), - [anon_sym_offsetof] = ACTIONS(3078), - [anon_sym__Generic] = ACTIONS(3078), - [anon_sym_asm] = ACTIONS(3078), - [anon_sym___asm__] = ACTIONS(3078), - [sym_number_literal] = ACTIONS(3080), - [anon_sym_L_SQUOTE] = ACTIONS(3080), - [anon_sym_u_SQUOTE] = ACTIONS(3080), - [anon_sym_U_SQUOTE] = ACTIONS(3080), - [anon_sym_u8_SQUOTE] = ACTIONS(3080), - [anon_sym_SQUOTE] = ACTIONS(3080), - [anon_sym_L_DQUOTE] = ACTIONS(3080), - [anon_sym_u_DQUOTE] = ACTIONS(3080), - [anon_sym_U_DQUOTE] = ACTIONS(3080), - [anon_sym_u8_DQUOTE] = ACTIONS(3080), - [anon_sym_DQUOTE] = ACTIONS(3080), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [anon_sym_NULL] = ACTIONS(3078), - [anon_sym_nullptr] = ACTIONS(3078), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3078), - [anon_sym_decltype] = ACTIONS(3078), - [anon_sym_virtual] = ACTIONS(3078), - [anon_sym_alignas] = ACTIONS(3078), - [anon_sym_explicit] = ACTIONS(3078), - [anon_sym_typename] = ACTIONS(3078), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_operator] = ACTIONS(3078), - [anon_sym_try] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3078), - [anon_sym_throw] = ACTIONS(3078), - [anon_sym_namespace] = ACTIONS(3078), - [anon_sym_using] = ACTIONS(3078), - [anon_sym_static_assert] = ACTIONS(3078), - [anon_sym_concept] = ACTIONS(3078), - [anon_sym_co_return] = ACTIONS(3078), - [anon_sym_co_yield] = ACTIONS(3078), - [anon_sym_R_DQUOTE] = ACTIONS(3080), - [anon_sym_LR_DQUOTE] = ACTIONS(3080), - [anon_sym_uR_DQUOTE] = ACTIONS(3080), - [anon_sym_UR_DQUOTE] = ACTIONS(3080), - [anon_sym_u8R_DQUOTE] = ACTIONS(3080), - [anon_sym_co_await] = ACTIONS(3078), - [anon_sym_new] = ACTIONS(3078), - [anon_sym_requires] = ACTIONS(3078), - [sym_this] = ACTIONS(3078), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3080), - [sym_semgrep_named_ellipsis] = ACTIONS(3080), + [sym_identifier] = ACTIONS(3653), + [aux_sym_preproc_include_token1] = ACTIONS(3653), + [aux_sym_preproc_def_token1] = ACTIONS(3653), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3655), + [aux_sym_preproc_if_token1] = ACTIONS(3653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3653), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3653), + [sym_preproc_directive] = ACTIONS(3653), + [anon_sym_LPAREN2] = ACTIONS(3655), + [anon_sym_BANG] = ACTIONS(3655), + [anon_sym_TILDE] = ACTIONS(3655), + [anon_sym_DASH] = ACTIONS(3653), + [anon_sym_PLUS] = ACTIONS(3653), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP_AMP] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3653), + [anon_sym_SEMI] = ACTIONS(3655), + [anon_sym___extension__] = ACTIONS(3653), + [anon_sym_typedef] = ACTIONS(3653), + [anon_sym_extern] = ACTIONS(3653), + [anon_sym___attribute__] = ACTIONS(3653), + [anon_sym_COLON_COLON] = ACTIONS(3655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3655), + [anon_sym___declspec] = ACTIONS(3653), + [anon_sym___based] = ACTIONS(3653), + [anon_sym___cdecl] = ACTIONS(3653), + [anon_sym___clrcall] = ACTIONS(3653), + [anon_sym___stdcall] = ACTIONS(3653), + [anon_sym___fastcall] = ACTIONS(3653), + [anon_sym___thiscall] = ACTIONS(3653), + [anon_sym___vectorcall] = ACTIONS(3653), + [anon_sym_LBRACE] = ACTIONS(3655), + [anon_sym_RBRACE] = ACTIONS(3655), + [anon_sym_signed] = ACTIONS(3653), + [anon_sym_unsigned] = ACTIONS(3653), + [anon_sym_long] = ACTIONS(3653), + [anon_sym_short] = ACTIONS(3653), + [anon_sym_LBRACK] = ACTIONS(3653), + [anon_sym_static] = ACTIONS(3653), + [anon_sym_register] = ACTIONS(3653), + [anon_sym_inline] = ACTIONS(3653), + [anon_sym___inline] = ACTIONS(3653), + [anon_sym___inline__] = ACTIONS(3653), + [anon_sym___forceinline] = ACTIONS(3653), + [anon_sym_thread_local] = ACTIONS(3653), + [anon_sym___thread] = ACTIONS(3653), + [anon_sym_const] = ACTIONS(3653), + [anon_sym_constexpr] = ACTIONS(3653), + [anon_sym_volatile] = ACTIONS(3653), + [anon_sym_restrict] = ACTIONS(3653), + [anon_sym___restrict__] = ACTIONS(3653), + [anon_sym__Atomic] = ACTIONS(3653), + [anon_sym__Noreturn] = ACTIONS(3653), + [anon_sym_noreturn] = ACTIONS(3653), + [anon_sym_mutable] = ACTIONS(3653), + [anon_sym_constinit] = ACTIONS(3653), + [anon_sym_consteval] = ACTIONS(3653), + [sym_primitive_type] = ACTIONS(3653), + [anon_sym_enum] = ACTIONS(3653), + [anon_sym_class] = ACTIONS(3653), + [anon_sym_struct] = ACTIONS(3653), + [anon_sym_union] = ACTIONS(3653), + [anon_sym_if] = ACTIONS(3653), + [anon_sym_switch] = ACTIONS(3653), + [anon_sym_case] = ACTIONS(3653), + [anon_sym_default] = ACTIONS(3653), + [anon_sym_while] = ACTIONS(3653), + [anon_sym_do] = ACTIONS(3653), + [anon_sym_for] = ACTIONS(3653), + [anon_sym_return] = ACTIONS(3653), + [anon_sym_break] = ACTIONS(3653), + [anon_sym_continue] = ACTIONS(3653), + [anon_sym_goto] = ACTIONS(3653), + [anon_sym___try] = ACTIONS(3653), + [anon_sym___leave] = ACTIONS(3653), + [anon_sym_not] = ACTIONS(3653), + [anon_sym_compl] = ACTIONS(3653), + [anon_sym_DASH_DASH] = ACTIONS(3655), + [anon_sym_PLUS_PLUS] = ACTIONS(3655), + [anon_sym_sizeof] = ACTIONS(3653), + [anon_sym___alignof__] = ACTIONS(3653), + [anon_sym___alignof] = ACTIONS(3653), + [anon_sym__alignof] = ACTIONS(3653), + [anon_sym_alignof] = ACTIONS(3653), + [anon_sym__Alignof] = ACTIONS(3653), + [anon_sym_offsetof] = ACTIONS(3653), + [anon_sym__Generic] = ACTIONS(3653), + [anon_sym_asm] = ACTIONS(3653), + [anon_sym___asm__] = ACTIONS(3653), + [sym_number_literal] = ACTIONS(3655), + [anon_sym_L_SQUOTE] = ACTIONS(3655), + [anon_sym_u_SQUOTE] = ACTIONS(3655), + [anon_sym_U_SQUOTE] = ACTIONS(3655), + [anon_sym_u8_SQUOTE] = ACTIONS(3655), + [anon_sym_SQUOTE] = ACTIONS(3655), + [anon_sym_L_DQUOTE] = ACTIONS(3655), + [anon_sym_u_DQUOTE] = ACTIONS(3655), + [anon_sym_U_DQUOTE] = ACTIONS(3655), + [anon_sym_u8_DQUOTE] = ACTIONS(3655), + [anon_sym_DQUOTE] = ACTIONS(3655), + [sym_true] = ACTIONS(3653), + [sym_false] = ACTIONS(3653), + [anon_sym_NULL] = ACTIONS(3653), + [anon_sym_nullptr] = ACTIONS(3653), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3653), + [anon_sym_decltype] = ACTIONS(3653), + [anon_sym_virtual] = ACTIONS(3653), + [anon_sym_alignas] = ACTIONS(3653), + [anon_sym_explicit] = ACTIONS(3653), + [anon_sym_typename] = ACTIONS(3653), + [anon_sym_template] = ACTIONS(3653), + [anon_sym_operator] = ACTIONS(3653), + [anon_sym_try] = ACTIONS(3653), + [anon_sym_delete] = ACTIONS(3653), + [anon_sym_throw] = ACTIONS(3653), + [anon_sym_namespace] = ACTIONS(3653), + [anon_sym_using] = ACTIONS(3653), + [anon_sym_static_assert] = ACTIONS(3653), + [anon_sym_concept] = ACTIONS(3653), + [anon_sym_co_return] = ACTIONS(3653), + [anon_sym_co_yield] = ACTIONS(3653), + [anon_sym_R_DQUOTE] = ACTIONS(3655), + [anon_sym_LR_DQUOTE] = ACTIONS(3655), + [anon_sym_uR_DQUOTE] = ACTIONS(3655), + [anon_sym_UR_DQUOTE] = ACTIONS(3655), + [anon_sym_u8R_DQUOTE] = ACTIONS(3655), + [anon_sym_co_await] = ACTIONS(3653), + [anon_sym_new] = ACTIONS(3653), + [anon_sym_requires] = ACTIONS(3653), + [sym_this] = ACTIONS(3653), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3655), + [sym_semgrep_named_ellipsis] = ACTIONS(3655), }, [769] = { - [sym_identifier] = ACTIONS(3366), - [aux_sym_preproc_include_token1] = ACTIONS(3366), - [aux_sym_preproc_def_token1] = ACTIONS(3366), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3368), - [aux_sym_preproc_if_token1] = ACTIONS(3366), - [aux_sym_preproc_if_token2] = ACTIONS(3366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3366), - [sym_preproc_directive] = ACTIONS(3366), - [anon_sym_LPAREN2] = ACTIONS(3368), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(3368), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_PLUS] = ACTIONS(3366), - [anon_sym_STAR] = ACTIONS(3368), - [anon_sym_AMP_AMP] = ACTIONS(3368), - [anon_sym_AMP] = ACTIONS(3366), - [anon_sym_SEMI] = ACTIONS(3368), - [anon_sym___extension__] = ACTIONS(3366), - [anon_sym_typedef] = ACTIONS(3366), - [anon_sym_extern] = ACTIONS(3366), - [anon_sym___attribute__] = ACTIONS(3366), - [anon_sym_COLON_COLON] = ACTIONS(3368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3368), - [anon_sym___declspec] = ACTIONS(3366), - [anon_sym___based] = ACTIONS(3366), - [anon_sym___cdecl] = ACTIONS(3366), - [anon_sym___clrcall] = ACTIONS(3366), - [anon_sym___stdcall] = ACTIONS(3366), - [anon_sym___fastcall] = ACTIONS(3366), - [anon_sym___thiscall] = ACTIONS(3366), - [anon_sym___vectorcall] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3368), - [anon_sym_signed] = ACTIONS(3366), - [anon_sym_unsigned] = ACTIONS(3366), - [anon_sym_long] = ACTIONS(3366), - [anon_sym_short] = ACTIONS(3366), - [anon_sym_LBRACK] = ACTIONS(3366), - [anon_sym_static] = ACTIONS(3366), - [anon_sym_register] = ACTIONS(3366), - [anon_sym_inline] = ACTIONS(3366), - [anon_sym___inline] = ACTIONS(3366), - [anon_sym___inline__] = ACTIONS(3366), - [anon_sym___forceinline] = ACTIONS(3366), - [anon_sym_thread_local] = ACTIONS(3366), - [anon_sym___thread] = ACTIONS(3366), - [anon_sym_const] = ACTIONS(3366), - [anon_sym_constexpr] = ACTIONS(3366), - [anon_sym_volatile] = ACTIONS(3366), - [anon_sym_restrict] = ACTIONS(3366), - [anon_sym___restrict__] = ACTIONS(3366), - [anon_sym__Atomic] = ACTIONS(3366), - [anon_sym__Noreturn] = ACTIONS(3366), - [anon_sym_noreturn] = ACTIONS(3366), - [anon_sym_mutable] = ACTIONS(3366), - [anon_sym_constinit] = ACTIONS(3366), - [anon_sym_consteval] = ACTIONS(3366), - [sym_primitive_type] = ACTIONS(3366), - [anon_sym_enum] = ACTIONS(3366), - [anon_sym_class] = ACTIONS(3366), - [anon_sym_struct] = ACTIONS(3366), - [anon_sym_union] = ACTIONS(3366), - [anon_sym_if] = ACTIONS(3366), - [anon_sym_switch] = ACTIONS(3366), - [anon_sym_case] = ACTIONS(3366), - [anon_sym_default] = ACTIONS(3366), - [anon_sym_while] = ACTIONS(3366), - [anon_sym_do] = ACTIONS(3366), - [anon_sym_for] = ACTIONS(3366), - [anon_sym_return] = ACTIONS(3366), - [anon_sym_break] = ACTIONS(3366), - [anon_sym_continue] = ACTIONS(3366), - [anon_sym_goto] = ACTIONS(3366), - [anon_sym___try] = ACTIONS(3366), - [anon_sym___leave] = ACTIONS(3366), - [anon_sym_not] = ACTIONS(3366), - [anon_sym_compl] = ACTIONS(3366), - [anon_sym_DASH_DASH] = ACTIONS(3368), - [anon_sym_PLUS_PLUS] = ACTIONS(3368), - [anon_sym_sizeof] = ACTIONS(3366), - [anon_sym___alignof__] = ACTIONS(3366), - [anon_sym___alignof] = ACTIONS(3366), - [anon_sym__alignof] = ACTIONS(3366), - [anon_sym_alignof] = ACTIONS(3366), - [anon_sym__Alignof] = ACTIONS(3366), - [anon_sym_offsetof] = ACTIONS(3366), - [anon_sym__Generic] = ACTIONS(3366), - [anon_sym_asm] = ACTIONS(3366), - [anon_sym___asm__] = ACTIONS(3366), - [sym_number_literal] = ACTIONS(3368), - [anon_sym_L_SQUOTE] = ACTIONS(3368), - [anon_sym_u_SQUOTE] = ACTIONS(3368), - [anon_sym_U_SQUOTE] = ACTIONS(3368), - [anon_sym_u8_SQUOTE] = ACTIONS(3368), - [anon_sym_SQUOTE] = ACTIONS(3368), - [anon_sym_L_DQUOTE] = ACTIONS(3368), - [anon_sym_u_DQUOTE] = ACTIONS(3368), - [anon_sym_U_DQUOTE] = ACTIONS(3368), - [anon_sym_u8_DQUOTE] = ACTIONS(3368), - [anon_sym_DQUOTE] = ACTIONS(3368), - [sym_true] = ACTIONS(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3366), - [anon_sym_nullptr] = ACTIONS(3366), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3366), - [anon_sym_decltype] = ACTIONS(3366), - [anon_sym_virtual] = ACTIONS(3366), - [anon_sym_alignas] = ACTIONS(3366), - [anon_sym_explicit] = ACTIONS(3366), - [anon_sym_typename] = ACTIONS(3366), - [anon_sym_template] = ACTIONS(3366), - [anon_sym_operator] = ACTIONS(3366), - [anon_sym_try] = ACTIONS(3366), - [anon_sym_delete] = ACTIONS(3366), - [anon_sym_throw] = ACTIONS(3366), - [anon_sym_namespace] = ACTIONS(3366), - [anon_sym_using] = ACTIONS(3366), - [anon_sym_static_assert] = ACTIONS(3366), - [anon_sym_concept] = ACTIONS(3366), - [anon_sym_co_return] = ACTIONS(3366), - [anon_sym_co_yield] = ACTIONS(3366), - [anon_sym_R_DQUOTE] = ACTIONS(3368), - [anon_sym_LR_DQUOTE] = ACTIONS(3368), - [anon_sym_uR_DQUOTE] = ACTIONS(3368), - [anon_sym_UR_DQUOTE] = ACTIONS(3368), - [anon_sym_u8R_DQUOTE] = ACTIONS(3368), - [anon_sym_co_await] = ACTIONS(3366), - [anon_sym_new] = ACTIONS(3366), - [anon_sym_requires] = ACTIONS(3366), - [sym_this] = ACTIONS(3366), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3368), - [sym_semgrep_named_ellipsis] = ACTIONS(3368), + [sym_identifier] = ACTIONS(3657), + [aux_sym_preproc_include_token1] = ACTIONS(3657), + [aux_sym_preproc_def_token1] = ACTIONS(3657), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3659), + [aux_sym_preproc_if_token1] = ACTIONS(3657), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3657), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3657), + [sym_preproc_directive] = ACTIONS(3657), + [anon_sym_LPAREN2] = ACTIONS(3659), + [anon_sym_BANG] = ACTIONS(3659), + [anon_sym_TILDE] = ACTIONS(3659), + [anon_sym_DASH] = ACTIONS(3657), + [anon_sym_PLUS] = ACTIONS(3657), + [anon_sym_STAR] = ACTIONS(3659), + [anon_sym_AMP_AMP] = ACTIONS(3659), + [anon_sym_AMP] = ACTIONS(3657), + [anon_sym_SEMI] = ACTIONS(3659), + [anon_sym___extension__] = ACTIONS(3657), + [anon_sym_typedef] = ACTIONS(3657), + [anon_sym_extern] = ACTIONS(3657), + [anon_sym___attribute__] = ACTIONS(3657), + [anon_sym_COLON_COLON] = ACTIONS(3659), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3659), + [anon_sym___declspec] = ACTIONS(3657), + [anon_sym___based] = ACTIONS(3657), + [anon_sym___cdecl] = ACTIONS(3657), + [anon_sym___clrcall] = ACTIONS(3657), + [anon_sym___stdcall] = ACTIONS(3657), + [anon_sym___fastcall] = ACTIONS(3657), + [anon_sym___thiscall] = ACTIONS(3657), + [anon_sym___vectorcall] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3659), + [anon_sym_RBRACE] = ACTIONS(3659), + [anon_sym_signed] = ACTIONS(3657), + [anon_sym_unsigned] = ACTIONS(3657), + [anon_sym_long] = ACTIONS(3657), + [anon_sym_short] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_static] = ACTIONS(3657), + [anon_sym_register] = ACTIONS(3657), + [anon_sym_inline] = ACTIONS(3657), + [anon_sym___inline] = ACTIONS(3657), + [anon_sym___inline__] = ACTIONS(3657), + [anon_sym___forceinline] = ACTIONS(3657), + [anon_sym_thread_local] = ACTIONS(3657), + [anon_sym___thread] = ACTIONS(3657), + [anon_sym_const] = ACTIONS(3657), + [anon_sym_constexpr] = ACTIONS(3657), + [anon_sym_volatile] = ACTIONS(3657), + [anon_sym_restrict] = ACTIONS(3657), + [anon_sym___restrict__] = ACTIONS(3657), + [anon_sym__Atomic] = ACTIONS(3657), + [anon_sym__Noreturn] = ACTIONS(3657), + [anon_sym_noreturn] = ACTIONS(3657), + [anon_sym_mutable] = ACTIONS(3657), + [anon_sym_constinit] = ACTIONS(3657), + [anon_sym_consteval] = ACTIONS(3657), + [sym_primitive_type] = ACTIONS(3657), + [anon_sym_enum] = ACTIONS(3657), + [anon_sym_class] = ACTIONS(3657), + [anon_sym_struct] = ACTIONS(3657), + [anon_sym_union] = ACTIONS(3657), + [anon_sym_if] = ACTIONS(3657), + [anon_sym_switch] = ACTIONS(3657), + [anon_sym_case] = ACTIONS(3657), + [anon_sym_default] = ACTIONS(3657), + [anon_sym_while] = ACTIONS(3657), + [anon_sym_do] = ACTIONS(3657), + [anon_sym_for] = ACTIONS(3657), + [anon_sym_return] = ACTIONS(3657), + [anon_sym_break] = ACTIONS(3657), + [anon_sym_continue] = ACTIONS(3657), + [anon_sym_goto] = ACTIONS(3657), + [anon_sym___try] = ACTIONS(3657), + [anon_sym___leave] = ACTIONS(3657), + [anon_sym_not] = ACTIONS(3657), + [anon_sym_compl] = ACTIONS(3657), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3657), + [anon_sym___alignof__] = ACTIONS(3657), + [anon_sym___alignof] = ACTIONS(3657), + [anon_sym__alignof] = ACTIONS(3657), + [anon_sym_alignof] = ACTIONS(3657), + [anon_sym__Alignof] = ACTIONS(3657), + [anon_sym_offsetof] = ACTIONS(3657), + [anon_sym__Generic] = ACTIONS(3657), + [anon_sym_asm] = ACTIONS(3657), + [anon_sym___asm__] = ACTIONS(3657), + [sym_number_literal] = ACTIONS(3659), + [anon_sym_L_SQUOTE] = ACTIONS(3659), + [anon_sym_u_SQUOTE] = ACTIONS(3659), + [anon_sym_U_SQUOTE] = ACTIONS(3659), + [anon_sym_u8_SQUOTE] = ACTIONS(3659), + [anon_sym_SQUOTE] = ACTIONS(3659), + [anon_sym_L_DQUOTE] = ACTIONS(3659), + [anon_sym_u_DQUOTE] = ACTIONS(3659), + [anon_sym_U_DQUOTE] = ACTIONS(3659), + [anon_sym_u8_DQUOTE] = ACTIONS(3659), + [anon_sym_DQUOTE] = ACTIONS(3659), + [sym_true] = ACTIONS(3657), + [sym_false] = ACTIONS(3657), + [anon_sym_NULL] = ACTIONS(3657), + [anon_sym_nullptr] = ACTIONS(3657), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3657), + [anon_sym_decltype] = ACTIONS(3657), + [anon_sym_virtual] = ACTIONS(3657), + [anon_sym_alignas] = ACTIONS(3657), + [anon_sym_explicit] = ACTIONS(3657), + [anon_sym_typename] = ACTIONS(3657), + [anon_sym_template] = ACTIONS(3657), + [anon_sym_operator] = ACTIONS(3657), + [anon_sym_try] = ACTIONS(3657), + [anon_sym_delete] = ACTIONS(3657), + [anon_sym_throw] = ACTIONS(3657), + [anon_sym_namespace] = ACTIONS(3657), + [anon_sym_using] = ACTIONS(3657), + [anon_sym_static_assert] = ACTIONS(3657), + [anon_sym_concept] = ACTIONS(3657), + [anon_sym_co_return] = ACTIONS(3657), + [anon_sym_co_yield] = ACTIONS(3657), + [anon_sym_R_DQUOTE] = ACTIONS(3659), + [anon_sym_LR_DQUOTE] = ACTIONS(3659), + [anon_sym_uR_DQUOTE] = ACTIONS(3659), + [anon_sym_UR_DQUOTE] = ACTIONS(3659), + [anon_sym_u8R_DQUOTE] = ACTIONS(3659), + [anon_sym_co_await] = ACTIONS(3657), + [anon_sym_new] = ACTIONS(3657), + [anon_sym_requires] = ACTIONS(3657), + [sym_this] = ACTIONS(3657), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3659), + [sym_semgrep_named_ellipsis] = ACTIONS(3659), }, [770] = { - [sym_identifier] = ACTIONS(3257), - [aux_sym_preproc_include_token1] = ACTIONS(3257), - [aux_sym_preproc_def_token1] = ACTIONS(3257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3259), - [aux_sym_preproc_if_token1] = ACTIONS(3257), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3257), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3257), - [sym_preproc_directive] = ACTIONS(3257), - [anon_sym_LPAREN2] = ACTIONS(3259), - [anon_sym_BANG] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3257), - [anon_sym_PLUS] = ACTIONS(3257), - [anon_sym_STAR] = ACTIONS(3259), - [anon_sym_AMP_AMP] = ACTIONS(3259), - [anon_sym_AMP] = ACTIONS(3257), - [anon_sym_SEMI] = ACTIONS(3259), - [anon_sym___extension__] = ACTIONS(3257), - [anon_sym_typedef] = ACTIONS(3257), - [anon_sym_extern] = ACTIONS(3257), - [anon_sym___attribute__] = ACTIONS(3257), - [anon_sym_COLON_COLON] = ACTIONS(3259), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3259), - [anon_sym___declspec] = ACTIONS(3257), - [anon_sym___based] = ACTIONS(3257), - [anon_sym___cdecl] = ACTIONS(3257), - [anon_sym___clrcall] = ACTIONS(3257), - [anon_sym___stdcall] = ACTIONS(3257), - [anon_sym___fastcall] = ACTIONS(3257), - [anon_sym___thiscall] = ACTIONS(3257), - [anon_sym___vectorcall] = ACTIONS(3257), - [anon_sym_LBRACE] = ACTIONS(3259), - [anon_sym_RBRACE] = ACTIONS(3259), - [anon_sym_signed] = ACTIONS(3257), - [anon_sym_unsigned] = ACTIONS(3257), - [anon_sym_long] = ACTIONS(3257), - [anon_sym_short] = ACTIONS(3257), - [anon_sym_LBRACK] = ACTIONS(3257), - [anon_sym_static] = ACTIONS(3257), - [anon_sym_register] = ACTIONS(3257), - [anon_sym_inline] = ACTIONS(3257), - [anon_sym___inline] = ACTIONS(3257), - [anon_sym___inline__] = ACTIONS(3257), - [anon_sym___forceinline] = ACTIONS(3257), - [anon_sym_thread_local] = ACTIONS(3257), - [anon_sym___thread] = ACTIONS(3257), - [anon_sym_const] = ACTIONS(3257), - [anon_sym_constexpr] = ACTIONS(3257), - [anon_sym_volatile] = ACTIONS(3257), - [anon_sym_restrict] = ACTIONS(3257), - [anon_sym___restrict__] = ACTIONS(3257), - [anon_sym__Atomic] = ACTIONS(3257), - [anon_sym__Noreturn] = ACTIONS(3257), - [anon_sym_noreturn] = ACTIONS(3257), - [anon_sym_mutable] = ACTIONS(3257), - [anon_sym_constinit] = ACTIONS(3257), - [anon_sym_consteval] = ACTIONS(3257), - [sym_primitive_type] = ACTIONS(3257), - [anon_sym_enum] = ACTIONS(3257), - [anon_sym_class] = ACTIONS(3257), - [anon_sym_struct] = ACTIONS(3257), - [anon_sym_union] = ACTIONS(3257), - [anon_sym_if] = ACTIONS(3257), - [anon_sym_switch] = ACTIONS(3257), - [anon_sym_case] = ACTIONS(3257), - [anon_sym_default] = ACTIONS(3257), - [anon_sym_while] = ACTIONS(3257), - [anon_sym_do] = ACTIONS(3257), - [anon_sym_for] = ACTIONS(3257), - [anon_sym_return] = ACTIONS(3257), - [anon_sym_break] = ACTIONS(3257), - [anon_sym_continue] = ACTIONS(3257), - [anon_sym_goto] = ACTIONS(3257), - [anon_sym___try] = ACTIONS(3257), - [anon_sym___leave] = ACTIONS(3257), - [anon_sym_not] = ACTIONS(3257), - [anon_sym_compl] = ACTIONS(3257), - [anon_sym_DASH_DASH] = ACTIONS(3259), - [anon_sym_PLUS_PLUS] = ACTIONS(3259), - [anon_sym_sizeof] = ACTIONS(3257), - [anon_sym___alignof__] = ACTIONS(3257), - [anon_sym___alignof] = ACTIONS(3257), - [anon_sym__alignof] = ACTIONS(3257), - [anon_sym_alignof] = ACTIONS(3257), - [anon_sym__Alignof] = ACTIONS(3257), - [anon_sym_offsetof] = ACTIONS(3257), - [anon_sym__Generic] = ACTIONS(3257), - [anon_sym_asm] = ACTIONS(3257), - [anon_sym___asm__] = ACTIONS(3257), - [sym_number_literal] = ACTIONS(3259), - [anon_sym_L_SQUOTE] = ACTIONS(3259), - [anon_sym_u_SQUOTE] = ACTIONS(3259), - [anon_sym_U_SQUOTE] = ACTIONS(3259), - [anon_sym_u8_SQUOTE] = ACTIONS(3259), - [anon_sym_SQUOTE] = ACTIONS(3259), - [anon_sym_L_DQUOTE] = ACTIONS(3259), - [anon_sym_u_DQUOTE] = ACTIONS(3259), - [anon_sym_U_DQUOTE] = ACTIONS(3259), - [anon_sym_u8_DQUOTE] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(3259), - [sym_true] = ACTIONS(3257), - [sym_false] = ACTIONS(3257), - [anon_sym_NULL] = ACTIONS(3257), - [anon_sym_nullptr] = ACTIONS(3257), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3257), - [anon_sym_decltype] = ACTIONS(3257), - [anon_sym_virtual] = ACTIONS(3257), - [anon_sym_alignas] = ACTIONS(3257), - [anon_sym_explicit] = ACTIONS(3257), - [anon_sym_typename] = ACTIONS(3257), - [anon_sym_template] = ACTIONS(3257), - [anon_sym_operator] = ACTIONS(3257), - [anon_sym_try] = ACTIONS(3257), - [anon_sym_delete] = ACTIONS(3257), - [anon_sym_throw] = ACTIONS(3257), - [anon_sym_namespace] = ACTIONS(3257), - [anon_sym_using] = ACTIONS(3257), - [anon_sym_static_assert] = ACTIONS(3257), - [anon_sym_concept] = ACTIONS(3257), - [anon_sym_co_return] = ACTIONS(3257), - [anon_sym_co_yield] = ACTIONS(3257), - [anon_sym_R_DQUOTE] = ACTIONS(3259), - [anon_sym_LR_DQUOTE] = ACTIONS(3259), - [anon_sym_uR_DQUOTE] = ACTIONS(3259), - [anon_sym_UR_DQUOTE] = ACTIONS(3259), - [anon_sym_u8R_DQUOTE] = ACTIONS(3259), - [anon_sym_co_await] = ACTIONS(3257), - [anon_sym_new] = ACTIONS(3257), - [anon_sym_requires] = ACTIONS(3257), - [sym_this] = ACTIONS(3257), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3259), - [sym_semgrep_named_ellipsis] = ACTIONS(3259), + [sym_identifier] = ACTIONS(3661), + [aux_sym_preproc_include_token1] = ACTIONS(3661), + [aux_sym_preproc_def_token1] = ACTIONS(3661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3663), + [aux_sym_preproc_if_token1] = ACTIONS(3661), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3661), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3661), + [sym_preproc_directive] = ACTIONS(3661), + [anon_sym_LPAREN2] = ACTIONS(3663), + [anon_sym_BANG] = ACTIONS(3663), + [anon_sym_TILDE] = ACTIONS(3663), + [anon_sym_DASH] = ACTIONS(3661), + [anon_sym_PLUS] = ACTIONS(3661), + [anon_sym_STAR] = ACTIONS(3663), + [anon_sym_AMP_AMP] = ACTIONS(3663), + [anon_sym_AMP] = ACTIONS(3661), + [anon_sym_SEMI] = ACTIONS(3663), + [anon_sym___extension__] = ACTIONS(3661), + [anon_sym_typedef] = ACTIONS(3661), + [anon_sym_extern] = ACTIONS(3661), + [anon_sym___attribute__] = ACTIONS(3661), + [anon_sym_COLON_COLON] = ACTIONS(3663), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3663), + [anon_sym___declspec] = ACTIONS(3661), + [anon_sym___based] = ACTIONS(3661), + [anon_sym___cdecl] = ACTIONS(3661), + [anon_sym___clrcall] = ACTIONS(3661), + [anon_sym___stdcall] = ACTIONS(3661), + [anon_sym___fastcall] = ACTIONS(3661), + [anon_sym___thiscall] = ACTIONS(3661), + [anon_sym___vectorcall] = ACTIONS(3661), + [anon_sym_LBRACE] = ACTIONS(3663), + [anon_sym_RBRACE] = ACTIONS(3663), + [anon_sym_signed] = ACTIONS(3661), + [anon_sym_unsigned] = ACTIONS(3661), + [anon_sym_long] = ACTIONS(3661), + [anon_sym_short] = ACTIONS(3661), + [anon_sym_LBRACK] = ACTIONS(3661), + [anon_sym_static] = ACTIONS(3661), + [anon_sym_register] = ACTIONS(3661), + [anon_sym_inline] = ACTIONS(3661), + [anon_sym___inline] = ACTIONS(3661), + [anon_sym___inline__] = ACTIONS(3661), + [anon_sym___forceinline] = ACTIONS(3661), + [anon_sym_thread_local] = ACTIONS(3661), + [anon_sym___thread] = ACTIONS(3661), + [anon_sym_const] = ACTIONS(3661), + [anon_sym_constexpr] = ACTIONS(3661), + [anon_sym_volatile] = ACTIONS(3661), + [anon_sym_restrict] = ACTIONS(3661), + [anon_sym___restrict__] = ACTIONS(3661), + [anon_sym__Atomic] = ACTIONS(3661), + [anon_sym__Noreturn] = ACTIONS(3661), + [anon_sym_noreturn] = ACTIONS(3661), + [anon_sym_mutable] = ACTIONS(3661), + [anon_sym_constinit] = ACTIONS(3661), + [anon_sym_consteval] = ACTIONS(3661), + [sym_primitive_type] = ACTIONS(3661), + [anon_sym_enum] = ACTIONS(3661), + [anon_sym_class] = ACTIONS(3661), + [anon_sym_struct] = ACTIONS(3661), + [anon_sym_union] = ACTIONS(3661), + [anon_sym_if] = ACTIONS(3661), + [anon_sym_switch] = ACTIONS(3661), + [anon_sym_case] = ACTIONS(3661), + [anon_sym_default] = ACTIONS(3661), + [anon_sym_while] = ACTIONS(3661), + [anon_sym_do] = ACTIONS(3661), + [anon_sym_for] = ACTIONS(3661), + [anon_sym_return] = ACTIONS(3661), + [anon_sym_break] = ACTIONS(3661), + [anon_sym_continue] = ACTIONS(3661), + [anon_sym_goto] = ACTIONS(3661), + [anon_sym___try] = ACTIONS(3661), + [anon_sym___leave] = ACTIONS(3661), + [anon_sym_not] = ACTIONS(3661), + [anon_sym_compl] = ACTIONS(3661), + [anon_sym_DASH_DASH] = ACTIONS(3663), + [anon_sym_PLUS_PLUS] = ACTIONS(3663), + [anon_sym_sizeof] = ACTIONS(3661), + [anon_sym___alignof__] = ACTIONS(3661), + [anon_sym___alignof] = ACTIONS(3661), + [anon_sym__alignof] = ACTIONS(3661), + [anon_sym_alignof] = ACTIONS(3661), + [anon_sym__Alignof] = ACTIONS(3661), + [anon_sym_offsetof] = ACTIONS(3661), + [anon_sym__Generic] = ACTIONS(3661), + [anon_sym_asm] = ACTIONS(3661), + [anon_sym___asm__] = ACTIONS(3661), + [sym_number_literal] = ACTIONS(3663), + [anon_sym_L_SQUOTE] = ACTIONS(3663), + [anon_sym_u_SQUOTE] = ACTIONS(3663), + [anon_sym_U_SQUOTE] = ACTIONS(3663), + [anon_sym_u8_SQUOTE] = ACTIONS(3663), + [anon_sym_SQUOTE] = ACTIONS(3663), + [anon_sym_L_DQUOTE] = ACTIONS(3663), + [anon_sym_u_DQUOTE] = ACTIONS(3663), + [anon_sym_U_DQUOTE] = ACTIONS(3663), + [anon_sym_u8_DQUOTE] = ACTIONS(3663), + [anon_sym_DQUOTE] = ACTIONS(3663), + [sym_true] = ACTIONS(3661), + [sym_false] = ACTIONS(3661), + [anon_sym_NULL] = ACTIONS(3661), + [anon_sym_nullptr] = ACTIONS(3661), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3661), + [anon_sym_decltype] = ACTIONS(3661), + [anon_sym_virtual] = ACTIONS(3661), + [anon_sym_alignas] = ACTIONS(3661), + [anon_sym_explicit] = ACTIONS(3661), + [anon_sym_typename] = ACTIONS(3661), + [anon_sym_template] = ACTIONS(3661), + [anon_sym_operator] = ACTIONS(3661), + [anon_sym_try] = ACTIONS(3661), + [anon_sym_delete] = ACTIONS(3661), + [anon_sym_throw] = ACTIONS(3661), + [anon_sym_namespace] = ACTIONS(3661), + [anon_sym_using] = ACTIONS(3661), + [anon_sym_static_assert] = ACTIONS(3661), + [anon_sym_concept] = ACTIONS(3661), + [anon_sym_co_return] = ACTIONS(3661), + [anon_sym_co_yield] = ACTIONS(3661), + [anon_sym_R_DQUOTE] = ACTIONS(3663), + [anon_sym_LR_DQUOTE] = ACTIONS(3663), + [anon_sym_uR_DQUOTE] = ACTIONS(3663), + [anon_sym_UR_DQUOTE] = ACTIONS(3663), + [anon_sym_u8R_DQUOTE] = ACTIONS(3663), + [anon_sym_co_await] = ACTIONS(3661), + [anon_sym_new] = ACTIONS(3661), + [anon_sym_requires] = ACTIONS(3661), + [sym_this] = ACTIONS(3661), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3663), + [sym_semgrep_named_ellipsis] = ACTIONS(3663), }, [771] = { - [sym_identifier] = ACTIONS(3556), - [aux_sym_preproc_include_token1] = ACTIONS(3556), - [aux_sym_preproc_def_token1] = ACTIONS(3556), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3558), - [aux_sym_preproc_if_token1] = ACTIONS(3556), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3556), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3556), - [sym_preproc_directive] = ACTIONS(3556), - [anon_sym_LPAREN2] = ACTIONS(3558), - [anon_sym_BANG] = ACTIONS(3558), - [anon_sym_TILDE] = ACTIONS(3558), - [anon_sym_DASH] = ACTIONS(3556), - [anon_sym_PLUS] = ACTIONS(3556), - [anon_sym_STAR] = ACTIONS(3558), - [anon_sym_AMP_AMP] = ACTIONS(3558), - [anon_sym_AMP] = ACTIONS(3556), - [anon_sym_SEMI] = ACTIONS(3558), - [anon_sym___extension__] = ACTIONS(3556), - [anon_sym_typedef] = ACTIONS(3556), - [anon_sym_extern] = ACTIONS(3556), - [anon_sym___attribute__] = ACTIONS(3556), - [anon_sym_COLON_COLON] = ACTIONS(3558), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3558), - [anon_sym___declspec] = ACTIONS(3556), - [anon_sym___based] = ACTIONS(3556), - [anon_sym___cdecl] = ACTIONS(3556), - [anon_sym___clrcall] = ACTIONS(3556), - [anon_sym___stdcall] = ACTIONS(3556), - [anon_sym___fastcall] = ACTIONS(3556), - [anon_sym___thiscall] = ACTIONS(3556), - [anon_sym___vectorcall] = ACTIONS(3556), - [anon_sym_LBRACE] = ACTIONS(3558), - [anon_sym_RBRACE] = ACTIONS(3558), - [anon_sym_signed] = ACTIONS(3556), - [anon_sym_unsigned] = ACTIONS(3556), - [anon_sym_long] = ACTIONS(3556), - [anon_sym_short] = ACTIONS(3556), - [anon_sym_LBRACK] = ACTIONS(3556), - [anon_sym_static] = ACTIONS(3556), - [anon_sym_register] = ACTIONS(3556), - [anon_sym_inline] = ACTIONS(3556), - [anon_sym___inline] = ACTIONS(3556), - [anon_sym___inline__] = ACTIONS(3556), - [anon_sym___forceinline] = ACTIONS(3556), - [anon_sym_thread_local] = ACTIONS(3556), - [anon_sym___thread] = ACTIONS(3556), - [anon_sym_const] = ACTIONS(3556), - [anon_sym_constexpr] = ACTIONS(3556), - [anon_sym_volatile] = ACTIONS(3556), - [anon_sym_restrict] = ACTIONS(3556), - [anon_sym___restrict__] = ACTIONS(3556), - [anon_sym__Atomic] = ACTIONS(3556), - [anon_sym__Noreturn] = ACTIONS(3556), - [anon_sym_noreturn] = ACTIONS(3556), - [anon_sym_mutable] = ACTIONS(3556), - [anon_sym_constinit] = ACTIONS(3556), - [anon_sym_consteval] = ACTIONS(3556), - [sym_primitive_type] = ACTIONS(3556), - [anon_sym_enum] = ACTIONS(3556), - [anon_sym_class] = ACTIONS(3556), - [anon_sym_struct] = ACTIONS(3556), - [anon_sym_union] = ACTIONS(3556), - [anon_sym_if] = ACTIONS(3556), - [anon_sym_switch] = ACTIONS(3556), - [anon_sym_case] = ACTIONS(3556), - [anon_sym_default] = ACTIONS(3556), - [anon_sym_while] = ACTIONS(3556), - [anon_sym_do] = ACTIONS(3556), - [anon_sym_for] = ACTIONS(3556), - [anon_sym_return] = ACTIONS(3556), - [anon_sym_break] = ACTIONS(3556), - [anon_sym_continue] = ACTIONS(3556), - [anon_sym_goto] = ACTIONS(3556), - [anon_sym___try] = ACTIONS(3556), - [anon_sym___leave] = ACTIONS(3556), - [anon_sym_not] = ACTIONS(3556), - [anon_sym_compl] = ACTIONS(3556), - [anon_sym_DASH_DASH] = ACTIONS(3558), - [anon_sym_PLUS_PLUS] = ACTIONS(3558), - [anon_sym_sizeof] = ACTIONS(3556), - [anon_sym___alignof__] = ACTIONS(3556), - [anon_sym___alignof] = ACTIONS(3556), - [anon_sym__alignof] = ACTIONS(3556), - [anon_sym_alignof] = ACTIONS(3556), - [anon_sym__Alignof] = ACTIONS(3556), - [anon_sym_offsetof] = ACTIONS(3556), - [anon_sym__Generic] = ACTIONS(3556), - [anon_sym_asm] = ACTIONS(3556), - [anon_sym___asm__] = ACTIONS(3556), - [sym_number_literal] = ACTIONS(3558), - [anon_sym_L_SQUOTE] = ACTIONS(3558), - [anon_sym_u_SQUOTE] = ACTIONS(3558), - [anon_sym_U_SQUOTE] = ACTIONS(3558), - [anon_sym_u8_SQUOTE] = ACTIONS(3558), - [anon_sym_SQUOTE] = ACTIONS(3558), - [anon_sym_L_DQUOTE] = ACTIONS(3558), - [anon_sym_u_DQUOTE] = ACTIONS(3558), - [anon_sym_U_DQUOTE] = ACTIONS(3558), - [anon_sym_u8_DQUOTE] = ACTIONS(3558), - [anon_sym_DQUOTE] = ACTIONS(3558), - [sym_true] = ACTIONS(3556), - [sym_false] = ACTIONS(3556), - [anon_sym_NULL] = ACTIONS(3556), - [anon_sym_nullptr] = ACTIONS(3556), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3556), - [anon_sym_decltype] = ACTIONS(3556), - [anon_sym_virtual] = ACTIONS(3556), - [anon_sym_alignas] = ACTIONS(3556), - [anon_sym_explicit] = ACTIONS(3556), - [anon_sym_typename] = ACTIONS(3556), - [anon_sym_template] = ACTIONS(3556), - [anon_sym_operator] = ACTIONS(3556), - [anon_sym_try] = ACTIONS(3556), - [anon_sym_delete] = ACTIONS(3556), - [anon_sym_throw] = ACTIONS(3556), - [anon_sym_namespace] = ACTIONS(3556), - [anon_sym_using] = ACTIONS(3556), - [anon_sym_static_assert] = ACTIONS(3556), - [anon_sym_concept] = ACTIONS(3556), - [anon_sym_co_return] = ACTIONS(3556), - [anon_sym_co_yield] = ACTIONS(3556), - [anon_sym_R_DQUOTE] = ACTIONS(3558), - [anon_sym_LR_DQUOTE] = ACTIONS(3558), - [anon_sym_uR_DQUOTE] = ACTIONS(3558), - [anon_sym_UR_DQUOTE] = ACTIONS(3558), - [anon_sym_u8R_DQUOTE] = ACTIONS(3558), - [anon_sym_co_await] = ACTIONS(3556), - [anon_sym_new] = ACTIONS(3556), - [anon_sym_requires] = ACTIONS(3556), - [sym_this] = ACTIONS(3556), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3558), - [sym_semgrep_named_ellipsis] = ACTIONS(3558), + [sym_identifier] = ACTIONS(3533), + [aux_sym_preproc_include_token1] = ACTIONS(3533), + [aux_sym_preproc_def_token1] = ACTIONS(3533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3535), + [aux_sym_preproc_if_token1] = ACTIONS(3533), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3533), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3533), + [sym_preproc_directive] = ACTIONS(3533), + [anon_sym_LPAREN2] = ACTIONS(3535), + [anon_sym_BANG] = ACTIONS(3535), + [anon_sym_TILDE] = ACTIONS(3535), + [anon_sym_DASH] = ACTIONS(3533), + [anon_sym_PLUS] = ACTIONS(3533), + [anon_sym_STAR] = ACTIONS(3535), + [anon_sym_AMP_AMP] = ACTIONS(3535), + [anon_sym_AMP] = ACTIONS(3533), + [anon_sym_SEMI] = ACTIONS(3535), + [anon_sym___extension__] = ACTIONS(3533), + [anon_sym_typedef] = ACTIONS(3533), + [anon_sym_extern] = ACTIONS(3533), + [anon_sym___attribute__] = ACTIONS(3533), + [anon_sym_COLON_COLON] = ACTIONS(3535), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3535), + [anon_sym___declspec] = ACTIONS(3533), + [anon_sym___based] = ACTIONS(3533), + [anon_sym___cdecl] = ACTIONS(3533), + [anon_sym___clrcall] = ACTIONS(3533), + [anon_sym___stdcall] = ACTIONS(3533), + [anon_sym___fastcall] = ACTIONS(3533), + [anon_sym___thiscall] = ACTIONS(3533), + [anon_sym___vectorcall] = ACTIONS(3533), + [anon_sym_LBRACE] = ACTIONS(3535), + [anon_sym_RBRACE] = ACTIONS(3535), + [anon_sym_signed] = ACTIONS(3533), + [anon_sym_unsigned] = ACTIONS(3533), + [anon_sym_long] = ACTIONS(3533), + [anon_sym_short] = ACTIONS(3533), + [anon_sym_LBRACK] = ACTIONS(3533), + [anon_sym_static] = ACTIONS(3533), + [anon_sym_register] = ACTIONS(3533), + [anon_sym_inline] = ACTIONS(3533), + [anon_sym___inline] = ACTIONS(3533), + [anon_sym___inline__] = ACTIONS(3533), + [anon_sym___forceinline] = ACTIONS(3533), + [anon_sym_thread_local] = ACTIONS(3533), + [anon_sym___thread] = ACTIONS(3533), + [anon_sym_const] = ACTIONS(3533), + [anon_sym_constexpr] = ACTIONS(3533), + [anon_sym_volatile] = ACTIONS(3533), + [anon_sym_restrict] = ACTIONS(3533), + [anon_sym___restrict__] = ACTIONS(3533), + [anon_sym__Atomic] = ACTIONS(3533), + [anon_sym__Noreturn] = ACTIONS(3533), + [anon_sym_noreturn] = ACTIONS(3533), + [anon_sym_mutable] = ACTIONS(3533), + [anon_sym_constinit] = ACTIONS(3533), + [anon_sym_consteval] = ACTIONS(3533), + [sym_primitive_type] = ACTIONS(3533), + [anon_sym_enum] = ACTIONS(3533), + [anon_sym_class] = ACTIONS(3533), + [anon_sym_struct] = ACTIONS(3533), + [anon_sym_union] = ACTIONS(3533), + [anon_sym_if] = ACTIONS(3533), + [anon_sym_switch] = ACTIONS(3533), + [anon_sym_case] = ACTIONS(3533), + [anon_sym_default] = ACTIONS(3533), + [anon_sym_while] = ACTIONS(3533), + [anon_sym_do] = ACTIONS(3533), + [anon_sym_for] = ACTIONS(3533), + [anon_sym_return] = ACTIONS(3533), + [anon_sym_break] = ACTIONS(3533), + [anon_sym_continue] = ACTIONS(3533), + [anon_sym_goto] = ACTIONS(3533), + [anon_sym___try] = ACTIONS(3533), + [anon_sym___leave] = ACTIONS(3533), + [anon_sym_not] = ACTIONS(3533), + [anon_sym_compl] = ACTIONS(3533), + [anon_sym_DASH_DASH] = ACTIONS(3535), + [anon_sym_PLUS_PLUS] = ACTIONS(3535), + [anon_sym_sizeof] = ACTIONS(3533), + [anon_sym___alignof__] = ACTIONS(3533), + [anon_sym___alignof] = ACTIONS(3533), + [anon_sym__alignof] = ACTIONS(3533), + [anon_sym_alignof] = ACTIONS(3533), + [anon_sym__Alignof] = ACTIONS(3533), + [anon_sym_offsetof] = ACTIONS(3533), + [anon_sym__Generic] = ACTIONS(3533), + [anon_sym_asm] = ACTIONS(3533), + [anon_sym___asm__] = ACTIONS(3533), + [sym_number_literal] = ACTIONS(3535), + [anon_sym_L_SQUOTE] = ACTIONS(3535), + [anon_sym_u_SQUOTE] = ACTIONS(3535), + [anon_sym_U_SQUOTE] = ACTIONS(3535), + [anon_sym_u8_SQUOTE] = ACTIONS(3535), + [anon_sym_SQUOTE] = ACTIONS(3535), + [anon_sym_L_DQUOTE] = ACTIONS(3535), + [anon_sym_u_DQUOTE] = ACTIONS(3535), + [anon_sym_U_DQUOTE] = ACTIONS(3535), + [anon_sym_u8_DQUOTE] = ACTIONS(3535), + [anon_sym_DQUOTE] = ACTIONS(3535), + [sym_true] = ACTIONS(3533), + [sym_false] = ACTIONS(3533), + [anon_sym_NULL] = ACTIONS(3533), + [anon_sym_nullptr] = ACTIONS(3533), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3533), + [anon_sym_decltype] = ACTIONS(3533), + [anon_sym_virtual] = ACTIONS(3533), + [anon_sym_alignas] = ACTIONS(3533), + [anon_sym_explicit] = ACTIONS(3533), + [anon_sym_typename] = ACTIONS(3533), + [anon_sym_template] = ACTIONS(3533), + [anon_sym_operator] = ACTIONS(3533), + [anon_sym_try] = ACTIONS(3533), + [anon_sym_delete] = ACTIONS(3533), + [anon_sym_throw] = ACTIONS(3533), + [anon_sym_namespace] = ACTIONS(3533), + [anon_sym_using] = ACTIONS(3533), + [anon_sym_static_assert] = ACTIONS(3533), + [anon_sym_concept] = ACTIONS(3533), + [anon_sym_co_return] = ACTIONS(3533), + [anon_sym_co_yield] = ACTIONS(3533), + [anon_sym_R_DQUOTE] = ACTIONS(3535), + [anon_sym_LR_DQUOTE] = ACTIONS(3535), + [anon_sym_uR_DQUOTE] = ACTIONS(3535), + [anon_sym_UR_DQUOTE] = ACTIONS(3535), + [anon_sym_u8R_DQUOTE] = ACTIONS(3535), + [anon_sym_co_await] = ACTIONS(3533), + [anon_sym_new] = ACTIONS(3533), + [anon_sym_requires] = ACTIONS(3533), + [sym_this] = ACTIONS(3533), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3535), + [sym_semgrep_named_ellipsis] = ACTIONS(3535), }, [772] = { - [sym_identifier] = ACTIONS(3560), - [aux_sym_preproc_include_token1] = ACTIONS(3560), - [aux_sym_preproc_def_token1] = ACTIONS(3560), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3562), - [aux_sym_preproc_if_token1] = ACTIONS(3560), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3560), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3560), - [sym_preproc_directive] = ACTIONS(3560), - [anon_sym_LPAREN2] = ACTIONS(3562), - [anon_sym_BANG] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_DASH] = ACTIONS(3560), - [anon_sym_PLUS] = ACTIONS(3560), - [anon_sym_STAR] = ACTIONS(3562), - [anon_sym_AMP_AMP] = ACTIONS(3562), - [anon_sym_AMP] = ACTIONS(3560), - [anon_sym_SEMI] = ACTIONS(3562), - [anon_sym___extension__] = ACTIONS(3560), - [anon_sym_typedef] = ACTIONS(3560), - [anon_sym_extern] = ACTIONS(3560), - [anon_sym___attribute__] = ACTIONS(3560), - [anon_sym_COLON_COLON] = ACTIONS(3562), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3562), - [anon_sym___declspec] = ACTIONS(3560), - [anon_sym___based] = ACTIONS(3560), - [anon_sym___cdecl] = ACTIONS(3560), - [anon_sym___clrcall] = ACTIONS(3560), - [anon_sym___stdcall] = ACTIONS(3560), - [anon_sym___fastcall] = ACTIONS(3560), - [anon_sym___thiscall] = ACTIONS(3560), - [anon_sym___vectorcall] = ACTIONS(3560), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_RBRACE] = ACTIONS(3562), - [anon_sym_signed] = ACTIONS(3560), - [anon_sym_unsigned] = ACTIONS(3560), - [anon_sym_long] = ACTIONS(3560), - [anon_sym_short] = ACTIONS(3560), - [anon_sym_LBRACK] = ACTIONS(3560), - [anon_sym_static] = ACTIONS(3560), - [anon_sym_register] = ACTIONS(3560), - [anon_sym_inline] = ACTIONS(3560), - [anon_sym___inline] = ACTIONS(3560), - [anon_sym___inline__] = ACTIONS(3560), - [anon_sym___forceinline] = ACTIONS(3560), - [anon_sym_thread_local] = ACTIONS(3560), - [anon_sym___thread] = ACTIONS(3560), - [anon_sym_const] = ACTIONS(3560), - [anon_sym_constexpr] = ACTIONS(3560), - [anon_sym_volatile] = ACTIONS(3560), - [anon_sym_restrict] = ACTIONS(3560), - [anon_sym___restrict__] = ACTIONS(3560), - [anon_sym__Atomic] = ACTIONS(3560), - [anon_sym__Noreturn] = ACTIONS(3560), - [anon_sym_noreturn] = ACTIONS(3560), - [anon_sym_mutable] = ACTIONS(3560), - [anon_sym_constinit] = ACTIONS(3560), - [anon_sym_consteval] = ACTIONS(3560), - [sym_primitive_type] = ACTIONS(3560), - [anon_sym_enum] = ACTIONS(3560), - [anon_sym_class] = ACTIONS(3560), - [anon_sym_struct] = ACTIONS(3560), - [anon_sym_union] = ACTIONS(3560), - [anon_sym_if] = ACTIONS(3560), - [anon_sym_switch] = ACTIONS(3560), - [anon_sym_case] = ACTIONS(3560), - [anon_sym_default] = ACTIONS(3560), - [anon_sym_while] = ACTIONS(3560), - [anon_sym_do] = ACTIONS(3560), - [anon_sym_for] = ACTIONS(3560), - [anon_sym_return] = ACTIONS(3560), - [anon_sym_break] = ACTIONS(3560), - [anon_sym_continue] = ACTIONS(3560), - [anon_sym_goto] = ACTIONS(3560), - [anon_sym___try] = ACTIONS(3560), - [anon_sym___leave] = ACTIONS(3560), - [anon_sym_not] = ACTIONS(3560), - [anon_sym_compl] = ACTIONS(3560), - [anon_sym_DASH_DASH] = ACTIONS(3562), - [anon_sym_PLUS_PLUS] = ACTIONS(3562), - [anon_sym_sizeof] = ACTIONS(3560), - [anon_sym___alignof__] = ACTIONS(3560), - [anon_sym___alignof] = ACTIONS(3560), - [anon_sym__alignof] = ACTIONS(3560), - [anon_sym_alignof] = ACTIONS(3560), - [anon_sym__Alignof] = ACTIONS(3560), - [anon_sym_offsetof] = ACTIONS(3560), - [anon_sym__Generic] = ACTIONS(3560), - [anon_sym_asm] = ACTIONS(3560), - [anon_sym___asm__] = ACTIONS(3560), - [sym_number_literal] = ACTIONS(3562), - [anon_sym_L_SQUOTE] = ACTIONS(3562), - [anon_sym_u_SQUOTE] = ACTIONS(3562), - [anon_sym_U_SQUOTE] = ACTIONS(3562), - [anon_sym_u8_SQUOTE] = ACTIONS(3562), - [anon_sym_SQUOTE] = ACTIONS(3562), - [anon_sym_L_DQUOTE] = ACTIONS(3562), - [anon_sym_u_DQUOTE] = ACTIONS(3562), - [anon_sym_U_DQUOTE] = ACTIONS(3562), - [anon_sym_u8_DQUOTE] = ACTIONS(3562), - [anon_sym_DQUOTE] = ACTIONS(3562), - [sym_true] = ACTIONS(3560), - [sym_false] = ACTIONS(3560), - [anon_sym_NULL] = ACTIONS(3560), - [anon_sym_nullptr] = ACTIONS(3560), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3560), - [anon_sym_decltype] = ACTIONS(3560), - [anon_sym_virtual] = ACTIONS(3560), - [anon_sym_alignas] = ACTIONS(3560), - [anon_sym_explicit] = ACTIONS(3560), - [anon_sym_typename] = ACTIONS(3560), - [anon_sym_template] = ACTIONS(3560), - [anon_sym_operator] = ACTIONS(3560), - [anon_sym_try] = ACTIONS(3560), - [anon_sym_delete] = ACTIONS(3560), - [anon_sym_throw] = ACTIONS(3560), - [anon_sym_namespace] = ACTIONS(3560), - [anon_sym_using] = ACTIONS(3560), - [anon_sym_static_assert] = ACTIONS(3560), - [anon_sym_concept] = ACTIONS(3560), - [anon_sym_co_return] = ACTIONS(3560), - [anon_sym_co_yield] = ACTIONS(3560), - [anon_sym_R_DQUOTE] = ACTIONS(3562), - [anon_sym_LR_DQUOTE] = ACTIONS(3562), - [anon_sym_uR_DQUOTE] = ACTIONS(3562), - [anon_sym_UR_DQUOTE] = ACTIONS(3562), - [anon_sym_u8R_DQUOTE] = ACTIONS(3562), - [anon_sym_co_await] = ACTIONS(3560), - [anon_sym_new] = ACTIONS(3560), - [anon_sym_requires] = ACTIONS(3560), - [sym_this] = ACTIONS(3560), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3562), - [sym_semgrep_named_ellipsis] = ACTIONS(3562), + [sym_identifier] = ACTIONS(3541), + [aux_sym_preproc_include_token1] = ACTIONS(3541), + [aux_sym_preproc_def_token1] = ACTIONS(3541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3543), + [aux_sym_preproc_if_token1] = ACTIONS(3541), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3541), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3541), + [sym_preproc_directive] = ACTIONS(3541), + [anon_sym_LPAREN2] = ACTIONS(3543), + [anon_sym_BANG] = ACTIONS(3543), + [anon_sym_TILDE] = ACTIONS(3543), + [anon_sym_DASH] = ACTIONS(3541), + [anon_sym_PLUS] = ACTIONS(3541), + [anon_sym_STAR] = ACTIONS(3543), + [anon_sym_AMP_AMP] = ACTIONS(3543), + [anon_sym_AMP] = ACTIONS(3541), + [anon_sym_SEMI] = ACTIONS(3543), + [anon_sym___extension__] = ACTIONS(3541), + [anon_sym_typedef] = ACTIONS(3541), + [anon_sym_extern] = ACTIONS(3541), + [anon_sym___attribute__] = ACTIONS(3541), + [anon_sym_COLON_COLON] = ACTIONS(3543), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3543), + [anon_sym___declspec] = ACTIONS(3541), + [anon_sym___based] = ACTIONS(3541), + [anon_sym___cdecl] = ACTIONS(3541), + [anon_sym___clrcall] = ACTIONS(3541), + [anon_sym___stdcall] = ACTIONS(3541), + [anon_sym___fastcall] = ACTIONS(3541), + [anon_sym___thiscall] = ACTIONS(3541), + [anon_sym___vectorcall] = ACTIONS(3541), + [anon_sym_LBRACE] = ACTIONS(3543), + [anon_sym_RBRACE] = ACTIONS(3543), + [anon_sym_signed] = ACTIONS(3541), + [anon_sym_unsigned] = ACTIONS(3541), + [anon_sym_long] = ACTIONS(3541), + [anon_sym_short] = ACTIONS(3541), + [anon_sym_LBRACK] = ACTIONS(3541), + [anon_sym_static] = ACTIONS(3541), + [anon_sym_register] = ACTIONS(3541), + [anon_sym_inline] = ACTIONS(3541), + [anon_sym___inline] = ACTIONS(3541), + [anon_sym___inline__] = ACTIONS(3541), + [anon_sym___forceinline] = ACTIONS(3541), + [anon_sym_thread_local] = ACTIONS(3541), + [anon_sym___thread] = ACTIONS(3541), + [anon_sym_const] = ACTIONS(3541), + [anon_sym_constexpr] = ACTIONS(3541), + [anon_sym_volatile] = ACTIONS(3541), + [anon_sym_restrict] = ACTIONS(3541), + [anon_sym___restrict__] = ACTIONS(3541), + [anon_sym__Atomic] = ACTIONS(3541), + [anon_sym__Noreturn] = ACTIONS(3541), + [anon_sym_noreturn] = ACTIONS(3541), + [anon_sym_mutable] = ACTIONS(3541), + [anon_sym_constinit] = ACTIONS(3541), + [anon_sym_consteval] = ACTIONS(3541), + [sym_primitive_type] = ACTIONS(3541), + [anon_sym_enum] = ACTIONS(3541), + [anon_sym_class] = ACTIONS(3541), + [anon_sym_struct] = ACTIONS(3541), + [anon_sym_union] = ACTIONS(3541), + [anon_sym_if] = ACTIONS(3541), + [anon_sym_switch] = ACTIONS(3541), + [anon_sym_case] = ACTIONS(3541), + [anon_sym_default] = ACTIONS(3541), + [anon_sym_while] = ACTIONS(3541), + [anon_sym_do] = ACTIONS(3541), + [anon_sym_for] = ACTIONS(3541), + [anon_sym_return] = ACTIONS(3541), + [anon_sym_break] = ACTIONS(3541), + [anon_sym_continue] = ACTIONS(3541), + [anon_sym_goto] = ACTIONS(3541), + [anon_sym___try] = ACTIONS(3541), + [anon_sym___leave] = ACTIONS(3541), + [anon_sym_not] = ACTIONS(3541), + [anon_sym_compl] = ACTIONS(3541), + [anon_sym_DASH_DASH] = ACTIONS(3543), + [anon_sym_PLUS_PLUS] = ACTIONS(3543), + [anon_sym_sizeof] = ACTIONS(3541), + [anon_sym___alignof__] = ACTIONS(3541), + [anon_sym___alignof] = ACTIONS(3541), + [anon_sym__alignof] = ACTIONS(3541), + [anon_sym_alignof] = ACTIONS(3541), + [anon_sym__Alignof] = ACTIONS(3541), + [anon_sym_offsetof] = ACTIONS(3541), + [anon_sym__Generic] = ACTIONS(3541), + [anon_sym_asm] = ACTIONS(3541), + [anon_sym___asm__] = ACTIONS(3541), + [sym_number_literal] = ACTIONS(3543), + [anon_sym_L_SQUOTE] = ACTIONS(3543), + [anon_sym_u_SQUOTE] = ACTIONS(3543), + [anon_sym_U_SQUOTE] = ACTIONS(3543), + [anon_sym_u8_SQUOTE] = ACTIONS(3543), + [anon_sym_SQUOTE] = ACTIONS(3543), + [anon_sym_L_DQUOTE] = ACTIONS(3543), + [anon_sym_u_DQUOTE] = ACTIONS(3543), + [anon_sym_U_DQUOTE] = ACTIONS(3543), + [anon_sym_u8_DQUOTE] = ACTIONS(3543), + [anon_sym_DQUOTE] = ACTIONS(3543), + [sym_true] = ACTIONS(3541), + [sym_false] = ACTIONS(3541), + [anon_sym_NULL] = ACTIONS(3541), + [anon_sym_nullptr] = ACTIONS(3541), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3541), + [anon_sym_decltype] = ACTIONS(3541), + [anon_sym_virtual] = ACTIONS(3541), + [anon_sym_alignas] = ACTIONS(3541), + [anon_sym_explicit] = ACTIONS(3541), + [anon_sym_typename] = ACTIONS(3541), + [anon_sym_template] = ACTIONS(3541), + [anon_sym_operator] = ACTIONS(3541), + [anon_sym_try] = ACTIONS(3541), + [anon_sym_delete] = ACTIONS(3541), + [anon_sym_throw] = ACTIONS(3541), + [anon_sym_namespace] = ACTIONS(3541), + [anon_sym_using] = ACTIONS(3541), + [anon_sym_static_assert] = ACTIONS(3541), + [anon_sym_concept] = ACTIONS(3541), + [anon_sym_co_return] = ACTIONS(3541), + [anon_sym_co_yield] = ACTIONS(3541), + [anon_sym_R_DQUOTE] = ACTIONS(3543), + [anon_sym_LR_DQUOTE] = ACTIONS(3543), + [anon_sym_uR_DQUOTE] = ACTIONS(3543), + [anon_sym_UR_DQUOTE] = ACTIONS(3543), + [anon_sym_u8R_DQUOTE] = ACTIONS(3543), + [anon_sym_co_await] = ACTIONS(3541), + [anon_sym_new] = ACTIONS(3541), + [anon_sym_requires] = ACTIONS(3541), + [sym_this] = ACTIONS(3541), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3543), + [sym_semgrep_named_ellipsis] = ACTIONS(3543), }, [773] = { - [sym_identifier] = ACTIONS(3350), - [aux_sym_preproc_include_token1] = ACTIONS(3350), - [aux_sym_preproc_def_token1] = ACTIONS(3350), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3352), - [aux_sym_preproc_if_token1] = ACTIONS(3350), - [aux_sym_preproc_if_token2] = ACTIONS(3350), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3350), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3350), - [sym_preproc_directive] = ACTIONS(3350), - [anon_sym_LPAREN2] = ACTIONS(3352), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(3352), - [anon_sym_DASH] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3350), - [anon_sym_STAR] = ACTIONS(3352), - [anon_sym_AMP_AMP] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3350), - [anon_sym_SEMI] = ACTIONS(3352), - [anon_sym___extension__] = ACTIONS(3350), - [anon_sym_typedef] = ACTIONS(3350), - [anon_sym_extern] = ACTIONS(3350), - [anon_sym___attribute__] = ACTIONS(3350), - [anon_sym_COLON_COLON] = ACTIONS(3352), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3352), - [anon_sym___declspec] = ACTIONS(3350), - [anon_sym___based] = ACTIONS(3350), - [anon_sym___cdecl] = ACTIONS(3350), - [anon_sym___clrcall] = ACTIONS(3350), - [anon_sym___stdcall] = ACTIONS(3350), - [anon_sym___fastcall] = ACTIONS(3350), - [anon_sym___thiscall] = ACTIONS(3350), - [anon_sym___vectorcall] = ACTIONS(3350), - [anon_sym_LBRACE] = ACTIONS(3352), - [anon_sym_signed] = ACTIONS(3350), - [anon_sym_unsigned] = ACTIONS(3350), - [anon_sym_long] = ACTIONS(3350), - [anon_sym_short] = ACTIONS(3350), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_static] = ACTIONS(3350), - [anon_sym_register] = ACTIONS(3350), - [anon_sym_inline] = ACTIONS(3350), - [anon_sym___inline] = ACTIONS(3350), - [anon_sym___inline__] = ACTIONS(3350), - [anon_sym___forceinline] = ACTIONS(3350), - [anon_sym_thread_local] = ACTIONS(3350), - [anon_sym___thread] = ACTIONS(3350), - [anon_sym_const] = ACTIONS(3350), - [anon_sym_constexpr] = ACTIONS(3350), - [anon_sym_volatile] = ACTIONS(3350), - [anon_sym_restrict] = ACTIONS(3350), - [anon_sym___restrict__] = ACTIONS(3350), - [anon_sym__Atomic] = ACTIONS(3350), - [anon_sym__Noreturn] = ACTIONS(3350), - [anon_sym_noreturn] = ACTIONS(3350), - [anon_sym_mutable] = ACTIONS(3350), - [anon_sym_constinit] = ACTIONS(3350), - [anon_sym_consteval] = ACTIONS(3350), - [sym_primitive_type] = ACTIONS(3350), - [anon_sym_enum] = ACTIONS(3350), - [anon_sym_class] = ACTIONS(3350), - [anon_sym_struct] = ACTIONS(3350), - [anon_sym_union] = ACTIONS(3350), - [anon_sym_if] = ACTIONS(3350), - [anon_sym_switch] = ACTIONS(3350), - [anon_sym_case] = ACTIONS(3350), - [anon_sym_default] = ACTIONS(3350), - [anon_sym_while] = ACTIONS(3350), - [anon_sym_do] = ACTIONS(3350), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(3350), - [anon_sym_break] = ACTIONS(3350), - [anon_sym_continue] = ACTIONS(3350), - [anon_sym_goto] = ACTIONS(3350), - [anon_sym___try] = ACTIONS(3350), - [anon_sym___leave] = ACTIONS(3350), - [anon_sym_not] = ACTIONS(3350), - [anon_sym_compl] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3352), - [anon_sym_PLUS_PLUS] = ACTIONS(3352), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3350), - [anon_sym___alignof] = ACTIONS(3350), - [anon_sym__alignof] = ACTIONS(3350), - [anon_sym_alignof] = ACTIONS(3350), - [anon_sym__Alignof] = ACTIONS(3350), - [anon_sym_offsetof] = ACTIONS(3350), - [anon_sym__Generic] = ACTIONS(3350), - [anon_sym_asm] = ACTIONS(3350), - [anon_sym___asm__] = ACTIONS(3350), - [sym_number_literal] = ACTIONS(3352), - [anon_sym_L_SQUOTE] = ACTIONS(3352), - [anon_sym_u_SQUOTE] = ACTIONS(3352), - [anon_sym_U_SQUOTE] = ACTIONS(3352), - [anon_sym_u8_SQUOTE] = ACTIONS(3352), - [anon_sym_SQUOTE] = ACTIONS(3352), - [anon_sym_L_DQUOTE] = ACTIONS(3352), - [anon_sym_u_DQUOTE] = ACTIONS(3352), - [anon_sym_U_DQUOTE] = ACTIONS(3352), - [anon_sym_u8_DQUOTE] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(3352), - [sym_true] = ACTIONS(3350), - [sym_false] = ACTIONS(3350), - [anon_sym_NULL] = ACTIONS(3350), - [anon_sym_nullptr] = ACTIONS(3350), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3350), - [anon_sym_decltype] = ACTIONS(3350), - [anon_sym_virtual] = ACTIONS(3350), - [anon_sym_alignas] = ACTIONS(3350), - [anon_sym_explicit] = ACTIONS(3350), - [anon_sym_typename] = ACTIONS(3350), - [anon_sym_template] = ACTIONS(3350), - [anon_sym_operator] = ACTIONS(3350), - [anon_sym_try] = ACTIONS(3350), - [anon_sym_delete] = ACTIONS(3350), - [anon_sym_throw] = ACTIONS(3350), - [anon_sym_namespace] = ACTIONS(3350), - [anon_sym_using] = ACTIONS(3350), - [anon_sym_static_assert] = ACTIONS(3350), - [anon_sym_concept] = ACTIONS(3350), - [anon_sym_co_return] = ACTIONS(3350), - [anon_sym_co_yield] = ACTIONS(3350), - [anon_sym_R_DQUOTE] = ACTIONS(3352), - [anon_sym_LR_DQUOTE] = ACTIONS(3352), - [anon_sym_uR_DQUOTE] = ACTIONS(3352), - [anon_sym_UR_DQUOTE] = ACTIONS(3352), - [anon_sym_u8R_DQUOTE] = ACTIONS(3352), - [anon_sym_co_await] = ACTIONS(3350), - [anon_sym_new] = ACTIONS(3350), - [anon_sym_requires] = ACTIONS(3350), - [sym_this] = ACTIONS(3350), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3352), - [sym_semgrep_named_ellipsis] = ACTIONS(3352), + [sym_identifier] = ACTIONS(3545), + [aux_sym_preproc_include_token1] = ACTIONS(3545), + [aux_sym_preproc_def_token1] = ACTIONS(3545), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3547), + [aux_sym_preproc_if_token1] = ACTIONS(3545), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3545), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3545), + [sym_preproc_directive] = ACTIONS(3545), + [anon_sym_LPAREN2] = ACTIONS(3547), + [anon_sym_BANG] = ACTIONS(3547), + [anon_sym_TILDE] = ACTIONS(3547), + [anon_sym_DASH] = ACTIONS(3545), + [anon_sym_PLUS] = ACTIONS(3545), + [anon_sym_STAR] = ACTIONS(3547), + [anon_sym_AMP_AMP] = ACTIONS(3547), + [anon_sym_AMP] = ACTIONS(3545), + [anon_sym_SEMI] = ACTIONS(3547), + [anon_sym___extension__] = ACTIONS(3545), + [anon_sym_typedef] = ACTIONS(3545), + [anon_sym_extern] = ACTIONS(3545), + [anon_sym___attribute__] = ACTIONS(3545), + [anon_sym_COLON_COLON] = ACTIONS(3547), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3547), + [anon_sym___declspec] = ACTIONS(3545), + [anon_sym___based] = ACTIONS(3545), + [anon_sym___cdecl] = ACTIONS(3545), + [anon_sym___clrcall] = ACTIONS(3545), + [anon_sym___stdcall] = ACTIONS(3545), + [anon_sym___fastcall] = ACTIONS(3545), + [anon_sym___thiscall] = ACTIONS(3545), + [anon_sym___vectorcall] = ACTIONS(3545), + [anon_sym_LBRACE] = ACTIONS(3547), + [anon_sym_RBRACE] = ACTIONS(3547), + [anon_sym_signed] = ACTIONS(3545), + [anon_sym_unsigned] = ACTIONS(3545), + [anon_sym_long] = ACTIONS(3545), + [anon_sym_short] = ACTIONS(3545), + [anon_sym_LBRACK] = ACTIONS(3545), + [anon_sym_static] = ACTIONS(3545), + [anon_sym_register] = ACTIONS(3545), + [anon_sym_inline] = ACTIONS(3545), + [anon_sym___inline] = ACTIONS(3545), + [anon_sym___inline__] = ACTIONS(3545), + [anon_sym___forceinline] = ACTIONS(3545), + [anon_sym_thread_local] = ACTIONS(3545), + [anon_sym___thread] = ACTIONS(3545), + [anon_sym_const] = ACTIONS(3545), + [anon_sym_constexpr] = ACTIONS(3545), + [anon_sym_volatile] = ACTIONS(3545), + [anon_sym_restrict] = ACTIONS(3545), + [anon_sym___restrict__] = ACTIONS(3545), + [anon_sym__Atomic] = ACTIONS(3545), + [anon_sym__Noreturn] = ACTIONS(3545), + [anon_sym_noreturn] = ACTIONS(3545), + [anon_sym_mutable] = ACTIONS(3545), + [anon_sym_constinit] = ACTIONS(3545), + [anon_sym_consteval] = ACTIONS(3545), + [sym_primitive_type] = ACTIONS(3545), + [anon_sym_enum] = ACTIONS(3545), + [anon_sym_class] = ACTIONS(3545), + [anon_sym_struct] = ACTIONS(3545), + [anon_sym_union] = ACTIONS(3545), + [anon_sym_if] = ACTIONS(3545), + [anon_sym_switch] = ACTIONS(3545), + [anon_sym_case] = ACTIONS(3545), + [anon_sym_default] = ACTIONS(3545), + [anon_sym_while] = ACTIONS(3545), + [anon_sym_do] = ACTIONS(3545), + [anon_sym_for] = ACTIONS(3545), + [anon_sym_return] = ACTIONS(3545), + [anon_sym_break] = ACTIONS(3545), + [anon_sym_continue] = ACTIONS(3545), + [anon_sym_goto] = ACTIONS(3545), + [anon_sym___try] = ACTIONS(3545), + [anon_sym___leave] = ACTIONS(3545), + [anon_sym_not] = ACTIONS(3545), + [anon_sym_compl] = ACTIONS(3545), + [anon_sym_DASH_DASH] = ACTIONS(3547), + [anon_sym_PLUS_PLUS] = ACTIONS(3547), + [anon_sym_sizeof] = ACTIONS(3545), + [anon_sym___alignof__] = ACTIONS(3545), + [anon_sym___alignof] = ACTIONS(3545), + [anon_sym__alignof] = ACTIONS(3545), + [anon_sym_alignof] = ACTIONS(3545), + [anon_sym__Alignof] = ACTIONS(3545), + [anon_sym_offsetof] = ACTIONS(3545), + [anon_sym__Generic] = ACTIONS(3545), + [anon_sym_asm] = ACTIONS(3545), + [anon_sym___asm__] = ACTIONS(3545), + [sym_number_literal] = ACTIONS(3547), + [anon_sym_L_SQUOTE] = ACTIONS(3547), + [anon_sym_u_SQUOTE] = ACTIONS(3547), + [anon_sym_U_SQUOTE] = ACTIONS(3547), + [anon_sym_u8_SQUOTE] = ACTIONS(3547), + [anon_sym_SQUOTE] = ACTIONS(3547), + [anon_sym_L_DQUOTE] = ACTIONS(3547), + [anon_sym_u_DQUOTE] = ACTIONS(3547), + [anon_sym_U_DQUOTE] = ACTIONS(3547), + [anon_sym_u8_DQUOTE] = ACTIONS(3547), + [anon_sym_DQUOTE] = ACTIONS(3547), + [sym_true] = ACTIONS(3545), + [sym_false] = ACTIONS(3545), + [anon_sym_NULL] = ACTIONS(3545), + [anon_sym_nullptr] = ACTIONS(3545), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3545), + [anon_sym_decltype] = ACTIONS(3545), + [anon_sym_virtual] = ACTIONS(3545), + [anon_sym_alignas] = ACTIONS(3545), + [anon_sym_explicit] = ACTIONS(3545), + [anon_sym_typename] = ACTIONS(3545), + [anon_sym_template] = ACTIONS(3545), + [anon_sym_operator] = ACTIONS(3545), + [anon_sym_try] = ACTIONS(3545), + [anon_sym_delete] = ACTIONS(3545), + [anon_sym_throw] = ACTIONS(3545), + [anon_sym_namespace] = ACTIONS(3545), + [anon_sym_using] = ACTIONS(3545), + [anon_sym_static_assert] = ACTIONS(3545), + [anon_sym_concept] = ACTIONS(3545), + [anon_sym_co_return] = ACTIONS(3545), + [anon_sym_co_yield] = ACTIONS(3545), + [anon_sym_R_DQUOTE] = ACTIONS(3547), + [anon_sym_LR_DQUOTE] = ACTIONS(3547), + [anon_sym_uR_DQUOTE] = ACTIONS(3547), + [anon_sym_UR_DQUOTE] = ACTIONS(3547), + [anon_sym_u8R_DQUOTE] = ACTIONS(3547), + [anon_sym_co_await] = ACTIONS(3545), + [anon_sym_new] = ACTIONS(3545), + [anon_sym_requires] = ACTIONS(3545), + [sym_this] = ACTIONS(3545), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3547), + [sym_semgrep_named_ellipsis] = ACTIONS(3547), }, [774] = { - [sym_identifier] = ACTIONS(3362), - [aux_sym_preproc_include_token1] = ACTIONS(3362), - [aux_sym_preproc_def_token1] = ACTIONS(3362), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3364), - [aux_sym_preproc_if_token1] = ACTIONS(3362), - [aux_sym_preproc_if_token2] = ACTIONS(3362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3362), - [sym_preproc_directive] = ACTIONS(3362), - [anon_sym_LPAREN2] = ACTIONS(3364), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(3364), - [anon_sym_DASH] = ACTIONS(3362), - [anon_sym_PLUS] = ACTIONS(3362), - [anon_sym_STAR] = ACTIONS(3364), - [anon_sym_AMP_AMP] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3362), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym___extension__] = ACTIONS(3362), - [anon_sym_typedef] = ACTIONS(3362), - [anon_sym_extern] = ACTIONS(3362), - [anon_sym___attribute__] = ACTIONS(3362), - [anon_sym_COLON_COLON] = ACTIONS(3364), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3364), - [anon_sym___declspec] = ACTIONS(3362), - [anon_sym___based] = ACTIONS(3362), - [anon_sym___cdecl] = ACTIONS(3362), - [anon_sym___clrcall] = ACTIONS(3362), - [anon_sym___stdcall] = ACTIONS(3362), - [anon_sym___fastcall] = ACTIONS(3362), - [anon_sym___thiscall] = ACTIONS(3362), - [anon_sym___vectorcall] = ACTIONS(3362), - [anon_sym_LBRACE] = ACTIONS(3364), - [anon_sym_signed] = ACTIONS(3362), - [anon_sym_unsigned] = ACTIONS(3362), - [anon_sym_long] = ACTIONS(3362), - [anon_sym_short] = ACTIONS(3362), - [anon_sym_LBRACK] = ACTIONS(3362), - [anon_sym_static] = ACTIONS(3362), - [anon_sym_register] = ACTIONS(3362), - [anon_sym_inline] = ACTIONS(3362), - [anon_sym___inline] = ACTIONS(3362), - [anon_sym___inline__] = ACTIONS(3362), - [anon_sym___forceinline] = ACTIONS(3362), - [anon_sym_thread_local] = ACTIONS(3362), - [anon_sym___thread] = ACTIONS(3362), - [anon_sym_const] = ACTIONS(3362), - [anon_sym_constexpr] = ACTIONS(3362), - [anon_sym_volatile] = ACTIONS(3362), - [anon_sym_restrict] = ACTIONS(3362), - [anon_sym___restrict__] = ACTIONS(3362), - [anon_sym__Atomic] = ACTIONS(3362), - [anon_sym__Noreturn] = ACTIONS(3362), - [anon_sym_noreturn] = ACTIONS(3362), - [anon_sym_mutable] = ACTIONS(3362), - [anon_sym_constinit] = ACTIONS(3362), - [anon_sym_consteval] = ACTIONS(3362), - [sym_primitive_type] = ACTIONS(3362), - [anon_sym_enum] = ACTIONS(3362), - [anon_sym_class] = ACTIONS(3362), - [anon_sym_struct] = ACTIONS(3362), - [anon_sym_union] = ACTIONS(3362), - [anon_sym_if] = ACTIONS(3362), - [anon_sym_switch] = ACTIONS(3362), - [anon_sym_case] = ACTIONS(3362), - [anon_sym_default] = ACTIONS(3362), - [anon_sym_while] = ACTIONS(3362), - [anon_sym_do] = ACTIONS(3362), - [anon_sym_for] = ACTIONS(3362), - [anon_sym_return] = ACTIONS(3362), - [anon_sym_break] = ACTIONS(3362), - [anon_sym_continue] = ACTIONS(3362), - [anon_sym_goto] = ACTIONS(3362), - [anon_sym___try] = ACTIONS(3362), - [anon_sym___leave] = ACTIONS(3362), - [anon_sym_not] = ACTIONS(3362), - [anon_sym_compl] = ACTIONS(3362), - [anon_sym_DASH_DASH] = ACTIONS(3364), - [anon_sym_PLUS_PLUS] = ACTIONS(3364), - [anon_sym_sizeof] = ACTIONS(3362), - [anon_sym___alignof__] = ACTIONS(3362), - [anon_sym___alignof] = ACTIONS(3362), - [anon_sym__alignof] = ACTIONS(3362), - [anon_sym_alignof] = ACTIONS(3362), - [anon_sym__Alignof] = ACTIONS(3362), - [anon_sym_offsetof] = ACTIONS(3362), - [anon_sym__Generic] = ACTIONS(3362), - [anon_sym_asm] = ACTIONS(3362), - [anon_sym___asm__] = ACTIONS(3362), - [sym_number_literal] = ACTIONS(3364), - [anon_sym_L_SQUOTE] = ACTIONS(3364), - [anon_sym_u_SQUOTE] = ACTIONS(3364), - [anon_sym_U_SQUOTE] = ACTIONS(3364), - [anon_sym_u8_SQUOTE] = ACTIONS(3364), - [anon_sym_SQUOTE] = ACTIONS(3364), - [anon_sym_L_DQUOTE] = ACTIONS(3364), - [anon_sym_u_DQUOTE] = ACTIONS(3364), - [anon_sym_U_DQUOTE] = ACTIONS(3364), - [anon_sym_u8_DQUOTE] = ACTIONS(3364), - [anon_sym_DQUOTE] = ACTIONS(3364), - [sym_true] = ACTIONS(3362), - [sym_false] = ACTIONS(3362), - [anon_sym_NULL] = ACTIONS(3362), - [anon_sym_nullptr] = ACTIONS(3362), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3362), - [anon_sym_decltype] = ACTIONS(3362), - [anon_sym_virtual] = ACTIONS(3362), - [anon_sym_alignas] = ACTIONS(3362), - [anon_sym_explicit] = ACTIONS(3362), - [anon_sym_typename] = ACTIONS(3362), - [anon_sym_template] = ACTIONS(3362), - [anon_sym_operator] = ACTIONS(3362), - [anon_sym_try] = ACTIONS(3362), - [anon_sym_delete] = ACTIONS(3362), - [anon_sym_throw] = ACTIONS(3362), - [anon_sym_namespace] = ACTIONS(3362), - [anon_sym_using] = ACTIONS(3362), - [anon_sym_static_assert] = ACTIONS(3362), - [anon_sym_concept] = ACTIONS(3362), - [anon_sym_co_return] = ACTIONS(3362), - [anon_sym_co_yield] = ACTIONS(3362), - [anon_sym_R_DQUOTE] = ACTIONS(3364), - [anon_sym_LR_DQUOTE] = ACTIONS(3364), - [anon_sym_uR_DQUOTE] = ACTIONS(3364), - [anon_sym_UR_DQUOTE] = ACTIONS(3364), - [anon_sym_u8R_DQUOTE] = ACTIONS(3364), - [anon_sym_co_await] = ACTIONS(3362), - [anon_sym_new] = ACTIONS(3362), - [anon_sym_requires] = ACTIONS(3362), - [sym_this] = ACTIONS(3362), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3364), - [sym_semgrep_named_ellipsis] = ACTIONS(3364), - }, - [775] = { - [sym_identifier] = ACTIONS(3261), - [aux_sym_preproc_include_token1] = ACTIONS(3261), - [aux_sym_preproc_def_token1] = ACTIONS(3261), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3263), - [aux_sym_preproc_if_token1] = ACTIONS(3261), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3261), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3261), - [sym_preproc_directive] = ACTIONS(3261), - [anon_sym_LPAREN2] = ACTIONS(3263), - [anon_sym_BANG] = ACTIONS(3263), - [anon_sym_TILDE] = ACTIONS(3263), - [anon_sym_DASH] = ACTIONS(3261), - [anon_sym_PLUS] = ACTIONS(3261), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP_AMP] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3261), - [anon_sym_SEMI] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(3261), - [anon_sym_typedef] = ACTIONS(3261), - [anon_sym_extern] = ACTIONS(3261), - [anon_sym___attribute__] = ACTIONS(3261), - [anon_sym_COLON_COLON] = ACTIONS(3263), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3263), - [anon_sym___declspec] = ACTIONS(3261), - [anon_sym___based] = ACTIONS(3261), - [anon_sym___cdecl] = ACTIONS(3261), - [anon_sym___clrcall] = ACTIONS(3261), - [anon_sym___stdcall] = ACTIONS(3261), - [anon_sym___fastcall] = ACTIONS(3261), - [anon_sym___thiscall] = ACTIONS(3261), - [anon_sym___vectorcall] = ACTIONS(3261), - [anon_sym_LBRACE] = ACTIONS(3263), - [anon_sym_RBRACE] = ACTIONS(3263), - [anon_sym_signed] = ACTIONS(3261), - [anon_sym_unsigned] = ACTIONS(3261), - [anon_sym_long] = ACTIONS(3261), - [anon_sym_short] = ACTIONS(3261), - [anon_sym_LBRACK] = ACTIONS(3261), - [anon_sym_static] = ACTIONS(3261), - [anon_sym_register] = ACTIONS(3261), - [anon_sym_inline] = ACTIONS(3261), - [anon_sym___inline] = ACTIONS(3261), - [anon_sym___inline__] = ACTIONS(3261), - [anon_sym___forceinline] = ACTIONS(3261), - [anon_sym_thread_local] = ACTIONS(3261), - [anon_sym___thread] = ACTIONS(3261), - [anon_sym_const] = ACTIONS(3261), - [anon_sym_constexpr] = ACTIONS(3261), - [anon_sym_volatile] = ACTIONS(3261), - [anon_sym_restrict] = ACTIONS(3261), - [anon_sym___restrict__] = ACTIONS(3261), - [anon_sym__Atomic] = ACTIONS(3261), - [anon_sym__Noreturn] = ACTIONS(3261), - [anon_sym_noreturn] = ACTIONS(3261), - [anon_sym_mutable] = ACTIONS(3261), - [anon_sym_constinit] = ACTIONS(3261), - [anon_sym_consteval] = ACTIONS(3261), - [sym_primitive_type] = ACTIONS(3261), - [anon_sym_enum] = ACTIONS(3261), - [anon_sym_class] = ACTIONS(3261), - [anon_sym_struct] = ACTIONS(3261), - [anon_sym_union] = ACTIONS(3261), - [anon_sym_if] = ACTIONS(3261), - [anon_sym_switch] = ACTIONS(3261), - [anon_sym_case] = ACTIONS(3261), - [anon_sym_default] = ACTIONS(3261), - [anon_sym_while] = ACTIONS(3261), - [anon_sym_do] = ACTIONS(3261), - [anon_sym_for] = ACTIONS(3261), - [anon_sym_return] = ACTIONS(3261), - [anon_sym_break] = ACTIONS(3261), - [anon_sym_continue] = ACTIONS(3261), - [anon_sym_goto] = ACTIONS(3261), - [anon_sym___try] = ACTIONS(3261), - [anon_sym___leave] = ACTIONS(3261), - [anon_sym_not] = ACTIONS(3261), - [anon_sym_compl] = ACTIONS(3261), - [anon_sym_DASH_DASH] = ACTIONS(3263), - [anon_sym_PLUS_PLUS] = ACTIONS(3263), - [anon_sym_sizeof] = ACTIONS(3261), - [anon_sym___alignof__] = ACTIONS(3261), - [anon_sym___alignof] = ACTIONS(3261), - [anon_sym__alignof] = ACTIONS(3261), - [anon_sym_alignof] = ACTIONS(3261), - [anon_sym__Alignof] = ACTIONS(3261), - [anon_sym_offsetof] = ACTIONS(3261), - [anon_sym__Generic] = ACTIONS(3261), - [anon_sym_asm] = ACTIONS(3261), - [anon_sym___asm__] = ACTIONS(3261), - [sym_number_literal] = ACTIONS(3263), - [anon_sym_L_SQUOTE] = ACTIONS(3263), - [anon_sym_u_SQUOTE] = ACTIONS(3263), - [anon_sym_U_SQUOTE] = ACTIONS(3263), - [anon_sym_u8_SQUOTE] = ACTIONS(3263), - [anon_sym_SQUOTE] = ACTIONS(3263), - [anon_sym_L_DQUOTE] = ACTIONS(3263), - [anon_sym_u_DQUOTE] = ACTIONS(3263), - [anon_sym_U_DQUOTE] = ACTIONS(3263), - [anon_sym_u8_DQUOTE] = ACTIONS(3263), - [anon_sym_DQUOTE] = ACTIONS(3263), - [sym_true] = ACTIONS(3261), - [sym_false] = ACTIONS(3261), - [anon_sym_NULL] = ACTIONS(3261), - [anon_sym_nullptr] = ACTIONS(3261), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3261), - [anon_sym_decltype] = ACTIONS(3261), - [anon_sym_virtual] = ACTIONS(3261), - [anon_sym_alignas] = ACTIONS(3261), - [anon_sym_explicit] = ACTIONS(3261), - [anon_sym_typename] = ACTIONS(3261), - [anon_sym_template] = ACTIONS(3261), - [anon_sym_operator] = ACTIONS(3261), - [anon_sym_try] = ACTIONS(3261), - [anon_sym_delete] = ACTIONS(3261), - [anon_sym_throw] = ACTIONS(3261), - [anon_sym_namespace] = ACTIONS(3261), - [anon_sym_using] = ACTIONS(3261), - [anon_sym_static_assert] = ACTIONS(3261), - [anon_sym_concept] = ACTIONS(3261), - [anon_sym_co_return] = ACTIONS(3261), - [anon_sym_co_yield] = ACTIONS(3261), - [anon_sym_R_DQUOTE] = ACTIONS(3263), - [anon_sym_LR_DQUOTE] = ACTIONS(3263), - [anon_sym_uR_DQUOTE] = ACTIONS(3263), - [anon_sym_UR_DQUOTE] = ACTIONS(3263), - [anon_sym_u8R_DQUOTE] = ACTIONS(3263), - [anon_sym_co_await] = ACTIONS(3261), - [anon_sym_new] = ACTIONS(3261), - [anon_sym_requires] = ACTIONS(3261), - [sym_this] = ACTIONS(3261), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3263), - [sym_semgrep_named_ellipsis] = ACTIONS(3263), - }, - [776] = { - [sym_expression] = STATE(5097), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(5196), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [ts_builtin_sym_end] = ACTIONS(2281), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2281), - [anon_sym_COMMA] = ACTIONS(2281), - [anon_sym_RPAREN] = ACTIONS(2281), - [anon_sym_LPAREN2] = ACTIONS(2281), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2279), - [anon_sym_STAR] = ACTIONS(2281), - [anon_sym_SLASH] = ACTIONS(2279), - [anon_sym_PERCENT] = ACTIONS(2281), - [anon_sym_PIPE_PIPE] = ACTIONS(2281), - [anon_sym_AMP_AMP] = ACTIONS(2281), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_CARET] = ACTIONS(2281), - [anon_sym_AMP] = ACTIONS(2279), - [anon_sym_EQ_EQ] = ACTIONS(2281), - [anon_sym_BANG_EQ] = ACTIONS(2281), - [anon_sym_GT] = ACTIONS(2279), - [anon_sym_GT_EQ] = ACTIONS(2281), - [anon_sym_LT_EQ] = ACTIONS(2279), - [anon_sym_LT] = ACTIONS(2279), - [anon_sym_LT_LT] = ACTIONS(2281), - [anon_sym_GT_GT] = ACTIONS(2281), - [anon_sym_SEMI] = ACTIONS(2281), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_RBRACE] = ACTIONS(2281), - [anon_sym_LBRACK] = ACTIONS(2281), - [anon_sym_RBRACK] = ACTIONS(2281), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_QMARK] = ACTIONS(2281), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_LT_EQ_GT] = ACTIONS(2281), - [anon_sym_or] = ACTIONS(2279), - [anon_sym_and] = ACTIONS(2279), - [anon_sym_bitor] = ACTIONS(2279), - [anon_sym_xor] = ACTIONS(2279), - [anon_sym_bitand] = ACTIONS(2279), - [anon_sym_not_eq] = ACTIONS(2279), - [anon_sym_DASH_DASH] = ACTIONS(2281), - [anon_sym_PLUS_PLUS] = ACTIONS(2281), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(2279), - [anon_sym_DOT_STAR] = ACTIONS(2281), - [anon_sym_DASH_GT] = ACTIONS(2281), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), - }, - [777] = { - [sym_identifier] = ACTIONS(3618), - [aux_sym_preproc_include_token1] = ACTIONS(3618), - [aux_sym_preproc_def_token1] = ACTIONS(3618), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3620), - [aux_sym_preproc_if_token1] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), - [sym_preproc_directive] = ACTIONS(3618), - [anon_sym_LPAREN2] = ACTIONS(3620), - [anon_sym_BANG] = ACTIONS(3620), - [anon_sym_TILDE] = ACTIONS(3620), - [anon_sym_DASH] = ACTIONS(3618), - [anon_sym_PLUS] = ACTIONS(3618), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_AMP_AMP] = ACTIONS(3620), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_SEMI] = ACTIONS(3620), - [anon_sym___extension__] = ACTIONS(3618), - [anon_sym_typedef] = ACTIONS(3618), - [anon_sym_extern] = ACTIONS(3618), - [anon_sym___attribute__] = ACTIONS(3618), - [anon_sym_COLON_COLON] = ACTIONS(3620), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), - [anon_sym___declspec] = ACTIONS(3618), - [anon_sym___based] = ACTIONS(3618), - [anon_sym___cdecl] = ACTIONS(3618), - [anon_sym___clrcall] = ACTIONS(3618), - [anon_sym___stdcall] = ACTIONS(3618), - [anon_sym___fastcall] = ACTIONS(3618), - [anon_sym___thiscall] = ACTIONS(3618), - [anon_sym___vectorcall] = ACTIONS(3618), - [anon_sym_LBRACE] = ACTIONS(3620), - [anon_sym_RBRACE] = ACTIONS(3620), - [anon_sym_signed] = ACTIONS(3618), - [anon_sym_unsigned] = ACTIONS(3618), - [anon_sym_long] = ACTIONS(3618), - [anon_sym_short] = ACTIONS(3618), - [anon_sym_LBRACK] = ACTIONS(3618), - [anon_sym_static] = ACTIONS(3618), - [anon_sym_register] = ACTIONS(3618), - [anon_sym_inline] = ACTIONS(3618), - [anon_sym___inline] = ACTIONS(3618), - [anon_sym___inline__] = ACTIONS(3618), - [anon_sym___forceinline] = ACTIONS(3618), - [anon_sym_thread_local] = ACTIONS(3618), - [anon_sym___thread] = ACTIONS(3618), - [anon_sym_const] = ACTIONS(3618), - [anon_sym_constexpr] = ACTIONS(3618), - [anon_sym_volatile] = ACTIONS(3618), - [anon_sym_restrict] = ACTIONS(3618), - [anon_sym___restrict__] = ACTIONS(3618), - [anon_sym__Atomic] = ACTIONS(3618), - [anon_sym__Noreturn] = ACTIONS(3618), - [anon_sym_noreturn] = ACTIONS(3618), - [anon_sym_mutable] = ACTIONS(3618), - [anon_sym_constinit] = ACTIONS(3618), - [anon_sym_consteval] = ACTIONS(3618), - [sym_primitive_type] = ACTIONS(3618), - [anon_sym_enum] = ACTIONS(3618), - [anon_sym_class] = ACTIONS(3618), - [anon_sym_struct] = ACTIONS(3618), - [anon_sym_union] = ACTIONS(3618), - [anon_sym_if] = ACTIONS(3618), - [anon_sym_switch] = ACTIONS(3618), - [anon_sym_case] = ACTIONS(3618), - [anon_sym_default] = ACTIONS(3618), - [anon_sym_while] = ACTIONS(3618), - [anon_sym_do] = ACTIONS(3618), - [anon_sym_for] = ACTIONS(3618), - [anon_sym_return] = ACTIONS(3618), - [anon_sym_break] = ACTIONS(3618), - [anon_sym_continue] = ACTIONS(3618), - [anon_sym_goto] = ACTIONS(3618), - [anon_sym___try] = ACTIONS(3618), - [anon_sym___leave] = ACTIONS(3618), - [anon_sym_not] = ACTIONS(3618), - [anon_sym_compl] = ACTIONS(3618), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_sizeof] = ACTIONS(3618), - [anon_sym___alignof__] = ACTIONS(3618), - [anon_sym___alignof] = ACTIONS(3618), - [anon_sym__alignof] = ACTIONS(3618), - [anon_sym_alignof] = ACTIONS(3618), - [anon_sym__Alignof] = ACTIONS(3618), - [anon_sym_offsetof] = ACTIONS(3618), - [anon_sym__Generic] = ACTIONS(3618), - [anon_sym_asm] = ACTIONS(3618), - [anon_sym___asm__] = ACTIONS(3618), - [sym_number_literal] = ACTIONS(3620), - [anon_sym_L_SQUOTE] = ACTIONS(3620), - [anon_sym_u_SQUOTE] = ACTIONS(3620), - [anon_sym_U_SQUOTE] = ACTIONS(3620), - [anon_sym_u8_SQUOTE] = ACTIONS(3620), - [anon_sym_SQUOTE] = ACTIONS(3620), - [anon_sym_L_DQUOTE] = ACTIONS(3620), - [anon_sym_u_DQUOTE] = ACTIONS(3620), - [anon_sym_U_DQUOTE] = ACTIONS(3620), - [anon_sym_u8_DQUOTE] = ACTIONS(3620), - [anon_sym_DQUOTE] = ACTIONS(3620), - [sym_true] = ACTIONS(3618), - [sym_false] = ACTIONS(3618), - [anon_sym_NULL] = ACTIONS(3618), - [anon_sym_nullptr] = ACTIONS(3618), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3618), - [anon_sym_decltype] = ACTIONS(3618), - [anon_sym_virtual] = ACTIONS(3618), - [anon_sym_alignas] = ACTIONS(3618), - [anon_sym_explicit] = ACTIONS(3618), - [anon_sym_typename] = ACTIONS(3618), - [anon_sym_template] = ACTIONS(3618), - [anon_sym_operator] = ACTIONS(3618), - [anon_sym_try] = ACTIONS(3618), - [anon_sym_delete] = ACTIONS(3618), - [anon_sym_throw] = ACTIONS(3618), - [anon_sym_namespace] = ACTIONS(3618), - [anon_sym_using] = ACTIONS(3618), - [anon_sym_static_assert] = ACTIONS(3618), - [anon_sym_concept] = ACTIONS(3618), - [anon_sym_co_return] = ACTIONS(3618), - [anon_sym_co_yield] = ACTIONS(3618), - [anon_sym_R_DQUOTE] = ACTIONS(3620), - [anon_sym_LR_DQUOTE] = ACTIONS(3620), - [anon_sym_uR_DQUOTE] = ACTIONS(3620), - [anon_sym_UR_DQUOTE] = ACTIONS(3620), - [anon_sym_u8R_DQUOTE] = ACTIONS(3620), - [anon_sym_co_await] = ACTIONS(3618), - [anon_sym_new] = ACTIONS(3618), - [anon_sym_requires] = ACTIONS(3618), - [sym_this] = ACTIONS(3618), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3620), - [sym_semgrep_named_ellipsis] = ACTIONS(3620), - }, - [778] = { - [sym_identifier] = ACTIONS(3622), - [aux_sym_preproc_include_token1] = ACTIONS(3622), - [aux_sym_preproc_def_token1] = ACTIONS(3622), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3624), - [aux_sym_preproc_if_token1] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), - [sym_preproc_directive] = ACTIONS(3622), - [anon_sym_LPAREN2] = ACTIONS(3624), - [anon_sym_BANG] = ACTIONS(3624), - [anon_sym_TILDE] = ACTIONS(3624), - [anon_sym_DASH] = ACTIONS(3622), - [anon_sym_PLUS] = ACTIONS(3622), - [anon_sym_STAR] = ACTIONS(3624), - [anon_sym_AMP_AMP] = ACTIONS(3624), - [anon_sym_AMP] = ACTIONS(3622), - [anon_sym_SEMI] = ACTIONS(3624), - [anon_sym___extension__] = ACTIONS(3622), - [anon_sym_typedef] = ACTIONS(3622), - [anon_sym_extern] = ACTIONS(3622), - [anon_sym___attribute__] = ACTIONS(3622), - [anon_sym_COLON_COLON] = ACTIONS(3624), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), - [anon_sym___declspec] = ACTIONS(3622), - [anon_sym___based] = ACTIONS(3622), - [anon_sym___cdecl] = ACTIONS(3622), - [anon_sym___clrcall] = ACTIONS(3622), - [anon_sym___stdcall] = ACTIONS(3622), - [anon_sym___fastcall] = ACTIONS(3622), - [anon_sym___thiscall] = ACTIONS(3622), - [anon_sym___vectorcall] = ACTIONS(3622), - [anon_sym_LBRACE] = ACTIONS(3624), - [anon_sym_RBRACE] = ACTIONS(3624), - [anon_sym_signed] = ACTIONS(3622), - [anon_sym_unsigned] = ACTIONS(3622), - [anon_sym_long] = ACTIONS(3622), - [anon_sym_short] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3622), - [anon_sym_static] = ACTIONS(3622), - [anon_sym_register] = ACTIONS(3622), - [anon_sym_inline] = ACTIONS(3622), - [anon_sym___inline] = ACTIONS(3622), - [anon_sym___inline__] = ACTIONS(3622), - [anon_sym___forceinline] = ACTIONS(3622), - [anon_sym_thread_local] = ACTIONS(3622), - [anon_sym___thread] = ACTIONS(3622), - [anon_sym_const] = ACTIONS(3622), - [anon_sym_constexpr] = ACTIONS(3622), - [anon_sym_volatile] = ACTIONS(3622), - [anon_sym_restrict] = ACTIONS(3622), - [anon_sym___restrict__] = ACTIONS(3622), - [anon_sym__Atomic] = ACTIONS(3622), - [anon_sym__Noreturn] = ACTIONS(3622), - [anon_sym_noreturn] = ACTIONS(3622), - [anon_sym_mutable] = ACTIONS(3622), - [anon_sym_constinit] = ACTIONS(3622), - [anon_sym_consteval] = ACTIONS(3622), - [sym_primitive_type] = ACTIONS(3622), - [anon_sym_enum] = ACTIONS(3622), - [anon_sym_class] = ACTIONS(3622), - [anon_sym_struct] = ACTIONS(3622), - [anon_sym_union] = ACTIONS(3622), - [anon_sym_if] = ACTIONS(3622), - [anon_sym_switch] = ACTIONS(3622), - [anon_sym_case] = ACTIONS(3622), - [anon_sym_default] = ACTIONS(3622), - [anon_sym_while] = ACTIONS(3622), - [anon_sym_do] = ACTIONS(3622), - [anon_sym_for] = ACTIONS(3622), - [anon_sym_return] = ACTIONS(3622), - [anon_sym_break] = ACTIONS(3622), - [anon_sym_continue] = ACTIONS(3622), - [anon_sym_goto] = ACTIONS(3622), - [anon_sym___try] = ACTIONS(3622), - [anon_sym___leave] = ACTIONS(3622), - [anon_sym_not] = ACTIONS(3622), - [anon_sym_compl] = ACTIONS(3622), - [anon_sym_DASH_DASH] = ACTIONS(3624), - [anon_sym_PLUS_PLUS] = ACTIONS(3624), - [anon_sym_sizeof] = ACTIONS(3622), - [anon_sym___alignof__] = ACTIONS(3622), - [anon_sym___alignof] = ACTIONS(3622), - [anon_sym__alignof] = ACTIONS(3622), - [anon_sym_alignof] = ACTIONS(3622), - [anon_sym__Alignof] = ACTIONS(3622), - [anon_sym_offsetof] = ACTIONS(3622), - [anon_sym__Generic] = ACTIONS(3622), - [anon_sym_asm] = ACTIONS(3622), - [anon_sym___asm__] = ACTIONS(3622), - [sym_number_literal] = ACTIONS(3624), - [anon_sym_L_SQUOTE] = ACTIONS(3624), - [anon_sym_u_SQUOTE] = ACTIONS(3624), - [anon_sym_U_SQUOTE] = ACTIONS(3624), - [anon_sym_u8_SQUOTE] = ACTIONS(3624), - [anon_sym_SQUOTE] = ACTIONS(3624), - [anon_sym_L_DQUOTE] = ACTIONS(3624), - [anon_sym_u_DQUOTE] = ACTIONS(3624), - [anon_sym_U_DQUOTE] = ACTIONS(3624), - [anon_sym_u8_DQUOTE] = ACTIONS(3624), - [anon_sym_DQUOTE] = ACTIONS(3624), - [sym_true] = ACTIONS(3622), - [sym_false] = ACTIONS(3622), - [anon_sym_NULL] = ACTIONS(3622), - [anon_sym_nullptr] = ACTIONS(3622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3622), - [anon_sym_decltype] = ACTIONS(3622), - [anon_sym_virtual] = ACTIONS(3622), - [anon_sym_alignas] = ACTIONS(3622), - [anon_sym_explicit] = ACTIONS(3622), - [anon_sym_typename] = ACTIONS(3622), - [anon_sym_template] = ACTIONS(3622), - [anon_sym_operator] = ACTIONS(3622), - [anon_sym_try] = ACTIONS(3622), - [anon_sym_delete] = ACTIONS(3622), - [anon_sym_throw] = ACTIONS(3622), - [anon_sym_namespace] = ACTIONS(3622), - [anon_sym_using] = ACTIONS(3622), - [anon_sym_static_assert] = ACTIONS(3622), - [anon_sym_concept] = ACTIONS(3622), - [anon_sym_co_return] = ACTIONS(3622), - [anon_sym_co_yield] = ACTIONS(3622), - [anon_sym_R_DQUOTE] = ACTIONS(3624), - [anon_sym_LR_DQUOTE] = ACTIONS(3624), - [anon_sym_uR_DQUOTE] = ACTIONS(3624), - [anon_sym_UR_DQUOTE] = ACTIONS(3624), - [anon_sym_u8R_DQUOTE] = ACTIONS(3624), - [anon_sym_co_await] = ACTIONS(3622), - [anon_sym_new] = ACTIONS(3622), - [anon_sym_requires] = ACTIONS(3622), - [sym_this] = ACTIONS(3622), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3624), - [sym_semgrep_named_ellipsis] = ACTIONS(3624), - }, - [779] = { - [sym_identifier] = ACTIONS(3372), - [aux_sym_preproc_include_token1] = ACTIONS(3372), - [aux_sym_preproc_def_token1] = ACTIONS(3372), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3374), - [aux_sym_preproc_if_token1] = ACTIONS(3372), - [aux_sym_preproc_if_token2] = ACTIONS(3372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3372), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3372), - [sym_preproc_directive] = ACTIONS(3372), - [anon_sym_LPAREN2] = ACTIONS(3374), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(3374), - [anon_sym_DASH] = ACTIONS(3372), - [anon_sym_PLUS] = ACTIONS(3372), - [anon_sym_STAR] = ACTIONS(3374), - [anon_sym_AMP_AMP] = ACTIONS(3374), - [anon_sym_AMP] = ACTIONS(3372), - [anon_sym_SEMI] = ACTIONS(3374), - [anon_sym___extension__] = ACTIONS(3372), - [anon_sym_typedef] = ACTIONS(3372), - [anon_sym_extern] = ACTIONS(3372), - [anon_sym___attribute__] = ACTIONS(3372), - [anon_sym_COLON_COLON] = ACTIONS(3374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3374), - [anon_sym___declspec] = ACTIONS(3372), - [anon_sym___based] = ACTIONS(3372), - [anon_sym___cdecl] = ACTIONS(3372), - [anon_sym___clrcall] = ACTIONS(3372), - [anon_sym___stdcall] = ACTIONS(3372), - [anon_sym___fastcall] = ACTIONS(3372), - [anon_sym___thiscall] = ACTIONS(3372), - [anon_sym___vectorcall] = ACTIONS(3372), - [anon_sym_LBRACE] = ACTIONS(3374), - [anon_sym_signed] = ACTIONS(3372), - [anon_sym_unsigned] = ACTIONS(3372), - [anon_sym_long] = ACTIONS(3372), - [anon_sym_short] = ACTIONS(3372), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_static] = ACTIONS(3372), - [anon_sym_register] = ACTIONS(3372), - [anon_sym_inline] = ACTIONS(3372), - [anon_sym___inline] = ACTIONS(3372), - [anon_sym___inline__] = ACTIONS(3372), - [anon_sym___forceinline] = ACTIONS(3372), - [anon_sym_thread_local] = ACTIONS(3372), - [anon_sym___thread] = ACTIONS(3372), - [anon_sym_const] = ACTIONS(3372), - [anon_sym_constexpr] = ACTIONS(3372), - [anon_sym_volatile] = ACTIONS(3372), - [anon_sym_restrict] = ACTIONS(3372), - [anon_sym___restrict__] = ACTIONS(3372), - [anon_sym__Atomic] = ACTIONS(3372), - [anon_sym__Noreturn] = ACTIONS(3372), - [anon_sym_noreturn] = ACTIONS(3372), - [anon_sym_mutable] = ACTIONS(3372), - [anon_sym_constinit] = ACTIONS(3372), - [anon_sym_consteval] = ACTIONS(3372), - [sym_primitive_type] = ACTIONS(3372), - [anon_sym_enum] = ACTIONS(3372), - [anon_sym_class] = ACTIONS(3372), - [anon_sym_struct] = ACTIONS(3372), - [anon_sym_union] = ACTIONS(3372), - [anon_sym_if] = ACTIONS(3372), - [anon_sym_switch] = ACTIONS(3372), - [anon_sym_case] = ACTIONS(3372), - [anon_sym_default] = ACTIONS(3372), - [anon_sym_while] = ACTIONS(3372), - [anon_sym_do] = ACTIONS(3372), - [anon_sym_for] = ACTIONS(3372), - [anon_sym_return] = ACTIONS(3372), - [anon_sym_break] = ACTIONS(3372), - [anon_sym_continue] = ACTIONS(3372), - [anon_sym_goto] = ACTIONS(3372), - [anon_sym___try] = ACTIONS(3372), - [anon_sym___leave] = ACTIONS(3372), - [anon_sym_not] = ACTIONS(3372), - [anon_sym_compl] = ACTIONS(3372), - [anon_sym_DASH_DASH] = ACTIONS(3374), - [anon_sym_PLUS_PLUS] = ACTIONS(3374), - [anon_sym_sizeof] = ACTIONS(3372), - [anon_sym___alignof__] = ACTIONS(3372), - [anon_sym___alignof] = ACTIONS(3372), - [anon_sym__alignof] = ACTIONS(3372), - [anon_sym_alignof] = ACTIONS(3372), - [anon_sym__Alignof] = ACTIONS(3372), - [anon_sym_offsetof] = ACTIONS(3372), - [anon_sym__Generic] = ACTIONS(3372), - [anon_sym_asm] = ACTIONS(3372), - [anon_sym___asm__] = ACTIONS(3372), - [sym_number_literal] = ACTIONS(3374), - [anon_sym_L_SQUOTE] = ACTIONS(3374), - [anon_sym_u_SQUOTE] = ACTIONS(3374), - [anon_sym_U_SQUOTE] = ACTIONS(3374), - [anon_sym_u8_SQUOTE] = ACTIONS(3374), - [anon_sym_SQUOTE] = ACTIONS(3374), - [anon_sym_L_DQUOTE] = ACTIONS(3374), - [anon_sym_u_DQUOTE] = ACTIONS(3374), - [anon_sym_U_DQUOTE] = ACTIONS(3374), - [anon_sym_u8_DQUOTE] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(3374), - [sym_true] = ACTIONS(3372), - [sym_false] = ACTIONS(3372), - [anon_sym_NULL] = ACTIONS(3372), - [anon_sym_nullptr] = ACTIONS(3372), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3372), - [anon_sym_decltype] = ACTIONS(3372), - [anon_sym_virtual] = ACTIONS(3372), - [anon_sym_alignas] = ACTIONS(3372), - [anon_sym_explicit] = ACTIONS(3372), - [anon_sym_typename] = ACTIONS(3372), - [anon_sym_template] = ACTIONS(3372), - [anon_sym_operator] = ACTIONS(3372), - [anon_sym_try] = ACTIONS(3372), - [anon_sym_delete] = ACTIONS(3372), - [anon_sym_throw] = ACTIONS(3372), - [anon_sym_namespace] = ACTIONS(3372), - [anon_sym_using] = ACTIONS(3372), - [anon_sym_static_assert] = ACTIONS(3372), - [anon_sym_concept] = ACTIONS(3372), - [anon_sym_co_return] = ACTIONS(3372), - [anon_sym_co_yield] = ACTIONS(3372), - [anon_sym_R_DQUOTE] = ACTIONS(3374), - [anon_sym_LR_DQUOTE] = ACTIONS(3374), - [anon_sym_uR_DQUOTE] = ACTIONS(3374), - [anon_sym_UR_DQUOTE] = ACTIONS(3374), - [anon_sym_u8R_DQUOTE] = ACTIONS(3374), - [anon_sym_co_await] = ACTIONS(3372), - [anon_sym_new] = ACTIONS(3372), - [anon_sym_requires] = ACTIONS(3372), - [sym_this] = ACTIONS(3372), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3374), - [sym_semgrep_named_ellipsis] = ACTIONS(3374), - }, - [780] = { - [sym_identifier] = ACTIONS(3644), - [aux_sym_preproc_include_token1] = ACTIONS(3644), - [aux_sym_preproc_def_token1] = ACTIONS(3644), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3646), - [aux_sym_preproc_if_token1] = ACTIONS(3644), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3644), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3644), - [sym_preproc_directive] = ACTIONS(3644), - [anon_sym_LPAREN2] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3646), - [anon_sym_TILDE] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3644), - [anon_sym_PLUS] = ACTIONS(3644), - [anon_sym_STAR] = ACTIONS(3646), - [anon_sym_AMP_AMP] = ACTIONS(3646), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_SEMI] = ACTIONS(3646), - [anon_sym___extension__] = ACTIONS(3644), - [anon_sym_typedef] = ACTIONS(3644), - [anon_sym_extern] = ACTIONS(3644), - [anon_sym___attribute__] = ACTIONS(3644), - [anon_sym_COLON_COLON] = ACTIONS(3646), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3646), - [anon_sym___declspec] = ACTIONS(3644), - [anon_sym___based] = ACTIONS(3644), - [anon_sym___cdecl] = ACTIONS(3644), - [anon_sym___clrcall] = ACTIONS(3644), - [anon_sym___stdcall] = ACTIONS(3644), - [anon_sym___fastcall] = ACTIONS(3644), - [anon_sym___thiscall] = ACTIONS(3644), - [anon_sym___vectorcall] = ACTIONS(3644), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_RBRACE] = ACTIONS(3646), - [anon_sym_signed] = ACTIONS(3644), - [anon_sym_unsigned] = ACTIONS(3644), - [anon_sym_long] = ACTIONS(3644), - [anon_sym_short] = ACTIONS(3644), - [anon_sym_LBRACK] = ACTIONS(3644), - [anon_sym_static] = ACTIONS(3644), - [anon_sym_register] = ACTIONS(3644), - [anon_sym_inline] = ACTIONS(3644), - [anon_sym___inline] = ACTIONS(3644), - [anon_sym___inline__] = ACTIONS(3644), - [anon_sym___forceinline] = ACTIONS(3644), - [anon_sym_thread_local] = ACTIONS(3644), - [anon_sym___thread] = ACTIONS(3644), - [anon_sym_const] = ACTIONS(3644), - [anon_sym_constexpr] = ACTIONS(3644), - [anon_sym_volatile] = ACTIONS(3644), - [anon_sym_restrict] = ACTIONS(3644), - [anon_sym___restrict__] = ACTIONS(3644), - [anon_sym__Atomic] = ACTIONS(3644), - [anon_sym__Noreturn] = ACTIONS(3644), - [anon_sym_noreturn] = ACTIONS(3644), - [anon_sym_mutable] = ACTIONS(3644), - [anon_sym_constinit] = ACTIONS(3644), - [anon_sym_consteval] = ACTIONS(3644), - [sym_primitive_type] = ACTIONS(3644), - [anon_sym_enum] = ACTIONS(3644), - [anon_sym_class] = ACTIONS(3644), - [anon_sym_struct] = ACTIONS(3644), - [anon_sym_union] = ACTIONS(3644), - [anon_sym_if] = ACTIONS(3644), - [anon_sym_switch] = ACTIONS(3644), - [anon_sym_case] = ACTIONS(3644), - [anon_sym_default] = ACTIONS(3644), - [anon_sym_while] = ACTIONS(3644), - [anon_sym_do] = ACTIONS(3644), - [anon_sym_for] = ACTIONS(3644), - [anon_sym_return] = ACTIONS(3644), - [anon_sym_break] = ACTIONS(3644), - [anon_sym_continue] = ACTIONS(3644), - [anon_sym_goto] = ACTIONS(3644), - [anon_sym___try] = ACTIONS(3644), - [anon_sym___leave] = ACTIONS(3644), - [anon_sym_not] = ACTIONS(3644), - [anon_sym_compl] = ACTIONS(3644), - [anon_sym_DASH_DASH] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3646), - [anon_sym_sizeof] = ACTIONS(3644), - [anon_sym___alignof__] = ACTIONS(3644), - [anon_sym___alignof] = ACTIONS(3644), - [anon_sym__alignof] = ACTIONS(3644), - [anon_sym_alignof] = ACTIONS(3644), - [anon_sym__Alignof] = ACTIONS(3644), - [anon_sym_offsetof] = ACTIONS(3644), - [anon_sym__Generic] = ACTIONS(3644), - [anon_sym_asm] = ACTIONS(3644), - [anon_sym___asm__] = ACTIONS(3644), - [sym_number_literal] = ACTIONS(3646), - [anon_sym_L_SQUOTE] = ACTIONS(3646), - [anon_sym_u_SQUOTE] = ACTIONS(3646), - [anon_sym_U_SQUOTE] = ACTIONS(3646), - [anon_sym_u8_SQUOTE] = ACTIONS(3646), - [anon_sym_SQUOTE] = ACTIONS(3646), - [anon_sym_L_DQUOTE] = ACTIONS(3646), - [anon_sym_u_DQUOTE] = ACTIONS(3646), - [anon_sym_U_DQUOTE] = ACTIONS(3646), - [anon_sym_u8_DQUOTE] = ACTIONS(3646), - [anon_sym_DQUOTE] = ACTIONS(3646), - [sym_true] = ACTIONS(3644), - [sym_false] = ACTIONS(3644), - [anon_sym_NULL] = ACTIONS(3644), - [anon_sym_nullptr] = ACTIONS(3644), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3644), - [anon_sym_decltype] = ACTIONS(3644), - [anon_sym_virtual] = ACTIONS(3644), - [anon_sym_alignas] = ACTIONS(3644), - [anon_sym_explicit] = ACTIONS(3644), - [anon_sym_typename] = ACTIONS(3644), - [anon_sym_template] = ACTIONS(3644), - [anon_sym_operator] = ACTIONS(3644), - [anon_sym_try] = ACTIONS(3644), - [anon_sym_delete] = ACTIONS(3644), - [anon_sym_throw] = ACTIONS(3644), - [anon_sym_namespace] = ACTIONS(3644), - [anon_sym_using] = ACTIONS(3644), - [anon_sym_static_assert] = ACTIONS(3644), - [anon_sym_concept] = ACTIONS(3644), - [anon_sym_co_return] = ACTIONS(3644), - [anon_sym_co_yield] = ACTIONS(3644), - [anon_sym_R_DQUOTE] = ACTIONS(3646), - [anon_sym_LR_DQUOTE] = ACTIONS(3646), - [anon_sym_uR_DQUOTE] = ACTIONS(3646), - [anon_sym_UR_DQUOTE] = ACTIONS(3646), - [anon_sym_u8R_DQUOTE] = ACTIONS(3646), - [anon_sym_co_await] = ACTIONS(3644), - [anon_sym_new] = ACTIONS(3644), - [anon_sym_requires] = ACTIONS(3644), - [sym_this] = ACTIONS(3644), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3646), - [sym_semgrep_named_ellipsis] = ACTIONS(3646), - }, - [781] = { - [sym_identifier] = ACTIONS(3376), - [aux_sym_preproc_include_token1] = ACTIONS(3376), - [aux_sym_preproc_def_token1] = ACTIONS(3376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3378), - [aux_sym_preproc_if_token1] = ACTIONS(3376), - [aux_sym_preproc_if_token2] = ACTIONS(3376), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3376), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3376), - [sym_preproc_directive] = ACTIONS(3376), - [anon_sym_LPAREN2] = ACTIONS(3378), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(3378), - [anon_sym_DASH] = ACTIONS(3376), - [anon_sym_PLUS] = ACTIONS(3376), - [anon_sym_STAR] = ACTIONS(3378), - [anon_sym_AMP_AMP] = ACTIONS(3378), - [anon_sym_AMP] = ACTIONS(3376), - [anon_sym_SEMI] = ACTIONS(3378), - [anon_sym___extension__] = ACTIONS(3376), - [anon_sym_typedef] = ACTIONS(3376), - [anon_sym_extern] = ACTIONS(3376), - [anon_sym___attribute__] = ACTIONS(3376), - [anon_sym_COLON_COLON] = ACTIONS(3378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3378), - [anon_sym___declspec] = ACTIONS(3376), - [anon_sym___based] = ACTIONS(3376), - [anon_sym___cdecl] = ACTIONS(3376), - [anon_sym___clrcall] = ACTIONS(3376), - [anon_sym___stdcall] = ACTIONS(3376), - [anon_sym___fastcall] = ACTIONS(3376), - [anon_sym___thiscall] = ACTIONS(3376), - [anon_sym___vectorcall] = ACTIONS(3376), - [anon_sym_LBRACE] = ACTIONS(3378), - [anon_sym_signed] = ACTIONS(3376), - [anon_sym_unsigned] = ACTIONS(3376), - [anon_sym_long] = ACTIONS(3376), - [anon_sym_short] = ACTIONS(3376), - [anon_sym_LBRACK] = ACTIONS(3376), - [anon_sym_static] = ACTIONS(3376), - [anon_sym_register] = ACTIONS(3376), - [anon_sym_inline] = ACTIONS(3376), - [anon_sym___inline] = ACTIONS(3376), - [anon_sym___inline__] = ACTIONS(3376), - [anon_sym___forceinline] = ACTIONS(3376), - [anon_sym_thread_local] = ACTIONS(3376), - [anon_sym___thread] = ACTIONS(3376), - [anon_sym_const] = ACTIONS(3376), - [anon_sym_constexpr] = ACTIONS(3376), - [anon_sym_volatile] = ACTIONS(3376), - [anon_sym_restrict] = ACTIONS(3376), - [anon_sym___restrict__] = ACTIONS(3376), - [anon_sym__Atomic] = ACTIONS(3376), - [anon_sym__Noreturn] = ACTIONS(3376), - [anon_sym_noreturn] = ACTIONS(3376), - [anon_sym_mutable] = ACTIONS(3376), - [anon_sym_constinit] = ACTIONS(3376), - [anon_sym_consteval] = ACTIONS(3376), - [sym_primitive_type] = ACTIONS(3376), - [anon_sym_enum] = ACTIONS(3376), - [anon_sym_class] = ACTIONS(3376), - [anon_sym_struct] = ACTIONS(3376), - [anon_sym_union] = ACTIONS(3376), - [anon_sym_if] = ACTIONS(3376), - [anon_sym_switch] = ACTIONS(3376), - [anon_sym_case] = ACTIONS(3376), - [anon_sym_default] = ACTIONS(3376), - [anon_sym_while] = ACTIONS(3376), - [anon_sym_do] = ACTIONS(3376), - [anon_sym_for] = ACTIONS(3376), - [anon_sym_return] = ACTIONS(3376), - [anon_sym_break] = ACTIONS(3376), - [anon_sym_continue] = ACTIONS(3376), - [anon_sym_goto] = ACTIONS(3376), - [anon_sym___try] = ACTIONS(3376), - [anon_sym___leave] = ACTIONS(3376), - [anon_sym_not] = ACTIONS(3376), - [anon_sym_compl] = ACTIONS(3376), - [anon_sym_DASH_DASH] = ACTIONS(3378), - [anon_sym_PLUS_PLUS] = ACTIONS(3378), - [anon_sym_sizeof] = ACTIONS(3376), - [anon_sym___alignof__] = ACTIONS(3376), - [anon_sym___alignof] = ACTIONS(3376), - [anon_sym__alignof] = ACTIONS(3376), - [anon_sym_alignof] = ACTIONS(3376), - [anon_sym__Alignof] = ACTIONS(3376), - [anon_sym_offsetof] = ACTIONS(3376), - [anon_sym__Generic] = ACTIONS(3376), - [anon_sym_asm] = ACTIONS(3376), - [anon_sym___asm__] = ACTIONS(3376), - [sym_number_literal] = ACTIONS(3378), - [anon_sym_L_SQUOTE] = ACTIONS(3378), - [anon_sym_u_SQUOTE] = ACTIONS(3378), - [anon_sym_U_SQUOTE] = ACTIONS(3378), - [anon_sym_u8_SQUOTE] = ACTIONS(3378), - [anon_sym_SQUOTE] = ACTIONS(3378), - [anon_sym_L_DQUOTE] = ACTIONS(3378), - [anon_sym_u_DQUOTE] = ACTIONS(3378), - [anon_sym_U_DQUOTE] = ACTIONS(3378), - [anon_sym_u8_DQUOTE] = ACTIONS(3378), - [anon_sym_DQUOTE] = ACTIONS(3378), - [sym_true] = ACTIONS(3376), - [sym_false] = ACTIONS(3376), - [anon_sym_NULL] = ACTIONS(3376), - [anon_sym_nullptr] = ACTIONS(3376), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3376), - [anon_sym_decltype] = ACTIONS(3376), - [anon_sym_virtual] = ACTIONS(3376), - [anon_sym_alignas] = ACTIONS(3376), - [anon_sym_explicit] = ACTIONS(3376), - [anon_sym_typename] = ACTIONS(3376), - [anon_sym_template] = ACTIONS(3376), - [anon_sym_operator] = ACTIONS(3376), - [anon_sym_try] = ACTIONS(3376), - [anon_sym_delete] = ACTIONS(3376), - [anon_sym_throw] = ACTIONS(3376), - [anon_sym_namespace] = ACTIONS(3376), - [anon_sym_using] = ACTIONS(3376), - [anon_sym_static_assert] = ACTIONS(3376), - [anon_sym_concept] = ACTIONS(3376), - [anon_sym_co_return] = ACTIONS(3376), - [anon_sym_co_yield] = ACTIONS(3376), - [anon_sym_R_DQUOTE] = ACTIONS(3378), - [anon_sym_LR_DQUOTE] = ACTIONS(3378), - [anon_sym_uR_DQUOTE] = ACTIONS(3378), - [anon_sym_UR_DQUOTE] = ACTIONS(3378), - [anon_sym_u8R_DQUOTE] = ACTIONS(3378), - [anon_sym_co_await] = ACTIONS(3376), - [anon_sym_new] = ACTIONS(3376), - [anon_sym_requires] = ACTIONS(3376), - [sym_this] = ACTIONS(3376), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3378), - [sym_semgrep_named_ellipsis] = ACTIONS(3378), - }, - [782] = { - [sym_identifier] = ACTIONS(3380), - [aux_sym_preproc_include_token1] = ACTIONS(3380), - [aux_sym_preproc_def_token1] = ACTIONS(3380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3382), - [aux_sym_preproc_if_token1] = ACTIONS(3380), - [aux_sym_preproc_if_token2] = ACTIONS(3380), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3380), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3380), - [sym_preproc_directive] = ACTIONS(3380), - [anon_sym_LPAREN2] = ACTIONS(3382), - [anon_sym_BANG] = ACTIONS(3382), - [anon_sym_TILDE] = ACTIONS(3382), - [anon_sym_DASH] = ACTIONS(3380), - [anon_sym_PLUS] = ACTIONS(3380), - [anon_sym_STAR] = ACTIONS(3382), - [anon_sym_AMP_AMP] = ACTIONS(3382), - [anon_sym_AMP] = ACTIONS(3380), - [anon_sym_SEMI] = ACTIONS(3382), - [anon_sym___extension__] = ACTIONS(3380), - [anon_sym_typedef] = ACTIONS(3380), - [anon_sym_extern] = ACTIONS(3380), - [anon_sym___attribute__] = ACTIONS(3380), - [anon_sym_COLON_COLON] = ACTIONS(3382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3382), - [anon_sym___declspec] = ACTIONS(3380), - [anon_sym___based] = ACTIONS(3380), - [anon_sym___cdecl] = ACTIONS(3380), - [anon_sym___clrcall] = ACTIONS(3380), - [anon_sym___stdcall] = ACTIONS(3380), - [anon_sym___fastcall] = ACTIONS(3380), - [anon_sym___thiscall] = ACTIONS(3380), - [anon_sym___vectorcall] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(3382), - [anon_sym_signed] = ACTIONS(3380), - [anon_sym_unsigned] = ACTIONS(3380), - [anon_sym_long] = ACTIONS(3380), - [anon_sym_short] = ACTIONS(3380), - [anon_sym_LBRACK] = ACTIONS(3380), - [anon_sym_static] = ACTIONS(3380), - [anon_sym_register] = ACTIONS(3380), - [anon_sym_inline] = ACTIONS(3380), - [anon_sym___inline] = ACTIONS(3380), - [anon_sym___inline__] = ACTIONS(3380), - [anon_sym___forceinline] = ACTIONS(3380), - [anon_sym_thread_local] = ACTIONS(3380), - [anon_sym___thread] = ACTIONS(3380), - [anon_sym_const] = ACTIONS(3380), - [anon_sym_constexpr] = ACTIONS(3380), - [anon_sym_volatile] = ACTIONS(3380), - [anon_sym_restrict] = ACTIONS(3380), - [anon_sym___restrict__] = ACTIONS(3380), - [anon_sym__Atomic] = ACTIONS(3380), - [anon_sym__Noreturn] = ACTIONS(3380), - [anon_sym_noreturn] = ACTIONS(3380), - [anon_sym_mutable] = ACTIONS(3380), - [anon_sym_constinit] = ACTIONS(3380), - [anon_sym_consteval] = ACTIONS(3380), - [sym_primitive_type] = ACTIONS(3380), - [anon_sym_enum] = ACTIONS(3380), - [anon_sym_class] = ACTIONS(3380), - [anon_sym_struct] = ACTIONS(3380), - [anon_sym_union] = ACTIONS(3380), - [anon_sym_if] = ACTIONS(3380), - [anon_sym_switch] = ACTIONS(3380), - [anon_sym_case] = ACTIONS(3380), - [anon_sym_default] = ACTIONS(3380), - [anon_sym_while] = ACTIONS(3380), - [anon_sym_do] = ACTIONS(3380), - [anon_sym_for] = ACTIONS(3380), - [anon_sym_return] = ACTIONS(3380), - [anon_sym_break] = ACTIONS(3380), - [anon_sym_continue] = ACTIONS(3380), - [anon_sym_goto] = ACTIONS(3380), - [anon_sym___try] = ACTIONS(3380), - [anon_sym___leave] = ACTIONS(3380), - [anon_sym_not] = ACTIONS(3380), - [anon_sym_compl] = ACTIONS(3380), - [anon_sym_DASH_DASH] = ACTIONS(3382), - [anon_sym_PLUS_PLUS] = ACTIONS(3382), - [anon_sym_sizeof] = ACTIONS(3380), - [anon_sym___alignof__] = ACTIONS(3380), - [anon_sym___alignof] = ACTIONS(3380), - [anon_sym__alignof] = ACTIONS(3380), - [anon_sym_alignof] = ACTIONS(3380), - [anon_sym__Alignof] = ACTIONS(3380), - [anon_sym_offsetof] = ACTIONS(3380), - [anon_sym__Generic] = ACTIONS(3380), - [anon_sym_asm] = ACTIONS(3380), - [anon_sym___asm__] = ACTIONS(3380), - [sym_number_literal] = ACTIONS(3382), - [anon_sym_L_SQUOTE] = ACTIONS(3382), - [anon_sym_u_SQUOTE] = ACTIONS(3382), - [anon_sym_U_SQUOTE] = ACTIONS(3382), - [anon_sym_u8_SQUOTE] = ACTIONS(3382), - [anon_sym_SQUOTE] = ACTIONS(3382), - [anon_sym_L_DQUOTE] = ACTIONS(3382), - [anon_sym_u_DQUOTE] = ACTIONS(3382), - [anon_sym_U_DQUOTE] = ACTIONS(3382), - [anon_sym_u8_DQUOTE] = ACTIONS(3382), - [anon_sym_DQUOTE] = ACTIONS(3382), - [sym_true] = ACTIONS(3380), - [sym_false] = ACTIONS(3380), - [anon_sym_NULL] = ACTIONS(3380), - [anon_sym_nullptr] = ACTIONS(3380), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3380), - [anon_sym_decltype] = ACTIONS(3380), - [anon_sym_virtual] = ACTIONS(3380), - [anon_sym_alignas] = ACTIONS(3380), - [anon_sym_explicit] = ACTIONS(3380), - [anon_sym_typename] = ACTIONS(3380), - [anon_sym_template] = ACTIONS(3380), - [anon_sym_operator] = ACTIONS(3380), - [anon_sym_try] = ACTIONS(3380), - [anon_sym_delete] = ACTIONS(3380), - [anon_sym_throw] = ACTIONS(3380), - [anon_sym_namespace] = ACTIONS(3380), - [anon_sym_using] = ACTIONS(3380), - [anon_sym_static_assert] = ACTIONS(3380), - [anon_sym_concept] = ACTIONS(3380), - [anon_sym_co_return] = ACTIONS(3380), - [anon_sym_co_yield] = ACTIONS(3380), - [anon_sym_R_DQUOTE] = ACTIONS(3382), - [anon_sym_LR_DQUOTE] = ACTIONS(3382), - [anon_sym_uR_DQUOTE] = ACTIONS(3382), - [anon_sym_UR_DQUOTE] = ACTIONS(3382), - [anon_sym_u8R_DQUOTE] = ACTIONS(3382), - [anon_sym_co_await] = ACTIONS(3380), - [anon_sym_new] = ACTIONS(3380), - [anon_sym_requires] = ACTIONS(3380), - [sym_this] = ACTIONS(3380), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3382), - [sym_semgrep_named_ellipsis] = ACTIONS(3382), - }, - [783] = { [sym_identifier] = ACTIONS(3384), [aux_sym_preproc_include_token1] = ACTIONS(3384), [aux_sym_preproc_def_token1] = ACTIONS(3384), @@ -173297,2302 +162244,2167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3386), [sym_semgrep_named_ellipsis] = ACTIONS(3386), }, + [775] = { + [sym_identifier] = ACTIONS(3581), + [aux_sym_preproc_include_token1] = ACTIONS(3581), + [aux_sym_preproc_def_token1] = ACTIONS(3581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3583), + [aux_sym_preproc_if_token1] = ACTIONS(3581), + [aux_sym_preproc_if_token2] = ACTIONS(3581), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3581), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3581), + [sym_preproc_directive] = ACTIONS(3581), + [anon_sym_LPAREN2] = ACTIONS(3583), + [anon_sym_BANG] = ACTIONS(3583), + [anon_sym_TILDE] = ACTIONS(3583), + [anon_sym_DASH] = ACTIONS(3581), + [anon_sym_PLUS] = ACTIONS(3581), + [anon_sym_STAR] = ACTIONS(3583), + [anon_sym_AMP_AMP] = ACTIONS(3583), + [anon_sym_AMP] = ACTIONS(3581), + [anon_sym_SEMI] = ACTIONS(3583), + [anon_sym___extension__] = ACTIONS(3581), + [anon_sym_typedef] = ACTIONS(3581), + [anon_sym_extern] = ACTIONS(3581), + [anon_sym___attribute__] = ACTIONS(3581), + [anon_sym_COLON_COLON] = ACTIONS(3583), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3583), + [anon_sym___declspec] = ACTIONS(3581), + [anon_sym___based] = ACTIONS(3581), + [anon_sym___cdecl] = ACTIONS(3581), + [anon_sym___clrcall] = ACTIONS(3581), + [anon_sym___stdcall] = ACTIONS(3581), + [anon_sym___fastcall] = ACTIONS(3581), + [anon_sym___thiscall] = ACTIONS(3581), + [anon_sym___vectorcall] = ACTIONS(3581), + [anon_sym_LBRACE] = ACTIONS(3583), + [anon_sym_signed] = ACTIONS(3581), + [anon_sym_unsigned] = ACTIONS(3581), + [anon_sym_long] = ACTIONS(3581), + [anon_sym_short] = ACTIONS(3581), + [anon_sym_LBRACK] = ACTIONS(3581), + [anon_sym_static] = ACTIONS(3581), + [anon_sym_register] = ACTIONS(3581), + [anon_sym_inline] = ACTIONS(3581), + [anon_sym___inline] = ACTIONS(3581), + [anon_sym___inline__] = ACTIONS(3581), + [anon_sym___forceinline] = ACTIONS(3581), + [anon_sym_thread_local] = ACTIONS(3581), + [anon_sym___thread] = ACTIONS(3581), + [anon_sym_const] = ACTIONS(3581), + [anon_sym_constexpr] = ACTIONS(3581), + [anon_sym_volatile] = ACTIONS(3581), + [anon_sym_restrict] = ACTIONS(3581), + [anon_sym___restrict__] = ACTIONS(3581), + [anon_sym__Atomic] = ACTIONS(3581), + [anon_sym__Noreturn] = ACTIONS(3581), + [anon_sym_noreturn] = ACTIONS(3581), + [anon_sym_mutable] = ACTIONS(3581), + [anon_sym_constinit] = ACTIONS(3581), + [anon_sym_consteval] = ACTIONS(3581), + [sym_primitive_type] = ACTIONS(3581), + [anon_sym_enum] = ACTIONS(3581), + [anon_sym_class] = ACTIONS(3581), + [anon_sym_struct] = ACTIONS(3581), + [anon_sym_union] = ACTIONS(3581), + [anon_sym_if] = ACTIONS(3581), + [anon_sym_switch] = ACTIONS(3581), + [anon_sym_case] = ACTIONS(3581), + [anon_sym_default] = ACTIONS(3581), + [anon_sym_while] = ACTIONS(3581), + [anon_sym_do] = ACTIONS(3581), + [anon_sym_for] = ACTIONS(3581), + [anon_sym_return] = ACTIONS(3581), + [anon_sym_break] = ACTIONS(3581), + [anon_sym_continue] = ACTIONS(3581), + [anon_sym_goto] = ACTIONS(3581), + [anon_sym___try] = ACTIONS(3581), + [anon_sym___leave] = ACTIONS(3581), + [anon_sym_not] = ACTIONS(3581), + [anon_sym_compl] = ACTIONS(3581), + [anon_sym_DASH_DASH] = ACTIONS(3583), + [anon_sym_PLUS_PLUS] = ACTIONS(3583), + [anon_sym_sizeof] = ACTIONS(3581), + [anon_sym___alignof__] = ACTIONS(3581), + [anon_sym___alignof] = ACTIONS(3581), + [anon_sym__alignof] = ACTIONS(3581), + [anon_sym_alignof] = ACTIONS(3581), + [anon_sym__Alignof] = ACTIONS(3581), + [anon_sym_offsetof] = ACTIONS(3581), + [anon_sym__Generic] = ACTIONS(3581), + [anon_sym_asm] = ACTIONS(3581), + [anon_sym___asm__] = ACTIONS(3581), + [sym_number_literal] = ACTIONS(3583), + [anon_sym_L_SQUOTE] = ACTIONS(3583), + [anon_sym_u_SQUOTE] = ACTIONS(3583), + [anon_sym_U_SQUOTE] = ACTIONS(3583), + [anon_sym_u8_SQUOTE] = ACTIONS(3583), + [anon_sym_SQUOTE] = ACTIONS(3583), + [anon_sym_L_DQUOTE] = ACTIONS(3583), + [anon_sym_u_DQUOTE] = ACTIONS(3583), + [anon_sym_U_DQUOTE] = ACTIONS(3583), + [anon_sym_u8_DQUOTE] = ACTIONS(3583), + [anon_sym_DQUOTE] = ACTIONS(3583), + [sym_true] = ACTIONS(3581), + [sym_false] = ACTIONS(3581), + [anon_sym_NULL] = ACTIONS(3581), + [anon_sym_nullptr] = ACTIONS(3581), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3581), + [anon_sym_decltype] = ACTIONS(3581), + [anon_sym_virtual] = ACTIONS(3581), + [anon_sym_alignas] = ACTIONS(3581), + [anon_sym_explicit] = ACTIONS(3581), + [anon_sym_typename] = ACTIONS(3581), + [anon_sym_template] = ACTIONS(3581), + [anon_sym_operator] = ACTIONS(3581), + [anon_sym_try] = ACTIONS(3581), + [anon_sym_delete] = ACTIONS(3581), + [anon_sym_throw] = ACTIONS(3581), + [anon_sym_namespace] = ACTIONS(3581), + [anon_sym_using] = ACTIONS(3581), + [anon_sym_static_assert] = ACTIONS(3581), + [anon_sym_concept] = ACTIONS(3581), + [anon_sym_co_return] = ACTIONS(3581), + [anon_sym_co_yield] = ACTIONS(3581), + [anon_sym_R_DQUOTE] = ACTIONS(3583), + [anon_sym_LR_DQUOTE] = ACTIONS(3583), + [anon_sym_uR_DQUOTE] = ACTIONS(3583), + [anon_sym_UR_DQUOTE] = ACTIONS(3583), + [anon_sym_u8R_DQUOTE] = ACTIONS(3583), + [anon_sym_co_await] = ACTIONS(3581), + [anon_sym_new] = ACTIONS(3581), + [anon_sym_requires] = ACTIONS(3581), + [sym_this] = ACTIONS(3581), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3583), + [sym_semgrep_named_ellipsis] = ACTIONS(3583), + }, + [776] = { + [sym_identifier] = ACTIONS(3555), + [aux_sym_preproc_include_token1] = ACTIONS(3555), + [aux_sym_preproc_def_token1] = ACTIONS(3555), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3557), + [aux_sym_preproc_if_token1] = ACTIONS(3555), + [aux_sym_preproc_if_token2] = ACTIONS(3555), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3555), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3555), + [sym_preproc_directive] = ACTIONS(3555), + [anon_sym_LPAREN2] = ACTIONS(3557), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3557), + [anon_sym_DASH] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3555), + [anon_sym_STAR] = ACTIONS(3557), + [anon_sym_AMP_AMP] = ACTIONS(3557), + [anon_sym_AMP] = ACTIONS(3555), + [anon_sym_SEMI] = ACTIONS(3557), + [anon_sym___extension__] = ACTIONS(3555), + [anon_sym_typedef] = ACTIONS(3555), + [anon_sym_extern] = ACTIONS(3555), + [anon_sym___attribute__] = ACTIONS(3555), + [anon_sym_COLON_COLON] = ACTIONS(3557), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3557), + [anon_sym___declspec] = ACTIONS(3555), + [anon_sym___based] = ACTIONS(3555), + [anon_sym___cdecl] = ACTIONS(3555), + [anon_sym___clrcall] = ACTIONS(3555), + [anon_sym___stdcall] = ACTIONS(3555), + [anon_sym___fastcall] = ACTIONS(3555), + [anon_sym___thiscall] = ACTIONS(3555), + [anon_sym___vectorcall] = ACTIONS(3555), + [anon_sym_LBRACE] = ACTIONS(3557), + [anon_sym_signed] = ACTIONS(3555), + [anon_sym_unsigned] = ACTIONS(3555), + [anon_sym_long] = ACTIONS(3555), + [anon_sym_short] = ACTIONS(3555), + [anon_sym_LBRACK] = ACTIONS(3555), + [anon_sym_static] = ACTIONS(3555), + [anon_sym_register] = ACTIONS(3555), + [anon_sym_inline] = ACTIONS(3555), + [anon_sym___inline] = ACTIONS(3555), + [anon_sym___inline__] = ACTIONS(3555), + [anon_sym___forceinline] = ACTIONS(3555), + [anon_sym_thread_local] = ACTIONS(3555), + [anon_sym___thread] = ACTIONS(3555), + [anon_sym_const] = ACTIONS(3555), + [anon_sym_constexpr] = ACTIONS(3555), + [anon_sym_volatile] = ACTIONS(3555), + [anon_sym_restrict] = ACTIONS(3555), + [anon_sym___restrict__] = ACTIONS(3555), + [anon_sym__Atomic] = ACTIONS(3555), + [anon_sym__Noreturn] = ACTIONS(3555), + [anon_sym_noreturn] = ACTIONS(3555), + [anon_sym_mutable] = ACTIONS(3555), + [anon_sym_constinit] = ACTIONS(3555), + [anon_sym_consteval] = ACTIONS(3555), + [sym_primitive_type] = ACTIONS(3555), + [anon_sym_enum] = ACTIONS(3555), + [anon_sym_class] = ACTIONS(3555), + [anon_sym_struct] = ACTIONS(3555), + [anon_sym_union] = ACTIONS(3555), + [anon_sym_if] = ACTIONS(3555), + [anon_sym_switch] = ACTIONS(3555), + [anon_sym_case] = ACTIONS(3555), + [anon_sym_default] = ACTIONS(3555), + [anon_sym_while] = ACTIONS(3555), + [anon_sym_do] = ACTIONS(3555), + [anon_sym_for] = ACTIONS(3555), + [anon_sym_return] = ACTIONS(3555), + [anon_sym_break] = ACTIONS(3555), + [anon_sym_continue] = ACTIONS(3555), + [anon_sym_goto] = ACTIONS(3555), + [anon_sym___try] = ACTIONS(3555), + [anon_sym___leave] = ACTIONS(3555), + [anon_sym_not] = ACTIONS(3555), + [anon_sym_compl] = ACTIONS(3555), + [anon_sym_DASH_DASH] = ACTIONS(3557), + [anon_sym_PLUS_PLUS] = ACTIONS(3557), + [anon_sym_sizeof] = ACTIONS(3555), + [anon_sym___alignof__] = ACTIONS(3555), + [anon_sym___alignof] = ACTIONS(3555), + [anon_sym__alignof] = ACTIONS(3555), + [anon_sym_alignof] = ACTIONS(3555), + [anon_sym__Alignof] = ACTIONS(3555), + [anon_sym_offsetof] = ACTIONS(3555), + [anon_sym__Generic] = ACTIONS(3555), + [anon_sym_asm] = ACTIONS(3555), + [anon_sym___asm__] = ACTIONS(3555), + [sym_number_literal] = ACTIONS(3557), + [anon_sym_L_SQUOTE] = ACTIONS(3557), + [anon_sym_u_SQUOTE] = ACTIONS(3557), + [anon_sym_U_SQUOTE] = ACTIONS(3557), + [anon_sym_u8_SQUOTE] = ACTIONS(3557), + [anon_sym_SQUOTE] = ACTIONS(3557), + [anon_sym_L_DQUOTE] = ACTIONS(3557), + [anon_sym_u_DQUOTE] = ACTIONS(3557), + [anon_sym_U_DQUOTE] = ACTIONS(3557), + [anon_sym_u8_DQUOTE] = ACTIONS(3557), + [anon_sym_DQUOTE] = ACTIONS(3557), + [sym_true] = ACTIONS(3555), + [sym_false] = ACTIONS(3555), + [anon_sym_NULL] = ACTIONS(3555), + [anon_sym_nullptr] = ACTIONS(3555), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3555), + [anon_sym_decltype] = ACTIONS(3555), + [anon_sym_virtual] = ACTIONS(3555), + [anon_sym_alignas] = ACTIONS(3555), + [anon_sym_explicit] = ACTIONS(3555), + [anon_sym_typename] = ACTIONS(3555), + [anon_sym_template] = ACTIONS(3555), + [anon_sym_operator] = ACTIONS(3555), + [anon_sym_try] = ACTIONS(3555), + [anon_sym_delete] = ACTIONS(3555), + [anon_sym_throw] = ACTIONS(3555), + [anon_sym_namespace] = ACTIONS(3555), + [anon_sym_using] = ACTIONS(3555), + [anon_sym_static_assert] = ACTIONS(3555), + [anon_sym_concept] = ACTIONS(3555), + [anon_sym_co_return] = ACTIONS(3555), + [anon_sym_co_yield] = ACTIONS(3555), + [anon_sym_R_DQUOTE] = ACTIONS(3557), + [anon_sym_LR_DQUOTE] = ACTIONS(3557), + [anon_sym_uR_DQUOTE] = ACTIONS(3557), + [anon_sym_UR_DQUOTE] = ACTIONS(3557), + [anon_sym_u8R_DQUOTE] = ACTIONS(3557), + [anon_sym_co_await] = ACTIONS(3555), + [anon_sym_new] = ACTIONS(3555), + [anon_sym_requires] = ACTIONS(3555), + [sym_this] = ACTIONS(3555), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3557), + [sym_semgrep_named_ellipsis] = ACTIONS(3557), + }, + [777] = { + [sym_identifier] = ACTIONS(3561), + [aux_sym_preproc_include_token1] = ACTIONS(3561), + [aux_sym_preproc_def_token1] = ACTIONS(3561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3563), + [aux_sym_preproc_if_token1] = ACTIONS(3561), + [aux_sym_preproc_if_token2] = ACTIONS(3561), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3561), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3561), + [sym_preproc_directive] = ACTIONS(3561), + [anon_sym_LPAREN2] = ACTIONS(3563), + [anon_sym_BANG] = ACTIONS(3563), + [anon_sym_TILDE] = ACTIONS(3563), + [anon_sym_DASH] = ACTIONS(3561), + [anon_sym_PLUS] = ACTIONS(3561), + [anon_sym_STAR] = ACTIONS(3563), + [anon_sym_AMP_AMP] = ACTIONS(3563), + [anon_sym_AMP] = ACTIONS(3561), + [anon_sym_SEMI] = ACTIONS(3563), + [anon_sym___extension__] = ACTIONS(3561), + [anon_sym_typedef] = ACTIONS(3561), + [anon_sym_extern] = ACTIONS(3561), + [anon_sym___attribute__] = ACTIONS(3561), + [anon_sym_COLON_COLON] = ACTIONS(3563), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3563), + [anon_sym___declspec] = ACTIONS(3561), + [anon_sym___based] = ACTIONS(3561), + [anon_sym___cdecl] = ACTIONS(3561), + [anon_sym___clrcall] = ACTIONS(3561), + [anon_sym___stdcall] = ACTIONS(3561), + [anon_sym___fastcall] = ACTIONS(3561), + [anon_sym___thiscall] = ACTIONS(3561), + [anon_sym___vectorcall] = ACTIONS(3561), + [anon_sym_LBRACE] = ACTIONS(3563), + [anon_sym_signed] = ACTIONS(3561), + [anon_sym_unsigned] = ACTIONS(3561), + [anon_sym_long] = ACTIONS(3561), + [anon_sym_short] = ACTIONS(3561), + [anon_sym_LBRACK] = ACTIONS(3561), + [anon_sym_static] = ACTIONS(3561), + [anon_sym_register] = ACTIONS(3561), + [anon_sym_inline] = ACTIONS(3561), + [anon_sym___inline] = ACTIONS(3561), + [anon_sym___inline__] = ACTIONS(3561), + [anon_sym___forceinline] = ACTIONS(3561), + [anon_sym_thread_local] = ACTIONS(3561), + [anon_sym___thread] = ACTIONS(3561), + [anon_sym_const] = ACTIONS(3561), + [anon_sym_constexpr] = ACTIONS(3561), + [anon_sym_volatile] = ACTIONS(3561), + [anon_sym_restrict] = ACTIONS(3561), + [anon_sym___restrict__] = ACTIONS(3561), + [anon_sym__Atomic] = ACTIONS(3561), + [anon_sym__Noreturn] = ACTIONS(3561), + [anon_sym_noreturn] = ACTIONS(3561), + [anon_sym_mutable] = ACTIONS(3561), + [anon_sym_constinit] = ACTIONS(3561), + [anon_sym_consteval] = ACTIONS(3561), + [sym_primitive_type] = ACTIONS(3561), + [anon_sym_enum] = ACTIONS(3561), + [anon_sym_class] = ACTIONS(3561), + [anon_sym_struct] = ACTIONS(3561), + [anon_sym_union] = ACTIONS(3561), + [anon_sym_if] = ACTIONS(3561), + [anon_sym_switch] = ACTIONS(3561), + [anon_sym_case] = ACTIONS(3561), + [anon_sym_default] = ACTIONS(3561), + [anon_sym_while] = ACTIONS(3561), + [anon_sym_do] = ACTIONS(3561), + [anon_sym_for] = ACTIONS(3561), + [anon_sym_return] = ACTIONS(3561), + [anon_sym_break] = ACTIONS(3561), + [anon_sym_continue] = ACTIONS(3561), + [anon_sym_goto] = ACTIONS(3561), + [anon_sym___try] = ACTIONS(3561), + [anon_sym___leave] = ACTIONS(3561), + [anon_sym_not] = ACTIONS(3561), + [anon_sym_compl] = ACTIONS(3561), + [anon_sym_DASH_DASH] = ACTIONS(3563), + [anon_sym_PLUS_PLUS] = ACTIONS(3563), + [anon_sym_sizeof] = ACTIONS(3561), + [anon_sym___alignof__] = ACTIONS(3561), + [anon_sym___alignof] = ACTIONS(3561), + [anon_sym__alignof] = ACTIONS(3561), + [anon_sym_alignof] = ACTIONS(3561), + [anon_sym__Alignof] = ACTIONS(3561), + [anon_sym_offsetof] = ACTIONS(3561), + [anon_sym__Generic] = ACTIONS(3561), + [anon_sym_asm] = ACTIONS(3561), + [anon_sym___asm__] = ACTIONS(3561), + [sym_number_literal] = ACTIONS(3563), + [anon_sym_L_SQUOTE] = ACTIONS(3563), + [anon_sym_u_SQUOTE] = ACTIONS(3563), + [anon_sym_U_SQUOTE] = ACTIONS(3563), + [anon_sym_u8_SQUOTE] = ACTIONS(3563), + [anon_sym_SQUOTE] = ACTIONS(3563), + [anon_sym_L_DQUOTE] = ACTIONS(3563), + [anon_sym_u_DQUOTE] = ACTIONS(3563), + [anon_sym_U_DQUOTE] = ACTIONS(3563), + [anon_sym_u8_DQUOTE] = ACTIONS(3563), + [anon_sym_DQUOTE] = ACTIONS(3563), + [sym_true] = ACTIONS(3561), + [sym_false] = ACTIONS(3561), + [anon_sym_NULL] = ACTIONS(3561), + [anon_sym_nullptr] = ACTIONS(3561), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3561), + [anon_sym_decltype] = ACTIONS(3561), + [anon_sym_virtual] = ACTIONS(3561), + [anon_sym_alignas] = ACTIONS(3561), + [anon_sym_explicit] = ACTIONS(3561), + [anon_sym_typename] = ACTIONS(3561), + [anon_sym_template] = ACTIONS(3561), + [anon_sym_operator] = ACTIONS(3561), + [anon_sym_try] = ACTIONS(3561), + [anon_sym_delete] = ACTIONS(3561), + [anon_sym_throw] = ACTIONS(3561), + [anon_sym_namespace] = ACTIONS(3561), + [anon_sym_using] = ACTIONS(3561), + [anon_sym_static_assert] = ACTIONS(3561), + [anon_sym_concept] = ACTIONS(3561), + [anon_sym_co_return] = ACTIONS(3561), + [anon_sym_co_yield] = ACTIONS(3561), + [anon_sym_R_DQUOTE] = ACTIONS(3563), + [anon_sym_LR_DQUOTE] = ACTIONS(3563), + [anon_sym_uR_DQUOTE] = ACTIONS(3563), + [anon_sym_UR_DQUOTE] = ACTIONS(3563), + [anon_sym_u8R_DQUOTE] = ACTIONS(3563), + [anon_sym_co_await] = ACTIONS(3561), + [anon_sym_new] = ACTIONS(3561), + [anon_sym_requires] = ACTIONS(3561), + [sym_this] = ACTIONS(3561), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3563), + [sym_semgrep_named_ellipsis] = ACTIONS(3563), + }, + [778] = { + [sym_identifier] = ACTIONS(3551), + [aux_sym_preproc_include_token1] = ACTIONS(3551), + [aux_sym_preproc_def_token1] = ACTIONS(3551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3553), + [aux_sym_preproc_if_token1] = ACTIONS(3551), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3551), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3551), + [sym_preproc_directive] = ACTIONS(3551), + [anon_sym_LPAREN2] = ACTIONS(3553), + [anon_sym_BANG] = ACTIONS(3553), + [anon_sym_TILDE] = ACTIONS(3553), + [anon_sym_DASH] = ACTIONS(3551), + [anon_sym_PLUS] = ACTIONS(3551), + [anon_sym_STAR] = ACTIONS(3553), + [anon_sym_AMP_AMP] = ACTIONS(3553), + [anon_sym_AMP] = ACTIONS(3551), + [anon_sym_SEMI] = ACTIONS(3553), + [anon_sym___extension__] = ACTIONS(3551), + [anon_sym_typedef] = ACTIONS(3551), + [anon_sym_extern] = ACTIONS(3551), + [anon_sym___attribute__] = ACTIONS(3551), + [anon_sym_COLON_COLON] = ACTIONS(3553), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3553), + [anon_sym___declspec] = ACTIONS(3551), + [anon_sym___based] = ACTIONS(3551), + [anon_sym___cdecl] = ACTIONS(3551), + [anon_sym___clrcall] = ACTIONS(3551), + [anon_sym___stdcall] = ACTIONS(3551), + [anon_sym___fastcall] = ACTIONS(3551), + [anon_sym___thiscall] = ACTIONS(3551), + [anon_sym___vectorcall] = ACTIONS(3551), + [anon_sym_LBRACE] = ACTIONS(3553), + [anon_sym_RBRACE] = ACTIONS(3553), + [anon_sym_signed] = ACTIONS(3551), + [anon_sym_unsigned] = ACTIONS(3551), + [anon_sym_long] = ACTIONS(3551), + [anon_sym_short] = ACTIONS(3551), + [anon_sym_LBRACK] = ACTIONS(3551), + [anon_sym_static] = ACTIONS(3551), + [anon_sym_register] = ACTIONS(3551), + [anon_sym_inline] = ACTIONS(3551), + [anon_sym___inline] = ACTIONS(3551), + [anon_sym___inline__] = ACTIONS(3551), + [anon_sym___forceinline] = ACTIONS(3551), + [anon_sym_thread_local] = ACTIONS(3551), + [anon_sym___thread] = ACTIONS(3551), + [anon_sym_const] = ACTIONS(3551), + [anon_sym_constexpr] = ACTIONS(3551), + [anon_sym_volatile] = ACTIONS(3551), + [anon_sym_restrict] = ACTIONS(3551), + [anon_sym___restrict__] = ACTIONS(3551), + [anon_sym__Atomic] = ACTIONS(3551), + [anon_sym__Noreturn] = ACTIONS(3551), + [anon_sym_noreturn] = ACTIONS(3551), + [anon_sym_mutable] = ACTIONS(3551), + [anon_sym_constinit] = ACTIONS(3551), + [anon_sym_consteval] = ACTIONS(3551), + [sym_primitive_type] = ACTIONS(3551), + [anon_sym_enum] = ACTIONS(3551), + [anon_sym_class] = ACTIONS(3551), + [anon_sym_struct] = ACTIONS(3551), + [anon_sym_union] = ACTIONS(3551), + [anon_sym_if] = ACTIONS(3551), + [anon_sym_switch] = ACTIONS(3551), + [anon_sym_case] = ACTIONS(3551), + [anon_sym_default] = ACTIONS(3551), + [anon_sym_while] = ACTIONS(3551), + [anon_sym_do] = ACTIONS(3551), + [anon_sym_for] = ACTIONS(3551), + [anon_sym_return] = ACTIONS(3551), + [anon_sym_break] = ACTIONS(3551), + [anon_sym_continue] = ACTIONS(3551), + [anon_sym_goto] = ACTIONS(3551), + [anon_sym___try] = ACTIONS(3551), + [anon_sym___leave] = ACTIONS(3551), + [anon_sym_not] = ACTIONS(3551), + [anon_sym_compl] = ACTIONS(3551), + [anon_sym_DASH_DASH] = ACTIONS(3553), + [anon_sym_PLUS_PLUS] = ACTIONS(3553), + [anon_sym_sizeof] = ACTIONS(3551), + [anon_sym___alignof__] = ACTIONS(3551), + [anon_sym___alignof] = ACTIONS(3551), + [anon_sym__alignof] = ACTIONS(3551), + [anon_sym_alignof] = ACTIONS(3551), + [anon_sym__Alignof] = ACTIONS(3551), + [anon_sym_offsetof] = ACTIONS(3551), + [anon_sym__Generic] = ACTIONS(3551), + [anon_sym_asm] = ACTIONS(3551), + [anon_sym___asm__] = ACTIONS(3551), + [sym_number_literal] = ACTIONS(3553), + [anon_sym_L_SQUOTE] = ACTIONS(3553), + [anon_sym_u_SQUOTE] = ACTIONS(3553), + [anon_sym_U_SQUOTE] = ACTIONS(3553), + [anon_sym_u8_SQUOTE] = ACTIONS(3553), + [anon_sym_SQUOTE] = ACTIONS(3553), + [anon_sym_L_DQUOTE] = ACTIONS(3553), + [anon_sym_u_DQUOTE] = ACTIONS(3553), + [anon_sym_U_DQUOTE] = ACTIONS(3553), + [anon_sym_u8_DQUOTE] = ACTIONS(3553), + [anon_sym_DQUOTE] = ACTIONS(3553), + [sym_true] = ACTIONS(3551), + [sym_false] = ACTIONS(3551), + [anon_sym_NULL] = ACTIONS(3551), + [anon_sym_nullptr] = ACTIONS(3551), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3551), + [anon_sym_decltype] = ACTIONS(3551), + [anon_sym_virtual] = ACTIONS(3551), + [anon_sym_alignas] = ACTIONS(3551), + [anon_sym_explicit] = ACTIONS(3551), + [anon_sym_typename] = ACTIONS(3551), + [anon_sym_template] = ACTIONS(3551), + [anon_sym_operator] = ACTIONS(3551), + [anon_sym_try] = ACTIONS(3551), + [anon_sym_delete] = ACTIONS(3551), + [anon_sym_throw] = ACTIONS(3551), + [anon_sym_namespace] = ACTIONS(3551), + [anon_sym_using] = ACTIONS(3551), + [anon_sym_static_assert] = ACTIONS(3551), + [anon_sym_concept] = ACTIONS(3551), + [anon_sym_co_return] = ACTIONS(3551), + [anon_sym_co_yield] = ACTIONS(3551), + [anon_sym_R_DQUOTE] = ACTIONS(3553), + [anon_sym_LR_DQUOTE] = ACTIONS(3553), + [anon_sym_uR_DQUOTE] = ACTIONS(3553), + [anon_sym_UR_DQUOTE] = ACTIONS(3553), + [anon_sym_u8R_DQUOTE] = ACTIONS(3553), + [anon_sym_co_await] = ACTIONS(3551), + [anon_sym_new] = ACTIONS(3551), + [anon_sym_requires] = ACTIONS(3551), + [sym_this] = ACTIONS(3551), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3553), + [sym_semgrep_named_ellipsis] = ACTIONS(3553), + }, + [779] = { + [sym_identifier] = ACTIONS(3571), + [aux_sym_preproc_include_token1] = ACTIONS(3571), + [aux_sym_preproc_def_token1] = ACTIONS(3571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3573), + [aux_sym_preproc_if_token1] = ACTIONS(3571), + [aux_sym_preproc_if_token2] = ACTIONS(3571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3571), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3571), + [sym_preproc_directive] = ACTIONS(3571), + [anon_sym_LPAREN2] = ACTIONS(3573), + [anon_sym_BANG] = ACTIONS(3573), + [anon_sym_TILDE] = ACTIONS(3573), + [anon_sym_DASH] = ACTIONS(3571), + [anon_sym_PLUS] = ACTIONS(3571), + [anon_sym_STAR] = ACTIONS(3573), + [anon_sym_AMP_AMP] = ACTIONS(3573), + [anon_sym_AMP] = ACTIONS(3571), + [anon_sym_SEMI] = ACTIONS(3573), + [anon_sym___extension__] = ACTIONS(3571), + [anon_sym_typedef] = ACTIONS(3571), + [anon_sym_extern] = ACTIONS(3571), + [anon_sym___attribute__] = ACTIONS(3571), + [anon_sym_COLON_COLON] = ACTIONS(3573), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3573), + [anon_sym___declspec] = ACTIONS(3571), + [anon_sym___based] = ACTIONS(3571), + [anon_sym___cdecl] = ACTIONS(3571), + [anon_sym___clrcall] = ACTIONS(3571), + [anon_sym___stdcall] = ACTIONS(3571), + [anon_sym___fastcall] = ACTIONS(3571), + [anon_sym___thiscall] = ACTIONS(3571), + [anon_sym___vectorcall] = ACTIONS(3571), + [anon_sym_LBRACE] = ACTIONS(3573), + [anon_sym_signed] = ACTIONS(3571), + [anon_sym_unsigned] = ACTIONS(3571), + [anon_sym_long] = ACTIONS(3571), + [anon_sym_short] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(3571), + [anon_sym_static] = ACTIONS(3571), + [anon_sym_register] = ACTIONS(3571), + [anon_sym_inline] = ACTIONS(3571), + [anon_sym___inline] = ACTIONS(3571), + [anon_sym___inline__] = ACTIONS(3571), + [anon_sym___forceinline] = ACTIONS(3571), + [anon_sym_thread_local] = ACTIONS(3571), + [anon_sym___thread] = ACTIONS(3571), + [anon_sym_const] = ACTIONS(3571), + [anon_sym_constexpr] = ACTIONS(3571), + [anon_sym_volatile] = ACTIONS(3571), + [anon_sym_restrict] = ACTIONS(3571), + [anon_sym___restrict__] = ACTIONS(3571), + [anon_sym__Atomic] = ACTIONS(3571), + [anon_sym__Noreturn] = ACTIONS(3571), + [anon_sym_noreturn] = ACTIONS(3571), + [anon_sym_mutable] = ACTIONS(3571), + [anon_sym_constinit] = ACTIONS(3571), + [anon_sym_consteval] = ACTIONS(3571), + [sym_primitive_type] = ACTIONS(3571), + [anon_sym_enum] = ACTIONS(3571), + [anon_sym_class] = ACTIONS(3571), + [anon_sym_struct] = ACTIONS(3571), + [anon_sym_union] = ACTIONS(3571), + [anon_sym_if] = ACTIONS(3571), + [anon_sym_switch] = ACTIONS(3571), + [anon_sym_case] = ACTIONS(3571), + [anon_sym_default] = ACTIONS(3571), + [anon_sym_while] = ACTIONS(3571), + [anon_sym_do] = ACTIONS(3571), + [anon_sym_for] = ACTIONS(3571), + [anon_sym_return] = ACTIONS(3571), + [anon_sym_break] = ACTIONS(3571), + [anon_sym_continue] = ACTIONS(3571), + [anon_sym_goto] = ACTIONS(3571), + [anon_sym___try] = ACTIONS(3571), + [anon_sym___leave] = ACTIONS(3571), + [anon_sym_not] = ACTIONS(3571), + [anon_sym_compl] = ACTIONS(3571), + [anon_sym_DASH_DASH] = ACTIONS(3573), + [anon_sym_PLUS_PLUS] = ACTIONS(3573), + [anon_sym_sizeof] = ACTIONS(3571), + [anon_sym___alignof__] = ACTIONS(3571), + [anon_sym___alignof] = ACTIONS(3571), + [anon_sym__alignof] = ACTIONS(3571), + [anon_sym_alignof] = ACTIONS(3571), + [anon_sym__Alignof] = ACTIONS(3571), + [anon_sym_offsetof] = ACTIONS(3571), + [anon_sym__Generic] = ACTIONS(3571), + [anon_sym_asm] = ACTIONS(3571), + [anon_sym___asm__] = ACTIONS(3571), + [sym_number_literal] = ACTIONS(3573), + [anon_sym_L_SQUOTE] = ACTIONS(3573), + [anon_sym_u_SQUOTE] = ACTIONS(3573), + [anon_sym_U_SQUOTE] = ACTIONS(3573), + [anon_sym_u8_SQUOTE] = ACTIONS(3573), + [anon_sym_SQUOTE] = ACTIONS(3573), + [anon_sym_L_DQUOTE] = ACTIONS(3573), + [anon_sym_u_DQUOTE] = ACTIONS(3573), + [anon_sym_U_DQUOTE] = ACTIONS(3573), + [anon_sym_u8_DQUOTE] = ACTIONS(3573), + [anon_sym_DQUOTE] = ACTIONS(3573), + [sym_true] = ACTIONS(3571), + [sym_false] = ACTIONS(3571), + [anon_sym_NULL] = ACTIONS(3571), + [anon_sym_nullptr] = ACTIONS(3571), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3571), + [anon_sym_decltype] = ACTIONS(3571), + [anon_sym_virtual] = ACTIONS(3571), + [anon_sym_alignas] = ACTIONS(3571), + [anon_sym_explicit] = ACTIONS(3571), + [anon_sym_typename] = ACTIONS(3571), + [anon_sym_template] = ACTIONS(3571), + [anon_sym_operator] = ACTIONS(3571), + [anon_sym_try] = ACTIONS(3571), + [anon_sym_delete] = ACTIONS(3571), + [anon_sym_throw] = ACTIONS(3571), + [anon_sym_namespace] = ACTIONS(3571), + [anon_sym_using] = ACTIONS(3571), + [anon_sym_static_assert] = ACTIONS(3571), + [anon_sym_concept] = ACTIONS(3571), + [anon_sym_co_return] = ACTIONS(3571), + [anon_sym_co_yield] = ACTIONS(3571), + [anon_sym_R_DQUOTE] = ACTIONS(3573), + [anon_sym_LR_DQUOTE] = ACTIONS(3573), + [anon_sym_uR_DQUOTE] = ACTIONS(3573), + [anon_sym_UR_DQUOTE] = ACTIONS(3573), + [anon_sym_u8R_DQUOTE] = ACTIONS(3573), + [anon_sym_co_await] = ACTIONS(3571), + [anon_sym_new] = ACTIONS(3571), + [anon_sym_requires] = ACTIONS(3571), + [sym_this] = ACTIONS(3571), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3573), + [sym_semgrep_named_ellipsis] = ACTIONS(3573), + }, + [780] = { + [sym_identifier] = ACTIONS(3555), + [aux_sym_preproc_include_token1] = ACTIONS(3555), + [aux_sym_preproc_def_token1] = ACTIONS(3555), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3557), + [aux_sym_preproc_if_token1] = ACTIONS(3555), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3555), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3555), + [sym_preproc_directive] = ACTIONS(3555), + [anon_sym_LPAREN2] = ACTIONS(3557), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3557), + [anon_sym_DASH] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3555), + [anon_sym_STAR] = ACTIONS(3557), + [anon_sym_AMP_AMP] = ACTIONS(3557), + [anon_sym_AMP] = ACTIONS(3555), + [anon_sym_SEMI] = ACTIONS(3557), + [anon_sym___extension__] = ACTIONS(3555), + [anon_sym_typedef] = ACTIONS(3555), + [anon_sym_extern] = ACTIONS(3555), + [anon_sym___attribute__] = ACTIONS(3555), + [anon_sym_COLON_COLON] = ACTIONS(3557), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3557), + [anon_sym___declspec] = ACTIONS(3555), + [anon_sym___based] = ACTIONS(3555), + [anon_sym___cdecl] = ACTIONS(3555), + [anon_sym___clrcall] = ACTIONS(3555), + [anon_sym___stdcall] = ACTIONS(3555), + [anon_sym___fastcall] = ACTIONS(3555), + [anon_sym___thiscall] = ACTIONS(3555), + [anon_sym___vectorcall] = ACTIONS(3555), + [anon_sym_LBRACE] = ACTIONS(3557), + [anon_sym_RBRACE] = ACTIONS(3557), + [anon_sym_signed] = ACTIONS(3555), + [anon_sym_unsigned] = ACTIONS(3555), + [anon_sym_long] = ACTIONS(3555), + [anon_sym_short] = ACTIONS(3555), + [anon_sym_LBRACK] = ACTIONS(3555), + [anon_sym_static] = ACTIONS(3555), + [anon_sym_register] = ACTIONS(3555), + [anon_sym_inline] = ACTIONS(3555), + [anon_sym___inline] = ACTIONS(3555), + [anon_sym___inline__] = ACTIONS(3555), + [anon_sym___forceinline] = ACTIONS(3555), + [anon_sym_thread_local] = ACTIONS(3555), + [anon_sym___thread] = ACTIONS(3555), + [anon_sym_const] = ACTIONS(3555), + [anon_sym_constexpr] = ACTIONS(3555), + [anon_sym_volatile] = ACTIONS(3555), + [anon_sym_restrict] = ACTIONS(3555), + [anon_sym___restrict__] = ACTIONS(3555), + [anon_sym__Atomic] = ACTIONS(3555), + [anon_sym__Noreturn] = ACTIONS(3555), + [anon_sym_noreturn] = ACTIONS(3555), + [anon_sym_mutable] = ACTIONS(3555), + [anon_sym_constinit] = ACTIONS(3555), + [anon_sym_consteval] = ACTIONS(3555), + [sym_primitive_type] = ACTIONS(3555), + [anon_sym_enum] = ACTIONS(3555), + [anon_sym_class] = ACTIONS(3555), + [anon_sym_struct] = ACTIONS(3555), + [anon_sym_union] = ACTIONS(3555), + [anon_sym_if] = ACTIONS(3555), + [anon_sym_switch] = ACTIONS(3555), + [anon_sym_case] = ACTIONS(3555), + [anon_sym_default] = ACTIONS(3555), + [anon_sym_while] = ACTIONS(3555), + [anon_sym_do] = ACTIONS(3555), + [anon_sym_for] = ACTIONS(3555), + [anon_sym_return] = ACTIONS(3555), + [anon_sym_break] = ACTIONS(3555), + [anon_sym_continue] = ACTIONS(3555), + [anon_sym_goto] = ACTIONS(3555), + [anon_sym___try] = ACTIONS(3555), + [anon_sym___leave] = ACTIONS(3555), + [anon_sym_not] = ACTIONS(3555), + [anon_sym_compl] = ACTIONS(3555), + [anon_sym_DASH_DASH] = ACTIONS(3557), + [anon_sym_PLUS_PLUS] = ACTIONS(3557), + [anon_sym_sizeof] = ACTIONS(3555), + [anon_sym___alignof__] = ACTIONS(3555), + [anon_sym___alignof] = ACTIONS(3555), + [anon_sym__alignof] = ACTIONS(3555), + [anon_sym_alignof] = ACTIONS(3555), + [anon_sym__Alignof] = ACTIONS(3555), + [anon_sym_offsetof] = ACTIONS(3555), + [anon_sym__Generic] = ACTIONS(3555), + [anon_sym_asm] = ACTIONS(3555), + [anon_sym___asm__] = ACTIONS(3555), + [sym_number_literal] = ACTIONS(3557), + [anon_sym_L_SQUOTE] = ACTIONS(3557), + [anon_sym_u_SQUOTE] = ACTIONS(3557), + [anon_sym_U_SQUOTE] = ACTIONS(3557), + [anon_sym_u8_SQUOTE] = ACTIONS(3557), + [anon_sym_SQUOTE] = ACTIONS(3557), + [anon_sym_L_DQUOTE] = ACTIONS(3557), + [anon_sym_u_DQUOTE] = ACTIONS(3557), + [anon_sym_U_DQUOTE] = ACTIONS(3557), + [anon_sym_u8_DQUOTE] = ACTIONS(3557), + [anon_sym_DQUOTE] = ACTIONS(3557), + [sym_true] = ACTIONS(3555), + [sym_false] = ACTIONS(3555), + [anon_sym_NULL] = ACTIONS(3555), + [anon_sym_nullptr] = ACTIONS(3555), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3555), + [anon_sym_decltype] = ACTIONS(3555), + [anon_sym_virtual] = ACTIONS(3555), + [anon_sym_alignas] = ACTIONS(3555), + [anon_sym_explicit] = ACTIONS(3555), + [anon_sym_typename] = ACTIONS(3555), + [anon_sym_template] = ACTIONS(3555), + [anon_sym_operator] = ACTIONS(3555), + [anon_sym_try] = ACTIONS(3555), + [anon_sym_delete] = ACTIONS(3555), + [anon_sym_throw] = ACTIONS(3555), + [anon_sym_namespace] = ACTIONS(3555), + [anon_sym_using] = ACTIONS(3555), + [anon_sym_static_assert] = ACTIONS(3555), + [anon_sym_concept] = ACTIONS(3555), + [anon_sym_co_return] = ACTIONS(3555), + [anon_sym_co_yield] = ACTIONS(3555), + [anon_sym_R_DQUOTE] = ACTIONS(3557), + [anon_sym_LR_DQUOTE] = ACTIONS(3557), + [anon_sym_uR_DQUOTE] = ACTIONS(3557), + [anon_sym_UR_DQUOTE] = ACTIONS(3557), + [anon_sym_u8R_DQUOTE] = ACTIONS(3557), + [anon_sym_co_await] = ACTIONS(3555), + [anon_sym_new] = ACTIONS(3555), + [anon_sym_requires] = ACTIONS(3555), + [sym_this] = ACTIONS(3555), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3557), + [sym_semgrep_named_ellipsis] = ACTIONS(3557), + }, + [781] = { + [sym_identifier] = ACTIONS(3680), + [aux_sym_preproc_include_token1] = ACTIONS(3680), + [aux_sym_preproc_def_token1] = ACTIONS(3680), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3682), + [aux_sym_preproc_if_token1] = ACTIONS(3680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3680), + [sym_preproc_directive] = ACTIONS(3680), + [anon_sym_LPAREN2] = ACTIONS(3682), + [anon_sym_BANG] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(3682), + [anon_sym_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3680), + [anon_sym_STAR] = ACTIONS(3682), + [anon_sym_AMP_AMP] = ACTIONS(3682), + [anon_sym_AMP] = ACTIONS(3680), + [anon_sym_SEMI] = ACTIONS(3682), + [anon_sym___extension__] = ACTIONS(3680), + [anon_sym_typedef] = ACTIONS(3680), + [anon_sym_extern] = ACTIONS(3680), + [anon_sym___attribute__] = ACTIONS(3680), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3682), + [anon_sym___declspec] = ACTIONS(3680), + [anon_sym___based] = ACTIONS(3680), + [anon_sym___cdecl] = ACTIONS(3680), + [anon_sym___clrcall] = ACTIONS(3680), + [anon_sym___stdcall] = ACTIONS(3680), + [anon_sym___fastcall] = ACTIONS(3680), + [anon_sym___thiscall] = ACTIONS(3680), + [anon_sym___vectorcall] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3682), + [anon_sym_RBRACE] = ACTIONS(3682), + [anon_sym_signed] = ACTIONS(3680), + [anon_sym_unsigned] = ACTIONS(3680), + [anon_sym_long] = ACTIONS(3680), + [anon_sym_short] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_static] = ACTIONS(3680), + [anon_sym_register] = ACTIONS(3680), + [anon_sym_inline] = ACTIONS(3680), + [anon_sym___inline] = ACTIONS(3680), + [anon_sym___inline__] = ACTIONS(3680), + [anon_sym___forceinline] = ACTIONS(3680), + [anon_sym_thread_local] = ACTIONS(3680), + [anon_sym___thread] = ACTIONS(3680), + [anon_sym_const] = ACTIONS(3680), + [anon_sym_constexpr] = ACTIONS(3680), + [anon_sym_volatile] = ACTIONS(3680), + [anon_sym_restrict] = ACTIONS(3680), + [anon_sym___restrict__] = ACTIONS(3680), + [anon_sym__Atomic] = ACTIONS(3680), + [anon_sym__Noreturn] = ACTIONS(3680), + [anon_sym_noreturn] = ACTIONS(3680), + [anon_sym_mutable] = ACTIONS(3680), + [anon_sym_constinit] = ACTIONS(3680), + [anon_sym_consteval] = ACTIONS(3680), + [sym_primitive_type] = ACTIONS(3680), + [anon_sym_enum] = ACTIONS(3680), + [anon_sym_class] = ACTIONS(3680), + [anon_sym_struct] = ACTIONS(3680), + [anon_sym_union] = ACTIONS(3680), + [anon_sym_if] = ACTIONS(3680), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_case] = ACTIONS(3680), + [anon_sym_default] = ACTIONS(3680), + [anon_sym_while] = ACTIONS(3680), + [anon_sym_do] = ACTIONS(3680), + [anon_sym_for] = ACTIONS(3680), + [anon_sym_return] = ACTIONS(3680), + [anon_sym_break] = ACTIONS(3680), + [anon_sym_continue] = ACTIONS(3680), + [anon_sym_goto] = ACTIONS(3680), + [anon_sym___try] = ACTIONS(3680), + [anon_sym___leave] = ACTIONS(3680), + [anon_sym_not] = ACTIONS(3680), + [anon_sym_compl] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3682), + [anon_sym_PLUS_PLUS] = ACTIONS(3682), + [anon_sym_sizeof] = ACTIONS(3680), + [anon_sym___alignof__] = ACTIONS(3680), + [anon_sym___alignof] = ACTIONS(3680), + [anon_sym__alignof] = ACTIONS(3680), + [anon_sym_alignof] = ACTIONS(3680), + [anon_sym__Alignof] = ACTIONS(3680), + [anon_sym_offsetof] = ACTIONS(3680), + [anon_sym__Generic] = ACTIONS(3680), + [anon_sym_asm] = ACTIONS(3680), + [anon_sym___asm__] = ACTIONS(3680), + [sym_number_literal] = ACTIONS(3682), + [anon_sym_L_SQUOTE] = ACTIONS(3682), + [anon_sym_u_SQUOTE] = ACTIONS(3682), + [anon_sym_U_SQUOTE] = ACTIONS(3682), + [anon_sym_u8_SQUOTE] = ACTIONS(3682), + [anon_sym_SQUOTE] = ACTIONS(3682), + [anon_sym_L_DQUOTE] = ACTIONS(3682), + [anon_sym_u_DQUOTE] = ACTIONS(3682), + [anon_sym_U_DQUOTE] = ACTIONS(3682), + [anon_sym_u8_DQUOTE] = ACTIONS(3682), + [anon_sym_DQUOTE] = ACTIONS(3682), + [sym_true] = ACTIONS(3680), + [sym_false] = ACTIONS(3680), + [anon_sym_NULL] = ACTIONS(3680), + [anon_sym_nullptr] = ACTIONS(3680), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3680), + [anon_sym_decltype] = ACTIONS(3680), + [anon_sym_virtual] = ACTIONS(3680), + [anon_sym_alignas] = ACTIONS(3680), + [anon_sym_explicit] = ACTIONS(3680), + [anon_sym_typename] = ACTIONS(3680), + [anon_sym_template] = ACTIONS(3680), + [anon_sym_operator] = ACTIONS(3680), + [anon_sym_try] = ACTIONS(3680), + [anon_sym_delete] = ACTIONS(3680), + [anon_sym_throw] = ACTIONS(3680), + [anon_sym_namespace] = ACTIONS(3680), + [anon_sym_using] = ACTIONS(3680), + [anon_sym_static_assert] = ACTIONS(3680), + [anon_sym_concept] = ACTIONS(3680), + [anon_sym_co_return] = ACTIONS(3680), + [anon_sym_co_yield] = ACTIONS(3680), + [anon_sym_R_DQUOTE] = ACTIONS(3682), + [anon_sym_LR_DQUOTE] = ACTIONS(3682), + [anon_sym_uR_DQUOTE] = ACTIONS(3682), + [anon_sym_UR_DQUOTE] = ACTIONS(3682), + [anon_sym_u8R_DQUOTE] = ACTIONS(3682), + [anon_sym_co_await] = ACTIONS(3680), + [anon_sym_new] = ACTIONS(3680), + [anon_sym_requires] = ACTIONS(3680), + [sym_this] = ACTIONS(3680), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3682), + [sym_semgrep_named_ellipsis] = ACTIONS(3682), + }, + [782] = { + [sym_identifier] = ACTIONS(3561), + [aux_sym_preproc_include_token1] = ACTIONS(3561), + [aux_sym_preproc_def_token1] = ACTIONS(3561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3563), + [aux_sym_preproc_if_token1] = ACTIONS(3561), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3561), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3561), + [sym_preproc_directive] = ACTIONS(3561), + [anon_sym_LPAREN2] = ACTIONS(3563), + [anon_sym_BANG] = ACTIONS(3563), + [anon_sym_TILDE] = ACTIONS(3563), + [anon_sym_DASH] = ACTIONS(3561), + [anon_sym_PLUS] = ACTIONS(3561), + [anon_sym_STAR] = ACTIONS(3563), + [anon_sym_AMP_AMP] = ACTIONS(3563), + [anon_sym_AMP] = ACTIONS(3561), + [anon_sym_SEMI] = ACTIONS(3563), + [anon_sym___extension__] = ACTIONS(3561), + [anon_sym_typedef] = ACTIONS(3561), + [anon_sym_extern] = ACTIONS(3561), + [anon_sym___attribute__] = ACTIONS(3561), + [anon_sym_COLON_COLON] = ACTIONS(3563), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3563), + [anon_sym___declspec] = ACTIONS(3561), + [anon_sym___based] = ACTIONS(3561), + [anon_sym___cdecl] = ACTIONS(3561), + [anon_sym___clrcall] = ACTIONS(3561), + [anon_sym___stdcall] = ACTIONS(3561), + [anon_sym___fastcall] = ACTIONS(3561), + [anon_sym___thiscall] = ACTIONS(3561), + [anon_sym___vectorcall] = ACTIONS(3561), + [anon_sym_LBRACE] = ACTIONS(3563), + [anon_sym_RBRACE] = ACTIONS(3563), + [anon_sym_signed] = ACTIONS(3561), + [anon_sym_unsigned] = ACTIONS(3561), + [anon_sym_long] = ACTIONS(3561), + [anon_sym_short] = ACTIONS(3561), + [anon_sym_LBRACK] = ACTIONS(3561), + [anon_sym_static] = ACTIONS(3561), + [anon_sym_register] = ACTIONS(3561), + [anon_sym_inline] = ACTIONS(3561), + [anon_sym___inline] = ACTIONS(3561), + [anon_sym___inline__] = ACTIONS(3561), + [anon_sym___forceinline] = ACTIONS(3561), + [anon_sym_thread_local] = ACTIONS(3561), + [anon_sym___thread] = ACTIONS(3561), + [anon_sym_const] = ACTIONS(3561), + [anon_sym_constexpr] = ACTIONS(3561), + [anon_sym_volatile] = ACTIONS(3561), + [anon_sym_restrict] = ACTIONS(3561), + [anon_sym___restrict__] = ACTIONS(3561), + [anon_sym__Atomic] = ACTIONS(3561), + [anon_sym__Noreturn] = ACTIONS(3561), + [anon_sym_noreturn] = ACTIONS(3561), + [anon_sym_mutable] = ACTIONS(3561), + [anon_sym_constinit] = ACTIONS(3561), + [anon_sym_consteval] = ACTIONS(3561), + [sym_primitive_type] = ACTIONS(3561), + [anon_sym_enum] = ACTIONS(3561), + [anon_sym_class] = ACTIONS(3561), + [anon_sym_struct] = ACTIONS(3561), + [anon_sym_union] = ACTIONS(3561), + [anon_sym_if] = ACTIONS(3561), + [anon_sym_switch] = ACTIONS(3561), + [anon_sym_case] = ACTIONS(3561), + [anon_sym_default] = ACTIONS(3561), + [anon_sym_while] = ACTIONS(3561), + [anon_sym_do] = ACTIONS(3561), + [anon_sym_for] = ACTIONS(3561), + [anon_sym_return] = ACTIONS(3561), + [anon_sym_break] = ACTIONS(3561), + [anon_sym_continue] = ACTIONS(3561), + [anon_sym_goto] = ACTIONS(3561), + [anon_sym___try] = ACTIONS(3561), + [anon_sym___leave] = ACTIONS(3561), + [anon_sym_not] = ACTIONS(3561), + [anon_sym_compl] = ACTIONS(3561), + [anon_sym_DASH_DASH] = ACTIONS(3563), + [anon_sym_PLUS_PLUS] = ACTIONS(3563), + [anon_sym_sizeof] = ACTIONS(3561), + [anon_sym___alignof__] = ACTIONS(3561), + [anon_sym___alignof] = ACTIONS(3561), + [anon_sym__alignof] = ACTIONS(3561), + [anon_sym_alignof] = ACTIONS(3561), + [anon_sym__Alignof] = ACTIONS(3561), + [anon_sym_offsetof] = ACTIONS(3561), + [anon_sym__Generic] = ACTIONS(3561), + [anon_sym_asm] = ACTIONS(3561), + [anon_sym___asm__] = ACTIONS(3561), + [sym_number_literal] = ACTIONS(3563), + [anon_sym_L_SQUOTE] = ACTIONS(3563), + [anon_sym_u_SQUOTE] = ACTIONS(3563), + [anon_sym_U_SQUOTE] = ACTIONS(3563), + [anon_sym_u8_SQUOTE] = ACTIONS(3563), + [anon_sym_SQUOTE] = ACTIONS(3563), + [anon_sym_L_DQUOTE] = ACTIONS(3563), + [anon_sym_u_DQUOTE] = ACTIONS(3563), + [anon_sym_U_DQUOTE] = ACTIONS(3563), + [anon_sym_u8_DQUOTE] = ACTIONS(3563), + [anon_sym_DQUOTE] = ACTIONS(3563), + [sym_true] = ACTIONS(3561), + [sym_false] = ACTIONS(3561), + [anon_sym_NULL] = ACTIONS(3561), + [anon_sym_nullptr] = ACTIONS(3561), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3561), + [anon_sym_decltype] = ACTIONS(3561), + [anon_sym_virtual] = ACTIONS(3561), + [anon_sym_alignas] = ACTIONS(3561), + [anon_sym_explicit] = ACTIONS(3561), + [anon_sym_typename] = ACTIONS(3561), + [anon_sym_template] = ACTIONS(3561), + [anon_sym_operator] = ACTIONS(3561), + [anon_sym_try] = ACTIONS(3561), + [anon_sym_delete] = ACTIONS(3561), + [anon_sym_throw] = ACTIONS(3561), + [anon_sym_namespace] = ACTIONS(3561), + [anon_sym_using] = ACTIONS(3561), + [anon_sym_static_assert] = ACTIONS(3561), + [anon_sym_concept] = ACTIONS(3561), + [anon_sym_co_return] = ACTIONS(3561), + [anon_sym_co_yield] = ACTIONS(3561), + [anon_sym_R_DQUOTE] = ACTIONS(3563), + [anon_sym_LR_DQUOTE] = ACTIONS(3563), + [anon_sym_uR_DQUOTE] = ACTIONS(3563), + [anon_sym_UR_DQUOTE] = ACTIONS(3563), + [anon_sym_u8R_DQUOTE] = ACTIONS(3563), + [anon_sym_co_await] = ACTIONS(3561), + [anon_sym_new] = ACTIONS(3561), + [anon_sym_requires] = ACTIONS(3561), + [sym_this] = ACTIONS(3561), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3563), + [sym_semgrep_named_ellipsis] = ACTIONS(3563), + }, + [783] = { + [sym_identifier] = ACTIONS(3565), + [aux_sym_preproc_include_token1] = ACTIONS(3565), + [aux_sym_preproc_def_token1] = ACTIONS(3565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3567), + [aux_sym_preproc_if_token1] = ACTIONS(3565), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3565), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3565), + [sym_preproc_directive] = ACTIONS(3565), + [anon_sym_LPAREN2] = ACTIONS(3567), + [anon_sym_BANG] = ACTIONS(3567), + [anon_sym_TILDE] = ACTIONS(3567), + [anon_sym_DASH] = ACTIONS(3565), + [anon_sym_PLUS] = ACTIONS(3565), + [anon_sym_STAR] = ACTIONS(3567), + [anon_sym_AMP_AMP] = ACTIONS(3567), + [anon_sym_AMP] = ACTIONS(3565), + [anon_sym_SEMI] = ACTIONS(3567), + [anon_sym___extension__] = ACTIONS(3565), + [anon_sym_typedef] = ACTIONS(3565), + [anon_sym_extern] = ACTIONS(3565), + [anon_sym___attribute__] = ACTIONS(3565), + [anon_sym_COLON_COLON] = ACTIONS(3567), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3567), + [anon_sym___declspec] = ACTIONS(3565), + [anon_sym___based] = ACTIONS(3565), + [anon_sym___cdecl] = ACTIONS(3565), + [anon_sym___clrcall] = ACTIONS(3565), + [anon_sym___stdcall] = ACTIONS(3565), + [anon_sym___fastcall] = ACTIONS(3565), + [anon_sym___thiscall] = ACTIONS(3565), + [anon_sym___vectorcall] = ACTIONS(3565), + [anon_sym_LBRACE] = ACTIONS(3567), + [anon_sym_RBRACE] = ACTIONS(3567), + [anon_sym_signed] = ACTIONS(3565), + [anon_sym_unsigned] = ACTIONS(3565), + [anon_sym_long] = ACTIONS(3565), + [anon_sym_short] = ACTIONS(3565), + [anon_sym_LBRACK] = ACTIONS(3565), + [anon_sym_static] = ACTIONS(3565), + [anon_sym_register] = ACTIONS(3565), + [anon_sym_inline] = ACTIONS(3565), + [anon_sym___inline] = ACTIONS(3565), + [anon_sym___inline__] = ACTIONS(3565), + [anon_sym___forceinline] = ACTIONS(3565), + [anon_sym_thread_local] = ACTIONS(3565), + [anon_sym___thread] = ACTIONS(3565), + [anon_sym_const] = ACTIONS(3565), + [anon_sym_constexpr] = ACTIONS(3565), + [anon_sym_volatile] = ACTIONS(3565), + [anon_sym_restrict] = ACTIONS(3565), + [anon_sym___restrict__] = ACTIONS(3565), + [anon_sym__Atomic] = ACTIONS(3565), + [anon_sym__Noreturn] = ACTIONS(3565), + [anon_sym_noreturn] = ACTIONS(3565), + [anon_sym_mutable] = ACTIONS(3565), + [anon_sym_constinit] = ACTIONS(3565), + [anon_sym_consteval] = ACTIONS(3565), + [sym_primitive_type] = ACTIONS(3565), + [anon_sym_enum] = ACTIONS(3565), + [anon_sym_class] = ACTIONS(3565), + [anon_sym_struct] = ACTIONS(3565), + [anon_sym_union] = ACTIONS(3565), + [anon_sym_if] = ACTIONS(3565), + [anon_sym_switch] = ACTIONS(3565), + [anon_sym_case] = ACTIONS(3565), + [anon_sym_default] = ACTIONS(3565), + [anon_sym_while] = ACTIONS(3565), + [anon_sym_do] = ACTIONS(3565), + [anon_sym_for] = ACTIONS(3565), + [anon_sym_return] = ACTIONS(3565), + [anon_sym_break] = ACTIONS(3565), + [anon_sym_continue] = ACTIONS(3565), + [anon_sym_goto] = ACTIONS(3565), + [anon_sym___try] = ACTIONS(3565), + [anon_sym___leave] = ACTIONS(3565), + [anon_sym_not] = ACTIONS(3565), + [anon_sym_compl] = ACTIONS(3565), + [anon_sym_DASH_DASH] = ACTIONS(3567), + [anon_sym_PLUS_PLUS] = ACTIONS(3567), + [anon_sym_sizeof] = ACTIONS(3565), + [anon_sym___alignof__] = ACTIONS(3565), + [anon_sym___alignof] = ACTIONS(3565), + [anon_sym__alignof] = ACTIONS(3565), + [anon_sym_alignof] = ACTIONS(3565), + [anon_sym__Alignof] = ACTIONS(3565), + [anon_sym_offsetof] = ACTIONS(3565), + [anon_sym__Generic] = ACTIONS(3565), + [anon_sym_asm] = ACTIONS(3565), + [anon_sym___asm__] = ACTIONS(3565), + [sym_number_literal] = ACTIONS(3567), + [anon_sym_L_SQUOTE] = ACTIONS(3567), + [anon_sym_u_SQUOTE] = ACTIONS(3567), + [anon_sym_U_SQUOTE] = ACTIONS(3567), + [anon_sym_u8_SQUOTE] = ACTIONS(3567), + [anon_sym_SQUOTE] = ACTIONS(3567), + [anon_sym_L_DQUOTE] = ACTIONS(3567), + [anon_sym_u_DQUOTE] = ACTIONS(3567), + [anon_sym_U_DQUOTE] = ACTIONS(3567), + [anon_sym_u8_DQUOTE] = ACTIONS(3567), + [anon_sym_DQUOTE] = ACTIONS(3567), + [sym_true] = ACTIONS(3565), + [sym_false] = ACTIONS(3565), + [anon_sym_NULL] = ACTIONS(3565), + [anon_sym_nullptr] = ACTIONS(3565), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3565), + [anon_sym_decltype] = ACTIONS(3565), + [anon_sym_virtual] = ACTIONS(3565), + [anon_sym_alignas] = ACTIONS(3565), + [anon_sym_explicit] = ACTIONS(3565), + [anon_sym_typename] = ACTIONS(3565), + [anon_sym_template] = ACTIONS(3565), + [anon_sym_operator] = ACTIONS(3565), + [anon_sym_try] = ACTIONS(3565), + [anon_sym_delete] = ACTIONS(3565), + [anon_sym_throw] = ACTIONS(3565), + [anon_sym_namespace] = ACTIONS(3565), + [anon_sym_using] = ACTIONS(3565), + [anon_sym_static_assert] = ACTIONS(3565), + [anon_sym_concept] = ACTIONS(3565), + [anon_sym_co_return] = ACTIONS(3565), + [anon_sym_co_yield] = ACTIONS(3565), + [anon_sym_R_DQUOTE] = ACTIONS(3567), + [anon_sym_LR_DQUOTE] = ACTIONS(3567), + [anon_sym_uR_DQUOTE] = ACTIONS(3567), + [anon_sym_UR_DQUOTE] = ACTIONS(3567), + [anon_sym_u8R_DQUOTE] = ACTIONS(3567), + [anon_sym_co_await] = ACTIONS(3565), + [anon_sym_new] = ACTIONS(3565), + [anon_sym_requires] = ACTIONS(3565), + [sym_this] = ACTIONS(3565), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3567), + [sym_semgrep_named_ellipsis] = ACTIONS(3567), + }, [784] = { - [sym_identifier] = ACTIONS(3388), - [aux_sym_preproc_include_token1] = ACTIONS(3388), - [aux_sym_preproc_def_token1] = ACTIONS(3388), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3390), - [aux_sym_preproc_if_token1] = ACTIONS(3388), - [aux_sym_preproc_if_token2] = ACTIONS(3388), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3388), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3388), - [sym_preproc_directive] = ACTIONS(3388), - [anon_sym_LPAREN2] = ACTIONS(3390), - [anon_sym_BANG] = ACTIONS(3390), - [anon_sym_TILDE] = ACTIONS(3390), - [anon_sym_DASH] = ACTIONS(3388), - [anon_sym_PLUS] = ACTIONS(3388), - [anon_sym_STAR] = ACTIONS(3390), - [anon_sym_AMP_AMP] = ACTIONS(3390), - [anon_sym_AMP] = ACTIONS(3388), - [anon_sym_SEMI] = ACTIONS(3390), - [anon_sym___extension__] = ACTIONS(3388), - [anon_sym_typedef] = ACTIONS(3388), - [anon_sym_extern] = ACTIONS(3388), - [anon_sym___attribute__] = ACTIONS(3388), - [anon_sym_COLON_COLON] = ACTIONS(3390), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3390), - [anon_sym___declspec] = ACTIONS(3388), - [anon_sym___based] = ACTIONS(3388), - [anon_sym___cdecl] = ACTIONS(3388), - [anon_sym___clrcall] = ACTIONS(3388), - [anon_sym___stdcall] = ACTIONS(3388), - [anon_sym___fastcall] = ACTIONS(3388), - [anon_sym___thiscall] = ACTIONS(3388), - [anon_sym___vectorcall] = ACTIONS(3388), - [anon_sym_LBRACE] = ACTIONS(3390), - [anon_sym_signed] = ACTIONS(3388), - [anon_sym_unsigned] = ACTIONS(3388), - [anon_sym_long] = ACTIONS(3388), - [anon_sym_short] = ACTIONS(3388), - [anon_sym_LBRACK] = ACTIONS(3388), - [anon_sym_static] = ACTIONS(3388), - [anon_sym_register] = ACTIONS(3388), - [anon_sym_inline] = ACTIONS(3388), - [anon_sym___inline] = ACTIONS(3388), - [anon_sym___inline__] = ACTIONS(3388), - [anon_sym___forceinline] = ACTIONS(3388), - [anon_sym_thread_local] = ACTIONS(3388), - [anon_sym___thread] = ACTIONS(3388), - [anon_sym_const] = ACTIONS(3388), - [anon_sym_constexpr] = ACTIONS(3388), - [anon_sym_volatile] = ACTIONS(3388), - [anon_sym_restrict] = ACTIONS(3388), - [anon_sym___restrict__] = ACTIONS(3388), - [anon_sym__Atomic] = ACTIONS(3388), - [anon_sym__Noreturn] = ACTIONS(3388), - [anon_sym_noreturn] = ACTIONS(3388), - [anon_sym_mutable] = ACTIONS(3388), - [anon_sym_constinit] = ACTIONS(3388), - [anon_sym_consteval] = ACTIONS(3388), - [sym_primitive_type] = ACTIONS(3388), - [anon_sym_enum] = ACTIONS(3388), - [anon_sym_class] = ACTIONS(3388), - [anon_sym_struct] = ACTIONS(3388), - [anon_sym_union] = ACTIONS(3388), - [anon_sym_if] = ACTIONS(3388), - [anon_sym_switch] = ACTIONS(3388), - [anon_sym_case] = ACTIONS(3388), - [anon_sym_default] = ACTIONS(3388), - [anon_sym_while] = ACTIONS(3388), - [anon_sym_do] = ACTIONS(3388), - [anon_sym_for] = ACTIONS(3388), - [anon_sym_return] = ACTIONS(3388), - [anon_sym_break] = ACTIONS(3388), - [anon_sym_continue] = ACTIONS(3388), - [anon_sym_goto] = ACTIONS(3388), - [anon_sym___try] = ACTIONS(3388), - [anon_sym___leave] = ACTIONS(3388), - [anon_sym_not] = ACTIONS(3388), - [anon_sym_compl] = ACTIONS(3388), - [anon_sym_DASH_DASH] = ACTIONS(3390), - [anon_sym_PLUS_PLUS] = ACTIONS(3390), - [anon_sym_sizeof] = ACTIONS(3388), - [anon_sym___alignof__] = ACTIONS(3388), - [anon_sym___alignof] = ACTIONS(3388), - [anon_sym__alignof] = ACTIONS(3388), - [anon_sym_alignof] = ACTIONS(3388), - [anon_sym__Alignof] = ACTIONS(3388), - [anon_sym_offsetof] = ACTIONS(3388), - [anon_sym__Generic] = ACTIONS(3388), - [anon_sym_asm] = ACTIONS(3388), - [anon_sym___asm__] = ACTIONS(3388), - [sym_number_literal] = ACTIONS(3390), - [anon_sym_L_SQUOTE] = ACTIONS(3390), - [anon_sym_u_SQUOTE] = ACTIONS(3390), - [anon_sym_U_SQUOTE] = ACTIONS(3390), - [anon_sym_u8_SQUOTE] = ACTIONS(3390), - [anon_sym_SQUOTE] = ACTIONS(3390), - [anon_sym_L_DQUOTE] = ACTIONS(3390), - [anon_sym_u_DQUOTE] = ACTIONS(3390), - [anon_sym_U_DQUOTE] = ACTIONS(3390), - [anon_sym_u8_DQUOTE] = ACTIONS(3390), - [anon_sym_DQUOTE] = ACTIONS(3390), - [sym_true] = ACTIONS(3388), - [sym_false] = ACTIONS(3388), - [anon_sym_NULL] = ACTIONS(3388), - [anon_sym_nullptr] = ACTIONS(3388), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3388), - [anon_sym_decltype] = ACTIONS(3388), - [anon_sym_virtual] = ACTIONS(3388), - [anon_sym_alignas] = ACTIONS(3388), - [anon_sym_explicit] = ACTIONS(3388), - [anon_sym_typename] = ACTIONS(3388), - [anon_sym_template] = ACTIONS(3388), - [anon_sym_operator] = ACTIONS(3388), - [anon_sym_try] = ACTIONS(3388), - [anon_sym_delete] = ACTIONS(3388), - [anon_sym_throw] = ACTIONS(3388), - [anon_sym_namespace] = ACTIONS(3388), - [anon_sym_using] = ACTIONS(3388), - [anon_sym_static_assert] = ACTIONS(3388), - [anon_sym_concept] = ACTIONS(3388), - [anon_sym_co_return] = ACTIONS(3388), - [anon_sym_co_yield] = ACTIONS(3388), - [anon_sym_R_DQUOTE] = ACTIONS(3390), - [anon_sym_LR_DQUOTE] = ACTIONS(3390), - [anon_sym_uR_DQUOTE] = ACTIONS(3390), - [anon_sym_UR_DQUOTE] = ACTIONS(3390), - [anon_sym_u8R_DQUOTE] = ACTIONS(3390), - [anon_sym_co_await] = ACTIONS(3388), - [anon_sym_new] = ACTIONS(3388), - [anon_sym_requires] = ACTIONS(3388), - [sym_this] = ACTIONS(3388), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3390), - [sym_semgrep_named_ellipsis] = ACTIONS(3390), + [sym_identifier] = ACTIONS(3571), + [aux_sym_preproc_include_token1] = ACTIONS(3571), + [aux_sym_preproc_def_token1] = ACTIONS(3571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3573), + [aux_sym_preproc_if_token1] = ACTIONS(3571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3571), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3571), + [sym_preproc_directive] = ACTIONS(3571), + [anon_sym_LPAREN2] = ACTIONS(3573), + [anon_sym_BANG] = ACTIONS(3573), + [anon_sym_TILDE] = ACTIONS(3573), + [anon_sym_DASH] = ACTIONS(3571), + [anon_sym_PLUS] = ACTIONS(3571), + [anon_sym_STAR] = ACTIONS(3573), + [anon_sym_AMP_AMP] = ACTIONS(3573), + [anon_sym_AMP] = ACTIONS(3571), + [anon_sym_SEMI] = ACTIONS(3573), + [anon_sym___extension__] = ACTIONS(3571), + [anon_sym_typedef] = ACTIONS(3571), + [anon_sym_extern] = ACTIONS(3571), + [anon_sym___attribute__] = ACTIONS(3571), + [anon_sym_COLON_COLON] = ACTIONS(3573), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3573), + [anon_sym___declspec] = ACTIONS(3571), + [anon_sym___based] = ACTIONS(3571), + [anon_sym___cdecl] = ACTIONS(3571), + [anon_sym___clrcall] = ACTIONS(3571), + [anon_sym___stdcall] = ACTIONS(3571), + [anon_sym___fastcall] = ACTIONS(3571), + [anon_sym___thiscall] = ACTIONS(3571), + [anon_sym___vectorcall] = ACTIONS(3571), + [anon_sym_LBRACE] = ACTIONS(3573), + [anon_sym_RBRACE] = ACTIONS(3573), + [anon_sym_signed] = ACTIONS(3571), + [anon_sym_unsigned] = ACTIONS(3571), + [anon_sym_long] = ACTIONS(3571), + [anon_sym_short] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(3571), + [anon_sym_static] = ACTIONS(3571), + [anon_sym_register] = ACTIONS(3571), + [anon_sym_inline] = ACTIONS(3571), + [anon_sym___inline] = ACTIONS(3571), + [anon_sym___inline__] = ACTIONS(3571), + [anon_sym___forceinline] = ACTIONS(3571), + [anon_sym_thread_local] = ACTIONS(3571), + [anon_sym___thread] = ACTIONS(3571), + [anon_sym_const] = ACTIONS(3571), + [anon_sym_constexpr] = ACTIONS(3571), + [anon_sym_volatile] = ACTIONS(3571), + [anon_sym_restrict] = ACTIONS(3571), + [anon_sym___restrict__] = ACTIONS(3571), + [anon_sym__Atomic] = ACTIONS(3571), + [anon_sym__Noreturn] = ACTIONS(3571), + [anon_sym_noreturn] = ACTIONS(3571), + [anon_sym_mutable] = ACTIONS(3571), + [anon_sym_constinit] = ACTIONS(3571), + [anon_sym_consteval] = ACTIONS(3571), + [sym_primitive_type] = ACTIONS(3571), + [anon_sym_enum] = ACTIONS(3571), + [anon_sym_class] = ACTIONS(3571), + [anon_sym_struct] = ACTIONS(3571), + [anon_sym_union] = ACTIONS(3571), + [anon_sym_if] = ACTIONS(3571), + [anon_sym_switch] = ACTIONS(3571), + [anon_sym_case] = ACTIONS(3571), + [anon_sym_default] = ACTIONS(3571), + [anon_sym_while] = ACTIONS(3571), + [anon_sym_do] = ACTIONS(3571), + [anon_sym_for] = ACTIONS(3571), + [anon_sym_return] = ACTIONS(3571), + [anon_sym_break] = ACTIONS(3571), + [anon_sym_continue] = ACTIONS(3571), + [anon_sym_goto] = ACTIONS(3571), + [anon_sym___try] = ACTIONS(3571), + [anon_sym___leave] = ACTIONS(3571), + [anon_sym_not] = ACTIONS(3571), + [anon_sym_compl] = ACTIONS(3571), + [anon_sym_DASH_DASH] = ACTIONS(3573), + [anon_sym_PLUS_PLUS] = ACTIONS(3573), + [anon_sym_sizeof] = ACTIONS(3571), + [anon_sym___alignof__] = ACTIONS(3571), + [anon_sym___alignof] = ACTIONS(3571), + [anon_sym__alignof] = ACTIONS(3571), + [anon_sym_alignof] = ACTIONS(3571), + [anon_sym__Alignof] = ACTIONS(3571), + [anon_sym_offsetof] = ACTIONS(3571), + [anon_sym__Generic] = ACTIONS(3571), + [anon_sym_asm] = ACTIONS(3571), + [anon_sym___asm__] = ACTIONS(3571), + [sym_number_literal] = ACTIONS(3573), + [anon_sym_L_SQUOTE] = ACTIONS(3573), + [anon_sym_u_SQUOTE] = ACTIONS(3573), + [anon_sym_U_SQUOTE] = ACTIONS(3573), + [anon_sym_u8_SQUOTE] = ACTIONS(3573), + [anon_sym_SQUOTE] = ACTIONS(3573), + [anon_sym_L_DQUOTE] = ACTIONS(3573), + [anon_sym_u_DQUOTE] = ACTIONS(3573), + [anon_sym_U_DQUOTE] = ACTIONS(3573), + [anon_sym_u8_DQUOTE] = ACTIONS(3573), + [anon_sym_DQUOTE] = ACTIONS(3573), + [sym_true] = ACTIONS(3571), + [sym_false] = ACTIONS(3571), + [anon_sym_NULL] = ACTIONS(3571), + [anon_sym_nullptr] = ACTIONS(3571), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3571), + [anon_sym_decltype] = ACTIONS(3571), + [anon_sym_virtual] = ACTIONS(3571), + [anon_sym_alignas] = ACTIONS(3571), + [anon_sym_explicit] = ACTIONS(3571), + [anon_sym_typename] = ACTIONS(3571), + [anon_sym_template] = ACTIONS(3571), + [anon_sym_operator] = ACTIONS(3571), + [anon_sym_try] = ACTIONS(3571), + [anon_sym_delete] = ACTIONS(3571), + [anon_sym_throw] = ACTIONS(3571), + [anon_sym_namespace] = ACTIONS(3571), + [anon_sym_using] = ACTIONS(3571), + [anon_sym_static_assert] = ACTIONS(3571), + [anon_sym_concept] = ACTIONS(3571), + [anon_sym_co_return] = ACTIONS(3571), + [anon_sym_co_yield] = ACTIONS(3571), + [anon_sym_R_DQUOTE] = ACTIONS(3573), + [anon_sym_LR_DQUOTE] = ACTIONS(3573), + [anon_sym_uR_DQUOTE] = ACTIONS(3573), + [anon_sym_UR_DQUOTE] = ACTIONS(3573), + [anon_sym_u8R_DQUOTE] = ACTIONS(3573), + [anon_sym_co_await] = ACTIONS(3571), + [anon_sym_new] = ACTIONS(3571), + [anon_sym_requires] = ACTIONS(3571), + [sym_this] = ACTIONS(3571), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3573), + [sym_semgrep_named_ellipsis] = ACTIONS(3573), }, [785] = { - [sym_identifier] = ACTIONS(3392), - [aux_sym_preproc_include_token1] = ACTIONS(3392), - [aux_sym_preproc_def_token1] = ACTIONS(3392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3394), - [aux_sym_preproc_if_token1] = ACTIONS(3392), - [aux_sym_preproc_if_token2] = ACTIONS(3392), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3392), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3392), - [sym_preproc_directive] = ACTIONS(3392), - [anon_sym_LPAREN2] = ACTIONS(3394), - [anon_sym_BANG] = ACTIONS(3394), - [anon_sym_TILDE] = ACTIONS(3394), - [anon_sym_DASH] = ACTIONS(3392), - [anon_sym_PLUS] = ACTIONS(3392), - [anon_sym_STAR] = ACTIONS(3394), - [anon_sym_AMP_AMP] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3392), - [anon_sym_SEMI] = ACTIONS(3394), - [anon_sym___extension__] = ACTIONS(3392), - [anon_sym_typedef] = ACTIONS(3392), - [anon_sym_extern] = ACTIONS(3392), - [anon_sym___attribute__] = ACTIONS(3392), - [anon_sym_COLON_COLON] = ACTIONS(3394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3394), - [anon_sym___declspec] = ACTIONS(3392), - [anon_sym___based] = ACTIONS(3392), - [anon_sym___cdecl] = ACTIONS(3392), - [anon_sym___clrcall] = ACTIONS(3392), - [anon_sym___stdcall] = ACTIONS(3392), - [anon_sym___fastcall] = ACTIONS(3392), - [anon_sym___thiscall] = ACTIONS(3392), - [anon_sym___vectorcall] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(3394), - [anon_sym_signed] = ACTIONS(3392), - [anon_sym_unsigned] = ACTIONS(3392), - [anon_sym_long] = ACTIONS(3392), - [anon_sym_short] = ACTIONS(3392), - [anon_sym_LBRACK] = ACTIONS(3392), - [anon_sym_static] = ACTIONS(3392), - [anon_sym_register] = ACTIONS(3392), - [anon_sym_inline] = ACTIONS(3392), - [anon_sym___inline] = ACTIONS(3392), - [anon_sym___inline__] = ACTIONS(3392), - [anon_sym___forceinline] = ACTIONS(3392), - [anon_sym_thread_local] = ACTIONS(3392), - [anon_sym___thread] = ACTIONS(3392), - [anon_sym_const] = ACTIONS(3392), - [anon_sym_constexpr] = ACTIONS(3392), - [anon_sym_volatile] = ACTIONS(3392), - [anon_sym_restrict] = ACTIONS(3392), - [anon_sym___restrict__] = ACTIONS(3392), - [anon_sym__Atomic] = ACTIONS(3392), - [anon_sym__Noreturn] = ACTIONS(3392), - [anon_sym_noreturn] = ACTIONS(3392), - [anon_sym_mutable] = ACTIONS(3392), - [anon_sym_constinit] = ACTIONS(3392), - [anon_sym_consteval] = ACTIONS(3392), - [sym_primitive_type] = ACTIONS(3392), - [anon_sym_enum] = ACTIONS(3392), - [anon_sym_class] = ACTIONS(3392), - [anon_sym_struct] = ACTIONS(3392), - [anon_sym_union] = ACTIONS(3392), - [anon_sym_if] = ACTIONS(3392), - [anon_sym_switch] = ACTIONS(3392), - [anon_sym_case] = ACTIONS(3392), - [anon_sym_default] = ACTIONS(3392), - [anon_sym_while] = ACTIONS(3392), - [anon_sym_do] = ACTIONS(3392), - [anon_sym_for] = ACTIONS(3392), - [anon_sym_return] = ACTIONS(3392), - [anon_sym_break] = ACTIONS(3392), - [anon_sym_continue] = ACTIONS(3392), - [anon_sym_goto] = ACTIONS(3392), - [anon_sym___try] = ACTIONS(3392), - [anon_sym___leave] = ACTIONS(3392), - [anon_sym_not] = ACTIONS(3392), - [anon_sym_compl] = ACTIONS(3392), - [anon_sym_DASH_DASH] = ACTIONS(3394), - [anon_sym_PLUS_PLUS] = ACTIONS(3394), - [anon_sym_sizeof] = ACTIONS(3392), - [anon_sym___alignof__] = ACTIONS(3392), - [anon_sym___alignof] = ACTIONS(3392), - [anon_sym__alignof] = ACTIONS(3392), - [anon_sym_alignof] = ACTIONS(3392), - [anon_sym__Alignof] = ACTIONS(3392), - [anon_sym_offsetof] = ACTIONS(3392), - [anon_sym__Generic] = ACTIONS(3392), - [anon_sym_asm] = ACTIONS(3392), - [anon_sym___asm__] = ACTIONS(3392), - [sym_number_literal] = ACTIONS(3394), - [anon_sym_L_SQUOTE] = ACTIONS(3394), - [anon_sym_u_SQUOTE] = ACTIONS(3394), - [anon_sym_U_SQUOTE] = ACTIONS(3394), - [anon_sym_u8_SQUOTE] = ACTIONS(3394), - [anon_sym_SQUOTE] = ACTIONS(3394), - [anon_sym_L_DQUOTE] = ACTIONS(3394), - [anon_sym_u_DQUOTE] = ACTIONS(3394), - [anon_sym_U_DQUOTE] = ACTIONS(3394), - [anon_sym_u8_DQUOTE] = ACTIONS(3394), - [anon_sym_DQUOTE] = ACTIONS(3394), - [sym_true] = ACTIONS(3392), - [sym_false] = ACTIONS(3392), - [anon_sym_NULL] = ACTIONS(3392), - [anon_sym_nullptr] = ACTIONS(3392), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3392), - [anon_sym_decltype] = ACTIONS(3392), - [anon_sym_virtual] = ACTIONS(3392), - [anon_sym_alignas] = ACTIONS(3392), - [anon_sym_explicit] = ACTIONS(3392), - [anon_sym_typename] = ACTIONS(3392), - [anon_sym_template] = ACTIONS(3392), - [anon_sym_operator] = ACTIONS(3392), - [anon_sym_try] = ACTIONS(3392), - [anon_sym_delete] = ACTIONS(3392), - [anon_sym_throw] = ACTIONS(3392), - [anon_sym_namespace] = ACTIONS(3392), - [anon_sym_using] = ACTIONS(3392), - [anon_sym_static_assert] = ACTIONS(3392), - [anon_sym_concept] = ACTIONS(3392), - [anon_sym_co_return] = ACTIONS(3392), - [anon_sym_co_yield] = ACTIONS(3392), - [anon_sym_R_DQUOTE] = ACTIONS(3394), - [anon_sym_LR_DQUOTE] = ACTIONS(3394), - [anon_sym_uR_DQUOTE] = ACTIONS(3394), - [anon_sym_UR_DQUOTE] = ACTIONS(3394), - [anon_sym_u8R_DQUOTE] = ACTIONS(3394), - [anon_sym_co_await] = ACTIONS(3392), - [anon_sym_new] = ACTIONS(3392), - [anon_sym_requires] = ACTIONS(3392), - [sym_this] = ACTIONS(3392), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3394), - [sym_semgrep_named_ellipsis] = ACTIONS(3394), + [sym_identifier] = ACTIONS(3410), + [aux_sym_preproc_include_token1] = ACTIONS(3410), + [aux_sym_preproc_def_token1] = ACTIONS(3410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3412), + [aux_sym_preproc_if_token1] = ACTIONS(3410), + [aux_sym_preproc_if_token2] = ACTIONS(3410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3410), + [sym_preproc_directive] = ACTIONS(3410), + [anon_sym_LPAREN2] = ACTIONS(3412), + [anon_sym_BANG] = ACTIONS(3412), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3410), + [anon_sym_PLUS] = ACTIONS(3410), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_AMP] = ACTIONS(3410), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym___extension__] = ACTIONS(3410), + [anon_sym_typedef] = ACTIONS(3410), + [anon_sym_extern] = ACTIONS(3410), + [anon_sym___attribute__] = ACTIONS(3410), + [anon_sym_COLON_COLON] = ACTIONS(3412), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3412), + [anon_sym___declspec] = ACTIONS(3410), + [anon_sym___based] = ACTIONS(3410), + [anon_sym___cdecl] = ACTIONS(3410), + [anon_sym___clrcall] = ACTIONS(3410), + [anon_sym___stdcall] = ACTIONS(3410), + [anon_sym___fastcall] = ACTIONS(3410), + [anon_sym___thiscall] = ACTIONS(3410), + [anon_sym___vectorcall] = ACTIONS(3410), + [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_signed] = ACTIONS(3410), + [anon_sym_unsigned] = ACTIONS(3410), + [anon_sym_long] = ACTIONS(3410), + [anon_sym_short] = ACTIONS(3410), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_static] = ACTIONS(3410), + [anon_sym_register] = ACTIONS(3410), + [anon_sym_inline] = ACTIONS(3410), + [anon_sym___inline] = ACTIONS(3410), + [anon_sym___inline__] = ACTIONS(3410), + [anon_sym___forceinline] = ACTIONS(3410), + [anon_sym_thread_local] = ACTIONS(3410), + [anon_sym___thread] = ACTIONS(3410), + [anon_sym_const] = ACTIONS(3410), + [anon_sym_constexpr] = ACTIONS(3410), + [anon_sym_volatile] = ACTIONS(3410), + [anon_sym_restrict] = ACTIONS(3410), + [anon_sym___restrict__] = ACTIONS(3410), + [anon_sym__Atomic] = ACTIONS(3410), + [anon_sym__Noreturn] = ACTIONS(3410), + [anon_sym_noreturn] = ACTIONS(3410), + [anon_sym_mutable] = ACTIONS(3410), + [anon_sym_constinit] = ACTIONS(3410), + [anon_sym_consteval] = ACTIONS(3410), + [sym_primitive_type] = ACTIONS(3410), + [anon_sym_enum] = ACTIONS(3410), + [anon_sym_class] = ACTIONS(3410), + [anon_sym_struct] = ACTIONS(3410), + [anon_sym_union] = ACTIONS(3410), + [anon_sym_if] = ACTIONS(3410), + [anon_sym_switch] = ACTIONS(3410), + [anon_sym_case] = ACTIONS(3410), + [anon_sym_default] = ACTIONS(3410), + [anon_sym_while] = ACTIONS(3410), + [anon_sym_do] = ACTIONS(3410), + [anon_sym_for] = ACTIONS(3410), + [anon_sym_return] = ACTIONS(3410), + [anon_sym_break] = ACTIONS(3410), + [anon_sym_continue] = ACTIONS(3410), + [anon_sym_goto] = ACTIONS(3410), + [anon_sym___try] = ACTIONS(3410), + [anon_sym___leave] = ACTIONS(3410), + [anon_sym_not] = ACTIONS(3410), + [anon_sym_compl] = ACTIONS(3410), + [anon_sym_DASH_DASH] = ACTIONS(3412), + [anon_sym_PLUS_PLUS] = ACTIONS(3412), + [anon_sym_sizeof] = ACTIONS(3410), + [anon_sym___alignof__] = ACTIONS(3410), + [anon_sym___alignof] = ACTIONS(3410), + [anon_sym__alignof] = ACTIONS(3410), + [anon_sym_alignof] = ACTIONS(3410), + [anon_sym__Alignof] = ACTIONS(3410), + [anon_sym_offsetof] = ACTIONS(3410), + [anon_sym__Generic] = ACTIONS(3410), + [anon_sym_asm] = ACTIONS(3410), + [anon_sym___asm__] = ACTIONS(3410), + [sym_number_literal] = ACTIONS(3412), + [anon_sym_L_SQUOTE] = ACTIONS(3412), + [anon_sym_u_SQUOTE] = ACTIONS(3412), + [anon_sym_U_SQUOTE] = ACTIONS(3412), + [anon_sym_u8_SQUOTE] = ACTIONS(3412), + [anon_sym_SQUOTE] = ACTIONS(3412), + [anon_sym_L_DQUOTE] = ACTIONS(3412), + [anon_sym_u_DQUOTE] = ACTIONS(3412), + [anon_sym_U_DQUOTE] = ACTIONS(3412), + [anon_sym_u8_DQUOTE] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3412), + [sym_true] = ACTIONS(3410), + [sym_false] = ACTIONS(3410), + [anon_sym_NULL] = ACTIONS(3410), + [anon_sym_nullptr] = ACTIONS(3410), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3410), + [anon_sym_decltype] = ACTIONS(3410), + [anon_sym_virtual] = ACTIONS(3410), + [anon_sym_alignas] = ACTIONS(3410), + [anon_sym_explicit] = ACTIONS(3410), + [anon_sym_typename] = ACTIONS(3410), + [anon_sym_template] = ACTIONS(3410), + [anon_sym_operator] = ACTIONS(3410), + [anon_sym_try] = ACTIONS(3410), + [anon_sym_delete] = ACTIONS(3410), + [anon_sym_throw] = ACTIONS(3410), + [anon_sym_namespace] = ACTIONS(3410), + [anon_sym_using] = ACTIONS(3410), + [anon_sym_static_assert] = ACTIONS(3410), + [anon_sym_concept] = ACTIONS(3410), + [anon_sym_co_return] = ACTIONS(3410), + [anon_sym_co_yield] = ACTIONS(3410), + [anon_sym_R_DQUOTE] = ACTIONS(3412), + [anon_sym_LR_DQUOTE] = ACTIONS(3412), + [anon_sym_uR_DQUOTE] = ACTIONS(3412), + [anon_sym_UR_DQUOTE] = ACTIONS(3412), + [anon_sym_u8R_DQUOTE] = ACTIONS(3412), + [anon_sym_co_await] = ACTIONS(3410), + [anon_sym_new] = ACTIONS(3410), + [anon_sym_requires] = ACTIONS(3410), + [sym_this] = ACTIONS(3410), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3412), + [sym_semgrep_named_ellipsis] = ACTIONS(3412), }, [786] = { - [sym_identifier] = ACTIONS(3396), - [aux_sym_preproc_include_token1] = ACTIONS(3396), - [aux_sym_preproc_def_token1] = ACTIONS(3396), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3398), - [aux_sym_preproc_if_token1] = ACTIONS(3396), - [aux_sym_preproc_if_token2] = ACTIONS(3396), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3396), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3396), - [sym_preproc_directive] = ACTIONS(3396), - [anon_sym_LPAREN2] = ACTIONS(3398), - [anon_sym_BANG] = ACTIONS(3398), - [anon_sym_TILDE] = ACTIONS(3398), - [anon_sym_DASH] = ACTIONS(3396), - [anon_sym_PLUS] = ACTIONS(3396), - [anon_sym_STAR] = ACTIONS(3398), - [anon_sym_AMP_AMP] = ACTIONS(3398), - [anon_sym_AMP] = ACTIONS(3396), - [anon_sym_SEMI] = ACTIONS(3398), - [anon_sym___extension__] = ACTIONS(3396), - [anon_sym_typedef] = ACTIONS(3396), - [anon_sym_extern] = ACTIONS(3396), - [anon_sym___attribute__] = ACTIONS(3396), - [anon_sym_COLON_COLON] = ACTIONS(3398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3398), - [anon_sym___declspec] = ACTIONS(3396), - [anon_sym___based] = ACTIONS(3396), - [anon_sym___cdecl] = ACTIONS(3396), - [anon_sym___clrcall] = ACTIONS(3396), - [anon_sym___stdcall] = ACTIONS(3396), - [anon_sym___fastcall] = ACTIONS(3396), - [anon_sym___thiscall] = ACTIONS(3396), - [anon_sym___vectorcall] = ACTIONS(3396), - [anon_sym_LBRACE] = ACTIONS(3398), - [anon_sym_signed] = ACTIONS(3396), - [anon_sym_unsigned] = ACTIONS(3396), - [anon_sym_long] = ACTIONS(3396), - [anon_sym_short] = ACTIONS(3396), - [anon_sym_LBRACK] = ACTIONS(3396), - [anon_sym_static] = ACTIONS(3396), - [anon_sym_register] = ACTIONS(3396), - [anon_sym_inline] = ACTIONS(3396), - [anon_sym___inline] = ACTIONS(3396), - [anon_sym___inline__] = ACTIONS(3396), - [anon_sym___forceinline] = ACTIONS(3396), - [anon_sym_thread_local] = ACTIONS(3396), - [anon_sym___thread] = ACTIONS(3396), - [anon_sym_const] = ACTIONS(3396), - [anon_sym_constexpr] = ACTIONS(3396), - [anon_sym_volatile] = ACTIONS(3396), - [anon_sym_restrict] = ACTIONS(3396), - [anon_sym___restrict__] = ACTIONS(3396), - [anon_sym__Atomic] = ACTIONS(3396), - [anon_sym__Noreturn] = ACTIONS(3396), - [anon_sym_noreturn] = ACTIONS(3396), - [anon_sym_mutable] = ACTIONS(3396), - [anon_sym_constinit] = ACTIONS(3396), - [anon_sym_consteval] = ACTIONS(3396), - [sym_primitive_type] = ACTIONS(3396), - [anon_sym_enum] = ACTIONS(3396), - [anon_sym_class] = ACTIONS(3396), - [anon_sym_struct] = ACTIONS(3396), - [anon_sym_union] = ACTIONS(3396), - [anon_sym_if] = ACTIONS(3396), - [anon_sym_switch] = ACTIONS(3396), - [anon_sym_case] = ACTIONS(3396), - [anon_sym_default] = ACTIONS(3396), - [anon_sym_while] = ACTIONS(3396), - [anon_sym_do] = ACTIONS(3396), - [anon_sym_for] = ACTIONS(3396), - [anon_sym_return] = ACTIONS(3396), - [anon_sym_break] = ACTIONS(3396), - [anon_sym_continue] = ACTIONS(3396), - [anon_sym_goto] = ACTIONS(3396), - [anon_sym___try] = ACTIONS(3396), - [anon_sym___leave] = ACTIONS(3396), - [anon_sym_not] = ACTIONS(3396), - [anon_sym_compl] = ACTIONS(3396), - [anon_sym_DASH_DASH] = ACTIONS(3398), - [anon_sym_PLUS_PLUS] = ACTIONS(3398), - [anon_sym_sizeof] = ACTIONS(3396), - [anon_sym___alignof__] = ACTIONS(3396), - [anon_sym___alignof] = ACTIONS(3396), - [anon_sym__alignof] = ACTIONS(3396), - [anon_sym_alignof] = ACTIONS(3396), - [anon_sym__Alignof] = ACTIONS(3396), - [anon_sym_offsetof] = ACTIONS(3396), - [anon_sym__Generic] = ACTIONS(3396), - [anon_sym_asm] = ACTIONS(3396), - [anon_sym___asm__] = ACTIONS(3396), - [sym_number_literal] = ACTIONS(3398), - [anon_sym_L_SQUOTE] = ACTIONS(3398), - [anon_sym_u_SQUOTE] = ACTIONS(3398), - [anon_sym_U_SQUOTE] = ACTIONS(3398), - [anon_sym_u8_SQUOTE] = ACTIONS(3398), - [anon_sym_SQUOTE] = ACTIONS(3398), - [anon_sym_L_DQUOTE] = ACTIONS(3398), - [anon_sym_u_DQUOTE] = ACTIONS(3398), - [anon_sym_U_DQUOTE] = ACTIONS(3398), - [anon_sym_u8_DQUOTE] = ACTIONS(3398), - [anon_sym_DQUOTE] = ACTIONS(3398), - [sym_true] = ACTIONS(3396), - [sym_false] = ACTIONS(3396), - [anon_sym_NULL] = ACTIONS(3396), - [anon_sym_nullptr] = ACTIONS(3396), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3396), - [anon_sym_decltype] = ACTIONS(3396), - [anon_sym_virtual] = ACTIONS(3396), - [anon_sym_alignas] = ACTIONS(3396), - [anon_sym_explicit] = ACTIONS(3396), - [anon_sym_typename] = ACTIONS(3396), - [anon_sym_template] = ACTIONS(3396), - [anon_sym_operator] = ACTIONS(3396), - [anon_sym_try] = ACTIONS(3396), - [anon_sym_delete] = ACTIONS(3396), - [anon_sym_throw] = ACTIONS(3396), - [anon_sym_namespace] = ACTIONS(3396), - [anon_sym_using] = ACTIONS(3396), - [anon_sym_static_assert] = ACTIONS(3396), - [anon_sym_concept] = ACTIONS(3396), - [anon_sym_co_return] = ACTIONS(3396), - [anon_sym_co_yield] = ACTIONS(3396), - [anon_sym_R_DQUOTE] = ACTIONS(3398), - [anon_sym_LR_DQUOTE] = ACTIONS(3398), - [anon_sym_uR_DQUOTE] = ACTIONS(3398), - [anon_sym_UR_DQUOTE] = ACTIONS(3398), - [anon_sym_u8R_DQUOTE] = ACTIONS(3398), - [anon_sym_co_await] = ACTIONS(3396), - [anon_sym_new] = ACTIONS(3396), - [anon_sym_requires] = ACTIONS(3396), - [sym_this] = ACTIONS(3396), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3398), - [sym_semgrep_named_ellipsis] = ACTIONS(3398), + [sym_identifier] = ACTIONS(3402), + [aux_sym_preproc_include_token1] = ACTIONS(3402), + [aux_sym_preproc_def_token1] = ACTIONS(3402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3404), + [aux_sym_preproc_if_token1] = ACTIONS(3402), + [aux_sym_preproc_if_token2] = ACTIONS(3402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3402), + [sym_preproc_directive] = ACTIONS(3402), + [anon_sym_LPAREN2] = ACTIONS(3404), + [anon_sym_BANG] = ACTIONS(3404), + [anon_sym_TILDE] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3402), + [anon_sym_PLUS] = ACTIONS(3402), + [anon_sym_STAR] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3402), + [anon_sym_SEMI] = ACTIONS(3404), + [anon_sym___extension__] = ACTIONS(3402), + [anon_sym_typedef] = ACTIONS(3402), + [anon_sym_extern] = ACTIONS(3402), + [anon_sym___attribute__] = ACTIONS(3402), + [anon_sym_COLON_COLON] = ACTIONS(3404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3404), + [anon_sym___declspec] = ACTIONS(3402), + [anon_sym___based] = ACTIONS(3402), + [anon_sym___cdecl] = ACTIONS(3402), + [anon_sym___clrcall] = ACTIONS(3402), + [anon_sym___stdcall] = ACTIONS(3402), + [anon_sym___fastcall] = ACTIONS(3402), + [anon_sym___thiscall] = ACTIONS(3402), + [anon_sym___vectorcall] = ACTIONS(3402), + [anon_sym_LBRACE] = ACTIONS(3404), + [anon_sym_signed] = ACTIONS(3402), + [anon_sym_unsigned] = ACTIONS(3402), + [anon_sym_long] = ACTIONS(3402), + [anon_sym_short] = ACTIONS(3402), + [anon_sym_LBRACK] = ACTIONS(3402), + [anon_sym_static] = ACTIONS(3402), + [anon_sym_register] = ACTIONS(3402), + [anon_sym_inline] = ACTIONS(3402), + [anon_sym___inline] = ACTIONS(3402), + [anon_sym___inline__] = ACTIONS(3402), + [anon_sym___forceinline] = ACTIONS(3402), + [anon_sym_thread_local] = ACTIONS(3402), + [anon_sym___thread] = ACTIONS(3402), + [anon_sym_const] = ACTIONS(3402), + [anon_sym_constexpr] = ACTIONS(3402), + [anon_sym_volatile] = ACTIONS(3402), + [anon_sym_restrict] = ACTIONS(3402), + [anon_sym___restrict__] = ACTIONS(3402), + [anon_sym__Atomic] = ACTIONS(3402), + [anon_sym__Noreturn] = ACTIONS(3402), + [anon_sym_noreturn] = ACTIONS(3402), + [anon_sym_mutable] = ACTIONS(3402), + [anon_sym_constinit] = ACTIONS(3402), + [anon_sym_consteval] = ACTIONS(3402), + [sym_primitive_type] = ACTIONS(3402), + [anon_sym_enum] = ACTIONS(3402), + [anon_sym_class] = ACTIONS(3402), + [anon_sym_struct] = ACTIONS(3402), + [anon_sym_union] = ACTIONS(3402), + [anon_sym_if] = ACTIONS(3402), + [anon_sym_switch] = ACTIONS(3402), + [anon_sym_case] = ACTIONS(3402), + [anon_sym_default] = ACTIONS(3402), + [anon_sym_while] = ACTIONS(3402), + [anon_sym_do] = ACTIONS(3402), + [anon_sym_for] = ACTIONS(3402), + [anon_sym_return] = ACTIONS(3402), + [anon_sym_break] = ACTIONS(3402), + [anon_sym_continue] = ACTIONS(3402), + [anon_sym_goto] = ACTIONS(3402), + [anon_sym___try] = ACTIONS(3402), + [anon_sym___leave] = ACTIONS(3402), + [anon_sym_not] = ACTIONS(3402), + [anon_sym_compl] = ACTIONS(3402), + [anon_sym_DASH_DASH] = ACTIONS(3404), + [anon_sym_PLUS_PLUS] = ACTIONS(3404), + [anon_sym_sizeof] = ACTIONS(3402), + [anon_sym___alignof__] = ACTIONS(3402), + [anon_sym___alignof] = ACTIONS(3402), + [anon_sym__alignof] = ACTIONS(3402), + [anon_sym_alignof] = ACTIONS(3402), + [anon_sym__Alignof] = ACTIONS(3402), + [anon_sym_offsetof] = ACTIONS(3402), + [anon_sym__Generic] = ACTIONS(3402), + [anon_sym_asm] = ACTIONS(3402), + [anon_sym___asm__] = ACTIONS(3402), + [sym_number_literal] = ACTIONS(3404), + [anon_sym_L_SQUOTE] = ACTIONS(3404), + [anon_sym_u_SQUOTE] = ACTIONS(3404), + [anon_sym_U_SQUOTE] = ACTIONS(3404), + [anon_sym_u8_SQUOTE] = ACTIONS(3404), + [anon_sym_SQUOTE] = ACTIONS(3404), + [anon_sym_L_DQUOTE] = ACTIONS(3404), + [anon_sym_u_DQUOTE] = ACTIONS(3404), + [anon_sym_U_DQUOTE] = ACTIONS(3404), + [anon_sym_u8_DQUOTE] = ACTIONS(3404), + [anon_sym_DQUOTE] = ACTIONS(3404), + [sym_true] = ACTIONS(3402), + [sym_false] = ACTIONS(3402), + [anon_sym_NULL] = ACTIONS(3402), + [anon_sym_nullptr] = ACTIONS(3402), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3402), + [anon_sym_decltype] = ACTIONS(3402), + [anon_sym_virtual] = ACTIONS(3402), + [anon_sym_alignas] = ACTIONS(3402), + [anon_sym_explicit] = ACTIONS(3402), + [anon_sym_typename] = ACTIONS(3402), + [anon_sym_template] = ACTIONS(3402), + [anon_sym_operator] = ACTIONS(3402), + [anon_sym_try] = ACTIONS(3402), + [anon_sym_delete] = ACTIONS(3402), + [anon_sym_throw] = ACTIONS(3402), + [anon_sym_namespace] = ACTIONS(3402), + [anon_sym_using] = ACTIONS(3402), + [anon_sym_static_assert] = ACTIONS(3402), + [anon_sym_concept] = ACTIONS(3402), + [anon_sym_co_return] = ACTIONS(3402), + [anon_sym_co_yield] = ACTIONS(3402), + [anon_sym_R_DQUOTE] = ACTIONS(3404), + [anon_sym_LR_DQUOTE] = ACTIONS(3404), + [anon_sym_uR_DQUOTE] = ACTIONS(3404), + [anon_sym_UR_DQUOTE] = ACTIONS(3404), + [anon_sym_u8R_DQUOTE] = ACTIONS(3404), + [anon_sym_co_await] = ACTIONS(3402), + [anon_sym_new] = ACTIONS(3402), + [anon_sym_requires] = ACTIONS(3402), + [sym_this] = ACTIONS(3402), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3404), + [sym_semgrep_named_ellipsis] = ACTIONS(3404), }, [787] = { - [sym_identifier] = ACTIONS(3265), - [aux_sym_preproc_include_token1] = ACTIONS(3265), - [aux_sym_preproc_def_token1] = ACTIONS(3265), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3267), - [aux_sym_preproc_if_token1] = ACTIONS(3265), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3265), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3265), - [sym_preproc_directive] = ACTIONS(3265), - [anon_sym_LPAREN2] = ACTIONS(3267), - [anon_sym_BANG] = ACTIONS(3267), - [anon_sym_TILDE] = ACTIONS(3267), - [anon_sym_DASH] = ACTIONS(3265), - [anon_sym_PLUS] = ACTIONS(3265), - [anon_sym_STAR] = ACTIONS(3267), - [anon_sym_AMP_AMP] = ACTIONS(3267), - [anon_sym_AMP] = ACTIONS(3265), - [anon_sym_SEMI] = ACTIONS(3267), - [anon_sym___extension__] = ACTIONS(3265), - [anon_sym_typedef] = ACTIONS(3265), - [anon_sym_extern] = ACTIONS(3265), - [anon_sym___attribute__] = ACTIONS(3265), - [anon_sym_COLON_COLON] = ACTIONS(3267), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3267), - [anon_sym___declspec] = ACTIONS(3265), - [anon_sym___based] = ACTIONS(3265), - [anon_sym___cdecl] = ACTIONS(3265), - [anon_sym___clrcall] = ACTIONS(3265), - [anon_sym___stdcall] = ACTIONS(3265), - [anon_sym___fastcall] = ACTIONS(3265), - [anon_sym___thiscall] = ACTIONS(3265), - [anon_sym___vectorcall] = ACTIONS(3265), - [anon_sym_LBRACE] = ACTIONS(3267), - [anon_sym_RBRACE] = ACTIONS(3267), - [anon_sym_signed] = ACTIONS(3265), - [anon_sym_unsigned] = ACTIONS(3265), - [anon_sym_long] = ACTIONS(3265), - [anon_sym_short] = ACTIONS(3265), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_static] = ACTIONS(3265), - [anon_sym_register] = ACTIONS(3265), - [anon_sym_inline] = ACTIONS(3265), - [anon_sym___inline] = ACTIONS(3265), - [anon_sym___inline__] = ACTIONS(3265), - [anon_sym___forceinline] = ACTIONS(3265), - [anon_sym_thread_local] = ACTIONS(3265), - [anon_sym___thread] = ACTIONS(3265), - [anon_sym_const] = ACTIONS(3265), - [anon_sym_constexpr] = ACTIONS(3265), - [anon_sym_volatile] = ACTIONS(3265), - [anon_sym_restrict] = ACTIONS(3265), - [anon_sym___restrict__] = ACTIONS(3265), - [anon_sym__Atomic] = ACTIONS(3265), - [anon_sym__Noreturn] = ACTIONS(3265), - [anon_sym_noreturn] = ACTIONS(3265), - [anon_sym_mutable] = ACTIONS(3265), - [anon_sym_constinit] = ACTIONS(3265), - [anon_sym_consteval] = ACTIONS(3265), - [sym_primitive_type] = ACTIONS(3265), - [anon_sym_enum] = ACTIONS(3265), - [anon_sym_class] = ACTIONS(3265), - [anon_sym_struct] = ACTIONS(3265), - [anon_sym_union] = ACTIONS(3265), - [anon_sym_if] = ACTIONS(3265), - [anon_sym_switch] = ACTIONS(3265), - [anon_sym_case] = ACTIONS(3265), - [anon_sym_default] = ACTIONS(3265), - [anon_sym_while] = ACTIONS(3265), - [anon_sym_do] = ACTIONS(3265), - [anon_sym_for] = ACTIONS(3265), - [anon_sym_return] = ACTIONS(3265), - [anon_sym_break] = ACTIONS(3265), - [anon_sym_continue] = ACTIONS(3265), - [anon_sym_goto] = ACTIONS(3265), - [anon_sym___try] = ACTIONS(3265), - [anon_sym___leave] = ACTIONS(3265), - [anon_sym_not] = ACTIONS(3265), - [anon_sym_compl] = ACTIONS(3265), - [anon_sym_DASH_DASH] = ACTIONS(3267), - [anon_sym_PLUS_PLUS] = ACTIONS(3267), - [anon_sym_sizeof] = ACTIONS(3265), - [anon_sym___alignof__] = ACTIONS(3265), - [anon_sym___alignof] = ACTIONS(3265), - [anon_sym__alignof] = ACTIONS(3265), - [anon_sym_alignof] = ACTIONS(3265), - [anon_sym__Alignof] = ACTIONS(3265), - [anon_sym_offsetof] = ACTIONS(3265), - [anon_sym__Generic] = ACTIONS(3265), - [anon_sym_asm] = ACTIONS(3265), - [anon_sym___asm__] = ACTIONS(3265), - [sym_number_literal] = ACTIONS(3267), - [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(3267), - [anon_sym_u_DQUOTE] = ACTIONS(3267), - [anon_sym_U_DQUOTE] = ACTIONS(3267), - [anon_sym_u8_DQUOTE] = ACTIONS(3267), - [anon_sym_DQUOTE] = ACTIONS(3267), - [sym_true] = ACTIONS(3265), - [sym_false] = ACTIONS(3265), - [anon_sym_NULL] = ACTIONS(3265), - [anon_sym_nullptr] = ACTIONS(3265), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3265), - [anon_sym_decltype] = ACTIONS(3265), - [anon_sym_virtual] = ACTIONS(3265), - [anon_sym_alignas] = ACTIONS(3265), - [anon_sym_explicit] = ACTIONS(3265), - [anon_sym_typename] = ACTIONS(3265), - [anon_sym_template] = ACTIONS(3265), - [anon_sym_operator] = ACTIONS(3265), - [anon_sym_try] = ACTIONS(3265), - [anon_sym_delete] = ACTIONS(3265), - [anon_sym_throw] = ACTIONS(3265), - [anon_sym_namespace] = ACTIONS(3265), - [anon_sym_using] = ACTIONS(3265), - [anon_sym_static_assert] = ACTIONS(3265), - [anon_sym_concept] = ACTIONS(3265), - [anon_sym_co_return] = ACTIONS(3265), - [anon_sym_co_yield] = ACTIONS(3265), - [anon_sym_R_DQUOTE] = ACTIONS(3267), - [anon_sym_LR_DQUOTE] = ACTIONS(3267), - [anon_sym_uR_DQUOTE] = ACTIONS(3267), - [anon_sym_UR_DQUOTE] = ACTIONS(3267), - [anon_sym_u8R_DQUOTE] = ACTIONS(3267), - [anon_sym_co_await] = ACTIONS(3265), - [anon_sym_new] = ACTIONS(3265), - [anon_sym_requires] = ACTIONS(3265), - [sym_this] = ACTIONS(3265), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3267), - [sym_semgrep_named_ellipsis] = ACTIONS(3267), + [sym_identifier] = ACTIONS(3434), + [aux_sym_preproc_include_token1] = ACTIONS(3434), + [aux_sym_preproc_def_token1] = ACTIONS(3434), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3436), + [aux_sym_preproc_if_token1] = ACTIONS(3434), + [aux_sym_preproc_if_token2] = ACTIONS(3434), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3434), + [sym_preproc_directive] = ACTIONS(3434), + [anon_sym_LPAREN2] = ACTIONS(3436), + [anon_sym_BANG] = ACTIONS(3436), + [anon_sym_TILDE] = ACTIONS(3436), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_STAR] = ACTIONS(3436), + [anon_sym_AMP_AMP] = ACTIONS(3436), + [anon_sym_AMP] = ACTIONS(3434), + [anon_sym_SEMI] = ACTIONS(3436), + [anon_sym___extension__] = ACTIONS(3434), + [anon_sym_typedef] = ACTIONS(3434), + [anon_sym_extern] = ACTIONS(3434), + [anon_sym___attribute__] = ACTIONS(3434), + [anon_sym_COLON_COLON] = ACTIONS(3436), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3436), + [anon_sym___declspec] = ACTIONS(3434), + [anon_sym___based] = ACTIONS(3434), + [anon_sym___cdecl] = ACTIONS(3434), + [anon_sym___clrcall] = ACTIONS(3434), + [anon_sym___stdcall] = ACTIONS(3434), + [anon_sym___fastcall] = ACTIONS(3434), + [anon_sym___thiscall] = ACTIONS(3434), + [anon_sym___vectorcall] = ACTIONS(3434), + [anon_sym_LBRACE] = ACTIONS(3436), + [anon_sym_signed] = ACTIONS(3434), + [anon_sym_unsigned] = ACTIONS(3434), + [anon_sym_long] = ACTIONS(3434), + [anon_sym_short] = ACTIONS(3434), + [anon_sym_LBRACK] = ACTIONS(3434), + [anon_sym_static] = ACTIONS(3434), + [anon_sym_register] = ACTIONS(3434), + [anon_sym_inline] = ACTIONS(3434), + [anon_sym___inline] = ACTIONS(3434), + [anon_sym___inline__] = ACTIONS(3434), + [anon_sym___forceinline] = ACTIONS(3434), + [anon_sym_thread_local] = ACTIONS(3434), + [anon_sym___thread] = ACTIONS(3434), + [anon_sym_const] = ACTIONS(3434), + [anon_sym_constexpr] = ACTIONS(3434), + [anon_sym_volatile] = ACTIONS(3434), + [anon_sym_restrict] = ACTIONS(3434), + [anon_sym___restrict__] = ACTIONS(3434), + [anon_sym__Atomic] = ACTIONS(3434), + [anon_sym__Noreturn] = ACTIONS(3434), + [anon_sym_noreturn] = ACTIONS(3434), + [anon_sym_mutable] = ACTIONS(3434), + [anon_sym_constinit] = ACTIONS(3434), + [anon_sym_consteval] = ACTIONS(3434), + [sym_primitive_type] = ACTIONS(3434), + [anon_sym_enum] = ACTIONS(3434), + [anon_sym_class] = ACTIONS(3434), + [anon_sym_struct] = ACTIONS(3434), + [anon_sym_union] = ACTIONS(3434), + [anon_sym_if] = ACTIONS(3434), + [anon_sym_switch] = ACTIONS(3434), + [anon_sym_case] = ACTIONS(3434), + [anon_sym_default] = ACTIONS(3434), + [anon_sym_while] = ACTIONS(3434), + [anon_sym_do] = ACTIONS(3434), + [anon_sym_for] = ACTIONS(3434), + [anon_sym_return] = ACTIONS(3434), + [anon_sym_break] = ACTIONS(3434), + [anon_sym_continue] = ACTIONS(3434), + [anon_sym_goto] = ACTIONS(3434), + [anon_sym___try] = ACTIONS(3434), + [anon_sym___leave] = ACTIONS(3434), + [anon_sym_not] = ACTIONS(3434), + [anon_sym_compl] = ACTIONS(3434), + [anon_sym_DASH_DASH] = ACTIONS(3436), + [anon_sym_PLUS_PLUS] = ACTIONS(3436), + [anon_sym_sizeof] = ACTIONS(3434), + [anon_sym___alignof__] = ACTIONS(3434), + [anon_sym___alignof] = ACTIONS(3434), + [anon_sym__alignof] = ACTIONS(3434), + [anon_sym_alignof] = ACTIONS(3434), + [anon_sym__Alignof] = ACTIONS(3434), + [anon_sym_offsetof] = ACTIONS(3434), + [anon_sym__Generic] = ACTIONS(3434), + [anon_sym_asm] = ACTIONS(3434), + [anon_sym___asm__] = ACTIONS(3434), + [sym_number_literal] = ACTIONS(3436), + [anon_sym_L_SQUOTE] = ACTIONS(3436), + [anon_sym_u_SQUOTE] = ACTIONS(3436), + [anon_sym_U_SQUOTE] = ACTIONS(3436), + [anon_sym_u8_SQUOTE] = ACTIONS(3436), + [anon_sym_SQUOTE] = ACTIONS(3436), + [anon_sym_L_DQUOTE] = ACTIONS(3436), + [anon_sym_u_DQUOTE] = ACTIONS(3436), + [anon_sym_U_DQUOTE] = ACTIONS(3436), + [anon_sym_u8_DQUOTE] = ACTIONS(3436), + [anon_sym_DQUOTE] = ACTIONS(3436), + [sym_true] = ACTIONS(3434), + [sym_false] = ACTIONS(3434), + [anon_sym_NULL] = ACTIONS(3434), + [anon_sym_nullptr] = ACTIONS(3434), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3434), + [anon_sym_decltype] = ACTIONS(3434), + [anon_sym_virtual] = ACTIONS(3434), + [anon_sym_alignas] = ACTIONS(3434), + [anon_sym_explicit] = ACTIONS(3434), + [anon_sym_typename] = ACTIONS(3434), + [anon_sym_template] = ACTIONS(3434), + [anon_sym_operator] = ACTIONS(3434), + [anon_sym_try] = ACTIONS(3434), + [anon_sym_delete] = ACTIONS(3434), + [anon_sym_throw] = ACTIONS(3434), + [anon_sym_namespace] = ACTIONS(3434), + [anon_sym_using] = ACTIONS(3434), + [anon_sym_static_assert] = ACTIONS(3434), + [anon_sym_concept] = ACTIONS(3434), + [anon_sym_co_return] = ACTIONS(3434), + [anon_sym_co_yield] = ACTIONS(3434), + [anon_sym_R_DQUOTE] = ACTIONS(3436), + [anon_sym_LR_DQUOTE] = ACTIONS(3436), + [anon_sym_uR_DQUOTE] = ACTIONS(3436), + [anon_sym_UR_DQUOTE] = ACTIONS(3436), + [anon_sym_u8R_DQUOTE] = ACTIONS(3436), + [anon_sym_co_await] = ACTIONS(3434), + [anon_sym_new] = ACTIONS(3434), + [anon_sym_requires] = ACTIONS(3434), + [sym_this] = ACTIONS(3434), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3436), + [sym_semgrep_named_ellipsis] = ACTIONS(3436), }, [788] = { - [sym_identifier] = ACTIONS(3366), - [aux_sym_preproc_include_token1] = ACTIONS(3366), - [aux_sym_preproc_def_token1] = ACTIONS(3366), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3368), - [aux_sym_preproc_if_token1] = ACTIONS(3366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3366), - [sym_preproc_directive] = ACTIONS(3366), - [anon_sym_LPAREN2] = ACTIONS(3368), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(3368), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_PLUS] = ACTIONS(3366), - [anon_sym_STAR] = ACTIONS(3368), - [anon_sym_AMP_AMP] = ACTIONS(3368), - [anon_sym_AMP] = ACTIONS(3366), - [anon_sym_SEMI] = ACTIONS(3368), - [anon_sym___extension__] = ACTIONS(3366), - [anon_sym_typedef] = ACTIONS(3366), - [anon_sym_extern] = ACTIONS(3366), - [anon_sym___attribute__] = ACTIONS(3366), - [anon_sym_COLON_COLON] = ACTIONS(3368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3368), - [anon_sym___declspec] = ACTIONS(3366), - [anon_sym___based] = ACTIONS(3366), - [anon_sym___cdecl] = ACTIONS(3366), - [anon_sym___clrcall] = ACTIONS(3366), - [anon_sym___stdcall] = ACTIONS(3366), - [anon_sym___fastcall] = ACTIONS(3366), - [anon_sym___thiscall] = ACTIONS(3366), - [anon_sym___vectorcall] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3368), - [anon_sym_RBRACE] = ACTIONS(3368), - [anon_sym_signed] = ACTIONS(3366), - [anon_sym_unsigned] = ACTIONS(3366), - [anon_sym_long] = ACTIONS(3366), - [anon_sym_short] = ACTIONS(3366), - [anon_sym_LBRACK] = ACTIONS(3366), - [anon_sym_static] = ACTIONS(3366), - [anon_sym_register] = ACTIONS(3366), - [anon_sym_inline] = ACTIONS(3366), - [anon_sym___inline] = ACTIONS(3366), - [anon_sym___inline__] = ACTIONS(3366), - [anon_sym___forceinline] = ACTIONS(3366), - [anon_sym_thread_local] = ACTIONS(3366), - [anon_sym___thread] = ACTIONS(3366), - [anon_sym_const] = ACTIONS(3366), - [anon_sym_constexpr] = ACTIONS(3366), - [anon_sym_volatile] = ACTIONS(3366), - [anon_sym_restrict] = ACTIONS(3366), - [anon_sym___restrict__] = ACTIONS(3366), - [anon_sym__Atomic] = ACTIONS(3366), - [anon_sym__Noreturn] = ACTIONS(3366), - [anon_sym_noreturn] = ACTIONS(3366), - [anon_sym_mutable] = ACTIONS(3366), - [anon_sym_constinit] = ACTIONS(3366), - [anon_sym_consteval] = ACTIONS(3366), - [sym_primitive_type] = ACTIONS(3366), - [anon_sym_enum] = ACTIONS(3366), - [anon_sym_class] = ACTIONS(3366), - [anon_sym_struct] = ACTIONS(3366), - [anon_sym_union] = ACTIONS(3366), - [anon_sym_if] = ACTIONS(3366), - [anon_sym_switch] = ACTIONS(3366), - [anon_sym_case] = ACTIONS(3366), - [anon_sym_default] = ACTIONS(3366), - [anon_sym_while] = ACTIONS(3366), - [anon_sym_do] = ACTIONS(3366), - [anon_sym_for] = ACTIONS(3366), - [anon_sym_return] = ACTIONS(3366), - [anon_sym_break] = ACTIONS(3366), - [anon_sym_continue] = ACTIONS(3366), - [anon_sym_goto] = ACTIONS(3366), - [anon_sym___try] = ACTIONS(3366), - [anon_sym___leave] = ACTIONS(3366), - [anon_sym_not] = ACTIONS(3366), - [anon_sym_compl] = ACTIONS(3366), - [anon_sym_DASH_DASH] = ACTIONS(3368), - [anon_sym_PLUS_PLUS] = ACTIONS(3368), - [anon_sym_sizeof] = ACTIONS(3366), - [anon_sym___alignof__] = ACTIONS(3366), - [anon_sym___alignof] = ACTIONS(3366), - [anon_sym__alignof] = ACTIONS(3366), - [anon_sym_alignof] = ACTIONS(3366), - [anon_sym__Alignof] = ACTIONS(3366), - [anon_sym_offsetof] = ACTIONS(3366), - [anon_sym__Generic] = ACTIONS(3366), - [anon_sym_asm] = ACTIONS(3366), - [anon_sym___asm__] = ACTIONS(3366), - [sym_number_literal] = ACTIONS(3368), - [anon_sym_L_SQUOTE] = ACTIONS(3368), - [anon_sym_u_SQUOTE] = ACTIONS(3368), - [anon_sym_U_SQUOTE] = ACTIONS(3368), - [anon_sym_u8_SQUOTE] = ACTIONS(3368), - [anon_sym_SQUOTE] = ACTIONS(3368), - [anon_sym_L_DQUOTE] = ACTIONS(3368), - [anon_sym_u_DQUOTE] = ACTIONS(3368), - [anon_sym_U_DQUOTE] = ACTIONS(3368), - [anon_sym_u8_DQUOTE] = ACTIONS(3368), - [anon_sym_DQUOTE] = ACTIONS(3368), - [sym_true] = ACTIONS(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3366), - [anon_sym_nullptr] = ACTIONS(3366), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3366), - [anon_sym_decltype] = ACTIONS(3366), - [anon_sym_virtual] = ACTIONS(3366), - [anon_sym_alignas] = ACTIONS(3366), - [anon_sym_explicit] = ACTIONS(3366), - [anon_sym_typename] = ACTIONS(3366), - [anon_sym_template] = ACTIONS(3366), - [anon_sym_operator] = ACTIONS(3366), - [anon_sym_try] = ACTIONS(3366), - [anon_sym_delete] = ACTIONS(3366), - [anon_sym_throw] = ACTIONS(3366), - [anon_sym_namespace] = ACTIONS(3366), - [anon_sym_using] = ACTIONS(3366), - [anon_sym_static_assert] = ACTIONS(3366), - [anon_sym_concept] = ACTIONS(3366), - [anon_sym_co_return] = ACTIONS(3366), - [anon_sym_co_yield] = ACTIONS(3366), - [anon_sym_R_DQUOTE] = ACTIONS(3368), - [anon_sym_LR_DQUOTE] = ACTIONS(3368), - [anon_sym_uR_DQUOTE] = ACTIONS(3368), - [anon_sym_UR_DQUOTE] = ACTIONS(3368), - [anon_sym_u8R_DQUOTE] = ACTIONS(3368), - [anon_sym_co_await] = ACTIONS(3366), - [anon_sym_new] = ACTIONS(3366), - [anon_sym_requires] = ACTIONS(3366), - [sym_this] = ACTIONS(3366), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3368), - [sym_semgrep_named_ellipsis] = ACTIONS(3368), + [sym_identifier] = ACTIONS(3438), + [aux_sym_preproc_include_token1] = ACTIONS(3438), + [aux_sym_preproc_def_token1] = ACTIONS(3438), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3440), + [aux_sym_preproc_if_token1] = ACTIONS(3438), + [aux_sym_preproc_if_token2] = ACTIONS(3438), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3438), + [sym_preproc_directive] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_BANG] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3440), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_STAR] = ACTIONS(3440), + [anon_sym_AMP_AMP] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_SEMI] = ACTIONS(3440), + [anon_sym___extension__] = ACTIONS(3438), + [anon_sym_typedef] = ACTIONS(3438), + [anon_sym_extern] = ACTIONS(3438), + [anon_sym___attribute__] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3440), + [anon_sym___declspec] = ACTIONS(3438), + [anon_sym___based] = ACTIONS(3438), + [anon_sym___cdecl] = ACTIONS(3438), + [anon_sym___clrcall] = ACTIONS(3438), + [anon_sym___stdcall] = ACTIONS(3438), + [anon_sym___fastcall] = ACTIONS(3438), + [anon_sym___thiscall] = ACTIONS(3438), + [anon_sym___vectorcall] = ACTIONS(3438), + [anon_sym_LBRACE] = ACTIONS(3440), + [anon_sym_signed] = ACTIONS(3438), + [anon_sym_unsigned] = ACTIONS(3438), + [anon_sym_long] = ACTIONS(3438), + [anon_sym_short] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_static] = ACTIONS(3438), + [anon_sym_register] = ACTIONS(3438), + [anon_sym_inline] = ACTIONS(3438), + [anon_sym___inline] = ACTIONS(3438), + [anon_sym___inline__] = ACTIONS(3438), + [anon_sym___forceinline] = ACTIONS(3438), + [anon_sym_thread_local] = ACTIONS(3438), + [anon_sym___thread] = ACTIONS(3438), + [anon_sym_const] = ACTIONS(3438), + [anon_sym_constexpr] = ACTIONS(3438), + [anon_sym_volatile] = ACTIONS(3438), + [anon_sym_restrict] = ACTIONS(3438), + [anon_sym___restrict__] = ACTIONS(3438), + [anon_sym__Atomic] = ACTIONS(3438), + [anon_sym__Noreturn] = ACTIONS(3438), + [anon_sym_noreturn] = ACTIONS(3438), + [anon_sym_mutable] = ACTIONS(3438), + [anon_sym_constinit] = ACTIONS(3438), + [anon_sym_consteval] = ACTIONS(3438), + [sym_primitive_type] = ACTIONS(3438), + [anon_sym_enum] = ACTIONS(3438), + [anon_sym_class] = ACTIONS(3438), + [anon_sym_struct] = ACTIONS(3438), + [anon_sym_union] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_switch] = ACTIONS(3438), + [anon_sym_case] = ACTIONS(3438), + [anon_sym_default] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_break] = ACTIONS(3438), + [anon_sym_continue] = ACTIONS(3438), + [anon_sym_goto] = ACTIONS(3438), + [anon_sym___try] = ACTIONS(3438), + [anon_sym___leave] = ACTIONS(3438), + [anon_sym_not] = ACTIONS(3438), + [anon_sym_compl] = ACTIONS(3438), + [anon_sym_DASH_DASH] = ACTIONS(3440), + [anon_sym_PLUS_PLUS] = ACTIONS(3440), + [anon_sym_sizeof] = ACTIONS(3438), + [anon_sym___alignof__] = ACTIONS(3438), + [anon_sym___alignof] = ACTIONS(3438), + [anon_sym__alignof] = ACTIONS(3438), + [anon_sym_alignof] = ACTIONS(3438), + [anon_sym__Alignof] = ACTIONS(3438), + [anon_sym_offsetof] = ACTIONS(3438), + [anon_sym__Generic] = ACTIONS(3438), + [anon_sym_asm] = ACTIONS(3438), + [anon_sym___asm__] = ACTIONS(3438), + [sym_number_literal] = ACTIONS(3440), + [anon_sym_L_SQUOTE] = ACTIONS(3440), + [anon_sym_u_SQUOTE] = ACTIONS(3440), + [anon_sym_U_SQUOTE] = ACTIONS(3440), + [anon_sym_u8_SQUOTE] = ACTIONS(3440), + [anon_sym_SQUOTE] = ACTIONS(3440), + [anon_sym_L_DQUOTE] = ACTIONS(3440), + [anon_sym_u_DQUOTE] = ACTIONS(3440), + [anon_sym_U_DQUOTE] = ACTIONS(3440), + [anon_sym_u8_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE] = ACTIONS(3440), + [sym_true] = ACTIONS(3438), + [sym_false] = ACTIONS(3438), + [anon_sym_NULL] = ACTIONS(3438), + [anon_sym_nullptr] = ACTIONS(3438), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3438), + [anon_sym_decltype] = ACTIONS(3438), + [anon_sym_virtual] = ACTIONS(3438), + [anon_sym_alignas] = ACTIONS(3438), + [anon_sym_explicit] = ACTIONS(3438), + [anon_sym_typename] = ACTIONS(3438), + [anon_sym_template] = ACTIONS(3438), + [anon_sym_operator] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_delete] = ACTIONS(3438), + [anon_sym_throw] = ACTIONS(3438), + [anon_sym_namespace] = ACTIONS(3438), + [anon_sym_using] = ACTIONS(3438), + [anon_sym_static_assert] = ACTIONS(3438), + [anon_sym_concept] = ACTIONS(3438), + [anon_sym_co_return] = ACTIONS(3438), + [anon_sym_co_yield] = ACTIONS(3438), + [anon_sym_R_DQUOTE] = ACTIONS(3440), + [anon_sym_LR_DQUOTE] = ACTIONS(3440), + [anon_sym_uR_DQUOTE] = ACTIONS(3440), + [anon_sym_UR_DQUOTE] = ACTIONS(3440), + [anon_sym_u8R_DQUOTE] = ACTIONS(3440), + [anon_sym_co_await] = ACTIONS(3438), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_requires] = ACTIONS(3438), + [sym_this] = ACTIONS(3438), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3440), + [sym_semgrep_named_ellipsis] = ACTIONS(3440), }, [789] = { - [sym_identifier] = ACTIONS(3372), - [aux_sym_preproc_include_token1] = ACTIONS(3372), - [aux_sym_preproc_def_token1] = ACTIONS(3372), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3374), - [aux_sym_preproc_if_token1] = ACTIONS(3372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3372), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3372), - [sym_preproc_directive] = ACTIONS(3372), - [anon_sym_LPAREN2] = ACTIONS(3374), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(3374), - [anon_sym_DASH] = ACTIONS(3372), - [anon_sym_PLUS] = ACTIONS(3372), - [anon_sym_STAR] = ACTIONS(3374), - [anon_sym_AMP_AMP] = ACTIONS(3374), - [anon_sym_AMP] = ACTIONS(3372), - [anon_sym_SEMI] = ACTIONS(3374), - [anon_sym___extension__] = ACTIONS(3372), - [anon_sym_typedef] = ACTIONS(3372), - [anon_sym_extern] = ACTIONS(3372), - [anon_sym___attribute__] = ACTIONS(3372), - [anon_sym_COLON_COLON] = ACTIONS(3374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3374), - [anon_sym___declspec] = ACTIONS(3372), - [anon_sym___based] = ACTIONS(3372), - [anon_sym___cdecl] = ACTIONS(3372), - [anon_sym___clrcall] = ACTIONS(3372), - [anon_sym___stdcall] = ACTIONS(3372), - [anon_sym___fastcall] = ACTIONS(3372), - [anon_sym___thiscall] = ACTIONS(3372), - [anon_sym___vectorcall] = ACTIONS(3372), - [anon_sym_LBRACE] = ACTIONS(3374), - [anon_sym_RBRACE] = ACTIONS(3374), - [anon_sym_signed] = ACTIONS(3372), - [anon_sym_unsigned] = ACTIONS(3372), - [anon_sym_long] = ACTIONS(3372), - [anon_sym_short] = ACTIONS(3372), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_static] = ACTIONS(3372), - [anon_sym_register] = ACTIONS(3372), - [anon_sym_inline] = ACTIONS(3372), - [anon_sym___inline] = ACTIONS(3372), - [anon_sym___inline__] = ACTIONS(3372), - [anon_sym___forceinline] = ACTIONS(3372), - [anon_sym_thread_local] = ACTIONS(3372), - [anon_sym___thread] = ACTIONS(3372), - [anon_sym_const] = ACTIONS(3372), - [anon_sym_constexpr] = ACTIONS(3372), - [anon_sym_volatile] = ACTIONS(3372), - [anon_sym_restrict] = ACTIONS(3372), - [anon_sym___restrict__] = ACTIONS(3372), - [anon_sym__Atomic] = ACTIONS(3372), - [anon_sym__Noreturn] = ACTIONS(3372), - [anon_sym_noreturn] = ACTIONS(3372), - [anon_sym_mutable] = ACTIONS(3372), - [anon_sym_constinit] = ACTIONS(3372), - [anon_sym_consteval] = ACTIONS(3372), - [sym_primitive_type] = ACTIONS(3372), - [anon_sym_enum] = ACTIONS(3372), - [anon_sym_class] = ACTIONS(3372), - [anon_sym_struct] = ACTIONS(3372), - [anon_sym_union] = ACTIONS(3372), - [anon_sym_if] = ACTIONS(3372), - [anon_sym_switch] = ACTIONS(3372), - [anon_sym_case] = ACTIONS(3372), - [anon_sym_default] = ACTIONS(3372), - [anon_sym_while] = ACTIONS(3372), - [anon_sym_do] = ACTIONS(3372), - [anon_sym_for] = ACTIONS(3372), - [anon_sym_return] = ACTIONS(3372), - [anon_sym_break] = ACTIONS(3372), - [anon_sym_continue] = ACTIONS(3372), - [anon_sym_goto] = ACTIONS(3372), - [anon_sym___try] = ACTIONS(3372), - [anon_sym___leave] = ACTIONS(3372), - [anon_sym_not] = ACTIONS(3372), - [anon_sym_compl] = ACTIONS(3372), - [anon_sym_DASH_DASH] = ACTIONS(3374), - [anon_sym_PLUS_PLUS] = ACTIONS(3374), - [anon_sym_sizeof] = ACTIONS(3372), - [anon_sym___alignof__] = ACTIONS(3372), - [anon_sym___alignof] = ACTIONS(3372), - [anon_sym__alignof] = ACTIONS(3372), - [anon_sym_alignof] = ACTIONS(3372), - [anon_sym__Alignof] = ACTIONS(3372), - [anon_sym_offsetof] = ACTIONS(3372), - [anon_sym__Generic] = ACTIONS(3372), - [anon_sym_asm] = ACTIONS(3372), - [anon_sym___asm__] = ACTIONS(3372), - [sym_number_literal] = ACTIONS(3374), - [anon_sym_L_SQUOTE] = ACTIONS(3374), - [anon_sym_u_SQUOTE] = ACTIONS(3374), - [anon_sym_U_SQUOTE] = ACTIONS(3374), - [anon_sym_u8_SQUOTE] = ACTIONS(3374), - [anon_sym_SQUOTE] = ACTIONS(3374), - [anon_sym_L_DQUOTE] = ACTIONS(3374), - [anon_sym_u_DQUOTE] = ACTIONS(3374), - [anon_sym_U_DQUOTE] = ACTIONS(3374), - [anon_sym_u8_DQUOTE] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(3374), - [sym_true] = ACTIONS(3372), - [sym_false] = ACTIONS(3372), - [anon_sym_NULL] = ACTIONS(3372), - [anon_sym_nullptr] = ACTIONS(3372), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3372), - [anon_sym_decltype] = ACTIONS(3372), - [anon_sym_virtual] = ACTIONS(3372), - [anon_sym_alignas] = ACTIONS(3372), - [anon_sym_explicit] = ACTIONS(3372), - [anon_sym_typename] = ACTIONS(3372), - [anon_sym_template] = ACTIONS(3372), - [anon_sym_operator] = ACTIONS(3372), - [anon_sym_try] = ACTIONS(3372), - [anon_sym_delete] = ACTIONS(3372), - [anon_sym_throw] = ACTIONS(3372), - [anon_sym_namespace] = ACTIONS(3372), - [anon_sym_using] = ACTIONS(3372), - [anon_sym_static_assert] = ACTIONS(3372), - [anon_sym_concept] = ACTIONS(3372), - [anon_sym_co_return] = ACTIONS(3372), - [anon_sym_co_yield] = ACTIONS(3372), - [anon_sym_R_DQUOTE] = ACTIONS(3374), - [anon_sym_LR_DQUOTE] = ACTIONS(3374), - [anon_sym_uR_DQUOTE] = ACTIONS(3374), - [anon_sym_UR_DQUOTE] = ACTIONS(3374), - [anon_sym_u8R_DQUOTE] = ACTIONS(3374), - [anon_sym_co_await] = ACTIONS(3372), - [anon_sym_new] = ACTIONS(3372), - [anon_sym_requires] = ACTIONS(3372), - [sym_this] = ACTIONS(3372), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3374), - [sym_semgrep_named_ellipsis] = ACTIONS(3374), + [sym_identifier] = ACTIONS(3442), + [aux_sym_preproc_include_token1] = ACTIONS(3442), + [aux_sym_preproc_def_token1] = ACTIONS(3442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3444), + [aux_sym_preproc_if_token1] = ACTIONS(3442), + [aux_sym_preproc_if_token2] = ACTIONS(3442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3442), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3442), + [sym_preproc_directive] = ACTIONS(3442), + [anon_sym_LPAREN2] = ACTIONS(3444), + [anon_sym_BANG] = ACTIONS(3444), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), + [anon_sym_AMP_AMP] = ACTIONS(3444), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym_SEMI] = ACTIONS(3444), + [anon_sym___extension__] = ACTIONS(3442), + [anon_sym_typedef] = ACTIONS(3442), + [anon_sym_extern] = ACTIONS(3442), + [anon_sym___attribute__] = ACTIONS(3442), + [anon_sym_COLON_COLON] = ACTIONS(3444), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3444), + [anon_sym___declspec] = ACTIONS(3442), + [anon_sym___based] = ACTIONS(3442), + [anon_sym___cdecl] = ACTIONS(3442), + [anon_sym___clrcall] = ACTIONS(3442), + [anon_sym___stdcall] = ACTIONS(3442), + [anon_sym___fastcall] = ACTIONS(3442), + [anon_sym___thiscall] = ACTIONS(3442), + [anon_sym___vectorcall] = ACTIONS(3442), + [anon_sym_LBRACE] = ACTIONS(3444), + [anon_sym_signed] = ACTIONS(3442), + [anon_sym_unsigned] = ACTIONS(3442), + [anon_sym_long] = ACTIONS(3442), + [anon_sym_short] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_static] = ACTIONS(3442), + [anon_sym_register] = ACTIONS(3442), + [anon_sym_inline] = ACTIONS(3442), + [anon_sym___inline] = ACTIONS(3442), + [anon_sym___inline__] = ACTIONS(3442), + [anon_sym___forceinline] = ACTIONS(3442), + [anon_sym_thread_local] = ACTIONS(3442), + [anon_sym___thread] = ACTIONS(3442), + [anon_sym_const] = ACTIONS(3442), + [anon_sym_constexpr] = ACTIONS(3442), + [anon_sym_volatile] = ACTIONS(3442), + [anon_sym_restrict] = ACTIONS(3442), + [anon_sym___restrict__] = ACTIONS(3442), + [anon_sym__Atomic] = ACTIONS(3442), + [anon_sym__Noreturn] = ACTIONS(3442), + [anon_sym_noreturn] = ACTIONS(3442), + [anon_sym_mutable] = ACTIONS(3442), + [anon_sym_constinit] = ACTIONS(3442), + [anon_sym_consteval] = ACTIONS(3442), + [sym_primitive_type] = ACTIONS(3442), + [anon_sym_enum] = ACTIONS(3442), + [anon_sym_class] = ACTIONS(3442), + [anon_sym_struct] = ACTIONS(3442), + [anon_sym_union] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_switch] = ACTIONS(3442), + [anon_sym_case] = ACTIONS(3442), + [anon_sym_default] = ACTIONS(3442), + [anon_sym_while] = ACTIONS(3442), + [anon_sym_do] = ACTIONS(3442), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3442), + [anon_sym_break] = ACTIONS(3442), + [anon_sym_continue] = ACTIONS(3442), + [anon_sym_goto] = ACTIONS(3442), + [anon_sym___try] = ACTIONS(3442), + [anon_sym___leave] = ACTIONS(3442), + [anon_sym_not] = ACTIONS(3442), + [anon_sym_compl] = ACTIONS(3442), + [anon_sym_DASH_DASH] = ACTIONS(3444), + [anon_sym_PLUS_PLUS] = ACTIONS(3444), + [anon_sym_sizeof] = ACTIONS(3442), + [anon_sym___alignof__] = ACTIONS(3442), + [anon_sym___alignof] = ACTIONS(3442), + [anon_sym__alignof] = ACTIONS(3442), + [anon_sym_alignof] = ACTIONS(3442), + [anon_sym__Alignof] = ACTIONS(3442), + [anon_sym_offsetof] = ACTIONS(3442), + [anon_sym__Generic] = ACTIONS(3442), + [anon_sym_asm] = ACTIONS(3442), + [anon_sym___asm__] = ACTIONS(3442), + [sym_number_literal] = ACTIONS(3444), + [anon_sym_L_SQUOTE] = ACTIONS(3444), + [anon_sym_u_SQUOTE] = ACTIONS(3444), + [anon_sym_U_SQUOTE] = ACTIONS(3444), + [anon_sym_u8_SQUOTE] = ACTIONS(3444), + [anon_sym_SQUOTE] = ACTIONS(3444), + [anon_sym_L_DQUOTE] = ACTIONS(3444), + [anon_sym_u_DQUOTE] = ACTIONS(3444), + [anon_sym_U_DQUOTE] = ACTIONS(3444), + [anon_sym_u8_DQUOTE] = ACTIONS(3444), + [anon_sym_DQUOTE] = ACTIONS(3444), + [sym_true] = ACTIONS(3442), + [sym_false] = ACTIONS(3442), + [anon_sym_NULL] = ACTIONS(3442), + [anon_sym_nullptr] = ACTIONS(3442), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3442), + [anon_sym_decltype] = ACTIONS(3442), + [anon_sym_virtual] = ACTIONS(3442), + [anon_sym_alignas] = ACTIONS(3442), + [anon_sym_explicit] = ACTIONS(3442), + [anon_sym_typename] = ACTIONS(3442), + [anon_sym_template] = ACTIONS(3442), + [anon_sym_operator] = ACTIONS(3442), + [anon_sym_try] = ACTIONS(3442), + [anon_sym_delete] = ACTIONS(3442), + [anon_sym_throw] = ACTIONS(3442), + [anon_sym_namespace] = ACTIONS(3442), + [anon_sym_using] = ACTIONS(3442), + [anon_sym_static_assert] = ACTIONS(3442), + [anon_sym_concept] = ACTIONS(3442), + [anon_sym_co_return] = ACTIONS(3442), + [anon_sym_co_yield] = ACTIONS(3442), + [anon_sym_R_DQUOTE] = ACTIONS(3444), + [anon_sym_LR_DQUOTE] = ACTIONS(3444), + [anon_sym_uR_DQUOTE] = ACTIONS(3444), + [anon_sym_UR_DQUOTE] = ACTIONS(3444), + [anon_sym_u8R_DQUOTE] = ACTIONS(3444), + [anon_sym_co_await] = ACTIONS(3442), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_requires] = ACTIONS(3442), + [sym_this] = ACTIONS(3442), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3444), + [sym_semgrep_named_ellipsis] = ACTIONS(3444), }, [790] = { - [sym_identifier] = ACTIONS(3376), - [aux_sym_preproc_include_token1] = ACTIONS(3376), - [aux_sym_preproc_def_token1] = ACTIONS(3376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3378), - [aux_sym_preproc_if_token1] = ACTIONS(3376), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3376), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3376), - [sym_preproc_directive] = ACTIONS(3376), - [anon_sym_LPAREN2] = ACTIONS(3378), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(3378), - [anon_sym_DASH] = ACTIONS(3376), - [anon_sym_PLUS] = ACTIONS(3376), - [anon_sym_STAR] = ACTIONS(3378), - [anon_sym_AMP_AMP] = ACTIONS(3378), - [anon_sym_AMP] = ACTIONS(3376), - [anon_sym_SEMI] = ACTIONS(3378), - [anon_sym___extension__] = ACTIONS(3376), - [anon_sym_typedef] = ACTIONS(3376), - [anon_sym_extern] = ACTIONS(3376), - [anon_sym___attribute__] = ACTIONS(3376), - [anon_sym_COLON_COLON] = ACTIONS(3378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3378), - [anon_sym___declspec] = ACTIONS(3376), - [anon_sym___based] = ACTIONS(3376), - [anon_sym___cdecl] = ACTIONS(3376), - [anon_sym___clrcall] = ACTIONS(3376), - [anon_sym___stdcall] = ACTIONS(3376), - [anon_sym___fastcall] = ACTIONS(3376), - [anon_sym___thiscall] = ACTIONS(3376), - [anon_sym___vectorcall] = ACTIONS(3376), - [anon_sym_LBRACE] = ACTIONS(3378), - [anon_sym_RBRACE] = ACTIONS(3378), - [anon_sym_signed] = ACTIONS(3376), - [anon_sym_unsigned] = ACTIONS(3376), - [anon_sym_long] = ACTIONS(3376), - [anon_sym_short] = ACTIONS(3376), - [anon_sym_LBRACK] = ACTIONS(3376), - [anon_sym_static] = ACTIONS(3376), - [anon_sym_register] = ACTIONS(3376), - [anon_sym_inline] = ACTIONS(3376), - [anon_sym___inline] = ACTIONS(3376), - [anon_sym___inline__] = ACTIONS(3376), - [anon_sym___forceinline] = ACTIONS(3376), - [anon_sym_thread_local] = ACTIONS(3376), - [anon_sym___thread] = ACTIONS(3376), - [anon_sym_const] = ACTIONS(3376), - [anon_sym_constexpr] = ACTIONS(3376), - [anon_sym_volatile] = ACTIONS(3376), - [anon_sym_restrict] = ACTIONS(3376), - [anon_sym___restrict__] = ACTIONS(3376), - [anon_sym__Atomic] = ACTIONS(3376), - [anon_sym__Noreturn] = ACTIONS(3376), - [anon_sym_noreturn] = ACTIONS(3376), - [anon_sym_mutable] = ACTIONS(3376), - [anon_sym_constinit] = ACTIONS(3376), - [anon_sym_consteval] = ACTIONS(3376), - [sym_primitive_type] = ACTIONS(3376), - [anon_sym_enum] = ACTIONS(3376), - [anon_sym_class] = ACTIONS(3376), - [anon_sym_struct] = ACTIONS(3376), - [anon_sym_union] = ACTIONS(3376), - [anon_sym_if] = ACTIONS(3376), - [anon_sym_switch] = ACTIONS(3376), - [anon_sym_case] = ACTIONS(3376), - [anon_sym_default] = ACTIONS(3376), - [anon_sym_while] = ACTIONS(3376), - [anon_sym_do] = ACTIONS(3376), - [anon_sym_for] = ACTIONS(3376), - [anon_sym_return] = ACTIONS(3376), - [anon_sym_break] = ACTIONS(3376), - [anon_sym_continue] = ACTIONS(3376), - [anon_sym_goto] = ACTIONS(3376), - [anon_sym___try] = ACTIONS(3376), - [anon_sym___leave] = ACTIONS(3376), - [anon_sym_not] = ACTIONS(3376), - [anon_sym_compl] = ACTIONS(3376), - [anon_sym_DASH_DASH] = ACTIONS(3378), - [anon_sym_PLUS_PLUS] = ACTIONS(3378), - [anon_sym_sizeof] = ACTIONS(3376), - [anon_sym___alignof__] = ACTIONS(3376), - [anon_sym___alignof] = ACTIONS(3376), - [anon_sym__alignof] = ACTIONS(3376), - [anon_sym_alignof] = ACTIONS(3376), - [anon_sym__Alignof] = ACTIONS(3376), - [anon_sym_offsetof] = ACTIONS(3376), - [anon_sym__Generic] = ACTIONS(3376), - [anon_sym_asm] = ACTIONS(3376), - [anon_sym___asm__] = ACTIONS(3376), - [sym_number_literal] = ACTIONS(3378), - [anon_sym_L_SQUOTE] = ACTIONS(3378), - [anon_sym_u_SQUOTE] = ACTIONS(3378), - [anon_sym_U_SQUOTE] = ACTIONS(3378), - [anon_sym_u8_SQUOTE] = ACTIONS(3378), - [anon_sym_SQUOTE] = ACTIONS(3378), - [anon_sym_L_DQUOTE] = ACTIONS(3378), - [anon_sym_u_DQUOTE] = ACTIONS(3378), - [anon_sym_U_DQUOTE] = ACTIONS(3378), - [anon_sym_u8_DQUOTE] = ACTIONS(3378), - [anon_sym_DQUOTE] = ACTIONS(3378), - [sym_true] = ACTIONS(3376), - [sym_false] = ACTIONS(3376), - [anon_sym_NULL] = ACTIONS(3376), - [anon_sym_nullptr] = ACTIONS(3376), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3376), - [anon_sym_decltype] = ACTIONS(3376), - [anon_sym_virtual] = ACTIONS(3376), - [anon_sym_alignas] = ACTIONS(3376), - [anon_sym_explicit] = ACTIONS(3376), - [anon_sym_typename] = ACTIONS(3376), - [anon_sym_template] = ACTIONS(3376), - [anon_sym_operator] = ACTIONS(3376), - [anon_sym_try] = ACTIONS(3376), - [anon_sym_delete] = ACTIONS(3376), - [anon_sym_throw] = ACTIONS(3376), - [anon_sym_namespace] = ACTIONS(3376), - [anon_sym_using] = ACTIONS(3376), - [anon_sym_static_assert] = ACTIONS(3376), - [anon_sym_concept] = ACTIONS(3376), - [anon_sym_co_return] = ACTIONS(3376), - [anon_sym_co_yield] = ACTIONS(3376), - [anon_sym_R_DQUOTE] = ACTIONS(3378), - [anon_sym_LR_DQUOTE] = ACTIONS(3378), - [anon_sym_uR_DQUOTE] = ACTIONS(3378), - [anon_sym_UR_DQUOTE] = ACTIONS(3378), - [anon_sym_u8R_DQUOTE] = ACTIONS(3378), - [anon_sym_co_await] = ACTIONS(3376), - [anon_sym_new] = ACTIONS(3376), - [anon_sym_requires] = ACTIONS(3376), - [sym_this] = ACTIONS(3376), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3378), - [sym_semgrep_named_ellipsis] = ACTIONS(3378), + [sym_identifier] = ACTIONS(3451), + [aux_sym_preproc_include_token1] = ACTIONS(3451), + [aux_sym_preproc_def_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3453), + [aux_sym_preproc_if_token1] = ACTIONS(3451), + [aux_sym_preproc_if_token2] = ACTIONS(3451), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3451), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3451), + [sym_preproc_directive] = ACTIONS(3451), + [anon_sym_LPAREN2] = ACTIONS(3453), + [anon_sym_BANG] = ACTIONS(3453), + [anon_sym_TILDE] = ACTIONS(3453), + [anon_sym_DASH] = ACTIONS(3451), + [anon_sym_PLUS] = ACTIONS(3451), + [anon_sym_STAR] = ACTIONS(3453), + [anon_sym_AMP_AMP] = ACTIONS(3453), + [anon_sym_AMP] = ACTIONS(3451), + [anon_sym_SEMI] = ACTIONS(3453), + [anon_sym___extension__] = ACTIONS(3451), + [anon_sym_typedef] = ACTIONS(3451), + [anon_sym_extern] = ACTIONS(3451), + [anon_sym___attribute__] = ACTIONS(3451), + [anon_sym_COLON_COLON] = ACTIONS(3453), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3453), + [anon_sym___declspec] = ACTIONS(3451), + [anon_sym___based] = ACTIONS(3451), + [anon_sym___cdecl] = ACTIONS(3451), + [anon_sym___clrcall] = ACTIONS(3451), + [anon_sym___stdcall] = ACTIONS(3451), + [anon_sym___fastcall] = ACTIONS(3451), + [anon_sym___thiscall] = ACTIONS(3451), + [anon_sym___vectorcall] = ACTIONS(3451), + [anon_sym_LBRACE] = ACTIONS(3453), + [anon_sym_signed] = ACTIONS(3451), + [anon_sym_unsigned] = ACTIONS(3451), + [anon_sym_long] = ACTIONS(3451), + [anon_sym_short] = ACTIONS(3451), + [anon_sym_LBRACK] = ACTIONS(3451), + [anon_sym_static] = ACTIONS(3451), + [anon_sym_register] = ACTIONS(3451), + [anon_sym_inline] = ACTIONS(3451), + [anon_sym___inline] = ACTIONS(3451), + [anon_sym___inline__] = ACTIONS(3451), + [anon_sym___forceinline] = ACTIONS(3451), + [anon_sym_thread_local] = ACTIONS(3451), + [anon_sym___thread] = ACTIONS(3451), + [anon_sym_const] = ACTIONS(3451), + [anon_sym_constexpr] = ACTIONS(3451), + [anon_sym_volatile] = ACTIONS(3451), + [anon_sym_restrict] = ACTIONS(3451), + [anon_sym___restrict__] = ACTIONS(3451), + [anon_sym__Atomic] = ACTIONS(3451), + [anon_sym__Noreturn] = ACTIONS(3451), + [anon_sym_noreturn] = ACTIONS(3451), + [anon_sym_mutable] = ACTIONS(3451), + [anon_sym_constinit] = ACTIONS(3451), + [anon_sym_consteval] = ACTIONS(3451), + [sym_primitive_type] = ACTIONS(3451), + [anon_sym_enum] = ACTIONS(3451), + [anon_sym_class] = ACTIONS(3451), + [anon_sym_struct] = ACTIONS(3451), + [anon_sym_union] = ACTIONS(3451), + [anon_sym_if] = ACTIONS(3451), + [anon_sym_switch] = ACTIONS(3451), + [anon_sym_case] = ACTIONS(3451), + [anon_sym_default] = ACTIONS(3451), + [anon_sym_while] = ACTIONS(3451), + [anon_sym_do] = ACTIONS(3451), + [anon_sym_for] = ACTIONS(3451), + [anon_sym_return] = ACTIONS(3451), + [anon_sym_break] = ACTIONS(3451), + [anon_sym_continue] = ACTIONS(3451), + [anon_sym_goto] = ACTIONS(3451), + [anon_sym___try] = ACTIONS(3451), + [anon_sym___leave] = ACTIONS(3451), + [anon_sym_not] = ACTIONS(3451), + [anon_sym_compl] = ACTIONS(3451), + [anon_sym_DASH_DASH] = ACTIONS(3453), + [anon_sym_PLUS_PLUS] = ACTIONS(3453), + [anon_sym_sizeof] = ACTIONS(3451), + [anon_sym___alignof__] = ACTIONS(3451), + [anon_sym___alignof] = ACTIONS(3451), + [anon_sym__alignof] = ACTIONS(3451), + [anon_sym_alignof] = ACTIONS(3451), + [anon_sym__Alignof] = ACTIONS(3451), + [anon_sym_offsetof] = ACTIONS(3451), + [anon_sym__Generic] = ACTIONS(3451), + [anon_sym_asm] = ACTIONS(3451), + [anon_sym___asm__] = ACTIONS(3451), + [sym_number_literal] = ACTIONS(3453), + [anon_sym_L_SQUOTE] = ACTIONS(3453), + [anon_sym_u_SQUOTE] = ACTIONS(3453), + [anon_sym_U_SQUOTE] = ACTIONS(3453), + [anon_sym_u8_SQUOTE] = ACTIONS(3453), + [anon_sym_SQUOTE] = ACTIONS(3453), + [anon_sym_L_DQUOTE] = ACTIONS(3453), + [anon_sym_u_DQUOTE] = ACTIONS(3453), + [anon_sym_U_DQUOTE] = ACTIONS(3453), + [anon_sym_u8_DQUOTE] = ACTIONS(3453), + [anon_sym_DQUOTE] = ACTIONS(3453), + [sym_true] = ACTIONS(3451), + [sym_false] = ACTIONS(3451), + [anon_sym_NULL] = ACTIONS(3451), + [anon_sym_nullptr] = ACTIONS(3451), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3451), + [anon_sym_decltype] = ACTIONS(3451), + [anon_sym_virtual] = ACTIONS(3451), + [anon_sym_alignas] = ACTIONS(3451), + [anon_sym_explicit] = ACTIONS(3451), + [anon_sym_typename] = ACTIONS(3451), + [anon_sym_template] = ACTIONS(3451), + [anon_sym_operator] = ACTIONS(3451), + [anon_sym_try] = ACTIONS(3451), + [anon_sym_delete] = ACTIONS(3451), + [anon_sym_throw] = ACTIONS(3451), + [anon_sym_namespace] = ACTIONS(3451), + [anon_sym_using] = ACTIONS(3451), + [anon_sym_static_assert] = ACTIONS(3451), + [anon_sym_concept] = ACTIONS(3451), + [anon_sym_co_return] = ACTIONS(3451), + [anon_sym_co_yield] = ACTIONS(3451), + [anon_sym_R_DQUOTE] = ACTIONS(3453), + [anon_sym_LR_DQUOTE] = ACTIONS(3453), + [anon_sym_uR_DQUOTE] = ACTIONS(3453), + [anon_sym_UR_DQUOTE] = ACTIONS(3453), + [anon_sym_u8R_DQUOTE] = ACTIONS(3453), + [anon_sym_co_await] = ACTIONS(3451), + [anon_sym_new] = ACTIONS(3451), + [anon_sym_requires] = ACTIONS(3451), + [sym_this] = ACTIONS(3451), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3453), + [sym_semgrep_named_ellipsis] = ACTIONS(3453), }, [791] = { - [sym_catch_clause] = STATE(399), - [aux_sym_constructor_try_statement_repeat1] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(3076), - [sym_identifier] = ACTIONS(3074), - [aux_sym_preproc_include_token1] = ACTIONS(3074), - [aux_sym_preproc_def_token1] = ACTIONS(3074), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3076), - [aux_sym_preproc_if_token1] = ACTIONS(3074), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3074), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3074), - [sym_preproc_directive] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3076), - [anon_sym_BANG] = ACTIONS(3076), - [anon_sym_TILDE] = ACTIONS(3076), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_STAR] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym___extension__] = ACTIONS(3074), - [anon_sym_typedef] = ACTIONS(3074), - [anon_sym_extern] = ACTIONS(3074), - [anon_sym___attribute__] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3076), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3076), - [anon_sym___declspec] = ACTIONS(3074), - [anon_sym___based] = ACTIONS(3074), - [anon_sym___cdecl] = ACTIONS(3074), - [anon_sym___clrcall] = ACTIONS(3074), - [anon_sym___stdcall] = ACTIONS(3074), - [anon_sym___fastcall] = ACTIONS(3074), - [anon_sym___thiscall] = ACTIONS(3074), - [anon_sym___vectorcall] = ACTIONS(3074), - [anon_sym_LBRACE] = ACTIONS(3076), - [anon_sym_signed] = ACTIONS(3074), - [anon_sym_unsigned] = ACTIONS(3074), - [anon_sym_long] = ACTIONS(3074), - [anon_sym_short] = ACTIONS(3074), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_static] = ACTIONS(3074), - [anon_sym_register] = ACTIONS(3074), - [anon_sym_inline] = ACTIONS(3074), - [anon_sym___inline] = ACTIONS(3074), - [anon_sym___inline__] = ACTIONS(3074), - [anon_sym___forceinline] = ACTIONS(3074), - [anon_sym_thread_local] = ACTIONS(3074), - [anon_sym___thread] = ACTIONS(3074), - [anon_sym_const] = ACTIONS(3074), - [anon_sym_constexpr] = ACTIONS(3074), - [anon_sym_volatile] = ACTIONS(3074), - [anon_sym_restrict] = ACTIONS(3074), - [anon_sym___restrict__] = ACTIONS(3074), - [anon_sym__Atomic] = ACTIONS(3074), - [anon_sym__Noreturn] = ACTIONS(3074), - [anon_sym_noreturn] = ACTIONS(3074), - [anon_sym_mutable] = ACTIONS(3074), - [anon_sym_constinit] = ACTIONS(3074), - [anon_sym_consteval] = ACTIONS(3074), - [sym_primitive_type] = ACTIONS(3074), - [anon_sym_enum] = ACTIONS(3074), - [anon_sym_class] = ACTIONS(3074), - [anon_sym_struct] = ACTIONS(3074), - [anon_sym_union] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_switch] = ACTIONS(3074), - [anon_sym_case] = ACTIONS(3074), - [anon_sym_default] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_break] = ACTIONS(3074), - [anon_sym_continue] = ACTIONS(3074), - [anon_sym_goto] = ACTIONS(3074), - [anon_sym_not] = ACTIONS(3074), - [anon_sym_compl] = ACTIONS(3074), - [anon_sym_DASH_DASH] = ACTIONS(3076), - [anon_sym_PLUS_PLUS] = ACTIONS(3076), - [anon_sym_sizeof] = ACTIONS(3074), - [anon_sym___alignof__] = ACTIONS(3074), - [anon_sym___alignof] = ACTIONS(3074), - [anon_sym__alignof] = ACTIONS(3074), - [anon_sym_alignof] = ACTIONS(3074), - [anon_sym__Alignof] = ACTIONS(3074), - [anon_sym_offsetof] = ACTIONS(3074), - [anon_sym__Generic] = ACTIONS(3074), - [anon_sym_asm] = ACTIONS(3074), - [anon_sym___asm__] = ACTIONS(3074), - [sym_number_literal] = ACTIONS(3076), - [anon_sym_L_SQUOTE] = ACTIONS(3076), - [anon_sym_u_SQUOTE] = ACTIONS(3076), - [anon_sym_U_SQUOTE] = ACTIONS(3076), - [anon_sym_u8_SQUOTE] = ACTIONS(3076), - [anon_sym_SQUOTE] = ACTIONS(3076), - [anon_sym_L_DQUOTE] = ACTIONS(3076), - [anon_sym_u_DQUOTE] = ACTIONS(3076), - [anon_sym_U_DQUOTE] = ACTIONS(3076), - [anon_sym_u8_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE] = ACTIONS(3076), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3074), - [anon_sym_nullptr] = ACTIONS(3074), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3074), - [anon_sym_decltype] = ACTIONS(3074), - [anon_sym_virtual] = ACTIONS(3074), - [anon_sym_alignas] = ACTIONS(3074), - [anon_sym_explicit] = ACTIONS(3074), - [anon_sym_typename] = ACTIONS(3074), - [anon_sym_template] = ACTIONS(3074), - [anon_sym_operator] = ACTIONS(3074), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_delete] = ACTIONS(3074), - [anon_sym_throw] = ACTIONS(3074), - [anon_sym_namespace] = ACTIONS(3074), - [anon_sym_using] = ACTIONS(3074), - [anon_sym_static_assert] = ACTIONS(3074), - [anon_sym_concept] = ACTIONS(3074), - [anon_sym_co_return] = ACTIONS(3074), - [anon_sym_co_yield] = ACTIONS(3074), - [anon_sym_catch] = ACTIONS(3532), - [anon_sym_R_DQUOTE] = ACTIONS(3076), - [anon_sym_LR_DQUOTE] = ACTIONS(3076), - [anon_sym_uR_DQUOTE] = ACTIONS(3076), - [anon_sym_UR_DQUOTE] = ACTIONS(3076), - [anon_sym_u8R_DQUOTE] = ACTIONS(3076), - [anon_sym_co_await] = ACTIONS(3074), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_requires] = ACTIONS(3074), - [sym_this] = ACTIONS(3074), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3076), - [sym_semgrep_named_ellipsis] = ACTIONS(3076), - }, - [792] = { - [sym_identifier] = ACTIONS(3610), - [aux_sym_preproc_include_token1] = ACTIONS(3610), - [aux_sym_preproc_def_token1] = ACTIONS(3610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3612), - [aux_sym_preproc_if_token1] = ACTIONS(3610), - [aux_sym_preproc_if_token2] = ACTIONS(3610), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3610), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3610), - [sym_preproc_directive] = ACTIONS(3610), - [anon_sym_LPAREN2] = ACTIONS(3612), - [anon_sym_BANG] = ACTIONS(3612), - [anon_sym_TILDE] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3610), - [anon_sym_STAR] = ACTIONS(3612), - [anon_sym_AMP_AMP] = ACTIONS(3612), - [anon_sym_AMP] = ACTIONS(3610), - [anon_sym_SEMI] = ACTIONS(3612), - [anon_sym___extension__] = ACTIONS(3610), - [anon_sym_typedef] = ACTIONS(3610), - [anon_sym_extern] = ACTIONS(3610), - [anon_sym___attribute__] = ACTIONS(3610), - [anon_sym_COLON_COLON] = ACTIONS(3612), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3612), - [anon_sym___declspec] = ACTIONS(3610), - [anon_sym___based] = ACTIONS(3610), - [anon_sym___cdecl] = ACTIONS(3610), - [anon_sym___clrcall] = ACTIONS(3610), - [anon_sym___stdcall] = ACTIONS(3610), - [anon_sym___fastcall] = ACTIONS(3610), - [anon_sym___thiscall] = ACTIONS(3610), - [anon_sym___vectorcall] = ACTIONS(3610), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym_signed] = ACTIONS(3610), - [anon_sym_unsigned] = ACTIONS(3610), - [anon_sym_long] = ACTIONS(3610), - [anon_sym_short] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3610), - [anon_sym_static] = ACTIONS(3610), - [anon_sym_register] = ACTIONS(3610), - [anon_sym_inline] = ACTIONS(3610), - [anon_sym___inline] = ACTIONS(3610), - [anon_sym___inline__] = ACTIONS(3610), - [anon_sym___forceinline] = ACTIONS(3610), - [anon_sym_thread_local] = ACTIONS(3610), - [anon_sym___thread] = ACTIONS(3610), - [anon_sym_const] = ACTIONS(3610), - [anon_sym_constexpr] = ACTIONS(3610), - [anon_sym_volatile] = ACTIONS(3610), - [anon_sym_restrict] = ACTIONS(3610), - [anon_sym___restrict__] = ACTIONS(3610), - [anon_sym__Atomic] = ACTIONS(3610), - [anon_sym__Noreturn] = ACTIONS(3610), - [anon_sym_noreturn] = ACTIONS(3610), - [anon_sym_mutable] = ACTIONS(3610), - [anon_sym_constinit] = ACTIONS(3610), - [anon_sym_consteval] = ACTIONS(3610), - [sym_primitive_type] = ACTIONS(3610), - [anon_sym_enum] = ACTIONS(3610), - [anon_sym_class] = ACTIONS(3610), - [anon_sym_struct] = ACTIONS(3610), - [anon_sym_union] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(3610), - [anon_sym_switch] = ACTIONS(3610), - [anon_sym_case] = ACTIONS(3610), - [anon_sym_default] = ACTIONS(3610), - [anon_sym_while] = ACTIONS(3610), - [anon_sym_do] = ACTIONS(3610), - [anon_sym_for] = ACTIONS(3610), - [anon_sym_return] = ACTIONS(3610), - [anon_sym_break] = ACTIONS(3610), - [anon_sym_continue] = ACTIONS(3610), - [anon_sym_goto] = ACTIONS(3610), - [anon_sym___try] = ACTIONS(3610), - [anon_sym___leave] = ACTIONS(3610), - [anon_sym_not] = ACTIONS(3610), - [anon_sym_compl] = ACTIONS(3610), - [anon_sym_DASH_DASH] = ACTIONS(3612), - [anon_sym_PLUS_PLUS] = ACTIONS(3612), - [anon_sym_sizeof] = ACTIONS(3610), - [anon_sym___alignof__] = ACTIONS(3610), - [anon_sym___alignof] = ACTIONS(3610), - [anon_sym__alignof] = ACTIONS(3610), - [anon_sym_alignof] = ACTIONS(3610), - [anon_sym__Alignof] = ACTIONS(3610), - [anon_sym_offsetof] = ACTIONS(3610), - [anon_sym__Generic] = ACTIONS(3610), - [anon_sym_asm] = ACTIONS(3610), - [anon_sym___asm__] = ACTIONS(3610), - [sym_number_literal] = ACTIONS(3612), - [anon_sym_L_SQUOTE] = ACTIONS(3612), - [anon_sym_u_SQUOTE] = ACTIONS(3612), - [anon_sym_U_SQUOTE] = ACTIONS(3612), - [anon_sym_u8_SQUOTE] = ACTIONS(3612), - [anon_sym_SQUOTE] = ACTIONS(3612), - [anon_sym_L_DQUOTE] = ACTIONS(3612), - [anon_sym_u_DQUOTE] = ACTIONS(3612), - [anon_sym_U_DQUOTE] = ACTIONS(3612), - [anon_sym_u8_DQUOTE] = ACTIONS(3612), - [anon_sym_DQUOTE] = ACTIONS(3612), - [sym_true] = ACTIONS(3610), - [sym_false] = ACTIONS(3610), - [anon_sym_NULL] = ACTIONS(3610), - [anon_sym_nullptr] = ACTIONS(3610), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3610), - [anon_sym_decltype] = ACTIONS(3610), - [anon_sym_virtual] = ACTIONS(3610), - [anon_sym_alignas] = ACTIONS(3610), - [anon_sym_explicit] = ACTIONS(3610), - [anon_sym_typename] = ACTIONS(3610), - [anon_sym_template] = ACTIONS(3610), - [anon_sym_operator] = ACTIONS(3610), - [anon_sym_try] = ACTIONS(3610), - [anon_sym_delete] = ACTIONS(3610), - [anon_sym_throw] = ACTIONS(3610), - [anon_sym_namespace] = ACTIONS(3610), - [anon_sym_using] = ACTIONS(3610), - [anon_sym_static_assert] = ACTIONS(3610), - [anon_sym_concept] = ACTIONS(3610), - [anon_sym_co_return] = ACTIONS(3610), - [anon_sym_co_yield] = ACTIONS(3610), - [anon_sym_R_DQUOTE] = ACTIONS(3612), - [anon_sym_LR_DQUOTE] = ACTIONS(3612), - [anon_sym_uR_DQUOTE] = ACTIONS(3612), - [anon_sym_UR_DQUOTE] = ACTIONS(3612), - [anon_sym_u8R_DQUOTE] = ACTIONS(3612), - [anon_sym_co_await] = ACTIONS(3610), - [anon_sym_new] = ACTIONS(3610), - [anon_sym_requires] = ACTIONS(3610), - [sym_this] = ACTIONS(3610), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3612), - [sym_semgrep_named_ellipsis] = ACTIONS(3612), - }, - [793] = { - [sym_identifier] = ACTIONS(3380), - [aux_sym_preproc_include_token1] = ACTIONS(3380), - [aux_sym_preproc_def_token1] = ACTIONS(3380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3382), - [aux_sym_preproc_if_token1] = ACTIONS(3380), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3380), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3380), - [sym_preproc_directive] = ACTIONS(3380), - [anon_sym_LPAREN2] = ACTIONS(3382), - [anon_sym_BANG] = ACTIONS(3382), - [anon_sym_TILDE] = ACTIONS(3382), - [anon_sym_DASH] = ACTIONS(3380), - [anon_sym_PLUS] = ACTIONS(3380), - [anon_sym_STAR] = ACTIONS(3382), - [anon_sym_AMP_AMP] = ACTIONS(3382), - [anon_sym_AMP] = ACTIONS(3380), - [anon_sym_SEMI] = ACTIONS(3382), - [anon_sym___extension__] = ACTIONS(3380), - [anon_sym_typedef] = ACTIONS(3380), - [anon_sym_extern] = ACTIONS(3380), - [anon_sym___attribute__] = ACTIONS(3380), - [anon_sym_COLON_COLON] = ACTIONS(3382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3382), - [anon_sym___declspec] = ACTIONS(3380), - [anon_sym___based] = ACTIONS(3380), - [anon_sym___cdecl] = ACTIONS(3380), - [anon_sym___clrcall] = ACTIONS(3380), - [anon_sym___stdcall] = ACTIONS(3380), - [anon_sym___fastcall] = ACTIONS(3380), - [anon_sym___thiscall] = ACTIONS(3380), - [anon_sym___vectorcall] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(3382), - [anon_sym_RBRACE] = ACTIONS(3382), - [anon_sym_signed] = ACTIONS(3380), - [anon_sym_unsigned] = ACTIONS(3380), - [anon_sym_long] = ACTIONS(3380), - [anon_sym_short] = ACTIONS(3380), - [anon_sym_LBRACK] = ACTIONS(3380), - [anon_sym_static] = ACTIONS(3380), - [anon_sym_register] = ACTIONS(3380), - [anon_sym_inline] = ACTIONS(3380), - [anon_sym___inline] = ACTIONS(3380), - [anon_sym___inline__] = ACTIONS(3380), - [anon_sym___forceinline] = ACTIONS(3380), - [anon_sym_thread_local] = ACTIONS(3380), - [anon_sym___thread] = ACTIONS(3380), - [anon_sym_const] = ACTIONS(3380), - [anon_sym_constexpr] = ACTIONS(3380), - [anon_sym_volatile] = ACTIONS(3380), - [anon_sym_restrict] = ACTIONS(3380), - [anon_sym___restrict__] = ACTIONS(3380), - [anon_sym__Atomic] = ACTIONS(3380), - [anon_sym__Noreturn] = ACTIONS(3380), - [anon_sym_noreturn] = ACTIONS(3380), - [anon_sym_mutable] = ACTIONS(3380), - [anon_sym_constinit] = ACTIONS(3380), - [anon_sym_consteval] = ACTIONS(3380), - [sym_primitive_type] = ACTIONS(3380), - [anon_sym_enum] = ACTIONS(3380), - [anon_sym_class] = ACTIONS(3380), - [anon_sym_struct] = ACTIONS(3380), - [anon_sym_union] = ACTIONS(3380), - [anon_sym_if] = ACTIONS(3380), - [anon_sym_switch] = ACTIONS(3380), - [anon_sym_case] = ACTIONS(3380), - [anon_sym_default] = ACTIONS(3380), - [anon_sym_while] = ACTIONS(3380), - [anon_sym_do] = ACTIONS(3380), - [anon_sym_for] = ACTIONS(3380), - [anon_sym_return] = ACTIONS(3380), - [anon_sym_break] = ACTIONS(3380), - [anon_sym_continue] = ACTIONS(3380), - [anon_sym_goto] = ACTIONS(3380), - [anon_sym___try] = ACTIONS(3380), - [anon_sym___leave] = ACTIONS(3380), - [anon_sym_not] = ACTIONS(3380), - [anon_sym_compl] = ACTIONS(3380), - [anon_sym_DASH_DASH] = ACTIONS(3382), - [anon_sym_PLUS_PLUS] = ACTIONS(3382), - [anon_sym_sizeof] = ACTIONS(3380), - [anon_sym___alignof__] = ACTIONS(3380), - [anon_sym___alignof] = ACTIONS(3380), - [anon_sym__alignof] = ACTIONS(3380), - [anon_sym_alignof] = ACTIONS(3380), - [anon_sym__Alignof] = ACTIONS(3380), - [anon_sym_offsetof] = ACTIONS(3380), - [anon_sym__Generic] = ACTIONS(3380), - [anon_sym_asm] = ACTIONS(3380), - [anon_sym___asm__] = ACTIONS(3380), - [sym_number_literal] = ACTIONS(3382), - [anon_sym_L_SQUOTE] = ACTIONS(3382), - [anon_sym_u_SQUOTE] = ACTIONS(3382), - [anon_sym_U_SQUOTE] = ACTIONS(3382), - [anon_sym_u8_SQUOTE] = ACTIONS(3382), - [anon_sym_SQUOTE] = ACTIONS(3382), - [anon_sym_L_DQUOTE] = ACTIONS(3382), - [anon_sym_u_DQUOTE] = ACTIONS(3382), - [anon_sym_U_DQUOTE] = ACTIONS(3382), - [anon_sym_u8_DQUOTE] = ACTIONS(3382), - [anon_sym_DQUOTE] = ACTIONS(3382), - [sym_true] = ACTIONS(3380), - [sym_false] = ACTIONS(3380), - [anon_sym_NULL] = ACTIONS(3380), - [anon_sym_nullptr] = ACTIONS(3380), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3380), - [anon_sym_decltype] = ACTIONS(3380), - [anon_sym_virtual] = ACTIONS(3380), - [anon_sym_alignas] = ACTIONS(3380), - [anon_sym_explicit] = ACTIONS(3380), - [anon_sym_typename] = ACTIONS(3380), - [anon_sym_template] = ACTIONS(3380), - [anon_sym_operator] = ACTIONS(3380), - [anon_sym_try] = ACTIONS(3380), - [anon_sym_delete] = ACTIONS(3380), - [anon_sym_throw] = ACTIONS(3380), - [anon_sym_namespace] = ACTIONS(3380), - [anon_sym_using] = ACTIONS(3380), - [anon_sym_static_assert] = ACTIONS(3380), - [anon_sym_concept] = ACTIONS(3380), - [anon_sym_co_return] = ACTIONS(3380), - [anon_sym_co_yield] = ACTIONS(3380), - [anon_sym_R_DQUOTE] = ACTIONS(3382), - [anon_sym_LR_DQUOTE] = ACTIONS(3382), - [anon_sym_uR_DQUOTE] = ACTIONS(3382), - [anon_sym_UR_DQUOTE] = ACTIONS(3382), - [anon_sym_u8R_DQUOTE] = ACTIONS(3382), - [anon_sym_co_await] = ACTIONS(3380), - [anon_sym_new] = ACTIONS(3380), - [anon_sym_requires] = ACTIONS(3380), - [sym_this] = ACTIONS(3380), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3382), - [sym_semgrep_named_ellipsis] = ACTIONS(3382), - }, - [794] = { - [sym_identifier] = ACTIONS(3384), - [aux_sym_preproc_include_token1] = ACTIONS(3384), - [aux_sym_preproc_def_token1] = ACTIONS(3384), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3386), - [aux_sym_preproc_if_token1] = ACTIONS(3384), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3384), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3384), - [sym_preproc_directive] = ACTIONS(3384), - [anon_sym_LPAREN2] = ACTIONS(3386), - [anon_sym_BANG] = ACTIONS(3386), - [anon_sym_TILDE] = ACTIONS(3386), - [anon_sym_DASH] = ACTIONS(3384), - [anon_sym_PLUS] = ACTIONS(3384), - [anon_sym_STAR] = ACTIONS(3386), - [anon_sym_AMP_AMP] = ACTIONS(3386), - [anon_sym_AMP] = ACTIONS(3384), - [anon_sym_SEMI] = ACTIONS(3386), - [anon_sym___extension__] = ACTIONS(3384), - [anon_sym_typedef] = ACTIONS(3384), - [anon_sym_extern] = ACTIONS(3384), - [anon_sym___attribute__] = ACTIONS(3384), - [anon_sym_COLON_COLON] = ACTIONS(3386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3386), - [anon_sym___declspec] = ACTIONS(3384), - [anon_sym___based] = ACTIONS(3384), - [anon_sym___cdecl] = ACTIONS(3384), - [anon_sym___clrcall] = ACTIONS(3384), - [anon_sym___stdcall] = ACTIONS(3384), - [anon_sym___fastcall] = ACTIONS(3384), - [anon_sym___thiscall] = ACTIONS(3384), - [anon_sym___vectorcall] = ACTIONS(3384), - [anon_sym_LBRACE] = ACTIONS(3386), - [anon_sym_RBRACE] = ACTIONS(3386), - [anon_sym_signed] = ACTIONS(3384), - [anon_sym_unsigned] = ACTIONS(3384), - [anon_sym_long] = ACTIONS(3384), - [anon_sym_short] = ACTIONS(3384), - [anon_sym_LBRACK] = ACTIONS(3384), - [anon_sym_static] = ACTIONS(3384), - [anon_sym_register] = ACTIONS(3384), - [anon_sym_inline] = ACTIONS(3384), - [anon_sym___inline] = ACTIONS(3384), - [anon_sym___inline__] = ACTIONS(3384), - [anon_sym___forceinline] = ACTIONS(3384), - [anon_sym_thread_local] = ACTIONS(3384), - [anon_sym___thread] = ACTIONS(3384), - [anon_sym_const] = ACTIONS(3384), - [anon_sym_constexpr] = ACTIONS(3384), - [anon_sym_volatile] = ACTIONS(3384), - [anon_sym_restrict] = ACTIONS(3384), - [anon_sym___restrict__] = ACTIONS(3384), - [anon_sym__Atomic] = ACTIONS(3384), - [anon_sym__Noreturn] = ACTIONS(3384), - [anon_sym_noreturn] = ACTIONS(3384), - [anon_sym_mutable] = ACTIONS(3384), - [anon_sym_constinit] = ACTIONS(3384), - [anon_sym_consteval] = ACTIONS(3384), - [sym_primitive_type] = ACTIONS(3384), - [anon_sym_enum] = ACTIONS(3384), - [anon_sym_class] = ACTIONS(3384), - [anon_sym_struct] = ACTIONS(3384), - [anon_sym_union] = ACTIONS(3384), - [anon_sym_if] = ACTIONS(3384), - [anon_sym_switch] = ACTIONS(3384), - [anon_sym_case] = ACTIONS(3384), - [anon_sym_default] = ACTIONS(3384), - [anon_sym_while] = ACTIONS(3384), - [anon_sym_do] = ACTIONS(3384), - [anon_sym_for] = ACTIONS(3384), - [anon_sym_return] = ACTIONS(3384), - [anon_sym_break] = ACTIONS(3384), - [anon_sym_continue] = ACTIONS(3384), - [anon_sym_goto] = ACTIONS(3384), - [anon_sym___try] = ACTIONS(3384), - [anon_sym___leave] = ACTIONS(3384), - [anon_sym_not] = ACTIONS(3384), - [anon_sym_compl] = ACTIONS(3384), - [anon_sym_DASH_DASH] = ACTIONS(3386), - [anon_sym_PLUS_PLUS] = ACTIONS(3386), - [anon_sym_sizeof] = ACTIONS(3384), - [anon_sym___alignof__] = ACTIONS(3384), - [anon_sym___alignof] = ACTIONS(3384), - [anon_sym__alignof] = ACTIONS(3384), - [anon_sym_alignof] = ACTIONS(3384), - [anon_sym__Alignof] = ACTIONS(3384), - [anon_sym_offsetof] = ACTIONS(3384), - [anon_sym__Generic] = ACTIONS(3384), - [anon_sym_asm] = ACTIONS(3384), - [anon_sym___asm__] = ACTIONS(3384), - [sym_number_literal] = ACTIONS(3386), - [anon_sym_L_SQUOTE] = ACTIONS(3386), - [anon_sym_u_SQUOTE] = ACTIONS(3386), - [anon_sym_U_SQUOTE] = ACTIONS(3386), - [anon_sym_u8_SQUOTE] = ACTIONS(3386), - [anon_sym_SQUOTE] = ACTIONS(3386), - [anon_sym_L_DQUOTE] = ACTIONS(3386), - [anon_sym_u_DQUOTE] = ACTIONS(3386), - [anon_sym_U_DQUOTE] = ACTIONS(3386), - [anon_sym_u8_DQUOTE] = ACTIONS(3386), - [anon_sym_DQUOTE] = ACTIONS(3386), - [sym_true] = ACTIONS(3384), - [sym_false] = ACTIONS(3384), - [anon_sym_NULL] = ACTIONS(3384), - [anon_sym_nullptr] = ACTIONS(3384), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3384), - [anon_sym_decltype] = ACTIONS(3384), - [anon_sym_virtual] = ACTIONS(3384), - [anon_sym_alignas] = ACTIONS(3384), - [anon_sym_explicit] = ACTIONS(3384), - [anon_sym_typename] = ACTIONS(3384), - [anon_sym_template] = ACTIONS(3384), - [anon_sym_operator] = ACTIONS(3384), - [anon_sym_try] = ACTIONS(3384), - [anon_sym_delete] = ACTIONS(3384), - [anon_sym_throw] = ACTIONS(3384), - [anon_sym_namespace] = ACTIONS(3384), - [anon_sym_using] = ACTIONS(3384), - [anon_sym_static_assert] = ACTIONS(3384), - [anon_sym_concept] = ACTIONS(3384), - [anon_sym_co_return] = ACTIONS(3384), - [anon_sym_co_yield] = ACTIONS(3384), - [anon_sym_R_DQUOTE] = ACTIONS(3386), - [anon_sym_LR_DQUOTE] = ACTIONS(3386), - [anon_sym_uR_DQUOTE] = ACTIONS(3386), - [anon_sym_UR_DQUOTE] = ACTIONS(3386), - [anon_sym_u8R_DQUOTE] = ACTIONS(3386), - [anon_sym_co_await] = ACTIONS(3384), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3384), - [sym_this] = ACTIONS(3384), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3386), - [sym_semgrep_named_ellipsis] = ACTIONS(3386), - }, - [795] = { - [sym_identifier] = ACTIONS(3481), - [aux_sym_preproc_include_token1] = ACTIONS(3481), - [aux_sym_preproc_def_token1] = ACTIONS(3481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3483), - [aux_sym_preproc_if_token1] = ACTIONS(3481), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3481), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3481), - [sym_preproc_directive] = ACTIONS(3481), - [anon_sym_LPAREN2] = ACTIONS(3483), - [anon_sym_BANG] = ACTIONS(3483), - [anon_sym_TILDE] = ACTIONS(3483), - [anon_sym_DASH] = ACTIONS(3481), - [anon_sym_PLUS] = ACTIONS(3481), - [anon_sym_STAR] = ACTIONS(3483), - [anon_sym_AMP_AMP] = ACTIONS(3483), - [anon_sym_AMP] = ACTIONS(3481), - [anon_sym_SEMI] = ACTIONS(3483), - [anon_sym___extension__] = ACTIONS(3481), - [anon_sym_typedef] = ACTIONS(3481), - [anon_sym_extern] = ACTIONS(3481), - [anon_sym___attribute__] = ACTIONS(3481), - [anon_sym_COLON_COLON] = ACTIONS(3483), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3483), - [anon_sym___declspec] = ACTIONS(3481), - [anon_sym___based] = ACTIONS(3481), - [anon_sym___cdecl] = ACTIONS(3481), - [anon_sym___clrcall] = ACTIONS(3481), - [anon_sym___stdcall] = ACTIONS(3481), - [anon_sym___fastcall] = ACTIONS(3481), - [anon_sym___thiscall] = ACTIONS(3481), - [anon_sym___vectorcall] = ACTIONS(3481), - [anon_sym_LBRACE] = ACTIONS(3483), - [anon_sym_RBRACE] = ACTIONS(3483), - [anon_sym_signed] = ACTIONS(3481), - [anon_sym_unsigned] = ACTIONS(3481), - [anon_sym_long] = ACTIONS(3481), - [anon_sym_short] = ACTIONS(3481), - [anon_sym_LBRACK] = ACTIONS(3481), - [anon_sym_static] = ACTIONS(3481), - [anon_sym_register] = ACTIONS(3481), - [anon_sym_inline] = ACTIONS(3481), - [anon_sym___inline] = ACTIONS(3481), - [anon_sym___inline__] = ACTIONS(3481), - [anon_sym___forceinline] = ACTIONS(3481), - [anon_sym_thread_local] = ACTIONS(3481), - [anon_sym___thread] = ACTIONS(3481), - [anon_sym_const] = ACTIONS(3481), - [anon_sym_constexpr] = ACTIONS(3481), - [anon_sym_volatile] = ACTIONS(3481), - [anon_sym_restrict] = ACTIONS(3481), - [anon_sym___restrict__] = ACTIONS(3481), - [anon_sym__Atomic] = ACTIONS(3481), - [anon_sym__Noreturn] = ACTIONS(3481), - [anon_sym_noreturn] = ACTIONS(3481), - [anon_sym_mutable] = ACTIONS(3481), - [anon_sym_constinit] = ACTIONS(3481), - [anon_sym_consteval] = ACTIONS(3481), - [sym_primitive_type] = ACTIONS(3481), - [anon_sym_enum] = ACTIONS(3481), - [anon_sym_class] = ACTIONS(3481), - [anon_sym_struct] = ACTIONS(3481), - [anon_sym_union] = ACTIONS(3481), - [anon_sym_if] = ACTIONS(3481), - [anon_sym_switch] = ACTIONS(3481), - [anon_sym_case] = ACTIONS(3481), - [anon_sym_default] = ACTIONS(3481), - [anon_sym_while] = ACTIONS(3481), - [anon_sym_do] = ACTIONS(3481), - [anon_sym_for] = ACTIONS(3481), - [anon_sym_return] = ACTIONS(3481), - [anon_sym_break] = ACTIONS(3481), - [anon_sym_continue] = ACTIONS(3481), - [anon_sym_goto] = ACTIONS(3481), - [anon_sym___try] = ACTIONS(3481), - [anon_sym___leave] = ACTIONS(3481), - [anon_sym_not] = ACTIONS(3481), - [anon_sym_compl] = ACTIONS(3481), - [anon_sym_DASH_DASH] = ACTIONS(3483), - [anon_sym_PLUS_PLUS] = ACTIONS(3483), - [anon_sym_sizeof] = ACTIONS(3481), - [anon_sym___alignof__] = ACTIONS(3481), - [anon_sym___alignof] = ACTIONS(3481), - [anon_sym__alignof] = ACTIONS(3481), - [anon_sym_alignof] = ACTIONS(3481), - [anon_sym__Alignof] = ACTIONS(3481), - [anon_sym_offsetof] = ACTIONS(3481), - [anon_sym__Generic] = ACTIONS(3481), - [anon_sym_asm] = ACTIONS(3481), - [anon_sym___asm__] = ACTIONS(3481), - [sym_number_literal] = ACTIONS(3483), - [anon_sym_L_SQUOTE] = ACTIONS(3483), - [anon_sym_u_SQUOTE] = ACTIONS(3483), - [anon_sym_U_SQUOTE] = ACTIONS(3483), - [anon_sym_u8_SQUOTE] = ACTIONS(3483), - [anon_sym_SQUOTE] = ACTIONS(3483), - [anon_sym_L_DQUOTE] = ACTIONS(3483), - [anon_sym_u_DQUOTE] = ACTIONS(3483), - [anon_sym_U_DQUOTE] = ACTIONS(3483), - [anon_sym_u8_DQUOTE] = ACTIONS(3483), - [anon_sym_DQUOTE] = ACTIONS(3483), - [sym_true] = ACTIONS(3481), - [sym_false] = ACTIONS(3481), - [anon_sym_NULL] = ACTIONS(3481), - [anon_sym_nullptr] = ACTIONS(3481), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3481), - [anon_sym_decltype] = ACTIONS(3481), - [anon_sym_virtual] = ACTIONS(3481), - [anon_sym_alignas] = ACTIONS(3481), - [anon_sym_explicit] = ACTIONS(3481), - [anon_sym_typename] = ACTIONS(3481), - [anon_sym_template] = ACTIONS(3481), - [anon_sym_operator] = ACTIONS(3481), - [anon_sym_try] = ACTIONS(3481), - [anon_sym_delete] = ACTIONS(3481), - [anon_sym_throw] = ACTIONS(3481), - [anon_sym_namespace] = ACTIONS(3481), - [anon_sym_using] = ACTIONS(3481), - [anon_sym_static_assert] = ACTIONS(3481), - [anon_sym_concept] = ACTIONS(3481), - [anon_sym_co_return] = ACTIONS(3481), - [anon_sym_co_yield] = ACTIONS(3481), - [anon_sym_R_DQUOTE] = ACTIONS(3483), - [anon_sym_LR_DQUOTE] = ACTIONS(3483), - [anon_sym_uR_DQUOTE] = ACTIONS(3483), - [anon_sym_UR_DQUOTE] = ACTIONS(3483), - [anon_sym_u8R_DQUOTE] = ACTIONS(3483), - [anon_sym_co_await] = ACTIONS(3481), - [anon_sym_new] = ACTIONS(3481), - [anon_sym_requires] = ACTIONS(3481), - [sym_this] = ACTIONS(3481), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3483), - [sym_semgrep_named_ellipsis] = ACTIONS(3483), - }, - [796] = { - [sym_identifier] = ACTIONS(3433), - [aux_sym_preproc_include_token1] = ACTIONS(3433), - [aux_sym_preproc_def_token1] = ACTIONS(3433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3435), - [aux_sym_preproc_if_token1] = ACTIONS(3433), - [aux_sym_preproc_if_token2] = ACTIONS(3433), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3433), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3433), - [sym_preproc_directive] = ACTIONS(3433), - [anon_sym_LPAREN2] = ACTIONS(3435), - [anon_sym_BANG] = ACTIONS(3435), - [anon_sym_TILDE] = ACTIONS(3435), - [anon_sym_DASH] = ACTIONS(3433), - [anon_sym_PLUS] = ACTIONS(3433), - [anon_sym_STAR] = ACTIONS(3435), - [anon_sym_AMP_AMP] = ACTIONS(3435), - [anon_sym_AMP] = ACTIONS(3433), - [anon_sym_SEMI] = ACTIONS(3435), - [anon_sym___extension__] = ACTIONS(3433), - [anon_sym_typedef] = ACTIONS(3433), - [anon_sym_extern] = ACTIONS(3433), - [anon_sym___attribute__] = ACTIONS(3433), - [anon_sym_COLON_COLON] = ACTIONS(3435), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3435), - [anon_sym___declspec] = ACTIONS(3433), - [anon_sym___based] = ACTIONS(3433), - [anon_sym___cdecl] = ACTIONS(3433), - [anon_sym___clrcall] = ACTIONS(3433), - [anon_sym___stdcall] = ACTIONS(3433), - [anon_sym___fastcall] = ACTIONS(3433), - [anon_sym___thiscall] = ACTIONS(3433), - [anon_sym___vectorcall] = ACTIONS(3433), - [anon_sym_LBRACE] = ACTIONS(3435), - [anon_sym_signed] = ACTIONS(3433), - [anon_sym_unsigned] = ACTIONS(3433), - [anon_sym_long] = ACTIONS(3433), - [anon_sym_short] = ACTIONS(3433), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_static] = ACTIONS(3433), - [anon_sym_register] = ACTIONS(3433), - [anon_sym_inline] = ACTIONS(3433), - [anon_sym___inline] = ACTIONS(3433), - [anon_sym___inline__] = ACTIONS(3433), - [anon_sym___forceinline] = ACTIONS(3433), - [anon_sym_thread_local] = ACTIONS(3433), - [anon_sym___thread] = ACTIONS(3433), - [anon_sym_const] = ACTIONS(3433), - [anon_sym_constexpr] = ACTIONS(3433), - [anon_sym_volatile] = ACTIONS(3433), - [anon_sym_restrict] = ACTIONS(3433), - [anon_sym___restrict__] = ACTIONS(3433), - [anon_sym__Atomic] = ACTIONS(3433), - [anon_sym__Noreturn] = ACTIONS(3433), - [anon_sym_noreturn] = ACTIONS(3433), - [anon_sym_mutable] = ACTIONS(3433), - [anon_sym_constinit] = ACTIONS(3433), - [anon_sym_consteval] = ACTIONS(3433), - [sym_primitive_type] = ACTIONS(3433), - [anon_sym_enum] = ACTIONS(3433), - [anon_sym_class] = ACTIONS(3433), - [anon_sym_struct] = ACTIONS(3433), - [anon_sym_union] = ACTIONS(3433), - [anon_sym_if] = ACTIONS(3433), - [anon_sym_switch] = ACTIONS(3433), - [anon_sym_case] = ACTIONS(3433), - [anon_sym_default] = ACTIONS(3433), - [anon_sym_while] = ACTIONS(3433), - [anon_sym_do] = ACTIONS(3433), - [anon_sym_for] = ACTIONS(3433), - [anon_sym_return] = ACTIONS(3433), - [anon_sym_break] = ACTIONS(3433), - [anon_sym_continue] = ACTIONS(3433), - [anon_sym_goto] = ACTIONS(3433), - [anon_sym___try] = ACTIONS(3433), - [anon_sym___leave] = ACTIONS(3433), - [anon_sym_not] = ACTIONS(3433), - [anon_sym_compl] = ACTIONS(3433), - [anon_sym_DASH_DASH] = ACTIONS(3435), - [anon_sym_PLUS_PLUS] = ACTIONS(3435), - [anon_sym_sizeof] = ACTIONS(3433), - [anon_sym___alignof__] = ACTIONS(3433), - [anon_sym___alignof] = ACTIONS(3433), - [anon_sym__alignof] = ACTIONS(3433), - [anon_sym_alignof] = ACTIONS(3433), - [anon_sym__Alignof] = ACTIONS(3433), - [anon_sym_offsetof] = ACTIONS(3433), - [anon_sym__Generic] = ACTIONS(3433), - [anon_sym_asm] = ACTIONS(3433), - [anon_sym___asm__] = ACTIONS(3433), - [sym_number_literal] = ACTIONS(3435), - [anon_sym_L_SQUOTE] = ACTIONS(3435), - [anon_sym_u_SQUOTE] = ACTIONS(3435), - [anon_sym_U_SQUOTE] = ACTIONS(3435), - [anon_sym_u8_SQUOTE] = ACTIONS(3435), - [anon_sym_SQUOTE] = ACTIONS(3435), - [anon_sym_L_DQUOTE] = ACTIONS(3435), - [anon_sym_u_DQUOTE] = ACTIONS(3435), - [anon_sym_U_DQUOTE] = ACTIONS(3435), - [anon_sym_u8_DQUOTE] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(3435), - [sym_true] = ACTIONS(3433), - [sym_false] = ACTIONS(3433), - [anon_sym_NULL] = ACTIONS(3433), - [anon_sym_nullptr] = ACTIONS(3433), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3433), - [anon_sym_decltype] = ACTIONS(3433), - [anon_sym_virtual] = ACTIONS(3433), - [anon_sym_alignas] = ACTIONS(3433), - [anon_sym_explicit] = ACTIONS(3433), - [anon_sym_typename] = ACTIONS(3433), - [anon_sym_template] = ACTIONS(3433), - [anon_sym_operator] = ACTIONS(3433), - [anon_sym_try] = ACTIONS(3433), - [anon_sym_delete] = ACTIONS(3433), - [anon_sym_throw] = ACTIONS(3433), - [anon_sym_namespace] = ACTIONS(3433), - [anon_sym_using] = ACTIONS(3433), - [anon_sym_static_assert] = ACTIONS(3433), - [anon_sym_concept] = ACTIONS(3433), - [anon_sym_co_return] = ACTIONS(3433), - [anon_sym_co_yield] = ACTIONS(3433), - [anon_sym_R_DQUOTE] = ACTIONS(3435), - [anon_sym_LR_DQUOTE] = ACTIONS(3435), - [anon_sym_uR_DQUOTE] = ACTIONS(3435), - [anon_sym_UR_DQUOTE] = ACTIONS(3435), - [anon_sym_u8R_DQUOTE] = ACTIONS(3435), - [anon_sym_co_await] = ACTIONS(3433), - [anon_sym_new] = ACTIONS(3433), - [anon_sym_requires] = ACTIONS(3433), - [sym_this] = ACTIONS(3433), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3435), - [sym_semgrep_named_ellipsis] = ACTIONS(3435), - }, - [797] = { - [sym_identifier] = ACTIONS(3441), - [aux_sym_preproc_include_token1] = ACTIONS(3441), - [aux_sym_preproc_def_token1] = ACTIONS(3441), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3443), - [aux_sym_preproc_if_token1] = ACTIONS(3441), - [aux_sym_preproc_if_token2] = ACTIONS(3441), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3441), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3441), - [sym_preproc_directive] = ACTIONS(3441), - [anon_sym_LPAREN2] = ACTIONS(3443), - [anon_sym_BANG] = ACTIONS(3443), - [anon_sym_TILDE] = ACTIONS(3443), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_PLUS] = ACTIONS(3441), - [anon_sym_STAR] = ACTIONS(3443), - [anon_sym_AMP_AMP] = ACTIONS(3443), - [anon_sym_AMP] = ACTIONS(3441), - [anon_sym_SEMI] = ACTIONS(3443), - [anon_sym___extension__] = ACTIONS(3441), - [anon_sym_typedef] = ACTIONS(3441), - [anon_sym_extern] = ACTIONS(3441), - [anon_sym___attribute__] = ACTIONS(3441), - [anon_sym_COLON_COLON] = ACTIONS(3443), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3443), - [anon_sym___declspec] = ACTIONS(3441), - [anon_sym___based] = ACTIONS(3441), - [anon_sym___cdecl] = ACTIONS(3441), - [anon_sym___clrcall] = ACTIONS(3441), - [anon_sym___stdcall] = ACTIONS(3441), - [anon_sym___fastcall] = ACTIONS(3441), - [anon_sym___thiscall] = ACTIONS(3441), - [anon_sym___vectorcall] = ACTIONS(3441), - [anon_sym_LBRACE] = ACTIONS(3443), - [anon_sym_signed] = ACTIONS(3441), - [anon_sym_unsigned] = ACTIONS(3441), - [anon_sym_long] = ACTIONS(3441), - [anon_sym_short] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_static] = ACTIONS(3441), - [anon_sym_register] = ACTIONS(3441), - [anon_sym_inline] = ACTIONS(3441), - [anon_sym___inline] = ACTIONS(3441), - [anon_sym___inline__] = ACTIONS(3441), - [anon_sym___forceinline] = ACTIONS(3441), - [anon_sym_thread_local] = ACTIONS(3441), - [anon_sym___thread] = ACTIONS(3441), - [anon_sym_const] = ACTIONS(3441), - [anon_sym_constexpr] = ACTIONS(3441), - [anon_sym_volatile] = ACTIONS(3441), - [anon_sym_restrict] = ACTIONS(3441), - [anon_sym___restrict__] = ACTIONS(3441), - [anon_sym__Atomic] = ACTIONS(3441), - [anon_sym__Noreturn] = ACTIONS(3441), - [anon_sym_noreturn] = ACTIONS(3441), - [anon_sym_mutable] = ACTIONS(3441), - [anon_sym_constinit] = ACTIONS(3441), - [anon_sym_consteval] = ACTIONS(3441), - [sym_primitive_type] = ACTIONS(3441), - [anon_sym_enum] = ACTIONS(3441), - [anon_sym_class] = ACTIONS(3441), - [anon_sym_struct] = ACTIONS(3441), - [anon_sym_union] = ACTIONS(3441), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_switch] = ACTIONS(3441), - [anon_sym_case] = ACTIONS(3441), - [anon_sym_default] = ACTIONS(3441), - [anon_sym_while] = ACTIONS(3441), - [anon_sym_do] = ACTIONS(3441), - [anon_sym_for] = ACTIONS(3441), - [anon_sym_return] = ACTIONS(3441), - [anon_sym_break] = ACTIONS(3441), - [anon_sym_continue] = ACTIONS(3441), - [anon_sym_goto] = ACTIONS(3441), - [anon_sym___try] = ACTIONS(3441), - [anon_sym___leave] = ACTIONS(3441), - [anon_sym_not] = ACTIONS(3441), - [anon_sym_compl] = ACTIONS(3441), - [anon_sym_DASH_DASH] = ACTIONS(3443), - [anon_sym_PLUS_PLUS] = ACTIONS(3443), - [anon_sym_sizeof] = ACTIONS(3441), - [anon_sym___alignof__] = ACTIONS(3441), - [anon_sym___alignof] = ACTIONS(3441), - [anon_sym__alignof] = ACTIONS(3441), - [anon_sym_alignof] = ACTIONS(3441), - [anon_sym__Alignof] = ACTIONS(3441), - [anon_sym_offsetof] = ACTIONS(3441), - [anon_sym__Generic] = ACTIONS(3441), - [anon_sym_asm] = ACTIONS(3441), - [anon_sym___asm__] = ACTIONS(3441), - [sym_number_literal] = ACTIONS(3443), - [anon_sym_L_SQUOTE] = ACTIONS(3443), - [anon_sym_u_SQUOTE] = ACTIONS(3443), - [anon_sym_U_SQUOTE] = ACTIONS(3443), - [anon_sym_u8_SQUOTE] = ACTIONS(3443), - [anon_sym_SQUOTE] = ACTIONS(3443), - [anon_sym_L_DQUOTE] = ACTIONS(3443), - [anon_sym_u_DQUOTE] = ACTIONS(3443), - [anon_sym_U_DQUOTE] = ACTIONS(3443), - [anon_sym_u8_DQUOTE] = ACTIONS(3443), - [anon_sym_DQUOTE] = ACTIONS(3443), - [sym_true] = ACTIONS(3441), - [sym_false] = ACTIONS(3441), - [anon_sym_NULL] = ACTIONS(3441), - [anon_sym_nullptr] = ACTIONS(3441), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3441), - [anon_sym_decltype] = ACTIONS(3441), - [anon_sym_virtual] = ACTIONS(3441), - [anon_sym_alignas] = ACTIONS(3441), - [anon_sym_explicit] = ACTIONS(3441), - [anon_sym_typename] = ACTIONS(3441), - [anon_sym_template] = ACTIONS(3441), - [anon_sym_operator] = ACTIONS(3441), - [anon_sym_try] = ACTIONS(3441), - [anon_sym_delete] = ACTIONS(3441), - [anon_sym_throw] = ACTIONS(3441), - [anon_sym_namespace] = ACTIONS(3441), - [anon_sym_using] = ACTIONS(3441), - [anon_sym_static_assert] = ACTIONS(3441), - [anon_sym_concept] = ACTIONS(3441), - [anon_sym_co_return] = ACTIONS(3441), - [anon_sym_co_yield] = ACTIONS(3441), - [anon_sym_R_DQUOTE] = ACTIONS(3443), - [anon_sym_LR_DQUOTE] = ACTIONS(3443), - [anon_sym_uR_DQUOTE] = ACTIONS(3443), - [anon_sym_UR_DQUOTE] = ACTIONS(3443), - [anon_sym_u8R_DQUOTE] = ACTIONS(3443), - [anon_sym_co_await] = ACTIONS(3441), - [anon_sym_new] = ACTIONS(3441), - [anon_sym_requires] = ACTIONS(3441), - [sym_this] = ACTIONS(3441), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3443), - [sym_semgrep_named_ellipsis] = ACTIONS(3443), - }, - [798] = { - [sym_identifier] = ACTIONS(3449), - [aux_sym_preproc_include_token1] = ACTIONS(3449), - [aux_sym_preproc_def_token1] = ACTIONS(3449), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3451), - [aux_sym_preproc_if_token1] = ACTIONS(3449), - [aux_sym_preproc_if_token2] = ACTIONS(3449), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3449), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3449), - [sym_preproc_directive] = ACTIONS(3449), - [anon_sym_LPAREN2] = ACTIONS(3451), - [anon_sym_BANG] = ACTIONS(3451), - [anon_sym_TILDE] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3449), - [anon_sym_PLUS] = ACTIONS(3449), - [anon_sym_STAR] = ACTIONS(3451), - [anon_sym_AMP_AMP] = ACTIONS(3451), - [anon_sym_AMP] = ACTIONS(3449), - [anon_sym_SEMI] = ACTIONS(3451), - [anon_sym___extension__] = ACTIONS(3449), - [anon_sym_typedef] = ACTIONS(3449), - [anon_sym_extern] = ACTIONS(3449), - [anon_sym___attribute__] = ACTIONS(3449), - [anon_sym_COLON_COLON] = ACTIONS(3451), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3451), - [anon_sym___declspec] = ACTIONS(3449), - [anon_sym___based] = ACTIONS(3449), - [anon_sym___cdecl] = ACTIONS(3449), - [anon_sym___clrcall] = ACTIONS(3449), - [anon_sym___stdcall] = ACTIONS(3449), - [anon_sym___fastcall] = ACTIONS(3449), - [anon_sym___thiscall] = ACTIONS(3449), - [anon_sym___vectorcall] = ACTIONS(3449), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_signed] = ACTIONS(3449), - [anon_sym_unsigned] = ACTIONS(3449), - [anon_sym_long] = ACTIONS(3449), - [anon_sym_short] = ACTIONS(3449), - [anon_sym_LBRACK] = ACTIONS(3449), - [anon_sym_static] = ACTIONS(3449), - [anon_sym_register] = ACTIONS(3449), - [anon_sym_inline] = ACTIONS(3449), - [anon_sym___inline] = ACTIONS(3449), - [anon_sym___inline__] = ACTIONS(3449), - [anon_sym___forceinline] = ACTIONS(3449), - [anon_sym_thread_local] = ACTIONS(3449), - [anon_sym___thread] = ACTIONS(3449), - [anon_sym_const] = ACTIONS(3449), - [anon_sym_constexpr] = ACTIONS(3449), - [anon_sym_volatile] = ACTIONS(3449), - [anon_sym_restrict] = ACTIONS(3449), - [anon_sym___restrict__] = ACTIONS(3449), - [anon_sym__Atomic] = ACTIONS(3449), - [anon_sym__Noreturn] = ACTIONS(3449), - [anon_sym_noreturn] = ACTIONS(3449), - [anon_sym_mutable] = ACTIONS(3449), - [anon_sym_constinit] = ACTIONS(3449), - [anon_sym_consteval] = ACTIONS(3449), - [sym_primitive_type] = ACTIONS(3449), - [anon_sym_enum] = ACTIONS(3449), - [anon_sym_class] = ACTIONS(3449), - [anon_sym_struct] = ACTIONS(3449), - [anon_sym_union] = ACTIONS(3449), - [anon_sym_if] = ACTIONS(3449), - [anon_sym_switch] = ACTIONS(3449), - [anon_sym_case] = ACTIONS(3449), - [anon_sym_default] = ACTIONS(3449), - [anon_sym_while] = ACTIONS(3449), - [anon_sym_do] = ACTIONS(3449), - [anon_sym_for] = ACTIONS(3449), - [anon_sym_return] = ACTIONS(3449), - [anon_sym_break] = ACTIONS(3449), - [anon_sym_continue] = ACTIONS(3449), - [anon_sym_goto] = ACTIONS(3449), - [anon_sym___try] = ACTIONS(3449), - [anon_sym___leave] = ACTIONS(3449), - [anon_sym_not] = ACTIONS(3449), - [anon_sym_compl] = ACTIONS(3449), - [anon_sym_DASH_DASH] = ACTIONS(3451), - [anon_sym_PLUS_PLUS] = ACTIONS(3451), - [anon_sym_sizeof] = ACTIONS(3449), - [anon_sym___alignof__] = ACTIONS(3449), - [anon_sym___alignof] = ACTIONS(3449), - [anon_sym__alignof] = ACTIONS(3449), - [anon_sym_alignof] = ACTIONS(3449), - [anon_sym__Alignof] = ACTIONS(3449), - [anon_sym_offsetof] = ACTIONS(3449), - [anon_sym__Generic] = ACTIONS(3449), - [anon_sym_asm] = ACTIONS(3449), - [anon_sym___asm__] = ACTIONS(3449), - [sym_number_literal] = ACTIONS(3451), - [anon_sym_L_SQUOTE] = ACTIONS(3451), - [anon_sym_u_SQUOTE] = ACTIONS(3451), - [anon_sym_U_SQUOTE] = ACTIONS(3451), - [anon_sym_u8_SQUOTE] = ACTIONS(3451), - [anon_sym_SQUOTE] = ACTIONS(3451), - [anon_sym_L_DQUOTE] = ACTIONS(3451), - [anon_sym_u_DQUOTE] = ACTIONS(3451), - [anon_sym_U_DQUOTE] = ACTIONS(3451), - [anon_sym_u8_DQUOTE] = ACTIONS(3451), - [anon_sym_DQUOTE] = ACTIONS(3451), - [sym_true] = ACTIONS(3449), - [sym_false] = ACTIONS(3449), - [anon_sym_NULL] = ACTIONS(3449), - [anon_sym_nullptr] = ACTIONS(3449), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3449), - [anon_sym_decltype] = ACTIONS(3449), - [anon_sym_virtual] = ACTIONS(3449), - [anon_sym_alignas] = ACTIONS(3449), - [anon_sym_explicit] = ACTIONS(3449), - [anon_sym_typename] = ACTIONS(3449), - [anon_sym_template] = ACTIONS(3449), - [anon_sym_operator] = ACTIONS(3449), - [anon_sym_try] = ACTIONS(3449), - [anon_sym_delete] = ACTIONS(3449), - [anon_sym_throw] = ACTIONS(3449), - [anon_sym_namespace] = ACTIONS(3449), - [anon_sym_using] = ACTIONS(3449), - [anon_sym_static_assert] = ACTIONS(3449), - [anon_sym_concept] = ACTIONS(3449), - [anon_sym_co_return] = ACTIONS(3449), - [anon_sym_co_yield] = ACTIONS(3449), - [anon_sym_R_DQUOTE] = ACTIONS(3451), - [anon_sym_LR_DQUOTE] = ACTIONS(3451), - [anon_sym_uR_DQUOTE] = ACTIONS(3451), - [anon_sym_UR_DQUOTE] = ACTIONS(3451), - [anon_sym_u8R_DQUOTE] = ACTIONS(3451), - [anon_sym_co_await] = ACTIONS(3449), - [anon_sym_new] = ACTIONS(3449), - [anon_sym_requires] = ACTIONS(3449), - [sym_this] = ACTIONS(3449), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3451), - [sym_semgrep_named_ellipsis] = ACTIONS(3451), - }, - [799] = { - [sym_identifier] = ACTIONS(3453), - [aux_sym_preproc_include_token1] = ACTIONS(3453), - [aux_sym_preproc_def_token1] = ACTIONS(3453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3455), - [aux_sym_preproc_if_token1] = ACTIONS(3453), - [aux_sym_preproc_if_token2] = ACTIONS(3453), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3453), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3453), - [sym_preproc_directive] = ACTIONS(3453), - [anon_sym_LPAREN2] = ACTIONS(3455), - [anon_sym_BANG] = ACTIONS(3455), - [anon_sym_TILDE] = ACTIONS(3455), - [anon_sym_DASH] = ACTIONS(3453), - [anon_sym_PLUS] = ACTIONS(3453), - [anon_sym_STAR] = ACTIONS(3455), - [anon_sym_AMP_AMP] = ACTIONS(3455), - [anon_sym_AMP] = ACTIONS(3453), - [anon_sym_SEMI] = ACTIONS(3455), - [anon_sym___extension__] = ACTIONS(3453), - [anon_sym_typedef] = ACTIONS(3453), - [anon_sym_extern] = ACTIONS(3453), - [anon_sym___attribute__] = ACTIONS(3453), - [anon_sym_COLON_COLON] = ACTIONS(3455), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3455), - [anon_sym___declspec] = ACTIONS(3453), - [anon_sym___based] = ACTIONS(3453), - [anon_sym___cdecl] = ACTIONS(3453), - [anon_sym___clrcall] = ACTIONS(3453), - [anon_sym___stdcall] = ACTIONS(3453), - [anon_sym___fastcall] = ACTIONS(3453), - [anon_sym___thiscall] = ACTIONS(3453), - [anon_sym___vectorcall] = ACTIONS(3453), - [anon_sym_LBRACE] = ACTIONS(3455), - [anon_sym_signed] = ACTIONS(3453), - [anon_sym_unsigned] = ACTIONS(3453), - [anon_sym_long] = ACTIONS(3453), - [anon_sym_short] = ACTIONS(3453), - [anon_sym_LBRACK] = ACTIONS(3453), - [anon_sym_static] = ACTIONS(3453), - [anon_sym_register] = ACTIONS(3453), - [anon_sym_inline] = ACTIONS(3453), - [anon_sym___inline] = ACTIONS(3453), - [anon_sym___inline__] = ACTIONS(3453), - [anon_sym___forceinline] = ACTIONS(3453), - [anon_sym_thread_local] = ACTIONS(3453), - [anon_sym___thread] = ACTIONS(3453), - [anon_sym_const] = ACTIONS(3453), - [anon_sym_constexpr] = ACTIONS(3453), - [anon_sym_volatile] = ACTIONS(3453), - [anon_sym_restrict] = ACTIONS(3453), - [anon_sym___restrict__] = ACTIONS(3453), - [anon_sym__Atomic] = ACTIONS(3453), - [anon_sym__Noreturn] = ACTIONS(3453), - [anon_sym_noreturn] = ACTIONS(3453), - [anon_sym_mutable] = ACTIONS(3453), - [anon_sym_constinit] = ACTIONS(3453), - [anon_sym_consteval] = ACTIONS(3453), - [sym_primitive_type] = ACTIONS(3453), - [anon_sym_enum] = ACTIONS(3453), - [anon_sym_class] = ACTIONS(3453), - [anon_sym_struct] = ACTIONS(3453), - [anon_sym_union] = ACTIONS(3453), - [anon_sym_if] = ACTIONS(3453), - [anon_sym_switch] = ACTIONS(3453), - [anon_sym_case] = ACTIONS(3453), - [anon_sym_default] = ACTIONS(3453), - [anon_sym_while] = ACTIONS(3453), - [anon_sym_do] = ACTIONS(3453), - [anon_sym_for] = ACTIONS(3453), - [anon_sym_return] = ACTIONS(3453), - [anon_sym_break] = ACTIONS(3453), - [anon_sym_continue] = ACTIONS(3453), - [anon_sym_goto] = ACTIONS(3453), - [anon_sym___try] = ACTIONS(3453), - [anon_sym___leave] = ACTIONS(3453), - [anon_sym_not] = ACTIONS(3453), - [anon_sym_compl] = ACTIONS(3453), - [anon_sym_DASH_DASH] = ACTIONS(3455), - [anon_sym_PLUS_PLUS] = ACTIONS(3455), - [anon_sym_sizeof] = ACTIONS(3453), - [anon_sym___alignof__] = ACTIONS(3453), - [anon_sym___alignof] = ACTIONS(3453), - [anon_sym__alignof] = ACTIONS(3453), - [anon_sym_alignof] = ACTIONS(3453), - [anon_sym__Alignof] = ACTIONS(3453), - [anon_sym_offsetof] = ACTIONS(3453), - [anon_sym__Generic] = ACTIONS(3453), - [anon_sym_asm] = ACTIONS(3453), - [anon_sym___asm__] = ACTIONS(3453), - [sym_number_literal] = ACTIONS(3455), - [anon_sym_L_SQUOTE] = ACTIONS(3455), - [anon_sym_u_SQUOTE] = ACTIONS(3455), - [anon_sym_U_SQUOTE] = ACTIONS(3455), - [anon_sym_u8_SQUOTE] = ACTIONS(3455), - [anon_sym_SQUOTE] = ACTIONS(3455), - [anon_sym_L_DQUOTE] = ACTIONS(3455), - [anon_sym_u_DQUOTE] = ACTIONS(3455), - [anon_sym_U_DQUOTE] = ACTIONS(3455), - [anon_sym_u8_DQUOTE] = ACTIONS(3455), - [anon_sym_DQUOTE] = ACTIONS(3455), - [sym_true] = ACTIONS(3453), - [sym_false] = ACTIONS(3453), - [anon_sym_NULL] = ACTIONS(3453), - [anon_sym_nullptr] = ACTIONS(3453), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3453), - [anon_sym_decltype] = ACTIONS(3453), - [anon_sym_virtual] = ACTIONS(3453), - [anon_sym_alignas] = ACTIONS(3453), - [anon_sym_explicit] = ACTIONS(3453), - [anon_sym_typename] = ACTIONS(3453), - [anon_sym_template] = ACTIONS(3453), - [anon_sym_operator] = ACTIONS(3453), - [anon_sym_try] = ACTIONS(3453), - [anon_sym_delete] = ACTIONS(3453), - [anon_sym_throw] = ACTIONS(3453), - [anon_sym_namespace] = ACTIONS(3453), - [anon_sym_using] = ACTIONS(3453), - [anon_sym_static_assert] = ACTIONS(3453), - [anon_sym_concept] = ACTIONS(3453), - [anon_sym_co_return] = ACTIONS(3453), - [anon_sym_co_yield] = ACTIONS(3453), - [anon_sym_R_DQUOTE] = ACTIONS(3455), - [anon_sym_LR_DQUOTE] = ACTIONS(3455), - [anon_sym_uR_DQUOTE] = ACTIONS(3455), - [anon_sym_UR_DQUOTE] = ACTIONS(3455), - [anon_sym_u8R_DQUOTE] = ACTIONS(3455), - [anon_sym_co_await] = ACTIONS(3453), - [anon_sym_new] = ACTIONS(3453), - [anon_sym_requires] = ACTIONS(3453), - [sym_this] = ACTIONS(3453), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3455), - [sym_semgrep_named_ellipsis] = ACTIONS(3455), - }, - [800] = { - [sym_identifier] = ACTIONS(3388), - [aux_sym_preproc_include_token1] = ACTIONS(3388), - [aux_sym_preproc_def_token1] = ACTIONS(3388), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3390), - [aux_sym_preproc_if_token1] = ACTIONS(3388), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3388), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3388), - [sym_preproc_directive] = ACTIONS(3388), - [anon_sym_LPAREN2] = ACTIONS(3390), - [anon_sym_BANG] = ACTIONS(3390), - [anon_sym_TILDE] = ACTIONS(3390), - [anon_sym_DASH] = ACTIONS(3388), - [anon_sym_PLUS] = ACTIONS(3388), - [anon_sym_STAR] = ACTIONS(3390), - [anon_sym_AMP_AMP] = ACTIONS(3390), - [anon_sym_AMP] = ACTIONS(3388), - [anon_sym_SEMI] = ACTIONS(3390), - [anon_sym___extension__] = ACTIONS(3388), - [anon_sym_typedef] = ACTIONS(3388), - [anon_sym_extern] = ACTIONS(3388), - [anon_sym___attribute__] = ACTIONS(3388), - [anon_sym_COLON_COLON] = ACTIONS(3390), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3390), - [anon_sym___declspec] = ACTIONS(3388), - [anon_sym___based] = ACTIONS(3388), - [anon_sym___cdecl] = ACTIONS(3388), - [anon_sym___clrcall] = ACTIONS(3388), - [anon_sym___stdcall] = ACTIONS(3388), - [anon_sym___fastcall] = ACTIONS(3388), - [anon_sym___thiscall] = ACTIONS(3388), - [anon_sym___vectorcall] = ACTIONS(3388), - [anon_sym_LBRACE] = ACTIONS(3390), - [anon_sym_RBRACE] = ACTIONS(3390), - [anon_sym_signed] = ACTIONS(3388), - [anon_sym_unsigned] = ACTIONS(3388), - [anon_sym_long] = ACTIONS(3388), - [anon_sym_short] = ACTIONS(3388), - [anon_sym_LBRACK] = ACTIONS(3388), - [anon_sym_static] = ACTIONS(3388), - [anon_sym_register] = ACTIONS(3388), - [anon_sym_inline] = ACTIONS(3388), - [anon_sym___inline] = ACTIONS(3388), - [anon_sym___inline__] = ACTIONS(3388), - [anon_sym___forceinline] = ACTIONS(3388), - [anon_sym_thread_local] = ACTIONS(3388), - [anon_sym___thread] = ACTIONS(3388), - [anon_sym_const] = ACTIONS(3388), - [anon_sym_constexpr] = ACTIONS(3388), - [anon_sym_volatile] = ACTIONS(3388), - [anon_sym_restrict] = ACTIONS(3388), - [anon_sym___restrict__] = ACTIONS(3388), - [anon_sym__Atomic] = ACTIONS(3388), - [anon_sym__Noreturn] = ACTIONS(3388), - [anon_sym_noreturn] = ACTIONS(3388), - [anon_sym_mutable] = ACTIONS(3388), - [anon_sym_constinit] = ACTIONS(3388), - [anon_sym_consteval] = ACTIONS(3388), - [sym_primitive_type] = ACTIONS(3388), - [anon_sym_enum] = ACTIONS(3388), - [anon_sym_class] = ACTIONS(3388), - [anon_sym_struct] = ACTIONS(3388), - [anon_sym_union] = ACTIONS(3388), - [anon_sym_if] = ACTIONS(3388), - [anon_sym_switch] = ACTIONS(3388), - [anon_sym_case] = ACTIONS(3388), - [anon_sym_default] = ACTIONS(3388), - [anon_sym_while] = ACTIONS(3388), - [anon_sym_do] = ACTIONS(3388), - [anon_sym_for] = ACTIONS(3388), - [anon_sym_return] = ACTIONS(3388), - [anon_sym_break] = ACTIONS(3388), - [anon_sym_continue] = ACTIONS(3388), - [anon_sym_goto] = ACTIONS(3388), - [anon_sym___try] = ACTIONS(3388), - [anon_sym___leave] = ACTIONS(3388), - [anon_sym_not] = ACTIONS(3388), - [anon_sym_compl] = ACTIONS(3388), - [anon_sym_DASH_DASH] = ACTIONS(3390), - [anon_sym_PLUS_PLUS] = ACTIONS(3390), - [anon_sym_sizeof] = ACTIONS(3388), - [anon_sym___alignof__] = ACTIONS(3388), - [anon_sym___alignof] = ACTIONS(3388), - [anon_sym__alignof] = ACTIONS(3388), - [anon_sym_alignof] = ACTIONS(3388), - [anon_sym__Alignof] = ACTIONS(3388), - [anon_sym_offsetof] = ACTIONS(3388), - [anon_sym__Generic] = ACTIONS(3388), - [anon_sym_asm] = ACTIONS(3388), - [anon_sym___asm__] = ACTIONS(3388), - [sym_number_literal] = ACTIONS(3390), - [anon_sym_L_SQUOTE] = ACTIONS(3390), - [anon_sym_u_SQUOTE] = ACTIONS(3390), - [anon_sym_U_SQUOTE] = ACTIONS(3390), - [anon_sym_u8_SQUOTE] = ACTIONS(3390), - [anon_sym_SQUOTE] = ACTIONS(3390), - [anon_sym_L_DQUOTE] = ACTIONS(3390), - [anon_sym_u_DQUOTE] = ACTIONS(3390), - [anon_sym_U_DQUOTE] = ACTIONS(3390), - [anon_sym_u8_DQUOTE] = ACTIONS(3390), - [anon_sym_DQUOTE] = ACTIONS(3390), - [sym_true] = ACTIONS(3388), - [sym_false] = ACTIONS(3388), - [anon_sym_NULL] = ACTIONS(3388), - [anon_sym_nullptr] = ACTIONS(3388), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3388), - [anon_sym_decltype] = ACTIONS(3388), - [anon_sym_virtual] = ACTIONS(3388), - [anon_sym_alignas] = ACTIONS(3388), - [anon_sym_explicit] = ACTIONS(3388), - [anon_sym_typename] = ACTIONS(3388), - [anon_sym_template] = ACTIONS(3388), - [anon_sym_operator] = ACTIONS(3388), - [anon_sym_try] = ACTIONS(3388), - [anon_sym_delete] = ACTIONS(3388), - [anon_sym_throw] = ACTIONS(3388), - [anon_sym_namespace] = ACTIONS(3388), - [anon_sym_using] = ACTIONS(3388), - [anon_sym_static_assert] = ACTIONS(3388), - [anon_sym_concept] = ACTIONS(3388), - [anon_sym_co_return] = ACTIONS(3388), - [anon_sym_co_yield] = ACTIONS(3388), - [anon_sym_R_DQUOTE] = ACTIONS(3390), - [anon_sym_LR_DQUOTE] = ACTIONS(3390), - [anon_sym_uR_DQUOTE] = ACTIONS(3390), - [anon_sym_UR_DQUOTE] = ACTIONS(3390), - [anon_sym_u8R_DQUOTE] = ACTIONS(3390), - [anon_sym_co_await] = ACTIONS(3388), - [anon_sym_new] = ACTIONS(3388), - [anon_sym_requires] = ACTIONS(3388), - [sym_this] = ACTIONS(3388), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3390), - [sym_semgrep_named_ellipsis] = ACTIONS(3390), - }, - [801] = { [sym_identifier] = ACTIONS(3457), [aux_sym_preproc_include_token1] = ACTIONS(3457), [aux_sym_preproc_def_token1] = ACTIONS(3457), @@ -175727,7 +164539,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3459), [sym_semgrep_named_ellipsis] = ACTIONS(3459), }, - [802] = { + [792] = { [sym_identifier] = ACTIONS(3461), [aux_sym_preproc_include_token1] = ACTIONS(3461), [aux_sym_preproc_def_token1] = ACTIONS(3461), @@ -175862,7 +164674,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3463), [sym_semgrep_named_ellipsis] = ACTIONS(3463), }, - [803] = { + [793] = { + [sym_identifier] = ACTIONS(3599), + [aux_sym_preproc_include_token1] = ACTIONS(3599), + [aux_sym_preproc_def_token1] = ACTIONS(3599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3601), + [aux_sym_preproc_if_token1] = ACTIONS(3599), + [aux_sym_preproc_if_token2] = ACTIONS(3599), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3599), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3599), + [sym_preproc_directive] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(3601), + [anon_sym_BANG] = ACTIONS(3601), + [anon_sym_TILDE] = ACTIONS(3601), + [anon_sym_DASH] = ACTIONS(3599), + [anon_sym_PLUS] = ACTIONS(3599), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP_AMP] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3599), + [anon_sym_SEMI] = ACTIONS(3601), + [anon_sym___extension__] = ACTIONS(3599), + [anon_sym_typedef] = ACTIONS(3599), + [anon_sym_extern] = ACTIONS(3599), + [anon_sym___attribute__] = ACTIONS(3599), + [anon_sym_COLON_COLON] = ACTIONS(3601), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3601), + [anon_sym___declspec] = ACTIONS(3599), + [anon_sym___based] = ACTIONS(3599), + [anon_sym___cdecl] = ACTIONS(3599), + [anon_sym___clrcall] = ACTIONS(3599), + [anon_sym___stdcall] = ACTIONS(3599), + [anon_sym___fastcall] = ACTIONS(3599), + [anon_sym___thiscall] = ACTIONS(3599), + [anon_sym___vectorcall] = ACTIONS(3599), + [anon_sym_LBRACE] = ACTIONS(3601), + [anon_sym_signed] = ACTIONS(3599), + [anon_sym_unsigned] = ACTIONS(3599), + [anon_sym_long] = ACTIONS(3599), + [anon_sym_short] = ACTIONS(3599), + [anon_sym_LBRACK] = ACTIONS(3599), + [anon_sym_static] = ACTIONS(3599), + [anon_sym_register] = ACTIONS(3599), + [anon_sym_inline] = ACTIONS(3599), + [anon_sym___inline] = ACTIONS(3599), + [anon_sym___inline__] = ACTIONS(3599), + [anon_sym___forceinline] = ACTIONS(3599), + [anon_sym_thread_local] = ACTIONS(3599), + [anon_sym___thread] = ACTIONS(3599), + [anon_sym_const] = ACTIONS(3599), + [anon_sym_constexpr] = ACTIONS(3599), + [anon_sym_volatile] = ACTIONS(3599), + [anon_sym_restrict] = ACTIONS(3599), + [anon_sym___restrict__] = ACTIONS(3599), + [anon_sym__Atomic] = ACTIONS(3599), + [anon_sym__Noreturn] = ACTIONS(3599), + [anon_sym_noreturn] = ACTIONS(3599), + [anon_sym_mutable] = ACTIONS(3599), + [anon_sym_constinit] = ACTIONS(3599), + [anon_sym_consteval] = ACTIONS(3599), + [sym_primitive_type] = ACTIONS(3599), + [anon_sym_enum] = ACTIONS(3599), + [anon_sym_class] = ACTIONS(3599), + [anon_sym_struct] = ACTIONS(3599), + [anon_sym_union] = ACTIONS(3599), + [anon_sym_if] = ACTIONS(3599), + [anon_sym_switch] = ACTIONS(3599), + [anon_sym_case] = ACTIONS(3599), + [anon_sym_default] = ACTIONS(3599), + [anon_sym_while] = ACTIONS(3599), + [anon_sym_do] = ACTIONS(3599), + [anon_sym_for] = ACTIONS(3599), + [anon_sym_return] = ACTIONS(3599), + [anon_sym_break] = ACTIONS(3599), + [anon_sym_continue] = ACTIONS(3599), + [anon_sym_goto] = ACTIONS(3599), + [anon_sym___try] = ACTIONS(3599), + [anon_sym___leave] = ACTIONS(3599), + [anon_sym_not] = ACTIONS(3599), + [anon_sym_compl] = ACTIONS(3599), + [anon_sym_DASH_DASH] = ACTIONS(3601), + [anon_sym_PLUS_PLUS] = ACTIONS(3601), + [anon_sym_sizeof] = ACTIONS(3599), + [anon_sym___alignof__] = ACTIONS(3599), + [anon_sym___alignof] = ACTIONS(3599), + [anon_sym__alignof] = ACTIONS(3599), + [anon_sym_alignof] = ACTIONS(3599), + [anon_sym__Alignof] = ACTIONS(3599), + [anon_sym_offsetof] = ACTIONS(3599), + [anon_sym__Generic] = ACTIONS(3599), + [anon_sym_asm] = ACTIONS(3599), + [anon_sym___asm__] = ACTIONS(3599), + [sym_number_literal] = ACTIONS(3601), + [anon_sym_L_SQUOTE] = ACTIONS(3601), + [anon_sym_u_SQUOTE] = ACTIONS(3601), + [anon_sym_U_SQUOTE] = ACTIONS(3601), + [anon_sym_u8_SQUOTE] = ACTIONS(3601), + [anon_sym_SQUOTE] = ACTIONS(3601), + [anon_sym_L_DQUOTE] = ACTIONS(3601), + [anon_sym_u_DQUOTE] = ACTIONS(3601), + [anon_sym_U_DQUOTE] = ACTIONS(3601), + [anon_sym_u8_DQUOTE] = ACTIONS(3601), + [anon_sym_DQUOTE] = ACTIONS(3601), + [sym_true] = ACTIONS(3599), + [sym_false] = ACTIONS(3599), + [anon_sym_NULL] = ACTIONS(3599), + [anon_sym_nullptr] = ACTIONS(3599), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3599), + [anon_sym_decltype] = ACTIONS(3599), + [anon_sym_virtual] = ACTIONS(3599), + [anon_sym_alignas] = ACTIONS(3599), + [anon_sym_explicit] = ACTIONS(3599), + [anon_sym_typename] = ACTIONS(3599), + [anon_sym_template] = ACTIONS(3599), + [anon_sym_operator] = ACTIONS(3599), + [anon_sym_try] = ACTIONS(3599), + [anon_sym_delete] = ACTIONS(3599), + [anon_sym_throw] = ACTIONS(3599), + [anon_sym_namespace] = ACTIONS(3599), + [anon_sym_using] = ACTIONS(3599), + [anon_sym_static_assert] = ACTIONS(3599), + [anon_sym_concept] = ACTIONS(3599), + [anon_sym_co_return] = ACTIONS(3599), + [anon_sym_co_yield] = ACTIONS(3599), + [anon_sym_R_DQUOTE] = ACTIONS(3601), + [anon_sym_LR_DQUOTE] = ACTIONS(3601), + [anon_sym_uR_DQUOTE] = ACTIONS(3601), + [anon_sym_UR_DQUOTE] = ACTIONS(3601), + [anon_sym_u8R_DQUOTE] = ACTIONS(3601), + [anon_sym_co_await] = ACTIONS(3599), + [anon_sym_new] = ACTIONS(3599), + [anon_sym_requires] = ACTIONS(3599), + [sym_this] = ACTIONS(3599), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3601), + [sym_semgrep_named_ellipsis] = ACTIONS(3601), + }, + [794] = { [sym_identifier] = ACTIONS(3465), [aux_sym_preproc_include_token1] = ACTIONS(3465), [aux_sym_preproc_def_token1] = ACTIONS(3465), @@ -175997,635 +164944,1705 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3467), [sym_semgrep_named_ellipsis] = ACTIONS(3467), }, + [795] = { + [sym_identifier] = ACTIONS(3603), + [aux_sym_preproc_include_token1] = ACTIONS(3603), + [aux_sym_preproc_def_token1] = ACTIONS(3603), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3605), + [aux_sym_preproc_if_token1] = ACTIONS(3603), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3603), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3603), + [sym_preproc_directive] = ACTIONS(3603), + [anon_sym_LPAREN2] = ACTIONS(3605), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(3605), + [anon_sym_DASH] = ACTIONS(3603), + [anon_sym_PLUS] = ACTIONS(3603), + [anon_sym_STAR] = ACTIONS(3605), + [anon_sym_AMP_AMP] = ACTIONS(3605), + [anon_sym_AMP] = ACTIONS(3603), + [anon_sym_SEMI] = ACTIONS(3605), + [anon_sym___extension__] = ACTIONS(3603), + [anon_sym_typedef] = ACTIONS(3603), + [anon_sym_extern] = ACTIONS(3603), + [anon_sym___attribute__] = ACTIONS(3603), + [anon_sym_COLON_COLON] = ACTIONS(3605), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3605), + [anon_sym___declspec] = ACTIONS(3603), + [anon_sym___based] = ACTIONS(3603), + [anon_sym___cdecl] = ACTIONS(3603), + [anon_sym___clrcall] = ACTIONS(3603), + [anon_sym___stdcall] = ACTIONS(3603), + [anon_sym___fastcall] = ACTIONS(3603), + [anon_sym___thiscall] = ACTIONS(3603), + [anon_sym___vectorcall] = ACTIONS(3603), + [anon_sym_LBRACE] = ACTIONS(3605), + [anon_sym_RBRACE] = ACTIONS(3605), + [anon_sym_signed] = ACTIONS(3603), + [anon_sym_unsigned] = ACTIONS(3603), + [anon_sym_long] = ACTIONS(3603), + [anon_sym_short] = ACTIONS(3603), + [anon_sym_LBRACK] = ACTIONS(3603), + [anon_sym_static] = ACTIONS(3603), + [anon_sym_register] = ACTIONS(3603), + [anon_sym_inline] = ACTIONS(3603), + [anon_sym___inline] = ACTIONS(3603), + [anon_sym___inline__] = ACTIONS(3603), + [anon_sym___forceinline] = ACTIONS(3603), + [anon_sym_thread_local] = ACTIONS(3603), + [anon_sym___thread] = ACTIONS(3603), + [anon_sym_const] = ACTIONS(3603), + [anon_sym_constexpr] = ACTIONS(3603), + [anon_sym_volatile] = ACTIONS(3603), + [anon_sym_restrict] = ACTIONS(3603), + [anon_sym___restrict__] = ACTIONS(3603), + [anon_sym__Atomic] = ACTIONS(3603), + [anon_sym__Noreturn] = ACTIONS(3603), + [anon_sym_noreturn] = ACTIONS(3603), + [anon_sym_mutable] = ACTIONS(3603), + [anon_sym_constinit] = ACTIONS(3603), + [anon_sym_consteval] = ACTIONS(3603), + [sym_primitive_type] = ACTIONS(3603), + [anon_sym_enum] = ACTIONS(3603), + [anon_sym_class] = ACTIONS(3603), + [anon_sym_struct] = ACTIONS(3603), + [anon_sym_union] = ACTIONS(3603), + [anon_sym_if] = ACTIONS(3603), + [anon_sym_switch] = ACTIONS(3603), + [anon_sym_case] = ACTIONS(3603), + [anon_sym_default] = ACTIONS(3603), + [anon_sym_while] = ACTIONS(3603), + [anon_sym_do] = ACTIONS(3603), + [anon_sym_for] = ACTIONS(3603), + [anon_sym_return] = ACTIONS(3603), + [anon_sym_break] = ACTIONS(3603), + [anon_sym_continue] = ACTIONS(3603), + [anon_sym_goto] = ACTIONS(3603), + [anon_sym___try] = ACTIONS(3603), + [anon_sym___leave] = ACTIONS(3603), + [anon_sym_not] = ACTIONS(3603), + [anon_sym_compl] = ACTIONS(3603), + [anon_sym_DASH_DASH] = ACTIONS(3605), + [anon_sym_PLUS_PLUS] = ACTIONS(3605), + [anon_sym_sizeof] = ACTIONS(3603), + [anon_sym___alignof__] = ACTIONS(3603), + [anon_sym___alignof] = ACTIONS(3603), + [anon_sym__alignof] = ACTIONS(3603), + [anon_sym_alignof] = ACTIONS(3603), + [anon_sym__Alignof] = ACTIONS(3603), + [anon_sym_offsetof] = ACTIONS(3603), + [anon_sym__Generic] = ACTIONS(3603), + [anon_sym_asm] = ACTIONS(3603), + [anon_sym___asm__] = ACTIONS(3603), + [sym_number_literal] = ACTIONS(3605), + [anon_sym_L_SQUOTE] = ACTIONS(3605), + [anon_sym_u_SQUOTE] = ACTIONS(3605), + [anon_sym_U_SQUOTE] = ACTIONS(3605), + [anon_sym_u8_SQUOTE] = ACTIONS(3605), + [anon_sym_SQUOTE] = ACTIONS(3605), + [anon_sym_L_DQUOTE] = ACTIONS(3605), + [anon_sym_u_DQUOTE] = ACTIONS(3605), + [anon_sym_U_DQUOTE] = ACTIONS(3605), + [anon_sym_u8_DQUOTE] = ACTIONS(3605), + [anon_sym_DQUOTE] = ACTIONS(3605), + [sym_true] = ACTIONS(3603), + [sym_false] = ACTIONS(3603), + [anon_sym_NULL] = ACTIONS(3603), + [anon_sym_nullptr] = ACTIONS(3603), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3603), + [anon_sym_decltype] = ACTIONS(3603), + [anon_sym_virtual] = ACTIONS(3603), + [anon_sym_alignas] = ACTIONS(3603), + [anon_sym_explicit] = ACTIONS(3603), + [anon_sym_typename] = ACTIONS(3603), + [anon_sym_template] = ACTIONS(3603), + [anon_sym_operator] = ACTIONS(3603), + [anon_sym_try] = ACTIONS(3603), + [anon_sym_delete] = ACTIONS(3603), + [anon_sym_throw] = ACTIONS(3603), + [anon_sym_namespace] = ACTIONS(3603), + [anon_sym_using] = ACTIONS(3603), + [anon_sym_static_assert] = ACTIONS(3603), + [anon_sym_concept] = ACTIONS(3603), + [anon_sym_co_return] = ACTIONS(3603), + [anon_sym_co_yield] = ACTIONS(3603), + [anon_sym_R_DQUOTE] = ACTIONS(3605), + [anon_sym_LR_DQUOTE] = ACTIONS(3605), + [anon_sym_uR_DQUOTE] = ACTIONS(3605), + [anon_sym_UR_DQUOTE] = ACTIONS(3605), + [anon_sym_u8R_DQUOTE] = ACTIONS(3605), + [anon_sym_co_await] = ACTIONS(3603), + [anon_sym_new] = ACTIONS(3603), + [anon_sym_requires] = ACTIONS(3603), + [sym_this] = ACTIONS(3603), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3605), + [sym_semgrep_named_ellipsis] = ACTIONS(3605), + }, + [796] = { + [sym_identifier] = ACTIONS(3609), + [aux_sym_preproc_include_token1] = ACTIONS(3609), + [aux_sym_preproc_def_token1] = ACTIONS(3609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3611), + [aux_sym_preproc_if_token1] = ACTIONS(3609), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3609), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3609), + [sym_preproc_directive] = ACTIONS(3609), + [anon_sym_LPAREN2] = ACTIONS(3611), + [anon_sym_BANG] = ACTIONS(3611), + [anon_sym_TILDE] = ACTIONS(3611), + [anon_sym_DASH] = ACTIONS(3609), + [anon_sym_PLUS] = ACTIONS(3609), + [anon_sym_STAR] = ACTIONS(3611), + [anon_sym_AMP_AMP] = ACTIONS(3611), + [anon_sym_AMP] = ACTIONS(3609), + [anon_sym_SEMI] = ACTIONS(3611), + [anon_sym___extension__] = ACTIONS(3609), + [anon_sym_typedef] = ACTIONS(3609), + [anon_sym_extern] = ACTIONS(3609), + [anon_sym___attribute__] = ACTIONS(3609), + [anon_sym_COLON_COLON] = ACTIONS(3611), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3611), + [anon_sym___declspec] = ACTIONS(3609), + [anon_sym___based] = ACTIONS(3609), + [anon_sym___cdecl] = ACTIONS(3609), + [anon_sym___clrcall] = ACTIONS(3609), + [anon_sym___stdcall] = ACTIONS(3609), + [anon_sym___fastcall] = ACTIONS(3609), + [anon_sym___thiscall] = ACTIONS(3609), + [anon_sym___vectorcall] = ACTIONS(3609), + [anon_sym_LBRACE] = ACTIONS(3611), + [anon_sym_RBRACE] = ACTIONS(3611), + [anon_sym_signed] = ACTIONS(3609), + [anon_sym_unsigned] = ACTIONS(3609), + [anon_sym_long] = ACTIONS(3609), + [anon_sym_short] = ACTIONS(3609), + [anon_sym_LBRACK] = ACTIONS(3609), + [anon_sym_static] = ACTIONS(3609), + [anon_sym_register] = ACTIONS(3609), + [anon_sym_inline] = ACTIONS(3609), + [anon_sym___inline] = ACTIONS(3609), + [anon_sym___inline__] = ACTIONS(3609), + [anon_sym___forceinline] = ACTIONS(3609), + [anon_sym_thread_local] = ACTIONS(3609), + [anon_sym___thread] = ACTIONS(3609), + [anon_sym_const] = ACTIONS(3609), + [anon_sym_constexpr] = ACTIONS(3609), + [anon_sym_volatile] = ACTIONS(3609), + [anon_sym_restrict] = ACTIONS(3609), + [anon_sym___restrict__] = ACTIONS(3609), + [anon_sym__Atomic] = ACTIONS(3609), + [anon_sym__Noreturn] = ACTIONS(3609), + [anon_sym_noreturn] = ACTIONS(3609), + [anon_sym_mutable] = ACTIONS(3609), + [anon_sym_constinit] = ACTIONS(3609), + [anon_sym_consteval] = ACTIONS(3609), + [sym_primitive_type] = ACTIONS(3609), + [anon_sym_enum] = ACTIONS(3609), + [anon_sym_class] = ACTIONS(3609), + [anon_sym_struct] = ACTIONS(3609), + [anon_sym_union] = ACTIONS(3609), + [anon_sym_if] = ACTIONS(3609), + [anon_sym_switch] = ACTIONS(3609), + [anon_sym_case] = ACTIONS(3609), + [anon_sym_default] = ACTIONS(3609), + [anon_sym_while] = ACTIONS(3609), + [anon_sym_do] = ACTIONS(3609), + [anon_sym_for] = ACTIONS(3609), + [anon_sym_return] = ACTIONS(3609), + [anon_sym_break] = ACTIONS(3609), + [anon_sym_continue] = ACTIONS(3609), + [anon_sym_goto] = ACTIONS(3609), + [anon_sym___try] = ACTIONS(3609), + [anon_sym___leave] = ACTIONS(3609), + [anon_sym_not] = ACTIONS(3609), + [anon_sym_compl] = ACTIONS(3609), + [anon_sym_DASH_DASH] = ACTIONS(3611), + [anon_sym_PLUS_PLUS] = ACTIONS(3611), + [anon_sym_sizeof] = ACTIONS(3609), + [anon_sym___alignof__] = ACTIONS(3609), + [anon_sym___alignof] = ACTIONS(3609), + [anon_sym__alignof] = ACTIONS(3609), + [anon_sym_alignof] = ACTIONS(3609), + [anon_sym__Alignof] = ACTIONS(3609), + [anon_sym_offsetof] = ACTIONS(3609), + [anon_sym__Generic] = ACTIONS(3609), + [anon_sym_asm] = ACTIONS(3609), + [anon_sym___asm__] = ACTIONS(3609), + [sym_number_literal] = ACTIONS(3611), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3611), + [anon_sym_u_DQUOTE] = ACTIONS(3611), + [anon_sym_U_DQUOTE] = ACTIONS(3611), + [anon_sym_u8_DQUOTE] = ACTIONS(3611), + [anon_sym_DQUOTE] = ACTIONS(3611), + [sym_true] = ACTIONS(3609), + [sym_false] = ACTIONS(3609), + [anon_sym_NULL] = ACTIONS(3609), + [anon_sym_nullptr] = ACTIONS(3609), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3609), + [anon_sym_decltype] = ACTIONS(3609), + [anon_sym_virtual] = ACTIONS(3609), + [anon_sym_alignas] = ACTIONS(3609), + [anon_sym_explicit] = ACTIONS(3609), + [anon_sym_typename] = ACTIONS(3609), + [anon_sym_template] = ACTIONS(3609), + [anon_sym_operator] = ACTIONS(3609), + [anon_sym_try] = ACTIONS(3609), + [anon_sym_delete] = ACTIONS(3609), + [anon_sym_throw] = ACTIONS(3609), + [anon_sym_namespace] = ACTIONS(3609), + [anon_sym_using] = ACTIONS(3609), + [anon_sym_static_assert] = ACTIONS(3609), + [anon_sym_concept] = ACTIONS(3609), + [anon_sym_co_return] = ACTIONS(3609), + [anon_sym_co_yield] = ACTIONS(3609), + [anon_sym_R_DQUOTE] = ACTIONS(3611), + [anon_sym_LR_DQUOTE] = ACTIONS(3611), + [anon_sym_uR_DQUOTE] = ACTIONS(3611), + [anon_sym_UR_DQUOTE] = ACTIONS(3611), + [anon_sym_u8R_DQUOTE] = ACTIONS(3611), + [anon_sym_co_await] = ACTIONS(3609), + [anon_sym_new] = ACTIONS(3609), + [anon_sym_requires] = ACTIONS(3609), + [sym_this] = ACTIONS(3609), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3611), + [sym_semgrep_named_ellipsis] = ACTIONS(3611), + }, + [797] = { + [sym_identifier] = ACTIONS(3613), + [aux_sym_preproc_include_token1] = ACTIONS(3613), + [aux_sym_preproc_def_token1] = ACTIONS(3613), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3615), + [aux_sym_preproc_if_token1] = ACTIONS(3613), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3613), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3613), + [sym_preproc_directive] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3615), + [anon_sym_TILDE] = ACTIONS(3615), + [anon_sym_DASH] = ACTIONS(3613), + [anon_sym_PLUS] = ACTIONS(3613), + [anon_sym_STAR] = ACTIONS(3615), + [anon_sym_AMP_AMP] = ACTIONS(3615), + [anon_sym_AMP] = ACTIONS(3613), + [anon_sym_SEMI] = ACTIONS(3615), + [anon_sym___extension__] = ACTIONS(3613), + [anon_sym_typedef] = ACTIONS(3613), + [anon_sym_extern] = ACTIONS(3613), + [anon_sym___attribute__] = ACTIONS(3613), + [anon_sym_COLON_COLON] = ACTIONS(3615), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3615), + [anon_sym___declspec] = ACTIONS(3613), + [anon_sym___based] = ACTIONS(3613), + [anon_sym___cdecl] = ACTIONS(3613), + [anon_sym___clrcall] = ACTIONS(3613), + [anon_sym___stdcall] = ACTIONS(3613), + [anon_sym___fastcall] = ACTIONS(3613), + [anon_sym___thiscall] = ACTIONS(3613), + [anon_sym___vectorcall] = ACTIONS(3613), + [anon_sym_LBRACE] = ACTIONS(3615), + [anon_sym_RBRACE] = ACTIONS(3615), + [anon_sym_signed] = ACTIONS(3613), + [anon_sym_unsigned] = ACTIONS(3613), + [anon_sym_long] = ACTIONS(3613), + [anon_sym_short] = ACTIONS(3613), + [anon_sym_LBRACK] = ACTIONS(3613), + [anon_sym_static] = ACTIONS(3613), + [anon_sym_register] = ACTIONS(3613), + [anon_sym_inline] = ACTIONS(3613), + [anon_sym___inline] = ACTIONS(3613), + [anon_sym___inline__] = ACTIONS(3613), + [anon_sym___forceinline] = ACTIONS(3613), + [anon_sym_thread_local] = ACTIONS(3613), + [anon_sym___thread] = ACTIONS(3613), + [anon_sym_const] = ACTIONS(3613), + [anon_sym_constexpr] = ACTIONS(3613), + [anon_sym_volatile] = ACTIONS(3613), + [anon_sym_restrict] = ACTIONS(3613), + [anon_sym___restrict__] = ACTIONS(3613), + [anon_sym__Atomic] = ACTIONS(3613), + [anon_sym__Noreturn] = ACTIONS(3613), + [anon_sym_noreturn] = ACTIONS(3613), + [anon_sym_mutable] = ACTIONS(3613), + [anon_sym_constinit] = ACTIONS(3613), + [anon_sym_consteval] = ACTIONS(3613), + [sym_primitive_type] = ACTIONS(3613), + [anon_sym_enum] = ACTIONS(3613), + [anon_sym_class] = ACTIONS(3613), + [anon_sym_struct] = ACTIONS(3613), + [anon_sym_union] = ACTIONS(3613), + [anon_sym_if] = ACTIONS(3613), + [anon_sym_switch] = ACTIONS(3613), + [anon_sym_case] = ACTIONS(3613), + [anon_sym_default] = ACTIONS(3613), + [anon_sym_while] = ACTIONS(3613), + [anon_sym_do] = ACTIONS(3613), + [anon_sym_for] = ACTIONS(3613), + [anon_sym_return] = ACTIONS(3613), + [anon_sym_break] = ACTIONS(3613), + [anon_sym_continue] = ACTIONS(3613), + [anon_sym_goto] = ACTIONS(3613), + [anon_sym___try] = ACTIONS(3613), + [anon_sym___leave] = ACTIONS(3613), + [anon_sym_not] = ACTIONS(3613), + [anon_sym_compl] = ACTIONS(3613), + [anon_sym_DASH_DASH] = ACTIONS(3615), + [anon_sym_PLUS_PLUS] = ACTIONS(3615), + [anon_sym_sizeof] = ACTIONS(3613), + [anon_sym___alignof__] = ACTIONS(3613), + [anon_sym___alignof] = ACTIONS(3613), + [anon_sym__alignof] = ACTIONS(3613), + [anon_sym_alignof] = ACTIONS(3613), + [anon_sym__Alignof] = ACTIONS(3613), + [anon_sym_offsetof] = ACTIONS(3613), + [anon_sym__Generic] = ACTIONS(3613), + [anon_sym_asm] = ACTIONS(3613), + [anon_sym___asm__] = ACTIONS(3613), + [sym_number_literal] = ACTIONS(3615), + [anon_sym_L_SQUOTE] = ACTIONS(3615), + [anon_sym_u_SQUOTE] = ACTIONS(3615), + [anon_sym_U_SQUOTE] = ACTIONS(3615), + [anon_sym_u8_SQUOTE] = ACTIONS(3615), + [anon_sym_SQUOTE] = ACTIONS(3615), + [anon_sym_L_DQUOTE] = ACTIONS(3615), + [anon_sym_u_DQUOTE] = ACTIONS(3615), + [anon_sym_U_DQUOTE] = ACTIONS(3615), + [anon_sym_u8_DQUOTE] = ACTIONS(3615), + [anon_sym_DQUOTE] = ACTIONS(3615), + [sym_true] = ACTIONS(3613), + [sym_false] = ACTIONS(3613), + [anon_sym_NULL] = ACTIONS(3613), + [anon_sym_nullptr] = ACTIONS(3613), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3613), + [anon_sym_decltype] = ACTIONS(3613), + [anon_sym_virtual] = ACTIONS(3613), + [anon_sym_alignas] = ACTIONS(3613), + [anon_sym_explicit] = ACTIONS(3613), + [anon_sym_typename] = ACTIONS(3613), + [anon_sym_template] = ACTIONS(3613), + [anon_sym_operator] = ACTIONS(3613), + [anon_sym_try] = ACTIONS(3613), + [anon_sym_delete] = ACTIONS(3613), + [anon_sym_throw] = ACTIONS(3613), + [anon_sym_namespace] = ACTIONS(3613), + [anon_sym_using] = ACTIONS(3613), + [anon_sym_static_assert] = ACTIONS(3613), + [anon_sym_concept] = ACTIONS(3613), + [anon_sym_co_return] = ACTIONS(3613), + [anon_sym_co_yield] = ACTIONS(3613), + [anon_sym_R_DQUOTE] = ACTIONS(3615), + [anon_sym_LR_DQUOTE] = ACTIONS(3615), + [anon_sym_uR_DQUOTE] = ACTIONS(3615), + [anon_sym_UR_DQUOTE] = ACTIONS(3615), + [anon_sym_u8R_DQUOTE] = ACTIONS(3615), + [anon_sym_co_await] = ACTIONS(3613), + [anon_sym_new] = ACTIONS(3613), + [anon_sym_requires] = ACTIONS(3613), + [sym_this] = ACTIONS(3613), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3615), + [sym_semgrep_named_ellipsis] = ACTIONS(3615), + }, + [798] = { + [sym_identifier] = ACTIONS(3619), + [aux_sym_preproc_include_token1] = ACTIONS(3619), + [aux_sym_preproc_def_token1] = ACTIONS(3619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3621), + [aux_sym_preproc_if_token1] = ACTIONS(3619), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3619), + [sym_preproc_directive] = ACTIONS(3619), + [anon_sym_LPAREN2] = ACTIONS(3621), + [anon_sym_BANG] = ACTIONS(3621), + [anon_sym_TILDE] = ACTIONS(3621), + [anon_sym_DASH] = ACTIONS(3619), + [anon_sym_PLUS] = ACTIONS(3619), + [anon_sym_STAR] = ACTIONS(3621), + [anon_sym_AMP_AMP] = ACTIONS(3621), + [anon_sym_AMP] = ACTIONS(3619), + [anon_sym_SEMI] = ACTIONS(3621), + [anon_sym___extension__] = ACTIONS(3619), + [anon_sym_typedef] = ACTIONS(3619), + [anon_sym_extern] = ACTIONS(3619), + [anon_sym___attribute__] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3621), + [anon_sym___declspec] = ACTIONS(3619), + [anon_sym___based] = ACTIONS(3619), + [anon_sym___cdecl] = ACTIONS(3619), + [anon_sym___clrcall] = ACTIONS(3619), + [anon_sym___stdcall] = ACTIONS(3619), + [anon_sym___fastcall] = ACTIONS(3619), + [anon_sym___thiscall] = ACTIONS(3619), + [anon_sym___vectorcall] = ACTIONS(3619), + [anon_sym_LBRACE] = ACTIONS(3621), + [anon_sym_RBRACE] = ACTIONS(3621), + [anon_sym_signed] = ACTIONS(3619), + [anon_sym_unsigned] = ACTIONS(3619), + [anon_sym_long] = ACTIONS(3619), + [anon_sym_short] = ACTIONS(3619), + [anon_sym_LBRACK] = ACTIONS(3619), + [anon_sym_static] = ACTIONS(3619), + [anon_sym_register] = ACTIONS(3619), + [anon_sym_inline] = ACTIONS(3619), + [anon_sym___inline] = ACTIONS(3619), + [anon_sym___inline__] = ACTIONS(3619), + [anon_sym___forceinline] = ACTIONS(3619), + [anon_sym_thread_local] = ACTIONS(3619), + [anon_sym___thread] = ACTIONS(3619), + [anon_sym_const] = ACTIONS(3619), + [anon_sym_constexpr] = ACTIONS(3619), + [anon_sym_volatile] = ACTIONS(3619), + [anon_sym_restrict] = ACTIONS(3619), + [anon_sym___restrict__] = ACTIONS(3619), + [anon_sym__Atomic] = ACTIONS(3619), + [anon_sym__Noreturn] = ACTIONS(3619), + [anon_sym_noreturn] = ACTIONS(3619), + [anon_sym_mutable] = ACTIONS(3619), + [anon_sym_constinit] = ACTIONS(3619), + [anon_sym_consteval] = ACTIONS(3619), + [sym_primitive_type] = ACTIONS(3619), + [anon_sym_enum] = ACTIONS(3619), + [anon_sym_class] = ACTIONS(3619), + [anon_sym_struct] = ACTIONS(3619), + [anon_sym_union] = ACTIONS(3619), + [anon_sym_if] = ACTIONS(3619), + [anon_sym_switch] = ACTIONS(3619), + [anon_sym_case] = ACTIONS(3619), + [anon_sym_default] = ACTIONS(3619), + [anon_sym_while] = ACTIONS(3619), + [anon_sym_do] = ACTIONS(3619), + [anon_sym_for] = ACTIONS(3619), + [anon_sym_return] = ACTIONS(3619), + [anon_sym_break] = ACTIONS(3619), + [anon_sym_continue] = ACTIONS(3619), + [anon_sym_goto] = ACTIONS(3619), + [anon_sym___try] = ACTIONS(3619), + [anon_sym___leave] = ACTIONS(3619), + [anon_sym_not] = ACTIONS(3619), + [anon_sym_compl] = ACTIONS(3619), + [anon_sym_DASH_DASH] = ACTIONS(3621), + [anon_sym_PLUS_PLUS] = ACTIONS(3621), + [anon_sym_sizeof] = ACTIONS(3619), + [anon_sym___alignof__] = ACTIONS(3619), + [anon_sym___alignof] = ACTIONS(3619), + [anon_sym__alignof] = ACTIONS(3619), + [anon_sym_alignof] = ACTIONS(3619), + [anon_sym__Alignof] = ACTIONS(3619), + [anon_sym_offsetof] = ACTIONS(3619), + [anon_sym__Generic] = ACTIONS(3619), + [anon_sym_asm] = ACTIONS(3619), + [anon_sym___asm__] = ACTIONS(3619), + [sym_number_literal] = ACTIONS(3621), + [anon_sym_L_SQUOTE] = ACTIONS(3621), + [anon_sym_u_SQUOTE] = ACTIONS(3621), + [anon_sym_U_SQUOTE] = ACTIONS(3621), + [anon_sym_u8_SQUOTE] = ACTIONS(3621), + [anon_sym_SQUOTE] = ACTIONS(3621), + [anon_sym_L_DQUOTE] = ACTIONS(3621), + [anon_sym_u_DQUOTE] = ACTIONS(3621), + [anon_sym_U_DQUOTE] = ACTIONS(3621), + [anon_sym_u8_DQUOTE] = ACTIONS(3621), + [anon_sym_DQUOTE] = ACTIONS(3621), + [sym_true] = ACTIONS(3619), + [sym_false] = ACTIONS(3619), + [anon_sym_NULL] = ACTIONS(3619), + [anon_sym_nullptr] = ACTIONS(3619), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3619), + [anon_sym_decltype] = ACTIONS(3619), + [anon_sym_virtual] = ACTIONS(3619), + [anon_sym_alignas] = ACTIONS(3619), + [anon_sym_explicit] = ACTIONS(3619), + [anon_sym_typename] = ACTIONS(3619), + [anon_sym_template] = ACTIONS(3619), + [anon_sym_operator] = ACTIONS(3619), + [anon_sym_try] = ACTIONS(3619), + [anon_sym_delete] = ACTIONS(3619), + [anon_sym_throw] = ACTIONS(3619), + [anon_sym_namespace] = ACTIONS(3619), + [anon_sym_using] = ACTIONS(3619), + [anon_sym_static_assert] = ACTIONS(3619), + [anon_sym_concept] = ACTIONS(3619), + [anon_sym_co_return] = ACTIONS(3619), + [anon_sym_co_yield] = ACTIONS(3619), + [anon_sym_R_DQUOTE] = ACTIONS(3621), + [anon_sym_LR_DQUOTE] = ACTIONS(3621), + [anon_sym_uR_DQUOTE] = ACTIONS(3621), + [anon_sym_UR_DQUOTE] = ACTIONS(3621), + [anon_sym_u8R_DQUOTE] = ACTIONS(3621), + [anon_sym_co_await] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(3619), + [anon_sym_requires] = ACTIONS(3619), + [sym_this] = ACTIONS(3619), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3621), + [sym_semgrep_named_ellipsis] = ACTIONS(3621), + }, + [799] = { + [sym_identifier] = ACTIONS(3457), + [aux_sym_preproc_include_token1] = ACTIONS(3457), + [aux_sym_preproc_def_token1] = ACTIONS(3457), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3459), + [aux_sym_preproc_if_token1] = ACTIONS(3457), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3457), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3457), + [sym_preproc_directive] = ACTIONS(3457), + [anon_sym_LPAREN2] = ACTIONS(3459), + [anon_sym_BANG] = ACTIONS(3459), + [anon_sym_TILDE] = ACTIONS(3459), + [anon_sym_DASH] = ACTIONS(3457), + [anon_sym_PLUS] = ACTIONS(3457), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_AMP] = ACTIONS(3457), + [anon_sym_SEMI] = ACTIONS(3459), + [anon_sym___extension__] = ACTIONS(3457), + [anon_sym_typedef] = ACTIONS(3457), + [anon_sym_extern] = ACTIONS(3457), + [anon_sym___attribute__] = ACTIONS(3457), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3459), + [anon_sym___declspec] = ACTIONS(3457), + [anon_sym___based] = ACTIONS(3457), + [anon_sym___cdecl] = ACTIONS(3457), + [anon_sym___clrcall] = ACTIONS(3457), + [anon_sym___stdcall] = ACTIONS(3457), + [anon_sym___fastcall] = ACTIONS(3457), + [anon_sym___thiscall] = ACTIONS(3457), + [anon_sym___vectorcall] = ACTIONS(3457), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_RBRACE] = ACTIONS(3459), + [anon_sym_signed] = ACTIONS(3457), + [anon_sym_unsigned] = ACTIONS(3457), + [anon_sym_long] = ACTIONS(3457), + [anon_sym_short] = ACTIONS(3457), + [anon_sym_LBRACK] = ACTIONS(3457), + [anon_sym_static] = ACTIONS(3457), + [anon_sym_register] = ACTIONS(3457), + [anon_sym_inline] = ACTIONS(3457), + [anon_sym___inline] = ACTIONS(3457), + [anon_sym___inline__] = ACTIONS(3457), + [anon_sym___forceinline] = ACTIONS(3457), + [anon_sym_thread_local] = ACTIONS(3457), + [anon_sym___thread] = ACTIONS(3457), + [anon_sym_const] = ACTIONS(3457), + [anon_sym_constexpr] = ACTIONS(3457), + [anon_sym_volatile] = ACTIONS(3457), + [anon_sym_restrict] = ACTIONS(3457), + [anon_sym___restrict__] = ACTIONS(3457), + [anon_sym__Atomic] = ACTIONS(3457), + [anon_sym__Noreturn] = ACTIONS(3457), + [anon_sym_noreturn] = ACTIONS(3457), + [anon_sym_mutable] = ACTIONS(3457), + [anon_sym_constinit] = ACTIONS(3457), + [anon_sym_consteval] = ACTIONS(3457), + [sym_primitive_type] = ACTIONS(3457), + [anon_sym_enum] = ACTIONS(3457), + [anon_sym_class] = ACTIONS(3457), + [anon_sym_struct] = ACTIONS(3457), + [anon_sym_union] = ACTIONS(3457), + [anon_sym_if] = ACTIONS(3457), + [anon_sym_switch] = ACTIONS(3457), + [anon_sym_case] = ACTIONS(3457), + [anon_sym_default] = ACTIONS(3457), + [anon_sym_while] = ACTIONS(3457), + [anon_sym_do] = ACTIONS(3457), + [anon_sym_for] = ACTIONS(3457), + [anon_sym_return] = ACTIONS(3457), + [anon_sym_break] = ACTIONS(3457), + [anon_sym_continue] = ACTIONS(3457), + [anon_sym_goto] = ACTIONS(3457), + [anon_sym___try] = ACTIONS(3457), + [anon_sym___leave] = ACTIONS(3457), + [anon_sym_not] = ACTIONS(3457), + [anon_sym_compl] = ACTIONS(3457), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_sizeof] = ACTIONS(3457), + [anon_sym___alignof__] = ACTIONS(3457), + [anon_sym___alignof] = ACTIONS(3457), + [anon_sym__alignof] = ACTIONS(3457), + [anon_sym_alignof] = ACTIONS(3457), + [anon_sym__Alignof] = ACTIONS(3457), + [anon_sym_offsetof] = ACTIONS(3457), + [anon_sym__Generic] = ACTIONS(3457), + [anon_sym_asm] = ACTIONS(3457), + [anon_sym___asm__] = ACTIONS(3457), + [sym_number_literal] = ACTIONS(3459), + [anon_sym_L_SQUOTE] = ACTIONS(3459), + [anon_sym_u_SQUOTE] = ACTIONS(3459), + [anon_sym_U_SQUOTE] = ACTIONS(3459), + [anon_sym_u8_SQUOTE] = ACTIONS(3459), + [anon_sym_SQUOTE] = ACTIONS(3459), + [anon_sym_L_DQUOTE] = ACTIONS(3459), + [anon_sym_u_DQUOTE] = ACTIONS(3459), + [anon_sym_U_DQUOTE] = ACTIONS(3459), + [anon_sym_u8_DQUOTE] = ACTIONS(3459), + [anon_sym_DQUOTE] = ACTIONS(3459), + [sym_true] = ACTIONS(3457), + [sym_false] = ACTIONS(3457), + [anon_sym_NULL] = ACTIONS(3457), + [anon_sym_nullptr] = ACTIONS(3457), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3457), + [anon_sym_decltype] = ACTIONS(3457), + [anon_sym_virtual] = ACTIONS(3457), + [anon_sym_alignas] = ACTIONS(3457), + [anon_sym_explicit] = ACTIONS(3457), + [anon_sym_typename] = ACTIONS(3457), + [anon_sym_template] = ACTIONS(3457), + [anon_sym_operator] = ACTIONS(3457), + [anon_sym_try] = ACTIONS(3457), + [anon_sym_delete] = ACTIONS(3457), + [anon_sym_throw] = ACTIONS(3457), + [anon_sym_namespace] = ACTIONS(3457), + [anon_sym_using] = ACTIONS(3457), + [anon_sym_static_assert] = ACTIONS(3457), + [anon_sym_concept] = ACTIONS(3457), + [anon_sym_co_return] = ACTIONS(3457), + [anon_sym_co_yield] = ACTIONS(3457), + [anon_sym_R_DQUOTE] = ACTIONS(3459), + [anon_sym_LR_DQUOTE] = ACTIONS(3459), + [anon_sym_uR_DQUOTE] = ACTIONS(3459), + [anon_sym_UR_DQUOTE] = ACTIONS(3459), + [anon_sym_u8R_DQUOTE] = ACTIONS(3459), + [anon_sym_co_await] = ACTIONS(3457), + [anon_sym_new] = ACTIONS(3457), + [anon_sym_requires] = ACTIONS(3457), + [sym_this] = ACTIONS(3457), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3459), + [sym_semgrep_named_ellipsis] = ACTIONS(3459), + }, + [800] = { + [sym_expression] = STATE(4708), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(4376), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [ts_builtin_sym_end] = ACTIONS(2277), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2277), + [anon_sym_COMMA] = ACTIONS(2277), + [anon_sym_RPAREN] = ACTIONS(2277), + [anon_sym_LPAREN2] = ACTIONS(2277), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2277), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_PERCENT] = ACTIONS(2277), + [anon_sym_PIPE_PIPE] = ACTIONS(2277), + [anon_sym_AMP_AMP] = ACTIONS(2277), + [anon_sym_PIPE] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2277), + [anon_sym_AMP] = ACTIONS(2285), + [anon_sym_EQ_EQ] = ACTIONS(2277), + [anon_sym_BANG_EQ] = ACTIONS(2277), + [anon_sym_GT] = ACTIONS(2285), + [anon_sym_GT_EQ] = ACTIONS(2277), + [anon_sym_LT_EQ] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_LT_LT] = ACTIONS(2277), + [anon_sym_GT_GT] = ACTIONS(2277), + [anon_sym_SEMI] = ACTIONS(2277), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_RBRACE] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(2277), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_QMARK] = ACTIONS(2277), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_LT_EQ_GT] = ACTIONS(2277), + [anon_sym_or] = ACTIONS(2285), + [anon_sym_and] = ACTIONS(2285), + [anon_sym_bitor] = ACTIONS(2285), + [anon_sym_xor] = ACTIONS(2285), + [anon_sym_bitand] = ACTIONS(2285), + [anon_sym_not_eq] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2277), + [anon_sym_PLUS_PLUS] = ACTIONS(2277), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(2285), + [anon_sym_DOT_STAR] = ACTIONS(2277), + [anon_sym_DASH_GT] = ACTIONS(2277), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), + }, + [801] = { + [ts_builtin_sym_end] = ACTIONS(3382), + [sym_identifier] = ACTIONS(3380), + [aux_sym_preproc_include_token1] = ACTIONS(3380), + [aux_sym_preproc_def_token1] = ACTIONS(3380), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3382), + [anon_sym_COMMA] = ACTIONS(3382), + [aux_sym_preproc_if_token1] = ACTIONS(3380), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3380), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3380), + [sym_preproc_directive] = ACTIONS(3380), + [anon_sym_LPAREN2] = ACTIONS(3382), + [anon_sym_BANG] = ACTIONS(3382), + [anon_sym_TILDE] = ACTIONS(3382), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_STAR] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_AMP] = ACTIONS(3380), + [anon_sym___extension__] = ACTIONS(3380), + [anon_sym_typedef] = ACTIONS(3380), + [anon_sym_extern] = ACTIONS(3380), + [anon_sym___attribute__] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3382), + [anon_sym___declspec] = ACTIONS(3380), + [anon_sym___based] = ACTIONS(3380), + [anon_sym___cdecl] = ACTIONS(3380), + [anon_sym___clrcall] = ACTIONS(3380), + [anon_sym___stdcall] = ACTIONS(3380), + [anon_sym___fastcall] = ACTIONS(3380), + [anon_sym___thiscall] = ACTIONS(3380), + [anon_sym___vectorcall] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_RBRACE] = ACTIONS(3382), + [anon_sym_signed] = ACTIONS(3380), + [anon_sym_unsigned] = ACTIONS(3380), + [anon_sym_long] = ACTIONS(3380), + [anon_sym_short] = ACTIONS(3380), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_static] = ACTIONS(3380), + [anon_sym_register] = ACTIONS(3380), + [anon_sym_inline] = ACTIONS(3380), + [anon_sym___inline] = ACTIONS(3380), + [anon_sym___inline__] = ACTIONS(3380), + [anon_sym___forceinline] = ACTIONS(3380), + [anon_sym_thread_local] = ACTIONS(3380), + [anon_sym___thread] = ACTIONS(3380), + [anon_sym_const] = ACTIONS(3380), + [anon_sym_constexpr] = ACTIONS(3380), + [anon_sym_volatile] = ACTIONS(3380), + [anon_sym_restrict] = ACTIONS(3380), + [anon_sym___restrict__] = ACTIONS(3380), + [anon_sym__Atomic] = ACTIONS(3380), + [anon_sym__Noreturn] = ACTIONS(3380), + [anon_sym_noreturn] = ACTIONS(3380), + [anon_sym_mutable] = ACTIONS(3380), + [anon_sym_constinit] = ACTIONS(3380), + [anon_sym_consteval] = ACTIONS(3380), + [sym_primitive_type] = ACTIONS(3380), + [anon_sym_enum] = ACTIONS(3380), + [anon_sym_class] = ACTIONS(3380), + [anon_sym_struct] = ACTIONS(3380), + [anon_sym_union] = ACTIONS(3380), + [anon_sym_if] = ACTIONS(3380), + [anon_sym_switch] = ACTIONS(3380), + [anon_sym_case] = ACTIONS(3380), + [anon_sym_default] = ACTIONS(3380), + [anon_sym_while] = ACTIONS(3380), + [anon_sym_do] = ACTIONS(3380), + [anon_sym_for] = ACTIONS(3380), + [anon_sym_return] = ACTIONS(3380), + [anon_sym_break] = ACTIONS(3380), + [anon_sym_continue] = ACTIONS(3380), + [anon_sym_goto] = ACTIONS(3380), + [anon_sym_not] = ACTIONS(3380), + [anon_sym_compl] = ACTIONS(3380), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_sizeof] = ACTIONS(3380), + [anon_sym___alignof__] = ACTIONS(3380), + [anon_sym___alignof] = ACTIONS(3380), + [anon_sym__alignof] = ACTIONS(3380), + [anon_sym_alignof] = ACTIONS(3380), + [anon_sym__Alignof] = ACTIONS(3380), + [anon_sym_offsetof] = ACTIONS(3380), + [anon_sym__Generic] = ACTIONS(3380), + [anon_sym_asm] = ACTIONS(3380), + [anon_sym___asm__] = ACTIONS(3380), + [sym_number_literal] = ACTIONS(3382), + [anon_sym_L_SQUOTE] = ACTIONS(3382), + [anon_sym_u_SQUOTE] = ACTIONS(3382), + [anon_sym_U_SQUOTE] = ACTIONS(3382), + [anon_sym_u8_SQUOTE] = ACTIONS(3382), + [anon_sym_SQUOTE] = ACTIONS(3382), + [anon_sym_L_DQUOTE] = ACTIONS(3382), + [anon_sym_u_DQUOTE] = ACTIONS(3382), + [anon_sym_U_DQUOTE] = ACTIONS(3382), + [anon_sym_u8_DQUOTE] = ACTIONS(3382), + [anon_sym_DQUOTE] = ACTIONS(3382), + [sym_true] = ACTIONS(3380), + [sym_false] = ACTIONS(3380), + [anon_sym_NULL] = ACTIONS(3380), + [anon_sym_nullptr] = ACTIONS(3380), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3380), + [anon_sym_decltype] = ACTIONS(3380), + [anon_sym_virtual] = ACTIONS(3380), + [anon_sym_alignas] = ACTIONS(3380), + [anon_sym_explicit] = ACTIONS(3380), + [anon_sym_typename] = ACTIONS(3380), + [anon_sym_template] = ACTIONS(3380), + [anon_sym_operator] = ACTIONS(3380), + [anon_sym_try] = ACTIONS(3380), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_throw] = ACTIONS(3380), + [anon_sym_namespace] = ACTIONS(3380), + [anon_sym_using] = ACTIONS(3380), + [anon_sym_static_assert] = ACTIONS(3380), + [anon_sym_concept] = ACTIONS(3380), + [anon_sym_co_return] = ACTIONS(3380), + [anon_sym_co_yield] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3380), + [anon_sym_new] = ACTIONS(3380), + [anon_sym_requires] = ACTIONS(3380), + [sym_this] = ACTIONS(3380), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3382), + [sym_semgrep_named_ellipsis] = ACTIONS(3382), + }, + [802] = { + [ts_builtin_sym_end] = ACTIONS(3659), + [sym_identifier] = ACTIONS(3657), + [aux_sym_preproc_include_token1] = ACTIONS(3657), + [aux_sym_preproc_def_token1] = ACTIONS(3657), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3659), + [anon_sym_COMMA] = ACTIONS(3659), + [aux_sym_preproc_if_token1] = ACTIONS(3657), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3657), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3657), + [sym_preproc_directive] = ACTIONS(3657), + [anon_sym_LPAREN2] = ACTIONS(3659), + [anon_sym_BANG] = ACTIONS(3659), + [anon_sym_TILDE] = ACTIONS(3659), + [anon_sym_DASH] = ACTIONS(3657), + [anon_sym_PLUS] = ACTIONS(3657), + [anon_sym_STAR] = ACTIONS(3659), + [anon_sym_AMP_AMP] = ACTIONS(3659), + [anon_sym_AMP] = ACTIONS(3657), + [anon_sym___extension__] = ACTIONS(3657), + [anon_sym_typedef] = ACTIONS(3657), + [anon_sym_extern] = ACTIONS(3657), + [anon_sym___attribute__] = ACTIONS(3657), + [anon_sym_COLON_COLON] = ACTIONS(3659), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3659), + [anon_sym___declspec] = ACTIONS(3657), + [anon_sym___based] = ACTIONS(3657), + [anon_sym___cdecl] = ACTIONS(3657), + [anon_sym___clrcall] = ACTIONS(3657), + [anon_sym___stdcall] = ACTIONS(3657), + [anon_sym___fastcall] = ACTIONS(3657), + [anon_sym___thiscall] = ACTIONS(3657), + [anon_sym___vectorcall] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3659), + [anon_sym_RBRACE] = ACTIONS(3659), + [anon_sym_signed] = ACTIONS(3657), + [anon_sym_unsigned] = ACTIONS(3657), + [anon_sym_long] = ACTIONS(3657), + [anon_sym_short] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_static] = ACTIONS(3657), + [anon_sym_register] = ACTIONS(3657), + [anon_sym_inline] = ACTIONS(3657), + [anon_sym___inline] = ACTIONS(3657), + [anon_sym___inline__] = ACTIONS(3657), + [anon_sym___forceinline] = ACTIONS(3657), + [anon_sym_thread_local] = ACTIONS(3657), + [anon_sym___thread] = ACTIONS(3657), + [anon_sym_const] = ACTIONS(3657), + [anon_sym_constexpr] = ACTIONS(3657), + [anon_sym_volatile] = ACTIONS(3657), + [anon_sym_restrict] = ACTIONS(3657), + [anon_sym___restrict__] = ACTIONS(3657), + [anon_sym__Atomic] = ACTIONS(3657), + [anon_sym__Noreturn] = ACTIONS(3657), + [anon_sym_noreturn] = ACTIONS(3657), + [anon_sym_mutable] = ACTIONS(3657), + [anon_sym_constinit] = ACTIONS(3657), + [anon_sym_consteval] = ACTIONS(3657), + [sym_primitive_type] = ACTIONS(3657), + [anon_sym_enum] = ACTIONS(3657), + [anon_sym_class] = ACTIONS(3657), + [anon_sym_struct] = ACTIONS(3657), + [anon_sym_union] = ACTIONS(3657), + [anon_sym_if] = ACTIONS(3657), + [anon_sym_switch] = ACTIONS(3657), + [anon_sym_case] = ACTIONS(3657), + [anon_sym_default] = ACTIONS(3657), + [anon_sym_while] = ACTIONS(3657), + [anon_sym_do] = ACTIONS(3657), + [anon_sym_for] = ACTIONS(3657), + [anon_sym_return] = ACTIONS(3657), + [anon_sym_break] = ACTIONS(3657), + [anon_sym_continue] = ACTIONS(3657), + [anon_sym_goto] = ACTIONS(3657), + [anon_sym_not] = ACTIONS(3657), + [anon_sym_compl] = ACTIONS(3657), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_sizeof] = ACTIONS(3657), + [anon_sym___alignof__] = ACTIONS(3657), + [anon_sym___alignof] = ACTIONS(3657), + [anon_sym__alignof] = ACTIONS(3657), + [anon_sym_alignof] = ACTIONS(3657), + [anon_sym__Alignof] = ACTIONS(3657), + [anon_sym_offsetof] = ACTIONS(3657), + [anon_sym__Generic] = ACTIONS(3657), + [anon_sym_asm] = ACTIONS(3657), + [anon_sym___asm__] = ACTIONS(3657), + [sym_number_literal] = ACTIONS(3659), + [anon_sym_L_SQUOTE] = ACTIONS(3659), + [anon_sym_u_SQUOTE] = ACTIONS(3659), + [anon_sym_U_SQUOTE] = ACTIONS(3659), + [anon_sym_u8_SQUOTE] = ACTIONS(3659), + [anon_sym_SQUOTE] = ACTIONS(3659), + [anon_sym_L_DQUOTE] = ACTIONS(3659), + [anon_sym_u_DQUOTE] = ACTIONS(3659), + [anon_sym_U_DQUOTE] = ACTIONS(3659), + [anon_sym_u8_DQUOTE] = ACTIONS(3659), + [anon_sym_DQUOTE] = ACTIONS(3659), + [sym_true] = ACTIONS(3657), + [sym_false] = ACTIONS(3657), + [anon_sym_NULL] = ACTIONS(3657), + [anon_sym_nullptr] = ACTIONS(3657), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3657), + [anon_sym_decltype] = ACTIONS(3657), + [anon_sym_virtual] = ACTIONS(3657), + [anon_sym_alignas] = ACTIONS(3657), + [anon_sym_explicit] = ACTIONS(3657), + [anon_sym_typename] = ACTIONS(3657), + [anon_sym_template] = ACTIONS(3657), + [anon_sym_operator] = ACTIONS(3657), + [anon_sym_try] = ACTIONS(3657), + [anon_sym_delete] = ACTIONS(3657), + [anon_sym_throw] = ACTIONS(3657), + [anon_sym_namespace] = ACTIONS(3657), + [anon_sym_using] = ACTIONS(3657), + [anon_sym_static_assert] = ACTIONS(3657), + [anon_sym_concept] = ACTIONS(3657), + [anon_sym_co_return] = ACTIONS(3657), + [anon_sym_co_yield] = ACTIONS(3657), + [anon_sym_R_DQUOTE] = ACTIONS(3659), + [anon_sym_LR_DQUOTE] = ACTIONS(3659), + [anon_sym_uR_DQUOTE] = ACTIONS(3659), + [anon_sym_UR_DQUOTE] = ACTIONS(3659), + [anon_sym_u8R_DQUOTE] = ACTIONS(3659), + [anon_sym_co_await] = ACTIONS(3657), + [anon_sym_new] = ACTIONS(3657), + [anon_sym_requires] = ACTIONS(3657), + [sym_this] = ACTIONS(3657), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3659), + [sym_semgrep_named_ellipsis] = ACTIONS(3659), + }, + [803] = { + [sym_preproc_def] = STATE(2142), + [sym_preproc_function_def] = STATE(2142), + [sym_preproc_call] = STATE(2142), + [sym_preproc_if_in_field_declaration_list] = STATE(2142), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2142), + [sym_type_definition] = STATE(2142), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6398), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7291), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(803), + [sym_field_declaration] = STATE(2142), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2142), + [sym_operator_cast] = STATE(7774), + [sym_inline_method_definition] = STATE(2142), + [sym_constructor_specifiers] = STATE(1937), + [sym_operator_cast_definition] = STATE(2142), + [sym_operator_cast_declaration] = STATE(2142), + [sym_constructor_or_destructor_definition] = STATE(2142), + [sym_constructor_or_destructor_declaration] = STATE(2142), + [sym_friend_declaration] = STATE(2142), + [sym_access_specifier] = STATE(9170), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2142), + [sym_alias_declaration] = STATE(2142), + [sym_static_assert_declaration] = STATE(2142), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7774), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2142), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(803), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1937), + [sym_identifier] = ACTIONS(3714), + [aux_sym_preproc_def_token1] = ACTIONS(3919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3922), + [aux_sym_preproc_if_token1] = ACTIONS(3925), + [aux_sym_preproc_if_token2] = ACTIONS(3726), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3928), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3931), + [aux_sym_preproc_else_token1] = ACTIONS(3726), + [aux_sym_preproc_elif_token1] = ACTIONS(3726), + [sym_preproc_directive] = ACTIONS(3934), + [anon_sym_LPAREN2] = ACTIONS(3737), + [anon_sym_TILDE] = ACTIONS(3740), + [anon_sym_STAR] = ACTIONS(3743), + [anon_sym_AMP_AMP] = ACTIONS(3746), + [anon_sym_AMP] = ACTIONS(3749), + [anon_sym___extension__] = ACTIONS(3937), + [anon_sym_typedef] = ACTIONS(3940), + [anon_sym_extern] = ACTIONS(3758), + [anon_sym___attribute__] = ACTIONS(3761), + [anon_sym_COLON_COLON] = ACTIONS(3764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3767), + [anon_sym___declspec] = ACTIONS(3770), + [anon_sym___based] = ACTIONS(3773), + [anon_sym_signed] = ACTIONS(3776), + [anon_sym_unsigned] = ACTIONS(3776), + [anon_sym_long] = ACTIONS(3776), + [anon_sym_short] = ACTIONS(3776), + [anon_sym_LBRACK] = ACTIONS(3779), + [anon_sym_static] = ACTIONS(3758), + [anon_sym_register] = ACTIONS(3758), + [anon_sym_inline] = ACTIONS(3758), + [anon_sym___inline] = ACTIONS(3758), + [anon_sym___inline__] = ACTIONS(3758), + [anon_sym___forceinline] = ACTIONS(3758), + [anon_sym_thread_local] = ACTIONS(3758), + [anon_sym___thread] = ACTIONS(3758), + [anon_sym_const] = ACTIONS(3782), + [anon_sym_constexpr] = ACTIONS(3782), + [anon_sym_volatile] = ACTIONS(3782), + [anon_sym_restrict] = ACTIONS(3782), + [anon_sym___restrict__] = ACTIONS(3782), + [anon_sym__Atomic] = ACTIONS(3782), + [anon_sym__Noreturn] = ACTIONS(3782), + [anon_sym_noreturn] = ACTIONS(3782), + [anon_sym_mutable] = ACTIONS(3782), + [anon_sym_constinit] = ACTIONS(3782), + [anon_sym_consteval] = ACTIONS(3782), + [sym_primitive_type] = ACTIONS(3785), + [anon_sym_enum] = ACTIONS(3788), + [anon_sym_class] = ACTIONS(3791), + [anon_sym_struct] = ACTIONS(3794), + [anon_sym_union] = ACTIONS(3797), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3800), + [anon_sym_decltype] = ACTIONS(3803), + [anon_sym_virtual] = ACTIONS(3806), + [anon_sym_alignas] = ACTIONS(3809), + [anon_sym_explicit] = ACTIONS(3812), + [anon_sym_typename] = ACTIONS(3815), + [anon_sym_template] = ACTIONS(3943), + [anon_sym_operator] = ACTIONS(3821), + [anon_sym_friend] = ACTIONS(3946), + [anon_sym_public] = ACTIONS(3827), + [anon_sym_private] = ACTIONS(3827), + [anon_sym_protected] = ACTIONS(3827), + [anon_sym_using] = ACTIONS(3949), + [anon_sym_static_assert] = ACTIONS(3952), + [sym_semgrep_metavar] = ACTIONS(3955), + }, [804] = { - [sym_identifier] = ACTIONS(3346), - [aux_sym_preproc_include_token1] = ACTIONS(3346), - [aux_sym_preproc_def_token1] = ACTIONS(3346), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3348), - [aux_sym_preproc_if_token1] = ACTIONS(3346), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3346), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3346), - [sym_preproc_directive] = ACTIONS(3346), - [anon_sym_LPAREN2] = ACTIONS(3348), - [anon_sym_BANG] = ACTIONS(3348), - [anon_sym_TILDE] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_STAR] = ACTIONS(3348), - [anon_sym_AMP_AMP] = ACTIONS(3348), - [anon_sym_AMP] = ACTIONS(3346), - [anon_sym_SEMI] = ACTIONS(3348), - [anon_sym___extension__] = ACTIONS(3346), - [anon_sym_typedef] = ACTIONS(3346), - [anon_sym_extern] = ACTIONS(3346), - [anon_sym___attribute__] = ACTIONS(3346), - [anon_sym_COLON_COLON] = ACTIONS(3348), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3348), - [anon_sym___declspec] = ACTIONS(3346), - [anon_sym___based] = ACTIONS(3346), - [anon_sym___cdecl] = ACTIONS(3346), - [anon_sym___clrcall] = ACTIONS(3346), - [anon_sym___stdcall] = ACTIONS(3346), - [anon_sym___fastcall] = ACTIONS(3346), - [anon_sym___thiscall] = ACTIONS(3346), - [anon_sym___vectorcall] = ACTIONS(3346), - [anon_sym_LBRACE] = ACTIONS(3348), - [anon_sym_RBRACE] = ACTIONS(3348), - [anon_sym_signed] = ACTIONS(3346), - [anon_sym_unsigned] = ACTIONS(3346), - [anon_sym_long] = ACTIONS(3346), - [anon_sym_short] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_static] = ACTIONS(3346), - [anon_sym_register] = ACTIONS(3346), - [anon_sym_inline] = ACTIONS(3346), - [anon_sym___inline] = ACTIONS(3346), - [anon_sym___inline__] = ACTIONS(3346), - [anon_sym___forceinline] = ACTIONS(3346), - [anon_sym_thread_local] = ACTIONS(3346), - [anon_sym___thread] = ACTIONS(3346), - [anon_sym_const] = ACTIONS(3346), - [anon_sym_constexpr] = ACTIONS(3346), - [anon_sym_volatile] = ACTIONS(3346), - [anon_sym_restrict] = ACTIONS(3346), - [anon_sym___restrict__] = ACTIONS(3346), - [anon_sym__Atomic] = ACTIONS(3346), - [anon_sym__Noreturn] = ACTIONS(3346), - [anon_sym_noreturn] = ACTIONS(3346), - [anon_sym_mutable] = ACTIONS(3346), - [anon_sym_constinit] = ACTIONS(3346), - [anon_sym_consteval] = ACTIONS(3346), - [sym_primitive_type] = ACTIONS(3346), - [anon_sym_enum] = ACTIONS(3346), - [anon_sym_class] = ACTIONS(3346), - [anon_sym_struct] = ACTIONS(3346), - [anon_sym_union] = ACTIONS(3346), - [anon_sym_if] = ACTIONS(3346), - [anon_sym_switch] = ACTIONS(3346), - [anon_sym_case] = ACTIONS(3346), - [anon_sym_default] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3346), - [anon_sym_do] = ACTIONS(3346), - [anon_sym_for] = ACTIONS(3346), - [anon_sym_return] = ACTIONS(3346), - [anon_sym_break] = ACTIONS(3346), - [anon_sym_continue] = ACTIONS(3346), - [anon_sym_goto] = ACTIONS(3346), - [anon_sym___try] = ACTIONS(3346), - [anon_sym___leave] = ACTIONS(3346), - [anon_sym_not] = ACTIONS(3346), - [anon_sym_compl] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3346), - [anon_sym___alignof__] = ACTIONS(3346), - [anon_sym___alignof] = ACTIONS(3346), - [anon_sym__alignof] = ACTIONS(3346), - [anon_sym_alignof] = ACTIONS(3346), - [anon_sym__Alignof] = ACTIONS(3346), - [anon_sym_offsetof] = ACTIONS(3346), - [anon_sym__Generic] = ACTIONS(3346), - [anon_sym_asm] = ACTIONS(3346), - [anon_sym___asm__] = ACTIONS(3346), - [sym_number_literal] = ACTIONS(3348), - [anon_sym_L_SQUOTE] = ACTIONS(3348), - [anon_sym_u_SQUOTE] = ACTIONS(3348), - [anon_sym_U_SQUOTE] = ACTIONS(3348), - [anon_sym_u8_SQUOTE] = ACTIONS(3348), - [anon_sym_SQUOTE] = ACTIONS(3348), - [anon_sym_L_DQUOTE] = ACTIONS(3348), - [anon_sym_u_DQUOTE] = ACTIONS(3348), - [anon_sym_U_DQUOTE] = ACTIONS(3348), - [anon_sym_u8_DQUOTE] = ACTIONS(3348), - [anon_sym_DQUOTE] = ACTIONS(3348), - [sym_true] = ACTIONS(3346), - [sym_false] = ACTIONS(3346), - [anon_sym_NULL] = ACTIONS(3346), - [anon_sym_nullptr] = ACTIONS(3346), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3346), - [anon_sym_decltype] = ACTIONS(3346), - [anon_sym_virtual] = ACTIONS(3346), - [anon_sym_alignas] = ACTIONS(3346), - [anon_sym_explicit] = ACTIONS(3346), - [anon_sym_typename] = ACTIONS(3346), - [anon_sym_template] = ACTIONS(3346), - [anon_sym_operator] = ACTIONS(3346), - [anon_sym_try] = ACTIONS(3346), - [anon_sym_delete] = ACTIONS(3346), - [anon_sym_throw] = ACTIONS(3346), - [anon_sym_namespace] = ACTIONS(3346), - [anon_sym_using] = ACTIONS(3346), - [anon_sym_static_assert] = ACTIONS(3346), - [anon_sym_concept] = ACTIONS(3346), - [anon_sym_co_return] = ACTIONS(3346), - [anon_sym_co_yield] = ACTIONS(3346), - [anon_sym_R_DQUOTE] = ACTIONS(3348), - [anon_sym_LR_DQUOTE] = ACTIONS(3348), - [anon_sym_uR_DQUOTE] = ACTIONS(3348), - [anon_sym_UR_DQUOTE] = ACTIONS(3348), - [anon_sym_u8R_DQUOTE] = ACTIONS(3348), - [anon_sym_co_await] = ACTIONS(3346), - [anon_sym_new] = ACTIONS(3346), - [anon_sym_requires] = ACTIONS(3346), - [sym_this] = ACTIONS(3346), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3348), - [sym_semgrep_named_ellipsis] = ACTIONS(3348), + [sym_expression] = STATE(4901), + [sym_expression_not_binary] = STATE(5098), + [sym_conditional_expression] = STATE(5096), + [sym_assignment_expression] = STATE(5096), + [sym_pointer_expression] = STATE(3493), + [sym_unary_expression] = STATE(5096), + [sym_binary_expression] = STATE(5098), + [sym_update_expression] = STATE(5096), + [sym_cast_expression] = STATE(5096), + [sym_sizeof_expression] = STATE(5096), + [sym_alignof_expression] = STATE(5096), + [sym_offsetof_expression] = STATE(5096), + [sym_generic_expression] = STATE(5096), + [sym_subscript_expression] = STATE(3493), + [sym_call_expression] = STATE(3493), + [sym_gnu_asm_expression] = STATE(5096), + [sym_field_expression] = STATE(3493), + [sym_compound_literal_expression] = STATE(5096), + [sym_parenthesized_expression] = STATE(3493), + [sym_initializer_list] = STATE(5138), + [sym_char_literal] = STATE(4944), + [sym_concatenated_string] = STATE(4944), + [sym_string_literal] = STATE(3577), + [sym_null] = STATE(5096), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9068), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5096), + [sym_raw_string_literal] = STATE(3577), + [sym_co_await_expression] = STATE(5096), + [sym_new_expression] = STATE(5096), + [sym_delete_expression] = STATE(5096), + [sym_requires_clause] = STATE(5096), + [sym_requires_expression] = STATE(5096), + [sym_lambda_expression] = STATE(5096), + [sym_lambda_capture_specifier] = STATE(6837), + [sym_fold_expression] = STATE(5096), + [sym_parameter_pack_expansion] = STATE(5096), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3493), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3493), + [sym_semgrep_ellipsis] = STATE(5098), + [sym_deep_ellipsis] = STATE(5098), + [sym_identifier] = ACTIONS(2285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2277), + [anon_sym_COMMA] = ACTIONS(2277), + [aux_sym_preproc_if_token2] = ACTIONS(2277), + [aux_sym_preproc_else_token1] = ACTIONS(2277), + [aux_sym_preproc_elif_token1] = ACTIONS(2277), + [anon_sym_LPAREN2] = ACTIONS(2277), + [anon_sym_BANG] = ACTIONS(3958), + [anon_sym_TILDE] = ACTIONS(3960), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2277), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_PERCENT] = ACTIONS(2277), + [anon_sym_PIPE_PIPE] = ACTIONS(2277), + [anon_sym_AMP_AMP] = ACTIONS(2277), + [anon_sym_PIPE] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2277), + [anon_sym_AMP] = ACTIONS(2285), + [anon_sym_EQ_EQ] = ACTIONS(2277), + [anon_sym_BANG_EQ] = ACTIONS(2277), + [anon_sym_GT] = ACTIONS(2285), + [anon_sym_GT_EQ] = ACTIONS(2277), + [anon_sym_LT_EQ] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_LT_LT] = ACTIONS(2277), + [anon_sym_GT_GT] = ACTIONS(2277), + [anon_sym_COLON_COLON] = ACTIONS(3962), + [anon_sym_LBRACE] = ACTIONS(3964), + [anon_sym_LBRACK] = ACTIONS(2277), + [sym_primitive_type] = ACTIONS(3966), + [anon_sym_QMARK] = ACTIONS(2277), + [anon_sym_not] = ACTIONS(3958), + [anon_sym_compl] = ACTIONS(3958), + [anon_sym_LT_EQ_GT] = ACTIONS(2277), + [anon_sym_or] = ACTIONS(2285), + [anon_sym_and] = ACTIONS(2285), + [anon_sym_bitor] = ACTIONS(2285), + [anon_sym_xor] = ACTIONS(2285), + [anon_sym_bitand] = ACTIONS(2285), + [anon_sym_not_eq] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2277), + [anon_sym_PLUS_PLUS] = ACTIONS(2277), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym___alignof__] = ACTIONS(3970), + [anon_sym___alignof] = ACTIONS(3970), + [anon_sym__alignof] = ACTIONS(3970), + [anon_sym_alignof] = ACTIONS(3970), + [anon_sym__Alignof] = ACTIONS(3970), + [anon_sym_offsetof] = ACTIONS(3972), + [anon_sym__Generic] = ACTIONS(3974), + [anon_sym_asm] = ACTIONS(3976), + [anon_sym___asm__] = ACTIONS(3976), + [anon_sym_DOT] = ACTIONS(2285), + [anon_sym_DOT_STAR] = ACTIONS(2277), + [anon_sym_DASH_GT] = ACTIONS(2277), + [sym_number_literal] = ACTIONS(3978), + [anon_sym_L_SQUOTE] = ACTIONS(3980), + [anon_sym_u_SQUOTE] = ACTIONS(3980), + [anon_sym_U_SQUOTE] = ACTIONS(3980), + [anon_sym_u8_SQUOTE] = ACTIONS(3980), + [anon_sym_SQUOTE] = ACTIONS(3980), + [anon_sym_L_DQUOTE] = ACTIONS(3982), + [anon_sym_u_DQUOTE] = ACTIONS(3982), + [anon_sym_U_DQUOTE] = ACTIONS(3982), + [anon_sym_u8_DQUOTE] = ACTIONS(3982), + [anon_sym_DQUOTE] = ACTIONS(3982), + [sym_true] = ACTIONS(3984), + [sym_false] = ACTIONS(3984), + [anon_sym_NULL] = ACTIONS(3986), + [anon_sym_nullptr] = ACTIONS(3986), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3988), + [anon_sym_R_DQUOTE] = ACTIONS(3990), + [anon_sym_LR_DQUOTE] = ACTIONS(3990), + [anon_sym_uR_DQUOTE] = ACTIONS(3990), + [anon_sym_UR_DQUOTE] = ACTIONS(3990), + [anon_sym_u8R_DQUOTE] = ACTIONS(3990), + [anon_sym_co_await] = ACTIONS(3992), + [anon_sym_new] = ACTIONS(3994), + [anon_sym_requires] = ACTIONS(3996), + [sym_this] = ACTIONS(3984), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3998), + [sym_semgrep_named_ellipsis] = ACTIONS(4000), }, [805] = { - [ts_builtin_sym_end] = ACTIONS(3483), - [sym_identifier] = ACTIONS(3481), - [aux_sym_preproc_include_token1] = ACTIONS(3481), - [aux_sym_preproc_def_token1] = ACTIONS(3481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3483), - [anon_sym_COMMA] = ACTIONS(3483), - [aux_sym_preproc_if_token1] = ACTIONS(3481), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3481), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3481), - [sym_preproc_directive] = ACTIONS(3481), - [anon_sym_LPAREN2] = ACTIONS(3483), - [anon_sym_BANG] = ACTIONS(3483), - [anon_sym_TILDE] = ACTIONS(3483), - [anon_sym_DASH] = ACTIONS(3481), - [anon_sym_PLUS] = ACTIONS(3481), - [anon_sym_STAR] = ACTIONS(3483), - [anon_sym_AMP_AMP] = ACTIONS(3483), - [anon_sym_AMP] = ACTIONS(3481), - [anon_sym___extension__] = ACTIONS(3481), - [anon_sym_typedef] = ACTIONS(3481), - [anon_sym_extern] = ACTIONS(3481), - [anon_sym___attribute__] = ACTIONS(3481), - [anon_sym_COLON_COLON] = ACTIONS(3483), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3483), - [anon_sym___declspec] = ACTIONS(3481), - [anon_sym___based] = ACTIONS(3481), - [anon_sym___cdecl] = ACTIONS(3481), - [anon_sym___clrcall] = ACTIONS(3481), - [anon_sym___stdcall] = ACTIONS(3481), - [anon_sym___fastcall] = ACTIONS(3481), - [anon_sym___thiscall] = ACTIONS(3481), - [anon_sym___vectorcall] = ACTIONS(3481), - [anon_sym_LBRACE] = ACTIONS(3483), - [anon_sym_RBRACE] = ACTIONS(3483), - [anon_sym_signed] = ACTIONS(3481), - [anon_sym_unsigned] = ACTIONS(3481), - [anon_sym_long] = ACTIONS(3481), - [anon_sym_short] = ACTIONS(3481), - [anon_sym_LBRACK] = ACTIONS(3481), - [anon_sym_static] = ACTIONS(3481), - [anon_sym_register] = ACTIONS(3481), - [anon_sym_inline] = ACTIONS(3481), - [anon_sym___inline] = ACTIONS(3481), - [anon_sym___inline__] = ACTIONS(3481), - [anon_sym___forceinline] = ACTIONS(3481), - [anon_sym_thread_local] = ACTIONS(3481), - [anon_sym___thread] = ACTIONS(3481), - [anon_sym_const] = ACTIONS(3481), - [anon_sym_constexpr] = ACTIONS(3481), - [anon_sym_volatile] = ACTIONS(3481), - [anon_sym_restrict] = ACTIONS(3481), - [anon_sym___restrict__] = ACTIONS(3481), - [anon_sym__Atomic] = ACTIONS(3481), - [anon_sym__Noreturn] = ACTIONS(3481), - [anon_sym_noreturn] = ACTIONS(3481), - [anon_sym_mutable] = ACTIONS(3481), - [anon_sym_constinit] = ACTIONS(3481), - [anon_sym_consteval] = ACTIONS(3481), - [sym_primitive_type] = ACTIONS(3481), - [anon_sym_enum] = ACTIONS(3481), - [anon_sym_class] = ACTIONS(3481), - [anon_sym_struct] = ACTIONS(3481), - [anon_sym_union] = ACTIONS(3481), - [anon_sym_if] = ACTIONS(3481), - [anon_sym_switch] = ACTIONS(3481), - [anon_sym_case] = ACTIONS(3481), - [anon_sym_default] = ACTIONS(3481), - [anon_sym_while] = ACTIONS(3481), - [anon_sym_do] = ACTIONS(3481), - [anon_sym_for] = ACTIONS(3481), - [anon_sym_return] = ACTIONS(3481), - [anon_sym_break] = ACTIONS(3481), - [anon_sym_continue] = ACTIONS(3481), - [anon_sym_goto] = ACTIONS(3481), - [anon_sym_not] = ACTIONS(3481), - [anon_sym_compl] = ACTIONS(3481), - [anon_sym_DASH_DASH] = ACTIONS(3483), - [anon_sym_PLUS_PLUS] = ACTIONS(3483), - [anon_sym_sizeof] = ACTIONS(3481), - [anon_sym___alignof__] = ACTIONS(3481), - [anon_sym___alignof] = ACTIONS(3481), - [anon_sym__alignof] = ACTIONS(3481), - [anon_sym_alignof] = ACTIONS(3481), - [anon_sym__Alignof] = ACTIONS(3481), - [anon_sym_offsetof] = ACTIONS(3481), - [anon_sym__Generic] = ACTIONS(3481), - [anon_sym_asm] = ACTIONS(3481), - [anon_sym___asm__] = ACTIONS(3481), - [sym_number_literal] = ACTIONS(3483), - [anon_sym_L_SQUOTE] = ACTIONS(3483), - [anon_sym_u_SQUOTE] = ACTIONS(3483), - [anon_sym_U_SQUOTE] = ACTIONS(3483), - [anon_sym_u8_SQUOTE] = ACTIONS(3483), - [anon_sym_SQUOTE] = ACTIONS(3483), - [anon_sym_L_DQUOTE] = ACTIONS(3483), - [anon_sym_u_DQUOTE] = ACTIONS(3483), - [anon_sym_U_DQUOTE] = ACTIONS(3483), - [anon_sym_u8_DQUOTE] = ACTIONS(3483), - [anon_sym_DQUOTE] = ACTIONS(3483), - [sym_true] = ACTIONS(3481), - [sym_false] = ACTIONS(3481), - [anon_sym_NULL] = ACTIONS(3481), - [anon_sym_nullptr] = ACTIONS(3481), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3481), - [anon_sym_decltype] = ACTIONS(3481), - [anon_sym_virtual] = ACTIONS(3481), - [anon_sym_alignas] = ACTIONS(3481), - [anon_sym_explicit] = ACTIONS(3481), - [anon_sym_typename] = ACTIONS(3481), - [anon_sym_template] = ACTIONS(3481), - [anon_sym_operator] = ACTIONS(3481), - [anon_sym_try] = ACTIONS(3481), - [anon_sym_delete] = ACTIONS(3481), - [anon_sym_throw] = ACTIONS(3481), - [anon_sym_namespace] = ACTIONS(3481), - [anon_sym_using] = ACTIONS(3481), - [anon_sym_static_assert] = ACTIONS(3481), - [anon_sym_concept] = ACTIONS(3481), - [anon_sym_co_return] = ACTIONS(3481), - [anon_sym_co_yield] = ACTIONS(3481), - [anon_sym_R_DQUOTE] = ACTIONS(3483), - [anon_sym_LR_DQUOTE] = ACTIONS(3483), - [anon_sym_uR_DQUOTE] = ACTIONS(3483), - [anon_sym_UR_DQUOTE] = ACTIONS(3483), - [anon_sym_u8R_DQUOTE] = ACTIONS(3483), - [anon_sym_co_await] = ACTIONS(3481), - [anon_sym_new] = ACTIONS(3481), - [anon_sym_requires] = ACTIONS(3481), - [sym_this] = ACTIONS(3481), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3483), - [sym_semgrep_named_ellipsis] = ACTIONS(3483), + [sym_preproc_def] = STATE(2361), + [sym_preproc_function_def] = STATE(2361), + [sym_preproc_call] = STATE(2361), + [sym_preproc_if_in_field_declaration_list] = STATE(2361), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2361), + [sym_type_definition] = STATE(2361), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6384), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7245), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(805), + [sym_field_declaration] = STATE(2361), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2361), + [sym_operator_cast] = STATE(7705), + [sym_inline_method_definition] = STATE(2361), + [sym_constructor_specifiers] = STATE(1945), + [sym_operator_cast_definition] = STATE(2361), + [sym_operator_cast_declaration] = STATE(2361), + [sym_constructor_or_destructor_definition] = STATE(2361), + [sym_constructor_or_destructor_declaration] = STATE(2361), + [sym_friend_declaration] = STATE(2361), + [sym_access_specifier] = STATE(9889), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2361), + [sym_alias_declaration] = STATE(2361), + [sym_static_assert_declaration] = STATE(2361), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7705), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2361), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(805), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [sym_identifier] = ACTIONS(3714), + [aux_sym_preproc_def_token1] = ACTIONS(4002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4005), + [aux_sym_preproc_if_token1] = ACTIONS(4008), + [aux_sym_preproc_if_token2] = ACTIONS(3726), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4011), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4014), + [sym_preproc_directive] = ACTIONS(4017), + [anon_sym_LPAREN2] = ACTIONS(3737), + [anon_sym_TILDE] = ACTIONS(3740), + [anon_sym_STAR] = ACTIONS(3743), + [anon_sym_AMP_AMP] = ACTIONS(3746), + [anon_sym_AMP] = ACTIONS(3749), + [anon_sym___extension__] = ACTIONS(4020), + [anon_sym_typedef] = ACTIONS(4023), + [anon_sym_extern] = ACTIONS(3758), + [anon_sym___attribute__] = ACTIONS(3761), + [anon_sym_COLON_COLON] = ACTIONS(3764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3767), + [anon_sym___declspec] = ACTIONS(3770), + [anon_sym___based] = ACTIONS(3773), + [anon_sym_signed] = ACTIONS(3776), + [anon_sym_unsigned] = ACTIONS(3776), + [anon_sym_long] = ACTIONS(3776), + [anon_sym_short] = ACTIONS(3776), + [anon_sym_LBRACK] = ACTIONS(3779), + [anon_sym_static] = ACTIONS(3758), + [anon_sym_register] = ACTIONS(3758), + [anon_sym_inline] = ACTIONS(3758), + [anon_sym___inline] = ACTIONS(3758), + [anon_sym___inline__] = ACTIONS(3758), + [anon_sym___forceinline] = ACTIONS(3758), + [anon_sym_thread_local] = ACTIONS(3758), + [anon_sym___thread] = ACTIONS(3758), + [anon_sym_const] = ACTIONS(3782), + [anon_sym_constexpr] = ACTIONS(3782), + [anon_sym_volatile] = ACTIONS(3782), + [anon_sym_restrict] = ACTIONS(3782), + [anon_sym___restrict__] = ACTIONS(3782), + [anon_sym__Atomic] = ACTIONS(3782), + [anon_sym__Noreturn] = ACTIONS(3782), + [anon_sym_noreturn] = ACTIONS(3782), + [anon_sym_mutable] = ACTIONS(3782), + [anon_sym_constinit] = ACTIONS(3782), + [anon_sym_consteval] = ACTIONS(3782), + [sym_primitive_type] = ACTIONS(3785), + [anon_sym_enum] = ACTIONS(3788), + [anon_sym_class] = ACTIONS(3791), + [anon_sym_struct] = ACTIONS(3794), + [anon_sym_union] = ACTIONS(3797), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3800), + [anon_sym_decltype] = ACTIONS(3803), + [anon_sym_virtual] = ACTIONS(3806), + [anon_sym_alignas] = ACTIONS(3809), + [anon_sym_explicit] = ACTIONS(3812), + [anon_sym_typename] = ACTIONS(3815), + [anon_sym_template] = ACTIONS(4026), + [anon_sym_operator] = ACTIONS(3821), + [anon_sym_friend] = ACTIONS(4029), + [anon_sym_public] = ACTIONS(3827), + [anon_sym_private] = ACTIONS(3827), + [anon_sym_protected] = ACTIONS(3827), + [anon_sym_using] = ACTIONS(4032), + [anon_sym_static_assert] = ACTIONS(4035), + [sym_semgrep_metavar] = ACTIONS(4038), }, [806] = { - [ts_builtin_sym_end] = ACTIONS(3263), - [sym_identifier] = ACTIONS(3261), - [aux_sym_preproc_include_token1] = ACTIONS(3261), - [aux_sym_preproc_def_token1] = ACTIONS(3261), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3263), - [anon_sym_COMMA] = ACTIONS(3263), - [aux_sym_preproc_if_token1] = ACTIONS(3261), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3261), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3261), - [sym_preproc_directive] = ACTIONS(3261), - [anon_sym_LPAREN2] = ACTIONS(3263), - [anon_sym_BANG] = ACTIONS(3263), - [anon_sym_TILDE] = ACTIONS(3263), - [anon_sym_DASH] = ACTIONS(3261), - [anon_sym_PLUS] = ACTIONS(3261), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP_AMP] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3261), - [anon_sym___extension__] = ACTIONS(3261), - [anon_sym_typedef] = ACTIONS(3261), - [anon_sym_extern] = ACTIONS(3261), - [anon_sym___attribute__] = ACTIONS(3261), - [anon_sym_COLON_COLON] = ACTIONS(3263), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3263), - [anon_sym___declspec] = ACTIONS(3261), - [anon_sym___based] = ACTIONS(3261), - [anon_sym___cdecl] = ACTIONS(3261), - [anon_sym___clrcall] = ACTIONS(3261), - [anon_sym___stdcall] = ACTIONS(3261), - [anon_sym___fastcall] = ACTIONS(3261), - [anon_sym___thiscall] = ACTIONS(3261), - [anon_sym___vectorcall] = ACTIONS(3261), - [anon_sym_LBRACE] = ACTIONS(3263), - [anon_sym_RBRACE] = ACTIONS(3263), - [anon_sym_signed] = ACTIONS(3261), - [anon_sym_unsigned] = ACTIONS(3261), - [anon_sym_long] = ACTIONS(3261), - [anon_sym_short] = ACTIONS(3261), - [anon_sym_LBRACK] = ACTIONS(3261), - [anon_sym_static] = ACTIONS(3261), - [anon_sym_register] = ACTIONS(3261), - [anon_sym_inline] = ACTIONS(3261), - [anon_sym___inline] = ACTIONS(3261), - [anon_sym___inline__] = ACTIONS(3261), - [anon_sym___forceinline] = ACTIONS(3261), - [anon_sym_thread_local] = ACTIONS(3261), - [anon_sym___thread] = ACTIONS(3261), - [anon_sym_const] = ACTIONS(3261), - [anon_sym_constexpr] = ACTIONS(3261), - [anon_sym_volatile] = ACTIONS(3261), - [anon_sym_restrict] = ACTIONS(3261), - [anon_sym___restrict__] = ACTIONS(3261), - [anon_sym__Atomic] = ACTIONS(3261), - [anon_sym__Noreturn] = ACTIONS(3261), - [anon_sym_noreturn] = ACTIONS(3261), - [anon_sym_mutable] = ACTIONS(3261), - [anon_sym_constinit] = ACTIONS(3261), - [anon_sym_consteval] = ACTIONS(3261), - [sym_primitive_type] = ACTIONS(3261), - [anon_sym_enum] = ACTIONS(3261), - [anon_sym_class] = ACTIONS(3261), - [anon_sym_struct] = ACTIONS(3261), - [anon_sym_union] = ACTIONS(3261), - [anon_sym_if] = ACTIONS(3261), - [anon_sym_switch] = ACTIONS(3261), - [anon_sym_case] = ACTIONS(3261), - [anon_sym_default] = ACTIONS(3261), - [anon_sym_while] = ACTIONS(3261), - [anon_sym_do] = ACTIONS(3261), - [anon_sym_for] = ACTIONS(3261), - [anon_sym_return] = ACTIONS(3261), - [anon_sym_break] = ACTIONS(3261), - [anon_sym_continue] = ACTIONS(3261), - [anon_sym_goto] = ACTIONS(3261), - [anon_sym_not] = ACTIONS(3261), - [anon_sym_compl] = ACTIONS(3261), - [anon_sym_DASH_DASH] = ACTIONS(3263), - [anon_sym_PLUS_PLUS] = ACTIONS(3263), - [anon_sym_sizeof] = ACTIONS(3261), - [anon_sym___alignof__] = ACTIONS(3261), - [anon_sym___alignof] = ACTIONS(3261), - [anon_sym__alignof] = ACTIONS(3261), - [anon_sym_alignof] = ACTIONS(3261), - [anon_sym__Alignof] = ACTIONS(3261), - [anon_sym_offsetof] = ACTIONS(3261), - [anon_sym__Generic] = ACTIONS(3261), - [anon_sym_asm] = ACTIONS(3261), - [anon_sym___asm__] = ACTIONS(3261), - [sym_number_literal] = ACTIONS(3263), - [anon_sym_L_SQUOTE] = ACTIONS(3263), - [anon_sym_u_SQUOTE] = ACTIONS(3263), - [anon_sym_U_SQUOTE] = ACTIONS(3263), - [anon_sym_u8_SQUOTE] = ACTIONS(3263), - [anon_sym_SQUOTE] = ACTIONS(3263), - [anon_sym_L_DQUOTE] = ACTIONS(3263), - [anon_sym_u_DQUOTE] = ACTIONS(3263), - [anon_sym_U_DQUOTE] = ACTIONS(3263), - [anon_sym_u8_DQUOTE] = ACTIONS(3263), - [anon_sym_DQUOTE] = ACTIONS(3263), - [sym_true] = ACTIONS(3261), - [sym_false] = ACTIONS(3261), - [anon_sym_NULL] = ACTIONS(3261), - [anon_sym_nullptr] = ACTIONS(3261), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3261), - [anon_sym_decltype] = ACTIONS(3261), - [anon_sym_virtual] = ACTIONS(3261), - [anon_sym_alignas] = ACTIONS(3261), - [anon_sym_explicit] = ACTIONS(3261), - [anon_sym_typename] = ACTIONS(3261), - [anon_sym_template] = ACTIONS(3261), - [anon_sym_operator] = ACTIONS(3261), - [anon_sym_try] = ACTIONS(3261), - [anon_sym_delete] = ACTIONS(3261), - [anon_sym_throw] = ACTIONS(3261), - [anon_sym_namespace] = ACTIONS(3261), - [anon_sym_using] = ACTIONS(3261), - [anon_sym_static_assert] = ACTIONS(3261), - [anon_sym_concept] = ACTIONS(3261), - [anon_sym_co_return] = ACTIONS(3261), - [anon_sym_co_yield] = ACTIONS(3261), - [anon_sym_R_DQUOTE] = ACTIONS(3263), - [anon_sym_LR_DQUOTE] = ACTIONS(3263), - [anon_sym_uR_DQUOTE] = ACTIONS(3263), - [anon_sym_UR_DQUOTE] = ACTIONS(3263), - [anon_sym_u8R_DQUOTE] = ACTIONS(3263), - [anon_sym_co_await] = ACTIONS(3261), - [anon_sym_new] = ACTIONS(3261), - [anon_sym_requires] = ACTIONS(3261), - [sym_this] = ACTIONS(3261), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3263), - [sym_semgrep_named_ellipsis] = ACTIONS(3263), + [ts_builtin_sym_end] = ACTIONS(3412), + [sym_identifier] = ACTIONS(3410), + [aux_sym_preproc_include_token1] = ACTIONS(3410), + [aux_sym_preproc_def_token1] = ACTIONS(3410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3412), + [aux_sym_preproc_if_token1] = ACTIONS(3410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3410), + [sym_preproc_directive] = ACTIONS(3410), + [anon_sym_LPAREN2] = ACTIONS(3412), + [anon_sym_BANG] = ACTIONS(3412), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3410), + [anon_sym_PLUS] = ACTIONS(3410), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_AMP] = ACTIONS(3410), + [anon_sym___extension__] = ACTIONS(3410), + [anon_sym_typedef] = ACTIONS(3410), + [anon_sym_extern] = ACTIONS(3410), + [anon_sym___attribute__] = ACTIONS(3410), + [anon_sym_COLON_COLON] = ACTIONS(3412), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3412), + [anon_sym___declspec] = ACTIONS(3410), + [anon_sym___based] = ACTIONS(3410), + [anon_sym___cdecl] = ACTIONS(3410), + [anon_sym___clrcall] = ACTIONS(3410), + [anon_sym___stdcall] = ACTIONS(3410), + [anon_sym___fastcall] = ACTIONS(3410), + [anon_sym___thiscall] = ACTIONS(3410), + [anon_sym___vectorcall] = ACTIONS(3410), + [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_signed] = ACTIONS(3410), + [anon_sym_unsigned] = ACTIONS(3410), + [anon_sym_long] = ACTIONS(3410), + [anon_sym_short] = ACTIONS(3410), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_static] = ACTIONS(3410), + [anon_sym_register] = ACTIONS(3410), + [anon_sym_inline] = ACTIONS(3410), + [anon_sym___inline] = ACTIONS(3410), + [anon_sym___inline__] = ACTIONS(3410), + [anon_sym___forceinline] = ACTIONS(3410), + [anon_sym_thread_local] = ACTIONS(3410), + [anon_sym___thread] = ACTIONS(3410), + [anon_sym_const] = ACTIONS(3410), + [anon_sym_constexpr] = ACTIONS(3410), + [anon_sym_volatile] = ACTIONS(3410), + [anon_sym_restrict] = ACTIONS(3410), + [anon_sym___restrict__] = ACTIONS(3410), + [anon_sym__Atomic] = ACTIONS(3410), + [anon_sym__Noreturn] = ACTIONS(3410), + [anon_sym_noreturn] = ACTIONS(3410), + [anon_sym_mutable] = ACTIONS(3410), + [anon_sym_constinit] = ACTIONS(3410), + [anon_sym_consteval] = ACTIONS(3410), + [sym_primitive_type] = ACTIONS(3410), + [anon_sym_enum] = ACTIONS(3410), + [anon_sym_class] = ACTIONS(3410), + [anon_sym_struct] = ACTIONS(3410), + [anon_sym_union] = ACTIONS(3410), + [anon_sym_if] = ACTIONS(3410), + [anon_sym_switch] = ACTIONS(3410), + [anon_sym_case] = ACTIONS(3410), + [anon_sym_default] = ACTIONS(3410), + [anon_sym_while] = ACTIONS(3410), + [anon_sym_do] = ACTIONS(3410), + [anon_sym_for] = ACTIONS(3410), + [anon_sym_return] = ACTIONS(3410), + [anon_sym_break] = ACTIONS(3410), + [anon_sym_continue] = ACTIONS(3410), + [anon_sym_goto] = ACTIONS(3410), + [anon_sym_not] = ACTIONS(3410), + [anon_sym_compl] = ACTIONS(3410), + [anon_sym_DASH_DASH] = ACTIONS(3412), + [anon_sym_PLUS_PLUS] = ACTIONS(3412), + [anon_sym_sizeof] = ACTIONS(3410), + [anon_sym___alignof__] = ACTIONS(3410), + [anon_sym___alignof] = ACTIONS(3410), + [anon_sym__alignof] = ACTIONS(3410), + [anon_sym_alignof] = ACTIONS(3410), + [anon_sym__Alignof] = ACTIONS(3410), + [anon_sym_offsetof] = ACTIONS(3410), + [anon_sym__Generic] = ACTIONS(3410), + [anon_sym_asm] = ACTIONS(3410), + [anon_sym___asm__] = ACTIONS(3410), + [sym_number_literal] = ACTIONS(3412), + [anon_sym_L_SQUOTE] = ACTIONS(3412), + [anon_sym_u_SQUOTE] = ACTIONS(3412), + [anon_sym_U_SQUOTE] = ACTIONS(3412), + [anon_sym_u8_SQUOTE] = ACTIONS(3412), + [anon_sym_SQUOTE] = ACTIONS(3412), + [anon_sym_L_DQUOTE] = ACTIONS(3412), + [anon_sym_u_DQUOTE] = ACTIONS(3412), + [anon_sym_U_DQUOTE] = ACTIONS(3412), + [anon_sym_u8_DQUOTE] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3412), + [sym_true] = ACTIONS(3410), + [sym_false] = ACTIONS(3410), + [anon_sym_NULL] = ACTIONS(3410), + [anon_sym_nullptr] = ACTIONS(3410), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3410), + [anon_sym_decltype] = ACTIONS(3410), + [anon_sym_virtual] = ACTIONS(3410), + [anon_sym_alignas] = ACTIONS(3410), + [anon_sym_explicit] = ACTIONS(3410), + [anon_sym_typename] = ACTIONS(3410), + [anon_sym_template] = ACTIONS(3410), + [anon_sym_operator] = ACTIONS(3410), + [anon_sym_try] = ACTIONS(3410), + [anon_sym_delete] = ACTIONS(3410), + [anon_sym_throw] = ACTIONS(3410), + [anon_sym_namespace] = ACTIONS(3410), + [anon_sym_using] = ACTIONS(3410), + [anon_sym_static_assert] = ACTIONS(3410), + [anon_sym_concept] = ACTIONS(3410), + [anon_sym_co_return] = ACTIONS(3410), + [anon_sym_co_yield] = ACTIONS(3410), + [anon_sym_R_DQUOTE] = ACTIONS(3412), + [anon_sym_LR_DQUOTE] = ACTIONS(3412), + [anon_sym_uR_DQUOTE] = ACTIONS(3412), + [anon_sym_UR_DQUOTE] = ACTIONS(3412), + [anon_sym_u8R_DQUOTE] = ACTIONS(3412), + [anon_sym_co_await] = ACTIONS(3410), + [anon_sym_new] = ACTIONS(3410), + [anon_sym_requires] = ACTIONS(3410), + [sym_this] = ACTIONS(3410), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3412), + [sym_semgrep_named_ellipsis] = ACTIONS(3412), }, [807] = { - [sym_expression] = STATE(5419), - [sym_expression_not_binary] = STATE(5540), - [sym_conditional_expression] = STATE(5537), - [sym_assignment_expression] = STATE(5537), - [sym_pointer_expression] = STATE(3745), - [sym_unary_expression] = STATE(5537), - [sym_binary_expression] = STATE(5540), - [sym_update_expression] = STATE(5537), - [sym_cast_expression] = STATE(5537), - [sym_sizeof_expression] = STATE(5537), - [sym_alignof_expression] = STATE(5537), - [sym_offsetof_expression] = STATE(5537), - [sym_generic_expression] = STATE(5537), - [sym_subscript_expression] = STATE(3745), - [sym_call_expression] = STATE(3745), - [sym_gnu_asm_expression] = STATE(5537), - [sym_field_expression] = STATE(3745), - [sym_compound_literal_expression] = STATE(5537), - [sym_parenthesized_expression] = STATE(3745), - [sym_initializer_list] = STATE(5562), - [sym_char_literal] = STATE(5453), - [sym_concatenated_string] = STATE(5453), - [sym_string_literal] = STATE(3936), - [sym_null] = STATE(5537), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9333), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5537), - [sym_raw_string_literal] = STATE(3936), - [sym_co_await_expression] = STATE(5537), - [sym_new_expression] = STATE(5537), - [sym_delete_expression] = STATE(5537), - [sym_requires_clause] = STATE(5537), - [sym_requires_expression] = STATE(5537), - [sym_lambda_expression] = STATE(5537), - [sym_lambda_capture_specifier] = STATE(7261), - [sym_fold_expression] = STATE(5537), - [sym_parameter_pack_expansion] = STATE(5537), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3745), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3745), - [sym_semgrep_ellipsis] = STATE(5540), - [sym_deep_ellipsis] = STATE(5540), - [sym_identifier] = ACTIONS(2279), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2281), - [anon_sym_COMMA] = ACTIONS(2281), - [aux_sym_preproc_if_token2] = ACTIONS(2281), - [aux_sym_preproc_else_token1] = ACTIONS(2281), - [aux_sym_preproc_elif_token1] = ACTIONS(2281), - [anon_sym_LPAREN2] = ACTIONS(2281), - [anon_sym_BANG] = ACTIONS(3818), - [anon_sym_TILDE] = ACTIONS(3820), - [anon_sym_DASH] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2279), - [anon_sym_STAR] = ACTIONS(2281), - [anon_sym_SLASH] = ACTIONS(2279), - [anon_sym_PERCENT] = ACTIONS(2281), - [anon_sym_PIPE_PIPE] = ACTIONS(2281), - [anon_sym_AMP_AMP] = ACTIONS(2281), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_CARET] = ACTIONS(2281), - [anon_sym_AMP] = ACTIONS(2279), - [anon_sym_EQ_EQ] = ACTIONS(2281), - [anon_sym_BANG_EQ] = ACTIONS(2281), - [anon_sym_GT] = ACTIONS(2279), - [anon_sym_GT_EQ] = ACTIONS(2281), - [anon_sym_LT_EQ] = ACTIONS(2279), - [anon_sym_LT] = ACTIONS(2279), - [anon_sym_LT_LT] = ACTIONS(2281), - [anon_sym_GT_GT] = ACTIONS(2281), - [anon_sym_COLON_COLON] = ACTIONS(3822), - [anon_sym_LBRACE] = ACTIONS(3824), - [anon_sym_LBRACK] = ACTIONS(2281), - [sym_primitive_type] = ACTIONS(3826), - [anon_sym_QMARK] = ACTIONS(2281), - [anon_sym_not] = ACTIONS(3818), - [anon_sym_compl] = ACTIONS(3818), - [anon_sym_LT_EQ_GT] = ACTIONS(2281), - [anon_sym_or] = ACTIONS(2279), - [anon_sym_and] = ACTIONS(2279), - [anon_sym_bitor] = ACTIONS(2279), - [anon_sym_xor] = ACTIONS(2279), - [anon_sym_bitand] = ACTIONS(2279), - [anon_sym_not_eq] = ACTIONS(2279), - [anon_sym_DASH_DASH] = ACTIONS(2281), - [anon_sym_PLUS_PLUS] = ACTIONS(2281), - [anon_sym_sizeof] = ACTIONS(3828), - [anon_sym___alignof__] = ACTIONS(3830), - [anon_sym___alignof] = ACTIONS(3830), - [anon_sym__alignof] = ACTIONS(3830), - [anon_sym_alignof] = ACTIONS(3830), - [anon_sym__Alignof] = ACTIONS(3830), - [anon_sym_offsetof] = ACTIONS(3832), - [anon_sym__Generic] = ACTIONS(3834), - [anon_sym_asm] = ACTIONS(3836), - [anon_sym___asm__] = ACTIONS(3836), - [anon_sym_DOT] = ACTIONS(2279), - [anon_sym_DOT_STAR] = ACTIONS(2281), - [anon_sym_DASH_GT] = ACTIONS(2281), - [sym_number_literal] = ACTIONS(3838), - [anon_sym_L_SQUOTE] = ACTIONS(3840), - [anon_sym_u_SQUOTE] = ACTIONS(3840), - [anon_sym_U_SQUOTE] = ACTIONS(3840), - [anon_sym_u8_SQUOTE] = ACTIONS(3840), - [anon_sym_SQUOTE] = ACTIONS(3840), - [anon_sym_L_DQUOTE] = ACTIONS(3842), - [anon_sym_u_DQUOTE] = ACTIONS(3842), - [anon_sym_U_DQUOTE] = ACTIONS(3842), - [anon_sym_u8_DQUOTE] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym_true] = ACTIONS(3844), - [sym_false] = ACTIONS(3844), - [anon_sym_NULL] = ACTIONS(3846), - [anon_sym_nullptr] = ACTIONS(3846), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(3854), - [anon_sym_requires] = ACTIONS(3856), - [sym_this] = ACTIONS(3844), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3858), - [sym_semgrep_named_ellipsis] = ACTIONS(3860), - }, - [808] = { - [sym_preproc_def] = STATE(2179), - [sym_preproc_function_def] = STATE(2179), - [sym_preproc_call] = STATE(2179), - [sym_preproc_if_in_field_declaration_list] = STATE(2179), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2179), - [sym_preproc_else_in_field_declaration_list] = STATE(10095), - [sym_preproc_elif_in_field_declaration_list] = STATE(10095), - [sym_type_definition] = STATE(2179), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6875), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7662), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(884), - [sym_field_declaration] = STATE(2179), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2179), - [sym_operator_cast] = STATE(8085), - [sym_inline_method_definition] = STATE(2179), - [sym_constructor_specifiers] = STATE(1942), - [sym_operator_cast_definition] = STATE(2179), - [sym_operator_cast_declaration] = STATE(2179), - [sym_constructor_or_destructor_definition] = STATE(2179), - [sym_constructor_or_destructor_declaration] = STATE(2179), - [sym_friend_declaration] = STATE(2179), - [sym_access_specifier] = STATE(10098), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2179), - [sym_alias_declaration] = STATE(2179), - [sym_static_assert_declaration] = STATE(2179), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8085), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(884), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1942), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(3862), - [aux_sym_preproc_if_token1] = ACTIONS(3864), - [aux_sym_preproc_if_token2] = ACTIONS(3866), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3868), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3870), - [aux_sym_preproc_else_token1] = ACTIONS(3694), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), - [sym_preproc_directive] = ACTIONS(3872), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [sym_preproc_def] = STATE(2347), + [sym_preproc_function_def] = STATE(2347), + [sym_preproc_call] = STATE(2347), + [sym_preproc_if_in_field_declaration_list] = STATE(2347), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2347), + [sym_type_definition] = STATE(2347), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6437), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7306), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(868), + [sym_field_declaration] = STATE(2347), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2347), + [sym_operator_cast] = STATE(7731), + [sym_inline_method_definition] = STATE(2347), + [sym_constructor_specifiers] = STATE(1938), + [sym_operator_cast_definition] = STATE(2347), + [sym_operator_cast_declaration] = STATE(2347), + [sym_constructor_or_destructor_definition] = STATE(2347), + [sym_constructor_or_destructor_declaration] = STATE(2347), + [sym_friend_declaration] = STATE(2347), + [sym_access_specifier] = STATE(10086), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2347), + [sym_alias_declaration] = STATE(2347), + [sym_static_assert_declaration] = STATE(2347), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7731), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2347), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(868), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1938), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(4041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4043), + [aux_sym_preproc_if_token1] = ACTIONS(4045), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4049), + [sym_preproc_directive] = ACTIONS(4051), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(3874), - [anon_sym_typedef] = ACTIONS(3876), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(4053), + [anon_sym_typedef] = ACTIONS(4055), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(4057), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3265), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -176645,120 +166662,515 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(3878), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(4059), [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(3880), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(3882), - [anon_sym_static_assert] = ACTIONS(3884), + [anon_sym_friend] = ACTIONS(4061), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(4063), + [anon_sym_static_assert] = ACTIONS(4065), + [sym_semgrep_metavar] = ACTIONS(4067), + }, + [808] = { + [ts_builtin_sym_end] = ACTIONS(3567), + [sym_identifier] = ACTIONS(3565), + [aux_sym_preproc_include_token1] = ACTIONS(3565), + [aux_sym_preproc_def_token1] = ACTIONS(3565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3567), + [aux_sym_preproc_if_token1] = ACTIONS(3565), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3565), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3565), + [sym_preproc_directive] = ACTIONS(3565), + [anon_sym_LPAREN2] = ACTIONS(3567), + [anon_sym_BANG] = ACTIONS(3567), + [anon_sym_TILDE] = ACTIONS(3567), + [anon_sym_DASH] = ACTIONS(3565), + [anon_sym_PLUS] = ACTIONS(3565), + [anon_sym_STAR] = ACTIONS(3567), + [anon_sym_AMP_AMP] = ACTIONS(3567), + [anon_sym_AMP] = ACTIONS(3565), + [anon_sym___extension__] = ACTIONS(3565), + [anon_sym_typedef] = ACTIONS(3565), + [anon_sym_extern] = ACTIONS(3565), + [anon_sym___attribute__] = ACTIONS(3565), + [anon_sym_COLON_COLON] = ACTIONS(3567), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3567), + [anon_sym___declspec] = ACTIONS(3565), + [anon_sym___based] = ACTIONS(3565), + [anon_sym___cdecl] = ACTIONS(3565), + [anon_sym___clrcall] = ACTIONS(3565), + [anon_sym___stdcall] = ACTIONS(3565), + [anon_sym___fastcall] = ACTIONS(3565), + [anon_sym___thiscall] = ACTIONS(3565), + [anon_sym___vectorcall] = ACTIONS(3565), + [anon_sym_LBRACE] = ACTIONS(3567), + [anon_sym_signed] = ACTIONS(3565), + [anon_sym_unsigned] = ACTIONS(3565), + [anon_sym_long] = ACTIONS(3565), + [anon_sym_short] = ACTIONS(3565), + [anon_sym_LBRACK] = ACTIONS(3565), + [anon_sym_static] = ACTIONS(3565), + [anon_sym_register] = ACTIONS(3565), + [anon_sym_inline] = ACTIONS(3565), + [anon_sym___inline] = ACTIONS(3565), + [anon_sym___inline__] = ACTIONS(3565), + [anon_sym___forceinline] = ACTIONS(3565), + [anon_sym_thread_local] = ACTIONS(3565), + [anon_sym___thread] = ACTIONS(3565), + [anon_sym_const] = ACTIONS(3565), + [anon_sym_constexpr] = ACTIONS(3565), + [anon_sym_volatile] = ACTIONS(3565), + [anon_sym_restrict] = ACTIONS(3565), + [anon_sym___restrict__] = ACTIONS(3565), + [anon_sym__Atomic] = ACTIONS(3565), + [anon_sym__Noreturn] = ACTIONS(3565), + [anon_sym_noreturn] = ACTIONS(3565), + [anon_sym_mutable] = ACTIONS(3565), + [anon_sym_constinit] = ACTIONS(3565), + [anon_sym_consteval] = ACTIONS(3565), + [sym_primitive_type] = ACTIONS(3565), + [anon_sym_enum] = ACTIONS(3565), + [anon_sym_class] = ACTIONS(3565), + [anon_sym_struct] = ACTIONS(3565), + [anon_sym_union] = ACTIONS(3565), + [anon_sym_if] = ACTIONS(3565), + [anon_sym_switch] = ACTIONS(3565), + [anon_sym_case] = ACTIONS(3565), + [anon_sym_default] = ACTIONS(3565), + [anon_sym_while] = ACTIONS(3565), + [anon_sym_do] = ACTIONS(3565), + [anon_sym_for] = ACTIONS(3565), + [anon_sym_return] = ACTIONS(3565), + [anon_sym_break] = ACTIONS(3565), + [anon_sym_continue] = ACTIONS(3565), + [anon_sym_goto] = ACTIONS(3565), + [anon_sym_not] = ACTIONS(3565), + [anon_sym_compl] = ACTIONS(3565), + [anon_sym_DASH_DASH] = ACTIONS(3567), + [anon_sym_PLUS_PLUS] = ACTIONS(3567), + [anon_sym_sizeof] = ACTIONS(3565), + [anon_sym___alignof__] = ACTIONS(3565), + [anon_sym___alignof] = ACTIONS(3565), + [anon_sym__alignof] = ACTIONS(3565), + [anon_sym_alignof] = ACTIONS(3565), + [anon_sym__Alignof] = ACTIONS(3565), + [anon_sym_offsetof] = ACTIONS(3565), + [anon_sym__Generic] = ACTIONS(3565), + [anon_sym_asm] = ACTIONS(3565), + [anon_sym___asm__] = ACTIONS(3565), + [sym_number_literal] = ACTIONS(3567), + [anon_sym_L_SQUOTE] = ACTIONS(3567), + [anon_sym_u_SQUOTE] = ACTIONS(3567), + [anon_sym_U_SQUOTE] = ACTIONS(3567), + [anon_sym_u8_SQUOTE] = ACTIONS(3567), + [anon_sym_SQUOTE] = ACTIONS(3567), + [anon_sym_L_DQUOTE] = ACTIONS(3567), + [anon_sym_u_DQUOTE] = ACTIONS(3567), + [anon_sym_U_DQUOTE] = ACTIONS(3567), + [anon_sym_u8_DQUOTE] = ACTIONS(3567), + [anon_sym_DQUOTE] = ACTIONS(3567), + [sym_true] = ACTIONS(3565), + [sym_false] = ACTIONS(3565), + [anon_sym_NULL] = ACTIONS(3565), + [anon_sym_nullptr] = ACTIONS(3565), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3565), + [anon_sym_decltype] = ACTIONS(3565), + [anon_sym_virtual] = ACTIONS(3565), + [anon_sym_alignas] = ACTIONS(3565), + [anon_sym_explicit] = ACTIONS(3565), + [anon_sym_typename] = ACTIONS(3565), + [anon_sym_template] = ACTIONS(3565), + [anon_sym_operator] = ACTIONS(3565), + [anon_sym_try] = ACTIONS(3565), + [anon_sym_delete] = ACTIONS(3565), + [anon_sym_throw] = ACTIONS(3565), + [anon_sym_namespace] = ACTIONS(3565), + [anon_sym_using] = ACTIONS(3565), + [anon_sym_static_assert] = ACTIONS(3565), + [anon_sym_concept] = ACTIONS(3565), + [anon_sym_co_return] = ACTIONS(3565), + [anon_sym_co_yield] = ACTIONS(3565), + [anon_sym_R_DQUOTE] = ACTIONS(3567), + [anon_sym_LR_DQUOTE] = ACTIONS(3567), + [anon_sym_uR_DQUOTE] = ACTIONS(3567), + [anon_sym_UR_DQUOTE] = ACTIONS(3567), + [anon_sym_u8R_DQUOTE] = ACTIONS(3567), + [anon_sym_co_await] = ACTIONS(3565), + [anon_sym_new] = ACTIONS(3565), + [anon_sym_requires] = ACTIONS(3565), + [sym_this] = ACTIONS(3565), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3567), + [sym_semgrep_named_ellipsis] = ACTIONS(3567), }, [809] = { - [sym_preproc_def] = STATE(2179), - [sym_preproc_function_def] = STATE(2179), - [sym_preproc_call] = STATE(2179), - [sym_preproc_if_in_field_declaration_list] = STATE(2179), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2179), - [sym_preproc_else_in_field_declaration_list] = STATE(10103), - [sym_preproc_elif_in_field_declaration_list] = STATE(10103), - [sym_type_definition] = STATE(2179), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6875), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7662), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(812), - [sym_field_declaration] = STATE(2179), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2179), - [sym_operator_cast] = STATE(8085), - [sym_inline_method_definition] = STATE(2179), - [sym_constructor_specifiers] = STATE(1942), - [sym_operator_cast_definition] = STATE(2179), - [sym_operator_cast_declaration] = STATE(2179), - [sym_constructor_or_destructor_definition] = STATE(2179), - [sym_constructor_or_destructor_declaration] = STATE(2179), - [sym_friend_declaration] = STATE(2179), - [sym_access_specifier] = STATE(10098), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2179), - [sym_alias_declaration] = STATE(2179), - [sym_static_assert_declaration] = STATE(2179), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8085), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(812), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1942), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(3862), - [aux_sym_preproc_if_token1] = ACTIONS(3864), - [aux_sym_preproc_if_token2] = ACTIONS(3886), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3868), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3870), - [aux_sym_preproc_else_token1] = ACTIONS(3694), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), - [sym_preproc_directive] = ACTIONS(3872), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [ts_builtin_sym_end] = ACTIONS(3573), + [sym_identifier] = ACTIONS(3571), + [aux_sym_preproc_include_token1] = ACTIONS(3571), + [aux_sym_preproc_def_token1] = ACTIONS(3571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3573), + [aux_sym_preproc_if_token1] = ACTIONS(3571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3571), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3571), + [sym_preproc_directive] = ACTIONS(3571), + [anon_sym_LPAREN2] = ACTIONS(3573), + [anon_sym_BANG] = ACTIONS(3573), + [anon_sym_TILDE] = ACTIONS(3573), + [anon_sym_DASH] = ACTIONS(3571), + [anon_sym_PLUS] = ACTIONS(3571), + [anon_sym_STAR] = ACTIONS(3573), + [anon_sym_AMP_AMP] = ACTIONS(3573), + [anon_sym_AMP] = ACTIONS(3571), + [anon_sym___extension__] = ACTIONS(3571), + [anon_sym_typedef] = ACTIONS(3571), + [anon_sym_extern] = ACTIONS(3571), + [anon_sym___attribute__] = ACTIONS(3571), + [anon_sym_COLON_COLON] = ACTIONS(3573), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3573), + [anon_sym___declspec] = ACTIONS(3571), + [anon_sym___based] = ACTIONS(3571), + [anon_sym___cdecl] = ACTIONS(3571), + [anon_sym___clrcall] = ACTIONS(3571), + [anon_sym___stdcall] = ACTIONS(3571), + [anon_sym___fastcall] = ACTIONS(3571), + [anon_sym___thiscall] = ACTIONS(3571), + [anon_sym___vectorcall] = ACTIONS(3571), + [anon_sym_LBRACE] = ACTIONS(3573), + [anon_sym_signed] = ACTIONS(3571), + [anon_sym_unsigned] = ACTIONS(3571), + [anon_sym_long] = ACTIONS(3571), + [anon_sym_short] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(3571), + [anon_sym_static] = ACTIONS(3571), + [anon_sym_register] = ACTIONS(3571), + [anon_sym_inline] = ACTIONS(3571), + [anon_sym___inline] = ACTIONS(3571), + [anon_sym___inline__] = ACTIONS(3571), + [anon_sym___forceinline] = ACTIONS(3571), + [anon_sym_thread_local] = ACTIONS(3571), + [anon_sym___thread] = ACTIONS(3571), + [anon_sym_const] = ACTIONS(3571), + [anon_sym_constexpr] = ACTIONS(3571), + [anon_sym_volatile] = ACTIONS(3571), + [anon_sym_restrict] = ACTIONS(3571), + [anon_sym___restrict__] = ACTIONS(3571), + [anon_sym__Atomic] = ACTIONS(3571), + [anon_sym__Noreturn] = ACTIONS(3571), + [anon_sym_noreturn] = ACTIONS(3571), + [anon_sym_mutable] = ACTIONS(3571), + [anon_sym_constinit] = ACTIONS(3571), + [anon_sym_consteval] = ACTIONS(3571), + [sym_primitive_type] = ACTIONS(3571), + [anon_sym_enum] = ACTIONS(3571), + [anon_sym_class] = ACTIONS(3571), + [anon_sym_struct] = ACTIONS(3571), + [anon_sym_union] = ACTIONS(3571), + [anon_sym_if] = ACTIONS(3571), + [anon_sym_switch] = ACTIONS(3571), + [anon_sym_case] = ACTIONS(3571), + [anon_sym_default] = ACTIONS(3571), + [anon_sym_while] = ACTIONS(3571), + [anon_sym_do] = ACTIONS(3571), + [anon_sym_for] = ACTIONS(3571), + [anon_sym_return] = ACTIONS(3571), + [anon_sym_break] = ACTIONS(3571), + [anon_sym_continue] = ACTIONS(3571), + [anon_sym_goto] = ACTIONS(3571), + [anon_sym_not] = ACTIONS(3571), + [anon_sym_compl] = ACTIONS(3571), + [anon_sym_DASH_DASH] = ACTIONS(3573), + [anon_sym_PLUS_PLUS] = ACTIONS(3573), + [anon_sym_sizeof] = ACTIONS(3571), + [anon_sym___alignof__] = ACTIONS(3571), + [anon_sym___alignof] = ACTIONS(3571), + [anon_sym__alignof] = ACTIONS(3571), + [anon_sym_alignof] = ACTIONS(3571), + [anon_sym__Alignof] = ACTIONS(3571), + [anon_sym_offsetof] = ACTIONS(3571), + [anon_sym__Generic] = ACTIONS(3571), + [anon_sym_asm] = ACTIONS(3571), + [anon_sym___asm__] = ACTIONS(3571), + [sym_number_literal] = ACTIONS(3573), + [anon_sym_L_SQUOTE] = ACTIONS(3573), + [anon_sym_u_SQUOTE] = ACTIONS(3573), + [anon_sym_U_SQUOTE] = ACTIONS(3573), + [anon_sym_u8_SQUOTE] = ACTIONS(3573), + [anon_sym_SQUOTE] = ACTIONS(3573), + [anon_sym_L_DQUOTE] = ACTIONS(3573), + [anon_sym_u_DQUOTE] = ACTIONS(3573), + [anon_sym_U_DQUOTE] = ACTIONS(3573), + [anon_sym_u8_DQUOTE] = ACTIONS(3573), + [anon_sym_DQUOTE] = ACTIONS(3573), + [sym_true] = ACTIONS(3571), + [sym_false] = ACTIONS(3571), + [anon_sym_NULL] = ACTIONS(3571), + [anon_sym_nullptr] = ACTIONS(3571), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3571), + [anon_sym_decltype] = ACTIONS(3571), + [anon_sym_virtual] = ACTIONS(3571), + [anon_sym_alignas] = ACTIONS(3571), + [anon_sym_explicit] = ACTIONS(3571), + [anon_sym_typename] = ACTIONS(3571), + [anon_sym_template] = ACTIONS(3571), + [anon_sym_operator] = ACTIONS(3571), + [anon_sym_try] = ACTIONS(3571), + [anon_sym_delete] = ACTIONS(3571), + [anon_sym_throw] = ACTIONS(3571), + [anon_sym_namespace] = ACTIONS(3571), + [anon_sym_using] = ACTIONS(3571), + [anon_sym_static_assert] = ACTIONS(3571), + [anon_sym_concept] = ACTIONS(3571), + [anon_sym_co_return] = ACTIONS(3571), + [anon_sym_co_yield] = ACTIONS(3571), + [anon_sym_R_DQUOTE] = ACTIONS(3573), + [anon_sym_LR_DQUOTE] = ACTIONS(3573), + [anon_sym_uR_DQUOTE] = ACTIONS(3573), + [anon_sym_UR_DQUOTE] = ACTIONS(3573), + [anon_sym_u8R_DQUOTE] = ACTIONS(3573), + [anon_sym_co_await] = ACTIONS(3571), + [anon_sym_new] = ACTIONS(3571), + [anon_sym_requires] = ACTIONS(3571), + [sym_this] = ACTIONS(3571), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3573), + [sym_semgrep_named_ellipsis] = ACTIONS(3573), + }, + [810] = { + [ts_builtin_sym_end] = ACTIONS(3682), + [sym_identifier] = ACTIONS(3680), + [aux_sym_preproc_include_token1] = ACTIONS(3680), + [aux_sym_preproc_def_token1] = ACTIONS(3680), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3682), + [aux_sym_preproc_if_token1] = ACTIONS(3680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3680), + [sym_preproc_directive] = ACTIONS(3680), + [anon_sym_LPAREN2] = ACTIONS(3682), + [anon_sym_BANG] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(3682), + [anon_sym_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3680), + [anon_sym_STAR] = ACTIONS(3682), + [anon_sym_AMP_AMP] = ACTIONS(3682), + [anon_sym_AMP] = ACTIONS(3680), + [anon_sym___extension__] = ACTIONS(3680), + [anon_sym_typedef] = ACTIONS(3680), + [anon_sym_extern] = ACTIONS(3680), + [anon_sym___attribute__] = ACTIONS(3680), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3682), + [anon_sym___declspec] = ACTIONS(3680), + [anon_sym___based] = ACTIONS(3680), + [anon_sym___cdecl] = ACTIONS(3680), + [anon_sym___clrcall] = ACTIONS(3680), + [anon_sym___stdcall] = ACTIONS(3680), + [anon_sym___fastcall] = ACTIONS(3680), + [anon_sym___thiscall] = ACTIONS(3680), + [anon_sym___vectorcall] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3682), + [anon_sym_signed] = ACTIONS(3680), + [anon_sym_unsigned] = ACTIONS(3680), + [anon_sym_long] = ACTIONS(3680), + [anon_sym_short] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_static] = ACTIONS(3680), + [anon_sym_register] = ACTIONS(3680), + [anon_sym_inline] = ACTIONS(3680), + [anon_sym___inline] = ACTIONS(3680), + [anon_sym___inline__] = ACTIONS(3680), + [anon_sym___forceinline] = ACTIONS(3680), + [anon_sym_thread_local] = ACTIONS(3680), + [anon_sym___thread] = ACTIONS(3680), + [anon_sym_const] = ACTIONS(3680), + [anon_sym_constexpr] = ACTIONS(3680), + [anon_sym_volatile] = ACTIONS(3680), + [anon_sym_restrict] = ACTIONS(3680), + [anon_sym___restrict__] = ACTIONS(3680), + [anon_sym__Atomic] = ACTIONS(3680), + [anon_sym__Noreturn] = ACTIONS(3680), + [anon_sym_noreturn] = ACTIONS(3680), + [anon_sym_mutable] = ACTIONS(3680), + [anon_sym_constinit] = ACTIONS(3680), + [anon_sym_consteval] = ACTIONS(3680), + [sym_primitive_type] = ACTIONS(3680), + [anon_sym_enum] = ACTIONS(3680), + [anon_sym_class] = ACTIONS(3680), + [anon_sym_struct] = ACTIONS(3680), + [anon_sym_union] = ACTIONS(3680), + [anon_sym_if] = ACTIONS(3680), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_case] = ACTIONS(3680), + [anon_sym_default] = ACTIONS(3680), + [anon_sym_while] = ACTIONS(3680), + [anon_sym_do] = ACTIONS(3680), + [anon_sym_for] = ACTIONS(3680), + [anon_sym_return] = ACTIONS(3680), + [anon_sym_break] = ACTIONS(3680), + [anon_sym_continue] = ACTIONS(3680), + [anon_sym_goto] = ACTIONS(3680), + [anon_sym_not] = ACTIONS(3680), + [anon_sym_compl] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3682), + [anon_sym_PLUS_PLUS] = ACTIONS(3682), + [anon_sym_sizeof] = ACTIONS(3680), + [anon_sym___alignof__] = ACTIONS(3680), + [anon_sym___alignof] = ACTIONS(3680), + [anon_sym__alignof] = ACTIONS(3680), + [anon_sym_alignof] = ACTIONS(3680), + [anon_sym__Alignof] = ACTIONS(3680), + [anon_sym_offsetof] = ACTIONS(3680), + [anon_sym__Generic] = ACTIONS(3680), + [anon_sym_asm] = ACTIONS(3680), + [anon_sym___asm__] = ACTIONS(3680), + [sym_number_literal] = ACTIONS(3682), + [anon_sym_L_SQUOTE] = ACTIONS(3682), + [anon_sym_u_SQUOTE] = ACTIONS(3682), + [anon_sym_U_SQUOTE] = ACTIONS(3682), + [anon_sym_u8_SQUOTE] = ACTIONS(3682), + [anon_sym_SQUOTE] = ACTIONS(3682), + [anon_sym_L_DQUOTE] = ACTIONS(3682), + [anon_sym_u_DQUOTE] = ACTIONS(3682), + [anon_sym_U_DQUOTE] = ACTIONS(3682), + [anon_sym_u8_DQUOTE] = ACTIONS(3682), + [anon_sym_DQUOTE] = ACTIONS(3682), + [sym_true] = ACTIONS(3680), + [sym_false] = ACTIONS(3680), + [anon_sym_NULL] = ACTIONS(3680), + [anon_sym_nullptr] = ACTIONS(3680), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3680), + [anon_sym_decltype] = ACTIONS(3680), + [anon_sym_virtual] = ACTIONS(3680), + [anon_sym_alignas] = ACTIONS(3680), + [anon_sym_explicit] = ACTIONS(3680), + [anon_sym_typename] = ACTIONS(3680), + [anon_sym_template] = ACTIONS(3680), + [anon_sym_operator] = ACTIONS(3680), + [anon_sym_try] = ACTIONS(3680), + [anon_sym_delete] = ACTIONS(3680), + [anon_sym_throw] = ACTIONS(3680), + [anon_sym_namespace] = ACTIONS(3680), + [anon_sym_using] = ACTIONS(3680), + [anon_sym_static_assert] = ACTIONS(3680), + [anon_sym_concept] = ACTIONS(3680), + [anon_sym_co_return] = ACTIONS(3680), + [anon_sym_co_yield] = ACTIONS(3680), + [anon_sym_R_DQUOTE] = ACTIONS(3682), + [anon_sym_LR_DQUOTE] = ACTIONS(3682), + [anon_sym_uR_DQUOTE] = ACTIONS(3682), + [anon_sym_UR_DQUOTE] = ACTIONS(3682), + [anon_sym_u8R_DQUOTE] = ACTIONS(3682), + [anon_sym_co_await] = ACTIONS(3680), + [anon_sym_new] = ACTIONS(3680), + [anon_sym_requires] = ACTIONS(3680), + [sym_this] = ACTIONS(3680), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3682), + [sym_semgrep_named_ellipsis] = ACTIONS(3682), + }, + [811] = { + [sym_preproc_def] = STATE(2361), + [sym_preproc_function_def] = STATE(2361), + [sym_preproc_call] = STATE(2361), + [sym_preproc_if_in_field_declaration_list] = STATE(2361), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2361), + [sym_type_definition] = STATE(2361), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6384), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7245), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(834), + [sym_field_declaration] = STATE(2361), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2361), + [sym_operator_cast] = STATE(7705), + [sym_inline_method_definition] = STATE(2361), + [sym_constructor_specifiers] = STATE(1945), + [sym_operator_cast_definition] = STATE(2361), + [sym_operator_cast_declaration] = STATE(2361), + [sym_constructor_or_destructor_definition] = STATE(2361), + [sym_constructor_or_destructor_declaration] = STATE(2361), + [sym_friend_declaration] = STATE(2361), + [sym_access_specifier] = STATE(9889), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2361), + [sym_alias_declaration] = STATE(2361), + [sym_static_assert_declaration] = STATE(2361), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7705), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2361), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(834), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(4069), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4071), + [aux_sym_preproc_if_token1] = ACTIONS(4073), + [aux_sym_preproc_if_token2] = ACTIONS(4075), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4077), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4079), + [sym_preproc_directive] = ACTIONS(4081), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(3874), - [anon_sym_typedef] = ACTIONS(3876), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(4083), + [anon_sym_typedef] = ACTIONS(4085), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(51), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3265), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -176778,120 +167190,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(3878), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(4087), [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(3880), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(3882), - [anon_sym_static_assert] = ACTIONS(3884), + [anon_sym_friend] = ACTIONS(4089), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(4091), + [anon_sym_static_assert] = ACTIONS(4093), + [sym_semgrep_metavar] = ACTIONS(4095), }, - [810] = { - [sym_preproc_def] = STATE(2179), - [sym_preproc_function_def] = STATE(2179), - [sym_preproc_call] = STATE(2179), - [sym_preproc_if_in_field_declaration_list] = STATE(2179), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2179), - [sym_preproc_else_in_field_declaration_list] = STATE(10164), - [sym_preproc_elif_in_field_declaration_list] = STATE(10164), - [sym_type_definition] = STATE(2179), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6875), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7662), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(813), - [sym_field_declaration] = STATE(2179), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2179), - [sym_operator_cast] = STATE(8085), - [sym_inline_method_definition] = STATE(2179), - [sym_constructor_specifiers] = STATE(1942), - [sym_operator_cast_definition] = STATE(2179), - [sym_operator_cast_declaration] = STATE(2179), - [sym_constructor_or_destructor_definition] = STATE(2179), - [sym_constructor_or_destructor_declaration] = STATE(2179), - [sym_friend_declaration] = STATE(2179), - [sym_access_specifier] = STATE(10098), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2179), - [sym_alias_declaration] = STATE(2179), - [sym_static_assert_declaration] = STATE(2179), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8085), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(813), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1942), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(3862), - [aux_sym_preproc_if_token1] = ACTIONS(3864), - [aux_sym_preproc_if_token2] = ACTIONS(3888), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3868), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3870), - [aux_sym_preproc_else_token1] = ACTIONS(3694), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), - [sym_preproc_directive] = ACTIONS(3872), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [812] = { + [sym_preproc_def] = STATE(2347), + [sym_preproc_function_def] = STATE(2347), + [sym_preproc_call] = STATE(2347), + [sym_preproc_if_in_field_declaration_list] = STATE(2347), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2347), + [sym_type_definition] = STATE(2347), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6437), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7306), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(868), + [sym_field_declaration] = STATE(2347), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2347), + [sym_operator_cast] = STATE(7731), + [sym_inline_method_definition] = STATE(2347), + [sym_constructor_specifiers] = STATE(1938), + [sym_operator_cast_definition] = STATE(2347), + [sym_operator_cast_declaration] = STATE(2347), + [sym_constructor_or_destructor_definition] = STATE(2347), + [sym_constructor_or_destructor_declaration] = STATE(2347), + [sym_friend_declaration] = STATE(2347), + [sym_access_specifier] = STATE(10086), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2347), + [sym_alias_declaration] = STATE(2347), + [sym_static_assert_declaration] = STATE(2347), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7731), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2347), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(868), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1938), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(4041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4043), + [aux_sym_preproc_if_token1] = ACTIONS(4045), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4049), + [sym_preproc_directive] = ACTIONS(4051), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(3874), - [anon_sym_typedef] = ACTIONS(3876), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(4053), + [anon_sym_typedef] = ACTIONS(4055), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(4097), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3265), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -176911,120 +167322,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(3878), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(4059), [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(3880), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(3882), - [anon_sym_static_assert] = ACTIONS(3884), + [anon_sym_friend] = ACTIONS(4061), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(4063), + [anon_sym_static_assert] = ACTIONS(4065), + [sym_semgrep_metavar] = ACTIONS(4067), }, - [811] = { - [sym_preproc_def] = STATE(2179), - [sym_preproc_function_def] = STATE(2179), - [sym_preproc_call] = STATE(2179), - [sym_preproc_if_in_field_declaration_list] = STATE(2179), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2179), - [sym_preproc_else_in_field_declaration_list] = STATE(10186), - [sym_preproc_elif_in_field_declaration_list] = STATE(10186), - [sym_type_definition] = STATE(2179), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6875), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7662), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(814), - [sym_field_declaration] = STATE(2179), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2179), - [sym_operator_cast] = STATE(8085), - [sym_inline_method_definition] = STATE(2179), - [sym_constructor_specifiers] = STATE(1942), - [sym_operator_cast_definition] = STATE(2179), - [sym_operator_cast_declaration] = STATE(2179), - [sym_constructor_or_destructor_definition] = STATE(2179), - [sym_constructor_or_destructor_declaration] = STATE(2179), - [sym_friend_declaration] = STATE(2179), - [sym_access_specifier] = STATE(10098), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2179), - [sym_alias_declaration] = STATE(2179), - [sym_static_assert_declaration] = STATE(2179), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8085), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(814), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1942), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(3862), - [aux_sym_preproc_if_token1] = ACTIONS(3864), - [aux_sym_preproc_if_token2] = ACTIONS(3890), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3868), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3870), - [aux_sym_preproc_else_token1] = ACTIONS(3694), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), - [sym_preproc_directive] = ACTIONS(3872), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [813] = { + [sym_preproc_def] = STATE(2347), + [sym_preproc_function_def] = STATE(2347), + [sym_preproc_call] = STATE(2347), + [sym_preproc_if_in_field_declaration_list] = STATE(2347), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2347), + [sym_type_definition] = STATE(2347), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6437), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7306), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(815), + [sym_field_declaration] = STATE(2347), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2347), + [sym_operator_cast] = STATE(7731), + [sym_inline_method_definition] = STATE(2347), + [sym_constructor_specifiers] = STATE(1938), + [sym_operator_cast_definition] = STATE(2347), + [sym_operator_cast_declaration] = STATE(2347), + [sym_constructor_or_destructor_definition] = STATE(2347), + [sym_constructor_or_destructor_declaration] = STATE(2347), + [sym_friend_declaration] = STATE(2347), + [sym_access_specifier] = STATE(10086), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2347), + [sym_alias_declaration] = STATE(2347), + [sym_static_assert_declaration] = STATE(2347), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7731), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2347), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(815), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1938), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(4041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4043), + [aux_sym_preproc_if_token1] = ACTIONS(4045), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4049), + [sym_preproc_directive] = ACTIONS(4051), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(3874), - [anon_sym_typedef] = ACTIONS(3876), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(4053), + [anon_sym_typedef] = ACTIONS(4055), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(4099), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3265), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -177044,120 +167454,251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(3878), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(4059), [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(3880), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(3882), - [anon_sym_static_assert] = ACTIONS(3884), + [anon_sym_friend] = ACTIONS(4061), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(4063), + [anon_sym_static_assert] = ACTIONS(4065), + [sym_semgrep_metavar] = ACTIONS(4067), }, - [812] = { - [sym_preproc_def] = STATE(2179), - [sym_preproc_function_def] = STATE(2179), - [sym_preproc_call] = STATE(2179), - [sym_preproc_if_in_field_declaration_list] = STATE(2179), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2179), - [sym_preproc_else_in_field_declaration_list] = STATE(10263), - [sym_preproc_elif_in_field_declaration_list] = STATE(10263), - [sym_type_definition] = STATE(2179), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6875), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7662), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(884), - [sym_field_declaration] = STATE(2179), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2179), - [sym_operator_cast] = STATE(8085), - [sym_inline_method_definition] = STATE(2179), - [sym_constructor_specifiers] = STATE(1942), - [sym_operator_cast_definition] = STATE(2179), - [sym_operator_cast_declaration] = STATE(2179), - [sym_constructor_or_destructor_definition] = STATE(2179), - [sym_constructor_or_destructor_declaration] = STATE(2179), - [sym_friend_declaration] = STATE(2179), - [sym_access_specifier] = STATE(10098), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2179), - [sym_alias_declaration] = STATE(2179), - [sym_static_assert_declaration] = STATE(2179), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8085), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(884), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1942), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(3862), - [aux_sym_preproc_if_token1] = ACTIONS(3864), - [aux_sym_preproc_if_token2] = ACTIONS(3892), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3868), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3870), - [aux_sym_preproc_else_token1] = ACTIONS(3694), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), - [sym_preproc_directive] = ACTIONS(3872), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [814] = { + [ts_builtin_sym_end] = ACTIONS(3398), + [sym_identifier] = ACTIONS(3396), + [aux_sym_preproc_include_token1] = ACTIONS(3396), + [aux_sym_preproc_def_token1] = ACTIONS(3396), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3398), + [aux_sym_preproc_if_token1] = ACTIONS(3396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3396), + [sym_preproc_directive] = ACTIONS(3396), + [anon_sym_LPAREN2] = ACTIONS(3398), + [anon_sym_BANG] = ACTIONS(3398), + [anon_sym_TILDE] = ACTIONS(3398), + [anon_sym_DASH] = ACTIONS(3396), + [anon_sym_PLUS] = ACTIONS(3396), + [anon_sym_STAR] = ACTIONS(3398), + [anon_sym_AMP_AMP] = ACTIONS(3398), + [anon_sym_AMP] = ACTIONS(3396), + [anon_sym___extension__] = ACTIONS(3396), + [anon_sym_typedef] = ACTIONS(3396), + [anon_sym_extern] = ACTIONS(3396), + [anon_sym___attribute__] = ACTIONS(3396), + [anon_sym_COLON_COLON] = ACTIONS(3398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3398), + [anon_sym___declspec] = ACTIONS(3396), + [anon_sym___based] = ACTIONS(3396), + [anon_sym___cdecl] = ACTIONS(3396), + [anon_sym___clrcall] = ACTIONS(3396), + [anon_sym___stdcall] = ACTIONS(3396), + [anon_sym___fastcall] = ACTIONS(3396), + [anon_sym___thiscall] = ACTIONS(3396), + [anon_sym___vectorcall] = ACTIONS(3396), + [anon_sym_LBRACE] = ACTIONS(3398), + [anon_sym_signed] = ACTIONS(3396), + [anon_sym_unsigned] = ACTIONS(3396), + [anon_sym_long] = ACTIONS(3396), + [anon_sym_short] = ACTIONS(3396), + [anon_sym_LBRACK] = ACTIONS(3396), + [anon_sym_static] = ACTIONS(3396), + [anon_sym_register] = ACTIONS(3396), + [anon_sym_inline] = ACTIONS(3396), + [anon_sym___inline] = ACTIONS(3396), + [anon_sym___inline__] = ACTIONS(3396), + [anon_sym___forceinline] = ACTIONS(3396), + [anon_sym_thread_local] = ACTIONS(3396), + [anon_sym___thread] = ACTIONS(3396), + [anon_sym_const] = ACTIONS(3396), + [anon_sym_constexpr] = ACTIONS(3396), + [anon_sym_volatile] = ACTIONS(3396), + [anon_sym_restrict] = ACTIONS(3396), + [anon_sym___restrict__] = ACTIONS(3396), + [anon_sym__Atomic] = ACTIONS(3396), + [anon_sym__Noreturn] = ACTIONS(3396), + [anon_sym_noreturn] = ACTIONS(3396), + [anon_sym_mutable] = ACTIONS(3396), + [anon_sym_constinit] = ACTIONS(3396), + [anon_sym_consteval] = ACTIONS(3396), + [sym_primitive_type] = ACTIONS(3396), + [anon_sym_enum] = ACTIONS(3396), + [anon_sym_class] = ACTIONS(3396), + [anon_sym_struct] = ACTIONS(3396), + [anon_sym_union] = ACTIONS(3396), + [anon_sym_if] = ACTIONS(3396), + [anon_sym_switch] = ACTIONS(3396), + [anon_sym_case] = ACTIONS(3396), + [anon_sym_default] = ACTIONS(3396), + [anon_sym_while] = ACTIONS(3396), + [anon_sym_do] = ACTIONS(3396), + [anon_sym_for] = ACTIONS(3396), + [anon_sym_return] = ACTIONS(3396), + [anon_sym_break] = ACTIONS(3396), + [anon_sym_continue] = ACTIONS(3396), + [anon_sym_goto] = ACTIONS(3396), + [anon_sym_not] = ACTIONS(3396), + [anon_sym_compl] = ACTIONS(3396), + [anon_sym_DASH_DASH] = ACTIONS(3398), + [anon_sym_PLUS_PLUS] = ACTIONS(3398), + [anon_sym_sizeof] = ACTIONS(3396), + [anon_sym___alignof__] = ACTIONS(3396), + [anon_sym___alignof] = ACTIONS(3396), + [anon_sym__alignof] = ACTIONS(3396), + [anon_sym_alignof] = ACTIONS(3396), + [anon_sym__Alignof] = ACTIONS(3396), + [anon_sym_offsetof] = ACTIONS(3396), + [anon_sym__Generic] = ACTIONS(3396), + [anon_sym_asm] = ACTIONS(3396), + [anon_sym___asm__] = ACTIONS(3396), + [sym_number_literal] = ACTIONS(3398), + [anon_sym_L_SQUOTE] = ACTIONS(3398), + [anon_sym_u_SQUOTE] = ACTIONS(3398), + [anon_sym_U_SQUOTE] = ACTIONS(3398), + [anon_sym_u8_SQUOTE] = ACTIONS(3398), + [anon_sym_SQUOTE] = ACTIONS(3398), + [anon_sym_L_DQUOTE] = ACTIONS(3398), + [anon_sym_u_DQUOTE] = ACTIONS(3398), + [anon_sym_U_DQUOTE] = ACTIONS(3398), + [anon_sym_u8_DQUOTE] = ACTIONS(3398), + [anon_sym_DQUOTE] = ACTIONS(3398), + [sym_true] = ACTIONS(3396), + [sym_false] = ACTIONS(3396), + [anon_sym_NULL] = ACTIONS(3396), + [anon_sym_nullptr] = ACTIONS(3396), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3396), + [anon_sym_decltype] = ACTIONS(3396), + [anon_sym_virtual] = ACTIONS(3396), + [anon_sym_alignas] = ACTIONS(3396), + [anon_sym_explicit] = ACTIONS(3396), + [anon_sym_typename] = ACTIONS(3396), + [anon_sym_template] = ACTIONS(3396), + [anon_sym_operator] = ACTIONS(3396), + [anon_sym_try] = ACTIONS(3396), + [anon_sym_delete] = ACTIONS(3396), + [anon_sym_throw] = ACTIONS(3396), + [anon_sym_namespace] = ACTIONS(3396), + [anon_sym_using] = ACTIONS(3396), + [anon_sym_static_assert] = ACTIONS(3396), + [anon_sym_concept] = ACTIONS(3396), + [anon_sym_co_return] = ACTIONS(3396), + [anon_sym_co_yield] = ACTIONS(3396), + [anon_sym_R_DQUOTE] = ACTIONS(3398), + [anon_sym_LR_DQUOTE] = ACTIONS(3398), + [anon_sym_uR_DQUOTE] = ACTIONS(3398), + [anon_sym_UR_DQUOTE] = ACTIONS(3398), + [anon_sym_u8R_DQUOTE] = ACTIONS(3398), + [anon_sym_co_await] = ACTIONS(3396), + [anon_sym_new] = ACTIONS(3396), + [anon_sym_requires] = ACTIONS(3396), + [sym_this] = ACTIONS(3396), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3398), + [sym_semgrep_named_ellipsis] = ACTIONS(3398), + }, + [815] = { + [sym_preproc_def] = STATE(2347), + [sym_preproc_function_def] = STATE(2347), + [sym_preproc_call] = STATE(2347), + [sym_preproc_if_in_field_declaration_list] = STATE(2347), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2347), + [sym_type_definition] = STATE(2347), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6437), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7306), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(868), + [sym_field_declaration] = STATE(2347), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2347), + [sym_operator_cast] = STATE(7731), + [sym_inline_method_definition] = STATE(2347), + [sym_constructor_specifiers] = STATE(1938), + [sym_operator_cast_definition] = STATE(2347), + [sym_operator_cast_declaration] = STATE(2347), + [sym_constructor_or_destructor_definition] = STATE(2347), + [sym_constructor_or_destructor_declaration] = STATE(2347), + [sym_friend_declaration] = STATE(2347), + [sym_access_specifier] = STATE(10086), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2347), + [sym_alias_declaration] = STATE(2347), + [sym_static_assert_declaration] = STATE(2347), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7731), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2347), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(868), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1938), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(4041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4043), + [aux_sym_preproc_if_token1] = ACTIONS(4045), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4049), + [sym_preproc_directive] = ACTIONS(4051), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(3874), - [anon_sym_typedef] = ACTIONS(3876), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(4053), + [anon_sym_typedef] = ACTIONS(4055), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(4101), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3265), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -177177,120 +167718,251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(3878), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(4059), [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(3880), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(3882), - [anon_sym_static_assert] = ACTIONS(3884), + [anon_sym_friend] = ACTIONS(4061), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(4063), + [anon_sym_static_assert] = ACTIONS(4065), + [sym_semgrep_metavar] = ACTIONS(4067), }, - [813] = { - [sym_preproc_def] = STATE(2179), - [sym_preproc_function_def] = STATE(2179), - [sym_preproc_call] = STATE(2179), - [sym_preproc_if_in_field_declaration_list] = STATE(2179), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2179), - [sym_preproc_else_in_field_declaration_list] = STATE(10271), - [sym_preproc_elif_in_field_declaration_list] = STATE(10271), - [sym_type_definition] = STATE(2179), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6875), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7662), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(884), - [sym_field_declaration] = STATE(2179), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2179), - [sym_operator_cast] = STATE(8085), - [sym_inline_method_definition] = STATE(2179), - [sym_constructor_specifiers] = STATE(1942), - [sym_operator_cast_definition] = STATE(2179), - [sym_operator_cast_declaration] = STATE(2179), - [sym_constructor_or_destructor_definition] = STATE(2179), - [sym_constructor_or_destructor_declaration] = STATE(2179), - [sym_friend_declaration] = STATE(2179), - [sym_access_specifier] = STATE(10098), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2179), - [sym_alias_declaration] = STATE(2179), - [sym_static_assert_declaration] = STATE(2179), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8085), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(884), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1942), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(3862), - [aux_sym_preproc_if_token1] = ACTIONS(3864), - [aux_sym_preproc_if_token2] = ACTIONS(3894), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3868), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3870), - [aux_sym_preproc_else_token1] = ACTIONS(3694), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), - [sym_preproc_directive] = ACTIONS(3872), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(3874), - [anon_sym_typedef] = ACTIONS(3876), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), + [816] = { + [ts_builtin_sym_end] = ACTIONS(3394), + [sym_identifier] = ACTIONS(3392), + [aux_sym_preproc_include_token1] = ACTIONS(3392), + [aux_sym_preproc_def_token1] = ACTIONS(3392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3394), + [aux_sym_preproc_if_token1] = ACTIONS(3392), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3392), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3392), + [sym_preproc_directive] = ACTIONS(3392), + [anon_sym_LPAREN2] = ACTIONS(3394), + [anon_sym_BANG] = ACTIONS(3394), + [anon_sym_TILDE] = ACTIONS(3394), + [anon_sym_DASH] = ACTIONS(3392), + [anon_sym_PLUS] = ACTIONS(3392), + [anon_sym_STAR] = ACTIONS(3394), + [anon_sym_AMP_AMP] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3392), + [anon_sym___extension__] = ACTIONS(3392), + [anon_sym_typedef] = ACTIONS(3392), + [anon_sym_extern] = ACTIONS(3392), + [anon_sym___attribute__] = ACTIONS(3392), + [anon_sym_COLON_COLON] = ACTIONS(3394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3394), + [anon_sym___declspec] = ACTIONS(3392), + [anon_sym___based] = ACTIONS(3392), + [anon_sym___cdecl] = ACTIONS(3392), + [anon_sym___clrcall] = ACTIONS(3392), + [anon_sym___stdcall] = ACTIONS(3392), + [anon_sym___fastcall] = ACTIONS(3392), + [anon_sym___thiscall] = ACTIONS(3392), + [anon_sym___vectorcall] = ACTIONS(3392), + [anon_sym_LBRACE] = ACTIONS(3394), + [anon_sym_signed] = ACTIONS(3392), + [anon_sym_unsigned] = ACTIONS(3392), + [anon_sym_long] = ACTIONS(3392), + [anon_sym_short] = ACTIONS(3392), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_static] = ACTIONS(3392), + [anon_sym_register] = ACTIONS(3392), + [anon_sym_inline] = ACTIONS(3392), + [anon_sym___inline] = ACTIONS(3392), + [anon_sym___inline__] = ACTIONS(3392), + [anon_sym___forceinline] = ACTIONS(3392), + [anon_sym_thread_local] = ACTIONS(3392), + [anon_sym___thread] = ACTIONS(3392), + [anon_sym_const] = ACTIONS(3392), + [anon_sym_constexpr] = ACTIONS(3392), + [anon_sym_volatile] = ACTIONS(3392), + [anon_sym_restrict] = ACTIONS(3392), + [anon_sym___restrict__] = ACTIONS(3392), + [anon_sym__Atomic] = ACTIONS(3392), + [anon_sym__Noreturn] = ACTIONS(3392), + [anon_sym_noreturn] = ACTIONS(3392), + [anon_sym_mutable] = ACTIONS(3392), + [anon_sym_constinit] = ACTIONS(3392), + [anon_sym_consteval] = ACTIONS(3392), + [sym_primitive_type] = ACTIONS(3392), + [anon_sym_enum] = ACTIONS(3392), + [anon_sym_class] = ACTIONS(3392), + [anon_sym_struct] = ACTIONS(3392), + [anon_sym_union] = ACTIONS(3392), + [anon_sym_if] = ACTIONS(3392), + [anon_sym_switch] = ACTIONS(3392), + [anon_sym_case] = ACTIONS(3392), + [anon_sym_default] = ACTIONS(3392), + [anon_sym_while] = ACTIONS(3392), + [anon_sym_do] = ACTIONS(3392), + [anon_sym_for] = ACTIONS(3392), + [anon_sym_return] = ACTIONS(3392), + [anon_sym_break] = ACTIONS(3392), + [anon_sym_continue] = ACTIONS(3392), + [anon_sym_goto] = ACTIONS(3392), + [anon_sym_not] = ACTIONS(3392), + [anon_sym_compl] = ACTIONS(3392), + [anon_sym_DASH_DASH] = ACTIONS(3394), + [anon_sym_PLUS_PLUS] = ACTIONS(3394), + [anon_sym_sizeof] = ACTIONS(3392), + [anon_sym___alignof__] = ACTIONS(3392), + [anon_sym___alignof] = ACTIONS(3392), + [anon_sym__alignof] = ACTIONS(3392), + [anon_sym_alignof] = ACTIONS(3392), + [anon_sym__Alignof] = ACTIONS(3392), + [anon_sym_offsetof] = ACTIONS(3392), + [anon_sym__Generic] = ACTIONS(3392), + [anon_sym_asm] = ACTIONS(3392), + [anon_sym___asm__] = ACTIONS(3392), + [sym_number_literal] = ACTIONS(3394), + [anon_sym_L_SQUOTE] = ACTIONS(3394), + [anon_sym_u_SQUOTE] = ACTIONS(3394), + [anon_sym_U_SQUOTE] = ACTIONS(3394), + [anon_sym_u8_SQUOTE] = ACTIONS(3394), + [anon_sym_SQUOTE] = ACTIONS(3394), + [anon_sym_L_DQUOTE] = ACTIONS(3394), + [anon_sym_u_DQUOTE] = ACTIONS(3394), + [anon_sym_U_DQUOTE] = ACTIONS(3394), + [anon_sym_u8_DQUOTE] = ACTIONS(3394), + [anon_sym_DQUOTE] = ACTIONS(3394), + [sym_true] = ACTIONS(3392), + [sym_false] = ACTIONS(3392), + [anon_sym_NULL] = ACTIONS(3392), + [anon_sym_nullptr] = ACTIONS(3392), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3392), + [anon_sym_decltype] = ACTIONS(3392), + [anon_sym_virtual] = ACTIONS(3392), + [anon_sym_alignas] = ACTIONS(3392), + [anon_sym_explicit] = ACTIONS(3392), + [anon_sym_typename] = ACTIONS(3392), + [anon_sym_template] = ACTIONS(3392), + [anon_sym_operator] = ACTIONS(3392), + [anon_sym_try] = ACTIONS(3392), + [anon_sym_delete] = ACTIONS(3392), + [anon_sym_throw] = ACTIONS(3392), + [anon_sym_namespace] = ACTIONS(3392), + [anon_sym_using] = ACTIONS(3392), + [anon_sym_static_assert] = ACTIONS(3392), + [anon_sym_concept] = ACTIONS(3392), + [anon_sym_co_return] = ACTIONS(3392), + [anon_sym_co_yield] = ACTIONS(3392), + [anon_sym_R_DQUOTE] = ACTIONS(3394), + [anon_sym_LR_DQUOTE] = ACTIONS(3394), + [anon_sym_uR_DQUOTE] = ACTIONS(3394), + [anon_sym_UR_DQUOTE] = ACTIONS(3394), + [anon_sym_u8R_DQUOTE] = ACTIONS(3394), + [anon_sym_co_await] = ACTIONS(3392), + [anon_sym_new] = ACTIONS(3392), + [anon_sym_requires] = ACTIONS(3392), + [sym_this] = ACTIONS(3392), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3394), + [sym_semgrep_named_ellipsis] = ACTIONS(3394), + }, + [817] = { + [sym_preproc_def] = STATE(2347), + [sym_preproc_function_def] = STATE(2347), + [sym_preproc_call] = STATE(2347), + [sym_preproc_if_in_field_declaration_list] = STATE(2347), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2347), + [sym_type_definition] = STATE(2347), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6437), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7306), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(822), + [sym_field_declaration] = STATE(2347), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2347), + [sym_operator_cast] = STATE(7731), + [sym_inline_method_definition] = STATE(2347), + [sym_constructor_specifiers] = STATE(1938), + [sym_operator_cast_definition] = STATE(2347), + [sym_operator_cast_declaration] = STATE(2347), + [sym_constructor_or_destructor_definition] = STATE(2347), + [sym_constructor_or_destructor_declaration] = STATE(2347), + [sym_friend_declaration] = STATE(2347), + [sym_access_specifier] = STATE(10086), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2347), + [sym_alias_declaration] = STATE(2347), + [sym_static_assert_declaration] = STATE(2347), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7731), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2347), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(822), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1938), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(4041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4043), + [aux_sym_preproc_if_token1] = ACTIONS(4045), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4049), + [sym_preproc_directive] = ACTIONS(4051), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(4053), + [anon_sym_typedef] = ACTIONS(4055), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(4103), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3265), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -177310,120 +167982,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(3878), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(4059), [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(3880), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(3882), - [anon_sym_static_assert] = ACTIONS(3884), + [anon_sym_friend] = ACTIONS(4061), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(4063), + [anon_sym_static_assert] = ACTIONS(4065), + [sym_semgrep_metavar] = ACTIONS(4067), }, - [814] = { - [sym_preproc_def] = STATE(2179), - [sym_preproc_function_def] = STATE(2179), - [sym_preproc_call] = STATE(2179), - [sym_preproc_if_in_field_declaration_list] = STATE(2179), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2179), - [sym_preproc_else_in_field_declaration_list] = STATE(10531), - [sym_preproc_elif_in_field_declaration_list] = STATE(10531), - [sym_type_definition] = STATE(2179), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6875), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7662), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(884), - [sym_field_declaration] = STATE(2179), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2179), - [sym_operator_cast] = STATE(8085), - [sym_inline_method_definition] = STATE(2179), - [sym_constructor_specifiers] = STATE(1942), - [sym_operator_cast_definition] = STATE(2179), - [sym_operator_cast_declaration] = STATE(2179), - [sym_constructor_or_destructor_definition] = STATE(2179), - [sym_constructor_or_destructor_declaration] = STATE(2179), - [sym_friend_declaration] = STATE(2179), - [sym_access_specifier] = STATE(10098), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2179), - [sym_alias_declaration] = STATE(2179), - [sym_static_assert_declaration] = STATE(2179), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8085), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(884), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1942), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(3862), - [aux_sym_preproc_if_token1] = ACTIONS(3864), - [aux_sym_preproc_if_token2] = ACTIONS(3896), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3868), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3870), - [aux_sym_preproc_else_token1] = ACTIONS(3694), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), - [sym_preproc_directive] = ACTIONS(3872), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [818] = { + [sym_preproc_def] = STATE(2347), + [sym_preproc_function_def] = STATE(2347), + [sym_preproc_call] = STATE(2347), + [sym_preproc_if_in_field_declaration_list] = STATE(2347), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2347), + [sym_type_definition] = STATE(2347), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6437), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7306), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(846), + [sym_field_declaration] = STATE(2347), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2347), + [sym_operator_cast] = STATE(7731), + [sym_inline_method_definition] = STATE(2347), + [sym_constructor_specifiers] = STATE(1938), + [sym_operator_cast_definition] = STATE(2347), + [sym_operator_cast_declaration] = STATE(2347), + [sym_constructor_or_destructor_definition] = STATE(2347), + [sym_constructor_or_destructor_declaration] = STATE(2347), + [sym_friend_declaration] = STATE(2347), + [sym_access_specifier] = STATE(10086), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2347), + [sym_alias_declaration] = STATE(2347), + [sym_static_assert_declaration] = STATE(2347), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7731), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2347), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(846), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1938), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(4041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4043), + [aux_sym_preproc_if_token1] = ACTIONS(4045), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4049), + [sym_preproc_directive] = ACTIONS(4051), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(3874), - [anon_sym_typedef] = ACTIONS(3876), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(4053), + [anon_sym_typedef] = ACTIONS(4055), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(4105), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3265), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -177443,120 +168114,515 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(3878), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(4059), [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(3880), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(3882), - [anon_sym_static_assert] = ACTIONS(3884), + [anon_sym_friend] = ACTIONS(4061), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(4063), + [anon_sym_static_assert] = ACTIONS(4065), + [sym_semgrep_metavar] = ACTIONS(4067), }, - [815] = { - [sym_preproc_def] = STATE(2179), - [sym_preproc_function_def] = STATE(2179), - [sym_preproc_call] = STATE(2179), - [sym_preproc_if_in_field_declaration_list] = STATE(2179), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2179), - [sym_preproc_else_in_field_declaration_list] = STATE(9867), - [sym_preproc_elif_in_field_declaration_list] = STATE(9867), - [sym_type_definition] = STATE(2179), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6875), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7662), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(818), - [sym_field_declaration] = STATE(2179), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2179), - [sym_operator_cast] = STATE(8085), - [sym_inline_method_definition] = STATE(2179), - [sym_constructor_specifiers] = STATE(1942), - [sym_operator_cast_definition] = STATE(2179), - [sym_operator_cast_declaration] = STATE(2179), - [sym_constructor_or_destructor_definition] = STATE(2179), - [sym_constructor_or_destructor_declaration] = STATE(2179), - [sym_friend_declaration] = STATE(2179), - [sym_access_specifier] = STATE(10098), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2179), - [sym_alias_declaration] = STATE(2179), - [sym_static_assert_declaration] = STATE(2179), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8085), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(818), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1942), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(3862), - [aux_sym_preproc_if_token1] = ACTIONS(3864), - [aux_sym_preproc_if_token2] = ACTIONS(3898), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3868), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3870), - [aux_sym_preproc_else_token1] = ACTIONS(3694), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), - [sym_preproc_directive] = ACTIONS(3872), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [819] = { + [ts_builtin_sym_end] = ACTIONS(4107), + [sym_identifier] = ACTIONS(4109), + [aux_sym_preproc_include_token1] = ACTIONS(4109), + [aux_sym_preproc_def_token1] = ACTIONS(4109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4107), + [aux_sym_preproc_if_token1] = ACTIONS(4109), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4109), + [sym_preproc_directive] = ACTIONS(4109), + [anon_sym_LPAREN2] = ACTIONS(4107), + [anon_sym_BANG] = ACTIONS(4107), + [anon_sym_TILDE] = ACTIONS(4107), + [anon_sym_DASH] = ACTIONS(4109), + [anon_sym_PLUS] = ACTIONS(4109), + [anon_sym_STAR] = ACTIONS(4107), + [anon_sym_AMP_AMP] = ACTIONS(4107), + [anon_sym_AMP] = ACTIONS(4109), + [anon_sym___extension__] = ACTIONS(4109), + [anon_sym_typedef] = ACTIONS(4109), + [anon_sym_extern] = ACTIONS(4109), + [anon_sym___attribute__] = ACTIONS(4109), + [anon_sym_COLON_COLON] = ACTIONS(4107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4107), + [anon_sym___declspec] = ACTIONS(4109), + [anon_sym___based] = ACTIONS(4109), + [anon_sym___cdecl] = ACTIONS(4109), + [anon_sym___clrcall] = ACTIONS(4109), + [anon_sym___stdcall] = ACTIONS(4109), + [anon_sym___fastcall] = ACTIONS(4109), + [anon_sym___thiscall] = ACTIONS(4109), + [anon_sym___vectorcall] = ACTIONS(4109), + [anon_sym_LBRACE] = ACTIONS(4107), + [anon_sym_signed] = ACTIONS(4109), + [anon_sym_unsigned] = ACTIONS(4109), + [anon_sym_long] = ACTIONS(4109), + [anon_sym_short] = ACTIONS(4109), + [anon_sym_LBRACK] = ACTIONS(4109), + [anon_sym_static] = ACTIONS(4109), + [anon_sym_register] = ACTIONS(4109), + [anon_sym_inline] = ACTIONS(4109), + [anon_sym___inline] = ACTIONS(4109), + [anon_sym___inline__] = ACTIONS(4109), + [anon_sym___forceinline] = ACTIONS(4109), + [anon_sym_thread_local] = ACTIONS(4109), + [anon_sym___thread] = ACTIONS(4109), + [anon_sym_const] = ACTIONS(4109), + [anon_sym_constexpr] = ACTIONS(4109), + [anon_sym_volatile] = ACTIONS(4109), + [anon_sym_restrict] = ACTIONS(4109), + [anon_sym___restrict__] = ACTIONS(4109), + [anon_sym__Atomic] = ACTIONS(4109), + [anon_sym__Noreturn] = ACTIONS(4109), + [anon_sym_noreturn] = ACTIONS(4109), + [anon_sym_mutable] = ACTIONS(4109), + [anon_sym_constinit] = ACTIONS(4109), + [anon_sym_consteval] = ACTIONS(4109), + [sym_primitive_type] = ACTIONS(4109), + [anon_sym_enum] = ACTIONS(4109), + [anon_sym_class] = ACTIONS(4109), + [anon_sym_struct] = ACTIONS(4109), + [anon_sym_union] = ACTIONS(4109), + [anon_sym_if] = ACTIONS(4109), + [anon_sym_switch] = ACTIONS(4109), + [anon_sym_case] = ACTIONS(4109), + [anon_sym_default] = ACTIONS(4109), + [anon_sym_while] = ACTIONS(4109), + [anon_sym_do] = ACTIONS(4109), + [anon_sym_for] = ACTIONS(4109), + [anon_sym_return] = ACTIONS(4109), + [anon_sym_break] = ACTIONS(4109), + [anon_sym_continue] = ACTIONS(4109), + [anon_sym_goto] = ACTIONS(4109), + [anon_sym_not] = ACTIONS(4109), + [anon_sym_compl] = ACTIONS(4109), + [anon_sym_DASH_DASH] = ACTIONS(4107), + [anon_sym_PLUS_PLUS] = ACTIONS(4107), + [anon_sym_sizeof] = ACTIONS(4109), + [anon_sym___alignof__] = ACTIONS(4109), + [anon_sym___alignof] = ACTIONS(4109), + [anon_sym__alignof] = ACTIONS(4109), + [anon_sym_alignof] = ACTIONS(4109), + [anon_sym__Alignof] = ACTIONS(4109), + [anon_sym_offsetof] = ACTIONS(4109), + [anon_sym__Generic] = ACTIONS(4109), + [anon_sym_asm] = ACTIONS(4109), + [anon_sym___asm__] = ACTIONS(4109), + [sym_number_literal] = ACTIONS(4107), + [anon_sym_L_SQUOTE] = ACTIONS(4107), + [anon_sym_u_SQUOTE] = ACTIONS(4107), + [anon_sym_U_SQUOTE] = ACTIONS(4107), + [anon_sym_u8_SQUOTE] = ACTIONS(4107), + [anon_sym_SQUOTE] = ACTIONS(4107), + [anon_sym_L_DQUOTE] = ACTIONS(4107), + [anon_sym_u_DQUOTE] = ACTIONS(4107), + [anon_sym_U_DQUOTE] = ACTIONS(4107), + [anon_sym_u8_DQUOTE] = ACTIONS(4107), + [anon_sym_DQUOTE] = ACTIONS(4107), + [sym_true] = ACTIONS(4109), + [sym_false] = ACTIONS(4109), + [anon_sym_NULL] = ACTIONS(4109), + [anon_sym_nullptr] = ACTIONS(4109), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4109), + [anon_sym_decltype] = ACTIONS(4109), + [anon_sym_virtual] = ACTIONS(4109), + [anon_sym_alignas] = ACTIONS(4109), + [anon_sym_explicit] = ACTIONS(4109), + [anon_sym_typename] = ACTIONS(4109), + [anon_sym_template] = ACTIONS(4109), + [anon_sym_operator] = ACTIONS(4109), + [anon_sym_try] = ACTIONS(4109), + [anon_sym_delete] = ACTIONS(4109), + [anon_sym_throw] = ACTIONS(4109), + [anon_sym_namespace] = ACTIONS(4109), + [anon_sym_using] = ACTIONS(4109), + [anon_sym_static_assert] = ACTIONS(4109), + [anon_sym_concept] = ACTIONS(4109), + [anon_sym_co_return] = ACTIONS(4109), + [anon_sym_co_yield] = ACTIONS(4109), + [anon_sym_R_DQUOTE] = ACTIONS(4107), + [anon_sym_LR_DQUOTE] = ACTIONS(4107), + [anon_sym_uR_DQUOTE] = ACTIONS(4107), + [anon_sym_UR_DQUOTE] = ACTIONS(4107), + [anon_sym_u8R_DQUOTE] = ACTIONS(4107), + [anon_sym_co_await] = ACTIONS(4109), + [anon_sym_new] = ACTIONS(4109), + [anon_sym_requires] = ACTIONS(4109), + [sym_this] = ACTIONS(4109), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4107), + [sym_semgrep_named_ellipsis] = ACTIONS(4107), + }, + [820] = { + [ts_builtin_sym_end] = ACTIONS(3605), + [sym_identifier] = ACTIONS(3603), + [aux_sym_preproc_include_token1] = ACTIONS(3603), + [aux_sym_preproc_def_token1] = ACTIONS(3603), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3605), + [aux_sym_preproc_if_token1] = ACTIONS(3603), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3603), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3603), + [sym_preproc_directive] = ACTIONS(3603), + [anon_sym_LPAREN2] = ACTIONS(3605), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(3605), + [anon_sym_DASH] = ACTIONS(3603), + [anon_sym_PLUS] = ACTIONS(3603), + [anon_sym_STAR] = ACTIONS(3605), + [anon_sym_AMP_AMP] = ACTIONS(3605), + [anon_sym_AMP] = ACTIONS(3603), + [anon_sym___extension__] = ACTIONS(3603), + [anon_sym_typedef] = ACTIONS(3603), + [anon_sym_extern] = ACTIONS(3603), + [anon_sym___attribute__] = ACTIONS(3603), + [anon_sym_COLON_COLON] = ACTIONS(3605), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3605), + [anon_sym___declspec] = ACTIONS(3603), + [anon_sym___based] = ACTIONS(3603), + [anon_sym___cdecl] = ACTIONS(3603), + [anon_sym___clrcall] = ACTIONS(3603), + [anon_sym___stdcall] = ACTIONS(3603), + [anon_sym___fastcall] = ACTIONS(3603), + [anon_sym___thiscall] = ACTIONS(3603), + [anon_sym___vectorcall] = ACTIONS(3603), + [anon_sym_LBRACE] = ACTIONS(3605), + [anon_sym_signed] = ACTIONS(3603), + [anon_sym_unsigned] = ACTIONS(3603), + [anon_sym_long] = ACTIONS(3603), + [anon_sym_short] = ACTIONS(3603), + [anon_sym_LBRACK] = ACTIONS(3603), + [anon_sym_static] = ACTIONS(3603), + [anon_sym_register] = ACTIONS(3603), + [anon_sym_inline] = ACTIONS(3603), + [anon_sym___inline] = ACTIONS(3603), + [anon_sym___inline__] = ACTIONS(3603), + [anon_sym___forceinline] = ACTIONS(3603), + [anon_sym_thread_local] = ACTIONS(3603), + [anon_sym___thread] = ACTIONS(3603), + [anon_sym_const] = ACTIONS(3603), + [anon_sym_constexpr] = ACTIONS(3603), + [anon_sym_volatile] = ACTIONS(3603), + [anon_sym_restrict] = ACTIONS(3603), + [anon_sym___restrict__] = ACTIONS(3603), + [anon_sym__Atomic] = ACTIONS(3603), + [anon_sym__Noreturn] = ACTIONS(3603), + [anon_sym_noreturn] = ACTIONS(3603), + [anon_sym_mutable] = ACTIONS(3603), + [anon_sym_constinit] = ACTIONS(3603), + [anon_sym_consteval] = ACTIONS(3603), + [sym_primitive_type] = ACTIONS(3603), + [anon_sym_enum] = ACTIONS(3603), + [anon_sym_class] = ACTIONS(3603), + [anon_sym_struct] = ACTIONS(3603), + [anon_sym_union] = ACTIONS(3603), + [anon_sym_if] = ACTIONS(3603), + [anon_sym_switch] = ACTIONS(3603), + [anon_sym_case] = ACTIONS(3603), + [anon_sym_default] = ACTIONS(3603), + [anon_sym_while] = ACTIONS(3603), + [anon_sym_do] = ACTIONS(3603), + [anon_sym_for] = ACTIONS(3603), + [anon_sym_return] = ACTIONS(3603), + [anon_sym_break] = ACTIONS(3603), + [anon_sym_continue] = ACTIONS(3603), + [anon_sym_goto] = ACTIONS(3603), + [anon_sym_not] = ACTIONS(3603), + [anon_sym_compl] = ACTIONS(3603), + [anon_sym_DASH_DASH] = ACTIONS(3605), + [anon_sym_PLUS_PLUS] = ACTIONS(3605), + [anon_sym_sizeof] = ACTIONS(3603), + [anon_sym___alignof__] = ACTIONS(3603), + [anon_sym___alignof] = ACTIONS(3603), + [anon_sym__alignof] = ACTIONS(3603), + [anon_sym_alignof] = ACTIONS(3603), + [anon_sym__Alignof] = ACTIONS(3603), + [anon_sym_offsetof] = ACTIONS(3603), + [anon_sym__Generic] = ACTIONS(3603), + [anon_sym_asm] = ACTIONS(3603), + [anon_sym___asm__] = ACTIONS(3603), + [sym_number_literal] = ACTIONS(3605), + [anon_sym_L_SQUOTE] = ACTIONS(3605), + [anon_sym_u_SQUOTE] = ACTIONS(3605), + [anon_sym_U_SQUOTE] = ACTIONS(3605), + [anon_sym_u8_SQUOTE] = ACTIONS(3605), + [anon_sym_SQUOTE] = ACTIONS(3605), + [anon_sym_L_DQUOTE] = ACTIONS(3605), + [anon_sym_u_DQUOTE] = ACTIONS(3605), + [anon_sym_U_DQUOTE] = ACTIONS(3605), + [anon_sym_u8_DQUOTE] = ACTIONS(3605), + [anon_sym_DQUOTE] = ACTIONS(3605), + [sym_true] = ACTIONS(3603), + [sym_false] = ACTIONS(3603), + [anon_sym_NULL] = ACTIONS(3603), + [anon_sym_nullptr] = ACTIONS(3603), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3603), + [anon_sym_decltype] = ACTIONS(3603), + [anon_sym_virtual] = ACTIONS(3603), + [anon_sym_alignas] = ACTIONS(3603), + [anon_sym_explicit] = ACTIONS(3603), + [anon_sym_typename] = ACTIONS(3603), + [anon_sym_template] = ACTIONS(3603), + [anon_sym_operator] = ACTIONS(3603), + [anon_sym_try] = ACTIONS(3603), + [anon_sym_delete] = ACTIONS(3603), + [anon_sym_throw] = ACTIONS(3603), + [anon_sym_namespace] = ACTIONS(3603), + [anon_sym_using] = ACTIONS(3603), + [anon_sym_static_assert] = ACTIONS(3603), + [anon_sym_concept] = ACTIONS(3603), + [anon_sym_co_return] = ACTIONS(3603), + [anon_sym_co_yield] = ACTIONS(3603), + [anon_sym_R_DQUOTE] = ACTIONS(3605), + [anon_sym_LR_DQUOTE] = ACTIONS(3605), + [anon_sym_uR_DQUOTE] = ACTIONS(3605), + [anon_sym_UR_DQUOTE] = ACTIONS(3605), + [anon_sym_u8R_DQUOTE] = ACTIONS(3605), + [anon_sym_co_await] = ACTIONS(3603), + [anon_sym_new] = ACTIONS(3603), + [anon_sym_requires] = ACTIONS(3603), + [sym_this] = ACTIONS(3603), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3605), + [sym_semgrep_named_ellipsis] = ACTIONS(3605), + }, + [821] = { + [ts_builtin_sym_end] = ACTIONS(3611), + [sym_identifier] = ACTIONS(3609), + [aux_sym_preproc_include_token1] = ACTIONS(3609), + [aux_sym_preproc_def_token1] = ACTIONS(3609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3611), + [aux_sym_preproc_if_token1] = ACTIONS(3609), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3609), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3609), + [sym_preproc_directive] = ACTIONS(3609), + [anon_sym_LPAREN2] = ACTIONS(3611), + [anon_sym_BANG] = ACTIONS(3611), + [anon_sym_TILDE] = ACTIONS(3611), + [anon_sym_DASH] = ACTIONS(3609), + [anon_sym_PLUS] = ACTIONS(3609), + [anon_sym_STAR] = ACTIONS(3611), + [anon_sym_AMP_AMP] = ACTIONS(3611), + [anon_sym_AMP] = ACTIONS(3609), + [anon_sym___extension__] = ACTIONS(3609), + [anon_sym_typedef] = ACTIONS(3609), + [anon_sym_extern] = ACTIONS(3609), + [anon_sym___attribute__] = ACTIONS(3609), + [anon_sym_COLON_COLON] = ACTIONS(3611), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3611), + [anon_sym___declspec] = ACTIONS(3609), + [anon_sym___based] = ACTIONS(3609), + [anon_sym___cdecl] = ACTIONS(3609), + [anon_sym___clrcall] = ACTIONS(3609), + [anon_sym___stdcall] = ACTIONS(3609), + [anon_sym___fastcall] = ACTIONS(3609), + [anon_sym___thiscall] = ACTIONS(3609), + [anon_sym___vectorcall] = ACTIONS(3609), + [anon_sym_LBRACE] = ACTIONS(3611), + [anon_sym_signed] = ACTIONS(3609), + [anon_sym_unsigned] = ACTIONS(3609), + [anon_sym_long] = ACTIONS(3609), + [anon_sym_short] = ACTIONS(3609), + [anon_sym_LBRACK] = ACTIONS(3609), + [anon_sym_static] = ACTIONS(3609), + [anon_sym_register] = ACTIONS(3609), + [anon_sym_inline] = ACTIONS(3609), + [anon_sym___inline] = ACTIONS(3609), + [anon_sym___inline__] = ACTIONS(3609), + [anon_sym___forceinline] = ACTIONS(3609), + [anon_sym_thread_local] = ACTIONS(3609), + [anon_sym___thread] = ACTIONS(3609), + [anon_sym_const] = ACTIONS(3609), + [anon_sym_constexpr] = ACTIONS(3609), + [anon_sym_volatile] = ACTIONS(3609), + [anon_sym_restrict] = ACTIONS(3609), + [anon_sym___restrict__] = ACTIONS(3609), + [anon_sym__Atomic] = ACTIONS(3609), + [anon_sym__Noreturn] = ACTIONS(3609), + [anon_sym_noreturn] = ACTIONS(3609), + [anon_sym_mutable] = ACTIONS(3609), + [anon_sym_constinit] = ACTIONS(3609), + [anon_sym_consteval] = ACTIONS(3609), + [sym_primitive_type] = ACTIONS(3609), + [anon_sym_enum] = ACTIONS(3609), + [anon_sym_class] = ACTIONS(3609), + [anon_sym_struct] = ACTIONS(3609), + [anon_sym_union] = ACTIONS(3609), + [anon_sym_if] = ACTIONS(3609), + [anon_sym_switch] = ACTIONS(3609), + [anon_sym_case] = ACTIONS(3609), + [anon_sym_default] = ACTIONS(3609), + [anon_sym_while] = ACTIONS(3609), + [anon_sym_do] = ACTIONS(3609), + [anon_sym_for] = ACTIONS(3609), + [anon_sym_return] = ACTIONS(3609), + [anon_sym_break] = ACTIONS(3609), + [anon_sym_continue] = ACTIONS(3609), + [anon_sym_goto] = ACTIONS(3609), + [anon_sym_not] = ACTIONS(3609), + [anon_sym_compl] = ACTIONS(3609), + [anon_sym_DASH_DASH] = ACTIONS(3611), + [anon_sym_PLUS_PLUS] = ACTIONS(3611), + [anon_sym_sizeof] = ACTIONS(3609), + [anon_sym___alignof__] = ACTIONS(3609), + [anon_sym___alignof] = ACTIONS(3609), + [anon_sym__alignof] = ACTIONS(3609), + [anon_sym_alignof] = ACTIONS(3609), + [anon_sym__Alignof] = ACTIONS(3609), + [anon_sym_offsetof] = ACTIONS(3609), + [anon_sym__Generic] = ACTIONS(3609), + [anon_sym_asm] = ACTIONS(3609), + [anon_sym___asm__] = ACTIONS(3609), + [sym_number_literal] = ACTIONS(3611), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3611), + [anon_sym_u_DQUOTE] = ACTIONS(3611), + [anon_sym_U_DQUOTE] = ACTIONS(3611), + [anon_sym_u8_DQUOTE] = ACTIONS(3611), + [anon_sym_DQUOTE] = ACTIONS(3611), + [sym_true] = ACTIONS(3609), + [sym_false] = ACTIONS(3609), + [anon_sym_NULL] = ACTIONS(3609), + [anon_sym_nullptr] = ACTIONS(3609), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3609), + [anon_sym_decltype] = ACTIONS(3609), + [anon_sym_virtual] = ACTIONS(3609), + [anon_sym_alignas] = ACTIONS(3609), + [anon_sym_explicit] = ACTIONS(3609), + [anon_sym_typename] = ACTIONS(3609), + [anon_sym_template] = ACTIONS(3609), + [anon_sym_operator] = ACTIONS(3609), + [anon_sym_try] = ACTIONS(3609), + [anon_sym_delete] = ACTIONS(3609), + [anon_sym_throw] = ACTIONS(3609), + [anon_sym_namespace] = ACTIONS(3609), + [anon_sym_using] = ACTIONS(3609), + [anon_sym_static_assert] = ACTIONS(3609), + [anon_sym_concept] = ACTIONS(3609), + [anon_sym_co_return] = ACTIONS(3609), + [anon_sym_co_yield] = ACTIONS(3609), + [anon_sym_R_DQUOTE] = ACTIONS(3611), + [anon_sym_LR_DQUOTE] = ACTIONS(3611), + [anon_sym_uR_DQUOTE] = ACTIONS(3611), + [anon_sym_UR_DQUOTE] = ACTIONS(3611), + [anon_sym_u8R_DQUOTE] = ACTIONS(3611), + [anon_sym_co_await] = ACTIONS(3609), + [anon_sym_new] = ACTIONS(3609), + [anon_sym_requires] = ACTIONS(3609), + [sym_this] = ACTIONS(3609), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3611), + [sym_semgrep_named_ellipsis] = ACTIONS(3611), + }, + [822] = { + [sym_preproc_def] = STATE(2347), + [sym_preproc_function_def] = STATE(2347), + [sym_preproc_call] = STATE(2347), + [sym_preproc_if_in_field_declaration_list] = STATE(2347), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2347), + [sym_type_definition] = STATE(2347), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6437), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7306), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(868), + [sym_field_declaration] = STATE(2347), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2347), + [sym_operator_cast] = STATE(7731), + [sym_inline_method_definition] = STATE(2347), + [sym_constructor_specifiers] = STATE(1938), + [sym_operator_cast_definition] = STATE(2347), + [sym_operator_cast_declaration] = STATE(2347), + [sym_constructor_or_destructor_definition] = STATE(2347), + [sym_constructor_or_destructor_declaration] = STATE(2347), + [sym_friend_declaration] = STATE(2347), + [sym_access_specifier] = STATE(10086), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2347), + [sym_alias_declaration] = STATE(2347), + [sym_static_assert_declaration] = STATE(2347), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7731), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2347), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(868), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1938), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(4041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4043), + [aux_sym_preproc_if_token1] = ACTIONS(4045), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4049), + [sym_preproc_directive] = ACTIONS(4051), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(3874), - [anon_sym_typedef] = ACTIONS(3876), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(4053), + [anon_sym_typedef] = ACTIONS(4055), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(4111), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3265), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -177576,120 +168642,515 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(3878), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(4059), [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(3880), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(3882), - [anon_sym_static_assert] = ACTIONS(3884), + [anon_sym_friend] = ACTIONS(4061), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(4063), + [anon_sym_static_assert] = ACTIONS(4065), + [sym_semgrep_metavar] = ACTIONS(4067), }, - [816] = { - [sym_preproc_def] = STATE(2179), - [sym_preproc_function_def] = STATE(2179), - [sym_preproc_call] = STATE(2179), - [sym_preproc_if_in_field_declaration_list] = STATE(2179), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2179), - [sym_preproc_else_in_field_declaration_list] = STATE(9947), - [sym_preproc_elif_in_field_declaration_list] = STATE(9947), - [sym_type_definition] = STATE(2179), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6875), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7662), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(819), - [sym_field_declaration] = STATE(2179), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2179), - [sym_operator_cast] = STATE(8085), - [sym_inline_method_definition] = STATE(2179), - [sym_constructor_specifiers] = STATE(1942), - [sym_operator_cast_definition] = STATE(2179), - [sym_operator_cast_declaration] = STATE(2179), - [sym_constructor_or_destructor_definition] = STATE(2179), - [sym_constructor_or_destructor_declaration] = STATE(2179), - [sym_friend_declaration] = STATE(2179), - [sym_access_specifier] = STATE(10098), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2179), - [sym_alias_declaration] = STATE(2179), - [sym_static_assert_declaration] = STATE(2179), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8085), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(819), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1942), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(3862), - [aux_sym_preproc_if_token1] = ACTIONS(3864), - [aux_sym_preproc_if_token2] = ACTIONS(3900), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3868), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3870), - [aux_sym_preproc_else_token1] = ACTIONS(3694), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), - [sym_preproc_directive] = ACTIONS(3872), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [823] = { + [ts_builtin_sym_end] = ACTIONS(3615), + [sym_identifier] = ACTIONS(3613), + [aux_sym_preproc_include_token1] = ACTIONS(3613), + [aux_sym_preproc_def_token1] = ACTIONS(3613), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3615), + [aux_sym_preproc_if_token1] = ACTIONS(3613), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3613), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3613), + [sym_preproc_directive] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3615), + [anon_sym_TILDE] = ACTIONS(3615), + [anon_sym_DASH] = ACTIONS(3613), + [anon_sym_PLUS] = ACTIONS(3613), + [anon_sym_STAR] = ACTIONS(3615), + [anon_sym_AMP_AMP] = ACTIONS(3615), + [anon_sym_AMP] = ACTIONS(3613), + [anon_sym___extension__] = ACTIONS(3613), + [anon_sym_typedef] = ACTIONS(3613), + [anon_sym_extern] = ACTIONS(3613), + [anon_sym___attribute__] = ACTIONS(3613), + [anon_sym_COLON_COLON] = ACTIONS(3615), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3615), + [anon_sym___declspec] = ACTIONS(3613), + [anon_sym___based] = ACTIONS(3613), + [anon_sym___cdecl] = ACTIONS(3613), + [anon_sym___clrcall] = ACTIONS(3613), + [anon_sym___stdcall] = ACTIONS(3613), + [anon_sym___fastcall] = ACTIONS(3613), + [anon_sym___thiscall] = ACTIONS(3613), + [anon_sym___vectorcall] = ACTIONS(3613), + [anon_sym_LBRACE] = ACTIONS(3615), + [anon_sym_signed] = ACTIONS(3613), + [anon_sym_unsigned] = ACTIONS(3613), + [anon_sym_long] = ACTIONS(3613), + [anon_sym_short] = ACTIONS(3613), + [anon_sym_LBRACK] = ACTIONS(3613), + [anon_sym_static] = ACTIONS(3613), + [anon_sym_register] = ACTIONS(3613), + [anon_sym_inline] = ACTIONS(3613), + [anon_sym___inline] = ACTIONS(3613), + [anon_sym___inline__] = ACTIONS(3613), + [anon_sym___forceinline] = ACTIONS(3613), + [anon_sym_thread_local] = ACTIONS(3613), + [anon_sym___thread] = ACTIONS(3613), + [anon_sym_const] = ACTIONS(3613), + [anon_sym_constexpr] = ACTIONS(3613), + [anon_sym_volatile] = ACTIONS(3613), + [anon_sym_restrict] = ACTIONS(3613), + [anon_sym___restrict__] = ACTIONS(3613), + [anon_sym__Atomic] = ACTIONS(3613), + [anon_sym__Noreturn] = ACTIONS(3613), + [anon_sym_noreturn] = ACTIONS(3613), + [anon_sym_mutable] = ACTIONS(3613), + [anon_sym_constinit] = ACTIONS(3613), + [anon_sym_consteval] = ACTIONS(3613), + [sym_primitive_type] = ACTIONS(3613), + [anon_sym_enum] = ACTIONS(3613), + [anon_sym_class] = ACTIONS(3613), + [anon_sym_struct] = ACTIONS(3613), + [anon_sym_union] = ACTIONS(3613), + [anon_sym_if] = ACTIONS(3613), + [anon_sym_switch] = ACTIONS(3613), + [anon_sym_case] = ACTIONS(3613), + [anon_sym_default] = ACTIONS(3613), + [anon_sym_while] = ACTIONS(3613), + [anon_sym_do] = ACTIONS(3613), + [anon_sym_for] = ACTIONS(3613), + [anon_sym_return] = ACTIONS(3613), + [anon_sym_break] = ACTIONS(3613), + [anon_sym_continue] = ACTIONS(3613), + [anon_sym_goto] = ACTIONS(3613), + [anon_sym_not] = ACTIONS(3613), + [anon_sym_compl] = ACTIONS(3613), + [anon_sym_DASH_DASH] = ACTIONS(3615), + [anon_sym_PLUS_PLUS] = ACTIONS(3615), + [anon_sym_sizeof] = ACTIONS(3613), + [anon_sym___alignof__] = ACTIONS(3613), + [anon_sym___alignof] = ACTIONS(3613), + [anon_sym__alignof] = ACTIONS(3613), + [anon_sym_alignof] = ACTIONS(3613), + [anon_sym__Alignof] = ACTIONS(3613), + [anon_sym_offsetof] = ACTIONS(3613), + [anon_sym__Generic] = ACTIONS(3613), + [anon_sym_asm] = ACTIONS(3613), + [anon_sym___asm__] = ACTIONS(3613), + [sym_number_literal] = ACTIONS(3615), + [anon_sym_L_SQUOTE] = ACTIONS(3615), + [anon_sym_u_SQUOTE] = ACTIONS(3615), + [anon_sym_U_SQUOTE] = ACTIONS(3615), + [anon_sym_u8_SQUOTE] = ACTIONS(3615), + [anon_sym_SQUOTE] = ACTIONS(3615), + [anon_sym_L_DQUOTE] = ACTIONS(3615), + [anon_sym_u_DQUOTE] = ACTIONS(3615), + [anon_sym_U_DQUOTE] = ACTIONS(3615), + [anon_sym_u8_DQUOTE] = ACTIONS(3615), + [anon_sym_DQUOTE] = ACTIONS(3615), + [sym_true] = ACTIONS(3613), + [sym_false] = ACTIONS(3613), + [anon_sym_NULL] = ACTIONS(3613), + [anon_sym_nullptr] = ACTIONS(3613), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3613), + [anon_sym_decltype] = ACTIONS(3613), + [anon_sym_virtual] = ACTIONS(3613), + [anon_sym_alignas] = ACTIONS(3613), + [anon_sym_explicit] = ACTIONS(3613), + [anon_sym_typename] = ACTIONS(3613), + [anon_sym_template] = ACTIONS(3613), + [anon_sym_operator] = ACTIONS(3613), + [anon_sym_try] = ACTIONS(3613), + [anon_sym_delete] = ACTIONS(3613), + [anon_sym_throw] = ACTIONS(3613), + [anon_sym_namespace] = ACTIONS(3613), + [anon_sym_using] = ACTIONS(3613), + [anon_sym_static_assert] = ACTIONS(3613), + [anon_sym_concept] = ACTIONS(3613), + [anon_sym_co_return] = ACTIONS(3613), + [anon_sym_co_yield] = ACTIONS(3613), + [anon_sym_R_DQUOTE] = ACTIONS(3615), + [anon_sym_LR_DQUOTE] = ACTIONS(3615), + [anon_sym_uR_DQUOTE] = ACTIONS(3615), + [anon_sym_UR_DQUOTE] = ACTIONS(3615), + [anon_sym_u8R_DQUOTE] = ACTIONS(3615), + [anon_sym_co_await] = ACTIONS(3613), + [anon_sym_new] = ACTIONS(3613), + [anon_sym_requires] = ACTIONS(3613), + [sym_this] = ACTIONS(3613), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3615), + [sym_semgrep_named_ellipsis] = ACTIONS(3615), + }, + [824] = { + [ts_builtin_sym_end] = ACTIONS(3621), + [sym_identifier] = ACTIONS(3619), + [aux_sym_preproc_include_token1] = ACTIONS(3619), + [aux_sym_preproc_def_token1] = ACTIONS(3619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3621), + [aux_sym_preproc_if_token1] = ACTIONS(3619), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3619), + [sym_preproc_directive] = ACTIONS(3619), + [anon_sym_LPAREN2] = ACTIONS(3621), + [anon_sym_BANG] = ACTIONS(3621), + [anon_sym_TILDE] = ACTIONS(3621), + [anon_sym_DASH] = ACTIONS(3619), + [anon_sym_PLUS] = ACTIONS(3619), + [anon_sym_STAR] = ACTIONS(3621), + [anon_sym_AMP_AMP] = ACTIONS(3621), + [anon_sym_AMP] = ACTIONS(3619), + [anon_sym___extension__] = ACTIONS(3619), + [anon_sym_typedef] = ACTIONS(3619), + [anon_sym_extern] = ACTIONS(3619), + [anon_sym___attribute__] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3621), + [anon_sym___declspec] = ACTIONS(3619), + [anon_sym___based] = ACTIONS(3619), + [anon_sym___cdecl] = ACTIONS(3619), + [anon_sym___clrcall] = ACTIONS(3619), + [anon_sym___stdcall] = ACTIONS(3619), + [anon_sym___fastcall] = ACTIONS(3619), + [anon_sym___thiscall] = ACTIONS(3619), + [anon_sym___vectorcall] = ACTIONS(3619), + [anon_sym_LBRACE] = ACTIONS(3621), + [anon_sym_signed] = ACTIONS(3619), + [anon_sym_unsigned] = ACTIONS(3619), + [anon_sym_long] = ACTIONS(3619), + [anon_sym_short] = ACTIONS(3619), + [anon_sym_LBRACK] = ACTIONS(3619), + [anon_sym_static] = ACTIONS(3619), + [anon_sym_register] = ACTIONS(3619), + [anon_sym_inline] = ACTIONS(3619), + [anon_sym___inline] = ACTIONS(3619), + [anon_sym___inline__] = ACTIONS(3619), + [anon_sym___forceinline] = ACTIONS(3619), + [anon_sym_thread_local] = ACTIONS(3619), + [anon_sym___thread] = ACTIONS(3619), + [anon_sym_const] = ACTIONS(3619), + [anon_sym_constexpr] = ACTIONS(3619), + [anon_sym_volatile] = ACTIONS(3619), + [anon_sym_restrict] = ACTIONS(3619), + [anon_sym___restrict__] = ACTIONS(3619), + [anon_sym__Atomic] = ACTIONS(3619), + [anon_sym__Noreturn] = ACTIONS(3619), + [anon_sym_noreturn] = ACTIONS(3619), + [anon_sym_mutable] = ACTIONS(3619), + [anon_sym_constinit] = ACTIONS(3619), + [anon_sym_consteval] = ACTIONS(3619), + [sym_primitive_type] = ACTIONS(3619), + [anon_sym_enum] = ACTIONS(3619), + [anon_sym_class] = ACTIONS(3619), + [anon_sym_struct] = ACTIONS(3619), + [anon_sym_union] = ACTIONS(3619), + [anon_sym_if] = ACTIONS(3619), + [anon_sym_switch] = ACTIONS(3619), + [anon_sym_case] = ACTIONS(3619), + [anon_sym_default] = ACTIONS(3619), + [anon_sym_while] = ACTIONS(3619), + [anon_sym_do] = ACTIONS(3619), + [anon_sym_for] = ACTIONS(3619), + [anon_sym_return] = ACTIONS(3619), + [anon_sym_break] = ACTIONS(3619), + [anon_sym_continue] = ACTIONS(3619), + [anon_sym_goto] = ACTIONS(3619), + [anon_sym_not] = ACTIONS(3619), + [anon_sym_compl] = ACTIONS(3619), + [anon_sym_DASH_DASH] = ACTIONS(3621), + [anon_sym_PLUS_PLUS] = ACTIONS(3621), + [anon_sym_sizeof] = ACTIONS(3619), + [anon_sym___alignof__] = ACTIONS(3619), + [anon_sym___alignof] = ACTIONS(3619), + [anon_sym__alignof] = ACTIONS(3619), + [anon_sym_alignof] = ACTIONS(3619), + [anon_sym__Alignof] = ACTIONS(3619), + [anon_sym_offsetof] = ACTIONS(3619), + [anon_sym__Generic] = ACTIONS(3619), + [anon_sym_asm] = ACTIONS(3619), + [anon_sym___asm__] = ACTIONS(3619), + [sym_number_literal] = ACTIONS(3621), + [anon_sym_L_SQUOTE] = ACTIONS(3621), + [anon_sym_u_SQUOTE] = ACTIONS(3621), + [anon_sym_U_SQUOTE] = ACTIONS(3621), + [anon_sym_u8_SQUOTE] = ACTIONS(3621), + [anon_sym_SQUOTE] = ACTIONS(3621), + [anon_sym_L_DQUOTE] = ACTIONS(3621), + [anon_sym_u_DQUOTE] = ACTIONS(3621), + [anon_sym_U_DQUOTE] = ACTIONS(3621), + [anon_sym_u8_DQUOTE] = ACTIONS(3621), + [anon_sym_DQUOTE] = ACTIONS(3621), + [sym_true] = ACTIONS(3619), + [sym_false] = ACTIONS(3619), + [anon_sym_NULL] = ACTIONS(3619), + [anon_sym_nullptr] = ACTIONS(3619), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3619), + [anon_sym_decltype] = ACTIONS(3619), + [anon_sym_virtual] = ACTIONS(3619), + [anon_sym_alignas] = ACTIONS(3619), + [anon_sym_explicit] = ACTIONS(3619), + [anon_sym_typename] = ACTIONS(3619), + [anon_sym_template] = ACTIONS(3619), + [anon_sym_operator] = ACTIONS(3619), + [anon_sym_try] = ACTIONS(3619), + [anon_sym_delete] = ACTIONS(3619), + [anon_sym_throw] = ACTIONS(3619), + [anon_sym_namespace] = ACTIONS(3619), + [anon_sym_using] = ACTIONS(3619), + [anon_sym_static_assert] = ACTIONS(3619), + [anon_sym_concept] = ACTIONS(3619), + [anon_sym_co_return] = ACTIONS(3619), + [anon_sym_co_yield] = ACTIONS(3619), + [anon_sym_R_DQUOTE] = ACTIONS(3621), + [anon_sym_LR_DQUOTE] = ACTIONS(3621), + [anon_sym_uR_DQUOTE] = ACTIONS(3621), + [anon_sym_UR_DQUOTE] = ACTIONS(3621), + [anon_sym_u8R_DQUOTE] = ACTIONS(3621), + [anon_sym_co_await] = ACTIONS(3619), + [anon_sym_new] = ACTIONS(3619), + [anon_sym_requires] = ACTIONS(3619), + [sym_this] = ACTIONS(3619), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3621), + [sym_semgrep_named_ellipsis] = ACTIONS(3621), + }, + [825] = { + [ts_builtin_sym_end] = ACTIONS(3430), + [sym_identifier] = ACTIONS(3428), + [aux_sym_preproc_include_token1] = ACTIONS(3428), + [aux_sym_preproc_def_token1] = ACTIONS(3428), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3430), + [aux_sym_preproc_if_token1] = ACTIONS(3428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3428), + [sym_preproc_directive] = ACTIONS(3428), + [anon_sym_LPAREN2] = ACTIONS(3430), + [anon_sym_BANG] = ACTIONS(3430), + [anon_sym_TILDE] = ACTIONS(3430), + [anon_sym_DASH] = ACTIONS(3428), + [anon_sym_PLUS] = ACTIONS(3428), + [anon_sym_STAR] = ACTIONS(3430), + [anon_sym_AMP_AMP] = ACTIONS(3430), + [anon_sym_AMP] = ACTIONS(3428), + [anon_sym___extension__] = ACTIONS(3428), + [anon_sym_typedef] = ACTIONS(3428), + [anon_sym_extern] = ACTIONS(3428), + [anon_sym___attribute__] = ACTIONS(3428), + [anon_sym_COLON_COLON] = ACTIONS(3430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3430), + [anon_sym___declspec] = ACTIONS(3428), + [anon_sym___based] = ACTIONS(3428), + [anon_sym___cdecl] = ACTIONS(3428), + [anon_sym___clrcall] = ACTIONS(3428), + [anon_sym___stdcall] = ACTIONS(3428), + [anon_sym___fastcall] = ACTIONS(3428), + [anon_sym___thiscall] = ACTIONS(3428), + [anon_sym___vectorcall] = ACTIONS(3428), + [anon_sym_LBRACE] = ACTIONS(3430), + [anon_sym_signed] = ACTIONS(3428), + [anon_sym_unsigned] = ACTIONS(3428), + [anon_sym_long] = ACTIONS(3428), + [anon_sym_short] = ACTIONS(3428), + [anon_sym_LBRACK] = ACTIONS(3428), + [anon_sym_static] = ACTIONS(3428), + [anon_sym_register] = ACTIONS(3428), + [anon_sym_inline] = ACTIONS(3428), + [anon_sym___inline] = ACTIONS(3428), + [anon_sym___inline__] = ACTIONS(3428), + [anon_sym___forceinline] = ACTIONS(3428), + [anon_sym_thread_local] = ACTIONS(3428), + [anon_sym___thread] = ACTIONS(3428), + [anon_sym_const] = ACTIONS(3428), + [anon_sym_constexpr] = ACTIONS(3428), + [anon_sym_volatile] = ACTIONS(3428), + [anon_sym_restrict] = ACTIONS(3428), + [anon_sym___restrict__] = ACTIONS(3428), + [anon_sym__Atomic] = ACTIONS(3428), + [anon_sym__Noreturn] = ACTIONS(3428), + [anon_sym_noreturn] = ACTIONS(3428), + [anon_sym_mutable] = ACTIONS(3428), + [anon_sym_constinit] = ACTIONS(3428), + [anon_sym_consteval] = ACTIONS(3428), + [sym_primitive_type] = ACTIONS(3428), + [anon_sym_enum] = ACTIONS(3428), + [anon_sym_class] = ACTIONS(3428), + [anon_sym_struct] = ACTIONS(3428), + [anon_sym_union] = ACTIONS(3428), + [anon_sym_if] = ACTIONS(3428), + [anon_sym_switch] = ACTIONS(3428), + [anon_sym_case] = ACTIONS(3428), + [anon_sym_default] = ACTIONS(3428), + [anon_sym_while] = ACTIONS(3428), + [anon_sym_do] = ACTIONS(3428), + [anon_sym_for] = ACTIONS(3428), + [anon_sym_return] = ACTIONS(3428), + [anon_sym_break] = ACTIONS(3428), + [anon_sym_continue] = ACTIONS(3428), + [anon_sym_goto] = ACTIONS(3428), + [anon_sym_not] = ACTIONS(3428), + [anon_sym_compl] = ACTIONS(3428), + [anon_sym_DASH_DASH] = ACTIONS(3430), + [anon_sym_PLUS_PLUS] = ACTIONS(3430), + [anon_sym_sizeof] = ACTIONS(3428), + [anon_sym___alignof__] = ACTIONS(3428), + [anon_sym___alignof] = ACTIONS(3428), + [anon_sym__alignof] = ACTIONS(3428), + [anon_sym_alignof] = ACTIONS(3428), + [anon_sym__Alignof] = ACTIONS(3428), + [anon_sym_offsetof] = ACTIONS(3428), + [anon_sym__Generic] = ACTIONS(3428), + [anon_sym_asm] = ACTIONS(3428), + [anon_sym___asm__] = ACTIONS(3428), + [sym_number_literal] = ACTIONS(3430), + [anon_sym_L_SQUOTE] = ACTIONS(3430), + [anon_sym_u_SQUOTE] = ACTIONS(3430), + [anon_sym_U_SQUOTE] = ACTIONS(3430), + [anon_sym_u8_SQUOTE] = ACTIONS(3430), + [anon_sym_SQUOTE] = ACTIONS(3430), + [anon_sym_L_DQUOTE] = ACTIONS(3430), + [anon_sym_u_DQUOTE] = ACTIONS(3430), + [anon_sym_U_DQUOTE] = ACTIONS(3430), + [anon_sym_u8_DQUOTE] = ACTIONS(3430), + [anon_sym_DQUOTE] = ACTIONS(3430), + [sym_true] = ACTIONS(3428), + [sym_false] = ACTIONS(3428), + [anon_sym_NULL] = ACTIONS(3428), + [anon_sym_nullptr] = ACTIONS(3428), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3428), + [anon_sym_decltype] = ACTIONS(3428), + [anon_sym_virtual] = ACTIONS(3428), + [anon_sym_alignas] = ACTIONS(3428), + [anon_sym_explicit] = ACTIONS(3428), + [anon_sym_typename] = ACTIONS(3428), + [anon_sym_template] = ACTIONS(3428), + [anon_sym_operator] = ACTIONS(3428), + [anon_sym_try] = ACTIONS(3428), + [anon_sym_delete] = ACTIONS(3428), + [anon_sym_throw] = ACTIONS(3428), + [anon_sym_namespace] = ACTIONS(3428), + [anon_sym_using] = ACTIONS(3428), + [anon_sym_static_assert] = ACTIONS(3428), + [anon_sym_concept] = ACTIONS(3428), + [anon_sym_co_return] = ACTIONS(3428), + [anon_sym_co_yield] = ACTIONS(3428), + [anon_sym_R_DQUOTE] = ACTIONS(3430), + [anon_sym_LR_DQUOTE] = ACTIONS(3430), + [anon_sym_uR_DQUOTE] = ACTIONS(3430), + [anon_sym_UR_DQUOTE] = ACTIONS(3430), + [anon_sym_u8R_DQUOTE] = ACTIONS(3430), + [anon_sym_co_await] = ACTIONS(3428), + [anon_sym_new] = ACTIONS(3428), + [anon_sym_requires] = ACTIONS(3428), + [sym_this] = ACTIONS(3428), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3430), + [sym_semgrep_named_ellipsis] = ACTIONS(3430), + }, + [826] = { + [sym_preproc_def] = STATE(2347), + [sym_preproc_function_def] = STATE(2347), + [sym_preproc_call] = STATE(2347), + [sym_preproc_if_in_field_declaration_list] = STATE(2347), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2347), + [sym_type_definition] = STATE(2347), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6437), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7306), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(830), + [sym_field_declaration] = STATE(2347), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2347), + [sym_operator_cast] = STATE(7731), + [sym_inline_method_definition] = STATE(2347), + [sym_constructor_specifiers] = STATE(1938), + [sym_operator_cast_definition] = STATE(2347), + [sym_operator_cast_declaration] = STATE(2347), + [sym_constructor_or_destructor_definition] = STATE(2347), + [sym_constructor_or_destructor_declaration] = STATE(2347), + [sym_friend_declaration] = STATE(2347), + [sym_access_specifier] = STATE(10086), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2347), + [sym_alias_declaration] = STATE(2347), + [sym_static_assert_declaration] = STATE(2347), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7731), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2347), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(830), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1938), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(4041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4043), + [aux_sym_preproc_if_token1] = ACTIONS(4045), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4049), + [sym_preproc_directive] = ACTIONS(4051), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(3874), - [anon_sym_typedef] = ACTIONS(3876), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(4053), + [anon_sym_typedef] = ACTIONS(4055), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(4113), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3265), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -177709,120 +169170,515 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(3878), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(4059), [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(3880), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(3882), - [anon_sym_static_assert] = ACTIONS(3884), + [anon_sym_friend] = ACTIONS(4061), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(4063), + [anon_sym_static_assert] = ACTIONS(4065), + [sym_semgrep_metavar] = ACTIONS(4067), }, - [817] = { - [sym_preproc_def] = STATE(2179), - [sym_preproc_function_def] = STATE(2179), - [sym_preproc_call] = STATE(2179), - [sym_preproc_if_in_field_declaration_list] = STATE(2179), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2179), - [sym_preproc_else_in_field_declaration_list] = STATE(9930), - [sym_preproc_elif_in_field_declaration_list] = STATE(9930), - [sym_type_definition] = STATE(2179), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6875), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7662), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(821), - [sym_field_declaration] = STATE(2179), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2179), - [sym_operator_cast] = STATE(8085), - [sym_inline_method_definition] = STATE(2179), - [sym_constructor_specifiers] = STATE(1942), - [sym_operator_cast_definition] = STATE(2179), - [sym_operator_cast_declaration] = STATE(2179), - [sym_constructor_or_destructor_definition] = STATE(2179), - [sym_constructor_or_destructor_declaration] = STATE(2179), - [sym_friend_declaration] = STATE(2179), - [sym_access_specifier] = STATE(10098), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2179), - [sym_alias_declaration] = STATE(2179), - [sym_static_assert_declaration] = STATE(2179), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8085), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(821), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1942), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(3862), - [aux_sym_preproc_if_token1] = ACTIONS(3864), - [aux_sym_preproc_if_token2] = ACTIONS(3902), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3868), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3870), - [aux_sym_preproc_else_token1] = ACTIONS(3694), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), - [sym_preproc_directive] = ACTIONS(3872), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [827] = { + [ts_builtin_sym_end] = ACTIONS(3625), + [sym_identifier] = ACTIONS(3623), + [aux_sym_preproc_include_token1] = ACTIONS(3623), + [aux_sym_preproc_def_token1] = ACTIONS(3623), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3625), + [aux_sym_preproc_if_token1] = ACTIONS(3623), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3623), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3623), + [sym_preproc_directive] = ACTIONS(3623), + [anon_sym_LPAREN2] = ACTIONS(3625), + [anon_sym_BANG] = ACTIONS(3625), + [anon_sym_TILDE] = ACTIONS(3625), + [anon_sym_DASH] = ACTIONS(3623), + [anon_sym_PLUS] = ACTIONS(3623), + [anon_sym_STAR] = ACTIONS(3625), + [anon_sym_AMP_AMP] = ACTIONS(3625), + [anon_sym_AMP] = ACTIONS(3623), + [anon_sym___extension__] = ACTIONS(3623), + [anon_sym_typedef] = ACTIONS(3623), + [anon_sym_extern] = ACTIONS(3623), + [anon_sym___attribute__] = ACTIONS(3623), + [anon_sym_COLON_COLON] = ACTIONS(3625), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3625), + [anon_sym___declspec] = ACTIONS(3623), + [anon_sym___based] = ACTIONS(3623), + [anon_sym___cdecl] = ACTIONS(3623), + [anon_sym___clrcall] = ACTIONS(3623), + [anon_sym___stdcall] = ACTIONS(3623), + [anon_sym___fastcall] = ACTIONS(3623), + [anon_sym___thiscall] = ACTIONS(3623), + [anon_sym___vectorcall] = ACTIONS(3623), + [anon_sym_LBRACE] = ACTIONS(3625), + [anon_sym_signed] = ACTIONS(3623), + [anon_sym_unsigned] = ACTIONS(3623), + [anon_sym_long] = ACTIONS(3623), + [anon_sym_short] = ACTIONS(3623), + [anon_sym_LBRACK] = ACTIONS(3623), + [anon_sym_static] = ACTIONS(3623), + [anon_sym_register] = ACTIONS(3623), + [anon_sym_inline] = ACTIONS(3623), + [anon_sym___inline] = ACTIONS(3623), + [anon_sym___inline__] = ACTIONS(3623), + [anon_sym___forceinline] = ACTIONS(3623), + [anon_sym_thread_local] = ACTIONS(3623), + [anon_sym___thread] = ACTIONS(3623), + [anon_sym_const] = ACTIONS(3623), + [anon_sym_constexpr] = ACTIONS(3623), + [anon_sym_volatile] = ACTIONS(3623), + [anon_sym_restrict] = ACTIONS(3623), + [anon_sym___restrict__] = ACTIONS(3623), + [anon_sym__Atomic] = ACTIONS(3623), + [anon_sym__Noreturn] = ACTIONS(3623), + [anon_sym_noreturn] = ACTIONS(3623), + [anon_sym_mutable] = ACTIONS(3623), + [anon_sym_constinit] = ACTIONS(3623), + [anon_sym_consteval] = ACTIONS(3623), + [sym_primitive_type] = ACTIONS(3623), + [anon_sym_enum] = ACTIONS(3623), + [anon_sym_class] = ACTIONS(3623), + [anon_sym_struct] = ACTIONS(3623), + [anon_sym_union] = ACTIONS(3623), + [anon_sym_if] = ACTIONS(3623), + [anon_sym_switch] = ACTIONS(3623), + [anon_sym_case] = ACTIONS(3623), + [anon_sym_default] = ACTIONS(3623), + [anon_sym_while] = ACTIONS(3623), + [anon_sym_do] = ACTIONS(3623), + [anon_sym_for] = ACTIONS(3623), + [anon_sym_return] = ACTIONS(3623), + [anon_sym_break] = ACTIONS(3623), + [anon_sym_continue] = ACTIONS(3623), + [anon_sym_goto] = ACTIONS(3623), + [anon_sym_not] = ACTIONS(3623), + [anon_sym_compl] = ACTIONS(3623), + [anon_sym_DASH_DASH] = ACTIONS(3625), + [anon_sym_PLUS_PLUS] = ACTIONS(3625), + [anon_sym_sizeof] = ACTIONS(3623), + [anon_sym___alignof__] = ACTIONS(3623), + [anon_sym___alignof] = ACTIONS(3623), + [anon_sym__alignof] = ACTIONS(3623), + [anon_sym_alignof] = ACTIONS(3623), + [anon_sym__Alignof] = ACTIONS(3623), + [anon_sym_offsetof] = ACTIONS(3623), + [anon_sym__Generic] = ACTIONS(3623), + [anon_sym_asm] = ACTIONS(3623), + [anon_sym___asm__] = ACTIONS(3623), + [sym_number_literal] = ACTIONS(3625), + [anon_sym_L_SQUOTE] = ACTIONS(3625), + [anon_sym_u_SQUOTE] = ACTIONS(3625), + [anon_sym_U_SQUOTE] = ACTIONS(3625), + [anon_sym_u8_SQUOTE] = ACTIONS(3625), + [anon_sym_SQUOTE] = ACTIONS(3625), + [anon_sym_L_DQUOTE] = ACTIONS(3625), + [anon_sym_u_DQUOTE] = ACTIONS(3625), + [anon_sym_U_DQUOTE] = ACTIONS(3625), + [anon_sym_u8_DQUOTE] = ACTIONS(3625), + [anon_sym_DQUOTE] = ACTIONS(3625), + [sym_true] = ACTIONS(3623), + [sym_false] = ACTIONS(3623), + [anon_sym_NULL] = ACTIONS(3623), + [anon_sym_nullptr] = ACTIONS(3623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3623), + [anon_sym_decltype] = ACTIONS(3623), + [anon_sym_virtual] = ACTIONS(3623), + [anon_sym_alignas] = ACTIONS(3623), + [anon_sym_explicit] = ACTIONS(3623), + [anon_sym_typename] = ACTIONS(3623), + [anon_sym_template] = ACTIONS(3623), + [anon_sym_operator] = ACTIONS(3623), + [anon_sym_try] = ACTIONS(3623), + [anon_sym_delete] = ACTIONS(3623), + [anon_sym_throw] = ACTIONS(3623), + [anon_sym_namespace] = ACTIONS(3623), + [anon_sym_using] = ACTIONS(3623), + [anon_sym_static_assert] = ACTIONS(3623), + [anon_sym_concept] = ACTIONS(3623), + [anon_sym_co_return] = ACTIONS(3623), + [anon_sym_co_yield] = ACTIONS(3623), + [anon_sym_R_DQUOTE] = ACTIONS(3625), + [anon_sym_LR_DQUOTE] = ACTIONS(3625), + [anon_sym_uR_DQUOTE] = ACTIONS(3625), + [anon_sym_UR_DQUOTE] = ACTIONS(3625), + [anon_sym_u8R_DQUOTE] = ACTIONS(3625), + [anon_sym_co_await] = ACTIONS(3623), + [anon_sym_new] = ACTIONS(3623), + [anon_sym_requires] = ACTIONS(3623), + [sym_this] = ACTIONS(3623), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3625), + [sym_semgrep_named_ellipsis] = ACTIONS(3625), + }, + [828] = { + [ts_builtin_sym_end] = ACTIONS(3629), + [sym_identifier] = ACTIONS(3627), + [aux_sym_preproc_include_token1] = ACTIONS(3627), + [aux_sym_preproc_def_token1] = ACTIONS(3627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3629), + [aux_sym_preproc_if_token1] = ACTIONS(3627), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3627), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3627), + [sym_preproc_directive] = ACTIONS(3627), + [anon_sym_LPAREN2] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3629), + [anon_sym_TILDE] = ACTIONS(3629), + [anon_sym_DASH] = ACTIONS(3627), + [anon_sym_PLUS] = ACTIONS(3627), + [anon_sym_STAR] = ACTIONS(3629), + [anon_sym_AMP_AMP] = ACTIONS(3629), + [anon_sym_AMP] = ACTIONS(3627), + [anon_sym___extension__] = ACTIONS(3627), + [anon_sym_typedef] = ACTIONS(3627), + [anon_sym_extern] = ACTIONS(3627), + [anon_sym___attribute__] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3629), + [anon_sym___declspec] = ACTIONS(3627), + [anon_sym___based] = ACTIONS(3627), + [anon_sym___cdecl] = ACTIONS(3627), + [anon_sym___clrcall] = ACTIONS(3627), + [anon_sym___stdcall] = ACTIONS(3627), + [anon_sym___fastcall] = ACTIONS(3627), + [anon_sym___thiscall] = ACTIONS(3627), + [anon_sym___vectorcall] = ACTIONS(3627), + [anon_sym_LBRACE] = ACTIONS(3629), + [anon_sym_signed] = ACTIONS(3627), + [anon_sym_unsigned] = ACTIONS(3627), + [anon_sym_long] = ACTIONS(3627), + [anon_sym_short] = ACTIONS(3627), + [anon_sym_LBRACK] = ACTIONS(3627), + [anon_sym_static] = ACTIONS(3627), + [anon_sym_register] = ACTIONS(3627), + [anon_sym_inline] = ACTIONS(3627), + [anon_sym___inline] = ACTIONS(3627), + [anon_sym___inline__] = ACTIONS(3627), + [anon_sym___forceinline] = ACTIONS(3627), + [anon_sym_thread_local] = ACTIONS(3627), + [anon_sym___thread] = ACTIONS(3627), + [anon_sym_const] = ACTIONS(3627), + [anon_sym_constexpr] = ACTIONS(3627), + [anon_sym_volatile] = ACTIONS(3627), + [anon_sym_restrict] = ACTIONS(3627), + [anon_sym___restrict__] = ACTIONS(3627), + [anon_sym__Atomic] = ACTIONS(3627), + [anon_sym__Noreturn] = ACTIONS(3627), + [anon_sym_noreturn] = ACTIONS(3627), + [anon_sym_mutable] = ACTIONS(3627), + [anon_sym_constinit] = ACTIONS(3627), + [anon_sym_consteval] = ACTIONS(3627), + [sym_primitive_type] = ACTIONS(3627), + [anon_sym_enum] = ACTIONS(3627), + [anon_sym_class] = ACTIONS(3627), + [anon_sym_struct] = ACTIONS(3627), + [anon_sym_union] = ACTIONS(3627), + [anon_sym_if] = ACTIONS(3627), + [anon_sym_switch] = ACTIONS(3627), + [anon_sym_case] = ACTIONS(3627), + [anon_sym_default] = ACTIONS(3627), + [anon_sym_while] = ACTIONS(3627), + [anon_sym_do] = ACTIONS(3627), + [anon_sym_for] = ACTIONS(3627), + [anon_sym_return] = ACTIONS(3627), + [anon_sym_break] = ACTIONS(3627), + [anon_sym_continue] = ACTIONS(3627), + [anon_sym_goto] = ACTIONS(3627), + [anon_sym_not] = ACTIONS(3627), + [anon_sym_compl] = ACTIONS(3627), + [anon_sym_DASH_DASH] = ACTIONS(3629), + [anon_sym_PLUS_PLUS] = ACTIONS(3629), + [anon_sym_sizeof] = ACTIONS(3627), + [anon_sym___alignof__] = ACTIONS(3627), + [anon_sym___alignof] = ACTIONS(3627), + [anon_sym__alignof] = ACTIONS(3627), + [anon_sym_alignof] = ACTIONS(3627), + [anon_sym__Alignof] = ACTIONS(3627), + [anon_sym_offsetof] = ACTIONS(3627), + [anon_sym__Generic] = ACTIONS(3627), + [anon_sym_asm] = ACTIONS(3627), + [anon_sym___asm__] = ACTIONS(3627), + [sym_number_literal] = ACTIONS(3629), + [anon_sym_L_SQUOTE] = ACTIONS(3629), + [anon_sym_u_SQUOTE] = ACTIONS(3629), + [anon_sym_U_SQUOTE] = ACTIONS(3629), + [anon_sym_u8_SQUOTE] = ACTIONS(3629), + [anon_sym_SQUOTE] = ACTIONS(3629), + [anon_sym_L_DQUOTE] = ACTIONS(3629), + [anon_sym_u_DQUOTE] = ACTIONS(3629), + [anon_sym_U_DQUOTE] = ACTIONS(3629), + [anon_sym_u8_DQUOTE] = ACTIONS(3629), + [anon_sym_DQUOTE] = ACTIONS(3629), + [sym_true] = ACTIONS(3627), + [sym_false] = ACTIONS(3627), + [anon_sym_NULL] = ACTIONS(3627), + [anon_sym_nullptr] = ACTIONS(3627), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3627), + [anon_sym_decltype] = ACTIONS(3627), + [anon_sym_virtual] = ACTIONS(3627), + [anon_sym_alignas] = ACTIONS(3627), + [anon_sym_explicit] = ACTIONS(3627), + [anon_sym_typename] = ACTIONS(3627), + [anon_sym_template] = ACTIONS(3627), + [anon_sym_operator] = ACTIONS(3627), + [anon_sym_try] = ACTIONS(3627), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_throw] = ACTIONS(3627), + [anon_sym_namespace] = ACTIONS(3627), + [anon_sym_using] = ACTIONS(3627), + [anon_sym_static_assert] = ACTIONS(3627), + [anon_sym_concept] = ACTIONS(3627), + [anon_sym_co_return] = ACTIONS(3627), + [anon_sym_co_yield] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(3629), + [anon_sym_LR_DQUOTE] = ACTIONS(3629), + [anon_sym_uR_DQUOTE] = ACTIONS(3629), + [anon_sym_UR_DQUOTE] = ACTIONS(3629), + [anon_sym_u8R_DQUOTE] = ACTIONS(3629), + [anon_sym_co_await] = ACTIONS(3627), + [anon_sym_new] = ACTIONS(3627), + [anon_sym_requires] = ACTIONS(3627), + [sym_this] = ACTIONS(3627), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3629), + [sym_semgrep_named_ellipsis] = ACTIONS(3629), + }, + [829] = { + [ts_builtin_sym_end] = ACTIONS(3499), + [sym_identifier] = ACTIONS(3497), + [aux_sym_preproc_include_token1] = ACTIONS(3497), + [aux_sym_preproc_def_token1] = ACTIONS(3497), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3499), + [aux_sym_preproc_if_token1] = ACTIONS(3497), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3497), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3497), + [sym_preproc_directive] = ACTIONS(3497), + [anon_sym_LPAREN2] = ACTIONS(3499), + [anon_sym_BANG] = ACTIONS(3499), + [anon_sym_TILDE] = ACTIONS(3499), + [anon_sym_DASH] = ACTIONS(3497), + [anon_sym_PLUS] = ACTIONS(3497), + [anon_sym_STAR] = ACTIONS(3499), + [anon_sym_AMP_AMP] = ACTIONS(3499), + [anon_sym_AMP] = ACTIONS(3497), + [anon_sym___extension__] = ACTIONS(3497), + [anon_sym_typedef] = 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___cdecl] = ACTIONS(3497), + [anon_sym___clrcall] = ACTIONS(3497), + [anon_sym___stdcall] = ACTIONS(3497), + [anon_sym___fastcall] = ACTIONS(3497), + [anon_sym___thiscall] = ACTIONS(3497), + [anon_sym___vectorcall] = ACTIONS(3497), + [anon_sym_LBRACE] = ACTIONS(3499), + [anon_sym_signed] = ACTIONS(3497), + [anon_sym_unsigned] = ACTIONS(3497), + [anon_sym_long] = ACTIONS(3497), + [anon_sym_short] = ACTIONS(3497), + [anon_sym_LBRACK] = ACTIONS(3497), + [anon_sym_static] = ACTIONS(3497), + [anon_sym_register] = ACTIONS(3497), + [anon_sym_inline] = ACTIONS(3497), + [anon_sym___inline] = ACTIONS(3497), + [anon_sym___inline__] = ACTIONS(3497), + [anon_sym___forceinline] = ACTIONS(3497), + [anon_sym_thread_local] = ACTIONS(3497), + [anon_sym___thread] = ACTIONS(3497), + [anon_sym_const] = ACTIONS(3497), + [anon_sym_constexpr] = ACTIONS(3497), + [anon_sym_volatile] = ACTIONS(3497), + [anon_sym_restrict] = ACTIONS(3497), + [anon_sym___restrict__] = ACTIONS(3497), + [anon_sym__Atomic] = ACTIONS(3497), + [anon_sym__Noreturn] = ACTIONS(3497), + [anon_sym_noreturn] = ACTIONS(3497), + [anon_sym_mutable] = ACTIONS(3497), + [anon_sym_constinit] = ACTIONS(3497), + [anon_sym_consteval] = ACTIONS(3497), + [sym_primitive_type] = ACTIONS(3497), + [anon_sym_enum] = ACTIONS(3497), + [anon_sym_class] = ACTIONS(3497), + [anon_sym_struct] = ACTIONS(3497), + [anon_sym_union] = ACTIONS(3497), + [anon_sym_if] = ACTIONS(3497), + [anon_sym_switch] = ACTIONS(3497), + [anon_sym_case] = ACTIONS(3497), + [anon_sym_default] = ACTIONS(3497), + [anon_sym_while] = ACTIONS(3497), + [anon_sym_do] = ACTIONS(3497), + [anon_sym_for] = ACTIONS(3497), + [anon_sym_return] = ACTIONS(3497), + [anon_sym_break] = ACTIONS(3497), + [anon_sym_continue] = ACTIONS(3497), + [anon_sym_goto] = ACTIONS(3497), + [anon_sym_not] = ACTIONS(3497), + [anon_sym_compl] = ACTIONS(3497), + [anon_sym_DASH_DASH] = ACTIONS(3499), + [anon_sym_PLUS_PLUS] = ACTIONS(3499), + [anon_sym_sizeof] = ACTIONS(3497), + [anon_sym___alignof__] = ACTIONS(3497), + [anon_sym___alignof] = ACTIONS(3497), + [anon_sym__alignof] = ACTIONS(3497), + [anon_sym_alignof] = ACTIONS(3497), + [anon_sym__Alignof] = ACTIONS(3497), + [anon_sym_offsetof] = ACTIONS(3497), + [anon_sym__Generic] = ACTIONS(3497), + [anon_sym_asm] = ACTIONS(3497), + [anon_sym___asm__] = ACTIONS(3497), + [sym_number_literal] = ACTIONS(3499), + [anon_sym_L_SQUOTE] = ACTIONS(3499), + [anon_sym_u_SQUOTE] = ACTIONS(3499), + [anon_sym_U_SQUOTE] = ACTIONS(3499), + [anon_sym_u8_SQUOTE] = ACTIONS(3499), + [anon_sym_SQUOTE] = ACTIONS(3499), + [anon_sym_L_DQUOTE] = ACTIONS(3499), + [anon_sym_u_DQUOTE] = ACTIONS(3499), + [anon_sym_U_DQUOTE] = ACTIONS(3499), + [anon_sym_u8_DQUOTE] = ACTIONS(3499), + [anon_sym_DQUOTE] = ACTIONS(3499), + [sym_true] = ACTIONS(3497), + [sym_false] = ACTIONS(3497), + [anon_sym_NULL] = ACTIONS(3497), + [anon_sym_nullptr] = ACTIONS(3497), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3497), + [anon_sym_decltype] = ACTIONS(3497), + [anon_sym_virtual] = ACTIONS(3497), + [anon_sym_alignas] = ACTIONS(3497), + [anon_sym_explicit] = ACTIONS(3497), + [anon_sym_typename] = ACTIONS(3497), + [anon_sym_template] = ACTIONS(3497), + [anon_sym_operator] = ACTIONS(3497), + [anon_sym_try] = ACTIONS(3497), + [anon_sym_delete] = ACTIONS(3497), + [anon_sym_throw] = ACTIONS(3497), + [anon_sym_namespace] = ACTIONS(3497), + [anon_sym_using] = ACTIONS(3497), + [anon_sym_static_assert] = ACTIONS(3497), + [anon_sym_concept] = ACTIONS(3497), + [anon_sym_co_return] = ACTIONS(3497), + [anon_sym_co_yield] = ACTIONS(3497), + [anon_sym_R_DQUOTE] = ACTIONS(3499), + [anon_sym_LR_DQUOTE] = ACTIONS(3499), + [anon_sym_uR_DQUOTE] = ACTIONS(3499), + [anon_sym_UR_DQUOTE] = ACTIONS(3499), + [anon_sym_u8R_DQUOTE] = ACTIONS(3499), + [anon_sym_co_await] = ACTIONS(3497), + [anon_sym_new] = ACTIONS(3497), + [anon_sym_requires] = ACTIONS(3497), + [sym_this] = ACTIONS(3497), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3499), + [sym_semgrep_named_ellipsis] = ACTIONS(3499), + }, + [830] = { + [sym_preproc_def] = STATE(2347), + [sym_preproc_function_def] = STATE(2347), + [sym_preproc_call] = STATE(2347), + [sym_preproc_if_in_field_declaration_list] = STATE(2347), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2347), + [sym_type_definition] = STATE(2347), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6437), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7306), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(868), + [sym_field_declaration] = STATE(2347), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2347), + [sym_operator_cast] = STATE(7731), + [sym_inline_method_definition] = STATE(2347), + [sym_constructor_specifiers] = STATE(1938), + [sym_operator_cast_definition] = STATE(2347), + [sym_operator_cast_declaration] = STATE(2347), + [sym_constructor_or_destructor_definition] = STATE(2347), + [sym_constructor_or_destructor_declaration] = STATE(2347), + [sym_friend_declaration] = STATE(2347), + [sym_access_specifier] = STATE(10086), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2347), + [sym_alias_declaration] = STATE(2347), + [sym_static_assert_declaration] = STATE(2347), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7731), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2347), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(868), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1938), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(4041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4043), + [aux_sym_preproc_if_token1] = ACTIONS(4045), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4049), + [sym_preproc_directive] = ACTIONS(4051), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(3874), - [anon_sym_typedef] = ACTIONS(3876), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(4053), + [anon_sym_typedef] = ACTIONS(4055), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(4115), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3265), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -177842,120 +169698,383 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(3878), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(4059), [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(3880), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(3882), - [anon_sym_static_assert] = ACTIONS(3884), + [anon_sym_friend] = ACTIONS(4061), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(4063), + [anon_sym_static_assert] = ACTIONS(4065), + [sym_semgrep_metavar] = ACTIONS(4067), }, - [818] = { - [sym_preproc_def] = STATE(2179), - [sym_preproc_function_def] = STATE(2179), - [sym_preproc_call] = STATE(2179), - [sym_preproc_if_in_field_declaration_list] = STATE(2179), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2179), - [sym_preproc_else_in_field_declaration_list] = STATE(10598), - [sym_preproc_elif_in_field_declaration_list] = STATE(10598), - [sym_type_definition] = STATE(2179), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6875), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7662), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(884), - [sym_field_declaration] = STATE(2179), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2179), - [sym_operator_cast] = STATE(8085), - [sym_inline_method_definition] = STATE(2179), - [sym_constructor_specifiers] = STATE(1942), - [sym_operator_cast_definition] = STATE(2179), - [sym_operator_cast_declaration] = STATE(2179), - [sym_constructor_or_destructor_definition] = STATE(2179), - [sym_constructor_or_destructor_declaration] = STATE(2179), - [sym_friend_declaration] = STATE(2179), - [sym_access_specifier] = STATE(10098), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2179), - [sym_alias_declaration] = STATE(2179), - [sym_static_assert_declaration] = STATE(2179), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8085), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(884), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1942), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(3862), - [aux_sym_preproc_if_token1] = ACTIONS(3864), - [aux_sym_preproc_if_token2] = ACTIONS(3904), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3868), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3870), - [aux_sym_preproc_else_token1] = ACTIONS(3694), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), - [sym_preproc_directive] = ACTIONS(3872), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [831] = { + [ts_builtin_sym_end] = ACTIONS(3436), + [sym_identifier] = ACTIONS(3434), + [aux_sym_preproc_include_token1] = ACTIONS(3434), + [aux_sym_preproc_def_token1] = ACTIONS(3434), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3436), + [aux_sym_preproc_if_token1] = ACTIONS(3434), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3434), + [sym_preproc_directive] = ACTIONS(3434), + [anon_sym_LPAREN2] = ACTIONS(3436), + [anon_sym_BANG] = ACTIONS(3436), + [anon_sym_TILDE] = ACTIONS(3436), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_STAR] = ACTIONS(3436), + [anon_sym_AMP_AMP] = ACTIONS(3436), + [anon_sym_AMP] = ACTIONS(3434), + [anon_sym___extension__] = ACTIONS(3434), + [anon_sym_typedef] = ACTIONS(3434), + [anon_sym_extern] = ACTIONS(3434), + [anon_sym___attribute__] = ACTIONS(3434), + [anon_sym_COLON_COLON] = ACTIONS(3436), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3436), + [anon_sym___declspec] = ACTIONS(3434), + [anon_sym___based] = ACTIONS(3434), + [anon_sym___cdecl] = ACTIONS(3434), + [anon_sym___clrcall] = ACTIONS(3434), + [anon_sym___stdcall] = ACTIONS(3434), + [anon_sym___fastcall] = ACTIONS(3434), + [anon_sym___thiscall] = ACTIONS(3434), + [anon_sym___vectorcall] = ACTIONS(3434), + [anon_sym_LBRACE] = ACTIONS(3436), + [anon_sym_signed] = ACTIONS(3434), + [anon_sym_unsigned] = ACTIONS(3434), + [anon_sym_long] = ACTIONS(3434), + [anon_sym_short] = ACTIONS(3434), + [anon_sym_LBRACK] = ACTIONS(3434), + [anon_sym_static] = ACTIONS(3434), + [anon_sym_register] = ACTIONS(3434), + [anon_sym_inline] = ACTIONS(3434), + [anon_sym___inline] = ACTIONS(3434), + [anon_sym___inline__] = ACTIONS(3434), + [anon_sym___forceinline] = ACTIONS(3434), + [anon_sym_thread_local] = ACTIONS(3434), + [anon_sym___thread] = ACTIONS(3434), + [anon_sym_const] = ACTIONS(3434), + [anon_sym_constexpr] = ACTIONS(3434), + [anon_sym_volatile] = ACTIONS(3434), + [anon_sym_restrict] = ACTIONS(3434), + [anon_sym___restrict__] = ACTIONS(3434), + [anon_sym__Atomic] = ACTIONS(3434), + [anon_sym__Noreturn] = ACTIONS(3434), + [anon_sym_noreturn] = ACTIONS(3434), + [anon_sym_mutable] = ACTIONS(3434), + [anon_sym_constinit] = ACTIONS(3434), + [anon_sym_consteval] = ACTIONS(3434), + [sym_primitive_type] = ACTIONS(3434), + [anon_sym_enum] = ACTIONS(3434), + [anon_sym_class] = ACTIONS(3434), + [anon_sym_struct] = ACTIONS(3434), + [anon_sym_union] = ACTIONS(3434), + [anon_sym_if] = ACTIONS(3434), + [anon_sym_switch] = ACTIONS(3434), + [anon_sym_case] = ACTIONS(3434), + [anon_sym_default] = ACTIONS(3434), + [anon_sym_while] = ACTIONS(3434), + [anon_sym_do] = ACTIONS(3434), + [anon_sym_for] = ACTIONS(3434), + [anon_sym_return] = ACTIONS(3434), + [anon_sym_break] = ACTIONS(3434), + [anon_sym_continue] = ACTIONS(3434), + [anon_sym_goto] = ACTIONS(3434), + [anon_sym_not] = ACTIONS(3434), + [anon_sym_compl] = ACTIONS(3434), + [anon_sym_DASH_DASH] = ACTIONS(3436), + [anon_sym_PLUS_PLUS] = ACTIONS(3436), + [anon_sym_sizeof] = ACTIONS(3434), + [anon_sym___alignof__] = ACTIONS(3434), + [anon_sym___alignof] = ACTIONS(3434), + [anon_sym__alignof] = ACTIONS(3434), + [anon_sym_alignof] = ACTIONS(3434), + [anon_sym__Alignof] = ACTIONS(3434), + [anon_sym_offsetof] = ACTIONS(3434), + [anon_sym__Generic] = ACTIONS(3434), + [anon_sym_asm] = ACTIONS(3434), + [anon_sym___asm__] = ACTIONS(3434), + [sym_number_literal] = ACTIONS(3436), + [anon_sym_L_SQUOTE] = ACTIONS(3436), + [anon_sym_u_SQUOTE] = ACTIONS(3436), + [anon_sym_U_SQUOTE] = ACTIONS(3436), + [anon_sym_u8_SQUOTE] = ACTIONS(3436), + [anon_sym_SQUOTE] = ACTIONS(3436), + [anon_sym_L_DQUOTE] = ACTIONS(3436), + [anon_sym_u_DQUOTE] = ACTIONS(3436), + [anon_sym_U_DQUOTE] = ACTIONS(3436), + [anon_sym_u8_DQUOTE] = ACTIONS(3436), + [anon_sym_DQUOTE] = ACTIONS(3436), + [sym_true] = ACTIONS(3434), + [sym_false] = ACTIONS(3434), + [anon_sym_NULL] = ACTIONS(3434), + [anon_sym_nullptr] = ACTIONS(3434), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3434), + [anon_sym_decltype] = ACTIONS(3434), + [anon_sym_virtual] = ACTIONS(3434), + [anon_sym_alignas] = ACTIONS(3434), + [anon_sym_explicit] = ACTIONS(3434), + [anon_sym_typename] = ACTIONS(3434), + [anon_sym_template] = ACTIONS(3434), + [anon_sym_operator] = ACTIONS(3434), + [anon_sym_try] = ACTIONS(3434), + [anon_sym_delete] = ACTIONS(3434), + [anon_sym_throw] = ACTIONS(3434), + [anon_sym_namespace] = ACTIONS(3434), + [anon_sym_using] = ACTIONS(3434), + [anon_sym_static_assert] = ACTIONS(3434), + [anon_sym_concept] = ACTIONS(3434), + [anon_sym_co_return] = ACTIONS(3434), + [anon_sym_co_yield] = ACTIONS(3434), + [anon_sym_R_DQUOTE] = ACTIONS(3436), + [anon_sym_LR_DQUOTE] = ACTIONS(3436), + [anon_sym_uR_DQUOTE] = ACTIONS(3436), + [anon_sym_UR_DQUOTE] = ACTIONS(3436), + [anon_sym_u8R_DQUOTE] = ACTIONS(3436), + [anon_sym_co_await] = ACTIONS(3434), + [anon_sym_new] = ACTIONS(3434), + [anon_sym_requires] = ACTIONS(3434), + [sym_this] = ACTIONS(3434), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3436), + [sym_semgrep_named_ellipsis] = ACTIONS(3436), + }, + [832] = { + [ts_builtin_sym_end] = ACTIONS(3589), + [sym_identifier] = ACTIONS(3587), + [aux_sym_preproc_include_token1] = ACTIONS(3587), + [aux_sym_preproc_def_token1] = ACTIONS(3587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3589), + [aux_sym_preproc_if_token1] = ACTIONS(3587), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3587), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3587), + [sym_preproc_directive] = ACTIONS(3587), + [anon_sym_LPAREN2] = ACTIONS(3589), + [anon_sym_BANG] = ACTIONS(3589), + [anon_sym_TILDE] = ACTIONS(3589), + [anon_sym_DASH] = ACTIONS(3587), + [anon_sym_PLUS] = ACTIONS(3587), + [anon_sym_STAR] = ACTIONS(3589), + [anon_sym_AMP_AMP] = ACTIONS(3589), + [anon_sym_AMP] = ACTIONS(3587), + [anon_sym___extension__] = ACTIONS(3587), + [anon_sym_typedef] = ACTIONS(3587), + [anon_sym_extern] = ACTIONS(3587), + [anon_sym___attribute__] = ACTIONS(3587), + [anon_sym_COLON_COLON] = ACTIONS(3589), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3589), + [anon_sym___declspec] = ACTIONS(3587), + [anon_sym___based] = ACTIONS(3587), + [anon_sym___cdecl] = ACTIONS(3587), + [anon_sym___clrcall] = ACTIONS(3587), + [anon_sym___stdcall] = ACTIONS(3587), + [anon_sym___fastcall] = ACTIONS(3587), + [anon_sym___thiscall] = ACTIONS(3587), + [anon_sym___vectorcall] = ACTIONS(3587), + [anon_sym_LBRACE] = ACTIONS(3589), + [anon_sym_signed] = ACTIONS(3587), + [anon_sym_unsigned] = ACTIONS(3587), + [anon_sym_long] = ACTIONS(3587), + [anon_sym_short] = ACTIONS(3587), + [anon_sym_LBRACK] = ACTIONS(3587), + [anon_sym_static] = ACTIONS(3587), + [anon_sym_register] = ACTIONS(3587), + [anon_sym_inline] = ACTIONS(3587), + [anon_sym___inline] = ACTIONS(3587), + [anon_sym___inline__] = ACTIONS(3587), + [anon_sym___forceinline] = ACTIONS(3587), + [anon_sym_thread_local] = ACTIONS(3587), + [anon_sym___thread] = ACTIONS(3587), + [anon_sym_const] = ACTIONS(3587), + [anon_sym_constexpr] = ACTIONS(3587), + [anon_sym_volatile] = ACTIONS(3587), + [anon_sym_restrict] = ACTIONS(3587), + [anon_sym___restrict__] = ACTIONS(3587), + [anon_sym__Atomic] = ACTIONS(3587), + [anon_sym__Noreturn] = ACTIONS(3587), + [anon_sym_noreturn] = ACTIONS(3587), + [anon_sym_mutable] = ACTIONS(3587), + [anon_sym_constinit] = ACTIONS(3587), + [anon_sym_consteval] = ACTIONS(3587), + [sym_primitive_type] = ACTIONS(3587), + [anon_sym_enum] = ACTIONS(3587), + [anon_sym_class] = ACTIONS(3587), + [anon_sym_struct] = ACTIONS(3587), + [anon_sym_union] = ACTIONS(3587), + [anon_sym_if] = ACTIONS(3587), + [anon_sym_switch] = ACTIONS(3587), + [anon_sym_case] = ACTIONS(3587), + [anon_sym_default] = ACTIONS(3587), + [anon_sym_while] = ACTIONS(3587), + [anon_sym_do] = ACTIONS(3587), + [anon_sym_for] = ACTIONS(3587), + [anon_sym_return] = ACTIONS(3587), + [anon_sym_break] = ACTIONS(3587), + [anon_sym_continue] = ACTIONS(3587), + [anon_sym_goto] = ACTIONS(3587), + [anon_sym_not] = ACTIONS(3587), + [anon_sym_compl] = ACTIONS(3587), + [anon_sym_DASH_DASH] = ACTIONS(3589), + [anon_sym_PLUS_PLUS] = ACTIONS(3589), + [anon_sym_sizeof] = ACTIONS(3587), + [anon_sym___alignof__] = ACTIONS(3587), + [anon_sym___alignof] = ACTIONS(3587), + [anon_sym__alignof] = ACTIONS(3587), + [anon_sym_alignof] = ACTIONS(3587), + [anon_sym__Alignof] = ACTIONS(3587), + [anon_sym_offsetof] = ACTIONS(3587), + [anon_sym__Generic] = ACTIONS(3587), + [anon_sym_asm] = ACTIONS(3587), + [anon_sym___asm__] = ACTIONS(3587), + [sym_number_literal] = ACTIONS(3589), + [anon_sym_L_SQUOTE] = ACTIONS(3589), + [anon_sym_u_SQUOTE] = ACTIONS(3589), + [anon_sym_U_SQUOTE] = ACTIONS(3589), + [anon_sym_u8_SQUOTE] = ACTIONS(3589), + [anon_sym_SQUOTE] = ACTIONS(3589), + [anon_sym_L_DQUOTE] = ACTIONS(3589), + [anon_sym_u_DQUOTE] = ACTIONS(3589), + [anon_sym_U_DQUOTE] = ACTIONS(3589), + [anon_sym_u8_DQUOTE] = ACTIONS(3589), + [anon_sym_DQUOTE] = ACTIONS(3589), + [sym_true] = ACTIONS(3587), + [sym_false] = ACTIONS(3587), + [anon_sym_NULL] = ACTIONS(3587), + [anon_sym_nullptr] = ACTIONS(3587), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3587), + [anon_sym_decltype] = ACTIONS(3587), + [anon_sym_virtual] = ACTIONS(3587), + [anon_sym_alignas] = ACTIONS(3587), + [anon_sym_explicit] = ACTIONS(3587), + [anon_sym_typename] = ACTIONS(3587), + [anon_sym_template] = ACTIONS(3587), + [anon_sym_operator] = ACTIONS(3587), + [anon_sym_try] = ACTIONS(3587), + [anon_sym_delete] = ACTIONS(3587), + [anon_sym_throw] = ACTIONS(3587), + [anon_sym_namespace] = ACTIONS(3587), + [anon_sym_using] = ACTIONS(3587), + [anon_sym_static_assert] = ACTIONS(3587), + [anon_sym_concept] = ACTIONS(3587), + [anon_sym_co_return] = ACTIONS(3587), + [anon_sym_co_yield] = ACTIONS(3587), + [anon_sym_R_DQUOTE] = ACTIONS(3589), + [anon_sym_LR_DQUOTE] = ACTIONS(3589), + [anon_sym_uR_DQUOTE] = ACTIONS(3589), + [anon_sym_UR_DQUOTE] = ACTIONS(3589), + [anon_sym_u8R_DQUOTE] = ACTIONS(3589), + [anon_sym_co_await] = ACTIONS(3587), + [anon_sym_new] = ACTIONS(3587), + [anon_sym_requires] = ACTIONS(3587), + [sym_this] = ACTIONS(3587), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3589), + [sym_semgrep_named_ellipsis] = ACTIONS(3589), + }, + [833] = { + [sym_preproc_def] = STATE(2347), + [sym_preproc_function_def] = STATE(2347), + [sym_preproc_call] = STATE(2347), + [sym_preproc_if_in_field_declaration_list] = STATE(2347), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2347), + [sym_type_definition] = STATE(2347), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6437), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7306), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(835), + [sym_field_declaration] = STATE(2347), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2347), + [sym_operator_cast] = STATE(7731), + [sym_inline_method_definition] = STATE(2347), + [sym_constructor_specifiers] = STATE(1938), + [sym_operator_cast_definition] = STATE(2347), + [sym_operator_cast_declaration] = STATE(2347), + [sym_constructor_or_destructor_definition] = STATE(2347), + [sym_constructor_or_destructor_declaration] = STATE(2347), + [sym_friend_declaration] = STATE(2347), + [sym_access_specifier] = STATE(10086), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2347), + [sym_alias_declaration] = STATE(2347), + [sym_static_assert_declaration] = STATE(2347), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7731), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2347), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(835), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1938), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(4041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4043), + [aux_sym_preproc_if_token1] = ACTIONS(4045), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4049), + [sym_preproc_directive] = ACTIONS(4051), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(3874), - [anon_sym_typedef] = ACTIONS(3876), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(4053), + [anon_sym_typedef] = ACTIONS(4055), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(4117), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3265), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -177975,120 +170094,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(3878), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(4059), [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(3880), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(3882), - [anon_sym_static_assert] = ACTIONS(3884), + [anon_sym_friend] = ACTIONS(4061), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(4063), + [anon_sym_static_assert] = ACTIONS(4065), + [sym_semgrep_metavar] = ACTIONS(4067), }, - [819] = { - [sym_preproc_def] = STATE(2179), - [sym_preproc_function_def] = STATE(2179), - [sym_preproc_call] = STATE(2179), - [sym_preproc_if_in_field_declaration_list] = STATE(2179), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2179), - [sym_preproc_else_in_field_declaration_list] = STATE(10042), - [sym_preproc_elif_in_field_declaration_list] = STATE(10042), - [sym_type_definition] = STATE(2179), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6875), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7662), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(884), - [sym_field_declaration] = STATE(2179), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2179), - [sym_operator_cast] = STATE(8085), - [sym_inline_method_definition] = STATE(2179), - [sym_constructor_specifiers] = STATE(1942), - [sym_operator_cast_definition] = STATE(2179), - [sym_operator_cast_declaration] = STATE(2179), - [sym_constructor_or_destructor_definition] = STATE(2179), - [sym_constructor_or_destructor_declaration] = STATE(2179), - [sym_friend_declaration] = STATE(2179), - [sym_access_specifier] = STATE(10098), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2179), - [sym_alias_declaration] = STATE(2179), - [sym_static_assert_declaration] = STATE(2179), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8085), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(884), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1942), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(3862), - [aux_sym_preproc_if_token1] = ACTIONS(3864), - [aux_sym_preproc_if_token2] = ACTIONS(3906), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3868), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3870), - [aux_sym_preproc_else_token1] = ACTIONS(3694), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), - [sym_preproc_directive] = ACTIONS(3872), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [834] = { + [sym_preproc_def] = STATE(2361), + [sym_preproc_function_def] = STATE(2361), + [sym_preproc_call] = STATE(2361), + [sym_preproc_if_in_field_declaration_list] = STATE(2361), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2361), + [sym_type_definition] = STATE(2361), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6384), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7245), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(805), + [sym_field_declaration] = STATE(2361), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2361), + [sym_operator_cast] = STATE(7705), + [sym_inline_method_definition] = STATE(2361), + [sym_constructor_specifiers] = STATE(1945), + [sym_operator_cast_definition] = STATE(2361), + [sym_operator_cast_declaration] = STATE(2361), + [sym_constructor_or_destructor_definition] = STATE(2361), + [sym_constructor_or_destructor_declaration] = STATE(2361), + [sym_friend_declaration] = STATE(2361), + [sym_access_specifier] = STATE(9889), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2361), + [sym_alias_declaration] = STATE(2361), + [sym_static_assert_declaration] = STATE(2361), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7705), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2361), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(805), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(4069), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4071), + [aux_sym_preproc_if_token1] = ACTIONS(4073), + [aux_sym_preproc_if_token2] = ACTIONS(4119), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4077), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4079), + [sym_preproc_directive] = ACTIONS(4081), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(3874), - [anon_sym_typedef] = ACTIONS(3876), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(4083), + [anon_sym_typedef] = ACTIONS(4085), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(51), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3265), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -178108,253 +170226,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(3878), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(4087), [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(3880), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(3882), - [anon_sym_static_assert] = ACTIONS(3884), - }, - [820] = { - [sym_preproc_def] = STATE(1988), - [sym_preproc_function_def] = STATE(1988), - [sym_preproc_call] = STATE(1988), - [sym_preproc_if_in_field_declaration_list] = STATE(1988), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1988), - [sym_type_definition] = STATE(1988), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6897), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7690), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(820), - [sym_field_declaration] = STATE(1988), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(1988), - [sym_operator_cast] = STATE(8046), - [sym_inline_method_definition] = STATE(1988), - [sym_constructor_specifiers] = STATE(1934), - [sym_operator_cast_definition] = STATE(1988), - [sym_operator_cast_declaration] = STATE(1988), - [sym_constructor_or_destructor_definition] = STATE(1988), - [sym_constructor_or_destructor_declaration] = STATE(1988), - [sym_friend_declaration] = STATE(1988), - [sym_access_specifier] = STATE(9892), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(1988), - [sym_alias_declaration] = STATE(1988), - [sym_static_assert_declaration] = STATE(1988), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8046), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(820), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1934), - [sym_identifier] = ACTIONS(3908), - [aux_sym_preproc_def_token1] = ACTIONS(3911), - [aux_sym_preproc_if_token1] = ACTIONS(3914), - [aux_sym_preproc_if_token2] = ACTIONS(3917), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3919), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3922), - [aux_sym_preproc_else_token1] = ACTIONS(3917), - [aux_sym_preproc_elif_token1] = ACTIONS(3917), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3917), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3917), - [sym_preproc_directive] = ACTIONS(3925), - [anon_sym_LPAREN2] = ACTIONS(3928), - [anon_sym_TILDE] = ACTIONS(3931), - [anon_sym_STAR] = ACTIONS(3934), - [anon_sym_AMP_AMP] = ACTIONS(3937), - [anon_sym_AMP] = ACTIONS(3940), - [anon_sym___extension__] = ACTIONS(3943), - [anon_sym_typedef] = ACTIONS(3946), - [anon_sym_extern] = ACTIONS(3949), - [anon_sym___attribute__] = ACTIONS(3952), - [anon_sym_COLON_COLON] = ACTIONS(3955), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3958), - [anon_sym___declspec] = ACTIONS(3961), - [anon_sym___based] = ACTIONS(3964), - [anon_sym_signed] = ACTIONS(3967), - [anon_sym_unsigned] = ACTIONS(3967), - [anon_sym_long] = ACTIONS(3967), - [anon_sym_short] = ACTIONS(3967), - [anon_sym_LBRACK] = ACTIONS(3970), - [anon_sym_static] = ACTIONS(3949), - [anon_sym_register] = ACTIONS(3949), - [anon_sym_inline] = ACTIONS(3949), - [anon_sym___inline] = ACTIONS(3949), - [anon_sym___inline__] = ACTIONS(3949), - [anon_sym___forceinline] = ACTIONS(3949), - [anon_sym_thread_local] = ACTIONS(3949), - [anon_sym___thread] = ACTIONS(3949), - [anon_sym_const] = ACTIONS(3973), - [anon_sym_constexpr] = ACTIONS(3973), - [anon_sym_volatile] = ACTIONS(3973), - [anon_sym_restrict] = ACTIONS(3973), - [anon_sym___restrict__] = ACTIONS(3973), - [anon_sym__Atomic] = ACTIONS(3973), - [anon_sym__Noreturn] = ACTIONS(3973), - [anon_sym_noreturn] = ACTIONS(3973), - [anon_sym_mutable] = ACTIONS(3973), - [anon_sym_constinit] = ACTIONS(3973), - [anon_sym_consteval] = ACTIONS(3973), - [sym_primitive_type] = ACTIONS(3976), - [anon_sym_enum] = ACTIONS(3979), - [anon_sym_class] = ACTIONS(3982), - [anon_sym_struct] = ACTIONS(3985), - [anon_sym_union] = ACTIONS(3988), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3991), - [anon_sym_decltype] = ACTIONS(3994), - [anon_sym_virtual] = ACTIONS(3997), - [anon_sym_alignas] = ACTIONS(4000), - [anon_sym_explicit] = ACTIONS(4003), - [anon_sym_typename] = ACTIONS(4006), - [anon_sym_template] = ACTIONS(4009), - [anon_sym_operator] = ACTIONS(4012), - [anon_sym_friend] = ACTIONS(4015), - [anon_sym_public] = ACTIONS(4018), - [anon_sym_private] = ACTIONS(4018), - [anon_sym_protected] = ACTIONS(4018), - [anon_sym_using] = ACTIONS(4021), - [anon_sym_static_assert] = ACTIONS(4024), + [anon_sym_friend] = ACTIONS(4089), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(4091), + [anon_sym_static_assert] = ACTIONS(4093), + [sym_semgrep_metavar] = ACTIONS(4095), }, - [821] = { - [sym_preproc_def] = STATE(2179), - [sym_preproc_function_def] = STATE(2179), - [sym_preproc_call] = STATE(2179), - [sym_preproc_if_in_field_declaration_list] = STATE(2179), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2179), - [sym_preproc_else_in_field_declaration_list] = STATE(10262), - [sym_preproc_elif_in_field_declaration_list] = STATE(10262), - [sym_type_definition] = STATE(2179), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6875), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7662), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(884), - [sym_field_declaration] = STATE(2179), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2179), - [sym_operator_cast] = STATE(8085), - [sym_inline_method_definition] = STATE(2179), - [sym_constructor_specifiers] = STATE(1942), - [sym_operator_cast_definition] = STATE(2179), - [sym_operator_cast_declaration] = STATE(2179), - [sym_constructor_or_destructor_definition] = STATE(2179), - [sym_constructor_or_destructor_declaration] = STATE(2179), - [sym_friend_declaration] = STATE(2179), - [sym_access_specifier] = STATE(10098), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2179), - [sym_alias_declaration] = STATE(2179), - [sym_static_assert_declaration] = STATE(2179), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8085), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(884), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1942), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(3862), - [aux_sym_preproc_if_token1] = ACTIONS(3864), - [aux_sym_preproc_if_token2] = ACTIONS(4027), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3868), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3870), - [aux_sym_preproc_else_token1] = ACTIONS(3694), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), - [sym_preproc_directive] = ACTIONS(3872), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [835] = { + [sym_preproc_def] = STATE(2347), + [sym_preproc_function_def] = STATE(2347), + [sym_preproc_call] = STATE(2347), + [sym_preproc_if_in_field_declaration_list] = STATE(2347), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2347), + [sym_type_definition] = STATE(2347), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6437), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7306), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(868), + [sym_field_declaration] = STATE(2347), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2347), + [sym_operator_cast] = STATE(7731), + [sym_inline_method_definition] = STATE(2347), + [sym_constructor_specifiers] = STATE(1938), + [sym_operator_cast_definition] = STATE(2347), + [sym_operator_cast_declaration] = STATE(2347), + [sym_constructor_or_destructor_definition] = STATE(2347), + [sym_constructor_or_destructor_declaration] = STATE(2347), + [sym_friend_declaration] = STATE(2347), + [sym_access_specifier] = STATE(10086), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2347), + [sym_alias_declaration] = STATE(2347), + [sym_static_assert_declaration] = STATE(2347), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7731), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2347), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(868), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1938), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(4041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4043), + [aux_sym_preproc_if_token1] = ACTIONS(4045), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4049), + [sym_preproc_directive] = ACTIONS(4051), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(3874), - [anon_sym_typedef] = ACTIONS(3876), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(4053), + [anon_sym_typedef] = ACTIONS(4055), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(4121), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3265), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -178374,120 +170358,251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(3878), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(4059), [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(3880), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(3882), - [anon_sym_static_assert] = ACTIONS(3884), + [anon_sym_friend] = ACTIONS(4061), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(4063), + [anon_sym_static_assert] = ACTIONS(4065), + [sym_semgrep_metavar] = ACTIONS(4067), }, - [822] = { - [sym_preproc_def] = STATE(2179), - [sym_preproc_function_def] = STATE(2179), - [sym_preproc_call] = STATE(2179), - [sym_preproc_if_in_field_declaration_list] = STATE(2179), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2179), - [sym_preproc_else_in_field_declaration_list] = STATE(10677), - [sym_preproc_elif_in_field_declaration_list] = STATE(10677), - [sym_type_definition] = STATE(2179), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6875), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7662), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(808), - [sym_field_declaration] = STATE(2179), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2179), - [sym_operator_cast] = STATE(8085), - [sym_inline_method_definition] = STATE(2179), - [sym_constructor_specifiers] = STATE(1942), - [sym_operator_cast_definition] = STATE(2179), - [sym_operator_cast_declaration] = STATE(2179), - [sym_constructor_or_destructor_definition] = STATE(2179), - [sym_constructor_or_destructor_declaration] = STATE(2179), - [sym_friend_declaration] = STATE(2179), - [sym_access_specifier] = STATE(10098), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2179), - [sym_alias_declaration] = STATE(2179), - [sym_static_assert_declaration] = STATE(2179), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8085), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(808), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1942), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(3862), - [aux_sym_preproc_if_token1] = ACTIONS(3864), - [aux_sym_preproc_if_token2] = ACTIONS(4029), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3868), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3870), - [aux_sym_preproc_else_token1] = ACTIONS(3694), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), - [sym_preproc_directive] = ACTIONS(3872), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [836] = { + [ts_builtin_sym_end] = ACTIONS(3225), + [sym_identifier] = ACTIONS(3223), + [aux_sym_preproc_include_token1] = ACTIONS(3223), + [aux_sym_preproc_def_token1] = ACTIONS(3223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3225), + [aux_sym_preproc_if_token1] = ACTIONS(3223), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3223), + [sym_preproc_directive] = ACTIONS(3223), + [anon_sym_LPAREN2] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3225), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(3223), + [anon_sym_PLUS] = ACTIONS(3223), + [anon_sym_STAR] = ACTIONS(3225), + [anon_sym_AMP_AMP] = ACTIONS(3225), + [anon_sym_AMP] = ACTIONS(3223), + [anon_sym___extension__] = ACTIONS(3223), + [anon_sym_typedef] = ACTIONS(3223), + [anon_sym_extern] = ACTIONS(3223), + [anon_sym___attribute__] = ACTIONS(3223), + [anon_sym_COLON_COLON] = ACTIONS(3225), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3225), + [anon_sym___declspec] = ACTIONS(3223), + [anon_sym___based] = ACTIONS(3223), + [anon_sym___cdecl] = ACTIONS(3223), + [anon_sym___clrcall] = ACTIONS(3223), + [anon_sym___stdcall] = ACTIONS(3223), + [anon_sym___fastcall] = ACTIONS(3223), + [anon_sym___thiscall] = ACTIONS(3223), + [anon_sym___vectorcall] = ACTIONS(3223), + [anon_sym_LBRACE] = ACTIONS(3225), + [anon_sym_signed] = ACTIONS(3223), + [anon_sym_unsigned] = ACTIONS(3223), + [anon_sym_long] = ACTIONS(3223), + [anon_sym_short] = ACTIONS(3223), + [anon_sym_LBRACK] = ACTIONS(3223), + [anon_sym_static] = ACTIONS(3223), + [anon_sym_register] = ACTIONS(3223), + [anon_sym_inline] = ACTIONS(3223), + [anon_sym___inline] = ACTIONS(3223), + [anon_sym___inline__] = ACTIONS(3223), + [anon_sym___forceinline] = ACTIONS(3223), + [anon_sym_thread_local] = ACTIONS(3223), + [anon_sym___thread] = ACTIONS(3223), + [anon_sym_const] = ACTIONS(3223), + [anon_sym_constexpr] = ACTIONS(3223), + [anon_sym_volatile] = ACTIONS(3223), + [anon_sym_restrict] = ACTIONS(3223), + [anon_sym___restrict__] = ACTIONS(3223), + [anon_sym__Atomic] = ACTIONS(3223), + [anon_sym__Noreturn] = ACTIONS(3223), + [anon_sym_noreturn] = ACTIONS(3223), + [anon_sym_mutable] = ACTIONS(3223), + [anon_sym_constinit] = ACTIONS(3223), + [anon_sym_consteval] = ACTIONS(3223), + [sym_primitive_type] = ACTIONS(3223), + [anon_sym_enum] = ACTIONS(3223), + [anon_sym_class] = ACTIONS(3223), + [anon_sym_struct] = ACTIONS(3223), + [anon_sym_union] = ACTIONS(3223), + [anon_sym_if] = ACTIONS(3223), + [anon_sym_switch] = ACTIONS(3223), + [anon_sym_case] = ACTIONS(3223), + [anon_sym_default] = ACTIONS(3223), + [anon_sym_while] = ACTIONS(3223), + [anon_sym_do] = ACTIONS(3223), + [anon_sym_for] = ACTIONS(3223), + [anon_sym_return] = ACTIONS(3223), + [anon_sym_break] = ACTIONS(3223), + [anon_sym_continue] = ACTIONS(3223), + [anon_sym_goto] = ACTIONS(3223), + [anon_sym_not] = ACTIONS(3223), + [anon_sym_compl] = ACTIONS(3223), + [anon_sym_DASH_DASH] = ACTIONS(3225), + [anon_sym_PLUS_PLUS] = ACTIONS(3225), + [anon_sym_sizeof] = ACTIONS(3223), + [anon_sym___alignof__] = ACTIONS(3223), + [anon_sym___alignof] = ACTIONS(3223), + [anon_sym__alignof] = ACTIONS(3223), + [anon_sym_alignof] = ACTIONS(3223), + [anon_sym__Alignof] = ACTIONS(3223), + [anon_sym_offsetof] = ACTIONS(3223), + [anon_sym__Generic] = ACTIONS(3223), + [anon_sym_asm] = ACTIONS(3223), + [anon_sym___asm__] = ACTIONS(3223), + [sym_number_literal] = ACTIONS(3225), + [anon_sym_L_SQUOTE] = ACTIONS(3225), + [anon_sym_u_SQUOTE] = ACTIONS(3225), + [anon_sym_U_SQUOTE] = ACTIONS(3225), + [anon_sym_u8_SQUOTE] = ACTIONS(3225), + [anon_sym_SQUOTE] = ACTIONS(3225), + [anon_sym_L_DQUOTE] = ACTIONS(3225), + [anon_sym_u_DQUOTE] = ACTIONS(3225), + [anon_sym_U_DQUOTE] = ACTIONS(3225), + [anon_sym_u8_DQUOTE] = ACTIONS(3225), + [anon_sym_DQUOTE] = ACTIONS(3225), + [sym_true] = ACTIONS(3223), + [sym_false] = ACTIONS(3223), + [anon_sym_NULL] = ACTIONS(3223), + [anon_sym_nullptr] = ACTIONS(3223), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3223), + [anon_sym_decltype] = ACTIONS(3223), + [anon_sym_virtual] = ACTIONS(3223), + [anon_sym_alignas] = ACTIONS(3223), + [anon_sym_explicit] = ACTIONS(3223), + [anon_sym_typename] = ACTIONS(3223), + [anon_sym_template] = ACTIONS(3223), + [anon_sym_operator] = ACTIONS(3223), + [anon_sym_try] = ACTIONS(3223), + [anon_sym_delete] = ACTIONS(3223), + [anon_sym_throw] = ACTIONS(3223), + [anon_sym_namespace] = ACTIONS(3223), + [anon_sym_using] = ACTIONS(3223), + [anon_sym_static_assert] = ACTIONS(3223), + [anon_sym_concept] = ACTIONS(3223), + [anon_sym_co_return] = ACTIONS(3223), + [anon_sym_co_yield] = ACTIONS(3223), + [anon_sym_R_DQUOTE] = ACTIONS(3225), + [anon_sym_LR_DQUOTE] = ACTIONS(3225), + [anon_sym_uR_DQUOTE] = ACTIONS(3225), + [anon_sym_UR_DQUOTE] = ACTIONS(3225), + [anon_sym_u8R_DQUOTE] = ACTIONS(3225), + [anon_sym_co_await] = ACTIONS(3223), + [anon_sym_new] = ACTIONS(3223), + [anon_sym_requires] = ACTIONS(3223), + [sym_this] = ACTIONS(3223), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3225), + [sym_semgrep_named_ellipsis] = ACTIONS(3225), + }, + [837] = { + [sym_preproc_def] = STATE(2347), + [sym_preproc_function_def] = STATE(2347), + [sym_preproc_call] = STATE(2347), + [sym_preproc_if_in_field_declaration_list] = STATE(2347), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2347), + [sym_type_definition] = STATE(2347), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6437), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7306), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(841), + [sym_field_declaration] = STATE(2347), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2347), + [sym_operator_cast] = STATE(7731), + [sym_inline_method_definition] = STATE(2347), + [sym_constructor_specifiers] = STATE(1938), + [sym_operator_cast_definition] = STATE(2347), + [sym_operator_cast_declaration] = STATE(2347), + [sym_constructor_or_destructor_definition] = STATE(2347), + [sym_constructor_or_destructor_declaration] = STATE(2347), + [sym_friend_declaration] = STATE(2347), + [sym_access_specifier] = STATE(10086), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2347), + [sym_alias_declaration] = STATE(2347), + [sym_static_assert_declaration] = STATE(2347), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7731), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2347), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(841), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1938), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(4041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4043), + [aux_sym_preproc_if_token1] = ACTIONS(4045), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4049), + [sym_preproc_directive] = ACTIONS(4051), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(3874), - [anon_sym_typedef] = ACTIONS(3876), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(4053), + [anon_sym_typedef] = ACTIONS(4055), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(4123), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3265), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -178507,5440 +170622,953 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(3878), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(4059), [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(3880), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(3882), - [anon_sym_static_assert] = ACTIONS(3884), - }, - [823] = { - [ts_builtin_sym_end] = ACTIONS(3509), - [sym_identifier] = ACTIONS(3507), - [aux_sym_preproc_include_token1] = ACTIONS(3507), - [aux_sym_preproc_def_token1] = ACTIONS(3507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3509), - [aux_sym_preproc_if_token1] = ACTIONS(3507), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3507), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3507), - [sym_preproc_directive] = ACTIONS(3507), - [anon_sym_LPAREN2] = ACTIONS(3509), - [anon_sym_BANG] = ACTIONS(3509), - [anon_sym_TILDE] = ACTIONS(3509), - [anon_sym_DASH] = ACTIONS(3507), - [anon_sym_PLUS] = ACTIONS(3507), - [anon_sym_STAR] = ACTIONS(3509), - [anon_sym_AMP_AMP] = ACTIONS(3509), - [anon_sym_AMP] = ACTIONS(3507), - [anon_sym___extension__] = ACTIONS(3507), - [anon_sym_typedef] = ACTIONS(3507), - [anon_sym_extern] = ACTIONS(3507), - [anon_sym___attribute__] = ACTIONS(3507), - [anon_sym_COLON_COLON] = ACTIONS(3509), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3509), - [anon_sym___declspec] = ACTIONS(3507), - [anon_sym___based] = ACTIONS(3507), - [anon_sym___cdecl] = ACTIONS(3507), - [anon_sym___clrcall] = ACTIONS(3507), - [anon_sym___stdcall] = ACTIONS(3507), - [anon_sym___fastcall] = ACTIONS(3507), - [anon_sym___thiscall] = ACTIONS(3507), - [anon_sym___vectorcall] = ACTIONS(3507), - [anon_sym_LBRACE] = ACTIONS(3509), - [anon_sym_signed] = ACTIONS(3507), - [anon_sym_unsigned] = ACTIONS(3507), - [anon_sym_long] = ACTIONS(3507), - [anon_sym_short] = ACTIONS(3507), - [anon_sym_LBRACK] = ACTIONS(3507), - [anon_sym_static] = ACTIONS(3507), - [anon_sym_register] = ACTIONS(3507), - [anon_sym_inline] = ACTIONS(3507), - [anon_sym___inline] = ACTIONS(3507), - [anon_sym___inline__] = ACTIONS(3507), - [anon_sym___forceinline] = ACTIONS(3507), - [anon_sym_thread_local] = ACTIONS(3507), - [anon_sym___thread] = ACTIONS(3507), - [anon_sym_const] = ACTIONS(3507), - [anon_sym_constexpr] = ACTIONS(3507), - [anon_sym_volatile] = ACTIONS(3507), - [anon_sym_restrict] = ACTIONS(3507), - [anon_sym___restrict__] = ACTIONS(3507), - [anon_sym__Atomic] = ACTIONS(3507), - [anon_sym__Noreturn] = ACTIONS(3507), - [anon_sym_noreturn] = ACTIONS(3507), - [anon_sym_mutable] = ACTIONS(3507), - [anon_sym_constinit] = ACTIONS(3507), - [anon_sym_consteval] = ACTIONS(3507), - [sym_primitive_type] = ACTIONS(3507), - [anon_sym_enum] = ACTIONS(3507), - [anon_sym_class] = ACTIONS(3507), - [anon_sym_struct] = ACTIONS(3507), - [anon_sym_union] = ACTIONS(3507), - [anon_sym_if] = ACTIONS(3507), - [anon_sym_switch] = ACTIONS(3507), - [anon_sym_case] = ACTIONS(3507), - [anon_sym_default] = ACTIONS(3507), - [anon_sym_while] = ACTIONS(3507), - [anon_sym_do] = ACTIONS(3507), - [anon_sym_for] = ACTIONS(3507), - [anon_sym_return] = ACTIONS(3507), - [anon_sym_break] = ACTIONS(3507), - [anon_sym_continue] = ACTIONS(3507), - [anon_sym_goto] = ACTIONS(3507), - [anon_sym_not] = ACTIONS(3507), - [anon_sym_compl] = ACTIONS(3507), - [anon_sym_DASH_DASH] = ACTIONS(3509), - [anon_sym_PLUS_PLUS] = ACTIONS(3509), - [anon_sym_sizeof] = ACTIONS(3507), - [anon_sym___alignof__] = ACTIONS(3507), - [anon_sym___alignof] = ACTIONS(3507), - [anon_sym__alignof] = ACTIONS(3507), - [anon_sym_alignof] = ACTIONS(3507), - [anon_sym__Alignof] = ACTIONS(3507), - [anon_sym_offsetof] = ACTIONS(3507), - [anon_sym__Generic] = ACTIONS(3507), - [anon_sym_asm] = ACTIONS(3507), - [anon_sym___asm__] = ACTIONS(3507), - [sym_number_literal] = ACTIONS(3509), - [anon_sym_L_SQUOTE] = ACTIONS(3509), - [anon_sym_u_SQUOTE] = ACTIONS(3509), - [anon_sym_U_SQUOTE] = ACTIONS(3509), - [anon_sym_u8_SQUOTE] = ACTIONS(3509), - [anon_sym_SQUOTE] = ACTIONS(3509), - [anon_sym_L_DQUOTE] = ACTIONS(3509), - [anon_sym_u_DQUOTE] = ACTIONS(3509), - [anon_sym_U_DQUOTE] = ACTIONS(3509), - [anon_sym_u8_DQUOTE] = ACTIONS(3509), - [anon_sym_DQUOTE] = ACTIONS(3509), - [sym_true] = ACTIONS(3507), - [sym_false] = ACTIONS(3507), - [anon_sym_NULL] = ACTIONS(3507), - [anon_sym_nullptr] = ACTIONS(3507), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3507), - [anon_sym_decltype] = ACTIONS(3507), - [anon_sym_virtual] = ACTIONS(3507), - [anon_sym_alignas] = ACTIONS(3507), - [anon_sym_explicit] = ACTIONS(3507), - [anon_sym_typename] = ACTIONS(3507), - [anon_sym_template] = ACTIONS(3507), - [anon_sym_operator] = ACTIONS(3507), - [anon_sym_try] = ACTIONS(3507), - [anon_sym_delete] = ACTIONS(3507), - [anon_sym_throw] = ACTIONS(3507), - [anon_sym_namespace] = ACTIONS(3507), - [anon_sym_using] = ACTIONS(3507), - [anon_sym_static_assert] = ACTIONS(3507), - [anon_sym_concept] = ACTIONS(3507), - [anon_sym_co_return] = ACTIONS(3507), - [anon_sym_co_yield] = ACTIONS(3507), - [anon_sym_R_DQUOTE] = ACTIONS(3509), - [anon_sym_LR_DQUOTE] = ACTIONS(3509), - [anon_sym_uR_DQUOTE] = ACTIONS(3509), - [anon_sym_UR_DQUOTE] = ACTIONS(3509), - [anon_sym_u8R_DQUOTE] = ACTIONS(3509), - [anon_sym_co_await] = ACTIONS(3507), - [anon_sym_new] = ACTIONS(3507), - [anon_sym_requires] = ACTIONS(3507), - [sym_this] = ACTIONS(3507), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3509), - [sym_semgrep_named_ellipsis] = ACTIONS(3509), - }, - [824] = { - [ts_builtin_sym_end] = ACTIONS(3259), - [sym_identifier] = ACTIONS(3257), - [aux_sym_preproc_include_token1] = ACTIONS(3257), - [aux_sym_preproc_def_token1] = ACTIONS(3257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3259), - [aux_sym_preproc_if_token1] = ACTIONS(3257), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3257), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3257), - [sym_preproc_directive] = ACTIONS(3257), - [anon_sym_LPAREN2] = ACTIONS(3259), - [anon_sym_BANG] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3257), - [anon_sym_PLUS] = ACTIONS(3257), - [anon_sym_STAR] = ACTIONS(3259), - [anon_sym_AMP_AMP] = ACTIONS(3259), - [anon_sym_AMP] = ACTIONS(3257), - [anon_sym___extension__] = ACTIONS(3257), - [anon_sym_typedef] = ACTIONS(3257), - [anon_sym_extern] = ACTIONS(3257), - [anon_sym___attribute__] = ACTIONS(3257), - [anon_sym_COLON_COLON] = ACTIONS(3259), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3259), - [anon_sym___declspec] = ACTIONS(3257), - [anon_sym___based] = ACTIONS(3257), - [anon_sym___cdecl] = ACTIONS(3257), - [anon_sym___clrcall] = ACTIONS(3257), - [anon_sym___stdcall] = ACTIONS(3257), - [anon_sym___fastcall] = ACTIONS(3257), - [anon_sym___thiscall] = ACTIONS(3257), - [anon_sym___vectorcall] = ACTIONS(3257), - [anon_sym_LBRACE] = ACTIONS(3259), - [anon_sym_signed] = ACTIONS(3257), - [anon_sym_unsigned] = ACTIONS(3257), - [anon_sym_long] = ACTIONS(3257), - [anon_sym_short] = ACTIONS(3257), - [anon_sym_LBRACK] = ACTIONS(3257), - [anon_sym_static] = ACTIONS(3257), - [anon_sym_register] = ACTIONS(3257), - [anon_sym_inline] = ACTIONS(3257), - [anon_sym___inline] = ACTIONS(3257), - [anon_sym___inline__] = ACTIONS(3257), - [anon_sym___forceinline] = ACTIONS(3257), - [anon_sym_thread_local] = ACTIONS(3257), - [anon_sym___thread] = ACTIONS(3257), - [anon_sym_const] = ACTIONS(3257), - [anon_sym_constexpr] = ACTIONS(3257), - [anon_sym_volatile] = ACTIONS(3257), - [anon_sym_restrict] = ACTIONS(3257), - [anon_sym___restrict__] = ACTIONS(3257), - [anon_sym__Atomic] = ACTIONS(3257), - [anon_sym__Noreturn] = ACTIONS(3257), - [anon_sym_noreturn] = ACTIONS(3257), - [anon_sym_mutable] = ACTIONS(3257), - [anon_sym_constinit] = ACTIONS(3257), - [anon_sym_consteval] = ACTIONS(3257), - [sym_primitive_type] = ACTIONS(3257), - [anon_sym_enum] = ACTIONS(3257), - [anon_sym_class] = ACTIONS(3257), - [anon_sym_struct] = ACTIONS(3257), - [anon_sym_union] = ACTIONS(3257), - [anon_sym_if] = ACTIONS(3257), - [anon_sym_switch] = ACTIONS(3257), - [anon_sym_case] = ACTIONS(3257), - [anon_sym_default] = ACTIONS(3257), - [anon_sym_while] = ACTIONS(3257), - [anon_sym_do] = ACTIONS(3257), - [anon_sym_for] = ACTIONS(3257), - [anon_sym_return] = ACTIONS(3257), - [anon_sym_break] = ACTIONS(3257), - [anon_sym_continue] = ACTIONS(3257), - [anon_sym_goto] = ACTIONS(3257), - [anon_sym_not] = ACTIONS(3257), - [anon_sym_compl] = ACTIONS(3257), - [anon_sym_DASH_DASH] = ACTIONS(3259), - [anon_sym_PLUS_PLUS] = ACTIONS(3259), - [anon_sym_sizeof] = ACTIONS(3257), - [anon_sym___alignof__] = ACTIONS(3257), - [anon_sym___alignof] = ACTIONS(3257), - [anon_sym__alignof] = ACTIONS(3257), - [anon_sym_alignof] = ACTIONS(3257), - [anon_sym__Alignof] = ACTIONS(3257), - [anon_sym_offsetof] = ACTIONS(3257), - [anon_sym__Generic] = ACTIONS(3257), - [anon_sym_asm] = ACTIONS(3257), - [anon_sym___asm__] = ACTIONS(3257), - [sym_number_literal] = ACTIONS(3259), - [anon_sym_L_SQUOTE] = ACTIONS(3259), - [anon_sym_u_SQUOTE] = ACTIONS(3259), - [anon_sym_U_SQUOTE] = ACTIONS(3259), - [anon_sym_u8_SQUOTE] = ACTIONS(3259), - [anon_sym_SQUOTE] = ACTIONS(3259), - [anon_sym_L_DQUOTE] = ACTIONS(3259), - [anon_sym_u_DQUOTE] = ACTIONS(3259), - [anon_sym_U_DQUOTE] = ACTIONS(3259), - [anon_sym_u8_DQUOTE] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(3259), - [sym_true] = ACTIONS(3257), - [sym_false] = ACTIONS(3257), - [anon_sym_NULL] = ACTIONS(3257), - [anon_sym_nullptr] = ACTIONS(3257), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3257), - [anon_sym_decltype] = ACTIONS(3257), - [anon_sym_virtual] = ACTIONS(3257), - [anon_sym_alignas] = ACTIONS(3257), - [anon_sym_explicit] = ACTIONS(3257), - [anon_sym_typename] = ACTIONS(3257), - [anon_sym_template] = ACTIONS(3257), - [anon_sym_operator] = ACTIONS(3257), - [anon_sym_try] = ACTIONS(3257), - [anon_sym_delete] = ACTIONS(3257), - [anon_sym_throw] = ACTIONS(3257), - [anon_sym_namespace] = ACTIONS(3257), - [anon_sym_using] = ACTIONS(3257), - [anon_sym_static_assert] = ACTIONS(3257), - [anon_sym_concept] = ACTIONS(3257), - [anon_sym_co_return] = ACTIONS(3257), - [anon_sym_co_yield] = ACTIONS(3257), - [anon_sym_R_DQUOTE] = ACTIONS(3259), - [anon_sym_LR_DQUOTE] = ACTIONS(3259), - [anon_sym_uR_DQUOTE] = ACTIONS(3259), - [anon_sym_UR_DQUOTE] = ACTIONS(3259), - [anon_sym_u8R_DQUOTE] = ACTIONS(3259), - [anon_sym_co_await] = ACTIONS(3257), - [anon_sym_new] = ACTIONS(3257), - [anon_sym_requires] = ACTIONS(3257), - [sym_this] = ACTIONS(3257), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3259), - [sym_semgrep_named_ellipsis] = ACTIONS(3259), - }, - [825] = { - [ts_builtin_sym_end] = ACTIONS(3620), - [sym_identifier] = ACTIONS(3618), - [aux_sym_preproc_include_token1] = ACTIONS(3618), - [aux_sym_preproc_def_token1] = ACTIONS(3618), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3620), - [aux_sym_preproc_if_token1] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), - [sym_preproc_directive] = ACTIONS(3618), - [anon_sym_LPAREN2] = ACTIONS(3620), - [anon_sym_BANG] = ACTIONS(3620), - [anon_sym_TILDE] = ACTIONS(3620), - [anon_sym_DASH] = ACTIONS(3618), - [anon_sym_PLUS] = ACTIONS(3618), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_AMP_AMP] = ACTIONS(3620), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym___extension__] = ACTIONS(3618), - [anon_sym_typedef] = ACTIONS(3618), - [anon_sym_extern] = ACTIONS(3618), - [anon_sym___attribute__] = ACTIONS(3618), - [anon_sym_COLON_COLON] = ACTIONS(3620), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), - [anon_sym___declspec] = ACTIONS(3618), - [anon_sym___based] = ACTIONS(3618), - [anon_sym___cdecl] = ACTIONS(3618), - [anon_sym___clrcall] = ACTIONS(3618), - [anon_sym___stdcall] = ACTIONS(3618), - [anon_sym___fastcall] = ACTIONS(3618), - [anon_sym___thiscall] = ACTIONS(3618), - [anon_sym___vectorcall] = ACTIONS(3618), - [anon_sym_LBRACE] = ACTIONS(3620), - [anon_sym_signed] = ACTIONS(3618), - [anon_sym_unsigned] = ACTIONS(3618), - [anon_sym_long] = ACTIONS(3618), - [anon_sym_short] = ACTIONS(3618), - [anon_sym_LBRACK] = ACTIONS(3618), - [anon_sym_static] = ACTIONS(3618), - [anon_sym_register] = ACTIONS(3618), - [anon_sym_inline] = ACTIONS(3618), - [anon_sym___inline] = ACTIONS(3618), - [anon_sym___inline__] = ACTIONS(3618), - [anon_sym___forceinline] = ACTIONS(3618), - [anon_sym_thread_local] = ACTIONS(3618), - [anon_sym___thread] = ACTIONS(3618), - [anon_sym_const] = ACTIONS(3618), - [anon_sym_constexpr] = ACTIONS(3618), - [anon_sym_volatile] = ACTIONS(3618), - [anon_sym_restrict] = ACTIONS(3618), - [anon_sym___restrict__] = ACTIONS(3618), - [anon_sym__Atomic] = ACTIONS(3618), - [anon_sym__Noreturn] = ACTIONS(3618), - [anon_sym_noreturn] = ACTIONS(3618), - [anon_sym_mutable] = ACTIONS(3618), - [anon_sym_constinit] = ACTIONS(3618), - [anon_sym_consteval] = ACTIONS(3618), - [sym_primitive_type] = ACTIONS(3618), - [anon_sym_enum] = ACTIONS(3618), - [anon_sym_class] = ACTIONS(3618), - [anon_sym_struct] = ACTIONS(3618), - [anon_sym_union] = ACTIONS(3618), - [anon_sym_if] = ACTIONS(3618), - [anon_sym_switch] = ACTIONS(3618), - [anon_sym_case] = ACTIONS(3618), - [anon_sym_default] = ACTIONS(3618), - [anon_sym_while] = ACTIONS(3618), - [anon_sym_do] = ACTIONS(3618), - [anon_sym_for] = ACTIONS(3618), - [anon_sym_return] = ACTIONS(3618), - [anon_sym_break] = ACTIONS(3618), - [anon_sym_continue] = ACTIONS(3618), - [anon_sym_goto] = ACTIONS(3618), - [anon_sym_not] = ACTIONS(3618), - [anon_sym_compl] = ACTIONS(3618), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_sizeof] = ACTIONS(3618), - [anon_sym___alignof__] = ACTIONS(3618), - [anon_sym___alignof] = ACTIONS(3618), - [anon_sym__alignof] = ACTIONS(3618), - [anon_sym_alignof] = ACTIONS(3618), - [anon_sym__Alignof] = ACTIONS(3618), - [anon_sym_offsetof] = ACTIONS(3618), - [anon_sym__Generic] = ACTIONS(3618), - [anon_sym_asm] = ACTIONS(3618), - [anon_sym___asm__] = ACTIONS(3618), - [sym_number_literal] = ACTIONS(3620), - [anon_sym_L_SQUOTE] = ACTIONS(3620), - [anon_sym_u_SQUOTE] = ACTIONS(3620), - [anon_sym_U_SQUOTE] = ACTIONS(3620), - [anon_sym_u8_SQUOTE] = ACTIONS(3620), - [anon_sym_SQUOTE] = ACTIONS(3620), - [anon_sym_L_DQUOTE] = ACTIONS(3620), - [anon_sym_u_DQUOTE] = ACTIONS(3620), - [anon_sym_U_DQUOTE] = ACTIONS(3620), - [anon_sym_u8_DQUOTE] = ACTIONS(3620), - [anon_sym_DQUOTE] = ACTIONS(3620), - [sym_true] = ACTIONS(3618), - [sym_false] = ACTIONS(3618), - [anon_sym_NULL] = ACTIONS(3618), - [anon_sym_nullptr] = ACTIONS(3618), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3618), - [anon_sym_decltype] = ACTIONS(3618), - [anon_sym_virtual] = ACTIONS(3618), - [anon_sym_alignas] = ACTIONS(3618), - [anon_sym_explicit] = ACTIONS(3618), - [anon_sym_typename] = ACTIONS(3618), - [anon_sym_template] = ACTIONS(3618), - [anon_sym_operator] = ACTIONS(3618), - [anon_sym_try] = ACTIONS(3618), - [anon_sym_delete] = ACTIONS(3618), - [anon_sym_throw] = ACTIONS(3618), - [anon_sym_namespace] = ACTIONS(3618), - [anon_sym_using] = ACTIONS(3618), - [anon_sym_static_assert] = ACTIONS(3618), - [anon_sym_concept] = ACTIONS(3618), - [anon_sym_co_return] = ACTIONS(3618), - [anon_sym_co_yield] = ACTIONS(3618), - [anon_sym_R_DQUOTE] = ACTIONS(3620), - [anon_sym_LR_DQUOTE] = ACTIONS(3620), - [anon_sym_uR_DQUOTE] = ACTIONS(3620), - [anon_sym_UR_DQUOTE] = ACTIONS(3620), - [anon_sym_u8R_DQUOTE] = ACTIONS(3620), - [anon_sym_co_await] = ACTIONS(3618), - [anon_sym_new] = ACTIONS(3618), - [anon_sym_requires] = ACTIONS(3618), - [sym_this] = ACTIONS(3618), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3620), - [sym_semgrep_named_ellipsis] = ACTIONS(3620), - }, - [826] = { - [ts_builtin_sym_end] = ACTIONS(3267), - [sym_identifier] = ACTIONS(3265), - [aux_sym_preproc_include_token1] = ACTIONS(3265), - [aux_sym_preproc_def_token1] = ACTIONS(3265), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3267), - [aux_sym_preproc_if_token1] = ACTIONS(3265), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3265), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3265), - [sym_preproc_directive] = ACTIONS(3265), - [anon_sym_LPAREN2] = ACTIONS(3267), - [anon_sym_BANG] = ACTIONS(3267), - [anon_sym_TILDE] = ACTIONS(3267), - [anon_sym_DASH] = ACTIONS(3265), - [anon_sym_PLUS] = ACTIONS(3265), - [anon_sym_STAR] = ACTIONS(3267), - [anon_sym_AMP_AMP] = ACTIONS(3267), - [anon_sym_AMP] = ACTIONS(3265), - [anon_sym___extension__] = ACTIONS(3265), - [anon_sym_typedef] = ACTIONS(3265), - [anon_sym_extern] = ACTIONS(3265), - [anon_sym___attribute__] = ACTIONS(3265), - [anon_sym_COLON_COLON] = ACTIONS(3267), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3267), - [anon_sym___declspec] = ACTIONS(3265), - [anon_sym___based] = ACTIONS(3265), - [anon_sym___cdecl] = ACTIONS(3265), - [anon_sym___clrcall] = ACTIONS(3265), - [anon_sym___stdcall] = ACTIONS(3265), - [anon_sym___fastcall] = ACTIONS(3265), - [anon_sym___thiscall] = ACTIONS(3265), - [anon_sym___vectorcall] = ACTIONS(3265), - [anon_sym_LBRACE] = ACTIONS(3267), - [anon_sym_signed] = ACTIONS(3265), - [anon_sym_unsigned] = ACTIONS(3265), - [anon_sym_long] = ACTIONS(3265), - [anon_sym_short] = ACTIONS(3265), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_static] = ACTIONS(3265), - [anon_sym_register] = ACTIONS(3265), - [anon_sym_inline] = ACTIONS(3265), - [anon_sym___inline] = ACTIONS(3265), - [anon_sym___inline__] = ACTIONS(3265), - [anon_sym___forceinline] = ACTIONS(3265), - [anon_sym_thread_local] = ACTIONS(3265), - [anon_sym___thread] = ACTIONS(3265), - [anon_sym_const] = ACTIONS(3265), - [anon_sym_constexpr] = ACTIONS(3265), - [anon_sym_volatile] = ACTIONS(3265), - [anon_sym_restrict] = ACTIONS(3265), - [anon_sym___restrict__] = ACTIONS(3265), - [anon_sym__Atomic] = ACTIONS(3265), - [anon_sym__Noreturn] = ACTIONS(3265), - [anon_sym_noreturn] = ACTIONS(3265), - [anon_sym_mutable] = ACTIONS(3265), - [anon_sym_constinit] = ACTIONS(3265), - [anon_sym_consteval] = ACTIONS(3265), - [sym_primitive_type] = ACTIONS(3265), - [anon_sym_enum] = ACTIONS(3265), - [anon_sym_class] = ACTIONS(3265), - [anon_sym_struct] = ACTIONS(3265), - [anon_sym_union] = ACTIONS(3265), - [anon_sym_if] = ACTIONS(3265), - [anon_sym_switch] = ACTIONS(3265), - [anon_sym_case] = ACTIONS(3265), - [anon_sym_default] = ACTIONS(3265), - [anon_sym_while] = ACTIONS(3265), - [anon_sym_do] = ACTIONS(3265), - [anon_sym_for] = ACTIONS(3265), - [anon_sym_return] = ACTIONS(3265), - [anon_sym_break] = ACTIONS(3265), - [anon_sym_continue] = ACTIONS(3265), - [anon_sym_goto] = ACTIONS(3265), - [anon_sym_not] = ACTIONS(3265), - [anon_sym_compl] = ACTIONS(3265), - [anon_sym_DASH_DASH] = ACTIONS(3267), - [anon_sym_PLUS_PLUS] = ACTIONS(3267), - [anon_sym_sizeof] = ACTIONS(3265), - [anon_sym___alignof__] = ACTIONS(3265), - [anon_sym___alignof] = ACTIONS(3265), - [anon_sym__alignof] = ACTIONS(3265), - [anon_sym_alignof] = ACTIONS(3265), - [anon_sym__Alignof] = ACTIONS(3265), - [anon_sym_offsetof] = ACTIONS(3265), - [anon_sym__Generic] = ACTIONS(3265), - [anon_sym_asm] = ACTIONS(3265), - [anon_sym___asm__] = ACTIONS(3265), - [sym_number_literal] = ACTIONS(3267), - [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(3267), - [anon_sym_u_DQUOTE] = ACTIONS(3267), - [anon_sym_U_DQUOTE] = ACTIONS(3267), - [anon_sym_u8_DQUOTE] = ACTIONS(3267), - [anon_sym_DQUOTE] = ACTIONS(3267), - [sym_true] = ACTIONS(3265), - [sym_false] = ACTIONS(3265), - [anon_sym_NULL] = ACTIONS(3265), - [anon_sym_nullptr] = ACTIONS(3265), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3265), - [anon_sym_decltype] = ACTIONS(3265), - [anon_sym_virtual] = ACTIONS(3265), - [anon_sym_alignas] = ACTIONS(3265), - [anon_sym_explicit] = ACTIONS(3265), - [anon_sym_typename] = ACTIONS(3265), - [anon_sym_template] = ACTIONS(3265), - [anon_sym_operator] = ACTIONS(3265), - [anon_sym_try] = ACTIONS(3265), - [anon_sym_delete] = ACTIONS(3265), - [anon_sym_throw] = ACTIONS(3265), - [anon_sym_namespace] = ACTIONS(3265), - [anon_sym_using] = ACTIONS(3265), - [anon_sym_static_assert] = ACTIONS(3265), - [anon_sym_concept] = ACTIONS(3265), - [anon_sym_co_return] = ACTIONS(3265), - [anon_sym_co_yield] = ACTIONS(3265), - [anon_sym_R_DQUOTE] = ACTIONS(3267), - [anon_sym_LR_DQUOTE] = ACTIONS(3267), - [anon_sym_uR_DQUOTE] = ACTIONS(3267), - [anon_sym_UR_DQUOTE] = ACTIONS(3267), - [anon_sym_u8R_DQUOTE] = ACTIONS(3267), - [anon_sym_co_await] = ACTIONS(3265), - [anon_sym_new] = ACTIONS(3265), - [anon_sym_requires] = ACTIONS(3265), - [sym_this] = ACTIONS(3265), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3267), - [sym_semgrep_named_ellipsis] = ACTIONS(3267), - }, - [827] = { - [ts_builtin_sym_end] = ACTIONS(3646), - [sym_identifier] = ACTIONS(3644), - [aux_sym_preproc_include_token1] = ACTIONS(3644), - [aux_sym_preproc_def_token1] = ACTIONS(3644), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3646), - [aux_sym_preproc_if_token1] = ACTIONS(3644), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3644), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3644), - [sym_preproc_directive] = ACTIONS(3644), - [anon_sym_LPAREN2] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3646), - [anon_sym_TILDE] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3644), - [anon_sym_PLUS] = ACTIONS(3644), - [anon_sym_STAR] = ACTIONS(3646), - [anon_sym_AMP_AMP] = ACTIONS(3646), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym___extension__] = ACTIONS(3644), - [anon_sym_typedef] = ACTIONS(3644), - [anon_sym_extern] = ACTIONS(3644), - [anon_sym___attribute__] = ACTIONS(3644), - [anon_sym_COLON_COLON] = ACTIONS(3646), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3646), - [anon_sym___declspec] = ACTIONS(3644), - [anon_sym___based] = ACTIONS(3644), - [anon_sym___cdecl] = ACTIONS(3644), - [anon_sym___clrcall] = ACTIONS(3644), - [anon_sym___stdcall] = ACTIONS(3644), - [anon_sym___fastcall] = ACTIONS(3644), - [anon_sym___thiscall] = ACTIONS(3644), - [anon_sym___vectorcall] = ACTIONS(3644), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_signed] = ACTIONS(3644), - [anon_sym_unsigned] = ACTIONS(3644), - [anon_sym_long] = ACTIONS(3644), - [anon_sym_short] = ACTIONS(3644), - [anon_sym_LBRACK] = ACTIONS(3644), - [anon_sym_static] = ACTIONS(3644), - [anon_sym_register] = ACTIONS(3644), - [anon_sym_inline] = ACTIONS(3644), - [anon_sym___inline] = ACTIONS(3644), - [anon_sym___inline__] = ACTIONS(3644), - [anon_sym___forceinline] = ACTIONS(3644), - [anon_sym_thread_local] = ACTIONS(3644), - [anon_sym___thread] = ACTIONS(3644), - [anon_sym_const] = ACTIONS(3644), - [anon_sym_constexpr] = ACTIONS(3644), - [anon_sym_volatile] = ACTIONS(3644), - [anon_sym_restrict] = ACTIONS(3644), - [anon_sym___restrict__] = ACTIONS(3644), - [anon_sym__Atomic] = ACTIONS(3644), - [anon_sym__Noreturn] = ACTIONS(3644), - [anon_sym_noreturn] = ACTIONS(3644), - [anon_sym_mutable] = ACTIONS(3644), - [anon_sym_constinit] = ACTIONS(3644), - [anon_sym_consteval] = ACTIONS(3644), - [sym_primitive_type] = ACTIONS(3644), - [anon_sym_enum] = ACTIONS(3644), - [anon_sym_class] = ACTIONS(3644), - [anon_sym_struct] = ACTIONS(3644), - [anon_sym_union] = ACTIONS(3644), - [anon_sym_if] = ACTIONS(3644), - [anon_sym_switch] = ACTIONS(3644), - [anon_sym_case] = ACTIONS(3644), - [anon_sym_default] = ACTIONS(3644), - [anon_sym_while] = ACTIONS(3644), - [anon_sym_do] = ACTIONS(3644), - [anon_sym_for] = ACTIONS(3644), - [anon_sym_return] = ACTIONS(3644), - [anon_sym_break] = ACTIONS(3644), - [anon_sym_continue] = ACTIONS(3644), - [anon_sym_goto] = ACTIONS(3644), - [anon_sym_not] = ACTIONS(3644), - [anon_sym_compl] = ACTIONS(3644), - [anon_sym_DASH_DASH] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3646), - [anon_sym_sizeof] = ACTIONS(3644), - [anon_sym___alignof__] = ACTIONS(3644), - [anon_sym___alignof] = ACTIONS(3644), - [anon_sym__alignof] = ACTIONS(3644), - [anon_sym_alignof] = ACTIONS(3644), - [anon_sym__Alignof] = ACTIONS(3644), - [anon_sym_offsetof] = ACTIONS(3644), - [anon_sym__Generic] = ACTIONS(3644), - [anon_sym_asm] = ACTIONS(3644), - [anon_sym___asm__] = ACTIONS(3644), - [sym_number_literal] = ACTIONS(3646), - [anon_sym_L_SQUOTE] = ACTIONS(3646), - [anon_sym_u_SQUOTE] = ACTIONS(3646), - [anon_sym_U_SQUOTE] = ACTIONS(3646), - [anon_sym_u8_SQUOTE] = ACTIONS(3646), - [anon_sym_SQUOTE] = ACTIONS(3646), - [anon_sym_L_DQUOTE] = ACTIONS(3646), - [anon_sym_u_DQUOTE] = ACTIONS(3646), - [anon_sym_U_DQUOTE] = ACTIONS(3646), - [anon_sym_u8_DQUOTE] = ACTIONS(3646), - [anon_sym_DQUOTE] = ACTIONS(3646), - [sym_true] = ACTIONS(3644), - [sym_false] = ACTIONS(3644), - [anon_sym_NULL] = ACTIONS(3644), - [anon_sym_nullptr] = ACTIONS(3644), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3644), - [anon_sym_decltype] = ACTIONS(3644), - [anon_sym_virtual] = ACTIONS(3644), - [anon_sym_alignas] = ACTIONS(3644), - [anon_sym_explicit] = ACTIONS(3644), - [anon_sym_typename] = ACTIONS(3644), - [anon_sym_template] = ACTIONS(3644), - [anon_sym_operator] = ACTIONS(3644), - [anon_sym_try] = ACTIONS(3644), - [anon_sym_delete] = ACTIONS(3644), - [anon_sym_throw] = ACTIONS(3644), - [anon_sym_namespace] = ACTIONS(3644), - [anon_sym_using] = ACTIONS(3644), - [anon_sym_static_assert] = ACTIONS(3644), - [anon_sym_concept] = ACTIONS(3644), - [anon_sym_co_return] = ACTIONS(3644), - [anon_sym_co_yield] = ACTIONS(3644), - [anon_sym_R_DQUOTE] = ACTIONS(3646), - [anon_sym_LR_DQUOTE] = ACTIONS(3646), - [anon_sym_uR_DQUOTE] = ACTIONS(3646), - [anon_sym_UR_DQUOTE] = ACTIONS(3646), - [anon_sym_u8R_DQUOTE] = ACTIONS(3646), - [anon_sym_co_await] = ACTIONS(3644), - [anon_sym_new] = ACTIONS(3644), - [anon_sym_requires] = ACTIONS(3644), - [sym_this] = ACTIONS(3644), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3646), - [sym_semgrep_named_ellipsis] = ACTIONS(3646), - }, - [828] = { - [ts_builtin_sym_end] = ACTIONS(3348), - [sym_identifier] = ACTIONS(3346), - [aux_sym_preproc_include_token1] = ACTIONS(3346), - [aux_sym_preproc_def_token1] = ACTIONS(3346), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3348), - [aux_sym_preproc_if_token1] = ACTIONS(3346), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3346), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3346), - [sym_preproc_directive] = ACTIONS(3346), - [anon_sym_LPAREN2] = ACTIONS(3348), - [anon_sym_BANG] = ACTIONS(3348), - [anon_sym_TILDE] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_STAR] = ACTIONS(3348), - [anon_sym_AMP_AMP] = ACTIONS(3348), - [anon_sym_AMP] = ACTIONS(3346), - [anon_sym___extension__] = ACTIONS(3346), - [anon_sym_typedef] = ACTIONS(3346), - [anon_sym_extern] = ACTIONS(3346), - [anon_sym___attribute__] = ACTIONS(3346), - [anon_sym_COLON_COLON] = ACTIONS(3348), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3348), - [anon_sym___declspec] = ACTIONS(3346), - [anon_sym___based] = ACTIONS(3346), - [anon_sym___cdecl] = ACTIONS(3346), - [anon_sym___clrcall] = ACTIONS(3346), - [anon_sym___stdcall] = ACTIONS(3346), - [anon_sym___fastcall] = ACTIONS(3346), - [anon_sym___thiscall] = ACTIONS(3346), - [anon_sym___vectorcall] = ACTIONS(3346), - [anon_sym_LBRACE] = ACTIONS(3348), - [anon_sym_signed] = ACTIONS(3346), - [anon_sym_unsigned] = ACTIONS(3346), - [anon_sym_long] = ACTIONS(3346), - [anon_sym_short] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_static] = ACTIONS(3346), - [anon_sym_register] = ACTIONS(3346), - [anon_sym_inline] = ACTIONS(3346), - [anon_sym___inline] = ACTIONS(3346), - [anon_sym___inline__] = ACTIONS(3346), - [anon_sym___forceinline] = ACTIONS(3346), - [anon_sym_thread_local] = ACTIONS(3346), - [anon_sym___thread] = ACTIONS(3346), - [anon_sym_const] = ACTIONS(3346), - [anon_sym_constexpr] = ACTIONS(3346), - [anon_sym_volatile] = ACTIONS(3346), - [anon_sym_restrict] = ACTIONS(3346), - [anon_sym___restrict__] = ACTIONS(3346), - [anon_sym__Atomic] = ACTIONS(3346), - [anon_sym__Noreturn] = ACTIONS(3346), - [anon_sym_noreturn] = ACTIONS(3346), - [anon_sym_mutable] = ACTIONS(3346), - [anon_sym_constinit] = ACTIONS(3346), - [anon_sym_consteval] = ACTIONS(3346), - [sym_primitive_type] = ACTIONS(3346), - [anon_sym_enum] = ACTIONS(3346), - [anon_sym_class] = ACTIONS(3346), - [anon_sym_struct] = ACTIONS(3346), - [anon_sym_union] = ACTIONS(3346), - [anon_sym_if] = ACTIONS(3346), - [anon_sym_switch] = ACTIONS(3346), - [anon_sym_case] = ACTIONS(3346), - [anon_sym_default] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3346), - [anon_sym_do] = ACTIONS(3346), - [anon_sym_for] = ACTIONS(3346), - [anon_sym_return] = ACTIONS(3346), - [anon_sym_break] = ACTIONS(3346), - [anon_sym_continue] = ACTIONS(3346), - [anon_sym_goto] = ACTIONS(3346), - [anon_sym_not] = ACTIONS(3346), - [anon_sym_compl] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3346), - [anon_sym___alignof__] = ACTIONS(3346), - [anon_sym___alignof] = ACTIONS(3346), - [anon_sym__alignof] = ACTIONS(3346), - [anon_sym_alignof] = ACTIONS(3346), - [anon_sym__Alignof] = ACTIONS(3346), - [anon_sym_offsetof] = ACTIONS(3346), - [anon_sym__Generic] = ACTIONS(3346), - [anon_sym_asm] = ACTIONS(3346), - [anon_sym___asm__] = ACTIONS(3346), - [sym_number_literal] = ACTIONS(3348), - [anon_sym_L_SQUOTE] = ACTIONS(3348), - [anon_sym_u_SQUOTE] = ACTIONS(3348), - [anon_sym_U_SQUOTE] = ACTIONS(3348), - [anon_sym_u8_SQUOTE] = ACTIONS(3348), - [anon_sym_SQUOTE] = ACTIONS(3348), - [anon_sym_L_DQUOTE] = ACTIONS(3348), - [anon_sym_u_DQUOTE] = ACTIONS(3348), - [anon_sym_U_DQUOTE] = ACTIONS(3348), - [anon_sym_u8_DQUOTE] = ACTIONS(3348), - [anon_sym_DQUOTE] = ACTIONS(3348), - [sym_true] = ACTIONS(3346), - [sym_false] = ACTIONS(3346), - [anon_sym_NULL] = ACTIONS(3346), - [anon_sym_nullptr] = ACTIONS(3346), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3346), - [anon_sym_decltype] = ACTIONS(3346), - [anon_sym_virtual] = ACTIONS(3346), - [anon_sym_alignas] = ACTIONS(3346), - [anon_sym_explicit] = ACTIONS(3346), - [anon_sym_typename] = ACTIONS(3346), - [anon_sym_template] = ACTIONS(3346), - [anon_sym_operator] = ACTIONS(3346), - [anon_sym_try] = ACTIONS(3346), - [anon_sym_delete] = ACTIONS(3346), - [anon_sym_throw] = ACTIONS(3346), - [anon_sym_namespace] = ACTIONS(3346), - [anon_sym_using] = ACTIONS(3346), - [anon_sym_static_assert] = ACTIONS(3346), - [anon_sym_concept] = ACTIONS(3346), - [anon_sym_co_return] = ACTIONS(3346), - [anon_sym_co_yield] = ACTIONS(3346), - [anon_sym_R_DQUOTE] = ACTIONS(3348), - [anon_sym_LR_DQUOTE] = ACTIONS(3348), - [anon_sym_uR_DQUOTE] = ACTIONS(3348), - [anon_sym_UR_DQUOTE] = ACTIONS(3348), - [anon_sym_u8R_DQUOTE] = ACTIONS(3348), - [anon_sym_co_await] = ACTIONS(3346), - [anon_sym_new] = ACTIONS(3346), - [anon_sym_requires] = ACTIONS(3346), - [sym_this] = ACTIONS(3346), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3348), - [sym_semgrep_named_ellipsis] = ACTIONS(3348), - }, - [829] = { - [ts_builtin_sym_end] = ACTIONS(3352), - [sym_identifier] = ACTIONS(3350), - [aux_sym_preproc_include_token1] = ACTIONS(3350), - [aux_sym_preproc_def_token1] = ACTIONS(3350), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3352), - [aux_sym_preproc_if_token1] = ACTIONS(3350), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3350), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3350), - [sym_preproc_directive] = ACTIONS(3350), - [anon_sym_LPAREN2] = ACTIONS(3352), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(3352), - [anon_sym_DASH] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3350), - [anon_sym_STAR] = ACTIONS(3352), - [anon_sym_AMP_AMP] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3350), - [anon_sym___extension__] = ACTIONS(3350), - [anon_sym_typedef] = ACTIONS(3350), - [anon_sym_extern] = ACTIONS(3350), - [anon_sym___attribute__] = ACTIONS(3350), - [anon_sym_COLON_COLON] = ACTIONS(3352), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3352), - [anon_sym___declspec] = ACTIONS(3350), - [anon_sym___based] = ACTIONS(3350), - [anon_sym___cdecl] = ACTIONS(3350), - [anon_sym___clrcall] = ACTIONS(3350), - [anon_sym___stdcall] = ACTIONS(3350), - [anon_sym___fastcall] = ACTIONS(3350), - [anon_sym___thiscall] = ACTIONS(3350), - [anon_sym___vectorcall] = ACTIONS(3350), - [anon_sym_LBRACE] = ACTIONS(3352), - [anon_sym_signed] = ACTIONS(3350), - [anon_sym_unsigned] = ACTIONS(3350), - [anon_sym_long] = ACTIONS(3350), - [anon_sym_short] = ACTIONS(3350), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_static] = ACTIONS(3350), - [anon_sym_register] = ACTIONS(3350), - [anon_sym_inline] = ACTIONS(3350), - [anon_sym___inline] = ACTIONS(3350), - [anon_sym___inline__] = ACTIONS(3350), - [anon_sym___forceinline] = ACTIONS(3350), - [anon_sym_thread_local] = ACTIONS(3350), - [anon_sym___thread] = ACTIONS(3350), - [anon_sym_const] = ACTIONS(3350), - [anon_sym_constexpr] = ACTIONS(3350), - [anon_sym_volatile] = ACTIONS(3350), - [anon_sym_restrict] = ACTIONS(3350), - [anon_sym___restrict__] = ACTIONS(3350), - [anon_sym__Atomic] = ACTIONS(3350), - [anon_sym__Noreturn] = ACTIONS(3350), - [anon_sym_noreturn] = ACTIONS(3350), - [anon_sym_mutable] = ACTIONS(3350), - [anon_sym_constinit] = ACTIONS(3350), - [anon_sym_consteval] = ACTIONS(3350), - [sym_primitive_type] = ACTIONS(3350), - [anon_sym_enum] = ACTIONS(3350), - [anon_sym_class] = ACTIONS(3350), - [anon_sym_struct] = ACTIONS(3350), - [anon_sym_union] = ACTIONS(3350), - [anon_sym_if] = ACTIONS(3350), - [anon_sym_switch] = ACTIONS(3350), - [anon_sym_case] = ACTIONS(3350), - [anon_sym_default] = ACTIONS(3350), - [anon_sym_while] = ACTIONS(3350), - [anon_sym_do] = ACTIONS(3350), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(3350), - [anon_sym_break] = ACTIONS(3350), - [anon_sym_continue] = ACTIONS(3350), - [anon_sym_goto] = ACTIONS(3350), - [anon_sym_not] = ACTIONS(3350), - [anon_sym_compl] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3352), - [anon_sym_PLUS_PLUS] = ACTIONS(3352), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3350), - [anon_sym___alignof] = ACTIONS(3350), - [anon_sym__alignof] = ACTIONS(3350), - [anon_sym_alignof] = ACTIONS(3350), - [anon_sym__Alignof] = ACTIONS(3350), - [anon_sym_offsetof] = ACTIONS(3350), - [anon_sym__Generic] = ACTIONS(3350), - [anon_sym_asm] = ACTIONS(3350), - [anon_sym___asm__] = ACTIONS(3350), - [sym_number_literal] = ACTIONS(3352), - [anon_sym_L_SQUOTE] = ACTIONS(3352), - [anon_sym_u_SQUOTE] = ACTIONS(3352), - [anon_sym_U_SQUOTE] = ACTIONS(3352), - [anon_sym_u8_SQUOTE] = ACTIONS(3352), - [anon_sym_SQUOTE] = ACTIONS(3352), - [anon_sym_L_DQUOTE] = ACTIONS(3352), - [anon_sym_u_DQUOTE] = ACTIONS(3352), - [anon_sym_U_DQUOTE] = ACTIONS(3352), - [anon_sym_u8_DQUOTE] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(3352), - [sym_true] = ACTIONS(3350), - [sym_false] = ACTIONS(3350), - [anon_sym_NULL] = ACTIONS(3350), - [anon_sym_nullptr] = ACTIONS(3350), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3350), - [anon_sym_decltype] = ACTIONS(3350), - [anon_sym_virtual] = ACTIONS(3350), - [anon_sym_alignas] = ACTIONS(3350), - [anon_sym_explicit] = ACTIONS(3350), - [anon_sym_typename] = ACTIONS(3350), - [anon_sym_template] = ACTIONS(3350), - [anon_sym_operator] = ACTIONS(3350), - [anon_sym_try] = ACTIONS(3350), - [anon_sym_delete] = ACTIONS(3350), - [anon_sym_throw] = ACTIONS(3350), - [anon_sym_namespace] = ACTIONS(3350), - [anon_sym_using] = ACTIONS(3350), - [anon_sym_static_assert] = ACTIONS(3350), - [anon_sym_concept] = ACTIONS(3350), - [anon_sym_co_return] = ACTIONS(3350), - [anon_sym_co_yield] = ACTIONS(3350), - [anon_sym_R_DQUOTE] = ACTIONS(3352), - [anon_sym_LR_DQUOTE] = ACTIONS(3352), - [anon_sym_uR_DQUOTE] = ACTIONS(3352), - [anon_sym_UR_DQUOTE] = ACTIONS(3352), - [anon_sym_u8R_DQUOTE] = ACTIONS(3352), - [anon_sym_co_await] = ACTIONS(3350), - [anon_sym_new] = ACTIONS(3350), - [anon_sym_requires] = ACTIONS(3350), - [sym_this] = ACTIONS(3350), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3352), - [sym_semgrep_named_ellipsis] = ACTIONS(3352), - }, - [830] = { - [ts_builtin_sym_end] = ACTIONS(3356), - [sym_identifier] = ACTIONS(3354), - [aux_sym_preproc_include_token1] = ACTIONS(3354), - [aux_sym_preproc_def_token1] = ACTIONS(3354), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3356), - [aux_sym_preproc_if_token1] = ACTIONS(3354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3354), - [sym_preproc_directive] = ACTIONS(3354), - [anon_sym_LPAREN2] = ACTIONS(3356), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(3356), - [anon_sym_DASH] = ACTIONS(3354), - [anon_sym_PLUS] = ACTIONS(3354), - [anon_sym_STAR] = ACTIONS(3356), - [anon_sym_AMP_AMP] = ACTIONS(3356), - [anon_sym_AMP] = ACTIONS(3354), - [anon_sym___extension__] = ACTIONS(3354), - [anon_sym_typedef] = ACTIONS(3354), - [anon_sym_extern] = ACTIONS(3354), - [anon_sym___attribute__] = ACTIONS(3354), - [anon_sym_COLON_COLON] = ACTIONS(3356), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3356), - [anon_sym___declspec] = ACTIONS(3354), - [anon_sym___based] = ACTIONS(3354), - [anon_sym___cdecl] = ACTIONS(3354), - [anon_sym___clrcall] = ACTIONS(3354), - [anon_sym___stdcall] = ACTIONS(3354), - [anon_sym___fastcall] = ACTIONS(3354), - [anon_sym___thiscall] = ACTIONS(3354), - [anon_sym___vectorcall] = ACTIONS(3354), - [anon_sym_LBRACE] = ACTIONS(3356), - [anon_sym_signed] = ACTIONS(3354), - [anon_sym_unsigned] = ACTIONS(3354), - [anon_sym_long] = ACTIONS(3354), - [anon_sym_short] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3354), - [anon_sym_static] = ACTIONS(3354), - [anon_sym_register] = ACTIONS(3354), - [anon_sym_inline] = ACTIONS(3354), - [anon_sym___inline] = ACTIONS(3354), - [anon_sym___inline__] = ACTIONS(3354), - [anon_sym___forceinline] = ACTIONS(3354), - [anon_sym_thread_local] = ACTIONS(3354), - [anon_sym___thread] = ACTIONS(3354), - [anon_sym_const] = ACTIONS(3354), - [anon_sym_constexpr] = ACTIONS(3354), - [anon_sym_volatile] = ACTIONS(3354), - [anon_sym_restrict] = ACTIONS(3354), - [anon_sym___restrict__] = ACTIONS(3354), - [anon_sym__Atomic] = ACTIONS(3354), - [anon_sym__Noreturn] = ACTIONS(3354), - [anon_sym_noreturn] = ACTIONS(3354), - [anon_sym_mutable] = ACTIONS(3354), - [anon_sym_constinit] = ACTIONS(3354), - [anon_sym_consteval] = ACTIONS(3354), - [sym_primitive_type] = ACTIONS(3354), - [anon_sym_enum] = ACTIONS(3354), - [anon_sym_class] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(3354), - [anon_sym_union] = ACTIONS(3354), - [anon_sym_if] = ACTIONS(3354), - [anon_sym_switch] = ACTIONS(3354), - [anon_sym_case] = ACTIONS(3354), - [anon_sym_default] = ACTIONS(3354), - [anon_sym_while] = ACTIONS(3354), - [anon_sym_do] = ACTIONS(3354), - [anon_sym_for] = ACTIONS(3354), - [anon_sym_return] = ACTIONS(3354), - [anon_sym_break] = ACTIONS(3354), - [anon_sym_continue] = ACTIONS(3354), - [anon_sym_goto] = ACTIONS(3354), - [anon_sym_not] = ACTIONS(3354), - [anon_sym_compl] = ACTIONS(3354), - [anon_sym_DASH_DASH] = ACTIONS(3356), - [anon_sym_PLUS_PLUS] = ACTIONS(3356), - [anon_sym_sizeof] = ACTIONS(3354), - [anon_sym___alignof__] = ACTIONS(3354), - [anon_sym___alignof] = ACTIONS(3354), - [anon_sym__alignof] = ACTIONS(3354), - [anon_sym_alignof] = ACTIONS(3354), - [anon_sym__Alignof] = ACTIONS(3354), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3354), - [anon_sym_asm] = ACTIONS(3354), - [anon_sym___asm__] = ACTIONS(3354), - [sym_number_literal] = ACTIONS(3356), - [anon_sym_L_SQUOTE] = ACTIONS(3356), - [anon_sym_u_SQUOTE] = ACTIONS(3356), - [anon_sym_U_SQUOTE] = ACTIONS(3356), - [anon_sym_u8_SQUOTE] = ACTIONS(3356), - [anon_sym_SQUOTE] = ACTIONS(3356), - [anon_sym_L_DQUOTE] = ACTIONS(3356), - [anon_sym_u_DQUOTE] = ACTIONS(3356), - [anon_sym_U_DQUOTE] = ACTIONS(3356), - [anon_sym_u8_DQUOTE] = ACTIONS(3356), - [anon_sym_DQUOTE] = ACTIONS(3356), - [sym_true] = ACTIONS(3354), - [sym_false] = ACTIONS(3354), - [anon_sym_NULL] = ACTIONS(3354), - [anon_sym_nullptr] = ACTIONS(3354), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3354), - [anon_sym_decltype] = ACTIONS(3354), - [anon_sym_virtual] = ACTIONS(3354), - [anon_sym_alignas] = ACTIONS(3354), - [anon_sym_explicit] = ACTIONS(3354), - [anon_sym_typename] = ACTIONS(3354), - [anon_sym_template] = ACTIONS(3354), - [anon_sym_operator] = ACTIONS(3354), - [anon_sym_try] = ACTIONS(3354), - [anon_sym_delete] = ACTIONS(3354), - [anon_sym_throw] = ACTIONS(3354), - [anon_sym_namespace] = ACTIONS(3354), - [anon_sym_using] = ACTIONS(3354), - [anon_sym_static_assert] = ACTIONS(3354), - [anon_sym_concept] = ACTIONS(3354), - [anon_sym_co_return] = ACTIONS(3354), - [anon_sym_co_yield] = ACTIONS(3354), - [anon_sym_R_DQUOTE] = ACTIONS(3356), - [anon_sym_LR_DQUOTE] = ACTIONS(3356), - [anon_sym_uR_DQUOTE] = ACTIONS(3356), - [anon_sym_UR_DQUOTE] = ACTIONS(3356), - [anon_sym_u8R_DQUOTE] = ACTIONS(3356), - [anon_sym_co_await] = ACTIONS(3354), - [anon_sym_new] = ACTIONS(3354), - [anon_sym_requires] = ACTIONS(3354), - [sym_this] = ACTIONS(3354), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3356), - [sym_semgrep_named_ellipsis] = ACTIONS(3356), - }, - [831] = { - [ts_builtin_sym_end] = ACTIONS(3360), - [sym_identifier] = ACTIONS(3358), - [aux_sym_preproc_include_token1] = ACTIONS(3358), - [aux_sym_preproc_def_token1] = ACTIONS(3358), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3360), - [aux_sym_preproc_if_token1] = ACTIONS(3358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3358), - [sym_preproc_directive] = ACTIONS(3358), - [anon_sym_LPAREN2] = ACTIONS(3360), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_AMP_AMP] = ACTIONS(3360), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym___extension__] = ACTIONS(3358), - [anon_sym_typedef] = ACTIONS(3358), - [anon_sym_extern] = ACTIONS(3358), - [anon_sym___attribute__] = ACTIONS(3358), - [anon_sym_COLON_COLON] = ACTIONS(3360), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3360), - [anon_sym___declspec] = ACTIONS(3358), - [anon_sym___based] = ACTIONS(3358), - [anon_sym___cdecl] = ACTIONS(3358), - [anon_sym___clrcall] = ACTIONS(3358), - [anon_sym___stdcall] = ACTIONS(3358), - [anon_sym___fastcall] = ACTIONS(3358), - [anon_sym___thiscall] = ACTIONS(3358), - [anon_sym___vectorcall] = ACTIONS(3358), - [anon_sym_LBRACE] = ACTIONS(3360), - [anon_sym_signed] = ACTIONS(3358), - [anon_sym_unsigned] = ACTIONS(3358), - [anon_sym_long] = ACTIONS(3358), - [anon_sym_short] = ACTIONS(3358), - [anon_sym_LBRACK] = ACTIONS(3358), - [anon_sym_static] = ACTIONS(3358), - [anon_sym_register] = ACTIONS(3358), - [anon_sym_inline] = ACTIONS(3358), - [anon_sym___inline] = ACTIONS(3358), - [anon_sym___inline__] = ACTIONS(3358), - [anon_sym___forceinline] = ACTIONS(3358), - [anon_sym_thread_local] = ACTIONS(3358), - [anon_sym___thread] = ACTIONS(3358), - [anon_sym_const] = ACTIONS(3358), - [anon_sym_constexpr] = ACTIONS(3358), - [anon_sym_volatile] = ACTIONS(3358), - [anon_sym_restrict] = ACTIONS(3358), - [anon_sym___restrict__] = ACTIONS(3358), - [anon_sym__Atomic] = ACTIONS(3358), - [anon_sym__Noreturn] = ACTIONS(3358), - [anon_sym_noreturn] = ACTIONS(3358), - [anon_sym_mutable] = ACTIONS(3358), - [anon_sym_constinit] = ACTIONS(3358), - [anon_sym_consteval] = ACTIONS(3358), - [sym_primitive_type] = ACTIONS(3358), - [anon_sym_enum] = ACTIONS(3358), - [anon_sym_class] = ACTIONS(3358), - [anon_sym_struct] = ACTIONS(3358), - [anon_sym_union] = ACTIONS(3358), - [anon_sym_if] = ACTIONS(3358), - [anon_sym_switch] = ACTIONS(3358), - [anon_sym_case] = ACTIONS(3358), - [anon_sym_default] = ACTIONS(3358), - [anon_sym_while] = ACTIONS(3358), - [anon_sym_do] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3358), - [anon_sym_return] = ACTIONS(3358), - [anon_sym_break] = ACTIONS(3358), - [anon_sym_continue] = ACTIONS(3358), - [anon_sym_goto] = ACTIONS(3358), - [anon_sym_not] = ACTIONS(3358), - [anon_sym_compl] = ACTIONS(3358), - [anon_sym_DASH_DASH] = ACTIONS(3360), - [anon_sym_PLUS_PLUS] = ACTIONS(3360), - [anon_sym_sizeof] = ACTIONS(3358), - [anon_sym___alignof__] = ACTIONS(3358), - [anon_sym___alignof] = ACTIONS(3358), - [anon_sym__alignof] = ACTIONS(3358), - [anon_sym_alignof] = ACTIONS(3358), - [anon_sym__Alignof] = ACTIONS(3358), - [anon_sym_offsetof] = ACTIONS(3358), - [anon_sym__Generic] = ACTIONS(3358), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3360), - [anon_sym_u_SQUOTE] = ACTIONS(3360), - [anon_sym_U_SQUOTE] = ACTIONS(3360), - [anon_sym_u8_SQUOTE] = ACTIONS(3360), - [anon_sym_SQUOTE] = ACTIONS(3360), - [anon_sym_L_DQUOTE] = ACTIONS(3360), - [anon_sym_u_DQUOTE] = ACTIONS(3360), - [anon_sym_U_DQUOTE] = ACTIONS(3360), - [anon_sym_u8_DQUOTE] = ACTIONS(3360), - [anon_sym_DQUOTE] = ACTIONS(3360), - [sym_true] = ACTIONS(3358), - [sym_false] = ACTIONS(3358), - [anon_sym_NULL] = ACTIONS(3358), - [anon_sym_nullptr] = ACTIONS(3358), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3358), - [anon_sym_decltype] = ACTIONS(3358), - [anon_sym_virtual] = ACTIONS(3358), - [anon_sym_alignas] = ACTIONS(3358), - [anon_sym_explicit] = ACTIONS(3358), - [anon_sym_typename] = ACTIONS(3358), - [anon_sym_template] = ACTIONS(3358), - [anon_sym_operator] = ACTIONS(3358), - [anon_sym_try] = ACTIONS(3358), - [anon_sym_delete] = ACTIONS(3358), - [anon_sym_throw] = ACTIONS(3358), - [anon_sym_namespace] = ACTIONS(3358), - [anon_sym_using] = ACTIONS(3358), - [anon_sym_static_assert] = ACTIONS(3358), - [anon_sym_concept] = ACTIONS(3358), - [anon_sym_co_return] = ACTIONS(3358), - [anon_sym_co_yield] = ACTIONS(3358), - [anon_sym_R_DQUOTE] = ACTIONS(3360), - [anon_sym_LR_DQUOTE] = ACTIONS(3360), - [anon_sym_uR_DQUOTE] = ACTIONS(3360), - [anon_sym_UR_DQUOTE] = ACTIONS(3360), - [anon_sym_u8R_DQUOTE] = ACTIONS(3360), - [anon_sym_co_await] = ACTIONS(3358), - [anon_sym_new] = ACTIONS(3358), - [anon_sym_requires] = ACTIONS(3358), - [sym_this] = ACTIONS(3358), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3360), - [sym_semgrep_named_ellipsis] = ACTIONS(3360), - }, - [832] = { - [ts_builtin_sym_end] = ACTIONS(3364), - [sym_identifier] = ACTIONS(3362), - [aux_sym_preproc_include_token1] = ACTIONS(3362), - [aux_sym_preproc_def_token1] = ACTIONS(3362), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3364), - [aux_sym_preproc_if_token1] = ACTIONS(3362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3362), - [sym_preproc_directive] = ACTIONS(3362), - [anon_sym_LPAREN2] = ACTIONS(3364), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(3364), - [anon_sym_DASH] = ACTIONS(3362), - [anon_sym_PLUS] = ACTIONS(3362), - [anon_sym_STAR] = ACTIONS(3364), - [anon_sym_AMP_AMP] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3362), - [anon_sym___extension__] = ACTIONS(3362), - [anon_sym_typedef] = ACTIONS(3362), - [anon_sym_extern] = ACTIONS(3362), - [anon_sym___attribute__] = ACTIONS(3362), - [anon_sym_COLON_COLON] = ACTIONS(3364), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3364), - [anon_sym___declspec] = ACTIONS(3362), - [anon_sym___based] = ACTIONS(3362), - [anon_sym___cdecl] = ACTIONS(3362), - [anon_sym___clrcall] = ACTIONS(3362), - [anon_sym___stdcall] = ACTIONS(3362), - [anon_sym___fastcall] = ACTIONS(3362), - [anon_sym___thiscall] = ACTIONS(3362), - [anon_sym___vectorcall] = ACTIONS(3362), - [anon_sym_LBRACE] = ACTIONS(3364), - [anon_sym_signed] = ACTIONS(3362), - [anon_sym_unsigned] = ACTIONS(3362), - [anon_sym_long] = ACTIONS(3362), - [anon_sym_short] = ACTIONS(3362), - [anon_sym_LBRACK] = ACTIONS(3362), - [anon_sym_static] = ACTIONS(3362), - [anon_sym_register] = ACTIONS(3362), - [anon_sym_inline] = ACTIONS(3362), - [anon_sym___inline] = ACTIONS(3362), - [anon_sym___inline__] = ACTIONS(3362), - [anon_sym___forceinline] = ACTIONS(3362), - [anon_sym_thread_local] = ACTIONS(3362), - [anon_sym___thread] = ACTIONS(3362), - [anon_sym_const] = ACTIONS(3362), - [anon_sym_constexpr] = ACTIONS(3362), - [anon_sym_volatile] = ACTIONS(3362), - [anon_sym_restrict] = ACTIONS(3362), - [anon_sym___restrict__] = ACTIONS(3362), - [anon_sym__Atomic] = ACTIONS(3362), - [anon_sym__Noreturn] = ACTIONS(3362), - [anon_sym_noreturn] = ACTIONS(3362), - [anon_sym_mutable] = ACTIONS(3362), - [anon_sym_constinit] = ACTIONS(3362), - [anon_sym_consteval] = ACTIONS(3362), - [sym_primitive_type] = ACTIONS(3362), - [anon_sym_enum] = ACTIONS(3362), - [anon_sym_class] = ACTIONS(3362), - [anon_sym_struct] = ACTIONS(3362), - [anon_sym_union] = ACTIONS(3362), - [anon_sym_if] = ACTIONS(3362), - [anon_sym_switch] = ACTIONS(3362), - [anon_sym_case] = ACTIONS(3362), - [anon_sym_default] = ACTIONS(3362), - [anon_sym_while] = ACTIONS(3362), - [anon_sym_do] = ACTIONS(3362), - [anon_sym_for] = ACTIONS(3362), - [anon_sym_return] = ACTIONS(3362), - [anon_sym_break] = ACTIONS(3362), - [anon_sym_continue] = ACTIONS(3362), - [anon_sym_goto] = ACTIONS(3362), - [anon_sym_not] = ACTIONS(3362), - [anon_sym_compl] = ACTIONS(3362), - [anon_sym_DASH_DASH] = ACTIONS(3364), - [anon_sym_PLUS_PLUS] = ACTIONS(3364), - [anon_sym_sizeof] = ACTIONS(3362), - [anon_sym___alignof__] = ACTIONS(3362), - [anon_sym___alignof] = ACTIONS(3362), - [anon_sym__alignof] = ACTIONS(3362), - [anon_sym_alignof] = ACTIONS(3362), - [anon_sym__Alignof] = ACTIONS(3362), - [anon_sym_offsetof] = ACTIONS(3362), - [anon_sym__Generic] = ACTIONS(3362), - [anon_sym_asm] = ACTIONS(3362), - [anon_sym___asm__] = ACTIONS(3362), - [sym_number_literal] = ACTIONS(3364), - [anon_sym_L_SQUOTE] = ACTIONS(3364), - [anon_sym_u_SQUOTE] = ACTIONS(3364), - [anon_sym_U_SQUOTE] = ACTIONS(3364), - [anon_sym_u8_SQUOTE] = ACTIONS(3364), - [anon_sym_SQUOTE] = ACTIONS(3364), - [anon_sym_L_DQUOTE] = ACTIONS(3364), - [anon_sym_u_DQUOTE] = ACTIONS(3364), - [anon_sym_U_DQUOTE] = ACTIONS(3364), - [anon_sym_u8_DQUOTE] = ACTIONS(3364), - [anon_sym_DQUOTE] = ACTIONS(3364), - [sym_true] = ACTIONS(3362), - [sym_false] = ACTIONS(3362), - [anon_sym_NULL] = ACTIONS(3362), - [anon_sym_nullptr] = ACTIONS(3362), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3362), - [anon_sym_decltype] = ACTIONS(3362), - [anon_sym_virtual] = ACTIONS(3362), - [anon_sym_alignas] = ACTIONS(3362), - [anon_sym_explicit] = ACTIONS(3362), - [anon_sym_typename] = ACTIONS(3362), - [anon_sym_template] = ACTIONS(3362), - [anon_sym_operator] = ACTIONS(3362), - [anon_sym_try] = ACTIONS(3362), - [anon_sym_delete] = ACTIONS(3362), - [anon_sym_throw] = ACTIONS(3362), - [anon_sym_namespace] = ACTIONS(3362), - [anon_sym_using] = ACTIONS(3362), - [anon_sym_static_assert] = ACTIONS(3362), - [anon_sym_concept] = ACTIONS(3362), - [anon_sym_co_return] = ACTIONS(3362), - [anon_sym_co_yield] = ACTIONS(3362), - [anon_sym_R_DQUOTE] = ACTIONS(3364), - [anon_sym_LR_DQUOTE] = ACTIONS(3364), - [anon_sym_uR_DQUOTE] = ACTIONS(3364), - [anon_sym_UR_DQUOTE] = ACTIONS(3364), - [anon_sym_u8R_DQUOTE] = ACTIONS(3364), - [anon_sym_co_await] = ACTIONS(3362), - [anon_sym_new] = ACTIONS(3362), - [anon_sym_requires] = ACTIONS(3362), - [sym_this] = ACTIONS(3362), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3364), - [sym_semgrep_named_ellipsis] = ACTIONS(3364), - }, - [833] = { - [ts_builtin_sym_end] = ACTIONS(3558), - [sym_identifier] = ACTIONS(3556), - [aux_sym_preproc_include_token1] = ACTIONS(3556), - [aux_sym_preproc_def_token1] = ACTIONS(3556), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3558), - [aux_sym_preproc_if_token1] = ACTIONS(3556), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3556), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3556), - [sym_preproc_directive] = ACTIONS(3556), - [anon_sym_LPAREN2] = ACTIONS(3558), - [anon_sym_BANG] = ACTIONS(3558), - [anon_sym_TILDE] = ACTIONS(3558), - [anon_sym_DASH] = ACTIONS(3556), - [anon_sym_PLUS] = ACTIONS(3556), - [anon_sym_STAR] = ACTIONS(3558), - [anon_sym_AMP_AMP] = ACTIONS(3558), - [anon_sym_AMP] = ACTIONS(3556), - [anon_sym___extension__] = ACTIONS(3556), - [anon_sym_typedef] = ACTIONS(3556), - [anon_sym_extern] = ACTIONS(3556), - [anon_sym___attribute__] = ACTIONS(3556), - [anon_sym_COLON_COLON] = ACTIONS(3558), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3558), - [anon_sym___declspec] = ACTIONS(3556), - [anon_sym___based] = ACTIONS(3556), - [anon_sym___cdecl] = ACTIONS(3556), - [anon_sym___clrcall] = ACTIONS(3556), - [anon_sym___stdcall] = ACTIONS(3556), - [anon_sym___fastcall] = ACTIONS(3556), - [anon_sym___thiscall] = ACTIONS(3556), - [anon_sym___vectorcall] = ACTIONS(3556), - [anon_sym_LBRACE] = ACTIONS(3558), - [anon_sym_signed] = ACTIONS(3556), - [anon_sym_unsigned] = ACTIONS(3556), - [anon_sym_long] = ACTIONS(3556), - [anon_sym_short] = ACTIONS(3556), - [anon_sym_LBRACK] = ACTIONS(3556), - [anon_sym_static] = ACTIONS(3556), - [anon_sym_register] = ACTIONS(3556), - [anon_sym_inline] = ACTIONS(3556), - [anon_sym___inline] = ACTIONS(3556), - [anon_sym___inline__] = ACTIONS(3556), - [anon_sym___forceinline] = ACTIONS(3556), - [anon_sym_thread_local] = ACTIONS(3556), - [anon_sym___thread] = ACTIONS(3556), - [anon_sym_const] = ACTIONS(3556), - [anon_sym_constexpr] = ACTIONS(3556), - [anon_sym_volatile] = ACTIONS(3556), - [anon_sym_restrict] = ACTIONS(3556), - [anon_sym___restrict__] = ACTIONS(3556), - [anon_sym__Atomic] = ACTIONS(3556), - [anon_sym__Noreturn] = ACTIONS(3556), - [anon_sym_noreturn] = ACTIONS(3556), - [anon_sym_mutable] = ACTIONS(3556), - [anon_sym_constinit] = ACTIONS(3556), - [anon_sym_consteval] = ACTIONS(3556), - [sym_primitive_type] = ACTIONS(3556), - [anon_sym_enum] = ACTIONS(3556), - [anon_sym_class] = ACTIONS(3556), - [anon_sym_struct] = ACTIONS(3556), - [anon_sym_union] = ACTIONS(3556), - [anon_sym_if] = ACTIONS(3556), - [anon_sym_switch] = ACTIONS(3556), - [anon_sym_case] = ACTIONS(3556), - [anon_sym_default] = ACTIONS(3556), - [anon_sym_while] = ACTIONS(3556), - [anon_sym_do] = ACTIONS(3556), - [anon_sym_for] = ACTIONS(3556), - [anon_sym_return] = ACTIONS(3556), - [anon_sym_break] = ACTIONS(3556), - [anon_sym_continue] = ACTIONS(3556), - [anon_sym_goto] = ACTIONS(3556), - [anon_sym_not] = ACTIONS(3556), - [anon_sym_compl] = ACTIONS(3556), - [anon_sym_DASH_DASH] = ACTIONS(3558), - [anon_sym_PLUS_PLUS] = ACTIONS(3558), - [anon_sym_sizeof] = ACTIONS(3556), - [anon_sym___alignof__] = ACTIONS(3556), - [anon_sym___alignof] = ACTIONS(3556), - [anon_sym__alignof] = ACTIONS(3556), - [anon_sym_alignof] = ACTIONS(3556), - [anon_sym__Alignof] = ACTIONS(3556), - [anon_sym_offsetof] = ACTIONS(3556), - [anon_sym__Generic] = ACTIONS(3556), - [anon_sym_asm] = ACTIONS(3556), - [anon_sym___asm__] = ACTIONS(3556), - [sym_number_literal] = ACTIONS(3558), - [anon_sym_L_SQUOTE] = ACTIONS(3558), - [anon_sym_u_SQUOTE] = ACTIONS(3558), - [anon_sym_U_SQUOTE] = ACTIONS(3558), - [anon_sym_u8_SQUOTE] = ACTIONS(3558), - [anon_sym_SQUOTE] = ACTIONS(3558), - [anon_sym_L_DQUOTE] = ACTIONS(3558), - [anon_sym_u_DQUOTE] = ACTIONS(3558), - [anon_sym_U_DQUOTE] = ACTIONS(3558), - [anon_sym_u8_DQUOTE] = ACTIONS(3558), - [anon_sym_DQUOTE] = ACTIONS(3558), - [sym_true] = ACTIONS(3556), - [sym_false] = ACTIONS(3556), - [anon_sym_NULL] = ACTIONS(3556), - [anon_sym_nullptr] = ACTIONS(3556), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3556), - [anon_sym_decltype] = ACTIONS(3556), - [anon_sym_virtual] = ACTIONS(3556), - [anon_sym_alignas] = ACTIONS(3556), - [anon_sym_explicit] = ACTIONS(3556), - [anon_sym_typename] = ACTIONS(3556), - [anon_sym_template] = ACTIONS(3556), - [anon_sym_operator] = ACTIONS(3556), - [anon_sym_try] = ACTIONS(3556), - [anon_sym_delete] = ACTIONS(3556), - [anon_sym_throw] = ACTIONS(3556), - [anon_sym_namespace] = ACTIONS(3556), - [anon_sym_using] = ACTIONS(3556), - [anon_sym_static_assert] = ACTIONS(3556), - [anon_sym_concept] = ACTIONS(3556), - [anon_sym_co_return] = ACTIONS(3556), - [anon_sym_co_yield] = ACTIONS(3556), - [anon_sym_R_DQUOTE] = ACTIONS(3558), - [anon_sym_LR_DQUOTE] = ACTIONS(3558), - [anon_sym_uR_DQUOTE] = ACTIONS(3558), - [anon_sym_UR_DQUOTE] = ACTIONS(3558), - [anon_sym_u8R_DQUOTE] = ACTIONS(3558), - [anon_sym_co_await] = ACTIONS(3556), - [anon_sym_new] = ACTIONS(3556), - [anon_sym_requires] = ACTIONS(3556), - [sym_this] = ACTIONS(3556), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3558), - [sym_semgrep_named_ellipsis] = ACTIONS(3558), - }, - [834] = { - [ts_builtin_sym_end] = ACTIONS(3368), - [sym_identifier] = ACTIONS(3366), - [aux_sym_preproc_include_token1] = ACTIONS(3366), - [aux_sym_preproc_def_token1] = ACTIONS(3366), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3368), - [aux_sym_preproc_if_token1] = ACTIONS(3366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3366), - [sym_preproc_directive] = ACTIONS(3366), - [anon_sym_LPAREN2] = ACTIONS(3368), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(3368), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_PLUS] = ACTIONS(3366), - [anon_sym_STAR] = ACTIONS(3368), - [anon_sym_AMP_AMP] = ACTIONS(3368), - [anon_sym_AMP] = ACTIONS(3366), - [anon_sym___extension__] = ACTIONS(3366), - [anon_sym_typedef] = ACTIONS(3366), - [anon_sym_extern] = ACTIONS(3366), - [anon_sym___attribute__] = ACTIONS(3366), - [anon_sym_COLON_COLON] = ACTIONS(3368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3368), - [anon_sym___declspec] = ACTIONS(3366), - [anon_sym___based] = ACTIONS(3366), - [anon_sym___cdecl] = ACTIONS(3366), - [anon_sym___clrcall] = ACTIONS(3366), - [anon_sym___stdcall] = ACTIONS(3366), - [anon_sym___fastcall] = ACTIONS(3366), - [anon_sym___thiscall] = ACTIONS(3366), - [anon_sym___vectorcall] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3368), - [anon_sym_signed] = ACTIONS(3366), - [anon_sym_unsigned] = ACTIONS(3366), - [anon_sym_long] = ACTIONS(3366), - [anon_sym_short] = ACTIONS(3366), - [anon_sym_LBRACK] = ACTIONS(3366), - [anon_sym_static] = ACTIONS(3366), - [anon_sym_register] = ACTIONS(3366), - [anon_sym_inline] = ACTIONS(3366), - [anon_sym___inline] = ACTIONS(3366), - [anon_sym___inline__] = ACTIONS(3366), - [anon_sym___forceinline] = ACTIONS(3366), - [anon_sym_thread_local] = ACTIONS(3366), - [anon_sym___thread] = ACTIONS(3366), - [anon_sym_const] = ACTIONS(3366), - [anon_sym_constexpr] = ACTIONS(3366), - [anon_sym_volatile] = ACTIONS(3366), - [anon_sym_restrict] = ACTIONS(3366), - [anon_sym___restrict__] = ACTIONS(3366), - [anon_sym__Atomic] = ACTIONS(3366), - [anon_sym__Noreturn] = ACTIONS(3366), - [anon_sym_noreturn] = ACTIONS(3366), - [anon_sym_mutable] = ACTIONS(3366), - [anon_sym_constinit] = ACTIONS(3366), - [anon_sym_consteval] = ACTIONS(3366), - [sym_primitive_type] = ACTIONS(3366), - [anon_sym_enum] = ACTIONS(3366), - [anon_sym_class] = ACTIONS(3366), - [anon_sym_struct] = ACTIONS(3366), - [anon_sym_union] = ACTIONS(3366), - [anon_sym_if] = ACTIONS(3366), - [anon_sym_switch] = ACTIONS(3366), - [anon_sym_case] = ACTIONS(3366), - [anon_sym_default] = ACTIONS(3366), - [anon_sym_while] = ACTIONS(3366), - [anon_sym_do] = ACTIONS(3366), - [anon_sym_for] = ACTIONS(3366), - [anon_sym_return] = ACTIONS(3366), - [anon_sym_break] = ACTIONS(3366), - [anon_sym_continue] = ACTIONS(3366), - [anon_sym_goto] = ACTIONS(3366), - [anon_sym_not] = ACTIONS(3366), - [anon_sym_compl] = ACTIONS(3366), - [anon_sym_DASH_DASH] = ACTIONS(3368), - [anon_sym_PLUS_PLUS] = ACTIONS(3368), - [anon_sym_sizeof] = ACTIONS(3366), - [anon_sym___alignof__] = ACTIONS(3366), - [anon_sym___alignof] = ACTIONS(3366), - [anon_sym__alignof] = ACTIONS(3366), - [anon_sym_alignof] = ACTIONS(3366), - [anon_sym__Alignof] = ACTIONS(3366), - [anon_sym_offsetof] = ACTIONS(3366), - [anon_sym__Generic] = ACTIONS(3366), - [anon_sym_asm] = ACTIONS(3366), - [anon_sym___asm__] = ACTIONS(3366), - [sym_number_literal] = ACTIONS(3368), - [anon_sym_L_SQUOTE] = ACTIONS(3368), - [anon_sym_u_SQUOTE] = ACTIONS(3368), - [anon_sym_U_SQUOTE] = ACTIONS(3368), - [anon_sym_u8_SQUOTE] = ACTIONS(3368), - [anon_sym_SQUOTE] = ACTIONS(3368), - [anon_sym_L_DQUOTE] = ACTIONS(3368), - [anon_sym_u_DQUOTE] = ACTIONS(3368), - [anon_sym_U_DQUOTE] = ACTIONS(3368), - [anon_sym_u8_DQUOTE] = ACTIONS(3368), - [anon_sym_DQUOTE] = ACTIONS(3368), - [sym_true] = ACTIONS(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3366), - [anon_sym_nullptr] = ACTIONS(3366), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3366), - [anon_sym_decltype] = ACTIONS(3366), - [anon_sym_virtual] = ACTIONS(3366), - [anon_sym_alignas] = ACTIONS(3366), - [anon_sym_explicit] = ACTIONS(3366), - [anon_sym_typename] = ACTIONS(3366), - [anon_sym_template] = ACTIONS(3366), - [anon_sym_operator] = ACTIONS(3366), - [anon_sym_try] = ACTIONS(3366), - [anon_sym_delete] = ACTIONS(3366), - [anon_sym_throw] = ACTIONS(3366), - [anon_sym_namespace] = ACTIONS(3366), - [anon_sym_using] = ACTIONS(3366), - [anon_sym_static_assert] = ACTIONS(3366), - [anon_sym_concept] = ACTIONS(3366), - [anon_sym_co_return] = ACTIONS(3366), - [anon_sym_co_yield] = ACTIONS(3366), - [anon_sym_R_DQUOTE] = ACTIONS(3368), - [anon_sym_LR_DQUOTE] = ACTIONS(3368), - [anon_sym_uR_DQUOTE] = ACTIONS(3368), - [anon_sym_UR_DQUOTE] = ACTIONS(3368), - [anon_sym_u8R_DQUOTE] = ACTIONS(3368), - [anon_sym_co_await] = ACTIONS(3366), - [anon_sym_new] = ACTIONS(3366), - [anon_sym_requires] = ACTIONS(3366), - [sym_this] = ACTIONS(3366), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3368), - [sym_semgrep_named_ellipsis] = ACTIONS(3368), - }, - [835] = { - [ts_builtin_sym_end] = ACTIONS(3374), - [sym_identifier] = ACTIONS(3372), - [aux_sym_preproc_include_token1] = ACTIONS(3372), - [aux_sym_preproc_def_token1] = ACTIONS(3372), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3374), - [aux_sym_preproc_if_token1] = ACTIONS(3372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3372), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3372), - [sym_preproc_directive] = ACTIONS(3372), - [anon_sym_LPAREN2] = ACTIONS(3374), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(3374), - [anon_sym_DASH] = ACTIONS(3372), - [anon_sym_PLUS] = ACTIONS(3372), - [anon_sym_STAR] = ACTIONS(3374), - [anon_sym_AMP_AMP] = ACTIONS(3374), - [anon_sym_AMP] = ACTIONS(3372), - [anon_sym___extension__] = ACTIONS(3372), - [anon_sym_typedef] = ACTIONS(3372), - [anon_sym_extern] = ACTIONS(3372), - [anon_sym___attribute__] = ACTIONS(3372), - [anon_sym_COLON_COLON] = ACTIONS(3374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3374), - [anon_sym___declspec] = ACTIONS(3372), - [anon_sym___based] = ACTIONS(3372), - [anon_sym___cdecl] = ACTIONS(3372), - [anon_sym___clrcall] = ACTIONS(3372), - [anon_sym___stdcall] = ACTIONS(3372), - [anon_sym___fastcall] = ACTIONS(3372), - [anon_sym___thiscall] = ACTIONS(3372), - [anon_sym___vectorcall] = ACTIONS(3372), - [anon_sym_LBRACE] = ACTIONS(3374), - [anon_sym_signed] = ACTIONS(3372), - [anon_sym_unsigned] = ACTIONS(3372), - [anon_sym_long] = ACTIONS(3372), - [anon_sym_short] = ACTIONS(3372), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_static] = ACTIONS(3372), - [anon_sym_register] = ACTIONS(3372), - [anon_sym_inline] = ACTIONS(3372), - [anon_sym___inline] = ACTIONS(3372), - [anon_sym___inline__] = ACTIONS(3372), - [anon_sym___forceinline] = ACTIONS(3372), - [anon_sym_thread_local] = ACTIONS(3372), - [anon_sym___thread] = ACTIONS(3372), - [anon_sym_const] = ACTIONS(3372), - [anon_sym_constexpr] = ACTIONS(3372), - [anon_sym_volatile] = ACTIONS(3372), - [anon_sym_restrict] = ACTIONS(3372), - [anon_sym___restrict__] = ACTIONS(3372), - [anon_sym__Atomic] = ACTIONS(3372), - [anon_sym__Noreturn] = ACTIONS(3372), - [anon_sym_noreturn] = ACTIONS(3372), - [anon_sym_mutable] = ACTIONS(3372), - [anon_sym_constinit] = ACTIONS(3372), - [anon_sym_consteval] = ACTIONS(3372), - [sym_primitive_type] = ACTIONS(3372), - [anon_sym_enum] = ACTIONS(3372), - [anon_sym_class] = ACTIONS(3372), - [anon_sym_struct] = ACTIONS(3372), - [anon_sym_union] = ACTIONS(3372), - [anon_sym_if] = ACTIONS(3372), - [anon_sym_switch] = ACTIONS(3372), - [anon_sym_case] = ACTIONS(3372), - [anon_sym_default] = ACTIONS(3372), - [anon_sym_while] = ACTIONS(3372), - [anon_sym_do] = ACTIONS(3372), - [anon_sym_for] = ACTIONS(3372), - [anon_sym_return] = ACTIONS(3372), - [anon_sym_break] = ACTIONS(3372), - [anon_sym_continue] = ACTIONS(3372), - [anon_sym_goto] = ACTIONS(3372), - [anon_sym_not] = ACTIONS(3372), - [anon_sym_compl] = ACTIONS(3372), - [anon_sym_DASH_DASH] = ACTIONS(3374), - [anon_sym_PLUS_PLUS] = ACTIONS(3374), - [anon_sym_sizeof] = ACTIONS(3372), - [anon_sym___alignof__] = ACTIONS(3372), - [anon_sym___alignof] = ACTIONS(3372), - [anon_sym__alignof] = ACTIONS(3372), - [anon_sym_alignof] = ACTIONS(3372), - [anon_sym__Alignof] = ACTIONS(3372), - [anon_sym_offsetof] = ACTIONS(3372), - [anon_sym__Generic] = ACTIONS(3372), - [anon_sym_asm] = ACTIONS(3372), - [anon_sym___asm__] = ACTIONS(3372), - [sym_number_literal] = ACTIONS(3374), - [anon_sym_L_SQUOTE] = ACTIONS(3374), - [anon_sym_u_SQUOTE] = ACTIONS(3374), - [anon_sym_U_SQUOTE] = ACTIONS(3374), - [anon_sym_u8_SQUOTE] = ACTIONS(3374), - [anon_sym_SQUOTE] = ACTIONS(3374), - [anon_sym_L_DQUOTE] = ACTIONS(3374), - [anon_sym_u_DQUOTE] = ACTIONS(3374), - [anon_sym_U_DQUOTE] = ACTIONS(3374), - [anon_sym_u8_DQUOTE] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(3374), - [sym_true] = ACTIONS(3372), - [sym_false] = ACTIONS(3372), - [anon_sym_NULL] = ACTIONS(3372), - [anon_sym_nullptr] = ACTIONS(3372), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3372), - [anon_sym_decltype] = ACTIONS(3372), - [anon_sym_virtual] = ACTIONS(3372), - [anon_sym_alignas] = ACTIONS(3372), - [anon_sym_explicit] = ACTIONS(3372), - [anon_sym_typename] = ACTIONS(3372), - [anon_sym_template] = ACTIONS(3372), - [anon_sym_operator] = ACTIONS(3372), - [anon_sym_try] = ACTIONS(3372), - [anon_sym_delete] = ACTIONS(3372), - [anon_sym_throw] = ACTIONS(3372), - [anon_sym_namespace] = ACTIONS(3372), - [anon_sym_using] = ACTIONS(3372), - [anon_sym_static_assert] = ACTIONS(3372), - [anon_sym_concept] = ACTIONS(3372), - [anon_sym_co_return] = ACTIONS(3372), - [anon_sym_co_yield] = ACTIONS(3372), - [anon_sym_R_DQUOTE] = ACTIONS(3374), - [anon_sym_LR_DQUOTE] = ACTIONS(3374), - [anon_sym_uR_DQUOTE] = ACTIONS(3374), - [anon_sym_UR_DQUOTE] = ACTIONS(3374), - [anon_sym_u8R_DQUOTE] = ACTIONS(3374), - [anon_sym_co_await] = ACTIONS(3372), - [anon_sym_new] = ACTIONS(3372), - [anon_sym_requires] = ACTIONS(3372), - [sym_this] = ACTIONS(3372), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3374), - [sym_semgrep_named_ellipsis] = ACTIONS(3374), - }, - [836] = { - [ts_builtin_sym_end] = ACTIONS(3378), - [sym_identifier] = ACTIONS(3376), - [aux_sym_preproc_include_token1] = ACTIONS(3376), - [aux_sym_preproc_def_token1] = ACTIONS(3376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3378), - [aux_sym_preproc_if_token1] = ACTIONS(3376), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3376), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3376), - [sym_preproc_directive] = ACTIONS(3376), - [anon_sym_LPAREN2] = ACTIONS(3378), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(3378), - [anon_sym_DASH] = ACTIONS(3376), - [anon_sym_PLUS] = ACTIONS(3376), - [anon_sym_STAR] = ACTIONS(3378), - [anon_sym_AMP_AMP] = ACTIONS(3378), - [anon_sym_AMP] = ACTIONS(3376), - [anon_sym___extension__] = ACTIONS(3376), - [anon_sym_typedef] = ACTIONS(3376), - [anon_sym_extern] = ACTIONS(3376), - [anon_sym___attribute__] = ACTIONS(3376), - [anon_sym_COLON_COLON] = ACTIONS(3378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3378), - [anon_sym___declspec] = ACTIONS(3376), - [anon_sym___based] = ACTIONS(3376), - [anon_sym___cdecl] = ACTIONS(3376), - [anon_sym___clrcall] = ACTIONS(3376), - [anon_sym___stdcall] = ACTIONS(3376), - [anon_sym___fastcall] = ACTIONS(3376), - [anon_sym___thiscall] = ACTIONS(3376), - [anon_sym___vectorcall] = ACTIONS(3376), - [anon_sym_LBRACE] = ACTIONS(3378), - [anon_sym_signed] = ACTIONS(3376), - [anon_sym_unsigned] = ACTIONS(3376), - [anon_sym_long] = ACTIONS(3376), - [anon_sym_short] = ACTIONS(3376), - [anon_sym_LBRACK] = ACTIONS(3376), - [anon_sym_static] = ACTIONS(3376), - [anon_sym_register] = ACTIONS(3376), - [anon_sym_inline] = ACTIONS(3376), - [anon_sym___inline] = ACTIONS(3376), - [anon_sym___inline__] = ACTIONS(3376), - [anon_sym___forceinline] = ACTIONS(3376), - [anon_sym_thread_local] = ACTIONS(3376), - [anon_sym___thread] = ACTIONS(3376), - [anon_sym_const] = ACTIONS(3376), - [anon_sym_constexpr] = ACTIONS(3376), - [anon_sym_volatile] = ACTIONS(3376), - [anon_sym_restrict] = ACTIONS(3376), - [anon_sym___restrict__] = ACTIONS(3376), - [anon_sym__Atomic] = ACTIONS(3376), - [anon_sym__Noreturn] = ACTIONS(3376), - [anon_sym_noreturn] = ACTIONS(3376), - [anon_sym_mutable] = ACTIONS(3376), - [anon_sym_constinit] = ACTIONS(3376), - [anon_sym_consteval] = ACTIONS(3376), - [sym_primitive_type] = ACTIONS(3376), - [anon_sym_enum] = ACTIONS(3376), - [anon_sym_class] = ACTIONS(3376), - [anon_sym_struct] = ACTIONS(3376), - [anon_sym_union] = ACTIONS(3376), - [anon_sym_if] = ACTIONS(3376), - [anon_sym_switch] = ACTIONS(3376), - [anon_sym_case] = ACTIONS(3376), - [anon_sym_default] = ACTIONS(3376), - [anon_sym_while] = ACTIONS(3376), - [anon_sym_do] = ACTIONS(3376), - [anon_sym_for] = ACTIONS(3376), - [anon_sym_return] = ACTIONS(3376), - [anon_sym_break] = ACTIONS(3376), - [anon_sym_continue] = ACTIONS(3376), - [anon_sym_goto] = ACTIONS(3376), - [anon_sym_not] = ACTIONS(3376), - [anon_sym_compl] = ACTIONS(3376), - [anon_sym_DASH_DASH] = ACTIONS(3378), - [anon_sym_PLUS_PLUS] = ACTIONS(3378), - [anon_sym_sizeof] = ACTIONS(3376), - [anon_sym___alignof__] = ACTIONS(3376), - [anon_sym___alignof] = ACTIONS(3376), - [anon_sym__alignof] = ACTIONS(3376), - [anon_sym_alignof] = ACTIONS(3376), - [anon_sym__Alignof] = ACTIONS(3376), - [anon_sym_offsetof] = ACTIONS(3376), - [anon_sym__Generic] = ACTIONS(3376), - [anon_sym_asm] = ACTIONS(3376), - [anon_sym___asm__] = ACTIONS(3376), - [sym_number_literal] = ACTIONS(3378), - [anon_sym_L_SQUOTE] = ACTIONS(3378), - [anon_sym_u_SQUOTE] = ACTIONS(3378), - [anon_sym_U_SQUOTE] = ACTIONS(3378), - [anon_sym_u8_SQUOTE] = ACTIONS(3378), - [anon_sym_SQUOTE] = ACTIONS(3378), - [anon_sym_L_DQUOTE] = ACTIONS(3378), - [anon_sym_u_DQUOTE] = ACTIONS(3378), - [anon_sym_U_DQUOTE] = ACTIONS(3378), - [anon_sym_u8_DQUOTE] = ACTIONS(3378), - [anon_sym_DQUOTE] = ACTIONS(3378), - [sym_true] = ACTIONS(3376), - [sym_false] = ACTIONS(3376), - [anon_sym_NULL] = ACTIONS(3376), - [anon_sym_nullptr] = ACTIONS(3376), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3376), - [anon_sym_decltype] = ACTIONS(3376), - [anon_sym_virtual] = ACTIONS(3376), - [anon_sym_alignas] = ACTIONS(3376), - [anon_sym_explicit] = ACTIONS(3376), - [anon_sym_typename] = ACTIONS(3376), - [anon_sym_template] = ACTIONS(3376), - [anon_sym_operator] = ACTIONS(3376), - [anon_sym_try] = ACTIONS(3376), - [anon_sym_delete] = ACTIONS(3376), - [anon_sym_throw] = ACTIONS(3376), - [anon_sym_namespace] = ACTIONS(3376), - [anon_sym_using] = ACTIONS(3376), - [anon_sym_static_assert] = ACTIONS(3376), - [anon_sym_concept] = ACTIONS(3376), - [anon_sym_co_return] = ACTIONS(3376), - [anon_sym_co_yield] = ACTIONS(3376), - [anon_sym_R_DQUOTE] = ACTIONS(3378), - [anon_sym_LR_DQUOTE] = ACTIONS(3378), - [anon_sym_uR_DQUOTE] = ACTIONS(3378), - [anon_sym_UR_DQUOTE] = ACTIONS(3378), - [anon_sym_u8R_DQUOTE] = ACTIONS(3378), - [anon_sym_co_await] = ACTIONS(3376), - [anon_sym_new] = ACTIONS(3376), - [anon_sym_requires] = ACTIONS(3376), - [sym_this] = ACTIONS(3376), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3378), - [sym_semgrep_named_ellipsis] = ACTIONS(3378), - }, - [837] = { - [ts_builtin_sym_end] = ACTIONS(3382), - [sym_identifier] = ACTIONS(3380), - [aux_sym_preproc_include_token1] = ACTIONS(3380), - [aux_sym_preproc_def_token1] = ACTIONS(3380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3382), - [aux_sym_preproc_if_token1] = ACTIONS(3380), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3380), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3380), - [sym_preproc_directive] = ACTIONS(3380), - [anon_sym_LPAREN2] = ACTIONS(3382), - [anon_sym_BANG] = ACTIONS(3382), - [anon_sym_TILDE] = ACTIONS(3382), - [anon_sym_DASH] = ACTIONS(3380), - [anon_sym_PLUS] = ACTIONS(3380), - [anon_sym_STAR] = ACTIONS(3382), - [anon_sym_AMP_AMP] = ACTIONS(3382), - [anon_sym_AMP] = ACTIONS(3380), - [anon_sym___extension__] = ACTIONS(3380), - [anon_sym_typedef] = ACTIONS(3380), - [anon_sym_extern] = ACTIONS(3380), - [anon_sym___attribute__] = ACTIONS(3380), - [anon_sym_COLON_COLON] = ACTIONS(3382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3382), - [anon_sym___declspec] = ACTIONS(3380), - [anon_sym___based] = ACTIONS(3380), - [anon_sym___cdecl] = ACTIONS(3380), - [anon_sym___clrcall] = ACTIONS(3380), - [anon_sym___stdcall] = ACTIONS(3380), - [anon_sym___fastcall] = ACTIONS(3380), - [anon_sym___thiscall] = ACTIONS(3380), - [anon_sym___vectorcall] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(3382), - [anon_sym_signed] = ACTIONS(3380), - [anon_sym_unsigned] = ACTIONS(3380), - [anon_sym_long] = ACTIONS(3380), - [anon_sym_short] = ACTIONS(3380), - [anon_sym_LBRACK] = ACTIONS(3380), - [anon_sym_static] = ACTIONS(3380), - [anon_sym_register] = ACTIONS(3380), - [anon_sym_inline] = ACTIONS(3380), - [anon_sym___inline] = ACTIONS(3380), - [anon_sym___inline__] = ACTIONS(3380), - [anon_sym___forceinline] = ACTIONS(3380), - [anon_sym_thread_local] = ACTIONS(3380), - [anon_sym___thread] = ACTIONS(3380), - [anon_sym_const] = ACTIONS(3380), - [anon_sym_constexpr] = ACTIONS(3380), - [anon_sym_volatile] = ACTIONS(3380), - [anon_sym_restrict] = ACTIONS(3380), - [anon_sym___restrict__] = ACTIONS(3380), - [anon_sym__Atomic] = ACTIONS(3380), - [anon_sym__Noreturn] = ACTIONS(3380), - [anon_sym_noreturn] = ACTIONS(3380), - [anon_sym_mutable] = ACTIONS(3380), - [anon_sym_constinit] = ACTIONS(3380), - [anon_sym_consteval] = ACTIONS(3380), - [sym_primitive_type] = ACTIONS(3380), - [anon_sym_enum] = ACTIONS(3380), - [anon_sym_class] = ACTIONS(3380), - [anon_sym_struct] = ACTIONS(3380), - [anon_sym_union] = ACTIONS(3380), - [anon_sym_if] = ACTIONS(3380), - [anon_sym_switch] = ACTIONS(3380), - [anon_sym_case] = ACTIONS(3380), - [anon_sym_default] = ACTIONS(3380), - [anon_sym_while] = ACTIONS(3380), - [anon_sym_do] = ACTIONS(3380), - [anon_sym_for] = ACTIONS(3380), - [anon_sym_return] = ACTIONS(3380), - [anon_sym_break] = ACTIONS(3380), - [anon_sym_continue] = ACTIONS(3380), - [anon_sym_goto] = ACTIONS(3380), - [anon_sym_not] = ACTIONS(3380), - [anon_sym_compl] = ACTIONS(3380), - [anon_sym_DASH_DASH] = ACTIONS(3382), - [anon_sym_PLUS_PLUS] = ACTIONS(3382), - [anon_sym_sizeof] = ACTIONS(3380), - [anon_sym___alignof__] = ACTIONS(3380), - [anon_sym___alignof] = ACTIONS(3380), - [anon_sym__alignof] = ACTIONS(3380), - [anon_sym_alignof] = ACTIONS(3380), - [anon_sym__Alignof] = ACTIONS(3380), - [anon_sym_offsetof] = ACTIONS(3380), - [anon_sym__Generic] = ACTIONS(3380), - [anon_sym_asm] = ACTIONS(3380), - [anon_sym___asm__] = ACTIONS(3380), - [sym_number_literal] = ACTIONS(3382), - [anon_sym_L_SQUOTE] = ACTIONS(3382), - [anon_sym_u_SQUOTE] = ACTIONS(3382), - [anon_sym_U_SQUOTE] = ACTIONS(3382), - [anon_sym_u8_SQUOTE] = ACTIONS(3382), - [anon_sym_SQUOTE] = ACTIONS(3382), - [anon_sym_L_DQUOTE] = ACTIONS(3382), - [anon_sym_u_DQUOTE] = ACTIONS(3382), - [anon_sym_U_DQUOTE] = ACTIONS(3382), - [anon_sym_u8_DQUOTE] = ACTIONS(3382), - [anon_sym_DQUOTE] = ACTIONS(3382), - [sym_true] = ACTIONS(3380), - [sym_false] = ACTIONS(3380), - [anon_sym_NULL] = ACTIONS(3380), - [anon_sym_nullptr] = ACTIONS(3380), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3380), - [anon_sym_decltype] = ACTIONS(3380), - [anon_sym_virtual] = ACTIONS(3380), - [anon_sym_alignas] = ACTIONS(3380), - [anon_sym_explicit] = ACTIONS(3380), - [anon_sym_typename] = ACTIONS(3380), - [anon_sym_template] = ACTIONS(3380), - [anon_sym_operator] = ACTIONS(3380), - [anon_sym_try] = ACTIONS(3380), - [anon_sym_delete] = ACTIONS(3380), - [anon_sym_throw] = ACTIONS(3380), - [anon_sym_namespace] = ACTIONS(3380), - [anon_sym_using] = ACTIONS(3380), - [anon_sym_static_assert] = ACTIONS(3380), - [anon_sym_concept] = ACTIONS(3380), - [anon_sym_co_return] = ACTIONS(3380), - [anon_sym_co_yield] = ACTIONS(3380), - [anon_sym_R_DQUOTE] = ACTIONS(3382), - [anon_sym_LR_DQUOTE] = ACTIONS(3382), - [anon_sym_uR_DQUOTE] = ACTIONS(3382), - [anon_sym_UR_DQUOTE] = ACTIONS(3382), - [anon_sym_u8R_DQUOTE] = ACTIONS(3382), - [anon_sym_co_await] = ACTIONS(3380), - [anon_sym_new] = ACTIONS(3380), - [anon_sym_requires] = ACTIONS(3380), - [sym_this] = ACTIONS(3380), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3382), - [sym_semgrep_named_ellipsis] = ACTIONS(3382), + [anon_sym_friend] = ACTIONS(4061), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(4063), + [anon_sym_static_assert] = ACTIONS(4065), + [sym_semgrep_metavar] = ACTIONS(4067), }, [838] = { - [ts_builtin_sym_end] = ACTIONS(3386), - [sym_identifier] = ACTIONS(3384), - [aux_sym_preproc_include_token1] = ACTIONS(3384), - [aux_sym_preproc_def_token1] = ACTIONS(3384), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3386), - [aux_sym_preproc_if_token1] = ACTIONS(3384), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3384), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3384), - [sym_preproc_directive] = ACTIONS(3384), - [anon_sym_LPAREN2] = ACTIONS(3386), - [anon_sym_BANG] = ACTIONS(3386), - [anon_sym_TILDE] = ACTIONS(3386), - [anon_sym_DASH] = ACTIONS(3384), - [anon_sym_PLUS] = ACTIONS(3384), - [anon_sym_STAR] = ACTIONS(3386), - [anon_sym_AMP_AMP] = ACTIONS(3386), - [anon_sym_AMP] = ACTIONS(3384), - [anon_sym___extension__] = ACTIONS(3384), - [anon_sym_typedef] = ACTIONS(3384), - [anon_sym_extern] = ACTIONS(3384), - [anon_sym___attribute__] = ACTIONS(3384), - [anon_sym_COLON_COLON] = ACTIONS(3386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3386), - [anon_sym___declspec] = ACTIONS(3384), - [anon_sym___based] = ACTIONS(3384), - [anon_sym___cdecl] = ACTIONS(3384), - [anon_sym___clrcall] = ACTIONS(3384), - [anon_sym___stdcall] = ACTIONS(3384), - [anon_sym___fastcall] = ACTIONS(3384), - [anon_sym___thiscall] = ACTIONS(3384), - [anon_sym___vectorcall] = ACTIONS(3384), - [anon_sym_LBRACE] = ACTIONS(3386), - [anon_sym_signed] = ACTIONS(3384), - [anon_sym_unsigned] = ACTIONS(3384), - [anon_sym_long] = ACTIONS(3384), - [anon_sym_short] = ACTIONS(3384), - [anon_sym_LBRACK] = ACTIONS(3384), - [anon_sym_static] = ACTIONS(3384), - [anon_sym_register] = ACTIONS(3384), - [anon_sym_inline] = ACTIONS(3384), - [anon_sym___inline] = ACTIONS(3384), - [anon_sym___inline__] = ACTIONS(3384), - [anon_sym___forceinline] = ACTIONS(3384), - [anon_sym_thread_local] = ACTIONS(3384), - [anon_sym___thread] = ACTIONS(3384), - [anon_sym_const] = ACTIONS(3384), - [anon_sym_constexpr] = ACTIONS(3384), - [anon_sym_volatile] = ACTIONS(3384), - [anon_sym_restrict] = ACTIONS(3384), - [anon_sym___restrict__] = ACTIONS(3384), - [anon_sym__Atomic] = ACTIONS(3384), - [anon_sym__Noreturn] = ACTIONS(3384), - [anon_sym_noreturn] = ACTIONS(3384), - [anon_sym_mutable] = ACTIONS(3384), - [anon_sym_constinit] = ACTIONS(3384), - [anon_sym_consteval] = ACTIONS(3384), - [sym_primitive_type] = ACTIONS(3384), - [anon_sym_enum] = ACTIONS(3384), - [anon_sym_class] = ACTIONS(3384), - [anon_sym_struct] = ACTIONS(3384), - [anon_sym_union] = ACTIONS(3384), - [anon_sym_if] = ACTIONS(3384), - [anon_sym_switch] = ACTIONS(3384), - [anon_sym_case] = ACTIONS(3384), - [anon_sym_default] = ACTIONS(3384), - [anon_sym_while] = ACTIONS(3384), - [anon_sym_do] = ACTIONS(3384), - [anon_sym_for] = ACTIONS(3384), - [anon_sym_return] = ACTIONS(3384), - [anon_sym_break] = ACTIONS(3384), - [anon_sym_continue] = ACTIONS(3384), - [anon_sym_goto] = ACTIONS(3384), - [anon_sym_not] = ACTIONS(3384), - [anon_sym_compl] = ACTIONS(3384), - [anon_sym_DASH_DASH] = ACTIONS(3386), - [anon_sym_PLUS_PLUS] = ACTIONS(3386), - [anon_sym_sizeof] = ACTIONS(3384), - [anon_sym___alignof__] = ACTIONS(3384), - [anon_sym___alignof] = ACTIONS(3384), - [anon_sym__alignof] = ACTIONS(3384), - [anon_sym_alignof] = ACTIONS(3384), - [anon_sym__Alignof] = ACTIONS(3384), - [anon_sym_offsetof] = ACTIONS(3384), - [anon_sym__Generic] = ACTIONS(3384), - [anon_sym_asm] = ACTIONS(3384), - [anon_sym___asm__] = ACTIONS(3384), - [sym_number_literal] = ACTIONS(3386), - [anon_sym_L_SQUOTE] = ACTIONS(3386), - [anon_sym_u_SQUOTE] = ACTIONS(3386), - [anon_sym_U_SQUOTE] = ACTIONS(3386), - [anon_sym_u8_SQUOTE] = ACTIONS(3386), - [anon_sym_SQUOTE] = ACTIONS(3386), - [anon_sym_L_DQUOTE] = ACTIONS(3386), - [anon_sym_u_DQUOTE] = ACTIONS(3386), - [anon_sym_U_DQUOTE] = ACTIONS(3386), - [anon_sym_u8_DQUOTE] = ACTIONS(3386), - [anon_sym_DQUOTE] = ACTIONS(3386), - [sym_true] = ACTIONS(3384), - [sym_false] = ACTIONS(3384), - [anon_sym_NULL] = ACTIONS(3384), - [anon_sym_nullptr] = ACTIONS(3384), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3384), - [anon_sym_decltype] = ACTIONS(3384), - [anon_sym_virtual] = ACTIONS(3384), - [anon_sym_alignas] = ACTIONS(3384), - [anon_sym_explicit] = ACTIONS(3384), - [anon_sym_typename] = ACTIONS(3384), - [anon_sym_template] = ACTIONS(3384), - [anon_sym_operator] = ACTIONS(3384), - [anon_sym_try] = ACTIONS(3384), - [anon_sym_delete] = ACTIONS(3384), - [anon_sym_throw] = ACTIONS(3384), - [anon_sym_namespace] = ACTIONS(3384), - [anon_sym_using] = ACTIONS(3384), - [anon_sym_static_assert] = ACTIONS(3384), - [anon_sym_concept] = ACTIONS(3384), - [anon_sym_co_return] = ACTIONS(3384), - [anon_sym_co_yield] = ACTIONS(3384), - [anon_sym_R_DQUOTE] = ACTIONS(3386), - [anon_sym_LR_DQUOTE] = ACTIONS(3386), - [anon_sym_uR_DQUOTE] = ACTIONS(3386), - [anon_sym_UR_DQUOTE] = ACTIONS(3386), - [anon_sym_u8R_DQUOTE] = ACTIONS(3386), - [anon_sym_co_await] = ACTIONS(3384), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3384), - [sym_this] = ACTIONS(3384), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3386), - [sym_semgrep_named_ellipsis] = ACTIONS(3386), + [ts_builtin_sym_end] = ACTIONS(3440), + [sym_identifier] = ACTIONS(3438), + [aux_sym_preproc_include_token1] = ACTIONS(3438), + [aux_sym_preproc_def_token1] = ACTIONS(3438), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3440), + [aux_sym_preproc_if_token1] = ACTIONS(3438), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3438), + [sym_preproc_directive] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_BANG] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3440), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_STAR] = ACTIONS(3440), + [anon_sym_AMP_AMP] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym___extension__] = ACTIONS(3438), + [anon_sym_typedef] = ACTIONS(3438), + [anon_sym_extern] = ACTIONS(3438), + [anon_sym___attribute__] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3440), + [anon_sym___declspec] = ACTIONS(3438), + [anon_sym___based] = ACTIONS(3438), + [anon_sym___cdecl] = ACTIONS(3438), + [anon_sym___clrcall] = ACTIONS(3438), + [anon_sym___stdcall] = ACTIONS(3438), + [anon_sym___fastcall] = ACTIONS(3438), + [anon_sym___thiscall] = ACTIONS(3438), + [anon_sym___vectorcall] = ACTIONS(3438), + [anon_sym_LBRACE] = ACTIONS(3440), + [anon_sym_signed] = ACTIONS(3438), + [anon_sym_unsigned] = ACTIONS(3438), + [anon_sym_long] = ACTIONS(3438), + [anon_sym_short] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_static] = ACTIONS(3438), + [anon_sym_register] = ACTIONS(3438), + [anon_sym_inline] = ACTIONS(3438), + [anon_sym___inline] = ACTIONS(3438), + [anon_sym___inline__] = ACTIONS(3438), + [anon_sym___forceinline] = ACTIONS(3438), + [anon_sym_thread_local] = ACTIONS(3438), + [anon_sym___thread] = ACTIONS(3438), + [anon_sym_const] = ACTIONS(3438), + [anon_sym_constexpr] = ACTIONS(3438), + [anon_sym_volatile] = ACTIONS(3438), + [anon_sym_restrict] = ACTIONS(3438), + [anon_sym___restrict__] = ACTIONS(3438), + [anon_sym__Atomic] = ACTIONS(3438), + [anon_sym__Noreturn] = ACTIONS(3438), + [anon_sym_noreturn] = ACTIONS(3438), + [anon_sym_mutable] = ACTIONS(3438), + [anon_sym_constinit] = ACTIONS(3438), + [anon_sym_consteval] = ACTIONS(3438), + [sym_primitive_type] = ACTIONS(3438), + [anon_sym_enum] = ACTIONS(3438), + [anon_sym_class] = ACTIONS(3438), + [anon_sym_struct] = ACTIONS(3438), + [anon_sym_union] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_switch] = ACTIONS(3438), + [anon_sym_case] = ACTIONS(3438), + [anon_sym_default] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_break] = ACTIONS(3438), + [anon_sym_continue] = ACTIONS(3438), + [anon_sym_goto] = ACTIONS(3438), + [anon_sym_not] = ACTIONS(3438), + [anon_sym_compl] = ACTIONS(3438), + [anon_sym_DASH_DASH] = ACTIONS(3440), + [anon_sym_PLUS_PLUS] = ACTIONS(3440), + [anon_sym_sizeof] = ACTIONS(3438), + [anon_sym___alignof__] = ACTIONS(3438), + [anon_sym___alignof] = ACTIONS(3438), + [anon_sym__alignof] = ACTIONS(3438), + [anon_sym_alignof] = ACTIONS(3438), + [anon_sym__Alignof] = ACTIONS(3438), + [anon_sym_offsetof] = ACTIONS(3438), + [anon_sym__Generic] = ACTIONS(3438), + [anon_sym_asm] = ACTIONS(3438), + [anon_sym___asm__] = ACTIONS(3438), + [sym_number_literal] = ACTIONS(3440), + [anon_sym_L_SQUOTE] = ACTIONS(3440), + [anon_sym_u_SQUOTE] = ACTIONS(3440), + [anon_sym_U_SQUOTE] = ACTIONS(3440), + [anon_sym_u8_SQUOTE] = ACTIONS(3440), + [anon_sym_SQUOTE] = ACTIONS(3440), + [anon_sym_L_DQUOTE] = ACTIONS(3440), + [anon_sym_u_DQUOTE] = ACTIONS(3440), + [anon_sym_U_DQUOTE] = ACTIONS(3440), + [anon_sym_u8_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE] = ACTIONS(3440), + [sym_true] = ACTIONS(3438), + [sym_false] = ACTIONS(3438), + [anon_sym_NULL] = ACTIONS(3438), + [anon_sym_nullptr] = ACTIONS(3438), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3438), + [anon_sym_decltype] = ACTIONS(3438), + [anon_sym_virtual] = ACTIONS(3438), + [anon_sym_alignas] = ACTIONS(3438), + [anon_sym_explicit] = ACTIONS(3438), + [anon_sym_typename] = ACTIONS(3438), + [anon_sym_template] = ACTIONS(3438), + [anon_sym_operator] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_delete] = ACTIONS(3438), + [anon_sym_throw] = ACTIONS(3438), + [anon_sym_namespace] = ACTIONS(3438), + [anon_sym_using] = ACTIONS(3438), + [anon_sym_static_assert] = ACTIONS(3438), + [anon_sym_concept] = ACTIONS(3438), + [anon_sym_co_return] = ACTIONS(3438), + [anon_sym_co_yield] = ACTIONS(3438), + [anon_sym_R_DQUOTE] = ACTIONS(3440), + [anon_sym_LR_DQUOTE] = ACTIONS(3440), + [anon_sym_uR_DQUOTE] = ACTIONS(3440), + [anon_sym_UR_DQUOTE] = ACTIONS(3440), + [anon_sym_u8R_DQUOTE] = ACTIONS(3440), + [anon_sym_co_await] = ACTIONS(3438), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_requires] = ACTIONS(3438), + [sym_this] = ACTIONS(3438), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3440), + [sym_semgrep_named_ellipsis] = ACTIONS(3440), }, [839] = { - [ts_builtin_sym_end] = ACTIONS(3390), - [sym_identifier] = ACTIONS(3388), - [aux_sym_preproc_include_token1] = ACTIONS(3388), - [aux_sym_preproc_def_token1] = ACTIONS(3388), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3390), - [aux_sym_preproc_if_token1] = ACTIONS(3388), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3388), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3388), - [sym_preproc_directive] = ACTIONS(3388), - [anon_sym_LPAREN2] = ACTIONS(3390), - [anon_sym_BANG] = ACTIONS(3390), - [anon_sym_TILDE] = ACTIONS(3390), - [anon_sym_DASH] = ACTIONS(3388), - [anon_sym_PLUS] = ACTIONS(3388), - [anon_sym_STAR] = ACTIONS(3390), - [anon_sym_AMP_AMP] = ACTIONS(3390), - [anon_sym_AMP] = ACTIONS(3388), - [anon_sym___extension__] = ACTIONS(3388), - [anon_sym_typedef] = ACTIONS(3388), - [anon_sym_extern] = ACTIONS(3388), - [anon_sym___attribute__] = ACTIONS(3388), - [anon_sym_COLON_COLON] = ACTIONS(3390), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3390), - [anon_sym___declspec] = ACTIONS(3388), - [anon_sym___based] = ACTIONS(3388), - [anon_sym___cdecl] = ACTIONS(3388), - [anon_sym___clrcall] = ACTIONS(3388), - [anon_sym___stdcall] = ACTIONS(3388), - [anon_sym___fastcall] = ACTIONS(3388), - [anon_sym___thiscall] = ACTIONS(3388), - [anon_sym___vectorcall] = ACTIONS(3388), - [anon_sym_LBRACE] = ACTIONS(3390), - [anon_sym_signed] = ACTIONS(3388), - [anon_sym_unsigned] = ACTIONS(3388), - [anon_sym_long] = ACTIONS(3388), - [anon_sym_short] = ACTIONS(3388), - [anon_sym_LBRACK] = ACTIONS(3388), - [anon_sym_static] = ACTIONS(3388), - [anon_sym_register] = ACTIONS(3388), - [anon_sym_inline] = ACTIONS(3388), - [anon_sym___inline] = ACTIONS(3388), - [anon_sym___inline__] = ACTIONS(3388), - [anon_sym___forceinline] = ACTIONS(3388), - [anon_sym_thread_local] = ACTIONS(3388), - [anon_sym___thread] = ACTIONS(3388), - [anon_sym_const] = ACTIONS(3388), - [anon_sym_constexpr] = ACTIONS(3388), - [anon_sym_volatile] = ACTIONS(3388), - [anon_sym_restrict] = ACTIONS(3388), - [anon_sym___restrict__] = ACTIONS(3388), - [anon_sym__Atomic] = ACTIONS(3388), - [anon_sym__Noreturn] = ACTIONS(3388), - [anon_sym_noreturn] = ACTIONS(3388), - [anon_sym_mutable] = ACTIONS(3388), - [anon_sym_constinit] = ACTIONS(3388), - [anon_sym_consteval] = ACTIONS(3388), - [sym_primitive_type] = ACTIONS(3388), - [anon_sym_enum] = ACTIONS(3388), - [anon_sym_class] = ACTIONS(3388), - [anon_sym_struct] = ACTIONS(3388), - [anon_sym_union] = ACTIONS(3388), - [anon_sym_if] = ACTIONS(3388), - [anon_sym_switch] = ACTIONS(3388), - [anon_sym_case] = ACTIONS(3388), - [anon_sym_default] = ACTIONS(3388), - [anon_sym_while] = ACTIONS(3388), - [anon_sym_do] = ACTIONS(3388), - [anon_sym_for] = ACTIONS(3388), - [anon_sym_return] = ACTIONS(3388), - [anon_sym_break] = ACTIONS(3388), - [anon_sym_continue] = ACTIONS(3388), - [anon_sym_goto] = ACTIONS(3388), - [anon_sym_not] = ACTIONS(3388), - [anon_sym_compl] = ACTIONS(3388), - [anon_sym_DASH_DASH] = ACTIONS(3390), - [anon_sym_PLUS_PLUS] = ACTIONS(3390), - [anon_sym_sizeof] = ACTIONS(3388), - [anon_sym___alignof__] = ACTIONS(3388), - [anon_sym___alignof] = ACTIONS(3388), - [anon_sym__alignof] = ACTIONS(3388), - [anon_sym_alignof] = ACTIONS(3388), - [anon_sym__Alignof] = ACTIONS(3388), - [anon_sym_offsetof] = ACTIONS(3388), - [anon_sym__Generic] = ACTIONS(3388), - [anon_sym_asm] = ACTIONS(3388), - [anon_sym___asm__] = ACTIONS(3388), - [sym_number_literal] = ACTIONS(3390), - [anon_sym_L_SQUOTE] = ACTIONS(3390), - [anon_sym_u_SQUOTE] = ACTIONS(3390), - [anon_sym_U_SQUOTE] = ACTIONS(3390), - [anon_sym_u8_SQUOTE] = ACTIONS(3390), - [anon_sym_SQUOTE] = ACTIONS(3390), - [anon_sym_L_DQUOTE] = ACTIONS(3390), - [anon_sym_u_DQUOTE] = ACTIONS(3390), - [anon_sym_U_DQUOTE] = ACTIONS(3390), - [anon_sym_u8_DQUOTE] = ACTIONS(3390), - [anon_sym_DQUOTE] = ACTIONS(3390), - [sym_true] = ACTIONS(3388), - [sym_false] = ACTIONS(3388), - [anon_sym_NULL] = ACTIONS(3388), - [anon_sym_nullptr] = ACTIONS(3388), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3388), - [anon_sym_decltype] = ACTIONS(3388), - [anon_sym_virtual] = ACTIONS(3388), - [anon_sym_alignas] = ACTIONS(3388), - [anon_sym_explicit] = ACTIONS(3388), - [anon_sym_typename] = ACTIONS(3388), - [anon_sym_template] = ACTIONS(3388), - [anon_sym_operator] = ACTIONS(3388), - [anon_sym_try] = ACTIONS(3388), - [anon_sym_delete] = ACTIONS(3388), - [anon_sym_throw] = ACTIONS(3388), - [anon_sym_namespace] = ACTIONS(3388), - [anon_sym_using] = ACTIONS(3388), - [anon_sym_static_assert] = ACTIONS(3388), - [anon_sym_concept] = ACTIONS(3388), - [anon_sym_co_return] = ACTIONS(3388), - [anon_sym_co_yield] = ACTIONS(3388), - [anon_sym_R_DQUOTE] = ACTIONS(3390), - [anon_sym_LR_DQUOTE] = ACTIONS(3390), - [anon_sym_uR_DQUOTE] = ACTIONS(3390), - [anon_sym_UR_DQUOTE] = ACTIONS(3390), - [anon_sym_u8R_DQUOTE] = ACTIONS(3390), - [anon_sym_co_await] = ACTIONS(3388), - [anon_sym_new] = ACTIONS(3388), - [anon_sym_requires] = ACTIONS(3388), - [sym_this] = ACTIONS(3388), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3390), - [sym_semgrep_named_ellipsis] = ACTIONS(3390), + [ts_builtin_sym_end] = ACTIONS(3444), + [sym_identifier] = ACTIONS(3442), + [aux_sym_preproc_include_token1] = ACTIONS(3442), + [aux_sym_preproc_def_token1] = ACTIONS(3442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3444), + [aux_sym_preproc_if_token1] = ACTIONS(3442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3442), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3442), + [sym_preproc_directive] = ACTIONS(3442), + [anon_sym_LPAREN2] = ACTIONS(3444), + [anon_sym_BANG] = ACTIONS(3444), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), + [anon_sym_AMP_AMP] = ACTIONS(3444), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym___extension__] = ACTIONS(3442), + [anon_sym_typedef] = ACTIONS(3442), + [anon_sym_extern] = ACTIONS(3442), + [anon_sym___attribute__] = ACTIONS(3442), + [anon_sym_COLON_COLON] = ACTIONS(3444), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3444), + [anon_sym___declspec] = ACTIONS(3442), + [anon_sym___based] = ACTIONS(3442), + [anon_sym___cdecl] = ACTIONS(3442), + [anon_sym___clrcall] = ACTIONS(3442), + [anon_sym___stdcall] = ACTIONS(3442), + [anon_sym___fastcall] = ACTIONS(3442), + [anon_sym___thiscall] = ACTIONS(3442), + [anon_sym___vectorcall] = ACTIONS(3442), + [anon_sym_LBRACE] = ACTIONS(3444), + [anon_sym_signed] = ACTIONS(3442), + [anon_sym_unsigned] = ACTIONS(3442), + [anon_sym_long] = ACTIONS(3442), + [anon_sym_short] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_static] = ACTIONS(3442), + [anon_sym_register] = ACTIONS(3442), + [anon_sym_inline] = ACTIONS(3442), + [anon_sym___inline] = ACTIONS(3442), + [anon_sym___inline__] = ACTIONS(3442), + [anon_sym___forceinline] = ACTIONS(3442), + [anon_sym_thread_local] = ACTIONS(3442), + [anon_sym___thread] = ACTIONS(3442), + [anon_sym_const] = ACTIONS(3442), + [anon_sym_constexpr] = ACTIONS(3442), + [anon_sym_volatile] = ACTIONS(3442), + [anon_sym_restrict] = ACTIONS(3442), + [anon_sym___restrict__] = ACTIONS(3442), + [anon_sym__Atomic] = ACTIONS(3442), + [anon_sym__Noreturn] = ACTIONS(3442), + [anon_sym_noreturn] = ACTIONS(3442), + [anon_sym_mutable] = ACTIONS(3442), + [anon_sym_constinit] = ACTIONS(3442), + [anon_sym_consteval] = ACTIONS(3442), + [sym_primitive_type] = ACTIONS(3442), + [anon_sym_enum] = ACTIONS(3442), + [anon_sym_class] = ACTIONS(3442), + [anon_sym_struct] = ACTIONS(3442), + [anon_sym_union] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_switch] = ACTIONS(3442), + [anon_sym_case] = ACTIONS(3442), + [anon_sym_default] = ACTIONS(3442), + [anon_sym_while] = ACTIONS(3442), + [anon_sym_do] = ACTIONS(3442), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3442), + [anon_sym_break] = ACTIONS(3442), + [anon_sym_continue] = ACTIONS(3442), + [anon_sym_goto] = ACTIONS(3442), + [anon_sym_not] = ACTIONS(3442), + [anon_sym_compl] = ACTIONS(3442), + [anon_sym_DASH_DASH] = ACTIONS(3444), + [anon_sym_PLUS_PLUS] = ACTIONS(3444), + [anon_sym_sizeof] = ACTIONS(3442), + [anon_sym___alignof__] = ACTIONS(3442), + [anon_sym___alignof] = ACTIONS(3442), + [anon_sym__alignof] = ACTIONS(3442), + [anon_sym_alignof] = ACTIONS(3442), + [anon_sym__Alignof] = ACTIONS(3442), + [anon_sym_offsetof] = ACTIONS(3442), + [anon_sym__Generic] = ACTIONS(3442), + [anon_sym_asm] = ACTIONS(3442), + [anon_sym___asm__] = ACTIONS(3442), + [sym_number_literal] = ACTIONS(3444), + [anon_sym_L_SQUOTE] = ACTIONS(3444), + [anon_sym_u_SQUOTE] = ACTIONS(3444), + [anon_sym_U_SQUOTE] = ACTIONS(3444), + [anon_sym_u8_SQUOTE] = ACTIONS(3444), + [anon_sym_SQUOTE] = ACTIONS(3444), + [anon_sym_L_DQUOTE] = ACTIONS(3444), + [anon_sym_u_DQUOTE] = ACTIONS(3444), + [anon_sym_U_DQUOTE] = ACTIONS(3444), + [anon_sym_u8_DQUOTE] = ACTIONS(3444), + [anon_sym_DQUOTE] = ACTIONS(3444), + [sym_true] = ACTIONS(3442), + [sym_false] = ACTIONS(3442), + [anon_sym_NULL] = ACTIONS(3442), + [anon_sym_nullptr] = ACTIONS(3442), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3442), + [anon_sym_decltype] = ACTIONS(3442), + [anon_sym_virtual] = ACTIONS(3442), + [anon_sym_alignas] = ACTIONS(3442), + [anon_sym_explicit] = ACTIONS(3442), + [anon_sym_typename] = ACTIONS(3442), + [anon_sym_template] = ACTIONS(3442), + [anon_sym_operator] = ACTIONS(3442), + [anon_sym_try] = ACTIONS(3442), + [anon_sym_delete] = ACTIONS(3442), + [anon_sym_throw] = ACTIONS(3442), + [anon_sym_namespace] = ACTIONS(3442), + [anon_sym_using] = ACTIONS(3442), + [anon_sym_static_assert] = ACTIONS(3442), + [anon_sym_concept] = ACTIONS(3442), + [anon_sym_co_return] = ACTIONS(3442), + [anon_sym_co_yield] = ACTIONS(3442), + [anon_sym_R_DQUOTE] = ACTIONS(3444), + [anon_sym_LR_DQUOTE] = ACTIONS(3444), + [anon_sym_uR_DQUOTE] = ACTIONS(3444), + [anon_sym_UR_DQUOTE] = ACTIONS(3444), + [anon_sym_u8R_DQUOTE] = ACTIONS(3444), + [anon_sym_co_await] = ACTIONS(3442), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_requires] = ACTIONS(3442), + [sym_this] = ACTIONS(3442), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3444), + [sym_semgrep_named_ellipsis] = ACTIONS(3444), }, [840] = { - [ts_builtin_sym_end] = ACTIONS(3394), - [sym_identifier] = ACTIONS(3392), - [aux_sym_preproc_include_token1] = ACTIONS(3392), - [aux_sym_preproc_def_token1] = ACTIONS(3392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3394), - [aux_sym_preproc_if_token1] = ACTIONS(3392), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3392), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3392), - [sym_preproc_directive] = ACTIONS(3392), - [anon_sym_LPAREN2] = ACTIONS(3394), - [anon_sym_BANG] = ACTIONS(3394), - [anon_sym_TILDE] = ACTIONS(3394), - [anon_sym_DASH] = ACTIONS(3392), - [anon_sym_PLUS] = ACTIONS(3392), - [anon_sym_STAR] = ACTIONS(3394), - [anon_sym_AMP_AMP] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3392), - [anon_sym___extension__] = ACTIONS(3392), - [anon_sym_typedef] = ACTIONS(3392), - [anon_sym_extern] = ACTIONS(3392), - [anon_sym___attribute__] = ACTIONS(3392), - [anon_sym_COLON_COLON] = ACTIONS(3394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3394), - [anon_sym___declspec] = ACTIONS(3392), - [anon_sym___based] = ACTIONS(3392), - [anon_sym___cdecl] = ACTIONS(3392), - [anon_sym___clrcall] = ACTIONS(3392), - [anon_sym___stdcall] = ACTIONS(3392), - [anon_sym___fastcall] = ACTIONS(3392), - [anon_sym___thiscall] = ACTIONS(3392), - [anon_sym___vectorcall] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(3394), - [anon_sym_signed] = ACTIONS(3392), - [anon_sym_unsigned] = ACTIONS(3392), - [anon_sym_long] = ACTIONS(3392), - [anon_sym_short] = ACTIONS(3392), - [anon_sym_LBRACK] = ACTIONS(3392), - [anon_sym_static] = ACTIONS(3392), - [anon_sym_register] = ACTIONS(3392), - [anon_sym_inline] = ACTIONS(3392), - [anon_sym___inline] = ACTIONS(3392), - [anon_sym___inline__] = ACTIONS(3392), - [anon_sym___forceinline] = ACTIONS(3392), - [anon_sym_thread_local] = ACTIONS(3392), - [anon_sym___thread] = ACTIONS(3392), - [anon_sym_const] = ACTIONS(3392), - [anon_sym_constexpr] = ACTIONS(3392), - [anon_sym_volatile] = ACTIONS(3392), - [anon_sym_restrict] = ACTIONS(3392), - [anon_sym___restrict__] = ACTIONS(3392), - [anon_sym__Atomic] = ACTIONS(3392), - [anon_sym__Noreturn] = ACTIONS(3392), - [anon_sym_noreturn] = ACTIONS(3392), - [anon_sym_mutable] = ACTIONS(3392), - [anon_sym_constinit] = ACTIONS(3392), - [anon_sym_consteval] = ACTIONS(3392), - [sym_primitive_type] = ACTIONS(3392), - [anon_sym_enum] = ACTIONS(3392), - [anon_sym_class] = ACTIONS(3392), - [anon_sym_struct] = ACTIONS(3392), - [anon_sym_union] = ACTIONS(3392), - [anon_sym_if] = ACTIONS(3392), - [anon_sym_switch] = ACTIONS(3392), - [anon_sym_case] = ACTIONS(3392), - [anon_sym_default] = ACTIONS(3392), - [anon_sym_while] = ACTIONS(3392), - [anon_sym_do] = ACTIONS(3392), - [anon_sym_for] = ACTIONS(3392), - [anon_sym_return] = ACTIONS(3392), - [anon_sym_break] = ACTIONS(3392), - [anon_sym_continue] = ACTIONS(3392), - [anon_sym_goto] = ACTIONS(3392), - [anon_sym_not] = ACTIONS(3392), - [anon_sym_compl] = ACTIONS(3392), - [anon_sym_DASH_DASH] = ACTIONS(3394), - [anon_sym_PLUS_PLUS] = ACTIONS(3394), - [anon_sym_sizeof] = ACTIONS(3392), - [anon_sym___alignof__] = ACTIONS(3392), - [anon_sym___alignof] = ACTIONS(3392), - [anon_sym__alignof] = ACTIONS(3392), - [anon_sym_alignof] = ACTIONS(3392), - [anon_sym__Alignof] = ACTIONS(3392), - [anon_sym_offsetof] = ACTIONS(3392), - [anon_sym__Generic] = ACTIONS(3392), - [anon_sym_asm] = ACTIONS(3392), - [anon_sym___asm__] = ACTIONS(3392), - [sym_number_literal] = ACTIONS(3394), - [anon_sym_L_SQUOTE] = ACTIONS(3394), - [anon_sym_u_SQUOTE] = ACTIONS(3394), - [anon_sym_U_SQUOTE] = ACTIONS(3394), - [anon_sym_u8_SQUOTE] = ACTIONS(3394), - [anon_sym_SQUOTE] = ACTIONS(3394), - [anon_sym_L_DQUOTE] = ACTIONS(3394), - [anon_sym_u_DQUOTE] = ACTIONS(3394), - [anon_sym_U_DQUOTE] = ACTIONS(3394), - [anon_sym_u8_DQUOTE] = ACTIONS(3394), - [anon_sym_DQUOTE] = ACTIONS(3394), - [sym_true] = ACTIONS(3392), - [sym_false] = ACTIONS(3392), - [anon_sym_NULL] = ACTIONS(3392), - [anon_sym_nullptr] = ACTIONS(3392), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3392), - [anon_sym_decltype] = ACTIONS(3392), - [anon_sym_virtual] = ACTIONS(3392), - [anon_sym_alignas] = ACTIONS(3392), - [anon_sym_explicit] = ACTIONS(3392), - [anon_sym_typename] = ACTIONS(3392), - [anon_sym_template] = ACTIONS(3392), - [anon_sym_operator] = ACTIONS(3392), - [anon_sym_try] = ACTIONS(3392), - [anon_sym_delete] = ACTIONS(3392), - [anon_sym_throw] = ACTIONS(3392), - [anon_sym_namespace] = ACTIONS(3392), - [anon_sym_using] = ACTIONS(3392), - [anon_sym_static_assert] = ACTIONS(3392), - [anon_sym_concept] = ACTIONS(3392), - [anon_sym_co_return] = ACTIONS(3392), - [anon_sym_co_yield] = ACTIONS(3392), - [anon_sym_R_DQUOTE] = ACTIONS(3394), - [anon_sym_LR_DQUOTE] = ACTIONS(3394), - [anon_sym_uR_DQUOTE] = ACTIONS(3394), - [anon_sym_UR_DQUOTE] = ACTIONS(3394), - [anon_sym_u8R_DQUOTE] = ACTIONS(3394), - [anon_sym_co_await] = ACTIONS(3392), - [anon_sym_new] = ACTIONS(3392), - [anon_sym_requires] = ACTIONS(3392), - [sym_this] = ACTIONS(3392), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3394), - [sym_semgrep_named_ellipsis] = ACTIONS(3394), + [ts_builtin_sym_end] = ACTIONS(3453), + [sym_identifier] = ACTIONS(3451), + [aux_sym_preproc_include_token1] = ACTIONS(3451), + [aux_sym_preproc_def_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3453), + [aux_sym_preproc_if_token1] = ACTIONS(3451), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3451), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3451), + [sym_preproc_directive] = ACTIONS(3451), + [anon_sym_LPAREN2] = ACTIONS(3453), + [anon_sym_BANG] = ACTIONS(3453), + [anon_sym_TILDE] = ACTIONS(3453), + [anon_sym_DASH] = ACTIONS(3451), + [anon_sym_PLUS] = ACTIONS(3451), + [anon_sym_STAR] = ACTIONS(3453), + [anon_sym_AMP_AMP] = ACTIONS(3453), + [anon_sym_AMP] = ACTIONS(3451), + [anon_sym___extension__] = ACTIONS(3451), + [anon_sym_typedef] = ACTIONS(3451), + [anon_sym_extern] = ACTIONS(3451), + [anon_sym___attribute__] = ACTIONS(3451), + [anon_sym_COLON_COLON] = ACTIONS(3453), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3453), + [anon_sym___declspec] = ACTIONS(3451), + [anon_sym___based] = ACTIONS(3451), + [anon_sym___cdecl] = ACTIONS(3451), + [anon_sym___clrcall] = ACTIONS(3451), + [anon_sym___stdcall] = ACTIONS(3451), + [anon_sym___fastcall] = ACTIONS(3451), + [anon_sym___thiscall] = ACTIONS(3451), + [anon_sym___vectorcall] = ACTIONS(3451), + [anon_sym_LBRACE] = ACTIONS(3453), + [anon_sym_signed] = ACTIONS(3451), + [anon_sym_unsigned] = ACTIONS(3451), + [anon_sym_long] = ACTIONS(3451), + [anon_sym_short] = ACTIONS(3451), + [anon_sym_LBRACK] = ACTIONS(3451), + [anon_sym_static] = ACTIONS(3451), + [anon_sym_register] = ACTIONS(3451), + [anon_sym_inline] = ACTIONS(3451), + [anon_sym___inline] = ACTIONS(3451), + [anon_sym___inline__] = ACTIONS(3451), + [anon_sym___forceinline] = ACTIONS(3451), + [anon_sym_thread_local] = ACTIONS(3451), + [anon_sym___thread] = ACTIONS(3451), + [anon_sym_const] = ACTIONS(3451), + [anon_sym_constexpr] = ACTIONS(3451), + [anon_sym_volatile] = ACTIONS(3451), + [anon_sym_restrict] = ACTIONS(3451), + [anon_sym___restrict__] = ACTIONS(3451), + [anon_sym__Atomic] = ACTIONS(3451), + [anon_sym__Noreturn] = ACTIONS(3451), + [anon_sym_noreturn] = ACTIONS(3451), + [anon_sym_mutable] = ACTIONS(3451), + [anon_sym_constinit] = ACTIONS(3451), + [anon_sym_consteval] = ACTIONS(3451), + [sym_primitive_type] = ACTIONS(3451), + [anon_sym_enum] = ACTIONS(3451), + [anon_sym_class] = ACTIONS(3451), + [anon_sym_struct] = ACTIONS(3451), + [anon_sym_union] = ACTIONS(3451), + [anon_sym_if] = ACTIONS(3451), + [anon_sym_switch] = ACTIONS(3451), + [anon_sym_case] = ACTIONS(3451), + [anon_sym_default] = ACTIONS(3451), + [anon_sym_while] = ACTIONS(3451), + [anon_sym_do] = ACTIONS(3451), + [anon_sym_for] = ACTIONS(3451), + [anon_sym_return] = ACTIONS(3451), + [anon_sym_break] = ACTIONS(3451), + [anon_sym_continue] = ACTIONS(3451), + [anon_sym_goto] = ACTIONS(3451), + [anon_sym_not] = ACTIONS(3451), + [anon_sym_compl] = ACTIONS(3451), + [anon_sym_DASH_DASH] = ACTIONS(3453), + [anon_sym_PLUS_PLUS] = ACTIONS(3453), + [anon_sym_sizeof] = ACTIONS(3451), + [anon_sym___alignof__] = ACTIONS(3451), + [anon_sym___alignof] = ACTIONS(3451), + [anon_sym__alignof] = ACTIONS(3451), + [anon_sym_alignof] = ACTIONS(3451), + [anon_sym__Alignof] = ACTIONS(3451), + [anon_sym_offsetof] = ACTIONS(3451), + [anon_sym__Generic] = ACTIONS(3451), + [anon_sym_asm] = ACTIONS(3451), + [anon_sym___asm__] = ACTIONS(3451), + [sym_number_literal] = ACTIONS(3453), + [anon_sym_L_SQUOTE] = ACTIONS(3453), + [anon_sym_u_SQUOTE] = ACTIONS(3453), + [anon_sym_U_SQUOTE] = ACTIONS(3453), + [anon_sym_u8_SQUOTE] = ACTIONS(3453), + [anon_sym_SQUOTE] = ACTIONS(3453), + [anon_sym_L_DQUOTE] = ACTIONS(3453), + [anon_sym_u_DQUOTE] = ACTIONS(3453), + [anon_sym_U_DQUOTE] = ACTIONS(3453), + [anon_sym_u8_DQUOTE] = ACTIONS(3453), + [anon_sym_DQUOTE] = ACTIONS(3453), + [sym_true] = ACTIONS(3451), + [sym_false] = ACTIONS(3451), + [anon_sym_NULL] = ACTIONS(3451), + [anon_sym_nullptr] = ACTIONS(3451), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3451), + [anon_sym_decltype] = ACTIONS(3451), + [anon_sym_virtual] = ACTIONS(3451), + [anon_sym_alignas] = ACTIONS(3451), + [anon_sym_explicit] = ACTIONS(3451), + [anon_sym_typename] = ACTIONS(3451), + [anon_sym_template] = ACTIONS(3451), + [anon_sym_operator] = ACTIONS(3451), + [anon_sym_try] = ACTIONS(3451), + [anon_sym_delete] = ACTIONS(3451), + [anon_sym_throw] = ACTIONS(3451), + [anon_sym_namespace] = ACTIONS(3451), + [anon_sym_using] = ACTIONS(3451), + [anon_sym_static_assert] = ACTIONS(3451), + [anon_sym_concept] = ACTIONS(3451), + [anon_sym_co_return] = ACTIONS(3451), + [anon_sym_co_yield] = ACTIONS(3451), + [anon_sym_R_DQUOTE] = ACTIONS(3453), + [anon_sym_LR_DQUOTE] = ACTIONS(3453), + [anon_sym_uR_DQUOTE] = ACTIONS(3453), + [anon_sym_UR_DQUOTE] = ACTIONS(3453), + [anon_sym_u8R_DQUOTE] = ACTIONS(3453), + [anon_sym_co_await] = ACTIONS(3451), + [anon_sym_new] = ACTIONS(3451), + [anon_sym_requires] = ACTIONS(3451), + [sym_this] = ACTIONS(3451), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3453), + [sym_semgrep_named_ellipsis] = ACTIONS(3453), }, [841] = { - [ts_builtin_sym_end] = ACTIONS(3398), - [sym_identifier] = ACTIONS(3396), - [aux_sym_preproc_include_token1] = ACTIONS(3396), - [aux_sym_preproc_def_token1] = ACTIONS(3396), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3398), - [aux_sym_preproc_if_token1] = ACTIONS(3396), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3396), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3396), - [sym_preproc_directive] = ACTIONS(3396), - [anon_sym_LPAREN2] = ACTIONS(3398), - [anon_sym_BANG] = ACTIONS(3398), - [anon_sym_TILDE] = ACTIONS(3398), - [anon_sym_DASH] = ACTIONS(3396), - [anon_sym_PLUS] = ACTIONS(3396), - [anon_sym_STAR] = ACTIONS(3398), - [anon_sym_AMP_AMP] = ACTIONS(3398), - [anon_sym_AMP] = ACTIONS(3396), - [anon_sym___extension__] = ACTIONS(3396), - [anon_sym_typedef] = ACTIONS(3396), - [anon_sym_extern] = ACTIONS(3396), - [anon_sym___attribute__] = ACTIONS(3396), - [anon_sym_COLON_COLON] = ACTIONS(3398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3398), - [anon_sym___declspec] = ACTIONS(3396), - [anon_sym___based] = ACTIONS(3396), - [anon_sym___cdecl] = ACTIONS(3396), - [anon_sym___clrcall] = ACTIONS(3396), - [anon_sym___stdcall] = ACTIONS(3396), - [anon_sym___fastcall] = ACTIONS(3396), - [anon_sym___thiscall] = ACTIONS(3396), - [anon_sym___vectorcall] = ACTIONS(3396), - [anon_sym_LBRACE] = ACTIONS(3398), - [anon_sym_signed] = ACTIONS(3396), - [anon_sym_unsigned] = ACTIONS(3396), - [anon_sym_long] = ACTIONS(3396), - [anon_sym_short] = ACTIONS(3396), - [anon_sym_LBRACK] = ACTIONS(3396), - [anon_sym_static] = ACTIONS(3396), - [anon_sym_register] = ACTIONS(3396), - [anon_sym_inline] = ACTIONS(3396), - [anon_sym___inline] = ACTIONS(3396), - [anon_sym___inline__] = ACTIONS(3396), - [anon_sym___forceinline] = ACTIONS(3396), - [anon_sym_thread_local] = ACTIONS(3396), - [anon_sym___thread] = ACTIONS(3396), - [anon_sym_const] = ACTIONS(3396), - [anon_sym_constexpr] = ACTIONS(3396), - [anon_sym_volatile] = ACTIONS(3396), - [anon_sym_restrict] = ACTIONS(3396), - [anon_sym___restrict__] = ACTIONS(3396), - [anon_sym__Atomic] = ACTIONS(3396), - [anon_sym__Noreturn] = ACTIONS(3396), - [anon_sym_noreturn] = ACTIONS(3396), - [anon_sym_mutable] = ACTIONS(3396), - [anon_sym_constinit] = ACTIONS(3396), - [anon_sym_consteval] = ACTIONS(3396), - [sym_primitive_type] = ACTIONS(3396), - [anon_sym_enum] = ACTIONS(3396), - [anon_sym_class] = ACTIONS(3396), - [anon_sym_struct] = ACTIONS(3396), - [anon_sym_union] = ACTIONS(3396), - [anon_sym_if] = ACTIONS(3396), - [anon_sym_switch] = ACTIONS(3396), - [anon_sym_case] = ACTIONS(3396), - [anon_sym_default] = ACTIONS(3396), - [anon_sym_while] = ACTIONS(3396), - [anon_sym_do] = ACTIONS(3396), - [anon_sym_for] = ACTIONS(3396), - [anon_sym_return] = ACTIONS(3396), - [anon_sym_break] = ACTIONS(3396), - [anon_sym_continue] = ACTIONS(3396), - [anon_sym_goto] = ACTIONS(3396), - [anon_sym_not] = ACTIONS(3396), - [anon_sym_compl] = ACTIONS(3396), - [anon_sym_DASH_DASH] = ACTIONS(3398), - [anon_sym_PLUS_PLUS] = ACTIONS(3398), - [anon_sym_sizeof] = ACTIONS(3396), - [anon_sym___alignof__] = ACTIONS(3396), - [anon_sym___alignof] = ACTIONS(3396), - [anon_sym__alignof] = ACTIONS(3396), - [anon_sym_alignof] = ACTIONS(3396), - [anon_sym__Alignof] = ACTIONS(3396), - [anon_sym_offsetof] = ACTIONS(3396), - [anon_sym__Generic] = ACTIONS(3396), - [anon_sym_asm] = ACTIONS(3396), - [anon_sym___asm__] = ACTIONS(3396), - [sym_number_literal] = ACTIONS(3398), - [anon_sym_L_SQUOTE] = ACTIONS(3398), - [anon_sym_u_SQUOTE] = ACTIONS(3398), - [anon_sym_U_SQUOTE] = ACTIONS(3398), - [anon_sym_u8_SQUOTE] = ACTIONS(3398), - [anon_sym_SQUOTE] = ACTIONS(3398), - [anon_sym_L_DQUOTE] = ACTIONS(3398), - [anon_sym_u_DQUOTE] = ACTIONS(3398), - [anon_sym_U_DQUOTE] = ACTIONS(3398), - [anon_sym_u8_DQUOTE] = ACTIONS(3398), - [anon_sym_DQUOTE] = ACTIONS(3398), - [sym_true] = ACTIONS(3396), - [sym_false] = ACTIONS(3396), - [anon_sym_NULL] = ACTIONS(3396), - [anon_sym_nullptr] = ACTIONS(3396), + [sym_preproc_def] = STATE(2347), + [sym_preproc_function_def] = STATE(2347), + [sym_preproc_call] = STATE(2347), + [sym_preproc_if_in_field_declaration_list] = STATE(2347), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2347), + [sym_type_definition] = STATE(2347), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6437), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7306), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(868), + [sym_field_declaration] = STATE(2347), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2347), + [sym_operator_cast] = STATE(7731), + [sym_inline_method_definition] = STATE(2347), + [sym_constructor_specifiers] = STATE(1938), + [sym_operator_cast_definition] = STATE(2347), + [sym_operator_cast_declaration] = STATE(2347), + [sym_constructor_or_destructor_definition] = STATE(2347), + [sym_constructor_or_destructor_declaration] = STATE(2347), + [sym_friend_declaration] = STATE(2347), + [sym_access_specifier] = STATE(10086), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2347), + [sym_alias_declaration] = STATE(2347), + [sym_static_assert_declaration] = STATE(2347), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7731), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2347), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(868), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1938), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(4041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4043), + [aux_sym_preproc_if_token1] = ACTIONS(4045), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4049), + [sym_preproc_directive] = ACTIONS(4051), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(4053), + [anon_sym_typedef] = ACTIONS(4055), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(4125), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3396), - [anon_sym_decltype] = ACTIONS(3396), - [anon_sym_virtual] = ACTIONS(3396), - [anon_sym_alignas] = ACTIONS(3396), - [anon_sym_explicit] = ACTIONS(3396), - [anon_sym_typename] = ACTIONS(3396), - [anon_sym_template] = ACTIONS(3396), - [anon_sym_operator] = ACTIONS(3396), - [anon_sym_try] = ACTIONS(3396), - [anon_sym_delete] = ACTIONS(3396), - [anon_sym_throw] = ACTIONS(3396), - [anon_sym_namespace] = ACTIONS(3396), - [anon_sym_using] = ACTIONS(3396), - [anon_sym_static_assert] = ACTIONS(3396), - [anon_sym_concept] = ACTIONS(3396), - [anon_sym_co_return] = ACTIONS(3396), - [anon_sym_co_yield] = ACTIONS(3396), - [anon_sym_R_DQUOTE] = ACTIONS(3398), - [anon_sym_LR_DQUOTE] = ACTIONS(3398), - [anon_sym_uR_DQUOTE] = ACTIONS(3398), - [anon_sym_UR_DQUOTE] = ACTIONS(3398), - [anon_sym_u8R_DQUOTE] = ACTIONS(3398), - [anon_sym_co_await] = ACTIONS(3396), - [anon_sym_new] = ACTIONS(3396), - [anon_sym_requires] = ACTIONS(3396), - [sym_this] = ACTIONS(3396), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3398), - [sym_semgrep_named_ellipsis] = ACTIONS(3398), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(4059), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(4061), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(4063), + [anon_sym_static_assert] = ACTIONS(4065), + [sym_semgrep_metavar] = ACTIONS(4067), }, [842] = { - [ts_builtin_sym_end] = ACTIONS(3402), - [sym_identifier] = ACTIONS(3400), - [aux_sym_preproc_include_token1] = ACTIONS(3400), - [aux_sym_preproc_def_token1] = ACTIONS(3400), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3402), - [aux_sym_preproc_if_token1] = ACTIONS(3400), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3400), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3400), - [sym_preproc_directive] = ACTIONS(3400), - [anon_sym_LPAREN2] = ACTIONS(3402), - [anon_sym_BANG] = ACTIONS(3402), - [anon_sym_TILDE] = ACTIONS(3402), - [anon_sym_DASH] = ACTIONS(3400), - [anon_sym_PLUS] = ACTIONS(3400), - [anon_sym_STAR] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_AMP] = ACTIONS(3400), - [anon_sym___extension__] = ACTIONS(3400), - [anon_sym_typedef] = ACTIONS(3400), - [anon_sym_extern] = ACTIONS(3400), - [anon_sym___attribute__] = ACTIONS(3400), - [anon_sym_COLON_COLON] = ACTIONS(3402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3402), - [anon_sym___declspec] = ACTIONS(3400), - [anon_sym___based] = ACTIONS(3400), - [anon_sym___cdecl] = ACTIONS(3400), - [anon_sym___clrcall] = ACTIONS(3400), - [anon_sym___stdcall] = ACTIONS(3400), - [anon_sym___fastcall] = ACTIONS(3400), - [anon_sym___thiscall] = ACTIONS(3400), - [anon_sym___vectorcall] = ACTIONS(3400), - [anon_sym_LBRACE] = ACTIONS(3402), - [anon_sym_signed] = ACTIONS(3400), - [anon_sym_unsigned] = ACTIONS(3400), - [anon_sym_long] = ACTIONS(3400), - [anon_sym_short] = ACTIONS(3400), - [anon_sym_LBRACK] = ACTIONS(3400), - [anon_sym_static] = ACTIONS(3400), - [anon_sym_register] = ACTIONS(3400), - [anon_sym_inline] = ACTIONS(3400), - [anon_sym___inline] = ACTIONS(3400), - [anon_sym___inline__] = ACTIONS(3400), - [anon_sym___forceinline] = ACTIONS(3400), - [anon_sym_thread_local] = ACTIONS(3400), - [anon_sym___thread] = ACTIONS(3400), - [anon_sym_const] = ACTIONS(3400), - [anon_sym_constexpr] = ACTIONS(3400), - [anon_sym_volatile] = ACTIONS(3400), - [anon_sym_restrict] = ACTIONS(3400), - [anon_sym___restrict__] = ACTIONS(3400), - [anon_sym__Atomic] = ACTIONS(3400), - [anon_sym__Noreturn] = ACTIONS(3400), - [anon_sym_noreturn] = ACTIONS(3400), - [anon_sym_mutable] = ACTIONS(3400), - [anon_sym_constinit] = ACTIONS(3400), - [anon_sym_consteval] = ACTIONS(3400), - [sym_primitive_type] = ACTIONS(3400), - [anon_sym_enum] = ACTIONS(3400), - [anon_sym_class] = ACTIONS(3400), - [anon_sym_struct] = ACTIONS(3400), - [anon_sym_union] = ACTIONS(3400), - [anon_sym_if] = ACTIONS(3400), - [anon_sym_switch] = ACTIONS(3400), - [anon_sym_case] = ACTIONS(3400), - [anon_sym_default] = ACTIONS(3400), - [anon_sym_while] = ACTIONS(3400), - [anon_sym_do] = ACTIONS(3400), - [anon_sym_for] = ACTIONS(3400), - [anon_sym_return] = ACTIONS(3400), - [anon_sym_break] = ACTIONS(3400), - [anon_sym_continue] = ACTIONS(3400), - [anon_sym_goto] = ACTIONS(3400), - [anon_sym_not] = ACTIONS(3400), - [anon_sym_compl] = ACTIONS(3400), - [anon_sym_DASH_DASH] = ACTIONS(3402), - [anon_sym_PLUS_PLUS] = ACTIONS(3402), - [anon_sym_sizeof] = ACTIONS(3400), - [anon_sym___alignof__] = ACTIONS(3400), - [anon_sym___alignof] = ACTIONS(3400), - [anon_sym__alignof] = ACTIONS(3400), - [anon_sym_alignof] = ACTIONS(3400), - [anon_sym__Alignof] = ACTIONS(3400), - [anon_sym_offsetof] = ACTIONS(3400), - [anon_sym__Generic] = ACTIONS(3400), - [anon_sym_asm] = ACTIONS(3400), - [anon_sym___asm__] = ACTIONS(3400), - [sym_number_literal] = ACTIONS(3402), - [anon_sym_L_SQUOTE] = ACTIONS(3402), - [anon_sym_u_SQUOTE] = ACTIONS(3402), - [anon_sym_U_SQUOTE] = ACTIONS(3402), - [anon_sym_u8_SQUOTE] = ACTIONS(3402), - [anon_sym_SQUOTE] = ACTIONS(3402), - [anon_sym_L_DQUOTE] = ACTIONS(3402), - [anon_sym_u_DQUOTE] = ACTIONS(3402), - [anon_sym_U_DQUOTE] = ACTIONS(3402), - [anon_sym_u8_DQUOTE] = ACTIONS(3402), - [anon_sym_DQUOTE] = ACTIONS(3402), - [sym_true] = ACTIONS(3400), - [sym_false] = ACTIONS(3400), - [anon_sym_NULL] = ACTIONS(3400), - [anon_sym_nullptr] = ACTIONS(3400), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3400), - [anon_sym_decltype] = ACTIONS(3400), - [anon_sym_virtual] = ACTIONS(3400), - [anon_sym_alignas] = ACTIONS(3400), - [anon_sym_explicit] = ACTIONS(3400), - [anon_sym_typename] = ACTIONS(3400), - [anon_sym_template] = ACTIONS(3400), - [anon_sym_operator] = ACTIONS(3400), - [anon_sym_try] = ACTIONS(3400), - [anon_sym_delete] = ACTIONS(3400), - [anon_sym_throw] = ACTIONS(3400), - [anon_sym_namespace] = ACTIONS(3400), - [anon_sym_using] = ACTIONS(3400), - [anon_sym_static_assert] = ACTIONS(3400), - [anon_sym_concept] = ACTIONS(3400), - [anon_sym_co_return] = ACTIONS(3400), - [anon_sym_co_yield] = ACTIONS(3400), - [anon_sym_R_DQUOTE] = ACTIONS(3402), - [anon_sym_LR_DQUOTE] = ACTIONS(3402), - [anon_sym_uR_DQUOTE] = ACTIONS(3402), - [anon_sym_UR_DQUOTE] = ACTIONS(3402), - [anon_sym_u8R_DQUOTE] = ACTIONS(3402), - [anon_sym_co_await] = ACTIONS(3400), - [anon_sym_new] = ACTIONS(3400), - [anon_sym_requires] = ACTIONS(3400), - [sym_this] = ACTIONS(3400), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3402), - [sym_semgrep_named_ellipsis] = ACTIONS(3402), + [ts_builtin_sym_end] = ACTIONS(3651), + [sym_identifier] = ACTIONS(3649), + [aux_sym_preproc_include_token1] = ACTIONS(3649), + [aux_sym_preproc_def_token1] = ACTIONS(3649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3651), + [aux_sym_preproc_if_token1] = ACTIONS(3649), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3649), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3649), + [sym_preproc_directive] = ACTIONS(3649), + [anon_sym_LPAREN2] = ACTIONS(3651), + [anon_sym_BANG] = ACTIONS(3651), + [anon_sym_TILDE] = ACTIONS(3651), + [anon_sym_DASH] = ACTIONS(3649), + [anon_sym_PLUS] = ACTIONS(3649), + [anon_sym_STAR] = ACTIONS(3651), + [anon_sym_AMP_AMP] = ACTIONS(3651), + [anon_sym_AMP] = ACTIONS(3649), + [anon_sym___extension__] = ACTIONS(3649), + [anon_sym_typedef] = ACTIONS(3649), + [anon_sym_extern] = ACTIONS(3649), + [anon_sym___attribute__] = ACTIONS(3649), + [anon_sym_COLON_COLON] = ACTIONS(3651), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3651), + [anon_sym___declspec] = ACTIONS(3649), + [anon_sym___based] = ACTIONS(3649), + [anon_sym___cdecl] = ACTIONS(3649), + [anon_sym___clrcall] = ACTIONS(3649), + [anon_sym___stdcall] = ACTIONS(3649), + [anon_sym___fastcall] = ACTIONS(3649), + [anon_sym___thiscall] = ACTIONS(3649), + [anon_sym___vectorcall] = ACTIONS(3649), + [anon_sym_LBRACE] = ACTIONS(3651), + [anon_sym_signed] = ACTIONS(3649), + [anon_sym_unsigned] = ACTIONS(3649), + [anon_sym_long] = ACTIONS(3649), + [anon_sym_short] = ACTIONS(3649), + [anon_sym_LBRACK] = ACTIONS(3649), + [anon_sym_static] = ACTIONS(3649), + [anon_sym_register] = ACTIONS(3649), + [anon_sym_inline] = ACTIONS(3649), + [anon_sym___inline] = ACTIONS(3649), + [anon_sym___inline__] = ACTIONS(3649), + [anon_sym___forceinline] = ACTIONS(3649), + [anon_sym_thread_local] = ACTIONS(3649), + [anon_sym___thread] = ACTIONS(3649), + [anon_sym_const] = ACTIONS(3649), + [anon_sym_constexpr] = ACTIONS(3649), + [anon_sym_volatile] = ACTIONS(3649), + [anon_sym_restrict] = ACTIONS(3649), + [anon_sym___restrict__] = ACTIONS(3649), + [anon_sym__Atomic] = ACTIONS(3649), + [anon_sym__Noreturn] = ACTIONS(3649), + [anon_sym_noreturn] = ACTIONS(3649), + [anon_sym_mutable] = ACTIONS(3649), + [anon_sym_constinit] = ACTIONS(3649), + [anon_sym_consteval] = ACTIONS(3649), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_enum] = ACTIONS(3649), + [anon_sym_class] = ACTIONS(3649), + [anon_sym_struct] = ACTIONS(3649), + [anon_sym_union] = ACTIONS(3649), + [anon_sym_if] = ACTIONS(3649), + [anon_sym_switch] = ACTIONS(3649), + [anon_sym_case] = ACTIONS(3649), + [anon_sym_default] = ACTIONS(3649), + [anon_sym_while] = ACTIONS(3649), + [anon_sym_do] = ACTIONS(3649), + [anon_sym_for] = ACTIONS(3649), + [anon_sym_return] = ACTIONS(3649), + [anon_sym_break] = ACTIONS(3649), + [anon_sym_continue] = ACTIONS(3649), + [anon_sym_goto] = ACTIONS(3649), + [anon_sym_not] = ACTIONS(3649), + [anon_sym_compl] = ACTIONS(3649), + [anon_sym_DASH_DASH] = ACTIONS(3651), + [anon_sym_PLUS_PLUS] = ACTIONS(3651), + [anon_sym_sizeof] = ACTIONS(3649), + [anon_sym___alignof__] = ACTIONS(3649), + [anon_sym___alignof] = ACTIONS(3649), + [anon_sym__alignof] = ACTIONS(3649), + [anon_sym_alignof] = ACTIONS(3649), + [anon_sym__Alignof] = ACTIONS(3649), + [anon_sym_offsetof] = ACTIONS(3649), + [anon_sym__Generic] = ACTIONS(3649), + [anon_sym_asm] = ACTIONS(3649), + [anon_sym___asm__] = ACTIONS(3649), + [sym_number_literal] = ACTIONS(3651), + [anon_sym_L_SQUOTE] = ACTIONS(3651), + [anon_sym_u_SQUOTE] = ACTIONS(3651), + [anon_sym_U_SQUOTE] = ACTIONS(3651), + [anon_sym_u8_SQUOTE] = ACTIONS(3651), + [anon_sym_SQUOTE] = ACTIONS(3651), + [anon_sym_L_DQUOTE] = ACTIONS(3651), + [anon_sym_u_DQUOTE] = ACTIONS(3651), + [anon_sym_U_DQUOTE] = ACTIONS(3651), + [anon_sym_u8_DQUOTE] = ACTIONS(3651), + [anon_sym_DQUOTE] = ACTIONS(3651), + [sym_true] = ACTIONS(3649), + [sym_false] = ACTIONS(3649), + [anon_sym_NULL] = ACTIONS(3649), + [anon_sym_nullptr] = ACTIONS(3649), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3649), + [anon_sym_decltype] = ACTIONS(3649), + [anon_sym_virtual] = ACTIONS(3649), + [anon_sym_alignas] = ACTIONS(3649), + [anon_sym_explicit] = ACTIONS(3649), + [anon_sym_typename] = ACTIONS(3649), + [anon_sym_template] = ACTIONS(3649), + [anon_sym_operator] = ACTIONS(3649), + [anon_sym_try] = ACTIONS(3649), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_throw] = ACTIONS(3649), + [anon_sym_namespace] = ACTIONS(3649), + [anon_sym_using] = ACTIONS(3649), + [anon_sym_static_assert] = ACTIONS(3649), + [anon_sym_concept] = ACTIONS(3649), + [anon_sym_co_return] = ACTIONS(3649), + [anon_sym_co_yield] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(3651), + [anon_sym_LR_DQUOTE] = ACTIONS(3651), + [anon_sym_uR_DQUOTE] = ACTIONS(3651), + [anon_sym_UR_DQUOTE] = ACTIONS(3651), + [anon_sym_u8R_DQUOTE] = ACTIONS(3651), + [anon_sym_co_await] = ACTIONS(3649), + [anon_sym_new] = ACTIONS(3649), + [anon_sym_requires] = ACTIONS(3649), + [sym_this] = ACTIONS(3649), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3651), + [sym_semgrep_named_ellipsis] = ACTIONS(3651), }, [843] = { - [ts_builtin_sym_end] = ACTIONS(3562), - [sym_identifier] = ACTIONS(3560), - [aux_sym_preproc_include_token1] = ACTIONS(3560), - [aux_sym_preproc_def_token1] = ACTIONS(3560), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3562), - [aux_sym_preproc_if_token1] = ACTIONS(3560), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3560), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3560), - [sym_preproc_directive] = ACTIONS(3560), - [anon_sym_LPAREN2] = ACTIONS(3562), - [anon_sym_BANG] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_DASH] = ACTIONS(3560), - [anon_sym_PLUS] = ACTIONS(3560), - [anon_sym_STAR] = ACTIONS(3562), - [anon_sym_AMP_AMP] = ACTIONS(3562), - [anon_sym_AMP] = ACTIONS(3560), - [anon_sym___extension__] = ACTIONS(3560), - [anon_sym_typedef] = ACTIONS(3560), - [anon_sym_extern] = ACTIONS(3560), - [anon_sym___attribute__] = ACTIONS(3560), - [anon_sym_COLON_COLON] = ACTIONS(3562), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3562), - [anon_sym___declspec] = ACTIONS(3560), - [anon_sym___based] = ACTIONS(3560), - [anon_sym___cdecl] = ACTIONS(3560), - [anon_sym___clrcall] = ACTIONS(3560), - [anon_sym___stdcall] = ACTIONS(3560), - [anon_sym___fastcall] = ACTIONS(3560), - [anon_sym___thiscall] = ACTIONS(3560), - [anon_sym___vectorcall] = ACTIONS(3560), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_signed] = ACTIONS(3560), - [anon_sym_unsigned] = ACTIONS(3560), - [anon_sym_long] = ACTIONS(3560), - [anon_sym_short] = ACTIONS(3560), - [anon_sym_LBRACK] = ACTIONS(3560), - [anon_sym_static] = ACTIONS(3560), - [anon_sym_register] = ACTIONS(3560), - [anon_sym_inline] = ACTIONS(3560), - [anon_sym___inline] = ACTIONS(3560), - [anon_sym___inline__] = ACTIONS(3560), - [anon_sym___forceinline] = ACTIONS(3560), - [anon_sym_thread_local] = ACTIONS(3560), - [anon_sym___thread] = ACTIONS(3560), - [anon_sym_const] = ACTIONS(3560), - [anon_sym_constexpr] = ACTIONS(3560), - [anon_sym_volatile] = ACTIONS(3560), - [anon_sym_restrict] = ACTIONS(3560), - [anon_sym___restrict__] = ACTIONS(3560), - [anon_sym__Atomic] = ACTIONS(3560), - [anon_sym__Noreturn] = ACTIONS(3560), - [anon_sym_noreturn] = ACTIONS(3560), - [anon_sym_mutable] = ACTIONS(3560), - [anon_sym_constinit] = ACTIONS(3560), - [anon_sym_consteval] = ACTIONS(3560), - [sym_primitive_type] = ACTIONS(3560), - [anon_sym_enum] = ACTIONS(3560), - [anon_sym_class] = ACTIONS(3560), - [anon_sym_struct] = ACTIONS(3560), - [anon_sym_union] = ACTIONS(3560), - [anon_sym_if] = ACTIONS(3560), - [anon_sym_switch] = ACTIONS(3560), - [anon_sym_case] = ACTIONS(3560), - [anon_sym_default] = ACTIONS(3560), - [anon_sym_while] = ACTIONS(3560), - [anon_sym_do] = ACTIONS(3560), - [anon_sym_for] = ACTIONS(3560), - [anon_sym_return] = ACTIONS(3560), - [anon_sym_break] = ACTIONS(3560), - [anon_sym_continue] = ACTIONS(3560), - [anon_sym_goto] = ACTIONS(3560), - [anon_sym_not] = ACTIONS(3560), - [anon_sym_compl] = ACTIONS(3560), - [anon_sym_DASH_DASH] = ACTIONS(3562), - [anon_sym_PLUS_PLUS] = ACTIONS(3562), - [anon_sym_sizeof] = ACTIONS(3560), - [anon_sym___alignof__] = ACTIONS(3560), - [anon_sym___alignof] = ACTIONS(3560), - [anon_sym__alignof] = ACTIONS(3560), - [anon_sym_alignof] = ACTIONS(3560), - [anon_sym__Alignof] = ACTIONS(3560), - [anon_sym_offsetof] = ACTIONS(3560), - [anon_sym__Generic] = ACTIONS(3560), - [anon_sym_asm] = ACTIONS(3560), - [anon_sym___asm__] = ACTIONS(3560), - [sym_number_literal] = ACTIONS(3562), - [anon_sym_L_SQUOTE] = ACTIONS(3562), - [anon_sym_u_SQUOTE] = ACTIONS(3562), - [anon_sym_U_SQUOTE] = ACTIONS(3562), - [anon_sym_u8_SQUOTE] = ACTIONS(3562), - [anon_sym_SQUOTE] = ACTIONS(3562), - [anon_sym_L_DQUOTE] = ACTIONS(3562), - [anon_sym_u_DQUOTE] = ACTIONS(3562), - [anon_sym_U_DQUOTE] = ACTIONS(3562), - [anon_sym_u8_DQUOTE] = ACTIONS(3562), - [anon_sym_DQUOTE] = ACTIONS(3562), - [sym_true] = ACTIONS(3560), - [sym_false] = ACTIONS(3560), - [anon_sym_NULL] = ACTIONS(3560), - [anon_sym_nullptr] = ACTIONS(3560), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3560), - [anon_sym_decltype] = ACTIONS(3560), - [anon_sym_virtual] = ACTIONS(3560), - [anon_sym_alignas] = ACTIONS(3560), - [anon_sym_explicit] = ACTIONS(3560), - [anon_sym_typename] = ACTIONS(3560), - [anon_sym_template] = ACTIONS(3560), - [anon_sym_operator] = ACTIONS(3560), - [anon_sym_try] = ACTIONS(3560), - [anon_sym_delete] = ACTIONS(3560), - [anon_sym_throw] = ACTIONS(3560), - [anon_sym_namespace] = ACTIONS(3560), - [anon_sym_using] = ACTIONS(3560), - [anon_sym_static_assert] = ACTIONS(3560), - [anon_sym_concept] = ACTIONS(3560), - [anon_sym_co_return] = ACTIONS(3560), - [anon_sym_co_yield] = ACTIONS(3560), - [anon_sym_R_DQUOTE] = ACTIONS(3562), - [anon_sym_LR_DQUOTE] = ACTIONS(3562), - [anon_sym_uR_DQUOTE] = ACTIONS(3562), - [anon_sym_UR_DQUOTE] = ACTIONS(3562), - [anon_sym_u8R_DQUOTE] = ACTIONS(3562), - [anon_sym_co_await] = ACTIONS(3560), - [anon_sym_new] = ACTIONS(3560), - [anon_sym_requires] = ACTIONS(3560), - [sym_this] = ACTIONS(3560), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3562), - [sym_semgrep_named_ellipsis] = ACTIONS(3562), + [ts_builtin_sym_end] = ACTIONS(3595), + [sym_identifier] = ACTIONS(3593), + [aux_sym_preproc_include_token1] = ACTIONS(3593), + [aux_sym_preproc_def_token1] = ACTIONS(3593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3595), + [aux_sym_preproc_if_token1] = ACTIONS(3593), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3593), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3593), + [sym_preproc_directive] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(3595), + [anon_sym_DASH] = ACTIONS(3593), + [anon_sym_PLUS] = ACTIONS(3593), + [anon_sym_STAR] = ACTIONS(3595), + [anon_sym_AMP_AMP] = ACTIONS(3595), + [anon_sym_AMP] = ACTIONS(3593), + [anon_sym___extension__] = ACTIONS(3593), + [anon_sym_typedef] = ACTIONS(3593), + [anon_sym_extern] = ACTIONS(3593), + [anon_sym___attribute__] = ACTIONS(3593), + [anon_sym_COLON_COLON] = ACTIONS(3595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3595), + [anon_sym___declspec] = ACTIONS(3593), + [anon_sym___based] = ACTIONS(3593), + [anon_sym___cdecl] = ACTIONS(3593), + [anon_sym___clrcall] = ACTIONS(3593), + [anon_sym___stdcall] = ACTIONS(3593), + [anon_sym___fastcall] = ACTIONS(3593), + [anon_sym___thiscall] = ACTIONS(3593), + [anon_sym___vectorcall] = ACTIONS(3593), + [anon_sym_LBRACE] = ACTIONS(3595), + [anon_sym_signed] = ACTIONS(3593), + [anon_sym_unsigned] = ACTIONS(3593), + [anon_sym_long] = ACTIONS(3593), + [anon_sym_short] = ACTIONS(3593), + [anon_sym_LBRACK] = ACTIONS(3593), + [anon_sym_static] = ACTIONS(3593), + [anon_sym_register] = ACTIONS(3593), + [anon_sym_inline] = ACTIONS(3593), + [anon_sym___inline] = ACTIONS(3593), + [anon_sym___inline__] = ACTIONS(3593), + [anon_sym___forceinline] = ACTIONS(3593), + [anon_sym_thread_local] = ACTIONS(3593), + [anon_sym___thread] = ACTIONS(3593), + [anon_sym_const] = ACTIONS(3593), + [anon_sym_constexpr] = ACTIONS(3593), + [anon_sym_volatile] = ACTIONS(3593), + [anon_sym_restrict] = ACTIONS(3593), + [anon_sym___restrict__] = ACTIONS(3593), + [anon_sym__Atomic] = ACTIONS(3593), + [anon_sym__Noreturn] = ACTIONS(3593), + [anon_sym_noreturn] = ACTIONS(3593), + [anon_sym_mutable] = ACTIONS(3593), + [anon_sym_constinit] = ACTIONS(3593), + [anon_sym_consteval] = ACTIONS(3593), + [sym_primitive_type] = ACTIONS(3593), + [anon_sym_enum] = ACTIONS(3593), + [anon_sym_class] = ACTIONS(3593), + [anon_sym_struct] = ACTIONS(3593), + [anon_sym_union] = ACTIONS(3593), + [anon_sym_if] = ACTIONS(3593), + [anon_sym_switch] = ACTIONS(3593), + [anon_sym_case] = ACTIONS(3593), + [anon_sym_default] = ACTIONS(3593), + [anon_sym_while] = ACTIONS(3593), + [anon_sym_do] = ACTIONS(3593), + [anon_sym_for] = ACTIONS(3593), + [anon_sym_return] = ACTIONS(3593), + [anon_sym_break] = ACTIONS(3593), + [anon_sym_continue] = ACTIONS(3593), + [anon_sym_goto] = ACTIONS(3593), + [anon_sym_not] = ACTIONS(3593), + [anon_sym_compl] = ACTIONS(3593), + [anon_sym_DASH_DASH] = ACTIONS(3595), + [anon_sym_PLUS_PLUS] = ACTIONS(3595), + [anon_sym_sizeof] = ACTIONS(3593), + [anon_sym___alignof__] = ACTIONS(3593), + [anon_sym___alignof] = ACTIONS(3593), + [anon_sym__alignof] = ACTIONS(3593), + [anon_sym_alignof] = ACTIONS(3593), + [anon_sym__Alignof] = ACTIONS(3593), + [anon_sym_offsetof] = ACTIONS(3593), + [anon_sym__Generic] = ACTIONS(3593), + [anon_sym_asm] = ACTIONS(3593), + [anon_sym___asm__] = ACTIONS(3593), + [sym_number_literal] = ACTIONS(3595), + [anon_sym_L_SQUOTE] = ACTIONS(3595), + [anon_sym_u_SQUOTE] = ACTIONS(3595), + [anon_sym_U_SQUOTE] = ACTIONS(3595), + [anon_sym_u8_SQUOTE] = ACTIONS(3595), + [anon_sym_SQUOTE] = ACTIONS(3595), + [anon_sym_L_DQUOTE] = ACTIONS(3595), + [anon_sym_u_DQUOTE] = ACTIONS(3595), + [anon_sym_U_DQUOTE] = ACTIONS(3595), + [anon_sym_u8_DQUOTE] = ACTIONS(3595), + [anon_sym_DQUOTE] = ACTIONS(3595), + [sym_true] = ACTIONS(3593), + [sym_false] = ACTIONS(3593), + [anon_sym_NULL] = ACTIONS(3593), + [anon_sym_nullptr] = ACTIONS(3593), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3593), + [anon_sym_decltype] = ACTIONS(3593), + [anon_sym_virtual] = ACTIONS(3593), + [anon_sym_alignas] = ACTIONS(3593), + [anon_sym_explicit] = ACTIONS(3593), + [anon_sym_typename] = ACTIONS(3593), + [anon_sym_template] = ACTIONS(3593), + [anon_sym_operator] = ACTIONS(3593), + [anon_sym_try] = ACTIONS(3593), + [anon_sym_delete] = ACTIONS(3593), + [anon_sym_throw] = ACTIONS(3593), + [anon_sym_namespace] = ACTIONS(3593), + [anon_sym_using] = ACTIONS(3593), + [anon_sym_static_assert] = ACTIONS(3593), + [anon_sym_concept] = ACTIONS(3593), + [anon_sym_co_return] = ACTIONS(3593), + [anon_sym_co_yield] = ACTIONS(3593), + [anon_sym_R_DQUOTE] = ACTIONS(3595), + [anon_sym_LR_DQUOTE] = ACTIONS(3595), + [anon_sym_uR_DQUOTE] = ACTIONS(3595), + [anon_sym_UR_DQUOTE] = ACTIONS(3595), + [anon_sym_u8R_DQUOTE] = ACTIONS(3595), + [anon_sym_co_await] = ACTIONS(3593), + [anon_sym_new] = ACTIONS(3593), + [anon_sym_requires] = ACTIONS(3593), + [sym_this] = ACTIONS(3593), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3595), + [sym_semgrep_named_ellipsis] = ACTIONS(3595), }, [844] = { - [ts_builtin_sym_end] = ACTIONS(3612), - [sym_identifier] = ACTIONS(3610), - [aux_sym_preproc_include_token1] = ACTIONS(3610), - [aux_sym_preproc_def_token1] = ACTIONS(3610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3612), - [aux_sym_preproc_if_token1] = ACTIONS(3610), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3610), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3610), - [sym_preproc_directive] = ACTIONS(3610), - [anon_sym_LPAREN2] = ACTIONS(3612), - [anon_sym_BANG] = ACTIONS(3612), - [anon_sym_TILDE] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3610), - [anon_sym_STAR] = ACTIONS(3612), - [anon_sym_AMP_AMP] = ACTIONS(3612), - [anon_sym_AMP] = ACTIONS(3610), - [anon_sym___extension__] = ACTIONS(3610), - [anon_sym_typedef] = ACTIONS(3610), - [anon_sym_extern] = ACTIONS(3610), - [anon_sym___attribute__] = ACTIONS(3610), - [anon_sym_COLON_COLON] = ACTIONS(3612), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3612), - [anon_sym___declspec] = ACTIONS(3610), - [anon_sym___based] = ACTIONS(3610), - [anon_sym___cdecl] = ACTIONS(3610), - [anon_sym___clrcall] = ACTIONS(3610), - [anon_sym___stdcall] = ACTIONS(3610), - [anon_sym___fastcall] = ACTIONS(3610), - [anon_sym___thiscall] = ACTIONS(3610), - [anon_sym___vectorcall] = ACTIONS(3610), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym_signed] = ACTIONS(3610), - [anon_sym_unsigned] = ACTIONS(3610), - [anon_sym_long] = ACTIONS(3610), - [anon_sym_short] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3610), - [anon_sym_static] = ACTIONS(3610), - [anon_sym_register] = ACTIONS(3610), - [anon_sym_inline] = ACTIONS(3610), - [anon_sym___inline] = ACTIONS(3610), - [anon_sym___inline__] = ACTIONS(3610), - [anon_sym___forceinline] = ACTIONS(3610), - [anon_sym_thread_local] = ACTIONS(3610), - [anon_sym___thread] = ACTIONS(3610), - [anon_sym_const] = ACTIONS(3610), - [anon_sym_constexpr] = ACTIONS(3610), - [anon_sym_volatile] = ACTIONS(3610), - [anon_sym_restrict] = ACTIONS(3610), - [anon_sym___restrict__] = ACTIONS(3610), - [anon_sym__Atomic] = ACTIONS(3610), - [anon_sym__Noreturn] = ACTIONS(3610), - [anon_sym_noreturn] = ACTIONS(3610), - [anon_sym_mutable] = ACTIONS(3610), - [anon_sym_constinit] = ACTIONS(3610), - [anon_sym_consteval] = ACTIONS(3610), - [sym_primitive_type] = ACTIONS(3610), - [anon_sym_enum] = ACTIONS(3610), - [anon_sym_class] = ACTIONS(3610), - [anon_sym_struct] = ACTIONS(3610), - [anon_sym_union] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(3610), - [anon_sym_switch] = ACTIONS(3610), - [anon_sym_case] = ACTIONS(3610), - [anon_sym_default] = ACTIONS(3610), - [anon_sym_while] = ACTIONS(3610), - [anon_sym_do] = ACTIONS(3610), - [anon_sym_for] = ACTIONS(3610), - [anon_sym_return] = ACTIONS(3610), - [anon_sym_break] = ACTIONS(3610), - [anon_sym_continue] = ACTIONS(3610), - [anon_sym_goto] = ACTIONS(3610), - [anon_sym_not] = ACTIONS(3610), - [anon_sym_compl] = ACTIONS(3610), - [anon_sym_DASH_DASH] = ACTIONS(3612), - [anon_sym_PLUS_PLUS] = ACTIONS(3612), - [anon_sym_sizeof] = ACTIONS(3610), - [anon_sym___alignof__] = ACTIONS(3610), - [anon_sym___alignof] = ACTIONS(3610), - [anon_sym__alignof] = ACTIONS(3610), - [anon_sym_alignof] = ACTIONS(3610), - [anon_sym__Alignof] = ACTIONS(3610), - [anon_sym_offsetof] = ACTIONS(3610), - [anon_sym__Generic] = ACTIONS(3610), - [anon_sym_asm] = ACTIONS(3610), - [anon_sym___asm__] = ACTIONS(3610), - [sym_number_literal] = ACTIONS(3612), - [anon_sym_L_SQUOTE] = ACTIONS(3612), - [anon_sym_u_SQUOTE] = ACTIONS(3612), - [anon_sym_U_SQUOTE] = ACTIONS(3612), - [anon_sym_u8_SQUOTE] = ACTIONS(3612), - [anon_sym_SQUOTE] = ACTIONS(3612), - [anon_sym_L_DQUOTE] = ACTIONS(3612), - [anon_sym_u_DQUOTE] = ACTIONS(3612), - [anon_sym_U_DQUOTE] = ACTIONS(3612), - [anon_sym_u8_DQUOTE] = ACTIONS(3612), - [anon_sym_DQUOTE] = ACTIONS(3612), - [sym_true] = ACTIONS(3610), - [sym_false] = ACTIONS(3610), - [anon_sym_NULL] = ACTIONS(3610), - [anon_sym_nullptr] = ACTIONS(3610), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3610), - [anon_sym_decltype] = ACTIONS(3610), - [anon_sym_virtual] = ACTIONS(3610), - [anon_sym_alignas] = ACTIONS(3610), - [anon_sym_explicit] = ACTIONS(3610), - [anon_sym_typename] = ACTIONS(3610), - [anon_sym_template] = ACTIONS(3610), - [anon_sym_operator] = ACTIONS(3610), - [anon_sym_try] = ACTIONS(3610), - [anon_sym_delete] = ACTIONS(3610), - [anon_sym_throw] = ACTIONS(3610), - [anon_sym_namespace] = ACTIONS(3610), - [anon_sym_using] = ACTIONS(3610), - [anon_sym_static_assert] = ACTIONS(3610), - [anon_sym_concept] = ACTIONS(3610), - [anon_sym_co_return] = ACTIONS(3610), - [anon_sym_co_yield] = ACTIONS(3610), - [anon_sym_R_DQUOTE] = ACTIONS(3612), - [anon_sym_LR_DQUOTE] = ACTIONS(3612), - [anon_sym_uR_DQUOTE] = ACTIONS(3612), - [anon_sym_UR_DQUOTE] = ACTIONS(3612), - [anon_sym_u8R_DQUOTE] = ACTIONS(3612), - [anon_sym_co_await] = ACTIONS(3610), - [anon_sym_new] = ACTIONS(3610), - [anon_sym_requires] = ACTIONS(3610), - [sym_this] = ACTIONS(3610), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3612), - [sym_semgrep_named_ellipsis] = ACTIONS(3612), - }, - [845] = { - [ts_builtin_sym_end] = ACTIONS(3406), - [sym_identifier] = ACTIONS(3404), - [aux_sym_preproc_include_token1] = ACTIONS(3404), - [aux_sym_preproc_def_token1] = ACTIONS(3404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3406), - [aux_sym_preproc_if_token1] = ACTIONS(3404), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3404), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3404), - [sym_preproc_directive] = ACTIONS(3404), - [anon_sym_LPAREN2] = ACTIONS(3406), - [anon_sym_BANG] = ACTIONS(3406), - [anon_sym_TILDE] = ACTIONS(3406), - [anon_sym_DASH] = ACTIONS(3404), - [anon_sym_PLUS] = ACTIONS(3404), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_AMP_AMP] = ACTIONS(3406), - [anon_sym_AMP] = ACTIONS(3404), - [anon_sym___extension__] = ACTIONS(3404), - [anon_sym_typedef] = ACTIONS(3404), - [anon_sym_extern] = ACTIONS(3404), - [anon_sym___attribute__] = ACTIONS(3404), - [anon_sym_COLON_COLON] = ACTIONS(3406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3406), - [anon_sym___declspec] = ACTIONS(3404), - [anon_sym___based] = ACTIONS(3404), - [anon_sym___cdecl] = ACTIONS(3404), - [anon_sym___clrcall] = ACTIONS(3404), - [anon_sym___stdcall] = ACTIONS(3404), - [anon_sym___fastcall] = ACTIONS(3404), - [anon_sym___thiscall] = ACTIONS(3404), - [anon_sym___vectorcall] = ACTIONS(3404), - [anon_sym_LBRACE] = ACTIONS(3406), - [anon_sym_signed] = ACTIONS(3404), - [anon_sym_unsigned] = ACTIONS(3404), - [anon_sym_long] = ACTIONS(3404), - [anon_sym_short] = ACTIONS(3404), - [anon_sym_LBRACK] = ACTIONS(3404), - [anon_sym_static] = ACTIONS(3404), - [anon_sym_register] = ACTIONS(3404), - [anon_sym_inline] = ACTIONS(3404), - [anon_sym___inline] = ACTIONS(3404), - [anon_sym___inline__] = ACTIONS(3404), - [anon_sym___forceinline] = ACTIONS(3404), - [anon_sym_thread_local] = ACTIONS(3404), - [anon_sym___thread] = ACTIONS(3404), - [anon_sym_const] = ACTIONS(3404), - [anon_sym_constexpr] = ACTIONS(3404), - [anon_sym_volatile] = ACTIONS(3404), - [anon_sym_restrict] = ACTIONS(3404), - [anon_sym___restrict__] = ACTIONS(3404), - [anon_sym__Atomic] = ACTIONS(3404), - [anon_sym__Noreturn] = ACTIONS(3404), - [anon_sym_noreturn] = ACTIONS(3404), - [anon_sym_mutable] = ACTIONS(3404), - [anon_sym_constinit] = ACTIONS(3404), - [anon_sym_consteval] = ACTIONS(3404), - [sym_primitive_type] = ACTIONS(3404), - [anon_sym_enum] = ACTIONS(3404), - [anon_sym_class] = ACTIONS(3404), - [anon_sym_struct] = ACTIONS(3404), - [anon_sym_union] = ACTIONS(3404), - [anon_sym_if] = ACTIONS(3404), - [anon_sym_switch] = ACTIONS(3404), - [anon_sym_case] = ACTIONS(3404), - [anon_sym_default] = ACTIONS(3404), - [anon_sym_while] = ACTIONS(3404), - [anon_sym_do] = ACTIONS(3404), - [anon_sym_for] = ACTIONS(3404), - [anon_sym_return] = ACTIONS(3404), - [anon_sym_break] = ACTIONS(3404), - [anon_sym_continue] = ACTIONS(3404), - [anon_sym_goto] = ACTIONS(3404), - [anon_sym_not] = ACTIONS(3404), - [anon_sym_compl] = ACTIONS(3404), - [anon_sym_DASH_DASH] = ACTIONS(3406), - [anon_sym_PLUS_PLUS] = ACTIONS(3406), - [anon_sym_sizeof] = ACTIONS(3404), - [anon_sym___alignof__] = ACTIONS(3404), - [anon_sym___alignof] = ACTIONS(3404), - [anon_sym__alignof] = ACTIONS(3404), - [anon_sym_alignof] = ACTIONS(3404), - [anon_sym__Alignof] = ACTIONS(3404), - [anon_sym_offsetof] = ACTIONS(3404), - [anon_sym__Generic] = ACTIONS(3404), - [anon_sym_asm] = ACTIONS(3404), - [anon_sym___asm__] = ACTIONS(3404), - [sym_number_literal] = ACTIONS(3406), - [anon_sym_L_SQUOTE] = ACTIONS(3406), - [anon_sym_u_SQUOTE] = ACTIONS(3406), - [anon_sym_U_SQUOTE] = ACTIONS(3406), - [anon_sym_u8_SQUOTE] = ACTIONS(3406), - [anon_sym_SQUOTE] = ACTIONS(3406), - [anon_sym_L_DQUOTE] = ACTIONS(3406), - [anon_sym_u_DQUOTE] = ACTIONS(3406), - [anon_sym_U_DQUOTE] = ACTIONS(3406), - [anon_sym_u8_DQUOTE] = ACTIONS(3406), - [anon_sym_DQUOTE] = ACTIONS(3406), - [sym_true] = ACTIONS(3404), - [sym_false] = ACTIONS(3404), - [anon_sym_NULL] = ACTIONS(3404), - [anon_sym_nullptr] = ACTIONS(3404), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3404), - [anon_sym_decltype] = ACTIONS(3404), - [anon_sym_virtual] = ACTIONS(3404), - [anon_sym_alignas] = ACTIONS(3404), - [anon_sym_explicit] = ACTIONS(3404), - [anon_sym_typename] = ACTIONS(3404), - [anon_sym_template] = ACTIONS(3404), - [anon_sym_operator] = ACTIONS(3404), - [anon_sym_try] = ACTIONS(3404), - [anon_sym_delete] = ACTIONS(3404), - [anon_sym_throw] = ACTIONS(3404), - [anon_sym_namespace] = ACTIONS(3404), - [anon_sym_using] = ACTIONS(3404), - [anon_sym_static_assert] = ACTIONS(3404), - [anon_sym_concept] = ACTIONS(3404), - [anon_sym_co_return] = ACTIONS(3404), - [anon_sym_co_yield] = ACTIONS(3404), - [anon_sym_R_DQUOTE] = ACTIONS(3406), - [anon_sym_LR_DQUOTE] = ACTIONS(3406), - [anon_sym_uR_DQUOTE] = ACTIONS(3406), - [anon_sym_UR_DQUOTE] = ACTIONS(3406), - [anon_sym_u8R_DQUOTE] = ACTIONS(3406), - [anon_sym_co_await] = ACTIONS(3404), - [anon_sym_new] = ACTIONS(3404), - [anon_sym_requires] = ACTIONS(3404), - [sym_this] = ACTIONS(3404), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3406), - [sym_semgrep_named_ellipsis] = ACTIONS(3406), - }, - [846] = { - [ts_builtin_sym_end] = ACTIONS(3410), - [sym_identifier] = ACTIONS(3408), - [aux_sym_preproc_include_token1] = ACTIONS(3408), - [aux_sym_preproc_def_token1] = ACTIONS(3408), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3410), - [aux_sym_preproc_if_token1] = ACTIONS(3408), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3408), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3408), - [sym_preproc_directive] = ACTIONS(3408), - [anon_sym_LPAREN2] = ACTIONS(3410), - [anon_sym_BANG] = ACTIONS(3410), - [anon_sym_TILDE] = ACTIONS(3410), - [anon_sym_DASH] = ACTIONS(3408), - [anon_sym_PLUS] = ACTIONS(3408), - [anon_sym_STAR] = ACTIONS(3410), - [anon_sym_AMP_AMP] = ACTIONS(3410), - [anon_sym_AMP] = ACTIONS(3408), - [anon_sym___extension__] = ACTIONS(3408), - [anon_sym_typedef] = ACTIONS(3408), - [anon_sym_extern] = ACTIONS(3408), - [anon_sym___attribute__] = ACTIONS(3408), - [anon_sym_COLON_COLON] = ACTIONS(3410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3410), - [anon_sym___declspec] = ACTIONS(3408), - [anon_sym___based] = ACTIONS(3408), - [anon_sym___cdecl] = ACTIONS(3408), - [anon_sym___clrcall] = ACTIONS(3408), - [anon_sym___stdcall] = ACTIONS(3408), - [anon_sym___fastcall] = ACTIONS(3408), - [anon_sym___thiscall] = ACTIONS(3408), - [anon_sym___vectorcall] = ACTIONS(3408), - [anon_sym_LBRACE] = ACTIONS(3410), - [anon_sym_signed] = ACTIONS(3408), - [anon_sym_unsigned] = ACTIONS(3408), - [anon_sym_long] = ACTIONS(3408), - [anon_sym_short] = ACTIONS(3408), - [anon_sym_LBRACK] = ACTIONS(3408), - [anon_sym_static] = ACTIONS(3408), - [anon_sym_register] = ACTIONS(3408), - [anon_sym_inline] = ACTIONS(3408), - [anon_sym___inline] = ACTIONS(3408), - [anon_sym___inline__] = ACTIONS(3408), - [anon_sym___forceinline] = ACTIONS(3408), - [anon_sym_thread_local] = ACTIONS(3408), - [anon_sym___thread] = ACTIONS(3408), - [anon_sym_const] = ACTIONS(3408), - [anon_sym_constexpr] = ACTIONS(3408), - [anon_sym_volatile] = ACTIONS(3408), - [anon_sym_restrict] = ACTIONS(3408), - [anon_sym___restrict__] = ACTIONS(3408), - [anon_sym__Atomic] = ACTIONS(3408), - [anon_sym__Noreturn] = ACTIONS(3408), - [anon_sym_noreturn] = ACTIONS(3408), - [anon_sym_mutable] = ACTIONS(3408), - [anon_sym_constinit] = ACTIONS(3408), - [anon_sym_consteval] = ACTIONS(3408), - [sym_primitive_type] = ACTIONS(3408), - [anon_sym_enum] = ACTIONS(3408), - [anon_sym_class] = ACTIONS(3408), - [anon_sym_struct] = ACTIONS(3408), - [anon_sym_union] = ACTIONS(3408), - [anon_sym_if] = ACTIONS(3408), - [anon_sym_switch] = ACTIONS(3408), - [anon_sym_case] = ACTIONS(3408), - [anon_sym_default] = ACTIONS(3408), - [anon_sym_while] = ACTIONS(3408), - [anon_sym_do] = ACTIONS(3408), - [anon_sym_for] = ACTIONS(3408), - [anon_sym_return] = ACTIONS(3408), - [anon_sym_break] = ACTIONS(3408), - [anon_sym_continue] = ACTIONS(3408), - [anon_sym_goto] = ACTIONS(3408), - [anon_sym_not] = ACTIONS(3408), - [anon_sym_compl] = ACTIONS(3408), - [anon_sym_DASH_DASH] = ACTIONS(3410), - [anon_sym_PLUS_PLUS] = ACTIONS(3410), - [anon_sym_sizeof] = ACTIONS(3408), - [anon_sym___alignof__] = ACTIONS(3408), - [anon_sym___alignof] = ACTIONS(3408), - [anon_sym__alignof] = ACTIONS(3408), - [anon_sym_alignof] = ACTIONS(3408), - [anon_sym__Alignof] = ACTIONS(3408), - [anon_sym_offsetof] = ACTIONS(3408), - [anon_sym__Generic] = ACTIONS(3408), - [anon_sym_asm] = ACTIONS(3408), - [anon_sym___asm__] = ACTIONS(3408), - [sym_number_literal] = ACTIONS(3410), - [anon_sym_L_SQUOTE] = ACTIONS(3410), - [anon_sym_u_SQUOTE] = ACTIONS(3410), - [anon_sym_U_SQUOTE] = ACTIONS(3410), - [anon_sym_u8_SQUOTE] = ACTIONS(3410), - [anon_sym_SQUOTE] = ACTIONS(3410), - [anon_sym_L_DQUOTE] = ACTIONS(3410), - [anon_sym_u_DQUOTE] = ACTIONS(3410), - [anon_sym_U_DQUOTE] = ACTIONS(3410), - [anon_sym_u8_DQUOTE] = ACTIONS(3410), - [anon_sym_DQUOTE] = ACTIONS(3410), - [sym_true] = ACTIONS(3408), - [sym_false] = ACTIONS(3408), - [anon_sym_NULL] = ACTIONS(3408), - [anon_sym_nullptr] = ACTIONS(3408), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3408), - [anon_sym_decltype] = ACTIONS(3408), - [anon_sym_virtual] = ACTIONS(3408), - [anon_sym_alignas] = ACTIONS(3408), - [anon_sym_explicit] = ACTIONS(3408), - [anon_sym_typename] = ACTIONS(3408), - [anon_sym_template] = ACTIONS(3408), - [anon_sym_operator] = ACTIONS(3408), - [anon_sym_try] = ACTIONS(3408), - [anon_sym_delete] = ACTIONS(3408), - [anon_sym_throw] = ACTIONS(3408), - [anon_sym_namespace] = ACTIONS(3408), - [anon_sym_using] = ACTIONS(3408), - [anon_sym_static_assert] = ACTIONS(3408), - [anon_sym_concept] = ACTIONS(3408), - [anon_sym_co_return] = ACTIONS(3408), - [anon_sym_co_yield] = ACTIONS(3408), - [anon_sym_R_DQUOTE] = ACTIONS(3410), - [anon_sym_LR_DQUOTE] = ACTIONS(3410), - [anon_sym_uR_DQUOTE] = ACTIONS(3410), - [anon_sym_UR_DQUOTE] = ACTIONS(3410), - [anon_sym_u8R_DQUOTE] = ACTIONS(3410), - [anon_sym_co_await] = ACTIONS(3408), - [anon_sym_new] = ACTIONS(3408), - [anon_sym_requires] = ACTIONS(3408), - [sym_this] = ACTIONS(3408), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3410), - [sym_semgrep_named_ellipsis] = ACTIONS(3410), - }, - [847] = { - [ts_builtin_sym_end] = ACTIONS(3414), - [sym_identifier] = ACTIONS(3412), - [aux_sym_preproc_include_token1] = ACTIONS(3412), - [aux_sym_preproc_def_token1] = ACTIONS(3412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3414), - [aux_sym_preproc_if_token1] = ACTIONS(3412), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3412), - [sym_preproc_directive] = ACTIONS(3412), - [anon_sym_LPAREN2] = ACTIONS(3414), - [anon_sym_BANG] = ACTIONS(3414), - [anon_sym_TILDE] = ACTIONS(3414), - [anon_sym_DASH] = ACTIONS(3412), - [anon_sym_PLUS] = ACTIONS(3412), - [anon_sym_STAR] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3414), - [anon_sym_AMP] = ACTIONS(3412), - [anon_sym___extension__] = ACTIONS(3412), - [anon_sym_typedef] = ACTIONS(3412), - [anon_sym_extern] = ACTIONS(3412), - [anon_sym___attribute__] = ACTIONS(3412), - [anon_sym_COLON_COLON] = ACTIONS(3414), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3414), - [anon_sym___declspec] = ACTIONS(3412), - [anon_sym___based] = ACTIONS(3412), - [anon_sym___cdecl] = ACTIONS(3412), - [anon_sym___clrcall] = ACTIONS(3412), - [anon_sym___stdcall] = ACTIONS(3412), - [anon_sym___fastcall] = ACTIONS(3412), - [anon_sym___thiscall] = ACTIONS(3412), - [anon_sym___vectorcall] = ACTIONS(3412), - [anon_sym_LBRACE] = ACTIONS(3414), - [anon_sym_signed] = ACTIONS(3412), - [anon_sym_unsigned] = ACTIONS(3412), - [anon_sym_long] = ACTIONS(3412), - [anon_sym_short] = ACTIONS(3412), - [anon_sym_LBRACK] = ACTIONS(3412), - [anon_sym_static] = ACTIONS(3412), - [anon_sym_register] = ACTIONS(3412), - [anon_sym_inline] = ACTIONS(3412), - [anon_sym___inline] = ACTIONS(3412), - [anon_sym___inline__] = ACTIONS(3412), - [anon_sym___forceinline] = ACTIONS(3412), - [anon_sym_thread_local] = ACTIONS(3412), - [anon_sym___thread] = ACTIONS(3412), - [anon_sym_const] = ACTIONS(3412), - [anon_sym_constexpr] = ACTIONS(3412), - [anon_sym_volatile] = ACTIONS(3412), - [anon_sym_restrict] = ACTIONS(3412), - [anon_sym___restrict__] = ACTIONS(3412), - [anon_sym__Atomic] = ACTIONS(3412), - [anon_sym__Noreturn] = ACTIONS(3412), - [anon_sym_noreturn] = ACTIONS(3412), - [anon_sym_mutable] = ACTIONS(3412), - [anon_sym_constinit] = ACTIONS(3412), - [anon_sym_consteval] = ACTIONS(3412), - [sym_primitive_type] = ACTIONS(3412), - [anon_sym_enum] = ACTIONS(3412), - [anon_sym_class] = ACTIONS(3412), - [anon_sym_struct] = ACTIONS(3412), - [anon_sym_union] = ACTIONS(3412), - [anon_sym_if] = ACTIONS(3412), - [anon_sym_switch] = ACTIONS(3412), - [anon_sym_case] = ACTIONS(3412), - [anon_sym_default] = ACTIONS(3412), - [anon_sym_while] = ACTIONS(3412), - [anon_sym_do] = ACTIONS(3412), - [anon_sym_for] = ACTIONS(3412), - [anon_sym_return] = ACTIONS(3412), - [anon_sym_break] = ACTIONS(3412), - [anon_sym_continue] = ACTIONS(3412), - [anon_sym_goto] = ACTIONS(3412), - [anon_sym_not] = ACTIONS(3412), - [anon_sym_compl] = ACTIONS(3412), - [anon_sym_DASH_DASH] = ACTIONS(3414), - [anon_sym_PLUS_PLUS] = ACTIONS(3414), - [anon_sym_sizeof] = ACTIONS(3412), - [anon_sym___alignof__] = ACTIONS(3412), - [anon_sym___alignof] = ACTIONS(3412), - [anon_sym__alignof] = ACTIONS(3412), - [anon_sym_alignof] = ACTIONS(3412), - [anon_sym__Alignof] = ACTIONS(3412), - [anon_sym_offsetof] = ACTIONS(3412), - [anon_sym__Generic] = ACTIONS(3412), - [anon_sym_asm] = ACTIONS(3412), - [anon_sym___asm__] = ACTIONS(3412), - [sym_number_literal] = ACTIONS(3414), - [anon_sym_L_SQUOTE] = ACTIONS(3414), - [anon_sym_u_SQUOTE] = ACTIONS(3414), - [anon_sym_U_SQUOTE] = ACTIONS(3414), - [anon_sym_u8_SQUOTE] = ACTIONS(3414), - [anon_sym_SQUOTE] = ACTIONS(3414), - [anon_sym_L_DQUOTE] = ACTIONS(3414), - [anon_sym_u_DQUOTE] = ACTIONS(3414), - [anon_sym_U_DQUOTE] = ACTIONS(3414), - [anon_sym_u8_DQUOTE] = ACTIONS(3414), - [anon_sym_DQUOTE] = ACTIONS(3414), - [sym_true] = ACTIONS(3412), - [sym_false] = ACTIONS(3412), - [anon_sym_NULL] = ACTIONS(3412), - [anon_sym_nullptr] = ACTIONS(3412), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3412), - [anon_sym_decltype] = ACTIONS(3412), - [anon_sym_virtual] = ACTIONS(3412), - [anon_sym_alignas] = ACTIONS(3412), - [anon_sym_explicit] = ACTIONS(3412), - [anon_sym_typename] = ACTIONS(3412), - [anon_sym_template] = ACTIONS(3412), - [anon_sym_operator] = ACTIONS(3412), - [anon_sym_try] = ACTIONS(3412), - [anon_sym_delete] = ACTIONS(3412), - [anon_sym_throw] = ACTIONS(3412), - [anon_sym_namespace] = ACTIONS(3412), - [anon_sym_using] = ACTIONS(3412), - [anon_sym_static_assert] = ACTIONS(3412), - [anon_sym_concept] = ACTIONS(3412), - [anon_sym_co_return] = ACTIONS(3412), - [anon_sym_co_yield] = ACTIONS(3412), - [anon_sym_R_DQUOTE] = ACTIONS(3414), - [anon_sym_LR_DQUOTE] = ACTIONS(3414), - [anon_sym_uR_DQUOTE] = ACTIONS(3414), - [anon_sym_UR_DQUOTE] = ACTIONS(3414), - [anon_sym_u8R_DQUOTE] = ACTIONS(3414), - [anon_sym_co_await] = ACTIONS(3412), - [anon_sym_new] = ACTIONS(3412), - [anon_sym_requires] = ACTIONS(3412), - [sym_this] = ACTIONS(3412), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3414), - [sym_semgrep_named_ellipsis] = ACTIONS(3414), - }, - [848] = { - [ts_builtin_sym_end] = ACTIONS(3418), - [sym_identifier] = ACTIONS(3416), - [aux_sym_preproc_include_token1] = ACTIONS(3416), - [aux_sym_preproc_def_token1] = ACTIONS(3416), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3418), - [aux_sym_preproc_if_token1] = ACTIONS(3416), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3416), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3416), - [sym_preproc_directive] = ACTIONS(3416), - [anon_sym_LPAREN2] = ACTIONS(3418), - [anon_sym_BANG] = ACTIONS(3418), - [anon_sym_TILDE] = ACTIONS(3418), - [anon_sym_DASH] = ACTIONS(3416), - [anon_sym_PLUS] = ACTIONS(3416), - [anon_sym_STAR] = ACTIONS(3418), - [anon_sym_AMP_AMP] = ACTIONS(3418), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym___extension__] = ACTIONS(3416), - [anon_sym_typedef] = ACTIONS(3416), - [anon_sym_extern] = ACTIONS(3416), - [anon_sym___attribute__] = ACTIONS(3416), - [anon_sym_COLON_COLON] = ACTIONS(3418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3418), - [anon_sym___declspec] = ACTIONS(3416), - [anon_sym___based] = ACTIONS(3416), - [anon_sym___cdecl] = ACTIONS(3416), - [anon_sym___clrcall] = ACTIONS(3416), - [anon_sym___stdcall] = ACTIONS(3416), - [anon_sym___fastcall] = ACTIONS(3416), - [anon_sym___thiscall] = ACTIONS(3416), - [anon_sym___vectorcall] = ACTIONS(3416), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_signed] = ACTIONS(3416), - [anon_sym_unsigned] = ACTIONS(3416), - [anon_sym_long] = ACTIONS(3416), - [anon_sym_short] = ACTIONS(3416), - [anon_sym_LBRACK] = ACTIONS(3416), - [anon_sym_static] = ACTIONS(3416), - [anon_sym_register] = ACTIONS(3416), - [anon_sym_inline] = ACTIONS(3416), - [anon_sym___inline] = ACTIONS(3416), - [anon_sym___inline__] = ACTIONS(3416), - [anon_sym___forceinline] = ACTIONS(3416), - [anon_sym_thread_local] = ACTIONS(3416), - [anon_sym___thread] = ACTIONS(3416), - [anon_sym_const] = ACTIONS(3416), - [anon_sym_constexpr] = ACTIONS(3416), - [anon_sym_volatile] = ACTIONS(3416), - [anon_sym_restrict] = ACTIONS(3416), - [anon_sym___restrict__] = ACTIONS(3416), - [anon_sym__Atomic] = ACTIONS(3416), - [anon_sym__Noreturn] = ACTIONS(3416), - [anon_sym_noreturn] = ACTIONS(3416), - [anon_sym_mutable] = ACTIONS(3416), - [anon_sym_constinit] = ACTIONS(3416), - [anon_sym_consteval] = ACTIONS(3416), - [sym_primitive_type] = ACTIONS(3416), - [anon_sym_enum] = ACTIONS(3416), - [anon_sym_class] = ACTIONS(3416), - [anon_sym_struct] = ACTIONS(3416), - [anon_sym_union] = ACTIONS(3416), - [anon_sym_if] = ACTIONS(3416), - [anon_sym_switch] = ACTIONS(3416), - [anon_sym_case] = ACTIONS(3416), - [anon_sym_default] = ACTIONS(3416), - [anon_sym_while] = ACTIONS(3416), - [anon_sym_do] = ACTIONS(3416), - [anon_sym_for] = ACTIONS(3416), - [anon_sym_return] = ACTIONS(3416), - [anon_sym_break] = ACTIONS(3416), - [anon_sym_continue] = ACTIONS(3416), - [anon_sym_goto] = ACTIONS(3416), - [anon_sym_not] = ACTIONS(3416), - [anon_sym_compl] = ACTIONS(3416), - [anon_sym_DASH_DASH] = ACTIONS(3418), - [anon_sym_PLUS_PLUS] = ACTIONS(3418), - [anon_sym_sizeof] = ACTIONS(3416), - [anon_sym___alignof__] = ACTIONS(3416), - [anon_sym___alignof] = ACTIONS(3416), - [anon_sym__alignof] = ACTIONS(3416), - [anon_sym_alignof] = ACTIONS(3416), - [anon_sym__Alignof] = ACTIONS(3416), - [anon_sym_offsetof] = ACTIONS(3416), - [anon_sym__Generic] = ACTIONS(3416), - [anon_sym_asm] = ACTIONS(3416), - [anon_sym___asm__] = ACTIONS(3416), - [sym_number_literal] = ACTIONS(3418), - [anon_sym_L_SQUOTE] = ACTIONS(3418), - [anon_sym_u_SQUOTE] = ACTIONS(3418), - [anon_sym_U_SQUOTE] = ACTIONS(3418), - [anon_sym_u8_SQUOTE] = ACTIONS(3418), - [anon_sym_SQUOTE] = ACTIONS(3418), - [anon_sym_L_DQUOTE] = ACTIONS(3418), - [anon_sym_u_DQUOTE] = ACTIONS(3418), - [anon_sym_U_DQUOTE] = ACTIONS(3418), - [anon_sym_u8_DQUOTE] = ACTIONS(3418), - [anon_sym_DQUOTE] = ACTIONS(3418), - [sym_true] = ACTIONS(3416), - [sym_false] = ACTIONS(3416), - [anon_sym_NULL] = ACTIONS(3416), - [anon_sym_nullptr] = ACTIONS(3416), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3416), - [anon_sym_decltype] = ACTIONS(3416), - [anon_sym_virtual] = ACTIONS(3416), - [anon_sym_alignas] = ACTIONS(3416), - [anon_sym_explicit] = ACTIONS(3416), - [anon_sym_typename] = ACTIONS(3416), - [anon_sym_template] = ACTIONS(3416), - [anon_sym_operator] = ACTIONS(3416), - [anon_sym_try] = ACTIONS(3416), - [anon_sym_delete] = ACTIONS(3416), - [anon_sym_throw] = ACTIONS(3416), - [anon_sym_namespace] = ACTIONS(3416), - [anon_sym_using] = ACTIONS(3416), - [anon_sym_static_assert] = ACTIONS(3416), - [anon_sym_concept] = ACTIONS(3416), - [anon_sym_co_return] = ACTIONS(3416), - [anon_sym_co_yield] = ACTIONS(3416), - [anon_sym_R_DQUOTE] = ACTIONS(3418), - [anon_sym_LR_DQUOTE] = ACTIONS(3418), - [anon_sym_uR_DQUOTE] = ACTIONS(3418), - [anon_sym_UR_DQUOTE] = ACTIONS(3418), - [anon_sym_u8R_DQUOTE] = ACTIONS(3418), - [anon_sym_co_await] = ACTIONS(3416), - [anon_sym_new] = ACTIONS(3416), - [anon_sym_requires] = ACTIONS(3416), - [sym_this] = ACTIONS(3416), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3418), - [sym_semgrep_named_ellipsis] = ACTIONS(3418), - }, - [849] = { - [sym_expression] = STATE(5097), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4036), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4036), - [sym_call_expression] = STATE(4036), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4036), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4036), - [sym_initializer_list] = STATE(5196), - [sym_char_literal] = STATE(5772), - [sym_concatenated_string] = STATE(5772), - [sym_string_literal] = STATE(4262), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(4262), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4036), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4036), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2281), - [anon_sym_COMMA] = ACTIONS(2281), - [anon_sym_LPAREN2] = ACTIONS(2281), - [anon_sym_BANG] = ACTIONS(4033), - [anon_sym_TILDE] = ACTIONS(4035), - [anon_sym_DASH] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2279), - [anon_sym_STAR] = ACTIONS(2281), - [anon_sym_SLASH] = ACTIONS(2279), - [anon_sym_PERCENT] = ACTIONS(2281), - [anon_sym_PIPE_PIPE] = ACTIONS(2281), - [anon_sym_AMP_AMP] = ACTIONS(2281), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_CARET] = ACTIONS(2281), - [anon_sym_AMP] = ACTIONS(2279), - [anon_sym_EQ_EQ] = ACTIONS(2281), - [anon_sym_BANG_EQ] = ACTIONS(2281), - [anon_sym_GT] = ACTIONS(2279), - [anon_sym_GT_EQ] = ACTIONS(2281), - [anon_sym_LT_EQ] = ACTIONS(2279), - [anon_sym_LT] = ACTIONS(2279), - [anon_sym_LT_LT] = ACTIONS(2281), - [anon_sym_GT_GT] = ACTIONS(2281), - [anon_sym_SEMI] = ACTIONS(2281), - [anon_sym___attribute__] = ACTIONS(2279), - [anon_sym_COLON_COLON] = ACTIONS(4037), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_LBRACK] = ACTIONS(2281), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_QMARK] = ACTIONS(2281), - [anon_sym_not] = ACTIONS(4033), - [anon_sym_compl] = ACTIONS(4033), - [anon_sym_LT_EQ_GT] = ACTIONS(2281), - [anon_sym_or] = ACTIONS(2279), - [anon_sym_and] = ACTIONS(2279), - [anon_sym_bitor] = ACTIONS(2279), - [anon_sym_xor] = ACTIONS(2279), - [anon_sym_bitand] = ACTIONS(2279), - [anon_sym_not_eq] = ACTIONS(2279), - [anon_sym_DASH_DASH] = ACTIONS(2281), - [anon_sym_PLUS_PLUS] = ACTIONS(2281), - [anon_sym_sizeof] = ACTIONS(4039), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(2279), - [anon_sym_DOT_STAR] = ACTIONS(2281), - [anon_sym_DASH_GT] = ACTIONS(2281), - [sym_number_literal] = ACTIONS(4041), - [anon_sym_L_SQUOTE] = ACTIONS(4043), - [anon_sym_u_SQUOTE] = ACTIONS(4043), - [anon_sym_U_SQUOTE] = ACTIONS(4043), - [anon_sym_u8_SQUOTE] = ACTIONS(4043), - [anon_sym_SQUOTE] = ACTIONS(4043), - [anon_sym_L_DQUOTE] = ACTIONS(4045), - [anon_sym_u_DQUOTE] = ACTIONS(4045), - [anon_sym_U_DQUOTE] = ACTIONS(4045), - [anon_sym_u8_DQUOTE] = ACTIONS(4045), - [anon_sym_DQUOTE] = ACTIONS(4045), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), + [sym_preproc_def] = STATE(2347), + [sym_preproc_function_def] = STATE(2347), + [sym_preproc_call] = STATE(2347), + [sym_preproc_if_in_field_declaration_list] = STATE(2347), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2347), + [sym_type_definition] = STATE(2347), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6437), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7306), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(847), + [sym_field_declaration] = STATE(2347), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2347), + [sym_operator_cast] = STATE(7731), + [sym_inline_method_definition] = STATE(2347), + [sym_constructor_specifiers] = STATE(1938), + [sym_operator_cast_definition] = STATE(2347), + [sym_operator_cast_declaration] = STATE(2347), + [sym_constructor_or_destructor_definition] = STATE(2347), + [sym_constructor_or_destructor_declaration] = STATE(2347), + [sym_friend_declaration] = STATE(2347), + [sym_access_specifier] = STATE(10086), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2347), + [sym_alias_declaration] = STATE(2347), + [sym_static_assert_declaration] = STATE(2347), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7731), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2347), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(847), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1938), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(4041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4043), + [aux_sym_preproc_if_token1] = ACTIONS(4045), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4049), + [sym_preproc_directive] = ACTIONS(4051), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(4053), + [anon_sym_typedef] = ACTIONS(4055), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(4127), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4047), - [anon_sym_R_DQUOTE] = ACTIONS(4049), - [anon_sym_LR_DQUOTE] = ACTIONS(4049), - [anon_sym_uR_DQUOTE] = ACTIONS(4049), - [anon_sym_UR_DQUOTE] = ACTIONS(4049), - [anon_sym_u8R_DQUOTE] = ACTIONS(4049), - [anon_sym_co_await] = ACTIONS(4051), - [anon_sym_new] = ACTIONS(4053), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), - }, - [850] = { - [ts_builtin_sym_end] = ACTIONS(3422), - [sym_identifier] = ACTIONS(3420), - [aux_sym_preproc_include_token1] = ACTIONS(3420), - [aux_sym_preproc_def_token1] = ACTIONS(3420), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3422), - [aux_sym_preproc_if_token1] = ACTIONS(3420), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3420), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3420), - [sym_preproc_directive] = ACTIONS(3420), - [anon_sym_LPAREN2] = ACTIONS(3422), - [anon_sym_BANG] = ACTIONS(3422), - [anon_sym_TILDE] = ACTIONS(3422), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_STAR] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_AMP] = ACTIONS(3420), - [anon_sym___extension__] = ACTIONS(3420), - [anon_sym_typedef] = ACTIONS(3420), - [anon_sym_extern] = ACTIONS(3420), - [anon_sym___attribute__] = ACTIONS(3420), - [anon_sym_COLON_COLON] = ACTIONS(3422), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3422), - [anon_sym___declspec] = ACTIONS(3420), - [anon_sym___based] = ACTIONS(3420), - [anon_sym___cdecl] = ACTIONS(3420), - [anon_sym___clrcall] = ACTIONS(3420), - [anon_sym___stdcall] = ACTIONS(3420), - [anon_sym___fastcall] = ACTIONS(3420), - [anon_sym___thiscall] = ACTIONS(3420), - [anon_sym___vectorcall] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3422), - [anon_sym_signed] = ACTIONS(3420), - [anon_sym_unsigned] = ACTIONS(3420), - [anon_sym_long] = ACTIONS(3420), - [anon_sym_short] = ACTIONS(3420), - [anon_sym_LBRACK] = ACTIONS(3420), - [anon_sym_static] = ACTIONS(3420), - [anon_sym_register] = ACTIONS(3420), - [anon_sym_inline] = ACTIONS(3420), - [anon_sym___inline] = ACTIONS(3420), - [anon_sym___inline__] = ACTIONS(3420), - [anon_sym___forceinline] = ACTIONS(3420), - [anon_sym_thread_local] = ACTIONS(3420), - [anon_sym___thread] = ACTIONS(3420), - [anon_sym_const] = ACTIONS(3420), - [anon_sym_constexpr] = ACTIONS(3420), - [anon_sym_volatile] = ACTIONS(3420), - [anon_sym_restrict] = ACTIONS(3420), - [anon_sym___restrict__] = ACTIONS(3420), - [anon_sym__Atomic] = ACTIONS(3420), - [anon_sym__Noreturn] = ACTIONS(3420), - [anon_sym_noreturn] = ACTIONS(3420), - [anon_sym_mutable] = ACTIONS(3420), - [anon_sym_constinit] = ACTIONS(3420), - [anon_sym_consteval] = ACTIONS(3420), - [sym_primitive_type] = ACTIONS(3420), - [anon_sym_enum] = ACTIONS(3420), - [anon_sym_class] = ACTIONS(3420), - [anon_sym_struct] = ACTIONS(3420), - [anon_sym_union] = ACTIONS(3420), - [anon_sym_if] = ACTIONS(3420), - [anon_sym_switch] = ACTIONS(3420), - [anon_sym_case] = ACTIONS(3420), - [anon_sym_default] = ACTIONS(3420), - [anon_sym_while] = ACTIONS(3420), - [anon_sym_do] = ACTIONS(3420), - [anon_sym_for] = ACTIONS(3420), - [anon_sym_return] = ACTIONS(3420), - [anon_sym_break] = ACTIONS(3420), - [anon_sym_continue] = ACTIONS(3420), - [anon_sym_goto] = ACTIONS(3420), - [anon_sym_not] = ACTIONS(3420), - [anon_sym_compl] = ACTIONS(3420), - [anon_sym_DASH_DASH] = ACTIONS(3422), - [anon_sym_PLUS_PLUS] = ACTIONS(3422), - [anon_sym_sizeof] = ACTIONS(3420), - [anon_sym___alignof__] = ACTIONS(3420), - [anon_sym___alignof] = ACTIONS(3420), - [anon_sym__alignof] = ACTIONS(3420), - [anon_sym_alignof] = ACTIONS(3420), - [anon_sym__Alignof] = ACTIONS(3420), - [anon_sym_offsetof] = ACTIONS(3420), - [anon_sym__Generic] = ACTIONS(3420), - [anon_sym_asm] = ACTIONS(3420), - [anon_sym___asm__] = ACTIONS(3420), - [sym_number_literal] = ACTIONS(3422), - [anon_sym_L_SQUOTE] = ACTIONS(3422), - [anon_sym_u_SQUOTE] = ACTIONS(3422), - [anon_sym_U_SQUOTE] = ACTIONS(3422), - [anon_sym_u8_SQUOTE] = ACTIONS(3422), - [anon_sym_SQUOTE] = ACTIONS(3422), - [anon_sym_L_DQUOTE] = ACTIONS(3422), - [anon_sym_u_DQUOTE] = ACTIONS(3422), - [anon_sym_U_DQUOTE] = ACTIONS(3422), - [anon_sym_u8_DQUOTE] = ACTIONS(3422), - [anon_sym_DQUOTE] = ACTIONS(3422), - [sym_true] = ACTIONS(3420), - [sym_false] = ACTIONS(3420), - [anon_sym_NULL] = ACTIONS(3420), - [anon_sym_nullptr] = ACTIONS(3420), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3420), - [anon_sym_decltype] = ACTIONS(3420), - [anon_sym_virtual] = ACTIONS(3420), - [anon_sym_alignas] = ACTIONS(3420), - [anon_sym_explicit] = ACTIONS(3420), - [anon_sym_typename] = ACTIONS(3420), - [anon_sym_template] = ACTIONS(3420), - [anon_sym_operator] = ACTIONS(3420), - [anon_sym_try] = ACTIONS(3420), - [anon_sym_delete] = ACTIONS(3420), - [anon_sym_throw] = ACTIONS(3420), - [anon_sym_namespace] = ACTIONS(3420), - [anon_sym_using] = ACTIONS(3420), - [anon_sym_static_assert] = ACTIONS(3420), - [anon_sym_concept] = ACTIONS(3420), - [anon_sym_co_return] = ACTIONS(3420), - [anon_sym_co_yield] = ACTIONS(3420), - [anon_sym_R_DQUOTE] = ACTIONS(3422), - [anon_sym_LR_DQUOTE] = ACTIONS(3422), - [anon_sym_uR_DQUOTE] = ACTIONS(3422), - [anon_sym_UR_DQUOTE] = ACTIONS(3422), - [anon_sym_u8R_DQUOTE] = ACTIONS(3422), - [anon_sym_co_await] = ACTIONS(3420), - [anon_sym_new] = ACTIONS(3420), - [anon_sym_requires] = ACTIONS(3420), - [sym_this] = ACTIONS(3420), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3422), - [sym_semgrep_named_ellipsis] = ACTIONS(3422), - }, - [851] = { - [ts_builtin_sym_end] = ACTIONS(3616), - [sym_identifier] = ACTIONS(3614), - [aux_sym_preproc_include_token1] = ACTIONS(3614), - [aux_sym_preproc_def_token1] = ACTIONS(3614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3616), - [aux_sym_preproc_if_token1] = ACTIONS(3614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3614), - [sym_preproc_directive] = ACTIONS(3614), - [anon_sym_LPAREN2] = ACTIONS(3616), - [anon_sym_BANG] = ACTIONS(3616), - [anon_sym_TILDE] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_STAR] = ACTIONS(3616), - [anon_sym_AMP_AMP] = ACTIONS(3616), - [anon_sym_AMP] = ACTIONS(3614), - [anon_sym___extension__] = ACTIONS(3614), - [anon_sym_typedef] = ACTIONS(3614), - [anon_sym_extern] = ACTIONS(3614), - [anon_sym___attribute__] = ACTIONS(3614), - [anon_sym_COLON_COLON] = ACTIONS(3616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3616), - [anon_sym___declspec] = ACTIONS(3614), - [anon_sym___based] = ACTIONS(3614), - [anon_sym___cdecl] = ACTIONS(3614), - [anon_sym___clrcall] = ACTIONS(3614), - [anon_sym___stdcall] = ACTIONS(3614), - [anon_sym___fastcall] = ACTIONS(3614), - [anon_sym___thiscall] = ACTIONS(3614), - [anon_sym___vectorcall] = ACTIONS(3614), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_signed] = ACTIONS(3614), - [anon_sym_unsigned] = ACTIONS(3614), - [anon_sym_long] = ACTIONS(3614), - [anon_sym_short] = ACTIONS(3614), - [anon_sym_LBRACK] = ACTIONS(3614), - [anon_sym_static] = ACTIONS(3614), - [anon_sym_register] = ACTIONS(3614), - [anon_sym_inline] = ACTIONS(3614), - [anon_sym___inline] = ACTIONS(3614), - [anon_sym___inline__] = ACTIONS(3614), - [anon_sym___forceinline] = ACTIONS(3614), - [anon_sym_thread_local] = ACTIONS(3614), - [anon_sym___thread] = ACTIONS(3614), - [anon_sym_const] = ACTIONS(3614), - [anon_sym_constexpr] = ACTIONS(3614), - [anon_sym_volatile] = ACTIONS(3614), - [anon_sym_restrict] = ACTIONS(3614), - [anon_sym___restrict__] = ACTIONS(3614), - [anon_sym__Atomic] = ACTIONS(3614), - [anon_sym__Noreturn] = ACTIONS(3614), - [anon_sym_noreturn] = ACTIONS(3614), - [anon_sym_mutable] = ACTIONS(3614), - [anon_sym_constinit] = ACTIONS(3614), - [anon_sym_consteval] = ACTIONS(3614), - [sym_primitive_type] = ACTIONS(3614), - [anon_sym_enum] = ACTIONS(3614), - [anon_sym_class] = ACTIONS(3614), - [anon_sym_struct] = ACTIONS(3614), - [anon_sym_union] = ACTIONS(3614), - [anon_sym_if] = ACTIONS(3614), - [anon_sym_switch] = ACTIONS(3614), - [anon_sym_case] = ACTIONS(3614), - [anon_sym_default] = ACTIONS(3614), - [anon_sym_while] = ACTIONS(3614), - [anon_sym_do] = ACTIONS(3614), - [anon_sym_for] = ACTIONS(3614), - [anon_sym_return] = ACTIONS(3614), - [anon_sym_break] = ACTIONS(3614), - [anon_sym_continue] = ACTIONS(3614), - [anon_sym_goto] = ACTIONS(3614), - [anon_sym_not] = ACTIONS(3614), - [anon_sym_compl] = ACTIONS(3614), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_sizeof] = ACTIONS(3614), - [anon_sym___alignof__] = ACTIONS(3614), - [anon_sym___alignof] = ACTIONS(3614), - [anon_sym__alignof] = ACTIONS(3614), - [anon_sym_alignof] = ACTIONS(3614), - [anon_sym__Alignof] = ACTIONS(3614), - [anon_sym_offsetof] = ACTIONS(3614), - [anon_sym__Generic] = ACTIONS(3614), - [anon_sym_asm] = ACTIONS(3614), - [anon_sym___asm__] = ACTIONS(3614), - [sym_number_literal] = ACTIONS(3616), - [anon_sym_L_SQUOTE] = ACTIONS(3616), - [anon_sym_u_SQUOTE] = ACTIONS(3616), - [anon_sym_U_SQUOTE] = ACTIONS(3616), - [anon_sym_u8_SQUOTE] = ACTIONS(3616), - [anon_sym_SQUOTE] = ACTIONS(3616), - [anon_sym_L_DQUOTE] = ACTIONS(3616), - [anon_sym_u_DQUOTE] = ACTIONS(3616), - [anon_sym_U_DQUOTE] = ACTIONS(3616), - [anon_sym_u8_DQUOTE] = ACTIONS(3616), - [anon_sym_DQUOTE] = ACTIONS(3616), - [sym_true] = ACTIONS(3614), - [sym_false] = ACTIONS(3614), - [anon_sym_NULL] = ACTIONS(3614), - [anon_sym_nullptr] = ACTIONS(3614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3614), - [anon_sym_decltype] = ACTIONS(3614), - [anon_sym_virtual] = ACTIONS(3614), - [anon_sym_alignas] = ACTIONS(3614), - [anon_sym_explicit] = ACTIONS(3614), - [anon_sym_typename] = ACTIONS(3614), - [anon_sym_template] = ACTIONS(3614), - [anon_sym_operator] = ACTIONS(3614), - [anon_sym_try] = ACTIONS(3614), - [anon_sym_delete] = ACTIONS(3614), - [anon_sym_throw] = ACTIONS(3614), - [anon_sym_namespace] = ACTIONS(3614), - [anon_sym_using] = ACTIONS(3614), - [anon_sym_static_assert] = ACTIONS(3614), - [anon_sym_concept] = ACTIONS(3614), - [anon_sym_co_return] = ACTIONS(3614), - [anon_sym_co_yield] = ACTIONS(3614), - [anon_sym_R_DQUOTE] = ACTIONS(3616), - [anon_sym_LR_DQUOTE] = ACTIONS(3616), - [anon_sym_uR_DQUOTE] = ACTIONS(3616), - [anon_sym_UR_DQUOTE] = ACTIONS(3616), - [anon_sym_u8R_DQUOTE] = ACTIONS(3616), - [anon_sym_co_await] = ACTIONS(3614), - [anon_sym_new] = ACTIONS(3614), - [anon_sym_requires] = ACTIONS(3614), - [sym_this] = ACTIONS(3614), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3616), - [sym_semgrep_named_ellipsis] = ACTIONS(3616), - }, - [852] = { - [ts_builtin_sym_end] = ACTIONS(3628), - [sym_identifier] = ACTIONS(3626), - [aux_sym_preproc_include_token1] = ACTIONS(3626), - [aux_sym_preproc_def_token1] = ACTIONS(3626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3628), - [aux_sym_preproc_if_token1] = ACTIONS(3626), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3626), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3626), - [sym_preproc_directive] = ACTIONS(3626), - [anon_sym_LPAREN2] = ACTIONS(3628), - [anon_sym_BANG] = ACTIONS(3628), - [anon_sym_TILDE] = ACTIONS(3628), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_STAR] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3626), - [anon_sym___extension__] = ACTIONS(3626), - [anon_sym_typedef] = ACTIONS(3626), - [anon_sym_extern] = ACTIONS(3626), - [anon_sym___attribute__] = ACTIONS(3626), - [anon_sym_COLON_COLON] = ACTIONS(3628), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3628), - [anon_sym___declspec] = ACTIONS(3626), - [anon_sym___based] = ACTIONS(3626), - [anon_sym___cdecl] = ACTIONS(3626), - [anon_sym___clrcall] = ACTIONS(3626), - [anon_sym___stdcall] = ACTIONS(3626), - [anon_sym___fastcall] = ACTIONS(3626), - [anon_sym___thiscall] = ACTIONS(3626), - [anon_sym___vectorcall] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_signed] = ACTIONS(3626), - [anon_sym_unsigned] = ACTIONS(3626), - [anon_sym_long] = ACTIONS(3626), - [anon_sym_short] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_register] = ACTIONS(3626), - [anon_sym_inline] = ACTIONS(3626), - [anon_sym___inline] = ACTIONS(3626), - [anon_sym___inline__] = ACTIONS(3626), - [anon_sym___forceinline] = ACTIONS(3626), - [anon_sym_thread_local] = ACTIONS(3626), - [anon_sym___thread] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_constexpr] = ACTIONS(3626), - [anon_sym_volatile] = ACTIONS(3626), - [anon_sym_restrict] = ACTIONS(3626), - [anon_sym___restrict__] = ACTIONS(3626), - [anon_sym__Atomic] = ACTIONS(3626), - [anon_sym__Noreturn] = ACTIONS(3626), - [anon_sym_noreturn] = ACTIONS(3626), - [anon_sym_mutable] = ACTIONS(3626), - [anon_sym_constinit] = ACTIONS(3626), - [anon_sym_consteval] = ACTIONS(3626), - [sym_primitive_type] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_struct] = ACTIONS(3626), - [anon_sym_union] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_goto] = ACTIONS(3626), - [anon_sym_not] = ACTIONS(3626), - [anon_sym_compl] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3628), - [anon_sym_PLUS_PLUS] = ACTIONS(3628), - [anon_sym_sizeof] = ACTIONS(3626), - [anon_sym___alignof__] = ACTIONS(3626), - [anon_sym___alignof] = ACTIONS(3626), - [anon_sym__alignof] = ACTIONS(3626), - [anon_sym_alignof] = ACTIONS(3626), - [anon_sym__Alignof] = ACTIONS(3626), - [anon_sym_offsetof] = ACTIONS(3626), - [anon_sym__Generic] = ACTIONS(3626), - [anon_sym_asm] = ACTIONS(3626), - [anon_sym___asm__] = ACTIONS(3626), - [sym_number_literal] = ACTIONS(3628), - [anon_sym_L_SQUOTE] = ACTIONS(3628), - [anon_sym_u_SQUOTE] = ACTIONS(3628), - [anon_sym_U_SQUOTE] = ACTIONS(3628), - [anon_sym_u8_SQUOTE] = ACTIONS(3628), - [anon_sym_SQUOTE] = ACTIONS(3628), - [anon_sym_L_DQUOTE] = ACTIONS(3628), - [anon_sym_u_DQUOTE] = ACTIONS(3628), - [anon_sym_U_DQUOTE] = ACTIONS(3628), - [anon_sym_u8_DQUOTE] = ACTIONS(3628), - [anon_sym_DQUOTE] = ACTIONS(3628), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [anon_sym_NULL] = ACTIONS(3626), - [anon_sym_nullptr] = ACTIONS(3626), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3626), - [anon_sym_decltype] = ACTIONS(3626), - [anon_sym_virtual] = ACTIONS(3626), - [anon_sym_alignas] = ACTIONS(3626), - [anon_sym_explicit] = ACTIONS(3626), - [anon_sym_typename] = ACTIONS(3626), - [anon_sym_template] = ACTIONS(3626), - [anon_sym_operator] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_static_assert] = ACTIONS(3626), - [anon_sym_concept] = ACTIONS(3626), - [anon_sym_co_return] = ACTIONS(3626), - [anon_sym_co_yield] = ACTIONS(3626), - [anon_sym_R_DQUOTE] = ACTIONS(3628), - [anon_sym_LR_DQUOTE] = ACTIONS(3628), - [anon_sym_uR_DQUOTE] = ACTIONS(3628), - [anon_sym_UR_DQUOTE] = ACTIONS(3628), - [anon_sym_u8R_DQUOTE] = ACTIONS(3628), - [anon_sym_co_await] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_requires] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3628), - [sym_semgrep_named_ellipsis] = ACTIONS(3628), - }, - [853] = { - [ts_builtin_sym_end] = ACTIONS(3632), - [sym_identifier] = ACTIONS(3630), - [aux_sym_preproc_include_token1] = ACTIONS(3630), - [aux_sym_preproc_def_token1] = ACTIONS(3630), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3632), - [aux_sym_preproc_if_token1] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), - [sym_preproc_directive] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(3632), - [anon_sym_BANG] = ACTIONS(3632), - [anon_sym_TILDE] = ACTIONS(3632), - [anon_sym_DASH] = ACTIONS(3630), - [anon_sym_PLUS] = ACTIONS(3630), - [anon_sym_STAR] = ACTIONS(3632), - [anon_sym_AMP_AMP] = ACTIONS(3632), - [anon_sym_AMP] = ACTIONS(3630), - [anon_sym___extension__] = ACTIONS(3630), - [anon_sym_typedef] = ACTIONS(3630), - [anon_sym_extern] = ACTIONS(3630), - [anon_sym___attribute__] = ACTIONS(3630), - [anon_sym_COLON_COLON] = ACTIONS(3632), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), - [anon_sym___declspec] = ACTIONS(3630), - [anon_sym___based] = ACTIONS(3630), - [anon_sym___cdecl] = ACTIONS(3630), - [anon_sym___clrcall] = ACTIONS(3630), - [anon_sym___stdcall] = ACTIONS(3630), - [anon_sym___fastcall] = ACTIONS(3630), - [anon_sym___thiscall] = ACTIONS(3630), - [anon_sym___vectorcall] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym_signed] = ACTIONS(3630), - [anon_sym_unsigned] = ACTIONS(3630), - [anon_sym_long] = ACTIONS(3630), - [anon_sym_short] = ACTIONS(3630), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_static] = ACTIONS(3630), - [anon_sym_register] = ACTIONS(3630), - [anon_sym_inline] = ACTIONS(3630), - [anon_sym___inline] = ACTIONS(3630), - [anon_sym___inline__] = ACTIONS(3630), - [anon_sym___forceinline] = ACTIONS(3630), - [anon_sym_thread_local] = ACTIONS(3630), - [anon_sym___thread] = ACTIONS(3630), - [anon_sym_const] = ACTIONS(3630), - [anon_sym_constexpr] = ACTIONS(3630), - [anon_sym_volatile] = ACTIONS(3630), - [anon_sym_restrict] = ACTIONS(3630), - [anon_sym___restrict__] = ACTIONS(3630), - [anon_sym__Atomic] = ACTIONS(3630), - [anon_sym__Noreturn] = ACTIONS(3630), - [anon_sym_noreturn] = ACTIONS(3630), - [anon_sym_mutable] = ACTIONS(3630), - [anon_sym_constinit] = ACTIONS(3630), - [anon_sym_consteval] = ACTIONS(3630), - [sym_primitive_type] = ACTIONS(3630), - [anon_sym_enum] = ACTIONS(3630), - [anon_sym_class] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3630), - [anon_sym_union] = ACTIONS(3630), - [anon_sym_if] = ACTIONS(3630), - [anon_sym_switch] = ACTIONS(3630), - [anon_sym_case] = ACTIONS(3630), - [anon_sym_default] = ACTIONS(3630), - [anon_sym_while] = ACTIONS(3630), - [anon_sym_do] = ACTIONS(3630), - [anon_sym_for] = ACTIONS(3630), - [anon_sym_return] = ACTIONS(3630), - [anon_sym_break] = ACTIONS(3630), - [anon_sym_continue] = ACTIONS(3630), - [anon_sym_goto] = ACTIONS(3630), - [anon_sym_not] = ACTIONS(3630), - [anon_sym_compl] = ACTIONS(3630), - [anon_sym_DASH_DASH] = ACTIONS(3632), - [anon_sym_PLUS_PLUS] = ACTIONS(3632), - [anon_sym_sizeof] = ACTIONS(3630), - [anon_sym___alignof__] = ACTIONS(3630), - [anon_sym___alignof] = ACTIONS(3630), - [anon_sym__alignof] = ACTIONS(3630), - [anon_sym_alignof] = ACTIONS(3630), - [anon_sym__Alignof] = ACTIONS(3630), - [anon_sym_offsetof] = ACTIONS(3630), - [anon_sym__Generic] = ACTIONS(3630), - [anon_sym_asm] = ACTIONS(3630), - [anon_sym___asm__] = ACTIONS(3630), - [sym_number_literal] = ACTIONS(3632), - [anon_sym_L_SQUOTE] = ACTIONS(3632), - [anon_sym_u_SQUOTE] = ACTIONS(3632), - [anon_sym_U_SQUOTE] = ACTIONS(3632), - [anon_sym_u8_SQUOTE] = ACTIONS(3632), - [anon_sym_SQUOTE] = ACTIONS(3632), - [anon_sym_L_DQUOTE] = ACTIONS(3632), - [anon_sym_u_DQUOTE] = ACTIONS(3632), - [anon_sym_U_DQUOTE] = ACTIONS(3632), - [anon_sym_u8_DQUOTE] = ACTIONS(3632), - [anon_sym_DQUOTE] = ACTIONS(3632), - [sym_true] = ACTIONS(3630), - [sym_false] = ACTIONS(3630), - [anon_sym_NULL] = ACTIONS(3630), - [anon_sym_nullptr] = ACTIONS(3630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3630), - [anon_sym_decltype] = ACTIONS(3630), - [anon_sym_virtual] = ACTIONS(3630), - [anon_sym_alignas] = ACTIONS(3630), - [anon_sym_explicit] = ACTIONS(3630), - [anon_sym_typename] = ACTIONS(3630), - [anon_sym_template] = ACTIONS(3630), - [anon_sym_operator] = ACTIONS(3630), - [anon_sym_try] = ACTIONS(3630), - [anon_sym_delete] = ACTIONS(3630), - [anon_sym_throw] = ACTIONS(3630), - [anon_sym_namespace] = ACTIONS(3630), - [anon_sym_using] = ACTIONS(3630), - [anon_sym_static_assert] = ACTIONS(3630), - [anon_sym_concept] = ACTIONS(3630), - [anon_sym_co_return] = ACTIONS(3630), - [anon_sym_co_yield] = ACTIONS(3630), - [anon_sym_R_DQUOTE] = ACTIONS(3632), - [anon_sym_LR_DQUOTE] = ACTIONS(3632), - [anon_sym_uR_DQUOTE] = ACTIONS(3632), - [anon_sym_UR_DQUOTE] = ACTIONS(3632), - [anon_sym_u8R_DQUOTE] = ACTIONS(3632), - [anon_sym_co_await] = ACTIONS(3630), - [anon_sym_new] = ACTIONS(3630), - [anon_sym_requires] = ACTIONS(3630), - [sym_this] = ACTIONS(3630), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3632), - [sym_semgrep_named_ellipsis] = ACTIONS(3632), - }, - [854] = { - [ts_builtin_sym_end] = ACTIONS(4055), - [sym_identifier] = ACTIONS(4057), - [aux_sym_preproc_include_token1] = ACTIONS(4057), - [aux_sym_preproc_def_token1] = ACTIONS(4057), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4055), - [aux_sym_preproc_if_token1] = ACTIONS(4057), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4057), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4057), - [sym_preproc_directive] = ACTIONS(4057), - [anon_sym_LPAREN2] = ACTIONS(4055), - [anon_sym_BANG] = ACTIONS(4055), - [anon_sym_TILDE] = ACTIONS(4055), - [anon_sym_DASH] = ACTIONS(4057), - [anon_sym_PLUS] = ACTIONS(4057), - [anon_sym_STAR] = ACTIONS(4055), - [anon_sym_AMP_AMP] = ACTIONS(4055), - [anon_sym_AMP] = ACTIONS(4057), - [anon_sym___extension__] = ACTIONS(4057), - [anon_sym_typedef] = ACTIONS(4057), - [anon_sym_extern] = ACTIONS(4057), - [anon_sym___attribute__] = ACTIONS(4057), - [anon_sym_COLON_COLON] = ACTIONS(4055), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4055), - [anon_sym___declspec] = ACTIONS(4057), - [anon_sym___based] = ACTIONS(4057), - [anon_sym___cdecl] = ACTIONS(4057), - [anon_sym___clrcall] = ACTIONS(4057), - [anon_sym___stdcall] = ACTIONS(4057), - [anon_sym___fastcall] = ACTIONS(4057), - [anon_sym___thiscall] = ACTIONS(4057), - [anon_sym___vectorcall] = ACTIONS(4057), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_signed] = ACTIONS(4057), - [anon_sym_unsigned] = ACTIONS(4057), - [anon_sym_long] = ACTIONS(4057), - [anon_sym_short] = ACTIONS(4057), - [anon_sym_LBRACK] = ACTIONS(4057), - [anon_sym_static] = ACTIONS(4057), - [anon_sym_register] = ACTIONS(4057), - [anon_sym_inline] = ACTIONS(4057), - [anon_sym___inline] = ACTIONS(4057), - [anon_sym___inline__] = ACTIONS(4057), - [anon_sym___forceinline] = ACTIONS(4057), - [anon_sym_thread_local] = ACTIONS(4057), - [anon_sym___thread] = ACTIONS(4057), - [anon_sym_const] = ACTIONS(4057), - [anon_sym_constexpr] = ACTIONS(4057), - [anon_sym_volatile] = ACTIONS(4057), - [anon_sym_restrict] = ACTIONS(4057), - [anon_sym___restrict__] = ACTIONS(4057), - [anon_sym__Atomic] = ACTIONS(4057), - [anon_sym__Noreturn] = ACTIONS(4057), - [anon_sym_noreturn] = ACTIONS(4057), - [anon_sym_mutable] = ACTIONS(4057), - [anon_sym_constinit] = ACTIONS(4057), - [anon_sym_consteval] = ACTIONS(4057), - [sym_primitive_type] = ACTIONS(4057), - [anon_sym_enum] = ACTIONS(4057), - [anon_sym_class] = ACTIONS(4057), - [anon_sym_struct] = ACTIONS(4057), - [anon_sym_union] = ACTIONS(4057), - [anon_sym_if] = ACTIONS(4057), - [anon_sym_switch] = ACTIONS(4057), - [anon_sym_case] = ACTIONS(4057), - [anon_sym_default] = ACTIONS(4057), - [anon_sym_while] = ACTIONS(4057), - [anon_sym_do] = ACTIONS(4057), - [anon_sym_for] = ACTIONS(4057), - [anon_sym_return] = ACTIONS(4057), - [anon_sym_break] = ACTIONS(4057), - [anon_sym_continue] = ACTIONS(4057), - [anon_sym_goto] = ACTIONS(4057), - [anon_sym_not] = ACTIONS(4057), - [anon_sym_compl] = ACTIONS(4057), - [anon_sym_DASH_DASH] = ACTIONS(4055), - [anon_sym_PLUS_PLUS] = ACTIONS(4055), - [anon_sym_sizeof] = ACTIONS(4057), - [anon_sym___alignof__] = ACTIONS(4057), - [anon_sym___alignof] = ACTIONS(4057), - [anon_sym__alignof] = ACTIONS(4057), - [anon_sym_alignof] = ACTIONS(4057), - [anon_sym__Alignof] = ACTIONS(4057), - [anon_sym_offsetof] = ACTIONS(4057), - [anon_sym__Generic] = ACTIONS(4057), - [anon_sym_asm] = ACTIONS(4057), - [anon_sym___asm__] = ACTIONS(4057), - [sym_number_literal] = ACTIONS(4055), - [anon_sym_L_SQUOTE] = ACTIONS(4055), - [anon_sym_u_SQUOTE] = ACTIONS(4055), - [anon_sym_U_SQUOTE] = ACTIONS(4055), - [anon_sym_u8_SQUOTE] = ACTIONS(4055), - [anon_sym_SQUOTE] = ACTIONS(4055), - [anon_sym_L_DQUOTE] = ACTIONS(4055), - [anon_sym_u_DQUOTE] = ACTIONS(4055), - [anon_sym_U_DQUOTE] = ACTIONS(4055), - [anon_sym_u8_DQUOTE] = ACTIONS(4055), - [anon_sym_DQUOTE] = ACTIONS(4055), - [sym_true] = ACTIONS(4057), - [sym_false] = ACTIONS(4057), - [anon_sym_NULL] = ACTIONS(4057), - [anon_sym_nullptr] = ACTIONS(4057), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4057), - [anon_sym_decltype] = ACTIONS(4057), - [anon_sym_virtual] = ACTIONS(4057), - [anon_sym_alignas] = ACTIONS(4057), - [anon_sym_explicit] = ACTIONS(4057), - [anon_sym_typename] = ACTIONS(4057), - [anon_sym_template] = ACTIONS(4057), - [anon_sym_operator] = ACTIONS(4057), - [anon_sym_try] = ACTIONS(4057), - [anon_sym_delete] = ACTIONS(4057), - [anon_sym_throw] = ACTIONS(4057), - [anon_sym_namespace] = ACTIONS(4057), - [anon_sym_using] = ACTIONS(4057), - [anon_sym_static_assert] = ACTIONS(4057), - [anon_sym_concept] = ACTIONS(4057), - [anon_sym_co_return] = ACTIONS(4057), - [anon_sym_co_yield] = ACTIONS(4057), - [anon_sym_R_DQUOTE] = ACTIONS(4055), - [anon_sym_LR_DQUOTE] = ACTIONS(4055), - [anon_sym_uR_DQUOTE] = ACTIONS(4055), - [anon_sym_UR_DQUOTE] = ACTIONS(4055), - [anon_sym_u8R_DQUOTE] = ACTIONS(4055), - [anon_sym_co_await] = ACTIONS(4057), - [anon_sym_new] = ACTIONS(4057), - [anon_sym_requires] = ACTIONS(4057), - [sym_this] = ACTIONS(4057), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4055), - [sym_semgrep_named_ellipsis] = ACTIONS(4055), - }, - [855] = { - [ts_builtin_sym_end] = ACTIONS(3636), - [sym_identifier] = ACTIONS(3634), - [aux_sym_preproc_include_token1] = ACTIONS(3634), - [aux_sym_preproc_def_token1] = ACTIONS(3634), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3636), - [aux_sym_preproc_if_token1] = ACTIONS(3634), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3634), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3634), - [sym_preproc_directive] = ACTIONS(3634), - [anon_sym_LPAREN2] = ACTIONS(3636), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_TILDE] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3634), - [anon_sym_PLUS] = ACTIONS(3634), - [anon_sym_STAR] = ACTIONS(3636), - [anon_sym_AMP_AMP] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3634), - [anon_sym___extension__] = ACTIONS(3634), - [anon_sym_typedef] = ACTIONS(3634), - [anon_sym_extern] = ACTIONS(3634), - [anon_sym___attribute__] = ACTIONS(3634), - [anon_sym_COLON_COLON] = ACTIONS(3636), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3636), - [anon_sym___declspec] = ACTIONS(3634), - [anon_sym___based] = ACTIONS(3634), - [anon_sym___cdecl] = ACTIONS(3634), - [anon_sym___clrcall] = ACTIONS(3634), - [anon_sym___stdcall] = ACTIONS(3634), - [anon_sym___fastcall] = ACTIONS(3634), - [anon_sym___thiscall] = ACTIONS(3634), - [anon_sym___vectorcall] = ACTIONS(3634), - [anon_sym_LBRACE] = ACTIONS(3636), - [anon_sym_signed] = ACTIONS(3634), - [anon_sym_unsigned] = ACTIONS(3634), - [anon_sym_long] = ACTIONS(3634), - [anon_sym_short] = ACTIONS(3634), - [anon_sym_LBRACK] = ACTIONS(3634), - [anon_sym_static] = ACTIONS(3634), - [anon_sym_register] = ACTIONS(3634), - [anon_sym_inline] = ACTIONS(3634), - [anon_sym___inline] = ACTIONS(3634), - [anon_sym___inline__] = ACTIONS(3634), - [anon_sym___forceinline] = ACTIONS(3634), - [anon_sym_thread_local] = ACTIONS(3634), - [anon_sym___thread] = ACTIONS(3634), - [anon_sym_const] = ACTIONS(3634), - [anon_sym_constexpr] = ACTIONS(3634), - [anon_sym_volatile] = ACTIONS(3634), - [anon_sym_restrict] = ACTIONS(3634), - [anon_sym___restrict__] = ACTIONS(3634), - [anon_sym__Atomic] = ACTIONS(3634), - [anon_sym__Noreturn] = ACTIONS(3634), - [anon_sym_noreturn] = ACTIONS(3634), - [anon_sym_mutable] = ACTIONS(3634), - [anon_sym_constinit] = ACTIONS(3634), - [anon_sym_consteval] = ACTIONS(3634), - [sym_primitive_type] = ACTIONS(3634), - [anon_sym_enum] = ACTIONS(3634), - [anon_sym_class] = ACTIONS(3634), - [anon_sym_struct] = ACTIONS(3634), - [anon_sym_union] = ACTIONS(3634), - [anon_sym_if] = ACTIONS(3634), - [anon_sym_switch] = ACTIONS(3634), - [anon_sym_case] = ACTIONS(3634), - [anon_sym_default] = ACTIONS(3634), - [anon_sym_while] = ACTIONS(3634), - [anon_sym_do] = ACTIONS(3634), - [anon_sym_for] = ACTIONS(3634), - [anon_sym_return] = ACTIONS(3634), - [anon_sym_break] = ACTIONS(3634), - [anon_sym_continue] = ACTIONS(3634), - [anon_sym_goto] = ACTIONS(3634), - [anon_sym_not] = ACTIONS(3634), - [anon_sym_compl] = ACTIONS(3634), - [anon_sym_DASH_DASH] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3636), - [anon_sym_sizeof] = ACTIONS(3634), - [anon_sym___alignof__] = ACTIONS(3634), - [anon_sym___alignof] = ACTIONS(3634), - [anon_sym__alignof] = ACTIONS(3634), - [anon_sym_alignof] = ACTIONS(3634), - [anon_sym__Alignof] = ACTIONS(3634), - [anon_sym_offsetof] = ACTIONS(3634), - [anon_sym__Generic] = ACTIONS(3634), - [anon_sym_asm] = ACTIONS(3634), - [anon_sym___asm__] = ACTIONS(3634), - [sym_number_literal] = ACTIONS(3636), - [anon_sym_L_SQUOTE] = ACTIONS(3636), - [anon_sym_u_SQUOTE] = ACTIONS(3636), - [anon_sym_U_SQUOTE] = ACTIONS(3636), - [anon_sym_u8_SQUOTE] = ACTIONS(3636), - [anon_sym_SQUOTE] = ACTIONS(3636), - [anon_sym_L_DQUOTE] = ACTIONS(3636), - [anon_sym_u_DQUOTE] = ACTIONS(3636), - [anon_sym_U_DQUOTE] = ACTIONS(3636), - [anon_sym_u8_DQUOTE] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(3636), - [sym_true] = ACTIONS(3634), - [sym_false] = ACTIONS(3634), - [anon_sym_NULL] = ACTIONS(3634), - [anon_sym_nullptr] = ACTIONS(3634), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3634), - [anon_sym_decltype] = ACTIONS(3634), - [anon_sym_virtual] = ACTIONS(3634), - [anon_sym_alignas] = ACTIONS(3634), - [anon_sym_explicit] = ACTIONS(3634), - [anon_sym_typename] = ACTIONS(3634), - [anon_sym_template] = ACTIONS(3634), - [anon_sym_operator] = ACTIONS(3634), - [anon_sym_try] = ACTIONS(3634), - [anon_sym_delete] = ACTIONS(3634), - [anon_sym_throw] = ACTIONS(3634), - [anon_sym_namespace] = ACTIONS(3634), - [anon_sym_using] = ACTIONS(3634), - [anon_sym_static_assert] = ACTIONS(3634), - [anon_sym_concept] = ACTIONS(3634), - [anon_sym_co_return] = ACTIONS(3634), - [anon_sym_co_yield] = ACTIONS(3634), - [anon_sym_R_DQUOTE] = ACTIONS(3636), - [anon_sym_LR_DQUOTE] = ACTIONS(3636), - [anon_sym_uR_DQUOTE] = ACTIONS(3636), - [anon_sym_UR_DQUOTE] = ACTIONS(3636), - [anon_sym_u8R_DQUOTE] = ACTIONS(3636), - [anon_sym_co_await] = ACTIONS(3634), - [anon_sym_new] = ACTIONS(3634), - [anon_sym_requires] = ACTIONS(3634), - [sym_this] = ACTIONS(3634), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3636), - [sym_semgrep_named_ellipsis] = ACTIONS(3636), - }, - [856] = { - [ts_builtin_sym_end] = ACTIONS(3429), - [sym_identifier] = ACTIONS(3427), - [aux_sym_preproc_include_token1] = ACTIONS(3427), - [aux_sym_preproc_def_token1] = ACTIONS(3427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3429), - [aux_sym_preproc_if_token1] = ACTIONS(3427), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3427), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3427), - [sym_preproc_directive] = ACTIONS(3427), - [anon_sym_LPAREN2] = ACTIONS(3429), - [anon_sym_BANG] = ACTIONS(3429), - [anon_sym_TILDE] = ACTIONS(3429), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3427), - [anon_sym_STAR] = ACTIONS(3429), - [anon_sym_AMP_AMP] = ACTIONS(3429), - [anon_sym_AMP] = ACTIONS(3427), - [anon_sym___extension__] = ACTIONS(3427), - [anon_sym_typedef] = ACTIONS(3427), - [anon_sym_extern] = ACTIONS(3427), - [anon_sym___attribute__] = ACTIONS(3427), - [anon_sym_COLON_COLON] = ACTIONS(3429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3429), - [anon_sym___declspec] = ACTIONS(3427), - [anon_sym___based] = ACTIONS(3427), - [anon_sym___cdecl] = ACTIONS(3427), - [anon_sym___clrcall] = ACTIONS(3427), - [anon_sym___stdcall] = ACTIONS(3427), - [anon_sym___fastcall] = ACTIONS(3427), - [anon_sym___thiscall] = ACTIONS(3427), - [anon_sym___vectorcall] = ACTIONS(3427), - [anon_sym_LBRACE] = ACTIONS(3429), - [anon_sym_signed] = ACTIONS(3427), - [anon_sym_unsigned] = ACTIONS(3427), - [anon_sym_long] = ACTIONS(3427), - [anon_sym_short] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3427), - [anon_sym_static] = ACTIONS(3427), - [anon_sym_register] = ACTIONS(3427), - [anon_sym_inline] = ACTIONS(3427), - [anon_sym___inline] = ACTIONS(3427), - [anon_sym___inline__] = ACTIONS(3427), - [anon_sym___forceinline] = ACTIONS(3427), - [anon_sym_thread_local] = ACTIONS(3427), - [anon_sym___thread] = ACTIONS(3427), - [anon_sym_const] = ACTIONS(3427), - [anon_sym_constexpr] = ACTIONS(3427), - [anon_sym_volatile] = ACTIONS(3427), - [anon_sym_restrict] = ACTIONS(3427), - [anon_sym___restrict__] = ACTIONS(3427), - [anon_sym__Atomic] = ACTIONS(3427), - [anon_sym__Noreturn] = ACTIONS(3427), - [anon_sym_noreturn] = ACTIONS(3427), - [anon_sym_mutable] = ACTIONS(3427), - [anon_sym_constinit] = ACTIONS(3427), - [anon_sym_consteval] = ACTIONS(3427), - [sym_primitive_type] = ACTIONS(3427), - [anon_sym_enum] = ACTIONS(3427), - [anon_sym_class] = ACTIONS(3427), - [anon_sym_struct] = ACTIONS(3427), - [anon_sym_union] = ACTIONS(3427), - [anon_sym_if] = ACTIONS(3427), - [anon_sym_switch] = ACTIONS(3427), - [anon_sym_case] = ACTIONS(3427), - [anon_sym_default] = ACTIONS(3427), - [anon_sym_while] = ACTIONS(3427), - [anon_sym_do] = ACTIONS(3427), - [anon_sym_for] = ACTIONS(3427), - [anon_sym_return] = ACTIONS(3427), - [anon_sym_break] = ACTIONS(3427), - [anon_sym_continue] = ACTIONS(3427), - [anon_sym_goto] = ACTIONS(3427), - [anon_sym_not] = ACTIONS(3427), - [anon_sym_compl] = ACTIONS(3427), - [anon_sym_DASH_DASH] = ACTIONS(3429), - [anon_sym_PLUS_PLUS] = ACTIONS(3429), - [anon_sym_sizeof] = ACTIONS(3427), - [anon_sym___alignof__] = ACTIONS(3427), - [anon_sym___alignof] = ACTIONS(3427), - [anon_sym__alignof] = ACTIONS(3427), - [anon_sym_alignof] = ACTIONS(3427), - [anon_sym__Alignof] = ACTIONS(3427), - [anon_sym_offsetof] = ACTIONS(3427), - [anon_sym__Generic] = ACTIONS(3427), - [anon_sym_asm] = ACTIONS(3427), - [anon_sym___asm__] = ACTIONS(3427), - [sym_number_literal] = ACTIONS(3429), - [anon_sym_L_SQUOTE] = ACTIONS(3429), - [anon_sym_u_SQUOTE] = ACTIONS(3429), - [anon_sym_U_SQUOTE] = ACTIONS(3429), - [anon_sym_u8_SQUOTE] = ACTIONS(3429), - [anon_sym_SQUOTE] = ACTIONS(3429), - [anon_sym_L_DQUOTE] = ACTIONS(3429), - [anon_sym_u_DQUOTE] = ACTIONS(3429), - [anon_sym_U_DQUOTE] = ACTIONS(3429), - [anon_sym_u8_DQUOTE] = ACTIONS(3429), - [anon_sym_DQUOTE] = ACTIONS(3429), - [sym_true] = ACTIONS(3427), - [sym_false] = ACTIONS(3427), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3427), - [anon_sym_decltype] = ACTIONS(3427), - [anon_sym_virtual] = ACTIONS(3427), - [anon_sym_alignas] = ACTIONS(3427), - [anon_sym_explicit] = ACTIONS(3427), - [anon_sym_typename] = ACTIONS(3427), - [anon_sym_template] = ACTIONS(3427), - [anon_sym_operator] = ACTIONS(3427), - [anon_sym_try] = ACTIONS(3427), - [anon_sym_delete] = ACTIONS(3427), - [anon_sym_throw] = ACTIONS(3427), - [anon_sym_namespace] = ACTIONS(3427), - [anon_sym_using] = ACTIONS(3427), - [anon_sym_static_assert] = ACTIONS(3427), - [anon_sym_concept] = ACTIONS(3427), - [anon_sym_co_return] = ACTIONS(3427), - [anon_sym_co_yield] = ACTIONS(3427), - [anon_sym_R_DQUOTE] = ACTIONS(3429), - [anon_sym_LR_DQUOTE] = ACTIONS(3429), - [anon_sym_uR_DQUOTE] = ACTIONS(3429), - [anon_sym_UR_DQUOTE] = ACTIONS(3429), - [anon_sym_u8R_DQUOTE] = ACTIONS(3429), - [anon_sym_co_await] = ACTIONS(3427), - [anon_sym_new] = ACTIONS(3427), - [anon_sym_requires] = ACTIONS(3427), - [sym_this] = ACTIONS(3427), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3429), - [sym_semgrep_named_ellipsis] = ACTIONS(3429), - }, - [857] = { - [ts_builtin_sym_end] = ACTIONS(3435), - [sym_identifier] = ACTIONS(3433), - [aux_sym_preproc_include_token1] = ACTIONS(3433), - [aux_sym_preproc_def_token1] = ACTIONS(3433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3435), - [aux_sym_preproc_if_token1] = ACTIONS(3433), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3433), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3433), - [sym_preproc_directive] = ACTIONS(3433), - [anon_sym_LPAREN2] = ACTIONS(3435), - [anon_sym_BANG] = ACTIONS(3435), - [anon_sym_TILDE] = ACTIONS(3435), - [anon_sym_DASH] = ACTIONS(3433), - [anon_sym_PLUS] = ACTIONS(3433), - [anon_sym_STAR] = ACTIONS(3435), - [anon_sym_AMP_AMP] = ACTIONS(3435), - [anon_sym_AMP] = ACTIONS(3433), - [anon_sym___extension__] = ACTIONS(3433), - [anon_sym_typedef] = ACTIONS(3433), - [anon_sym_extern] = ACTIONS(3433), - [anon_sym___attribute__] = ACTIONS(3433), - [anon_sym_COLON_COLON] = ACTIONS(3435), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3435), - [anon_sym___declspec] = ACTIONS(3433), - [anon_sym___based] = ACTIONS(3433), - [anon_sym___cdecl] = ACTIONS(3433), - [anon_sym___clrcall] = ACTIONS(3433), - [anon_sym___stdcall] = ACTIONS(3433), - [anon_sym___fastcall] = ACTIONS(3433), - [anon_sym___thiscall] = ACTIONS(3433), - [anon_sym___vectorcall] = ACTIONS(3433), - [anon_sym_LBRACE] = ACTIONS(3435), - [anon_sym_signed] = ACTIONS(3433), - [anon_sym_unsigned] = ACTIONS(3433), - [anon_sym_long] = ACTIONS(3433), - [anon_sym_short] = ACTIONS(3433), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_static] = ACTIONS(3433), - [anon_sym_register] = ACTIONS(3433), - [anon_sym_inline] = ACTIONS(3433), - [anon_sym___inline] = ACTIONS(3433), - [anon_sym___inline__] = ACTIONS(3433), - [anon_sym___forceinline] = ACTIONS(3433), - [anon_sym_thread_local] = ACTIONS(3433), - [anon_sym___thread] = ACTIONS(3433), - [anon_sym_const] = ACTIONS(3433), - [anon_sym_constexpr] = ACTIONS(3433), - [anon_sym_volatile] = ACTIONS(3433), - [anon_sym_restrict] = ACTIONS(3433), - [anon_sym___restrict__] = ACTIONS(3433), - [anon_sym__Atomic] = ACTIONS(3433), - [anon_sym__Noreturn] = ACTIONS(3433), - [anon_sym_noreturn] = ACTIONS(3433), - [anon_sym_mutable] = ACTIONS(3433), - [anon_sym_constinit] = ACTIONS(3433), - [anon_sym_consteval] = ACTIONS(3433), - [sym_primitive_type] = ACTIONS(3433), - [anon_sym_enum] = ACTIONS(3433), - [anon_sym_class] = ACTIONS(3433), - [anon_sym_struct] = ACTIONS(3433), - [anon_sym_union] = ACTIONS(3433), - [anon_sym_if] = ACTIONS(3433), - [anon_sym_switch] = ACTIONS(3433), - [anon_sym_case] = ACTIONS(3433), - [anon_sym_default] = ACTIONS(3433), - [anon_sym_while] = ACTIONS(3433), - [anon_sym_do] = ACTIONS(3433), - [anon_sym_for] = ACTIONS(3433), - [anon_sym_return] = ACTIONS(3433), - [anon_sym_break] = ACTIONS(3433), - [anon_sym_continue] = ACTIONS(3433), - [anon_sym_goto] = ACTIONS(3433), - [anon_sym_not] = ACTIONS(3433), - [anon_sym_compl] = ACTIONS(3433), - [anon_sym_DASH_DASH] = ACTIONS(3435), - [anon_sym_PLUS_PLUS] = ACTIONS(3435), - [anon_sym_sizeof] = ACTIONS(3433), - [anon_sym___alignof__] = ACTIONS(3433), - [anon_sym___alignof] = ACTIONS(3433), - [anon_sym__alignof] = ACTIONS(3433), - [anon_sym_alignof] = ACTIONS(3433), - [anon_sym__Alignof] = ACTIONS(3433), - [anon_sym_offsetof] = ACTIONS(3433), - [anon_sym__Generic] = ACTIONS(3433), - [anon_sym_asm] = ACTIONS(3433), - [anon_sym___asm__] = ACTIONS(3433), - [sym_number_literal] = ACTIONS(3435), - [anon_sym_L_SQUOTE] = ACTIONS(3435), - [anon_sym_u_SQUOTE] = ACTIONS(3435), - [anon_sym_U_SQUOTE] = ACTIONS(3435), - [anon_sym_u8_SQUOTE] = ACTIONS(3435), - [anon_sym_SQUOTE] = ACTIONS(3435), - [anon_sym_L_DQUOTE] = ACTIONS(3435), - [anon_sym_u_DQUOTE] = ACTIONS(3435), - [anon_sym_U_DQUOTE] = ACTIONS(3435), - [anon_sym_u8_DQUOTE] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(3435), - [sym_true] = ACTIONS(3433), - [sym_false] = ACTIONS(3433), - [anon_sym_NULL] = ACTIONS(3433), - [anon_sym_nullptr] = ACTIONS(3433), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3433), - [anon_sym_decltype] = ACTIONS(3433), - [anon_sym_virtual] = ACTIONS(3433), - [anon_sym_alignas] = ACTIONS(3433), - [anon_sym_explicit] = ACTIONS(3433), - [anon_sym_typename] = ACTIONS(3433), - [anon_sym_template] = ACTIONS(3433), - [anon_sym_operator] = ACTIONS(3433), - [anon_sym_try] = ACTIONS(3433), - [anon_sym_delete] = ACTIONS(3433), - [anon_sym_throw] = ACTIONS(3433), - [anon_sym_namespace] = ACTIONS(3433), - [anon_sym_using] = ACTIONS(3433), - [anon_sym_static_assert] = ACTIONS(3433), - [anon_sym_concept] = ACTIONS(3433), - [anon_sym_co_return] = ACTIONS(3433), - [anon_sym_co_yield] = ACTIONS(3433), - [anon_sym_R_DQUOTE] = ACTIONS(3435), - [anon_sym_LR_DQUOTE] = ACTIONS(3435), - [anon_sym_uR_DQUOTE] = ACTIONS(3435), - [anon_sym_UR_DQUOTE] = ACTIONS(3435), - [anon_sym_u8R_DQUOTE] = ACTIONS(3435), - [anon_sym_co_await] = ACTIONS(3433), - [anon_sym_new] = ACTIONS(3433), - [anon_sym_requires] = ACTIONS(3433), - [sym_this] = ACTIONS(3433), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3435), - [sym_semgrep_named_ellipsis] = ACTIONS(3435), - }, - [858] = { - [ts_builtin_sym_end] = ACTIONS(3640), - [sym_identifier] = ACTIONS(3638), - [aux_sym_preproc_include_token1] = ACTIONS(3638), - [aux_sym_preproc_def_token1] = ACTIONS(3638), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3640), - [aux_sym_preproc_if_token1] = ACTIONS(3638), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3638), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3638), - [sym_preproc_directive] = ACTIONS(3638), - [anon_sym_LPAREN2] = ACTIONS(3640), - [anon_sym_BANG] = ACTIONS(3640), - [anon_sym_TILDE] = ACTIONS(3640), - [anon_sym_DASH] = ACTIONS(3638), - [anon_sym_PLUS] = ACTIONS(3638), - [anon_sym_STAR] = ACTIONS(3640), - [anon_sym_AMP_AMP] = ACTIONS(3640), - [anon_sym_AMP] = ACTIONS(3638), - [anon_sym___extension__] = ACTIONS(3638), - [anon_sym_typedef] = ACTIONS(3638), - [anon_sym_extern] = ACTIONS(3638), - [anon_sym___attribute__] = ACTIONS(3638), - [anon_sym_COLON_COLON] = ACTIONS(3640), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3640), - [anon_sym___declspec] = ACTIONS(3638), - [anon_sym___based] = ACTIONS(3638), - [anon_sym___cdecl] = ACTIONS(3638), - [anon_sym___clrcall] = ACTIONS(3638), - [anon_sym___stdcall] = ACTIONS(3638), - [anon_sym___fastcall] = ACTIONS(3638), - [anon_sym___thiscall] = ACTIONS(3638), - [anon_sym___vectorcall] = ACTIONS(3638), - [anon_sym_LBRACE] = ACTIONS(3640), - [anon_sym_signed] = ACTIONS(3638), - [anon_sym_unsigned] = ACTIONS(3638), - [anon_sym_long] = ACTIONS(3638), - [anon_sym_short] = ACTIONS(3638), - [anon_sym_LBRACK] = ACTIONS(3638), - [anon_sym_static] = ACTIONS(3638), - [anon_sym_register] = ACTIONS(3638), - [anon_sym_inline] = ACTIONS(3638), - [anon_sym___inline] = ACTIONS(3638), - [anon_sym___inline__] = ACTIONS(3638), - [anon_sym___forceinline] = ACTIONS(3638), - [anon_sym_thread_local] = ACTIONS(3638), - [anon_sym___thread] = ACTIONS(3638), - [anon_sym_const] = ACTIONS(3638), - [anon_sym_constexpr] = ACTIONS(3638), - [anon_sym_volatile] = ACTIONS(3638), - [anon_sym_restrict] = ACTIONS(3638), - [anon_sym___restrict__] = ACTIONS(3638), - [anon_sym__Atomic] = ACTIONS(3638), - [anon_sym__Noreturn] = ACTIONS(3638), - [anon_sym_noreturn] = ACTIONS(3638), - [anon_sym_mutable] = ACTIONS(3638), - [anon_sym_constinit] = ACTIONS(3638), - [anon_sym_consteval] = ACTIONS(3638), - [sym_primitive_type] = ACTIONS(3638), - [anon_sym_enum] = ACTIONS(3638), - [anon_sym_class] = ACTIONS(3638), - [anon_sym_struct] = ACTIONS(3638), - [anon_sym_union] = ACTIONS(3638), - [anon_sym_if] = ACTIONS(3638), - [anon_sym_switch] = ACTIONS(3638), - [anon_sym_case] = ACTIONS(3638), - [anon_sym_default] = ACTIONS(3638), - [anon_sym_while] = ACTIONS(3638), - [anon_sym_do] = ACTIONS(3638), - [anon_sym_for] = ACTIONS(3638), - [anon_sym_return] = ACTIONS(3638), - [anon_sym_break] = ACTIONS(3638), - [anon_sym_continue] = ACTIONS(3638), - [anon_sym_goto] = ACTIONS(3638), - [anon_sym_not] = ACTIONS(3638), - [anon_sym_compl] = ACTIONS(3638), - [anon_sym_DASH_DASH] = ACTIONS(3640), - [anon_sym_PLUS_PLUS] = ACTIONS(3640), - [anon_sym_sizeof] = ACTIONS(3638), - [anon_sym___alignof__] = ACTIONS(3638), - [anon_sym___alignof] = ACTIONS(3638), - [anon_sym__alignof] = ACTIONS(3638), - [anon_sym_alignof] = ACTIONS(3638), - [anon_sym__Alignof] = ACTIONS(3638), - [anon_sym_offsetof] = ACTIONS(3638), - [anon_sym__Generic] = ACTIONS(3638), - [anon_sym_asm] = ACTIONS(3638), - [anon_sym___asm__] = ACTIONS(3638), - [sym_number_literal] = ACTIONS(3640), - [anon_sym_L_SQUOTE] = ACTIONS(3640), - [anon_sym_u_SQUOTE] = ACTIONS(3640), - [anon_sym_U_SQUOTE] = ACTIONS(3640), - [anon_sym_u8_SQUOTE] = ACTIONS(3640), - [anon_sym_SQUOTE] = ACTIONS(3640), - [anon_sym_L_DQUOTE] = ACTIONS(3640), - [anon_sym_u_DQUOTE] = ACTIONS(3640), - [anon_sym_U_DQUOTE] = ACTIONS(3640), - [anon_sym_u8_DQUOTE] = ACTIONS(3640), - [anon_sym_DQUOTE] = ACTIONS(3640), - [sym_true] = ACTIONS(3638), - [sym_false] = ACTIONS(3638), - [anon_sym_NULL] = ACTIONS(3638), - [anon_sym_nullptr] = ACTIONS(3638), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3638), - [anon_sym_decltype] = ACTIONS(3638), - [anon_sym_virtual] = ACTIONS(3638), - [anon_sym_alignas] = ACTIONS(3638), - [anon_sym_explicit] = ACTIONS(3638), - [anon_sym_typename] = ACTIONS(3638), - [anon_sym_template] = ACTIONS(3638), - [anon_sym_operator] = ACTIONS(3638), - [anon_sym_try] = ACTIONS(3638), - [anon_sym_delete] = ACTIONS(3638), - [anon_sym_throw] = ACTIONS(3638), - [anon_sym_namespace] = ACTIONS(3638), - [anon_sym_using] = ACTIONS(3638), - [anon_sym_static_assert] = ACTIONS(3638), - [anon_sym_concept] = ACTIONS(3638), - [anon_sym_co_return] = ACTIONS(3638), - [anon_sym_co_yield] = ACTIONS(3638), - [anon_sym_R_DQUOTE] = ACTIONS(3640), - [anon_sym_LR_DQUOTE] = ACTIONS(3640), - [anon_sym_uR_DQUOTE] = ACTIONS(3640), - [anon_sym_UR_DQUOTE] = ACTIONS(3640), - [anon_sym_u8R_DQUOTE] = ACTIONS(3640), - [anon_sym_co_await] = ACTIONS(3638), - [anon_sym_new] = ACTIONS(3638), - [anon_sym_requires] = ACTIONS(3638), - [sym_this] = ACTIONS(3638), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3640), - [sym_semgrep_named_ellipsis] = ACTIONS(3640), - }, - [859] = { - [ts_builtin_sym_end] = ACTIONS(3439), - [sym_identifier] = ACTIONS(3437), - [aux_sym_preproc_include_token1] = ACTIONS(3437), - [aux_sym_preproc_def_token1] = ACTIONS(3437), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3439), - [aux_sym_preproc_if_token1] = ACTIONS(3437), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3437), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3437), - [sym_preproc_directive] = ACTIONS(3437), - [anon_sym_LPAREN2] = ACTIONS(3439), - [anon_sym_BANG] = ACTIONS(3439), - [anon_sym_TILDE] = ACTIONS(3439), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_STAR] = ACTIONS(3439), - [anon_sym_AMP_AMP] = ACTIONS(3439), - [anon_sym_AMP] = ACTIONS(3437), - [anon_sym___extension__] = ACTIONS(3437), - [anon_sym_typedef] = ACTIONS(3437), - [anon_sym_extern] = ACTIONS(3437), - [anon_sym___attribute__] = ACTIONS(3437), - [anon_sym_COLON_COLON] = ACTIONS(3439), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3439), - [anon_sym___declspec] = ACTIONS(3437), - [anon_sym___based] = ACTIONS(3437), - [anon_sym___cdecl] = ACTIONS(3437), - [anon_sym___clrcall] = ACTIONS(3437), - [anon_sym___stdcall] = ACTIONS(3437), - [anon_sym___fastcall] = ACTIONS(3437), - [anon_sym___thiscall] = ACTIONS(3437), - [anon_sym___vectorcall] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3439), - [anon_sym_signed] = ACTIONS(3437), - [anon_sym_unsigned] = ACTIONS(3437), - [anon_sym_long] = ACTIONS(3437), - [anon_sym_short] = ACTIONS(3437), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_static] = ACTIONS(3437), - [anon_sym_register] = ACTIONS(3437), - [anon_sym_inline] = ACTIONS(3437), - [anon_sym___inline] = ACTIONS(3437), - [anon_sym___inline__] = ACTIONS(3437), - [anon_sym___forceinline] = ACTIONS(3437), - [anon_sym_thread_local] = ACTIONS(3437), - [anon_sym___thread] = ACTIONS(3437), - [anon_sym_const] = ACTIONS(3437), - [anon_sym_constexpr] = ACTIONS(3437), - [anon_sym_volatile] = ACTIONS(3437), - [anon_sym_restrict] = ACTIONS(3437), - [anon_sym___restrict__] = ACTIONS(3437), - [anon_sym__Atomic] = ACTIONS(3437), - [anon_sym__Noreturn] = ACTIONS(3437), - [anon_sym_noreturn] = ACTIONS(3437), - [anon_sym_mutable] = ACTIONS(3437), - [anon_sym_constinit] = ACTIONS(3437), - [anon_sym_consteval] = ACTIONS(3437), - [sym_primitive_type] = ACTIONS(3437), - [anon_sym_enum] = ACTIONS(3437), - [anon_sym_class] = ACTIONS(3437), - [anon_sym_struct] = ACTIONS(3437), - [anon_sym_union] = ACTIONS(3437), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_switch] = ACTIONS(3437), - [anon_sym_case] = ACTIONS(3437), - [anon_sym_default] = ACTIONS(3437), - [anon_sym_while] = ACTIONS(3437), - [anon_sym_do] = ACTIONS(3437), - [anon_sym_for] = ACTIONS(3437), - [anon_sym_return] = ACTIONS(3437), - [anon_sym_break] = ACTIONS(3437), - [anon_sym_continue] = ACTIONS(3437), - [anon_sym_goto] = ACTIONS(3437), - [anon_sym_not] = ACTIONS(3437), - [anon_sym_compl] = ACTIONS(3437), - [anon_sym_DASH_DASH] = ACTIONS(3439), - [anon_sym_PLUS_PLUS] = ACTIONS(3439), - [anon_sym_sizeof] = ACTIONS(3437), - [anon_sym___alignof__] = ACTIONS(3437), - [anon_sym___alignof] = ACTIONS(3437), - [anon_sym__alignof] = ACTIONS(3437), - [anon_sym_alignof] = ACTIONS(3437), - [anon_sym__Alignof] = ACTIONS(3437), - [anon_sym_offsetof] = ACTIONS(3437), - [anon_sym__Generic] = ACTIONS(3437), - [anon_sym_asm] = ACTIONS(3437), - [anon_sym___asm__] = ACTIONS(3437), - [sym_number_literal] = ACTIONS(3439), - [anon_sym_L_SQUOTE] = ACTIONS(3439), - [anon_sym_u_SQUOTE] = ACTIONS(3439), - [anon_sym_U_SQUOTE] = ACTIONS(3439), - [anon_sym_u8_SQUOTE] = ACTIONS(3439), - [anon_sym_SQUOTE] = ACTIONS(3439), - [anon_sym_L_DQUOTE] = ACTIONS(3439), - [anon_sym_u_DQUOTE] = ACTIONS(3439), - [anon_sym_U_DQUOTE] = ACTIONS(3439), - [anon_sym_u8_DQUOTE] = ACTIONS(3439), - [anon_sym_DQUOTE] = ACTIONS(3439), - [sym_true] = ACTIONS(3437), - [sym_false] = ACTIONS(3437), - [anon_sym_NULL] = ACTIONS(3437), - [anon_sym_nullptr] = ACTIONS(3437), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3437), - [anon_sym_decltype] = ACTIONS(3437), - [anon_sym_virtual] = ACTIONS(3437), - [anon_sym_alignas] = ACTIONS(3437), - [anon_sym_explicit] = ACTIONS(3437), - [anon_sym_typename] = ACTIONS(3437), - [anon_sym_template] = ACTIONS(3437), - [anon_sym_operator] = ACTIONS(3437), - [anon_sym_try] = ACTIONS(3437), - [anon_sym_delete] = ACTIONS(3437), - [anon_sym_throw] = ACTIONS(3437), - [anon_sym_namespace] = ACTIONS(3437), - [anon_sym_using] = ACTIONS(3437), - [anon_sym_static_assert] = ACTIONS(3437), - [anon_sym_concept] = ACTIONS(3437), - [anon_sym_co_return] = ACTIONS(3437), - [anon_sym_co_yield] = ACTIONS(3437), - [anon_sym_R_DQUOTE] = ACTIONS(3439), - [anon_sym_LR_DQUOTE] = ACTIONS(3439), - [anon_sym_uR_DQUOTE] = ACTIONS(3439), - [anon_sym_UR_DQUOTE] = ACTIONS(3439), - [anon_sym_u8R_DQUOTE] = ACTIONS(3439), - [anon_sym_co_await] = ACTIONS(3437), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3437), - [sym_this] = ACTIONS(3437), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3439), - [sym_semgrep_named_ellipsis] = ACTIONS(3439), - }, - [860] = { - [ts_builtin_sym_end] = ACTIONS(3443), - [sym_identifier] = ACTIONS(3441), - [aux_sym_preproc_include_token1] = ACTIONS(3441), - [aux_sym_preproc_def_token1] = ACTIONS(3441), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3443), - [aux_sym_preproc_if_token1] = ACTIONS(3441), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3441), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3441), - [sym_preproc_directive] = ACTIONS(3441), - [anon_sym_LPAREN2] = ACTIONS(3443), - [anon_sym_BANG] = ACTIONS(3443), - [anon_sym_TILDE] = ACTIONS(3443), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_PLUS] = ACTIONS(3441), - [anon_sym_STAR] = ACTIONS(3443), - [anon_sym_AMP_AMP] = ACTIONS(3443), - [anon_sym_AMP] = ACTIONS(3441), - [anon_sym___extension__] = ACTIONS(3441), - [anon_sym_typedef] = ACTIONS(3441), - [anon_sym_extern] = ACTIONS(3441), - [anon_sym___attribute__] = ACTIONS(3441), - [anon_sym_COLON_COLON] = ACTIONS(3443), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3443), - [anon_sym___declspec] = ACTIONS(3441), - [anon_sym___based] = ACTIONS(3441), - [anon_sym___cdecl] = ACTIONS(3441), - [anon_sym___clrcall] = ACTIONS(3441), - [anon_sym___stdcall] = ACTIONS(3441), - [anon_sym___fastcall] = ACTIONS(3441), - [anon_sym___thiscall] = ACTIONS(3441), - [anon_sym___vectorcall] = ACTIONS(3441), - [anon_sym_LBRACE] = ACTIONS(3443), - [anon_sym_signed] = ACTIONS(3441), - [anon_sym_unsigned] = ACTIONS(3441), - [anon_sym_long] = ACTIONS(3441), - [anon_sym_short] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_static] = ACTIONS(3441), - [anon_sym_register] = ACTIONS(3441), - [anon_sym_inline] = ACTIONS(3441), - [anon_sym___inline] = ACTIONS(3441), - [anon_sym___inline__] = ACTIONS(3441), - [anon_sym___forceinline] = ACTIONS(3441), - [anon_sym_thread_local] = ACTIONS(3441), - [anon_sym___thread] = ACTIONS(3441), - [anon_sym_const] = ACTIONS(3441), - [anon_sym_constexpr] = ACTIONS(3441), - [anon_sym_volatile] = ACTIONS(3441), - [anon_sym_restrict] = ACTIONS(3441), - [anon_sym___restrict__] = ACTIONS(3441), - [anon_sym__Atomic] = ACTIONS(3441), - [anon_sym__Noreturn] = ACTIONS(3441), - [anon_sym_noreturn] = ACTIONS(3441), - [anon_sym_mutable] = ACTIONS(3441), - [anon_sym_constinit] = ACTIONS(3441), - [anon_sym_consteval] = ACTIONS(3441), - [sym_primitive_type] = ACTIONS(3441), - [anon_sym_enum] = ACTIONS(3441), - [anon_sym_class] = ACTIONS(3441), - [anon_sym_struct] = ACTIONS(3441), - [anon_sym_union] = ACTIONS(3441), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_switch] = ACTIONS(3441), - [anon_sym_case] = ACTIONS(3441), - [anon_sym_default] = ACTIONS(3441), - [anon_sym_while] = ACTIONS(3441), - [anon_sym_do] = ACTIONS(3441), - [anon_sym_for] = ACTIONS(3441), - [anon_sym_return] = ACTIONS(3441), - [anon_sym_break] = ACTIONS(3441), - [anon_sym_continue] = ACTIONS(3441), - [anon_sym_goto] = ACTIONS(3441), - [anon_sym_not] = ACTIONS(3441), - [anon_sym_compl] = ACTIONS(3441), - [anon_sym_DASH_DASH] = ACTIONS(3443), - [anon_sym_PLUS_PLUS] = ACTIONS(3443), - [anon_sym_sizeof] = ACTIONS(3441), - [anon_sym___alignof__] = ACTIONS(3441), - [anon_sym___alignof] = ACTIONS(3441), - [anon_sym__alignof] = ACTIONS(3441), - [anon_sym_alignof] = ACTIONS(3441), - [anon_sym__Alignof] = ACTIONS(3441), - [anon_sym_offsetof] = ACTIONS(3441), - [anon_sym__Generic] = ACTIONS(3441), - [anon_sym_asm] = ACTIONS(3441), - [anon_sym___asm__] = ACTIONS(3441), - [sym_number_literal] = ACTIONS(3443), - [anon_sym_L_SQUOTE] = ACTIONS(3443), - [anon_sym_u_SQUOTE] = ACTIONS(3443), - [anon_sym_U_SQUOTE] = ACTIONS(3443), - [anon_sym_u8_SQUOTE] = ACTIONS(3443), - [anon_sym_SQUOTE] = ACTIONS(3443), - [anon_sym_L_DQUOTE] = ACTIONS(3443), - [anon_sym_u_DQUOTE] = ACTIONS(3443), - [anon_sym_U_DQUOTE] = ACTIONS(3443), - [anon_sym_u8_DQUOTE] = ACTIONS(3443), - [anon_sym_DQUOTE] = ACTIONS(3443), - [sym_true] = ACTIONS(3441), - [sym_false] = ACTIONS(3441), - [anon_sym_NULL] = ACTIONS(3441), - [anon_sym_nullptr] = ACTIONS(3441), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3441), - [anon_sym_decltype] = ACTIONS(3441), - [anon_sym_virtual] = ACTIONS(3441), - [anon_sym_alignas] = ACTIONS(3441), - [anon_sym_explicit] = ACTIONS(3441), - [anon_sym_typename] = ACTIONS(3441), - [anon_sym_template] = ACTIONS(3441), - [anon_sym_operator] = ACTIONS(3441), - [anon_sym_try] = ACTIONS(3441), - [anon_sym_delete] = ACTIONS(3441), - [anon_sym_throw] = ACTIONS(3441), - [anon_sym_namespace] = ACTIONS(3441), - [anon_sym_using] = ACTIONS(3441), - [anon_sym_static_assert] = ACTIONS(3441), - [anon_sym_concept] = ACTIONS(3441), - [anon_sym_co_return] = ACTIONS(3441), - [anon_sym_co_yield] = ACTIONS(3441), - [anon_sym_R_DQUOTE] = ACTIONS(3443), - [anon_sym_LR_DQUOTE] = ACTIONS(3443), - [anon_sym_uR_DQUOTE] = ACTIONS(3443), - [anon_sym_UR_DQUOTE] = ACTIONS(3443), - [anon_sym_u8R_DQUOTE] = ACTIONS(3443), - [anon_sym_co_await] = ACTIONS(3441), - [anon_sym_new] = ACTIONS(3441), - [anon_sym_requires] = ACTIONS(3441), - [sym_this] = ACTIONS(3441), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3443), - [sym_semgrep_named_ellipsis] = ACTIONS(3443), - }, - [861] = { - [ts_builtin_sym_end] = ACTIONS(3447), - [sym_identifier] = ACTIONS(3445), - [aux_sym_preproc_include_token1] = ACTIONS(3445), - [aux_sym_preproc_def_token1] = ACTIONS(3445), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3447), - [aux_sym_preproc_if_token1] = ACTIONS(3445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3445), - [sym_preproc_directive] = ACTIONS(3445), - [anon_sym_LPAREN2] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_TILDE] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3445), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3445), - [anon_sym___extension__] = ACTIONS(3445), - [anon_sym_typedef] = ACTIONS(3445), - [anon_sym_extern] = ACTIONS(3445), - [anon_sym___attribute__] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3447), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3447), - [anon_sym___declspec] = ACTIONS(3445), - [anon_sym___based] = ACTIONS(3445), - [anon_sym___cdecl] = ACTIONS(3445), - [anon_sym___clrcall] = ACTIONS(3445), - [anon_sym___stdcall] = ACTIONS(3445), - [anon_sym___fastcall] = ACTIONS(3445), - [anon_sym___thiscall] = ACTIONS(3445), - [anon_sym___vectorcall] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_signed] = ACTIONS(3445), - [anon_sym_unsigned] = ACTIONS(3445), - [anon_sym_long] = ACTIONS(3445), - [anon_sym_short] = ACTIONS(3445), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_static] = ACTIONS(3445), - [anon_sym_register] = ACTIONS(3445), - [anon_sym_inline] = ACTIONS(3445), - [anon_sym___inline] = ACTIONS(3445), - [anon_sym___inline__] = ACTIONS(3445), - [anon_sym___forceinline] = ACTIONS(3445), - [anon_sym_thread_local] = ACTIONS(3445), - [anon_sym___thread] = ACTIONS(3445), - [anon_sym_const] = ACTIONS(3445), - [anon_sym_constexpr] = ACTIONS(3445), - [anon_sym_volatile] = ACTIONS(3445), - [anon_sym_restrict] = ACTIONS(3445), - [anon_sym___restrict__] = ACTIONS(3445), - [anon_sym__Atomic] = ACTIONS(3445), - [anon_sym__Noreturn] = ACTIONS(3445), - [anon_sym_noreturn] = ACTIONS(3445), - [anon_sym_mutable] = ACTIONS(3445), - [anon_sym_constinit] = ACTIONS(3445), - [anon_sym_consteval] = ACTIONS(3445), - [sym_primitive_type] = ACTIONS(3445), - [anon_sym_enum] = ACTIONS(3445), - [anon_sym_class] = ACTIONS(3445), - [anon_sym_struct] = ACTIONS(3445), - [anon_sym_union] = ACTIONS(3445), - [anon_sym_if] = ACTIONS(3445), - [anon_sym_switch] = ACTIONS(3445), - [anon_sym_case] = ACTIONS(3445), - [anon_sym_default] = ACTIONS(3445), - [anon_sym_while] = ACTIONS(3445), - [anon_sym_do] = ACTIONS(3445), - [anon_sym_for] = ACTIONS(3445), - [anon_sym_return] = ACTIONS(3445), - [anon_sym_break] = ACTIONS(3445), - [anon_sym_continue] = ACTIONS(3445), - [anon_sym_goto] = ACTIONS(3445), - [anon_sym_not] = ACTIONS(3445), - [anon_sym_compl] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3447), - [anon_sym_sizeof] = ACTIONS(3445), - [anon_sym___alignof__] = ACTIONS(3445), - [anon_sym___alignof] = ACTIONS(3445), - [anon_sym__alignof] = ACTIONS(3445), - [anon_sym_alignof] = ACTIONS(3445), - [anon_sym__Alignof] = ACTIONS(3445), - [anon_sym_offsetof] = ACTIONS(3445), - [anon_sym__Generic] = ACTIONS(3445), - [anon_sym_asm] = ACTIONS(3445), - [anon_sym___asm__] = ACTIONS(3445), - [sym_number_literal] = ACTIONS(3447), - [anon_sym_L_SQUOTE] = ACTIONS(3447), - [anon_sym_u_SQUOTE] = ACTIONS(3447), - [anon_sym_U_SQUOTE] = ACTIONS(3447), - [anon_sym_u8_SQUOTE] = ACTIONS(3447), - [anon_sym_SQUOTE] = ACTIONS(3447), - [anon_sym_L_DQUOTE] = ACTIONS(3447), - [anon_sym_u_DQUOTE] = ACTIONS(3447), - [anon_sym_U_DQUOTE] = ACTIONS(3447), - [anon_sym_u8_DQUOTE] = ACTIONS(3447), - [anon_sym_DQUOTE] = ACTIONS(3447), - [sym_true] = ACTIONS(3445), - [sym_false] = ACTIONS(3445), - [anon_sym_NULL] = ACTIONS(3445), - [anon_sym_nullptr] = ACTIONS(3445), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3445), - [anon_sym_decltype] = ACTIONS(3445), - [anon_sym_virtual] = ACTIONS(3445), - [anon_sym_alignas] = ACTIONS(3445), - [anon_sym_explicit] = ACTIONS(3445), - [anon_sym_typename] = ACTIONS(3445), - [anon_sym_template] = ACTIONS(3445), - [anon_sym_operator] = ACTIONS(3445), - [anon_sym_try] = ACTIONS(3445), - [anon_sym_delete] = ACTIONS(3445), - [anon_sym_throw] = ACTIONS(3445), - [anon_sym_namespace] = ACTIONS(3445), - [anon_sym_using] = ACTIONS(3445), - [anon_sym_static_assert] = ACTIONS(3445), - [anon_sym_concept] = ACTIONS(3445), - [anon_sym_co_return] = ACTIONS(3445), - [anon_sym_co_yield] = ACTIONS(3445), - [anon_sym_R_DQUOTE] = ACTIONS(3447), - [anon_sym_LR_DQUOTE] = ACTIONS(3447), - [anon_sym_uR_DQUOTE] = ACTIONS(3447), - [anon_sym_UR_DQUOTE] = ACTIONS(3447), - [anon_sym_u8R_DQUOTE] = ACTIONS(3447), - [anon_sym_co_await] = ACTIONS(3445), - [anon_sym_new] = ACTIONS(3445), - [anon_sym_requires] = ACTIONS(3445), - [sym_this] = ACTIONS(3445), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3447), - [sym_semgrep_named_ellipsis] = ACTIONS(3447), - }, - [862] = { - [ts_builtin_sym_end] = ACTIONS(3451), - [sym_identifier] = ACTIONS(3449), - [aux_sym_preproc_include_token1] = ACTIONS(3449), - [aux_sym_preproc_def_token1] = ACTIONS(3449), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3451), - [aux_sym_preproc_if_token1] = ACTIONS(3449), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3449), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3449), - [sym_preproc_directive] = ACTIONS(3449), - [anon_sym_LPAREN2] = ACTIONS(3451), - [anon_sym_BANG] = ACTIONS(3451), - [anon_sym_TILDE] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3449), - [anon_sym_PLUS] = ACTIONS(3449), - [anon_sym_STAR] = ACTIONS(3451), - [anon_sym_AMP_AMP] = ACTIONS(3451), - [anon_sym_AMP] = ACTIONS(3449), - [anon_sym___extension__] = ACTIONS(3449), - [anon_sym_typedef] = ACTIONS(3449), - [anon_sym_extern] = ACTIONS(3449), - [anon_sym___attribute__] = ACTIONS(3449), - [anon_sym_COLON_COLON] = ACTIONS(3451), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3451), - [anon_sym___declspec] = ACTIONS(3449), - [anon_sym___based] = ACTIONS(3449), - [anon_sym___cdecl] = ACTIONS(3449), - [anon_sym___clrcall] = ACTIONS(3449), - [anon_sym___stdcall] = ACTIONS(3449), - [anon_sym___fastcall] = ACTIONS(3449), - [anon_sym___thiscall] = ACTIONS(3449), - [anon_sym___vectorcall] = ACTIONS(3449), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_signed] = ACTIONS(3449), - [anon_sym_unsigned] = ACTIONS(3449), - [anon_sym_long] = ACTIONS(3449), - [anon_sym_short] = ACTIONS(3449), - [anon_sym_LBRACK] = ACTIONS(3449), - [anon_sym_static] = ACTIONS(3449), - [anon_sym_register] = ACTIONS(3449), - [anon_sym_inline] = ACTIONS(3449), - [anon_sym___inline] = ACTIONS(3449), - [anon_sym___inline__] = ACTIONS(3449), - [anon_sym___forceinline] = ACTIONS(3449), - [anon_sym_thread_local] = ACTIONS(3449), - [anon_sym___thread] = ACTIONS(3449), - [anon_sym_const] = ACTIONS(3449), - [anon_sym_constexpr] = ACTIONS(3449), - [anon_sym_volatile] = ACTIONS(3449), - [anon_sym_restrict] = ACTIONS(3449), - [anon_sym___restrict__] = ACTIONS(3449), - [anon_sym__Atomic] = ACTIONS(3449), - [anon_sym__Noreturn] = ACTIONS(3449), - [anon_sym_noreturn] = ACTIONS(3449), - [anon_sym_mutable] = ACTIONS(3449), - [anon_sym_constinit] = ACTIONS(3449), - [anon_sym_consteval] = ACTIONS(3449), - [sym_primitive_type] = ACTIONS(3449), - [anon_sym_enum] = ACTIONS(3449), - [anon_sym_class] = ACTIONS(3449), - [anon_sym_struct] = ACTIONS(3449), - [anon_sym_union] = ACTIONS(3449), - [anon_sym_if] = ACTIONS(3449), - [anon_sym_switch] = ACTIONS(3449), - [anon_sym_case] = ACTIONS(3449), - [anon_sym_default] = ACTIONS(3449), - [anon_sym_while] = ACTIONS(3449), - [anon_sym_do] = ACTIONS(3449), - [anon_sym_for] = ACTIONS(3449), - [anon_sym_return] = ACTIONS(3449), - [anon_sym_break] = ACTIONS(3449), - [anon_sym_continue] = ACTIONS(3449), - [anon_sym_goto] = ACTIONS(3449), - [anon_sym_not] = ACTIONS(3449), - [anon_sym_compl] = ACTIONS(3449), - [anon_sym_DASH_DASH] = ACTIONS(3451), - [anon_sym_PLUS_PLUS] = ACTIONS(3451), - [anon_sym_sizeof] = ACTIONS(3449), - [anon_sym___alignof__] = ACTIONS(3449), - [anon_sym___alignof] = ACTIONS(3449), - [anon_sym__alignof] = ACTIONS(3449), - [anon_sym_alignof] = ACTIONS(3449), - [anon_sym__Alignof] = ACTIONS(3449), - [anon_sym_offsetof] = ACTIONS(3449), - [anon_sym__Generic] = ACTIONS(3449), - [anon_sym_asm] = ACTIONS(3449), - [anon_sym___asm__] = ACTIONS(3449), - [sym_number_literal] = ACTIONS(3451), - [anon_sym_L_SQUOTE] = ACTIONS(3451), - [anon_sym_u_SQUOTE] = ACTIONS(3451), - [anon_sym_U_SQUOTE] = ACTIONS(3451), - [anon_sym_u8_SQUOTE] = ACTIONS(3451), - [anon_sym_SQUOTE] = ACTIONS(3451), - [anon_sym_L_DQUOTE] = ACTIONS(3451), - [anon_sym_u_DQUOTE] = ACTIONS(3451), - [anon_sym_U_DQUOTE] = ACTIONS(3451), - [anon_sym_u8_DQUOTE] = ACTIONS(3451), - [anon_sym_DQUOTE] = ACTIONS(3451), - [sym_true] = ACTIONS(3449), - [sym_false] = ACTIONS(3449), - [anon_sym_NULL] = ACTIONS(3449), - [anon_sym_nullptr] = ACTIONS(3449), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3449), - [anon_sym_decltype] = ACTIONS(3449), - [anon_sym_virtual] = ACTIONS(3449), - [anon_sym_alignas] = ACTIONS(3449), - [anon_sym_explicit] = ACTIONS(3449), - [anon_sym_typename] = ACTIONS(3449), - [anon_sym_template] = ACTIONS(3449), - [anon_sym_operator] = ACTIONS(3449), - [anon_sym_try] = ACTIONS(3449), - [anon_sym_delete] = ACTIONS(3449), - [anon_sym_throw] = ACTIONS(3449), - [anon_sym_namespace] = ACTIONS(3449), - [anon_sym_using] = ACTIONS(3449), - [anon_sym_static_assert] = ACTIONS(3449), - [anon_sym_concept] = ACTIONS(3449), - [anon_sym_co_return] = ACTIONS(3449), - [anon_sym_co_yield] = ACTIONS(3449), - [anon_sym_R_DQUOTE] = ACTIONS(3451), - [anon_sym_LR_DQUOTE] = ACTIONS(3451), - [anon_sym_uR_DQUOTE] = ACTIONS(3451), - [anon_sym_UR_DQUOTE] = ACTIONS(3451), - [anon_sym_u8R_DQUOTE] = ACTIONS(3451), - [anon_sym_co_await] = ACTIONS(3449), - [anon_sym_new] = ACTIONS(3449), - [anon_sym_requires] = ACTIONS(3449), - [sym_this] = ACTIONS(3449), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3451), - [sym_semgrep_named_ellipsis] = ACTIONS(3451), - }, - [863] = { - [ts_builtin_sym_end] = ACTIONS(3455), - [sym_identifier] = ACTIONS(3453), - [aux_sym_preproc_include_token1] = ACTIONS(3453), - [aux_sym_preproc_def_token1] = ACTIONS(3453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3455), - [aux_sym_preproc_if_token1] = ACTIONS(3453), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3453), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3453), - [sym_preproc_directive] = ACTIONS(3453), - [anon_sym_LPAREN2] = ACTIONS(3455), - [anon_sym_BANG] = ACTIONS(3455), - [anon_sym_TILDE] = ACTIONS(3455), - [anon_sym_DASH] = ACTIONS(3453), - [anon_sym_PLUS] = ACTIONS(3453), - [anon_sym_STAR] = ACTIONS(3455), - [anon_sym_AMP_AMP] = ACTIONS(3455), - [anon_sym_AMP] = ACTIONS(3453), - [anon_sym___extension__] = ACTIONS(3453), - [anon_sym_typedef] = ACTIONS(3453), - [anon_sym_extern] = ACTIONS(3453), - [anon_sym___attribute__] = ACTIONS(3453), - [anon_sym_COLON_COLON] = ACTIONS(3455), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3455), - [anon_sym___declspec] = ACTIONS(3453), - [anon_sym___based] = ACTIONS(3453), - [anon_sym___cdecl] = ACTIONS(3453), - [anon_sym___clrcall] = ACTIONS(3453), - [anon_sym___stdcall] = ACTIONS(3453), - [anon_sym___fastcall] = ACTIONS(3453), - [anon_sym___thiscall] = ACTIONS(3453), - [anon_sym___vectorcall] = ACTIONS(3453), - [anon_sym_LBRACE] = ACTIONS(3455), - [anon_sym_signed] = ACTIONS(3453), - [anon_sym_unsigned] = ACTIONS(3453), - [anon_sym_long] = ACTIONS(3453), - [anon_sym_short] = ACTIONS(3453), - [anon_sym_LBRACK] = ACTIONS(3453), - [anon_sym_static] = ACTIONS(3453), - [anon_sym_register] = ACTIONS(3453), - [anon_sym_inline] = ACTIONS(3453), - [anon_sym___inline] = ACTIONS(3453), - [anon_sym___inline__] = ACTIONS(3453), - [anon_sym___forceinline] = ACTIONS(3453), - [anon_sym_thread_local] = ACTIONS(3453), - [anon_sym___thread] = ACTIONS(3453), - [anon_sym_const] = ACTIONS(3453), - [anon_sym_constexpr] = ACTIONS(3453), - [anon_sym_volatile] = ACTIONS(3453), - [anon_sym_restrict] = ACTIONS(3453), - [anon_sym___restrict__] = ACTIONS(3453), - [anon_sym__Atomic] = ACTIONS(3453), - [anon_sym__Noreturn] = ACTIONS(3453), - [anon_sym_noreturn] = ACTIONS(3453), - [anon_sym_mutable] = ACTIONS(3453), - [anon_sym_constinit] = ACTIONS(3453), - [anon_sym_consteval] = ACTIONS(3453), - [sym_primitive_type] = ACTIONS(3453), - [anon_sym_enum] = ACTIONS(3453), - [anon_sym_class] = ACTIONS(3453), - [anon_sym_struct] = ACTIONS(3453), - [anon_sym_union] = ACTIONS(3453), - [anon_sym_if] = ACTIONS(3453), - [anon_sym_switch] = ACTIONS(3453), - [anon_sym_case] = ACTIONS(3453), - [anon_sym_default] = ACTIONS(3453), - [anon_sym_while] = ACTIONS(3453), - [anon_sym_do] = ACTIONS(3453), - [anon_sym_for] = ACTIONS(3453), - [anon_sym_return] = ACTIONS(3453), - [anon_sym_break] = ACTIONS(3453), - [anon_sym_continue] = ACTIONS(3453), - [anon_sym_goto] = ACTIONS(3453), - [anon_sym_not] = ACTIONS(3453), - [anon_sym_compl] = ACTIONS(3453), - [anon_sym_DASH_DASH] = ACTIONS(3455), - [anon_sym_PLUS_PLUS] = ACTIONS(3455), - [anon_sym_sizeof] = ACTIONS(3453), - [anon_sym___alignof__] = ACTIONS(3453), - [anon_sym___alignof] = ACTIONS(3453), - [anon_sym__alignof] = ACTIONS(3453), - [anon_sym_alignof] = ACTIONS(3453), - [anon_sym__Alignof] = ACTIONS(3453), - [anon_sym_offsetof] = ACTIONS(3453), - [anon_sym__Generic] = ACTIONS(3453), - [anon_sym_asm] = ACTIONS(3453), - [anon_sym___asm__] = ACTIONS(3453), - [sym_number_literal] = ACTIONS(3455), - [anon_sym_L_SQUOTE] = ACTIONS(3455), - [anon_sym_u_SQUOTE] = ACTIONS(3455), - [anon_sym_U_SQUOTE] = ACTIONS(3455), - [anon_sym_u8_SQUOTE] = ACTIONS(3455), - [anon_sym_SQUOTE] = ACTIONS(3455), - [anon_sym_L_DQUOTE] = ACTIONS(3455), - [anon_sym_u_DQUOTE] = ACTIONS(3455), - [anon_sym_U_DQUOTE] = ACTIONS(3455), - [anon_sym_u8_DQUOTE] = ACTIONS(3455), - [anon_sym_DQUOTE] = ACTIONS(3455), - [sym_true] = ACTIONS(3453), - [sym_false] = ACTIONS(3453), - [anon_sym_NULL] = ACTIONS(3453), - [anon_sym_nullptr] = ACTIONS(3453), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3453), - [anon_sym_decltype] = ACTIONS(3453), - [anon_sym_virtual] = ACTIONS(3453), - [anon_sym_alignas] = ACTIONS(3453), - [anon_sym_explicit] = ACTIONS(3453), - [anon_sym_typename] = ACTIONS(3453), - [anon_sym_template] = ACTIONS(3453), - [anon_sym_operator] = ACTIONS(3453), - [anon_sym_try] = ACTIONS(3453), - [anon_sym_delete] = ACTIONS(3453), - [anon_sym_throw] = ACTIONS(3453), - [anon_sym_namespace] = ACTIONS(3453), - [anon_sym_using] = ACTIONS(3453), - [anon_sym_static_assert] = ACTIONS(3453), - [anon_sym_concept] = ACTIONS(3453), - [anon_sym_co_return] = ACTIONS(3453), - [anon_sym_co_yield] = ACTIONS(3453), - [anon_sym_R_DQUOTE] = ACTIONS(3455), - [anon_sym_LR_DQUOTE] = ACTIONS(3455), - [anon_sym_uR_DQUOTE] = ACTIONS(3455), - [anon_sym_UR_DQUOTE] = ACTIONS(3455), - [anon_sym_u8R_DQUOTE] = ACTIONS(3455), - [anon_sym_co_await] = ACTIONS(3453), - [anon_sym_new] = ACTIONS(3453), - [anon_sym_requires] = ACTIONS(3453), - [sym_this] = ACTIONS(3453), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3455), - [sym_semgrep_named_ellipsis] = ACTIONS(3455), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(4059), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(4061), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(4063), + [anon_sym_static_assert] = ACTIONS(4065), + [sym_semgrep_metavar] = ACTIONS(4067), }, - [864] = { + [845] = { [ts_builtin_sym_end] = ACTIONS(3459), [sym_identifier] = ACTIONS(3457), [aux_sym_preproc_include_token1] = ACTIONS(3457), @@ -184072,7 +171700,271 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3459), [sym_semgrep_named_ellipsis] = ACTIONS(3459), }, - [865] = { + [846] = { + [sym_preproc_def] = STATE(2347), + [sym_preproc_function_def] = STATE(2347), + [sym_preproc_call] = STATE(2347), + [sym_preproc_if_in_field_declaration_list] = STATE(2347), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2347), + [sym_type_definition] = STATE(2347), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6437), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7306), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(868), + [sym_field_declaration] = STATE(2347), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2347), + [sym_operator_cast] = STATE(7731), + [sym_inline_method_definition] = STATE(2347), + [sym_constructor_specifiers] = STATE(1938), + [sym_operator_cast_definition] = STATE(2347), + [sym_operator_cast_declaration] = STATE(2347), + [sym_constructor_or_destructor_definition] = STATE(2347), + [sym_constructor_or_destructor_declaration] = STATE(2347), + [sym_friend_declaration] = STATE(2347), + [sym_access_specifier] = STATE(10086), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2347), + [sym_alias_declaration] = STATE(2347), + [sym_static_assert_declaration] = STATE(2347), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7731), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2347), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(868), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1938), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(4041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4043), + [aux_sym_preproc_if_token1] = ACTIONS(4045), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4049), + [sym_preproc_directive] = ACTIONS(4051), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(4053), + [anon_sym_typedef] = ACTIONS(4055), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(4129), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(4059), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(4061), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(4063), + [anon_sym_static_assert] = ACTIONS(4065), + [sym_semgrep_metavar] = ACTIONS(4067), + }, + [847] = { + [sym_preproc_def] = STATE(2347), + [sym_preproc_function_def] = STATE(2347), + [sym_preproc_call] = STATE(2347), + [sym_preproc_if_in_field_declaration_list] = STATE(2347), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2347), + [sym_type_definition] = STATE(2347), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6437), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7306), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(868), + [sym_field_declaration] = STATE(2347), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2347), + [sym_operator_cast] = STATE(7731), + [sym_inline_method_definition] = STATE(2347), + [sym_constructor_specifiers] = STATE(1938), + [sym_operator_cast_definition] = STATE(2347), + [sym_operator_cast_declaration] = STATE(2347), + [sym_constructor_or_destructor_definition] = STATE(2347), + [sym_constructor_or_destructor_declaration] = STATE(2347), + [sym_friend_declaration] = STATE(2347), + [sym_access_specifier] = STATE(10086), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2347), + [sym_alias_declaration] = STATE(2347), + [sym_static_assert_declaration] = STATE(2347), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7731), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2347), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(868), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1938), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(4041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4043), + [aux_sym_preproc_if_token1] = ACTIONS(4045), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4049), + [sym_preproc_directive] = ACTIONS(4051), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(4053), + [anon_sym_typedef] = ACTIONS(4055), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(4059), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(4061), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(4063), + [anon_sym_static_assert] = ACTIONS(4065), + [sym_semgrep_metavar] = ACTIONS(4067), + }, + [848] = { [ts_builtin_sym_end] = ACTIONS(3463), [sym_identifier] = ACTIONS(3461), [aux_sym_preproc_include_token1] = ACTIONS(3461), @@ -184204,7 +172096,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3463), [sym_semgrep_named_ellipsis] = ACTIONS(3463), }, - [866] = { + [849] = { + [sym_preproc_def] = STATE(2347), + [sym_preproc_function_def] = STATE(2347), + [sym_preproc_call] = STATE(2347), + [sym_preproc_if_in_field_declaration_list] = STATE(2347), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2347), + [sym_type_definition] = STATE(2347), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6437), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7306), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(851), + [sym_field_declaration] = STATE(2347), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2347), + [sym_operator_cast] = STATE(7731), + [sym_inline_method_definition] = STATE(2347), + [sym_constructor_specifiers] = STATE(1938), + [sym_operator_cast_definition] = STATE(2347), + [sym_operator_cast_declaration] = STATE(2347), + [sym_constructor_or_destructor_definition] = STATE(2347), + [sym_constructor_or_destructor_declaration] = STATE(2347), + [sym_friend_declaration] = STATE(2347), + [sym_access_specifier] = STATE(10086), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2347), + [sym_alias_declaration] = STATE(2347), + [sym_static_assert_declaration] = STATE(2347), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7731), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2347), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(851), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1938), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(4041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4043), + [aux_sym_preproc_if_token1] = ACTIONS(4045), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4049), + [sym_preproc_directive] = ACTIONS(4051), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(4053), + [anon_sym_typedef] = ACTIONS(4055), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(4133), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(4059), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(4061), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(4063), + [anon_sym_static_assert] = ACTIONS(4065), + [sym_semgrep_metavar] = ACTIONS(4067), + }, + [850] = { [ts_builtin_sym_end] = ACTIONS(3467), [sym_identifier] = ACTIONS(3465), [aux_sym_preproc_include_token1] = ACTIONS(3465), @@ -184336,799 +172360,1459 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3467), [sym_semgrep_named_ellipsis] = ACTIONS(3467), }, - [867] = { - [ts_builtin_sym_end] = ACTIONS(3471), - [sym_identifier] = ACTIONS(3469), - [aux_sym_preproc_include_token1] = ACTIONS(3469), - [aux_sym_preproc_def_token1] = ACTIONS(3469), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3471), - [aux_sym_preproc_if_token1] = ACTIONS(3469), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3469), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3469), - [sym_preproc_directive] = ACTIONS(3469), - [anon_sym_LPAREN2] = ACTIONS(3471), - [anon_sym_BANG] = ACTIONS(3471), - [anon_sym_TILDE] = ACTIONS(3471), - [anon_sym_DASH] = ACTIONS(3469), - [anon_sym_PLUS] = ACTIONS(3469), - [anon_sym_STAR] = ACTIONS(3471), - [anon_sym_AMP_AMP] = ACTIONS(3471), - [anon_sym_AMP] = ACTIONS(3469), - [anon_sym___extension__] = ACTIONS(3469), - [anon_sym_typedef] = ACTIONS(3469), - [anon_sym_extern] = ACTIONS(3469), - [anon_sym___attribute__] = ACTIONS(3469), - [anon_sym_COLON_COLON] = ACTIONS(3471), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3471), - [anon_sym___declspec] = ACTIONS(3469), - [anon_sym___based] = ACTIONS(3469), - [anon_sym___cdecl] = ACTIONS(3469), - [anon_sym___clrcall] = ACTIONS(3469), - [anon_sym___stdcall] = ACTIONS(3469), - [anon_sym___fastcall] = ACTIONS(3469), - [anon_sym___thiscall] = ACTIONS(3469), - [anon_sym___vectorcall] = ACTIONS(3469), - [anon_sym_LBRACE] = ACTIONS(3471), - [anon_sym_signed] = ACTIONS(3469), - [anon_sym_unsigned] = ACTIONS(3469), - [anon_sym_long] = ACTIONS(3469), - [anon_sym_short] = ACTIONS(3469), - [anon_sym_LBRACK] = ACTIONS(3469), - [anon_sym_static] = ACTIONS(3469), - [anon_sym_register] = ACTIONS(3469), - [anon_sym_inline] = ACTIONS(3469), - [anon_sym___inline] = ACTIONS(3469), - [anon_sym___inline__] = ACTIONS(3469), - [anon_sym___forceinline] = ACTIONS(3469), - [anon_sym_thread_local] = ACTIONS(3469), - [anon_sym___thread] = ACTIONS(3469), - [anon_sym_const] = ACTIONS(3469), - [anon_sym_constexpr] = ACTIONS(3469), - [anon_sym_volatile] = ACTIONS(3469), - [anon_sym_restrict] = ACTIONS(3469), - [anon_sym___restrict__] = ACTIONS(3469), - [anon_sym__Atomic] = ACTIONS(3469), - [anon_sym__Noreturn] = ACTIONS(3469), - [anon_sym_noreturn] = ACTIONS(3469), - [anon_sym_mutable] = ACTIONS(3469), - [anon_sym_constinit] = ACTIONS(3469), - [anon_sym_consteval] = ACTIONS(3469), - [sym_primitive_type] = ACTIONS(3469), - [anon_sym_enum] = ACTIONS(3469), - [anon_sym_class] = ACTIONS(3469), - [anon_sym_struct] = ACTIONS(3469), - [anon_sym_union] = ACTIONS(3469), - [anon_sym_if] = ACTIONS(3469), - [anon_sym_switch] = ACTIONS(3469), - [anon_sym_case] = ACTIONS(3469), - [anon_sym_default] = ACTIONS(3469), - [anon_sym_while] = ACTIONS(3469), - [anon_sym_do] = ACTIONS(3469), - [anon_sym_for] = ACTIONS(3469), - [anon_sym_return] = ACTIONS(3469), - [anon_sym_break] = ACTIONS(3469), - [anon_sym_continue] = ACTIONS(3469), - [anon_sym_goto] = ACTIONS(3469), - [anon_sym_not] = ACTIONS(3469), - [anon_sym_compl] = ACTIONS(3469), - [anon_sym_DASH_DASH] = ACTIONS(3471), - [anon_sym_PLUS_PLUS] = ACTIONS(3471), - [anon_sym_sizeof] = ACTIONS(3469), - [anon_sym___alignof__] = ACTIONS(3469), - [anon_sym___alignof] = ACTIONS(3469), - [anon_sym__alignof] = ACTIONS(3469), - [anon_sym_alignof] = ACTIONS(3469), - [anon_sym__Alignof] = ACTIONS(3469), - [anon_sym_offsetof] = ACTIONS(3469), - [anon_sym__Generic] = ACTIONS(3469), - [anon_sym_asm] = ACTIONS(3469), - [anon_sym___asm__] = ACTIONS(3469), - [sym_number_literal] = ACTIONS(3471), - [anon_sym_L_SQUOTE] = ACTIONS(3471), - [anon_sym_u_SQUOTE] = ACTIONS(3471), - [anon_sym_U_SQUOTE] = ACTIONS(3471), - [anon_sym_u8_SQUOTE] = ACTIONS(3471), - [anon_sym_SQUOTE] = ACTIONS(3471), - [anon_sym_L_DQUOTE] = ACTIONS(3471), - [anon_sym_u_DQUOTE] = ACTIONS(3471), - [anon_sym_U_DQUOTE] = ACTIONS(3471), - [anon_sym_u8_DQUOTE] = ACTIONS(3471), - [anon_sym_DQUOTE] = ACTIONS(3471), - [sym_true] = ACTIONS(3469), - [sym_false] = ACTIONS(3469), - [anon_sym_NULL] = ACTIONS(3469), - [anon_sym_nullptr] = ACTIONS(3469), + [851] = { + [sym_preproc_def] = STATE(2347), + [sym_preproc_function_def] = STATE(2347), + [sym_preproc_call] = STATE(2347), + [sym_preproc_if_in_field_declaration_list] = STATE(2347), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2347), + [sym_type_definition] = STATE(2347), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6437), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7306), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(868), + [sym_field_declaration] = STATE(2347), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2347), + [sym_operator_cast] = STATE(7731), + [sym_inline_method_definition] = STATE(2347), + [sym_constructor_specifiers] = STATE(1938), + [sym_operator_cast_definition] = STATE(2347), + [sym_operator_cast_declaration] = STATE(2347), + [sym_constructor_or_destructor_definition] = STATE(2347), + [sym_constructor_or_destructor_declaration] = STATE(2347), + [sym_friend_declaration] = STATE(2347), + [sym_access_specifier] = STATE(10086), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2347), + [sym_alias_declaration] = STATE(2347), + [sym_static_assert_declaration] = STATE(2347), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7731), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2347), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(868), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1938), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(4041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4043), + [aux_sym_preproc_if_token1] = ACTIONS(4045), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4049), + [sym_preproc_directive] = ACTIONS(4051), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(4053), + [anon_sym_typedef] = ACTIONS(4055), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(4135), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3469), - [anon_sym_decltype] = ACTIONS(3469), - [anon_sym_virtual] = ACTIONS(3469), - [anon_sym_alignas] = ACTIONS(3469), - [anon_sym_explicit] = ACTIONS(3469), - [anon_sym_typename] = ACTIONS(3469), - [anon_sym_template] = ACTIONS(3469), - [anon_sym_operator] = ACTIONS(3469), - [anon_sym_try] = ACTIONS(3469), - [anon_sym_delete] = ACTIONS(3469), - [anon_sym_throw] = ACTIONS(3469), - [anon_sym_namespace] = ACTIONS(3469), - [anon_sym_using] = ACTIONS(3469), - [anon_sym_static_assert] = ACTIONS(3469), - [anon_sym_concept] = ACTIONS(3469), - [anon_sym_co_return] = ACTIONS(3469), - [anon_sym_co_yield] = ACTIONS(3469), - [anon_sym_R_DQUOTE] = ACTIONS(3471), - [anon_sym_LR_DQUOTE] = ACTIONS(3471), - [anon_sym_uR_DQUOTE] = ACTIONS(3471), - [anon_sym_UR_DQUOTE] = ACTIONS(3471), - [anon_sym_u8R_DQUOTE] = ACTIONS(3471), - [anon_sym_co_await] = ACTIONS(3469), - [anon_sym_new] = ACTIONS(3469), - [anon_sym_requires] = ACTIONS(3469), - [sym_this] = ACTIONS(3469), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3471), - [sym_semgrep_named_ellipsis] = ACTIONS(3471), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(4059), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(4061), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(4063), + [anon_sym_static_assert] = ACTIONS(4065), + [sym_semgrep_metavar] = ACTIONS(4067), }, - [868] = { - [ts_builtin_sym_end] = ACTIONS(3475), - [sym_identifier] = ACTIONS(3473), - [aux_sym_preproc_include_token1] = ACTIONS(3473), - [aux_sym_preproc_def_token1] = ACTIONS(3473), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3475), - [aux_sym_preproc_if_token1] = ACTIONS(3473), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3473), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3473), - [sym_preproc_directive] = ACTIONS(3473), - [anon_sym_LPAREN2] = ACTIONS(3475), - [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(3475), - [anon_sym_DASH] = ACTIONS(3473), - [anon_sym_PLUS] = ACTIONS(3473), - [anon_sym_STAR] = ACTIONS(3475), - [anon_sym_AMP_AMP] = ACTIONS(3475), - [anon_sym_AMP] = ACTIONS(3473), - [anon_sym___extension__] = ACTIONS(3473), - [anon_sym_typedef] = ACTIONS(3473), - [anon_sym_extern] = ACTIONS(3473), - [anon_sym___attribute__] = ACTIONS(3473), - [anon_sym_COLON_COLON] = ACTIONS(3475), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3475), - [anon_sym___declspec] = ACTIONS(3473), - [anon_sym___based] = ACTIONS(3473), - [anon_sym___cdecl] = ACTIONS(3473), - [anon_sym___clrcall] = ACTIONS(3473), - [anon_sym___stdcall] = ACTIONS(3473), - [anon_sym___fastcall] = ACTIONS(3473), - [anon_sym___thiscall] = ACTIONS(3473), - [anon_sym___vectorcall] = ACTIONS(3473), - [anon_sym_LBRACE] = ACTIONS(3475), - [anon_sym_signed] = ACTIONS(3473), - [anon_sym_unsigned] = ACTIONS(3473), - [anon_sym_long] = ACTIONS(3473), - [anon_sym_short] = ACTIONS(3473), - [anon_sym_LBRACK] = ACTIONS(3473), - [anon_sym_static] = ACTIONS(3473), - [anon_sym_register] = ACTIONS(3473), - [anon_sym_inline] = ACTIONS(3473), - [anon_sym___inline] = ACTIONS(3473), - [anon_sym___inline__] = ACTIONS(3473), - [anon_sym___forceinline] = ACTIONS(3473), - [anon_sym_thread_local] = ACTIONS(3473), - [anon_sym___thread] = ACTIONS(3473), - [anon_sym_const] = ACTIONS(3473), - [anon_sym_constexpr] = ACTIONS(3473), - [anon_sym_volatile] = ACTIONS(3473), - [anon_sym_restrict] = ACTIONS(3473), - [anon_sym___restrict__] = ACTIONS(3473), - [anon_sym__Atomic] = ACTIONS(3473), - [anon_sym__Noreturn] = ACTIONS(3473), - [anon_sym_noreturn] = ACTIONS(3473), - [anon_sym_mutable] = ACTIONS(3473), - [anon_sym_constinit] = ACTIONS(3473), - [anon_sym_consteval] = ACTIONS(3473), - [sym_primitive_type] = ACTIONS(3473), - [anon_sym_enum] = ACTIONS(3473), - [anon_sym_class] = ACTIONS(3473), - [anon_sym_struct] = ACTIONS(3473), - [anon_sym_union] = ACTIONS(3473), - [anon_sym_if] = ACTIONS(3473), - [anon_sym_switch] = ACTIONS(3473), - [anon_sym_case] = ACTIONS(3473), - [anon_sym_default] = ACTIONS(3473), - [anon_sym_while] = ACTIONS(3473), - [anon_sym_do] = ACTIONS(3473), - [anon_sym_for] = ACTIONS(3473), - [anon_sym_return] = ACTIONS(3473), - [anon_sym_break] = ACTIONS(3473), - [anon_sym_continue] = ACTIONS(3473), - [anon_sym_goto] = ACTIONS(3473), - [anon_sym_not] = ACTIONS(3473), - [anon_sym_compl] = ACTIONS(3473), - [anon_sym_DASH_DASH] = ACTIONS(3475), - [anon_sym_PLUS_PLUS] = ACTIONS(3475), - [anon_sym_sizeof] = ACTIONS(3473), - [anon_sym___alignof__] = ACTIONS(3473), - [anon_sym___alignof] = ACTIONS(3473), - [anon_sym__alignof] = ACTIONS(3473), - [anon_sym_alignof] = ACTIONS(3473), - [anon_sym__Alignof] = ACTIONS(3473), - [anon_sym_offsetof] = ACTIONS(3473), - [anon_sym__Generic] = ACTIONS(3473), - [anon_sym_asm] = ACTIONS(3473), - [anon_sym___asm__] = ACTIONS(3473), - [sym_number_literal] = ACTIONS(3475), - [anon_sym_L_SQUOTE] = ACTIONS(3475), - [anon_sym_u_SQUOTE] = ACTIONS(3475), - [anon_sym_U_SQUOTE] = ACTIONS(3475), - [anon_sym_u8_SQUOTE] = ACTIONS(3475), - [anon_sym_SQUOTE] = ACTIONS(3475), - [anon_sym_L_DQUOTE] = ACTIONS(3475), - [anon_sym_u_DQUOTE] = ACTIONS(3475), - [anon_sym_U_DQUOTE] = ACTIONS(3475), - [anon_sym_u8_DQUOTE] = ACTIONS(3475), - [anon_sym_DQUOTE] = ACTIONS(3475), - [sym_true] = ACTIONS(3473), - [sym_false] = ACTIONS(3473), - [anon_sym_NULL] = ACTIONS(3473), - [anon_sym_nullptr] = ACTIONS(3473), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3473), - [anon_sym_decltype] = ACTIONS(3473), - [anon_sym_virtual] = ACTIONS(3473), - [anon_sym_alignas] = ACTIONS(3473), - [anon_sym_explicit] = ACTIONS(3473), - [anon_sym_typename] = ACTIONS(3473), - [anon_sym_template] = ACTIONS(3473), - [anon_sym_operator] = ACTIONS(3473), - [anon_sym_try] = ACTIONS(3473), - [anon_sym_delete] = ACTIONS(3473), - [anon_sym_throw] = ACTIONS(3473), - [anon_sym_namespace] = ACTIONS(3473), - [anon_sym_using] = ACTIONS(3473), - [anon_sym_static_assert] = ACTIONS(3473), - [anon_sym_concept] = ACTIONS(3473), - [anon_sym_co_return] = ACTIONS(3473), - [anon_sym_co_yield] = ACTIONS(3473), - [anon_sym_R_DQUOTE] = ACTIONS(3475), - [anon_sym_LR_DQUOTE] = ACTIONS(3475), - [anon_sym_uR_DQUOTE] = ACTIONS(3475), - [anon_sym_UR_DQUOTE] = ACTIONS(3475), - [anon_sym_u8R_DQUOTE] = ACTIONS(3475), - [anon_sym_co_await] = ACTIONS(3473), - [anon_sym_new] = ACTIONS(3473), - [anon_sym_requires] = ACTIONS(3473), - [sym_this] = ACTIONS(3473), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3475), - [sym_semgrep_named_ellipsis] = ACTIONS(3475), + [852] = { + [sym_preproc_def] = STATE(2347), + [sym_preproc_function_def] = STATE(2347), + [sym_preproc_call] = STATE(2347), + [sym_preproc_if_in_field_declaration_list] = STATE(2347), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2347), + [sym_type_definition] = STATE(2347), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6437), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7306), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(855), + [sym_field_declaration] = STATE(2347), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2347), + [sym_operator_cast] = STATE(7731), + [sym_inline_method_definition] = STATE(2347), + [sym_constructor_specifiers] = STATE(1938), + [sym_operator_cast_definition] = STATE(2347), + [sym_operator_cast_declaration] = STATE(2347), + [sym_constructor_or_destructor_definition] = STATE(2347), + [sym_constructor_or_destructor_declaration] = STATE(2347), + [sym_friend_declaration] = STATE(2347), + [sym_access_specifier] = STATE(10086), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2347), + [sym_alias_declaration] = STATE(2347), + [sym_static_assert_declaration] = STATE(2347), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7731), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2347), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(855), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1938), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(4041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4043), + [aux_sym_preproc_if_token1] = ACTIONS(4045), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4049), + [sym_preproc_directive] = ACTIONS(4051), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(4053), + [anon_sym_typedef] = ACTIONS(4055), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(4137), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(4059), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(4061), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(4063), + [anon_sym_static_assert] = ACTIONS(4065), + [sym_semgrep_metavar] = ACTIONS(4067), }, - [869] = { - [ts_builtin_sym_end] = ACTIONS(3251), - [sym_identifier] = ACTIONS(3249), - [aux_sym_preproc_include_token1] = ACTIONS(3249), - [aux_sym_preproc_def_token1] = ACTIONS(3249), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3251), - [aux_sym_preproc_if_token1] = ACTIONS(3249), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3249), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3249), - [sym_preproc_directive] = ACTIONS(3249), + [853] = { + [ts_builtin_sym_end] = ACTIONS(3579), + [sym_identifier] = ACTIONS(3577), + [aux_sym_preproc_include_token1] = ACTIONS(3577), + [aux_sym_preproc_def_token1] = ACTIONS(3577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3579), + [aux_sym_preproc_if_token1] = ACTIONS(3577), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3577), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3577), + [sym_preproc_directive] = ACTIONS(3577), + [anon_sym_LPAREN2] = ACTIONS(3579), + [anon_sym_BANG] = ACTIONS(3579), + [anon_sym_TILDE] = ACTIONS(3579), + [anon_sym_DASH] = ACTIONS(3577), + [anon_sym_PLUS] = ACTIONS(3577), + [anon_sym_STAR] = ACTIONS(3579), + [anon_sym_AMP_AMP] = ACTIONS(3579), + [anon_sym_AMP] = ACTIONS(3577), + [anon_sym___extension__] = ACTIONS(3577), + [anon_sym_typedef] = ACTIONS(3577), + [anon_sym_extern] = ACTIONS(3577), + [anon_sym___attribute__] = ACTIONS(3577), + [anon_sym_COLON_COLON] = ACTIONS(3579), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3579), + [anon_sym___declspec] = ACTIONS(3577), + [anon_sym___based] = ACTIONS(3577), + [anon_sym___cdecl] = ACTIONS(3577), + [anon_sym___clrcall] = ACTIONS(3577), + [anon_sym___stdcall] = ACTIONS(3577), + [anon_sym___fastcall] = ACTIONS(3577), + [anon_sym___thiscall] = ACTIONS(3577), + [anon_sym___vectorcall] = ACTIONS(3577), + [anon_sym_LBRACE] = ACTIONS(3579), + [anon_sym_signed] = ACTIONS(3577), + [anon_sym_unsigned] = ACTIONS(3577), + [anon_sym_long] = ACTIONS(3577), + [anon_sym_short] = ACTIONS(3577), + [anon_sym_LBRACK] = ACTIONS(3577), + [anon_sym_static] = ACTIONS(3577), + [anon_sym_register] = ACTIONS(3577), + [anon_sym_inline] = ACTIONS(3577), + [anon_sym___inline] = ACTIONS(3577), + [anon_sym___inline__] = ACTIONS(3577), + [anon_sym___forceinline] = ACTIONS(3577), + [anon_sym_thread_local] = ACTIONS(3577), + [anon_sym___thread] = ACTIONS(3577), + [anon_sym_const] = ACTIONS(3577), + [anon_sym_constexpr] = ACTIONS(3577), + [anon_sym_volatile] = ACTIONS(3577), + [anon_sym_restrict] = ACTIONS(3577), + [anon_sym___restrict__] = ACTIONS(3577), + [anon_sym__Atomic] = ACTIONS(3577), + [anon_sym__Noreturn] = ACTIONS(3577), + [anon_sym_noreturn] = ACTIONS(3577), + [anon_sym_mutable] = ACTIONS(3577), + [anon_sym_constinit] = ACTIONS(3577), + [anon_sym_consteval] = ACTIONS(3577), + [sym_primitive_type] = ACTIONS(3577), + [anon_sym_enum] = ACTIONS(3577), + [anon_sym_class] = ACTIONS(3577), + [anon_sym_struct] = ACTIONS(3577), + [anon_sym_union] = ACTIONS(3577), + [anon_sym_if] = ACTIONS(3577), + [anon_sym_switch] = ACTIONS(3577), + [anon_sym_case] = ACTIONS(3577), + [anon_sym_default] = ACTIONS(3577), + [anon_sym_while] = ACTIONS(3577), + [anon_sym_do] = ACTIONS(3577), + [anon_sym_for] = ACTIONS(3577), + [anon_sym_return] = ACTIONS(3577), + [anon_sym_break] = ACTIONS(3577), + [anon_sym_continue] = ACTIONS(3577), + [anon_sym_goto] = ACTIONS(3577), + [anon_sym_not] = ACTIONS(3577), + [anon_sym_compl] = ACTIONS(3577), + [anon_sym_DASH_DASH] = ACTIONS(3579), + [anon_sym_PLUS_PLUS] = ACTIONS(3579), + [anon_sym_sizeof] = ACTIONS(3577), + [anon_sym___alignof__] = ACTIONS(3577), + [anon_sym___alignof] = ACTIONS(3577), + [anon_sym__alignof] = ACTIONS(3577), + [anon_sym_alignof] = ACTIONS(3577), + [anon_sym__Alignof] = ACTIONS(3577), + [anon_sym_offsetof] = ACTIONS(3577), + [anon_sym__Generic] = ACTIONS(3577), + [anon_sym_asm] = ACTIONS(3577), + [anon_sym___asm__] = ACTIONS(3577), + [sym_number_literal] = ACTIONS(3579), + [anon_sym_L_SQUOTE] = ACTIONS(3579), + [anon_sym_u_SQUOTE] = ACTIONS(3579), + [anon_sym_U_SQUOTE] = ACTIONS(3579), + [anon_sym_u8_SQUOTE] = ACTIONS(3579), + [anon_sym_SQUOTE] = ACTIONS(3579), + [anon_sym_L_DQUOTE] = ACTIONS(3579), + [anon_sym_u_DQUOTE] = ACTIONS(3579), + [anon_sym_U_DQUOTE] = ACTIONS(3579), + [anon_sym_u8_DQUOTE] = ACTIONS(3579), + [anon_sym_DQUOTE] = ACTIONS(3579), + [sym_true] = ACTIONS(3577), + [sym_false] = ACTIONS(3577), + [anon_sym_NULL] = ACTIONS(3577), + [anon_sym_nullptr] = ACTIONS(3577), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3577), + [anon_sym_decltype] = ACTIONS(3577), + [anon_sym_virtual] = ACTIONS(3577), + [anon_sym_alignas] = ACTIONS(3577), + [anon_sym_explicit] = ACTIONS(3577), + [anon_sym_typename] = ACTIONS(3577), + [anon_sym_template] = ACTIONS(3577), + [anon_sym_operator] = ACTIONS(3577), + [anon_sym_try] = ACTIONS(3577), + [anon_sym_delete] = ACTIONS(3577), + [anon_sym_throw] = ACTIONS(3577), + [anon_sym_namespace] = ACTIONS(3577), + [anon_sym_using] = ACTIONS(3577), + [anon_sym_static_assert] = ACTIONS(3577), + [anon_sym_concept] = ACTIONS(3577), + [anon_sym_co_return] = ACTIONS(3577), + [anon_sym_co_yield] = ACTIONS(3577), + [anon_sym_R_DQUOTE] = ACTIONS(3579), + [anon_sym_LR_DQUOTE] = ACTIONS(3579), + [anon_sym_uR_DQUOTE] = ACTIONS(3579), + [anon_sym_UR_DQUOTE] = ACTIONS(3579), + [anon_sym_u8R_DQUOTE] = ACTIONS(3579), + [anon_sym_co_await] = ACTIONS(3577), + [anon_sym_new] = ACTIONS(3577), + [anon_sym_requires] = ACTIONS(3577), + [sym_this] = ACTIONS(3577), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3579), + [sym_semgrep_named_ellipsis] = ACTIONS(3579), + }, + [854] = { + [sym_preproc_def] = STATE(2347), + [sym_preproc_function_def] = STATE(2347), + [sym_preproc_call] = STATE(2347), + [sym_preproc_if_in_field_declaration_list] = STATE(2347), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2347), + [sym_type_definition] = STATE(2347), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6437), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7306), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(868), + [sym_field_declaration] = STATE(2347), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2347), + [sym_operator_cast] = STATE(7731), + [sym_inline_method_definition] = STATE(2347), + [sym_constructor_specifiers] = STATE(1938), + [sym_operator_cast_definition] = STATE(2347), + [sym_operator_cast_declaration] = STATE(2347), + [sym_constructor_or_destructor_definition] = STATE(2347), + [sym_constructor_or_destructor_declaration] = STATE(2347), + [sym_friend_declaration] = STATE(2347), + [sym_access_specifier] = STATE(10086), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2347), + [sym_alias_declaration] = STATE(2347), + [sym_static_assert_declaration] = STATE(2347), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7731), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2347), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(868), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1938), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(4041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4043), + [aux_sym_preproc_if_token1] = ACTIONS(4045), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4049), + [sym_preproc_directive] = ACTIONS(4051), [anon_sym_LPAREN2] = ACTIONS(3251), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_TILDE] = ACTIONS(3251), - [anon_sym_DASH] = ACTIONS(3249), - [anon_sym_PLUS] = ACTIONS(3249), - [anon_sym_STAR] = ACTIONS(3251), - [anon_sym_AMP_AMP] = ACTIONS(3251), - [anon_sym_AMP] = ACTIONS(3249), - [anon_sym___extension__] = ACTIONS(3249), - [anon_sym_typedef] = ACTIONS(3249), - [anon_sym_extern] = ACTIONS(3249), - [anon_sym___attribute__] = ACTIONS(3249), - [anon_sym_COLON_COLON] = ACTIONS(3251), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3251), - [anon_sym___declspec] = ACTIONS(3249), - [anon_sym___based] = ACTIONS(3249), - [anon_sym___cdecl] = ACTIONS(3249), - [anon_sym___clrcall] = ACTIONS(3249), - [anon_sym___stdcall] = ACTIONS(3249), - [anon_sym___fastcall] = ACTIONS(3249), - [anon_sym___thiscall] = ACTIONS(3249), - [anon_sym___vectorcall] = ACTIONS(3249), - [anon_sym_LBRACE] = ACTIONS(3251), - [anon_sym_signed] = ACTIONS(3249), - [anon_sym_unsigned] = ACTIONS(3249), - [anon_sym_long] = ACTIONS(3249), - [anon_sym_short] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_static] = ACTIONS(3249), - [anon_sym_register] = ACTIONS(3249), - [anon_sym_inline] = ACTIONS(3249), - [anon_sym___inline] = ACTIONS(3249), - [anon_sym___inline__] = ACTIONS(3249), - [anon_sym___forceinline] = ACTIONS(3249), - [anon_sym_thread_local] = ACTIONS(3249), - [anon_sym___thread] = ACTIONS(3249), - [anon_sym_const] = ACTIONS(3249), - [anon_sym_constexpr] = ACTIONS(3249), - [anon_sym_volatile] = ACTIONS(3249), - [anon_sym_restrict] = ACTIONS(3249), - [anon_sym___restrict__] = ACTIONS(3249), - [anon_sym__Atomic] = ACTIONS(3249), - [anon_sym__Noreturn] = ACTIONS(3249), - [anon_sym_noreturn] = ACTIONS(3249), - [anon_sym_mutable] = ACTIONS(3249), - [anon_sym_constinit] = ACTIONS(3249), - [anon_sym_consteval] = ACTIONS(3249), - [sym_primitive_type] = ACTIONS(3249), - [anon_sym_enum] = ACTIONS(3249), - [anon_sym_class] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3249), - [anon_sym_if] = ACTIONS(3249), - [anon_sym_switch] = ACTIONS(3249), - [anon_sym_case] = ACTIONS(3249), - [anon_sym_default] = ACTIONS(3249), - [anon_sym_while] = ACTIONS(3249), - [anon_sym_do] = ACTIONS(3249), - [anon_sym_for] = ACTIONS(3249), - [anon_sym_return] = ACTIONS(3249), - [anon_sym_break] = ACTIONS(3249), - [anon_sym_continue] = ACTIONS(3249), - [anon_sym_goto] = ACTIONS(3249), - [anon_sym_not] = ACTIONS(3249), - [anon_sym_compl] = ACTIONS(3249), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_sizeof] = ACTIONS(3249), - [anon_sym___alignof__] = ACTIONS(3249), - [anon_sym___alignof] = ACTIONS(3249), - [anon_sym__alignof] = ACTIONS(3249), - [anon_sym_alignof] = ACTIONS(3249), - [anon_sym__Alignof] = ACTIONS(3249), - [anon_sym_offsetof] = ACTIONS(3249), - [anon_sym__Generic] = ACTIONS(3249), - [anon_sym_asm] = ACTIONS(3249), - [anon_sym___asm__] = ACTIONS(3249), - [sym_number_literal] = ACTIONS(3251), - [anon_sym_L_SQUOTE] = ACTIONS(3251), - [anon_sym_u_SQUOTE] = ACTIONS(3251), - [anon_sym_U_SQUOTE] = ACTIONS(3251), - [anon_sym_u8_SQUOTE] = ACTIONS(3251), - [anon_sym_SQUOTE] = ACTIONS(3251), - [anon_sym_L_DQUOTE] = ACTIONS(3251), - [anon_sym_u_DQUOTE] = ACTIONS(3251), - [anon_sym_U_DQUOTE] = ACTIONS(3251), - [anon_sym_u8_DQUOTE] = ACTIONS(3251), - [anon_sym_DQUOTE] = ACTIONS(3251), - [sym_true] = ACTIONS(3249), - [sym_false] = ACTIONS(3249), - [anon_sym_NULL] = ACTIONS(3249), - [anon_sym_nullptr] = ACTIONS(3249), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3249), - [anon_sym_decltype] = ACTIONS(3249), - [anon_sym_virtual] = ACTIONS(3249), - [anon_sym_alignas] = ACTIONS(3249), - [anon_sym_explicit] = ACTIONS(3249), - [anon_sym_typename] = ACTIONS(3249), - [anon_sym_template] = ACTIONS(3249), - [anon_sym_operator] = ACTIONS(3249), - [anon_sym_try] = ACTIONS(3249), - [anon_sym_delete] = ACTIONS(3249), - [anon_sym_throw] = ACTIONS(3249), - [anon_sym_namespace] = ACTIONS(3249), - [anon_sym_using] = ACTIONS(3249), - [anon_sym_static_assert] = ACTIONS(3249), - [anon_sym_concept] = ACTIONS(3249), - [anon_sym_co_return] = ACTIONS(3249), - [anon_sym_co_yield] = ACTIONS(3249), - [anon_sym_R_DQUOTE] = ACTIONS(3251), - [anon_sym_LR_DQUOTE] = ACTIONS(3251), - [anon_sym_uR_DQUOTE] = ACTIONS(3251), - [anon_sym_UR_DQUOTE] = ACTIONS(3251), - [anon_sym_u8R_DQUOTE] = ACTIONS(3251), - [anon_sym_co_await] = ACTIONS(3249), - [anon_sym_new] = ACTIONS(3249), - [anon_sym_requires] = ACTIONS(3249), - [sym_this] = ACTIONS(3249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3251), - [sym_semgrep_named_ellipsis] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(4053), + [anon_sym_typedef] = ACTIONS(4055), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(4139), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(4059), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(4061), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(4063), + [anon_sym_static_assert] = ACTIONS(4065), + [sym_semgrep_metavar] = ACTIONS(4067), }, - [870] = { - [ts_builtin_sym_end] = ACTIONS(3479), - [sym_identifier] = ACTIONS(3477), - [aux_sym_preproc_include_token1] = ACTIONS(3477), - [aux_sym_preproc_def_token1] = ACTIONS(3477), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3479), - [aux_sym_preproc_if_token1] = ACTIONS(3477), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3477), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3477), - [sym_preproc_directive] = ACTIONS(3477), - [anon_sym_LPAREN2] = ACTIONS(3479), - [anon_sym_BANG] = ACTIONS(3479), - [anon_sym_TILDE] = ACTIONS(3479), - [anon_sym_DASH] = ACTIONS(3477), - [anon_sym_PLUS] = ACTIONS(3477), - [anon_sym_STAR] = ACTIONS(3479), - [anon_sym_AMP_AMP] = ACTIONS(3479), - [anon_sym_AMP] = ACTIONS(3477), - [anon_sym___extension__] = ACTIONS(3477), - [anon_sym_typedef] = ACTIONS(3477), - [anon_sym_extern] = ACTIONS(3477), - [anon_sym___attribute__] = ACTIONS(3477), - [anon_sym_COLON_COLON] = ACTIONS(3479), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3479), - [anon_sym___declspec] = ACTIONS(3477), - [anon_sym___based] = ACTIONS(3477), - [anon_sym___cdecl] = ACTIONS(3477), - [anon_sym___clrcall] = ACTIONS(3477), - [anon_sym___stdcall] = ACTIONS(3477), - [anon_sym___fastcall] = ACTIONS(3477), - [anon_sym___thiscall] = ACTIONS(3477), - [anon_sym___vectorcall] = ACTIONS(3477), - [anon_sym_LBRACE] = ACTIONS(3479), - [anon_sym_signed] = ACTIONS(3477), - [anon_sym_unsigned] = ACTIONS(3477), - [anon_sym_long] = ACTIONS(3477), - [anon_sym_short] = ACTIONS(3477), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_static] = ACTIONS(3477), - [anon_sym_register] = ACTIONS(3477), - [anon_sym_inline] = ACTIONS(3477), - [anon_sym___inline] = ACTIONS(3477), - [anon_sym___inline__] = ACTIONS(3477), - [anon_sym___forceinline] = ACTIONS(3477), - [anon_sym_thread_local] = ACTIONS(3477), - [anon_sym___thread] = ACTIONS(3477), - [anon_sym_const] = ACTIONS(3477), - [anon_sym_constexpr] = ACTIONS(3477), - [anon_sym_volatile] = ACTIONS(3477), - [anon_sym_restrict] = ACTIONS(3477), - [anon_sym___restrict__] = ACTIONS(3477), - [anon_sym__Atomic] = ACTIONS(3477), - [anon_sym__Noreturn] = ACTIONS(3477), - [anon_sym_noreturn] = ACTIONS(3477), - [anon_sym_mutable] = ACTIONS(3477), - [anon_sym_constinit] = ACTIONS(3477), - [anon_sym_consteval] = ACTIONS(3477), - [sym_primitive_type] = ACTIONS(3477), - [anon_sym_enum] = ACTIONS(3477), - [anon_sym_class] = ACTIONS(3477), - [anon_sym_struct] = ACTIONS(3477), - [anon_sym_union] = ACTIONS(3477), - [anon_sym_if] = ACTIONS(3477), - [anon_sym_switch] = ACTIONS(3477), - [anon_sym_case] = ACTIONS(3477), - [anon_sym_default] = ACTIONS(3477), - [anon_sym_while] = ACTIONS(3477), - [anon_sym_do] = ACTIONS(3477), - [anon_sym_for] = ACTIONS(3477), - [anon_sym_return] = ACTIONS(3477), - [anon_sym_break] = ACTIONS(3477), - [anon_sym_continue] = ACTIONS(3477), - [anon_sym_goto] = ACTIONS(3477), - [anon_sym_not] = ACTIONS(3477), - [anon_sym_compl] = ACTIONS(3477), - [anon_sym_DASH_DASH] = ACTIONS(3479), - [anon_sym_PLUS_PLUS] = ACTIONS(3479), - [anon_sym_sizeof] = ACTIONS(3477), - [anon_sym___alignof__] = ACTIONS(3477), - [anon_sym___alignof] = ACTIONS(3477), - [anon_sym__alignof] = ACTIONS(3477), - [anon_sym_alignof] = ACTIONS(3477), - [anon_sym__Alignof] = ACTIONS(3477), - [anon_sym_offsetof] = ACTIONS(3477), - [anon_sym__Generic] = ACTIONS(3477), - [anon_sym_asm] = ACTIONS(3477), - [anon_sym___asm__] = ACTIONS(3477), - [sym_number_literal] = ACTIONS(3479), - [anon_sym_L_SQUOTE] = ACTIONS(3479), - [anon_sym_u_SQUOTE] = ACTIONS(3479), - [anon_sym_U_SQUOTE] = ACTIONS(3479), - [anon_sym_u8_SQUOTE] = ACTIONS(3479), - [anon_sym_SQUOTE] = ACTIONS(3479), - [anon_sym_L_DQUOTE] = ACTIONS(3479), - [anon_sym_u_DQUOTE] = ACTIONS(3479), - [anon_sym_U_DQUOTE] = ACTIONS(3479), - [anon_sym_u8_DQUOTE] = ACTIONS(3479), - [anon_sym_DQUOTE] = ACTIONS(3479), - [sym_true] = ACTIONS(3477), - [sym_false] = ACTIONS(3477), - [anon_sym_NULL] = ACTIONS(3477), - [anon_sym_nullptr] = ACTIONS(3477), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3477), - [anon_sym_decltype] = ACTIONS(3477), - [anon_sym_virtual] = ACTIONS(3477), - [anon_sym_alignas] = ACTIONS(3477), - [anon_sym_explicit] = ACTIONS(3477), - [anon_sym_typename] = ACTIONS(3477), - [anon_sym_template] = ACTIONS(3477), - [anon_sym_operator] = ACTIONS(3477), - [anon_sym_try] = ACTIONS(3477), - [anon_sym_delete] = ACTIONS(3477), - [anon_sym_throw] = ACTIONS(3477), - [anon_sym_namespace] = ACTIONS(3477), - [anon_sym_using] = ACTIONS(3477), - [anon_sym_static_assert] = ACTIONS(3477), - [anon_sym_concept] = ACTIONS(3477), - [anon_sym_co_return] = ACTIONS(3477), - [anon_sym_co_yield] = ACTIONS(3477), - [anon_sym_R_DQUOTE] = ACTIONS(3479), - [anon_sym_LR_DQUOTE] = ACTIONS(3479), - [anon_sym_uR_DQUOTE] = ACTIONS(3479), - [anon_sym_UR_DQUOTE] = ACTIONS(3479), - [anon_sym_u8R_DQUOTE] = ACTIONS(3479), - [anon_sym_co_await] = ACTIONS(3477), - [anon_sym_new] = ACTIONS(3477), - [anon_sym_requires] = ACTIONS(3477), - [sym_this] = ACTIONS(3477), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3479), - [sym_semgrep_named_ellipsis] = ACTIONS(3479), + [855] = { + [sym_preproc_def] = STATE(2347), + [sym_preproc_function_def] = STATE(2347), + [sym_preproc_call] = STATE(2347), + [sym_preproc_if_in_field_declaration_list] = STATE(2347), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2347), + [sym_type_definition] = STATE(2347), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6437), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7306), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(868), + [sym_field_declaration] = STATE(2347), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2347), + [sym_operator_cast] = STATE(7731), + [sym_inline_method_definition] = STATE(2347), + [sym_constructor_specifiers] = STATE(1938), + [sym_operator_cast_definition] = STATE(2347), + [sym_operator_cast_declaration] = STATE(2347), + [sym_constructor_or_destructor_definition] = STATE(2347), + [sym_constructor_or_destructor_declaration] = STATE(2347), + [sym_friend_declaration] = STATE(2347), + [sym_access_specifier] = STATE(10086), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2347), + [sym_alias_declaration] = STATE(2347), + [sym_static_assert_declaration] = STATE(2347), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7731), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2347), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(868), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1938), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(4041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4043), + [aux_sym_preproc_if_token1] = ACTIONS(4045), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4049), + [sym_preproc_directive] = ACTIONS(4051), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(4053), + [anon_sym_typedef] = ACTIONS(4055), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(4141), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(4059), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(4061), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(4063), + [anon_sym_static_assert] = ACTIONS(4065), + [sym_semgrep_metavar] = ACTIONS(4067), }, - [871] = { - [ts_builtin_sym_end] = ACTIONS(3650), - [sym_identifier] = ACTIONS(3648), - [aux_sym_preproc_include_token1] = ACTIONS(3648), - [aux_sym_preproc_def_token1] = ACTIONS(3648), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3650), - [aux_sym_preproc_if_token1] = ACTIONS(3648), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3648), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3648), - [sym_preproc_directive] = ACTIONS(3648), - [anon_sym_LPAREN2] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3650), - [anon_sym_TILDE] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_AMP_AMP] = ACTIONS(3650), - [anon_sym_AMP] = ACTIONS(3648), - [anon_sym___extension__] = ACTIONS(3648), - [anon_sym_typedef] = ACTIONS(3648), - [anon_sym_extern] = ACTIONS(3648), - [anon_sym___attribute__] = ACTIONS(3648), - [anon_sym_COLON_COLON] = ACTIONS(3650), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3650), - [anon_sym___declspec] = ACTIONS(3648), - [anon_sym___based] = ACTIONS(3648), - [anon_sym___cdecl] = ACTIONS(3648), - [anon_sym___clrcall] = ACTIONS(3648), - [anon_sym___stdcall] = ACTIONS(3648), - [anon_sym___fastcall] = ACTIONS(3648), - [anon_sym___thiscall] = ACTIONS(3648), - [anon_sym___vectorcall] = ACTIONS(3648), - [anon_sym_LBRACE] = ACTIONS(3650), - [anon_sym_signed] = ACTIONS(3648), - [anon_sym_unsigned] = ACTIONS(3648), - [anon_sym_long] = ACTIONS(3648), - [anon_sym_short] = ACTIONS(3648), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_static] = ACTIONS(3648), - [anon_sym_register] = ACTIONS(3648), - [anon_sym_inline] = ACTIONS(3648), - [anon_sym___inline] = ACTIONS(3648), - [anon_sym___inline__] = ACTIONS(3648), - [anon_sym___forceinline] = ACTIONS(3648), - [anon_sym_thread_local] = ACTIONS(3648), - [anon_sym___thread] = ACTIONS(3648), - [anon_sym_const] = ACTIONS(3648), - [anon_sym_constexpr] = ACTIONS(3648), - [anon_sym_volatile] = ACTIONS(3648), - [anon_sym_restrict] = ACTIONS(3648), - [anon_sym___restrict__] = ACTIONS(3648), - [anon_sym__Atomic] = ACTIONS(3648), - [anon_sym__Noreturn] = ACTIONS(3648), - [anon_sym_noreturn] = ACTIONS(3648), - [anon_sym_mutable] = ACTIONS(3648), - [anon_sym_constinit] = ACTIONS(3648), - [anon_sym_consteval] = ACTIONS(3648), - [sym_primitive_type] = ACTIONS(3648), - [anon_sym_enum] = ACTIONS(3648), - [anon_sym_class] = ACTIONS(3648), - [anon_sym_struct] = ACTIONS(3648), - [anon_sym_union] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3648), - [anon_sym_switch] = ACTIONS(3648), - [anon_sym_case] = ACTIONS(3648), - [anon_sym_default] = ACTIONS(3648), - [anon_sym_while] = ACTIONS(3648), - [anon_sym_do] = ACTIONS(3648), - [anon_sym_for] = ACTIONS(3648), - [anon_sym_return] = ACTIONS(3648), - [anon_sym_break] = ACTIONS(3648), - [anon_sym_continue] = ACTIONS(3648), - [anon_sym_goto] = ACTIONS(3648), - [anon_sym_not] = ACTIONS(3648), - [anon_sym_compl] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3650), - [anon_sym_sizeof] = ACTIONS(3648), - [anon_sym___alignof__] = ACTIONS(3648), - [anon_sym___alignof] = ACTIONS(3648), - [anon_sym__alignof] = ACTIONS(3648), - [anon_sym_alignof] = ACTIONS(3648), - [anon_sym__Alignof] = ACTIONS(3648), - [anon_sym_offsetof] = ACTIONS(3648), - [anon_sym__Generic] = ACTIONS(3648), - [anon_sym_asm] = ACTIONS(3648), - [anon_sym___asm__] = ACTIONS(3648), - [sym_number_literal] = ACTIONS(3650), - [anon_sym_L_SQUOTE] = ACTIONS(3650), - [anon_sym_u_SQUOTE] = ACTIONS(3650), - [anon_sym_U_SQUOTE] = ACTIONS(3650), - [anon_sym_u8_SQUOTE] = ACTIONS(3650), - [anon_sym_SQUOTE] = ACTIONS(3650), - [anon_sym_L_DQUOTE] = ACTIONS(3650), - [anon_sym_u_DQUOTE] = ACTIONS(3650), - [anon_sym_U_DQUOTE] = ACTIONS(3650), - [anon_sym_u8_DQUOTE] = ACTIONS(3650), - [anon_sym_DQUOTE] = ACTIONS(3650), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [anon_sym_NULL] = ACTIONS(3648), - [anon_sym_nullptr] = ACTIONS(3648), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3648), - [anon_sym_decltype] = ACTIONS(3648), - [anon_sym_virtual] = ACTIONS(3648), - [anon_sym_alignas] = ACTIONS(3648), - [anon_sym_explicit] = ACTIONS(3648), - [anon_sym_typename] = ACTIONS(3648), - [anon_sym_template] = ACTIONS(3648), - [anon_sym_operator] = ACTIONS(3648), - [anon_sym_try] = ACTIONS(3648), - [anon_sym_delete] = ACTIONS(3648), - [anon_sym_throw] = ACTIONS(3648), - [anon_sym_namespace] = ACTIONS(3648), - [anon_sym_using] = ACTIONS(3648), - [anon_sym_static_assert] = ACTIONS(3648), - [anon_sym_concept] = ACTIONS(3648), - [anon_sym_co_return] = ACTIONS(3648), - [anon_sym_co_yield] = ACTIONS(3648), - [anon_sym_R_DQUOTE] = ACTIONS(3650), - [anon_sym_LR_DQUOTE] = ACTIONS(3650), - [anon_sym_uR_DQUOTE] = ACTIONS(3650), - [anon_sym_UR_DQUOTE] = ACTIONS(3650), - [anon_sym_u8R_DQUOTE] = ACTIONS(3650), - [anon_sym_co_await] = ACTIONS(3648), - [anon_sym_new] = ACTIONS(3648), - [anon_sym_requires] = ACTIONS(3648), - [sym_this] = ACTIONS(3648), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3650), - [sym_semgrep_named_ellipsis] = ACTIONS(3650), + [856] = { + [ts_builtin_sym_end] = ACTIONS(3386), + [sym_identifier] = ACTIONS(3384), + [aux_sym_preproc_include_token1] = ACTIONS(3384), + [aux_sym_preproc_def_token1] = ACTIONS(3384), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3386), + [aux_sym_preproc_if_token1] = ACTIONS(3384), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3384), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3384), + [sym_preproc_directive] = ACTIONS(3384), + [anon_sym_LPAREN2] = ACTIONS(3386), + [anon_sym_BANG] = ACTIONS(3386), + [anon_sym_TILDE] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3384), + [anon_sym_PLUS] = ACTIONS(3384), + [anon_sym_STAR] = ACTIONS(3386), + [anon_sym_AMP_AMP] = ACTIONS(3386), + [anon_sym_AMP] = ACTIONS(3384), + [anon_sym___extension__] = ACTIONS(3384), + [anon_sym_typedef] = ACTIONS(3384), + [anon_sym_extern] = ACTIONS(3384), + [anon_sym___attribute__] = ACTIONS(3384), + [anon_sym_COLON_COLON] = ACTIONS(3386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3386), + [anon_sym___declspec] = ACTIONS(3384), + [anon_sym___based] = ACTIONS(3384), + [anon_sym___cdecl] = ACTIONS(3384), + [anon_sym___clrcall] = ACTIONS(3384), + [anon_sym___stdcall] = ACTIONS(3384), + [anon_sym___fastcall] = ACTIONS(3384), + [anon_sym___thiscall] = ACTIONS(3384), + [anon_sym___vectorcall] = ACTIONS(3384), + [anon_sym_LBRACE] = ACTIONS(3386), + [anon_sym_signed] = ACTIONS(3384), + [anon_sym_unsigned] = ACTIONS(3384), + [anon_sym_long] = ACTIONS(3384), + [anon_sym_short] = ACTIONS(3384), + [anon_sym_LBRACK] = ACTIONS(3384), + [anon_sym_static] = ACTIONS(3384), + [anon_sym_register] = ACTIONS(3384), + [anon_sym_inline] = ACTIONS(3384), + [anon_sym___inline] = ACTIONS(3384), + [anon_sym___inline__] = ACTIONS(3384), + [anon_sym___forceinline] = ACTIONS(3384), + [anon_sym_thread_local] = ACTIONS(3384), + [anon_sym___thread] = ACTIONS(3384), + [anon_sym_const] = ACTIONS(3384), + [anon_sym_constexpr] = ACTIONS(3384), + [anon_sym_volatile] = ACTIONS(3384), + [anon_sym_restrict] = ACTIONS(3384), + [anon_sym___restrict__] = ACTIONS(3384), + [anon_sym__Atomic] = ACTIONS(3384), + [anon_sym__Noreturn] = ACTIONS(3384), + [anon_sym_noreturn] = ACTIONS(3384), + [anon_sym_mutable] = ACTIONS(3384), + [anon_sym_constinit] = ACTIONS(3384), + [anon_sym_consteval] = ACTIONS(3384), + [sym_primitive_type] = ACTIONS(3384), + [anon_sym_enum] = ACTIONS(3384), + [anon_sym_class] = ACTIONS(3384), + [anon_sym_struct] = ACTIONS(3384), + [anon_sym_union] = ACTIONS(3384), + [anon_sym_if] = ACTIONS(3384), + [anon_sym_switch] = ACTIONS(3384), + [anon_sym_case] = ACTIONS(3384), + [anon_sym_default] = ACTIONS(3384), + [anon_sym_while] = ACTIONS(3384), + [anon_sym_do] = ACTIONS(3384), + [anon_sym_for] = ACTIONS(3384), + [anon_sym_return] = ACTIONS(3384), + [anon_sym_break] = ACTIONS(3384), + [anon_sym_continue] = ACTIONS(3384), + [anon_sym_goto] = ACTIONS(3384), + [anon_sym_not] = ACTIONS(3384), + [anon_sym_compl] = ACTIONS(3384), + [anon_sym_DASH_DASH] = ACTIONS(3386), + [anon_sym_PLUS_PLUS] = ACTIONS(3386), + [anon_sym_sizeof] = ACTIONS(3384), + [anon_sym___alignof__] = ACTIONS(3384), + [anon_sym___alignof] = ACTIONS(3384), + [anon_sym__alignof] = ACTIONS(3384), + [anon_sym_alignof] = ACTIONS(3384), + [anon_sym__Alignof] = ACTIONS(3384), + [anon_sym_offsetof] = ACTIONS(3384), + [anon_sym__Generic] = ACTIONS(3384), + [anon_sym_asm] = ACTIONS(3384), + [anon_sym___asm__] = ACTIONS(3384), + [sym_number_literal] = ACTIONS(3386), + [anon_sym_L_SQUOTE] = ACTIONS(3386), + [anon_sym_u_SQUOTE] = ACTIONS(3386), + [anon_sym_U_SQUOTE] = ACTIONS(3386), + [anon_sym_u8_SQUOTE] = ACTIONS(3386), + [anon_sym_SQUOTE] = ACTIONS(3386), + [anon_sym_L_DQUOTE] = ACTIONS(3386), + [anon_sym_u_DQUOTE] = ACTIONS(3386), + [anon_sym_U_DQUOTE] = ACTIONS(3386), + [anon_sym_u8_DQUOTE] = ACTIONS(3386), + [anon_sym_DQUOTE] = ACTIONS(3386), + [sym_true] = ACTIONS(3384), + [sym_false] = ACTIONS(3384), + [anon_sym_NULL] = ACTIONS(3384), + [anon_sym_nullptr] = ACTIONS(3384), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3384), + [anon_sym_decltype] = ACTIONS(3384), + [anon_sym_virtual] = ACTIONS(3384), + [anon_sym_alignas] = ACTIONS(3384), + [anon_sym_explicit] = ACTIONS(3384), + [anon_sym_typename] = ACTIONS(3384), + [anon_sym_template] = ACTIONS(3384), + [anon_sym_operator] = ACTIONS(3384), + [anon_sym_try] = ACTIONS(3384), + [anon_sym_delete] = ACTIONS(3384), + [anon_sym_throw] = ACTIONS(3384), + [anon_sym_namespace] = ACTIONS(3384), + [anon_sym_using] = ACTIONS(3384), + [anon_sym_static_assert] = ACTIONS(3384), + [anon_sym_concept] = ACTIONS(3384), + [anon_sym_co_return] = ACTIONS(3384), + [anon_sym_co_yield] = ACTIONS(3384), + [anon_sym_R_DQUOTE] = ACTIONS(3386), + [anon_sym_LR_DQUOTE] = ACTIONS(3386), + [anon_sym_uR_DQUOTE] = ACTIONS(3386), + [anon_sym_UR_DQUOTE] = ACTIONS(3386), + [anon_sym_u8R_DQUOTE] = ACTIONS(3386), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3384), + [anon_sym_requires] = ACTIONS(3384), + [sym_this] = ACTIONS(3384), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3386), + [sym_semgrep_named_ellipsis] = ACTIONS(3386), }, - [872] = { - [ts_builtin_sym_end] = ACTIONS(3654), - [sym_identifier] = ACTIONS(3652), - [aux_sym_preproc_include_token1] = ACTIONS(3652), - [aux_sym_preproc_def_token1] = ACTIONS(3652), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3654), - [aux_sym_preproc_if_token1] = ACTIONS(3652), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3652), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3652), - [sym_preproc_directive] = ACTIONS(3652), - [anon_sym_LPAREN2] = ACTIONS(3654), - [anon_sym_BANG] = ACTIONS(3654), - [anon_sym_TILDE] = ACTIONS(3654), - [anon_sym_DASH] = ACTIONS(3652), - [anon_sym_PLUS] = ACTIONS(3652), - [anon_sym_STAR] = ACTIONS(3654), - [anon_sym_AMP_AMP] = ACTIONS(3654), - [anon_sym_AMP] = ACTIONS(3652), - [anon_sym___extension__] = ACTIONS(3652), - [anon_sym_typedef] = ACTIONS(3652), - [anon_sym_extern] = ACTIONS(3652), - [anon_sym___attribute__] = ACTIONS(3652), - [anon_sym_COLON_COLON] = ACTIONS(3654), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3654), - [anon_sym___declspec] = ACTIONS(3652), - [anon_sym___based] = ACTIONS(3652), - [anon_sym___cdecl] = ACTIONS(3652), - [anon_sym___clrcall] = ACTIONS(3652), - [anon_sym___stdcall] = ACTIONS(3652), - [anon_sym___fastcall] = ACTIONS(3652), - [anon_sym___thiscall] = ACTIONS(3652), - [anon_sym___vectorcall] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3654), - [anon_sym_signed] = ACTIONS(3652), - [anon_sym_unsigned] = ACTIONS(3652), - [anon_sym_long] = ACTIONS(3652), - [anon_sym_short] = ACTIONS(3652), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_static] = ACTIONS(3652), - [anon_sym_register] = ACTIONS(3652), - [anon_sym_inline] = ACTIONS(3652), - [anon_sym___inline] = ACTIONS(3652), - [anon_sym___inline__] = ACTIONS(3652), - [anon_sym___forceinline] = ACTIONS(3652), - [anon_sym_thread_local] = ACTIONS(3652), - [anon_sym___thread] = ACTIONS(3652), - [anon_sym_const] = ACTIONS(3652), - [anon_sym_constexpr] = ACTIONS(3652), - [anon_sym_volatile] = ACTIONS(3652), - [anon_sym_restrict] = ACTIONS(3652), - [anon_sym___restrict__] = ACTIONS(3652), - [anon_sym__Atomic] = ACTIONS(3652), - [anon_sym__Noreturn] = ACTIONS(3652), - [anon_sym_noreturn] = ACTIONS(3652), - [anon_sym_mutable] = ACTIONS(3652), - [anon_sym_constinit] = ACTIONS(3652), - [anon_sym_consteval] = ACTIONS(3652), - [sym_primitive_type] = ACTIONS(3652), - [anon_sym_enum] = ACTIONS(3652), - [anon_sym_class] = ACTIONS(3652), - [anon_sym_struct] = ACTIONS(3652), - [anon_sym_union] = ACTIONS(3652), - [anon_sym_if] = ACTIONS(3652), - [anon_sym_switch] = ACTIONS(3652), - [anon_sym_case] = ACTIONS(3652), - [anon_sym_default] = ACTIONS(3652), - [anon_sym_while] = ACTIONS(3652), - [anon_sym_do] = ACTIONS(3652), - [anon_sym_for] = ACTIONS(3652), - [anon_sym_return] = ACTIONS(3652), - [anon_sym_break] = ACTIONS(3652), - [anon_sym_continue] = ACTIONS(3652), - [anon_sym_goto] = ACTIONS(3652), - [anon_sym_not] = ACTIONS(3652), - [anon_sym_compl] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3654), - [anon_sym_PLUS_PLUS] = ACTIONS(3654), - [anon_sym_sizeof] = ACTIONS(3652), - [anon_sym___alignof__] = ACTIONS(3652), - [anon_sym___alignof] = ACTIONS(3652), - [anon_sym__alignof] = ACTIONS(3652), - [anon_sym_alignof] = ACTIONS(3652), - [anon_sym__Alignof] = ACTIONS(3652), - [anon_sym_offsetof] = ACTIONS(3652), - [anon_sym__Generic] = ACTIONS(3652), - [anon_sym_asm] = ACTIONS(3652), - [anon_sym___asm__] = ACTIONS(3652), - [sym_number_literal] = ACTIONS(3654), - [anon_sym_L_SQUOTE] = ACTIONS(3654), - [anon_sym_u_SQUOTE] = ACTIONS(3654), - [anon_sym_U_SQUOTE] = ACTIONS(3654), - [anon_sym_u8_SQUOTE] = ACTIONS(3654), - [anon_sym_SQUOTE] = ACTIONS(3654), - [anon_sym_L_DQUOTE] = ACTIONS(3654), - [anon_sym_u_DQUOTE] = ACTIONS(3654), - [anon_sym_U_DQUOTE] = ACTIONS(3654), - [anon_sym_u8_DQUOTE] = ACTIONS(3654), - [anon_sym_DQUOTE] = ACTIONS(3654), - [sym_true] = ACTIONS(3652), - [sym_false] = ACTIONS(3652), - [anon_sym_NULL] = ACTIONS(3652), - [anon_sym_nullptr] = ACTIONS(3652), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3652), - [anon_sym_decltype] = ACTIONS(3652), - [anon_sym_virtual] = ACTIONS(3652), - [anon_sym_alignas] = ACTIONS(3652), - [anon_sym_explicit] = ACTIONS(3652), - [anon_sym_typename] = ACTIONS(3652), - [anon_sym_template] = ACTIONS(3652), - [anon_sym_operator] = ACTIONS(3652), - [anon_sym_try] = ACTIONS(3652), - [anon_sym_delete] = ACTIONS(3652), - [anon_sym_throw] = ACTIONS(3652), - [anon_sym_namespace] = ACTIONS(3652), - [anon_sym_using] = ACTIONS(3652), - [anon_sym_static_assert] = ACTIONS(3652), - [anon_sym_concept] = ACTIONS(3652), - [anon_sym_co_return] = ACTIONS(3652), - [anon_sym_co_yield] = ACTIONS(3652), - [anon_sym_R_DQUOTE] = ACTIONS(3654), - [anon_sym_LR_DQUOTE] = ACTIONS(3654), - [anon_sym_uR_DQUOTE] = ACTIONS(3654), - [anon_sym_UR_DQUOTE] = ACTIONS(3654), - [anon_sym_u8R_DQUOTE] = ACTIONS(3654), - [anon_sym_co_await] = ACTIONS(3652), - [anon_sym_new] = ACTIONS(3652), - [anon_sym_requires] = ACTIONS(3652), - [sym_this] = ACTIONS(3652), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3654), - [sym_semgrep_named_ellipsis] = ACTIONS(3654), + [857] = { + [ts_builtin_sym_end] = ACTIONS(3477), + [sym_identifier] = ACTIONS(3475), + [aux_sym_preproc_include_token1] = ACTIONS(3475), + [aux_sym_preproc_def_token1] = ACTIONS(3475), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3477), + [aux_sym_preproc_if_token1] = ACTIONS(3475), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3475), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3475), + [sym_preproc_directive] = ACTIONS(3475), + [anon_sym_LPAREN2] = ACTIONS(3477), + [anon_sym_BANG] = ACTIONS(3477), + [anon_sym_TILDE] = ACTIONS(3477), + [anon_sym_DASH] = ACTIONS(3475), + [anon_sym_PLUS] = ACTIONS(3475), + [anon_sym_STAR] = ACTIONS(3477), + [anon_sym_AMP_AMP] = ACTIONS(3477), + [anon_sym_AMP] = ACTIONS(3475), + [anon_sym___extension__] = ACTIONS(3475), + [anon_sym_typedef] = ACTIONS(3475), + [anon_sym_extern] = ACTIONS(3475), + [anon_sym___attribute__] = ACTIONS(3475), + [anon_sym_COLON_COLON] = ACTIONS(3477), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3477), + [anon_sym___declspec] = ACTIONS(3475), + [anon_sym___based] = ACTIONS(3475), + [anon_sym___cdecl] = ACTIONS(3475), + [anon_sym___clrcall] = ACTIONS(3475), + [anon_sym___stdcall] = ACTIONS(3475), + [anon_sym___fastcall] = ACTIONS(3475), + [anon_sym___thiscall] = ACTIONS(3475), + [anon_sym___vectorcall] = ACTIONS(3475), + [anon_sym_LBRACE] = ACTIONS(3477), + [anon_sym_signed] = ACTIONS(3475), + [anon_sym_unsigned] = ACTIONS(3475), + [anon_sym_long] = ACTIONS(3475), + [anon_sym_short] = ACTIONS(3475), + [anon_sym_LBRACK] = ACTIONS(3475), + [anon_sym_static] = ACTIONS(3475), + [anon_sym_register] = ACTIONS(3475), + [anon_sym_inline] = ACTIONS(3475), + [anon_sym___inline] = ACTIONS(3475), + [anon_sym___inline__] = ACTIONS(3475), + [anon_sym___forceinline] = ACTIONS(3475), + [anon_sym_thread_local] = ACTIONS(3475), + [anon_sym___thread] = ACTIONS(3475), + [anon_sym_const] = ACTIONS(3475), + [anon_sym_constexpr] = ACTIONS(3475), + [anon_sym_volatile] = ACTIONS(3475), + [anon_sym_restrict] = ACTIONS(3475), + [anon_sym___restrict__] = ACTIONS(3475), + [anon_sym__Atomic] = ACTIONS(3475), + [anon_sym__Noreturn] = ACTIONS(3475), + [anon_sym_noreturn] = ACTIONS(3475), + [anon_sym_mutable] = ACTIONS(3475), + [anon_sym_constinit] = ACTIONS(3475), + [anon_sym_consteval] = ACTIONS(3475), + [sym_primitive_type] = ACTIONS(3475), + [anon_sym_enum] = ACTIONS(3475), + [anon_sym_class] = ACTIONS(3475), + [anon_sym_struct] = ACTIONS(3475), + [anon_sym_union] = ACTIONS(3475), + [anon_sym_if] = ACTIONS(3475), + [anon_sym_switch] = ACTIONS(3475), + [anon_sym_case] = ACTIONS(3475), + [anon_sym_default] = ACTIONS(3475), + [anon_sym_while] = ACTIONS(3475), + [anon_sym_do] = ACTIONS(3475), + [anon_sym_for] = ACTIONS(3475), + [anon_sym_return] = ACTIONS(3475), + [anon_sym_break] = ACTIONS(3475), + [anon_sym_continue] = ACTIONS(3475), + [anon_sym_goto] = ACTIONS(3475), + [anon_sym_not] = ACTIONS(3475), + [anon_sym_compl] = ACTIONS(3475), + [anon_sym_DASH_DASH] = ACTIONS(3477), + [anon_sym_PLUS_PLUS] = ACTIONS(3477), + [anon_sym_sizeof] = ACTIONS(3475), + [anon_sym___alignof__] = ACTIONS(3475), + [anon_sym___alignof] = ACTIONS(3475), + [anon_sym__alignof] = ACTIONS(3475), + [anon_sym_alignof] = ACTIONS(3475), + [anon_sym__Alignof] = ACTIONS(3475), + [anon_sym_offsetof] = ACTIONS(3475), + [anon_sym__Generic] = ACTIONS(3475), + [anon_sym_asm] = ACTIONS(3475), + [anon_sym___asm__] = ACTIONS(3475), + [sym_number_literal] = ACTIONS(3477), + [anon_sym_L_SQUOTE] = ACTIONS(3477), + [anon_sym_u_SQUOTE] = ACTIONS(3477), + [anon_sym_U_SQUOTE] = ACTIONS(3477), + [anon_sym_u8_SQUOTE] = ACTIONS(3477), + [anon_sym_SQUOTE] = ACTIONS(3477), + [anon_sym_L_DQUOTE] = ACTIONS(3477), + [anon_sym_u_DQUOTE] = ACTIONS(3477), + [anon_sym_U_DQUOTE] = ACTIONS(3477), + [anon_sym_u8_DQUOTE] = ACTIONS(3477), + [anon_sym_DQUOTE] = ACTIONS(3477), + [sym_true] = ACTIONS(3475), + [sym_false] = ACTIONS(3475), + [anon_sym_NULL] = ACTIONS(3475), + [anon_sym_nullptr] = ACTIONS(3475), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3475), + [anon_sym_decltype] = ACTIONS(3475), + [anon_sym_virtual] = ACTIONS(3475), + [anon_sym_alignas] = ACTIONS(3475), + [anon_sym_explicit] = ACTIONS(3475), + [anon_sym_typename] = ACTIONS(3475), + [anon_sym_template] = ACTIONS(3475), + [anon_sym_operator] = ACTIONS(3475), + [anon_sym_try] = ACTIONS(3475), + [anon_sym_delete] = ACTIONS(3475), + [anon_sym_throw] = ACTIONS(3475), + [anon_sym_namespace] = ACTIONS(3475), + [anon_sym_using] = ACTIONS(3475), + [anon_sym_static_assert] = ACTIONS(3475), + [anon_sym_concept] = ACTIONS(3475), + [anon_sym_co_return] = ACTIONS(3475), + [anon_sym_co_yield] = ACTIONS(3475), + [anon_sym_R_DQUOTE] = ACTIONS(3477), + [anon_sym_LR_DQUOTE] = ACTIONS(3477), + [anon_sym_uR_DQUOTE] = ACTIONS(3477), + [anon_sym_UR_DQUOTE] = ACTIONS(3477), + [anon_sym_u8R_DQUOTE] = ACTIONS(3477), + [anon_sym_co_await] = ACTIONS(3475), + [anon_sym_new] = ACTIONS(3475), + [anon_sym_requires] = ACTIONS(3475), + [sym_this] = ACTIONS(3475), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3477), + [sym_semgrep_named_ellipsis] = ACTIONS(3477), }, - [873] = { + [858] = { + [sym_preproc_def] = STATE(2347), + [sym_preproc_function_def] = STATE(2347), + [sym_preproc_call] = STATE(2347), + [sym_preproc_if_in_field_declaration_list] = STATE(2347), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2347), + [sym_type_definition] = STATE(2347), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6437), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7306), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(859), + [sym_field_declaration] = STATE(2347), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2347), + [sym_operator_cast] = STATE(7731), + [sym_inline_method_definition] = STATE(2347), + [sym_constructor_specifiers] = STATE(1938), + [sym_operator_cast_definition] = STATE(2347), + [sym_operator_cast_declaration] = STATE(2347), + [sym_constructor_or_destructor_definition] = STATE(2347), + [sym_constructor_or_destructor_declaration] = STATE(2347), + [sym_friend_declaration] = STATE(2347), + [sym_access_specifier] = STATE(10086), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2347), + [sym_alias_declaration] = STATE(2347), + [sym_static_assert_declaration] = STATE(2347), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7731), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2347), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(859), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1938), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(4041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4043), + [aux_sym_preproc_if_token1] = ACTIONS(4045), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4049), + [sym_preproc_directive] = ACTIONS(4051), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(4053), + [anon_sym_typedef] = ACTIONS(4055), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(4143), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(4059), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(4061), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(4063), + [anon_sym_static_assert] = ACTIONS(4065), + [sym_semgrep_metavar] = ACTIONS(4067), + }, + [859] = { + [sym_preproc_def] = STATE(2347), + [sym_preproc_function_def] = STATE(2347), + [sym_preproc_call] = STATE(2347), + [sym_preproc_if_in_field_declaration_list] = STATE(2347), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2347), + [sym_type_definition] = STATE(2347), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6437), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7306), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(868), + [sym_field_declaration] = STATE(2347), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2347), + [sym_operator_cast] = STATE(7731), + [sym_inline_method_definition] = STATE(2347), + [sym_constructor_specifiers] = STATE(1938), + [sym_operator_cast_definition] = STATE(2347), + [sym_operator_cast_declaration] = STATE(2347), + [sym_constructor_or_destructor_definition] = STATE(2347), + [sym_constructor_or_destructor_declaration] = STATE(2347), + [sym_friend_declaration] = STATE(2347), + [sym_access_specifier] = STATE(10086), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2347), + [sym_alias_declaration] = STATE(2347), + [sym_static_assert_declaration] = STATE(2347), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7731), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2347), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(868), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1938), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(4041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4043), + [aux_sym_preproc_if_token1] = ACTIONS(4045), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4049), + [sym_preproc_directive] = ACTIONS(4051), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(4053), + [anon_sym_typedef] = ACTIONS(4055), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(4145), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(4059), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(4061), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(4063), + [anon_sym_static_assert] = ACTIONS(4065), + [sym_semgrep_metavar] = ACTIONS(4067), + }, + [860] = { + [ts_builtin_sym_end] = ACTIONS(3481), + [sym_identifier] = ACTIONS(3479), + [aux_sym_preproc_include_token1] = ACTIONS(3479), + [aux_sym_preproc_def_token1] = ACTIONS(3479), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3481), + [aux_sym_preproc_if_token1] = ACTIONS(3479), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3479), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3479), + [sym_preproc_directive] = ACTIONS(3479), + [anon_sym_LPAREN2] = ACTIONS(3481), + [anon_sym_BANG] = ACTIONS(3481), + [anon_sym_TILDE] = ACTIONS(3481), + [anon_sym_DASH] = ACTIONS(3479), + [anon_sym_PLUS] = ACTIONS(3479), + [anon_sym_STAR] = ACTIONS(3481), + [anon_sym_AMP_AMP] = ACTIONS(3481), + [anon_sym_AMP] = ACTIONS(3479), + [anon_sym___extension__] = ACTIONS(3479), + [anon_sym_typedef] = ACTIONS(3479), + [anon_sym_extern] = ACTIONS(3479), + [anon_sym___attribute__] = ACTIONS(3479), + [anon_sym_COLON_COLON] = ACTIONS(3481), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3481), + [anon_sym___declspec] = ACTIONS(3479), + [anon_sym___based] = ACTIONS(3479), + [anon_sym___cdecl] = ACTIONS(3479), + [anon_sym___clrcall] = ACTIONS(3479), + [anon_sym___stdcall] = ACTIONS(3479), + [anon_sym___fastcall] = ACTIONS(3479), + [anon_sym___thiscall] = ACTIONS(3479), + [anon_sym___vectorcall] = ACTIONS(3479), + [anon_sym_LBRACE] = ACTIONS(3481), + [anon_sym_signed] = ACTIONS(3479), + [anon_sym_unsigned] = ACTIONS(3479), + [anon_sym_long] = ACTIONS(3479), + [anon_sym_short] = ACTIONS(3479), + [anon_sym_LBRACK] = ACTIONS(3479), + [anon_sym_static] = ACTIONS(3479), + [anon_sym_register] = ACTIONS(3479), + [anon_sym_inline] = ACTIONS(3479), + [anon_sym___inline] = ACTIONS(3479), + [anon_sym___inline__] = ACTIONS(3479), + [anon_sym___forceinline] = ACTIONS(3479), + [anon_sym_thread_local] = ACTIONS(3479), + [anon_sym___thread] = ACTIONS(3479), + [anon_sym_const] = ACTIONS(3479), + [anon_sym_constexpr] = ACTIONS(3479), + [anon_sym_volatile] = ACTIONS(3479), + [anon_sym_restrict] = ACTIONS(3479), + [anon_sym___restrict__] = ACTIONS(3479), + [anon_sym__Atomic] = ACTIONS(3479), + [anon_sym__Noreturn] = ACTIONS(3479), + [anon_sym_noreturn] = ACTIONS(3479), + [anon_sym_mutable] = ACTIONS(3479), + [anon_sym_constinit] = ACTIONS(3479), + [anon_sym_consteval] = ACTIONS(3479), + [sym_primitive_type] = ACTIONS(3479), + [anon_sym_enum] = ACTIONS(3479), + [anon_sym_class] = ACTIONS(3479), + [anon_sym_struct] = ACTIONS(3479), + [anon_sym_union] = ACTIONS(3479), + [anon_sym_if] = ACTIONS(3479), + [anon_sym_switch] = ACTIONS(3479), + [anon_sym_case] = ACTIONS(3479), + [anon_sym_default] = ACTIONS(3479), + [anon_sym_while] = ACTIONS(3479), + [anon_sym_do] = ACTIONS(3479), + [anon_sym_for] = ACTIONS(3479), + [anon_sym_return] = ACTIONS(3479), + [anon_sym_break] = ACTIONS(3479), + [anon_sym_continue] = ACTIONS(3479), + [anon_sym_goto] = ACTIONS(3479), + [anon_sym_not] = ACTIONS(3479), + [anon_sym_compl] = ACTIONS(3479), + [anon_sym_DASH_DASH] = ACTIONS(3481), + [anon_sym_PLUS_PLUS] = ACTIONS(3481), + [anon_sym_sizeof] = ACTIONS(3479), + [anon_sym___alignof__] = ACTIONS(3479), + [anon_sym___alignof] = ACTIONS(3479), + [anon_sym__alignof] = ACTIONS(3479), + [anon_sym_alignof] = ACTIONS(3479), + [anon_sym__Alignof] = ACTIONS(3479), + [anon_sym_offsetof] = ACTIONS(3479), + [anon_sym__Generic] = ACTIONS(3479), + [anon_sym_asm] = ACTIONS(3479), + [anon_sym___asm__] = ACTIONS(3479), + [sym_number_literal] = ACTIONS(3481), + [anon_sym_L_SQUOTE] = ACTIONS(3481), + [anon_sym_u_SQUOTE] = ACTIONS(3481), + [anon_sym_U_SQUOTE] = ACTIONS(3481), + [anon_sym_u8_SQUOTE] = ACTIONS(3481), + [anon_sym_SQUOTE] = ACTIONS(3481), + [anon_sym_L_DQUOTE] = ACTIONS(3481), + [anon_sym_u_DQUOTE] = ACTIONS(3481), + [anon_sym_U_DQUOTE] = ACTIONS(3481), + [anon_sym_u8_DQUOTE] = ACTIONS(3481), + [anon_sym_DQUOTE] = ACTIONS(3481), + [sym_true] = ACTIONS(3479), + [sym_false] = ACTIONS(3479), + [anon_sym_NULL] = ACTIONS(3479), + [anon_sym_nullptr] = ACTIONS(3479), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3479), + [anon_sym_decltype] = ACTIONS(3479), + [anon_sym_virtual] = ACTIONS(3479), + [anon_sym_alignas] = ACTIONS(3479), + [anon_sym_explicit] = ACTIONS(3479), + [anon_sym_typename] = ACTIONS(3479), + [anon_sym_template] = ACTIONS(3479), + [anon_sym_operator] = ACTIONS(3479), + [anon_sym_try] = ACTIONS(3479), + [anon_sym_delete] = ACTIONS(3479), + [anon_sym_throw] = ACTIONS(3479), + [anon_sym_namespace] = ACTIONS(3479), + [anon_sym_using] = ACTIONS(3479), + [anon_sym_static_assert] = ACTIONS(3479), + [anon_sym_concept] = ACTIONS(3479), + [anon_sym_co_return] = ACTIONS(3479), + [anon_sym_co_yield] = ACTIONS(3479), + [anon_sym_R_DQUOTE] = ACTIONS(3481), + [anon_sym_LR_DQUOTE] = ACTIONS(3481), + [anon_sym_uR_DQUOTE] = ACTIONS(3481), + [anon_sym_UR_DQUOTE] = ACTIONS(3481), + [anon_sym_u8R_DQUOTE] = ACTIONS(3481), + [anon_sym_co_await] = ACTIONS(3479), + [anon_sym_new] = ACTIONS(3479), + [anon_sym_requires] = ACTIONS(3479), + [sym_this] = ACTIONS(3479), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3481), + [sym_semgrep_named_ellipsis] = ACTIONS(3481), + }, + [861] = { + [ts_builtin_sym_end] = ACTIONS(3485), + [sym_identifier] = ACTIONS(3483), + [aux_sym_preproc_include_token1] = ACTIONS(3483), + [aux_sym_preproc_def_token1] = ACTIONS(3483), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3485), + [aux_sym_preproc_if_token1] = ACTIONS(3483), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3483), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3483), + [sym_preproc_directive] = ACTIONS(3483), + [anon_sym_LPAREN2] = ACTIONS(3485), + [anon_sym_BANG] = ACTIONS(3485), + [anon_sym_TILDE] = ACTIONS(3485), + [anon_sym_DASH] = ACTIONS(3483), + [anon_sym_PLUS] = ACTIONS(3483), + [anon_sym_STAR] = ACTIONS(3485), + [anon_sym_AMP_AMP] = ACTIONS(3485), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym___extension__] = ACTIONS(3483), + [anon_sym_typedef] = ACTIONS(3483), + [anon_sym_extern] = ACTIONS(3483), + [anon_sym___attribute__] = ACTIONS(3483), + [anon_sym_COLON_COLON] = ACTIONS(3485), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3485), + [anon_sym___declspec] = ACTIONS(3483), + [anon_sym___based] = ACTIONS(3483), + [anon_sym___cdecl] = ACTIONS(3483), + [anon_sym___clrcall] = ACTIONS(3483), + [anon_sym___stdcall] = ACTIONS(3483), + [anon_sym___fastcall] = ACTIONS(3483), + [anon_sym___thiscall] = ACTIONS(3483), + [anon_sym___vectorcall] = ACTIONS(3483), + [anon_sym_LBRACE] = ACTIONS(3485), + [anon_sym_signed] = ACTIONS(3483), + [anon_sym_unsigned] = ACTIONS(3483), + [anon_sym_long] = ACTIONS(3483), + [anon_sym_short] = ACTIONS(3483), + [anon_sym_LBRACK] = ACTIONS(3483), + [anon_sym_static] = ACTIONS(3483), + [anon_sym_register] = ACTIONS(3483), + [anon_sym_inline] = ACTIONS(3483), + [anon_sym___inline] = ACTIONS(3483), + [anon_sym___inline__] = ACTIONS(3483), + [anon_sym___forceinline] = ACTIONS(3483), + [anon_sym_thread_local] = ACTIONS(3483), + [anon_sym___thread] = ACTIONS(3483), + [anon_sym_const] = ACTIONS(3483), + [anon_sym_constexpr] = ACTIONS(3483), + [anon_sym_volatile] = ACTIONS(3483), + [anon_sym_restrict] = ACTIONS(3483), + [anon_sym___restrict__] = ACTIONS(3483), + [anon_sym__Atomic] = ACTIONS(3483), + [anon_sym__Noreturn] = ACTIONS(3483), + [anon_sym_noreturn] = ACTIONS(3483), + [anon_sym_mutable] = ACTIONS(3483), + [anon_sym_constinit] = ACTIONS(3483), + [anon_sym_consteval] = ACTIONS(3483), + [sym_primitive_type] = ACTIONS(3483), + [anon_sym_enum] = ACTIONS(3483), + [anon_sym_class] = ACTIONS(3483), + [anon_sym_struct] = ACTIONS(3483), + [anon_sym_union] = ACTIONS(3483), + [anon_sym_if] = ACTIONS(3483), + [anon_sym_switch] = ACTIONS(3483), + [anon_sym_case] = ACTIONS(3483), + [anon_sym_default] = ACTIONS(3483), + [anon_sym_while] = ACTIONS(3483), + [anon_sym_do] = ACTIONS(3483), + [anon_sym_for] = ACTIONS(3483), + [anon_sym_return] = ACTIONS(3483), + [anon_sym_break] = ACTIONS(3483), + [anon_sym_continue] = ACTIONS(3483), + [anon_sym_goto] = ACTIONS(3483), + [anon_sym_not] = ACTIONS(3483), + [anon_sym_compl] = ACTIONS(3483), + [anon_sym_DASH_DASH] = ACTIONS(3485), + [anon_sym_PLUS_PLUS] = ACTIONS(3485), + [anon_sym_sizeof] = ACTIONS(3483), + [anon_sym___alignof__] = ACTIONS(3483), + [anon_sym___alignof] = ACTIONS(3483), + [anon_sym__alignof] = ACTIONS(3483), + [anon_sym_alignof] = ACTIONS(3483), + [anon_sym__Alignof] = ACTIONS(3483), + [anon_sym_offsetof] = ACTIONS(3483), + [anon_sym__Generic] = ACTIONS(3483), + [anon_sym_asm] = ACTIONS(3483), + [anon_sym___asm__] = ACTIONS(3483), + [sym_number_literal] = ACTIONS(3485), + [anon_sym_L_SQUOTE] = ACTIONS(3485), + [anon_sym_u_SQUOTE] = ACTIONS(3485), + [anon_sym_U_SQUOTE] = ACTIONS(3485), + [anon_sym_u8_SQUOTE] = ACTIONS(3485), + [anon_sym_SQUOTE] = ACTIONS(3485), + [anon_sym_L_DQUOTE] = ACTIONS(3485), + [anon_sym_u_DQUOTE] = ACTIONS(3485), + [anon_sym_U_DQUOTE] = ACTIONS(3485), + [anon_sym_u8_DQUOTE] = ACTIONS(3485), + [anon_sym_DQUOTE] = ACTIONS(3485), + [sym_true] = ACTIONS(3483), + [sym_false] = ACTIONS(3483), + [anon_sym_NULL] = ACTIONS(3483), + [anon_sym_nullptr] = ACTIONS(3483), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3483), + [anon_sym_decltype] = ACTIONS(3483), + [anon_sym_virtual] = ACTIONS(3483), + [anon_sym_alignas] = ACTIONS(3483), + [anon_sym_explicit] = ACTIONS(3483), + [anon_sym_typename] = ACTIONS(3483), + [anon_sym_template] = ACTIONS(3483), + [anon_sym_operator] = ACTIONS(3483), + [anon_sym_try] = ACTIONS(3483), + [anon_sym_delete] = ACTIONS(3483), + [anon_sym_throw] = ACTIONS(3483), + [anon_sym_namespace] = ACTIONS(3483), + [anon_sym_using] = ACTIONS(3483), + [anon_sym_static_assert] = ACTIONS(3483), + [anon_sym_concept] = ACTIONS(3483), + [anon_sym_co_return] = ACTIONS(3483), + [anon_sym_co_yield] = ACTIONS(3483), + [anon_sym_R_DQUOTE] = ACTIONS(3485), + [anon_sym_LR_DQUOTE] = ACTIONS(3485), + [anon_sym_uR_DQUOTE] = ACTIONS(3485), + [anon_sym_UR_DQUOTE] = ACTIONS(3485), + [anon_sym_u8R_DQUOTE] = ACTIONS(3485), + [anon_sym_co_await] = ACTIONS(3483), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_requires] = ACTIONS(3483), + [sym_this] = ACTIONS(3483), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3485), + [sym_semgrep_named_ellipsis] = ACTIONS(3485), + }, + [862] = { [ts_builtin_sym_end] = ACTIONS(3489), [sym_identifier] = ACTIONS(3487), [aux_sym_preproc_include_token1] = ACTIONS(3487), @@ -185260,403 +173944,2383 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3489), [sym_semgrep_named_ellipsis] = ACTIONS(3489), }, + [863] = { + [ts_builtin_sym_end] = ACTIONS(3601), + [sym_identifier] = ACTIONS(3599), + [aux_sym_preproc_include_token1] = ACTIONS(3599), + [aux_sym_preproc_def_token1] = ACTIONS(3599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3601), + [aux_sym_preproc_if_token1] = ACTIONS(3599), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3599), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3599), + [sym_preproc_directive] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(3601), + [anon_sym_BANG] = ACTIONS(3601), + [anon_sym_TILDE] = ACTIONS(3601), + [anon_sym_DASH] = ACTIONS(3599), + [anon_sym_PLUS] = ACTIONS(3599), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AMP_AMP] = ACTIONS(3601), + [anon_sym_AMP] = ACTIONS(3599), + [anon_sym___extension__] = ACTIONS(3599), + [anon_sym_typedef] = ACTIONS(3599), + [anon_sym_extern] = ACTIONS(3599), + [anon_sym___attribute__] = ACTIONS(3599), + [anon_sym_COLON_COLON] = ACTIONS(3601), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3601), + [anon_sym___declspec] = ACTIONS(3599), + [anon_sym___based] = ACTIONS(3599), + [anon_sym___cdecl] = ACTIONS(3599), + [anon_sym___clrcall] = ACTIONS(3599), + [anon_sym___stdcall] = ACTIONS(3599), + [anon_sym___fastcall] = ACTIONS(3599), + [anon_sym___thiscall] = ACTIONS(3599), + [anon_sym___vectorcall] = ACTIONS(3599), + [anon_sym_LBRACE] = ACTIONS(3601), + [anon_sym_signed] = ACTIONS(3599), + [anon_sym_unsigned] = ACTIONS(3599), + [anon_sym_long] = ACTIONS(3599), + [anon_sym_short] = ACTIONS(3599), + [anon_sym_LBRACK] = ACTIONS(3599), + [anon_sym_static] = ACTIONS(3599), + [anon_sym_register] = ACTIONS(3599), + [anon_sym_inline] = ACTIONS(3599), + [anon_sym___inline] = ACTIONS(3599), + [anon_sym___inline__] = ACTIONS(3599), + [anon_sym___forceinline] = ACTIONS(3599), + [anon_sym_thread_local] = ACTIONS(3599), + [anon_sym___thread] = ACTIONS(3599), + [anon_sym_const] = ACTIONS(3599), + [anon_sym_constexpr] = ACTIONS(3599), + [anon_sym_volatile] = ACTIONS(3599), + [anon_sym_restrict] = ACTIONS(3599), + [anon_sym___restrict__] = ACTIONS(3599), + [anon_sym__Atomic] = ACTIONS(3599), + [anon_sym__Noreturn] = ACTIONS(3599), + [anon_sym_noreturn] = ACTIONS(3599), + [anon_sym_mutable] = ACTIONS(3599), + [anon_sym_constinit] = ACTIONS(3599), + [anon_sym_consteval] = ACTIONS(3599), + [sym_primitive_type] = ACTIONS(3599), + [anon_sym_enum] = ACTIONS(3599), + [anon_sym_class] = ACTIONS(3599), + [anon_sym_struct] = ACTIONS(3599), + [anon_sym_union] = ACTIONS(3599), + [anon_sym_if] = ACTIONS(3599), + [anon_sym_switch] = ACTIONS(3599), + [anon_sym_case] = ACTIONS(3599), + [anon_sym_default] = ACTIONS(3599), + [anon_sym_while] = ACTIONS(3599), + [anon_sym_do] = ACTIONS(3599), + [anon_sym_for] = ACTIONS(3599), + [anon_sym_return] = ACTIONS(3599), + [anon_sym_break] = ACTIONS(3599), + [anon_sym_continue] = ACTIONS(3599), + [anon_sym_goto] = ACTIONS(3599), + [anon_sym_not] = ACTIONS(3599), + [anon_sym_compl] = ACTIONS(3599), + [anon_sym_DASH_DASH] = ACTIONS(3601), + [anon_sym_PLUS_PLUS] = ACTIONS(3601), + [anon_sym_sizeof] = ACTIONS(3599), + [anon_sym___alignof__] = ACTIONS(3599), + [anon_sym___alignof] = ACTIONS(3599), + [anon_sym__alignof] = ACTIONS(3599), + [anon_sym_alignof] = ACTIONS(3599), + [anon_sym__Alignof] = ACTIONS(3599), + [anon_sym_offsetof] = ACTIONS(3599), + [anon_sym__Generic] = ACTIONS(3599), + [anon_sym_asm] = ACTIONS(3599), + [anon_sym___asm__] = ACTIONS(3599), + [sym_number_literal] = ACTIONS(3601), + [anon_sym_L_SQUOTE] = ACTIONS(3601), + [anon_sym_u_SQUOTE] = ACTIONS(3601), + [anon_sym_U_SQUOTE] = ACTIONS(3601), + [anon_sym_u8_SQUOTE] = ACTIONS(3601), + [anon_sym_SQUOTE] = ACTIONS(3601), + [anon_sym_L_DQUOTE] = ACTIONS(3601), + [anon_sym_u_DQUOTE] = ACTIONS(3601), + [anon_sym_U_DQUOTE] = ACTIONS(3601), + [anon_sym_u8_DQUOTE] = ACTIONS(3601), + [anon_sym_DQUOTE] = ACTIONS(3601), + [sym_true] = ACTIONS(3599), + [sym_false] = ACTIONS(3599), + [anon_sym_NULL] = ACTIONS(3599), + [anon_sym_nullptr] = ACTIONS(3599), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3599), + [anon_sym_decltype] = ACTIONS(3599), + [anon_sym_virtual] = ACTIONS(3599), + [anon_sym_alignas] = ACTIONS(3599), + [anon_sym_explicit] = ACTIONS(3599), + [anon_sym_typename] = ACTIONS(3599), + [anon_sym_template] = ACTIONS(3599), + [anon_sym_operator] = ACTIONS(3599), + [anon_sym_try] = ACTIONS(3599), + [anon_sym_delete] = ACTIONS(3599), + [anon_sym_throw] = ACTIONS(3599), + [anon_sym_namespace] = ACTIONS(3599), + [anon_sym_using] = ACTIONS(3599), + [anon_sym_static_assert] = ACTIONS(3599), + [anon_sym_concept] = ACTIONS(3599), + [anon_sym_co_return] = ACTIONS(3599), + [anon_sym_co_yield] = ACTIONS(3599), + [anon_sym_R_DQUOTE] = ACTIONS(3601), + [anon_sym_LR_DQUOTE] = ACTIONS(3601), + [anon_sym_uR_DQUOTE] = ACTIONS(3601), + [anon_sym_UR_DQUOTE] = ACTIONS(3601), + [anon_sym_u8R_DQUOTE] = ACTIONS(3601), + [anon_sym_co_await] = ACTIONS(3599), + [anon_sym_new] = ACTIONS(3599), + [anon_sym_requires] = ACTIONS(3599), + [sym_this] = ACTIONS(3599), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3601), + [sym_semgrep_named_ellipsis] = ACTIONS(3601), + }, + [864] = { + [sym_preproc_def] = STATE(2347), + [sym_preproc_function_def] = STATE(2347), + [sym_preproc_call] = STATE(2347), + [sym_preproc_if_in_field_declaration_list] = STATE(2347), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2347), + [sym_type_definition] = STATE(2347), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6437), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7306), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(874), + [sym_field_declaration] = STATE(2347), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2347), + [sym_operator_cast] = STATE(7731), + [sym_inline_method_definition] = STATE(2347), + [sym_constructor_specifiers] = STATE(1938), + [sym_operator_cast_definition] = STATE(2347), + [sym_operator_cast_declaration] = STATE(2347), + [sym_constructor_or_destructor_definition] = STATE(2347), + [sym_constructor_or_destructor_declaration] = STATE(2347), + [sym_friend_declaration] = STATE(2347), + [sym_access_specifier] = STATE(10086), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2347), + [sym_alias_declaration] = STATE(2347), + [sym_static_assert_declaration] = STATE(2347), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7731), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2347), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(874), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1938), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(4041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4043), + [aux_sym_preproc_if_token1] = ACTIONS(4045), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4049), + [sym_preproc_directive] = ACTIONS(4051), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(4053), + [anon_sym_typedef] = ACTIONS(4055), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(4147), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(4059), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(4061), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(4063), + [anon_sym_static_assert] = ACTIONS(4065), + [sym_semgrep_metavar] = ACTIONS(4067), + }, + [865] = { + [ts_builtin_sym_end] = ACTIONS(3296), + [sym_identifier] = ACTIONS(3294), + [aux_sym_preproc_include_token1] = ACTIONS(3294), + [aux_sym_preproc_def_token1] = ACTIONS(3294), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3296), + [aux_sym_preproc_if_token1] = ACTIONS(3294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3294), + [sym_preproc_directive] = ACTIONS(3294), + [anon_sym_LPAREN2] = ACTIONS(3296), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3294), + [anon_sym_PLUS] = ACTIONS(3294), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_AMP] = ACTIONS(3294), + [anon_sym___extension__] = ACTIONS(3294), + [anon_sym_typedef] = ACTIONS(3294), + [anon_sym_extern] = ACTIONS(3294), + [anon_sym___attribute__] = ACTIONS(3294), + [anon_sym_COLON_COLON] = ACTIONS(3296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3296), + [anon_sym___declspec] = ACTIONS(3294), + [anon_sym___based] = ACTIONS(3294), + [anon_sym___cdecl] = ACTIONS(3294), + [anon_sym___clrcall] = ACTIONS(3294), + [anon_sym___stdcall] = ACTIONS(3294), + [anon_sym___fastcall] = ACTIONS(3294), + [anon_sym___thiscall] = ACTIONS(3294), + [anon_sym___vectorcall] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_signed] = ACTIONS(3294), + [anon_sym_unsigned] = ACTIONS(3294), + [anon_sym_long] = ACTIONS(3294), + [anon_sym_short] = ACTIONS(3294), + [anon_sym_LBRACK] = ACTIONS(3294), + [anon_sym_static] = ACTIONS(3294), + [anon_sym_register] = ACTIONS(3294), + [anon_sym_inline] = ACTIONS(3294), + [anon_sym___inline] = ACTIONS(3294), + [anon_sym___inline__] = ACTIONS(3294), + [anon_sym___forceinline] = ACTIONS(3294), + [anon_sym_thread_local] = ACTIONS(3294), + [anon_sym___thread] = ACTIONS(3294), + [anon_sym_const] = ACTIONS(3294), + [anon_sym_constexpr] = ACTIONS(3294), + [anon_sym_volatile] = ACTIONS(3294), + [anon_sym_restrict] = ACTIONS(3294), + [anon_sym___restrict__] = ACTIONS(3294), + [anon_sym__Atomic] = ACTIONS(3294), + [anon_sym__Noreturn] = ACTIONS(3294), + [anon_sym_noreturn] = ACTIONS(3294), + [anon_sym_mutable] = ACTIONS(3294), + [anon_sym_constinit] = ACTIONS(3294), + [anon_sym_consteval] = ACTIONS(3294), + [sym_primitive_type] = ACTIONS(3294), + [anon_sym_enum] = ACTIONS(3294), + [anon_sym_class] = ACTIONS(3294), + [anon_sym_struct] = ACTIONS(3294), + [anon_sym_union] = ACTIONS(3294), + [anon_sym_if] = ACTIONS(3294), + [anon_sym_switch] = ACTIONS(3294), + [anon_sym_case] = ACTIONS(3294), + [anon_sym_default] = ACTIONS(3294), + [anon_sym_while] = ACTIONS(3294), + [anon_sym_do] = ACTIONS(3294), + [anon_sym_for] = ACTIONS(3294), + [anon_sym_return] = ACTIONS(3294), + [anon_sym_break] = ACTIONS(3294), + [anon_sym_continue] = ACTIONS(3294), + [anon_sym_goto] = ACTIONS(3294), + [anon_sym_not] = ACTIONS(3294), + [anon_sym_compl] = ACTIONS(3294), + [anon_sym_DASH_DASH] = ACTIONS(3296), + [anon_sym_PLUS_PLUS] = ACTIONS(3296), + [anon_sym_sizeof] = ACTIONS(3294), + [anon_sym___alignof__] = ACTIONS(3294), + [anon_sym___alignof] = ACTIONS(3294), + [anon_sym__alignof] = ACTIONS(3294), + [anon_sym_alignof] = ACTIONS(3294), + [anon_sym__Alignof] = ACTIONS(3294), + [anon_sym_offsetof] = ACTIONS(3294), + [anon_sym__Generic] = ACTIONS(3294), + [anon_sym_asm] = ACTIONS(3294), + [anon_sym___asm__] = ACTIONS(3294), + [sym_number_literal] = ACTIONS(3296), + [anon_sym_L_SQUOTE] = ACTIONS(3296), + [anon_sym_u_SQUOTE] = ACTIONS(3296), + [anon_sym_U_SQUOTE] = ACTIONS(3296), + [anon_sym_u8_SQUOTE] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3296), + [anon_sym_L_DQUOTE] = ACTIONS(3296), + [anon_sym_u_DQUOTE] = ACTIONS(3296), + [anon_sym_U_DQUOTE] = ACTIONS(3296), + [anon_sym_u8_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [sym_true] = ACTIONS(3294), + [sym_false] = ACTIONS(3294), + [anon_sym_NULL] = ACTIONS(3294), + [anon_sym_nullptr] = ACTIONS(3294), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3294), + [anon_sym_decltype] = ACTIONS(3294), + [anon_sym_virtual] = ACTIONS(3294), + [anon_sym_alignas] = ACTIONS(3294), + [anon_sym_explicit] = ACTIONS(3294), + [anon_sym_typename] = ACTIONS(3294), + [anon_sym_template] = ACTIONS(3294), + [anon_sym_operator] = ACTIONS(3294), + [anon_sym_try] = ACTIONS(3294), + [anon_sym_delete] = ACTIONS(3294), + [anon_sym_throw] = ACTIONS(3294), + [anon_sym_namespace] = ACTIONS(3294), + [anon_sym_using] = ACTIONS(3294), + [anon_sym_static_assert] = ACTIONS(3294), + [anon_sym_concept] = ACTIONS(3294), + [anon_sym_co_return] = ACTIONS(3294), + [anon_sym_co_yield] = ACTIONS(3294), + [anon_sym_R_DQUOTE] = ACTIONS(3296), + [anon_sym_LR_DQUOTE] = ACTIONS(3296), + [anon_sym_uR_DQUOTE] = ACTIONS(3296), + [anon_sym_UR_DQUOTE] = ACTIONS(3296), + [anon_sym_u8R_DQUOTE] = ACTIONS(3296), + [anon_sym_co_await] = ACTIONS(3294), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3294), + [sym_this] = ACTIONS(3294), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3296), + [sym_semgrep_named_ellipsis] = ACTIONS(3296), + }, + [866] = { + [ts_builtin_sym_end] = ACTIONS(3495), + [sym_identifier] = ACTIONS(3493), + [aux_sym_preproc_include_token1] = ACTIONS(3493), + [aux_sym_preproc_def_token1] = ACTIONS(3493), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3495), + [aux_sym_preproc_if_token1] = ACTIONS(3493), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3493), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3493), + [sym_preproc_directive] = ACTIONS(3493), + [anon_sym_LPAREN2] = ACTIONS(3495), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3495), + [anon_sym_DASH] = ACTIONS(3493), + [anon_sym_PLUS] = ACTIONS(3493), + [anon_sym_STAR] = ACTIONS(3495), + [anon_sym_AMP_AMP] = ACTIONS(3495), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym___extension__] = ACTIONS(3493), + [anon_sym_typedef] = 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___cdecl] = ACTIONS(3493), + [anon_sym___clrcall] = ACTIONS(3493), + [anon_sym___stdcall] = ACTIONS(3493), + [anon_sym___fastcall] = ACTIONS(3493), + [anon_sym___thiscall] = ACTIONS(3493), + [anon_sym___vectorcall] = ACTIONS(3493), + [anon_sym_LBRACE] = ACTIONS(3495), + [anon_sym_signed] = ACTIONS(3493), + [anon_sym_unsigned] = ACTIONS(3493), + [anon_sym_long] = ACTIONS(3493), + [anon_sym_short] = ACTIONS(3493), + [anon_sym_LBRACK] = ACTIONS(3493), + [anon_sym_static] = ACTIONS(3493), + [anon_sym_register] = ACTIONS(3493), + [anon_sym_inline] = ACTIONS(3493), + [anon_sym___inline] = ACTIONS(3493), + [anon_sym___inline__] = ACTIONS(3493), + [anon_sym___forceinline] = ACTIONS(3493), + [anon_sym_thread_local] = ACTIONS(3493), + [anon_sym___thread] = ACTIONS(3493), + [anon_sym_const] = ACTIONS(3493), + [anon_sym_constexpr] = ACTIONS(3493), + [anon_sym_volatile] = ACTIONS(3493), + [anon_sym_restrict] = ACTIONS(3493), + [anon_sym___restrict__] = ACTIONS(3493), + [anon_sym__Atomic] = ACTIONS(3493), + [anon_sym__Noreturn] = ACTIONS(3493), + [anon_sym_noreturn] = ACTIONS(3493), + [anon_sym_mutable] = ACTIONS(3493), + [anon_sym_constinit] = ACTIONS(3493), + [anon_sym_consteval] = ACTIONS(3493), + [sym_primitive_type] = ACTIONS(3493), + [anon_sym_enum] = ACTIONS(3493), + [anon_sym_class] = ACTIONS(3493), + [anon_sym_struct] = ACTIONS(3493), + [anon_sym_union] = ACTIONS(3493), + [anon_sym_if] = ACTIONS(3493), + [anon_sym_switch] = ACTIONS(3493), + [anon_sym_case] = ACTIONS(3493), + [anon_sym_default] = ACTIONS(3493), + [anon_sym_while] = ACTIONS(3493), + [anon_sym_do] = ACTIONS(3493), + [anon_sym_for] = ACTIONS(3493), + [anon_sym_return] = ACTIONS(3493), + [anon_sym_break] = ACTIONS(3493), + [anon_sym_continue] = ACTIONS(3493), + [anon_sym_goto] = ACTIONS(3493), + [anon_sym_not] = ACTIONS(3493), + [anon_sym_compl] = ACTIONS(3493), + [anon_sym_DASH_DASH] = ACTIONS(3495), + [anon_sym_PLUS_PLUS] = ACTIONS(3495), + [anon_sym_sizeof] = ACTIONS(3493), + [anon_sym___alignof__] = ACTIONS(3493), + [anon_sym___alignof] = ACTIONS(3493), + [anon_sym__alignof] = ACTIONS(3493), + [anon_sym_alignof] = ACTIONS(3493), + [anon_sym__Alignof] = ACTIONS(3493), + [anon_sym_offsetof] = ACTIONS(3493), + [anon_sym__Generic] = ACTIONS(3493), + [anon_sym_asm] = ACTIONS(3493), + [anon_sym___asm__] = ACTIONS(3493), + [sym_number_literal] = ACTIONS(3495), + [anon_sym_L_SQUOTE] = ACTIONS(3495), + [anon_sym_u_SQUOTE] = ACTIONS(3495), + [anon_sym_U_SQUOTE] = ACTIONS(3495), + [anon_sym_u8_SQUOTE] = ACTIONS(3495), + [anon_sym_SQUOTE] = ACTIONS(3495), + [anon_sym_L_DQUOTE] = ACTIONS(3495), + [anon_sym_u_DQUOTE] = ACTIONS(3495), + [anon_sym_U_DQUOTE] = ACTIONS(3495), + [anon_sym_u8_DQUOTE] = ACTIONS(3495), + [anon_sym_DQUOTE] = ACTIONS(3495), + [sym_true] = ACTIONS(3493), + [sym_false] = ACTIONS(3493), + [anon_sym_NULL] = ACTIONS(3493), + [anon_sym_nullptr] = ACTIONS(3493), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3493), + [anon_sym_decltype] = ACTIONS(3493), + [anon_sym_virtual] = ACTIONS(3493), + [anon_sym_alignas] = ACTIONS(3493), + [anon_sym_explicit] = ACTIONS(3493), + [anon_sym_typename] = ACTIONS(3493), + [anon_sym_template] = ACTIONS(3493), + [anon_sym_operator] = ACTIONS(3493), + [anon_sym_try] = ACTIONS(3493), + [anon_sym_delete] = ACTIONS(3493), + [anon_sym_throw] = ACTIONS(3493), + [anon_sym_namespace] = ACTIONS(3493), + [anon_sym_using] = ACTIONS(3493), + [anon_sym_static_assert] = ACTIONS(3493), + [anon_sym_concept] = ACTIONS(3493), + [anon_sym_co_return] = ACTIONS(3493), + [anon_sym_co_yield] = ACTIONS(3493), + [anon_sym_R_DQUOTE] = ACTIONS(3495), + [anon_sym_LR_DQUOTE] = ACTIONS(3495), + [anon_sym_uR_DQUOTE] = ACTIONS(3495), + [anon_sym_UR_DQUOTE] = ACTIONS(3495), + [anon_sym_u8R_DQUOTE] = ACTIONS(3495), + [anon_sym_co_await] = ACTIONS(3493), + [anon_sym_new] = ACTIONS(3493), + [anon_sym_requires] = ACTIONS(3493), + [sym_this] = ACTIONS(3493), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3495), + [sym_semgrep_named_ellipsis] = ACTIONS(3495), + }, + [867] = { + [ts_builtin_sym_end] = ACTIONS(3633), + [sym_identifier] = ACTIONS(3631), + [aux_sym_preproc_include_token1] = ACTIONS(3631), + [aux_sym_preproc_def_token1] = ACTIONS(3631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3633), + [aux_sym_preproc_if_token1] = ACTIONS(3631), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3631), + [sym_preproc_directive] = ACTIONS(3631), + [anon_sym_LPAREN2] = ACTIONS(3633), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(3631), + [anon_sym_STAR] = ACTIONS(3633), + [anon_sym_AMP_AMP] = ACTIONS(3633), + [anon_sym_AMP] = ACTIONS(3631), + [anon_sym___extension__] = ACTIONS(3631), + [anon_sym_typedef] = ACTIONS(3631), + [anon_sym_extern] = ACTIONS(3631), + [anon_sym___attribute__] = ACTIONS(3631), + [anon_sym_COLON_COLON] = ACTIONS(3633), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3633), + [anon_sym___declspec] = ACTIONS(3631), + [anon_sym___based] = ACTIONS(3631), + [anon_sym___cdecl] = ACTIONS(3631), + [anon_sym___clrcall] = ACTIONS(3631), + [anon_sym___stdcall] = ACTIONS(3631), + [anon_sym___fastcall] = ACTIONS(3631), + [anon_sym___thiscall] = ACTIONS(3631), + [anon_sym___vectorcall] = ACTIONS(3631), + [anon_sym_LBRACE] = ACTIONS(3633), + [anon_sym_signed] = ACTIONS(3631), + [anon_sym_unsigned] = ACTIONS(3631), + [anon_sym_long] = ACTIONS(3631), + [anon_sym_short] = ACTIONS(3631), + [anon_sym_LBRACK] = ACTIONS(3631), + [anon_sym_static] = ACTIONS(3631), + [anon_sym_register] = ACTIONS(3631), + [anon_sym_inline] = ACTIONS(3631), + [anon_sym___inline] = ACTIONS(3631), + [anon_sym___inline__] = ACTIONS(3631), + [anon_sym___forceinline] = ACTIONS(3631), + [anon_sym_thread_local] = ACTIONS(3631), + [anon_sym___thread] = ACTIONS(3631), + [anon_sym_const] = ACTIONS(3631), + [anon_sym_constexpr] = ACTIONS(3631), + [anon_sym_volatile] = ACTIONS(3631), + [anon_sym_restrict] = ACTIONS(3631), + [anon_sym___restrict__] = ACTIONS(3631), + [anon_sym__Atomic] = ACTIONS(3631), + [anon_sym__Noreturn] = ACTIONS(3631), + [anon_sym_noreturn] = ACTIONS(3631), + [anon_sym_mutable] = ACTIONS(3631), + [anon_sym_constinit] = ACTIONS(3631), + [anon_sym_consteval] = ACTIONS(3631), + [sym_primitive_type] = ACTIONS(3631), + [anon_sym_enum] = ACTIONS(3631), + [anon_sym_class] = ACTIONS(3631), + [anon_sym_struct] = ACTIONS(3631), + [anon_sym_union] = ACTIONS(3631), + [anon_sym_if] = ACTIONS(3631), + [anon_sym_switch] = ACTIONS(3631), + [anon_sym_case] = ACTIONS(3631), + [anon_sym_default] = ACTIONS(3631), + [anon_sym_while] = ACTIONS(3631), + [anon_sym_do] = ACTIONS(3631), + [anon_sym_for] = ACTIONS(3631), + [anon_sym_return] = ACTIONS(3631), + [anon_sym_break] = ACTIONS(3631), + [anon_sym_continue] = ACTIONS(3631), + [anon_sym_goto] = ACTIONS(3631), + [anon_sym_not] = ACTIONS(3631), + [anon_sym_compl] = ACTIONS(3631), + [anon_sym_DASH_DASH] = ACTIONS(3633), + [anon_sym_PLUS_PLUS] = ACTIONS(3633), + [anon_sym_sizeof] = ACTIONS(3631), + [anon_sym___alignof__] = ACTIONS(3631), + [anon_sym___alignof] = ACTIONS(3631), + [anon_sym__alignof] = ACTIONS(3631), + [anon_sym_alignof] = ACTIONS(3631), + [anon_sym__Alignof] = ACTIONS(3631), + [anon_sym_offsetof] = ACTIONS(3631), + [anon_sym__Generic] = ACTIONS(3631), + [anon_sym_asm] = ACTIONS(3631), + [anon_sym___asm__] = ACTIONS(3631), + [sym_number_literal] = ACTIONS(3633), + [anon_sym_L_SQUOTE] = ACTIONS(3633), + [anon_sym_u_SQUOTE] = ACTIONS(3633), + [anon_sym_U_SQUOTE] = ACTIONS(3633), + [anon_sym_u8_SQUOTE] = ACTIONS(3633), + [anon_sym_SQUOTE] = ACTIONS(3633), + [anon_sym_L_DQUOTE] = ACTIONS(3633), + [anon_sym_u_DQUOTE] = ACTIONS(3633), + [anon_sym_U_DQUOTE] = ACTIONS(3633), + [anon_sym_u8_DQUOTE] = ACTIONS(3633), + [anon_sym_DQUOTE] = ACTIONS(3633), + [sym_true] = ACTIONS(3631), + [sym_false] = ACTIONS(3631), + [anon_sym_NULL] = ACTIONS(3631), + [anon_sym_nullptr] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3631), + [anon_sym_decltype] = ACTIONS(3631), + [anon_sym_virtual] = ACTIONS(3631), + [anon_sym_alignas] = ACTIONS(3631), + [anon_sym_explicit] = ACTIONS(3631), + [anon_sym_typename] = ACTIONS(3631), + [anon_sym_template] = ACTIONS(3631), + [anon_sym_operator] = ACTIONS(3631), + [anon_sym_try] = ACTIONS(3631), + [anon_sym_delete] = ACTIONS(3631), + [anon_sym_throw] = ACTIONS(3631), + [anon_sym_namespace] = ACTIONS(3631), + [anon_sym_using] = ACTIONS(3631), + [anon_sym_static_assert] = ACTIONS(3631), + [anon_sym_concept] = ACTIONS(3631), + [anon_sym_co_return] = ACTIONS(3631), + [anon_sym_co_yield] = ACTIONS(3631), + [anon_sym_R_DQUOTE] = ACTIONS(3633), + [anon_sym_LR_DQUOTE] = ACTIONS(3633), + [anon_sym_uR_DQUOTE] = ACTIONS(3633), + [anon_sym_UR_DQUOTE] = ACTIONS(3633), + [anon_sym_u8R_DQUOTE] = ACTIONS(3633), + [anon_sym_co_await] = ACTIONS(3631), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(3631), + [sym_this] = ACTIONS(3631), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3633), + [sym_semgrep_named_ellipsis] = ACTIONS(3633), + }, + [868] = { + [sym_preproc_def] = STATE(2347), + [sym_preproc_function_def] = STATE(2347), + [sym_preproc_call] = STATE(2347), + [sym_preproc_if_in_field_declaration_list] = STATE(2347), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2347), + [sym_type_definition] = STATE(2347), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6437), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7306), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(868), + [sym_field_declaration] = STATE(2347), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2347), + [sym_operator_cast] = STATE(7731), + [sym_inline_method_definition] = STATE(2347), + [sym_constructor_specifiers] = STATE(1938), + [sym_operator_cast_definition] = STATE(2347), + [sym_operator_cast_declaration] = STATE(2347), + [sym_constructor_or_destructor_definition] = STATE(2347), + [sym_constructor_or_destructor_declaration] = STATE(2347), + [sym_friend_declaration] = STATE(2347), + [sym_access_specifier] = STATE(10086), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2347), + [sym_alias_declaration] = STATE(2347), + [sym_static_assert_declaration] = STATE(2347), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7731), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2347), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(868), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1938), + [sym_identifier] = ACTIONS(3714), + [aux_sym_preproc_def_token1] = ACTIONS(4149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4152), + [aux_sym_preproc_if_token1] = ACTIONS(4155), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4158), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4161), + [sym_preproc_directive] = ACTIONS(4164), + [anon_sym_LPAREN2] = ACTIONS(3737), + [anon_sym_TILDE] = ACTIONS(3740), + [anon_sym_STAR] = ACTIONS(3743), + [anon_sym_AMP_AMP] = ACTIONS(3746), + [anon_sym_AMP] = ACTIONS(3749), + [anon_sym___extension__] = ACTIONS(4167), + [anon_sym_typedef] = ACTIONS(4170), + [anon_sym_extern] = ACTIONS(3758), + [anon_sym___attribute__] = ACTIONS(3761), + [anon_sym_COLON_COLON] = ACTIONS(3764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3767), + [anon_sym___declspec] = ACTIONS(3770), + [anon_sym___based] = ACTIONS(3773), + [anon_sym_RBRACE] = ACTIONS(4173), + [anon_sym_signed] = ACTIONS(3776), + [anon_sym_unsigned] = ACTIONS(3776), + [anon_sym_long] = ACTIONS(3776), + [anon_sym_short] = ACTIONS(3776), + [anon_sym_LBRACK] = ACTIONS(3779), + [anon_sym_static] = ACTIONS(3758), + [anon_sym_register] = ACTIONS(3758), + [anon_sym_inline] = ACTIONS(3758), + [anon_sym___inline] = ACTIONS(3758), + [anon_sym___inline__] = ACTIONS(3758), + [anon_sym___forceinline] = ACTIONS(3758), + [anon_sym_thread_local] = ACTIONS(3758), + [anon_sym___thread] = ACTIONS(3758), + [anon_sym_const] = ACTIONS(3782), + [anon_sym_constexpr] = ACTIONS(3782), + [anon_sym_volatile] = ACTIONS(3782), + [anon_sym_restrict] = ACTIONS(3782), + [anon_sym___restrict__] = ACTIONS(3782), + [anon_sym__Atomic] = ACTIONS(3782), + [anon_sym__Noreturn] = ACTIONS(3782), + [anon_sym_noreturn] = ACTIONS(3782), + [anon_sym_mutable] = ACTIONS(3782), + [anon_sym_constinit] = ACTIONS(3782), + [anon_sym_consteval] = ACTIONS(3782), + [sym_primitive_type] = ACTIONS(3785), + [anon_sym_enum] = ACTIONS(3788), + [anon_sym_class] = ACTIONS(3791), + [anon_sym_struct] = ACTIONS(3794), + [anon_sym_union] = ACTIONS(3797), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3800), + [anon_sym_decltype] = ACTIONS(3803), + [anon_sym_virtual] = ACTIONS(3806), + [anon_sym_alignas] = ACTIONS(3809), + [anon_sym_explicit] = ACTIONS(3812), + [anon_sym_typename] = ACTIONS(3815), + [anon_sym_template] = ACTIONS(4175), + [anon_sym_operator] = ACTIONS(3821), + [anon_sym_friend] = ACTIONS(4178), + [anon_sym_public] = ACTIONS(3827), + [anon_sym_private] = ACTIONS(3827), + [anon_sym_protected] = ACTIONS(3827), + [anon_sym_using] = ACTIONS(4181), + [anon_sym_static_assert] = ACTIONS(4184), + [sym_semgrep_metavar] = ACTIONS(4187), + }, + [869] = { + [ts_builtin_sym_end] = ACTIONS(3304), + [sym_identifier] = ACTIONS(3302), + [aux_sym_preproc_include_token1] = ACTIONS(3302), + [aux_sym_preproc_def_token1] = ACTIONS(3302), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3304), + [aux_sym_preproc_if_token1] = ACTIONS(3302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3302), + [sym_preproc_directive] = ACTIONS(3302), + [anon_sym_LPAREN2] = ACTIONS(3304), + [anon_sym_BANG] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_AMP_AMP] = ACTIONS(3304), + [anon_sym_AMP] = ACTIONS(3302), + [anon_sym___extension__] = ACTIONS(3302), + [anon_sym_typedef] = ACTIONS(3302), + [anon_sym_extern] = ACTIONS(3302), + [anon_sym___attribute__] = ACTIONS(3302), + [anon_sym_COLON_COLON] = ACTIONS(3304), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3304), + [anon_sym___declspec] = ACTIONS(3302), + [anon_sym___based] = ACTIONS(3302), + [anon_sym___cdecl] = ACTIONS(3302), + [anon_sym___clrcall] = ACTIONS(3302), + [anon_sym___stdcall] = ACTIONS(3302), + [anon_sym___fastcall] = ACTIONS(3302), + [anon_sym___thiscall] = ACTIONS(3302), + [anon_sym___vectorcall] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_signed] = ACTIONS(3302), + [anon_sym_unsigned] = ACTIONS(3302), + [anon_sym_long] = ACTIONS(3302), + [anon_sym_short] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_register] = ACTIONS(3302), + [anon_sym_inline] = ACTIONS(3302), + [anon_sym___inline] = ACTIONS(3302), + [anon_sym___inline__] = ACTIONS(3302), + [anon_sym___forceinline] = ACTIONS(3302), + [anon_sym_thread_local] = ACTIONS(3302), + [anon_sym___thread] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_constexpr] = ACTIONS(3302), + [anon_sym_volatile] = ACTIONS(3302), + [anon_sym_restrict] = ACTIONS(3302), + [anon_sym___restrict__] = ACTIONS(3302), + [anon_sym__Atomic] = ACTIONS(3302), + [anon_sym__Noreturn] = ACTIONS(3302), + [anon_sym_noreturn] = ACTIONS(3302), + [anon_sym_mutable] = ACTIONS(3302), + [anon_sym_constinit] = ACTIONS(3302), + [anon_sym_consteval] = ACTIONS(3302), + [sym_primitive_type] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_struct] = ACTIONS(3302), + [anon_sym_union] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3302), + [anon_sym_case] = ACTIONS(3302), + [anon_sym_default] = ACTIONS(3302), + [anon_sym_while] = ACTIONS(3302), + [anon_sym_do] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_goto] = ACTIONS(3302), + [anon_sym_not] = ACTIONS(3302), + [anon_sym_compl] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3304), + [anon_sym_PLUS_PLUS] = ACTIONS(3304), + [anon_sym_sizeof] = ACTIONS(3302), + [anon_sym___alignof__] = ACTIONS(3302), + [anon_sym___alignof] = ACTIONS(3302), + [anon_sym__alignof] = ACTIONS(3302), + [anon_sym_alignof] = ACTIONS(3302), + [anon_sym__Alignof] = ACTIONS(3302), + [anon_sym_offsetof] = ACTIONS(3302), + [anon_sym__Generic] = ACTIONS(3302), + [anon_sym_asm] = ACTIONS(3302), + [anon_sym___asm__] = ACTIONS(3302), + [sym_number_literal] = ACTIONS(3304), + [anon_sym_L_SQUOTE] = ACTIONS(3304), + [anon_sym_u_SQUOTE] = ACTIONS(3304), + [anon_sym_U_SQUOTE] = ACTIONS(3304), + [anon_sym_u8_SQUOTE] = ACTIONS(3304), + [anon_sym_SQUOTE] = ACTIONS(3304), + [anon_sym_L_DQUOTE] = ACTIONS(3304), + [anon_sym_u_DQUOTE] = ACTIONS(3304), + [anon_sym_U_DQUOTE] = ACTIONS(3304), + [anon_sym_u8_DQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [anon_sym_NULL] = ACTIONS(3302), + [anon_sym_nullptr] = ACTIONS(3302), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3302), + [anon_sym_decltype] = ACTIONS(3302), + [anon_sym_virtual] = ACTIONS(3302), + [anon_sym_alignas] = ACTIONS(3302), + [anon_sym_explicit] = ACTIONS(3302), + [anon_sym_typename] = ACTIONS(3302), + [anon_sym_template] = ACTIONS(3302), + [anon_sym_operator] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3302), + [anon_sym_throw] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_static_assert] = ACTIONS(3302), + [anon_sym_concept] = ACTIONS(3302), + [anon_sym_co_return] = ACTIONS(3302), + [anon_sym_co_yield] = ACTIONS(3302), + [anon_sym_R_DQUOTE] = ACTIONS(3304), + [anon_sym_LR_DQUOTE] = ACTIONS(3304), + [anon_sym_uR_DQUOTE] = ACTIONS(3304), + [anon_sym_UR_DQUOTE] = ACTIONS(3304), + [anon_sym_u8R_DQUOTE] = ACTIONS(3304), + [anon_sym_co_await] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_requires] = ACTIONS(3302), + [sym_this] = ACTIONS(3302), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3304), + [sym_semgrep_named_ellipsis] = ACTIONS(3304), + }, + [870] = { + [ts_builtin_sym_end] = ACTIONS(3637), + [sym_identifier] = ACTIONS(3635), + [aux_sym_preproc_include_token1] = ACTIONS(3635), + [aux_sym_preproc_def_token1] = ACTIONS(3635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3637), + [aux_sym_preproc_if_token1] = ACTIONS(3635), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3635), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3635), + [sym_preproc_directive] = ACTIONS(3635), + [anon_sym_LPAREN2] = ACTIONS(3637), + [anon_sym_BANG] = ACTIONS(3637), + [anon_sym_TILDE] = ACTIONS(3637), + [anon_sym_DASH] = ACTIONS(3635), + [anon_sym_PLUS] = ACTIONS(3635), + [anon_sym_STAR] = ACTIONS(3637), + [anon_sym_AMP_AMP] = ACTIONS(3637), + [anon_sym_AMP] = ACTIONS(3635), + [anon_sym___extension__] = ACTIONS(3635), + [anon_sym_typedef] = ACTIONS(3635), + [anon_sym_extern] = ACTIONS(3635), + [anon_sym___attribute__] = ACTIONS(3635), + [anon_sym_COLON_COLON] = ACTIONS(3637), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3637), + [anon_sym___declspec] = ACTIONS(3635), + [anon_sym___based] = ACTIONS(3635), + [anon_sym___cdecl] = ACTIONS(3635), + [anon_sym___clrcall] = ACTIONS(3635), + [anon_sym___stdcall] = ACTIONS(3635), + [anon_sym___fastcall] = ACTIONS(3635), + [anon_sym___thiscall] = ACTIONS(3635), + [anon_sym___vectorcall] = ACTIONS(3635), + [anon_sym_LBRACE] = ACTIONS(3637), + [anon_sym_signed] = ACTIONS(3635), + [anon_sym_unsigned] = ACTIONS(3635), + [anon_sym_long] = ACTIONS(3635), + [anon_sym_short] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(3635), + [anon_sym_static] = ACTIONS(3635), + [anon_sym_register] = ACTIONS(3635), + [anon_sym_inline] = ACTIONS(3635), + [anon_sym___inline] = ACTIONS(3635), + [anon_sym___inline__] = ACTIONS(3635), + [anon_sym___forceinline] = ACTIONS(3635), + [anon_sym_thread_local] = ACTIONS(3635), + [anon_sym___thread] = ACTIONS(3635), + [anon_sym_const] = ACTIONS(3635), + [anon_sym_constexpr] = ACTIONS(3635), + [anon_sym_volatile] = ACTIONS(3635), + [anon_sym_restrict] = ACTIONS(3635), + [anon_sym___restrict__] = ACTIONS(3635), + [anon_sym__Atomic] = ACTIONS(3635), + [anon_sym__Noreturn] = ACTIONS(3635), + [anon_sym_noreturn] = ACTIONS(3635), + [anon_sym_mutable] = ACTIONS(3635), + [anon_sym_constinit] = ACTIONS(3635), + [anon_sym_consteval] = ACTIONS(3635), + [sym_primitive_type] = ACTIONS(3635), + [anon_sym_enum] = ACTIONS(3635), + [anon_sym_class] = ACTIONS(3635), + [anon_sym_struct] = ACTIONS(3635), + [anon_sym_union] = ACTIONS(3635), + [anon_sym_if] = ACTIONS(3635), + [anon_sym_switch] = ACTIONS(3635), + [anon_sym_case] = ACTIONS(3635), + [anon_sym_default] = ACTIONS(3635), + [anon_sym_while] = ACTIONS(3635), + [anon_sym_do] = ACTIONS(3635), + [anon_sym_for] = ACTIONS(3635), + [anon_sym_return] = ACTIONS(3635), + [anon_sym_break] = ACTIONS(3635), + [anon_sym_continue] = ACTIONS(3635), + [anon_sym_goto] = ACTIONS(3635), + [anon_sym_not] = ACTIONS(3635), + [anon_sym_compl] = ACTIONS(3635), + [anon_sym_DASH_DASH] = ACTIONS(3637), + [anon_sym_PLUS_PLUS] = ACTIONS(3637), + [anon_sym_sizeof] = ACTIONS(3635), + [anon_sym___alignof__] = ACTIONS(3635), + [anon_sym___alignof] = ACTIONS(3635), + [anon_sym__alignof] = ACTIONS(3635), + [anon_sym_alignof] = ACTIONS(3635), + [anon_sym__Alignof] = ACTIONS(3635), + [anon_sym_offsetof] = ACTIONS(3635), + [anon_sym__Generic] = ACTIONS(3635), + [anon_sym_asm] = ACTIONS(3635), + [anon_sym___asm__] = ACTIONS(3635), + [sym_number_literal] = ACTIONS(3637), + [anon_sym_L_SQUOTE] = ACTIONS(3637), + [anon_sym_u_SQUOTE] = ACTIONS(3637), + [anon_sym_U_SQUOTE] = ACTIONS(3637), + [anon_sym_u8_SQUOTE] = ACTIONS(3637), + [anon_sym_SQUOTE] = ACTIONS(3637), + [anon_sym_L_DQUOTE] = ACTIONS(3637), + [anon_sym_u_DQUOTE] = ACTIONS(3637), + [anon_sym_U_DQUOTE] = ACTIONS(3637), + [anon_sym_u8_DQUOTE] = ACTIONS(3637), + [anon_sym_DQUOTE] = ACTIONS(3637), + [sym_true] = ACTIONS(3635), + [sym_false] = ACTIONS(3635), + [anon_sym_NULL] = ACTIONS(3635), + [anon_sym_nullptr] = ACTIONS(3635), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3635), + [anon_sym_decltype] = ACTIONS(3635), + [anon_sym_virtual] = ACTIONS(3635), + [anon_sym_alignas] = ACTIONS(3635), + [anon_sym_explicit] = ACTIONS(3635), + [anon_sym_typename] = ACTIONS(3635), + [anon_sym_template] = ACTIONS(3635), + [anon_sym_operator] = ACTIONS(3635), + [anon_sym_try] = ACTIONS(3635), + [anon_sym_delete] = ACTIONS(3635), + [anon_sym_throw] = ACTIONS(3635), + [anon_sym_namespace] = ACTIONS(3635), + [anon_sym_using] = ACTIONS(3635), + [anon_sym_static_assert] = ACTIONS(3635), + [anon_sym_concept] = ACTIONS(3635), + [anon_sym_co_return] = ACTIONS(3635), + [anon_sym_co_yield] = ACTIONS(3635), + [anon_sym_R_DQUOTE] = ACTIONS(3637), + [anon_sym_LR_DQUOTE] = ACTIONS(3637), + [anon_sym_uR_DQUOTE] = ACTIONS(3637), + [anon_sym_UR_DQUOTE] = ACTIONS(3637), + [anon_sym_u8R_DQUOTE] = ACTIONS(3637), + [anon_sym_co_await] = ACTIONS(3635), + [anon_sym_new] = ACTIONS(3635), + [anon_sym_requires] = ACTIONS(3635), + [sym_this] = ACTIONS(3635), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3637), + [sym_semgrep_named_ellipsis] = ACTIONS(3637), + }, + [871] = { + [ts_builtin_sym_end] = ACTIONS(3404), + [sym_identifier] = ACTIONS(3402), + [aux_sym_preproc_include_token1] = ACTIONS(3402), + [aux_sym_preproc_def_token1] = ACTIONS(3402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3404), + [aux_sym_preproc_if_token1] = ACTIONS(3402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3402), + [sym_preproc_directive] = ACTIONS(3402), + [anon_sym_LPAREN2] = ACTIONS(3404), + [anon_sym_BANG] = ACTIONS(3404), + [anon_sym_TILDE] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3402), + [anon_sym_PLUS] = ACTIONS(3402), + [anon_sym_STAR] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3402), + [anon_sym___extension__] = ACTIONS(3402), + [anon_sym_typedef] = ACTIONS(3402), + [anon_sym_extern] = ACTIONS(3402), + [anon_sym___attribute__] = ACTIONS(3402), + [anon_sym_COLON_COLON] = ACTIONS(3404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3404), + [anon_sym___declspec] = ACTIONS(3402), + [anon_sym___based] = ACTIONS(3402), + [anon_sym___cdecl] = ACTIONS(3402), + [anon_sym___clrcall] = ACTIONS(3402), + [anon_sym___stdcall] = ACTIONS(3402), + [anon_sym___fastcall] = ACTIONS(3402), + [anon_sym___thiscall] = ACTIONS(3402), + [anon_sym___vectorcall] = ACTIONS(3402), + [anon_sym_LBRACE] = ACTIONS(3404), + [anon_sym_signed] = ACTIONS(3402), + [anon_sym_unsigned] = ACTIONS(3402), + [anon_sym_long] = ACTIONS(3402), + [anon_sym_short] = ACTIONS(3402), + [anon_sym_LBRACK] = ACTIONS(3402), + [anon_sym_static] = ACTIONS(3402), + [anon_sym_register] = ACTIONS(3402), + [anon_sym_inline] = ACTIONS(3402), + [anon_sym___inline] = ACTIONS(3402), + [anon_sym___inline__] = ACTIONS(3402), + [anon_sym___forceinline] = ACTIONS(3402), + [anon_sym_thread_local] = ACTIONS(3402), + [anon_sym___thread] = ACTIONS(3402), + [anon_sym_const] = ACTIONS(3402), + [anon_sym_constexpr] = ACTIONS(3402), + [anon_sym_volatile] = ACTIONS(3402), + [anon_sym_restrict] = ACTIONS(3402), + [anon_sym___restrict__] = ACTIONS(3402), + [anon_sym__Atomic] = ACTIONS(3402), + [anon_sym__Noreturn] = ACTIONS(3402), + [anon_sym_noreturn] = ACTIONS(3402), + [anon_sym_mutable] = ACTIONS(3402), + [anon_sym_constinit] = ACTIONS(3402), + [anon_sym_consteval] = ACTIONS(3402), + [sym_primitive_type] = ACTIONS(3402), + [anon_sym_enum] = ACTIONS(3402), + [anon_sym_class] = ACTIONS(3402), + [anon_sym_struct] = ACTIONS(3402), + [anon_sym_union] = ACTIONS(3402), + [anon_sym_if] = ACTIONS(3402), + [anon_sym_switch] = ACTIONS(3402), + [anon_sym_case] = ACTIONS(3402), + [anon_sym_default] = ACTIONS(3402), + [anon_sym_while] = ACTIONS(3402), + [anon_sym_do] = ACTIONS(3402), + [anon_sym_for] = ACTIONS(3402), + [anon_sym_return] = ACTIONS(3402), + [anon_sym_break] = ACTIONS(3402), + [anon_sym_continue] = ACTIONS(3402), + [anon_sym_goto] = ACTIONS(3402), + [anon_sym_not] = ACTIONS(3402), + [anon_sym_compl] = ACTIONS(3402), + [anon_sym_DASH_DASH] = ACTIONS(3404), + [anon_sym_PLUS_PLUS] = ACTIONS(3404), + [anon_sym_sizeof] = ACTIONS(3402), + [anon_sym___alignof__] = ACTIONS(3402), + [anon_sym___alignof] = ACTIONS(3402), + [anon_sym__alignof] = ACTIONS(3402), + [anon_sym_alignof] = ACTIONS(3402), + [anon_sym__Alignof] = ACTIONS(3402), + [anon_sym_offsetof] = ACTIONS(3402), + [anon_sym__Generic] = ACTIONS(3402), + [anon_sym_asm] = ACTIONS(3402), + [anon_sym___asm__] = ACTIONS(3402), + [sym_number_literal] = ACTIONS(3404), + [anon_sym_L_SQUOTE] = ACTIONS(3404), + [anon_sym_u_SQUOTE] = ACTIONS(3404), + [anon_sym_U_SQUOTE] = ACTIONS(3404), + [anon_sym_u8_SQUOTE] = ACTIONS(3404), + [anon_sym_SQUOTE] = ACTIONS(3404), + [anon_sym_L_DQUOTE] = ACTIONS(3404), + [anon_sym_u_DQUOTE] = ACTIONS(3404), + [anon_sym_U_DQUOTE] = ACTIONS(3404), + [anon_sym_u8_DQUOTE] = ACTIONS(3404), + [anon_sym_DQUOTE] = ACTIONS(3404), + [sym_true] = ACTIONS(3402), + [sym_false] = ACTIONS(3402), + [anon_sym_NULL] = ACTIONS(3402), + [anon_sym_nullptr] = ACTIONS(3402), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3402), + [anon_sym_decltype] = ACTIONS(3402), + [anon_sym_virtual] = ACTIONS(3402), + [anon_sym_alignas] = ACTIONS(3402), + [anon_sym_explicit] = ACTIONS(3402), + [anon_sym_typename] = ACTIONS(3402), + [anon_sym_template] = ACTIONS(3402), + [anon_sym_operator] = ACTIONS(3402), + [anon_sym_try] = ACTIONS(3402), + [anon_sym_delete] = ACTIONS(3402), + [anon_sym_throw] = ACTIONS(3402), + [anon_sym_namespace] = ACTIONS(3402), + [anon_sym_using] = ACTIONS(3402), + [anon_sym_static_assert] = ACTIONS(3402), + [anon_sym_concept] = ACTIONS(3402), + [anon_sym_co_return] = ACTIONS(3402), + [anon_sym_co_yield] = ACTIONS(3402), + [anon_sym_R_DQUOTE] = ACTIONS(3404), + [anon_sym_LR_DQUOTE] = ACTIONS(3404), + [anon_sym_uR_DQUOTE] = ACTIONS(3404), + [anon_sym_UR_DQUOTE] = ACTIONS(3404), + [anon_sym_u8R_DQUOTE] = ACTIONS(3404), + [anon_sym_co_await] = ACTIONS(3402), + [anon_sym_new] = ACTIONS(3402), + [anon_sym_requires] = ACTIONS(3402), + [sym_this] = ACTIONS(3402), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3404), + [sym_semgrep_named_ellipsis] = ACTIONS(3404), + }, + [872] = { + [sym_preproc_def] = STATE(2347), + [sym_preproc_function_def] = STATE(2347), + [sym_preproc_call] = STATE(2347), + [sym_preproc_if_in_field_declaration_list] = STATE(2347), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2347), + [sym_type_definition] = STATE(2347), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6437), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7306), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(812), + [sym_field_declaration] = STATE(2347), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2347), + [sym_operator_cast] = STATE(7731), + [sym_inline_method_definition] = STATE(2347), + [sym_constructor_specifiers] = STATE(1938), + [sym_operator_cast_definition] = STATE(2347), + [sym_operator_cast_declaration] = STATE(2347), + [sym_constructor_or_destructor_definition] = STATE(2347), + [sym_constructor_or_destructor_declaration] = STATE(2347), + [sym_friend_declaration] = STATE(2347), + [sym_access_specifier] = STATE(10086), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2347), + [sym_alias_declaration] = STATE(2347), + [sym_static_assert_declaration] = STATE(2347), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7731), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2347), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(812), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1938), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(4041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4043), + [aux_sym_preproc_if_token1] = ACTIONS(4045), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4049), + [sym_preproc_directive] = ACTIONS(4051), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(4053), + [anon_sym_typedef] = ACTIONS(4055), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(4190), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(4059), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(4061), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(4063), + [anon_sym_static_assert] = ACTIONS(4065), + [sym_semgrep_metavar] = ACTIONS(4067), + }, + [873] = { + [ts_builtin_sym_end] = ACTIONS(3655), + [sym_identifier] = ACTIONS(3653), + [aux_sym_preproc_include_token1] = ACTIONS(3653), + [aux_sym_preproc_def_token1] = ACTIONS(3653), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3655), + [aux_sym_preproc_if_token1] = ACTIONS(3653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3653), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3653), + [sym_preproc_directive] = ACTIONS(3653), + [anon_sym_LPAREN2] = ACTIONS(3655), + [anon_sym_BANG] = ACTIONS(3655), + [anon_sym_TILDE] = ACTIONS(3655), + [anon_sym_DASH] = ACTIONS(3653), + [anon_sym_PLUS] = ACTIONS(3653), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_AMP_AMP] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3653), + [anon_sym___extension__] = ACTIONS(3653), + [anon_sym_typedef] = ACTIONS(3653), + [anon_sym_extern] = ACTIONS(3653), + [anon_sym___attribute__] = ACTIONS(3653), + [anon_sym_COLON_COLON] = ACTIONS(3655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3655), + [anon_sym___declspec] = ACTIONS(3653), + [anon_sym___based] = ACTIONS(3653), + [anon_sym___cdecl] = ACTIONS(3653), + [anon_sym___clrcall] = ACTIONS(3653), + [anon_sym___stdcall] = ACTIONS(3653), + [anon_sym___fastcall] = ACTIONS(3653), + [anon_sym___thiscall] = ACTIONS(3653), + [anon_sym___vectorcall] = ACTIONS(3653), + [anon_sym_LBRACE] = ACTIONS(3655), + [anon_sym_signed] = ACTIONS(3653), + [anon_sym_unsigned] = ACTIONS(3653), + [anon_sym_long] = ACTIONS(3653), + [anon_sym_short] = ACTIONS(3653), + [anon_sym_LBRACK] = ACTIONS(3653), + [anon_sym_static] = ACTIONS(3653), + [anon_sym_register] = ACTIONS(3653), + [anon_sym_inline] = ACTIONS(3653), + [anon_sym___inline] = ACTIONS(3653), + [anon_sym___inline__] = ACTIONS(3653), + [anon_sym___forceinline] = ACTIONS(3653), + [anon_sym_thread_local] = ACTIONS(3653), + [anon_sym___thread] = ACTIONS(3653), + [anon_sym_const] = ACTIONS(3653), + [anon_sym_constexpr] = ACTIONS(3653), + [anon_sym_volatile] = ACTIONS(3653), + [anon_sym_restrict] = ACTIONS(3653), + [anon_sym___restrict__] = ACTIONS(3653), + [anon_sym__Atomic] = ACTIONS(3653), + [anon_sym__Noreturn] = ACTIONS(3653), + [anon_sym_noreturn] = ACTIONS(3653), + [anon_sym_mutable] = ACTIONS(3653), + [anon_sym_constinit] = ACTIONS(3653), + [anon_sym_consteval] = ACTIONS(3653), + [sym_primitive_type] = ACTIONS(3653), + [anon_sym_enum] = ACTIONS(3653), + [anon_sym_class] = ACTIONS(3653), + [anon_sym_struct] = ACTIONS(3653), + [anon_sym_union] = ACTIONS(3653), + [anon_sym_if] = ACTIONS(3653), + [anon_sym_switch] = ACTIONS(3653), + [anon_sym_case] = ACTIONS(3653), + [anon_sym_default] = ACTIONS(3653), + [anon_sym_while] = ACTIONS(3653), + [anon_sym_do] = ACTIONS(3653), + [anon_sym_for] = ACTIONS(3653), + [anon_sym_return] = ACTIONS(3653), + [anon_sym_break] = ACTIONS(3653), + [anon_sym_continue] = ACTIONS(3653), + [anon_sym_goto] = ACTIONS(3653), + [anon_sym_not] = ACTIONS(3653), + [anon_sym_compl] = ACTIONS(3653), + [anon_sym_DASH_DASH] = ACTIONS(3655), + [anon_sym_PLUS_PLUS] = ACTIONS(3655), + [anon_sym_sizeof] = ACTIONS(3653), + [anon_sym___alignof__] = ACTIONS(3653), + [anon_sym___alignof] = ACTIONS(3653), + [anon_sym__alignof] = ACTIONS(3653), + [anon_sym_alignof] = ACTIONS(3653), + [anon_sym__Alignof] = ACTIONS(3653), + [anon_sym_offsetof] = ACTIONS(3653), + [anon_sym__Generic] = ACTIONS(3653), + [anon_sym_asm] = ACTIONS(3653), + [anon_sym___asm__] = ACTIONS(3653), + [sym_number_literal] = ACTIONS(3655), + [anon_sym_L_SQUOTE] = ACTIONS(3655), + [anon_sym_u_SQUOTE] = ACTIONS(3655), + [anon_sym_U_SQUOTE] = ACTIONS(3655), + [anon_sym_u8_SQUOTE] = ACTIONS(3655), + [anon_sym_SQUOTE] = ACTIONS(3655), + [anon_sym_L_DQUOTE] = ACTIONS(3655), + [anon_sym_u_DQUOTE] = ACTIONS(3655), + [anon_sym_U_DQUOTE] = ACTIONS(3655), + [anon_sym_u8_DQUOTE] = ACTIONS(3655), + [anon_sym_DQUOTE] = ACTIONS(3655), + [sym_true] = ACTIONS(3653), + [sym_false] = ACTIONS(3653), + [anon_sym_NULL] = ACTIONS(3653), + [anon_sym_nullptr] = ACTIONS(3653), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3653), + [anon_sym_decltype] = ACTIONS(3653), + [anon_sym_virtual] = ACTIONS(3653), + [anon_sym_alignas] = ACTIONS(3653), + [anon_sym_explicit] = ACTIONS(3653), + [anon_sym_typename] = ACTIONS(3653), + [anon_sym_template] = ACTIONS(3653), + [anon_sym_operator] = ACTIONS(3653), + [anon_sym_try] = ACTIONS(3653), + [anon_sym_delete] = ACTIONS(3653), + [anon_sym_throw] = ACTIONS(3653), + [anon_sym_namespace] = ACTIONS(3653), + [anon_sym_using] = ACTIONS(3653), + [anon_sym_static_assert] = ACTIONS(3653), + [anon_sym_concept] = ACTIONS(3653), + [anon_sym_co_return] = ACTIONS(3653), + [anon_sym_co_yield] = ACTIONS(3653), + [anon_sym_R_DQUOTE] = ACTIONS(3655), + [anon_sym_LR_DQUOTE] = ACTIONS(3655), + [anon_sym_uR_DQUOTE] = ACTIONS(3655), + [anon_sym_UR_DQUOTE] = ACTIONS(3655), + [anon_sym_u8R_DQUOTE] = ACTIONS(3655), + [anon_sym_co_await] = ACTIONS(3653), + [anon_sym_new] = ACTIONS(3653), + [anon_sym_requires] = ACTIONS(3653), + [sym_this] = ACTIONS(3653), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3655), + [sym_semgrep_named_ellipsis] = ACTIONS(3655), + }, [874] = { - [ts_builtin_sym_end] = ACTIONS(3493), - [sym_identifier] = ACTIONS(3491), - [aux_sym_preproc_include_token1] = ACTIONS(3491), - [aux_sym_preproc_def_token1] = ACTIONS(3491), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3493), - [aux_sym_preproc_if_token1] = ACTIONS(3491), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3491), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3491), - [sym_preproc_directive] = ACTIONS(3491), - [anon_sym_LPAREN2] = ACTIONS(3493), - [anon_sym_BANG] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(3493), - [anon_sym_DASH] = ACTIONS(3491), - [anon_sym_PLUS] = ACTIONS(3491), - [anon_sym_STAR] = ACTIONS(3493), - [anon_sym_AMP_AMP] = ACTIONS(3493), - [anon_sym_AMP] = ACTIONS(3491), - [anon_sym___extension__] = ACTIONS(3491), - [anon_sym_typedef] = ACTIONS(3491), - [anon_sym_extern] = ACTIONS(3491), - [anon_sym___attribute__] = ACTIONS(3491), - [anon_sym_COLON_COLON] = ACTIONS(3493), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3493), - [anon_sym___declspec] = ACTIONS(3491), - [anon_sym___based] = ACTIONS(3491), - [anon_sym___cdecl] = ACTIONS(3491), - [anon_sym___clrcall] = ACTIONS(3491), - [anon_sym___stdcall] = ACTIONS(3491), - [anon_sym___fastcall] = ACTIONS(3491), - [anon_sym___thiscall] = ACTIONS(3491), - [anon_sym___vectorcall] = ACTIONS(3491), - [anon_sym_LBRACE] = ACTIONS(3493), - [anon_sym_signed] = ACTIONS(3491), - [anon_sym_unsigned] = ACTIONS(3491), - [anon_sym_long] = ACTIONS(3491), - [anon_sym_short] = ACTIONS(3491), - [anon_sym_LBRACK] = ACTIONS(3491), - [anon_sym_static] = ACTIONS(3491), - [anon_sym_register] = ACTIONS(3491), - [anon_sym_inline] = ACTIONS(3491), - [anon_sym___inline] = ACTIONS(3491), - [anon_sym___inline__] = ACTIONS(3491), - [anon_sym___forceinline] = ACTIONS(3491), - [anon_sym_thread_local] = ACTIONS(3491), - [anon_sym___thread] = ACTIONS(3491), - [anon_sym_const] = ACTIONS(3491), - [anon_sym_constexpr] = ACTIONS(3491), - [anon_sym_volatile] = ACTIONS(3491), - [anon_sym_restrict] = ACTIONS(3491), - [anon_sym___restrict__] = ACTIONS(3491), - [anon_sym__Atomic] = ACTIONS(3491), - [anon_sym__Noreturn] = ACTIONS(3491), - [anon_sym_noreturn] = ACTIONS(3491), - [anon_sym_mutable] = ACTIONS(3491), - [anon_sym_constinit] = ACTIONS(3491), - [anon_sym_consteval] = ACTIONS(3491), - [sym_primitive_type] = ACTIONS(3491), - [anon_sym_enum] = ACTIONS(3491), - [anon_sym_class] = ACTIONS(3491), - [anon_sym_struct] = ACTIONS(3491), - [anon_sym_union] = ACTIONS(3491), - [anon_sym_if] = ACTIONS(3491), - [anon_sym_switch] = ACTIONS(3491), - [anon_sym_case] = ACTIONS(3491), - [anon_sym_default] = ACTIONS(3491), - [anon_sym_while] = ACTIONS(3491), - [anon_sym_do] = ACTIONS(3491), - [anon_sym_for] = ACTIONS(3491), - [anon_sym_return] = ACTIONS(3491), - [anon_sym_break] = ACTIONS(3491), - [anon_sym_continue] = ACTIONS(3491), - [anon_sym_goto] = ACTIONS(3491), - [anon_sym_not] = ACTIONS(3491), - [anon_sym_compl] = ACTIONS(3491), - [anon_sym_DASH_DASH] = ACTIONS(3493), - [anon_sym_PLUS_PLUS] = ACTIONS(3493), - [anon_sym_sizeof] = ACTIONS(3491), - [anon_sym___alignof__] = ACTIONS(3491), - [anon_sym___alignof] = ACTIONS(3491), - [anon_sym__alignof] = ACTIONS(3491), - [anon_sym_alignof] = ACTIONS(3491), - [anon_sym__Alignof] = ACTIONS(3491), - [anon_sym_offsetof] = ACTIONS(3491), - [anon_sym__Generic] = ACTIONS(3491), - [anon_sym_asm] = ACTIONS(3491), - [anon_sym___asm__] = ACTIONS(3491), - [sym_number_literal] = ACTIONS(3493), - [anon_sym_L_SQUOTE] = ACTIONS(3493), - [anon_sym_u_SQUOTE] = ACTIONS(3493), - [anon_sym_U_SQUOTE] = ACTIONS(3493), - [anon_sym_u8_SQUOTE] = ACTIONS(3493), - [anon_sym_SQUOTE] = ACTIONS(3493), - [anon_sym_L_DQUOTE] = ACTIONS(3493), - [anon_sym_u_DQUOTE] = ACTIONS(3493), - [anon_sym_U_DQUOTE] = ACTIONS(3493), - [anon_sym_u8_DQUOTE] = ACTIONS(3493), - [anon_sym_DQUOTE] = ACTIONS(3493), - [sym_true] = ACTIONS(3491), - [sym_false] = ACTIONS(3491), - [anon_sym_NULL] = ACTIONS(3491), - [anon_sym_nullptr] = ACTIONS(3491), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3491), - [anon_sym_decltype] = ACTIONS(3491), - [anon_sym_virtual] = ACTIONS(3491), - [anon_sym_alignas] = ACTIONS(3491), - [anon_sym_explicit] = ACTIONS(3491), - [anon_sym_typename] = ACTIONS(3491), - [anon_sym_template] = ACTIONS(3491), - [anon_sym_operator] = ACTIONS(3491), - [anon_sym_try] = ACTIONS(3491), - [anon_sym_delete] = ACTIONS(3491), - [anon_sym_throw] = ACTIONS(3491), - [anon_sym_namespace] = ACTIONS(3491), - [anon_sym_using] = ACTIONS(3491), - [anon_sym_static_assert] = ACTIONS(3491), - [anon_sym_concept] = ACTIONS(3491), - [anon_sym_co_return] = ACTIONS(3491), - [anon_sym_co_yield] = ACTIONS(3491), - [anon_sym_R_DQUOTE] = ACTIONS(3493), - [anon_sym_LR_DQUOTE] = ACTIONS(3493), - [anon_sym_uR_DQUOTE] = ACTIONS(3493), - [anon_sym_UR_DQUOTE] = ACTIONS(3493), - [anon_sym_u8R_DQUOTE] = ACTIONS(3493), - [anon_sym_co_await] = ACTIONS(3491), - [anon_sym_new] = ACTIONS(3491), - [anon_sym_requires] = ACTIONS(3491), - [sym_this] = ACTIONS(3491), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3493), - [sym_semgrep_named_ellipsis] = ACTIONS(3493), + [sym_preproc_def] = STATE(2347), + [sym_preproc_function_def] = STATE(2347), + [sym_preproc_call] = STATE(2347), + [sym_preproc_if_in_field_declaration_list] = STATE(2347), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2347), + [sym_type_definition] = STATE(2347), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6437), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7306), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(868), + [sym_field_declaration] = STATE(2347), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2347), + [sym_operator_cast] = STATE(7731), + [sym_inline_method_definition] = STATE(2347), + [sym_constructor_specifiers] = STATE(1938), + [sym_operator_cast_definition] = STATE(2347), + [sym_operator_cast_declaration] = STATE(2347), + [sym_constructor_or_destructor_definition] = STATE(2347), + [sym_constructor_or_destructor_declaration] = STATE(2347), + [sym_friend_declaration] = STATE(2347), + [sym_access_specifier] = STATE(10086), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2347), + [sym_alias_declaration] = STATE(2347), + [sym_static_assert_declaration] = STATE(2347), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7731), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2347), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(868), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1938), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(4041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4043), + [aux_sym_preproc_if_token1] = ACTIONS(4045), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4049), + [sym_preproc_directive] = ACTIONS(4051), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(4053), + [anon_sym_typedef] = ACTIONS(4055), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(4192), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(4059), + [anon_sym_operator] = ACTIONS(135), + [anon_sym_friend] = ACTIONS(4061), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(4063), + [anon_sym_static_assert] = ACTIONS(4065), + [sym_semgrep_metavar] = ACTIONS(4067), }, [875] = { - [ts_builtin_sym_end] = ACTIONS(3497), - [sym_identifier] = ACTIONS(3495), - [aux_sym_preproc_include_token1] = ACTIONS(3495), - [aux_sym_preproc_def_token1] = ACTIONS(3495), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3497), - [aux_sym_preproc_if_token1] = ACTIONS(3495), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3495), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3495), - [sym_preproc_directive] = ACTIONS(3495), - [anon_sym_LPAREN2] = ACTIONS(3497), - [anon_sym_BANG] = ACTIONS(3497), - [anon_sym_TILDE] = ACTIONS(3497), - [anon_sym_DASH] = ACTIONS(3495), - [anon_sym_PLUS] = ACTIONS(3495), - [anon_sym_STAR] = ACTIONS(3497), - [anon_sym_AMP_AMP] = ACTIONS(3497), - [anon_sym_AMP] = ACTIONS(3495), - [anon_sym___extension__] = ACTIONS(3495), - [anon_sym_typedef] = ACTIONS(3495), - [anon_sym_extern] = ACTIONS(3495), - [anon_sym___attribute__] = ACTIONS(3495), - [anon_sym_COLON_COLON] = ACTIONS(3497), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3497), - [anon_sym___declspec] = ACTIONS(3495), - [anon_sym___based] = ACTIONS(3495), - [anon_sym___cdecl] = ACTIONS(3495), - [anon_sym___clrcall] = ACTIONS(3495), - [anon_sym___stdcall] = ACTIONS(3495), - [anon_sym___fastcall] = ACTIONS(3495), - [anon_sym___thiscall] = ACTIONS(3495), - [anon_sym___vectorcall] = ACTIONS(3495), - [anon_sym_LBRACE] = ACTIONS(3497), - [anon_sym_signed] = ACTIONS(3495), - [anon_sym_unsigned] = ACTIONS(3495), - [anon_sym_long] = ACTIONS(3495), - [anon_sym_short] = ACTIONS(3495), - [anon_sym_LBRACK] = ACTIONS(3495), - [anon_sym_static] = ACTIONS(3495), - [anon_sym_register] = ACTIONS(3495), - [anon_sym_inline] = ACTIONS(3495), - [anon_sym___inline] = ACTIONS(3495), - [anon_sym___inline__] = ACTIONS(3495), - [anon_sym___forceinline] = ACTIONS(3495), - [anon_sym_thread_local] = ACTIONS(3495), - [anon_sym___thread] = ACTIONS(3495), - [anon_sym_const] = ACTIONS(3495), - [anon_sym_constexpr] = ACTIONS(3495), - [anon_sym_volatile] = ACTIONS(3495), - [anon_sym_restrict] = ACTIONS(3495), - [anon_sym___restrict__] = ACTIONS(3495), - [anon_sym__Atomic] = ACTIONS(3495), - [anon_sym__Noreturn] = ACTIONS(3495), - [anon_sym_noreturn] = ACTIONS(3495), - [anon_sym_mutable] = ACTIONS(3495), - [anon_sym_constinit] = ACTIONS(3495), - [anon_sym_consteval] = ACTIONS(3495), - [sym_primitive_type] = ACTIONS(3495), - [anon_sym_enum] = ACTIONS(3495), - [anon_sym_class] = ACTIONS(3495), - [anon_sym_struct] = ACTIONS(3495), - [anon_sym_union] = ACTIONS(3495), - [anon_sym_if] = ACTIONS(3495), - [anon_sym_switch] = ACTIONS(3495), - [anon_sym_case] = ACTIONS(3495), - [anon_sym_default] = ACTIONS(3495), - [anon_sym_while] = ACTIONS(3495), - [anon_sym_do] = ACTIONS(3495), - [anon_sym_for] = ACTIONS(3495), - [anon_sym_return] = ACTIONS(3495), - [anon_sym_break] = ACTIONS(3495), - [anon_sym_continue] = ACTIONS(3495), - [anon_sym_goto] = ACTIONS(3495), - [anon_sym_not] = ACTIONS(3495), - [anon_sym_compl] = ACTIONS(3495), - [anon_sym_DASH_DASH] = ACTIONS(3497), - [anon_sym_PLUS_PLUS] = ACTIONS(3497), - [anon_sym_sizeof] = ACTIONS(3495), - [anon_sym___alignof__] = ACTIONS(3495), - [anon_sym___alignof] = ACTIONS(3495), - [anon_sym__alignof] = ACTIONS(3495), - [anon_sym_alignof] = ACTIONS(3495), - [anon_sym__Alignof] = ACTIONS(3495), - [anon_sym_offsetof] = ACTIONS(3495), - [anon_sym__Generic] = ACTIONS(3495), - [anon_sym_asm] = ACTIONS(3495), - [anon_sym___asm__] = ACTIONS(3495), - [sym_number_literal] = ACTIONS(3497), - [anon_sym_L_SQUOTE] = ACTIONS(3497), - [anon_sym_u_SQUOTE] = ACTIONS(3497), - [anon_sym_U_SQUOTE] = ACTIONS(3497), - [anon_sym_u8_SQUOTE] = ACTIONS(3497), - [anon_sym_SQUOTE] = ACTIONS(3497), - [anon_sym_L_DQUOTE] = ACTIONS(3497), - [anon_sym_u_DQUOTE] = ACTIONS(3497), - [anon_sym_U_DQUOTE] = ACTIONS(3497), - [anon_sym_u8_DQUOTE] = ACTIONS(3497), - [anon_sym_DQUOTE] = ACTIONS(3497), - [sym_true] = ACTIONS(3495), - [sym_false] = ACTIONS(3495), - [anon_sym_NULL] = ACTIONS(3495), - [anon_sym_nullptr] = ACTIONS(3495), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3495), - [anon_sym_decltype] = ACTIONS(3495), - [anon_sym_virtual] = ACTIONS(3495), - [anon_sym_alignas] = ACTIONS(3495), - [anon_sym_explicit] = ACTIONS(3495), - [anon_sym_typename] = ACTIONS(3495), - [anon_sym_template] = ACTIONS(3495), - [anon_sym_operator] = ACTIONS(3495), - [anon_sym_try] = ACTIONS(3495), - [anon_sym_delete] = ACTIONS(3495), - [anon_sym_throw] = ACTIONS(3495), - [anon_sym_namespace] = ACTIONS(3495), - [anon_sym_using] = ACTIONS(3495), - [anon_sym_static_assert] = ACTIONS(3495), - [anon_sym_concept] = ACTIONS(3495), - [anon_sym_co_return] = ACTIONS(3495), - [anon_sym_co_yield] = ACTIONS(3495), - [anon_sym_R_DQUOTE] = ACTIONS(3497), - [anon_sym_LR_DQUOTE] = ACTIONS(3497), - [anon_sym_uR_DQUOTE] = ACTIONS(3497), - [anon_sym_UR_DQUOTE] = ACTIONS(3497), - [anon_sym_u8R_DQUOTE] = ACTIONS(3497), - [anon_sym_co_await] = ACTIONS(3495), - [anon_sym_new] = ACTIONS(3495), - [anon_sym_requires] = ACTIONS(3495), - [sym_this] = ACTIONS(3495), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3497), - [sym_semgrep_named_ellipsis] = ACTIONS(3497), + [ts_builtin_sym_end] = ACTIONS(3583), + [sym_identifier] = ACTIONS(3581), + [aux_sym_preproc_include_token1] = ACTIONS(3581), + [aux_sym_preproc_def_token1] = ACTIONS(3581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3583), + [aux_sym_preproc_if_token1] = ACTIONS(3581), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3581), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3581), + [sym_preproc_directive] = ACTIONS(3581), + [anon_sym_LPAREN2] = ACTIONS(3583), + [anon_sym_BANG] = ACTIONS(3583), + [anon_sym_TILDE] = ACTIONS(3583), + [anon_sym_DASH] = ACTIONS(3581), + [anon_sym_PLUS] = ACTIONS(3581), + [anon_sym_STAR] = ACTIONS(3583), + [anon_sym_AMP_AMP] = ACTIONS(3583), + [anon_sym_AMP] = ACTIONS(3581), + [anon_sym___extension__] = ACTIONS(3581), + [anon_sym_typedef] = ACTIONS(3581), + [anon_sym_extern] = ACTIONS(3581), + [anon_sym___attribute__] = ACTIONS(3581), + [anon_sym_COLON_COLON] = ACTIONS(3583), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3583), + [anon_sym___declspec] = ACTIONS(3581), + [anon_sym___based] = ACTIONS(3581), + [anon_sym___cdecl] = ACTIONS(3581), + [anon_sym___clrcall] = ACTIONS(3581), + [anon_sym___stdcall] = ACTIONS(3581), + [anon_sym___fastcall] = ACTIONS(3581), + [anon_sym___thiscall] = ACTIONS(3581), + [anon_sym___vectorcall] = ACTIONS(3581), + [anon_sym_LBRACE] = ACTIONS(3583), + [anon_sym_signed] = ACTIONS(3581), + [anon_sym_unsigned] = ACTIONS(3581), + [anon_sym_long] = ACTIONS(3581), + [anon_sym_short] = ACTIONS(3581), + [anon_sym_LBRACK] = ACTIONS(3581), + [anon_sym_static] = ACTIONS(3581), + [anon_sym_register] = ACTIONS(3581), + [anon_sym_inline] = ACTIONS(3581), + [anon_sym___inline] = ACTIONS(3581), + [anon_sym___inline__] = ACTIONS(3581), + [anon_sym___forceinline] = ACTIONS(3581), + [anon_sym_thread_local] = ACTIONS(3581), + [anon_sym___thread] = ACTIONS(3581), + [anon_sym_const] = ACTIONS(3581), + [anon_sym_constexpr] = ACTIONS(3581), + [anon_sym_volatile] = ACTIONS(3581), + [anon_sym_restrict] = ACTIONS(3581), + [anon_sym___restrict__] = ACTIONS(3581), + [anon_sym__Atomic] = ACTIONS(3581), + [anon_sym__Noreturn] = ACTIONS(3581), + [anon_sym_noreturn] = ACTIONS(3581), + [anon_sym_mutable] = ACTIONS(3581), + [anon_sym_constinit] = ACTIONS(3581), + [anon_sym_consteval] = ACTIONS(3581), + [sym_primitive_type] = ACTIONS(3581), + [anon_sym_enum] = ACTIONS(3581), + [anon_sym_class] = ACTIONS(3581), + [anon_sym_struct] = ACTIONS(3581), + [anon_sym_union] = ACTIONS(3581), + [anon_sym_if] = ACTIONS(3581), + [anon_sym_switch] = ACTIONS(3581), + [anon_sym_case] = ACTIONS(3581), + [anon_sym_default] = ACTIONS(3581), + [anon_sym_while] = ACTIONS(3581), + [anon_sym_do] = ACTIONS(3581), + [anon_sym_for] = ACTIONS(3581), + [anon_sym_return] = ACTIONS(3581), + [anon_sym_break] = ACTIONS(3581), + [anon_sym_continue] = ACTIONS(3581), + [anon_sym_goto] = ACTIONS(3581), + [anon_sym_not] = ACTIONS(3581), + [anon_sym_compl] = ACTIONS(3581), + [anon_sym_DASH_DASH] = ACTIONS(3583), + [anon_sym_PLUS_PLUS] = ACTIONS(3583), + [anon_sym_sizeof] = ACTIONS(3581), + [anon_sym___alignof__] = ACTIONS(3581), + [anon_sym___alignof] = ACTIONS(3581), + [anon_sym__alignof] = ACTIONS(3581), + [anon_sym_alignof] = ACTIONS(3581), + [anon_sym__Alignof] = ACTIONS(3581), + [anon_sym_offsetof] = ACTIONS(3581), + [anon_sym__Generic] = ACTIONS(3581), + [anon_sym_asm] = ACTIONS(3581), + [anon_sym___asm__] = ACTIONS(3581), + [sym_number_literal] = ACTIONS(3583), + [anon_sym_L_SQUOTE] = ACTIONS(3583), + [anon_sym_u_SQUOTE] = ACTIONS(3583), + [anon_sym_U_SQUOTE] = ACTIONS(3583), + [anon_sym_u8_SQUOTE] = ACTIONS(3583), + [anon_sym_SQUOTE] = ACTIONS(3583), + [anon_sym_L_DQUOTE] = ACTIONS(3583), + [anon_sym_u_DQUOTE] = ACTIONS(3583), + [anon_sym_U_DQUOTE] = ACTIONS(3583), + [anon_sym_u8_DQUOTE] = ACTIONS(3583), + [anon_sym_DQUOTE] = ACTIONS(3583), + [sym_true] = ACTIONS(3581), + [sym_false] = ACTIONS(3581), + [anon_sym_NULL] = ACTIONS(3581), + [anon_sym_nullptr] = ACTIONS(3581), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3581), + [anon_sym_decltype] = ACTIONS(3581), + [anon_sym_virtual] = ACTIONS(3581), + [anon_sym_alignas] = ACTIONS(3581), + [anon_sym_explicit] = ACTIONS(3581), + [anon_sym_typename] = ACTIONS(3581), + [anon_sym_template] = ACTIONS(3581), + [anon_sym_operator] = ACTIONS(3581), + [anon_sym_try] = ACTIONS(3581), + [anon_sym_delete] = ACTIONS(3581), + [anon_sym_throw] = ACTIONS(3581), + [anon_sym_namespace] = ACTIONS(3581), + [anon_sym_using] = ACTIONS(3581), + [anon_sym_static_assert] = ACTIONS(3581), + [anon_sym_concept] = ACTIONS(3581), + [anon_sym_co_return] = ACTIONS(3581), + [anon_sym_co_yield] = ACTIONS(3581), + [anon_sym_R_DQUOTE] = ACTIONS(3583), + [anon_sym_LR_DQUOTE] = ACTIONS(3583), + [anon_sym_uR_DQUOTE] = ACTIONS(3583), + [anon_sym_UR_DQUOTE] = ACTIONS(3583), + [anon_sym_u8R_DQUOTE] = ACTIONS(3583), + [anon_sym_co_await] = ACTIONS(3581), + [anon_sym_new] = ACTIONS(3581), + [anon_sym_requires] = ACTIONS(3581), + [sym_this] = ACTIONS(3581), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3583), + [sym_semgrep_named_ellipsis] = ACTIONS(3583), }, [876] = { - [ts_builtin_sym_end] = ACTIONS(3501), - [sym_identifier] = ACTIONS(3499), - [aux_sym_preproc_include_token1] = ACTIONS(3499), - [aux_sym_preproc_def_token1] = ACTIONS(3499), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3501), - [aux_sym_preproc_if_token1] = ACTIONS(3499), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3499), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3499), - [sym_preproc_directive] = ACTIONS(3499), - [anon_sym_LPAREN2] = ACTIONS(3501), - [anon_sym_BANG] = ACTIONS(3501), - [anon_sym_TILDE] = ACTIONS(3501), - [anon_sym_DASH] = ACTIONS(3499), - [anon_sym_PLUS] = ACTIONS(3499), - [anon_sym_STAR] = ACTIONS(3501), - [anon_sym_AMP_AMP] = ACTIONS(3501), - [anon_sym_AMP] = ACTIONS(3499), - [anon_sym___extension__] = ACTIONS(3499), - [anon_sym_typedef] = ACTIONS(3499), - [anon_sym_extern] = ACTIONS(3499), - [anon_sym___attribute__] = ACTIONS(3499), - [anon_sym_COLON_COLON] = ACTIONS(3501), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3501), - [anon_sym___declspec] = ACTIONS(3499), - [anon_sym___based] = ACTIONS(3499), - [anon_sym___cdecl] = ACTIONS(3499), - [anon_sym___clrcall] = ACTIONS(3499), - [anon_sym___stdcall] = ACTIONS(3499), - [anon_sym___fastcall] = ACTIONS(3499), - [anon_sym___thiscall] = ACTIONS(3499), - [anon_sym___vectorcall] = ACTIONS(3499), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_signed] = ACTIONS(3499), - [anon_sym_unsigned] = ACTIONS(3499), - [anon_sym_long] = ACTIONS(3499), - [anon_sym_short] = ACTIONS(3499), - [anon_sym_LBRACK] = ACTIONS(3499), - [anon_sym_static] = ACTIONS(3499), - [anon_sym_register] = ACTIONS(3499), - [anon_sym_inline] = ACTIONS(3499), - [anon_sym___inline] = ACTIONS(3499), - [anon_sym___inline__] = ACTIONS(3499), - [anon_sym___forceinline] = ACTIONS(3499), - [anon_sym_thread_local] = ACTIONS(3499), - [anon_sym___thread] = ACTIONS(3499), - [anon_sym_const] = ACTIONS(3499), - [anon_sym_constexpr] = ACTIONS(3499), - [anon_sym_volatile] = ACTIONS(3499), - [anon_sym_restrict] = ACTIONS(3499), - [anon_sym___restrict__] = ACTIONS(3499), - [anon_sym__Atomic] = ACTIONS(3499), - [anon_sym__Noreturn] = ACTIONS(3499), - [anon_sym_noreturn] = ACTIONS(3499), - [anon_sym_mutable] = ACTIONS(3499), - [anon_sym_constinit] = ACTIONS(3499), - [anon_sym_consteval] = ACTIONS(3499), - [sym_primitive_type] = ACTIONS(3499), - [anon_sym_enum] = ACTIONS(3499), - [anon_sym_class] = ACTIONS(3499), - [anon_sym_struct] = ACTIONS(3499), - [anon_sym_union] = ACTIONS(3499), - [anon_sym_if] = ACTIONS(3499), - [anon_sym_switch] = ACTIONS(3499), - [anon_sym_case] = ACTIONS(3499), - [anon_sym_default] = ACTIONS(3499), - [anon_sym_while] = ACTIONS(3499), - [anon_sym_do] = ACTIONS(3499), - [anon_sym_for] = ACTIONS(3499), - [anon_sym_return] = ACTIONS(3499), - [anon_sym_break] = ACTIONS(3499), - [anon_sym_continue] = ACTIONS(3499), - [anon_sym_goto] = ACTIONS(3499), - [anon_sym_not] = ACTIONS(3499), - [anon_sym_compl] = ACTIONS(3499), - [anon_sym_DASH_DASH] = ACTIONS(3501), - [anon_sym_PLUS_PLUS] = ACTIONS(3501), - [anon_sym_sizeof] = ACTIONS(3499), - [anon_sym___alignof__] = ACTIONS(3499), - [anon_sym___alignof] = ACTIONS(3499), - [anon_sym__alignof] = ACTIONS(3499), - [anon_sym_alignof] = ACTIONS(3499), - [anon_sym__Alignof] = ACTIONS(3499), - [anon_sym_offsetof] = ACTIONS(3499), - [anon_sym__Generic] = ACTIONS(3499), - [anon_sym_asm] = ACTIONS(3499), - [anon_sym___asm__] = ACTIONS(3499), - [sym_number_literal] = ACTIONS(3501), - [anon_sym_L_SQUOTE] = ACTIONS(3501), - [anon_sym_u_SQUOTE] = ACTIONS(3501), - [anon_sym_U_SQUOTE] = ACTIONS(3501), - [anon_sym_u8_SQUOTE] = ACTIONS(3501), - [anon_sym_SQUOTE] = ACTIONS(3501), - [anon_sym_L_DQUOTE] = ACTIONS(3501), - [anon_sym_u_DQUOTE] = ACTIONS(3501), - [anon_sym_U_DQUOTE] = ACTIONS(3501), - [anon_sym_u8_DQUOTE] = ACTIONS(3501), - [anon_sym_DQUOTE] = ACTIONS(3501), - [sym_true] = ACTIONS(3499), - [sym_false] = ACTIONS(3499), - [anon_sym_NULL] = ACTIONS(3499), - [anon_sym_nullptr] = ACTIONS(3499), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3499), - [anon_sym_decltype] = ACTIONS(3499), - [anon_sym_virtual] = ACTIONS(3499), - [anon_sym_alignas] = ACTIONS(3499), - [anon_sym_explicit] = ACTIONS(3499), - [anon_sym_typename] = ACTIONS(3499), - [anon_sym_template] = ACTIONS(3499), - [anon_sym_operator] = ACTIONS(3499), - [anon_sym_try] = ACTIONS(3499), - [anon_sym_delete] = ACTIONS(3499), - [anon_sym_throw] = ACTIONS(3499), - [anon_sym_namespace] = ACTIONS(3499), - [anon_sym_using] = ACTIONS(3499), - [anon_sym_static_assert] = ACTIONS(3499), - [anon_sym_concept] = ACTIONS(3499), - [anon_sym_co_return] = ACTIONS(3499), - [anon_sym_co_yield] = ACTIONS(3499), - [anon_sym_R_DQUOTE] = ACTIONS(3501), - [anon_sym_LR_DQUOTE] = ACTIONS(3501), - [anon_sym_uR_DQUOTE] = ACTIONS(3501), - [anon_sym_UR_DQUOTE] = ACTIONS(3501), - [anon_sym_u8R_DQUOTE] = ACTIONS(3501), - [anon_sym_co_await] = ACTIONS(3499), - [anon_sym_new] = ACTIONS(3499), - [anon_sym_requires] = ACTIONS(3499), - [sym_this] = ACTIONS(3499), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3501), - [sym_semgrep_named_ellipsis] = ACTIONS(3501), + [ts_builtin_sym_end] = ACTIONS(3663), + [sym_identifier] = ACTIONS(3661), + [aux_sym_preproc_include_token1] = ACTIONS(3661), + [aux_sym_preproc_def_token1] = ACTIONS(3661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3663), + [aux_sym_preproc_if_token1] = ACTIONS(3661), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3661), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3661), + [sym_preproc_directive] = ACTIONS(3661), + [anon_sym_LPAREN2] = ACTIONS(3663), + [anon_sym_BANG] = ACTIONS(3663), + [anon_sym_TILDE] = ACTIONS(3663), + [anon_sym_DASH] = ACTIONS(3661), + [anon_sym_PLUS] = ACTIONS(3661), + [anon_sym_STAR] = ACTIONS(3663), + [anon_sym_AMP_AMP] = ACTIONS(3663), + [anon_sym_AMP] = ACTIONS(3661), + [anon_sym___extension__] = ACTIONS(3661), + [anon_sym_typedef] = ACTIONS(3661), + [anon_sym_extern] = ACTIONS(3661), + [anon_sym___attribute__] = ACTIONS(3661), + [anon_sym_COLON_COLON] = ACTIONS(3663), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3663), + [anon_sym___declspec] = ACTIONS(3661), + [anon_sym___based] = ACTIONS(3661), + [anon_sym___cdecl] = ACTIONS(3661), + [anon_sym___clrcall] = ACTIONS(3661), + [anon_sym___stdcall] = ACTIONS(3661), + [anon_sym___fastcall] = ACTIONS(3661), + [anon_sym___thiscall] = ACTIONS(3661), + [anon_sym___vectorcall] = ACTIONS(3661), + [anon_sym_LBRACE] = ACTIONS(3663), + [anon_sym_signed] = ACTIONS(3661), + [anon_sym_unsigned] = ACTIONS(3661), + [anon_sym_long] = ACTIONS(3661), + [anon_sym_short] = ACTIONS(3661), + [anon_sym_LBRACK] = ACTIONS(3661), + [anon_sym_static] = ACTIONS(3661), + [anon_sym_register] = ACTIONS(3661), + [anon_sym_inline] = ACTIONS(3661), + [anon_sym___inline] = ACTIONS(3661), + [anon_sym___inline__] = ACTIONS(3661), + [anon_sym___forceinline] = ACTIONS(3661), + [anon_sym_thread_local] = ACTIONS(3661), + [anon_sym___thread] = ACTIONS(3661), + [anon_sym_const] = ACTIONS(3661), + [anon_sym_constexpr] = ACTIONS(3661), + [anon_sym_volatile] = ACTIONS(3661), + [anon_sym_restrict] = ACTIONS(3661), + [anon_sym___restrict__] = ACTIONS(3661), + [anon_sym__Atomic] = ACTIONS(3661), + [anon_sym__Noreturn] = ACTIONS(3661), + [anon_sym_noreturn] = ACTIONS(3661), + [anon_sym_mutable] = ACTIONS(3661), + [anon_sym_constinit] = ACTIONS(3661), + [anon_sym_consteval] = ACTIONS(3661), + [sym_primitive_type] = ACTIONS(3661), + [anon_sym_enum] = ACTIONS(3661), + [anon_sym_class] = ACTIONS(3661), + [anon_sym_struct] = ACTIONS(3661), + [anon_sym_union] = ACTIONS(3661), + [anon_sym_if] = ACTIONS(3661), + [anon_sym_switch] = ACTIONS(3661), + [anon_sym_case] = ACTIONS(3661), + [anon_sym_default] = ACTIONS(3661), + [anon_sym_while] = ACTIONS(3661), + [anon_sym_do] = ACTIONS(3661), + [anon_sym_for] = ACTIONS(3661), + [anon_sym_return] = ACTIONS(3661), + [anon_sym_break] = ACTIONS(3661), + [anon_sym_continue] = ACTIONS(3661), + [anon_sym_goto] = ACTIONS(3661), + [anon_sym_not] = ACTIONS(3661), + [anon_sym_compl] = ACTIONS(3661), + [anon_sym_DASH_DASH] = ACTIONS(3663), + [anon_sym_PLUS_PLUS] = ACTIONS(3663), + [anon_sym_sizeof] = ACTIONS(3661), + [anon_sym___alignof__] = ACTIONS(3661), + [anon_sym___alignof] = ACTIONS(3661), + [anon_sym__alignof] = ACTIONS(3661), + [anon_sym_alignof] = ACTIONS(3661), + [anon_sym__Alignof] = ACTIONS(3661), + [anon_sym_offsetof] = ACTIONS(3661), + [anon_sym__Generic] = ACTIONS(3661), + [anon_sym_asm] = ACTIONS(3661), + [anon_sym___asm__] = ACTIONS(3661), + [sym_number_literal] = ACTIONS(3663), + [anon_sym_L_SQUOTE] = ACTIONS(3663), + [anon_sym_u_SQUOTE] = ACTIONS(3663), + [anon_sym_U_SQUOTE] = ACTIONS(3663), + [anon_sym_u8_SQUOTE] = ACTIONS(3663), + [anon_sym_SQUOTE] = ACTIONS(3663), + [anon_sym_L_DQUOTE] = ACTIONS(3663), + [anon_sym_u_DQUOTE] = ACTIONS(3663), + [anon_sym_U_DQUOTE] = ACTIONS(3663), + [anon_sym_u8_DQUOTE] = ACTIONS(3663), + [anon_sym_DQUOTE] = ACTIONS(3663), + [sym_true] = ACTIONS(3661), + [sym_false] = ACTIONS(3661), + [anon_sym_NULL] = ACTIONS(3661), + [anon_sym_nullptr] = ACTIONS(3661), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3661), + [anon_sym_decltype] = ACTIONS(3661), + [anon_sym_virtual] = ACTIONS(3661), + [anon_sym_alignas] = ACTIONS(3661), + [anon_sym_explicit] = ACTIONS(3661), + [anon_sym_typename] = ACTIONS(3661), + [anon_sym_template] = ACTIONS(3661), + [anon_sym_operator] = ACTIONS(3661), + [anon_sym_try] = ACTIONS(3661), + [anon_sym_delete] = ACTIONS(3661), + [anon_sym_throw] = ACTIONS(3661), + [anon_sym_namespace] = ACTIONS(3661), + [anon_sym_using] = ACTIONS(3661), + [anon_sym_static_assert] = ACTIONS(3661), + [anon_sym_concept] = ACTIONS(3661), + [anon_sym_co_return] = ACTIONS(3661), + [anon_sym_co_yield] = ACTIONS(3661), + [anon_sym_R_DQUOTE] = ACTIONS(3663), + [anon_sym_LR_DQUOTE] = ACTIONS(3663), + [anon_sym_uR_DQUOTE] = ACTIONS(3663), + [anon_sym_UR_DQUOTE] = ACTIONS(3663), + [anon_sym_u8R_DQUOTE] = ACTIONS(3663), + [anon_sym_co_await] = ACTIONS(3661), + [anon_sym_new] = ACTIONS(3661), + [anon_sym_requires] = ACTIONS(3661), + [sym_this] = ACTIONS(3661), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3663), + [sym_semgrep_named_ellipsis] = ACTIONS(3663), }, [877] = { + [ts_builtin_sym_end] = ACTIONS(3511), + [sym_identifier] = ACTIONS(3509), + [aux_sym_preproc_include_token1] = ACTIONS(3509), + [aux_sym_preproc_def_token1] = ACTIONS(3509), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3511), + [aux_sym_preproc_if_token1] = ACTIONS(3509), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3509), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3509), + [sym_preproc_directive] = ACTIONS(3509), + [anon_sym_LPAREN2] = ACTIONS(3511), + [anon_sym_BANG] = ACTIONS(3511), + [anon_sym_TILDE] = ACTIONS(3511), + [anon_sym_DASH] = ACTIONS(3509), + [anon_sym_PLUS] = ACTIONS(3509), + [anon_sym_STAR] = ACTIONS(3511), + [anon_sym_AMP_AMP] = ACTIONS(3511), + [anon_sym_AMP] = ACTIONS(3509), + [anon_sym___extension__] = ACTIONS(3509), + [anon_sym_typedef] = 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___cdecl] = ACTIONS(3509), + [anon_sym___clrcall] = ACTIONS(3509), + [anon_sym___stdcall] = ACTIONS(3509), + [anon_sym___fastcall] = ACTIONS(3509), + [anon_sym___thiscall] = ACTIONS(3509), + [anon_sym___vectorcall] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3511), + [anon_sym_signed] = ACTIONS(3509), + [anon_sym_unsigned] = ACTIONS(3509), + [anon_sym_long] = ACTIONS(3509), + [anon_sym_short] = ACTIONS(3509), + [anon_sym_LBRACK] = ACTIONS(3509), + [anon_sym_static] = ACTIONS(3509), + [anon_sym_register] = ACTIONS(3509), + [anon_sym_inline] = ACTIONS(3509), + [anon_sym___inline] = ACTIONS(3509), + [anon_sym___inline__] = ACTIONS(3509), + [anon_sym___forceinline] = ACTIONS(3509), + [anon_sym_thread_local] = ACTIONS(3509), + [anon_sym___thread] = ACTIONS(3509), + [anon_sym_const] = ACTIONS(3509), + [anon_sym_constexpr] = ACTIONS(3509), + [anon_sym_volatile] = ACTIONS(3509), + [anon_sym_restrict] = ACTIONS(3509), + [anon_sym___restrict__] = ACTIONS(3509), + [anon_sym__Atomic] = ACTIONS(3509), + [anon_sym__Noreturn] = ACTIONS(3509), + [anon_sym_noreturn] = ACTIONS(3509), + [anon_sym_mutable] = ACTIONS(3509), + [anon_sym_constinit] = ACTIONS(3509), + [anon_sym_consteval] = ACTIONS(3509), + [sym_primitive_type] = ACTIONS(3509), + [anon_sym_enum] = ACTIONS(3509), + [anon_sym_class] = ACTIONS(3509), + [anon_sym_struct] = ACTIONS(3509), + [anon_sym_union] = ACTIONS(3509), + [anon_sym_if] = ACTIONS(3509), + [anon_sym_switch] = ACTIONS(3509), + [anon_sym_case] = ACTIONS(3509), + [anon_sym_default] = ACTIONS(3509), + [anon_sym_while] = ACTIONS(3509), + [anon_sym_do] = ACTIONS(3509), + [anon_sym_for] = ACTIONS(3509), + [anon_sym_return] = ACTIONS(3509), + [anon_sym_break] = ACTIONS(3509), + [anon_sym_continue] = ACTIONS(3509), + [anon_sym_goto] = ACTIONS(3509), + [anon_sym_not] = ACTIONS(3509), + [anon_sym_compl] = ACTIONS(3509), + [anon_sym_DASH_DASH] = ACTIONS(3511), + [anon_sym_PLUS_PLUS] = ACTIONS(3511), + [anon_sym_sizeof] = ACTIONS(3509), + [anon_sym___alignof__] = ACTIONS(3509), + [anon_sym___alignof] = ACTIONS(3509), + [anon_sym__alignof] = ACTIONS(3509), + [anon_sym_alignof] = ACTIONS(3509), + [anon_sym__Alignof] = ACTIONS(3509), + [anon_sym_offsetof] = ACTIONS(3509), + [anon_sym__Generic] = ACTIONS(3509), + [anon_sym_asm] = ACTIONS(3509), + [anon_sym___asm__] = ACTIONS(3509), + [sym_number_literal] = ACTIONS(3511), + [anon_sym_L_SQUOTE] = ACTIONS(3511), + [anon_sym_u_SQUOTE] = ACTIONS(3511), + [anon_sym_U_SQUOTE] = ACTIONS(3511), + [anon_sym_u8_SQUOTE] = ACTIONS(3511), + [anon_sym_SQUOTE] = ACTIONS(3511), + [anon_sym_L_DQUOTE] = ACTIONS(3511), + [anon_sym_u_DQUOTE] = ACTIONS(3511), + [anon_sym_U_DQUOTE] = ACTIONS(3511), + [anon_sym_u8_DQUOTE] = ACTIONS(3511), + [anon_sym_DQUOTE] = ACTIONS(3511), + [sym_true] = ACTIONS(3509), + [sym_false] = ACTIONS(3509), + [anon_sym_NULL] = ACTIONS(3509), + [anon_sym_nullptr] = ACTIONS(3509), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3509), + [anon_sym_decltype] = ACTIONS(3509), + [anon_sym_virtual] = ACTIONS(3509), + [anon_sym_alignas] = ACTIONS(3509), + [anon_sym_explicit] = ACTIONS(3509), + [anon_sym_typename] = ACTIONS(3509), + [anon_sym_template] = ACTIONS(3509), + [anon_sym_operator] = ACTIONS(3509), + [anon_sym_try] = ACTIONS(3509), + [anon_sym_delete] = ACTIONS(3509), + [anon_sym_throw] = ACTIONS(3509), + [anon_sym_namespace] = ACTIONS(3509), + [anon_sym_using] = ACTIONS(3509), + [anon_sym_static_assert] = ACTIONS(3509), + [anon_sym_concept] = ACTIONS(3509), + [anon_sym_co_return] = ACTIONS(3509), + [anon_sym_co_yield] = ACTIONS(3509), + [anon_sym_R_DQUOTE] = ACTIONS(3511), + [anon_sym_LR_DQUOTE] = ACTIONS(3511), + [anon_sym_uR_DQUOTE] = ACTIONS(3511), + [anon_sym_UR_DQUOTE] = ACTIONS(3511), + [anon_sym_u8R_DQUOTE] = ACTIONS(3511), + [anon_sym_co_await] = ACTIONS(3509), + [anon_sym_new] = ACTIONS(3509), + [anon_sym_requires] = ACTIONS(3509), + [sym_this] = ACTIONS(3509), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3511), + [sym_semgrep_named_ellipsis] = ACTIONS(3511), + }, + [878] = { + [ts_builtin_sym_end] = ACTIONS(3515), + [sym_identifier] = ACTIONS(3513), + [aux_sym_preproc_include_token1] = ACTIONS(3513), + [aux_sym_preproc_def_token1] = ACTIONS(3513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3515), + [aux_sym_preproc_if_token1] = ACTIONS(3513), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3513), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3513), + [sym_preproc_directive] = ACTIONS(3513), + [anon_sym_LPAREN2] = ACTIONS(3515), + [anon_sym_BANG] = ACTIONS(3515), + [anon_sym_TILDE] = ACTIONS(3515), + [anon_sym_DASH] = ACTIONS(3513), + [anon_sym_PLUS] = ACTIONS(3513), + [anon_sym_STAR] = ACTIONS(3515), + [anon_sym_AMP_AMP] = ACTIONS(3515), + [anon_sym_AMP] = ACTIONS(3513), + [anon_sym___extension__] = ACTIONS(3513), + [anon_sym_typedef] = ACTIONS(3513), + [anon_sym_extern] = ACTIONS(3513), + [anon_sym___attribute__] = ACTIONS(3513), + [anon_sym_COLON_COLON] = ACTIONS(3515), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3515), + [anon_sym___declspec] = ACTIONS(3513), + [anon_sym___based] = ACTIONS(3513), + [anon_sym___cdecl] = ACTIONS(3513), + [anon_sym___clrcall] = ACTIONS(3513), + [anon_sym___stdcall] = ACTIONS(3513), + [anon_sym___fastcall] = ACTIONS(3513), + [anon_sym___thiscall] = ACTIONS(3513), + [anon_sym___vectorcall] = ACTIONS(3513), + [anon_sym_LBRACE] = ACTIONS(3515), + [anon_sym_signed] = ACTIONS(3513), + [anon_sym_unsigned] = ACTIONS(3513), + [anon_sym_long] = ACTIONS(3513), + [anon_sym_short] = ACTIONS(3513), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_static] = ACTIONS(3513), + [anon_sym_register] = ACTIONS(3513), + [anon_sym_inline] = ACTIONS(3513), + [anon_sym___inline] = ACTIONS(3513), + [anon_sym___inline__] = ACTIONS(3513), + [anon_sym___forceinline] = ACTIONS(3513), + [anon_sym_thread_local] = ACTIONS(3513), + [anon_sym___thread] = ACTIONS(3513), + [anon_sym_const] = ACTIONS(3513), + [anon_sym_constexpr] = ACTIONS(3513), + [anon_sym_volatile] = ACTIONS(3513), + [anon_sym_restrict] = ACTIONS(3513), + [anon_sym___restrict__] = ACTIONS(3513), + [anon_sym__Atomic] = ACTIONS(3513), + [anon_sym__Noreturn] = ACTIONS(3513), + [anon_sym_noreturn] = ACTIONS(3513), + [anon_sym_mutable] = ACTIONS(3513), + [anon_sym_constinit] = ACTIONS(3513), + [anon_sym_consteval] = ACTIONS(3513), + [sym_primitive_type] = ACTIONS(3513), + [anon_sym_enum] = ACTIONS(3513), + [anon_sym_class] = ACTIONS(3513), + [anon_sym_struct] = ACTIONS(3513), + [anon_sym_union] = ACTIONS(3513), + [anon_sym_if] = ACTIONS(3513), + [anon_sym_switch] = ACTIONS(3513), + [anon_sym_case] = ACTIONS(3513), + [anon_sym_default] = ACTIONS(3513), + [anon_sym_while] = ACTIONS(3513), + [anon_sym_do] = ACTIONS(3513), + [anon_sym_for] = ACTIONS(3513), + [anon_sym_return] = ACTIONS(3513), + [anon_sym_break] = ACTIONS(3513), + [anon_sym_continue] = ACTIONS(3513), + [anon_sym_goto] = ACTIONS(3513), + [anon_sym_not] = ACTIONS(3513), + [anon_sym_compl] = ACTIONS(3513), + [anon_sym_DASH_DASH] = ACTIONS(3515), + [anon_sym_PLUS_PLUS] = ACTIONS(3515), + [anon_sym_sizeof] = ACTIONS(3513), + [anon_sym___alignof__] = ACTIONS(3513), + [anon_sym___alignof] = ACTIONS(3513), + [anon_sym__alignof] = ACTIONS(3513), + [anon_sym_alignof] = ACTIONS(3513), + [anon_sym__Alignof] = ACTIONS(3513), + [anon_sym_offsetof] = ACTIONS(3513), + [anon_sym__Generic] = ACTIONS(3513), + [anon_sym_asm] = ACTIONS(3513), + [anon_sym___asm__] = ACTIONS(3513), + [sym_number_literal] = ACTIONS(3515), + [anon_sym_L_SQUOTE] = ACTIONS(3515), + [anon_sym_u_SQUOTE] = ACTIONS(3515), + [anon_sym_U_SQUOTE] = ACTIONS(3515), + [anon_sym_u8_SQUOTE] = ACTIONS(3515), + [anon_sym_SQUOTE] = ACTIONS(3515), + [anon_sym_L_DQUOTE] = ACTIONS(3515), + [anon_sym_u_DQUOTE] = ACTIONS(3515), + [anon_sym_U_DQUOTE] = ACTIONS(3515), + [anon_sym_u8_DQUOTE] = ACTIONS(3515), + [anon_sym_DQUOTE] = ACTIONS(3515), + [sym_true] = ACTIONS(3513), + [sym_false] = ACTIONS(3513), + [anon_sym_NULL] = ACTIONS(3513), + [anon_sym_nullptr] = ACTIONS(3513), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3513), + [anon_sym_decltype] = ACTIONS(3513), + [anon_sym_virtual] = ACTIONS(3513), + [anon_sym_alignas] = ACTIONS(3513), + [anon_sym_explicit] = ACTIONS(3513), + [anon_sym_typename] = ACTIONS(3513), + [anon_sym_template] = ACTIONS(3513), + [anon_sym_operator] = ACTIONS(3513), + [anon_sym_try] = ACTIONS(3513), + [anon_sym_delete] = ACTIONS(3513), + [anon_sym_throw] = ACTIONS(3513), + [anon_sym_namespace] = ACTIONS(3513), + [anon_sym_using] = ACTIONS(3513), + [anon_sym_static_assert] = ACTIONS(3513), + [anon_sym_concept] = ACTIONS(3513), + [anon_sym_co_return] = ACTIONS(3513), + [anon_sym_co_yield] = ACTIONS(3513), + [anon_sym_R_DQUOTE] = ACTIONS(3515), + [anon_sym_LR_DQUOTE] = ACTIONS(3515), + [anon_sym_uR_DQUOTE] = ACTIONS(3515), + [anon_sym_UR_DQUOTE] = ACTIONS(3515), + [anon_sym_u8R_DQUOTE] = ACTIONS(3515), + [anon_sym_co_await] = ACTIONS(3513), + [anon_sym_new] = ACTIONS(3513), + [anon_sym_requires] = ACTIONS(3513), + [sym_this] = ACTIONS(3513), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3515), + [sym_semgrep_named_ellipsis] = ACTIONS(3515), + }, + [879] = { + [ts_builtin_sym_end] = ACTIONS(3521), + [sym_identifier] = ACTIONS(3519), + [aux_sym_preproc_include_token1] = ACTIONS(3519), + [aux_sym_preproc_def_token1] = ACTIONS(3519), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3521), + [aux_sym_preproc_if_token1] = ACTIONS(3519), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3519), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3519), + [sym_preproc_directive] = ACTIONS(3519), + [anon_sym_LPAREN2] = ACTIONS(3521), + [anon_sym_BANG] = ACTIONS(3521), + [anon_sym_TILDE] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(3519), + [anon_sym_STAR] = ACTIONS(3521), + [anon_sym_AMP_AMP] = ACTIONS(3521), + [anon_sym_AMP] = ACTIONS(3519), + [anon_sym___extension__] = ACTIONS(3519), + [anon_sym_typedef] = ACTIONS(3519), + [anon_sym_extern] = ACTIONS(3519), + [anon_sym___attribute__] = ACTIONS(3519), + [anon_sym_COLON_COLON] = ACTIONS(3521), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3521), + [anon_sym___declspec] = ACTIONS(3519), + [anon_sym___based] = ACTIONS(3519), + [anon_sym___cdecl] = ACTIONS(3519), + [anon_sym___clrcall] = ACTIONS(3519), + [anon_sym___stdcall] = ACTIONS(3519), + [anon_sym___fastcall] = ACTIONS(3519), + [anon_sym___thiscall] = ACTIONS(3519), + [anon_sym___vectorcall] = ACTIONS(3519), + [anon_sym_LBRACE] = ACTIONS(3521), + [anon_sym_signed] = ACTIONS(3519), + [anon_sym_unsigned] = ACTIONS(3519), + [anon_sym_long] = ACTIONS(3519), + [anon_sym_short] = ACTIONS(3519), + [anon_sym_LBRACK] = ACTIONS(3519), + [anon_sym_static] = ACTIONS(3519), + [anon_sym_register] = ACTIONS(3519), + [anon_sym_inline] = ACTIONS(3519), + [anon_sym___inline] = ACTIONS(3519), + [anon_sym___inline__] = ACTIONS(3519), + [anon_sym___forceinline] = ACTIONS(3519), + [anon_sym_thread_local] = ACTIONS(3519), + [anon_sym___thread] = ACTIONS(3519), + [anon_sym_const] = ACTIONS(3519), + [anon_sym_constexpr] = ACTIONS(3519), + [anon_sym_volatile] = ACTIONS(3519), + [anon_sym_restrict] = ACTIONS(3519), + [anon_sym___restrict__] = ACTIONS(3519), + [anon_sym__Atomic] = ACTIONS(3519), + [anon_sym__Noreturn] = ACTIONS(3519), + [anon_sym_noreturn] = ACTIONS(3519), + [anon_sym_mutable] = ACTIONS(3519), + [anon_sym_constinit] = ACTIONS(3519), + [anon_sym_consteval] = ACTIONS(3519), + [sym_primitive_type] = ACTIONS(3519), + [anon_sym_enum] = ACTIONS(3519), + [anon_sym_class] = ACTIONS(3519), + [anon_sym_struct] = ACTIONS(3519), + [anon_sym_union] = ACTIONS(3519), + [anon_sym_if] = ACTIONS(3519), + [anon_sym_switch] = ACTIONS(3519), + [anon_sym_case] = ACTIONS(3519), + [anon_sym_default] = ACTIONS(3519), + [anon_sym_while] = ACTIONS(3519), + [anon_sym_do] = ACTIONS(3519), + [anon_sym_for] = ACTIONS(3519), + [anon_sym_return] = ACTIONS(3519), + [anon_sym_break] = ACTIONS(3519), + [anon_sym_continue] = ACTIONS(3519), + [anon_sym_goto] = ACTIONS(3519), + [anon_sym_not] = ACTIONS(3519), + [anon_sym_compl] = ACTIONS(3519), + [anon_sym_DASH_DASH] = ACTIONS(3521), + [anon_sym_PLUS_PLUS] = ACTIONS(3521), + [anon_sym_sizeof] = ACTIONS(3519), + [anon_sym___alignof__] = ACTIONS(3519), + [anon_sym___alignof] = ACTIONS(3519), + [anon_sym__alignof] = ACTIONS(3519), + [anon_sym_alignof] = ACTIONS(3519), + [anon_sym__Alignof] = ACTIONS(3519), + [anon_sym_offsetof] = ACTIONS(3519), + [anon_sym__Generic] = ACTIONS(3519), + [anon_sym_asm] = ACTIONS(3519), + [anon_sym___asm__] = ACTIONS(3519), + [sym_number_literal] = ACTIONS(3521), + [anon_sym_L_SQUOTE] = ACTIONS(3521), + [anon_sym_u_SQUOTE] = ACTIONS(3521), + [anon_sym_U_SQUOTE] = ACTIONS(3521), + [anon_sym_u8_SQUOTE] = ACTIONS(3521), + [anon_sym_SQUOTE] = ACTIONS(3521), + [anon_sym_L_DQUOTE] = ACTIONS(3521), + [anon_sym_u_DQUOTE] = ACTIONS(3521), + [anon_sym_U_DQUOTE] = ACTIONS(3521), + [anon_sym_u8_DQUOTE] = ACTIONS(3521), + [anon_sym_DQUOTE] = ACTIONS(3521), + [sym_true] = ACTIONS(3519), + [sym_false] = ACTIONS(3519), + [anon_sym_NULL] = ACTIONS(3519), + [anon_sym_nullptr] = ACTIONS(3519), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3519), + [anon_sym_decltype] = ACTIONS(3519), + [anon_sym_virtual] = ACTIONS(3519), + [anon_sym_alignas] = ACTIONS(3519), + [anon_sym_explicit] = ACTIONS(3519), + [anon_sym_typename] = ACTIONS(3519), + [anon_sym_template] = ACTIONS(3519), + [anon_sym_operator] = ACTIONS(3519), + [anon_sym_try] = ACTIONS(3519), + [anon_sym_delete] = ACTIONS(3519), + [anon_sym_throw] = ACTIONS(3519), + [anon_sym_namespace] = ACTIONS(3519), + [anon_sym_using] = ACTIONS(3519), + [anon_sym_static_assert] = ACTIONS(3519), + [anon_sym_concept] = ACTIONS(3519), + [anon_sym_co_return] = ACTIONS(3519), + [anon_sym_co_yield] = ACTIONS(3519), + [anon_sym_R_DQUOTE] = ACTIONS(3521), + [anon_sym_LR_DQUOTE] = ACTIONS(3521), + [anon_sym_uR_DQUOTE] = ACTIONS(3521), + [anon_sym_UR_DQUOTE] = ACTIONS(3521), + [anon_sym_u8R_DQUOTE] = ACTIONS(3521), + [anon_sym_co_await] = ACTIONS(3519), + [anon_sym_new] = ACTIONS(3519), + [anon_sym_requires] = ACTIONS(3519), + [sym_this] = ACTIONS(3519), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3521), + [sym_semgrep_named_ellipsis] = ACTIONS(3521), + }, + [880] = { + [ts_builtin_sym_end] = ACTIONS(3686), + [sym_identifier] = ACTIONS(3684), + [aux_sym_preproc_include_token1] = ACTIONS(3684), + [aux_sym_preproc_def_token1] = ACTIONS(3684), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3686), + [aux_sym_preproc_if_token1] = ACTIONS(3684), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3684), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3684), + [sym_preproc_directive] = ACTIONS(3684), + [anon_sym_LPAREN2] = ACTIONS(3686), + [anon_sym_BANG] = ACTIONS(3686), + [anon_sym_TILDE] = ACTIONS(3686), + [anon_sym_DASH] = ACTIONS(3684), + [anon_sym_PLUS] = ACTIONS(3684), + [anon_sym_STAR] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3686), + [anon_sym_AMP] = ACTIONS(3684), + [anon_sym___extension__] = ACTIONS(3684), + [anon_sym_typedef] = ACTIONS(3684), + [anon_sym_extern] = ACTIONS(3684), + [anon_sym___attribute__] = ACTIONS(3684), + [anon_sym_COLON_COLON] = ACTIONS(3686), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3686), + [anon_sym___declspec] = ACTIONS(3684), + [anon_sym___based] = ACTIONS(3684), + [anon_sym___cdecl] = ACTIONS(3684), + [anon_sym___clrcall] = ACTIONS(3684), + [anon_sym___stdcall] = ACTIONS(3684), + [anon_sym___fastcall] = ACTIONS(3684), + [anon_sym___thiscall] = ACTIONS(3684), + [anon_sym___vectorcall] = ACTIONS(3684), + [anon_sym_LBRACE] = ACTIONS(3686), + [anon_sym_signed] = ACTIONS(3684), + [anon_sym_unsigned] = ACTIONS(3684), + [anon_sym_long] = ACTIONS(3684), + [anon_sym_short] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3684), + [anon_sym_static] = ACTIONS(3684), + [anon_sym_register] = ACTIONS(3684), + [anon_sym_inline] = ACTIONS(3684), + [anon_sym___inline] = ACTIONS(3684), + [anon_sym___inline__] = ACTIONS(3684), + [anon_sym___forceinline] = ACTIONS(3684), + [anon_sym_thread_local] = ACTIONS(3684), + [anon_sym___thread] = ACTIONS(3684), + [anon_sym_const] = ACTIONS(3684), + [anon_sym_constexpr] = ACTIONS(3684), + [anon_sym_volatile] = ACTIONS(3684), + [anon_sym_restrict] = ACTIONS(3684), + [anon_sym___restrict__] = ACTIONS(3684), + [anon_sym__Atomic] = ACTIONS(3684), + [anon_sym__Noreturn] = ACTIONS(3684), + [anon_sym_noreturn] = ACTIONS(3684), + [anon_sym_mutable] = ACTIONS(3684), + [anon_sym_constinit] = ACTIONS(3684), + [anon_sym_consteval] = ACTIONS(3684), + [sym_primitive_type] = ACTIONS(3684), + [anon_sym_enum] = ACTIONS(3684), + [anon_sym_class] = ACTIONS(3684), + [anon_sym_struct] = ACTIONS(3684), + [anon_sym_union] = ACTIONS(3684), + [anon_sym_if] = ACTIONS(3684), + [anon_sym_switch] = ACTIONS(3684), + [anon_sym_case] = ACTIONS(3684), + [anon_sym_default] = ACTIONS(3684), + [anon_sym_while] = ACTIONS(3684), + [anon_sym_do] = ACTIONS(3684), + [anon_sym_for] = ACTIONS(3684), + [anon_sym_return] = ACTIONS(3684), + [anon_sym_break] = ACTIONS(3684), + [anon_sym_continue] = ACTIONS(3684), + [anon_sym_goto] = ACTIONS(3684), + [anon_sym_not] = ACTIONS(3684), + [anon_sym_compl] = ACTIONS(3684), + [anon_sym_DASH_DASH] = ACTIONS(3686), + [anon_sym_PLUS_PLUS] = ACTIONS(3686), + [anon_sym_sizeof] = ACTIONS(3684), + [anon_sym___alignof__] = ACTIONS(3684), + [anon_sym___alignof] = ACTIONS(3684), + [anon_sym__alignof] = ACTIONS(3684), + [anon_sym_alignof] = ACTIONS(3684), + [anon_sym__Alignof] = ACTIONS(3684), + [anon_sym_offsetof] = ACTIONS(3684), + [anon_sym__Generic] = ACTIONS(3684), + [anon_sym_asm] = ACTIONS(3684), + [anon_sym___asm__] = ACTIONS(3684), + [sym_number_literal] = ACTIONS(3686), + [anon_sym_L_SQUOTE] = ACTIONS(3686), + [anon_sym_u_SQUOTE] = ACTIONS(3686), + [anon_sym_U_SQUOTE] = ACTIONS(3686), + [anon_sym_u8_SQUOTE] = ACTIONS(3686), + [anon_sym_SQUOTE] = ACTIONS(3686), + [anon_sym_L_DQUOTE] = ACTIONS(3686), + [anon_sym_u_DQUOTE] = ACTIONS(3686), + [anon_sym_U_DQUOTE] = ACTIONS(3686), + [anon_sym_u8_DQUOTE] = ACTIONS(3686), + [anon_sym_DQUOTE] = ACTIONS(3686), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [anon_sym_NULL] = ACTIONS(3684), + [anon_sym_nullptr] = ACTIONS(3684), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3684), + [anon_sym_decltype] = ACTIONS(3684), + [anon_sym_virtual] = ACTIONS(3684), + [anon_sym_alignas] = ACTIONS(3684), + [anon_sym_explicit] = ACTIONS(3684), + [anon_sym_typename] = ACTIONS(3684), + [anon_sym_template] = ACTIONS(3684), + [anon_sym_operator] = ACTIONS(3684), + [anon_sym_try] = ACTIONS(3684), + [anon_sym_delete] = ACTIONS(3684), + [anon_sym_throw] = ACTIONS(3684), + [anon_sym_namespace] = ACTIONS(3684), + [anon_sym_using] = ACTIONS(3684), + [anon_sym_static_assert] = ACTIONS(3684), + [anon_sym_concept] = ACTIONS(3684), + [anon_sym_co_return] = ACTIONS(3684), + [anon_sym_co_yield] = ACTIONS(3684), + [anon_sym_R_DQUOTE] = ACTIONS(3686), + [anon_sym_LR_DQUOTE] = ACTIONS(3686), + [anon_sym_uR_DQUOTE] = ACTIONS(3686), + [anon_sym_UR_DQUOTE] = ACTIONS(3686), + [anon_sym_u8R_DQUOTE] = ACTIONS(3686), + [anon_sym_co_await] = ACTIONS(3684), + [anon_sym_new] = ACTIONS(3684), + [anon_sym_requires] = ACTIONS(3684), + [sym_this] = ACTIONS(3684), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3686), + [sym_semgrep_named_ellipsis] = ACTIONS(3686), + }, + [881] = { [ts_builtin_sym_end] = ACTIONS(3505), [sym_identifier] = ACTIONS(3503), [aux_sym_preproc_include_token1] = ACTIONS(3503), @@ -185788,1277 +176452,757 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3505), [sym_semgrep_named_ellipsis] = ACTIONS(3505), }, - [878] = { - [ts_builtin_sym_end] = ACTIONS(3255), - [sym_identifier] = ACTIONS(3253), - [aux_sym_preproc_include_token1] = ACTIONS(3253), - [aux_sym_preproc_def_token1] = ACTIONS(3253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3255), - [aux_sym_preproc_if_token1] = ACTIONS(3253), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3253), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3253), - [sym_preproc_directive] = ACTIONS(3253), - [anon_sym_LPAREN2] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3253), - [anon_sym_PLUS] = ACTIONS(3253), - [anon_sym_STAR] = ACTIONS(3255), - [anon_sym_AMP_AMP] = ACTIONS(3255), - [anon_sym_AMP] = ACTIONS(3253), - [anon_sym___extension__] = ACTIONS(3253), - [anon_sym_typedef] = ACTIONS(3253), - [anon_sym_extern] = ACTIONS(3253), - [anon_sym___attribute__] = ACTIONS(3253), - [anon_sym_COLON_COLON] = ACTIONS(3255), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3255), - [anon_sym___declspec] = ACTIONS(3253), - [anon_sym___based] = ACTIONS(3253), - [anon_sym___cdecl] = ACTIONS(3253), - [anon_sym___clrcall] = ACTIONS(3253), - [anon_sym___stdcall] = ACTIONS(3253), - [anon_sym___fastcall] = ACTIONS(3253), - [anon_sym___thiscall] = ACTIONS(3253), - [anon_sym___vectorcall] = ACTIONS(3253), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_signed] = ACTIONS(3253), - [anon_sym_unsigned] = ACTIONS(3253), - [anon_sym_long] = ACTIONS(3253), - [anon_sym_short] = ACTIONS(3253), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_static] = ACTIONS(3253), - [anon_sym_register] = ACTIONS(3253), - [anon_sym_inline] = ACTIONS(3253), - [anon_sym___inline] = ACTIONS(3253), - [anon_sym___inline__] = ACTIONS(3253), - [anon_sym___forceinline] = ACTIONS(3253), - [anon_sym_thread_local] = ACTIONS(3253), - [anon_sym___thread] = ACTIONS(3253), - [anon_sym_const] = ACTIONS(3253), - [anon_sym_constexpr] = ACTIONS(3253), - [anon_sym_volatile] = ACTIONS(3253), - [anon_sym_restrict] = ACTIONS(3253), - [anon_sym___restrict__] = ACTIONS(3253), - [anon_sym__Atomic] = ACTIONS(3253), - [anon_sym__Noreturn] = ACTIONS(3253), - [anon_sym_noreturn] = ACTIONS(3253), - [anon_sym_mutable] = ACTIONS(3253), - [anon_sym_constinit] = ACTIONS(3253), - [anon_sym_consteval] = ACTIONS(3253), - [sym_primitive_type] = ACTIONS(3253), - [anon_sym_enum] = ACTIONS(3253), - [anon_sym_class] = ACTIONS(3253), - [anon_sym_struct] = ACTIONS(3253), - [anon_sym_union] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(3253), - [anon_sym_switch] = ACTIONS(3253), - [anon_sym_case] = ACTIONS(3253), - [anon_sym_default] = ACTIONS(3253), - [anon_sym_while] = ACTIONS(3253), - [anon_sym_do] = ACTIONS(3253), - [anon_sym_for] = ACTIONS(3253), - [anon_sym_return] = ACTIONS(3253), - [anon_sym_break] = ACTIONS(3253), - [anon_sym_continue] = ACTIONS(3253), - [anon_sym_goto] = ACTIONS(3253), - [anon_sym_not] = ACTIONS(3253), - [anon_sym_compl] = ACTIONS(3253), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_sizeof] = ACTIONS(3253), - [anon_sym___alignof__] = ACTIONS(3253), - [anon_sym___alignof] = ACTIONS(3253), - [anon_sym__alignof] = ACTIONS(3253), - [anon_sym_alignof] = ACTIONS(3253), - [anon_sym__Alignof] = ACTIONS(3253), - [anon_sym_offsetof] = ACTIONS(3253), - [anon_sym__Generic] = ACTIONS(3253), - [anon_sym_asm] = ACTIONS(3253), - [anon_sym___asm__] = ACTIONS(3253), - [sym_number_literal] = ACTIONS(3255), - [anon_sym_L_SQUOTE] = ACTIONS(3255), - [anon_sym_u_SQUOTE] = ACTIONS(3255), - [anon_sym_U_SQUOTE] = ACTIONS(3255), - [anon_sym_u8_SQUOTE] = ACTIONS(3255), - [anon_sym_SQUOTE] = ACTIONS(3255), - [anon_sym_L_DQUOTE] = ACTIONS(3255), - [anon_sym_u_DQUOTE] = ACTIONS(3255), - [anon_sym_U_DQUOTE] = ACTIONS(3255), - [anon_sym_u8_DQUOTE] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(3255), - [sym_true] = ACTIONS(3253), - [sym_false] = ACTIONS(3253), - [anon_sym_NULL] = ACTIONS(3253), - [anon_sym_nullptr] = ACTIONS(3253), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3253), - [anon_sym_decltype] = ACTIONS(3253), - [anon_sym_virtual] = ACTIONS(3253), - [anon_sym_alignas] = ACTIONS(3253), - [anon_sym_explicit] = ACTIONS(3253), - [anon_sym_typename] = ACTIONS(3253), - [anon_sym_template] = ACTIONS(3253), - [anon_sym_operator] = ACTIONS(3253), - [anon_sym_try] = ACTIONS(3253), - [anon_sym_delete] = ACTIONS(3253), - [anon_sym_throw] = ACTIONS(3253), - [anon_sym_namespace] = ACTIONS(3253), - [anon_sym_using] = ACTIONS(3253), - [anon_sym_static_assert] = ACTIONS(3253), - [anon_sym_concept] = ACTIONS(3253), - [anon_sym_co_return] = ACTIONS(3253), - [anon_sym_co_yield] = ACTIONS(3253), - [anon_sym_R_DQUOTE] = ACTIONS(3255), - [anon_sym_LR_DQUOTE] = ACTIONS(3255), - [anon_sym_uR_DQUOTE] = ACTIONS(3255), - [anon_sym_UR_DQUOTE] = ACTIONS(3255), - [anon_sym_u8R_DQUOTE] = ACTIONS(3255), - [anon_sym_co_await] = ACTIONS(3253), - [anon_sym_new] = ACTIONS(3253), - [anon_sym_requires] = ACTIONS(3253), - [sym_this] = ACTIONS(3253), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3255), - [sym_semgrep_named_ellipsis] = ACTIONS(3255), - }, - [879] = { - [ts_builtin_sym_end] = ACTIONS(3341), - [sym_identifier] = ACTIONS(3339), - [aux_sym_preproc_include_token1] = ACTIONS(3339), - [aux_sym_preproc_def_token1] = ACTIONS(3339), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3341), - [aux_sym_preproc_if_token1] = ACTIONS(3339), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3339), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3339), - [sym_preproc_directive] = ACTIONS(3339), - [anon_sym_LPAREN2] = ACTIONS(3341), - [anon_sym_BANG] = ACTIONS(3341), - [anon_sym_TILDE] = ACTIONS(3341), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_STAR] = ACTIONS(3341), - [anon_sym_AMP_AMP] = ACTIONS(3341), - [anon_sym_AMP] = ACTIONS(3339), - [anon_sym___extension__] = ACTIONS(3339), - [anon_sym_typedef] = ACTIONS(3339), - [anon_sym_extern] = ACTIONS(3339), - [anon_sym___attribute__] = ACTIONS(3339), - [anon_sym_COLON_COLON] = ACTIONS(3341), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3341), - [anon_sym___declspec] = ACTIONS(3339), - [anon_sym___based] = ACTIONS(3339), - [anon_sym___cdecl] = ACTIONS(3339), - [anon_sym___clrcall] = ACTIONS(3339), - [anon_sym___stdcall] = ACTIONS(3339), - [anon_sym___fastcall] = ACTIONS(3339), - [anon_sym___thiscall] = ACTIONS(3339), - [anon_sym___vectorcall] = ACTIONS(3339), - [anon_sym_LBRACE] = ACTIONS(3341), - [anon_sym_signed] = ACTIONS(3339), - [anon_sym_unsigned] = ACTIONS(3339), - [anon_sym_long] = ACTIONS(3339), - [anon_sym_short] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3339), - [anon_sym_static] = ACTIONS(3339), - [anon_sym_register] = ACTIONS(3339), - [anon_sym_inline] = ACTIONS(3339), - [anon_sym___inline] = ACTIONS(3339), - [anon_sym___inline__] = ACTIONS(3339), - [anon_sym___forceinline] = ACTIONS(3339), - [anon_sym_thread_local] = ACTIONS(3339), - [anon_sym___thread] = ACTIONS(3339), - [anon_sym_const] = ACTIONS(3339), - [anon_sym_constexpr] = ACTIONS(3339), - [anon_sym_volatile] = ACTIONS(3339), - [anon_sym_restrict] = ACTIONS(3339), - [anon_sym___restrict__] = ACTIONS(3339), - [anon_sym__Atomic] = ACTIONS(3339), - [anon_sym__Noreturn] = ACTIONS(3339), - [anon_sym_noreturn] = ACTIONS(3339), - [anon_sym_mutable] = ACTIONS(3339), - [anon_sym_constinit] = ACTIONS(3339), - [anon_sym_consteval] = ACTIONS(3339), - [sym_primitive_type] = ACTIONS(3339), - [anon_sym_enum] = ACTIONS(3339), - [anon_sym_class] = ACTIONS(3339), - [anon_sym_struct] = ACTIONS(3339), - [anon_sym_union] = ACTIONS(3339), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_switch] = ACTIONS(3339), - [anon_sym_case] = ACTIONS(3339), - [anon_sym_default] = ACTIONS(3339), - [anon_sym_while] = ACTIONS(3339), - [anon_sym_do] = ACTIONS(3339), - [anon_sym_for] = ACTIONS(3339), - [anon_sym_return] = ACTIONS(3339), - [anon_sym_break] = ACTIONS(3339), - [anon_sym_continue] = ACTIONS(3339), - [anon_sym_goto] = ACTIONS(3339), - [anon_sym_not] = ACTIONS(3339), - [anon_sym_compl] = ACTIONS(3339), - [anon_sym_DASH_DASH] = ACTIONS(3341), - [anon_sym_PLUS_PLUS] = ACTIONS(3341), - [anon_sym_sizeof] = ACTIONS(3339), - [anon_sym___alignof__] = ACTIONS(3339), - [anon_sym___alignof] = ACTIONS(3339), - [anon_sym__alignof] = ACTIONS(3339), - [anon_sym_alignof] = ACTIONS(3339), - [anon_sym__Alignof] = ACTIONS(3339), - [anon_sym_offsetof] = ACTIONS(3339), - [anon_sym__Generic] = ACTIONS(3339), - [anon_sym_asm] = ACTIONS(3339), - [anon_sym___asm__] = ACTIONS(3339), - [sym_number_literal] = ACTIONS(3341), - [anon_sym_L_SQUOTE] = ACTIONS(3341), - [anon_sym_u_SQUOTE] = ACTIONS(3341), - [anon_sym_U_SQUOTE] = ACTIONS(3341), - [anon_sym_u8_SQUOTE] = ACTIONS(3341), - [anon_sym_SQUOTE] = ACTIONS(3341), - [anon_sym_L_DQUOTE] = ACTIONS(3341), - [anon_sym_u_DQUOTE] = ACTIONS(3341), - [anon_sym_U_DQUOTE] = ACTIONS(3341), - [anon_sym_u8_DQUOTE] = ACTIONS(3341), - [anon_sym_DQUOTE] = ACTIONS(3341), - [sym_true] = ACTIONS(3339), - [sym_false] = ACTIONS(3339), - [anon_sym_NULL] = ACTIONS(3339), - [anon_sym_nullptr] = ACTIONS(3339), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3339), - [anon_sym_decltype] = ACTIONS(3339), - [anon_sym_virtual] = ACTIONS(3339), - [anon_sym_alignas] = ACTIONS(3339), - [anon_sym_explicit] = ACTIONS(3339), - [anon_sym_typename] = ACTIONS(3339), - [anon_sym_template] = ACTIONS(3339), - [anon_sym_operator] = ACTIONS(3339), - [anon_sym_try] = ACTIONS(3339), - [anon_sym_delete] = ACTIONS(3339), - [anon_sym_throw] = ACTIONS(3339), - [anon_sym_namespace] = ACTIONS(3339), - [anon_sym_using] = ACTIONS(3339), - [anon_sym_static_assert] = ACTIONS(3339), - [anon_sym_concept] = ACTIONS(3339), - [anon_sym_co_return] = ACTIONS(3339), - [anon_sym_co_yield] = ACTIONS(3339), - [anon_sym_R_DQUOTE] = ACTIONS(3341), - [anon_sym_LR_DQUOTE] = ACTIONS(3341), - [anon_sym_uR_DQUOTE] = ACTIONS(3341), - [anon_sym_UR_DQUOTE] = ACTIONS(3341), - [anon_sym_u8R_DQUOTE] = ACTIONS(3341), - [anon_sym_co_await] = ACTIONS(3339), - [anon_sym_new] = ACTIONS(3339), - [anon_sym_requires] = ACTIONS(3339), - [sym_this] = ACTIONS(3339), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3341), - [sym_semgrep_named_ellipsis] = ACTIONS(3341), - }, - [880] = { - [ts_builtin_sym_end] = ACTIONS(3513), - [sym_identifier] = ACTIONS(3511), - [aux_sym_preproc_include_token1] = ACTIONS(3511), - [aux_sym_preproc_def_token1] = ACTIONS(3511), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3513), - [aux_sym_preproc_if_token1] = ACTIONS(3511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3511), - [sym_preproc_directive] = ACTIONS(3511), - [anon_sym_LPAREN2] = ACTIONS(3513), - [anon_sym_BANG] = ACTIONS(3513), - [anon_sym_TILDE] = ACTIONS(3513), - [anon_sym_DASH] = ACTIONS(3511), - [anon_sym_PLUS] = ACTIONS(3511), - [anon_sym_STAR] = ACTIONS(3513), - [anon_sym_AMP_AMP] = ACTIONS(3513), - [anon_sym_AMP] = ACTIONS(3511), - [anon_sym___extension__] = ACTIONS(3511), - [anon_sym_typedef] = ACTIONS(3511), - [anon_sym_extern] = ACTIONS(3511), - [anon_sym___attribute__] = ACTIONS(3511), - [anon_sym_COLON_COLON] = ACTIONS(3513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3513), - [anon_sym___declspec] = ACTIONS(3511), - [anon_sym___based] = ACTIONS(3511), - [anon_sym___cdecl] = ACTIONS(3511), - [anon_sym___clrcall] = ACTIONS(3511), - [anon_sym___stdcall] = ACTIONS(3511), - [anon_sym___fastcall] = ACTIONS(3511), - [anon_sym___thiscall] = ACTIONS(3511), - [anon_sym___vectorcall] = ACTIONS(3511), - [anon_sym_LBRACE] = ACTIONS(3513), - [anon_sym_signed] = ACTIONS(3511), - [anon_sym_unsigned] = ACTIONS(3511), - [anon_sym_long] = ACTIONS(3511), - [anon_sym_short] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3511), - [anon_sym_static] = ACTIONS(3511), - [anon_sym_register] = ACTIONS(3511), - [anon_sym_inline] = ACTIONS(3511), - [anon_sym___inline] = ACTIONS(3511), - [anon_sym___inline__] = ACTIONS(3511), - [anon_sym___forceinline] = ACTIONS(3511), - [anon_sym_thread_local] = ACTIONS(3511), - [anon_sym___thread] = ACTIONS(3511), - [anon_sym_const] = ACTIONS(3511), - [anon_sym_constexpr] = ACTIONS(3511), - [anon_sym_volatile] = ACTIONS(3511), - [anon_sym_restrict] = ACTIONS(3511), - [anon_sym___restrict__] = ACTIONS(3511), - [anon_sym__Atomic] = ACTIONS(3511), - [anon_sym__Noreturn] = ACTIONS(3511), - [anon_sym_noreturn] = ACTIONS(3511), - [anon_sym_mutable] = ACTIONS(3511), - [anon_sym_constinit] = ACTIONS(3511), - [anon_sym_consteval] = ACTIONS(3511), - [sym_primitive_type] = ACTIONS(3511), - [anon_sym_enum] = ACTIONS(3511), - [anon_sym_class] = ACTIONS(3511), - [anon_sym_struct] = ACTIONS(3511), - [anon_sym_union] = ACTIONS(3511), - [anon_sym_if] = ACTIONS(3511), - [anon_sym_switch] = ACTIONS(3511), - [anon_sym_case] = ACTIONS(3511), - [anon_sym_default] = ACTIONS(3511), - [anon_sym_while] = ACTIONS(3511), - [anon_sym_do] = ACTIONS(3511), - [anon_sym_for] = ACTIONS(3511), - [anon_sym_return] = ACTIONS(3511), - [anon_sym_break] = ACTIONS(3511), - [anon_sym_continue] = ACTIONS(3511), - [anon_sym_goto] = ACTIONS(3511), - [anon_sym_not] = ACTIONS(3511), - [anon_sym_compl] = ACTIONS(3511), - [anon_sym_DASH_DASH] = ACTIONS(3513), - [anon_sym_PLUS_PLUS] = ACTIONS(3513), - [anon_sym_sizeof] = ACTIONS(3511), - [anon_sym___alignof__] = ACTIONS(3511), - [anon_sym___alignof] = ACTIONS(3511), - [anon_sym__alignof] = ACTIONS(3511), - [anon_sym_alignof] = ACTIONS(3511), - [anon_sym__Alignof] = ACTIONS(3511), - [anon_sym_offsetof] = ACTIONS(3511), - [anon_sym__Generic] = ACTIONS(3511), - [anon_sym_asm] = ACTIONS(3511), - [anon_sym___asm__] = ACTIONS(3511), - [sym_number_literal] = ACTIONS(3513), - [anon_sym_L_SQUOTE] = ACTIONS(3513), - [anon_sym_u_SQUOTE] = ACTIONS(3513), - [anon_sym_U_SQUOTE] = ACTIONS(3513), - [anon_sym_u8_SQUOTE] = ACTIONS(3513), - [anon_sym_SQUOTE] = ACTIONS(3513), - [anon_sym_L_DQUOTE] = ACTIONS(3513), - [anon_sym_u_DQUOTE] = ACTIONS(3513), - [anon_sym_U_DQUOTE] = ACTIONS(3513), - [anon_sym_u8_DQUOTE] = ACTIONS(3513), - [anon_sym_DQUOTE] = ACTIONS(3513), - [sym_true] = ACTIONS(3511), - [sym_false] = ACTIONS(3511), - [anon_sym_NULL] = ACTIONS(3511), - [anon_sym_nullptr] = ACTIONS(3511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3511), - [anon_sym_decltype] = ACTIONS(3511), - [anon_sym_virtual] = ACTIONS(3511), - [anon_sym_alignas] = ACTIONS(3511), - [anon_sym_explicit] = ACTIONS(3511), - [anon_sym_typename] = ACTIONS(3511), - [anon_sym_template] = ACTIONS(3511), - [anon_sym_operator] = ACTIONS(3511), - [anon_sym_try] = ACTIONS(3511), - [anon_sym_delete] = ACTIONS(3511), - [anon_sym_throw] = ACTIONS(3511), - [anon_sym_namespace] = ACTIONS(3511), - [anon_sym_using] = ACTIONS(3511), - [anon_sym_static_assert] = ACTIONS(3511), - [anon_sym_concept] = ACTIONS(3511), - [anon_sym_co_return] = ACTIONS(3511), - [anon_sym_co_yield] = ACTIONS(3511), - [anon_sym_R_DQUOTE] = ACTIONS(3513), - [anon_sym_LR_DQUOTE] = ACTIONS(3513), - [anon_sym_uR_DQUOTE] = ACTIONS(3513), - [anon_sym_UR_DQUOTE] = ACTIONS(3513), - [anon_sym_u8R_DQUOTE] = ACTIONS(3513), - [anon_sym_co_await] = ACTIONS(3511), - [anon_sym_new] = ACTIONS(3511), - [anon_sym_requires] = ACTIONS(3511), - [sym_this] = ACTIONS(3511), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3513), - [sym_semgrep_named_ellipsis] = ACTIONS(3513), - }, - [881] = { - [ts_builtin_sym_end] = ACTIONS(3517), - [sym_identifier] = ACTIONS(3515), - [aux_sym_preproc_include_token1] = ACTIONS(3515), - [aux_sym_preproc_def_token1] = ACTIONS(3515), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3517), - [aux_sym_preproc_if_token1] = ACTIONS(3515), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3515), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3515), - [sym_preproc_directive] = ACTIONS(3515), - [anon_sym_LPAREN2] = ACTIONS(3517), - [anon_sym_BANG] = ACTIONS(3517), - [anon_sym_TILDE] = ACTIONS(3517), - [anon_sym_DASH] = ACTIONS(3515), - [anon_sym_PLUS] = ACTIONS(3515), - [anon_sym_STAR] = ACTIONS(3517), - [anon_sym_AMP_AMP] = ACTIONS(3517), - [anon_sym_AMP] = ACTIONS(3515), - [anon_sym___extension__] = ACTIONS(3515), - [anon_sym_typedef] = ACTIONS(3515), - [anon_sym_extern] = ACTIONS(3515), - [anon_sym___attribute__] = ACTIONS(3515), - [anon_sym_COLON_COLON] = ACTIONS(3517), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3517), - [anon_sym___declspec] = ACTIONS(3515), - [anon_sym___based] = ACTIONS(3515), - [anon_sym___cdecl] = ACTIONS(3515), - [anon_sym___clrcall] = ACTIONS(3515), - [anon_sym___stdcall] = ACTIONS(3515), - [anon_sym___fastcall] = ACTIONS(3515), - [anon_sym___thiscall] = ACTIONS(3515), - [anon_sym___vectorcall] = ACTIONS(3515), - [anon_sym_LBRACE] = ACTIONS(3517), - [anon_sym_signed] = ACTIONS(3515), - [anon_sym_unsigned] = ACTIONS(3515), - [anon_sym_long] = ACTIONS(3515), - [anon_sym_short] = ACTIONS(3515), - [anon_sym_LBRACK] = ACTIONS(3515), - [anon_sym_static] = ACTIONS(3515), - [anon_sym_register] = ACTIONS(3515), - [anon_sym_inline] = ACTIONS(3515), - [anon_sym___inline] = ACTIONS(3515), - [anon_sym___inline__] = ACTIONS(3515), - [anon_sym___forceinline] = ACTIONS(3515), - [anon_sym_thread_local] = ACTIONS(3515), - [anon_sym___thread] = ACTIONS(3515), - [anon_sym_const] = ACTIONS(3515), - [anon_sym_constexpr] = ACTIONS(3515), - [anon_sym_volatile] = ACTIONS(3515), - [anon_sym_restrict] = ACTIONS(3515), - [anon_sym___restrict__] = ACTIONS(3515), - [anon_sym__Atomic] = ACTIONS(3515), - [anon_sym__Noreturn] = ACTIONS(3515), - [anon_sym_noreturn] = ACTIONS(3515), - [anon_sym_mutable] = ACTIONS(3515), - [anon_sym_constinit] = ACTIONS(3515), - [anon_sym_consteval] = ACTIONS(3515), - [sym_primitive_type] = ACTIONS(3515), - [anon_sym_enum] = ACTIONS(3515), - [anon_sym_class] = ACTIONS(3515), - [anon_sym_struct] = ACTIONS(3515), - [anon_sym_union] = ACTIONS(3515), - [anon_sym_if] = ACTIONS(3515), - [anon_sym_switch] = ACTIONS(3515), - [anon_sym_case] = ACTIONS(3515), - [anon_sym_default] = ACTIONS(3515), - [anon_sym_while] = ACTIONS(3515), - [anon_sym_do] = ACTIONS(3515), - [anon_sym_for] = ACTIONS(3515), - [anon_sym_return] = ACTIONS(3515), - [anon_sym_break] = ACTIONS(3515), - [anon_sym_continue] = ACTIONS(3515), - [anon_sym_goto] = ACTIONS(3515), - [anon_sym_not] = ACTIONS(3515), - [anon_sym_compl] = ACTIONS(3515), - [anon_sym_DASH_DASH] = ACTIONS(3517), - [anon_sym_PLUS_PLUS] = ACTIONS(3517), - [anon_sym_sizeof] = ACTIONS(3515), - [anon_sym___alignof__] = ACTIONS(3515), - [anon_sym___alignof] = ACTIONS(3515), - [anon_sym__alignof] = ACTIONS(3515), - [anon_sym_alignof] = ACTIONS(3515), - [anon_sym__Alignof] = ACTIONS(3515), - [anon_sym_offsetof] = ACTIONS(3515), - [anon_sym__Generic] = ACTIONS(3515), - [anon_sym_asm] = ACTIONS(3515), - [anon_sym___asm__] = ACTIONS(3515), - [sym_number_literal] = ACTIONS(3517), - [anon_sym_L_SQUOTE] = ACTIONS(3517), - [anon_sym_u_SQUOTE] = ACTIONS(3517), - [anon_sym_U_SQUOTE] = ACTIONS(3517), - [anon_sym_u8_SQUOTE] = ACTIONS(3517), - [anon_sym_SQUOTE] = ACTIONS(3517), - [anon_sym_L_DQUOTE] = ACTIONS(3517), - [anon_sym_u_DQUOTE] = ACTIONS(3517), - [anon_sym_U_DQUOTE] = ACTIONS(3517), - [anon_sym_u8_DQUOTE] = ACTIONS(3517), - [anon_sym_DQUOTE] = ACTIONS(3517), - [sym_true] = ACTIONS(3515), - [sym_false] = ACTIONS(3515), - [anon_sym_NULL] = ACTIONS(3515), - [anon_sym_nullptr] = ACTIONS(3515), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3515), - [anon_sym_decltype] = ACTIONS(3515), - [anon_sym_virtual] = ACTIONS(3515), - [anon_sym_alignas] = ACTIONS(3515), - [anon_sym_explicit] = ACTIONS(3515), - [anon_sym_typename] = ACTIONS(3515), - [anon_sym_template] = ACTIONS(3515), - [anon_sym_operator] = ACTIONS(3515), - [anon_sym_try] = ACTIONS(3515), - [anon_sym_delete] = ACTIONS(3515), - [anon_sym_throw] = ACTIONS(3515), - [anon_sym_namespace] = ACTIONS(3515), - [anon_sym_using] = ACTIONS(3515), - [anon_sym_static_assert] = ACTIONS(3515), - [anon_sym_concept] = ACTIONS(3515), - [anon_sym_co_return] = ACTIONS(3515), - [anon_sym_co_yield] = ACTIONS(3515), - [anon_sym_R_DQUOTE] = ACTIONS(3517), - [anon_sym_LR_DQUOTE] = ACTIONS(3517), - [anon_sym_uR_DQUOTE] = ACTIONS(3517), - [anon_sym_UR_DQUOTE] = ACTIONS(3517), - [anon_sym_u8R_DQUOTE] = ACTIONS(3517), - [anon_sym_co_await] = ACTIONS(3515), - [anon_sym_new] = ACTIONS(3515), - [anon_sym_requires] = ACTIONS(3515), - [sym_this] = ACTIONS(3515), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3517), - [sym_semgrep_named_ellipsis] = ACTIONS(3517), - }, [882] = { - [ts_builtin_sym_end] = ACTIONS(3624), - [sym_identifier] = ACTIONS(3622), - [aux_sym_preproc_include_token1] = ACTIONS(3622), - [aux_sym_preproc_def_token1] = ACTIONS(3622), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3624), - [aux_sym_preproc_if_token1] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), - [sym_preproc_directive] = ACTIONS(3622), - [anon_sym_LPAREN2] = ACTIONS(3624), - [anon_sym_BANG] = ACTIONS(3624), - [anon_sym_TILDE] = ACTIONS(3624), - [anon_sym_DASH] = ACTIONS(3622), - [anon_sym_PLUS] = ACTIONS(3622), - [anon_sym_STAR] = ACTIONS(3624), - [anon_sym_AMP_AMP] = ACTIONS(3624), - [anon_sym_AMP] = ACTIONS(3622), - [anon_sym___extension__] = ACTIONS(3622), - [anon_sym_typedef] = ACTIONS(3622), - [anon_sym_extern] = ACTIONS(3622), - [anon_sym___attribute__] = ACTIONS(3622), - [anon_sym_COLON_COLON] = ACTIONS(3624), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), - [anon_sym___declspec] = ACTIONS(3622), - [anon_sym___based] = ACTIONS(3622), - [anon_sym___cdecl] = ACTIONS(3622), - [anon_sym___clrcall] = ACTIONS(3622), - [anon_sym___stdcall] = ACTIONS(3622), - [anon_sym___fastcall] = ACTIONS(3622), - [anon_sym___thiscall] = ACTIONS(3622), - [anon_sym___vectorcall] = ACTIONS(3622), - [anon_sym_LBRACE] = ACTIONS(3624), - [anon_sym_signed] = ACTIONS(3622), - [anon_sym_unsigned] = ACTIONS(3622), - [anon_sym_long] = ACTIONS(3622), - [anon_sym_short] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3622), - [anon_sym_static] = ACTIONS(3622), - [anon_sym_register] = ACTIONS(3622), - [anon_sym_inline] = ACTIONS(3622), - [anon_sym___inline] = ACTIONS(3622), - [anon_sym___inline__] = ACTIONS(3622), - [anon_sym___forceinline] = ACTIONS(3622), - [anon_sym_thread_local] = ACTIONS(3622), - [anon_sym___thread] = ACTIONS(3622), - [anon_sym_const] = ACTIONS(3622), - [anon_sym_constexpr] = ACTIONS(3622), - [anon_sym_volatile] = ACTIONS(3622), - [anon_sym_restrict] = ACTIONS(3622), - [anon_sym___restrict__] = ACTIONS(3622), - [anon_sym__Atomic] = ACTIONS(3622), - [anon_sym__Noreturn] = ACTIONS(3622), - [anon_sym_noreturn] = ACTIONS(3622), - [anon_sym_mutable] = ACTIONS(3622), - [anon_sym_constinit] = ACTIONS(3622), - [anon_sym_consteval] = ACTIONS(3622), - [sym_primitive_type] = ACTIONS(3622), - [anon_sym_enum] = ACTIONS(3622), - [anon_sym_class] = ACTIONS(3622), - [anon_sym_struct] = ACTIONS(3622), - [anon_sym_union] = ACTIONS(3622), - [anon_sym_if] = ACTIONS(3622), - [anon_sym_switch] = ACTIONS(3622), - [anon_sym_case] = ACTIONS(3622), - [anon_sym_default] = ACTIONS(3622), - [anon_sym_while] = ACTIONS(3622), - [anon_sym_do] = ACTIONS(3622), - [anon_sym_for] = ACTIONS(3622), - [anon_sym_return] = ACTIONS(3622), - [anon_sym_break] = ACTIONS(3622), - [anon_sym_continue] = ACTIONS(3622), - [anon_sym_goto] = ACTIONS(3622), - [anon_sym_not] = ACTIONS(3622), - [anon_sym_compl] = ACTIONS(3622), - [anon_sym_DASH_DASH] = ACTIONS(3624), - [anon_sym_PLUS_PLUS] = ACTIONS(3624), - [anon_sym_sizeof] = ACTIONS(3622), - [anon_sym___alignof__] = ACTIONS(3622), - [anon_sym___alignof] = ACTIONS(3622), - [anon_sym__alignof] = ACTIONS(3622), - [anon_sym_alignof] = ACTIONS(3622), - [anon_sym__Alignof] = ACTIONS(3622), - [anon_sym_offsetof] = ACTIONS(3622), - [anon_sym__Generic] = ACTIONS(3622), - [anon_sym_asm] = ACTIONS(3622), - [anon_sym___asm__] = ACTIONS(3622), - [sym_number_literal] = ACTIONS(3624), - [anon_sym_L_SQUOTE] = ACTIONS(3624), - [anon_sym_u_SQUOTE] = ACTIONS(3624), - [anon_sym_U_SQUOTE] = ACTIONS(3624), - [anon_sym_u8_SQUOTE] = ACTIONS(3624), - [anon_sym_SQUOTE] = ACTIONS(3624), - [anon_sym_L_DQUOTE] = ACTIONS(3624), - [anon_sym_u_DQUOTE] = ACTIONS(3624), - [anon_sym_U_DQUOTE] = ACTIONS(3624), - [anon_sym_u8_DQUOTE] = ACTIONS(3624), - [anon_sym_DQUOTE] = ACTIONS(3624), - [sym_true] = ACTIONS(3622), - [sym_false] = ACTIONS(3622), - [anon_sym_NULL] = ACTIONS(3622), - [anon_sym_nullptr] = ACTIONS(3622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3622), - [anon_sym_decltype] = ACTIONS(3622), - [anon_sym_virtual] = ACTIONS(3622), - [anon_sym_alignas] = ACTIONS(3622), - [anon_sym_explicit] = ACTIONS(3622), - [anon_sym_typename] = ACTIONS(3622), - [anon_sym_template] = ACTIONS(3622), - [anon_sym_operator] = ACTIONS(3622), - [anon_sym_try] = ACTIONS(3622), - [anon_sym_delete] = ACTIONS(3622), - [anon_sym_throw] = ACTIONS(3622), - [anon_sym_namespace] = ACTIONS(3622), - [anon_sym_using] = ACTIONS(3622), - [anon_sym_static_assert] = ACTIONS(3622), - [anon_sym_concept] = ACTIONS(3622), - [anon_sym_co_return] = ACTIONS(3622), - [anon_sym_co_yield] = ACTIONS(3622), - [anon_sym_R_DQUOTE] = ACTIONS(3624), - [anon_sym_LR_DQUOTE] = ACTIONS(3624), - [anon_sym_uR_DQUOTE] = ACTIONS(3624), - [anon_sym_UR_DQUOTE] = ACTIONS(3624), - [anon_sym_u8R_DQUOTE] = ACTIONS(3624), - [anon_sym_co_await] = ACTIONS(3622), - [anon_sym_new] = ACTIONS(3622), - [anon_sym_requires] = ACTIONS(3622), - [sym_this] = ACTIONS(3622), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3624), - [sym_semgrep_named_ellipsis] = ACTIONS(3624), + [ts_builtin_sym_end] = ACTIONS(3408), + [sym_identifier] = ACTIONS(3406), + [aux_sym_preproc_include_token1] = ACTIONS(3406), + [aux_sym_preproc_def_token1] = ACTIONS(3406), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3408), + [aux_sym_preproc_if_token1] = ACTIONS(3406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3406), + [sym_preproc_directive] = ACTIONS(3406), + [anon_sym_LPAREN2] = ACTIONS(3408), + [anon_sym_BANG] = ACTIONS(3408), + [anon_sym_TILDE] = ACTIONS(3408), + [anon_sym_DASH] = ACTIONS(3406), + [anon_sym_PLUS] = ACTIONS(3406), + [anon_sym_STAR] = ACTIONS(3408), + [anon_sym_AMP_AMP] = ACTIONS(3408), + [anon_sym_AMP] = ACTIONS(3406), + [anon_sym___extension__] = ACTIONS(3406), + [anon_sym_typedef] = ACTIONS(3406), + [anon_sym_extern] = ACTIONS(3406), + [anon_sym___attribute__] = ACTIONS(3406), + [anon_sym_COLON_COLON] = ACTIONS(3408), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3408), + [anon_sym___declspec] = ACTIONS(3406), + [anon_sym___based] = ACTIONS(3406), + [anon_sym___cdecl] = ACTIONS(3406), + [anon_sym___clrcall] = ACTIONS(3406), + [anon_sym___stdcall] = ACTIONS(3406), + [anon_sym___fastcall] = ACTIONS(3406), + [anon_sym___thiscall] = ACTIONS(3406), + [anon_sym___vectorcall] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3408), + [anon_sym_signed] = ACTIONS(3406), + [anon_sym_unsigned] = ACTIONS(3406), + [anon_sym_long] = ACTIONS(3406), + [anon_sym_short] = ACTIONS(3406), + [anon_sym_LBRACK] = ACTIONS(3406), + [anon_sym_static] = ACTIONS(3406), + [anon_sym_register] = ACTIONS(3406), + [anon_sym_inline] = ACTIONS(3406), + [anon_sym___inline] = ACTIONS(3406), + [anon_sym___inline__] = ACTIONS(3406), + [anon_sym___forceinline] = ACTIONS(3406), + [anon_sym_thread_local] = ACTIONS(3406), + [anon_sym___thread] = ACTIONS(3406), + [anon_sym_const] = ACTIONS(3406), + [anon_sym_constexpr] = ACTIONS(3406), + [anon_sym_volatile] = ACTIONS(3406), + [anon_sym_restrict] = ACTIONS(3406), + [anon_sym___restrict__] = ACTIONS(3406), + [anon_sym__Atomic] = ACTIONS(3406), + [anon_sym__Noreturn] = ACTIONS(3406), + [anon_sym_noreturn] = ACTIONS(3406), + [anon_sym_mutable] = ACTIONS(3406), + [anon_sym_constinit] = ACTIONS(3406), + [anon_sym_consteval] = ACTIONS(3406), + [sym_primitive_type] = ACTIONS(3406), + [anon_sym_enum] = ACTIONS(3406), + [anon_sym_class] = ACTIONS(3406), + [anon_sym_struct] = ACTIONS(3406), + [anon_sym_union] = ACTIONS(3406), + [anon_sym_if] = ACTIONS(3406), + [anon_sym_switch] = ACTIONS(3406), + [anon_sym_case] = ACTIONS(3406), + [anon_sym_default] = ACTIONS(3406), + [anon_sym_while] = ACTIONS(3406), + [anon_sym_do] = ACTIONS(3406), + [anon_sym_for] = ACTIONS(3406), + [anon_sym_return] = ACTIONS(3406), + [anon_sym_break] = ACTIONS(3406), + [anon_sym_continue] = ACTIONS(3406), + [anon_sym_goto] = ACTIONS(3406), + [anon_sym_not] = ACTIONS(3406), + [anon_sym_compl] = ACTIONS(3406), + [anon_sym_DASH_DASH] = ACTIONS(3408), + [anon_sym_PLUS_PLUS] = ACTIONS(3408), + [anon_sym_sizeof] = ACTIONS(3406), + [anon_sym___alignof__] = ACTIONS(3406), + [anon_sym___alignof] = ACTIONS(3406), + [anon_sym__alignof] = ACTIONS(3406), + [anon_sym_alignof] = ACTIONS(3406), + [anon_sym__Alignof] = ACTIONS(3406), + [anon_sym_offsetof] = ACTIONS(3406), + [anon_sym__Generic] = ACTIONS(3406), + [anon_sym_asm] = ACTIONS(3406), + [anon_sym___asm__] = ACTIONS(3406), + [sym_number_literal] = ACTIONS(3408), + [anon_sym_L_SQUOTE] = ACTIONS(3408), + [anon_sym_u_SQUOTE] = ACTIONS(3408), + [anon_sym_U_SQUOTE] = ACTIONS(3408), + [anon_sym_u8_SQUOTE] = ACTIONS(3408), + [anon_sym_SQUOTE] = ACTIONS(3408), + [anon_sym_L_DQUOTE] = ACTIONS(3408), + [anon_sym_u_DQUOTE] = ACTIONS(3408), + [anon_sym_U_DQUOTE] = ACTIONS(3408), + [anon_sym_u8_DQUOTE] = ACTIONS(3408), + [anon_sym_DQUOTE] = ACTIONS(3408), + [sym_true] = ACTIONS(3406), + [sym_false] = ACTIONS(3406), + [anon_sym_NULL] = ACTIONS(3406), + [anon_sym_nullptr] = ACTIONS(3406), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3406), + [anon_sym_decltype] = ACTIONS(3406), + [anon_sym_virtual] = ACTIONS(3406), + [anon_sym_alignas] = ACTIONS(3406), + [anon_sym_explicit] = ACTIONS(3406), + [anon_sym_typename] = ACTIONS(3406), + [anon_sym_template] = ACTIONS(3406), + [anon_sym_operator] = ACTIONS(3406), + [anon_sym_try] = ACTIONS(3406), + [anon_sym_delete] = ACTIONS(3406), + [anon_sym_throw] = ACTIONS(3406), + [anon_sym_namespace] = ACTIONS(3406), + [anon_sym_using] = ACTIONS(3406), + [anon_sym_static_assert] = ACTIONS(3406), + [anon_sym_concept] = ACTIONS(3406), + [anon_sym_co_return] = ACTIONS(3406), + [anon_sym_co_yield] = ACTIONS(3406), + [anon_sym_R_DQUOTE] = ACTIONS(3408), + [anon_sym_LR_DQUOTE] = ACTIONS(3408), + [anon_sym_uR_DQUOTE] = ACTIONS(3408), + [anon_sym_UR_DQUOTE] = ACTIONS(3408), + [anon_sym_u8R_DQUOTE] = ACTIONS(3408), + [anon_sym_co_await] = ACTIONS(3406), + [anon_sym_new] = ACTIONS(3406), + [anon_sym_requires] = ACTIONS(3406), + [sym_this] = ACTIONS(3406), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3408), + [sym_semgrep_named_ellipsis] = ACTIONS(3408), }, [883] = { - [sym_expression] = STATE(5727), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_initializer_list] = STATE(6119), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9595), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [sym_identifier] = ACTIONS(4059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2281), - [anon_sym_COMMA] = ACTIONS(2281), - [anon_sym_LPAREN2] = ACTIONS(2281), - [anon_sym_BANG] = ACTIONS(3277), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2279), - [anon_sym_STAR] = ACTIONS(2281), - [anon_sym_SLASH] = ACTIONS(2279), - [anon_sym_PERCENT] = ACTIONS(2281), - [anon_sym_PIPE_PIPE] = ACTIONS(2281), - [anon_sym_AMP_AMP] = ACTIONS(2281), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_CARET] = ACTIONS(2281), - [anon_sym_AMP] = ACTIONS(2279), - [anon_sym_EQ_EQ] = ACTIONS(2281), - [anon_sym_BANG_EQ] = ACTIONS(2281), - [anon_sym_GT] = ACTIONS(2279), - [anon_sym_GT_EQ] = ACTIONS(2279), - [anon_sym_LT_EQ] = ACTIONS(2279), - [anon_sym_LT] = ACTIONS(2279), - [anon_sym_LT_LT] = ACTIONS(2281), - [anon_sym_GT_GT] = ACTIONS(2279), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_LBRACE] = ACTIONS(4061), - [anon_sym_LBRACK] = ACTIONS(2281), - [sym_primitive_type] = ACTIONS(4063), - [anon_sym_QMARK] = ACTIONS(2281), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_LT_EQ_GT] = ACTIONS(2281), - [anon_sym_or] = ACTIONS(2279), - [anon_sym_and] = ACTIONS(2279), - [anon_sym_bitor] = ACTIONS(2279), - [anon_sym_xor] = ACTIONS(2279), - [anon_sym_bitand] = ACTIONS(2279), - [anon_sym_not_eq] = ACTIONS(2279), - [anon_sym_DASH_DASH] = ACTIONS(2281), - [anon_sym_PLUS_PLUS] = ACTIONS(2281), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [anon_sym_DOT] = ACTIONS(2279), - [anon_sym_DOT_STAR] = ACTIONS(2281), - [anon_sym_DASH_GT] = ACTIONS(2281), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(2281), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [ts_builtin_sym_end] = ACTIONS(3527), + [sym_identifier] = ACTIONS(3525), + [aux_sym_preproc_include_token1] = ACTIONS(3525), + [aux_sym_preproc_def_token1] = ACTIONS(3525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3527), + [aux_sym_preproc_if_token1] = ACTIONS(3525), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3525), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3525), + [sym_preproc_directive] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(3527), + [anon_sym_BANG] = ACTIONS(3527), + [anon_sym_TILDE] = ACTIONS(3527), + [anon_sym_DASH] = ACTIONS(3525), + [anon_sym_PLUS] = ACTIONS(3525), + [anon_sym_STAR] = ACTIONS(3527), + [anon_sym_AMP_AMP] = ACTIONS(3527), + [anon_sym_AMP] = ACTIONS(3525), + [anon_sym___extension__] = ACTIONS(3525), + [anon_sym_typedef] = ACTIONS(3525), + [anon_sym_extern] = ACTIONS(3525), + [anon_sym___attribute__] = ACTIONS(3525), + [anon_sym_COLON_COLON] = ACTIONS(3527), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3527), + [anon_sym___declspec] = ACTIONS(3525), + [anon_sym___based] = ACTIONS(3525), + [anon_sym___cdecl] = ACTIONS(3525), + [anon_sym___clrcall] = ACTIONS(3525), + [anon_sym___stdcall] = ACTIONS(3525), + [anon_sym___fastcall] = ACTIONS(3525), + [anon_sym___thiscall] = ACTIONS(3525), + [anon_sym___vectorcall] = ACTIONS(3525), + [anon_sym_LBRACE] = ACTIONS(3527), + [anon_sym_signed] = ACTIONS(3525), + [anon_sym_unsigned] = ACTIONS(3525), + [anon_sym_long] = ACTIONS(3525), + [anon_sym_short] = ACTIONS(3525), + [anon_sym_LBRACK] = ACTIONS(3525), + [anon_sym_static] = ACTIONS(3525), + [anon_sym_register] = ACTIONS(3525), + [anon_sym_inline] = ACTIONS(3525), + [anon_sym___inline] = ACTIONS(3525), + [anon_sym___inline__] = ACTIONS(3525), + [anon_sym___forceinline] = ACTIONS(3525), + [anon_sym_thread_local] = ACTIONS(3525), + [anon_sym___thread] = ACTIONS(3525), + [anon_sym_const] = ACTIONS(3525), + [anon_sym_constexpr] = ACTIONS(3525), + [anon_sym_volatile] = ACTIONS(3525), + [anon_sym_restrict] = ACTIONS(3525), + [anon_sym___restrict__] = ACTIONS(3525), + [anon_sym__Atomic] = ACTIONS(3525), + [anon_sym__Noreturn] = ACTIONS(3525), + [anon_sym_noreturn] = ACTIONS(3525), + [anon_sym_mutable] = ACTIONS(3525), + [anon_sym_constinit] = ACTIONS(3525), + [anon_sym_consteval] = ACTIONS(3525), + [sym_primitive_type] = ACTIONS(3525), + [anon_sym_enum] = ACTIONS(3525), + [anon_sym_class] = ACTIONS(3525), + [anon_sym_struct] = ACTIONS(3525), + [anon_sym_union] = ACTIONS(3525), + [anon_sym_if] = ACTIONS(3525), + [anon_sym_switch] = ACTIONS(3525), + [anon_sym_case] = ACTIONS(3525), + [anon_sym_default] = ACTIONS(3525), + [anon_sym_while] = ACTIONS(3525), + [anon_sym_do] = ACTIONS(3525), + [anon_sym_for] = ACTIONS(3525), + [anon_sym_return] = ACTIONS(3525), + [anon_sym_break] = ACTIONS(3525), + [anon_sym_continue] = ACTIONS(3525), + [anon_sym_goto] = ACTIONS(3525), + [anon_sym_not] = ACTIONS(3525), + [anon_sym_compl] = ACTIONS(3525), + [anon_sym_DASH_DASH] = ACTIONS(3527), + [anon_sym_PLUS_PLUS] = ACTIONS(3527), + [anon_sym_sizeof] = ACTIONS(3525), + [anon_sym___alignof__] = ACTIONS(3525), + [anon_sym___alignof] = ACTIONS(3525), + [anon_sym__alignof] = ACTIONS(3525), + [anon_sym_alignof] = ACTIONS(3525), + [anon_sym__Alignof] = ACTIONS(3525), + [anon_sym_offsetof] = ACTIONS(3525), + [anon_sym__Generic] = ACTIONS(3525), + [anon_sym_asm] = ACTIONS(3525), + [anon_sym___asm__] = ACTIONS(3525), + [sym_number_literal] = ACTIONS(3527), + [anon_sym_L_SQUOTE] = ACTIONS(3527), + [anon_sym_u_SQUOTE] = ACTIONS(3527), + [anon_sym_U_SQUOTE] = ACTIONS(3527), + [anon_sym_u8_SQUOTE] = ACTIONS(3527), + [anon_sym_SQUOTE] = ACTIONS(3527), + [anon_sym_L_DQUOTE] = ACTIONS(3527), + [anon_sym_u_DQUOTE] = ACTIONS(3527), + [anon_sym_U_DQUOTE] = ACTIONS(3527), + [anon_sym_u8_DQUOTE] = ACTIONS(3527), + [anon_sym_DQUOTE] = ACTIONS(3527), + [sym_true] = ACTIONS(3525), + [sym_false] = ACTIONS(3525), + [anon_sym_NULL] = ACTIONS(3525), + [anon_sym_nullptr] = ACTIONS(3525), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3525), + [anon_sym_decltype] = ACTIONS(3525), + [anon_sym_virtual] = ACTIONS(3525), + [anon_sym_alignas] = ACTIONS(3525), + [anon_sym_explicit] = ACTIONS(3525), + [anon_sym_typename] = ACTIONS(3525), + [anon_sym_template] = ACTIONS(3525), + [anon_sym_operator] = ACTIONS(3525), + [anon_sym_try] = ACTIONS(3525), + [anon_sym_delete] = ACTIONS(3525), + [anon_sym_throw] = ACTIONS(3525), + [anon_sym_namespace] = ACTIONS(3525), + [anon_sym_using] = ACTIONS(3525), + [anon_sym_static_assert] = ACTIONS(3525), + [anon_sym_concept] = ACTIONS(3525), + [anon_sym_co_return] = ACTIONS(3525), + [anon_sym_co_yield] = ACTIONS(3525), + [anon_sym_R_DQUOTE] = ACTIONS(3527), + [anon_sym_LR_DQUOTE] = ACTIONS(3527), + [anon_sym_uR_DQUOTE] = ACTIONS(3527), + [anon_sym_UR_DQUOTE] = ACTIONS(3527), + [anon_sym_u8R_DQUOTE] = ACTIONS(3527), + [anon_sym_co_await] = ACTIONS(3525), + [anon_sym_new] = ACTIONS(3525), + [anon_sym_requires] = ACTIONS(3525), + [sym_this] = ACTIONS(3525), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3527), + [sym_semgrep_named_ellipsis] = ACTIONS(3527), }, [884] = { - [sym_preproc_def] = STATE(2179), - [sym_preproc_function_def] = STATE(2179), - [sym_preproc_call] = STATE(2179), - [sym_preproc_if_in_field_declaration_list] = STATE(2179), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2179), - [sym_type_definition] = STATE(2179), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6875), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7662), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(884), - [sym_field_declaration] = STATE(2179), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2179), - [sym_operator_cast] = STATE(8085), - [sym_inline_method_definition] = STATE(2179), - [sym_constructor_specifiers] = STATE(1942), - [sym_operator_cast_definition] = STATE(2179), - [sym_operator_cast_declaration] = STATE(2179), - [sym_constructor_or_destructor_definition] = STATE(2179), - [sym_constructor_or_destructor_declaration] = STATE(2179), - [sym_friend_declaration] = STATE(2179), - [sym_access_specifier] = STATE(10098), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2179), - [sym_alias_declaration] = STATE(2179), - [sym_static_assert_declaration] = STATE(2179), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8085), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(884), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1942), - [sym_identifier] = ACTIONS(3908), - [aux_sym_preproc_def_token1] = ACTIONS(4065), - [aux_sym_preproc_if_token1] = ACTIONS(4068), - [aux_sym_preproc_if_token2] = ACTIONS(3917), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4071), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4074), - [aux_sym_preproc_else_token1] = ACTIONS(3917), - [aux_sym_preproc_elif_token1] = ACTIONS(3917), - [sym_preproc_directive] = ACTIONS(4077), - [anon_sym_LPAREN2] = ACTIONS(3928), - [anon_sym_TILDE] = ACTIONS(3931), - [anon_sym_STAR] = ACTIONS(3934), - [anon_sym_AMP_AMP] = ACTIONS(3937), - [anon_sym_AMP] = ACTIONS(3940), - [anon_sym___extension__] = ACTIONS(4080), - [anon_sym_typedef] = ACTIONS(4083), - [anon_sym_extern] = ACTIONS(3949), - [anon_sym___attribute__] = ACTIONS(3952), - [anon_sym_COLON_COLON] = ACTIONS(3955), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3958), - [anon_sym___declspec] = ACTIONS(3961), - [anon_sym___based] = ACTIONS(3964), - [anon_sym_signed] = ACTIONS(3967), - [anon_sym_unsigned] = ACTIONS(3967), - [anon_sym_long] = ACTIONS(3967), - [anon_sym_short] = ACTIONS(3967), - [anon_sym_LBRACK] = ACTIONS(3970), - [anon_sym_static] = ACTIONS(3949), - [anon_sym_register] = ACTIONS(3949), - [anon_sym_inline] = ACTIONS(3949), - [anon_sym___inline] = ACTIONS(3949), - [anon_sym___inline__] = ACTIONS(3949), - [anon_sym___forceinline] = ACTIONS(3949), - [anon_sym_thread_local] = ACTIONS(3949), - [anon_sym___thread] = ACTIONS(3949), - [anon_sym_const] = ACTIONS(3973), - [anon_sym_constexpr] = ACTIONS(3973), - [anon_sym_volatile] = ACTIONS(3973), - [anon_sym_restrict] = ACTIONS(3973), - [anon_sym___restrict__] = ACTIONS(3973), - [anon_sym__Atomic] = ACTIONS(3973), - [anon_sym__Noreturn] = ACTIONS(3973), - [anon_sym_noreturn] = ACTIONS(3973), - [anon_sym_mutable] = ACTIONS(3973), - [anon_sym_constinit] = ACTIONS(3973), - [anon_sym_consteval] = ACTIONS(3973), - [sym_primitive_type] = ACTIONS(3976), - [anon_sym_enum] = ACTIONS(3979), - [anon_sym_class] = ACTIONS(3982), - [anon_sym_struct] = ACTIONS(3985), - [anon_sym_union] = ACTIONS(3988), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3991), - [anon_sym_decltype] = ACTIONS(3994), - [anon_sym_virtual] = ACTIONS(3997), - [anon_sym_alignas] = ACTIONS(4000), - [anon_sym_explicit] = ACTIONS(4003), - [anon_sym_typename] = ACTIONS(4006), - [anon_sym_template] = ACTIONS(4086), - [anon_sym_operator] = ACTIONS(4012), - [anon_sym_friend] = ACTIONS(4089), - [anon_sym_public] = ACTIONS(4018), - [anon_sym_private] = ACTIONS(4018), - [anon_sym_protected] = ACTIONS(4018), - [anon_sym_using] = ACTIONS(4092), - [anon_sym_static_assert] = ACTIONS(4095), + [ts_builtin_sym_end] = ACTIONS(3531), + [sym_identifier] = ACTIONS(3529), + [aux_sym_preproc_include_token1] = ACTIONS(3529), + [aux_sym_preproc_def_token1] = ACTIONS(3529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3531), + [aux_sym_preproc_if_token1] = ACTIONS(3529), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3529), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3529), + [sym_preproc_directive] = ACTIONS(3529), + [anon_sym_LPAREN2] = ACTIONS(3531), + [anon_sym_BANG] = ACTIONS(3531), + [anon_sym_TILDE] = ACTIONS(3531), + [anon_sym_DASH] = ACTIONS(3529), + [anon_sym_PLUS] = ACTIONS(3529), + [anon_sym_STAR] = ACTIONS(3531), + [anon_sym_AMP_AMP] = ACTIONS(3531), + [anon_sym_AMP] = ACTIONS(3529), + [anon_sym___extension__] = ACTIONS(3529), + [anon_sym_typedef] = ACTIONS(3529), + [anon_sym_extern] = ACTIONS(3529), + [anon_sym___attribute__] = ACTIONS(3529), + [anon_sym_COLON_COLON] = ACTIONS(3531), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3531), + [anon_sym___declspec] = ACTIONS(3529), + [anon_sym___based] = ACTIONS(3529), + [anon_sym___cdecl] = ACTIONS(3529), + [anon_sym___clrcall] = ACTIONS(3529), + [anon_sym___stdcall] = ACTIONS(3529), + [anon_sym___fastcall] = ACTIONS(3529), + [anon_sym___thiscall] = ACTIONS(3529), + [anon_sym___vectorcall] = ACTIONS(3529), + [anon_sym_LBRACE] = ACTIONS(3531), + [anon_sym_signed] = ACTIONS(3529), + [anon_sym_unsigned] = ACTIONS(3529), + [anon_sym_long] = ACTIONS(3529), + [anon_sym_short] = ACTIONS(3529), + [anon_sym_LBRACK] = ACTIONS(3529), + [anon_sym_static] = ACTIONS(3529), + [anon_sym_register] = ACTIONS(3529), + [anon_sym_inline] = ACTIONS(3529), + [anon_sym___inline] = ACTIONS(3529), + [anon_sym___inline__] = ACTIONS(3529), + [anon_sym___forceinline] = ACTIONS(3529), + [anon_sym_thread_local] = ACTIONS(3529), + [anon_sym___thread] = ACTIONS(3529), + [anon_sym_const] = ACTIONS(3529), + [anon_sym_constexpr] = ACTIONS(3529), + [anon_sym_volatile] = ACTIONS(3529), + [anon_sym_restrict] = ACTIONS(3529), + [anon_sym___restrict__] = ACTIONS(3529), + [anon_sym__Atomic] = ACTIONS(3529), + [anon_sym__Noreturn] = ACTIONS(3529), + [anon_sym_noreturn] = ACTIONS(3529), + [anon_sym_mutable] = ACTIONS(3529), + [anon_sym_constinit] = ACTIONS(3529), + [anon_sym_consteval] = ACTIONS(3529), + [sym_primitive_type] = ACTIONS(3529), + [anon_sym_enum] = ACTIONS(3529), + [anon_sym_class] = ACTIONS(3529), + [anon_sym_struct] = ACTIONS(3529), + [anon_sym_union] = ACTIONS(3529), + [anon_sym_if] = ACTIONS(3529), + [anon_sym_switch] = ACTIONS(3529), + [anon_sym_case] = ACTIONS(3529), + [anon_sym_default] = ACTIONS(3529), + [anon_sym_while] = ACTIONS(3529), + [anon_sym_do] = ACTIONS(3529), + [anon_sym_for] = ACTIONS(3529), + [anon_sym_return] = ACTIONS(3529), + [anon_sym_break] = ACTIONS(3529), + [anon_sym_continue] = ACTIONS(3529), + [anon_sym_goto] = ACTIONS(3529), + [anon_sym_not] = ACTIONS(3529), + [anon_sym_compl] = ACTIONS(3529), + [anon_sym_DASH_DASH] = ACTIONS(3531), + [anon_sym_PLUS_PLUS] = ACTIONS(3531), + [anon_sym_sizeof] = ACTIONS(3529), + [anon_sym___alignof__] = ACTIONS(3529), + [anon_sym___alignof] = ACTIONS(3529), + [anon_sym__alignof] = ACTIONS(3529), + [anon_sym_alignof] = ACTIONS(3529), + [anon_sym__Alignof] = ACTIONS(3529), + [anon_sym_offsetof] = ACTIONS(3529), + [anon_sym__Generic] = ACTIONS(3529), + [anon_sym_asm] = ACTIONS(3529), + [anon_sym___asm__] = ACTIONS(3529), + [sym_number_literal] = ACTIONS(3531), + [anon_sym_L_SQUOTE] = ACTIONS(3531), + [anon_sym_u_SQUOTE] = ACTIONS(3531), + [anon_sym_U_SQUOTE] = ACTIONS(3531), + [anon_sym_u8_SQUOTE] = ACTIONS(3531), + [anon_sym_SQUOTE] = ACTIONS(3531), + [anon_sym_L_DQUOTE] = ACTIONS(3531), + [anon_sym_u_DQUOTE] = ACTIONS(3531), + [anon_sym_U_DQUOTE] = ACTIONS(3531), + [anon_sym_u8_DQUOTE] = ACTIONS(3531), + [anon_sym_DQUOTE] = ACTIONS(3531), + [sym_true] = ACTIONS(3529), + [sym_false] = ACTIONS(3529), + [anon_sym_NULL] = ACTIONS(3529), + [anon_sym_nullptr] = ACTIONS(3529), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3529), + [anon_sym_decltype] = ACTIONS(3529), + [anon_sym_virtual] = ACTIONS(3529), + [anon_sym_alignas] = ACTIONS(3529), + [anon_sym_explicit] = ACTIONS(3529), + [anon_sym_typename] = ACTIONS(3529), + [anon_sym_template] = ACTIONS(3529), + [anon_sym_operator] = ACTIONS(3529), + [anon_sym_try] = ACTIONS(3529), + [anon_sym_delete] = ACTIONS(3529), + [anon_sym_throw] = ACTIONS(3529), + [anon_sym_namespace] = ACTIONS(3529), + [anon_sym_using] = ACTIONS(3529), + [anon_sym_static_assert] = ACTIONS(3529), + [anon_sym_concept] = ACTIONS(3529), + [anon_sym_co_return] = ACTIONS(3529), + [anon_sym_co_yield] = ACTIONS(3529), + [anon_sym_R_DQUOTE] = ACTIONS(3531), + [anon_sym_LR_DQUOTE] = ACTIONS(3531), + [anon_sym_uR_DQUOTE] = ACTIONS(3531), + [anon_sym_UR_DQUOTE] = ACTIONS(3531), + [anon_sym_u8R_DQUOTE] = ACTIONS(3531), + [anon_sym_co_await] = ACTIONS(3529), + [anon_sym_new] = ACTIONS(3529), + [anon_sym_requires] = ACTIONS(3529), + [sym_this] = ACTIONS(3529), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3531), + [sym_semgrep_named_ellipsis] = ACTIONS(3531), }, [885] = { - [sym_expression] = STATE(6072), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_initializer_list] = STATE(5196), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2281), - [anon_sym_LPAREN2] = ACTIONS(2281), - [anon_sym_BANG] = ACTIONS(4100), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2279), - [anon_sym_STAR] = ACTIONS(2281), - [anon_sym_SLASH] = ACTIONS(2279), - [anon_sym_PERCENT] = ACTIONS(2281), - [anon_sym_PIPE_PIPE] = ACTIONS(2281), - [anon_sym_AMP_AMP] = ACTIONS(2281), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_CARET] = ACTIONS(2281), - [anon_sym_AMP] = ACTIONS(2279), - [anon_sym_EQ_EQ] = ACTIONS(2281), - [anon_sym_BANG_EQ] = ACTIONS(2281), - [anon_sym_GT] = ACTIONS(2279), - [anon_sym_GT_EQ] = ACTIONS(2281), - [anon_sym_LT_EQ] = ACTIONS(2279), - [anon_sym_LT] = ACTIONS(2279), - [anon_sym_LT_LT] = ACTIONS(2281), - [anon_sym_GT_GT] = ACTIONS(2281), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_LBRACK] = ACTIONS(2281), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_COLON] = ACTIONS(2279), - [anon_sym_QMARK] = ACTIONS(2281), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_LT_EQ_GT] = ACTIONS(2281), - [anon_sym_or] = ACTIONS(2279), - [anon_sym_and] = ACTIONS(2279), - [anon_sym_bitor] = ACTIONS(2279), - [anon_sym_xor] = ACTIONS(2279), - [anon_sym_bitand] = ACTIONS(2279), - [anon_sym_not_eq] = ACTIONS(2279), - [anon_sym_DASH_DASH] = ACTIONS(2281), - [anon_sym_PLUS_PLUS] = ACTIONS(2281), - [anon_sym_sizeof] = ACTIONS(4106), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(2279), - [anon_sym_DOT_STAR] = ACTIONS(2281), - [anon_sym_DASH_GT] = ACTIONS(2281), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), + [ts_builtin_sym_end] = ACTIONS(3535), + [sym_identifier] = ACTIONS(3533), + [aux_sym_preproc_include_token1] = ACTIONS(3533), + [aux_sym_preproc_def_token1] = ACTIONS(3533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3535), + [aux_sym_preproc_if_token1] = ACTIONS(3533), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3533), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3533), + [sym_preproc_directive] = ACTIONS(3533), + [anon_sym_LPAREN2] = ACTIONS(3535), + [anon_sym_BANG] = ACTIONS(3535), + [anon_sym_TILDE] = ACTIONS(3535), + [anon_sym_DASH] = ACTIONS(3533), + [anon_sym_PLUS] = ACTIONS(3533), + [anon_sym_STAR] = ACTIONS(3535), + [anon_sym_AMP_AMP] = ACTIONS(3535), + [anon_sym_AMP] = ACTIONS(3533), + [anon_sym___extension__] = ACTIONS(3533), + [anon_sym_typedef] = ACTIONS(3533), + [anon_sym_extern] = ACTIONS(3533), + [anon_sym___attribute__] = ACTIONS(3533), + [anon_sym_COLON_COLON] = ACTIONS(3535), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3535), + [anon_sym___declspec] = ACTIONS(3533), + [anon_sym___based] = ACTIONS(3533), + [anon_sym___cdecl] = ACTIONS(3533), + [anon_sym___clrcall] = ACTIONS(3533), + [anon_sym___stdcall] = ACTIONS(3533), + [anon_sym___fastcall] = ACTIONS(3533), + [anon_sym___thiscall] = ACTIONS(3533), + [anon_sym___vectorcall] = ACTIONS(3533), + [anon_sym_LBRACE] = ACTIONS(3535), + [anon_sym_signed] = ACTIONS(3533), + [anon_sym_unsigned] = ACTIONS(3533), + [anon_sym_long] = ACTIONS(3533), + [anon_sym_short] = ACTIONS(3533), + [anon_sym_LBRACK] = ACTIONS(3533), + [anon_sym_static] = ACTIONS(3533), + [anon_sym_register] = ACTIONS(3533), + [anon_sym_inline] = ACTIONS(3533), + [anon_sym___inline] = ACTIONS(3533), + [anon_sym___inline__] = ACTIONS(3533), + [anon_sym___forceinline] = ACTIONS(3533), + [anon_sym_thread_local] = ACTIONS(3533), + [anon_sym___thread] = ACTIONS(3533), + [anon_sym_const] = ACTIONS(3533), + [anon_sym_constexpr] = ACTIONS(3533), + [anon_sym_volatile] = ACTIONS(3533), + [anon_sym_restrict] = ACTIONS(3533), + [anon_sym___restrict__] = ACTIONS(3533), + [anon_sym__Atomic] = ACTIONS(3533), + [anon_sym__Noreturn] = ACTIONS(3533), + [anon_sym_noreturn] = ACTIONS(3533), + [anon_sym_mutable] = ACTIONS(3533), + [anon_sym_constinit] = ACTIONS(3533), + [anon_sym_consteval] = ACTIONS(3533), + [sym_primitive_type] = ACTIONS(3533), + [anon_sym_enum] = ACTIONS(3533), + [anon_sym_class] = ACTIONS(3533), + [anon_sym_struct] = ACTIONS(3533), + [anon_sym_union] = ACTIONS(3533), + [anon_sym_if] = ACTIONS(3533), + [anon_sym_switch] = ACTIONS(3533), + [anon_sym_case] = ACTIONS(3533), + [anon_sym_default] = ACTIONS(3533), + [anon_sym_while] = ACTIONS(3533), + [anon_sym_do] = ACTIONS(3533), + [anon_sym_for] = ACTIONS(3533), + [anon_sym_return] = ACTIONS(3533), + [anon_sym_break] = ACTIONS(3533), + [anon_sym_continue] = ACTIONS(3533), + [anon_sym_goto] = ACTIONS(3533), + [anon_sym_not] = ACTIONS(3533), + [anon_sym_compl] = ACTIONS(3533), + [anon_sym_DASH_DASH] = ACTIONS(3535), + [anon_sym_PLUS_PLUS] = ACTIONS(3535), + [anon_sym_sizeof] = ACTIONS(3533), + [anon_sym___alignof__] = ACTIONS(3533), + [anon_sym___alignof] = ACTIONS(3533), + [anon_sym__alignof] = ACTIONS(3533), + [anon_sym_alignof] = ACTIONS(3533), + [anon_sym__Alignof] = ACTIONS(3533), + [anon_sym_offsetof] = ACTIONS(3533), + [anon_sym__Generic] = ACTIONS(3533), + [anon_sym_asm] = ACTIONS(3533), + [anon_sym___asm__] = ACTIONS(3533), + [sym_number_literal] = ACTIONS(3535), + [anon_sym_L_SQUOTE] = ACTIONS(3535), + [anon_sym_u_SQUOTE] = ACTIONS(3535), + [anon_sym_U_SQUOTE] = ACTIONS(3535), + [anon_sym_u8_SQUOTE] = ACTIONS(3535), + [anon_sym_SQUOTE] = ACTIONS(3535), + [anon_sym_L_DQUOTE] = ACTIONS(3535), + [anon_sym_u_DQUOTE] = ACTIONS(3535), + [anon_sym_U_DQUOTE] = ACTIONS(3535), + [anon_sym_u8_DQUOTE] = ACTIONS(3535), + [anon_sym_DQUOTE] = ACTIONS(3535), + [sym_true] = ACTIONS(3533), + [sym_false] = ACTIONS(3533), + [anon_sym_NULL] = ACTIONS(3533), + [anon_sym_nullptr] = ACTIONS(3533), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3533), + [anon_sym_decltype] = ACTIONS(3533), + [anon_sym_virtual] = ACTIONS(3533), + [anon_sym_alignas] = ACTIONS(3533), + [anon_sym_explicit] = ACTIONS(3533), + [anon_sym_typename] = ACTIONS(3533), + [anon_sym_template] = ACTIONS(3533), + [anon_sym_operator] = ACTIONS(3533), + [anon_sym_try] = ACTIONS(3533), + [anon_sym_delete] = ACTIONS(3533), + [anon_sym_throw] = ACTIONS(3533), + [anon_sym_namespace] = ACTIONS(3533), + [anon_sym_using] = ACTIONS(3533), + [anon_sym_static_assert] = ACTIONS(3533), + [anon_sym_concept] = ACTIONS(3533), + [anon_sym_co_return] = ACTIONS(3533), + [anon_sym_co_yield] = ACTIONS(3533), + [anon_sym_R_DQUOTE] = ACTIONS(3535), + [anon_sym_LR_DQUOTE] = ACTIONS(3535), + [anon_sym_uR_DQUOTE] = ACTIONS(3535), + [anon_sym_UR_DQUOTE] = ACTIONS(3535), + [anon_sym_u8R_DQUOTE] = ACTIONS(3535), + [anon_sym_co_await] = ACTIONS(3533), + [anon_sym_new] = ACTIONS(3533), + [anon_sym_requires] = ACTIONS(3533), + [sym_this] = ACTIONS(3533), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3535), + [sym_semgrep_named_ellipsis] = ACTIONS(3535), }, [886] = { - [sym_expression] = STATE(5925), - [sym_expression_not_binary] = STATE(6169), - [sym_conditional_expression] = STATE(6267), - [sym_assignment_expression] = STATE(6267), - [sym_pointer_expression] = STATE(4422), - [sym_unary_expression] = STATE(6267), - [sym_binary_expression] = STATE(6169), - [sym_update_expression] = STATE(6267), - [sym_cast_expression] = STATE(6267), - [sym_sizeof_expression] = STATE(6267), - [sym_alignof_expression] = STATE(6267), - [sym_offsetof_expression] = STATE(6267), - [sym_generic_expression] = STATE(6267), - [sym_subscript_expression] = STATE(4422), - [sym_call_expression] = STATE(4422), - [sym_gnu_asm_expression] = STATE(6267), - [sym_field_expression] = STATE(4422), - [sym_compound_literal_expression] = STATE(6267), - [sym_parenthesized_expression] = STATE(4422), - [sym_initializer_list] = STATE(6257), - [sym_char_literal] = STATE(6147), - [sym_concatenated_string] = STATE(6147), - [sym_string_literal] = STATE(4563), - [sym_null] = STATE(6267), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9242), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6267), - [sym_raw_string_literal] = STATE(4563), - [sym_co_await_expression] = STATE(6267), - [sym_new_expression] = STATE(6267), - [sym_delete_expression] = STATE(6267), - [sym_requires_clause] = STATE(6267), - [sym_requires_expression] = STATE(6267), - [sym_lambda_expression] = STATE(6267), - [sym_lambda_capture_specifier] = STATE(7263), - [sym_fold_expression] = STATE(6267), - [sym_parameter_pack_expansion] = STATE(6267), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4422), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4422), - [sym_semgrep_ellipsis] = STATE(6169), - [sym_deep_ellipsis] = STATE(6169), - [sym_identifier] = ACTIONS(4112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2279), - [anon_sym_LPAREN2] = ACTIONS(2281), - [anon_sym_BANG] = ACTIONS(4114), - [anon_sym_TILDE] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2279), - [anon_sym_STAR] = ACTIONS(2281), - [anon_sym_SLASH] = ACTIONS(2279), - [anon_sym_PERCENT] = ACTIONS(2281), - [anon_sym_PIPE_PIPE] = ACTIONS(2281), - [anon_sym_AMP_AMP] = ACTIONS(2281), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_CARET] = ACTIONS(2281), - [anon_sym_AMP] = ACTIONS(2279), - [anon_sym_EQ_EQ] = ACTIONS(2281), - [anon_sym_BANG_EQ] = ACTIONS(2281), - [anon_sym_GT] = ACTIONS(2279), - [anon_sym_GT_EQ] = ACTIONS(2281), - [anon_sym_LT_EQ] = ACTIONS(2279), - [anon_sym_LT] = ACTIONS(2279), - [anon_sym_LT_LT] = ACTIONS(2281), - [anon_sym_GT_GT] = ACTIONS(2281), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_LBRACE] = ACTIONS(4120), - [anon_sym_LBRACK] = ACTIONS(2281), - [sym_primitive_type] = ACTIONS(4122), - [anon_sym_QMARK] = ACTIONS(2281), - [anon_sym_not] = ACTIONS(4114), - [anon_sym_compl] = ACTIONS(4114), - [anon_sym_LT_EQ_GT] = ACTIONS(2281), - [anon_sym_or] = ACTIONS(2279), - [anon_sym_and] = ACTIONS(2279), - [anon_sym_bitor] = ACTIONS(2279), - [anon_sym_xor] = ACTIONS(2279), - [anon_sym_bitand] = ACTIONS(2279), - [anon_sym_not_eq] = ACTIONS(2279), - [anon_sym_DASH_DASH] = ACTIONS(2281), - [anon_sym_PLUS_PLUS] = ACTIONS(2281), - [anon_sym_sizeof] = ACTIONS(4124), - [anon_sym___alignof__] = ACTIONS(4126), - [anon_sym___alignof] = ACTIONS(4126), - [anon_sym__alignof] = ACTIONS(4126), - [anon_sym_alignof] = ACTIONS(4126), - [anon_sym__Alignof] = ACTIONS(4126), - [anon_sym_offsetof] = ACTIONS(4128), - [anon_sym__Generic] = ACTIONS(4130), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [anon_sym_DOT] = ACTIONS(2279), - [anon_sym_DOT_STAR] = ACTIONS(2281), - [anon_sym_DASH_GT] = ACTIONS(2281), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4136), - [anon_sym_u_SQUOTE] = ACTIONS(4136), - [anon_sym_U_SQUOTE] = ACTIONS(4136), - [anon_sym_u8_SQUOTE] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_L_DQUOTE] = ACTIONS(4138), - [anon_sym_u_DQUOTE] = ACTIONS(4138), - [anon_sym_U_DQUOTE] = ACTIONS(4138), - [anon_sym_u8_DQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [anon_sym_NULL] = ACTIONS(4142), - [anon_sym_nullptr] = ACTIONS(4142), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4150), - [anon_sym_requires] = ACTIONS(4152), - [sym_this] = ACTIONS(4140), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4154), - [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(2281), - [sym_semgrep_named_ellipsis] = ACTIONS(4156), + [ts_builtin_sym_end] = ACTIONS(3543), + [sym_identifier] = ACTIONS(3541), + [aux_sym_preproc_include_token1] = ACTIONS(3541), + [aux_sym_preproc_def_token1] = ACTIONS(3541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3543), + [aux_sym_preproc_if_token1] = ACTIONS(3541), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3541), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3541), + [sym_preproc_directive] = ACTIONS(3541), + [anon_sym_LPAREN2] = ACTIONS(3543), + [anon_sym_BANG] = ACTIONS(3543), + [anon_sym_TILDE] = ACTIONS(3543), + [anon_sym_DASH] = ACTIONS(3541), + [anon_sym_PLUS] = ACTIONS(3541), + [anon_sym_STAR] = ACTIONS(3543), + [anon_sym_AMP_AMP] = ACTIONS(3543), + [anon_sym_AMP] = ACTIONS(3541), + [anon_sym___extension__] = ACTIONS(3541), + [anon_sym_typedef] = ACTIONS(3541), + [anon_sym_extern] = ACTIONS(3541), + [anon_sym___attribute__] = ACTIONS(3541), + [anon_sym_COLON_COLON] = ACTIONS(3543), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3543), + [anon_sym___declspec] = ACTIONS(3541), + [anon_sym___based] = ACTIONS(3541), + [anon_sym___cdecl] = ACTIONS(3541), + [anon_sym___clrcall] = ACTIONS(3541), + [anon_sym___stdcall] = ACTIONS(3541), + [anon_sym___fastcall] = ACTIONS(3541), + [anon_sym___thiscall] = ACTIONS(3541), + [anon_sym___vectorcall] = ACTIONS(3541), + [anon_sym_LBRACE] = ACTIONS(3543), + [anon_sym_signed] = ACTIONS(3541), + [anon_sym_unsigned] = ACTIONS(3541), + [anon_sym_long] = ACTIONS(3541), + [anon_sym_short] = ACTIONS(3541), + [anon_sym_LBRACK] = ACTIONS(3541), + [anon_sym_static] = ACTIONS(3541), + [anon_sym_register] = ACTIONS(3541), + [anon_sym_inline] = ACTIONS(3541), + [anon_sym___inline] = ACTIONS(3541), + [anon_sym___inline__] = ACTIONS(3541), + [anon_sym___forceinline] = ACTIONS(3541), + [anon_sym_thread_local] = ACTIONS(3541), + [anon_sym___thread] = ACTIONS(3541), + [anon_sym_const] = ACTIONS(3541), + [anon_sym_constexpr] = ACTIONS(3541), + [anon_sym_volatile] = ACTIONS(3541), + [anon_sym_restrict] = ACTIONS(3541), + [anon_sym___restrict__] = ACTIONS(3541), + [anon_sym__Atomic] = ACTIONS(3541), + [anon_sym__Noreturn] = ACTIONS(3541), + [anon_sym_noreturn] = ACTIONS(3541), + [anon_sym_mutable] = ACTIONS(3541), + [anon_sym_constinit] = ACTIONS(3541), + [anon_sym_consteval] = ACTIONS(3541), + [sym_primitive_type] = ACTIONS(3541), + [anon_sym_enum] = ACTIONS(3541), + [anon_sym_class] = ACTIONS(3541), + [anon_sym_struct] = ACTIONS(3541), + [anon_sym_union] = ACTIONS(3541), + [anon_sym_if] = ACTIONS(3541), + [anon_sym_switch] = ACTIONS(3541), + [anon_sym_case] = ACTIONS(3541), + [anon_sym_default] = ACTIONS(3541), + [anon_sym_while] = ACTIONS(3541), + [anon_sym_do] = ACTIONS(3541), + [anon_sym_for] = ACTIONS(3541), + [anon_sym_return] = ACTIONS(3541), + [anon_sym_break] = ACTIONS(3541), + [anon_sym_continue] = ACTIONS(3541), + [anon_sym_goto] = ACTIONS(3541), + [anon_sym_not] = ACTIONS(3541), + [anon_sym_compl] = ACTIONS(3541), + [anon_sym_DASH_DASH] = ACTIONS(3543), + [anon_sym_PLUS_PLUS] = ACTIONS(3543), + [anon_sym_sizeof] = ACTIONS(3541), + [anon_sym___alignof__] = ACTIONS(3541), + [anon_sym___alignof] = ACTIONS(3541), + [anon_sym__alignof] = ACTIONS(3541), + [anon_sym_alignof] = ACTIONS(3541), + [anon_sym__Alignof] = ACTIONS(3541), + [anon_sym_offsetof] = ACTIONS(3541), + [anon_sym__Generic] = ACTIONS(3541), + [anon_sym_asm] = ACTIONS(3541), + [anon_sym___asm__] = ACTIONS(3541), + [sym_number_literal] = ACTIONS(3543), + [anon_sym_L_SQUOTE] = ACTIONS(3543), + [anon_sym_u_SQUOTE] = ACTIONS(3543), + [anon_sym_U_SQUOTE] = ACTIONS(3543), + [anon_sym_u8_SQUOTE] = ACTIONS(3543), + [anon_sym_SQUOTE] = ACTIONS(3543), + [anon_sym_L_DQUOTE] = ACTIONS(3543), + [anon_sym_u_DQUOTE] = ACTIONS(3543), + [anon_sym_U_DQUOTE] = ACTIONS(3543), + [anon_sym_u8_DQUOTE] = ACTIONS(3543), + [anon_sym_DQUOTE] = ACTIONS(3543), + [sym_true] = ACTIONS(3541), + [sym_false] = ACTIONS(3541), + [anon_sym_NULL] = ACTIONS(3541), + [anon_sym_nullptr] = ACTIONS(3541), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3541), + [anon_sym_decltype] = ACTIONS(3541), + [anon_sym_virtual] = ACTIONS(3541), + [anon_sym_alignas] = ACTIONS(3541), + [anon_sym_explicit] = ACTIONS(3541), + [anon_sym_typename] = ACTIONS(3541), + [anon_sym_template] = ACTIONS(3541), + [anon_sym_operator] = ACTIONS(3541), + [anon_sym_try] = ACTIONS(3541), + [anon_sym_delete] = ACTIONS(3541), + [anon_sym_throw] = ACTIONS(3541), + [anon_sym_namespace] = ACTIONS(3541), + [anon_sym_using] = ACTIONS(3541), + [anon_sym_static_assert] = ACTIONS(3541), + [anon_sym_concept] = ACTIONS(3541), + [anon_sym_co_return] = ACTIONS(3541), + [anon_sym_co_yield] = ACTIONS(3541), + [anon_sym_R_DQUOTE] = ACTIONS(3543), + [anon_sym_LR_DQUOTE] = ACTIONS(3543), + [anon_sym_uR_DQUOTE] = ACTIONS(3543), + [anon_sym_UR_DQUOTE] = ACTIONS(3543), + [anon_sym_u8R_DQUOTE] = ACTIONS(3543), + [anon_sym_co_await] = ACTIONS(3541), + [anon_sym_new] = ACTIONS(3541), + [anon_sym_requires] = ACTIONS(3541), + [sym_this] = ACTIONS(3541), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3543), + [sym_semgrep_named_ellipsis] = ACTIONS(3543), }, [887] = { - [sym_preproc_def] = STATE(2302), - [sym_preproc_function_def] = STATE(2302), - [sym_preproc_call] = STATE(2302), - [sym_preproc_if_in_field_declaration_list] = STATE(2302), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2302), - [sym_type_definition] = STATE(2302), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6923), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7673), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(900), - [sym_field_declaration] = STATE(2302), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2302), - [sym_operator_cast] = STATE(8121), - [sym_inline_method_definition] = STATE(2302), - [sym_constructor_specifiers] = STATE(1954), - [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_friend_declaration] = STATE(2302), - [sym_access_specifier] = STATE(10549), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2302), - [sym_alias_declaration] = STATE(2302), - [sym_static_assert_declaration] = STATE(2302), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8121), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(900), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1954), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(4158), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4166), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [sym_preproc_def] = STATE(2347), + [sym_preproc_function_def] = STATE(2347), + [sym_preproc_call] = STATE(2347), + [sym_preproc_if_in_field_declaration_list] = STATE(2347), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2347), + [sym_type_definition] = STATE(2347), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6437), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7306), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(807), + [sym_field_declaration] = STATE(2347), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2347), + [sym_operator_cast] = STATE(7731), + [sym_inline_method_definition] = STATE(2347), + [sym_constructor_specifiers] = STATE(1938), + [sym_operator_cast_definition] = STATE(2347), + [sym_operator_cast_declaration] = STATE(2347), + [sym_constructor_or_destructor_definition] = STATE(2347), + [sym_constructor_or_destructor_declaration] = STATE(2347), + [sym_friend_declaration] = STATE(2347), + [sym_access_specifier] = STATE(10086), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2347), + [sym_alias_declaration] = STATE(2347), + [sym_static_assert_declaration] = STATE(2347), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7731), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2347), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(807), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1938), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(4041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4043), + [aux_sym_preproc_if_token1] = ACTIONS(4045), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4049), + [sym_preproc_directive] = ACTIONS(4051), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4170), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(4053), + [anon_sym_typedef] = ACTIONS(4055), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(4172), + [anon_sym_RBRACE] = ACTIONS(4194), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3265), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -187078,116 +177222,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(4174), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(4059), [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4176), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(4178), - [anon_sym_static_assert] = ACTIONS(4180), + [anon_sym_friend] = ACTIONS(4061), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(4063), + [anon_sym_static_assert] = ACTIONS(4065), + [sym_semgrep_metavar] = ACTIONS(4067), }, [888] = { - [sym_preproc_def] = STATE(2302), - [sym_preproc_function_def] = STATE(2302), - [sym_preproc_call] = STATE(2302), - [sym_preproc_if_in_field_declaration_list] = STATE(2302), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2302), - [sym_type_definition] = STATE(2302), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6923), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7673), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(900), - [sym_field_declaration] = STATE(2302), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2302), - [sym_operator_cast] = STATE(8121), - [sym_inline_method_definition] = STATE(2302), - [sym_constructor_specifiers] = STATE(1954), - [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_friend_declaration] = STATE(2302), - [sym_access_specifier] = STATE(10549), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2302), - [sym_alias_declaration] = STATE(2302), - [sym_static_assert_declaration] = STATE(2302), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8121), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(900), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1954), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(4158), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4166), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [sym_preproc_def] = STATE(2347), + [sym_preproc_function_def] = STATE(2347), + [sym_preproc_call] = STATE(2347), + [sym_preproc_if_in_field_declaration_list] = STATE(2347), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2347), + [sym_type_definition] = STATE(2347), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(6437), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7306), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_field_declaration_list_item] = STATE(854), + [sym_field_declaration] = STATE(2347), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2347), + [sym_operator_cast] = STATE(7731), + [sym_inline_method_definition] = STATE(2347), + [sym_constructor_specifiers] = STATE(1938), + [sym_operator_cast_definition] = STATE(2347), + [sym_operator_cast_declaration] = STATE(2347), + [sym_constructor_or_destructor_definition] = STATE(2347), + [sym_constructor_or_destructor_declaration] = STATE(2347), + [sym_friend_declaration] = STATE(2347), + [sym_access_specifier] = STATE(10086), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_using_declaration] = STATE(2347), + [sym_alias_declaration] = STATE(2347), + [sym_static_assert_declaration] = STATE(2347), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6431), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7731), + [sym_operator_name] = STATE(7305), + [sym_semgrep_ellipsis] = STATE(2347), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(854), + [aux_sym_declaration_specifiers_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1938), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(4041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4043), + [aux_sym_preproc_if_token1] = ACTIONS(4045), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4049), + [sym_preproc_directive] = ACTIONS(4051), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4170), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(4053), + [anon_sym_typedef] = ACTIONS(4055), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_RBRACE] = ACTIONS(4196), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3265), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -187207,374 +177354,1794 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(4174), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(4059), [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4176), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(4178), - [anon_sym_static_assert] = ACTIONS(4180), + [anon_sym_friend] = ACTIONS(4061), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(4063), + [anon_sym_static_assert] = ACTIONS(4065), + [sym_semgrep_metavar] = ACTIONS(4067), }, [889] = { - [sym_preproc_def] = STATE(2302), - [sym_preproc_function_def] = STATE(2302), - [sym_preproc_call] = STATE(2302), - [sym_preproc_if_in_field_declaration_list] = STATE(2302), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2302), - [sym_type_definition] = STATE(2302), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6923), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7673), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(890), - [sym_field_declaration] = STATE(2302), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2302), - [sym_operator_cast] = STATE(8121), - [sym_inline_method_definition] = STATE(2302), - [sym_constructor_specifiers] = STATE(1954), - [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_friend_declaration] = STATE(2302), - [sym_access_specifier] = STATE(10549), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2302), - [sym_alias_declaration] = STATE(2302), - [sym_static_assert_declaration] = STATE(2302), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8121), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(890), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1954), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(4158), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4166), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4170), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(4184), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(4174), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4176), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(4178), - [anon_sym_static_assert] = ACTIONS(4180), + [ts_builtin_sym_end] = ACTIONS(3547), + [sym_identifier] = ACTIONS(3545), + [aux_sym_preproc_include_token1] = ACTIONS(3545), + [aux_sym_preproc_def_token1] = ACTIONS(3545), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3547), + [aux_sym_preproc_if_token1] = ACTIONS(3545), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3545), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3545), + [sym_preproc_directive] = ACTIONS(3545), + [anon_sym_LPAREN2] = ACTIONS(3547), + [anon_sym_BANG] = ACTIONS(3547), + [anon_sym_TILDE] = ACTIONS(3547), + [anon_sym_DASH] = ACTIONS(3545), + [anon_sym_PLUS] = ACTIONS(3545), + [anon_sym_STAR] = ACTIONS(3547), + [anon_sym_AMP_AMP] = ACTIONS(3547), + [anon_sym_AMP] = ACTIONS(3545), + [anon_sym___extension__] = ACTIONS(3545), + [anon_sym_typedef] = ACTIONS(3545), + [anon_sym_extern] = ACTIONS(3545), + [anon_sym___attribute__] = ACTIONS(3545), + [anon_sym_COLON_COLON] = ACTIONS(3547), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3547), + [anon_sym___declspec] = ACTIONS(3545), + [anon_sym___based] = ACTIONS(3545), + [anon_sym___cdecl] = ACTIONS(3545), + [anon_sym___clrcall] = ACTIONS(3545), + [anon_sym___stdcall] = ACTIONS(3545), + [anon_sym___fastcall] = ACTIONS(3545), + [anon_sym___thiscall] = ACTIONS(3545), + [anon_sym___vectorcall] = ACTIONS(3545), + [anon_sym_LBRACE] = ACTIONS(3547), + [anon_sym_signed] = ACTIONS(3545), + [anon_sym_unsigned] = ACTIONS(3545), + [anon_sym_long] = ACTIONS(3545), + [anon_sym_short] = ACTIONS(3545), + [anon_sym_LBRACK] = ACTIONS(3545), + [anon_sym_static] = ACTIONS(3545), + [anon_sym_register] = ACTIONS(3545), + [anon_sym_inline] = ACTIONS(3545), + [anon_sym___inline] = ACTIONS(3545), + [anon_sym___inline__] = ACTIONS(3545), + [anon_sym___forceinline] = ACTIONS(3545), + [anon_sym_thread_local] = ACTIONS(3545), + [anon_sym___thread] = ACTIONS(3545), + [anon_sym_const] = ACTIONS(3545), + [anon_sym_constexpr] = ACTIONS(3545), + [anon_sym_volatile] = ACTIONS(3545), + [anon_sym_restrict] = ACTIONS(3545), + [anon_sym___restrict__] = ACTIONS(3545), + [anon_sym__Atomic] = ACTIONS(3545), + [anon_sym__Noreturn] = ACTIONS(3545), + [anon_sym_noreturn] = ACTIONS(3545), + [anon_sym_mutable] = ACTIONS(3545), + [anon_sym_constinit] = ACTIONS(3545), + [anon_sym_consteval] = ACTIONS(3545), + [sym_primitive_type] = ACTIONS(3545), + [anon_sym_enum] = ACTIONS(3545), + [anon_sym_class] = ACTIONS(3545), + [anon_sym_struct] = ACTIONS(3545), + [anon_sym_union] = ACTIONS(3545), + [anon_sym_if] = ACTIONS(3545), + [anon_sym_switch] = ACTIONS(3545), + [anon_sym_case] = ACTIONS(3545), + [anon_sym_default] = ACTIONS(3545), + [anon_sym_while] = ACTIONS(3545), + [anon_sym_do] = ACTIONS(3545), + [anon_sym_for] = ACTIONS(3545), + [anon_sym_return] = ACTIONS(3545), + [anon_sym_break] = ACTIONS(3545), + [anon_sym_continue] = ACTIONS(3545), + [anon_sym_goto] = ACTIONS(3545), + [anon_sym_not] = ACTIONS(3545), + [anon_sym_compl] = ACTIONS(3545), + [anon_sym_DASH_DASH] = ACTIONS(3547), + [anon_sym_PLUS_PLUS] = ACTIONS(3547), + [anon_sym_sizeof] = ACTIONS(3545), + [anon_sym___alignof__] = ACTIONS(3545), + [anon_sym___alignof] = ACTIONS(3545), + [anon_sym__alignof] = ACTIONS(3545), + [anon_sym_alignof] = ACTIONS(3545), + [anon_sym__Alignof] = ACTIONS(3545), + [anon_sym_offsetof] = ACTIONS(3545), + [anon_sym__Generic] = ACTIONS(3545), + [anon_sym_asm] = ACTIONS(3545), + [anon_sym___asm__] = ACTIONS(3545), + [sym_number_literal] = ACTIONS(3547), + [anon_sym_L_SQUOTE] = ACTIONS(3547), + [anon_sym_u_SQUOTE] = ACTIONS(3547), + [anon_sym_U_SQUOTE] = ACTIONS(3547), + [anon_sym_u8_SQUOTE] = ACTIONS(3547), + [anon_sym_SQUOTE] = ACTIONS(3547), + [anon_sym_L_DQUOTE] = ACTIONS(3547), + [anon_sym_u_DQUOTE] = ACTIONS(3547), + [anon_sym_U_DQUOTE] = ACTIONS(3547), + [anon_sym_u8_DQUOTE] = ACTIONS(3547), + [anon_sym_DQUOTE] = ACTIONS(3547), + [sym_true] = ACTIONS(3545), + [sym_false] = ACTIONS(3545), + [anon_sym_NULL] = ACTIONS(3545), + [anon_sym_nullptr] = ACTIONS(3545), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3545), + [anon_sym_decltype] = ACTIONS(3545), + [anon_sym_virtual] = ACTIONS(3545), + [anon_sym_alignas] = ACTIONS(3545), + [anon_sym_explicit] = ACTIONS(3545), + [anon_sym_typename] = ACTIONS(3545), + [anon_sym_template] = ACTIONS(3545), + [anon_sym_operator] = ACTIONS(3545), + [anon_sym_try] = ACTIONS(3545), + [anon_sym_delete] = ACTIONS(3545), + [anon_sym_throw] = ACTIONS(3545), + [anon_sym_namespace] = ACTIONS(3545), + [anon_sym_using] = ACTIONS(3545), + [anon_sym_static_assert] = ACTIONS(3545), + [anon_sym_concept] = ACTIONS(3545), + [anon_sym_co_return] = ACTIONS(3545), + [anon_sym_co_yield] = ACTIONS(3545), + [anon_sym_R_DQUOTE] = ACTIONS(3547), + [anon_sym_LR_DQUOTE] = ACTIONS(3547), + [anon_sym_uR_DQUOTE] = ACTIONS(3547), + [anon_sym_UR_DQUOTE] = ACTIONS(3547), + [anon_sym_u8R_DQUOTE] = ACTIONS(3547), + [anon_sym_co_await] = ACTIONS(3545), + [anon_sym_new] = ACTIONS(3545), + [anon_sym_requires] = ACTIONS(3545), + [sym_this] = ACTIONS(3545), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3547), + [sym_semgrep_named_ellipsis] = ACTIONS(3547), }, [890] = { - [sym_preproc_def] = STATE(2302), - [sym_preproc_function_def] = STATE(2302), - [sym_preproc_call] = STATE(2302), - [sym_preproc_if_in_field_declaration_list] = STATE(2302), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2302), - [sym_type_definition] = STATE(2302), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6923), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7673), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(900), - [sym_field_declaration] = STATE(2302), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2302), - [sym_operator_cast] = STATE(8121), - [sym_inline_method_definition] = STATE(2302), - [sym_constructor_specifiers] = STATE(1954), - [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_friend_declaration] = STATE(2302), - [sym_access_specifier] = STATE(10549), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2302), - [sym_alias_declaration] = STATE(2302), - [sym_static_assert_declaration] = STATE(2302), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8121), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(900), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1954), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(4158), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4166), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4170), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(4174), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4176), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(4178), - [anon_sym_static_assert] = ACTIONS(4180), + [ts_builtin_sym_end] = ACTIONS(3670), + [sym_identifier] = ACTIONS(3668), + [aux_sym_preproc_include_token1] = ACTIONS(3668), + [aux_sym_preproc_def_token1] = ACTIONS(3668), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3670), + [aux_sym_preproc_if_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3668), + [anon_sym_LPAREN2] = ACTIONS(3670), + [anon_sym_BANG] = ACTIONS(3670), + [anon_sym_TILDE] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_AMP_AMP] = ACTIONS(3670), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym___extension__] = ACTIONS(3668), + [anon_sym_typedef] = ACTIONS(3668), + [anon_sym_extern] = ACTIONS(3668), + [anon_sym___attribute__] = ACTIONS(3668), + [anon_sym_COLON_COLON] = ACTIONS(3670), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3670), + [anon_sym___declspec] = ACTIONS(3668), + [anon_sym___based] = ACTIONS(3668), + [anon_sym___cdecl] = ACTIONS(3668), + [anon_sym___clrcall] = ACTIONS(3668), + [anon_sym___stdcall] = ACTIONS(3668), + [anon_sym___fastcall] = ACTIONS(3668), + [anon_sym___thiscall] = ACTIONS(3668), + [anon_sym___vectorcall] = ACTIONS(3668), + [anon_sym_LBRACE] = ACTIONS(3670), + [anon_sym_signed] = ACTIONS(3668), + [anon_sym_unsigned] = ACTIONS(3668), + [anon_sym_long] = ACTIONS(3668), + [anon_sym_short] = ACTIONS(3668), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_static] = ACTIONS(3668), + [anon_sym_register] = ACTIONS(3668), + [anon_sym_inline] = ACTIONS(3668), + [anon_sym___inline] = ACTIONS(3668), + [anon_sym___inline__] = ACTIONS(3668), + [anon_sym___forceinline] = ACTIONS(3668), + [anon_sym_thread_local] = ACTIONS(3668), + [anon_sym___thread] = ACTIONS(3668), + [anon_sym_const] = ACTIONS(3668), + [anon_sym_constexpr] = ACTIONS(3668), + [anon_sym_volatile] = ACTIONS(3668), + [anon_sym_restrict] = ACTIONS(3668), + [anon_sym___restrict__] = ACTIONS(3668), + [anon_sym__Atomic] = ACTIONS(3668), + [anon_sym__Noreturn] = ACTIONS(3668), + [anon_sym_noreturn] = ACTIONS(3668), + [anon_sym_mutable] = ACTIONS(3668), + [anon_sym_constinit] = ACTIONS(3668), + [anon_sym_consteval] = ACTIONS(3668), + [sym_primitive_type] = ACTIONS(3668), + [anon_sym_enum] = ACTIONS(3668), + [anon_sym_class] = ACTIONS(3668), + [anon_sym_struct] = ACTIONS(3668), + [anon_sym_union] = ACTIONS(3668), + [anon_sym_if] = ACTIONS(3668), + [anon_sym_switch] = ACTIONS(3668), + [anon_sym_case] = ACTIONS(3668), + [anon_sym_default] = ACTIONS(3668), + [anon_sym_while] = ACTIONS(3668), + [anon_sym_do] = ACTIONS(3668), + [anon_sym_for] = ACTIONS(3668), + [anon_sym_return] = ACTIONS(3668), + [anon_sym_break] = ACTIONS(3668), + [anon_sym_continue] = ACTIONS(3668), + [anon_sym_goto] = ACTIONS(3668), + [anon_sym_not] = ACTIONS(3668), + [anon_sym_compl] = ACTIONS(3668), + [anon_sym_DASH_DASH] = ACTIONS(3670), + [anon_sym_PLUS_PLUS] = ACTIONS(3670), + [anon_sym_sizeof] = ACTIONS(3668), + [anon_sym___alignof__] = ACTIONS(3668), + [anon_sym___alignof] = ACTIONS(3668), + [anon_sym__alignof] = ACTIONS(3668), + [anon_sym_alignof] = ACTIONS(3668), + [anon_sym__Alignof] = ACTIONS(3668), + [anon_sym_offsetof] = ACTIONS(3668), + [anon_sym__Generic] = ACTIONS(3668), + [anon_sym_asm] = ACTIONS(3668), + [anon_sym___asm__] = ACTIONS(3668), + [sym_number_literal] = ACTIONS(3670), + [anon_sym_L_SQUOTE] = ACTIONS(3670), + [anon_sym_u_SQUOTE] = ACTIONS(3670), + [anon_sym_U_SQUOTE] = ACTIONS(3670), + [anon_sym_u8_SQUOTE] = ACTIONS(3670), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_L_DQUOTE] = ACTIONS(3670), + [anon_sym_u_DQUOTE] = ACTIONS(3670), + [anon_sym_U_DQUOTE] = ACTIONS(3670), + [anon_sym_u8_DQUOTE] = ACTIONS(3670), + [anon_sym_DQUOTE] = ACTIONS(3670), + [sym_true] = ACTIONS(3668), + [sym_false] = ACTIONS(3668), + [anon_sym_NULL] = ACTIONS(3668), + [anon_sym_nullptr] = ACTIONS(3668), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3668), + [anon_sym_decltype] = ACTIONS(3668), + [anon_sym_virtual] = ACTIONS(3668), + [anon_sym_alignas] = ACTIONS(3668), + [anon_sym_explicit] = ACTIONS(3668), + [anon_sym_typename] = ACTIONS(3668), + [anon_sym_template] = ACTIONS(3668), + [anon_sym_operator] = ACTIONS(3668), + [anon_sym_try] = ACTIONS(3668), + [anon_sym_delete] = ACTIONS(3668), + [anon_sym_throw] = ACTIONS(3668), + [anon_sym_namespace] = ACTIONS(3668), + [anon_sym_using] = ACTIONS(3668), + [anon_sym_static_assert] = ACTIONS(3668), + [anon_sym_concept] = ACTIONS(3668), + [anon_sym_co_return] = ACTIONS(3668), + [anon_sym_co_yield] = ACTIONS(3668), + [anon_sym_R_DQUOTE] = ACTIONS(3670), + [anon_sym_LR_DQUOTE] = ACTIONS(3670), + [anon_sym_uR_DQUOTE] = ACTIONS(3670), + [anon_sym_UR_DQUOTE] = ACTIONS(3670), + [anon_sym_u8R_DQUOTE] = ACTIONS(3670), + [anon_sym_co_await] = ACTIONS(3668), + [anon_sym_new] = ACTIONS(3668), + [anon_sym_requires] = ACTIONS(3668), + [sym_this] = ACTIONS(3668), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3670), + [sym_semgrep_named_ellipsis] = ACTIONS(3670), }, [891] = { - [sym_preproc_def] = STATE(2302), - [sym_preproc_function_def] = STATE(2302), - [sym_preproc_call] = STATE(2302), - [sym_preproc_if_in_field_declaration_list] = STATE(2302), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2302), - [sym_type_definition] = STATE(2302), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6923), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7673), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(900), - [sym_field_declaration] = STATE(2302), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2302), - [sym_operator_cast] = STATE(8121), - [sym_inline_method_definition] = STATE(2302), - [sym_constructor_specifiers] = STATE(1954), - [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_friend_declaration] = STATE(2302), - [sym_access_specifier] = STATE(10549), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2302), - [sym_alias_declaration] = STATE(2302), - [sym_static_assert_declaration] = STATE(2302), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8121), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(900), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1954), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(4158), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4166), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4170), + [sym_expression] = STATE(4708), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3922), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3922), + [sym_call_expression] = STATE(3922), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3922), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3922), + [sym_initializer_list] = STATE(4376), + [sym_char_literal] = STATE(5203), + [sym_concatenated_string] = STATE(5203), + [sym_string_literal] = STATE(3965), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3965), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3922), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3922), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2277), + [anon_sym_COMMA] = ACTIONS(2277), + [anon_sym_LPAREN2] = ACTIONS(2277), + [anon_sym_BANG] = ACTIONS(4200), + [anon_sym_TILDE] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2277), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_PERCENT] = ACTIONS(2277), + [anon_sym_PIPE_PIPE] = ACTIONS(2277), + [anon_sym_AMP_AMP] = ACTIONS(2277), + [anon_sym_PIPE] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2277), + [anon_sym_AMP] = ACTIONS(2285), + [anon_sym_EQ_EQ] = ACTIONS(2277), + [anon_sym_BANG_EQ] = ACTIONS(2277), + [anon_sym_GT] = ACTIONS(2285), + [anon_sym_GT_EQ] = ACTIONS(2277), + [anon_sym_LT_EQ] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_LT_LT] = ACTIONS(2277), + [anon_sym_GT_GT] = ACTIONS(2277), + [anon_sym_SEMI] = ACTIONS(2277), + [anon_sym___attribute__] = ACTIONS(2285), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(2277), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_QMARK] = ACTIONS(2277), + [anon_sym_not] = ACTIONS(4200), + [anon_sym_compl] = ACTIONS(4200), + [anon_sym_LT_EQ_GT] = ACTIONS(2277), + [anon_sym_or] = ACTIONS(2285), + [anon_sym_and] = ACTIONS(2285), + [anon_sym_bitor] = ACTIONS(2285), + [anon_sym_xor] = ACTIONS(2285), + [anon_sym_bitand] = ACTIONS(2285), + [anon_sym_not_eq] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2277), + [anon_sym_PLUS_PLUS] = ACTIONS(2277), + [anon_sym_sizeof] = ACTIONS(4206), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(2285), + [anon_sym_DOT_STAR] = ACTIONS(2277), + [anon_sym_DASH_GT] = ACTIONS(2277), + [sym_number_literal] = ACTIONS(4208), + [anon_sym_L_SQUOTE] = ACTIONS(4210), + [anon_sym_u_SQUOTE] = ACTIONS(4210), + [anon_sym_U_SQUOTE] = ACTIONS(4210), + [anon_sym_u8_SQUOTE] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4210), + [anon_sym_L_DQUOTE] = ACTIONS(4212), + [anon_sym_u_DQUOTE] = ACTIONS(4212), + [anon_sym_U_DQUOTE] = ACTIONS(4212), + [anon_sym_u8_DQUOTE] = ACTIONS(4212), + [anon_sym_DQUOTE] = ACTIONS(4212), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4214), + [anon_sym_R_DQUOTE] = ACTIONS(4216), + [anon_sym_LR_DQUOTE] = ACTIONS(4216), + [anon_sym_uR_DQUOTE] = ACTIONS(4216), + [anon_sym_UR_DQUOTE] = ACTIONS(4216), + [anon_sym_u8R_DQUOTE] = ACTIONS(4216), + [anon_sym_co_await] = ACTIONS(4218), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), + }, + [892] = { + [ts_builtin_sym_end] = ACTIONS(3674), + [sym_identifier] = ACTIONS(3672), + [aux_sym_preproc_include_token1] = ACTIONS(3672), + [aux_sym_preproc_def_token1] = ACTIONS(3672), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3674), + [aux_sym_preproc_if_token1] = ACTIONS(3672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3672), + [sym_preproc_directive] = ACTIONS(3672), + [anon_sym_LPAREN2] = ACTIONS(3674), + [anon_sym_BANG] = ACTIONS(3674), + [anon_sym_TILDE] = ACTIONS(3674), + [anon_sym_DASH] = ACTIONS(3672), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_STAR] = ACTIONS(3674), + [anon_sym_AMP_AMP] = ACTIONS(3674), + [anon_sym_AMP] = ACTIONS(3672), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3672), + [anon_sym_extern] = ACTIONS(3672), + [anon_sym___attribute__] = ACTIONS(3672), + [anon_sym_COLON_COLON] = ACTIONS(3674), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3674), + [anon_sym___declspec] = ACTIONS(3672), + [anon_sym___based] = ACTIONS(3672), + [anon_sym___cdecl] = ACTIONS(3672), + [anon_sym___clrcall] = ACTIONS(3672), + [anon_sym___stdcall] = ACTIONS(3672), + [anon_sym___fastcall] = ACTIONS(3672), + [anon_sym___thiscall] = ACTIONS(3672), + [anon_sym___vectorcall] = ACTIONS(3672), + [anon_sym_LBRACE] = ACTIONS(3674), + [anon_sym_signed] = ACTIONS(3672), + [anon_sym_unsigned] = ACTIONS(3672), + [anon_sym_long] = ACTIONS(3672), + [anon_sym_short] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_static] = ACTIONS(3672), + [anon_sym_register] = ACTIONS(3672), + [anon_sym_inline] = ACTIONS(3672), + [anon_sym___inline] = ACTIONS(3672), + [anon_sym___inline__] = ACTIONS(3672), + [anon_sym___forceinline] = ACTIONS(3672), + [anon_sym_thread_local] = ACTIONS(3672), + [anon_sym___thread] = ACTIONS(3672), + [anon_sym_const] = ACTIONS(3672), + [anon_sym_constexpr] = ACTIONS(3672), + [anon_sym_volatile] = ACTIONS(3672), + [anon_sym_restrict] = ACTIONS(3672), + [anon_sym___restrict__] = ACTIONS(3672), + [anon_sym__Atomic] = ACTIONS(3672), + [anon_sym__Noreturn] = ACTIONS(3672), + [anon_sym_noreturn] = ACTIONS(3672), + [anon_sym_mutable] = ACTIONS(3672), + [anon_sym_constinit] = ACTIONS(3672), + [anon_sym_consteval] = ACTIONS(3672), + [sym_primitive_type] = ACTIONS(3672), + [anon_sym_enum] = ACTIONS(3672), + [anon_sym_class] = ACTIONS(3672), + [anon_sym_struct] = ACTIONS(3672), + [anon_sym_union] = ACTIONS(3672), + [anon_sym_if] = ACTIONS(3672), + [anon_sym_switch] = ACTIONS(3672), + [anon_sym_case] = ACTIONS(3672), + [anon_sym_default] = ACTIONS(3672), + [anon_sym_while] = ACTIONS(3672), + [anon_sym_do] = ACTIONS(3672), + [anon_sym_for] = ACTIONS(3672), + [anon_sym_return] = ACTIONS(3672), + [anon_sym_break] = ACTIONS(3672), + [anon_sym_continue] = ACTIONS(3672), + [anon_sym_goto] = ACTIONS(3672), + [anon_sym_not] = ACTIONS(3672), + [anon_sym_compl] = ACTIONS(3672), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_sizeof] = ACTIONS(3672), + [anon_sym___alignof__] = ACTIONS(3672), + [anon_sym___alignof] = ACTIONS(3672), + [anon_sym__alignof] = ACTIONS(3672), + [anon_sym_alignof] = ACTIONS(3672), + [anon_sym__Alignof] = ACTIONS(3672), + [anon_sym_offsetof] = ACTIONS(3672), + [anon_sym__Generic] = ACTIONS(3672), + [anon_sym_asm] = ACTIONS(3672), + [anon_sym___asm__] = ACTIONS(3672), + [sym_number_literal] = ACTIONS(3674), + [anon_sym_L_SQUOTE] = ACTIONS(3674), + [anon_sym_u_SQUOTE] = ACTIONS(3674), + [anon_sym_U_SQUOTE] = ACTIONS(3674), + [anon_sym_u8_SQUOTE] = ACTIONS(3674), + [anon_sym_SQUOTE] = ACTIONS(3674), + [anon_sym_L_DQUOTE] = ACTIONS(3674), + [anon_sym_u_DQUOTE] = ACTIONS(3674), + [anon_sym_U_DQUOTE] = ACTIONS(3674), + [anon_sym_u8_DQUOTE] = ACTIONS(3674), + [anon_sym_DQUOTE] = ACTIONS(3674), + [sym_true] = ACTIONS(3672), + [sym_false] = ACTIONS(3672), + [anon_sym_NULL] = ACTIONS(3672), + [anon_sym_nullptr] = ACTIONS(3672), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3672), + [anon_sym_decltype] = ACTIONS(3672), + [anon_sym_virtual] = ACTIONS(3672), + [anon_sym_alignas] = ACTIONS(3672), + [anon_sym_explicit] = ACTIONS(3672), + [anon_sym_typename] = ACTIONS(3672), + [anon_sym_template] = ACTIONS(3672), + [anon_sym_operator] = ACTIONS(3672), + [anon_sym_try] = ACTIONS(3672), + [anon_sym_delete] = ACTIONS(3672), + [anon_sym_throw] = ACTIONS(3672), + [anon_sym_namespace] = ACTIONS(3672), + [anon_sym_using] = ACTIONS(3672), + [anon_sym_static_assert] = ACTIONS(3672), + [anon_sym_concept] = ACTIONS(3672), + [anon_sym_co_return] = ACTIONS(3672), + [anon_sym_co_yield] = ACTIONS(3672), + [anon_sym_R_DQUOTE] = ACTIONS(3674), + [anon_sym_LR_DQUOTE] = ACTIONS(3674), + [anon_sym_uR_DQUOTE] = ACTIONS(3674), + [anon_sym_UR_DQUOTE] = ACTIONS(3674), + [anon_sym_u8R_DQUOTE] = ACTIONS(3674), + [anon_sym_co_await] = ACTIONS(3672), + [anon_sym_new] = ACTIONS(3672), + [anon_sym_requires] = ACTIONS(3672), + [sym_this] = ACTIONS(3672), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3674), + [sym_semgrep_named_ellipsis] = ACTIONS(3674), + }, + [893] = { + [ts_builtin_sym_end] = ACTIONS(3553), + [sym_identifier] = ACTIONS(3551), + [aux_sym_preproc_include_token1] = ACTIONS(3551), + [aux_sym_preproc_def_token1] = ACTIONS(3551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3553), + [aux_sym_preproc_if_token1] = ACTIONS(3551), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3551), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3551), + [sym_preproc_directive] = ACTIONS(3551), + [anon_sym_LPAREN2] = ACTIONS(3553), + [anon_sym_BANG] = ACTIONS(3553), + [anon_sym_TILDE] = ACTIONS(3553), + [anon_sym_DASH] = ACTIONS(3551), + [anon_sym_PLUS] = ACTIONS(3551), + [anon_sym_STAR] = ACTIONS(3553), + [anon_sym_AMP_AMP] = ACTIONS(3553), + [anon_sym_AMP] = ACTIONS(3551), + [anon_sym___extension__] = ACTIONS(3551), + [anon_sym_typedef] = ACTIONS(3551), + [anon_sym_extern] = ACTIONS(3551), + [anon_sym___attribute__] = ACTIONS(3551), + [anon_sym_COLON_COLON] = ACTIONS(3553), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3553), + [anon_sym___declspec] = ACTIONS(3551), + [anon_sym___based] = ACTIONS(3551), + [anon_sym___cdecl] = ACTIONS(3551), + [anon_sym___clrcall] = ACTIONS(3551), + [anon_sym___stdcall] = ACTIONS(3551), + [anon_sym___fastcall] = ACTIONS(3551), + [anon_sym___thiscall] = ACTIONS(3551), + [anon_sym___vectorcall] = ACTIONS(3551), + [anon_sym_LBRACE] = ACTIONS(3553), + [anon_sym_signed] = ACTIONS(3551), + [anon_sym_unsigned] = ACTIONS(3551), + [anon_sym_long] = ACTIONS(3551), + [anon_sym_short] = ACTIONS(3551), + [anon_sym_LBRACK] = ACTIONS(3551), + [anon_sym_static] = ACTIONS(3551), + [anon_sym_register] = ACTIONS(3551), + [anon_sym_inline] = ACTIONS(3551), + [anon_sym___inline] = ACTIONS(3551), + [anon_sym___inline__] = ACTIONS(3551), + [anon_sym___forceinline] = ACTIONS(3551), + [anon_sym_thread_local] = ACTIONS(3551), + [anon_sym___thread] = ACTIONS(3551), + [anon_sym_const] = ACTIONS(3551), + [anon_sym_constexpr] = ACTIONS(3551), + [anon_sym_volatile] = ACTIONS(3551), + [anon_sym_restrict] = ACTIONS(3551), + [anon_sym___restrict__] = ACTIONS(3551), + [anon_sym__Atomic] = ACTIONS(3551), + [anon_sym__Noreturn] = ACTIONS(3551), + [anon_sym_noreturn] = ACTIONS(3551), + [anon_sym_mutable] = ACTIONS(3551), + [anon_sym_constinit] = ACTIONS(3551), + [anon_sym_consteval] = ACTIONS(3551), + [sym_primitive_type] = ACTIONS(3551), + [anon_sym_enum] = ACTIONS(3551), + [anon_sym_class] = ACTIONS(3551), + [anon_sym_struct] = ACTIONS(3551), + [anon_sym_union] = ACTIONS(3551), + [anon_sym_if] = ACTIONS(3551), + [anon_sym_switch] = ACTIONS(3551), + [anon_sym_case] = ACTIONS(3551), + [anon_sym_default] = ACTIONS(3551), + [anon_sym_while] = ACTIONS(3551), + [anon_sym_do] = ACTIONS(3551), + [anon_sym_for] = ACTIONS(3551), + [anon_sym_return] = ACTIONS(3551), + [anon_sym_break] = ACTIONS(3551), + [anon_sym_continue] = ACTIONS(3551), + [anon_sym_goto] = ACTIONS(3551), + [anon_sym_not] = ACTIONS(3551), + [anon_sym_compl] = ACTIONS(3551), + [anon_sym_DASH_DASH] = ACTIONS(3553), + [anon_sym_PLUS_PLUS] = ACTIONS(3553), + [anon_sym_sizeof] = ACTIONS(3551), + [anon_sym___alignof__] = ACTIONS(3551), + [anon_sym___alignof] = ACTIONS(3551), + [anon_sym__alignof] = ACTIONS(3551), + [anon_sym_alignof] = ACTIONS(3551), + [anon_sym__Alignof] = ACTIONS(3551), + [anon_sym_offsetof] = ACTIONS(3551), + [anon_sym__Generic] = ACTIONS(3551), + [anon_sym_asm] = ACTIONS(3551), + [anon_sym___asm__] = ACTIONS(3551), + [sym_number_literal] = ACTIONS(3553), + [anon_sym_L_SQUOTE] = ACTIONS(3553), + [anon_sym_u_SQUOTE] = ACTIONS(3553), + [anon_sym_U_SQUOTE] = ACTIONS(3553), + [anon_sym_u8_SQUOTE] = ACTIONS(3553), + [anon_sym_SQUOTE] = ACTIONS(3553), + [anon_sym_L_DQUOTE] = ACTIONS(3553), + [anon_sym_u_DQUOTE] = ACTIONS(3553), + [anon_sym_U_DQUOTE] = ACTIONS(3553), + [anon_sym_u8_DQUOTE] = ACTIONS(3553), + [anon_sym_DQUOTE] = ACTIONS(3553), + [sym_true] = ACTIONS(3551), + [sym_false] = ACTIONS(3551), + [anon_sym_NULL] = ACTIONS(3551), + [anon_sym_nullptr] = ACTIONS(3551), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3551), + [anon_sym_decltype] = ACTIONS(3551), + [anon_sym_virtual] = ACTIONS(3551), + [anon_sym_alignas] = ACTIONS(3551), + [anon_sym_explicit] = ACTIONS(3551), + [anon_sym_typename] = ACTIONS(3551), + [anon_sym_template] = ACTIONS(3551), + [anon_sym_operator] = ACTIONS(3551), + [anon_sym_try] = ACTIONS(3551), + [anon_sym_delete] = ACTIONS(3551), + [anon_sym_throw] = ACTIONS(3551), + [anon_sym_namespace] = ACTIONS(3551), + [anon_sym_using] = ACTIONS(3551), + [anon_sym_static_assert] = ACTIONS(3551), + [anon_sym_concept] = ACTIONS(3551), + [anon_sym_co_return] = ACTIONS(3551), + [anon_sym_co_yield] = ACTIONS(3551), + [anon_sym_R_DQUOTE] = ACTIONS(3553), + [anon_sym_LR_DQUOTE] = ACTIONS(3553), + [anon_sym_uR_DQUOTE] = ACTIONS(3553), + [anon_sym_UR_DQUOTE] = ACTIONS(3553), + [anon_sym_u8R_DQUOTE] = ACTIONS(3553), + [anon_sym_co_await] = ACTIONS(3551), + [anon_sym_new] = ACTIONS(3551), + [anon_sym_requires] = ACTIONS(3551), + [sym_this] = ACTIONS(3551), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3553), + [sym_semgrep_named_ellipsis] = ACTIONS(3553), + }, + [894] = { + [ts_builtin_sym_end] = ACTIONS(3557), + [sym_identifier] = ACTIONS(3555), + [aux_sym_preproc_include_token1] = ACTIONS(3555), + [aux_sym_preproc_def_token1] = ACTIONS(3555), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3557), + [aux_sym_preproc_if_token1] = ACTIONS(3555), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3555), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3555), + [sym_preproc_directive] = ACTIONS(3555), + [anon_sym_LPAREN2] = ACTIONS(3557), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3557), + [anon_sym_DASH] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3555), + [anon_sym_STAR] = ACTIONS(3557), + [anon_sym_AMP_AMP] = ACTIONS(3557), + [anon_sym_AMP] = ACTIONS(3555), + [anon_sym___extension__] = ACTIONS(3555), + [anon_sym_typedef] = ACTIONS(3555), + [anon_sym_extern] = ACTIONS(3555), + [anon_sym___attribute__] = ACTIONS(3555), + [anon_sym_COLON_COLON] = ACTIONS(3557), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3557), + [anon_sym___declspec] = ACTIONS(3555), + [anon_sym___based] = ACTIONS(3555), + [anon_sym___cdecl] = ACTIONS(3555), + [anon_sym___clrcall] = ACTIONS(3555), + [anon_sym___stdcall] = ACTIONS(3555), + [anon_sym___fastcall] = ACTIONS(3555), + [anon_sym___thiscall] = ACTIONS(3555), + [anon_sym___vectorcall] = ACTIONS(3555), + [anon_sym_LBRACE] = ACTIONS(3557), + [anon_sym_signed] = ACTIONS(3555), + [anon_sym_unsigned] = ACTIONS(3555), + [anon_sym_long] = ACTIONS(3555), + [anon_sym_short] = ACTIONS(3555), + [anon_sym_LBRACK] = ACTIONS(3555), + [anon_sym_static] = ACTIONS(3555), + [anon_sym_register] = ACTIONS(3555), + [anon_sym_inline] = ACTIONS(3555), + [anon_sym___inline] = ACTIONS(3555), + [anon_sym___inline__] = ACTIONS(3555), + [anon_sym___forceinline] = ACTIONS(3555), + [anon_sym_thread_local] = ACTIONS(3555), + [anon_sym___thread] = ACTIONS(3555), + [anon_sym_const] = ACTIONS(3555), + [anon_sym_constexpr] = ACTIONS(3555), + [anon_sym_volatile] = ACTIONS(3555), + [anon_sym_restrict] = ACTIONS(3555), + [anon_sym___restrict__] = ACTIONS(3555), + [anon_sym__Atomic] = ACTIONS(3555), + [anon_sym__Noreturn] = ACTIONS(3555), + [anon_sym_noreturn] = ACTIONS(3555), + [anon_sym_mutable] = ACTIONS(3555), + [anon_sym_constinit] = ACTIONS(3555), + [anon_sym_consteval] = ACTIONS(3555), + [sym_primitive_type] = ACTIONS(3555), + [anon_sym_enum] = ACTIONS(3555), + [anon_sym_class] = ACTIONS(3555), + [anon_sym_struct] = ACTIONS(3555), + [anon_sym_union] = ACTIONS(3555), + [anon_sym_if] = ACTIONS(3555), + [anon_sym_switch] = ACTIONS(3555), + [anon_sym_case] = ACTIONS(3555), + [anon_sym_default] = ACTIONS(3555), + [anon_sym_while] = ACTIONS(3555), + [anon_sym_do] = ACTIONS(3555), + [anon_sym_for] = ACTIONS(3555), + [anon_sym_return] = ACTIONS(3555), + [anon_sym_break] = ACTIONS(3555), + [anon_sym_continue] = ACTIONS(3555), + [anon_sym_goto] = ACTIONS(3555), + [anon_sym_not] = ACTIONS(3555), + [anon_sym_compl] = ACTIONS(3555), + [anon_sym_DASH_DASH] = ACTIONS(3557), + [anon_sym_PLUS_PLUS] = ACTIONS(3557), + [anon_sym_sizeof] = ACTIONS(3555), + [anon_sym___alignof__] = ACTIONS(3555), + [anon_sym___alignof] = ACTIONS(3555), + [anon_sym__alignof] = ACTIONS(3555), + [anon_sym_alignof] = ACTIONS(3555), + [anon_sym__Alignof] = ACTIONS(3555), + [anon_sym_offsetof] = ACTIONS(3555), + [anon_sym__Generic] = ACTIONS(3555), + [anon_sym_asm] = ACTIONS(3555), + [anon_sym___asm__] = ACTIONS(3555), + [sym_number_literal] = ACTIONS(3557), + [anon_sym_L_SQUOTE] = ACTIONS(3557), + [anon_sym_u_SQUOTE] = ACTIONS(3557), + [anon_sym_U_SQUOTE] = ACTIONS(3557), + [anon_sym_u8_SQUOTE] = ACTIONS(3557), + [anon_sym_SQUOTE] = ACTIONS(3557), + [anon_sym_L_DQUOTE] = ACTIONS(3557), + [anon_sym_u_DQUOTE] = ACTIONS(3557), + [anon_sym_U_DQUOTE] = ACTIONS(3557), + [anon_sym_u8_DQUOTE] = ACTIONS(3557), + [anon_sym_DQUOTE] = ACTIONS(3557), + [sym_true] = ACTIONS(3555), + [sym_false] = ACTIONS(3555), + [anon_sym_NULL] = ACTIONS(3555), + [anon_sym_nullptr] = ACTIONS(3555), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3555), + [anon_sym_decltype] = ACTIONS(3555), + [anon_sym_virtual] = ACTIONS(3555), + [anon_sym_alignas] = ACTIONS(3555), + [anon_sym_explicit] = ACTIONS(3555), + [anon_sym_typename] = ACTIONS(3555), + [anon_sym_template] = ACTIONS(3555), + [anon_sym_operator] = ACTIONS(3555), + [anon_sym_try] = ACTIONS(3555), + [anon_sym_delete] = ACTIONS(3555), + [anon_sym_throw] = ACTIONS(3555), + [anon_sym_namespace] = ACTIONS(3555), + [anon_sym_using] = ACTIONS(3555), + [anon_sym_static_assert] = ACTIONS(3555), + [anon_sym_concept] = ACTIONS(3555), + [anon_sym_co_return] = ACTIONS(3555), + [anon_sym_co_yield] = ACTIONS(3555), + [anon_sym_R_DQUOTE] = ACTIONS(3557), + [anon_sym_LR_DQUOTE] = ACTIONS(3557), + [anon_sym_uR_DQUOTE] = ACTIONS(3557), + [anon_sym_UR_DQUOTE] = ACTIONS(3557), + [anon_sym_u8R_DQUOTE] = ACTIONS(3557), + [anon_sym_co_await] = ACTIONS(3555), + [anon_sym_new] = ACTIONS(3555), + [anon_sym_requires] = ACTIONS(3555), + [sym_this] = ACTIONS(3555), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3557), + [sym_semgrep_named_ellipsis] = ACTIONS(3557), + }, + [895] = { + [ts_builtin_sym_end] = ACTIONS(3563), + [sym_identifier] = ACTIONS(3561), + [aux_sym_preproc_include_token1] = ACTIONS(3561), + [aux_sym_preproc_def_token1] = ACTIONS(3561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3563), + [aux_sym_preproc_if_token1] = ACTIONS(3561), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3561), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3561), + [sym_preproc_directive] = ACTIONS(3561), + [anon_sym_LPAREN2] = ACTIONS(3563), + [anon_sym_BANG] = ACTIONS(3563), + [anon_sym_TILDE] = ACTIONS(3563), + [anon_sym_DASH] = ACTIONS(3561), + [anon_sym_PLUS] = ACTIONS(3561), + [anon_sym_STAR] = ACTIONS(3563), + [anon_sym_AMP_AMP] = ACTIONS(3563), + [anon_sym_AMP] = ACTIONS(3561), + [anon_sym___extension__] = ACTIONS(3561), + [anon_sym_typedef] = ACTIONS(3561), + [anon_sym_extern] = ACTIONS(3561), + [anon_sym___attribute__] = ACTIONS(3561), + [anon_sym_COLON_COLON] = ACTIONS(3563), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3563), + [anon_sym___declspec] = ACTIONS(3561), + [anon_sym___based] = ACTIONS(3561), + [anon_sym___cdecl] = ACTIONS(3561), + [anon_sym___clrcall] = ACTIONS(3561), + [anon_sym___stdcall] = ACTIONS(3561), + [anon_sym___fastcall] = ACTIONS(3561), + [anon_sym___thiscall] = ACTIONS(3561), + [anon_sym___vectorcall] = ACTIONS(3561), + [anon_sym_LBRACE] = ACTIONS(3563), + [anon_sym_signed] = ACTIONS(3561), + [anon_sym_unsigned] = ACTIONS(3561), + [anon_sym_long] = ACTIONS(3561), + [anon_sym_short] = ACTIONS(3561), + [anon_sym_LBRACK] = ACTIONS(3561), + [anon_sym_static] = ACTIONS(3561), + [anon_sym_register] = ACTIONS(3561), + [anon_sym_inline] = ACTIONS(3561), + [anon_sym___inline] = ACTIONS(3561), + [anon_sym___inline__] = ACTIONS(3561), + [anon_sym___forceinline] = ACTIONS(3561), + [anon_sym_thread_local] = ACTIONS(3561), + [anon_sym___thread] = ACTIONS(3561), + [anon_sym_const] = ACTIONS(3561), + [anon_sym_constexpr] = ACTIONS(3561), + [anon_sym_volatile] = ACTIONS(3561), + [anon_sym_restrict] = ACTIONS(3561), + [anon_sym___restrict__] = ACTIONS(3561), + [anon_sym__Atomic] = ACTIONS(3561), + [anon_sym__Noreturn] = ACTIONS(3561), + [anon_sym_noreturn] = ACTIONS(3561), + [anon_sym_mutable] = ACTIONS(3561), + [anon_sym_constinit] = ACTIONS(3561), + [anon_sym_consteval] = ACTIONS(3561), + [sym_primitive_type] = ACTIONS(3561), + [anon_sym_enum] = ACTIONS(3561), + [anon_sym_class] = ACTIONS(3561), + [anon_sym_struct] = ACTIONS(3561), + [anon_sym_union] = ACTIONS(3561), + [anon_sym_if] = ACTIONS(3561), + [anon_sym_switch] = ACTIONS(3561), + [anon_sym_case] = ACTIONS(3561), + [anon_sym_default] = ACTIONS(3561), + [anon_sym_while] = ACTIONS(3561), + [anon_sym_do] = ACTIONS(3561), + [anon_sym_for] = ACTIONS(3561), + [anon_sym_return] = ACTIONS(3561), + [anon_sym_break] = ACTIONS(3561), + [anon_sym_continue] = ACTIONS(3561), + [anon_sym_goto] = ACTIONS(3561), + [anon_sym_not] = ACTIONS(3561), + [anon_sym_compl] = ACTIONS(3561), + [anon_sym_DASH_DASH] = ACTIONS(3563), + [anon_sym_PLUS_PLUS] = ACTIONS(3563), + [anon_sym_sizeof] = ACTIONS(3561), + [anon_sym___alignof__] = ACTIONS(3561), + [anon_sym___alignof] = ACTIONS(3561), + [anon_sym__alignof] = ACTIONS(3561), + [anon_sym_alignof] = ACTIONS(3561), + [anon_sym__Alignof] = ACTIONS(3561), + [anon_sym_offsetof] = ACTIONS(3561), + [anon_sym__Generic] = ACTIONS(3561), + [anon_sym_asm] = ACTIONS(3561), + [anon_sym___asm__] = ACTIONS(3561), + [sym_number_literal] = ACTIONS(3563), + [anon_sym_L_SQUOTE] = ACTIONS(3563), + [anon_sym_u_SQUOTE] = ACTIONS(3563), + [anon_sym_U_SQUOTE] = ACTIONS(3563), + [anon_sym_u8_SQUOTE] = ACTIONS(3563), + [anon_sym_SQUOTE] = ACTIONS(3563), + [anon_sym_L_DQUOTE] = ACTIONS(3563), + [anon_sym_u_DQUOTE] = ACTIONS(3563), + [anon_sym_U_DQUOTE] = ACTIONS(3563), + [anon_sym_u8_DQUOTE] = ACTIONS(3563), + [anon_sym_DQUOTE] = ACTIONS(3563), + [sym_true] = ACTIONS(3561), + [sym_false] = ACTIONS(3561), + [anon_sym_NULL] = ACTIONS(3561), + [anon_sym_nullptr] = ACTIONS(3561), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3561), + [anon_sym_decltype] = ACTIONS(3561), + [anon_sym_virtual] = ACTIONS(3561), + [anon_sym_alignas] = ACTIONS(3561), + [anon_sym_explicit] = ACTIONS(3561), + [anon_sym_typename] = ACTIONS(3561), + [anon_sym_template] = ACTIONS(3561), + [anon_sym_operator] = ACTIONS(3561), + [anon_sym_try] = ACTIONS(3561), + [anon_sym_delete] = ACTIONS(3561), + [anon_sym_throw] = ACTIONS(3561), + [anon_sym_namespace] = ACTIONS(3561), + [anon_sym_using] = ACTIONS(3561), + [anon_sym_static_assert] = ACTIONS(3561), + [anon_sym_concept] = ACTIONS(3561), + [anon_sym_co_return] = ACTIONS(3561), + [anon_sym_co_yield] = ACTIONS(3561), + [anon_sym_R_DQUOTE] = ACTIONS(3563), + [anon_sym_LR_DQUOTE] = ACTIONS(3563), + [anon_sym_uR_DQUOTE] = ACTIONS(3563), + [anon_sym_UR_DQUOTE] = ACTIONS(3563), + [anon_sym_u8R_DQUOTE] = ACTIONS(3563), + [anon_sym_co_await] = ACTIONS(3561), + [anon_sym_new] = ACTIONS(3561), + [anon_sym_requires] = ACTIONS(3561), + [sym_this] = ACTIONS(3561), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3563), + [sym_semgrep_named_ellipsis] = ACTIONS(3563), + }, + [896] = { + [ts_builtin_sym_end] = ACTIONS(3471), + [sym_identifier] = ACTIONS(3469), + [aux_sym_preproc_include_token1] = ACTIONS(3469), + [aux_sym_preproc_def_token1] = ACTIONS(3469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3471), + [aux_sym_preproc_if_token1] = ACTIONS(3469), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3469), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3469), + [sym_preproc_directive] = ACTIONS(3469), + [anon_sym_LPAREN2] = ACTIONS(3471), + [anon_sym_BANG] = ACTIONS(3471), + [anon_sym_TILDE] = ACTIONS(3471), + [anon_sym_DASH] = ACTIONS(3469), + [anon_sym_PLUS] = ACTIONS(3469), + [anon_sym_STAR] = ACTIONS(3471), + [anon_sym_AMP_AMP] = ACTIONS(3471), + [anon_sym_AMP] = ACTIONS(3469), + [anon_sym___extension__] = ACTIONS(3469), + [anon_sym_typedef] = ACTIONS(3469), + [anon_sym_extern] = ACTIONS(3469), + [anon_sym___attribute__] = ACTIONS(3469), + [anon_sym_COLON_COLON] = ACTIONS(3471), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3471), + [anon_sym___declspec] = ACTIONS(3469), + [anon_sym___based] = ACTIONS(3469), + [anon_sym___cdecl] = ACTIONS(3469), + [anon_sym___clrcall] = ACTIONS(3469), + [anon_sym___stdcall] = ACTIONS(3469), + [anon_sym___fastcall] = ACTIONS(3469), + [anon_sym___thiscall] = ACTIONS(3469), + [anon_sym___vectorcall] = ACTIONS(3469), + [anon_sym_LBRACE] = ACTIONS(3471), + [anon_sym_signed] = ACTIONS(3469), + [anon_sym_unsigned] = ACTIONS(3469), + [anon_sym_long] = ACTIONS(3469), + [anon_sym_short] = ACTIONS(3469), + [anon_sym_LBRACK] = ACTIONS(3469), + [anon_sym_static] = ACTIONS(3469), + [anon_sym_register] = ACTIONS(3469), + [anon_sym_inline] = ACTIONS(3469), + [anon_sym___inline] = ACTIONS(3469), + [anon_sym___inline__] = ACTIONS(3469), + [anon_sym___forceinline] = ACTIONS(3469), + [anon_sym_thread_local] = ACTIONS(3469), + [anon_sym___thread] = ACTIONS(3469), + [anon_sym_const] = ACTIONS(3469), + [anon_sym_constexpr] = ACTIONS(3469), + [anon_sym_volatile] = ACTIONS(3469), + [anon_sym_restrict] = ACTIONS(3469), + [anon_sym___restrict__] = ACTIONS(3469), + [anon_sym__Atomic] = ACTIONS(3469), + [anon_sym__Noreturn] = ACTIONS(3469), + [anon_sym_noreturn] = ACTIONS(3469), + [anon_sym_mutable] = ACTIONS(3469), + [anon_sym_constinit] = ACTIONS(3469), + [anon_sym_consteval] = ACTIONS(3469), + [sym_primitive_type] = ACTIONS(3469), + [anon_sym_enum] = ACTIONS(3469), + [anon_sym_class] = ACTIONS(3469), + [anon_sym_struct] = ACTIONS(3469), + [anon_sym_union] = ACTIONS(3469), + [anon_sym_if] = ACTIONS(3469), + [anon_sym_switch] = ACTIONS(3469), + [anon_sym_case] = ACTIONS(3469), + [anon_sym_default] = ACTIONS(3469), + [anon_sym_while] = ACTIONS(3469), + [anon_sym_do] = ACTIONS(3469), + [anon_sym_for] = ACTIONS(3469), + [anon_sym_return] = ACTIONS(3469), + [anon_sym_break] = ACTIONS(3469), + [anon_sym_continue] = ACTIONS(3469), + [anon_sym_goto] = ACTIONS(3469), + [anon_sym_not] = ACTIONS(3469), + [anon_sym_compl] = ACTIONS(3469), + [anon_sym_DASH_DASH] = ACTIONS(3471), + [anon_sym_PLUS_PLUS] = ACTIONS(3471), + [anon_sym_sizeof] = ACTIONS(3469), + [anon_sym___alignof__] = ACTIONS(3469), + [anon_sym___alignof] = ACTIONS(3469), + [anon_sym__alignof] = ACTIONS(3469), + [anon_sym_alignof] = ACTIONS(3469), + [anon_sym__Alignof] = ACTIONS(3469), + [anon_sym_offsetof] = ACTIONS(3469), + [anon_sym__Generic] = ACTIONS(3469), + [anon_sym_asm] = ACTIONS(3469), + [anon_sym___asm__] = ACTIONS(3469), + [sym_number_literal] = ACTIONS(3471), + [anon_sym_L_SQUOTE] = ACTIONS(3471), + [anon_sym_u_SQUOTE] = ACTIONS(3471), + [anon_sym_U_SQUOTE] = ACTIONS(3471), + [anon_sym_u8_SQUOTE] = ACTIONS(3471), + [anon_sym_SQUOTE] = ACTIONS(3471), + [anon_sym_L_DQUOTE] = ACTIONS(3471), + [anon_sym_u_DQUOTE] = ACTIONS(3471), + [anon_sym_U_DQUOTE] = ACTIONS(3471), + [anon_sym_u8_DQUOTE] = ACTIONS(3471), + [anon_sym_DQUOTE] = ACTIONS(3471), + [sym_true] = ACTIONS(3469), + [sym_false] = ACTIONS(3469), + [anon_sym_NULL] = ACTIONS(3469), + [anon_sym_nullptr] = ACTIONS(3469), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3469), + [anon_sym_decltype] = ACTIONS(3469), + [anon_sym_virtual] = ACTIONS(3469), + [anon_sym_alignas] = ACTIONS(3469), + [anon_sym_explicit] = ACTIONS(3469), + [anon_sym_typename] = ACTIONS(3469), + [anon_sym_template] = ACTIONS(3469), + [anon_sym_operator] = ACTIONS(3469), + [anon_sym_try] = ACTIONS(3469), + [anon_sym_delete] = ACTIONS(3469), + [anon_sym_throw] = ACTIONS(3469), + [anon_sym_namespace] = ACTIONS(3469), + [anon_sym_using] = ACTIONS(3469), + [anon_sym_static_assert] = ACTIONS(3469), + [anon_sym_concept] = ACTIONS(3469), + [anon_sym_co_return] = ACTIONS(3469), + [anon_sym_co_yield] = ACTIONS(3469), + [anon_sym_R_DQUOTE] = ACTIONS(3471), + [anon_sym_LR_DQUOTE] = ACTIONS(3471), + [anon_sym_uR_DQUOTE] = ACTIONS(3471), + [anon_sym_UR_DQUOTE] = ACTIONS(3471), + [anon_sym_u8R_DQUOTE] = ACTIONS(3471), + [anon_sym_co_await] = ACTIONS(3469), + [anon_sym_new] = ACTIONS(3469), + [anon_sym_requires] = ACTIONS(3469), + [sym_this] = ACTIONS(3469), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3471), + [sym_semgrep_named_ellipsis] = ACTIONS(3471), + }, + [897] = { + [sym_expression] = STATE(4708), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_initializer_list] = STATE(4376), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2277), + [anon_sym_COMMA] = ACTIONS(2277), + [anon_sym_LPAREN2] = ACTIONS(2277), + [anon_sym_BANG] = ACTIONS(4222), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2277), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_PERCENT] = ACTIONS(2277), + [anon_sym_PIPE_PIPE] = ACTIONS(2277), + [anon_sym_AMP_AMP] = ACTIONS(2277), + [anon_sym_PIPE] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2277), + [anon_sym_AMP] = ACTIONS(2285), + [anon_sym_EQ_EQ] = ACTIONS(2277), + [anon_sym_BANG_EQ] = ACTIONS(2277), + [anon_sym_GT] = ACTIONS(2285), + [anon_sym_GT_EQ] = ACTIONS(2277), + [anon_sym_LT_EQ] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_LT_LT] = ACTIONS(2277), + [anon_sym_GT_GT] = ACTIONS(2277), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(2277), + [anon_sym_RBRACK] = ACTIONS(2277), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_QMARK] = ACTIONS(2277), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_LT_EQ_GT] = ACTIONS(2277), + [anon_sym_or] = ACTIONS(2285), + [anon_sym_and] = ACTIONS(2285), + [anon_sym_bitor] = ACTIONS(2285), + [anon_sym_xor] = ACTIONS(2285), + [anon_sym_bitand] = ACTIONS(2285), + [anon_sym_not_eq] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2277), + [anon_sym_PLUS_PLUS] = ACTIONS(2277), + [anon_sym_sizeof] = ACTIONS(4228), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(2285), + [anon_sym_DOT_STAR] = ACTIONS(2277), + [anon_sym_DASH_GT] = ACTIONS(2277), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), + }, + [898] = { + [sym_expression] = STATE(5210), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_initializer_list] = STATE(5612), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8965), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [sym_identifier] = ACTIONS(4236), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2277), + [anon_sym_COMMA] = ACTIONS(2277), + [anon_sym_LPAREN2] = ACTIONS(2277), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2277), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_PERCENT] = ACTIONS(2277), + [anon_sym_PIPE_PIPE] = ACTIONS(2277), + [anon_sym_AMP_AMP] = ACTIONS(2277), + [anon_sym_PIPE] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2277), + [anon_sym_AMP] = ACTIONS(2285), + [anon_sym_EQ_EQ] = ACTIONS(2277), + [anon_sym_BANG_EQ] = ACTIONS(2277), + [anon_sym_GT] = ACTIONS(2285), + [anon_sym_GT_EQ] = ACTIONS(2285), + [anon_sym_LT_EQ] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_LT_LT] = ACTIONS(2277), + [anon_sym_GT_GT] = ACTIONS(2285), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(4238), + [anon_sym_LBRACK] = ACTIONS(2277), + [sym_primitive_type] = ACTIONS(4240), + [anon_sym_QMARK] = ACTIONS(2277), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_LT_EQ_GT] = ACTIONS(2277), + [anon_sym_or] = ACTIONS(2285), + [anon_sym_and] = ACTIONS(2285), + [anon_sym_bitor] = ACTIONS(2285), + [anon_sym_xor] = ACTIONS(2285), + [anon_sym_bitand] = ACTIONS(2285), + [anon_sym_not_eq] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2277), + [anon_sym_PLUS_PLUS] = ACTIONS(2277), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [anon_sym_DOT] = ACTIONS(2285), + [anon_sym_DOT_STAR] = ACTIONS(2277), + [anon_sym_DASH_GT] = ACTIONS(2277), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_GT2] = ACTIONS(2277), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), + }, + [899] = { + [sym_expression] = STATE(5535), + [sym_expression_not_binary] = STATE(5685), + [sym_conditional_expression] = STATE(5675), + [sym_assignment_expression] = STATE(5675), + [sym_pointer_expression] = STATE(4201), + [sym_unary_expression] = STATE(5675), + [sym_binary_expression] = STATE(5685), + [sym_update_expression] = STATE(5675), + [sym_cast_expression] = STATE(5675), + [sym_sizeof_expression] = STATE(5675), + [sym_alignof_expression] = STATE(5675), + [sym_offsetof_expression] = STATE(5675), + [sym_generic_expression] = STATE(5675), + [sym_subscript_expression] = STATE(4201), + [sym_call_expression] = STATE(4201), + [sym_gnu_asm_expression] = STATE(5675), + [sym_field_expression] = STATE(4201), + [sym_compound_literal_expression] = STATE(5675), + [sym_parenthesized_expression] = STATE(4201), + [sym_initializer_list] = STATE(5711), + [sym_char_literal] = STATE(5600), + [sym_concatenated_string] = STATE(5600), + [sym_string_literal] = STATE(4359), + [sym_null] = STATE(5675), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9034), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5675), + [sym_raw_string_literal] = STATE(4359), + [sym_co_await_expression] = STATE(5675), + [sym_new_expression] = STATE(5675), + [sym_delete_expression] = STATE(5675), + [sym_requires_clause] = STATE(5675), + [sym_requires_expression] = STATE(5675), + [sym_lambda_expression] = STATE(5675), + [sym_lambda_capture_specifier] = STATE(6898), + [sym_fold_expression] = STATE(5675), + [sym_parameter_pack_expansion] = STATE(5675), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4201), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4201), + [sym_semgrep_ellipsis] = STATE(5685), + [sym_deep_ellipsis] = STATE(5685), + [sym_identifier] = ACTIONS(4242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2285), + [anon_sym_LPAREN2] = ACTIONS(2277), + [anon_sym_BANG] = ACTIONS(4244), + [anon_sym_TILDE] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2277), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_PERCENT] = ACTIONS(2277), + [anon_sym_PIPE_PIPE] = ACTIONS(2277), + [anon_sym_AMP_AMP] = ACTIONS(2277), + [anon_sym_PIPE] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2277), + [anon_sym_AMP] = ACTIONS(2285), + [anon_sym_EQ_EQ] = ACTIONS(2277), + [anon_sym_BANG_EQ] = ACTIONS(2277), + [anon_sym_GT] = ACTIONS(2285), + [anon_sym_GT_EQ] = ACTIONS(2277), + [anon_sym_LT_EQ] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_LT_LT] = ACTIONS(2277), + [anon_sym_GT_GT] = ACTIONS(2277), + [anon_sym_COLON_COLON] = ACTIONS(4248), + [anon_sym_LBRACE] = ACTIONS(4250), + [anon_sym_LBRACK] = ACTIONS(2277), + [sym_primitive_type] = ACTIONS(4252), + [anon_sym_QMARK] = ACTIONS(2277), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_LT_EQ_GT] = ACTIONS(2277), + [anon_sym_or] = ACTIONS(2285), + [anon_sym_and] = ACTIONS(2285), + [anon_sym_bitor] = ACTIONS(2285), + [anon_sym_xor] = ACTIONS(2285), + [anon_sym_bitand] = ACTIONS(2285), + [anon_sym_not_eq] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2277), + [anon_sym_PLUS_PLUS] = ACTIONS(2277), + [anon_sym_sizeof] = ACTIONS(4254), + [anon_sym___alignof__] = ACTIONS(4256), + [anon_sym___alignof] = ACTIONS(4256), + [anon_sym__alignof] = ACTIONS(4256), + [anon_sym_alignof] = ACTIONS(4256), + [anon_sym__Alignof] = ACTIONS(4256), + [anon_sym_offsetof] = ACTIONS(4258), + [anon_sym__Generic] = ACTIONS(4260), + [anon_sym_asm] = ACTIONS(4262), + [anon_sym___asm__] = ACTIONS(4262), + [anon_sym_DOT] = ACTIONS(2285), + [anon_sym_DOT_STAR] = ACTIONS(2277), + [anon_sym_DASH_GT] = ACTIONS(2277), + [sym_number_literal] = ACTIONS(4264), + [anon_sym_L_SQUOTE] = ACTIONS(4266), + [anon_sym_u_SQUOTE] = ACTIONS(4266), + [anon_sym_U_SQUOTE] = ACTIONS(4266), + [anon_sym_u8_SQUOTE] = ACTIONS(4266), + [anon_sym_SQUOTE] = ACTIONS(4266), + [anon_sym_L_DQUOTE] = ACTIONS(4268), + [anon_sym_u_DQUOTE] = ACTIONS(4268), + [anon_sym_U_DQUOTE] = ACTIONS(4268), + [anon_sym_u8_DQUOTE] = ACTIONS(4268), + [anon_sym_DQUOTE] = ACTIONS(4268), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4272), + [anon_sym_nullptr] = ACTIONS(4272), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4274), + [anon_sym_R_DQUOTE] = ACTIONS(4276), + [anon_sym_LR_DQUOTE] = ACTIONS(4276), + [anon_sym_uR_DQUOTE] = ACTIONS(4276), + [anon_sym_UR_DQUOTE] = ACTIONS(4276), + [anon_sym_u8R_DQUOTE] = ACTIONS(4276), + [anon_sym_co_await] = ACTIONS(4278), + [anon_sym_new] = ACTIONS(4280), + [anon_sym_requires] = ACTIONS(4282), + [sym_this] = ACTIONS(4270), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4284), + [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(2277), + [sym_semgrep_named_ellipsis] = ACTIONS(4286), + }, + [900] = { + [sym_expression] = STATE(4631), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_initializer_list] = STATE(4376), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2277), + [anon_sym_LPAREN2] = ACTIONS(2277), + [anon_sym_BANG] = ACTIONS(4290), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2277), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_PERCENT] = ACTIONS(2277), + [anon_sym_PIPE_PIPE] = ACTIONS(2277), + [anon_sym_AMP_AMP] = ACTIONS(2277), + [anon_sym_PIPE] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2277), + [anon_sym_AMP] = ACTIONS(2285), + [anon_sym_EQ_EQ] = ACTIONS(2277), + [anon_sym_BANG_EQ] = ACTIONS(2277), + [anon_sym_GT] = ACTIONS(2285), + [anon_sym_GT_EQ] = ACTIONS(2277), + [anon_sym_LT_EQ] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_LT_LT] = ACTIONS(2277), + [anon_sym_GT_GT] = ACTIONS(2277), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(2277), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_COLON] = ACTIONS(2285), + [anon_sym_QMARK] = ACTIONS(2277), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_LT_EQ_GT] = ACTIONS(2277), + [anon_sym_or] = ACTIONS(2285), + [anon_sym_and] = ACTIONS(2285), + [anon_sym_bitor] = ACTIONS(2285), + [anon_sym_xor] = ACTIONS(2285), + [anon_sym_bitand] = ACTIONS(2285), + [anon_sym_not_eq] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2277), + [anon_sym_PLUS_PLUS] = ACTIONS(2277), + [anon_sym_sizeof] = ACTIONS(4296), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(2285), + [anon_sym_DOT_STAR] = ACTIONS(2277), + [anon_sym_DASH_GT] = ACTIONS(2277), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), + }, + [901] = { + [sym_expression] = STATE(5442), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_COMMA] = ACTIONS(4302), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4222), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_SLASH] = ACTIONS(4306), + [anon_sym_PERCENT] = ACTIONS(4302), + [anon_sym_PIPE_PIPE] = ACTIONS(4302), + [anon_sym_AMP_AMP] = ACTIONS(4302), + [anon_sym_PIPE] = ACTIONS(4306), + [anon_sym_CARET] = ACTIONS(4302), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_EQ_EQ] = ACTIONS(4302), + [anon_sym_BANG_EQ] = ACTIONS(4302), + [anon_sym_GT] = ACTIONS(4306), + [anon_sym_GT_EQ] = ACTIONS(4302), + [anon_sym_LT_EQ] = ACTIONS(4306), + [anon_sym_LT] = ACTIONS(4306), + [anon_sym_LT_LT] = ACTIONS(4302), + [anon_sym_GT_GT] = ACTIONS(4302), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4302), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_QMARK] = ACTIONS(4302), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_LT_EQ_GT] = ACTIONS(4302), + [anon_sym_or] = ACTIONS(4306), + [anon_sym_and] = ACTIONS(4306), + [anon_sym_bitor] = ACTIONS(4306), + [anon_sym_xor] = ACTIONS(4306), + [anon_sym_bitand] = ACTIONS(4306), + [anon_sym_not_eq] = ACTIONS(4306), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(4306), + [anon_sym_DOT_STAR] = ACTIONS(4302), + [anon_sym_DASH_GT] = ACTIONS(4302), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), + }, + [902] = { + [sym_declaration_modifiers] = STATE(2254), + [sym_declaration_specifiers] = STATE(7230), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4731), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(3324), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7546), + [sym_qualified_type_identifier] = STATE(3466), + [aux_sym_declaration_specifiers_repeat1] = STATE(2254), + [aux_sym_sized_type_specifier_repeat1] = STATE(3644), + [sym_identifier] = ACTIONS(4310), + [anon_sym_COMMA] = ACTIONS(4312), + [anon_sym_BANG] = ACTIONS(4314), + [anon_sym_TILDE] = ACTIONS(4312), + [anon_sym_DASH] = ACTIONS(4314), + [anon_sym_PLUS] = ACTIONS(4314), + [anon_sym_STAR] = ACTIONS(4314), + [anon_sym_SLASH] = ACTIONS(4314), + [anon_sym_PERCENT] = ACTIONS(4314), + [anon_sym_PIPE_PIPE] = ACTIONS(4312), + [anon_sym_AMP_AMP] = ACTIONS(4312), + [anon_sym_PIPE] = ACTIONS(4314), + [anon_sym_CARET] = ACTIONS(4314), + [anon_sym_AMP] = ACTIONS(4314), + [anon_sym_EQ_EQ] = ACTIONS(4312), + [anon_sym_BANG_EQ] = ACTIONS(4312), + [anon_sym_GT] = ACTIONS(4314), + [anon_sym_GT_EQ] = ACTIONS(4312), + [anon_sym_LT_EQ] = ACTIONS(4314), + [anon_sym_LT] = ACTIONS(4314), + [anon_sym_LT_LT] = ACTIONS(4314), + [anon_sym_GT_GT] = ACTIONS(4314), + [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(4188), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_signed] = ACTIONS(4316), + [anon_sym_unsigned] = ACTIONS(4316), + [anon_sym_long] = ACTIONS(4316), + [anon_sym_short] = ACTIONS(4316), + [anon_sym_EQ] = ACTIONS(4314), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -187594,116 +179161,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(4318), + [anon_sym_enum] = ACTIONS(4320), + [anon_sym_class] = ACTIONS(4322), + [anon_sym_struct] = ACTIONS(4324), + [anon_sym_union] = ACTIONS(4326), + [anon_sym_STAR_EQ] = ACTIONS(4312), + [anon_sym_SLASH_EQ] = ACTIONS(4312), + [anon_sym_PERCENT_EQ] = ACTIONS(4312), + [anon_sym_PLUS_EQ] = ACTIONS(4312), + [anon_sym_DASH_EQ] = ACTIONS(4312), + [anon_sym_LT_LT_EQ] = ACTIONS(4312), + [anon_sym_GT_GT_EQ] = ACTIONS(4312), + [anon_sym_AMP_EQ] = ACTIONS(4312), + [anon_sym_CARET_EQ] = ACTIONS(4312), + [anon_sym_PIPE_EQ] = ACTIONS(4312), + [anon_sym_and_eq] = ACTIONS(4314), + [anon_sym_or_eq] = ACTIONS(4314), + [anon_sym_xor_eq] = ACTIONS(4314), + [anon_sym_not] = ACTIONS(4314), + [anon_sym_compl] = ACTIONS(4314), + [anon_sym_LT_EQ_GT] = ACTIONS(4312), + [anon_sym_or] = ACTIONS(4314), + [anon_sym_and] = ACTIONS(4314), + [anon_sym_bitor] = ACTIONS(4314), + [anon_sym_xor] = ACTIONS(4314), + [anon_sym_bitand] = ACTIONS(4314), + [anon_sym_not_eq] = ACTIONS(4314), + [anon_sym_DASH_DASH] = ACTIONS(4312), + [anon_sym_PLUS_PLUS] = ACTIONS(4312), + [anon_sym_DASH_GT] = ACTIONS(4314), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(4174), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4176), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(4178), - [anon_sym_static_assert] = ACTIONS(4180), + [anon_sym_typename] = ACTIONS(4328), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4330), + [anon_sym_co_await] = ACTIONS(4314), + [anon_sym_new] = ACTIONS(4330), + [anon_sym_DASH_GT_STAR] = ACTIONS(4312), + [anon_sym_LPAREN_RPAREN] = ACTIONS(4312), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4312), + [anon_sym_DQUOTE_DQUOTE] = ACTIONS(4332), + [sym_semgrep_metavar] = ACTIONS(4312), }, - [892] = { - [sym_preproc_def] = STATE(2302), - [sym_preproc_function_def] = STATE(2302), - [sym_preproc_call] = STATE(2302), - [sym_preproc_if_in_field_declaration_list] = STATE(2302), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2302), - [sym_type_definition] = STATE(2302), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6923), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7673), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(893), - [sym_field_declaration] = STATE(2302), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2302), - [sym_operator_cast] = STATE(8121), - [sym_inline_method_definition] = STATE(2302), - [sym_constructor_specifiers] = STATE(1954), - [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_friend_declaration] = STATE(2302), - [sym_access_specifier] = STATE(10549), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2302), - [sym_alias_declaration] = STATE(2302), - [sym_static_assert_declaration] = STATE(2302), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8121), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(893), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1954), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(4158), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4166), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4170), + [903] = { + [sym_declaration_modifiers] = STATE(2254), + [sym_declaration_specifiers] = STATE(7230), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4731), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(3324), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7546), + [sym_qualified_type_identifier] = STATE(3466), + [aux_sym_declaration_specifiers_repeat1] = STATE(2254), + [aux_sym_sized_type_specifier_repeat1] = STATE(3644), + [sym_identifier] = ACTIONS(4310), + [anon_sym_COMMA] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4336), + [anon_sym_TILDE] = ACTIONS(4334), + [anon_sym_DASH] = ACTIONS(4336), + [anon_sym_PLUS] = ACTIONS(4336), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_SLASH] = ACTIONS(4336), + [anon_sym_PERCENT] = ACTIONS(4336), + [anon_sym_PIPE_PIPE] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4334), + [anon_sym_PIPE] = ACTIONS(4336), + [anon_sym_CARET] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym_EQ_EQ] = ACTIONS(4334), + [anon_sym_BANG_EQ] = ACTIONS(4334), + [anon_sym_GT] = ACTIONS(4336), + [anon_sym_GT_EQ] = ACTIONS(4334), + [anon_sym_LT_EQ] = ACTIONS(4336), + [anon_sym_LT] = ACTIONS(4336), + [anon_sym_LT_LT] = ACTIONS(4336), + [anon_sym_GT_GT] = ACTIONS(4336), + [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(4190), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_signed] = ACTIONS(4316), + [anon_sym_unsigned] = ACTIONS(4316), + [anon_sym_long] = ACTIONS(4316), + [anon_sym_short] = ACTIONS(4316), + [anon_sym_EQ] = ACTIONS(4336), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -187723,116 +179285,375 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(4318), + [anon_sym_enum] = ACTIONS(4320), + [anon_sym_class] = ACTIONS(4322), + [anon_sym_struct] = ACTIONS(4324), + [anon_sym_union] = ACTIONS(4326), + [anon_sym_STAR_EQ] = ACTIONS(4334), + [anon_sym_SLASH_EQ] = ACTIONS(4334), + [anon_sym_PERCENT_EQ] = ACTIONS(4334), + [anon_sym_PLUS_EQ] = ACTIONS(4334), + [anon_sym_DASH_EQ] = ACTIONS(4334), + [anon_sym_LT_LT_EQ] = ACTIONS(4334), + [anon_sym_GT_GT_EQ] = ACTIONS(4334), + [anon_sym_AMP_EQ] = ACTIONS(4334), + [anon_sym_CARET_EQ] = ACTIONS(4334), + [anon_sym_PIPE_EQ] = ACTIONS(4334), + [anon_sym_and_eq] = ACTIONS(4336), + [anon_sym_or_eq] = ACTIONS(4336), + [anon_sym_xor_eq] = ACTIONS(4336), + [anon_sym_not] = ACTIONS(4336), + [anon_sym_compl] = ACTIONS(4336), + [anon_sym_LT_EQ_GT] = ACTIONS(4334), + [anon_sym_or] = ACTIONS(4336), + [anon_sym_and] = ACTIONS(4336), + [anon_sym_bitor] = ACTIONS(4336), + [anon_sym_xor] = ACTIONS(4336), + [anon_sym_bitand] = ACTIONS(4336), + [anon_sym_not_eq] = ACTIONS(4336), + [anon_sym_DASH_DASH] = ACTIONS(4334), + [anon_sym_PLUS_PLUS] = ACTIONS(4334), + [anon_sym_DASH_GT] = ACTIONS(4336), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(4174), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4176), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(4178), - [anon_sym_static_assert] = ACTIONS(4180), + [anon_sym_typename] = ACTIONS(4328), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4338), + [anon_sym_co_await] = ACTIONS(4336), + [anon_sym_new] = ACTIONS(4338), + [anon_sym_DASH_GT_STAR] = ACTIONS(4334), + [anon_sym_LPAREN_RPAREN] = ACTIONS(4334), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4334), + [anon_sym_DQUOTE_DQUOTE] = ACTIONS(4340), + [sym_semgrep_metavar] = ACTIONS(4334), }, - [893] = { - [sym_preproc_def] = STATE(2302), - [sym_preproc_function_def] = STATE(2302), - [sym_preproc_call] = STATE(2302), - [sym_preproc_if_in_field_declaration_list] = STATE(2302), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2302), - [sym_type_definition] = STATE(2302), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6923), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7673), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(900), - [sym_field_declaration] = STATE(2302), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2302), - [sym_operator_cast] = STATE(8121), - [sym_inline_method_definition] = STATE(2302), - [sym_constructor_specifiers] = STATE(1954), - [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_friend_declaration] = STATE(2302), - [sym_access_specifier] = STATE(10549), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2302), - [sym_alias_declaration] = STATE(2302), - [sym_static_assert_declaration] = STATE(2302), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8121), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(900), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1954), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(4158), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4166), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [904] = { + [sym_identifier] = ACTIONS(4342), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4344), + [anon_sym_COMMA] = ACTIONS(4344), + [anon_sym_RPAREN] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(4344), + [anon_sym_BANG] = ACTIONS(4344), + [anon_sym_TILDE] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [anon_sym_AMP_AMP] = ACTIONS(4344), + [anon_sym_AMP] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym___extension__] = ACTIONS(4342), + [anon_sym_extern] = ACTIONS(4342), + [anon_sym___attribute__] = ACTIONS(4342), + [anon_sym_COLON_COLON] = ACTIONS(4344), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4344), + [anon_sym___declspec] = ACTIONS(4342), + [anon_sym___based] = ACTIONS(4342), + [anon_sym_LBRACE] = ACTIONS(4344), + [anon_sym_signed] = ACTIONS(4342), + [anon_sym_unsigned] = ACTIONS(4342), + [anon_sym_long] = ACTIONS(4342), + [anon_sym_short] = ACTIONS(4342), + [anon_sym_LBRACK] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_static] = ACTIONS(4342), + [anon_sym_register] = ACTIONS(4342), + [anon_sym_inline] = ACTIONS(4342), + [anon_sym___inline] = ACTIONS(4342), + [anon_sym___inline__] = ACTIONS(4342), + [anon_sym___forceinline] = ACTIONS(4342), + [anon_sym_thread_local] = ACTIONS(4342), + [anon_sym___thread] = ACTIONS(4342), + [anon_sym_const] = ACTIONS(4342), + [anon_sym_constexpr] = ACTIONS(4342), + [anon_sym_volatile] = ACTIONS(4342), + [anon_sym_restrict] = ACTIONS(4342), + [anon_sym___restrict__] = ACTIONS(4342), + [anon_sym__Atomic] = ACTIONS(4342), + [anon_sym__Noreturn] = ACTIONS(4342), + [anon_sym_noreturn] = ACTIONS(4342), + [anon_sym_mutable] = ACTIONS(4342), + [anon_sym_constinit] = ACTIONS(4342), + [anon_sym_consteval] = ACTIONS(4342), + [sym_primitive_type] = ACTIONS(4342), + [anon_sym_enum] = ACTIONS(4342), + [anon_sym_class] = ACTIONS(4342), + [anon_sym_struct] = ACTIONS(4342), + [anon_sym_union] = ACTIONS(4342), + [anon_sym_if] = ACTIONS(4342), + [anon_sym_switch] = ACTIONS(4342), + [anon_sym_case] = ACTIONS(4342), + [anon_sym_default] = ACTIONS(4342), + [anon_sym_while] = ACTIONS(4342), + [anon_sym_do] = ACTIONS(4342), + [anon_sym_for] = ACTIONS(4342), + [anon_sym_return] = ACTIONS(4342), + [anon_sym_break] = ACTIONS(4342), + [anon_sym_continue] = ACTIONS(4342), + [anon_sym_goto] = ACTIONS(4342), + [anon_sym___try] = ACTIONS(4342), + [anon_sym___leave] = ACTIONS(4342), + [anon_sym_not] = ACTIONS(4342), + [anon_sym_compl] = ACTIONS(4342), + [anon_sym_DASH_DASH] = ACTIONS(4344), + [anon_sym_PLUS_PLUS] = ACTIONS(4344), + [anon_sym_sizeof] = ACTIONS(4342), + [anon_sym___alignof__] = ACTIONS(4342), + [anon_sym___alignof] = ACTIONS(4342), + [anon_sym__alignof] = ACTIONS(4342), + [anon_sym_alignof] = ACTIONS(4342), + [anon_sym__Alignof] = ACTIONS(4342), + [anon_sym_offsetof] = ACTIONS(4342), + [anon_sym__Generic] = ACTIONS(4342), + [anon_sym_asm] = ACTIONS(4342), + [anon_sym___asm__] = ACTIONS(4342), + [sym_number_literal] = ACTIONS(4344), + [anon_sym_L_SQUOTE] = ACTIONS(4344), + [anon_sym_u_SQUOTE] = ACTIONS(4344), + [anon_sym_U_SQUOTE] = ACTIONS(4344), + [anon_sym_u8_SQUOTE] = ACTIONS(4344), + [anon_sym_SQUOTE] = ACTIONS(4344), + [anon_sym_L_DQUOTE] = ACTIONS(4344), + [anon_sym_u_DQUOTE] = ACTIONS(4344), + [anon_sym_U_DQUOTE] = ACTIONS(4344), + [anon_sym_u8_DQUOTE] = ACTIONS(4344), + [anon_sym_DQUOTE] = ACTIONS(4344), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4342), + [anon_sym_nullptr] = ACTIONS(4342), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4342), + [anon_sym_decltype] = ACTIONS(4342), + [anon_sym_virtual] = ACTIONS(4342), + [anon_sym_alignas] = ACTIONS(4342), + [anon_sym_explicit] = ACTIONS(4342), + [anon_sym_typename] = ACTIONS(4342), + [anon_sym_template] = ACTIONS(4342), + [anon_sym_GT2] = ACTIONS(4344), + [anon_sym_operator] = ACTIONS(4342), + [anon_sym_try] = ACTIONS(4342), + [anon_sym_delete] = ACTIONS(4342), + [anon_sym_throw] = ACTIONS(4342), + [anon_sym_co_return] = ACTIONS(4342), + [anon_sym_co_yield] = ACTIONS(4342), + [anon_sym_R_DQUOTE] = ACTIONS(4344), + [anon_sym_LR_DQUOTE] = ACTIONS(4344), + [anon_sym_uR_DQUOTE] = ACTIONS(4344), + [anon_sym_UR_DQUOTE] = ACTIONS(4344), + [anon_sym_u8R_DQUOTE] = ACTIONS(4344), + [anon_sym_co_await] = ACTIONS(4342), + [anon_sym_new] = ACTIONS(4342), + [anon_sym_requires] = ACTIONS(4342), + [sym_this] = ACTIONS(4342), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4344), + [sym_semgrep_named_ellipsis] = ACTIONS(4344), + }, + [905] = { + [sym_identifier] = ACTIONS(4346), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4348), + [anon_sym_COMMA] = ACTIONS(4348), + [anon_sym_RPAREN] = ACTIONS(4348), + [anon_sym_LPAREN2] = ACTIONS(4348), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4346), + [anon_sym_PLUS] = ACTIONS(4346), + [anon_sym_STAR] = ACTIONS(4348), + [anon_sym_AMP_AMP] = ACTIONS(4348), + [anon_sym_AMP] = ACTIONS(4346), + [anon_sym_SEMI] = ACTIONS(4348), + [anon_sym___extension__] = ACTIONS(4346), + [anon_sym_extern] = ACTIONS(4346), + [anon_sym___attribute__] = ACTIONS(4346), + [anon_sym_COLON_COLON] = ACTIONS(4348), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4348), + [anon_sym___declspec] = ACTIONS(4346), + [anon_sym___based] = ACTIONS(4346), + [anon_sym_LBRACE] = ACTIONS(4348), + [anon_sym_signed] = ACTIONS(4346), + [anon_sym_unsigned] = ACTIONS(4346), + [anon_sym_long] = ACTIONS(4346), + [anon_sym_short] = ACTIONS(4346), + [anon_sym_LBRACK] = ACTIONS(4346), + [anon_sym_EQ] = ACTIONS(4348), + [anon_sym_static] = ACTIONS(4346), + [anon_sym_register] = ACTIONS(4346), + [anon_sym_inline] = ACTIONS(4346), + [anon_sym___inline] = ACTIONS(4346), + [anon_sym___inline__] = ACTIONS(4346), + [anon_sym___forceinline] = ACTIONS(4346), + [anon_sym_thread_local] = ACTIONS(4346), + [anon_sym___thread] = ACTIONS(4346), + [anon_sym_const] = ACTIONS(4346), + [anon_sym_constexpr] = ACTIONS(4346), + [anon_sym_volatile] = ACTIONS(4346), + [anon_sym_restrict] = ACTIONS(4346), + [anon_sym___restrict__] = ACTIONS(4346), + [anon_sym__Atomic] = ACTIONS(4346), + [anon_sym__Noreturn] = ACTIONS(4346), + [anon_sym_noreturn] = ACTIONS(4346), + [anon_sym_mutable] = ACTIONS(4346), + [anon_sym_constinit] = ACTIONS(4346), + [anon_sym_consteval] = ACTIONS(4346), + [sym_primitive_type] = ACTIONS(4346), + [anon_sym_enum] = ACTIONS(4346), + [anon_sym_class] = ACTIONS(4346), + [anon_sym_struct] = ACTIONS(4346), + [anon_sym_union] = ACTIONS(4346), + [anon_sym_if] = ACTIONS(4346), + [anon_sym_switch] = ACTIONS(4346), + [anon_sym_case] = ACTIONS(4346), + [anon_sym_default] = ACTIONS(4346), + [anon_sym_while] = ACTIONS(4346), + [anon_sym_do] = ACTIONS(4346), + [anon_sym_for] = ACTIONS(4346), + [anon_sym_return] = ACTIONS(4346), + [anon_sym_break] = ACTIONS(4346), + [anon_sym_continue] = ACTIONS(4346), + [anon_sym_goto] = ACTIONS(4346), + [anon_sym___try] = ACTIONS(4346), + [anon_sym___leave] = ACTIONS(4346), + [anon_sym_not] = ACTIONS(4346), + [anon_sym_compl] = ACTIONS(4346), + [anon_sym_DASH_DASH] = ACTIONS(4348), + [anon_sym_PLUS_PLUS] = ACTIONS(4348), + [anon_sym_sizeof] = ACTIONS(4346), + [anon_sym___alignof__] = ACTIONS(4346), + [anon_sym___alignof] = ACTIONS(4346), + [anon_sym__alignof] = ACTIONS(4346), + [anon_sym_alignof] = ACTIONS(4346), + [anon_sym__Alignof] = ACTIONS(4346), + [anon_sym_offsetof] = ACTIONS(4346), + [anon_sym__Generic] = ACTIONS(4346), + [anon_sym_asm] = ACTIONS(4346), + [anon_sym___asm__] = ACTIONS(4346), + [sym_number_literal] = ACTIONS(4348), + [anon_sym_L_SQUOTE] = ACTIONS(4348), + [anon_sym_u_SQUOTE] = ACTIONS(4348), + [anon_sym_U_SQUOTE] = ACTIONS(4348), + [anon_sym_u8_SQUOTE] = ACTIONS(4348), + [anon_sym_SQUOTE] = ACTIONS(4348), + [anon_sym_L_DQUOTE] = ACTIONS(4348), + [anon_sym_u_DQUOTE] = ACTIONS(4348), + [anon_sym_U_DQUOTE] = ACTIONS(4348), + [anon_sym_u8_DQUOTE] = ACTIONS(4348), + [anon_sym_DQUOTE] = ACTIONS(4348), + [sym_true] = ACTIONS(4346), + [sym_false] = ACTIONS(4346), + [anon_sym_NULL] = ACTIONS(4346), + [anon_sym_nullptr] = ACTIONS(4346), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4346), + [anon_sym_decltype] = ACTIONS(4346), + [anon_sym_virtual] = ACTIONS(4346), + [anon_sym_alignas] = ACTIONS(4346), + [anon_sym_explicit] = ACTIONS(4346), + [anon_sym_typename] = ACTIONS(4346), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_GT2] = ACTIONS(4348), + [anon_sym_operator] = ACTIONS(4346), + [anon_sym_try] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4346), + [anon_sym_throw] = ACTIONS(4346), + [anon_sym_co_return] = ACTIONS(4346), + [anon_sym_co_yield] = ACTIONS(4346), + [anon_sym_R_DQUOTE] = ACTIONS(4348), + [anon_sym_LR_DQUOTE] = ACTIONS(4348), + [anon_sym_uR_DQUOTE] = ACTIONS(4348), + [anon_sym_UR_DQUOTE] = ACTIONS(4348), + [anon_sym_u8R_DQUOTE] = ACTIONS(4348), + [anon_sym_co_await] = ACTIONS(4346), + [anon_sym_new] = ACTIONS(4346), + [anon_sym_requires] = ACTIONS(4346), + [sym_this] = ACTIONS(4346), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4348), + [sym_semgrep_named_ellipsis] = ACTIONS(4348), + }, + [906] = { + [sym_function_definition] = STATE(2413), + [sym_declaration] = STATE(2413), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5908), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2229), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7245), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4094), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_empty_declaration] = STATE(2413), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2413), + [sym_operator_cast] = STATE(7705), + [sym_constructor_specifiers] = STATE(1945), + [sym_operator_cast_definition] = STATE(2413), + [sym_operator_cast_declaration] = STATE(2413), + [sym_constructor_or_destructor_definition] = STATE(2413), + [sym_constructor_or_destructor_declaration] = STATE(2413), + [sym_friend_declaration] = STATE(2413), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_alias_declaration] = STATE(2413), + [sym_concept_definition] = STATE(2413), + [sym_requires_clause] = STATE(918), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6381), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7705), + [sym_operator_name] = STATE(7305), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4170), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(4192), + [anon_sym___cdecl] = ACTIONS(53), + [anon_sym___clrcall] = ACTIONS(53), + [anon_sym___stdcall] = ACTIONS(53), + [anon_sym___fastcall] = ACTIONS(53), + [anon_sym___thiscall] = ACTIONS(53), + [anon_sym___vectorcall] = ACTIONS(53), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3265), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -187852,116 +179673,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_union] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(4174), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4087), [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4176), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(4178), - [anon_sym_static_assert] = ACTIONS(4180), + [anon_sym_friend] = ACTIONS(4089), + [anon_sym_using] = ACTIONS(4352), + [anon_sym_concept] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), }, - [894] = { - [sym_preproc_def] = STATE(2302), - [sym_preproc_function_def] = STATE(2302), - [sym_preproc_call] = STATE(2302), - [sym_preproc_if_in_field_declaration_list] = STATE(2302), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2302), - [sym_type_definition] = STATE(2302), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6923), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7673), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(888), - [sym_field_declaration] = STATE(2302), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2302), - [sym_operator_cast] = STATE(8121), - [sym_inline_method_definition] = STATE(2302), - [sym_constructor_specifiers] = STATE(1954), - [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_friend_declaration] = STATE(2302), - [sym_access_specifier] = STATE(10549), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2302), - [sym_alias_declaration] = STATE(2302), - [sym_static_assert_declaration] = STATE(2302), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8121), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(888), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1954), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(4158), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4166), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [907] = { + [sym_function_definition] = STATE(754), + [sym_declaration] = STATE(754), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7247), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_empty_declaration] = STATE(754), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(754), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(2014), + [sym_operator_cast_definition] = STATE(754), + [sym_operator_cast_declaration] = STATE(754), + [sym_constructor_or_destructor_definition] = STATE(754), + [sym_constructor_or_destructor_declaration] = STATE(754), + [sym_friend_declaration] = STATE(754), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_alias_declaration] = STATE(754), + [sym_concept_definition] = STATE(754), + [sym_requires_clause] = STATE(948), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6381), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(2014), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4170), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(4194), + [anon_sym___cdecl] = ACTIONS(53), + [anon_sym___clrcall] = ACTIONS(53), + [anon_sym___stdcall] = ACTIONS(53), + [anon_sym___fastcall] = ACTIONS(53), + [anon_sym___thiscall] = ACTIONS(53), + [anon_sym___vectorcall] = ACTIONS(53), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3265), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -187981,116 +179792,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_union] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(4174), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4358), [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4176), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(4178), - [anon_sym_static_assert] = ACTIONS(4180), + [anon_sym_friend] = ACTIONS(4360), + [anon_sym_using] = ACTIONS(4362), + [anon_sym_concept] = ACTIONS(243), + [anon_sym_requires] = ACTIONS(4356), }, - [895] = { - [sym_preproc_def] = STATE(2302), - [sym_preproc_function_def] = STATE(2302), - [sym_preproc_call] = STATE(2302), - [sym_preproc_if_in_field_declaration_list] = STATE(2302), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2302), - [sym_type_definition] = STATE(2302), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6923), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7673), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(896), - [sym_field_declaration] = STATE(2302), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2302), - [sym_operator_cast] = STATE(8121), - [sym_inline_method_definition] = STATE(2302), - [sym_constructor_specifiers] = STATE(1954), - [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_friend_declaration] = STATE(2302), - [sym_access_specifier] = STATE(10549), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2302), - [sym_alias_declaration] = STATE(2302), - [sym_static_assert_declaration] = STATE(2302), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8121), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(896), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1954), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(4158), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4166), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [908] = { + [sym_function_definition] = STATE(2304), + [sym_declaration] = STATE(2304), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5899), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2226), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7306), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4000), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_empty_declaration] = STATE(2304), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2304), + [sym_operator_cast] = STATE(7731), + [sym_constructor_specifiers] = STATE(1938), + [sym_operator_cast_definition] = STATE(2304), + [sym_operator_cast_declaration] = STATE(2304), + [sym_constructor_or_destructor_definition] = STATE(2304), + [sym_constructor_or_destructor_declaration] = STATE(2304), + [sym_friend_declaration] = STATE(2304), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_alias_declaration] = STATE(2304), + [sym_concept_definition] = STATE(2304), + [sym_requires_clause] = STATE(922), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6381), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7731), + [sym_operator_name] = STATE(7305), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1938), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4170), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym___cdecl] = ACTIONS(53), + [anon_sym___clrcall] = ACTIONS(53), + [anon_sym___stdcall] = ACTIONS(53), + [anon_sym___fastcall] = ACTIONS(53), + [anon_sym___thiscall] = ACTIONS(53), + [anon_sym___vectorcall] = ACTIONS(53), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3265), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -188110,116 +179911,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_union] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(4174), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4059), [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4176), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(4178), - [anon_sym_static_assert] = ACTIONS(4180), + [anon_sym_friend] = ACTIONS(4061), + [anon_sym_using] = ACTIONS(4364), + [anon_sym_concept] = ACTIONS(4366), + [anon_sym_requires] = ACTIONS(4356), }, - [896] = { - [sym_preproc_def] = STATE(2302), - [sym_preproc_function_def] = STATE(2302), - [sym_preproc_call] = STATE(2302), - [sym_preproc_if_in_field_declaration_list] = STATE(2302), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2302), - [sym_type_definition] = STATE(2302), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6923), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7673), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(900), - [sym_field_declaration] = STATE(2302), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2302), - [sym_operator_cast] = STATE(8121), - [sym_inline_method_definition] = STATE(2302), - [sym_constructor_specifiers] = STATE(1954), - [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_friend_declaration] = STATE(2302), - [sym_access_specifier] = STATE(10549), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2302), - [sym_alias_declaration] = STATE(2302), - [sym_static_assert_declaration] = STATE(2302), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8121), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(900), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1954), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(4158), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4166), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [909] = { + [sym_function_definition] = STATE(745), + [sym_declaration] = STATE(745), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5929), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2225), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7300), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4050), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_empty_declaration] = STATE(745), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(745), + [sym_operator_cast] = STATE(7747), + [sym_constructor_specifiers] = STATE(1929), + [sym_operator_cast_definition] = STATE(745), + [sym_operator_cast_declaration] = STATE(745), + [sym_constructor_or_destructor_definition] = STATE(745), + [sym_constructor_or_destructor_declaration] = STATE(745), + [sym_friend_declaration] = STATE(745), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_alias_declaration] = STATE(745), + [sym_concept_definition] = STATE(745), + [sym_requires_clause] = STATE(927), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6381), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7747), + [sym_operator_name] = STATE(7305), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1929), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4170), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(4198), + [anon_sym___cdecl] = ACTIONS(53), + [anon_sym___clrcall] = ACTIONS(53), + [anon_sym___stdcall] = ACTIONS(53), + [anon_sym___fastcall] = ACTIONS(53), + [anon_sym___thiscall] = ACTIONS(53), + [anon_sym___vectorcall] = ACTIONS(53), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3265), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -188239,116 +180030,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_union] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(4174), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4368), [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4176), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(4178), - [anon_sym_static_assert] = ACTIONS(4180), + [anon_sym_friend] = ACTIONS(4370), + [anon_sym_using] = ACTIONS(4372), + [anon_sym_concept] = ACTIONS(1168), + [anon_sym_requires] = ACTIONS(4356), }, - [897] = { - [sym_preproc_def] = STATE(2302), - [sym_preproc_function_def] = STATE(2302), - [sym_preproc_call] = STATE(2302), - [sym_preproc_if_in_field_declaration_list] = STATE(2302), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2302), - [sym_type_definition] = STATE(2302), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6923), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7673), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(913), - [sym_field_declaration] = STATE(2302), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2302), - [sym_operator_cast] = STATE(8121), - [sym_inline_method_definition] = STATE(2302), - [sym_constructor_specifiers] = STATE(1954), - [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_friend_declaration] = STATE(2302), - [sym_access_specifier] = STATE(10549), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2302), - [sym_alias_declaration] = STATE(2302), - [sym_static_assert_declaration] = STATE(2302), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8121), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(913), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1954), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(4158), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4166), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [910] = { + [sym_function_definition] = STATE(2024), + [sym_declaration] = STATE(2024), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5903), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2227), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7286), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4041), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_empty_declaration] = STATE(2024), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2024), + [sym_operator_cast] = STATE(7765), + [sym_constructor_specifiers] = STATE(1957), + [sym_operator_cast_definition] = STATE(2024), + [sym_operator_cast_declaration] = STATE(2024), + [sym_constructor_or_destructor_definition] = STATE(2024), + [sym_constructor_or_destructor_declaration] = STATE(2024), + [sym_friend_declaration] = STATE(2024), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_alias_declaration] = STATE(2024), + [sym_concept_definition] = STATE(2024), + [sym_requires_clause] = STATE(945), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6381), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7765), + [sym_operator_name] = STATE(7305), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1957), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4170), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(4200), + [anon_sym___cdecl] = ACTIONS(53), + [anon_sym___clrcall] = ACTIONS(53), + [anon_sym___stdcall] = ACTIONS(53), + [anon_sym___fastcall] = ACTIONS(53), + [anon_sym___thiscall] = ACTIONS(53), + [anon_sym___vectorcall] = ACTIONS(53), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3265), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -188368,116 +180149,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_union] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(4174), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(3279), [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4176), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(4178), - [anon_sym_static_assert] = ACTIONS(4180), + [anon_sym_friend] = ACTIONS(3281), + [anon_sym_using] = ACTIONS(4374), + [anon_sym_concept] = ACTIONS(4376), + [anon_sym_requires] = ACTIONS(4356), }, - [898] = { - [sym_preproc_def] = STATE(2302), - [sym_preproc_function_def] = STATE(2302), - [sym_preproc_call] = STATE(2302), - [sym_preproc_if_in_field_declaration_list] = STATE(2302), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2302), - [sym_type_definition] = STATE(2302), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6923), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7673), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(901), - [sym_field_declaration] = STATE(2302), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2302), - [sym_operator_cast] = STATE(8121), - [sym_inline_method_definition] = STATE(2302), - [sym_constructor_specifiers] = STATE(1954), - [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_friend_declaration] = STATE(2302), - [sym_access_specifier] = STATE(10549), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2302), - [sym_alias_declaration] = STATE(2302), - [sym_static_assert_declaration] = STATE(2302), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8121), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(901), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1954), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(4158), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4166), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [911] = { + [sym_function_definition] = STATE(2102), + [sym_declaration] = STATE(2102), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5907), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2228), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7291), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4065), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_empty_declaration] = STATE(2102), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2102), + [sym_operator_cast] = STATE(7774), + [sym_constructor_specifiers] = STATE(1937), + [sym_operator_cast_definition] = STATE(2102), + [sym_operator_cast_declaration] = STATE(2102), + [sym_constructor_or_destructor_definition] = STATE(2102), + [sym_constructor_or_destructor_declaration] = STATE(2102), + [sym_friend_declaration] = STATE(2102), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_alias_declaration] = STATE(2102), + [sym_concept_definition] = STATE(2102), + [sym_requires_clause] = STATE(940), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6381), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7774), + [sym_operator_name] = STATE(7305), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1937), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4170), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym___cdecl] = ACTIONS(53), + [anon_sym___clrcall] = ACTIONS(53), + [anon_sym___stdcall] = ACTIONS(53), + [anon_sym___fastcall] = ACTIONS(53), + [anon_sym___thiscall] = ACTIONS(53), + [anon_sym___vectorcall] = ACTIONS(53), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3265), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -188497,116 +180268,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_union] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(4174), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(3857), [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4176), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(4178), - [anon_sym_static_assert] = ACTIONS(4180), + [anon_sym_friend] = ACTIONS(3859), + [anon_sym_using] = ACTIONS(4378), + [anon_sym_concept] = ACTIONS(4380), + [anon_sym_requires] = ACTIONS(4356), }, - [899] = { - [sym_preproc_def] = STATE(2302), - [sym_preproc_function_def] = STATE(2302), - [sym_preproc_call] = STATE(2302), - [sym_preproc_if_in_field_declaration_list] = STATE(2302), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2302), - [sym_type_definition] = STATE(2302), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6923), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7673), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(903), - [sym_field_declaration] = STATE(2302), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2302), - [sym_operator_cast] = STATE(8121), - [sym_inline_method_definition] = STATE(2302), - [sym_constructor_specifiers] = STATE(1954), - [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_friend_declaration] = STATE(2302), - [sym_access_specifier] = STATE(10549), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2302), - [sym_alias_declaration] = STATE(2302), - [sym_static_assert_declaration] = STATE(2302), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8121), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(903), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1954), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(4158), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4166), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [912] = { + [sym_function_definition] = STATE(361), + [sym_declaration] = STATE(361), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5889), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2223), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7236), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4055), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_empty_declaration] = STATE(361), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(361), + [sym_operator_cast] = STATE(7706), + [sym_constructor_specifiers] = STATE(1976), + [sym_operator_cast_definition] = STATE(361), + [sym_operator_cast_declaration] = STATE(361), + [sym_constructor_or_destructor_definition] = STATE(361), + [sym_constructor_or_destructor_declaration] = STATE(361), + [sym_friend_declaration] = STATE(361), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_alias_declaration] = STATE(361), + [sym_concept_definition] = STATE(361), + [sym_requires_clause] = STATE(928), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6381), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7706), + [sym_operator_name] = STATE(7305), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1976), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4170), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym___cdecl] = ACTIONS(53), + [anon_sym___clrcall] = ACTIONS(53), + [anon_sym___stdcall] = ACTIONS(53), + [anon_sym___fastcall] = ACTIONS(53), + [anon_sym___thiscall] = ACTIONS(53), + [anon_sym___vectorcall] = ACTIONS(53), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3265), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -188626,245 +180387,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_union] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(4174), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4382), [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4176), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(4178), - [anon_sym_static_assert] = ACTIONS(4180), - }, - [900] = { - [sym_preproc_def] = STATE(2302), - [sym_preproc_function_def] = STATE(2302), - [sym_preproc_call] = STATE(2302), - [sym_preproc_if_in_field_declaration_list] = STATE(2302), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2302), - [sym_type_definition] = STATE(2302), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6923), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7673), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(900), - [sym_field_declaration] = STATE(2302), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2302), - [sym_operator_cast] = STATE(8121), - [sym_inline_method_definition] = STATE(2302), - [sym_constructor_specifiers] = STATE(1954), - [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_friend_declaration] = STATE(2302), - [sym_access_specifier] = STATE(10549), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2302), - [sym_alias_declaration] = STATE(2302), - [sym_static_assert_declaration] = STATE(2302), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8121), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(900), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1954), - [sym_identifier] = ACTIONS(3908), - [aux_sym_preproc_def_token1] = ACTIONS(4206), - [aux_sym_preproc_if_token1] = ACTIONS(4209), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4212), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4215), - [sym_preproc_directive] = ACTIONS(4218), - [anon_sym_LPAREN2] = ACTIONS(3928), - [anon_sym_TILDE] = ACTIONS(3931), - [anon_sym_STAR] = ACTIONS(3934), - [anon_sym_AMP_AMP] = ACTIONS(3937), - [anon_sym_AMP] = ACTIONS(3940), - [anon_sym___extension__] = ACTIONS(4221), - [anon_sym_typedef] = ACTIONS(4224), - [anon_sym_extern] = ACTIONS(3949), - [anon_sym___attribute__] = ACTIONS(3952), - [anon_sym_COLON_COLON] = ACTIONS(3955), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3958), - [anon_sym___declspec] = ACTIONS(3961), - [anon_sym___based] = ACTIONS(3964), - [anon_sym_RBRACE] = ACTIONS(4227), - [anon_sym_signed] = ACTIONS(3967), - [anon_sym_unsigned] = ACTIONS(3967), - [anon_sym_long] = ACTIONS(3967), - [anon_sym_short] = ACTIONS(3967), - [anon_sym_LBRACK] = ACTIONS(3970), - [anon_sym_static] = ACTIONS(3949), - [anon_sym_register] = ACTIONS(3949), - [anon_sym_inline] = ACTIONS(3949), - [anon_sym___inline] = ACTIONS(3949), - [anon_sym___inline__] = ACTIONS(3949), - [anon_sym___forceinline] = ACTIONS(3949), - [anon_sym_thread_local] = ACTIONS(3949), - [anon_sym___thread] = ACTIONS(3949), - [anon_sym_const] = ACTIONS(3973), - [anon_sym_constexpr] = ACTIONS(3973), - [anon_sym_volatile] = ACTIONS(3973), - [anon_sym_restrict] = ACTIONS(3973), - [anon_sym___restrict__] = ACTIONS(3973), - [anon_sym__Atomic] = ACTIONS(3973), - [anon_sym__Noreturn] = ACTIONS(3973), - [anon_sym_noreturn] = ACTIONS(3973), - [anon_sym_mutable] = ACTIONS(3973), - [anon_sym_constinit] = ACTIONS(3973), - [anon_sym_consteval] = ACTIONS(3973), - [sym_primitive_type] = ACTIONS(3976), - [anon_sym_enum] = ACTIONS(3979), - [anon_sym_class] = ACTIONS(3982), - [anon_sym_struct] = ACTIONS(3985), - [anon_sym_union] = ACTIONS(3988), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3991), - [anon_sym_decltype] = ACTIONS(3994), - [anon_sym_virtual] = ACTIONS(3997), - [anon_sym_alignas] = ACTIONS(4000), - [anon_sym_explicit] = ACTIONS(4003), - [anon_sym_typename] = ACTIONS(4006), - [anon_sym_template] = ACTIONS(4229), - [anon_sym_operator] = ACTIONS(4012), - [anon_sym_friend] = ACTIONS(4232), - [anon_sym_public] = ACTIONS(4018), - [anon_sym_private] = ACTIONS(4018), - [anon_sym_protected] = ACTIONS(4018), - [anon_sym_using] = ACTIONS(4235), - [anon_sym_static_assert] = ACTIONS(4238), + [anon_sym_friend] = ACTIONS(4384), + [anon_sym_using] = ACTIONS(4386), + [anon_sym_concept] = ACTIONS(351), + [anon_sym_requires] = ACTIONS(4356), }, - [901] = { - [sym_preproc_def] = STATE(2302), - [sym_preproc_function_def] = STATE(2302), - [sym_preproc_call] = STATE(2302), - [sym_preproc_if_in_field_declaration_list] = STATE(2302), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2302), - [sym_type_definition] = STATE(2302), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6923), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7673), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(900), - [sym_field_declaration] = STATE(2302), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2302), - [sym_operator_cast] = STATE(8121), - [sym_inline_method_definition] = STATE(2302), - [sym_constructor_specifiers] = STATE(1954), - [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_friend_declaration] = STATE(2302), - [sym_access_specifier] = STATE(10549), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2302), - [sym_alias_declaration] = STATE(2302), - [sym_static_assert_declaration] = STATE(2302), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8121), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(900), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1954), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(4158), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4166), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [913] = { + [sym_function_definition] = STATE(502), + [sym_declaration] = STATE(502), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5894), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2224), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7265), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4092), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_empty_declaration] = STATE(502), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(502), + [sym_operator_cast] = STATE(7758), + [sym_constructor_specifiers] = STATE(2006), + [sym_operator_cast_definition] = STATE(502), + [sym_operator_cast_declaration] = STATE(502), + [sym_constructor_or_destructor_definition] = STATE(502), + [sym_constructor_or_destructor_declaration] = STATE(502), + [sym_friend_declaration] = STATE(502), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_alias_declaration] = STATE(502), + [sym_concept_definition] = STATE(502), + [sym_requires_clause] = STATE(921), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6381), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7758), + [sym_operator_name] = STATE(7305), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(2006), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4170), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(4241), + [anon_sym___cdecl] = ACTIONS(53), + [anon_sym___clrcall] = ACTIONS(53), + [anon_sym___stdcall] = ACTIONS(53), + [anon_sym___fastcall] = ACTIONS(53), + [anon_sym___thiscall] = ACTIONS(53), + [anon_sym___vectorcall] = ACTIONS(53), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3265), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -188884,116 +180506,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_union] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(4174), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4388), [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4176), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(4178), - [anon_sym_static_assert] = ACTIONS(4180), + [anon_sym_friend] = ACTIONS(4390), + [anon_sym_using] = ACTIONS(4392), + [anon_sym_concept] = ACTIONS(463), + [anon_sym_requires] = ACTIONS(4356), }, - [902] = { - [sym_preproc_def] = STATE(2302), - [sym_preproc_function_def] = STATE(2302), - [sym_preproc_call] = STATE(2302), - [sym_preproc_if_in_field_declaration_list] = STATE(2302), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2302), - [sym_type_definition] = STATE(2302), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6923), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7673), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(887), - [sym_field_declaration] = STATE(2302), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2302), - [sym_operator_cast] = STATE(8121), - [sym_inline_method_definition] = STATE(2302), - [sym_constructor_specifiers] = STATE(1954), - [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_friend_declaration] = STATE(2302), - [sym_access_specifier] = STATE(10549), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2302), - [sym_alias_declaration] = STATE(2302), - [sym_static_assert_declaration] = STATE(2302), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8121), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(887), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1954), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(4158), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4166), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [914] = { + [sym_function_definition] = STATE(816), + [sym_declaration] = STATE(816), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5909), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2182), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7272), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4095), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_empty_declaration] = STATE(816), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(816), + [sym_operator_cast] = STATE(7739), + [sym_constructor_specifiers] = STATE(1979), + [sym_operator_cast_definition] = STATE(816), + [sym_operator_cast_declaration] = STATE(816), + [sym_constructor_or_destructor_definition] = STATE(816), + [sym_constructor_or_destructor_declaration] = STATE(816), + [sym_friend_declaration] = STATE(816), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_alias_declaration] = STATE(816), + [sym_concept_definition] = STATE(816), + [sym_requires_clause] = STATE(943), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6381), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7739), + [sym_operator_name] = STATE(7305), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1979), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4170), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym___cdecl] = ACTIONS(53), + [anon_sym___clrcall] = ACTIONS(53), + [anon_sym___stdcall] = ACTIONS(53), + [anon_sym___fastcall] = ACTIONS(53), + [anon_sym___thiscall] = ACTIONS(53), + [anon_sym___vectorcall] = ACTIONS(53), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3265), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -189013,116 +180625,456 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_union] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(4174), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4394), [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4176), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(4178), - [anon_sym_static_assert] = ACTIONS(4180), + [anon_sym_friend] = ACTIONS(4396), + [anon_sym_using] = ACTIONS(4398), + [anon_sym_concept] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(4356), }, - [903] = { - [sym_preproc_def] = STATE(2302), - [sym_preproc_function_def] = STATE(2302), - [sym_preproc_call] = STATE(2302), - [sym_preproc_if_in_field_declaration_list] = STATE(2302), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2302), - [sym_type_definition] = STATE(2302), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6923), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7673), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(900), - [sym_field_declaration] = STATE(2302), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2302), - [sym_operator_cast] = STATE(8121), - [sym_inline_method_definition] = STATE(2302), - [sym_constructor_specifiers] = STATE(1954), - [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_friend_declaration] = STATE(2302), - [sym_access_specifier] = STATE(10549), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2302), - [sym_alias_declaration] = STATE(2302), - [sym_static_assert_declaration] = STATE(2302), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8121), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(900), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1954), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(4158), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4166), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [915] = { + [sym_type_qualifier] = STATE(1916), + [sym_expression] = STATE(5370), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_type_definition_type_repeat1] = STATE(1916), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4400), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4404), + [anon_sym_const] = ACTIONS(4402), + [anon_sym_constexpr] = ACTIONS(4402), + [anon_sym_volatile] = ACTIONS(4402), + [anon_sym_restrict] = ACTIONS(4402), + [anon_sym___restrict__] = ACTIONS(4402), + [anon_sym__Atomic] = ACTIONS(4402), + [anon_sym__Noreturn] = ACTIONS(4402), + [anon_sym_noreturn] = ACTIONS(4402), + [anon_sym_mutable] = ACTIONS(4402), + [anon_sym_constinit] = ACTIONS(4402), + [anon_sym_consteval] = ACTIONS(4402), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), + }, + [916] = { + [sym_type_qualifier] = STATE(924), + [sym_expression] = STATE(5469), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_type_definition_type_repeat1] = STATE(924), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4406), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4408), + [anon_sym_const] = ACTIONS(4402), + [anon_sym_constexpr] = ACTIONS(4402), + [anon_sym_volatile] = ACTIONS(4402), + [anon_sym_restrict] = ACTIONS(4402), + [anon_sym___restrict__] = ACTIONS(4402), + [anon_sym__Atomic] = ACTIONS(4402), + [anon_sym__Noreturn] = ACTIONS(4402), + [anon_sym_noreturn] = ACTIONS(4402), + [anon_sym_mutable] = ACTIONS(4402), + [anon_sym_constinit] = ACTIONS(4402), + [anon_sym_consteval] = ACTIONS(4402), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), + }, + [917] = { + [sym_type_qualifier] = STATE(935), + [sym_expression] = STATE(5548), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_type_definition_type_repeat1] = STATE(935), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4410), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4412), + [anon_sym_const] = ACTIONS(4402), + [anon_sym_constexpr] = ACTIONS(4402), + [anon_sym_volatile] = ACTIONS(4402), + [anon_sym_restrict] = ACTIONS(4402), + [anon_sym___restrict__] = ACTIONS(4402), + [anon_sym__Atomic] = ACTIONS(4402), + [anon_sym__Noreturn] = ACTIONS(4402), + [anon_sym_noreturn] = ACTIONS(4402), + [anon_sym_mutable] = ACTIONS(4402), + [anon_sym_constinit] = ACTIONS(4402), + [anon_sym_consteval] = ACTIONS(4402), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), + }, + [918] = { + [sym_function_definition] = STATE(2268), + [sym_declaration] = STATE(2268), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5908), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2229), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7245), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4094), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_empty_declaration] = STATE(2268), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2268), + [sym_operator_cast] = STATE(7705), + [sym_constructor_specifiers] = STATE(1945), + [sym_operator_cast_definition] = STATE(2268), + [sym_operator_cast_declaration] = STATE(2268), + [sym_constructor_or_destructor_definition] = STATE(2268), + [sym_constructor_or_destructor_declaration] = STATE(2268), + [sym_friend_declaration] = STATE(2268), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_alias_declaration] = STATE(2268), + [sym_concept_definition] = STATE(2268), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6381), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7705), + [sym_operator_name] = STATE(7305), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1945), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4170), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(4245), + [anon_sym___cdecl] = ACTIONS(53), + [anon_sym___clrcall] = ACTIONS(53), + [anon_sym___stdcall] = ACTIONS(53), + [anon_sym___fastcall] = ACTIONS(53), + [anon_sym___thiscall] = ACTIONS(53), + [anon_sym___vectorcall] = ACTIONS(53), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3265), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -189142,116 +181094,338 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_union] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(4174), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4087), [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4176), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(4178), - [anon_sym_static_assert] = ACTIONS(4180), + [anon_sym_friend] = ACTIONS(4089), + [anon_sym_using] = ACTIONS(4352), + [anon_sym_concept] = ACTIONS(4354), }, - [904] = { - [sym_preproc_def] = STATE(2302), - [sym_preproc_function_def] = STATE(2302), - [sym_preproc_call] = STATE(2302), - [sym_preproc_if_in_field_declaration_list] = STATE(2302), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2302), - [sym_type_definition] = STATE(2302), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6923), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7673), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(923), - [sym_field_declaration] = STATE(2302), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2302), - [sym_operator_cast] = STATE(8121), - [sym_inline_method_definition] = STATE(2302), - [sym_constructor_specifiers] = STATE(1954), - [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_friend_declaration] = STATE(2302), - [sym_access_specifier] = STATE(10549), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2302), - [sym_alias_declaration] = STATE(2302), - [sym_static_assert_declaration] = STATE(2302), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8121), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(923), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1954), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(4158), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4166), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [919] = { + [sym_identifier] = ACTIONS(4414), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4417), + [anon_sym_LPAREN2] = ACTIONS(4419), + [anon_sym_BANG] = ACTIONS(4417), + [anon_sym_TILDE] = ACTIONS(4419), + [anon_sym_DASH] = ACTIONS(4422), + [anon_sym_PLUS] = ACTIONS(4422), + [anon_sym_STAR] = ACTIONS(4419), + [anon_sym_AMP_AMP] = ACTIONS(4424), + [anon_sym_AMP] = ACTIONS(4414), + [anon_sym_SEMI] = ACTIONS(4417), + [anon_sym___extension__] = ACTIONS(4426), + [anon_sym_extern] = ACTIONS(4426), + [anon_sym___attribute__] = ACTIONS(4426), + [anon_sym_COLON_COLON] = ACTIONS(4419), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4419), + [anon_sym___declspec] = ACTIONS(4426), + [anon_sym___based] = ACTIONS(4426), + [anon_sym_LBRACE] = ACTIONS(4417), + [anon_sym_signed] = ACTIONS(4426), + [anon_sym_unsigned] = ACTIONS(4426), + [anon_sym_long] = ACTIONS(4426), + [anon_sym_short] = ACTIONS(4426), + [anon_sym_LBRACK] = ACTIONS(4414), + [anon_sym_static] = ACTIONS(4426), + [anon_sym_register] = ACTIONS(4426), + [anon_sym_inline] = ACTIONS(4426), + [anon_sym___inline] = ACTIONS(4426), + [anon_sym___inline__] = ACTIONS(4426), + [anon_sym___forceinline] = ACTIONS(4426), + [anon_sym_thread_local] = ACTIONS(4426), + [anon_sym___thread] = ACTIONS(4426), + [anon_sym_const] = ACTIONS(4426), + [anon_sym_constexpr] = ACTIONS(4426), + [anon_sym_volatile] = ACTIONS(4426), + [anon_sym_restrict] = ACTIONS(4426), + [anon_sym___restrict__] = ACTIONS(4426), + [anon_sym__Atomic] = ACTIONS(4426), + [anon_sym__Noreturn] = ACTIONS(4426), + [anon_sym_noreturn] = ACTIONS(4426), + [anon_sym_mutable] = ACTIONS(4426), + [anon_sym_constinit] = ACTIONS(4426), + [anon_sym_consteval] = ACTIONS(4426), + [sym_primitive_type] = ACTIONS(4414), + [anon_sym_enum] = ACTIONS(4426), + [anon_sym_class] = ACTIONS(4426), + [anon_sym_struct] = ACTIONS(4426), + [anon_sym_union] = ACTIONS(4426), + [anon_sym_if] = ACTIONS(4422), + [anon_sym_switch] = ACTIONS(4422), + [anon_sym_case] = ACTIONS(4422), + [anon_sym_default] = ACTIONS(4422), + [anon_sym_while] = ACTIONS(4422), + [anon_sym_do] = ACTIONS(4422), + [anon_sym_for] = ACTIONS(4422), + [anon_sym_return] = ACTIONS(4422), + [anon_sym_break] = ACTIONS(4422), + [anon_sym_continue] = ACTIONS(4422), + [anon_sym_goto] = ACTIONS(4422), + [anon_sym___try] = ACTIONS(4422), + [anon_sym___leave] = ACTIONS(4422), + [anon_sym_not] = ACTIONS(4422), + [anon_sym_compl] = ACTIONS(4422), + [anon_sym_DASH_DASH] = ACTIONS(4417), + [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_sizeof] = ACTIONS(4422), + [anon_sym___alignof__] = ACTIONS(4422), + [anon_sym___alignof] = ACTIONS(4422), + [anon_sym__alignof] = ACTIONS(4422), + [anon_sym_alignof] = ACTIONS(4422), + [anon_sym__Alignof] = ACTIONS(4422), + [anon_sym_offsetof] = ACTIONS(4422), + [anon_sym__Generic] = ACTIONS(4422), + [anon_sym_asm] = ACTIONS(4422), + [anon_sym___asm__] = ACTIONS(4422), + [sym_number_literal] = ACTIONS(4417), + [anon_sym_L_SQUOTE] = ACTIONS(4417), + [anon_sym_u_SQUOTE] = ACTIONS(4417), + [anon_sym_U_SQUOTE] = ACTIONS(4417), + [anon_sym_u8_SQUOTE] = ACTIONS(4417), + [anon_sym_SQUOTE] = ACTIONS(4417), + [anon_sym_L_DQUOTE] = ACTIONS(4417), + [anon_sym_u_DQUOTE] = ACTIONS(4417), + [anon_sym_U_DQUOTE] = ACTIONS(4417), + [anon_sym_u8_DQUOTE] = ACTIONS(4417), + [anon_sym_DQUOTE] = ACTIONS(4417), + [sym_true] = ACTIONS(4422), + [sym_false] = ACTIONS(4422), + [anon_sym_NULL] = ACTIONS(4422), + [anon_sym_nullptr] = ACTIONS(4422), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4426), + [anon_sym_decltype] = ACTIONS(4414), + [anon_sym_virtual] = ACTIONS(4426), + [anon_sym_alignas] = ACTIONS(4426), + [anon_sym_explicit] = ACTIONS(4426), + [anon_sym_typename] = ACTIONS(4426), + [anon_sym_template] = ACTIONS(4414), + [anon_sym_operator] = ACTIONS(4426), + [anon_sym_try] = ACTIONS(4422), + [anon_sym_delete] = ACTIONS(4422), + [anon_sym_throw] = ACTIONS(4422), + [anon_sym_co_return] = ACTIONS(4422), + [anon_sym_co_yield] = ACTIONS(4422), + [anon_sym_R_DQUOTE] = ACTIONS(4417), + [anon_sym_LR_DQUOTE] = ACTIONS(4417), + [anon_sym_uR_DQUOTE] = ACTIONS(4417), + [anon_sym_UR_DQUOTE] = ACTIONS(4417), + [anon_sym_u8R_DQUOTE] = ACTIONS(4417), + [anon_sym_co_await] = ACTIONS(4422), + [anon_sym_new] = ACTIONS(4422), + [anon_sym_requires] = ACTIONS(4422), + [sym_this] = ACTIONS(4422), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4417), + [sym_semgrep_named_ellipsis] = ACTIONS(4417), + }, + [920] = { + [sym_type_qualifier] = STATE(925), + [sym_expression] = STATE(5384), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_type_definition_type_repeat1] = STATE(925), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4428), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4430), + [anon_sym_const] = ACTIONS(4402), + [anon_sym_constexpr] = ACTIONS(4402), + [anon_sym_volatile] = ACTIONS(4402), + [anon_sym_restrict] = ACTIONS(4402), + [anon_sym___restrict__] = ACTIONS(4402), + [anon_sym__Atomic] = ACTIONS(4402), + [anon_sym__Noreturn] = ACTIONS(4402), + [anon_sym_noreturn] = ACTIONS(4402), + [anon_sym_mutable] = ACTIONS(4402), + [anon_sym_constinit] = ACTIONS(4402), + [anon_sym_consteval] = ACTIONS(4402), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), + }, + [921] = { + [sym_function_definition] = STATE(512), + [sym_declaration] = STATE(512), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5894), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2224), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7265), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4092), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_empty_declaration] = STATE(512), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(512), + [sym_operator_cast] = STATE(7758), + [sym_constructor_specifiers] = STATE(2006), + [sym_operator_cast_definition] = STATE(512), + [sym_operator_cast_declaration] = STATE(512), + [sym_constructor_or_destructor_definition] = STATE(512), + [sym_constructor_or_destructor_declaration] = STATE(512), + [sym_friend_declaration] = STATE(512), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_alias_declaration] = STATE(512), + [sym_concept_definition] = STATE(512), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6381), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7758), + [sym_operator_name] = STATE(7305), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(2006), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4170), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(4247), + [anon_sym___cdecl] = ACTIONS(53), + [anon_sym___clrcall] = ACTIONS(53), + [anon_sym___stdcall] = ACTIONS(53), + [anon_sym___fastcall] = ACTIONS(53), + [anon_sym___thiscall] = ACTIONS(53), + [anon_sym___vectorcall] = ACTIONS(53), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3265), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -189271,116 +181445,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_union] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(4174), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4388), [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4176), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(4178), - [anon_sym_static_assert] = ACTIONS(4180), + [anon_sym_friend] = ACTIONS(4390), + [anon_sym_using] = ACTIONS(4392), + [anon_sym_concept] = ACTIONS(463), }, - [905] = { - [sym_preproc_def] = STATE(2302), - [sym_preproc_function_def] = STATE(2302), - [sym_preproc_call] = STATE(2302), - [sym_preproc_if_in_field_declaration_list] = STATE(2302), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2302), - [sym_type_definition] = STATE(2302), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6923), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7673), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(906), - [sym_field_declaration] = STATE(2302), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2302), - [sym_operator_cast] = STATE(8121), - [sym_inline_method_definition] = STATE(2302), - [sym_constructor_specifiers] = STATE(1954), - [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_friend_declaration] = STATE(2302), - [sym_access_specifier] = STATE(10549), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2302), - [sym_alias_declaration] = STATE(2302), - [sym_static_assert_declaration] = STATE(2302), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8121), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(906), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1954), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(4158), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4166), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [922] = { + [sym_function_definition] = STATE(2308), + [sym_declaration] = STATE(2308), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5899), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2226), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7306), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4000), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_empty_declaration] = STATE(2308), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2308), + [sym_operator_cast] = STATE(7731), + [sym_constructor_specifiers] = STATE(1938), + [sym_operator_cast_definition] = STATE(2308), + [sym_operator_cast_declaration] = STATE(2308), + [sym_constructor_or_destructor_definition] = STATE(2308), + [sym_constructor_or_destructor_declaration] = STATE(2308), + [sym_friend_declaration] = STATE(2308), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_alias_declaration] = STATE(2308), + [sym_concept_definition] = STATE(2308), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6381), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7731), + [sym_operator_name] = STATE(7305), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1938), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4170), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(4249), + [anon_sym___cdecl] = ACTIONS(53), + [anon_sym___clrcall] = ACTIONS(53), + [anon_sym___stdcall] = ACTIONS(53), + [anon_sym___fastcall] = ACTIONS(53), + [anon_sym___thiscall] = ACTIONS(53), + [anon_sym___vectorcall] = ACTIONS(53), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3265), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -189400,116 +181562,572 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_union] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(4174), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4059), [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4176), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(4178), - [anon_sym_static_assert] = ACTIONS(4180), + [anon_sym_friend] = ACTIONS(4061), + [anon_sym_using] = ACTIONS(4364), + [anon_sym_concept] = ACTIONS(4366), }, - [906] = { - [sym_preproc_def] = STATE(2302), - [sym_preproc_function_def] = STATE(2302), - [sym_preproc_call] = STATE(2302), - [sym_preproc_if_in_field_declaration_list] = STATE(2302), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2302), - [sym_type_definition] = STATE(2302), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6923), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7673), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(900), - [sym_field_declaration] = STATE(2302), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2302), - [sym_operator_cast] = STATE(8121), - [sym_inline_method_definition] = STATE(2302), - [sym_constructor_specifiers] = STATE(1954), - [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_friend_declaration] = STATE(2302), - [sym_access_specifier] = STATE(10549), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2302), - [sym_alias_declaration] = STATE(2302), - [sym_static_assert_declaration] = STATE(2302), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8121), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(900), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1954), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(4158), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4166), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [923] = { + [sym_type_qualifier] = STATE(930), + [sym_expression] = STATE(5432), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_type_definition_type_repeat1] = STATE(930), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4432), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4434), + [anon_sym_const] = ACTIONS(4402), + [anon_sym_constexpr] = ACTIONS(4402), + [anon_sym_volatile] = ACTIONS(4402), + [anon_sym_restrict] = ACTIONS(4402), + [anon_sym___restrict__] = ACTIONS(4402), + [anon_sym__Atomic] = ACTIONS(4402), + [anon_sym__Noreturn] = ACTIONS(4402), + [anon_sym_noreturn] = ACTIONS(4402), + [anon_sym_mutable] = ACTIONS(4402), + [anon_sym_constinit] = ACTIONS(4402), + [anon_sym_consteval] = ACTIONS(4402), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), + }, + [924] = { + [sym_type_qualifier] = STATE(1916), + [sym_expression] = STATE(5511), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_type_definition_type_repeat1] = STATE(1916), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4436), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4438), + [anon_sym_const] = ACTIONS(4402), + [anon_sym_constexpr] = ACTIONS(4402), + [anon_sym_volatile] = ACTIONS(4402), + [anon_sym_restrict] = ACTIONS(4402), + [anon_sym___restrict__] = ACTIONS(4402), + [anon_sym__Atomic] = ACTIONS(4402), + [anon_sym__Noreturn] = ACTIONS(4402), + [anon_sym_noreturn] = ACTIONS(4402), + [anon_sym_mutable] = ACTIONS(4402), + [anon_sym_constinit] = ACTIONS(4402), + [anon_sym_consteval] = ACTIONS(4402), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), + }, + [925] = { + [sym_type_qualifier] = STATE(1916), + [sym_expression] = STATE(5388), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_type_definition_type_repeat1] = STATE(1916), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4440), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4442), + [anon_sym_const] = ACTIONS(4402), + [anon_sym_constexpr] = ACTIONS(4402), + [anon_sym_volatile] = ACTIONS(4402), + [anon_sym_restrict] = ACTIONS(4402), + [anon_sym___restrict__] = ACTIONS(4402), + [anon_sym__Atomic] = ACTIONS(4402), + [anon_sym__Noreturn] = ACTIONS(4402), + [anon_sym_noreturn] = ACTIONS(4402), + [anon_sym_mutable] = ACTIONS(4402), + [anon_sym_constinit] = ACTIONS(4402), + [anon_sym_consteval] = ACTIONS(4402), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), + }, + [926] = { + [sym_type_qualifier] = STATE(915), + [sym_expression] = STATE(5570), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_type_definition_type_repeat1] = STATE(915), + [sym_identifier] = ACTIONS(4444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4446), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4448), + [anon_sym_const] = ACTIONS(4402), + [anon_sym_constexpr] = ACTIONS(4402), + [anon_sym_volatile] = ACTIONS(4402), + [anon_sym_restrict] = ACTIONS(4402), + [anon_sym___restrict__] = ACTIONS(4402), + [anon_sym__Atomic] = ACTIONS(4402), + [anon_sym__Noreturn] = ACTIONS(4402), + [anon_sym_noreturn] = ACTIONS(4402), + [anon_sym_mutable] = ACTIONS(4402), + [anon_sym_constinit] = ACTIONS(4402), + [anon_sym_consteval] = ACTIONS(4402), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), + }, + [927] = { + [sym_function_definition] = STATE(687), + [sym_declaration] = STATE(687), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5929), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2225), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7300), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4050), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_empty_declaration] = STATE(687), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(687), + [sym_operator_cast] = STATE(7747), + [sym_constructor_specifiers] = STATE(1929), + [sym_operator_cast_definition] = STATE(687), + [sym_operator_cast_declaration] = STATE(687), + [sym_constructor_or_destructor_definition] = STATE(687), + [sym_constructor_or_destructor_declaration] = STATE(687), + [sym_friend_declaration] = STATE(687), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_alias_declaration] = STATE(687), + [sym_concept_definition] = STATE(687), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6381), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7747), + [sym_operator_name] = STATE(7305), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1929), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4170), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(4251), + [anon_sym___cdecl] = ACTIONS(53), + [anon_sym___clrcall] = ACTIONS(53), + [anon_sym___stdcall] = ACTIONS(53), + [anon_sym___fastcall] = ACTIONS(53), + [anon_sym___thiscall] = ACTIONS(53), + [anon_sym___vectorcall] = ACTIONS(53), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3265), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -189529,116 +182147,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_union] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(4174), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4368), [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4176), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(4178), - [anon_sym_static_assert] = ACTIONS(4180), + [anon_sym_friend] = ACTIONS(4370), + [anon_sym_using] = ACTIONS(4372), + [anon_sym_concept] = ACTIONS(1168), }, - [907] = { - [sym_preproc_def] = STATE(2302), - [sym_preproc_function_def] = STATE(2302), - [sym_preproc_call] = STATE(2302), - [sym_preproc_if_in_field_declaration_list] = STATE(2302), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2302), - [sym_type_definition] = STATE(2302), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6923), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7673), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(908), - [sym_field_declaration] = STATE(2302), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2302), - [sym_operator_cast] = STATE(8121), - [sym_inline_method_definition] = STATE(2302), - [sym_constructor_specifiers] = STATE(1954), - [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_friend_declaration] = STATE(2302), - [sym_access_specifier] = STATE(10549), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2302), - [sym_alias_declaration] = STATE(2302), - [sym_static_assert_declaration] = STATE(2302), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8121), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(908), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1954), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(4158), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4166), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [928] = { + [sym_function_definition] = STATE(399), + [sym_declaration] = STATE(399), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5889), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2223), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7236), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4055), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_empty_declaration] = STATE(399), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(399), + [sym_operator_cast] = STATE(7706), + [sym_constructor_specifiers] = STATE(1976), + [sym_operator_cast_definition] = STATE(399), + [sym_operator_cast_declaration] = STATE(399), + [sym_constructor_or_destructor_definition] = STATE(399), + [sym_constructor_or_destructor_declaration] = STATE(399), + [sym_friend_declaration] = STATE(399), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_alias_declaration] = STATE(399), + [sym_concept_definition] = STATE(399), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6381), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7706), + [sym_operator_name] = STATE(7305), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1976), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4170), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(4253), + [anon_sym___cdecl] = ACTIONS(53), + [anon_sym___clrcall] = ACTIONS(53), + [anon_sym___stdcall] = ACTIONS(53), + [anon_sym___fastcall] = ACTIONS(53), + [anon_sym___thiscall] = ACTIONS(53), + [anon_sym___vectorcall] = ACTIONS(53), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3265), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -189658,371 +182264,335 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_union] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(4174), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4382), [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4176), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(4178), - [anon_sym_static_assert] = ACTIONS(4180), + [anon_sym_friend] = ACTIONS(4384), + [anon_sym_using] = ACTIONS(4386), + [anon_sym_concept] = ACTIONS(351), }, - [908] = { - [sym_preproc_def] = STATE(2302), - [sym_preproc_function_def] = STATE(2302), - [sym_preproc_call] = STATE(2302), - [sym_preproc_if_in_field_declaration_list] = STATE(2302), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2302), - [sym_type_definition] = STATE(2302), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6923), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7673), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(900), - [sym_field_declaration] = STATE(2302), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2302), - [sym_operator_cast] = STATE(8121), - [sym_inline_method_definition] = STATE(2302), - [sym_constructor_specifiers] = STATE(1954), - [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_friend_declaration] = STATE(2302), - [sym_access_specifier] = STATE(10549), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2302), - [sym_alias_declaration] = STATE(2302), - [sym_static_assert_declaration] = STATE(2302), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8121), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(900), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1954), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(4158), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4166), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4170), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(4255), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [929] = { + [sym_type_qualifier] = STATE(1916), + [sym_expression] = STATE(5392), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_type_definition_type_repeat1] = STATE(1916), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4450), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4452), + [anon_sym_const] = ACTIONS(4402), + [anon_sym_constexpr] = ACTIONS(4402), + [anon_sym_volatile] = ACTIONS(4402), + [anon_sym_restrict] = ACTIONS(4402), + [anon_sym___restrict__] = ACTIONS(4402), + [anon_sym__Atomic] = ACTIONS(4402), + [anon_sym__Noreturn] = ACTIONS(4402), + [anon_sym_noreturn] = ACTIONS(4402), + [anon_sym_mutable] = ACTIONS(4402), + [anon_sym_constinit] = ACTIONS(4402), + [anon_sym_consteval] = ACTIONS(4402), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(4174), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4176), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(4178), - [anon_sym_static_assert] = ACTIONS(4180), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [909] = { - [sym_preproc_def] = STATE(2302), - [sym_preproc_function_def] = STATE(2302), - [sym_preproc_call] = STATE(2302), - [sym_preproc_if_in_field_declaration_list] = STATE(2302), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2302), - [sym_type_definition] = STATE(2302), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6923), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7673), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(900), - [sym_field_declaration] = STATE(2302), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2302), - [sym_operator_cast] = STATE(8121), - [sym_inline_method_definition] = STATE(2302), - [sym_constructor_specifiers] = STATE(1954), - [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_friend_declaration] = STATE(2302), - [sym_access_specifier] = STATE(10549), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2302), - [sym_alias_declaration] = STATE(2302), - [sym_static_assert_declaration] = STATE(2302), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8121), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(900), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1954), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(4158), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4166), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4170), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(4257), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [930] = { + [sym_type_qualifier] = STATE(1916), + [sym_expression] = STATE(5433), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_type_definition_type_repeat1] = STATE(1916), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4454), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4456), + [anon_sym_const] = ACTIONS(4402), + [anon_sym_constexpr] = ACTIONS(4402), + [anon_sym_volatile] = ACTIONS(4402), + [anon_sym_restrict] = ACTIONS(4402), + [anon_sym___restrict__] = ACTIONS(4402), + [anon_sym__Atomic] = ACTIONS(4402), + [anon_sym__Noreturn] = ACTIONS(4402), + [anon_sym_noreturn] = ACTIONS(4402), + [anon_sym_mutable] = ACTIONS(4402), + [anon_sym_constinit] = ACTIONS(4402), + [anon_sym_consteval] = ACTIONS(4402), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(4174), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4176), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(4178), - [anon_sym_static_assert] = ACTIONS(4180), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [910] = { - [sym_expression] = STATE(6091), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_COMMA] = ACTIONS(4259), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_SLASH] = ACTIONS(4261), - [anon_sym_PERCENT] = ACTIONS(4259), - [anon_sym_PIPE_PIPE] = ACTIONS(4259), - [anon_sym_AMP_AMP] = ACTIONS(4259), - [anon_sym_PIPE] = ACTIONS(4261), - [anon_sym_CARET] = ACTIONS(4259), - [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_EQ_EQ] = ACTIONS(4259), - [anon_sym_BANG_EQ] = ACTIONS(4259), - [anon_sym_GT] = ACTIONS(4261), - [anon_sym_GT_EQ] = ACTIONS(4259), - [anon_sym_LT_EQ] = ACTIONS(4261), - [anon_sym_LT] = ACTIONS(4261), - [anon_sym_LT_LT] = ACTIONS(4259), - [anon_sym_GT_GT] = ACTIONS(4259), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4259), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_QMARK] = ACTIONS(4259), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_LT_EQ_GT] = ACTIONS(4259), - [anon_sym_or] = ACTIONS(4261), - [anon_sym_and] = ACTIONS(4261), - [anon_sym_bitor] = ACTIONS(4261), - [anon_sym_xor] = ACTIONS(4261), - [anon_sym_bitand] = ACTIONS(4261), - [anon_sym_not_eq] = ACTIONS(4261), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [931] = { + [sym_type_qualifier] = STATE(1916), + [sym_expression] = STATE(5393), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_type_definition_type_repeat1] = STATE(1916), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4458), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4460), + [anon_sym_const] = ACTIONS(4402), + [anon_sym_constexpr] = ACTIONS(4402), + [anon_sym_volatile] = ACTIONS(4402), + [anon_sym_restrict] = ACTIONS(4402), + [anon_sym___restrict__] = ACTIONS(4402), + [anon_sym__Atomic] = ACTIONS(4402), + [anon_sym__Noreturn] = ACTIONS(4402), + [anon_sym_noreturn] = ACTIONS(4402), + [anon_sym_mutable] = ACTIONS(4402), + [anon_sym_constinit] = ACTIONS(4402), + [anon_sym_consteval] = ACTIONS(4402), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -190032,9 +182602,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(4261), - [anon_sym_DOT_STAR] = ACTIONS(4259), - [anon_sym_DASH_GT] = ACTIONS(4259), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -190052,1141 +182619,1036 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [911] = { - [sym_preproc_def] = STATE(2438), - [sym_preproc_function_def] = STATE(2438), - [sym_preproc_call] = STATE(2438), - [sym_preproc_if_in_field_declaration_list] = STATE(2438), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2438), - [sym_type_definition] = STATE(2438), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6877), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7614), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(918), - [sym_field_declaration] = STATE(2438), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2438), - [sym_operator_cast] = STATE(8076), - [sym_inline_method_definition] = STATE(2438), - [sym_constructor_specifiers] = STATE(1947), - [sym_operator_cast_definition] = STATE(2438), - [sym_operator_cast_declaration] = STATE(2438), - [sym_constructor_or_destructor_definition] = STATE(2438), - [sym_constructor_or_destructor_declaration] = STATE(2438), - [sym_friend_declaration] = STATE(2438), - [sym_access_specifier] = STATE(10170), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2438), - [sym_alias_declaration] = STATE(2438), - [sym_static_assert_declaration] = STATE(2438), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8076), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(918), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1947), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(4263), - [aux_sym_preproc_if_token1] = ACTIONS(4265), - [aux_sym_preproc_if_token2] = ACTIONS(4267), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), - [sym_preproc_directive] = ACTIONS(4273), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(4275), - [anon_sym_typedef] = ACTIONS(4277), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [932] = { + [sym_type_qualifier] = STATE(942), + [sym_expression] = STATE(5371), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_type_definition_type_repeat1] = STATE(942), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4462), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4464), + [anon_sym_const] = ACTIONS(4402), + [anon_sym_constexpr] = ACTIONS(4402), + [anon_sym_volatile] = ACTIONS(4402), + [anon_sym_restrict] = ACTIONS(4402), + [anon_sym___restrict__] = ACTIONS(4402), + [anon_sym__Atomic] = ACTIONS(4402), + [anon_sym__Noreturn] = ACTIONS(4402), + [anon_sym_noreturn] = ACTIONS(4402), + [anon_sym_mutable] = ACTIONS(4402), + [anon_sym_constinit] = ACTIONS(4402), + [anon_sym_consteval] = ACTIONS(4402), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(4279), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4281), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(4283), - [anon_sym_static_assert] = ACTIONS(4285), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [912] = { - [sym_preproc_def] = STATE(2302), - [sym_preproc_function_def] = STATE(2302), - [sym_preproc_call] = STATE(2302), - [sym_preproc_if_in_field_declaration_list] = STATE(2302), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2302), - [sym_type_definition] = STATE(2302), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6923), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7673), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(914), - [sym_field_declaration] = STATE(2302), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2302), - [sym_operator_cast] = STATE(8121), - [sym_inline_method_definition] = STATE(2302), - [sym_constructor_specifiers] = STATE(1954), - [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_friend_declaration] = STATE(2302), - [sym_access_specifier] = STATE(10549), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2302), - [sym_alias_declaration] = STATE(2302), - [sym_static_assert_declaration] = STATE(2302), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8121), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(914), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1954), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(4158), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4166), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4170), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(4287), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [933] = { + [sym_type_qualifier] = STATE(938), + [sym_expression] = STATE(5468), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_type_definition_type_repeat1] = STATE(938), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4466), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4468), + [anon_sym_const] = ACTIONS(4402), + [anon_sym_constexpr] = ACTIONS(4402), + [anon_sym_volatile] = ACTIONS(4402), + [anon_sym_restrict] = ACTIONS(4402), + [anon_sym___restrict__] = ACTIONS(4402), + [anon_sym__Atomic] = ACTIONS(4402), + [anon_sym__Noreturn] = ACTIONS(4402), + [anon_sym_noreturn] = ACTIONS(4402), + [anon_sym_mutable] = ACTIONS(4402), + [anon_sym_constinit] = ACTIONS(4402), + [anon_sym_consteval] = ACTIONS(4402), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(4174), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4176), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(4178), - [anon_sym_static_assert] = ACTIONS(4180), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [913] = { - [sym_preproc_def] = STATE(2302), - [sym_preproc_function_def] = STATE(2302), - [sym_preproc_call] = STATE(2302), - [sym_preproc_if_in_field_declaration_list] = STATE(2302), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2302), - [sym_type_definition] = STATE(2302), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6923), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7673), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(900), - [sym_field_declaration] = STATE(2302), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2302), - [sym_operator_cast] = STATE(8121), - [sym_inline_method_definition] = STATE(2302), - [sym_constructor_specifiers] = STATE(1954), - [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_friend_declaration] = STATE(2302), - [sym_access_specifier] = STATE(10549), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2302), - [sym_alias_declaration] = STATE(2302), - [sym_static_assert_declaration] = STATE(2302), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8121), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(900), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1954), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(4158), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4166), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4170), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [934] = { + [sym_type_qualifier] = STATE(931), + [sym_expression] = STATE(5391), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_type_definition_type_repeat1] = STATE(931), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4470), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4472), + [anon_sym_const] = ACTIONS(4402), + [anon_sym_constexpr] = ACTIONS(4402), + [anon_sym_volatile] = ACTIONS(4402), + [anon_sym_restrict] = ACTIONS(4402), + [anon_sym___restrict__] = ACTIONS(4402), + [anon_sym__Atomic] = ACTIONS(4402), + [anon_sym__Noreturn] = ACTIONS(4402), + [anon_sym_noreturn] = ACTIONS(4402), + [anon_sym_mutable] = ACTIONS(4402), + [anon_sym_constinit] = ACTIONS(4402), + [anon_sym_consteval] = ACTIONS(4402), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(4174), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4176), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(4178), - [anon_sym_static_assert] = ACTIONS(4180), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [914] = { - [sym_preproc_def] = STATE(2302), - [sym_preproc_function_def] = STATE(2302), - [sym_preproc_call] = STATE(2302), - [sym_preproc_if_in_field_declaration_list] = STATE(2302), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2302), - [sym_type_definition] = STATE(2302), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6923), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7673), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(900), - [sym_field_declaration] = STATE(2302), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2302), - [sym_operator_cast] = STATE(8121), - [sym_inline_method_definition] = STATE(2302), - [sym_constructor_specifiers] = STATE(1954), - [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_friend_declaration] = STATE(2302), - [sym_access_specifier] = STATE(10549), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2302), - [sym_alias_declaration] = STATE(2302), - [sym_static_assert_declaration] = STATE(2302), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8121), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(900), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1954), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(4158), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4166), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4170), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(4291), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [935] = { + [sym_type_qualifier] = STATE(1916), + [sym_expression] = STATE(5369), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_type_definition_type_repeat1] = STATE(1916), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4474), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4476), + [anon_sym_const] = ACTIONS(4402), + [anon_sym_constexpr] = ACTIONS(4402), + [anon_sym_volatile] = ACTIONS(4402), + [anon_sym_restrict] = ACTIONS(4402), + [anon_sym___restrict__] = ACTIONS(4402), + [anon_sym__Atomic] = ACTIONS(4402), + [anon_sym__Noreturn] = ACTIONS(4402), + [anon_sym_noreturn] = ACTIONS(4402), + [anon_sym_mutable] = ACTIONS(4402), + [anon_sym_constinit] = ACTIONS(4402), + [anon_sym_consteval] = ACTIONS(4402), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(4174), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4176), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(4178), - [anon_sym_static_assert] = ACTIONS(4180), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [915] = { - [sym_preproc_def] = STATE(2302), - [sym_preproc_function_def] = STATE(2302), - [sym_preproc_call] = STATE(2302), - [sym_preproc_if_in_field_declaration_list] = STATE(2302), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2302), - [sym_type_definition] = STATE(2302), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6923), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7673), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(909), - [sym_field_declaration] = STATE(2302), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2302), - [sym_operator_cast] = STATE(8121), - [sym_inline_method_definition] = STATE(2302), - [sym_constructor_specifiers] = STATE(1954), - [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_friend_declaration] = STATE(2302), - [sym_access_specifier] = STATE(10549), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2302), - [sym_alias_declaration] = STATE(2302), - [sym_static_assert_declaration] = STATE(2302), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8121), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(909), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1954), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(4158), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4166), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4170), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(4293), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [936] = { + [sym_type_qualifier] = STATE(946), + [sym_expression] = STATE(5408), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_type_definition_type_repeat1] = STATE(946), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4478), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4480), + [anon_sym_const] = ACTIONS(4402), + [anon_sym_constexpr] = ACTIONS(4402), + [anon_sym_volatile] = ACTIONS(4402), + [anon_sym_restrict] = ACTIONS(4402), + [anon_sym___restrict__] = ACTIONS(4402), + [anon_sym__Atomic] = ACTIONS(4402), + [anon_sym__Noreturn] = ACTIONS(4402), + [anon_sym_noreturn] = ACTIONS(4402), + [anon_sym_mutable] = ACTIONS(4402), + [anon_sym_constinit] = ACTIONS(4402), + [anon_sym_consteval] = ACTIONS(4402), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(4174), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4176), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(4178), - [anon_sym_static_assert] = ACTIONS(4180), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [916] = { - [sym_preproc_def] = STATE(2302), - [sym_preproc_function_def] = STATE(2302), - [sym_preproc_call] = STATE(2302), - [sym_preproc_if_in_field_declaration_list] = STATE(2302), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2302), - [sym_type_definition] = STATE(2302), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6923), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7673), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(920), - [sym_field_declaration] = STATE(2302), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2302), - [sym_operator_cast] = STATE(8121), - [sym_inline_method_definition] = STATE(2302), - [sym_constructor_specifiers] = STATE(1954), - [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_friend_declaration] = STATE(2302), - [sym_access_specifier] = STATE(10549), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2302), - [sym_alias_declaration] = STATE(2302), - [sym_static_assert_declaration] = STATE(2302), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8121), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(920), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1954), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(4158), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4166), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4170), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(4295), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [937] = { + [sym_type_qualifier] = STATE(915), + [sym_expression] = STATE(5570), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_type_definition_type_repeat1] = STATE(915), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4446), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4448), + [anon_sym_const] = ACTIONS(4402), + [anon_sym_constexpr] = ACTIONS(4402), + [anon_sym_volatile] = ACTIONS(4402), + [anon_sym_restrict] = ACTIONS(4402), + [anon_sym___restrict__] = ACTIONS(4402), + [anon_sym__Atomic] = ACTIONS(4402), + [anon_sym__Noreturn] = ACTIONS(4402), + [anon_sym_noreturn] = ACTIONS(4402), + [anon_sym_mutable] = ACTIONS(4402), + [anon_sym_constinit] = ACTIONS(4402), + [anon_sym_consteval] = ACTIONS(4402), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(4174), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4176), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(4178), - [anon_sym_static_assert] = ACTIONS(4180), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [917] = { - [sym_preproc_def] = STATE(2438), - [sym_preproc_function_def] = STATE(2438), - [sym_preproc_call] = STATE(2438), - [sym_preproc_if_in_field_declaration_list] = STATE(2438), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2438), - [sym_type_definition] = STATE(2438), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6877), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7614), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(917), - [sym_field_declaration] = STATE(2438), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2438), - [sym_operator_cast] = STATE(8076), - [sym_inline_method_definition] = STATE(2438), - [sym_constructor_specifiers] = STATE(1947), - [sym_operator_cast_definition] = STATE(2438), - [sym_operator_cast_declaration] = STATE(2438), - [sym_constructor_or_destructor_definition] = STATE(2438), - [sym_constructor_or_destructor_declaration] = STATE(2438), - [sym_friend_declaration] = STATE(2438), - [sym_access_specifier] = STATE(10170), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2438), - [sym_alias_declaration] = STATE(2438), - [sym_static_assert_declaration] = STATE(2438), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8076), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(917), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1947), - [sym_identifier] = ACTIONS(3908), - [aux_sym_preproc_def_token1] = ACTIONS(4297), - [aux_sym_preproc_if_token1] = ACTIONS(4300), - [aux_sym_preproc_if_token2] = ACTIONS(3917), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4303), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4306), - [sym_preproc_directive] = ACTIONS(4309), - [anon_sym_LPAREN2] = ACTIONS(3928), - [anon_sym_TILDE] = ACTIONS(3931), - [anon_sym_STAR] = ACTIONS(3934), - [anon_sym_AMP_AMP] = ACTIONS(3937), - [anon_sym_AMP] = ACTIONS(3940), - [anon_sym___extension__] = ACTIONS(4312), - [anon_sym_typedef] = ACTIONS(4315), - [anon_sym_extern] = ACTIONS(3949), - [anon_sym___attribute__] = ACTIONS(3952), - [anon_sym_COLON_COLON] = ACTIONS(3955), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3958), - [anon_sym___declspec] = ACTIONS(3961), - [anon_sym___based] = ACTIONS(3964), - [anon_sym_signed] = ACTIONS(3967), - [anon_sym_unsigned] = ACTIONS(3967), - [anon_sym_long] = ACTIONS(3967), - [anon_sym_short] = ACTIONS(3967), - [anon_sym_LBRACK] = ACTIONS(3970), - [anon_sym_static] = ACTIONS(3949), - [anon_sym_register] = ACTIONS(3949), - [anon_sym_inline] = ACTIONS(3949), - [anon_sym___inline] = ACTIONS(3949), - [anon_sym___inline__] = ACTIONS(3949), - [anon_sym___forceinline] = ACTIONS(3949), - [anon_sym_thread_local] = ACTIONS(3949), - [anon_sym___thread] = ACTIONS(3949), - [anon_sym_const] = ACTIONS(3973), - [anon_sym_constexpr] = ACTIONS(3973), - [anon_sym_volatile] = ACTIONS(3973), - [anon_sym_restrict] = ACTIONS(3973), - [anon_sym___restrict__] = ACTIONS(3973), - [anon_sym__Atomic] = ACTIONS(3973), - [anon_sym__Noreturn] = ACTIONS(3973), - [anon_sym_noreturn] = ACTIONS(3973), - [anon_sym_mutable] = ACTIONS(3973), - [anon_sym_constinit] = ACTIONS(3973), - [anon_sym_consteval] = ACTIONS(3973), - [sym_primitive_type] = ACTIONS(3976), - [anon_sym_enum] = ACTIONS(3979), - [anon_sym_class] = ACTIONS(3982), - [anon_sym_struct] = ACTIONS(3985), - [anon_sym_union] = ACTIONS(3988), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3991), - [anon_sym_decltype] = ACTIONS(3994), - [anon_sym_virtual] = ACTIONS(3997), - [anon_sym_alignas] = ACTIONS(4000), - [anon_sym_explicit] = ACTIONS(4003), - [anon_sym_typename] = ACTIONS(4006), - [anon_sym_template] = ACTIONS(4318), - [anon_sym_operator] = ACTIONS(4012), - [anon_sym_friend] = ACTIONS(4321), - [anon_sym_public] = ACTIONS(4018), - [anon_sym_private] = ACTIONS(4018), - [anon_sym_protected] = ACTIONS(4018), - [anon_sym_using] = ACTIONS(4324), - [anon_sym_static_assert] = ACTIONS(4327), + [938] = { + [sym_type_qualifier] = STATE(1916), + [sym_expression] = STATE(5470), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_type_definition_type_repeat1] = STATE(1916), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4482), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4484), + [anon_sym_const] = ACTIONS(4402), + [anon_sym_constexpr] = ACTIONS(4402), + [anon_sym_volatile] = ACTIONS(4402), + [anon_sym_restrict] = ACTIONS(4402), + [anon_sym___restrict__] = ACTIONS(4402), + [anon_sym__Atomic] = ACTIONS(4402), + [anon_sym__Noreturn] = ACTIONS(4402), + [anon_sym_noreturn] = ACTIONS(4402), + [anon_sym_mutable] = ACTIONS(4402), + [anon_sym_constinit] = ACTIONS(4402), + [anon_sym_consteval] = ACTIONS(4402), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [918] = { - [sym_preproc_def] = STATE(2438), - [sym_preproc_function_def] = STATE(2438), - [sym_preproc_call] = STATE(2438), - [sym_preproc_if_in_field_declaration_list] = STATE(2438), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2438), - [sym_type_definition] = STATE(2438), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6877), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7614), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(917), - [sym_field_declaration] = STATE(2438), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2438), - [sym_operator_cast] = STATE(8076), - [sym_inline_method_definition] = STATE(2438), - [sym_constructor_specifiers] = STATE(1947), - [sym_operator_cast_definition] = STATE(2438), - [sym_operator_cast_declaration] = STATE(2438), - [sym_constructor_or_destructor_definition] = STATE(2438), - [sym_constructor_or_destructor_declaration] = STATE(2438), - [sym_friend_declaration] = STATE(2438), - [sym_access_specifier] = STATE(10170), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2438), - [sym_alias_declaration] = STATE(2438), - [sym_static_assert_declaration] = STATE(2438), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8076), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(917), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1947), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(4263), - [aux_sym_preproc_if_token1] = ACTIONS(4265), - [aux_sym_preproc_if_token2] = ACTIONS(4330), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), - [sym_preproc_directive] = ACTIONS(4273), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(4275), - [anon_sym_typedef] = ACTIONS(4277), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [939] = { + [sym_type_qualifier] = STATE(941), + [sym_expression] = STATE(5449), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_type_definition_type_repeat1] = STATE(941), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4486), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4488), + [anon_sym_const] = ACTIONS(4402), + [anon_sym_constexpr] = ACTIONS(4402), + [anon_sym_volatile] = ACTIONS(4402), + [anon_sym_restrict] = ACTIONS(4402), + [anon_sym___restrict__] = ACTIONS(4402), + [anon_sym__Atomic] = ACTIONS(4402), + [anon_sym__Noreturn] = ACTIONS(4402), + [anon_sym_noreturn] = ACTIONS(4402), + [anon_sym_mutable] = ACTIONS(4402), + [anon_sym_constinit] = ACTIONS(4402), + [anon_sym_consteval] = ACTIONS(4402), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(4279), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4281), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(4283), - [anon_sym_static_assert] = ACTIONS(4285), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [919] = { - [sym_preproc_def] = STATE(2302), - [sym_preproc_function_def] = STATE(2302), - [sym_preproc_call] = STATE(2302), - [sym_preproc_if_in_field_declaration_list] = STATE(2302), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2302), - [sym_type_definition] = STATE(2302), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6923), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7673), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(900), - [sym_field_declaration] = STATE(2302), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2302), - [sym_operator_cast] = STATE(8121), - [sym_inline_method_definition] = STATE(2302), - [sym_constructor_specifiers] = STATE(1954), - [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_friend_declaration] = STATE(2302), - [sym_access_specifier] = STATE(10549), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2302), - [sym_alias_declaration] = STATE(2302), - [sym_static_assert_declaration] = STATE(2302), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8121), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(900), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1954), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(4158), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4166), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [940] = { + [sym_function_definition] = STATE(2153), + [sym_declaration] = STATE(2153), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5907), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2228), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7291), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4065), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_empty_declaration] = STATE(2153), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(2153), + [sym_operator_cast] = STATE(7774), + [sym_constructor_specifiers] = STATE(1937), + [sym_operator_cast_definition] = STATE(2153), + [sym_operator_cast_declaration] = STATE(2153), + [sym_constructor_or_destructor_definition] = STATE(2153), + [sym_constructor_or_destructor_declaration] = STATE(2153), + [sym_friend_declaration] = STATE(2153), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_alias_declaration] = STATE(2153), + [sym_concept_definition] = STATE(2153), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6381), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7774), + [sym_operator_name] = STATE(7305), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1937), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4170), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(4332), + [anon_sym___cdecl] = ACTIONS(53), + [anon_sym___clrcall] = ACTIONS(53), + [anon_sym___stdcall] = ACTIONS(53), + [anon_sym___fastcall] = ACTIONS(53), + [anon_sym___thiscall] = ACTIONS(53), + [anon_sym___vectorcall] = ACTIONS(53), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3265), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -191206,245 +183668,338 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_union] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(4174), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(3857), [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4176), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(4178), - [anon_sym_static_assert] = ACTIONS(4180), + [anon_sym_friend] = ACTIONS(3859), + [anon_sym_using] = ACTIONS(4378), + [anon_sym_concept] = ACTIONS(4380), }, - [920] = { - [sym_preproc_def] = STATE(2302), - [sym_preproc_function_def] = STATE(2302), - [sym_preproc_call] = STATE(2302), - [sym_preproc_if_in_field_declaration_list] = STATE(2302), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2302), - [sym_type_definition] = STATE(2302), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6923), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7673), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(900), - [sym_field_declaration] = STATE(2302), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2302), - [sym_operator_cast] = STATE(8121), - [sym_inline_method_definition] = STATE(2302), - [sym_constructor_specifiers] = STATE(1954), - [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_friend_declaration] = STATE(2302), - [sym_access_specifier] = STATE(10549), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2302), - [sym_alias_declaration] = STATE(2302), - [sym_static_assert_declaration] = STATE(2302), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8121), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(900), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1954), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(4158), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4166), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4170), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(4334), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [941] = { + [sym_type_qualifier] = STATE(1916), + [sym_expression] = STATE(5450), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_type_definition_type_repeat1] = STATE(1916), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4490), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4492), + [anon_sym_const] = ACTIONS(4402), + [anon_sym_constexpr] = ACTIONS(4402), + [anon_sym_volatile] = ACTIONS(4402), + [anon_sym_restrict] = ACTIONS(4402), + [anon_sym___restrict__] = ACTIONS(4402), + [anon_sym__Atomic] = ACTIONS(4402), + [anon_sym__Noreturn] = ACTIONS(4402), + [anon_sym_noreturn] = ACTIONS(4402), + [anon_sym_mutable] = ACTIONS(4402), + [anon_sym_constinit] = ACTIONS(4402), + [anon_sym_consteval] = ACTIONS(4402), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(4174), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4176), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(4178), - [anon_sym_static_assert] = ACTIONS(4180), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [921] = { - [sym_preproc_def] = STATE(2302), - [sym_preproc_function_def] = STATE(2302), - [sym_preproc_call] = STATE(2302), - [sym_preproc_if_in_field_declaration_list] = STATE(2302), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2302), - [sym_type_definition] = STATE(2302), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6923), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7673), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(919), - [sym_field_declaration] = STATE(2302), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2302), - [sym_operator_cast] = STATE(8121), - [sym_inline_method_definition] = STATE(2302), - [sym_constructor_specifiers] = STATE(1954), - [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_friend_declaration] = STATE(2302), - [sym_access_specifier] = STATE(10549), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2302), - [sym_alias_declaration] = STATE(2302), - [sym_static_assert_declaration] = STATE(2302), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8121), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(919), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1954), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(4158), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4166), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [942] = { + [sym_type_qualifier] = STATE(1916), + [sym_expression] = STATE(5434), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_type_definition_type_repeat1] = STATE(1916), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4494), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4496), + [anon_sym_const] = ACTIONS(4402), + [anon_sym_constexpr] = ACTIONS(4402), + [anon_sym_volatile] = ACTIONS(4402), + [anon_sym_restrict] = ACTIONS(4402), + [anon_sym___restrict__] = ACTIONS(4402), + [anon_sym__Atomic] = ACTIONS(4402), + [anon_sym__Noreturn] = ACTIONS(4402), + [anon_sym_noreturn] = ACTIONS(4402), + [anon_sym_mutable] = ACTIONS(4402), + [anon_sym_constinit] = ACTIONS(4402), + [anon_sym_consteval] = ACTIONS(4402), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), + }, + [943] = { + [sym_function_definition] = STATE(878), + [sym_declaration] = STATE(878), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5909), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2182), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7272), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4095), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_empty_declaration] = STATE(878), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(878), + [sym_operator_cast] = STATE(7739), + [sym_constructor_specifiers] = STATE(1979), + [sym_operator_cast_definition] = STATE(878), + [sym_operator_cast_declaration] = STATE(878), + [sym_constructor_or_destructor_definition] = STATE(878), + [sym_constructor_or_destructor_declaration] = STATE(878), + [sym_friend_declaration] = STATE(878), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_alias_declaration] = STATE(878), + [sym_concept_definition] = STATE(878), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6381), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7739), + [sym_operator_name] = STATE(7305), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1979), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4170), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(4336), + [anon_sym___cdecl] = ACTIONS(53), + [anon_sym___clrcall] = ACTIONS(53), + [anon_sym___stdcall] = ACTIONS(53), + [anon_sym___fastcall] = ACTIONS(53), + [anon_sym___thiscall] = ACTIONS(53), + [anon_sym___vectorcall] = ACTIONS(53), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3265), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -191464,116 +184019,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_union] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(4174), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4394), [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4176), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(4178), - [anon_sym_static_assert] = ACTIONS(4180), + [anon_sym_friend] = ACTIONS(4396), + [anon_sym_using] = ACTIONS(4398), + [anon_sym_concept] = ACTIONS(149), }, - [922] = { - [sym_preproc_def] = STATE(2302), - [sym_preproc_function_def] = STATE(2302), - [sym_preproc_call] = STATE(2302), - [sym_preproc_if_in_field_declaration_list] = STATE(2302), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2302), - [sym_type_definition] = STATE(2302), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6923), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7673), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(891), - [sym_field_declaration] = STATE(2302), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2302), - [sym_operator_cast] = STATE(8121), - [sym_inline_method_definition] = STATE(2302), - [sym_constructor_specifiers] = STATE(1954), - [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_friend_declaration] = STATE(2302), - [sym_access_specifier] = STATE(10549), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2302), - [sym_alias_declaration] = STATE(2302), - [sym_static_assert_declaration] = STATE(2302), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8121), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(891), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1954), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(4158), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4166), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [944] = { + [sym_type_qualifier] = STATE(1916), + [sym_expression] = STATE(5440), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_type_definition_type_repeat1] = STATE(1916), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4498), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4500), + [anon_sym_const] = ACTIONS(4402), + [anon_sym_constexpr] = ACTIONS(4402), + [anon_sym_volatile] = ACTIONS(4402), + [anon_sym_restrict] = ACTIONS(4402), + [anon_sym___restrict__] = ACTIONS(4402), + [anon_sym__Atomic] = ACTIONS(4402), + [anon_sym__Noreturn] = ACTIONS(4402), + [anon_sym_noreturn] = ACTIONS(4402), + [anon_sym_mutable] = ACTIONS(4402), + [anon_sym_constinit] = ACTIONS(4402), + [anon_sym_consteval] = ACTIONS(4402), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), + }, + [945] = { + [sym_function_definition] = STATE(1930), + [sym_declaration] = STATE(1930), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5903), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2227), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7286), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4041), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_empty_declaration] = STATE(1930), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(1930), + [sym_operator_cast] = STATE(7765), + [sym_constructor_specifiers] = STATE(1957), + [sym_operator_cast_definition] = STATE(1930), + [sym_operator_cast_declaration] = STATE(1930), + [sym_constructor_or_destructor_definition] = STATE(1930), + [sym_constructor_or_destructor_declaration] = STATE(1930), + [sym_friend_declaration] = STATE(1930), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_alias_declaration] = STATE(1930), + [sym_concept_definition] = STATE(1930), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6381), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7765), + [sym_operator_name] = STATE(7305), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(1957), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4170), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(4338), + [anon_sym___cdecl] = ACTIONS(53), + [anon_sym___clrcall] = ACTIONS(53), + [anon_sym___stdcall] = ACTIONS(53), + [anon_sym___fastcall] = ACTIONS(53), + [anon_sym___thiscall] = ACTIONS(53), + [anon_sym___vectorcall] = ACTIONS(53), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3265), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -191593,116 +184253,338 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_union] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(4174), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(3279), [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4176), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(4178), - [anon_sym_static_assert] = ACTIONS(4180), + [anon_sym_friend] = ACTIONS(3281), + [anon_sym_using] = ACTIONS(4374), + [anon_sym_concept] = ACTIONS(4376), }, - [923] = { - [sym_preproc_def] = STATE(2302), - [sym_preproc_function_def] = STATE(2302), - [sym_preproc_call] = STATE(2302), - [sym_preproc_if_in_field_declaration_list] = STATE(2302), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2302), - [sym_type_definition] = STATE(2302), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6923), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7673), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4666), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_field_declaration_list_item] = STATE(900), - [sym_field_declaration] = STATE(2302), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2302), - [sym_operator_cast] = STATE(8121), - [sym_inline_method_definition] = STATE(2302), - [sym_constructor_specifiers] = STATE(1954), - [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_friend_declaration] = STATE(2302), - [sym_access_specifier] = STATE(10549), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_using_declaration] = STATE(2302), - [sym_alias_declaration] = STATE(2302), - [sym_static_assert_declaration] = STATE(2302), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6885), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8121), - [sym_operator_name] = STATE(7634), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(900), - [aux_sym_declaration_specifiers_repeat1] = STATE(2197), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1954), - [sym_identifier] = ACTIONS(3682), - [aux_sym_preproc_def_token1] = ACTIONS(4158), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4166), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [946] = { + [sym_type_qualifier] = STATE(1916), + [sym_expression] = STATE(5409), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_type_definition_type_repeat1] = STATE(1916), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4502), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4504), + [anon_sym_const] = ACTIONS(4402), + [anon_sym_constexpr] = ACTIONS(4402), + [anon_sym_volatile] = ACTIONS(4402), + [anon_sym_restrict] = ACTIONS(4402), + [anon_sym___restrict__] = ACTIONS(4402), + [anon_sym__Atomic] = ACTIONS(4402), + [anon_sym__Noreturn] = ACTIONS(4402), + [anon_sym_noreturn] = ACTIONS(4402), + [anon_sym_mutable] = ACTIONS(4402), + [anon_sym_constinit] = ACTIONS(4402), + [anon_sym_consteval] = ACTIONS(4402), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), + }, + [947] = { + [sym_type_qualifier] = STATE(929), + [sym_expression] = STATE(5389), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_type_definition_type_repeat1] = STATE(929), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4506), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4508), + [anon_sym_const] = ACTIONS(4402), + [anon_sym_constexpr] = ACTIONS(4402), + [anon_sym_volatile] = ACTIONS(4402), + [anon_sym_restrict] = ACTIONS(4402), + [anon_sym___restrict__] = ACTIONS(4402), + [anon_sym__Atomic] = ACTIONS(4402), + [anon_sym__Noreturn] = ACTIONS(4402), + [anon_sym_noreturn] = ACTIONS(4402), + [anon_sym_mutable] = ACTIONS(4402), + [anon_sym_constinit] = ACTIONS(4402), + [anon_sym_consteval] = ACTIONS(4402), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), + }, + [948] = { + [sym_function_definition] = STATE(756), + [sym_declaration] = STATE(756), + [sym_declaration_modifiers] = STATE(4040), + [sym_declaration_specifiers] = STATE(5871), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_ms_call_modifier] = STATE(2222), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7247), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4096), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_empty_declaration] = STATE(756), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_explicit_function_specifier] = STATE(4979), + [sym_dependent_type] = STATE(3531), + [sym_template_declaration] = STATE(756), + [sym_operator_cast] = STATE(7753), + [sym_constructor_specifiers] = STATE(2014), + [sym_operator_cast_definition] = STATE(756), + [sym_operator_cast_declaration] = STATE(756), + [sym_constructor_or_destructor_definition] = STATE(756), + [sym_constructor_or_destructor_declaration] = STATE(756), + [sym_friend_declaration] = STATE(756), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_alias_declaration] = STATE(756), + [sym_concept_definition] = STATE(756), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6381), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_qualified_operator_cast_identifier] = STATE(7753), + [sym_operator_name] = STATE(7305), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [aux_sym_operator_cast_definition_repeat1] = STATE(2014), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4170), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(4340), + [anon_sym___cdecl] = ACTIONS(53), + [anon_sym___clrcall] = ACTIONS(53), + [anon_sym___stdcall] = ACTIONS(53), + [anon_sym___fastcall] = ACTIONS(53), + [anon_sym___thiscall] = ACTIONS(53), + [anon_sym___vectorcall] = ACTIONS(53), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3265), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -191722,1663 +184604,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_union] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(4174), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4358), [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4176), - [anon_sym_public] = ACTIONS(3736), - [anon_sym_private] = ACTIONS(3736), - [anon_sym_protected] = ACTIONS(3736), - [anon_sym_using] = ACTIONS(4178), - [anon_sym_static_assert] = ACTIONS(4180), + [anon_sym_friend] = ACTIONS(4360), + [anon_sym_using] = ACTIONS(4362), + [anon_sym_concept] = ACTIONS(243), }, - [924] = { - [sym_declaration_modifiers] = STATE(2149), - [sym_declaration_specifiers] = STATE(7636), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(5134), - [sym_sized_type_specifier] = STATE(4794), - [sym_enum_specifier] = STATE(4794), - [sym_struct_specifier] = STATE(4794), - [sym_union_specifier] = STATE(4794), - [sym_placeholder_type_specifier] = STATE(4794), - [sym_decltype_auto] = STATE(4805), - [sym_decltype] = STATE(4720), - [sym_class_specifier] = STATE(4794), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4794), - [sym_template_type] = STATE(4720), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7904), - [sym_qualified_type_identifier] = STATE(4751), - [aux_sym_declaration_specifiers_repeat1] = STATE(2149), - [aux_sym_sized_type_specifier_repeat1] = STATE(5372), - [sym_identifier] = ACTIONS(4342), - [anon_sym_COMMA] = ACTIONS(4344), - [anon_sym_BANG] = ACTIONS(4346), - [anon_sym_TILDE] = ACTIONS(4344), - [anon_sym_DASH] = ACTIONS(4346), - [anon_sym_PLUS] = ACTIONS(4346), - [anon_sym_STAR] = ACTIONS(4346), - [anon_sym_SLASH] = ACTIONS(4346), - [anon_sym_PERCENT] = ACTIONS(4346), - [anon_sym_PIPE_PIPE] = ACTIONS(4344), - [anon_sym_AMP_AMP] = ACTIONS(4344), - [anon_sym_PIPE] = ACTIONS(4346), - [anon_sym_CARET] = ACTIONS(4346), - [anon_sym_AMP] = ACTIONS(4346), - [anon_sym_EQ_EQ] = ACTIONS(4344), - [anon_sym_BANG_EQ] = ACTIONS(4344), - [anon_sym_GT] = ACTIONS(4346), - [anon_sym_GT_EQ] = ACTIONS(4344), - [anon_sym_LT_EQ] = ACTIONS(4346), - [anon_sym_LT] = ACTIONS(4346), - [anon_sym_LT_LT] = ACTIONS(4346), - [anon_sym_GT_GT] = ACTIONS(4346), - [anon_sym___extension__] = ACTIONS(65), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(4348), - [anon_sym_unsigned] = ACTIONS(4348), - [anon_sym_long] = ACTIONS(4348), - [anon_sym_short] = ACTIONS(4348), - [anon_sym_EQ] = ACTIONS(4346), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(4350), - [anon_sym_enum] = ACTIONS(4352), - [anon_sym_class] = ACTIONS(4354), - [anon_sym_struct] = ACTIONS(4356), - [anon_sym_union] = ACTIONS(4358), - [anon_sym_STAR_EQ] = ACTIONS(4344), - [anon_sym_SLASH_EQ] = ACTIONS(4344), - [anon_sym_PERCENT_EQ] = ACTIONS(4344), - [anon_sym_PLUS_EQ] = ACTIONS(4344), - [anon_sym_DASH_EQ] = ACTIONS(4344), - [anon_sym_LT_LT_EQ] = ACTIONS(4344), - [anon_sym_GT_GT_EQ] = ACTIONS(4344), - [anon_sym_AMP_EQ] = ACTIONS(4344), - [anon_sym_CARET_EQ] = ACTIONS(4344), - [anon_sym_PIPE_EQ] = ACTIONS(4344), - [anon_sym_and_eq] = ACTIONS(4346), - [anon_sym_or_eq] = ACTIONS(4346), - [anon_sym_xor_eq] = ACTIONS(4346), - [anon_sym_not] = ACTIONS(4346), - [anon_sym_compl] = ACTIONS(4346), - [anon_sym_LT_EQ_GT] = ACTIONS(4344), - [anon_sym_or] = ACTIONS(4346), - [anon_sym_and] = ACTIONS(4346), - [anon_sym_bitor] = ACTIONS(4346), - [anon_sym_xor] = ACTIONS(4346), - [anon_sym_bitand] = ACTIONS(4346), - [anon_sym_not_eq] = ACTIONS(4346), - [anon_sym_DASH_DASH] = ACTIONS(4344), - [anon_sym_PLUS_PLUS] = ACTIONS(4344), - [anon_sym_DASH_GT] = ACTIONS(4346), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4360), - [anon_sym_decltype] = ACTIONS(4362), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(4364), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4366), - [anon_sym_co_await] = ACTIONS(4346), - [anon_sym_new] = ACTIONS(4366), - [anon_sym_DASH_GT_STAR] = ACTIONS(4344), - [anon_sym_LPAREN_RPAREN] = ACTIONS(4344), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4344), - [anon_sym_DQUOTE_DQUOTE] = ACTIONS(4368), - }, - [925] = { - [sym_declaration_modifiers] = STATE(2149), - [sym_declaration_specifiers] = STATE(7636), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(5134), - [sym_sized_type_specifier] = STATE(4794), - [sym_enum_specifier] = STATE(4794), - [sym_struct_specifier] = STATE(4794), - [sym_union_specifier] = STATE(4794), - [sym_placeholder_type_specifier] = STATE(4794), - [sym_decltype_auto] = STATE(4805), - [sym_decltype] = STATE(4720), - [sym_class_specifier] = STATE(4794), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4794), - [sym_template_type] = STATE(4720), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7904), - [sym_qualified_type_identifier] = STATE(4751), - [aux_sym_declaration_specifiers_repeat1] = STATE(2149), - [aux_sym_sized_type_specifier_repeat1] = STATE(5372), - [sym_identifier] = ACTIONS(4342), - [anon_sym_COMMA] = ACTIONS(4370), - [anon_sym_BANG] = ACTIONS(4372), - [anon_sym_TILDE] = ACTIONS(4370), - [anon_sym_DASH] = ACTIONS(4372), - [anon_sym_PLUS] = ACTIONS(4372), - [anon_sym_STAR] = ACTIONS(4372), - [anon_sym_SLASH] = ACTIONS(4372), - [anon_sym_PERCENT] = ACTIONS(4372), - [anon_sym_PIPE_PIPE] = ACTIONS(4370), - [anon_sym_AMP_AMP] = ACTIONS(4370), - [anon_sym_PIPE] = ACTIONS(4372), - [anon_sym_CARET] = ACTIONS(4372), - [anon_sym_AMP] = ACTIONS(4372), - [anon_sym_EQ_EQ] = ACTIONS(4370), - [anon_sym_BANG_EQ] = ACTIONS(4370), - [anon_sym_GT] = ACTIONS(4372), - [anon_sym_GT_EQ] = ACTIONS(4370), - [anon_sym_LT_EQ] = ACTIONS(4372), - [anon_sym_LT] = ACTIONS(4372), - [anon_sym_LT_LT] = ACTIONS(4372), - [anon_sym_GT_GT] = ACTIONS(4372), - [anon_sym___extension__] = ACTIONS(65), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(4348), - [anon_sym_unsigned] = ACTIONS(4348), - [anon_sym_long] = ACTIONS(4348), - [anon_sym_short] = ACTIONS(4348), - [anon_sym_EQ] = ACTIONS(4372), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(4350), - [anon_sym_enum] = ACTIONS(4352), - [anon_sym_class] = ACTIONS(4354), - [anon_sym_struct] = ACTIONS(4356), - [anon_sym_union] = ACTIONS(4358), - [anon_sym_STAR_EQ] = ACTIONS(4370), - [anon_sym_SLASH_EQ] = ACTIONS(4370), - [anon_sym_PERCENT_EQ] = ACTIONS(4370), - [anon_sym_PLUS_EQ] = ACTIONS(4370), - [anon_sym_DASH_EQ] = ACTIONS(4370), - [anon_sym_LT_LT_EQ] = ACTIONS(4370), - [anon_sym_GT_GT_EQ] = ACTIONS(4370), - [anon_sym_AMP_EQ] = ACTIONS(4370), - [anon_sym_CARET_EQ] = ACTIONS(4370), - [anon_sym_PIPE_EQ] = ACTIONS(4370), - [anon_sym_and_eq] = ACTIONS(4372), - [anon_sym_or_eq] = ACTIONS(4372), - [anon_sym_xor_eq] = ACTIONS(4372), - [anon_sym_not] = ACTIONS(4372), - [anon_sym_compl] = ACTIONS(4372), - [anon_sym_LT_EQ_GT] = ACTIONS(4370), - [anon_sym_or] = ACTIONS(4372), - [anon_sym_and] = ACTIONS(4372), - [anon_sym_bitor] = ACTIONS(4372), - [anon_sym_xor] = ACTIONS(4372), - [anon_sym_bitand] = ACTIONS(4372), - [anon_sym_not_eq] = ACTIONS(4372), - [anon_sym_DASH_DASH] = ACTIONS(4370), - [anon_sym_PLUS_PLUS] = ACTIONS(4370), - [anon_sym_DASH_GT] = ACTIONS(4372), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4360), - [anon_sym_decltype] = ACTIONS(4362), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(4364), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4374), - [anon_sym_co_await] = ACTIONS(4372), - [anon_sym_new] = ACTIONS(4374), - [anon_sym_DASH_GT_STAR] = ACTIONS(4370), - [anon_sym_LPAREN_RPAREN] = ACTIONS(4370), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4370), - [anon_sym_DQUOTE_DQUOTE] = ACTIONS(4376), - }, - [926] = { - [sym_identifier] = ACTIONS(4378), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4380), - [anon_sym_COMMA] = ACTIONS(4380), - [anon_sym_RPAREN] = ACTIONS(4380), - [anon_sym_LPAREN2] = ACTIONS(4380), - [anon_sym_BANG] = ACTIONS(4380), - [anon_sym_TILDE] = ACTIONS(4380), - [anon_sym_DASH] = ACTIONS(4378), - [anon_sym_PLUS] = ACTIONS(4378), - [anon_sym_STAR] = ACTIONS(4380), - [anon_sym_AMP_AMP] = ACTIONS(4380), - [anon_sym_AMP] = ACTIONS(4378), - [anon_sym_SEMI] = ACTIONS(4380), - [anon_sym___extension__] = ACTIONS(4378), - [anon_sym_extern] = ACTIONS(4378), - [anon_sym___attribute__] = ACTIONS(4378), - [anon_sym_COLON_COLON] = ACTIONS(4380), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4380), - [anon_sym___declspec] = ACTIONS(4378), - [anon_sym___based] = ACTIONS(4378), - [anon_sym_LBRACE] = ACTIONS(4380), - [anon_sym_signed] = ACTIONS(4378), - [anon_sym_unsigned] = ACTIONS(4378), - [anon_sym_long] = ACTIONS(4378), - [anon_sym_short] = ACTIONS(4378), - [anon_sym_LBRACK] = ACTIONS(4378), - [anon_sym_EQ] = ACTIONS(4380), - [anon_sym_static] = ACTIONS(4378), - [anon_sym_register] = ACTIONS(4378), - [anon_sym_inline] = ACTIONS(4378), - [anon_sym___inline] = ACTIONS(4378), - [anon_sym___inline__] = ACTIONS(4378), - [anon_sym___forceinline] = ACTIONS(4378), - [anon_sym_thread_local] = ACTIONS(4378), - [anon_sym___thread] = ACTIONS(4378), - [anon_sym_const] = ACTIONS(4378), - [anon_sym_constexpr] = ACTIONS(4378), - [anon_sym_volatile] = ACTIONS(4378), - [anon_sym_restrict] = ACTIONS(4378), - [anon_sym___restrict__] = ACTIONS(4378), - [anon_sym__Atomic] = ACTIONS(4378), - [anon_sym__Noreturn] = ACTIONS(4378), - [anon_sym_noreturn] = ACTIONS(4378), - [anon_sym_mutable] = ACTIONS(4378), - [anon_sym_constinit] = ACTIONS(4378), - [anon_sym_consteval] = ACTIONS(4378), - [sym_primitive_type] = ACTIONS(4378), - [anon_sym_enum] = ACTIONS(4378), - [anon_sym_class] = ACTIONS(4378), - [anon_sym_struct] = ACTIONS(4378), - [anon_sym_union] = ACTIONS(4378), - [anon_sym_if] = ACTIONS(4378), - [anon_sym_switch] = ACTIONS(4378), - [anon_sym_case] = ACTIONS(4378), - [anon_sym_default] = ACTIONS(4378), - [anon_sym_while] = ACTIONS(4378), - [anon_sym_do] = ACTIONS(4378), - [anon_sym_for] = ACTIONS(4378), - [anon_sym_return] = ACTIONS(4378), - [anon_sym_break] = ACTIONS(4378), - [anon_sym_continue] = ACTIONS(4378), - [anon_sym_goto] = ACTIONS(4378), - [anon_sym___try] = ACTIONS(4378), - [anon_sym___leave] = ACTIONS(4378), - [anon_sym_not] = ACTIONS(4378), - [anon_sym_compl] = ACTIONS(4378), - [anon_sym_DASH_DASH] = ACTIONS(4380), - [anon_sym_PLUS_PLUS] = ACTIONS(4380), - [anon_sym_sizeof] = ACTIONS(4378), - [anon_sym___alignof__] = ACTIONS(4378), - [anon_sym___alignof] = ACTIONS(4378), - [anon_sym__alignof] = ACTIONS(4378), - [anon_sym_alignof] = ACTIONS(4378), - [anon_sym__Alignof] = ACTIONS(4378), - [anon_sym_offsetof] = ACTIONS(4378), - [anon_sym__Generic] = ACTIONS(4378), - [anon_sym_asm] = ACTIONS(4378), - [anon_sym___asm__] = ACTIONS(4378), - [sym_number_literal] = ACTIONS(4380), - [anon_sym_L_SQUOTE] = ACTIONS(4380), - [anon_sym_u_SQUOTE] = ACTIONS(4380), - [anon_sym_U_SQUOTE] = ACTIONS(4380), - [anon_sym_u8_SQUOTE] = ACTIONS(4380), - [anon_sym_SQUOTE] = ACTIONS(4380), - [anon_sym_L_DQUOTE] = ACTIONS(4380), - [anon_sym_u_DQUOTE] = ACTIONS(4380), - [anon_sym_U_DQUOTE] = ACTIONS(4380), - [anon_sym_u8_DQUOTE] = ACTIONS(4380), - [anon_sym_DQUOTE] = ACTIONS(4380), - [sym_true] = ACTIONS(4378), - [sym_false] = ACTIONS(4378), - [anon_sym_NULL] = ACTIONS(4378), - [anon_sym_nullptr] = ACTIONS(4378), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4378), - [anon_sym_decltype] = ACTIONS(4378), - [anon_sym_virtual] = ACTIONS(4378), - [anon_sym_alignas] = ACTIONS(4378), - [anon_sym_explicit] = ACTIONS(4378), - [anon_sym_typename] = ACTIONS(4378), - [anon_sym_template] = ACTIONS(4378), - [anon_sym_GT2] = ACTIONS(4380), - [anon_sym_operator] = ACTIONS(4378), - [anon_sym_try] = ACTIONS(4378), - [anon_sym_delete] = ACTIONS(4378), - [anon_sym_throw] = ACTIONS(4378), - [anon_sym_co_return] = ACTIONS(4378), - [anon_sym_co_yield] = ACTIONS(4378), - [anon_sym_R_DQUOTE] = ACTIONS(4380), - [anon_sym_LR_DQUOTE] = ACTIONS(4380), - [anon_sym_uR_DQUOTE] = ACTIONS(4380), - [anon_sym_UR_DQUOTE] = ACTIONS(4380), - [anon_sym_u8R_DQUOTE] = ACTIONS(4380), - [anon_sym_co_await] = ACTIONS(4378), - [anon_sym_new] = ACTIONS(4378), - [anon_sym_requires] = ACTIONS(4378), - [sym_this] = ACTIONS(4378), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4380), - [sym_semgrep_named_ellipsis] = ACTIONS(4380), - }, - [927] = { - [sym_identifier] = ACTIONS(4382), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4384), - [anon_sym_COMMA] = ACTIONS(4384), - [anon_sym_RPAREN] = ACTIONS(4384), - [anon_sym_LPAREN2] = ACTIONS(4384), - [anon_sym_BANG] = ACTIONS(4384), - [anon_sym_TILDE] = ACTIONS(4384), - [anon_sym_DASH] = ACTIONS(4382), - [anon_sym_PLUS] = ACTIONS(4382), - [anon_sym_STAR] = ACTIONS(4384), - [anon_sym_AMP_AMP] = ACTIONS(4384), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym_SEMI] = ACTIONS(4384), - [anon_sym___extension__] = ACTIONS(4382), - [anon_sym_extern] = ACTIONS(4382), - [anon_sym___attribute__] = ACTIONS(4382), - [anon_sym_COLON_COLON] = ACTIONS(4384), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4384), - [anon_sym___declspec] = ACTIONS(4382), - [anon_sym___based] = ACTIONS(4382), - [anon_sym_LBRACE] = ACTIONS(4384), - [anon_sym_signed] = ACTIONS(4382), - [anon_sym_unsigned] = ACTIONS(4382), - [anon_sym_long] = ACTIONS(4382), - [anon_sym_short] = ACTIONS(4382), - [anon_sym_LBRACK] = ACTIONS(4382), - [anon_sym_EQ] = ACTIONS(4384), - [anon_sym_static] = ACTIONS(4382), - [anon_sym_register] = ACTIONS(4382), - [anon_sym_inline] = ACTIONS(4382), - [anon_sym___inline] = ACTIONS(4382), - [anon_sym___inline__] = ACTIONS(4382), - [anon_sym___forceinline] = ACTIONS(4382), - [anon_sym_thread_local] = ACTIONS(4382), - [anon_sym___thread] = ACTIONS(4382), - [anon_sym_const] = ACTIONS(4382), - [anon_sym_constexpr] = ACTIONS(4382), - [anon_sym_volatile] = ACTIONS(4382), - [anon_sym_restrict] = ACTIONS(4382), - [anon_sym___restrict__] = ACTIONS(4382), - [anon_sym__Atomic] = ACTIONS(4382), - [anon_sym__Noreturn] = ACTIONS(4382), - [anon_sym_noreturn] = ACTIONS(4382), - [anon_sym_mutable] = ACTIONS(4382), - [anon_sym_constinit] = ACTIONS(4382), - [anon_sym_consteval] = ACTIONS(4382), - [sym_primitive_type] = ACTIONS(4382), - [anon_sym_enum] = ACTIONS(4382), - [anon_sym_class] = ACTIONS(4382), - [anon_sym_struct] = ACTIONS(4382), - [anon_sym_union] = ACTIONS(4382), - [anon_sym_if] = ACTIONS(4382), - [anon_sym_switch] = ACTIONS(4382), - [anon_sym_case] = ACTIONS(4382), - [anon_sym_default] = ACTIONS(4382), - [anon_sym_while] = ACTIONS(4382), - [anon_sym_do] = ACTIONS(4382), - [anon_sym_for] = ACTIONS(4382), - [anon_sym_return] = ACTIONS(4382), - [anon_sym_break] = ACTIONS(4382), - [anon_sym_continue] = ACTIONS(4382), - [anon_sym_goto] = ACTIONS(4382), - [anon_sym___try] = ACTIONS(4382), - [anon_sym___leave] = ACTIONS(4382), - [anon_sym_not] = ACTIONS(4382), - [anon_sym_compl] = ACTIONS(4382), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_sizeof] = ACTIONS(4382), - [anon_sym___alignof__] = ACTIONS(4382), - [anon_sym___alignof] = ACTIONS(4382), - [anon_sym__alignof] = ACTIONS(4382), - [anon_sym_alignof] = ACTIONS(4382), - [anon_sym__Alignof] = ACTIONS(4382), - [anon_sym_offsetof] = ACTIONS(4382), - [anon_sym__Generic] = ACTIONS(4382), - [anon_sym_asm] = ACTIONS(4382), - [anon_sym___asm__] = ACTIONS(4382), - [sym_number_literal] = ACTIONS(4384), - [anon_sym_L_SQUOTE] = ACTIONS(4384), - [anon_sym_u_SQUOTE] = ACTIONS(4384), - [anon_sym_U_SQUOTE] = ACTIONS(4384), - [anon_sym_u8_SQUOTE] = ACTIONS(4384), - [anon_sym_SQUOTE] = ACTIONS(4384), - [anon_sym_L_DQUOTE] = ACTIONS(4384), - [anon_sym_u_DQUOTE] = ACTIONS(4384), - [anon_sym_U_DQUOTE] = ACTIONS(4384), - [anon_sym_u8_DQUOTE] = ACTIONS(4384), - [anon_sym_DQUOTE] = ACTIONS(4384), - [sym_true] = ACTIONS(4382), - [sym_false] = ACTIONS(4382), - [anon_sym_NULL] = ACTIONS(4382), - [anon_sym_nullptr] = ACTIONS(4382), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4382), - [anon_sym_decltype] = ACTIONS(4382), - [anon_sym_virtual] = ACTIONS(4382), - [anon_sym_alignas] = ACTIONS(4382), - [anon_sym_explicit] = ACTIONS(4382), - [anon_sym_typename] = ACTIONS(4382), - [anon_sym_template] = ACTIONS(4382), - [anon_sym_GT2] = ACTIONS(4384), - [anon_sym_operator] = ACTIONS(4382), - [anon_sym_try] = ACTIONS(4382), - [anon_sym_delete] = ACTIONS(4382), - [anon_sym_throw] = ACTIONS(4382), - [anon_sym_co_return] = ACTIONS(4382), - [anon_sym_co_yield] = ACTIONS(4382), - [anon_sym_R_DQUOTE] = ACTIONS(4384), - [anon_sym_LR_DQUOTE] = ACTIONS(4384), - [anon_sym_uR_DQUOTE] = ACTIONS(4384), - [anon_sym_UR_DQUOTE] = ACTIONS(4384), - [anon_sym_u8R_DQUOTE] = ACTIONS(4384), - [anon_sym_co_await] = ACTIONS(4382), - [anon_sym_new] = ACTIONS(4382), - [anon_sym_requires] = ACTIONS(4382), - [sym_this] = ACTIONS(4382), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4384), - [sym_semgrep_named_ellipsis] = ACTIONS(4384), - }, - [928] = { - [sym_function_definition] = STATE(753), - [sym_declaration] = STATE(753), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7699), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_empty_declaration] = STATE(753), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(753), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1949), - [sym_operator_cast_definition] = STATE(753), - [sym_operator_cast_declaration] = STATE(753), - [sym_constructor_or_destructor_definition] = STATE(753), - [sym_constructor_or_destructor_declaration] = STATE(753), - [sym_friend_declaration] = STATE(753), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_alias_declaration] = STATE(753), - [sym_concept_definition] = STATE(753), - [sym_requires_clause] = STATE(954), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6891), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(4386), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(65), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(53), - [anon_sym___clrcall] = ACTIONS(53), - [anon_sym___stdcall] = ACTIONS(53), - [anon_sym___fastcall] = ACTIONS(53), - [anon_sym___thiscall] = ACTIONS(53), - [anon_sym___vectorcall] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4388), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4390), - [anon_sym_using] = ACTIONS(4392), - [anon_sym_concept] = ACTIONS(243), - [anon_sym_requires] = ACTIONS(4394), - }, - [929] = { - [sym_function_definition] = STATE(2282), - [sym_declaration] = STATE(2282), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6408), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2062), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7614), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4319), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_empty_declaration] = STATE(2282), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2282), - [sym_operator_cast] = STATE(8076), - [sym_constructor_specifiers] = STATE(1947), - [sym_operator_cast_definition] = STATE(2282), - [sym_operator_cast_declaration] = STATE(2282), - [sym_constructor_or_destructor_definition] = STATE(2282), - [sym_constructor_or_destructor_declaration] = STATE(2282), - [sym_friend_declaration] = STATE(2282), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_alias_declaration] = STATE(2282), - [sym_concept_definition] = STATE(2282), - [sym_requires_clause] = STATE(973), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6891), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8076), - [sym_operator_name] = STATE(7634), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1947), - [sym_identifier] = ACTIONS(4386), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(65), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(53), - [anon_sym___clrcall] = ACTIONS(53), - [anon_sym___stdcall] = ACTIONS(53), - [anon_sym___fastcall] = ACTIONS(53), - [anon_sym___thiscall] = ACTIONS(53), - [anon_sym___vectorcall] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4279), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4281), - [anon_sym_using] = ACTIONS(4396), - [anon_sym_concept] = ACTIONS(4398), - [anon_sym_requires] = ACTIONS(4394), - }, - [930] = { - [sym_function_definition] = STATE(829), - [sym_declaration] = STATE(829), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6398), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2086), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7635), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4374), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_empty_declaration] = STATE(829), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(829), - [sym_operator_cast] = STATE(8070), - [sym_constructor_specifiers] = STATE(1940), - [sym_operator_cast_definition] = STATE(829), - [sym_operator_cast_declaration] = STATE(829), - [sym_constructor_or_destructor_definition] = STATE(829), - [sym_constructor_or_destructor_declaration] = STATE(829), - [sym_friend_declaration] = STATE(829), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_alias_declaration] = STATE(829), - [sym_concept_definition] = STATE(829), - [sym_requires_clause] = STATE(949), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6891), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8070), - [sym_operator_name] = STATE(7634), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1940), - [sym_identifier] = ACTIONS(4386), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(65), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(53), - [anon_sym___clrcall] = ACTIONS(53), - [anon_sym___stdcall] = ACTIONS(53), - [anon_sym___fastcall] = ACTIONS(53), - [anon_sym___thiscall] = ACTIONS(53), - [anon_sym___vectorcall] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4400), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4402), - [anon_sym_using] = ACTIONS(4404), - [anon_sym_concept] = ACTIONS(149), - [anon_sym_requires] = ACTIONS(4394), - }, - [931] = { - [sym_function_definition] = STATE(2026), - [sym_declaration] = STATE(2026), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6405), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2104), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7690), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4300), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_empty_declaration] = STATE(2026), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2026), - [sym_operator_cast] = STATE(8046), - [sym_constructor_specifiers] = STATE(1934), - [sym_operator_cast_definition] = STATE(2026), - [sym_operator_cast_declaration] = STATE(2026), - [sym_constructor_or_destructor_definition] = STATE(2026), - [sym_constructor_or_destructor_declaration] = STATE(2026), - [sym_friend_declaration] = STATE(2026), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_alias_declaration] = STATE(2026), - [sym_concept_definition] = STATE(2026), - [sym_requires_clause] = STATE(946), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6891), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8046), - [sym_operator_name] = STATE(7634), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1934), - [sym_identifier] = ACTIONS(4386), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(65), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(53), - [anon_sym___clrcall] = ACTIONS(53), - [anon_sym___stdcall] = ACTIONS(53), - [anon_sym___fastcall] = ACTIONS(53), - [anon_sym___thiscall] = ACTIONS(53), - [anon_sym___vectorcall] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(3732), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(3734), - [anon_sym_using] = ACTIONS(4406), - [anon_sym_concept] = ACTIONS(4408), - [anon_sym_requires] = ACTIONS(4394), - }, - [932] = { - [sym_function_definition] = STATE(2300), - [sym_declaration] = STATE(2300), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6404), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2103), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7673), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4283), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_empty_declaration] = STATE(2300), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2300), - [sym_operator_cast] = STATE(8121), - [sym_constructor_specifiers] = STATE(1954), - [sym_operator_cast_definition] = STATE(2300), - [sym_operator_cast_declaration] = STATE(2300), - [sym_constructor_or_destructor_definition] = STATE(2300), - [sym_constructor_or_destructor_declaration] = STATE(2300), - [sym_friend_declaration] = STATE(2300), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_alias_declaration] = STATE(2300), - [sym_concept_definition] = STATE(2300), - [sym_requires_clause] = STATE(965), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6891), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8121), - [sym_operator_name] = STATE(7634), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1954), - [sym_identifier] = ACTIONS(4386), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(65), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(53), - [anon_sym___clrcall] = ACTIONS(53), - [anon_sym___stdcall] = ACTIONS(53), - [anon_sym___fastcall] = ACTIONS(53), - [anon_sym___thiscall] = ACTIONS(53), - [anon_sym___vectorcall] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4174), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4176), - [anon_sym_using] = ACTIONS(4410), - [anon_sym_concept] = ACTIONS(4412), - [anon_sym_requires] = ACTIONS(4394), - }, - [933] = { - [sym_function_definition] = STATE(2153), - [sym_declaration] = STATE(2153), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6407), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2105), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7662), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4309), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_empty_declaration] = STATE(2153), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2153), - [sym_operator_cast] = STATE(8085), - [sym_constructor_specifiers] = STATE(1942), - [sym_operator_cast_definition] = STATE(2153), - [sym_operator_cast_declaration] = STATE(2153), - [sym_constructor_or_destructor_definition] = STATE(2153), - [sym_constructor_or_destructor_declaration] = STATE(2153), - [sym_friend_declaration] = STATE(2153), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_alias_declaration] = STATE(2153), - [sym_concept_definition] = STATE(2153), - [sym_requires_clause] = STATE(952), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6891), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8085), - [sym_operator_name] = STATE(7634), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1942), - [sym_identifier] = ACTIONS(4386), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(65), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(53), - [anon_sym___clrcall] = ACTIONS(53), - [anon_sym___stdcall] = ACTIONS(53), - [anon_sym___fastcall] = ACTIONS(53), - [anon_sym___thiscall] = ACTIONS(53), - [anon_sym___vectorcall] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(3878), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(3880), - [anon_sym_using] = ACTIONS(4414), - [anon_sym_concept] = ACTIONS(4416), - [anon_sym_requires] = ACTIONS(4394), - }, - [934] = { - [sym_function_definition] = STATE(510), - [sym_declaration] = STATE(510), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6402), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2101), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7681), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4258), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_empty_declaration] = STATE(510), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(510), - [sym_operator_cast] = STATE(8113), - [sym_constructor_specifiers] = STATE(1938), - [sym_operator_cast_definition] = STATE(510), - [sym_operator_cast_declaration] = STATE(510), - [sym_constructor_or_destructor_definition] = STATE(510), - [sym_constructor_or_destructor_declaration] = STATE(510), - [sym_friend_declaration] = STATE(510), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_alias_declaration] = STATE(510), - [sym_concept_definition] = STATE(510), - [sym_requires_clause] = STATE(938), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6891), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8113), - [sym_operator_name] = STATE(7634), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1938), - [sym_identifier] = ACTIONS(4386), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(65), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(53), - [anon_sym___clrcall] = ACTIONS(53), - [anon_sym___stdcall] = ACTIONS(53), - [anon_sym___fastcall] = ACTIONS(53), - [anon_sym___thiscall] = ACTIONS(53), - [anon_sym___vectorcall] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4418), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4420), - [anon_sym_using] = ACTIONS(4422), - [anon_sym_concept] = ACTIONS(463), - [anon_sym_requires] = ACTIONS(4394), - }, - [935] = { - [sym_function_definition] = STATE(773), - [sym_declaration] = STATE(773), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6403), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2102), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7658), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4271), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_empty_declaration] = STATE(773), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(773), - [sym_operator_cast] = STATE(8091), - [sym_constructor_specifiers] = STATE(1939), - [sym_operator_cast_definition] = STATE(773), - [sym_operator_cast_declaration] = STATE(773), - [sym_constructor_or_destructor_definition] = STATE(773), - [sym_constructor_or_destructor_declaration] = STATE(773), - [sym_friend_declaration] = STATE(773), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_alias_declaration] = STATE(773), - [sym_concept_definition] = STATE(773), - [sym_requires_clause] = STATE(943), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6891), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8091), - [sym_operator_name] = STATE(7634), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1939), - [sym_identifier] = ACTIONS(4386), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(65), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(53), - [anon_sym___clrcall] = ACTIONS(53), - [anon_sym___stdcall] = ACTIONS(53), - [anon_sym___fastcall] = ACTIONS(53), - [anon_sym___thiscall] = ACTIONS(53), - [anon_sym___vectorcall] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4424), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4426), - [anon_sym_using] = ACTIONS(4428), - [anon_sym_concept] = ACTIONS(1044), - [anon_sym_requires] = ACTIONS(4394), - }, - [936] = { - [sym_function_definition] = STATE(355), - [sym_declaration] = STATE(355), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6397), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2100), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7654), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4229), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_empty_declaration] = STATE(355), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(355), - [sym_operator_cast] = STATE(8100), - [sym_constructor_specifiers] = STATE(1951), - [sym_operator_cast_definition] = STATE(355), - [sym_operator_cast_declaration] = STATE(355), - [sym_constructor_or_destructor_definition] = STATE(355), - [sym_constructor_or_destructor_declaration] = STATE(355), - [sym_friend_declaration] = STATE(355), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_alias_declaration] = STATE(355), - [sym_concept_definition] = STATE(355), - [sym_requires_clause] = STATE(951), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6891), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8100), - [sym_operator_name] = STATE(7634), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1951), - [sym_identifier] = ACTIONS(4386), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(65), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(53), - [anon_sym___clrcall] = ACTIONS(53), - [anon_sym___stdcall] = ACTIONS(53), - [anon_sym___fastcall] = ACTIONS(53), - [anon_sym___thiscall] = ACTIONS(53), - [anon_sym___vectorcall] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4430), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4432), - [anon_sym_using] = ACTIONS(4434), - [anon_sym_concept] = ACTIONS(351), - [anon_sym_requires] = ACTIONS(4394), - }, - [937] = { - [sym_type_qualifier] = STATE(1919), - [sym_expression] = STATE(5993), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_type_definition_type_repeat1] = STATE(1919), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(4436), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4438), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4440), - [anon_sym_const] = ACTIONS(4438), - [anon_sym_constexpr] = ACTIONS(4438), - [anon_sym_volatile] = ACTIONS(4438), - [anon_sym_restrict] = ACTIONS(4438), - [anon_sym___restrict__] = ACTIONS(4438), - [anon_sym__Atomic] = ACTIONS(4438), - [anon_sym__Noreturn] = ACTIONS(4438), - [anon_sym_noreturn] = ACTIONS(4438), - [anon_sym_mutable] = ACTIONS(4438), - [anon_sym_constinit] = ACTIONS(4438), - [anon_sym_consteval] = ACTIONS(4438), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [949] = { + [sym_type_qualifier] = STATE(944), + [sym_expression] = STATE(5378), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_type_definition_type_repeat1] = STATE(944), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4510), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4512), + [anon_sym_const] = ACTIONS(4402), + [anon_sym_constexpr] = ACTIONS(4402), + [anon_sym_volatile] = ACTIONS(4402), + [anon_sym_restrict] = ACTIONS(4402), + [anon_sym___restrict__] = ACTIONS(4402), + [anon_sym__Atomic] = ACTIONS(4402), + [anon_sym__Noreturn] = ACTIONS(4402), + [anon_sym_noreturn] = ACTIONS(4402), + [anon_sym_mutable] = ACTIONS(4402), + [anon_sym_constinit] = ACTIONS(4402), + [anon_sym_consteval] = ACTIONS(4402), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -193405,3368 +184725,4849 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [938] = { - [sym_function_definition] = STATE(553), - [sym_declaration] = STATE(553), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6402), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2101), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7681), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4258), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_empty_declaration] = STATE(553), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(553), - [sym_operator_cast] = STATE(8113), - [sym_constructor_specifiers] = STATE(1938), - [sym_operator_cast_definition] = STATE(553), - [sym_operator_cast_declaration] = STATE(553), - [sym_constructor_or_destructor_definition] = STATE(553), - [sym_constructor_or_destructor_declaration] = STATE(553), - [sym_friend_declaration] = STATE(553), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_alias_declaration] = STATE(553), - [sym_concept_definition] = STATE(553), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6891), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8113), - [sym_operator_name] = STATE(7634), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1938), - [sym_identifier] = ACTIONS(4386), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [950] = { + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7451), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7305), + [sym_array_declarator] = STATE(7305), + [sym_expression] = STATE(2946), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3549), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6582), + [sym_qualified_identifier] = STATE(3558), + [sym_qualified_type_identifier] = STATE(3098), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(3688), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(31), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(65), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), + [anon_sym_AMP] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(2287), [anon_sym___based] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(53), - [anon_sym___clrcall] = ACTIONS(53), - [anon_sym___stdcall] = ACTIONS(53), - [anon_sym___fastcall] = ACTIONS(53), - [anon_sym___thiscall] = ACTIONS(53), - [anon_sym___vectorcall] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4418), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4420), - [anon_sym_using] = ACTIONS(4422), - [anon_sym_concept] = ACTIONS(463), - }, - [939] = { - [sym_type_qualifier] = STATE(957), - [sym_expression] = STATE(5966), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_type_definition_type_repeat1] = STATE(957), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(4442), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4438), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4444), - [anon_sym_const] = ACTIONS(4438), - [anon_sym_constexpr] = ACTIONS(4438), - [anon_sym_volatile] = ACTIONS(4438), - [anon_sym_restrict] = ACTIONS(4438), - [anon_sym___restrict__] = ACTIONS(4438), - [anon_sym__Atomic] = ACTIONS(4438), - [anon_sym__Noreturn] = ACTIONS(4438), - [anon_sym_noreturn] = ACTIONS(4438), - [anon_sym_mutable] = ACTIONS(4438), - [anon_sym_constinit] = ACTIONS(4438), - [anon_sym_consteval] = ACTIONS(4438), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(2217), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_operator] = ACTIONS(2257), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [940] = { - [sym_type_qualifier] = STATE(941), - [sym_expression] = STATE(5923), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_type_definition_type_repeat1] = STATE(941), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(4446), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4438), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4448), - [anon_sym_const] = ACTIONS(4438), - [anon_sym_constexpr] = ACTIONS(4438), - [anon_sym_volatile] = ACTIONS(4438), - [anon_sym_restrict] = ACTIONS(4438), - [anon_sym___restrict__] = ACTIONS(4438), - [anon_sym__Atomic] = ACTIONS(4438), - [anon_sym__Noreturn] = ACTIONS(4438), - [anon_sym_noreturn] = ACTIONS(4438), - [anon_sym_mutable] = ACTIONS(4438), - [anon_sym_constinit] = ACTIONS(4438), - [anon_sym_consteval] = ACTIONS(4438), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), + [951] = { + [sym_catch_clause] = STATE(953), + [aux_sym_constructor_try_statement_repeat1] = STATE(953), + [sym_identifier] = ACTIONS(3046), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3048), + [anon_sym_BANG] = ACTIONS(3048), + [anon_sym_TILDE] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3046), + [anon_sym_PLUS] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3048), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3048), + [anon_sym___extension__] = ACTIONS(3046), + [anon_sym_typedef] = ACTIONS(3046), + [anon_sym_extern] = ACTIONS(3046), + [anon_sym___attribute__] = ACTIONS(3046), + [anon_sym_COLON_COLON] = ACTIONS(3048), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3048), + [anon_sym___declspec] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3046), + [anon_sym_unsigned] = ACTIONS(3046), + [anon_sym_long] = ACTIONS(3046), + [anon_sym_short] = ACTIONS(3046), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_static] = ACTIONS(3046), + [anon_sym_register] = ACTIONS(3046), + [anon_sym_inline] = ACTIONS(3046), + [anon_sym___inline] = ACTIONS(3046), + [anon_sym___inline__] = ACTIONS(3046), + [anon_sym___forceinline] = ACTIONS(3046), + [anon_sym_thread_local] = ACTIONS(3046), + [anon_sym___thread] = ACTIONS(3046), + [anon_sym_const] = ACTIONS(3046), + [anon_sym_constexpr] = ACTIONS(3046), + [anon_sym_volatile] = ACTIONS(3046), + [anon_sym_restrict] = ACTIONS(3046), + [anon_sym___restrict__] = ACTIONS(3046), + [anon_sym__Atomic] = ACTIONS(3046), + [anon_sym__Noreturn] = ACTIONS(3046), + [anon_sym_noreturn] = ACTIONS(3046), + [anon_sym_mutable] = ACTIONS(3046), + [anon_sym_constinit] = ACTIONS(3046), + [anon_sym_consteval] = ACTIONS(3046), + [sym_primitive_type] = ACTIONS(3046), + [anon_sym_enum] = ACTIONS(3046), + [anon_sym_class] = ACTIONS(3046), + [anon_sym_struct] = ACTIONS(3046), + [anon_sym_union] = ACTIONS(3046), + [anon_sym_if] = ACTIONS(3046), + [anon_sym_else] = ACTIONS(3046), + [anon_sym_switch] = ACTIONS(3046), + [anon_sym_while] = ACTIONS(3046), + [anon_sym_do] = ACTIONS(3046), + [anon_sym_for] = ACTIONS(3046), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_break] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(3046), + [anon_sym_goto] = ACTIONS(3046), + [anon_sym___try] = ACTIONS(3046), + [anon_sym___leave] = ACTIONS(3046), + [anon_sym_not] = ACTIONS(3046), + [anon_sym_compl] = ACTIONS(3046), + [anon_sym_DASH_DASH] = ACTIONS(3048), + [anon_sym_PLUS_PLUS] = ACTIONS(3048), + [anon_sym_sizeof] = ACTIONS(3046), + [anon_sym___alignof__] = ACTIONS(3046), + [anon_sym___alignof] = ACTIONS(3046), + [anon_sym__alignof] = ACTIONS(3046), + [anon_sym_alignof] = ACTIONS(3046), + [anon_sym__Alignof] = ACTIONS(3046), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3046), + [anon_sym_asm] = ACTIONS(3046), + [anon_sym___asm__] = ACTIONS(3046), + [sym_number_literal] = ACTIONS(3048), + [anon_sym_L_SQUOTE] = ACTIONS(3048), + [anon_sym_u_SQUOTE] = ACTIONS(3048), + [anon_sym_U_SQUOTE] = ACTIONS(3048), + [anon_sym_u8_SQUOTE] = ACTIONS(3048), + [anon_sym_SQUOTE] = ACTIONS(3048), + [anon_sym_L_DQUOTE] = ACTIONS(3048), + [anon_sym_u_DQUOTE] = ACTIONS(3048), + [anon_sym_U_DQUOTE] = ACTIONS(3048), + [anon_sym_u8_DQUOTE] = ACTIONS(3048), + [anon_sym_DQUOTE] = ACTIONS(3048), + [sym_true] = ACTIONS(3046), + [sym_false] = ACTIONS(3046), + [anon_sym_NULL] = ACTIONS(3046), + [anon_sym_nullptr] = ACTIONS(3046), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3046), + [anon_sym_decltype] = ACTIONS(3046), + [anon_sym_virtual] = ACTIONS(3046), + [anon_sym_alignas] = ACTIONS(3046), + [anon_sym_typename] = ACTIONS(3046), + [anon_sym_template] = ACTIONS(3046), + [anon_sym_try] = ACTIONS(3046), + [anon_sym_delete] = ACTIONS(3046), + [anon_sym_throw] = ACTIONS(3046), + [anon_sym_co_return] = ACTIONS(3046), + [anon_sym_co_yield] = ACTIONS(3046), + [anon_sym_catch] = ACTIONS(4514), + [anon_sym_R_DQUOTE] = ACTIONS(3048), + [anon_sym_LR_DQUOTE] = ACTIONS(3048), + [anon_sym_uR_DQUOTE] = ACTIONS(3048), + [anon_sym_UR_DQUOTE] = ACTIONS(3048), + [anon_sym_u8R_DQUOTE] = ACTIONS(3048), + [anon_sym_co_await] = ACTIONS(3046), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_requires] = ACTIONS(3046), + [sym_this] = ACTIONS(3046), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3048), + [sym_semgrep_named_ellipsis] = ACTIONS(3048), }, - [941] = { - [sym_type_qualifier] = STATE(1919), - [sym_expression] = STATE(5924), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_type_definition_type_repeat1] = STATE(1919), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(4450), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4438), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4452), - [anon_sym_const] = ACTIONS(4438), - [anon_sym_constexpr] = ACTIONS(4438), - [anon_sym_volatile] = ACTIONS(4438), - [anon_sym_restrict] = ACTIONS(4438), - [anon_sym___restrict__] = ACTIONS(4438), - [anon_sym__Atomic] = ACTIONS(4438), - [anon_sym__Noreturn] = ACTIONS(4438), - [anon_sym_noreturn] = ACTIONS(4438), - [anon_sym_mutable] = ACTIONS(4438), - [anon_sym_constinit] = ACTIONS(4438), - [anon_sym_consteval] = ACTIONS(4438), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), + [952] = { + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7451), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7305), + [sym_array_declarator] = STATE(7305), + [sym_expression] = STATE(3325), + [sym_expression_not_binary] = STATE(3766), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8737), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3633), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6615), + [sym_qualified_identifier] = STATE(3639), + [sym_qualified_type_identifier] = STATE(3098), + [sym_operator_name] = STATE(7305), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [sym_identifier] = ACTIONS(3704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3706), + [anon_sym_LPAREN2] = ACTIONS(2201), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym___based] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(2217), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_compl] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_operator] = ACTIONS(2257), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, - [942] = { - [sym_type_qualifier] = STATE(961), - [sym_expression] = STATE(5972), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_type_definition_type_repeat1] = STATE(961), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(4454), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4438), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4456), - [anon_sym_const] = ACTIONS(4438), - [anon_sym_constexpr] = ACTIONS(4438), - [anon_sym_volatile] = ACTIONS(4438), - [anon_sym_restrict] = ACTIONS(4438), - [anon_sym___restrict__] = ACTIONS(4438), - [anon_sym__Atomic] = ACTIONS(4438), - [anon_sym__Noreturn] = ACTIONS(4438), - [anon_sym_noreturn] = ACTIONS(4438), - [anon_sym_mutable] = ACTIONS(4438), - [anon_sym_constinit] = ACTIONS(4438), - [anon_sym_consteval] = ACTIONS(4438), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), + [953] = { + [sym_catch_clause] = STATE(953), + [aux_sym_constructor_try_statement_repeat1] = STATE(953), + [sym_identifier] = ACTIONS(3027), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3029), + [anon_sym_LPAREN2] = ACTIONS(3029), + [anon_sym_BANG] = ACTIONS(3029), + [anon_sym_TILDE] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3027), + [anon_sym_STAR] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3029), + [anon_sym_SEMI] = ACTIONS(3029), + [anon_sym___extension__] = ACTIONS(3027), + [anon_sym_typedef] = ACTIONS(3027), + [anon_sym_extern] = ACTIONS(3027), + [anon_sym___attribute__] = ACTIONS(3027), + [anon_sym_COLON_COLON] = ACTIONS(3029), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3029), + [anon_sym___declspec] = ACTIONS(3027), + [anon_sym_LBRACE] = ACTIONS(3029), + [anon_sym_signed] = ACTIONS(3027), + [anon_sym_unsigned] = ACTIONS(3027), + [anon_sym_long] = ACTIONS(3027), + [anon_sym_short] = ACTIONS(3027), + [anon_sym_LBRACK] = ACTIONS(3027), + [anon_sym_static] = ACTIONS(3027), + [anon_sym_register] = ACTIONS(3027), + [anon_sym_inline] = ACTIONS(3027), + [anon_sym___inline] = ACTIONS(3027), + [anon_sym___inline__] = ACTIONS(3027), + [anon_sym___forceinline] = ACTIONS(3027), + [anon_sym_thread_local] = ACTIONS(3027), + [anon_sym___thread] = ACTIONS(3027), + [anon_sym_const] = ACTIONS(3027), + [anon_sym_constexpr] = ACTIONS(3027), + [anon_sym_volatile] = ACTIONS(3027), + [anon_sym_restrict] = ACTIONS(3027), + [anon_sym___restrict__] = ACTIONS(3027), + [anon_sym__Atomic] = ACTIONS(3027), + [anon_sym__Noreturn] = ACTIONS(3027), + [anon_sym_noreturn] = ACTIONS(3027), + [anon_sym_mutable] = ACTIONS(3027), + [anon_sym_constinit] = ACTIONS(3027), + [anon_sym_consteval] = ACTIONS(3027), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3027), + [anon_sym_class] = ACTIONS(3027), + [anon_sym_struct] = ACTIONS(3027), + [anon_sym_union] = ACTIONS(3027), + [anon_sym_if] = ACTIONS(3027), + [anon_sym_else] = ACTIONS(3027), + [anon_sym_switch] = ACTIONS(3027), + [anon_sym_while] = ACTIONS(3027), + [anon_sym_do] = ACTIONS(3027), + [anon_sym_for] = ACTIONS(3027), + [anon_sym_return] = ACTIONS(3027), + [anon_sym_break] = ACTIONS(3027), + [anon_sym_continue] = ACTIONS(3027), + [anon_sym_goto] = ACTIONS(3027), + [anon_sym___try] = ACTIONS(3027), + [anon_sym___leave] = ACTIONS(3027), + [anon_sym_not] = ACTIONS(3027), + [anon_sym_compl] = ACTIONS(3027), + [anon_sym_DASH_DASH] = ACTIONS(3029), + [anon_sym_PLUS_PLUS] = ACTIONS(3029), + [anon_sym_sizeof] = ACTIONS(3027), + [anon_sym___alignof__] = ACTIONS(3027), + [anon_sym___alignof] = ACTIONS(3027), + [anon_sym__alignof] = ACTIONS(3027), + [anon_sym_alignof] = ACTIONS(3027), + [anon_sym__Alignof] = ACTIONS(3027), + [anon_sym_offsetof] = ACTIONS(3027), + [anon_sym__Generic] = ACTIONS(3027), + [anon_sym_asm] = ACTIONS(3027), + [anon_sym___asm__] = ACTIONS(3027), + [sym_number_literal] = ACTIONS(3029), + [anon_sym_L_SQUOTE] = ACTIONS(3029), + [anon_sym_u_SQUOTE] = ACTIONS(3029), + [anon_sym_U_SQUOTE] = ACTIONS(3029), + [anon_sym_u8_SQUOTE] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3029), + [anon_sym_L_DQUOTE] = ACTIONS(3029), + [anon_sym_u_DQUOTE] = ACTIONS(3029), + [anon_sym_U_DQUOTE] = ACTIONS(3029), + [anon_sym_u8_DQUOTE] = ACTIONS(3029), + [anon_sym_DQUOTE] = ACTIONS(3029), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [anon_sym_NULL] = ACTIONS(3027), + [anon_sym_nullptr] = ACTIONS(3027), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3027), + [anon_sym_decltype] = ACTIONS(3027), + [anon_sym_virtual] = ACTIONS(3027), + [anon_sym_alignas] = ACTIONS(3027), + [anon_sym_typename] = ACTIONS(3027), + [anon_sym_template] = ACTIONS(3027), + [anon_sym_try] = ACTIONS(3027), + [anon_sym_delete] = ACTIONS(3027), + [anon_sym_throw] = ACTIONS(3027), + [anon_sym_co_return] = ACTIONS(3027), + [anon_sym_co_yield] = ACTIONS(3027), + [anon_sym_catch] = ACTIONS(4516), + [anon_sym_R_DQUOTE] = ACTIONS(3029), + [anon_sym_LR_DQUOTE] = ACTIONS(3029), + [anon_sym_uR_DQUOTE] = ACTIONS(3029), + [anon_sym_UR_DQUOTE] = ACTIONS(3029), + [anon_sym_u8R_DQUOTE] = ACTIONS(3029), + [anon_sym_co_await] = ACTIONS(3027), + [anon_sym_new] = ACTIONS(3027), + [anon_sym_requires] = ACTIONS(3027), + [sym_this] = ACTIONS(3027), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3029), + [sym_semgrep_named_ellipsis] = ACTIONS(3029), }, - [943] = { - [sym_function_definition] = STATE(796), - [sym_declaration] = STATE(796), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6403), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2102), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7658), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4271), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_empty_declaration] = STATE(796), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(796), - [sym_operator_cast] = STATE(8091), - [sym_constructor_specifiers] = STATE(1939), - [sym_operator_cast_definition] = STATE(796), - [sym_operator_cast_declaration] = STATE(796), - [sym_constructor_or_destructor_definition] = STATE(796), - [sym_constructor_or_destructor_declaration] = STATE(796), - [sym_friend_declaration] = STATE(796), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_alias_declaration] = STATE(796), - [sym_concept_definition] = STATE(796), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6891), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8091), - [sym_operator_name] = STATE(7634), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1939), - [sym_identifier] = ACTIONS(4386), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(65), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(53), - [anon_sym___clrcall] = ACTIONS(53), - [anon_sym___stdcall] = ACTIONS(53), - [anon_sym___fastcall] = ACTIONS(53), - [anon_sym___thiscall] = ACTIONS(53), - [anon_sym___vectorcall] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4424), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4426), - [anon_sym_using] = ACTIONS(4428), - [anon_sym_concept] = ACTIONS(1044), + [954] = { + [sym_identifier] = ACTIONS(3060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3062), + [anon_sym_LPAREN2] = ACTIONS(3062), + [anon_sym_BANG] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_SEMI] = ACTIONS(3062), + [anon_sym___extension__] = ACTIONS(3060), + [anon_sym_typedef] = ACTIONS(3060), + [anon_sym_extern] = ACTIONS(3060), + [anon_sym___attribute__] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3062), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3062), + [anon_sym___declspec] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_signed] = ACTIONS(3060), + [anon_sym_unsigned] = ACTIONS(3060), + [anon_sym_long] = ACTIONS(3060), + [anon_sym_short] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_register] = ACTIONS(3060), + [anon_sym_inline] = ACTIONS(3060), + [anon_sym___inline] = ACTIONS(3060), + [anon_sym___inline__] = ACTIONS(3060), + [anon_sym___forceinline] = ACTIONS(3060), + [anon_sym_thread_local] = ACTIONS(3060), + [anon_sym___thread] = ACTIONS(3060), + [anon_sym_const] = ACTIONS(3060), + [anon_sym_constexpr] = ACTIONS(3060), + [anon_sym_volatile] = ACTIONS(3060), + [anon_sym_restrict] = ACTIONS(3060), + [anon_sym___restrict__] = ACTIONS(3060), + [anon_sym__Atomic] = ACTIONS(3060), + [anon_sym__Noreturn] = ACTIONS(3060), + [anon_sym_noreturn] = ACTIONS(3060), + [anon_sym_mutable] = ACTIONS(3060), + [anon_sym_constinit] = ACTIONS(3060), + [anon_sym_consteval] = ACTIONS(3060), + [sym_primitive_type] = ACTIONS(3060), + [anon_sym_enum] = ACTIONS(3060), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3060), + [anon_sym_union] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_else] = ACTIONS(3060), + [anon_sym_switch] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_goto] = ACTIONS(3060), + [anon_sym___try] = ACTIONS(3060), + [anon_sym___leave] = ACTIONS(3060), + [anon_sym_not] = ACTIONS(3060), + [anon_sym_compl] = ACTIONS(3060), + [anon_sym_DASH_DASH] = ACTIONS(3062), + [anon_sym_PLUS_PLUS] = ACTIONS(3062), + [anon_sym_sizeof] = ACTIONS(3060), + [anon_sym___alignof__] = ACTIONS(3060), + [anon_sym___alignof] = ACTIONS(3060), + [anon_sym__alignof] = ACTIONS(3060), + [anon_sym_alignof] = ACTIONS(3060), + [anon_sym__Alignof] = ACTIONS(3060), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3060), + [anon_sym_asm] = ACTIONS(3060), + [anon_sym___asm__] = ACTIONS(3060), + [sym_number_literal] = ACTIONS(3062), + [anon_sym_L_SQUOTE] = ACTIONS(3062), + [anon_sym_u_SQUOTE] = ACTIONS(3062), + [anon_sym_U_SQUOTE] = ACTIONS(3062), + [anon_sym_u8_SQUOTE] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3062), + [anon_sym_L_DQUOTE] = ACTIONS(3062), + [anon_sym_u_DQUOTE] = ACTIONS(3062), + [anon_sym_U_DQUOTE] = ACTIONS(3062), + [anon_sym_u8_DQUOTE] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3060), + [anon_sym_nullptr] = ACTIONS(3060), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3060), + [anon_sym_decltype] = ACTIONS(3060), + [anon_sym_virtual] = ACTIONS(3060), + [anon_sym_alignas] = ACTIONS(3060), + [anon_sym_typename] = ACTIONS(3060), + [anon_sym_template] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3060), + [anon_sym_throw] = ACTIONS(3060), + [anon_sym_co_return] = ACTIONS(3060), + [anon_sym_co_yield] = ACTIONS(3060), + [anon_sym_catch] = ACTIONS(3060), + [anon_sym_R_DQUOTE] = ACTIONS(3062), + [anon_sym_LR_DQUOTE] = ACTIONS(3062), + [anon_sym_uR_DQUOTE] = ACTIONS(3062), + [anon_sym_UR_DQUOTE] = ACTIONS(3062), + [anon_sym_u8R_DQUOTE] = ACTIONS(3062), + [anon_sym_co_await] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_requires] = ACTIONS(3060), + [sym_this] = ACTIONS(3060), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3062), + [sym_semgrep_named_ellipsis] = ACTIONS(3062), }, - [944] = { - [sym_type_qualifier] = STATE(945), - [sym_expression] = STATE(5947), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_type_definition_type_repeat1] = STATE(945), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(4458), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4438), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4460), - [anon_sym_const] = ACTIONS(4438), - [anon_sym_constexpr] = ACTIONS(4438), - [anon_sym_volatile] = ACTIONS(4438), - [anon_sym_restrict] = ACTIONS(4438), - [anon_sym___restrict__] = ACTIONS(4438), - [anon_sym__Atomic] = ACTIONS(4438), - [anon_sym__Noreturn] = ACTIONS(4438), - [anon_sym_noreturn] = ACTIONS(4438), - [anon_sym_mutable] = ACTIONS(4438), - [anon_sym_constinit] = ACTIONS(4438), - [anon_sym_consteval] = ACTIONS(4438), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), + [955] = { + [sym_identifier] = ACTIONS(2359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2357), + [anon_sym_LPAREN2] = ACTIONS(2357), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_DASH] = ACTIONS(2359), + [anon_sym_PLUS] = ACTIONS(2359), + [anon_sym_STAR] = ACTIONS(2357), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_SEMI] = ACTIONS(2357), + [anon_sym___extension__] = ACTIONS(2359), + [anon_sym_typedef] = ACTIONS(2359), + [anon_sym_extern] = ACTIONS(2359), + [anon_sym___attribute__] = ACTIONS(2359), + [anon_sym_COLON_COLON] = ACTIONS(2357), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2357), + [anon_sym___declspec] = ACTIONS(2359), + [anon_sym_LBRACE] = ACTIONS(2357), + [anon_sym_signed] = ACTIONS(2359), + [anon_sym_unsigned] = ACTIONS(2359), + [anon_sym_long] = ACTIONS(2359), + [anon_sym_short] = ACTIONS(2359), + [anon_sym_LBRACK] = ACTIONS(2359), + [anon_sym_static] = ACTIONS(2359), + [anon_sym_register] = ACTIONS(2359), + [anon_sym_inline] = ACTIONS(2359), + [anon_sym___inline] = ACTIONS(2359), + [anon_sym___inline__] = ACTIONS(2359), + [anon_sym___forceinline] = ACTIONS(2359), + [anon_sym_thread_local] = ACTIONS(2359), + [anon_sym___thread] = ACTIONS(2359), + [anon_sym_const] = ACTIONS(2359), + [anon_sym_constexpr] = ACTIONS(2359), + [anon_sym_volatile] = ACTIONS(2359), + [anon_sym_restrict] = ACTIONS(2359), + [anon_sym___restrict__] = ACTIONS(2359), + [anon_sym__Atomic] = ACTIONS(2359), + [anon_sym__Noreturn] = ACTIONS(2359), + [anon_sym_noreturn] = ACTIONS(2359), + [anon_sym_mutable] = ACTIONS(2359), + [anon_sym_constinit] = ACTIONS(2359), + [anon_sym_consteval] = 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___try] = ACTIONS(2359), + [anon_sym___leave] = ACTIONS(2359), + [anon_sym_not] = ACTIONS(2359), + [anon_sym_compl] = ACTIONS(2359), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_sizeof] = ACTIONS(2359), + [anon_sym___alignof__] = ACTIONS(2359), + [anon_sym___alignof] = ACTIONS(2359), + [anon_sym__alignof] = ACTIONS(2359), + [anon_sym_alignof] = ACTIONS(2359), + [anon_sym__Alignof] = ACTIONS(2359), + [anon_sym_offsetof] = ACTIONS(2359), + [anon_sym__Generic] = ACTIONS(2359), + [anon_sym_asm] = ACTIONS(2359), + [anon_sym___asm__] = ACTIONS(2359), + [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(2359), + [sym_false] = ACTIONS(2359), + [anon_sym_NULL] = ACTIONS(2359), + [anon_sym_nullptr] = ACTIONS(2359), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), + [sym_auto] = ACTIONS(2359), + [anon_sym_decltype] = ACTIONS(2359), + [anon_sym_virtual] = ACTIONS(2359), + [anon_sym_alignas] = 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_catch] = ACTIONS(2359), + [anon_sym_R_DQUOTE] = ACTIONS(2357), + [anon_sym_LR_DQUOTE] = ACTIONS(2357), + [anon_sym_uR_DQUOTE] = ACTIONS(2357), + [anon_sym_UR_DQUOTE] = ACTIONS(2357), + [anon_sym_u8R_DQUOTE] = ACTIONS(2357), + [anon_sym_co_await] = ACTIONS(2359), + [anon_sym_new] = ACTIONS(2359), + [anon_sym_requires] = ACTIONS(2359), + [sym_this] = ACTIONS(2359), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2357), + [sym_semgrep_named_ellipsis] = ACTIONS(2357), }, - [945] = { - [sym_type_qualifier] = STATE(1919), - [sym_expression] = STATE(5948), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_type_definition_type_repeat1] = STATE(1919), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(4462), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4438), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4464), - [anon_sym_const] = ACTIONS(4438), - [anon_sym_constexpr] = ACTIONS(4438), - [anon_sym_volatile] = ACTIONS(4438), - [anon_sym_restrict] = ACTIONS(4438), - [anon_sym___restrict__] = ACTIONS(4438), - [anon_sym__Atomic] = ACTIONS(4438), - [anon_sym__Noreturn] = ACTIONS(4438), - [anon_sym_noreturn] = ACTIONS(4438), - [anon_sym_mutable] = ACTIONS(4438), - [anon_sym_constinit] = ACTIONS(4438), - [anon_sym_consteval] = ACTIONS(4438), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), + [956] = { + [sym_else_clause] = STATE(985), + [sym_identifier] = ACTIONS(3073), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3075), + [anon_sym_LPAREN2] = ACTIONS(3075), + [anon_sym_BANG] = ACTIONS(3075), + [anon_sym_TILDE] = ACTIONS(3075), + [anon_sym_DASH] = ACTIONS(3073), + [anon_sym_PLUS] = ACTIONS(3073), + [anon_sym_STAR] = ACTIONS(3075), + [anon_sym_AMP] = ACTIONS(3075), + [anon_sym_SEMI] = ACTIONS(3075), + [anon_sym___extension__] = ACTIONS(3073), + [anon_sym_typedef] = ACTIONS(3073), + [anon_sym_extern] = ACTIONS(3073), + [anon_sym___attribute__] = ACTIONS(3073), + [anon_sym_COLON_COLON] = ACTIONS(3075), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3075), + [anon_sym___declspec] = ACTIONS(3073), + [anon_sym_LBRACE] = ACTIONS(3075), + [anon_sym_signed] = ACTIONS(3073), + [anon_sym_unsigned] = ACTIONS(3073), + [anon_sym_long] = ACTIONS(3073), + [anon_sym_short] = ACTIONS(3073), + [anon_sym_LBRACK] = ACTIONS(3073), + [anon_sym_static] = ACTIONS(3073), + [anon_sym_register] = ACTIONS(3073), + [anon_sym_inline] = ACTIONS(3073), + [anon_sym___inline] = ACTIONS(3073), + [anon_sym___inline__] = ACTIONS(3073), + [anon_sym___forceinline] = ACTIONS(3073), + [anon_sym_thread_local] = ACTIONS(3073), + [anon_sym___thread] = ACTIONS(3073), + [anon_sym_const] = ACTIONS(3073), + [anon_sym_constexpr] = ACTIONS(3073), + [anon_sym_volatile] = ACTIONS(3073), + [anon_sym_restrict] = ACTIONS(3073), + [anon_sym___restrict__] = ACTIONS(3073), + [anon_sym__Atomic] = ACTIONS(3073), + [anon_sym__Noreturn] = ACTIONS(3073), + [anon_sym_noreturn] = ACTIONS(3073), + [anon_sym_mutable] = ACTIONS(3073), + [anon_sym_constinit] = ACTIONS(3073), + [anon_sym_consteval] = ACTIONS(3073), + [sym_primitive_type] = ACTIONS(3073), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3073), + [anon_sym_struct] = ACTIONS(3073), + [anon_sym_union] = ACTIONS(3073), + [anon_sym_if] = ACTIONS(3073), + [anon_sym_else] = ACTIONS(4519), + [anon_sym_switch] = ACTIONS(3073), + [anon_sym_while] = ACTIONS(3073), + [anon_sym_do] = ACTIONS(3073), + [anon_sym_for] = ACTIONS(3073), + [anon_sym_return] = ACTIONS(3073), + [anon_sym_break] = ACTIONS(3073), + [anon_sym_continue] = ACTIONS(3073), + [anon_sym_goto] = ACTIONS(3073), + [anon_sym___try] = ACTIONS(3073), + [anon_sym___leave] = ACTIONS(3073), + [anon_sym_not] = ACTIONS(3073), + [anon_sym_compl] = ACTIONS(3073), + [anon_sym_DASH_DASH] = ACTIONS(3075), + [anon_sym_PLUS_PLUS] = ACTIONS(3075), + [anon_sym_sizeof] = ACTIONS(3073), + [anon_sym___alignof__] = ACTIONS(3073), + [anon_sym___alignof] = ACTIONS(3073), + [anon_sym__alignof] = ACTIONS(3073), + [anon_sym_alignof] = ACTIONS(3073), + [anon_sym__Alignof] = ACTIONS(3073), + [anon_sym_offsetof] = ACTIONS(3073), + [anon_sym__Generic] = ACTIONS(3073), + [anon_sym_asm] = ACTIONS(3073), + [anon_sym___asm__] = ACTIONS(3073), + [sym_number_literal] = ACTIONS(3075), + [anon_sym_L_SQUOTE] = ACTIONS(3075), + [anon_sym_u_SQUOTE] = ACTIONS(3075), + [anon_sym_U_SQUOTE] = ACTIONS(3075), + [anon_sym_u8_SQUOTE] = ACTIONS(3075), + [anon_sym_SQUOTE] = ACTIONS(3075), + [anon_sym_L_DQUOTE] = ACTIONS(3075), + [anon_sym_u_DQUOTE] = ACTIONS(3075), + [anon_sym_U_DQUOTE] = ACTIONS(3075), + [anon_sym_u8_DQUOTE] = ACTIONS(3075), + [anon_sym_DQUOTE] = ACTIONS(3075), + [sym_true] = ACTIONS(3073), + [sym_false] = ACTIONS(3073), + [anon_sym_NULL] = ACTIONS(3073), + [anon_sym_nullptr] = ACTIONS(3073), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3073), + [anon_sym_decltype] = ACTIONS(3073), + [anon_sym_virtual] = ACTIONS(3073), + [anon_sym_alignas] = ACTIONS(3073), + [anon_sym_typename] = ACTIONS(3073), + [anon_sym_template] = ACTIONS(3073), + [anon_sym_try] = ACTIONS(3073), + [anon_sym_delete] = ACTIONS(3073), + [anon_sym_throw] = ACTIONS(3073), + [anon_sym_co_return] = ACTIONS(3073), + [anon_sym_co_yield] = ACTIONS(3073), + [anon_sym_R_DQUOTE] = ACTIONS(3075), + [anon_sym_LR_DQUOTE] = ACTIONS(3075), + [anon_sym_uR_DQUOTE] = ACTIONS(3075), + [anon_sym_UR_DQUOTE] = ACTIONS(3075), + [anon_sym_u8R_DQUOTE] = ACTIONS(3075), + [anon_sym_co_await] = ACTIONS(3073), + [anon_sym_new] = ACTIONS(3073), + [anon_sym_requires] = ACTIONS(3073), + [sym_this] = ACTIONS(3073), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3075), + [sym_semgrep_named_ellipsis] = ACTIONS(3075), }, - [946] = { - [sym_function_definition] = STATE(2041), - [sym_declaration] = STATE(2041), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6405), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2104), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7690), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4300), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_empty_declaration] = STATE(2041), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2041), - [sym_operator_cast] = STATE(8046), - [sym_constructor_specifiers] = STATE(1934), - [sym_operator_cast_definition] = STATE(2041), - [sym_operator_cast_declaration] = STATE(2041), - [sym_constructor_or_destructor_definition] = STATE(2041), - [sym_constructor_or_destructor_declaration] = STATE(2041), - [sym_friend_declaration] = STATE(2041), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_alias_declaration] = STATE(2041), - [sym_concept_definition] = STATE(2041), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6891), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8046), - [sym_operator_name] = STATE(7634), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1934), - [sym_identifier] = ACTIONS(4386), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(65), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(53), - [anon_sym___clrcall] = ACTIONS(53), - [anon_sym___stdcall] = ACTIONS(53), - [anon_sym___fastcall] = ACTIONS(53), - [anon_sym___thiscall] = ACTIONS(53), - [anon_sym___vectorcall] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(3732), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(3734), - [anon_sym_using] = ACTIONS(4406), - [anon_sym_concept] = ACTIONS(4408), + [957] = { + [sym_identifier] = ACTIONS(2355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2353), + [anon_sym_LPAREN2] = ACTIONS(2353), + [anon_sym_BANG] = ACTIONS(2353), + [anon_sym_TILDE] = ACTIONS(2353), + [anon_sym_DASH] = ACTIONS(2355), + [anon_sym_PLUS] = ACTIONS(2355), + [anon_sym_STAR] = ACTIONS(2353), + [anon_sym_AMP] = ACTIONS(2353), + [anon_sym_SEMI] = ACTIONS(2353), + [anon_sym___extension__] = ACTIONS(2355), + [anon_sym_typedef] = ACTIONS(2355), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym___attribute__] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(2353), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), + [anon_sym___declspec] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2353), + [anon_sym_signed] = ACTIONS(2355), + [anon_sym_unsigned] = ACTIONS(2355), + [anon_sym_long] = ACTIONS(2355), + [anon_sym_short] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_static] = ACTIONS(2355), + [anon_sym_register] = ACTIONS(2355), + [anon_sym_inline] = ACTIONS(2355), + [anon_sym___inline] = ACTIONS(2355), + [anon_sym___inline__] = ACTIONS(2355), + [anon_sym___forceinline] = ACTIONS(2355), + [anon_sym_thread_local] = ACTIONS(2355), + [anon_sym___thread] = ACTIONS(2355), + [anon_sym_const] = ACTIONS(2355), + [anon_sym_constexpr] = ACTIONS(2355), + [anon_sym_volatile] = ACTIONS(2355), + [anon_sym_restrict] = ACTIONS(2355), + [anon_sym___restrict__] = ACTIONS(2355), + [anon_sym__Atomic] = ACTIONS(2355), + [anon_sym__Noreturn] = ACTIONS(2355), + [anon_sym_noreturn] = ACTIONS(2355), + [anon_sym_mutable] = ACTIONS(2355), + [anon_sym_constinit] = ACTIONS(2355), + [anon_sym_consteval] = 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___try] = ACTIONS(2355), + [anon_sym___leave] = ACTIONS(2355), + [anon_sym_not] = ACTIONS(2355), + [anon_sym_compl] = ACTIONS(2355), + [anon_sym_DASH_DASH] = ACTIONS(2353), + [anon_sym_PLUS_PLUS] = ACTIONS(2353), + [anon_sym_sizeof] = ACTIONS(2355), + [anon_sym___alignof__] = ACTIONS(2355), + [anon_sym___alignof] = ACTIONS(2355), + [anon_sym__alignof] = ACTIONS(2355), + [anon_sym_alignof] = ACTIONS(2355), + [anon_sym__Alignof] = ACTIONS(2355), + [anon_sym_offsetof] = ACTIONS(2355), + [anon_sym__Generic] = ACTIONS(2355), + [anon_sym_asm] = ACTIONS(2355), + [anon_sym___asm__] = ACTIONS(2355), + [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(2355), + [sym_false] = ACTIONS(2355), + [anon_sym_NULL] = ACTIONS(2355), + [anon_sym_nullptr] = ACTIONS(2355), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2355), + [anon_sym_decltype] = ACTIONS(2355), + [anon_sym_virtual] = ACTIONS(2355), + [anon_sym_alignas] = 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_catch] = ACTIONS(2355), + [anon_sym_R_DQUOTE] = ACTIONS(2353), + [anon_sym_LR_DQUOTE] = ACTIONS(2353), + [anon_sym_uR_DQUOTE] = ACTIONS(2353), + [anon_sym_UR_DQUOTE] = ACTIONS(2353), + [anon_sym_u8R_DQUOTE] = ACTIONS(2353), + [anon_sym_co_await] = ACTIONS(2355), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_requires] = ACTIONS(2355), + [sym_this] = ACTIONS(2355), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2353), + [sym_semgrep_named_ellipsis] = ACTIONS(2353), }, - [947] = { - [sym_type_qualifier] = STATE(948), - [sym_expression] = STATE(5962), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_type_definition_type_repeat1] = STATE(948), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(4466), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4438), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4468), - [anon_sym_const] = ACTIONS(4438), - [anon_sym_constexpr] = ACTIONS(4438), - [anon_sym_volatile] = ACTIONS(4438), - [anon_sym_restrict] = ACTIONS(4438), - [anon_sym___restrict__] = ACTIONS(4438), - [anon_sym__Atomic] = ACTIONS(4438), - [anon_sym__Noreturn] = ACTIONS(4438), - [anon_sym_noreturn] = ACTIONS(4438), - [anon_sym_mutable] = ACTIONS(4438), - [anon_sym_constinit] = ACTIONS(4438), - [anon_sym_consteval] = ACTIONS(4438), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), + [958] = { + [sym_else_clause] = STATE(982), + [sym_identifier] = ACTIONS(3064), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3066), + [anon_sym_LPAREN2] = ACTIONS(3066), + [anon_sym_BANG] = ACTIONS(3066), + [anon_sym_TILDE] = ACTIONS(3066), + [anon_sym_DASH] = ACTIONS(3064), + [anon_sym_PLUS] = ACTIONS(3064), + [anon_sym_STAR] = ACTIONS(3066), + [anon_sym_AMP] = ACTIONS(3066), + [anon_sym_SEMI] = ACTIONS(3066), + [anon_sym___extension__] = ACTIONS(3064), + [anon_sym_typedef] = ACTIONS(3064), + [anon_sym_extern] = ACTIONS(3064), + [anon_sym___attribute__] = ACTIONS(3064), + [anon_sym_COLON_COLON] = ACTIONS(3066), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3066), + [anon_sym___declspec] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(3066), + [anon_sym_signed] = ACTIONS(3064), + [anon_sym_unsigned] = ACTIONS(3064), + [anon_sym_long] = ACTIONS(3064), + [anon_sym_short] = ACTIONS(3064), + [anon_sym_LBRACK] = ACTIONS(3064), + [anon_sym_static] = ACTIONS(3064), + [anon_sym_register] = ACTIONS(3064), + [anon_sym_inline] = ACTIONS(3064), + [anon_sym___inline] = ACTIONS(3064), + [anon_sym___inline__] = ACTIONS(3064), + [anon_sym___forceinline] = ACTIONS(3064), + [anon_sym_thread_local] = ACTIONS(3064), + [anon_sym___thread] = ACTIONS(3064), + [anon_sym_const] = ACTIONS(3064), + [anon_sym_constexpr] = ACTIONS(3064), + [anon_sym_volatile] = ACTIONS(3064), + [anon_sym_restrict] = ACTIONS(3064), + [anon_sym___restrict__] = ACTIONS(3064), + [anon_sym__Atomic] = ACTIONS(3064), + [anon_sym__Noreturn] = ACTIONS(3064), + [anon_sym_noreturn] = ACTIONS(3064), + [anon_sym_mutable] = ACTIONS(3064), + [anon_sym_constinit] = ACTIONS(3064), + [anon_sym_consteval] = ACTIONS(3064), + [sym_primitive_type] = ACTIONS(3064), + [anon_sym_enum] = ACTIONS(3064), + [anon_sym_class] = ACTIONS(3064), + [anon_sym_struct] = ACTIONS(3064), + [anon_sym_union] = ACTIONS(3064), + [anon_sym_if] = ACTIONS(3064), + [anon_sym_else] = ACTIONS(4519), + [anon_sym_switch] = ACTIONS(3064), + [anon_sym_while] = ACTIONS(3064), + [anon_sym_do] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(3064), + [anon_sym_return] = ACTIONS(3064), + [anon_sym_break] = ACTIONS(3064), + [anon_sym_continue] = ACTIONS(3064), + [anon_sym_goto] = ACTIONS(3064), + [anon_sym___try] = ACTIONS(3064), + [anon_sym___leave] = ACTIONS(3064), + [anon_sym_not] = ACTIONS(3064), + [anon_sym_compl] = ACTIONS(3064), + [anon_sym_DASH_DASH] = ACTIONS(3066), + [anon_sym_PLUS_PLUS] = ACTIONS(3066), + [anon_sym_sizeof] = ACTIONS(3064), + [anon_sym___alignof__] = ACTIONS(3064), + [anon_sym___alignof] = ACTIONS(3064), + [anon_sym__alignof] = ACTIONS(3064), + [anon_sym_alignof] = ACTIONS(3064), + [anon_sym__Alignof] = ACTIONS(3064), + [anon_sym_offsetof] = ACTIONS(3064), + [anon_sym__Generic] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3064), + [anon_sym___asm__] = ACTIONS(3064), + [sym_number_literal] = ACTIONS(3066), + [anon_sym_L_SQUOTE] = ACTIONS(3066), + [anon_sym_u_SQUOTE] = ACTIONS(3066), + [anon_sym_U_SQUOTE] = ACTIONS(3066), + [anon_sym_u8_SQUOTE] = ACTIONS(3066), + [anon_sym_SQUOTE] = ACTIONS(3066), + [anon_sym_L_DQUOTE] = ACTIONS(3066), + [anon_sym_u_DQUOTE] = ACTIONS(3066), + [anon_sym_U_DQUOTE] = ACTIONS(3066), + [anon_sym_u8_DQUOTE] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3066), + [sym_true] = ACTIONS(3064), + [sym_false] = ACTIONS(3064), + [anon_sym_NULL] = ACTIONS(3064), + [anon_sym_nullptr] = ACTIONS(3064), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3064), + [anon_sym_decltype] = ACTIONS(3064), + [anon_sym_virtual] = ACTIONS(3064), + [anon_sym_alignas] = ACTIONS(3064), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_try] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3064), + [anon_sym_throw] = ACTIONS(3064), + [anon_sym_co_return] = ACTIONS(3064), + [anon_sym_co_yield] = ACTIONS(3064), + [anon_sym_R_DQUOTE] = ACTIONS(3066), + [anon_sym_LR_DQUOTE] = ACTIONS(3066), + [anon_sym_uR_DQUOTE] = ACTIONS(3066), + [anon_sym_UR_DQUOTE] = ACTIONS(3066), + [anon_sym_u8R_DQUOTE] = ACTIONS(3066), + [anon_sym_co_await] = ACTIONS(3064), + [anon_sym_new] = ACTIONS(3064), + [anon_sym_requires] = ACTIONS(3064), + [sym_this] = ACTIONS(3064), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3066), + [sym_semgrep_named_ellipsis] = ACTIONS(3066), }, - [948] = { - [sym_type_qualifier] = STATE(1919), - [sym_expression] = STATE(5963), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_type_definition_type_repeat1] = STATE(1919), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(4470), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4438), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4472), - [anon_sym_const] = ACTIONS(4438), - [anon_sym_constexpr] = ACTIONS(4438), - [anon_sym_volatile] = ACTIONS(4438), - [anon_sym_restrict] = ACTIONS(4438), - [anon_sym___restrict__] = ACTIONS(4438), - [anon_sym__Atomic] = ACTIONS(4438), - [anon_sym__Noreturn] = ACTIONS(4438), - [anon_sym_noreturn] = ACTIONS(4438), - [anon_sym_mutable] = ACTIONS(4438), - [anon_sym_constinit] = ACTIONS(4438), - [anon_sym_consteval] = ACTIONS(4438), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), + [959] = { + [sym_identifier] = ACTIONS(3147), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3149), + [anon_sym_LPAREN2] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_TILDE] = ACTIONS(3149), + [anon_sym_DASH] = ACTIONS(3147), + [anon_sym_PLUS] = ACTIONS(3147), + [anon_sym_STAR] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3149), + [anon_sym_SEMI] = ACTIONS(3149), + [anon_sym___extension__] = ACTIONS(3147), + [anon_sym_typedef] = ACTIONS(3147), + [anon_sym_extern] = ACTIONS(3147), + [anon_sym___attribute__] = ACTIONS(3147), + [anon_sym_COLON_COLON] = ACTIONS(3149), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3149), + [anon_sym___declspec] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_signed] = ACTIONS(3147), + [anon_sym_unsigned] = ACTIONS(3147), + [anon_sym_long] = ACTIONS(3147), + [anon_sym_short] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_static] = ACTIONS(3147), + [anon_sym_register] = ACTIONS(3147), + [anon_sym_inline] = ACTIONS(3147), + [anon_sym___inline] = ACTIONS(3147), + [anon_sym___inline__] = ACTIONS(3147), + [anon_sym___forceinline] = ACTIONS(3147), + [anon_sym_thread_local] = ACTIONS(3147), + [anon_sym___thread] = ACTIONS(3147), + [anon_sym_const] = ACTIONS(3147), + [anon_sym_constexpr] = ACTIONS(3147), + [anon_sym_volatile] = ACTIONS(3147), + [anon_sym_restrict] = ACTIONS(3147), + [anon_sym___restrict__] = ACTIONS(3147), + [anon_sym__Atomic] = ACTIONS(3147), + [anon_sym__Noreturn] = ACTIONS(3147), + [anon_sym_noreturn] = ACTIONS(3147), + [anon_sym_mutable] = ACTIONS(3147), + [anon_sym_constinit] = ACTIONS(3147), + [anon_sym_consteval] = ACTIONS(3147), + [sym_primitive_type] = ACTIONS(3147), + [anon_sym_enum] = ACTIONS(3147), + [anon_sym_class] = ACTIONS(3147), + [anon_sym_struct] = ACTIONS(3147), + [anon_sym_union] = ACTIONS(3147), + [anon_sym_if] = ACTIONS(3147), + [anon_sym_else] = ACTIONS(3147), + [anon_sym_switch] = ACTIONS(3147), + [anon_sym_while] = ACTIONS(3147), + [anon_sym_do] = ACTIONS(3147), + [anon_sym_for] = ACTIONS(3147), + [anon_sym_return] = ACTIONS(3147), + [anon_sym_break] = ACTIONS(3147), + [anon_sym_continue] = ACTIONS(3147), + [anon_sym_goto] = ACTIONS(3147), + [anon_sym___try] = ACTIONS(3147), + [anon_sym___leave] = ACTIONS(3147), + [anon_sym_not] = ACTIONS(3147), + [anon_sym_compl] = ACTIONS(3147), + [anon_sym_DASH_DASH] = ACTIONS(3149), + [anon_sym_PLUS_PLUS] = ACTIONS(3149), + [anon_sym_sizeof] = ACTIONS(3147), + [anon_sym___alignof__] = ACTIONS(3147), + [anon_sym___alignof] = ACTIONS(3147), + [anon_sym__alignof] = ACTIONS(3147), + [anon_sym_alignof] = ACTIONS(3147), + [anon_sym__Alignof] = ACTIONS(3147), + [anon_sym_offsetof] = ACTIONS(3147), + [anon_sym__Generic] = ACTIONS(3147), + [anon_sym_asm] = ACTIONS(3147), + [anon_sym___asm__] = ACTIONS(3147), + [sym_number_literal] = ACTIONS(3149), + [anon_sym_L_SQUOTE] = ACTIONS(3149), + [anon_sym_u_SQUOTE] = ACTIONS(3149), + [anon_sym_U_SQUOTE] = ACTIONS(3149), + [anon_sym_u8_SQUOTE] = ACTIONS(3149), + [anon_sym_SQUOTE] = ACTIONS(3149), + [anon_sym_L_DQUOTE] = ACTIONS(3149), + [anon_sym_u_DQUOTE] = ACTIONS(3149), + [anon_sym_U_DQUOTE] = ACTIONS(3149), + [anon_sym_u8_DQUOTE] = ACTIONS(3149), + [anon_sym_DQUOTE] = ACTIONS(3149), + [sym_true] = ACTIONS(3147), + [sym_false] = ACTIONS(3147), + [anon_sym_NULL] = ACTIONS(3147), + [anon_sym_nullptr] = ACTIONS(3147), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), + [sym_auto] = ACTIONS(3147), + [anon_sym_decltype] = ACTIONS(3147), + [anon_sym_virtual] = ACTIONS(3147), + [anon_sym_alignas] = ACTIONS(3147), + [anon_sym_typename] = ACTIONS(3147), + [anon_sym_template] = ACTIONS(3147), + [anon_sym_try] = ACTIONS(3147), + [anon_sym_delete] = ACTIONS(3147), + [anon_sym_throw] = ACTIONS(3147), + [anon_sym_co_return] = ACTIONS(3147), + [anon_sym_co_yield] = ACTIONS(3147), + [anon_sym_R_DQUOTE] = ACTIONS(3149), + [anon_sym_LR_DQUOTE] = ACTIONS(3149), + [anon_sym_uR_DQUOTE] = ACTIONS(3149), + [anon_sym_UR_DQUOTE] = ACTIONS(3149), + [anon_sym_u8R_DQUOTE] = ACTIONS(3149), + [anon_sym_co_await] = ACTIONS(3147), + [anon_sym_new] = ACTIONS(3147), + [anon_sym_requires] = ACTIONS(3147), + [sym_this] = ACTIONS(3147), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3149), + [sym_semgrep_named_ellipsis] = ACTIONS(3149), }, - [949] = { - [sym_function_definition] = STATE(857), - [sym_declaration] = STATE(857), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6398), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2086), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7635), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4374), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_empty_declaration] = STATE(857), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(857), - [sym_operator_cast] = STATE(8070), - [sym_constructor_specifiers] = STATE(1940), - [sym_operator_cast_definition] = STATE(857), - [sym_operator_cast_declaration] = STATE(857), - [sym_constructor_or_destructor_definition] = STATE(857), - [sym_constructor_or_destructor_declaration] = STATE(857), - [sym_friend_declaration] = STATE(857), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_alias_declaration] = STATE(857), - [sym_concept_definition] = STATE(857), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6891), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8070), - [sym_operator_name] = STATE(7634), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1940), - [sym_identifier] = ACTIONS(4386), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(65), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(53), - [anon_sym___clrcall] = ACTIONS(53), - [anon_sym___stdcall] = ACTIONS(53), - [anon_sym___fastcall] = ACTIONS(53), - [anon_sym___thiscall] = ACTIONS(53), - [anon_sym___vectorcall] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4400), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4402), - [anon_sym_using] = ACTIONS(4404), - [anon_sym_concept] = ACTIONS(149), + [960] = { + [sym_identifier] = ACTIONS(4346), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4348), + [anon_sym_LPAREN2] = ACTIONS(4348), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4346), + [anon_sym_PLUS] = ACTIONS(4346), + [anon_sym_STAR] = ACTIONS(4348), + [anon_sym_AMP] = ACTIONS(4348), + [anon_sym_SEMI] = ACTIONS(4348), + [anon_sym___extension__] = ACTIONS(4346), + [anon_sym_extern] = ACTIONS(4346), + [anon_sym___attribute__] = ACTIONS(4346), + [anon_sym_COLON_COLON] = ACTIONS(4348), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4348), + [anon_sym___declspec] = ACTIONS(4346), + [anon_sym_LBRACE] = ACTIONS(4348), + [anon_sym_signed] = ACTIONS(4346), + [anon_sym_unsigned] = ACTIONS(4346), + [anon_sym_long] = ACTIONS(4346), + [anon_sym_short] = ACTIONS(4346), + [anon_sym_LBRACK] = ACTIONS(4346), + [anon_sym_static] = ACTIONS(4346), + [anon_sym_register] = ACTIONS(4346), + [anon_sym_inline] = ACTIONS(4346), + [anon_sym___inline] = ACTIONS(4346), + [anon_sym___inline__] = ACTIONS(4346), + [anon_sym___forceinline] = ACTIONS(4346), + [anon_sym_thread_local] = ACTIONS(4346), + [anon_sym___thread] = ACTIONS(4346), + [anon_sym_const] = ACTIONS(4346), + [anon_sym_constexpr] = ACTIONS(4346), + [anon_sym_volatile] = ACTIONS(4346), + [anon_sym_restrict] = ACTIONS(4346), + [anon_sym___restrict__] = ACTIONS(4346), + [anon_sym__Atomic] = ACTIONS(4346), + [anon_sym__Noreturn] = ACTIONS(4346), + [anon_sym_noreturn] = ACTIONS(4346), + [anon_sym_mutable] = ACTIONS(4346), + [anon_sym_constinit] = ACTIONS(4346), + [anon_sym_consteval] = ACTIONS(4346), + [sym_primitive_type] = ACTIONS(4346), + [anon_sym_enum] = ACTIONS(4346), + [anon_sym_class] = ACTIONS(4346), + [anon_sym_struct] = ACTIONS(4346), + [anon_sym_union] = ACTIONS(4346), + [anon_sym_if] = ACTIONS(4346), + [anon_sym_switch] = ACTIONS(4346), + [anon_sym_case] = ACTIONS(4346), + [anon_sym_default] = ACTIONS(4346), + [anon_sym_while] = ACTIONS(4346), + [anon_sym_do] = ACTIONS(4346), + [anon_sym_for] = ACTIONS(4346), + [anon_sym_return] = ACTIONS(4346), + [anon_sym_break] = ACTIONS(4346), + [anon_sym_continue] = ACTIONS(4346), + [anon_sym_goto] = ACTIONS(4346), + [anon_sym___try] = ACTIONS(4346), + [anon_sym___leave] = ACTIONS(4346), + [anon_sym_not] = ACTIONS(4346), + [anon_sym_compl] = ACTIONS(4346), + [anon_sym_DASH_DASH] = ACTIONS(4348), + [anon_sym_PLUS_PLUS] = ACTIONS(4348), + [anon_sym_sizeof] = ACTIONS(4346), + [anon_sym___alignof__] = ACTIONS(4346), + [anon_sym___alignof] = ACTIONS(4346), + [anon_sym__alignof] = ACTIONS(4346), + [anon_sym_alignof] = ACTIONS(4346), + [anon_sym__Alignof] = ACTIONS(4346), + [anon_sym_offsetof] = ACTIONS(4346), + [anon_sym__Generic] = ACTIONS(4346), + [anon_sym_asm] = ACTIONS(4346), + [anon_sym___asm__] = ACTIONS(4346), + [sym_number_literal] = ACTIONS(4348), + [anon_sym_L_SQUOTE] = ACTIONS(4348), + [anon_sym_u_SQUOTE] = ACTIONS(4348), + [anon_sym_U_SQUOTE] = ACTIONS(4348), + [anon_sym_u8_SQUOTE] = ACTIONS(4348), + [anon_sym_SQUOTE] = ACTIONS(4348), + [anon_sym_L_DQUOTE] = ACTIONS(4348), + [anon_sym_u_DQUOTE] = ACTIONS(4348), + [anon_sym_U_DQUOTE] = ACTIONS(4348), + [anon_sym_u8_DQUOTE] = ACTIONS(4348), + [anon_sym_DQUOTE] = ACTIONS(4348), + [sym_true] = ACTIONS(4346), + [sym_false] = ACTIONS(4346), + [anon_sym_NULL] = ACTIONS(4346), + [anon_sym_nullptr] = ACTIONS(4346), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4346), + [anon_sym_decltype] = ACTIONS(4346), + [anon_sym_virtual] = ACTIONS(4346), + [anon_sym_alignas] = ACTIONS(4346), + [anon_sym_typename] = ACTIONS(4346), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_try] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4346), + [anon_sym_throw] = ACTIONS(4346), + [anon_sym_co_return] = ACTIONS(4346), + [anon_sym_co_yield] = ACTIONS(4346), + [anon_sym_R_DQUOTE] = ACTIONS(4348), + [anon_sym_LR_DQUOTE] = ACTIONS(4348), + [anon_sym_uR_DQUOTE] = ACTIONS(4348), + [anon_sym_UR_DQUOTE] = ACTIONS(4348), + [anon_sym_u8R_DQUOTE] = ACTIONS(4348), + [anon_sym_co_await] = ACTIONS(4346), + [anon_sym_new] = ACTIONS(4346), + [anon_sym_requires] = ACTIONS(4346), + [sym_this] = ACTIONS(4346), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4348), + [sym_semgrep_named_ellipsis] = ACTIONS(4348), }, - [950] = { - [sym_type_qualifier] = STATE(963), - [sym_expression] = STATE(6034), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_type_definition_type_repeat1] = STATE(963), - [sym_identifier] = ACTIONS(4474), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(4476), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4438), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4478), - [anon_sym_const] = ACTIONS(4438), - [anon_sym_constexpr] = ACTIONS(4438), - [anon_sym_volatile] = ACTIONS(4438), - [anon_sym_restrict] = ACTIONS(4438), - [anon_sym___restrict__] = ACTIONS(4438), - [anon_sym__Atomic] = ACTIONS(4438), - [anon_sym__Noreturn] = ACTIONS(4438), - [anon_sym_noreturn] = ACTIONS(4438), - [anon_sym_mutable] = ACTIONS(4438), - [anon_sym_constinit] = ACTIONS(4438), - [anon_sym_consteval] = ACTIONS(4438), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), + [961] = { + [sym_identifier] = ACTIONS(3087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_BANG] = ACTIONS(3089), + [anon_sym_TILDE] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3087), + [anon_sym_STAR] = ACTIONS(3089), + [anon_sym_AMP] = ACTIONS(3089), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_typedef] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3089), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3089), + [anon_sym___declspec] = ACTIONS(3087), + [anon_sym_LBRACE] = ACTIONS(3089), + [anon_sym_signed] = ACTIONS(3087), + [anon_sym_unsigned] = ACTIONS(3087), + [anon_sym_long] = ACTIONS(3087), + [anon_sym_short] = ACTIONS(3087), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_register] = ACTIONS(3087), + [anon_sym_inline] = ACTIONS(3087), + [anon_sym___inline] = ACTIONS(3087), + [anon_sym___inline__] = ACTIONS(3087), + [anon_sym___forceinline] = ACTIONS(3087), + [anon_sym_thread_local] = ACTIONS(3087), + [anon_sym___thread] = ACTIONS(3087), + [anon_sym_const] = ACTIONS(3087), + [anon_sym_constexpr] = ACTIONS(3087), + [anon_sym_volatile] = ACTIONS(3087), + [anon_sym_restrict] = ACTIONS(3087), + [anon_sym___restrict__] = ACTIONS(3087), + [anon_sym__Atomic] = ACTIONS(3087), + [anon_sym__Noreturn] = ACTIONS(3087), + [anon_sym_noreturn] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [sym_primitive_type] = ACTIONS(3087), + [anon_sym_enum] = ACTIONS(3087), + [anon_sym_class] = ACTIONS(3087), + [anon_sym_struct] = ACTIONS(3087), + [anon_sym_union] = ACTIONS(3087), + [anon_sym_if] = ACTIONS(3087), + [anon_sym_else] = ACTIONS(3087), + [anon_sym_switch] = ACTIONS(3087), + [anon_sym_while] = ACTIONS(3087), + [anon_sym_do] = ACTIONS(3087), + [anon_sym_for] = ACTIONS(3087), + [anon_sym_return] = ACTIONS(3087), + [anon_sym_break] = ACTIONS(3087), + [anon_sym_continue] = ACTIONS(3087), + [anon_sym_goto] = ACTIONS(3087), + [anon_sym___try] = ACTIONS(3087), + [anon_sym___leave] = ACTIONS(3087), + [anon_sym_not] = ACTIONS(3087), + [anon_sym_compl] = ACTIONS(3087), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_sizeof] = ACTIONS(3087), + [anon_sym___alignof__] = ACTIONS(3087), + [anon_sym___alignof] = ACTIONS(3087), + [anon_sym__alignof] = ACTIONS(3087), + [anon_sym_alignof] = ACTIONS(3087), + [anon_sym__Alignof] = ACTIONS(3087), + [anon_sym_offsetof] = ACTIONS(3087), + [anon_sym__Generic] = ACTIONS(3087), + [anon_sym_asm] = ACTIONS(3087), + [anon_sym___asm__] = ACTIONS(3087), + [sym_number_literal] = ACTIONS(3089), + [anon_sym_L_SQUOTE] = ACTIONS(3089), + [anon_sym_u_SQUOTE] = ACTIONS(3089), + [anon_sym_U_SQUOTE] = ACTIONS(3089), + [anon_sym_u8_SQUOTE] = ACTIONS(3089), + [anon_sym_SQUOTE] = ACTIONS(3089), + [anon_sym_L_DQUOTE] = ACTIONS(3089), + [anon_sym_u_DQUOTE] = ACTIONS(3089), + [anon_sym_U_DQUOTE] = ACTIONS(3089), + [anon_sym_u8_DQUOTE] = ACTIONS(3089), + [anon_sym_DQUOTE] = ACTIONS(3089), + [sym_true] = ACTIONS(3087), + [sym_false] = ACTIONS(3087), + [anon_sym_NULL] = ACTIONS(3087), + [anon_sym_nullptr] = ACTIONS(3087), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym_typename] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_try] = ACTIONS(3087), + [anon_sym_delete] = ACTIONS(3087), + [anon_sym_throw] = ACTIONS(3087), + [anon_sym_co_return] = ACTIONS(3087), + [anon_sym_co_yield] = ACTIONS(3087), + [anon_sym_R_DQUOTE] = ACTIONS(3089), + [anon_sym_LR_DQUOTE] = ACTIONS(3089), + [anon_sym_uR_DQUOTE] = ACTIONS(3089), + [anon_sym_UR_DQUOTE] = ACTIONS(3089), + [anon_sym_u8R_DQUOTE] = ACTIONS(3089), + [anon_sym_co_await] = ACTIONS(3087), + [anon_sym_new] = ACTIONS(3087), + [anon_sym_requires] = ACTIONS(3087), + [sym_this] = ACTIONS(3087), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3089), + [sym_semgrep_named_ellipsis] = ACTIONS(3089), }, - [951] = { - [sym_function_definition] = STATE(377), - [sym_declaration] = STATE(377), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6397), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2100), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7654), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4229), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_empty_declaration] = STATE(377), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(377), - [sym_operator_cast] = STATE(8100), - [sym_constructor_specifiers] = STATE(1951), - [sym_operator_cast_definition] = STATE(377), - [sym_operator_cast_declaration] = STATE(377), - [sym_constructor_or_destructor_definition] = STATE(377), - [sym_constructor_or_destructor_declaration] = STATE(377), - [sym_friend_declaration] = STATE(377), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_alias_declaration] = STATE(377), - [sym_concept_definition] = STATE(377), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6891), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8100), - [sym_operator_name] = STATE(7634), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1951), - [sym_identifier] = ACTIONS(4386), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(65), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(53), - [anon_sym___clrcall] = ACTIONS(53), - [anon_sym___stdcall] = ACTIONS(53), - [anon_sym___fastcall] = ACTIONS(53), - [anon_sym___thiscall] = ACTIONS(53), - [anon_sym___vectorcall] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4430), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4432), - [anon_sym_using] = ACTIONS(4434), - [anon_sym_concept] = ACTIONS(351), + [962] = { + [sym_identifier] = ACTIONS(3181), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3183), + [anon_sym_LPAREN2] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3183), + [anon_sym_TILDE] = ACTIONS(3183), + [anon_sym_DASH] = ACTIONS(3181), + [anon_sym_PLUS] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3183), + [anon_sym_AMP] = ACTIONS(3183), + [anon_sym_SEMI] = ACTIONS(3183), + [anon_sym___extension__] = ACTIONS(3181), + [anon_sym_typedef] = ACTIONS(3181), + [anon_sym_extern] = ACTIONS(3181), + [anon_sym___attribute__] = ACTIONS(3181), + [anon_sym_COLON_COLON] = ACTIONS(3183), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3183), + [anon_sym___declspec] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_signed] = ACTIONS(3181), + [anon_sym_unsigned] = ACTIONS(3181), + [anon_sym_long] = ACTIONS(3181), + [anon_sym_short] = ACTIONS(3181), + [anon_sym_LBRACK] = ACTIONS(3181), + [anon_sym_static] = ACTIONS(3181), + [anon_sym_register] = ACTIONS(3181), + [anon_sym_inline] = ACTIONS(3181), + [anon_sym___inline] = ACTIONS(3181), + [anon_sym___inline__] = ACTIONS(3181), + [anon_sym___forceinline] = ACTIONS(3181), + [anon_sym_thread_local] = ACTIONS(3181), + [anon_sym___thread] = ACTIONS(3181), + [anon_sym_const] = ACTIONS(3181), + [anon_sym_constexpr] = ACTIONS(3181), + [anon_sym_volatile] = ACTIONS(3181), + [anon_sym_restrict] = ACTIONS(3181), + [anon_sym___restrict__] = ACTIONS(3181), + [anon_sym__Atomic] = ACTIONS(3181), + [anon_sym__Noreturn] = ACTIONS(3181), + [anon_sym_noreturn] = ACTIONS(3181), + [anon_sym_mutable] = ACTIONS(3181), + [anon_sym_constinit] = ACTIONS(3181), + [anon_sym_consteval] = ACTIONS(3181), + [sym_primitive_type] = ACTIONS(3181), + [anon_sym_enum] = ACTIONS(3181), + [anon_sym_class] = ACTIONS(3181), + [anon_sym_struct] = ACTIONS(3181), + [anon_sym_union] = ACTIONS(3181), + [anon_sym_if] = ACTIONS(3181), + [anon_sym_else] = ACTIONS(3181), + [anon_sym_switch] = ACTIONS(3181), + [anon_sym_while] = ACTIONS(3181), + [anon_sym_do] = ACTIONS(3181), + [anon_sym_for] = ACTIONS(3181), + [anon_sym_return] = ACTIONS(3181), + [anon_sym_break] = ACTIONS(3181), + [anon_sym_continue] = ACTIONS(3181), + [anon_sym_goto] = ACTIONS(3181), + [anon_sym___try] = ACTIONS(3181), + [anon_sym___leave] = ACTIONS(3181), + [anon_sym_not] = ACTIONS(3181), + [anon_sym_compl] = ACTIONS(3181), + [anon_sym_DASH_DASH] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_sizeof] = ACTIONS(3181), + [anon_sym___alignof__] = ACTIONS(3181), + [anon_sym___alignof] = ACTIONS(3181), + [anon_sym__alignof] = ACTIONS(3181), + [anon_sym_alignof] = ACTIONS(3181), + [anon_sym__Alignof] = ACTIONS(3181), + [anon_sym_offsetof] = ACTIONS(3181), + [anon_sym__Generic] = ACTIONS(3181), + [anon_sym_asm] = ACTIONS(3181), + [anon_sym___asm__] = ACTIONS(3181), + [sym_number_literal] = ACTIONS(3183), + [anon_sym_L_SQUOTE] = ACTIONS(3183), + [anon_sym_u_SQUOTE] = ACTIONS(3183), + [anon_sym_U_SQUOTE] = ACTIONS(3183), + [anon_sym_u8_SQUOTE] = ACTIONS(3183), + [anon_sym_SQUOTE] = ACTIONS(3183), + [anon_sym_L_DQUOTE] = ACTIONS(3183), + [anon_sym_u_DQUOTE] = ACTIONS(3183), + [anon_sym_U_DQUOTE] = ACTIONS(3183), + [anon_sym_u8_DQUOTE] = ACTIONS(3183), + [anon_sym_DQUOTE] = ACTIONS(3183), + [sym_true] = ACTIONS(3181), + [sym_false] = ACTIONS(3181), + [anon_sym_NULL] = ACTIONS(3181), + [anon_sym_nullptr] = ACTIONS(3181), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3181), + [anon_sym_decltype] = ACTIONS(3181), + [anon_sym_virtual] = ACTIONS(3181), + [anon_sym_alignas] = ACTIONS(3181), + [anon_sym_typename] = ACTIONS(3181), + [anon_sym_template] = ACTIONS(3181), + [anon_sym_try] = ACTIONS(3181), + [anon_sym_delete] = ACTIONS(3181), + [anon_sym_throw] = ACTIONS(3181), + [anon_sym_co_return] = ACTIONS(3181), + [anon_sym_co_yield] = ACTIONS(3181), + [anon_sym_R_DQUOTE] = ACTIONS(3183), + [anon_sym_LR_DQUOTE] = ACTIONS(3183), + [anon_sym_uR_DQUOTE] = ACTIONS(3183), + [anon_sym_UR_DQUOTE] = ACTIONS(3183), + [anon_sym_u8R_DQUOTE] = ACTIONS(3183), + [anon_sym_co_await] = ACTIONS(3181), + [anon_sym_new] = ACTIONS(3181), + [anon_sym_requires] = ACTIONS(3181), + [sym_this] = ACTIONS(3181), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3183), + [sym_semgrep_named_ellipsis] = ACTIONS(3183), }, - [952] = { - [sym_function_definition] = STATE(2147), - [sym_declaration] = STATE(2147), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6407), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2105), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7662), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4309), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_empty_declaration] = STATE(2147), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2147), - [sym_operator_cast] = STATE(8085), - [sym_constructor_specifiers] = STATE(1942), - [sym_operator_cast_definition] = STATE(2147), - [sym_operator_cast_declaration] = STATE(2147), - [sym_constructor_or_destructor_definition] = STATE(2147), - [sym_constructor_or_destructor_declaration] = STATE(2147), - [sym_friend_declaration] = STATE(2147), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_alias_declaration] = STATE(2147), - [sym_concept_definition] = STATE(2147), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6891), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8085), - [sym_operator_name] = STATE(7634), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1942), - [sym_identifier] = ACTIONS(4386), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(65), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(53), - [anon_sym___clrcall] = ACTIONS(53), - [anon_sym___stdcall] = ACTIONS(53), - [anon_sym___fastcall] = ACTIONS(53), - [anon_sym___thiscall] = ACTIONS(53), - [anon_sym___vectorcall] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), + [963] = { + [sym_identifier] = ACTIONS(3219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3221), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_BANG] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_STAR] = ACTIONS(3221), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3221), + [anon_sym___extension__] = ACTIONS(3219), + [anon_sym_typedef] = ACTIONS(3219), + [anon_sym_extern] = ACTIONS(3219), + [anon_sym___attribute__] = ACTIONS(3219), + [anon_sym_COLON_COLON] = ACTIONS(3221), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3221), + [anon_sym___declspec] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_signed] = ACTIONS(3219), + [anon_sym_unsigned] = ACTIONS(3219), + [anon_sym_long] = ACTIONS(3219), + [anon_sym_short] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_register] = ACTIONS(3219), + [anon_sym_inline] = ACTIONS(3219), + [anon_sym___inline] = ACTIONS(3219), + [anon_sym___inline__] = ACTIONS(3219), + [anon_sym___forceinline] = ACTIONS(3219), + [anon_sym_thread_local] = ACTIONS(3219), + [anon_sym___thread] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_constexpr] = ACTIONS(3219), + [anon_sym_volatile] = ACTIONS(3219), + [anon_sym_restrict] = ACTIONS(3219), + [anon_sym___restrict__] = ACTIONS(3219), + [anon_sym__Atomic] = ACTIONS(3219), + [anon_sym__Noreturn] = ACTIONS(3219), + [anon_sym_noreturn] = ACTIONS(3219), + [anon_sym_mutable] = ACTIONS(3219), + [anon_sym_constinit] = ACTIONS(3219), + [anon_sym_consteval] = ACTIONS(3219), + [sym_primitive_type] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_struct] = ACTIONS(3219), + [anon_sym_union] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_else] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_goto] = ACTIONS(3219), + [anon_sym___try] = ACTIONS(3219), + [anon_sym___leave] = ACTIONS(3219), + [anon_sym_not] = ACTIONS(3219), + [anon_sym_compl] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_sizeof] = ACTIONS(3219), + [anon_sym___alignof__] = ACTIONS(3219), + [anon_sym___alignof] = ACTIONS(3219), + [anon_sym__alignof] = ACTIONS(3219), + [anon_sym_alignof] = ACTIONS(3219), + [anon_sym__Alignof] = ACTIONS(3219), + [anon_sym_offsetof] = ACTIONS(3219), + [anon_sym__Generic] = ACTIONS(3219), + [anon_sym_asm] = ACTIONS(3219), + [anon_sym___asm__] = ACTIONS(3219), + [sym_number_literal] = ACTIONS(3221), + [anon_sym_L_SQUOTE] = ACTIONS(3221), + [anon_sym_u_SQUOTE] = ACTIONS(3221), + [anon_sym_U_SQUOTE] = ACTIONS(3221), + [anon_sym_u8_SQUOTE] = ACTIONS(3221), + [anon_sym_SQUOTE] = ACTIONS(3221), + [anon_sym_L_DQUOTE] = ACTIONS(3221), + [anon_sym_u_DQUOTE] = ACTIONS(3221), + [anon_sym_U_DQUOTE] = ACTIONS(3221), + [anon_sym_u8_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [anon_sym_NULL] = ACTIONS(3219), + [anon_sym_nullptr] = ACTIONS(3219), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(3878), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(3880), - [anon_sym_using] = ACTIONS(4414), - [anon_sym_concept] = ACTIONS(4416), + [sym_auto] = ACTIONS(3219), + [anon_sym_decltype] = ACTIONS(3219), + [anon_sym_virtual] = ACTIONS(3219), + [anon_sym_alignas] = ACTIONS(3219), + [anon_sym_typename] = ACTIONS(3219), + [anon_sym_template] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_delete] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_co_return] = ACTIONS(3219), + [anon_sym_co_yield] = ACTIONS(3219), + [anon_sym_R_DQUOTE] = ACTIONS(3221), + [anon_sym_LR_DQUOTE] = ACTIONS(3221), + [anon_sym_uR_DQUOTE] = ACTIONS(3221), + [anon_sym_UR_DQUOTE] = ACTIONS(3221), + [anon_sym_u8R_DQUOTE] = ACTIONS(3221), + [anon_sym_co_await] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_requires] = ACTIONS(3219), + [sym_this] = ACTIONS(3219), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3221), + [sym_semgrep_named_ellipsis] = ACTIONS(3221), }, - [953] = { - [sym_type_qualifier] = STATE(955), - [sym_expression] = STATE(6042), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_type_definition_type_repeat1] = STATE(955), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(4480), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4438), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4482), - [anon_sym_const] = ACTIONS(4438), - [anon_sym_constexpr] = ACTIONS(4438), - [anon_sym_volatile] = ACTIONS(4438), - [anon_sym_restrict] = ACTIONS(4438), - [anon_sym___restrict__] = ACTIONS(4438), - [anon_sym__Atomic] = ACTIONS(4438), - [anon_sym__Noreturn] = ACTIONS(4438), - [anon_sym_noreturn] = ACTIONS(4438), - [anon_sym_mutable] = ACTIONS(4438), - [anon_sym_constinit] = ACTIONS(4438), - [anon_sym_consteval] = ACTIONS(4438), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), + [964] = { + [sym_identifier] = ACTIONS(3115), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3117), + [anon_sym_LPAREN2] = ACTIONS(3117), + [anon_sym_BANG] = ACTIONS(3117), + [anon_sym_TILDE] = ACTIONS(3117), + [anon_sym_DASH] = ACTIONS(3115), + [anon_sym_PLUS] = ACTIONS(3115), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_SEMI] = ACTIONS(3117), + [anon_sym___extension__] = ACTIONS(3115), + [anon_sym_typedef] = ACTIONS(3115), + [anon_sym_extern] = ACTIONS(3115), + [anon_sym___attribute__] = ACTIONS(3115), + [anon_sym_COLON_COLON] = ACTIONS(3117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3117), + [anon_sym___declspec] = ACTIONS(3115), + [anon_sym_LBRACE] = ACTIONS(3117), + [anon_sym_signed] = ACTIONS(3115), + [anon_sym_unsigned] = ACTIONS(3115), + [anon_sym_long] = ACTIONS(3115), + [anon_sym_short] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3115), + [anon_sym_static] = ACTIONS(3115), + [anon_sym_register] = ACTIONS(3115), + [anon_sym_inline] = ACTIONS(3115), + [anon_sym___inline] = ACTIONS(3115), + [anon_sym___inline__] = ACTIONS(3115), + [anon_sym___forceinline] = ACTIONS(3115), + [anon_sym_thread_local] = ACTIONS(3115), + [anon_sym___thread] = ACTIONS(3115), + [anon_sym_const] = ACTIONS(3115), + [anon_sym_constexpr] = ACTIONS(3115), + [anon_sym_volatile] = ACTIONS(3115), + [anon_sym_restrict] = ACTIONS(3115), + [anon_sym___restrict__] = ACTIONS(3115), + [anon_sym__Atomic] = ACTIONS(3115), + [anon_sym__Noreturn] = ACTIONS(3115), + [anon_sym_noreturn] = ACTIONS(3115), + [anon_sym_mutable] = ACTIONS(3115), + [anon_sym_constinit] = ACTIONS(3115), + [anon_sym_consteval] = ACTIONS(3115), + [sym_primitive_type] = ACTIONS(3115), + [anon_sym_enum] = ACTIONS(3115), + [anon_sym_class] = ACTIONS(3115), + [anon_sym_struct] = ACTIONS(3115), + [anon_sym_union] = ACTIONS(3115), + [anon_sym_if] = ACTIONS(3115), + [anon_sym_else] = ACTIONS(3115), + [anon_sym_switch] = ACTIONS(3115), + [anon_sym_while] = ACTIONS(3115), + [anon_sym_do] = ACTIONS(3115), + [anon_sym_for] = ACTIONS(3115), + [anon_sym_return] = ACTIONS(3115), + [anon_sym_break] = ACTIONS(3115), + [anon_sym_continue] = ACTIONS(3115), + [anon_sym_goto] = ACTIONS(3115), + [anon_sym___try] = ACTIONS(3115), + [anon_sym___leave] = ACTIONS(3115), + [anon_sym_not] = ACTIONS(3115), + [anon_sym_compl] = ACTIONS(3115), + [anon_sym_DASH_DASH] = ACTIONS(3117), + [anon_sym_PLUS_PLUS] = ACTIONS(3117), + [anon_sym_sizeof] = ACTIONS(3115), + [anon_sym___alignof__] = ACTIONS(3115), + [anon_sym___alignof] = ACTIONS(3115), + [anon_sym__alignof] = ACTIONS(3115), + [anon_sym_alignof] = ACTIONS(3115), + [anon_sym__Alignof] = ACTIONS(3115), + [anon_sym_offsetof] = ACTIONS(3115), + [anon_sym__Generic] = ACTIONS(3115), + [anon_sym_asm] = ACTIONS(3115), + [anon_sym___asm__] = ACTIONS(3115), + [sym_number_literal] = ACTIONS(3117), + [anon_sym_L_SQUOTE] = ACTIONS(3117), + [anon_sym_u_SQUOTE] = ACTIONS(3117), + [anon_sym_U_SQUOTE] = ACTIONS(3117), + [anon_sym_u8_SQUOTE] = ACTIONS(3117), + [anon_sym_SQUOTE] = ACTIONS(3117), + [anon_sym_L_DQUOTE] = ACTIONS(3117), + [anon_sym_u_DQUOTE] = ACTIONS(3117), + [anon_sym_U_DQUOTE] = ACTIONS(3117), + [anon_sym_u8_DQUOTE] = ACTIONS(3117), + [anon_sym_DQUOTE] = ACTIONS(3117), + [sym_true] = ACTIONS(3115), + [sym_false] = ACTIONS(3115), + [anon_sym_NULL] = ACTIONS(3115), + [anon_sym_nullptr] = ACTIONS(3115), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3115), + [anon_sym_decltype] = ACTIONS(3115), + [anon_sym_virtual] = ACTIONS(3115), + [anon_sym_alignas] = ACTIONS(3115), + [anon_sym_typename] = ACTIONS(3115), + [anon_sym_template] = ACTIONS(3115), + [anon_sym_try] = ACTIONS(3115), + [anon_sym_delete] = ACTIONS(3115), + [anon_sym_throw] = ACTIONS(3115), + [anon_sym_co_return] = ACTIONS(3115), + [anon_sym_co_yield] = ACTIONS(3115), + [anon_sym_R_DQUOTE] = ACTIONS(3117), + [anon_sym_LR_DQUOTE] = ACTIONS(3117), + [anon_sym_uR_DQUOTE] = ACTIONS(3117), + [anon_sym_UR_DQUOTE] = ACTIONS(3117), + [anon_sym_u8R_DQUOTE] = ACTIONS(3117), + [anon_sym_co_await] = ACTIONS(3115), + [anon_sym_new] = ACTIONS(3115), + [anon_sym_requires] = ACTIONS(3115), + [sym_this] = ACTIONS(3115), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3117), + [sym_semgrep_named_ellipsis] = ACTIONS(3117), }, - [954] = { - [sym_function_definition] = STATE(711), - [sym_declaration] = STATE(711), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6394), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2098), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7699), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4376), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_empty_declaration] = STATE(711), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(711), - [sym_operator_cast] = STATE(8096), - [sym_constructor_specifiers] = STATE(1949), - [sym_operator_cast_definition] = STATE(711), - [sym_operator_cast_declaration] = STATE(711), - [sym_constructor_or_destructor_definition] = STATE(711), - [sym_constructor_or_destructor_declaration] = STATE(711), - [sym_friend_declaration] = STATE(711), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_alias_declaration] = STATE(711), - [sym_concept_definition] = STATE(711), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6891), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8096), - [sym_operator_name] = STATE(7634), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(4386), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(65), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(53), - [anon_sym___clrcall] = ACTIONS(53), - [anon_sym___stdcall] = ACTIONS(53), - [anon_sym___fastcall] = ACTIONS(53), - [anon_sym___thiscall] = ACTIONS(53), - [anon_sym___vectorcall] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4388), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4390), - [anon_sym_using] = ACTIONS(4392), - [anon_sym_concept] = ACTIONS(243), + [965] = { + [sym_identifier] = ACTIONS(3131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3133), + [anon_sym_LPAREN2] = ACTIONS(3133), + [anon_sym_BANG] = ACTIONS(3133), + [anon_sym_TILDE] = ACTIONS(3133), + [anon_sym_DASH] = ACTIONS(3131), + [anon_sym_PLUS] = ACTIONS(3131), + [anon_sym_STAR] = ACTIONS(3133), + [anon_sym_AMP] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3133), + [anon_sym___extension__] = ACTIONS(3131), + [anon_sym_typedef] = ACTIONS(3131), + [anon_sym_extern] = ACTIONS(3131), + [anon_sym___attribute__] = ACTIONS(3131), + [anon_sym_COLON_COLON] = ACTIONS(3133), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3133), + [anon_sym___declspec] = ACTIONS(3131), + [anon_sym_LBRACE] = ACTIONS(3133), + [anon_sym_signed] = ACTIONS(3131), + [anon_sym_unsigned] = ACTIONS(3131), + [anon_sym_long] = ACTIONS(3131), + [anon_sym_short] = ACTIONS(3131), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_static] = ACTIONS(3131), + [anon_sym_register] = ACTIONS(3131), + [anon_sym_inline] = ACTIONS(3131), + [anon_sym___inline] = ACTIONS(3131), + [anon_sym___inline__] = ACTIONS(3131), + [anon_sym___forceinline] = ACTIONS(3131), + [anon_sym_thread_local] = ACTIONS(3131), + [anon_sym___thread] = ACTIONS(3131), + [anon_sym_const] = ACTIONS(3131), + [anon_sym_constexpr] = ACTIONS(3131), + [anon_sym_volatile] = ACTIONS(3131), + [anon_sym_restrict] = ACTIONS(3131), + [anon_sym___restrict__] = ACTIONS(3131), + [anon_sym__Atomic] = ACTIONS(3131), + [anon_sym__Noreturn] = ACTIONS(3131), + [anon_sym_noreturn] = ACTIONS(3131), + [anon_sym_mutable] = ACTIONS(3131), + [anon_sym_constinit] = ACTIONS(3131), + [anon_sym_consteval] = ACTIONS(3131), + [sym_primitive_type] = ACTIONS(3131), + [anon_sym_enum] = ACTIONS(3131), + [anon_sym_class] = ACTIONS(3131), + [anon_sym_struct] = ACTIONS(3131), + [anon_sym_union] = ACTIONS(3131), + [anon_sym_if] = ACTIONS(3131), + [anon_sym_else] = ACTIONS(3131), + [anon_sym_switch] = ACTIONS(3131), + [anon_sym_while] = ACTIONS(3131), + [anon_sym_do] = ACTIONS(3131), + [anon_sym_for] = ACTIONS(3131), + [anon_sym_return] = ACTIONS(3131), + [anon_sym_break] = ACTIONS(3131), + [anon_sym_continue] = ACTIONS(3131), + [anon_sym_goto] = ACTIONS(3131), + [anon_sym___try] = ACTIONS(3131), + [anon_sym___leave] = ACTIONS(3131), + [anon_sym_not] = ACTIONS(3131), + [anon_sym_compl] = ACTIONS(3131), + [anon_sym_DASH_DASH] = ACTIONS(3133), + [anon_sym_PLUS_PLUS] = ACTIONS(3133), + [anon_sym_sizeof] = ACTIONS(3131), + [anon_sym___alignof__] = ACTIONS(3131), + [anon_sym___alignof] = ACTIONS(3131), + [anon_sym__alignof] = ACTIONS(3131), + [anon_sym_alignof] = ACTIONS(3131), + [anon_sym__Alignof] = ACTIONS(3131), + [anon_sym_offsetof] = ACTIONS(3131), + [anon_sym__Generic] = ACTIONS(3131), + [anon_sym_asm] = ACTIONS(3131), + [anon_sym___asm__] = ACTIONS(3131), + [sym_number_literal] = ACTIONS(3133), + [anon_sym_L_SQUOTE] = ACTIONS(3133), + [anon_sym_u_SQUOTE] = ACTIONS(3133), + [anon_sym_U_SQUOTE] = ACTIONS(3133), + [anon_sym_u8_SQUOTE] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3133), + [anon_sym_L_DQUOTE] = ACTIONS(3133), + [anon_sym_u_DQUOTE] = ACTIONS(3133), + [anon_sym_U_DQUOTE] = ACTIONS(3133), + [anon_sym_u8_DQUOTE] = ACTIONS(3133), + [anon_sym_DQUOTE] = ACTIONS(3133), + [sym_true] = ACTIONS(3131), + [sym_false] = ACTIONS(3131), + [anon_sym_NULL] = ACTIONS(3131), + [anon_sym_nullptr] = ACTIONS(3131), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3131), + [anon_sym_decltype] = ACTIONS(3131), + [anon_sym_virtual] = ACTIONS(3131), + [anon_sym_alignas] = ACTIONS(3131), + [anon_sym_typename] = ACTIONS(3131), + [anon_sym_template] = ACTIONS(3131), + [anon_sym_try] = ACTIONS(3131), + [anon_sym_delete] = ACTIONS(3131), + [anon_sym_throw] = ACTIONS(3131), + [anon_sym_co_return] = ACTIONS(3131), + [anon_sym_co_yield] = ACTIONS(3131), + [anon_sym_R_DQUOTE] = ACTIONS(3133), + [anon_sym_LR_DQUOTE] = ACTIONS(3133), + [anon_sym_uR_DQUOTE] = ACTIONS(3133), + [anon_sym_UR_DQUOTE] = ACTIONS(3133), + [anon_sym_u8R_DQUOTE] = ACTIONS(3133), + [anon_sym_co_await] = ACTIONS(3131), + [anon_sym_new] = ACTIONS(3131), + [anon_sym_requires] = ACTIONS(3131), + [sym_this] = ACTIONS(3131), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3133), + [sym_semgrep_named_ellipsis] = ACTIONS(3133), }, - [955] = { - [sym_type_qualifier] = STATE(1919), - [sym_expression] = STATE(6047), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_type_definition_type_repeat1] = STATE(1919), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(4484), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4438), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4486), - [anon_sym_const] = ACTIONS(4438), - [anon_sym_constexpr] = ACTIONS(4438), - [anon_sym_volatile] = ACTIONS(4438), - [anon_sym_restrict] = ACTIONS(4438), - [anon_sym___restrict__] = ACTIONS(4438), - [anon_sym__Atomic] = ACTIONS(4438), - [anon_sym__Noreturn] = ACTIONS(4438), - [anon_sym_noreturn] = ACTIONS(4438), - [anon_sym_mutable] = ACTIONS(4438), - [anon_sym_constinit] = ACTIONS(4438), - [anon_sym_consteval] = ACTIONS(4438), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), + [966] = { + [sym_identifier] = ACTIONS(3151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3153), + [anon_sym_LPAREN2] = ACTIONS(3153), + [anon_sym_BANG] = ACTIONS(3153), + [anon_sym_TILDE] = ACTIONS(3153), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3153), + [anon_sym_SEMI] = ACTIONS(3153), + [anon_sym___extension__] = ACTIONS(3151), + [anon_sym_typedef] = ACTIONS(3151), + [anon_sym_extern] = ACTIONS(3151), + [anon_sym___attribute__] = ACTIONS(3151), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3153), + [anon_sym___declspec] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_signed] = ACTIONS(3151), + [anon_sym_unsigned] = ACTIONS(3151), + [anon_sym_long] = ACTIONS(3151), + [anon_sym_short] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_static] = ACTIONS(3151), + [anon_sym_register] = ACTIONS(3151), + [anon_sym_inline] = ACTIONS(3151), + [anon_sym___inline] = ACTIONS(3151), + [anon_sym___inline__] = ACTIONS(3151), + [anon_sym___forceinline] = ACTIONS(3151), + [anon_sym_thread_local] = ACTIONS(3151), + [anon_sym___thread] = ACTIONS(3151), + [anon_sym_const] = ACTIONS(3151), + [anon_sym_constexpr] = ACTIONS(3151), + [anon_sym_volatile] = ACTIONS(3151), + [anon_sym_restrict] = ACTIONS(3151), + [anon_sym___restrict__] = ACTIONS(3151), + [anon_sym__Atomic] = ACTIONS(3151), + [anon_sym__Noreturn] = ACTIONS(3151), + [anon_sym_noreturn] = ACTIONS(3151), + [anon_sym_mutable] = ACTIONS(3151), + [anon_sym_constinit] = ACTIONS(3151), + [anon_sym_consteval] = ACTIONS(3151), + [sym_primitive_type] = ACTIONS(3151), + [anon_sym_enum] = ACTIONS(3151), + [anon_sym_class] = ACTIONS(3151), + [anon_sym_struct] = ACTIONS(3151), + [anon_sym_union] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_else] = ACTIONS(3151), + [anon_sym_switch] = ACTIONS(3151), + [anon_sym_while] = ACTIONS(3151), + [anon_sym_do] = ACTIONS(3151), + [anon_sym_for] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3151), + [anon_sym_break] = ACTIONS(3151), + [anon_sym_continue] = ACTIONS(3151), + [anon_sym_goto] = ACTIONS(3151), + [anon_sym___try] = ACTIONS(3151), + [anon_sym___leave] = ACTIONS(3151), + [anon_sym_not] = ACTIONS(3151), + [anon_sym_compl] = ACTIONS(3151), + [anon_sym_DASH_DASH] = ACTIONS(3153), + [anon_sym_PLUS_PLUS] = ACTIONS(3153), + [anon_sym_sizeof] = ACTIONS(3151), + [anon_sym___alignof__] = ACTIONS(3151), + [anon_sym___alignof] = ACTIONS(3151), + [anon_sym__alignof] = ACTIONS(3151), + [anon_sym_alignof] = ACTIONS(3151), + [anon_sym__Alignof] = ACTIONS(3151), + [anon_sym_offsetof] = ACTIONS(3151), + [anon_sym__Generic] = ACTIONS(3151), + [anon_sym_asm] = ACTIONS(3151), + [anon_sym___asm__] = ACTIONS(3151), + [sym_number_literal] = ACTIONS(3153), + [anon_sym_L_SQUOTE] = ACTIONS(3153), + [anon_sym_u_SQUOTE] = ACTIONS(3153), + [anon_sym_U_SQUOTE] = ACTIONS(3153), + [anon_sym_u8_SQUOTE] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3153), + [anon_sym_L_DQUOTE] = ACTIONS(3153), + [anon_sym_u_DQUOTE] = ACTIONS(3153), + [anon_sym_U_DQUOTE] = ACTIONS(3153), + [anon_sym_u8_DQUOTE] = ACTIONS(3153), + [anon_sym_DQUOTE] = ACTIONS(3153), + [sym_true] = ACTIONS(3151), + [sym_false] = ACTIONS(3151), + [anon_sym_NULL] = ACTIONS(3151), + [anon_sym_nullptr] = ACTIONS(3151), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), + [sym_auto] = ACTIONS(3151), + [anon_sym_decltype] = ACTIONS(3151), + [anon_sym_virtual] = ACTIONS(3151), + [anon_sym_alignas] = ACTIONS(3151), + [anon_sym_typename] = ACTIONS(3151), + [anon_sym_template] = ACTIONS(3151), + [anon_sym_try] = ACTIONS(3151), + [anon_sym_delete] = ACTIONS(3151), + [anon_sym_throw] = ACTIONS(3151), + [anon_sym_co_return] = ACTIONS(3151), + [anon_sym_co_yield] = ACTIONS(3151), + [anon_sym_R_DQUOTE] = ACTIONS(3153), + [anon_sym_LR_DQUOTE] = ACTIONS(3153), + [anon_sym_uR_DQUOTE] = ACTIONS(3153), + [anon_sym_UR_DQUOTE] = ACTIONS(3153), + [anon_sym_u8R_DQUOTE] = ACTIONS(3153), + [anon_sym_co_await] = ACTIONS(3151), + [anon_sym_new] = ACTIONS(3151), + [anon_sym_requires] = ACTIONS(3151), + [sym_this] = ACTIONS(3151), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3153), + [sym_semgrep_named_ellipsis] = ACTIONS(3153), }, - [956] = { - [sym_type_qualifier] = STATE(963), - [sym_expression] = STATE(6034), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_type_definition_type_repeat1] = STATE(963), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(4476), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4438), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4478), - [anon_sym_const] = ACTIONS(4438), - [anon_sym_constexpr] = ACTIONS(4438), - [anon_sym_volatile] = ACTIONS(4438), - [anon_sym_restrict] = ACTIONS(4438), - [anon_sym___restrict__] = ACTIONS(4438), - [anon_sym__Atomic] = ACTIONS(4438), - [anon_sym__Noreturn] = ACTIONS(4438), - [anon_sym_noreturn] = ACTIONS(4438), - [anon_sym_mutable] = ACTIONS(4438), - [anon_sym_constinit] = ACTIONS(4438), - [anon_sym_consteval] = ACTIONS(4438), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), + [967] = { + [sym_identifier] = ACTIONS(3155), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3157), + [anon_sym_LPAREN2] = ACTIONS(3157), + [anon_sym_BANG] = ACTIONS(3157), + [anon_sym_TILDE] = ACTIONS(3157), + [anon_sym_DASH] = ACTIONS(3155), + [anon_sym_PLUS] = ACTIONS(3155), + [anon_sym_STAR] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3157), + [anon_sym_SEMI] = ACTIONS(3157), + [anon_sym___extension__] = ACTIONS(3155), + [anon_sym_typedef] = ACTIONS(3155), + [anon_sym_extern] = ACTIONS(3155), + [anon_sym___attribute__] = ACTIONS(3155), + [anon_sym_COLON_COLON] = ACTIONS(3157), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3157), + [anon_sym___declspec] = ACTIONS(3155), + [anon_sym_LBRACE] = ACTIONS(3157), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3155), + [anon_sym_static] = ACTIONS(3155), + [anon_sym_register] = ACTIONS(3155), + [anon_sym_inline] = ACTIONS(3155), + [anon_sym___inline] = ACTIONS(3155), + [anon_sym___inline__] = ACTIONS(3155), + [anon_sym___forceinline] = ACTIONS(3155), + [anon_sym_thread_local] = ACTIONS(3155), + [anon_sym___thread] = ACTIONS(3155), + [anon_sym_const] = ACTIONS(3155), + [anon_sym_constexpr] = ACTIONS(3155), + [anon_sym_volatile] = ACTIONS(3155), + [anon_sym_restrict] = ACTIONS(3155), + [anon_sym___restrict__] = ACTIONS(3155), + [anon_sym__Atomic] = ACTIONS(3155), + [anon_sym__Noreturn] = ACTIONS(3155), + [anon_sym_noreturn] = ACTIONS(3155), + [anon_sym_mutable] = ACTIONS(3155), + [anon_sym_constinit] = ACTIONS(3155), + [anon_sym_consteval] = ACTIONS(3155), + [sym_primitive_type] = ACTIONS(3155), + [anon_sym_enum] = ACTIONS(3155), + [anon_sym_class] = ACTIONS(3155), + [anon_sym_struct] = ACTIONS(3155), + [anon_sym_union] = ACTIONS(3155), + [anon_sym_if] = ACTIONS(3155), + [anon_sym_else] = ACTIONS(3155), + [anon_sym_switch] = ACTIONS(3155), + [anon_sym_while] = ACTIONS(3155), + [anon_sym_do] = ACTIONS(3155), + [anon_sym_for] = ACTIONS(3155), + [anon_sym_return] = ACTIONS(3155), + [anon_sym_break] = ACTIONS(3155), + [anon_sym_continue] = ACTIONS(3155), + [anon_sym_goto] = ACTIONS(3155), + [anon_sym___try] = ACTIONS(3155), + [anon_sym___leave] = ACTIONS(3155), + [anon_sym_not] = ACTIONS(3155), + [anon_sym_compl] = ACTIONS(3155), + [anon_sym_DASH_DASH] = ACTIONS(3157), + [anon_sym_PLUS_PLUS] = ACTIONS(3157), + [anon_sym_sizeof] = ACTIONS(3155), + [anon_sym___alignof__] = ACTIONS(3155), + [anon_sym___alignof] = ACTIONS(3155), + [anon_sym__alignof] = ACTIONS(3155), + [anon_sym_alignof] = ACTIONS(3155), + [anon_sym__Alignof] = ACTIONS(3155), + [anon_sym_offsetof] = ACTIONS(3155), + [anon_sym__Generic] = ACTIONS(3155), + [anon_sym_asm] = ACTIONS(3155), + [anon_sym___asm__] = ACTIONS(3155), + [sym_number_literal] = ACTIONS(3157), + [anon_sym_L_SQUOTE] = ACTIONS(3157), + [anon_sym_u_SQUOTE] = ACTIONS(3157), + [anon_sym_U_SQUOTE] = ACTIONS(3157), + [anon_sym_u8_SQUOTE] = ACTIONS(3157), + [anon_sym_SQUOTE] = ACTIONS(3157), + [anon_sym_L_DQUOTE] = ACTIONS(3157), + [anon_sym_u_DQUOTE] = ACTIONS(3157), + [anon_sym_U_DQUOTE] = ACTIONS(3157), + [anon_sym_u8_DQUOTE] = ACTIONS(3157), + [anon_sym_DQUOTE] = ACTIONS(3157), + [sym_true] = ACTIONS(3155), + [sym_false] = ACTIONS(3155), + [anon_sym_NULL] = ACTIONS(3155), + [anon_sym_nullptr] = ACTIONS(3155), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), + [sym_auto] = ACTIONS(3155), + [anon_sym_decltype] = ACTIONS(3155), + [anon_sym_virtual] = ACTIONS(3155), + [anon_sym_alignas] = ACTIONS(3155), + [anon_sym_typename] = ACTIONS(3155), + [anon_sym_template] = ACTIONS(3155), + [anon_sym_try] = ACTIONS(3155), + [anon_sym_delete] = ACTIONS(3155), + [anon_sym_throw] = ACTIONS(3155), + [anon_sym_co_return] = ACTIONS(3155), + [anon_sym_co_yield] = ACTIONS(3155), + [anon_sym_R_DQUOTE] = ACTIONS(3157), + [anon_sym_LR_DQUOTE] = ACTIONS(3157), + [anon_sym_uR_DQUOTE] = ACTIONS(3157), + [anon_sym_UR_DQUOTE] = ACTIONS(3157), + [anon_sym_u8R_DQUOTE] = ACTIONS(3157), + [anon_sym_co_await] = ACTIONS(3155), + [anon_sym_new] = ACTIONS(3155), + [anon_sym_requires] = ACTIONS(3155), + [sym_this] = ACTIONS(3155), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3157), + [sym_semgrep_named_ellipsis] = ACTIONS(3157), }, - [957] = { - [sym_type_qualifier] = STATE(1919), - [sym_expression] = STATE(5978), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_type_definition_type_repeat1] = STATE(1919), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(4488), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4438), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4490), - [anon_sym_const] = ACTIONS(4438), - [anon_sym_constexpr] = ACTIONS(4438), - [anon_sym_volatile] = ACTIONS(4438), - [anon_sym_restrict] = ACTIONS(4438), - [anon_sym___restrict__] = ACTIONS(4438), - [anon_sym__Atomic] = ACTIONS(4438), - [anon_sym__Noreturn] = ACTIONS(4438), - [anon_sym_noreturn] = ACTIONS(4438), - [anon_sym_mutable] = ACTIONS(4438), - [anon_sym_constinit] = ACTIONS(4438), - [anon_sym_consteval] = ACTIONS(4438), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), + [968] = { + [sym_identifier] = ACTIONS(3167), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3169), + [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___extension__] = ACTIONS(3167), + [anon_sym_typedef] = ACTIONS(3167), + [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_signed] = ACTIONS(3167), + [anon_sym_unsigned] = ACTIONS(3167), + [anon_sym_long] = ACTIONS(3167), + [anon_sym_short] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_static] = ACTIONS(3167), + [anon_sym_register] = ACTIONS(3167), + [anon_sym_inline] = ACTIONS(3167), + [anon_sym___inline] = ACTIONS(3167), + [anon_sym___inline__] = ACTIONS(3167), + [anon_sym___forceinline] = ACTIONS(3167), + [anon_sym_thread_local] = ACTIONS(3167), + [anon_sym___thread] = ACTIONS(3167), + [anon_sym_const] = ACTIONS(3167), + [anon_sym_constexpr] = ACTIONS(3167), + [anon_sym_volatile] = ACTIONS(3167), + [anon_sym_restrict] = ACTIONS(3167), + [anon_sym___restrict__] = ACTIONS(3167), + [anon_sym__Atomic] = ACTIONS(3167), + [anon_sym__Noreturn] = ACTIONS(3167), + [anon_sym_noreturn] = ACTIONS(3167), + [anon_sym_mutable] = ACTIONS(3167), + [anon_sym_constinit] = ACTIONS(3167), + [anon_sym_consteval] = 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_else] = ACTIONS(3167), + [anon_sym_switch] = 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___try] = ACTIONS(3167), + [anon_sym___leave] = 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), + [anon_sym___alignof__] = ACTIONS(3167), + [anon_sym___alignof] = ACTIONS(3167), + [anon_sym__alignof] = ACTIONS(3167), + [anon_sym_alignof] = ACTIONS(3167), + [anon_sym__Alignof] = ACTIONS(3167), + [anon_sym_offsetof] = ACTIONS(3167), + [anon_sym__Generic] = ACTIONS(3167), + [anon_sym_asm] = ACTIONS(3167), + [anon_sym___asm__] = 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), + [anon_sym_NULL] = ACTIONS(3167), + [anon_sym_nullptr] = ACTIONS(3167), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), + [sym_auto] = ACTIONS(3167), + [anon_sym_decltype] = ACTIONS(3167), + [anon_sym_virtual] = ACTIONS(3167), + [anon_sym_alignas] = 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_R_DQUOTE] = ACTIONS(3169), + [anon_sym_LR_DQUOTE] = ACTIONS(3169), + [anon_sym_uR_DQUOTE] = ACTIONS(3169), + [anon_sym_UR_DQUOTE] = ACTIONS(3169), + [anon_sym_u8R_DQUOTE] = ACTIONS(3169), + [anon_sym_co_await] = ACTIONS(3167), + [anon_sym_new] = ACTIONS(3167), + [anon_sym_requires] = ACTIONS(3167), + [sym_this] = ACTIONS(3167), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3169), + [sym_semgrep_named_ellipsis] = ACTIONS(3169), }, - [958] = { - [sym_type_qualifier] = STATE(1919), - [sym_expression] = STATE(5965), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_type_definition_type_repeat1] = STATE(1919), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(4492), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4438), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4494), - [anon_sym_const] = ACTIONS(4438), - [anon_sym_constexpr] = ACTIONS(4438), - [anon_sym_volatile] = ACTIONS(4438), - [anon_sym_restrict] = ACTIONS(4438), - [anon_sym___restrict__] = ACTIONS(4438), - [anon_sym__Atomic] = ACTIONS(4438), - [anon_sym__Noreturn] = ACTIONS(4438), - [anon_sym_noreturn] = ACTIONS(4438), - [anon_sym_mutable] = ACTIONS(4438), - [anon_sym_constinit] = ACTIONS(4438), - [anon_sym_consteval] = ACTIONS(4438), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), + [969] = { + [sym_identifier] = ACTIONS(3127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3129), + [anon_sym_LPAREN2] = ACTIONS(3129), + [anon_sym_BANG] = ACTIONS(3129), + [anon_sym_TILDE] = ACTIONS(3129), + [anon_sym_DASH] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(3127), + [anon_sym_STAR] = ACTIONS(3129), + [anon_sym_AMP] = ACTIONS(3129), + [anon_sym_SEMI] = ACTIONS(3129), + [anon_sym___extension__] = ACTIONS(3127), + [anon_sym_typedef] = ACTIONS(3127), + [anon_sym_extern] = ACTIONS(3127), + [anon_sym___attribute__] = ACTIONS(3127), + [anon_sym_COLON_COLON] = ACTIONS(3129), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3129), + [anon_sym___declspec] = ACTIONS(3127), + [anon_sym_LBRACE] = ACTIONS(3129), + [anon_sym_signed] = ACTIONS(3127), + [anon_sym_unsigned] = ACTIONS(3127), + [anon_sym_long] = ACTIONS(3127), + [anon_sym_short] = ACTIONS(3127), + [anon_sym_LBRACK] = ACTIONS(3127), + [anon_sym_static] = ACTIONS(3127), + [anon_sym_register] = ACTIONS(3127), + [anon_sym_inline] = ACTIONS(3127), + [anon_sym___inline] = ACTIONS(3127), + [anon_sym___inline__] = ACTIONS(3127), + [anon_sym___forceinline] = ACTIONS(3127), + [anon_sym_thread_local] = ACTIONS(3127), + [anon_sym___thread] = ACTIONS(3127), + [anon_sym_const] = ACTIONS(3127), + [anon_sym_constexpr] = ACTIONS(3127), + [anon_sym_volatile] = ACTIONS(3127), + [anon_sym_restrict] = ACTIONS(3127), + [anon_sym___restrict__] = ACTIONS(3127), + [anon_sym__Atomic] = ACTIONS(3127), + [anon_sym__Noreturn] = ACTIONS(3127), + [anon_sym_noreturn] = ACTIONS(3127), + [anon_sym_mutable] = ACTIONS(3127), + [anon_sym_constinit] = ACTIONS(3127), + [anon_sym_consteval] = ACTIONS(3127), + [sym_primitive_type] = ACTIONS(3127), + [anon_sym_enum] = ACTIONS(3127), + [anon_sym_class] = ACTIONS(3127), + [anon_sym_struct] = ACTIONS(3127), + [anon_sym_union] = ACTIONS(3127), + [anon_sym_if] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(3127), + [anon_sym_switch] = ACTIONS(3127), + [anon_sym_while] = ACTIONS(3127), + [anon_sym_do] = ACTIONS(3127), + [anon_sym_for] = ACTIONS(3127), + [anon_sym_return] = ACTIONS(3127), + [anon_sym_break] = ACTIONS(3127), + [anon_sym_continue] = ACTIONS(3127), + [anon_sym_goto] = ACTIONS(3127), + [anon_sym___try] = ACTIONS(3127), + [anon_sym___leave] = ACTIONS(3127), + [anon_sym_not] = ACTIONS(3127), + [anon_sym_compl] = ACTIONS(3127), + [anon_sym_DASH_DASH] = ACTIONS(3129), + [anon_sym_PLUS_PLUS] = ACTIONS(3129), + [anon_sym_sizeof] = ACTIONS(3127), + [anon_sym___alignof__] = ACTIONS(3127), + [anon_sym___alignof] = ACTIONS(3127), + [anon_sym__alignof] = ACTIONS(3127), + [anon_sym_alignof] = ACTIONS(3127), + [anon_sym__Alignof] = ACTIONS(3127), + [anon_sym_offsetof] = ACTIONS(3127), + [anon_sym__Generic] = ACTIONS(3127), + [anon_sym_asm] = ACTIONS(3127), + [anon_sym___asm__] = ACTIONS(3127), + [sym_number_literal] = ACTIONS(3129), + [anon_sym_L_SQUOTE] = ACTIONS(3129), + [anon_sym_u_SQUOTE] = ACTIONS(3129), + [anon_sym_U_SQUOTE] = ACTIONS(3129), + [anon_sym_u8_SQUOTE] = ACTIONS(3129), + [anon_sym_SQUOTE] = ACTIONS(3129), + [anon_sym_L_DQUOTE] = ACTIONS(3129), + [anon_sym_u_DQUOTE] = ACTIONS(3129), + [anon_sym_U_DQUOTE] = ACTIONS(3129), + [anon_sym_u8_DQUOTE] = ACTIONS(3129), + [anon_sym_DQUOTE] = ACTIONS(3129), + [sym_true] = ACTIONS(3127), + [sym_false] = ACTIONS(3127), + [anon_sym_NULL] = ACTIONS(3127), + [anon_sym_nullptr] = ACTIONS(3127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3127), + [anon_sym_decltype] = ACTIONS(3127), + [anon_sym_virtual] = ACTIONS(3127), + [anon_sym_alignas] = ACTIONS(3127), + [anon_sym_typename] = ACTIONS(3127), + [anon_sym_template] = ACTIONS(3127), + [anon_sym_try] = ACTIONS(3127), + [anon_sym_delete] = ACTIONS(3127), + [anon_sym_throw] = ACTIONS(3127), + [anon_sym_co_return] = ACTIONS(3127), + [anon_sym_co_yield] = ACTIONS(3127), + [anon_sym_R_DQUOTE] = ACTIONS(3129), + [anon_sym_LR_DQUOTE] = ACTIONS(3129), + [anon_sym_uR_DQUOTE] = ACTIONS(3129), + [anon_sym_UR_DQUOTE] = ACTIONS(3129), + [anon_sym_u8R_DQUOTE] = ACTIONS(3129), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3127), + [anon_sym_requires] = ACTIONS(3127), + [sym_this] = ACTIONS(3127), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3129), + [sym_semgrep_named_ellipsis] = ACTIONS(3129), }, - [959] = { - [sym_type_qualifier] = STATE(966), - [sym_expression] = STATE(5979), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_type_definition_type_repeat1] = STATE(966), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(4496), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4438), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4498), - [anon_sym_const] = ACTIONS(4438), - [anon_sym_constexpr] = ACTIONS(4438), - [anon_sym_volatile] = ACTIONS(4438), - [anon_sym_restrict] = ACTIONS(4438), - [anon_sym___restrict__] = ACTIONS(4438), - [anon_sym__Atomic] = ACTIONS(4438), - [anon_sym__Noreturn] = ACTIONS(4438), - [anon_sym_noreturn] = ACTIONS(4438), - [anon_sym_mutable] = ACTIONS(4438), - [anon_sym_constinit] = ACTIONS(4438), - [anon_sym_consteval] = ACTIONS(4438), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), + [970] = { + [sym_identifier] = ACTIONS(3207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3209), + [anon_sym_LPAREN2] = ACTIONS(3209), + [anon_sym_BANG] = ACTIONS(3209), + [anon_sym_TILDE] = ACTIONS(3209), + [anon_sym_DASH] = ACTIONS(3207), + [anon_sym_PLUS] = ACTIONS(3207), + [anon_sym_STAR] = ACTIONS(3209), + [anon_sym_AMP] = ACTIONS(3209), + [anon_sym_SEMI] = ACTIONS(3209), + [anon_sym___extension__] = ACTIONS(3207), + [anon_sym_typedef] = ACTIONS(3207), + [anon_sym_extern] = ACTIONS(3207), + [anon_sym___attribute__] = ACTIONS(3207), + [anon_sym_COLON_COLON] = ACTIONS(3209), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3209), + [anon_sym___declspec] = ACTIONS(3207), + [anon_sym_LBRACE] = ACTIONS(3209), + [anon_sym_signed] = ACTIONS(3207), + [anon_sym_unsigned] = ACTIONS(3207), + [anon_sym_long] = ACTIONS(3207), + [anon_sym_short] = ACTIONS(3207), + [anon_sym_LBRACK] = ACTIONS(3207), + [anon_sym_static] = ACTIONS(3207), + [anon_sym_register] = ACTIONS(3207), + [anon_sym_inline] = ACTIONS(3207), + [anon_sym___inline] = ACTIONS(3207), + [anon_sym___inline__] = ACTIONS(3207), + [anon_sym___forceinline] = ACTIONS(3207), + [anon_sym_thread_local] = ACTIONS(3207), + [anon_sym___thread] = ACTIONS(3207), + [anon_sym_const] = ACTIONS(3207), + [anon_sym_constexpr] = ACTIONS(3207), + [anon_sym_volatile] = ACTIONS(3207), + [anon_sym_restrict] = ACTIONS(3207), + [anon_sym___restrict__] = ACTIONS(3207), + [anon_sym__Atomic] = ACTIONS(3207), + [anon_sym__Noreturn] = ACTIONS(3207), + [anon_sym_noreturn] = ACTIONS(3207), + [anon_sym_mutable] = ACTIONS(3207), + [anon_sym_constinit] = ACTIONS(3207), + [anon_sym_consteval] = ACTIONS(3207), + [sym_primitive_type] = ACTIONS(3207), + [anon_sym_enum] = ACTIONS(3207), + [anon_sym_class] = ACTIONS(3207), + [anon_sym_struct] = ACTIONS(3207), + [anon_sym_union] = ACTIONS(3207), + [anon_sym_if] = ACTIONS(3207), + [anon_sym_else] = ACTIONS(3207), + [anon_sym_switch] = ACTIONS(3207), + [anon_sym_while] = ACTIONS(3207), + [anon_sym_do] = ACTIONS(3207), + [anon_sym_for] = ACTIONS(3207), + [anon_sym_return] = ACTIONS(3207), + [anon_sym_break] = ACTIONS(3207), + [anon_sym_continue] = ACTIONS(3207), + [anon_sym_goto] = ACTIONS(3207), + [anon_sym___try] = ACTIONS(3207), + [anon_sym___leave] = ACTIONS(3207), + [anon_sym_not] = ACTIONS(3207), + [anon_sym_compl] = ACTIONS(3207), + [anon_sym_DASH_DASH] = ACTIONS(3209), + [anon_sym_PLUS_PLUS] = ACTIONS(3209), + [anon_sym_sizeof] = ACTIONS(3207), + [anon_sym___alignof__] = ACTIONS(3207), + [anon_sym___alignof] = ACTIONS(3207), + [anon_sym__alignof] = ACTIONS(3207), + [anon_sym_alignof] = ACTIONS(3207), + [anon_sym__Alignof] = ACTIONS(3207), + [anon_sym_offsetof] = ACTIONS(3207), + [anon_sym__Generic] = ACTIONS(3207), + [anon_sym_asm] = ACTIONS(3207), + [anon_sym___asm__] = ACTIONS(3207), + [sym_number_literal] = ACTIONS(3209), + [anon_sym_L_SQUOTE] = ACTIONS(3209), + [anon_sym_u_SQUOTE] = ACTIONS(3209), + [anon_sym_U_SQUOTE] = ACTIONS(3209), + [anon_sym_u8_SQUOTE] = ACTIONS(3209), + [anon_sym_SQUOTE] = ACTIONS(3209), + [anon_sym_L_DQUOTE] = ACTIONS(3209), + [anon_sym_u_DQUOTE] = ACTIONS(3209), + [anon_sym_U_DQUOTE] = ACTIONS(3209), + [anon_sym_u8_DQUOTE] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3209), + [sym_true] = ACTIONS(3207), + [sym_false] = ACTIONS(3207), + [anon_sym_NULL] = ACTIONS(3207), + [anon_sym_nullptr] = ACTIONS(3207), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), + [sym_auto] = ACTIONS(3207), + [anon_sym_decltype] = ACTIONS(3207), + [anon_sym_virtual] = ACTIONS(3207), + [anon_sym_alignas] = ACTIONS(3207), + [anon_sym_typename] = ACTIONS(3207), + [anon_sym_template] = ACTIONS(3207), + [anon_sym_try] = ACTIONS(3207), + [anon_sym_delete] = ACTIONS(3207), + [anon_sym_throw] = ACTIONS(3207), + [anon_sym_co_return] = ACTIONS(3207), + [anon_sym_co_yield] = ACTIONS(3207), + [anon_sym_R_DQUOTE] = ACTIONS(3209), + [anon_sym_LR_DQUOTE] = ACTIONS(3209), + [anon_sym_uR_DQUOTE] = ACTIONS(3209), + [anon_sym_UR_DQUOTE] = ACTIONS(3209), + [anon_sym_u8R_DQUOTE] = ACTIONS(3209), + [anon_sym_co_await] = ACTIONS(3207), + [anon_sym_new] = ACTIONS(3207), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3207), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3209), + [sym_semgrep_named_ellipsis] = ACTIONS(3209), }, - [960] = { - [sym_type_qualifier] = STATE(937), - [sym_expression] = STATE(5983), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_type_definition_type_repeat1] = STATE(937), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(4500), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4438), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4502), - [anon_sym_const] = ACTIONS(4438), - [anon_sym_constexpr] = ACTIONS(4438), - [anon_sym_volatile] = ACTIONS(4438), - [anon_sym_restrict] = ACTIONS(4438), - [anon_sym___restrict__] = ACTIONS(4438), - [anon_sym__Atomic] = ACTIONS(4438), - [anon_sym__Noreturn] = ACTIONS(4438), - [anon_sym_noreturn] = ACTIONS(4438), - [anon_sym_mutable] = ACTIONS(4438), - [anon_sym_constinit] = ACTIONS(4438), - [anon_sym_consteval] = ACTIONS(4438), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), + [971] = { + [sym_identifier] = ACTIONS(3159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3161), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_SEMI] = ACTIONS(3161), + [anon_sym___extension__] = ACTIONS(3159), + [anon_sym_typedef] = ACTIONS(3159), + [anon_sym_extern] = ACTIONS(3159), + [anon_sym___attribute__] = ACTIONS(3159), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), + [anon_sym___declspec] = ACTIONS(3159), + [anon_sym_LBRACE] = ACTIONS(3161), + [anon_sym_signed] = ACTIONS(3159), + [anon_sym_unsigned] = ACTIONS(3159), + [anon_sym_long] = ACTIONS(3159), + [anon_sym_short] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_static] = ACTIONS(3159), + [anon_sym_register] = ACTIONS(3159), + [anon_sym_inline] = ACTIONS(3159), + [anon_sym___inline] = ACTIONS(3159), + [anon_sym___inline__] = ACTIONS(3159), + [anon_sym___forceinline] = ACTIONS(3159), + [anon_sym_thread_local] = ACTIONS(3159), + [anon_sym___thread] = ACTIONS(3159), + [anon_sym_const] = ACTIONS(3159), + [anon_sym_constexpr] = ACTIONS(3159), + [anon_sym_volatile] = ACTIONS(3159), + [anon_sym_restrict] = ACTIONS(3159), + [anon_sym___restrict__] = ACTIONS(3159), + [anon_sym__Atomic] = ACTIONS(3159), + [anon_sym__Noreturn] = ACTIONS(3159), + [anon_sym_noreturn] = ACTIONS(3159), + [anon_sym_mutable] = ACTIONS(3159), + [anon_sym_constinit] = ACTIONS(3159), + [anon_sym_consteval] = ACTIONS(3159), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3159), + [anon_sym_class] = ACTIONS(3159), + [anon_sym_struct] = ACTIONS(3159), + [anon_sym_union] = ACTIONS(3159), + [anon_sym_if] = ACTIONS(3159), + [anon_sym_else] = ACTIONS(3159), + [anon_sym_switch] = ACTIONS(3159), + [anon_sym_while] = ACTIONS(3159), + [anon_sym_do] = ACTIONS(3159), + [anon_sym_for] = ACTIONS(3159), + [anon_sym_return] = ACTIONS(3159), + [anon_sym_break] = ACTIONS(3159), + [anon_sym_continue] = ACTIONS(3159), + [anon_sym_goto] = ACTIONS(3159), + [anon_sym___try] = ACTIONS(3159), + [anon_sym___leave] = ACTIONS(3159), + [anon_sym_not] = ACTIONS(3159), + [anon_sym_compl] = ACTIONS(3159), + [anon_sym_DASH_DASH] = ACTIONS(3161), + [anon_sym_PLUS_PLUS] = ACTIONS(3161), + [anon_sym_sizeof] = ACTIONS(3159), + [anon_sym___alignof__] = ACTIONS(3159), + [anon_sym___alignof] = ACTIONS(3159), + [anon_sym__alignof] = ACTIONS(3159), + [anon_sym_alignof] = ACTIONS(3159), + [anon_sym__Alignof] = ACTIONS(3159), + [anon_sym_offsetof] = ACTIONS(3159), + [anon_sym__Generic] = ACTIONS(3159), + [anon_sym_asm] = ACTIONS(3159), + [anon_sym___asm__] = ACTIONS(3159), + [sym_number_literal] = ACTIONS(3161), + [anon_sym_L_SQUOTE] = ACTIONS(3161), + [anon_sym_u_SQUOTE] = ACTIONS(3161), + [anon_sym_U_SQUOTE] = ACTIONS(3161), + [anon_sym_u8_SQUOTE] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3161), + [anon_sym_L_DQUOTE] = ACTIONS(3161), + [anon_sym_u_DQUOTE] = ACTIONS(3161), + [anon_sym_U_DQUOTE] = ACTIONS(3161), + [anon_sym_u8_DQUOTE] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(3161), + [sym_true] = ACTIONS(3159), + [sym_false] = ACTIONS(3159), + [anon_sym_NULL] = ACTIONS(3159), + [anon_sym_nullptr] = ACTIONS(3159), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), + [sym_auto] = ACTIONS(3159), + [anon_sym_decltype] = ACTIONS(3159), + [anon_sym_virtual] = ACTIONS(3159), + [anon_sym_alignas] = ACTIONS(3159), + [anon_sym_typename] = ACTIONS(3159), + [anon_sym_template] = ACTIONS(3159), + [anon_sym_try] = ACTIONS(3159), + [anon_sym_delete] = ACTIONS(3159), + [anon_sym_throw] = ACTIONS(3159), + [anon_sym_co_return] = ACTIONS(3159), + [anon_sym_co_yield] = ACTIONS(3159), + [anon_sym_R_DQUOTE] = ACTIONS(3161), + [anon_sym_LR_DQUOTE] = ACTIONS(3161), + [anon_sym_uR_DQUOTE] = ACTIONS(3161), + [anon_sym_UR_DQUOTE] = ACTIONS(3161), + [anon_sym_u8R_DQUOTE] = ACTIONS(3161), + [anon_sym_co_await] = ACTIONS(3159), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_requires] = ACTIONS(3159), + [sym_this] = ACTIONS(3159), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3161), + [sym_semgrep_named_ellipsis] = ACTIONS(3161), }, - [961] = { - [sym_type_qualifier] = STATE(1919), - [sym_expression] = STATE(6051), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_type_definition_type_repeat1] = STATE(1919), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(4504), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4438), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4506), - [anon_sym_const] = ACTIONS(4438), - [anon_sym_constexpr] = ACTIONS(4438), - [anon_sym_volatile] = ACTIONS(4438), - [anon_sym_restrict] = ACTIONS(4438), - [anon_sym___restrict__] = ACTIONS(4438), - [anon_sym__Atomic] = ACTIONS(4438), - [anon_sym__Noreturn] = ACTIONS(4438), - [anon_sym_noreturn] = ACTIONS(4438), - [anon_sym_mutable] = ACTIONS(4438), - [anon_sym_constinit] = ACTIONS(4438), - [anon_sym_consteval] = ACTIONS(4438), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), + [972] = { + [sym_identifier] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3187), + [anon_sym_LPAREN2] = ACTIONS(3187), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_TILDE] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3185), + [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(3187), + [anon_sym_SEMI] = ACTIONS(3187), + [anon_sym___extension__] = ACTIONS(3185), + [anon_sym_typedef] = ACTIONS(3185), + [anon_sym_extern] = ACTIONS(3185), + [anon_sym___attribute__] = ACTIONS(3185), + [anon_sym_COLON_COLON] = ACTIONS(3187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3187), + [anon_sym___declspec] = ACTIONS(3185), + [anon_sym_LBRACE] = ACTIONS(3187), + [anon_sym_signed] = ACTIONS(3185), + [anon_sym_unsigned] = ACTIONS(3185), + [anon_sym_long] = ACTIONS(3185), + [anon_sym_short] = ACTIONS(3185), + [anon_sym_LBRACK] = ACTIONS(3185), + [anon_sym_static] = ACTIONS(3185), + [anon_sym_register] = ACTIONS(3185), + [anon_sym_inline] = ACTIONS(3185), + [anon_sym___inline] = ACTIONS(3185), + [anon_sym___inline__] = ACTIONS(3185), + [anon_sym___forceinline] = ACTIONS(3185), + [anon_sym_thread_local] = ACTIONS(3185), + [anon_sym___thread] = ACTIONS(3185), + [anon_sym_const] = ACTIONS(3185), + [anon_sym_constexpr] = ACTIONS(3185), + [anon_sym_volatile] = ACTIONS(3185), + [anon_sym_restrict] = ACTIONS(3185), + [anon_sym___restrict__] = ACTIONS(3185), + [anon_sym__Atomic] = ACTIONS(3185), + [anon_sym__Noreturn] = ACTIONS(3185), + [anon_sym_noreturn] = ACTIONS(3185), + [anon_sym_mutable] = ACTIONS(3185), + [anon_sym_constinit] = ACTIONS(3185), + [anon_sym_consteval] = ACTIONS(3185), + [sym_primitive_type] = ACTIONS(3185), + [anon_sym_enum] = ACTIONS(3185), + [anon_sym_class] = ACTIONS(3185), + [anon_sym_struct] = ACTIONS(3185), + [anon_sym_union] = ACTIONS(3185), + [anon_sym_if] = ACTIONS(3185), + [anon_sym_else] = ACTIONS(3185), + [anon_sym_switch] = ACTIONS(3185), + [anon_sym_while] = ACTIONS(3185), + [anon_sym_do] = ACTIONS(3185), + [anon_sym_for] = ACTIONS(3185), + [anon_sym_return] = ACTIONS(3185), + [anon_sym_break] = ACTIONS(3185), + [anon_sym_continue] = ACTIONS(3185), + [anon_sym_goto] = ACTIONS(3185), + [anon_sym___try] = ACTIONS(3185), + [anon_sym___leave] = ACTIONS(3185), + [anon_sym_not] = ACTIONS(3185), + [anon_sym_compl] = ACTIONS(3185), + [anon_sym_DASH_DASH] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3187), + [anon_sym_sizeof] = ACTIONS(3185), + [anon_sym___alignof__] = ACTIONS(3185), + [anon_sym___alignof] = ACTIONS(3185), + [anon_sym__alignof] = ACTIONS(3185), + [anon_sym_alignof] = ACTIONS(3185), + [anon_sym__Alignof] = ACTIONS(3185), + [anon_sym_offsetof] = ACTIONS(3185), + [anon_sym__Generic] = ACTIONS(3185), + [anon_sym_asm] = ACTIONS(3185), + [anon_sym___asm__] = ACTIONS(3185), + [sym_number_literal] = ACTIONS(3187), + [anon_sym_L_SQUOTE] = ACTIONS(3187), + [anon_sym_u_SQUOTE] = ACTIONS(3187), + [anon_sym_U_SQUOTE] = ACTIONS(3187), + [anon_sym_u8_SQUOTE] = ACTIONS(3187), + [anon_sym_SQUOTE] = ACTIONS(3187), + [anon_sym_L_DQUOTE] = ACTIONS(3187), + [anon_sym_u_DQUOTE] = ACTIONS(3187), + [anon_sym_U_DQUOTE] = ACTIONS(3187), + [anon_sym_u8_DQUOTE] = ACTIONS(3187), + [anon_sym_DQUOTE] = ACTIONS(3187), + [sym_true] = ACTIONS(3185), + [sym_false] = ACTIONS(3185), + [anon_sym_NULL] = ACTIONS(3185), + [anon_sym_nullptr] = ACTIONS(3185), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3185), + [anon_sym_decltype] = ACTIONS(3185), + [anon_sym_virtual] = ACTIONS(3185), + [anon_sym_alignas] = ACTIONS(3185), + [anon_sym_typename] = ACTIONS(3185), + [anon_sym_template] = ACTIONS(3185), + [anon_sym_try] = ACTIONS(3185), + [anon_sym_delete] = ACTIONS(3185), + [anon_sym_throw] = ACTIONS(3185), + [anon_sym_co_return] = ACTIONS(3185), + [anon_sym_co_yield] = ACTIONS(3185), + [anon_sym_R_DQUOTE] = ACTIONS(3187), + [anon_sym_LR_DQUOTE] = ACTIONS(3187), + [anon_sym_uR_DQUOTE] = ACTIONS(3187), + [anon_sym_UR_DQUOTE] = ACTIONS(3187), + [anon_sym_u8R_DQUOTE] = ACTIONS(3187), + [anon_sym_co_await] = ACTIONS(3185), + [anon_sym_new] = ACTIONS(3185), + [anon_sym_requires] = ACTIONS(3185), + [sym_this] = ACTIONS(3185), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3187), + [sym_semgrep_named_ellipsis] = ACTIONS(3187), }, - [962] = { - [sym_identifier] = ACTIONS(4508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4511), - [anon_sym_LPAREN2] = ACTIONS(4513), - [anon_sym_BANG] = ACTIONS(4511), - [anon_sym_TILDE] = ACTIONS(4513), - [anon_sym_DASH] = ACTIONS(4516), - [anon_sym_PLUS] = ACTIONS(4516), - [anon_sym_STAR] = ACTIONS(4513), - [anon_sym_AMP_AMP] = ACTIONS(4518), - [anon_sym_AMP] = ACTIONS(4508), - [anon_sym_SEMI] = ACTIONS(4511), - [anon_sym___extension__] = ACTIONS(4520), - [anon_sym_extern] = ACTIONS(4520), - [anon_sym___attribute__] = ACTIONS(4520), - [anon_sym_COLON_COLON] = ACTIONS(4513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4513), - [anon_sym___declspec] = ACTIONS(4520), - [anon_sym___based] = ACTIONS(4520), - [anon_sym_LBRACE] = ACTIONS(4511), - [anon_sym_signed] = ACTIONS(4520), - [anon_sym_unsigned] = ACTIONS(4520), - [anon_sym_long] = ACTIONS(4520), - [anon_sym_short] = ACTIONS(4520), - [anon_sym_LBRACK] = ACTIONS(4508), - [anon_sym_static] = ACTIONS(4520), - [anon_sym_register] = ACTIONS(4520), - [anon_sym_inline] = ACTIONS(4520), - [anon_sym___inline] = ACTIONS(4520), - [anon_sym___inline__] = ACTIONS(4520), - [anon_sym___forceinline] = ACTIONS(4520), - [anon_sym_thread_local] = ACTIONS(4520), - [anon_sym___thread] = ACTIONS(4520), - [anon_sym_const] = ACTIONS(4520), - [anon_sym_constexpr] = ACTIONS(4520), - [anon_sym_volatile] = ACTIONS(4520), - [anon_sym_restrict] = ACTIONS(4520), - [anon_sym___restrict__] = ACTIONS(4520), - [anon_sym__Atomic] = ACTIONS(4520), - [anon_sym__Noreturn] = ACTIONS(4520), - [anon_sym_noreturn] = ACTIONS(4520), - [anon_sym_mutable] = ACTIONS(4520), - [anon_sym_constinit] = ACTIONS(4520), - [anon_sym_consteval] = ACTIONS(4520), - [sym_primitive_type] = ACTIONS(4508), - [anon_sym_enum] = ACTIONS(4520), - [anon_sym_class] = ACTIONS(4520), - [anon_sym_struct] = ACTIONS(4520), - [anon_sym_union] = ACTIONS(4520), - [anon_sym_if] = ACTIONS(4516), - [anon_sym_switch] = ACTIONS(4516), - [anon_sym_case] = ACTIONS(4516), - [anon_sym_default] = ACTIONS(4516), - [anon_sym_while] = ACTIONS(4516), - [anon_sym_do] = ACTIONS(4516), - [anon_sym_for] = ACTIONS(4516), - [anon_sym_return] = ACTIONS(4516), - [anon_sym_break] = ACTIONS(4516), - [anon_sym_continue] = ACTIONS(4516), - [anon_sym_goto] = ACTIONS(4516), - [anon_sym___try] = ACTIONS(4516), - [anon_sym___leave] = ACTIONS(4516), - [anon_sym_not] = ACTIONS(4516), - [anon_sym_compl] = ACTIONS(4516), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(4516), - [anon_sym___alignof__] = ACTIONS(4516), - [anon_sym___alignof] = ACTIONS(4516), - [anon_sym__alignof] = ACTIONS(4516), - [anon_sym_alignof] = ACTIONS(4516), - [anon_sym__Alignof] = ACTIONS(4516), - [anon_sym_offsetof] = ACTIONS(4516), - [anon_sym__Generic] = ACTIONS(4516), - [anon_sym_asm] = ACTIONS(4516), - [anon_sym___asm__] = ACTIONS(4516), - [sym_number_literal] = ACTIONS(4511), - [anon_sym_L_SQUOTE] = ACTIONS(4511), - [anon_sym_u_SQUOTE] = ACTIONS(4511), - [anon_sym_U_SQUOTE] = ACTIONS(4511), - [anon_sym_u8_SQUOTE] = ACTIONS(4511), - [anon_sym_SQUOTE] = ACTIONS(4511), - [anon_sym_L_DQUOTE] = ACTIONS(4511), - [anon_sym_u_DQUOTE] = ACTIONS(4511), - [anon_sym_U_DQUOTE] = ACTIONS(4511), - [anon_sym_u8_DQUOTE] = ACTIONS(4511), - [anon_sym_DQUOTE] = ACTIONS(4511), - [sym_true] = ACTIONS(4516), - [sym_false] = ACTIONS(4516), - [anon_sym_NULL] = ACTIONS(4516), - [anon_sym_nullptr] = ACTIONS(4516), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4520), - [anon_sym_decltype] = ACTIONS(4508), - [anon_sym_virtual] = ACTIONS(4520), - [anon_sym_alignas] = ACTIONS(4520), - [anon_sym_explicit] = ACTIONS(4520), - [anon_sym_typename] = ACTIONS(4520), - [anon_sym_template] = ACTIONS(4508), - [anon_sym_operator] = ACTIONS(4520), - [anon_sym_try] = ACTIONS(4516), - [anon_sym_delete] = ACTIONS(4516), - [anon_sym_throw] = ACTIONS(4516), - [anon_sym_co_return] = ACTIONS(4516), - [anon_sym_co_yield] = ACTIONS(4516), - [anon_sym_R_DQUOTE] = ACTIONS(4511), - [anon_sym_LR_DQUOTE] = ACTIONS(4511), - [anon_sym_uR_DQUOTE] = ACTIONS(4511), - [anon_sym_UR_DQUOTE] = ACTIONS(4511), - [anon_sym_u8R_DQUOTE] = ACTIONS(4511), - [anon_sym_co_await] = ACTIONS(4516), - [anon_sym_new] = ACTIONS(4516), - [anon_sym_requires] = ACTIONS(4516), - [sym_this] = ACTIONS(4516), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4511), - [sym_semgrep_named_ellipsis] = ACTIONS(4511), + [973] = { + [sym_identifier] = ACTIONS(3213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3215), + [anon_sym_LPAREN2] = ACTIONS(3215), + [anon_sym_BANG] = ACTIONS(3215), + [anon_sym_TILDE] = ACTIONS(3215), + [anon_sym_DASH] = ACTIONS(3213), + [anon_sym_PLUS] = ACTIONS(3213), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym_SEMI] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(3213), + [anon_sym_typedef] = ACTIONS(3213), + [anon_sym_extern] = ACTIONS(3213), + [anon_sym___attribute__] = ACTIONS(3213), + [anon_sym_COLON_COLON] = ACTIONS(3215), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3215), + [anon_sym___declspec] = ACTIONS(3213), + [anon_sym_LBRACE] = ACTIONS(3215), + [anon_sym_signed] = ACTIONS(3213), + [anon_sym_unsigned] = ACTIONS(3213), + [anon_sym_long] = ACTIONS(3213), + [anon_sym_short] = ACTIONS(3213), + [anon_sym_LBRACK] = ACTIONS(3213), + [anon_sym_static] = ACTIONS(3213), + [anon_sym_register] = ACTIONS(3213), + [anon_sym_inline] = ACTIONS(3213), + [anon_sym___inline] = ACTIONS(3213), + [anon_sym___inline__] = ACTIONS(3213), + [anon_sym___forceinline] = ACTIONS(3213), + [anon_sym_thread_local] = ACTIONS(3213), + [anon_sym___thread] = ACTIONS(3213), + [anon_sym_const] = ACTIONS(3213), + [anon_sym_constexpr] = ACTIONS(3213), + [anon_sym_volatile] = ACTIONS(3213), + [anon_sym_restrict] = ACTIONS(3213), + [anon_sym___restrict__] = ACTIONS(3213), + [anon_sym__Atomic] = ACTIONS(3213), + [anon_sym__Noreturn] = ACTIONS(3213), + [anon_sym_noreturn] = ACTIONS(3213), + [anon_sym_mutable] = ACTIONS(3213), + [anon_sym_constinit] = ACTIONS(3213), + [anon_sym_consteval] = ACTIONS(3213), + [sym_primitive_type] = ACTIONS(3213), + [anon_sym_enum] = ACTIONS(3213), + [anon_sym_class] = ACTIONS(3213), + [anon_sym_struct] = ACTIONS(3213), + [anon_sym_union] = ACTIONS(3213), + [anon_sym_if] = ACTIONS(3213), + [anon_sym_else] = ACTIONS(3213), + [anon_sym_switch] = ACTIONS(3213), + [anon_sym_while] = ACTIONS(3213), + [anon_sym_do] = ACTIONS(3213), + [anon_sym_for] = ACTIONS(3213), + [anon_sym_return] = ACTIONS(3213), + [anon_sym_break] = ACTIONS(3213), + [anon_sym_continue] = ACTIONS(3213), + [anon_sym_goto] = ACTIONS(3213), + [anon_sym___try] = ACTIONS(3213), + [anon_sym___leave] = ACTIONS(3213), + [anon_sym_not] = ACTIONS(3213), + [anon_sym_compl] = ACTIONS(3213), + [anon_sym_DASH_DASH] = ACTIONS(3215), + [anon_sym_PLUS_PLUS] = ACTIONS(3215), + [anon_sym_sizeof] = ACTIONS(3213), + [anon_sym___alignof__] = ACTIONS(3213), + [anon_sym___alignof] = ACTIONS(3213), + [anon_sym__alignof] = ACTIONS(3213), + [anon_sym_alignof] = ACTIONS(3213), + [anon_sym__Alignof] = ACTIONS(3213), + [anon_sym_offsetof] = ACTIONS(3213), + [anon_sym__Generic] = ACTIONS(3213), + [anon_sym_asm] = ACTIONS(3213), + [anon_sym___asm__] = ACTIONS(3213), + [sym_number_literal] = ACTIONS(3215), + [anon_sym_L_SQUOTE] = ACTIONS(3215), + [anon_sym_u_SQUOTE] = ACTIONS(3215), + [anon_sym_U_SQUOTE] = ACTIONS(3215), + [anon_sym_u8_SQUOTE] = ACTIONS(3215), + [anon_sym_SQUOTE] = ACTIONS(3215), + [anon_sym_L_DQUOTE] = ACTIONS(3215), + [anon_sym_u_DQUOTE] = ACTIONS(3215), + [anon_sym_U_DQUOTE] = ACTIONS(3215), + [anon_sym_u8_DQUOTE] = ACTIONS(3215), + [anon_sym_DQUOTE] = ACTIONS(3215), + [sym_true] = ACTIONS(3213), + [sym_false] = ACTIONS(3213), + [anon_sym_NULL] = ACTIONS(3213), + [anon_sym_nullptr] = ACTIONS(3213), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3213), + [anon_sym_decltype] = ACTIONS(3213), + [anon_sym_virtual] = ACTIONS(3213), + [anon_sym_alignas] = ACTIONS(3213), + [anon_sym_typename] = ACTIONS(3213), + [anon_sym_template] = ACTIONS(3213), + [anon_sym_try] = ACTIONS(3213), + [anon_sym_delete] = ACTIONS(3213), + [anon_sym_throw] = ACTIONS(3213), + [anon_sym_co_return] = ACTIONS(3213), + [anon_sym_co_yield] = ACTIONS(3213), + [anon_sym_R_DQUOTE] = ACTIONS(3215), + [anon_sym_LR_DQUOTE] = ACTIONS(3215), + [anon_sym_uR_DQUOTE] = ACTIONS(3215), + [anon_sym_UR_DQUOTE] = ACTIONS(3215), + [anon_sym_u8R_DQUOTE] = ACTIONS(3215), + [anon_sym_co_await] = ACTIONS(3213), + [anon_sym_new] = ACTIONS(3213), + [anon_sym_requires] = ACTIONS(3213), + [sym_this] = ACTIONS(3213), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3215), + [sym_semgrep_named_ellipsis] = ACTIONS(3215), }, - [963] = { - [sym_type_qualifier] = STATE(1919), - [sym_expression] = STATE(6053), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_type_definition_type_repeat1] = STATE(1919), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(4522), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4438), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4524), - [anon_sym_const] = ACTIONS(4438), - [anon_sym_constexpr] = ACTIONS(4438), - [anon_sym_volatile] = ACTIONS(4438), - [anon_sym_restrict] = ACTIONS(4438), - [anon_sym___restrict__] = ACTIONS(4438), - [anon_sym__Atomic] = ACTIONS(4438), - [anon_sym__Noreturn] = ACTIONS(4438), - [anon_sym_noreturn] = ACTIONS(4438), - [anon_sym_mutable] = ACTIONS(4438), - [anon_sym_constinit] = ACTIONS(4438), - [anon_sym_consteval] = ACTIONS(4438), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), + [974] = { + [sym_identifier] = ACTIONS(3163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3165), + [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___extension__] = ACTIONS(3163), + [anon_sym_typedef] = ACTIONS(3163), + [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_signed] = ACTIONS(3163), + [anon_sym_unsigned] = ACTIONS(3163), + [anon_sym_long] = ACTIONS(3163), + [anon_sym_short] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_static] = ACTIONS(3163), + [anon_sym_register] = ACTIONS(3163), + [anon_sym_inline] = ACTIONS(3163), + [anon_sym___inline] = ACTIONS(3163), + [anon_sym___inline__] = ACTIONS(3163), + [anon_sym___forceinline] = ACTIONS(3163), + [anon_sym_thread_local] = ACTIONS(3163), + [anon_sym___thread] = ACTIONS(3163), + [anon_sym_const] = ACTIONS(3163), + [anon_sym_constexpr] = ACTIONS(3163), + [anon_sym_volatile] = ACTIONS(3163), + [anon_sym_restrict] = ACTIONS(3163), + [anon_sym___restrict__] = ACTIONS(3163), + [anon_sym__Atomic] = ACTIONS(3163), + [anon_sym__Noreturn] = ACTIONS(3163), + [anon_sym_noreturn] = ACTIONS(3163), + [anon_sym_mutable] = ACTIONS(3163), + [anon_sym_constinit] = ACTIONS(3163), + [anon_sym_consteval] = 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_else] = ACTIONS(3163), + [anon_sym_switch] = 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___try] = ACTIONS(3163), + [anon_sym___leave] = 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), + [anon_sym___alignof__] = ACTIONS(3163), + [anon_sym___alignof] = ACTIONS(3163), + [anon_sym__alignof] = ACTIONS(3163), + [anon_sym_alignof] = ACTIONS(3163), + [anon_sym__Alignof] = ACTIONS(3163), + [anon_sym_offsetof] = ACTIONS(3163), + [anon_sym__Generic] = ACTIONS(3163), + [anon_sym_asm] = ACTIONS(3163), + [anon_sym___asm__] = 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), + [anon_sym_NULL] = ACTIONS(3163), + [anon_sym_nullptr] = ACTIONS(3163), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), + [sym_auto] = ACTIONS(3163), + [anon_sym_decltype] = ACTIONS(3163), + [anon_sym_virtual] = ACTIONS(3163), + [anon_sym_alignas] = 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_R_DQUOTE] = ACTIONS(3165), + [anon_sym_LR_DQUOTE] = ACTIONS(3165), + [anon_sym_uR_DQUOTE] = ACTIONS(3165), + [anon_sym_UR_DQUOTE] = ACTIONS(3165), + [anon_sym_u8R_DQUOTE] = ACTIONS(3165), + [anon_sym_co_await] = ACTIONS(3163), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_requires] = ACTIONS(3163), + [sym_this] = ACTIONS(3163), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3165), + [sym_semgrep_named_ellipsis] = ACTIONS(3165), }, - [964] = { - [sym_type_qualifier] = STATE(958), - [sym_expression] = STATE(6054), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_type_definition_type_repeat1] = STATE(958), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(4526), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4438), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4528), - [anon_sym_const] = ACTIONS(4438), - [anon_sym_constexpr] = ACTIONS(4438), - [anon_sym_volatile] = ACTIONS(4438), - [anon_sym_restrict] = ACTIONS(4438), - [anon_sym___restrict__] = ACTIONS(4438), - [anon_sym__Atomic] = ACTIONS(4438), - [anon_sym__Noreturn] = ACTIONS(4438), - [anon_sym_noreturn] = ACTIONS(4438), - [anon_sym_mutable] = ACTIONS(4438), - [anon_sym_constinit] = ACTIONS(4438), - [anon_sym_consteval] = ACTIONS(4438), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), + [975] = { + [sym_identifier] = ACTIONS(3171), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3173), + [anon_sym_LPAREN2] = ACTIONS(3173), + [anon_sym_BANG] = ACTIONS(3173), + [anon_sym_TILDE] = ACTIONS(3173), + [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_PLUS] = ACTIONS(3171), + [anon_sym_STAR] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(3173), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym___extension__] = ACTIONS(3171), + [anon_sym_typedef] = ACTIONS(3171), + [anon_sym_extern] = ACTIONS(3171), + [anon_sym___attribute__] = ACTIONS(3171), + [anon_sym_COLON_COLON] = ACTIONS(3173), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3173), + [anon_sym___declspec] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(3173), + [anon_sym_signed] = ACTIONS(3171), + [anon_sym_unsigned] = ACTIONS(3171), + [anon_sym_long] = ACTIONS(3171), + [anon_sym_short] = ACTIONS(3171), + [anon_sym_LBRACK] = ACTIONS(3171), + [anon_sym_static] = ACTIONS(3171), + [anon_sym_register] = ACTIONS(3171), + [anon_sym_inline] = ACTIONS(3171), + [anon_sym___inline] = ACTIONS(3171), + [anon_sym___inline__] = ACTIONS(3171), + [anon_sym___forceinline] = ACTIONS(3171), + [anon_sym_thread_local] = ACTIONS(3171), + [anon_sym___thread] = ACTIONS(3171), + [anon_sym_const] = ACTIONS(3171), + [anon_sym_constexpr] = ACTIONS(3171), + [anon_sym_volatile] = ACTIONS(3171), + [anon_sym_restrict] = ACTIONS(3171), + [anon_sym___restrict__] = ACTIONS(3171), + [anon_sym__Atomic] = ACTIONS(3171), + [anon_sym__Noreturn] = ACTIONS(3171), + [anon_sym_noreturn] = ACTIONS(3171), + [anon_sym_mutable] = ACTIONS(3171), + [anon_sym_constinit] = ACTIONS(3171), + [anon_sym_consteval] = ACTIONS(3171), + [sym_primitive_type] = ACTIONS(3171), + [anon_sym_enum] = ACTIONS(3171), + [anon_sym_class] = ACTIONS(3171), + [anon_sym_struct] = ACTIONS(3171), + [anon_sym_union] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_else] = ACTIONS(3171), + [anon_sym_switch] = ACTIONS(3171), + [anon_sym_while] = ACTIONS(3171), + [anon_sym_do] = ACTIONS(3171), + [anon_sym_for] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_break] = ACTIONS(3171), + [anon_sym_continue] = ACTIONS(3171), + [anon_sym_goto] = ACTIONS(3171), + [anon_sym___try] = ACTIONS(3171), + [anon_sym___leave] = ACTIONS(3171), + [anon_sym_not] = ACTIONS(3171), + [anon_sym_compl] = ACTIONS(3171), + [anon_sym_DASH_DASH] = ACTIONS(3173), + [anon_sym_PLUS_PLUS] = ACTIONS(3173), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3171), + [anon_sym___alignof] = ACTIONS(3171), + [anon_sym__alignof] = ACTIONS(3171), + [anon_sym_alignof] = ACTIONS(3171), + [anon_sym__Alignof] = ACTIONS(3171), + [anon_sym_offsetof] = ACTIONS(3171), + [anon_sym__Generic] = ACTIONS(3171), + [anon_sym_asm] = ACTIONS(3171), + [anon_sym___asm__] = ACTIONS(3171), + [sym_number_literal] = ACTIONS(3173), + [anon_sym_L_SQUOTE] = ACTIONS(3173), + [anon_sym_u_SQUOTE] = ACTIONS(3173), + [anon_sym_U_SQUOTE] = ACTIONS(3173), + [anon_sym_u8_SQUOTE] = ACTIONS(3173), + [anon_sym_SQUOTE] = ACTIONS(3173), + [anon_sym_L_DQUOTE] = ACTIONS(3173), + [anon_sym_u_DQUOTE] = ACTIONS(3173), + [anon_sym_U_DQUOTE] = ACTIONS(3173), + [anon_sym_u8_DQUOTE] = ACTIONS(3173), + [anon_sym_DQUOTE] = ACTIONS(3173), + [sym_true] = ACTIONS(3171), + [sym_false] = ACTIONS(3171), + [anon_sym_NULL] = ACTIONS(3171), + [anon_sym_nullptr] = ACTIONS(3171), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), + [sym_auto] = ACTIONS(3171), + [anon_sym_decltype] = ACTIONS(3171), + [anon_sym_virtual] = ACTIONS(3171), + [anon_sym_alignas] = ACTIONS(3171), + [anon_sym_typename] = ACTIONS(3171), + [anon_sym_template] = ACTIONS(3171), + [anon_sym_try] = ACTIONS(3171), + [anon_sym_delete] = ACTIONS(3171), + [anon_sym_throw] = ACTIONS(3171), + [anon_sym_co_return] = ACTIONS(3171), + [anon_sym_co_yield] = ACTIONS(3171), + [anon_sym_R_DQUOTE] = ACTIONS(3173), + [anon_sym_LR_DQUOTE] = ACTIONS(3173), + [anon_sym_uR_DQUOTE] = ACTIONS(3173), + [anon_sym_UR_DQUOTE] = ACTIONS(3173), + [anon_sym_u8R_DQUOTE] = ACTIONS(3173), + [anon_sym_co_await] = ACTIONS(3171), + [anon_sym_new] = ACTIONS(3171), + [anon_sym_requires] = ACTIONS(3171), + [sym_this] = ACTIONS(3171), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3173), + [sym_semgrep_named_ellipsis] = ACTIONS(3173), }, - [965] = { - [sym_function_definition] = STATE(2435), - [sym_declaration] = STATE(2435), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6404), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2103), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7673), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4283), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_empty_declaration] = STATE(2435), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2435), - [sym_operator_cast] = STATE(8121), - [sym_constructor_specifiers] = STATE(1954), - [sym_operator_cast_definition] = STATE(2435), - [sym_operator_cast_declaration] = STATE(2435), - [sym_constructor_or_destructor_definition] = STATE(2435), - [sym_constructor_or_destructor_declaration] = STATE(2435), - [sym_friend_declaration] = STATE(2435), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_alias_declaration] = STATE(2435), - [sym_concept_definition] = STATE(2435), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6891), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8121), - [sym_operator_name] = STATE(7634), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1954), - [sym_identifier] = ACTIONS(4386), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(65), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(53), - [anon_sym___clrcall] = ACTIONS(53), - [anon_sym___stdcall] = ACTIONS(53), - [anon_sym___fastcall] = ACTIONS(53), - [anon_sym___thiscall] = ACTIONS(53), - [anon_sym___vectorcall] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), + [976] = { + [sym_identifier] = ACTIONS(3175), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3177), + [anon_sym_LPAREN2] = ACTIONS(3177), + [anon_sym_BANG] = ACTIONS(3177), + [anon_sym_TILDE] = ACTIONS(3177), + [anon_sym_DASH] = ACTIONS(3175), + [anon_sym_PLUS] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3177), + [anon_sym_AMP] = ACTIONS(3177), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym___extension__] = ACTIONS(3175), + [anon_sym_typedef] = ACTIONS(3175), + [anon_sym_extern] = ACTIONS(3175), + [anon_sym___attribute__] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(3177), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3177), + [anon_sym___declspec] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(3177), + [anon_sym_signed] = ACTIONS(3175), + [anon_sym_unsigned] = ACTIONS(3175), + [anon_sym_long] = ACTIONS(3175), + [anon_sym_short] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_static] = ACTIONS(3175), + [anon_sym_register] = ACTIONS(3175), + [anon_sym_inline] = ACTIONS(3175), + [anon_sym___inline] = ACTIONS(3175), + [anon_sym___inline__] = ACTIONS(3175), + [anon_sym___forceinline] = ACTIONS(3175), + [anon_sym_thread_local] = ACTIONS(3175), + [anon_sym___thread] = ACTIONS(3175), + [anon_sym_const] = ACTIONS(3175), + [anon_sym_constexpr] = ACTIONS(3175), + [anon_sym_volatile] = ACTIONS(3175), + [anon_sym_restrict] = ACTIONS(3175), + [anon_sym___restrict__] = ACTIONS(3175), + [anon_sym__Atomic] = ACTIONS(3175), + [anon_sym__Noreturn] = ACTIONS(3175), + [anon_sym_noreturn] = ACTIONS(3175), + [anon_sym_mutable] = ACTIONS(3175), + [anon_sym_constinit] = ACTIONS(3175), + [anon_sym_consteval] = ACTIONS(3175), + [sym_primitive_type] = ACTIONS(3175), + [anon_sym_enum] = ACTIONS(3175), + [anon_sym_class] = ACTIONS(3175), + [anon_sym_struct] = ACTIONS(3175), + [anon_sym_union] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_else] = ACTIONS(3175), + [anon_sym_switch] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_do] = ACTIONS(3175), + [anon_sym_for] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_break] = ACTIONS(3175), + [anon_sym_continue] = ACTIONS(3175), + [anon_sym_goto] = ACTIONS(3175), + [anon_sym___try] = ACTIONS(3175), + [anon_sym___leave] = ACTIONS(3175), + [anon_sym_not] = ACTIONS(3175), + [anon_sym_compl] = ACTIONS(3175), + [anon_sym_DASH_DASH] = ACTIONS(3177), + [anon_sym_PLUS_PLUS] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(3175), + [anon_sym___alignof__] = ACTIONS(3175), + [anon_sym___alignof] = ACTIONS(3175), + [anon_sym__alignof] = ACTIONS(3175), + [anon_sym_alignof] = ACTIONS(3175), + [anon_sym__Alignof] = ACTIONS(3175), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3175), + [anon_sym_asm] = ACTIONS(3175), + [anon_sym___asm__] = ACTIONS(3175), + [sym_number_literal] = ACTIONS(3177), + [anon_sym_L_SQUOTE] = ACTIONS(3177), + [anon_sym_u_SQUOTE] = ACTIONS(3177), + [anon_sym_U_SQUOTE] = ACTIONS(3177), + [anon_sym_u8_SQUOTE] = ACTIONS(3177), + [anon_sym_SQUOTE] = ACTIONS(3177), + [anon_sym_L_DQUOTE] = ACTIONS(3177), + [anon_sym_u_DQUOTE] = ACTIONS(3177), + [anon_sym_U_DQUOTE] = ACTIONS(3177), + [anon_sym_u8_DQUOTE] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(3177), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [anon_sym_NULL] = ACTIONS(3175), + [anon_sym_nullptr] = ACTIONS(3175), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4174), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4176), - [anon_sym_using] = ACTIONS(4410), - [anon_sym_concept] = ACTIONS(4412), + [sym_auto] = ACTIONS(3175), + [anon_sym_decltype] = ACTIONS(3175), + [anon_sym_virtual] = ACTIONS(3175), + [anon_sym_alignas] = ACTIONS(3175), + [anon_sym_typename] = ACTIONS(3175), + [anon_sym_template] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_delete] = ACTIONS(3175), + [anon_sym_throw] = ACTIONS(3175), + [anon_sym_co_return] = ACTIONS(3175), + [anon_sym_co_yield] = ACTIONS(3175), + [anon_sym_R_DQUOTE] = ACTIONS(3177), + [anon_sym_LR_DQUOTE] = ACTIONS(3177), + [anon_sym_uR_DQUOTE] = ACTIONS(3177), + [anon_sym_UR_DQUOTE] = ACTIONS(3177), + [anon_sym_u8R_DQUOTE] = ACTIONS(3177), + [anon_sym_co_await] = ACTIONS(3175), + [anon_sym_new] = ACTIONS(3175), + [anon_sym_requires] = ACTIONS(3175), + [sym_this] = ACTIONS(3175), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3177), + [sym_semgrep_named_ellipsis] = ACTIONS(3177), }, - [966] = { - [sym_type_qualifier] = STATE(1919), - [sym_expression] = STATE(5992), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_type_definition_type_repeat1] = STATE(1919), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [977] = { + [sym_identifier] = ACTIONS(3083), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3085), + [anon_sym_BANG] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3085), + [anon_sym_DASH] = ACTIONS(3083), + [anon_sym_PLUS] = ACTIONS(3083), + [anon_sym_STAR] = ACTIONS(3085), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_SEMI] = ACTIONS(3085), + [anon_sym___extension__] = ACTIONS(3083), + [anon_sym_typedef] = ACTIONS(3083), + [anon_sym_extern] = ACTIONS(3083), + [anon_sym___attribute__] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(3085), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3085), + [anon_sym___declspec] = ACTIONS(3083), + [anon_sym_LBRACE] = ACTIONS(3085), + [anon_sym_signed] = ACTIONS(3083), + [anon_sym_unsigned] = ACTIONS(3083), + [anon_sym_long] = ACTIONS(3083), + [anon_sym_short] = ACTIONS(3083), + [anon_sym_LBRACK] = ACTIONS(3083), + [anon_sym_static] = ACTIONS(3083), + [anon_sym_register] = ACTIONS(3083), + [anon_sym_inline] = ACTIONS(3083), + [anon_sym___inline] = ACTIONS(3083), + [anon_sym___inline__] = ACTIONS(3083), + [anon_sym___forceinline] = ACTIONS(3083), + [anon_sym_thread_local] = ACTIONS(3083), + [anon_sym___thread] = ACTIONS(3083), + [anon_sym_const] = ACTIONS(3083), + [anon_sym_constexpr] = ACTIONS(3083), + [anon_sym_volatile] = ACTIONS(3083), + [anon_sym_restrict] = ACTIONS(3083), + [anon_sym___restrict__] = ACTIONS(3083), + [anon_sym__Atomic] = ACTIONS(3083), + [anon_sym__Noreturn] = ACTIONS(3083), + [anon_sym_noreturn] = ACTIONS(3083), + [anon_sym_mutable] = ACTIONS(3083), + [anon_sym_constinit] = ACTIONS(3083), + [anon_sym_consteval] = ACTIONS(3083), + [sym_primitive_type] = ACTIONS(3083), + [anon_sym_enum] = ACTIONS(3083), + [anon_sym_class] = ACTIONS(3083), + [anon_sym_struct] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(3083), + [anon_sym_if] = ACTIONS(3083), + [anon_sym_else] = ACTIONS(3083), + [anon_sym_switch] = ACTIONS(3083), + [anon_sym_while] = ACTIONS(3083), + [anon_sym_do] = ACTIONS(3083), + [anon_sym_for] = ACTIONS(3083), + [anon_sym_return] = ACTIONS(3083), + [anon_sym_break] = ACTIONS(3083), + [anon_sym_continue] = ACTIONS(3083), + [anon_sym_goto] = ACTIONS(3083), + [anon_sym___try] = ACTIONS(3083), + [anon_sym___leave] = ACTIONS(3083), + [anon_sym_not] = ACTIONS(3083), + [anon_sym_compl] = ACTIONS(3083), + [anon_sym_DASH_DASH] = ACTIONS(3085), + [anon_sym_PLUS_PLUS] = ACTIONS(3085), + [anon_sym_sizeof] = ACTIONS(3083), + [anon_sym___alignof__] = ACTIONS(3083), + [anon_sym___alignof] = ACTIONS(3083), + [anon_sym__alignof] = ACTIONS(3083), + [anon_sym_alignof] = ACTIONS(3083), + [anon_sym__Alignof] = ACTIONS(3083), + [anon_sym_offsetof] = ACTIONS(3083), + [anon_sym__Generic] = ACTIONS(3083), + [anon_sym_asm] = ACTIONS(3083), + [anon_sym___asm__] = ACTIONS(3083), + [sym_number_literal] = ACTIONS(3085), + [anon_sym_L_SQUOTE] = ACTIONS(3085), + [anon_sym_u_SQUOTE] = ACTIONS(3085), + [anon_sym_U_SQUOTE] = ACTIONS(3085), + [anon_sym_u8_SQUOTE] = ACTIONS(3085), + [anon_sym_SQUOTE] = ACTIONS(3085), + [anon_sym_L_DQUOTE] = ACTIONS(3085), + [anon_sym_u_DQUOTE] = ACTIONS(3085), + [anon_sym_U_DQUOTE] = ACTIONS(3085), + [anon_sym_u8_DQUOTE] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(3085), + [sym_true] = ACTIONS(3083), + [sym_false] = ACTIONS(3083), + [anon_sym_NULL] = ACTIONS(3083), + [anon_sym_nullptr] = ACTIONS(3083), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3083), + [anon_sym_decltype] = ACTIONS(3083), + [anon_sym_virtual] = ACTIONS(3083), + [anon_sym_alignas] = ACTIONS(3083), + [anon_sym_typename] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(3083), + [anon_sym_try] = ACTIONS(3083), + [anon_sym_delete] = ACTIONS(3083), + [anon_sym_throw] = ACTIONS(3083), + [anon_sym_co_return] = ACTIONS(3083), + [anon_sym_co_yield] = ACTIONS(3083), + [anon_sym_R_DQUOTE] = ACTIONS(3085), + [anon_sym_LR_DQUOTE] = ACTIONS(3085), + [anon_sym_uR_DQUOTE] = ACTIONS(3085), + [anon_sym_UR_DQUOTE] = ACTIONS(3085), + [anon_sym_u8R_DQUOTE] = ACTIONS(3085), + [anon_sym_co_await] = ACTIONS(3083), + [anon_sym_new] = ACTIONS(3083), + [anon_sym_requires] = ACTIONS(3083), + [sym_this] = ACTIONS(3083), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3085), + [sym_semgrep_named_ellipsis] = ACTIONS(3085), + }, + [978] = { + [sym_identifier] = ACTIONS(3119), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3121), + [anon_sym_LPAREN2] = ACTIONS(3121), + [anon_sym_BANG] = ACTIONS(3121), + [anon_sym_TILDE] = ACTIONS(3121), + [anon_sym_DASH] = ACTIONS(3119), + [anon_sym_PLUS] = ACTIONS(3119), + [anon_sym_STAR] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3121), + [anon_sym_SEMI] = ACTIONS(3121), + [anon_sym___extension__] = ACTIONS(3119), + [anon_sym_typedef] = ACTIONS(3119), + [anon_sym_extern] = ACTIONS(3119), + [anon_sym___attribute__] = ACTIONS(3119), + [anon_sym_COLON_COLON] = ACTIONS(3121), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3121), + [anon_sym___declspec] = ACTIONS(3119), + [anon_sym_LBRACE] = ACTIONS(3121), + [anon_sym_signed] = ACTIONS(3119), + [anon_sym_unsigned] = ACTIONS(3119), + [anon_sym_long] = ACTIONS(3119), + [anon_sym_short] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(3119), + [anon_sym_static] = ACTIONS(3119), + [anon_sym_register] = ACTIONS(3119), + [anon_sym_inline] = ACTIONS(3119), + [anon_sym___inline] = ACTIONS(3119), + [anon_sym___inline__] = ACTIONS(3119), + [anon_sym___forceinline] = ACTIONS(3119), + [anon_sym_thread_local] = ACTIONS(3119), + [anon_sym___thread] = ACTIONS(3119), + [anon_sym_const] = ACTIONS(3119), + [anon_sym_constexpr] = ACTIONS(3119), + [anon_sym_volatile] = ACTIONS(3119), + [anon_sym_restrict] = ACTIONS(3119), + [anon_sym___restrict__] = ACTIONS(3119), + [anon_sym__Atomic] = ACTIONS(3119), + [anon_sym__Noreturn] = ACTIONS(3119), + [anon_sym_noreturn] = ACTIONS(3119), + [anon_sym_mutable] = ACTIONS(3119), + [anon_sym_constinit] = ACTIONS(3119), + [anon_sym_consteval] = ACTIONS(3119), + [sym_primitive_type] = ACTIONS(3119), + [anon_sym_enum] = ACTIONS(3119), + [anon_sym_class] = ACTIONS(3119), + [anon_sym_struct] = ACTIONS(3119), + [anon_sym_union] = ACTIONS(3119), + [anon_sym_if] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3119), + [anon_sym_switch] = ACTIONS(3119), + [anon_sym_while] = ACTIONS(3119), + [anon_sym_do] = ACTIONS(3119), + [anon_sym_for] = ACTIONS(3119), + [anon_sym_return] = ACTIONS(3119), + [anon_sym_break] = ACTIONS(3119), + [anon_sym_continue] = ACTIONS(3119), + [anon_sym_goto] = ACTIONS(3119), + [anon_sym___try] = ACTIONS(3119), + [anon_sym___leave] = ACTIONS(3119), + [anon_sym_not] = ACTIONS(3119), + [anon_sym_compl] = ACTIONS(3119), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3119), + [anon_sym___alignof__] = ACTIONS(3119), + [anon_sym___alignof] = ACTIONS(3119), + [anon_sym__alignof] = ACTIONS(3119), + [anon_sym_alignof] = ACTIONS(3119), + [anon_sym__Alignof] = ACTIONS(3119), + [anon_sym_offsetof] = ACTIONS(3119), + [anon_sym__Generic] = ACTIONS(3119), + [anon_sym_asm] = ACTIONS(3119), + [anon_sym___asm__] = ACTIONS(3119), + [sym_number_literal] = ACTIONS(3121), + [anon_sym_L_SQUOTE] = ACTIONS(3121), + [anon_sym_u_SQUOTE] = ACTIONS(3121), + [anon_sym_U_SQUOTE] = ACTIONS(3121), + [anon_sym_u8_SQUOTE] = ACTIONS(3121), + [anon_sym_SQUOTE] = ACTIONS(3121), + [anon_sym_L_DQUOTE] = ACTIONS(3121), + [anon_sym_u_DQUOTE] = ACTIONS(3121), + [anon_sym_U_DQUOTE] = ACTIONS(3121), + [anon_sym_u8_DQUOTE] = ACTIONS(3121), + [anon_sym_DQUOTE] = ACTIONS(3121), + [sym_true] = ACTIONS(3119), + [sym_false] = ACTIONS(3119), + [anon_sym_NULL] = ACTIONS(3119), + [anon_sym_nullptr] = ACTIONS(3119), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3119), + [anon_sym_decltype] = ACTIONS(3119), + [anon_sym_virtual] = ACTIONS(3119), + [anon_sym_alignas] = ACTIONS(3119), + [anon_sym_typename] = ACTIONS(3119), + [anon_sym_template] = ACTIONS(3119), + [anon_sym_try] = ACTIONS(3119), + [anon_sym_delete] = ACTIONS(3119), + [anon_sym_throw] = ACTIONS(3119), + [anon_sym_co_return] = ACTIONS(3119), + [anon_sym_co_yield] = ACTIONS(3119), + [anon_sym_R_DQUOTE] = ACTIONS(3121), + [anon_sym_LR_DQUOTE] = ACTIONS(3121), + [anon_sym_uR_DQUOTE] = ACTIONS(3121), + [anon_sym_UR_DQUOTE] = ACTIONS(3121), + [anon_sym_u8R_DQUOTE] = ACTIONS(3121), + [anon_sym_co_await] = ACTIONS(3119), + [anon_sym_new] = ACTIONS(3119), + [anon_sym_requires] = ACTIONS(3119), + [sym_this] = ACTIONS(3119), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3121), + [sym_semgrep_named_ellipsis] = ACTIONS(3121), + }, + [979] = { + [sym_identifier] = ACTIONS(3123), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3125), + [anon_sym_LPAREN2] = ACTIONS(3125), + [anon_sym_BANG] = ACTIONS(3125), + [anon_sym_TILDE] = ACTIONS(3125), + [anon_sym_DASH] = ACTIONS(3123), + [anon_sym_PLUS] = ACTIONS(3123), + [anon_sym_STAR] = ACTIONS(3125), + [anon_sym_AMP] = ACTIONS(3125), + [anon_sym_SEMI] = ACTIONS(3125), + [anon_sym___extension__] = ACTIONS(3123), + [anon_sym_typedef] = ACTIONS(3123), + [anon_sym_extern] = ACTIONS(3123), + [anon_sym___attribute__] = ACTIONS(3123), + [anon_sym_COLON_COLON] = ACTIONS(3125), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3125), + [anon_sym___declspec] = ACTIONS(3123), + [anon_sym_LBRACE] = ACTIONS(3125), + [anon_sym_signed] = ACTIONS(3123), + [anon_sym_unsigned] = ACTIONS(3123), + [anon_sym_long] = ACTIONS(3123), + [anon_sym_short] = ACTIONS(3123), + [anon_sym_LBRACK] = ACTIONS(3123), + [anon_sym_static] = ACTIONS(3123), + [anon_sym_register] = ACTIONS(3123), + [anon_sym_inline] = ACTIONS(3123), + [anon_sym___inline] = ACTIONS(3123), + [anon_sym___inline__] = ACTIONS(3123), + [anon_sym___forceinline] = ACTIONS(3123), + [anon_sym_thread_local] = ACTIONS(3123), + [anon_sym___thread] = ACTIONS(3123), + [anon_sym_const] = ACTIONS(3123), + [anon_sym_constexpr] = ACTIONS(3123), + [anon_sym_volatile] = ACTIONS(3123), + [anon_sym_restrict] = ACTIONS(3123), + [anon_sym___restrict__] = ACTIONS(3123), + [anon_sym__Atomic] = ACTIONS(3123), + [anon_sym__Noreturn] = ACTIONS(3123), + [anon_sym_noreturn] = ACTIONS(3123), + [anon_sym_mutable] = ACTIONS(3123), + [anon_sym_constinit] = ACTIONS(3123), + [anon_sym_consteval] = ACTIONS(3123), + [sym_primitive_type] = ACTIONS(3123), + [anon_sym_enum] = ACTIONS(3123), + [anon_sym_class] = ACTIONS(3123), + [anon_sym_struct] = ACTIONS(3123), + [anon_sym_union] = ACTIONS(3123), + [anon_sym_if] = ACTIONS(3123), + [anon_sym_else] = ACTIONS(3123), + [anon_sym_switch] = ACTIONS(3123), + [anon_sym_while] = ACTIONS(3123), + [anon_sym_do] = ACTIONS(3123), + [anon_sym_for] = ACTIONS(3123), + [anon_sym_return] = ACTIONS(3123), + [anon_sym_break] = ACTIONS(3123), + [anon_sym_continue] = ACTIONS(3123), + [anon_sym_goto] = ACTIONS(3123), + [anon_sym___try] = ACTIONS(3123), + [anon_sym___leave] = ACTIONS(3123), + [anon_sym_not] = ACTIONS(3123), + [anon_sym_compl] = ACTIONS(3123), + [anon_sym_DASH_DASH] = ACTIONS(3125), + [anon_sym_PLUS_PLUS] = ACTIONS(3125), + [anon_sym_sizeof] = ACTIONS(3123), + [anon_sym___alignof__] = ACTIONS(3123), + [anon_sym___alignof] = ACTIONS(3123), + [anon_sym__alignof] = ACTIONS(3123), + [anon_sym_alignof] = ACTIONS(3123), + [anon_sym__Alignof] = ACTIONS(3123), + [anon_sym_offsetof] = ACTIONS(3123), + [anon_sym__Generic] = ACTIONS(3123), + [anon_sym_asm] = ACTIONS(3123), + [anon_sym___asm__] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(3125), + [anon_sym_L_SQUOTE] = ACTIONS(3125), + [anon_sym_u_SQUOTE] = ACTIONS(3125), + [anon_sym_U_SQUOTE] = ACTIONS(3125), + [anon_sym_u8_SQUOTE] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3125), + [anon_sym_L_DQUOTE] = ACTIONS(3125), + [anon_sym_u_DQUOTE] = ACTIONS(3125), + [anon_sym_U_DQUOTE] = ACTIONS(3125), + [anon_sym_u8_DQUOTE] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym_true] = ACTIONS(3123), + [sym_false] = ACTIONS(3123), + [anon_sym_NULL] = ACTIONS(3123), + [anon_sym_nullptr] = ACTIONS(3123), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3123), + [anon_sym_decltype] = ACTIONS(3123), + [anon_sym_virtual] = ACTIONS(3123), + [anon_sym_alignas] = ACTIONS(3123), + [anon_sym_typename] = ACTIONS(3123), + [anon_sym_template] = ACTIONS(3123), + [anon_sym_try] = ACTIONS(3123), + [anon_sym_delete] = ACTIONS(3123), + [anon_sym_throw] = ACTIONS(3123), + [anon_sym_co_return] = ACTIONS(3123), + [anon_sym_co_yield] = ACTIONS(3123), + [anon_sym_R_DQUOTE] = ACTIONS(3125), + [anon_sym_LR_DQUOTE] = ACTIONS(3125), + [anon_sym_uR_DQUOTE] = ACTIONS(3125), + [anon_sym_UR_DQUOTE] = ACTIONS(3125), + [anon_sym_u8R_DQUOTE] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3123), + [anon_sym_new] = ACTIONS(3123), + [anon_sym_requires] = ACTIONS(3123), + [sym_this] = ACTIONS(3123), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3125), + [sym_semgrep_named_ellipsis] = ACTIONS(3125), + }, + [980] = { + [sym_identifier] = ACTIONS(4342), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4344), + [anon_sym_LPAREN2] = ACTIONS(4344), + [anon_sym_BANG] = ACTIONS(4344), + [anon_sym_TILDE] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [anon_sym_AMP] = ACTIONS(4344), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym___extension__] = ACTIONS(4342), + [anon_sym_extern] = ACTIONS(4342), + [anon_sym___attribute__] = ACTIONS(4342), + [anon_sym_COLON_COLON] = ACTIONS(4344), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4344), + [anon_sym___declspec] = ACTIONS(4342), + [anon_sym_LBRACE] = ACTIONS(4344), + [anon_sym_signed] = ACTIONS(4342), + [anon_sym_unsigned] = ACTIONS(4342), + [anon_sym_long] = ACTIONS(4342), + [anon_sym_short] = ACTIONS(4342), + [anon_sym_LBRACK] = ACTIONS(4342), + [anon_sym_static] = ACTIONS(4342), + [anon_sym_register] = ACTIONS(4342), + [anon_sym_inline] = ACTIONS(4342), + [anon_sym___inline] = ACTIONS(4342), + [anon_sym___inline__] = ACTIONS(4342), + [anon_sym___forceinline] = ACTIONS(4342), + [anon_sym_thread_local] = ACTIONS(4342), + [anon_sym___thread] = ACTIONS(4342), + [anon_sym_const] = ACTIONS(4342), + [anon_sym_constexpr] = ACTIONS(4342), + [anon_sym_volatile] = ACTIONS(4342), + [anon_sym_restrict] = ACTIONS(4342), + [anon_sym___restrict__] = ACTIONS(4342), + [anon_sym__Atomic] = ACTIONS(4342), + [anon_sym__Noreturn] = ACTIONS(4342), + [anon_sym_noreturn] = ACTIONS(4342), + [anon_sym_mutable] = ACTIONS(4342), + [anon_sym_constinit] = ACTIONS(4342), + [anon_sym_consteval] = ACTIONS(4342), + [sym_primitive_type] = ACTIONS(4342), + [anon_sym_enum] = ACTIONS(4342), + [anon_sym_class] = ACTIONS(4342), + [anon_sym_struct] = ACTIONS(4342), + [anon_sym_union] = ACTIONS(4342), + [anon_sym_if] = ACTIONS(4342), + [anon_sym_switch] = ACTIONS(4342), + [anon_sym_case] = ACTIONS(4342), + [anon_sym_default] = ACTIONS(4342), + [anon_sym_while] = ACTIONS(4342), + [anon_sym_do] = ACTIONS(4342), + [anon_sym_for] = ACTIONS(4342), + [anon_sym_return] = ACTIONS(4342), + [anon_sym_break] = ACTIONS(4342), + [anon_sym_continue] = ACTIONS(4342), + [anon_sym_goto] = ACTIONS(4342), + [anon_sym___try] = ACTIONS(4342), + [anon_sym___leave] = ACTIONS(4342), + [anon_sym_not] = ACTIONS(4342), + [anon_sym_compl] = ACTIONS(4342), + [anon_sym_DASH_DASH] = ACTIONS(4344), + [anon_sym_PLUS_PLUS] = ACTIONS(4344), + [anon_sym_sizeof] = ACTIONS(4342), + [anon_sym___alignof__] = ACTIONS(4342), + [anon_sym___alignof] = ACTIONS(4342), + [anon_sym__alignof] = ACTIONS(4342), + [anon_sym_alignof] = ACTIONS(4342), + [anon_sym__Alignof] = ACTIONS(4342), + [anon_sym_offsetof] = ACTIONS(4342), + [anon_sym__Generic] = ACTIONS(4342), + [anon_sym_asm] = ACTIONS(4342), + [anon_sym___asm__] = ACTIONS(4342), + [sym_number_literal] = ACTIONS(4344), + [anon_sym_L_SQUOTE] = ACTIONS(4344), + [anon_sym_u_SQUOTE] = ACTIONS(4344), + [anon_sym_U_SQUOTE] = ACTIONS(4344), + [anon_sym_u8_SQUOTE] = ACTIONS(4344), + [anon_sym_SQUOTE] = ACTIONS(4344), + [anon_sym_L_DQUOTE] = ACTIONS(4344), + [anon_sym_u_DQUOTE] = ACTIONS(4344), + [anon_sym_U_DQUOTE] = ACTIONS(4344), + [anon_sym_u8_DQUOTE] = ACTIONS(4344), + [anon_sym_DQUOTE] = ACTIONS(4344), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4342), + [anon_sym_nullptr] = ACTIONS(4342), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4342), + [anon_sym_decltype] = ACTIONS(4342), + [anon_sym_virtual] = ACTIONS(4342), + [anon_sym_alignas] = ACTIONS(4342), + [anon_sym_typename] = ACTIONS(4342), + [anon_sym_template] = ACTIONS(4342), + [anon_sym_try] = ACTIONS(4342), + [anon_sym_delete] = ACTIONS(4342), + [anon_sym_throw] = ACTIONS(4342), + [anon_sym_co_return] = ACTIONS(4342), + [anon_sym_co_yield] = ACTIONS(4342), + [anon_sym_R_DQUOTE] = ACTIONS(4344), + [anon_sym_LR_DQUOTE] = ACTIONS(4344), + [anon_sym_uR_DQUOTE] = ACTIONS(4344), + [anon_sym_UR_DQUOTE] = ACTIONS(4344), + [anon_sym_u8R_DQUOTE] = ACTIONS(4344), + [anon_sym_co_await] = ACTIONS(4342), + [anon_sym_new] = ACTIONS(4342), + [anon_sym_requires] = ACTIONS(4342), + [sym_this] = ACTIONS(4342), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4344), + [sym_semgrep_named_ellipsis] = ACTIONS(4344), + }, + [981] = { + [sym_identifier] = ACTIONS(3193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3195), + [anon_sym_LPAREN2] = ACTIONS(3195), + [anon_sym_BANG] = ACTIONS(3195), + [anon_sym_TILDE] = ACTIONS(3195), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(3195), + [anon_sym_AMP] = ACTIONS(3195), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym___extension__] = ACTIONS(3193), + [anon_sym_typedef] = ACTIONS(3193), + [anon_sym_extern] = ACTIONS(3193), + [anon_sym___attribute__] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(3195), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3195), + [anon_sym___declspec] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(3195), + [anon_sym_signed] = ACTIONS(3193), + [anon_sym_unsigned] = ACTIONS(3193), + [anon_sym_long] = ACTIONS(3193), + [anon_sym_short] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(3193), + [anon_sym_static] = ACTIONS(3193), + [anon_sym_register] = ACTIONS(3193), + [anon_sym_inline] = ACTIONS(3193), + [anon_sym___inline] = ACTIONS(3193), + [anon_sym___inline__] = ACTIONS(3193), + [anon_sym___forceinline] = ACTIONS(3193), + [anon_sym_thread_local] = ACTIONS(3193), + [anon_sym___thread] = ACTIONS(3193), + [anon_sym_const] = ACTIONS(3193), + [anon_sym_constexpr] = ACTIONS(3193), + [anon_sym_volatile] = ACTIONS(3193), + [anon_sym_restrict] = ACTIONS(3193), + [anon_sym___restrict__] = ACTIONS(3193), + [anon_sym__Atomic] = ACTIONS(3193), + [anon_sym__Noreturn] = ACTIONS(3193), + [anon_sym_noreturn] = ACTIONS(3193), + [anon_sym_mutable] = ACTIONS(3193), + [anon_sym_constinit] = ACTIONS(3193), + [anon_sym_consteval] = ACTIONS(3193), + [sym_primitive_type] = ACTIONS(3193), + [anon_sym_enum] = ACTIONS(3193), + [anon_sym_class] = ACTIONS(3193), + [anon_sym_struct] = ACTIONS(3193), + [anon_sym_union] = ACTIONS(3193), + [anon_sym_if] = ACTIONS(3193), + [anon_sym_else] = ACTIONS(3193), + [anon_sym_switch] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_do] = ACTIONS(3193), + [anon_sym_for] = ACTIONS(3193), + [anon_sym_return] = ACTIONS(3193), + [anon_sym_break] = ACTIONS(3193), + [anon_sym_continue] = ACTIONS(3193), + [anon_sym_goto] = ACTIONS(3193), + [anon_sym___try] = ACTIONS(3193), + [anon_sym___leave] = ACTIONS(3193), + [anon_sym_not] = ACTIONS(3193), + [anon_sym_compl] = ACTIONS(3193), + [anon_sym_DASH_DASH] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3195), + [anon_sym_sizeof] = ACTIONS(3193), + [anon_sym___alignof__] = ACTIONS(3193), + [anon_sym___alignof] = ACTIONS(3193), + [anon_sym__alignof] = ACTIONS(3193), + [anon_sym_alignof] = ACTIONS(3193), + [anon_sym__Alignof] = ACTIONS(3193), + [anon_sym_offsetof] = ACTIONS(3193), + [anon_sym__Generic] = ACTIONS(3193), + [anon_sym_asm] = ACTIONS(3193), + [anon_sym___asm__] = ACTIONS(3193), + [sym_number_literal] = ACTIONS(3195), + [anon_sym_L_SQUOTE] = ACTIONS(3195), + [anon_sym_u_SQUOTE] = ACTIONS(3195), + [anon_sym_U_SQUOTE] = ACTIONS(3195), + [anon_sym_u8_SQUOTE] = ACTIONS(3195), + [anon_sym_SQUOTE] = ACTIONS(3195), + [anon_sym_L_DQUOTE] = ACTIONS(3195), + [anon_sym_u_DQUOTE] = ACTIONS(3195), + [anon_sym_U_DQUOTE] = ACTIONS(3195), + [anon_sym_u8_DQUOTE] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(3195), + [sym_true] = ACTIONS(3193), + [sym_false] = ACTIONS(3193), + [anon_sym_NULL] = ACTIONS(3193), + [anon_sym_nullptr] = ACTIONS(3193), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3193), + [anon_sym_decltype] = ACTIONS(3193), + [anon_sym_virtual] = ACTIONS(3193), + [anon_sym_alignas] = ACTIONS(3193), + [anon_sym_typename] = ACTIONS(3193), + [anon_sym_template] = ACTIONS(3193), + [anon_sym_try] = ACTIONS(3193), + [anon_sym_delete] = ACTIONS(3193), + [anon_sym_throw] = ACTIONS(3193), + [anon_sym_co_return] = ACTIONS(3193), + [anon_sym_co_yield] = ACTIONS(3193), + [anon_sym_R_DQUOTE] = ACTIONS(3195), + [anon_sym_LR_DQUOTE] = ACTIONS(3195), + [anon_sym_uR_DQUOTE] = ACTIONS(3195), + [anon_sym_UR_DQUOTE] = ACTIONS(3195), + [anon_sym_u8R_DQUOTE] = ACTIONS(3195), + [anon_sym_co_await] = ACTIONS(3193), + [anon_sym_new] = ACTIONS(3193), + [anon_sym_requires] = ACTIONS(3193), + [sym_this] = ACTIONS(3193), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3195), + [sym_semgrep_named_ellipsis] = ACTIONS(3195), + }, + [982] = { + [sym_identifier] = ACTIONS(3079), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3081), + [anon_sym_LPAREN2] = ACTIONS(3081), + [anon_sym_BANG] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(3079), + [anon_sym_STAR] = ACTIONS(3081), + [anon_sym_AMP] = ACTIONS(3081), + [anon_sym_SEMI] = ACTIONS(3081), + [anon_sym___extension__] = ACTIONS(3079), + [anon_sym_typedef] = ACTIONS(3079), + [anon_sym_extern] = ACTIONS(3079), + [anon_sym___attribute__] = ACTIONS(3079), + [anon_sym_COLON_COLON] = ACTIONS(3081), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3081), + [anon_sym___declspec] = ACTIONS(3079), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_signed] = ACTIONS(3079), + [anon_sym_unsigned] = ACTIONS(3079), + [anon_sym_long] = ACTIONS(3079), + [anon_sym_short] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(3079), + [anon_sym_static] = ACTIONS(3079), + [anon_sym_register] = ACTIONS(3079), + [anon_sym_inline] = ACTIONS(3079), + [anon_sym___inline] = ACTIONS(3079), + [anon_sym___inline__] = ACTIONS(3079), + [anon_sym___forceinline] = ACTIONS(3079), + [anon_sym_thread_local] = ACTIONS(3079), + [anon_sym___thread] = ACTIONS(3079), + [anon_sym_const] = ACTIONS(3079), + [anon_sym_constexpr] = ACTIONS(3079), + [anon_sym_volatile] = ACTIONS(3079), + [anon_sym_restrict] = ACTIONS(3079), + [anon_sym___restrict__] = ACTIONS(3079), + [anon_sym__Atomic] = ACTIONS(3079), + [anon_sym__Noreturn] = ACTIONS(3079), + [anon_sym_noreturn] = ACTIONS(3079), + [anon_sym_mutable] = ACTIONS(3079), + [anon_sym_constinit] = ACTIONS(3079), + [anon_sym_consteval] = ACTIONS(3079), + [sym_primitive_type] = ACTIONS(3079), + [anon_sym_enum] = ACTIONS(3079), + [anon_sym_class] = ACTIONS(3079), + [anon_sym_struct] = ACTIONS(3079), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_if] = ACTIONS(3079), + [anon_sym_else] = ACTIONS(3079), + [anon_sym_switch] = ACTIONS(3079), + [anon_sym_while] = ACTIONS(3079), + [anon_sym_do] = ACTIONS(3079), + [anon_sym_for] = ACTIONS(3079), + [anon_sym_return] = ACTIONS(3079), + [anon_sym_break] = ACTIONS(3079), + [anon_sym_continue] = ACTIONS(3079), + [anon_sym_goto] = ACTIONS(3079), + [anon_sym___try] = ACTIONS(3079), + [anon_sym___leave] = ACTIONS(3079), + [anon_sym_not] = ACTIONS(3079), + [anon_sym_compl] = ACTIONS(3079), + [anon_sym_DASH_DASH] = ACTIONS(3081), + [anon_sym_PLUS_PLUS] = ACTIONS(3081), + [anon_sym_sizeof] = ACTIONS(3079), + [anon_sym___alignof__] = ACTIONS(3079), + [anon_sym___alignof] = ACTIONS(3079), + [anon_sym__alignof] = ACTIONS(3079), + [anon_sym_alignof] = ACTIONS(3079), + [anon_sym__Alignof] = ACTIONS(3079), + [anon_sym_offsetof] = ACTIONS(3079), + [anon_sym__Generic] = ACTIONS(3079), + [anon_sym_asm] = ACTIONS(3079), + [anon_sym___asm__] = ACTIONS(3079), + [sym_number_literal] = ACTIONS(3081), + [anon_sym_L_SQUOTE] = ACTIONS(3081), + [anon_sym_u_SQUOTE] = ACTIONS(3081), + [anon_sym_U_SQUOTE] = ACTIONS(3081), + [anon_sym_u8_SQUOTE] = ACTIONS(3081), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_L_DQUOTE] = ACTIONS(3081), + [anon_sym_u_DQUOTE] = ACTIONS(3081), + [anon_sym_U_DQUOTE] = ACTIONS(3081), + [anon_sym_u8_DQUOTE] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(3081), + [sym_true] = ACTIONS(3079), + [sym_false] = ACTIONS(3079), + [anon_sym_NULL] = ACTIONS(3079), + [anon_sym_nullptr] = ACTIONS(3079), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3079), + [anon_sym_decltype] = ACTIONS(3079), + [anon_sym_virtual] = ACTIONS(3079), + [anon_sym_alignas] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3079), + [anon_sym_template] = ACTIONS(3079), + [anon_sym_try] = ACTIONS(3079), + [anon_sym_delete] = ACTIONS(3079), + [anon_sym_throw] = ACTIONS(3079), + [anon_sym_co_return] = ACTIONS(3079), + [anon_sym_co_yield] = ACTIONS(3079), + [anon_sym_R_DQUOTE] = ACTIONS(3081), + [anon_sym_LR_DQUOTE] = ACTIONS(3081), + [anon_sym_uR_DQUOTE] = ACTIONS(3081), + [anon_sym_UR_DQUOTE] = ACTIONS(3081), + [anon_sym_u8R_DQUOTE] = ACTIONS(3081), + [anon_sym_co_await] = ACTIONS(3079), + [anon_sym_new] = ACTIONS(3079), + [anon_sym_requires] = ACTIONS(3079), + [sym_this] = ACTIONS(3079), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3081), + [sym_semgrep_named_ellipsis] = ACTIONS(3081), + }, + [983] = { + [sym_identifier] = ACTIONS(3143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3145), + [anon_sym_LPAREN2] = ACTIONS(3145), + [anon_sym_BANG] = ACTIONS(3145), + [anon_sym_TILDE] = ACTIONS(3145), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_STAR] = ACTIONS(3145), + [anon_sym_AMP] = ACTIONS(3145), + [anon_sym_SEMI] = ACTIONS(3145), + [anon_sym___extension__] = ACTIONS(3143), + [anon_sym_typedef] = ACTIONS(3143), + [anon_sym_extern] = ACTIONS(3143), + [anon_sym___attribute__] = ACTIONS(3143), + [anon_sym_COLON_COLON] = ACTIONS(3145), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3145), + [anon_sym___declspec] = ACTIONS(3143), + [anon_sym_LBRACE] = ACTIONS(3145), + [anon_sym_signed] = ACTIONS(3143), + [anon_sym_unsigned] = ACTIONS(3143), + [anon_sym_long] = ACTIONS(3143), + [anon_sym_short] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(3143), + [anon_sym_static] = ACTIONS(3143), + [anon_sym_register] = ACTIONS(3143), + [anon_sym_inline] = ACTIONS(3143), + [anon_sym___inline] = ACTIONS(3143), + [anon_sym___inline__] = ACTIONS(3143), + [anon_sym___forceinline] = ACTIONS(3143), + [anon_sym_thread_local] = ACTIONS(3143), + [anon_sym___thread] = ACTIONS(3143), + [anon_sym_const] = ACTIONS(3143), + [anon_sym_constexpr] = ACTIONS(3143), + [anon_sym_volatile] = ACTIONS(3143), + [anon_sym_restrict] = ACTIONS(3143), + [anon_sym___restrict__] = ACTIONS(3143), + [anon_sym__Atomic] = ACTIONS(3143), + [anon_sym__Noreturn] = ACTIONS(3143), + [anon_sym_noreturn] = ACTIONS(3143), + [anon_sym_mutable] = ACTIONS(3143), + [anon_sym_constinit] = ACTIONS(3143), + [anon_sym_consteval] = ACTIONS(3143), + [sym_primitive_type] = ACTIONS(3143), + [anon_sym_enum] = ACTIONS(3143), + [anon_sym_class] = ACTIONS(3143), + [anon_sym_struct] = ACTIONS(3143), + [anon_sym_union] = ACTIONS(3143), + [anon_sym_if] = ACTIONS(3143), + [anon_sym_else] = ACTIONS(3143), + [anon_sym_switch] = ACTIONS(3143), + [anon_sym_while] = ACTIONS(3143), + [anon_sym_do] = ACTIONS(3143), + [anon_sym_for] = ACTIONS(3143), + [anon_sym_return] = ACTIONS(3143), + [anon_sym_break] = ACTIONS(3143), + [anon_sym_continue] = ACTIONS(3143), + [anon_sym_goto] = ACTIONS(3143), + [anon_sym___try] = ACTIONS(3143), + [anon_sym___leave] = ACTIONS(3143), + [anon_sym_not] = ACTIONS(3143), + [anon_sym_compl] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3145), + [anon_sym_PLUS_PLUS] = ACTIONS(3145), + [anon_sym_sizeof] = ACTIONS(3143), + [anon_sym___alignof__] = ACTIONS(3143), + [anon_sym___alignof] = ACTIONS(3143), + [anon_sym__alignof] = ACTIONS(3143), + [anon_sym_alignof] = ACTIONS(3143), + [anon_sym__Alignof] = ACTIONS(3143), + [anon_sym_offsetof] = ACTIONS(3143), + [anon_sym__Generic] = ACTIONS(3143), + [anon_sym_asm] = ACTIONS(3143), + [anon_sym___asm__] = ACTIONS(3143), + [sym_number_literal] = ACTIONS(3145), + [anon_sym_L_SQUOTE] = ACTIONS(3145), + [anon_sym_u_SQUOTE] = ACTIONS(3145), + [anon_sym_U_SQUOTE] = ACTIONS(3145), + [anon_sym_u8_SQUOTE] = ACTIONS(3145), + [anon_sym_SQUOTE] = ACTIONS(3145), + [anon_sym_L_DQUOTE] = ACTIONS(3145), + [anon_sym_u_DQUOTE] = ACTIONS(3145), + [anon_sym_U_DQUOTE] = ACTIONS(3145), + [anon_sym_u8_DQUOTE] = ACTIONS(3145), + [anon_sym_DQUOTE] = ACTIONS(3145), + [sym_true] = ACTIONS(3143), + [sym_false] = ACTIONS(3143), + [anon_sym_NULL] = ACTIONS(3143), + [anon_sym_nullptr] = ACTIONS(3143), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3143), + [anon_sym_decltype] = ACTIONS(3143), + [anon_sym_virtual] = ACTIONS(3143), + [anon_sym_alignas] = ACTIONS(3143), + [anon_sym_typename] = ACTIONS(3143), + [anon_sym_template] = ACTIONS(3143), + [anon_sym_try] = ACTIONS(3143), + [anon_sym_delete] = ACTIONS(3143), + [anon_sym_throw] = ACTIONS(3143), + [anon_sym_co_return] = ACTIONS(3143), + [anon_sym_co_yield] = ACTIONS(3143), + [anon_sym_R_DQUOTE] = ACTIONS(3145), + [anon_sym_LR_DQUOTE] = ACTIONS(3145), + [anon_sym_uR_DQUOTE] = ACTIONS(3145), + [anon_sym_UR_DQUOTE] = ACTIONS(3145), + [anon_sym_u8R_DQUOTE] = ACTIONS(3145), + [anon_sym_co_await] = ACTIONS(3143), + [anon_sym_new] = ACTIONS(3143), + [anon_sym_requires] = ACTIONS(3143), + [sym_this] = ACTIONS(3143), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3145), + [sym_semgrep_named_ellipsis] = ACTIONS(3145), + }, + [984] = { + [sym_identifier] = ACTIONS(3091), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3093), + [anon_sym_LPAREN2] = ACTIONS(3093), + [anon_sym_BANG] = ACTIONS(3093), + [anon_sym_TILDE] = ACTIONS(3093), + [anon_sym_DASH] = ACTIONS(3091), + [anon_sym_PLUS] = ACTIONS(3091), + [anon_sym_STAR] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3093), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym___extension__] = ACTIONS(3091), + [anon_sym_typedef] = ACTIONS(3091), + [anon_sym_extern] = ACTIONS(3091), + [anon_sym___attribute__] = ACTIONS(3091), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3093), + [anon_sym___declspec] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_signed] = ACTIONS(3091), + [anon_sym_unsigned] = ACTIONS(3091), + [anon_sym_long] = ACTIONS(3091), + [anon_sym_short] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_static] = ACTIONS(3091), + [anon_sym_register] = ACTIONS(3091), + [anon_sym_inline] = ACTIONS(3091), + [anon_sym___inline] = ACTIONS(3091), + [anon_sym___inline__] = ACTIONS(3091), + [anon_sym___forceinline] = ACTIONS(3091), + [anon_sym_thread_local] = ACTIONS(3091), + [anon_sym___thread] = ACTIONS(3091), + [anon_sym_const] = ACTIONS(3091), + [anon_sym_constexpr] = ACTIONS(3091), + [anon_sym_volatile] = ACTIONS(3091), + [anon_sym_restrict] = ACTIONS(3091), + [anon_sym___restrict__] = ACTIONS(3091), + [anon_sym__Atomic] = ACTIONS(3091), + [anon_sym__Noreturn] = ACTIONS(3091), + [anon_sym_noreturn] = ACTIONS(3091), + [anon_sym_mutable] = ACTIONS(3091), + [anon_sym_constinit] = ACTIONS(3091), + [anon_sym_consteval] = ACTIONS(3091), + [sym_primitive_type] = ACTIONS(3091), + [anon_sym_enum] = ACTIONS(3091), + [anon_sym_class] = ACTIONS(3091), + [anon_sym_struct] = ACTIONS(3091), + [anon_sym_union] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3091), + [anon_sym_else] = ACTIONS(3091), + [anon_sym_switch] = ACTIONS(3091), + [anon_sym_while] = ACTIONS(3091), + [anon_sym_do] = ACTIONS(3091), + [anon_sym_for] = ACTIONS(3091), + [anon_sym_return] = ACTIONS(3091), + [anon_sym_break] = ACTIONS(3091), + [anon_sym_continue] = ACTIONS(3091), + [anon_sym_goto] = ACTIONS(3091), + [anon_sym___try] = ACTIONS(3091), + [anon_sym___leave] = ACTIONS(3091), + [anon_sym_not] = ACTIONS(3091), + [anon_sym_compl] = ACTIONS(3091), + [anon_sym_DASH_DASH] = ACTIONS(3093), + [anon_sym_PLUS_PLUS] = ACTIONS(3093), + [anon_sym_sizeof] = ACTIONS(3091), + [anon_sym___alignof__] = ACTIONS(3091), + [anon_sym___alignof] = ACTIONS(3091), + [anon_sym__alignof] = ACTIONS(3091), + [anon_sym_alignof] = ACTIONS(3091), + [anon_sym__Alignof] = ACTIONS(3091), + [anon_sym_offsetof] = ACTIONS(3091), + [anon_sym__Generic] = ACTIONS(3091), + [anon_sym_asm] = ACTIONS(3091), + [anon_sym___asm__] = ACTIONS(3091), + [sym_number_literal] = ACTIONS(3093), + [anon_sym_L_SQUOTE] = ACTIONS(3093), + [anon_sym_u_SQUOTE] = ACTIONS(3093), + [anon_sym_U_SQUOTE] = ACTIONS(3093), + [anon_sym_u8_SQUOTE] = ACTIONS(3093), + [anon_sym_SQUOTE] = ACTIONS(3093), + [anon_sym_L_DQUOTE] = ACTIONS(3093), + [anon_sym_u_DQUOTE] = ACTIONS(3093), + [anon_sym_U_DQUOTE] = ACTIONS(3093), + [anon_sym_u8_DQUOTE] = ACTIONS(3093), + [anon_sym_DQUOTE] = ACTIONS(3093), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [anon_sym_NULL] = ACTIONS(3091), + [anon_sym_nullptr] = ACTIONS(3091), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3091), + [anon_sym_decltype] = ACTIONS(3091), + [anon_sym_virtual] = ACTIONS(3091), + [anon_sym_alignas] = ACTIONS(3091), + [anon_sym_typename] = ACTIONS(3091), + [anon_sym_template] = ACTIONS(3091), + [anon_sym_try] = ACTIONS(3091), + [anon_sym_delete] = ACTIONS(3091), + [anon_sym_throw] = ACTIONS(3091), + [anon_sym_co_return] = ACTIONS(3091), + [anon_sym_co_yield] = ACTIONS(3091), + [anon_sym_R_DQUOTE] = ACTIONS(3093), + [anon_sym_LR_DQUOTE] = ACTIONS(3093), + [anon_sym_uR_DQUOTE] = ACTIONS(3093), + [anon_sym_UR_DQUOTE] = ACTIONS(3093), + [anon_sym_u8R_DQUOTE] = ACTIONS(3093), + [anon_sym_co_await] = ACTIONS(3091), + [anon_sym_new] = ACTIONS(3091), + [anon_sym_requires] = ACTIONS(3091), + [sym_this] = ACTIONS(3091), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3093), + [sym_semgrep_named_ellipsis] = ACTIONS(3093), + }, + [985] = { + [sym_identifier] = ACTIONS(3095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3097), + [anon_sym_LPAREN2] = ACTIONS(3097), + [anon_sym_BANG] = ACTIONS(3097), + [anon_sym_TILDE] = ACTIONS(3097), + [anon_sym_DASH] = ACTIONS(3095), + [anon_sym_PLUS] = ACTIONS(3095), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_SEMI] = ACTIONS(3097), + [anon_sym___extension__] = ACTIONS(3095), + [anon_sym_typedef] = ACTIONS(3095), + [anon_sym_extern] = ACTIONS(3095), + [anon_sym___attribute__] = ACTIONS(3095), + [anon_sym_COLON_COLON] = ACTIONS(3097), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3097), + [anon_sym___declspec] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_signed] = ACTIONS(3095), + [anon_sym_unsigned] = ACTIONS(3095), + [anon_sym_long] = ACTIONS(3095), + [anon_sym_short] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3095), + [anon_sym_static] = ACTIONS(3095), + [anon_sym_register] = ACTIONS(3095), + [anon_sym_inline] = ACTIONS(3095), + [anon_sym___inline] = ACTIONS(3095), + [anon_sym___inline__] = ACTIONS(3095), + [anon_sym___forceinline] = ACTIONS(3095), + [anon_sym_thread_local] = ACTIONS(3095), + [anon_sym___thread] = ACTIONS(3095), + [anon_sym_const] = ACTIONS(3095), + [anon_sym_constexpr] = ACTIONS(3095), + [anon_sym_volatile] = ACTIONS(3095), + [anon_sym_restrict] = ACTIONS(3095), + [anon_sym___restrict__] = ACTIONS(3095), + [anon_sym__Atomic] = ACTIONS(3095), + [anon_sym__Noreturn] = ACTIONS(3095), + [anon_sym_noreturn] = ACTIONS(3095), + [anon_sym_mutable] = ACTIONS(3095), + [anon_sym_constinit] = ACTIONS(3095), + [anon_sym_consteval] = ACTIONS(3095), + [sym_primitive_type] = ACTIONS(3095), + [anon_sym_enum] = ACTIONS(3095), + [anon_sym_class] = ACTIONS(3095), + [anon_sym_struct] = ACTIONS(3095), + [anon_sym_union] = ACTIONS(3095), + [anon_sym_if] = ACTIONS(3095), + [anon_sym_else] = ACTIONS(3095), + [anon_sym_switch] = ACTIONS(3095), + [anon_sym_while] = ACTIONS(3095), + [anon_sym_do] = ACTIONS(3095), + [anon_sym_for] = ACTIONS(3095), + [anon_sym_return] = ACTIONS(3095), + [anon_sym_break] = ACTIONS(3095), + [anon_sym_continue] = ACTIONS(3095), + [anon_sym_goto] = ACTIONS(3095), + [anon_sym___try] = ACTIONS(3095), + [anon_sym___leave] = ACTIONS(3095), + [anon_sym_not] = ACTIONS(3095), + [anon_sym_compl] = ACTIONS(3095), + [anon_sym_DASH_DASH] = ACTIONS(3097), + [anon_sym_PLUS_PLUS] = ACTIONS(3097), + [anon_sym_sizeof] = ACTIONS(3095), + [anon_sym___alignof__] = ACTIONS(3095), + [anon_sym___alignof] = ACTIONS(3095), + [anon_sym__alignof] = ACTIONS(3095), + [anon_sym_alignof] = ACTIONS(3095), + [anon_sym__Alignof] = ACTIONS(3095), + [anon_sym_offsetof] = ACTIONS(3095), + [anon_sym__Generic] = ACTIONS(3095), + [anon_sym_asm] = ACTIONS(3095), + [anon_sym___asm__] = ACTIONS(3095), + [sym_number_literal] = ACTIONS(3097), + [anon_sym_L_SQUOTE] = ACTIONS(3097), + [anon_sym_u_SQUOTE] = ACTIONS(3097), + [anon_sym_U_SQUOTE] = ACTIONS(3097), + [anon_sym_u8_SQUOTE] = ACTIONS(3097), + [anon_sym_SQUOTE] = ACTIONS(3097), + [anon_sym_L_DQUOTE] = ACTIONS(3097), + [anon_sym_u_DQUOTE] = ACTIONS(3097), + [anon_sym_U_DQUOTE] = ACTIONS(3097), + [anon_sym_u8_DQUOTE] = ACTIONS(3097), + [anon_sym_DQUOTE] = ACTIONS(3097), + [sym_true] = ACTIONS(3095), + [sym_false] = ACTIONS(3095), + [anon_sym_NULL] = ACTIONS(3095), + [anon_sym_nullptr] = ACTIONS(3095), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3095), + [anon_sym_decltype] = ACTIONS(3095), + [anon_sym_virtual] = ACTIONS(3095), + [anon_sym_alignas] = ACTIONS(3095), + [anon_sym_typename] = ACTIONS(3095), + [anon_sym_template] = ACTIONS(3095), + [anon_sym_try] = ACTIONS(3095), + [anon_sym_delete] = ACTIONS(3095), + [anon_sym_throw] = ACTIONS(3095), + [anon_sym_co_return] = ACTIONS(3095), + [anon_sym_co_yield] = ACTIONS(3095), + [anon_sym_R_DQUOTE] = ACTIONS(3097), + [anon_sym_LR_DQUOTE] = ACTIONS(3097), + [anon_sym_uR_DQUOTE] = ACTIONS(3097), + [anon_sym_UR_DQUOTE] = ACTIONS(3097), + [anon_sym_u8R_DQUOTE] = ACTIONS(3097), + [anon_sym_co_await] = ACTIONS(3095), + [anon_sym_new] = ACTIONS(3095), + [anon_sym_requires] = ACTIONS(3095), + [sym_this] = ACTIONS(3095), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3097), + [sym_semgrep_named_ellipsis] = ACTIONS(3097), + }, + [986] = { + [sym_identifier] = ACTIONS(3099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3101), + [anon_sym_LPAREN2] = ACTIONS(3101), + [anon_sym_BANG] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3101), + [anon_sym_DASH] = ACTIONS(3099), + [anon_sym_PLUS] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3101), + [anon_sym_SEMI] = ACTIONS(3101), + [anon_sym___extension__] = ACTIONS(3099), + [anon_sym_typedef] = ACTIONS(3099), + [anon_sym_extern] = ACTIONS(3099), + [anon_sym___attribute__] = ACTIONS(3099), + [anon_sym_COLON_COLON] = ACTIONS(3101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3101), + [anon_sym___declspec] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(3101), + [anon_sym_signed] = ACTIONS(3099), + [anon_sym_unsigned] = ACTIONS(3099), + [anon_sym_long] = ACTIONS(3099), + [anon_sym_short] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3099), + [anon_sym_register] = ACTIONS(3099), + [anon_sym_inline] = ACTIONS(3099), + [anon_sym___inline] = ACTIONS(3099), + [anon_sym___inline__] = ACTIONS(3099), + [anon_sym___forceinline] = ACTIONS(3099), + [anon_sym_thread_local] = ACTIONS(3099), + [anon_sym___thread] = ACTIONS(3099), + [anon_sym_const] = ACTIONS(3099), + [anon_sym_constexpr] = ACTIONS(3099), + [anon_sym_volatile] = ACTIONS(3099), + [anon_sym_restrict] = ACTIONS(3099), + [anon_sym___restrict__] = ACTIONS(3099), + [anon_sym__Atomic] = ACTIONS(3099), + [anon_sym__Noreturn] = ACTIONS(3099), + [anon_sym_noreturn] = ACTIONS(3099), + [anon_sym_mutable] = ACTIONS(3099), + [anon_sym_constinit] = ACTIONS(3099), + [anon_sym_consteval] = ACTIONS(3099), + [sym_primitive_type] = ACTIONS(3099), + [anon_sym_enum] = ACTIONS(3099), + [anon_sym_class] = ACTIONS(3099), + [anon_sym_struct] = ACTIONS(3099), + [anon_sym_union] = ACTIONS(3099), + [anon_sym_if] = ACTIONS(3099), + [anon_sym_else] = ACTIONS(3099), + [anon_sym_switch] = ACTIONS(3099), + [anon_sym_while] = ACTIONS(3099), + [anon_sym_do] = ACTIONS(3099), + [anon_sym_for] = ACTIONS(3099), + [anon_sym_return] = ACTIONS(3099), + [anon_sym_break] = ACTIONS(3099), + [anon_sym_continue] = ACTIONS(3099), + [anon_sym_goto] = ACTIONS(3099), + [anon_sym___try] = ACTIONS(3099), + [anon_sym___leave] = ACTIONS(3099), + [anon_sym_not] = ACTIONS(3099), + [anon_sym_compl] = ACTIONS(3099), + [anon_sym_DASH_DASH] = ACTIONS(3101), + [anon_sym_PLUS_PLUS] = ACTIONS(3101), + [anon_sym_sizeof] = ACTIONS(3099), + [anon_sym___alignof__] = ACTIONS(3099), + [anon_sym___alignof] = ACTIONS(3099), + [anon_sym__alignof] = ACTIONS(3099), + [anon_sym_alignof] = ACTIONS(3099), + [anon_sym__Alignof] = ACTIONS(3099), + [anon_sym_offsetof] = ACTIONS(3099), + [anon_sym__Generic] = ACTIONS(3099), + [anon_sym_asm] = ACTIONS(3099), + [anon_sym___asm__] = ACTIONS(3099), + [sym_number_literal] = ACTIONS(3101), + [anon_sym_L_SQUOTE] = ACTIONS(3101), + [anon_sym_u_SQUOTE] = ACTIONS(3101), + [anon_sym_U_SQUOTE] = ACTIONS(3101), + [anon_sym_u8_SQUOTE] = ACTIONS(3101), + [anon_sym_SQUOTE] = ACTIONS(3101), + [anon_sym_L_DQUOTE] = ACTIONS(3101), + [anon_sym_u_DQUOTE] = ACTIONS(3101), + [anon_sym_U_DQUOTE] = ACTIONS(3101), + [anon_sym_u8_DQUOTE] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(3101), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [anon_sym_NULL] = ACTIONS(3099), + [anon_sym_nullptr] = ACTIONS(3099), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3099), + [anon_sym_decltype] = ACTIONS(3099), + [anon_sym_virtual] = ACTIONS(3099), + [anon_sym_alignas] = ACTIONS(3099), + [anon_sym_typename] = ACTIONS(3099), + [anon_sym_template] = ACTIONS(3099), + [anon_sym_try] = ACTIONS(3099), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_throw] = ACTIONS(3099), + [anon_sym_co_return] = ACTIONS(3099), + [anon_sym_co_yield] = ACTIONS(3099), + [anon_sym_R_DQUOTE] = ACTIONS(3101), + [anon_sym_LR_DQUOTE] = ACTIONS(3101), + [anon_sym_uR_DQUOTE] = ACTIONS(3101), + [anon_sym_UR_DQUOTE] = ACTIONS(3101), + [anon_sym_u8R_DQUOTE] = ACTIONS(3101), + [anon_sym_co_await] = ACTIONS(3099), + [anon_sym_new] = ACTIONS(3099), + [anon_sym_requires] = ACTIONS(3099), + [sym_this] = ACTIONS(3099), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3101), + [sym_semgrep_named_ellipsis] = ACTIONS(3101), + }, + [987] = { + [sym_identifier] = ACTIONS(3103), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3103), + [anon_sym_PLUS] = ACTIONS(3103), + [anon_sym_STAR] = ACTIONS(3105), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym___extension__] = ACTIONS(3103), + [anon_sym_typedef] = ACTIONS(3103), + [anon_sym_extern] = ACTIONS(3103), + [anon_sym___attribute__] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3105), + [anon_sym___declspec] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(3105), + [anon_sym_signed] = ACTIONS(3103), + [anon_sym_unsigned] = ACTIONS(3103), + [anon_sym_long] = ACTIONS(3103), + [anon_sym_short] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(3103), + [anon_sym_static] = ACTIONS(3103), + [anon_sym_register] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym___inline] = ACTIONS(3103), + [anon_sym___inline__] = ACTIONS(3103), + [anon_sym___forceinline] = ACTIONS(3103), + [anon_sym_thread_local] = ACTIONS(3103), + [anon_sym___thread] = ACTIONS(3103), + [anon_sym_const] = ACTIONS(3103), + [anon_sym_constexpr] = ACTIONS(3103), + [anon_sym_volatile] = ACTIONS(3103), + [anon_sym_restrict] = ACTIONS(3103), + [anon_sym___restrict__] = ACTIONS(3103), + [anon_sym__Atomic] = ACTIONS(3103), + [anon_sym__Noreturn] = ACTIONS(3103), + [anon_sym_noreturn] = ACTIONS(3103), + [anon_sym_mutable] = ACTIONS(3103), + [anon_sym_constinit] = ACTIONS(3103), + [anon_sym_consteval] = ACTIONS(3103), + [sym_primitive_type] = ACTIONS(3103), + [anon_sym_enum] = ACTIONS(3103), + [anon_sym_class] = ACTIONS(3103), + [anon_sym_struct] = ACTIONS(3103), + [anon_sym_union] = ACTIONS(3103), + [anon_sym_if] = ACTIONS(3103), + [anon_sym_else] = ACTIONS(3103), + [anon_sym_switch] = ACTIONS(3103), + [anon_sym_while] = ACTIONS(3103), + [anon_sym_do] = ACTIONS(3103), + [anon_sym_for] = ACTIONS(3103), + [anon_sym_return] = ACTIONS(3103), + [anon_sym_break] = ACTIONS(3103), + [anon_sym_continue] = ACTIONS(3103), + [anon_sym_goto] = ACTIONS(3103), + [anon_sym___try] = ACTIONS(3103), + [anon_sym___leave] = ACTIONS(3103), + [anon_sym_not] = ACTIONS(3103), + [anon_sym_compl] = ACTIONS(3103), + [anon_sym_DASH_DASH] = ACTIONS(3105), + [anon_sym_PLUS_PLUS] = ACTIONS(3105), + [anon_sym_sizeof] = ACTIONS(3103), + [anon_sym___alignof__] = ACTIONS(3103), + [anon_sym___alignof] = ACTIONS(3103), + [anon_sym__alignof] = ACTIONS(3103), + [anon_sym_alignof] = ACTIONS(3103), + [anon_sym__Alignof] = ACTIONS(3103), + [anon_sym_offsetof] = ACTIONS(3103), + [anon_sym__Generic] = ACTIONS(3103), + [anon_sym_asm] = ACTIONS(3103), + [anon_sym___asm__] = ACTIONS(3103), + [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(3103), + [sym_false] = ACTIONS(3103), + [anon_sym_NULL] = ACTIONS(3103), + [anon_sym_nullptr] = ACTIONS(3103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3103), + [anon_sym_decltype] = ACTIONS(3103), + [anon_sym_virtual] = ACTIONS(3103), + [anon_sym_alignas] = ACTIONS(3103), + [anon_sym_typename] = ACTIONS(3103), + [anon_sym_template] = ACTIONS(3103), + [anon_sym_try] = ACTIONS(3103), + [anon_sym_delete] = ACTIONS(3103), + [anon_sym_throw] = ACTIONS(3103), + [anon_sym_co_return] = ACTIONS(3103), + [anon_sym_co_yield] = ACTIONS(3103), + [anon_sym_R_DQUOTE] = ACTIONS(3105), + [anon_sym_LR_DQUOTE] = ACTIONS(3105), + [anon_sym_uR_DQUOTE] = ACTIONS(3105), + [anon_sym_UR_DQUOTE] = ACTIONS(3105), + [anon_sym_u8R_DQUOTE] = ACTIONS(3105), + [anon_sym_co_await] = ACTIONS(3103), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(3103), + [sym_this] = ACTIONS(3103), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3105), + [sym_semgrep_named_ellipsis] = ACTIONS(3105), + }, + [988] = { + [sym_identifier] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3109), + [anon_sym_BANG] = ACTIONS(3109), + [anon_sym_TILDE] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(3109), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym___extension__] = ACTIONS(3107), + [anon_sym_typedef] = ACTIONS(3107), + [anon_sym_extern] = ACTIONS(3107), + [anon_sym___attribute__] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(3109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3109), + [anon_sym___declspec] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(3109), + [anon_sym_signed] = ACTIONS(3107), + [anon_sym_unsigned] = ACTIONS(3107), + [anon_sym_long] = ACTIONS(3107), + [anon_sym_short] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3107), + [anon_sym_static] = ACTIONS(3107), + [anon_sym_register] = ACTIONS(3107), + [anon_sym_inline] = ACTIONS(3107), + [anon_sym___inline] = ACTIONS(3107), + [anon_sym___inline__] = ACTIONS(3107), + [anon_sym___forceinline] = ACTIONS(3107), + [anon_sym_thread_local] = ACTIONS(3107), + [anon_sym___thread] = ACTIONS(3107), + [anon_sym_const] = ACTIONS(3107), + [anon_sym_constexpr] = ACTIONS(3107), + [anon_sym_volatile] = ACTIONS(3107), + [anon_sym_restrict] = ACTIONS(3107), + [anon_sym___restrict__] = ACTIONS(3107), + [anon_sym__Atomic] = ACTIONS(3107), + [anon_sym__Noreturn] = ACTIONS(3107), + [anon_sym_noreturn] = ACTIONS(3107), + [anon_sym_mutable] = ACTIONS(3107), + [anon_sym_constinit] = ACTIONS(3107), + [anon_sym_consteval] = ACTIONS(3107), + [sym_primitive_type] = ACTIONS(3107), + [anon_sym_enum] = ACTIONS(3107), + [anon_sym_class] = ACTIONS(3107), + [anon_sym_struct] = ACTIONS(3107), + [anon_sym_union] = ACTIONS(3107), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_switch] = 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___try] = ACTIONS(3107), + [anon_sym___leave] = ACTIONS(3107), + [anon_sym_not] = ACTIONS(3107), + [anon_sym_compl] = ACTIONS(3107), + [anon_sym_DASH_DASH] = ACTIONS(3109), + [anon_sym_PLUS_PLUS] = ACTIONS(3109), + [anon_sym_sizeof] = ACTIONS(3107), + [anon_sym___alignof__] = ACTIONS(3107), + [anon_sym___alignof] = ACTIONS(3107), + [anon_sym__alignof] = ACTIONS(3107), + [anon_sym_alignof] = ACTIONS(3107), + [anon_sym__Alignof] = ACTIONS(3107), + [anon_sym_offsetof] = ACTIONS(3107), + [anon_sym__Generic] = ACTIONS(3107), + [anon_sym_asm] = ACTIONS(3107), + [anon_sym___asm__] = ACTIONS(3107), + [sym_number_literal] = ACTIONS(3109), + [anon_sym_L_SQUOTE] = ACTIONS(3109), + [anon_sym_u_SQUOTE] = ACTIONS(3109), + [anon_sym_U_SQUOTE] = ACTIONS(3109), + [anon_sym_u8_SQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3109), + [anon_sym_L_DQUOTE] = ACTIONS(3109), + [anon_sym_u_DQUOTE] = ACTIONS(3109), + [anon_sym_U_DQUOTE] = ACTIONS(3109), + [anon_sym_u8_DQUOTE] = ACTIONS(3109), + [anon_sym_DQUOTE] = ACTIONS(3109), + [sym_true] = ACTIONS(3107), + [sym_false] = ACTIONS(3107), + [anon_sym_NULL] = ACTIONS(3107), + [anon_sym_nullptr] = ACTIONS(3107), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3107), + [anon_sym_decltype] = ACTIONS(3107), + [anon_sym_virtual] = ACTIONS(3107), + [anon_sym_alignas] = ACTIONS(3107), + [anon_sym_typename] = ACTIONS(3107), + [anon_sym_template] = ACTIONS(3107), + [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_R_DQUOTE] = ACTIONS(3109), + [anon_sym_LR_DQUOTE] = ACTIONS(3109), + [anon_sym_uR_DQUOTE] = ACTIONS(3109), + [anon_sym_UR_DQUOTE] = ACTIONS(3109), + [anon_sym_u8R_DQUOTE] = ACTIONS(3109), + [anon_sym_co_await] = ACTIONS(3107), + [anon_sym_new] = ACTIONS(3107), + [anon_sym_requires] = ACTIONS(3107), + [sym_this] = ACTIONS(3107), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3109), + [sym_semgrep_named_ellipsis] = ACTIONS(3109), + }, + [989] = { + [sym_identifier] = ACTIONS(3111), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3113), + [anon_sym_LPAREN2] = ACTIONS(3113), + [anon_sym_BANG] = ACTIONS(3113), + [anon_sym_TILDE] = ACTIONS(3113), + [anon_sym_DASH] = ACTIONS(3111), + [anon_sym_PLUS] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_AMP] = ACTIONS(3113), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym___extension__] = ACTIONS(3111), + [anon_sym_typedef] = ACTIONS(3111), + [anon_sym_extern] = ACTIONS(3111), + [anon_sym___attribute__] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(3113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3113), + [anon_sym___declspec] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_signed] = ACTIONS(3111), + [anon_sym_unsigned] = ACTIONS(3111), + [anon_sym_long] = ACTIONS(3111), + [anon_sym_short] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3111), + [anon_sym_static] = ACTIONS(3111), + [anon_sym_register] = ACTIONS(3111), + [anon_sym_inline] = ACTIONS(3111), + [anon_sym___inline] = ACTIONS(3111), + [anon_sym___inline__] = ACTIONS(3111), + [anon_sym___forceinline] = ACTIONS(3111), + [anon_sym_thread_local] = ACTIONS(3111), + [anon_sym___thread] = ACTIONS(3111), + [anon_sym_const] = ACTIONS(3111), + [anon_sym_constexpr] = ACTIONS(3111), + [anon_sym_volatile] = ACTIONS(3111), + [anon_sym_restrict] = ACTIONS(3111), + [anon_sym___restrict__] = ACTIONS(3111), + [anon_sym__Atomic] = ACTIONS(3111), + [anon_sym__Noreturn] = ACTIONS(3111), + [anon_sym_noreturn] = ACTIONS(3111), + [anon_sym_mutable] = ACTIONS(3111), + [anon_sym_constinit] = ACTIONS(3111), + [anon_sym_consteval] = ACTIONS(3111), + [sym_primitive_type] = ACTIONS(3111), + [anon_sym_enum] = ACTIONS(3111), + [anon_sym_class] = ACTIONS(3111), + [anon_sym_struct] = ACTIONS(3111), + [anon_sym_union] = ACTIONS(3111), + [anon_sym_if] = ACTIONS(3111), + [anon_sym_else] = ACTIONS(3111), + [anon_sym_switch] = ACTIONS(3111), + [anon_sym_while] = ACTIONS(3111), + [anon_sym_do] = ACTIONS(3111), + [anon_sym_for] = ACTIONS(3111), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_break] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(3111), + [anon_sym_goto] = ACTIONS(3111), + [anon_sym___try] = ACTIONS(3111), + [anon_sym___leave] = ACTIONS(3111), + [anon_sym_not] = ACTIONS(3111), + [anon_sym_compl] = ACTIONS(3111), + [anon_sym_DASH_DASH] = ACTIONS(3113), + [anon_sym_PLUS_PLUS] = ACTIONS(3113), + [anon_sym_sizeof] = ACTIONS(3111), + [anon_sym___alignof__] = ACTIONS(3111), + [anon_sym___alignof] = ACTIONS(3111), + [anon_sym__alignof] = ACTIONS(3111), + [anon_sym_alignof] = ACTIONS(3111), + [anon_sym__Alignof] = ACTIONS(3111), + [anon_sym_offsetof] = ACTIONS(3111), + [anon_sym__Generic] = ACTIONS(3111), + [anon_sym_asm] = ACTIONS(3111), + [anon_sym___asm__] = ACTIONS(3111), + [sym_number_literal] = ACTIONS(3113), + [anon_sym_L_SQUOTE] = ACTIONS(3113), + [anon_sym_u_SQUOTE] = ACTIONS(3113), + [anon_sym_U_SQUOTE] = ACTIONS(3113), + [anon_sym_u8_SQUOTE] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3113), + [anon_sym_L_DQUOTE] = ACTIONS(3113), + [anon_sym_u_DQUOTE] = ACTIONS(3113), + [anon_sym_U_DQUOTE] = ACTIONS(3113), + [anon_sym_u8_DQUOTE] = ACTIONS(3113), + [anon_sym_DQUOTE] = ACTIONS(3113), + [sym_true] = ACTIONS(3111), + [sym_false] = ACTIONS(3111), + [anon_sym_NULL] = ACTIONS(3111), + [anon_sym_nullptr] = ACTIONS(3111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3111), + [anon_sym_decltype] = ACTIONS(3111), + [anon_sym_virtual] = ACTIONS(3111), + [anon_sym_alignas] = ACTIONS(3111), + [anon_sym_typename] = ACTIONS(3111), + [anon_sym_template] = ACTIONS(3111), + [anon_sym_try] = ACTIONS(3111), + [anon_sym_delete] = ACTIONS(3111), + [anon_sym_throw] = ACTIONS(3111), + [anon_sym_co_return] = ACTIONS(3111), + [anon_sym_co_yield] = ACTIONS(3111), + [anon_sym_R_DQUOTE] = ACTIONS(3113), + [anon_sym_LR_DQUOTE] = ACTIONS(3113), + [anon_sym_uR_DQUOTE] = ACTIONS(3113), + [anon_sym_UR_DQUOTE] = ACTIONS(3113), + [anon_sym_u8R_DQUOTE] = ACTIONS(3113), + [anon_sym_co_await] = ACTIONS(3111), + [anon_sym_new] = ACTIONS(3111), + [anon_sym_requires] = ACTIONS(3111), + [sym_this] = ACTIONS(3111), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3113), + [sym_semgrep_named_ellipsis] = ACTIONS(3113), + }, + [990] = { + [sym_identifier] = ACTIONS(3189), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), + [anon_sym_LPAREN2] = ACTIONS(3191), + [anon_sym_BANG] = ACTIONS(3191), + [anon_sym_TILDE] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3189), + [anon_sym_STAR] = ACTIONS(3191), + [anon_sym_AMP] = ACTIONS(3191), + [anon_sym_SEMI] = ACTIONS(3191), + [anon_sym___extension__] = ACTIONS(3189), + [anon_sym_typedef] = ACTIONS(3189), + [anon_sym_extern] = ACTIONS(3189), + [anon_sym___attribute__] = ACTIONS(3189), + [anon_sym_COLON_COLON] = ACTIONS(3191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3191), + [anon_sym___declspec] = ACTIONS(3189), + [anon_sym_LBRACE] = ACTIONS(3191), + [anon_sym_signed] = ACTIONS(3189), + [anon_sym_unsigned] = ACTIONS(3189), + [anon_sym_long] = ACTIONS(3189), + [anon_sym_short] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_static] = ACTIONS(3189), + [anon_sym_register] = ACTIONS(3189), + [anon_sym_inline] = ACTIONS(3189), + [anon_sym___inline] = ACTIONS(3189), + [anon_sym___inline__] = ACTIONS(3189), + [anon_sym___forceinline] = ACTIONS(3189), + [anon_sym_thread_local] = ACTIONS(3189), + [anon_sym___thread] = ACTIONS(3189), + [anon_sym_const] = ACTIONS(3189), + [anon_sym_constexpr] = ACTIONS(3189), + [anon_sym_volatile] = ACTIONS(3189), + [anon_sym_restrict] = ACTIONS(3189), + [anon_sym___restrict__] = ACTIONS(3189), + [anon_sym__Atomic] = ACTIONS(3189), + [anon_sym__Noreturn] = ACTIONS(3189), + [anon_sym_noreturn] = ACTIONS(3189), + [anon_sym_mutable] = ACTIONS(3189), + [anon_sym_constinit] = ACTIONS(3189), + [anon_sym_consteval] = ACTIONS(3189), + [sym_primitive_type] = ACTIONS(3189), + [anon_sym_enum] = ACTIONS(3189), + [anon_sym_class] = ACTIONS(3189), + [anon_sym_struct] = ACTIONS(3189), + [anon_sym_union] = ACTIONS(3189), + [anon_sym_if] = ACTIONS(3189), + [anon_sym_else] = ACTIONS(3189), + [anon_sym_switch] = ACTIONS(3189), + [anon_sym_while] = ACTIONS(3189), + [anon_sym_do] = ACTIONS(3189), + [anon_sym_for] = ACTIONS(3189), + [anon_sym_return] = ACTIONS(3189), + [anon_sym_break] = ACTIONS(3189), + [anon_sym_continue] = ACTIONS(3189), + [anon_sym_goto] = ACTIONS(3189), + [anon_sym___try] = ACTIONS(3189), + [anon_sym___leave] = ACTIONS(3189), + [anon_sym_not] = ACTIONS(3189), + [anon_sym_compl] = ACTIONS(3189), + [anon_sym_DASH_DASH] = ACTIONS(3191), + [anon_sym_PLUS_PLUS] = ACTIONS(3191), + [anon_sym_sizeof] = ACTIONS(3189), + [anon_sym___alignof__] = ACTIONS(3189), + [anon_sym___alignof] = ACTIONS(3189), + [anon_sym__alignof] = ACTIONS(3189), + [anon_sym_alignof] = ACTIONS(3189), + [anon_sym__Alignof] = ACTIONS(3189), + [anon_sym_offsetof] = ACTIONS(3189), + [anon_sym__Generic] = ACTIONS(3189), + [anon_sym_asm] = ACTIONS(3189), + [anon_sym___asm__] = ACTIONS(3189), + [sym_number_literal] = ACTIONS(3191), + [anon_sym_L_SQUOTE] = ACTIONS(3191), + [anon_sym_u_SQUOTE] = ACTIONS(3191), + [anon_sym_U_SQUOTE] = ACTIONS(3191), + [anon_sym_u8_SQUOTE] = ACTIONS(3191), + [anon_sym_SQUOTE] = ACTIONS(3191), + [anon_sym_L_DQUOTE] = ACTIONS(3191), + [anon_sym_u_DQUOTE] = ACTIONS(3191), + [anon_sym_U_DQUOTE] = ACTIONS(3191), + [anon_sym_u8_DQUOTE] = ACTIONS(3191), + [anon_sym_DQUOTE] = ACTIONS(3191), + [sym_true] = ACTIONS(3189), + [sym_false] = ACTIONS(3189), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3189), + [anon_sym_decltype] = ACTIONS(3189), + [anon_sym_virtual] = ACTIONS(3189), + [anon_sym_alignas] = ACTIONS(3189), + [anon_sym_typename] = ACTIONS(3189), + [anon_sym_template] = ACTIONS(3189), + [anon_sym_try] = ACTIONS(3189), + [anon_sym_delete] = ACTIONS(3189), + [anon_sym_throw] = ACTIONS(3189), + [anon_sym_co_return] = ACTIONS(3189), + [anon_sym_co_yield] = ACTIONS(3189), + [anon_sym_R_DQUOTE] = ACTIONS(3191), + [anon_sym_LR_DQUOTE] = ACTIONS(3191), + [anon_sym_uR_DQUOTE] = ACTIONS(3191), + [anon_sym_UR_DQUOTE] = ACTIONS(3191), + [anon_sym_u8R_DQUOTE] = ACTIONS(3191), + [anon_sym_co_await] = ACTIONS(3189), + [anon_sym_new] = ACTIONS(3189), + [anon_sym_requires] = ACTIONS(3189), + [sym_this] = ACTIONS(3189), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3191), + [sym_semgrep_named_ellipsis] = ACTIONS(3191), + }, + [991] = { + [sym_identifier] = ACTIONS(4414), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4417), + [anon_sym_LPAREN2] = ACTIONS(4417), + [anon_sym_BANG] = ACTIONS(4417), + [anon_sym_TILDE] = ACTIONS(4417), + [anon_sym_DASH] = ACTIONS(4422), + [anon_sym_PLUS] = ACTIONS(4422), + [anon_sym_STAR] = ACTIONS(4417), + [anon_sym_AMP] = ACTIONS(4417), + [anon_sym_SEMI] = ACTIONS(4417), + [anon_sym___extension__] = ACTIONS(4426), + [anon_sym_extern] = ACTIONS(4426), + [anon_sym___attribute__] = ACTIONS(4426), + [anon_sym_COLON_COLON] = ACTIONS(4419), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4419), + [anon_sym___declspec] = ACTIONS(4426), + [anon_sym_LBRACE] = ACTIONS(4417), + [anon_sym_signed] = ACTIONS(4426), + [anon_sym_unsigned] = ACTIONS(4426), + [anon_sym_long] = ACTIONS(4426), + [anon_sym_short] = ACTIONS(4426), + [anon_sym_LBRACK] = ACTIONS(4422), + [anon_sym_static] = ACTIONS(4426), + [anon_sym_register] = ACTIONS(4426), + [anon_sym_inline] = ACTIONS(4426), + [anon_sym___inline] = ACTIONS(4426), + [anon_sym___inline__] = ACTIONS(4426), + [anon_sym___forceinline] = ACTIONS(4426), + [anon_sym_thread_local] = ACTIONS(4426), + [anon_sym___thread] = ACTIONS(4426), + [anon_sym_const] = ACTIONS(4426), + [anon_sym_constexpr] = ACTIONS(4426), + [anon_sym_volatile] = ACTIONS(4426), + [anon_sym_restrict] = ACTIONS(4426), + [anon_sym___restrict__] = ACTIONS(4426), + [anon_sym__Atomic] = ACTIONS(4426), + [anon_sym__Noreturn] = ACTIONS(4426), + [anon_sym_noreturn] = ACTIONS(4426), + [anon_sym_mutable] = ACTIONS(4426), + [anon_sym_constinit] = ACTIONS(4426), + [anon_sym_consteval] = ACTIONS(4426), + [sym_primitive_type] = ACTIONS(4414), + [anon_sym_enum] = ACTIONS(4426), + [anon_sym_class] = ACTIONS(4426), + [anon_sym_struct] = ACTIONS(4426), + [anon_sym_union] = ACTIONS(4426), + [anon_sym_if] = ACTIONS(4422), + [anon_sym_switch] = ACTIONS(4422), + [anon_sym_case] = ACTIONS(4422), + [anon_sym_default] = ACTIONS(4422), + [anon_sym_while] = ACTIONS(4422), + [anon_sym_do] = ACTIONS(4422), + [anon_sym_for] = ACTIONS(4422), + [anon_sym_return] = ACTIONS(4422), + [anon_sym_break] = ACTIONS(4422), + [anon_sym_continue] = ACTIONS(4422), + [anon_sym_goto] = ACTIONS(4422), + [anon_sym___try] = ACTIONS(4422), + [anon_sym___leave] = ACTIONS(4422), + [anon_sym_not] = ACTIONS(4422), + [anon_sym_compl] = ACTIONS(4422), + [anon_sym_DASH_DASH] = ACTIONS(4417), + [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_sizeof] = ACTIONS(4422), + [anon_sym___alignof__] = ACTIONS(4422), + [anon_sym___alignof] = ACTIONS(4422), + [anon_sym__alignof] = ACTIONS(4422), + [anon_sym_alignof] = ACTIONS(4422), + [anon_sym__Alignof] = ACTIONS(4422), + [anon_sym_offsetof] = ACTIONS(4422), + [anon_sym__Generic] = ACTIONS(4422), + [anon_sym_asm] = ACTIONS(4422), + [anon_sym___asm__] = ACTIONS(4422), + [sym_number_literal] = ACTIONS(4417), + [anon_sym_L_SQUOTE] = ACTIONS(4417), + [anon_sym_u_SQUOTE] = ACTIONS(4417), + [anon_sym_U_SQUOTE] = ACTIONS(4417), + [anon_sym_u8_SQUOTE] = ACTIONS(4417), + [anon_sym_SQUOTE] = ACTIONS(4417), + [anon_sym_L_DQUOTE] = ACTIONS(4417), + [anon_sym_u_DQUOTE] = ACTIONS(4417), + [anon_sym_U_DQUOTE] = ACTIONS(4417), + [anon_sym_u8_DQUOTE] = ACTIONS(4417), + [anon_sym_DQUOTE] = ACTIONS(4417), + [sym_true] = ACTIONS(4422), + [sym_false] = ACTIONS(4422), + [anon_sym_NULL] = ACTIONS(4422), + [anon_sym_nullptr] = ACTIONS(4422), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4426), + [anon_sym_decltype] = ACTIONS(4414), + [anon_sym_virtual] = ACTIONS(4426), + [anon_sym_alignas] = ACTIONS(4426), + [anon_sym_typename] = ACTIONS(4426), + [anon_sym_template] = ACTIONS(4414), + [anon_sym_try] = ACTIONS(4422), + [anon_sym_delete] = ACTIONS(4422), + [anon_sym_throw] = ACTIONS(4422), + [anon_sym_co_return] = ACTIONS(4422), + [anon_sym_co_yield] = ACTIONS(4422), + [anon_sym_R_DQUOTE] = ACTIONS(4417), + [anon_sym_LR_DQUOTE] = ACTIONS(4417), + [anon_sym_uR_DQUOTE] = ACTIONS(4417), + [anon_sym_UR_DQUOTE] = ACTIONS(4417), + [anon_sym_u8R_DQUOTE] = ACTIONS(4417), + [anon_sym_co_await] = ACTIONS(4422), + [anon_sym_new] = ACTIONS(4422), + [anon_sym_requires] = ACTIONS(4422), + [sym_this] = ACTIONS(4422), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4417), + [sym_semgrep_named_ellipsis] = ACTIONS(4417), + }, + [992] = { + [sym_expression] = STATE(5084), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8651), + [sym_initializer_pair] = STATE(8651), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(5245), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [sym_identifier] = ACTIONS(4521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_COMMA] = ACTIONS(4523), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(4530), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4438), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4532), - [anon_sym_const] = ACTIONS(4438), - [anon_sym_constexpr] = ACTIONS(4438), - [anon_sym_volatile] = ACTIONS(4438), - [anon_sym_restrict] = ACTIONS(4438), - [anon_sym___restrict__] = ACTIONS(4438), - [anon_sym__Atomic] = ACTIONS(4438), - [anon_sym__Noreturn] = ACTIONS(4438), - [anon_sym_noreturn] = ACTIONS(4438), - [anon_sym_mutable] = ACTIONS(4438), - [anon_sym_constinit] = ACTIONS(4438), - [anon_sym_consteval] = ACTIONS(4438), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_RBRACE] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(4527), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -196781,6 +189582,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -196798,7 +189600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -196812,78 +189614,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [967] = { - [sym_type_qualifier] = STATE(1919), - [sym_expression] = STATE(6016), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_type_definition_type_repeat1] = STATE(1919), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [993] = { + [sym_expression] = STATE(5001), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8587), + [sym_initializer_pair] = STATE(8587), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(5245), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [sym_identifier] = ACTIONS(4521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_COMMA] = ACTIONS(177), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(4534), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4438), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4536), - [anon_sym_const] = ACTIONS(4438), - [anon_sym_constexpr] = ACTIONS(4438), - [anon_sym_volatile] = ACTIONS(4438), - [anon_sym_restrict] = ACTIONS(4438), - [anon_sym___restrict__] = ACTIONS(4438), - [anon_sym__Atomic] = ACTIONS(4438), - [anon_sym__Noreturn] = ACTIONS(4438), - [anon_sym_noreturn] = ACTIONS(4438), - [anon_sym_mutable] = ACTIONS(4438), - [anon_sym_constinit] = ACTIONS(4438), - [anon_sym_consteval] = ACTIONS(4438), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_RBRACE] = ACTIONS(4529), + [anon_sym_LBRACK] = ACTIONS(4527), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -196898,6 +189694,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -196915,7 +189712,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -196929,78 +189726,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [968] = { - [sym_type_qualifier] = STATE(970), - [sym_expression] = STATE(5893), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_type_definition_type_repeat1] = STATE(970), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [994] = { + [sym_expression_statement] = STATE(2824), + [sym_expression] = STATE(5227), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9936), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_type_requirement] = STATE(2824), + [sym_compound_requirement] = STATE(2824), + [sym_requirement] = STATE(1001), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_requirement_seq_repeat1] = STATE(1001), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(4538), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4438), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(4531), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4540), - [anon_sym_const] = ACTIONS(4438), - [anon_sym_constexpr] = ACTIONS(4438), - [anon_sym_volatile] = ACTIONS(4438), - [anon_sym_restrict] = ACTIONS(4438), - [anon_sym___restrict__] = ACTIONS(4438), - [anon_sym__Atomic] = ACTIONS(4438), - [anon_sym__Noreturn] = ACTIONS(4438), - [anon_sym_noreturn] = ACTIONS(4438), - [anon_sym_mutable] = ACTIONS(4438), - [anon_sym_constinit] = ACTIONS(4438), - [anon_sym_consteval] = ACTIONS(4438), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4535), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -197032,7 +189823,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_typename] = ACTIONS(4537), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -197046,78 +189838,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [969] = { - [sym_type_qualifier] = STATE(971), - [sym_expression] = STATE(5953), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_type_definition_type_repeat1] = STATE(971), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [995] = { + [sym_expression] = STATE(5058), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8230), + [sym_initializer_pair] = STATE(8230), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(5245), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [sym_identifier] = ACTIONS(4521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_COMMA] = ACTIONS(4539), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(4542), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4438), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4544), - [anon_sym_const] = ACTIONS(4438), - [anon_sym_constexpr] = ACTIONS(4438), - [anon_sym_volatile] = ACTIONS(4438), - [anon_sym_restrict] = ACTIONS(4438), - [anon_sym___restrict__] = ACTIONS(4438), - [anon_sym__Atomic] = ACTIONS(4438), - [anon_sym__Noreturn] = ACTIONS(4438), - [anon_sym_noreturn] = ACTIONS(4438), - [anon_sym_mutable] = ACTIONS(4438), - [anon_sym_constinit] = ACTIONS(4438), - [anon_sym_consteval] = ACTIONS(4438), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_RBRACE] = ACTIONS(4541), + [anon_sym_LBRACK] = ACTIONS(4527), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -197132,6 +189918,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -197149,7 +189936,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -197163,78 +189950,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [970] = { - [sym_type_qualifier] = STATE(1919), - [sym_expression] = STATE(5895), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_type_definition_type_repeat1] = STATE(1919), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [996] = { + [sym_expression_statement] = STATE(2824), + [sym_expression] = STATE(5227), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9936), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_type_requirement] = STATE(2824), + [sym_compound_requirement] = STATE(2824), + [sym_requirement] = STATE(1012), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_requirement_seq_repeat1] = STATE(1012), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(4546), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4438), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(4531), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4548), - [anon_sym_const] = ACTIONS(4438), - [anon_sym_constexpr] = ACTIONS(4438), - [anon_sym_volatile] = ACTIONS(4438), - [anon_sym_restrict] = ACTIONS(4438), - [anon_sym___restrict__] = ACTIONS(4438), - [anon_sym__Atomic] = ACTIONS(4438), - [anon_sym__Noreturn] = ACTIONS(4438), - [anon_sym_noreturn] = ACTIONS(4438), - [anon_sym_mutable] = ACTIONS(4438), - [anon_sym_constinit] = ACTIONS(4438), - [anon_sym_consteval] = ACTIONS(4438), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4543), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -197266,7 +190047,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_typename] = ACTIONS(4537), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -197280,78 +190062,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [971] = { - [sym_type_qualifier] = STATE(1919), - [sym_expression] = STATE(6079), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_type_definition_type_repeat1] = STATE(1919), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [997] = { + [sym_expression_statement] = STATE(2824), + [sym_expression] = STATE(5227), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9936), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_type_requirement] = STATE(2824), + [sym_compound_requirement] = STATE(2824), + [sym_requirement] = STATE(999), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_requirement_seq_repeat1] = STATE(999), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(4550), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4438), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(4531), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4552), - [anon_sym_const] = ACTIONS(4438), - [anon_sym_constexpr] = ACTIONS(4438), - [anon_sym_volatile] = ACTIONS(4438), - [anon_sym_restrict] = ACTIONS(4438), - [anon_sym___restrict__] = ACTIONS(4438), - [anon_sym__Atomic] = ACTIONS(4438), - [anon_sym__Noreturn] = ACTIONS(4438), - [anon_sym_noreturn] = ACTIONS(4438), - [anon_sym_mutable] = ACTIONS(4438), - [anon_sym_constinit] = ACTIONS(4438), - [anon_sym_consteval] = ACTIONS(4438), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4545), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -197383,7 +190159,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_typename] = ACTIONS(4537), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -197397,78 +190174,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [972] = { - [sym_type_qualifier] = STATE(967), - [sym_expression] = STATE(6077), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_type_definition_type_repeat1] = STATE(967), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [998] = { + [sym_expression_statement] = STATE(2824), + [sym_expression] = STATE(5227), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9936), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_type_requirement] = STATE(2824), + [sym_compound_requirement] = STATE(2824), + [sym_requirement] = STATE(1003), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_requirement_seq_repeat1] = STATE(1003), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4438), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(4531), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4556), - [anon_sym_const] = ACTIONS(4438), - [anon_sym_constexpr] = ACTIONS(4438), - [anon_sym_volatile] = ACTIONS(4438), - [anon_sym_restrict] = ACTIONS(4438), - [anon_sym___restrict__] = ACTIONS(4438), - [anon_sym__Atomic] = ACTIONS(4438), - [anon_sym__Noreturn] = ACTIONS(4438), - [anon_sym_noreturn] = ACTIONS(4438), - [anon_sym_mutable] = ACTIONS(4438), - [anon_sym_constinit] = ACTIONS(4438), - [anon_sym_consteval] = ACTIONS(4438), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4547), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -197500,7 +190271,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_typename] = ACTIONS(4537), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -197514,4952 +190286,3432 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [973] = { - [sym_function_definition] = STATE(2453), - [sym_declaration] = STATE(2453), - [sym_declaration_modifiers] = STATE(4228), - [sym_declaration_specifiers] = STATE(6408), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_ms_call_modifier] = STATE(2062), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7614), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4319), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_empty_declaration] = STATE(2453), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_explicit_function_specifier] = STATE(5655), - [sym_dependent_type] = STATE(4873), - [sym_template_declaration] = STATE(2453), - [sym_operator_cast] = STATE(8076), - [sym_constructor_specifiers] = STATE(1947), - [sym_operator_cast_definition] = STATE(2453), - [sym_operator_cast_declaration] = STATE(2453), - [sym_constructor_or_destructor_definition] = STATE(2453), - [sym_constructor_or_destructor_declaration] = STATE(2453), - [sym_friend_declaration] = STATE(2453), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_alias_declaration] = STATE(2453), - [sym_concept_definition] = STATE(2453), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6891), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_qualified_operator_cast_identifier] = STATE(8076), - [sym_operator_name] = STATE(7634), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [aux_sym_operator_cast_definition_repeat1] = STATE(1947), - [sym_identifier] = ACTIONS(4386), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(65), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(53), - [anon_sym___clrcall] = ACTIONS(53), - [anon_sym___stdcall] = ACTIONS(53), - [anon_sym___fastcall] = ACTIONS(53), - [anon_sym___thiscall] = ACTIONS(53), - [anon_sym___vectorcall] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), + [999] = { + [sym_expression_statement] = STATE(2824), + [sym_expression] = STATE(5227), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9936), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_type_requirement] = STATE(2824), + [sym_compound_requirement] = STATE(2824), + [sym_requirement] = STATE(1009), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_requirement_seq_repeat1] = STATE(1009), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4549), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4279), - [anon_sym_operator] = ACTIONS(135), - [anon_sym_friend] = ACTIONS(4281), - [anon_sym_using] = ACTIONS(4396), - [anon_sym_concept] = ACTIONS(4398), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_typename] = ACTIONS(4537), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [974] = { - [sym_catch_clause] = STATE(977), - [aux_sym_constructor_try_statement_repeat1] = STATE(977), - [sym_identifier] = ACTIONS(3057), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3059), - [anon_sym_LPAREN2] = ACTIONS(3059), - [anon_sym_BANG] = ACTIONS(3059), - [anon_sym_TILDE] = ACTIONS(3059), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3059), - [anon_sym_SEMI] = ACTIONS(3059), - [anon_sym___extension__] = ACTIONS(3057), - [anon_sym_typedef] = ACTIONS(3057), - [anon_sym_extern] = ACTIONS(3057), - [anon_sym___attribute__] = ACTIONS(3057), - [anon_sym_COLON_COLON] = ACTIONS(3059), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3059), - [anon_sym___declspec] = ACTIONS(3057), - [anon_sym_LBRACE] = ACTIONS(3059), - [anon_sym_signed] = ACTIONS(3057), - [anon_sym_unsigned] = ACTIONS(3057), - [anon_sym_long] = ACTIONS(3057), - [anon_sym_short] = ACTIONS(3057), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_static] = ACTIONS(3057), - [anon_sym_register] = ACTIONS(3057), - [anon_sym_inline] = ACTIONS(3057), - [anon_sym___inline] = ACTIONS(3057), - [anon_sym___inline__] = ACTIONS(3057), - [anon_sym___forceinline] = ACTIONS(3057), - [anon_sym_thread_local] = ACTIONS(3057), - [anon_sym___thread] = ACTIONS(3057), - [anon_sym_const] = ACTIONS(3057), - [anon_sym_constexpr] = ACTIONS(3057), - [anon_sym_volatile] = ACTIONS(3057), - [anon_sym_restrict] = ACTIONS(3057), - [anon_sym___restrict__] = ACTIONS(3057), - [anon_sym__Atomic] = ACTIONS(3057), - [anon_sym__Noreturn] = ACTIONS(3057), - [anon_sym_noreturn] = ACTIONS(3057), - [anon_sym_mutable] = ACTIONS(3057), - [anon_sym_constinit] = ACTIONS(3057), - [anon_sym_consteval] = ACTIONS(3057), - [sym_primitive_type] = ACTIONS(3057), - [anon_sym_enum] = ACTIONS(3057), - [anon_sym_class] = ACTIONS(3057), - [anon_sym_struct] = ACTIONS(3057), - [anon_sym_union] = ACTIONS(3057), - [anon_sym_if] = ACTIONS(3057), - [anon_sym_else] = ACTIONS(3057), - [anon_sym_switch] = ACTIONS(3057), - [anon_sym_while] = ACTIONS(3057), - [anon_sym_do] = ACTIONS(3057), - [anon_sym_for] = ACTIONS(3057), - [anon_sym_return] = ACTIONS(3057), - [anon_sym_break] = ACTIONS(3057), - [anon_sym_continue] = ACTIONS(3057), - [anon_sym_goto] = ACTIONS(3057), - [anon_sym___try] = ACTIONS(3057), - [anon_sym___leave] = ACTIONS(3057), - [anon_sym_not] = ACTIONS(3057), - [anon_sym_compl] = ACTIONS(3057), - [anon_sym_DASH_DASH] = ACTIONS(3059), - [anon_sym_PLUS_PLUS] = ACTIONS(3059), - [anon_sym_sizeof] = ACTIONS(3057), - [anon_sym___alignof__] = ACTIONS(3057), - [anon_sym___alignof] = ACTIONS(3057), - [anon_sym__alignof] = ACTIONS(3057), - [anon_sym_alignof] = ACTIONS(3057), - [anon_sym__Alignof] = ACTIONS(3057), - [anon_sym_offsetof] = ACTIONS(3057), - [anon_sym__Generic] = ACTIONS(3057), - [anon_sym_asm] = ACTIONS(3057), - [anon_sym___asm__] = ACTIONS(3057), - [sym_number_literal] = ACTIONS(3059), - [anon_sym_L_SQUOTE] = ACTIONS(3059), - [anon_sym_u_SQUOTE] = ACTIONS(3059), - [anon_sym_U_SQUOTE] = ACTIONS(3059), - [anon_sym_u8_SQUOTE] = ACTIONS(3059), - [anon_sym_SQUOTE] = ACTIONS(3059), - [anon_sym_L_DQUOTE] = ACTIONS(3059), - [anon_sym_u_DQUOTE] = ACTIONS(3059), - [anon_sym_U_DQUOTE] = ACTIONS(3059), - [anon_sym_u8_DQUOTE] = ACTIONS(3059), - [anon_sym_DQUOTE] = ACTIONS(3059), - [sym_true] = ACTIONS(3057), - [sym_false] = ACTIONS(3057), - [anon_sym_NULL] = ACTIONS(3057), - [anon_sym_nullptr] = ACTIONS(3057), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3057), - [anon_sym_decltype] = ACTIONS(3057), - [anon_sym_virtual] = ACTIONS(3057), - [anon_sym_alignas] = ACTIONS(3057), - [anon_sym_typename] = ACTIONS(3057), - [anon_sym_template] = ACTIONS(3057), - [anon_sym_try] = ACTIONS(3057), - [anon_sym_delete] = ACTIONS(3057), - [anon_sym_throw] = ACTIONS(3057), - [anon_sym_co_return] = ACTIONS(3057), - [anon_sym_co_yield] = ACTIONS(3057), - [anon_sym_catch] = ACTIONS(4558), - [anon_sym_R_DQUOTE] = ACTIONS(3059), - [anon_sym_LR_DQUOTE] = ACTIONS(3059), - [anon_sym_uR_DQUOTE] = ACTIONS(3059), - [anon_sym_UR_DQUOTE] = ACTIONS(3059), - [anon_sym_u8R_DQUOTE] = ACTIONS(3059), - [anon_sym_co_await] = ACTIONS(3057), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(3057), - [sym_this] = ACTIONS(3057), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3059), - [sym_semgrep_named_ellipsis] = ACTIONS(3059), + [1000] = { + [sym_expression] = STATE(5079), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8553), + [sym_initializer_pair] = STATE(8553), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(5245), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [sym_identifier] = ACTIONS(4521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_COMMA] = ACTIONS(4551), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_RBRACE] = ACTIONS(4553), + [anon_sym_LBRACK] = ACTIONS(4527), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(229), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [975] = { - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(7566), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7634), - [sym_array_declarator] = STATE(7634), - [sym_expression] = STATE(3048), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3892), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7160), - [sym_qualified_identifier] = STATE(3893), - [sym_qualified_type_identifier] = STATE(4648), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(3670), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3672), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(35), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym___based] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(2219), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), + [1001] = { + [sym_expression_statement] = STATE(2824), + [sym_expression] = STATE(5227), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9936), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_type_requirement] = STATE(2824), + [sym_compound_requirement] = STATE(2824), + [sym_requirement] = STATE(1009), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_requirement_seq_repeat1] = STATE(1009), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_operator] = ACTIONS(2259), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), + [anon_sym_typename] = ACTIONS(4537), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [976] = { - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(7566), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7634), - [sym_array_declarator] = STATE(7634), - [sym_expression] = STATE(3755), - [sym_expression_not_binary] = STATE(4050), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9276), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3890), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7129), - [sym_qualified_identifier] = STATE(3833), - [sym_qualified_type_identifier] = STATE(4648), - [sym_operator_name] = STATE(7634), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [sym_identifier] = ACTIONS(3660), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(2201), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2209), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(2211), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym___based] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(2219), - [sym_primitive_type] = ACTIONS(2858), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), + [1002] = { + [sym_expression_statement] = STATE(2824), + [sym_expression] = STATE(5227), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9936), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_type_requirement] = STATE(2824), + [sym_compound_requirement] = STATE(2824), + [sym_requirement] = STATE(1004), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_requirement_seq_repeat1] = STATE(1004), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4557), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_operator] = ACTIONS(2259), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_typename] = ACTIONS(4537), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [977] = { - [sym_catch_clause] = STATE(977), - [aux_sym_constructor_try_statement_repeat1] = STATE(977), - [sym_identifier] = ACTIONS(3063), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3065), - [anon_sym_LPAREN2] = ACTIONS(3065), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3065), - [anon_sym_SEMI] = ACTIONS(3065), - [anon_sym___extension__] = ACTIONS(3063), - [anon_sym_typedef] = ACTIONS(3063), - [anon_sym_extern] = ACTIONS(3063), - [anon_sym___attribute__] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(3065), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3065), - [anon_sym___declspec] = ACTIONS(3063), - [anon_sym_LBRACE] = ACTIONS(3065), - [anon_sym_signed] = ACTIONS(3063), - [anon_sym_unsigned] = ACTIONS(3063), - [anon_sym_long] = ACTIONS(3063), - [anon_sym_short] = ACTIONS(3063), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_static] = ACTIONS(3063), - [anon_sym_register] = ACTIONS(3063), - [anon_sym_inline] = ACTIONS(3063), - [anon_sym___inline] = ACTIONS(3063), - [anon_sym___inline__] = ACTIONS(3063), - [anon_sym___forceinline] = ACTIONS(3063), - [anon_sym_thread_local] = ACTIONS(3063), - [anon_sym___thread] = ACTIONS(3063), - [anon_sym_const] = ACTIONS(3063), - [anon_sym_constexpr] = ACTIONS(3063), - [anon_sym_volatile] = ACTIONS(3063), - [anon_sym_restrict] = ACTIONS(3063), - [anon_sym___restrict__] = ACTIONS(3063), - [anon_sym__Atomic] = ACTIONS(3063), - [anon_sym__Noreturn] = ACTIONS(3063), - [anon_sym_noreturn] = ACTIONS(3063), - [anon_sym_mutable] = ACTIONS(3063), - [anon_sym_constinit] = ACTIONS(3063), - [anon_sym_consteval] = ACTIONS(3063), - [sym_primitive_type] = ACTIONS(3063), - [anon_sym_enum] = ACTIONS(3063), - [anon_sym_class] = ACTIONS(3063), - [anon_sym_struct] = ACTIONS(3063), - [anon_sym_union] = ACTIONS(3063), - [anon_sym_if] = ACTIONS(3063), - [anon_sym_else] = ACTIONS(3063), - [anon_sym_switch] = ACTIONS(3063), - [anon_sym_while] = ACTIONS(3063), - [anon_sym_do] = ACTIONS(3063), - [anon_sym_for] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(3063), - [anon_sym_break] = ACTIONS(3063), - [anon_sym_continue] = ACTIONS(3063), - [anon_sym_goto] = ACTIONS(3063), - [anon_sym___try] = ACTIONS(3063), - [anon_sym___leave] = ACTIONS(3063), - [anon_sym_not] = ACTIONS(3063), - [anon_sym_compl] = ACTIONS(3063), - [anon_sym_DASH_DASH] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3065), - [anon_sym_sizeof] = ACTIONS(3063), - [anon_sym___alignof__] = ACTIONS(3063), - [anon_sym___alignof] = ACTIONS(3063), - [anon_sym__alignof] = ACTIONS(3063), - [anon_sym_alignof] = ACTIONS(3063), - [anon_sym__Alignof] = ACTIONS(3063), - [anon_sym_offsetof] = ACTIONS(3063), - [anon_sym__Generic] = ACTIONS(3063), - [anon_sym_asm] = ACTIONS(3063), - [anon_sym___asm__] = ACTIONS(3063), - [sym_number_literal] = ACTIONS(3065), - [anon_sym_L_SQUOTE] = ACTIONS(3065), - [anon_sym_u_SQUOTE] = ACTIONS(3065), - [anon_sym_U_SQUOTE] = ACTIONS(3065), - [anon_sym_u8_SQUOTE] = ACTIONS(3065), - [anon_sym_SQUOTE] = ACTIONS(3065), - [anon_sym_L_DQUOTE] = ACTIONS(3065), - [anon_sym_u_DQUOTE] = ACTIONS(3065), - [anon_sym_U_DQUOTE] = ACTIONS(3065), - [anon_sym_u8_DQUOTE] = ACTIONS(3065), - [anon_sym_DQUOTE] = ACTIONS(3065), - [sym_true] = ACTIONS(3063), - [sym_false] = ACTIONS(3063), - [anon_sym_NULL] = ACTIONS(3063), - [anon_sym_nullptr] = ACTIONS(3063), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3063), - [anon_sym_decltype] = ACTIONS(3063), - [anon_sym_virtual] = ACTIONS(3063), - [anon_sym_alignas] = ACTIONS(3063), - [anon_sym_typename] = ACTIONS(3063), - [anon_sym_template] = ACTIONS(3063), - [anon_sym_try] = ACTIONS(3063), - [anon_sym_delete] = ACTIONS(3063), - [anon_sym_throw] = ACTIONS(3063), - [anon_sym_co_return] = ACTIONS(3063), - [anon_sym_co_yield] = ACTIONS(3063), - [anon_sym_catch] = ACTIONS(4560), - [anon_sym_R_DQUOTE] = ACTIONS(3065), - [anon_sym_LR_DQUOTE] = ACTIONS(3065), - [anon_sym_uR_DQUOTE] = ACTIONS(3065), - [anon_sym_UR_DQUOTE] = ACTIONS(3065), - [anon_sym_u8R_DQUOTE] = ACTIONS(3065), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3063), - [anon_sym_requires] = ACTIONS(3063), - [sym_this] = ACTIONS(3063), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3065), - [sym_semgrep_named_ellipsis] = ACTIONS(3065), + [1003] = { + [sym_expression_statement] = STATE(2824), + [sym_expression] = STATE(5227), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9936), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_type_requirement] = STATE(2824), + [sym_compound_requirement] = STATE(2824), + [sym_requirement] = STATE(1009), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_requirement_seq_repeat1] = STATE(1009), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4559), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_typename] = ACTIONS(4537), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [978] = { - [sym_else_clause] = STATE(987), - [sym_identifier] = ACTIONS(3082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3084), - [anon_sym_LPAREN2] = ACTIONS(3084), - [anon_sym_BANG] = ACTIONS(3084), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3084), - [anon_sym_SEMI] = ACTIONS(3084), - [anon_sym___extension__] = ACTIONS(3082), - [anon_sym_typedef] = ACTIONS(3082), - [anon_sym_extern] = ACTIONS(3082), - [anon_sym___attribute__] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(3084), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3084), - [anon_sym___declspec] = ACTIONS(3082), - [anon_sym_LBRACE] = ACTIONS(3084), - [anon_sym_signed] = ACTIONS(3082), - [anon_sym_unsigned] = ACTIONS(3082), - [anon_sym_long] = ACTIONS(3082), - [anon_sym_short] = ACTIONS(3082), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_static] = ACTIONS(3082), - [anon_sym_register] = ACTIONS(3082), - [anon_sym_inline] = ACTIONS(3082), - [anon_sym___inline] = ACTIONS(3082), - [anon_sym___inline__] = ACTIONS(3082), - [anon_sym___forceinline] = ACTIONS(3082), - [anon_sym_thread_local] = ACTIONS(3082), - [anon_sym___thread] = ACTIONS(3082), - [anon_sym_const] = ACTIONS(3082), - [anon_sym_constexpr] = ACTIONS(3082), - [anon_sym_volatile] = ACTIONS(3082), - [anon_sym_restrict] = ACTIONS(3082), - [anon_sym___restrict__] = ACTIONS(3082), - [anon_sym__Atomic] = ACTIONS(3082), - [anon_sym__Noreturn] = ACTIONS(3082), - [anon_sym_noreturn] = ACTIONS(3082), - [anon_sym_mutable] = ACTIONS(3082), - [anon_sym_constinit] = ACTIONS(3082), - [anon_sym_consteval] = ACTIONS(3082), - [sym_primitive_type] = ACTIONS(3082), - [anon_sym_enum] = ACTIONS(3082), - [anon_sym_class] = ACTIONS(3082), - [anon_sym_struct] = ACTIONS(3082), - [anon_sym_union] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_else] = ACTIONS(4563), - [anon_sym_switch] = ACTIONS(3082), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_do] = ACTIONS(3082), - [anon_sym_for] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_break] = ACTIONS(3082), - [anon_sym_continue] = ACTIONS(3082), - [anon_sym_goto] = ACTIONS(3082), - [anon_sym___try] = ACTIONS(3082), - [anon_sym___leave] = ACTIONS(3082), - [anon_sym_not] = ACTIONS(3082), - [anon_sym_compl] = ACTIONS(3082), - [anon_sym_DASH_DASH] = ACTIONS(3084), - [anon_sym_PLUS_PLUS] = ACTIONS(3084), - [anon_sym_sizeof] = ACTIONS(3082), - [anon_sym___alignof__] = ACTIONS(3082), - [anon_sym___alignof] = ACTIONS(3082), - [anon_sym__alignof] = ACTIONS(3082), - [anon_sym_alignof] = ACTIONS(3082), - [anon_sym__Alignof] = ACTIONS(3082), - [anon_sym_offsetof] = ACTIONS(3082), - [anon_sym__Generic] = ACTIONS(3082), - [anon_sym_asm] = ACTIONS(3082), - [anon_sym___asm__] = ACTIONS(3082), - [sym_number_literal] = ACTIONS(3084), - [anon_sym_L_SQUOTE] = ACTIONS(3084), - [anon_sym_u_SQUOTE] = ACTIONS(3084), - [anon_sym_U_SQUOTE] = ACTIONS(3084), - [anon_sym_u8_SQUOTE] = ACTIONS(3084), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_L_DQUOTE] = ACTIONS(3084), - [anon_sym_u_DQUOTE] = ACTIONS(3084), - [anon_sym_U_DQUOTE] = ACTIONS(3084), - [anon_sym_u8_DQUOTE] = ACTIONS(3084), - [anon_sym_DQUOTE] = ACTIONS(3084), - [sym_true] = ACTIONS(3082), - [sym_false] = ACTIONS(3082), - [anon_sym_NULL] = ACTIONS(3082), - [anon_sym_nullptr] = ACTIONS(3082), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3082), - [anon_sym_decltype] = ACTIONS(3082), - [anon_sym_virtual] = ACTIONS(3082), - [anon_sym_alignas] = ACTIONS(3082), - [anon_sym_typename] = ACTIONS(3082), - [anon_sym_template] = ACTIONS(3082), - [anon_sym_try] = ACTIONS(3082), - [anon_sym_delete] = ACTIONS(3082), - [anon_sym_throw] = ACTIONS(3082), - [anon_sym_co_return] = ACTIONS(3082), - [anon_sym_co_yield] = ACTIONS(3082), - [anon_sym_R_DQUOTE] = ACTIONS(3084), - [anon_sym_LR_DQUOTE] = ACTIONS(3084), - [anon_sym_uR_DQUOTE] = ACTIONS(3084), - [anon_sym_UR_DQUOTE] = ACTIONS(3084), - [anon_sym_u8R_DQUOTE] = ACTIONS(3084), - [anon_sym_co_await] = ACTIONS(3082), - [anon_sym_new] = ACTIONS(3082), - [anon_sym_requires] = ACTIONS(3082), - [sym_this] = ACTIONS(3082), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3084), - [sym_semgrep_named_ellipsis] = ACTIONS(3084), + [1004] = { + [sym_expression_statement] = STATE(2824), + [sym_expression] = STATE(5227), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9936), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_type_requirement] = STATE(2824), + [sym_compound_requirement] = STATE(2824), + [sym_requirement] = STATE(1009), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_requirement_seq_repeat1] = STATE(1009), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4561), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_typename] = ACTIONS(4537), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [979] = { - [sym_identifier] = ACTIONS(3078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3080), - [anon_sym_LPAREN2] = ACTIONS(3080), - [anon_sym_BANG] = ACTIONS(3080), - [anon_sym_TILDE] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(3080), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_SEMI] = ACTIONS(3080), - [anon_sym___extension__] = ACTIONS(3078), - [anon_sym_typedef] = ACTIONS(3078), - [anon_sym_extern] = ACTIONS(3078), - [anon_sym___attribute__] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3080), - [anon_sym___declspec] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_signed] = ACTIONS(3078), - [anon_sym_unsigned] = ACTIONS(3078), - [anon_sym_long] = ACTIONS(3078), - [anon_sym_short] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_static] = ACTIONS(3078), - [anon_sym_register] = ACTIONS(3078), - [anon_sym_inline] = ACTIONS(3078), - [anon_sym___inline] = ACTIONS(3078), - [anon_sym___inline__] = ACTIONS(3078), - [anon_sym___forceinline] = ACTIONS(3078), - [anon_sym_thread_local] = ACTIONS(3078), - [anon_sym___thread] = ACTIONS(3078), - [anon_sym_const] = ACTIONS(3078), - [anon_sym_constexpr] = ACTIONS(3078), - [anon_sym_volatile] = ACTIONS(3078), - [anon_sym_restrict] = ACTIONS(3078), - [anon_sym___restrict__] = ACTIONS(3078), - [anon_sym__Atomic] = ACTIONS(3078), - [anon_sym__Noreturn] = ACTIONS(3078), - [anon_sym_noreturn] = ACTIONS(3078), - [anon_sym_mutable] = ACTIONS(3078), - [anon_sym_constinit] = ACTIONS(3078), - [anon_sym_consteval] = ACTIONS(3078), - [sym_primitive_type] = ACTIONS(3078), - [anon_sym_enum] = ACTIONS(3078), - [anon_sym_class] = ACTIONS(3078), - [anon_sym_struct] = ACTIONS(3078), - [anon_sym_union] = ACTIONS(3078), - [anon_sym_if] = ACTIONS(3078), - [anon_sym_else] = ACTIONS(3078), - [anon_sym_switch] = ACTIONS(3078), - [anon_sym_while] = ACTIONS(3078), - [anon_sym_do] = ACTIONS(3078), - [anon_sym_for] = ACTIONS(3078), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_break] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(3078), - [anon_sym_goto] = ACTIONS(3078), - [anon_sym___try] = ACTIONS(3078), - [anon_sym___leave] = ACTIONS(3078), - [anon_sym_not] = ACTIONS(3078), - [anon_sym_compl] = ACTIONS(3078), - [anon_sym_DASH_DASH] = ACTIONS(3080), - [anon_sym_PLUS_PLUS] = ACTIONS(3080), - [anon_sym_sizeof] = ACTIONS(3078), - [anon_sym___alignof__] = ACTIONS(3078), - [anon_sym___alignof] = ACTIONS(3078), - [anon_sym__alignof] = ACTIONS(3078), - [anon_sym_alignof] = ACTIONS(3078), - [anon_sym__Alignof] = ACTIONS(3078), - [anon_sym_offsetof] = ACTIONS(3078), - [anon_sym__Generic] = ACTIONS(3078), - [anon_sym_asm] = ACTIONS(3078), - [anon_sym___asm__] = ACTIONS(3078), - [sym_number_literal] = ACTIONS(3080), - [anon_sym_L_SQUOTE] = ACTIONS(3080), - [anon_sym_u_SQUOTE] = ACTIONS(3080), - [anon_sym_U_SQUOTE] = ACTIONS(3080), - [anon_sym_u8_SQUOTE] = ACTIONS(3080), - [anon_sym_SQUOTE] = ACTIONS(3080), - [anon_sym_L_DQUOTE] = ACTIONS(3080), - [anon_sym_u_DQUOTE] = ACTIONS(3080), - [anon_sym_U_DQUOTE] = ACTIONS(3080), - [anon_sym_u8_DQUOTE] = ACTIONS(3080), - [anon_sym_DQUOTE] = ACTIONS(3080), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [anon_sym_NULL] = ACTIONS(3078), - [anon_sym_nullptr] = ACTIONS(3078), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3078), - [anon_sym_decltype] = ACTIONS(3078), - [anon_sym_virtual] = ACTIONS(3078), - [anon_sym_alignas] = ACTIONS(3078), - [anon_sym_typename] = ACTIONS(3078), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_try] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3078), - [anon_sym_throw] = ACTIONS(3078), - [anon_sym_co_return] = ACTIONS(3078), - [anon_sym_co_yield] = ACTIONS(3078), - [anon_sym_catch] = ACTIONS(3078), - [anon_sym_R_DQUOTE] = ACTIONS(3080), - [anon_sym_LR_DQUOTE] = ACTIONS(3080), - [anon_sym_uR_DQUOTE] = ACTIONS(3080), - [anon_sym_UR_DQUOTE] = ACTIONS(3080), - [anon_sym_u8R_DQUOTE] = ACTIONS(3080), - [anon_sym_co_await] = ACTIONS(3078), - [anon_sym_new] = ACTIONS(3078), - [anon_sym_requires] = ACTIONS(3078), - [sym_this] = ACTIONS(3078), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3080), - [sym_semgrep_named_ellipsis] = ACTIONS(3080), + [1005] = { + [sym_expression_statement] = STATE(2824), + [sym_expression] = STATE(5227), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9936), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_type_requirement] = STATE(2824), + [sym_compound_requirement] = STATE(2824), + [sym_requirement] = STATE(1025), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_requirement_seq_repeat1] = STATE(1025), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4563), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_typename] = ACTIONS(4537), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [980] = { - [sym_else_clause] = STATE(1006), - [sym_identifier] = ACTIONS(3088), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3090), - [anon_sym_LPAREN2] = ACTIONS(3090), - [anon_sym_BANG] = ACTIONS(3090), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3088), - [anon_sym_PLUS] = ACTIONS(3088), - [anon_sym_STAR] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3090), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym___extension__] = ACTIONS(3088), - [anon_sym_typedef] = ACTIONS(3088), - [anon_sym_extern] = ACTIONS(3088), - [anon_sym___attribute__] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3090), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3090), - [anon_sym___declspec] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_signed] = ACTIONS(3088), - [anon_sym_unsigned] = ACTIONS(3088), - [anon_sym_long] = ACTIONS(3088), - [anon_sym_short] = ACTIONS(3088), - [anon_sym_LBRACK] = ACTIONS(3088), - [anon_sym_static] = ACTIONS(3088), - [anon_sym_register] = ACTIONS(3088), - [anon_sym_inline] = ACTIONS(3088), - [anon_sym___inline] = ACTIONS(3088), - [anon_sym___inline__] = ACTIONS(3088), - [anon_sym___forceinline] = ACTIONS(3088), - [anon_sym_thread_local] = ACTIONS(3088), - [anon_sym___thread] = ACTIONS(3088), - [anon_sym_const] = ACTIONS(3088), - [anon_sym_constexpr] = ACTIONS(3088), - [anon_sym_volatile] = ACTIONS(3088), - [anon_sym_restrict] = ACTIONS(3088), - [anon_sym___restrict__] = ACTIONS(3088), - [anon_sym__Atomic] = ACTIONS(3088), - [anon_sym__Noreturn] = ACTIONS(3088), - [anon_sym_noreturn] = ACTIONS(3088), - [anon_sym_mutable] = ACTIONS(3088), - [anon_sym_constinit] = ACTIONS(3088), - [anon_sym_consteval] = ACTIONS(3088), - [sym_primitive_type] = ACTIONS(3088), - [anon_sym_enum] = ACTIONS(3088), - [anon_sym_class] = ACTIONS(3088), - [anon_sym_struct] = ACTIONS(3088), - [anon_sym_union] = ACTIONS(3088), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_else] = ACTIONS(4563), - [anon_sym_switch] = ACTIONS(3088), - [anon_sym_while] = ACTIONS(3088), - [anon_sym_do] = ACTIONS(3088), - [anon_sym_for] = ACTIONS(3088), - [anon_sym_return] = ACTIONS(3088), - [anon_sym_break] = ACTIONS(3088), - [anon_sym_continue] = ACTIONS(3088), - [anon_sym_goto] = ACTIONS(3088), - [anon_sym___try] = ACTIONS(3088), - [anon_sym___leave] = ACTIONS(3088), - [anon_sym_not] = ACTIONS(3088), - [anon_sym_compl] = ACTIONS(3088), - [anon_sym_DASH_DASH] = ACTIONS(3090), - [anon_sym_PLUS_PLUS] = ACTIONS(3090), - [anon_sym_sizeof] = ACTIONS(3088), - [anon_sym___alignof__] = ACTIONS(3088), - [anon_sym___alignof] = ACTIONS(3088), - [anon_sym__alignof] = ACTIONS(3088), - [anon_sym_alignof] = ACTIONS(3088), - [anon_sym__Alignof] = ACTIONS(3088), - [anon_sym_offsetof] = ACTIONS(3088), - [anon_sym__Generic] = ACTIONS(3088), - [anon_sym_asm] = ACTIONS(3088), - [anon_sym___asm__] = ACTIONS(3088), - [sym_number_literal] = ACTIONS(3090), - [anon_sym_L_SQUOTE] = ACTIONS(3090), - [anon_sym_u_SQUOTE] = ACTIONS(3090), - [anon_sym_U_SQUOTE] = ACTIONS(3090), - [anon_sym_u8_SQUOTE] = ACTIONS(3090), - [anon_sym_SQUOTE] = ACTIONS(3090), - [anon_sym_L_DQUOTE] = ACTIONS(3090), - [anon_sym_u_DQUOTE] = ACTIONS(3090), - [anon_sym_U_DQUOTE] = ACTIONS(3090), - [anon_sym_u8_DQUOTE] = ACTIONS(3090), - [anon_sym_DQUOTE] = ACTIONS(3090), - [sym_true] = ACTIONS(3088), - [sym_false] = ACTIONS(3088), - [anon_sym_NULL] = ACTIONS(3088), - [anon_sym_nullptr] = ACTIONS(3088), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3088), - [anon_sym_decltype] = ACTIONS(3088), - [anon_sym_virtual] = ACTIONS(3088), - [anon_sym_alignas] = ACTIONS(3088), - [anon_sym_typename] = ACTIONS(3088), - [anon_sym_template] = ACTIONS(3088), - [anon_sym_try] = ACTIONS(3088), - [anon_sym_delete] = ACTIONS(3088), - [anon_sym_throw] = ACTIONS(3088), - [anon_sym_co_return] = ACTIONS(3088), - [anon_sym_co_yield] = ACTIONS(3088), - [anon_sym_R_DQUOTE] = ACTIONS(3090), - [anon_sym_LR_DQUOTE] = ACTIONS(3090), - [anon_sym_uR_DQUOTE] = ACTIONS(3090), - [anon_sym_UR_DQUOTE] = ACTIONS(3090), - [anon_sym_u8R_DQUOTE] = ACTIONS(3090), - [anon_sym_co_await] = ACTIONS(3088), - [anon_sym_new] = ACTIONS(3088), - [anon_sym_requires] = ACTIONS(3088), - [sym_this] = ACTIONS(3088), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3090), - [sym_semgrep_named_ellipsis] = ACTIONS(3090), + [1006] = { + [sym_expression_statement] = STATE(2824), + [sym_expression] = STATE(5227), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9936), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_type_requirement] = STATE(2824), + [sym_compound_requirement] = STATE(2824), + [sym_requirement] = STATE(1007), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_requirement_seq_repeat1] = STATE(1007), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4565), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_typename] = ACTIONS(4537), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [981] = { - [sym_identifier] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3103), - [anon_sym_LPAREN2] = ACTIONS(3103), - [anon_sym_BANG] = ACTIONS(3103), - [anon_sym_TILDE] = ACTIONS(3103), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3103), - [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym___extension__] = ACTIONS(3101), - [anon_sym_typedef] = ACTIONS(3101), - [anon_sym_extern] = ACTIONS(3101), - [anon_sym___attribute__] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(3103), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3103), - [anon_sym___declspec] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3103), - [anon_sym_signed] = ACTIONS(3101), - [anon_sym_unsigned] = ACTIONS(3101), - [anon_sym_long] = ACTIONS(3101), - [anon_sym_short] = ACTIONS(3101), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_static] = ACTIONS(3101), - [anon_sym_register] = ACTIONS(3101), - [anon_sym_inline] = ACTIONS(3101), - [anon_sym___inline] = ACTIONS(3101), - [anon_sym___inline__] = ACTIONS(3101), - [anon_sym___forceinline] = ACTIONS(3101), - [anon_sym_thread_local] = ACTIONS(3101), - [anon_sym___thread] = ACTIONS(3101), - [anon_sym_const] = ACTIONS(3101), - [anon_sym_constexpr] = ACTIONS(3101), - [anon_sym_volatile] = ACTIONS(3101), - [anon_sym_restrict] = ACTIONS(3101), - [anon_sym___restrict__] = ACTIONS(3101), - [anon_sym__Atomic] = ACTIONS(3101), - [anon_sym__Noreturn] = ACTIONS(3101), - [anon_sym_noreturn] = ACTIONS(3101), - [anon_sym_mutable] = ACTIONS(3101), - [anon_sym_constinit] = ACTIONS(3101), - [anon_sym_consteval] = ACTIONS(3101), - [sym_primitive_type] = ACTIONS(3101), - [anon_sym_enum] = ACTIONS(3101), - [anon_sym_class] = ACTIONS(3101), - [anon_sym_struct] = ACTIONS(3101), - [anon_sym_union] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_else] = ACTIONS(3101), - [anon_sym_switch] = ACTIONS(3101), - [anon_sym_while] = ACTIONS(3101), - [anon_sym_do] = ACTIONS(3101), - [anon_sym_for] = ACTIONS(3101), - [anon_sym_return] = ACTIONS(3101), - [anon_sym_break] = ACTIONS(3101), - [anon_sym_continue] = ACTIONS(3101), - [anon_sym_goto] = ACTIONS(3101), - [anon_sym___try] = ACTIONS(3101), - [anon_sym___leave] = ACTIONS(3101), - [anon_sym_not] = ACTIONS(3101), - [anon_sym_compl] = ACTIONS(3101), - [anon_sym_DASH_DASH] = ACTIONS(3103), - [anon_sym_PLUS_PLUS] = ACTIONS(3103), - [anon_sym_sizeof] = ACTIONS(3101), - [anon_sym___alignof__] = ACTIONS(3101), - [anon_sym___alignof] = ACTIONS(3101), - [anon_sym__alignof] = ACTIONS(3101), - [anon_sym_alignof] = ACTIONS(3101), - [anon_sym__Alignof] = ACTIONS(3101), - [anon_sym_offsetof] = ACTIONS(3101), - [anon_sym__Generic] = ACTIONS(3101), - [anon_sym_asm] = ACTIONS(3101), - [anon_sym___asm__] = ACTIONS(3101), - [sym_number_literal] = ACTIONS(3103), - [anon_sym_L_SQUOTE] = ACTIONS(3103), - [anon_sym_u_SQUOTE] = ACTIONS(3103), - [anon_sym_U_SQUOTE] = ACTIONS(3103), - [anon_sym_u8_SQUOTE] = ACTIONS(3103), - [anon_sym_SQUOTE] = ACTIONS(3103), - [anon_sym_L_DQUOTE] = ACTIONS(3103), - [anon_sym_u_DQUOTE] = ACTIONS(3103), - [anon_sym_U_DQUOTE] = ACTIONS(3103), - [anon_sym_u8_DQUOTE] = ACTIONS(3103), - [anon_sym_DQUOTE] = ACTIONS(3103), - [sym_true] = ACTIONS(3101), - [sym_false] = ACTIONS(3101), - [anon_sym_NULL] = ACTIONS(3101), - [anon_sym_nullptr] = ACTIONS(3101), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3101), - [anon_sym_decltype] = ACTIONS(3101), - [anon_sym_virtual] = ACTIONS(3101), - [anon_sym_alignas] = ACTIONS(3101), - [anon_sym_typename] = ACTIONS(3101), - [anon_sym_template] = ACTIONS(3101), - [anon_sym_try] = ACTIONS(3101), - [anon_sym_delete] = ACTIONS(3101), - [anon_sym_throw] = ACTIONS(3101), - [anon_sym_co_return] = ACTIONS(3101), - [anon_sym_co_yield] = ACTIONS(3101), - [anon_sym_catch] = ACTIONS(3101), - [anon_sym_R_DQUOTE] = ACTIONS(3103), - [anon_sym_LR_DQUOTE] = ACTIONS(3103), - [anon_sym_uR_DQUOTE] = ACTIONS(3103), - [anon_sym_UR_DQUOTE] = ACTIONS(3103), - [anon_sym_u8R_DQUOTE] = ACTIONS(3103), - [anon_sym_co_await] = ACTIONS(3101), - [anon_sym_new] = ACTIONS(3101), - [anon_sym_requires] = ACTIONS(3101), - [sym_this] = ACTIONS(3101), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3103), - [sym_semgrep_named_ellipsis] = ACTIONS(3103), + [1007] = { + [sym_expression_statement] = STATE(2824), + [sym_expression] = STATE(5227), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9936), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_type_requirement] = STATE(2824), + [sym_compound_requirement] = STATE(2824), + [sym_requirement] = STATE(1009), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_requirement_seq_repeat1] = STATE(1009), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4567), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_typename] = ACTIONS(4537), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [982] = { - [sym_identifier] = ACTIONS(3096), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3094), - [anon_sym_LPAREN2] = ACTIONS(3094), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_TILDE] = ACTIONS(3094), - [anon_sym_DASH] = ACTIONS(3096), - [anon_sym_PLUS] = ACTIONS(3096), - [anon_sym_STAR] = ACTIONS(3094), - [anon_sym_AMP] = ACTIONS(3094), - [anon_sym_SEMI] = ACTIONS(3094), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_typedef] = ACTIONS(3096), - [anon_sym_extern] = ACTIONS(3096), - [anon_sym___attribute__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(3094), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3094), - [anon_sym___declspec] = ACTIONS(3096), - [anon_sym_LBRACE] = ACTIONS(3094), - [anon_sym_signed] = ACTIONS(3096), - [anon_sym_unsigned] = ACTIONS(3096), - [anon_sym_long] = ACTIONS(3096), - [anon_sym_short] = ACTIONS(3096), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_static] = ACTIONS(3096), - [anon_sym_register] = ACTIONS(3096), - [anon_sym_inline] = ACTIONS(3096), - [anon_sym___inline] = ACTIONS(3096), - [anon_sym___inline__] = ACTIONS(3096), - [anon_sym___forceinline] = ACTIONS(3096), - [anon_sym_thread_local] = ACTIONS(3096), - [anon_sym___thread] = ACTIONS(3096), - [anon_sym_const] = ACTIONS(3096), - [anon_sym_constexpr] = ACTIONS(3096), - [anon_sym_volatile] = ACTIONS(3096), - [anon_sym_restrict] = ACTIONS(3096), - [anon_sym___restrict__] = ACTIONS(3096), - [anon_sym__Atomic] = ACTIONS(3096), - [anon_sym__Noreturn] = ACTIONS(3096), - [anon_sym_noreturn] = ACTIONS(3096), - [anon_sym_mutable] = ACTIONS(3096), - [anon_sym_constinit] = ACTIONS(3096), - [anon_sym_consteval] = ACTIONS(3096), - [sym_primitive_type] = ACTIONS(3096), - [anon_sym_enum] = ACTIONS(3096), - [anon_sym_class] = ACTIONS(3096), - [anon_sym_struct] = ACTIONS(3096), - [anon_sym_union] = ACTIONS(3096), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_else] = ACTIONS(3096), - [anon_sym_switch] = ACTIONS(3096), - [anon_sym_while] = ACTIONS(3096), - [anon_sym_do] = ACTIONS(3096), - [anon_sym_for] = ACTIONS(3096), - [anon_sym_return] = ACTIONS(3096), - [anon_sym_break] = ACTIONS(3096), - [anon_sym_continue] = ACTIONS(3096), - [anon_sym_goto] = ACTIONS(3096), - [anon_sym___try] = ACTIONS(3096), - [anon_sym___leave] = ACTIONS(3096), - [anon_sym_not] = ACTIONS(3096), - [anon_sym_compl] = ACTIONS(3096), - [anon_sym_DASH_DASH] = ACTIONS(3094), - [anon_sym_PLUS_PLUS] = ACTIONS(3094), - [anon_sym_sizeof] = ACTIONS(3096), - [anon_sym___alignof__] = ACTIONS(3096), - [anon_sym___alignof] = ACTIONS(3096), - [anon_sym__alignof] = ACTIONS(3096), - [anon_sym_alignof] = ACTIONS(3096), - [anon_sym__Alignof] = ACTIONS(3096), - [anon_sym_offsetof] = ACTIONS(3096), - [anon_sym__Generic] = ACTIONS(3096), - [anon_sym_asm] = ACTIONS(3096), - [anon_sym___asm__] = ACTIONS(3096), - [sym_number_literal] = ACTIONS(3094), - [anon_sym_L_SQUOTE] = ACTIONS(3094), - [anon_sym_u_SQUOTE] = ACTIONS(3094), - [anon_sym_U_SQUOTE] = ACTIONS(3094), - [anon_sym_u8_SQUOTE] = ACTIONS(3094), - [anon_sym_SQUOTE] = ACTIONS(3094), - [anon_sym_L_DQUOTE] = ACTIONS(3094), - [anon_sym_u_DQUOTE] = ACTIONS(3094), - [anon_sym_U_DQUOTE] = ACTIONS(3094), - [anon_sym_u8_DQUOTE] = ACTIONS(3094), - [anon_sym_DQUOTE] = ACTIONS(3094), - [sym_true] = ACTIONS(3096), - [sym_false] = ACTIONS(3096), - [anon_sym_NULL] = ACTIONS(3096), - [anon_sym_nullptr] = ACTIONS(3096), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3096), - [anon_sym_decltype] = ACTIONS(3096), - [anon_sym_virtual] = ACTIONS(3096), - [anon_sym_alignas] = ACTIONS(3096), - [anon_sym_typename] = ACTIONS(3096), - [anon_sym_template] = ACTIONS(3096), - [anon_sym_try] = ACTIONS(3096), - [anon_sym_delete] = ACTIONS(3096), - [anon_sym_throw] = ACTIONS(3096), - [anon_sym_co_return] = ACTIONS(3096), - [anon_sym_co_yield] = ACTIONS(3096), - [anon_sym_catch] = ACTIONS(3096), - [anon_sym_R_DQUOTE] = ACTIONS(3094), - [anon_sym_LR_DQUOTE] = ACTIONS(3094), - [anon_sym_uR_DQUOTE] = ACTIONS(3094), - [anon_sym_UR_DQUOTE] = ACTIONS(3094), - [anon_sym_u8R_DQUOTE] = ACTIONS(3094), - [anon_sym_co_await] = ACTIONS(3096), - [anon_sym_new] = ACTIONS(3096), - [anon_sym_requires] = ACTIONS(3096), - [sym_this] = ACTIONS(3096), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3094), - [sym_semgrep_named_ellipsis] = ACTIONS(3094), + [1008] = { + [sym_expression] = STATE(5089), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8197), + [sym_initializer_pair] = STATE(8197), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(5245), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [sym_identifier] = ACTIONS(4521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_COMMA] = ACTIONS(4569), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_RBRACE] = ACTIONS(4571), + [anon_sym_LBRACK] = ACTIONS(4527), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(229), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [983] = { - [sym_identifier] = ACTIONS(3139), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3141), - [anon_sym_LPAREN2] = ACTIONS(3141), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3141), - [anon_sym_SEMI] = ACTIONS(3141), - [anon_sym___extension__] = ACTIONS(3139), - [anon_sym_typedef] = ACTIONS(3139), - [anon_sym_extern] = ACTIONS(3139), - [anon_sym___attribute__] = ACTIONS(3139), - [anon_sym_COLON_COLON] = ACTIONS(3141), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3141), - [anon_sym___declspec] = ACTIONS(3139), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_signed] = ACTIONS(3139), - [anon_sym_unsigned] = ACTIONS(3139), - [anon_sym_long] = ACTIONS(3139), - [anon_sym_short] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_static] = ACTIONS(3139), - [anon_sym_register] = ACTIONS(3139), - [anon_sym_inline] = ACTIONS(3139), - [anon_sym___inline] = ACTIONS(3139), - [anon_sym___inline__] = ACTIONS(3139), - [anon_sym___forceinline] = ACTIONS(3139), - [anon_sym_thread_local] = ACTIONS(3139), - [anon_sym___thread] = ACTIONS(3139), - [anon_sym_const] = ACTIONS(3139), - [anon_sym_constexpr] = ACTIONS(3139), - [anon_sym_volatile] = ACTIONS(3139), - [anon_sym_restrict] = ACTIONS(3139), - [anon_sym___restrict__] = ACTIONS(3139), - [anon_sym__Atomic] = ACTIONS(3139), - [anon_sym__Noreturn] = ACTIONS(3139), - [anon_sym_noreturn] = ACTIONS(3139), - [anon_sym_mutable] = ACTIONS(3139), - [anon_sym_constinit] = ACTIONS(3139), - [anon_sym_consteval] = ACTIONS(3139), - [sym_primitive_type] = ACTIONS(3139), - [anon_sym_enum] = ACTIONS(3139), - [anon_sym_class] = ACTIONS(3139), - [anon_sym_struct] = ACTIONS(3139), - [anon_sym_union] = ACTIONS(3139), - [anon_sym_if] = ACTIONS(3139), - [anon_sym_else] = ACTIONS(3139), - [anon_sym_switch] = ACTIONS(3139), - [anon_sym_while] = ACTIONS(3139), - [anon_sym_do] = ACTIONS(3139), - [anon_sym_for] = ACTIONS(3139), - [anon_sym_return] = ACTIONS(3139), - [anon_sym_break] = ACTIONS(3139), - [anon_sym_continue] = ACTIONS(3139), - [anon_sym_goto] = ACTIONS(3139), - [anon_sym___try] = ACTIONS(3139), - [anon_sym___leave] = ACTIONS(3139), - [anon_sym_not] = ACTIONS(3139), - [anon_sym_compl] = ACTIONS(3139), - [anon_sym_DASH_DASH] = ACTIONS(3141), - [anon_sym_PLUS_PLUS] = ACTIONS(3141), - [anon_sym_sizeof] = ACTIONS(3139), - [anon_sym___alignof__] = ACTIONS(3139), - [anon_sym___alignof] = ACTIONS(3139), - [anon_sym__alignof] = ACTIONS(3139), - [anon_sym_alignof] = ACTIONS(3139), - [anon_sym__Alignof] = ACTIONS(3139), - [anon_sym_offsetof] = ACTIONS(3139), - [anon_sym__Generic] = ACTIONS(3139), - [anon_sym_asm] = ACTIONS(3139), - [anon_sym___asm__] = ACTIONS(3139), - [sym_number_literal] = ACTIONS(3141), - [anon_sym_L_SQUOTE] = ACTIONS(3141), - [anon_sym_u_SQUOTE] = ACTIONS(3141), - [anon_sym_U_SQUOTE] = ACTIONS(3141), - [anon_sym_u8_SQUOTE] = ACTIONS(3141), - [anon_sym_SQUOTE] = ACTIONS(3141), - [anon_sym_L_DQUOTE] = ACTIONS(3141), - [anon_sym_u_DQUOTE] = ACTIONS(3141), - [anon_sym_U_DQUOTE] = ACTIONS(3141), - [anon_sym_u8_DQUOTE] = ACTIONS(3141), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym_true] = ACTIONS(3139), - [sym_false] = ACTIONS(3139), - [anon_sym_NULL] = ACTIONS(3139), - [anon_sym_nullptr] = ACTIONS(3139), + [1009] = { + [sym_expression_statement] = STATE(2824), + [sym_expression] = STATE(5227), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9936), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_type_requirement] = STATE(2824), + [sym_compound_requirement] = STATE(2824), + [sym_requirement] = STATE(1009), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_requirement_seq_repeat1] = STATE(1009), + [sym_identifier] = ACTIONS(4573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4576), + [anon_sym_LPAREN2] = ACTIONS(4579), + [anon_sym_BANG] = ACTIONS(4582), + [anon_sym_TILDE] = ACTIONS(4582), + [anon_sym_DASH] = ACTIONS(4585), + [anon_sym_PLUS] = ACTIONS(4585), + [anon_sym_STAR] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4588), + [anon_sym_SEMI] = ACTIONS(4591), + [anon_sym_COLON_COLON] = ACTIONS(4594), + [anon_sym_LBRACE] = ACTIONS(4597), + [anon_sym_RBRACE] = ACTIONS(4600), + [anon_sym_LBRACK] = ACTIONS(4602), + [sym_primitive_type] = ACTIONS(4605), + [anon_sym_not] = ACTIONS(4585), + [anon_sym_compl] = ACTIONS(4585), + [anon_sym_DASH_DASH] = ACTIONS(4608), + [anon_sym_PLUS_PLUS] = ACTIONS(4608), + [anon_sym_sizeof] = ACTIONS(4611), + [anon_sym___alignof__] = ACTIONS(4614), + [anon_sym___alignof] = ACTIONS(4614), + [anon_sym__alignof] = ACTIONS(4614), + [anon_sym_alignof] = ACTIONS(4614), + [anon_sym__Alignof] = ACTIONS(4614), + [anon_sym_offsetof] = ACTIONS(4617), + [anon_sym__Generic] = ACTIONS(4620), + [anon_sym_asm] = ACTIONS(4623), + [anon_sym___asm__] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4626), + [anon_sym_L_SQUOTE] = ACTIONS(4629), + [anon_sym_u_SQUOTE] = ACTIONS(4629), + [anon_sym_U_SQUOTE] = ACTIONS(4629), + [anon_sym_u8_SQUOTE] = ACTIONS(4629), + [anon_sym_SQUOTE] = ACTIONS(4629), + [anon_sym_L_DQUOTE] = ACTIONS(4632), + [anon_sym_u_DQUOTE] = ACTIONS(4632), + [anon_sym_U_DQUOTE] = ACTIONS(4632), + [anon_sym_u8_DQUOTE] = ACTIONS(4632), + [anon_sym_DQUOTE] = ACTIONS(4632), + [sym_true] = ACTIONS(4635), + [sym_false] = ACTIONS(4635), + [anon_sym_NULL] = ACTIONS(4638), + [anon_sym_nullptr] = ACTIONS(4638), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(4641), + [anon_sym_typename] = ACTIONS(4644), + [anon_sym_template] = ACTIONS(4647), + [anon_sym_delete] = ACTIONS(4650), + [anon_sym_R_DQUOTE] = ACTIONS(4653), + [anon_sym_LR_DQUOTE] = ACTIONS(4653), + [anon_sym_uR_DQUOTE] = ACTIONS(4653), + [anon_sym_UR_DQUOTE] = ACTIONS(4653), + [anon_sym_u8R_DQUOTE] = ACTIONS(4653), + [anon_sym_co_await] = ACTIONS(4656), + [anon_sym_new] = ACTIONS(4659), + [anon_sym_requires] = ACTIONS(4662), + [sym_this] = ACTIONS(4635), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4665), + [sym_semgrep_named_ellipsis] = ACTIONS(4668), + }, + [1010] = { + [sym_expression_statement] = STATE(2824), + [sym_expression] = STATE(5227), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9936), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_type_requirement] = STATE(2824), + [sym_compound_requirement] = STATE(2824), + [sym_requirement] = STATE(1011), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_requirement_seq_repeat1] = STATE(1011), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4671), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3139), - [anon_sym_decltype] = ACTIONS(3139), - [anon_sym_virtual] = ACTIONS(3139), - [anon_sym_alignas] = ACTIONS(3139), - [anon_sym_typename] = ACTIONS(3139), - [anon_sym_template] = ACTIONS(3139), - [anon_sym_try] = ACTIONS(3139), - [anon_sym_delete] = ACTIONS(3139), - [anon_sym_throw] = ACTIONS(3139), - [anon_sym_co_return] = ACTIONS(3139), - [anon_sym_co_yield] = ACTIONS(3139), - [anon_sym_R_DQUOTE] = ACTIONS(3141), - [anon_sym_LR_DQUOTE] = ACTIONS(3141), - [anon_sym_uR_DQUOTE] = ACTIONS(3141), - [anon_sym_UR_DQUOTE] = ACTIONS(3141), - [anon_sym_u8R_DQUOTE] = ACTIONS(3141), - [anon_sym_co_await] = ACTIONS(3139), - [anon_sym_new] = ACTIONS(3139), - [anon_sym_requires] = ACTIONS(3139), - [sym_this] = ACTIONS(3139), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3141), - [sym_semgrep_named_ellipsis] = ACTIONS(3141), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_typename] = ACTIONS(4537), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [984] = { - [sym_identifier] = ACTIONS(3223), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3225), - [anon_sym_LPAREN2] = ACTIONS(3225), - [anon_sym_BANG] = ACTIONS(3225), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_STAR] = ACTIONS(3225), - [anon_sym_AMP] = ACTIONS(3225), - [anon_sym_SEMI] = ACTIONS(3225), - [anon_sym___extension__] = ACTIONS(3223), - [anon_sym_typedef] = ACTIONS(3223), - [anon_sym_extern] = ACTIONS(3223), - [anon_sym___attribute__] = ACTIONS(3223), - [anon_sym_COLON_COLON] = ACTIONS(3225), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3225), - [anon_sym___declspec] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3225), - [anon_sym_signed] = ACTIONS(3223), - [anon_sym_unsigned] = ACTIONS(3223), - [anon_sym_long] = ACTIONS(3223), - [anon_sym_short] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_register] = ACTIONS(3223), - [anon_sym_inline] = ACTIONS(3223), - [anon_sym___inline] = ACTIONS(3223), - [anon_sym___inline__] = ACTIONS(3223), - [anon_sym___forceinline] = ACTIONS(3223), - [anon_sym_thread_local] = ACTIONS(3223), - [anon_sym___thread] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_constexpr] = ACTIONS(3223), - [anon_sym_volatile] = ACTIONS(3223), - [anon_sym_restrict] = ACTIONS(3223), - [anon_sym___restrict__] = ACTIONS(3223), - [anon_sym__Atomic] = ACTIONS(3223), - [anon_sym__Noreturn] = ACTIONS(3223), - [anon_sym_noreturn] = ACTIONS(3223), - [anon_sym_mutable] = ACTIONS(3223), - [anon_sym_constinit] = ACTIONS(3223), - [anon_sym_consteval] = ACTIONS(3223), - [sym_primitive_type] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_struct] = ACTIONS(3223), - [anon_sym_union] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_else] = ACTIONS(3223), - [anon_sym_switch] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_goto] = ACTIONS(3223), - [anon_sym___try] = ACTIONS(3223), - [anon_sym___leave] = ACTIONS(3223), - [anon_sym_not] = ACTIONS(3223), - [anon_sym_compl] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3225), - [anon_sym_PLUS_PLUS] = ACTIONS(3225), - [anon_sym_sizeof] = ACTIONS(3223), - [anon_sym___alignof__] = ACTIONS(3223), - [anon_sym___alignof] = ACTIONS(3223), - [anon_sym__alignof] = ACTIONS(3223), - [anon_sym_alignof] = ACTIONS(3223), - [anon_sym__Alignof] = ACTIONS(3223), - [anon_sym_offsetof] = ACTIONS(3223), - [anon_sym__Generic] = ACTIONS(3223), - [anon_sym_asm] = ACTIONS(3223), - [anon_sym___asm__] = ACTIONS(3223), - [sym_number_literal] = ACTIONS(3225), - [anon_sym_L_SQUOTE] = ACTIONS(3225), - [anon_sym_u_SQUOTE] = ACTIONS(3225), - [anon_sym_U_SQUOTE] = ACTIONS(3225), - [anon_sym_u8_SQUOTE] = ACTIONS(3225), - [anon_sym_SQUOTE] = ACTIONS(3225), - [anon_sym_L_DQUOTE] = ACTIONS(3225), - [anon_sym_u_DQUOTE] = ACTIONS(3225), - [anon_sym_U_DQUOTE] = ACTIONS(3225), - [anon_sym_u8_DQUOTE] = ACTIONS(3225), - [anon_sym_DQUOTE] = ACTIONS(3225), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [anon_sym_NULL] = ACTIONS(3223), - [anon_sym_nullptr] = ACTIONS(3223), + [1011] = { + [sym_expression_statement] = STATE(2824), + [sym_expression] = STATE(5227), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9936), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_type_requirement] = STATE(2824), + [sym_compound_requirement] = STATE(2824), + [sym_requirement] = STATE(1009), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_requirement_seq_repeat1] = STATE(1009), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4673), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3223), - [anon_sym_decltype] = ACTIONS(3223), - [anon_sym_virtual] = ACTIONS(3223), - [anon_sym_alignas] = ACTIONS(3223), - [anon_sym_typename] = ACTIONS(3223), - [anon_sym_template] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_delete] = ACTIONS(3223), - [anon_sym_throw] = ACTIONS(3223), - [anon_sym_co_return] = ACTIONS(3223), - [anon_sym_co_yield] = ACTIONS(3223), - [anon_sym_R_DQUOTE] = ACTIONS(3225), - [anon_sym_LR_DQUOTE] = ACTIONS(3225), - [anon_sym_uR_DQUOTE] = ACTIONS(3225), - [anon_sym_UR_DQUOTE] = ACTIONS(3225), - [anon_sym_u8R_DQUOTE] = ACTIONS(3225), - [anon_sym_co_await] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_requires] = ACTIONS(3223), - [sym_this] = ACTIONS(3223), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3225), - [sym_semgrep_named_ellipsis] = ACTIONS(3225), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_typename] = ACTIONS(4537), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [985] = { - [sym_identifier] = ACTIONS(3241), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3243), - [anon_sym_LPAREN2] = ACTIONS(3243), - [anon_sym_BANG] = ACTIONS(3243), - [anon_sym_TILDE] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(3241), - [anon_sym_PLUS] = ACTIONS(3241), - [anon_sym_STAR] = ACTIONS(3243), - [anon_sym_AMP] = ACTIONS(3243), - [anon_sym_SEMI] = ACTIONS(3243), - [anon_sym___extension__] = ACTIONS(3241), - [anon_sym_typedef] = ACTIONS(3241), - [anon_sym_extern] = ACTIONS(3241), - [anon_sym___attribute__] = ACTIONS(3241), - [anon_sym_COLON_COLON] = ACTIONS(3243), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3243), - [anon_sym___declspec] = ACTIONS(3241), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_signed] = ACTIONS(3241), - [anon_sym_unsigned] = ACTIONS(3241), - [anon_sym_long] = ACTIONS(3241), - [anon_sym_short] = ACTIONS(3241), - [anon_sym_LBRACK] = ACTIONS(3241), - [anon_sym_static] = ACTIONS(3241), - [anon_sym_register] = ACTIONS(3241), - [anon_sym_inline] = ACTIONS(3241), - [anon_sym___inline] = ACTIONS(3241), - [anon_sym___inline__] = ACTIONS(3241), - [anon_sym___forceinline] = ACTIONS(3241), - [anon_sym_thread_local] = ACTIONS(3241), - [anon_sym___thread] = ACTIONS(3241), - [anon_sym_const] = ACTIONS(3241), - [anon_sym_constexpr] = ACTIONS(3241), - [anon_sym_volatile] = ACTIONS(3241), - [anon_sym_restrict] = ACTIONS(3241), - [anon_sym___restrict__] = ACTIONS(3241), - [anon_sym__Atomic] = ACTIONS(3241), - [anon_sym__Noreturn] = ACTIONS(3241), - [anon_sym_noreturn] = ACTIONS(3241), - [anon_sym_mutable] = ACTIONS(3241), - [anon_sym_constinit] = ACTIONS(3241), - [anon_sym_consteval] = ACTIONS(3241), - [sym_primitive_type] = ACTIONS(3241), - [anon_sym_enum] = ACTIONS(3241), - [anon_sym_class] = ACTIONS(3241), - [anon_sym_struct] = ACTIONS(3241), - [anon_sym_union] = ACTIONS(3241), - [anon_sym_if] = ACTIONS(3241), - [anon_sym_else] = ACTIONS(3241), - [anon_sym_switch] = ACTIONS(3241), - [anon_sym_while] = ACTIONS(3241), - [anon_sym_do] = ACTIONS(3241), - [anon_sym_for] = ACTIONS(3241), - [anon_sym_return] = ACTIONS(3241), - [anon_sym_break] = ACTIONS(3241), - [anon_sym_continue] = ACTIONS(3241), - [anon_sym_goto] = ACTIONS(3241), - [anon_sym___try] = ACTIONS(3241), - [anon_sym___leave] = ACTIONS(3241), - [anon_sym_not] = ACTIONS(3241), - [anon_sym_compl] = ACTIONS(3241), - [anon_sym_DASH_DASH] = ACTIONS(3243), - [anon_sym_PLUS_PLUS] = ACTIONS(3243), - [anon_sym_sizeof] = ACTIONS(3241), - [anon_sym___alignof__] = ACTIONS(3241), - [anon_sym___alignof] = ACTIONS(3241), - [anon_sym__alignof] = ACTIONS(3241), - [anon_sym_alignof] = ACTIONS(3241), - [anon_sym__Alignof] = ACTIONS(3241), - [anon_sym_offsetof] = ACTIONS(3241), - [anon_sym__Generic] = ACTIONS(3241), - [anon_sym_asm] = ACTIONS(3241), - [anon_sym___asm__] = ACTIONS(3241), - [sym_number_literal] = ACTIONS(3243), - [anon_sym_L_SQUOTE] = ACTIONS(3243), - [anon_sym_u_SQUOTE] = ACTIONS(3243), - [anon_sym_U_SQUOTE] = ACTIONS(3243), - [anon_sym_u8_SQUOTE] = ACTIONS(3243), - [anon_sym_SQUOTE] = ACTIONS(3243), - [anon_sym_L_DQUOTE] = ACTIONS(3243), - [anon_sym_u_DQUOTE] = ACTIONS(3243), - [anon_sym_U_DQUOTE] = ACTIONS(3243), - [anon_sym_u8_DQUOTE] = ACTIONS(3243), - [anon_sym_DQUOTE] = ACTIONS(3243), - [sym_true] = ACTIONS(3241), - [sym_false] = ACTIONS(3241), - [anon_sym_NULL] = ACTIONS(3241), - [anon_sym_nullptr] = ACTIONS(3241), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3241), - [anon_sym_decltype] = ACTIONS(3241), - [anon_sym_virtual] = ACTIONS(3241), - [anon_sym_alignas] = ACTIONS(3241), - [anon_sym_typename] = ACTIONS(3241), - [anon_sym_template] = ACTIONS(3241), - [anon_sym_try] = ACTIONS(3241), - [anon_sym_delete] = ACTIONS(3241), - [anon_sym_throw] = ACTIONS(3241), - [anon_sym_co_return] = ACTIONS(3241), - [anon_sym_co_yield] = ACTIONS(3241), - [anon_sym_R_DQUOTE] = ACTIONS(3243), - [anon_sym_LR_DQUOTE] = ACTIONS(3243), - [anon_sym_uR_DQUOTE] = ACTIONS(3243), - [anon_sym_UR_DQUOTE] = ACTIONS(3243), - [anon_sym_u8R_DQUOTE] = ACTIONS(3243), - [anon_sym_co_await] = ACTIONS(3241), - [anon_sym_new] = ACTIONS(3241), - [anon_sym_requires] = ACTIONS(3241), - [sym_this] = ACTIONS(3241), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3243), - [sym_semgrep_named_ellipsis] = ACTIONS(3243), + [1012] = { + [sym_expression_statement] = STATE(2824), + [sym_expression] = STATE(5227), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9936), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_type_requirement] = STATE(2824), + [sym_compound_requirement] = STATE(2824), + [sym_requirement] = STATE(1009), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_requirement_seq_repeat1] = STATE(1009), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4675), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_typename] = ACTIONS(4537), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [986] = { - [sym_identifier] = ACTIONS(3179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3181), - [anon_sym_LPAREN2] = ACTIONS(3181), - [anon_sym_BANG] = ACTIONS(3181), - [anon_sym_TILDE] = ACTIONS(3181), - [anon_sym_DASH] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_STAR] = ACTIONS(3181), - [anon_sym_AMP] = ACTIONS(3181), - [anon_sym_SEMI] = ACTIONS(3181), - [anon_sym___extension__] = ACTIONS(3179), - [anon_sym_typedef] = ACTIONS(3179), - [anon_sym_extern] = ACTIONS(3179), - [anon_sym___attribute__] = ACTIONS(3179), - [anon_sym_COLON_COLON] = ACTIONS(3181), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3181), - [anon_sym___declspec] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3181), - [anon_sym_signed] = ACTIONS(3179), - [anon_sym_unsigned] = ACTIONS(3179), - [anon_sym_long] = ACTIONS(3179), - [anon_sym_short] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_static] = ACTIONS(3179), - [anon_sym_register] = ACTIONS(3179), - [anon_sym_inline] = ACTIONS(3179), - [anon_sym___inline] = ACTIONS(3179), - [anon_sym___inline__] = ACTIONS(3179), - [anon_sym___forceinline] = ACTIONS(3179), - [anon_sym_thread_local] = ACTIONS(3179), - [anon_sym___thread] = ACTIONS(3179), - [anon_sym_const] = ACTIONS(3179), - [anon_sym_constexpr] = ACTIONS(3179), - [anon_sym_volatile] = ACTIONS(3179), - [anon_sym_restrict] = ACTIONS(3179), - [anon_sym___restrict__] = ACTIONS(3179), - [anon_sym__Atomic] = ACTIONS(3179), - [anon_sym__Noreturn] = ACTIONS(3179), - [anon_sym_noreturn] = ACTIONS(3179), - [anon_sym_mutable] = ACTIONS(3179), - [anon_sym_constinit] = ACTIONS(3179), - [anon_sym_consteval] = ACTIONS(3179), - [sym_primitive_type] = ACTIONS(3179), - [anon_sym_enum] = ACTIONS(3179), - [anon_sym_class] = ACTIONS(3179), - [anon_sym_struct] = ACTIONS(3179), - [anon_sym_union] = ACTIONS(3179), - [anon_sym_if] = ACTIONS(3179), - [anon_sym_else] = ACTIONS(3179), - [anon_sym_switch] = ACTIONS(3179), - [anon_sym_while] = ACTIONS(3179), - [anon_sym_do] = ACTIONS(3179), - [anon_sym_for] = ACTIONS(3179), - [anon_sym_return] = ACTIONS(3179), - [anon_sym_break] = ACTIONS(3179), - [anon_sym_continue] = ACTIONS(3179), - [anon_sym_goto] = ACTIONS(3179), - [anon_sym___try] = ACTIONS(3179), - [anon_sym___leave] = ACTIONS(3179), - [anon_sym_not] = ACTIONS(3179), - [anon_sym_compl] = ACTIONS(3179), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_sizeof] = ACTIONS(3179), - [anon_sym___alignof__] = ACTIONS(3179), - [anon_sym___alignof] = ACTIONS(3179), - [anon_sym__alignof] = ACTIONS(3179), - [anon_sym_alignof] = ACTIONS(3179), - [anon_sym__Alignof] = ACTIONS(3179), - [anon_sym_offsetof] = ACTIONS(3179), - [anon_sym__Generic] = ACTIONS(3179), - [anon_sym_asm] = ACTIONS(3179), - [anon_sym___asm__] = ACTIONS(3179), - [sym_number_literal] = ACTIONS(3181), - [anon_sym_L_SQUOTE] = ACTIONS(3181), - [anon_sym_u_SQUOTE] = ACTIONS(3181), - [anon_sym_U_SQUOTE] = ACTIONS(3181), - [anon_sym_u8_SQUOTE] = ACTIONS(3181), - [anon_sym_SQUOTE] = ACTIONS(3181), - [anon_sym_L_DQUOTE] = ACTIONS(3181), - [anon_sym_u_DQUOTE] = ACTIONS(3181), - [anon_sym_U_DQUOTE] = ACTIONS(3181), - [anon_sym_u8_DQUOTE] = ACTIONS(3181), - [anon_sym_DQUOTE] = ACTIONS(3181), - [sym_true] = ACTIONS(3179), - [sym_false] = ACTIONS(3179), - [anon_sym_NULL] = ACTIONS(3179), - [anon_sym_nullptr] = ACTIONS(3179), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3179), - [anon_sym_decltype] = ACTIONS(3179), - [anon_sym_virtual] = ACTIONS(3179), - [anon_sym_alignas] = ACTIONS(3179), - [anon_sym_typename] = ACTIONS(3179), - [anon_sym_template] = ACTIONS(3179), - [anon_sym_try] = ACTIONS(3179), - [anon_sym_delete] = ACTIONS(3179), - [anon_sym_throw] = ACTIONS(3179), - [anon_sym_co_return] = ACTIONS(3179), - [anon_sym_co_yield] = ACTIONS(3179), - [anon_sym_R_DQUOTE] = ACTIONS(3181), - [anon_sym_LR_DQUOTE] = ACTIONS(3181), - [anon_sym_uR_DQUOTE] = ACTIONS(3181), - [anon_sym_UR_DQUOTE] = ACTIONS(3181), - [anon_sym_u8R_DQUOTE] = ACTIONS(3181), - [anon_sym_co_await] = ACTIONS(3179), - [anon_sym_new] = ACTIONS(3179), - [anon_sym_requires] = ACTIONS(3179), - [sym_this] = ACTIONS(3179), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3181), - [sym_semgrep_named_ellipsis] = ACTIONS(3181), + [1013] = { + [sym_expression_statement] = STATE(2824), + [sym_expression] = STATE(5227), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9936), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_type_requirement] = STATE(2824), + [sym_compound_requirement] = STATE(2824), + [sym_requirement] = STATE(1014), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_requirement_seq_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4677), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_typename] = ACTIONS(4537), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [987] = { - [sym_identifier] = ACTIONS(3235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3237), - [anon_sym_LPAREN2] = ACTIONS(3237), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_TILDE] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3235), - [anon_sym_STAR] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3237), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym___extension__] = ACTIONS(3235), - [anon_sym_typedef] = ACTIONS(3235), - [anon_sym_extern] = ACTIONS(3235), - [anon_sym___attribute__] = ACTIONS(3235), - [anon_sym_COLON_COLON] = ACTIONS(3237), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3237), - [anon_sym___declspec] = ACTIONS(3235), - [anon_sym_LBRACE] = ACTIONS(3237), - [anon_sym_signed] = ACTIONS(3235), - [anon_sym_unsigned] = ACTIONS(3235), - [anon_sym_long] = ACTIONS(3235), - [anon_sym_short] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3235), - [anon_sym_static] = ACTIONS(3235), - [anon_sym_register] = ACTIONS(3235), - [anon_sym_inline] = ACTIONS(3235), - [anon_sym___inline] = ACTIONS(3235), - [anon_sym___inline__] = ACTIONS(3235), - [anon_sym___forceinline] = ACTIONS(3235), - [anon_sym_thread_local] = ACTIONS(3235), - [anon_sym___thread] = ACTIONS(3235), - [anon_sym_const] = ACTIONS(3235), - [anon_sym_constexpr] = ACTIONS(3235), - [anon_sym_volatile] = ACTIONS(3235), - [anon_sym_restrict] = ACTIONS(3235), - [anon_sym___restrict__] = ACTIONS(3235), - [anon_sym__Atomic] = ACTIONS(3235), - [anon_sym__Noreturn] = ACTIONS(3235), - [anon_sym_noreturn] = ACTIONS(3235), - [anon_sym_mutable] = ACTIONS(3235), - [anon_sym_constinit] = ACTIONS(3235), - [anon_sym_consteval] = ACTIONS(3235), - [sym_primitive_type] = ACTIONS(3235), - [anon_sym_enum] = ACTIONS(3235), - [anon_sym_class] = ACTIONS(3235), - [anon_sym_struct] = ACTIONS(3235), - [anon_sym_union] = ACTIONS(3235), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_else] = ACTIONS(3235), - [anon_sym_switch] = ACTIONS(3235), - [anon_sym_while] = ACTIONS(3235), - [anon_sym_do] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_return] = ACTIONS(3235), - [anon_sym_break] = ACTIONS(3235), - [anon_sym_continue] = ACTIONS(3235), - [anon_sym_goto] = ACTIONS(3235), - [anon_sym___try] = ACTIONS(3235), - [anon_sym___leave] = ACTIONS(3235), - [anon_sym_not] = ACTIONS(3235), - [anon_sym_compl] = ACTIONS(3235), - [anon_sym_DASH_DASH] = ACTIONS(3237), - [anon_sym_PLUS_PLUS] = ACTIONS(3237), - [anon_sym_sizeof] = ACTIONS(3235), - [anon_sym___alignof__] = ACTIONS(3235), - [anon_sym___alignof] = ACTIONS(3235), - [anon_sym__alignof] = ACTIONS(3235), - [anon_sym_alignof] = ACTIONS(3235), - [anon_sym__Alignof] = ACTIONS(3235), - [anon_sym_offsetof] = ACTIONS(3235), - [anon_sym__Generic] = ACTIONS(3235), - [anon_sym_asm] = ACTIONS(3235), - [anon_sym___asm__] = ACTIONS(3235), - [sym_number_literal] = ACTIONS(3237), - [anon_sym_L_SQUOTE] = ACTIONS(3237), - [anon_sym_u_SQUOTE] = ACTIONS(3237), - [anon_sym_U_SQUOTE] = ACTIONS(3237), - [anon_sym_u8_SQUOTE] = ACTIONS(3237), - [anon_sym_SQUOTE] = ACTIONS(3237), - [anon_sym_L_DQUOTE] = ACTIONS(3237), - [anon_sym_u_DQUOTE] = ACTIONS(3237), - [anon_sym_U_DQUOTE] = ACTIONS(3237), - [anon_sym_u8_DQUOTE] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(3237), - [sym_true] = ACTIONS(3235), - [sym_false] = ACTIONS(3235), - [anon_sym_NULL] = ACTIONS(3235), - [anon_sym_nullptr] = ACTIONS(3235), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3235), - [anon_sym_decltype] = ACTIONS(3235), - [anon_sym_virtual] = ACTIONS(3235), - [anon_sym_alignas] = ACTIONS(3235), - [anon_sym_typename] = ACTIONS(3235), - [anon_sym_template] = ACTIONS(3235), - [anon_sym_try] = ACTIONS(3235), - [anon_sym_delete] = ACTIONS(3235), - [anon_sym_throw] = ACTIONS(3235), - [anon_sym_co_return] = ACTIONS(3235), - [anon_sym_co_yield] = ACTIONS(3235), - [anon_sym_R_DQUOTE] = ACTIONS(3237), - [anon_sym_LR_DQUOTE] = ACTIONS(3237), - [anon_sym_uR_DQUOTE] = ACTIONS(3237), - [anon_sym_UR_DQUOTE] = ACTIONS(3237), - [anon_sym_u8R_DQUOTE] = ACTIONS(3237), - [anon_sym_co_await] = ACTIONS(3235), - [anon_sym_new] = ACTIONS(3235), - [anon_sym_requires] = ACTIONS(3235), - [sym_this] = ACTIONS(3235), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3237), - [sym_semgrep_named_ellipsis] = ACTIONS(3237), + [1014] = { + [sym_expression_statement] = STATE(2824), + [sym_expression] = STATE(5227), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9936), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_type_requirement] = STATE(2824), + [sym_compound_requirement] = STATE(2824), + [sym_requirement] = STATE(1009), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_requirement_seq_repeat1] = STATE(1009), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4679), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_typename] = ACTIONS(4537), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [988] = { - [sym_identifier] = ACTIONS(3231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3233), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(3233), - [anon_sym_TILDE] = ACTIONS(3233), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3233), - [anon_sym_AMP] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym___extension__] = ACTIONS(3231), - [anon_sym_typedef] = ACTIONS(3231), - [anon_sym_extern] = ACTIONS(3231), - [anon_sym___attribute__] = ACTIONS(3231), - [anon_sym_COLON_COLON] = ACTIONS(3233), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3233), - [anon_sym___declspec] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_signed] = ACTIONS(3231), - [anon_sym_unsigned] = ACTIONS(3231), - [anon_sym_long] = ACTIONS(3231), - [anon_sym_short] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_static] = ACTIONS(3231), - [anon_sym_register] = ACTIONS(3231), - [anon_sym_inline] = ACTIONS(3231), - [anon_sym___inline] = ACTIONS(3231), - [anon_sym___inline__] = ACTIONS(3231), - [anon_sym___forceinline] = ACTIONS(3231), - [anon_sym_thread_local] = ACTIONS(3231), - [anon_sym___thread] = ACTIONS(3231), - [anon_sym_const] = ACTIONS(3231), - [anon_sym_constexpr] = ACTIONS(3231), - [anon_sym_volatile] = ACTIONS(3231), - [anon_sym_restrict] = ACTIONS(3231), - [anon_sym___restrict__] = ACTIONS(3231), - [anon_sym__Atomic] = ACTIONS(3231), - [anon_sym__Noreturn] = ACTIONS(3231), - [anon_sym_noreturn] = ACTIONS(3231), - [anon_sym_mutable] = ACTIONS(3231), - [anon_sym_constinit] = ACTIONS(3231), - [anon_sym_consteval] = ACTIONS(3231), - [sym_primitive_type] = ACTIONS(3231), - [anon_sym_enum] = ACTIONS(3231), - [anon_sym_class] = ACTIONS(3231), - [anon_sym_struct] = ACTIONS(3231), - [anon_sym_union] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_else] = ACTIONS(3231), - [anon_sym_switch] = ACTIONS(3231), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_do] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_break] = ACTIONS(3231), - [anon_sym_continue] = ACTIONS(3231), - [anon_sym_goto] = ACTIONS(3231), - [anon_sym___try] = ACTIONS(3231), - [anon_sym___leave] = ACTIONS(3231), - [anon_sym_not] = ACTIONS(3231), - [anon_sym_compl] = ACTIONS(3231), - [anon_sym_DASH_DASH] = ACTIONS(3233), - [anon_sym_PLUS_PLUS] = ACTIONS(3233), - [anon_sym_sizeof] = ACTIONS(3231), - [anon_sym___alignof__] = ACTIONS(3231), - [anon_sym___alignof] = ACTIONS(3231), - [anon_sym__alignof] = ACTIONS(3231), - [anon_sym_alignof] = ACTIONS(3231), - [anon_sym__Alignof] = ACTIONS(3231), - [anon_sym_offsetof] = ACTIONS(3231), - [anon_sym__Generic] = ACTIONS(3231), - [anon_sym_asm] = ACTIONS(3231), - [anon_sym___asm__] = ACTIONS(3231), - [sym_number_literal] = ACTIONS(3233), - [anon_sym_L_SQUOTE] = ACTIONS(3233), - [anon_sym_u_SQUOTE] = ACTIONS(3233), - [anon_sym_U_SQUOTE] = ACTIONS(3233), - [anon_sym_u8_SQUOTE] = ACTIONS(3233), - [anon_sym_SQUOTE] = ACTIONS(3233), - [anon_sym_L_DQUOTE] = ACTIONS(3233), - [anon_sym_u_DQUOTE] = ACTIONS(3233), - [anon_sym_U_DQUOTE] = ACTIONS(3233), - [anon_sym_u8_DQUOTE] = ACTIONS(3233), - [anon_sym_DQUOTE] = ACTIONS(3233), - [sym_true] = ACTIONS(3231), - [sym_false] = ACTIONS(3231), - [anon_sym_NULL] = ACTIONS(3231), - [anon_sym_nullptr] = ACTIONS(3231), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3231), - [anon_sym_decltype] = ACTIONS(3231), - [anon_sym_virtual] = ACTIONS(3231), - [anon_sym_alignas] = ACTIONS(3231), - [anon_sym_typename] = ACTIONS(3231), - [anon_sym_template] = ACTIONS(3231), - [anon_sym_try] = ACTIONS(3231), - [anon_sym_delete] = ACTIONS(3231), - [anon_sym_throw] = ACTIONS(3231), - [anon_sym_co_return] = ACTIONS(3231), - [anon_sym_co_yield] = ACTIONS(3231), - [anon_sym_R_DQUOTE] = ACTIONS(3233), - [anon_sym_LR_DQUOTE] = ACTIONS(3233), - [anon_sym_uR_DQUOTE] = ACTIONS(3233), - [anon_sym_UR_DQUOTE] = ACTIONS(3233), - [anon_sym_u8R_DQUOTE] = ACTIONS(3233), - [anon_sym_co_await] = ACTIONS(3231), - [anon_sym_new] = ACTIONS(3231), - [anon_sym_requires] = ACTIONS(3231), - [sym_this] = ACTIONS(3231), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3233), - [sym_semgrep_named_ellipsis] = ACTIONS(3233), + [1015] = { + [sym_expression_statement] = STATE(2824), + [sym_expression] = STATE(5227), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9936), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_type_requirement] = STATE(2824), + [sym_compound_requirement] = STATE(2824), + [sym_requirement] = STATE(1016), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_requirement_seq_repeat1] = STATE(1016), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4681), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_typename] = ACTIONS(4537), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [989] = { - [sym_identifier] = ACTIONS(3175), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3177), - [anon_sym_LPAREN2] = ACTIONS(3177), - [anon_sym_BANG] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(3175), - [anon_sym_STAR] = ACTIONS(3177), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_SEMI] = ACTIONS(3177), - [anon_sym___extension__] = ACTIONS(3175), - [anon_sym_typedef] = ACTIONS(3175), - [anon_sym_extern] = ACTIONS(3175), - [anon_sym___attribute__] = ACTIONS(3175), - [anon_sym_COLON_COLON] = ACTIONS(3177), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3177), - [anon_sym___declspec] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_signed] = ACTIONS(3175), - [anon_sym_unsigned] = ACTIONS(3175), - [anon_sym_long] = ACTIONS(3175), - [anon_sym_short] = ACTIONS(3175), - [anon_sym_LBRACK] = ACTIONS(3175), - [anon_sym_static] = ACTIONS(3175), - [anon_sym_register] = ACTIONS(3175), - [anon_sym_inline] = ACTIONS(3175), - [anon_sym___inline] = ACTIONS(3175), - [anon_sym___inline__] = ACTIONS(3175), - [anon_sym___forceinline] = ACTIONS(3175), - [anon_sym_thread_local] = ACTIONS(3175), - [anon_sym___thread] = ACTIONS(3175), - [anon_sym_const] = ACTIONS(3175), - [anon_sym_constexpr] = ACTIONS(3175), - [anon_sym_volatile] = ACTIONS(3175), - [anon_sym_restrict] = ACTIONS(3175), - [anon_sym___restrict__] = ACTIONS(3175), - [anon_sym__Atomic] = ACTIONS(3175), - [anon_sym__Noreturn] = ACTIONS(3175), - [anon_sym_noreturn] = ACTIONS(3175), - [anon_sym_mutable] = ACTIONS(3175), - [anon_sym_constinit] = ACTIONS(3175), - [anon_sym_consteval] = ACTIONS(3175), - [sym_primitive_type] = ACTIONS(3175), - [anon_sym_enum] = ACTIONS(3175), - [anon_sym_class] = ACTIONS(3175), - [anon_sym_struct] = ACTIONS(3175), - [anon_sym_union] = ACTIONS(3175), - [anon_sym_if] = ACTIONS(3175), - [anon_sym_else] = ACTIONS(3175), - [anon_sym_switch] = ACTIONS(3175), - [anon_sym_while] = ACTIONS(3175), - [anon_sym_do] = ACTIONS(3175), - [anon_sym_for] = ACTIONS(3175), - [anon_sym_return] = ACTIONS(3175), - [anon_sym_break] = ACTIONS(3175), - [anon_sym_continue] = ACTIONS(3175), - [anon_sym_goto] = ACTIONS(3175), - [anon_sym___try] = ACTIONS(3175), - [anon_sym___leave] = ACTIONS(3175), - [anon_sym_not] = ACTIONS(3175), - [anon_sym_compl] = ACTIONS(3175), - [anon_sym_DASH_DASH] = ACTIONS(3177), - [anon_sym_PLUS_PLUS] = ACTIONS(3177), - [anon_sym_sizeof] = ACTIONS(3175), - [anon_sym___alignof__] = ACTIONS(3175), - [anon_sym___alignof] = ACTIONS(3175), - [anon_sym__alignof] = ACTIONS(3175), - [anon_sym_alignof] = ACTIONS(3175), - [anon_sym__Alignof] = ACTIONS(3175), - [anon_sym_offsetof] = ACTIONS(3175), - [anon_sym__Generic] = ACTIONS(3175), - [anon_sym_asm] = ACTIONS(3175), - [anon_sym___asm__] = ACTIONS(3175), - [sym_number_literal] = ACTIONS(3177), - [anon_sym_L_SQUOTE] = ACTIONS(3177), - [anon_sym_u_SQUOTE] = ACTIONS(3177), - [anon_sym_U_SQUOTE] = ACTIONS(3177), - [anon_sym_u8_SQUOTE] = ACTIONS(3177), - [anon_sym_SQUOTE] = ACTIONS(3177), - [anon_sym_L_DQUOTE] = ACTIONS(3177), - [anon_sym_u_DQUOTE] = ACTIONS(3177), - [anon_sym_U_DQUOTE] = ACTIONS(3177), - [anon_sym_u8_DQUOTE] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(3177), - [sym_true] = ACTIONS(3175), - [sym_false] = ACTIONS(3175), - [anon_sym_NULL] = ACTIONS(3175), - [anon_sym_nullptr] = ACTIONS(3175), + [1016] = { + [sym_expression_statement] = STATE(2824), + [sym_expression] = STATE(5227), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9936), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_type_requirement] = STATE(2824), + [sym_compound_requirement] = STATE(2824), + [sym_requirement] = STATE(1009), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_requirement_seq_repeat1] = STATE(1009), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4683), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3175), - [anon_sym_decltype] = ACTIONS(3175), - [anon_sym_virtual] = ACTIONS(3175), - [anon_sym_alignas] = ACTIONS(3175), - [anon_sym_typename] = ACTIONS(3175), - [anon_sym_template] = ACTIONS(3175), - [anon_sym_try] = ACTIONS(3175), - [anon_sym_delete] = ACTIONS(3175), - [anon_sym_throw] = ACTIONS(3175), - [anon_sym_co_return] = ACTIONS(3175), - [anon_sym_co_yield] = ACTIONS(3175), - [anon_sym_R_DQUOTE] = ACTIONS(3177), - [anon_sym_LR_DQUOTE] = ACTIONS(3177), - [anon_sym_uR_DQUOTE] = ACTIONS(3177), - [anon_sym_UR_DQUOTE] = ACTIONS(3177), - [anon_sym_u8R_DQUOTE] = ACTIONS(3177), - [anon_sym_co_await] = ACTIONS(3175), - [anon_sym_new] = ACTIONS(3175), - [anon_sym_requires] = ACTIONS(3175), - [sym_this] = ACTIONS(3175), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3177), - [sym_semgrep_named_ellipsis] = ACTIONS(3177), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_typename] = ACTIONS(4537), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [990] = { - [sym_identifier] = ACTIONS(3193), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3195), - [anon_sym_LPAREN2] = ACTIONS(3195), - [anon_sym_BANG] = ACTIONS(3195), - [anon_sym_TILDE] = ACTIONS(3195), - [anon_sym_DASH] = ACTIONS(3193), - [anon_sym_PLUS] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3195), - [anon_sym_SEMI] = ACTIONS(3195), - [anon_sym___extension__] = ACTIONS(3193), - [anon_sym_typedef] = ACTIONS(3193), - [anon_sym_extern] = ACTIONS(3193), - [anon_sym___attribute__] = ACTIONS(3193), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3195), - [anon_sym___declspec] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3195), - [anon_sym_signed] = ACTIONS(3193), - [anon_sym_unsigned] = ACTIONS(3193), - [anon_sym_long] = ACTIONS(3193), - [anon_sym_short] = ACTIONS(3193), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_static] = ACTIONS(3193), - [anon_sym_register] = ACTIONS(3193), - [anon_sym_inline] = ACTIONS(3193), - [anon_sym___inline] = ACTIONS(3193), - [anon_sym___inline__] = ACTIONS(3193), - [anon_sym___forceinline] = ACTIONS(3193), - [anon_sym_thread_local] = ACTIONS(3193), - [anon_sym___thread] = ACTIONS(3193), - [anon_sym_const] = ACTIONS(3193), - [anon_sym_constexpr] = ACTIONS(3193), - [anon_sym_volatile] = ACTIONS(3193), - [anon_sym_restrict] = ACTIONS(3193), - [anon_sym___restrict__] = ACTIONS(3193), - [anon_sym__Atomic] = ACTIONS(3193), - [anon_sym__Noreturn] = ACTIONS(3193), - [anon_sym_noreturn] = ACTIONS(3193), - [anon_sym_mutable] = ACTIONS(3193), - [anon_sym_constinit] = ACTIONS(3193), - [anon_sym_consteval] = ACTIONS(3193), - [sym_primitive_type] = ACTIONS(3193), - [anon_sym_enum] = ACTIONS(3193), - [anon_sym_class] = ACTIONS(3193), - [anon_sym_struct] = ACTIONS(3193), - [anon_sym_union] = ACTIONS(3193), - [anon_sym_if] = ACTIONS(3193), - [anon_sym_else] = ACTIONS(3193), - [anon_sym_switch] = ACTIONS(3193), - [anon_sym_while] = ACTIONS(3193), - [anon_sym_do] = ACTIONS(3193), - [anon_sym_for] = ACTIONS(3193), - [anon_sym_return] = ACTIONS(3193), - [anon_sym_break] = ACTIONS(3193), - [anon_sym_continue] = ACTIONS(3193), - [anon_sym_goto] = ACTIONS(3193), - [anon_sym___try] = ACTIONS(3193), - [anon_sym___leave] = ACTIONS(3193), - [anon_sym_not] = ACTIONS(3193), - [anon_sym_compl] = ACTIONS(3193), - [anon_sym_DASH_DASH] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_sizeof] = ACTIONS(3193), - [anon_sym___alignof__] = ACTIONS(3193), - [anon_sym___alignof] = ACTIONS(3193), - [anon_sym__alignof] = ACTIONS(3193), - [anon_sym_alignof] = ACTIONS(3193), - [anon_sym__Alignof] = ACTIONS(3193), - [anon_sym_offsetof] = ACTIONS(3193), - [anon_sym__Generic] = ACTIONS(3193), - [anon_sym_asm] = ACTIONS(3193), - [anon_sym___asm__] = ACTIONS(3193), - [sym_number_literal] = ACTIONS(3195), - [anon_sym_L_SQUOTE] = ACTIONS(3195), - [anon_sym_u_SQUOTE] = ACTIONS(3195), - [anon_sym_U_SQUOTE] = ACTIONS(3195), - [anon_sym_u8_SQUOTE] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(3195), - [anon_sym_L_DQUOTE] = ACTIONS(3195), - [anon_sym_u_DQUOTE] = ACTIONS(3195), - [anon_sym_U_DQUOTE] = ACTIONS(3195), - [anon_sym_u8_DQUOTE] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(3195), - [sym_true] = ACTIONS(3193), - [sym_false] = ACTIONS(3193), - [anon_sym_NULL] = ACTIONS(3193), - [anon_sym_nullptr] = ACTIONS(3193), + [1017] = { + [sym_expression] = STATE(5066), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8341), + [sym_initializer_pair] = STATE(8341), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(5245), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [sym_identifier] = ACTIONS(4521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_COMMA] = ACTIONS(4685), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_RBRACE] = ACTIONS(4687), + [anon_sym_LBRACK] = ACTIONS(4527), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(229), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3193), - [anon_sym_decltype] = ACTIONS(3193), - [anon_sym_virtual] = ACTIONS(3193), - [anon_sym_alignas] = ACTIONS(3193), - [anon_sym_typename] = ACTIONS(3193), - [anon_sym_template] = ACTIONS(3193), - [anon_sym_try] = ACTIONS(3193), - [anon_sym_delete] = ACTIONS(3193), - [anon_sym_throw] = ACTIONS(3193), - [anon_sym_co_return] = ACTIONS(3193), - [anon_sym_co_yield] = ACTIONS(3193), - [anon_sym_R_DQUOTE] = ACTIONS(3195), - [anon_sym_LR_DQUOTE] = ACTIONS(3195), - [anon_sym_uR_DQUOTE] = ACTIONS(3195), - [anon_sym_UR_DQUOTE] = ACTIONS(3195), - [anon_sym_u8R_DQUOTE] = ACTIONS(3195), - [anon_sym_co_await] = ACTIONS(3193), - [anon_sym_new] = ACTIONS(3193), - [anon_sym_requires] = ACTIONS(3193), - [sym_this] = ACTIONS(3193), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3195), - [sym_semgrep_named_ellipsis] = ACTIONS(3195), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [991] = { - [sym_identifier] = ACTIONS(3215), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3217), - [anon_sym_LPAREN2] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_STAR] = ACTIONS(3217), - [anon_sym_AMP] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym___extension__] = ACTIONS(3215), - [anon_sym_typedef] = ACTIONS(3215), - [anon_sym_extern] = ACTIONS(3215), - [anon_sym___attribute__] = ACTIONS(3215), - [anon_sym_COLON_COLON] = ACTIONS(3217), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3217), - [anon_sym___declspec] = ACTIONS(3215), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_signed] = ACTIONS(3215), - [anon_sym_unsigned] = ACTIONS(3215), - [anon_sym_long] = ACTIONS(3215), - [anon_sym_short] = ACTIONS(3215), - [anon_sym_LBRACK] = ACTIONS(3215), - [anon_sym_static] = ACTIONS(3215), - [anon_sym_register] = ACTIONS(3215), - [anon_sym_inline] = ACTIONS(3215), - [anon_sym___inline] = ACTIONS(3215), - [anon_sym___inline__] = ACTIONS(3215), - [anon_sym___forceinline] = ACTIONS(3215), - [anon_sym_thread_local] = ACTIONS(3215), - [anon_sym___thread] = ACTIONS(3215), - [anon_sym_const] = ACTIONS(3215), - [anon_sym_constexpr] = ACTIONS(3215), - [anon_sym_volatile] = ACTIONS(3215), - [anon_sym_restrict] = ACTIONS(3215), - [anon_sym___restrict__] = ACTIONS(3215), - [anon_sym__Atomic] = ACTIONS(3215), - [anon_sym__Noreturn] = ACTIONS(3215), - [anon_sym_noreturn] = ACTIONS(3215), - [anon_sym_mutable] = ACTIONS(3215), - [anon_sym_constinit] = ACTIONS(3215), - [anon_sym_consteval] = ACTIONS(3215), - [sym_primitive_type] = ACTIONS(3215), - [anon_sym_enum] = ACTIONS(3215), - [anon_sym_class] = ACTIONS(3215), - [anon_sym_struct] = ACTIONS(3215), - [anon_sym_union] = ACTIONS(3215), - [anon_sym_if] = ACTIONS(3215), - [anon_sym_else] = ACTIONS(3215), - [anon_sym_switch] = ACTIONS(3215), - [anon_sym_while] = ACTIONS(3215), - [anon_sym_do] = ACTIONS(3215), - [anon_sym_for] = ACTIONS(3215), - [anon_sym_return] = ACTIONS(3215), - [anon_sym_break] = ACTIONS(3215), - [anon_sym_continue] = ACTIONS(3215), - [anon_sym_goto] = ACTIONS(3215), - [anon_sym___try] = ACTIONS(3215), - [anon_sym___leave] = ACTIONS(3215), - [anon_sym_not] = ACTIONS(3215), - [anon_sym_compl] = ACTIONS(3215), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_sizeof] = ACTIONS(3215), - [anon_sym___alignof__] = ACTIONS(3215), - [anon_sym___alignof] = ACTIONS(3215), - [anon_sym__alignof] = ACTIONS(3215), - [anon_sym_alignof] = ACTIONS(3215), - [anon_sym__Alignof] = ACTIONS(3215), - [anon_sym_offsetof] = ACTIONS(3215), - [anon_sym__Generic] = ACTIONS(3215), - [anon_sym_asm] = ACTIONS(3215), - [anon_sym___asm__] = ACTIONS(3215), - [sym_number_literal] = ACTIONS(3217), - [anon_sym_L_SQUOTE] = ACTIONS(3217), - [anon_sym_u_SQUOTE] = ACTIONS(3217), - [anon_sym_U_SQUOTE] = ACTIONS(3217), - [anon_sym_u8_SQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_L_DQUOTE] = ACTIONS(3217), - [anon_sym_u_DQUOTE] = ACTIONS(3217), - [anon_sym_U_DQUOTE] = ACTIONS(3217), - [anon_sym_u8_DQUOTE] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [sym_true] = ACTIONS(3215), - [sym_false] = ACTIONS(3215), - [anon_sym_NULL] = ACTIONS(3215), - [anon_sym_nullptr] = ACTIONS(3215), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3215), - [anon_sym_decltype] = ACTIONS(3215), - [anon_sym_virtual] = ACTIONS(3215), - [anon_sym_alignas] = ACTIONS(3215), - [anon_sym_typename] = ACTIONS(3215), - [anon_sym_template] = ACTIONS(3215), - [anon_sym_try] = ACTIONS(3215), - [anon_sym_delete] = ACTIONS(3215), - [anon_sym_throw] = ACTIONS(3215), - [anon_sym_co_return] = ACTIONS(3215), - [anon_sym_co_yield] = ACTIONS(3215), - [anon_sym_R_DQUOTE] = ACTIONS(3217), - [anon_sym_LR_DQUOTE] = ACTIONS(3217), - [anon_sym_uR_DQUOTE] = ACTIONS(3217), - [anon_sym_UR_DQUOTE] = ACTIONS(3217), - [anon_sym_u8R_DQUOTE] = ACTIONS(3217), - [anon_sym_co_await] = ACTIONS(3215), - [anon_sym_new] = ACTIONS(3215), - [anon_sym_requires] = ACTIONS(3215), - [sym_this] = ACTIONS(3215), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3217), - [sym_semgrep_named_ellipsis] = ACTIONS(3217), + [1018] = { + [sym_expression_statement] = STATE(2824), + [sym_expression] = STATE(5227), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9936), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_type_requirement] = STATE(2824), + [sym_compound_requirement] = STATE(2824), + [sym_requirement] = STATE(1019), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_requirement_seq_repeat1] = STATE(1019), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4689), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_typename] = ACTIONS(4537), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [992] = { - [sym_identifier] = ACTIONS(3183), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3185), - [anon_sym_LPAREN2] = ACTIONS(3185), - [anon_sym_BANG] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3183), - [anon_sym_PLUS] = ACTIONS(3183), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_AMP] = ACTIONS(3185), - [anon_sym_SEMI] = ACTIONS(3185), - [anon_sym___extension__] = ACTIONS(3183), - [anon_sym_typedef] = ACTIONS(3183), - [anon_sym_extern] = ACTIONS(3183), - [anon_sym___attribute__] = ACTIONS(3183), - [anon_sym_COLON_COLON] = ACTIONS(3185), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3185), - [anon_sym___declspec] = ACTIONS(3183), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_signed] = ACTIONS(3183), - [anon_sym_unsigned] = ACTIONS(3183), - [anon_sym_long] = ACTIONS(3183), - [anon_sym_short] = ACTIONS(3183), - [anon_sym_LBRACK] = ACTIONS(3183), - [anon_sym_static] = ACTIONS(3183), - [anon_sym_register] = ACTIONS(3183), - [anon_sym_inline] = ACTIONS(3183), - [anon_sym___inline] = ACTIONS(3183), - [anon_sym___inline__] = ACTIONS(3183), - [anon_sym___forceinline] = ACTIONS(3183), - [anon_sym_thread_local] = ACTIONS(3183), - [anon_sym___thread] = ACTIONS(3183), - [anon_sym_const] = ACTIONS(3183), - [anon_sym_constexpr] = ACTIONS(3183), - [anon_sym_volatile] = ACTIONS(3183), - [anon_sym_restrict] = ACTIONS(3183), - [anon_sym___restrict__] = ACTIONS(3183), - [anon_sym__Atomic] = ACTIONS(3183), - [anon_sym__Noreturn] = ACTIONS(3183), - [anon_sym_noreturn] = ACTIONS(3183), - [anon_sym_mutable] = ACTIONS(3183), - [anon_sym_constinit] = ACTIONS(3183), - [anon_sym_consteval] = ACTIONS(3183), - [sym_primitive_type] = ACTIONS(3183), - [anon_sym_enum] = ACTIONS(3183), - [anon_sym_class] = ACTIONS(3183), - [anon_sym_struct] = ACTIONS(3183), - [anon_sym_union] = ACTIONS(3183), - [anon_sym_if] = ACTIONS(3183), - [anon_sym_else] = ACTIONS(3183), - [anon_sym_switch] = ACTIONS(3183), - [anon_sym_while] = ACTIONS(3183), - [anon_sym_do] = ACTIONS(3183), - [anon_sym_for] = ACTIONS(3183), - [anon_sym_return] = ACTIONS(3183), - [anon_sym_break] = ACTIONS(3183), - [anon_sym_continue] = ACTIONS(3183), - [anon_sym_goto] = ACTIONS(3183), - [anon_sym___try] = ACTIONS(3183), - [anon_sym___leave] = ACTIONS(3183), - [anon_sym_not] = ACTIONS(3183), - [anon_sym_compl] = ACTIONS(3183), - [anon_sym_DASH_DASH] = ACTIONS(3185), - [anon_sym_PLUS_PLUS] = ACTIONS(3185), - [anon_sym_sizeof] = ACTIONS(3183), - [anon_sym___alignof__] = ACTIONS(3183), - [anon_sym___alignof] = ACTIONS(3183), - [anon_sym__alignof] = ACTIONS(3183), - [anon_sym_alignof] = ACTIONS(3183), - [anon_sym__Alignof] = ACTIONS(3183), - [anon_sym_offsetof] = ACTIONS(3183), - [anon_sym__Generic] = ACTIONS(3183), - [anon_sym_asm] = ACTIONS(3183), - [anon_sym___asm__] = ACTIONS(3183), - [sym_number_literal] = ACTIONS(3185), - [anon_sym_L_SQUOTE] = ACTIONS(3185), - [anon_sym_u_SQUOTE] = ACTIONS(3185), - [anon_sym_U_SQUOTE] = ACTIONS(3185), - [anon_sym_u8_SQUOTE] = ACTIONS(3185), - [anon_sym_SQUOTE] = ACTIONS(3185), - [anon_sym_L_DQUOTE] = ACTIONS(3185), - [anon_sym_u_DQUOTE] = ACTIONS(3185), - [anon_sym_U_DQUOTE] = ACTIONS(3185), - [anon_sym_u8_DQUOTE] = ACTIONS(3185), - [anon_sym_DQUOTE] = ACTIONS(3185), - [sym_true] = ACTIONS(3183), - [sym_false] = ACTIONS(3183), - [anon_sym_NULL] = ACTIONS(3183), - [anon_sym_nullptr] = ACTIONS(3183), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3183), - [anon_sym_decltype] = ACTIONS(3183), - [anon_sym_virtual] = ACTIONS(3183), - [anon_sym_alignas] = ACTIONS(3183), - [anon_sym_typename] = ACTIONS(3183), - [anon_sym_template] = ACTIONS(3183), - [anon_sym_try] = ACTIONS(3183), - [anon_sym_delete] = ACTIONS(3183), - [anon_sym_throw] = ACTIONS(3183), - [anon_sym_co_return] = ACTIONS(3183), - [anon_sym_co_yield] = ACTIONS(3183), - [anon_sym_R_DQUOTE] = ACTIONS(3185), - [anon_sym_LR_DQUOTE] = ACTIONS(3185), - [anon_sym_uR_DQUOTE] = ACTIONS(3185), - [anon_sym_UR_DQUOTE] = ACTIONS(3185), - [anon_sym_u8R_DQUOTE] = ACTIONS(3185), - [anon_sym_co_await] = ACTIONS(3183), - [anon_sym_new] = ACTIONS(3183), - [anon_sym_requires] = ACTIONS(3183), - [sym_this] = ACTIONS(3183), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3185), - [sym_semgrep_named_ellipsis] = ACTIONS(3185), + [1019] = { + [sym_expression_statement] = STATE(2824), + [sym_expression] = STATE(5227), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9936), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_type_requirement] = STATE(2824), + [sym_compound_requirement] = STATE(2824), + [sym_requirement] = STATE(1009), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_requirement_seq_repeat1] = STATE(1009), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4691), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_typename] = ACTIONS(4537), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [993] = { - [sym_identifier] = ACTIONS(3197), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), - [anon_sym_LPAREN2] = ACTIONS(3199), - [anon_sym_BANG] = ACTIONS(3199), - [anon_sym_TILDE] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3199), - [anon_sym_AMP] = ACTIONS(3199), - [anon_sym_SEMI] = ACTIONS(3199), - [anon_sym___extension__] = ACTIONS(3197), - [anon_sym_typedef] = ACTIONS(3197), - [anon_sym_extern] = ACTIONS(3197), - [anon_sym___attribute__] = ACTIONS(3197), - [anon_sym_COLON_COLON] = ACTIONS(3199), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3199), - [anon_sym___declspec] = ACTIONS(3197), - [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_signed] = ACTIONS(3197), - [anon_sym_unsigned] = ACTIONS(3197), - [anon_sym_long] = ACTIONS(3197), - [anon_sym_short] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_static] = ACTIONS(3197), - [anon_sym_register] = ACTIONS(3197), - [anon_sym_inline] = ACTIONS(3197), - [anon_sym___inline] = ACTIONS(3197), - [anon_sym___inline__] = ACTIONS(3197), - [anon_sym___forceinline] = ACTIONS(3197), - [anon_sym_thread_local] = ACTIONS(3197), - [anon_sym___thread] = ACTIONS(3197), - [anon_sym_const] = ACTIONS(3197), - [anon_sym_constexpr] = ACTIONS(3197), - [anon_sym_volatile] = ACTIONS(3197), - [anon_sym_restrict] = ACTIONS(3197), - [anon_sym___restrict__] = ACTIONS(3197), - [anon_sym__Atomic] = ACTIONS(3197), - [anon_sym__Noreturn] = ACTIONS(3197), - [anon_sym_noreturn] = ACTIONS(3197), - [anon_sym_mutable] = ACTIONS(3197), - [anon_sym_constinit] = ACTIONS(3197), - [anon_sym_consteval] = ACTIONS(3197), - [sym_primitive_type] = ACTIONS(3197), - [anon_sym_enum] = ACTIONS(3197), - [anon_sym_class] = ACTIONS(3197), - [anon_sym_struct] = ACTIONS(3197), - [anon_sym_union] = ACTIONS(3197), - [anon_sym_if] = ACTIONS(3197), - [anon_sym_else] = ACTIONS(3197), - [anon_sym_switch] = ACTIONS(3197), - [anon_sym_while] = ACTIONS(3197), - [anon_sym_do] = ACTIONS(3197), - [anon_sym_for] = ACTIONS(3197), - [anon_sym_return] = ACTIONS(3197), - [anon_sym_break] = ACTIONS(3197), - [anon_sym_continue] = ACTIONS(3197), - [anon_sym_goto] = ACTIONS(3197), - [anon_sym___try] = ACTIONS(3197), - [anon_sym___leave] = ACTIONS(3197), - [anon_sym_not] = ACTIONS(3197), - [anon_sym_compl] = ACTIONS(3197), - [anon_sym_DASH_DASH] = ACTIONS(3199), - [anon_sym_PLUS_PLUS] = ACTIONS(3199), - [anon_sym_sizeof] = ACTIONS(3197), - [anon_sym___alignof__] = ACTIONS(3197), - [anon_sym___alignof] = ACTIONS(3197), - [anon_sym__alignof] = ACTIONS(3197), - [anon_sym_alignof] = ACTIONS(3197), - [anon_sym__Alignof] = ACTIONS(3197), - [anon_sym_offsetof] = ACTIONS(3197), - [anon_sym__Generic] = ACTIONS(3197), - [anon_sym_asm] = ACTIONS(3197), - [anon_sym___asm__] = ACTIONS(3197), - [sym_number_literal] = ACTIONS(3199), - [anon_sym_L_SQUOTE] = ACTIONS(3199), - [anon_sym_u_SQUOTE] = ACTIONS(3199), - [anon_sym_U_SQUOTE] = ACTIONS(3199), - [anon_sym_u8_SQUOTE] = ACTIONS(3199), - [anon_sym_SQUOTE] = ACTIONS(3199), - [anon_sym_L_DQUOTE] = ACTIONS(3199), - [anon_sym_u_DQUOTE] = ACTIONS(3199), - [anon_sym_U_DQUOTE] = ACTIONS(3199), - [anon_sym_u8_DQUOTE] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym_true] = ACTIONS(3197), - [sym_false] = ACTIONS(3197), - [anon_sym_NULL] = ACTIONS(3197), - [anon_sym_nullptr] = ACTIONS(3197), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3197), - [anon_sym_decltype] = ACTIONS(3197), - [anon_sym_virtual] = ACTIONS(3197), - [anon_sym_alignas] = ACTIONS(3197), - [anon_sym_typename] = ACTIONS(3197), - [anon_sym_template] = ACTIONS(3197), - [anon_sym_try] = ACTIONS(3197), - [anon_sym_delete] = ACTIONS(3197), - [anon_sym_throw] = ACTIONS(3197), - [anon_sym_co_return] = ACTIONS(3197), - [anon_sym_co_yield] = ACTIONS(3197), - [anon_sym_R_DQUOTE] = ACTIONS(3199), - [anon_sym_LR_DQUOTE] = ACTIONS(3199), - [anon_sym_uR_DQUOTE] = ACTIONS(3199), - [anon_sym_UR_DQUOTE] = ACTIONS(3199), - [anon_sym_u8R_DQUOTE] = ACTIONS(3199), - [anon_sym_co_await] = ACTIONS(3197), - [anon_sym_new] = ACTIONS(3197), - [anon_sym_requires] = ACTIONS(3197), - [sym_this] = ACTIONS(3197), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3199), - [sym_semgrep_named_ellipsis] = ACTIONS(3199), + [1020] = { + [sym_expression] = STATE(5021), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8275), + [sym_initializer_pair] = STATE(8275), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(5245), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [sym_identifier] = ACTIONS(4521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_COMMA] = ACTIONS(4693), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_RBRACE] = ACTIONS(4695), + [anon_sym_LBRACK] = ACTIONS(4527), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(229), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [994] = { - [sym_identifier] = ACTIONS(3105), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3107), - [anon_sym_LPAREN2] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3107), - [anon_sym_TILDE] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(3105), - [anon_sym_PLUS] = ACTIONS(3105), - [anon_sym_STAR] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3107), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym___extension__] = ACTIONS(3105), - [anon_sym_typedef] = ACTIONS(3105), - [anon_sym_extern] = ACTIONS(3105), - [anon_sym___attribute__] = ACTIONS(3105), - [anon_sym_COLON_COLON] = ACTIONS(3107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3107), - [anon_sym___declspec] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(3107), - [anon_sym_signed] = ACTIONS(3105), - [anon_sym_unsigned] = ACTIONS(3105), - [anon_sym_long] = ACTIONS(3105), - [anon_sym_short] = ACTIONS(3105), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_static] = ACTIONS(3105), - [anon_sym_register] = ACTIONS(3105), - [anon_sym_inline] = ACTIONS(3105), - [anon_sym___inline] = ACTIONS(3105), - [anon_sym___inline__] = ACTIONS(3105), - [anon_sym___forceinline] = ACTIONS(3105), - [anon_sym_thread_local] = ACTIONS(3105), - [anon_sym___thread] = ACTIONS(3105), - [anon_sym_const] = ACTIONS(3105), - [anon_sym_constexpr] = ACTIONS(3105), - [anon_sym_volatile] = ACTIONS(3105), - [anon_sym_restrict] = ACTIONS(3105), - [anon_sym___restrict__] = ACTIONS(3105), - [anon_sym__Atomic] = ACTIONS(3105), - [anon_sym__Noreturn] = ACTIONS(3105), - [anon_sym_noreturn] = ACTIONS(3105), - [anon_sym_mutable] = ACTIONS(3105), - [anon_sym_constinit] = ACTIONS(3105), - [anon_sym_consteval] = ACTIONS(3105), - [sym_primitive_type] = ACTIONS(3105), - [anon_sym_enum] = ACTIONS(3105), - [anon_sym_class] = ACTIONS(3105), - [anon_sym_struct] = ACTIONS(3105), - [anon_sym_union] = ACTIONS(3105), - [anon_sym_if] = ACTIONS(3105), - [anon_sym_else] = ACTIONS(3105), - [anon_sym_switch] = ACTIONS(3105), - [anon_sym_while] = ACTIONS(3105), - [anon_sym_do] = ACTIONS(3105), - [anon_sym_for] = ACTIONS(3105), - [anon_sym_return] = ACTIONS(3105), - [anon_sym_break] = ACTIONS(3105), - [anon_sym_continue] = ACTIONS(3105), - [anon_sym_goto] = ACTIONS(3105), - [anon_sym___try] = ACTIONS(3105), - [anon_sym___leave] = ACTIONS(3105), - [anon_sym_not] = ACTIONS(3105), - [anon_sym_compl] = ACTIONS(3105), - [anon_sym_DASH_DASH] = ACTIONS(3107), - [anon_sym_PLUS_PLUS] = ACTIONS(3107), - [anon_sym_sizeof] = ACTIONS(3105), - [anon_sym___alignof__] = ACTIONS(3105), - [anon_sym___alignof] = ACTIONS(3105), - [anon_sym__alignof] = ACTIONS(3105), - [anon_sym_alignof] = ACTIONS(3105), - [anon_sym__Alignof] = ACTIONS(3105), - [anon_sym_offsetof] = ACTIONS(3105), - [anon_sym__Generic] = ACTIONS(3105), - [anon_sym_asm] = ACTIONS(3105), - [anon_sym___asm__] = ACTIONS(3105), - [sym_number_literal] = ACTIONS(3107), - [anon_sym_L_SQUOTE] = ACTIONS(3107), - [anon_sym_u_SQUOTE] = ACTIONS(3107), - [anon_sym_U_SQUOTE] = ACTIONS(3107), - [anon_sym_u8_SQUOTE] = ACTIONS(3107), - [anon_sym_SQUOTE] = ACTIONS(3107), - [anon_sym_L_DQUOTE] = ACTIONS(3107), - [anon_sym_u_DQUOTE] = ACTIONS(3107), - [anon_sym_U_DQUOTE] = ACTIONS(3107), - [anon_sym_u8_DQUOTE] = ACTIONS(3107), - [anon_sym_DQUOTE] = ACTIONS(3107), - [sym_true] = ACTIONS(3105), - [sym_false] = ACTIONS(3105), - [anon_sym_NULL] = ACTIONS(3105), - [anon_sym_nullptr] = ACTIONS(3105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3105), - [anon_sym_decltype] = ACTIONS(3105), - [anon_sym_virtual] = ACTIONS(3105), - [anon_sym_alignas] = ACTIONS(3105), - [anon_sym_typename] = ACTIONS(3105), - [anon_sym_template] = ACTIONS(3105), - [anon_sym_try] = ACTIONS(3105), - [anon_sym_delete] = ACTIONS(3105), - [anon_sym_throw] = ACTIONS(3105), - [anon_sym_co_return] = ACTIONS(3105), - [anon_sym_co_yield] = ACTIONS(3105), - [anon_sym_R_DQUOTE] = ACTIONS(3107), - [anon_sym_LR_DQUOTE] = ACTIONS(3107), - [anon_sym_uR_DQUOTE] = ACTIONS(3107), - [anon_sym_UR_DQUOTE] = ACTIONS(3107), - [anon_sym_u8R_DQUOTE] = ACTIONS(3107), - [anon_sym_co_await] = ACTIONS(3105), - [anon_sym_new] = ACTIONS(3105), - [anon_sym_requires] = ACTIONS(3105), - [sym_this] = ACTIONS(3105), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3107), - [sym_semgrep_named_ellipsis] = ACTIONS(3107), + [1021] = { + [sym_expression_statement] = STATE(2824), + [sym_expression] = STATE(5227), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9936), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_type_requirement] = STATE(2824), + [sym_compound_requirement] = STATE(2824), + [sym_requirement] = STATE(1022), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_requirement_seq_repeat1] = STATE(1022), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4697), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_typename] = ACTIONS(4537), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [995] = { - [sym_identifier] = ACTIONS(3147), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3149), - [anon_sym_LPAREN2] = ACTIONS(3149), - [anon_sym_BANG] = ACTIONS(3149), - [anon_sym_TILDE] = ACTIONS(3149), - [anon_sym_DASH] = ACTIONS(3147), - [anon_sym_PLUS] = ACTIONS(3147), - [anon_sym_STAR] = ACTIONS(3149), - [anon_sym_AMP] = ACTIONS(3149), - [anon_sym_SEMI] = ACTIONS(3149), - [anon_sym___extension__] = ACTIONS(3147), - [anon_sym_typedef] = ACTIONS(3147), - [anon_sym_extern] = ACTIONS(3147), - [anon_sym___attribute__] = ACTIONS(3147), - [anon_sym_COLON_COLON] = ACTIONS(3149), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3149), - [anon_sym___declspec] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_signed] = ACTIONS(3147), - [anon_sym_unsigned] = ACTIONS(3147), - [anon_sym_long] = ACTIONS(3147), - [anon_sym_short] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3147), - [anon_sym_static] = ACTIONS(3147), - [anon_sym_register] = ACTIONS(3147), - [anon_sym_inline] = ACTIONS(3147), - [anon_sym___inline] = ACTIONS(3147), - [anon_sym___inline__] = ACTIONS(3147), - [anon_sym___forceinline] = ACTIONS(3147), - [anon_sym_thread_local] = ACTIONS(3147), - [anon_sym___thread] = ACTIONS(3147), - [anon_sym_const] = ACTIONS(3147), - [anon_sym_constexpr] = ACTIONS(3147), - [anon_sym_volatile] = ACTIONS(3147), - [anon_sym_restrict] = ACTIONS(3147), - [anon_sym___restrict__] = ACTIONS(3147), - [anon_sym__Atomic] = ACTIONS(3147), - [anon_sym__Noreturn] = ACTIONS(3147), - [anon_sym_noreturn] = ACTIONS(3147), - [anon_sym_mutable] = ACTIONS(3147), - [anon_sym_constinit] = ACTIONS(3147), - [anon_sym_consteval] = ACTIONS(3147), - [sym_primitive_type] = ACTIONS(3147), - [anon_sym_enum] = ACTIONS(3147), - [anon_sym_class] = ACTIONS(3147), - [anon_sym_struct] = ACTIONS(3147), - [anon_sym_union] = ACTIONS(3147), - [anon_sym_if] = ACTIONS(3147), - [anon_sym_else] = ACTIONS(3147), - [anon_sym_switch] = ACTIONS(3147), - [anon_sym_while] = ACTIONS(3147), - [anon_sym_do] = ACTIONS(3147), - [anon_sym_for] = ACTIONS(3147), - [anon_sym_return] = ACTIONS(3147), - [anon_sym_break] = ACTIONS(3147), - [anon_sym_continue] = ACTIONS(3147), - [anon_sym_goto] = ACTIONS(3147), - [anon_sym___try] = ACTIONS(3147), - [anon_sym___leave] = ACTIONS(3147), - [anon_sym_not] = ACTIONS(3147), - [anon_sym_compl] = ACTIONS(3147), - [anon_sym_DASH_DASH] = ACTIONS(3149), - [anon_sym_PLUS_PLUS] = ACTIONS(3149), - [anon_sym_sizeof] = ACTIONS(3147), - [anon_sym___alignof__] = ACTIONS(3147), - [anon_sym___alignof] = ACTIONS(3147), - [anon_sym__alignof] = ACTIONS(3147), - [anon_sym_alignof] = ACTIONS(3147), - [anon_sym__Alignof] = ACTIONS(3147), - [anon_sym_offsetof] = ACTIONS(3147), - [anon_sym__Generic] = ACTIONS(3147), - [anon_sym_asm] = ACTIONS(3147), - [anon_sym___asm__] = ACTIONS(3147), - [sym_number_literal] = ACTIONS(3149), - [anon_sym_L_SQUOTE] = ACTIONS(3149), - [anon_sym_u_SQUOTE] = ACTIONS(3149), - [anon_sym_U_SQUOTE] = ACTIONS(3149), - [anon_sym_u8_SQUOTE] = ACTIONS(3149), - [anon_sym_SQUOTE] = ACTIONS(3149), - [anon_sym_L_DQUOTE] = ACTIONS(3149), - [anon_sym_u_DQUOTE] = ACTIONS(3149), - [anon_sym_U_DQUOTE] = ACTIONS(3149), - [anon_sym_u8_DQUOTE] = ACTIONS(3149), - [anon_sym_DQUOTE] = ACTIONS(3149), - [sym_true] = ACTIONS(3147), - [sym_false] = ACTIONS(3147), - [anon_sym_NULL] = ACTIONS(3147), - [anon_sym_nullptr] = ACTIONS(3147), + [1022] = { + [sym_expression_statement] = STATE(2824), + [sym_expression] = STATE(5227), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9936), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_type_requirement] = STATE(2824), + [sym_compound_requirement] = STATE(2824), + [sym_requirement] = STATE(1009), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_requirement_seq_repeat1] = STATE(1009), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4699), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3147), - [anon_sym_decltype] = ACTIONS(3147), - [anon_sym_virtual] = ACTIONS(3147), - [anon_sym_alignas] = ACTIONS(3147), - [anon_sym_typename] = ACTIONS(3147), - [anon_sym_template] = ACTIONS(3147), - [anon_sym_try] = ACTIONS(3147), - [anon_sym_delete] = ACTIONS(3147), - [anon_sym_throw] = ACTIONS(3147), - [anon_sym_co_return] = ACTIONS(3147), - [anon_sym_co_yield] = ACTIONS(3147), - [anon_sym_R_DQUOTE] = ACTIONS(3149), - [anon_sym_LR_DQUOTE] = ACTIONS(3149), - [anon_sym_uR_DQUOTE] = ACTIONS(3149), - [anon_sym_UR_DQUOTE] = ACTIONS(3149), - [anon_sym_u8R_DQUOTE] = ACTIONS(3149), - [anon_sym_co_await] = ACTIONS(3147), - [anon_sym_new] = ACTIONS(3147), - [anon_sym_requires] = ACTIONS(3147), - [sym_this] = ACTIONS(3147), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3149), - [sym_semgrep_named_ellipsis] = ACTIONS(3149), - }, - [996] = { - [sym_identifier] = ACTIONS(3125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3127), - [anon_sym_LPAREN2] = ACTIONS(3127), - [anon_sym_BANG] = ACTIONS(3127), - [anon_sym_TILDE] = ACTIONS(3127), - [anon_sym_DASH] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(3127), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym___extension__] = ACTIONS(3125), - [anon_sym_typedef] = ACTIONS(3125), - [anon_sym_extern] = ACTIONS(3125), - [anon_sym___attribute__] = ACTIONS(3125), - [anon_sym_COLON_COLON] = ACTIONS(3127), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3127), - [anon_sym___declspec] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(3127), - [anon_sym_signed] = ACTIONS(3125), - [anon_sym_unsigned] = ACTIONS(3125), - [anon_sym_long] = ACTIONS(3125), - [anon_sym_short] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3125), - [anon_sym_static] = ACTIONS(3125), - [anon_sym_register] = ACTIONS(3125), - [anon_sym_inline] = ACTIONS(3125), - [anon_sym___inline] = ACTIONS(3125), - [anon_sym___inline__] = ACTIONS(3125), - [anon_sym___forceinline] = ACTIONS(3125), - [anon_sym_thread_local] = ACTIONS(3125), - [anon_sym___thread] = ACTIONS(3125), - [anon_sym_const] = ACTIONS(3125), - [anon_sym_constexpr] = ACTIONS(3125), - [anon_sym_volatile] = ACTIONS(3125), - [anon_sym_restrict] = ACTIONS(3125), - [anon_sym___restrict__] = ACTIONS(3125), - [anon_sym__Atomic] = ACTIONS(3125), - [anon_sym__Noreturn] = ACTIONS(3125), - [anon_sym_noreturn] = ACTIONS(3125), - [anon_sym_mutable] = ACTIONS(3125), - [anon_sym_constinit] = ACTIONS(3125), - [anon_sym_consteval] = ACTIONS(3125), - [sym_primitive_type] = ACTIONS(3125), - [anon_sym_enum] = ACTIONS(3125), - [anon_sym_class] = ACTIONS(3125), - [anon_sym_struct] = ACTIONS(3125), - [anon_sym_union] = ACTIONS(3125), - [anon_sym_if] = ACTIONS(3125), - [anon_sym_else] = ACTIONS(3125), - [anon_sym_switch] = ACTIONS(3125), - [anon_sym_while] = ACTIONS(3125), - [anon_sym_do] = ACTIONS(3125), - [anon_sym_for] = ACTIONS(3125), - [anon_sym_return] = ACTIONS(3125), - [anon_sym_break] = ACTIONS(3125), - [anon_sym_continue] = ACTIONS(3125), - [anon_sym_goto] = ACTIONS(3125), - [anon_sym___try] = ACTIONS(3125), - [anon_sym___leave] = ACTIONS(3125), - [anon_sym_not] = ACTIONS(3125), - [anon_sym_compl] = ACTIONS(3125), - [anon_sym_DASH_DASH] = ACTIONS(3127), - [anon_sym_PLUS_PLUS] = ACTIONS(3127), - [anon_sym_sizeof] = ACTIONS(3125), - [anon_sym___alignof__] = ACTIONS(3125), - [anon_sym___alignof] = ACTIONS(3125), - [anon_sym__alignof] = ACTIONS(3125), - [anon_sym_alignof] = ACTIONS(3125), - [anon_sym__Alignof] = ACTIONS(3125), - [anon_sym_offsetof] = ACTIONS(3125), - [anon_sym__Generic] = ACTIONS(3125), - [anon_sym_asm] = ACTIONS(3125), - [anon_sym___asm__] = ACTIONS(3125), - [sym_number_literal] = ACTIONS(3127), - [anon_sym_L_SQUOTE] = ACTIONS(3127), - [anon_sym_u_SQUOTE] = ACTIONS(3127), - [anon_sym_U_SQUOTE] = ACTIONS(3127), - [anon_sym_u8_SQUOTE] = ACTIONS(3127), - [anon_sym_SQUOTE] = ACTIONS(3127), - [anon_sym_L_DQUOTE] = ACTIONS(3127), - [anon_sym_u_DQUOTE] = ACTIONS(3127), - [anon_sym_U_DQUOTE] = ACTIONS(3127), - [anon_sym_u8_DQUOTE] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym_true] = ACTIONS(3125), - [sym_false] = ACTIONS(3125), - [anon_sym_NULL] = ACTIONS(3125), - [anon_sym_nullptr] = ACTIONS(3125), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3125), - [anon_sym_decltype] = ACTIONS(3125), - [anon_sym_virtual] = ACTIONS(3125), - [anon_sym_alignas] = ACTIONS(3125), - [anon_sym_typename] = ACTIONS(3125), - [anon_sym_template] = ACTIONS(3125), - [anon_sym_try] = ACTIONS(3125), - [anon_sym_delete] = ACTIONS(3125), - [anon_sym_throw] = ACTIONS(3125), - [anon_sym_co_return] = ACTIONS(3125), - [anon_sym_co_yield] = ACTIONS(3125), - [anon_sym_R_DQUOTE] = ACTIONS(3127), - [anon_sym_LR_DQUOTE] = ACTIONS(3127), - [anon_sym_uR_DQUOTE] = ACTIONS(3127), - [anon_sym_UR_DQUOTE] = ACTIONS(3127), - [anon_sym_u8R_DQUOTE] = ACTIONS(3127), - [anon_sym_co_await] = ACTIONS(3125), - [anon_sym_new] = ACTIONS(3125), - [anon_sym_requires] = ACTIONS(3125), - [sym_this] = ACTIONS(3125), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3127), - [sym_semgrep_named_ellipsis] = ACTIONS(3127), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_typename] = ACTIONS(4537), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [997] = { - [sym_identifier] = ACTIONS(3143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3145), - [anon_sym_LPAREN2] = ACTIONS(3145), - [anon_sym_BANG] = ACTIONS(3145), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_DASH] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3145), - [anon_sym_AMP] = ACTIONS(3145), - [anon_sym_SEMI] = ACTIONS(3145), - [anon_sym___extension__] = ACTIONS(3143), - [anon_sym_typedef] = ACTIONS(3143), - [anon_sym_extern] = ACTIONS(3143), - [anon_sym___attribute__] = ACTIONS(3143), - [anon_sym_COLON_COLON] = ACTIONS(3145), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3145), - [anon_sym___declspec] = ACTIONS(3143), - [anon_sym_LBRACE] = ACTIONS(3145), - [anon_sym_signed] = ACTIONS(3143), - [anon_sym_unsigned] = ACTIONS(3143), - [anon_sym_long] = ACTIONS(3143), - [anon_sym_short] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_static] = ACTIONS(3143), - [anon_sym_register] = ACTIONS(3143), - [anon_sym_inline] = ACTIONS(3143), - [anon_sym___inline] = ACTIONS(3143), - [anon_sym___inline__] = ACTIONS(3143), - [anon_sym___forceinline] = ACTIONS(3143), - [anon_sym_thread_local] = ACTIONS(3143), - [anon_sym___thread] = ACTIONS(3143), - [anon_sym_const] = ACTIONS(3143), - [anon_sym_constexpr] = ACTIONS(3143), - [anon_sym_volatile] = ACTIONS(3143), - [anon_sym_restrict] = ACTIONS(3143), - [anon_sym___restrict__] = ACTIONS(3143), - [anon_sym__Atomic] = ACTIONS(3143), - [anon_sym__Noreturn] = ACTIONS(3143), - [anon_sym_noreturn] = ACTIONS(3143), - [anon_sym_mutable] = ACTIONS(3143), - [anon_sym_constinit] = ACTIONS(3143), - [anon_sym_consteval] = ACTIONS(3143), - [sym_primitive_type] = ACTIONS(3143), - [anon_sym_enum] = ACTIONS(3143), - [anon_sym_class] = ACTIONS(3143), - [anon_sym_struct] = ACTIONS(3143), - [anon_sym_union] = ACTIONS(3143), - [anon_sym_if] = ACTIONS(3143), - [anon_sym_else] = ACTIONS(3143), - [anon_sym_switch] = ACTIONS(3143), - [anon_sym_while] = ACTIONS(3143), - [anon_sym_do] = ACTIONS(3143), - [anon_sym_for] = ACTIONS(3143), - [anon_sym_return] = ACTIONS(3143), - [anon_sym_break] = ACTIONS(3143), - [anon_sym_continue] = ACTIONS(3143), - [anon_sym_goto] = ACTIONS(3143), - [anon_sym___try] = ACTIONS(3143), - [anon_sym___leave] = ACTIONS(3143), - [anon_sym_not] = ACTIONS(3143), - [anon_sym_compl] = ACTIONS(3143), - [anon_sym_DASH_DASH] = ACTIONS(3145), - [anon_sym_PLUS_PLUS] = ACTIONS(3145), - [anon_sym_sizeof] = ACTIONS(3143), - [anon_sym___alignof__] = ACTIONS(3143), - [anon_sym___alignof] = ACTIONS(3143), - [anon_sym__alignof] = ACTIONS(3143), - [anon_sym_alignof] = ACTIONS(3143), - [anon_sym__Alignof] = ACTIONS(3143), - [anon_sym_offsetof] = ACTIONS(3143), - [anon_sym__Generic] = ACTIONS(3143), - [anon_sym_asm] = ACTIONS(3143), - [anon_sym___asm__] = ACTIONS(3143), - [sym_number_literal] = ACTIONS(3145), - [anon_sym_L_SQUOTE] = ACTIONS(3145), - [anon_sym_u_SQUOTE] = ACTIONS(3145), - [anon_sym_U_SQUOTE] = ACTIONS(3145), - [anon_sym_u8_SQUOTE] = ACTIONS(3145), - [anon_sym_SQUOTE] = ACTIONS(3145), - [anon_sym_L_DQUOTE] = ACTIONS(3145), - [anon_sym_u_DQUOTE] = ACTIONS(3145), - [anon_sym_U_DQUOTE] = ACTIONS(3145), - [anon_sym_u8_DQUOTE] = ACTIONS(3145), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym_true] = ACTIONS(3143), - [sym_false] = ACTIONS(3143), - [anon_sym_NULL] = ACTIONS(3143), - [anon_sym_nullptr] = ACTIONS(3143), + [1023] = { + [sym_expression] = STATE(5000), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8223), + [sym_initializer_pair] = STATE(8223), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(5245), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [sym_identifier] = ACTIONS(4521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_COMMA] = ACTIONS(4701), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_RBRACE] = ACTIONS(4703), + [anon_sym_LBRACK] = ACTIONS(4527), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(229), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3143), - [anon_sym_decltype] = ACTIONS(3143), - [anon_sym_virtual] = ACTIONS(3143), - [anon_sym_alignas] = ACTIONS(3143), - [anon_sym_typename] = ACTIONS(3143), - [anon_sym_template] = ACTIONS(3143), - [anon_sym_try] = ACTIONS(3143), - [anon_sym_delete] = ACTIONS(3143), - [anon_sym_throw] = ACTIONS(3143), - [anon_sym_co_return] = ACTIONS(3143), - [anon_sym_co_yield] = ACTIONS(3143), - [anon_sym_R_DQUOTE] = ACTIONS(3145), - [anon_sym_LR_DQUOTE] = ACTIONS(3145), - [anon_sym_uR_DQUOTE] = ACTIONS(3145), - [anon_sym_UR_DQUOTE] = ACTIONS(3145), - [anon_sym_u8R_DQUOTE] = ACTIONS(3145), - [anon_sym_co_await] = ACTIONS(3143), - [anon_sym_new] = ACTIONS(3143), - [anon_sym_requires] = ACTIONS(3143), - [sym_this] = ACTIONS(3143), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3145), - [sym_semgrep_named_ellipsis] = ACTIONS(3145), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [998] = { - [sym_identifier] = ACTIONS(3155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3157), - [anon_sym_LPAREN2] = ACTIONS(3157), - [anon_sym_BANG] = ACTIONS(3157), - [anon_sym_TILDE] = ACTIONS(3157), - [anon_sym_DASH] = ACTIONS(3155), - [anon_sym_PLUS] = ACTIONS(3155), - [anon_sym_STAR] = ACTIONS(3157), - [anon_sym_AMP] = ACTIONS(3157), - [anon_sym_SEMI] = ACTIONS(3157), - [anon_sym___extension__] = ACTIONS(3155), - [anon_sym_typedef] = ACTIONS(3155), - [anon_sym_extern] = ACTIONS(3155), - [anon_sym___attribute__] = ACTIONS(3155), - [anon_sym_COLON_COLON] = ACTIONS(3157), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3157), - [anon_sym___declspec] = ACTIONS(3155), - [anon_sym_LBRACE] = ACTIONS(3157), - [anon_sym_signed] = ACTIONS(3155), - [anon_sym_unsigned] = ACTIONS(3155), - [anon_sym_long] = ACTIONS(3155), - [anon_sym_short] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_static] = ACTIONS(3155), - [anon_sym_register] = ACTIONS(3155), - [anon_sym_inline] = ACTIONS(3155), - [anon_sym___inline] = ACTIONS(3155), - [anon_sym___inline__] = ACTIONS(3155), - [anon_sym___forceinline] = ACTIONS(3155), - [anon_sym_thread_local] = ACTIONS(3155), - [anon_sym___thread] = ACTIONS(3155), - [anon_sym_const] = ACTIONS(3155), - [anon_sym_constexpr] = ACTIONS(3155), - [anon_sym_volatile] = ACTIONS(3155), - [anon_sym_restrict] = ACTIONS(3155), - [anon_sym___restrict__] = ACTIONS(3155), - [anon_sym__Atomic] = ACTIONS(3155), - [anon_sym__Noreturn] = ACTIONS(3155), - [anon_sym_noreturn] = ACTIONS(3155), - [anon_sym_mutable] = ACTIONS(3155), - [anon_sym_constinit] = ACTIONS(3155), - [anon_sym_consteval] = ACTIONS(3155), - [sym_primitive_type] = ACTIONS(3155), - [anon_sym_enum] = ACTIONS(3155), - [anon_sym_class] = ACTIONS(3155), - [anon_sym_struct] = ACTIONS(3155), - [anon_sym_union] = ACTIONS(3155), - [anon_sym_if] = ACTIONS(3155), - [anon_sym_else] = ACTIONS(3155), - [anon_sym_switch] = ACTIONS(3155), - [anon_sym_while] = ACTIONS(3155), - [anon_sym_do] = ACTIONS(3155), - [anon_sym_for] = ACTIONS(3155), - [anon_sym_return] = ACTIONS(3155), - [anon_sym_break] = ACTIONS(3155), - [anon_sym_continue] = ACTIONS(3155), - [anon_sym_goto] = ACTIONS(3155), - [anon_sym___try] = ACTIONS(3155), - [anon_sym___leave] = ACTIONS(3155), - [anon_sym_not] = ACTIONS(3155), - [anon_sym_compl] = ACTIONS(3155), - [anon_sym_DASH_DASH] = ACTIONS(3157), - [anon_sym_PLUS_PLUS] = ACTIONS(3157), - [anon_sym_sizeof] = ACTIONS(3155), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3155), - [anon_sym__Generic] = ACTIONS(3155), - [anon_sym_asm] = ACTIONS(3155), - [anon_sym___asm__] = ACTIONS(3155), - [sym_number_literal] = ACTIONS(3157), - [anon_sym_L_SQUOTE] = ACTIONS(3157), - [anon_sym_u_SQUOTE] = ACTIONS(3157), - [anon_sym_U_SQUOTE] = ACTIONS(3157), - [anon_sym_u8_SQUOTE] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3157), - [anon_sym_L_DQUOTE] = ACTIONS(3157), - [anon_sym_u_DQUOTE] = ACTIONS(3157), - [anon_sym_U_DQUOTE] = ACTIONS(3157), - [anon_sym_u8_DQUOTE] = ACTIONS(3157), - [anon_sym_DQUOTE] = ACTIONS(3157), - [sym_true] = ACTIONS(3155), - [sym_false] = ACTIONS(3155), - [anon_sym_NULL] = ACTIONS(3155), - [anon_sym_nullptr] = ACTIONS(3155), + [1024] = { + [sym_expression_statement] = STATE(2824), + [sym_expression] = STATE(5227), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9936), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_type_requirement] = STATE(2824), + [sym_compound_requirement] = STATE(2824), + [sym_requirement] = STATE(1027), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_requirement_seq_repeat1] = STATE(1027), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4705), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3155), - [anon_sym_decltype] = ACTIONS(3155), - [anon_sym_virtual] = ACTIONS(3155), - [anon_sym_alignas] = ACTIONS(3155), - [anon_sym_typename] = ACTIONS(3155), - [anon_sym_template] = ACTIONS(3155), - [anon_sym_try] = ACTIONS(3155), - [anon_sym_delete] = ACTIONS(3155), - [anon_sym_throw] = ACTIONS(3155), - [anon_sym_co_return] = ACTIONS(3155), - [anon_sym_co_yield] = ACTIONS(3155), - [anon_sym_R_DQUOTE] = ACTIONS(3157), - [anon_sym_LR_DQUOTE] = ACTIONS(3157), - [anon_sym_uR_DQUOTE] = ACTIONS(3157), - [anon_sym_UR_DQUOTE] = ACTIONS(3157), - [anon_sym_u8R_DQUOTE] = ACTIONS(3157), - [anon_sym_co_await] = ACTIONS(3155), - [anon_sym_new] = ACTIONS(3155), - [anon_sym_requires] = ACTIONS(3155), - [sym_this] = ACTIONS(3155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3157), - [sym_semgrep_named_ellipsis] = ACTIONS(3157), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_typename] = ACTIONS(4537), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [999] = { - [sym_identifier] = ACTIONS(3159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3161), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym___extension__] = ACTIONS(3159), - [anon_sym_typedef] = ACTIONS(3159), - [anon_sym_extern] = ACTIONS(3159), - [anon_sym___attribute__] = ACTIONS(3159), - [anon_sym_COLON_COLON] = ACTIONS(3161), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), - [anon_sym___declspec] = ACTIONS(3159), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_signed] = ACTIONS(3159), - [anon_sym_unsigned] = ACTIONS(3159), - [anon_sym_long] = ACTIONS(3159), - [anon_sym_short] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(3159), - [anon_sym_static] = ACTIONS(3159), - [anon_sym_register] = ACTIONS(3159), - [anon_sym_inline] = ACTIONS(3159), - [anon_sym___inline] = ACTIONS(3159), - [anon_sym___inline__] = ACTIONS(3159), - [anon_sym___forceinline] = ACTIONS(3159), - [anon_sym_thread_local] = ACTIONS(3159), - [anon_sym___thread] = ACTIONS(3159), - [anon_sym_const] = ACTIONS(3159), - [anon_sym_constexpr] = ACTIONS(3159), - [anon_sym_volatile] = ACTIONS(3159), - [anon_sym_restrict] = ACTIONS(3159), - [anon_sym___restrict__] = ACTIONS(3159), - [anon_sym__Atomic] = ACTIONS(3159), - [anon_sym__Noreturn] = ACTIONS(3159), - [anon_sym_noreturn] = ACTIONS(3159), - [anon_sym_mutable] = ACTIONS(3159), - [anon_sym_constinit] = ACTIONS(3159), - [anon_sym_consteval] = ACTIONS(3159), - [sym_primitive_type] = ACTIONS(3159), - [anon_sym_enum] = ACTIONS(3159), - [anon_sym_class] = ACTIONS(3159), - [anon_sym_struct] = ACTIONS(3159), - [anon_sym_union] = ACTIONS(3159), - [anon_sym_if] = ACTIONS(3159), - [anon_sym_else] = ACTIONS(3159), - [anon_sym_switch] = ACTIONS(3159), - [anon_sym_while] = ACTIONS(3159), - [anon_sym_do] = ACTIONS(3159), - [anon_sym_for] = ACTIONS(3159), - [anon_sym_return] = ACTIONS(3159), - [anon_sym_break] = ACTIONS(3159), - [anon_sym_continue] = ACTIONS(3159), - [anon_sym_goto] = ACTIONS(3159), - [anon_sym___try] = ACTIONS(3159), - [anon_sym___leave] = ACTIONS(3159), - [anon_sym_not] = ACTIONS(3159), - [anon_sym_compl] = ACTIONS(3159), - [anon_sym_DASH_DASH] = ACTIONS(3161), - [anon_sym_PLUS_PLUS] = ACTIONS(3161), - [anon_sym_sizeof] = ACTIONS(3159), - [anon_sym___alignof__] = ACTIONS(3159), - [anon_sym___alignof] = ACTIONS(3159), - [anon_sym__alignof] = ACTIONS(3159), - [anon_sym_alignof] = ACTIONS(3159), - [anon_sym__Alignof] = ACTIONS(3159), - [anon_sym_offsetof] = ACTIONS(3159), - [anon_sym__Generic] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3159), - [anon_sym___asm__] = ACTIONS(3159), - [sym_number_literal] = ACTIONS(3161), - [anon_sym_L_SQUOTE] = ACTIONS(3161), - [anon_sym_u_SQUOTE] = ACTIONS(3161), - [anon_sym_U_SQUOTE] = ACTIONS(3161), - [anon_sym_u8_SQUOTE] = ACTIONS(3161), - [anon_sym_SQUOTE] = ACTIONS(3161), - [anon_sym_L_DQUOTE] = ACTIONS(3161), - [anon_sym_u_DQUOTE] = ACTIONS(3161), - [anon_sym_U_DQUOTE] = ACTIONS(3161), - [anon_sym_u8_DQUOTE] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(3161), - [sym_true] = ACTIONS(3159), - [sym_false] = ACTIONS(3159), - [anon_sym_NULL] = ACTIONS(3159), - [anon_sym_nullptr] = ACTIONS(3159), + [1025] = { + [sym_expression_statement] = STATE(2824), + [sym_expression] = STATE(5227), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9936), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_type_requirement] = STATE(2824), + [sym_compound_requirement] = STATE(2824), + [sym_requirement] = STATE(1009), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_requirement_seq_repeat1] = STATE(1009), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4707), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3159), - [anon_sym_decltype] = ACTIONS(3159), - [anon_sym_virtual] = ACTIONS(3159), - [anon_sym_alignas] = ACTIONS(3159), - [anon_sym_typename] = ACTIONS(3159), - [anon_sym_template] = ACTIONS(3159), - [anon_sym_try] = ACTIONS(3159), - [anon_sym_delete] = ACTIONS(3159), - [anon_sym_throw] = ACTIONS(3159), - [anon_sym_co_return] = ACTIONS(3159), - [anon_sym_co_yield] = ACTIONS(3159), - [anon_sym_R_DQUOTE] = ACTIONS(3161), - [anon_sym_LR_DQUOTE] = ACTIONS(3161), - [anon_sym_uR_DQUOTE] = ACTIONS(3161), - [anon_sym_UR_DQUOTE] = ACTIONS(3161), - [anon_sym_u8R_DQUOTE] = ACTIONS(3161), - [anon_sym_co_await] = ACTIONS(3159), - [anon_sym_new] = ACTIONS(3159), - [anon_sym_requires] = ACTIONS(3159), - [sym_this] = ACTIONS(3159), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3161), - [sym_semgrep_named_ellipsis] = ACTIONS(3161), - }, - [1000] = { - [sym_identifier] = ACTIONS(3227), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3229), - [anon_sym_LPAREN2] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_TILDE] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_AMP] = ACTIONS(3229), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym___extension__] = ACTIONS(3227), - [anon_sym_typedef] = ACTIONS(3227), - [anon_sym_extern] = ACTIONS(3227), - [anon_sym___attribute__] = ACTIONS(3227), - [anon_sym_COLON_COLON] = ACTIONS(3229), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3229), - [anon_sym___declspec] = ACTIONS(3227), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_signed] = ACTIONS(3227), - [anon_sym_unsigned] = ACTIONS(3227), - [anon_sym_long] = ACTIONS(3227), - [anon_sym_short] = ACTIONS(3227), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_static] = ACTIONS(3227), - [anon_sym_register] = ACTIONS(3227), - [anon_sym_inline] = ACTIONS(3227), - [anon_sym___inline] = ACTIONS(3227), - [anon_sym___inline__] = ACTIONS(3227), - [anon_sym___forceinline] = ACTIONS(3227), - [anon_sym_thread_local] = ACTIONS(3227), - [anon_sym___thread] = ACTIONS(3227), - [anon_sym_const] = ACTIONS(3227), - [anon_sym_constexpr] = ACTIONS(3227), - [anon_sym_volatile] = ACTIONS(3227), - [anon_sym_restrict] = ACTIONS(3227), - [anon_sym___restrict__] = ACTIONS(3227), - [anon_sym__Atomic] = ACTIONS(3227), - [anon_sym__Noreturn] = ACTIONS(3227), - [anon_sym_noreturn] = ACTIONS(3227), - [anon_sym_mutable] = ACTIONS(3227), - [anon_sym_constinit] = ACTIONS(3227), - [anon_sym_consteval] = ACTIONS(3227), - [sym_primitive_type] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(3227), - [anon_sym_class] = ACTIONS(3227), - [anon_sym_struct] = ACTIONS(3227), - [anon_sym_union] = ACTIONS(3227), - [anon_sym_if] = ACTIONS(3227), - [anon_sym_else] = ACTIONS(3227), - [anon_sym_switch] = ACTIONS(3227), - [anon_sym_while] = ACTIONS(3227), - [anon_sym_do] = ACTIONS(3227), - [anon_sym_for] = ACTIONS(3227), - [anon_sym_return] = ACTIONS(3227), - [anon_sym_break] = ACTIONS(3227), - [anon_sym_continue] = ACTIONS(3227), - [anon_sym_goto] = ACTIONS(3227), - [anon_sym___try] = ACTIONS(3227), - [anon_sym___leave] = ACTIONS(3227), - [anon_sym_not] = ACTIONS(3227), - [anon_sym_compl] = ACTIONS(3227), - [anon_sym_DASH_DASH] = ACTIONS(3229), - [anon_sym_PLUS_PLUS] = ACTIONS(3229), - [anon_sym_sizeof] = ACTIONS(3227), - [anon_sym___alignof__] = ACTIONS(3227), - [anon_sym___alignof] = ACTIONS(3227), - [anon_sym__alignof] = ACTIONS(3227), - [anon_sym_alignof] = ACTIONS(3227), - [anon_sym__Alignof] = ACTIONS(3227), - [anon_sym_offsetof] = ACTIONS(3227), - [anon_sym__Generic] = ACTIONS(3227), - [anon_sym_asm] = ACTIONS(3227), - [anon_sym___asm__] = ACTIONS(3227), - [sym_number_literal] = ACTIONS(3229), - [anon_sym_L_SQUOTE] = ACTIONS(3229), - [anon_sym_u_SQUOTE] = ACTIONS(3229), - [anon_sym_U_SQUOTE] = ACTIONS(3229), - [anon_sym_u8_SQUOTE] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3229), - [anon_sym_L_DQUOTE] = ACTIONS(3229), - [anon_sym_u_DQUOTE] = ACTIONS(3229), - [anon_sym_U_DQUOTE] = ACTIONS(3229), - [anon_sym_u8_DQUOTE] = ACTIONS(3229), - [anon_sym_DQUOTE] = ACTIONS(3229), - [sym_true] = ACTIONS(3227), - [sym_false] = ACTIONS(3227), - [anon_sym_NULL] = ACTIONS(3227), - [anon_sym_nullptr] = ACTIONS(3227), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3227), - [anon_sym_decltype] = ACTIONS(3227), - [anon_sym_virtual] = ACTIONS(3227), - [anon_sym_alignas] = ACTIONS(3227), - [anon_sym_typename] = ACTIONS(3227), - [anon_sym_template] = ACTIONS(3227), - [anon_sym_try] = ACTIONS(3227), - [anon_sym_delete] = ACTIONS(3227), - [anon_sym_throw] = ACTIONS(3227), - [anon_sym_co_return] = ACTIONS(3227), - [anon_sym_co_yield] = ACTIONS(3227), - [anon_sym_R_DQUOTE] = ACTIONS(3229), - [anon_sym_LR_DQUOTE] = ACTIONS(3229), - [anon_sym_uR_DQUOTE] = ACTIONS(3229), - [anon_sym_UR_DQUOTE] = ACTIONS(3229), - [anon_sym_u8R_DQUOTE] = ACTIONS(3229), - [anon_sym_co_await] = ACTIONS(3227), - [anon_sym_new] = ACTIONS(3227), - [anon_sym_requires] = ACTIONS(3227), - [sym_this] = ACTIONS(3227), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3229), - [sym_semgrep_named_ellipsis] = ACTIONS(3229), - }, - [1001] = { - [sym_identifier] = ACTIONS(3109), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3111), - [anon_sym_LPAREN2] = ACTIONS(3111), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_TILDE] = ACTIONS(3111), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym___extension__] = ACTIONS(3109), - [anon_sym_typedef] = ACTIONS(3109), - [anon_sym_extern] = ACTIONS(3109), - [anon_sym___attribute__] = ACTIONS(3109), - [anon_sym_COLON_COLON] = ACTIONS(3111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3111), - [anon_sym___declspec] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3111), - [anon_sym_signed] = ACTIONS(3109), - [anon_sym_unsigned] = ACTIONS(3109), - [anon_sym_long] = ACTIONS(3109), - [anon_sym_short] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3109), - [anon_sym_static] = ACTIONS(3109), - [anon_sym_register] = ACTIONS(3109), - [anon_sym_inline] = ACTIONS(3109), - [anon_sym___inline] = ACTIONS(3109), - [anon_sym___inline__] = ACTIONS(3109), - [anon_sym___forceinline] = ACTIONS(3109), - [anon_sym_thread_local] = ACTIONS(3109), - [anon_sym___thread] = ACTIONS(3109), - [anon_sym_const] = ACTIONS(3109), - [anon_sym_constexpr] = ACTIONS(3109), - [anon_sym_volatile] = ACTIONS(3109), - [anon_sym_restrict] = ACTIONS(3109), - [anon_sym___restrict__] = ACTIONS(3109), - [anon_sym__Atomic] = ACTIONS(3109), - [anon_sym__Noreturn] = ACTIONS(3109), - [anon_sym_noreturn] = ACTIONS(3109), - [anon_sym_mutable] = ACTIONS(3109), - [anon_sym_constinit] = ACTIONS(3109), - [anon_sym_consteval] = ACTIONS(3109), - [sym_primitive_type] = ACTIONS(3109), - [anon_sym_enum] = ACTIONS(3109), - [anon_sym_class] = ACTIONS(3109), - [anon_sym_struct] = ACTIONS(3109), - [anon_sym_union] = ACTIONS(3109), - [anon_sym_if] = ACTIONS(3109), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_switch] = ACTIONS(3109), - [anon_sym_while] = ACTIONS(3109), - [anon_sym_do] = ACTIONS(3109), - [anon_sym_for] = ACTIONS(3109), - [anon_sym_return] = ACTIONS(3109), - [anon_sym_break] = ACTIONS(3109), - [anon_sym_continue] = ACTIONS(3109), - [anon_sym_goto] = ACTIONS(3109), - [anon_sym___try] = ACTIONS(3109), - [anon_sym___leave] = ACTIONS(3109), - [anon_sym_not] = ACTIONS(3109), - [anon_sym_compl] = ACTIONS(3109), - [anon_sym_DASH_DASH] = ACTIONS(3111), - [anon_sym_PLUS_PLUS] = ACTIONS(3111), - [anon_sym_sizeof] = ACTIONS(3109), - [anon_sym___alignof__] = ACTIONS(3109), - [anon_sym___alignof] = ACTIONS(3109), - [anon_sym__alignof] = ACTIONS(3109), - [anon_sym_alignof] = ACTIONS(3109), - [anon_sym__Alignof] = ACTIONS(3109), - [anon_sym_offsetof] = ACTIONS(3109), - [anon_sym__Generic] = ACTIONS(3109), - [anon_sym_asm] = ACTIONS(3109), - [anon_sym___asm__] = ACTIONS(3109), - [sym_number_literal] = ACTIONS(3111), - [anon_sym_L_SQUOTE] = ACTIONS(3111), - [anon_sym_u_SQUOTE] = ACTIONS(3111), - [anon_sym_U_SQUOTE] = ACTIONS(3111), - [anon_sym_u8_SQUOTE] = ACTIONS(3111), - [anon_sym_SQUOTE] = ACTIONS(3111), - [anon_sym_L_DQUOTE] = ACTIONS(3111), - [anon_sym_u_DQUOTE] = ACTIONS(3111), - [anon_sym_U_DQUOTE] = ACTIONS(3111), - [anon_sym_u8_DQUOTE] = ACTIONS(3111), - [anon_sym_DQUOTE] = ACTIONS(3111), - [sym_true] = ACTIONS(3109), - [sym_false] = ACTIONS(3109), - [anon_sym_NULL] = ACTIONS(3109), - [anon_sym_nullptr] = ACTIONS(3109), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3109), - [anon_sym_decltype] = ACTIONS(3109), - [anon_sym_virtual] = ACTIONS(3109), - [anon_sym_alignas] = ACTIONS(3109), - [anon_sym_typename] = ACTIONS(3109), - [anon_sym_template] = ACTIONS(3109), - [anon_sym_try] = ACTIONS(3109), - [anon_sym_delete] = ACTIONS(3109), - [anon_sym_throw] = ACTIONS(3109), - [anon_sym_co_return] = ACTIONS(3109), - [anon_sym_co_yield] = ACTIONS(3109), - [anon_sym_R_DQUOTE] = ACTIONS(3111), - [anon_sym_LR_DQUOTE] = ACTIONS(3111), - [anon_sym_uR_DQUOTE] = ACTIONS(3111), - [anon_sym_UR_DQUOTE] = ACTIONS(3111), - [anon_sym_u8R_DQUOTE] = ACTIONS(3111), - [anon_sym_co_await] = ACTIONS(3109), - [anon_sym_new] = ACTIONS(3109), - [anon_sym_requires] = ACTIONS(3109), - [sym_this] = ACTIONS(3109), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3111), - [sym_semgrep_named_ellipsis] = ACTIONS(3111), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_typename] = ACTIONS(4537), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1002] = { - [sym_identifier] = ACTIONS(3151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3153), - [anon_sym_LPAREN2] = ACTIONS(3153), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_TILDE] = ACTIONS(3153), - [anon_sym_DASH] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(3151), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3153), - [anon_sym_SEMI] = ACTIONS(3153), - [anon_sym___extension__] = ACTIONS(3151), - [anon_sym_typedef] = ACTIONS(3151), - [anon_sym_extern] = ACTIONS(3151), - [anon_sym___attribute__] = ACTIONS(3151), - [anon_sym_COLON_COLON] = ACTIONS(3153), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3153), - [anon_sym___declspec] = ACTIONS(3151), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_signed] = ACTIONS(3151), - [anon_sym_unsigned] = ACTIONS(3151), - [anon_sym_long] = ACTIONS(3151), - [anon_sym_short] = ACTIONS(3151), - [anon_sym_LBRACK] = ACTIONS(3151), - [anon_sym_static] = ACTIONS(3151), - [anon_sym_register] = ACTIONS(3151), - [anon_sym_inline] = ACTIONS(3151), - [anon_sym___inline] = ACTIONS(3151), - [anon_sym___inline__] = ACTIONS(3151), - [anon_sym___forceinline] = ACTIONS(3151), - [anon_sym_thread_local] = ACTIONS(3151), - [anon_sym___thread] = ACTIONS(3151), - [anon_sym_const] = ACTIONS(3151), - [anon_sym_constexpr] = ACTIONS(3151), - [anon_sym_volatile] = ACTIONS(3151), - [anon_sym_restrict] = ACTIONS(3151), - [anon_sym___restrict__] = ACTIONS(3151), - [anon_sym__Atomic] = ACTIONS(3151), - [anon_sym__Noreturn] = ACTIONS(3151), - [anon_sym_noreturn] = ACTIONS(3151), - [anon_sym_mutable] = ACTIONS(3151), - [anon_sym_constinit] = ACTIONS(3151), - [anon_sym_consteval] = ACTIONS(3151), - [sym_primitive_type] = ACTIONS(3151), - [anon_sym_enum] = ACTIONS(3151), - [anon_sym_class] = ACTIONS(3151), - [anon_sym_struct] = ACTIONS(3151), - [anon_sym_union] = ACTIONS(3151), - [anon_sym_if] = ACTIONS(3151), - [anon_sym_else] = ACTIONS(3151), - [anon_sym_switch] = ACTIONS(3151), - [anon_sym_while] = ACTIONS(3151), - [anon_sym_do] = ACTIONS(3151), - [anon_sym_for] = ACTIONS(3151), - [anon_sym_return] = ACTIONS(3151), - [anon_sym_break] = ACTIONS(3151), - [anon_sym_continue] = ACTIONS(3151), - [anon_sym_goto] = ACTIONS(3151), - [anon_sym___try] = ACTIONS(3151), - [anon_sym___leave] = ACTIONS(3151), - [anon_sym_not] = ACTIONS(3151), - [anon_sym_compl] = ACTIONS(3151), - [anon_sym_DASH_DASH] = ACTIONS(3153), - [anon_sym_PLUS_PLUS] = ACTIONS(3153), - [anon_sym_sizeof] = ACTIONS(3151), - [anon_sym___alignof__] = ACTIONS(3151), - [anon_sym___alignof] = ACTIONS(3151), - [anon_sym__alignof] = ACTIONS(3151), - [anon_sym_alignof] = ACTIONS(3151), - [anon_sym__Alignof] = ACTIONS(3151), - [anon_sym_offsetof] = ACTIONS(3151), - [anon_sym__Generic] = ACTIONS(3151), - [anon_sym_asm] = ACTIONS(3151), - [anon_sym___asm__] = ACTIONS(3151), - [sym_number_literal] = ACTIONS(3153), - [anon_sym_L_SQUOTE] = ACTIONS(3153), - [anon_sym_u_SQUOTE] = ACTIONS(3153), - [anon_sym_U_SQUOTE] = ACTIONS(3153), - [anon_sym_u8_SQUOTE] = ACTIONS(3153), - [anon_sym_SQUOTE] = ACTIONS(3153), - [anon_sym_L_DQUOTE] = ACTIONS(3153), - [anon_sym_u_DQUOTE] = ACTIONS(3153), - [anon_sym_U_DQUOTE] = ACTIONS(3153), - [anon_sym_u8_DQUOTE] = ACTIONS(3153), - [anon_sym_DQUOTE] = ACTIONS(3153), - [sym_true] = ACTIONS(3151), - [sym_false] = ACTIONS(3151), - [anon_sym_NULL] = ACTIONS(3151), - [anon_sym_nullptr] = ACTIONS(3151), + [1026] = { + [sym_expression_statement] = STATE(2824), + [sym_expression] = STATE(5227), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9936), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_type_requirement] = STATE(2824), + [sym_compound_requirement] = STATE(2824), + [sym_requirement] = STATE(1028), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_requirement_seq_repeat1] = STATE(1028), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4709), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3151), - [anon_sym_decltype] = ACTIONS(3151), - [anon_sym_virtual] = ACTIONS(3151), - [anon_sym_alignas] = ACTIONS(3151), - [anon_sym_typename] = ACTIONS(3151), - [anon_sym_template] = ACTIONS(3151), - [anon_sym_try] = ACTIONS(3151), - [anon_sym_delete] = ACTIONS(3151), - [anon_sym_throw] = ACTIONS(3151), - [anon_sym_co_return] = ACTIONS(3151), - [anon_sym_co_yield] = ACTIONS(3151), - [anon_sym_R_DQUOTE] = ACTIONS(3153), - [anon_sym_LR_DQUOTE] = ACTIONS(3153), - [anon_sym_uR_DQUOTE] = ACTIONS(3153), - [anon_sym_UR_DQUOTE] = ACTIONS(3153), - [anon_sym_u8R_DQUOTE] = ACTIONS(3153), - [anon_sym_co_await] = ACTIONS(3151), - [anon_sym_new] = ACTIONS(3151), - [anon_sym_requires] = ACTIONS(3151), - [sym_this] = ACTIONS(3151), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3153), - [sym_semgrep_named_ellipsis] = ACTIONS(3153), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_typename] = ACTIONS(4537), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1003] = { - [sym_identifier] = ACTIONS(3163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3165), - [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___extension__] = ACTIONS(3163), - [anon_sym_typedef] = ACTIONS(3163), - [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_signed] = ACTIONS(3163), - [anon_sym_unsigned] = ACTIONS(3163), - [anon_sym_long] = ACTIONS(3163), - [anon_sym_short] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_register] = ACTIONS(3163), - [anon_sym_inline] = ACTIONS(3163), - [anon_sym___inline] = ACTIONS(3163), - [anon_sym___inline__] = ACTIONS(3163), - [anon_sym___forceinline] = ACTIONS(3163), - [anon_sym_thread_local] = ACTIONS(3163), - [anon_sym___thread] = ACTIONS(3163), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_constexpr] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_restrict] = ACTIONS(3163), - [anon_sym___restrict__] = ACTIONS(3163), - [anon_sym__Atomic] = ACTIONS(3163), - [anon_sym__Noreturn] = ACTIONS(3163), - [anon_sym_noreturn] = ACTIONS(3163), - [anon_sym_mutable] = ACTIONS(3163), - [anon_sym_constinit] = ACTIONS(3163), - [anon_sym_consteval] = 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_else] = ACTIONS(3163), - [anon_sym_switch] = 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___try] = ACTIONS(3163), - [anon_sym___leave] = 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), - [anon_sym___alignof__] = ACTIONS(3163), - [anon_sym___alignof] = ACTIONS(3163), - [anon_sym__alignof] = ACTIONS(3163), - [anon_sym_alignof] = ACTIONS(3163), - [anon_sym__Alignof] = ACTIONS(3163), - [anon_sym_offsetof] = ACTIONS(3163), - [anon_sym__Generic] = ACTIONS(3163), - [anon_sym_asm] = ACTIONS(3163), - [anon_sym___asm__] = 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), - [anon_sym_NULL] = ACTIONS(3163), - [anon_sym_nullptr] = ACTIONS(3163), + [1027] = { + [sym_expression_statement] = STATE(2824), + [sym_expression] = STATE(5227), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9936), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_type_requirement] = STATE(2824), + [sym_compound_requirement] = STATE(2824), + [sym_requirement] = STATE(1009), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_requirement_seq_repeat1] = STATE(1009), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4711), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3163), - [anon_sym_decltype] = ACTIONS(3163), - [anon_sym_virtual] = ACTIONS(3163), - [anon_sym_alignas] = 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_R_DQUOTE] = ACTIONS(3165), - [anon_sym_LR_DQUOTE] = ACTIONS(3165), - [anon_sym_uR_DQUOTE] = ACTIONS(3165), - [anon_sym_UR_DQUOTE] = ACTIONS(3165), - [anon_sym_u8R_DQUOTE] = ACTIONS(3165), - [anon_sym_co_await] = ACTIONS(3163), - [anon_sym_new] = ACTIONS(3163), - [anon_sym_requires] = ACTIONS(3163), - [sym_this] = ACTIONS(3163), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3165), - [sym_semgrep_named_ellipsis] = ACTIONS(3165), - }, - [1004] = { - [sym_identifier] = ACTIONS(3211), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3213), - [anon_sym_LPAREN2] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(3213), - [anon_sym_TILDE] = ACTIONS(3213), - [anon_sym_DASH] = ACTIONS(3211), - [anon_sym_PLUS] = ACTIONS(3211), - [anon_sym_STAR] = ACTIONS(3213), - [anon_sym_AMP] = ACTIONS(3213), - [anon_sym_SEMI] = ACTIONS(3213), - [anon_sym___extension__] = ACTIONS(3211), - [anon_sym_typedef] = ACTIONS(3211), - [anon_sym_extern] = ACTIONS(3211), - [anon_sym___attribute__] = ACTIONS(3211), - [anon_sym_COLON_COLON] = ACTIONS(3213), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3213), - [anon_sym___declspec] = ACTIONS(3211), - [anon_sym_LBRACE] = ACTIONS(3213), - [anon_sym_signed] = ACTIONS(3211), - [anon_sym_unsigned] = ACTIONS(3211), - [anon_sym_long] = ACTIONS(3211), - [anon_sym_short] = ACTIONS(3211), - [anon_sym_LBRACK] = ACTIONS(3211), - [anon_sym_static] = ACTIONS(3211), - [anon_sym_register] = ACTIONS(3211), - [anon_sym_inline] = ACTIONS(3211), - [anon_sym___inline] = ACTIONS(3211), - [anon_sym___inline__] = ACTIONS(3211), - [anon_sym___forceinline] = ACTIONS(3211), - [anon_sym_thread_local] = ACTIONS(3211), - [anon_sym___thread] = ACTIONS(3211), - [anon_sym_const] = ACTIONS(3211), - [anon_sym_constexpr] = ACTIONS(3211), - [anon_sym_volatile] = ACTIONS(3211), - [anon_sym_restrict] = ACTIONS(3211), - [anon_sym___restrict__] = ACTIONS(3211), - [anon_sym__Atomic] = ACTIONS(3211), - [anon_sym__Noreturn] = ACTIONS(3211), - [anon_sym_noreturn] = ACTIONS(3211), - [anon_sym_mutable] = ACTIONS(3211), - [anon_sym_constinit] = ACTIONS(3211), - [anon_sym_consteval] = ACTIONS(3211), - [sym_primitive_type] = ACTIONS(3211), - [anon_sym_enum] = ACTIONS(3211), - [anon_sym_class] = ACTIONS(3211), - [anon_sym_struct] = ACTIONS(3211), - [anon_sym_union] = ACTIONS(3211), - [anon_sym_if] = ACTIONS(3211), - [anon_sym_else] = ACTIONS(3211), - [anon_sym_switch] = ACTIONS(3211), - [anon_sym_while] = ACTIONS(3211), - [anon_sym_do] = ACTIONS(3211), - [anon_sym_for] = ACTIONS(3211), - [anon_sym_return] = ACTIONS(3211), - [anon_sym_break] = ACTIONS(3211), - [anon_sym_continue] = ACTIONS(3211), - [anon_sym_goto] = ACTIONS(3211), - [anon_sym___try] = ACTIONS(3211), - [anon_sym___leave] = ACTIONS(3211), - [anon_sym_not] = ACTIONS(3211), - [anon_sym_compl] = ACTIONS(3211), - [anon_sym_DASH_DASH] = ACTIONS(3213), - [anon_sym_PLUS_PLUS] = ACTIONS(3213), - [anon_sym_sizeof] = ACTIONS(3211), - [anon_sym___alignof__] = ACTIONS(3211), - [anon_sym___alignof] = ACTIONS(3211), - [anon_sym__alignof] = ACTIONS(3211), - [anon_sym_alignof] = ACTIONS(3211), - [anon_sym__Alignof] = ACTIONS(3211), - [anon_sym_offsetof] = ACTIONS(3211), - [anon_sym__Generic] = ACTIONS(3211), - [anon_sym_asm] = ACTIONS(3211), - [anon_sym___asm__] = ACTIONS(3211), - [sym_number_literal] = ACTIONS(3213), - [anon_sym_L_SQUOTE] = ACTIONS(3213), - [anon_sym_u_SQUOTE] = ACTIONS(3213), - [anon_sym_U_SQUOTE] = ACTIONS(3213), - [anon_sym_u8_SQUOTE] = ACTIONS(3213), - [anon_sym_SQUOTE] = ACTIONS(3213), - [anon_sym_L_DQUOTE] = ACTIONS(3213), - [anon_sym_u_DQUOTE] = ACTIONS(3213), - [anon_sym_U_DQUOTE] = ACTIONS(3213), - [anon_sym_u8_DQUOTE] = ACTIONS(3213), - [anon_sym_DQUOTE] = ACTIONS(3213), - [sym_true] = ACTIONS(3211), - [sym_false] = ACTIONS(3211), - [anon_sym_NULL] = ACTIONS(3211), - [anon_sym_nullptr] = ACTIONS(3211), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3211), - [anon_sym_decltype] = ACTIONS(3211), - [anon_sym_virtual] = ACTIONS(3211), - [anon_sym_alignas] = ACTIONS(3211), - [anon_sym_typename] = ACTIONS(3211), - [anon_sym_template] = ACTIONS(3211), - [anon_sym_try] = ACTIONS(3211), - [anon_sym_delete] = ACTIONS(3211), - [anon_sym_throw] = ACTIONS(3211), - [anon_sym_co_return] = ACTIONS(3211), - [anon_sym_co_yield] = ACTIONS(3211), - [anon_sym_R_DQUOTE] = ACTIONS(3213), - [anon_sym_LR_DQUOTE] = ACTIONS(3213), - [anon_sym_uR_DQUOTE] = ACTIONS(3213), - [anon_sym_UR_DQUOTE] = ACTIONS(3213), - [anon_sym_u8R_DQUOTE] = ACTIONS(3213), - [anon_sym_co_await] = ACTIONS(3211), - [anon_sym_new] = ACTIONS(3211), - [anon_sym_requires] = ACTIONS(3211), - [sym_this] = ACTIONS(3211), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3213), - [sym_semgrep_named_ellipsis] = ACTIONS(3213), - }, - [1005] = { - [sym_identifier] = ACTIONS(4382), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4384), - [anon_sym_LPAREN2] = ACTIONS(4384), - [anon_sym_BANG] = ACTIONS(4384), - [anon_sym_TILDE] = ACTIONS(4384), - [anon_sym_DASH] = ACTIONS(4382), - [anon_sym_PLUS] = ACTIONS(4382), - [anon_sym_STAR] = ACTIONS(4384), - [anon_sym_AMP] = ACTIONS(4384), - [anon_sym_SEMI] = ACTIONS(4384), - [anon_sym___extension__] = ACTIONS(4382), - [anon_sym_extern] = ACTIONS(4382), - [anon_sym___attribute__] = ACTIONS(4382), - [anon_sym_COLON_COLON] = ACTIONS(4384), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4384), - [anon_sym___declspec] = ACTIONS(4382), - [anon_sym_LBRACE] = ACTIONS(4384), - [anon_sym_signed] = ACTIONS(4382), - [anon_sym_unsigned] = ACTIONS(4382), - [anon_sym_long] = ACTIONS(4382), - [anon_sym_short] = ACTIONS(4382), - [anon_sym_LBRACK] = ACTIONS(4382), - [anon_sym_static] = ACTIONS(4382), - [anon_sym_register] = ACTIONS(4382), - [anon_sym_inline] = ACTIONS(4382), - [anon_sym___inline] = ACTIONS(4382), - [anon_sym___inline__] = ACTIONS(4382), - [anon_sym___forceinline] = ACTIONS(4382), - [anon_sym_thread_local] = ACTIONS(4382), - [anon_sym___thread] = ACTIONS(4382), - [anon_sym_const] = ACTIONS(4382), - [anon_sym_constexpr] = ACTIONS(4382), - [anon_sym_volatile] = ACTIONS(4382), - [anon_sym_restrict] = ACTIONS(4382), - [anon_sym___restrict__] = ACTIONS(4382), - [anon_sym__Atomic] = ACTIONS(4382), - [anon_sym__Noreturn] = ACTIONS(4382), - [anon_sym_noreturn] = ACTIONS(4382), - [anon_sym_mutable] = ACTIONS(4382), - [anon_sym_constinit] = ACTIONS(4382), - [anon_sym_consteval] = ACTIONS(4382), - [sym_primitive_type] = ACTIONS(4382), - [anon_sym_enum] = ACTIONS(4382), - [anon_sym_class] = ACTIONS(4382), - [anon_sym_struct] = ACTIONS(4382), - [anon_sym_union] = ACTIONS(4382), - [anon_sym_if] = ACTIONS(4382), - [anon_sym_switch] = ACTIONS(4382), - [anon_sym_case] = ACTIONS(4382), - [anon_sym_default] = ACTIONS(4382), - [anon_sym_while] = ACTIONS(4382), - [anon_sym_do] = ACTIONS(4382), - [anon_sym_for] = ACTIONS(4382), - [anon_sym_return] = ACTIONS(4382), - [anon_sym_break] = ACTIONS(4382), - [anon_sym_continue] = ACTIONS(4382), - [anon_sym_goto] = ACTIONS(4382), - [anon_sym___try] = ACTIONS(4382), - [anon_sym___leave] = ACTIONS(4382), - [anon_sym_not] = ACTIONS(4382), - [anon_sym_compl] = ACTIONS(4382), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_sizeof] = ACTIONS(4382), - [anon_sym___alignof__] = ACTIONS(4382), - [anon_sym___alignof] = ACTIONS(4382), - [anon_sym__alignof] = ACTIONS(4382), - [anon_sym_alignof] = ACTIONS(4382), - [anon_sym__Alignof] = ACTIONS(4382), - [anon_sym_offsetof] = ACTIONS(4382), - [anon_sym__Generic] = ACTIONS(4382), - [anon_sym_asm] = ACTIONS(4382), - [anon_sym___asm__] = ACTIONS(4382), - [sym_number_literal] = ACTIONS(4384), - [anon_sym_L_SQUOTE] = ACTIONS(4384), - [anon_sym_u_SQUOTE] = ACTIONS(4384), - [anon_sym_U_SQUOTE] = ACTIONS(4384), - [anon_sym_u8_SQUOTE] = ACTIONS(4384), - [anon_sym_SQUOTE] = ACTIONS(4384), - [anon_sym_L_DQUOTE] = ACTIONS(4384), - [anon_sym_u_DQUOTE] = ACTIONS(4384), - [anon_sym_U_DQUOTE] = ACTIONS(4384), - [anon_sym_u8_DQUOTE] = ACTIONS(4384), - [anon_sym_DQUOTE] = ACTIONS(4384), - [sym_true] = ACTIONS(4382), - [sym_false] = ACTIONS(4382), - [anon_sym_NULL] = ACTIONS(4382), - [anon_sym_nullptr] = ACTIONS(4382), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4382), - [anon_sym_decltype] = ACTIONS(4382), - [anon_sym_virtual] = ACTIONS(4382), - [anon_sym_alignas] = ACTIONS(4382), - [anon_sym_typename] = ACTIONS(4382), - [anon_sym_template] = ACTIONS(4382), - [anon_sym_try] = ACTIONS(4382), - [anon_sym_delete] = ACTIONS(4382), - [anon_sym_throw] = ACTIONS(4382), - [anon_sym_co_return] = ACTIONS(4382), - [anon_sym_co_yield] = ACTIONS(4382), - [anon_sym_R_DQUOTE] = ACTIONS(4384), - [anon_sym_LR_DQUOTE] = ACTIONS(4384), - [anon_sym_uR_DQUOTE] = ACTIONS(4384), - [anon_sym_UR_DQUOTE] = ACTIONS(4384), - [anon_sym_u8R_DQUOTE] = ACTIONS(4384), - [anon_sym_co_await] = ACTIONS(4382), - [anon_sym_new] = ACTIONS(4382), - [anon_sym_requires] = ACTIONS(4382), - [sym_this] = ACTIONS(4382), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4384), - [sym_semgrep_named_ellipsis] = ACTIONS(4384), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_typename] = ACTIONS(4537), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1006] = { - [sym_identifier] = ACTIONS(3201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3203), - [anon_sym_LPAREN2] = ACTIONS(3203), - [anon_sym_BANG] = ACTIONS(3203), - [anon_sym_TILDE] = ACTIONS(3203), - [anon_sym_DASH] = ACTIONS(3201), - [anon_sym_PLUS] = ACTIONS(3201), - [anon_sym_STAR] = ACTIONS(3203), - [anon_sym_AMP] = ACTIONS(3203), - [anon_sym_SEMI] = ACTIONS(3203), - [anon_sym___extension__] = ACTIONS(3201), - [anon_sym_typedef] = ACTIONS(3201), - [anon_sym_extern] = ACTIONS(3201), - [anon_sym___attribute__] = ACTIONS(3201), - [anon_sym_COLON_COLON] = ACTIONS(3203), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3203), - [anon_sym___declspec] = ACTIONS(3201), - [anon_sym_LBRACE] = ACTIONS(3203), - [anon_sym_signed] = ACTIONS(3201), - [anon_sym_unsigned] = ACTIONS(3201), - [anon_sym_long] = ACTIONS(3201), - [anon_sym_short] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_static] = ACTIONS(3201), - [anon_sym_register] = ACTIONS(3201), - [anon_sym_inline] = ACTIONS(3201), - [anon_sym___inline] = ACTIONS(3201), - [anon_sym___inline__] = ACTIONS(3201), - [anon_sym___forceinline] = ACTIONS(3201), - [anon_sym_thread_local] = ACTIONS(3201), - [anon_sym___thread] = ACTIONS(3201), - [anon_sym_const] = ACTIONS(3201), - [anon_sym_constexpr] = ACTIONS(3201), - [anon_sym_volatile] = ACTIONS(3201), - [anon_sym_restrict] = ACTIONS(3201), - [anon_sym___restrict__] = ACTIONS(3201), - [anon_sym__Atomic] = ACTIONS(3201), - [anon_sym__Noreturn] = ACTIONS(3201), - [anon_sym_noreturn] = ACTIONS(3201), - [anon_sym_mutable] = ACTIONS(3201), - [anon_sym_constinit] = ACTIONS(3201), - [anon_sym_consteval] = ACTIONS(3201), - [sym_primitive_type] = ACTIONS(3201), - [anon_sym_enum] = ACTIONS(3201), - [anon_sym_class] = ACTIONS(3201), - [anon_sym_struct] = ACTIONS(3201), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_if] = ACTIONS(3201), - [anon_sym_else] = ACTIONS(3201), - [anon_sym_switch] = ACTIONS(3201), - [anon_sym_while] = ACTIONS(3201), - [anon_sym_do] = ACTIONS(3201), - [anon_sym_for] = ACTIONS(3201), - [anon_sym_return] = ACTIONS(3201), - [anon_sym_break] = ACTIONS(3201), - [anon_sym_continue] = ACTIONS(3201), - [anon_sym_goto] = ACTIONS(3201), - [anon_sym___try] = ACTIONS(3201), - [anon_sym___leave] = ACTIONS(3201), - [anon_sym_not] = ACTIONS(3201), - [anon_sym_compl] = ACTIONS(3201), - [anon_sym_DASH_DASH] = ACTIONS(3203), - [anon_sym_PLUS_PLUS] = ACTIONS(3203), - [anon_sym_sizeof] = ACTIONS(3201), - [anon_sym___alignof__] = ACTIONS(3201), - [anon_sym___alignof] = ACTIONS(3201), - [anon_sym__alignof] = ACTIONS(3201), - [anon_sym_alignof] = ACTIONS(3201), - [anon_sym__Alignof] = ACTIONS(3201), - [anon_sym_offsetof] = ACTIONS(3201), - [anon_sym__Generic] = ACTIONS(3201), - [anon_sym_asm] = ACTIONS(3201), - [anon_sym___asm__] = ACTIONS(3201), - [sym_number_literal] = ACTIONS(3203), - [anon_sym_L_SQUOTE] = ACTIONS(3203), - [anon_sym_u_SQUOTE] = ACTIONS(3203), - [anon_sym_U_SQUOTE] = ACTIONS(3203), - [anon_sym_u8_SQUOTE] = ACTIONS(3203), - [anon_sym_SQUOTE] = ACTIONS(3203), - [anon_sym_L_DQUOTE] = ACTIONS(3203), - [anon_sym_u_DQUOTE] = ACTIONS(3203), - [anon_sym_U_DQUOTE] = ACTIONS(3203), - [anon_sym_u8_DQUOTE] = ACTIONS(3203), - [anon_sym_DQUOTE] = ACTIONS(3203), - [sym_true] = ACTIONS(3201), - [sym_false] = ACTIONS(3201), - [anon_sym_NULL] = ACTIONS(3201), - [anon_sym_nullptr] = ACTIONS(3201), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3201), - [anon_sym_decltype] = ACTIONS(3201), - [anon_sym_virtual] = ACTIONS(3201), - [anon_sym_alignas] = ACTIONS(3201), - [anon_sym_typename] = ACTIONS(3201), - [anon_sym_template] = ACTIONS(3201), - [anon_sym_try] = ACTIONS(3201), - [anon_sym_delete] = ACTIONS(3201), - [anon_sym_throw] = ACTIONS(3201), - [anon_sym_co_return] = ACTIONS(3201), - [anon_sym_co_yield] = ACTIONS(3201), - [anon_sym_R_DQUOTE] = ACTIONS(3203), - [anon_sym_LR_DQUOTE] = ACTIONS(3203), - [anon_sym_uR_DQUOTE] = ACTIONS(3203), - [anon_sym_UR_DQUOTE] = ACTIONS(3203), - [anon_sym_u8R_DQUOTE] = ACTIONS(3203), - [anon_sym_co_await] = ACTIONS(3201), - [anon_sym_new] = ACTIONS(3201), - [anon_sym_requires] = ACTIONS(3201), - [sym_this] = ACTIONS(3201), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3203), - [sym_semgrep_named_ellipsis] = ACTIONS(3203), + [1028] = { + [sym_expression_statement] = STATE(2824), + [sym_expression] = STATE(5227), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9936), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_type_requirement] = STATE(2824), + [sym_compound_requirement] = STATE(2824), + [sym_requirement] = STATE(1009), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_requirement_seq_repeat1] = STATE(1009), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4713), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_typename] = ACTIONS(4537), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1007] = { - [sym_identifier] = ACTIONS(3167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3169), - [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___extension__] = ACTIONS(3167), - [anon_sym_typedef] = ACTIONS(3167), - [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_signed] = ACTIONS(3167), - [anon_sym_unsigned] = ACTIONS(3167), - [anon_sym_long] = ACTIONS(3167), - [anon_sym_short] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_static] = ACTIONS(3167), - [anon_sym_register] = ACTIONS(3167), - [anon_sym_inline] = ACTIONS(3167), - [anon_sym___inline] = ACTIONS(3167), - [anon_sym___inline__] = ACTIONS(3167), - [anon_sym___forceinline] = ACTIONS(3167), - [anon_sym_thread_local] = ACTIONS(3167), - [anon_sym___thread] = ACTIONS(3167), - [anon_sym_const] = ACTIONS(3167), - [anon_sym_constexpr] = ACTIONS(3167), - [anon_sym_volatile] = ACTIONS(3167), - [anon_sym_restrict] = ACTIONS(3167), - [anon_sym___restrict__] = ACTIONS(3167), - [anon_sym__Atomic] = ACTIONS(3167), - [anon_sym__Noreturn] = ACTIONS(3167), - [anon_sym_noreturn] = ACTIONS(3167), - [anon_sym_mutable] = ACTIONS(3167), - [anon_sym_constinit] = ACTIONS(3167), - [anon_sym_consteval] = 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_else] = ACTIONS(3167), - [anon_sym_switch] = 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___try] = ACTIONS(3167), - [anon_sym___leave] = 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), - [anon_sym___alignof__] = ACTIONS(3167), - [anon_sym___alignof] = ACTIONS(3167), - [anon_sym__alignof] = ACTIONS(3167), - [anon_sym_alignof] = ACTIONS(3167), - [anon_sym__Alignof] = ACTIONS(3167), - [anon_sym_offsetof] = ACTIONS(3167), - [anon_sym__Generic] = ACTIONS(3167), - [anon_sym_asm] = ACTIONS(3167), - [anon_sym___asm__] = 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), - [anon_sym_NULL] = ACTIONS(3167), - [anon_sym_nullptr] = ACTIONS(3167), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3167), - [anon_sym_decltype] = ACTIONS(3167), - [anon_sym_virtual] = ACTIONS(3167), - [anon_sym_alignas] = 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_R_DQUOTE] = ACTIONS(3169), - [anon_sym_LR_DQUOTE] = ACTIONS(3169), - [anon_sym_uR_DQUOTE] = ACTIONS(3169), - [anon_sym_UR_DQUOTE] = ACTIONS(3169), - [anon_sym_u8R_DQUOTE] = ACTIONS(3169), - [anon_sym_co_await] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_requires] = ACTIONS(3167), - [sym_this] = ACTIONS(3167), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3169), - [sym_semgrep_named_ellipsis] = ACTIONS(3169), - }, - [1008] = { - [sym_identifier] = ACTIONS(3189), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), - [anon_sym_LPAREN2] = ACTIONS(3191), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_TILDE] = ACTIONS(3191), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_STAR] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3191), - [anon_sym_SEMI] = ACTIONS(3191), - [anon_sym___extension__] = ACTIONS(3189), - [anon_sym_typedef] = ACTIONS(3189), - [anon_sym_extern] = ACTIONS(3189), - [anon_sym___attribute__] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3191), - [anon_sym___declspec] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3191), - [anon_sym_signed] = ACTIONS(3189), - [anon_sym_unsigned] = ACTIONS(3189), - [anon_sym_long] = ACTIONS(3189), - [anon_sym_short] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_static] = ACTIONS(3189), - [anon_sym_register] = ACTIONS(3189), - [anon_sym_inline] = ACTIONS(3189), - [anon_sym___inline] = ACTIONS(3189), - [anon_sym___inline__] = ACTIONS(3189), - [anon_sym___forceinline] = ACTIONS(3189), - [anon_sym_thread_local] = ACTIONS(3189), - [anon_sym___thread] = ACTIONS(3189), - [anon_sym_const] = ACTIONS(3189), - [anon_sym_constexpr] = ACTIONS(3189), - [anon_sym_volatile] = ACTIONS(3189), - [anon_sym_restrict] = ACTIONS(3189), - [anon_sym___restrict__] = ACTIONS(3189), - [anon_sym__Atomic] = ACTIONS(3189), - [anon_sym__Noreturn] = ACTIONS(3189), - [anon_sym_noreturn] = ACTIONS(3189), - [anon_sym_mutable] = ACTIONS(3189), - [anon_sym_constinit] = ACTIONS(3189), - [anon_sym_consteval] = ACTIONS(3189), - [sym_primitive_type] = ACTIONS(3189), - [anon_sym_enum] = ACTIONS(3189), - [anon_sym_class] = ACTIONS(3189), - [anon_sym_struct] = ACTIONS(3189), - [anon_sym_union] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_switch] = ACTIONS(3189), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_do] = ACTIONS(3189), - [anon_sym_for] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_break] = ACTIONS(3189), - [anon_sym_continue] = ACTIONS(3189), - [anon_sym_goto] = ACTIONS(3189), - [anon_sym___try] = ACTIONS(3189), - [anon_sym___leave] = ACTIONS(3189), - [anon_sym_not] = ACTIONS(3189), - [anon_sym_compl] = ACTIONS(3189), - [anon_sym_DASH_DASH] = ACTIONS(3191), - [anon_sym_PLUS_PLUS] = ACTIONS(3191), - [anon_sym_sizeof] = ACTIONS(3189), - [anon_sym___alignof__] = ACTIONS(3189), - [anon_sym___alignof] = ACTIONS(3189), - [anon_sym__alignof] = ACTIONS(3189), - [anon_sym_alignof] = ACTIONS(3189), - [anon_sym__Alignof] = ACTIONS(3189), - [anon_sym_offsetof] = ACTIONS(3189), - [anon_sym__Generic] = ACTIONS(3189), - [anon_sym_asm] = ACTIONS(3189), - [anon_sym___asm__] = ACTIONS(3189), - [sym_number_literal] = ACTIONS(3191), - [anon_sym_L_SQUOTE] = ACTIONS(3191), - [anon_sym_u_SQUOTE] = ACTIONS(3191), - [anon_sym_U_SQUOTE] = ACTIONS(3191), - [anon_sym_u8_SQUOTE] = ACTIONS(3191), - [anon_sym_SQUOTE] = ACTIONS(3191), - [anon_sym_L_DQUOTE] = ACTIONS(3191), - [anon_sym_u_DQUOTE] = ACTIONS(3191), - [anon_sym_U_DQUOTE] = ACTIONS(3191), - [anon_sym_u8_DQUOTE] = ACTIONS(3191), - [anon_sym_DQUOTE] = ACTIONS(3191), - [sym_true] = ACTIONS(3189), - [sym_false] = ACTIONS(3189), - [anon_sym_NULL] = ACTIONS(3189), - [anon_sym_nullptr] = ACTIONS(3189), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3189), - [anon_sym_decltype] = ACTIONS(3189), - [anon_sym_virtual] = ACTIONS(3189), - [anon_sym_alignas] = ACTIONS(3189), - [anon_sym_typename] = ACTIONS(3189), - [anon_sym_template] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_delete] = ACTIONS(3189), - [anon_sym_throw] = ACTIONS(3189), - [anon_sym_co_return] = ACTIONS(3189), - [anon_sym_co_yield] = ACTIONS(3189), - [anon_sym_R_DQUOTE] = ACTIONS(3191), - [anon_sym_LR_DQUOTE] = ACTIONS(3191), - [anon_sym_uR_DQUOTE] = ACTIONS(3191), - [anon_sym_UR_DQUOTE] = ACTIONS(3191), - [anon_sym_u8R_DQUOTE] = ACTIONS(3191), - [anon_sym_co_await] = ACTIONS(3189), - [anon_sym_new] = ACTIONS(3189), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3189), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3191), - [sym_semgrep_named_ellipsis] = ACTIONS(3191), - }, - [1009] = { - [sym_identifier] = ACTIONS(4378), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4380), - [anon_sym_LPAREN2] = ACTIONS(4380), - [anon_sym_BANG] = ACTIONS(4380), - [anon_sym_TILDE] = ACTIONS(4380), - [anon_sym_DASH] = ACTIONS(4378), - [anon_sym_PLUS] = ACTIONS(4378), - [anon_sym_STAR] = ACTIONS(4380), - [anon_sym_AMP] = ACTIONS(4380), - [anon_sym_SEMI] = ACTIONS(4380), - [anon_sym___extension__] = ACTIONS(4378), - [anon_sym_extern] = ACTIONS(4378), - [anon_sym___attribute__] = ACTIONS(4378), - [anon_sym_COLON_COLON] = ACTIONS(4380), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4380), - [anon_sym___declspec] = ACTIONS(4378), - [anon_sym_LBRACE] = ACTIONS(4380), - [anon_sym_signed] = ACTIONS(4378), - [anon_sym_unsigned] = ACTIONS(4378), - [anon_sym_long] = ACTIONS(4378), - [anon_sym_short] = ACTIONS(4378), - [anon_sym_LBRACK] = ACTIONS(4378), - [anon_sym_static] = ACTIONS(4378), - [anon_sym_register] = ACTIONS(4378), - [anon_sym_inline] = ACTIONS(4378), - [anon_sym___inline] = ACTIONS(4378), - [anon_sym___inline__] = ACTIONS(4378), - [anon_sym___forceinline] = ACTIONS(4378), - [anon_sym_thread_local] = ACTIONS(4378), - [anon_sym___thread] = ACTIONS(4378), - [anon_sym_const] = ACTIONS(4378), - [anon_sym_constexpr] = ACTIONS(4378), - [anon_sym_volatile] = ACTIONS(4378), - [anon_sym_restrict] = ACTIONS(4378), - [anon_sym___restrict__] = ACTIONS(4378), - [anon_sym__Atomic] = ACTIONS(4378), - [anon_sym__Noreturn] = ACTIONS(4378), - [anon_sym_noreturn] = ACTIONS(4378), - [anon_sym_mutable] = ACTIONS(4378), - [anon_sym_constinit] = ACTIONS(4378), - [anon_sym_consteval] = ACTIONS(4378), - [sym_primitive_type] = ACTIONS(4378), - [anon_sym_enum] = ACTIONS(4378), - [anon_sym_class] = ACTIONS(4378), - [anon_sym_struct] = ACTIONS(4378), - [anon_sym_union] = ACTIONS(4378), - [anon_sym_if] = ACTIONS(4378), - [anon_sym_switch] = ACTIONS(4378), - [anon_sym_case] = ACTIONS(4378), - [anon_sym_default] = ACTIONS(4378), - [anon_sym_while] = ACTIONS(4378), - [anon_sym_do] = ACTIONS(4378), - [anon_sym_for] = ACTIONS(4378), - [anon_sym_return] = ACTIONS(4378), - [anon_sym_break] = ACTIONS(4378), - [anon_sym_continue] = ACTIONS(4378), - [anon_sym_goto] = ACTIONS(4378), - [anon_sym___try] = ACTIONS(4378), - [anon_sym___leave] = ACTIONS(4378), - [anon_sym_not] = ACTIONS(4378), - [anon_sym_compl] = ACTIONS(4378), - [anon_sym_DASH_DASH] = ACTIONS(4380), - [anon_sym_PLUS_PLUS] = ACTIONS(4380), - [anon_sym_sizeof] = ACTIONS(4378), - [anon_sym___alignof__] = ACTIONS(4378), - [anon_sym___alignof] = ACTIONS(4378), - [anon_sym__alignof] = ACTIONS(4378), - [anon_sym_alignof] = ACTIONS(4378), - [anon_sym__Alignof] = ACTIONS(4378), - [anon_sym_offsetof] = ACTIONS(4378), - [anon_sym__Generic] = ACTIONS(4378), - [anon_sym_asm] = ACTIONS(4378), - [anon_sym___asm__] = ACTIONS(4378), - [sym_number_literal] = ACTIONS(4380), - [anon_sym_L_SQUOTE] = ACTIONS(4380), - [anon_sym_u_SQUOTE] = ACTIONS(4380), - [anon_sym_U_SQUOTE] = ACTIONS(4380), - [anon_sym_u8_SQUOTE] = ACTIONS(4380), - [anon_sym_SQUOTE] = ACTIONS(4380), - [anon_sym_L_DQUOTE] = ACTIONS(4380), - [anon_sym_u_DQUOTE] = ACTIONS(4380), - [anon_sym_U_DQUOTE] = ACTIONS(4380), - [anon_sym_u8_DQUOTE] = ACTIONS(4380), - [anon_sym_DQUOTE] = ACTIONS(4380), - [sym_true] = ACTIONS(4378), - [sym_false] = ACTIONS(4378), - [anon_sym_NULL] = ACTIONS(4378), - [anon_sym_nullptr] = ACTIONS(4378), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4378), - [anon_sym_decltype] = ACTIONS(4378), - [anon_sym_virtual] = ACTIONS(4378), - [anon_sym_alignas] = ACTIONS(4378), - [anon_sym_typename] = ACTIONS(4378), - [anon_sym_template] = ACTIONS(4378), - [anon_sym_try] = ACTIONS(4378), - [anon_sym_delete] = ACTIONS(4378), - [anon_sym_throw] = ACTIONS(4378), - [anon_sym_co_return] = ACTIONS(4378), - [anon_sym_co_yield] = ACTIONS(4378), - [anon_sym_R_DQUOTE] = ACTIONS(4380), - [anon_sym_LR_DQUOTE] = ACTIONS(4380), - [anon_sym_uR_DQUOTE] = ACTIONS(4380), - [anon_sym_UR_DQUOTE] = ACTIONS(4380), - [anon_sym_u8R_DQUOTE] = ACTIONS(4380), - [anon_sym_co_await] = ACTIONS(4378), - [anon_sym_new] = ACTIONS(4378), - [anon_sym_requires] = ACTIONS(4378), - [sym_this] = ACTIONS(4378), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4380), - [sym_semgrep_named_ellipsis] = ACTIONS(4380), - }, - [1010] = { - [sym_identifier] = ACTIONS(3171), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3173), - [anon_sym_LPAREN2] = ACTIONS(3173), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3171), - [anon_sym_PLUS] = ACTIONS(3171), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_SEMI] = ACTIONS(3173), - [anon_sym___extension__] = ACTIONS(3171), - [anon_sym_typedef] = ACTIONS(3171), - [anon_sym_extern] = ACTIONS(3171), - [anon_sym___attribute__] = ACTIONS(3171), - [anon_sym_COLON_COLON] = ACTIONS(3173), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3173), - [anon_sym___declspec] = ACTIONS(3171), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_signed] = ACTIONS(3171), - [anon_sym_unsigned] = ACTIONS(3171), - [anon_sym_long] = ACTIONS(3171), - [anon_sym_short] = ACTIONS(3171), - [anon_sym_LBRACK] = ACTIONS(3171), - [anon_sym_static] = ACTIONS(3171), - [anon_sym_register] = ACTIONS(3171), - [anon_sym_inline] = ACTIONS(3171), - [anon_sym___inline] = ACTIONS(3171), - [anon_sym___inline__] = ACTIONS(3171), - [anon_sym___forceinline] = ACTIONS(3171), - [anon_sym_thread_local] = ACTIONS(3171), - [anon_sym___thread] = ACTIONS(3171), - [anon_sym_const] = ACTIONS(3171), - [anon_sym_constexpr] = ACTIONS(3171), - [anon_sym_volatile] = ACTIONS(3171), - [anon_sym_restrict] = ACTIONS(3171), - [anon_sym___restrict__] = ACTIONS(3171), - [anon_sym__Atomic] = ACTIONS(3171), - [anon_sym__Noreturn] = ACTIONS(3171), - [anon_sym_noreturn] = ACTIONS(3171), - [anon_sym_mutable] = ACTIONS(3171), - [anon_sym_constinit] = ACTIONS(3171), - [anon_sym_consteval] = ACTIONS(3171), - [sym_primitive_type] = ACTIONS(3171), - [anon_sym_enum] = ACTIONS(3171), - [anon_sym_class] = ACTIONS(3171), - [anon_sym_struct] = ACTIONS(3171), - [anon_sym_union] = ACTIONS(3171), - [anon_sym_if] = ACTIONS(3171), - [anon_sym_else] = ACTIONS(3171), - [anon_sym_switch] = ACTIONS(3171), - [anon_sym_while] = ACTIONS(3171), - [anon_sym_do] = ACTIONS(3171), - [anon_sym_for] = ACTIONS(3171), - [anon_sym_return] = ACTIONS(3171), - [anon_sym_break] = ACTIONS(3171), - [anon_sym_continue] = ACTIONS(3171), - [anon_sym_goto] = ACTIONS(3171), - [anon_sym___try] = ACTIONS(3171), - [anon_sym___leave] = ACTIONS(3171), - [anon_sym_not] = ACTIONS(3171), - [anon_sym_compl] = ACTIONS(3171), - [anon_sym_DASH_DASH] = ACTIONS(3173), - [anon_sym_PLUS_PLUS] = ACTIONS(3173), - [anon_sym_sizeof] = ACTIONS(3171), - [anon_sym___alignof__] = ACTIONS(3171), - [anon_sym___alignof] = ACTIONS(3171), - [anon_sym__alignof] = ACTIONS(3171), - [anon_sym_alignof] = ACTIONS(3171), - [anon_sym__Alignof] = ACTIONS(3171), - [anon_sym_offsetof] = ACTIONS(3171), - [anon_sym__Generic] = ACTIONS(3171), - [anon_sym_asm] = ACTIONS(3171), - [anon_sym___asm__] = ACTIONS(3171), - [sym_number_literal] = ACTIONS(3173), - [anon_sym_L_SQUOTE] = ACTIONS(3173), - [anon_sym_u_SQUOTE] = ACTIONS(3173), - [anon_sym_U_SQUOTE] = ACTIONS(3173), - [anon_sym_u8_SQUOTE] = ACTIONS(3173), - [anon_sym_SQUOTE] = ACTIONS(3173), - [anon_sym_L_DQUOTE] = ACTIONS(3173), - [anon_sym_u_DQUOTE] = ACTIONS(3173), - [anon_sym_U_DQUOTE] = ACTIONS(3173), - [anon_sym_u8_DQUOTE] = ACTIONS(3173), - [anon_sym_DQUOTE] = ACTIONS(3173), - [sym_true] = ACTIONS(3171), - [sym_false] = ACTIONS(3171), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3171), - [anon_sym_decltype] = ACTIONS(3171), - [anon_sym_virtual] = ACTIONS(3171), - [anon_sym_alignas] = ACTIONS(3171), - [anon_sym_typename] = ACTIONS(3171), - [anon_sym_template] = ACTIONS(3171), - [anon_sym_try] = ACTIONS(3171), - [anon_sym_delete] = ACTIONS(3171), - [anon_sym_throw] = ACTIONS(3171), - [anon_sym_co_return] = ACTIONS(3171), - [anon_sym_co_yield] = ACTIONS(3171), - [anon_sym_R_DQUOTE] = ACTIONS(3173), - [anon_sym_LR_DQUOTE] = ACTIONS(3173), - [anon_sym_uR_DQUOTE] = ACTIONS(3173), - [anon_sym_UR_DQUOTE] = ACTIONS(3173), - [anon_sym_u8R_DQUOTE] = ACTIONS(3173), - [anon_sym_co_await] = ACTIONS(3171), - [anon_sym_new] = ACTIONS(3171), - [anon_sym_requires] = ACTIONS(3171), - [sym_this] = ACTIONS(3171), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3173), - [sym_semgrep_named_ellipsis] = ACTIONS(3173), - }, - [1011] = { - [sym_identifier] = ACTIONS(4508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4511), - [anon_sym_LPAREN2] = ACTIONS(4511), - [anon_sym_BANG] = ACTIONS(4511), - [anon_sym_TILDE] = ACTIONS(4511), - [anon_sym_DASH] = ACTIONS(4516), - [anon_sym_PLUS] = ACTIONS(4516), - [anon_sym_STAR] = ACTIONS(4511), - [anon_sym_AMP] = ACTIONS(4511), - [anon_sym_SEMI] = ACTIONS(4511), - [anon_sym___extension__] = ACTIONS(4520), - [anon_sym_extern] = ACTIONS(4520), - [anon_sym___attribute__] = ACTIONS(4520), - [anon_sym_COLON_COLON] = ACTIONS(4513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4513), - [anon_sym___declspec] = ACTIONS(4520), - [anon_sym_LBRACE] = ACTIONS(4511), - [anon_sym_signed] = ACTIONS(4520), - [anon_sym_unsigned] = ACTIONS(4520), - [anon_sym_long] = ACTIONS(4520), - [anon_sym_short] = ACTIONS(4520), - [anon_sym_LBRACK] = ACTIONS(4516), - [anon_sym_static] = ACTIONS(4520), - [anon_sym_register] = ACTIONS(4520), - [anon_sym_inline] = ACTIONS(4520), - [anon_sym___inline] = ACTIONS(4520), - [anon_sym___inline__] = ACTIONS(4520), - [anon_sym___forceinline] = ACTIONS(4520), - [anon_sym_thread_local] = ACTIONS(4520), - [anon_sym___thread] = ACTIONS(4520), - [anon_sym_const] = ACTIONS(4520), - [anon_sym_constexpr] = ACTIONS(4520), - [anon_sym_volatile] = ACTIONS(4520), - [anon_sym_restrict] = ACTIONS(4520), - [anon_sym___restrict__] = ACTIONS(4520), - [anon_sym__Atomic] = ACTIONS(4520), - [anon_sym__Noreturn] = ACTIONS(4520), - [anon_sym_noreturn] = ACTIONS(4520), - [anon_sym_mutable] = ACTIONS(4520), - [anon_sym_constinit] = ACTIONS(4520), - [anon_sym_consteval] = ACTIONS(4520), - [sym_primitive_type] = ACTIONS(4508), - [anon_sym_enum] = ACTIONS(4520), - [anon_sym_class] = ACTIONS(4520), - [anon_sym_struct] = ACTIONS(4520), - [anon_sym_union] = ACTIONS(4520), - [anon_sym_if] = ACTIONS(4516), - [anon_sym_switch] = ACTIONS(4516), - [anon_sym_case] = ACTIONS(4516), - [anon_sym_default] = ACTIONS(4516), - [anon_sym_while] = ACTIONS(4516), - [anon_sym_do] = ACTIONS(4516), - [anon_sym_for] = ACTIONS(4516), - [anon_sym_return] = ACTIONS(4516), - [anon_sym_break] = ACTIONS(4516), - [anon_sym_continue] = ACTIONS(4516), - [anon_sym_goto] = ACTIONS(4516), - [anon_sym___try] = ACTIONS(4516), - [anon_sym___leave] = ACTIONS(4516), - [anon_sym_not] = ACTIONS(4516), - [anon_sym_compl] = ACTIONS(4516), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(4516), - [anon_sym___alignof__] = ACTIONS(4516), - [anon_sym___alignof] = ACTIONS(4516), - [anon_sym__alignof] = ACTIONS(4516), - [anon_sym_alignof] = ACTIONS(4516), - [anon_sym__Alignof] = ACTIONS(4516), - [anon_sym_offsetof] = ACTIONS(4516), - [anon_sym__Generic] = ACTIONS(4516), - [anon_sym_asm] = ACTIONS(4516), - [anon_sym___asm__] = ACTIONS(4516), - [sym_number_literal] = ACTIONS(4511), - [anon_sym_L_SQUOTE] = ACTIONS(4511), - [anon_sym_u_SQUOTE] = ACTIONS(4511), - [anon_sym_U_SQUOTE] = ACTIONS(4511), - [anon_sym_u8_SQUOTE] = ACTIONS(4511), - [anon_sym_SQUOTE] = ACTIONS(4511), - [anon_sym_L_DQUOTE] = ACTIONS(4511), - [anon_sym_u_DQUOTE] = ACTIONS(4511), - [anon_sym_U_DQUOTE] = ACTIONS(4511), - [anon_sym_u8_DQUOTE] = ACTIONS(4511), - [anon_sym_DQUOTE] = ACTIONS(4511), - [sym_true] = ACTIONS(4516), - [sym_false] = ACTIONS(4516), - [anon_sym_NULL] = ACTIONS(4516), - [anon_sym_nullptr] = ACTIONS(4516), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4520), - [anon_sym_decltype] = ACTIONS(4508), - [anon_sym_virtual] = ACTIONS(4520), - [anon_sym_alignas] = ACTIONS(4520), - [anon_sym_typename] = ACTIONS(4520), - [anon_sym_template] = ACTIONS(4508), - [anon_sym_try] = ACTIONS(4516), - [anon_sym_delete] = ACTIONS(4516), - [anon_sym_throw] = ACTIONS(4516), - [anon_sym_co_return] = ACTIONS(4516), - [anon_sym_co_yield] = ACTIONS(4516), - [anon_sym_R_DQUOTE] = ACTIONS(4511), - [anon_sym_LR_DQUOTE] = ACTIONS(4511), - [anon_sym_uR_DQUOTE] = ACTIONS(4511), - [anon_sym_UR_DQUOTE] = ACTIONS(4511), - [anon_sym_u8R_DQUOTE] = ACTIONS(4511), - [anon_sym_co_await] = ACTIONS(4516), - [anon_sym_new] = ACTIONS(4516), - [anon_sym_requires] = ACTIONS(4516), - [sym_this] = ACTIONS(4516), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4511), - [sym_semgrep_named_ellipsis] = ACTIONS(4511), - }, - [1012] = { - [sym_identifier] = ACTIONS(3245), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3247), - [anon_sym_LPAREN2] = ACTIONS(3247), - [anon_sym_BANG] = ACTIONS(3247), - [anon_sym_TILDE] = ACTIONS(3247), - [anon_sym_DASH] = ACTIONS(3245), - [anon_sym_PLUS] = ACTIONS(3245), - [anon_sym_STAR] = ACTIONS(3247), - [anon_sym_AMP] = ACTIONS(3247), - [anon_sym_SEMI] = ACTIONS(3247), - [anon_sym___extension__] = ACTIONS(3245), - [anon_sym_typedef] = ACTIONS(3245), - [anon_sym_extern] = ACTIONS(3245), - [anon_sym___attribute__] = ACTIONS(3245), - [anon_sym_COLON_COLON] = ACTIONS(3247), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3247), - [anon_sym___declspec] = ACTIONS(3245), - [anon_sym_LBRACE] = ACTIONS(3247), - [anon_sym_signed] = ACTIONS(3245), - [anon_sym_unsigned] = ACTIONS(3245), - [anon_sym_long] = ACTIONS(3245), - [anon_sym_short] = ACTIONS(3245), - [anon_sym_LBRACK] = ACTIONS(3245), - [anon_sym_static] = ACTIONS(3245), - [anon_sym_register] = ACTIONS(3245), - [anon_sym_inline] = ACTIONS(3245), - [anon_sym___inline] = ACTIONS(3245), - [anon_sym___inline__] = ACTIONS(3245), - [anon_sym___forceinline] = ACTIONS(3245), - [anon_sym_thread_local] = ACTIONS(3245), - [anon_sym___thread] = ACTIONS(3245), - [anon_sym_const] = ACTIONS(3245), - [anon_sym_constexpr] = ACTIONS(3245), - [anon_sym_volatile] = ACTIONS(3245), - [anon_sym_restrict] = ACTIONS(3245), - [anon_sym___restrict__] = ACTIONS(3245), - [anon_sym__Atomic] = ACTIONS(3245), - [anon_sym__Noreturn] = ACTIONS(3245), - [anon_sym_noreturn] = ACTIONS(3245), - [anon_sym_mutable] = ACTIONS(3245), - [anon_sym_constinit] = ACTIONS(3245), - [anon_sym_consteval] = ACTIONS(3245), - [sym_primitive_type] = ACTIONS(3245), - [anon_sym_enum] = ACTIONS(3245), - [anon_sym_class] = ACTIONS(3245), - [anon_sym_struct] = ACTIONS(3245), - [anon_sym_union] = ACTIONS(3245), - [anon_sym_if] = ACTIONS(3245), - [anon_sym_else] = ACTIONS(3245), - [anon_sym_switch] = ACTIONS(3245), - [anon_sym_while] = ACTIONS(3245), - [anon_sym_do] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(3245), - [anon_sym_return] = ACTIONS(3245), - [anon_sym_break] = ACTIONS(3245), - [anon_sym_continue] = ACTIONS(3245), - [anon_sym_goto] = ACTIONS(3245), - [anon_sym___try] = ACTIONS(3245), - [anon_sym___leave] = ACTIONS(3245), - [anon_sym_not] = ACTIONS(3245), - [anon_sym_compl] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_PLUS_PLUS] = ACTIONS(3247), - [anon_sym_sizeof] = ACTIONS(3245), - [anon_sym___alignof__] = ACTIONS(3245), - [anon_sym___alignof] = ACTIONS(3245), - [anon_sym__alignof] = ACTIONS(3245), - [anon_sym_alignof] = ACTIONS(3245), - [anon_sym__Alignof] = ACTIONS(3245), - [anon_sym_offsetof] = ACTIONS(3245), - [anon_sym__Generic] = ACTIONS(3245), - [anon_sym_asm] = ACTIONS(3245), - [anon_sym___asm__] = ACTIONS(3245), - [sym_number_literal] = ACTIONS(3247), - [anon_sym_L_SQUOTE] = ACTIONS(3247), - [anon_sym_u_SQUOTE] = ACTIONS(3247), - [anon_sym_U_SQUOTE] = ACTIONS(3247), - [anon_sym_u8_SQUOTE] = ACTIONS(3247), - [anon_sym_SQUOTE] = ACTIONS(3247), - [anon_sym_L_DQUOTE] = ACTIONS(3247), - [anon_sym_u_DQUOTE] = ACTIONS(3247), - [anon_sym_U_DQUOTE] = ACTIONS(3247), - [anon_sym_u8_DQUOTE] = ACTIONS(3247), - [anon_sym_DQUOTE] = ACTIONS(3247), - [sym_true] = ACTIONS(3245), - [sym_false] = ACTIONS(3245), - [anon_sym_NULL] = ACTIONS(3245), - [anon_sym_nullptr] = ACTIONS(3245), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3245), - [anon_sym_decltype] = ACTIONS(3245), - [anon_sym_virtual] = ACTIONS(3245), - [anon_sym_alignas] = ACTIONS(3245), - [anon_sym_typename] = ACTIONS(3245), - [anon_sym_template] = ACTIONS(3245), - [anon_sym_try] = ACTIONS(3245), - [anon_sym_delete] = ACTIONS(3245), - [anon_sym_throw] = ACTIONS(3245), - [anon_sym_co_return] = ACTIONS(3245), - [anon_sym_co_yield] = ACTIONS(3245), - [anon_sym_R_DQUOTE] = ACTIONS(3247), - [anon_sym_LR_DQUOTE] = ACTIONS(3247), - [anon_sym_uR_DQUOTE] = ACTIONS(3247), - [anon_sym_UR_DQUOTE] = ACTIONS(3247), - [anon_sym_u8R_DQUOTE] = ACTIONS(3247), - [anon_sym_co_await] = ACTIONS(3245), - [anon_sym_new] = ACTIONS(3245), - [anon_sym_requires] = ACTIONS(3245), - [sym_this] = ACTIONS(3245), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3247), - [sym_semgrep_named_ellipsis] = ACTIONS(3247), - }, - [1013] = { - [sym_identifier] = ACTIONS(3121), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3123), - [anon_sym_LPAREN2] = ACTIONS(3123), - [anon_sym_BANG] = ACTIONS(3123), - [anon_sym_TILDE] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3121), - [anon_sym_PLUS] = ACTIONS(3121), - [anon_sym_STAR] = ACTIONS(3123), - [anon_sym_AMP] = ACTIONS(3123), - [anon_sym_SEMI] = ACTIONS(3123), - [anon_sym___extension__] = ACTIONS(3121), - [anon_sym_typedef] = ACTIONS(3121), - [anon_sym_extern] = ACTIONS(3121), - [anon_sym___attribute__] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(3123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3123), - [anon_sym___declspec] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(3123), - [anon_sym_signed] = ACTIONS(3121), - [anon_sym_unsigned] = ACTIONS(3121), - [anon_sym_long] = ACTIONS(3121), - [anon_sym_short] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3121), - [anon_sym_static] = ACTIONS(3121), - [anon_sym_register] = ACTIONS(3121), - [anon_sym_inline] = ACTIONS(3121), - [anon_sym___inline] = ACTIONS(3121), - [anon_sym___inline__] = ACTIONS(3121), - [anon_sym___forceinline] = ACTIONS(3121), - [anon_sym_thread_local] = ACTIONS(3121), - [anon_sym___thread] = ACTIONS(3121), - [anon_sym_const] = ACTIONS(3121), - [anon_sym_constexpr] = ACTIONS(3121), - [anon_sym_volatile] = ACTIONS(3121), - [anon_sym_restrict] = ACTIONS(3121), - [anon_sym___restrict__] = ACTIONS(3121), - [anon_sym__Atomic] = ACTIONS(3121), - [anon_sym__Noreturn] = ACTIONS(3121), - [anon_sym_noreturn] = ACTIONS(3121), - [anon_sym_mutable] = ACTIONS(3121), - [anon_sym_constinit] = ACTIONS(3121), - [anon_sym_consteval] = ACTIONS(3121), - [sym_primitive_type] = ACTIONS(3121), - [anon_sym_enum] = ACTIONS(3121), - [anon_sym_class] = ACTIONS(3121), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_if] = ACTIONS(3121), - [anon_sym_else] = ACTIONS(3121), - [anon_sym_switch] = ACTIONS(3121), - [anon_sym_while] = ACTIONS(3121), - [anon_sym_do] = ACTIONS(3121), - [anon_sym_for] = ACTIONS(3121), - [anon_sym_return] = ACTIONS(3121), - [anon_sym_break] = ACTIONS(3121), - [anon_sym_continue] = ACTIONS(3121), - [anon_sym_goto] = ACTIONS(3121), - [anon_sym___try] = ACTIONS(3121), - [anon_sym___leave] = ACTIONS(3121), - [anon_sym_not] = ACTIONS(3121), - [anon_sym_compl] = ACTIONS(3121), - [anon_sym_DASH_DASH] = ACTIONS(3123), - [anon_sym_PLUS_PLUS] = ACTIONS(3123), - [anon_sym_sizeof] = ACTIONS(3121), - [anon_sym___alignof__] = ACTIONS(3121), - [anon_sym___alignof] = ACTIONS(3121), - [anon_sym__alignof] = ACTIONS(3121), - [anon_sym_alignof] = ACTIONS(3121), - [anon_sym__Alignof] = ACTIONS(3121), - [anon_sym_offsetof] = ACTIONS(3121), - [anon_sym__Generic] = ACTIONS(3121), - [anon_sym_asm] = ACTIONS(3121), - [anon_sym___asm__] = ACTIONS(3121), - [sym_number_literal] = ACTIONS(3123), - [anon_sym_L_SQUOTE] = ACTIONS(3123), - [anon_sym_u_SQUOTE] = ACTIONS(3123), - [anon_sym_U_SQUOTE] = ACTIONS(3123), - [anon_sym_u8_SQUOTE] = ACTIONS(3123), - [anon_sym_SQUOTE] = ACTIONS(3123), - [anon_sym_L_DQUOTE] = ACTIONS(3123), - [anon_sym_u_DQUOTE] = ACTIONS(3123), - [anon_sym_U_DQUOTE] = ACTIONS(3123), - [anon_sym_u8_DQUOTE] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3123), - [sym_true] = ACTIONS(3121), - [sym_false] = ACTIONS(3121), - [anon_sym_NULL] = ACTIONS(3121), - [anon_sym_nullptr] = ACTIONS(3121), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3121), - [anon_sym_decltype] = ACTIONS(3121), - [anon_sym_virtual] = ACTIONS(3121), - [anon_sym_alignas] = ACTIONS(3121), - [anon_sym_typename] = ACTIONS(3121), - [anon_sym_template] = ACTIONS(3121), - [anon_sym_try] = ACTIONS(3121), - [anon_sym_delete] = ACTIONS(3121), - [anon_sym_throw] = ACTIONS(3121), - [anon_sym_co_return] = ACTIONS(3121), - [anon_sym_co_yield] = ACTIONS(3121), - [anon_sym_R_DQUOTE] = ACTIONS(3123), - [anon_sym_LR_DQUOTE] = ACTIONS(3123), - [anon_sym_uR_DQUOTE] = ACTIONS(3123), - [anon_sym_UR_DQUOTE] = ACTIONS(3123), - [anon_sym_u8R_DQUOTE] = ACTIONS(3123), - [anon_sym_co_await] = ACTIONS(3121), - [anon_sym_new] = ACTIONS(3121), - [anon_sym_requires] = ACTIONS(3121), - [sym_this] = ACTIONS(3121), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3123), - [sym_semgrep_named_ellipsis] = ACTIONS(3123), - }, - [1014] = { - [sym_identifier] = ACTIONS(3207), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3209), - [anon_sym_LPAREN2] = ACTIONS(3209), - [anon_sym_BANG] = ACTIONS(3209), - [anon_sym_TILDE] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(3209), - [anon_sym_AMP] = ACTIONS(3209), - [anon_sym_SEMI] = ACTIONS(3209), - [anon_sym___extension__] = ACTIONS(3207), - [anon_sym_typedef] = ACTIONS(3207), - [anon_sym_extern] = ACTIONS(3207), - [anon_sym___attribute__] = ACTIONS(3207), - [anon_sym_COLON_COLON] = ACTIONS(3209), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3209), - [anon_sym___declspec] = ACTIONS(3207), - [anon_sym_LBRACE] = ACTIONS(3209), - [anon_sym_signed] = ACTIONS(3207), - [anon_sym_unsigned] = ACTIONS(3207), - [anon_sym_long] = ACTIONS(3207), - [anon_sym_short] = ACTIONS(3207), - [anon_sym_LBRACK] = ACTIONS(3207), - [anon_sym_static] = ACTIONS(3207), - [anon_sym_register] = ACTIONS(3207), - [anon_sym_inline] = ACTIONS(3207), - [anon_sym___inline] = ACTIONS(3207), - [anon_sym___inline__] = ACTIONS(3207), - [anon_sym___forceinline] = ACTIONS(3207), - [anon_sym_thread_local] = ACTIONS(3207), - [anon_sym___thread] = ACTIONS(3207), - [anon_sym_const] = ACTIONS(3207), - [anon_sym_constexpr] = ACTIONS(3207), - [anon_sym_volatile] = ACTIONS(3207), - [anon_sym_restrict] = ACTIONS(3207), - [anon_sym___restrict__] = ACTIONS(3207), - [anon_sym__Atomic] = ACTIONS(3207), - [anon_sym__Noreturn] = ACTIONS(3207), - [anon_sym_noreturn] = ACTIONS(3207), - [anon_sym_mutable] = ACTIONS(3207), - [anon_sym_constinit] = ACTIONS(3207), - [anon_sym_consteval] = ACTIONS(3207), - [sym_primitive_type] = ACTIONS(3207), - [anon_sym_enum] = ACTIONS(3207), - [anon_sym_class] = ACTIONS(3207), - [anon_sym_struct] = ACTIONS(3207), - [anon_sym_union] = ACTIONS(3207), - [anon_sym_if] = ACTIONS(3207), - [anon_sym_else] = ACTIONS(3207), - [anon_sym_switch] = ACTIONS(3207), - [anon_sym_while] = ACTIONS(3207), - [anon_sym_do] = ACTIONS(3207), - [anon_sym_for] = ACTIONS(3207), - [anon_sym_return] = ACTIONS(3207), - [anon_sym_break] = ACTIONS(3207), - [anon_sym_continue] = ACTIONS(3207), - [anon_sym_goto] = ACTIONS(3207), - [anon_sym___try] = ACTIONS(3207), - [anon_sym___leave] = ACTIONS(3207), - [anon_sym_not] = ACTIONS(3207), - [anon_sym_compl] = ACTIONS(3207), - [anon_sym_DASH_DASH] = ACTIONS(3209), - [anon_sym_PLUS_PLUS] = ACTIONS(3209), - [anon_sym_sizeof] = ACTIONS(3207), - [anon_sym___alignof__] = ACTIONS(3207), - [anon_sym___alignof] = ACTIONS(3207), - [anon_sym__alignof] = ACTIONS(3207), - [anon_sym_alignof] = ACTIONS(3207), - [anon_sym__Alignof] = ACTIONS(3207), - [anon_sym_offsetof] = ACTIONS(3207), - [anon_sym__Generic] = ACTIONS(3207), - [anon_sym_asm] = ACTIONS(3207), - [anon_sym___asm__] = ACTIONS(3207), - [sym_number_literal] = ACTIONS(3209), - [anon_sym_L_SQUOTE] = ACTIONS(3209), - [anon_sym_u_SQUOTE] = ACTIONS(3209), - [anon_sym_U_SQUOTE] = ACTIONS(3209), - [anon_sym_u8_SQUOTE] = ACTIONS(3209), - [anon_sym_SQUOTE] = ACTIONS(3209), - [anon_sym_L_DQUOTE] = ACTIONS(3209), - [anon_sym_u_DQUOTE] = ACTIONS(3209), - [anon_sym_U_DQUOTE] = ACTIONS(3209), - [anon_sym_u8_DQUOTE] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(3209), - [sym_true] = ACTIONS(3207), - [sym_false] = ACTIONS(3207), - [anon_sym_NULL] = ACTIONS(3207), - [anon_sym_nullptr] = ACTIONS(3207), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3207), - [anon_sym_decltype] = ACTIONS(3207), - [anon_sym_virtual] = ACTIONS(3207), - [anon_sym_alignas] = ACTIONS(3207), - [anon_sym_typename] = ACTIONS(3207), - [anon_sym_template] = ACTIONS(3207), - [anon_sym_try] = ACTIONS(3207), - [anon_sym_delete] = ACTIONS(3207), - [anon_sym_throw] = ACTIONS(3207), - [anon_sym_co_return] = ACTIONS(3207), - [anon_sym_co_yield] = ACTIONS(3207), - [anon_sym_R_DQUOTE] = ACTIONS(3209), - [anon_sym_LR_DQUOTE] = ACTIONS(3209), - [anon_sym_uR_DQUOTE] = ACTIONS(3209), - [anon_sym_UR_DQUOTE] = ACTIONS(3209), - [anon_sym_u8R_DQUOTE] = ACTIONS(3209), - [anon_sym_co_await] = ACTIONS(3207), - [anon_sym_new] = ACTIONS(3207), - [anon_sym_requires] = ACTIONS(3207), - [sym_this] = ACTIONS(3207), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3209), - [sym_semgrep_named_ellipsis] = ACTIONS(3209), - }, - [1015] = { - [sym_identifier] = ACTIONS(3219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3221), - [anon_sym_LPAREN2] = ACTIONS(3221), - [anon_sym_BANG] = ACTIONS(3221), - [anon_sym_TILDE] = ACTIONS(3221), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3221), - [anon_sym_AMP] = ACTIONS(3221), - [anon_sym_SEMI] = ACTIONS(3221), - [anon_sym___extension__] = ACTIONS(3219), - [anon_sym_typedef] = ACTIONS(3219), - [anon_sym_extern] = ACTIONS(3219), - [anon_sym___attribute__] = ACTIONS(3219), - [anon_sym_COLON_COLON] = ACTIONS(3221), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3221), - [anon_sym___declspec] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3221), - [anon_sym_signed] = ACTIONS(3219), - [anon_sym_unsigned] = ACTIONS(3219), - [anon_sym_long] = ACTIONS(3219), - [anon_sym_short] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_register] = ACTIONS(3219), - [anon_sym_inline] = ACTIONS(3219), - [anon_sym___inline] = ACTIONS(3219), - [anon_sym___inline__] = ACTIONS(3219), - [anon_sym___forceinline] = ACTIONS(3219), - [anon_sym_thread_local] = ACTIONS(3219), - [anon_sym___thread] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_constexpr] = ACTIONS(3219), - [anon_sym_volatile] = ACTIONS(3219), - [anon_sym_restrict] = ACTIONS(3219), - [anon_sym___restrict__] = ACTIONS(3219), - [anon_sym__Atomic] = ACTIONS(3219), - [anon_sym__Noreturn] = ACTIONS(3219), - [anon_sym_noreturn] = ACTIONS(3219), - [anon_sym_mutable] = ACTIONS(3219), - [anon_sym_constinit] = ACTIONS(3219), - [anon_sym_consteval] = ACTIONS(3219), - [sym_primitive_type] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_struct] = ACTIONS(3219), - [anon_sym_union] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_else] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_goto] = ACTIONS(3219), - [anon_sym___try] = ACTIONS(3219), - [anon_sym___leave] = ACTIONS(3219), - [anon_sym_not] = ACTIONS(3219), - [anon_sym_compl] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_sizeof] = ACTIONS(3219), - [anon_sym___alignof__] = ACTIONS(3219), - [anon_sym___alignof] = ACTIONS(3219), - [anon_sym__alignof] = ACTIONS(3219), - [anon_sym_alignof] = ACTIONS(3219), - [anon_sym__Alignof] = ACTIONS(3219), - [anon_sym_offsetof] = ACTIONS(3219), - [anon_sym__Generic] = ACTIONS(3219), - [anon_sym_asm] = ACTIONS(3219), - [anon_sym___asm__] = ACTIONS(3219), - [sym_number_literal] = ACTIONS(3221), - [anon_sym_L_SQUOTE] = ACTIONS(3221), - [anon_sym_u_SQUOTE] = ACTIONS(3221), - [anon_sym_U_SQUOTE] = ACTIONS(3221), - [anon_sym_u8_SQUOTE] = ACTIONS(3221), - [anon_sym_SQUOTE] = ACTIONS(3221), - [anon_sym_L_DQUOTE] = ACTIONS(3221), - [anon_sym_u_DQUOTE] = ACTIONS(3221), - [anon_sym_U_DQUOTE] = ACTIONS(3221), - [anon_sym_u8_DQUOTE] = ACTIONS(3221), - [anon_sym_DQUOTE] = ACTIONS(3221), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [anon_sym_NULL] = ACTIONS(3219), - [anon_sym_nullptr] = ACTIONS(3219), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3219), - [anon_sym_decltype] = ACTIONS(3219), - [anon_sym_virtual] = ACTIONS(3219), - [anon_sym_alignas] = ACTIONS(3219), - [anon_sym_typename] = ACTIONS(3219), - [anon_sym_template] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_co_return] = ACTIONS(3219), - [anon_sym_co_yield] = ACTIONS(3219), - [anon_sym_R_DQUOTE] = ACTIONS(3221), - [anon_sym_LR_DQUOTE] = ACTIONS(3221), - [anon_sym_uR_DQUOTE] = ACTIONS(3221), - [anon_sym_UR_DQUOTE] = ACTIONS(3221), - [anon_sym_u8R_DQUOTE] = ACTIONS(3221), - [anon_sym_co_await] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_requires] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3221), - [sym_semgrep_named_ellipsis] = ACTIONS(3221), - }, - [1016] = { - [sym_expression_statement] = STATE(2809), - [sym_expression] = STATE(5752), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10632), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_type_requirement] = STATE(2809), - [sym_compound_requirement] = STATE(2809), - [sym_requirement] = STATE(1028), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_requirement_seq_repeat1] = STATE(1028), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1029] = { + [sym_expression] = STATE(5041), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8208), + [sym_initializer_pair] = STATE(8208), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(5245), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [sym_identifier] = ACTIONS(4521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_COMMA] = ACTIONS(4715), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(4565), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_RBRACE] = ACTIONS(4569), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_RBRACE] = ACTIONS(4717), + [anon_sym_LBRACK] = ACTIONS(4527), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -202474,6 +193726,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -202491,8 +193744,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_typename] = ACTIONS(4571), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -202506,72 +193758,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1017] = { - [sym_expression_statement] = STATE(2809), - [sym_expression] = STATE(5752), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10632), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_type_requirement] = STATE(2809), - [sym_compound_requirement] = STATE(2809), - [sym_requirement] = STATE(1031), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_requirement_seq_repeat1] = STATE(1031), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1030] = { + [sym_expression] = STATE(5056), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(8795), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8697), + [sym_initializer_pair] = STATE(8697), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(5245), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [sym_identifier] = ACTIONS(4521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(4565), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_RBRACE] = ACTIONS(4573), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_RBRACE] = ACTIONS(4719), + [anon_sym_LBRACK] = ACTIONS(4527), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -202586,6 +193838,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -202603,8 +193856,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_typename] = ACTIONS(4571), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -202618,72 +193870,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1018] = { - [sym_expression_statement] = STATE(2809), - [sym_expression] = STATE(5752), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10632), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_type_requirement] = STATE(2809), - [sym_compound_requirement] = STATE(2809), - [sym_requirement] = STATE(1024), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_requirement_seq_repeat1] = STATE(1024), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1031] = { + [sym_expression] = STATE(5073), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8467), + [sym_initializer_pair] = STATE(8467), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(5245), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [sym_identifier] = ACTIONS(4521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_COMMA] = ACTIONS(4721), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(4565), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_RBRACE] = ACTIONS(4575), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_RBRACE] = ACTIONS(4723), + [anon_sym_LBRACK] = ACTIONS(4527), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -202698,6 +193950,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -202715,8 +193968,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_typename] = ACTIONS(4571), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -202730,72 +193982,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1019] = { - [sym_expression] = STATE(5531), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(8992), - [sym_initializer_pair] = STATE(8992), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5859), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [sym_identifier] = ACTIONS(4577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_COMMA] = ACTIONS(4579), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1032] = { + [sym_expression] = STATE(5262), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8697), + [sym_initializer_pair] = STATE(8697), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(5245), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [sym_identifier] = ACTIONS(4521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_RBRACE] = ACTIONS(4581), - [anon_sym_LBRACK] = ACTIONS(4583), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_RBRACE] = ACTIONS(4725), + [anon_sym_LBRACK] = ACTIONS(4527), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -202828,7 +194079,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -202842,72 +194093,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1020] = { - [sym_expression_statement] = STATE(2809), - [sym_expression] = STATE(5752), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10632), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_type_requirement] = STATE(2809), - [sym_compound_requirement] = STATE(2809), - [sym_requirement] = STATE(1022), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_requirement_seq_repeat1] = STATE(1022), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1033] = { + [sym_expression] = STATE(5262), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8697), + [sym_initializer_pair] = STATE(8697), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(5245), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [sym_identifier] = ACTIONS(4521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(4565), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_RBRACE] = ACTIONS(4585), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_RBRACE] = ACTIONS(4727), + [anon_sym_LBRACK] = ACTIONS(4527), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -202922,6 +194172,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -202939,8 +194190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_typename] = ACTIONS(4571), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -202954,72 +194204,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1021] = { - [sym_expression_statement] = STATE(2809), - [sym_expression] = STATE(5752), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10632), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_type_requirement] = STATE(2809), - [sym_compound_requirement] = STATE(2809), - [sym_requirement] = STATE(1024), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_requirement_seq_repeat1] = STATE(1024), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1034] = { + [sym_expression] = STATE(5262), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8697), + [sym_initializer_pair] = STATE(8697), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(5245), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [sym_identifier] = ACTIONS(4521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(4565), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_RBRACE] = ACTIONS(4587), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_RBRACE] = ACTIONS(4729), + [anon_sym_LBRACK] = ACTIONS(4527), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -203034,6 +194283,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -203051,8 +194301,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_typename] = ACTIONS(4571), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -203066,72 +194315,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1022] = { - [sym_expression_statement] = STATE(2809), - [sym_expression] = STATE(5752), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10632), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_type_requirement] = STATE(2809), - [sym_compound_requirement] = STATE(2809), - [sym_requirement] = STATE(1024), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_requirement_seq_repeat1] = STATE(1024), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1035] = { + [sym_expression] = STATE(5262), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8697), + [sym_initializer_pair] = STATE(8697), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(5245), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [sym_identifier] = ACTIONS(4521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(4565), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_RBRACE] = ACTIONS(4589), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_RBRACE] = ACTIONS(4731), + [anon_sym_LBRACK] = ACTIONS(4527), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -203146,6 +194394,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -203163,8 +194412,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_typename] = ACTIONS(4571), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -203178,72 +194426,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1023] = { - [sym_expression_statement] = STATE(2809), - [sym_expression] = STATE(5752), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10632), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_type_requirement] = STATE(2809), - [sym_compound_requirement] = STATE(2809), - [sym_requirement] = STATE(1024), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_requirement_seq_repeat1] = STATE(1024), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1036] = { + [sym_expression] = STATE(5262), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8697), + [sym_initializer_pair] = STATE(8697), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(5245), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [sym_identifier] = ACTIONS(4521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(4565), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_RBRACE] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_RBRACE] = ACTIONS(4733), + [anon_sym_LBRACK] = ACTIONS(4527), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -203258,6 +194505,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -203275,8 +194523,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_typename] = ACTIONS(4571), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -203290,184 +194537,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1024] = { - [sym_expression_statement] = STATE(2809), - [sym_expression] = STATE(5752), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10632), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_type_requirement] = STATE(2809), - [sym_compound_requirement] = STATE(2809), - [sym_requirement] = STATE(1024), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_requirement_seq_repeat1] = STATE(1024), - [sym_identifier] = ACTIONS(4593), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4596), - [anon_sym_LPAREN2] = ACTIONS(4599), - [anon_sym_BANG] = ACTIONS(4602), - [anon_sym_TILDE] = ACTIONS(4602), - [anon_sym_DASH] = ACTIONS(4605), - [anon_sym_PLUS] = ACTIONS(4605), - [anon_sym_STAR] = ACTIONS(4608), - [anon_sym_AMP] = ACTIONS(4608), - [anon_sym_SEMI] = ACTIONS(4611), - [anon_sym_COLON_COLON] = ACTIONS(4614), - [anon_sym_LBRACE] = ACTIONS(4617), - [anon_sym_RBRACE] = ACTIONS(4620), - [anon_sym_LBRACK] = ACTIONS(4622), - [sym_primitive_type] = ACTIONS(4625), - [anon_sym_not] = ACTIONS(4605), - [anon_sym_compl] = ACTIONS(4605), - [anon_sym_DASH_DASH] = ACTIONS(4628), - [anon_sym_PLUS_PLUS] = ACTIONS(4628), - [anon_sym_sizeof] = ACTIONS(4631), - [anon_sym___alignof__] = ACTIONS(4634), - [anon_sym___alignof] = ACTIONS(4634), - [anon_sym__alignof] = ACTIONS(4634), - [anon_sym_alignof] = ACTIONS(4634), - [anon_sym__Alignof] = ACTIONS(4634), - [anon_sym_offsetof] = ACTIONS(4637), - [anon_sym__Generic] = ACTIONS(4640), - [anon_sym_asm] = ACTIONS(4643), - [anon_sym___asm__] = ACTIONS(4643), - [sym_number_literal] = ACTIONS(4646), - [anon_sym_L_SQUOTE] = ACTIONS(4649), - [anon_sym_u_SQUOTE] = ACTIONS(4649), - [anon_sym_U_SQUOTE] = ACTIONS(4649), - [anon_sym_u8_SQUOTE] = ACTIONS(4649), - [anon_sym_SQUOTE] = ACTIONS(4649), - [anon_sym_L_DQUOTE] = ACTIONS(4652), - [anon_sym_u_DQUOTE] = ACTIONS(4652), - [anon_sym_U_DQUOTE] = ACTIONS(4652), - [anon_sym_u8_DQUOTE] = ACTIONS(4652), - [anon_sym_DQUOTE] = ACTIONS(4652), - [sym_true] = ACTIONS(4655), - [sym_false] = ACTIONS(4655), - [anon_sym_NULL] = ACTIONS(4658), - [anon_sym_nullptr] = ACTIONS(4658), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(4661), - [anon_sym_typename] = ACTIONS(4664), - [anon_sym_template] = ACTIONS(4667), - [anon_sym_delete] = ACTIONS(4670), - [anon_sym_R_DQUOTE] = ACTIONS(4673), - [anon_sym_LR_DQUOTE] = ACTIONS(4673), - [anon_sym_uR_DQUOTE] = ACTIONS(4673), - [anon_sym_UR_DQUOTE] = ACTIONS(4673), - [anon_sym_u8R_DQUOTE] = ACTIONS(4673), - [anon_sym_co_await] = ACTIONS(4676), - [anon_sym_new] = ACTIONS(4679), - [anon_sym_requires] = ACTIONS(4682), - [sym_this] = ACTIONS(4655), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4685), - [sym_semgrep_named_ellipsis] = ACTIONS(4688), - }, - [1025] = { - [sym_expression] = STATE(5633), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(8577), - [sym_initializer_pair] = STATE(8577), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5859), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [sym_identifier] = ACTIONS(4577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_COMMA] = ACTIONS(4691), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1037] = { + [sym_expression] = STATE(5262), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8697), + [sym_initializer_pair] = STATE(8697), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(5245), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [sym_identifier] = ACTIONS(4521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_RBRACE] = ACTIONS(4693), - [anon_sym_LBRACK] = ACTIONS(4583), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_RBRACE] = ACTIONS(4735), + [anon_sym_LBRACK] = ACTIONS(4527), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -203500,7 +194634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -203514,72 +194648,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1026] = { - [sym_expression_statement] = STATE(2809), - [sym_expression] = STATE(5752), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10632), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_type_requirement] = STATE(2809), - [sym_compound_requirement] = STATE(2809), - [sym_requirement] = STATE(1040), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_requirement_seq_repeat1] = STATE(1040), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1038] = { + [sym_expression] = STATE(5262), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8697), + [sym_initializer_pair] = STATE(8697), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(5245), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [sym_identifier] = ACTIONS(4521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(4565), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_RBRACE] = ACTIONS(4695), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_RBRACE] = ACTIONS(4737), + [anon_sym_LBRACK] = ACTIONS(4527), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -203594,6 +194727,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -203611,8 +194745,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_typename] = ACTIONS(4571), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -203626,72 +194759,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1027] = { - [sym_expression] = STATE(5586), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(8895), - [sym_initializer_pair] = STATE(8895), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5859), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [sym_identifier] = ACTIONS(4577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_COMMA] = ACTIONS(4697), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1039] = { + [sym_expression] = STATE(5262), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8697), + [sym_initializer_pair] = STATE(8697), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(5245), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [sym_identifier] = ACTIONS(4521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_RBRACE] = ACTIONS(4699), - [anon_sym_LBRACK] = ACTIONS(4583), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_RBRACE] = ACTIONS(4739), + [anon_sym_LBRACK] = ACTIONS(4527), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -203724,7 +194856,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -203738,72 +194870,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1028] = { - [sym_expression_statement] = STATE(2809), - [sym_expression] = STATE(5752), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10632), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_type_requirement] = STATE(2809), - [sym_compound_requirement] = STATE(2809), - [sym_requirement] = STATE(1024), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_requirement_seq_repeat1] = STATE(1024), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1040] = { + [sym_expression] = STATE(5262), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8697), + [sym_initializer_pair] = STATE(8697), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(5245), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [sym_identifier] = ACTIONS(4521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(4565), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_RBRACE] = ACTIONS(4701), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_RBRACE] = ACTIONS(4741), + [anon_sym_LBRACK] = ACTIONS(4527), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -203818,6 +194949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -203835,8 +194967,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_typename] = ACTIONS(4571), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -203850,72 +194981,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1029] = { - [sym_expression] = STATE(5601), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9049), - [sym_initializer_pair] = STATE(9049), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5859), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [sym_identifier] = ACTIONS(4577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_COMMA] = ACTIONS(4703), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1041] = { + [sym_expression] = STATE(5262), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8697), + [sym_initializer_pair] = STATE(8697), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(5245), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [sym_identifier] = ACTIONS(4521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_RBRACE] = ACTIONS(4705), - [anon_sym_LBRACK] = ACTIONS(4583), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_RBRACE] = ACTIONS(4743), + [anon_sym_LBRACK] = ACTIONS(4527), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -203948,7 +195078,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -203962,72 +195092,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1030] = { - [sym_expression_statement] = STATE(2809), - [sym_expression] = STATE(5752), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10632), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_type_requirement] = STATE(2809), - [sym_compound_requirement] = STATE(2809), - [sym_requirement] = STATE(1034), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_requirement_seq_repeat1] = STATE(1034), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1042] = { + [sym_expression] = STATE(5262), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8697), + [sym_initializer_pair] = STATE(8697), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(5245), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [sym_identifier] = ACTIONS(4521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(4565), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_RBRACE] = ACTIONS(4707), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_RBRACE] = ACTIONS(4745), + [anon_sym_LBRACK] = ACTIONS(4527), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -204042,6 +195171,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -204059,8 +195189,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_typename] = ACTIONS(4571), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -204074,72 +195203,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1031] = { - [sym_expression_statement] = STATE(2809), - [sym_expression] = STATE(5752), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10632), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_type_requirement] = STATE(2809), - [sym_compound_requirement] = STATE(2809), - [sym_requirement] = STATE(1024), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_requirement_seq_repeat1] = STATE(1024), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1043] = { + [sym_expression] = STATE(5262), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8697), + [sym_initializer_pair] = STATE(8697), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(5245), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [sym_identifier] = ACTIONS(4521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(4565), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_RBRACE] = ACTIONS(4709), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_RBRACE] = ACTIONS(4747), + [anon_sym_LBRACK] = ACTIONS(4527), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -204154,6 +195282,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -204171,8 +195300,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_typename] = ACTIONS(4571), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -204186,72 +195314,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1032] = { - [sym_expression] = STATE(5608), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(8873), - [sym_initializer_pair] = STATE(8873), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5859), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [sym_identifier] = ACTIONS(4577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_COMMA] = ACTIONS(4711), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1044] = { + [sym_expression] = STATE(5262), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8697), + [sym_initializer_pair] = STATE(8697), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(5245), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [sym_identifier] = ACTIONS(4521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_RBRACE] = ACTIONS(4713), - [anon_sym_LBRACK] = ACTIONS(4583), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_RBRACE] = ACTIONS(4749), + [anon_sym_LBRACK] = ACTIONS(4527), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -204284,7 +195411,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -204298,72 +195425,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1033] = { - [sym_expression] = STATE(5484), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9149), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9586), - [sym_initializer_pair] = STATE(9586), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5859), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [sym_identifier] = ACTIONS(4577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1045] = { + [sym_expression] = STATE(5262), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8697), + [sym_initializer_pair] = STATE(8697), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(5245), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [sym_identifier] = ACTIONS(4521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_RBRACE] = ACTIONS(4715), - [anon_sym_LBRACK] = ACTIONS(4583), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_RBRACE] = ACTIONS(4751), + [anon_sym_LBRACK] = ACTIONS(4527), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -204396,7 +195522,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -204410,72 +195536,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1034] = { - [sym_expression_statement] = STATE(2809), - [sym_expression] = STATE(5752), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10632), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_type_requirement] = STATE(2809), - [sym_compound_requirement] = STATE(2809), - [sym_requirement] = STATE(1024), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_requirement_seq_repeat1] = STATE(1024), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1046] = { + [sym_expression] = STATE(5262), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8697), + [sym_initializer_pair] = STATE(8697), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(5245), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [sym_identifier] = ACTIONS(4521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(4565), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_RBRACE] = ACTIONS(4717), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_RBRACE] = ACTIONS(4719), + [anon_sym_LBRACK] = ACTIONS(4527), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -204490,6 +195615,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -204507,8 +195633,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_typename] = ACTIONS(4571), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -204522,72 +195647,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1035] = { - [sym_expression_statement] = STATE(2809), - [sym_expression] = STATE(5752), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10632), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_type_requirement] = STATE(2809), - [sym_compound_requirement] = STATE(2809), - [sym_requirement] = STATE(1059), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_requirement_seq_repeat1] = STATE(1059), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1047] = { + [sym_expression] = STATE(5262), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8697), + [sym_initializer_pair] = STATE(8697), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(5245), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [sym_identifier] = ACTIONS(4521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(4565), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_RBRACE] = ACTIONS(4719), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_RBRACE] = ACTIONS(4753), + [anon_sym_LBRACK] = ACTIONS(4527), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -204602,6 +195726,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -204619,8 +195744,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_typename] = ACTIONS(4571), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -204634,72 +195758,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1036] = { - [sym_expression_statement] = STATE(2809), - [sym_expression] = STATE(5752), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10632), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_type_requirement] = STATE(2809), - [sym_compound_requirement] = STATE(2809), - [sym_requirement] = STATE(1024), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_requirement_seq_repeat1] = STATE(1024), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1048] = { + [sym_expression] = STATE(5262), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8697), + [sym_initializer_pair] = STATE(8697), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(5245), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [sym_identifier] = ACTIONS(4521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(4565), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_RBRACE] = ACTIONS(4721), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_RBRACE] = ACTIONS(4755), + [anon_sym_LBRACK] = ACTIONS(4527), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -204714,6 +195837,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -204731,8 +195855,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_typename] = ACTIONS(4571), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -204746,72 +195869,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1037] = { - [sym_expression_statement] = STATE(2809), - [sym_expression] = STATE(5752), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10632), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_type_requirement] = STATE(2809), - [sym_compound_requirement] = STATE(2809), - [sym_requirement] = STATE(1024), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_requirement_seq_repeat1] = STATE(1024), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1049] = { + [sym_expression] = STATE(5262), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8697), + [sym_initializer_pair] = STATE(8697), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(5245), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [sym_identifier] = ACTIONS(4521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(4565), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_RBRACE] = ACTIONS(4723), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_RBRACE] = ACTIONS(4757), + [anon_sym_LBRACK] = ACTIONS(4527), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -204826,6 +195948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -204843,8 +195966,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_typename] = ACTIONS(4571), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -204858,72 +195980,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1038] = { - [sym_expression] = STATE(5640), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(8751), - [sym_initializer_pair] = STATE(8751), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5859), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [sym_identifier] = ACTIONS(4577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_COMMA] = ACTIONS(4725), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1050] = { + [sym_expression] = STATE(5262), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8697), + [sym_initializer_pair] = STATE(8697), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(5245), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [sym_identifier] = ACTIONS(4521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_RBRACE] = ACTIONS(4727), - [anon_sym_LBRACK] = ACTIONS(4583), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_RBRACE] = ACTIONS(4759), + [anon_sym_LBRACK] = ACTIONS(4527), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -204956,7 +196077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -204970,72 +196091,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1039] = { - [sym_expression_statement] = STATE(2809), - [sym_expression] = STATE(5752), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10632), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_type_requirement] = STATE(2809), - [sym_compound_requirement] = STATE(2809), - [sym_requirement] = STATE(1046), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_requirement_seq_repeat1] = STATE(1046), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1051] = { + [sym_expression] = STATE(5262), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8697), + [sym_initializer_pair] = STATE(8697), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(5245), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [sym_identifier] = ACTIONS(4521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(4565), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_RBRACE] = ACTIONS(4729), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_RBRACE] = ACTIONS(4761), + [anon_sym_LBRACK] = ACTIONS(4527), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -205050,6 +196170,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -205067,8 +196188,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_typename] = ACTIONS(4571), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -205082,72 +196202,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1040] = { - [sym_expression_statement] = STATE(2809), - [sym_expression] = STATE(5752), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10632), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_type_requirement] = STATE(2809), - [sym_compound_requirement] = STATE(2809), - [sym_requirement] = STATE(1024), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_requirement_seq_repeat1] = STATE(1024), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1052] = { + [sym_expression] = STATE(5262), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8697), + [sym_initializer_pair] = STATE(8697), + [sym_subscript_designator] = STATE(7662), + [sym_subscript_range_designator] = STATE(7662), + [sym_field_designator] = STATE(7662), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(5245), + [sym_deep_ellipsis] = STATE(4265), + [aux_sym_initializer_pair_repeat1] = STATE(7662), + [sym_identifier] = ACTIONS(4521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(4565), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_RBRACE] = ACTIONS(4731), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(4527), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -205162,6 +196280,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -205179,8 +196298,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_typename] = ACTIONS(4571), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -205194,72 +196312,283 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1041] = { - [sym_expression] = STATE(5549), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(8597), - [sym_initializer_pair] = STATE(8597), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5859), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [sym_identifier] = ACTIONS(4577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_COMMA] = ACTIONS(4733), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1053] = { + [sym_string_literal] = STATE(2729), + [sym_template_argument_list] = STATE(1879), + [sym_raw_string_literal] = STATE(2729), + [aux_sym_sized_type_specifier_repeat1] = STATE(3723), + [sym_identifier] = ACTIONS(4763), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4767), + [anon_sym_TILDE] = ACTIONS(4771), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4775), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4778), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4775), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(4781), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_SEMI] = ACTIONS(4778), + [anon_sym___extension__] = ACTIONS(4763), + [anon_sym_extern] = ACTIONS(4763), + [anon_sym___attribute__] = ACTIONS(4763), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4786), + [anon_sym___declspec] = ACTIONS(4763), + [anon_sym___based] = ACTIONS(4763), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_RBRACE] = ACTIONS(4765), + [anon_sym_signed] = ACTIONS(4791), + [anon_sym_unsigned] = ACTIONS(4791), + [anon_sym_long] = ACTIONS(4791), + [anon_sym_short] = ACTIONS(4791), + [anon_sym_LBRACK] = ACTIONS(4793), + [anon_sym_EQ] = ACTIONS(4797), + [anon_sym_static] = ACTIONS(4763), + [anon_sym_register] = ACTIONS(4763), + [anon_sym_inline] = ACTIONS(4763), + [anon_sym___inline] = ACTIONS(4763), + [anon_sym___inline__] = ACTIONS(4763), + [anon_sym___forceinline] = ACTIONS(4763), + [anon_sym_thread_local] = ACTIONS(4763), + [anon_sym___thread] = ACTIONS(4763), + [anon_sym_const] = ACTIONS(4763), + [anon_sym_constexpr] = ACTIONS(4763), + [anon_sym_volatile] = ACTIONS(4763), + [anon_sym_restrict] = ACTIONS(4763), + [anon_sym___restrict__] = ACTIONS(4763), + [anon_sym__Atomic] = ACTIONS(4763), + [anon_sym__Noreturn] = ACTIONS(4763), + [anon_sym_noreturn] = ACTIONS(4763), + [anon_sym_mutable] = ACTIONS(4763), + [anon_sym_constinit] = ACTIONS(4763), + [anon_sym_consteval] = ACTIONS(4763), + [anon_sym_COLON] = ACTIONS(4799), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4801), + [anon_sym_SLASH_EQ] = ACTIONS(4801), + [anon_sym_PERCENT_EQ] = ACTIONS(4801), + [anon_sym_PLUS_EQ] = ACTIONS(4801), + [anon_sym_DASH_EQ] = ACTIONS(4801), + [anon_sym_LT_LT_EQ] = ACTIONS(4801), + [anon_sym_GT_GT_EQ] = ACTIONS(4801), + [anon_sym_AMP_EQ] = ACTIONS(4801), + [anon_sym_CARET_EQ] = ACTIONS(4801), + [anon_sym_PIPE_EQ] = ACTIONS(4801), + [anon_sym_and_eq] = ACTIONS(4797), + [anon_sym_or_eq] = ACTIONS(4797), + [anon_sym_xor_eq] = ACTIONS(4797), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4773), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4773), + [anon_sym_not_eq] = ACTIONS(4773), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4763), + [anon_sym_decltype] = ACTIONS(4763), + [anon_sym_virtual] = ACTIONS(4763), + [anon_sym_alignas] = ACTIONS(4763), + [anon_sym_template] = ACTIONS(4763), + [anon_sym_operator] = ACTIONS(4763), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + }, + [1054] = { + [sym_string_literal] = STATE(2729), + [sym_template_argument_list] = STATE(1871), + [sym_raw_string_literal] = STATE(2729), + [aux_sym_sized_type_specifier_repeat1] = STATE(3723), + [sym_identifier] = ACTIONS(4763), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4778), + [anon_sym_TILDE] = ACTIONS(4771), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4775), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4778), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4775), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(4781), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_SEMI] = ACTIONS(4765), + [anon_sym___extension__] = ACTIONS(4763), + [anon_sym_extern] = ACTIONS(4763), + [anon_sym___attribute__] = ACTIONS(4763), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4771), + [anon_sym___declspec] = ACTIONS(4763), + [anon_sym___based] = ACTIONS(4763), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_signed] = ACTIONS(4791), + [anon_sym_unsigned] = ACTIONS(4791), + [anon_sym_long] = ACTIONS(4791), + [anon_sym_short] = ACTIONS(4791), + [anon_sym_LBRACK] = ACTIONS(4775), + [anon_sym_EQ] = ACTIONS(4797), + [anon_sym_static] = ACTIONS(4763), + [anon_sym_register] = ACTIONS(4763), + [anon_sym_inline] = ACTIONS(4763), + [anon_sym___inline] = ACTIONS(4763), + [anon_sym___inline__] = ACTIONS(4763), + [anon_sym___forceinline] = ACTIONS(4763), + [anon_sym_thread_local] = ACTIONS(4763), + [anon_sym___thread] = ACTIONS(4763), + [anon_sym_const] = ACTIONS(4763), + [anon_sym_constexpr] = ACTIONS(4763), + [anon_sym_volatile] = ACTIONS(4763), + [anon_sym_restrict] = ACTIONS(4763), + [anon_sym___restrict__] = ACTIONS(4763), + [anon_sym__Atomic] = ACTIONS(4763), + [anon_sym__Noreturn] = ACTIONS(4763), + [anon_sym_noreturn] = ACTIONS(4763), + [anon_sym_mutable] = ACTIONS(4763), + [anon_sym_constinit] = ACTIONS(4763), + [anon_sym_consteval] = ACTIONS(4763), + [anon_sym_COLON] = ACTIONS(4803), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4801), + [anon_sym_SLASH_EQ] = ACTIONS(4801), + [anon_sym_PERCENT_EQ] = ACTIONS(4801), + [anon_sym_PLUS_EQ] = ACTIONS(4801), + [anon_sym_DASH_EQ] = ACTIONS(4801), + [anon_sym_LT_LT_EQ] = ACTIONS(4801), + [anon_sym_GT_GT_EQ] = ACTIONS(4801), + [anon_sym_AMP_EQ] = ACTIONS(4801), + [anon_sym_CARET_EQ] = ACTIONS(4801), + [anon_sym_PIPE_EQ] = ACTIONS(4801), + [anon_sym_and_eq] = ACTIONS(4797), + [anon_sym_or_eq] = ACTIONS(4797), + [anon_sym_xor_eq] = ACTIONS(4797), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4773), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4773), + [anon_sym_not_eq] = ACTIONS(4773), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4763), + [anon_sym_decltype] = ACTIONS(4763), + [anon_sym_virtual] = ACTIONS(4763), + [anon_sym_alignas] = ACTIONS(4763), + [anon_sym_template] = ACTIONS(4763), + [anon_sym_operator] = ACTIONS(4763), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + }, + [1055] = { + [sym_compound_statement] = STATE(8188), + [sym_expression] = STATE(4989), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8188), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(4805), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(4807), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_RBRACE] = ACTIONS(4735), - [anon_sym_LBRACK] = ACTIONS(4583), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -205274,7 +196603,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -205292,7 +196620,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -205306,72 +196634,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1042] = { - [sym_expression_statement] = STATE(2809), - [sym_expression] = STATE(5752), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10632), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_type_requirement] = STATE(2809), - [sym_compound_requirement] = STATE(2809), - [sym_requirement] = STATE(1049), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_requirement_seq_repeat1] = STATE(1049), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1056] = { + [sym_string_literal] = STATE(2523), + [sym_template_argument_list] = STATE(1812), + [sym_raw_string_literal] = STATE(2523), + [aux_sym_sized_type_specifier_repeat1] = STATE(3723), + [sym_identifier] = ACTIONS(4763), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4778), + [anon_sym_COMMA] = ACTIONS(4778), + [anon_sym_RPAREN] = ACTIONS(4778), + [anon_sym_LPAREN2] = ACTIONS(4778), + [anon_sym_TILDE] = ACTIONS(4771), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4775), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4778), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4775), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(4809), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym___extension__] = ACTIONS(4763), + [anon_sym_extern] = ACTIONS(4763), + [anon_sym___attribute__] = ACTIONS(4763), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4771), + [anon_sym___declspec] = ACTIONS(4763), + [anon_sym___based] = ACTIONS(4763), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_signed] = ACTIONS(4791), + [anon_sym_unsigned] = ACTIONS(4791), + [anon_sym_long] = ACTIONS(4791), + [anon_sym_short] = ACTIONS(4791), + [anon_sym_LBRACK] = ACTIONS(4775), + [anon_sym_EQ] = ACTIONS(4775), + [anon_sym_static] = ACTIONS(4763), + [anon_sym_register] = ACTIONS(4763), + [anon_sym_inline] = ACTIONS(4763), + [anon_sym___inline] = ACTIONS(4763), + [anon_sym___inline__] = ACTIONS(4763), + [anon_sym___forceinline] = ACTIONS(4763), + [anon_sym_thread_local] = ACTIONS(4763), + [anon_sym___thread] = ACTIONS(4763), + [anon_sym_const] = ACTIONS(4763), + [anon_sym_constexpr] = ACTIONS(4763), + [anon_sym_volatile] = ACTIONS(4763), + [anon_sym_restrict] = ACTIONS(4763), + [anon_sym___restrict__] = ACTIONS(4763), + [anon_sym__Atomic] = ACTIONS(4763), + [anon_sym__Noreturn] = ACTIONS(4763), + [anon_sym_noreturn] = ACTIONS(4763), + [anon_sym_mutable] = ACTIONS(4763), + [anon_sym_constinit] = ACTIONS(4763), + [anon_sym_consteval] = ACTIONS(4763), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4765), + [anon_sym_SLASH_EQ] = ACTIONS(4765), + [anon_sym_PERCENT_EQ] = ACTIONS(4765), + [anon_sym_PLUS_EQ] = ACTIONS(4765), + [anon_sym_DASH_EQ] = ACTIONS(4765), + [anon_sym_LT_LT_EQ] = ACTIONS(4765), + [anon_sym_GT_GT_EQ] = ACTIONS(4765), + [anon_sym_AMP_EQ] = ACTIONS(4765), + [anon_sym_CARET_EQ] = ACTIONS(4765), + [anon_sym_PIPE_EQ] = ACTIONS(4765), + [anon_sym_and_eq] = ACTIONS(4812), + [anon_sym_or_eq] = ACTIONS(4812), + [anon_sym_xor_eq] = ACTIONS(4812), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4773), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4773), + [anon_sym_not_eq] = ACTIONS(4773), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4773), + [anon_sym_L_DQUOTE] = ACTIONS(4814), + [anon_sym_u_DQUOTE] = ACTIONS(4814), + [anon_sym_U_DQUOTE] = ACTIONS(4814), + [anon_sym_u8_DQUOTE] = ACTIONS(4814), + [anon_sym_DQUOTE] = ACTIONS(4814), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4763), + [anon_sym_decltype] = ACTIONS(4763), + [anon_sym_virtual] = ACTIONS(4763), + [anon_sym_alignas] = ACTIONS(4763), + [anon_sym_template] = ACTIONS(4763), + [anon_sym_operator] = ACTIONS(4763), + [anon_sym_R_DQUOTE] = ACTIONS(4816), + [anon_sym_LR_DQUOTE] = ACTIONS(4816), + [anon_sym_uR_DQUOTE] = ACTIONS(4816), + [anon_sym_UR_DQUOTE] = ACTIONS(4816), + [anon_sym_u8R_DQUOTE] = ACTIONS(4816), + [anon_sym_DASH_GT_STAR] = ACTIONS(4765), + }, + [1057] = { + [sym_compound_statement] = STATE(8649), + [sym_expression] = STATE(5083), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8649), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(4818), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(4565), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(4820), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_RBRACE] = ACTIONS(4737), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -205403,8 +196834,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_typename] = ACTIONS(4571), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -205418,72 +196848,389 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1043] = { - [sym_expression] = STATE(5625), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(8797), - [sym_initializer_pair] = STATE(8797), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5859), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [sym_identifier] = ACTIONS(4577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_COMMA] = ACTIONS(4739), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1058] = { + [sym_string_literal] = STATE(2729), + [sym_template_argument_list] = STATE(1871), + [sym_raw_string_literal] = STATE(2729), + [aux_sym_sized_type_specifier_repeat1] = STATE(3723), + [sym_identifier] = ACTIONS(4763), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4778), + [anon_sym_TILDE] = ACTIONS(4771), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4775), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4778), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4775), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(4781), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_SEMI] = ACTIONS(4765), + [anon_sym___extension__] = ACTIONS(4763), + [anon_sym_extern] = ACTIONS(4763), + [anon_sym___attribute__] = ACTIONS(4763), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4771), + [anon_sym___declspec] = ACTIONS(4763), + [anon_sym___based] = ACTIONS(4763), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_signed] = ACTIONS(4791), + [anon_sym_unsigned] = ACTIONS(4791), + [anon_sym_long] = ACTIONS(4791), + [anon_sym_short] = ACTIONS(4791), + [anon_sym_LBRACK] = ACTIONS(4775), + [anon_sym_EQ] = ACTIONS(4797), + [anon_sym_static] = ACTIONS(4763), + [anon_sym_register] = ACTIONS(4763), + [anon_sym_inline] = ACTIONS(4763), + [anon_sym___inline] = ACTIONS(4763), + [anon_sym___inline__] = ACTIONS(4763), + [anon_sym___forceinline] = ACTIONS(4763), + [anon_sym_thread_local] = ACTIONS(4763), + [anon_sym___thread] = ACTIONS(4763), + [anon_sym_const] = ACTIONS(4763), + [anon_sym_constexpr] = ACTIONS(4763), + [anon_sym_volatile] = ACTIONS(4763), + [anon_sym_restrict] = ACTIONS(4763), + [anon_sym___restrict__] = ACTIONS(4763), + [anon_sym__Atomic] = ACTIONS(4763), + [anon_sym__Noreturn] = ACTIONS(4763), + [anon_sym_noreturn] = ACTIONS(4763), + [anon_sym_mutable] = ACTIONS(4763), + [anon_sym_constinit] = ACTIONS(4763), + [anon_sym_consteval] = ACTIONS(4763), + [anon_sym_COLON] = ACTIONS(4822), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4801), + [anon_sym_SLASH_EQ] = ACTIONS(4801), + [anon_sym_PERCENT_EQ] = ACTIONS(4801), + [anon_sym_PLUS_EQ] = ACTIONS(4801), + [anon_sym_DASH_EQ] = ACTIONS(4801), + [anon_sym_LT_LT_EQ] = ACTIONS(4801), + [anon_sym_GT_GT_EQ] = ACTIONS(4801), + [anon_sym_AMP_EQ] = ACTIONS(4801), + [anon_sym_CARET_EQ] = ACTIONS(4801), + [anon_sym_PIPE_EQ] = ACTIONS(4801), + [anon_sym_and_eq] = ACTIONS(4797), + [anon_sym_or_eq] = ACTIONS(4797), + [anon_sym_xor_eq] = ACTIONS(4797), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4773), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4773), + [anon_sym_not_eq] = ACTIONS(4773), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4763), + [anon_sym_decltype] = ACTIONS(4763), + [anon_sym_virtual] = ACTIONS(4763), + [anon_sym_alignas] = ACTIONS(4763), + [anon_sym_template] = ACTIONS(4763), + [anon_sym_operator] = ACTIONS(4763), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + }, + [1059] = { + [sym_string_literal] = STATE(2729), + [sym_template_argument_list] = STATE(1871), + [sym_raw_string_literal] = STATE(2729), + [aux_sym_sized_type_specifier_repeat1] = STATE(3723), + [sym_identifier] = ACTIONS(4763), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4778), + [anon_sym_TILDE] = ACTIONS(4771), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4775), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4778), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4775), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(4781), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_SEMI] = ACTIONS(4765), + [anon_sym___extension__] = ACTIONS(4763), + [anon_sym_extern] = ACTIONS(4763), + [anon_sym___attribute__] = ACTIONS(4763), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4771), + [anon_sym___declspec] = ACTIONS(4763), + [anon_sym___based] = ACTIONS(4763), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_signed] = ACTIONS(4791), + [anon_sym_unsigned] = ACTIONS(4791), + [anon_sym_long] = ACTIONS(4791), + [anon_sym_short] = ACTIONS(4791), + [anon_sym_LBRACK] = ACTIONS(4775), + [anon_sym_EQ] = ACTIONS(4797), + [anon_sym_static] = ACTIONS(4763), + [anon_sym_register] = ACTIONS(4763), + [anon_sym_inline] = ACTIONS(4763), + [anon_sym___inline] = ACTIONS(4763), + [anon_sym___inline__] = ACTIONS(4763), + [anon_sym___forceinline] = ACTIONS(4763), + [anon_sym_thread_local] = ACTIONS(4763), + [anon_sym___thread] = ACTIONS(4763), + [anon_sym_const] = ACTIONS(4763), + [anon_sym_constexpr] = ACTIONS(4763), + [anon_sym_volatile] = ACTIONS(4763), + [anon_sym_restrict] = ACTIONS(4763), + [anon_sym___restrict__] = ACTIONS(4763), + [anon_sym__Atomic] = ACTIONS(4763), + [anon_sym__Noreturn] = ACTIONS(4763), + [anon_sym_noreturn] = ACTIONS(4763), + [anon_sym_mutable] = ACTIONS(4763), + [anon_sym_constinit] = ACTIONS(4763), + [anon_sym_consteval] = ACTIONS(4763), + [anon_sym_COLON] = ACTIONS(4824), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4801), + [anon_sym_SLASH_EQ] = ACTIONS(4801), + [anon_sym_PERCENT_EQ] = ACTIONS(4801), + [anon_sym_PLUS_EQ] = ACTIONS(4801), + [anon_sym_DASH_EQ] = ACTIONS(4801), + [anon_sym_LT_LT_EQ] = ACTIONS(4801), + [anon_sym_GT_GT_EQ] = ACTIONS(4801), + [anon_sym_AMP_EQ] = ACTIONS(4801), + [anon_sym_CARET_EQ] = ACTIONS(4801), + [anon_sym_PIPE_EQ] = ACTIONS(4801), + [anon_sym_and_eq] = ACTIONS(4797), + [anon_sym_or_eq] = ACTIONS(4797), + [anon_sym_xor_eq] = ACTIONS(4797), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4773), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4773), + [anon_sym_not_eq] = ACTIONS(4773), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4763), + [anon_sym_decltype] = ACTIONS(4763), + [anon_sym_virtual] = ACTIONS(4763), + [anon_sym_alignas] = ACTIONS(4763), + [anon_sym_template] = ACTIONS(4763), + [anon_sym_operator] = ACTIONS(4763), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + }, + [1060] = { + [sym_string_literal] = STATE(2729), + [sym_template_argument_list] = STATE(1871), + [sym_raw_string_literal] = STATE(2729), + [aux_sym_sized_type_specifier_repeat1] = STATE(3723), + [sym_identifier] = ACTIONS(4763), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_RPAREN] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4778), + [anon_sym_TILDE] = ACTIONS(4771), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4775), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4778), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4775), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(4781), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_SEMI] = ACTIONS(4765), + [anon_sym___extension__] = ACTIONS(4763), + [anon_sym_extern] = ACTIONS(4763), + [anon_sym___attribute__] = ACTIONS(4763), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4771), + [anon_sym___declspec] = ACTIONS(4763), + [anon_sym___based] = ACTIONS(4763), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_signed] = ACTIONS(4791), + [anon_sym_unsigned] = ACTIONS(4791), + [anon_sym_long] = ACTIONS(4791), + [anon_sym_short] = ACTIONS(4791), + [anon_sym_LBRACK] = ACTIONS(4775), + [anon_sym_EQ] = ACTIONS(4797), + [anon_sym_static] = ACTIONS(4763), + [anon_sym_register] = ACTIONS(4763), + [anon_sym_inline] = ACTIONS(4763), + [anon_sym___inline] = ACTIONS(4763), + [anon_sym___inline__] = ACTIONS(4763), + [anon_sym___forceinline] = ACTIONS(4763), + [anon_sym_thread_local] = ACTIONS(4763), + [anon_sym___thread] = ACTIONS(4763), + [anon_sym_const] = ACTIONS(4763), + [anon_sym_constexpr] = ACTIONS(4763), + [anon_sym_volatile] = ACTIONS(4763), + [anon_sym_restrict] = ACTIONS(4763), + [anon_sym___restrict__] = ACTIONS(4763), + [anon_sym__Atomic] = ACTIONS(4763), + [anon_sym__Noreturn] = ACTIONS(4763), + [anon_sym_noreturn] = ACTIONS(4763), + [anon_sym_mutable] = ACTIONS(4763), + [anon_sym_constinit] = ACTIONS(4763), + [anon_sym_consteval] = ACTIONS(4763), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4801), + [anon_sym_SLASH_EQ] = ACTIONS(4801), + [anon_sym_PERCENT_EQ] = ACTIONS(4801), + [anon_sym_PLUS_EQ] = ACTIONS(4801), + [anon_sym_DASH_EQ] = ACTIONS(4801), + [anon_sym_LT_LT_EQ] = ACTIONS(4801), + [anon_sym_GT_GT_EQ] = ACTIONS(4801), + [anon_sym_AMP_EQ] = ACTIONS(4801), + [anon_sym_CARET_EQ] = ACTIONS(4801), + [anon_sym_PIPE_EQ] = ACTIONS(4801), + [anon_sym_and_eq] = ACTIONS(4797), + [anon_sym_or_eq] = ACTIONS(4797), + [anon_sym_xor_eq] = ACTIONS(4797), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4773), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4773), + [anon_sym_not_eq] = ACTIONS(4773), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4763), + [anon_sym_decltype] = ACTIONS(4763), + [anon_sym_virtual] = ACTIONS(4763), + [anon_sym_alignas] = ACTIONS(4763), + [anon_sym_template] = ACTIONS(4763), + [anon_sym_operator] = ACTIONS(4763), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + }, + [1061] = { + [sym_compound_statement] = STATE(8552), + [sym_expression] = STATE(5078), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8552), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(4826), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(4828), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_RBRACE] = ACTIONS(4741), - [anon_sym_LBRACK] = ACTIONS(4583), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -205498,7 +197245,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -205516,7 +197262,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -205530,72 +197276,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1044] = { - [sym_expression_statement] = STATE(2809), - [sym_expression] = STATE(5752), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10632), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_type_requirement] = STATE(2809), - [sym_compound_requirement] = STATE(2809), - [sym_requirement] = STATE(1036), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_requirement_seq_repeat1] = STATE(1036), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1062] = { + [sym_compound_statement] = STATE(8225), + [sym_expression] = STATE(5057), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8225), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(4830), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(4565), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(4832), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_RBRACE] = ACTIONS(4743), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -205627,8 +197369,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_typename] = ACTIONS(4571), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -205642,72 +197383,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1045] = { - [sym_expression_statement] = STATE(2809), - [sym_expression] = STATE(5752), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10632), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_type_requirement] = STATE(2809), - [sym_compound_requirement] = STATE(2809), - [sym_requirement] = STATE(1018), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_requirement_seq_repeat1] = STATE(1018), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1063] = { + [sym_compound_statement] = STATE(8466), + [sym_expression] = STATE(5072), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8466), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(4834), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(4565), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(4836), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_RBRACE] = ACTIONS(4745), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -205739,8 +197476,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_typename] = ACTIONS(4571), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -205754,296 +197490,282 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1046] = { - [sym_expression_statement] = STATE(2809), - [sym_expression] = STATE(5752), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10632), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_type_requirement] = STATE(2809), - [sym_compound_requirement] = STATE(2809), - [sym_requirement] = STATE(1024), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_requirement_seq_repeat1] = STATE(1024), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(4565), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_RBRACE] = ACTIONS(4747), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_typename] = ACTIONS(4571), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), + [1064] = { + [sym_string_literal] = STATE(2729), + [sym_template_argument_list] = STATE(1879), + [sym_raw_string_literal] = STATE(2729), + [aux_sym_sized_type_specifier_repeat1] = STATE(3723), + [sym_identifier] = ACTIONS(4763), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4767), + [anon_sym_TILDE] = ACTIONS(4771), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4775), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4778), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4775), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(4781), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_SEMI] = ACTIONS(4778), + [anon_sym___extension__] = ACTIONS(4763), + [anon_sym_extern] = ACTIONS(4763), + [anon_sym___attribute__] = ACTIONS(4763), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4786), + [anon_sym___declspec] = ACTIONS(4763), + [anon_sym___based] = ACTIONS(4763), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_signed] = ACTIONS(4791), + [anon_sym_unsigned] = ACTIONS(4791), + [anon_sym_long] = ACTIONS(4791), + [anon_sym_short] = ACTIONS(4791), + [anon_sym_LBRACK] = ACTIONS(4793), + [anon_sym_EQ] = ACTIONS(4797), + [anon_sym_static] = ACTIONS(4763), + [anon_sym_register] = ACTIONS(4763), + [anon_sym_inline] = ACTIONS(4763), + [anon_sym___inline] = ACTIONS(4763), + [anon_sym___inline__] = ACTIONS(4763), + [anon_sym___forceinline] = ACTIONS(4763), + [anon_sym_thread_local] = ACTIONS(4763), + [anon_sym___thread] = ACTIONS(4763), + [anon_sym_const] = ACTIONS(4763), + [anon_sym_constexpr] = ACTIONS(4763), + [anon_sym_volatile] = ACTIONS(4763), + [anon_sym_restrict] = ACTIONS(4763), + [anon_sym___restrict__] = ACTIONS(4763), + [anon_sym__Atomic] = ACTIONS(4763), + [anon_sym__Noreturn] = ACTIONS(4763), + [anon_sym_noreturn] = ACTIONS(4763), + [anon_sym_mutable] = ACTIONS(4763), + [anon_sym_constinit] = ACTIONS(4763), + [anon_sym_consteval] = ACTIONS(4763), + [anon_sym_COLON] = ACTIONS(4838), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4801), + [anon_sym_SLASH_EQ] = ACTIONS(4801), + [anon_sym_PERCENT_EQ] = ACTIONS(4801), + [anon_sym_PLUS_EQ] = ACTIONS(4801), + [anon_sym_DASH_EQ] = ACTIONS(4801), + [anon_sym_LT_LT_EQ] = ACTIONS(4801), + [anon_sym_GT_GT_EQ] = ACTIONS(4801), + [anon_sym_AMP_EQ] = ACTIONS(4801), + [anon_sym_CARET_EQ] = ACTIONS(4801), + [anon_sym_PIPE_EQ] = ACTIONS(4801), + [anon_sym_and_eq] = ACTIONS(4797), + [anon_sym_or_eq] = ACTIONS(4797), + [anon_sym_xor_eq] = ACTIONS(4797), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4773), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4773), + [anon_sym_not_eq] = ACTIONS(4773), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4763), + [anon_sym_decltype] = ACTIONS(4763), + [anon_sym_virtual] = ACTIONS(4763), + [anon_sym_alignas] = ACTIONS(4763), + [anon_sym_template] = ACTIONS(4763), + [anon_sym_operator] = ACTIONS(4763), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), }, - [1047] = { - [sym_expression_statement] = STATE(2809), - [sym_expression] = STATE(5752), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10632), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_type_requirement] = STATE(2809), - [sym_compound_requirement] = STATE(2809), - [sym_requirement] = STATE(1023), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_requirement_seq_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(4565), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_RBRACE] = ACTIONS(4749), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_typename] = ACTIONS(4571), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), + [1065] = { + [sym_string_literal] = STATE(2729), + [sym_template_argument_list] = STATE(1879), + [sym_raw_string_literal] = STATE(2729), + [aux_sym_sized_type_specifier_repeat1] = STATE(3723), + [sym_identifier] = ACTIONS(4763), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4767), + [anon_sym_TILDE] = ACTIONS(4771), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4775), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4778), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4775), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(4781), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_SEMI] = ACTIONS(4778), + [anon_sym___extension__] = ACTIONS(4763), + [anon_sym_extern] = ACTIONS(4763), + [anon_sym___attribute__] = ACTIONS(4763), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4786), + [anon_sym___declspec] = ACTIONS(4763), + [anon_sym___based] = ACTIONS(4763), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_signed] = ACTIONS(4791), + [anon_sym_unsigned] = ACTIONS(4791), + [anon_sym_long] = ACTIONS(4791), + [anon_sym_short] = ACTIONS(4791), + [anon_sym_LBRACK] = ACTIONS(4793), + [anon_sym_EQ] = ACTIONS(4797), + [anon_sym_static] = ACTIONS(4763), + [anon_sym_register] = ACTIONS(4763), + [anon_sym_inline] = ACTIONS(4763), + [anon_sym___inline] = ACTIONS(4763), + [anon_sym___inline__] = ACTIONS(4763), + [anon_sym___forceinline] = ACTIONS(4763), + [anon_sym_thread_local] = ACTIONS(4763), + [anon_sym___thread] = ACTIONS(4763), + [anon_sym_const] = ACTIONS(4763), + [anon_sym_constexpr] = ACTIONS(4763), + [anon_sym_volatile] = ACTIONS(4763), + [anon_sym_restrict] = ACTIONS(4763), + [anon_sym___restrict__] = ACTIONS(4763), + [anon_sym__Atomic] = ACTIONS(4763), + [anon_sym__Noreturn] = ACTIONS(4763), + [anon_sym_noreturn] = ACTIONS(4763), + [anon_sym_mutable] = ACTIONS(4763), + [anon_sym_constinit] = ACTIONS(4763), + [anon_sym_consteval] = ACTIONS(4763), + [anon_sym_COLON] = ACTIONS(4824), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4801), + [anon_sym_SLASH_EQ] = ACTIONS(4801), + [anon_sym_PERCENT_EQ] = ACTIONS(4801), + [anon_sym_PLUS_EQ] = ACTIONS(4801), + [anon_sym_DASH_EQ] = ACTIONS(4801), + [anon_sym_LT_LT_EQ] = ACTIONS(4801), + [anon_sym_GT_GT_EQ] = ACTIONS(4801), + [anon_sym_AMP_EQ] = ACTIONS(4801), + [anon_sym_CARET_EQ] = ACTIONS(4801), + [anon_sym_PIPE_EQ] = ACTIONS(4801), + [anon_sym_and_eq] = ACTIONS(4797), + [anon_sym_or_eq] = ACTIONS(4797), + [anon_sym_xor_eq] = ACTIONS(4797), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4773), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4773), + [anon_sym_not_eq] = ACTIONS(4773), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4763), + [anon_sym_decltype] = ACTIONS(4763), + [anon_sym_virtual] = ACTIONS(4763), + [anon_sym_alignas] = ACTIONS(4763), + [anon_sym_template] = ACTIONS(4763), + [anon_sym_operator] = ACTIONS(4763), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), }, - [1048] = { - [sym_expression] = STATE(5568), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(8761), - [sym_initializer_pair] = STATE(8761), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5859), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [sym_identifier] = ACTIONS(4577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_COMMA] = ACTIONS(4751), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1066] = { + [sym_compound_statement] = STATE(8490), + [sym_expression] = STATE(5093), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8490), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(4840), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(4842), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_RBRACE] = ACTIONS(4753), - [anon_sym_LBRACK] = ACTIONS(4583), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -206058,7 +197780,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -206076,7 +197797,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -206090,72 +197811,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1049] = { - [sym_expression_statement] = STATE(2809), - [sym_expression] = STATE(5752), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10632), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_type_requirement] = STATE(2809), - [sym_compound_requirement] = STATE(2809), - [sym_requirement] = STATE(1024), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_requirement_seq_repeat1] = STATE(1024), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1067] = { + [sym_compound_statement] = STATE(8336), + [sym_expression] = STATE(5065), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8336), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(4844), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(4565), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(4846), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_RBRACE] = ACTIONS(4755), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -206187,8 +197904,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_typename] = ACTIONS(4571), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -206202,72 +197918,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1050] = { - [sym_expression_statement] = STATE(2809), - [sym_expression] = STATE(5752), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10632), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_type_requirement] = STATE(2809), - [sym_compound_requirement] = STATE(2809), - [sym_requirement] = STATE(1037), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_requirement_seq_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1068] = { + [sym_compound_statement] = STATE(8185), + [sym_expression] = STATE(5088), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8185), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(4848), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(4565), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(4850), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_RBRACE] = ACTIONS(4757), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -206299,8 +198011,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_typename] = ACTIONS(4571), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -206314,296 +198025,603 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1051] = { - [sym_expression_statement] = STATE(2809), - [sym_expression] = STATE(5752), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10632), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_type_requirement] = STATE(2809), - [sym_compound_requirement] = STATE(2809), - [sym_requirement] = STATE(1056), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_requirement_seq_repeat1] = STATE(1056), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(4565), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_RBRACE] = ACTIONS(4759), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_typename] = ACTIONS(4571), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), + [1069] = { + [sym_string_literal] = STATE(2729), + [sym_template_argument_list] = STATE(1871), + [sym_raw_string_literal] = STATE(2729), + [aux_sym_sized_type_specifier_repeat1] = STATE(3723), + [sym_identifier] = ACTIONS(4763), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4778), + [anon_sym_TILDE] = ACTIONS(4771), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4775), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4778), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4775), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(4781), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_SEMI] = ACTIONS(4765), + [anon_sym___extension__] = ACTIONS(4763), + [anon_sym_extern] = ACTIONS(4763), + [anon_sym___attribute__] = ACTIONS(4763), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4771), + [anon_sym___declspec] = ACTIONS(4763), + [anon_sym___based] = ACTIONS(4763), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_signed] = ACTIONS(4791), + [anon_sym_unsigned] = ACTIONS(4791), + [anon_sym_long] = ACTIONS(4791), + [anon_sym_short] = ACTIONS(4791), + [anon_sym_LBRACK] = ACTIONS(4775), + [anon_sym_EQ] = ACTIONS(4797), + [anon_sym_static] = ACTIONS(4763), + [anon_sym_register] = ACTIONS(4763), + [anon_sym_inline] = ACTIONS(4763), + [anon_sym___inline] = ACTIONS(4763), + [anon_sym___inline__] = ACTIONS(4763), + [anon_sym___forceinline] = ACTIONS(4763), + [anon_sym_thread_local] = ACTIONS(4763), + [anon_sym___thread] = ACTIONS(4763), + [anon_sym_const] = ACTIONS(4763), + [anon_sym_constexpr] = ACTIONS(4763), + [anon_sym_volatile] = ACTIONS(4763), + [anon_sym_restrict] = ACTIONS(4763), + [anon_sym___restrict__] = ACTIONS(4763), + [anon_sym__Atomic] = ACTIONS(4763), + [anon_sym__Noreturn] = ACTIONS(4763), + [anon_sym_noreturn] = ACTIONS(4763), + [anon_sym_mutable] = ACTIONS(4763), + [anon_sym_constinit] = ACTIONS(4763), + [anon_sym_consteval] = ACTIONS(4763), + [anon_sym_COLON] = ACTIONS(4852), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4801), + [anon_sym_SLASH_EQ] = ACTIONS(4801), + [anon_sym_PERCENT_EQ] = ACTIONS(4801), + [anon_sym_PLUS_EQ] = ACTIONS(4801), + [anon_sym_DASH_EQ] = ACTIONS(4801), + [anon_sym_LT_LT_EQ] = ACTIONS(4801), + [anon_sym_GT_GT_EQ] = ACTIONS(4801), + [anon_sym_AMP_EQ] = ACTIONS(4801), + [anon_sym_CARET_EQ] = ACTIONS(4801), + [anon_sym_PIPE_EQ] = ACTIONS(4801), + [anon_sym_and_eq] = ACTIONS(4797), + [anon_sym_or_eq] = ACTIONS(4797), + [anon_sym_xor_eq] = ACTIONS(4797), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4773), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4773), + [anon_sym_not_eq] = ACTIONS(4773), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4763), + [anon_sym_decltype] = ACTIONS(4763), + [anon_sym_virtual] = ACTIONS(4763), + [anon_sym_alignas] = ACTIONS(4763), + [anon_sym_template] = ACTIONS(4763), + [anon_sym_operator] = ACTIONS(4763), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), }, - [1052] = { - [sym_expression] = STATE(5697), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9004), - [sym_initializer_pair] = STATE(9004), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5859), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [sym_identifier] = ACTIONS(4577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_COMMA] = ACTIONS(177), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_RBRACE] = ACTIONS(4761), - [anon_sym_LBRACK] = ACTIONS(4583), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(229), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), + [1070] = { + [sym_string_literal] = STATE(2729), + [sym_template_argument_list] = STATE(1879), + [sym_raw_string_literal] = STATE(2729), + [aux_sym_sized_type_specifier_repeat1] = STATE(3723), + [sym_identifier] = ACTIONS(4763), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4767), + [anon_sym_TILDE] = ACTIONS(4771), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4775), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4778), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4775), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(4781), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_SEMI] = ACTIONS(4778), + [anon_sym___extension__] = ACTIONS(4763), + [anon_sym_extern] = ACTIONS(4763), + [anon_sym___attribute__] = ACTIONS(4763), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4786), + [anon_sym___declspec] = ACTIONS(4763), + [anon_sym___based] = ACTIONS(4763), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_signed] = ACTIONS(4791), + [anon_sym_unsigned] = ACTIONS(4791), + [anon_sym_long] = ACTIONS(4791), + [anon_sym_short] = ACTIONS(4791), + [anon_sym_LBRACK] = ACTIONS(4793), + [anon_sym_EQ] = ACTIONS(4797), + [anon_sym_static] = ACTIONS(4763), + [anon_sym_register] = ACTIONS(4763), + [anon_sym_inline] = ACTIONS(4763), + [anon_sym___inline] = ACTIONS(4763), + [anon_sym___inline__] = ACTIONS(4763), + [anon_sym___forceinline] = ACTIONS(4763), + [anon_sym_thread_local] = ACTIONS(4763), + [anon_sym___thread] = ACTIONS(4763), + [anon_sym_const] = ACTIONS(4763), + [anon_sym_constexpr] = ACTIONS(4763), + [anon_sym_volatile] = ACTIONS(4763), + [anon_sym_restrict] = ACTIONS(4763), + [anon_sym___restrict__] = ACTIONS(4763), + [anon_sym__Atomic] = ACTIONS(4763), + [anon_sym__Noreturn] = ACTIONS(4763), + [anon_sym_noreturn] = ACTIONS(4763), + [anon_sym_mutable] = ACTIONS(4763), + [anon_sym_constinit] = ACTIONS(4763), + [anon_sym_consteval] = ACTIONS(4763), + [anon_sym_COLON] = ACTIONS(4803), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4801), + [anon_sym_SLASH_EQ] = ACTIONS(4801), + [anon_sym_PERCENT_EQ] = ACTIONS(4801), + [anon_sym_PLUS_EQ] = ACTIONS(4801), + [anon_sym_DASH_EQ] = ACTIONS(4801), + [anon_sym_LT_LT_EQ] = ACTIONS(4801), + [anon_sym_GT_GT_EQ] = ACTIONS(4801), + [anon_sym_AMP_EQ] = ACTIONS(4801), + [anon_sym_CARET_EQ] = ACTIONS(4801), + [anon_sym_PIPE_EQ] = ACTIONS(4801), + [anon_sym_and_eq] = ACTIONS(4797), + [anon_sym_or_eq] = ACTIONS(4797), + [anon_sym_xor_eq] = ACTIONS(4797), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4773), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4773), + [anon_sym_not_eq] = ACTIONS(4773), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4763), + [anon_sym_decltype] = ACTIONS(4763), + [anon_sym_virtual] = ACTIONS(4763), + [anon_sym_alignas] = ACTIONS(4763), + [anon_sym_template] = ACTIONS(4763), + [anon_sym_operator] = ACTIONS(4763), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), }, - [1053] = { - [sym_expression_statement] = STATE(2809), - [sym_expression] = STATE(5752), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10632), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_type_requirement] = STATE(2809), - [sym_compound_requirement] = STATE(2809), - [sym_requirement] = STATE(1021), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_requirement_seq_repeat1] = STATE(1021), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1071] = { + [sym_string_literal] = STATE(2729), + [sym_template_argument_list] = STATE(1879), + [sym_raw_string_literal] = STATE(2729), + [aux_sym_sized_type_specifier_repeat1] = STATE(3723), + [sym_identifier] = ACTIONS(4763), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4767), + [anon_sym_TILDE] = ACTIONS(4771), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4775), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4778), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4775), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(4781), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_SEMI] = ACTIONS(4778), + [anon_sym___extension__] = ACTIONS(4763), + [anon_sym_extern] = ACTIONS(4763), + [anon_sym___attribute__] = ACTIONS(4763), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4786), + [anon_sym___declspec] = ACTIONS(4763), + [anon_sym___based] = ACTIONS(4763), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_signed] = ACTIONS(4791), + [anon_sym_unsigned] = ACTIONS(4791), + [anon_sym_long] = ACTIONS(4791), + [anon_sym_short] = ACTIONS(4791), + [anon_sym_LBRACK] = ACTIONS(4793), + [anon_sym_EQ] = ACTIONS(4797), + [anon_sym_static] = ACTIONS(4763), + [anon_sym_register] = ACTIONS(4763), + [anon_sym_inline] = ACTIONS(4763), + [anon_sym___inline] = ACTIONS(4763), + [anon_sym___inline__] = ACTIONS(4763), + [anon_sym___forceinline] = ACTIONS(4763), + [anon_sym_thread_local] = ACTIONS(4763), + [anon_sym___thread] = ACTIONS(4763), + [anon_sym_const] = ACTIONS(4763), + [anon_sym_constexpr] = ACTIONS(4763), + [anon_sym_volatile] = ACTIONS(4763), + [anon_sym_restrict] = ACTIONS(4763), + [anon_sym___restrict__] = ACTIONS(4763), + [anon_sym__Atomic] = ACTIONS(4763), + [anon_sym__Noreturn] = ACTIONS(4763), + [anon_sym_noreturn] = ACTIONS(4763), + [anon_sym_mutable] = ACTIONS(4763), + [anon_sym_constinit] = ACTIONS(4763), + [anon_sym_consteval] = ACTIONS(4763), + [anon_sym_COLON] = ACTIONS(4854), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4801), + [anon_sym_SLASH_EQ] = ACTIONS(4801), + [anon_sym_PERCENT_EQ] = ACTIONS(4801), + [anon_sym_PLUS_EQ] = ACTIONS(4801), + [anon_sym_DASH_EQ] = ACTIONS(4801), + [anon_sym_LT_LT_EQ] = ACTIONS(4801), + [anon_sym_GT_GT_EQ] = ACTIONS(4801), + [anon_sym_AMP_EQ] = ACTIONS(4801), + [anon_sym_CARET_EQ] = ACTIONS(4801), + [anon_sym_PIPE_EQ] = ACTIONS(4801), + [anon_sym_and_eq] = ACTIONS(4797), + [anon_sym_or_eq] = ACTIONS(4797), + [anon_sym_xor_eq] = ACTIONS(4797), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4773), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4773), + [anon_sym_not_eq] = ACTIONS(4773), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4763), + [anon_sym_decltype] = ACTIONS(4763), + [anon_sym_virtual] = ACTIONS(4763), + [anon_sym_alignas] = ACTIONS(4763), + [anon_sym_template] = ACTIONS(4763), + [anon_sym_operator] = ACTIONS(4763), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + }, + [1072] = { + [sym_string_literal] = STATE(2729), + [sym_template_argument_list] = STATE(1871), + [sym_raw_string_literal] = STATE(2729), + [aux_sym_sized_type_specifier_repeat1] = STATE(3723), + [sym_identifier] = ACTIONS(4763), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4778), + [anon_sym_TILDE] = ACTIONS(4771), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4775), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4778), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4775), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(4781), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_SEMI] = ACTIONS(4765), + [anon_sym___extension__] = ACTIONS(4763), + [anon_sym_extern] = ACTIONS(4763), + [anon_sym___attribute__] = ACTIONS(4763), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4771), + [anon_sym___declspec] = ACTIONS(4763), + [anon_sym___based] = ACTIONS(4763), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_signed] = ACTIONS(4791), + [anon_sym_unsigned] = ACTIONS(4791), + [anon_sym_long] = ACTIONS(4791), + [anon_sym_short] = ACTIONS(4791), + [anon_sym_LBRACK] = ACTIONS(4775), + [anon_sym_EQ] = ACTIONS(4797), + [anon_sym_static] = ACTIONS(4763), + [anon_sym_register] = ACTIONS(4763), + [anon_sym_inline] = ACTIONS(4763), + [anon_sym___inline] = ACTIONS(4763), + [anon_sym___inline__] = ACTIONS(4763), + [anon_sym___forceinline] = ACTIONS(4763), + [anon_sym_thread_local] = ACTIONS(4763), + [anon_sym___thread] = ACTIONS(4763), + [anon_sym_const] = ACTIONS(4763), + [anon_sym_constexpr] = ACTIONS(4763), + [anon_sym_volatile] = ACTIONS(4763), + [anon_sym_restrict] = ACTIONS(4763), + [anon_sym___restrict__] = ACTIONS(4763), + [anon_sym__Atomic] = ACTIONS(4763), + [anon_sym__Noreturn] = ACTIONS(4763), + [anon_sym_noreturn] = ACTIONS(4763), + [anon_sym_mutable] = ACTIONS(4763), + [anon_sym_constinit] = ACTIONS(4763), + [anon_sym_consteval] = ACTIONS(4763), + [anon_sym_COLON] = ACTIONS(4854), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4801), + [anon_sym_SLASH_EQ] = ACTIONS(4801), + [anon_sym_PERCENT_EQ] = ACTIONS(4801), + [anon_sym_PLUS_EQ] = ACTIONS(4801), + [anon_sym_DASH_EQ] = ACTIONS(4801), + [anon_sym_LT_LT_EQ] = ACTIONS(4801), + [anon_sym_GT_GT_EQ] = ACTIONS(4801), + [anon_sym_AMP_EQ] = ACTIONS(4801), + [anon_sym_CARET_EQ] = ACTIONS(4801), + [anon_sym_PIPE_EQ] = ACTIONS(4801), + [anon_sym_and_eq] = ACTIONS(4797), + [anon_sym_or_eq] = ACTIONS(4797), + [anon_sym_xor_eq] = ACTIONS(4797), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4773), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4773), + [anon_sym_not_eq] = ACTIONS(4773), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4763), + [anon_sym_decltype] = ACTIONS(4763), + [anon_sym_virtual] = ACTIONS(4763), + [anon_sym_alignas] = ACTIONS(4763), + [anon_sym_template] = ACTIONS(4763), + [anon_sym_operator] = ACTIONS(4763), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + }, + [1073] = { + [sym_string_literal] = STATE(2729), + [sym_template_argument_list] = STATE(1871), + [sym_raw_string_literal] = STATE(2729), + [aux_sym_sized_type_specifier_repeat1] = STATE(3723), + [sym_identifier] = ACTIONS(4763), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4778), + [anon_sym_TILDE] = ACTIONS(4771), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4775), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4778), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4775), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(4781), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_SEMI] = ACTIONS(4765), + [anon_sym___extension__] = ACTIONS(4763), + [anon_sym_extern] = ACTIONS(4763), + [anon_sym___attribute__] = ACTIONS(4763), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4771), + [anon_sym___declspec] = ACTIONS(4763), + [anon_sym___based] = ACTIONS(4763), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_signed] = ACTIONS(4791), + [anon_sym_unsigned] = ACTIONS(4791), + [anon_sym_long] = ACTIONS(4791), + [anon_sym_short] = ACTIONS(4791), + [anon_sym_LBRACK] = ACTIONS(4775), + [anon_sym_EQ] = ACTIONS(4797), + [anon_sym_static] = ACTIONS(4763), + [anon_sym_register] = ACTIONS(4763), + [anon_sym_inline] = ACTIONS(4763), + [anon_sym___inline] = ACTIONS(4763), + [anon_sym___inline__] = ACTIONS(4763), + [anon_sym___forceinline] = ACTIONS(4763), + [anon_sym_thread_local] = ACTIONS(4763), + [anon_sym___thread] = ACTIONS(4763), + [anon_sym_const] = ACTIONS(4763), + [anon_sym_constexpr] = ACTIONS(4763), + [anon_sym_volatile] = ACTIONS(4763), + [anon_sym_restrict] = ACTIONS(4763), + [anon_sym___restrict__] = ACTIONS(4763), + [anon_sym__Atomic] = ACTIONS(4763), + [anon_sym__Noreturn] = ACTIONS(4763), + [anon_sym_noreturn] = ACTIONS(4763), + [anon_sym_mutable] = ACTIONS(4763), + [anon_sym_constinit] = ACTIONS(4763), + [anon_sym_consteval] = ACTIONS(4763), + [anon_sym_COLON] = ACTIONS(4838), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4801), + [anon_sym_SLASH_EQ] = ACTIONS(4801), + [anon_sym_PERCENT_EQ] = ACTIONS(4801), + [anon_sym_PLUS_EQ] = ACTIONS(4801), + [anon_sym_DASH_EQ] = ACTIONS(4801), + [anon_sym_LT_LT_EQ] = ACTIONS(4801), + [anon_sym_GT_GT_EQ] = ACTIONS(4801), + [anon_sym_AMP_EQ] = ACTIONS(4801), + [anon_sym_CARET_EQ] = ACTIONS(4801), + [anon_sym_PIPE_EQ] = ACTIONS(4801), + [anon_sym_and_eq] = ACTIONS(4797), + [anon_sym_or_eq] = ACTIONS(4797), + [anon_sym_xor_eq] = ACTIONS(4797), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4773), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4773), + [anon_sym_not_eq] = ACTIONS(4773), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4763), + [anon_sym_decltype] = ACTIONS(4763), + [anon_sym_virtual] = ACTIONS(4763), + [anon_sym_alignas] = ACTIONS(4763), + [anon_sym_template] = ACTIONS(4763), + [anon_sym_operator] = ACTIONS(4763), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + }, + [1074] = { + [sym_compound_statement] = STATE(8645), + [sym_expression] = STATE(5040), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8645), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(4856), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(4565), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(4858), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_RBRACE] = ACTIONS(4763), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -206635,8 +198653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_typename] = ACTIONS(4571), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -206650,72 +198667,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1054] = { - [sym_expression] = STATE(5614), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(8627), - [sym_initializer_pair] = STATE(8627), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5859), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [sym_identifier] = ACTIONS(4577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_COMMA] = ACTIONS(4765), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1075] = { + [sym_compound_statement] = STATE(8267), + [sym_expression] = STATE(5020), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8267), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(4860), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(4862), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_RBRACE] = ACTIONS(4767), - [anon_sym_LBRACK] = ACTIONS(4583), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -206730,7 +198743,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -206748,7 +198760,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -206762,72 +198774,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1055] = { - [sym_expression_statement] = STATE(2809), - [sym_expression] = STATE(5752), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10632), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_type_requirement] = STATE(2809), - [sym_compound_requirement] = STATE(2809), - [sym_requirement] = STATE(1057), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_requirement_seq_repeat1] = STATE(1057), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1076] = { + [sym_compound_statement] = STATE(8191), + [sym_expression] = STATE(4999), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8191), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(4864), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(4565), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(4866), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_RBRACE] = ACTIONS(4769), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -206859,8 +198867,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_typename] = ACTIONS(4571), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -206874,72 +198881,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1056] = { - [sym_expression_statement] = STATE(2809), - [sym_expression] = STATE(5752), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10632), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_type_requirement] = STATE(2809), - [sym_compound_requirement] = STATE(2809), - [sym_requirement] = STATE(1024), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_requirement_seq_repeat1] = STATE(1024), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1077] = { + [sym_expression] = STATE(5282), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9817), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(9817), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(4565), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(4868), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_RBRACE] = ACTIONS(4771), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -206971,8 +198973,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_typename] = ACTIONS(4571), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -206986,72 +198987,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1057] = { - [sym_expression_statement] = STATE(2809), - [sym_expression] = STATE(5752), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10632), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_type_requirement] = STATE(2809), - [sym_compound_requirement] = STATE(2809), - [sym_requirement] = STATE(1024), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_requirement_seq_repeat1] = STATE(1024), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1078] = { + [sym_string_literal] = STATE(2729), + [sym_template_argument_list] = STATE(1886), + [sym_raw_string_literal] = STATE(2729), + [aux_sym_sized_type_specifier_repeat1] = STATE(3723), + [sym_identifier] = ACTIONS(4763), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4778), + [anon_sym_COMMA] = ACTIONS(4778), + [anon_sym_RPAREN] = ACTIONS(4778), + [anon_sym_LPAREN2] = ACTIONS(4778), + [anon_sym_TILDE] = ACTIONS(4771), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4775), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4778), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4775), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(4781), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym___extension__] = ACTIONS(4763), + [anon_sym_extern] = ACTIONS(4763), + [anon_sym___attribute__] = ACTIONS(4763), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4771), + [anon_sym___declspec] = ACTIONS(4763), + [anon_sym___based] = ACTIONS(4763), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_signed] = ACTIONS(4791), + [anon_sym_unsigned] = ACTIONS(4791), + [anon_sym_long] = ACTIONS(4791), + [anon_sym_short] = ACTIONS(4791), + [anon_sym_LBRACK] = ACTIONS(4775), + [anon_sym_EQ] = ACTIONS(4763), + [anon_sym_static] = ACTIONS(4763), + [anon_sym_register] = ACTIONS(4763), + [anon_sym_inline] = ACTIONS(4763), + [anon_sym___inline] = ACTIONS(4763), + [anon_sym___inline__] = ACTIONS(4763), + [anon_sym___forceinline] = ACTIONS(4763), + [anon_sym_thread_local] = ACTIONS(4763), + [anon_sym___thread] = ACTIONS(4763), + [anon_sym_const] = ACTIONS(4763), + [anon_sym_constexpr] = ACTIONS(4763), + [anon_sym_volatile] = ACTIONS(4763), + [anon_sym_restrict] = ACTIONS(4763), + [anon_sym___restrict__] = ACTIONS(4763), + [anon_sym__Atomic] = ACTIONS(4763), + [anon_sym__Noreturn] = ACTIONS(4763), + [anon_sym_noreturn] = ACTIONS(4763), + [anon_sym_mutable] = ACTIONS(4763), + [anon_sym_constinit] = ACTIONS(4763), + [anon_sym_consteval] = ACTIONS(4763), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4801), + [anon_sym_SLASH_EQ] = ACTIONS(4801), + [anon_sym_PERCENT_EQ] = ACTIONS(4801), + [anon_sym_PLUS_EQ] = ACTIONS(4801), + [anon_sym_DASH_EQ] = ACTIONS(4801), + [anon_sym_LT_LT_EQ] = ACTIONS(4801), + [anon_sym_GT_GT_EQ] = ACTIONS(4801), + [anon_sym_AMP_EQ] = ACTIONS(4801), + [anon_sym_CARET_EQ] = ACTIONS(4801), + [anon_sym_PIPE_EQ] = ACTIONS(4801), + [anon_sym_and_eq] = ACTIONS(4797), + [anon_sym_or_eq] = ACTIONS(4797), + [anon_sym_xor_eq] = ACTIONS(4797), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4773), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4773), + [anon_sym_not_eq] = ACTIONS(4773), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4763), + [anon_sym_decltype] = ACTIONS(4763), + [anon_sym_virtual] = ACTIONS(4763), + [anon_sym_alignas] = ACTIONS(4763), + [anon_sym_template] = ACTIONS(4763), + [anon_sym_operator] = ACTIONS(4763), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + }, + [1079] = { + [sym_expression] = STATE(5347), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9278), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(9278), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(4565), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(4870), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_RBRACE] = ACTIONS(4773), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -207083,8 +199185,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_typename] = ACTIONS(4571), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -207098,72 +199199,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1058] = { - [sym_expression] = STATE(5504), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9079), - [sym_initializer_pair] = STATE(9079), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5859), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [sym_identifier] = ACTIONS(4577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_COMMA] = ACTIONS(4775), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1080] = { + [sym_expression] = STATE(5323), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9389), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(9389), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(4872), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_RBRACE] = ACTIONS(4777), - [anon_sym_LBRACK] = ACTIONS(4583), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -207178,7 +199274,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -207196,7 +199291,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -207210,72 +199305,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1059] = { - [sym_expression_statement] = STATE(2809), - [sym_expression] = STATE(5752), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10632), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_type_requirement] = STATE(2809), - [sym_compound_requirement] = STATE(2809), - [sym_requirement] = STATE(1024), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_requirement_seq_repeat1] = STATE(1024), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1081] = { + [sym_string_literal] = STATE(2729), + [sym_template_argument_list] = STATE(1879), + [sym_raw_string_literal] = STATE(2729), + [aux_sym_sized_type_specifier_repeat1] = STATE(3723), + [sym_identifier] = ACTIONS(4763), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4767), + [anon_sym_TILDE] = ACTIONS(4771), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4775), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4778), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4775), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(4781), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_SEMI] = ACTIONS(4778), + [anon_sym___extension__] = ACTIONS(4763), + [anon_sym_extern] = ACTIONS(4763), + [anon_sym___attribute__] = ACTIONS(4763), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4786), + [anon_sym___declspec] = ACTIONS(4763), + [anon_sym___based] = ACTIONS(4763), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_signed] = ACTIONS(4791), + [anon_sym_unsigned] = ACTIONS(4791), + [anon_sym_long] = ACTIONS(4791), + [anon_sym_short] = ACTIONS(4791), + [anon_sym_LBRACK] = ACTIONS(4793), + [anon_sym_EQ] = ACTIONS(4797), + [anon_sym_static] = ACTIONS(4763), + [anon_sym_register] = ACTIONS(4763), + [anon_sym_inline] = ACTIONS(4763), + [anon_sym___inline] = ACTIONS(4763), + [anon_sym___inline__] = ACTIONS(4763), + [anon_sym___forceinline] = ACTIONS(4763), + [anon_sym_thread_local] = ACTIONS(4763), + [anon_sym___thread] = ACTIONS(4763), + [anon_sym_const] = ACTIONS(4763), + [anon_sym_constexpr] = ACTIONS(4763), + [anon_sym_volatile] = ACTIONS(4763), + [anon_sym_restrict] = ACTIONS(4763), + [anon_sym___restrict__] = ACTIONS(4763), + [anon_sym__Atomic] = ACTIONS(4763), + [anon_sym__Noreturn] = ACTIONS(4763), + [anon_sym_noreturn] = ACTIONS(4763), + [anon_sym_mutable] = ACTIONS(4763), + [anon_sym_constinit] = ACTIONS(4763), + [anon_sym_consteval] = ACTIONS(4763), + [anon_sym_COLON] = ACTIONS(4852), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4801), + [anon_sym_SLASH_EQ] = ACTIONS(4801), + [anon_sym_PERCENT_EQ] = ACTIONS(4801), + [anon_sym_PLUS_EQ] = ACTIONS(4801), + [anon_sym_DASH_EQ] = ACTIONS(4801), + [anon_sym_LT_LT_EQ] = ACTIONS(4801), + [anon_sym_GT_GT_EQ] = ACTIONS(4801), + [anon_sym_AMP_EQ] = ACTIONS(4801), + [anon_sym_CARET_EQ] = ACTIONS(4801), + [anon_sym_PIPE_EQ] = ACTIONS(4801), + [anon_sym_and_eq] = ACTIONS(4797), + [anon_sym_or_eq] = ACTIONS(4797), + [anon_sym_xor_eq] = ACTIONS(4797), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4773), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4773), + [anon_sym_not_eq] = ACTIONS(4773), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4763), + [anon_sym_decltype] = ACTIONS(4763), + [anon_sym_virtual] = ACTIONS(4763), + [anon_sym_alignas] = ACTIONS(4763), + [anon_sym_template] = ACTIONS(4763), + [anon_sym_operator] = ACTIONS(4763), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + }, + [1082] = { + [sym_expression] = STATE(5191), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9900), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(9900), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(4565), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(4874), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_RBRACE] = ACTIONS(4779), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -207307,8 +199503,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_typename] = ACTIONS(4571), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -207322,71 +199517,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1060] = { - [sym_expression] = STATE(5873), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9586), - [sym_initializer_pair] = STATE(9586), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5859), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [sym_identifier] = ACTIONS(4577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1083] = { + [sym_expression] = STATE(5229), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(10064), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(10064), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(4876), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_RBRACE] = ACTIONS(4781), - [anon_sym_LBRACK] = ACTIONS(4583), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -207401,7 +199592,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -207419,7 +199609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -207433,71 +199623,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1061] = { - [sym_expression] = STATE(5873), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9586), - [sym_initializer_pair] = STATE(9586), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5859), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [sym_identifier] = ACTIONS(4577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1084] = { + [sym_compound_statement] = STATE(8911), + [sym_expression] = STATE(5241), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8911), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(4878), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_RBRACE] = ACTIONS(4783), - [anon_sym_LBRACK] = ACTIONS(4583), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -207512,7 +199698,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -207530,7 +199715,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -207544,71 +199729,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1062] = { - [sym_expression] = STATE(5873), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9586), - [sym_initializer_pair] = STATE(9586), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5859), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [sym_identifier] = ACTIONS(4577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1085] = { + [sym_expression] = STATE(5205), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9660), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(9660), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(4880), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_RBRACE] = ACTIONS(4785), - [anon_sym_LBRACK] = ACTIONS(4583), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -207623,7 +199804,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -207641,7 +199821,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -207655,76 +199835,281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1063] = { - [sym_expression] = STATE(5873), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9586), - [sym_initializer_pair] = STATE(9586), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5859), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [sym_identifier] = ACTIONS(4577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_RBRACE] = ACTIONS(4787), - [anon_sym_LBRACK] = ACTIONS(4583), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1086] = { + [sym_expression] = STATE(3536), + [sym_expression_not_binary] = STATE(3960), + [sym_conditional_expression] = STATE(3950), + [sym_assignment_expression] = STATE(3950), + [sym_pointer_expression] = STATE(3961), + [sym_unary_expression] = STATE(3950), + [sym_binary_expression] = STATE(3960), + [sym_update_expression] = STATE(3950), + [sym_cast_expression] = STATE(3950), + [sym_sizeof_expression] = STATE(3950), + [sym_alignof_expression] = STATE(3950), + [sym_offsetof_expression] = STATE(3950), + [sym_generic_expression] = STATE(3950), + [sym_subscript_expression] = STATE(3961), + [sym_call_expression] = STATE(3961), + [sym_gnu_asm_expression] = STATE(3950), + [sym_field_expression] = STATE(3961), + [sym_compound_literal_expression] = STATE(3950), + [sym_parenthesized_expression] = STATE(3961), + [sym_char_literal] = STATE(3756), + [sym_concatenated_string] = STATE(3756), + [sym_string_literal] = STATE(2508), + [sym_null] = STATE(3950), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8975), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3950), + [sym_raw_string_literal] = STATE(2508), + [sym_co_await_expression] = STATE(3950), + [sym_new_expression] = STATE(3950), + [sym_delete_expression] = STATE(3950), + [sym_requires_clause] = STATE(3950), + [sym_requires_expression] = STATE(3950), + [sym_lambda_expression] = STATE(3950), + [sym_lambda_capture_specifier] = STATE(6902), + [sym_fold_expression] = STATE(3950), + [sym_parameter_pack_expansion] = STATE(3950), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(3961), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3961), + [sym_semgrep_ellipsis] = STATE(3960), + [sym_deep_ellipsis] = STATE(3960), + [sym_identifier] = ACTIONS(2923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4882), + [anon_sym_LPAREN2] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(2927), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_AMP_AMP] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_COLON_COLON] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [sym_primitive_type] = ACTIONS(2933), + [anon_sym_not] = ACTIONS(2925), + [anon_sym_compl] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(4888), + [anon_sym_PLUS_PLUS] = ACTIONS(4888), + [anon_sym_sizeof] = ACTIONS(2935), + [anon_sym___alignof__] = ACTIONS(2937), + [anon_sym___alignof] = ACTIONS(2937), + [anon_sym__alignof] = ACTIONS(2937), + [anon_sym_alignof] = ACTIONS(2937), + [anon_sym__Alignof] = ACTIONS(2937), + [anon_sym_offsetof] = ACTIONS(2939), + [anon_sym__Generic] = ACTIONS(2941), + [anon_sym_asm] = ACTIONS(2943), + [anon_sym___asm__] = ACTIONS(2943), + [sym_number_literal] = ACTIONS(2945), + [anon_sym_L_SQUOTE] = ACTIONS(2947), + [anon_sym_u_SQUOTE] = ACTIONS(2947), + [anon_sym_U_SQUOTE] = ACTIONS(2947), + [anon_sym_u8_SQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2947), + [anon_sym_L_DQUOTE] = ACTIONS(2949), + [anon_sym_u_DQUOTE] = ACTIONS(2949), + [anon_sym_U_DQUOTE] = ACTIONS(2949), + [anon_sym_u8_DQUOTE] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2949), + [sym_true] = ACTIONS(2951), + [sym_false] = ACTIONS(2951), + [anon_sym_NULL] = ACTIONS(2953), + [anon_sym_nullptr] = ACTIONS(2953), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2955), + [anon_sym_R_DQUOTE] = ACTIONS(2957), + [anon_sym_LR_DQUOTE] = ACTIONS(2957), + [anon_sym_uR_DQUOTE] = ACTIONS(2957), + [anon_sym_UR_DQUOTE] = ACTIONS(2957), + [anon_sym_u8R_DQUOTE] = ACTIONS(2957), + [anon_sym_co_await] = ACTIONS(2959), + [anon_sym_new] = ACTIONS(2961), + [anon_sym_requires] = ACTIONS(2963), + [sym_this] = ACTIONS(2951), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2965), + [sym_semgrep_named_ellipsis] = ACTIONS(2967), + }, + [1087] = { + [sym_expression] = STATE(3170), + [sym_expression_not_binary] = STATE(3486), + [sym_conditional_expression] = STATE(3447), + [sym_assignment_expression] = STATE(3447), + [sym_pointer_expression] = STATE(3487), + [sym_unary_expression] = STATE(3447), + [sym_binary_expression] = STATE(3486), + [sym_update_expression] = STATE(3447), + [sym_cast_expression] = STATE(3447), + [sym_sizeof_expression] = STATE(3447), + [sym_alignof_expression] = STATE(3447), + [sym_offsetof_expression] = STATE(3447), + [sym_generic_expression] = STATE(3447), + [sym_subscript_expression] = STATE(3487), + [sym_call_expression] = STATE(3487), + [sym_gnu_asm_expression] = STATE(3447), + [sym_field_expression] = STATE(3487), + [sym_compound_literal_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3487), + [sym_char_literal] = STATE(3228), + [sym_concatenated_string] = STATE(3228), + [sym_string_literal] = STATE(2167), + [sym_null] = STATE(3447), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8847), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3447), + [sym_raw_string_literal] = STATE(2167), + [sym_co_await_expression] = STATE(3447), + [sym_new_expression] = STATE(3447), + [sym_delete_expression] = STATE(3447), + [sym_requires_clause] = STATE(3447), + [sym_requires_expression] = STATE(3447), + [sym_lambda_expression] = STATE(3447), + [sym_lambda_capture_specifier] = STATE(6853), + [sym_fold_expression] = STATE(3447), + [sym_parameter_pack_expansion] = STATE(3447), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3487), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3487), + [sym_semgrep_ellipsis] = STATE(3486), + [sym_deep_ellipsis] = STATE(3486), + [sym_identifier] = ACTIONS(4890), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4892), + [anon_sym_LPAREN2] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_TILDE] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2365), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_AMP_AMP] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_COLON_COLON] = ACTIONS(2369), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [sym_primitive_type] = ACTIONS(2373), + [anon_sym_not] = ACTIONS(2365), + [anon_sym_compl] = ACTIONS(2365), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_sizeof] = ACTIONS(2375), + [anon_sym___alignof__] = ACTIONS(2377), + [anon_sym___alignof] = ACTIONS(2377), + [anon_sym__alignof] = ACTIONS(2377), + [anon_sym_alignof] = ACTIONS(2377), + [anon_sym__Alignof] = ACTIONS(2377), + [anon_sym_offsetof] = ACTIONS(2379), + [anon_sym__Generic] = ACTIONS(2381), + [anon_sym_asm] = ACTIONS(2383), + [anon_sym___asm__] = ACTIONS(2383), + [sym_number_literal] = ACTIONS(2385), + [anon_sym_L_SQUOTE] = ACTIONS(2387), + [anon_sym_u_SQUOTE] = ACTIONS(2387), + [anon_sym_U_SQUOTE] = ACTIONS(2387), + [anon_sym_u8_SQUOTE] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2387), + [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(2391), + [sym_false] = ACTIONS(2391), + [anon_sym_NULL] = ACTIONS(2393), + [anon_sym_nullptr] = ACTIONS(2393), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2399), + [anon_sym_new] = ACTIONS(2401), + [anon_sym_requires] = ACTIONS(2403), + [sym_this] = ACTIONS(2391), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2405), + [sym_semgrep_named_ellipsis] = ACTIONS(2407), + }, + [1088] = { + [sym_expression] = STATE(4964), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_lambda_default_capture] = STATE(8695), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4898), + [anon_sym_EQ] = ACTIONS(4900), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -207734,7 +200119,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -207752,90 +200136,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1064] = { - [sym_expression] = STATE(5873), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9586), - [sym_initializer_pair] = STATE(9586), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5859), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [sym_identifier] = ACTIONS(4577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_RBRACE] = ACTIONS(4789), - [anon_sym_LBRACK] = ACTIONS(4583), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1089] = { + [sym_expression] = STATE(3174), + [sym_expression_not_binary] = STATE(3486), + [sym_conditional_expression] = STATE(3447), + [sym_assignment_expression] = STATE(3447), + [sym_pointer_expression] = STATE(3487), + [sym_unary_expression] = STATE(3447), + [sym_binary_expression] = STATE(3486), + [sym_update_expression] = STATE(3447), + [sym_cast_expression] = STATE(3447), + [sym_sizeof_expression] = STATE(3447), + [sym_alignof_expression] = STATE(3447), + [sym_offsetof_expression] = STATE(3447), + [sym_generic_expression] = STATE(3447), + [sym_subscript_expression] = STATE(3487), + [sym_call_expression] = STATE(3487), + [sym_gnu_asm_expression] = STATE(3447), + [sym_field_expression] = STATE(3487), + [sym_compound_literal_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3487), + [sym_char_literal] = STATE(3228), + [sym_concatenated_string] = STATE(3228), + [sym_string_literal] = STATE(2167), + [sym_null] = STATE(3447), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8847), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3447), + [sym_raw_string_literal] = STATE(2167), + [sym_co_await_expression] = STATE(3447), + [sym_new_expression] = STATE(3447), + [sym_delete_expression] = STATE(3447), + [sym_requires_clause] = STATE(3447), + [sym_requires_expression] = STATE(3447), + [sym_lambda_expression] = STATE(3447), + [sym_lambda_capture_specifier] = STATE(6853), + [sym_fold_expression] = STATE(3447), + [sym_parameter_pack_expansion] = STATE(3447), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3487), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3487), + [sym_semgrep_ellipsis] = STATE(3486), + [sym_deep_ellipsis] = STATE(3486), + [sym_identifier] = ACTIONS(4890), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4892), + [anon_sym_LPAREN2] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_TILDE] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2365), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_AMP_AMP] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_COLON_COLON] = ACTIONS(2369), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [sym_primitive_type] = ACTIONS(2373), + [anon_sym_not] = ACTIONS(2365), + [anon_sym_compl] = ACTIONS(2365), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_sizeof] = ACTIONS(2375), + [anon_sym___alignof__] = ACTIONS(2377), + [anon_sym___alignof] = ACTIONS(2377), + [anon_sym__alignof] = ACTIONS(2377), + [anon_sym_alignof] = ACTIONS(2377), + [anon_sym__Alignof] = ACTIONS(2377), + [anon_sym_offsetof] = ACTIONS(2379), + [anon_sym__Generic] = ACTIONS(2381), + [anon_sym_asm] = ACTIONS(2383), + [anon_sym___asm__] = ACTIONS(2383), + [sym_number_literal] = ACTIONS(2385), + [anon_sym_L_SQUOTE] = ACTIONS(2387), + [anon_sym_u_SQUOTE] = ACTIONS(2387), + [anon_sym_U_SQUOTE] = ACTIONS(2387), + [anon_sym_u8_SQUOTE] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2387), + [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(2391), + [sym_false] = ACTIONS(2391), + [anon_sym_NULL] = ACTIONS(2393), + [anon_sym_nullptr] = ACTIONS(2393), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2399), + [anon_sym_new] = ACTIONS(2401), + [anon_sym_requires] = ACTIONS(2403), + [sym_this] = ACTIONS(2391), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2405), + [sym_semgrep_named_ellipsis] = ACTIONS(2407), + }, + [1090] = { + [sym_expression] = STATE(4964), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_lambda_default_capture] = STATE(8695), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4902), + [anon_sym_EQ] = ACTIONS(4900), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -207845,7 +200329,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -207863,90 +200346,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1065] = { - [sym_expression] = STATE(5873), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9586), - [sym_initializer_pair] = STATE(9586), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5859), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [sym_identifier] = ACTIONS(4577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_RBRACE] = ACTIONS(4791), - [anon_sym_LBRACK] = ACTIONS(4583), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1091] = { + [sym_expression] = STATE(4964), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_lambda_default_capture] = STATE(8695), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4904), + [anon_sym_EQ] = ACTIONS(4900), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -207956,7 +200434,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -207974,90 +200451,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1066] = { - [sym_expression] = STATE(5873), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9586), - [sym_initializer_pair] = STATE(9586), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5859), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [sym_identifier] = ACTIONS(4577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_RBRACE] = ACTIONS(4793), - [anon_sym_LBRACK] = ACTIONS(4583), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1092] = { + [sym_expression] = STATE(4964), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_lambda_default_capture] = STATE(8695), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4906), + [anon_sym_EQ] = ACTIONS(4900), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -208067,7 +200539,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -208085,90 +200556,400 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), + }, + [1093] = { + [sym_expression] = STATE(5143), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3922), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3922), + [sym_call_expression] = STATE(3922), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3922), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3922), + [sym_char_literal] = STATE(5203), + [sym_concatenated_string] = STATE(5203), + [sym_string_literal] = STATE(3965), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3965), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3922), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3922), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_TILDE] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_AMP_AMP] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4200), + [anon_sym_compl] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_sizeof] = ACTIONS(4206), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(4208), + [anon_sym_L_SQUOTE] = ACTIONS(4210), + [anon_sym_u_SQUOTE] = ACTIONS(4210), + [anon_sym_U_SQUOTE] = ACTIONS(4210), + [anon_sym_u8_SQUOTE] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4210), + [anon_sym_L_DQUOTE] = ACTIONS(4212), + [anon_sym_u_DQUOTE] = ACTIONS(4212), + [anon_sym_U_DQUOTE] = ACTIONS(4212), + [anon_sym_u8_DQUOTE] = ACTIONS(4212), + [anon_sym_DQUOTE] = ACTIONS(4212), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4214), + [anon_sym_R_DQUOTE] = ACTIONS(4216), + [anon_sym_LR_DQUOTE] = ACTIONS(4216), + [anon_sym_uR_DQUOTE] = ACTIONS(4216), + [anon_sym_UR_DQUOTE] = ACTIONS(4216), + [anon_sym_u8R_DQUOTE] = ACTIONS(4216), + [anon_sym_co_await] = ACTIONS(4218), [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1067] = { - [sym_expression] = STATE(5873), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9586), - [sym_initializer_pair] = STATE(9586), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5859), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [sym_identifier] = ACTIONS(4577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_RBRACE] = ACTIONS(4795), - [anon_sym_LBRACK] = ACTIONS(4583), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1094] = { + [sym_expression] = STATE(5147), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3922), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3922), + [sym_call_expression] = STATE(3922), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3922), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3922), + [sym_char_literal] = STATE(5203), + [sym_concatenated_string] = STATE(5203), + [sym_string_literal] = STATE(3965), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3965), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3922), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3922), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_TILDE] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_AMP_AMP] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4200), + [anon_sym_compl] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_sizeof] = ACTIONS(4206), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(4208), + [anon_sym_L_SQUOTE] = ACTIONS(4210), + [anon_sym_u_SQUOTE] = ACTIONS(4210), + [anon_sym_U_SQUOTE] = ACTIONS(4210), + [anon_sym_u8_SQUOTE] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4210), + [anon_sym_L_DQUOTE] = ACTIONS(4212), + [anon_sym_u_DQUOTE] = ACTIONS(4212), + [anon_sym_U_DQUOTE] = ACTIONS(4212), + [anon_sym_u8_DQUOTE] = ACTIONS(4212), + [anon_sym_DQUOTE] = ACTIONS(4212), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4214), + [anon_sym_R_DQUOTE] = ACTIONS(4216), + [anon_sym_LR_DQUOTE] = ACTIONS(4216), + [anon_sym_uR_DQUOTE] = ACTIONS(4216), + [anon_sym_UR_DQUOTE] = ACTIONS(4216), + [anon_sym_u8R_DQUOTE] = ACTIONS(4216), + [anon_sym_co_await] = ACTIONS(4218), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), + }, + [1095] = { + [sym_expression] = STATE(4893), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3922), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3922), + [sym_call_expression] = STATE(3922), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3922), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3922), + [sym_initializer_list] = STATE(7828), + [sym_char_literal] = STATE(5203), + [sym_concatenated_string] = STATE(5203), + [sym_string_literal] = STATE(3965), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3965), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3922), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3922), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_TILDE] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_default] = ACTIONS(4914), + [anon_sym_not] = ACTIONS(4200), + [anon_sym_compl] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_sizeof] = ACTIONS(4206), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(4208), + [anon_sym_L_SQUOTE] = ACTIONS(4210), + [anon_sym_u_SQUOTE] = ACTIONS(4210), + [anon_sym_U_SQUOTE] = ACTIONS(4210), + [anon_sym_u8_SQUOTE] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4210), + [anon_sym_L_DQUOTE] = ACTIONS(4212), + [anon_sym_u_DQUOTE] = ACTIONS(4212), + [anon_sym_U_DQUOTE] = ACTIONS(4212), + [anon_sym_u8_DQUOTE] = ACTIONS(4212), + [anon_sym_DQUOTE] = ACTIONS(4212), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4916), + [anon_sym_R_DQUOTE] = ACTIONS(4216), + [anon_sym_LR_DQUOTE] = ACTIONS(4216), + [anon_sym_uR_DQUOTE] = ACTIONS(4216), + [anon_sym_UR_DQUOTE] = ACTIONS(4216), + [anon_sym_u8R_DQUOTE] = ACTIONS(4216), + [anon_sym_co_await] = ACTIONS(4218), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), + }, + [1096] = { + [sym_expression] = STATE(5165), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_lambda_default_capture] = STATE(8695), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4918), + [anon_sym_EQ] = ACTIONS(4900), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -208178,7 +200959,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -208196,90 +200976,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1068] = { - [sym_expression] = STATE(5873), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9586), - [sym_initializer_pair] = STATE(9586), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5859), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [sym_identifier] = ACTIONS(4577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_RBRACE] = ACTIONS(4715), - [anon_sym_LBRACK] = ACTIONS(4583), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1097] = { + [sym_expression] = STATE(3968), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_AMP_AMP] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), + }, + [1098] = { + [sym_expression] = STATE(3614), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_unary_left_fold] = STATE(9216), + [sym_unary_right_fold] = STATE(9216), + [sym_binary_fold] = STATE(9216), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2131), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), + }, + [1099] = { + [sym_expression] = STATE(4964), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_lambda_default_capture] = STATE(8695), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4922), + [anon_sym_EQ] = ACTIONS(4900), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -208289,7 +201274,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -208307,90 +201291,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1069] = { - [sym_expression] = STATE(5873), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9586), - [sym_initializer_pair] = STATE(9586), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5859), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [sym_identifier] = ACTIONS(4577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_RBRACE] = ACTIONS(4797), - [anon_sym_LBRACK] = ACTIONS(4583), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1100] = { + [sym_expression] = STATE(4964), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_lambda_default_capture] = STATE(8695), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4924), + [anon_sym_EQ] = ACTIONS(4900), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -208400,7 +201379,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -208418,85 +201396,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1070] = { - [sym_expression] = STATE(5873), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9586), - [sym_initializer_pair] = STATE(9586), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5859), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [sym_identifier] = ACTIONS(4577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1101] = { + [sym_expression] = STATE(4862), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4884), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_AMP_AMP] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4886), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_RBRACE] = ACTIONS(4799), - [anon_sym_LBRACK] = ACTIONS(4583), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -208511,7 +201484,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -208529,7 +201501,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -208543,76 +201515,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1071] = { - [sym_expression] = STATE(5873), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9586), - [sym_initializer_pair] = STATE(9586), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5859), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [sym_identifier] = ACTIONS(4577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_RBRACE] = ACTIONS(4801), - [anon_sym_LBRACK] = ACTIONS(4583), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1102] = { + [sym_expression] = STATE(4964), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_lambda_default_capture] = STATE(8695), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4926), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4918), + [anon_sym_EQ] = ACTIONS(4900), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -208622,7 +201589,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -208640,90 +201606,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1072] = { - [sym_expression] = STATE(5873), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9586), - [sym_initializer_pair] = STATE(9586), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5859), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [sym_identifier] = ACTIONS(4577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_RBRACE] = ACTIONS(4803), - [anon_sym_LBRACK] = ACTIONS(4583), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1103] = { + [sym_expression] = STATE(4964), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_lambda_default_capture] = STATE(8695), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4918), + [anon_sym_EQ] = ACTIONS(4900), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -208733,7 +201694,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -208751,90 +201711,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1073] = { - [sym_expression] = STATE(5873), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9586), - [sym_initializer_pair] = STATE(9586), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5859), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [sym_identifier] = ACTIONS(4577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_RBRACE] = ACTIONS(4805), - [anon_sym_LBRACK] = ACTIONS(4583), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1104] = { + [sym_expression] = STATE(4964), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_lambda_default_capture] = STATE(8695), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4928), + [anon_sym_EQ] = ACTIONS(4900), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -208844,7 +201799,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -208862,90 +201816,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1074] = { - [sym_expression] = STATE(5873), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9586), - [sym_initializer_pair] = STATE(9586), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5859), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [sym_identifier] = ACTIONS(4577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_RBRACE] = ACTIONS(4807), - [anon_sym_LBRACK] = ACTIONS(4583), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1105] = { + [sym_expression] = STATE(4964), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_lambda_default_capture] = STATE(8695), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4930), + [anon_sym_EQ] = ACTIONS(4900), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -208955,7 +201904,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -208973,90 +201921,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1075] = { - [sym_expression] = STATE(5873), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9586), - [sym_initializer_pair] = STATE(9586), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5859), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [sym_identifier] = ACTIONS(4577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_RBRACE] = ACTIONS(4809), - [anon_sym_LBRACK] = ACTIONS(4583), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1106] = { + [sym_expression] = STATE(4964), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_lambda_default_capture] = STATE(8695), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4932), + [anon_sym_EQ] = ACTIONS(4900), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -209066,7 +202009,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -209084,90 +202026,400 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1076] = { - [sym_expression] = STATE(5873), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9586), - [sym_initializer_pair] = STATE(9586), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5859), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [sym_identifier] = ACTIONS(4577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_RBRACE] = ACTIONS(4811), - [anon_sym_LBRACK] = ACTIONS(4583), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1107] = { + [sym_expression] = STATE(4765), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3204), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3204), + [sym_call_expression] = STATE(3204), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3204), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3204), + [sym_char_literal] = STATE(4797), + [sym_concatenated_string] = STATE(4797), + [sym_string_literal] = STATE(3234), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3234), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6827), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(3204), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3204), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_AMP_AMP] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_COLON_COLON] = ACTIONS(3897), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4936), + [anon_sym_PLUS_PLUS] = ACTIONS(4936), + [anon_sym_sizeof] = ACTIONS(3901), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(3903), + [anon_sym_L_SQUOTE] = ACTIONS(3905), + [anon_sym_u_SQUOTE] = ACTIONS(3905), + [anon_sym_U_SQUOTE] = ACTIONS(3905), + [anon_sym_u8_SQUOTE] = ACTIONS(3905), + [anon_sym_SQUOTE] = ACTIONS(3905), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3909), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + [anon_sym_co_await] = ACTIONS(3913), + [anon_sym_new] = ACTIONS(3915), + [anon_sym_requires] = ACTIONS(3917), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), + }, + [1108] = { + [sym_expression] = STATE(4701), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3204), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3204), + [sym_call_expression] = STATE(3204), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3204), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3204), + [sym_char_literal] = STATE(4797), + [sym_concatenated_string] = STATE(4797), + [sym_string_literal] = STATE(3234), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3234), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6827), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(3204), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3204), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_AMP_AMP] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_COLON_COLON] = ACTIONS(3897), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4936), + [anon_sym_PLUS_PLUS] = ACTIONS(4936), + [anon_sym_sizeof] = ACTIONS(3901), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(3903), + [anon_sym_L_SQUOTE] = ACTIONS(3905), + [anon_sym_u_SQUOTE] = ACTIONS(3905), + [anon_sym_U_SQUOTE] = ACTIONS(3905), + [anon_sym_u8_SQUOTE] = ACTIONS(3905), + [anon_sym_SQUOTE] = ACTIONS(3905), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3909), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + [anon_sym_co_await] = ACTIONS(3913), + [anon_sym_new] = ACTIONS(3915), + [anon_sym_requires] = ACTIONS(3917), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), + }, + [1109] = { + [sym_expression] = STATE(3113), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_AMP_AMP] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1110] = { + [sym_expression] = STATE(4964), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_lambda_default_capture] = STATE(8695), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4938), + [anon_sym_EQ] = ACTIONS(4900), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -209177,7 +202429,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -209195,90 +202446,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1077] = { - [sym_expression] = STATE(5873), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9586), - [sym_initializer_pair] = STATE(9586), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5859), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [sym_identifier] = ACTIONS(4577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_RBRACE] = ACTIONS(4813), - [anon_sym_LBRACK] = ACTIONS(4583), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1111] = { + [sym_expression] = STATE(4964), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_lambda_default_capture] = STATE(8695), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4940), + [anon_sym_EQ] = ACTIONS(4900), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -209288,7 +202534,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -209306,90 +202551,400 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1078] = { - [sym_expression] = STATE(5873), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9586), - [sym_initializer_pair] = STATE(9586), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5859), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [sym_identifier] = ACTIONS(4577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_RBRACE] = ACTIONS(4815), - [anon_sym_LBRACK] = ACTIONS(4583), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1112] = { + [sym_expression] = STATE(3096), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_AMP_AMP] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1113] = { + [sym_expression] = STATE(4021), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_AMP_AMP] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), + }, + [1114] = { + [sym_expression] = STATE(3513), + [sym_expression_not_binary] = STATE(3766), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8737), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [sym_identifier] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3706), + [anon_sym_LPAREN2] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_AMP_AMP] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_compl] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), + }, + [1115] = { + [sym_expression] = STATE(4964), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_lambda_default_capture] = STATE(8695), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4942), + [anon_sym_EQ] = ACTIONS(4900), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -209399,7 +202954,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -209417,90 +202971,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1079] = { - [sym_expression] = STATE(5873), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9586), - [sym_initializer_pair] = STATE(9586), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5859), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [sym_identifier] = ACTIONS(4577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_RBRACE] = ACTIONS(4817), - [anon_sym_LBRACK] = ACTIONS(4583), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1116] = { + [sym_expression] = STATE(4964), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_lambda_default_capture] = STATE(8695), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4944), + [anon_sym_EQ] = ACTIONS(4900), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -209510,7 +203059,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -209528,90 +203076,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1080] = { - [sym_expression] = STATE(5873), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9586), - [sym_initializer_pair] = STATE(9586), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5859), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [sym_identifier] = ACTIONS(4577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_RBRACE] = ACTIONS(4819), - [anon_sym_LBRACK] = ACTIONS(4583), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1117] = { + [sym_expression] = STATE(4964), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_lambda_default_capture] = STATE(8695), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4946), + [anon_sym_EQ] = ACTIONS(4900), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -209621,7 +203164,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -209639,90 +203181,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1081] = { - [sym_expression] = STATE(5873), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9586), - [sym_initializer_pair] = STATE(9586), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5859), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [sym_identifier] = ACTIONS(4577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_RBRACE] = ACTIONS(4821), - [anon_sym_LBRACK] = ACTIONS(4583), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1118] = { + [sym_expression] = STATE(5339), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8965), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [sym_identifier] = ACTIONS(4236), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_AMP_AMP] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [sym_primitive_type] = ACTIONS(4240), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), + }, + [1119] = { + [sym_expression] = STATE(4964), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_lambda_default_capture] = STATE(8695), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4948), + [anon_sym_EQ] = ACTIONS(4900), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -209732,7 +203374,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -209750,90 +203391,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1082] = { - [sym_expression] = STATE(5873), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9586), - [sym_initializer_pair] = STATE(9586), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5859), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [sym_identifier] = ACTIONS(4577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_RBRACE] = ACTIONS(4823), - [anon_sym_LBRACK] = ACTIONS(4583), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1120] = { + [sym_expression] = STATE(4964), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_lambda_default_capture] = STATE(8695), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4950), + [anon_sym_EQ] = ACTIONS(4900), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -209843,7 +203479,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -209861,90 +203496,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1083] = { - [sym_expression] = STATE(5873), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9586), - [sym_initializer_pair] = STATE(9586), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5859), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [sym_identifier] = ACTIONS(4577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_RBRACE] = ACTIONS(4825), - [anon_sym_LBRACK] = ACTIONS(4583), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1121] = { + [sym_expression] = STATE(4964), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_lambda_default_capture] = STATE(8695), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4952), + [anon_sym_EQ] = ACTIONS(4900), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -209954,7 +203584,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -209972,84 +203601,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1084] = { - [sym_expression] = STATE(5873), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9586), - [sym_initializer_pair] = STATE(9586), - [sym_subscript_designator] = STATE(8026), - [sym_subscript_range_designator] = STATE(8026), - [sym_field_designator] = STATE(8026), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5859), - [sym_deep_ellipsis] = STATE(5260), - [aux_sym_initializer_pair_repeat1] = STATE(8026), - [sym_identifier] = ACTIONS(4577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1122] = { + [sym_expression] = STATE(5540), + [sym_expression_not_binary] = STATE(5685), + [sym_conditional_expression] = STATE(5675), + [sym_assignment_expression] = STATE(5675), + [sym_pointer_expression] = STATE(4201), + [sym_unary_expression] = STATE(5675), + [sym_binary_expression] = STATE(5685), + [sym_update_expression] = STATE(5675), + [sym_cast_expression] = STATE(5675), + [sym_sizeof_expression] = STATE(5675), + [sym_alignof_expression] = STATE(5675), + [sym_offsetof_expression] = STATE(5675), + [sym_generic_expression] = STATE(5675), + [sym_subscript_expression] = STATE(4201), + [sym_call_expression] = STATE(4201), + [sym_gnu_asm_expression] = STATE(5675), + [sym_field_expression] = STATE(4201), + [sym_compound_literal_expression] = STATE(5675), + [sym_parenthesized_expression] = STATE(4201), + [sym_char_literal] = STATE(5600), + [sym_concatenated_string] = STATE(5600), + [sym_string_literal] = STATE(4359), + [sym_null] = STATE(5675), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9034), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5675), + [sym_raw_string_literal] = STATE(4359), + [sym_co_await_expression] = STATE(5675), + [sym_new_expression] = STATE(5675), + [sym_delete_expression] = STATE(5675), + [sym_requires_clause] = STATE(5675), + [sym_requires_expression] = STATE(5675), + [sym_lambda_expression] = STATE(5675), + [sym_lambda_capture_specifier] = STATE(6898), + [sym_fold_expression] = STATE(5675), + [sym_parameter_pack_expansion] = STATE(5675), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4201), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4201), + [sym_semgrep_ellipsis] = STATE(5685), + [sym_deep_ellipsis] = STATE(5685), + [sym_identifier] = ACTIONS(4242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4954), + [anon_sym_LPAREN2] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_TILDE] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_AMP_AMP] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_COLON_COLON] = ACTIONS(4248), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [sym_primitive_type] = ACTIONS(4252), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_sizeof] = ACTIONS(4254), + [anon_sym___alignof__] = ACTIONS(4256), + [anon_sym___alignof] = ACTIONS(4256), + [anon_sym__alignof] = ACTIONS(4256), + [anon_sym_alignof] = ACTIONS(4256), + [anon_sym__Alignof] = ACTIONS(4256), + [anon_sym_offsetof] = ACTIONS(4258), + [anon_sym__Generic] = ACTIONS(4260), + [anon_sym_asm] = ACTIONS(4262), + [anon_sym___asm__] = ACTIONS(4262), + [sym_number_literal] = ACTIONS(4264), + [anon_sym_L_SQUOTE] = ACTIONS(4266), + [anon_sym_u_SQUOTE] = ACTIONS(4266), + [anon_sym_U_SQUOTE] = ACTIONS(4266), + [anon_sym_u8_SQUOTE] = ACTIONS(4266), + [anon_sym_SQUOTE] = ACTIONS(4266), + [anon_sym_L_DQUOTE] = ACTIONS(4268), + [anon_sym_u_DQUOTE] = ACTIONS(4268), + [anon_sym_U_DQUOTE] = ACTIONS(4268), + [anon_sym_u8_DQUOTE] = ACTIONS(4268), + [anon_sym_DQUOTE] = ACTIONS(4268), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4272), + [anon_sym_nullptr] = ACTIONS(4272), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4274), + [anon_sym_R_DQUOTE] = ACTIONS(4276), + [anon_sym_LR_DQUOTE] = ACTIONS(4276), + [anon_sym_uR_DQUOTE] = ACTIONS(4276), + [anon_sym_UR_DQUOTE] = ACTIONS(4276), + [anon_sym_u8R_DQUOTE] = ACTIONS(4276), + [anon_sym_co_await] = ACTIONS(4278), + [anon_sym_new] = ACTIONS(4280), + [anon_sym_requires] = ACTIONS(4282), + [sym_this] = ACTIONS(4270), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4284), + [sym_semgrep_named_ellipsis] = ACTIONS(4286), + }, + [1123] = { + [sym_expression] = STATE(4872), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4884), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_AMP_AMP] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4886), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_LBRACK] = ACTIONS(4583), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -210064,7 +203794,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [anon_sym_DOT] = ACTIONS(229), [sym_number_literal] = ACTIONS(111), [anon_sym_L_SQUOTE] = ACTIONS(113), [anon_sym_u_SQUOTE] = ACTIONS(113), @@ -210082,7 +203811,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -210096,181 +203825,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1085] = { - [sym_string_literal] = STATE(2640), - [sym_template_argument_list] = STATE(1899), - [sym_raw_string_literal] = STATE(2640), - [aux_sym_sized_type_specifier_repeat1] = STATE(4040), - [sym_identifier] = ACTIONS(4827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(4831), - [anon_sym_TILDE] = ACTIONS(4835), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4839), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4842), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4839), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(4845), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4842), - [anon_sym___extension__] = ACTIONS(4827), - [anon_sym_extern] = ACTIONS(4827), - [anon_sym___attribute__] = ACTIONS(4827), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4850), - [anon_sym___declspec] = ACTIONS(4827), - [anon_sym___based] = ACTIONS(4827), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_RBRACE] = ACTIONS(4829), - [anon_sym_signed] = ACTIONS(4855), - [anon_sym_unsigned] = ACTIONS(4855), - [anon_sym_long] = ACTIONS(4855), - [anon_sym_short] = ACTIONS(4855), - [anon_sym_LBRACK] = ACTIONS(4857), - [anon_sym_EQ] = ACTIONS(4861), - [anon_sym_static] = ACTIONS(4827), - [anon_sym_register] = ACTIONS(4827), - [anon_sym_inline] = ACTIONS(4827), - [anon_sym___inline] = ACTIONS(4827), - [anon_sym___inline__] = ACTIONS(4827), - [anon_sym___forceinline] = ACTIONS(4827), - [anon_sym_thread_local] = ACTIONS(4827), - [anon_sym___thread] = ACTIONS(4827), - [anon_sym_const] = ACTIONS(4827), - [anon_sym_constexpr] = ACTIONS(4827), - [anon_sym_volatile] = ACTIONS(4827), - [anon_sym_restrict] = ACTIONS(4827), - [anon_sym___restrict__] = ACTIONS(4827), - [anon_sym__Atomic] = ACTIONS(4827), - [anon_sym__Noreturn] = ACTIONS(4827), - [anon_sym_noreturn] = ACTIONS(4827), - [anon_sym_mutable] = ACTIONS(4827), - [anon_sym_constinit] = ACTIONS(4827), - [anon_sym_consteval] = ACTIONS(4827), - [anon_sym_COLON] = ACTIONS(4863), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4865), - [anon_sym_SLASH_EQ] = ACTIONS(4865), - [anon_sym_PERCENT_EQ] = ACTIONS(4865), - [anon_sym_PLUS_EQ] = ACTIONS(4865), - [anon_sym_DASH_EQ] = ACTIONS(4865), - [anon_sym_LT_LT_EQ] = ACTIONS(4865), - [anon_sym_GT_GT_EQ] = ACTIONS(4865), - [anon_sym_AMP_EQ] = ACTIONS(4865), - [anon_sym_CARET_EQ] = ACTIONS(4865), - [anon_sym_PIPE_EQ] = ACTIONS(4865), - [anon_sym_and_eq] = ACTIONS(4861), - [anon_sym_or_eq] = ACTIONS(4861), - [anon_sym_xor_eq] = ACTIONS(4861), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4837), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4837), - [anon_sym_not_eq] = ACTIONS(4837), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4827), - [anon_sym_decltype] = ACTIONS(4827), - [anon_sym_virtual] = ACTIONS(4827), - [anon_sym_alignas] = ACTIONS(4827), - [anon_sym_template] = ACTIONS(4827), - [anon_sym_operator] = ACTIONS(4827), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - }, - [1086] = { - [sym_compound_statement] = STATE(8876), - [sym_expression] = STATE(5688), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(8876), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_RPAREN] = ACTIONS(4867), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4869), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1124] = { + [sym_expression] = STATE(4964), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_lambda_default_capture] = STATE(8695), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4958), + [anon_sym_EQ] = ACTIONS(4900), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -210297,194 +203916,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1087] = { - [sym_string_literal] = STATE(2409), - [sym_template_argument_list] = STATE(1847), - [sym_raw_string_literal] = STATE(2409), - [aux_sym_sized_type_specifier_repeat1] = STATE(4040), - [sym_identifier] = ACTIONS(4827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4842), - [anon_sym_COMMA] = ACTIONS(4842), - [anon_sym_RPAREN] = ACTIONS(4842), - [anon_sym_LPAREN2] = ACTIONS(4842), - [anon_sym_TILDE] = ACTIONS(4835), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4839), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4842), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4839), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(4871), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym___extension__] = ACTIONS(4827), - [anon_sym_extern] = ACTIONS(4827), - [anon_sym___attribute__] = ACTIONS(4827), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4835), - [anon_sym___declspec] = ACTIONS(4827), - [anon_sym___based] = ACTIONS(4827), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_signed] = ACTIONS(4855), - [anon_sym_unsigned] = ACTIONS(4855), - [anon_sym_long] = ACTIONS(4855), - [anon_sym_short] = ACTIONS(4855), - [anon_sym_LBRACK] = ACTIONS(4839), - [anon_sym_EQ] = ACTIONS(4839), - [anon_sym_static] = ACTIONS(4827), - [anon_sym_register] = ACTIONS(4827), - [anon_sym_inline] = ACTIONS(4827), - [anon_sym___inline] = ACTIONS(4827), - [anon_sym___inline__] = ACTIONS(4827), - [anon_sym___forceinline] = ACTIONS(4827), - [anon_sym_thread_local] = ACTIONS(4827), - [anon_sym___thread] = ACTIONS(4827), - [anon_sym_const] = ACTIONS(4827), - [anon_sym_constexpr] = ACTIONS(4827), - [anon_sym_volatile] = ACTIONS(4827), - [anon_sym_restrict] = ACTIONS(4827), - [anon_sym___restrict__] = ACTIONS(4827), - [anon_sym__Atomic] = ACTIONS(4827), - [anon_sym__Noreturn] = ACTIONS(4827), - [anon_sym_noreturn] = ACTIONS(4827), - [anon_sym_mutable] = ACTIONS(4827), - [anon_sym_constinit] = ACTIONS(4827), - [anon_sym_consteval] = ACTIONS(4827), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4829), - [anon_sym_SLASH_EQ] = ACTIONS(4829), - [anon_sym_PERCENT_EQ] = ACTIONS(4829), - [anon_sym_PLUS_EQ] = ACTIONS(4829), - [anon_sym_DASH_EQ] = ACTIONS(4829), - [anon_sym_LT_LT_EQ] = ACTIONS(4829), - [anon_sym_GT_GT_EQ] = ACTIONS(4829), - [anon_sym_AMP_EQ] = ACTIONS(4829), - [anon_sym_CARET_EQ] = ACTIONS(4829), - [anon_sym_PIPE_EQ] = ACTIONS(4829), - [anon_sym_and_eq] = ACTIONS(4874), - [anon_sym_or_eq] = ACTIONS(4874), - [anon_sym_xor_eq] = ACTIONS(4874), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4837), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4837), - [anon_sym_not_eq] = ACTIONS(4837), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4837), - [anon_sym_L_DQUOTE] = ACTIONS(4876), - [anon_sym_u_DQUOTE] = ACTIONS(4876), - [anon_sym_U_DQUOTE] = ACTIONS(4876), - [anon_sym_u8_DQUOTE] = ACTIONS(4876), - [anon_sym_DQUOTE] = ACTIONS(4876), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4827), - [anon_sym_decltype] = ACTIONS(4827), - [anon_sym_virtual] = ACTIONS(4827), - [anon_sym_alignas] = ACTIONS(4827), - [anon_sym_template] = ACTIONS(4827), - [anon_sym_operator] = ACTIONS(4827), - [anon_sym_R_DQUOTE] = ACTIONS(4878), - [anon_sym_LR_DQUOTE] = ACTIONS(4878), - [anon_sym_uR_DQUOTE] = ACTIONS(4878), - [anon_sym_UR_DQUOTE] = ACTIONS(4878), - [anon_sym_u8R_DQUOTE] = ACTIONS(4878), - [anon_sym_DASH_GT_STAR] = ACTIONS(4829), - }, - [1088] = { - [sym_compound_statement] = STATE(8984), - [sym_expression] = STATE(5530), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(8984), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_RPAREN] = ACTIONS(4880), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4882), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1125] = { + [sym_expression] = STATE(4964), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_lambda_default_capture] = STATE(8695), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4960), + [anon_sym_EQ] = ACTIONS(4900), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -210511,87 +204021,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1089] = { - [sym_compound_statement] = STATE(8592), - [sym_expression] = STATE(5613), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(8592), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_RPAREN] = ACTIONS(4884), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4886), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1126] = { + [sym_expression] = STATE(4964), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_lambda_default_capture] = STATE(8695), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4962), + [anon_sym_EQ] = ACTIONS(4900), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -210618,408 +204126,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1090] = { - [sym_string_literal] = STATE(2640), - [sym_template_argument_list] = STATE(1895), - [sym_raw_string_literal] = STATE(2640), - [aux_sym_sized_type_specifier_repeat1] = STATE(4040), - [sym_identifier] = ACTIONS(4827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_RPAREN] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(4842), - [anon_sym_TILDE] = ACTIONS(4835), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4839), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4842), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4839), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(4845), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym___extension__] = ACTIONS(4827), - [anon_sym_extern] = ACTIONS(4827), - [anon_sym___attribute__] = ACTIONS(4827), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4835), - [anon_sym___declspec] = ACTIONS(4827), - [anon_sym___based] = ACTIONS(4827), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_signed] = ACTIONS(4855), - [anon_sym_unsigned] = ACTIONS(4855), - [anon_sym_long] = ACTIONS(4855), - [anon_sym_short] = ACTIONS(4855), - [anon_sym_LBRACK] = ACTIONS(4839), - [anon_sym_EQ] = ACTIONS(4861), - [anon_sym_static] = ACTIONS(4827), - [anon_sym_register] = ACTIONS(4827), - [anon_sym_inline] = ACTIONS(4827), - [anon_sym___inline] = ACTIONS(4827), - [anon_sym___inline__] = ACTIONS(4827), - [anon_sym___forceinline] = ACTIONS(4827), - [anon_sym_thread_local] = ACTIONS(4827), - [anon_sym___thread] = ACTIONS(4827), - [anon_sym_const] = ACTIONS(4827), - [anon_sym_constexpr] = ACTIONS(4827), - [anon_sym_volatile] = ACTIONS(4827), - [anon_sym_restrict] = ACTIONS(4827), - [anon_sym___restrict__] = ACTIONS(4827), - [anon_sym__Atomic] = ACTIONS(4827), - [anon_sym__Noreturn] = ACTIONS(4827), - [anon_sym_noreturn] = ACTIONS(4827), - [anon_sym_mutable] = ACTIONS(4827), - [anon_sym_constinit] = ACTIONS(4827), - [anon_sym_consteval] = ACTIONS(4827), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4865), - [anon_sym_SLASH_EQ] = ACTIONS(4865), - [anon_sym_PERCENT_EQ] = ACTIONS(4865), - [anon_sym_PLUS_EQ] = ACTIONS(4865), - [anon_sym_DASH_EQ] = ACTIONS(4865), - [anon_sym_LT_LT_EQ] = ACTIONS(4865), - [anon_sym_GT_GT_EQ] = ACTIONS(4865), - [anon_sym_AMP_EQ] = ACTIONS(4865), - [anon_sym_CARET_EQ] = ACTIONS(4865), - [anon_sym_PIPE_EQ] = ACTIONS(4865), - [anon_sym_and_eq] = ACTIONS(4861), - [anon_sym_or_eq] = ACTIONS(4861), - [anon_sym_xor_eq] = ACTIONS(4861), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4837), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4837), - [anon_sym_not_eq] = ACTIONS(4837), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4827), - [anon_sym_decltype] = ACTIONS(4827), - [anon_sym_virtual] = ACTIONS(4827), - [anon_sym_alignas] = ACTIONS(4827), - [anon_sym_template] = ACTIONS(4827), - [anon_sym_operator] = ACTIONS(4827), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - }, - [1091] = { - [sym_string_literal] = STATE(2640), - [sym_template_argument_list] = STATE(1899), - [sym_raw_string_literal] = STATE(2640), - [aux_sym_sized_type_specifier_repeat1] = STATE(4040), - [sym_identifier] = ACTIONS(4827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(4831), - [anon_sym_TILDE] = ACTIONS(4835), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4839), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4842), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4839), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(4845), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4842), - [anon_sym___extension__] = ACTIONS(4827), - [anon_sym_extern] = ACTIONS(4827), - [anon_sym___attribute__] = ACTIONS(4827), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4850), - [anon_sym___declspec] = ACTIONS(4827), - [anon_sym___based] = ACTIONS(4827), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_signed] = ACTIONS(4855), - [anon_sym_unsigned] = ACTIONS(4855), - [anon_sym_long] = ACTIONS(4855), - [anon_sym_short] = ACTIONS(4855), - [anon_sym_LBRACK] = ACTIONS(4857), - [anon_sym_EQ] = ACTIONS(4861), - [anon_sym_static] = ACTIONS(4827), - [anon_sym_register] = ACTIONS(4827), - [anon_sym_inline] = ACTIONS(4827), - [anon_sym___inline] = ACTIONS(4827), - [anon_sym___inline__] = ACTIONS(4827), - [anon_sym___forceinline] = ACTIONS(4827), - [anon_sym_thread_local] = ACTIONS(4827), - [anon_sym___thread] = ACTIONS(4827), - [anon_sym_const] = ACTIONS(4827), - [anon_sym_constexpr] = ACTIONS(4827), - [anon_sym_volatile] = ACTIONS(4827), - [anon_sym_restrict] = ACTIONS(4827), - [anon_sym___restrict__] = ACTIONS(4827), - [anon_sym__Atomic] = ACTIONS(4827), - [anon_sym__Noreturn] = ACTIONS(4827), - [anon_sym_noreturn] = ACTIONS(4827), - [anon_sym_mutable] = ACTIONS(4827), - [anon_sym_constinit] = ACTIONS(4827), - [anon_sym_consteval] = ACTIONS(4827), - [anon_sym_COLON] = ACTIONS(4888), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4865), - [anon_sym_SLASH_EQ] = ACTIONS(4865), - [anon_sym_PERCENT_EQ] = ACTIONS(4865), - [anon_sym_PLUS_EQ] = ACTIONS(4865), - [anon_sym_DASH_EQ] = ACTIONS(4865), - [anon_sym_LT_LT_EQ] = ACTIONS(4865), - [anon_sym_GT_GT_EQ] = ACTIONS(4865), - [anon_sym_AMP_EQ] = ACTIONS(4865), - [anon_sym_CARET_EQ] = ACTIONS(4865), - [anon_sym_PIPE_EQ] = ACTIONS(4865), - [anon_sym_and_eq] = ACTIONS(4861), - [anon_sym_or_eq] = ACTIONS(4861), - [anon_sym_xor_eq] = ACTIONS(4861), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4837), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4837), - [anon_sym_not_eq] = ACTIONS(4837), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4827), - [anon_sym_decltype] = ACTIONS(4827), - [anon_sym_virtual] = ACTIONS(4827), - [anon_sym_alignas] = ACTIONS(4827), - [anon_sym_template] = ACTIONS(4827), - [anon_sym_operator] = ACTIONS(4827), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), + [1127] = { + [sym_expression] = STATE(3693), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_unary_left_fold] = STATE(9935), + [sym_unary_right_fold] = STATE(9935), + [sym_binary_fold] = STATE(9935), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2131), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), }, - [1092] = { - [sym_string_literal] = STATE(2640), - [sym_template_argument_list] = STATE(1895), - [sym_raw_string_literal] = STATE(2640), - [aux_sym_sized_type_specifier_repeat1] = STATE(4040), - [sym_identifier] = ACTIONS(4827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(4842), - [anon_sym_TILDE] = ACTIONS(4835), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4839), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4842), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4839), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(4845), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym___extension__] = ACTIONS(4827), - [anon_sym_extern] = ACTIONS(4827), - [anon_sym___attribute__] = ACTIONS(4827), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4835), - [anon_sym___declspec] = ACTIONS(4827), - [anon_sym___based] = ACTIONS(4827), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_signed] = ACTIONS(4855), - [anon_sym_unsigned] = ACTIONS(4855), - [anon_sym_long] = ACTIONS(4855), - [anon_sym_short] = ACTIONS(4855), - [anon_sym_LBRACK] = ACTIONS(4839), - [anon_sym_EQ] = ACTIONS(4861), - [anon_sym_static] = ACTIONS(4827), - [anon_sym_register] = ACTIONS(4827), - [anon_sym_inline] = ACTIONS(4827), - [anon_sym___inline] = ACTIONS(4827), - [anon_sym___inline__] = ACTIONS(4827), - [anon_sym___forceinline] = ACTIONS(4827), - [anon_sym_thread_local] = ACTIONS(4827), - [anon_sym___thread] = ACTIONS(4827), - [anon_sym_const] = ACTIONS(4827), - [anon_sym_constexpr] = ACTIONS(4827), - [anon_sym_volatile] = ACTIONS(4827), - [anon_sym_restrict] = ACTIONS(4827), - [anon_sym___restrict__] = ACTIONS(4827), - [anon_sym__Atomic] = ACTIONS(4827), - [anon_sym__Noreturn] = ACTIONS(4827), - [anon_sym_noreturn] = ACTIONS(4827), - [anon_sym_mutable] = ACTIONS(4827), - [anon_sym_constinit] = ACTIONS(4827), - [anon_sym_consteval] = ACTIONS(4827), - [anon_sym_COLON] = ACTIONS(4890), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4865), - [anon_sym_SLASH_EQ] = ACTIONS(4865), - [anon_sym_PERCENT_EQ] = ACTIONS(4865), - [anon_sym_PLUS_EQ] = ACTIONS(4865), - [anon_sym_DASH_EQ] = ACTIONS(4865), - [anon_sym_LT_LT_EQ] = ACTIONS(4865), - [anon_sym_GT_GT_EQ] = ACTIONS(4865), - [anon_sym_AMP_EQ] = ACTIONS(4865), - [anon_sym_CARET_EQ] = ACTIONS(4865), - [anon_sym_PIPE_EQ] = ACTIONS(4865), - [anon_sym_and_eq] = ACTIONS(4861), - [anon_sym_or_eq] = ACTIONS(4861), - [anon_sym_xor_eq] = ACTIONS(4861), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4837), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4837), - [anon_sym_not_eq] = ACTIONS(4837), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4827), - [anon_sym_decltype] = ACTIONS(4827), - [anon_sym_virtual] = ACTIONS(4827), - [anon_sym_alignas] = ACTIONS(4827), - [anon_sym_template] = ACTIONS(4827), - [anon_sym_operator] = ACTIONS(4827), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), + [1128] = { + [sym_expression] = STATE(3480), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3584), + [sym_concatenated_string] = STATE(3584), + [sym_string_literal] = STATE(2482), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2482), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(2578), + [anon_sym_TILDE] = ACTIONS(2578), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_AMP_AMP] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_COLON_COLON] = ACTIONS(2580), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2576), + [anon_sym_compl] = ACTIONS(2576), + [anon_sym_DASH_DASH] = ACTIONS(4964), + [anon_sym_PLUS_PLUS] = ACTIONS(4964), + [anon_sym_sizeof] = ACTIONS(2582), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2584), + [anon_sym_L_SQUOTE] = ACTIONS(2586), + [anon_sym_u_SQUOTE] = ACTIONS(2586), + [anon_sym_U_SQUOTE] = ACTIONS(2586), + [anon_sym_u8_SQUOTE] = ACTIONS(2586), + [anon_sym_SQUOTE] = ACTIONS(2586), + [anon_sym_L_DQUOTE] = ACTIONS(2588), + [anon_sym_u_DQUOTE] = ACTIONS(2588), + [anon_sym_U_DQUOTE] = ACTIONS(2588), + [anon_sym_u8_DQUOTE] = ACTIONS(2588), + [anon_sym_DQUOTE] = ACTIONS(2588), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2590), + [anon_sym_R_DQUOTE] = ACTIONS(2592), + [anon_sym_LR_DQUOTE] = ACTIONS(2592), + [anon_sym_uR_DQUOTE] = ACTIONS(2592), + [anon_sym_UR_DQUOTE] = ACTIONS(2592), + [anon_sym_u8R_DQUOTE] = ACTIONS(2592), + [anon_sym_co_await] = ACTIONS(2594), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1093] = { - [sym_compound_statement] = STATE(8576), - [sym_expression] = STATE(5548), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(8576), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_RPAREN] = ACTIONS(4892), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4894), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1129] = { + [sym_expression] = STATE(4964), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_lambda_default_capture] = STATE(8695), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4966), + [anon_sym_EQ] = ACTIONS(4900), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -211046,194 +204441,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1094] = { - [sym_string_literal] = STATE(2640), - [sym_template_argument_list] = STATE(1895), - [sym_raw_string_literal] = STATE(2640), - [aux_sym_sized_type_specifier_repeat1] = STATE(4040), - [sym_identifier] = ACTIONS(4827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(4842), - [anon_sym_TILDE] = ACTIONS(4835), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4839), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4842), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4839), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(4845), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym___extension__] = ACTIONS(4827), - [anon_sym_extern] = ACTIONS(4827), - [anon_sym___attribute__] = ACTIONS(4827), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4835), - [anon_sym___declspec] = ACTIONS(4827), - [anon_sym___based] = ACTIONS(4827), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_signed] = ACTIONS(4855), - [anon_sym_unsigned] = ACTIONS(4855), - [anon_sym_long] = ACTIONS(4855), - [anon_sym_short] = ACTIONS(4855), - [anon_sym_LBRACK] = ACTIONS(4839), - [anon_sym_EQ] = ACTIONS(4861), - [anon_sym_static] = ACTIONS(4827), - [anon_sym_register] = ACTIONS(4827), - [anon_sym_inline] = ACTIONS(4827), - [anon_sym___inline] = ACTIONS(4827), - [anon_sym___inline__] = ACTIONS(4827), - [anon_sym___forceinline] = ACTIONS(4827), - [anon_sym_thread_local] = ACTIONS(4827), - [anon_sym___thread] = ACTIONS(4827), - [anon_sym_const] = ACTIONS(4827), - [anon_sym_constexpr] = ACTIONS(4827), - [anon_sym_volatile] = ACTIONS(4827), - [anon_sym_restrict] = ACTIONS(4827), - [anon_sym___restrict__] = ACTIONS(4827), - [anon_sym__Atomic] = ACTIONS(4827), - [anon_sym__Noreturn] = ACTIONS(4827), - [anon_sym_noreturn] = ACTIONS(4827), - [anon_sym_mutable] = ACTIONS(4827), - [anon_sym_constinit] = ACTIONS(4827), - [anon_sym_consteval] = ACTIONS(4827), - [anon_sym_COLON] = ACTIONS(4896), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4865), - [anon_sym_SLASH_EQ] = ACTIONS(4865), - [anon_sym_PERCENT_EQ] = ACTIONS(4865), - [anon_sym_PLUS_EQ] = ACTIONS(4865), - [anon_sym_DASH_EQ] = ACTIONS(4865), - [anon_sym_LT_LT_EQ] = ACTIONS(4865), - [anon_sym_GT_GT_EQ] = ACTIONS(4865), - [anon_sym_AMP_EQ] = ACTIONS(4865), - [anon_sym_CARET_EQ] = ACTIONS(4865), - [anon_sym_PIPE_EQ] = ACTIONS(4865), - [anon_sym_and_eq] = ACTIONS(4861), - [anon_sym_or_eq] = ACTIONS(4861), - [anon_sym_xor_eq] = ACTIONS(4861), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4837), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4837), - [anon_sym_not_eq] = ACTIONS(4837), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4827), - [anon_sym_decltype] = ACTIONS(4827), - [anon_sym_virtual] = ACTIONS(4827), - [anon_sym_alignas] = ACTIONS(4827), - [anon_sym_template] = ACTIONS(4827), - [anon_sym_operator] = ACTIONS(4827), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), + [1130] = { + [sym_expression] = STATE(3491), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3584), + [sym_concatenated_string] = STATE(3584), + [sym_string_literal] = STATE(2482), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2482), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(2578), + [anon_sym_TILDE] = ACTIONS(2578), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_AMP_AMP] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_COLON_COLON] = ACTIONS(2580), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2576), + [anon_sym_compl] = ACTIONS(2576), + [anon_sym_DASH_DASH] = ACTIONS(4964), + [anon_sym_PLUS_PLUS] = ACTIONS(4964), + [anon_sym_sizeof] = ACTIONS(2582), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2584), + [anon_sym_L_SQUOTE] = ACTIONS(2586), + [anon_sym_u_SQUOTE] = ACTIONS(2586), + [anon_sym_U_SQUOTE] = ACTIONS(2586), + [anon_sym_u8_SQUOTE] = ACTIONS(2586), + [anon_sym_SQUOTE] = ACTIONS(2586), + [anon_sym_L_DQUOTE] = ACTIONS(2588), + [anon_sym_u_DQUOTE] = ACTIONS(2588), + [anon_sym_U_DQUOTE] = ACTIONS(2588), + [anon_sym_u8_DQUOTE] = ACTIONS(2588), + [anon_sym_DQUOTE] = ACTIONS(2588), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2590), + [anon_sym_R_DQUOTE] = ACTIONS(2592), + [anon_sym_LR_DQUOTE] = ACTIONS(2592), + [anon_sym_uR_DQUOTE] = ACTIONS(2592), + [anon_sym_UR_DQUOTE] = ACTIONS(2592), + [anon_sym_u8R_DQUOTE] = ACTIONS(2592), + [anon_sym_co_await] = ACTIONS(2594), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1095] = { - [sym_compound_statement] = STATE(8742), - [sym_expression] = STATE(5567), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(8742), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_RPAREN] = ACTIONS(4898), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4900), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1131] = { + [sym_expression] = STATE(5023), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_initializer_list] = STATE(8303), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4968), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -211260,194 +204651,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1096] = { - [sym_string_literal] = STATE(2640), - [sym_template_argument_list] = STATE(1899), - [sym_raw_string_literal] = STATE(2640), - [aux_sym_sized_type_specifier_repeat1] = STATE(4040), - [sym_identifier] = ACTIONS(4827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(4831), - [anon_sym_TILDE] = ACTIONS(4835), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4839), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4842), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4839), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(4845), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4842), - [anon_sym___extension__] = ACTIONS(4827), - [anon_sym_extern] = ACTIONS(4827), - [anon_sym___attribute__] = ACTIONS(4827), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4850), - [anon_sym___declspec] = ACTIONS(4827), - [anon_sym___based] = ACTIONS(4827), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_signed] = ACTIONS(4855), - [anon_sym_unsigned] = ACTIONS(4855), - [anon_sym_long] = ACTIONS(4855), - [anon_sym_short] = ACTIONS(4855), - [anon_sym_LBRACK] = ACTIONS(4857), - [anon_sym_EQ] = ACTIONS(4861), - [anon_sym_static] = ACTIONS(4827), - [anon_sym_register] = ACTIONS(4827), - [anon_sym_inline] = ACTIONS(4827), - [anon_sym___inline] = ACTIONS(4827), - [anon_sym___inline__] = ACTIONS(4827), - [anon_sym___forceinline] = ACTIONS(4827), - [anon_sym_thread_local] = ACTIONS(4827), - [anon_sym___thread] = ACTIONS(4827), - [anon_sym_const] = ACTIONS(4827), - [anon_sym_constexpr] = ACTIONS(4827), - [anon_sym_volatile] = ACTIONS(4827), - [anon_sym_restrict] = ACTIONS(4827), - [anon_sym___restrict__] = ACTIONS(4827), - [anon_sym__Atomic] = ACTIONS(4827), - [anon_sym__Noreturn] = ACTIONS(4827), - [anon_sym_noreturn] = ACTIONS(4827), - [anon_sym_mutable] = ACTIONS(4827), - [anon_sym_constinit] = ACTIONS(4827), - [anon_sym_consteval] = ACTIONS(4827), - [anon_sym_COLON] = ACTIONS(4896), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4865), - [anon_sym_SLASH_EQ] = ACTIONS(4865), - [anon_sym_PERCENT_EQ] = ACTIONS(4865), - [anon_sym_PLUS_EQ] = ACTIONS(4865), - [anon_sym_DASH_EQ] = ACTIONS(4865), - [anon_sym_LT_LT_EQ] = ACTIONS(4865), - [anon_sym_GT_GT_EQ] = ACTIONS(4865), - [anon_sym_AMP_EQ] = ACTIONS(4865), - [anon_sym_CARET_EQ] = ACTIONS(4865), - [anon_sym_PIPE_EQ] = ACTIONS(4865), - [anon_sym_and_eq] = ACTIONS(4861), - [anon_sym_or_eq] = ACTIONS(4861), - [anon_sym_xor_eq] = ACTIONS(4861), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4837), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4837), - [anon_sym_not_eq] = ACTIONS(4837), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4827), - [anon_sym_decltype] = ACTIONS(4827), - [anon_sym_virtual] = ACTIONS(4827), - [anon_sym_alignas] = ACTIONS(4827), - [anon_sym_template] = ACTIONS(4827), - [anon_sym_operator] = ACTIONS(4827), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), + [1132] = { + [sym_expression] = STATE(3611), + [sym_expression_not_binary] = STATE(3960), + [sym_conditional_expression] = STATE(3950), + [sym_assignment_expression] = STATE(3950), + [sym_pointer_expression] = STATE(3961), + [sym_unary_expression] = STATE(3950), + [sym_binary_expression] = STATE(3960), + [sym_update_expression] = STATE(3950), + [sym_cast_expression] = STATE(3950), + [sym_sizeof_expression] = STATE(3950), + [sym_alignof_expression] = STATE(3950), + [sym_offsetof_expression] = STATE(3950), + [sym_generic_expression] = STATE(3950), + [sym_subscript_expression] = STATE(3961), + [sym_call_expression] = STATE(3961), + [sym_gnu_asm_expression] = STATE(3950), + [sym_field_expression] = STATE(3961), + [sym_compound_literal_expression] = STATE(3950), + [sym_parenthesized_expression] = STATE(3961), + [sym_char_literal] = STATE(3756), + [sym_concatenated_string] = STATE(3756), + [sym_string_literal] = STATE(2508), + [sym_null] = STATE(3950), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8975), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3950), + [sym_raw_string_literal] = STATE(2508), + [sym_co_await_expression] = STATE(3950), + [sym_new_expression] = STATE(3950), + [sym_delete_expression] = STATE(3950), + [sym_requires_clause] = STATE(3950), + [sym_requires_expression] = STATE(3950), + [sym_lambda_expression] = STATE(3950), + [sym_lambda_capture_specifier] = STATE(6902), + [sym_fold_expression] = STATE(3950), + [sym_parameter_pack_expansion] = STATE(3950), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(3961), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3961), + [sym_semgrep_ellipsis] = STATE(3960), + [sym_deep_ellipsis] = STATE(3960), + [sym_identifier] = ACTIONS(2923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4882), + [anon_sym_LPAREN2] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(2927), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_AMP_AMP] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_COLON_COLON] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [sym_primitive_type] = ACTIONS(2933), + [anon_sym_not] = ACTIONS(2925), + [anon_sym_compl] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(4888), + [anon_sym_PLUS_PLUS] = ACTIONS(4888), + [anon_sym_sizeof] = ACTIONS(2935), + [anon_sym___alignof__] = ACTIONS(2937), + [anon_sym___alignof] = ACTIONS(2937), + [anon_sym__alignof] = ACTIONS(2937), + [anon_sym_alignof] = ACTIONS(2937), + [anon_sym__Alignof] = ACTIONS(2937), + [anon_sym_offsetof] = ACTIONS(2939), + [anon_sym__Generic] = ACTIONS(2941), + [anon_sym_asm] = ACTIONS(2943), + [anon_sym___asm__] = ACTIONS(2943), + [sym_number_literal] = ACTIONS(2945), + [anon_sym_L_SQUOTE] = ACTIONS(2947), + [anon_sym_u_SQUOTE] = ACTIONS(2947), + [anon_sym_U_SQUOTE] = ACTIONS(2947), + [anon_sym_u8_SQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2947), + [anon_sym_L_DQUOTE] = ACTIONS(2949), + [anon_sym_u_DQUOTE] = ACTIONS(2949), + [anon_sym_U_DQUOTE] = ACTIONS(2949), + [anon_sym_u8_DQUOTE] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2949), + [sym_true] = ACTIONS(2951), + [sym_false] = ACTIONS(2951), + [anon_sym_NULL] = ACTIONS(2953), + [anon_sym_nullptr] = ACTIONS(2953), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2955), + [anon_sym_R_DQUOTE] = ACTIONS(2957), + [anon_sym_LR_DQUOTE] = ACTIONS(2957), + [anon_sym_uR_DQUOTE] = ACTIONS(2957), + [anon_sym_UR_DQUOTE] = ACTIONS(2957), + [anon_sym_u8R_DQUOTE] = ACTIONS(2957), + [anon_sym_co_await] = ACTIONS(2959), + [anon_sym_new] = ACTIONS(2961), + [anon_sym_requires] = ACTIONS(2963), + [sym_this] = ACTIONS(2951), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2965), + [sym_semgrep_named_ellipsis] = ACTIONS(2967), }, - [1097] = { - [sym_compound_statement] = STATE(8872), - [sym_expression] = STATE(5607), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(8872), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_RPAREN] = ACTIONS(4902), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4904), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1133] = { + [sym_expression] = STATE(5003), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_initializer_list] = STATE(8207), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4970), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -211474,408 +204861,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1098] = { - [sym_string_literal] = STATE(2640), - [sym_template_argument_list] = STATE(1895), - [sym_raw_string_literal] = STATE(2640), - [aux_sym_sized_type_specifier_repeat1] = STATE(4040), - [sym_identifier] = ACTIONS(4827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(4842), - [anon_sym_TILDE] = ACTIONS(4835), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4839), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4842), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4839), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(4845), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym___extension__] = ACTIONS(4827), - [anon_sym_extern] = ACTIONS(4827), - [anon_sym___attribute__] = ACTIONS(4827), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4835), - [anon_sym___declspec] = ACTIONS(4827), - [anon_sym___based] = ACTIONS(4827), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_signed] = ACTIONS(4855), - [anon_sym_unsigned] = ACTIONS(4855), - [anon_sym_long] = ACTIONS(4855), - [anon_sym_short] = ACTIONS(4855), - [anon_sym_LBRACK] = ACTIONS(4839), - [anon_sym_EQ] = ACTIONS(4861), - [anon_sym_static] = ACTIONS(4827), - [anon_sym_register] = ACTIONS(4827), - [anon_sym_inline] = ACTIONS(4827), - [anon_sym___inline] = ACTIONS(4827), - [anon_sym___inline__] = ACTIONS(4827), - [anon_sym___forceinline] = ACTIONS(4827), - [anon_sym_thread_local] = ACTIONS(4827), - [anon_sym___thread] = ACTIONS(4827), - [anon_sym_const] = ACTIONS(4827), - [anon_sym_constexpr] = ACTIONS(4827), - [anon_sym_volatile] = ACTIONS(4827), - [anon_sym_restrict] = ACTIONS(4827), - [anon_sym___restrict__] = ACTIONS(4827), - [anon_sym__Atomic] = ACTIONS(4827), - [anon_sym__Noreturn] = ACTIONS(4827), - [anon_sym_noreturn] = ACTIONS(4827), - [anon_sym_mutable] = ACTIONS(4827), - [anon_sym_constinit] = ACTIONS(4827), - [anon_sym_consteval] = ACTIONS(4827), - [anon_sym_COLON] = ACTIONS(4906), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4865), - [anon_sym_SLASH_EQ] = ACTIONS(4865), - [anon_sym_PERCENT_EQ] = ACTIONS(4865), - [anon_sym_PLUS_EQ] = ACTIONS(4865), - [anon_sym_DASH_EQ] = ACTIONS(4865), - [anon_sym_LT_LT_EQ] = ACTIONS(4865), - [anon_sym_GT_GT_EQ] = ACTIONS(4865), - [anon_sym_AMP_EQ] = ACTIONS(4865), - [anon_sym_CARET_EQ] = ACTIONS(4865), - [anon_sym_PIPE_EQ] = ACTIONS(4865), - [anon_sym_and_eq] = ACTIONS(4861), - [anon_sym_or_eq] = ACTIONS(4861), - [anon_sym_xor_eq] = ACTIONS(4861), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4837), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4837), - [anon_sym_not_eq] = ACTIONS(4837), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4827), - [anon_sym_decltype] = ACTIONS(4827), - [anon_sym_virtual] = ACTIONS(4827), - [anon_sym_alignas] = ACTIONS(4827), - [anon_sym_template] = ACTIONS(4827), - [anon_sym_operator] = ACTIONS(4827), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - }, - [1099] = { - [sym_string_literal] = STATE(2640), - [sym_template_argument_list] = STATE(1899), - [sym_raw_string_literal] = STATE(2640), - [aux_sym_sized_type_specifier_repeat1] = STATE(4040), - [sym_identifier] = ACTIONS(4827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(4831), - [anon_sym_TILDE] = ACTIONS(4835), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4839), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4842), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4839), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(4845), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4842), - [anon_sym___extension__] = ACTIONS(4827), - [anon_sym_extern] = ACTIONS(4827), - [anon_sym___attribute__] = ACTIONS(4827), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4850), - [anon_sym___declspec] = ACTIONS(4827), - [anon_sym___based] = ACTIONS(4827), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_signed] = ACTIONS(4855), - [anon_sym_unsigned] = ACTIONS(4855), - [anon_sym_long] = ACTIONS(4855), - [anon_sym_short] = ACTIONS(4855), - [anon_sym_LBRACK] = ACTIONS(4857), - [anon_sym_EQ] = ACTIONS(4861), - [anon_sym_static] = ACTIONS(4827), - [anon_sym_register] = ACTIONS(4827), - [anon_sym_inline] = ACTIONS(4827), - [anon_sym___inline] = ACTIONS(4827), - [anon_sym___inline__] = ACTIONS(4827), - [anon_sym___forceinline] = ACTIONS(4827), - [anon_sym_thread_local] = ACTIONS(4827), - [anon_sym___thread] = ACTIONS(4827), - [anon_sym_const] = ACTIONS(4827), - [anon_sym_constexpr] = ACTIONS(4827), - [anon_sym_volatile] = ACTIONS(4827), - [anon_sym_restrict] = ACTIONS(4827), - [anon_sym___restrict__] = ACTIONS(4827), - [anon_sym__Atomic] = ACTIONS(4827), - [anon_sym__Noreturn] = ACTIONS(4827), - [anon_sym_noreturn] = ACTIONS(4827), - [anon_sym_mutable] = ACTIONS(4827), - [anon_sym_constinit] = ACTIONS(4827), - [anon_sym_consteval] = ACTIONS(4827), - [anon_sym_COLON] = ACTIONS(4890), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4865), - [anon_sym_SLASH_EQ] = ACTIONS(4865), - [anon_sym_PERCENT_EQ] = ACTIONS(4865), - [anon_sym_PLUS_EQ] = ACTIONS(4865), - [anon_sym_DASH_EQ] = ACTIONS(4865), - [anon_sym_LT_LT_EQ] = ACTIONS(4865), - [anon_sym_GT_GT_EQ] = ACTIONS(4865), - [anon_sym_AMP_EQ] = ACTIONS(4865), - [anon_sym_CARET_EQ] = ACTIONS(4865), - [anon_sym_PIPE_EQ] = ACTIONS(4865), - [anon_sym_and_eq] = ACTIONS(4861), - [anon_sym_or_eq] = ACTIONS(4861), - [anon_sym_xor_eq] = ACTIONS(4861), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4837), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4837), - [anon_sym_not_eq] = ACTIONS(4837), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4827), - [anon_sym_decltype] = ACTIONS(4827), - [anon_sym_virtual] = ACTIONS(4827), - [anon_sym_alignas] = ACTIONS(4827), - [anon_sym_template] = ACTIONS(4827), - [anon_sym_operator] = ACTIONS(4827), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - }, - [1100] = { - [sym_string_literal] = STATE(2640), - [sym_template_argument_list] = STATE(1899), - [sym_raw_string_literal] = STATE(2640), - [aux_sym_sized_type_specifier_repeat1] = STATE(4040), - [sym_identifier] = ACTIONS(4827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(4831), - [anon_sym_TILDE] = ACTIONS(4835), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4839), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4842), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4839), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(4845), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4842), - [anon_sym___extension__] = ACTIONS(4827), - [anon_sym_extern] = ACTIONS(4827), - [anon_sym___attribute__] = ACTIONS(4827), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4850), - [anon_sym___declspec] = ACTIONS(4827), - [anon_sym___based] = ACTIONS(4827), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_signed] = ACTIONS(4855), - [anon_sym_unsigned] = ACTIONS(4855), - [anon_sym_long] = ACTIONS(4855), - [anon_sym_short] = ACTIONS(4855), - [anon_sym_LBRACK] = ACTIONS(4857), - [anon_sym_EQ] = ACTIONS(4861), - [anon_sym_static] = ACTIONS(4827), - [anon_sym_register] = ACTIONS(4827), - [anon_sym_inline] = ACTIONS(4827), - [anon_sym___inline] = ACTIONS(4827), - [anon_sym___inline__] = ACTIONS(4827), - [anon_sym___forceinline] = ACTIONS(4827), - [anon_sym_thread_local] = ACTIONS(4827), - [anon_sym___thread] = ACTIONS(4827), - [anon_sym_const] = ACTIONS(4827), - [anon_sym_constexpr] = ACTIONS(4827), - [anon_sym_volatile] = ACTIONS(4827), - [anon_sym_restrict] = ACTIONS(4827), - [anon_sym___restrict__] = ACTIONS(4827), - [anon_sym__Atomic] = ACTIONS(4827), - [anon_sym__Noreturn] = ACTIONS(4827), - [anon_sym_noreturn] = ACTIONS(4827), - [anon_sym_mutable] = ACTIONS(4827), - [anon_sym_constinit] = ACTIONS(4827), - [anon_sym_consteval] = ACTIONS(4827), - [anon_sym_COLON] = ACTIONS(4906), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4865), - [anon_sym_SLASH_EQ] = ACTIONS(4865), - [anon_sym_PERCENT_EQ] = ACTIONS(4865), - [anon_sym_PLUS_EQ] = ACTIONS(4865), - [anon_sym_DASH_EQ] = ACTIONS(4865), - [anon_sym_LT_LT_EQ] = ACTIONS(4865), - [anon_sym_GT_GT_EQ] = ACTIONS(4865), - [anon_sym_AMP_EQ] = ACTIONS(4865), - [anon_sym_CARET_EQ] = ACTIONS(4865), - [anon_sym_PIPE_EQ] = ACTIONS(4865), - [anon_sym_and_eq] = ACTIONS(4861), - [anon_sym_or_eq] = ACTIONS(4861), - [anon_sym_xor_eq] = ACTIONS(4861), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4837), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4837), - [anon_sym_not_eq] = ACTIONS(4837), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4827), - [anon_sym_decltype] = ACTIONS(4827), - [anon_sym_virtual] = ACTIONS(4827), - [anon_sym_alignas] = ACTIONS(4827), - [anon_sym_template] = ACTIONS(4827), - [anon_sym_operator] = ACTIONS(4827), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - }, - [1101] = { - [sym_compound_statement] = STATE(8901), - [sym_expression] = STATE(5650), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(8901), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_RPAREN] = ACTIONS(4908), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4910), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1134] = { + [sym_expression] = STATE(5043), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_initializer_list] = STATE(8543), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4972), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -211902,87 +204966,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1102] = { - [sym_compound_statement] = STATE(8892), - [sym_expression] = STATE(5585), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(8892), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_RPAREN] = ACTIONS(4912), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4914), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1135] = { + [sym_expression] = STATE(4964), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_lambda_default_capture] = STATE(8695), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4974), + [anon_sym_EQ] = ACTIONS(4900), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -212009,87 +205071,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1103] = { - [sym_compound_statement] = STATE(8744), - [sym_expression] = STATE(5639), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(8744), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_RPAREN] = ACTIONS(4916), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4918), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1136] = { + [sym_expression] = STATE(5542), + [sym_expression_not_binary] = STATE(5685), + [sym_conditional_expression] = STATE(5675), + [sym_assignment_expression] = STATE(5675), + [sym_pointer_expression] = STATE(4201), + [sym_unary_expression] = STATE(5675), + [sym_binary_expression] = STATE(5685), + [sym_update_expression] = STATE(5675), + [sym_cast_expression] = STATE(5675), + [sym_sizeof_expression] = STATE(5675), + [sym_alignof_expression] = STATE(5675), + [sym_offsetof_expression] = STATE(5675), + [sym_generic_expression] = STATE(5675), + [sym_subscript_expression] = STATE(4201), + [sym_call_expression] = STATE(4201), + [sym_gnu_asm_expression] = STATE(5675), + [sym_field_expression] = STATE(4201), + [sym_compound_literal_expression] = STATE(5675), + [sym_parenthesized_expression] = STATE(4201), + [sym_char_literal] = STATE(5600), + [sym_concatenated_string] = STATE(5600), + [sym_string_literal] = STATE(4359), + [sym_null] = STATE(5675), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9034), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5675), + [sym_raw_string_literal] = STATE(4359), + [sym_co_await_expression] = STATE(5675), + [sym_new_expression] = STATE(5675), + [sym_delete_expression] = STATE(5675), + [sym_requires_clause] = STATE(5675), + [sym_requires_expression] = STATE(5675), + [sym_lambda_expression] = STATE(5675), + [sym_lambda_capture_specifier] = STATE(6898), + [sym_fold_expression] = STATE(5675), + [sym_parameter_pack_expansion] = STATE(5675), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4201), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4201), + [sym_semgrep_ellipsis] = STATE(5685), + [sym_deep_ellipsis] = STATE(5685), + [sym_identifier] = ACTIONS(4242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4954), + [anon_sym_LPAREN2] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_TILDE] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_AMP_AMP] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_COLON_COLON] = ACTIONS(4248), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [sym_primitive_type] = ACTIONS(4252), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_sizeof] = ACTIONS(4254), + [anon_sym___alignof__] = ACTIONS(4256), + [anon_sym___alignof] = ACTIONS(4256), + [anon_sym__alignof] = ACTIONS(4256), + [anon_sym_alignof] = ACTIONS(4256), + [anon_sym__Alignof] = ACTIONS(4256), + [anon_sym_offsetof] = ACTIONS(4258), + [anon_sym__Generic] = ACTIONS(4260), + [anon_sym_asm] = ACTIONS(4262), + [anon_sym___asm__] = ACTIONS(4262), + [sym_number_literal] = ACTIONS(4264), + [anon_sym_L_SQUOTE] = ACTIONS(4266), + [anon_sym_u_SQUOTE] = ACTIONS(4266), + [anon_sym_U_SQUOTE] = ACTIONS(4266), + [anon_sym_u8_SQUOTE] = ACTIONS(4266), + [anon_sym_SQUOTE] = ACTIONS(4266), + [anon_sym_L_DQUOTE] = ACTIONS(4268), + [anon_sym_u_DQUOTE] = ACTIONS(4268), + [anon_sym_U_DQUOTE] = ACTIONS(4268), + [anon_sym_u8_DQUOTE] = ACTIONS(4268), + [anon_sym_DQUOTE] = ACTIONS(4268), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4272), + [anon_sym_nullptr] = ACTIONS(4272), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4274), + [anon_sym_R_DQUOTE] = ACTIONS(4276), + [anon_sym_LR_DQUOTE] = ACTIONS(4276), + [anon_sym_uR_DQUOTE] = ACTIONS(4276), + [anon_sym_UR_DQUOTE] = ACTIONS(4276), + [anon_sym_u8R_DQUOTE] = ACTIONS(4276), + [anon_sym_co_await] = ACTIONS(4278), + [anon_sym_new] = ACTIONS(4280), + [anon_sym_requires] = ACTIONS(4282), + [sym_this] = ACTIONS(4270), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4284), + [sym_semgrep_named_ellipsis] = ACTIONS(4286), + }, + [1137] = { + [sym_expression] = STATE(5165), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_lambda_default_capture] = STATE(8695), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4926), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4918), + [anon_sym_EQ] = ACTIONS(4900), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -212116,301 +205281,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1104] = { - [sym_string_literal] = STATE(2640), - [sym_template_argument_list] = STATE(1895), - [sym_raw_string_literal] = STATE(2640), - [aux_sym_sized_type_specifier_repeat1] = STATE(4040), - [sym_identifier] = ACTIONS(4827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(4842), - [anon_sym_TILDE] = ACTIONS(4835), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4839), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4842), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4839), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(4845), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym___extension__] = ACTIONS(4827), - [anon_sym_extern] = ACTIONS(4827), - [anon_sym___attribute__] = ACTIONS(4827), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4835), - [anon_sym___declspec] = ACTIONS(4827), - [anon_sym___based] = ACTIONS(4827), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_signed] = ACTIONS(4855), - [anon_sym_unsigned] = ACTIONS(4855), - [anon_sym_long] = ACTIONS(4855), - [anon_sym_short] = ACTIONS(4855), - [anon_sym_LBRACK] = ACTIONS(4839), - [anon_sym_EQ] = ACTIONS(4861), - [anon_sym_static] = ACTIONS(4827), - [anon_sym_register] = ACTIONS(4827), - [anon_sym_inline] = ACTIONS(4827), - [anon_sym___inline] = ACTIONS(4827), - [anon_sym___inline__] = ACTIONS(4827), - [anon_sym___forceinline] = ACTIONS(4827), - [anon_sym_thread_local] = ACTIONS(4827), - [anon_sym___thread] = ACTIONS(4827), - [anon_sym_const] = ACTIONS(4827), - [anon_sym_constexpr] = ACTIONS(4827), - [anon_sym_volatile] = ACTIONS(4827), - [anon_sym_restrict] = ACTIONS(4827), - [anon_sym___restrict__] = ACTIONS(4827), - [anon_sym__Atomic] = ACTIONS(4827), - [anon_sym__Noreturn] = ACTIONS(4827), - [anon_sym_noreturn] = ACTIONS(4827), - [anon_sym_mutable] = ACTIONS(4827), - [anon_sym_constinit] = ACTIONS(4827), - [anon_sym_consteval] = ACTIONS(4827), - [anon_sym_COLON] = ACTIONS(4920), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4865), - [anon_sym_SLASH_EQ] = ACTIONS(4865), - [anon_sym_PERCENT_EQ] = ACTIONS(4865), - [anon_sym_PLUS_EQ] = ACTIONS(4865), - [anon_sym_DASH_EQ] = ACTIONS(4865), - [anon_sym_LT_LT_EQ] = ACTIONS(4865), - [anon_sym_GT_GT_EQ] = ACTIONS(4865), - [anon_sym_AMP_EQ] = ACTIONS(4865), - [anon_sym_CARET_EQ] = ACTIONS(4865), - [anon_sym_PIPE_EQ] = ACTIONS(4865), - [anon_sym_and_eq] = ACTIONS(4861), - [anon_sym_or_eq] = ACTIONS(4861), - [anon_sym_xor_eq] = ACTIONS(4861), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4837), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4837), - [anon_sym_not_eq] = ACTIONS(4837), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4827), - [anon_sym_decltype] = ACTIONS(4827), - [anon_sym_virtual] = ACTIONS(4827), - [anon_sym_alignas] = ACTIONS(4827), - [anon_sym_template] = ACTIONS(4827), - [anon_sym_operator] = ACTIONS(4827), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - }, - [1105] = { - [sym_string_literal] = STATE(2640), - [sym_template_argument_list] = STATE(1895), - [sym_raw_string_literal] = STATE(2640), - [aux_sym_sized_type_specifier_repeat1] = STATE(4040), - [sym_identifier] = ACTIONS(4827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(4842), - [anon_sym_TILDE] = ACTIONS(4835), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4839), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4842), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4839), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(4845), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym___extension__] = ACTIONS(4827), - [anon_sym_extern] = ACTIONS(4827), - [anon_sym___attribute__] = ACTIONS(4827), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4835), - [anon_sym___declspec] = ACTIONS(4827), - [anon_sym___based] = ACTIONS(4827), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_signed] = ACTIONS(4855), - [anon_sym_unsigned] = ACTIONS(4855), - [anon_sym_long] = ACTIONS(4855), - [anon_sym_short] = ACTIONS(4855), - [anon_sym_LBRACK] = ACTIONS(4839), - [anon_sym_EQ] = ACTIONS(4861), - [anon_sym_static] = ACTIONS(4827), - [anon_sym_register] = ACTIONS(4827), - [anon_sym_inline] = ACTIONS(4827), - [anon_sym___inline] = ACTIONS(4827), - [anon_sym___inline__] = ACTIONS(4827), - [anon_sym___forceinline] = ACTIONS(4827), - [anon_sym_thread_local] = ACTIONS(4827), - [anon_sym___thread] = ACTIONS(4827), - [anon_sym_const] = ACTIONS(4827), - [anon_sym_constexpr] = ACTIONS(4827), - [anon_sym_volatile] = ACTIONS(4827), - [anon_sym_restrict] = ACTIONS(4827), - [anon_sym___restrict__] = ACTIONS(4827), - [anon_sym__Atomic] = ACTIONS(4827), - [anon_sym__Noreturn] = ACTIONS(4827), - [anon_sym_noreturn] = ACTIONS(4827), - [anon_sym_mutable] = ACTIONS(4827), - [anon_sym_constinit] = ACTIONS(4827), - [anon_sym_consteval] = ACTIONS(4827), - [anon_sym_COLON] = ACTIONS(4922), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4865), - [anon_sym_SLASH_EQ] = ACTIONS(4865), - [anon_sym_PERCENT_EQ] = ACTIONS(4865), - [anon_sym_PLUS_EQ] = ACTIONS(4865), - [anon_sym_DASH_EQ] = ACTIONS(4865), - [anon_sym_LT_LT_EQ] = ACTIONS(4865), - [anon_sym_GT_GT_EQ] = ACTIONS(4865), - [anon_sym_AMP_EQ] = ACTIONS(4865), - [anon_sym_CARET_EQ] = ACTIONS(4865), - [anon_sym_PIPE_EQ] = ACTIONS(4865), - [anon_sym_and_eq] = ACTIONS(4861), - [anon_sym_or_eq] = ACTIONS(4861), - [anon_sym_xor_eq] = ACTIONS(4861), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4837), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4837), - [anon_sym_not_eq] = ACTIONS(4837), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4827), - [anon_sym_decltype] = ACTIONS(4827), - [anon_sym_virtual] = ACTIONS(4827), - [anon_sym_alignas] = ACTIONS(4827), - [anon_sym_template] = ACTIONS(4827), - [anon_sym_operator] = ACTIONS(4827), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - }, - [1106] = { - [sym_compound_statement] = STATE(8783), - [sym_expression] = STATE(5624), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(8783), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_RPAREN] = ACTIONS(4924), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4926), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1138] = { + [sym_expression] = STATE(5166), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_initializer_list] = STATE(8590), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4976), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -212437,87 +205386,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1107] = { - [sym_compound_statement] = STATE(9047), - [sym_expression] = STATE(5600), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9047), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_RPAREN] = ACTIONS(4928), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4930), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1139] = { + [sym_expression] = STATE(4964), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_lambda_default_capture] = STATE(8695), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4978), + [anon_sym_EQ] = ACTIONS(4900), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -212544,87 +205491,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1108] = { - [sym_compound_statement] = STATE(8569), - [sym_expression] = STATE(5632), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(8569), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_RPAREN] = ACTIONS(4932), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4934), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1140] = { + [sym_expression] = STATE(5222), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8965), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [sym_identifier] = ACTIONS(4236), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_AMP_AMP] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [sym_primitive_type] = ACTIONS(4240), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), + }, + [1141] = { + [sym_expression] = STATE(4849), + [sym_expression_not_binary] = STATE(5098), + [sym_conditional_expression] = STATE(5096), + [sym_assignment_expression] = STATE(5096), + [sym_pointer_expression] = STATE(3493), + [sym_unary_expression] = STATE(5096), + [sym_binary_expression] = STATE(5098), + [sym_update_expression] = STATE(5096), + [sym_cast_expression] = STATE(5096), + [sym_sizeof_expression] = STATE(5096), + [sym_alignof_expression] = STATE(5096), + [sym_offsetof_expression] = STATE(5096), + [sym_generic_expression] = STATE(5096), + [sym_subscript_expression] = STATE(3493), + [sym_call_expression] = STATE(3493), + [sym_gnu_asm_expression] = STATE(5096), + [sym_field_expression] = STATE(3493), + [sym_compound_literal_expression] = STATE(5096), + [sym_parenthesized_expression] = STATE(3493), + [sym_char_literal] = STATE(4944), + [sym_concatenated_string] = STATE(4944), + [sym_string_literal] = STATE(3577), + [sym_null] = STATE(5096), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9068), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5096), + [sym_raw_string_literal] = STATE(3577), + [sym_co_await_expression] = STATE(5096), + [sym_new_expression] = STATE(5096), + [sym_delete_expression] = STATE(5096), + [sym_requires_clause] = STATE(5096), + [sym_requires_expression] = STATE(5096), + [sym_lambda_expression] = STATE(5096), + [sym_lambda_capture_specifier] = STATE(6837), + [sym_fold_expression] = STATE(5096), + [sym_parameter_pack_expansion] = STATE(5096), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3493), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3493), + [sym_semgrep_ellipsis] = STATE(5098), + [sym_deep_ellipsis] = STATE(5098), + [sym_identifier] = ACTIONS(4980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4982), + [anon_sym_LPAREN2] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(3960), + [anon_sym_TILDE] = ACTIONS(3960), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_AMP_AMP] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_COLON_COLON] = ACTIONS(3962), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [sym_primitive_type] = ACTIONS(3966), + [anon_sym_not] = ACTIONS(3958), + [anon_sym_compl] = ACTIONS(3958), + [anon_sym_DASH_DASH] = ACTIONS(4984), + [anon_sym_PLUS_PLUS] = ACTIONS(4984), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym___alignof__] = ACTIONS(3970), + [anon_sym___alignof] = ACTIONS(3970), + [anon_sym__alignof] = ACTIONS(3970), + [anon_sym_alignof] = ACTIONS(3970), + [anon_sym__Alignof] = ACTIONS(3970), + [anon_sym_offsetof] = ACTIONS(3972), + [anon_sym__Generic] = ACTIONS(3974), + [anon_sym_asm] = ACTIONS(3976), + [anon_sym___asm__] = ACTIONS(3976), + [sym_number_literal] = ACTIONS(3978), + [anon_sym_L_SQUOTE] = ACTIONS(3980), + [anon_sym_u_SQUOTE] = ACTIONS(3980), + [anon_sym_U_SQUOTE] = ACTIONS(3980), + [anon_sym_u8_SQUOTE] = ACTIONS(3980), + [anon_sym_SQUOTE] = ACTIONS(3980), + [anon_sym_L_DQUOTE] = ACTIONS(3982), + [anon_sym_u_DQUOTE] = ACTIONS(3982), + [anon_sym_U_DQUOTE] = ACTIONS(3982), + [anon_sym_u8_DQUOTE] = ACTIONS(3982), + [anon_sym_DQUOTE] = ACTIONS(3982), + [sym_true] = ACTIONS(3984), + [sym_false] = ACTIONS(3984), + [anon_sym_NULL] = ACTIONS(3986), + [anon_sym_nullptr] = ACTIONS(3986), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3988), + [anon_sym_R_DQUOTE] = ACTIONS(3990), + [anon_sym_LR_DQUOTE] = ACTIONS(3990), + [anon_sym_uR_DQUOTE] = ACTIONS(3990), + [anon_sym_UR_DQUOTE] = ACTIONS(3990), + [anon_sym_u8R_DQUOTE] = ACTIONS(3990), + [anon_sym_co_await] = ACTIONS(3992), + [anon_sym_new] = ACTIONS(3994), + [anon_sym_requires] = ACTIONS(3996), + [sym_this] = ACTIONS(3984), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3998), + [sym_semgrep_named_ellipsis] = ACTIONS(4000), + }, + [1142] = { + [sym_expression] = STATE(5266), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_AMP_AMP] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -212651,87 +205806,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1109] = { - [sym_compound_statement] = STATE(9134), - [sym_expression] = STATE(5503), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9134), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_RPAREN] = ACTIONS(4936), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4938), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1143] = { + [sym_expression] = STATE(5270), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_AMP_AMP] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -212758,193 +205911,400 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), + }, + [1144] = { + [sym_expression] = STATE(3544), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_unary_left_fold] = STATE(9205), + [sym_unary_right_fold] = STATE(9205), + [sym_binary_fold] = STATE(9205), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2131), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), + }, + [1145] = { + [sym_expression] = STATE(4878), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3922), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3922), + [sym_call_expression] = STATE(3922), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3922), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3922), + [sym_initializer_list] = STATE(7823), + [sym_char_literal] = STATE(5203), + [sym_concatenated_string] = STATE(5203), + [sym_string_literal] = STATE(3965), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3965), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3922), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3922), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_TILDE] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_default] = ACTIONS(4986), + [anon_sym_not] = ACTIONS(4200), + [anon_sym_compl] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_sizeof] = ACTIONS(4206), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(4208), + [anon_sym_L_SQUOTE] = ACTIONS(4210), + [anon_sym_u_SQUOTE] = ACTIONS(4210), + [anon_sym_U_SQUOTE] = ACTIONS(4210), + [anon_sym_u8_SQUOTE] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4210), + [anon_sym_L_DQUOTE] = ACTIONS(4212), + [anon_sym_u_DQUOTE] = ACTIONS(4212), + [anon_sym_U_DQUOTE] = ACTIONS(4212), + [anon_sym_u8_DQUOTE] = ACTIONS(4212), + [anon_sym_DQUOTE] = ACTIONS(4212), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4988), + [anon_sym_R_DQUOTE] = ACTIONS(4216), + [anon_sym_LR_DQUOTE] = ACTIONS(4216), + [anon_sym_uR_DQUOTE] = ACTIONS(4216), + [anon_sym_UR_DQUOTE] = ACTIONS(4216), + [anon_sym_u8R_DQUOTE] = ACTIONS(4216), + [anon_sym_co_await] = ACTIONS(4218), [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1110] = { - [sym_string_literal] = STATE(2640), - [sym_template_argument_list] = STATE(1895), - [sym_raw_string_literal] = STATE(2640), - [aux_sym_sized_type_specifier_repeat1] = STATE(4040), - [sym_identifier] = ACTIONS(4827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(4842), - [anon_sym_TILDE] = ACTIONS(4835), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4839), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4842), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4839), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(4845), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym___extension__] = ACTIONS(4827), - [anon_sym_extern] = ACTIONS(4827), - [anon_sym___attribute__] = ACTIONS(4827), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4835), - [anon_sym___declspec] = ACTIONS(4827), - [anon_sym___based] = ACTIONS(4827), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_signed] = ACTIONS(4855), - [anon_sym_unsigned] = ACTIONS(4855), - [anon_sym_long] = ACTIONS(4855), - [anon_sym_short] = ACTIONS(4855), - [anon_sym_LBRACK] = ACTIONS(4839), - [anon_sym_EQ] = ACTIONS(4861), - [anon_sym_static] = ACTIONS(4827), - [anon_sym_register] = ACTIONS(4827), - [anon_sym_inline] = ACTIONS(4827), - [anon_sym___inline] = ACTIONS(4827), - [anon_sym___inline__] = ACTIONS(4827), - [anon_sym___forceinline] = ACTIONS(4827), - [anon_sym_thread_local] = ACTIONS(4827), - [anon_sym___thread] = ACTIONS(4827), - [anon_sym_const] = ACTIONS(4827), - [anon_sym_constexpr] = ACTIONS(4827), - [anon_sym_volatile] = ACTIONS(4827), - [anon_sym_restrict] = ACTIONS(4827), - [anon_sym___restrict__] = ACTIONS(4827), - [anon_sym__Atomic] = ACTIONS(4827), - [anon_sym__Noreturn] = ACTIONS(4827), - [anon_sym_noreturn] = ACTIONS(4827), - [anon_sym_mutable] = ACTIONS(4827), - [anon_sym_constinit] = ACTIONS(4827), - [anon_sym_consteval] = ACTIONS(4827), - [anon_sym_COLON] = ACTIONS(4888), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4865), - [anon_sym_SLASH_EQ] = ACTIONS(4865), - [anon_sym_PERCENT_EQ] = ACTIONS(4865), - [anon_sym_PLUS_EQ] = ACTIONS(4865), - [anon_sym_DASH_EQ] = ACTIONS(4865), - [anon_sym_LT_LT_EQ] = ACTIONS(4865), - [anon_sym_GT_GT_EQ] = ACTIONS(4865), - [anon_sym_AMP_EQ] = ACTIONS(4865), - [anon_sym_CARET_EQ] = ACTIONS(4865), - [anon_sym_PIPE_EQ] = ACTIONS(4865), - [anon_sym_and_eq] = ACTIONS(4861), - [anon_sym_or_eq] = ACTIONS(4861), - [anon_sym_xor_eq] = ACTIONS(4861), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4837), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4837), - [anon_sym_not_eq] = ACTIONS(4837), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4827), - [anon_sym_decltype] = ACTIONS(4827), - [anon_sym_virtual] = ACTIONS(4827), - [anon_sym_alignas] = ACTIONS(4827), - [anon_sym_template] = ACTIONS(4827), - [anon_sym_operator] = ACTIONS(4827), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), + [1146] = { + [sym_expression] = STATE(3715), + [sym_expression_not_binary] = STATE(4146), + [sym_conditional_expression] = STATE(4141), + [sym_assignment_expression] = STATE(4141), + [sym_pointer_expression] = STATE(4149), + [sym_unary_expression] = STATE(4141), + [sym_binary_expression] = STATE(4146), + [sym_update_expression] = STATE(4141), + [sym_cast_expression] = STATE(4141), + [sym_sizeof_expression] = STATE(4141), + [sym_alignof_expression] = STATE(4141), + [sym_offsetof_expression] = STATE(4141), + [sym_generic_expression] = STATE(4141), + [sym_subscript_expression] = STATE(4149), + [sym_call_expression] = STATE(4149), + [sym_gnu_asm_expression] = STATE(4141), + [sym_field_expression] = STATE(4149), + [sym_compound_literal_expression] = STATE(4141), + [sym_parenthesized_expression] = STATE(4149), + [sym_char_literal] = STATE(4104), + [sym_concatenated_string] = STATE(4104), + [sym_string_literal] = STATE(2642), + [sym_null] = STATE(4141), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8879), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4141), + [sym_raw_string_literal] = STATE(2642), + [sym_co_await_expression] = STATE(4141), + [sym_new_expression] = STATE(4141), + [sym_delete_expression] = STATE(4141), + [sym_requires_clause] = STATE(4141), + [sym_requires_expression] = STATE(4141), + [sym_lambda_expression] = STATE(4141), + [sym_lambda_capture_specifier] = STATE(6832), + [sym_fold_expression] = STATE(4141), + [sym_parameter_pack_expansion] = STATE(4141), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4149), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4149), + [sym_semgrep_ellipsis] = STATE(4146), + [sym_deep_ellipsis] = STATE(4146), + [sym_identifier] = ACTIONS(2981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4990), + [anon_sym_LPAREN2] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_AMP_AMP] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_COLON_COLON] = ACTIONS(2987), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [sym_primitive_type] = ACTIONS(2991), + [anon_sym_not] = ACTIONS(2983), + [anon_sym_compl] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(4992), + [anon_sym_PLUS_PLUS] = ACTIONS(4992), + [anon_sym_sizeof] = ACTIONS(2993), + [anon_sym___alignof__] = ACTIONS(2995), + [anon_sym___alignof] = ACTIONS(2995), + [anon_sym__alignof] = ACTIONS(2995), + [anon_sym_alignof] = ACTIONS(2995), + [anon_sym__Alignof] = ACTIONS(2995), + [anon_sym_offsetof] = ACTIONS(2997), + [anon_sym__Generic] = ACTIONS(2999), + [anon_sym_asm] = ACTIONS(3001), + [anon_sym___asm__] = ACTIONS(3001), + [sym_number_literal] = ACTIONS(3003), + [anon_sym_L_SQUOTE] = ACTIONS(3005), + [anon_sym_u_SQUOTE] = ACTIONS(3005), + [anon_sym_U_SQUOTE] = ACTIONS(3005), + [anon_sym_u8_SQUOTE] = ACTIONS(3005), + [anon_sym_SQUOTE] = ACTIONS(3005), + [anon_sym_L_DQUOTE] = ACTIONS(3007), + [anon_sym_u_DQUOTE] = ACTIONS(3007), + [anon_sym_U_DQUOTE] = ACTIONS(3007), + [anon_sym_u8_DQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE] = ACTIONS(3007), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [anon_sym_NULL] = ACTIONS(3011), + [anon_sym_nullptr] = ACTIONS(3011), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3013), + [anon_sym_R_DQUOTE] = ACTIONS(3015), + [anon_sym_LR_DQUOTE] = ACTIONS(3015), + [anon_sym_uR_DQUOTE] = ACTIONS(3015), + [anon_sym_UR_DQUOTE] = ACTIONS(3015), + [anon_sym_u8R_DQUOTE] = ACTIONS(3015), + [anon_sym_co_await] = ACTIONS(3017), + [anon_sym_new] = ACTIONS(3019), + [anon_sym_requires] = ACTIONS(3021), + [sym_this] = ACTIONS(3009), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3023), + [sym_semgrep_named_ellipsis] = ACTIONS(3025), }, - [1111] = { - [sym_expression] = STATE(5830), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9712), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9712), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(4940), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1147] = { + [sym_expression] = STATE(4964), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_lambda_default_capture] = STATE(8695), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4994), + [anon_sym_EQ] = ACTIONS(4900), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -212971,86 +206331,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1112] = { - [sym_compound_statement] = STATE(9553), - [sym_expression] = STATE(5868), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9553), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(4942), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1148] = { + [sym_expression] = STATE(4964), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_lambda_default_capture] = STATE(8695), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(4996), + [anon_sym_EQ] = ACTIONS(4900), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -213077,86 +206436,715 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), + }, + [1149] = { + [sym_expression] = STATE(3728), + [sym_expression_not_binary] = STATE(4146), + [sym_conditional_expression] = STATE(4141), + [sym_assignment_expression] = STATE(4141), + [sym_pointer_expression] = STATE(4149), + [sym_unary_expression] = STATE(4141), + [sym_binary_expression] = STATE(4146), + [sym_update_expression] = STATE(4141), + [sym_cast_expression] = STATE(4141), + [sym_sizeof_expression] = STATE(4141), + [sym_alignof_expression] = STATE(4141), + [sym_offsetof_expression] = STATE(4141), + [sym_generic_expression] = STATE(4141), + [sym_subscript_expression] = STATE(4149), + [sym_call_expression] = STATE(4149), + [sym_gnu_asm_expression] = STATE(4141), + [sym_field_expression] = STATE(4149), + [sym_compound_literal_expression] = STATE(4141), + [sym_parenthesized_expression] = STATE(4149), + [sym_char_literal] = STATE(4104), + [sym_concatenated_string] = STATE(4104), + [sym_string_literal] = STATE(2642), + [sym_null] = STATE(4141), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8879), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4141), + [sym_raw_string_literal] = STATE(2642), + [sym_co_await_expression] = STATE(4141), + [sym_new_expression] = STATE(4141), + [sym_delete_expression] = STATE(4141), + [sym_requires_clause] = STATE(4141), + [sym_requires_expression] = STATE(4141), + [sym_lambda_expression] = STATE(4141), + [sym_lambda_capture_specifier] = STATE(6832), + [sym_fold_expression] = STATE(4141), + [sym_parameter_pack_expansion] = STATE(4141), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4149), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4149), + [sym_semgrep_ellipsis] = STATE(4146), + [sym_deep_ellipsis] = STATE(4146), + [sym_identifier] = ACTIONS(2981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4990), + [anon_sym_LPAREN2] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_AMP_AMP] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_COLON_COLON] = ACTIONS(2987), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [sym_primitive_type] = ACTIONS(2991), + [anon_sym_not] = ACTIONS(2983), + [anon_sym_compl] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(4992), + [anon_sym_PLUS_PLUS] = ACTIONS(4992), + [anon_sym_sizeof] = ACTIONS(2993), + [anon_sym___alignof__] = ACTIONS(2995), + [anon_sym___alignof] = ACTIONS(2995), + [anon_sym__alignof] = ACTIONS(2995), + [anon_sym_alignof] = ACTIONS(2995), + [anon_sym__Alignof] = ACTIONS(2995), + [anon_sym_offsetof] = ACTIONS(2997), + [anon_sym__Generic] = ACTIONS(2999), + [anon_sym_asm] = ACTIONS(3001), + [anon_sym___asm__] = ACTIONS(3001), + [sym_number_literal] = ACTIONS(3003), + [anon_sym_L_SQUOTE] = ACTIONS(3005), + [anon_sym_u_SQUOTE] = ACTIONS(3005), + [anon_sym_U_SQUOTE] = ACTIONS(3005), + [anon_sym_u8_SQUOTE] = ACTIONS(3005), + [anon_sym_SQUOTE] = ACTIONS(3005), + [anon_sym_L_DQUOTE] = ACTIONS(3007), + [anon_sym_u_DQUOTE] = ACTIONS(3007), + [anon_sym_U_DQUOTE] = ACTIONS(3007), + [anon_sym_u8_DQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE] = ACTIONS(3007), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [anon_sym_NULL] = ACTIONS(3011), + [anon_sym_nullptr] = ACTIONS(3011), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3013), + [anon_sym_R_DQUOTE] = ACTIONS(3015), + [anon_sym_LR_DQUOTE] = ACTIONS(3015), + [anon_sym_uR_DQUOTE] = ACTIONS(3015), + [anon_sym_UR_DQUOTE] = ACTIONS(3015), + [anon_sym_u8R_DQUOTE] = ACTIONS(3015), + [anon_sym_co_await] = ACTIONS(3017), + [anon_sym_new] = ACTIONS(3019), + [anon_sym_requires] = ACTIONS(3021), + [sym_this] = ACTIONS(3009), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3023), + [sym_semgrep_named_ellipsis] = ACTIONS(3025), + }, + [1150] = { + [sym_expression] = STATE(4856), + [sym_expression_not_binary] = STATE(5098), + [sym_conditional_expression] = STATE(5096), + [sym_assignment_expression] = STATE(5096), + [sym_pointer_expression] = STATE(3493), + [sym_unary_expression] = STATE(5096), + [sym_binary_expression] = STATE(5098), + [sym_update_expression] = STATE(5096), + [sym_cast_expression] = STATE(5096), + [sym_sizeof_expression] = STATE(5096), + [sym_alignof_expression] = STATE(5096), + [sym_offsetof_expression] = STATE(5096), + [sym_generic_expression] = STATE(5096), + [sym_subscript_expression] = STATE(3493), + [sym_call_expression] = STATE(3493), + [sym_gnu_asm_expression] = STATE(5096), + [sym_field_expression] = STATE(3493), + [sym_compound_literal_expression] = STATE(5096), + [sym_parenthesized_expression] = STATE(3493), + [sym_char_literal] = STATE(4944), + [sym_concatenated_string] = STATE(4944), + [sym_string_literal] = STATE(3577), + [sym_null] = STATE(5096), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9068), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5096), + [sym_raw_string_literal] = STATE(3577), + [sym_co_await_expression] = STATE(5096), + [sym_new_expression] = STATE(5096), + [sym_delete_expression] = STATE(5096), + [sym_requires_clause] = STATE(5096), + [sym_requires_expression] = STATE(5096), + [sym_lambda_expression] = STATE(5096), + [sym_lambda_capture_specifier] = STATE(6837), + [sym_fold_expression] = STATE(5096), + [sym_parameter_pack_expansion] = STATE(5096), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3493), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3493), + [sym_semgrep_ellipsis] = STATE(5098), + [sym_deep_ellipsis] = STATE(5098), + [sym_identifier] = ACTIONS(4980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4982), + [anon_sym_LPAREN2] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(3960), + [anon_sym_TILDE] = ACTIONS(3960), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_AMP_AMP] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_COLON_COLON] = ACTIONS(3962), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [sym_primitive_type] = ACTIONS(3966), + [anon_sym_not] = ACTIONS(3958), + [anon_sym_compl] = ACTIONS(3958), + [anon_sym_DASH_DASH] = ACTIONS(4984), + [anon_sym_PLUS_PLUS] = ACTIONS(4984), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym___alignof__] = ACTIONS(3970), + [anon_sym___alignof] = ACTIONS(3970), + [anon_sym__alignof] = ACTIONS(3970), + [anon_sym_alignof] = ACTIONS(3970), + [anon_sym__Alignof] = ACTIONS(3970), + [anon_sym_offsetof] = ACTIONS(3972), + [anon_sym__Generic] = ACTIONS(3974), + [anon_sym_asm] = ACTIONS(3976), + [anon_sym___asm__] = ACTIONS(3976), + [sym_number_literal] = ACTIONS(3978), + [anon_sym_L_SQUOTE] = ACTIONS(3980), + [anon_sym_u_SQUOTE] = ACTIONS(3980), + [anon_sym_U_SQUOTE] = ACTIONS(3980), + [anon_sym_u8_SQUOTE] = ACTIONS(3980), + [anon_sym_SQUOTE] = ACTIONS(3980), + [anon_sym_L_DQUOTE] = ACTIONS(3982), + [anon_sym_u_DQUOTE] = ACTIONS(3982), + [anon_sym_U_DQUOTE] = ACTIONS(3982), + [anon_sym_u8_DQUOTE] = ACTIONS(3982), + [anon_sym_DQUOTE] = ACTIONS(3982), + [sym_true] = ACTIONS(3984), + [sym_false] = ACTIONS(3984), + [anon_sym_NULL] = ACTIONS(3986), + [anon_sym_nullptr] = ACTIONS(3986), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3988), + [anon_sym_R_DQUOTE] = ACTIONS(3990), + [anon_sym_LR_DQUOTE] = ACTIONS(3990), + [anon_sym_uR_DQUOTE] = ACTIONS(3990), + [anon_sym_UR_DQUOTE] = ACTIONS(3990), + [anon_sym_u8R_DQUOTE] = ACTIONS(3990), + [anon_sym_co_await] = ACTIONS(3992), + [anon_sym_new] = ACTIONS(3994), + [anon_sym_requires] = ACTIONS(3996), + [sym_this] = ACTIONS(3984), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3998), + [sym_semgrep_named_ellipsis] = ACTIONS(4000), + }, + [1151] = { + [sym_expression] = STATE(3364), + [sym_expression_not_binary] = STATE(3766), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8737), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [sym_identifier] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3706), + [anon_sym_LPAREN2] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_AMP_AMP] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_compl] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), + }, + [1152] = { + [sym_expression] = STATE(3542), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_unary_left_fold] = STATE(9256), + [sym_unary_right_fold] = STATE(9256), + [sym_binary_fold] = STATE(9256), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2131), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), + }, + [1153] = { + [sym_expression] = STATE(4885), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3922), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3922), + [sym_call_expression] = STATE(3922), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3922), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3922), + [sym_initializer_list] = STATE(7780), + [sym_char_literal] = STATE(5203), + [sym_concatenated_string] = STATE(5203), + [sym_string_literal] = STATE(3965), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3965), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3922), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3922), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_TILDE] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_default] = ACTIONS(4998), + [anon_sym_not] = ACTIONS(4200), + [anon_sym_compl] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_sizeof] = ACTIONS(4206), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(4208), + [anon_sym_L_SQUOTE] = ACTIONS(4210), + [anon_sym_u_SQUOTE] = ACTIONS(4210), + [anon_sym_U_SQUOTE] = ACTIONS(4210), + [anon_sym_u8_SQUOTE] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4210), + [anon_sym_L_DQUOTE] = ACTIONS(4212), + [anon_sym_u_DQUOTE] = ACTIONS(4212), + [anon_sym_U_DQUOTE] = ACTIONS(4212), + [anon_sym_u8_DQUOTE] = ACTIONS(4212), + [anon_sym_DQUOTE] = ACTIONS(4212), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(5000), + [anon_sym_R_DQUOTE] = ACTIONS(4216), + [anon_sym_LR_DQUOTE] = ACTIONS(4216), + [anon_sym_uR_DQUOTE] = ACTIONS(4216), + [anon_sym_UR_DQUOTE] = ACTIONS(4216), + [anon_sym_u8R_DQUOTE] = ACTIONS(4216), + [anon_sym_co_await] = ACTIONS(4218), [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1113] = { - [sym_expression] = STATE(5793), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9800), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9800), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(4944), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1154] = { + [sym_expression] = STATE(3676), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_unary_left_fold] = STATE(9397), + [sym_unary_right_fold] = STATE(9397), + [sym_binary_fold] = STATE(9397), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2131), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), + }, + [1155] = { + [sym_expression] = STATE(4888), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3922), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3922), + [sym_call_expression] = STATE(3922), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3922), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3922), + [sym_initializer_list] = STATE(7815), + [sym_char_literal] = STATE(5203), + [sym_concatenated_string] = STATE(5203), + [sym_string_literal] = STATE(3965), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3965), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3922), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3922), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_TILDE] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_default] = ACTIONS(5002), + [anon_sym_not] = ACTIONS(4200), + [anon_sym_compl] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_sizeof] = ACTIONS(4206), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -213166,209 +207154,312 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), + [sym_number_literal] = ACTIONS(4208), + [anon_sym_L_SQUOTE] = ACTIONS(4210), + [anon_sym_u_SQUOTE] = ACTIONS(4210), + [anon_sym_U_SQUOTE] = ACTIONS(4210), + [anon_sym_u8_SQUOTE] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4210), + [anon_sym_L_DQUOTE] = ACTIONS(4212), + [anon_sym_u_DQUOTE] = ACTIONS(4212), + [anon_sym_U_DQUOTE] = ACTIONS(4212), + [anon_sym_u8_DQUOTE] = ACTIONS(4212), + [anon_sym_DQUOTE] = ACTIONS(4212), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(5004), + [anon_sym_R_DQUOTE] = ACTIONS(4216), + [anon_sym_LR_DQUOTE] = ACTIONS(4216), + [anon_sym_uR_DQUOTE] = ACTIONS(4216), + [anon_sym_UR_DQUOTE] = ACTIONS(4216), + [anon_sym_u8R_DQUOTE] = ACTIONS(4216), + [anon_sym_co_await] = ACTIONS(4218), [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1114] = { - [sym_string_literal] = STATE(2640), - [sym_template_argument_list] = STATE(1902), - [sym_raw_string_literal] = STATE(2640), - [aux_sym_sized_type_specifier_repeat1] = STATE(4040), - [sym_identifier] = ACTIONS(4827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4842), - [anon_sym_COMMA] = ACTIONS(4842), - [anon_sym_RPAREN] = ACTIONS(4842), - [anon_sym_LPAREN2] = ACTIONS(4842), - [anon_sym_TILDE] = ACTIONS(4835), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4839), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4842), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4839), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(4845), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym___extension__] = ACTIONS(4827), - [anon_sym_extern] = ACTIONS(4827), - [anon_sym___attribute__] = ACTIONS(4827), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4835), - [anon_sym___declspec] = ACTIONS(4827), - [anon_sym___based] = ACTIONS(4827), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_signed] = ACTIONS(4855), - [anon_sym_unsigned] = ACTIONS(4855), - [anon_sym_long] = ACTIONS(4855), - [anon_sym_short] = ACTIONS(4855), - [anon_sym_LBRACK] = ACTIONS(4839), - [anon_sym_EQ] = ACTIONS(4827), - [anon_sym_static] = ACTIONS(4827), - [anon_sym_register] = ACTIONS(4827), - [anon_sym_inline] = ACTIONS(4827), - [anon_sym___inline] = ACTIONS(4827), - [anon_sym___inline__] = ACTIONS(4827), - [anon_sym___forceinline] = ACTIONS(4827), - [anon_sym_thread_local] = ACTIONS(4827), - [anon_sym___thread] = ACTIONS(4827), - [anon_sym_const] = ACTIONS(4827), - [anon_sym_constexpr] = ACTIONS(4827), - [anon_sym_volatile] = ACTIONS(4827), - [anon_sym_restrict] = ACTIONS(4827), - [anon_sym___restrict__] = ACTIONS(4827), - [anon_sym__Atomic] = ACTIONS(4827), - [anon_sym__Noreturn] = ACTIONS(4827), - [anon_sym_noreturn] = ACTIONS(4827), - [anon_sym_mutable] = ACTIONS(4827), - [anon_sym_constinit] = ACTIONS(4827), - [anon_sym_consteval] = ACTIONS(4827), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4865), - [anon_sym_SLASH_EQ] = ACTIONS(4865), - [anon_sym_PERCENT_EQ] = ACTIONS(4865), - [anon_sym_PLUS_EQ] = ACTIONS(4865), - [anon_sym_DASH_EQ] = ACTIONS(4865), - [anon_sym_LT_LT_EQ] = ACTIONS(4865), - [anon_sym_GT_GT_EQ] = ACTIONS(4865), - [anon_sym_AMP_EQ] = ACTIONS(4865), - [anon_sym_CARET_EQ] = ACTIONS(4865), - [anon_sym_PIPE_EQ] = ACTIONS(4865), - [anon_sym_and_eq] = ACTIONS(4861), - [anon_sym_or_eq] = ACTIONS(4861), - [anon_sym_xor_eq] = ACTIONS(4861), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4837), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4837), - [anon_sym_not_eq] = ACTIONS(4837), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4827), - [anon_sym_decltype] = ACTIONS(4827), - [anon_sym_virtual] = ACTIONS(4827), - [anon_sym_alignas] = ACTIONS(4827), - [anon_sym_template] = ACTIONS(4827), - [anon_sym_operator] = ACTIONS(4827), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), + [1156] = { + [sym_expression] = STATE(3668), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_unary_left_fold] = STATE(9132), + [sym_unary_right_fold] = STATE(9132), + [sym_binary_fold] = STATE(9132), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2131), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), }, - [1115] = { - [sym_expression] = STATE(5753), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9849), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9849), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(4946), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1157] = { + [sym_expression] = STATE(3589), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_unary_left_fold] = STATE(9907), + [sym_unary_right_fold] = STATE(9907), + [sym_binary_fold] = STATE(9907), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2131), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), + }, + [1158] = { + [sym_expression] = STATE(4964), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_lambda_default_capture] = STATE(8695), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(5006), + [anon_sym_EQ] = ACTIONS(4900), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -213395,192 +207486,1030 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1116] = { - [sym_string_literal] = STATE(2640), - [sym_template_argument_list] = STATE(1899), - [sym_raw_string_literal] = STATE(2640), - [aux_sym_sized_type_specifier_repeat1] = STATE(4040), - [sym_identifier] = ACTIONS(4827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(4831), - [anon_sym_TILDE] = ACTIONS(4835), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4839), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4842), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4839), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(4845), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4842), - [anon_sym___extension__] = ACTIONS(4827), - [anon_sym_extern] = ACTIONS(4827), - [anon_sym___attribute__] = ACTIONS(4827), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4850), - [anon_sym___declspec] = ACTIONS(4827), - [anon_sym___based] = ACTIONS(4827), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_signed] = ACTIONS(4855), - [anon_sym_unsigned] = ACTIONS(4855), - [anon_sym_long] = ACTIONS(4855), - [anon_sym_short] = ACTIONS(4855), - [anon_sym_LBRACK] = ACTIONS(4857), - [anon_sym_EQ] = ACTIONS(4861), - [anon_sym_static] = ACTIONS(4827), - [anon_sym_register] = ACTIONS(4827), - [anon_sym_inline] = ACTIONS(4827), - [anon_sym___inline] = ACTIONS(4827), - [anon_sym___inline__] = ACTIONS(4827), - [anon_sym___forceinline] = ACTIONS(4827), - [anon_sym_thread_local] = ACTIONS(4827), - [anon_sym___thread] = ACTIONS(4827), - [anon_sym_const] = ACTIONS(4827), - [anon_sym_constexpr] = ACTIONS(4827), - [anon_sym_volatile] = ACTIONS(4827), - [anon_sym_restrict] = ACTIONS(4827), - [anon_sym___restrict__] = ACTIONS(4827), - [anon_sym__Atomic] = ACTIONS(4827), - [anon_sym__Noreturn] = ACTIONS(4827), - [anon_sym_noreturn] = ACTIONS(4827), - [anon_sym_mutable] = ACTIONS(4827), - [anon_sym_constinit] = ACTIONS(4827), - [anon_sym_consteval] = ACTIONS(4827), - [anon_sym_COLON] = ACTIONS(4920), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4865), - [anon_sym_SLASH_EQ] = ACTIONS(4865), - [anon_sym_PERCENT_EQ] = ACTIONS(4865), - [anon_sym_PLUS_EQ] = ACTIONS(4865), - [anon_sym_DASH_EQ] = ACTIONS(4865), - [anon_sym_LT_LT_EQ] = ACTIONS(4865), - [anon_sym_GT_GT_EQ] = ACTIONS(4865), - [anon_sym_AMP_EQ] = ACTIONS(4865), - [anon_sym_CARET_EQ] = ACTIONS(4865), - [anon_sym_PIPE_EQ] = ACTIONS(4865), - [anon_sym_and_eq] = ACTIONS(4861), - [anon_sym_or_eq] = ACTIONS(4861), - [anon_sym_xor_eq] = ACTIONS(4861), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4837), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4837), - [anon_sym_not_eq] = ACTIONS(4837), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4827), - [anon_sym_decltype] = ACTIONS(4827), - [anon_sym_virtual] = ACTIONS(4827), - [anon_sym_alignas] = ACTIONS(4827), - [anon_sym_template] = ACTIONS(4827), - [anon_sym_operator] = ACTIONS(4827), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), + [1159] = { + [sym_expression] = STATE(3666), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_unary_left_fold] = STATE(9633), + [sym_unary_right_fold] = STATE(9633), + [sym_binary_fold] = STATE(9633), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2131), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), }, - [1117] = { - [sym_expression] = STATE(5778), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9818), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9818), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(4948), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1160] = { + [sym_expression] = STATE(3652), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_unary_left_fold] = STATE(9313), + [sym_unary_right_fold] = STATE(9313), + [sym_binary_fold] = STATE(9313), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2131), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), + }, + [1161] = { + [sym_expression] = STATE(3621), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_unary_left_fold] = STATE(9296), + [sym_unary_right_fold] = STATE(9296), + [sym_binary_fold] = STATE(9296), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2131), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), + }, + [1162] = { + [sym_expression] = STATE(3586), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_unary_left_fold] = STATE(9598), + [sym_unary_right_fold] = STATE(9598), + [sym_binary_fold] = STATE(9598), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2131), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), + }, + [1163] = { + [sym_expression] = STATE(3545), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_unary_left_fold] = STATE(9643), + [sym_unary_right_fold] = STATE(9643), + [sym_binary_fold] = STATE(9643), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2131), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), + }, + [1164] = { + [sym_expression] = STATE(3574), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_unary_left_fold] = STATE(9507), + [sym_unary_right_fold] = STATE(9507), + [sym_binary_fold] = STATE(9507), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2131), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), + }, + [1165] = { + [sym_expression] = STATE(3607), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_unary_left_fold] = STATE(9504), + [sym_unary_right_fold] = STATE(9504), + [sym_binary_fold] = STATE(9504), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2131), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), + }, + [1166] = { + [sym_expression] = STATE(2902), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(2995), + [sym_concatenated_string] = STATE(2995), + [sym_string_literal] = STATE(2040), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2040), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(5008), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_AMP_AMP] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_COLON_COLON] = ACTIONS(2333), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_compl] = ACTIONS(2329), + [anon_sym_DASH_DASH] = ACTIONS(5010), + [anon_sym_PLUS_PLUS] = ACTIONS(5010), + [anon_sym_sizeof] = ACTIONS(2335), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2337), + [anon_sym_L_SQUOTE] = ACTIONS(2339), + [anon_sym_u_SQUOTE] = ACTIONS(2339), + [anon_sym_U_SQUOTE] = ACTIONS(2339), + [anon_sym_u8_SQUOTE] = ACTIONS(2339), + [anon_sym_SQUOTE] = ACTIONS(2339), + [anon_sym_L_DQUOTE] = ACTIONS(2341), + [anon_sym_u_DQUOTE] = ACTIONS(2341), + [anon_sym_U_DQUOTE] = ACTIONS(2341), + [anon_sym_u8_DQUOTE] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2343), + [anon_sym_R_DQUOTE] = ACTIONS(2345), + [anon_sym_LR_DQUOTE] = ACTIONS(2345), + [anon_sym_uR_DQUOTE] = ACTIONS(2345), + [anon_sym_UR_DQUOTE] = ACTIONS(2345), + [anon_sym_u8R_DQUOTE] = ACTIONS(2345), + [anon_sym_co_await] = ACTIONS(2347), + [anon_sym_new] = ACTIONS(2349), + [anon_sym_requires] = ACTIONS(2351), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1167] = { + [sym_expression] = STATE(2910), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(2995), + [sym_concatenated_string] = STATE(2995), + [sym_string_literal] = STATE(2040), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2040), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(5008), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_AMP_AMP] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_COLON_COLON] = ACTIONS(2333), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_compl] = ACTIONS(2329), + [anon_sym_DASH_DASH] = ACTIONS(5010), + [anon_sym_PLUS_PLUS] = ACTIONS(5010), + [anon_sym_sizeof] = ACTIONS(2335), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2337), + [anon_sym_L_SQUOTE] = ACTIONS(2339), + [anon_sym_u_SQUOTE] = ACTIONS(2339), + [anon_sym_U_SQUOTE] = ACTIONS(2339), + [anon_sym_u8_SQUOTE] = ACTIONS(2339), + [anon_sym_SQUOTE] = ACTIONS(2339), + [anon_sym_L_DQUOTE] = ACTIONS(2341), + [anon_sym_u_DQUOTE] = ACTIONS(2341), + [anon_sym_U_DQUOTE] = ACTIONS(2341), + [anon_sym_u8_DQUOTE] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2343), + [anon_sym_R_DQUOTE] = ACTIONS(2345), + [anon_sym_LR_DQUOTE] = ACTIONS(2345), + [anon_sym_uR_DQUOTE] = ACTIONS(2345), + [anon_sym_UR_DQUOTE] = ACTIONS(2345), + [anon_sym_u8R_DQUOTE] = ACTIONS(2345), + [anon_sym_co_await] = ACTIONS(2347), + [anon_sym_new] = ACTIONS(2349), + [anon_sym_requires] = ACTIONS(2351), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1168] = { + [sym_expression] = STATE(4964), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_lambda_default_capture] = STATE(8695), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(5012), + [anon_sym_EQ] = ACTIONS(4900), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -213607,86 +208536,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1118] = { - [sym_expression] = STATE(5820), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9748), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9748), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(4950), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1169] = { + [sym_expression] = STATE(4964), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_lambda_default_capture] = STATE(8695), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(5014), + [anon_sym_EQ] = ACTIONS(4900), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -213713,86 +208641,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1119] = { - [sym_expression] = STATE(5863), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9742), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9742), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(4952), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1170] = { + [sym_expression] = STATE(5060), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_initializer_list] = STATE(8243), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(5016), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -213819,190 +208746,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1120] = { - [sym_expression] = STATE(3934), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_unary_left_fold] = STATE(10372), - [sym_unary_right_fold] = STATE(10372), - [sym_binary_fold] = STATE(10372), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2121), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), + [1171] = { + [sym_expression] = STATE(3906), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_PLUS] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_AMP_AMP] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2969), + [anon_sym_compl] = ACTIONS(2969), + [anon_sym_DASH_DASH] = ACTIONS(5018), + [anon_sym_PLUS_PLUS] = ACTIONS(5018), + [anon_sym_sizeof] = ACTIONS(2975), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2977), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1121] = { - [sym_expression] = STATE(5580), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_lambda_default_capture] = STATE(9341), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(4954), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4956), - [anon_sym_EQ] = ACTIONS(4958), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1172] = { + [sym_expression] = STATE(3908), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_PLUS] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_AMP_AMP] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2969), + [anon_sym_compl] = ACTIONS(2969), + [anon_sym_DASH_DASH] = ACTIONS(5018), + [anon_sym_PLUS_PLUS] = ACTIONS(5018), + [anon_sym_sizeof] = ACTIONS(2975), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2977), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1173] = { + [sym_expression] = STATE(4964), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_lambda_default_capture] = STATE(8695), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(5020), + [anon_sym_EQ] = ACTIONS(4900), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -214029,190 +209061,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1122] = { - [sym_expression] = STATE(3293), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(4960), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(4960), - [anon_sym_AMP_AMP] = ACTIONS(4960), - [anon_sym_AMP] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4962), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACE] = ACTIONS(4960), - [anon_sym_LBRACK] = ACTIONS(4960), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1123] = { - [sym_expression] = STATE(5580), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_lambda_default_capture] = STATE(9341), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(4954), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4964), - [anon_sym_EQ] = ACTIONS(4958), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1174] = { + [sym_expression] = STATE(4964), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_lambda_default_capture] = STATE(8695), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(5022), + [anon_sym_EQ] = ACTIONS(4900), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -214239,85 +209166,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1124] = { - [sym_expression] = STATE(5534), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9046), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4966), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1175] = { + [sym_expression] = STATE(4964), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_lambda_default_capture] = STATE(8695), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(4900), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -214344,85 +209271,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1125] = { - [sym_expression] = STATE(5580), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_lambda_default_capture] = STATE(9341), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(4954), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4968), - [anon_sym_EQ] = ACTIONS(4958), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1176] = { + [sym_expression] = STATE(5563), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_AMP_AMP] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -214449,85 +209376,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1126] = { - [sym_expression] = STATE(5580), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_lambda_default_capture] = STATE(9341), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(4954), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4970), - [anon_sym_EQ] = ACTIONS(4958), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1177] = { + [sym_expression] = STATE(5565), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_AMP_AMP] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -214554,190 +209481,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1127] = { - [sym_expression] = STATE(4006), - [sym_expression_not_binary] = STATE(4505), - [sym_conditional_expression] = STATE(4488), - [sym_assignment_expression] = STATE(4488), - [sym_pointer_expression] = STATE(4524), - [sym_unary_expression] = STATE(4488), - [sym_binary_expression] = STATE(4505), - [sym_update_expression] = STATE(4488), - [sym_cast_expression] = STATE(4488), - [sym_sizeof_expression] = STATE(4488), - [sym_alignof_expression] = STATE(4488), - [sym_offsetof_expression] = STATE(4488), - [sym_generic_expression] = STATE(4488), - [sym_subscript_expression] = STATE(4524), - [sym_call_expression] = STATE(4524), - [sym_gnu_asm_expression] = STATE(4488), - [sym_field_expression] = STATE(4524), - [sym_compound_literal_expression] = STATE(4488), - [sym_parenthesized_expression] = STATE(4524), - [sym_char_literal] = STATE(4272), - [sym_concatenated_string] = STATE(4272), - [sym_string_literal] = STATE(2514), - [sym_null] = STATE(4488), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9512), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4488), - [sym_raw_string_literal] = STATE(2514), - [sym_co_await_expression] = STATE(4488), - [sym_new_expression] = STATE(4488), - [sym_delete_expression] = STATE(4488), - [sym_requires_clause] = STATE(4488), - [sym_requires_expression] = STATE(4488), - [sym_lambda_expression] = STATE(4488), - [sym_lambda_capture_specifier] = STATE(7259), - [sym_fold_expression] = STATE(4488), - [sym_parameter_pack_expansion] = STATE(4488), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4524), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4524), - [sym_semgrep_ellipsis] = STATE(4505), - [sym_deep_ellipsis] = STATE(4505), - [sym_identifier] = ACTIONS(2999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4972), - [anon_sym_LPAREN2] = ACTIONS(4960), - [anon_sym_BANG] = ACTIONS(3003), - [anon_sym_TILDE] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(4960), - [anon_sym_AMP_AMP] = ACTIONS(4960), - [anon_sym_AMP] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4962), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(4960), - [anon_sym_LBRACK] = ACTIONS(4960), - [sym_primitive_type] = ACTIONS(3009), - [anon_sym_not] = ACTIONS(3001), - [anon_sym_compl] = ACTIONS(3001), - [anon_sym_DASH_DASH] = ACTIONS(4974), - [anon_sym_PLUS_PLUS] = ACTIONS(4974), - [anon_sym_sizeof] = ACTIONS(3011), - [anon_sym___alignof__] = ACTIONS(3013), - [anon_sym___alignof] = ACTIONS(3013), - [anon_sym__alignof] = ACTIONS(3013), - [anon_sym_alignof] = ACTIONS(3013), - [anon_sym__Alignof] = ACTIONS(3013), - [anon_sym_offsetof] = ACTIONS(3015), - [anon_sym__Generic] = ACTIONS(3017), - [anon_sym_asm] = ACTIONS(3019), - [anon_sym___asm__] = ACTIONS(3019), - [sym_number_literal] = ACTIONS(3021), - [anon_sym_L_SQUOTE] = ACTIONS(3023), - [anon_sym_u_SQUOTE] = ACTIONS(3023), - [anon_sym_U_SQUOTE] = ACTIONS(3023), - [anon_sym_u8_SQUOTE] = ACTIONS(3023), - [anon_sym_SQUOTE] = ACTIONS(3023), - [anon_sym_L_DQUOTE] = ACTIONS(3025), - [anon_sym_u_DQUOTE] = ACTIONS(3025), - [anon_sym_U_DQUOTE] = ACTIONS(3025), - [anon_sym_u8_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [anon_sym_NULL] = ACTIONS(3029), - [anon_sym_nullptr] = ACTIONS(3029), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(3033), - [anon_sym_LR_DQUOTE] = ACTIONS(3033), - [anon_sym_uR_DQUOTE] = ACTIONS(3033), - [anon_sym_UR_DQUOTE] = ACTIONS(3033), - [anon_sym_u8R_DQUOTE] = ACTIONS(3033), - [anon_sym_co_await] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_requires] = ACTIONS(3039), - [sym_this] = ACTIONS(3027), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3041), - [sym_semgrep_named_ellipsis] = ACTIONS(3043), - }, - [1128] = { - [sym_expression] = STATE(5515), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(8762), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4976), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1178] = { + [sym_expression] = STATE(4964), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_lambda_default_capture] = STATE(8695), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(5028), + [anon_sym_EQ] = ACTIONS(4900), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -214764,85 +209586,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1129] = { - [sym_expression] = STATE(5580), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_lambda_default_capture] = STATE(9341), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(4954), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4978), - [anon_sym_EQ] = ACTIONS(4958), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1179] = { + [sym_expression] = STATE(4964), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_lambda_default_capture] = STATE(8695), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(5030), + [anon_sym_EQ] = ACTIONS(4900), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -214869,85 +209691,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1130] = { - [sym_expression] = STATE(5580), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_lambda_default_capture] = STATE(9341), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(4954), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4980), - [anon_sym_EQ] = ACTIONS(4958), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1180] = { + [sym_expression] = STATE(4964), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_lambda_default_capture] = STATE(8695), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(5032), + [anon_sym_EQ] = ACTIONS(4900), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -214974,80 +209796,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1131] = { - [sym_expression] = STATE(5552), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(8756), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1181] = { + [sym_expression] = STATE(4708), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(4376), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4982), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -215079,7 +209900,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -215093,381 +209914,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1132] = { - [sym_expression] = STATE(5155), - [sym_expression_not_binary] = STATE(5370), - [sym_conditional_expression] = STATE(5364), - [sym_assignment_expression] = STATE(5364), - [sym_pointer_expression] = STATE(3376), - [sym_unary_expression] = STATE(5364), - [sym_binary_expression] = STATE(5370), - [sym_update_expression] = STATE(5364), - [sym_cast_expression] = STATE(5364), - [sym_sizeof_expression] = STATE(5364), - [sym_alignof_expression] = STATE(5364), - [sym_offsetof_expression] = STATE(5364), - [sym_generic_expression] = STATE(5364), - [sym_subscript_expression] = STATE(3376), - [sym_call_expression] = STATE(3376), - [sym_gnu_asm_expression] = STATE(5364), - [sym_field_expression] = STATE(3376), - [sym_compound_literal_expression] = STATE(5364), - [sym_parenthesized_expression] = STATE(3376), - [sym_char_literal] = STATE(5241), - [sym_concatenated_string] = STATE(5241), - [sym_string_literal] = STATE(3576), - [sym_null] = STATE(5364), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9412), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5364), - [sym_raw_string_literal] = STATE(3576), - [sym_co_await_expression] = STATE(5364), - [sym_new_expression] = STATE(5364), - [sym_delete_expression] = STATE(5364), - [sym_requires_clause] = STATE(5364), - [sym_requires_expression] = STATE(5364), - [sym_lambda_expression] = STATE(5364), - [sym_lambda_capture_specifier] = STATE(7332), - [sym_fold_expression] = STATE(5364), - [sym_parameter_pack_expansion] = STATE(5364), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3376), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3376), - [sym_semgrep_ellipsis] = STATE(5370), - [sym_deep_ellipsis] = STATE(5370), - [sym_identifier] = ACTIONS(4984), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), - [anon_sym_LPAREN2] = ACTIONS(4960), - [anon_sym_BANG] = ACTIONS(3774), - [anon_sym_TILDE] = ACTIONS(3774), - [anon_sym_DASH] = ACTIONS(3772), - [anon_sym_PLUS] = ACTIONS(3772), - [anon_sym_STAR] = ACTIONS(4960), - [anon_sym_AMP_AMP] = ACTIONS(4960), - [anon_sym_AMP] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4962), - [anon_sym_COLON_COLON] = ACTIONS(3776), - [anon_sym_LBRACE] = ACTIONS(4960), - [anon_sym_LBRACK] = ACTIONS(4960), - [sym_primitive_type] = ACTIONS(3780), - [anon_sym_not] = ACTIONS(3772), - [anon_sym_compl] = ACTIONS(3772), - [anon_sym_DASH_DASH] = ACTIONS(4988), - [anon_sym_PLUS_PLUS] = ACTIONS(4988), - [anon_sym_sizeof] = ACTIONS(3782), - [anon_sym___alignof__] = ACTIONS(3784), - [anon_sym___alignof] = ACTIONS(3784), - [anon_sym__alignof] = ACTIONS(3784), - [anon_sym_alignof] = ACTIONS(3784), - [anon_sym__Alignof] = ACTIONS(3784), - [anon_sym_offsetof] = ACTIONS(3786), - [anon_sym__Generic] = ACTIONS(3788), - [anon_sym_asm] = ACTIONS(3790), - [anon_sym___asm__] = ACTIONS(3790), - [sym_number_literal] = ACTIONS(3792), - [anon_sym_L_SQUOTE] = ACTIONS(3794), - [anon_sym_u_SQUOTE] = ACTIONS(3794), - [anon_sym_U_SQUOTE] = ACTIONS(3794), - [anon_sym_u8_SQUOTE] = ACTIONS(3794), - [anon_sym_SQUOTE] = ACTIONS(3794), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_true] = ACTIONS(3798), - [sym_false] = ACTIONS(3798), - [anon_sym_NULL] = ACTIONS(3800), - [anon_sym_nullptr] = ACTIONS(3800), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3802), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - [anon_sym_co_await] = ACTIONS(3806), - [anon_sym_new] = ACTIONS(3808), - [anon_sym_requires] = ACTIONS(3810), - [sym_this] = ACTIONS(3798), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3812), - [sym_semgrep_named_ellipsis] = ACTIONS(3814), - }, - [1133] = { - [sym_expression] = STATE(5160), - [sym_expression_not_binary] = STATE(5370), - [sym_conditional_expression] = STATE(5364), - [sym_assignment_expression] = STATE(5364), - [sym_pointer_expression] = STATE(3376), - [sym_unary_expression] = STATE(5364), - [sym_binary_expression] = STATE(5370), - [sym_update_expression] = STATE(5364), - [sym_cast_expression] = STATE(5364), - [sym_sizeof_expression] = STATE(5364), - [sym_alignof_expression] = STATE(5364), - [sym_offsetof_expression] = STATE(5364), - [sym_generic_expression] = STATE(5364), - [sym_subscript_expression] = STATE(3376), - [sym_call_expression] = STATE(3376), - [sym_gnu_asm_expression] = STATE(5364), - [sym_field_expression] = STATE(3376), - [sym_compound_literal_expression] = STATE(5364), - [sym_parenthesized_expression] = STATE(3376), - [sym_char_literal] = STATE(5241), - [sym_concatenated_string] = STATE(5241), - [sym_string_literal] = STATE(3576), - [sym_null] = STATE(5364), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9412), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5364), - [sym_raw_string_literal] = STATE(3576), - [sym_co_await_expression] = STATE(5364), - [sym_new_expression] = STATE(5364), - [sym_delete_expression] = STATE(5364), - [sym_requires_clause] = STATE(5364), - [sym_requires_expression] = STATE(5364), - [sym_lambda_expression] = STATE(5364), - [sym_lambda_capture_specifier] = STATE(7332), - [sym_fold_expression] = STATE(5364), - [sym_parameter_pack_expansion] = STATE(5364), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3376), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3376), - [sym_semgrep_ellipsis] = STATE(5370), - [sym_deep_ellipsis] = STATE(5370), - [sym_identifier] = ACTIONS(4984), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), - [anon_sym_LPAREN2] = ACTIONS(4960), - [anon_sym_BANG] = ACTIONS(3774), - [anon_sym_TILDE] = ACTIONS(3774), - [anon_sym_DASH] = ACTIONS(3772), - [anon_sym_PLUS] = ACTIONS(3772), - [anon_sym_STAR] = ACTIONS(4960), - [anon_sym_AMP_AMP] = ACTIONS(4960), - [anon_sym_AMP] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4962), - [anon_sym_COLON_COLON] = ACTIONS(3776), - [anon_sym_LBRACE] = ACTIONS(4960), - [anon_sym_LBRACK] = ACTIONS(4960), - [sym_primitive_type] = ACTIONS(3780), - [anon_sym_not] = ACTIONS(3772), - [anon_sym_compl] = ACTIONS(3772), - [anon_sym_DASH_DASH] = ACTIONS(4988), - [anon_sym_PLUS_PLUS] = ACTIONS(4988), - [anon_sym_sizeof] = ACTIONS(3782), - [anon_sym___alignof__] = ACTIONS(3784), - [anon_sym___alignof] = ACTIONS(3784), - [anon_sym__alignof] = ACTIONS(3784), - [anon_sym_alignof] = ACTIONS(3784), - [anon_sym__Alignof] = ACTIONS(3784), - [anon_sym_offsetof] = ACTIONS(3786), - [anon_sym__Generic] = ACTIONS(3788), - [anon_sym_asm] = ACTIONS(3790), - [anon_sym___asm__] = ACTIONS(3790), - [sym_number_literal] = ACTIONS(3792), - [anon_sym_L_SQUOTE] = ACTIONS(3794), - [anon_sym_u_SQUOTE] = ACTIONS(3794), - [anon_sym_U_SQUOTE] = ACTIONS(3794), - [anon_sym_u8_SQUOTE] = ACTIONS(3794), - [anon_sym_SQUOTE] = ACTIONS(3794), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_true] = ACTIONS(3798), - [sym_false] = ACTIONS(3798), - [anon_sym_NULL] = ACTIONS(3800), - [anon_sym_nullptr] = ACTIONS(3800), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3802), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - [anon_sym_co_await] = ACTIONS(3806), - [anon_sym_new] = ACTIONS(3808), - [anon_sym_requires] = ACTIONS(3810), - [sym_this] = ACTIONS(3798), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3812), - [sym_semgrep_named_ellipsis] = ACTIONS(3814), - }, - [1134] = { - [sym_expression] = STATE(3812), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_unary_left_fold] = STATE(9657), - [sym_unary_right_fold] = STATE(9657), - [sym_binary_fold] = STATE(9657), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2121), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), - }, - [1135] = { - [sym_expression] = STATE(5580), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_lambda_default_capture] = STATE(9341), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1182] = { + [sym_expression] = STATE(5215), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9736), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(5034), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4990), - [anon_sym_EQ] = ACTIONS(4958), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -215499,7 +210004,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -215513,66 +210018,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1136] = { - [sym_expression] = STATE(5580), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_lambda_default_capture] = STATE(9341), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1183] = { + [sym_expression] = STATE(5518), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(9926), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4992), - [anon_sym_EQ] = ACTIONS(4958), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -215604,7 +210108,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -215618,66 +210122,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1137] = { - [sym_expression] = STATE(5580), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_lambda_default_capture] = STATE(9341), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1184] = { + [sym_expression] = STATE(5238), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8954), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4994), - [anon_sym_EQ] = ACTIONS(4958), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -215709,7 +210212,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -215723,66 +210226,377 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1138] = { - [sym_expression] = STATE(5580), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_lambda_default_capture] = STATE(9341), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1185] = { + [sym_expression] = STATE(5246), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_initializer_list] = STATE(5629), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8965), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [sym_identifier] = ACTIONS(4236), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(4238), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4240), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), + }, + [1186] = { + [sym_expression] = STATE(5122), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3922), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3922), + [sym_call_expression] = STATE(3922), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3922), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3922), + [sym_initializer_list] = STATE(4368), + [sym_char_literal] = STATE(5203), + [sym_concatenated_string] = STATE(5203), + [sym_string_literal] = STATE(3965), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3965), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3922), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3922), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_TILDE] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4200), + [anon_sym_compl] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_sizeof] = ACTIONS(4206), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(4208), + [anon_sym_L_SQUOTE] = ACTIONS(4210), + [anon_sym_u_SQUOTE] = ACTIONS(4210), + [anon_sym_U_SQUOTE] = ACTIONS(4210), + [anon_sym_u8_SQUOTE] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4210), + [anon_sym_L_DQUOTE] = ACTIONS(4212), + [anon_sym_u_DQUOTE] = ACTIONS(4212), + [anon_sym_U_DQUOTE] = ACTIONS(4212), + [anon_sym_u8_DQUOTE] = ACTIONS(4212), + [anon_sym_DQUOTE] = ACTIONS(4212), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4214), + [anon_sym_R_DQUOTE] = ACTIONS(4216), + [anon_sym_LR_DQUOTE] = ACTIONS(4216), + [anon_sym_uR_DQUOTE] = ACTIONS(4216), + [anon_sym_UR_DQUOTE] = ACTIONS(4216), + [anon_sym_u8R_DQUOTE] = ACTIONS(4216), + [anon_sym_co_await] = ACTIONS(4218), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), + }, + [1187] = { + [sym_expression] = STATE(5535), + [sym_expression_not_binary] = STATE(5685), + [sym_conditional_expression] = STATE(5675), + [sym_assignment_expression] = STATE(5675), + [sym_pointer_expression] = STATE(4201), + [sym_unary_expression] = STATE(5675), + [sym_binary_expression] = STATE(5685), + [sym_update_expression] = STATE(5675), + [sym_cast_expression] = STATE(5675), + [sym_sizeof_expression] = STATE(5675), + [sym_alignof_expression] = STATE(5675), + [sym_offsetof_expression] = STATE(5675), + [sym_generic_expression] = STATE(5675), + [sym_subscript_expression] = STATE(4201), + [sym_call_expression] = STATE(4201), + [sym_gnu_asm_expression] = STATE(5675), + [sym_field_expression] = STATE(4201), + [sym_compound_literal_expression] = STATE(5675), + [sym_parenthesized_expression] = STATE(4201), + [sym_initializer_list] = STATE(5711), + [sym_char_literal] = STATE(5600), + [sym_concatenated_string] = STATE(5600), + [sym_string_literal] = STATE(4359), + [sym_null] = STATE(5675), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9034), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5675), + [sym_raw_string_literal] = STATE(4359), + [sym_co_await_expression] = STATE(5675), + [sym_new_expression] = STATE(5675), + [sym_delete_expression] = STATE(5675), + [sym_requires_clause] = STATE(5675), + [sym_requires_expression] = STATE(5675), + [sym_lambda_expression] = STATE(5675), + [sym_lambda_capture_specifier] = STATE(6898), + [sym_fold_expression] = STATE(5675), + [sym_parameter_pack_expansion] = STATE(5675), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4201), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4201), + [sym_semgrep_ellipsis] = STATE(5685), + [sym_deep_ellipsis] = STATE(5685), + [sym_identifier] = ACTIONS(4242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4954), + [anon_sym_LPAREN2] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_TILDE] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(4248), + [anon_sym_LBRACE] = ACTIONS(4250), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4252), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_sizeof] = ACTIONS(4254), + [anon_sym___alignof__] = ACTIONS(4256), + [anon_sym___alignof] = ACTIONS(4256), + [anon_sym__alignof] = ACTIONS(4256), + [anon_sym_alignof] = ACTIONS(4256), + [anon_sym__Alignof] = ACTIONS(4256), + [anon_sym_offsetof] = ACTIONS(4258), + [anon_sym__Generic] = ACTIONS(4260), + [anon_sym_asm] = ACTIONS(4262), + [anon_sym___asm__] = ACTIONS(4262), + [sym_number_literal] = ACTIONS(4264), + [anon_sym_L_SQUOTE] = ACTIONS(4266), + [anon_sym_u_SQUOTE] = ACTIONS(4266), + [anon_sym_U_SQUOTE] = ACTIONS(4266), + [anon_sym_u8_SQUOTE] = ACTIONS(4266), + [anon_sym_SQUOTE] = ACTIONS(4266), + [anon_sym_L_DQUOTE] = ACTIONS(4268), + [anon_sym_u_DQUOTE] = ACTIONS(4268), + [anon_sym_U_DQUOTE] = ACTIONS(4268), + [anon_sym_u8_DQUOTE] = ACTIONS(4268), + [anon_sym_DQUOTE] = ACTIONS(4268), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4272), + [anon_sym_nullptr] = ACTIONS(4272), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4274), + [anon_sym_R_DQUOTE] = ACTIONS(4276), + [anon_sym_LR_DQUOTE] = ACTIONS(4276), + [anon_sym_uR_DQUOTE] = ACTIONS(4276), + [anon_sym_UR_DQUOTE] = ACTIONS(4276), + [anon_sym_u8R_DQUOTE] = ACTIONS(4276), + [anon_sym_co_await] = ACTIONS(4278), + [anon_sym_new] = ACTIONS(4280), + [anon_sym_requires] = ACTIONS(4282), + [sym_this] = ACTIONS(4270), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4284), + [sym_semgrep_named_ellipsis] = ACTIONS(4286), + }, + [1188] = { + [sym_expression] = STATE(5075), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8954), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4996), - [anon_sym_EQ] = ACTIONS(4958), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -215814,7 +210628,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -215828,71 +210642,590 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1139] = { - [sym_expression] = STATE(5580), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_lambda_default_capture] = STATE(9341), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(4954), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(4998), - [anon_sym_EQ] = ACTIONS(4958), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1189] = { + [sym_expression] = STATE(5141), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3922), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3922), + [sym_call_expression] = STATE(3922), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3922), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3922), + [sym_initializer_list] = STATE(8313), + [sym_char_literal] = STATE(5203), + [sym_concatenated_string] = STATE(5203), + [sym_string_literal] = STATE(3965), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3965), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3922), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3922), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_TILDE] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4200), + [anon_sym_compl] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_sizeof] = ACTIONS(4206), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(4208), + [anon_sym_L_SQUOTE] = ACTIONS(4210), + [anon_sym_u_SQUOTE] = ACTIONS(4210), + [anon_sym_U_SQUOTE] = ACTIONS(4210), + [anon_sym_u8_SQUOTE] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4210), + [anon_sym_L_DQUOTE] = ACTIONS(4212), + [anon_sym_u_DQUOTE] = ACTIONS(4212), + [anon_sym_U_DQUOTE] = ACTIONS(4212), + [anon_sym_u8_DQUOTE] = ACTIONS(4212), + [anon_sym_DQUOTE] = ACTIONS(4212), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4214), + [anon_sym_R_DQUOTE] = ACTIONS(4216), + [anon_sym_LR_DQUOTE] = ACTIONS(4216), + [anon_sym_uR_DQUOTE] = ACTIONS(4216), + [anon_sym_UR_DQUOTE] = ACTIONS(4216), + [anon_sym_u8R_DQUOTE] = ACTIONS(4216), + [anon_sym_co_await] = ACTIONS(4218), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), + }, + [1190] = { + [sym_expression] = STATE(4836), + [sym_expression_not_binary] = STATE(5098), + [sym_conditional_expression] = STATE(5096), + [sym_assignment_expression] = STATE(5096), + [sym_pointer_expression] = STATE(3493), + [sym_unary_expression] = STATE(5096), + [sym_binary_expression] = STATE(5098), + [sym_update_expression] = STATE(5096), + [sym_cast_expression] = STATE(5096), + [sym_sizeof_expression] = STATE(5096), + [sym_alignof_expression] = STATE(5096), + [sym_offsetof_expression] = STATE(5096), + [sym_generic_expression] = STATE(5096), + [sym_subscript_expression] = STATE(3493), + [sym_call_expression] = STATE(3493), + [sym_gnu_asm_expression] = STATE(5096), + [sym_field_expression] = STATE(3493), + [sym_compound_literal_expression] = STATE(5096), + [sym_parenthesized_expression] = STATE(3493), + [sym_initializer_list] = STATE(5123), + [sym_char_literal] = STATE(4944), + [sym_concatenated_string] = STATE(4944), + [sym_string_literal] = STATE(3577), + [sym_null] = STATE(5096), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9068), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5096), + [sym_raw_string_literal] = STATE(3577), + [sym_co_await_expression] = STATE(5096), + [sym_new_expression] = STATE(5096), + [sym_delete_expression] = STATE(5096), + [sym_requires_clause] = STATE(5096), + [sym_requires_expression] = STATE(5096), + [sym_lambda_expression] = STATE(5096), + [sym_lambda_capture_specifier] = STATE(6837), + [sym_fold_expression] = STATE(5096), + [sym_parameter_pack_expansion] = STATE(5096), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3493), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3493), + [sym_semgrep_ellipsis] = STATE(5098), + [sym_deep_ellipsis] = STATE(5098), + [sym_identifier] = ACTIONS(4980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4982), + [anon_sym_LPAREN2] = ACTIONS(5040), + [anon_sym_BANG] = ACTIONS(3960), + [anon_sym_TILDE] = ACTIONS(3960), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(3962), + [anon_sym_LBRACE] = ACTIONS(3964), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3966), + [anon_sym_not] = ACTIONS(3958), + [anon_sym_compl] = ACTIONS(3958), + [anon_sym_DASH_DASH] = ACTIONS(4984), + [anon_sym_PLUS_PLUS] = ACTIONS(4984), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym___alignof__] = ACTIONS(3970), + [anon_sym___alignof] = ACTIONS(3970), + [anon_sym__alignof] = ACTIONS(3970), + [anon_sym_alignof] = ACTIONS(3970), + [anon_sym__Alignof] = ACTIONS(3970), + [anon_sym_offsetof] = ACTIONS(3972), + [anon_sym__Generic] = ACTIONS(3974), + [anon_sym_asm] = ACTIONS(3976), + [anon_sym___asm__] = ACTIONS(3976), + [sym_number_literal] = ACTIONS(3978), + [anon_sym_L_SQUOTE] = ACTIONS(3980), + [anon_sym_u_SQUOTE] = ACTIONS(3980), + [anon_sym_U_SQUOTE] = ACTIONS(3980), + [anon_sym_u8_SQUOTE] = ACTIONS(3980), + [anon_sym_SQUOTE] = ACTIONS(3980), + [anon_sym_L_DQUOTE] = ACTIONS(3982), + [anon_sym_u_DQUOTE] = ACTIONS(3982), + [anon_sym_U_DQUOTE] = ACTIONS(3982), + [anon_sym_u8_DQUOTE] = ACTIONS(3982), + [anon_sym_DQUOTE] = ACTIONS(3982), + [sym_true] = ACTIONS(3984), + [sym_false] = ACTIONS(3984), + [anon_sym_NULL] = ACTIONS(3986), + [anon_sym_nullptr] = ACTIONS(3986), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3988), + [anon_sym_R_DQUOTE] = ACTIONS(3990), + [anon_sym_LR_DQUOTE] = ACTIONS(3990), + [anon_sym_uR_DQUOTE] = ACTIONS(3990), + [anon_sym_UR_DQUOTE] = ACTIONS(3990), + [anon_sym_u8R_DQUOTE] = ACTIONS(3990), + [anon_sym_co_await] = ACTIONS(3992), + [anon_sym_new] = ACTIONS(3994), + [anon_sym_requires] = ACTIONS(3996), + [sym_this] = ACTIONS(3984), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3998), + [sym_semgrep_named_ellipsis] = ACTIONS(4000), + }, + [1191] = { + [sym_expression] = STATE(4901), + [sym_expression_not_binary] = STATE(5098), + [sym_conditional_expression] = STATE(5096), + [sym_assignment_expression] = STATE(5096), + [sym_pointer_expression] = STATE(3493), + [sym_unary_expression] = STATE(5096), + [sym_binary_expression] = STATE(5098), + [sym_update_expression] = STATE(5096), + [sym_cast_expression] = STATE(5096), + [sym_sizeof_expression] = STATE(5096), + [sym_alignof_expression] = STATE(5096), + [sym_offsetof_expression] = STATE(5096), + [sym_generic_expression] = STATE(5096), + [sym_subscript_expression] = STATE(3493), + [sym_call_expression] = STATE(3493), + [sym_gnu_asm_expression] = STATE(5096), + [sym_field_expression] = STATE(3493), + [sym_compound_literal_expression] = STATE(5096), + [sym_parenthesized_expression] = STATE(3493), + [sym_initializer_list] = STATE(5138), + [sym_char_literal] = STATE(4944), + [sym_concatenated_string] = STATE(4944), + [sym_string_literal] = STATE(3577), + [sym_null] = STATE(5096), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9068), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5096), + [sym_raw_string_literal] = STATE(3577), + [sym_co_await_expression] = STATE(5096), + [sym_new_expression] = STATE(5096), + [sym_delete_expression] = STATE(5096), + [sym_requires_clause] = STATE(5096), + [sym_requires_expression] = STATE(5096), + [sym_lambda_expression] = STATE(5096), + [sym_lambda_capture_specifier] = STATE(6837), + [sym_fold_expression] = STATE(5096), + [sym_parameter_pack_expansion] = STATE(5096), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3493), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3493), + [sym_semgrep_ellipsis] = STATE(5098), + [sym_deep_ellipsis] = STATE(5098), + [sym_identifier] = ACTIONS(4980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4982), + [anon_sym_LPAREN2] = ACTIONS(5040), + [anon_sym_BANG] = ACTIONS(3960), + [anon_sym_TILDE] = ACTIONS(3960), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(3962), + [anon_sym_LBRACE] = ACTIONS(3964), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3966), + [anon_sym_not] = ACTIONS(3958), + [anon_sym_compl] = ACTIONS(3958), + [anon_sym_DASH_DASH] = ACTIONS(4984), + [anon_sym_PLUS_PLUS] = ACTIONS(4984), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym___alignof__] = ACTIONS(3970), + [anon_sym___alignof] = ACTIONS(3970), + [anon_sym__alignof] = ACTIONS(3970), + [anon_sym_alignof] = ACTIONS(3970), + [anon_sym__Alignof] = ACTIONS(3970), + [anon_sym_offsetof] = ACTIONS(3972), + [anon_sym__Generic] = ACTIONS(3974), + [anon_sym_asm] = ACTIONS(3976), + [anon_sym___asm__] = ACTIONS(3976), + [sym_number_literal] = ACTIONS(3978), + [anon_sym_L_SQUOTE] = ACTIONS(3980), + [anon_sym_u_SQUOTE] = ACTIONS(3980), + [anon_sym_U_SQUOTE] = ACTIONS(3980), + [anon_sym_u8_SQUOTE] = ACTIONS(3980), + [anon_sym_SQUOTE] = ACTIONS(3980), + [anon_sym_L_DQUOTE] = ACTIONS(3982), + [anon_sym_u_DQUOTE] = ACTIONS(3982), + [anon_sym_U_DQUOTE] = ACTIONS(3982), + [anon_sym_u8_DQUOTE] = ACTIONS(3982), + [anon_sym_DQUOTE] = ACTIONS(3982), + [sym_true] = ACTIONS(3984), + [sym_false] = ACTIONS(3984), + [anon_sym_NULL] = ACTIONS(3986), + [anon_sym_nullptr] = ACTIONS(3986), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3988), + [anon_sym_R_DQUOTE] = ACTIONS(3990), + [anon_sym_LR_DQUOTE] = ACTIONS(3990), + [anon_sym_uR_DQUOTE] = ACTIONS(3990), + [anon_sym_UR_DQUOTE] = ACTIONS(3990), + [anon_sym_u8R_DQUOTE] = ACTIONS(3990), + [anon_sym_co_await] = ACTIONS(3992), + [anon_sym_new] = ACTIONS(3994), + [anon_sym_requires] = ACTIONS(3996), + [sym_this] = ACTIONS(3984), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3998), + [sym_semgrep_named_ellipsis] = ACTIONS(4000), + }, + [1192] = { + [sym_expression] = STATE(3911), + [sym_expression_not_binary] = STATE(4146), + [sym_conditional_expression] = STATE(4141), + [sym_assignment_expression] = STATE(4141), + [sym_pointer_expression] = STATE(4149), + [sym_unary_expression] = STATE(4141), + [sym_binary_expression] = STATE(4146), + [sym_update_expression] = STATE(4141), + [sym_cast_expression] = STATE(4141), + [sym_sizeof_expression] = STATE(4141), + [sym_alignof_expression] = STATE(4141), + [sym_offsetof_expression] = STATE(4141), + [sym_generic_expression] = STATE(4141), + [sym_subscript_expression] = STATE(4149), + [sym_call_expression] = STATE(4149), + [sym_gnu_asm_expression] = STATE(4141), + [sym_field_expression] = STATE(4149), + [sym_compound_literal_expression] = STATE(4141), + [sym_parenthesized_expression] = STATE(4149), + [sym_initializer_list] = STATE(4229), + [sym_char_literal] = STATE(4104), + [sym_concatenated_string] = STATE(4104), + [sym_string_literal] = STATE(2642), + [sym_null] = STATE(4141), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8879), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4141), + [sym_raw_string_literal] = STATE(2642), + [sym_co_await_expression] = STATE(4141), + [sym_new_expression] = STATE(4141), + [sym_delete_expression] = STATE(4141), + [sym_requires_clause] = STATE(4141), + [sym_requires_expression] = STATE(4141), + [sym_lambda_expression] = STATE(4141), + [sym_lambda_capture_specifier] = STATE(6832), + [sym_fold_expression] = STATE(4141), + [sym_parameter_pack_expansion] = STATE(4141), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4149), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4149), + [sym_semgrep_ellipsis] = STATE(4146), + [sym_deep_ellipsis] = STATE(4146), + [sym_identifier] = ACTIONS(2981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4990), + [anon_sym_LPAREN2] = ACTIONS(5044), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(2987), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2991), + [anon_sym_not] = ACTIONS(2983), + [anon_sym_compl] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(4992), + [anon_sym_PLUS_PLUS] = ACTIONS(4992), + [anon_sym_sizeof] = ACTIONS(2993), + [anon_sym___alignof__] = ACTIONS(2995), + [anon_sym___alignof] = ACTIONS(2995), + [anon_sym__alignof] = ACTIONS(2995), + [anon_sym_alignof] = ACTIONS(2995), + [anon_sym__Alignof] = ACTIONS(2995), + [anon_sym_offsetof] = ACTIONS(2997), + [anon_sym__Generic] = ACTIONS(2999), + [anon_sym_asm] = ACTIONS(3001), + [anon_sym___asm__] = ACTIONS(3001), + [sym_number_literal] = ACTIONS(3003), + [anon_sym_L_SQUOTE] = ACTIONS(3005), + [anon_sym_u_SQUOTE] = ACTIONS(3005), + [anon_sym_U_SQUOTE] = ACTIONS(3005), + [anon_sym_u8_SQUOTE] = ACTIONS(3005), + [anon_sym_SQUOTE] = ACTIONS(3005), + [anon_sym_L_DQUOTE] = ACTIONS(3007), + [anon_sym_u_DQUOTE] = ACTIONS(3007), + [anon_sym_U_DQUOTE] = ACTIONS(3007), + [anon_sym_u8_DQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE] = ACTIONS(3007), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [anon_sym_NULL] = ACTIONS(3011), + [anon_sym_nullptr] = ACTIONS(3011), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3013), + [anon_sym_R_DQUOTE] = ACTIONS(3015), + [anon_sym_LR_DQUOTE] = ACTIONS(3015), + [anon_sym_uR_DQUOTE] = ACTIONS(3015), + [anon_sym_UR_DQUOTE] = ACTIONS(3015), + [anon_sym_u8R_DQUOTE] = ACTIONS(3015), + [anon_sym_co_await] = ACTIONS(3017), + [anon_sym_new] = ACTIONS(3019), + [anon_sym_requires] = ACTIONS(3021), + [sym_this] = ACTIONS(3009), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3023), + [sym_semgrep_named_ellipsis] = ACTIONS(3025), + }, + [1193] = { + [sym_expression] = STATE(4106), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_initializer_list] = STATE(4256), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), + }, + [1194] = { + [sym_expression] = STATE(5243), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_initializer_list] = STATE(4368), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -215919,190 +211252,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1140] = { - [sym_expression] = STATE(3775), - [sym_expression_not_binary] = STATE(4050), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9276), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [sym_identifier] = ACTIONS(2854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(4960), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(4960), - [anon_sym_AMP_AMP] = ACTIONS(4960), - [anon_sym_AMP] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4962), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(4960), - [anon_sym_LBRACK] = ACTIONS(4960), - [sym_primitive_type] = ACTIONS(2858), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), - }, - [1141] = { - [sym_expression] = STATE(5589), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(8928), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5000), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1195] = { + [sym_expression] = STATE(4708), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_initializer_list] = STATE(4376), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -216129,80 +211356,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1142] = { - [sym_expression] = STATE(5580), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_lambda_default_capture] = STATE(9341), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1196] = { + [sym_expression] = STATE(5363), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(9566), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5002), - [anon_sym_EQ] = ACTIONS(4958), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -216234,7 +211460,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -216248,276 +211474,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1143] = { - [sym_expression] = STATE(5759), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9595), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [sym_identifier] = ACTIONS(4059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(4960), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(4960), - [anon_sym_AMP_AMP] = ACTIONS(4960), - [anon_sym_AMP] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4962), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_LBRACE] = ACTIONS(4960), - [anon_sym_LBRACK] = ACTIONS(4960), - [sym_primitive_type] = ACTIONS(4063), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), + [1197] = { + [sym_expression] = STATE(3956), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_initializer_list] = STATE(4366), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), }, - [1144] = { - [sym_expression] = STATE(3776), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3806), - [sym_concatenated_string] = STATE(3806), - [sym_string_literal] = STATE(2240), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(2240), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2652), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(4960), - [anon_sym_BANG] = ACTIONS(2656), - [anon_sym_TILDE] = ACTIONS(2656), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_PLUS] = ACTIONS(2654), - [anon_sym_STAR] = ACTIONS(4960), - [anon_sym_AMP_AMP] = ACTIONS(4960), - [anon_sym_AMP] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4962), - [anon_sym_COLON_COLON] = ACTIONS(2658), - [anon_sym_LBRACE] = ACTIONS(4960), - [anon_sym_LBRACK] = ACTIONS(4960), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2654), - [anon_sym_compl] = ACTIONS(2654), - [anon_sym_DASH_DASH] = ACTIONS(5004), - [anon_sym_PLUS_PLUS] = ACTIONS(5004), - [anon_sym_sizeof] = ACTIONS(2660), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2662), - [anon_sym_L_SQUOTE] = ACTIONS(2664), - [anon_sym_u_SQUOTE] = ACTIONS(2664), - [anon_sym_U_SQUOTE] = ACTIONS(2664), - [anon_sym_u8_SQUOTE] = ACTIONS(2664), - [anon_sym_SQUOTE] = ACTIONS(2664), - [anon_sym_L_DQUOTE] = ACTIONS(2666), - [anon_sym_u_DQUOTE] = ACTIONS(2666), - [anon_sym_U_DQUOTE] = ACTIONS(2666), - [anon_sym_u8_DQUOTE] = ACTIONS(2666), - [anon_sym_DQUOTE] = ACTIONS(2666), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2668), - [anon_sym_R_DQUOTE] = ACTIONS(2670), - [anon_sym_LR_DQUOTE] = ACTIONS(2670), - [anon_sym_uR_DQUOTE] = ACTIONS(2670), - [anon_sym_UR_DQUOTE] = ACTIONS(2670), - [anon_sym_u8R_DQUOTE] = ACTIONS(2670), - [anon_sym_co_await] = ACTIONS(2672), - [anon_sym_new] = ACTIONS(2674), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1145] = { - [sym_expression] = STATE(5580), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_lambda_default_capture] = STATE(9341), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1198] = { + [sym_expression] = STATE(5195), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9204), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(5046), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5006), - [anon_sym_EQ] = ACTIONS(4958), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -216549,7 +211668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -216563,66 +211682,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1146] = { - [sym_expression] = STATE(5580), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_lambda_default_capture] = STATE(9341), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1199] = { + [sym_expression] = STATE(5210), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_initializer_list] = STATE(5612), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8965), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [sym_identifier] = ACTIONS(4236), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(4238), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4240), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), + }, + [1200] = { + [sym_expression] = STATE(5361), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9562), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(5048), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5008), - [anon_sym_EQ] = ACTIONS(4958), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -216654,7 +211876,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -216668,66 +211890,377 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1147] = { - [sym_expression] = STATE(5309), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(4960), + [1201] = { + [sym_expression] = STATE(3406), + [sym_expression_not_binary] = STATE(3766), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_initializer_list] = STATE(3719), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8737), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [sym_identifier] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3706), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_compl] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), + }, + [1202] = { + [sym_expression] = STATE(5513), + [sym_expression_not_binary] = STATE(5685), + [sym_conditional_expression] = STATE(5675), + [sym_assignment_expression] = STATE(5675), + [sym_pointer_expression] = STATE(4201), + [sym_unary_expression] = STATE(5675), + [sym_binary_expression] = STATE(5685), + [sym_update_expression] = STATE(5675), + [sym_cast_expression] = STATE(5675), + [sym_sizeof_expression] = STATE(5675), + [sym_alignof_expression] = STATE(5675), + [sym_offsetof_expression] = STATE(5675), + [sym_generic_expression] = STATE(5675), + [sym_subscript_expression] = STATE(4201), + [sym_call_expression] = STATE(4201), + [sym_gnu_asm_expression] = STATE(5675), + [sym_field_expression] = STATE(4201), + [sym_compound_literal_expression] = STATE(5675), + [sym_parenthesized_expression] = STATE(4201), + [sym_initializer_list] = STATE(5669), + [sym_char_literal] = STATE(5600), + [sym_concatenated_string] = STATE(5600), + [sym_string_literal] = STATE(4359), + [sym_null] = STATE(5675), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9034), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5675), + [sym_raw_string_literal] = STATE(4359), + [sym_co_await_expression] = STATE(5675), + [sym_new_expression] = STATE(5675), + [sym_delete_expression] = STATE(5675), + [sym_requires_clause] = STATE(5675), + [sym_requires_expression] = STATE(5675), + [sym_lambda_expression] = STATE(5675), + [sym_lambda_capture_specifier] = STATE(6898), + [sym_fold_expression] = STATE(5675), + [sym_parameter_pack_expansion] = STATE(5675), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4201), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4201), + [sym_semgrep_ellipsis] = STATE(5685), + [sym_deep_ellipsis] = STATE(5685), + [sym_identifier] = ACTIONS(4242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4954), + [anon_sym_LPAREN2] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_TILDE] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(4248), + [anon_sym_LBRACE] = ACTIONS(4250), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4252), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_sizeof] = ACTIONS(4254), + [anon_sym___alignof__] = ACTIONS(4256), + [anon_sym___alignof] = ACTIONS(4256), + [anon_sym__alignof] = ACTIONS(4256), + [anon_sym_alignof] = ACTIONS(4256), + [anon_sym__Alignof] = ACTIONS(4256), + [anon_sym_offsetof] = ACTIONS(4258), + [anon_sym__Generic] = ACTIONS(4260), + [anon_sym_asm] = ACTIONS(4262), + [anon_sym___asm__] = ACTIONS(4262), + [sym_number_literal] = ACTIONS(4264), + [anon_sym_L_SQUOTE] = ACTIONS(4266), + [anon_sym_u_SQUOTE] = ACTIONS(4266), + [anon_sym_U_SQUOTE] = ACTIONS(4266), + [anon_sym_u8_SQUOTE] = ACTIONS(4266), + [anon_sym_SQUOTE] = ACTIONS(4266), + [anon_sym_L_DQUOTE] = ACTIONS(4268), + [anon_sym_u_DQUOTE] = ACTIONS(4268), + [anon_sym_U_DQUOTE] = ACTIONS(4268), + [anon_sym_u8_DQUOTE] = ACTIONS(4268), + [anon_sym_DQUOTE] = ACTIONS(4268), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4272), + [anon_sym_nullptr] = ACTIONS(4272), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4274), + [anon_sym_R_DQUOTE] = ACTIONS(4276), + [anon_sym_LR_DQUOTE] = ACTIONS(4276), + [anon_sym_uR_DQUOTE] = ACTIONS(4276), + [anon_sym_UR_DQUOTE] = ACTIONS(4276), + [anon_sym_u8R_DQUOTE] = ACTIONS(4276), + [anon_sym_co_await] = ACTIONS(4278), + [anon_sym_new] = ACTIONS(4280), + [anon_sym_requires] = ACTIONS(4282), + [sym_this] = ACTIONS(4270), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4284), + [sym_semgrep_named_ellipsis] = ACTIONS(4286), + }, + [1203] = { + [sym_expression] = STATE(3143), + [sym_expression_not_binary] = STATE(3486), + [sym_conditional_expression] = STATE(3447), + [sym_assignment_expression] = STATE(3447), + [sym_pointer_expression] = STATE(3487), + [sym_unary_expression] = STATE(3447), + [sym_binary_expression] = STATE(3486), + [sym_update_expression] = STATE(3447), + [sym_cast_expression] = STATE(3447), + [sym_sizeof_expression] = STATE(3447), + [sym_alignof_expression] = STATE(3447), + [sym_offsetof_expression] = STATE(3447), + [sym_generic_expression] = STATE(3447), + [sym_subscript_expression] = STATE(3487), + [sym_call_expression] = STATE(3487), + [sym_gnu_asm_expression] = STATE(3447), + [sym_field_expression] = STATE(3487), + [sym_compound_literal_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3487), + [sym_initializer_list] = STATE(3407), + [sym_char_literal] = STATE(3228), + [sym_concatenated_string] = STATE(3228), + [sym_string_literal] = STATE(2167), + [sym_null] = STATE(3447), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8847), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3447), + [sym_raw_string_literal] = STATE(2167), + [sym_co_await_expression] = STATE(3447), + [sym_new_expression] = STATE(3447), + [sym_delete_expression] = STATE(3447), + [sym_requires_clause] = STATE(3447), + [sym_requires_expression] = STATE(3447), + [sym_lambda_expression] = STATE(3447), + [sym_lambda_capture_specifier] = STATE(6853), + [sym_fold_expression] = STATE(3447), + [sym_parameter_pack_expansion] = STATE(3447), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3487), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3487), + [sym_semgrep_ellipsis] = STATE(3486), + [sym_deep_ellipsis] = STATE(3486), + [sym_identifier] = ACTIONS(4890), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4892), + [anon_sym_LPAREN2] = ACTIONS(5050), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_TILDE] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2365), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(2369), + [anon_sym_LBRACE] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2373), + [anon_sym_not] = ACTIONS(2365), + [anon_sym_compl] = ACTIONS(2365), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_sizeof] = ACTIONS(2375), + [anon_sym___alignof__] = ACTIONS(2377), + [anon_sym___alignof] = ACTIONS(2377), + [anon_sym__alignof] = ACTIONS(2377), + [anon_sym_alignof] = ACTIONS(2377), + [anon_sym__Alignof] = ACTIONS(2377), + [anon_sym_offsetof] = ACTIONS(2379), + [anon_sym__Generic] = ACTIONS(2381), + [anon_sym_asm] = ACTIONS(2383), + [anon_sym___asm__] = ACTIONS(2383), + [sym_number_literal] = ACTIONS(2385), + [anon_sym_L_SQUOTE] = ACTIONS(2387), + [anon_sym_u_SQUOTE] = ACTIONS(2387), + [anon_sym_U_SQUOTE] = ACTIONS(2387), + [anon_sym_u8_SQUOTE] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2387), + [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(2391), + [sym_false] = ACTIONS(2391), + [anon_sym_NULL] = ACTIONS(2393), + [anon_sym_nullptr] = ACTIONS(2393), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2399), + [anon_sym_new] = ACTIONS(2401), + [anon_sym_requires] = ACTIONS(2403), + [sym_this] = ACTIONS(2391), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2405), + [sym_semgrep_named_ellipsis] = ACTIONS(2407), + }, + [1204] = { + [sym_expression] = STATE(5259), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(8672), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(4960), - [anon_sym_AMP_AMP] = ACTIONS(4960), - [anon_sym_AMP] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4962), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(4960), - [anon_sym_LBRACK] = ACTIONS(4960), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -216759,7 +212292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -216773,171 +212306,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1148] = { - [sym_expression] = STATE(3778), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3806), - [sym_concatenated_string] = STATE(3806), - [sym_string_literal] = STATE(2240), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(2240), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2652), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(4960), - [anon_sym_BANG] = ACTIONS(2656), - [anon_sym_TILDE] = ACTIONS(2656), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_PLUS] = ACTIONS(2654), - [anon_sym_STAR] = ACTIONS(4960), - [anon_sym_AMP_AMP] = ACTIONS(4960), - [anon_sym_AMP] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4962), - [anon_sym_COLON_COLON] = ACTIONS(2658), - [anon_sym_LBRACE] = ACTIONS(4960), - [anon_sym_LBRACK] = ACTIONS(4960), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2654), - [anon_sym_compl] = ACTIONS(2654), - [anon_sym_DASH_DASH] = ACTIONS(5004), - [anon_sym_PLUS_PLUS] = ACTIONS(5004), - [anon_sym_sizeof] = ACTIONS(2660), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2662), - [anon_sym_L_SQUOTE] = ACTIONS(2664), - [anon_sym_u_SQUOTE] = ACTIONS(2664), - [anon_sym_U_SQUOTE] = ACTIONS(2664), - [anon_sym_u8_SQUOTE] = ACTIONS(2664), - [anon_sym_SQUOTE] = ACTIONS(2664), - [anon_sym_L_DQUOTE] = ACTIONS(2666), - [anon_sym_u_DQUOTE] = ACTIONS(2666), - [anon_sym_U_DQUOTE] = ACTIONS(2666), - [anon_sym_u8_DQUOTE] = ACTIONS(2666), - [anon_sym_DQUOTE] = ACTIONS(2666), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2668), - [anon_sym_R_DQUOTE] = ACTIONS(2670), - [anon_sym_LR_DQUOTE] = ACTIONS(2670), - [anon_sym_uR_DQUOTE] = ACTIONS(2670), - [anon_sym_UR_DQUOTE] = ACTIONS(2670), - [anon_sym_u8R_DQUOTE] = ACTIONS(2670), - [anon_sym_co_await] = ACTIONS(2672), - [anon_sym_new] = ACTIONS(2674), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1149] = { - [sym_expression] = STATE(5580), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_lambda_default_capture] = STATE(9341), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1205] = { + [sym_expression] = STATE(5280), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9569), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(5052), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5010), - [anon_sym_EQ] = ACTIONS(4958), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -216969,7 +212396,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -216983,66 +212410,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1150] = { - [sym_expression] = STATE(5580), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_lambda_default_capture] = STATE(9341), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1206] = { + [sym_expression] = STATE(4631), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3204), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3204), + [sym_call_expression] = STATE(3204), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3204), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3204), + [sym_initializer_list] = STATE(4376), + [sym_char_literal] = STATE(4797), + [sym_concatenated_string] = STATE(4797), + [sym_string_literal] = STATE(3234), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3234), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6827), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(3204), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3204), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5054), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(3897), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4936), + [anon_sym_PLUS_PLUS] = ACTIONS(4936), + [anon_sym_sizeof] = ACTIONS(3901), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(3903), + [anon_sym_L_SQUOTE] = ACTIONS(3905), + [anon_sym_u_SQUOTE] = ACTIONS(3905), + [anon_sym_U_SQUOTE] = ACTIONS(3905), + [anon_sym_u8_SQUOTE] = ACTIONS(3905), + [anon_sym_SQUOTE] = ACTIONS(3905), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3909), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + [anon_sym_co_await] = ACTIONS(3913), + [anon_sym_new] = ACTIONS(3915), + [anon_sym_requires] = ACTIONS(3917), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), + }, + [1207] = { + [sym_expression] = STATE(4894), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(4368), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5012), - [anon_sym_EQ] = ACTIONS(4958), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -217074,7 +212604,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -217088,71 +212618,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1151] = { - [sym_expression] = STATE(5580), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_lambda_default_capture] = STATE(9341), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(5014), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(4954), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5016), - [anon_sym_EQ] = ACTIONS(4958), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1208] = { + [sym_expression] = STATE(2946), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_COMMA] = ACTIONS(5058), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(5058), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1209] = { + [sym_expression] = STATE(2942), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_initializer_list] = STATE(2621), + [sym_char_literal] = STATE(3584), + [sym_concatenated_string] = STATE(3584), + [sym_string_literal] = STATE(2482), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2482), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5060), + [anon_sym_BANG] = ACTIONS(2578), + [anon_sym_TILDE] = ACTIONS(2578), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(2580), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2576), + [anon_sym_compl] = ACTIONS(2576), + [anon_sym_DASH_DASH] = ACTIONS(4964), + [anon_sym_PLUS_PLUS] = ACTIONS(4964), + [anon_sym_sizeof] = ACTIONS(2582), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2584), + [anon_sym_L_SQUOTE] = ACTIONS(2586), + [anon_sym_u_SQUOTE] = ACTIONS(2586), + [anon_sym_U_SQUOTE] = ACTIONS(2586), + [anon_sym_u8_SQUOTE] = ACTIONS(2586), + [anon_sym_SQUOTE] = ACTIONS(2586), + [anon_sym_L_DQUOTE] = ACTIONS(2588), + [anon_sym_u_DQUOTE] = ACTIONS(2588), + [anon_sym_U_DQUOTE] = ACTIONS(2588), + [anon_sym_u8_DQUOTE] = ACTIONS(2588), + [anon_sym_DQUOTE] = ACTIONS(2588), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2590), + [anon_sym_R_DQUOTE] = ACTIONS(2592), + [anon_sym_LR_DQUOTE] = ACTIONS(2592), + [anon_sym_uR_DQUOTE] = ACTIONS(2592), + [anon_sym_UR_DQUOTE] = ACTIONS(2592), + [anon_sym_u8R_DQUOTE] = ACTIONS(2592), + [anon_sym_co_await] = ACTIONS(2594), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1210] = { + [sym_expression] = STATE(4631), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_initializer_list] = STATE(4376), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -217179,185 +212916,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), + }, + [1211] = { + [sym_expression] = STATE(4708), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3922), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3922), + [sym_call_expression] = STATE(3922), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3922), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3922), + [sym_initializer_list] = STATE(4376), + [sym_char_literal] = STATE(5203), + [sym_concatenated_string] = STATE(5203), + [sym_string_literal] = STATE(3965), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3965), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3922), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3922), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_TILDE] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4200), + [anon_sym_compl] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_sizeof] = ACTIONS(4206), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(4208), + [anon_sym_L_SQUOTE] = ACTIONS(4210), + [anon_sym_u_SQUOTE] = ACTIONS(4210), + [anon_sym_U_SQUOTE] = ACTIONS(4210), + [anon_sym_u8_SQUOTE] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4210), + [anon_sym_L_DQUOTE] = ACTIONS(4212), + [anon_sym_u_DQUOTE] = ACTIONS(4212), + [anon_sym_U_DQUOTE] = ACTIONS(4212), + [anon_sym_u8_DQUOTE] = ACTIONS(4212), + [anon_sym_DQUOTE] = ACTIONS(4212), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4214), + [anon_sym_R_DQUOTE] = ACTIONS(4216), + [anon_sym_LR_DQUOTE] = ACTIONS(4216), + [anon_sym_uR_DQUOTE] = ACTIONS(4216), + [anon_sym_UR_DQUOTE] = ACTIONS(4216), + [anon_sym_u8R_DQUOTE] = ACTIONS(4216), + [anon_sym_co_await] = ACTIONS(4218), [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1152] = { - [sym_expression] = STATE(3239), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(4960), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(4960), - [anon_sym_AMP_AMP] = ACTIONS(4960), - [anon_sym_AMP] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4962), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACE] = ACTIONS(4960), - [anon_sym_LBRACK] = ACTIONS(4960), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), + [1212] = { + [sym_expression] = STATE(2942), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_initializer_list] = STATE(2621), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1153] = { - [sym_expression] = STATE(5580), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_lambda_default_capture] = STATE(9341), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1213] = { + [sym_expression] = STATE(5279), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9564), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(5066), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5018), - [anon_sym_EQ] = ACTIONS(4958), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -217389,7 +213228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -217403,171 +213242,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1154] = { - [sym_expression] = STATE(4220), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), - [anon_sym_LPAREN2] = ACTIONS(4960), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(4960), - [anon_sym_AMP_AMP] = ACTIONS(4960), - [anon_sym_AMP] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4962), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(4960), - [anon_sym_LBRACK] = ACTIONS(4960), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), - }, - [1155] = { - [sym_expression] = STATE(5528), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(8877), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1214] = { + [sym_expression] = STATE(5416), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(9896), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5068), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5022), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -217599,7 +213332,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -217613,66 +213346,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1156] = { - [sym_expression] = STATE(5580), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_lambda_default_capture] = STATE(9341), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1215] = { + [sym_expression] = STATE(2875), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_initializer_list] = STATE(2621), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5070), + [anon_sym_BANG] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_PLUS] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2969), + [anon_sym_compl] = ACTIONS(2969), + [anon_sym_DASH_DASH] = ACTIONS(5018), + [anon_sym_PLUS_PLUS] = ACTIONS(5018), + [anon_sym_sizeof] = ACTIONS(2975), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2977), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1216] = { + [sym_expression] = STATE(5197), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(9276), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(5072), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5024), - [anon_sym_EQ] = ACTIONS(4958), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -217704,7 +213540,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -217718,71 +213554,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1157] = { - [sym_expression] = STATE(5580), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_lambda_default_capture] = STATE(9341), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(4954), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5026), - [anon_sym_EQ] = ACTIONS(4958), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1217] = { + [sym_expression] = STATE(4721), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3204), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3204), + [sym_call_expression] = STATE(3204), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3204), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3204), + [sym_initializer_list] = STATE(4368), + [sym_char_literal] = STATE(4797), + [sym_concatenated_string] = STATE(4797), + [sym_string_literal] = STATE(3234), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3234), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6827), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(3204), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3204), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5054), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(3897), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4936), + [anon_sym_PLUS_PLUS] = ACTIONS(4936), + [anon_sym_sizeof] = ACTIONS(3901), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(3903), + [anon_sym_L_SQUOTE] = ACTIONS(3905), + [anon_sym_u_SQUOTE] = ACTIONS(3905), + [anon_sym_U_SQUOTE] = ACTIONS(3905), + [anon_sym_u8_SQUOTE] = ACTIONS(3905), + [anon_sym_SQUOTE] = ACTIONS(3905), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3909), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + [anon_sym_co_await] = ACTIONS(3913), + [anon_sym_new] = ACTIONS(3915), + [anon_sym_requires] = ACTIONS(3917), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), + }, + [1218] = { + [sym_expression] = STATE(5552), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_initializer_list] = STATE(4368), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -217809,85 +213748,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1158] = { - [sym_expression] = STATE(5580), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_lambda_default_capture] = STATE(9341), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(4954), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5028), - [anon_sym_EQ] = ACTIONS(4958), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1219] = { + [sym_expression] = STATE(5263), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_initializer_list] = STATE(8860), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -217914,80 +213852,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1159] = { - [sym_expression] = STATE(5580), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_lambda_default_capture] = STATE(9341), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1220] = { + [sym_expression] = STATE(3702), + [sym_expression_not_binary] = STATE(3960), + [sym_conditional_expression] = STATE(3950), + [sym_assignment_expression] = STATE(3950), + [sym_pointer_expression] = STATE(3961), + [sym_unary_expression] = STATE(3950), + [sym_binary_expression] = STATE(3960), + [sym_update_expression] = STATE(3950), + [sym_cast_expression] = STATE(3950), + [sym_sizeof_expression] = STATE(3950), + [sym_alignof_expression] = STATE(3950), + [sym_offsetof_expression] = STATE(3950), + [sym_generic_expression] = STATE(3950), + [sym_subscript_expression] = STATE(3961), + [sym_call_expression] = STATE(3961), + [sym_gnu_asm_expression] = STATE(3950), + [sym_field_expression] = STATE(3961), + [sym_compound_literal_expression] = STATE(3950), + [sym_parenthesized_expression] = STATE(3961), + [sym_initializer_list] = STATE(4061), + [sym_char_literal] = STATE(3756), + [sym_concatenated_string] = STATE(3756), + [sym_string_literal] = STATE(2508), + [sym_null] = STATE(3950), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8975), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3950), + [sym_raw_string_literal] = STATE(2508), + [sym_co_await_expression] = STATE(3950), + [sym_new_expression] = STATE(3950), + [sym_delete_expression] = STATE(3950), + [sym_requires_clause] = STATE(3950), + [sym_requires_expression] = STATE(3950), + [sym_lambda_expression] = STATE(3950), + [sym_lambda_capture_specifier] = STATE(6902), + [sym_fold_expression] = STATE(3950), + [sym_parameter_pack_expansion] = STATE(3950), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(3961), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3961), + [sym_semgrep_ellipsis] = STATE(3960), + [sym_deep_ellipsis] = STATE(3960), + [sym_identifier] = ACTIONS(2923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4882), + [anon_sym_LPAREN2] = ACTIONS(5074), + [anon_sym_BANG] = ACTIONS(2927), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2931), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2933), + [anon_sym_not] = ACTIONS(2925), + [anon_sym_compl] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(4888), + [anon_sym_PLUS_PLUS] = ACTIONS(4888), + [anon_sym_sizeof] = ACTIONS(2935), + [anon_sym___alignof__] = ACTIONS(2937), + [anon_sym___alignof] = ACTIONS(2937), + [anon_sym__alignof] = ACTIONS(2937), + [anon_sym_alignof] = ACTIONS(2937), + [anon_sym__Alignof] = ACTIONS(2937), + [anon_sym_offsetof] = ACTIONS(2939), + [anon_sym__Generic] = ACTIONS(2941), + [anon_sym_asm] = ACTIONS(2943), + [anon_sym___asm__] = ACTIONS(2943), + [sym_number_literal] = ACTIONS(2945), + [anon_sym_L_SQUOTE] = ACTIONS(2947), + [anon_sym_u_SQUOTE] = ACTIONS(2947), + [anon_sym_U_SQUOTE] = ACTIONS(2947), + [anon_sym_u8_SQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2947), + [anon_sym_L_DQUOTE] = ACTIONS(2949), + [anon_sym_u_DQUOTE] = ACTIONS(2949), + [anon_sym_U_DQUOTE] = ACTIONS(2949), + [anon_sym_u8_DQUOTE] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2949), + [sym_true] = ACTIONS(2951), + [sym_false] = ACTIONS(2951), + [anon_sym_NULL] = ACTIONS(2953), + [anon_sym_nullptr] = ACTIONS(2953), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2955), + [anon_sym_R_DQUOTE] = ACTIONS(2957), + [anon_sym_LR_DQUOTE] = ACTIONS(2957), + [anon_sym_uR_DQUOTE] = ACTIONS(2957), + [anon_sym_UR_DQUOTE] = ACTIONS(2957), + [anon_sym_u8R_DQUOTE] = ACTIONS(2957), + [anon_sym_co_await] = ACTIONS(2959), + [anon_sym_new] = ACTIONS(2961), + [anon_sym_requires] = ACTIONS(2963), + [sym_this] = ACTIONS(2951), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2965), + [sym_semgrep_named_ellipsis] = ACTIONS(2967), + }, + [1221] = { + [sym_expression] = STATE(5416), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_initializer_list] = STATE(9896), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5030), - [anon_sym_EQ] = ACTIONS(4958), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -218019,7 +214060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -218033,176 +214074,276 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1160] = { - [sym_expression] = STATE(5359), - [sym_expression_not_binary] = STATE(5540), - [sym_conditional_expression] = STATE(5537), - [sym_assignment_expression] = STATE(5537), - [sym_pointer_expression] = STATE(3745), - [sym_unary_expression] = STATE(5537), - [sym_binary_expression] = STATE(5540), - [sym_update_expression] = STATE(5537), - [sym_cast_expression] = STATE(5537), - [sym_sizeof_expression] = STATE(5537), - [sym_alignof_expression] = STATE(5537), - [sym_offsetof_expression] = STATE(5537), - [sym_generic_expression] = STATE(5537), - [sym_subscript_expression] = STATE(3745), - [sym_call_expression] = STATE(3745), - [sym_gnu_asm_expression] = STATE(5537), - [sym_field_expression] = STATE(3745), - [sym_compound_literal_expression] = STATE(5537), - [sym_parenthesized_expression] = STATE(3745), - [sym_char_literal] = STATE(5453), - [sym_concatenated_string] = STATE(5453), - [sym_string_literal] = STATE(3936), - [sym_null] = STATE(5537), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9333), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5537), - [sym_raw_string_literal] = STATE(3936), - [sym_co_await_expression] = STATE(5537), - [sym_new_expression] = STATE(5537), - [sym_delete_expression] = STATE(5537), - [sym_requires_clause] = STATE(5537), - [sym_requires_expression] = STATE(5537), - [sym_lambda_expression] = STATE(5537), - [sym_lambda_capture_specifier] = STATE(7261), - [sym_fold_expression] = STATE(5537), - [sym_parameter_pack_expansion] = STATE(5537), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3745), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3745), - [sym_semgrep_ellipsis] = STATE(5540), - [sym_deep_ellipsis] = STATE(5540), - [sym_identifier] = ACTIONS(5032), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5034), - [anon_sym_LPAREN2] = ACTIONS(4960), - [anon_sym_BANG] = ACTIONS(3820), - [anon_sym_TILDE] = ACTIONS(3820), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(4960), - [anon_sym_AMP_AMP] = ACTIONS(4960), - [anon_sym_AMP] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4962), - [anon_sym_COLON_COLON] = ACTIONS(3822), - [anon_sym_LBRACE] = ACTIONS(4960), - [anon_sym_LBRACK] = ACTIONS(4960), - [sym_primitive_type] = ACTIONS(3826), - [anon_sym_not] = ACTIONS(3818), - [anon_sym_compl] = ACTIONS(3818), - [anon_sym_DASH_DASH] = ACTIONS(5036), - [anon_sym_PLUS_PLUS] = ACTIONS(5036), - [anon_sym_sizeof] = ACTIONS(3828), - [anon_sym___alignof__] = ACTIONS(3830), - [anon_sym___alignof] = ACTIONS(3830), - [anon_sym__alignof] = ACTIONS(3830), - [anon_sym_alignof] = ACTIONS(3830), - [anon_sym__Alignof] = ACTIONS(3830), - [anon_sym_offsetof] = ACTIONS(3832), - [anon_sym__Generic] = ACTIONS(3834), - [anon_sym_asm] = ACTIONS(3836), - [anon_sym___asm__] = ACTIONS(3836), - [sym_number_literal] = ACTIONS(3838), - [anon_sym_L_SQUOTE] = ACTIONS(3840), - [anon_sym_u_SQUOTE] = ACTIONS(3840), - [anon_sym_U_SQUOTE] = ACTIONS(3840), - [anon_sym_u8_SQUOTE] = ACTIONS(3840), - [anon_sym_SQUOTE] = ACTIONS(3840), - [anon_sym_L_DQUOTE] = ACTIONS(3842), - [anon_sym_u_DQUOTE] = ACTIONS(3842), - [anon_sym_U_DQUOTE] = ACTIONS(3842), - [anon_sym_u8_DQUOTE] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym_true] = ACTIONS(3844), - [sym_false] = ACTIONS(3844), - [anon_sym_NULL] = ACTIONS(3846), - [anon_sym_nullptr] = ACTIONS(3846), + [1222] = { + [sym_expression] = STATE(2875), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_initializer_list] = STATE(2621), + [sym_char_literal] = STATE(2995), + [sym_concatenated_string] = STATE(2995), + [sym_string_literal] = STATE(2040), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2040), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(5008), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5076), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(2333), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_compl] = ACTIONS(2329), + [anon_sym_DASH_DASH] = ACTIONS(5010), + [anon_sym_PLUS_PLUS] = ACTIONS(5010), + [anon_sym_sizeof] = ACTIONS(2335), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2337), + [anon_sym_L_SQUOTE] = ACTIONS(2339), + [anon_sym_u_SQUOTE] = ACTIONS(2339), + [anon_sym_U_SQUOTE] = ACTIONS(2339), + [anon_sym_u8_SQUOTE] = ACTIONS(2339), + [anon_sym_SQUOTE] = ACTIONS(2339), + [anon_sym_L_DQUOTE] = ACTIONS(2341), + [anon_sym_u_DQUOTE] = ACTIONS(2341), + [anon_sym_U_DQUOTE] = ACTIONS(2341), + [anon_sym_u8_DQUOTE] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(3854), - [anon_sym_requires] = ACTIONS(3856), - [sym_this] = ACTIONS(3844), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3858), - [sym_semgrep_named_ellipsis] = ACTIONS(3860), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2343), + [anon_sym_R_DQUOTE] = ACTIONS(2345), + [anon_sym_LR_DQUOTE] = ACTIONS(2345), + [anon_sym_uR_DQUOTE] = ACTIONS(2345), + [anon_sym_UR_DQUOTE] = ACTIONS(2345), + [anon_sym_u8R_DQUOTE] = ACTIONS(2345), + [anon_sym_co_await] = ACTIONS(2347), + [anon_sym_new] = ACTIONS(2349), + [anon_sym_requires] = ACTIONS(2351), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1161] = { - [sym_expression] = STATE(5425), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4036), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4036), - [sym_call_expression] = STATE(4036), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4036), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4036), - [sym_initializer_list] = STATE(8181), - [sym_char_literal] = STATE(5772), - [sym_concatenated_string] = STATE(5772), - [sym_string_literal] = STATE(4262), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(4262), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4036), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4036), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5038), - [anon_sym_BANG] = ACTIONS(4035), - [anon_sym_TILDE] = ACTIONS(4035), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(4037), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_default] = ACTIONS(5042), - [anon_sym_not] = ACTIONS(4033), - [anon_sym_compl] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(5044), - [anon_sym_PLUS_PLUS] = ACTIONS(5044), - [anon_sym_sizeof] = ACTIONS(4039), + [1223] = { + [sym_expression] = STATE(2946), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(5078), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1224] = { + [sym_expression] = STATE(5382), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_COLON] = ACTIONS(5080), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -218212,206 +214353,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(4041), - [anon_sym_L_SQUOTE] = ACTIONS(4043), - [anon_sym_u_SQUOTE] = ACTIONS(4043), - [anon_sym_U_SQUOTE] = ACTIONS(4043), - [anon_sym_u8_SQUOTE] = ACTIONS(4043), - [anon_sym_SQUOTE] = ACTIONS(4043), - [anon_sym_L_DQUOTE] = ACTIONS(4045), - [anon_sym_u_DQUOTE] = ACTIONS(4045), - [anon_sym_U_DQUOTE] = ACTIONS(4045), - [anon_sym_u8_DQUOTE] = ACTIONS(4045), - [anon_sym_DQUOTE] = ACTIONS(4045), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(5046), - [anon_sym_R_DQUOTE] = ACTIONS(4049), - [anon_sym_LR_DQUOTE] = ACTIONS(4049), - [anon_sym_uR_DQUOTE] = ACTIONS(4049), - [anon_sym_UR_DQUOTE] = ACTIONS(4049), - [anon_sym_u8R_DQUOTE] = ACTIONS(4049), - [anon_sym_co_await] = ACTIONS(4051), - [anon_sym_new] = ACTIONS(4053), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1162] = { - [sym_expression] = STATE(5321), - [sym_expression_not_binary] = STATE(5540), - [sym_conditional_expression] = STATE(5537), - [sym_assignment_expression] = STATE(5537), - [sym_pointer_expression] = STATE(3745), - [sym_unary_expression] = STATE(5537), - [sym_binary_expression] = STATE(5540), - [sym_update_expression] = STATE(5537), - [sym_cast_expression] = STATE(5537), - [sym_sizeof_expression] = STATE(5537), - [sym_alignof_expression] = STATE(5537), - [sym_offsetof_expression] = STATE(5537), - [sym_generic_expression] = STATE(5537), - [sym_subscript_expression] = STATE(3745), - [sym_call_expression] = STATE(3745), - [sym_gnu_asm_expression] = STATE(5537), - [sym_field_expression] = STATE(3745), - [sym_compound_literal_expression] = STATE(5537), - [sym_parenthesized_expression] = STATE(3745), - [sym_char_literal] = STATE(5453), - [sym_concatenated_string] = STATE(5453), - [sym_string_literal] = STATE(3936), - [sym_null] = STATE(5537), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9333), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5537), - [sym_raw_string_literal] = STATE(3936), - [sym_co_await_expression] = STATE(5537), - [sym_new_expression] = STATE(5537), - [sym_delete_expression] = STATE(5537), - [sym_requires_clause] = STATE(5537), - [sym_requires_expression] = STATE(5537), - [sym_lambda_expression] = STATE(5537), - [sym_lambda_capture_specifier] = STATE(7261), - [sym_fold_expression] = STATE(5537), - [sym_parameter_pack_expansion] = STATE(5537), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3745), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3745), - [sym_semgrep_ellipsis] = STATE(5540), - [sym_deep_ellipsis] = STATE(5540), - [sym_identifier] = ACTIONS(5032), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5034), - [anon_sym_LPAREN2] = ACTIONS(4960), - [anon_sym_BANG] = ACTIONS(3820), - [anon_sym_TILDE] = ACTIONS(3820), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(4960), - [anon_sym_AMP_AMP] = ACTIONS(4960), - [anon_sym_AMP] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4962), - [anon_sym_COLON_COLON] = ACTIONS(3822), - [anon_sym_LBRACE] = ACTIONS(4960), - [anon_sym_LBRACK] = ACTIONS(4960), - [sym_primitive_type] = ACTIONS(3826), - [anon_sym_not] = ACTIONS(3818), - [anon_sym_compl] = ACTIONS(3818), - [anon_sym_DASH_DASH] = ACTIONS(5036), - [anon_sym_PLUS_PLUS] = ACTIONS(5036), - [anon_sym_sizeof] = ACTIONS(3828), - [anon_sym___alignof__] = ACTIONS(3830), - [anon_sym___alignof] = ACTIONS(3830), - [anon_sym__alignof] = ACTIONS(3830), - [anon_sym_alignof] = ACTIONS(3830), - [anon_sym__Alignof] = ACTIONS(3830), - [anon_sym_offsetof] = ACTIONS(3832), - [anon_sym__Generic] = ACTIONS(3834), - [anon_sym_asm] = ACTIONS(3836), - [anon_sym___asm__] = ACTIONS(3836), - [sym_number_literal] = ACTIONS(3838), - [anon_sym_L_SQUOTE] = ACTIONS(3840), - [anon_sym_u_SQUOTE] = ACTIONS(3840), - [anon_sym_U_SQUOTE] = ACTIONS(3840), - [anon_sym_u8_SQUOTE] = ACTIONS(3840), - [anon_sym_SQUOTE] = ACTIONS(3840), - [anon_sym_L_DQUOTE] = ACTIONS(3842), - [anon_sym_u_DQUOTE] = ACTIONS(3842), - [anon_sym_U_DQUOTE] = ACTIONS(3842), - [anon_sym_u8_DQUOTE] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym_true] = ACTIONS(3844), - [sym_false] = ACTIONS(3844), - [anon_sym_NULL] = ACTIONS(3846), - [anon_sym_nullptr] = ACTIONS(3846), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(3854), - [anon_sym_requires] = ACTIONS(3856), - [sym_this] = ACTIONS(3844), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3858), - [sym_semgrep_named_ellipsis] = ACTIONS(3860), - }, - [1163] = { - [sym_expression] = STATE(3004), - [sym_expression_not_binary] = STATE(3362), - [sym_conditional_expression] = STATE(3356), - [sym_assignment_expression] = STATE(3356), - [sym_pointer_expression] = STATE(3367), - [sym_unary_expression] = STATE(3356), - [sym_binary_expression] = STATE(3362), - [sym_update_expression] = STATE(3356), - [sym_cast_expression] = STATE(3356), - [sym_sizeof_expression] = STATE(3356), - [sym_alignof_expression] = STATE(3356), - [sym_offsetof_expression] = STATE(3356), - [sym_generic_expression] = STATE(3356), - [sym_subscript_expression] = STATE(3367), - [sym_call_expression] = STATE(3367), - [sym_gnu_asm_expression] = STATE(3356), - [sym_field_expression] = STATE(3367), - [sym_compound_literal_expression] = STATE(3356), - [sym_parenthesized_expression] = STATE(3367), - [sym_char_literal] = STATE(3167), - [sym_concatenated_string] = STATE(3167), - [sym_string_literal] = STATE(1962), - [sym_null] = STATE(3356), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9141), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3356), - [sym_raw_string_literal] = STATE(1962), - [sym_co_await_expression] = STATE(3356), - [sym_new_expression] = STATE(3356), - [sym_delete_expression] = STATE(3356), - [sym_requires_clause] = STATE(3356), - [sym_requires_expression] = STATE(3356), - [sym_lambda_expression] = STATE(3356), - [sym_lambda_capture_specifier] = STATE(7329), - [sym_fold_expression] = STATE(3356), - [sym_parameter_pack_expansion] = STATE(3356), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3367), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3367), - [sym_semgrep_ellipsis] = STATE(3362), - [sym_deep_ellipsis] = STATE(3362), - [sym_identifier] = ACTIONS(5048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5050), - [anon_sym_LPAREN2] = ACTIONS(4960), - [anon_sym_BANG] = ACTIONS(2285), - [anon_sym_TILDE] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2283), - [anon_sym_PLUS] = ACTIONS(2283), - [anon_sym_STAR] = ACTIONS(4960), - [anon_sym_AMP_AMP] = ACTIONS(4960), - [anon_sym_AMP] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4962), + [1225] = { + [sym_expression] = STATE(2946), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(4960), - [anon_sym_LBRACK] = ACTIONS(4960), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(5082), [sym_primitive_type] = ACTIONS(2291), - [anon_sym_not] = ACTIONS(2283), - [anon_sym_compl] = ACTIONS(2283), - [anon_sym_DASH_DASH] = ACTIONS(5052), - [anon_sym_PLUS_PLUS] = ACTIONS(5052), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), [anon_sym_sizeof] = ACTIONS(2293), [anon_sym___alignof__] = ACTIONS(2295), [anon_sym___alignof] = ACTIONS(2295), @@ -218439,7 +214473,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(2315), [anon_sym_R_DQUOTE] = ACTIONS(2317), [anon_sym_LR_DQUOTE] = ACTIONS(2317), @@ -218453,70 +214487,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1164] = { - [sym_expression] = STATE(3006), - [sym_expression_not_binary] = STATE(3362), - [sym_conditional_expression] = STATE(3356), - [sym_assignment_expression] = STATE(3356), - [sym_pointer_expression] = STATE(3367), - [sym_unary_expression] = STATE(3356), - [sym_binary_expression] = STATE(3362), - [sym_update_expression] = STATE(3356), - [sym_cast_expression] = STATE(3356), - [sym_sizeof_expression] = STATE(3356), - [sym_alignof_expression] = STATE(3356), - [sym_offsetof_expression] = STATE(3356), - [sym_generic_expression] = STATE(3356), - [sym_subscript_expression] = STATE(3367), - [sym_call_expression] = STATE(3367), - [sym_gnu_asm_expression] = STATE(3356), - [sym_field_expression] = STATE(3367), - [sym_compound_literal_expression] = STATE(3356), - [sym_parenthesized_expression] = STATE(3367), - [sym_char_literal] = STATE(3167), - [sym_concatenated_string] = STATE(3167), - [sym_string_literal] = STATE(1962), - [sym_null] = STATE(3356), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9141), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3356), - [sym_raw_string_literal] = STATE(1962), - [sym_co_await_expression] = STATE(3356), - [sym_new_expression] = STATE(3356), - [sym_delete_expression] = STATE(3356), - [sym_requires_clause] = STATE(3356), - [sym_requires_expression] = STATE(3356), - [sym_lambda_expression] = STATE(3356), - [sym_lambda_capture_specifier] = STATE(7329), - [sym_fold_expression] = STATE(3356), - [sym_parameter_pack_expansion] = STATE(3356), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3367), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3367), - [sym_semgrep_ellipsis] = STATE(3362), - [sym_deep_ellipsis] = STATE(3362), - [sym_identifier] = ACTIONS(5048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5050), - [anon_sym_LPAREN2] = ACTIONS(4960), - [anon_sym_BANG] = ACTIONS(2285), - [anon_sym_TILDE] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2283), - [anon_sym_PLUS] = ACTIONS(2283), - [anon_sym_STAR] = ACTIONS(4960), - [anon_sym_AMP_AMP] = ACTIONS(4960), - [anon_sym_AMP] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4962), + [1226] = { + [sym_expression] = STATE(2946), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(4960), - [anon_sym_LBRACK] = ACTIONS(4960), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(5084), [sym_primitive_type] = ACTIONS(2291), - [anon_sym_not] = ACTIONS(2283), - [anon_sym_compl] = ACTIONS(2283), - [anon_sym_DASH_DASH] = ACTIONS(5052), - [anon_sym_PLUS_PLUS] = ACTIONS(5052), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), [anon_sym_sizeof] = ACTIONS(2293), [anon_sym___alignof__] = ACTIONS(2295), [anon_sym___alignof] = ACTIONS(2295), @@ -218544,7 +214576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(2315), [anon_sym_R_DQUOTE] = ACTIONS(2317), [anon_sym_LR_DQUOTE] = ACTIONS(2317), @@ -218558,281 +214590,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1165] = { - [sym_expression] = STATE(5939), - [sym_expression_not_binary] = STATE(6169), - [sym_conditional_expression] = STATE(6267), - [sym_assignment_expression] = STATE(6267), - [sym_pointer_expression] = STATE(4422), - [sym_unary_expression] = STATE(6267), - [sym_binary_expression] = STATE(6169), - [sym_update_expression] = STATE(6267), - [sym_cast_expression] = STATE(6267), - [sym_sizeof_expression] = STATE(6267), - [sym_alignof_expression] = STATE(6267), - [sym_offsetof_expression] = STATE(6267), - [sym_generic_expression] = STATE(6267), - [sym_subscript_expression] = STATE(4422), - [sym_call_expression] = STATE(4422), - [sym_gnu_asm_expression] = STATE(6267), - [sym_field_expression] = STATE(4422), - [sym_compound_literal_expression] = STATE(6267), - [sym_parenthesized_expression] = STATE(4422), - [sym_char_literal] = STATE(6147), - [sym_concatenated_string] = STATE(6147), - [sym_string_literal] = STATE(4563), - [sym_null] = STATE(6267), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9242), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6267), - [sym_raw_string_literal] = STATE(4563), - [sym_co_await_expression] = STATE(6267), - [sym_new_expression] = STATE(6267), - [sym_delete_expression] = STATE(6267), - [sym_requires_clause] = STATE(6267), - [sym_requires_expression] = STATE(6267), - [sym_lambda_expression] = STATE(6267), - [sym_lambda_capture_specifier] = STATE(7263), - [sym_fold_expression] = STATE(6267), - [sym_parameter_pack_expansion] = STATE(6267), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4422), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4422), - [sym_semgrep_ellipsis] = STATE(6169), - [sym_deep_ellipsis] = STATE(6169), - [sym_identifier] = ACTIONS(4112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5054), - [anon_sym_LPAREN2] = ACTIONS(4960), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_TILDE] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(4960), - [anon_sym_AMP_AMP] = ACTIONS(4960), - [anon_sym_AMP] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4962), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_LBRACE] = ACTIONS(4960), - [anon_sym_LBRACK] = ACTIONS(4960), - [sym_primitive_type] = ACTIONS(4122), - [anon_sym_not] = ACTIONS(4114), - [anon_sym_compl] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(5056), - [anon_sym_PLUS_PLUS] = ACTIONS(5056), - [anon_sym_sizeof] = ACTIONS(4124), - [anon_sym___alignof__] = ACTIONS(4126), - [anon_sym___alignof] = ACTIONS(4126), - [anon_sym__alignof] = ACTIONS(4126), - [anon_sym_alignof] = ACTIONS(4126), - [anon_sym__Alignof] = ACTIONS(4126), - [anon_sym_offsetof] = ACTIONS(4128), - [anon_sym__Generic] = ACTIONS(4130), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4136), - [anon_sym_u_SQUOTE] = ACTIONS(4136), - [anon_sym_U_SQUOTE] = ACTIONS(4136), - [anon_sym_u8_SQUOTE] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_L_DQUOTE] = ACTIONS(4138), - [anon_sym_u_DQUOTE] = ACTIONS(4138), - [anon_sym_U_DQUOTE] = ACTIONS(4138), - [anon_sym_u8_DQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [anon_sym_NULL] = ACTIONS(4142), - [anon_sym_nullptr] = ACTIONS(4142), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4150), - [anon_sym_requires] = ACTIONS(4152), - [sym_this] = ACTIONS(4140), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4154), - [sym_semgrep_named_ellipsis] = ACTIONS(4156), - }, - [1166] = { - [sym_expression] = STATE(5742), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9595), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [sym_identifier] = ACTIONS(4059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(4960), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(4960), - [anon_sym_AMP_AMP] = ACTIONS(4960), - [anon_sym_AMP] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4962), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_LBRACE] = ACTIONS(4960), - [anon_sym_LBRACK] = ACTIONS(4960), - [sym_primitive_type] = ACTIONS(4063), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), + [1227] = { + [sym_expression] = STATE(2946), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(5086), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1167] = { - [sym_expression] = STATE(5524), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4036), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4036), - [sym_call_expression] = STATE(4036), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4036), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4036), - [sym_char_literal] = STATE(5772), - [sym_concatenated_string] = STATE(5772), - [sym_string_literal] = STATE(4262), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(4262), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4036), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4036), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(4960), - [anon_sym_BANG] = ACTIONS(4035), - [anon_sym_TILDE] = ACTIONS(4035), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(4960), - [anon_sym_AMP_AMP] = ACTIONS(4960), - [anon_sym_AMP] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4962), - [anon_sym_COLON_COLON] = ACTIONS(4037), - [anon_sym_LBRACE] = ACTIONS(4960), - [anon_sym_LBRACK] = ACTIONS(4960), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4033), - [anon_sym_compl] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(5044), - [anon_sym_PLUS_PLUS] = ACTIONS(5044), - [anon_sym_sizeof] = ACTIONS(4039), + [1228] = { + [sym_expression] = STATE(4995), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3922), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3922), + [sym_call_expression] = STATE(3922), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3922), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3922), + [sym_char_literal] = STATE(5203), + [sym_concatenated_string] = STATE(5203), + [sym_string_literal] = STATE(3965), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3965), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3922), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3922), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_TILDE] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_SEMI] = ACTIONS(5088), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(5090), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4200), + [anon_sym_compl] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_sizeof] = ACTIONS(4206), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -218842,97 +214765,300 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(4041), - [anon_sym_L_SQUOTE] = ACTIONS(4043), - [anon_sym_u_SQUOTE] = ACTIONS(4043), - [anon_sym_U_SQUOTE] = ACTIONS(4043), - [anon_sym_u8_SQUOTE] = ACTIONS(4043), - [anon_sym_SQUOTE] = ACTIONS(4043), - [anon_sym_L_DQUOTE] = ACTIONS(4045), - [anon_sym_u_DQUOTE] = ACTIONS(4045), - [anon_sym_U_DQUOTE] = ACTIONS(4045), - [anon_sym_u8_DQUOTE] = ACTIONS(4045), - [anon_sym_DQUOTE] = ACTIONS(4045), + [sym_number_literal] = ACTIONS(4208), + [anon_sym_L_SQUOTE] = ACTIONS(4210), + [anon_sym_u_SQUOTE] = ACTIONS(4210), + [anon_sym_U_SQUOTE] = ACTIONS(4210), + [anon_sym_u8_SQUOTE] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4210), + [anon_sym_L_DQUOTE] = ACTIONS(4212), + [anon_sym_u_DQUOTE] = ACTIONS(4212), + [anon_sym_U_DQUOTE] = ACTIONS(4212), + [anon_sym_u8_DQUOTE] = ACTIONS(4212), + [anon_sym_DQUOTE] = ACTIONS(4212), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4047), - [anon_sym_R_DQUOTE] = ACTIONS(4049), - [anon_sym_LR_DQUOTE] = ACTIONS(4049), - [anon_sym_uR_DQUOTE] = ACTIONS(4049), - [anon_sym_UR_DQUOTE] = ACTIONS(4049), - [anon_sym_u8R_DQUOTE] = ACTIONS(4049), - [anon_sym_co_await] = ACTIONS(4051), - [anon_sym_new] = ACTIONS(4053), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4214), + [anon_sym_R_DQUOTE] = ACTIONS(4216), + [anon_sym_LR_DQUOTE] = ACTIONS(4216), + [anon_sym_uR_DQUOTE] = ACTIONS(4216), + [anon_sym_UR_DQUOTE] = ACTIONS(4216), + [anon_sym_u8R_DQUOTE] = ACTIONS(4216), + [anon_sym_co_await] = ACTIONS(4218), + [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1168] = { - [sym_expression] = STATE(5580), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_lambda_default_capture] = STATE(9341), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1229] = { + [sym_expression] = STATE(2946), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(5092), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1230] = { + [sym_expression] = STATE(2946), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(5094), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1231] = { + [sym_expression] = STATE(5402), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5058), - [anon_sym_EQ] = ACTIONS(4958), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -218963,8 +215089,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5096), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -218978,71 +215105,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1169] = { - [sym_expression] = STATE(5580), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_lambda_default_capture] = STATE(9341), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(4954), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5060), - [anon_sym_EQ] = ACTIONS(4958), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1232] = { + [sym_expression] = STATE(2946), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(5098), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1233] = { + [sym_expression] = STATE(5512), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_COLON] = ACTIONS(5100), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -219069,500 +215297,284 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1170] = { - [sym_expression] = STATE(3382), - [sym_expression_not_binary] = STATE(3786), - [sym_conditional_expression] = STATE(3784), - [sym_assignment_expression] = STATE(3784), - [sym_pointer_expression] = STATE(3787), - [sym_unary_expression] = STATE(3784), - [sym_binary_expression] = STATE(3786), - [sym_update_expression] = STATE(3784), - [sym_cast_expression] = STATE(3784), - [sym_sizeof_expression] = STATE(3784), - [sym_alignof_expression] = STATE(3784), - [sym_offsetof_expression] = STATE(3784), - [sym_generic_expression] = STATE(3784), - [sym_subscript_expression] = STATE(3787), - [sym_call_expression] = STATE(3787), - [sym_gnu_asm_expression] = STATE(3784), - [sym_field_expression] = STATE(3787), - [sym_compound_literal_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3787), - [sym_char_literal] = STATE(3471), - [sym_concatenated_string] = STATE(3471), - [sym_string_literal] = STATE(2063), - [sym_null] = STATE(3784), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9229), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3784), - [sym_raw_string_literal] = STATE(2063), - [sym_co_await_expression] = STATE(3784), - [sym_new_expression] = STATE(3784), - [sym_delete_expression] = STATE(3784), - [sym_requires_clause] = STATE(3784), - [sym_requires_expression] = STATE(3784), - [sym_lambda_expression] = STATE(3784), - [sym_lambda_capture_specifier] = STATE(7253), - [sym_fold_expression] = STATE(3784), - [sym_parameter_pack_expansion] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3787), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3787), - [sym_semgrep_ellipsis] = STATE(3786), - [sym_deep_ellipsis] = STATE(3786), - [sym_identifier] = ACTIONS(5062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5064), - [anon_sym_LPAREN2] = ACTIONS(4960), - [anon_sym_BANG] = ACTIONS(2383), - [anon_sym_TILDE] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(4960), - [anon_sym_AMP_AMP] = ACTIONS(4960), - [anon_sym_AMP] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4962), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACE] = ACTIONS(4960), - [anon_sym_LBRACK] = ACTIONS(4960), - [sym_primitive_type] = ACTIONS(2389), - [anon_sym_not] = ACTIONS(2381), - [anon_sym_compl] = ACTIONS(2381), - [anon_sym_DASH_DASH] = ACTIONS(5066), - [anon_sym_PLUS_PLUS] = ACTIONS(5066), - [anon_sym_sizeof] = ACTIONS(2391), - [anon_sym___alignof__] = ACTIONS(2393), - [anon_sym___alignof] = ACTIONS(2393), - [anon_sym__alignof] = ACTIONS(2393), - [anon_sym_alignof] = ACTIONS(2393), - [anon_sym__Alignof] = ACTIONS(2393), - [anon_sym_offsetof] = ACTIONS(2395), - [anon_sym__Generic] = ACTIONS(2397), - [anon_sym_asm] = ACTIONS(2399), - [anon_sym___asm__] = ACTIONS(2399), - [sym_number_literal] = ACTIONS(2401), - [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(2405), - [anon_sym_u_DQUOTE] = ACTIONS(2405), - [anon_sym_U_DQUOTE] = ACTIONS(2405), - [anon_sym_u8_DQUOTE] = ACTIONS(2405), - [anon_sym_DQUOTE] = ACTIONS(2405), - [sym_true] = ACTIONS(2407), - [sym_false] = ACTIONS(2407), - [anon_sym_NULL] = ACTIONS(2409), - [anon_sym_nullptr] = ACTIONS(2409), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2411), - [anon_sym_R_DQUOTE] = ACTIONS(2413), - [anon_sym_LR_DQUOTE] = ACTIONS(2413), - [anon_sym_uR_DQUOTE] = ACTIONS(2413), - [anon_sym_UR_DQUOTE] = ACTIONS(2413), - [anon_sym_u8R_DQUOTE] = ACTIONS(2413), - [anon_sym_co_await] = ACTIONS(2415), - [anon_sym_new] = ACTIONS(2417), - [anon_sym_requires] = ACTIONS(2419), - [sym_this] = ACTIONS(2407), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2421), - [sym_semgrep_named_ellipsis] = ACTIONS(2423), - }, - [1171] = { - [sym_expression] = STATE(5982), - [sym_expression_not_binary] = STATE(6169), - [sym_conditional_expression] = STATE(6267), - [sym_assignment_expression] = STATE(6267), - [sym_pointer_expression] = STATE(4422), - [sym_unary_expression] = STATE(6267), - [sym_binary_expression] = STATE(6169), - [sym_update_expression] = STATE(6267), - [sym_cast_expression] = STATE(6267), - [sym_sizeof_expression] = STATE(6267), - [sym_alignof_expression] = STATE(6267), - [sym_offsetof_expression] = STATE(6267), - [sym_generic_expression] = STATE(6267), - [sym_subscript_expression] = STATE(4422), - [sym_call_expression] = STATE(4422), - [sym_gnu_asm_expression] = STATE(6267), - [sym_field_expression] = STATE(4422), - [sym_compound_literal_expression] = STATE(6267), - [sym_parenthesized_expression] = STATE(4422), - [sym_char_literal] = STATE(6147), - [sym_concatenated_string] = STATE(6147), - [sym_string_literal] = STATE(4563), - [sym_null] = STATE(6267), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9242), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6267), - [sym_raw_string_literal] = STATE(4563), - [sym_co_await_expression] = STATE(6267), - [sym_new_expression] = STATE(6267), - [sym_delete_expression] = STATE(6267), - [sym_requires_clause] = STATE(6267), - [sym_requires_expression] = STATE(6267), - [sym_lambda_expression] = STATE(6267), - [sym_lambda_capture_specifier] = STATE(7263), - [sym_fold_expression] = STATE(6267), - [sym_parameter_pack_expansion] = STATE(6267), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4422), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4422), - [sym_semgrep_ellipsis] = STATE(6169), - [sym_deep_ellipsis] = STATE(6169), - [sym_identifier] = ACTIONS(4112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5054), - [anon_sym_LPAREN2] = ACTIONS(4960), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_TILDE] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(4960), - [anon_sym_AMP_AMP] = ACTIONS(4960), - [anon_sym_AMP] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4962), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_LBRACE] = ACTIONS(4960), - [anon_sym_LBRACK] = ACTIONS(4960), - [sym_primitive_type] = ACTIONS(4122), - [anon_sym_not] = ACTIONS(4114), - [anon_sym_compl] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(5056), - [anon_sym_PLUS_PLUS] = ACTIONS(5056), - [anon_sym_sizeof] = ACTIONS(4124), - [anon_sym___alignof__] = ACTIONS(4126), - [anon_sym___alignof] = ACTIONS(4126), - [anon_sym__alignof] = ACTIONS(4126), - [anon_sym_alignof] = ACTIONS(4126), - [anon_sym__Alignof] = ACTIONS(4126), - [anon_sym_offsetof] = ACTIONS(4128), - [anon_sym__Generic] = ACTIONS(4130), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4136), - [anon_sym_u_SQUOTE] = ACTIONS(4136), - [anon_sym_U_SQUOTE] = ACTIONS(4136), - [anon_sym_u8_SQUOTE] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_L_DQUOTE] = ACTIONS(4138), - [anon_sym_u_DQUOTE] = ACTIONS(4138), - [anon_sym_U_DQUOTE] = ACTIONS(4138), - [anon_sym_u8_DQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [anon_sym_NULL] = ACTIONS(4142), - [anon_sym_nullptr] = ACTIONS(4142), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4150), - [anon_sym_requires] = ACTIONS(4152), - [sym_this] = ACTIONS(4140), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4154), - [sym_semgrep_named_ellipsis] = ACTIONS(4156), - }, - [1172] = { - [sym_expression] = STATE(4371), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), - [anon_sym_LPAREN2] = ACTIONS(4960), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(4960), - [anon_sym_AMP_AMP] = ACTIONS(4960), - [anon_sym_AMP] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4962), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(4960), - [anon_sym_LBRACK] = ACTIONS(4960), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), + [1234] = { + [sym_expression] = STATE(2946), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(5102), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1173] = { - [sym_expression] = STATE(3401), - [sym_expression_not_binary] = STATE(3786), - [sym_conditional_expression] = STATE(3784), - [sym_assignment_expression] = STATE(3784), - [sym_pointer_expression] = STATE(3787), - [sym_unary_expression] = STATE(3784), - [sym_binary_expression] = STATE(3786), - [sym_update_expression] = STATE(3784), - [sym_cast_expression] = STATE(3784), - [sym_sizeof_expression] = STATE(3784), - [sym_alignof_expression] = STATE(3784), - [sym_offsetof_expression] = STATE(3784), - [sym_generic_expression] = STATE(3784), - [sym_subscript_expression] = STATE(3787), - [sym_call_expression] = STATE(3787), - [sym_gnu_asm_expression] = STATE(3784), - [sym_field_expression] = STATE(3787), - [sym_compound_literal_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3787), - [sym_char_literal] = STATE(3471), - [sym_concatenated_string] = STATE(3471), - [sym_string_literal] = STATE(2063), - [sym_null] = STATE(3784), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9229), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3784), - [sym_raw_string_literal] = STATE(2063), - [sym_co_await_expression] = STATE(3784), - [sym_new_expression] = STATE(3784), - [sym_delete_expression] = STATE(3784), - [sym_requires_clause] = STATE(3784), - [sym_requires_expression] = STATE(3784), - [sym_lambda_expression] = STATE(3784), - [sym_lambda_capture_specifier] = STATE(7253), - [sym_fold_expression] = STATE(3784), - [sym_parameter_pack_expansion] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3787), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3787), - [sym_semgrep_ellipsis] = STATE(3786), - [sym_deep_ellipsis] = STATE(3786), - [sym_identifier] = ACTIONS(5062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5064), - [anon_sym_LPAREN2] = ACTIONS(4960), - [anon_sym_BANG] = ACTIONS(2383), - [anon_sym_TILDE] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(4960), - [anon_sym_AMP_AMP] = ACTIONS(4960), - [anon_sym_AMP] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4962), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACE] = ACTIONS(4960), - [anon_sym_LBRACK] = ACTIONS(4960), - [sym_primitive_type] = ACTIONS(2389), - [anon_sym_not] = ACTIONS(2381), - [anon_sym_compl] = ACTIONS(2381), - [anon_sym_DASH_DASH] = ACTIONS(5066), - [anon_sym_PLUS_PLUS] = ACTIONS(5066), - [anon_sym_sizeof] = ACTIONS(2391), - [anon_sym___alignof__] = ACTIONS(2393), - [anon_sym___alignof] = ACTIONS(2393), - [anon_sym__alignof] = ACTIONS(2393), - [anon_sym_alignof] = ACTIONS(2393), - [anon_sym__Alignof] = ACTIONS(2393), - [anon_sym_offsetof] = ACTIONS(2395), - [anon_sym__Generic] = ACTIONS(2397), - [anon_sym_asm] = ACTIONS(2399), - [anon_sym___asm__] = ACTIONS(2399), - [sym_number_literal] = ACTIONS(2401), - [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(2405), - [anon_sym_u_DQUOTE] = ACTIONS(2405), - [anon_sym_U_DQUOTE] = ACTIONS(2405), - [anon_sym_u8_DQUOTE] = ACTIONS(2405), - [anon_sym_DQUOTE] = ACTIONS(2405), - [sym_true] = ACTIONS(2407), - [sym_false] = ACTIONS(2407), - [anon_sym_NULL] = ACTIONS(2409), - [anon_sym_nullptr] = ACTIONS(2409), + [1235] = { + [sym_expression] = STATE(4995), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3922), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3922), + [sym_call_expression] = STATE(3922), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3922), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3922), + [sym_char_literal] = STATE(5203), + [sym_concatenated_string] = STATE(5203), + [sym_string_literal] = STATE(3965), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3965), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3922), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3922), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_TILDE] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_SEMI] = ACTIONS(5104), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(5090), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4200), + [anon_sym_compl] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_sizeof] = ACTIONS(4206), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(4208), + [anon_sym_L_SQUOTE] = ACTIONS(4210), + [anon_sym_u_SQUOTE] = ACTIONS(4210), + [anon_sym_U_SQUOTE] = ACTIONS(4210), + [anon_sym_u8_SQUOTE] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4210), + [anon_sym_L_DQUOTE] = ACTIONS(4212), + [anon_sym_u_DQUOTE] = ACTIONS(4212), + [anon_sym_U_DQUOTE] = ACTIONS(4212), + [anon_sym_u8_DQUOTE] = ACTIONS(4212), + [anon_sym_DQUOTE] = ACTIONS(4212), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2411), - [anon_sym_R_DQUOTE] = ACTIONS(2413), - [anon_sym_LR_DQUOTE] = ACTIONS(2413), - [anon_sym_uR_DQUOTE] = ACTIONS(2413), - [anon_sym_UR_DQUOTE] = ACTIONS(2413), - [anon_sym_u8R_DQUOTE] = ACTIONS(2413), - [anon_sym_co_await] = ACTIONS(2415), - [anon_sym_new] = ACTIONS(2417), - [anon_sym_requires] = ACTIONS(2419), - [sym_this] = ACTIONS(2407), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2421), - [sym_semgrep_named_ellipsis] = ACTIONS(2423), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4214), + [anon_sym_R_DQUOTE] = ACTIONS(4216), + [anon_sym_LR_DQUOTE] = ACTIONS(4216), + [anon_sym_uR_DQUOTE] = ACTIONS(4216), + [anon_sym_UR_DQUOTE] = ACTIONS(4216), + [anon_sym_u8R_DQUOTE] = ACTIONS(4216), + [anon_sym_co_await] = ACTIONS(4218), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1174] = { - [sym_expression] = STATE(5580), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_lambda_default_capture] = STATE(9341), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1236] = { + [sym_expression] = STATE(5419), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(5106), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5068), - [anon_sym_EQ] = ACTIONS(4958), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -219594,7 +215606,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -219608,66 +215620,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1175] = { - [sym_expression] = STATE(5593), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_lambda_default_capture] = STATE(9341), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1237] = { + [sym_expression] = STATE(5420), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(5108), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5016), - [anon_sym_EQ] = ACTIONS(4958), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -219699,7 +215709,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -219713,381 +215723,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1176] = { - [sym_expression] = STATE(3854), - [sym_expression_not_binary] = STATE(4358), - [sym_conditional_expression] = STATE(4353), - [sym_assignment_expression] = STATE(4353), - [sym_pointer_expression] = STATE(4360), - [sym_unary_expression] = STATE(4353), - [sym_binary_expression] = STATE(4358), - [sym_update_expression] = STATE(4353), - [sym_cast_expression] = STATE(4353), - [sym_sizeof_expression] = STATE(4353), - [sym_alignof_expression] = STATE(4353), - [sym_offsetof_expression] = STATE(4353), - [sym_generic_expression] = STATE(4353), - [sym_subscript_expression] = STATE(4360), - [sym_call_expression] = STATE(4360), - [sym_gnu_asm_expression] = STATE(4353), - [sym_field_expression] = STATE(4360), - [sym_compound_literal_expression] = STATE(4353), - [sym_parenthesized_expression] = STATE(4360), - [sym_char_literal] = STATE(4023), - [sym_concatenated_string] = STATE(4023), - [sym_string_literal] = STATE(2426), - [sym_null] = STATE(4353), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9636), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4353), - [sym_raw_string_literal] = STATE(2426), - [sym_co_await_expression] = STATE(4353), - [sym_new_expression] = STATE(4353), - [sym_delete_expression] = STATE(4353), - [sym_requires_clause] = STATE(4353), - [sym_requires_expression] = STATE(4353), - [sym_lambda_expression] = STATE(4353), - [sym_lambda_capture_specifier] = STATE(7284), - [sym_fold_expression] = STATE(4353), - [sym_parameter_pack_expansion] = STATE(4353), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4360), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4360), - [sym_semgrep_ellipsis] = STATE(4358), - [sym_deep_ellipsis] = STATE(4358), - [sym_identifier] = ACTIONS(2941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5070), - [anon_sym_LPAREN2] = ACTIONS(4960), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(4960), - [anon_sym_AMP_AMP] = ACTIONS(4960), - [anon_sym_AMP] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4962), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(4960), - [anon_sym_LBRACK] = ACTIONS(4960), - [sym_primitive_type] = ACTIONS(2951), - [anon_sym_not] = ACTIONS(2943), - [anon_sym_compl] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(5072), - [anon_sym_PLUS_PLUS] = ACTIONS(5072), - [anon_sym_sizeof] = ACTIONS(2953), - [anon_sym___alignof__] = ACTIONS(2955), - [anon_sym___alignof] = ACTIONS(2955), - [anon_sym__alignof] = ACTIONS(2955), - [anon_sym_alignof] = ACTIONS(2955), - [anon_sym__Alignof] = ACTIONS(2955), - [anon_sym_offsetof] = ACTIONS(2957), - [anon_sym__Generic] = ACTIONS(2959), - [anon_sym_asm] = ACTIONS(2961), - [anon_sym___asm__] = ACTIONS(2961), - [sym_number_literal] = ACTIONS(2963), - [anon_sym_L_SQUOTE] = ACTIONS(2965), - [anon_sym_u_SQUOTE] = ACTIONS(2965), - [anon_sym_U_SQUOTE] = ACTIONS(2965), - [anon_sym_u8_SQUOTE] = ACTIONS(2965), - [anon_sym_SQUOTE] = ACTIONS(2965), - [anon_sym_L_DQUOTE] = ACTIONS(2967), - [anon_sym_u_DQUOTE] = ACTIONS(2967), - [anon_sym_U_DQUOTE] = ACTIONS(2967), - [anon_sym_u8_DQUOTE] = ACTIONS(2967), - [anon_sym_DQUOTE] = ACTIONS(2967), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2971), - [anon_sym_nullptr] = ACTIONS(2971), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2973), - [anon_sym_R_DQUOTE] = ACTIONS(2975), - [anon_sym_LR_DQUOTE] = ACTIONS(2975), - [anon_sym_uR_DQUOTE] = ACTIONS(2975), - [anon_sym_UR_DQUOTE] = ACTIONS(2975), - [anon_sym_u8R_DQUOTE] = ACTIONS(2975), - [anon_sym_co_await] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2979), - [anon_sym_requires] = ACTIONS(2981), - [sym_this] = ACTIONS(2969), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2983), - [sym_semgrep_named_ellipsis] = ACTIONS(2985), - }, - [1177] = { - [sym_expression] = STATE(3867), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_unary_left_fold] = STATE(9658), - [sym_unary_right_fold] = STATE(9658), - [sym_binary_fold] = STATE(9658), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2121), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), - }, - [1178] = { - [sym_expression] = STATE(5386), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4036), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4036), - [sym_call_expression] = STATE(4036), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4036), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4036), - [sym_initializer_list] = STATE(8184), - [sym_char_literal] = STATE(5772), - [sym_concatenated_string] = STATE(5772), - [sym_string_literal] = STATE(4262), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(4262), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4036), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4036), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5038), - [anon_sym_BANG] = ACTIONS(4035), - [anon_sym_TILDE] = ACTIONS(4035), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(4037), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_default] = ACTIONS(5074), - [anon_sym_not] = ACTIONS(4033), - [anon_sym_compl] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(5044), - [anon_sym_PLUS_PLUS] = ACTIONS(5044), - [anon_sym_sizeof] = ACTIONS(4039), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(4041), - [anon_sym_L_SQUOTE] = ACTIONS(4043), - [anon_sym_u_SQUOTE] = ACTIONS(4043), - [anon_sym_U_SQUOTE] = ACTIONS(4043), - [anon_sym_u8_SQUOTE] = ACTIONS(4043), - [anon_sym_SQUOTE] = ACTIONS(4043), - [anon_sym_L_DQUOTE] = ACTIONS(4045), - [anon_sym_u_DQUOTE] = ACTIONS(4045), - [anon_sym_U_DQUOTE] = ACTIONS(4045), - [anon_sym_u8_DQUOTE] = ACTIONS(4045), - [anon_sym_DQUOTE] = ACTIONS(4045), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(5076), - [anon_sym_R_DQUOTE] = ACTIONS(4049), - [anon_sym_LR_DQUOTE] = ACTIONS(4049), - [anon_sym_uR_DQUOTE] = ACTIONS(4049), - [anon_sym_UR_DQUOTE] = ACTIONS(4049), - [anon_sym_u8R_DQUOTE] = ACTIONS(4049), - [anon_sym_co_await] = ACTIONS(4051), - [anon_sym_new] = ACTIONS(4053), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), - }, - [1179] = { - [sym_expression] = STATE(5580), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_lambda_default_capture] = STATE(9341), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1238] = { + [sym_expression] = STATE(5137), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(8795), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5078), - [anon_sym_EQ] = ACTIONS(4958), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -220119,7 +215812,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -220133,486 +215826,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1180] = { - [sym_expression] = STATE(3821), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_unary_left_fold] = STATE(9916), - [sym_unary_right_fold] = STATE(9916), - [sym_binary_fold] = STATE(9916), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2121), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), - }, - [1181] = { - [sym_expression] = STATE(3794), - [sym_expression_not_binary] = STATE(4050), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9276), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [sym_identifier] = ACTIONS(2854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(4960), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(4960), - [anon_sym_AMP_AMP] = ACTIONS(4960), - [anon_sym_AMP] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4962), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(4960), - [anon_sym_LBRACK] = ACTIONS(4960), - [sym_primitive_type] = ACTIONS(2858), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), - }, - [1182] = { - [sym_expression] = STATE(5391), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4036), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4036), - [sym_call_expression] = STATE(4036), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4036), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4036), - [sym_initializer_list] = STATE(8131), - [sym_char_literal] = STATE(5772), - [sym_concatenated_string] = STATE(5772), - [sym_string_literal] = STATE(4262), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(4262), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4036), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4036), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5038), - [anon_sym_BANG] = ACTIONS(4035), - [anon_sym_TILDE] = ACTIONS(4035), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(4037), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_default] = ACTIONS(5080), - [anon_sym_not] = ACTIONS(4033), - [anon_sym_compl] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(5044), - [anon_sym_PLUS_PLUS] = ACTIONS(5044), - [anon_sym_sizeof] = ACTIONS(4039), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(4041), - [anon_sym_L_SQUOTE] = ACTIONS(4043), - [anon_sym_u_SQUOTE] = ACTIONS(4043), - [anon_sym_U_SQUOTE] = ACTIONS(4043), - [anon_sym_u8_SQUOTE] = ACTIONS(4043), - [anon_sym_SQUOTE] = ACTIONS(4043), - [anon_sym_L_DQUOTE] = ACTIONS(4045), - [anon_sym_u_DQUOTE] = ACTIONS(4045), - [anon_sym_U_DQUOTE] = ACTIONS(4045), - [anon_sym_u8_DQUOTE] = ACTIONS(4045), - [anon_sym_DQUOTE] = ACTIONS(4045), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(5082), - [anon_sym_R_DQUOTE] = ACTIONS(4049), - [anon_sym_LR_DQUOTE] = ACTIONS(4049), - [anon_sym_uR_DQUOTE] = ACTIONS(4049), - [anon_sym_UR_DQUOTE] = ACTIONS(4049), - [anon_sym_u8R_DQUOTE] = ACTIONS(4049), - [anon_sym_co_await] = ACTIONS(4051), - [anon_sym_new] = ACTIONS(4053), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), - }, - [1183] = { - [sym_expression] = STATE(5527), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4036), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4036), - [sym_call_expression] = STATE(4036), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4036), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4036), - [sym_char_literal] = STATE(5772), - [sym_concatenated_string] = STATE(5772), - [sym_string_literal] = STATE(4262), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(4262), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4036), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4036), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(4960), - [anon_sym_BANG] = ACTIONS(4035), - [anon_sym_TILDE] = ACTIONS(4035), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(4960), - [anon_sym_AMP_AMP] = ACTIONS(4960), - [anon_sym_AMP] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4962), - [anon_sym_COLON_COLON] = ACTIONS(4037), - [anon_sym_LBRACE] = ACTIONS(4960), - [anon_sym_LBRACK] = ACTIONS(4960), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4033), - [anon_sym_compl] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(5044), - [anon_sym_PLUS_PLUS] = ACTIONS(5044), - [anon_sym_sizeof] = ACTIONS(4039), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(4041), - [anon_sym_L_SQUOTE] = ACTIONS(4043), - [anon_sym_u_SQUOTE] = ACTIONS(4043), - [anon_sym_U_SQUOTE] = ACTIONS(4043), - [anon_sym_u8_SQUOTE] = ACTIONS(4043), - [anon_sym_SQUOTE] = ACTIONS(4043), - [anon_sym_L_DQUOTE] = ACTIONS(4045), - [anon_sym_u_DQUOTE] = ACTIONS(4045), - [anon_sym_U_DQUOTE] = ACTIONS(4045), - [anon_sym_u8_DQUOTE] = ACTIONS(4045), - [anon_sym_DQUOTE] = ACTIONS(4045), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4047), - [anon_sym_R_DQUOTE] = ACTIONS(4049), - [anon_sym_LR_DQUOTE] = ACTIONS(4049), - [anon_sym_uR_DQUOTE] = ACTIONS(4049), - [anon_sym_UR_DQUOTE] = ACTIONS(4049), - [anon_sym_u8R_DQUOTE] = ACTIONS(4049), - [anon_sym_co_await] = ACTIONS(4051), - [anon_sym_new] = ACTIONS(4053), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), - }, - [1184] = { - [sym_expression] = STATE(5300), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(4960), + [1239] = { + [sym_expression] = STATE(5425), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(4960), - [anon_sym_AMP_AMP] = ACTIONS(4960), - [anon_sym_AMP] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4962), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(4960), - [anon_sym_LBRACK] = ACTIONS(4960), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -220643,8 +215913,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5110), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -220658,176 +215929,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1185] = { - [sym_expression] = STATE(3853), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_unary_left_fold] = STATE(10545), - [sym_unary_right_fold] = STATE(10545), - [sym_binary_fold] = STATE(10545), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2121), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), - }, - [1186] = { - [sym_expression] = STATE(5422), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4036), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4036), - [sym_call_expression] = STATE(4036), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4036), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4036), - [sym_initializer_list] = STATE(8149), - [sym_char_literal] = STATE(5772), - [sym_concatenated_string] = STATE(5772), - [sym_string_literal] = STATE(4262), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(4262), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4036), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4036), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5038), - [anon_sym_BANG] = ACTIONS(4035), - [anon_sym_TILDE] = ACTIONS(4035), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(4037), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_default] = ACTIONS(5084), - [anon_sym_not] = ACTIONS(4033), - [anon_sym_compl] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(5044), - [anon_sym_PLUS_PLUS] = ACTIONS(5044), - [anon_sym_sizeof] = ACTIONS(4039), + [1240] = { + [sym_expression] = STATE(5403), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_COLON] = ACTIONS(5112), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -220837,207 +216001,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(4041), - [anon_sym_L_SQUOTE] = ACTIONS(4043), - [anon_sym_u_SQUOTE] = ACTIONS(4043), - [anon_sym_U_SQUOTE] = ACTIONS(4043), - [anon_sym_u8_SQUOTE] = ACTIONS(4043), - [anon_sym_SQUOTE] = ACTIONS(4043), - [anon_sym_L_DQUOTE] = ACTIONS(4045), - [anon_sym_u_DQUOTE] = ACTIONS(4045), - [anon_sym_U_DQUOTE] = ACTIONS(4045), - [anon_sym_u8_DQUOTE] = ACTIONS(4045), - [anon_sym_DQUOTE] = ACTIONS(4045), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(5086), - [anon_sym_R_DQUOTE] = ACTIONS(4049), - [anon_sym_LR_DQUOTE] = ACTIONS(4049), - [anon_sym_uR_DQUOTE] = ACTIONS(4049), - [anon_sym_UR_DQUOTE] = ACTIONS(4049), - [anon_sym_u8R_DQUOTE] = ACTIONS(4049), - [anon_sym_co_await] = ACTIONS(4051), - [anon_sym_new] = ACTIONS(4053), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1187] = { - [sym_expression] = STATE(3875), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_unary_left_fold] = STATE(10516), - [sym_unary_right_fold] = STATE(10516), - [sym_binary_fold] = STATE(10516), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2121), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), + [1241] = { + [sym_expression] = STATE(2946), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(5114), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1188] = { - [sym_expression] = STATE(5580), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_lambda_default_capture] = STATE(9341), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(4954), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5088), - [anon_sym_EQ] = ACTIONS(4958), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1242] = { + [sym_expression] = STATE(5568), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_COLON] = ACTIONS(5116), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -221064,1025 +216224,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1189] = { - [sym_expression] = STATE(3915), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_unary_left_fold] = STATE(10143), - [sym_unary_right_fold] = STATE(10143), - [sym_binary_fold] = STATE(10143), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2121), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), - }, - [1190] = { - [sym_expression] = STATE(3955), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_unary_left_fold] = STATE(10672), - [sym_unary_right_fold] = STATE(10672), - [sym_binary_fold] = STATE(10672), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2121), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), - }, - [1191] = { - [sym_expression] = STATE(3849), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_unary_left_fold] = STATE(9693), - [sym_unary_right_fold] = STATE(9693), - [sym_binary_fold] = STATE(9693), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2121), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), - }, - [1192] = { - [sym_expression] = STATE(3857), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_unary_left_fold] = STATE(10159), - [sym_unary_right_fold] = STATE(10159), - [sym_binary_fold] = STATE(10159), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2121), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), - }, - [1193] = { - [sym_expression] = STATE(3871), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_unary_left_fold] = STATE(10656), - [sym_unary_right_fold] = STATE(10656), - [sym_binary_fold] = STATE(10656), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2121), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), - }, - [1194] = { - [sym_expression] = STATE(3877), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_unary_left_fold] = STATE(9678), - [sym_unary_right_fold] = STATE(9678), - [sym_binary_fold] = STATE(9678), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2121), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), - }, - [1195] = { - [sym_expression] = STATE(3880), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_unary_left_fold] = STATE(10359), - [sym_unary_right_fold] = STATE(10359), - [sym_binary_fold] = STATE(10359), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2121), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), - }, - [1196] = { - [sym_expression] = STATE(3882), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_unary_left_fold] = STATE(9880), - [sym_unary_right_fold] = STATE(9880), - [sym_binary_fold] = STATE(9880), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2121), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), - }, - [1197] = { - [sym_expression] = STATE(3884), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_unary_left_fold] = STATE(10055), - [sym_unary_right_fold] = STATE(10055), - [sym_binary_fold] = STATE(10055), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2121), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), - }, - [1198] = { - [sym_expression] = STATE(5571), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(8795), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1243] = { + [sym_expression] = STATE(5443), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5090), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -222113,8 +216325,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5118), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -222128,71 +216341,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1199] = { - [sym_expression] = STATE(5580), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_lambda_default_capture] = STATE(9341), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(4954), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5092), - [anon_sym_EQ] = ACTIONS(4958), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1244] = { + [sym_expression] = STATE(5461), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_COLON] = ACTIONS(5120), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -222219,87 +216430,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1200] = { - [sym_expression] = STATE(5593), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_lambda_default_capture] = STATE(9341), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(5014), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(4954), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5016), - [anon_sym_EQ] = ACTIONS(4958), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), + [1245] = { + [sym_expression] = STATE(2946), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(5122), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1246] = { + [sym_expression] = STATE(5402), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), [anon_sym_alignof] = ACTIONS(103), [anon_sym__Alignof] = ACTIONS(103), @@ -222323,8 +216634,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5124), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -222338,71 +216650,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1201] = { - [sym_expression] = STATE(6073), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(4960), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(4960), - [anon_sym_AMP_AMP] = ACTIONS(4960), - [anon_sym_AMP] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4962), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACE] = ACTIONS(4960), - [anon_sym_LBRACK] = ACTIONS(4960), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), + [1247] = { + [sym_expression] = STATE(2946), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(5126), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1248] = { + [sym_expression] = STATE(5398), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(5128), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -222429,85 +216842,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), + [anon_sym_co_await] = ACTIONS(157), [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1202] = { - [sym_expression] = STATE(6075), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(4960), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(4960), - [anon_sym_AMP_AMP] = ACTIONS(4960), - [anon_sym_AMP] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4962), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACE] = ACTIONS(4960), - [anon_sym_LBRACK] = ACTIONS(4960), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), + [1249] = { + [sym_expression] = STATE(5459), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -222533,291 +216943,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5130), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), + [anon_sym_co_await] = ACTIONS(157), [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1203] = { - [sym_expression] = STATE(4184), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(4960), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_TILDE] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2987), - [anon_sym_STAR] = ACTIONS(4960), - [anon_sym_AMP_AMP] = ACTIONS(4960), - [anon_sym_AMP] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4962), - [anon_sym_COLON_COLON] = ACTIONS(2991), - [anon_sym_LBRACE] = ACTIONS(4960), - [anon_sym_LBRACK] = ACTIONS(4960), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2987), - [anon_sym_compl] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(5096), - [anon_sym_PLUS_PLUS] = ACTIONS(5096), - [anon_sym_sizeof] = ACTIONS(2993), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2995), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2997), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1204] = { - [sym_expression] = STATE(4186), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(4960), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_TILDE] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2987), - [anon_sym_STAR] = ACTIONS(4960), - [anon_sym_AMP_AMP] = ACTIONS(4960), - [anon_sym_AMP] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4962), - [anon_sym_COLON_COLON] = ACTIONS(2991), - [anon_sym_LBRACE] = ACTIONS(4960), - [anon_sym_LBRACK] = ACTIONS(4960), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2987), - [anon_sym_compl] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(5096), - [anon_sym_PLUS_PLUS] = ACTIONS(5096), - [anon_sym_sizeof] = ACTIONS(2993), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2995), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2997), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1205] = { - [sym_expression] = STATE(5580), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_lambda_default_capture] = STATE(9341), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1250] = { + [sym_expression] = STATE(5399), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(5132), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5098), - [anon_sym_EQ] = ACTIONS(4958), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -222849,7 +217048,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -222863,66 +217062,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1206] = { - [sym_expression] = STATE(5580), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_lambda_default_capture] = STATE(9341), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1251] = { + [sym_expression] = STATE(5473), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5100), - [anon_sym_EQ] = ACTIONS(4958), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -222953,8 +217149,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5134), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -222968,66 +217165,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1207] = { - [sym_expression] = STATE(5580), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_lambda_default_capture] = STATE(9341), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1252] = { + [sym_expression] = STATE(5428), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(5136), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5102), - [anon_sym_EQ] = ACTIONS(4958), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -223059,7 +217254,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -223073,66 +217268,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1208] = { - [sym_expression] = STATE(5580), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_lambda_default_capture] = STATE(9341), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1253] = { + [sym_expression] = STATE(5487), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5016), - [anon_sym_EQ] = ACTIONS(4958), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -223163,8 +217355,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5138), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -223178,171 +217371,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1209] = { - [sym_expression] = STATE(3998), - [sym_expression_not_binary] = STATE(4505), - [sym_conditional_expression] = STATE(4488), - [sym_assignment_expression] = STATE(4488), - [sym_pointer_expression] = STATE(4524), - [sym_unary_expression] = STATE(4488), - [sym_binary_expression] = STATE(4505), - [sym_update_expression] = STATE(4488), - [sym_cast_expression] = STATE(4488), - [sym_sizeof_expression] = STATE(4488), - [sym_alignof_expression] = STATE(4488), - [sym_offsetof_expression] = STATE(4488), - [sym_generic_expression] = STATE(4488), - [sym_subscript_expression] = STATE(4524), - [sym_call_expression] = STATE(4524), - [sym_gnu_asm_expression] = STATE(4488), - [sym_field_expression] = STATE(4524), - [sym_compound_literal_expression] = STATE(4488), - [sym_parenthesized_expression] = STATE(4524), - [sym_char_literal] = STATE(4272), - [sym_concatenated_string] = STATE(4272), - [sym_string_literal] = STATE(2514), - [sym_null] = STATE(4488), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9512), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4488), - [sym_raw_string_literal] = STATE(2514), - [sym_co_await_expression] = STATE(4488), - [sym_new_expression] = STATE(4488), - [sym_delete_expression] = STATE(4488), - [sym_requires_clause] = STATE(4488), - [sym_requires_expression] = STATE(4488), - [sym_lambda_expression] = STATE(4488), - [sym_lambda_capture_specifier] = STATE(7259), - [sym_fold_expression] = STATE(4488), - [sym_parameter_pack_expansion] = STATE(4488), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4524), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4524), - [sym_semgrep_ellipsis] = STATE(4505), - [sym_deep_ellipsis] = STATE(4505), - [sym_identifier] = ACTIONS(2999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4972), - [anon_sym_LPAREN2] = ACTIONS(4960), - [anon_sym_BANG] = ACTIONS(3003), - [anon_sym_TILDE] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(4960), - [anon_sym_AMP_AMP] = ACTIONS(4960), - [anon_sym_AMP] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4962), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(4960), - [anon_sym_LBRACK] = ACTIONS(4960), - [sym_primitive_type] = ACTIONS(3009), - [anon_sym_not] = ACTIONS(3001), - [anon_sym_compl] = ACTIONS(3001), - [anon_sym_DASH_DASH] = ACTIONS(4974), - [anon_sym_PLUS_PLUS] = ACTIONS(4974), - [anon_sym_sizeof] = ACTIONS(3011), - [anon_sym___alignof__] = ACTIONS(3013), - [anon_sym___alignof] = ACTIONS(3013), - [anon_sym__alignof] = ACTIONS(3013), - [anon_sym_alignof] = ACTIONS(3013), - [anon_sym__Alignof] = ACTIONS(3013), - [anon_sym_offsetof] = ACTIONS(3015), - [anon_sym__Generic] = ACTIONS(3017), - [anon_sym_asm] = ACTIONS(3019), - [anon_sym___asm__] = ACTIONS(3019), - [sym_number_literal] = ACTIONS(3021), - [anon_sym_L_SQUOTE] = ACTIONS(3023), - [anon_sym_u_SQUOTE] = ACTIONS(3023), - [anon_sym_U_SQUOTE] = ACTIONS(3023), - [anon_sym_u8_SQUOTE] = ACTIONS(3023), - [anon_sym_SQUOTE] = ACTIONS(3023), - [anon_sym_L_DQUOTE] = ACTIONS(3025), - [anon_sym_u_DQUOTE] = ACTIONS(3025), - [anon_sym_U_DQUOTE] = ACTIONS(3025), - [anon_sym_u8_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [anon_sym_NULL] = ACTIONS(3029), - [anon_sym_nullptr] = ACTIONS(3029), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(3033), - [anon_sym_LR_DQUOTE] = ACTIONS(3033), - [anon_sym_uR_DQUOTE] = ACTIONS(3033), - [anon_sym_UR_DQUOTE] = ACTIONS(3033), - [anon_sym_u8R_DQUOTE] = ACTIONS(3033), - [anon_sym_co_await] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_requires] = ACTIONS(3039), - [sym_this] = ACTIONS(3027), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3041), - [sym_semgrep_named_ellipsis] = ACTIONS(3043), - }, - [1210] = { - [sym_expression] = STATE(5580), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_lambda_default_capture] = STATE(9341), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1254] = { + [sym_expression] = STATE(5436), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(5140), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5104), - [anon_sym_EQ] = ACTIONS(4958), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -223374,7 +217460,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -223388,66 +217474,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1211] = { - [sym_expression] = STATE(5580), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_lambda_default_capture] = STATE(9341), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1255] = { + [sym_expression] = STATE(5480), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5106), - [anon_sym_EQ] = ACTIONS(4958), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -223478,8 +217561,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5096), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -223493,486 +217577,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1212] = { - [sym_expression] = STATE(3845), - [sym_expression_not_binary] = STATE(4358), - [sym_conditional_expression] = STATE(4353), - [sym_assignment_expression] = STATE(4353), - [sym_pointer_expression] = STATE(4360), - [sym_unary_expression] = STATE(4353), - [sym_binary_expression] = STATE(4358), - [sym_update_expression] = STATE(4353), - [sym_cast_expression] = STATE(4353), - [sym_sizeof_expression] = STATE(4353), - [sym_alignof_expression] = STATE(4353), - [sym_offsetof_expression] = STATE(4353), - [sym_generic_expression] = STATE(4353), - [sym_subscript_expression] = STATE(4360), - [sym_call_expression] = STATE(4360), - [sym_gnu_asm_expression] = STATE(4353), - [sym_field_expression] = STATE(4360), - [sym_compound_literal_expression] = STATE(4353), - [sym_parenthesized_expression] = STATE(4360), - [sym_char_literal] = STATE(4023), - [sym_concatenated_string] = STATE(4023), - [sym_string_literal] = STATE(2426), - [sym_null] = STATE(4353), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9636), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4353), - [sym_raw_string_literal] = STATE(2426), - [sym_co_await_expression] = STATE(4353), - [sym_new_expression] = STATE(4353), - [sym_delete_expression] = STATE(4353), - [sym_requires_clause] = STATE(4353), - [sym_requires_expression] = STATE(4353), - [sym_lambda_expression] = STATE(4353), - [sym_lambda_capture_specifier] = STATE(7284), - [sym_fold_expression] = STATE(4353), - [sym_parameter_pack_expansion] = STATE(4353), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4360), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4360), - [sym_semgrep_ellipsis] = STATE(4358), - [sym_deep_ellipsis] = STATE(4358), - [sym_identifier] = ACTIONS(2941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5070), - [anon_sym_LPAREN2] = ACTIONS(4960), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(4960), - [anon_sym_AMP_AMP] = ACTIONS(4960), - [anon_sym_AMP] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4962), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(4960), - [anon_sym_LBRACK] = ACTIONS(4960), - [sym_primitive_type] = ACTIONS(2951), - [anon_sym_not] = ACTIONS(2943), - [anon_sym_compl] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(5072), - [anon_sym_PLUS_PLUS] = ACTIONS(5072), - [anon_sym_sizeof] = ACTIONS(2953), - [anon_sym___alignof__] = ACTIONS(2955), - [anon_sym___alignof] = ACTIONS(2955), - [anon_sym__alignof] = ACTIONS(2955), - [anon_sym_alignof] = ACTIONS(2955), - [anon_sym__Alignof] = ACTIONS(2955), - [anon_sym_offsetof] = ACTIONS(2957), - [anon_sym__Generic] = ACTIONS(2959), - [anon_sym_asm] = ACTIONS(2961), - [anon_sym___asm__] = ACTIONS(2961), - [sym_number_literal] = ACTIONS(2963), - [anon_sym_L_SQUOTE] = ACTIONS(2965), - [anon_sym_u_SQUOTE] = ACTIONS(2965), - [anon_sym_U_SQUOTE] = ACTIONS(2965), - [anon_sym_u8_SQUOTE] = ACTIONS(2965), - [anon_sym_SQUOTE] = ACTIONS(2965), - [anon_sym_L_DQUOTE] = ACTIONS(2967), - [anon_sym_u_DQUOTE] = ACTIONS(2967), - [anon_sym_U_DQUOTE] = ACTIONS(2967), - [anon_sym_u8_DQUOTE] = ACTIONS(2967), - [anon_sym_DQUOTE] = ACTIONS(2967), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2971), - [anon_sym_nullptr] = ACTIONS(2971), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2973), - [anon_sym_R_DQUOTE] = ACTIONS(2975), - [anon_sym_LR_DQUOTE] = ACTIONS(2975), - [anon_sym_uR_DQUOTE] = ACTIONS(2975), - [anon_sym_UR_DQUOTE] = ACTIONS(2975), - [anon_sym_u8R_DQUOTE] = ACTIONS(2975), - [anon_sym_co_await] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2979), - [anon_sym_requires] = ACTIONS(2981), - [sym_this] = ACTIONS(2969), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2983), - [sym_semgrep_named_ellipsis] = ACTIONS(2985), - }, - [1213] = { - [sym_expression] = STATE(3426), - [sym_expression_not_binary] = STATE(3786), - [sym_conditional_expression] = STATE(3784), - [sym_assignment_expression] = STATE(3784), - [sym_pointer_expression] = STATE(3787), - [sym_unary_expression] = STATE(3784), - [sym_binary_expression] = STATE(3786), - [sym_update_expression] = STATE(3784), - [sym_cast_expression] = STATE(3784), - [sym_sizeof_expression] = STATE(3784), - [sym_alignof_expression] = STATE(3784), - [sym_offsetof_expression] = STATE(3784), - [sym_generic_expression] = STATE(3784), - [sym_subscript_expression] = STATE(3787), - [sym_call_expression] = STATE(3787), - [sym_gnu_asm_expression] = STATE(3784), - [sym_field_expression] = STATE(3787), - [sym_compound_literal_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3787), - [sym_initializer_list] = STATE(3700), - [sym_char_literal] = STATE(3471), - [sym_concatenated_string] = STATE(3471), - [sym_string_literal] = STATE(2063), - [sym_null] = STATE(3784), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9229), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3784), - [sym_raw_string_literal] = STATE(2063), - [sym_co_await_expression] = STATE(3784), - [sym_new_expression] = STATE(3784), - [sym_delete_expression] = STATE(3784), - [sym_requires_clause] = STATE(3784), - [sym_requires_expression] = STATE(3784), - [sym_lambda_expression] = STATE(3784), - [sym_lambda_capture_specifier] = STATE(7253), - [sym_fold_expression] = STATE(3784), - [sym_parameter_pack_expansion] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3787), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3787), - [sym_semgrep_ellipsis] = STATE(3786), - [sym_deep_ellipsis] = STATE(3786), - [sym_identifier] = ACTIONS(5062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5064), - [anon_sym_LPAREN2] = ACTIONS(5108), - [anon_sym_BANG] = ACTIONS(2383), - [anon_sym_TILDE] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2389), - [anon_sym_not] = ACTIONS(2381), - [anon_sym_compl] = ACTIONS(2381), - [anon_sym_DASH_DASH] = ACTIONS(5066), - [anon_sym_PLUS_PLUS] = ACTIONS(5066), - [anon_sym_sizeof] = ACTIONS(2391), - [anon_sym___alignof__] = ACTIONS(2393), - [anon_sym___alignof] = ACTIONS(2393), - [anon_sym__alignof] = ACTIONS(2393), - [anon_sym_alignof] = ACTIONS(2393), - [anon_sym__Alignof] = ACTIONS(2393), - [anon_sym_offsetof] = ACTIONS(2395), - [anon_sym__Generic] = ACTIONS(2397), - [anon_sym_asm] = ACTIONS(2399), - [anon_sym___asm__] = ACTIONS(2399), - [sym_number_literal] = ACTIONS(2401), - [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(2405), - [anon_sym_u_DQUOTE] = ACTIONS(2405), - [anon_sym_U_DQUOTE] = ACTIONS(2405), - [anon_sym_u8_DQUOTE] = ACTIONS(2405), - [anon_sym_DQUOTE] = ACTIONS(2405), - [sym_true] = ACTIONS(2407), - [sym_false] = ACTIONS(2407), - [anon_sym_NULL] = ACTIONS(2409), - [anon_sym_nullptr] = ACTIONS(2409), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2411), - [anon_sym_R_DQUOTE] = ACTIONS(2413), - [anon_sym_LR_DQUOTE] = ACTIONS(2413), - [anon_sym_uR_DQUOTE] = ACTIONS(2413), - [anon_sym_UR_DQUOTE] = ACTIONS(2413), - [anon_sym_u8R_DQUOTE] = ACTIONS(2413), - [anon_sym_co_await] = ACTIONS(2415), - [anon_sym_new] = ACTIONS(2417), - [anon_sym_requires] = ACTIONS(2419), - [sym_this] = ACTIONS(2407), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2421), - [sym_semgrep_named_ellipsis] = ACTIONS(2423), - }, - [1214] = { - [sym_expression] = STATE(5097), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4036), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4036), - [sym_call_expression] = STATE(4036), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4036), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4036), - [sym_initializer_list] = STATE(5196), - [sym_char_literal] = STATE(5772), - [sym_concatenated_string] = STATE(5772), - [sym_string_literal] = STATE(4262), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(4262), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4036), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4036), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5038), - [anon_sym_BANG] = ACTIONS(4035), - [anon_sym_TILDE] = ACTIONS(4035), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(4037), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4033), - [anon_sym_compl] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(5044), - [anon_sym_PLUS_PLUS] = ACTIONS(5044), - [anon_sym_sizeof] = ACTIONS(4039), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(4041), - [anon_sym_L_SQUOTE] = ACTIONS(4043), - [anon_sym_u_SQUOTE] = ACTIONS(4043), - [anon_sym_U_SQUOTE] = ACTIONS(4043), - [anon_sym_u8_SQUOTE] = ACTIONS(4043), - [anon_sym_SQUOTE] = ACTIONS(4043), - [anon_sym_L_DQUOTE] = ACTIONS(4045), - [anon_sym_u_DQUOTE] = ACTIONS(4045), - [anon_sym_U_DQUOTE] = ACTIONS(4045), - [anon_sym_u8_DQUOTE] = ACTIONS(4045), - [anon_sym_DQUOTE] = ACTIONS(4045), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4047), - [anon_sym_R_DQUOTE] = ACTIONS(4049), - [anon_sym_LR_DQUOTE] = ACTIONS(4049), - [anon_sym_uR_DQUOTE] = ACTIONS(4049), - [anon_sym_UR_DQUOTE] = ACTIONS(4049), - [anon_sym_u8R_DQUOTE] = ACTIONS(4049), - [anon_sym_co_await] = ACTIONS(4051), - [anon_sym_new] = ACTIONS(4053), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), - }, - [1215] = { - [sym_expression] = STATE(5419), - [sym_expression_not_binary] = STATE(5540), - [sym_conditional_expression] = STATE(5537), - [sym_assignment_expression] = STATE(5537), - [sym_pointer_expression] = STATE(3745), - [sym_unary_expression] = STATE(5537), - [sym_binary_expression] = STATE(5540), - [sym_update_expression] = STATE(5537), - [sym_cast_expression] = STATE(5537), - [sym_sizeof_expression] = STATE(5537), - [sym_alignof_expression] = STATE(5537), - [sym_offsetof_expression] = STATE(5537), - [sym_generic_expression] = STATE(5537), - [sym_subscript_expression] = STATE(3745), - [sym_call_expression] = STATE(3745), - [sym_gnu_asm_expression] = STATE(5537), - [sym_field_expression] = STATE(3745), - [sym_compound_literal_expression] = STATE(5537), - [sym_parenthesized_expression] = STATE(3745), - [sym_initializer_list] = STATE(5562), - [sym_char_literal] = STATE(5453), - [sym_concatenated_string] = STATE(5453), - [sym_string_literal] = STATE(3936), - [sym_null] = STATE(5537), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9333), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5537), - [sym_raw_string_literal] = STATE(3936), - [sym_co_await_expression] = STATE(5537), - [sym_new_expression] = STATE(5537), - [sym_delete_expression] = STATE(5537), - [sym_requires_clause] = STATE(5537), - [sym_requires_expression] = STATE(5537), - [sym_lambda_expression] = STATE(5537), - [sym_lambda_capture_specifier] = STATE(7261), - [sym_fold_expression] = STATE(5537), - [sym_parameter_pack_expansion] = STATE(5537), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3745), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3745), - [sym_semgrep_ellipsis] = STATE(5540), - [sym_deep_ellipsis] = STATE(5540), - [sym_identifier] = ACTIONS(5032), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5034), - [anon_sym_LPAREN2] = ACTIONS(5112), - [anon_sym_BANG] = ACTIONS(3820), - [anon_sym_TILDE] = ACTIONS(3820), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(3822), - [anon_sym_LBRACE] = ACTIONS(3824), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3826), - [anon_sym_not] = ACTIONS(3818), - [anon_sym_compl] = ACTIONS(3818), - [anon_sym_DASH_DASH] = ACTIONS(5036), - [anon_sym_PLUS_PLUS] = ACTIONS(5036), - [anon_sym_sizeof] = ACTIONS(3828), - [anon_sym___alignof__] = ACTIONS(3830), - [anon_sym___alignof] = ACTIONS(3830), - [anon_sym__alignof] = ACTIONS(3830), - [anon_sym_alignof] = ACTIONS(3830), - [anon_sym__Alignof] = ACTIONS(3830), - [anon_sym_offsetof] = ACTIONS(3832), - [anon_sym__Generic] = ACTIONS(3834), - [anon_sym_asm] = ACTIONS(3836), - [anon_sym___asm__] = ACTIONS(3836), - [sym_number_literal] = ACTIONS(3838), - [anon_sym_L_SQUOTE] = ACTIONS(3840), - [anon_sym_u_SQUOTE] = ACTIONS(3840), - [anon_sym_U_SQUOTE] = ACTIONS(3840), - [anon_sym_u8_SQUOTE] = ACTIONS(3840), - [anon_sym_SQUOTE] = ACTIONS(3840), - [anon_sym_L_DQUOTE] = ACTIONS(3842), - [anon_sym_u_DQUOTE] = ACTIONS(3842), - [anon_sym_U_DQUOTE] = ACTIONS(3842), - [anon_sym_u8_DQUOTE] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym_true] = ACTIONS(3844), - [sym_false] = ACTIONS(3844), - [anon_sym_NULL] = ACTIONS(3846), - [anon_sym_nullptr] = ACTIONS(3846), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(3854), - [anon_sym_requires] = ACTIONS(3856), - [sym_this] = ACTIONS(3844), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3858), - [sym_semgrep_named_ellipsis] = ACTIONS(3860), - }, - [1216] = { - [sym_expression] = STATE(3008), - [sym_expression_not_binary] = STATE(3362), - [sym_conditional_expression] = STATE(3356), - [sym_assignment_expression] = STATE(3356), - [sym_pointer_expression] = STATE(3367), - [sym_unary_expression] = STATE(3356), - [sym_binary_expression] = STATE(3362), - [sym_update_expression] = STATE(3356), - [sym_cast_expression] = STATE(3356), - [sym_sizeof_expression] = STATE(3356), - [sym_alignof_expression] = STATE(3356), - [sym_offsetof_expression] = STATE(3356), - [sym_generic_expression] = STATE(3356), - [sym_subscript_expression] = STATE(3367), - [sym_call_expression] = STATE(3367), - [sym_gnu_asm_expression] = STATE(3356), - [sym_field_expression] = STATE(3367), - [sym_compound_literal_expression] = STATE(3356), - [sym_parenthesized_expression] = STATE(3367), - [sym_initializer_list] = STATE(3436), - [sym_char_literal] = STATE(3167), - [sym_concatenated_string] = STATE(3167), - [sym_string_literal] = STATE(1962), - [sym_null] = STATE(3356), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9141), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3356), - [sym_raw_string_literal] = STATE(1962), - [sym_co_await_expression] = STATE(3356), - [sym_new_expression] = STATE(3356), - [sym_delete_expression] = STATE(3356), - [sym_requires_clause] = STATE(3356), - [sym_requires_expression] = STATE(3356), - [sym_lambda_expression] = STATE(3356), - [sym_lambda_capture_specifier] = STATE(7329), - [sym_fold_expression] = STATE(3356), - [sym_parameter_pack_expansion] = STATE(3356), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3367), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3367), - [sym_semgrep_ellipsis] = STATE(3362), - [sym_deep_ellipsis] = STATE(3362), - [sym_identifier] = ACTIONS(5048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5050), - [anon_sym_LPAREN2] = ACTIONS(5114), - [anon_sym_BANG] = ACTIONS(2285), - [anon_sym_TILDE] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2283), - [anon_sym_PLUS] = ACTIONS(2283), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), + [1256] = { + [sym_expression] = STATE(2946), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(3049), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(5142), [sym_primitive_type] = ACTIONS(2291), - [anon_sym_not] = ACTIONS(2283), - [anon_sym_compl] = ACTIONS(2283), - [anon_sym_DASH_DASH] = ACTIONS(5052), - [anon_sym_PLUS_PLUS] = ACTIONS(5052), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), [anon_sym_sizeof] = ACTIONS(2293), [anon_sym___alignof__] = ACTIONS(2295), [anon_sym___alignof] = ACTIONS(2295), @@ -224000,7 +217666,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(2315), [anon_sym_R_DQUOTE] = ACTIONS(2317), [anon_sym_LR_DQUOTE] = ACTIONS(2317), @@ -224014,65 +217680,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1217] = { - [sym_expression] = STATE(5726), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10499), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_RPAREN] = ACTIONS(5118), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1257] = { + [sym_expression] = STATE(5495), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -224103,8 +217767,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5144), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -224118,65 +217783,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1218] = { - [sym_expression] = STATE(5732), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9869), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_RPAREN] = ACTIONS(5120), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1258] = { + [sym_expression] = STATE(5437), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(5146), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -224208,7 +217872,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -224222,65 +217886,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1219] = { - [sym_expression] = STATE(5999), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9746), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1259] = { + [sym_expression] = STATE(5503), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -224311,8 +217973,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5148), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -224326,70 +217989,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1220] = { - [sym_expression] = STATE(5735), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9872), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_RPAREN] = ACTIONS(5122), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1260] = { + [sym_expression] = STATE(5515), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_COLON] = ACTIONS(5150), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -224416,287 +218078,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1221] = { - [sym_expression] = STATE(5188), - [sym_expression_not_binary] = STATE(5370), - [sym_conditional_expression] = STATE(5364), - [sym_assignment_expression] = STATE(5364), - [sym_pointer_expression] = STATE(3376), - [sym_unary_expression] = STATE(5364), - [sym_binary_expression] = STATE(5370), - [sym_update_expression] = STATE(5364), - [sym_cast_expression] = STATE(5364), - [sym_sizeof_expression] = STATE(5364), - [sym_alignof_expression] = STATE(5364), - [sym_offsetof_expression] = STATE(5364), - [sym_generic_expression] = STATE(5364), - [sym_subscript_expression] = STATE(3376), - [sym_call_expression] = STATE(3376), - [sym_gnu_asm_expression] = STATE(5364), - [sym_field_expression] = STATE(3376), - [sym_compound_literal_expression] = STATE(5364), - [sym_parenthesized_expression] = STATE(3376), - [sym_initializer_list] = STATE(5393), - [sym_char_literal] = STATE(5241), - [sym_concatenated_string] = STATE(5241), - [sym_string_literal] = STATE(3576), - [sym_null] = STATE(5364), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9412), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5364), - [sym_raw_string_literal] = STATE(3576), - [sym_co_await_expression] = STATE(5364), - [sym_new_expression] = STATE(5364), - [sym_delete_expression] = STATE(5364), - [sym_requires_clause] = STATE(5364), - [sym_requires_expression] = STATE(5364), - [sym_lambda_expression] = STATE(5364), - [sym_lambda_capture_specifier] = STATE(7332), - [sym_fold_expression] = STATE(5364), - [sym_parameter_pack_expansion] = STATE(5364), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3376), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3376), - [sym_semgrep_ellipsis] = STATE(5370), - [sym_deep_ellipsis] = STATE(5370), - [sym_identifier] = ACTIONS(4984), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), - [anon_sym_LPAREN2] = ACTIONS(5124), - [anon_sym_BANG] = ACTIONS(3774), - [anon_sym_TILDE] = ACTIONS(3774), - [anon_sym_DASH] = ACTIONS(3772), - [anon_sym_PLUS] = ACTIONS(3772), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(3776), - [anon_sym_LBRACE] = ACTIONS(3778), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3780), - [anon_sym_not] = ACTIONS(3772), - [anon_sym_compl] = ACTIONS(3772), - [anon_sym_DASH_DASH] = ACTIONS(4988), - [anon_sym_PLUS_PLUS] = ACTIONS(4988), - [anon_sym_sizeof] = ACTIONS(3782), - [anon_sym___alignof__] = ACTIONS(3784), - [anon_sym___alignof] = ACTIONS(3784), - [anon_sym__alignof] = ACTIONS(3784), - [anon_sym_alignof] = ACTIONS(3784), - [anon_sym__Alignof] = ACTIONS(3784), - [anon_sym_offsetof] = ACTIONS(3786), - [anon_sym__Generic] = ACTIONS(3788), - [anon_sym_asm] = ACTIONS(3790), - [anon_sym___asm__] = ACTIONS(3790), - [sym_number_literal] = ACTIONS(3792), - [anon_sym_L_SQUOTE] = ACTIONS(3794), - [anon_sym_u_SQUOTE] = ACTIONS(3794), - [anon_sym_U_SQUOTE] = ACTIONS(3794), - [anon_sym_u8_SQUOTE] = ACTIONS(3794), - [anon_sym_SQUOTE] = ACTIONS(3794), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_true] = ACTIONS(3798), - [sym_false] = ACTIONS(3798), - [anon_sym_NULL] = ACTIONS(3800), - [anon_sym_nullptr] = ACTIONS(3800), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3802), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - [anon_sym_co_await] = ACTIONS(3806), - [anon_sym_new] = ACTIONS(3808), - [anon_sym_requires] = ACTIONS(3810), - [sym_this] = ACTIONS(3798), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3812), - [sym_semgrep_named_ellipsis] = ACTIONS(3814), - }, - [1222] = { - [sym_expression] = STATE(3048), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_COMMA] = ACTIONS(5126), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5126), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1223] = { - [sym_expression] = STATE(5208), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(5290), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1261] = { + [sym_expression] = STATE(5507), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -224727,8 +218179,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5152), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -224742,273 +218195,269 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1224] = { - [sym_expression] = STATE(5727), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_initializer_list] = STATE(6119), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9595), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [sym_identifier] = ACTIONS(4059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_LBRACE] = ACTIONS(4061), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4063), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), + [1262] = { + [sym_expression] = STATE(2946), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(5154), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1225] = { - [sym_expression] = STATE(4264), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_initializer_list] = STATE(4608), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), + [1263] = { + [sym_expression] = STATE(4995), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3922), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3922), + [sym_call_expression] = STATE(3922), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3922), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3922), + [sym_char_literal] = STATE(5203), + [sym_concatenated_string] = STATE(5203), + [sym_string_literal] = STATE(3965), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3965), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3922), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3922), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_TILDE] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_SEMI] = ACTIONS(5156), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(5090), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4200), + [anon_sym_compl] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_sizeof] = ACTIONS(4206), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(4208), + [anon_sym_L_SQUOTE] = ACTIONS(4210), + [anon_sym_u_SQUOTE] = ACTIONS(4210), + [anon_sym_U_SQUOTE] = ACTIONS(4210), + [anon_sym_u8_SQUOTE] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4210), + [anon_sym_L_DQUOTE] = ACTIONS(4212), + [anon_sym_u_DQUOTE] = ACTIONS(4212), + [anon_sym_U_DQUOTE] = ACTIONS(4212), + [anon_sym_u8_DQUOTE] = ACTIONS(4212), + [anon_sym_DQUOTE] = ACTIONS(4212), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4214), + [anon_sym_R_DQUOTE] = ACTIONS(4216), + [anon_sym_LR_DQUOTE] = ACTIONS(4216), + [anon_sym_uR_DQUOTE] = ACTIONS(4216), + [anon_sym_UR_DQUOTE] = ACTIONS(4216), + [anon_sym_u8R_DQUOTE] = ACTIONS(4216), + [anon_sym_co_await] = ACTIONS(4218), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1226] = { - [sym_expression] = STATE(5762), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(10003), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_RPAREN] = ACTIONS(5128), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1264] = { + [sym_expression] = STATE(5514), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -225039,8 +218488,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5158), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -225054,65 +218504,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1227] = { - [sym_expression] = STATE(6006), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(10063), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1265] = { + [sym_expression] = STATE(5452), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(5160), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -225144,7 +218593,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -225158,65 +218607,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1228] = { - [sym_expression] = STATE(5902), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9860), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1266] = { + [sym_expression] = STATE(5532), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(5162), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -225248,7 +218696,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -225262,70 +218710,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1229] = { - [sym_expression] = STATE(5842), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9151), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1267] = { + [sym_expression] = STATE(2946), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(5164), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1268] = { + [sym_expression] = STATE(5549), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_COLON] = ACTIONS(5166), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -225352,84 +218902,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1230] = { - [sym_expression] = STATE(5499), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4036), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4036), - [sym_call_expression] = STATE(4036), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4036), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4036), - [sym_initializer_list] = STATE(8565), - [sym_char_literal] = STATE(5772), - [sym_concatenated_string] = STATE(5772), - [sym_string_literal] = STATE(4262), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(4262), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4036), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4036), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5038), - [anon_sym_BANG] = ACTIONS(4035), - [anon_sym_TILDE] = ACTIONS(4035), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(4037), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4033), - [anon_sym_compl] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(5044), - [anon_sym_PLUS_PLUS] = ACTIONS(5044), - [anon_sym_sizeof] = ACTIONS(4039), + [1269] = { + [sym_expression] = STATE(5375), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(5168), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -225439,96 +218988,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(4041), - [anon_sym_L_SQUOTE] = ACTIONS(4043), - [anon_sym_u_SQUOTE] = ACTIONS(4043), - [anon_sym_U_SQUOTE] = ACTIONS(4043), - [anon_sym_u8_SQUOTE] = ACTIONS(4043), - [anon_sym_SQUOTE] = ACTIONS(4043), - [anon_sym_L_DQUOTE] = ACTIONS(4045), - [anon_sym_u_DQUOTE] = ACTIONS(4045), - [anon_sym_U_DQUOTE] = ACTIONS(4045), - [anon_sym_u8_DQUOTE] = ACTIONS(4045), - [anon_sym_DQUOTE] = ACTIONS(4045), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4047), - [anon_sym_R_DQUOTE] = ACTIONS(4049), - [anon_sym_LR_DQUOTE] = ACTIONS(4049), - [anon_sym_uR_DQUOTE] = ACTIONS(4049), - [anon_sym_UR_DQUOTE] = ACTIONS(4049), - [anon_sym_u8R_DQUOTE] = ACTIONS(4049), - [anon_sym_co_await] = ACTIONS(4051), - [anon_sym_new] = ACTIONS(4053), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1231] = { - [sym_expression] = STATE(5837), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9364), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1270] = { + [sym_expression] = STATE(5480), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -225559,8 +219106,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5170), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -225574,169 +219122,476 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1232] = { - [sym_expression] = STATE(3813), - [sym_expression_not_binary] = STATE(4358), - [sym_conditional_expression] = STATE(4353), - [sym_assignment_expression] = STATE(4353), - [sym_pointer_expression] = STATE(4360), - [sym_unary_expression] = STATE(4353), - [sym_binary_expression] = STATE(4358), - [sym_update_expression] = STATE(4353), - [sym_cast_expression] = STATE(4353), - [sym_sizeof_expression] = STATE(4353), - [sym_alignof_expression] = STATE(4353), - [sym_offsetof_expression] = STATE(4353), - [sym_generic_expression] = STATE(4353), - [sym_subscript_expression] = STATE(4360), - [sym_call_expression] = STATE(4360), - [sym_gnu_asm_expression] = STATE(4353), - [sym_field_expression] = STATE(4360), - [sym_compound_literal_expression] = STATE(4353), - [sym_parenthesized_expression] = STATE(4360), - [sym_initializer_list] = STATE(4221), - [sym_char_literal] = STATE(4023), - [sym_concatenated_string] = STATE(4023), - [sym_string_literal] = STATE(2426), - [sym_null] = STATE(4353), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9636), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4353), - [sym_raw_string_literal] = STATE(2426), - [sym_co_await_expression] = STATE(4353), - [sym_new_expression] = STATE(4353), - [sym_delete_expression] = STATE(4353), - [sym_requires_clause] = STATE(4353), - [sym_requires_expression] = STATE(4353), - [sym_lambda_expression] = STATE(4353), - [sym_lambda_capture_specifier] = STATE(7284), - [sym_fold_expression] = STATE(4353), - [sym_parameter_pack_expansion] = STATE(4353), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4360), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4360), - [sym_semgrep_ellipsis] = STATE(4358), - [sym_deep_ellipsis] = STATE(4358), - [sym_identifier] = ACTIONS(2941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5070), - [anon_sym_LPAREN2] = ACTIONS(5130), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2951), - [anon_sym_not] = ACTIONS(2943), - [anon_sym_compl] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(5072), - [anon_sym_PLUS_PLUS] = ACTIONS(5072), - [anon_sym_sizeof] = ACTIONS(2953), - [anon_sym___alignof__] = ACTIONS(2955), - [anon_sym___alignof] = ACTIONS(2955), - [anon_sym__alignof] = ACTIONS(2955), - [anon_sym_alignof] = ACTIONS(2955), - [anon_sym__Alignof] = ACTIONS(2955), - [anon_sym_offsetof] = ACTIONS(2957), - [anon_sym__Generic] = ACTIONS(2959), - [anon_sym_asm] = ACTIONS(2961), - [anon_sym___asm__] = ACTIONS(2961), - [sym_number_literal] = ACTIONS(2963), - [anon_sym_L_SQUOTE] = ACTIONS(2965), - [anon_sym_u_SQUOTE] = ACTIONS(2965), - [anon_sym_U_SQUOTE] = ACTIONS(2965), - [anon_sym_u8_SQUOTE] = ACTIONS(2965), - [anon_sym_SQUOTE] = ACTIONS(2965), - [anon_sym_L_DQUOTE] = ACTIONS(2967), - [anon_sym_u_DQUOTE] = ACTIONS(2967), - [anon_sym_U_DQUOTE] = ACTIONS(2967), - [anon_sym_u8_DQUOTE] = ACTIONS(2967), - [anon_sym_DQUOTE] = ACTIONS(2967), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2971), - [anon_sym_nullptr] = ACTIONS(2971), + [1271] = { + [sym_expression] = STATE(2946), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(5172), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2973), - [anon_sym_R_DQUOTE] = ACTIONS(2975), - [anon_sym_LR_DQUOTE] = ACTIONS(2975), - [anon_sym_uR_DQUOTE] = ACTIONS(2975), - [anon_sym_UR_DQUOTE] = ACTIONS(2975), - [anon_sym_u8R_DQUOTE] = ACTIONS(2975), - [anon_sym_co_await] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2979), - [anon_sym_requires] = ACTIONS(2981), - [sym_this] = ACTIONS(2969), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2983), - [sym_semgrep_named_ellipsis] = ACTIONS(2985), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1233] = { - [sym_expression] = STATE(5767), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9722), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_RPAREN] = ACTIONS(5132), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1272] = { + [sym_expression] = STATE(2946), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(5174), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1273] = { + [sym_expression] = STATE(4995), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3922), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3922), + [sym_call_expression] = STATE(3922), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3922), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3922), + [sym_char_literal] = STATE(5203), + [sym_concatenated_string] = STATE(5203), + [sym_string_literal] = STATE(3965), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3965), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3922), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3922), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_TILDE] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_SEMI] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(5090), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4200), + [anon_sym_compl] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_sizeof] = ACTIONS(4206), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(4208), + [anon_sym_L_SQUOTE] = ACTIONS(4210), + [anon_sym_u_SQUOTE] = ACTIONS(4210), + [anon_sym_U_SQUOTE] = ACTIONS(4210), + [anon_sym_u8_SQUOTE] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4210), + [anon_sym_L_DQUOTE] = ACTIONS(4212), + [anon_sym_u_DQUOTE] = ACTIONS(4212), + [anon_sym_U_DQUOTE] = ACTIONS(4212), + [anon_sym_u8_DQUOTE] = ACTIONS(4212), + [anon_sym_DQUOTE] = ACTIONS(4212), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4214), + [anon_sym_R_DQUOTE] = ACTIONS(4216), + [anon_sym_LR_DQUOTE] = ACTIONS(4216), + [anon_sym_uR_DQUOTE] = ACTIONS(4216), + [anon_sym_UR_DQUOTE] = ACTIONS(4216), + [anon_sym_u8R_DQUOTE] = ACTIONS(4216), + [anon_sym_co_await] = ACTIONS(4218), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), + }, + [1274] = { + [sym_expression] = STATE(2946), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(5178), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1275] = { + [sym_expression] = STATE(5374), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(5180), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -225768,7 +219623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -225782,169 +219637,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1234] = { - [sym_expression] = STATE(3982), - [sym_expression_not_binary] = STATE(4505), - [sym_conditional_expression] = STATE(4488), - [sym_assignment_expression] = STATE(4488), - [sym_pointer_expression] = STATE(4524), - [sym_unary_expression] = STATE(4488), - [sym_binary_expression] = STATE(4505), - [sym_update_expression] = STATE(4488), - [sym_cast_expression] = STATE(4488), - [sym_sizeof_expression] = STATE(4488), - [sym_alignof_expression] = STATE(4488), - [sym_offsetof_expression] = STATE(4488), - [sym_generic_expression] = STATE(4488), - [sym_subscript_expression] = STATE(4524), - [sym_call_expression] = STATE(4524), - [sym_gnu_asm_expression] = STATE(4488), - [sym_field_expression] = STATE(4524), - [sym_compound_literal_expression] = STATE(4488), - [sym_parenthesized_expression] = STATE(4524), - [sym_initializer_list] = STATE(4431), - [sym_char_literal] = STATE(4272), - [sym_concatenated_string] = STATE(4272), - [sym_string_literal] = STATE(2514), - [sym_null] = STATE(4488), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9512), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4488), - [sym_raw_string_literal] = STATE(2514), - [sym_co_await_expression] = STATE(4488), - [sym_new_expression] = STATE(4488), - [sym_delete_expression] = STATE(4488), - [sym_requires_clause] = STATE(4488), - [sym_requires_expression] = STATE(4488), - [sym_lambda_expression] = STATE(4488), - [sym_lambda_capture_specifier] = STATE(7259), - [sym_fold_expression] = STATE(4488), - [sym_parameter_pack_expansion] = STATE(4488), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4524), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4524), - [sym_semgrep_ellipsis] = STATE(4505), - [sym_deep_ellipsis] = STATE(4505), - [sym_identifier] = ACTIONS(2999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4972), - [anon_sym_LPAREN2] = ACTIONS(5134), - [anon_sym_BANG] = ACTIONS(3003), - [anon_sym_TILDE] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3009), - [anon_sym_not] = ACTIONS(3001), - [anon_sym_compl] = ACTIONS(3001), - [anon_sym_DASH_DASH] = ACTIONS(4974), - [anon_sym_PLUS_PLUS] = ACTIONS(4974), - [anon_sym_sizeof] = ACTIONS(3011), - [anon_sym___alignof__] = ACTIONS(3013), - [anon_sym___alignof] = ACTIONS(3013), - [anon_sym__alignof] = ACTIONS(3013), - [anon_sym_alignof] = ACTIONS(3013), - [anon_sym__Alignof] = ACTIONS(3013), - [anon_sym_offsetof] = ACTIONS(3015), - [anon_sym__Generic] = ACTIONS(3017), - [anon_sym_asm] = ACTIONS(3019), - [anon_sym___asm__] = ACTIONS(3019), - [sym_number_literal] = ACTIONS(3021), - [anon_sym_L_SQUOTE] = ACTIONS(3023), - [anon_sym_u_SQUOTE] = ACTIONS(3023), - [anon_sym_U_SQUOTE] = ACTIONS(3023), - [anon_sym_u8_SQUOTE] = ACTIONS(3023), - [anon_sym_SQUOTE] = ACTIONS(3023), - [anon_sym_L_DQUOTE] = ACTIONS(3025), - [anon_sym_u_DQUOTE] = ACTIONS(3025), - [anon_sym_U_DQUOTE] = ACTIONS(3025), - [anon_sym_u8_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [anon_sym_NULL] = ACTIONS(3029), - [anon_sym_nullptr] = ACTIONS(3029), + [1276] = { + [sym_expression] = STATE(2946), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(5182), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(3033), - [anon_sym_LR_DQUOTE] = ACTIONS(3033), - [anon_sym_uR_DQUOTE] = ACTIONS(3033), - [anon_sym_UR_DQUOTE] = ACTIONS(3033), - [anon_sym_u8R_DQUOTE] = ACTIONS(3033), - [anon_sym_co_await] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_requires] = ACTIONS(3039), - [sym_this] = ACTIONS(3027), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3041), - [sym_semgrep_named_ellipsis] = ACTIONS(3043), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1235] = { - [sym_expression] = STATE(5775), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9661), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_RPAREN] = ACTIONS(5138), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1277] = { + [sym_expression] = STATE(5137), + [sym_expression_not_binary] = STATE(4265), + [sym_comma_expression] = STATE(8795), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5068), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -225976,7 +219829,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -225990,65 +219843,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1236] = { - [sym_expression] = STATE(5097), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(5196), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1278] = { + [sym_expression] = STATE(5380), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -226079,8 +219930,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5184), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -226094,377 +219946,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1237] = { - [sym_expression] = STATE(3027), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_initializer_list] = STATE(3147), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1238] = { - [sym_expression] = STATE(5883), - [sym_expression_not_binary] = STATE(6169), - [sym_conditional_expression] = STATE(6267), - [sym_assignment_expression] = STATE(6267), - [sym_pointer_expression] = STATE(4422), - [sym_unary_expression] = STATE(6267), - [sym_binary_expression] = STATE(6169), - [sym_update_expression] = STATE(6267), - [sym_cast_expression] = STATE(6267), - [sym_sizeof_expression] = STATE(6267), - [sym_alignof_expression] = STATE(6267), - [sym_offsetof_expression] = STATE(6267), - [sym_generic_expression] = STATE(6267), - [sym_subscript_expression] = STATE(4422), - [sym_call_expression] = STATE(4422), - [sym_gnu_asm_expression] = STATE(6267), - [sym_field_expression] = STATE(4422), - [sym_compound_literal_expression] = STATE(6267), - [sym_parenthesized_expression] = STATE(4422), - [sym_initializer_list] = STATE(6193), - [sym_char_literal] = STATE(6147), - [sym_concatenated_string] = STATE(6147), - [sym_string_literal] = STATE(4563), - [sym_null] = STATE(6267), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9242), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6267), - [sym_raw_string_literal] = STATE(4563), - [sym_co_await_expression] = STATE(6267), - [sym_new_expression] = STATE(6267), - [sym_delete_expression] = STATE(6267), - [sym_requires_clause] = STATE(6267), - [sym_requires_expression] = STATE(6267), - [sym_lambda_expression] = STATE(6267), - [sym_lambda_capture_specifier] = STATE(7263), - [sym_fold_expression] = STATE(6267), - [sym_parameter_pack_expansion] = STATE(6267), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4422), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4422), - [sym_semgrep_ellipsis] = STATE(6169), - [sym_deep_ellipsis] = STATE(6169), - [sym_identifier] = ACTIONS(4112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5054), - [anon_sym_LPAREN2] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_TILDE] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_LBRACE] = ACTIONS(4120), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4122), - [anon_sym_not] = ACTIONS(4114), - [anon_sym_compl] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(5056), - [anon_sym_PLUS_PLUS] = ACTIONS(5056), - [anon_sym_sizeof] = ACTIONS(4124), - [anon_sym___alignof__] = ACTIONS(4126), - [anon_sym___alignof] = ACTIONS(4126), - [anon_sym__alignof] = ACTIONS(4126), - [anon_sym_alignof] = ACTIONS(4126), - [anon_sym__Alignof] = ACTIONS(4126), - [anon_sym_offsetof] = ACTIONS(4128), - [anon_sym__Generic] = ACTIONS(4130), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4136), - [anon_sym_u_SQUOTE] = ACTIONS(4136), - [anon_sym_U_SQUOTE] = ACTIONS(4136), - [anon_sym_u8_SQUOTE] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_L_DQUOTE] = ACTIONS(4138), - [anon_sym_u_DQUOTE] = ACTIONS(4138), - [anon_sym_U_DQUOTE] = ACTIONS(4138), - [anon_sym_u8_DQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [anon_sym_NULL] = ACTIONS(4142), - [anon_sym_nullptr] = ACTIONS(4142), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4150), - [anon_sym_requires] = ACTIONS(4152), - [sym_this] = ACTIONS(4140), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4154), - [sym_semgrep_named_ellipsis] = ACTIONS(4156), - }, - [1239] = { - [sym_expression] = STATE(3027), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_initializer_list] = STATE(3147), - [sym_char_literal] = STATE(3806), - [sym_concatenated_string] = STATE(3806), - [sym_string_literal] = STATE(2240), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(2240), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2652), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(5142), - [anon_sym_BANG] = ACTIONS(2656), - [anon_sym_TILDE] = ACTIONS(2656), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_PLUS] = ACTIONS(2654), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(2658), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2654), - [anon_sym_compl] = ACTIONS(2654), - [anon_sym_DASH_DASH] = ACTIONS(5004), - [anon_sym_PLUS_PLUS] = ACTIONS(5004), - [anon_sym_sizeof] = ACTIONS(2660), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2662), - [anon_sym_L_SQUOTE] = ACTIONS(2664), - [anon_sym_u_SQUOTE] = ACTIONS(2664), - [anon_sym_U_SQUOTE] = ACTIONS(2664), - [anon_sym_u8_SQUOTE] = ACTIONS(2664), - [anon_sym_SQUOTE] = ACTIONS(2664), - [anon_sym_L_DQUOTE] = ACTIONS(2666), - [anon_sym_u_DQUOTE] = ACTIONS(2666), - [anon_sym_U_DQUOTE] = ACTIONS(2666), - [anon_sym_u8_DQUOTE] = ACTIONS(2666), - [anon_sym_DQUOTE] = ACTIONS(2666), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), + [1279] = { + [sym_expression] = STATE(2946), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2668), - [anon_sym_R_DQUOTE] = ACTIONS(2670), - [anon_sym_LR_DQUOTE] = ACTIONS(2670), - [anon_sym_uR_DQUOTE] = ACTIONS(2670), - [anon_sym_UR_DQUOTE] = ACTIONS(2670), - [anon_sym_u8R_DQUOTE] = ACTIONS(2670), - [anon_sym_co_await] = ACTIONS(2672), - [anon_sym_new] = ACTIONS(2674), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1240] = { - [sym_expression] = STATE(5872), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9574), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1280] = { + [sym_expression] = STATE(5453), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(5188), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -226496,7 +220138,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -226510,70 +220152,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1241] = { - [sym_expression] = STATE(6060), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_initializer_list] = STATE(5290), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), + [1281] = { + [sym_expression] = STATE(5508), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_COLON] = ACTIONS(5190), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -226600,84 +220241,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1242] = { - [sym_expression] = STATE(6072), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_initializer_list] = STATE(5196), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), + [1282] = { + [sym_expression] = STATE(5444), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_COLON] = ACTIONS(5192), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -226704,292 +220344,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1243] = { - [sym_expression] = STATE(3751), - [sym_expression_not_binary] = STATE(4050), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_initializer_list] = STATE(4118), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9276), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [sym_identifier] = ACTIONS(2854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(2856), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2858), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), - }, - [1244] = { - [sym_expression] = STATE(4182), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_initializer_list] = STATE(3147), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(5148), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_TILDE] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2987), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(2991), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2987), - [anon_sym_compl] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(5096), - [anon_sym_PLUS_PLUS] = ACTIONS(5096), - [anon_sym_sizeof] = ACTIONS(2993), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2995), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2997), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1245] = { - [sym_expression] = STATE(5902), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9860), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5150), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1283] = { + [sym_expression] = STATE(5496), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_COLON] = ACTIONS(5194), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -227016,292 +220447,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1246] = { - [sym_expression] = STATE(5111), - [sym_expression_not_binary] = STATE(5370), - [sym_conditional_expression] = STATE(5364), - [sym_assignment_expression] = STATE(5364), - [sym_pointer_expression] = STATE(3376), - [sym_unary_expression] = STATE(5364), - [sym_binary_expression] = STATE(5370), - [sym_update_expression] = STATE(5364), - [sym_cast_expression] = STATE(5364), - [sym_sizeof_expression] = STATE(5364), - [sym_alignof_expression] = STATE(5364), - [sym_offsetof_expression] = STATE(5364), - [sym_generic_expression] = STATE(5364), - [sym_subscript_expression] = STATE(3376), - [sym_call_expression] = STATE(3376), - [sym_gnu_asm_expression] = STATE(5364), - [sym_field_expression] = STATE(3376), - [sym_compound_literal_expression] = STATE(5364), - [sym_parenthesized_expression] = STATE(3376), - [sym_initializer_list] = STATE(5342), - [sym_char_literal] = STATE(5241), - [sym_concatenated_string] = STATE(5241), - [sym_string_literal] = STATE(3576), - [sym_null] = STATE(5364), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9412), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5364), - [sym_raw_string_literal] = STATE(3576), - [sym_co_await_expression] = STATE(5364), - [sym_new_expression] = STATE(5364), - [sym_delete_expression] = STATE(5364), - [sym_requires_clause] = STATE(5364), - [sym_requires_expression] = STATE(5364), - [sym_lambda_expression] = STATE(5364), - [sym_lambda_capture_specifier] = STATE(7332), - [sym_fold_expression] = STATE(5364), - [sym_parameter_pack_expansion] = STATE(5364), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3376), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3376), - [sym_semgrep_ellipsis] = STATE(5370), - [sym_deep_ellipsis] = STATE(5370), - [sym_identifier] = ACTIONS(4984), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), - [anon_sym_LPAREN2] = ACTIONS(5124), - [anon_sym_BANG] = ACTIONS(3774), - [anon_sym_TILDE] = ACTIONS(3774), - [anon_sym_DASH] = ACTIONS(3772), - [anon_sym_PLUS] = ACTIONS(3772), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(3776), - [anon_sym_LBRACE] = ACTIONS(3778), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3780), - [anon_sym_not] = ACTIONS(3772), - [anon_sym_compl] = ACTIONS(3772), - [anon_sym_DASH_DASH] = ACTIONS(4988), - [anon_sym_PLUS_PLUS] = ACTIONS(4988), - [anon_sym_sizeof] = ACTIONS(3782), - [anon_sym___alignof__] = ACTIONS(3784), - [anon_sym___alignof] = ACTIONS(3784), - [anon_sym__alignof] = ACTIONS(3784), - [anon_sym_alignof] = ACTIONS(3784), - [anon_sym__Alignof] = ACTIONS(3784), - [anon_sym_offsetof] = ACTIONS(3786), - [anon_sym__Generic] = ACTIONS(3788), - [anon_sym_asm] = ACTIONS(3790), - [anon_sym___asm__] = ACTIONS(3790), - [sym_number_literal] = ACTIONS(3792), - [anon_sym_L_SQUOTE] = ACTIONS(3794), - [anon_sym_u_SQUOTE] = ACTIONS(3794), - [anon_sym_U_SQUOTE] = ACTIONS(3794), - [anon_sym_u8_SQUOTE] = ACTIONS(3794), - [anon_sym_SQUOTE] = ACTIONS(3794), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_true] = ACTIONS(3798), - [sym_false] = ACTIONS(3798), - [anon_sym_NULL] = ACTIONS(3800), - [anon_sym_nullptr] = ACTIONS(3800), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3802), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - [anon_sym_co_await] = ACTIONS(3806), - [anon_sym_new] = ACTIONS(3808), - [anon_sym_requires] = ACTIONS(3810), - [sym_this] = ACTIONS(3798), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3812), - [sym_semgrep_named_ellipsis] = ACTIONS(3814), - }, - [1247] = { - [sym_expression] = STATE(4287), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_initializer_list] = STATE(4542), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), - }, - [1248] = { - [sym_expression] = STATE(5502), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4036), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4036), - [sym_call_expression] = STATE(4036), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4036), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4036), - [sym_initializer_list] = STATE(5290), - [sym_char_literal] = STATE(5772), - [sym_concatenated_string] = STATE(5772), - [sym_string_literal] = STATE(4262), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(4262), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4036), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4036), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5038), - [anon_sym_BANG] = ACTIONS(4035), - [anon_sym_TILDE] = ACTIONS(4035), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(4037), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4033), - [anon_sym_compl] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(5044), - [anon_sym_PLUS_PLUS] = ACTIONS(5044), - [anon_sym_sizeof] = ACTIONS(4039), + [1284] = { + [sym_expression] = STATE(5571), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_COLON] = ACTIONS(5196), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -227311,413 +220533,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(4041), - [anon_sym_L_SQUOTE] = ACTIONS(4043), - [anon_sym_u_SQUOTE] = ACTIONS(4043), - [anon_sym_U_SQUOTE] = ACTIONS(4043), - [anon_sym_u8_SQUOTE] = ACTIONS(4043), - [anon_sym_SQUOTE] = ACTIONS(4043), - [anon_sym_L_DQUOTE] = ACTIONS(4045), - [anon_sym_u_DQUOTE] = ACTIONS(4045), - [anon_sym_U_DQUOTE] = ACTIONS(4045), - [anon_sym_u8_DQUOTE] = ACTIONS(4045), - [anon_sym_DQUOTE] = ACTIONS(4045), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4047), - [anon_sym_R_DQUOTE] = ACTIONS(4049), - [anon_sym_LR_DQUOTE] = ACTIONS(4049), - [anon_sym_uR_DQUOTE] = ACTIONS(4049), - [anon_sym_UR_DQUOTE] = ACTIONS(4049), - [anon_sym_u8R_DQUOTE] = ACTIONS(4049), - [anon_sym_co_await] = ACTIONS(4051), - [anon_sym_new] = ACTIONS(4053), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1249] = { - [sym_expression] = STATE(5400), - [sym_expression_not_binary] = STATE(5540), - [sym_conditional_expression] = STATE(5537), - [sym_assignment_expression] = STATE(5537), - [sym_pointer_expression] = STATE(3745), - [sym_unary_expression] = STATE(5537), - [sym_binary_expression] = STATE(5540), - [sym_update_expression] = STATE(5537), - [sym_cast_expression] = STATE(5537), - [sym_sizeof_expression] = STATE(5537), - [sym_alignof_expression] = STATE(5537), - [sym_offsetof_expression] = STATE(5537), - [sym_generic_expression] = STATE(5537), - [sym_subscript_expression] = STATE(3745), - [sym_call_expression] = STATE(3745), - [sym_gnu_asm_expression] = STATE(5537), - [sym_field_expression] = STATE(3745), - [sym_compound_literal_expression] = STATE(5537), - [sym_parenthesized_expression] = STATE(3745), - [sym_initializer_list] = STATE(5556), - [sym_char_literal] = STATE(5453), - [sym_concatenated_string] = STATE(5453), - [sym_string_literal] = STATE(3936), - [sym_null] = STATE(5537), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9333), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5537), - [sym_raw_string_literal] = STATE(3936), - [sym_co_await_expression] = STATE(5537), - [sym_new_expression] = STATE(5537), - [sym_delete_expression] = STATE(5537), - [sym_requires_clause] = STATE(5537), - [sym_requires_expression] = STATE(5537), - [sym_lambda_expression] = STATE(5537), - [sym_lambda_capture_specifier] = STATE(7261), - [sym_fold_expression] = STATE(5537), - [sym_parameter_pack_expansion] = STATE(5537), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3745), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3745), - [sym_semgrep_ellipsis] = STATE(5540), - [sym_deep_ellipsis] = STATE(5540), - [sym_identifier] = ACTIONS(5032), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5034), - [anon_sym_LPAREN2] = ACTIONS(5112), - [anon_sym_BANG] = ACTIONS(3820), - [anon_sym_TILDE] = ACTIONS(3820), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(3822), - [anon_sym_LBRACE] = ACTIONS(3824), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3826), - [anon_sym_not] = ACTIONS(3818), - [anon_sym_compl] = ACTIONS(3818), - [anon_sym_DASH_DASH] = ACTIONS(5036), - [anon_sym_PLUS_PLUS] = ACTIONS(5036), - [anon_sym_sizeof] = ACTIONS(3828), - [anon_sym___alignof__] = ACTIONS(3830), - [anon_sym___alignof] = ACTIONS(3830), - [anon_sym__alignof] = ACTIONS(3830), - [anon_sym_alignof] = ACTIONS(3830), - [anon_sym__Alignof] = ACTIONS(3830), - [anon_sym_offsetof] = ACTIONS(3832), - [anon_sym__Generic] = ACTIONS(3834), - [anon_sym_asm] = ACTIONS(3836), - [anon_sym___asm__] = ACTIONS(3836), - [sym_number_literal] = ACTIONS(3838), - [anon_sym_L_SQUOTE] = ACTIONS(3840), - [anon_sym_u_SQUOTE] = ACTIONS(3840), - [anon_sym_U_SQUOTE] = ACTIONS(3840), - [anon_sym_u8_SQUOTE] = ACTIONS(3840), - [anon_sym_SQUOTE] = ACTIONS(3840), - [anon_sym_L_DQUOTE] = ACTIONS(3842), - [anon_sym_u_DQUOTE] = ACTIONS(3842), - [anon_sym_U_DQUOTE] = ACTIONS(3842), - [anon_sym_u8_DQUOTE] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym_true] = ACTIONS(3844), - [sym_false] = ACTIONS(3844), - [anon_sym_NULL] = ACTIONS(3846), - [anon_sym_nullptr] = ACTIONS(3846), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(3854), - [anon_sym_requires] = ACTIONS(3856), - [sym_this] = ACTIONS(3844), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3858), - [sym_semgrep_named_ellipsis] = ACTIONS(3860), - }, - [1250] = { - [sym_expression] = STATE(5821), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_initializer_list] = STATE(6157), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9595), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [sym_identifier] = ACTIONS(4059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_LBRACE] = ACTIONS(4061), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4063), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), - }, - [1251] = { - [sym_expression] = STATE(5925), - [sym_expression_not_binary] = STATE(6169), - [sym_conditional_expression] = STATE(6267), - [sym_assignment_expression] = STATE(6267), - [sym_pointer_expression] = STATE(4422), - [sym_unary_expression] = STATE(6267), - [sym_binary_expression] = STATE(6169), - [sym_update_expression] = STATE(6267), - [sym_cast_expression] = STATE(6267), - [sym_sizeof_expression] = STATE(6267), - [sym_alignof_expression] = STATE(6267), - [sym_offsetof_expression] = STATE(6267), - [sym_generic_expression] = STATE(6267), - [sym_subscript_expression] = STATE(4422), - [sym_call_expression] = STATE(4422), - [sym_gnu_asm_expression] = STATE(6267), - [sym_field_expression] = STATE(4422), - [sym_compound_literal_expression] = STATE(6267), - [sym_parenthesized_expression] = STATE(4422), - [sym_initializer_list] = STATE(6257), - [sym_char_literal] = STATE(6147), - [sym_concatenated_string] = STATE(6147), - [sym_string_literal] = STATE(4563), - [sym_null] = STATE(6267), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9242), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6267), - [sym_raw_string_literal] = STATE(4563), - [sym_co_await_expression] = STATE(6267), - [sym_new_expression] = STATE(6267), - [sym_delete_expression] = STATE(6267), - [sym_requires_clause] = STATE(6267), - [sym_requires_expression] = STATE(6267), - [sym_lambda_expression] = STATE(6267), - [sym_lambda_capture_specifier] = STATE(7263), - [sym_fold_expression] = STATE(6267), - [sym_parameter_pack_expansion] = STATE(6267), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4422), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4422), - [sym_semgrep_ellipsis] = STATE(6169), - [sym_deep_ellipsis] = STATE(6169), - [sym_identifier] = ACTIONS(4112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5054), - [anon_sym_LPAREN2] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_TILDE] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_LBRACE] = ACTIONS(4120), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4122), - [anon_sym_not] = ACTIONS(4114), - [anon_sym_compl] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(5056), - [anon_sym_PLUS_PLUS] = ACTIONS(5056), - [anon_sym_sizeof] = ACTIONS(4124), - [anon_sym___alignof__] = ACTIONS(4126), - [anon_sym___alignof] = ACTIONS(4126), - [anon_sym__alignof] = ACTIONS(4126), - [anon_sym_alignof] = ACTIONS(4126), - [anon_sym__Alignof] = ACTIONS(4126), - [anon_sym_offsetof] = ACTIONS(4128), - [anon_sym__Generic] = ACTIONS(4130), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4136), - [anon_sym_u_SQUOTE] = ACTIONS(4136), - [anon_sym_U_SQUOTE] = ACTIONS(4136), - [anon_sym_u8_SQUOTE] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_L_DQUOTE] = ACTIONS(4138), - [anon_sym_u_DQUOTE] = ACTIONS(4138), - [anon_sym_U_DQUOTE] = ACTIONS(4138), - [anon_sym_u8_DQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [anon_sym_NULL] = ACTIONS(4142), - [anon_sym_nullptr] = ACTIONS(4142), + [1285] = { + [sym_expression] = STATE(2946), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(5198), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4150), - [anon_sym_requires] = ACTIONS(4152), - [sym_this] = ACTIONS(4140), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4154), - [sym_semgrep_named_ellipsis] = ACTIONS(4156), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1252] = { - [sym_expression] = STATE(5489), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_initializer_list] = STATE(9364), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1286] = { + [sym_expression] = STATE(5519), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_COLON] = ACTIONS(5200), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -227744,186 +220756,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1253] = { - [sym_expression] = STATE(3048), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5152), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1254] = { - [sym_expression] = STATE(5970), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_COLON] = ACTIONS(5154), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), + [1287] = { + [sym_expression] = STATE(5474), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_COLON] = ACTIONS(5202), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -227950,186 +220859,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1255] = { - [sym_expression] = STATE(3048), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5156), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1256] = { - [sym_expression] = STATE(5501), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4036), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4036), - [sym_call_expression] = STATE(4036), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4036), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4036), - [sym_char_literal] = STATE(5772), - [sym_concatenated_string] = STATE(5772), - [sym_string_literal] = STATE(4262), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(4262), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4036), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4036), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5038), - [anon_sym_BANG] = ACTIONS(4035), - [anon_sym_TILDE] = ACTIONS(4035), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_SEMI] = ACTIONS(5158), - [anon_sym_COLON_COLON] = ACTIONS(4037), - [anon_sym_LBRACK] = ACTIONS(5160), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4033), - [anon_sym_compl] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(5044), - [anon_sym_PLUS_PLUS] = ACTIONS(5044), - [anon_sym_sizeof] = ACTIONS(4039), + [1288] = { + [sym_expression] = STATE(5488), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_COLON] = ACTIONS(5204), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -228139,100 +220945,306 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(4041), - [anon_sym_L_SQUOTE] = ACTIONS(4043), - [anon_sym_u_SQUOTE] = ACTIONS(4043), - [anon_sym_U_SQUOTE] = ACTIONS(4043), - [anon_sym_u8_SQUOTE] = ACTIONS(4043), - [anon_sym_SQUOTE] = ACTIONS(4043), - [anon_sym_L_DQUOTE] = ACTIONS(4045), - [anon_sym_u_DQUOTE] = ACTIONS(4045), - [anon_sym_U_DQUOTE] = ACTIONS(4045), - [anon_sym_u8_DQUOTE] = ACTIONS(4045), - [anon_sym_DQUOTE] = ACTIONS(4045), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4047), - [anon_sym_R_DQUOTE] = ACTIONS(4049), - [anon_sym_LR_DQUOTE] = ACTIONS(4049), - [anon_sym_uR_DQUOTE] = ACTIONS(4049), - [anon_sym_UR_DQUOTE] = ACTIONS(4049), - [anon_sym_u8R_DQUOTE] = ACTIONS(4049), - [anon_sym_co_await] = ACTIONS(4051), - [anon_sym_new] = ACTIONS(4053), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1257] = { - [sym_expression] = STATE(5501), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4036), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4036), - [sym_call_expression] = STATE(4036), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4036), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4036), - [sym_char_literal] = STATE(5772), - [sym_concatenated_string] = STATE(5772), - [sym_string_literal] = STATE(4262), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(4262), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4036), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4036), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5038), - [anon_sym_BANG] = ACTIONS(4035), - [anon_sym_TILDE] = ACTIONS(4035), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_SEMI] = ACTIONS(5162), - [anon_sym_COLON_COLON] = ACTIONS(4037), - [anon_sym_LBRACK] = ACTIONS(5160), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4033), - [anon_sym_compl] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(5044), - [anon_sym_PLUS_PLUS] = ACTIONS(5044), - [anon_sym_sizeof] = ACTIONS(4039), + [1289] = { + [sym_expression] = STATE(2946), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(5206), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1290] = { + [sym_expression] = STATE(2946), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(5208), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1291] = { + [sym_expression] = STATE(5572), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_COLON] = ACTIONS(5210), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -228242,404 +221254,301 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(4041), - [anon_sym_L_SQUOTE] = ACTIONS(4043), - [anon_sym_u_SQUOTE] = ACTIONS(4043), - [anon_sym_U_SQUOTE] = ACTIONS(4043), - [anon_sym_u8_SQUOTE] = ACTIONS(4043), - [anon_sym_SQUOTE] = ACTIONS(4043), - [anon_sym_L_DQUOTE] = ACTIONS(4045), - [anon_sym_u_DQUOTE] = ACTIONS(4045), - [anon_sym_U_DQUOTE] = ACTIONS(4045), - [anon_sym_u8_DQUOTE] = ACTIONS(4045), - [anon_sym_DQUOTE] = ACTIONS(4045), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4047), - [anon_sym_R_DQUOTE] = ACTIONS(4049), - [anon_sym_LR_DQUOTE] = ACTIONS(4049), - [anon_sym_uR_DQUOTE] = ACTIONS(4049), - [anon_sym_UR_DQUOTE] = ACTIONS(4049), - [anon_sym_u8R_DQUOTE] = ACTIONS(4049), - [anon_sym_co_await] = ACTIONS(4051), - [anon_sym_new] = ACTIONS(4053), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1258] = { - [sym_expression] = STATE(3048), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5164), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1259] = { - [sym_expression] = STATE(3048), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5166), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), + [1292] = { + [sym_declaration_modifiers] = STATE(2412), + [sym_declaration_specifiers] = STATE(4711), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7651), + [sym_abstract_declarator] = STATE(7837), + [sym_parenthesized_declarator] = STATE(7305), + [sym_abstract_parenthesized_declarator] = STATE(7113), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_abstract_pointer_declarator] = STATE(7113), + [sym_function_declarator] = STATE(7305), + [sym_abstract_function_declarator] = STATE(7113), + [sym_array_declarator] = STATE(7305), + [sym_abstract_array_declarator] = STATE(7113), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_parameter_list] = STATE(4330), + [sym_parameter_declaration] = STATE(8485), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_optional_parameter_declaration] = STATE(8485), + [sym_variadic_parameter_declaration] = STATE(8485), + [sym_reference_declarator] = STATE(7305), + [sym_abstract_reference_declarator] = STATE(7113), + [sym_structured_binding_declarator] = STATE(7305), + [sym_function_declarator_seq] = STATE(7023), + [sym_template_type] = STATE(3324), + [sym_template_function] = STATE(7305), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6656), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_operator_name] = STATE(7305), + [aux_sym_declaration_specifiers_repeat1] = STATE(2412), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5212), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5214), + [anon_sym_RPAREN] = ACTIONS(5216), + [anon_sym_LPAREN2] = ACTIONS(5218), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(5220), + [anon_sym_AMP_AMP] = ACTIONS(5222), + [anon_sym_AMP] = ACTIONS(5224), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym___based] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(5226), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(2119), + [anon_sym_class] = ACTIONS(2121), + [anon_sym_struct] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2125), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2127), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_operator] = ACTIONS(2257), }, - [1260] = { - [sym_expression] = STATE(3048), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5168), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), + [1293] = { + [sym_expression] = STATE(2946), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(5228), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1261] = { - [sym_expression] = STATE(6024), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1294] = { + [sym_expression] = STATE(5460), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(5170), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(5230), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -228671,7 +221580,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -228685,69 +221594,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1262] = { - [sym_expression] = STATE(6080), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(5172), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1295] = { + [sym_expression] = STATE(2946), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(5232), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1296] = { + [sym_expression] = STATE(5504), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_COLON] = ACTIONS(5234), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -228774,82 +221786,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1263] = { - [sym_expression] = STATE(6032), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1297] = { + [sym_expression] = STATE(5426), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_COLON] = ACTIONS(5236), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -228875,80 +221888,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5174), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1264] = { - [sym_expression] = STATE(5561), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9149), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1298] = { + [sym_expression] = STATE(5510), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -228979,8 +221990,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5238), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -228994,270 +222006,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1265] = { - [sym_expression] = STATE(3048), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5176), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1266] = { - [sym_expression] = STATE(5501), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4036), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4036), - [sym_call_expression] = STATE(4036), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4036), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4036), - [sym_char_literal] = STATE(5772), - [sym_concatenated_string] = STATE(5772), - [sym_string_literal] = STATE(4262), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(4262), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4036), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4036), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5038), - [anon_sym_BANG] = ACTIONS(4035), - [anon_sym_TILDE] = ACTIONS(4035), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_SEMI] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4037), - [anon_sym_LBRACK] = ACTIONS(5160), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4033), - [anon_sym_compl] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(5044), - [anon_sym_PLUS_PLUS] = ACTIONS(5044), - [anon_sym_sizeof] = ACTIONS(4039), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(4041), - [anon_sym_L_SQUOTE] = ACTIONS(4043), - [anon_sym_u_SQUOTE] = ACTIONS(4043), - [anon_sym_U_SQUOTE] = ACTIONS(4043), - [anon_sym_u8_SQUOTE] = ACTIONS(4043), - [anon_sym_SQUOTE] = ACTIONS(4043), - [anon_sym_L_DQUOTE] = ACTIONS(4045), - [anon_sym_u_DQUOTE] = ACTIONS(4045), - [anon_sym_U_DQUOTE] = ACTIONS(4045), - [anon_sym_u8_DQUOTE] = ACTIONS(4045), - [anon_sym_DQUOTE] = ACTIONS(4045), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4047), - [anon_sym_R_DQUOTE] = ACTIONS(4049), - [anon_sym_LR_DQUOTE] = ACTIONS(4049), - [anon_sym_uR_DQUOTE] = ACTIONS(4049), - [anon_sym_UR_DQUOTE] = ACTIONS(4049), - [anon_sym_u8R_DQUOTE] = ACTIONS(4049), - [anon_sym_co_await] = ACTIONS(4051), - [anon_sym_new] = ACTIONS(4053), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), - }, - [1267] = { - [sym_expression] = STATE(6081), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1299] = { + [sym_expression] = STATE(5372), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(5180), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -229289,7 +222094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -229303,269 +222108,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1268] = { - [sym_expression] = STATE(5996), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_COLON] = ACTIONS(5182), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), - }, - [1269] = { - [sym_expression] = STATE(3048), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5184), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), + [1300] = { + [sym_expression] = STATE(2946), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1270] = { - [sym_expression] = STATE(5881), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1301] = { + [sym_expression] = STATE(5584), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -229596,9 +222297,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5186), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -229612,172 +222312,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1271] = { - [sym_expression] = STATE(3048), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5188), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1272] = { - [sym_expression] = STATE(6023), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_COLON] = ACTIONS(5190), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), + [1302] = { + [sym_expression] = STATE(5394), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -229804,283 +222400,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), + [anon_sym_co_await] = ACTIONS(157), [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1273] = { - [sym_expression] = STATE(3048), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5192), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1274] = { - [sym_expression] = STATE(3048), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5194), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1275] = { - [sym_expression] = STATE(5913), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1303] = { + [sym_expression] = STATE(5583), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -230111,9 +222501,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5196), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -230127,64 +222516,267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1276] = { - [sym_expression] = STATE(5906), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1304] = { + [sym_expression] = STATE(5486), + [sym_expression_not_binary] = STATE(5685), + [sym_conditional_expression] = STATE(5675), + [sym_assignment_expression] = STATE(5675), + [sym_pointer_expression] = STATE(4201), + [sym_unary_expression] = STATE(5675), + [sym_binary_expression] = STATE(5685), + [sym_update_expression] = STATE(5675), + [sym_cast_expression] = STATE(5675), + [sym_sizeof_expression] = STATE(5675), + [sym_alignof_expression] = STATE(5675), + [sym_offsetof_expression] = STATE(5675), + [sym_generic_expression] = STATE(5675), + [sym_subscript_expression] = STATE(4201), + [sym_call_expression] = STATE(4201), + [sym_gnu_asm_expression] = STATE(5675), + [sym_field_expression] = STATE(4201), + [sym_compound_literal_expression] = STATE(5675), + [sym_parenthesized_expression] = STATE(4201), + [sym_char_literal] = STATE(5600), + [sym_concatenated_string] = STATE(5600), + [sym_string_literal] = STATE(4359), + [sym_null] = STATE(5675), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9034), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5675), + [sym_raw_string_literal] = STATE(4359), + [sym_co_await_expression] = STATE(5675), + [sym_new_expression] = STATE(5675), + [sym_delete_expression] = STATE(5675), + [sym_requires_clause] = STATE(5675), + [sym_requires_expression] = STATE(5675), + [sym_lambda_expression] = STATE(5675), + [sym_lambda_capture_specifier] = STATE(6898), + [sym_fold_expression] = STATE(5675), + [sym_parameter_pack_expansion] = STATE(5675), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4201), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4201), + [sym_semgrep_ellipsis] = STATE(5685), + [sym_deep_ellipsis] = STATE(5685), + [sym_identifier] = ACTIONS(4242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4954), + [anon_sym_LPAREN2] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_TILDE] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(4248), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4252), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_sizeof] = ACTIONS(4254), + [anon_sym___alignof__] = ACTIONS(4256), + [anon_sym___alignof] = ACTIONS(4256), + [anon_sym__alignof] = ACTIONS(4256), + [anon_sym_alignof] = ACTIONS(4256), + [anon_sym__Alignof] = ACTIONS(4256), + [anon_sym_offsetof] = ACTIONS(4258), + [anon_sym__Generic] = ACTIONS(4260), + [anon_sym_asm] = ACTIONS(4262), + [anon_sym___asm__] = ACTIONS(4262), + [sym_number_literal] = ACTIONS(4264), + [anon_sym_L_SQUOTE] = ACTIONS(4266), + [anon_sym_u_SQUOTE] = ACTIONS(4266), + [anon_sym_U_SQUOTE] = ACTIONS(4266), + [anon_sym_u8_SQUOTE] = ACTIONS(4266), + [anon_sym_SQUOTE] = ACTIONS(4266), + [anon_sym_L_DQUOTE] = ACTIONS(4268), + [anon_sym_u_DQUOTE] = ACTIONS(4268), + [anon_sym_U_DQUOTE] = ACTIONS(4268), + [anon_sym_u8_DQUOTE] = ACTIONS(4268), + [anon_sym_DQUOTE] = ACTIONS(4268), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4272), + [anon_sym_nullptr] = ACTIONS(4272), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4274), + [anon_sym_R_DQUOTE] = ACTIONS(4276), + [anon_sym_LR_DQUOTE] = ACTIONS(4276), + [anon_sym_uR_DQUOTE] = ACTIONS(4276), + [anon_sym_UR_DQUOTE] = ACTIONS(4276), + [anon_sym_u8R_DQUOTE] = ACTIONS(4276), + [anon_sym_co_await] = ACTIONS(4278), + [anon_sym_new] = ACTIONS(4280), + [anon_sym_requires] = ACTIONS(4282), + [sym_this] = ACTIONS(4270), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4284), + [sym_semgrep_named_ellipsis] = ACTIONS(4286), + }, + [1305] = { + [sym_expression] = STATE(5501), + [sym_expression_not_binary] = STATE(5685), + [sym_conditional_expression] = STATE(5675), + [sym_assignment_expression] = STATE(5675), + [sym_pointer_expression] = STATE(4201), + [sym_unary_expression] = STATE(5675), + [sym_binary_expression] = STATE(5685), + [sym_update_expression] = STATE(5675), + [sym_cast_expression] = STATE(5675), + [sym_sizeof_expression] = STATE(5675), + [sym_alignof_expression] = STATE(5675), + [sym_offsetof_expression] = STATE(5675), + [sym_generic_expression] = STATE(5675), + [sym_subscript_expression] = STATE(4201), + [sym_call_expression] = STATE(4201), + [sym_gnu_asm_expression] = STATE(5675), + [sym_field_expression] = STATE(4201), + [sym_compound_literal_expression] = STATE(5675), + [sym_parenthesized_expression] = STATE(4201), + [sym_char_literal] = STATE(5600), + [sym_concatenated_string] = STATE(5600), + [sym_string_literal] = STATE(4359), + [sym_null] = STATE(5675), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9034), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5675), + [sym_raw_string_literal] = STATE(4359), + [sym_co_await_expression] = STATE(5675), + [sym_new_expression] = STATE(5675), + [sym_delete_expression] = STATE(5675), + [sym_requires_clause] = STATE(5675), + [sym_requires_expression] = STATE(5675), + [sym_lambda_expression] = STATE(5675), + [sym_lambda_capture_specifier] = STATE(6898), + [sym_fold_expression] = STATE(5675), + [sym_parameter_pack_expansion] = STATE(5675), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4201), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4201), + [sym_semgrep_ellipsis] = STATE(5685), + [sym_deep_ellipsis] = STATE(5685), + [sym_identifier] = ACTIONS(4242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4954), + [anon_sym_LPAREN2] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_TILDE] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(4248), + [anon_sym_LBRACK] = ACTIONS(5240), + [sym_primitive_type] = ACTIONS(4252), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_sizeof] = ACTIONS(4254), + [anon_sym___alignof__] = ACTIONS(4256), + [anon_sym___alignof] = ACTIONS(4256), + [anon_sym__alignof] = ACTIONS(4256), + [anon_sym_alignof] = ACTIONS(4256), + [anon_sym__Alignof] = ACTIONS(4256), + [anon_sym_offsetof] = ACTIONS(4258), + [anon_sym__Generic] = ACTIONS(4260), + [anon_sym_asm] = ACTIONS(4262), + [anon_sym___asm__] = ACTIONS(4262), + [sym_number_literal] = ACTIONS(4264), + [anon_sym_L_SQUOTE] = ACTIONS(4266), + [anon_sym_u_SQUOTE] = ACTIONS(4266), + [anon_sym_U_SQUOTE] = ACTIONS(4266), + [anon_sym_u8_SQUOTE] = ACTIONS(4266), + [anon_sym_SQUOTE] = ACTIONS(4266), + [anon_sym_L_DQUOTE] = ACTIONS(4268), + [anon_sym_u_DQUOTE] = ACTIONS(4268), + [anon_sym_U_DQUOTE] = ACTIONS(4268), + [anon_sym_u8_DQUOTE] = ACTIONS(4268), + [anon_sym_DQUOTE] = ACTIONS(4268), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4272), + [anon_sym_nullptr] = ACTIONS(4272), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4274), + [anon_sym_R_DQUOTE] = ACTIONS(4276), + [anon_sym_LR_DQUOTE] = ACTIONS(4276), + [anon_sym_uR_DQUOTE] = ACTIONS(4276), + [anon_sym_UR_DQUOTE] = ACTIONS(4276), + [anon_sym_u8R_DQUOTE] = ACTIONS(4276), + [anon_sym_co_await] = ACTIONS(4278), + [anon_sym_new] = ACTIONS(4280), + [anon_sym_requires] = ACTIONS(4282), + [sym_this] = ACTIONS(4270), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4284), + [sym_semgrep_named_ellipsis] = ACTIONS(4286), + }, + [1306] = { + [sym_expression] = STATE(5298), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(5198), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -230216,7 +222808,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -230230,69 +222822,2006 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1277] = { - [sym_expression] = STATE(5884), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_COLON] = ACTIONS(5200), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), + [1307] = { + [sym_expression] = STATE(3497), + [sym_expression_not_binary] = STATE(3766), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8737), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [sym_identifier] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5068), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_compl] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), + }, + [1308] = { + [sym_expression] = STATE(3498), + [sym_expression_not_binary] = STATE(3766), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8737), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [sym_identifier] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5068), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_compl] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), + }, + [1309] = { + [sym_expression] = STATE(3497), + [sym_expression_not_binary] = STATE(3766), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8737), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [sym_identifier] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3706), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_compl] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), + }, + [1310] = { + [sym_expression] = STATE(3498), + [sym_expression_not_binary] = STATE(3766), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8737), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [sym_identifier] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3706), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_compl] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), + }, + [1311] = { + [sym_expression] = STATE(3499), + [sym_expression_not_binary] = STATE(3766), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8737), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [sym_identifier] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3706), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_compl] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), + }, + [1312] = { + [sym_expression] = STATE(3501), + [sym_expression_not_binary] = STATE(3766), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8737), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [sym_identifier] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3706), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_compl] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), + }, + [1313] = { + [sym_expression] = STATE(3504), + [sym_expression_not_binary] = STATE(3766), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8737), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [sym_identifier] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3706), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_compl] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), + }, + [1314] = { + [sym_expression] = STATE(3506), + [sym_expression_not_binary] = STATE(3766), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8737), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [sym_identifier] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3706), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_compl] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), + }, + [1315] = { + [sym_expression] = STATE(3509), + [sym_expression_not_binary] = STATE(3766), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8737), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [sym_identifier] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3706), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_compl] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), + }, + [1316] = { + [sym_expression] = STATE(3510), + [sym_expression_not_binary] = STATE(3766), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8737), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [sym_identifier] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3706), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_compl] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), + }, + [1317] = { + [sym_expression] = STATE(3511), + [sym_expression_not_binary] = STATE(3766), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8737), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [sym_identifier] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3706), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_compl] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), + }, + [1318] = { + [sym_expression] = STATE(3512), + [sym_expression_not_binary] = STATE(3766), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8737), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [sym_identifier] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3706), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_compl] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), + }, + [1319] = { + [sym_expression] = STATE(5531), + [sym_expression_not_binary] = STATE(5685), + [sym_conditional_expression] = STATE(5675), + [sym_assignment_expression] = STATE(5675), + [sym_pointer_expression] = STATE(4201), + [sym_unary_expression] = STATE(5675), + [sym_binary_expression] = STATE(5685), + [sym_update_expression] = STATE(5675), + [sym_cast_expression] = STATE(5675), + [sym_sizeof_expression] = STATE(5675), + [sym_alignof_expression] = STATE(5675), + [sym_offsetof_expression] = STATE(5675), + [sym_generic_expression] = STATE(5675), + [sym_subscript_expression] = STATE(4201), + [sym_call_expression] = STATE(4201), + [sym_gnu_asm_expression] = STATE(5675), + [sym_field_expression] = STATE(4201), + [sym_compound_literal_expression] = STATE(5675), + [sym_parenthesized_expression] = STATE(4201), + [sym_char_literal] = STATE(5600), + [sym_concatenated_string] = STATE(5600), + [sym_string_literal] = STATE(4359), + [sym_null] = STATE(5675), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9034), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5675), + [sym_raw_string_literal] = STATE(4359), + [sym_co_await_expression] = STATE(5675), + [sym_new_expression] = STATE(5675), + [sym_delete_expression] = STATE(5675), + [sym_requires_clause] = STATE(5675), + [sym_requires_expression] = STATE(5675), + [sym_lambda_expression] = STATE(5675), + [sym_lambda_capture_specifier] = STATE(6898), + [sym_fold_expression] = STATE(5675), + [sym_parameter_pack_expansion] = STATE(5675), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4201), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4201), + [sym_semgrep_ellipsis] = STATE(5685), + [sym_deep_ellipsis] = STATE(5685), + [sym_identifier] = ACTIONS(4242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4954), + [anon_sym_LPAREN2] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_TILDE] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(4248), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4252), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_sizeof] = ACTIONS(4254), + [anon_sym___alignof__] = ACTIONS(4256), + [anon_sym___alignof] = ACTIONS(4256), + [anon_sym__alignof] = ACTIONS(4256), + [anon_sym_alignof] = ACTIONS(4256), + [anon_sym__Alignof] = ACTIONS(4256), + [anon_sym_offsetof] = ACTIONS(4258), + [anon_sym__Generic] = ACTIONS(4260), + [anon_sym_asm] = ACTIONS(4262), + [anon_sym___asm__] = ACTIONS(4262), + [sym_number_literal] = ACTIONS(4264), + [anon_sym_L_SQUOTE] = ACTIONS(4266), + [anon_sym_u_SQUOTE] = ACTIONS(4266), + [anon_sym_U_SQUOTE] = ACTIONS(4266), + [anon_sym_u8_SQUOTE] = ACTIONS(4266), + [anon_sym_SQUOTE] = ACTIONS(4266), + [anon_sym_L_DQUOTE] = ACTIONS(4268), + [anon_sym_u_DQUOTE] = ACTIONS(4268), + [anon_sym_U_DQUOTE] = ACTIONS(4268), + [anon_sym_u8_DQUOTE] = ACTIONS(4268), + [anon_sym_DQUOTE] = ACTIONS(4268), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4272), + [anon_sym_nullptr] = ACTIONS(4272), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4274), + [anon_sym_R_DQUOTE] = ACTIONS(4276), + [anon_sym_LR_DQUOTE] = ACTIONS(4276), + [anon_sym_uR_DQUOTE] = ACTIONS(4276), + [anon_sym_UR_DQUOTE] = ACTIONS(4276), + [anon_sym_u8R_DQUOTE] = ACTIONS(4276), + [anon_sym_co_await] = ACTIONS(4278), + [anon_sym_new] = ACTIONS(4280), + [anon_sym_requires] = ACTIONS(4282), + [sym_this] = ACTIONS(4270), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4284), + [sym_semgrep_named_ellipsis] = ACTIONS(4286), + }, + [1320] = { + [sym_expression] = STATE(3499), + [sym_expression_not_binary] = STATE(3766), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8737), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [sym_identifier] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5068), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_compl] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), + }, + [1321] = { + [sym_expression] = STATE(3501), + [sym_expression_not_binary] = STATE(3766), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8737), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [sym_identifier] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5068), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_compl] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), + }, + [1322] = { + [sym_expression] = STATE(3504), + [sym_expression_not_binary] = STATE(3766), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8737), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [sym_identifier] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5068), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_compl] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), + }, + [1323] = { + [sym_expression] = STATE(3506), + [sym_expression_not_binary] = STATE(3766), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8737), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [sym_identifier] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5068), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_compl] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), + }, + [1324] = { + [sym_expression] = STATE(3509), + [sym_expression_not_binary] = STATE(3766), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8737), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [sym_identifier] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5068), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_compl] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), + }, + [1325] = { + [sym_expression] = STATE(3510), + [sym_expression_not_binary] = STATE(3766), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8737), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [sym_identifier] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5068), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_compl] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), + }, + [1326] = { + [sym_expression] = STATE(5070), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3922), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3922), + [sym_call_expression] = STATE(3922), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3922), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3922), + [sym_char_literal] = STATE(5203), + [sym_concatenated_string] = STATE(5203), + [sym_string_literal] = STATE(3965), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3965), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3922), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3922), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_TILDE] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4200), + [anon_sym_compl] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_sizeof] = ACTIONS(4206), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -230302,94 +224831,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), + [sym_number_literal] = ACTIONS(4208), + [anon_sym_L_SQUOTE] = ACTIONS(4210), + [anon_sym_u_SQUOTE] = ACTIONS(4210), + [anon_sym_U_SQUOTE] = ACTIONS(4210), + [anon_sym_u8_SQUOTE] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4210), + [anon_sym_L_DQUOTE] = ACTIONS(4212), + [anon_sym_u_DQUOTE] = ACTIONS(4212), + [anon_sym_U_DQUOTE] = ACTIONS(4212), + [anon_sym_u8_DQUOTE] = ACTIONS(4212), + [anon_sym_DQUOTE] = ACTIONS(4212), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4214), + [anon_sym_R_DQUOTE] = ACTIONS(4216), + [anon_sym_LR_DQUOTE] = ACTIONS(4216), + [anon_sym_uR_DQUOTE] = ACTIONS(4216), + [anon_sym_UR_DQUOTE] = ACTIONS(4216), + [anon_sym_u8R_DQUOTE] = ACTIONS(4216), + [anon_sym_co_await] = ACTIONS(4218), [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1278] = { - [sym_expression] = STATE(5938), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1327] = { + [sym_expression] = STATE(3511), + [sym_expression_not_binary] = STATE(3766), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8737), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [sym_identifier] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5068), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_compl] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), + }, + [1328] = { + [sym_expression] = STATE(3512), + [sym_expression_not_binary] = STATE(3766), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8737), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [sym_identifier] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5068), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_compl] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), + }, + [1329] = { + [sym_expression] = STATE(5424), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -230420,9 +225153,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5202), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -230436,64 +225168,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1279] = { - [sym_expression] = STATE(5907), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1330] = { + [sym_expression] = STATE(5541), + [sym_expression_not_binary] = STATE(5685), + [sym_conditional_expression] = STATE(5675), + [sym_assignment_expression] = STATE(5675), + [sym_pointer_expression] = STATE(4201), + [sym_unary_expression] = STATE(5675), + [sym_binary_expression] = STATE(5685), + [sym_update_expression] = STATE(5675), + [sym_cast_expression] = STATE(5675), + [sym_sizeof_expression] = STATE(5675), + [sym_alignof_expression] = STATE(5675), + [sym_offsetof_expression] = STATE(5675), + [sym_generic_expression] = STATE(5675), + [sym_subscript_expression] = STATE(4201), + [sym_call_expression] = STATE(4201), + [sym_gnu_asm_expression] = STATE(5675), + [sym_field_expression] = STATE(4201), + [sym_compound_literal_expression] = STATE(5675), + [sym_parenthesized_expression] = STATE(4201), + [sym_char_literal] = STATE(5600), + [sym_concatenated_string] = STATE(5600), + [sym_string_literal] = STATE(4359), + [sym_null] = STATE(5675), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9034), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5675), + [sym_raw_string_literal] = STATE(4359), + [sym_co_await_expression] = STATE(5675), + [sym_new_expression] = STATE(5675), + [sym_delete_expression] = STATE(5675), + [sym_requires_clause] = STATE(5675), + [sym_requires_expression] = STATE(5675), + [sym_lambda_expression] = STATE(5675), + [sym_lambda_capture_specifier] = STATE(6898), + [sym_fold_expression] = STATE(5675), + [sym_parameter_pack_expansion] = STATE(5675), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4201), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4201), + [sym_semgrep_ellipsis] = STATE(5685), + [sym_deep_ellipsis] = STATE(5685), + [sym_identifier] = ACTIONS(4242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4954), + [anon_sym_LPAREN2] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_TILDE] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(4248), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4252), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_sizeof] = ACTIONS(4254), + [anon_sym___alignof__] = ACTIONS(4256), + [anon_sym___alignof] = ACTIONS(4256), + [anon_sym__alignof] = ACTIONS(4256), + [anon_sym_alignof] = ACTIONS(4256), + [anon_sym__Alignof] = ACTIONS(4256), + [anon_sym_offsetof] = ACTIONS(4258), + [anon_sym__Generic] = ACTIONS(4260), + [anon_sym_asm] = ACTIONS(4262), + [anon_sym___asm__] = ACTIONS(4262), + [sym_number_literal] = ACTIONS(4264), + [anon_sym_L_SQUOTE] = ACTIONS(4266), + [anon_sym_u_SQUOTE] = ACTIONS(4266), + [anon_sym_U_SQUOTE] = ACTIONS(4266), + [anon_sym_u8_SQUOTE] = ACTIONS(4266), + [anon_sym_SQUOTE] = ACTIONS(4266), + [anon_sym_L_DQUOTE] = ACTIONS(4268), + [anon_sym_u_DQUOTE] = ACTIONS(4268), + [anon_sym_U_DQUOTE] = ACTIONS(4268), + [anon_sym_u8_DQUOTE] = ACTIONS(4268), + [anon_sym_DQUOTE] = ACTIONS(4268), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4272), + [anon_sym_nullptr] = ACTIONS(4272), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4274), + [anon_sym_R_DQUOTE] = ACTIONS(4276), + [anon_sym_LR_DQUOTE] = ACTIONS(4276), + [anon_sym_uR_DQUOTE] = ACTIONS(4276), + [anon_sym_UR_DQUOTE] = ACTIONS(4276), + [anon_sym_u8R_DQUOTE] = ACTIONS(4276), + [anon_sym_co_await] = ACTIONS(4278), + [anon_sym_new] = ACTIONS(4280), + [anon_sym_requires] = ACTIONS(4282), + [sym_this] = ACTIONS(4270), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4284), + [sym_semgrep_named_ellipsis] = ACTIONS(4286), + }, + [1331] = { + [sym_expression] = STATE(5480), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(5204), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -230525,7 +225358,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -230539,166 +225372,267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1280] = { - [sym_expression] = STATE(3048), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5206), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), + [1332] = { + [sym_expression] = STATE(5189), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8965), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [sym_identifier] = ACTIONS(4236), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4240), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), + }, + [1333] = { + [sym_expression] = STATE(5547), + [sym_expression_not_binary] = STATE(5685), + [sym_conditional_expression] = STATE(5675), + [sym_assignment_expression] = STATE(5675), + [sym_pointer_expression] = STATE(4201), + [sym_unary_expression] = STATE(5675), + [sym_binary_expression] = STATE(5685), + [sym_update_expression] = STATE(5675), + [sym_cast_expression] = STATE(5675), + [sym_sizeof_expression] = STATE(5675), + [sym_alignof_expression] = STATE(5675), + [sym_offsetof_expression] = STATE(5675), + [sym_generic_expression] = STATE(5675), + [sym_subscript_expression] = STATE(4201), + [sym_call_expression] = STATE(4201), + [sym_gnu_asm_expression] = STATE(5675), + [sym_field_expression] = STATE(4201), + [sym_compound_literal_expression] = STATE(5675), + [sym_parenthesized_expression] = STATE(4201), + [sym_char_literal] = STATE(5600), + [sym_concatenated_string] = STATE(5600), + [sym_string_literal] = STATE(4359), + [sym_null] = STATE(5675), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9034), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5675), + [sym_raw_string_literal] = STATE(4359), + [sym_co_await_expression] = STATE(5675), + [sym_new_expression] = STATE(5675), + [sym_delete_expression] = STATE(5675), + [sym_requires_clause] = STATE(5675), + [sym_requires_expression] = STATE(5675), + [sym_lambda_expression] = STATE(5675), + [sym_lambda_capture_specifier] = STATE(6898), + [sym_fold_expression] = STATE(5675), + [sym_parameter_pack_expansion] = STATE(5675), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4201), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4201), + [sym_semgrep_ellipsis] = STATE(5685), + [sym_deep_ellipsis] = STATE(5685), + [sym_identifier] = ACTIONS(4242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4954), + [anon_sym_LPAREN2] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_TILDE] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(4248), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4252), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_sizeof] = ACTIONS(4254), + [anon_sym___alignof__] = ACTIONS(4256), + [anon_sym___alignof] = ACTIONS(4256), + [anon_sym__alignof] = ACTIONS(4256), + [anon_sym_alignof] = ACTIONS(4256), + [anon_sym__Alignof] = ACTIONS(4256), + [anon_sym_offsetof] = ACTIONS(4258), + [anon_sym__Generic] = ACTIONS(4260), + [anon_sym_asm] = ACTIONS(4262), + [anon_sym___asm__] = ACTIONS(4262), + [sym_number_literal] = ACTIONS(4264), + [anon_sym_L_SQUOTE] = ACTIONS(4266), + [anon_sym_u_SQUOTE] = ACTIONS(4266), + [anon_sym_U_SQUOTE] = ACTIONS(4266), + [anon_sym_u8_SQUOTE] = ACTIONS(4266), + [anon_sym_SQUOTE] = ACTIONS(4266), + [anon_sym_L_DQUOTE] = ACTIONS(4268), + [anon_sym_u_DQUOTE] = ACTIONS(4268), + [anon_sym_U_DQUOTE] = ACTIONS(4268), + [anon_sym_u8_DQUOTE] = ACTIONS(4268), + [anon_sym_DQUOTE] = ACTIONS(4268), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4272), + [anon_sym_nullptr] = ACTIONS(4272), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4274), + [anon_sym_R_DQUOTE] = ACTIONS(4276), + [anon_sym_LR_DQUOTE] = ACTIONS(4276), + [anon_sym_uR_DQUOTE] = ACTIONS(4276), + [anon_sym_UR_DQUOTE] = ACTIONS(4276), + [anon_sym_u8R_DQUOTE] = ACTIONS(4276), + [anon_sym_co_await] = ACTIONS(4278), + [anon_sym_new] = ACTIONS(4280), + [anon_sym_requires] = ACTIONS(4282), + [sym_this] = ACTIONS(4270), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4284), + [sym_semgrep_named_ellipsis] = ACTIONS(4286), }, - [1281] = { - [sym_expression] = STATE(5955), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1334] = { + [sym_expression] = STATE(5126), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -230729,9 +225663,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5208), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -230745,64 +225678,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1282] = { - [sym_expression] = STATE(5919), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_RPAREN] = ACTIONS(5210), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1335] = { + [sym_expression] = STATE(4864), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(5242), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -230834,7 +225766,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -230848,69 +225780,374 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1283] = { - [sym_expression] = STATE(6013), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(5212), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1336] = { + [sym_expression] = STATE(5343), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8965), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [sym_identifier] = ACTIONS(4236), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(5244), + [sym_primitive_type] = ACTIONS(4240), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), + }, + [1337] = { + [sym_expression] = STATE(5344), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8965), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [sym_identifier] = ACTIONS(4236), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4240), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), + }, + [1338] = { + [sym_expression] = STATE(5310), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8965), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [sym_identifier] = ACTIONS(4236), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(5246), + [sym_primitive_type] = ACTIONS(4240), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), + }, + [1339] = { + [sym_expression] = STATE(5187), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -230937,82 +226174,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1284] = { - [sym_expression] = STATE(5969), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1340] = { + [sym_expression] = STATE(5103), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -231038,188 +226275,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5214), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1285] = { - [sym_expression] = STATE(3048), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5216), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1286] = { - [sym_expression] = STATE(5935), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(5218), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1341] = { + [sym_expression] = STATE(5127), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3922), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3922), + [sym_call_expression] = STATE(3922), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3922), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3922), + [sym_char_literal] = STATE(5203), + [sym_concatenated_string] = STATE(5203), + [sym_string_literal] = STATE(3965), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3965), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3922), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3922), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_TILDE] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4200), + [anon_sym_compl] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_sizeof] = ACTIONS(4206), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -231229,99 +226361,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), + [sym_number_literal] = ACTIONS(4208), + [anon_sym_L_SQUOTE] = ACTIONS(4210), + [anon_sym_u_SQUOTE] = ACTIONS(4210), + [anon_sym_U_SQUOTE] = ACTIONS(4210), + [anon_sym_u8_SQUOTE] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4210), + [anon_sym_L_DQUOTE] = ACTIONS(4212), + [anon_sym_u_DQUOTE] = ACTIONS(4212), + [anon_sym_U_DQUOTE] = ACTIONS(4212), + [anon_sym_u8_DQUOTE] = ACTIONS(4212), + [anon_sym_DQUOTE] = ACTIONS(4212), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4214), + [anon_sym_R_DQUOTE] = ACTIONS(4216), + [anon_sym_LR_DQUOTE] = ACTIONS(4216), + [anon_sym_uR_DQUOTE] = ACTIONS(4216), + [anon_sym_UR_DQUOTE] = ACTIONS(4216), + [anon_sym_u8R_DQUOTE] = ACTIONS(4216), + [anon_sym_co_await] = ACTIONS(4218), [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1287] = { - [sym_expression] = STATE(5984), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1342] = { + [sym_expression] = STATE(4712), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3922), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3922), + [sym_call_expression] = STATE(3922), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3922), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3922), + [sym_char_literal] = STATE(5203), + [sym_concatenated_string] = STATE(5203), + [sym_string_literal] = STATE(3965), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3965), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3922), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3922), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_TILDE] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4200), + [anon_sym_compl] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_sizeof] = ACTIONS(4206), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -231331,101 +226463,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), + [sym_number_literal] = ACTIONS(4208), + [anon_sym_L_SQUOTE] = ACTIONS(4210), + [anon_sym_u_SQUOTE] = ACTIONS(4210), + [anon_sym_U_SQUOTE] = ACTIONS(4210), + [anon_sym_u8_SQUOTE] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4210), + [anon_sym_L_DQUOTE] = ACTIONS(4212), + [anon_sym_u_DQUOTE] = ACTIONS(4212), + [anon_sym_U_DQUOTE] = ACTIONS(4212), + [anon_sym_u8_DQUOTE] = ACTIONS(4212), + [anon_sym_DQUOTE] = ACTIONS(4212), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5220), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4214), + [anon_sym_R_DQUOTE] = ACTIONS(4216), + [anon_sym_LR_DQUOTE] = ACTIONS(4216), + [anon_sym_uR_DQUOTE] = ACTIONS(4216), + [anon_sym_UR_DQUOTE] = ACTIONS(4216), + [anon_sym_u8R_DQUOTE] = ACTIONS(4216), + [anon_sym_co_await] = ACTIONS(4218), [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1288] = { - [sym_expression] = STATE(5941), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_COLON] = ACTIONS(5222), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), + [1343] = { + [sym_expression] = STATE(5128), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3922), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3922), + [sym_call_expression] = STATE(3922), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3922), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3922), + [sym_char_literal] = STATE(5203), + [sym_concatenated_string] = STATE(5203), + [sym_string_literal] = STATE(3965), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3965), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3922), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3922), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_TILDE] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4200), + [anon_sym_compl] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_sizeof] = ACTIONS(4206), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -231435,99 +226565,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), + [sym_number_literal] = ACTIONS(4208), + [anon_sym_L_SQUOTE] = ACTIONS(4210), + [anon_sym_u_SQUOTE] = ACTIONS(4210), + [anon_sym_U_SQUOTE] = ACTIONS(4210), + [anon_sym_u8_SQUOTE] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4210), + [anon_sym_L_DQUOTE] = ACTIONS(4212), + [anon_sym_u_DQUOTE] = ACTIONS(4212), + [anon_sym_U_DQUOTE] = ACTIONS(4212), + [anon_sym_u8_DQUOTE] = ACTIONS(4212), + [anon_sym_DQUOTE] = ACTIONS(4212), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4214), + [anon_sym_R_DQUOTE] = ACTIONS(4216), + [anon_sym_LR_DQUOTE] = ACTIONS(4216), + [anon_sym_uR_DQUOTE] = ACTIONS(4216), + [anon_sym_UR_DQUOTE] = ACTIONS(4216), + [anon_sym_u8R_DQUOTE] = ACTIONS(4216), + [anon_sym_co_await] = ACTIONS(4218), [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1289] = { - [sym_expression] = STATE(5994), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1344] = { + [sym_expression] = STATE(5129), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3922), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3922), + [sym_call_expression] = STATE(3922), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3922), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3922), + [sym_char_literal] = STATE(5203), + [sym_concatenated_string] = STATE(5203), + [sym_string_literal] = STATE(3965), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3965), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3922), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3922), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_TILDE] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4200), + [anon_sym_compl] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_sizeof] = ACTIONS(4206), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -231537,203 +226667,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), + [sym_number_literal] = ACTIONS(4208), + [anon_sym_L_SQUOTE] = ACTIONS(4210), + [anon_sym_u_SQUOTE] = ACTIONS(4210), + [anon_sym_U_SQUOTE] = ACTIONS(4210), + [anon_sym_u8_SQUOTE] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4210), + [anon_sym_L_DQUOTE] = ACTIONS(4212), + [anon_sym_u_DQUOTE] = ACTIONS(4212), + [anon_sym_U_DQUOTE] = ACTIONS(4212), + [anon_sym_u8_DQUOTE] = ACTIONS(4212), + [anon_sym_DQUOTE] = ACTIONS(4212), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5224), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4214), + [anon_sym_R_DQUOTE] = ACTIONS(4216), + [anon_sym_LR_DQUOTE] = ACTIONS(4216), + [anon_sym_uR_DQUOTE] = ACTIONS(4216), + [anon_sym_UR_DQUOTE] = ACTIONS(4216), + [anon_sym_u8R_DQUOTE] = ACTIONS(4216), + [anon_sym_co_await] = ACTIONS(4218), [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1290] = { - [sym_expression] = STATE(3048), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5226), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), + [1345] = { + [sym_expression] = STATE(5130), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3922), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3922), + [sym_call_expression] = STATE(3922), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3922), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3922), + [sym_char_literal] = STATE(5203), + [sym_concatenated_string] = STATE(5203), + [sym_string_literal] = STATE(3965), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3965), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3922), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3922), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_TILDE] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4200), + [anon_sym_compl] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_sizeof] = ACTIONS(4206), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(4208), + [anon_sym_L_SQUOTE] = ACTIONS(4210), + [anon_sym_u_SQUOTE] = ACTIONS(4210), + [anon_sym_U_SQUOTE] = ACTIONS(4210), + [anon_sym_u8_SQUOTE] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4210), + [anon_sym_L_DQUOTE] = ACTIONS(4212), + [anon_sym_u_DQUOTE] = ACTIONS(4212), + [anon_sym_U_DQUOTE] = ACTIONS(4212), + [anon_sym_u8_DQUOTE] = ACTIONS(4212), + [anon_sym_DQUOTE] = ACTIONS(4212), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4214), + [anon_sym_R_DQUOTE] = ACTIONS(4216), + [anon_sym_LR_DQUOTE] = ACTIONS(4216), + [anon_sym_uR_DQUOTE] = ACTIONS(4216), + [anon_sym_UR_DQUOTE] = ACTIONS(4216), + [anon_sym_u8R_DQUOTE] = ACTIONS(4216), + [anon_sym_co_await] = ACTIONS(4218), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1291] = { - [sym_expression] = STATE(6000), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1346] = { + [sym_expression] = STATE(5131), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3922), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3922), + [sym_call_expression] = STATE(3922), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3922), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3922), + [sym_char_literal] = STATE(5203), + [sym_concatenated_string] = STATE(5203), + [sym_string_literal] = STATE(3965), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3965), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3922), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3922), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_TILDE] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4200), + [anon_sym_compl] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_sizeof] = ACTIONS(4206), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -231743,204 +226871,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), + [sym_number_literal] = ACTIONS(4208), + [anon_sym_L_SQUOTE] = ACTIONS(4210), + [anon_sym_u_SQUOTE] = ACTIONS(4210), + [anon_sym_U_SQUOTE] = ACTIONS(4210), + [anon_sym_u8_SQUOTE] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4210), + [anon_sym_L_DQUOTE] = ACTIONS(4212), + [anon_sym_u_DQUOTE] = ACTIONS(4212), + [anon_sym_U_DQUOTE] = ACTIONS(4212), + [anon_sym_u8_DQUOTE] = ACTIONS(4212), + [anon_sym_DQUOTE] = ACTIONS(4212), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5228), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4214), + [anon_sym_R_DQUOTE] = ACTIONS(4216), + [anon_sym_LR_DQUOTE] = ACTIONS(4216), + [anon_sym_uR_DQUOTE] = ACTIONS(4216), + [anon_sym_UR_DQUOTE] = ACTIONS(4216), + [anon_sym_u8R_DQUOTE] = ACTIONS(4216), + [anon_sym_co_await] = ACTIONS(4218), [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1292] = { - [sym_expression] = STATE(3048), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5230), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), + [1347] = { + [sym_expression] = STATE(5132), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3922), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3922), + [sym_call_expression] = STATE(3922), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3922), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3922), + [sym_char_literal] = STATE(5203), + [sym_concatenated_string] = STATE(5203), + [sym_string_literal] = STATE(3965), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3965), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3922), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3922), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_TILDE] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4200), + [anon_sym_compl] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_sizeof] = ACTIONS(4206), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(4208), + [anon_sym_L_SQUOTE] = ACTIONS(4210), + [anon_sym_u_SQUOTE] = ACTIONS(4210), + [anon_sym_U_SQUOTE] = ACTIONS(4210), + [anon_sym_u8_SQUOTE] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4210), + [anon_sym_L_DQUOTE] = ACTIONS(4212), + [anon_sym_u_DQUOTE] = ACTIONS(4212), + [anon_sym_U_DQUOTE] = ACTIONS(4212), + [anon_sym_u8_DQUOTE] = ACTIONS(4212), + [anon_sym_DQUOTE] = ACTIONS(4212), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4214), + [anon_sym_R_DQUOTE] = ACTIONS(4216), + [anon_sym_LR_DQUOTE] = ACTIONS(4216), + [anon_sym_uR_DQUOTE] = ACTIONS(4216), + [anon_sym_UR_DQUOTE] = ACTIONS(4216), + [anon_sym_u8R_DQUOTE] = ACTIONS(4216), + [anon_sym_co_await] = ACTIONS(4218), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1293] = { - [sym_expression] = STATE(6021), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(5232), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1348] = { + [sym_expression] = STATE(5133), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3922), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3922), + [sym_call_expression] = STATE(3922), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3922), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3922), + [sym_char_literal] = STATE(5203), + [sym_concatenated_string] = STATE(5203), + [sym_string_literal] = STATE(3965), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3965), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3922), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3922), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_TILDE] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4200), + [anon_sym_compl] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_sizeof] = ACTIONS(4206), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -231950,202 +227075,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), + [sym_number_literal] = ACTIONS(4208), + [anon_sym_L_SQUOTE] = ACTIONS(4210), + [anon_sym_u_SQUOTE] = ACTIONS(4210), + [anon_sym_U_SQUOTE] = ACTIONS(4210), + [anon_sym_u8_SQUOTE] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4210), + [anon_sym_L_DQUOTE] = ACTIONS(4212), + [anon_sym_u_DQUOTE] = ACTIONS(4212), + [anon_sym_U_DQUOTE] = ACTIONS(4212), + [anon_sym_u8_DQUOTE] = ACTIONS(4212), + [anon_sym_DQUOTE] = ACTIONS(4212), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4214), + [anon_sym_R_DQUOTE] = ACTIONS(4216), + [anon_sym_LR_DQUOTE] = ACTIONS(4216), + [anon_sym_uR_DQUOTE] = ACTIONS(4216), + [anon_sym_UR_DQUOTE] = ACTIONS(4216), + [anon_sym_u8R_DQUOTE] = ACTIONS(4216), + [anon_sym_co_await] = ACTIONS(4218), [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1294] = { - [sym_expression] = STATE(3048), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5234), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), + [1349] = { + [sym_expression] = STATE(5134), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3922), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3922), + [sym_call_expression] = STATE(3922), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3922), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3922), + [sym_char_literal] = STATE(5203), + [sym_concatenated_string] = STATE(5203), + [sym_string_literal] = STATE(3965), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3965), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3922), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3922), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_TILDE] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4200), + [anon_sym_compl] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_sizeof] = ACTIONS(4206), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(4208), + [anon_sym_L_SQUOTE] = ACTIONS(4210), + [anon_sym_u_SQUOTE] = ACTIONS(4210), + [anon_sym_U_SQUOTE] = ACTIONS(4210), + [anon_sym_u8_SQUOTE] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4210), + [anon_sym_L_DQUOTE] = ACTIONS(4212), + [anon_sym_u_DQUOTE] = ACTIONS(4212), + [anon_sym_U_DQUOTE] = ACTIONS(4212), + [anon_sym_u8_DQUOTE] = ACTIONS(4212), + [anon_sym_DQUOTE] = ACTIONS(4212), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4214), + [anon_sym_R_DQUOTE] = ACTIONS(4216), + [anon_sym_LR_DQUOTE] = ACTIONS(4216), + [anon_sym_uR_DQUOTE] = ACTIONS(4216), + [anon_sym_UR_DQUOTE] = ACTIONS(4216), + [anon_sym_u8R_DQUOTE] = ACTIONS(4216), + [anon_sym_co_await] = ACTIONS(4218), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1295] = { - [sym_expression] = STATE(6014), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1350] = { + [sym_expression] = STATE(5135), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3922), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3922), + [sym_call_expression] = STATE(3922), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3922), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3922), + [sym_char_literal] = STATE(5203), + [sym_concatenated_string] = STATE(5203), + [sym_string_literal] = STATE(3965), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3965), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3922), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3922), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_TILDE] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4200), + [anon_sym_compl] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_sizeof] = ACTIONS(4206), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -232155,198 +227279,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), + [sym_number_literal] = ACTIONS(4208), + [anon_sym_L_SQUOTE] = ACTIONS(4210), + [anon_sym_u_SQUOTE] = ACTIONS(4210), + [anon_sym_U_SQUOTE] = ACTIONS(4210), + [anon_sym_u8_SQUOTE] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4210), + [anon_sym_L_DQUOTE] = ACTIONS(4212), + [anon_sym_u_DQUOTE] = ACTIONS(4212), + [anon_sym_U_DQUOTE] = ACTIONS(4212), + [anon_sym_u8_DQUOTE] = ACTIONS(4212), + [anon_sym_DQUOTE] = ACTIONS(4212), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5236), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4214), + [anon_sym_R_DQUOTE] = ACTIONS(4216), + [anon_sym_LR_DQUOTE] = ACTIONS(4216), + [anon_sym_uR_DQUOTE] = ACTIONS(4216), + [anon_sym_UR_DQUOTE] = ACTIONS(4216), + [anon_sym_u8R_DQUOTE] = ACTIONS(4216), + [anon_sym_co_await] = ACTIONS(4218), [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1296] = { - [sym_expression] = STATE(3048), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5238), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), + [1351] = { + [sym_expression] = STATE(5297), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8965), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [sym_identifier] = ACTIONS(4236), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4240), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), }, - [1297] = { - [sym_expression] = STATE(6022), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1352] = { + [sym_expression] = STATE(5517), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -232377,9 +227499,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5240), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -232393,64 +227514,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1298] = { - [sym_expression] = STATE(5928), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1353] = { + [sym_expression] = STATE(5109), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(5242), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -232482,7 +227602,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -232496,63 +227616,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1299] = { - [sym_expression] = STATE(6026), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1354] = { + [sym_expression] = STATE(5539), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -232583,9 +227703,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5244), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -232599,63 +227718,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1300] = { - [sym_expression] = STATE(6029), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1355] = { + [sym_expression] = STATE(5223), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8965), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [sym_identifier] = ACTIONS(4236), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4240), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), + }, + [1356] = { + [sym_expression] = STATE(5315), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -232686,9 +227907,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5246), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -232702,64 +227922,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1301] = { - [sym_expression] = STATE(5936), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1357] = { + [sym_expression] = STATE(5543), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(5248), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -232791,7 +228010,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -232805,69 +228024,374 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1302] = { - [sym_expression] = STATE(6035), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_COLON] = ACTIONS(5250), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), + [1358] = { + [sym_expression] = STATE(5257), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8965), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [sym_identifier] = ACTIONS(4236), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4240), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), + }, + [1359] = { + [sym_expression] = STATE(3417), + [sym_expression_not_binary] = STATE(3766), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8737), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [sym_identifier] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3706), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(5248), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_compl] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), + }, + [1360] = { + [sym_expression] = STATE(3419), + [sym_expression_not_binary] = STATE(3766), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8737), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [sym_identifier] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3706), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_compl] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), + }, + [1361] = { + [sym_expression] = STATE(4702), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -232894,186 +228418,694 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), + [anon_sym_co_await] = ACTIONS(157), [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1303] = { - [sym_expression] = STATE(3048), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5252), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), + [1362] = { + [sym_expression] = STATE(3994), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(5250), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), }, - [1304] = { - [sym_expression] = STATE(5917), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_COLON] = ACTIONS(5254), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), + [1363] = { + [sym_expression] = STATE(3996), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), + }, + [1364] = { + [sym_expression] = STATE(3401), + [sym_expression_not_binary] = STATE(3766), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8737), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [sym_identifier] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3706), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(5252), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_compl] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), + }, + [1365] = { + [sym_expression] = STATE(4032), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(5254), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), + }, + [1366] = { + [sym_expression] = STATE(3940), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), + }, + [1367] = { + [sym_expression] = STATE(4005), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), + }, + [1368] = { + [sym_expression] = STATE(4891), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(5256), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -233100,495 +229132,1918 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), + [anon_sym_co_await] = ACTIONS(157), [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1305] = { - [sym_expression] = STATE(3048), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5256), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1306] = { - [sym_expression] = STATE(3048), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5258), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), + [1369] = { + [sym_expression] = STATE(3063), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1307] = { - [sym_expression] = STATE(3048), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5260), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), + [1370] = { + [sym_expression] = STATE(2893), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1308] = { - [sym_expression] = STATE(3048), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5262), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), + [1371] = { + [sym_expression] = STATE(3064), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1309] = { - [sym_expression] = STATE(5985), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_COLON] = ACTIONS(5264), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), + [1372] = { + [sym_expression] = STATE(3065), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1373] = { + [sym_expression] = STATE(3066), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1374] = { + [sym_expression] = STATE(3067), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1375] = { + [sym_expression] = STATE(4081), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), + }, + [1376] = { + [sym_expression] = STATE(3068), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1377] = { + [sym_expression] = STATE(3069), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1378] = { + [sym_expression] = STATE(3070), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1379] = { + [sym_expression] = STATE(3071), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1380] = { + [sym_expression] = STATE(3514), + [sym_expression_not_binary] = STATE(3766), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8737), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [sym_identifier] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3706), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_compl] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), + }, + [1381] = { + [sym_expression] = STATE(3850), + [sym_expression_not_binary] = STATE(4146), + [sym_conditional_expression] = STATE(4141), + [sym_assignment_expression] = STATE(4141), + [sym_pointer_expression] = STATE(4149), + [sym_unary_expression] = STATE(4141), + [sym_binary_expression] = STATE(4146), + [sym_update_expression] = STATE(4141), + [sym_cast_expression] = STATE(4141), + [sym_sizeof_expression] = STATE(4141), + [sym_alignof_expression] = STATE(4141), + [sym_offsetof_expression] = STATE(4141), + [sym_generic_expression] = STATE(4141), + [sym_subscript_expression] = STATE(4149), + [sym_call_expression] = STATE(4149), + [sym_gnu_asm_expression] = STATE(4141), + [sym_field_expression] = STATE(4149), + [sym_compound_literal_expression] = STATE(4141), + [sym_parenthesized_expression] = STATE(4149), + [sym_char_literal] = STATE(4104), + [sym_concatenated_string] = STATE(4104), + [sym_string_literal] = STATE(2642), + [sym_null] = STATE(4141), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8879), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4141), + [sym_raw_string_literal] = STATE(2642), + [sym_co_await_expression] = STATE(4141), + [sym_new_expression] = STATE(4141), + [sym_delete_expression] = STATE(4141), + [sym_requires_clause] = STATE(4141), + [sym_requires_expression] = STATE(4141), + [sym_lambda_expression] = STATE(4141), + [sym_lambda_capture_specifier] = STATE(6832), + [sym_fold_expression] = STATE(4141), + [sym_parameter_pack_expansion] = STATE(4141), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4149), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4149), + [sym_semgrep_ellipsis] = STATE(4146), + [sym_deep_ellipsis] = STATE(4146), + [sym_identifier] = ACTIONS(2981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4990), + [anon_sym_LPAREN2] = ACTIONS(5044), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(2987), + [anon_sym_LBRACK] = ACTIONS(5258), + [sym_primitive_type] = ACTIONS(2991), + [anon_sym_not] = ACTIONS(2983), + [anon_sym_compl] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(4992), + [anon_sym_PLUS_PLUS] = ACTIONS(4992), + [anon_sym_sizeof] = ACTIONS(2993), + [anon_sym___alignof__] = ACTIONS(2995), + [anon_sym___alignof] = ACTIONS(2995), + [anon_sym__alignof] = ACTIONS(2995), + [anon_sym_alignof] = ACTIONS(2995), + [anon_sym__Alignof] = ACTIONS(2995), + [anon_sym_offsetof] = ACTIONS(2997), + [anon_sym__Generic] = ACTIONS(2999), + [anon_sym_asm] = ACTIONS(3001), + [anon_sym___asm__] = ACTIONS(3001), + [sym_number_literal] = ACTIONS(3003), + [anon_sym_L_SQUOTE] = ACTIONS(3005), + [anon_sym_u_SQUOTE] = ACTIONS(3005), + [anon_sym_U_SQUOTE] = ACTIONS(3005), + [anon_sym_u8_SQUOTE] = ACTIONS(3005), + [anon_sym_SQUOTE] = ACTIONS(3005), + [anon_sym_L_DQUOTE] = ACTIONS(3007), + [anon_sym_u_DQUOTE] = ACTIONS(3007), + [anon_sym_U_DQUOTE] = ACTIONS(3007), + [anon_sym_u8_DQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE] = ACTIONS(3007), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [anon_sym_NULL] = ACTIONS(3011), + [anon_sym_nullptr] = ACTIONS(3011), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3013), + [anon_sym_R_DQUOTE] = ACTIONS(3015), + [anon_sym_LR_DQUOTE] = ACTIONS(3015), + [anon_sym_uR_DQUOTE] = ACTIONS(3015), + [anon_sym_UR_DQUOTE] = ACTIONS(3015), + [anon_sym_u8R_DQUOTE] = ACTIONS(3015), + [anon_sym_co_await] = ACTIONS(3017), + [anon_sym_new] = ACTIONS(3019), + [anon_sym_requires] = ACTIONS(3021), + [sym_this] = ACTIONS(3009), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3023), + [sym_semgrep_named_ellipsis] = ACTIONS(3025), + }, + [1382] = { + [sym_expression] = STATE(3851), + [sym_expression_not_binary] = STATE(4146), + [sym_conditional_expression] = STATE(4141), + [sym_assignment_expression] = STATE(4141), + [sym_pointer_expression] = STATE(4149), + [sym_unary_expression] = STATE(4141), + [sym_binary_expression] = STATE(4146), + [sym_update_expression] = STATE(4141), + [sym_cast_expression] = STATE(4141), + [sym_sizeof_expression] = STATE(4141), + [sym_alignof_expression] = STATE(4141), + [sym_offsetof_expression] = STATE(4141), + [sym_generic_expression] = STATE(4141), + [sym_subscript_expression] = STATE(4149), + [sym_call_expression] = STATE(4149), + [sym_gnu_asm_expression] = STATE(4141), + [sym_field_expression] = STATE(4149), + [sym_compound_literal_expression] = STATE(4141), + [sym_parenthesized_expression] = STATE(4149), + [sym_char_literal] = STATE(4104), + [sym_concatenated_string] = STATE(4104), + [sym_string_literal] = STATE(2642), + [sym_null] = STATE(4141), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8879), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4141), + [sym_raw_string_literal] = STATE(2642), + [sym_co_await_expression] = STATE(4141), + [sym_new_expression] = STATE(4141), + [sym_delete_expression] = STATE(4141), + [sym_requires_clause] = STATE(4141), + [sym_requires_expression] = STATE(4141), + [sym_lambda_expression] = STATE(4141), + [sym_lambda_capture_specifier] = STATE(6832), + [sym_fold_expression] = STATE(4141), + [sym_parameter_pack_expansion] = STATE(4141), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4149), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4149), + [sym_semgrep_ellipsis] = STATE(4146), + [sym_deep_ellipsis] = STATE(4146), + [sym_identifier] = ACTIONS(2981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4990), + [anon_sym_LPAREN2] = ACTIONS(5044), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(2987), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2991), + [anon_sym_not] = ACTIONS(2983), + [anon_sym_compl] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(4992), + [anon_sym_PLUS_PLUS] = ACTIONS(4992), + [anon_sym_sizeof] = ACTIONS(2993), + [anon_sym___alignof__] = ACTIONS(2995), + [anon_sym___alignof] = ACTIONS(2995), + [anon_sym__alignof] = ACTIONS(2995), + [anon_sym_alignof] = ACTIONS(2995), + [anon_sym__Alignof] = ACTIONS(2995), + [anon_sym_offsetof] = ACTIONS(2997), + [anon_sym__Generic] = ACTIONS(2999), + [anon_sym_asm] = ACTIONS(3001), + [anon_sym___asm__] = ACTIONS(3001), + [sym_number_literal] = ACTIONS(3003), + [anon_sym_L_SQUOTE] = ACTIONS(3005), + [anon_sym_u_SQUOTE] = ACTIONS(3005), + [anon_sym_U_SQUOTE] = ACTIONS(3005), + [anon_sym_u8_SQUOTE] = ACTIONS(3005), + [anon_sym_SQUOTE] = ACTIONS(3005), + [anon_sym_L_DQUOTE] = ACTIONS(3007), + [anon_sym_u_DQUOTE] = ACTIONS(3007), + [anon_sym_U_DQUOTE] = ACTIONS(3007), + [anon_sym_u8_DQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE] = ACTIONS(3007), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [anon_sym_NULL] = ACTIONS(3011), + [anon_sym_nullptr] = ACTIONS(3011), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3013), + [anon_sym_R_DQUOTE] = ACTIONS(3015), + [anon_sym_LR_DQUOTE] = ACTIONS(3015), + [anon_sym_uR_DQUOTE] = ACTIONS(3015), + [anon_sym_UR_DQUOTE] = ACTIONS(3015), + [anon_sym_u8R_DQUOTE] = ACTIONS(3015), + [anon_sym_co_await] = ACTIONS(3017), + [anon_sym_new] = ACTIONS(3019), + [anon_sym_requires] = ACTIONS(3021), + [sym_this] = ACTIONS(3009), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3023), + [sym_semgrep_named_ellipsis] = ACTIONS(3025), + }, + [1383] = { + [sym_expression] = STATE(3860), + [sym_expression_not_binary] = STATE(4146), + [sym_conditional_expression] = STATE(4141), + [sym_assignment_expression] = STATE(4141), + [sym_pointer_expression] = STATE(4149), + [sym_unary_expression] = STATE(4141), + [sym_binary_expression] = STATE(4146), + [sym_update_expression] = STATE(4141), + [sym_cast_expression] = STATE(4141), + [sym_sizeof_expression] = STATE(4141), + [sym_alignof_expression] = STATE(4141), + [sym_offsetof_expression] = STATE(4141), + [sym_generic_expression] = STATE(4141), + [sym_subscript_expression] = STATE(4149), + [sym_call_expression] = STATE(4149), + [sym_gnu_asm_expression] = STATE(4141), + [sym_field_expression] = STATE(4149), + [sym_compound_literal_expression] = STATE(4141), + [sym_parenthesized_expression] = STATE(4149), + [sym_char_literal] = STATE(4104), + [sym_concatenated_string] = STATE(4104), + [sym_string_literal] = STATE(2642), + [sym_null] = STATE(4141), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8879), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4141), + [sym_raw_string_literal] = STATE(2642), + [sym_co_await_expression] = STATE(4141), + [sym_new_expression] = STATE(4141), + [sym_delete_expression] = STATE(4141), + [sym_requires_clause] = STATE(4141), + [sym_requires_expression] = STATE(4141), + [sym_lambda_expression] = STATE(4141), + [sym_lambda_capture_specifier] = STATE(6832), + [sym_fold_expression] = STATE(4141), + [sym_parameter_pack_expansion] = STATE(4141), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4149), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4149), + [sym_semgrep_ellipsis] = STATE(4146), + [sym_deep_ellipsis] = STATE(4146), + [sym_identifier] = ACTIONS(2981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4990), + [anon_sym_LPAREN2] = ACTIONS(5044), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(2987), + [anon_sym_LBRACK] = ACTIONS(5260), + [sym_primitive_type] = ACTIONS(2991), + [anon_sym_not] = ACTIONS(2983), + [anon_sym_compl] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(4992), + [anon_sym_PLUS_PLUS] = ACTIONS(4992), + [anon_sym_sizeof] = ACTIONS(2993), + [anon_sym___alignof__] = ACTIONS(2995), + [anon_sym___alignof] = ACTIONS(2995), + [anon_sym__alignof] = ACTIONS(2995), + [anon_sym_alignof] = ACTIONS(2995), + [anon_sym__Alignof] = ACTIONS(2995), + [anon_sym_offsetof] = ACTIONS(2997), + [anon_sym__Generic] = ACTIONS(2999), + [anon_sym_asm] = ACTIONS(3001), + [anon_sym___asm__] = ACTIONS(3001), + [sym_number_literal] = ACTIONS(3003), + [anon_sym_L_SQUOTE] = ACTIONS(3005), + [anon_sym_u_SQUOTE] = ACTIONS(3005), + [anon_sym_U_SQUOTE] = ACTIONS(3005), + [anon_sym_u8_SQUOTE] = ACTIONS(3005), + [anon_sym_SQUOTE] = ACTIONS(3005), + [anon_sym_L_DQUOTE] = ACTIONS(3007), + [anon_sym_u_DQUOTE] = ACTIONS(3007), + [anon_sym_U_DQUOTE] = ACTIONS(3007), + [anon_sym_u8_DQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE] = ACTIONS(3007), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [anon_sym_NULL] = ACTIONS(3011), + [anon_sym_nullptr] = ACTIONS(3011), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3013), + [anon_sym_R_DQUOTE] = ACTIONS(3015), + [anon_sym_LR_DQUOTE] = ACTIONS(3015), + [anon_sym_uR_DQUOTE] = ACTIONS(3015), + [anon_sym_UR_DQUOTE] = ACTIONS(3015), + [anon_sym_u8R_DQUOTE] = ACTIONS(3015), + [anon_sym_co_await] = ACTIONS(3017), + [anon_sym_new] = ACTIONS(3019), + [anon_sym_requires] = ACTIONS(3021), + [sym_this] = ACTIONS(3009), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3023), + [sym_semgrep_named_ellipsis] = ACTIONS(3025), + }, + [1384] = { + [sym_expression] = STATE(3891), + [sym_expression_not_binary] = STATE(4146), + [sym_conditional_expression] = STATE(4141), + [sym_assignment_expression] = STATE(4141), + [sym_pointer_expression] = STATE(4149), + [sym_unary_expression] = STATE(4141), + [sym_binary_expression] = STATE(4146), + [sym_update_expression] = STATE(4141), + [sym_cast_expression] = STATE(4141), + [sym_sizeof_expression] = STATE(4141), + [sym_alignof_expression] = STATE(4141), + [sym_offsetof_expression] = STATE(4141), + [sym_generic_expression] = STATE(4141), + [sym_subscript_expression] = STATE(4149), + [sym_call_expression] = STATE(4149), + [sym_gnu_asm_expression] = STATE(4141), + [sym_field_expression] = STATE(4149), + [sym_compound_literal_expression] = STATE(4141), + [sym_parenthesized_expression] = STATE(4149), + [sym_char_literal] = STATE(4104), + [sym_concatenated_string] = STATE(4104), + [sym_string_literal] = STATE(2642), + [sym_null] = STATE(4141), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8879), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4141), + [sym_raw_string_literal] = STATE(2642), + [sym_co_await_expression] = STATE(4141), + [sym_new_expression] = STATE(4141), + [sym_delete_expression] = STATE(4141), + [sym_requires_clause] = STATE(4141), + [sym_requires_expression] = STATE(4141), + [sym_lambda_expression] = STATE(4141), + [sym_lambda_capture_specifier] = STATE(6832), + [sym_fold_expression] = STATE(4141), + [sym_parameter_pack_expansion] = STATE(4141), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4149), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4149), + [sym_semgrep_ellipsis] = STATE(4146), + [sym_deep_ellipsis] = STATE(4146), + [sym_identifier] = ACTIONS(2981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4990), + [anon_sym_LPAREN2] = ACTIONS(5044), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(2987), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2991), + [anon_sym_not] = ACTIONS(2983), + [anon_sym_compl] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(4992), + [anon_sym_PLUS_PLUS] = ACTIONS(4992), + [anon_sym_sizeof] = ACTIONS(2993), + [anon_sym___alignof__] = ACTIONS(2995), + [anon_sym___alignof] = ACTIONS(2995), + [anon_sym__alignof] = ACTIONS(2995), + [anon_sym_alignof] = ACTIONS(2995), + [anon_sym__Alignof] = ACTIONS(2995), + [anon_sym_offsetof] = ACTIONS(2997), + [anon_sym__Generic] = ACTIONS(2999), + [anon_sym_asm] = ACTIONS(3001), + [anon_sym___asm__] = ACTIONS(3001), + [sym_number_literal] = ACTIONS(3003), + [anon_sym_L_SQUOTE] = ACTIONS(3005), + [anon_sym_u_SQUOTE] = ACTIONS(3005), + [anon_sym_U_SQUOTE] = ACTIONS(3005), + [anon_sym_u8_SQUOTE] = ACTIONS(3005), + [anon_sym_SQUOTE] = ACTIONS(3005), + [anon_sym_L_DQUOTE] = ACTIONS(3007), + [anon_sym_u_DQUOTE] = ACTIONS(3007), + [anon_sym_U_DQUOTE] = ACTIONS(3007), + [anon_sym_u8_DQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE] = ACTIONS(3007), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [anon_sym_NULL] = ACTIONS(3011), + [anon_sym_nullptr] = ACTIONS(3011), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3013), + [anon_sym_R_DQUOTE] = ACTIONS(3015), + [anon_sym_LR_DQUOTE] = ACTIONS(3015), + [anon_sym_uR_DQUOTE] = ACTIONS(3015), + [anon_sym_UR_DQUOTE] = ACTIONS(3015), + [anon_sym_u8R_DQUOTE] = ACTIONS(3015), + [anon_sym_co_await] = ACTIONS(3017), + [anon_sym_new] = ACTIONS(3019), + [anon_sym_requires] = ACTIONS(3021), + [sym_this] = ACTIONS(3009), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3023), + [sym_semgrep_named_ellipsis] = ACTIONS(3025), + }, + [1385] = { + [sym_expression] = STATE(3722), + [sym_expression_not_binary] = STATE(4146), + [sym_conditional_expression] = STATE(4141), + [sym_assignment_expression] = STATE(4141), + [sym_pointer_expression] = STATE(4149), + [sym_unary_expression] = STATE(4141), + [sym_binary_expression] = STATE(4146), + [sym_update_expression] = STATE(4141), + [sym_cast_expression] = STATE(4141), + [sym_sizeof_expression] = STATE(4141), + [sym_alignof_expression] = STATE(4141), + [sym_offsetof_expression] = STATE(4141), + [sym_generic_expression] = STATE(4141), + [sym_subscript_expression] = STATE(4149), + [sym_call_expression] = STATE(4149), + [sym_gnu_asm_expression] = STATE(4141), + [sym_field_expression] = STATE(4149), + [sym_compound_literal_expression] = STATE(4141), + [sym_parenthesized_expression] = STATE(4149), + [sym_char_literal] = STATE(4104), + [sym_concatenated_string] = STATE(4104), + [sym_string_literal] = STATE(2642), + [sym_null] = STATE(4141), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8879), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4141), + [sym_raw_string_literal] = STATE(2642), + [sym_co_await_expression] = STATE(4141), + [sym_new_expression] = STATE(4141), + [sym_delete_expression] = STATE(4141), + [sym_requires_clause] = STATE(4141), + [sym_requires_expression] = STATE(4141), + [sym_lambda_expression] = STATE(4141), + [sym_lambda_capture_specifier] = STATE(6832), + [sym_fold_expression] = STATE(4141), + [sym_parameter_pack_expansion] = STATE(4141), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4149), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4149), + [sym_semgrep_ellipsis] = STATE(4146), + [sym_deep_ellipsis] = STATE(4146), + [sym_identifier] = ACTIONS(2981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4990), + [anon_sym_LPAREN2] = ACTIONS(5044), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(2987), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2991), + [anon_sym_not] = ACTIONS(2983), + [anon_sym_compl] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(4992), + [anon_sym_PLUS_PLUS] = ACTIONS(4992), + [anon_sym_sizeof] = ACTIONS(2993), + [anon_sym___alignof__] = ACTIONS(2995), + [anon_sym___alignof] = ACTIONS(2995), + [anon_sym__alignof] = ACTIONS(2995), + [anon_sym_alignof] = ACTIONS(2995), + [anon_sym__Alignof] = ACTIONS(2995), + [anon_sym_offsetof] = ACTIONS(2997), + [anon_sym__Generic] = ACTIONS(2999), + [anon_sym_asm] = ACTIONS(3001), + [anon_sym___asm__] = ACTIONS(3001), + [sym_number_literal] = ACTIONS(3003), + [anon_sym_L_SQUOTE] = ACTIONS(3005), + [anon_sym_u_SQUOTE] = ACTIONS(3005), + [anon_sym_U_SQUOTE] = ACTIONS(3005), + [anon_sym_u8_SQUOTE] = ACTIONS(3005), + [anon_sym_SQUOTE] = ACTIONS(3005), + [anon_sym_L_DQUOTE] = ACTIONS(3007), + [anon_sym_u_DQUOTE] = ACTIONS(3007), + [anon_sym_U_DQUOTE] = ACTIONS(3007), + [anon_sym_u8_DQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE] = ACTIONS(3007), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [anon_sym_NULL] = ACTIONS(3011), + [anon_sym_nullptr] = ACTIONS(3011), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3013), + [anon_sym_R_DQUOTE] = ACTIONS(3015), + [anon_sym_LR_DQUOTE] = ACTIONS(3015), + [anon_sym_uR_DQUOTE] = ACTIONS(3015), + [anon_sym_UR_DQUOTE] = ACTIONS(3015), + [anon_sym_u8R_DQUOTE] = ACTIONS(3015), + [anon_sym_co_await] = ACTIONS(3017), + [anon_sym_new] = ACTIONS(3019), + [anon_sym_requires] = ACTIONS(3021), + [sym_this] = ACTIONS(3009), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3023), + [sym_semgrep_named_ellipsis] = ACTIONS(3025), + }, + [1386] = { + [sym_expression] = STATE(3740), + [sym_expression_not_binary] = STATE(4146), + [sym_conditional_expression] = STATE(4141), + [sym_assignment_expression] = STATE(4141), + [sym_pointer_expression] = STATE(4149), + [sym_unary_expression] = STATE(4141), + [sym_binary_expression] = STATE(4146), + [sym_update_expression] = STATE(4141), + [sym_cast_expression] = STATE(4141), + [sym_sizeof_expression] = STATE(4141), + [sym_alignof_expression] = STATE(4141), + [sym_offsetof_expression] = STATE(4141), + [sym_generic_expression] = STATE(4141), + [sym_subscript_expression] = STATE(4149), + [sym_call_expression] = STATE(4149), + [sym_gnu_asm_expression] = STATE(4141), + [sym_field_expression] = STATE(4149), + [sym_compound_literal_expression] = STATE(4141), + [sym_parenthesized_expression] = STATE(4149), + [sym_char_literal] = STATE(4104), + [sym_concatenated_string] = STATE(4104), + [sym_string_literal] = STATE(2642), + [sym_null] = STATE(4141), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8879), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4141), + [sym_raw_string_literal] = STATE(2642), + [sym_co_await_expression] = STATE(4141), + [sym_new_expression] = STATE(4141), + [sym_delete_expression] = STATE(4141), + [sym_requires_clause] = STATE(4141), + [sym_requires_expression] = STATE(4141), + [sym_lambda_expression] = STATE(4141), + [sym_lambda_capture_specifier] = STATE(6832), + [sym_fold_expression] = STATE(4141), + [sym_parameter_pack_expansion] = STATE(4141), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4149), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4149), + [sym_semgrep_ellipsis] = STATE(4146), + [sym_deep_ellipsis] = STATE(4146), + [sym_identifier] = ACTIONS(2981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4990), + [anon_sym_LPAREN2] = ACTIONS(5044), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(2987), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2991), + [anon_sym_not] = ACTIONS(2983), + [anon_sym_compl] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(4992), + [anon_sym_PLUS_PLUS] = ACTIONS(4992), + [anon_sym_sizeof] = ACTIONS(2993), + [anon_sym___alignof__] = ACTIONS(2995), + [anon_sym___alignof] = ACTIONS(2995), + [anon_sym__alignof] = ACTIONS(2995), + [anon_sym_alignof] = ACTIONS(2995), + [anon_sym__Alignof] = ACTIONS(2995), + [anon_sym_offsetof] = ACTIONS(2997), + [anon_sym__Generic] = ACTIONS(2999), + [anon_sym_asm] = ACTIONS(3001), + [anon_sym___asm__] = ACTIONS(3001), + [sym_number_literal] = ACTIONS(3003), + [anon_sym_L_SQUOTE] = ACTIONS(3005), + [anon_sym_u_SQUOTE] = ACTIONS(3005), + [anon_sym_U_SQUOTE] = ACTIONS(3005), + [anon_sym_u8_SQUOTE] = ACTIONS(3005), + [anon_sym_SQUOTE] = ACTIONS(3005), + [anon_sym_L_DQUOTE] = ACTIONS(3007), + [anon_sym_u_DQUOTE] = ACTIONS(3007), + [anon_sym_U_DQUOTE] = ACTIONS(3007), + [anon_sym_u8_DQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE] = ACTIONS(3007), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [anon_sym_NULL] = ACTIONS(3011), + [anon_sym_nullptr] = ACTIONS(3011), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3013), + [anon_sym_R_DQUOTE] = ACTIONS(3015), + [anon_sym_LR_DQUOTE] = ACTIONS(3015), + [anon_sym_uR_DQUOTE] = ACTIONS(3015), + [anon_sym_UR_DQUOTE] = ACTIONS(3015), + [anon_sym_u8R_DQUOTE] = ACTIONS(3015), + [anon_sym_co_await] = ACTIONS(3017), + [anon_sym_new] = ACTIONS(3019), + [anon_sym_requires] = ACTIONS(3021), + [sym_this] = ACTIONS(3009), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3023), + [sym_semgrep_named_ellipsis] = ACTIONS(3025), + }, + [1387] = { + [sym_expression] = STATE(4702), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(5262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -233615,78 +231070,587 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), + [anon_sym_co_await] = ACTIONS(157), [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1310] = { - [sym_expression] = STATE(5929), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1388] = { + [sym_expression] = STATE(3674), + [sym_expression_not_binary] = STATE(3960), + [sym_conditional_expression] = STATE(3950), + [sym_assignment_expression] = STATE(3950), + [sym_pointer_expression] = STATE(3961), + [sym_unary_expression] = STATE(3950), + [sym_binary_expression] = STATE(3960), + [sym_update_expression] = STATE(3950), + [sym_cast_expression] = STATE(3950), + [sym_sizeof_expression] = STATE(3950), + [sym_alignof_expression] = STATE(3950), + [sym_offsetof_expression] = STATE(3950), + [sym_generic_expression] = STATE(3950), + [sym_subscript_expression] = STATE(3961), + [sym_call_expression] = STATE(3961), + [sym_gnu_asm_expression] = STATE(3950), + [sym_field_expression] = STATE(3961), + [sym_compound_literal_expression] = STATE(3950), + [sym_parenthesized_expression] = STATE(3961), + [sym_char_literal] = STATE(3756), + [sym_concatenated_string] = STATE(3756), + [sym_string_literal] = STATE(2508), + [sym_null] = STATE(3950), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8975), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3950), + [sym_raw_string_literal] = STATE(2508), + [sym_co_await_expression] = STATE(3950), + [sym_new_expression] = STATE(3950), + [sym_delete_expression] = STATE(3950), + [sym_requires_clause] = STATE(3950), + [sym_requires_expression] = STATE(3950), + [sym_lambda_expression] = STATE(3950), + [sym_lambda_capture_specifier] = STATE(6902), + [sym_fold_expression] = STATE(3950), + [sym_parameter_pack_expansion] = STATE(3950), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(3961), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3961), + [sym_semgrep_ellipsis] = STATE(3960), + [sym_deep_ellipsis] = STATE(3960), + [sym_identifier] = ACTIONS(2923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4882), + [anon_sym_LPAREN2] = ACTIONS(5074), + [anon_sym_BANG] = ACTIONS(2927), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(5264), + [sym_primitive_type] = ACTIONS(2933), + [anon_sym_not] = ACTIONS(2925), + [anon_sym_compl] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(4888), + [anon_sym_PLUS_PLUS] = ACTIONS(4888), + [anon_sym_sizeof] = ACTIONS(2935), + [anon_sym___alignof__] = ACTIONS(2937), + [anon_sym___alignof] = ACTIONS(2937), + [anon_sym__alignof] = ACTIONS(2937), + [anon_sym_alignof] = ACTIONS(2937), + [anon_sym__Alignof] = ACTIONS(2937), + [anon_sym_offsetof] = ACTIONS(2939), + [anon_sym__Generic] = ACTIONS(2941), + [anon_sym_asm] = ACTIONS(2943), + [anon_sym___asm__] = ACTIONS(2943), + [sym_number_literal] = ACTIONS(2945), + [anon_sym_L_SQUOTE] = ACTIONS(2947), + [anon_sym_u_SQUOTE] = ACTIONS(2947), + [anon_sym_U_SQUOTE] = ACTIONS(2947), + [anon_sym_u8_SQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2947), + [anon_sym_L_DQUOTE] = ACTIONS(2949), + [anon_sym_u_DQUOTE] = ACTIONS(2949), + [anon_sym_U_DQUOTE] = ACTIONS(2949), + [anon_sym_u8_DQUOTE] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2949), + [sym_true] = ACTIONS(2951), + [sym_false] = ACTIONS(2951), + [anon_sym_NULL] = ACTIONS(2953), + [anon_sym_nullptr] = ACTIONS(2953), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2955), + [anon_sym_R_DQUOTE] = ACTIONS(2957), + [anon_sym_LR_DQUOTE] = ACTIONS(2957), + [anon_sym_uR_DQUOTE] = ACTIONS(2957), + [anon_sym_UR_DQUOTE] = ACTIONS(2957), + [anon_sym_u8R_DQUOTE] = ACTIONS(2957), + [anon_sym_co_await] = ACTIONS(2959), + [anon_sym_new] = ACTIONS(2961), + [anon_sym_requires] = ACTIONS(2963), + [sym_this] = ACTIONS(2951), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2965), + [sym_semgrep_named_ellipsis] = ACTIONS(2967), + }, + [1389] = { + [sym_expression] = STATE(3697), + [sym_expression_not_binary] = STATE(3960), + [sym_conditional_expression] = STATE(3950), + [sym_assignment_expression] = STATE(3950), + [sym_pointer_expression] = STATE(3961), + [sym_unary_expression] = STATE(3950), + [sym_binary_expression] = STATE(3960), + [sym_update_expression] = STATE(3950), + [sym_cast_expression] = STATE(3950), + [sym_sizeof_expression] = STATE(3950), + [sym_alignof_expression] = STATE(3950), + [sym_offsetof_expression] = STATE(3950), + [sym_generic_expression] = STATE(3950), + [sym_subscript_expression] = STATE(3961), + [sym_call_expression] = STATE(3961), + [sym_gnu_asm_expression] = STATE(3950), + [sym_field_expression] = STATE(3961), + [sym_compound_literal_expression] = STATE(3950), + [sym_parenthesized_expression] = STATE(3961), + [sym_char_literal] = STATE(3756), + [sym_concatenated_string] = STATE(3756), + [sym_string_literal] = STATE(2508), + [sym_null] = STATE(3950), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8975), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3950), + [sym_raw_string_literal] = STATE(2508), + [sym_co_await_expression] = STATE(3950), + [sym_new_expression] = STATE(3950), + [sym_delete_expression] = STATE(3950), + [sym_requires_clause] = STATE(3950), + [sym_requires_expression] = STATE(3950), + [sym_lambda_expression] = STATE(3950), + [sym_lambda_capture_specifier] = STATE(6902), + [sym_fold_expression] = STATE(3950), + [sym_parameter_pack_expansion] = STATE(3950), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(3961), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3961), + [sym_semgrep_ellipsis] = STATE(3960), + [sym_deep_ellipsis] = STATE(3960), + [sym_identifier] = ACTIONS(2923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4882), + [anon_sym_LPAREN2] = ACTIONS(5074), + [anon_sym_BANG] = ACTIONS(2927), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2933), + [anon_sym_not] = ACTIONS(2925), + [anon_sym_compl] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(4888), + [anon_sym_PLUS_PLUS] = ACTIONS(4888), + [anon_sym_sizeof] = ACTIONS(2935), + [anon_sym___alignof__] = ACTIONS(2937), + [anon_sym___alignof] = ACTIONS(2937), + [anon_sym__alignof] = ACTIONS(2937), + [anon_sym_alignof] = ACTIONS(2937), + [anon_sym__Alignof] = ACTIONS(2937), + [anon_sym_offsetof] = ACTIONS(2939), + [anon_sym__Generic] = ACTIONS(2941), + [anon_sym_asm] = ACTIONS(2943), + [anon_sym___asm__] = ACTIONS(2943), + [sym_number_literal] = ACTIONS(2945), + [anon_sym_L_SQUOTE] = ACTIONS(2947), + [anon_sym_u_SQUOTE] = ACTIONS(2947), + [anon_sym_U_SQUOTE] = ACTIONS(2947), + [anon_sym_u8_SQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2947), + [anon_sym_L_DQUOTE] = ACTIONS(2949), + [anon_sym_u_DQUOTE] = ACTIONS(2949), + [anon_sym_U_DQUOTE] = ACTIONS(2949), + [anon_sym_u8_DQUOTE] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2949), + [sym_true] = ACTIONS(2951), + [sym_false] = ACTIONS(2951), + [anon_sym_NULL] = ACTIONS(2953), + [anon_sym_nullptr] = ACTIONS(2953), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2955), + [anon_sym_R_DQUOTE] = ACTIONS(2957), + [anon_sym_LR_DQUOTE] = ACTIONS(2957), + [anon_sym_uR_DQUOTE] = ACTIONS(2957), + [anon_sym_UR_DQUOTE] = ACTIONS(2957), + [anon_sym_u8R_DQUOTE] = ACTIONS(2957), + [anon_sym_co_await] = ACTIONS(2959), + [anon_sym_new] = ACTIONS(2961), + [anon_sym_requires] = ACTIONS(2963), + [sym_this] = ACTIONS(2951), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2965), + [sym_semgrep_named_ellipsis] = ACTIONS(2967), + }, + [1390] = { + [sym_expression] = STATE(3591), + [sym_expression_not_binary] = STATE(3960), + [sym_conditional_expression] = STATE(3950), + [sym_assignment_expression] = STATE(3950), + [sym_pointer_expression] = STATE(3961), + [sym_unary_expression] = STATE(3950), + [sym_binary_expression] = STATE(3960), + [sym_update_expression] = STATE(3950), + [sym_cast_expression] = STATE(3950), + [sym_sizeof_expression] = STATE(3950), + [sym_alignof_expression] = STATE(3950), + [sym_offsetof_expression] = STATE(3950), + [sym_generic_expression] = STATE(3950), + [sym_subscript_expression] = STATE(3961), + [sym_call_expression] = STATE(3961), + [sym_gnu_asm_expression] = STATE(3950), + [sym_field_expression] = STATE(3961), + [sym_compound_literal_expression] = STATE(3950), + [sym_parenthesized_expression] = STATE(3961), + [sym_char_literal] = STATE(3756), + [sym_concatenated_string] = STATE(3756), + [sym_string_literal] = STATE(2508), + [sym_null] = STATE(3950), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8975), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3950), + [sym_raw_string_literal] = STATE(2508), + [sym_co_await_expression] = STATE(3950), + [sym_new_expression] = STATE(3950), + [sym_delete_expression] = STATE(3950), + [sym_requires_clause] = STATE(3950), + [sym_requires_expression] = STATE(3950), + [sym_lambda_expression] = STATE(3950), + [sym_lambda_capture_specifier] = STATE(6902), + [sym_fold_expression] = STATE(3950), + [sym_parameter_pack_expansion] = STATE(3950), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(3961), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3961), + [sym_semgrep_ellipsis] = STATE(3960), + [sym_deep_ellipsis] = STATE(3960), + [sym_identifier] = ACTIONS(2923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4882), + [anon_sym_LPAREN2] = ACTIONS(5074), + [anon_sym_BANG] = ACTIONS(2927), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(5266), + [sym_primitive_type] = ACTIONS(2933), + [anon_sym_not] = ACTIONS(2925), + [anon_sym_compl] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(4888), + [anon_sym_PLUS_PLUS] = ACTIONS(4888), + [anon_sym_sizeof] = ACTIONS(2935), + [anon_sym___alignof__] = ACTIONS(2937), + [anon_sym___alignof] = ACTIONS(2937), + [anon_sym__alignof] = ACTIONS(2937), + [anon_sym_alignof] = ACTIONS(2937), + [anon_sym__Alignof] = ACTIONS(2937), + [anon_sym_offsetof] = ACTIONS(2939), + [anon_sym__Generic] = ACTIONS(2941), + [anon_sym_asm] = ACTIONS(2943), + [anon_sym___asm__] = ACTIONS(2943), + [sym_number_literal] = ACTIONS(2945), + [anon_sym_L_SQUOTE] = ACTIONS(2947), + [anon_sym_u_SQUOTE] = ACTIONS(2947), + [anon_sym_U_SQUOTE] = ACTIONS(2947), + [anon_sym_u8_SQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2947), + [anon_sym_L_DQUOTE] = ACTIONS(2949), + [anon_sym_u_DQUOTE] = ACTIONS(2949), + [anon_sym_U_DQUOTE] = ACTIONS(2949), + [anon_sym_u8_DQUOTE] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2949), + [sym_true] = ACTIONS(2951), + [sym_false] = ACTIONS(2951), + [anon_sym_NULL] = ACTIONS(2953), + [anon_sym_nullptr] = ACTIONS(2953), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2955), + [anon_sym_R_DQUOTE] = ACTIONS(2957), + [anon_sym_LR_DQUOTE] = ACTIONS(2957), + [anon_sym_uR_DQUOTE] = ACTIONS(2957), + [anon_sym_UR_DQUOTE] = ACTIONS(2957), + [anon_sym_u8R_DQUOTE] = ACTIONS(2957), + [anon_sym_co_await] = ACTIONS(2959), + [anon_sym_new] = ACTIONS(2961), + [anon_sym_requires] = ACTIONS(2963), + [sym_this] = ACTIONS(2951), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2965), + [sym_semgrep_named_ellipsis] = ACTIONS(2967), + }, + [1391] = { + [sym_expression] = STATE(3612), + [sym_expression_not_binary] = STATE(3960), + [sym_conditional_expression] = STATE(3950), + [sym_assignment_expression] = STATE(3950), + [sym_pointer_expression] = STATE(3961), + [sym_unary_expression] = STATE(3950), + [sym_binary_expression] = STATE(3960), + [sym_update_expression] = STATE(3950), + [sym_cast_expression] = STATE(3950), + [sym_sizeof_expression] = STATE(3950), + [sym_alignof_expression] = STATE(3950), + [sym_offsetof_expression] = STATE(3950), + [sym_generic_expression] = STATE(3950), + [sym_subscript_expression] = STATE(3961), + [sym_call_expression] = STATE(3961), + [sym_gnu_asm_expression] = STATE(3950), + [sym_field_expression] = STATE(3961), + [sym_compound_literal_expression] = STATE(3950), + [sym_parenthesized_expression] = STATE(3961), + [sym_char_literal] = STATE(3756), + [sym_concatenated_string] = STATE(3756), + [sym_string_literal] = STATE(2508), + [sym_null] = STATE(3950), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8975), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3950), + [sym_raw_string_literal] = STATE(2508), + [sym_co_await_expression] = STATE(3950), + [sym_new_expression] = STATE(3950), + [sym_delete_expression] = STATE(3950), + [sym_requires_clause] = STATE(3950), + [sym_requires_expression] = STATE(3950), + [sym_lambda_expression] = STATE(3950), + [sym_lambda_capture_specifier] = STATE(6902), + [sym_fold_expression] = STATE(3950), + [sym_parameter_pack_expansion] = STATE(3950), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(3961), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3961), + [sym_semgrep_ellipsis] = STATE(3960), + [sym_deep_ellipsis] = STATE(3960), + [sym_identifier] = ACTIONS(2923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4882), + [anon_sym_LPAREN2] = ACTIONS(5074), + [anon_sym_BANG] = ACTIONS(2927), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2933), + [anon_sym_not] = ACTIONS(2925), + [anon_sym_compl] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(4888), + [anon_sym_PLUS_PLUS] = ACTIONS(4888), + [anon_sym_sizeof] = ACTIONS(2935), + [anon_sym___alignof__] = ACTIONS(2937), + [anon_sym___alignof] = ACTIONS(2937), + [anon_sym__alignof] = ACTIONS(2937), + [anon_sym_alignof] = ACTIONS(2937), + [anon_sym__Alignof] = ACTIONS(2937), + [anon_sym_offsetof] = ACTIONS(2939), + [anon_sym__Generic] = ACTIONS(2941), + [anon_sym_asm] = ACTIONS(2943), + [anon_sym___asm__] = ACTIONS(2943), + [sym_number_literal] = ACTIONS(2945), + [anon_sym_L_SQUOTE] = ACTIONS(2947), + [anon_sym_u_SQUOTE] = ACTIONS(2947), + [anon_sym_U_SQUOTE] = ACTIONS(2947), + [anon_sym_u8_SQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2947), + [anon_sym_L_DQUOTE] = ACTIONS(2949), + [anon_sym_u_DQUOTE] = ACTIONS(2949), + [anon_sym_U_DQUOTE] = ACTIONS(2949), + [anon_sym_u8_DQUOTE] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2949), + [sym_true] = ACTIONS(2951), + [sym_false] = ACTIONS(2951), + [anon_sym_NULL] = ACTIONS(2953), + [anon_sym_nullptr] = ACTIONS(2953), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2955), + [anon_sym_R_DQUOTE] = ACTIONS(2957), + [anon_sym_LR_DQUOTE] = ACTIONS(2957), + [anon_sym_uR_DQUOTE] = ACTIONS(2957), + [anon_sym_UR_DQUOTE] = ACTIONS(2957), + [anon_sym_u8R_DQUOTE] = ACTIONS(2957), + [anon_sym_co_await] = ACTIONS(2959), + [anon_sym_new] = ACTIONS(2961), + [anon_sym_requires] = ACTIONS(2963), + [sym_this] = ACTIONS(2951), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2965), + [sym_semgrep_named_ellipsis] = ACTIONS(2967), + }, + [1392] = { + [sym_expression] = STATE(3583), + [sym_expression_not_binary] = STATE(3960), + [sym_conditional_expression] = STATE(3950), + [sym_assignment_expression] = STATE(3950), + [sym_pointer_expression] = STATE(3961), + [sym_unary_expression] = STATE(3950), + [sym_binary_expression] = STATE(3960), + [sym_update_expression] = STATE(3950), + [sym_cast_expression] = STATE(3950), + [sym_sizeof_expression] = STATE(3950), + [sym_alignof_expression] = STATE(3950), + [sym_offsetof_expression] = STATE(3950), + [sym_generic_expression] = STATE(3950), + [sym_subscript_expression] = STATE(3961), + [sym_call_expression] = STATE(3961), + [sym_gnu_asm_expression] = STATE(3950), + [sym_field_expression] = STATE(3961), + [sym_compound_literal_expression] = STATE(3950), + [sym_parenthesized_expression] = STATE(3961), + [sym_char_literal] = STATE(3756), + [sym_concatenated_string] = STATE(3756), + [sym_string_literal] = STATE(2508), + [sym_null] = STATE(3950), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8975), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3950), + [sym_raw_string_literal] = STATE(2508), + [sym_co_await_expression] = STATE(3950), + [sym_new_expression] = STATE(3950), + [sym_delete_expression] = STATE(3950), + [sym_requires_clause] = STATE(3950), + [sym_requires_expression] = STATE(3950), + [sym_lambda_expression] = STATE(3950), + [sym_lambda_capture_specifier] = STATE(6902), + [sym_fold_expression] = STATE(3950), + [sym_parameter_pack_expansion] = STATE(3950), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(3961), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3961), + [sym_semgrep_ellipsis] = STATE(3960), + [sym_deep_ellipsis] = STATE(3960), + [sym_identifier] = ACTIONS(2923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4882), + [anon_sym_LPAREN2] = ACTIONS(5074), + [anon_sym_BANG] = ACTIONS(2927), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2933), + [anon_sym_not] = ACTIONS(2925), + [anon_sym_compl] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(4888), + [anon_sym_PLUS_PLUS] = ACTIONS(4888), + [anon_sym_sizeof] = ACTIONS(2935), + [anon_sym___alignof__] = ACTIONS(2937), + [anon_sym___alignof] = ACTIONS(2937), + [anon_sym__alignof] = ACTIONS(2937), + [anon_sym_alignof] = ACTIONS(2937), + [anon_sym__Alignof] = ACTIONS(2937), + [anon_sym_offsetof] = ACTIONS(2939), + [anon_sym__Generic] = ACTIONS(2941), + [anon_sym_asm] = ACTIONS(2943), + [anon_sym___asm__] = ACTIONS(2943), + [sym_number_literal] = ACTIONS(2945), + [anon_sym_L_SQUOTE] = ACTIONS(2947), + [anon_sym_u_SQUOTE] = ACTIONS(2947), + [anon_sym_U_SQUOTE] = ACTIONS(2947), + [anon_sym_u8_SQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2947), + [anon_sym_L_DQUOTE] = ACTIONS(2949), + [anon_sym_u_DQUOTE] = ACTIONS(2949), + [anon_sym_U_DQUOTE] = ACTIONS(2949), + [anon_sym_u8_DQUOTE] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2949), + [sym_true] = ACTIONS(2951), + [sym_false] = ACTIONS(2951), + [anon_sym_NULL] = ACTIONS(2953), + [anon_sym_nullptr] = ACTIONS(2953), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2955), + [anon_sym_R_DQUOTE] = ACTIONS(2957), + [anon_sym_LR_DQUOTE] = ACTIONS(2957), + [anon_sym_uR_DQUOTE] = ACTIONS(2957), + [anon_sym_UR_DQUOTE] = ACTIONS(2957), + [anon_sym_u8R_DQUOTE] = ACTIONS(2957), + [anon_sym_co_await] = ACTIONS(2959), + [anon_sym_new] = ACTIONS(2961), + [anon_sym_requires] = ACTIONS(2963), + [sym_this] = ACTIONS(2951), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2965), + [sym_semgrep_named_ellipsis] = ACTIONS(2967), + }, + [1393] = { + [sym_expression] = STATE(5533), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(5266), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -233718,7 +231682,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -233732,69 +231696,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1311] = { - [sym_expression] = STATE(6020), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_COLON] = ACTIONS(5268), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), + [1394] = { + [sym_expression] = STATE(4761), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -233821,186 +231784,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), + [anon_sym_co_await] = ACTIONS(157), [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1312] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(5181), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(7956), - [sym_abstract_declarator] = STATE(8174), - [sym_parenthesized_declarator] = STATE(7634), - [sym_abstract_parenthesized_declarator] = STATE(7464), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_abstract_pointer_declarator] = STATE(7464), - [sym_function_declarator] = STATE(7634), - [sym_abstract_function_declarator] = STATE(7464), - [sym_array_declarator] = STATE(7634), - [sym_abstract_array_declarator] = STATE(7464), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_parameter_list] = STATE(4268), - [sym_parameter_declaration] = STATE(8581), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_optional_parameter_declaration] = STATE(8581), - [sym_variadic_parameter_declaration] = STATE(8581), - [sym_reference_declarator] = STATE(7634), - [sym_abstract_reference_declarator] = STATE(7464), - [sym_structured_binding_declarator] = STATE(7634), - [sym_function_declarator_seq] = STATE(7450), - [sym_template_type] = STATE(4853), - [sym_template_function] = STATE(7634), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7128), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_operator_name] = STATE(7634), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5270), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5272), - [anon_sym_RPAREN] = ACTIONS(5274), - [anon_sym_LPAREN2] = ACTIONS(5276), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(5278), - [anon_sym_AMP_AMP] = ACTIONS(5280), - [anon_sym_AMP] = ACTIONS(5282), - [anon_sym___extension__] = ACTIONS(65), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym___based] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(5284), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), + [1395] = { + [sym_expression] = STATE(3593), + [sym_expression_not_binary] = STATE(3960), + [sym_conditional_expression] = STATE(3950), + [sym_assignment_expression] = STATE(3950), + [sym_pointer_expression] = STATE(3961), + [sym_unary_expression] = STATE(3950), + [sym_binary_expression] = STATE(3960), + [sym_update_expression] = STATE(3950), + [sym_cast_expression] = STATE(3950), + [sym_sizeof_expression] = STATE(3950), + [sym_alignof_expression] = STATE(3950), + [sym_offsetof_expression] = STATE(3950), + [sym_generic_expression] = STATE(3950), + [sym_subscript_expression] = STATE(3961), + [sym_call_expression] = STATE(3961), + [sym_gnu_asm_expression] = STATE(3950), + [sym_field_expression] = STATE(3961), + [sym_compound_literal_expression] = STATE(3950), + [sym_parenthesized_expression] = STATE(3961), + [sym_char_literal] = STATE(3756), + [sym_concatenated_string] = STATE(3756), + [sym_string_literal] = STATE(2508), + [sym_null] = STATE(3950), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8975), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3950), + [sym_raw_string_literal] = STATE(2508), + [sym_co_await_expression] = STATE(3950), + [sym_new_expression] = STATE(3950), + [sym_delete_expression] = STATE(3950), + [sym_requires_clause] = STATE(3950), + [sym_requires_expression] = STATE(3950), + [sym_lambda_expression] = STATE(3950), + [sym_lambda_capture_specifier] = STATE(6902), + [sym_fold_expression] = STATE(3950), + [sym_parameter_pack_expansion] = STATE(3950), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(3961), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3961), + [sym_semgrep_ellipsis] = STATE(3960), + [sym_deep_ellipsis] = STATE(3960), + [sym_identifier] = ACTIONS(2923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4882), + [anon_sym_LPAREN2] = ACTIONS(5074), + [anon_sym_BANG] = ACTIONS(2927), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2933), + [anon_sym_not] = ACTIONS(2925), + [anon_sym_compl] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(4888), + [anon_sym_PLUS_PLUS] = ACTIONS(4888), + [anon_sym_sizeof] = ACTIONS(2935), + [anon_sym___alignof__] = ACTIONS(2937), + [anon_sym___alignof] = ACTIONS(2937), + [anon_sym__alignof] = ACTIONS(2937), + [anon_sym_alignof] = ACTIONS(2937), + [anon_sym__Alignof] = ACTIONS(2937), + [anon_sym_offsetof] = ACTIONS(2939), + [anon_sym__Generic] = ACTIONS(2941), + [anon_sym_asm] = ACTIONS(2943), + [anon_sym___asm__] = ACTIONS(2943), + [sym_number_literal] = ACTIONS(2945), + [anon_sym_L_SQUOTE] = ACTIONS(2947), + [anon_sym_u_SQUOTE] = ACTIONS(2947), + [anon_sym_U_SQUOTE] = ACTIONS(2947), + [anon_sym_u8_SQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2947), + [anon_sym_L_DQUOTE] = ACTIONS(2949), + [anon_sym_u_DQUOTE] = ACTIONS(2949), + [anon_sym_U_DQUOTE] = ACTIONS(2949), + [anon_sym_u8_DQUOTE] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2949), + [sym_true] = ACTIONS(2951), + [sym_false] = ACTIONS(2951), + [anon_sym_NULL] = ACTIONS(2953), + [anon_sym_nullptr] = ACTIONS(2953), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_operator] = ACTIONS(2259), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2955), + [anon_sym_R_DQUOTE] = ACTIONS(2957), + [anon_sym_LR_DQUOTE] = ACTIONS(2957), + [anon_sym_uR_DQUOTE] = ACTIONS(2957), + [anon_sym_UR_DQUOTE] = ACTIONS(2957), + [anon_sym_u8R_DQUOTE] = ACTIONS(2957), + [anon_sym_co_await] = ACTIONS(2959), + [anon_sym_new] = ACTIONS(2961), + [anon_sym_requires] = ACTIONS(2963), + [sym_this] = ACTIONS(2951), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2965), + [sym_semgrep_named_ellipsis] = ACTIONS(2967), }, - [1313] = { - [sym_expression] = STATE(6009), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_COLON] = ACTIONS(5286), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), + [1396] = { + [sym_expression] = STATE(5544), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -234027,83 +231988,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), + [anon_sym_co_await] = ACTIONS(157), [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1314] = { - [sym_expression] = STATE(5956), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_COLON] = ACTIONS(5288), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), + [1397] = { + [sym_expression] = STATE(4995), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3922), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3922), + [sym_call_expression] = STATE(3922), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3922), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3922), + [sym_char_literal] = STATE(5203), + [sym_concatenated_string] = STATE(5203), + [sym_string_literal] = STATE(3965), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3965), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3922), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3922), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_TILDE] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(5090), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4200), + [anon_sym_compl] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_sizeof] = ACTIONS(4206), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -234113,409 +232073,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), + [sym_number_literal] = ACTIONS(4208), + [anon_sym_L_SQUOTE] = ACTIONS(4210), + [anon_sym_u_SQUOTE] = ACTIONS(4210), + [anon_sym_U_SQUOTE] = ACTIONS(4210), + [anon_sym_u8_SQUOTE] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4210), + [anon_sym_L_DQUOTE] = ACTIONS(4212), + [anon_sym_u_DQUOTE] = ACTIONS(4212), + [anon_sym_U_DQUOTE] = ACTIONS(4212), + [anon_sym_u8_DQUOTE] = ACTIONS(4212), + [anon_sym_DQUOTE] = ACTIONS(4212), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4214), + [anon_sym_R_DQUOTE] = ACTIONS(4216), + [anon_sym_LR_DQUOTE] = ACTIONS(4216), + [anon_sym_uR_DQUOTE] = ACTIONS(4216), + [anon_sym_UR_DQUOTE] = ACTIONS(4216), + [anon_sym_u8R_DQUOTE] = ACTIONS(4216), + [anon_sym_co_await] = ACTIONS(4218), [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1315] = { - [sym_expression] = STATE(3048), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5290), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1316] = { - [sym_expression] = STATE(3048), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5292), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1317] = { - [sym_expression] = STATE(3048), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5294), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1318] = { - [sym_expression] = STATE(6092), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_COLON] = ACTIONS(5296), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), + [1398] = { + [sym_expression] = STATE(4761), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3922), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3922), + [sym_call_expression] = STATE(3922), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3922), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3922), + [sym_char_literal] = STATE(5203), + [sym_concatenated_string] = STATE(5203), + [sym_string_literal] = STATE(3965), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3965), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3922), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3922), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_TILDE] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4200), + [anon_sym_compl] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_sizeof] = ACTIONS(4206), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -234525,100 +232175,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), + [sym_number_literal] = ACTIONS(4208), + [anon_sym_L_SQUOTE] = ACTIONS(4210), + [anon_sym_u_SQUOTE] = ACTIONS(4210), + [anon_sym_U_SQUOTE] = ACTIONS(4210), + [anon_sym_u8_SQUOTE] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4210), + [anon_sym_L_DQUOTE] = ACTIONS(4212), + [anon_sym_u_DQUOTE] = ACTIONS(4212), + [anon_sym_U_DQUOTE] = ACTIONS(4212), + [anon_sym_u8_DQUOTE] = ACTIONS(4212), + [anon_sym_DQUOTE] = ACTIONS(4212), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4214), + [anon_sym_R_DQUOTE] = ACTIONS(4216), + [anon_sym_LR_DQUOTE] = ACTIONS(4216), + [anon_sym_uR_DQUOTE] = ACTIONS(4216), + [anon_sym_UR_DQUOTE] = ACTIONS(4216), + [anon_sym_u8R_DQUOTE] = ACTIONS(4216), + [anon_sym_co_await] = ACTIONS(4218), [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1319] = { - [sym_expression] = STATE(5958), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_COLON] = ACTIONS(5298), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), + [1399] = { + [sym_expression] = STATE(5120), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3922), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3922), + [sym_call_expression] = STATE(3922), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3922), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3922), + [sym_char_literal] = STATE(5203), + [sym_concatenated_string] = STATE(5203), + [sym_string_literal] = STATE(3965), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3965), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3922), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3922), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_TILDE] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(5268), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4200), + [anon_sym_compl] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_sizeof] = ACTIONS(4206), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -234628,100 +232277,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), + [sym_number_literal] = ACTIONS(4208), + [anon_sym_L_SQUOTE] = ACTIONS(4210), + [anon_sym_u_SQUOTE] = ACTIONS(4210), + [anon_sym_U_SQUOTE] = ACTIONS(4210), + [anon_sym_u8_SQUOTE] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4210), + [anon_sym_L_DQUOTE] = ACTIONS(4212), + [anon_sym_u_DQUOTE] = ACTIONS(4212), + [anon_sym_U_DQUOTE] = ACTIONS(4212), + [anon_sym_u8_DQUOTE] = ACTIONS(4212), + [anon_sym_DQUOTE] = ACTIONS(4212), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4214), + [anon_sym_R_DQUOTE] = ACTIONS(4216), + [anon_sym_LR_DQUOTE] = ACTIONS(4216), + [anon_sym_uR_DQUOTE] = ACTIONS(4216), + [anon_sym_UR_DQUOTE] = ACTIONS(4216), + [anon_sym_u8R_DQUOTE] = ACTIONS(4216), + [anon_sym_co_await] = ACTIONS(4218), [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1320] = { - [sym_expression] = STATE(6015), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_COLON] = ACTIONS(5300), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), + [1400] = { + [sym_expression] = STATE(5136), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3922), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3922), + [sym_call_expression] = STATE(3922), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3922), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3922), + [sym_char_literal] = STATE(5203), + [sym_concatenated_string] = STATE(5203), + [sym_string_literal] = STATE(3965), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3965), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3922), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3922), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_TILDE] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4200), + [anon_sym_compl] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_sizeof] = ACTIONS(4206), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -234731,100 +232379,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), + [sym_number_literal] = ACTIONS(4208), + [anon_sym_L_SQUOTE] = ACTIONS(4210), + [anon_sym_u_SQUOTE] = ACTIONS(4210), + [anon_sym_U_SQUOTE] = ACTIONS(4210), + [anon_sym_u8_SQUOTE] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4210), + [anon_sym_L_DQUOTE] = ACTIONS(4212), + [anon_sym_u_DQUOTE] = ACTIONS(4212), + [anon_sym_U_DQUOTE] = ACTIONS(4212), + [anon_sym_u8_DQUOTE] = ACTIONS(4212), + [anon_sym_DQUOTE] = ACTIONS(4212), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4214), + [anon_sym_R_DQUOTE] = ACTIONS(4216), + [anon_sym_LR_DQUOTE] = ACTIONS(4216), + [anon_sym_uR_DQUOTE] = ACTIONS(4216), + [anon_sym_UR_DQUOTE] = ACTIONS(4216), + [anon_sym_u8R_DQUOTE] = ACTIONS(4216), + [anon_sym_co_await] = ACTIONS(4218), [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1321] = { - [sym_expression] = STATE(5561), - [sym_expression_not_binary] = STATE(5260), - [sym_comma_expression] = STATE(9149), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5150), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1401] = { + [sym_expression] = STATE(5146), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3922), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3922), + [sym_call_expression] = STATE(3922), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3922), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3922), + [sym_char_literal] = STATE(5203), + [sym_concatenated_string] = STATE(5203), + [sym_string_literal] = STATE(3965), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3965), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3922), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3922), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_TILDE] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4200), + [anon_sym_compl] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_sizeof] = ACTIONS(4206), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -234834,100 +232481,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), + [sym_number_literal] = ACTIONS(4208), + [anon_sym_L_SQUOTE] = ACTIONS(4210), + [anon_sym_u_SQUOTE] = ACTIONS(4210), + [anon_sym_U_SQUOTE] = ACTIONS(4210), + [anon_sym_u8_SQUOTE] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4210), + [anon_sym_L_DQUOTE] = ACTIONS(4212), + [anon_sym_u_DQUOTE] = ACTIONS(4212), + [anon_sym_U_DQUOTE] = ACTIONS(4212), + [anon_sym_u8_DQUOTE] = ACTIONS(4212), + [anon_sym_DQUOTE] = ACTIONS(4212), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4214), + [anon_sym_R_DQUOTE] = ACTIONS(4216), + [anon_sym_LR_DQUOTE] = ACTIONS(4216), + [anon_sym_uR_DQUOTE] = ACTIONS(4216), + [anon_sym_UR_DQUOTE] = ACTIONS(4216), + [anon_sym_u8R_DQUOTE] = ACTIONS(4216), + [anon_sym_co_await] = ACTIONS(4218), [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1322] = { - [sym_expression] = STATE(6001), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_COLON] = ACTIONS(5302), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), + [1402] = { + [sym_expression] = STATE(5153), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3922), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3922), + [sym_call_expression] = STATE(3922), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3922), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3922), + [sym_char_literal] = STATE(5203), + [sym_concatenated_string] = STATE(5203), + [sym_string_literal] = STATE(3965), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3965), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3922), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3922), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_TILDE] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4200), + [anon_sym_compl] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_sizeof] = ACTIONS(4206), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -234937,100 +232583,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), + [sym_number_literal] = ACTIONS(4208), + [anon_sym_L_SQUOTE] = ACTIONS(4210), + [anon_sym_u_SQUOTE] = ACTIONS(4210), + [anon_sym_U_SQUOTE] = ACTIONS(4210), + [anon_sym_u8_SQUOTE] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4210), + [anon_sym_L_DQUOTE] = ACTIONS(4212), + [anon_sym_u_DQUOTE] = ACTIONS(4212), + [anon_sym_U_DQUOTE] = ACTIONS(4212), + [anon_sym_u8_DQUOTE] = ACTIONS(4212), + [anon_sym_DQUOTE] = ACTIONS(4212), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4214), + [anon_sym_R_DQUOTE] = ACTIONS(4216), + [anon_sym_LR_DQUOTE] = ACTIONS(4216), + [anon_sym_uR_DQUOTE] = ACTIONS(4216), + [anon_sym_UR_DQUOTE] = ACTIONS(4216), + [anon_sym_u8R_DQUOTE] = ACTIONS(4216), + [anon_sym_co_await] = ACTIONS(4218), [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1323] = { - [sym_expression] = STATE(5501), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4036), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4036), - [sym_call_expression] = STATE(4036), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4036), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4036), - [sym_char_literal] = STATE(5772), - [sym_concatenated_string] = STATE(5772), - [sym_string_literal] = STATE(4262), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(4262), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4036), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4036), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5038), - [anon_sym_BANG] = ACTIONS(4035), - [anon_sym_TILDE] = ACTIONS(4035), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_SEMI] = ACTIONS(5304), - [anon_sym_COLON_COLON] = ACTIONS(4037), - [anon_sym_LBRACK] = ACTIONS(5160), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4033), - [anon_sym_compl] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(5044), - [anon_sym_PLUS_PLUS] = ACTIONS(5044), - [anon_sym_sizeof] = ACTIONS(4039), + [1403] = { + [sym_expression] = STATE(4756), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3204), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3204), + [sym_call_expression] = STATE(3204), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3204), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3204), + [sym_char_literal] = STATE(4797), + [sym_concatenated_string] = STATE(4797), + [sym_string_literal] = STATE(3234), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3234), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6827), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(3204), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3204), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5054), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(3897), + [anon_sym_LBRACK] = ACTIONS(5270), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4936), + [anon_sym_PLUS_PLUS] = ACTIONS(4936), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -235040,100 +232685,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(4041), - [anon_sym_L_SQUOTE] = ACTIONS(4043), - [anon_sym_u_SQUOTE] = ACTIONS(4043), - [anon_sym_U_SQUOTE] = ACTIONS(4043), - [anon_sym_u8_SQUOTE] = ACTIONS(4043), - [anon_sym_SQUOTE] = ACTIONS(4043), - [anon_sym_L_DQUOTE] = ACTIONS(4045), - [anon_sym_u_DQUOTE] = ACTIONS(4045), - [anon_sym_U_DQUOTE] = ACTIONS(4045), - [anon_sym_u8_DQUOTE] = ACTIONS(4045), - [anon_sym_DQUOTE] = ACTIONS(4045), + [sym_number_literal] = ACTIONS(3903), + [anon_sym_L_SQUOTE] = ACTIONS(3905), + [anon_sym_u_SQUOTE] = ACTIONS(3905), + [anon_sym_U_SQUOTE] = ACTIONS(3905), + [anon_sym_u8_SQUOTE] = ACTIONS(3905), + [anon_sym_SQUOTE] = ACTIONS(3905), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4047), - [anon_sym_R_DQUOTE] = ACTIONS(4049), - [anon_sym_LR_DQUOTE] = ACTIONS(4049), - [anon_sym_uR_DQUOTE] = ACTIONS(4049), - [anon_sym_UR_DQUOTE] = ACTIONS(4049), - [anon_sym_u8R_DQUOTE] = ACTIONS(4049), - [anon_sym_co_await] = ACTIONS(4051), - [anon_sym_new] = ACTIONS(4053), - [anon_sym_requires] = ACTIONS(161), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3909), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + [anon_sym_co_await] = ACTIONS(3913), + [anon_sym_new] = ACTIONS(3915), + [anon_sym_requires] = ACTIONS(3917), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1324] = { - [sym_expression] = STATE(6004), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(5306), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1404] = { + [sym_expression] = STATE(4671), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3204), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3204), + [sym_call_expression] = STATE(3204), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3204), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3204), + [sym_char_literal] = STATE(4797), + [sym_concatenated_string] = STATE(4797), + [sym_string_literal] = STATE(3234), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3234), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6827), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(3204), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3204), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5054), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(3897), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4936), + [anon_sym_PLUS_PLUS] = ACTIONS(4936), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -235143,202 +232787,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), + [sym_number_literal] = ACTIONS(3903), + [anon_sym_L_SQUOTE] = ACTIONS(3905), + [anon_sym_u_SQUOTE] = ACTIONS(3905), + [anon_sym_U_SQUOTE] = ACTIONS(3905), + [anon_sym_u8_SQUOTE] = ACTIONS(3905), + [anon_sym_SQUOTE] = ACTIONS(3905), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3909), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + [anon_sym_co_await] = ACTIONS(3913), + [anon_sym_new] = ACTIONS(3915), + [anon_sym_requires] = ACTIONS(3917), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1325] = { - [sym_expression] = STATE(3048), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5308), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1326] = { - [sym_expression] = STATE(5950), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1405] = { + [sym_expression] = STATE(4719), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3204), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3204), + [sym_call_expression] = STATE(3204), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3204), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3204), + [sym_char_literal] = STATE(4797), + [sym_concatenated_string] = STATE(4797), + [sym_string_literal] = STATE(3234), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3234), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6827), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(3204), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3204), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5054), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(3897), + [anon_sym_LBRACK] = ACTIONS(5272), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4936), + [anon_sym_PLUS_PLUS] = ACTIONS(4936), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -235348,204 +232889,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), + [sym_number_literal] = ACTIONS(3903), + [anon_sym_L_SQUOTE] = ACTIONS(3905), + [anon_sym_u_SQUOTE] = ACTIONS(3905), + [anon_sym_U_SQUOTE] = ACTIONS(3905), + [anon_sym_u8_SQUOTE] = ACTIONS(3905), + [anon_sym_SQUOTE] = ACTIONS(3905), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5310), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3909), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + [anon_sym_co_await] = ACTIONS(3913), + [anon_sym_new] = ACTIONS(3915), + [anon_sym_requires] = ACTIONS(3917), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1327] = { - [sym_expression] = STATE(3048), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(5312), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1328] = { - [sym_expression] = STATE(6095), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_COLON] = ACTIONS(5314), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), + [1406] = { + [sym_expression] = STATE(4724), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3204), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3204), + [sym_call_expression] = STATE(3204), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3204), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3204), + [sym_char_literal] = STATE(4797), + [sym_concatenated_string] = STATE(4797), + [sym_string_literal] = STATE(3234), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3234), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6827), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(3204), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3204), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5054), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(3897), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4936), + [anon_sym_PLUS_PLUS] = ACTIONS(4936), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -235555,99 +232991,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), + [sym_number_literal] = ACTIONS(3903), + [anon_sym_L_SQUOTE] = ACTIONS(3905), + [anon_sym_u_SQUOTE] = ACTIONS(3905), + [anon_sym_U_SQUOTE] = ACTIONS(3905), + [anon_sym_u8_SQUOTE] = ACTIONS(3905), + [anon_sym_SQUOTE] = ACTIONS(3905), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3909), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + [anon_sym_co_await] = ACTIONS(3913), + [anon_sym_new] = ACTIONS(3915), + [anon_sym_requires] = ACTIONS(3917), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1329] = { - [sym_expression] = STATE(5933), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1407] = { + [sym_expression] = STATE(4764), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3204), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3204), + [sym_call_expression] = STATE(3204), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3204), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3204), + [sym_char_literal] = STATE(4797), + [sym_concatenated_string] = STATE(4797), + [sym_string_literal] = STATE(3234), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3234), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6827), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(3204), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3204), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5054), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(3897), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4936), + [anon_sym_PLUS_PLUS] = ACTIONS(4936), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -235657,100 +233093,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), + [sym_number_literal] = ACTIONS(3903), + [anon_sym_L_SQUOTE] = ACTIONS(3905), + [anon_sym_u_SQUOTE] = ACTIONS(3905), + [anon_sym_U_SQUOTE] = ACTIONS(3905), + [anon_sym_u8_SQUOTE] = ACTIONS(3905), + [anon_sym_SQUOTE] = ACTIONS(3905), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5316), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3909), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + [anon_sym_co_await] = ACTIONS(3913), + [anon_sym_new] = ACTIONS(3915), + [anon_sym_requires] = ACTIONS(3917), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1330] = { - [sym_expression] = STATE(6008), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1408] = { + [sym_expression] = STATE(4735), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3204), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3204), + [sym_call_expression] = STATE(3204), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3204), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3204), + [sym_char_literal] = STATE(4797), + [sym_concatenated_string] = STATE(4797), + [sym_string_literal] = STATE(3234), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3234), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6827), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(3204), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3204), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5054), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(3897), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4936), + [anon_sym_PLUS_PLUS] = ACTIONS(4936), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -235760,1013 +233195,706 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), + [sym_number_literal] = ACTIONS(3903), + [anon_sym_L_SQUOTE] = ACTIONS(3905), + [anon_sym_u_SQUOTE] = ACTIONS(3905), + [anon_sym_U_SQUOTE] = ACTIONS(3905), + [anon_sym_u8_SQUOTE] = ACTIONS(3905), + [anon_sym_SQUOTE] = ACTIONS(3905), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5318), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3909), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + [anon_sym_co_await] = ACTIONS(3913), + [anon_sym_new] = ACTIONS(3915), + [anon_sym_requires] = ACTIONS(3917), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1331] = { - [sym_expression] = STATE(6069), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), + [1409] = { + [sym_expression] = STATE(5545), + [sym_expression_not_binary] = STATE(5685), + [sym_conditional_expression] = STATE(5675), + [sym_assignment_expression] = STATE(5675), + [sym_pointer_expression] = STATE(4201), + [sym_unary_expression] = STATE(5675), + [sym_binary_expression] = STATE(5685), + [sym_update_expression] = STATE(5675), + [sym_cast_expression] = STATE(5675), + [sym_sizeof_expression] = STATE(5675), + [sym_alignof_expression] = STATE(5675), + [sym_offsetof_expression] = STATE(5675), + [sym_generic_expression] = STATE(5675), + [sym_subscript_expression] = STATE(4201), + [sym_call_expression] = STATE(4201), + [sym_gnu_asm_expression] = STATE(5675), + [sym_field_expression] = STATE(4201), + [sym_compound_literal_expression] = STATE(5675), + [sym_parenthesized_expression] = STATE(4201), + [sym_char_literal] = STATE(5600), + [sym_concatenated_string] = STATE(5600), + [sym_string_literal] = STATE(4359), + [sym_null] = STATE(5675), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9034), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5675), + [sym_raw_string_literal] = STATE(4359), + [sym_co_await_expression] = STATE(5675), + [sym_new_expression] = STATE(5675), + [sym_delete_expression] = STATE(5675), + [sym_requires_clause] = STATE(5675), + [sym_requires_expression] = STATE(5675), + [sym_lambda_expression] = STATE(5675), + [sym_lambda_capture_specifier] = STATE(6898), + [sym_fold_expression] = STATE(5675), + [sym_parameter_pack_expansion] = STATE(5675), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4201), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4201), + [sym_semgrep_ellipsis] = STATE(5685), + [sym_deep_ellipsis] = STATE(5685), + [sym_identifier] = ACTIONS(4242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4954), + [anon_sym_LPAREN2] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_TILDE] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(4248), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4252), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_sizeof] = ACTIONS(4254), + [anon_sym___alignof__] = ACTIONS(4256), + [anon_sym___alignof] = ACTIONS(4256), + [anon_sym__alignof] = ACTIONS(4256), + [anon_sym_alignof] = ACTIONS(4256), + [anon_sym__Alignof] = ACTIONS(4256), + [anon_sym_offsetof] = ACTIONS(4258), + [anon_sym__Generic] = ACTIONS(4260), + [anon_sym_asm] = ACTIONS(4262), + [anon_sym___asm__] = ACTIONS(4262), + [sym_number_literal] = ACTIONS(4264), + [anon_sym_L_SQUOTE] = ACTIONS(4266), + [anon_sym_u_SQUOTE] = ACTIONS(4266), + [anon_sym_U_SQUOTE] = ACTIONS(4266), + [anon_sym_u8_SQUOTE] = ACTIONS(4266), + [anon_sym_SQUOTE] = ACTIONS(4266), + [anon_sym_L_DQUOTE] = ACTIONS(4268), + [anon_sym_u_DQUOTE] = ACTIONS(4268), + [anon_sym_U_DQUOTE] = ACTIONS(4268), + [anon_sym_u8_DQUOTE] = ACTIONS(4268), + [anon_sym_DQUOTE] = ACTIONS(4268), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4272), + [anon_sym_nullptr] = ACTIONS(4272), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4274), + [anon_sym_R_DQUOTE] = ACTIONS(4276), + [anon_sym_LR_DQUOTE] = ACTIONS(4276), + [anon_sym_uR_DQUOTE] = ACTIONS(4276), + [anon_sym_UR_DQUOTE] = ACTIONS(4276), + [anon_sym_u8R_DQUOTE] = ACTIONS(4276), + [anon_sym_co_await] = ACTIONS(4278), + [anon_sym_new] = ACTIONS(4280), + [anon_sym_requires] = ACTIONS(4282), + [sym_this] = ACTIONS(4270), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4284), + [sym_semgrep_named_ellipsis] = ACTIONS(4286), }, - [1332] = { - [sym_expression] = STATE(6105), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), - }, - [1333] = { - [sym_expression] = STATE(3715), - [sym_expression_not_binary] = STATE(4050), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9276), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [sym_identifier] = ACTIONS(2854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5150), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2858), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), - }, - [1334] = { - [sym_expression] = STATE(3718), - [sym_expression_not_binary] = STATE(4050), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9276), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [sym_identifier] = ACTIONS(2854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5150), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2858), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), - }, - [1335] = { - [sym_expression] = STATE(3719), - [sym_expression_not_binary] = STATE(4050), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9276), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [sym_identifier] = ACTIONS(2854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5150), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2858), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), + [1410] = { + [sym_expression] = STATE(3418), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3584), + [sym_concatenated_string] = STATE(3584), + [sym_string_literal] = STATE(2482), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2482), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5060), + [anon_sym_BANG] = ACTIONS(2578), + [anon_sym_TILDE] = ACTIONS(2578), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(2580), + [anon_sym_LBRACK] = ACTIONS(5274), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2576), + [anon_sym_compl] = ACTIONS(2576), + [anon_sym_DASH_DASH] = ACTIONS(4964), + [anon_sym_PLUS_PLUS] = ACTIONS(4964), + [anon_sym_sizeof] = ACTIONS(2582), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2584), + [anon_sym_L_SQUOTE] = ACTIONS(2586), + [anon_sym_u_SQUOTE] = ACTIONS(2586), + [anon_sym_U_SQUOTE] = ACTIONS(2586), + [anon_sym_u8_SQUOTE] = ACTIONS(2586), + [anon_sym_SQUOTE] = ACTIONS(2586), + [anon_sym_L_DQUOTE] = ACTIONS(2588), + [anon_sym_u_DQUOTE] = ACTIONS(2588), + [anon_sym_U_DQUOTE] = ACTIONS(2588), + [anon_sym_u8_DQUOTE] = ACTIONS(2588), + [anon_sym_DQUOTE] = ACTIONS(2588), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2590), + [anon_sym_R_DQUOTE] = ACTIONS(2592), + [anon_sym_LR_DQUOTE] = ACTIONS(2592), + [anon_sym_uR_DQUOTE] = ACTIONS(2592), + [anon_sym_UR_DQUOTE] = ACTIONS(2592), + [anon_sym_u8R_DQUOTE] = ACTIONS(2592), + [anon_sym_co_await] = ACTIONS(2594), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1336] = { - [sym_expression] = STATE(4385), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(5320), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), + [1411] = { + [sym_expression] = STATE(2901), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3584), + [sym_concatenated_string] = STATE(3584), + [sym_string_literal] = STATE(2482), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2482), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5060), + [anon_sym_BANG] = ACTIONS(2578), + [anon_sym_TILDE] = ACTIONS(2578), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(2580), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2576), + [anon_sym_compl] = ACTIONS(2576), + [anon_sym_DASH_DASH] = ACTIONS(4964), + [anon_sym_PLUS_PLUS] = ACTIONS(4964), + [anon_sym_sizeof] = ACTIONS(2582), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2584), + [anon_sym_L_SQUOTE] = ACTIONS(2586), + [anon_sym_u_SQUOTE] = ACTIONS(2586), + [anon_sym_U_SQUOTE] = ACTIONS(2586), + [anon_sym_u8_SQUOTE] = ACTIONS(2586), + [anon_sym_SQUOTE] = ACTIONS(2586), + [anon_sym_L_DQUOTE] = ACTIONS(2588), + [anon_sym_u_DQUOTE] = ACTIONS(2588), + [anon_sym_U_DQUOTE] = ACTIONS(2588), + [anon_sym_u8_DQUOTE] = ACTIONS(2588), + [anon_sym_DQUOTE] = ACTIONS(2588), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2590), + [anon_sym_R_DQUOTE] = ACTIONS(2592), + [anon_sym_LR_DQUOTE] = ACTIONS(2592), + [anon_sym_uR_DQUOTE] = ACTIONS(2592), + [anon_sym_UR_DQUOTE] = ACTIONS(2592), + [anon_sym_u8R_DQUOTE] = ACTIONS(2592), + [anon_sym_co_await] = ACTIONS(2594), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1337] = { - [sym_expression] = STATE(4386), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), + [1412] = { + [sym_expression] = STATE(3495), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3584), + [sym_concatenated_string] = STATE(3584), + [sym_string_literal] = STATE(2482), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2482), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5060), + [anon_sym_BANG] = ACTIONS(2578), + [anon_sym_TILDE] = ACTIONS(2578), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(2580), + [anon_sym_LBRACK] = ACTIONS(5276), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2576), + [anon_sym_compl] = ACTIONS(2576), + [anon_sym_DASH_DASH] = ACTIONS(4964), + [anon_sym_PLUS_PLUS] = ACTIONS(4964), + [anon_sym_sizeof] = ACTIONS(2582), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2584), + [anon_sym_L_SQUOTE] = ACTIONS(2586), + [anon_sym_u_SQUOTE] = ACTIONS(2586), + [anon_sym_U_SQUOTE] = ACTIONS(2586), + [anon_sym_u8_SQUOTE] = ACTIONS(2586), + [anon_sym_SQUOTE] = ACTIONS(2586), + [anon_sym_L_DQUOTE] = ACTIONS(2588), + [anon_sym_u_DQUOTE] = ACTIONS(2588), + [anon_sym_U_DQUOTE] = ACTIONS(2588), + [anon_sym_u8_DQUOTE] = ACTIONS(2588), + [anon_sym_DQUOTE] = ACTIONS(2588), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2590), + [anon_sym_R_DQUOTE] = ACTIONS(2592), + [anon_sym_LR_DQUOTE] = ACTIONS(2592), + [anon_sym_uR_DQUOTE] = ACTIONS(2592), + [anon_sym_UR_DQUOTE] = ACTIONS(2592), + [anon_sym_u8R_DQUOTE] = ACTIONS(2592), + [anon_sym_co_await] = ACTIONS(2594), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1338] = { - [sym_expression] = STATE(3720), - [sym_expression_not_binary] = STATE(4050), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9276), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [sym_identifier] = ACTIONS(2854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5150), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2858), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), + [1413] = { + [sym_expression] = STATE(3431), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3584), + [sym_concatenated_string] = STATE(3584), + [sym_string_literal] = STATE(2482), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2482), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5060), + [anon_sym_BANG] = ACTIONS(2578), + [anon_sym_TILDE] = ACTIONS(2578), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(2580), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2576), + [anon_sym_compl] = ACTIONS(2576), + [anon_sym_DASH_DASH] = ACTIONS(4964), + [anon_sym_PLUS_PLUS] = ACTIONS(4964), + [anon_sym_sizeof] = ACTIONS(2582), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2584), + [anon_sym_L_SQUOTE] = ACTIONS(2586), + [anon_sym_u_SQUOTE] = ACTIONS(2586), + [anon_sym_U_SQUOTE] = ACTIONS(2586), + [anon_sym_u8_SQUOTE] = ACTIONS(2586), + [anon_sym_SQUOTE] = ACTIONS(2586), + [anon_sym_L_DQUOTE] = ACTIONS(2588), + [anon_sym_u_DQUOTE] = ACTIONS(2588), + [anon_sym_U_DQUOTE] = ACTIONS(2588), + [anon_sym_u8_DQUOTE] = ACTIONS(2588), + [anon_sym_DQUOTE] = ACTIONS(2588), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2590), + [anon_sym_R_DQUOTE] = ACTIONS(2592), + [anon_sym_LR_DQUOTE] = ACTIONS(2592), + [anon_sym_uR_DQUOTE] = ACTIONS(2592), + [anon_sym_UR_DQUOTE] = ACTIONS(2592), + [anon_sym_u8R_DQUOTE] = ACTIONS(2592), + [anon_sym_co_await] = ACTIONS(2594), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1339] = { - [sym_expression] = STATE(4277), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(5322), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), + [1414] = { + [sym_expression] = STATE(3485), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3584), + [sym_concatenated_string] = STATE(3584), + [sym_string_literal] = STATE(2482), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2482), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5060), + [anon_sym_BANG] = ACTIONS(2578), + [anon_sym_TILDE] = ACTIONS(2578), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(2580), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2576), + [anon_sym_compl] = ACTIONS(2576), + [anon_sym_DASH_DASH] = ACTIONS(4964), + [anon_sym_PLUS_PLUS] = ACTIONS(4964), + [anon_sym_sizeof] = ACTIONS(2582), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2584), + [anon_sym_L_SQUOTE] = ACTIONS(2586), + [anon_sym_u_SQUOTE] = ACTIONS(2586), + [anon_sym_U_SQUOTE] = ACTIONS(2586), + [anon_sym_u8_SQUOTE] = ACTIONS(2586), + [anon_sym_SQUOTE] = ACTIONS(2586), + [anon_sym_L_DQUOTE] = ACTIONS(2588), + [anon_sym_u_DQUOTE] = ACTIONS(2588), + [anon_sym_U_DQUOTE] = ACTIONS(2588), + [anon_sym_u8_DQUOTE] = ACTIONS(2588), + [anon_sym_DQUOTE] = ACTIONS(2588), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2590), + [anon_sym_R_DQUOTE] = ACTIONS(2592), + [anon_sym_LR_DQUOTE] = ACTIONS(2592), + [anon_sym_uR_DQUOTE] = ACTIONS(2592), + [anon_sym_UR_DQUOTE] = ACTIONS(2592), + [anon_sym_u8R_DQUOTE] = ACTIONS(2592), + [anon_sym_co_await] = ACTIONS(2594), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1340] = { - [sym_expression] = STATE(5845), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1415] = { + [sym_expression] = STATE(5365), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -236798,7 +233926,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -236812,782 +233940,476 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1341] = { - [sym_expression] = STATE(3723), - [sym_expression_not_binary] = STATE(4050), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9276), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [sym_identifier] = ACTIONS(2854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5150), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2858), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), - }, - [1342] = { - [sym_expression] = STATE(3724), - [sym_expression_not_binary] = STATE(4050), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9276), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [sym_identifier] = ACTIONS(2854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5150), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2858), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), - }, - [1343] = { - [sym_expression] = STATE(3725), - [sym_expression_not_binary] = STATE(4050), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9276), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [sym_identifier] = ACTIONS(2854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5150), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2858), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), - }, - [1344] = { - [sym_expression] = STATE(4361), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), + [1416] = { + [sym_expression] = STATE(3350), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3584), + [sym_concatenated_string] = STATE(3584), + [sym_string_literal] = STATE(2482), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2482), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5060), + [anon_sym_BANG] = ACTIONS(2578), + [anon_sym_TILDE] = ACTIONS(2578), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(2580), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2576), + [anon_sym_compl] = ACTIONS(2576), + [anon_sym_DASH_DASH] = ACTIONS(4964), + [anon_sym_PLUS_PLUS] = ACTIONS(4964), + [anon_sym_sizeof] = ACTIONS(2582), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2584), + [anon_sym_L_SQUOTE] = ACTIONS(2586), + [anon_sym_u_SQUOTE] = ACTIONS(2586), + [anon_sym_U_SQUOTE] = ACTIONS(2586), + [anon_sym_u8_SQUOTE] = ACTIONS(2586), + [anon_sym_SQUOTE] = ACTIONS(2586), + [anon_sym_L_DQUOTE] = ACTIONS(2588), + [anon_sym_u_DQUOTE] = ACTIONS(2588), + [anon_sym_U_DQUOTE] = ACTIONS(2588), + [anon_sym_u8_DQUOTE] = ACTIONS(2588), + [anon_sym_DQUOTE] = ACTIONS(2588), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2590), + [anon_sym_R_DQUOTE] = ACTIONS(2592), + [anon_sym_LR_DQUOTE] = ACTIONS(2592), + [anon_sym_uR_DQUOTE] = ACTIONS(2592), + [anon_sym_UR_DQUOTE] = ACTIONS(2592), + [anon_sym_u8R_DQUOTE] = ACTIONS(2592), + [anon_sym_co_await] = ACTIONS(2594), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1345] = { - [sym_expression] = STATE(3728), - [sym_expression_not_binary] = STATE(4050), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9276), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [sym_identifier] = ACTIONS(2854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5150), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2858), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), + [1417] = { + [sym_expression] = STATE(4898), + [sym_expression_not_binary] = STATE(5098), + [sym_conditional_expression] = STATE(5096), + [sym_assignment_expression] = STATE(5096), + [sym_pointer_expression] = STATE(3493), + [sym_unary_expression] = STATE(5096), + [sym_binary_expression] = STATE(5098), + [sym_update_expression] = STATE(5096), + [sym_cast_expression] = STATE(5096), + [sym_sizeof_expression] = STATE(5096), + [sym_alignof_expression] = STATE(5096), + [sym_offsetof_expression] = STATE(5096), + [sym_generic_expression] = STATE(5096), + [sym_subscript_expression] = STATE(3493), + [sym_call_expression] = STATE(3493), + [sym_gnu_asm_expression] = STATE(5096), + [sym_field_expression] = STATE(3493), + [sym_compound_literal_expression] = STATE(5096), + [sym_parenthesized_expression] = STATE(3493), + [sym_char_literal] = STATE(4944), + [sym_concatenated_string] = STATE(4944), + [sym_string_literal] = STATE(3577), + [sym_null] = STATE(5096), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9068), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5096), + [sym_raw_string_literal] = STATE(3577), + [sym_co_await_expression] = STATE(5096), + [sym_new_expression] = STATE(5096), + [sym_delete_expression] = STATE(5096), + [sym_requires_clause] = STATE(5096), + [sym_requires_expression] = STATE(5096), + [sym_lambda_expression] = STATE(5096), + [sym_lambda_capture_specifier] = STATE(6837), + [sym_fold_expression] = STATE(5096), + [sym_parameter_pack_expansion] = STATE(5096), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3493), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3493), + [sym_semgrep_ellipsis] = STATE(5098), + [sym_deep_ellipsis] = STATE(5098), + [sym_identifier] = ACTIONS(4980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4982), + [anon_sym_LPAREN2] = ACTIONS(5040), + [anon_sym_BANG] = ACTIONS(3960), + [anon_sym_TILDE] = ACTIONS(3960), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(3962), + [anon_sym_LBRACK] = ACTIONS(5278), + [sym_primitive_type] = ACTIONS(3966), + [anon_sym_not] = ACTIONS(3958), + [anon_sym_compl] = ACTIONS(3958), + [anon_sym_DASH_DASH] = ACTIONS(4984), + [anon_sym_PLUS_PLUS] = ACTIONS(4984), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym___alignof__] = ACTIONS(3970), + [anon_sym___alignof] = ACTIONS(3970), + [anon_sym__alignof] = ACTIONS(3970), + [anon_sym_alignof] = ACTIONS(3970), + [anon_sym__Alignof] = ACTIONS(3970), + [anon_sym_offsetof] = ACTIONS(3972), + [anon_sym__Generic] = ACTIONS(3974), + [anon_sym_asm] = ACTIONS(3976), + [anon_sym___asm__] = ACTIONS(3976), + [sym_number_literal] = ACTIONS(3978), + [anon_sym_L_SQUOTE] = ACTIONS(3980), + [anon_sym_u_SQUOTE] = ACTIONS(3980), + [anon_sym_U_SQUOTE] = ACTIONS(3980), + [anon_sym_u8_SQUOTE] = ACTIONS(3980), + [anon_sym_SQUOTE] = ACTIONS(3980), + [anon_sym_L_DQUOTE] = ACTIONS(3982), + [anon_sym_u_DQUOTE] = ACTIONS(3982), + [anon_sym_U_DQUOTE] = ACTIONS(3982), + [anon_sym_u8_DQUOTE] = ACTIONS(3982), + [anon_sym_DQUOTE] = ACTIONS(3982), + [sym_true] = ACTIONS(3984), + [sym_false] = ACTIONS(3984), + [anon_sym_NULL] = ACTIONS(3986), + [anon_sym_nullptr] = ACTIONS(3986), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3988), + [anon_sym_R_DQUOTE] = ACTIONS(3990), + [anon_sym_LR_DQUOTE] = ACTIONS(3990), + [anon_sym_uR_DQUOTE] = ACTIONS(3990), + [anon_sym_UR_DQUOTE] = ACTIONS(3990), + [anon_sym_u8R_DQUOTE] = ACTIONS(3990), + [anon_sym_co_await] = ACTIONS(3992), + [anon_sym_new] = ACTIONS(3994), + [anon_sym_requires] = ACTIONS(3996), + [sym_this] = ACTIONS(3984), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3998), + [sym_semgrep_named_ellipsis] = ACTIONS(4000), }, - [1346] = { - [sym_expression] = STATE(3729), - [sym_expression_not_binary] = STATE(4050), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9276), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [sym_identifier] = ACTIONS(2854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5150), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2858), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), + [1418] = { + [sym_expression] = STATE(4899), + [sym_expression_not_binary] = STATE(5098), + [sym_conditional_expression] = STATE(5096), + [sym_assignment_expression] = STATE(5096), + [sym_pointer_expression] = STATE(3493), + [sym_unary_expression] = STATE(5096), + [sym_binary_expression] = STATE(5098), + [sym_update_expression] = STATE(5096), + [sym_cast_expression] = STATE(5096), + [sym_sizeof_expression] = STATE(5096), + [sym_alignof_expression] = STATE(5096), + [sym_offsetof_expression] = STATE(5096), + [sym_generic_expression] = STATE(5096), + [sym_subscript_expression] = STATE(3493), + [sym_call_expression] = STATE(3493), + [sym_gnu_asm_expression] = STATE(5096), + [sym_field_expression] = STATE(3493), + [sym_compound_literal_expression] = STATE(5096), + [sym_parenthesized_expression] = STATE(3493), + [sym_char_literal] = STATE(4944), + [sym_concatenated_string] = STATE(4944), + [sym_string_literal] = STATE(3577), + [sym_null] = STATE(5096), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9068), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5096), + [sym_raw_string_literal] = STATE(3577), + [sym_co_await_expression] = STATE(5096), + [sym_new_expression] = STATE(5096), + [sym_delete_expression] = STATE(5096), + [sym_requires_clause] = STATE(5096), + [sym_requires_expression] = STATE(5096), + [sym_lambda_expression] = STATE(5096), + [sym_lambda_capture_specifier] = STATE(6837), + [sym_fold_expression] = STATE(5096), + [sym_parameter_pack_expansion] = STATE(5096), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3493), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3493), + [sym_semgrep_ellipsis] = STATE(5098), + [sym_deep_ellipsis] = STATE(5098), + [sym_identifier] = ACTIONS(4980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4982), + [anon_sym_LPAREN2] = ACTIONS(5040), + [anon_sym_BANG] = ACTIONS(3960), + [anon_sym_TILDE] = ACTIONS(3960), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(3962), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3966), + [anon_sym_not] = ACTIONS(3958), + [anon_sym_compl] = ACTIONS(3958), + [anon_sym_DASH_DASH] = ACTIONS(4984), + [anon_sym_PLUS_PLUS] = ACTIONS(4984), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym___alignof__] = ACTIONS(3970), + [anon_sym___alignof] = ACTIONS(3970), + [anon_sym__alignof] = ACTIONS(3970), + [anon_sym_alignof] = ACTIONS(3970), + [anon_sym__Alignof] = ACTIONS(3970), + [anon_sym_offsetof] = ACTIONS(3972), + [anon_sym__Generic] = ACTIONS(3974), + [anon_sym_asm] = ACTIONS(3976), + [anon_sym___asm__] = ACTIONS(3976), + [sym_number_literal] = ACTIONS(3978), + [anon_sym_L_SQUOTE] = ACTIONS(3980), + [anon_sym_u_SQUOTE] = ACTIONS(3980), + [anon_sym_U_SQUOTE] = ACTIONS(3980), + [anon_sym_u8_SQUOTE] = ACTIONS(3980), + [anon_sym_SQUOTE] = ACTIONS(3980), + [anon_sym_L_DQUOTE] = ACTIONS(3982), + [anon_sym_u_DQUOTE] = ACTIONS(3982), + [anon_sym_U_DQUOTE] = ACTIONS(3982), + [anon_sym_u8_DQUOTE] = ACTIONS(3982), + [anon_sym_DQUOTE] = ACTIONS(3982), + [sym_true] = ACTIONS(3984), + [sym_false] = ACTIONS(3984), + [anon_sym_NULL] = ACTIONS(3986), + [anon_sym_nullptr] = ACTIONS(3986), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3988), + [anon_sym_R_DQUOTE] = ACTIONS(3990), + [anon_sym_LR_DQUOTE] = ACTIONS(3990), + [anon_sym_uR_DQUOTE] = ACTIONS(3990), + [anon_sym_UR_DQUOTE] = ACTIONS(3990), + [anon_sym_u8R_DQUOTE] = ACTIONS(3990), + [anon_sym_co_await] = ACTIONS(3992), + [anon_sym_new] = ACTIONS(3994), + [anon_sym_requires] = ACTIONS(3996), + [sym_this] = ACTIONS(3984), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3998), + [sym_semgrep_named_ellipsis] = ACTIONS(4000), }, - [1347] = { - [sym_expression] = STATE(3735), - [sym_expression_not_binary] = STATE(4050), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9276), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [sym_identifier] = ACTIONS(2854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5150), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2858), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), + [1419] = { + [sym_expression] = STATE(4834), + [sym_expression_not_binary] = STATE(5098), + [sym_conditional_expression] = STATE(5096), + [sym_assignment_expression] = STATE(5096), + [sym_pointer_expression] = STATE(3493), + [sym_unary_expression] = STATE(5096), + [sym_binary_expression] = STATE(5098), + [sym_update_expression] = STATE(5096), + [sym_cast_expression] = STATE(5096), + [sym_sizeof_expression] = STATE(5096), + [sym_alignof_expression] = STATE(5096), + [sym_offsetof_expression] = STATE(5096), + [sym_generic_expression] = STATE(5096), + [sym_subscript_expression] = STATE(3493), + [sym_call_expression] = STATE(3493), + [sym_gnu_asm_expression] = STATE(5096), + [sym_field_expression] = STATE(3493), + [sym_compound_literal_expression] = STATE(5096), + [sym_parenthesized_expression] = STATE(3493), + [sym_char_literal] = STATE(4944), + [sym_concatenated_string] = STATE(4944), + [sym_string_literal] = STATE(3577), + [sym_null] = STATE(5096), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9068), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5096), + [sym_raw_string_literal] = STATE(3577), + [sym_co_await_expression] = STATE(5096), + [sym_new_expression] = STATE(5096), + [sym_delete_expression] = STATE(5096), + [sym_requires_clause] = STATE(5096), + [sym_requires_expression] = STATE(5096), + [sym_lambda_expression] = STATE(5096), + [sym_lambda_capture_specifier] = STATE(6837), + [sym_fold_expression] = STATE(5096), + [sym_parameter_pack_expansion] = STATE(5096), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3493), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3493), + [sym_semgrep_ellipsis] = STATE(5098), + [sym_deep_ellipsis] = STATE(5098), + [sym_identifier] = ACTIONS(4980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4982), + [anon_sym_LPAREN2] = ACTIONS(5040), + [anon_sym_BANG] = ACTIONS(3960), + [anon_sym_TILDE] = ACTIONS(3960), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(3962), + [anon_sym_LBRACK] = ACTIONS(5280), + [sym_primitive_type] = ACTIONS(3966), + [anon_sym_not] = ACTIONS(3958), + [anon_sym_compl] = ACTIONS(3958), + [anon_sym_DASH_DASH] = ACTIONS(4984), + [anon_sym_PLUS_PLUS] = ACTIONS(4984), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym___alignof__] = ACTIONS(3970), + [anon_sym___alignof] = ACTIONS(3970), + [anon_sym__alignof] = ACTIONS(3970), + [anon_sym_alignof] = ACTIONS(3970), + [anon_sym__Alignof] = ACTIONS(3970), + [anon_sym_offsetof] = ACTIONS(3972), + [anon_sym__Generic] = ACTIONS(3974), + [anon_sym_asm] = ACTIONS(3976), + [anon_sym___asm__] = ACTIONS(3976), + [sym_number_literal] = ACTIONS(3978), + [anon_sym_L_SQUOTE] = ACTIONS(3980), + [anon_sym_u_SQUOTE] = ACTIONS(3980), + [anon_sym_U_SQUOTE] = ACTIONS(3980), + [anon_sym_u8_SQUOTE] = ACTIONS(3980), + [anon_sym_SQUOTE] = ACTIONS(3980), + [anon_sym_L_DQUOTE] = ACTIONS(3982), + [anon_sym_u_DQUOTE] = ACTIONS(3982), + [anon_sym_U_DQUOTE] = ACTIONS(3982), + [anon_sym_u8_DQUOTE] = ACTIONS(3982), + [anon_sym_DQUOTE] = ACTIONS(3982), + [sym_true] = ACTIONS(3984), + [sym_false] = ACTIONS(3984), + [anon_sym_NULL] = ACTIONS(3986), + [anon_sym_nullptr] = ACTIONS(3986), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3988), + [anon_sym_R_DQUOTE] = ACTIONS(3990), + [anon_sym_LR_DQUOTE] = ACTIONS(3990), + [anon_sym_uR_DQUOTE] = ACTIONS(3990), + [anon_sym_UR_DQUOTE] = ACTIONS(3990), + [anon_sym_u8R_DQUOTE] = ACTIONS(3990), + [anon_sym_co_await] = ACTIONS(3992), + [anon_sym_new] = ACTIONS(3994), + [anon_sym_requires] = ACTIONS(3996), + [sym_this] = ACTIONS(3984), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3998), + [sym_semgrep_named_ellipsis] = ACTIONS(4000), }, - [1348] = { - [sym_expression] = STATE(5934), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(5324), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1420] = { + [sym_expression] = STATE(5366), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -237614,587 +234436,1403 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1349] = { - [sym_expression] = STATE(5943), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), + [1421] = { + [sym_expression] = STATE(4907), + [sym_expression_not_binary] = STATE(5098), + [sym_conditional_expression] = STATE(5096), + [sym_assignment_expression] = STATE(5096), + [sym_pointer_expression] = STATE(3493), + [sym_unary_expression] = STATE(5096), + [sym_binary_expression] = STATE(5098), + [sym_update_expression] = STATE(5096), + [sym_cast_expression] = STATE(5096), + [sym_sizeof_expression] = STATE(5096), + [sym_alignof_expression] = STATE(5096), + [sym_offsetof_expression] = STATE(5096), + [sym_generic_expression] = STATE(5096), + [sym_subscript_expression] = STATE(3493), + [sym_call_expression] = STATE(3493), + [sym_gnu_asm_expression] = STATE(5096), + [sym_field_expression] = STATE(3493), + [sym_compound_literal_expression] = STATE(5096), + [sym_parenthesized_expression] = STATE(3493), + [sym_char_literal] = STATE(4944), + [sym_concatenated_string] = STATE(4944), + [sym_string_literal] = STATE(3577), + [sym_null] = STATE(5096), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9068), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5096), + [sym_raw_string_literal] = STATE(3577), + [sym_co_await_expression] = STATE(5096), + [sym_new_expression] = STATE(5096), + [sym_delete_expression] = STATE(5096), + [sym_requires_clause] = STATE(5096), + [sym_requires_expression] = STATE(5096), + [sym_lambda_expression] = STATE(5096), + [sym_lambda_capture_specifier] = STATE(6837), + [sym_fold_expression] = STATE(5096), + [sym_parameter_pack_expansion] = STATE(5096), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3493), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3493), + [sym_semgrep_ellipsis] = STATE(5098), + [sym_deep_ellipsis] = STATE(5098), + [sym_identifier] = ACTIONS(4980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4982), + [anon_sym_LPAREN2] = ACTIONS(5040), + [anon_sym_BANG] = ACTIONS(3960), + [anon_sym_TILDE] = ACTIONS(3960), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(3962), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3966), + [anon_sym_not] = ACTIONS(3958), + [anon_sym_compl] = ACTIONS(3958), + [anon_sym_DASH_DASH] = ACTIONS(4984), + [anon_sym_PLUS_PLUS] = ACTIONS(4984), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym___alignof__] = ACTIONS(3970), + [anon_sym___alignof] = ACTIONS(3970), + [anon_sym__alignof] = ACTIONS(3970), + [anon_sym_alignof] = ACTIONS(3970), + [anon_sym__Alignof] = ACTIONS(3970), + [anon_sym_offsetof] = ACTIONS(3972), + [anon_sym__Generic] = ACTIONS(3974), + [anon_sym_asm] = ACTIONS(3976), + [anon_sym___asm__] = ACTIONS(3976), + [sym_number_literal] = ACTIONS(3978), + [anon_sym_L_SQUOTE] = ACTIONS(3980), + [anon_sym_u_SQUOTE] = ACTIONS(3980), + [anon_sym_U_SQUOTE] = ACTIONS(3980), + [anon_sym_u8_SQUOTE] = ACTIONS(3980), + [anon_sym_SQUOTE] = ACTIONS(3980), + [anon_sym_L_DQUOTE] = ACTIONS(3982), + [anon_sym_u_DQUOTE] = ACTIONS(3982), + [anon_sym_U_DQUOTE] = ACTIONS(3982), + [anon_sym_u8_DQUOTE] = ACTIONS(3982), + [anon_sym_DQUOTE] = ACTIONS(3982), + [sym_true] = ACTIONS(3984), + [sym_false] = ACTIONS(3984), + [anon_sym_NULL] = ACTIONS(3986), + [anon_sym_nullptr] = ACTIONS(3986), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3988), + [anon_sym_R_DQUOTE] = ACTIONS(3990), + [anon_sym_LR_DQUOTE] = ACTIONS(3990), + [anon_sym_uR_DQUOTE] = ACTIONS(3990), + [anon_sym_UR_DQUOTE] = ACTIONS(3990), + [anon_sym_u8R_DQUOTE] = ACTIONS(3990), + [anon_sym_co_await] = ACTIONS(3992), + [anon_sym_new] = ACTIONS(3994), + [anon_sym_requires] = ACTIONS(3996), + [sym_this] = ACTIONS(3984), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3998), + [sym_semgrep_named_ellipsis] = ACTIONS(4000), }, - [1350] = { - [sym_expression] = STATE(4211), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), + [1422] = { + [sym_expression] = STATE(4853), + [sym_expression_not_binary] = STATE(5098), + [sym_conditional_expression] = STATE(5096), + [sym_assignment_expression] = STATE(5096), + [sym_pointer_expression] = STATE(3493), + [sym_unary_expression] = STATE(5096), + [sym_binary_expression] = STATE(5098), + [sym_update_expression] = STATE(5096), + [sym_cast_expression] = STATE(5096), + [sym_sizeof_expression] = STATE(5096), + [sym_alignof_expression] = STATE(5096), + [sym_offsetof_expression] = STATE(5096), + [sym_generic_expression] = STATE(5096), + [sym_subscript_expression] = STATE(3493), + [sym_call_expression] = STATE(3493), + [sym_gnu_asm_expression] = STATE(5096), + [sym_field_expression] = STATE(3493), + [sym_compound_literal_expression] = STATE(5096), + [sym_parenthesized_expression] = STATE(3493), + [sym_char_literal] = STATE(4944), + [sym_concatenated_string] = STATE(4944), + [sym_string_literal] = STATE(3577), + [sym_null] = STATE(5096), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9068), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5096), + [sym_raw_string_literal] = STATE(3577), + [sym_co_await_expression] = STATE(5096), + [sym_new_expression] = STATE(5096), + [sym_delete_expression] = STATE(5096), + [sym_requires_clause] = STATE(5096), + [sym_requires_expression] = STATE(5096), + [sym_lambda_expression] = STATE(5096), + [sym_lambda_capture_specifier] = STATE(6837), + [sym_fold_expression] = STATE(5096), + [sym_parameter_pack_expansion] = STATE(5096), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3493), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3493), + [sym_semgrep_ellipsis] = STATE(5098), + [sym_deep_ellipsis] = STATE(5098), + [sym_identifier] = ACTIONS(4980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4982), + [anon_sym_LPAREN2] = ACTIONS(5040), + [anon_sym_BANG] = ACTIONS(3960), + [anon_sym_TILDE] = ACTIONS(3960), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(3962), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3966), + [anon_sym_not] = ACTIONS(3958), + [anon_sym_compl] = ACTIONS(3958), + [anon_sym_DASH_DASH] = ACTIONS(4984), + [anon_sym_PLUS_PLUS] = ACTIONS(4984), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym___alignof__] = ACTIONS(3970), + [anon_sym___alignof] = ACTIONS(3970), + [anon_sym__alignof] = ACTIONS(3970), + [anon_sym_alignof] = ACTIONS(3970), + [anon_sym__Alignof] = ACTIONS(3970), + [anon_sym_offsetof] = ACTIONS(3972), + [anon_sym__Generic] = ACTIONS(3974), + [anon_sym_asm] = ACTIONS(3976), + [anon_sym___asm__] = ACTIONS(3976), + [sym_number_literal] = ACTIONS(3978), + [anon_sym_L_SQUOTE] = ACTIONS(3980), + [anon_sym_u_SQUOTE] = ACTIONS(3980), + [anon_sym_U_SQUOTE] = ACTIONS(3980), + [anon_sym_u8_SQUOTE] = ACTIONS(3980), + [anon_sym_SQUOTE] = ACTIONS(3980), + [anon_sym_L_DQUOTE] = ACTIONS(3982), + [anon_sym_u_DQUOTE] = ACTIONS(3982), + [anon_sym_U_DQUOTE] = ACTIONS(3982), + [anon_sym_u8_DQUOTE] = ACTIONS(3982), + [anon_sym_DQUOTE] = ACTIONS(3982), + [sym_true] = ACTIONS(3984), + [sym_false] = ACTIONS(3984), + [anon_sym_NULL] = ACTIONS(3986), + [anon_sym_nullptr] = ACTIONS(3986), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3988), + [anon_sym_R_DQUOTE] = ACTIONS(3990), + [anon_sym_LR_DQUOTE] = ACTIONS(3990), + [anon_sym_uR_DQUOTE] = ACTIONS(3990), + [anon_sym_UR_DQUOTE] = ACTIONS(3990), + [anon_sym_u8R_DQUOTE] = ACTIONS(3990), + [anon_sym_co_await] = ACTIONS(3992), + [anon_sym_new] = ACTIONS(3994), + [anon_sym_requires] = ACTIONS(3996), + [sym_this] = ACTIONS(3984), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3998), + [sym_semgrep_named_ellipsis] = ACTIONS(4000), }, - [1351] = { - [sym_expression] = STATE(4253), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), + [1423] = { + [sym_expression] = STATE(4857), + [sym_expression_not_binary] = STATE(5098), + [sym_conditional_expression] = STATE(5096), + [sym_assignment_expression] = STATE(5096), + [sym_pointer_expression] = STATE(3493), + [sym_unary_expression] = STATE(5096), + [sym_binary_expression] = STATE(5098), + [sym_update_expression] = STATE(5096), + [sym_cast_expression] = STATE(5096), + [sym_sizeof_expression] = STATE(5096), + [sym_alignof_expression] = STATE(5096), + [sym_offsetof_expression] = STATE(5096), + [sym_generic_expression] = STATE(5096), + [sym_subscript_expression] = STATE(3493), + [sym_call_expression] = STATE(3493), + [sym_gnu_asm_expression] = STATE(5096), + [sym_field_expression] = STATE(3493), + [sym_compound_literal_expression] = STATE(5096), + [sym_parenthesized_expression] = STATE(3493), + [sym_char_literal] = STATE(4944), + [sym_concatenated_string] = STATE(4944), + [sym_string_literal] = STATE(3577), + [sym_null] = STATE(5096), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9068), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5096), + [sym_raw_string_literal] = STATE(3577), + [sym_co_await_expression] = STATE(5096), + [sym_new_expression] = STATE(5096), + [sym_delete_expression] = STATE(5096), + [sym_requires_clause] = STATE(5096), + [sym_requires_expression] = STATE(5096), + [sym_lambda_expression] = STATE(5096), + [sym_lambda_capture_specifier] = STATE(6837), + [sym_fold_expression] = STATE(5096), + [sym_parameter_pack_expansion] = STATE(5096), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3493), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3493), + [sym_semgrep_ellipsis] = STATE(5098), + [sym_deep_ellipsis] = STATE(5098), + [sym_identifier] = ACTIONS(4980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4982), + [anon_sym_LPAREN2] = ACTIONS(5040), + [anon_sym_BANG] = ACTIONS(3960), + [anon_sym_TILDE] = ACTIONS(3960), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(3962), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3966), + [anon_sym_not] = ACTIONS(3958), + [anon_sym_compl] = ACTIONS(3958), + [anon_sym_DASH_DASH] = ACTIONS(4984), + [anon_sym_PLUS_PLUS] = ACTIONS(4984), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym___alignof__] = ACTIONS(3970), + [anon_sym___alignof] = ACTIONS(3970), + [anon_sym__alignof] = ACTIONS(3970), + [anon_sym_alignof] = ACTIONS(3970), + [anon_sym__Alignof] = ACTIONS(3970), + [anon_sym_offsetof] = ACTIONS(3972), + [anon_sym__Generic] = ACTIONS(3974), + [anon_sym_asm] = ACTIONS(3976), + [anon_sym___asm__] = ACTIONS(3976), + [sym_number_literal] = ACTIONS(3978), + [anon_sym_L_SQUOTE] = ACTIONS(3980), + [anon_sym_u_SQUOTE] = ACTIONS(3980), + [anon_sym_U_SQUOTE] = ACTIONS(3980), + [anon_sym_u8_SQUOTE] = ACTIONS(3980), + [anon_sym_SQUOTE] = ACTIONS(3980), + [anon_sym_L_DQUOTE] = ACTIONS(3982), + [anon_sym_u_DQUOTE] = ACTIONS(3982), + [anon_sym_U_DQUOTE] = ACTIONS(3982), + [anon_sym_u8_DQUOTE] = ACTIONS(3982), + [anon_sym_DQUOTE] = ACTIONS(3982), + [sym_true] = ACTIONS(3984), + [sym_false] = ACTIONS(3984), + [anon_sym_NULL] = ACTIONS(3986), + [anon_sym_nullptr] = ACTIONS(3986), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3988), + [anon_sym_R_DQUOTE] = ACTIONS(3990), + [anon_sym_LR_DQUOTE] = ACTIONS(3990), + [anon_sym_uR_DQUOTE] = ACTIONS(3990), + [anon_sym_UR_DQUOTE] = ACTIONS(3990), + [anon_sym_u8R_DQUOTE] = ACTIONS(3990), + [anon_sym_co_await] = ACTIONS(3992), + [anon_sym_new] = ACTIONS(3994), + [anon_sym_requires] = ACTIONS(3996), + [sym_this] = ACTIONS(3984), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3998), + [sym_semgrep_named_ellipsis] = ACTIONS(4000), }, - [1352] = { - [sym_expression] = STATE(3219), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(5326), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), + [1424] = { + [sym_expression] = STATE(2940), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(2995), + [sym_concatenated_string] = STATE(2995), + [sym_string_literal] = STATE(2040), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2040), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(5008), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5076), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(5282), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_compl] = ACTIONS(2329), + [anon_sym_DASH_DASH] = ACTIONS(5010), + [anon_sym_PLUS_PLUS] = ACTIONS(5010), + [anon_sym_sizeof] = ACTIONS(2335), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2337), + [anon_sym_L_SQUOTE] = ACTIONS(2339), + [anon_sym_u_SQUOTE] = ACTIONS(2339), + [anon_sym_U_SQUOTE] = ACTIONS(2339), + [anon_sym_u8_SQUOTE] = ACTIONS(2339), + [anon_sym_SQUOTE] = ACTIONS(2339), + [anon_sym_L_DQUOTE] = ACTIONS(2341), + [anon_sym_u_DQUOTE] = ACTIONS(2341), + [anon_sym_U_DQUOTE] = ACTIONS(2341), + [anon_sym_u8_DQUOTE] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2343), + [anon_sym_R_DQUOTE] = ACTIONS(2345), + [anon_sym_LR_DQUOTE] = ACTIONS(2345), + [anon_sym_uR_DQUOTE] = ACTIONS(2345), + [anon_sym_UR_DQUOTE] = ACTIONS(2345), + [anon_sym_u8R_DQUOTE] = ACTIONS(2345), + [anon_sym_co_await] = ACTIONS(2347), + [anon_sym_new] = ACTIONS(2349), + [anon_sym_requires] = ACTIONS(2351), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1353] = { - [sym_expression] = STATE(3024), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), + [1425] = { + [sym_expression] = STATE(2873), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(2995), + [sym_concatenated_string] = STATE(2995), + [sym_string_literal] = STATE(2040), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2040), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(5008), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5076), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_compl] = ACTIONS(2329), + [anon_sym_DASH_DASH] = ACTIONS(5010), + [anon_sym_PLUS_PLUS] = ACTIONS(5010), + [anon_sym_sizeof] = ACTIONS(2335), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2337), + [anon_sym_L_SQUOTE] = ACTIONS(2339), + [anon_sym_u_SQUOTE] = ACTIONS(2339), + [anon_sym_U_SQUOTE] = ACTIONS(2339), + [anon_sym_u8_SQUOTE] = ACTIONS(2339), + [anon_sym_SQUOTE] = ACTIONS(2339), + [anon_sym_L_DQUOTE] = ACTIONS(2341), + [anon_sym_u_DQUOTE] = ACTIONS(2341), + [anon_sym_U_DQUOTE] = ACTIONS(2341), + [anon_sym_u8_DQUOTE] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2343), + [anon_sym_R_DQUOTE] = ACTIONS(2345), + [anon_sym_LR_DQUOTE] = ACTIONS(2345), + [anon_sym_uR_DQUOTE] = ACTIONS(2345), + [anon_sym_UR_DQUOTE] = ACTIONS(2345), + [anon_sym_u8R_DQUOTE] = ACTIONS(2345), + [anon_sym_co_await] = ACTIONS(2347), + [anon_sym_new] = ACTIONS(2349), + [anon_sym_requires] = ACTIONS(2351), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1354] = { - [sym_expression] = STATE(5905), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1426] = { + [sym_expression] = STATE(2926), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(2995), + [sym_concatenated_string] = STATE(2995), + [sym_string_literal] = STATE(2040), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2040), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(5008), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5076), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(5284), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_compl] = ACTIONS(2329), + [anon_sym_DASH_DASH] = ACTIONS(5010), + [anon_sym_PLUS_PLUS] = ACTIONS(5010), + [anon_sym_sizeof] = ACTIONS(2335), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2337), + [anon_sym_L_SQUOTE] = ACTIONS(2339), + [anon_sym_u_SQUOTE] = ACTIONS(2339), + [anon_sym_U_SQUOTE] = ACTIONS(2339), + [anon_sym_u8_SQUOTE] = ACTIONS(2339), + [anon_sym_SQUOTE] = ACTIONS(2339), + [anon_sym_L_DQUOTE] = ACTIONS(2341), + [anon_sym_u_DQUOTE] = ACTIONS(2341), + [anon_sym_U_DQUOTE] = ACTIONS(2341), + [anon_sym_u8_DQUOTE] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2343), + [anon_sym_R_DQUOTE] = ACTIONS(2345), + [anon_sym_LR_DQUOTE] = ACTIONS(2345), + [anon_sym_uR_DQUOTE] = ACTIONS(2345), + [anon_sym_UR_DQUOTE] = ACTIONS(2345), + [anon_sym_u8R_DQUOTE] = ACTIONS(2345), + [anon_sym_co_await] = ACTIONS(2347), + [anon_sym_new] = ACTIONS(2349), + [anon_sym_requires] = ACTIONS(2351), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1427] = { + [sym_expression] = STATE(2890), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(2995), + [sym_concatenated_string] = STATE(2995), + [sym_string_literal] = STATE(2040), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2040), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(5008), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5076), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_compl] = ACTIONS(2329), + [anon_sym_DASH_DASH] = ACTIONS(5010), + [anon_sym_PLUS_PLUS] = ACTIONS(5010), + [anon_sym_sizeof] = ACTIONS(2335), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2337), + [anon_sym_L_SQUOTE] = ACTIONS(2339), + [anon_sym_u_SQUOTE] = ACTIONS(2339), + [anon_sym_U_SQUOTE] = ACTIONS(2339), + [anon_sym_u8_SQUOTE] = ACTIONS(2339), + [anon_sym_SQUOTE] = ACTIONS(2339), + [anon_sym_L_DQUOTE] = ACTIONS(2341), + [anon_sym_u_DQUOTE] = ACTIONS(2341), + [anon_sym_U_DQUOTE] = ACTIONS(2341), + [anon_sym_u8_DQUOTE] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2343), + [anon_sym_R_DQUOTE] = ACTIONS(2345), + [anon_sym_LR_DQUOTE] = ACTIONS(2345), + [anon_sym_uR_DQUOTE] = ACTIONS(2345), + [anon_sym_UR_DQUOTE] = ACTIONS(2345), + [anon_sym_u8R_DQUOTE] = ACTIONS(2345), + [anon_sym_co_await] = ACTIONS(2347), + [anon_sym_new] = ACTIONS(2349), + [anon_sym_requires] = ACTIONS(2351), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1428] = { + [sym_expression] = STATE(2948), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(2995), + [sym_concatenated_string] = STATE(2995), + [sym_string_literal] = STATE(2040), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2040), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(5008), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5076), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_compl] = ACTIONS(2329), + [anon_sym_DASH_DASH] = ACTIONS(5010), + [anon_sym_PLUS_PLUS] = ACTIONS(5010), + [anon_sym_sizeof] = ACTIONS(2335), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2337), + [anon_sym_L_SQUOTE] = ACTIONS(2339), + [anon_sym_u_SQUOTE] = ACTIONS(2339), + [anon_sym_U_SQUOTE] = ACTIONS(2339), + [anon_sym_u8_SQUOTE] = ACTIONS(2339), + [anon_sym_SQUOTE] = ACTIONS(2339), + [anon_sym_L_DQUOTE] = ACTIONS(2341), + [anon_sym_u_DQUOTE] = ACTIONS(2341), + [anon_sym_U_DQUOTE] = ACTIONS(2341), + [anon_sym_u8_DQUOTE] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2343), + [anon_sym_R_DQUOTE] = ACTIONS(2345), + [anon_sym_LR_DQUOTE] = ACTIONS(2345), + [anon_sym_uR_DQUOTE] = ACTIONS(2345), + [anon_sym_UR_DQUOTE] = ACTIONS(2345), + [anon_sym_u8R_DQUOTE] = ACTIONS(2345), + [anon_sym_co_await] = ACTIONS(2347), + [anon_sym_new] = ACTIONS(2349), + [anon_sym_requires] = ACTIONS(2351), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1429] = { + [sym_expression] = STATE(2905), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(2995), + [sym_concatenated_string] = STATE(2995), + [sym_string_literal] = STATE(2040), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2040), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(5008), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5076), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_compl] = ACTIONS(2329), + [anon_sym_DASH_DASH] = ACTIONS(5010), + [anon_sym_PLUS_PLUS] = ACTIONS(5010), + [anon_sym_sizeof] = ACTIONS(2335), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2337), + [anon_sym_L_SQUOTE] = ACTIONS(2339), + [anon_sym_u_SQUOTE] = ACTIONS(2339), + [anon_sym_U_SQUOTE] = ACTIONS(2339), + [anon_sym_u8_SQUOTE] = ACTIONS(2339), + [anon_sym_SQUOTE] = ACTIONS(2339), + [anon_sym_L_DQUOTE] = ACTIONS(2341), + [anon_sym_u_DQUOTE] = ACTIONS(2341), + [anon_sym_U_DQUOTE] = ACTIONS(2341), + [anon_sym_u8_DQUOTE] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2343), + [anon_sym_R_DQUOTE] = ACTIONS(2345), + [anon_sym_LR_DQUOTE] = ACTIONS(2345), + [anon_sym_uR_DQUOTE] = ACTIONS(2345), + [anon_sym_UR_DQUOTE] = ACTIONS(2345), + [anon_sym_u8R_DQUOTE] = ACTIONS(2345), + [anon_sym_co_await] = ACTIONS(2347), + [anon_sym_new] = ACTIONS(2349), + [anon_sym_requires] = ACTIONS(2351), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1430] = { + [sym_expression] = STATE(3118), + [sym_expression_not_binary] = STATE(3486), + [sym_conditional_expression] = STATE(3447), + [sym_assignment_expression] = STATE(3447), + [sym_pointer_expression] = STATE(3487), + [sym_unary_expression] = STATE(3447), + [sym_binary_expression] = STATE(3486), + [sym_update_expression] = STATE(3447), + [sym_cast_expression] = STATE(3447), + [sym_sizeof_expression] = STATE(3447), + [sym_alignof_expression] = STATE(3447), + [sym_offsetof_expression] = STATE(3447), + [sym_generic_expression] = STATE(3447), + [sym_subscript_expression] = STATE(3487), + [sym_call_expression] = STATE(3487), + [sym_gnu_asm_expression] = STATE(3447), + [sym_field_expression] = STATE(3487), + [sym_compound_literal_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3487), + [sym_char_literal] = STATE(3228), + [sym_concatenated_string] = STATE(3228), + [sym_string_literal] = STATE(2167), + [sym_null] = STATE(3447), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8847), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3447), + [sym_raw_string_literal] = STATE(2167), + [sym_co_await_expression] = STATE(3447), + [sym_new_expression] = STATE(3447), + [sym_delete_expression] = STATE(3447), + [sym_requires_clause] = STATE(3447), + [sym_requires_expression] = STATE(3447), + [sym_lambda_expression] = STATE(3447), + [sym_lambda_capture_specifier] = STATE(6853), + [sym_fold_expression] = STATE(3447), + [sym_parameter_pack_expansion] = STATE(3447), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3487), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3487), + [sym_semgrep_ellipsis] = STATE(3486), + [sym_deep_ellipsis] = STATE(3486), + [sym_identifier] = ACTIONS(4890), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4892), + [anon_sym_LPAREN2] = ACTIONS(5050), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_TILDE] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2365), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(5286), + [sym_primitive_type] = ACTIONS(2373), + [anon_sym_not] = ACTIONS(2365), + [anon_sym_compl] = ACTIONS(2365), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_sizeof] = ACTIONS(2375), + [anon_sym___alignof__] = ACTIONS(2377), + [anon_sym___alignof] = ACTIONS(2377), + [anon_sym__alignof] = ACTIONS(2377), + [anon_sym_alignof] = ACTIONS(2377), + [anon_sym__Alignof] = ACTIONS(2377), + [anon_sym_offsetof] = ACTIONS(2379), + [anon_sym__Generic] = ACTIONS(2381), + [anon_sym_asm] = ACTIONS(2383), + [anon_sym___asm__] = ACTIONS(2383), + [sym_number_literal] = ACTIONS(2385), + [anon_sym_L_SQUOTE] = ACTIONS(2387), + [anon_sym_u_SQUOTE] = ACTIONS(2387), + [anon_sym_U_SQUOTE] = ACTIONS(2387), + [anon_sym_u8_SQUOTE] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2387), + [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(2391), + [sym_false] = ACTIONS(2391), + [anon_sym_NULL] = ACTIONS(2393), + [anon_sym_nullptr] = ACTIONS(2393), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2399), + [anon_sym_new] = ACTIONS(2401), + [anon_sym_requires] = ACTIONS(2403), + [sym_this] = ACTIONS(2391), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2405), + [sym_semgrep_named_ellipsis] = ACTIONS(2407), + }, + [1431] = { + [sym_expression] = STATE(3120), + [sym_expression_not_binary] = STATE(3486), + [sym_conditional_expression] = STATE(3447), + [sym_assignment_expression] = STATE(3447), + [sym_pointer_expression] = STATE(3487), + [sym_unary_expression] = STATE(3447), + [sym_binary_expression] = STATE(3486), + [sym_update_expression] = STATE(3447), + [sym_cast_expression] = STATE(3447), + [sym_sizeof_expression] = STATE(3447), + [sym_alignof_expression] = STATE(3447), + [sym_offsetof_expression] = STATE(3447), + [sym_generic_expression] = STATE(3447), + [sym_subscript_expression] = STATE(3487), + [sym_call_expression] = STATE(3487), + [sym_gnu_asm_expression] = STATE(3447), + [sym_field_expression] = STATE(3487), + [sym_compound_literal_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3487), + [sym_char_literal] = STATE(3228), + [sym_concatenated_string] = STATE(3228), + [sym_string_literal] = STATE(2167), + [sym_null] = STATE(3447), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8847), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3447), + [sym_raw_string_literal] = STATE(2167), + [sym_co_await_expression] = STATE(3447), + [sym_new_expression] = STATE(3447), + [sym_delete_expression] = STATE(3447), + [sym_requires_clause] = STATE(3447), + [sym_requires_expression] = STATE(3447), + [sym_lambda_expression] = STATE(3447), + [sym_lambda_capture_specifier] = STATE(6853), + [sym_fold_expression] = STATE(3447), + [sym_parameter_pack_expansion] = STATE(3447), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3487), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3487), + [sym_semgrep_ellipsis] = STATE(3486), + [sym_deep_ellipsis] = STATE(3486), + [sym_identifier] = ACTIONS(4890), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4892), + [anon_sym_LPAREN2] = ACTIONS(5050), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_TILDE] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2365), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2373), + [anon_sym_not] = ACTIONS(2365), + [anon_sym_compl] = ACTIONS(2365), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_sizeof] = ACTIONS(2375), + [anon_sym___alignof__] = ACTIONS(2377), + [anon_sym___alignof] = ACTIONS(2377), + [anon_sym__alignof] = ACTIONS(2377), + [anon_sym_alignof] = ACTIONS(2377), + [anon_sym__Alignof] = ACTIONS(2377), + [anon_sym_offsetof] = ACTIONS(2379), + [anon_sym__Generic] = ACTIONS(2381), + [anon_sym_asm] = ACTIONS(2383), + [anon_sym___asm__] = ACTIONS(2383), + [sym_number_literal] = ACTIONS(2385), + [anon_sym_L_SQUOTE] = ACTIONS(2387), + [anon_sym_u_SQUOTE] = ACTIONS(2387), + [anon_sym_U_SQUOTE] = ACTIONS(2387), + [anon_sym_u8_SQUOTE] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2387), + [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(2391), + [sym_false] = ACTIONS(2391), + [anon_sym_NULL] = ACTIONS(2393), + [anon_sym_nullptr] = ACTIONS(2393), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2399), + [anon_sym_new] = ACTIONS(2401), + [anon_sym_requires] = ACTIONS(2403), + [sym_this] = ACTIONS(2391), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2405), + [sym_semgrep_named_ellipsis] = ACTIONS(2407), + }, + [1432] = { + [sym_expression] = STATE(3147), + [sym_expression_not_binary] = STATE(3486), + [sym_conditional_expression] = STATE(3447), + [sym_assignment_expression] = STATE(3447), + [sym_pointer_expression] = STATE(3487), + [sym_unary_expression] = STATE(3447), + [sym_binary_expression] = STATE(3486), + [sym_update_expression] = STATE(3447), + [sym_cast_expression] = STATE(3447), + [sym_sizeof_expression] = STATE(3447), + [sym_alignof_expression] = STATE(3447), + [sym_offsetof_expression] = STATE(3447), + [sym_generic_expression] = STATE(3447), + [sym_subscript_expression] = STATE(3487), + [sym_call_expression] = STATE(3487), + [sym_gnu_asm_expression] = STATE(3447), + [sym_field_expression] = STATE(3487), + [sym_compound_literal_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3487), + [sym_char_literal] = STATE(3228), + [sym_concatenated_string] = STATE(3228), + [sym_string_literal] = STATE(2167), + [sym_null] = STATE(3447), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8847), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3447), + [sym_raw_string_literal] = STATE(2167), + [sym_co_await_expression] = STATE(3447), + [sym_new_expression] = STATE(3447), + [sym_delete_expression] = STATE(3447), + [sym_requires_clause] = STATE(3447), + [sym_requires_expression] = STATE(3447), + [sym_lambda_expression] = STATE(3447), + [sym_lambda_capture_specifier] = STATE(6853), + [sym_fold_expression] = STATE(3447), + [sym_parameter_pack_expansion] = STATE(3447), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3487), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3487), + [sym_semgrep_ellipsis] = STATE(3486), + [sym_deep_ellipsis] = STATE(3486), + [sym_identifier] = ACTIONS(4890), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4892), + [anon_sym_LPAREN2] = ACTIONS(5050), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_TILDE] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2365), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(5288), + [sym_primitive_type] = ACTIONS(2373), + [anon_sym_not] = ACTIONS(2365), + [anon_sym_compl] = ACTIONS(2365), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_sizeof] = ACTIONS(2375), + [anon_sym___alignof__] = ACTIONS(2377), + [anon_sym___alignof] = ACTIONS(2377), + [anon_sym__alignof] = ACTIONS(2377), + [anon_sym_alignof] = ACTIONS(2377), + [anon_sym__Alignof] = ACTIONS(2377), + [anon_sym_offsetof] = ACTIONS(2379), + [anon_sym__Generic] = ACTIONS(2381), + [anon_sym_asm] = ACTIONS(2383), + [anon_sym___asm__] = ACTIONS(2383), + [sym_number_literal] = ACTIONS(2385), + [anon_sym_L_SQUOTE] = ACTIONS(2387), + [anon_sym_u_SQUOTE] = ACTIONS(2387), + [anon_sym_U_SQUOTE] = ACTIONS(2387), + [anon_sym_u8_SQUOTE] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2387), + [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(2391), + [sym_false] = ACTIONS(2391), + [anon_sym_NULL] = ACTIONS(2393), + [anon_sym_nullptr] = ACTIONS(2393), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2399), + [anon_sym_new] = ACTIONS(2401), + [anon_sym_requires] = ACTIONS(2403), + [sym_this] = ACTIONS(2391), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2405), + [sym_semgrep_named_ellipsis] = ACTIONS(2407), + }, + [1433] = { + [sym_expression] = STATE(3138), + [sym_expression_not_binary] = STATE(3486), + [sym_conditional_expression] = STATE(3447), + [sym_assignment_expression] = STATE(3447), + [sym_pointer_expression] = STATE(3487), + [sym_unary_expression] = STATE(3447), + [sym_binary_expression] = STATE(3486), + [sym_update_expression] = STATE(3447), + [sym_cast_expression] = STATE(3447), + [sym_sizeof_expression] = STATE(3447), + [sym_alignof_expression] = STATE(3447), + [sym_offsetof_expression] = STATE(3447), + [sym_generic_expression] = STATE(3447), + [sym_subscript_expression] = STATE(3487), + [sym_call_expression] = STATE(3487), + [sym_gnu_asm_expression] = STATE(3447), + [sym_field_expression] = STATE(3487), + [sym_compound_literal_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3487), + [sym_char_literal] = STATE(3228), + [sym_concatenated_string] = STATE(3228), + [sym_string_literal] = STATE(2167), + [sym_null] = STATE(3447), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8847), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3447), + [sym_raw_string_literal] = STATE(2167), + [sym_co_await_expression] = STATE(3447), + [sym_new_expression] = STATE(3447), + [sym_delete_expression] = STATE(3447), + [sym_requires_clause] = STATE(3447), + [sym_requires_expression] = STATE(3447), + [sym_lambda_expression] = STATE(3447), + [sym_lambda_capture_specifier] = STATE(6853), + [sym_fold_expression] = STATE(3447), + [sym_parameter_pack_expansion] = STATE(3447), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3487), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3487), + [sym_semgrep_ellipsis] = STATE(3486), + [sym_deep_ellipsis] = STATE(3486), + [sym_identifier] = ACTIONS(4890), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4892), + [anon_sym_LPAREN2] = ACTIONS(5050), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_TILDE] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2365), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2373), + [anon_sym_not] = ACTIONS(2365), + [anon_sym_compl] = ACTIONS(2365), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_sizeof] = ACTIONS(2375), + [anon_sym___alignof__] = ACTIONS(2377), + [anon_sym___alignof] = ACTIONS(2377), + [anon_sym__alignof] = ACTIONS(2377), + [anon_sym_alignof] = ACTIONS(2377), + [anon_sym__Alignof] = ACTIONS(2377), + [anon_sym_offsetof] = ACTIONS(2379), + [anon_sym__Generic] = ACTIONS(2381), + [anon_sym_asm] = ACTIONS(2383), + [anon_sym___asm__] = ACTIONS(2383), + [sym_number_literal] = ACTIONS(2385), + [anon_sym_L_SQUOTE] = ACTIONS(2387), + [anon_sym_u_SQUOTE] = ACTIONS(2387), + [anon_sym_U_SQUOTE] = ACTIONS(2387), + [anon_sym_u8_SQUOTE] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2387), + [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(2391), + [sym_false] = ACTIONS(2391), + [anon_sym_NULL] = ACTIONS(2393), + [anon_sym_nullptr] = ACTIONS(2393), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2399), + [anon_sym_new] = ACTIONS(2401), + [anon_sym_requires] = ACTIONS(2403), + [sym_this] = ACTIONS(2391), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2405), + [sym_semgrep_named_ellipsis] = ACTIONS(2407), + }, + [1434] = { + [sym_expression] = STATE(5367), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -238226,7 +235864,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -238240,573 +235878,777 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1355] = { - [sym_expression] = STATE(3183), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(5328), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), + [1435] = { + [sym_expression] = STATE(3172), + [sym_expression_not_binary] = STATE(3486), + [sym_conditional_expression] = STATE(3447), + [sym_assignment_expression] = STATE(3447), + [sym_pointer_expression] = STATE(3487), + [sym_unary_expression] = STATE(3447), + [sym_binary_expression] = STATE(3486), + [sym_update_expression] = STATE(3447), + [sym_cast_expression] = STATE(3447), + [sym_sizeof_expression] = STATE(3447), + [sym_alignof_expression] = STATE(3447), + [sym_offsetof_expression] = STATE(3447), + [sym_generic_expression] = STATE(3447), + [sym_subscript_expression] = STATE(3487), + [sym_call_expression] = STATE(3487), + [sym_gnu_asm_expression] = STATE(3447), + [sym_field_expression] = STATE(3487), + [sym_compound_literal_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3487), + [sym_char_literal] = STATE(3228), + [sym_concatenated_string] = STATE(3228), + [sym_string_literal] = STATE(2167), + [sym_null] = STATE(3447), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8847), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3447), + [sym_raw_string_literal] = STATE(2167), + [sym_co_await_expression] = STATE(3447), + [sym_new_expression] = STATE(3447), + [sym_delete_expression] = STATE(3447), + [sym_requires_clause] = STATE(3447), + [sym_requires_expression] = STATE(3447), + [sym_lambda_expression] = STATE(3447), + [sym_lambda_capture_specifier] = STATE(6853), + [sym_fold_expression] = STATE(3447), + [sym_parameter_pack_expansion] = STATE(3447), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3487), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3487), + [sym_semgrep_ellipsis] = STATE(3486), + [sym_deep_ellipsis] = STATE(3486), + [sym_identifier] = ACTIONS(4890), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4892), + [anon_sym_LPAREN2] = ACTIONS(5050), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_TILDE] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2365), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2373), + [anon_sym_not] = ACTIONS(2365), + [anon_sym_compl] = ACTIONS(2365), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_sizeof] = ACTIONS(2375), + [anon_sym___alignof__] = ACTIONS(2377), + [anon_sym___alignof] = ACTIONS(2377), + [anon_sym__alignof] = ACTIONS(2377), + [anon_sym_alignof] = ACTIONS(2377), + [anon_sym__Alignof] = ACTIONS(2377), + [anon_sym_offsetof] = ACTIONS(2379), + [anon_sym__Generic] = ACTIONS(2381), + [anon_sym_asm] = ACTIONS(2383), + [anon_sym___asm__] = ACTIONS(2383), + [sym_number_literal] = ACTIONS(2385), + [anon_sym_L_SQUOTE] = ACTIONS(2387), + [anon_sym_u_SQUOTE] = ACTIONS(2387), + [anon_sym_U_SQUOTE] = ACTIONS(2387), + [anon_sym_u8_SQUOTE] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2387), + [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(2391), + [sym_false] = ACTIONS(2391), + [anon_sym_NULL] = ACTIONS(2393), + [anon_sym_nullptr] = ACTIONS(2393), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2399), + [anon_sym_new] = ACTIONS(2401), + [anon_sym_requires] = ACTIONS(2403), + [sym_this] = ACTIONS(2391), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2405), + [sym_semgrep_named_ellipsis] = ACTIONS(2407), }, - [1356] = { - [sym_expression] = STATE(4129), - [sym_expression_not_binary] = STATE(4505), - [sym_conditional_expression] = STATE(4488), - [sym_assignment_expression] = STATE(4488), - [sym_pointer_expression] = STATE(4524), - [sym_unary_expression] = STATE(4488), - [sym_binary_expression] = STATE(4505), - [sym_update_expression] = STATE(4488), - [sym_cast_expression] = STATE(4488), - [sym_sizeof_expression] = STATE(4488), - [sym_alignof_expression] = STATE(4488), - [sym_offsetof_expression] = STATE(4488), - [sym_generic_expression] = STATE(4488), - [sym_subscript_expression] = STATE(4524), - [sym_call_expression] = STATE(4524), - [sym_gnu_asm_expression] = STATE(4488), - [sym_field_expression] = STATE(4524), - [sym_compound_literal_expression] = STATE(4488), - [sym_parenthesized_expression] = STATE(4524), - [sym_char_literal] = STATE(4272), - [sym_concatenated_string] = STATE(4272), - [sym_string_literal] = STATE(2514), - [sym_null] = STATE(4488), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9512), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4488), - [sym_raw_string_literal] = STATE(2514), - [sym_co_await_expression] = STATE(4488), - [sym_new_expression] = STATE(4488), - [sym_delete_expression] = STATE(4488), - [sym_requires_clause] = STATE(4488), - [sym_requires_expression] = STATE(4488), - [sym_lambda_expression] = STATE(4488), - [sym_lambda_capture_specifier] = STATE(7259), - [sym_fold_expression] = STATE(4488), - [sym_parameter_pack_expansion] = STATE(4488), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4524), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4524), - [sym_semgrep_ellipsis] = STATE(4505), - [sym_deep_ellipsis] = STATE(4505), - [sym_identifier] = ACTIONS(2999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4972), - [anon_sym_LPAREN2] = ACTIONS(5134), - [anon_sym_BANG] = ACTIONS(3003), - [anon_sym_TILDE] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(5330), - [sym_primitive_type] = ACTIONS(3009), - [anon_sym_not] = ACTIONS(3001), - [anon_sym_compl] = ACTIONS(3001), - [anon_sym_DASH_DASH] = ACTIONS(4974), - [anon_sym_PLUS_PLUS] = ACTIONS(4974), - [anon_sym_sizeof] = ACTIONS(3011), - [anon_sym___alignof__] = ACTIONS(3013), - [anon_sym___alignof] = ACTIONS(3013), - [anon_sym__alignof] = ACTIONS(3013), - [anon_sym_alignof] = ACTIONS(3013), - [anon_sym__Alignof] = ACTIONS(3013), - [anon_sym_offsetof] = ACTIONS(3015), - [anon_sym__Generic] = ACTIONS(3017), - [anon_sym_asm] = ACTIONS(3019), - [anon_sym___asm__] = ACTIONS(3019), - [sym_number_literal] = ACTIONS(3021), - [anon_sym_L_SQUOTE] = ACTIONS(3023), - [anon_sym_u_SQUOTE] = ACTIONS(3023), - [anon_sym_U_SQUOTE] = ACTIONS(3023), - [anon_sym_u8_SQUOTE] = ACTIONS(3023), - [anon_sym_SQUOTE] = ACTIONS(3023), - [anon_sym_L_DQUOTE] = ACTIONS(3025), - [anon_sym_u_DQUOTE] = ACTIONS(3025), - [anon_sym_U_DQUOTE] = ACTIONS(3025), - [anon_sym_u8_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [anon_sym_NULL] = ACTIONS(3029), - [anon_sym_nullptr] = ACTIONS(3029), + [1436] = { + [sym_expression] = STATE(3117), + [sym_expression_not_binary] = STATE(3486), + [sym_conditional_expression] = STATE(3447), + [sym_assignment_expression] = STATE(3447), + [sym_pointer_expression] = STATE(3487), + [sym_unary_expression] = STATE(3447), + [sym_binary_expression] = STATE(3486), + [sym_update_expression] = STATE(3447), + [sym_cast_expression] = STATE(3447), + [sym_sizeof_expression] = STATE(3447), + [sym_alignof_expression] = STATE(3447), + [sym_offsetof_expression] = STATE(3447), + [sym_generic_expression] = STATE(3447), + [sym_subscript_expression] = STATE(3487), + [sym_call_expression] = STATE(3487), + [sym_gnu_asm_expression] = STATE(3447), + [sym_field_expression] = STATE(3487), + [sym_compound_literal_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3487), + [sym_char_literal] = STATE(3228), + [sym_concatenated_string] = STATE(3228), + [sym_string_literal] = STATE(2167), + [sym_null] = STATE(3447), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8847), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3447), + [sym_raw_string_literal] = STATE(2167), + [sym_co_await_expression] = STATE(3447), + [sym_new_expression] = STATE(3447), + [sym_delete_expression] = STATE(3447), + [sym_requires_clause] = STATE(3447), + [sym_requires_expression] = STATE(3447), + [sym_lambda_expression] = STATE(3447), + [sym_lambda_capture_specifier] = STATE(6853), + [sym_fold_expression] = STATE(3447), + [sym_parameter_pack_expansion] = STATE(3447), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3487), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3487), + [sym_semgrep_ellipsis] = STATE(3486), + [sym_deep_ellipsis] = STATE(3486), + [sym_identifier] = ACTIONS(4890), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4892), + [anon_sym_LPAREN2] = ACTIONS(5050), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_TILDE] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2365), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2373), + [anon_sym_not] = ACTIONS(2365), + [anon_sym_compl] = ACTIONS(2365), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_sizeof] = ACTIONS(2375), + [anon_sym___alignof__] = ACTIONS(2377), + [anon_sym___alignof] = ACTIONS(2377), + [anon_sym__alignof] = ACTIONS(2377), + [anon_sym_alignof] = ACTIONS(2377), + [anon_sym__Alignof] = ACTIONS(2377), + [anon_sym_offsetof] = ACTIONS(2379), + [anon_sym__Generic] = ACTIONS(2381), + [anon_sym_asm] = ACTIONS(2383), + [anon_sym___asm__] = ACTIONS(2383), + [sym_number_literal] = ACTIONS(2385), + [anon_sym_L_SQUOTE] = ACTIONS(2387), + [anon_sym_u_SQUOTE] = ACTIONS(2387), + [anon_sym_U_SQUOTE] = ACTIONS(2387), + [anon_sym_u8_SQUOTE] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2387), + [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(2391), + [sym_false] = ACTIONS(2391), + [anon_sym_NULL] = ACTIONS(2393), + [anon_sym_nullptr] = ACTIONS(2393), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(3033), - [anon_sym_LR_DQUOTE] = ACTIONS(3033), - [anon_sym_uR_DQUOTE] = ACTIONS(3033), - [anon_sym_UR_DQUOTE] = ACTIONS(3033), - [anon_sym_u8R_DQUOTE] = ACTIONS(3033), - [anon_sym_co_await] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_requires] = ACTIONS(3039), - [sym_this] = ACTIONS(3027), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3041), - [sym_semgrep_named_ellipsis] = ACTIONS(3043), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2399), + [anon_sym_new] = ACTIONS(2401), + [anon_sym_requires] = ACTIONS(2403), + [sym_this] = ACTIONS(2391), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2405), + [sym_semgrep_named_ellipsis] = ACTIONS(2407), }, - [1357] = { - [sym_expression] = STATE(4130), - [sym_expression_not_binary] = STATE(4505), - [sym_conditional_expression] = STATE(4488), - [sym_assignment_expression] = STATE(4488), - [sym_pointer_expression] = STATE(4524), - [sym_unary_expression] = STATE(4488), - [sym_binary_expression] = STATE(4505), - [sym_update_expression] = STATE(4488), - [sym_cast_expression] = STATE(4488), - [sym_sizeof_expression] = STATE(4488), - [sym_alignof_expression] = STATE(4488), - [sym_offsetof_expression] = STATE(4488), - [sym_generic_expression] = STATE(4488), - [sym_subscript_expression] = STATE(4524), - [sym_call_expression] = STATE(4524), - [sym_gnu_asm_expression] = STATE(4488), - [sym_field_expression] = STATE(4524), - [sym_compound_literal_expression] = STATE(4488), - [sym_parenthesized_expression] = STATE(4524), - [sym_char_literal] = STATE(4272), - [sym_concatenated_string] = STATE(4272), - [sym_string_literal] = STATE(2514), - [sym_null] = STATE(4488), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9512), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4488), - [sym_raw_string_literal] = STATE(2514), - [sym_co_await_expression] = STATE(4488), - [sym_new_expression] = STATE(4488), - [sym_delete_expression] = STATE(4488), - [sym_requires_clause] = STATE(4488), - [sym_requires_expression] = STATE(4488), - [sym_lambda_expression] = STATE(4488), - [sym_lambda_capture_specifier] = STATE(7259), - [sym_fold_expression] = STATE(4488), - [sym_parameter_pack_expansion] = STATE(4488), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4524), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4524), - [sym_semgrep_ellipsis] = STATE(4505), - [sym_deep_ellipsis] = STATE(4505), - [sym_identifier] = ACTIONS(2999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4972), - [anon_sym_LPAREN2] = ACTIONS(5134), - [anon_sym_BANG] = ACTIONS(3003), - [anon_sym_TILDE] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3009), - [anon_sym_not] = ACTIONS(3001), - [anon_sym_compl] = ACTIONS(3001), - [anon_sym_DASH_DASH] = ACTIONS(4974), - [anon_sym_PLUS_PLUS] = ACTIONS(4974), - [anon_sym_sizeof] = ACTIONS(3011), - [anon_sym___alignof__] = ACTIONS(3013), - [anon_sym___alignof] = ACTIONS(3013), - [anon_sym__alignof] = ACTIONS(3013), - [anon_sym_alignof] = ACTIONS(3013), - [anon_sym__Alignof] = ACTIONS(3013), - [anon_sym_offsetof] = ACTIONS(3015), - [anon_sym__Generic] = ACTIONS(3017), - [anon_sym_asm] = ACTIONS(3019), - [anon_sym___asm__] = ACTIONS(3019), - [sym_number_literal] = ACTIONS(3021), - [anon_sym_L_SQUOTE] = ACTIONS(3023), - [anon_sym_u_SQUOTE] = ACTIONS(3023), - [anon_sym_U_SQUOTE] = ACTIONS(3023), - [anon_sym_u8_SQUOTE] = ACTIONS(3023), - [anon_sym_SQUOTE] = ACTIONS(3023), - [anon_sym_L_DQUOTE] = ACTIONS(3025), - [anon_sym_u_DQUOTE] = ACTIONS(3025), - [anon_sym_U_DQUOTE] = ACTIONS(3025), - [anon_sym_u8_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [anon_sym_NULL] = ACTIONS(3029), - [anon_sym_nullptr] = ACTIONS(3029), + [1437] = { + [sym_expression] = STATE(3518), + [sym_expression_not_binary] = STATE(3766), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8737), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [sym_identifier] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3706), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_compl] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(3033), - [anon_sym_LR_DQUOTE] = ACTIONS(3033), - [anon_sym_uR_DQUOTE] = ACTIONS(3033), - [anon_sym_UR_DQUOTE] = ACTIONS(3033), - [anon_sym_u8R_DQUOTE] = ACTIONS(3033), - [anon_sym_co_await] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_requires] = ACTIONS(3039), - [sym_this] = ACTIONS(3027), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3041), - [sym_semgrep_named_ellipsis] = ACTIONS(3043), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, - [1358] = { - [sym_expression] = STATE(4193), - [sym_expression_not_binary] = STATE(4505), - [sym_conditional_expression] = STATE(4488), - [sym_assignment_expression] = STATE(4488), - [sym_pointer_expression] = STATE(4524), - [sym_unary_expression] = STATE(4488), - [sym_binary_expression] = STATE(4505), - [sym_update_expression] = STATE(4488), - [sym_cast_expression] = STATE(4488), - [sym_sizeof_expression] = STATE(4488), - [sym_alignof_expression] = STATE(4488), - [sym_offsetof_expression] = STATE(4488), - [sym_generic_expression] = STATE(4488), - [sym_subscript_expression] = STATE(4524), - [sym_call_expression] = STATE(4524), - [sym_gnu_asm_expression] = STATE(4488), - [sym_field_expression] = STATE(4524), - [sym_compound_literal_expression] = STATE(4488), - [sym_parenthesized_expression] = STATE(4524), - [sym_char_literal] = STATE(4272), - [sym_concatenated_string] = STATE(4272), - [sym_string_literal] = STATE(2514), - [sym_null] = STATE(4488), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9512), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4488), - [sym_raw_string_literal] = STATE(2514), - [sym_co_await_expression] = STATE(4488), - [sym_new_expression] = STATE(4488), - [sym_delete_expression] = STATE(4488), - [sym_requires_clause] = STATE(4488), - [sym_requires_expression] = STATE(4488), - [sym_lambda_expression] = STATE(4488), - [sym_lambda_capture_specifier] = STATE(7259), - [sym_fold_expression] = STATE(4488), - [sym_parameter_pack_expansion] = STATE(4488), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4524), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4524), - [sym_semgrep_ellipsis] = STATE(4505), - [sym_deep_ellipsis] = STATE(4505), - [sym_identifier] = ACTIONS(2999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4972), - [anon_sym_LPAREN2] = ACTIONS(5134), - [anon_sym_BANG] = ACTIONS(3003), - [anon_sym_TILDE] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(5332), - [sym_primitive_type] = ACTIONS(3009), - [anon_sym_not] = ACTIONS(3001), - [anon_sym_compl] = ACTIONS(3001), - [anon_sym_DASH_DASH] = ACTIONS(4974), - [anon_sym_PLUS_PLUS] = ACTIONS(4974), - [anon_sym_sizeof] = ACTIONS(3011), - [anon_sym___alignof__] = ACTIONS(3013), - [anon_sym___alignof] = ACTIONS(3013), - [anon_sym__alignof] = ACTIONS(3013), - [anon_sym_alignof] = ACTIONS(3013), - [anon_sym__Alignof] = ACTIONS(3013), - [anon_sym_offsetof] = ACTIONS(3015), - [anon_sym__Generic] = ACTIONS(3017), - [anon_sym_asm] = ACTIONS(3019), - [anon_sym___asm__] = ACTIONS(3019), - [sym_number_literal] = ACTIONS(3021), - [anon_sym_L_SQUOTE] = ACTIONS(3023), - [anon_sym_u_SQUOTE] = ACTIONS(3023), - [anon_sym_U_SQUOTE] = ACTIONS(3023), - [anon_sym_u8_SQUOTE] = ACTIONS(3023), - [anon_sym_SQUOTE] = ACTIONS(3023), - [anon_sym_L_DQUOTE] = ACTIONS(3025), - [anon_sym_u_DQUOTE] = ACTIONS(3025), - [anon_sym_U_DQUOTE] = ACTIONS(3025), - [anon_sym_u8_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [anon_sym_NULL] = ACTIONS(3029), - [anon_sym_nullptr] = ACTIONS(3029), + [1438] = { + [sym_expression] = STATE(3518), + [sym_expression_not_binary] = STATE(3766), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8737), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [sym_identifier] = ACTIONS(5290), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3706), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_compl] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(3033), - [anon_sym_LR_DQUOTE] = ACTIONS(3033), - [anon_sym_uR_DQUOTE] = ACTIONS(3033), - [anon_sym_UR_DQUOTE] = ACTIONS(3033), - [anon_sym_u8R_DQUOTE] = ACTIONS(3033), - [anon_sym_co_await] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_requires] = ACTIONS(3039), - [sym_this] = ACTIONS(3027), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3041), - [sym_semgrep_named_ellipsis] = ACTIONS(3043), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, - [1359] = { - [sym_expression] = STATE(3978), - [sym_expression_not_binary] = STATE(4505), - [sym_conditional_expression] = STATE(4488), - [sym_assignment_expression] = STATE(4488), - [sym_pointer_expression] = STATE(4524), - [sym_unary_expression] = STATE(4488), - [sym_binary_expression] = STATE(4505), - [sym_update_expression] = STATE(4488), - [sym_cast_expression] = STATE(4488), - [sym_sizeof_expression] = STATE(4488), - [sym_alignof_expression] = STATE(4488), - [sym_offsetof_expression] = STATE(4488), - [sym_generic_expression] = STATE(4488), - [sym_subscript_expression] = STATE(4524), - [sym_call_expression] = STATE(4524), - [sym_gnu_asm_expression] = STATE(4488), - [sym_field_expression] = STATE(4524), - [sym_compound_literal_expression] = STATE(4488), - [sym_parenthesized_expression] = STATE(4524), - [sym_char_literal] = STATE(4272), - [sym_concatenated_string] = STATE(4272), - [sym_string_literal] = STATE(2514), - [sym_null] = STATE(4488), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9512), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4488), - [sym_raw_string_literal] = STATE(2514), - [sym_co_await_expression] = STATE(4488), - [sym_new_expression] = STATE(4488), - [sym_delete_expression] = STATE(4488), - [sym_requires_clause] = STATE(4488), - [sym_requires_expression] = STATE(4488), - [sym_lambda_expression] = STATE(4488), - [sym_lambda_capture_specifier] = STATE(7259), - [sym_fold_expression] = STATE(4488), - [sym_parameter_pack_expansion] = STATE(4488), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4524), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4524), - [sym_semgrep_ellipsis] = STATE(4505), - [sym_deep_ellipsis] = STATE(4505), - [sym_identifier] = ACTIONS(2999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4972), - [anon_sym_LPAREN2] = ACTIONS(5134), - [anon_sym_BANG] = ACTIONS(3003), - [anon_sym_TILDE] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3009), - [anon_sym_not] = ACTIONS(3001), - [anon_sym_compl] = ACTIONS(3001), - [anon_sym_DASH_DASH] = ACTIONS(4974), - [anon_sym_PLUS_PLUS] = ACTIONS(4974), - [anon_sym_sizeof] = ACTIONS(3011), - [anon_sym___alignof__] = ACTIONS(3013), - [anon_sym___alignof] = ACTIONS(3013), - [anon_sym__alignof] = ACTIONS(3013), - [anon_sym_alignof] = ACTIONS(3013), - [anon_sym__Alignof] = ACTIONS(3013), - [anon_sym_offsetof] = ACTIONS(3015), - [anon_sym__Generic] = ACTIONS(3017), - [anon_sym_asm] = ACTIONS(3019), - [anon_sym___asm__] = ACTIONS(3019), - [sym_number_literal] = ACTIONS(3021), - [anon_sym_L_SQUOTE] = ACTIONS(3023), - [anon_sym_u_SQUOTE] = ACTIONS(3023), - [anon_sym_U_SQUOTE] = ACTIONS(3023), - [anon_sym_u8_SQUOTE] = ACTIONS(3023), - [anon_sym_SQUOTE] = ACTIONS(3023), - [anon_sym_L_DQUOTE] = ACTIONS(3025), - [anon_sym_u_DQUOTE] = ACTIONS(3025), - [anon_sym_U_DQUOTE] = ACTIONS(3025), - [anon_sym_u8_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [anon_sym_NULL] = ACTIONS(3029), - [anon_sym_nullptr] = ACTIONS(3029), + [1439] = { + [sym_expression] = STATE(3395), + [sym_expression_not_binary] = STATE(3766), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8737), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [sym_identifier] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3706), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_compl] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(3033), - [anon_sym_LR_DQUOTE] = ACTIONS(3033), - [anon_sym_uR_DQUOTE] = ACTIONS(3033), - [anon_sym_UR_DQUOTE] = ACTIONS(3033), - [anon_sym_u8R_DQUOTE] = ACTIONS(3033), - [anon_sym_co_await] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_requires] = ACTIONS(3039), - [sym_this] = ACTIONS(3027), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3041), - [sym_semgrep_named_ellipsis] = ACTIONS(3043), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, - [1360] = { - [sym_expression] = STATE(5933), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1440] = { + [sym_expression] = STATE(3396), + [sym_expression_not_binary] = STATE(3766), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8737), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [sym_identifier] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5292), + [anon_sym_LPAREN2] = ACTIONS(5294), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_compl] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), + }, + [1441] = { + [sym_expression] = STATE(3823), + [sym_expression_not_binary] = STATE(4146), + [sym_conditional_expression] = STATE(4141), + [sym_assignment_expression] = STATE(4141), + [sym_pointer_expression] = STATE(4149), + [sym_unary_expression] = STATE(4141), + [sym_binary_expression] = STATE(4146), + [sym_update_expression] = STATE(4141), + [sym_cast_expression] = STATE(4141), + [sym_sizeof_expression] = STATE(4141), + [sym_alignof_expression] = STATE(4141), + [sym_offsetof_expression] = STATE(4141), + [sym_generic_expression] = STATE(4141), + [sym_subscript_expression] = STATE(4149), + [sym_call_expression] = STATE(4149), + [sym_gnu_asm_expression] = STATE(4141), + [sym_field_expression] = STATE(4149), + [sym_compound_literal_expression] = STATE(4141), + [sym_parenthesized_expression] = STATE(4149), + [sym_char_literal] = STATE(4104), + [sym_concatenated_string] = STATE(4104), + [sym_string_literal] = STATE(2642), + [sym_null] = STATE(4141), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8879), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4141), + [sym_raw_string_literal] = STATE(2642), + [sym_co_await_expression] = STATE(4141), + [sym_new_expression] = STATE(4141), + [sym_delete_expression] = STATE(4141), + [sym_requires_clause] = STATE(4141), + [sym_requires_expression] = STATE(4141), + [sym_lambda_expression] = STATE(4141), + [sym_lambda_capture_specifier] = STATE(6832), + [sym_fold_expression] = STATE(4141), + [sym_parameter_pack_expansion] = STATE(4141), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4149), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4149), + [sym_semgrep_ellipsis] = STATE(4146), + [sym_deep_ellipsis] = STATE(4146), + [sym_identifier] = ACTIONS(2981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4990), + [anon_sym_LPAREN2] = ACTIONS(5044), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(2987), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2991), + [anon_sym_not] = ACTIONS(2983), + [anon_sym_compl] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(4992), + [anon_sym_PLUS_PLUS] = ACTIONS(4992), + [anon_sym_sizeof] = ACTIONS(2993), + [anon_sym___alignof__] = ACTIONS(2995), + [anon_sym___alignof] = ACTIONS(2995), + [anon_sym__alignof] = ACTIONS(2995), + [anon_sym_alignof] = ACTIONS(2995), + [anon_sym__Alignof] = ACTIONS(2995), + [anon_sym_offsetof] = ACTIONS(2997), + [anon_sym__Generic] = ACTIONS(2999), + [anon_sym_asm] = ACTIONS(3001), + [anon_sym___asm__] = ACTIONS(3001), + [sym_number_literal] = ACTIONS(3003), + [anon_sym_L_SQUOTE] = ACTIONS(3005), + [anon_sym_u_SQUOTE] = ACTIONS(3005), + [anon_sym_U_SQUOTE] = ACTIONS(3005), + [anon_sym_u8_SQUOTE] = ACTIONS(3005), + [anon_sym_SQUOTE] = ACTIONS(3005), + [anon_sym_L_DQUOTE] = ACTIONS(3007), + [anon_sym_u_DQUOTE] = ACTIONS(3007), + [anon_sym_U_DQUOTE] = ACTIONS(3007), + [anon_sym_u8_DQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE] = ACTIONS(3007), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [anon_sym_NULL] = ACTIONS(3011), + [anon_sym_nullptr] = ACTIONS(3011), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3013), + [anon_sym_R_DQUOTE] = ACTIONS(3015), + [anon_sym_LR_DQUOTE] = ACTIONS(3015), + [anon_sym_uR_DQUOTE] = ACTIONS(3015), + [anon_sym_UR_DQUOTE] = ACTIONS(3015), + [anon_sym_u8R_DQUOTE] = ACTIONS(3015), + [anon_sym_co_await] = ACTIONS(3017), + [anon_sym_new] = ACTIONS(3019), + [anon_sym_requires] = ACTIONS(3021), + [sym_this] = ACTIONS(3009), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3023), + [sym_semgrep_named_ellipsis] = ACTIONS(3025), + }, + [1442] = { + [sym_expression] = STATE(5456), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -238838,7 +236680,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -238852,2001 +236694,1185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1361] = { - [sym_expression] = STATE(4001), - [sym_expression_not_binary] = STATE(4505), - [sym_conditional_expression] = STATE(4488), - [sym_assignment_expression] = STATE(4488), - [sym_pointer_expression] = STATE(4524), - [sym_unary_expression] = STATE(4488), - [sym_binary_expression] = STATE(4505), - [sym_update_expression] = STATE(4488), - [sym_cast_expression] = STATE(4488), - [sym_sizeof_expression] = STATE(4488), - [sym_alignof_expression] = STATE(4488), - [sym_offsetof_expression] = STATE(4488), - [sym_generic_expression] = STATE(4488), - [sym_subscript_expression] = STATE(4524), - [sym_call_expression] = STATE(4524), - [sym_gnu_asm_expression] = STATE(4488), - [sym_field_expression] = STATE(4524), - [sym_compound_literal_expression] = STATE(4488), - [sym_parenthesized_expression] = STATE(4524), - [sym_char_literal] = STATE(4272), - [sym_concatenated_string] = STATE(4272), - [sym_string_literal] = STATE(2514), - [sym_null] = STATE(4488), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9512), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4488), - [sym_raw_string_literal] = STATE(2514), - [sym_co_await_expression] = STATE(4488), - [sym_new_expression] = STATE(4488), - [sym_delete_expression] = STATE(4488), - [sym_requires_clause] = STATE(4488), - [sym_requires_expression] = STATE(4488), - [sym_lambda_expression] = STATE(4488), - [sym_lambda_capture_specifier] = STATE(7259), - [sym_fold_expression] = STATE(4488), - [sym_parameter_pack_expansion] = STATE(4488), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4524), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4524), - [sym_semgrep_ellipsis] = STATE(4505), - [sym_deep_ellipsis] = STATE(4505), - [sym_identifier] = ACTIONS(2999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4972), - [anon_sym_LPAREN2] = ACTIONS(5134), - [anon_sym_BANG] = ACTIONS(3003), - [anon_sym_TILDE] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3009), - [anon_sym_not] = ACTIONS(3001), - [anon_sym_compl] = ACTIONS(3001), - [anon_sym_DASH_DASH] = ACTIONS(4974), - [anon_sym_PLUS_PLUS] = ACTIONS(4974), - [anon_sym_sizeof] = ACTIONS(3011), - [anon_sym___alignof__] = ACTIONS(3013), - [anon_sym___alignof] = ACTIONS(3013), - [anon_sym__alignof] = ACTIONS(3013), - [anon_sym_alignof] = ACTIONS(3013), - [anon_sym__Alignof] = ACTIONS(3013), - [anon_sym_offsetof] = ACTIONS(3015), - [anon_sym__Generic] = ACTIONS(3017), - [anon_sym_asm] = ACTIONS(3019), - [anon_sym___asm__] = ACTIONS(3019), - [sym_number_literal] = ACTIONS(3021), - [anon_sym_L_SQUOTE] = ACTIONS(3023), - [anon_sym_u_SQUOTE] = ACTIONS(3023), - [anon_sym_U_SQUOTE] = ACTIONS(3023), - [anon_sym_u8_SQUOTE] = ACTIONS(3023), - [anon_sym_SQUOTE] = ACTIONS(3023), - [anon_sym_L_DQUOTE] = ACTIONS(3025), - [anon_sym_u_DQUOTE] = ACTIONS(3025), - [anon_sym_U_DQUOTE] = ACTIONS(3025), - [anon_sym_u8_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [anon_sym_NULL] = ACTIONS(3029), - [anon_sym_nullptr] = ACTIONS(3029), + [1443] = { + [sym_expression] = STATE(3329), + [sym_expression_not_binary] = STATE(3766), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8737), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [sym_identifier] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3706), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_compl] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(3033), - [anon_sym_LR_DQUOTE] = ACTIONS(3033), - [anon_sym_uR_DQUOTE] = ACTIONS(3033), - [anon_sym_UR_DQUOTE] = ACTIONS(3033), - [anon_sym_u8R_DQUOTE] = ACTIONS(3033), - [anon_sym_co_await] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_requires] = ACTIONS(3039), - [sym_this] = ACTIONS(3027), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3041), - [sym_semgrep_named_ellipsis] = ACTIONS(3043), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, - [1362] = { + [1444] = { [sym_expression] = STATE(4016), - [sym_expression_not_binary] = STATE(4505), - [sym_conditional_expression] = STATE(4488), - [sym_assignment_expression] = STATE(4488), - [sym_pointer_expression] = STATE(4524), - [sym_unary_expression] = STATE(4488), - [sym_binary_expression] = STATE(4505), - [sym_update_expression] = STATE(4488), - [sym_cast_expression] = STATE(4488), - [sym_sizeof_expression] = STATE(4488), - [sym_alignof_expression] = STATE(4488), - [sym_offsetof_expression] = STATE(4488), - [sym_generic_expression] = STATE(4488), - [sym_subscript_expression] = STATE(4524), - [sym_call_expression] = STATE(4524), - [sym_gnu_asm_expression] = STATE(4488), - [sym_field_expression] = STATE(4524), - [sym_compound_literal_expression] = STATE(4488), - [sym_parenthesized_expression] = STATE(4524), - [sym_char_literal] = STATE(4272), - [sym_concatenated_string] = STATE(4272), - [sym_string_literal] = STATE(2514), - [sym_null] = STATE(4488), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9512), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4488), - [sym_raw_string_literal] = STATE(2514), - [sym_co_await_expression] = STATE(4488), - [sym_new_expression] = STATE(4488), - [sym_delete_expression] = STATE(4488), - [sym_requires_clause] = STATE(4488), - [sym_requires_expression] = STATE(4488), - [sym_lambda_expression] = STATE(4488), - [sym_lambda_capture_specifier] = STATE(7259), - [sym_fold_expression] = STATE(4488), - [sym_parameter_pack_expansion] = STATE(4488), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4524), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4524), - [sym_semgrep_ellipsis] = STATE(4505), - [sym_deep_ellipsis] = STATE(4505), - [sym_identifier] = ACTIONS(2999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4972), - [anon_sym_LPAREN2] = ACTIONS(5134), - [anon_sym_BANG] = ACTIONS(3003), - [anon_sym_TILDE] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3009), - [anon_sym_not] = ACTIONS(3001), - [anon_sym_compl] = ACTIONS(3001), - [anon_sym_DASH_DASH] = ACTIONS(4974), - [anon_sym_PLUS_PLUS] = ACTIONS(4974), - [anon_sym_sizeof] = ACTIONS(3011), - [anon_sym___alignof__] = ACTIONS(3013), - [anon_sym___alignof] = ACTIONS(3013), - [anon_sym__alignof] = ACTIONS(3013), - [anon_sym_alignof] = ACTIONS(3013), - [anon_sym__Alignof] = ACTIONS(3013), - [anon_sym_offsetof] = ACTIONS(3015), - [anon_sym__Generic] = ACTIONS(3017), - [anon_sym_asm] = ACTIONS(3019), - [anon_sym___asm__] = ACTIONS(3019), - [sym_number_literal] = ACTIONS(3021), - [anon_sym_L_SQUOTE] = ACTIONS(3023), - [anon_sym_u_SQUOTE] = ACTIONS(3023), - [anon_sym_U_SQUOTE] = ACTIONS(3023), - [anon_sym_u8_SQUOTE] = ACTIONS(3023), - [anon_sym_SQUOTE] = ACTIONS(3023), - [anon_sym_L_DQUOTE] = ACTIONS(3025), - [anon_sym_u_DQUOTE] = ACTIONS(3025), - [anon_sym_U_DQUOTE] = ACTIONS(3025), - [anon_sym_u8_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [anon_sym_NULL] = ACTIONS(3029), - [anon_sym_nullptr] = ACTIONS(3029), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(3033), - [anon_sym_LR_DQUOTE] = ACTIONS(3033), - [anon_sym_uR_DQUOTE] = ACTIONS(3033), - [anon_sym_UR_DQUOTE] = ACTIONS(3033), - [anon_sym_u8R_DQUOTE] = ACTIONS(3033), - [anon_sym_co_await] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_requires] = ACTIONS(3039), - [sym_this] = ACTIONS(3027), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3041), - [sym_semgrep_named_ellipsis] = ACTIONS(3043), - }, - [1363] = { - [sym_expression] = STATE(3843), - [sym_expression_not_binary] = STATE(4358), - [sym_conditional_expression] = STATE(4353), - [sym_assignment_expression] = STATE(4353), - [sym_pointer_expression] = STATE(4360), - [sym_unary_expression] = STATE(4353), - [sym_binary_expression] = STATE(4358), - [sym_update_expression] = STATE(4353), - [sym_cast_expression] = STATE(4353), - [sym_sizeof_expression] = STATE(4353), - [sym_alignof_expression] = STATE(4353), - [sym_offsetof_expression] = STATE(4353), - [sym_generic_expression] = STATE(4353), - [sym_subscript_expression] = STATE(4360), - [sym_call_expression] = STATE(4360), - [sym_gnu_asm_expression] = STATE(4353), - [sym_field_expression] = STATE(4360), - [sym_compound_literal_expression] = STATE(4353), - [sym_parenthesized_expression] = STATE(4360), - [sym_char_literal] = STATE(4023), - [sym_concatenated_string] = STATE(4023), - [sym_string_literal] = STATE(2426), - [sym_null] = STATE(4353), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9636), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4353), - [sym_raw_string_literal] = STATE(2426), - [sym_co_await_expression] = STATE(4353), - [sym_new_expression] = STATE(4353), - [sym_delete_expression] = STATE(4353), - [sym_requires_clause] = STATE(4353), - [sym_requires_expression] = STATE(4353), - [sym_lambda_expression] = STATE(4353), - [sym_lambda_capture_specifier] = STATE(7284), - [sym_fold_expression] = STATE(4353), - [sym_parameter_pack_expansion] = STATE(4353), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4360), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4360), - [sym_semgrep_ellipsis] = STATE(4358), - [sym_deep_ellipsis] = STATE(4358), - [sym_identifier] = ACTIONS(2941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5070), - [anon_sym_LPAREN2] = ACTIONS(5130), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(5334), - [sym_primitive_type] = ACTIONS(2951), - [anon_sym_not] = ACTIONS(2943), - [anon_sym_compl] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(5072), - [anon_sym_PLUS_PLUS] = ACTIONS(5072), - [anon_sym_sizeof] = ACTIONS(2953), - [anon_sym___alignof__] = ACTIONS(2955), - [anon_sym___alignof] = ACTIONS(2955), - [anon_sym__alignof] = ACTIONS(2955), - [anon_sym_alignof] = ACTIONS(2955), - [anon_sym__Alignof] = ACTIONS(2955), - [anon_sym_offsetof] = ACTIONS(2957), - [anon_sym__Generic] = ACTIONS(2959), - [anon_sym_asm] = ACTIONS(2961), - [anon_sym___asm__] = ACTIONS(2961), - [sym_number_literal] = ACTIONS(2963), - [anon_sym_L_SQUOTE] = ACTIONS(2965), - [anon_sym_u_SQUOTE] = ACTIONS(2965), - [anon_sym_U_SQUOTE] = ACTIONS(2965), - [anon_sym_u8_SQUOTE] = ACTIONS(2965), - [anon_sym_SQUOTE] = ACTIONS(2965), - [anon_sym_L_DQUOTE] = ACTIONS(2967), - [anon_sym_u_DQUOTE] = ACTIONS(2967), - [anon_sym_U_DQUOTE] = ACTIONS(2967), - [anon_sym_u8_DQUOTE] = ACTIONS(2967), - [anon_sym_DQUOTE] = ACTIONS(2967), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2971), - [anon_sym_nullptr] = ACTIONS(2971), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2973), - [anon_sym_R_DQUOTE] = ACTIONS(2975), - [anon_sym_LR_DQUOTE] = ACTIONS(2975), - [anon_sym_uR_DQUOTE] = ACTIONS(2975), - [anon_sym_UR_DQUOTE] = ACTIONS(2975), - [anon_sym_u8R_DQUOTE] = ACTIONS(2975), - [anon_sym_co_await] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2979), - [anon_sym_requires] = ACTIONS(2981), - [sym_this] = ACTIONS(2969), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2983), - [sym_semgrep_named_ellipsis] = ACTIONS(2985), - }, - [1364] = { - [sym_expression] = STATE(3847), - [sym_expression_not_binary] = STATE(4358), - [sym_conditional_expression] = STATE(4353), - [sym_assignment_expression] = STATE(4353), - [sym_pointer_expression] = STATE(4360), - [sym_unary_expression] = STATE(4353), - [sym_binary_expression] = STATE(4358), - [sym_update_expression] = STATE(4353), - [sym_cast_expression] = STATE(4353), - [sym_sizeof_expression] = STATE(4353), - [sym_alignof_expression] = STATE(4353), - [sym_offsetof_expression] = STATE(4353), - [sym_generic_expression] = STATE(4353), - [sym_subscript_expression] = STATE(4360), - [sym_call_expression] = STATE(4360), - [sym_gnu_asm_expression] = STATE(4353), - [sym_field_expression] = STATE(4360), - [sym_compound_literal_expression] = STATE(4353), - [sym_parenthesized_expression] = STATE(4360), - [sym_char_literal] = STATE(4023), - [sym_concatenated_string] = STATE(4023), - [sym_string_literal] = STATE(2426), - [sym_null] = STATE(4353), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9636), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4353), - [sym_raw_string_literal] = STATE(2426), - [sym_co_await_expression] = STATE(4353), - [sym_new_expression] = STATE(4353), - [sym_delete_expression] = STATE(4353), - [sym_requires_clause] = STATE(4353), - [sym_requires_expression] = STATE(4353), - [sym_lambda_expression] = STATE(4353), - [sym_lambda_capture_specifier] = STATE(7284), - [sym_fold_expression] = STATE(4353), - [sym_parameter_pack_expansion] = STATE(4353), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4360), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4360), - [sym_semgrep_ellipsis] = STATE(4358), - [sym_deep_ellipsis] = STATE(4358), - [sym_identifier] = ACTIONS(2941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5070), - [anon_sym_LPAREN2] = ACTIONS(5130), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2951), - [anon_sym_not] = ACTIONS(2943), - [anon_sym_compl] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(5072), - [anon_sym_PLUS_PLUS] = ACTIONS(5072), - [anon_sym_sizeof] = ACTIONS(2953), - [anon_sym___alignof__] = ACTIONS(2955), - [anon_sym___alignof] = ACTIONS(2955), - [anon_sym__alignof] = ACTIONS(2955), - [anon_sym_alignof] = ACTIONS(2955), - [anon_sym__Alignof] = ACTIONS(2955), - [anon_sym_offsetof] = ACTIONS(2957), - [anon_sym__Generic] = ACTIONS(2959), - [anon_sym_asm] = ACTIONS(2961), - [anon_sym___asm__] = ACTIONS(2961), - [sym_number_literal] = ACTIONS(2963), - [anon_sym_L_SQUOTE] = ACTIONS(2965), - [anon_sym_u_SQUOTE] = ACTIONS(2965), - [anon_sym_U_SQUOTE] = ACTIONS(2965), - [anon_sym_u8_SQUOTE] = ACTIONS(2965), - [anon_sym_SQUOTE] = ACTIONS(2965), - [anon_sym_L_DQUOTE] = ACTIONS(2967), - [anon_sym_u_DQUOTE] = ACTIONS(2967), - [anon_sym_U_DQUOTE] = ACTIONS(2967), - [anon_sym_u8_DQUOTE] = ACTIONS(2967), - [anon_sym_DQUOTE] = ACTIONS(2967), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2971), - [anon_sym_nullptr] = ACTIONS(2971), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2973), - [anon_sym_R_DQUOTE] = ACTIONS(2975), - [anon_sym_LR_DQUOTE] = ACTIONS(2975), - [anon_sym_uR_DQUOTE] = ACTIONS(2975), - [anon_sym_UR_DQUOTE] = ACTIONS(2975), - [anon_sym_u8R_DQUOTE] = ACTIONS(2975), - [anon_sym_co_await] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2979), - [anon_sym_requires] = ACTIONS(2981), - [sym_this] = ACTIONS(2969), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2983), - [sym_semgrep_named_ellipsis] = ACTIONS(2985), - }, - [1365] = { - [sym_expression] = STATE(3904), - [sym_expression_not_binary] = STATE(4358), - [sym_conditional_expression] = STATE(4353), - [sym_assignment_expression] = STATE(4353), - [sym_pointer_expression] = STATE(4360), - [sym_unary_expression] = STATE(4353), - [sym_binary_expression] = STATE(4358), - [sym_update_expression] = STATE(4353), - [sym_cast_expression] = STATE(4353), - [sym_sizeof_expression] = STATE(4353), - [sym_alignof_expression] = STATE(4353), - [sym_offsetof_expression] = STATE(4353), - [sym_generic_expression] = STATE(4353), - [sym_subscript_expression] = STATE(4360), - [sym_call_expression] = STATE(4360), - [sym_gnu_asm_expression] = STATE(4353), - [sym_field_expression] = STATE(4360), - [sym_compound_literal_expression] = STATE(4353), - [sym_parenthesized_expression] = STATE(4360), - [sym_char_literal] = STATE(4023), - [sym_concatenated_string] = STATE(4023), - [sym_string_literal] = STATE(2426), - [sym_null] = STATE(4353), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9636), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4353), - [sym_raw_string_literal] = STATE(2426), - [sym_co_await_expression] = STATE(4353), - [sym_new_expression] = STATE(4353), - [sym_delete_expression] = STATE(4353), - [sym_requires_clause] = STATE(4353), - [sym_requires_expression] = STATE(4353), - [sym_lambda_expression] = STATE(4353), - [sym_lambda_capture_specifier] = STATE(7284), - [sym_fold_expression] = STATE(4353), - [sym_parameter_pack_expansion] = STATE(4353), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4360), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4360), - [sym_semgrep_ellipsis] = STATE(4358), - [sym_deep_ellipsis] = STATE(4358), - [sym_identifier] = ACTIONS(2941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5070), - [anon_sym_LPAREN2] = ACTIONS(5130), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(5336), - [sym_primitive_type] = ACTIONS(2951), - [anon_sym_not] = ACTIONS(2943), - [anon_sym_compl] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(5072), - [anon_sym_PLUS_PLUS] = ACTIONS(5072), - [anon_sym_sizeof] = ACTIONS(2953), - [anon_sym___alignof__] = ACTIONS(2955), - [anon_sym___alignof] = ACTIONS(2955), - [anon_sym__alignof] = ACTIONS(2955), - [anon_sym_alignof] = ACTIONS(2955), - [anon_sym__Alignof] = ACTIONS(2955), - [anon_sym_offsetof] = ACTIONS(2957), - [anon_sym__Generic] = ACTIONS(2959), - [anon_sym_asm] = ACTIONS(2961), - [anon_sym___asm__] = ACTIONS(2961), - [sym_number_literal] = ACTIONS(2963), - [anon_sym_L_SQUOTE] = ACTIONS(2965), - [anon_sym_u_SQUOTE] = ACTIONS(2965), - [anon_sym_U_SQUOTE] = ACTIONS(2965), - [anon_sym_u8_SQUOTE] = ACTIONS(2965), - [anon_sym_SQUOTE] = ACTIONS(2965), - [anon_sym_L_DQUOTE] = ACTIONS(2967), - [anon_sym_u_DQUOTE] = ACTIONS(2967), - [anon_sym_U_DQUOTE] = ACTIONS(2967), - [anon_sym_u8_DQUOTE] = ACTIONS(2967), - [anon_sym_DQUOTE] = ACTIONS(2967), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2971), - [anon_sym_nullptr] = ACTIONS(2971), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2973), - [anon_sym_R_DQUOTE] = ACTIONS(2975), - [anon_sym_LR_DQUOTE] = ACTIONS(2975), - [anon_sym_uR_DQUOTE] = ACTIONS(2975), - [anon_sym_UR_DQUOTE] = ACTIONS(2975), - [anon_sym_u8R_DQUOTE] = ACTIONS(2975), - [anon_sym_co_await] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2979), - [anon_sym_requires] = ACTIONS(2981), - [sym_this] = ACTIONS(2969), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2983), - [sym_semgrep_named_ellipsis] = ACTIONS(2985), - }, - [1366] = { - [sym_expression] = STATE(5897), - [sym_expression_not_binary] = STATE(6169), - [sym_conditional_expression] = STATE(6267), - [sym_assignment_expression] = STATE(6267), - [sym_pointer_expression] = STATE(4422), - [sym_unary_expression] = STATE(6267), - [sym_binary_expression] = STATE(6169), - [sym_update_expression] = STATE(6267), - [sym_cast_expression] = STATE(6267), - [sym_sizeof_expression] = STATE(6267), - [sym_alignof_expression] = STATE(6267), - [sym_offsetof_expression] = STATE(6267), - [sym_generic_expression] = STATE(6267), - [sym_subscript_expression] = STATE(4422), - [sym_call_expression] = STATE(4422), - [sym_gnu_asm_expression] = STATE(6267), - [sym_field_expression] = STATE(4422), - [sym_compound_literal_expression] = STATE(6267), - [sym_parenthesized_expression] = STATE(4422), - [sym_char_literal] = STATE(6147), - [sym_concatenated_string] = STATE(6147), - [sym_string_literal] = STATE(4563), - [sym_null] = STATE(6267), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9242), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6267), - [sym_raw_string_literal] = STATE(4563), - [sym_co_await_expression] = STATE(6267), - [sym_new_expression] = STATE(6267), - [sym_delete_expression] = STATE(6267), - [sym_requires_clause] = STATE(6267), - [sym_requires_expression] = STATE(6267), - [sym_lambda_expression] = STATE(6267), - [sym_lambda_capture_specifier] = STATE(7263), - [sym_fold_expression] = STATE(6267), - [sym_parameter_pack_expansion] = STATE(6267), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4422), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4422), - [sym_semgrep_ellipsis] = STATE(6169), - [sym_deep_ellipsis] = STATE(6169), - [sym_identifier] = ACTIONS(4112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5054), - [anon_sym_LPAREN2] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_TILDE] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4122), - [anon_sym_not] = ACTIONS(4114), - [anon_sym_compl] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(5056), - [anon_sym_PLUS_PLUS] = ACTIONS(5056), - [anon_sym_sizeof] = ACTIONS(4124), - [anon_sym___alignof__] = ACTIONS(4126), - [anon_sym___alignof] = ACTIONS(4126), - [anon_sym__alignof] = ACTIONS(4126), - [anon_sym_alignof] = ACTIONS(4126), - [anon_sym__Alignof] = ACTIONS(4126), - [anon_sym_offsetof] = ACTIONS(4128), - [anon_sym__Generic] = ACTIONS(4130), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4136), - [anon_sym_u_SQUOTE] = ACTIONS(4136), - [anon_sym_U_SQUOTE] = ACTIONS(4136), - [anon_sym_u8_SQUOTE] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_L_DQUOTE] = ACTIONS(4138), - [anon_sym_u_DQUOTE] = ACTIONS(4138), - [anon_sym_U_DQUOTE] = ACTIONS(4138), - [anon_sym_u8_DQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [anon_sym_NULL] = ACTIONS(4142), - [anon_sym_nullptr] = ACTIONS(4142), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4150), - [anon_sym_requires] = ACTIONS(4152), - [sym_this] = ACTIONS(4140), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4154), - [sym_semgrep_named_ellipsis] = ACTIONS(4156), - }, - [1367] = { - [sym_expression] = STATE(3810), - [sym_expression_not_binary] = STATE(4358), - [sym_conditional_expression] = STATE(4353), - [sym_assignment_expression] = STATE(4353), - [sym_pointer_expression] = STATE(4360), - [sym_unary_expression] = STATE(4353), - [sym_binary_expression] = STATE(4358), - [sym_update_expression] = STATE(4353), - [sym_cast_expression] = STATE(4353), - [sym_sizeof_expression] = STATE(4353), - [sym_alignof_expression] = STATE(4353), - [sym_offsetof_expression] = STATE(4353), - [sym_generic_expression] = STATE(4353), - [sym_subscript_expression] = STATE(4360), - [sym_call_expression] = STATE(4360), - [sym_gnu_asm_expression] = STATE(4353), - [sym_field_expression] = STATE(4360), - [sym_compound_literal_expression] = STATE(4353), - [sym_parenthesized_expression] = STATE(4360), - [sym_char_literal] = STATE(4023), - [sym_concatenated_string] = STATE(4023), - [sym_string_literal] = STATE(2426), - [sym_null] = STATE(4353), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9636), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4353), - [sym_raw_string_literal] = STATE(2426), - [sym_co_await_expression] = STATE(4353), - [sym_new_expression] = STATE(4353), - [sym_delete_expression] = STATE(4353), - [sym_requires_clause] = STATE(4353), - [sym_requires_expression] = STATE(4353), - [sym_lambda_expression] = STATE(4353), - [sym_lambda_capture_specifier] = STATE(7284), - [sym_fold_expression] = STATE(4353), - [sym_parameter_pack_expansion] = STATE(4353), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4360), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4360), - [sym_semgrep_ellipsis] = STATE(4358), - [sym_deep_ellipsis] = STATE(4358), - [sym_identifier] = ACTIONS(2941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5070), - [anon_sym_LPAREN2] = ACTIONS(5130), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2951), - [anon_sym_not] = ACTIONS(2943), - [anon_sym_compl] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(5072), - [anon_sym_PLUS_PLUS] = ACTIONS(5072), - [anon_sym_sizeof] = ACTIONS(2953), - [anon_sym___alignof__] = ACTIONS(2955), - [anon_sym___alignof] = ACTIONS(2955), - [anon_sym__alignof] = ACTIONS(2955), - [anon_sym_alignof] = ACTIONS(2955), - [anon_sym__Alignof] = ACTIONS(2955), - [anon_sym_offsetof] = ACTIONS(2957), - [anon_sym__Generic] = ACTIONS(2959), - [anon_sym_asm] = ACTIONS(2961), - [anon_sym___asm__] = ACTIONS(2961), - [sym_number_literal] = ACTIONS(2963), - [anon_sym_L_SQUOTE] = ACTIONS(2965), - [anon_sym_u_SQUOTE] = ACTIONS(2965), - [anon_sym_U_SQUOTE] = ACTIONS(2965), - [anon_sym_u8_SQUOTE] = ACTIONS(2965), - [anon_sym_SQUOTE] = ACTIONS(2965), - [anon_sym_L_DQUOTE] = ACTIONS(2967), - [anon_sym_u_DQUOTE] = ACTIONS(2967), - [anon_sym_U_DQUOTE] = ACTIONS(2967), - [anon_sym_u8_DQUOTE] = ACTIONS(2967), - [anon_sym_DQUOTE] = ACTIONS(2967), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2971), - [anon_sym_nullptr] = ACTIONS(2971), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2973), - [anon_sym_R_DQUOTE] = ACTIONS(2975), - [anon_sym_LR_DQUOTE] = ACTIONS(2975), - [anon_sym_uR_DQUOTE] = ACTIONS(2975), - [anon_sym_UR_DQUOTE] = ACTIONS(2975), - [anon_sym_u8R_DQUOTE] = ACTIONS(2975), - [anon_sym_co_await] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2979), - [anon_sym_requires] = ACTIONS(2981), - [sym_this] = ACTIONS(2969), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2983), - [sym_semgrep_named_ellipsis] = ACTIONS(2985), - }, - [1368] = { - [sym_expression] = STATE(5898), - [sym_expression_not_binary] = STATE(6169), - [sym_conditional_expression] = STATE(6267), - [sym_assignment_expression] = STATE(6267), - [sym_pointer_expression] = STATE(4422), - [sym_unary_expression] = STATE(6267), - [sym_binary_expression] = STATE(6169), - [sym_update_expression] = STATE(6267), - [sym_cast_expression] = STATE(6267), - [sym_sizeof_expression] = STATE(6267), - [sym_alignof_expression] = STATE(6267), - [sym_offsetof_expression] = STATE(6267), - [sym_generic_expression] = STATE(6267), - [sym_subscript_expression] = STATE(4422), - [sym_call_expression] = STATE(4422), - [sym_gnu_asm_expression] = STATE(6267), - [sym_field_expression] = STATE(4422), - [sym_compound_literal_expression] = STATE(6267), - [sym_parenthesized_expression] = STATE(4422), - [sym_char_literal] = STATE(6147), - [sym_concatenated_string] = STATE(6147), - [sym_string_literal] = STATE(4563), - [sym_null] = STATE(6267), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9242), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6267), - [sym_raw_string_literal] = STATE(4563), - [sym_co_await_expression] = STATE(6267), - [sym_new_expression] = STATE(6267), - [sym_delete_expression] = STATE(6267), - [sym_requires_clause] = STATE(6267), - [sym_requires_expression] = STATE(6267), - [sym_lambda_expression] = STATE(6267), - [sym_lambda_capture_specifier] = STATE(7263), - [sym_fold_expression] = STATE(6267), - [sym_parameter_pack_expansion] = STATE(6267), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4422), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4422), - [sym_semgrep_ellipsis] = STATE(6169), - [sym_deep_ellipsis] = STATE(6169), - [sym_identifier] = ACTIONS(4112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5054), - [anon_sym_LPAREN2] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_TILDE] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4122), - [anon_sym_not] = ACTIONS(4114), - [anon_sym_compl] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(5056), - [anon_sym_PLUS_PLUS] = ACTIONS(5056), - [anon_sym_sizeof] = ACTIONS(4124), - [anon_sym___alignof__] = ACTIONS(4126), - [anon_sym___alignof] = ACTIONS(4126), - [anon_sym__alignof] = ACTIONS(4126), - [anon_sym_alignof] = ACTIONS(4126), - [anon_sym__Alignof] = ACTIONS(4126), - [anon_sym_offsetof] = ACTIONS(4128), - [anon_sym__Generic] = ACTIONS(4130), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4136), - [anon_sym_u_SQUOTE] = ACTIONS(4136), - [anon_sym_U_SQUOTE] = ACTIONS(4136), - [anon_sym_u8_SQUOTE] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_L_DQUOTE] = ACTIONS(4138), - [anon_sym_u_DQUOTE] = ACTIONS(4138), - [anon_sym_U_DQUOTE] = ACTIONS(4138), - [anon_sym_u8_DQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [anon_sym_NULL] = ACTIONS(4142), - [anon_sym_nullptr] = ACTIONS(4142), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4150), - [anon_sym_requires] = ACTIONS(4152), - [sym_this] = ACTIONS(4140), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4154), - [sym_semgrep_named_ellipsis] = ACTIONS(4156), - }, - [1369] = { - [sym_expression] = STATE(5899), - [sym_expression_not_binary] = STATE(6169), - [sym_conditional_expression] = STATE(6267), - [sym_assignment_expression] = STATE(6267), - [sym_pointer_expression] = STATE(4422), - [sym_unary_expression] = STATE(6267), - [sym_binary_expression] = STATE(6169), - [sym_update_expression] = STATE(6267), - [sym_cast_expression] = STATE(6267), - [sym_sizeof_expression] = STATE(6267), - [sym_alignof_expression] = STATE(6267), - [sym_offsetof_expression] = STATE(6267), - [sym_generic_expression] = STATE(6267), - [sym_subscript_expression] = STATE(4422), - [sym_call_expression] = STATE(4422), - [sym_gnu_asm_expression] = STATE(6267), - [sym_field_expression] = STATE(4422), - [sym_compound_literal_expression] = STATE(6267), - [sym_parenthesized_expression] = STATE(4422), - [sym_char_literal] = STATE(6147), - [sym_concatenated_string] = STATE(6147), - [sym_string_literal] = STATE(4563), - [sym_null] = STATE(6267), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9242), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6267), - [sym_raw_string_literal] = STATE(4563), - [sym_co_await_expression] = STATE(6267), - [sym_new_expression] = STATE(6267), - [sym_delete_expression] = STATE(6267), - [sym_requires_clause] = STATE(6267), - [sym_requires_expression] = STATE(6267), - [sym_lambda_expression] = STATE(6267), - [sym_lambda_capture_specifier] = STATE(7263), - [sym_fold_expression] = STATE(6267), - [sym_parameter_pack_expansion] = STATE(6267), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4422), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4422), - [sym_semgrep_ellipsis] = STATE(6169), - [sym_deep_ellipsis] = STATE(6169), - [sym_identifier] = ACTIONS(4112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5054), - [anon_sym_LPAREN2] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_TILDE] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4122), - [anon_sym_not] = ACTIONS(4114), - [anon_sym_compl] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(5056), - [anon_sym_PLUS_PLUS] = ACTIONS(5056), - [anon_sym_sizeof] = ACTIONS(4124), - [anon_sym___alignof__] = ACTIONS(4126), - [anon_sym___alignof] = ACTIONS(4126), - [anon_sym__alignof] = ACTIONS(4126), - [anon_sym_alignof] = ACTIONS(4126), - [anon_sym__Alignof] = ACTIONS(4126), - [anon_sym_offsetof] = ACTIONS(4128), - [anon_sym__Generic] = ACTIONS(4130), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4136), - [anon_sym_u_SQUOTE] = ACTIONS(4136), - [anon_sym_U_SQUOTE] = ACTIONS(4136), - [anon_sym_u8_SQUOTE] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_L_DQUOTE] = ACTIONS(4138), - [anon_sym_u_DQUOTE] = ACTIONS(4138), - [anon_sym_U_DQUOTE] = ACTIONS(4138), - [anon_sym_u8_DQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [anon_sym_NULL] = ACTIONS(4142), - [anon_sym_nullptr] = ACTIONS(4142), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4150), - [anon_sym_requires] = ACTIONS(4152), - [sym_this] = ACTIONS(4140), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4154), - [sym_semgrep_named_ellipsis] = ACTIONS(4156), - }, - [1370] = { - [sym_expression] = STATE(5900), - [sym_expression_not_binary] = STATE(6169), - [sym_conditional_expression] = STATE(6267), - [sym_assignment_expression] = STATE(6267), - [sym_pointer_expression] = STATE(4422), - [sym_unary_expression] = STATE(6267), - [sym_binary_expression] = STATE(6169), - [sym_update_expression] = STATE(6267), - [sym_cast_expression] = STATE(6267), - [sym_sizeof_expression] = STATE(6267), - [sym_alignof_expression] = STATE(6267), - [sym_offsetof_expression] = STATE(6267), - [sym_generic_expression] = STATE(6267), - [sym_subscript_expression] = STATE(4422), - [sym_call_expression] = STATE(4422), - [sym_gnu_asm_expression] = STATE(6267), - [sym_field_expression] = STATE(4422), - [sym_compound_literal_expression] = STATE(6267), - [sym_parenthesized_expression] = STATE(4422), - [sym_char_literal] = STATE(6147), - [sym_concatenated_string] = STATE(6147), - [sym_string_literal] = STATE(4563), - [sym_null] = STATE(6267), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9242), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6267), - [sym_raw_string_literal] = STATE(4563), - [sym_co_await_expression] = STATE(6267), - [sym_new_expression] = STATE(6267), - [sym_delete_expression] = STATE(6267), - [sym_requires_clause] = STATE(6267), - [sym_requires_expression] = STATE(6267), - [sym_lambda_expression] = STATE(6267), - [sym_lambda_capture_specifier] = STATE(7263), - [sym_fold_expression] = STATE(6267), - [sym_parameter_pack_expansion] = STATE(6267), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4422), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4422), - [sym_semgrep_ellipsis] = STATE(6169), - [sym_deep_ellipsis] = STATE(6169), - [sym_identifier] = ACTIONS(4112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5054), - [anon_sym_LPAREN2] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_TILDE] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4122), - [anon_sym_not] = ACTIONS(4114), - [anon_sym_compl] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(5056), - [anon_sym_PLUS_PLUS] = ACTIONS(5056), - [anon_sym_sizeof] = ACTIONS(4124), - [anon_sym___alignof__] = ACTIONS(4126), - [anon_sym___alignof] = ACTIONS(4126), - [anon_sym__alignof] = ACTIONS(4126), - [anon_sym_alignof] = ACTIONS(4126), - [anon_sym__Alignof] = ACTIONS(4126), - [anon_sym_offsetof] = ACTIONS(4128), - [anon_sym__Generic] = ACTIONS(4130), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4136), - [anon_sym_u_SQUOTE] = ACTIONS(4136), - [anon_sym_U_SQUOTE] = ACTIONS(4136), - [anon_sym_u8_SQUOTE] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_L_DQUOTE] = ACTIONS(4138), - [anon_sym_u_DQUOTE] = ACTIONS(4138), - [anon_sym_U_DQUOTE] = ACTIONS(4138), - [anon_sym_u8_DQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [anon_sym_NULL] = ACTIONS(4142), - [anon_sym_nullptr] = ACTIONS(4142), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5068), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4150), - [anon_sym_requires] = ACTIONS(4152), - [sym_this] = ACTIONS(4140), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4154), - [sym_semgrep_named_ellipsis] = ACTIONS(4156), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), }, - [1371] = { - [sym_expression] = STATE(5903), - [sym_expression_not_binary] = STATE(6169), - [sym_conditional_expression] = STATE(6267), - [sym_assignment_expression] = STATE(6267), - [sym_pointer_expression] = STATE(4422), - [sym_unary_expression] = STATE(6267), - [sym_binary_expression] = STATE(6169), - [sym_update_expression] = STATE(6267), - [sym_cast_expression] = STATE(6267), - [sym_sizeof_expression] = STATE(6267), - [sym_alignof_expression] = STATE(6267), - [sym_offsetof_expression] = STATE(6267), - [sym_generic_expression] = STATE(6267), - [sym_subscript_expression] = STATE(4422), - [sym_call_expression] = STATE(4422), - [sym_gnu_asm_expression] = STATE(6267), - [sym_field_expression] = STATE(4422), - [sym_compound_literal_expression] = STATE(6267), - [sym_parenthesized_expression] = STATE(4422), - [sym_char_literal] = STATE(6147), - [sym_concatenated_string] = STATE(6147), - [sym_string_literal] = STATE(4563), - [sym_null] = STATE(6267), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9242), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6267), - [sym_raw_string_literal] = STATE(4563), - [sym_co_await_expression] = STATE(6267), - [sym_new_expression] = STATE(6267), - [sym_delete_expression] = STATE(6267), - [sym_requires_clause] = STATE(6267), - [sym_requires_expression] = STATE(6267), - [sym_lambda_expression] = STATE(6267), - [sym_lambda_capture_specifier] = STATE(7263), - [sym_fold_expression] = STATE(6267), - [sym_parameter_pack_expansion] = STATE(6267), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4422), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4422), - [sym_semgrep_ellipsis] = STATE(6169), - [sym_deep_ellipsis] = STATE(6169), - [sym_identifier] = ACTIONS(4112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5054), - [anon_sym_LPAREN2] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_TILDE] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4122), - [anon_sym_not] = ACTIONS(4114), - [anon_sym_compl] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(5056), - [anon_sym_PLUS_PLUS] = ACTIONS(5056), - [anon_sym_sizeof] = ACTIONS(4124), - [anon_sym___alignof__] = ACTIONS(4126), - [anon_sym___alignof] = ACTIONS(4126), - [anon_sym__alignof] = ACTIONS(4126), - [anon_sym_alignof] = ACTIONS(4126), - [anon_sym__Alignof] = ACTIONS(4126), - [anon_sym_offsetof] = ACTIONS(4128), - [anon_sym__Generic] = ACTIONS(4130), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4136), - [anon_sym_u_SQUOTE] = ACTIONS(4136), - [anon_sym_U_SQUOTE] = ACTIONS(4136), - [anon_sym_u8_SQUOTE] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_L_DQUOTE] = ACTIONS(4138), - [anon_sym_u_DQUOTE] = ACTIONS(4138), - [anon_sym_U_DQUOTE] = ACTIONS(4138), - [anon_sym_u8_DQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [anon_sym_NULL] = ACTIONS(4142), - [anon_sym_nullptr] = ACTIONS(4142), + [1445] = { + [sym_expression] = STATE(4019), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5068), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4150), - [anon_sym_requires] = ACTIONS(4152), - [sym_this] = ACTIONS(4140), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4154), - [sym_semgrep_named_ellipsis] = ACTIONS(4156), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), }, - [1372] = { - [sym_expression] = STATE(5904), - [sym_expression_not_binary] = STATE(6169), - [sym_conditional_expression] = STATE(6267), - [sym_assignment_expression] = STATE(6267), - [sym_pointer_expression] = STATE(4422), - [sym_unary_expression] = STATE(6267), - [sym_binary_expression] = STATE(6169), - [sym_update_expression] = STATE(6267), - [sym_cast_expression] = STATE(6267), - [sym_sizeof_expression] = STATE(6267), - [sym_alignof_expression] = STATE(6267), - [sym_offsetof_expression] = STATE(6267), - [sym_generic_expression] = STATE(6267), - [sym_subscript_expression] = STATE(4422), - [sym_call_expression] = STATE(4422), - [sym_gnu_asm_expression] = STATE(6267), - [sym_field_expression] = STATE(4422), - [sym_compound_literal_expression] = STATE(6267), - [sym_parenthesized_expression] = STATE(4422), - [sym_char_literal] = STATE(6147), - [sym_concatenated_string] = STATE(6147), - [sym_string_literal] = STATE(4563), - [sym_null] = STATE(6267), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9242), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6267), - [sym_raw_string_literal] = STATE(4563), - [sym_co_await_expression] = STATE(6267), - [sym_new_expression] = STATE(6267), - [sym_delete_expression] = STATE(6267), - [sym_requires_clause] = STATE(6267), - [sym_requires_expression] = STATE(6267), - [sym_lambda_expression] = STATE(6267), - [sym_lambda_capture_specifier] = STATE(7263), - [sym_fold_expression] = STATE(6267), - [sym_parameter_pack_expansion] = STATE(6267), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4422), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4422), - [sym_semgrep_ellipsis] = STATE(6169), - [sym_deep_ellipsis] = STATE(6169), - [sym_identifier] = ACTIONS(4112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5054), - [anon_sym_LPAREN2] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_TILDE] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4122), - [anon_sym_not] = ACTIONS(4114), - [anon_sym_compl] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(5056), - [anon_sym_PLUS_PLUS] = ACTIONS(5056), - [anon_sym_sizeof] = ACTIONS(4124), - [anon_sym___alignof__] = ACTIONS(4126), - [anon_sym___alignof] = ACTIONS(4126), - [anon_sym__alignof] = ACTIONS(4126), - [anon_sym_alignof] = ACTIONS(4126), - [anon_sym__Alignof] = ACTIONS(4126), - [anon_sym_offsetof] = ACTIONS(4128), - [anon_sym__Generic] = ACTIONS(4130), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4136), - [anon_sym_u_SQUOTE] = ACTIONS(4136), - [anon_sym_U_SQUOTE] = ACTIONS(4136), - [anon_sym_u8_SQUOTE] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_L_DQUOTE] = ACTIONS(4138), - [anon_sym_u_DQUOTE] = ACTIONS(4138), - [anon_sym_U_DQUOTE] = ACTIONS(4138), - [anon_sym_u8_DQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [anon_sym_NULL] = ACTIONS(4142), - [anon_sym_nullptr] = ACTIONS(4142), + [1446] = { + [sym_expression] = STATE(4022), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5068), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4150), - [anon_sym_requires] = ACTIONS(4152), - [sym_this] = ACTIONS(4140), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4154), - [sym_semgrep_named_ellipsis] = ACTIONS(4156), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), }, - [1373] = { - [sym_expression] = STATE(3850), - [sym_expression_not_binary] = STATE(4358), - [sym_conditional_expression] = STATE(4353), - [sym_assignment_expression] = STATE(4353), - [sym_pointer_expression] = STATE(4360), - [sym_unary_expression] = STATE(4353), - [sym_binary_expression] = STATE(4358), - [sym_update_expression] = STATE(4353), - [sym_cast_expression] = STATE(4353), - [sym_sizeof_expression] = STATE(4353), - [sym_alignof_expression] = STATE(4353), - [sym_offsetof_expression] = STATE(4353), - [sym_generic_expression] = STATE(4353), - [sym_subscript_expression] = STATE(4360), - [sym_call_expression] = STATE(4360), - [sym_gnu_asm_expression] = STATE(4353), - [sym_field_expression] = STATE(4360), - [sym_compound_literal_expression] = STATE(4353), - [sym_parenthesized_expression] = STATE(4360), - [sym_char_literal] = STATE(4023), - [sym_concatenated_string] = STATE(4023), - [sym_string_literal] = STATE(2426), - [sym_null] = STATE(4353), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9636), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4353), - [sym_raw_string_literal] = STATE(2426), - [sym_co_await_expression] = STATE(4353), - [sym_new_expression] = STATE(4353), - [sym_delete_expression] = STATE(4353), - [sym_requires_clause] = STATE(4353), - [sym_requires_expression] = STATE(4353), - [sym_lambda_expression] = STATE(4353), - [sym_lambda_capture_specifier] = STATE(7284), - [sym_fold_expression] = STATE(4353), - [sym_parameter_pack_expansion] = STATE(4353), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4360), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4360), - [sym_semgrep_ellipsis] = STATE(4358), - [sym_deep_ellipsis] = STATE(4358), - [sym_identifier] = ACTIONS(2941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5070), - [anon_sym_LPAREN2] = ACTIONS(5130), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2951), - [anon_sym_not] = ACTIONS(2943), - [anon_sym_compl] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(5072), - [anon_sym_PLUS_PLUS] = ACTIONS(5072), - [anon_sym_sizeof] = ACTIONS(2953), - [anon_sym___alignof__] = ACTIONS(2955), - [anon_sym___alignof] = ACTIONS(2955), - [anon_sym__alignof] = ACTIONS(2955), - [anon_sym_alignof] = ACTIONS(2955), - [anon_sym__Alignof] = ACTIONS(2955), - [anon_sym_offsetof] = ACTIONS(2957), - [anon_sym__Generic] = ACTIONS(2959), - [anon_sym_asm] = ACTIONS(2961), - [anon_sym___asm__] = ACTIONS(2961), - [sym_number_literal] = ACTIONS(2963), - [anon_sym_L_SQUOTE] = ACTIONS(2965), - [anon_sym_u_SQUOTE] = ACTIONS(2965), - [anon_sym_U_SQUOTE] = ACTIONS(2965), - [anon_sym_u8_SQUOTE] = ACTIONS(2965), - [anon_sym_SQUOTE] = ACTIONS(2965), - [anon_sym_L_DQUOTE] = ACTIONS(2967), - [anon_sym_u_DQUOTE] = ACTIONS(2967), - [anon_sym_U_DQUOTE] = ACTIONS(2967), - [anon_sym_u8_DQUOTE] = ACTIONS(2967), - [anon_sym_DQUOTE] = ACTIONS(2967), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2971), - [anon_sym_nullptr] = ACTIONS(2971), + [1447] = { + [sym_expression] = STATE(4023), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5068), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2973), - [anon_sym_R_DQUOTE] = ACTIONS(2975), - [anon_sym_LR_DQUOTE] = ACTIONS(2975), - [anon_sym_uR_DQUOTE] = ACTIONS(2975), - [anon_sym_UR_DQUOTE] = ACTIONS(2975), - [anon_sym_u8R_DQUOTE] = ACTIONS(2975), - [anon_sym_co_await] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2979), - [anon_sym_requires] = ACTIONS(2981), - [sym_this] = ACTIONS(2969), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2983), - [sym_semgrep_named_ellipsis] = ACTIONS(2985), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), }, - [1374] = { - [sym_expression] = STATE(5910), - [sym_expression_not_binary] = STATE(6169), - [sym_conditional_expression] = STATE(6267), - [sym_assignment_expression] = STATE(6267), - [sym_pointer_expression] = STATE(4422), - [sym_unary_expression] = STATE(6267), - [sym_binary_expression] = STATE(6169), - [sym_update_expression] = STATE(6267), - [sym_cast_expression] = STATE(6267), - [sym_sizeof_expression] = STATE(6267), - [sym_alignof_expression] = STATE(6267), - [sym_offsetof_expression] = STATE(6267), - [sym_generic_expression] = STATE(6267), - [sym_subscript_expression] = STATE(4422), - [sym_call_expression] = STATE(4422), - [sym_gnu_asm_expression] = STATE(6267), - [sym_field_expression] = STATE(4422), - [sym_compound_literal_expression] = STATE(6267), - [sym_parenthesized_expression] = STATE(4422), - [sym_char_literal] = STATE(6147), - [sym_concatenated_string] = STATE(6147), - [sym_string_literal] = STATE(4563), - [sym_null] = STATE(6267), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9242), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6267), - [sym_raw_string_literal] = STATE(4563), - [sym_co_await_expression] = STATE(6267), - [sym_new_expression] = STATE(6267), - [sym_delete_expression] = STATE(6267), - [sym_requires_clause] = STATE(6267), - [sym_requires_expression] = STATE(6267), - [sym_lambda_expression] = STATE(6267), - [sym_lambda_capture_specifier] = STATE(7263), - [sym_fold_expression] = STATE(6267), - [sym_parameter_pack_expansion] = STATE(6267), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4422), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4422), - [sym_semgrep_ellipsis] = STATE(6169), - [sym_deep_ellipsis] = STATE(6169), - [sym_identifier] = ACTIONS(4112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5054), - [anon_sym_LPAREN2] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_TILDE] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4122), - [anon_sym_not] = ACTIONS(4114), - [anon_sym_compl] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(5056), - [anon_sym_PLUS_PLUS] = ACTIONS(5056), - [anon_sym_sizeof] = ACTIONS(4124), - [anon_sym___alignof__] = ACTIONS(4126), - [anon_sym___alignof] = ACTIONS(4126), - [anon_sym__alignof] = ACTIONS(4126), - [anon_sym_alignof] = ACTIONS(4126), - [anon_sym__Alignof] = ACTIONS(4126), - [anon_sym_offsetof] = ACTIONS(4128), - [anon_sym__Generic] = ACTIONS(4130), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4136), - [anon_sym_u_SQUOTE] = ACTIONS(4136), - [anon_sym_U_SQUOTE] = ACTIONS(4136), - [anon_sym_u8_SQUOTE] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_L_DQUOTE] = ACTIONS(4138), - [anon_sym_u_DQUOTE] = ACTIONS(4138), - [anon_sym_U_DQUOTE] = ACTIONS(4138), - [anon_sym_u8_DQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [anon_sym_NULL] = ACTIONS(4142), - [anon_sym_nullptr] = ACTIONS(4142), + [1448] = { + [sym_expression] = STATE(4025), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5068), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4150), - [anon_sym_requires] = ACTIONS(4152), - [sym_this] = ACTIONS(4140), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4154), - [sym_semgrep_named_ellipsis] = ACTIONS(4156), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), }, - [1375] = { - [sym_expression] = STATE(5911), - [sym_expression_not_binary] = STATE(6169), - [sym_conditional_expression] = STATE(6267), - [sym_assignment_expression] = STATE(6267), - [sym_pointer_expression] = STATE(4422), - [sym_unary_expression] = STATE(6267), - [sym_binary_expression] = STATE(6169), - [sym_update_expression] = STATE(6267), - [sym_cast_expression] = STATE(6267), - [sym_sizeof_expression] = STATE(6267), - [sym_alignof_expression] = STATE(6267), - [sym_offsetof_expression] = STATE(6267), - [sym_generic_expression] = STATE(6267), - [sym_subscript_expression] = STATE(4422), - [sym_call_expression] = STATE(4422), - [sym_gnu_asm_expression] = STATE(6267), - [sym_field_expression] = STATE(4422), - [sym_compound_literal_expression] = STATE(6267), - [sym_parenthesized_expression] = STATE(4422), - [sym_char_literal] = STATE(6147), - [sym_concatenated_string] = STATE(6147), - [sym_string_literal] = STATE(4563), - [sym_null] = STATE(6267), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9242), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6267), - [sym_raw_string_literal] = STATE(4563), - [sym_co_await_expression] = STATE(6267), - [sym_new_expression] = STATE(6267), - [sym_delete_expression] = STATE(6267), - [sym_requires_clause] = STATE(6267), - [sym_requires_expression] = STATE(6267), - [sym_lambda_expression] = STATE(6267), - [sym_lambda_capture_specifier] = STATE(7263), - [sym_fold_expression] = STATE(6267), - [sym_parameter_pack_expansion] = STATE(6267), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4422), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4422), - [sym_semgrep_ellipsis] = STATE(6169), - [sym_deep_ellipsis] = STATE(6169), - [sym_identifier] = ACTIONS(4112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5054), - [anon_sym_LPAREN2] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_TILDE] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4122), - [anon_sym_not] = ACTIONS(4114), - [anon_sym_compl] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(5056), - [anon_sym_PLUS_PLUS] = ACTIONS(5056), - [anon_sym_sizeof] = ACTIONS(4124), - [anon_sym___alignof__] = ACTIONS(4126), - [anon_sym___alignof] = ACTIONS(4126), - [anon_sym__alignof] = ACTIONS(4126), - [anon_sym_alignof] = ACTIONS(4126), - [anon_sym__Alignof] = ACTIONS(4126), - [anon_sym_offsetof] = ACTIONS(4128), - [anon_sym__Generic] = ACTIONS(4130), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4136), - [anon_sym_u_SQUOTE] = ACTIONS(4136), - [anon_sym_U_SQUOTE] = ACTIONS(4136), - [anon_sym_u8_SQUOTE] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_L_DQUOTE] = ACTIONS(4138), - [anon_sym_u_DQUOTE] = ACTIONS(4138), - [anon_sym_U_DQUOTE] = ACTIONS(4138), - [anon_sym_u8_DQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [anon_sym_NULL] = ACTIONS(4142), - [anon_sym_nullptr] = ACTIONS(4142), + [1449] = { + [sym_expression] = STATE(4043), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5068), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4150), - [anon_sym_requires] = ACTIONS(4152), - [sym_this] = ACTIONS(4140), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4154), - [sym_semgrep_named_ellipsis] = ACTIONS(4156), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), }, - [1376] = { - [sym_expression] = STATE(5912), - [sym_expression_not_binary] = STATE(6169), - [sym_conditional_expression] = STATE(6267), - [sym_assignment_expression] = STATE(6267), - [sym_pointer_expression] = STATE(4422), - [sym_unary_expression] = STATE(6267), - [sym_binary_expression] = STATE(6169), - [sym_update_expression] = STATE(6267), - [sym_cast_expression] = STATE(6267), - [sym_sizeof_expression] = STATE(6267), - [sym_alignof_expression] = STATE(6267), - [sym_offsetof_expression] = STATE(6267), - [sym_generic_expression] = STATE(6267), - [sym_subscript_expression] = STATE(4422), - [sym_call_expression] = STATE(4422), - [sym_gnu_asm_expression] = STATE(6267), - [sym_field_expression] = STATE(4422), - [sym_compound_literal_expression] = STATE(6267), - [sym_parenthesized_expression] = STATE(4422), - [sym_char_literal] = STATE(6147), - [sym_concatenated_string] = STATE(6147), - [sym_string_literal] = STATE(4563), - [sym_null] = STATE(6267), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9242), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6267), - [sym_raw_string_literal] = STATE(4563), - [sym_co_await_expression] = STATE(6267), - [sym_new_expression] = STATE(6267), - [sym_delete_expression] = STATE(6267), - [sym_requires_clause] = STATE(6267), - [sym_requires_expression] = STATE(6267), - [sym_lambda_expression] = STATE(6267), - [sym_lambda_capture_specifier] = STATE(7263), - [sym_fold_expression] = STATE(6267), - [sym_parameter_pack_expansion] = STATE(6267), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4422), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4422), - [sym_semgrep_ellipsis] = STATE(6169), - [sym_deep_ellipsis] = STATE(6169), - [sym_identifier] = ACTIONS(4112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5054), - [anon_sym_LPAREN2] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_TILDE] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4122), - [anon_sym_not] = ACTIONS(4114), - [anon_sym_compl] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(5056), - [anon_sym_PLUS_PLUS] = ACTIONS(5056), - [anon_sym_sizeof] = ACTIONS(4124), - [anon_sym___alignof__] = ACTIONS(4126), - [anon_sym___alignof] = ACTIONS(4126), - [anon_sym__alignof] = ACTIONS(4126), - [anon_sym_alignof] = ACTIONS(4126), - [anon_sym__Alignof] = ACTIONS(4126), - [anon_sym_offsetof] = ACTIONS(4128), - [anon_sym__Generic] = ACTIONS(4130), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4136), - [anon_sym_u_SQUOTE] = ACTIONS(4136), - [anon_sym_U_SQUOTE] = ACTIONS(4136), - [anon_sym_u8_SQUOTE] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_L_DQUOTE] = ACTIONS(4138), - [anon_sym_u_DQUOTE] = ACTIONS(4138), - [anon_sym_U_DQUOTE] = ACTIONS(4138), - [anon_sym_u8_DQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [anon_sym_NULL] = ACTIONS(4142), - [anon_sym_nullptr] = ACTIONS(4142), + [1450] = { + [sym_expression] = STATE(4044), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5068), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4150), - [anon_sym_requires] = ACTIONS(4152), - [sym_this] = ACTIONS(4140), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4154), - [sym_semgrep_named_ellipsis] = ACTIONS(4156), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), }, - [1377] = { - [sym_expression] = STATE(3895), - [sym_expression_not_binary] = STATE(4358), - [sym_conditional_expression] = STATE(4353), - [sym_assignment_expression] = STATE(4353), - [sym_pointer_expression] = STATE(4360), - [sym_unary_expression] = STATE(4353), - [sym_binary_expression] = STATE(4358), - [sym_update_expression] = STATE(4353), - [sym_cast_expression] = STATE(4353), - [sym_sizeof_expression] = STATE(4353), - [sym_alignof_expression] = STATE(4353), - [sym_offsetof_expression] = STATE(4353), - [sym_generic_expression] = STATE(4353), - [sym_subscript_expression] = STATE(4360), - [sym_call_expression] = STATE(4360), - [sym_gnu_asm_expression] = STATE(4353), - [sym_field_expression] = STATE(4360), - [sym_compound_literal_expression] = STATE(4353), - [sym_parenthesized_expression] = STATE(4360), - [sym_char_literal] = STATE(4023), - [sym_concatenated_string] = STATE(4023), - [sym_string_literal] = STATE(2426), - [sym_null] = STATE(4353), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9636), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4353), - [sym_raw_string_literal] = STATE(2426), - [sym_co_await_expression] = STATE(4353), - [sym_new_expression] = STATE(4353), - [sym_delete_expression] = STATE(4353), - [sym_requires_clause] = STATE(4353), - [sym_requires_expression] = STATE(4353), - [sym_lambda_expression] = STATE(4353), - [sym_lambda_capture_specifier] = STATE(7284), - [sym_fold_expression] = STATE(4353), - [sym_parameter_pack_expansion] = STATE(4353), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4360), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4360), - [sym_semgrep_ellipsis] = STATE(4358), - [sym_deep_ellipsis] = STATE(4358), - [sym_identifier] = ACTIONS(2941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5070), - [anon_sym_LPAREN2] = ACTIONS(5130), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2951), - [anon_sym_not] = ACTIONS(2943), - [anon_sym_compl] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(5072), - [anon_sym_PLUS_PLUS] = ACTIONS(5072), - [anon_sym_sizeof] = ACTIONS(2953), - [anon_sym___alignof__] = ACTIONS(2955), - [anon_sym___alignof] = ACTIONS(2955), - [anon_sym__alignof] = ACTIONS(2955), - [anon_sym_alignof] = ACTIONS(2955), - [anon_sym__Alignof] = ACTIONS(2955), - [anon_sym_offsetof] = ACTIONS(2957), - [anon_sym__Generic] = ACTIONS(2959), - [anon_sym_asm] = ACTIONS(2961), - [anon_sym___asm__] = ACTIONS(2961), - [sym_number_literal] = ACTIONS(2963), - [anon_sym_L_SQUOTE] = ACTIONS(2965), - [anon_sym_u_SQUOTE] = ACTIONS(2965), - [anon_sym_U_SQUOTE] = ACTIONS(2965), - [anon_sym_u8_SQUOTE] = ACTIONS(2965), - [anon_sym_SQUOTE] = ACTIONS(2965), - [anon_sym_L_DQUOTE] = ACTIONS(2967), - [anon_sym_u_DQUOTE] = ACTIONS(2967), - [anon_sym_U_DQUOTE] = ACTIONS(2967), - [anon_sym_u8_DQUOTE] = ACTIONS(2967), - [anon_sym_DQUOTE] = ACTIONS(2967), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2971), - [anon_sym_nullptr] = ACTIONS(2971), + [1451] = { + [sym_expression] = STATE(4047), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5068), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2973), - [anon_sym_R_DQUOTE] = ACTIONS(2975), - [anon_sym_LR_DQUOTE] = ACTIONS(2975), - [anon_sym_uR_DQUOTE] = ACTIONS(2975), - [anon_sym_UR_DQUOTE] = ACTIONS(2975), - [anon_sym_u8R_DQUOTE] = ACTIONS(2975), - [anon_sym_co_await] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2979), - [anon_sym_requires] = ACTIONS(2981), - [sym_this] = ACTIONS(2969), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2983), - [sym_semgrep_named_ellipsis] = ACTIONS(2985), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), }, - [1378] = { - [sym_expression] = STATE(5915), - [sym_expression_not_binary] = STATE(6169), - [sym_conditional_expression] = STATE(6267), - [sym_assignment_expression] = STATE(6267), - [sym_pointer_expression] = STATE(4422), - [sym_unary_expression] = STATE(6267), - [sym_binary_expression] = STATE(6169), - [sym_update_expression] = STATE(6267), - [sym_cast_expression] = STATE(6267), - [sym_sizeof_expression] = STATE(6267), - [sym_alignof_expression] = STATE(6267), - [sym_offsetof_expression] = STATE(6267), - [sym_generic_expression] = STATE(6267), - [sym_subscript_expression] = STATE(4422), - [sym_call_expression] = STATE(4422), - [sym_gnu_asm_expression] = STATE(6267), - [sym_field_expression] = STATE(4422), - [sym_compound_literal_expression] = STATE(6267), - [sym_parenthesized_expression] = STATE(4422), - [sym_char_literal] = STATE(6147), - [sym_concatenated_string] = STATE(6147), - [sym_string_literal] = STATE(4563), - [sym_null] = STATE(6267), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9242), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6267), - [sym_raw_string_literal] = STATE(4563), - [sym_co_await_expression] = STATE(6267), - [sym_new_expression] = STATE(6267), - [sym_delete_expression] = STATE(6267), - [sym_requires_clause] = STATE(6267), - [sym_requires_expression] = STATE(6267), - [sym_lambda_expression] = STATE(6267), - [sym_lambda_capture_specifier] = STATE(7263), - [sym_fold_expression] = STATE(6267), - [sym_parameter_pack_expansion] = STATE(6267), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4422), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4422), - [sym_semgrep_ellipsis] = STATE(6169), - [sym_deep_ellipsis] = STATE(6169), - [sym_identifier] = ACTIONS(4112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5054), - [anon_sym_LPAREN2] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_TILDE] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4122), - [anon_sym_not] = ACTIONS(4114), - [anon_sym_compl] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(5056), - [anon_sym_PLUS_PLUS] = ACTIONS(5056), - [anon_sym_sizeof] = ACTIONS(4124), - [anon_sym___alignof__] = ACTIONS(4126), - [anon_sym___alignof] = ACTIONS(4126), - [anon_sym__alignof] = ACTIONS(4126), - [anon_sym_alignof] = ACTIONS(4126), - [anon_sym__Alignof] = ACTIONS(4126), - [anon_sym_offsetof] = ACTIONS(4128), - [anon_sym__Generic] = ACTIONS(4130), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4136), - [anon_sym_u_SQUOTE] = ACTIONS(4136), - [anon_sym_U_SQUOTE] = ACTIONS(4136), - [anon_sym_u8_SQUOTE] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_L_DQUOTE] = ACTIONS(4138), - [anon_sym_u_DQUOTE] = ACTIONS(4138), - [anon_sym_U_DQUOTE] = ACTIONS(4138), - [anon_sym_u8_DQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [anon_sym_NULL] = ACTIONS(4142), - [anon_sym_nullptr] = ACTIONS(4142), + [1452] = { + [sym_expression] = STATE(4048), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5068), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4150), - [anon_sym_requires] = ACTIONS(4152), - [sym_this] = ACTIONS(4140), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4154), - [sym_semgrep_named_ellipsis] = ACTIONS(4156), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), }, - [1379] = { - [sym_expression] = STATE(3287), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), + [1453] = { + [sym_expression] = STATE(4051), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5068), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), }, - [1380] = { - [sym_expression] = STATE(5232), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1454] = { + [sym_expression] = STATE(4867), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(5338), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -240878,7 +237904,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -240892,68 +237918,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1381] = { - [sym_expression] = STATE(5501), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4036), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4036), - [sym_call_expression] = STATE(4036), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4036), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4036), - [sym_char_literal] = STATE(5772), - [sym_concatenated_string] = STATE(5772), - [sym_string_literal] = STATE(4262), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(4262), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4036), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4036), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5038), - [anon_sym_BANG] = ACTIONS(4035), - [anon_sym_TILDE] = ACTIONS(4035), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(4037), - [anon_sym_LBRACK] = ACTIONS(5160), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4033), - [anon_sym_compl] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(5044), - [anon_sym_PLUS_PLUS] = ACTIONS(5044), - [anon_sym_sizeof] = ACTIONS(4039), + [1455] = { + [sym_expression] = STATE(4742), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3204), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3204), + [sym_call_expression] = STATE(3204), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3204), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3204), + [sym_char_literal] = STATE(4797), + [sym_concatenated_string] = STATE(4797), + [sym_string_literal] = STATE(3234), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3234), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6827), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(3204), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3204), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5054), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(3897), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4936), + [anon_sym_PLUS_PLUS] = ACTIONS(4936), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -240963,99 +237989,1119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(4041), - [anon_sym_L_SQUOTE] = ACTIONS(4043), - [anon_sym_u_SQUOTE] = ACTIONS(4043), - [anon_sym_U_SQUOTE] = ACTIONS(4043), - [anon_sym_u8_SQUOTE] = ACTIONS(4043), - [anon_sym_SQUOTE] = ACTIONS(4043), - [anon_sym_L_DQUOTE] = ACTIONS(4045), - [anon_sym_u_DQUOTE] = ACTIONS(4045), - [anon_sym_U_DQUOTE] = ACTIONS(4045), - [anon_sym_u8_DQUOTE] = ACTIONS(4045), - [anon_sym_DQUOTE] = ACTIONS(4045), + [sym_number_literal] = ACTIONS(3903), + [anon_sym_L_SQUOTE] = ACTIONS(3905), + [anon_sym_u_SQUOTE] = ACTIONS(3905), + [anon_sym_U_SQUOTE] = ACTIONS(3905), + [anon_sym_u8_SQUOTE] = ACTIONS(3905), + [anon_sym_SQUOTE] = ACTIONS(3905), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4047), - [anon_sym_R_DQUOTE] = ACTIONS(4049), - [anon_sym_LR_DQUOTE] = ACTIONS(4049), - [anon_sym_uR_DQUOTE] = ACTIONS(4049), - [anon_sym_UR_DQUOTE] = ACTIONS(4049), - [anon_sym_u8R_DQUOTE] = ACTIONS(4049), - [anon_sym_co_await] = ACTIONS(4051), - [anon_sym_new] = ACTIONS(4053), - [anon_sym_requires] = ACTIONS(161), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3909), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + [anon_sym_co_await] = ACTIONS(3913), + [anon_sym_new] = ACTIONS(3915), + [anon_sym_requires] = ACTIONS(3917), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1382] = { - [sym_expression] = STATE(5178), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4036), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4036), - [sym_call_expression] = STATE(4036), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4036), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4036), - [sym_char_literal] = STATE(5772), - [sym_concatenated_string] = STATE(5772), - [sym_string_literal] = STATE(4262), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(4262), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4036), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4036), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5038), - [anon_sym_BANG] = ACTIONS(4035), - [anon_sym_TILDE] = ACTIONS(4035), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(4037), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4033), - [anon_sym_compl] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(5044), - [anon_sym_PLUS_PLUS] = ACTIONS(5044), - [anon_sym_sizeof] = ACTIONS(4039), + [1456] = { + [sym_expression] = STATE(5247), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8965), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [sym_identifier] = ACTIONS(4236), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4240), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), + }, + [1457] = { + [sym_expression] = STATE(5304), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8965), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [sym_identifier] = ACTIONS(4236), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4240), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), + }, + [1458] = { + [sym_expression] = STATE(5190), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8965), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [sym_identifier] = ACTIONS(4236), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4240), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), + }, + [1459] = { + [sym_expression] = STATE(5194), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8965), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [sym_identifier] = ACTIONS(4236), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4240), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), + }, + [1460] = { + [sym_expression] = STATE(5231), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8965), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [sym_identifier] = ACTIONS(4236), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4240), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), + }, + [1461] = { + [sym_expression] = STATE(5232), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8965), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [sym_identifier] = ACTIONS(4236), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4240), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), + }, + [1462] = { + [sym_expression] = STATE(5278), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8965), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [sym_identifier] = ACTIONS(4236), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4240), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), + }, + [1463] = { + [sym_expression] = STATE(5184), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8965), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [sym_identifier] = ACTIONS(4236), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4240), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), + }, + [1464] = { + [sym_expression] = STATE(5362), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8965), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [sym_identifier] = ACTIONS(4236), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4240), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), + }, + [1465] = { + [sym_expression] = STATE(5288), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8965), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [sym_identifier] = ACTIONS(4236), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4240), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), + }, + [1466] = { + [sym_expression] = STATE(4713), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3204), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3204), + [sym_call_expression] = STATE(3204), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3204), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3204), + [sym_char_literal] = STATE(4797), + [sym_concatenated_string] = STATE(4797), + [sym_string_literal] = STATE(3234), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3234), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6827), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(3204), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3204), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5054), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(3897), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4936), + [anon_sym_PLUS_PLUS] = ACTIONS(4936), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -241065,99 +239111,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(4041), - [anon_sym_L_SQUOTE] = ACTIONS(4043), - [anon_sym_u_SQUOTE] = ACTIONS(4043), - [anon_sym_U_SQUOTE] = ACTIONS(4043), - [anon_sym_u8_SQUOTE] = ACTIONS(4043), - [anon_sym_SQUOTE] = ACTIONS(4043), - [anon_sym_L_DQUOTE] = ACTIONS(4045), - [anon_sym_u_DQUOTE] = ACTIONS(4045), - [anon_sym_U_DQUOTE] = ACTIONS(4045), - [anon_sym_u8_DQUOTE] = ACTIONS(4045), - [anon_sym_DQUOTE] = ACTIONS(4045), + [sym_number_literal] = ACTIONS(3903), + [anon_sym_L_SQUOTE] = ACTIONS(3905), + [anon_sym_u_SQUOTE] = ACTIONS(3905), + [anon_sym_U_SQUOTE] = ACTIONS(3905), + [anon_sym_u8_SQUOTE] = ACTIONS(3905), + [anon_sym_SQUOTE] = ACTIONS(3905), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4047), - [anon_sym_R_DQUOTE] = ACTIONS(4049), - [anon_sym_LR_DQUOTE] = ACTIONS(4049), - [anon_sym_uR_DQUOTE] = ACTIONS(4049), - [anon_sym_UR_DQUOTE] = ACTIONS(4049), - [anon_sym_u8R_DQUOTE] = ACTIONS(4049), - [anon_sym_co_await] = ACTIONS(4051), - [anon_sym_new] = ACTIONS(4053), - [anon_sym_requires] = ACTIONS(161), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3909), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + [anon_sym_co_await] = ACTIONS(3913), + [anon_sym_new] = ACTIONS(3915), + [anon_sym_requires] = ACTIONS(3917), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1383] = { - [sym_expression] = STATE(5500), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4036), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4036), - [sym_call_expression] = STATE(4036), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4036), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4036), - [sym_char_literal] = STATE(5772), - [sym_concatenated_string] = STATE(5772), - [sym_string_literal] = STATE(4262), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(4262), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4036), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4036), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5038), - [anon_sym_BANG] = ACTIONS(4035), - [anon_sym_TILDE] = ACTIONS(4035), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(4037), - [anon_sym_LBRACK] = ACTIONS(5340), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4033), - [anon_sym_compl] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(5044), - [anon_sym_PLUS_PLUS] = ACTIONS(5044), - [anon_sym_sizeof] = ACTIONS(4039), + [1467] = { + [sym_expression] = STATE(4630), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3204), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3204), + [sym_call_expression] = STATE(3204), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3204), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3204), + [sym_char_literal] = STATE(4797), + [sym_concatenated_string] = STATE(4797), + [sym_string_literal] = STATE(3234), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3234), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6827), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(3204), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3204), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5054), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(3897), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4936), + [anon_sym_PLUS_PLUS] = ACTIONS(4936), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -241167,99 +239213,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(4041), - [anon_sym_L_SQUOTE] = ACTIONS(4043), - [anon_sym_u_SQUOTE] = ACTIONS(4043), - [anon_sym_U_SQUOTE] = ACTIONS(4043), - [anon_sym_u8_SQUOTE] = ACTIONS(4043), - [anon_sym_SQUOTE] = ACTIONS(4043), - [anon_sym_L_DQUOTE] = ACTIONS(4045), - [anon_sym_u_DQUOTE] = ACTIONS(4045), - [anon_sym_U_DQUOTE] = ACTIONS(4045), - [anon_sym_u8_DQUOTE] = ACTIONS(4045), - [anon_sym_DQUOTE] = ACTIONS(4045), + [sym_number_literal] = ACTIONS(3903), + [anon_sym_L_SQUOTE] = ACTIONS(3905), + [anon_sym_u_SQUOTE] = ACTIONS(3905), + [anon_sym_U_SQUOTE] = ACTIONS(3905), + [anon_sym_u8_SQUOTE] = ACTIONS(3905), + [anon_sym_SQUOTE] = ACTIONS(3905), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4047), - [anon_sym_R_DQUOTE] = ACTIONS(4049), - [anon_sym_LR_DQUOTE] = ACTIONS(4049), - [anon_sym_uR_DQUOTE] = ACTIONS(4049), - [anon_sym_UR_DQUOTE] = ACTIONS(4049), - [anon_sym_u8R_DQUOTE] = ACTIONS(4049), - [anon_sym_co_await] = ACTIONS(4051), - [anon_sym_new] = ACTIONS(4053), - [anon_sym_requires] = ACTIONS(161), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3909), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + [anon_sym_co_await] = ACTIONS(3913), + [anon_sym_new] = ACTIONS(3915), + [anon_sym_requires] = ACTIONS(3917), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1384] = { - [sym_expression] = STATE(5516), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4036), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4036), - [sym_call_expression] = STATE(4036), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4036), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4036), - [sym_char_literal] = STATE(5772), - [sym_concatenated_string] = STATE(5772), - [sym_string_literal] = STATE(4262), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(4262), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4036), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4036), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5038), - [anon_sym_BANG] = ACTIONS(4035), - [anon_sym_TILDE] = ACTIONS(4035), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(4037), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4033), - [anon_sym_compl] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(5044), - [anon_sym_PLUS_PLUS] = ACTIONS(5044), - [anon_sym_sizeof] = ACTIONS(4039), + [1468] = { + [sym_expression] = STATE(4706), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3204), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3204), + [sym_call_expression] = STATE(3204), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3204), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3204), + [sym_char_literal] = STATE(4797), + [sym_concatenated_string] = STATE(4797), + [sym_string_literal] = STATE(3234), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3234), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6827), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(3204), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3204), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5054), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(3897), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4936), + [anon_sym_PLUS_PLUS] = ACTIONS(4936), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -241269,99 +239315,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(4041), - [anon_sym_L_SQUOTE] = ACTIONS(4043), - [anon_sym_u_SQUOTE] = ACTIONS(4043), - [anon_sym_U_SQUOTE] = ACTIONS(4043), - [anon_sym_u8_SQUOTE] = ACTIONS(4043), - [anon_sym_SQUOTE] = ACTIONS(4043), - [anon_sym_L_DQUOTE] = ACTIONS(4045), - [anon_sym_u_DQUOTE] = ACTIONS(4045), - [anon_sym_U_DQUOTE] = ACTIONS(4045), - [anon_sym_u8_DQUOTE] = ACTIONS(4045), - [anon_sym_DQUOTE] = ACTIONS(4045), + [sym_number_literal] = ACTIONS(3903), + [anon_sym_L_SQUOTE] = ACTIONS(3905), + [anon_sym_u_SQUOTE] = ACTIONS(3905), + [anon_sym_U_SQUOTE] = ACTIONS(3905), + [anon_sym_u8_SQUOTE] = ACTIONS(3905), + [anon_sym_SQUOTE] = ACTIONS(3905), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4047), - [anon_sym_R_DQUOTE] = ACTIONS(4049), - [anon_sym_LR_DQUOTE] = ACTIONS(4049), - [anon_sym_uR_DQUOTE] = ACTIONS(4049), - [anon_sym_UR_DQUOTE] = ACTIONS(4049), - [anon_sym_u8R_DQUOTE] = ACTIONS(4049), - [anon_sym_co_await] = ACTIONS(4051), - [anon_sym_new] = ACTIONS(4053), - [anon_sym_requires] = ACTIONS(161), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3909), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + [anon_sym_co_await] = ACTIONS(3913), + [anon_sym_new] = ACTIONS(3915), + [anon_sym_requires] = ACTIONS(3917), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1385] = { - [sym_expression] = STATE(5525), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4036), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4036), - [sym_call_expression] = STATE(4036), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4036), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4036), - [sym_char_literal] = STATE(5772), - [sym_concatenated_string] = STATE(5772), - [sym_string_literal] = STATE(4262), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(4262), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4036), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4036), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5038), - [anon_sym_BANG] = ACTIONS(4035), - [anon_sym_TILDE] = ACTIONS(4035), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(4037), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4033), - [anon_sym_compl] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(5044), - [anon_sym_PLUS_PLUS] = ACTIONS(5044), - [anon_sym_sizeof] = ACTIONS(4039), + [1469] = { + [sym_expression] = STATE(4733), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3204), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3204), + [sym_call_expression] = STATE(3204), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3204), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3204), + [sym_char_literal] = STATE(4797), + [sym_concatenated_string] = STATE(4797), + [sym_string_literal] = STATE(3234), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3234), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6827), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(3204), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3204), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5054), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(3897), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4936), + [anon_sym_PLUS_PLUS] = ACTIONS(4936), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -241371,99 +239417,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(4041), - [anon_sym_L_SQUOTE] = ACTIONS(4043), - [anon_sym_u_SQUOTE] = ACTIONS(4043), - [anon_sym_U_SQUOTE] = ACTIONS(4043), - [anon_sym_u8_SQUOTE] = ACTIONS(4043), - [anon_sym_SQUOTE] = ACTIONS(4043), - [anon_sym_L_DQUOTE] = ACTIONS(4045), - [anon_sym_u_DQUOTE] = ACTIONS(4045), - [anon_sym_U_DQUOTE] = ACTIONS(4045), - [anon_sym_u8_DQUOTE] = ACTIONS(4045), - [anon_sym_DQUOTE] = ACTIONS(4045), + [sym_number_literal] = ACTIONS(3903), + [anon_sym_L_SQUOTE] = ACTIONS(3905), + [anon_sym_u_SQUOTE] = ACTIONS(3905), + [anon_sym_U_SQUOTE] = ACTIONS(3905), + [anon_sym_u8_SQUOTE] = ACTIONS(3905), + [anon_sym_SQUOTE] = ACTIONS(3905), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4047), - [anon_sym_R_DQUOTE] = ACTIONS(4049), - [anon_sym_LR_DQUOTE] = ACTIONS(4049), - [anon_sym_uR_DQUOTE] = ACTIONS(4049), - [anon_sym_UR_DQUOTE] = ACTIONS(4049), - [anon_sym_u8R_DQUOTE] = ACTIONS(4049), - [anon_sym_co_await] = ACTIONS(4051), - [anon_sym_new] = ACTIONS(4053), - [anon_sym_requires] = ACTIONS(161), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3909), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + [anon_sym_co_await] = ACTIONS(3913), + [anon_sym_new] = ACTIONS(3915), + [anon_sym_requires] = ACTIONS(3917), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1386] = { - [sym_expression] = STATE(6093), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1470] = { + [sym_expression] = STATE(4760), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3204), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3204), + [sym_call_expression] = STATE(3204), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3204), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3204), + [sym_char_literal] = STATE(4797), + [sym_concatenated_string] = STATE(4797), + [sym_string_literal] = STATE(3234), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3234), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6827), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(3204), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3204), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5054), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(3897), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4936), + [anon_sym_PLUS_PLUS] = ACTIONS(4936), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -241473,99 +239519,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), + [sym_number_literal] = ACTIONS(3903), + [anon_sym_L_SQUOTE] = ACTIONS(3905), + [anon_sym_u_SQUOTE] = ACTIONS(3905), + [anon_sym_U_SQUOTE] = ACTIONS(3905), + [anon_sym_u8_SQUOTE] = ACTIONS(3905), + [anon_sym_SQUOTE] = ACTIONS(3905), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3909), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + [anon_sym_co_await] = ACTIONS(3913), + [anon_sym_new] = ACTIONS(3915), + [anon_sym_requires] = ACTIONS(3917), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1387] = { - [sym_expression] = STATE(5578), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1471] = { + [sym_expression] = STATE(4743), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3204), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3204), + [sym_call_expression] = STATE(3204), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3204), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3204), + [sym_char_literal] = STATE(4797), + [sym_concatenated_string] = STATE(4797), + [sym_string_literal] = STATE(3234), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3234), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6827), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(3204), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3204), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5054), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(3897), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4936), + [anon_sym_PLUS_PLUS] = ACTIONS(4936), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -241575,99 +239621,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), + [sym_number_literal] = ACTIONS(3903), + [anon_sym_L_SQUOTE] = ACTIONS(3905), + [anon_sym_u_SQUOTE] = ACTIONS(3905), + [anon_sym_U_SQUOTE] = ACTIONS(3905), + [anon_sym_u8_SQUOTE] = ACTIONS(3905), + [anon_sym_SQUOTE] = ACTIONS(3905), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3909), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + [anon_sym_co_await] = ACTIONS(3913), + [anon_sym_new] = ACTIONS(3915), + [anon_sym_requires] = ACTIONS(3917), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1388] = { - [sym_expression] = STATE(5178), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1472] = { + [sym_expression] = STATE(4749), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3204), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3204), + [sym_call_expression] = STATE(3204), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3204), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3204), + [sym_char_literal] = STATE(4797), + [sym_concatenated_string] = STATE(4797), + [sym_string_literal] = STATE(3234), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3234), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6827), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(3204), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3204), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5054), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(3897), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4936), + [anon_sym_PLUS_PLUS] = ACTIONS(4936), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -241677,99 +239723,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), + [sym_number_literal] = ACTIONS(3903), + [anon_sym_L_SQUOTE] = ACTIONS(3905), + [anon_sym_u_SQUOTE] = ACTIONS(3905), + [anon_sym_U_SQUOTE] = ACTIONS(3905), + [anon_sym_u8_SQUOTE] = ACTIONS(3905), + [anon_sym_SQUOTE] = ACTIONS(3905), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3909), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + [anon_sym_co_await] = ACTIONS(3913), + [anon_sym_new] = ACTIONS(3915), + [anon_sym_requires] = ACTIONS(3917), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1389] = { - [sym_expression] = STATE(5532), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4036), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4036), - [sym_call_expression] = STATE(4036), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4036), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4036), - [sym_char_literal] = STATE(5772), - [sym_concatenated_string] = STATE(5772), - [sym_string_literal] = STATE(4262), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(4262), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4036), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4036), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5038), - [anon_sym_BANG] = ACTIONS(4035), - [anon_sym_TILDE] = ACTIONS(4035), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(4037), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4033), - [anon_sym_compl] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(5044), - [anon_sym_PLUS_PLUS] = ACTIONS(5044), - [anon_sym_sizeof] = ACTIONS(4039), + [1473] = { + [sym_expression] = STATE(4754), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3204), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3204), + [sym_call_expression] = STATE(3204), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3204), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3204), + [sym_char_literal] = STATE(4797), + [sym_concatenated_string] = STATE(4797), + [sym_string_literal] = STATE(3234), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3234), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6827), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(3204), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3204), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5054), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(3897), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4936), + [anon_sym_PLUS_PLUS] = ACTIONS(4936), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -241779,2037 +239825,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(4041), - [anon_sym_L_SQUOTE] = ACTIONS(4043), - [anon_sym_u_SQUOTE] = ACTIONS(4043), - [anon_sym_U_SQUOTE] = ACTIONS(4043), - [anon_sym_u8_SQUOTE] = ACTIONS(4043), - [anon_sym_SQUOTE] = ACTIONS(4043), - [anon_sym_L_DQUOTE] = ACTIONS(4045), - [anon_sym_u_DQUOTE] = ACTIONS(4045), - [anon_sym_U_DQUOTE] = ACTIONS(4045), - [anon_sym_u8_DQUOTE] = ACTIONS(4045), - [anon_sym_DQUOTE] = ACTIONS(4045), + [sym_number_literal] = ACTIONS(3903), + [anon_sym_L_SQUOTE] = ACTIONS(3905), + [anon_sym_u_SQUOTE] = ACTIONS(3905), + [anon_sym_U_SQUOTE] = ACTIONS(3905), + [anon_sym_u8_SQUOTE] = ACTIONS(3905), + [anon_sym_SQUOTE] = ACTIONS(3905), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4047), - [anon_sym_R_DQUOTE] = ACTIONS(4049), - [anon_sym_LR_DQUOTE] = ACTIONS(4049), - [anon_sym_uR_DQUOTE] = ACTIONS(4049), - [anon_sym_UR_DQUOTE] = ACTIONS(4049), - [anon_sym_u8R_DQUOTE] = ACTIONS(4049), - [anon_sym_co_await] = ACTIONS(4051), - [anon_sym_new] = ACTIONS(4053), - [anon_sym_requires] = ACTIONS(161), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3909), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + [anon_sym_co_await] = ACTIONS(3913), + [anon_sym_new] = ACTIONS(3915), + [anon_sym_requires] = ACTIONS(3917), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1390] = { - [sym_expression] = STATE(5496), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), - }, - [1391] = { - [sym_expression] = STATE(5889), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), - }, - [1392] = { - [sym_expression] = STATE(5137), - [sym_expression_not_binary] = STATE(5370), - [sym_conditional_expression] = STATE(5364), - [sym_assignment_expression] = STATE(5364), - [sym_pointer_expression] = STATE(3376), - [sym_unary_expression] = STATE(5364), - [sym_binary_expression] = STATE(5370), - [sym_update_expression] = STATE(5364), - [sym_cast_expression] = STATE(5364), - [sym_sizeof_expression] = STATE(5364), - [sym_alignof_expression] = STATE(5364), - [sym_offsetof_expression] = STATE(5364), - [sym_generic_expression] = STATE(5364), - [sym_subscript_expression] = STATE(3376), - [sym_call_expression] = STATE(3376), - [sym_gnu_asm_expression] = STATE(5364), - [sym_field_expression] = STATE(3376), - [sym_compound_literal_expression] = STATE(5364), - [sym_parenthesized_expression] = STATE(3376), - [sym_char_literal] = STATE(5241), - [sym_concatenated_string] = STATE(5241), - [sym_string_literal] = STATE(3576), - [sym_null] = STATE(5364), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9412), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5364), - [sym_raw_string_literal] = STATE(3576), - [sym_co_await_expression] = STATE(5364), - [sym_new_expression] = STATE(5364), - [sym_delete_expression] = STATE(5364), - [sym_requires_clause] = STATE(5364), - [sym_requires_expression] = STATE(5364), - [sym_lambda_expression] = STATE(5364), - [sym_lambda_capture_specifier] = STATE(7332), - [sym_fold_expression] = STATE(5364), - [sym_parameter_pack_expansion] = STATE(5364), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3376), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3376), - [sym_semgrep_ellipsis] = STATE(5370), - [sym_deep_ellipsis] = STATE(5370), - [sym_identifier] = ACTIONS(4984), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), - [anon_sym_LPAREN2] = ACTIONS(5124), - [anon_sym_BANG] = ACTIONS(3774), - [anon_sym_TILDE] = ACTIONS(3774), - [anon_sym_DASH] = ACTIONS(3772), - [anon_sym_PLUS] = ACTIONS(3772), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(3776), - [anon_sym_LBRACK] = ACTIONS(5342), - [sym_primitive_type] = ACTIONS(3780), - [anon_sym_not] = ACTIONS(3772), - [anon_sym_compl] = ACTIONS(3772), - [anon_sym_DASH_DASH] = ACTIONS(4988), - [anon_sym_PLUS_PLUS] = ACTIONS(4988), - [anon_sym_sizeof] = ACTIONS(3782), - [anon_sym___alignof__] = ACTIONS(3784), - [anon_sym___alignof] = ACTIONS(3784), - [anon_sym__alignof] = ACTIONS(3784), - [anon_sym_alignof] = ACTIONS(3784), - [anon_sym__Alignof] = ACTIONS(3784), - [anon_sym_offsetof] = ACTIONS(3786), - [anon_sym__Generic] = ACTIONS(3788), - [anon_sym_asm] = ACTIONS(3790), - [anon_sym___asm__] = ACTIONS(3790), - [sym_number_literal] = ACTIONS(3792), - [anon_sym_L_SQUOTE] = ACTIONS(3794), - [anon_sym_u_SQUOTE] = ACTIONS(3794), - [anon_sym_U_SQUOTE] = ACTIONS(3794), - [anon_sym_u8_SQUOTE] = ACTIONS(3794), - [anon_sym_SQUOTE] = ACTIONS(3794), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_true] = ACTIONS(3798), - [sym_false] = ACTIONS(3798), - [anon_sym_NULL] = ACTIONS(3800), - [anon_sym_nullptr] = ACTIONS(3800), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3802), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - [anon_sym_co_await] = ACTIONS(3806), - [anon_sym_new] = ACTIONS(3808), - [anon_sym_requires] = ACTIONS(3810), - [sym_this] = ACTIONS(3798), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3812), - [sym_semgrep_named_ellipsis] = ACTIONS(3814), - }, - [1393] = { - [sym_expression] = STATE(5148), - [sym_expression_not_binary] = STATE(5370), - [sym_conditional_expression] = STATE(5364), - [sym_assignment_expression] = STATE(5364), - [sym_pointer_expression] = STATE(3376), - [sym_unary_expression] = STATE(5364), - [sym_binary_expression] = STATE(5370), - [sym_update_expression] = STATE(5364), - [sym_cast_expression] = STATE(5364), - [sym_sizeof_expression] = STATE(5364), - [sym_alignof_expression] = STATE(5364), - [sym_offsetof_expression] = STATE(5364), - [sym_generic_expression] = STATE(5364), - [sym_subscript_expression] = STATE(3376), - [sym_call_expression] = STATE(3376), - [sym_gnu_asm_expression] = STATE(5364), - [sym_field_expression] = STATE(3376), - [sym_compound_literal_expression] = STATE(5364), - [sym_parenthesized_expression] = STATE(3376), - [sym_char_literal] = STATE(5241), - [sym_concatenated_string] = STATE(5241), - [sym_string_literal] = STATE(3576), - [sym_null] = STATE(5364), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9412), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5364), - [sym_raw_string_literal] = STATE(3576), - [sym_co_await_expression] = STATE(5364), - [sym_new_expression] = STATE(5364), - [sym_delete_expression] = STATE(5364), - [sym_requires_clause] = STATE(5364), - [sym_requires_expression] = STATE(5364), - [sym_lambda_expression] = STATE(5364), - [sym_lambda_capture_specifier] = STATE(7332), - [sym_fold_expression] = STATE(5364), - [sym_parameter_pack_expansion] = STATE(5364), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3376), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3376), - [sym_semgrep_ellipsis] = STATE(5370), - [sym_deep_ellipsis] = STATE(5370), - [sym_identifier] = ACTIONS(4984), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), - [anon_sym_LPAREN2] = ACTIONS(5124), - [anon_sym_BANG] = ACTIONS(3774), - [anon_sym_TILDE] = ACTIONS(3774), - [anon_sym_DASH] = ACTIONS(3772), - [anon_sym_PLUS] = ACTIONS(3772), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(3776), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3780), - [anon_sym_not] = ACTIONS(3772), - [anon_sym_compl] = ACTIONS(3772), - [anon_sym_DASH_DASH] = ACTIONS(4988), - [anon_sym_PLUS_PLUS] = ACTIONS(4988), - [anon_sym_sizeof] = ACTIONS(3782), - [anon_sym___alignof__] = ACTIONS(3784), - [anon_sym___alignof] = ACTIONS(3784), - [anon_sym__alignof] = ACTIONS(3784), - [anon_sym_alignof] = ACTIONS(3784), - [anon_sym__Alignof] = ACTIONS(3784), - [anon_sym_offsetof] = ACTIONS(3786), - [anon_sym__Generic] = ACTIONS(3788), - [anon_sym_asm] = ACTIONS(3790), - [anon_sym___asm__] = ACTIONS(3790), - [sym_number_literal] = ACTIONS(3792), - [anon_sym_L_SQUOTE] = ACTIONS(3794), - [anon_sym_u_SQUOTE] = ACTIONS(3794), - [anon_sym_U_SQUOTE] = ACTIONS(3794), - [anon_sym_u8_SQUOTE] = ACTIONS(3794), - [anon_sym_SQUOTE] = ACTIONS(3794), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_true] = ACTIONS(3798), - [sym_false] = ACTIONS(3798), - [anon_sym_NULL] = ACTIONS(3800), - [anon_sym_nullptr] = ACTIONS(3800), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3802), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - [anon_sym_co_await] = ACTIONS(3806), - [anon_sym_new] = ACTIONS(3808), - [anon_sym_requires] = ACTIONS(3810), - [sym_this] = ACTIONS(3798), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3812), - [sym_semgrep_named_ellipsis] = ACTIONS(3814), - }, - [1394] = { - [sym_expression] = STATE(5100), - [sym_expression_not_binary] = STATE(5370), - [sym_conditional_expression] = STATE(5364), - [sym_assignment_expression] = STATE(5364), - [sym_pointer_expression] = STATE(3376), - [sym_unary_expression] = STATE(5364), - [sym_binary_expression] = STATE(5370), - [sym_update_expression] = STATE(5364), - [sym_cast_expression] = STATE(5364), - [sym_sizeof_expression] = STATE(5364), - [sym_alignof_expression] = STATE(5364), - [sym_offsetof_expression] = STATE(5364), - [sym_generic_expression] = STATE(5364), - [sym_subscript_expression] = STATE(3376), - [sym_call_expression] = STATE(3376), - [sym_gnu_asm_expression] = STATE(5364), - [sym_field_expression] = STATE(3376), - [sym_compound_literal_expression] = STATE(5364), - [sym_parenthesized_expression] = STATE(3376), - [sym_char_literal] = STATE(5241), - [sym_concatenated_string] = STATE(5241), - [sym_string_literal] = STATE(3576), - [sym_null] = STATE(5364), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9412), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5364), - [sym_raw_string_literal] = STATE(3576), - [sym_co_await_expression] = STATE(5364), - [sym_new_expression] = STATE(5364), - [sym_delete_expression] = STATE(5364), - [sym_requires_clause] = STATE(5364), - [sym_requires_expression] = STATE(5364), - [sym_lambda_expression] = STATE(5364), - [sym_lambda_capture_specifier] = STATE(7332), - [sym_fold_expression] = STATE(5364), - [sym_parameter_pack_expansion] = STATE(5364), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3376), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3376), - [sym_semgrep_ellipsis] = STATE(5370), - [sym_deep_ellipsis] = STATE(5370), - [sym_identifier] = ACTIONS(4984), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), - [anon_sym_LPAREN2] = ACTIONS(5124), - [anon_sym_BANG] = ACTIONS(3774), - [anon_sym_TILDE] = ACTIONS(3774), - [anon_sym_DASH] = ACTIONS(3772), - [anon_sym_PLUS] = ACTIONS(3772), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(3776), - [anon_sym_LBRACK] = ACTIONS(5344), - [sym_primitive_type] = ACTIONS(3780), - [anon_sym_not] = ACTIONS(3772), - [anon_sym_compl] = ACTIONS(3772), - [anon_sym_DASH_DASH] = ACTIONS(4988), - [anon_sym_PLUS_PLUS] = ACTIONS(4988), - [anon_sym_sizeof] = ACTIONS(3782), - [anon_sym___alignof__] = ACTIONS(3784), - [anon_sym___alignof] = ACTIONS(3784), - [anon_sym__alignof] = ACTIONS(3784), - [anon_sym_alignof] = ACTIONS(3784), - [anon_sym__Alignof] = ACTIONS(3784), - [anon_sym_offsetof] = ACTIONS(3786), - [anon_sym__Generic] = ACTIONS(3788), - [anon_sym_asm] = ACTIONS(3790), - [anon_sym___asm__] = ACTIONS(3790), - [sym_number_literal] = ACTIONS(3792), - [anon_sym_L_SQUOTE] = ACTIONS(3794), - [anon_sym_u_SQUOTE] = ACTIONS(3794), - [anon_sym_U_SQUOTE] = ACTIONS(3794), - [anon_sym_u8_SQUOTE] = ACTIONS(3794), - [anon_sym_SQUOTE] = ACTIONS(3794), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_true] = ACTIONS(3798), - [sym_false] = ACTIONS(3798), - [anon_sym_NULL] = ACTIONS(3800), - [anon_sym_nullptr] = ACTIONS(3800), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3802), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - [anon_sym_co_await] = ACTIONS(3806), - [anon_sym_new] = ACTIONS(3808), - [anon_sym_requires] = ACTIONS(3810), - [sym_this] = ACTIONS(3798), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3812), - [sym_semgrep_named_ellipsis] = ACTIONS(3814), - }, - [1395] = { - [sym_expression] = STATE(5130), - [sym_expression_not_binary] = STATE(5370), - [sym_conditional_expression] = STATE(5364), - [sym_assignment_expression] = STATE(5364), - [sym_pointer_expression] = STATE(3376), - [sym_unary_expression] = STATE(5364), - [sym_binary_expression] = STATE(5370), - [sym_update_expression] = STATE(5364), - [sym_cast_expression] = STATE(5364), - [sym_sizeof_expression] = STATE(5364), - [sym_alignof_expression] = STATE(5364), - [sym_offsetof_expression] = STATE(5364), - [sym_generic_expression] = STATE(5364), - [sym_subscript_expression] = STATE(3376), - [sym_call_expression] = STATE(3376), - [sym_gnu_asm_expression] = STATE(5364), - [sym_field_expression] = STATE(3376), - [sym_compound_literal_expression] = STATE(5364), - [sym_parenthesized_expression] = STATE(3376), - [sym_char_literal] = STATE(5241), - [sym_concatenated_string] = STATE(5241), - [sym_string_literal] = STATE(3576), - [sym_null] = STATE(5364), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9412), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5364), - [sym_raw_string_literal] = STATE(3576), - [sym_co_await_expression] = STATE(5364), - [sym_new_expression] = STATE(5364), - [sym_delete_expression] = STATE(5364), - [sym_requires_clause] = STATE(5364), - [sym_requires_expression] = STATE(5364), - [sym_lambda_expression] = STATE(5364), - [sym_lambda_capture_specifier] = STATE(7332), - [sym_fold_expression] = STATE(5364), - [sym_parameter_pack_expansion] = STATE(5364), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3376), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3376), - [sym_semgrep_ellipsis] = STATE(5370), - [sym_deep_ellipsis] = STATE(5370), - [sym_identifier] = ACTIONS(4984), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), - [anon_sym_LPAREN2] = ACTIONS(5124), - [anon_sym_BANG] = ACTIONS(3774), - [anon_sym_TILDE] = ACTIONS(3774), - [anon_sym_DASH] = ACTIONS(3772), - [anon_sym_PLUS] = ACTIONS(3772), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(3776), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3780), - [anon_sym_not] = ACTIONS(3772), - [anon_sym_compl] = ACTIONS(3772), - [anon_sym_DASH_DASH] = ACTIONS(4988), - [anon_sym_PLUS_PLUS] = ACTIONS(4988), - [anon_sym_sizeof] = ACTIONS(3782), - [anon_sym___alignof__] = ACTIONS(3784), - [anon_sym___alignof] = ACTIONS(3784), - [anon_sym__alignof] = ACTIONS(3784), - [anon_sym_alignof] = ACTIONS(3784), - [anon_sym__Alignof] = ACTIONS(3784), - [anon_sym_offsetof] = ACTIONS(3786), - [anon_sym__Generic] = ACTIONS(3788), - [anon_sym_asm] = ACTIONS(3790), - [anon_sym___asm__] = ACTIONS(3790), - [sym_number_literal] = ACTIONS(3792), - [anon_sym_L_SQUOTE] = ACTIONS(3794), - [anon_sym_u_SQUOTE] = ACTIONS(3794), - [anon_sym_U_SQUOTE] = ACTIONS(3794), - [anon_sym_u8_SQUOTE] = ACTIONS(3794), - [anon_sym_SQUOTE] = ACTIONS(3794), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_true] = ACTIONS(3798), - [sym_false] = ACTIONS(3798), - [anon_sym_NULL] = ACTIONS(3800), - [anon_sym_nullptr] = ACTIONS(3800), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3802), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - [anon_sym_co_await] = ACTIONS(3806), - [anon_sym_new] = ACTIONS(3808), - [anon_sym_requires] = ACTIONS(3810), - [sym_this] = ACTIONS(3798), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3812), - [sym_semgrep_named_ellipsis] = ACTIONS(3814), - }, - [1396] = { - [sym_expression] = STATE(5159), - [sym_expression_not_binary] = STATE(5370), - [sym_conditional_expression] = STATE(5364), - [sym_assignment_expression] = STATE(5364), - [sym_pointer_expression] = STATE(3376), - [sym_unary_expression] = STATE(5364), - [sym_binary_expression] = STATE(5370), - [sym_update_expression] = STATE(5364), - [sym_cast_expression] = STATE(5364), - [sym_sizeof_expression] = STATE(5364), - [sym_alignof_expression] = STATE(5364), - [sym_offsetof_expression] = STATE(5364), - [sym_generic_expression] = STATE(5364), - [sym_subscript_expression] = STATE(3376), - [sym_call_expression] = STATE(3376), - [sym_gnu_asm_expression] = STATE(5364), - [sym_field_expression] = STATE(3376), - [sym_compound_literal_expression] = STATE(5364), - [sym_parenthesized_expression] = STATE(3376), - [sym_char_literal] = STATE(5241), - [sym_concatenated_string] = STATE(5241), - [sym_string_literal] = STATE(3576), - [sym_null] = STATE(5364), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9412), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5364), - [sym_raw_string_literal] = STATE(3576), - [sym_co_await_expression] = STATE(5364), - [sym_new_expression] = STATE(5364), - [sym_delete_expression] = STATE(5364), - [sym_requires_clause] = STATE(5364), - [sym_requires_expression] = STATE(5364), - [sym_lambda_expression] = STATE(5364), - [sym_lambda_capture_specifier] = STATE(7332), - [sym_fold_expression] = STATE(5364), - [sym_parameter_pack_expansion] = STATE(5364), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3376), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3376), - [sym_semgrep_ellipsis] = STATE(5370), - [sym_deep_ellipsis] = STATE(5370), - [sym_identifier] = ACTIONS(4984), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), - [anon_sym_LPAREN2] = ACTIONS(5124), - [anon_sym_BANG] = ACTIONS(3774), - [anon_sym_TILDE] = ACTIONS(3774), - [anon_sym_DASH] = ACTIONS(3772), - [anon_sym_PLUS] = ACTIONS(3772), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(3776), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3780), - [anon_sym_not] = ACTIONS(3772), - [anon_sym_compl] = ACTIONS(3772), - [anon_sym_DASH_DASH] = ACTIONS(4988), - [anon_sym_PLUS_PLUS] = ACTIONS(4988), - [anon_sym_sizeof] = ACTIONS(3782), - [anon_sym___alignof__] = ACTIONS(3784), - [anon_sym___alignof] = ACTIONS(3784), - [anon_sym__alignof] = ACTIONS(3784), - [anon_sym_alignof] = ACTIONS(3784), - [anon_sym__Alignof] = ACTIONS(3784), - [anon_sym_offsetof] = ACTIONS(3786), - [anon_sym__Generic] = ACTIONS(3788), - [anon_sym_asm] = ACTIONS(3790), - [anon_sym___asm__] = ACTIONS(3790), - [sym_number_literal] = ACTIONS(3792), - [anon_sym_L_SQUOTE] = ACTIONS(3794), - [anon_sym_u_SQUOTE] = ACTIONS(3794), - [anon_sym_U_SQUOTE] = ACTIONS(3794), - [anon_sym_u8_SQUOTE] = ACTIONS(3794), - [anon_sym_SQUOTE] = ACTIONS(3794), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_true] = ACTIONS(3798), - [sym_false] = ACTIONS(3798), - [anon_sym_NULL] = ACTIONS(3800), - [anon_sym_nullptr] = ACTIONS(3800), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3802), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - [anon_sym_co_await] = ACTIONS(3806), - [anon_sym_new] = ACTIONS(3808), - [anon_sym_requires] = ACTIONS(3810), - [sym_this] = ACTIONS(3798), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3812), - [sym_semgrep_named_ellipsis] = ACTIONS(3814), - }, - [1397] = { - [sym_expression] = STATE(5170), - [sym_expression_not_binary] = STATE(5370), - [sym_conditional_expression] = STATE(5364), - [sym_assignment_expression] = STATE(5364), - [sym_pointer_expression] = STATE(3376), - [sym_unary_expression] = STATE(5364), - [sym_binary_expression] = STATE(5370), - [sym_update_expression] = STATE(5364), - [sym_cast_expression] = STATE(5364), - [sym_sizeof_expression] = STATE(5364), - [sym_alignof_expression] = STATE(5364), - [sym_offsetof_expression] = STATE(5364), - [sym_generic_expression] = STATE(5364), - [sym_subscript_expression] = STATE(3376), - [sym_call_expression] = STATE(3376), - [sym_gnu_asm_expression] = STATE(5364), - [sym_field_expression] = STATE(3376), - [sym_compound_literal_expression] = STATE(5364), - [sym_parenthesized_expression] = STATE(3376), - [sym_char_literal] = STATE(5241), - [sym_concatenated_string] = STATE(5241), - [sym_string_literal] = STATE(3576), - [sym_null] = STATE(5364), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9412), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5364), - [sym_raw_string_literal] = STATE(3576), - [sym_co_await_expression] = STATE(5364), - [sym_new_expression] = STATE(5364), - [sym_delete_expression] = STATE(5364), - [sym_requires_clause] = STATE(5364), - [sym_requires_expression] = STATE(5364), - [sym_lambda_expression] = STATE(5364), - [sym_lambda_capture_specifier] = STATE(7332), - [sym_fold_expression] = STATE(5364), - [sym_parameter_pack_expansion] = STATE(5364), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3376), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3376), - [sym_semgrep_ellipsis] = STATE(5370), - [sym_deep_ellipsis] = STATE(5370), - [sym_identifier] = ACTIONS(4984), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), - [anon_sym_LPAREN2] = ACTIONS(5124), - [anon_sym_BANG] = ACTIONS(3774), - [anon_sym_TILDE] = ACTIONS(3774), - [anon_sym_DASH] = ACTIONS(3772), - [anon_sym_PLUS] = ACTIONS(3772), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(3776), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3780), - [anon_sym_not] = ACTIONS(3772), - [anon_sym_compl] = ACTIONS(3772), - [anon_sym_DASH_DASH] = ACTIONS(4988), - [anon_sym_PLUS_PLUS] = ACTIONS(4988), - [anon_sym_sizeof] = ACTIONS(3782), - [anon_sym___alignof__] = ACTIONS(3784), - [anon_sym___alignof] = ACTIONS(3784), - [anon_sym__alignof] = ACTIONS(3784), - [anon_sym_alignof] = ACTIONS(3784), - [anon_sym__Alignof] = ACTIONS(3784), - [anon_sym_offsetof] = ACTIONS(3786), - [anon_sym__Generic] = ACTIONS(3788), - [anon_sym_asm] = ACTIONS(3790), - [anon_sym___asm__] = ACTIONS(3790), - [sym_number_literal] = ACTIONS(3792), - [anon_sym_L_SQUOTE] = ACTIONS(3794), - [anon_sym_u_SQUOTE] = ACTIONS(3794), - [anon_sym_U_SQUOTE] = ACTIONS(3794), - [anon_sym_u8_SQUOTE] = ACTIONS(3794), - [anon_sym_SQUOTE] = ACTIONS(3794), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_true] = ACTIONS(3798), - [sym_false] = ACTIONS(3798), - [anon_sym_NULL] = ACTIONS(3800), - [anon_sym_nullptr] = ACTIONS(3800), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3802), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - [anon_sym_co_await] = ACTIONS(3806), - [anon_sym_new] = ACTIONS(3808), - [anon_sym_requires] = ACTIONS(3810), - [sym_this] = ACTIONS(3798), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3812), - [sym_semgrep_named_ellipsis] = ACTIONS(3814), - }, - [1398] = { - [sym_expression] = STATE(3654), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3806), - [sym_concatenated_string] = STATE(3806), - [sym_string_literal] = STATE(2240), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(2240), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2652), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(5142), - [anon_sym_BANG] = ACTIONS(2656), - [anon_sym_TILDE] = ACTIONS(2656), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_PLUS] = ACTIONS(2654), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(5346), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2654), - [anon_sym_compl] = ACTIONS(2654), - [anon_sym_DASH_DASH] = ACTIONS(5004), - [anon_sym_PLUS_PLUS] = ACTIONS(5004), - [anon_sym_sizeof] = ACTIONS(2660), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2662), - [anon_sym_L_SQUOTE] = ACTIONS(2664), - [anon_sym_u_SQUOTE] = ACTIONS(2664), - [anon_sym_U_SQUOTE] = ACTIONS(2664), - [anon_sym_u8_SQUOTE] = ACTIONS(2664), - [anon_sym_SQUOTE] = ACTIONS(2664), - [anon_sym_L_DQUOTE] = ACTIONS(2666), - [anon_sym_u_DQUOTE] = ACTIONS(2666), - [anon_sym_U_DQUOTE] = ACTIONS(2666), - [anon_sym_u8_DQUOTE] = ACTIONS(2666), - [anon_sym_DQUOTE] = ACTIONS(2666), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2668), - [anon_sym_R_DQUOTE] = ACTIONS(2670), - [anon_sym_LR_DQUOTE] = ACTIONS(2670), - [anon_sym_uR_DQUOTE] = ACTIONS(2670), - [anon_sym_UR_DQUOTE] = ACTIONS(2670), - [anon_sym_u8R_DQUOTE] = ACTIONS(2670), - [anon_sym_co_await] = ACTIONS(2672), - [anon_sym_new] = ACTIONS(2674), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1399] = { - [sym_expression] = STATE(3024), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3806), - [sym_concatenated_string] = STATE(3806), - [sym_string_literal] = STATE(2240), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(2240), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2652), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(5142), - [anon_sym_BANG] = ACTIONS(2656), - [anon_sym_TILDE] = ACTIONS(2656), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_PLUS] = ACTIONS(2654), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2654), - [anon_sym_compl] = ACTIONS(2654), - [anon_sym_DASH_DASH] = ACTIONS(5004), - [anon_sym_PLUS_PLUS] = ACTIONS(5004), - [anon_sym_sizeof] = ACTIONS(2660), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2662), - [anon_sym_L_SQUOTE] = ACTIONS(2664), - [anon_sym_u_SQUOTE] = ACTIONS(2664), - [anon_sym_U_SQUOTE] = ACTIONS(2664), - [anon_sym_u8_SQUOTE] = ACTIONS(2664), - [anon_sym_SQUOTE] = ACTIONS(2664), - [anon_sym_L_DQUOTE] = ACTIONS(2666), - [anon_sym_u_DQUOTE] = ACTIONS(2666), - [anon_sym_U_DQUOTE] = ACTIONS(2666), - [anon_sym_u8_DQUOTE] = ACTIONS(2666), - [anon_sym_DQUOTE] = ACTIONS(2666), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2668), - [anon_sym_R_DQUOTE] = ACTIONS(2670), - [anon_sym_LR_DQUOTE] = ACTIONS(2670), - [anon_sym_uR_DQUOTE] = ACTIONS(2670), - [anon_sym_UR_DQUOTE] = ACTIONS(2670), - [anon_sym_u8R_DQUOTE] = ACTIONS(2670), - [anon_sym_co_await] = ACTIONS(2672), - [anon_sym_new] = ACTIONS(2674), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1400] = { - [sym_expression] = STATE(3761), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3806), - [sym_concatenated_string] = STATE(3806), - [sym_string_literal] = STATE(2240), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(2240), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2652), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(5142), - [anon_sym_BANG] = ACTIONS(2656), - [anon_sym_TILDE] = ACTIONS(2656), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_PLUS] = ACTIONS(2654), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(5348), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2654), - [anon_sym_compl] = ACTIONS(2654), - [anon_sym_DASH_DASH] = ACTIONS(5004), - [anon_sym_PLUS_PLUS] = ACTIONS(5004), - [anon_sym_sizeof] = ACTIONS(2660), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2662), - [anon_sym_L_SQUOTE] = ACTIONS(2664), - [anon_sym_u_SQUOTE] = ACTIONS(2664), - [anon_sym_U_SQUOTE] = ACTIONS(2664), - [anon_sym_u8_SQUOTE] = ACTIONS(2664), - [anon_sym_SQUOTE] = ACTIONS(2664), - [anon_sym_L_DQUOTE] = ACTIONS(2666), - [anon_sym_u_DQUOTE] = ACTIONS(2666), - [anon_sym_U_DQUOTE] = ACTIONS(2666), - [anon_sym_u8_DQUOTE] = ACTIONS(2666), - [anon_sym_DQUOTE] = ACTIONS(2666), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2668), - [anon_sym_R_DQUOTE] = ACTIONS(2670), - [anon_sym_LR_DQUOTE] = ACTIONS(2670), - [anon_sym_uR_DQUOTE] = ACTIONS(2670), - [anon_sym_UR_DQUOTE] = ACTIONS(2670), - [anon_sym_u8R_DQUOTE] = ACTIONS(2670), - [anon_sym_co_await] = ACTIONS(2672), - [anon_sym_new] = ACTIONS(2674), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1401] = { - [sym_expression] = STATE(3657), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3806), - [sym_concatenated_string] = STATE(3806), - [sym_string_literal] = STATE(2240), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(2240), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2652), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(5142), - [anon_sym_BANG] = ACTIONS(2656), - [anon_sym_TILDE] = ACTIONS(2656), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_PLUS] = ACTIONS(2654), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2654), - [anon_sym_compl] = ACTIONS(2654), - [anon_sym_DASH_DASH] = ACTIONS(5004), - [anon_sym_PLUS_PLUS] = ACTIONS(5004), - [anon_sym_sizeof] = ACTIONS(2660), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2662), - [anon_sym_L_SQUOTE] = ACTIONS(2664), - [anon_sym_u_SQUOTE] = ACTIONS(2664), - [anon_sym_U_SQUOTE] = ACTIONS(2664), - [anon_sym_u8_SQUOTE] = ACTIONS(2664), - [anon_sym_SQUOTE] = ACTIONS(2664), - [anon_sym_L_DQUOTE] = ACTIONS(2666), - [anon_sym_u_DQUOTE] = ACTIONS(2666), - [anon_sym_U_DQUOTE] = ACTIONS(2666), - [anon_sym_u8_DQUOTE] = ACTIONS(2666), - [anon_sym_DQUOTE] = ACTIONS(2666), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2668), - [anon_sym_R_DQUOTE] = ACTIONS(2670), - [anon_sym_LR_DQUOTE] = ACTIONS(2670), - [anon_sym_uR_DQUOTE] = ACTIONS(2670), - [anon_sym_UR_DQUOTE] = ACTIONS(2670), - [anon_sym_u8R_DQUOTE] = ACTIONS(2670), - [anon_sym_co_await] = ACTIONS(2672), - [anon_sym_new] = ACTIONS(2674), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1402] = { - [sym_expression] = STATE(3777), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3806), - [sym_concatenated_string] = STATE(3806), - [sym_string_literal] = STATE(2240), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(2240), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2652), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(5142), - [anon_sym_BANG] = ACTIONS(2656), - [anon_sym_TILDE] = ACTIONS(2656), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_PLUS] = ACTIONS(2654), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2654), - [anon_sym_compl] = ACTIONS(2654), - [anon_sym_DASH_DASH] = ACTIONS(5004), - [anon_sym_PLUS_PLUS] = ACTIONS(5004), - [anon_sym_sizeof] = ACTIONS(2660), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2662), - [anon_sym_L_SQUOTE] = ACTIONS(2664), - [anon_sym_u_SQUOTE] = ACTIONS(2664), - [anon_sym_U_SQUOTE] = ACTIONS(2664), - [anon_sym_u8_SQUOTE] = ACTIONS(2664), - [anon_sym_SQUOTE] = ACTIONS(2664), - [anon_sym_L_DQUOTE] = ACTIONS(2666), - [anon_sym_u_DQUOTE] = ACTIONS(2666), - [anon_sym_U_DQUOTE] = ACTIONS(2666), - [anon_sym_u8_DQUOTE] = ACTIONS(2666), - [anon_sym_DQUOTE] = ACTIONS(2666), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2668), - [anon_sym_R_DQUOTE] = ACTIONS(2670), - [anon_sym_LR_DQUOTE] = ACTIONS(2670), - [anon_sym_uR_DQUOTE] = ACTIONS(2670), - [anon_sym_UR_DQUOTE] = ACTIONS(2670), - [anon_sym_u8R_DQUOTE] = ACTIONS(2670), - [anon_sym_co_await] = ACTIONS(2672), - [anon_sym_new] = ACTIONS(2674), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1403] = { - [sym_expression] = STATE(3782), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3806), - [sym_concatenated_string] = STATE(3806), - [sym_string_literal] = STATE(2240), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(2240), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2652), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(5142), - [anon_sym_BANG] = ACTIONS(2656), - [anon_sym_TILDE] = ACTIONS(2656), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_PLUS] = ACTIONS(2654), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2654), - [anon_sym_compl] = ACTIONS(2654), - [anon_sym_DASH_DASH] = ACTIONS(5004), - [anon_sym_PLUS_PLUS] = ACTIONS(5004), - [anon_sym_sizeof] = ACTIONS(2660), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2662), - [anon_sym_L_SQUOTE] = ACTIONS(2664), - [anon_sym_u_SQUOTE] = ACTIONS(2664), - [anon_sym_U_SQUOTE] = ACTIONS(2664), - [anon_sym_u8_SQUOTE] = ACTIONS(2664), - [anon_sym_SQUOTE] = ACTIONS(2664), - [anon_sym_L_DQUOTE] = ACTIONS(2666), - [anon_sym_u_DQUOTE] = ACTIONS(2666), - [anon_sym_U_DQUOTE] = ACTIONS(2666), - [anon_sym_u8_DQUOTE] = ACTIONS(2666), - [anon_sym_DQUOTE] = ACTIONS(2666), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2668), - [anon_sym_R_DQUOTE] = ACTIONS(2670), - [anon_sym_LR_DQUOTE] = ACTIONS(2670), - [anon_sym_uR_DQUOTE] = ACTIONS(2670), - [anon_sym_UR_DQUOTE] = ACTIONS(2670), - [anon_sym_u8R_DQUOTE] = ACTIONS(2670), - [anon_sym_co_await] = ACTIONS(2672), - [anon_sym_new] = ACTIONS(2674), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1404] = { - [sym_expression] = STATE(5397), - [sym_expression_not_binary] = STATE(5540), - [sym_conditional_expression] = STATE(5537), - [sym_assignment_expression] = STATE(5537), - [sym_pointer_expression] = STATE(3745), - [sym_unary_expression] = STATE(5537), - [sym_binary_expression] = STATE(5540), - [sym_update_expression] = STATE(5537), - [sym_cast_expression] = STATE(5537), - [sym_sizeof_expression] = STATE(5537), - [sym_alignof_expression] = STATE(5537), - [sym_offsetof_expression] = STATE(5537), - [sym_generic_expression] = STATE(5537), - [sym_subscript_expression] = STATE(3745), - [sym_call_expression] = STATE(3745), - [sym_gnu_asm_expression] = STATE(5537), - [sym_field_expression] = STATE(3745), - [sym_compound_literal_expression] = STATE(5537), - [sym_parenthesized_expression] = STATE(3745), - [sym_char_literal] = STATE(5453), - [sym_concatenated_string] = STATE(5453), - [sym_string_literal] = STATE(3936), - [sym_null] = STATE(5537), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9333), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5537), - [sym_raw_string_literal] = STATE(3936), - [sym_co_await_expression] = STATE(5537), - [sym_new_expression] = STATE(5537), - [sym_delete_expression] = STATE(5537), - [sym_requires_clause] = STATE(5537), - [sym_requires_expression] = STATE(5537), - [sym_lambda_expression] = STATE(5537), - [sym_lambda_capture_specifier] = STATE(7261), - [sym_fold_expression] = STATE(5537), - [sym_parameter_pack_expansion] = STATE(5537), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3745), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3745), - [sym_semgrep_ellipsis] = STATE(5540), - [sym_deep_ellipsis] = STATE(5540), - [sym_identifier] = ACTIONS(5032), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5034), - [anon_sym_LPAREN2] = ACTIONS(5112), - [anon_sym_BANG] = ACTIONS(3820), - [anon_sym_TILDE] = ACTIONS(3820), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(3822), - [anon_sym_LBRACK] = ACTIONS(5350), - [sym_primitive_type] = ACTIONS(3826), - [anon_sym_not] = ACTIONS(3818), - [anon_sym_compl] = ACTIONS(3818), - [anon_sym_DASH_DASH] = ACTIONS(5036), - [anon_sym_PLUS_PLUS] = ACTIONS(5036), - [anon_sym_sizeof] = ACTIONS(3828), - [anon_sym___alignof__] = ACTIONS(3830), - [anon_sym___alignof] = ACTIONS(3830), - [anon_sym__alignof] = ACTIONS(3830), - [anon_sym_alignof] = ACTIONS(3830), - [anon_sym__Alignof] = ACTIONS(3830), - [anon_sym_offsetof] = ACTIONS(3832), - [anon_sym__Generic] = ACTIONS(3834), - [anon_sym_asm] = ACTIONS(3836), - [anon_sym___asm__] = ACTIONS(3836), - [sym_number_literal] = ACTIONS(3838), - [anon_sym_L_SQUOTE] = ACTIONS(3840), - [anon_sym_u_SQUOTE] = ACTIONS(3840), - [anon_sym_U_SQUOTE] = ACTIONS(3840), - [anon_sym_u8_SQUOTE] = ACTIONS(3840), - [anon_sym_SQUOTE] = ACTIONS(3840), - [anon_sym_L_DQUOTE] = ACTIONS(3842), - [anon_sym_u_DQUOTE] = ACTIONS(3842), - [anon_sym_U_DQUOTE] = ACTIONS(3842), - [anon_sym_u8_DQUOTE] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym_true] = ACTIONS(3844), - [sym_false] = ACTIONS(3844), - [anon_sym_NULL] = ACTIONS(3846), - [anon_sym_nullptr] = ACTIONS(3846), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(3854), - [anon_sym_requires] = ACTIONS(3856), - [sym_this] = ACTIONS(3844), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3858), - [sym_semgrep_named_ellipsis] = ACTIONS(3860), - }, - [1405] = { - [sym_expression] = STATE(5404), - [sym_expression_not_binary] = STATE(5540), - [sym_conditional_expression] = STATE(5537), - [sym_assignment_expression] = STATE(5537), - [sym_pointer_expression] = STATE(3745), - [sym_unary_expression] = STATE(5537), - [sym_binary_expression] = STATE(5540), - [sym_update_expression] = STATE(5537), - [sym_cast_expression] = STATE(5537), - [sym_sizeof_expression] = STATE(5537), - [sym_alignof_expression] = STATE(5537), - [sym_offsetof_expression] = STATE(5537), - [sym_generic_expression] = STATE(5537), - [sym_subscript_expression] = STATE(3745), - [sym_call_expression] = STATE(3745), - [sym_gnu_asm_expression] = STATE(5537), - [sym_field_expression] = STATE(3745), - [sym_compound_literal_expression] = STATE(5537), - [sym_parenthesized_expression] = STATE(3745), - [sym_char_literal] = STATE(5453), - [sym_concatenated_string] = STATE(5453), - [sym_string_literal] = STATE(3936), - [sym_null] = STATE(5537), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9333), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5537), - [sym_raw_string_literal] = STATE(3936), - [sym_co_await_expression] = STATE(5537), - [sym_new_expression] = STATE(5537), - [sym_delete_expression] = STATE(5537), - [sym_requires_clause] = STATE(5537), - [sym_requires_expression] = STATE(5537), - [sym_lambda_expression] = STATE(5537), - [sym_lambda_capture_specifier] = STATE(7261), - [sym_fold_expression] = STATE(5537), - [sym_parameter_pack_expansion] = STATE(5537), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3745), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3745), - [sym_semgrep_ellipsis] = STATE(5540), - [sym_deep_ellipsis] = STATE(5540), - [sym_identifier] = ACTIONS(5032), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5034), - [anon_sym_LPAREN2] = ACTIONS(5112), - [anon_sym_BANG] = ACTIONS(3820), - [anon_sym_TILDE] = ACTIONS(3820), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(3822), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3826), - [anon_sym_not] = ACTIONS(3818), - [anon_sym_compl] = ACTIONS(3818), - [anon_sym_DASH_DASH] = ACTIONS(5036), - [anon_sym_PLUS_PLUS] = ACTIONS(5036), - [anon_sym_sizeof] = ACTIONS(3828), - [anon_sym___alignof__] = ACTIONS(3830), - [anon_sym___alignof] = ACTIONS(3830), - [anon_sym__alignof] = ACTIONS(3830), - [anon_sym_alignof] = ACTIONS(3830), - [anon_sym__Alignof] = ACTIONS(3830), - [anon_sym_offsetof] = ACTIONS(3832), - [anon_sym__Generic] = ACTIONS(3834), - [anon_sym_asm] = ACTIONS(3836), - [anon_sym___asm__] = ACTIONS(3836), - [sym_number_literal] = ACTIONS(3838), - [anon_sym_L_SQUOTE] = ACTIONS(3840), - [anon_sym_u_SQUOTE] = ACTIONS(3840), - [anon_sym_U_SQUOTE] = ACTIONS(3840), - [anon_sym_u8_SQUOTE] = ACTIONS(3840), - [anon_sym_SQUOTE] = ACTIONS(3840), - [anon_sym_L_DQUOTE] = ACTIONS(3842), - [anon_sym_u_DQUOTE] = ACTIONS(3842), - [anon_sym_U_DQUOTE] = ACTIONS(3842), - [anon_sym_u8_DQUOTE] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym_true] = ACTIONS(3844), - [sym_false] = ACTIONS(3844), - [anon_sym_NULL] = ACTIONS(3846), - [anon_sym_nullptr] = ACTIONS(3846), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(3854), - [anon_sym_requires] = ACTIONS(3856), - [sym_this] = ACTIONS(3844), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3858), - [sym_semgrep_named_ellipsis] = ACTIONS(3860), - }, - [1406] = { - [sym_expression] = STATE(5377), - [sym_expression_not_binary] = STATE(5540), - [sym_conditional_expression] = STATE(5537), - [sym_assignment_expression] = STATE(5537), - [sym_pointer_expression] = STATE(3745), - [sym_unary_expression] = STATE(5537), - [sym_binary_expression] = STATE(5540), - [sym_update_expression] = STATE(5537), - [sym_cast_expression] = STATE(5537), - [sym_sizeof_expression] = STATE(5537), - [sym_alignof_expression] = STATE(5537), - [sym_offsetof_expression] = STATE(5537), - [sym_generic_expression] = STATE(5537), - [sym_subscript_expression] = STATE(3745), - [sym_call_expression] = STATE(3745), - [sym_gnu_asm_expression] = STATE(5537), - [sym_field_expression] = STATE(3745), - [sym_compound_literal_expression] = STATE(5537), - [sym_parenthesized_expression] = STATE(3745), - [sym_char_literal] = STATE(5453), - [sym_concatenated_string] = STATE(5453), - [sym_string_literal] = STATE(3936), - [sym_null] = STATE(5537), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9333), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5537), - [sym_raw_string_literal] = STATE(3936), - [sym_co_await_expression] = STATE(5537), - [sym_new_expression] = STATE(5537), - [sym_delete_expression] = STATE(5537), - [sym_requires_clause] = STATE(5537), - [sym_requires_expression] = STATE(5537), - [sym_lambda_expression] = STATE(5537), - [sym_lambda_capture_specifier] = STATE(7261), - [sym_fold_expression] = STATE(5537), - [sym_parameter_pack_expansion] = STATE(5537), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3745), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3745), - [sym_semgrep_ellipsis] = STATE(5540), - [sym_deep_ellipsis] = STATE(5540), - [sym_identifier] = ACTIONS(5032), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5034), - [anon_sym_LPAREN2] = ACTIONS(5112), - [anon_sym_BANG] = ACTIONS(3820), - [anon_sym_TILDE] = ACTIONS(3820), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(3822), - [anon_sym_LBRACK] = ACTIONS(5352), - [sym_primitive_type] = ACTIONS(3826), - [anon_sym_not] = ACTIONS(3818), - [anon_sym_compl] = ACTIONS(3818), - [anon_sym_DASH_DASH] = ACTIONS(5036), - [anon_sym_PLUS_PLUS] = ACTIONS(5036), - [anon_sym_sizeof] = ACTIONS(3828), - [anon_sym___alignof__] = ACTIONS(3830), - [anon_sym___alignof] = ACTIONS(3830), - [anon_sym__alignof] = ACTIONS(3830), - [anon_sym_alignof] = ACTIONS(3830), - [anon_sym__Alignof] = ACTIONS(3830), - [anon_sym_offsetof] = ACTIONS(3832), - [anon_sym__Generic] = ACTIONS(3834), - [anon_sym_asm] = ACTIONS(3836), - [anon_sym___asm__] = ACTIONS(3836), - [sym_number_literal] = ACTIONS(3838), - [anon_sym_L_SQUOTE] = ACTIONS(3840), - [anon_sym_u_SQUOTE] = ACTIONS(3840), - [anon_sym_U_SQUOTE] = ACTIONS(3840), - [anon_sym_u8_SQUOTE] = ACTIONS(3840), - [anon_sym_SQUOTE] = ACTIONS(3840), - [anon_sym_L_DQUOTE] = ACTIONS(3842), - [anon_sym_u_DQUOTE] = ACTIONS(3842), - [anon_sym_U_DQUOTE] = ACTIONS(3842), - [anon_sym_u8_DQUOTE] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym_true] = ACTIONS(3844), - [sym_false] = ACTIONS(3844), - [anon_sym_NULL] = ACTIONS(3846), - [anon_sym_nullptr] = ACTIONS(3846), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(3854), - [anon_sym_requires] = ACTIONS(3856), - [sym_this] = ACTIONS(3844), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3858), - [sym_semgrep_named_ellipsis] = ACTIONS(3860), - }, - [1407] = { - [sym_expression] = STATE(5880), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), - }, - [1408] = { - [sym_expression] = STATE(5438), - [sym_expression_not_binary] = STATE(5540), - [sym_conditional_expression] = STATE(5537), - [sym_assignment_expression] = STATE(5537), - [sym_pointer_expression] = STATE(3745), - [sym_unary_expression] = STATE(5537), - [sym_binary_expression] = STATE(5540), - [sym_update_expression] = STATE(5537), - [sym_cast_expression] = STATE(5537), - [sym_sizeof_expression] = STATE(5537), - [sym_alignof_expression] = STATE(5537), - [sym_offsetof_expression] = STATE(5537), - [sym_generic_expression] = STATE(5537), - [sym_subscript_expression] = STATE(3745), - [sym_call_expression] = STATE(3745), - [sym_gnu_asm_expression] = STATE(5537), - [sym_field_expression] = STATE(3745), - [sym_compound_literal_expression] = STATE(5537), - [sym_parenthesized_expression] = STATE(3745), - [sym_char_literal] = STATE(5453), - [sym_concatenated_string] = STATE(5453), - [sym_string_literal] = STATE(3936), - [sym_null] = STATE(5537), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9333), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5537), - [sym_raw_string_literal] = STATE(3936), - [sym_co_await_expression] = STATE(5537), - [sym_new_expression] = STATE(5537), - [sym_delete_expression] = STATE(5537), - [sym_requires_clause] = STATE(5537), - [sym_requires_expression] = STATE(5537), - [sym_lambda_expression] = STATE(5537), - [sym_lambda_capture_specifier] = STATE(7261), - [sym_fold_expression] = STATE(5537), - [sym_parameter_pack_expansion] = STATE(5537), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3745), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3745), - [sym_semgrep_ellipsis] = STATE(5540), - [sym_deep_ellipsis] = STATE(5540), - [sym_identifier] = ACTIONS(5032), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5034), - [anon_sym_LPAREN2] = ACTIONS(5112), - [anon_sym_BANG] = ACTIONS(3820), - [anon_sym_TILDE] = ACTIONS(3820), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(3822), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3826), - [anon_sym_not] = ACTIONS(3818), - [anon_sym_compl] = ACTIONS(3818), - [anon_sym_DASH_DASH] = ACTIONS(5036), - [anon_sym_PLUS_PLUS] = ACTIONS(5036), - [anon_sym_sizeof] = ACTIONS(3828), - [anon_sym___alignof__] = ACTIONS(3830), - [anon_sym___alignof] = ACTIONS(3830), - [anon_sym__alignof] = ACTIONS(3830), - [anon_sym_alignof] = ACTIONS(3830), - [anon_sym__Alignof] = ACTIONS(3830), - [anon_sym_offsetof] = ACTIONS(3832), - [anon_sym__Generic] = ACTIONS(3834), - [anon_sym_asm] = ACTIONS(3836), - [anon_sym___asm__] = ACTIONS(3836), - [sym_number_literal] = ACTIONS(3838), - [anon_sym_L_SQUOTE] = ACTIONS(3840), - [anon_sym_u_SQUOTE] = ACTIONS(3840), - [anon_sym_U_SQUOTE] = ACTIONS(3840), - [anon_sym_u8_SQUOTE] = ACTIONS(3840), - [anon_sym_SQUOTE] = ACTIONS(3840), - [anon_sym_L_DQUOTE] = ACTIONS(3842), - [anon_sym_u_DQUOTE] = ACTIONS(3842), - [anon_sym_U_DQUOTE] = ACTIONS(3842), - [anon_sym_u8_DQUOTE] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym_true] = ACTIONS(3844), - [sym_false] = ACTIONS(3844), - [anon_sym_NULL] = ACTIONS(3846), - [anon_sym_nullptr] = ACTIONS(3846), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(3854), - [anon_sym_requires] = ACTIONS(3856), - [sym_this] = ACTIONS(3844), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3858), - [sym_semgrep_named_ellipsis] = ACTIONS(3860), - }, - [1409] = { - [sym_expression] = STATE(5876), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1474] = { + [sym_expression] = STATE(4757), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3204), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3204), + [sym_call_expression] = STATE(3204), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3204), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3204), + [sym_char_literal] = STATE(4797), + [sym_concatenated_string] = STATE(4797), + [sym_string_literal] = STATE(3234), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3234), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6827), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(3204), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3204), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5054), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(3897), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4936), + [anon_sym_PLUS_PLUS] = ACTIONS(4936), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -243819,99 +239927,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), + [sym_number_literal] = ACTIONS(3903), + [anon_sym_L_SQUOTE] = ACTIONS(3905), + [anon_sym_u_SQUOTE] = ACTIONS(3905), + [anon_sym_U_SQUOTE] = ACTIONS(3905), + [anon_sym_u8_SQUOTE] = ACTIONS(3905), + [anon_sym_SQUOTE] = ACTIONS(3905), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3909), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + [anon_sym_co_await] = ACTIONS(3913), + [anon_sym_new] = ACTIONS(3915), + [anon_sym_requires] = ACTIONS(3917), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1410] = { - [sym_expression] = STATE(5756), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1475] = { + [sym_expression] = STATE(4717), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3204), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3204), + [sym_call_expression] = STATE(3204), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3204), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3204), + [sym_char_literal] = STATE(4797), + [sym_concatenated_string] = STATE(4797), + [sym_string_literal] = STATE(3234), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3234), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6827), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(3204), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3204), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5054), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(3897), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4936), + [anon_sym_PLUS_PLUS] = ACTIONS(4936), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -243921,506 +240029,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), + [sym_number_literal] = ACTIONS(3903), + [anon_sym_L_SQUOTE] = ACTIONS(3905), + [anon_sym_u_SQUOTE] = ACTIONS(3905), + [anon_sym_U_SQUOTE] = ACTIONS(3905), + [anon_sym_u8_SQUOTE] = ACTIONS(3905), + [anon_sym_SQUOTE] = ACTIONS(3905), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3909), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + [anon_sym_co_await] = ACTIONS(3913), + [anon_sym_new] = ACTIONS(3915), + [anon_sym_requires] = ACTIONS(3917), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1411] = { - [sym_expression] = STATE(5337), - [sym_expression_not_binary] = STATE(5540), - [sym_conditional_expression] = STATE(5537), - [sym_assignment_expression] = STATE(5537), - [sym_pointer_expression] = STATE(3745), - [sym_unary_expression] = STATE(5537), - [sym_binary_expression] = STATE(5540), - [sym_update_expression] = STATE(5537), - [sym_cast_expression] = STATE(5537), - [sym_sizeof_expression] = STATE(5537), - [sym_alignof_expression] = STATE(5537), - [sym_offsetof_expression] = STATE(5537), - [sym_generic_expression] = STATE(5537), - [sym_subscript_expression] = STATE(3745), - [sym_call_expression] = STATE(3745), - [sym_gnu_asm_expression] = STATE(5537), - [sym_field_expression] = STATE(3745), - [sym_compound_literal_expression] = STATE(5537), - [sym_parenthesized_expression] = STATE(3745), - [sym_char_literal] = STATE(5453), - [sym_concatenated_string] = STATE(5453), - [sym_string_literal] = STATE(3936), - [sym_null] = STATE(5537), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9333), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5537), - [sym_raw_string_literal] = STATE(3936), - [sym_co_await_expression] = STATE(5537), - [sym_new_expression] = STATE(5537), - [sym_delete_expression] = STATE(5537), - [sym_requires_clause] = STATE(5537), - [sym_requires_expression] = STATE(5537), - [sym_lambda_expression] = STATE(5537), - [sym_lambda_capture_specifier] = STATE(7261), - [sym_fold_expression] = STATE(5537), - [sym_parameter_pack_expansion] = STATE(5537), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3745), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3745), - [sym_semgrep_ellipsis] = STATE(5540), - [sym_deep_ellipsis] = STATE(5540), - [sym_identifier] = ACTIONS(5032), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5034), - [anon_sym_LPAREN2] = ACTIONS(5112), - [anon_sym_BANG] = ACTIONS(3820), - [anon_sym_TILDE] = ACTIONS(3820), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(3822), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3826), - [anon_sym_not] = ACTIONS(3818), - [anon_sym_compl] = ACTIONS(3818), - [anon_sym_DASH_DASH] = ACTIONS(5036), - [anon_sym_PLUS_PLUS] = ACTIONS(5036), - [anon_sym_sizeof] = ACTIONS(3828), - [anon_sym___alignof__] = ACTIONS(3830), - [anon_sym___alignof] = ACTIONS(3830), - [anon_sym__alignof] = ACTIONS(3830), - [anon_sym_alignof] = ACTIONS(3830), - [anon_sym__Alignof] = ACTIONS(3830), - [anon_sym_offsetof] = ACTIONS(3832), - [anon_sym__Generic] = ACTIONS(3834), - [anon_sym_asm] = ACTIONS(3836), - [anon_sym___asm__] = ACTIONS(3836), - [sym_number_literal] = ACTIONS(3838), - [anon_sym_L_SQUOTE] = ACTIONS(3840), - [anon_sym_u_SQUOTE] = ACTIONS(3840), - [anon_sym_U_SQUOTE] = ACTIONS(3840), - [anon_sym_u8_SQUOTE] = ACTIONS(3840), - [anon_sym_SQUOTE] = ACTIONS(3840), - [anon_sym_L_DQUOTE] = ACTIONS(3842), - [anon_sym_u_DQUOTE] = ACTIONS(3842), - [anon_sym_U_DQUOTE] = ACTIONS(3842), - [anon_sym_u8_DQUOTE] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym_true] = ACTIONS(3844), - [sym_false] = ACTIONS(3844), - [anon_sym_NULL] = ACTIONS(3846), - [anon_sym_nullptr] = ACTIONS(3846), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(3854), - [anon_sym_requires] = ACTIONS(3856), - [sym_this] = ACTIONS(3844), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3858), - [sym_semgrep_named_ellipsis] = ACTIONS(3860), - }, - [1412] = { - [sym_expression] = STATE(5366), - [sym_expression_not_binary] = STATE(5540), - [sym_conditional_expression] = STATE(5537), - [sym_assignment_expression] = STATE(5537), - [sym_pointer_expression] = STATE(3745), - [sym_unary_expression] = STATE(5537), - [sym_binary_expression] = STATE(5540), - [sym_update_expression] = STATE(5537), - [sym_cast_expression] = STATE(5537), - [sym_sizeof_expression] = STATE(5537), - [sym_alignof_expression] = STATE(5537), - [sym_offsetof_expression] = STATE(5537), - [sym_generic_expression] = STATE(5537), - [sym_subscript_expression] = STATE(3745), - [sym_call_expression] = STATE(3745), - [sym_gnu_asm_expression] = STATE(5537), - [sym_field_expression] = STATE(3745), - [sym_compound_literal_expression] = STATE(5537), - [sym_parenthesized_expression] = STATE(3745), - [sym_char_literal] = STATE(5453), - [sym_concatenated_string] = STATE(5453), - [sym_string_literal] = STATE(3936), - [sym_null] = STATE(5537), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9333), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5537), - [sym_raw_string_literal] = STATE(3936), - [sym_co_await_expression] = STATE(5537), - [sym_new_expression] = STATE(5537), - [sym_delete_expression] = STATE(5537), - [sym_requires_clause] = STATE(5537), - [sym_requires_expression] = STATE(5537), - [sym_lambda_expression] = STATE(5537), - [sym_lambda_capture_specifier] = STATE(7261), - [sym_fold_expression] = STATE(5537), - [sym_parameter_pack_expansion] = STATE(5537), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3745), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3745), - [sym_semgrep_ellipsis] = STATE(5540), - [sym_deep_ellipsis] = STATE(5540), - [sym_identifier] = ACTIONS(5032), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5034), - [anon_sym_LPAREN2] = ACTIONS(5112), - [anon_sym_BANG] = ACTIONS(3820), - [anon_sym_TILDE] = ACTIONS(3820), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(3822), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3826), - [anon_sym_not] = ACTIONS(3818), - [anon_sym_compl] = ACTIONS(3818), - [anon_sym_DASH_DASH] = ACTIONS(5036), - [anon_sym_PLUS_PLUS] = ACTIONS(5036), - [anon_sym_sizeof] = ACTIONS(3828), - [anon_sym___alignof__] = ACTIONS(3830), - [anon_sym___alignof] = ACTIONS(3830), - [anon_sym__alignof] = ACTIONS(3830), - [anon_sym_alignof] = ACTIONS(3830), - [anon_sym__Alignof] = ACTIONS(3830), - [anon_sym_offsetof] = ACTIONS(3832), - [anon_sym__Generic] = ACTIONS(3834), - [anon_sym_asm] = ACTIONS(3836), - [anon_sym___asm__] = ACTIONS(3836), - [sym_number_literal] = ACTIONS(3838), - [anon_sym_L_SQUOTE] = ACTIONS(3840), - [anon_sym_u_SQUOTE] = ACTIONS(3840), - [anon_sym_U_SQUOTE] = ACTIONS(3840), - [anon_sym_u8_SQUOTE] = ACTIONS(3840), - [anon_sym_SQUOTE] = ACTIONS(3840), - [anon_sym_L_DQUOTE] = ACTIONS(3842), - [anon_sym_u_DQUOTE] = ACTIONS(3842), - [anon_sym_U_DQUOTE] = ACTIONS(3842), - [anon_sym_u8_DQUOTE] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym_true] = ACTIONS(3844), - [sym_false] = ACTIONS(3844), - [anon_sym_NULL] = ACTIONS(3846), - [anon_sym_nullptr] = ACTIONS(3846), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(3854), - [anon_sym_requires] = ACTIONS(3856), - [sym_this] = ACTIONS(3844), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3858), - [sym_semgrep_named_ellipsis] = ACTIONS(3860), - }, - [1413] = { - [sym_expression] = STATE(3030), - [sym_expression_not_binary] = STATE(3362), - [sym_conditional_expression] = STATE(3356), - [sym_assignment_expression] = STATE(3356), - [sym_pointer_expression] = STATE(3367), - [sym_unary_expression] = STATE(3356), - [sym_binary_expression] = STATE(3362), - [sym_update_expression] = STATE(3356), - [sym_cast_expression] = STATE(3356), - [sym_sizeof_expression] = STATE(3356), - [sym_alignof_expression] = STATE(3356), - [sym_offsetof_expression] = STATE(3356), - [sym_generic_expression] = STATE(3356), - [sym_subscript_expression] = STATE(3367), - [sym_call_expression] = STATE(3367), - [sym_gnu_asm_expression] = STATE(3356), - [sym_field_expression] = STATE(3367), - [sym_compound_literal_expression] = STATE(3356), - [sym_parenthesized_expression] = STATE(3367), - [sym_char_literal] = STATE(3167), - [sym_concatenated_string] = STATE(3167), - [sym_string_literal] = STATE(1962), - [sym_null] = STATE(3356), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9141), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3356), - [sym_raw_string_literal] = STATE(1962), - [sym_co_await_expression] = STATE(3356), - [sym_new_expression] = STATE(3356), - [sym_delete_expression] = STATE(3356), - [sym_requires_clause] = STATE(3356), - [sym_requires_expression] = STATE(3356), - [sym_lambda_expression] = STATE(3356), - [sym_lambda_capture_specifier] = STATE(7329), - [sym_fold_expression] = STATE(3356), - [sym_parameter_pack_expansion] = STATE(3356), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3367), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3367), - [sym_semgrep_ellipsis] = STATE(3362), - [sym_deep_ellipsis] = STATE(3362), - [sym_identifier] = ACTIONS(5048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5050), - [anon_sym_LPAREN2] = ACTIONS(5114), - [anon_sym_BANG] = ACTIONS(2285), - [anon_sym_TILDE] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2283), - [anon_sym_PLUS] = ACTIONS(2283), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(5354), - [sym_primitive_type] = ACTIONS(2291), - [anon_sym_not] = ACTIONS(2283), - [anon_sym_compl] = ACTIONS(2283), - [anon_sym_DASH_DASH] = ACTIONS(5052), - [anon_sym_PLUS_PLUS] = ACTIONS(5052), - [anon_sym_sizeof] = ACTIONS(2293), - [anon_sym___alignof__] = ACTIONS(2295), - [anon_sym___alignof] = ACTIONS(2295), - [anon_sym__alignof] = ACTIONS(2295), - [anon_sym_alignof] = ACTIONS(2295), - [anon_sym__Alignof] = ACTIONS(2295), - [anon_sym_offsetof] = ACTIONS(2297), - [anon_sym__Generic] = ACTIONS(2299), - [anon_sym_asm] = ACTIONS(2301), - [anon_sym___asm__] = ACTIONS(2301), - [sym_number_literal] = ACTIONS(2303), - [anon_sym_L_SQUOTE] = ACTIONS(2305), - [anon_sym_u_SQUOTE] = ACTIONS(2305), - [anon_sym_U_SQUOTE] = ACTIONS(2305), - [anon_sym_u8_SQUOTE] = ACTIONS(2305), - [anon_sym_SQUOTE] = ACTIONS(2305), - [anon_sym_L_DQUOTE] = ACTIONS(2307), - [anon_sym_u_DQUOTE] = ACTIONS(2307), - [anon_sym_U_DQUOTE] = ACTIONS(2307), - [anon_sym_u8_DQUOTE] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [sym_true] = ACTIONS(2309), - [sym_false] = ACTIONS(2309), - [anon_sym_NULL] = ACTIONS(2311), - [anon_sym_nullptr] = ACTIONS(2311), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2315), - [anon_sym_R_DQUOTE] = ACTIONS(2317), - [anon_sym_LR_DQUOTE] = ACTIONS(2317), - [anon_sym_uR_DQUOTE] = ACTIONS(2317), - [anon_sym_UR_DQUOTE] = ACTIONS(2317), - [anon_sym_u8R_DQUOTE] = ACTIONS(2317), - [anon_sym_co_await] = ACTIONS(2319), - [anon_sym_new] = ACTIONS(2321), - [anon_sym_requires] = ACTIONS(2323), - [sym_this] = ACTIONS(2309), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), - [sym_semgrep_named_ellipsis] = ACTIONS(2327), - }, - [1414] = { - [sym_expression] = STATE(2987), - [sym_expression_not_binary] = STATE(3362), - [sym_conditional_expression] = STATE(3356), - [sym_assignment_expression] = STATE(3356), - [sym_pointer_expression] = STATE(3367), - [sym_unary_expression] = STATE(3356), - [sym_binary_expression] = STATE(3362), - [sym_update_expression] = STATE(3356), - [sym_cast_expression] = STATE(3356), - [sym_sizeof_expression] = STATE(3356), - [sym_alignof_expression] = STATE(3356), - [sym_offsetof_expression] = STATE(3356), - [sym_generic_expression] = STATE(3356), - [sym_subscript_expression] = STATE(3367), - [sym_call_expression] = STATE(3367), - [sym_gnu_asm_expression] = STATE(3356), - [sym_field_expression] = STATE(3367), - [sym_compound_literal_expression] = STATE(3356), - [sym_parenthesized_expression] = STATE(3367), - [sym_char_literal] = STATE(3167), - [sym_concatenated_string] = STATE(3167), - [sym_string_literal] = STATE(1962), - [sym_null] = STATE(3356), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9141), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3356), - [sym_raw_string_literal] = STATE(1962), - [sym_co_await_expression] = STATE(3356), - [sym_new_expression] = STATE(3356), - [sym_delete_expression] = STATE(3356), - [sym_requires_clause] = STATE(3356), - [sym_requires_expression] = STATE(3356), - [sym_lambda_expression] = STATE(3356), - [sym_lambda_capture_specifier] = STATE(7329), - [sym_fold_expression] = STATE(3356), - [sym_parameter_pack_expansion] = STATE(3356), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3367), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3367), - [sym_semgrep_ellipsis] = STATE(3362), - [sym_deep_ellipsis] = STATE(3362), - [sym_identifier] = ACTIONS(5048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5050), - [anon_sym_LPAREN2] = ACTIONS(5114), - [anon_sym_BANG] = ACTIONS(2285), - [anon_sym_TILDE] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2283), - [anon_sym_PLUS] = ACTIONS(2283), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2291), - [anon_sym_not] = ACTIONS(2283), - [anon_sym_compl] = ACTIONS(2283), - [anon_sym_DASH_DASH] = ACTIONS(5052), - [anon_sym_PLUS_PLUS] = ACTIONS(5052), - [anon_sym_sizeof] = ACTIONS(2293), - [anon_sym___alignof__] = ACTIONS(2295), - [anon_sym___alignof] = ACTIONS(2295), - [anon_sym__alignof] = ACTIONS(2295), - [anon_sym_alignof] = ACTIONS(2295), - [anon_sym__Alignof] = ACTIONS(2295), - [anon_sym_offsetof] = ACTIONS(2297), - [anon_sym__Generic] = ACTIONS(2299), - [anon_sym_asm] = ACTIONS(2301), - [anon_sym___asm__] = ACTIONS(2301), - [sym_number_literal] = ACTIONS(2303), - [anon_sym_L_SQUOTE] = ACTIONS(2305), - [anon_sym_u_SQUOTE] = ACTIONS(2305), - [anon_sym_U_SQUOTE] = ACTIONS(2305), - [anon_sym_u8_SQUOTE] = ACTIONS(2305), - [anon_sym_SQUOTE] = ACTIONS(2305), - [anon_sym_L_DQUOTE] = ACTIONS(2307), - [anon_sym_u_DQUOTE] = ACTIONS(2307), - [anon_sym_U_DQUOTE] = ACTIONS(2307), - [anon_sym_u8_DQUOTE] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [sym_true] = ACTIONS(2309), - [sym_false] = ACTIONS(2309), - [anon_sym_NULL] = ACTIONS(2311), - [anon_sym_nullptr] = ACTIONS(2311), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2315), - [anon_sym_R_DQUOTE] = ACTIONS(2317), - [anon_sym_LR_DQUOTE] = ACTIONS(2317), - [anon_sym_uR_DQUOTE] = ACTIONS(2317), - [anon_sym_UR_DQUOTE] = ACTIONS(2317), - [anon_sym_u8R_DQUOTE] = ACTIONS(2317), - [anon_sym_co_await] = ACTIONS(2319), - [anon_sym_new] = ACTIONS(2321), - [anon_sym_requires] = ACTIONS(2323), - [sym_this] = ACTIONS(2309), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), - [sym_semgrep_named_ellipsis] = ACTIONS(2327), - }, - [1415] = { - [sym_expression] = STATE(2982), - [sym_expression_not_binary] = STATE(3362), - [sym_conditional_expression] = STATE(3356), - [sym_assignment_expression] = STATE(3356), - [sym_pointer_expression] = STATE(3367), - [sym_unary_expression] = STATE(3356), - [sym_binary_expression] = STATE(3362), - [sym_update_expression] = STATE(3356), - [sym_cast_expression] = STATE(3356), - [sym_sizeof_expression] = STATE(3356), - [sym_alignof_expression] = STATE(3356), - [sym_offsetof_expression] = STATE(3356), - [sym_generic_expression] = STATE(3356), - [sym_subscript_expression] = STATE(3367), - [sym_call_expression] = STATE(3367), - [sym_gnu_asm_expression] = STATE(3356), - [sym_field_expression] = STATE(3367), - [sym_compound_literal_expression] = STATE(3356), - [sym_parenthesized_expression] = STATE(3367), - [sym_char_literal] = STATE(3167), - [sym_concatenated_string] = STATE(3167), - [sym_string_literal] = STATE(1962), - [sym_null] = STATE(3356), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9141), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3356), - [sym_raw_string_literal] = STATE(1962), - [sym_co_await_expression] = STATE(3356), - [sym_new_expression] = STATE(3356), - [sym_delete_expression] = STATE(3356), - [sym_requires_clause] = STATE(3356), - [sym_requires_expression] = STATE(3356), - [sym_lambda_expression] = STATE(3356), - [sym_lambda_capture_specifier] = STATE(7329), - [sym_fold_expression] = STATE(3356), - [sym_parameter_pack_expansion] = STATE(3356), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3367), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3367), - [sym_semgrep_ellipsis] = STATE(3362), - [sym_deep_ellipsis] = STATE(3362), - [sym_identifier] = ACTIONS(5048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5050), - [anon_sym_LPAREN2] = ACTIONS(5114), - [anon_sym_BANG] = ACTIONS(2285), - [anon_sym_TILDE] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2283), - [anon_sym_PLUS] = ACTIONS(2283), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), + [1476] = { + [sym_expression] = STATE(2896), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(5356), + [anon_sym_LBRACK] = ACTIONS(3044), [sym_primitive_type] = ACTIONS(2291), - [anon_sym_not] = ACTIONS(2283), - [anon_sym_compl] = ACTIONS(2283), - [anon_sym_DASH_DASH] = ACTIONS(5052), - [anon_sym_PLUS_PLUS] = ACTIONS(5052), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), [anon_sym_sizeof] = ACTIONS(2293), [anon_sym___alignof__] = ACTIONS(2295), [anon_sym___alignof] = ACTIONS(2295), @@ -244448,7 +240148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(2315), [anon_sym_R_DQUOTE] = ACTIONS(2317), [anon_sym_LR_DQUOTE] = ACTIONS(2317), @@ -244462,67 +240162,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1416] = { - [sym_expression] = STATE(3087), - [sym_expression_not_binary] = STATE(3362), - [sym_conditional_expression] = STATE(3356), - [sym_assignment_expression] = STATE(3356), - [sym_pointer_expression] = STATE(3367), - [sym_unary_expression] = STATE(3356), - [sym_binary_expression] = STATE(3362), - [sym_update_expression] = STATE(3356), - [sym_cast_expression] = STATE(3356), - [sym_sizeof_expression] = STATE(3356), - [sym_alignof_expression] = STATE(3356), - [sym_offsetof_expression] = STATE(3356), - [sym_generic_expression] = STATE(3356), - [sym_subscript_expression] = STATE(3367), - [sym_call_expression] = STATE(3367), - [sym_gnu_asm_expression] = STATE(3356), - [sym_field_expression] = STATE(3367), - [sym_compound_literal_expression] = STATE(3356), - [sym_parenthesized_expression] = STATE(3367), - [sym_char_literal] = STATE(3167), - [sym_concatenated_string] = STATE(3167), - [sym_string_literal] = STATE(1962), - [sym_null] = STATE(3356), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9141), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3356), - [sym_raw_string_literal] = STATE(1962), - [sym_co_await_expression] = STATE(3356), - [sym_new_expression] = STATE(3356), - [sym_delete_expression] = STATE(3356), - [sym_requires_clause] = STATE(3356), - [sym_requires_expression] = STATE(3356), - [sym_lambda_expression] = STATE(3356), - [sym_lambda_capture_specifier] = STATE(7329), - [sym_fold_expression] = STATE(3356), - [sym_parameter_pack_expansion] = STATE(3356), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3367), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3367), - [sym_semgrep_ellipsis] = STATE(3362), - [sym_deep_ellipsis] = STATE(3362), - [sym_identifier] = ACTIONS(5048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5050), - [anon_sym_LPAREN2] = ACTIONS(5114), - [anon_sym_BANG] = ACTIONS(2285), - [anon_sym_TILDE] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2283), - [anon_sym_PLUS] = ACTIONS(2283), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), + [1477] = { + [sym_expression] = STATE(2896), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(5296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(3049), + [anon_sym_LBRACK] = ACTIONS(3044), [sym_primitive_type] = ACTIONS(2291), - [anon_sym_not] = ACTIONS(2283), - [anon_sym_compl] = ACTIONS(2283), - [anon_sym_DASH_DASH] = ACTIONS(5052), - [anon_sym_PLUS_PLUS] = ACTIONS(5052), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), [anon_sym_sizeof] = ACTIONS(2293), [anon_sym___alignof__] = ACTIONS(2295), [anon_sym___alignof] = ACTIONS(2295), @@ -244550,7 +240250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(2315), [anon_sym_R_DQUOTE] = ACTIONS(2317), [anon_sym_LR_DQUOTE] = ACTIONS(2317), @@ -244564,169 +240264,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1417] = { - [sym_expression] = STATE(5894), - [sym_expression_not_binary] = STATE(6169), - [sym_conditional_expression] = STATE(6267), - [sym_assignment_expression] = STATE(6267), - [sym_pointer_expression] = STATE(4422), - [sym_unary_expression] = STATE(6267), - [sym_binary_expression] = STATE(6169), - [sym_update_expression] = STATE(6267), - [sym_cast_expression] = STATE(6267), - [sym_sizeof_expression] = STATE(6267), - [sym_alignof_expression] = STATE(6267), - [sym_offsetof_expression] = STATE(6267), - [sym_generic_expression] = STATE(6267), - [sym_subscript_expression] = STATE(4422), - [sym_call_expression] = STATE(4422), - [sym_gnu_asm_expression] = STATE(6267), - [sym_field_expression] = STATE(4422), - [sym_compound_literal_expression] = STATE(6267), - [sym_parenthesized_expression] = STATE(4422), - [sym_char_literal] = STATE(6147), - [sym_concatenated_string] = STATE(6147), - [sym_string_literal] = STATE(4563), - [sym_null] = STATE(6267), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9242), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6267), - [sym_raw_string_literal] = STATE(4563), - [sym_co_await_expression] = STATE(6267), - [sym_new_expression] = STATE(6267), - [sym_delete_expression] = STATE(6267), - [sym_requires_clause] = STATE(6267), - [sym_requires_expression] = STATE(6267), - [sym_lambda_expression] = STATE(6267), - [sym_lambda_capture_specifier] = STATE(7263), - [sym_fold_expression] = STATE(6267), - [sym_parameter_pack_expansion] = STATE(6267), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4422), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4422), - [sym_semgrep_ellipsis] = STATE(6169), - [sym_deep_ellipsis] = STATE(6169), - [sym_identifier] = ACTIONS(4112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5054), - [anon_sym_LPAREN2] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_TILDE] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4122), - [anon_sym_not] = ACTIONS(4114), - [anon_sym_compl] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(5056), - [anon_sym_PLUS_PLUS] = ACTIONS(5056), - [anon_sym_sizeof] = ACTIONS(4124), - [anon_sym___alignof__] = ACTIONS(4126), - [anon_sym___alignof] = ACTIONS(4126), - [anon_sym__alignof] = ACTIONS(4126), - [anon_sym_alignof] = ACTIONS(4126), - [anon_sym__Alignof] = ACTIONS(4126), - [anon_sym_offsetof] = ACTIONS(4128), - [anon_sym__Generic] = ACTIONS(4130), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4136), - [anon_sym_u_SQUOTE] = ACTIONS(4136), - [anon_sym_U_SQUOTE] = ACTIONS(4136), - [anon_sym_u8_SQUOTE] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_L_DQUOTE] = ACTIONS(4138), - [anon_sym_u_DQUOTE] = ACTIONS(4138), - [anon_sym_U_DQUOTE] = ACTIONS(4138), - [anon_sym_u8_DQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [anon_sym_NULL] = ACTIONS(4142), - [anon_sym_nullptr] = ACTIONS(4142), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4150), - [anon_sym_requires] = ACTIONS(4152), - [sym_this] = ACTIONS(4140), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4154), - [sym_semgrep_named_ellipsis] = ACTIONS(4156), - }, - [1418] = { - [sym_expression] = STATE(3005), - [sym_expression_not_binary] = STATE(3362), - [sym_conditional_expression] = STATE(3356), - [sym_assignment_expression] = STATE(3356), - [sym_pointer_expression] = STATE(3367), - [sym_unary_expression] = STATE(3356), - [sym_binary_expression] = STATE(3362), - [sym_update_expression] = STATE(3356), - [sym_cast_expression] = STATE(3356), - [sym_sizeof_expression] = STATE(3356), - [sym_alignof_expression] = STATE(3356), - [sym_offsetof_expression] = STATE(3356), - [sym_generic_expression] = STATE(3356), - [sym_subscript_expression] = STATE(3367), - [sym_call_expression] = STATE(3367), - [sym_gnu_asm_expression] = STATE(3356), - [sym_field_expression] = STATE(3367), - [sym_compound_literal_expression] = STATE(3356), - [sym_parenthesized_expression] = STATE(3367), - [sym_char_literal] = STATE(3167), - [sym_concatenated_string] = STATE(3167), - [sym_string_literal] = STATE(1962), - [sym_null] = STATE(3356), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9141), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3356), - [sym_raw_string_literal] = STATE(1962), - [sym_co_await_expression] = STATE(3356), - [sym_new_expression] = STATE(3356), - [sym_delete_expression] = STATE(3356), - [sym_requires_clause] = STATE(3356), - [sym_requires_expression] = STATE(3356), - [sym_lambda_expression] = STATE(3356), - [sym_lambda_capture_specifier] = STATE(7329), - [sym_fold_expression] = STATE(3356), - [sym_parameter_pack_expansion] = STATE(3356), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3367), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3367), - [sym_semgrep_ellipsis] = STATE(3362), - [sym_deep_ellipsis] = STATE(3362), - [sym_identifier] = ACTIONS(5048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5050), - [anon_sym_LPAREN2] = ACTIONS(5114), - [anon_sym_BANG] = ACTIONS(2285), - [anon_sym_TILDE] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2283), - [anon_sym_PLUS] = ACTIONS(2283), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), + [1478] = { + [sym_expression] = STATE(2970), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(3049), + [anon_sym_LBRACK] = ACTIONS(3044), [sym_primitive_type] = ACTIONS(2291), - [anon_sym_not] = ACTIONS(2283), - [anon_sym_compl] = ACTIONS(2283), - [anon_sym_DASH_DASH] = ACTIONS(5052), - [anon_sym_PLUS_PLUS] = ACTIONS(5052), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), [anon_sym_sizeof] = ACTIONS(2293), [anon_sym___alignof__] = ACTIONS(2295), [anon_sym___alignof] = ACTIONS(2295), @@ -244754,7 +240352,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(2315), [anon_sym_R_DQUOTE] = ACTIONS(2317), [anon_sym_LR_DQUOTE] = ACTIONS(2317), @@ -244768,67 +240366,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1419] = { - [sym_expression] = STATE(3009), - [sym_expression_not_binary] = STATE(3362), - [sym_conditional_expression] = STATE(3356), - [sym_assignment_expression] = STATE(3356), - [sym_pointer_expression] = STATE(3367), - [sym_unary_expression] = STATE(3356), - [sym_binary_expression] = STATE(3362), - [sym_update_expression] = STATE(3356), - [sym_cast_expression] = STATE(3356), - [sym_sizeof_expression] = STATE(3356), - [sym_alignof_expression] = STATE(3356), - [sym_offsetof_expression] = STATE(3356), - [sym_generic_expression] = STATE(3356), - [sym_subscript_expression] = STATE(3367), - [sym_call_expression] = STATE(3367), - [sym_gnu_asm_expression] = STATE(3356), - [sym_field_expression] = STATE(3367), - [sym_compound_literal_expression] = STATE(3356), - [sym_parenthesized_expression] = STATE(3367), - [sym_char_literal] = STATE(3167), - [sym_concatenated_string] = STATE(3167), - [sym_string_literal] = STATE(1962), - [sym_null] = STATE(3356), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9141), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3356), - [sym_raw_string_literal] = STATE(1962), - [sym_co_await_expression] = STATE(3356), - [sym_new_expression] = STATE(3356), - [sym_delete_expression] = STATE(3356), - [sym_requires_clause] = STATE(3356), - [sym_requires_expression] = STATE(3356), - [sym_lambda_expression] = STATE(3356), - [sym_lambda_capture_specifier] = STATE(7329), - [sym_fold_expression] = STATE(3356), - [sym_parameter_pack_expansion] = STATE(3356), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3367), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3367), - [sym_semgrep_ellipsis] = STATE(3362), - [sym_deep_ellipsis] = STATE(3362), - [sym_identifier] = ACTIONS(5048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5050), - [anon_sym_LPAREN2] = ACTIONS(5114), - [anon_sym_BANG] = ACTIONS(2285), - [anon_sym_TILDE] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2283), - [anon_sym_PLUS] = ACTIONS(2283), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), + [1479] = { + [sym_expression] = STATE(2973), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5298), + [anon_sym_LPAREN2] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(3049), + [anon_sym_LBRACK] = ACTIONS(3044), [sym_primitive_type] = ACTIONS(2291), - [anon_sym_not] = ACTIONS(2283), - [anon_sym_compl] = ACTIONS(2283), - [anon_sym_DASH_DASH] = ACTIONS(5052), - [anon_sym_PLUS_PLUS] = ACTIONS(5052), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), [anon_sym_sizeof] = ACTIONS(2293), [anon_sym___alignof__] = ACTIONS(2295), [anon_sym___alignof] = ACTIONS(2295), @@ -244856,7 +240454,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(2315), [anon_sym_R_DQUOTE] = ACTIONS(2317), [anon_sym_LR_DQUOTE] = ACTIONS(2317), @@ -244870,1083 +240468,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1420] = { - [sym_expression] = STATE(3439), - [sym_expression_not_binary] = STATE(3786), - [sym_conditional_expression] = STATE(3784), - [sym_assignment_expression] = STATE(3784), - [sym_pointer_expression] = STATE(3787), - [sym_unary_expression] = STATE(3784), - [sym_binary_expression] = STATE(3786), - [sym_update_expression] = STATE(3784), - [sym_cast_expression] = STATE(3784), - [sym_sizeof_expression] = STATE(3784), - [sym_alignof_expression] = STATE(3784), - [sym_offsetof_expression] = STATE(3784), - [sym_generic_expression] = STATE(3784), - [sym_subscript_expression] = STATE(3787), - [sym_call_expression] = STATE(3787), - [sym_gnu_asm_expression] = STATE(3784), - [sym_field_expression] = STATE(3787), - [sym_compound_literal_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3787), - [sym_char_literal] = STATE(3471), - [sym_concatenated_string] = STATE(3471), - [sym_string_literal] = STATE(2063), - [sym_null] = STATE(3784), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9229), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3784), - [sym_raw_string_literal] = STATE(2063), - [sym_co_await_expression] = STATE(3784), - [sym_new_expression] = STATE(3784), - [sym_delete_expression] = STATE(3784), - [sym_requires_clause] = STATE(3784), - [sym_requires_expression] = STATE(3784), - [sym_lambda_expression] = STATE(3784), - [sym_lambda_capture_specifier] = STATE(7253), - [sym_fold_expression] = STATE(3784), - [sym_parameter_pack_expansion] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3787), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3787), - [sym_semgrep_ellipsis] = STATE(3786), - [sym_deep_ellipsis] = STATE(3786), - [sym_identifier] = ACTIONS(5062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5064), - [anon_sym_LPAREN2] = ACTIONS(5108), - [anon_sym_BANG] = ACTIONS(2383), - [anon_sym_TILDE] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACK] = ACTIONS(5358), - [sym_primitive_type] = ACTIONS(2389), - [anon_sym_not] = ACTIONS(2381), - [anon_sym_compl] = ACTIONS(2381), - [anon_sym_DASH_DASH] = ACTIONS(5066), - [anon_sym_PLUS_PLUS] = ACTIONS(5066), - [anon_sym_sizeof] = ACTIONS(2391), - [anon_sym___alignof__] = ACTIONS(2393), - [anon_sym___alignof] = ACTIONS(2393), - [anon_sym__alignof] = ACTIONS(2393), - [anon_sym_alignof] = ACTIONS(2393), - [anon_sym__Alignof] = ACTIONS(2393), - [anon_sym_offsetof] = ACTIONS(2395), - [anon_sym__Generic] = ACTIONS(2397), - [anon_sym_asm] = ACTIONS(2399), - [anon_sym___asm__] = ACTIONS(2399), - [sym_number_literal] = ACTIONS(2401), - [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(2405), - [anon_sym_u_DQUOTE] = ACTIONS(2405), - [anon_sym_U_DQUOTE] = ACTIONS(2405), - [anon_sym_u8_DQUOTE] = ACTIONS(2405), - [anon_sym_DQUOTE] = ACTIONS(2405), - [sym_true] = ACTIONS(2407), - [sym_false] = ACTIONS(2407), - [anon_sym_NULL] = ACTIONS(2409), - [anon_sym_nullptr] = ACTIONS(2409), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2411), - [anon_sym_R_DQUOTE] = ACTIONS(2413), - [anon_sym_LR_DQUOTE] = ACTIONS(2413), - [anon_sym_uR_DQUOTE] = ACTIONS(2413), - [anon_sym_UR_DQUOTE] = ACTIONS(2413), - [anon_sym_u8R_DQUOTE] = ACTIONS(2413), - [anon_sym_co_await] = ACTIONS(2415), - [anon_sym_new] = ACTIONS(2417), - [anon_sym_requires] = ACTIONS(2419), - [sym_this] = ACTIONS(2407), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2421), - [sym_semgrep_named_ellipsis] = ACTIONS(2423), - }, - [1421] = { - [sym_expression] = STATE(3454), - [sym_expression_not_binary] = STATE(3786), - [sym_conditional_expression] = STATE(3784), - [sym_assignment_expression] = STATE(3784), - [sym_pointer_expression] = STATE(3787), - [sym_unary_expression] = STATE(3784), - [sym_binary_expression] = STATE(3786), - [sym_update_expression] = STATE(3784), - [sym_cast_expression] = STATE(3784), - [sym_sizeof_expression] = STATE(3784), - [sym_alignof_expression] = STATE(3784), - [sym_offsetof_expression] = STATE(3784), - [sym_generic_expression] = STATE(3784), - [sym_subscript_expression] = STATE(3787), - [sym_call_expression] = STATE(3787), - [sym_gnu_asm_expression] = STATE(3784), - [sym_field_expression] = STATE(3787), - [sym_compound_literal_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3787), - [sym_char_literal] = STATE(3471), - [sym_concatenated_string] = STATE(3471), - [sym_string_literal] = STATE(2063), - [sym_null] = STATE(3784), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9229), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3784), - [sym_raw_string_literal] = STATE(2063), - [sym_co_await_expression] = STATE(3784), - [sym_new_expression] = STATE(3784), - [sym_delete_expression] = STATE(3784), - [sym_requires_clause] = STATE(3784), - [sym_requires_expression] = STATE(3784), - [sym_lambda_expression] = STATE(3784), - [sym_lambda_capture_specifier] = STATE(7253), - [sym_fold_expression] = STATE(3784), - [sym_parameter_pack_expansion] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3787), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3787), - [sym_semgrep_ellipsis] = STATE(3786), - [sym_deep_ellipsis] = STATE(3786), - [sym_identifier] = ACTIONS(5062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5064), - [anon_sym_LPAREN2] = ACTIONS(5108), - [anon_sym_BANG] = ACTIONS(2383), - [anon_sym_TILDE] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2389), - [anon_sym_not] = ACTIONS(2381), - [anon_sym_compl] = ACTIONS(2381), - [anon_sym_DASH_DASH] = ACTIONS(5066), - [anon_sym_PLUS_PLUS] = ACTIONS(5066), - [anon_sym_sizeof] = ACTIONS(2391), - [anon_sym___alignof__] = ACTIONS(2393), - [anon_sym___alignof] = ACTIONS(2393), - [anon_sym__alignof] = ACTIONS(2393), - [anon_sym_alignof] = ACTIONS(2393), - [anon_sym__Alignof] = ACTIONS(2393), - [anon_sym_offsetof] = ACTIONS(2395), - [anon_sym__Generic] = ACTIONS(2397), - [anon_sym_asm] = ACTIONS(2399), - [anon_sym___asm__] = ACTIONS(2399), - [sym_number_literal] = ACTIONS(2401), - [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(2405), - [anon_sym_u_DQUOTE] = ACTIONS(2405), - [anon_sym_U_DQUOTE] = ACTIONS(2405), - [anon_sym_u8_DQUOTE] = ACTIONS(2405), - [anon_sym_DQUOTE] = ACTIONS(2405), - [sym_true] = ACTIONS(2407), - [sym_false] = ACTIONS(2407), - [anon_sym_NULL] = ACTIONS(2409), - [anon_sym_nullptr] = ACTIONS(2409), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2411), - [anon_sym_R_DQUOTE] = ACTIONS(2413), - [anon_sym_LR_DQUOTE] = ACTIONS(2413), - [anon_sym_uR_DQUOTE] = ACTIONS(2413), - [anon_sym_UR_DQUOTE] = ACTIONS(2413), - [anon_sym_u8R_DQUOTE] = ACTIONS(2413), - [anon_sym_co_await] = ACTIONS(2415), - [anon_sym_new] = ACTIONS(2417), - [anon_sym_requires] = ACTIONS(2419), - [sym_this] = ACTIONS(2407), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2421), - [sym_semgrep_named_ellipsis] = ACTIONS(2423), - }, - [1422] = { - [sym_expression] = STATE(3425), - [sym_expression_not_binary] = STATE(3786), - [sym_conditional_expression] = STATE(3784), - [sym_assignment_expression] = STATE(3784), - [sym_pointer_expression] = STATE(3787), - [sym_unary_expression] = STATE(3784), - [sym_binary_expression] = STATE(3786), - [sym_update_expression] = STATE(3784), - [sym_cast_expression] = STATE(3784), - [sym_sizeof_expression] = STATE(3784), - [sym_alignof_expression] = STATE(3784), - [sym_offsetof_expression] = STATE(3784), - [sym_generic_expression] = STATE(3784), - [sym_subscript_expression] = STATE(3787), - [sym_call_expression] = STATE(3787), - [sym_gnu_asm_expression] = STATE(3784), - [sym_field_expression] = STATE(3787), - [sym_compound_literal_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3787), - [sym_char_literal] = STATE(3471), - [sym_concatenated_string] = STATE(3471), - [sym_string_literal] = STATE(2063), - [sym_null] = STATE(3784), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9229), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3784), - [sym_raw_string_literal] = STATE(2063), - [sym_co_await_expression] = STATE(3784), - [sym_new_expression] = STATE(3784), - [sym_delete_expression] = STATE(3784), - [sym_requires_clause] = STATE(3784), - [sym_requires_expression] = STATE(3784), - [sym_lambda_expression] = STATE(3784), - [sym_lambda_capture_specifier] = STATE(7253), - [sym_fold_expression] = STATE(3784), - [sym_parameter_pack_expansion] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3787), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3787), - [sym_semgrep_ellipsis] = STATE(3786), - [sym_deep_ellipsis] = STATE(3786), - [sym_identifier] = ACTIONS(5062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5064), - [anon_sym_LPAREN2] = ACTIONS(5108), - [anon_sym_BANG] = ACTIONS(2383), - [anon_sym_TILDE] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACK] = ACTIONS(5360), - [sym_primitive_type] = ACTIONS(2389), - [anon_sym_not] = ACTIONS(2381), - [anon_sym_compl] = ACTIONS(2381), - [anon_sym_DASH_DASH] = ACTIONS(5066), - [anon_sym_PLUS_PLUS] = ACTIONS(5066), - [anon_sym_sizeof] = ACTIONS(2391), - [anon_sym___alignof__] = ACTIONS(2393), - [anon_sym___alignof] = ACTIONS(2393), - [anon_sym__alignof] = ACTIONS(2393), - [anon_sym_alignof] = ACTIONS(2393), - [anon_sym__Alignof] = ACTIONS(2393), - [anon_sym_offsetof] = ACTIONS(2395), - [anon_sym__Generic] = ACTIONS(2397), - [anon_sym_asm] = ACTIONS(2399), - [anon_sym___asm__] = ACTIONS(2399), - [sym_number_literal] = ACTIONS(2401), - [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(2405), - [anon_sym_u_DQUOTE] = ACTIONS(2405), - [anon_sym_U_DQUOTE] = ACTIONS(2405), - [anon_sym_u8_DQUOTE] = ACTIONS(2405), - [anon_sym_DQUOTE] = ACTIONS(2405), - [sym_true] = ACTIONS(2407), - [sym_false] = ACTIONS(2407), - [anon_sym_NULL] = ACTIONS(2409), - [anon_sym_nullptr] = ACTIONS(2409), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2411), - [anon_sym_R_DQUOTE] = ACTIONS(2413), - [anon_sym_LR_DQUOTE] = ACTIONS(2413), - [anon_sym_uR_DQUOTE] = ACTIONS(2413), - [anon_sym_UR_DQUOTE] = ACTIONS(2413), - [anon_sym_u8R_DQUOTE] = ACTIONS(2413), - [anon_sym_co_await] = ACTIONS(2415), - [anon_sym_new] = ACTIONS(2417), - [anon_sym_requires] = ACTIONS(2419), - [sym_this] = ACTIONS(2407), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2421), - [sym_semgrep_named_ellipsis] = ACTIONS(2423), - }, - [1423] = { - [sym_expression] = STATE(3355), - [sym_expression_not_binary] = STATE(3786), - [sym_conditional_expression] = STATE(3784), - [sym_assignment_expression] = STATE(3784), - [sym_pointer_expression] = STATE(3787), - [sym_unary_expression] = STATE(3784), - [sym_binary_expression] = STATE(3786), - [sym_update_expression] = STATE(3784), - [sym_cast_expression] = STATE(3784), - [sym_sizeof_expression] = STATE(3784), - [sym_alignof_expression] = STATE(3784), - [sym_offsetof_expression] = STATE(3784), - [sym_generic_expression] = STATE(3784), - [sym_subscript_expression] = STATE(3787), - [sym_call_expression] = STATE(3787), - [sym_gnu_asm_expression] = STATE(3784), - [sym_field_expression] = STATE(3787), - [sym_compound_literal_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3787), - [sym_char_literal] = STATE(3471), - [sym_concatenated_string] = STATE(3471), - [sym_string_literal] = STATE(2063), - [sym_null] = STATE(3784), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9229), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3784), - [sym_raw_string_literal] = STATE(2063), - [sym_co_await_expression] = STATE(3784), - [sym_new_expression] = STATE(3784), - [sym_delete_expression] = STATE(3784), - [sym_requires_clause] = STATE(3784), - [sym_requires_expression] = STATE(3784), - [sym_lambda_expression] = STATE(3784), - [sym_lambda_capture_specifier] = STATE(7253), - [sym_fold_expression] = STATE(3784), - [sym_parameter_pack_expansion] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3787), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3787), - [sym_semgrep_ellipsis] = STATE(3786), - [sym_deep_ellipsis] = STATE(3786), - [sym_identifier] = ACTIONS(5062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5064), - [anon_sym_LPAREN2] = ACTIONS(5108), - [anon_sym_BANG] = ACTIONS(2383), - [anon_sym_TILDE] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2389), - [anon_sym_not] = ACTIONS(2381), - [anon_sym_compl] = ACTIONS(2381), - [anon_sym_DASH_DASH] = ACTIONS(5066), - [anon_sym_PLUS_PLUS] = ACTIONS(5066), - [anon_sym_sizeof] = ACTIONS(2391), - [anon_sym___alignof__] = ACTIONS(2393), - [anon_sym___alignof] = ACTIONS(2393), - [anon_sym__alignof] = ACTIONS(2393), - [anon_sym_alignof] = ACTIONS(2393), - [anon_sym__Alignof] = ACTIONS(2393), - [anon_sym_offsetof] = ACTIONS(2395), - [anon_sym__Generic] = ACTIONS(2397), - [anon_sym_asm] = ACTIONS(2399), - [anon_sym___asm__] = ACTIONS(2399), - [sym_number_literal] = ACTIONS(2401), - [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(2405), - [anon_sym_u_DQUOTE] = ACTIONS(2405), - [anon_sym_U_DQUOTE] = ACTIONS(2405), - [anon_sym_u8_DQUOTE] = ACTIONS(2405), - [anon_sym_DQUOTE] = ACTIONS(2405), - [sym_true] = ACTIONS(2407), - [sym_false] = ACTIONS(2407), - [anon_sym_NULL] = ACTIONS(2409), - [anon_sym_nullptr] = ACTIONS(2409), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2411), - [anon_sym_R_DQUOTE] = ACTIONS(2413), - [anon_sym_LR_DQUOTE] = ACTIONS(2413), - [anon_sym_uR_DQUOTE] = ACTIONS(2413), - [anon_sym_UR_DQUOTE] = ACTIONS(2413), - [anon_sym_u8R_DQUOTE] = ACTIONS(2413), - [anon_sym_co_await] = ACTIONS(2415), - [anon_sym_new] = ACTIONS(2417), - [anon_sym_requires] = ACTIONS(2419), - [sym_this] = ACTIONS(2407), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2421), - [sym_semgrep_named_ellipsis] = ACTIONS(2423), - }, - [1424] = { - [sym_expression] = STATE(3390), - [sym_expression_not_binary] = STATE(3786), - [sym_conditional_expression] = STATE(3784), - [sym_assignment_expression] = STATE(3784), - [sym_pointer_expression] = STATE(3787), - [sym_unary_expression] = STATE(3784), - [sym_binary_expression] = STATE(3786), - [sym_update_expression] = STATE(3784), - [sym_cast_expression] = STATE(3784), - [sym_sizeof_expression] = STATE(3784), - [sym_alignof_expression] = STATE(3784), - [sym_offsetof_expression] = STATE(3784), - [sym_generic_expression] = STATE(3784), - [sym_subscript_expression] = STATE(3787), - [sym_call_expression] = STATE(3787), - [sym_gnu_asm_expression] = STATE(3784), - [sym_field_expression] = STATE(3787), - [sym_compound_literal_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3787), - [sym_char_literal] = STATE(3471), - [sym_concatenated_string] = STATE(3471), - [sym_string_literal] = STATE(2063), - [sym_null] = STATE(3784), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9229), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3784), - [sym_raw_string_literal] = STATE(2063), - [sym_co_await_expression] = STATE(3784), - [sym_new_expression] = STATE(3784), - [sym_delete_expression] = STATE(3784), - [sym_requires_clause] = STATE(3784), - [sym_requires_expression] = STATE(3784), - [sym_lambda_expression] = STATE(3784), - [sym_lambda_capture_specifier] = STATE(7253), - [sym_fold_expression] = STATE(3784), - [sym_parameter_pack_expansion] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3787), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3787), - [sym_semgrep_ellipsis] = STATE(3786), - [sym_deep_ellipsis] = STATE(3786), - [sym_identifier] = ACTIONS(5062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5064), - [anon_sym_LPAREN2] = ACTIONS(5108), - [anon_sym_BANG] = ACTIONS(2383), - [anon_sym_TILDE] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2389), - [anon_sym_not] = ACTIONS(2381), - [anon_sym_compl] = ACTIONS(2381), - [anon_sym_DASH_DASH] = ACTIONS(5066), - [anon_sym_PLUS_PLUS] = ACTIONS(5066), - [anon_sym_sizeof] = ACTIONS(2391), - [anon_sym___alignof__] = ACTIONS(2393), - [anon_sym___alignof] = ACTIONS(2393), - [anon_sym__alignof] = ACTIONS(2393), - [anon_sym_alignof] = ACTIONS(2393), - [anon_sym__Alignof] = ACTIONS(2393), - [anon_sym_offsetof] = ACTIONS(2395), - [anon_sym__Generic] = ACTIONS(2397), - [anon_sym_asm] = ACTIONS(2399), - [anon_sym___asm__] = ACTIONS(2399), - [sym_number_literal] = ACTIONS(2401), - [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(2405), - [anon_sym_u_DQUOTE] = ACTIONS(2405), - [anon_sym_U_DQUOTE] = ACTIONS(2405), - [anon_sym_u8_DQUOTE] = ACTIONS(2405), - [anon_sym_DQUOTE] = ACTIONS(2405), - [sym_true] = ACTIONS(2407), - [sym_false] = ACTIONS(2407), - [anon_sym_NULL] = ACTIONS(2409), - [anon_sym_nullptr] = ACTIONS(2409), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2411), - [anon_sym_R_DQUOTE] = ACTIONS(2413), - [anon_sym_LR_DQUOTE] = ACTIONS(2413), - [anon_sym_uR_DQUOTE] = ACTIONS(2413), - [anon_sym_UR_DQUOTE] = ACTIONS(2413), - [anon_sym_u8R_DQUOTE] = ACTIONS(2413), - [anon_sym_co_await] = ACTIONS(2415), - [anon_sym_new] = ACTIONS(2417), - [anon_sym_requires] = ACTIONS(2419), - [sym_this] = ACTIONS(2407), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2421), - [sym_semgrep_named_ellipsis] = ACTIONS(2423), - }, - [1425] = { - [sym_expression] = STATE(3405), - [sym_expression_not_binary] = STATE(3786), - [sym_conditional_expression] = STATE(3784), - [sym_assignment_expression] = STATE(3784), - [sym_pointer_expression] = STATE(3787), - [sym_unary_expression] = STATE(3784), - [sym_binary_expression] = STATE(3786), - [sym_update_expression] = STATE(3784), - [sym_cast_expression] = STATE(3784), - [sym_sizeof_expression] = STATE(3784), - [sym_alignof_expression] = STATE(3784), - [sym_offsetof_expression] = STATE(3784), - [sym_generic_expression] = STATE(3784), - [sym_subscript_expression] = STATE(3787), - [sym_call_expression] = STATE(3787), - [sym_gnu_asm_expression] = STATE(3784), - [sym_field_expression] = STATE(3787), - [sym_compound_literal_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3787), - [sym_char_literal] = STATE(3471), - [sym_concatenated_string] = STATE(3471), - [sym_string_literal] = STATE(2063), - [sym_null] = STATE(3784), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9229), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3784), - [sym_raw_string_literal] = STATE(2063), - [sym_co_await_expression] = STATE(3784), - [sym_new_expression] = STATE(3784), - [sym_delete_expression] = STATE(3784), - [sym_requires_clause] = STATE(3784), - [sym_requires_expression] = STATE(3784), - [sym_lambda_expression] = STATE(3784), - [sym_lambda_capture_specifier] = STATE(7253), - [sym_fold_expression] = STATE(3784), - [sym_parameter_pack_expansion] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3787), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3787), - [sym_semgrep_ellipsis] = STATE(3786), - [sym_deep_ellipsis] = STATE(3786), - [sym_identifier] = ACTIONS(5062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5064), - [anon_sym_LPAREN2] = ACTIONS(5108), - [anon_sym_BANG] = ACTIONS(2383), - [anon_sym_TILDE] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2389), - [anon_sym_not] = ACTIONS(2381), - [anon_sym_compl] = ACTIONS(2381), - [anon_sym_DASH_DASH] = ACTIONS(5066), - [anon_sym_PLUS_PLUS] = ACTIONS(5066), - [anon_sym_sizeof] = ACTIONS(2391), - [anon_sym___alignof__] = ACTIONS(2393), - [anon_sym___alignof] = ACTIONS(2393), - [anon_sym__alignof] = ACTIONS(2393), - [anon_sym_alignof] = ACTIONS(2393), - [anon_sym__Alignof] = ACTIONS(2393), - [anon_sym_offsetof] = ACTIONS(2395), - [anon_sym__Generic] = ACTIONS(2397), - [anon_sym_asm] = ACTIONS(2399), - [anon_sym___asm__] = ACTIONS(2399), - [sym_number_literal] = ACTIONS(2401), - [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(2405), - [anon_sym_u_DQUOTE] = ACTIONS(2405), - [anon_sym_U_DQUOTE] = ACTIONS(2405), - [anon_sym_u8_DQUOTE] = ACTIONS(2405), - [anon_sym_DQUOTE] = ACTIONS(2405), - [sym_true] = ACTIONS(2407), - [sym_false] = ACTIONS(2407), - [anon_sym_NULL] = ACTIONS(2409), - [anon_sym_nullptr] = ACTIONS(2409), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2411), - [anon_sym_R_DQUOTE] = ACTIONS(2413), - [anon_sym_LR_DQUOTE] = ACTIONS(2413), - [anon_sym_uR_DQUOTE] = ACTIONS(2413), - [anon_sym_UR_DQUOTE] = ACTIONS(2413), - [anon_sym_u8R_DQUOTE] = ACTIONS(2413), - [anon_sym_co_await] = ACTIONS(2415), - [anon_sym_new] = ACTIONS(2417), - [anon_sym_requires] = ACTIONS(2419), - [sym_this] = ACTIONS(2407), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2421), - [sym_semgrep_named_ellipsis] = ACTIONS(2423), - }, - [1426] = { - [sym_expression] = STATE(3754), - [sym_expression_not_binary] = STATE(4050), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9276), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [sym_identifier] = ACTIONS(2854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2858), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), - }, - [1427] = { - [sym_expression] = STATE(3754), - [sym_expression_not_binary] = STATE(4050), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9276), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [sym_identifier] = ACTIONS(5362), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2858), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), - }, - [1428] = { - [sym_expression] = STATE(3666), - [sym_expression_not_binary] = STATE(4050), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9276), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [sym_identifier] = ACTIONS(2854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2858), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), - }, - [1429] = { - [sym_expression] = STATE(3680), - [sym_expression_not_binary] = STATE(4050), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9276), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [sym_identifier] = ACTIONS(2854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5364), - [anon_sym_LPAREN2] = ACTIONS(5366), + [1480] = { + [sym_expression] = STATE(3325), + [sym_expression_not_binary] = STATE(3766), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8737), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [sym_identifier] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3706), + [anon_sym_LPAREN2] = ACTIONS(3042), [anon_sym_BANG] = ACTIONS(2203), [anon_sym_TILDE] = ACTIONS(2203), [anon_sym_DASH] = ACTIONS(2207), [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2858), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2660), [anon_sym_not] = ACTIONS(2207), [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, - [1430] = { - [sym_expression] = STATE(5926), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1481] = { + [sym_expression] = STATE(5485), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(5302), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -245978,7 +240658,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -245992,1287 +240672,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1431] = { - [sym_expression] = STATE(3980), - [sym_expression_not_binary] = STATE(4505), - [sym_conditional_expression] = STATE(4488), - [sym_assignment_expression] = STATE(4488), - [sym_pointer_expression] = STATE(4524), - [sym_unary_expression] = STATE(4488), - [sym_binary_expression] = STATE(4505), - [sym_update_expression] = STATE(4488), - [sym_cast_expression] = STATE(4488), - [sym_sizeof_expression] = STATE(4488), - [sym_alignof_expression] = STATE(4488), - [sym_offsetof_expression] = STATE(4488), - [sym_generic_expression] = STATE(4488), - [sym_subscript_expression] = STATE(4524), - [sym_call_expression] = STATE(4524), - [sym_gnu_asm_expression] = STATE(4488), - [sym_field_expression] = STATE(4524), - [sym_compound_literal_expression] = STATE(4488), - [sym_parenthesized_expression] = STATE(4524), - [sym_char_literal] = STATE(4272), - [sym_concatenated_string] = STATE(4272), - [sym_string_literal] = STATE(2514), - [sym_null] = STATE(4488), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9512), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4488), - [sym_raw_string_literal] = STATE(2514), - [sym_co_await_expression] = STATE(4488), - [sym_new_expression] = STATE(4488), - [sym_delete_expression] = STATE(4488), - [sym_requires_clause] = STATE(4488), - [sym_requires_expression] = STATE(4488), - [sym_lambda_expression] = STATE(4488), - [sym_lambda_capture_specifier] = STATE(7259), - [sym_fold_expression] = STATE(4488), - [sym_parameter_pack_expansion] = STATE(4488), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4524), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4524), - [sym_semgrep_ellipsis] = STATE(4505), - [sym_deep_ellipsis] = STATE(4505), - [sym_identifier] = ACTIONS(2999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4972), - [anon_sym_LPAREN2] = ACTIONS(5134), - [anon_sym_BANG] = ACTIONS(3003), - [anon_sym_TILDE] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3009), - [anon_sym_not] = ACTIONS(3001), - [anon_sym_compl] = ACTIONS(3001), - [anon_sym_DASH_DASH] = ACTIONS(4974), - [anon_sym_PLUS_PLUS] = ACTIONS(4974), - [anon_sym_sizeof] = ACTIONS(3011), - [anon_sym___alignof__] = ACTIONS(3013), - [anon_sym___alignof] = ACTIONS(3013), - [anon_sym__alignof] = ACTIONS(3013), - [anon_sym_alignof] = ACTIONS(3013), - [anon_sym__Alignof] = ACTIONS(3013), - [anon_sym_offsetof] = ACTIONS(3015), - [anon_sym__Generic] = ACTIONS(3017), - [anon_sym_asm] = ACTIONS(3019), - [anon_sym___asm__] = ACTIONS(3019), - [sym_number_literal] = ACTIONS(3021), - [anon_sym_L_SQUOTE] = ACTIONS(3023), - [anon_sym_u_SQUOTE] = ACTIONS(3023), - [anon_sym_U_SQUOTE] = ACTIONS(3023), - [anon_sym_u8_SQUOTE] = ACTIONS(3023), - [anon_sym_SQUOTE] = ACTIONS(3023), - [anon_sym_L_DQUOTE] = ACTIONS(3025), - [anon_sym_u_DQUOTE] = ACTIONS(3025), - [anon_sym_U_DQUOTE] = ACTIONS(3025), - [anon_sym_u8_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [anon_sym_NULL] = ACTIONS(3029), - [anon_sym_nullptr] = ACTIONS(3029), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(3033), - [anon_sym_LR_DQUOTE] = ACTIONS(3033), - [anon_sym_uR_DQUOTE] = ACTIONS(3033), - [anon_sym_UR_DQUOTE] = ACTIONS(3033), - [anon_sym_u8R_DQUOTE] = ACTIONS(3033), - [anon_sym_co_await] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_requires] = ACTIONS(3039), - [sym_this] = ACTIONS(3027), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3041), - [sym_semgrep_named_ellipsis] = ACTIONS(3043), - }, - [1432] = { - [sym_expression] = STATE(3261), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1433] = { - [sym_expression] = STATE(4326), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5150), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), - }, - [1434] = { - [sym_expression] = STATE(4329), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5150), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), - }, - [1435] = { - [sym_expression] = STATE(4330), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5150), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), - }, - [1436] = { - [sym_expression] = STATE(4334), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5150), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), - }, - [1437] = { - [sym_expression] = STATE(4335), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5150), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), - }, - [1438] = { - [sym_expression] = STATE(4336), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5150), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), - }, - [1439] = { - [sym_expression] = STATE(4338), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5150), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), - }, - [1440] = { - [sym_expression] = STATE(4348), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5150), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), - }, - [1441] = { - [sym_expression] = STATE(4351), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5150), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), - }, - [1442] = { - [sym_expression] = STATE(4356), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5150), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), - }, - [1443] = { - [sym_expression] = STATE(5792), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1482] = { + [sym_expression] = STATE(5493), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -247304,7 +240760,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -247318,63 +240774,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1444] = { - [sym_expression] = STATE(5949), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1483] = { + [sym_expression] = STATE(5233), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -247406,7 +240862,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -247420,267 +240876,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1445] = { - [sym_expression] = STATE(3763), - [sym_expression_not_binary] = STATE(4050), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9276), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [sym_identifier] = ACTIONS(2854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(5368), - [sym_primitive_type] = ACTIONS(2858), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), - }, - [1446] = { - [sym_expression] = STATE(3610), - [sym_expression_not_binary] = STATE(4050), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9276), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [sym_identifier] = ACTIONS(2854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2858), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), - }, - [1447] = { - [sym_expression] = STATE(5098), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1484] = { + [sym_expression] = STATE(5283), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -247712,7 +240964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -247726,165 +240978,1593 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1448] = { - [sym_expression] = STATE(3658), - [sym_expression_not_binary] = STATE(4050), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9276), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [sym_identifier] = ACTIONS(2854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(3047), + [1485] = { + [sym_expression] = STATE(3479), + [sym_expression_not_binary] = STATE(3766), + [sym_conditional_expression] = STATE(3739), + [sym_assignment_expression] = STATE(3739), + [sym_pointer_expression] = STATE(3774), + [sym_unary_expression] = STATE(3739), + [sym_binary_expression] = STATE(3766), + [sym_update_expression] = STATE(3739), + [sym_cast_expression] = STATE(3739), + [sym_sizeof_expression] = STATE(3739), + [sym_alignof_expression] = STATE(3739), + [sym_offsetof_expression] = STATE(3739), + [sym_generic_expression] = STATE(3739), + [sym_subscript_expression] = STATE(3774), + [sym_call_expression] = STATE(3774), + [sym_gnu_asm_expression] = STATE(3739), + [sym_field_expression] = STATE(3774), + [sym_compound_literal_expression] = STATE(3739), + [sym_parenthesized_expression] = STATE(3774), + [sym_char_literal] = STATE(3647), + [sym_concatenated_string] = STATE(3647), + [sym_string_literal] = STATE(2469), + [sym_null] = STATE(3739), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8737), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3739), + [sym_raw_string_literal] = STATE(2469), + [sym_co_await_expression] = STATE(3739), + [sym_new_expression] = STATE(3739), + [sym_delete_expression] = STATE(3739), + [sym_requires_clause] = STATE(3739), + [sym_requires_expression] = STATE(3739), + [sym_lambda_expression] = STATE(3739), + [sym_lambda_capture_specifier] = STATE(6817), + [sym_fold_expression] = STATE(3739), + [sym_parameter_pack_expansion] = STATE(3739), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3774), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3774), + [sym_semgrep_ellipsis] = STATE(3766), + [sym_deep_ellipsis] = STATE(3766), + [sym_identifier] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3706), + [anon_sym_LPAREN2] = ACTIONS(3042), [anon_sym_BANG] = ACTIONS(2203), [anon_sym_TILDE] = ACTIONS(2203), [anon_sym_DASH] = ACTIONS(2207), [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(5370), - [sym_primitive_type] = ACTIONS(2858), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2660), [anon_sym_not] = ACTIONS(2207), [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_sizeof] = ACTIONS(2231), + [anon_sym___alignof__] = ACTIONS(2233), + [anon_sym___alignof] = ACTIONS(2233), + [anon_sym__alignof] = ACTIONS(2233), + [anon_sym_alignof] = ACTIONS(2233), + [anon_sym__Alignof] = ACTIONS(2233), + [anon_sym_offsetof] = ACTIONS(2235), + [anon_sym__Generic] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2239), + [anon_sym___asm__] = ACTIONS(2239), + [sym_number_literal] = ACTIONS(2241), + [anon_sym_L_SQUOTE] = ACTIONS(2243), + [anon_sym_u_SQUOTE] = ACTIONS(2243), + [anon_sym_U_SQUOTE] = ACTIONS(2243), + [anon_sym_u8_SQUOTE] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_L_DQUOTE] = ACTIONS(2245), + [anon_sym_u_DQUOTE] = ACTIONS(2245), + [anon_sym_U_DQUOTE] = ACTIONS(2245), + [anon_sym_u8_DQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [anon_sym_NULL] = ACTIONS(2249), + [anon_sym_nullptr] = ACTIONS(2249), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2259), + [anon_sym_R_DQUOTE] = ACTIONS(2261), + [anon_sym_LR_DQUOTE] = ACTIONS(2261), + [anon_sym_uR_DQUOTE] = ACTIONS(2261), + [anon_sym_UR_DQUOTE] = ACTIONS(2261), + [anon_sym_u8R_DQUOTE] = ACTIONS(2261), + [anon_sym_co_await] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_requires] = ACTIONS(2267), + [sym_this] = ACTIONS(2247), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2269), + [sym_semgrep_named_ellipsis] = ACTIONS(2271), }, - [1449] = { - [sym_expression] = STATE(5853), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1486] = { + [sym_expression] = STATE(3880), + [sym_expression_not_binary] = STATE(4146), + [sym_conditional_expression] = STATE(4141), + [sym_assignment_expression] = STATE(4141), + [sym_pointer_expression] = STATE(4149), + [sym_unary_expression] = STATE(4141), + [sym_binary_expression] = STATE(4146), + [sym_update_expression] = STATE(4141), + [sym_cast_expression] = STATE(4141), + [sym_sizeof_expression] = STATE(4141), + [sym_alignof_expression] = STATE(4141), + [sym_offsetof_expression] = STATE(4141), + [sym_generic_expression] = STATE(4141), + [sym_subscript_expression] = STATE(4149), + [sym_call_expression] = STATE(4149), + [sym_gnu_asm_expression] = STATE(4141), + [sym_field_expression] = STATE(4149), + [sym_compound_literal_expression] = STATE(4141), + [sym_parenthesized_expression] = STATE(4149), + [sym_char_literal] = STATE(4104), + [sym_concatenated_string] = STATE(4104), + [sym_string_literal] = STATE(2642), + [sym_null] = STATE(4141), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8879), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4141), + [sym_raw_string_literal] = STATE(2642), + [sym_co_await_expression] = STATE(4141), + [sym_new_expression] = STATE(4141), + [sym_delete_expression] = STATE(4141), + [sym_requires_clause] = STATE(4141), + [sym_requires_expression] = STATE(4141), + [sym_lambda_expression] = STATE(4141), + [sym_lambda_capture_specifier] = STATE(6832), + [sym_fold_expression] = STATE(4141), + [sym_parameter_pack_expansion] = STATE(4141), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4149), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4149), + [sym_semgrep_ellipsis] = STATE(4146), + [sym_deep_ellipsis] = STATE(4146), + [sym_identifier] = ACTIONS(2981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4990), + [anon_sym_LPAREN2] = ACTIONS(5044), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(2987), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2991), + [anon_sym_not] = ACTIONS(2983), + [anon_sym_compl] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(4992), + [anon_sym_PLUS_PLUS] = ACTIONS(4992), + [anon_sym_sizeof] = ACTIONS(2993), + [anon_sym___alignof__] = ACTIONS(2995), + [anon_sym___alignof] = ACTIONS(2995), + [anon_sym__alignof] = ACTIONS(2995), + [anon_sym_alignof] = ACTIONS(2995), + [anon_sym__Alignof] = ACTIONS(2995), + [anon_sym_offsetof] = ACTIONS(2997), + [anon_sym__Generic] = ACTIONS(2999), + [anon_sym_asm] = ACTIONS(3001), + [anon_sym___asm__] = ACTIONS(3001), + [sym_number_literal] = ACTIONS(3003), + [anon_sym_L_SQUOTE] = ACTIONS(3005), + [anon_sym_u_SQUOTE] = ACTIONS(3005), + [anon_sym_U_SQUOTE] = ACTIONS(3005), + [anon_sym_u8_SQUOTE] = ACTIONS(3005), + [anon_sym_SQUOTE] = ACTIONS(3005), + [anon_sym_L_DQUOTE] = ACTIONS(3007), + [anon_sym_u_DQUOTE] = ACTIONS(3007), + [anon_sym_U_DQUOTE] = ACTIONS(3007), + [anon_sym_u8_DQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE] = ACTIONS(3007), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [anon_sym_NULL] = ACTIONS(3011), + [anon_sym_nullptr] = ACTIONS(3011), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3013), + [anon_sym_R_DQUOTE] = ACTIONS(3015), + [anon_sym_LR_DQUOTE] = ACTIONS(3015), + [anon_sym_uR_DQUOTE] = ACTIONS(3015), + [anon_sym_UR_DQUOTE] = ACTIONS(3015), + [anon_sym_u8R_DQUOTE] = ACTIONS(3015), + [anon_sym_co_await] = ACTIONS(3017), + [anon_sym_new] = ACTIONS(3019), + [anon_sym_requires] = ACTIONS(3021), + [sym_this] = ACTIONS(3009), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3023), + [sym_semgrep_named_ellipsis] = ACTIONS(3025), + }, + [1487] = { + [sym_expression] = STATE(3882), + [sym_expression_not_binary] = STATE(4146), + [sym_conditional_expression] = STATE(4141), + [sym_assignment_expression] = STATE(4141), + [sym_pointer_expression] = STATE(4149), + [sym_unary_expression] = STATE(4141), + [sym_binary_expression] = STATE(4146), + [sym_update_expression] = STATE(4141), + [sym_cast_expression] = STATE(4141), + [sym_sizeof_expression] = STATE(4141), + [sym_alignof_expression] = STATE(4141), + [sym_offsetof_expression] = STATE(4141), + [sym_generic_expression] = STATE(4141), + [sym_subscript_expression] = STATE(4149), + [sym_call_expression] = STATE(4149), + [sym_gnu_asm_expression] = STATE(4141), + [sym_field_expression] = STATE(4149), + [sym_compound_literal_expression] = STATE(4141), + [sym_parenthesized_expression] = STATE(4149), + [sym_char_literal] = STATE(4104), + [sym_concatenated_string] = STATE(4104), + [sym_string_literal] = STATE(2642), + [sym_null] = STATE(4141), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8879), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4141), + [sym_raw_string_literal] = STATE(2642), + [sym_co_await_expression] = STATE(4141), + [sym_new_expression] = STATE(4141), + [sym_delete_expression] = STATE(4141), + [sym_requires_clause] = STATE(4141), + [sym_requires_expression] = STATE(4141), + [sym_lambda_expression] = STATE(4141), + [sym_lambda_capture_specifier] = STATE(6832), + [sym_fold_expression] = STATE(4141), + [sym_parameter_pack_expansion] = STATE(4141), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4149), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4149), + [sym_semgrep_ellipsis] = STATE(4146), + [sym_deep_ellipsis] = STATE(4146), + [sym_identifier] = ACTIONS(2981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4990), + [anon_sym_LPAREN2] = ACTIONS(5044), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(2987), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2991), + [anon_sym_not] = ACTIONS(2983), + [anon_sym_compl] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(4992), + [anon_sym_PLUS_PLUS] = ACTIONS(4992), + [anon_sym_sizeof] = ACTIONS(2993), + [anon_sym___alignof__] = ACTIONS(2995), + [anon_sym___alignof] = ACTIONS(2995), + [anon_sym__alignof] = ACTIONS(2995), + [anon_sym_alignof] = ACTIONS(2995), + [anon_sym__Alignof] = ACTIONS(2995), + [anon_sym_offsetof] = ACTIONS(2997), + [anon_sym__Generic] = ACTIONS(2999), + [anon_sym_asm] = ACTIONS(3001), + [anon_sym___asm__] = ACTIONS(3001), + [sym_number_literal] = ACTIONS(3003), + [anon_sym_L_SQUOTE] = ACTIONS(3005), + [anon_sym_u_SQUOTE] = ACTIONS(3005), + [anon_sym_U_SQUOTE] = ACTIONS(3005), + [anon_sym_u8_SQUOTE] = ACTIONS(3005), + [anon_sym_SQUOTE] = ACTIONS(3005), + [anon_sym_L_DQUOTE] = ACTIONS(3007), + [anon_sym_u_DQUOTE] = ACTIONS(3007), + [anon_sym_U_DQUOTE] = ACTIONS(3007), + [anon_sym_u8_DQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE] = ACTIONS(3007), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [anon_sym_NULL] = ACTIONS(3011), + [anon_sym_nullptr] = ACTIONS(3011), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3013), + [anon_sym_R_DQUOTE] = ACTIONS(3015), + [anon_sym_LR_DQUOTE] = ACTIONS(3015), + [anon_sym_uR_DQUOTE] = ACTIONS(3015), + [anon_sym_UR_DQUOTE] = ACTIONS(3015), + [anon_sym_u8R_DQUOTE] = ACTIONS(3015), + [anon_sym_co_await] = ACTIONS(3017), + [anon_sym_new] = ACTIONS(3019), + [anon_sym_requires] = ACTIONS(3021), + [sym_this] = ACTIONS(3009), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3023), + [sym_semgrep_named_ellipsis] = ACTIONS(3025), + }, + [1488] = { + [sym_expression] = STATE(3883), + [sym_expression_not_binary] = STATE(4146), + [sym_conditional_expression] = STATE(4141), + [sym_assignment_expression] = STATE(4141), + [sym_pointer_expression] = STATE(4149), + [sym_unary_expression] = STATE(4141), + [sym_binary_expression] = STATE(4146), + [sym_update_expression] = STATE(4141), + [sym_cast_expression] = STATE(4141), + [sym_sizeof_expression] = STATE(4141), + [sym_alignof_expression] = STATE(4141), + [sym_offsetof_expression] = STATE(4141), + [sym_generic_expression] = STATE(4141), + [sym_subscript_expression] = STATE(4149), + [sym_call_expression] = STATE(4149), + [sym_gnu_asm_expression] = STATE(4141), + [sym_field_expression] = STATE(4149), + [sym_compound_literal_expression] = STATE(4141), + [sym_parenthesized_expression] = STATE(4149), + [sym_char_literal] = STATE(4104), + [sym_concatenated_string] = STATE(4104), + [sym_string_literal] = STATE(2642), + [sym_null] = STATE(4141), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8879), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4141), + [sym_raw_string_literal] = STATE(2642), + [sym_co_await_expression] = STATE(4141), + [sym_new_expression] = STATE(4141), + [sym_delete_expression] = STATE(4141), + [sym_requires_clause] = STATE(4141), + [sym_requires_expression] = STATE(4141), + [sym_lambda_expression] = STATE(4141), + [sym_lambda_capture_specifier] = STATE(6832), + [sym_fold_expression] = STATE(4141), + [sym_parameter_pack_expansion] = STATE(4141), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4149), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4149), + [sym_semgrep_ellipsis] = STATE(4146), + [sym_deep_ellipsis] = STATE(4146), + [sym_identifier] = ACTIONS(2981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4990), + [anon_sym_LPAREN2] = ACTIONS(5044), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(2987), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2991), + [anon_sym_not] = ACTIONS(2983), + [anon_sym_compl] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(4992), + [anon_sym_PLUS_PLUS] = ACTIONS(4992), + [anon_sym_sizeof] = ACTIONS(2993), + [anon_sym___alignof__] = ACTIONS(2995), + [anon_sym___alignof] = ACTIONS(2995), + [anon_sym__alignof] = ACTIONS(2995), + [anon_sym_alignof] = ACTIONS(2995), + [anon_sym__Alignof] = ACTIONS(2995), + [anon_sym_offsetof] = ACTIONS(2997), + [anon_sym__Generic] = ACTIONS(2999), + [anon_sym_asm] = ACTIONS(3001), + [anon_sym___asm__] = ACTIONS(3001), + [sym_number_literal] = ACTIONS(3003), + [anon_sym_L_SQUOTE] = ACTIONS(3005), + [anon_sym_u_SQUOTE] = ACTIONS(3005), + [anon_sym_U_SQUOTE] = ACTIONS(3005), + [anon_sym_u8_SQUOTE] = ACTIONS(3005), + [anon_sym_SQUOTE] = ACTIONS(3005), + [anon_sym_L_DQUOTE] = ACTIONS(3007), + [anon_sym_u_DQUOTE] = ACTIONS(3007), + [anon_sym_U_DQUOTE] = ACTIONS(3007), + [anon_sym_u8_DQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE] = ACTIONS(3007), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [anon_sym_NULL] = ACTIONS(3011), + [anon_sym_nullptr] = ACTIONS(3011), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3013), + [anon_sym_R_DQUOTE] = ACTIONS(3015), + [anon_sym_LR_DQUOTE] = ACTIONS(3015), + [anon_sym_uR_DQUOTE] = ACTIONS(3015), + [anon_sym_UR_DQUOTE] = ACTIONS(3015), + [anon_sym_u8R_DQUOTE] = ACTIONS(3015), + [anon_sym_co_await] = ACTIONS(3017), + [anon_sym_new] = ACTIONS(3019), + [anon_sym_requires] = ACTIONS(3021), + [sym_this] = ACTIONS(3009), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3023), + [sym_semgrep_named_ellipsis] = ACTIONS(3025), + }, + [1489] = { + [sym_expression] = STATE(3884), + [sym_expression_not_binary] = STATE(4146), + [sym_conditional_expression] = STATE(4141), + [sym_assignment_expression] = STATE(4141), + [sym_pointer_expression] = STATE(4149), + [sym_unary_expression] = STATE(4141), + [sym_binary_expression] = STATE(4146), + [sym_update_expression] = STATE(4141), + [sym_cast_expression] = STATE(4141), + [sym_sizeof_expression] = STATE(4141), + [sym_alignof_expression] = STATE(4141), + [sym_offsetof_expression] = STATE(4141), + [sym_generic_expression] = STATE(4141), + [sym_subscript_expression] = STATE(4149), + [sym_call_expression] = STATE(4149), + [sym_gnu_asm_expression] = STATE(4141), + [sym_field_expression] = STATE(4149), + [sym_compound_literal_expression] = STATE(4141), + [sym_parenthesized_expression] = STATE(4149), + [sym_char_literal] = STATE(4104), + [sym_concatenated_string] = STATE(4104), + [sym_string_literal] = STATE(2642), + [sym_null] = STATE(4141), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8879), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4141), + [sym_raw_string_literal] = STATE(2642), + [sym_co_await_expression] = STATE(4141), + [sym_new_expression] = STATE(4141), + [sym_delete_expression] = STATE(4141), + [sym_requires_clause] = STATE(4141), + [sym_requires_expression] = STATE(4141), + [sym_lambda_expression] = STATE(4141), + [sym_lambda_capture_specifier] = STATE(6832), + [sym_fold_expression] = STATE(4141), + [sym_parameter_pack_expansion] = STATE(4141), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4149), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4149), + [sym_semgrep_ellipsis] = STATE(4146), + [sym_deep_ellipsis] = STATE(4146), + [sym_identifier] = ACTIONS(2981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4990), + [anon_sym_LPAREN2] = ACTIONS(5044), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(2987), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2991), + [anon_sym_not] = ACTIONS(2983), + [anon_sym_compl] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(4992), + [anon_sym_PLUS_PLUS] = ACTIONS(4992), + [anon_sym_sizeof] = ACTIONS(2993), + [anon_sym___alignof__] = ACTIONS(2995), + [anon_sym___alignof] = ACTIONS(2995), + [anon_sym__alignof] = ACTIONS(2995), + [anon_sym_alignof] = ACTIONS(2995), + [anon_sym__Alignof] = ACTIONS(2995), + [anon_sym_offsetof] = ACTIONS(2997), + [anon_sym__Generic] = ACTIONS(2999), + [anon_sym_asm] = ACTIONS(3001), + [anon_sym___asm__] = ACTIONS(3001), + [sym_number_literal] = ACTIONS(3003), + [anon_sym_L_SQUOTE] = ACTIONS(3005), + [anon_sym_u_SQUOTE] = ACTIONS(3005), + [anon_sym_U_SQUOTE] = ACTIONS(3005), + [anon_sym_u8_SQUOTE] = ACTIONS(3005), + [anon_sym_SQUOTE] = ACTIONS(3005), + [anon_sym_L_DQUOTE] = ACTIONS(3007), + [anon_sym_u_DQUOTE] = ACTIONS(3007), + [anon_sym_U_DQUOTE] = ACTIONS(3007), + [anon_sym_u8_DQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE] = ACTIONS(3007), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [anon_sym_NULL] = ACTIONS(3011), + [anon_sym_nullptr] = ACTIONS(3011), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3013), + [anon_sym_R_DQUOTE] = ACTIONS(3015), + [anon_sym_LR_DQUOTE] = ACTIONS(3015), + [anon_sym_uR_DQUOTE] = ACTIONS(3015), + [anon_sym_UR_DQUOTE] = ACTIONS(3015), + [anon_sym_u8R_DQUOTE] = ACTIONS(3015), + [anon_sym_co_await] = ACTIONS(3017), + [anon_sym_new] = ACTIONS(3019), + [anon_sym_requires] = ACTIONS(3021), + [sym_this] = ACTIONS(3009), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3023), + [sym_semgrep_named_ellipsis] = ACTIONS(3025), + }, + [1490] = { + [sym_expression] = STATE(3885), + [sym_expression_not_binary] = STATE(4146), + [sym_conditional_expression] = STATE(4141), + [sym_assignment_expression] = STATE(4141), + [sym_pointer_expression] = STATE(4149), + [sym_unary_expression] = STATE(4141), + [sym_binary_expression] = STATE(4146), + [sym_update_expression] = STATE(4141), + [sym_cast_expression] = STATE(4141), + [sym_sizeof_expression] = STATE(4141), + [sym_alignof_expression] = STATE(4141), + [sym_offsetof_expression] = STATE(4141), + [sym_generic_expression] = STATE(4141), + [sym_subscript_expression] = STATE(4149), + [sym_call_expression] = STATE(4149), + [sym_gnu_asm_expression] = STATE(4141), + [sym_field_expression] = STATE(4149), + [sym_compound_literal_expression] = STATE(4141), + [sym_parenthesized_expression] = STATE(4149), + [sym_char_literal] = STATE(4104), + [sym_concatenated_string] = STATE(4104), + [sym_string_literal] = STATE(2642), + [sym_null] = STATE(4141), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8879), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4141), + [sym_raw_string_literal] = STATE(2642), + [sym_co_await_expression] = STATE(4141), + [sym_new_expression] = STATE(4141), + [sym_delete_expression] = STATE(4141), + [sym_requires_clause] = STATE(4141), + [sym_requires_expression] = STATE(4141), + [sym_lambda_expression] = STATE(4141), + [sym_lambda_capture_specifier] = STATE(6832), + [sym_fold_expression] = STATE(4141), + [sym_parameter_pack_expansion] = STATE(4141), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4149), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4149), + [sym_semgrep_ellipsis] = STATE(4146), + [sym_deep_ellipsis] = STATE(4146), + [sym_identifier] = ACTIONS(2981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4990), + [anon_sym_LPAREN2] = ACTIONS(5044), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(2987), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2991), + [anon_sym_not] = ACTIONS(2983), + [anon_sym_compl] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(4992), + [anon_sym_PLUS_PLUS] = ACTIONS(4992), + [anon_sym_sizeof] = ACTIONS(2993), + [anon_sym___alignof__] = ACTIONS(2995), + [anon_sym___alignof] = ACTIONS(2995), + [anon_sym__alignof] = ACTIONS(2995), + [anon_sym_alignof] = ACTIONS(2995), + [anon_sym__Alignof] = ACTIONS(2995), + [anon_sym_offsetof] = ACTIONS(2997), + [anon_sym__Generic] = ACTIONS(2999), + [anon_sym_asm] = ACTIONS(3001), + [anon_sym___asm__] = ACTIONS(3001), + [sym_number_literal] = ACTIONS(3003), + [anon_sym_L_SQUOTE] = ACTIONS(3005), + [anon_sym_u_SQUOTE] = ACTIONS(3005), + [anon_sym_U_SQUOTE] = ACTIONS(3005), + [anon_sym_u8_SQUOTE] = ACTIONS(3005), + [anon_sym_SQUOTE] = ACTIONS(3005), + [anon_sym_L_DQUOTE] = ACTIONS(3007), + [anon_sym_u_DQUOTE] = ACTIONS(3007), + [anon_sym_U_DQUOTE] = ACTIONS(3007), + [anon_sym_u8_DQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE] = ACTIONS(3007), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [anon_sym_NULL] = ACTIONS(3011), + [anon_sym_nullptr] = ACTIONS(3011), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3013), + [anon_sym_R_DQUOTE] = ACTIONS(3015), + [anon_sym_LR_DQUOTE] = ACTIONS(3015), + [anon_sym_uR_DQUOTE] = ACTIONS(3015), + [anon_sym_UR_DQUOTE] = ACTIONS(3015), + [anon_sym_u8R_DQUOTE] = ACTIONS(3015), + [anon_sym_co_await] = ACTIONS(3017), + [anon_sym_new] = ACTIONS(3019), + [anon_sym_requires] = ACTIONS(3021), + [sym_this] = ACTIONS(3009), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3023), + [sym_semgrep_named_ellipsis] = ACTIONS(3025), + }, + [1491] = { + [sym_expression] = STATE(3886), + [sym_expression_not_binary] = STATE(4146), + [sym_conditional_expression] = STATE(4141), + [sym_assignment_expression] = STATE(4141), + [sym_pointer_expression] = STATE(4149), + [sym_unary_expression] = STATE(4141), + [sym_binary_expression] = STATE(4146), + [sym_update_expression] = STATE(4141), + [sym_cast_expression] = STATE(4141), + [sym_sizeof_expression] = STATE(4141), + [sym_alignof_expression] = STATE(4141), + [sym_offsetof_expression] = STATE(4141), + [sym_generic_expression] = STATE(4141), + [sym_subscript_expression] = STATE(4149), + [sym_call_expression] = STATE(4149), + [sym_gnu_asm_expression] = STATE(4141), + [sym_field_expression] = STATE(4149), + [sym_compound_literal_expression] = STATE(4141), + [sym_parenthesized_expression] = STATE(4149), + [sym_char_literal] = STATE(4104), + [sym_concatenated_string] = STATE(4104), + [sym_string_literal] = STATE(2642), + [sym_null] = STATE(4141), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8879), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4141), + [sym_raw_string_literal] = STATE(2642), + [sym_co_await_expression] = STATE(4141), + [sym_new_expression] = STATE(4141), + [sym_delete_expression] = STATE(4141), + [sym_requires_clause] = STATE(4141), + [sym_requires_expression] = STATE(4141), + [sym_lambda_expression] = STATE(4141), + [sym_lambda_capture_specifier] = STATE(6832), + [sym_fold_expression] = STATE(4141), + [sym_parameter_pack_expansion] = STATE(4141), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4149), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4149), + [sym_semgrep_ellipsis] = STATE(4146), + [sym_deep_ellipsis] = STATE(4146), + [sym_identifier] = ACTIONS(2981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4990), + [anon_sym_LPAREN2] = ACTIONS(5044), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(2987), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2991), + [anon_sym_not] = ACTIONS(2983), + [anon_sym_compl] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(4992), + [anon_sym_PLUS_PLUS] = ACTIONS(4992), + [anon_sym_sizeof] = ACTIONS(2993), + [anon_sym___alignof__] = ACTIONS(2995), + [anon_sym___alignof] = ACTIONS(2995), + [anon_sym__alignof] = ACTIONS(2995), + [anon_sym_alignof] = ACTIONS(2995), + [anon_sym__Alignof] = ACTIONS(2995), + [anon_sym_offsetof] = ACTIONS(2997), + [anon_sym__Generic] = ACTIONS(2999), + [anon_sym_asm] = ACTIONS(3001), + [anon_sym___asm__] = ACTIONS(3001), + [sym_number_literal] = ACTIONS(3003), + [anon_sym_L_SQUOTE] = ACTIONS(3005), + [anon_sym_u_SQUOTE] = ACTIONS(3005), + [anon_sym_U_SQUOTE] = ACTIONS(3005), + [anon_sym_u8_SQUOTE] = ACTIONS(3005), + [anon_sym_SQUOTE] = ACTIONS(3005), + [anon_sym_L_DQUOTE] = ACTIONS(3007), + [anon_sym_u_DQUOTE] = ACTIONS(3007), + [anon_sym_U_DQUOTE] = ACTIONS(3007), + [anon_sym_u8_DQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE] = ACTIONS(3007), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [anon_sym_NULL] = ACTIONS(3011), + [anon_sym_nullptr] = ACTIONS(3011), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3013), + [anon_sym_R_DQUOTE] = ACTIONS(3015), + [anon_sym_LR_DQUOTE] = ACTIONS(3015), + [anon_sym_uR_DQUOTE] = ACTIONS(3015), + [anon_sym_UR_DQUOTE] = ACTIONS(3015), + [anon_sym_u8R_DQUOTE] = ACTIONS(3015), + [anon_sym_co_await] = ACTIONS(3017), + [anon_sym_new] = ACTIONS(3019), + [anon_sym_requires] = ACTIONS(3021), + [sym_this] = ACTIONS(3009), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3023), + [sym_semgrep_named_ellipsis] = ACTIONS(3025), + }, + [1492] = { + [sym_expression] = STATE(3887), + [sym_expression_not_binary] = STATE(4146), + [sym_conditional_expression] = STATE(4141), + [sym_assignment_expression] = STATE(4141), + [sym_pointer_expression] = STATE(4149), + [sym_unary_expression] = STATE(4141), + [sym_binary_expression] = STATE(4146), + [sym_update_expression] = STATE(4141), + [sym_cast_expression] = STATE(4141), + [sym_sizeof_expression] = STATE(4141), + [sym_alignof_expression] = STATE(4141), + [sym_offsetof_expression] = STATE(4141), + [sym_generic_expression] = STATE(4141), + [sym_subscript_expression] = STATE(4149), + [sym_call_expression] = STATE(4149), + [sym_gnu_asm_expression] = STATE(4141), + [sym_field_expression] = STATE(4149), + [sym_compound_literal_expression] = STATE(4141), + [sym_parenthesized_expression] = STATE(4149), + [sym_char_literal] = STATE(4104), + [sym_concatenated_string] = STATE(4104), + [sym_string_literal] = STATE(2642), + [sym_null] = STATE(4141), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8879), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4141), + [sym_raw_string_literal] = STATE(2642), + [sym_co_await_expression] = STATE(4141), + [sym_new_expression] = STATE(4141), + [sym_delete_expression] = STATE(4141), + [sym_requires_clause] = STATE(4141), + [sym_requires_expression] = STATE(4141), + [sym_lambda_expression] = STATE(4141), + [sym_lambda_capture_specifier] = STATE(6832), + [sym_fold_expression] = STATE(4141), + [sym_parameter_pack_expansion] = STATE(4141), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4149), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4149), + [sym_semgrep_ellipsis] = STATE(4146), + [sym_deep_ellipsis] = STATE(4146), + [sym_identifier] = ACTIONS(2981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4990), + [anon_sym_LPAREN2] = ACTIONS(5044), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(2987), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2991), + [anon_sym_not] = ACTIONS(2983), + [anon_sym_compl] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(4992), + [anon_sym_PLUS_PLUS] = ACTIONS(4992), + [anon_sym_sizeof] = ACTIONS(2993), + [anon_sym___alignof__] = ACTIONS(2995), + [anon_sym___alignof] = ACTIONS(2995), + [anon_sym__alignof] = ACTIONS(2995), + [anon_sym_alignof] = ACTIONS(2995), + [anon_sym__Alignof] = ACTIONS(2995), + [anon_sym_offsetof] = ACTIONS(2997), + [anon_sym__Generic] = ACTIONS(2999), + [anon_sym_asm] = ACTIONS(3001), + [anon_sym___asm__] = ACTIONS(3001), + [sym_number_literal] = ACTIONS(3003), + [anon_sym_L_SQUOTE] = ACTIONS(3005), + [anon_sym_u_SQUOTE] = ACTIONS(3005), + [anon_sym_U_SQUOTE] = ACTIONS(3005), + [anon_sym_u8_SQUOTE] = ACTIONS(3005), + [anon_sym_SQUOTE] = ACTIONS(3005), + [anon_sym_L_DQUOTE] = ACTIONS(3007), + [anon_sym_u_DQUOTE] = ACTIONS(3007), + [anon_sym_U_DQUOTE] = ACTIONS(3007), + [anon_sym_u8_DQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE] = ACTIONS(3007), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [anon_sym_NULL] = ACTIONS(3011), + [anon_sym_nullptr] = ACTIONS(3011), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3013), + [anon_sym_R_DQUOTE] = ACTIONS(3015), + [anon_sym_LR_DQUOTE] = ACTIONS(3015), + [anon_sym_uR_DQUOTE] = ACTIONS(3015), + [anon_sym_UR_DQUOTE] = ACTIONS(3015), + [anon_sym_u8R_DQUOTE] = ACTIONS(3015), + [anon_sym_co_await] = ACTIONS(3017), + [anon_sym_new] = ACTIONS(3019), + [anon_sym_requires] = ACTIONS(3021), + [sym_this] = ACTIONS(3009), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3023), + [sym_semgrep_named_ellipsis] = ACTIONS(3025), + }, + [1493] = { + [sym_expression] = STATE(3888), + [sym_expression_not_binary] = STATE(4146), + [sym_conditional_expression] = STATE(4141), + [sym_assignment_expression] = STATE(4141), + [sym_pointer_expression] = STATE(4149), + [sym_unary_expression] = STATE(4141), + [sym_binary_expression] = STATE(4146), + [sym_update_expression] = STATE(4141), + [sym_cast_expression] = STATE(4141), + [sym_sizeof_expression] = STATE(4141), + [sym_alignof_expression] = STATE(4141), + [sym_offsetof_expression] = STATE(4141), + [sym_generic_expression] = STATE(4141), + [sym_subscript_expression] = STATE(4149), + [sym_call_expression] = STATE(4149), + [sym_gnu_asm_expression] = STATE(4141), + [sym_field_expression] = STATE(4149), + [sym_compound_literal_expression] = STATE(4141), + [sym_parenthesized_expression] = STATE(4149), + [sym_char_literal] = STATE(4104), + [sym_concatenated_string] = STATE(4104), + [sym_string_literal] = STATE(2642), + [sym_null] = STATE(4141), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8879), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4141), + [sym_raw_string_literal] = STATE(2642), + [sym_co_await_expression] = STATE(4141), + [sym_new_expression] = STATE(4141), + [sym_delete_expression] = STATE(4141), + [sym_requires_clause] = STATE(4141), + [sym_requires_expression] = STATE(4141), + [sym_lambda_expression] = STATE(4141), + [sym_lambda_capture_specifier] = STATE(6832), + [sym_fold_expression] = STATE(4141), + [sym_parameter_pack_expansion] = STATE(4141), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4149), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4149), + [sym_semgrep_ellipsis] = STATE(4146), + [sym_deep_ellipsis] = STATE(4146), + [sym_identifier] = ACTIONS(2981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4990), + [anon_sym_LPAREN2] = ACTIONS(5044), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(2987), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2991), + [anon_sym_not] = ACTIONS(2983), + [anon_sym_compl] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(4992), + [anon_sym_PLUS_PLUS] = ACTIONS(4992), + [anon_sym_sizeof] = ACTIONS(2993), + [anon_sym___alignof__] = ACTIONS(2995), + [anon_sym___alignof] = ACTIONS(2995), + [anon_sym__alignof] = ACTIONS(2995), + [anon_sym_alignof] = ACTIONS(2995), + [anon_sym__Alignof] = ACTIONS(2995), + [anon_sym_offsetof] = ACTIONS(2997), + [anon_sym__Generic] = ACTIONS(2999), + [anon_sym_asm] = ACTIONS(3001), + [anon_sym___asm__] = ACTIONS(3001), + [sym_number_literal] = ACTIONS(3003), + [anon_sym_L_SQUOTE] = ACTIONS(3005), + [anon_sym_u_SQUOTE] = ACTIONS(3005), + [anon_sym_U_SQUOTE] = ACTIONS(3005), + [anon_sym_u8_SQUOTE] = ACTIONS(3005), + [anon_sym_SQUOTE] = ACTIONS(3005), + [anon_sym_L_DQUOTE] = ACTIONS(3007), + [anon_sym_u_DQUOTE] = ACTIONS(3007), + [anon_sym_U_DQUOTE] = ACTIONS(3007), + [anon_sym_u8_DQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE] = ACTIONS(3007), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [anon_sym_NULL] = ACTIONS(3011), + [anon_sym_nullptr] = ACTIONS(3011), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3013), + [anon_sym_R_DQUOTE] = ACTIONS(3015), + [anon_sym_LR_DQUOTE] = ACTIONS(3015), + [anon_sym_uR_DQUOTE] = ACTIONS(3015), + [anon_sym_UR_DQUOTE] = ACTIONS(3015), + [anon_sym_u8R_DQUOTE] = ACTIONS(3015), + [anon_sym_co_await] = ACTIONS(3017), + [anon_sym_new] = ACTIONS(3019), + [anon_sym_requires] = ACTIONS(3021), + [sym_this] = ACTIONS(3009), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3023), + [sym_semgrep_named_ellipsis] = ACTIONS(3025), + }, + [1494] = { + [sym_expression] = STATE(3889), + [sym_expression_not_binary] = STATE(4146), + [sym_conditional_expression] = STATE(4141), + [sym_assignment_expression] = STATE(4141), + [sym_pointer_expression] = STATE(4149), + [sym_unary_expression] = STATE(4141), + [sym_binary_expression] = STATE(4146), + [sym_update_expression] = STATE(4141), + [sym_cast_expression] = STATE(4141), + [sym_sizeof_expression] = STATE(4141), + [sym_alignof_expression] = STATE(4141), + [sym_offsetof_expression] = STATE(4141), + [sym_generic_expression] = STATE(4141), + [sym_subscript_expression] = STATE(4149), + [sym_call_expression] = STATE(4149), + [sym_gnu_asm_expression] = STATE(4141), + [sym_field_expression] = STATE(4149), + [sym_compound_literal_expression] = STATE(4141), + [sym_parenthesized_expression] = STATE(4149), + [sym_char_literal] = STATE(4104), + [sym_concatenated_string] = STATE(4104), + [sym_string_literal] = STATE(2642), + [sym_null] = STATE(4141), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8879), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4141), + [sym_raw_string_literal] = STATE(2642), + [sym_co_await_expression] = STATE(4141), + [sym_new_expression] = STATE(4141), + [sym_delete_expression] = STATE(4141), + [sym_requires_clause] = STATE(4141), + [sym_requires_expression] = STATE(4141), + [sym_lambda_expression] = STATE(4141), + [sym_lambda_capture_specifier] = STATE(6832), + [sym_fold_expression] = STATE(4141), + [sym_parameter_pack_expansion] = STATE(4141), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4149), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4149), + [sym_semgrep_ellipsis] = STATE(4146), + [sym_deep_ellipsis] = STATE(4146), + [sym_identifier] = ACTIONS(2981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4990), + [anon_sym_LPAREN2] = ACTIONS(5044), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(2987), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2991), + [anon_sym_not] = ACTIONS(2983), + [anon_sym_compl] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(4992), + [anon_sym_PLUS_PLUS] = ACTIONS(4992), + [anon_sym_sizeof] = ACTIONS(2993), + [anon_sym___alignof__] = ACTIONS(2995), + [anon_sym___alignof] = ACTIONS(2995), + [anon_sym__alignof] = ACTIONS(2995), + [anon_sym_alignof] = ACTIONS(2995), + [anon_sym__Alignof] = ACTIONS(2995), + [anon_sym_offsetof] = ACTIONS(2997), + [anon_sym__Generic] = ACTIONS(2999), + [anon_sym_asm] = ACTIONS(3001), + [anon_sym___asm__] = ACTIONS(3001), + [sym_number_literal] = ACTIONS(3003), + [anon_sym_L_SQUOTE] = ACTIONS(3005), + [anon_sym_u_SQUOTE] = ACTIONS(3005), + [anon_sym_U_SQUOTE] = ACTIONS(3005), + [anon_sym_u8_SQUOTE] = ACTIONS(3005), + [anon_sym_SQUOTE] = ACTIONS(3005), + [anon_sym_L_DQUOTE] = ACTIONS(3007), + [anon_sym_u_DQUOTE] = ACTIONS(3007), + [anon_sym_U_DQUOTE] = ACTIONS(3007), + [anon_sym_u8_DQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE] = ACTIONS(3007), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [anon_sym_NULL] = ACTIONS(3011), + [anon_sym_nullptr] = ACTIONS(3011), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3013), + [anon_sym_R_DQUOTE] = ACTIONS(3015), + [anon_sym_LR_DQUOTE] = ACTIONS(3015), + [anon_sym_uR_DQUOTE] = ACTIONS(3015), + [anon_sym_UR_DQUOTE] = ACTIONS(3015), + [anon_sym_u8R_DQUOTE] = ACTIONS(3015), + [anon_sym_co_await] = ACTIONS(3017), + [anon_sym_new] = ACTIONS(3019), + [anon_sym_requires] = ACTIONS(3021), + [sym_this] = ACTIONS(3009), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3023), + [sym_semgrep_named_ellipsis] = ACTIONS(3025), + }, + [1495] = { + [sym_expression] = STATE(3890), + [sym_expression_not_binary] = STATE(4146), + [sym_conditional_expression] = STATE(4141), + [sym_assignment_expression] = STATE(4141), + [sym_pointer_expression] = STATE(4149), + [sym_unary_expression] = STATE(4141), + [sym_binary_expression] = STATE(4146), + [sym_update_expression] = STATE(4141), + [sym_cast_expression] = STATE(4141), + [sym_sizeof_expression] = STATE(4141), + [sym_alignof_expression] = STATE(4141), + [sym_offsetof_expression] = STATE(4141), + [sym_generic_expression] = STATE(4141), + [sym_subscript_expression] = STATE(4149), + [sym_call_expression] = STATE(4149), + [sym_gnu_asm_expression] = STATE(4141), + [sym_field_expression] = STATE(4149), + [sym_compound_literal_expression] = STATE(4141), + [sym_parenthesized_expression] = STATE(4149), + [sym_char_literal] = STATE(4104), + [sym_concatenated_string] = STATE(4104), + [sym_string_literal] = STATE(2642), + [sym_null] = STATE(4141), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8879), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4141), + [sym_raw_string_literal] = STATE(2642), + [sym_co_await_expression] = STATE(4141), + [sym_new_expression] = STATE(4141), + [sym_delete_expression] = STATE(4141), + [sym_requires_clause] = STATE(4141), + [sym_requires_expression] = STATE(4141), + [sym_lambda_expression] = STATE(4141), + [sym_lambda_capture_specifier] = STATE(6832), + [sym_fold_expression] = STATE(4141), + [sym_parameter_pack_expansion] = STATE(4141), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4149), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4149), + [sym_semgrep_ellipsis] = STATE(4146), + [sym_deep_ellipsis] = STATE(4146), + [sym_identifier] = ACTIONS(2981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4990), + [anon_sym_LPAREN2] = ACTIONS(5044), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(2987), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2991), + [anon_sym_not] = ACTIONS(2983), + [anon_sym_compl] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(4992), + [anon_sym_PLUS_PLUS] = ACTIONS(4992), + [anon_sym_sizeof] = ACTIONS(2993), + [anon_sym___alignof__] = ACTIONS(2995), + [anon_sym___alignof] = ACTIONS(2995), + [anon_sym__alignof] = ACTIONS(2995), + [anon_sym_alignof] = ACTIONS(2995), + [anon_sym__Alignof] = ACTIONS(2995), + [anon_sym_offsetof] = ACTIONS(2997), + [anon_sym__Generic] = ACTIONS(2999), + [anon_sym_asm] = ACTIONS(3001), + [anon_sym___asm__] = ACTIONS(3001), + [sym_number_literal] = ACTIONS(3003), + [anon_sym_L_SQUOTE] = ACTIONS(3005), + [anon_sym_u_SQUOTE] = ACTIONS(3005), + [anon_sym_U_SQUOTE] = ACTIONS(3005), + [anon_sym_u8_SQUOTE] = ACTIONS(3005), + [anon_sym_SQUOTE] = ACTIONS(3005), + [anon_sym_L_DQUOTE] = ACTIONS(3007), + [anon_sym_u_DQUOTE] = ACTIONS(3007), + [anon_sym_U_DQUOTE] = ACTIONS(3007), + [anon_sym_u8_DQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE] = ACTIONS(3007), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [anon_sym_NULL] = ACTIONS(3011), + [anon_sym_nullptr] = ACTIONS(3011), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3013), + [anon_sym_R_DQUOTE] = ACTIONS(3015), + [anon_sym_LR_DQUOTE] = ACTIONS(3015), + [anon_sym_uR_DQUOTE] = ACTIONS(3015), + [anon_sym_UR_DQUOTE] = ACTIONS(3015), + [anon_sym_u8R_DQUOTE] = ACTIONS(3015), + [anon_sym_co_await] = ACTIONS(3017), + [anon_sym_new] = ACTIONS(3019), + [anon_sym_requires] = ACTIONS(3021), + [sym_this] = ACTIONS(3009), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3023), + [sym_semgrep_named_ellipsis] = ACTIONS(3025), + }, + [1496] = { + [sym_expression] = STATE(5471), + [sym_expression_not_binary] = STATE(5685), + [sym_conditional_expression] = STATE(5675), + [sym_assignment_expression] = STATE(5675), + [sym_pointer_expression] = STATE(4201), + [sym_unary_expression] = STATE(5675), + [sym_binary_expression] = STATE(5685), + [sym_update_expression] = STATE(5675), + [sym_cast_expression] = STATE(5675), + [sym_sizeof_expression] = STATE(5675), + [sym_alignof_expression] = STATE(5675), + [sym_offsetof_expression] = STATE(5675), + [sym_generic_expression] = STATE(5675), + [sym_subscript_expression] = STATE(4201), + [sym_call_expression] = STATE(4201), + [sym_gnu_asm_expression] = STATE(5675), + [sym_field_expression] = STATE(4201), + [sym_compound_literal_expression] = STATE(5675), + [sym_parenthesized_expression] = STATE(4201), + [sym_char_literal] = STATE(5600), + [sym_concatenated_string] = STATE(5600), + [sym_string_literal] = STATE(4359), + [sym_null] = STATE(5675), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9034), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5675), + [sym_raw_string_literal] = STATE(4359), + [sym_co_await_expression] = STATE(5675), + [sym_new_expression] = STATE(5675), + [sym_delete_expression] = STATE(5675), + [sym_requires_clause] = STATE(5675), + [sym_requires_expression] = STATE(5675), + [sym_lambda_expression] = STATE(5675), + [sym_lambda_capture_specifier] = STATE(6898), + [sym_fold_expression] = STATE(5675), + [sym_parameter_pack_expansion] = STATE(5675), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4201), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4201), + [sym_semgrep_ellipsis] = STATE(5685), + [sym_deep_ellipsis] = STATE(5685), + [sym_identifier] = ACTIONS(4242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4954), + [anon_sym_LPAREN2] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_TILDE] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(4248), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4252), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_sizeof] = ACTIONS(4254), + [anon_sym___alignof__] = ACTIONS(4256), + [anon_sym___alignof] = ACTIONS(4256), + [anon_sym__alignof] = ACTIONS(4256), + [anon_sym_alignof] = ACTIONS(4256), + [anon_sym__Alignof] = ACTIONS(4256), + [anon_sym_offsetof] = ACTIONS(4258), + [anon_sym__Generic] = ACTIONS(4260), + [anon_sym_asm] = ACTIONS(4262), + [anon_sym___asm__] = ACTIONS(4262), + [sym_number_literal] = ACTIONS(4264), + [anon_sym_L_SQUOTE] = ACTIONS(4266), + [anon_sym_u_SQUOTE] = ACTIONS(4266), + [anon_sym_U_SQUOTE] = ACTIONS(4266), + [anon_sym_u8_SQUOTE] = ACTIONS(4266), + [anon_sym_SQUOTE] = ACTIONS(4266), + [anon_sym_L_DQUOTE] = ACTIONS(4268), + [anon_sym_u_DQUOTE] = ACTIONS(4268), + [anon_sym_U_DQUOTE] = ACTIONS(4268), + [anon_sym_u8_DQUOTE] = ACTIONS(4268), + [anon_sym_DQUOTE] = ACTIONS(4268), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4272), + [anon_sym_nullptr] = ACTIONS(4272), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4274), + [anon_sym_R_DQUOTE] = ACTIONS(4276), + [anon_sym_LR_DQUOTE] = ACTIONS(4276), + [anon_sym_uR_DQUOTE] = ACTIONS(4276), + [anon_sym_UR_DQUOTE] = ACTIONS(4276), + [anon_sym_u8R_DQUOTE] = ACTIONS(4276), + [anon_sym_co_await] = ACTIONS(4278), + [anon_sym_new] = ACTIONS(4280), + [anon_sym_requires] = ACTIONS(4282), + [sym_this] = ACTIONS(4270), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4284), + [sym_semgrep_named_ellipsis] = ACTIONS(4286), + }, + [1497] = { + [sym_expression] = STATE(5481), + [sym_expression_not_binary] = STATE(5685), + [sym_conditional_expression] = STATE(5675), + [sym_assignment_expression] = STATE(5675), + [sym_pointer_expression] = STATE(4201), + [sym_unary_expression] = STATE(5675), + [sym_binary_expression] = STATE(5685), + [sym_update_expression] = STATE(5675), + [sym_cast_expression] = STATE(5675), + [sym_sizeof_expression] = STATE(5675), + [sym_alignof_expression] = STATE(5675), + [sym_offsetof_expression] = STATE(5675), + [sym_generic_expression] = STATE(5675), + [sym_subscript_expression] = STATE(4201), + [sym_call_expression] = STATE(4201), + [sym_gnu_asm_expression] = STATE(5675), + [sym_field_expression] = STATE(4201), + [sym_compound_literal_expression] = STATE(5675), + [sym_parenthesized_expression] = STATE(4201), + [sym_char_literal] = STATE(5600), + [sym_concatenated_string] = STATE(5600), + [sym_string_literal] = STATE(4359), + [sym_null] = STATE(5675), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9034), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5675), + [sym_raw_string_literal] = STATE(4359), + [sym_co_await_expression] = STATE(5675), + [sym_new_expression] = STATE(5675), + [sym_delete_expression] = STATE(5675), + [sym_requires_clause] = STATE(5675), + [sym_requires_expression] = STATE(5675), + [sym_lambda_expression] = STATE(5675), + [sym_lambda_capture_specifier] = STATE(6898), + [sym_fold_expression] = STATE(5675), + [sym_parameter_pack_expansion] = STATE(5675), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4201), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4201), + [sym_semgrep_ellipsis] = STATE(5685), + [sym_deep_ellipsis] = STATE(5685), + [sym_identifier] = ACTIONS(4242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4954), + [anon_sym_LPAREN2] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_TILDE] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(4248), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4252), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_sizeof] = ACTIONS(4254), + [anon_sym___alignof__] = ACTIONS(4256), + [anon_sym___alignof] = ACTIONS(4256), + [anon_sym__alignof] = ACTIONS(4256), + [anon_sym_alignof] = ACTIONS(4256), + [anon_sym__Alignof] = ACTIONS(4256), + [anon_sym_offsetof] = ACTIONS(4258), + [anon_sym__Generic] = ACTIONS(4260), + [anon_sym_asm] = ACTIONS(4262), + [anon_sym___asm__] = ACTIONS(4262), + [sym_number_literal] = ACTIONS(4264), + [anon_sym_L_SQUOTE] = ACTIONS(4266), + [anon_sym_u_SQUOTE] = ACTIONS(4266), + [anon_sym_U_SQUOTE] = ACTIONS(4266), + [anon_sym_u8_SQUOTE] = ACTIONS(4266), + [anon_sym_SQUOTE] = ACTIONS(4266), + [anon_sym_L_DQUOTE] = ACTIONS(4268), + [anon_sym_u_DQUOTE] = ACTIONS(4268), + [anon_sym_U_DQUOTE] = ACTIONS(4268), + [anon_sym_u8_DQUOTE] = ACTIONS(4268), + [anon_sym_DQUOTE] = ACTIONS(4268), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4272), + [anon_sym_nullptr] = ACTIONS(4272), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4274), + [anon_sym_R_DQUOTE] = ACTIONS(4276), + [anon_sym_LR_DQUOTE] = ACTIONS(4276), + [anon_sym_uR_DQUOTE] = ACTIONS(4276), + [anon_sym_UR_DQUOTE] = ACTIONS(4276), + [anon_sym_u8R_DQUOTE] = ACTIONS(4276), + [anon_sym_co_await] = ACTIONS(4278), + [anon_sym_new] = ACTIONS(4280), + [anon_sym_requires] = ACTIONS(4282), + [sym_this] = ACTIONS(4270), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4284), + [sym_semgrep_named_ellipsis] = ACTIONS(4286), + }, + [1498] = { + [sym_expression] = STATE(5482), + [sym_expression_not_binary] = STATE(5685), + [sym_conditional_expression] = STATE(5675), + [sym_assignment_expression] = STATE(5675), + [sym_pointer_expression] = STATE(4201), + [sym_unary_expression] = STATE(5675), + [sym_binary_expression] = STATE(5685), + [sym_update_expression] = STATE(5675), + [sym_cast_expression] = STATE(5675), + [sym_sizeof_expression] = STATE(5675), + [sym_alignof_expression] = STATE(5675), + [sym_offsetof_expression] = STATE(5675), + [sym_generic_expression] = STATE(5675), + [sym_subscript_expression] = STATE(4201), + [sym_call_expression] = STATE(4201), + [sym_gnu_asm_expression] = STATE(5675), + [sym_field_expression] = STATE(4201), + [sym_compound_literal_expression] = STATE(5675), + [sym_parenthesized_expression] = STATE(4201), + [sym_char_literal] = STATE(5600), + [sym_concatenated_string] = STATE(5600), + [sym_string_literal] = STATE(4359), + [sym_null] = STATE(5675), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9034), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5675), + [sym_raw_string_literal] = STATE(4359), + [sym_co_await_expression] = STATE(5675), + [sym_new_expression] = STATE(5675), + [sym_delete_expression] = STATE(5675), + [sym_requires_clause] = STATE(5675), + [sym_requires_expression] = STATE(5675), + [sym_lambda_expression] = STATE(5675), + [sym_lambda_capture_specifier] = STATE(6898), + [sym_fold_expression] = STATE(5675), + [sym_parameter_pack_expansion] = STATE(5675), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4201), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4201), + [sym_semgrep_ellipsis] = STATE(5685), + [sym_deep_ellipsis] = STATE(5685), + [sym_identifier] = ACTIONS(4242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5304), + [anon_sym_LPAREN2] = ACTIONS(5306), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_TILDE] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(4248), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4252), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_sizeof] = ACTIONS(4254), + [anon_sym___alignof__] = ACTIONS(4256), + [anon_sym___alignof] = ACTIONS(4256), + [anon_sym__alignof] = ACTIONS(4256), + [anon_sym_alignof] = ACTIONS(4256), + [anon_sym__Alignof] = ACTIONS(4256), + [anon_sym_offsetof] = ACTIONS(4258), + [anon_sym__Generic] = ACTIONS(4260), + [anon_sym_asm] = ACTIONS(4262), + [anon_sym___asm__] = ACTIONS(4262), + [sym_number_literal] = ACTIONS(4264), + [anon_sym_L_SQUOTE] = ACTIONS(4266), + [anon_sym_u_SQUOTE] = ACTIONS(4266), + [anon_sym_U_SQUOTE] = ACTIONS(4266), + [anon_sym_u8_SQUOTE] = ACTIONS(4266), + [anon_sym_SQUOTE] = ACTIONS(4266), + [anon_sym_L_DQUOTE] = ACTIONS(4268), + [anon_sym_u_DQUOTE] = ACTIONS(4268), + [anon_sym_U_DQUOTE] = ACTIONS(4268), + [anon_sym_u8_DQUOTE] = ACTIONS(4268), + [anon_sym_DQUOTE] = ACTIONS(4268), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4272), + [anon_sym_nullptr] = ACTIONS(4272), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4274), + [anon_sym_R_DQUOTE] = ACTIONS(4276), + [anon_sym_LR_DQUOTE] = ACTIONS(4276), + [anon_sym_uR_DQUOTE] = ACTIONS(4276), + [anon_sym_UR_DQUOTE] = ACTIONS(4276), + [anon_sym_u8R_DQUOTE] = ACTIONS(4276), + [anon_sym_co_await] = ACTIONS(4278), + [anon_sym_new] = ACTIONS(4280), + [anon_sym_requires] = ACTIONS(4282), + [sym_this] = ACTIONS(4270), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4284), + [sym_semgrep_named_ellipsis] = ACTIONS(4286), + }, + [1499] = { + [sym_expression] = STATE(3568), + [sym_expression_not_binary] = STATE(3960), + [sym_conditional_expression] = STATE(3950), + [sym_assignment_expression] = STATE(3950), + [sym_pointer_expression] = STATE(3961), + [sym_unary_expression] = STATE(3950), + [sym_binary_expression] = STATE(3960), + [sym_update_expression] = STATE(3950), + [sym_cast_expression] = STATE(3950), + [sym_sizeof_expression] = STATE(3950), + [sym_alignof_expression] = STATE(3950), + [sym_offsetof_expression] = STATE(3950), + [sym_generic_expression] = STATE(3950), + [sym_subscript_expression] = STATE(3961), + [sym_call_expression] = STATE(3961), + [sym_gnu_asm_expression] = STATE(3950), + [sym_field_expression] = STATE(3961), + [sym_compound_literal_expression] = STATE(3950), + [sym_parenthesized_expression] = STATE(3961), + [sym_char_literal] = STATE(3756), + [sym_concatenated_string] = STATE(3756), + [sym_string_literal] = STATE(2508), + [sym_null] = STATE(3950), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8975), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3950), + [sym_raw_string_literal] = STATE(2508), + [sym_co_await_expression] = STATE(3950), + [sym_new_expression] = STATE(3950), + [sym_delete_expression] = STATE(3950), + [sym_requires_clause] = STATE(3950), + [sym_requires_expression] = STATE(3950), + [sym_lambda_expression] = STATE(3950), + [sym_lambda_capture_specifier] = STATE(6902), + [sym_fold_expression] = STATE(3950), + [sym_parameter_pack_expansion] = STATE(3950), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(3961), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3961), + [sym_semgrep_ellipsis] = STATE(3960), + [sym_deep_ellipsis] = STATE(3960), + [sym_identifier] = ACTIONS(2923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4882), + [anon_sym_LPAREN2] = ACTIONS(5074), + [anon_sym_BANG] = ACTIONS(2927), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2933), + [anon_sym_not] = ACTIONS(2925), + [anon_sym_compl] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(4888), + [anon_sym_PLUS_PLUS] = ACTIONS(4888), + [anon_sym_sizeof] = ACTIONS(2935), + [anon_sym___alignof__] = ACTIONS(2937), + [anon_sym___alignof] = ACTIONS(2937), + [anon_sym__alignof] = ACTIONS(2937), + [anon_sym_alignof] = ACTIONS(2937), + [anon_sym__Alignof] = ACTIONS(2937), + [anon_sym_offsetof] = ACTIONS(2939), + [anon_sym__Generic] = ACTIONS(2941), + [anon_sym_asm] = ACTIONS(2943), + [anon_sym___asm__] = ACTIONS(2943), + [sym_number_literal] = ACTIONS(2945), + [anon_sym_L_SQUOTE] = ACTIONS(2947), + [anon_sym_u_SQUOTE] = ACTIONS(2947), + [anon_sym_U_SQUOTE] = ACTIONS(2947), + [anon_sym_u8_SQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2947), + [anon_sym_L_DQUOTE] = ACTIONS(2949), + [anon_sym_u_DQUOTE] = ACTIONS(2949), + [anon_sym_U_DQUOTE] = ACTIONS(2949), + [anon_sym_u8_DQUOTE] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2949), + [sym_true] = ACTIONS(2951), + [sym_false] = ACTIONS(2951), + [anon_sym_NULL] = ACTIONS(2953), + [anon_sym_nullptr] = ACTIONS(2953), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2955), + [anon_sym_R_DQUOTE] = ACTIONS(2957), + [anon_sym_LR_DQUOTE] = ACTIONS(2957), + [anon_sym_uR_DQUOTE] = ACTIONS(2957), + [anon_sym_UR_DQUOTE] = ACTIONS(2957), + [anon_sym_u8R_DQUOTE] = ACTIONS(2957), + [anon_sym_co_await] = ACTIONS(2959), + [anon_sym_new] = ACTIONS(2961), + [anon_sym_requires] = ACTIONS(2963), + [sym_this] = ACTIONS(2951), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2965), + [sym_semgrep_named_ellipsis] = ACTIONS(2967), + }, + [1500] = { + [sym_expression] = STATE(5291), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -247916,7 +242596,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -247930,1700 +242610,1496 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1450] = { - [sym_expression] = STATE(5870), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9595), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [sym_identifier] = ACTIONS(4059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4063), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), - }, - [1451] = { - [sym_expression] = STATE(5871), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9595), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [sym_identifier] = ACTIONS(4059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4063), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), - }, - [1452] = { - [sym_expression] = STATE(5874), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9595), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [sym_identifier] = ACTIONS(4059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4063), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), + [1501] = { + [sym_expression] = STATE(3627), + [sym_expression_not_binary] = STATE(3960), + [sym_conditional_expression] = STATE(3950), + [sym_assignment_expression] = STATE(3950), + [sym_pointer_expression] = STATE(3961), + [sym_unary_expression] = STATE(3950), + [sym_binary_expression] = STATE(3960), + [sym_update_expression] = STATE(3950), + [sym_cast_expression] = STATE(3950), + [sym_sizeof_expression] = STATE(3950), + [sym_alignof_expression] = STATE(3950), + [sym_offsetof_expression] = STATE(3950), + [sym_generic_expression] = STATE(3950), + [sym_subscript_expression] = STATE(3961), + [sym_call_expression] = STATE(3961), + [sym_gnu_asm_expression] = STATE(3950), + [sym_field_expression] = STATE(3961), + [sym_compound_literal_expression] = STATE(3950), + [sym_parenthesized_expression] = STATE(3961), + [sym_char_literal] = STATE(3756), + [sym_concatenated_string] = STATE(3756), + [sym_string_literal] = STATE(2508), + [sym_null] = STATE(3950), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8975), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3950), + [sym_raw_string_literal] = STATE(2508), + [sym_co_await_expression] = STATE(3950), + [sym_new_expression] = STATE(3950), + [sym_delete_expression] = STATE(3950), + [sym_requires_clause] = STATE(3950), + [sym_requires_expression] = STATE(3950), + [sym_lambda_expression] = STATE(3950), + [sym_lambda_capture_specifier] = STATE(6902), + [sym_fold_expression] = STATE(3950), + [sym_parameter_pack_expansion] = STATE(3950), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(3961), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3961), + [sym_semgrep_ellipsis] = STATE(3960), + [sym_deep_ellipsis] = STATE(3960), + [sym_identifier] = ACTIONS(2923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4882), + [anon_sym_LPAREN2] = ACTIONS(5074), + [anon_sym_BANG] = ACTIONS(2927), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2933), + [anon_sym_not] = ACTIONS(2925), + [anon_sym_compl] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(4888), + [anon_sym_PLUS_PLUS] = ACTIONS(4888), + [anon_sym_sizeof] = ACTIONS(2935), + [anon_sym___alignof__] = ACTIONS(2937), + [anon_sym___alignof] = ACTIONS(2937), + [anon_sym__alignof] = ACTIONS(2937), + [anon_sym_alignof] = ACTIONS(2937), + [anon_sym__Alignof] = ACTIONS(2937), + [anon_sym_offsetof] = ACTIONS(2939), + [anon_sym__Generic] = ACTIONS(2941), + [anon_sym_asm] = ACTIONS(2943), + [anon_sym___asm__] = ACTIONS(2943), + [sym_number_literal] = ACTIONS(2945), + [anon_sym_L_SQUOTE] = ACTIONS(2947), + [anon_sym_u_SQUOTE] = ACTIONS(2947), + [anon_sym_U_SQUOTE] = ACTIONS(2947), + [anon_sym_u8_SQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2947), + [anon_sym_L_DQUOTE] = ACTIONS(2949), + [anon_sym_u_DQUOTE] = ACTIONS(2949), + [anon_sym_U_DQUOTE] = ACTIONS(2949), + [anon_sym_u8_DQUOTE] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2949), + [sym_true] = ACTIONS(2951), + [sym_false] = ACTIONS(2951), + [anon_sym_NULL] = ACTIONS(2953), + [anon_sym_nullptr] = ACTIONS(2953), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2955), + [anon_sym_R_DQUOTE] = ACTIONS(2957), + [anon_sym_LR_DQUOTE] = ACTIONS(2957), + [anon_sym_uR_DQUOTE] = ACTIONS(2957), + [anon_sym_UR_DQUOTE] = ACTIONS(2957), + [anon_sym_u8R_DQUOTE] = ACTIONS(2957), + [anon_sym_co_await] = ACTIONS(2959), + [anon_sym_new] = ACTIONS(2961), + [anon_sym_requires] = ACTIONS(2963), + [sym_this] = ACTIONS(2951), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2965), + [sym_semgrep_named_ellipsis] = ACTIONS(2967), }, - [1453] = { - [sym_expression] = STATE(5877), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9595), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [sym_identifier] = ACTIONS(4059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4063), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), + [1502] = { + [sym_expression] = STATE(3643), + [sym_expression_not_binary] = STATE(3960), + [sym_conditional_expression] = STATE(3950), + [sym_assignment_expression] = STATE(3950), + [sym_pointer_expression] = STATE(3961), + [sym_unary_expression] = STATE(3950), + [sym_binary_expression] = STATE(3960), + [sym_update_expression] = STATE(3950), + [sym_cast_expression] = STATE(3950), + [sym_sizeof_expression] = STATE(3950), + [sym_alignof_expression] = STATE(3950), + [sym_offsetof_expression] = STATE(3950), + [sym_generic_expression] = STATE(3950), + [sym_subscript_expression] = STATE(3961), + [sym_call_expression] = STATE(3961), + [sym_gnu_asm_expression] = STATE(3950), + [sym_field_expression] = STATE(3961), + [sym_compound_literal_expression] = STATE(3950), + [sym_parenthesized_expression] = STATE(3961), + [sym_char_literal] = STATE(3756), + [sym_concatenated_string] = STATE(3756), + [sym_string_literal] = STATE(2508), + [sym_null] = STATE(3950), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8975), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3950), + [sym_raw_string_literal] = STATE(2508), + [sym_co_await_expression] = STATE(3950), + [sym_new_expression] = STATE(3950), + [sym_delete_expression] = STATE(3950), + [sym_requires_clause] = STATE(3950), + [sym_requires_expression] = STATE(3950), + [sym_lambda_expression] = STATE(3950), + [sym_lambda_capture_specifier] = STATE(6902), + [sym_fold_expression] = STATE(3950), + [sym_parameter_pack_expansion] = STATE(3950), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(3961), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3961), + [sym_semgrep_ellipsis] = STATE(3960), + [sym_deep_ellipsis] = STATE(3960), + [sym_identifier] = ACTIONS(2923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4882), + [anon_sym_LPAREN2] = ACTIONS(5074), + [anon_sym_BANG] = ACTIONS(2927), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2933), + [anon_sym_not] = ACTIONS(2925), + [anon_sym_compl] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(4888), + [anon_sym_PLUS_PLUS] = ACTIONS(4888), + [anon_sym_sizeof] = ACTIONS(2935), + [anon_sym___alignof__] = ACTIONS(2937), + [anon_sym___alignof] = ACTIONS(2937), + [anon_sym__alignof] = ACTIONS(2937), + [anon_sym_alignof] = ACTIONS(2937), + [anon_sym__Alignof] = ACTIONS(2937), + [anon_sym_offsetof] = ACTIONS(2939), + [anon_sym__Generic] = ACTIONS(2941), + [anon_sym_asm] = ACTIONS(2943), + [anon_sym___asm__] = ACTIONS(2943), + [sym_number_literal] = ACTIONS(2945), + [anon_sym_L_SQUOTE] = ACTIONS(2947), + [anon_sym_u_SQUOTE] = ACTIONS(2947), + [anon_sym_U_SQUOTE] = ACTIONS(2947), + [anon_sym_u8_SQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2947), + [anon_sym_L_DQUOTE] = ACTIONS(2949), + [anon_sym_u_DQUOTE] = ACTIONS(2949), + [anon_sym_U_DQUOTE] = ACTIONS(2949), + [anon_sym_u8_DQUOTE] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2949), + [sym_true] = ACTIONS(2951), + [sym_false] = ACTIONS(2951), + [anon_sym_NULL] = ACTIONS(2953), + [anon_sym_nullptr] = ACTIONS(2953), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2955), + [anon_sym_R_DQUOTE] = ACTIONS(2957), + [anon_sym_LR_DQUOTE] = ACTIONS(2957), + [anon_sym_uR_DQUOTE] = ACTIONS(2957), + [anon_sym_UR_DQUOTE] = ACTIONS(2957), + [anon_sym_u8R_DQUOTE] = ACTIONS(2957), + [anon_sym_co_await] = ACTIONS(2959), + [anon_sym_new] = ACTIONS(2961), + [anon_sym_requires] = ACTIONS(2963), + [sym_this] = ACTIONS(2951), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2965), + [sym_semgrep_named_ellipsis] = ACTIONS(2967), }, - [1454] = { - [sym_expression] = STATE(5800), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9595), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [sym_identifier] = ACTIONS(4059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4063), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), + [1503] = { + [sym_expression] = STATE(3645), + [sym_expression_not_binary] = STATE(3960), + [sym_conditional_expression] = STATE(3950), + [sym_assignment_expression] = STATE(3950), + [sym_pointer_expression] = STATE(3961), + [sym_unary_expression] = STATE(3950), + [sym_binary_expression] = STATE(3960), + [sym_update_expression] = STATE(3950), + [sym_cast_expression] = STATE(3950), + [sym_sizeof_expression] = STATE(3950), + [sym_alignof_expression] = STATE(3950), + [sym_offsetof_expression] = STATE(3950), + [sym_generic_expression] = STATE(3950), + [sym_subscript_expression] = STATE(3961), + [sym_call_expression] = STATE(3961), + [sym_gnu_asm_expression] = STATE(3950), + [sym_field_expression] = STATE(3961), + [sym_compound_literal_expression] = STATE(3950), + [sym_parenthesized_expression] = STATE(3961), + [sym_char_literal] = STATE(3756), + [sym_concatenated_string] = STATE(3756), + [sym_string_literal] = STATE(2508), + [sym_null] = STATE(3950), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8975), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3950), + [sym_raw_string_literal] = STATE(2508), + [sym_co_await_expression] = STATE(3950), + [sym_new_expression] = STATE(3950), + [sym_delete_expression] = STATE(3950), + [sym_requires_clause] = STATE(3950), + [sym_requires_expression] = STATE(3950), + [sym_lambda_expression] = STATE(3950), + [sym_lambda_capture_specifier] = STATE(6902), + [sym_fold_expression] = STATE(3950), + [sym_parameter_pack_expansion] = STATE(3950), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(3961), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3961), + [sym_semgrep_ellipsis] = STATE(3960), + [sym_deep_ellipsis] = STATE(3960), + [sym_identifier] = ACTIONS(2923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4882), + [anon_sym_LPAREN2] = ACTIONS(5074), + [anon_sym_BANG] = ACTIONS(2927), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2933), + [anon_sym_not] = ACTIONS(2925), + [anon_sym_compl] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(4888), + [anon_sym_PLUS_PLUS] = ACTIONS(4888), + [anon_sym_sizeof] = ACTIONS(2935), + [anon_sym___alignof__] = ACTIONS(2937), + [anon_sym___alignof] = ACTIONS(2937), + [anon_sym__alignof] = ACTIONS(2937), + [anon_sym_alignof] = ACTIONS(2937), + [anon_sym__Alignof] = ACTIONS(2937), + [anon_sym_offsetof] = ACTIONS(2939), + [anon_sym__Generic] = ACTIONS(2941), + [anon_sym_asm] = ACTIONS(2943), + [anon_sym___asm__] = ACTIONS(2943), + [sym_number_literal] = ACTIONS(2945), + [anon_sym_L_SQUOTE] = ACTIONS(2947), + [anon_sym_u_SQUOTE] = ACTIONS(2947), + [anon_sym_U_SQUOTE] = ACTIONS(2947), + [anon_sym_u8_SQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2947), + [anon_sym_L_DQUOTE] = ACTIONS(2949), + [anon_sym_u_DQUOTE] = ACTIONS(2949), + [anon_sym_U_DQUOTE] = ACTIONS(2949), + [anon_sym_u8_DQUOTE] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2949), + [sym_true] = ACTIONS(2951), + [sym_false] = ACTIONS(2951), + [anon_sym_NULL] = ACTIONS(2953), + [anon_sym_nullptr] = ACTIONS(2953), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2955), + [anon_sym_R_DQUOTE] = ACTIONS(2957), + [anon_sym_LR_DQUOTE] = ACTIONS(2957), + [anon_sym_uR_DQUOTE] = ACTIONS(2957), + [anon_sym_UR_DQUOTE] = ACTIONS(2957), + [anon_sym_u8R_DQUOTE] = ACTIONS(2957), + [anon_sym_co_await] = ACTIONS(2959), + [anon_sym_new] = ACTIONS(2961), + [anon_sym_requires] = ACTIONS(2963), + [sym_this] = ACTIONS(2951), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2965), + [sym_semgrep_named_ellipsis] = ACTIONS(2967), }, - [1455] = { - [sym_expression] = STATE(5801), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9595), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [sym_identifier] = ACTIONS(4059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4063), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), + [1504] = { + [sym_expression] = STATE(3661), + [sym_expression_not_binary] = STATE(3960), + [sym_conditional_expression] = STATE(3950), + [sym_assignment_expression] = STATE(3950), + [sym_pointer_expression] = STATE(3961), + [sym_unary_expression] = STATE(3950), + [sym_binary_expression] = STATE(3960), + [sym_update_expression] = STATE(3950), + [sym_cast_expression] = STATE(3950), + [sym_sizeof_expression] = STATE(3950), + [sym_alignof_expression] = STATE(3950), + [sym_offsetof_expression] = STATE(3950), + [sym_generic_expression] = STATE(3950), + [sym_subscript_expression] = STATE(3961), + [sym_call_expression] = STATE(3961), + [sym_gnu_asm_expression] = STATE(3950), + [sym_field_expression] = STATE(3961), + [sym_compound_literal_expression] = STATE(3950), + [sym_parenthesized_expression] = STATE(3961), + [sym_char_literal] = STATE(3756), + [sym_concatenated_string] = STATE(3756), + [sym_string_literal] = STATE(2508), + [sym_null] = STATE(3950), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8975), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3950), + [sym_raw_string_literal] = STATE(2508), + [sym_co_await_expression] = STATE(3950), + [sym_new_expression] = STATE(3950), + [sym_delete_expression] = STATE(3950), + [sym_requires_clause] = STATE(3950), + [sym_requires_expression] = STATE(3950), + [sym_lambda_expression] = STATE(3950), + [sym_lambda_capture_specifier] = STATE(6902), + [sym_fold_expression] = STATE(3950), + [sym_parameter_pack_expansion] = STATE(3950), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(3961), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3961), + [sym_semgrep_ellipsis] = STATE(3960), + [sym_deep_ellipsis] = STATE(3960), + [sym_identifier] = ACTIONS(2923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4882), + [anon_sym_LPAREN2] = ACTIONS(5074), + [anon_sym_BANG] = ACTIONS(2927), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2933), + [anon_sym_not] = ACTIONS(2925), + [anon_sym_compl] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(4888), + [anon_sym_PLUS_PLUS] = ACTIONS(4888), + [anon_sym_sizeof] = ACTIONS(2935), + [anon_sym___alignof__] = ACTIONS(2937), + [anon_sym___alignof] = ACTIONS(2937), + [anon_sym__alignof] = ACTIONS(2937), + [anon_sym_alignof] = ACTIONS(2937), + [anon_sym__Alignof] = ACTIONS(2937), + [anon_sym_offsetof] = ACTIONS(2939), + [anon_sym__Generic] = ACTIONS(2941), + [anon_sym_asm] = ACTIONS(2943), + [anon_sym___asm__] = ACTIONS(2943), + [sym_number_literal] = ACTIONS(2945), + [anon_sym_L_SQUOTE] = ACTIONS(2947), + [anon_sym_u_SQUOTE] = ACTIONS(2947), + [anon_sym_U_SQUOTE] = ACTIONS(2947), + [anon_sym_u8_SQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2947), + [anon_sym_L_DQUOTE] = ACTIONS(2949), + [anon_sym_u_DQUOTE] = ACTIONS(2949), + [anon_sym_U_DQUOTE] = ACTIONS(2949), + [anon_sym_u8_DQUOTE] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2949), + [sym_true] = ACTIONS(2951), + [sym_false] = ACTIONS(2951), + [anon_sym_NULL] = ACTIONS(2953), + [anon_sym_nullptr] = ACTIONS(2953), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2955), + [anon_sym_R_DQUOTE] = ACTIONS(2957), + [anon_sym_LR_DQUOTE] = ACTIONS(2957), + [anon_sym_uR_DQUOTE] = ACTIONS(2957), + [anon_sym_UR_DQUOTE] = ACTIONS(2957), + [anon_sym_u8R_DQUOTE] = ACTIONS(2957), + [anon_sym_co_await] = ACTIONS(2959), + [anon_sym_new] = ACTIONS(2961), + [anon_sym_requires] = ACTIONS(2963), + [sym_this] = ACTIONS(2951), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2965), + [sym_semgrep_named_ellipsis] = ACTIONS(2967), }, - [1456] = { - [sym_expression] = STATE(5714), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9595), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [sym_identifier] = ACTIONS(4059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4063), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), + [1505] = { + [sym_expression] = STATE(3691), + [sym_expression_not_binary] = STATE(3960), + [sym_conditional_expression] = STATE(3950), + [sym_assignment_expression] = STATE(3950), + [sym_pointer_expression] = STATE(3961), + [sym_unary_expression] = STATE(3950), + [sym_binary_expression] = STATE(3960), + [sym_update_expression] = STATE(3950), + [sym_cast_expression] = STATE(3950), + [sym_sizeof_expression] = STATE(3950), + [sym_alignof_expression] = STATE(3950), + [sym_offsetof_expression] = STATE(3950), + [sym_generic_expression] = STATE(3950), + [sym_subscript_expression] = STATE(3961), + [sym_call_expression] = STATE(3961), + [sym_gnu_asm_expression] = STATE(3950), + [sym_field_expression] = STATE(3961), + [sym_compound_literal_expression] = STATE(3950), + [sym_parenthesized_expression] = STATE(3961), + [sym_char_literal] = STATE(3756), + [sym_concatenated_string] = STATE(3756), + [sym_string_literal] = STATE(2508), + [sym_null] = STATE(3950), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8975), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3950), + [sym_raw_string_literal] = STATE(2508), + [sym_co_await_expression] = STATE(3950), + [sym_new_expression] = STATE(3950), + [sym_delete_expression] = STATE(3950), + [sym_requires_clause] = STATE(3950), + [sym_requires_expression] = STATE(3950), + [sym_lambda_expression] = STATE(3950), + [sym_lambda_capture_specifier] = STATE(6902), + [sym_fold_expression] = STATE(3950), + [sym_parameter_pack_expansion] = STATE(3950), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(3961), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3961), + [sym_semgrep_ellipsis] = STATE(3960), + [sym_deep_ellipsis] = STATE(3960), + [sym_identifier] = ACTIONS(2923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4882), + [anon_sym_LPAREN2] = ACTIONS(5074), + [anon_sym_BANG] = ACTIONS(2927), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2933), + [anon_sym_not] = ACTIONS(2925), + [anon_sym_compl] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(4888), + [anon_sym_PLUS_PLUS] = ACTIONS(4888), + [anon_sym_sizeof] = ACTIONS(2935), + [anon_sym___alignof__] = ACTIONS(2937), + [anon_sym___alignof] = ACTIONS(2937), + [anon_sym__alignof] = ACTIONS(2937), + [anon_sym_alignof] = ACTIONS(2937), + [anon_sym__Alignof] = ACTIONS(2937), + [anon_sym_offsetof] = ACTIONS(2939), + [anon_sym__Generic] = ACTIONS(2941), + [anon_sym_asm] = ACTIONS(2943), + [anon_sym___asm__] = ACTIONS(2943), + [sym_number_literal] = ACTIONS(2945), + [anon_sym_L_SQUOTE] = ACTIONS(2947), + [anon_sym_u_SQUOTE] = ACTIONS(2947), + [anon_sym_U_SQUOTE] = ACTIONS(2947), + [anon_sym_u8_SQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2947), + [anon_sym_L_DQUOTE] = ACTIONS(2949), + [anon_sym_u_DQUOTE] = ACTIONS(2949), + [anon_sym_U_DQUOTE] = ACTIONS(2949), + [anon_sym_u8_DQUOTE] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2949), + [sym_true] = ACTIONS(2951), + [sym_false] = ACTIONS(2951), + [anon_sym_NULL] = ACTIONS(2953), + [anon_sym_nullptr] = ACTIONS(2953), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2955), + [anon_sym_R_DQUOTE] = ACTIONS(2957), + [anon_sym_LR_DQUOTE] = ACTIONS(2957), + [anon_sym_uR_DQUOTE] = ACTIONS(2957), + [anon_sym_UR_DQUOTE] = ACTIONS(2957), + [anon_sym_u8R_DQUOTE] = ACTIONS(2957), + [anon_sym_co_await] = ACTIONS(2959), + [anon_sym_new] = ACTIONS(2961), + [anon_sym_requires] = ACTIONS(2963), + [sym_this] = ACTIONS(2951), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2965), + [sym_semgrep_named_ellipsis] = ACTIONS(2967), }, - [1457] = { - [sym_expression] = STATE(5715), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9595), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [sym_identifier] = ACTIONS(4059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4063), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), + [1506] = { + [sym_expression] = STATE(3692), + [sym_expression_not_binary] = STATE(3960), + [sym_conditional_expression] = STATE(3950), + [sym_assignment_expression] = STATE(3950), + [sym_pointer_expression] = STATE(3961), + [sym_unary_expression] = STATE(3950), + [sym_binary_expression] = STATE(3960), + [sym_update_expression] = STATE(3950), + [sym_cast_expression] = STATE(3950), + [sym_sizeof_expression] = STATE(3950), + [sym_alignof_expression] = STATE(3950), + [sym_offsetof_expression] = STATE(3950), + [sym_generic_expression] = STATE(3950), + [sym_subscript_expression] = STATE(3961), + [sym_call_expression] = STATE(3961), + [sym_gnu_asm_expression] = STATE(3950), + [sym_field_expression] = STATE(3961), + [sym_compound_literal_expression] = STATE(3950), + [sym_parenthesized_expression] = STATE(3961), + [sym_char_literal] = STATE(3756), + [sym_concatenated_string] = STATE(3756), + [sym_string_literal] = STATE(2508), + [sym_null] = STATE(3950), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8975), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3950), + [sym_raw_string_literal] = STATE(2508), + [sym_co_await_expression] = STATE(3950), + [sym_new_expression] = STATE(3950), + [sym_delete_expression] = STATE(3950), + [sym_requires_clause] = STATE(3950), + [sym_requires_expression] = STATE(3950), + [sym_lambda_expression] = STATE(3950), + [sym_lambda_capture_specifier] = STATE(6902), + [sym_fold_expression] = STATE(3950), + [sym_parameter_pack_expansion] = STATE(3950), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(3961), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3961), + [sym_semgrep_ellipsis] = STATE(3960), + [sym_deep_ellipsis] = STATE(3960), + [sym_identifier] = ACTIONS(2923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4882), + [anon_sym_LPAREN2] = ACTIONS(5074), + [anon_sym_BANG] = ACTIONS(2927), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2933), + [anon_sym_not] = ACTIONS(2925), + [anon_sym_compl] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(4888), + [anon_sym_PLUS_PLUS] = ACTIONS(4888), + [anon_sym_sizeof] = ACTIONS(2935), + [anon_sym___alignof__] = ACTIONS(2937), + [anon_sym___alignof] = ACTIONS(2937), + [anon_sym__alignof] = ACTIONS(2937), + [anon_sym_alignof] = ACTIONS(2937), + [anon_sym__Alignof] = ACTIONS(2937), + [anon_sym_offsetof] = ACTIONS(2939), + [anon_sym__Generic] = ACTIONS(2941), + [anon_sym_asm] = ACTIONS(2943), + [anon_sym___asm__] = ACTIONS(2943), + [sym_number_literal] = ACTIONS(2945), + [anon_sym_L_SQUOTE] = ACTIONS(2947), + [anon_sym_u_SQUOTE] = ACTIONS(2947), + [anon_sym_U_SQUOTE] = ACTIONS(2947), + [anon_sym_u8_SQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2947), + [anon_sym_L_DQUOTE] = ACTIONS(2949), + [anon_sym_u_DQUOTE] = ACTIONS(2949), + [anon_sym_U_DQUOTE] = ACTIONS(2949), + [anon_sym_u8_DQUOTE] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2949), + [sym_true] = ACTIONS(2951), + [sym_false] = ACTIONS(2951), + [anon_sym_NULL] = ACTIONS(2953), + [anon_sym_nullptr] = ACTIONS(2953), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2955), + [anon_sym_R_DQUOTE] = ACTIONS(2957), + [anon_sym_LR_DQUOTE] = ACTIONS(2957), + [anon_sym_uR_DQUOTE] = ACTIONS(2957), + [anon_sym_UR_DQUOTE] = ACTIONS(2957), + [anon_sym_u8R_DQUOTE] = ACTIONS(2957), + [anon_sym_co_await] = ACTIONS(2959), + [anon_sym_new] = ACTIONS(2961), + [anon_sym_requires] = ACTIONS(2963), + [sym_this] = ACTIONS(2951), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2965), + [sym_semgrep_named_ellipsis] = ACTIONS(2967), }, - [1458] = { - [sym_expression] = STATE(5716), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9595), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [sym_identifier] = ACTIONS(4059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4063), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), + [1507] = { + [sym_expression] = STATE(3694), + [sym_expression_not_binary] = STATE(3960), + [sym_conditional_expression] = STATE(3950), + [sym_assignment_expression] = STATE(3950), + [sym_pointer_expression] = STATE(3961), + [sym_unary_expression] = STATE(3950), + [sym_binary_expression] = STATE(3960), + [sym_update_expression] = STATE(3950), + [sym_cast_expression] = STATE(3950), + [sym_sizeof_expression] = STATE(3950), + [sym_alignof_expression] = STATE(3950), + [sym_offsetof_expression] = STATE(3950), + [sym_generic_expression] = STATE(3950), + [sym_subscript_expression] = STATE(3961), + [sym_call_expression] = STATE(3961), + [sym_gnu_asm_expression] = STATE(3950), + [sym_field_expression] = STATE(3961), + [sym_compound_literal_expression] = STATE(3950), + [sym_parenthesized_expression] = STATE(3961), + [sym_char_literal] = STATE(3756), + [sym_concatenated_string] = STATE(3756), + [sym_string_literal] = STATE(2508), + [sym_null] = STATE(3950), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8975), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3950), + [sym_raw_string_literal] = STATE(2508), + [sym_co_await_expression] = STATE(3950), + [sym_new_expression] = STATE(3950), + [sym_delete_expression] = STATE(3950), + [sym_requires_clause] = STATE(3950), + [sym_requires_expression] = STATE(3950), + [sym_lambda_expression] = STATE(3950), + [sym_lambda_capture_specifier] = STATE(6902), + [sym_fold_expression] = STATE(3950), + [sym_parameter_pack_expansion] = STATE(3950), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(3961), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3961), + [sym_semgrep_ellipsis] = STATE(3960), + [sym_deep_ellipsis] = STATE(3960), + [sym_identifier] = ACTIONS(2923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4882), + [anon_sym_LPAREN2] = ACTIONS(5074), + [anon_sym_BANG] = ACTIONS(2927), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2933), + [anon_sym_not] = ACTIONS(2925), + [anon_sym_compl] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(4888), + [anon_sym_PLUS_PLUS] = ACTIONS(4888), + [anon_sym_sizeof] = ACTIONS(2935), + [anon_sym___alignof__] = ACTIONS(2937), + [anon_sym___alignof] = ACTIONS(2937), + [anon_sym__alignof] = ACTIONS(2937), + [anon_sym_alignof] = ACTIONS(2937), + [anon_sym__Alignof] = ACTIONS(2937), + [anon_sym_offsetof] = ACTIONS(2939), + [anon_sym__Generic] = ACTIONS(2941), + [anon_sym_asm] = ACTIONS(2943), + [anon_sym___asm__] = ACTIONS(2943), + [sym_number_literal] = ACTIONS(2945), + [anon_sym_L_SQUOTE] = ACTIONS(2947), + [anon_sym_u_SQUOTE] = ACTIONS(2947), + [anon_sym_U_SQUOTE] = ACTIONS(2947), + [anon_sym_u8_SQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2947), + [anon_sym_L_DQUOTE] = ACTIONS(2949), + [anon_sym_u_DQUOTE] = ACTIONS(2949), + [anon_sym_U_DQUOTE] = ACTIONS(2949), + [anon_sym_u8_DQUOTE] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2949), + [sym_true] = ACTIONS(2951), + [sym_false] = ACTIONS(2951), + [anon_sym_NULL] = ACTIONS(2953), + [anon_sym_nullptr] = ACTIONS(2953), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2955), + [anon_sym_R_DQUOTE] = ACTIONS(2957), + [anon_sym_LR_DQUOTE] = ACTIONS(2957), + [anon_sym_uR_DQUOTE] = ACTIONS(2957), + [anon_sym_UR_DQUOTE] = ACTIONS(2957), + [anon_sym_u8R_DQUOTE] = ACTIONS(2957), + [anon_sym_co_await] = ACTIONS(2959), + [anon_sym_new] = ACTIONS(2961), + [anon_sym_requires] = ACTIONS(2963), + [sym_this] = ACTIONS(2951), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2965), + [sym_semgrep_named_ellipsis] = ACTIONS(2967), }, - [1459] = { - [sym_expression] = STATE(5717), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9595), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [sym_identifier] = ACTIONS(4059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4063), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), + [1508] = { + [sym_expression] = STATE(3670), + [sym_expression_not_binary] = STATE(3960), + [sym_conditional_expression] = STATE(3950), + [sym_assignment_expression] = STATE(3950), + [sym_pointer_expression] = STATE(3961), + [sym_unary_expression] = STATE(3950), + [sym_binary_expression] = STATE(3960), + [sym_update_expression] = STATE(3950), + [sym_cast_expression] = STATE(3950), + [sym_sizeof_expression] = STATE(3950), + [sym_alignof_expression] = STATE(3950), + [sym_offsetof_expression] = STATE(3950), + [sym_generic_expression] = STATE(3950), + [sym_subscript_expression] = STATE(3961), + [sym_call_expression] = STATE(3961), + [sym_gnu_asm_expression] = STATE(3950), + [sym_field_expression] = STATE(3961), + [sym_compound_literal_expression] = STATE(3950), + [sym_parenthesized_expression] = STATE(3961), + [sym_char_literal] = STATE(3756), + [sym_concatenated_string] = STATE(3756), + [sym_string_literal] = STATE(2508), + [sym_null] = STATE(3950), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8975), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3950), + [sym_raw_string_literal] = STATE(2508), + [sym_co_await_expression] = STATE(3950), + [sym_new_expression] = STATE(3950), + [sym_delete_expression] = STATE(3950), + [sym_requires_clause] = STATE(3950), + [sym_requires_expression] = STATE(3950), + [sym_lambda_expression] = STATE(3950), + [sym_lambda_capture_specifier] = STATE(6902), + [sym_fold_expression] = STATE(3950), + [sym_parameter_pack_expansion] = STATE(3950), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(3961), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3961), + [sym_semgrep_ellipsis] = STATE(3960), + [sym_deep_ellipsis] = STATE(3960), + [sym_identifier] = ACTIONS(2923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4882), + [anon_sym_LPAREN2] = ACTIONS(5074), + [anon_sym_BANG] = ACTIONS(2927), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2933), + [anon_sym_not] = ACTIONS(2925), + [anon_sym_compl] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(4888), + [anon_sym_PLUS_PLUS] = ACTIONS(4888), + [anon_sym_sizeof] = ACTIONS(2935), + [anon_sym___alignof__] = ACTIONS(2937), + [anon_sym___alignof] = ACTIONS(2937), + [anon_sym__alignof] = ACTIONS(2937), + [anon_sym_alignof] = ACTIONS(2937), + [anon_sym__Alignof] = ACTIONS(2937), + [anon_sym_offsetof] = ACTIONS(2939), + [anon_sym__Generic] = ACTIONS(2941), + [anon_sym_asm] = ACTIONS(2943), + [anon_sym___asm__] = ACTIONS(2943), + [sym_number_literal] = ACTIONS(2945), + [anon_sym_L_SQUOTE] = ACTIONS(2947), + [anon_sym_u_SQUOTE] = ACTIONS(2947), + [anon_sym_U_SQUOTE] = ACTIONS(2947), + [anon_sym_u8_SQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2947), + [anon_sym_L_DQUOTE] = ACTIONS(2949), + [anon_sym_u_DQUOTE] = ACTIONS(2949), + [anon_sym_U_DQUOTE] = ACTIONS(2949), + [anon_sym_u8_DQUOTE] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2949), + [sym_true] = ACTIONS(2951), + [sym_false] = ACTIONS(2951), + [anon_sym_NULL] = ACTIONS(2953), + [anon_sym_nullptr] = ACTIONS(2953), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2955), + [anon_sym_R_DQUOTE] = ACTIONS(2957), + [anon_sym_LR_DQUOTE] = ACTIONS(2957), + [anon_sym_uR_DQUOTE] = ACTIONS(2957), + [anon_sym_UR_DQUOTE] = ACTIONS(2957), + [anon_sym_u8R_DQUOTE] = ACTIONS(2957), + [anon_sym_co_await] = ACTIONS(2959), + [anon_sym_new] = ACTIONS(2961), + [anon_sym_requires] = ACTIONS(2963), + [sym_this] = ACTIONS(2951), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2965), + [sym_semgrep_named_ellipsis] = ACTIONS(2967), }, - [1460] = { - [sym_expression] = STATE(5390), - [sym_expression_not_binary] = STATE(5540), - [sym_conditional_expression] = STATE(5537), - [sym_assignment_expression] = STATE(5537), - [sym_pointer_expression] = STATE(3745), - [sym_unary_expression] = STATE(5537), - [sym_binary_expression] = STATE(5540), - [sym_update_expression] = STATE(5537), - [sym_cast_expression] = STATE(5537), - [sym_sizeof_expression] = STATE(5537), - [sym_alignof_expression] = STATE(5537), - [sym_offsetof_expression] = STATE(5537), - [sym_generic_expression] = STATE(5537), - [sym_subscript_expression] = STATE(3745), - [sym_call_expression] = STATE(3745), - [sym_gnu_asm_expression] = STATE(5537), - [sym_field_expression] = STATE(3745), - [sym_compound_literal_expression] = STATE(5537), - [sym_parenthesized_expression] = STATE(3745), - [sym_char_literal] = STATE(5453), - [sym_concatenated_string] = STATE(5453), - [sym_string_literal] = STATE(3936), - [sym_null] = STATE(5537), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9333), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5537), - [sym_raw_string_literal] = STATE(3936), - [sym_co_await_expression] = STATE(5537), - [sym_new_expression] = STATE(5537), - [sym_delete_expression] = STATE(5537), - [sym_requires_clause] = STATE(5537), - [sym_requires_expression] = STATE(5537), - [sym_lambda_expression] = STATE(5537), - [sym_lambda_capture_specifier] = STATE(7261), - [sym_fold_expression] = STATE(5537), - [sym_parameter_pack_expansion] = STATE(5537), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3745), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3745), - [sym_semgrep_ellipsis] = STATE(5540), - [sym_deep_ellipsis] = STATE(5540), - [sym_identifier] = ACTIONS(5032), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5034), - [anon_sym_LPAREN2] = ACTIONS(5112), - [anon_sym_BANG] = ACTIONS(3820), - [anon_sym_TILDE] = ACTIONS(3820), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(3822), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3826), - [anon_sym_not] = ACTIONS(3818), - [anon_sym_compl] = ACTIONS(3818), - [anon_sym_DASH_DASH] = ACTIONS(5036), - [anon_sym_PLUS_PLUS] = ACTIONS(5036), - [anon_sym_sizeof] = ACTIONS(3828), - [anon_sym___alignof__] = ACTIONS(3830), - [anon_sym___alignof] = ACTIONS(3830), - [anon_sym__alignof] = ACTIONS(3830), - [anon_sym_alignof] = ACTIONS(3830), - [anon_sym__Alignof] = ACTIONS(3830), - [anon_sym_offsetof] = ACTIONS(3832), - [anon_sym__Generic] = ACTIONS(3834), - [anon_sym_asm] = ACTIONS(3836), - [anon_sym___asm__] = ACTIONS(3836), - [sym_number_literal] = ACTIONS(3838), - [anon_sym_L_SQUOTE] = ACTIONS(3840), - [anon_sym_u_SQUOTE] = ACTIONS(3840), - [anon_sym_U_SQUOTE] = ACTIONS(3840), - [anon_sym_u8_SQUOTE] = ACTIONS(3840), - [anon_sym_SQUOTE] = ACTIONS(3840), - [anon_sym_L_DQUOTE] = ACTIONS(3842), - [anon_sym_u_DQUOTE] = ACTIONS(3842), - [anon_sym_U_DQUOTE] = ACTIONS(3842), - [anon_sym_u8_DQUOTE] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym_true] = ACTIONS(3844), - [sym_false] = ACTIONS(3844), - [anon_sym_NULL] = ACTIONS(3846), - [anon_sym_nullptr] = ACTIONS(3846), + [1509] = { + [sym_expression] = STATE(3539), + [sym_expression_not_binary] = STATE(3960), + [sym_conditional_expression] = STATE(3950), + [sym_assignment_expression] = STATE(3950), + [sym_pointer_expression] = STATE(3961), + [sym_unary_expression] = STATE(3950), + [sym_binary_expression] = STATE(3960), + [sym_update_expression] = STATE(3950), + [sym_cast_expression] = STATE(3950), + [sym_sizeof_expression] = STATE(3950), + [sym_alignof_expression] = STATE(3950), + [sym_offsetof_expression] = STATE(3950), + [sym_generic_expression] = STATE(3950), + [sym_subscript_expression] = STATE(3961), + [sym_call_expression] = STATE(3961), + [sym_gnu_asm_expression] = STATE(3950), + [sym_field_expression] = STATE(3961), + [sym_compound_literal_expression] = STATE(3950), + [sym_parenthesized_expression] = STATE(3961), + [sym_char_literal] = STATE(3756), + [sym_concatenated_string] = STATE(3756), + [sym_string_literal] = STATE(2508), + [sym_null] = STATE(3950), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8975), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3950), + [sym_raw_string_literal] = STATE(2508), + [sym_co_await_expression] = STATE(3950), + [sym_new_expression] = STATE(3950), + [sym_delete_expression] = STATE(3950), + [sym_requires_clause] = STATE(3950), + [sym_requires_expression] = STATE(3950), + [sym_lambda_expression] = STATE(3950), + [sym_lambda_capture_specifier] = STATE(6902), + [sym_fold_expression] = STATE(3950), + [sym_parameter_pack_expansion] = STATE(3950), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(3961), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3961), + [sym_semgrep_ellipsis] = STATE(3960), + [sym_deep_ellipsis] = STATE(3960), + [sym_identifier] = ACTIONS(2923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4882), + [anon_sym_LPAREN2] = ACTIONS(5074), + [anon_sym_BANG] = ACTIONS(2927), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2933), + [anon_sym_not] = ACTIONS(2925), + [anon_sym_compl] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(4888), + [anon_sym_PLUS_PLUS] = ACTIONS(4888), + [anon_sym_sizeof] = ACTIONS(2935), + [anon_sym___alignof__] = ACTIONS(2937), + [anon_sym___alignof] = ACTIONS(2937), + [anon_sym__alignof] = ACTIONS(2937), + [anon_sym_alignof] = ACTIONS(2937), + [anon_sym__Alignof] = ACTIONS(2937), + [anon_sym_offsetof] = ACTIONS(2939), + [anon_sym__Generic] = ACTIONS(2941), + [anon_sym_asm] = ACTIONS(2943), + [anon_sym___asm__] = ACTIONS(2943), + [sym_number_literal] = ACTIONS(2945), + [anon_sym_L_SQUOTE] = ACTIONS(2947), + [anon_sym_u_SQUOTE] = ACTIONS(2947), + [anon_sym_U_SQUOTE] = ACTIONS(2947), + [anon_sym_u8_SQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2947), + [anon_sym_L_DQUOTE] = ACTIONS(2949), + [anon_sym_u_DQUOTE] = ACTIONS(2949), + [anon_sym_U_DQUOTE] = ACTIONS(2949), + [anon_sym_u8_DQUOTE] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2949), + [sym_true] = ACTIONS(2951), + [sym_false] = ACTIONS(2951), + [anon_sym_NULL] = ACTIONS(2953), + [anon_sym_nullptr] = ACTIONS(2953), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(3854), - [anon_sym_requires] = ACTIONS(3856), - [sym_this] = ACTIONS(3844), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3858), - [sym_semgrep_named_ellipsis] = ACTIONS(3860), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2955), + [anon_sym_R_DQUOTE] = ACTIONS(2957), + [anon_sym_LR_DQUOTE] = ACTIONS(2957), + [anon_sym_uR_DQUOTE] = ACTIONS(2957), + [anon_sym_UR_DQUOTE] = ACTIONS(2957), + [anon_sym_u8R_DQUOTE] = ACTIONS(2957), + [anon_sym_co_await] = ACTIONS(2959), + [anon_sym_new] = ACTIONS(2961), + [anon_sym_requires] = ACTIONS(2963), + [sym_this] = ACTIONS(2951), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2965), + [sym_semgrep_named_ellipsis] = ACTIONS(2967), }, - [1461] = { - [sym_expression] = STATE(2981), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), + [1510] = { + [sym_expression] = STATE(3601), + [sym_expression_not_binary] = STATE(3960), + [sym_conditional_expression] = STATE(3950), + [sym_assignment_expression] = STATE(3950), + [sym_pointer_expression] = STATE(3961), + [sym_unary_expression] = STATE(3950), + [sym_binary_expression] = STATE(3960), + [sym_update_expression] = STATE(3950), + [sym_cast_expression] = STATE(3950), + [sym_sizeof_expression] = STATE(3950), + [sym_alignof_expression] = STATE(3950), + [sym_offsetof_expression] = STATE(3950), + [sym_generic_expression] = STATE(3950), + [sym_subscript_expression] = STATE(3961), + [sym_call_expression] = STATE(3961), + [sym_gnu_asm_expression] = STATE(3950), + [sym_field_expression] = STATE(3961), + [sym_compound_literal_expression] = STATE(3950), + [sym_parenthesized_expression] = STATE(3961), + [sym_char_literal] = STATE(3756), + [sym_concatenated_string] = STATE(3756), + [sym_string_literal] = STATE(2508), + [sym_null] = STATE(3950), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8975), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3950), + [sym_raw_string_literal] = STATE(2508), + [sym_co_await_expression] = STATE(3950), + [sym_new_expression] = STATE(3950), + [sym_delete_expression] = STATE(3950), + [sym_requires_clause] = STATE(3950), + [sym_requires_expression] = STATE(3950), + [sym_lambda_expression] = STATE(3950), + [sym_lambda_capture_specifier] = STATE(6902), + [sym_fold_expression] = STATE(3950), + [sym_parameter_pack_expansion] = STATE(3950), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(3961), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3961), + [sym_semgrep_ellipsis] = STATE(3960), + [sym_deep_ellipsis] = STATE(3960), + [sym_identifier] = ACTIONS(2923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4882), + [anon_sym_LPAREN2] = ACTIONS(5074), + [anon_sym_BANG] = ACTIONS(2927), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2933), + [anon_sym_not] = ACTIONS(2925), + [anon_sym_compl] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(4888), + [anon_sym_PLUS_PLUS] = ACTIONS(4888), + [anon_sym_sizeof] = ACTIONS(2935), + [anon_sym___alignof__] = ACTIONS(2937), + [anon_sym___alignof] = ACTIONS(2937), + [anon_sym__alignof] = ACTIONS(2937), + [anon_sym_alignof] = ACTIONS(2937), + [anon_sym__Alignof] = ACTIONS(2937), + [anon_sym_offsetof] = ACTIONS(2939), + [anon_sym__Generic] = ACTIONS(2941), + [anon_sym_asm] = ACTIONS(2943), + [anon_sym___asm__] = ACTIONS(2943), + [sym_number_literal] = ACTIONS(2945), + [anon_sym_L_SQUOTE] = ACTIONS(2947), + [anon_sym_u_SQUOTE] = ACTIONS(2947), + [anon_sym_U_SQUOTE] = ACTIONS(2947), + [anon_sym_u8_SQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2947), + [anon_sym_L_DQUOTE] = ACTIONS(2949), + [anon_sym_u_DQUOTE] = ACTIONS(2949), + [anon_sym_U_DQUOTE] = ACTIONS(2949), + [anon_sym_u8_DQUOTE] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2949), + [sym_true] = ACTIONS(2951), + [sym_false] = ACTIONS(2951), + [anon_sym_NULL] = ACTIONS(2953), + [anon_sym_nullptr] = ACTIONS(2953), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2955), + [anon_sym_R_DQUOTE] = ACTIONS(2957), + [anon_sym_LR_DQUOTE] = ACTIONS(2957), + [anon_sym_uR_DQUOTE] = ACTIONS(2957), + [anon_sym_UR_DQUOTE] = ACTIONS(2957), + [anon_sym_u8R_DQUOTE] = ACTIONS(2957), + [anon_sym_co_await] = ACTIONS(2959), + [anon_sym_new] = ACTIONS(2961), + [anon_sym_requires] = ACTIONS(2963), + [sym_this] = ACTIONS(2951), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2965), + [sym_semgrep_named_ellipsis] = ACTIONS(2967), }, - [1462] = { - [sym_expression] = STATE(2981), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(5372), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), + [1511] = { + [sym_expression] = STATE(5328), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8965), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [sym_identifier] = ACTIONS(4236), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4240), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), }, - [1463] = { - [sym_expression] = STATE(3061), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), + [1512] = { + [sym_expression] = STATE(5340), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8965), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [sym_identifier] = ACTIONS(4236), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4240), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), }, - [1464] = { - [sym_expression] = STATE(3018), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5374), - [anon_sym_LPAREN2] = ACTIONS(5376), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), + [1513] = { + [sym_expression] = STATE(5341), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8965), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [sym_identifier] = ACTIONS(4236), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5308), + [anon_sym_LPAREN2] = ACTIONS(5310), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4240), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), }, - [1465] = { - [sym_expression] = STATE(3755), - [sym_expression_not_binary] = STATE(4050), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9276), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [sym_identifier] = ACTIONS(2854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2858), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), + [1514] = { + [sym_expression] = STATE(2946), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3584), + [sym_concatenated_string] = STATE(3584), + [sym_string_literal] = STATE(2482), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2482), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5060), + [anon_sym_BANG] = ACTIONS(2578), + [anon_sym_TILDE] = ACTIONS(2578), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(2580), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2576), + [anon_sym_compl] = ACTIONS(2576), + [anon_sym_DASH_DASH] = ACTIONS(4964), + [anon_sym_PLUS_PLUS] = ACTIONS(4964), + [anon_sym_sizeof] = ACTIONS(2582), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2584), + [anon_sym_L_SQUOTE] = ACTIONS(2586), + [anon_sym_u_SQUOTE] = ACTIONS(2586), + [anon_sym_U_SQUOTE] = ACTIONS(2586), + [anon_sym_u8_SQUOTE] = ACTIONS(2586), + [anon_sym_SQUOTE] = ACTIONS(2586), + [anon_sym_L_DQUOTE] = ACTIONS(2588), + [anon_sym_u_DQUOTE] = ACTIONS(2588), + [anon_sym_U_DQUOTE] = ACTIONS(2588), + [anon_sym_u8_DQUOTE] = ACTIONS(2588), + [anon_sym_DQUOTE] = ACTIONS(2588), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2590), + [anon_sym_R_DQUOTE] = ACTIONS(2592), + [anon_sym_LR_DQUOTE] = ACTIONS(2592), + [anon_sym_uR_DQUOTE] = ACTIONS(2592), + [anon_sym_UR_DQUOTE] = ACTIONS(2592), + [anon_sym_u8R_DQUOTE] = ACTIONS(2592), + [anon_sym_co_await] = ACTIONS(2594), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1466] = { - [sym_expression] = STATE(5590), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1515] = { + [sym_expression] = STATE(5364), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -249650,184 +244126,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1467] = { - [sym_expression] = STATE(3268), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1468] = { - [sym_expression] = STATE(5151), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5378), - [anon_sym_LPAREN2] = ACTIONS(5380), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1516] = { + [sym_expression] = STATE(5385), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -249854,77 +244228,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1469] = { - [sym_expression] = STATE(5187), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(5382), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1517] = { + [sym_expression] = STATE(5296), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -249956,7 +244330,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -249970,4352 +244344,5576 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1470] = { - [sym_expression] = STATE(3968), - [sym_expression_not_binary] = STATE(4505), - [sym_conditional_expression] = STATE(4488), - [sym_assignment_expression] = STATE(4488), - [sym_pointer_expression] = STATE(4524), - [sym_unary_expression] = STATE(4488), - [sym_binary_expression] = STATE(4505), - [sym_update_expression] = STATE(4488), - [sym_cast_expression] = STATE(4488), - [sym_sizeof_expression] = STATE(4488), - [sym_alignof_expression] = STATE(4488), - [sym_offsetof_expression] = STATE(4488), - [sym_generic_expression] = STATE(4488), - [sym_subscript_expression] = STATE(4524), - [sym_call_expression] = STATE(4524), - [sym_gnu_asm_expression] = STATE(4488), - [sym_field_expression] = STATE(4524), - [sym_compound_literal_expression] = STATE(4488), - [sym_parenthesized_expression] = STATE(4524), - [sym_char_literal] = STATE(4272), - [sym_concatenated_string] = STATE(4272), - [sym_string_literal] = STATE(2514), - [sym_null] = STATE(4488), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9512), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4488), - [sym_raw_string_literal] = STATE(2514), - [sym_co_await_expression] = STATE(4488), - [sym_new_expression] = STATE(4488), - [sym_delete_expression] = STATE(4488), - [sym_requires_clause] = STATE(4488), - [sym_requires_expression] = STATE(4488), - [sym_lambda_expression] = STATE(4488), - [sym_lambda_capture_specifier] = STATE(7259), - [sym_fold_expression] = STATE(4488), - [sym_parameter_pack_expansion] = STATE(4488), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4524), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4524), - [sym_semgrep_ellipsis] = STATE(4505), - [sym_deep_ellipsis] = STATE(4505), - [sym_identifier] = ACTIONS(2999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4972), - [anon_sym_LPAREN2] = ACTIONS(5134), - [anon_sym_BANG] = ACTIONS(3003), - [anon_sym_TILDE] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3009), - [anon_sym_not] = ACTIONS(3001), - [anon_sym_compl] = ACTIONS(3001), - [anon_sym_DASH_DASH] = ACTIONS(4974), - [anon_sym_PLUS_PLUS] = ACTIONS(4974), - [anon_sym_sizeof] = ACTIONS(3011), - [anon_sym___alignof__] = ACTIONS(3013), - [anon_sym___alignof] = ACTIONS(3013), - [anon_sym__alignof] = ACTIONS(3013), - [anon_sym_alignof] = ACTIONS(3013), - [anon_sym__Alignof] = ACTIONS(3013), - [anon_sym_offsetof] = ACTIONS(3015), - [anon_sym__Generic] = ACTIONS(3017), - [anon_sym_asm] = ACTIONS(3019), - [anon_sym___asm__] = ACTIONS(3019), - [sym_number_literal] = ACTIONS(3021), - [anon_sym_L_SQUOTE] = ACTIONS(3023), - [anon_sym_u_SQUOTE] = ACTIONS(3023), - [anon_sym_U_SQUOTE] = ACTIONS(3023), - [anon_sym_u8_SQUOTE] = ACTIONS(3023), - [anon_sym_SQUOTE] = ACTIONS(3023), - [anon_sym_L_DQUOTE] = ACTIONS(3025), - [anon_sym_u_DQUOTE] = ACTIONS(3025), - [anon_sym_U_DQUOTE] = ACTIONS(3025), - [anon_sym_u8_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [anon_sym_NULL] = ACTIONS(3029), - [anon_sym_nullptr] = ACTIONS(3029), + [1518] = { + [sym_expression] = STATE(4016), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(3033), - [anon_sym_LR_DQUOTE] = ACTIONS(3033), - [anon_sym_uR_DQUOTE] = ACTIONS(3033), - [anon_sym_UR_DQUOTE] = ACTIONS(3033), - [anon_sym_u8R_DQUOTE] = ACTIONS(3033), - [anon_sym_co_await] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_requires] = ACTIONS(3039), - [sym_this] = ACTIONS(3027), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3041), - [sym_semgrep_named_ellipsis] = ACTIONS(3043), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), }, - [1471] = { - [sym_expression] = STATE(3969), - [sym_expression_not_binary] = STATE(4505), - [sym_conditional_expression] = STATE(4488), - [sym_assignment_expression] = STATE(4488), - [sym_pointer_expression] = STATE(4524), - [sym_unary_expression] = STATE(4488), - [sym_binary_expression] = STATE(4505), - [sym_update_expression] = STATE(4488), - [sym_cast_expression] = STATE(4488), - [sym_sizeof_expression] = STATE(4488), - [sym_alignof_expression] = STATE(4488), - [sym_offsetof_expression] = STATE(4488), - [sym_generic_expression] = STATE(4488), - [sym_subscript_expression] = STATE(4524), - [sym_call_expression] = STATE(4524), - [sym_gnu_asm_expression] = STATE(4488), - [sym_field_expression] = STATE(4524), - [sym_compound_literal_expression] = STATE(4488), - [sym_parenthesized_expression] = STATE(4524), - [sym_char_literal] = STATE(4272), - [sym_concatenated_string] = STATE(4272), - [sym_string_literal] = STATE(2514), - [sym_null] = STATE(4488), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9512), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4488), - [sym_raw_string_literal] = STATE(2514), - [sym_co_await_expression] = STATE(4488), - [sym_new_expression] = STATE(4488), - [sym_delete_expression] = STATE(4488), - [sym_requires_clause] = STATE(4488), - [sym_requires_expression] = STATE(4488), - [sym_lambda_expression] = STATE(4488), - [sym_lambda_capture_specifier] = STATE(7259), - [sym_fold_expression] = STATE(4488), - [sym_parameter_pack_expansion] = STATE(4488), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4524), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4524), - [sym_semgrep_ellipsis] = STATE(4505), - [sym_deep_ellipsis] = STATE(4505), - [sym_identifier] = ACTIONS(2999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4972), - [anon_sym_LPAREN2] = ACTIONS(5134), - [anon_sym_BANG] = ACTIONS(3003), - [anon_sym_TILDE] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3009), - [anon_sym_not] = ACTIONS(3001), - [anon_sym_compl] = ACTIONS(3001), - [anon_sym_DASH_DASH] = ACTIONS(4974), - [anon_sym_PLUS_PLUS] = ACTIONS(4974), - [anon_sym_sizeof] = ACTIONS(3011), - [anon_sym___alignof__] = ACTIONS(3013), - [anon_sym___alignof] = ACTIONS(3013), - [anon_sym__alignof] = ACTIONS(3013), - [anon_sym_alignof] = ACTIONS(3013), - [anon_sym__Alignof] = ACTIONS(3013), - [anon_sym_offsetof] = ACTIONS(3015), - [anon_sym__Generic] = ACTIONS(3017), - [anon_sym_asm] = ACTIONS(3019), - [anon_sym___asm__] = ACTIONS(3019), - [sym_number_literal] = ACTIONS(3021), - [anon_sym_L_SQUOTE] = ACTIONS(3023), - [anon_sym_u_SQUOTE] = ACTIONS(3023), - [anon_sym_U_SQUOTE] = ACTIONS(3023), - [anon_sym_u8_SQUOTE] = ACTIONS(3023), - [anon_sym_SQUOTE] = ACTIONS(3023), - [anon_sym_L_DQUOTE] = ACTIONS(3025), - [anon_sym_u_DQUOTE] = ACTIONS(3025), - [anon_sym_U_DQUOTE] = ACTIONS(3025), - [anon_sym_u8_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [anon_sym_NULL] = ACTIONS(3029), - [anon_sym_nullptr] = ACTIONS(3029), + [1519] = { + [sym_expression] = STATE(4019), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(3033), - [anon_sym_LR_DQUOTE] = ACTIONS(3033), - [anon_sym_uR_DQUOTE] = ACTIONS(3033), - [anon_sym_UR_DQUOTE] = ACTIONS(3033), - [anon_sym_u8R_DQUOTE] = ACTIONS(3033), - [anon_sym_co_await] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_requires] = ACTIONS(3039), - [sym_this] = ACTIONS(3027), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3041), - [sym_semgrep_named_ellipsis] = ACTIONS(3043), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), }, - [1472] = { - [sym_expression] = STATE(3970), - [sym_expression_not_binary] = STATE(4505), - [sym_conditional_expression] = STATE(4488), - [sym_assignment_expression] = STATE(4488), - [sym_pointer_expression] = STATE(4524), - [sym_unary_expression] = STATE(4488), - [sym_binary_expression] = STATE(4505), - [sym_update_expression] = STATE(4488), - [sym_cast_expression] = STATE(4488), - [sym_sizeof_expression] = STATE(4488), - [sym_alignof_expression] = STATE(4488), - [sym_offsetof_expression] = STATE(4488), - [sym_generic_expression] = STATE(4488), - [sym_subscript_expression] = STATE(4524), - [sym_call_expression] = STATE(4524), - [sym_gnu_asm_expression] = STATE(4488), - [sym_field_expression] = STATE(4524), - [sym_compound_literal_expression] = STATE(4488), - [sym_parenthesized_expression] = STATE(4524), - [sym_char_literal] = STATE(4272), - [sym_concatenated_string] = STATE(4272), - [sym_string_literal] = STATE(2514), - [sym_null] = STATE(4488), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9512), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4488), - [sym_raw_string_literal] = STATE(2514), - [sym_co_await_expression] = STATE(4488), - [sym_new_expression] = STATE(4488), - [sym_delete_expression] = STATE(4488), - [sym_requires_clause] = STATE(4488), - [sym_requires_expression] = STATE(4488), - [sym_lambda_expression] = STATE(4488), - [sym_lambda_capture_specifier] = STATE(7259), - [sym_fold_expression] = STATE(4488), - [sym_parameter_pack_expansion] = STATE(4488), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4524), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4524), - [sym_semgrep_ellipsis] = STATE(4505), - [sym_deep_ellipsis] = STATE(4505), - [sym_identifier] = ACTIONS(2999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4972), - [anon_sym_LPAREN2] = ACTIONS(5134), - [anon_sym_BANG] = ACTIONS(3003), - [anon_sym_TILDE] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3009), - [anon_sym_not] = ACTIONS(3001), - [anon_sym_compl] = ACTIONS(3001), - [anon_sym_DASH_DASH] = ACTIONS(4974), - [anon_sym_PLUS_PLUS] = ACTIONS(4974), - [anon_sym_sizeof] = ACTIONS(3011), - [anon_sym___alignof__] = ACTIONS(3013), - [anon_sym___alignof] = ACTIONS(3013), - [anon_sym__alignof] = ACTIONS(3013), - [anon_sym_alignof] = ACTIONS(3013), - [anon_sym__Alignof] = ACTIONS(3013), - [anon_sym_offsetof] = ACTIONS(3015), - [anon_sym__Generic] = ACTIONS(3017), - [anon_sym_asm] = ACTIONS(3019), - [anon_sym___asm__] = ACTIONS(3019), - [sym_number_literal] = ACTIONS(3021), - [anon_sym_L_SQUOTE] = ACTIONS(3023), - [anon_sym_u_SQUOTE] = ACTIONS(3023), - [anon_sym_U_SQUOTE] = ACTIONS(3023), - [anon_sym_u8_SQUOTE] = ACTIONS(3023), - [anon_sym_SQUOTE] = ACTIONS(3023), - [anon_sym_L_DQUOTE] = ACTIONS(3025), - [anon_sym_u_DQUOTE] = ACTIONS(3025), - [anon_sym_U_DQUOTE] = ACTIONS(3025), - [anon_sym_u8_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [anon_sym_NULL] = ACTIONS(3029), - [anon_sym_nullptr] = ACTIONS(3029), + [1520] = { + [sym_expression] = STATE(4022), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(3033), - [anon_sym_LR_DQUOTE] = ACTIONS(3033), - [anon_sym_uR_DQUOTE] = ACTIONS(3033), - [anon_sym_UR_DQUOTE] = ACTIONS(3033), - [anon_sym_u8R_DQUOTE] = ACTIONS(3033), - [anon_sym_co_await] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_requires] = ACTIONS(3039), - [sym_this] = ACTIONS(3027), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3041), - [sym_semgrep_named_ellipsis] = ACTIONS(3043), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), }, - [1473] = { - [sym_expression] = STATE(3971), - [sym_expression_not_binary] = STATE(4505), - [sym_conditional_expression] = STATE(4488), - [sym_assignment_expression] = STATE(4488), - [sym_pointer_expression] = STATE(4524), - [sym_unary_expression] = STATE(4488), - [sym_binary_expression] = STATE(4505), - [sym_update_expression] = STATE(4488), - [sym_cast_expression] = STATE(4488), - [sym_sizeof_expression] = STATE(4488), - [sym_alignof_expression] = STATE(4488), - [sym_offsetof_expression] = STATE(4488), - [sym_generic_expression] = STATE(4488), - [sym_subscript_expression] = STATE(4524), - [sym_call_expression] = STATE(4524), - [sym_gnu_asm_expression] = STATE(4488), - [sym_field_expression] = STATE(4524), - [sym_compound_literal_expression] = STATE(4488), - [sym_parenthesized_expression] = STATE(4524), - [sym_char_literal] = STATE(4272), - [sym_concatenated_string] = STATE(4272), - [sym_string_literal] = STATE(2514), - [sym_null] = STATE(4488), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9512), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4488), - [sym_raw_string_literal] = STATE(2514), - [sym_co_await_expression] = STATE(4488), - [sym_new_expression] = STATE(4488), - [sym_delete_expression] = STATE(4488), - [sym_requires_clause] = STATE(4488), - [sym_requires_expression] = STATE(4488), - [sym_lambda_expression] = STATE(4488), - [sym_lambda_capture_specifier] = STATE(7259), - [sym_fold_expression] = STATE(4488), - [sym_parameter_pack_expansion] = STATE(4488), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4524), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4524), - [sym_semgrep_ellipsis] = STATE(4505), - [sym_deep_ellipsis] = STATE(4505), - [sym_identifier] = ACTIONS(2999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4972), - [anon_sym_LPAREN2] = ACTIONS(5134), - [anon_sym_BANG] = ACTIONS(3003), - [anon_sym_TILDE] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3009), - [anon_sym_not] = ACTIONS(3001), - [anon_sym_compl] = ACTIONS(3001), - [anon_sym_DASH_DASH] = ACTIONS(4974), - [anon_sym_PLUS_PLUS] = ACTIONS(4974), - [anon_sym_sizeof] = ACTIONS(3011), - [anon_sym___alignof__] = ACTIONS(3013), - [anon_sym___alignof] = ACTIONS(3013), - [anon_sym__alignof] = ACTIONS(3013), - [anon_sym_alignof] = ACTIONS(3013), - [anon_sym__Alignof] = ACTIONS(3013), - [anon_sym_offsetof] = ACTIONS(3015), - [anon_sym__Generic] = ACTIONS(3017), - [anon_sym_asm] = ACTIONS(3019), - [anon_sym___asm__] = ACTIONS(3019), - [sym_number_literal] = ACTIONS(3021), - [anon_sym_L_SQUOTE] = ACTIONS(3023), - [anon_sym_u_SQUOTE] = ACTIONS(3023), - [anon_sym_U_SQUOTE] = ACTIONS(3023), - [anon_sym_u8_SQUOTE] = ACTIONS(3023), - [anon_sym_SQUOTE] = ACTIONS(3023), - [anon_sym_L_DQUOTE] = ACTIONS(3025), - [anon_sym_u_DQUOTE] = ACTIONS(3025), - [anon_sym_U_DQUOTE] = ACTIONS(3025), - [anon_sym_u8_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [anon_sym_NULL] = ACTIONS(3029), - [anon_sym_nullptr] = ACTIONS(3029), + [1521] = { + [sym_expression] = STATE(4023), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(3033), - [anon_sym_LR_DQUOTE] = ACTIONS(3033), - [anon_sym_uR_DQUOTE] = ACTIONS(3033), - [anon_sym_UR_DQUOTE] = ACTIONS(3033), - [anon_sym_u8R_DQUOTE] = ACTIONS(3033), - [anon_sym_co_await] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_requires] = ACTIONS(3039), - [sym_this] = ACTIONS(3027), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3041), - [sym_semgrep_named_ellipsis] = ACTIONS(3043), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), }, - [1474] = { - [sym_expression] = STATE(3972), - [sym_expression_not_binary] = STATE(4505), - [sym_conditional_expression] = STATE(4488), - [sym_assignment_expression] = STATE(4488), - [sym_pointer_expression] = STATE(4524), - [sym_unary_expression] = STATE(4488), - [sym_binary_expression] = STATE(4505), - [sym_update_expression] = STATE(4488), - [sym_cast_expression] = STATE(4488), - [sym_sizeof_expression] = STATE(4488), - [sym_alignof_expression] = STATE(4488), - [sym_offsetof_expression] = STATE(4488), - [sym_generic_expression] = STATE(4488), - [sym_subscript_expression] = STATE(4524), - [sym_call_expression] = STATE(4524), - [sym_gnu_asm_expression] = STATE(4488), - [sym_field_expression] = STATE(4524), - [sym_compound_literal_expression] = STATE(4488), - [sym_parenthesized_expression] = STATE(4524), - [sym_char_literal] = STATE(4272), - [sym_concatenated_string] = STATE(4272), - [sym_string_literal] = STATE(2514), - [sym_null] = STATE(4488), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9512), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4488), - [sym_raw_string_literal] = STATE(2514), - [sym_co_await_expression] = STATE(4488), - [sym_new_expression] = STATE(4488), - [sym_delete_expression] = STATE(4488), - [sym_requires_clause] = STATE(4488), - [sym_requires_expression] = STATE(4488), - [sym_lambda_expression] = STATE(4488), - [sym_lambda_capture_specifier] = STATE(7259), - [sym_fold_expression] = STATE(4488), - [sym_parameter_pack_expansion] = STATE(4488), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4524), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4524), - [sym_semgrep_ellipsis] = STATE(4505), - [sym_deep_ellipsis] = STATE(4505), - [sym_identifier] = ACTIONS(2999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4972), - [anon_sym_LPAREN2] = ACTIONS(5134), - [anon_sym_BANG] = ACTIONS(3003), - [anon_sym_TILDE] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3009), - [anon_sym_not] = ACTIONS(3001), - [anon_sym_compl] = ACTIONS(3001), - [anon_sym_DASH_DASH] = ACTIONS(4974), - [anon_sym_PLUS_PLUS] = ACTIONS(4974), - [anon_sym_sizeof] = ACTIONS(3011), - [anon_sym___alignof__] = ACTIONS(3013), - [anon_sym___alignof] = ACTIONS(3013), - [anon_sym__alignof] = ACTIONS(3013), - [anon_sym_alignof] = ACTIONS(3013), - [anon_sym__Alignof] = ACTIONS(3013), - [anon_sym_offsetof] = ACTIONS(3015), - [anon_sym__Generic] = ACTIONS(3017), - [anon_sym_asm] = ACTIONS(3019), - [anon_sym___asm__] = ACTIONS(3019), - [sym_number_literal] = ACTIONS(3021), - [anon_sym_L_SQUOTE] = ACTIONS(3023), - [anon_sym_u_SQUOTE] = ACTIONS(3023), - [anon_sym_U_SQUOTE] = ACTIONS(3023), - [anon_sym_u8_SQUOTE] = ACTIONS(3023), - [anon_sym_SQUOTE] = ACTIONS(3023), - [anon_sym_L_DQUOTE] = ACTIONS(3025), - [anon_sym_u_DQUOTE] = ACTIONS(3025), - [anon_sym_U_DQUOTE] = ACTIONS(3025), - [anon_sym_u8_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [anon_sym_NULL] = ACTIONS(3029), - [anon_sym_nullptr] = ACTIONS(3029), + [1522] = { + [sym_expression] = STATE(4025), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(3033), - [anon_sym_LR_DQUOTE] = ACTIONS(3033), - [anon_sym_uR_DQUOTE] = ACTIONS(3033), - [anon_sym_UR_DQUOTE] = ACTIONS(3033), - [anon_sym_u8R_DQUOTE] = ACTIONS(3033), - [anon_sym_co_await] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_requires] = ACTIONS(3039), - [sym_this] = ACTIONS(3027), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3041), - [sym_semgrep_named_ellipsis] = ACTIONS(3043), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), }, - [1475] = { - [sym_expression] = STATE(3973), - [sym_expression_not_binary] = STATE(4505), - [sym_conditional_expression] = STATE(4488), - [sym_assignment_expression] = STATE(4488), - [sym_pointer_expression] = STATE(4524), - [sym_unary_expression] = STATE(4488), - [sym_binary_expression] = STATE(4505), - [sym_update_expression] = STATE(4488), - [sym_cast_expression] = STATE(4488), - [sym_sizeof_expression] = STATE(4488), - [sym_alignof_expression] = STATE(4488), - [sym_offsetof_expression] = STATE(4488), - [sym_generic_expression] = STATE(4488), - [sym_subscript_expression] = STATE(4524), - [sym_call_expression] = STATE(4524), - [sym_gnu_asm_expression] = STATE(4488), - [sym_field_expression] = STATE(4524), - [sym_compound_literal_expression] = STATE(4488), - [sym_parenthesized_expression] = STATE(4524), - [sym_char_literal] = STATE(4272), - [sym_concatenated_string] = STATE(4272), - [sym_string_literal] = STATE(2514), - [sym_null] = STATE(4488), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9512), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4488), - [sym_raw_string_literal] = STATE(2514), - [sym_co_await_expression] = STATE(4488), - [sym_new_expression] = STATE(4488), - [sym_delete_expression] = STATE(4488), - [sym_requires_clause] = STATE(4488), - [sym_requires_expression] = STATE(4488), - [sym_lambda_expression] = STATE(4488), - [sym_lambda_capture_specifier] = STATE(7259), - [sym_fold_expression] = STATE(4488), - [sym_parameter_pack_expansion] = STATE(4488), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4524), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4524), - [sym_semgrep_ellipsis] = STATE(4505), - [sym_deep_ellipsis] = STATE(4505), - [sym_identifier] = ACTIONS(2999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4972), - [anon_sym_LPAREN2] = ACTIONS(5134), - [anon_sym_BANG] = ACTIONS(3003), - [anon_sym_TILDE] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3009), - [anon_sym_not] = ACTIONS(3001), - [anon_sym_compl] = ACTIONS(3001), - [anon_sym_DASH_DASH] = ACTIONS(4974), - [anon_sym_PLUS_PLUS] = ACTIONS(4974), - [anon_sym_sizeof] = ACTIONS(3011), - [anon_sym___alignof__] = ACTIONS(3013), - [anon_sym___alignof] = ACTIONS(3013), - [anon_sym__alignof] = ACTIONS(3013), - [anon_sym_alignof] = ACTIONS(3013), - [anon_sym__Alignof] = ACTIONS(3013), - [anon_sym_offsetof] = ACTIONS(3015), - [anon_sym__Generic] = ACTIONS(3017), - [anon_sym_asm] = ACTIONS(3019), - [anon_sym___asm__] = ACTIONS(3019), - [sym_number_literal] = ACTIONS(3021), - [anon_sym_L_SQUOTE] = ACTIONS(3023), - [anon_sym_u_SQUOTE] = ACTIONS(3023), - [anon_sym_U_SQUOTE] = ACTIONS(3023), - [anon_sym_u8_SQUOTE] = ACTIONS(3023), - [anon_sym_SQUOTE] = ACTIONS(3023), - [anon_sym_L_DQUOTE] = ACTIONS(3025), - [anon_sym_u_DQUOTE] = ACTIONS(3025), - [anon_sym_U_DQUOTE] = ACTIONS(3025), - [anon_sym_u8_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [anon_sym_NULL] = ACTIONS(3029), - [anon_sym_nullptr] = ACTIONS(3029), + [1523] = { + [sym_expression] = STATE(4043), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(3033), - [anon_sym_LR_DQUOTE] = ACTIONS(3033), - [anon_sym_uR_DQUOTE] = ACTIONS(3033), - [anon_sym_UR_DQUOTE] = ACTIONS(3033), - [anon_sym_u8R_DQUOTE] = ACTIONS(3033), - [anon_sym_co_await] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_requires] = ACTIONS(3039), - [sym_this] = ACTIONS(3027), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3041), - [sym_semgrep_named_ellipsis] = ACTIONS(3043), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), }, - [1476] = { - [sym_expression] = STATE(3974), - [sym_expression_not_binary] = STATE(4505), - [sym_conditional_expression] = STATE(4488), - [sym_assignment_expression] = STATE(4488), - [sym_pointer_expression] = STATE(4524), - [sym_unary_expression] = STATE(4488), - [sym_binary_expression] = STATE(4505), - [sym_update_expression] = STATE(4488), - [sym_cast_expression] = STATE(4488), - [sym_sizeof_expression] = STATE(4488), - [sym_alignof_expression] = STATE(4488), - [sym_offsetof_expression] = STATE(4488), - [sym_generic_expression] = STATE(4488), - [sym_subscript_expression] = STATE(4524), - [sym_call_expression] = STATE(4524), - [sym_gnu_asm_expression] = STATE(4488), - [sym_field_expression] = STATE(4524), - [sym_compound_literal_expression] = STATE(4488), - [sym_parenthesized_expression] = STATE(4524), - [sym_char_literal] = STATE(4272), - [sym_concatenated_string] = STATE(4272), - [sym_string_literal] = STATE(2514), - [sym_null] = STATE(4488), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9512), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4488), - [sym_raw_string_literal] = STATE(2514), - [sym_co_await_expression] = STATE(4488), - [sym_new_expression] = STATE(4488), - [sym_delete_expression] = STATE(4488), - [sym_requires_clause] = STATE(4488), - [sym_requires_expression] = STATE(4488), - [sym_lambda_expression] = STATE(4488), - [sym_lambda_capture_specifier] = STATE(7259), - [sym_fold_expression] = STATE(4488), - [sym_parameter_pack_expansion] = STATE(4488), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4524), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4524), - [sym_semgrep_ellipsis] = STATE(4505), - [sym_deep_ellipsis] = STATE(4505), - [sym_identifier] = ACTIONS(2999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4972), - [anon_sym_LPAREN2] = ACTIONS(5134), - [anon_sym_BANG] = ACTIONS(3003), - [anon_sym_TILDE] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3009), - [anon_sym_not] = ACTIONS(3001), - [anon_sym_compl] = ACTIONS(3001), - [anon_sym_DASH_DASH] = ACTIONS(4974), - [anon_sym_PLUS_PLUS] = ACTIONS(4974), - [anon_sym_sizeof] = ACTIONS(3011), - [anon_sym___alignof__] = ACTIONS(3013), - [anon_sym___alignof] = ACTIONS(3013), - [anon_sym__alignof] = ACTIONS(3013), - [anon_sym_alignof] = ACTIONS(3013), - [anon_sym__Alignof] = ACTIONS(3013), - [anon_sym_offsetof] = ACTIONS(3015), - [anon_sym__Generic] = ACTIONS(3017), - [anon_sym_asm] = ACTIONS(3019), - [anon_sym___asm__] = ACTIONS(3019), - [sym_number_literal] = ACTIONS(3021), - [anon_sym_L_SQUOTE] = ACTIONS(3023), - [anon_sym_u_SQUOTE] = ACTIONS(3023), - [anon_sym_U_SQUOTE] = ACTIONS(3023), - [anon_sym_u8_SQUOTE] = ACTIONS(3023), - [anon_sym_SQUOTE] = ACTIONS(3023), - [anon_sym_L_DQUOTE] = ACTIONS(3025), - [anon_sym_u_DQUOTE] = ACTIONS(3025), - [anon_sym_U_DQUOTE] = ACTIONS(3025), - [anon_sym_u8_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [anon_sym_NULL] = ACTIONS(3029), - [anon_sym_nullptr] = ACTIONS(3029), + [1524] = { + [sym_expression] = STATE(4044), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(3033), - [anon_sym_LR_DQUOTE] = ACTIONS(3033), - [anon_sym_uR_DQUOTE] = ACTIONS(3033), - [anon_sym_UR_DQUOTE] = ACTIONS(3033), - [anon_sym_u8R_DQUOTE] = ACTIONS(3033), - [anon_sym_co_await] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_requires] = ACTIONS(3039), - [sym_this] = ACTIONS(3027), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3041), - [sym_semgrep_named_ellipsis] = ACTIONS(3043), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), }, - [1477] = { - [sym_expression] = STATE(3975), - [sym_expression_not_binary] = STATE(4505), - [sym_conditional_expression] = STATE(4488), - [sym_assignment_expression] = STATE(4488), - [sym_pointer_expression] = STATE(4524), - [sym_unary_expression] = STATE(4488), - [sym_binary_expression] = STATE(4505), - [sym_update_expression] = STATE(4488), - [sym_cast_expression] = STATE(4488), - [sym_sizeof_expression] = STATE(4488), - [sym_alignof_expression] = STATE(4488), - [sym_offsetof_expression] = STATE(4488), - [sym_generic_expression] = STATE(4488), - [sym_subscript_expression] = STATE(4524), - [sym_call_expression] = STATE(4524), - [sym_gnu_asm_expression] = STATE(4488), - [sym_field_expression] = STATE(4524), - [sym_compound_literal_expression] = STATE(4488), - [sym_parenthesized_expression] = STATE(4524), - [sym_char_literal] = STATE(4272), - [sym_concatenated_string] = STATE(4272), - [sym_string_literal] = STATE(2514), - [sym_null] = STATE(4488), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9512), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4488), - [sym_raw_string_literal] = STATE(2514), - [sym_co_await_expression] = STATE(4488), - [sym_new_expression] = STATE(4488), - [sym_delete_expression] = STATE(4488), - [sym_requires_clause] = STATE(4488), - [sym_requires_expression] = STATE(4488), - [sym_lambda_expression] = STATE(4488), - [sym_lambda_capture_specifier] = STATE(7259), - [sym_fold_expression] = STATE(4488), - [sym_parameter_pack_expansion] = STATE(4488), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4524), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4524), - [sym_semgrep_ellipsis] = STATE(4505), - [sym_deep_ellipsis] = STATE(4505), - [sym_identifier] = ACTIONS(2999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4972), - [anon_sym_LPAREN2] = ACTIONS(5134), - [anon_sym_BANG] = ACTIONS(3003), - [anon_sym_TILDE] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3009), - [anon_sym_not] = ACTIONS(3001), - [anon_sym_compl] = ACTIONS(3001), - [anon_sym_DASH_DASH] = ACTIONS(4974), - [anon_sym_PLUS_PLUS] = ACTIONS(4974), - [anon_sym_sizeof] = ACTIONS(3011), - [anon_sym___alignof__] = ACTIONS(3013), - [anon_sym___alignof] = ACTIONS(3013), - [anon_sym__alignof] = ACTIONS(3013), - [anon_sym_alignof] = ACTIONS(3013), - [anon_sym__Alignof] = ACTIONS(3013), - [anon_sym_offsetof] = ACTIONS(3015), - [anon_sym__Generic] = ACTIONS(3017), - [anon_sym_asm] = ACTIONS(3019), - [anon_sym___asm__] = ACTIONS(3019), - [sym_number_literal] = ACTIONS(3021), - [anon_sym_L_SQUOTE] = ACTIONS(3023), - [anon_sym_u_SQUOTE] = ACTIONS(3023), - [anon_sym_U_SQUOTE] = ACTIONS(3023), - [anon_sym_u8_SQUOTE] = ACTIONS(3023), - [anon_sym_SQUOTE] = ACTIONS(3023), - [anon_sym_L_DQUOTE] = ACTIONS(3025), - [anon_sym_u_DQUOTE] = ACTIONS(3025), - [anon_sym_U_DQUOTE] = ACTIONS(3025), - [anon_sym_u8_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [anon_sym_NULL] = ACTIONS(3029), - [anon_sym_nullptr] = ACTIONS(3029), + [1525] = { + [sym_expression] = STATE(4047), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(3033), - [anon_sym_LR_DQUOTE] = ACTIONS(3033), - [anon_sym_uR_DQUOTE] = ACTIONS(3033), - [anon_sym_UR_DQUOTE] = ACTIONS(3033), - [anon_sym_u8R_DQUOTE] = ACTIONS(3033), - [anon_sym_co_await] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_requires] = ACTIONS(3039), - [sym_this] = ACTIONS(3027), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3041), - [sym_semgrep_named_ellipsis] = ACTIONS(3043), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), }, - [1478] = { - [sym_expression] = STATE(3976), - [sym_expression_not_binary] = STATE(4505), - [sym_conditional_expression] = STATE(4488), - [sym_assignment_expression] = STATE(4488), - [sym_pointer_expression] = STATE(4524), - [sym_unary_expression] = STATE(4488), - [sym_binary_expression] = STATE(4505), - [sym_update_expression] = STATE(4488), - [sym_cast_expression] = STATE(4488), - [sym_sizeof_expression] = STATE(4488), - [sym_alignof_expression] = STATE(4488), - [sym_offsetof_expression] = STATE(4488), - [sym_generic_expression] = STATE(4488), - [sym_subscript_expression] = STATE(4524), - [sym_call_expression] = STATE(4524), - [sym_gnu_asm_expression] = STATE(4488), - [sym_field_expression] = STATE(4524), - [sym_compound_literal_expression] = STATE(4488), - [sym_parenthesized_expression] = STATE(4524), - [sym_char_literal] = STATE(4272), - [sym_concatenated_string] = STATE(4272), - [sym_string_literal] = STATE(2514), - [sym_null] = STATE(4488), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9512), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4488), - [sym_raw_string_literal] = STATE(2514), - [sym_co_await_expression] = STATE(4488), - [sym_new_expression] = STATE(4488), - [sym_delete_expression] = STATE(4488), - [sym_requires_clause] = STATE(4488), - [sym_requires_expression] = STATE(4488), - [sym_lambda_expression] = STATE(4488), - [sym_lambda_capture_specifier] = STATE(7259), - [sym_fold_expression] = STATE(4488), - [sym_parameter_pack_expansion] = STATE(4488), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4524), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4524), - [sym_semgrep_ellipsis] = STATE(4505), - [sym_deep_ellipsis] = STATE(4505), - [sym_identifier] = ACTIONS(2999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4972), - [anon_sym_LPAREN2] = ACTIONS(5134), - [anon_sym_BANG] = ACTIONS(3003), - [anon_sym_TILDE] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3009), - [anon_sym_not] = ACTIONS(3001), - [anon_sym_compl] = ACTIONS(3001), - [anon_sym_DASH_DASH] = ACTIONS(4974), - [anon_sym_PLUS_PLUS] = ACTIONS(4974), - [anon_sym_sizeof] = ACTIONS(3011), - [anon_sym___alignof__] = ACTIONS(3013), - [anon_sym___alignof] = ACTIONS(3013), - [anon_sym__alignof] = ACTIONS(3013), - [anon_sym_alignof] = ACTIONS(3013), - [anon_sym__Alignof] = ACTIONS(3013), - [anon_sym_offsetof] = ACTIONS(3015), - [anon_sym__Generic] = ACTIONS(3017), - [anon_sym_asm] = ACTIONS(3019), - [anon_sym___asm__] = ACTIONS(3019), - [sym_number_literal] = ACTIONS(3021), - [anon_sym_L_SQUOTE] = ACTIONS(3023), - [anon_sym_u_SQUOTE] = ACTIONS(3023), - [anon_sym_U_SQUOTE] = ACTIONS(3023), - [anon_sym_u8_SQUOTE] = ACTIONS(3023), - [anon_sym_SQUOTE] = ACTIONS(3023), - [anon_sym_L_DQUOTE] = ACTIONS(3025), - [anon_sym_u_DQUOTE] = ACTIONS(3025), - [anon_sym_U_DQUOTE] = ACTIONS(3025), - [anon_sym_u8_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [anon_sym_NULL] = ACTIONS(3029), - [anon_sym_nullptr] = ACTIONS(3029), + [1526] = { + [sym_expression] = STATE(4048), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(3033), - [anon_sym_LR_DQUOTE] = ACTIONS(3033), - [anon_sym_uR_DQUOTE] = ACTIONS(3033), - [anon_sym_UR_DQUOTE] = ACTIONS(3033), - [anon_sym_u8R_DQUOTE] = ACTIONS(3033), - [anon_sym_co_await] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_requires] = ACTIONS(3039), - [sym_this] = ACTIONS(3027), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3041), - [sym_semgrep_named_ellipsis] = ACTIONS(3043), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), }, - [1479] = { - [sym_expression] = STATE(3977), - [sym_expression_not_binary] = STATE(4505), - [sym_conditional_expression] = STATE(4488), - [sym_assignment_expression] = STATE(4488), - [sym_pointer_expression] = STATE(4524), - [sym_unary_expression] = STATE(4488), - [sym_binary_expression] = STATE(4505), - [sym_update_expression] = STATE(4488), - [sym_cast_expression] = STATE(4488), - [sym_sizeof_expression] = STATE(4488), - [sym_alignof_expression] = STATE(4488), - [sym_offsetof_expression] = STATE(4488), - [sym_generic_expression] = STATE(4488), - [sym_subscript_expression] = STATE(4524), - [sym_call_expression] = STATE(4524), - [sym_gnu_asm_expression] = STATE(4488), - [sym_field_expression] = STATE(4524), - [sym_compound_literal_expression] = STATE(4488), - [sym_parenthesized_expression] = STATE(4524), - [sym_char_literal] = STATE(4272), - [sym_concatenated_string] = STATE(4272), - [sym_string_literal] = STATE(2514), - [sym_null] = STATE(4488), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9512), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4488), - [sym_raw_string_literal] = STATE(2514), - [sym_co_await_expression] = STATE(4488), - [sym_new_expression] = STATE(4488), - [sym_delete_expression] = STATE(4488), - [sym_requires_clause] = STATE(4488), - [sym_requires_expression] = STATE(4488), - [sym_lambda_expression] = STATE(4488), - [sym_lambda_capture_specifier] = STATE(7259), - [sym_fold_expression] = STATE(4488), - [sym_parameter_pack_expansion] = STATE(4488), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4524), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4524), - [sym_semgrep_ellipsis] = STATE(4505), - [sym_deep_ellipsis] = STATE(4505), - [sym_identifier] = ACTIONS(2999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4972), - [anon_sym_LPAREN2] = ACTIONS(5134), - [anon_sym_BANG] = ACTIONS(3003), - [anon_sym_TILDE] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3009), - [anon_sym_not] = ACTIONS(3001), - [anon_sym_compl] = ACTIONS(3001), - [anon_sym_DASH_DASH] = ACTIONS(4974), - [anon_sym_PLUS_PLUS] = ACTIONS(4974), - [anon_sym_sizeof] = ACTIONS(3011), - [anon_sym___alignof__] = ACTIONS(3013), - [anon_sym___alignof] = ACTIONS(3013), - [anon_sym__alignof] = ACTIONS(3013), - [anon_sym_alignof] = ACTIONS(3013), - [anon_sym__Alignof] = ACTIONS(3013), - [anon_sym_offsetof] = ACTIONS(3015), - [anon_sym__Generic] = ACTIONS(3017), - [anon_sym_asm] = ACTIONS(3019), - [anon_sym___asm__] = ACTIONS(3019), - [sym_number_literal] = ACTIONS(3021), - [anon_sym_L_SQUOTE] = ACTIONS(3023), - [anon_sym_u_SQUOTE] = ACTIONS(3023), - [anon_sym_U_SQUOTE] = ACTIONS(3023), - [anon_sym_u8_SQUOTE] = ACTIONS(3023), - [anon_sym_SQUOTE] = ACTIONS(3023), - [anon_sym_L_DQUOTE] = ACTIONS(3025), - [anon_sym_u_DQUOTE] = ACTIONS(3025), - [anon_sym_U_DQUOTE] = ACTIONS(3025), - [anon_sym_u8_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [anon_sym_NULL] = ACTIONS(3029), - [anon_sym_nullptr] = ACTIONS(3029), + [1527] = { + [sym_expression] = STATE(4051), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(3033), - [anon_sym_LR_DQUOTE] = ACTIONS(3033), - [anon_sym_uR_DQUOTE] = ACTIONS(3033), - [anon_sym_UR_DQUOTE] = ACTIONS(3033), - [anon_sym_u8R_DQUOTE] = ACTIONS(3033), - [anon_sym_co_await] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_requires] = ACTIONS(3039), - [sym_this] = ACTIONS(3027), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3041), - [sym_semgrep_named_ellipsis] = ACTIONS(3043), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), }, - [1480] = { - [sym_expression] = STATE(6002), - [sym_expression_not_binary] = STATE(6169), - [sym_conditional_expression] = STATE(6267), - [sym_assignment_expression] = STATE(6267), - [sym_pointer_expression] = STATE(4422), - [sym_unary_expression] = STATE(6267), - [sym_binary_expression] = STATE(6169), - [sym_update_expression] = STATE(6267), - [sym_cast_expression] = STATE(6267), - [sym_sizeof_expression] = STATE(6267), - [sym_alignof_expression] = STATE(6267), - [sym_offsetof_expression] = STATE(6267), - [sym_generic_expression] = STATE(6267), - [sym_subscript_expression] = STATE(4422), - [sym_call_expression] = STATE(4422), - [sym_gnu_asm_expression] = STATE(6267), - [sym_field_expression] = STATE(4422), - [sym_compound_literal_expression] = STATE(6267), - [sym_parenthesized_expression] = STATE(4422), - [sym_char_literal] = STATE(6147), - [sym_concatenated_string] = STATE(6147), - [sym_string_literal] = STATE(4563), - [sym_null] = STATE(6267), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9242), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6267), - [sym_raw_string_literal] = STATE(4563), - [sym_co_await_expression] = STATE(6267), - [sym_new_expression] = STATE(6267), - [sym_delete_expression] = STATE(6267), - [sym_requires_clause] = STATE(6267), - [sym_requires_expression] = STATE(6267), - [sym_lambda_expression] = STATE(6267), - [sym_lambda_capture_specifier] = STATE(7263), - [sym_fold_expression] = STATE(6267), - [sym_parameter_pack_expansion] = STATE(6267), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4422), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4422), - [sym_semgrep_ellipsis] = STATE(6169), - [sym_deep_ellipsis] = STATE(6169), - [sym_identifier] = ACTIONS(4112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5054), - [anon_sym_LPAREN2] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_TILDE] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4122), - [anon_sym_not] = ACTIONS(4114), - [anon_sym_compl] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(5056), - [anon_sym_PLUS_PLUS] = ACTIONS(5056), - [anon_sym_sizeof] = ACTIONS(4124), - [anon_sym___alignof__] = ACTIONS(4126), - [anon_sym___alignof] = ACTIONS(4126), - [anon_sym__alignof] = ACTIONS(4126), - [anon_sym_alignof] = ACTIONS(4126), - [anon_sym__Alignof] = ACTIONS(4126), - [anon_sym_offsetof] = ACTIONS(4128), - [anon_sym__Generic] = ACTIONS(4130), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4136), - [anon_sym_u_SQUOTE] = ACTIONS(4136), - [anon_sym_U_SQUOTE] = ACTIONS(4136), - [anon_sym_u8_SQUOTE] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_L_DQUOTE] = ACTIONS(4138), - [anon_sym_u_DQUOTE] = ACTIONS(4138), - [anon_sym_U_DQUOTE] = ACTIONS(4138), - [anon_sym_u8_DQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [anon_sym_NULL] = ACTIONS(4142), - [anon_sym_nullptr] = ACTIONS(4142), + [1528] = { + [sym_expression] = STATE(4115), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4150), - [anon_sym_requires] = ACTIONS(4152), - [sym_this] = ACTIONS(4140), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4154), - [sym_semgrep_named_ellipsis] = ACTIONS(4156), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), }, - [1481] = { - [sym_expression] = STATE(6019), - [sym_expression_not_binary] = STATE(6169), - [sym_conditional_expression] = STATE(6267), - [sym_assignment_expression] = STATE(6267), - [sym_pointer_expression] = STATE(4422), - [sym_unary_expression] = STATE(6267), - [sym_binary_expression] = STATE(6169), - [sym_update_expression] = STATE(6267), - [sym_cast_expression] = STATE(6267), - [sym_sizeof_expression] = STATE(6267), - [sym_alignof_expression] = STATE(6267), - [sym_offsetof_expression] = STATE(6267), - [sym_generic_expression] = STATE(6267), - [sym_subscript_expression] = STATE(4422), - [sym_call_expression] = STATE(4422), - [sym_gnu_asm_expression] = STATE(6267), - [sym_field_expression] = STATE(4422), - [sym_compound_literal_expression] = STATE(6267), - [sym_parenthesized_expression] = STATE(4422), - [sym_char_literal] = STATE(6147), - [sym_concatenated_string] = STATE(6147), - [sym_string_literal] = STATE(4563), - [sym_null] = STATE(6267), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9242), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6267), - [sym_raw_string_literal] = STATE(4563), - [sym_co_await_expression] = STATE(6267), - [sym_new_expression] = STATE(6267), - [sym_delete_expression] = STATE(6267), - [sym_requires_clause] = STATE(6267), - [sym_requires_expression] = STATE(6267), - [sym_lambda_expression] = STATE(6267), - [sym_lambda_capture_specifier] = STATE(7263), - [sym_fold_expression] = STATE(6267), - [sym_parameter_pack_expansion] = STATE(6267), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4422), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4422), - [sym_semgrep_ellipsis] = STATE(6169), - [sym_deep_ellipsis] = STATE(6169), - [sym_identifier] = ACTIONS(4112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5054), - [anon_sym_LPAREN2] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_TILDE] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4122), - [anon_sym_not] = ACTIONS(4114), - [anon_sym_compl] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(5056), - [anon_sym_PLUS_PLUS] = ACTIONS(5056), - [anon_sym_sizeof] = ACTIONS(4124), - [anon_sym___alignof__] = ACTIONS(4126), - [anon_sym___alignof] = ACTIONS(4126), - [anon_sym__alignof] = ACTIONS(4126), - [anon_sym_alignof] = ACTIONS(4126), - [anon_sym__Alignof] = ACTIONS(4126), - [anon_sym_offsetof] = ACTIONS(4128), - [anon_sym__Generic] = ACTIONS(4130), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4136), - [anon_sym_u_SQUOTE] = ACTIONS(4136), - [anon_sym_U_SQUOTE] = ACTIONS(4136), - [anon_sym_u8_SQUOTE] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_L_DQUOTE] = ACTIONS(4138), - [anon_sym_u_DQUOTE] = ACTIONS(4138), - [anon_sym_U_DQUOTE] = ACTIONS(4138), - [anon_sym_u8_DQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [anon_sym_NULL] = ACTIONS(4142), - [anon_sym_nullptr] = ACTIONS(4142), + [1529] = { + [sym_expression] = STATE(3974), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4150), - [anon_sym_requires] = ACTIONS(4152), - [sym_this] = ACTIONS(4140), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4154), - [sym_semgrep_named_ellipsis] = ACTIONS(4156), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), }, - [1482] = { - [sym_expression] = STATE(6031), - [sym_expression_not_binary] = STATE(6169), - [sym_conditional_expression] = STATE(6267), - [sym_assignment_expression] = STATE(6267), - [sym_pointer_expression] = STATE(4422), - [sym_unary_expression] = STATE(6267), - [sym_binary_expression] = STATE(6169), - [sym_update_expression] = STATE(6267), - [sym_cast_expression] = STATE(6267), - [sym_sizeof_expression] = STATE(6267), - [sym_alignof_expression] = STATE(6267), - [sym_offsetof_expression] = STATE(6267), - [sym_generic_expression] = STATE(6267), - [sym_subscript_expression] = STATE(4422), - [sym_call_expression] = STATE(4422), - [sym_gnu_asm_expression] = STATE(6267), - [sym_field_expression] = STATE(4422), - [sym_compound_literal_expression] = STATE(6267), - [sym_parenthesized_expression] = STATE(4422), - [sym_char_literal] = STATE(6147), - [sym_concatenated_string] = STATE(6147), - [sym_string_literal] = STATE(4563), - [sym_null] = STATE(6267), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9242), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6267), - [sym_raw_string_literal] = STATE(4563), - [sym_co_await_expression] = STATE(6267), - [sym_new_expression] = STATE(6267), - [sym_delete_expression] = STATE(6267), - [sym_requires_clause] = STATE(6267), - [sym_requires_expression] = STATE(6267), - [sym_lambda_expression] = STATE(6267), - [sym_lambda_capture_specifier] = STATE(7263), - [sym_fold_expression] = STATE(6267), - [sym_parameter_pack_expansion] = STATE(6267), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4422), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4422), - [sym_semgrep_ellipsis] = STATE(6169), - [sym_deep_ellipsis] = STATE(6169), - [sym_identifier] = ACTIONS(4112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5384), - [anon_sym_LPAREN2] = ACTIONS(5386), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_TILDE] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4122), - [anon_sym_not] = ACTIONS(4114), - [anon_sym_compl] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(5056), - [anon_sym_PLUS_PLUS] = ACTIONS(5056), - [anon_sym_sizeof] = ACTIONS(4124), - [anon_sym___alignof__] = ACTIONS(4126), - [anon_sym___alignof] = ACTIONS(4126), - [anon_sym__alignof] = ACTIONS(4126), - [anon_sym_alignof] = ACTIONS(4126), - [anon_sym__Alignof] = ACTIONS(4126), - [anon_sym_offsetof] = ACTIONS(4128), - [anon_sym__Generic] = ACTIONS(4130), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4136), - [anon_sym_u_SQUOTE] = ACTIONS(4136), - [anon_sym_U_SQUOTE] = ACTIONS(4136), - [anon_sym_u8_SQUOTE] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_L_DQUOTE] = ACTIONS(4138), - [anon_sym_u_DQUOTE] = ACTIONS(4138), - [anon_sym_U_DQUOTE] = ACTIONS(4138), - [anon_sym_u8_DQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [anon_sym_NULL] = ACTIONS(4142), - [anon_sym_nullptr] = ACTIONS(4142), + [1530] = { + [sym_expression] = STATE(3979), + [sym_expression_not_binary] = STATE(4323), + [sym_conditional_expression] = STATE(4266), + [sym_assignment_expression] = STATE(4266), + [sym_pointer_expression] = STATE(3937), + [sym_unary_expression] = STATE(4266), + [sym_binary_expression] = STATE(4323), + [sym_update_expression] = STATE(4266), + [sym_cast_expression] = STATE(4266), + [sym_sizeof_expression] = STATE(4266), + [sym_alignof_expression] = STATE(4266), + [sym_offsetof_expression] = STATE(4266), + [sym_generic_expression] = STATE(4266), + [sym_subscript_expression] = STATE(3937), + [sym_call_expression] = STATE(3937), + [sym_gnu_asm_expression] = STATE(4266), + [sym_field_expression] = STATE(3937), + [sym_compound_literal_expression] = STATE(4266), + [sym_parenthesized_expression] = STATE(3937), + [sym_char_literal] = STATE(4135), + [sym_concatenated_string] = STATE(4135), + [sym_string_literal] = STATE(2701), + [sym_null] = STATE(4266), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8733), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4266), + [sym_raw_string_literal] = STATE(2701), + [sym_co_await_expression] = STATE(4266), + [sym_new_expression] = STATE(4266), + [sym_delete_expression] = STATE(4266), + [sym_requires_clause] = STATE(4266), + [sym_requires_expression] = STATE(4266), + [sym_lambda_expression] = STATE(4266), + [sym_lambda_capture_specifier] = STATE(6863), + [sym_fold_expression] = STATE(4266), + [sym_parameter_pack_expansion] = STATE(4266), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6638), + [sym_qualified_identifier] = STATE(3937), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3937), + [sym_semgrep_ellipsis] = STATE(4323), + [sym_deep_ellipsis] = STATE(4323), + [sym_identifier] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5312), + [anon_sym_LPAREN2] = ACTIONS(5314), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3038), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_compl] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2149), + [anon_sym___alignof__] = ACTIONS(2151), + [anon_sym___alignof] = ACTIONS(2151), + [anon_sym__alignof] = ACTIONS(2151), + [anon_sym_alignof] = ACTIONS(2151), + [anon_sym__Alignof] = ACTIONS(2151), + [anon_sym_offsetof] = ACTIONS(2153), + [anon_sym__Generic] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2157), + [anon_sym___asm__] = ACTIONS(2157), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_L_SQUOTE] = ACTIONS(2161), + [anon_sym_u_SQUOTE] = ACTIONS(2161), + [anon_sym_U_SQUOTE] = ACTIONS(2161), + [anon_sym_u8_SQUOTE] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_L_DQUOTE] = ACTIONS(2163), + [anon_sym_u_DQUOTE] = ACTIONS(2163), + [anon_sym_U_DQUOTE] = ACTIONS(2163), + [anon_sym_u8_DQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2167), + [anon_sym_nullptr] = ACTIONS(2167), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4150), - [anon_sym_requires] = ACTIONS(4152), - [sym_this] = ACTIONS(4140), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4154), - [sym_semgrep_named_ellipsis] = ACTIONS(4156), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2169), + [anon_sym_R_DQUOTE] = ACTIONS(2171), + [anon_sym_LR_DQUOTE] = ACTIONS(2171), + [anon_sym_uR_DQUOTE] = ACTIONS(2171), + [anon_sym_UR_DQUOTE] = ACTIONS(2171), + [anon_sym_u8R_DQUOTE] = ACTIONS(2171), + [anon_sym_co_await] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_requires] = ACTIONS(2177), + [sym_this] = ACTIONS(2165), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2179), + [sym_semgrep_named_ellipsis] = ACTIONS(2181), }, - [1483] = { - [sym_expression] = STATE(3286), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), + [1531] = { + [sym_expression] = STATE(2882), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(2995), + [sym_concatenated_string] = STATE(2995), + [sym_string_literal] = STATE(2040), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2040), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(5008), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5076), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_compl] = ACTIONS(2329), + [anon_sym_DASH_DASH] = ACTIONS(5010), + [anon_sym_PLUS_PLUS] = ACTIONS(5010), + [anon_sym_sizeof] = ACTIONS(2335), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2337), + [anon_sym_L_SQUOTE] = ACTIONS(2339), + [anon_sym_u_SQUOTE] = ACTIONS(2339), + [anon_sym_U_SQUOTE] = ACTIONS(2339), + [anon_sym_u8_SQUOTE] = ACTIONS(2339), + [anon_sym_SQUOTE] = ACTIONS(2339), + [anon_sym_L_DQUOTE] = ACTIONS(2341), + [anon_sym_u_DQUOTE] = ACTIONS(2341), + [anon_sym_U_DQUOTE] = ACTIONS(2341), + [anon_sym_u8_DQUOTE] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2343), + [anon_sym_R_DQUOTE] = ACTIONS(2345), + [anon_sym_LR_DQUOTE] = ACTIONS(2345), + [anon_sym_uR_DQUOTE] = ACTIONS(2345), + [anon_sym_UR_DQUOTE] = ACTIONS(2345), + [anon_sym_u8R_DQUOTE] = ACTIONS(2345), + [anon_sym_co_await] = ACTIONS(2347), + [anon_sym_new] = ACTIONS(2349), + [anon_sym_requires] = ACTIONS(2351), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1484] = { - [sym_expression] = STATE(3929), - [sym_expression_not_binary] = STATE(4358), - [sym_conditional_expression] = STATE(4353), - [sym_assignment_expression] = STATE(4353), - [sym_pointer_expression] = STATE(4360), - [sym_unary_expression] = STATE(4353), - [sym_binary_expression] = STATE(4358), - [sym_update_expression] = STATE(4353), - [sym_cast_expression] = STATE(4353), - [sym_sizeof_expression] = STATE(4353), - [sym_alignof_expression] = STATE(4353), - [sym_offsetof_expression] = STATE(4353), - [sym_generic_expression] = STATE(4353), - [sym_subscript_expression] = STATE(4360), - [sym_call_expression] = STATE(4360), - [sym_gnu_asm_expression] = STATE(4353), - [sym_field_expression] = STATE(4360), - [sym_compound_literal_expression] = STATE(4353), - [sym_parenthesized_expression] = STATE(4360), - [sym_char_literal] = STATE(4023), - [sym_concatenated_string] = STATE(4023), - [sym_string_literal] = STATE(2426), - [sym_null] = STATE(4353), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9636), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4353), - [sym_raw_string_literal] = STATE(2426), - [sym_co_await_expression] = STATE(4353), - [sym_new_expression] = STATE(4353), - [sym_delete_expression] = STATE(4353), - [sym_requires_clause] = STATE(4353), - [sym_requires_expression] = STATE(4353), - [sym_lambda_expression] = STATE(4353), - [sym_lambda_capture_specifier] = STATE(7284), - [sym_fold_expression] = STATE(4353), - [sym_parameter_pack_expansion] = STATE(4353), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4360), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4360), - [sym_semgrep_ellipsis] = STATE(4358), - [sym_deep_ellipsis] = STATE(4358), - [sym_identifier] = ACTIONS(2941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5070), - [anon_sym_LPAREN2] = ACTIONS(5130), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2951), - [anon_sym_not] = ACTIONS(2943), - [anon_sym_compl] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(5072), - [anon_sym_PLUS_PLUS] = ACTIONS(5072), - [anon_sym_sizeof] = ACTIONS(2953), - [anon_sym___alignof__] = ACTIONS(2955), - [anon_sym___alignof] = ACTIONS(2955), - [anon_sym__alignof] = ACTIONS(2955), - [anon_sym_alignof] = ACTIONS(2955), - [anon_sym__Alignof] = ACTIONS(2955), - [anon_sym_offsetof] = ACTIONS(2957), - [anon_sym__Generic] = ACTIONS(2959), - [anon_sym_asm] = ACTIONS(2961), - [anon_sym___asm__] = ACTIONS(2961), - [sym_number_literal] = ACTIONS(2963), - [anon_sym_L_SQUOTE] = ACTIONS(2965), - [anon_sym_u_SQUOTE] = ACTIONS(2965), - [anon_sym_U_SQUOTE] = ACTIONS(2965), - [anon_sym_u8_SQUOTE] = ACTIONS(2965), - [anon_sym_SQUOTE] = ACTIONS(2965), - [anon_sym_L_DQUOTE] = ACTIONS(2967), - [anon_sym_u_DQUOTE] = ACTIONS(2967), - [anon_sym_U_DQUOTE] = ACTIONS(2967), - [anon_sym_u8_DQUOTE] = ACTIONS(2967), - [anon_sym_DQUOTE] = ACTIONS(2967), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2971), - [anon_sym_nullptr] = ACTIONS(2971), + [1532] = { + [sym_expression] = STATE(3042), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(5316), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2973), - [anon_sym_R_DQUOTE] = ACTIONS(2975), - [anon_sym_LR_DQUOTE] = ACTIONS(2975), - [anon_sym_uR_DQUOTE] = ACTIONS(2975), - [anon_sym_UR_DQUOTE] = ACTIONS(2975), - [anon_sym_u8R_DQUOTE] = ACTIONS(2975), - [anon_sym_co_await] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2979), - [anon_sym_requires] = ACTIONS(2981), - [sym_this] = ACTIONS(2969), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2983), - [sym_semgrep_named_ellipsis] = ACTIONS(2985), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1485] = { - [sym_expression] = STATE(2986), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), + [1533] = { + [sym_expression] = STATE(3426), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3584), + [sym_concatenated_string] = STATE(3584), + [sym_string_literal] = STATE(2482), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2482), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5060), + [anon_sym_BANG] = ACTIONS(2578), + [anon_sym_TILDE] = ACTIONS(2578), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(2580), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2576), + [anon_sym_compl] = ACTIONS(2576), + [anon_sym_DASH_DASH] = ACTIONS(4964), + [anon_sym_PLUS_PLUS] = ACTIONS(4964), + [anon_sym_sizeof] = ACTIONS(2582), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2584), + [anon_sym_L_SQUOTE] = ACTIONS(2586), + [anon_sym_u_SQUOTE] = ACTIONS(2586), + [anon_sym_U_SQUOTE] = ACTIONS(2586), + [anon_sym_u8_SQUOTE] = ACTIONS(2586), + [anon_sym_SQUOTE] = ACTIONS(2586), + [anon_sym_L_DQUOTE] = ACTIONS(2588), + [anon_sym_u_DQUOTE] = ACTIONS(2588), + [anon_sym_U_DQUOTE] = ACTIONS(2588), + [anon_sym_u8_DQUOTE] = ACTIONS(2588), + [anon_sym_DQUOTE] = ACTIONS(2588), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1486] = { - [sym_expression] = STATE(3176), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2590), + [anon_sym_R_DQUOTE] = ACTIONS(2592), + [anon_sym_LR_DQUOTE] = ACTIONS(2592), + [anon_sym_uR_DQUOTE] = ACTIONS(2592), + [anon_sym_UR_DQUOTE] = ACTIONS(2592), + [anon_sym_u8R_DQUOTE] = ACTIONS(2592), + [anon_sym_co_await] = ACTIONS(2594), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1534] = { + [sym_expression] = STATE(2893), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3584), + [sym_concatenated_string] = STATE(3584), + [sym_string_literal] = STATE(2482), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2482), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5060), + [anon_sym_BANG] = ACTIONS(2578), + [anon_sym_TILDE] = ACTIONS(2578), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(2580), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2576), + [anon_sym_compl] = ACTIONS(2576), + [anon_sym_DASH_DASH] = ACTIONS(4964), + [anon_sym_PLUS_PLUS] = ACTIONS(4964), + [anon_sym_sizeof] = ACTIONS(2582), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2584), + [anon_sym_L_SQUOTE] = ACTIONS(2586), + [anon_sym_u_SQUOTE] = ACTIONS(2586), + [anon_sym_U_SQUOTE] = ACTIONS(2586), + [anon_sym_u8_SQUOTE] = ACTIONS(2586), + [anon_sym_SQUOTE] = ACTIONS(2586), + [anon_sym_L_DQUOTE] = ACTIONS(2588), + [anon_sym_u_DQUOTE] = ACTIONS(2588), + [anon_sym_U_DQUOTE] = ACTIONS(2588), + [anon_sym_u8_DQUOTE] = ACTIONS(2588), + [anon_sym_DQUOTE] = ACTIONS(2588), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2590), + [anon_sym_R_DQUOTE] = ACTIONS(2592), + [anon_sym_LR_DQUOTE] = ACTIONS(2592), + [anon_sym_uR_DQUOTE] = ACTIONS(2592), + [anon_sym_UR_DQUOTE] = ACTIONS(2592), + [anon_sym_u8R_DQUOTE] = ACTIONS(2592), + [anon_sym_co_await] = ACTIONS(2594), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1487] = { - [sym_expression] = STATE(3177), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), + [1535] = { + [sym_expression] = STATE(3434), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3584), + [sym_concatenated_string] = STATE(3584), + [sym_string_literal] = STATE(2482), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2482), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5060), + [anon_sym_BANG] = ACTIONS(2578), + [anon_sym_TILDE] = ACTIONS(2578), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(2580), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2576), + [anon_sym_compl] = ACTIONS(2576), + [anon_sym_DASH_DASH] = ACTIONS(4964), + [anon_sym_PLUS_PLUS] = ACTIONS(4964), + [anon_sym_sizeof] = ACTIONS(2582), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2584), + [anon_sym_L_SQUOTE] = ACTIONS(2586), + [anon_sym_u_SQUOTE] = ACTIONS(2586), + [anon_sym_U_SQUOTE] = ACTIONS(2586), + [anon_sym_u8_SQUOTE] = ACTIONS(2586), + [anon_sym_SQUOTE] = ACTIONS(2586), + [anon_sym_L_DQUOTE] = ACTIONS(2588), + [anon_sym_u_DQUOTE] = ACTIONS(2588), + [anon_sym_U_DQUOTE] = ACTIONS(2588), + [anon_sym_u8_DQUOTE] = ACTIONS(2588), + [anon_sym_DQUOTE] = ACTIONS(2588), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2590), + [anon_sym_R_DQUOTE] = ACTIONS(2592), + [anon_sym_LR_DQUOTE] = ACTIONS(2592), + [anon_sym_uR_DQUOTE] = ACTIONS(2592), + [anon_sym_UR_DQUOTE] = ACTIONS(2592), + [anon_sym_u8R_DQUOTE] = ACTIONS(2592), + [anon_sym_co_await] = ACTIONS(2594), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1488] = { - [sym_expression] = STATE(3188), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), + [1536] = { + [sym_expression] = STATE(3354), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3584), + [sym_concatenated_string] = STATE(3584), + [sym_string_literal] = STATE(2482), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2482), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5060), + [anon_sym_BANG] = ACTIONS(2578), + [anon_sym_TILDE] = ACTIONS(2578), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(2580), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2576), + [anon_sym_compl] = ACTIONS(2576), + [anon_sym_DASH_DASH] = ACTIONS(4964), + [anon_sym_PLUS_PLUS] = ACTIONS(4964), + [anon_sym_sizeof] = ACTIONS(2582), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2584), + [anon_sym_L_SQUOTE] = ACTIONS(2586), + [anon_sym_u_SQUOTE] = ACTIONS(2586), + [anon_sym_U_SQUOTE] = ACTIONS(2586), + [anon_sym_u8_SQUOTE] = ACTIONS(2586), + [anon_sym_SQUOTE] = ACTIONS(2586), + [anon_sym_L_DQUOTE] = ACTIONS(2588), + [anon_sym_u_DQUOTE] = ACTIONS(2588), + [anon_sym_U_DQUOTE] = ACTIONS(2588), + [anon_sym_u8_DQUOTE] = ACTIONS(2588), + [anon_sym_DQUOTE] = ACTIONS(2588), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2590), + [anon_sym_R_DQUOTE] = ACTIONS(2592), + [anon_sym_LR_DQUOTE] = ACTIONS(2592), + [anon_sym_uR_DQUOTE] = ACTIONS(2592), + [anon_sym_UR_DQUOTE] = ACTIONS(2592), + [anon_sym_u8R_DQUOTE] = ACTIONS(2592), + [anon_sym_co_await] = ACTIONS(2594), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1489] = { - [sym_expression] = STATE(3209), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), + [1537] = { + [sym_expression] = STATE(3503), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3584), + [sym_concatenated_string] = STATE(3584), + [sym_string_literal] = STATE(2482), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2482), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5060), + [anon_sym_BANG] = ACTIONS(2578), + [anon_sym_TILDE] = ACTIONS(2578), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(2580), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2576), + [anon_sym_compl] = ACTIONS(2576), + [anon_sym_DASH_DASH] = ACTIONS(4964), + [anon_sym_PLUS_PLUS] = ACTIONS(4964), + [anon_sym_sizeof] = ACTIONS(2582), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2584), + [anon_sym_L_SQUOTE] = ACTIONS(2586), + [anon_sym_u_SQUOTE] = ACTIONS(2586), + [anon_sym_U_SQUOTE] = ACTIONS(2586), + [anon_sym_u8_SQUOTE] = ACTIONS(2586), + [anon_sym_SQUOTE] = ACTIONS(2586), + [anon_sym_L_DQUOTE] = ACTIONS(2588), + [anon_sym_u_DQUOTE] = ACTIONS(2588), + [anon_sym_U_DQUOTE] = ACTIONS(2588), + [anon_sym_u8_DQUOTE] = ACTIONS(2588), + [anon_sym_DQUOTE] = ACTIONS(2588), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2590), + [anon_sym_R_DQUOTE] = ACTIONS(2592), + [anon_sym_LR_DQUOTE] = ACTIONS(2592), + [anon_sym_uR_DQUOTE] = ACTIONS(2592), + [anon_sym_UR_DQUOTE] = ACTIONS(2592), + [anon_sym_u8R_DQUOTE] = ACTIONS(2592), + [anon_sym_co_await] = ACTIONS(2594), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1490] = { - [sym_expression] = STATE(3240), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), + [1538] = { + [sym_expression] = STATE(3380), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3584), + [sym_concatenated_string] = STATE(3584), + [sym_string_literal] = STATE(2482), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2482), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5060), + [anon_sym_BANG] = ACTIONS(2578), + [anon_sym_TILDE] = ACTIONS(2578), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(2580), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2576), + [anon_sym_compl] = ACTIONS(2576), + [anon_sym_DASH_DASH] = ACTIONS(4964), + [anon_sym_PLUS_PLUS] = ACTIONS(4964), + [anon_sym_sizeof] = ACTIONS(2582), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2584), + [anon_sym_L_SQUOTE] = ACTIONS(2586), + [anon_sym_u_SQUOTE] = ACTIONS(2586), + [anon_sym_U_SQUOTE] = ACTIONS(2586), + [anon_sym_u8_SQUOTE] = ACTIONS(2586), + [anon_sym_SQUOTE] = ACTIONS(2586), + [anon_sym_L_DQUOTE] = ACTIONS(2588), + [anon_sym_u_DQUOTE] = ACTIONS(2588), + [anon_sym_U_DQUOTE] = ACTIONS(2588), + [anon_sym_u8_DQUOTE] = ACTIONS(2588), + [anon_sym_DQUOTE] = ACTIONS(2588), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2590), + [anon_sym_R_DQUOTE] = ACTIONS(2592), + [anon_sym_LR_DQUOTE] = ACTIONS(2592), + [anon_sym_uR_DQUOTE] = ACTIONS(2592), + [anon_sym_UR_DQUOTE] = ACTIONS(2592), + [anon_sym_u8R_DQUOTE] = ACTIONS(2592), + [anon_sym_co_await] = ACTIONS(2594), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1491] = { - [sym_expression] = STATE(3279), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), + [1539] = { + [sym_expression] = STATE(3353), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3584), + [sym_concatenated_string] = STATE(3584), + [sym_string_literal] = STATE(2482), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2482), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5060), + [anon_sym_BANG] = ACTIONS(2578), + [anon_sym_TILDE] = ACTIONS(2578), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(2580), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2576), + [anon_sym_compl] = ACTIONS(2576), + [anon_sym_DASH_DASH] = ACTIONS(4964), + [anon_sym_PLUS_PLUS] = ACTIONS(4964), + [anon_sym_sizeof] = ACTIONS(2582), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2584), + [anon_sym_L_SQUOTE] = ACTIONS(2586), + [anon_sym_u_SQUOTE] = ACTIONS(2586), + [anon_sym_U_SQUOTE] = ACTIONS(2586), + [anon_sym_u8_SQUOTE] = ACTIONS(2586), + [anon_sym_SQUOTE] = ACTIONS(2586), + [anon_sym_L_DQUOTE] = ACTIONS(2588), + [anon_sym_u_DQUOTE] = ACTIONS(2588), + [anon_sym_U_DQUOTE] = ACTIONS(2588), + [anon_sym_u8_DQUOTE] = ACTIONS(2588), + [anon_sym_DQUOTE] = ACTIONS(2588), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2590), + [anon_sym_R_DQUOTE] = ACTIONS(2592), + [anon_sym_LR_DQUOTE] = ACTIONS(2592), + [anon_sym_uR_DQUOTE] = ACTIONS(2592), + [anon_sym_UR_DQUOTE] = ACTIONS(2592), + [anon_sym_u8R_DQUOTE] = ACTIONS(2592), + [anon_sym_co_await] = ACTIONS(2594), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1492] = { - [sym_expression] = STATE(3281), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), + [1540] = { + [sym_expression] = STATE(3361), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3584), + [sym_concatenated_string] = STATE(3584), + [sym_string_literal] = STATE(2482), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2482), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5060), + [anon_sym_BANG] = ACTIONS(2578), + [anon_sym_TILDE] = ACTIONS(2578), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(2580), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2576), + [anon_sym_compl] = ACTIONS(2576), + [anon_sym_DASH_DASH] = ACTIONS(4964), + [anon_sym_PLUS_PLUS] = ACTIONS(4964), + [anon_sym_sizeof] = ACTIONS(2582), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2584), + [anon_sym_L_SQUOTE] = ACTIONS(2586), + [anon_sym_u_SQUOTE] = ACTIONS(2586), + [anon_sym_U_SQUOTE] = ACTIONS(2586), + [anon_sym_u8_SQUOTE] = ACTIONS(2586), + [anon_sym_SQUOTE] = ACTIONS(2586), + [anon_sym_L_DQUOTE] = ACTIONS(2588), + [anon_sym_u_DQUOTE] = ACTIONS(2588), + [anon_sym_U_DQUOTE] = ACTIONS(2588), + [anon_sym_u8_DQUOTE] = ACTIONS(2588), + [anon_sym_DQUOTE] = ACTIONS(2588), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2590), + [anon_sym_R_DQUOTE] = ACTIONS(2592), + [anon_sym_LR_DQUOTE] = ACTIONS(2592), + [anon_sym_uR_DQUOTE] = ACTIONS(2592), + [anon_sym_UR_DQUOTE] = ACTIONS(2592), + [anon_sym_u8R_DQUOTE] = ACTIONS(2592), + [anon_sym_co_await] = ACTIONS(2594), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1493] = { - [sym_expression] = STATE(3939), - [sym_expression_not_binary] = STATE(4358), - [sym_conditional_expression] = STATE(4353), - [sym_assignment_expression] = STATE(4353), - [sym_pointer_expression] = STATE(4360), - [sym_unary_expression] = STATE(4353), - [sym_binary_expression] = STATE(4358), - [sym_update_expression] = STATE(4353), - [sym_cast_expression] = STATE(4353), - [sym_sizeof_expression] = STATE(4353), - [sym_alignof_expression] = STATE(4353), - [sym_offsetof_expression] = STATE(4353), - [sym_generic_expression] = STATE(4353), - [sym_subscript_expression] = STATE(4360), - [sym_call_expression] = STATE(4360), - [sym_gnu_asm_expression] = STATE(4353), - [sym_field_expression] = STATE(4360), - [sym_compound_literal_expression] = STATE(4353), - [sym_parenthesized_expression] = STATE(4360), - [sym_char_literal] = STATE(4023), - [sym_concatenated_string] = STATE(4023), - [sym_string_literal] = STATE(2426), - [sym_null] = STATE(4353), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9636), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4353), - [sym_raw_string_literal] = STATE(2426), - [sym_co_await_expression] = STATE(4353), - [sym_new_expression] = STATE(4353), - [sym_delete_expression] = STATE(4353), - [sym_requires_clause] = STATE(4353), - [sym_requires_expression] = STATE(4353), - [sym_lambda_expression] = STATE(4353), - [sym_lambda_capture_specifier] = STATE(7284), - [sym_fold_expression] = STATE(4353), - [sym_parameter_pack_expansion] = STATE(4353), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4360), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4360), - [sym_semgrep_ellipsis] = STATE(4358), - [sym_deep_ellipsis] = STATE(4358), - [sym_identifier] = ACTIONS(2941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5070), - [anon_sym_LPAREN2] = ACTIONS(5130), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2951), - [anon_sym_not] = ACTIONS(2943), - [anon_sym_compl] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(5072), - [anon_sym_PLUS_PLUS] = ACTIONS(5072), - [anon_sym_sizeof] = ACTIONS(2953), - [anon_sym___alignof__] = ACTIONS(2955), - [anon_sym___alignof] = ACTIONS(2955), - [anon_sym__alignof] = ACTIONS(2955), - [anon_sym_alignof] = ACTIONS(2955), - [anon_sym__Alignof] = ACTIONS(2955), - [anon_sym_offsetof] = ACTIONS(2957), - [anon_sym__Generic] = ACTIONS(2959), - [anon_sym_asm] = ACTIONS(2961), - [anon_sym___asm__] = ACTIONS(2961), - [sym_number_literal] = ACTIONS(2963), - [anon_sym_L_SQUOTE] = ACTIONS(2965), - [anon_sym_u_SQUOTE] = ACTIONS(2965), - [anon_sym_U_SQUOTE] = ACTIONS(2965), - [anon_sym_u8_SQUOTE] = ACTIONS(2965), - [anon_sym_SQUOTE] = ACTIONS(2965), - [anon_sym_L_DQUOTE] = ACTIONS(2967), - [anon_sym_u_DQUOTE] = ACTIONS(2967), - [anon_sym_U_DQUOTE] = ACTIONS(2967), - [anon_sym_u8_DQUOTE] = ACTIONS(2967), - [anon_sym_DQUOTE] = ACTIONS(2967), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2971), - [anon_sym_nullptr] = ACTIONS(2971), + [1541] = { + [sym_expression] = STATE(3362), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3584), + [sym_concatenated_string] = STATE(3584), + [sym_string_literal] = STATE(2482), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2482), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5060), + [anon_sym_BANG] = ACTIONS(2578), + [anon_sym_TILDE] = ACTIONS(2578), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(2580), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2576), + [anon_sym_compl] = ACTIONS(2576), + [anon_sym_DASH_DASH] = ACTIONS(4964), + [anon_sym_PLUS_PLUS] = ACTIONS(4964), + [anon_sym_sizeof] = ACTIONS(2582), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2584), + [anon_sym_L_SQUOTE] = ACTIONS(2586), + [anon_sym_u_SQUOTE] = ACTIONS(2586), + [anon_sym_U_SQUOTE] = ACTIONS(2586), + [anon_sym_u8_SQUOTE] = ACTIONS(2586), + [anon_sym_SQUOTE] = ACTIONS(2586), + [anon_sym_L_DQUOTE] = ACTIONS(2588), + [anon_sym_u_DQUOTE] = ACTIONS(2588), + [anon_sym_U_DQUOTE] = ACTIONS(2588), + [anon_sym_u8_DQUOTE] = ACTIONS(2588), + [anon_sym_DQUOTE] = ACTIONS(2588), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2973), - [anon_sym_R_DQUOTE] = ACTIONS(2975), - [anon_sym_LR_DQUOTE] = ACTIONS(2975), - [anon_sym_uR_DQUOTE] = ACTIONS(2975), - [anon_sym_UR_DQUOTE] = ACTIONS(2975), - [anon_sym_u8R_DQUOTE] = ACTIONS(2975), - [anon_sym_co_await] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2979), - [anon_sym_requires] = ACTIONS(2981), - [sym_this] = ACTIONS(2969), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2983), - [sym_semgrep_named_ellipsis] = ACTIONS(2985), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2590), + [anon_sym_R_DQUOTE] = ACTIONS(2592), + [anon_sym_LR_DQUOTE] = ACTIONS(2592), + [anon_sym_uR_DQUOTE] = ACTIONS(2592), + [anon_sym_UR_DQUOTE] = ACTIONS(2592), + [anon_sym_u8R_DQUOTE] = ACTIONS(2592), + [anon_sym_co_await] = ACTIONS(2594), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1494] = { - [sym_expression] = STATE(3940), - [sym_expression_not_binary] = STATE(4358), - [sym_conditional_expression] = STATE(4353), - [sym_assignment_expression] = STATE(4353), - [sym_pointer_expression] = STATE(4360), - [sym_unary_expression] = STATE(4353), - [sym_binary_expression] = STATE(4358), - [sym_update_expression] = STATE(4353), - [sym_cast_expression] = STATE(4353), - [sym_sizeof_expression] = STATE(4353), - [sym_alignof_expression] = STATE(4353), - [sym_offsetof_expression] = STATE(4353), - [sym_generic_expression] = STATE(4353), - [sym_subscript_expression] = STATE(4360), - [sym_call_expression] = STATE(4360), - [sym_gnu_asm_expression] = STATE(4353), - [sym_field_expression] = STATE(4360), - [sym_compound_literal_expression] = STATE(4353), - [sym_parenthesized_expression] = STATE(4360), - [sym_char_literal] = STATE(4023), - [sym_concatenated_string] = STATE(4023), - [sym_string_literal] = STATE(2426), - [sym_null] = STATE(4353), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9636), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4353), - [sym_raw_string_literal] = STATE(2426), - [sym_co_await_expression] = STATE(4353), - [sym_new_expression] = STATE(4353), - [sym_delete_expression] = STATE(4353), - [sym_requires_clause] = STATE(4353), - [sym_requires_expression] = STATE(4353), - [sym_lambda_expression] = STATE(4353), - [sym_lambda_capture_specifier] = STATE(7284), - [sym_fold_expression] = STATE(4353), - [sym_parameter_pack_expansion] = STATE(4353), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4360), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4360), - [sym_semgrep_ellipsis] = STATE(4358), - [sym_deep_ellipsis] = STATE(4358), - [sym_identifier] = ACTIONS(2941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5070), - [anon_sym_LPAREN2] = ACTIONS(5130), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2951), - [anon_sym_not] = ACTIONS(2943), - [anon_sym_compl] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(5072), - [anon_sym_PLUS_PLUS] = ACTIONS(5072), - [anon_sym_sizeof] = ACTIONS(2953), - [anon_sym___alignof__] = ACTIONS(2955), - [anon_sym___alignof] = ACTIONS(2955), - [anon_sym__alignof] = ACTIONS(2955), - [anon_sym_alignof] = ACTIONS(2955), - [anon_sym__Alignof] = ACTIONS(2955), - [anon_sym_offsetof] = ACTIONS(2957), - [anon_sym__Generic] = ACTIONS(2959), - [anon_sym_asm] = ACTIONS(2961), - [anon_sym___asm__] = ACTIONS(2961), - [sym_number_literal] = ACTIONS(2963), - [anon_sym_L_SQUOTE] = ACTIONS(2965), - [anon_sym_u_SQUOTE] = ACTIONS(2965), - [anon_sym_U_SQUOTE] = ACTIONS(2965), - [anon_sym_u8_SQUOTE] = ACTIONS(2965), - [anon_sym_SQUOTE] = ACTIONS(2965), - [anon_sym_L_DQUOTE] = ACTIONS(2967), - [anon_sym_u_DQUOTE] = ACTIONS(2967), - [anon_sym_U_DQUOTE] = ACTIONS(2967), - [anon_sym_u8_DQUOTE] = ACTIONS(2967), - [anon_sym_DQUOTE] = ACTIONS(2967), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2971), - [anon_sym_nullptr] = ACTIONS(2971), + [1542] = { + [sym_expression] = STATE(3427), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3584), + [sym_concatenated_string] = STATE(3584), + [sym_string_literal] = STATE(2482), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2482), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5060), + [anon_sym_BANG] = ACTIONS(2578), + [anon_sym_TILDE] = ACTIONS(2578), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(2580), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2576), + [anon_sym_compl] = ACTIONS(2576), + [anon_sym_DASH_DASH] = ACTIONS(4964), + [anon_sym_PLUS_PLUS] = ACTIONS(4964), + [anon_sym_sizeof] = ACTIONS(2582), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2584), + [anon_sym_L_SQUOTE] = ACTIONS(2586), + [anon_sym_u_SQUOTE] = ACTIONS(2586), + [anon_sym_U_SQUOTE] = ACTIONS(2586), + [anon_sym_u8_SQUOTE] = ACTIONS(2586), + [anon_sym_SQUOTE] = ACTIONS(2586), + [anon_sym_L_DQUOTE] = ACTIONS(2588), + [anon_sym_u_DQUOTE] = ACTIONS(2588), + [anon_sym_U_DQUOTE] = ACTIONS(2588), + [anon_sym_u8_DQUOTE] = ACTIONS(2588), + [anon_sym_DQUOTE] = ACTIONS(2588), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2973), - [anon_sym_R_DQUOTE] = ACTIONS(2975), - [anon_sym_LR_DQUOTE] = ACTIONS(2975), - [anon_sym_uR_DQUOTE] = ACTIONS(2975), - [anon_sym_UR_DQUOTE] = ACTIONS(2975), - [anon_sym_u8R_DQUOTE] = ACTIONS(2975), - [anon_sym_co_await] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2979), - [anon_sym_requires] = ACTIONS(2981), - [sym_this] = ACTIONS(2969), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2983), - [sym_semgrep_named_ellipsis] = ACTIONS(2985), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2590), + [anon_sym_R_DQUOTE] = ACTIONS(2592), + [anon_sym_LR_DQUOTE] = ACTIONS(2592), + [anon_sym_uR_DQUOTE] = ACTIONS(2592), + [anon_sym_UR_DQUOTE] = ACTIONS(2592), + [anon_sym_u8R_DQUOTE] = ACTIONS(2592), + [anon_sym_co_await] = ACTIONS(2594), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1495] = { - [sym_expression] = STATE(3941), - [sym_expression_not_binary] = STATE(4358), - [sym_conditional_expression] = STATE(4353), - [sym_assignment_expression] = STATE(4353), - [sym_pointer_expression] = STATE(4360), - [sym_unary_expression] = STATE(4353), - [sym_binary_expression] = STATE(4358), - [sym_update_expression] = STATE(4353), - [sym_cast_expression] = STATE(4353), - [sym_sizeof_expression] = STATE(4353), - [sym_alignof_expression] = STATE(4353), - [sym_offsetof_expression] = STATE(4353), - [sym_generic_expression] = STATE(4353), - [sym_subscript_expression] = STATE(4360), - [sym_call_expression] = STATE(4360), - [sym_gnu_asm_expression] = STATE(4353), - [sym_field_expression] = STATE(4360), - [sym_compound_literal_expression] = STATE(4353), - [sym_parenthesized_expression] = STATE(4360), - [sym_char_literal] = STATE(4023), - [sym_concatenated_string] = STATE(4023), - [sym_string_literal] = STATE(2426), - [sym_null] = STATE(4353), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9636), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4353), - [sym_raw_string_literal] = STATE(2426), - [sym_co_await_expression] = STATE(4353), - [sym_new_expression] = STATE(4353), - [sym_delete_expression] = STATE(4353), - [sym_requires_clause] = STATE(4353), - [sym_requires_expression] = STATE(4353), - [sym_lambda_expression] = STATE(4353), - [sym_lambda_capture_specifier] = STATE(7284), - [sym_fold_expression] = STATE(4353), - [sym_parameter_pack_expansion] = STATE(4353), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4360), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4360), - [sym_semgrep_ellipsis] = STATE(4358), - [sym_deep_ellipsis] = STATE(4358), - [sym_identifier] = ACTIONS(2941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5070), - [anon_sym_LPAREN2] = ACTIONS(5130), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2951), - [anon_sym_not] = ACTIONS(2943), - [anon_sym_compl] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(5072), - [anon_sym_PLUS_PLUS] = ACTIONS(5072), - [anon_sym_sizeof] = ACTIONS(2953), - [anon_sym___alignof__] = ACTIONS(2955), - [anon_sym___alignof] = ACTIONS(2955), - [anon_sym__alignof] = ACTIONS(2955), - [anon_sym_alignof] = ACTIONS(2955), - [anon_sym__Alignof] = ACTIONS(2955), - [anon_sym_offsetof] = ACTIONS(2957), - [anon_sym__Generic] = ACTIONS(2959), - [anon_sym_asm] = ACTIONS(2961), - [anon_sym___asm__] = ACTIONS(2961), - [sym_number_literal] = ACTIONS(2963), - [anon_sym_L_SQUOTE] = ACTIONS(2965), - [anon_sym_u_SQUOTE] = ACTIONS(2965), - [anon_sym_U_SQUOTE] = ACTIONS(2965), - [anon_sym_u8_SQUOTE] = ACTIONS(2965), - [anon_sym_SQUOTE] = ACTIONS(2965), - [anon_sym_L_DQUOTE] = ACTIONS(2967), - [anon_sym_u_DQUOTE] = ACTIONS(2967), - [anon_sym_U_DQUOTE] = ACTIONS(2967), - [anon_sym_u8_DQUOTE] = ACTIONS(2967), - [anon_sym_DQUOTE] = ACTIONS(2967), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2971), - [anon_sym_nullptr] = ACTIONS(2971), + [1543] = { + [sym_expression] = STATE(3835), + [sym_expression_not_binary] = STATE(4146), + [sym_conditional_expression] = STATE(4141), + [sym_assignment_expression] = STATE(4141), + [sym_pointer_expression] = STATE(4149), + [sym_unary_expression] = STATE(4141), + [sym_binary_expression] = STATE(4146), + [sym_update_expression] = STATE(4141), + [sym_cast_expression] = STATE(4141), + [sym_sizeof_expression] = STATE(4141), + [sym_alignof_expression] = STATE(4141), + [sym_offsetof_expression] = STATE(4141), + [sym_generic_expression] = STATE(4141), + [sym_subscript_expression] = STATE(4149), + [sym_call_expression] = STATE(4149), + [sym_gnu_asm_expression] = STATE(4141), + [sym_field_expression] = STATE(4149), + [sym_compound_literal_expression] = STATE(4141), + [sym_parenthesized_expression] = STATE(4149), + [sym_char_literal] = STATE(4104), + [sym_concatenated_string] = STATE(4104), + [sym_string_literal] = STATE(2642), + [sym_null] = STATE(4141), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8879), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4141), + [sym_raw_string_literal] = STATE(2642), + [sym_co_await_expression] = STATE(4141), + [sym_new_expression] = STATE(4141), + [sym_delete_expression] = STATE(4141), + [sym_requires_clause] = STATE(4141), + [sym_requires_expression] = STATE(4141), + [sym_lambda_expression] = STATE(4141), + [sym_lambda_capture_specifier] = STATE(6832), + [sym_fold_expression] = STATE(4141), + [sym_parameter_pack_expansion] = STATE(4141), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4149), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4149), + [sym_semgrep_ellipsis] = STATE(4146), + [sym_deep_ellipsis] = STATE(4146), + [sym_identifier] = ACTIONS(2981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4990), + [anon_sym_LPAREN2] = ACTIONS(5044), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(2987), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2991), + [anon_sym_not] = ACTIONS(2983), + [anon_sym_compl] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(4992), + [anon_sym_PLUS_PLUS] = ACTIONS(4992), + [anon_sym_sizeof] = ACTIONS(2993), + [anon_sym___alignof__] = ACTIONS(2995), + [anon_sym___alignof] = ACTIONS(2995), + [anon_sym__alignof] = ACTIONS(2995), + [anon_sym_alignof] = ACTIONS(2995), + [anon_sym__Alignof] = ACTIONS(2995), + [anon_sym_offsetof] = ACTIONS(2997), + [anon_sym__Generic] = ACTIONS(2999), + [anon_sym_asm] = ACTIONS(3001), + [anon_sym___asm__] = ACTIONS(3001), + [sym_number_literal] = ACTIONS(3003), + [anon_sym_L_SQUOTE] = ACTIONS(3005), + [anon_sym_u_SQUOTE] = ACTIONS(3005), + [anon_sym_U_SQUOTE] = ACTIONS(3005), + [anon_sym_u8_SQUOTE] = ACTIONS(3005), + [anon_sym_SQUOTE] = ACTIONS(3005), + [anon_sym_L_DQUOTE] = ACTIONS(3007), + [anon_sym_u_DQUOTE] = ACTIONS(3007), + [anon_sym_U_DQUOTE] = ACTIONS(3007), + [anon_sym_u8_DQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE] = ACTIONS(3007), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [anon_sym_NULL] = ACTIONS(3011), + [anon_sym_nullptr] = ACTIONS(3011), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2973), - [anon_sym_R_DQUOTE] = ACTIONS(2975), - [anon_sym_LR_DQUOTE] = ACTIONS(2975), - [anon_sym_uR_DQUOTE] = ACTIONS(2975), - [anon_sym_UR_DQUOTE] = ACTIONS(2975), - [anon_sym_u8R_DQUOTE] = ACTIONS(2975), - [anon_sym_co_await] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2979), - [anon_sym_requires] = ACTIONS(2981), - [sym_this] = ACTIONS(2969), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2983), - [sym_semgrep_named_ellipsis] = ACTIONS(2985), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3013), + [anon_sym_R_DQUOTE] = ACTIONS(3015), + [anon_sym_LR_DQUOTE] = ACTIONS(3015), + [anon_sym_uR_DQUOTE] = ACTIONS(3015), + [anon_sym_UR_DQUOTE] = ACTIONS(3015), + [anon_sym_u8R_DQUOTE] = ACTIONS(3015), + [anon_sym_co_await] = ACTIONS(3017), + [anon_sym_new] = ACTIONS(3019), + [anon_sym_requires] = ACTIONS(3021), + [sym_this] = ACTIONS(3009), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3023), + [sym_semgrep_named_ellipsis] = ACTIONS(3025), }, - [1496] = { - [sym_expression] = STATE(3942), - [sym_expression_not_binary] = STATE(4358), - [sym_conditional_expression] = STATE(4353), - [sym_assignment_expression] = STATE(4353), - [sym_pointer_expression] = STATE(4360), - [sym_unary_expression] = STATE(4353), - [sym_binary_expression] = STATE(4358), - [sym_update_expression] = STATE(4353), - [sym_cast_expression] = STATE(4353), - [sym_sizeof_expression] = STATE(4353), - [sym_alignof_expression] = STATE(4353), - [sym_offsetof_expression] = STATE(4353), - [sym_generic_expression] = STATE(4353), - [sym_subscript_expression] = STATE(4360), - [sym_call_expression] = STATE(4360), - [sym_gnu_asm_expression] = STATE(4353), - [sym_field_expression] = STATE(4360), - [sym_compound_literal_expression] = STATE(4353), - [sym_parenthesized_expression] = STATE(4360), - [sym_char_literal] = STATE(4023), - [sym_concatenated_string] = STATE(4023), - [sym_string_literal] = STATE(2426), - [sym_null] = STATE(4353), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9636), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4353), - [sym_raw_string_literal] = STATE(2426), - [sym_co_await_expression] = STATE(4353), - [sym_new_expression] = STATE(4353), - [sym_delete_expression] = STATE(4353), - [sym_requires_clause] = STATE(4353), - [sym_requires_expression] = STATE(4353), - [sym_lambda_expression] = STATE(4353), - [sym_lambda_capture_specifier] = STATE(7284), - [sym_fold_expression] = STATE(4353), - [sym_parameter_pack_expansion] = STATE(4353), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4360), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4360), - [sym_semgrep_ellipsis] = STATE(4358), - [sym_deep_ellipsis] = STATE(4358), - [sym_identifier] = ACTIONS(2941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5070), - [anon_sym_LPAREN2] = ACTIONS(5130), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2951), - [anon_sym_not] = ACTIONS(2943), - [anon_sym_compl] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(5072), - [anon_sym_PLUS_PLUS] = ACTIONS(5072), - [anon_sym_sizeof] = ACTIONS(2953), - [anon_sym___alignof__] = ACTIONS(2955), - [anon_sym___alignof] = ACTIONS(2955), - [anon_sym__alignof] = ACTIONS(2955), - [anon_sym_alignof] = ACTIONS(2955), - [anon_sym__Alignof] = ACTIONS(2955), - [anon_sym_offsetof] = ACTIONS(2957), - [anon_sym__Generic] = ACTIONS(2959), - [anon_sym_asm] = ACTIONS(2961), - [anon_sym___asm__] = ACTIONS(2961), - [sym_number_literal] = ACTIONS(2963), - [anon_sym_L_SQUOTE] = ACTIONS(2965), - [anon_sym_u_SQUOTE] = ACTIONS(2965), - [anon_sym_U_SQUOTE] = ACTIONS(2965), - [anon_sym_u8_SQUOTE] = ACTIONS(2965), - [anon_sym_SQUOTE] = ACTIONS(2965), - [anon_sym_L_DQUOTE] = ACTIONS(2967), - [anon_sym_u_DQUOTE] = ACTIONS(2967), - [anon_sym_U_DQUOTE] = ACTIONS(2967), - [anon_sym_u8_DQUOTE] = ACTIONS(2967), - [anon_sym_DQUOTE] = ACTIONS(2967), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2971), - [anon_sym_nullptr] = ACTIONS(2971), + [1544] = { + [sym_expression] = STATE(2901), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2973), - [anon_sym_R_DQUOTE] = ACTIONS(2975), - [anon_sym_LR_DQUOTE] = ACTIONS(2975), - [anon_sym_uR_DQUOTE] = ACTIONS(2975), - [anon_sym_UR_DQUOTE] = ACTIONS(2975), - [anon_sym_u8R_DQUOTE] = ACTIONS(2975), - [anon_sym_co_await] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2979), - [anon_sym_requires] = ACTIONS(2981), - [sym_this] = ACTIONS(2969), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2983), - [sym_semgrep_named_ellipsis] = ACTIONS(2985), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1497] = { - [sym_expression] = STATE(3947), - [sym_expression_not_binary] = STATE(4358), - [sym_conditional_expression] = STATE(4353), - [sym_assignment_expression] = STATE(4353), - [sym_pointer_expression] = STATE(4360), - [sym_unary_expression] = STATE(4353), - [sym_binary_expression] = STATE(4358), - [sym_update_expression] = STATE(4353), - [sym_cast_expression] = STATE(4353), - [sym_sizeof_expression] = STATE(4353), - [sym_alignof_expression] = STATE(4353), - [sym_offsetof_expression] = STATE(4353), - [sym_generic_expression] = STATE(4353), - [sym_subscript_expression] = STATE(4360), - [sym_call_expression] = STATE(4360), - [sym_gnu_asm_expression] = STATE(4353), - [sym_field_expression] = STATE(4360), - [sym_compound_literal_expression] = STATE(4353), - [sym_parenthesized_expression] = STATE(4360), - [sym_char_literal] = STATE(4023), - [sym_concatenated_string] = STATE(4023), - [sym_string_literal] = STATE(2426), - [sym_null] = STATE(4353), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9636), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4353), - [sym_raw_string_literal] = STATE(2426), - [sym_co_await_expression] = STATE(4353), - [sym_new_expression] = STATE(4353), - [sym_delete_expression] = STATE(4353), - [sym_requires_clause] = STATE(4353), - [sym_requires_expression] = STATE(4353), - [sym_lambda_expression] = STATE(4353), - [sym_lambda_capture_specifier] = STATE(7284), - [sym_fold_expression] = STATE(4353), - [sym_parameter_pack_expansion] = STATE(4353), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4360), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4360), - [sym_semgrep_ellipsis] = STATE(4358), - [sym_deep_ellipsis] = STATE(4358), - [sym_identifier] = ACTIONS(2941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5070), - [anon_sym_LPAREN2] = ACTIONS(5130), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2951), - [anon_sym_not] = ACTIONS(2943), - [anon_sym_compl] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(5072), - [anon_sym_PLUS_PLUS] = ACTIONS(5072), - [anon_sym_sizeof] = ACTIONS(2953), - [anon_sym___alignof__] = ACTIONS(2955), - [anon_sym___alignof] = ACTIONS(2955), - [anon_sym__alignof] = ACTIONS(2955), - [anon_sym_alignof] = ACTIONS(2955), - [anon_sym__Alignof] = ACTIONS(2955), - [anon_sym_offsetof] = ACTIONS(2957), - [anon_sym__Generic] = ACTIONS(2959), - [anon_sym_asm] = ACTIONS(2961), - [anon_sym___asm__] = ACTIONS(2961), - [sym_number_literal] = ACTIONS(2963), - [anon_sym_L_SQUOTE] = ACTIONS(2965), - [anon_sym_u_SQUOTE] = ACTIONS(2965), - [anon_sym_U_SQUOTE] = ACTIONS(2965), - [anon_sym_u8_SQUOTE] = ACTIONS(2965), - [anon_sym_SQUOTE] = ACTIONS(2965), - [anon_sym_L_DQUOTE] = ACTIONS(2967), - [anon_sym_u_DQUOTE] = ACTIONS(2967), - [anon_sym_U_DQUOTE] = ACTIONS(2967), - [anon_sym_u8_DQUOTE] = ACTIONS(2967), - [anon_sym_DQUOTE] = ACTIONS(2967), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2971), - [anon_sym_nullptr] = ACTIONS(2971), + [1545] = { + [sym_expression] = STATE(3842), + [sym_expression_not_binary] = STATE(4146), + [sym_conditional_expression] = STATE(4141), + [sym_assignment_expression] = STATE(4141), + [sym_pointer_expression] = STATE(4149), + [sym_unary_expression] = STATE(4141), + [sym_binary_expression] = STATE(4146), + [sym_update_expression] = STATE(4141), + [sym_cast_expression] = STATE(4141), + [sym_sizeof_expression] = STATE(4141), + [sym_alignof_expression] = STATE(4141), + [sym_offsetof_expression] = STATE(4141), + [sym_generic_expression] = STATE(4141), + [sym_subscript_expression] = STATE(4149), + [sym_call_expression] = STATE(4149), + [sym_gnu_asm_expression] = STATE(4141), + [sym_field_expression] = STATE(4149), + [sym_compound_literal_expression] = STATE(4141), + [sym_parenthesized_expression] = STATE(4149), + [sym_char_literal] = STATE(4104), + [sym_concatenated_string] = STATE(4104), + [sym_string_literal] = STATE(2642), + [sym_null] = STATE(4141), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8879), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4141), + [sym_raw_string_literal] = STATE(2642), + [sym_co_await_expression] = STATE(4141), + [sym_new_expression] = STATE(4141), + [sym_delete_expression] = STATE(4141), + [sym_requires_clause] = STATE(4141), + [sym_requires_expression] = STATE(4141), + [sym_lambda_expression] = STATE(4141), + [sym_lambda_capture_specifier] = STATE(6832), + [sym_fold_expression] = STATE(4141), + [sym_parameter_pack_expansion] = STATE(4141), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4149), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4149), + [sym_semgrep_ellipsis] = STATE(4146), + [sym_deep_ellipsis] = STATE(4146), + [sym_identifier] = ACTIONS(2981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4990), + [anon_sym_LPAREN2] = ACTIONS(5044), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(2987), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2991), + [anon_sym_not] = ACTIONS(2983), + [anon_sym_compl] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(4992), + [anon_sym_PLUS_PLUS] = ACTIONS(4992), + [anon_sym_sizeof] = ACTIONS(2993), + [anon_sym___alignof__] = ACTIONS(2995), + [anon_sym___alignof] = ACTIONS(2995), + [anon_sym__alignof] = ACTIONS(2995), + [anon_sym_alignof] = ACTIONS(2995), + [anon_sym__Alignof] = ACTIONS(2995), + [anon_sym_offsetof] = ACTIONS(2997), + [anon_sym__Generic] = ACTIONS(2999), + [anon_sym_asm] = ACTIONS(3001), + [anon_sym___asm__] = ACTIONS(3001), + [sym_number_literal] = ACTIONS(3003), + [anon_sym_L_SQUOTE] = ACTIONS(3005), + [anon_sym_u_SQUOTE] = ACTIONS(3005), + [anon_sym_U_SQUOTE] = ACTIONS(3005), + [anon_sym_u8_SQUOTE] = ACTIONS(3005), + [anon_sym_SQUOTE] = ACTIONS(3005), + [anon_sym_L_DQUOTE] = ACTIONS(3007), + [anon_sym_u_DQUOTE] = ACTIONS(3007), + [anon_sym_U_DQUOTE] = ACTIONS(3007), + [anon_sym_u8_DQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE] = ACTIONS(3007), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [anon_sym_NULL] = ACTIONS(3011), + [anon_sym_nullptr] = ACTIONS(3011), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2973), - [anon_sym_R_DQUOTE] = ACTIONS(2975), - [anon_sym_LR_DQUOTE] = ACTIONS(2975), - [anon_sym_uR_DQUOTE] = ACTIONS(2975), - [anon_sym_UR_DQUOTE] = ACTIONS(2975), - [anon_sym_u8R_DQUOTE] = ACTIONS(2975), - [anon_sym_co_await] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2979), - [anon_sym_requires] = ACTIONS(2981), - [sym_this] = ACTIONS(2969), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2983), - [sym_semgrep_named_ellipsis] = ACTIONS(2985), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3013), + [anon_sym_R_DQUOTE] = ACTIONS(3015), + [anon_sym_LR_DQUOTE] = ACTIONS(3015), + [anon_sym_uR_DQUOTE] = ACTIONS(3015), + [anon_sym_UR_DQUOTE] = ACTIONS(3015), + [anon_sym_u8R_DQUOTE] = ACTIONS(3015), + [anon_sym_co_await] = ACTIONS(3017), + [anon_sym_new] = ACTIONS(3019), + [anon_sym_requires] = ACTIONS(3021), + [sym_this] = ACTIONS(3009), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3023), + [sym_semgrep_named_ellipsis] = ACTIONS(3025), }, - [1498] = { - [sym_expression] = STATE(3948), - [sym_expression_not_binary] = STATE(4358), - [sym_conditional_expression] = STATE(4353), - [sym_assignment_expression] = STATE(4353), - [sym_pointer_expression] = STATE(4360), - [sym_unary_expression] = STATE(4353), - [sym_binary_expression] = STATE(4358), - [sym_update_expression] = STATE(4353), - [sym_cast_expression] = STATE(4353), - [sym_sizeof_expression] = STATE(4353), - [sym_alignof_expression] = STATE(4353), - [sym_offsetof_expression] = STATE(4353), - [sym_generic_expression] = STATE(4353), - [sym_subscript_expression] = STATE(4360), - [sym_call_expression] = STATE(4360), - [sym_gnu_asm_expression] = STATE(4353), - [sym_field_expression] = STATE(4360), - [sym_compound_literal_expression] = STATE(4353), - [sym_parenthesized_expression] = STATE(4360), - [sym_char_literal] = STATE(4023), - [sym_concatenated_string] = STATE(4023), - [sym_string_literal] = STATE(2426), - [sym_null] = STATE(4353), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9636), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4353), - [sym_raw_string_literal] = STATE(2426), - [sym_co_await_expression] = STATE(4353), - [sym_new_expression] = STATE(4353), - [sym_delete_expression] = STATE(4353), - [sym_requires_clause] = STATE(4353), - [sym_requires_expression] = STATE(4353), - [sym_lambda_expression] = STATE(4353), - [sym_lambda_capture_specifier] = STATE(7284), - [sym_fold_expression] = STATE(4353), - [sym_parameter_pack_expansion] = STATE(4353), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4360), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4360), - [sym_semgrep_ellipsis] = STATE(4358), - [sym_deep_ellipsis] = STATE(4358), - [sym_identifier] = ACTIONS(2941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5070), - [anon_sym_LPAREN2] = ACTIONS(5130), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2951), - [anon_sym_not] = ACTIONS(2943), - [anon_sym_compl] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(5072), - [anon_sym_PLUS_PLUS] = ACTIONS(5072), - [anon_sym_sizeof] = ACTIONS(2953), - [anon_sym___alignof__] = ACTIONS(2955), - [anon_sym___alignof] = ACTIONS(2955), - [anon_sym__alignof] = ACTIONS(2955), - [anon_sym_alignof] = ACTIONS(2955), - [anon_sym__Alignof] = ACTIONS(2955), - [anon_sym_offsetof] = ACTIONS(2957), - [anon_sym__Generic] = ACTIONS(2959), - [anon_sym_asm] = ACTIONS(2961), - [anon_sym___asm__] = ACTIONS(2961), - [sym_number_literal] = ACTIONS(2963), - [anon_sym_L_SQUOTE] = ACTIONS(2965), - [anon_sym_u_SQUOTE] = ACTIONS(2965), - [anon_sym_U_SQUOTE] = ACTIONS(2965), - [anon_sym_u8_SQUOTE] = ACTIONS(2965), - [anon_sym_SQUOTE] = ACTIONS(2965), - [anon_sym_L_DQUOTE] = ACTIONS(2967), - [anon_sym_u_DQUOTE] = ACTIONS(2967), - [anon_sym_U_DQUOTE] = ACTIONS(2967), - [anon_sym_u8_DQUOTE] = ACTIONS(2967), - [anon_sym_DQUOTE] = ACTIONS(2967), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2971), - [anon_sym_nullptr] = ACTIONS(2971), + [1546] = { + [sym_expression] = STATE(3843), + [sym_expression_not_binary] = STATE(4146), + [sym_conditional_expression] = STATE(4141), + [sym_assignment_expression] = STATE(4141), + [sym_pointer_expression] = STATE(4149), + [sym_unary_expression] = STATE(4141), + [sym_binary_expression] = STATE(4146), + [sym_update_expression] = STATE(4141), + [sym_cast_expression] = STATE(4141), + [sym_sizeof_expression] = STATE(4141), + [sym_alignof_expression] = STATE(4141), + [sym_offsetof_expression] = STATE(4141), + [sym_generic_expression] = STATE(4141), + [sym_subscript_expression] = STATE(4149), + [sym_call_expression] = STATE(4149), + [sym_gnu_asm_expression] = STATE(4141), + [sym_field_expression] = STATE(4149), + [sym_compound_literal_expression] = STATE(4141), + [sym_parenthesized_expression] = STATE(4149), + [sym_char_literal] = STATE(4104), + [sym_concatenated_string] = STATE(4104), + [sym_string_literal] = STATE(2642), + [sym_null] = STATE(4141), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8879), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4141), + [sym_raw_string_literal] = STATE(2642), + [sym_co_await_expression] = STATE(4141), + [sym_new_expression] = STATE(4141), + [sym_delete_expression] = STATE(4141), + [sym_requires_clause] = STATE(4141), + [sym_requires_expression] = STATE(4141), + [sym_lambda_expression] = STATE(4141), + [sym_lambda_capture_specifier] = STATE(6832), + [sym_fold_expression] = STATE(4141), + [sym_parameter_pack_expansion] = STATE(4141), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4149), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4149), + [sym_semgrep_ellipsis] = STATE(4146), + [sym_deep_ellipsis] = STATE(4146), + [sym_identifier] = ACTIONS(2981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5318), + [anon_sym_LPAREN2] = ACTIONS(5320), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(2987), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2991), + [anon_sym_not] = ACTIONS(2983), + [anon_sym_compl] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(4992), + [anon_sym_PLUS_PLUS] = ACTIONS(4992), + [anon_sym_sizeof] = ACTIONS(2993), + [anon_sym___alignof__] = ACTIONS(2995), + [anon_sym___alignof] = ACTIONS(2995), + [anon_sym__alignof] = ACTIONS(2995), + [anon_sym_alignof] = ACTIONS(2995), + [anon_sym__Alignof] = ACTIONS(2995), + [anon_sym_offsetof] = ACTIONS(2997), + [anon_sym__Generic] = ACTIONS(2999), + [anon_sym_asm] = ACTIONS(3001), + [anon_sym___asm__] = ACTIONS(3001), + [sym_number_literal] = ACTIONS(3003), + [anon_sym_L_SQUOTE] = ACTIONS(3005), + [anon_sym_u_SQUOTE] = ACTIONS(3005), + [anon_sym_U_SQUOTE] = ACTIONS(3005), + [anon_sym_u8_SQUOTE] = ACTIONS(3005), + [anon_sym_SQUOTE] = ACTIONS(3005), + [anon_sym_L_DQUOTE] = ACTIONS(3007), + [anon_sym_u_DQUOTE] = ACTIONS(3007), + [anon_sym_U_DQUOTE] = ACTIONS(3007), + [anon_sym_u8_DQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE] = ACTIONS(3007), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [anon_sym_NULL] = ACTIONS(3011), + [anon_sym_nullptr] = ACTIONS(3011), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2973), - [anon_sym_R_DQUOTE] = ACTIONS(2975), - [anon_sym_LR_DQUOTE] = ACTIONS(2975), - [anon_sym_uR_DQUOTE] = ACTIONS(2975), - [anon_sym_UR_DQUOTE] = ACTIONS(2975), - [anon_sym_u8R_DQUOTE] = ACTIONS(2975), - [anon_sym_co_await] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2979), - [anon_sym_requires] = ACTIONS(2981), - [sym_this] = ACTIONS(2969), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2983), - [sym_semgrep_named_ellipsis] = ACTIONS(2985), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3013), + [anon_sym_R_DQUOTE] = ACTIONS(3015), + [anon_sym_LR_DQUOTE] = ACTIONS(3015), + [anon_sym_uR_DQUOTE] = ACTIONS(3015), + [anon_sym_UR_DQUOTE] = ACTIONS(3015), + [anon_sym_u8R_DQUOTE] = ACTIONS(3015), + [anon_sym_co_await] = ACTIONS(3017), + [anon_sym_new] = ACTIONS(3019), + [anon_sym_requires] = ACTIONS(3021), + [sym_this] = ACTIONS(3009), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3023), + [sym_semgrep_named_ellipsis] = ACTIONS(3025), }, - [1499] = { - [sym_expression] = STATE(3949), - [sym_expression_not_binary] = STATE(4358), - [sym_conditional_expression] = STATE(4353), - [sym_assignment_expression] = STATE(4353), - [sym_pointer_expression] = STATE(4360), - [sym_unary_expression] = STATE(4353), - [sym_binary_expression] = STATE(4358), - [sym_update_expression] = STATE(4353), - [sym_cast_expression] = STATE(4353), - [sym_sizeof_expression] = STATE(4353), - [sym_alignof_expression] = STATE(4353), - [sym_offsetof_expression] = STATE(4353), - [sym_generic_expression] = STATE(4353), - [sym_subscript_expression] = STATE(4360), - [sym_call_expression] = STATE(4360), - [sym_gnu_asm_expression] = STATE(4353), - [sym_field_expression] = STATE(4360), - [sym_compound_literal_expression] = STATE(4353), - [sym_parenthesized_expression] = STATE(4360), - [sym_char_literal] = STATE(4023), - [sym_concatenated_string] = STATE(4023), - [sym_string_literal] = STATE(2426), - [sym_null] = STATE(4353), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9636), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4353), - [sym_raw_string_literal] = STATE(2426), - [sym_co_await_expression] = STATE(4353), - [sym_new_expression] = STATE(4353), - [sym_delete_expression] = STATE(4353), - [sym_requires_clause] = STATE(4353), - [sym_requires_expression] = STATE(4353), - [sym_lambda_expression] = STATE(4353), - [sym_lambda_capture_specifier] = STATE(7284), - [sym_fold_expression] = STATE(4353), - [sym_parameter_pack_expansion] = STATE(4353), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4360), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4360), - [sym_semgrep_ellipsis] = STATE(4358), - [sym_deep_ellipsis] = STATE(4358), - [sym_identifier] = ACTIONS(2941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5070), - [anon_sym_LPAREN2] = ACTIONS(5130), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2951), - [anon_sym_not] = ACTIONS(2943), - [anon_sym_compl] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(5072), - [anon_sym_PLUS_PLUS] = ACTIONS(5072), - [anon_sym_sizeof] = ACTIONS(2953), - [anon_sym___alignof__] = ACTIONS(2955), - [anon_sym___alignof] = ACTIONS(2955), - [anon_sym__alignof] = ACTIONS(2955), - [anon_sym_alignof] = ACTIONS(2955), - [anon_sym__Alignof] = ACTIONS(2955), - [anon_sym_offsetof] = ACTIONS(2957), - [anon_sym__Generic] = ACTIONS(2959), - [anon_sym_asm] = ACTIONS(2961), - [anon_sym___asm__] = ACTIONS(2961), - [sym_number_literal] = ACTIONS(2963), - [anon_sym_L_SQUOTE] = ACTIONS(2965), - [anon_sym_u_SQUOTE] = ACTIONS(2965), - [anon_sym_U_SQUOTE] = ACTIONS(2965), - [anon_sym_u8_SQUOTE] = ACTIONS(2965), - [anon_sym_SQUOTE] = ACTIONS(2965), - [anon_sym_L_DQUOTE] = ACTIONS(2967), - [anon_sym_u_DQUOTE] = ACTIONS(2967), - [anon_sym_U_DQUOTE] = ACTIONS(2967), - [anon_sym_u8_DQUOTE] = ACTIONS(2967), - [anon_sym_DQUOTE] = ACTIONS(2967), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2971), - [anon_sym_nullptr] = ACTIONS(2971), + [1547] = { + [sym_expression] = STATE(3202), + [sym_expression_not_binary] = STATE(3486), + [sym_conditional_expression] = STATE(3447), + [sym_assignment_expression] = STATE(3447), + [sym_pointer_expression] = STATE(3487), + [sym_unary_expression] = STATE(3447), + [sym_binary_expression] = STATE(3486), + [sym_update_expression] = STATE(3447), + [sym_cast_expression] = STATE(3447), + [sym_sizeof_expression] = STATE(3447), + [sym_alignof_expression] = STATE(3447), + [sym_offsetof_expression] = STATE(3447), + [sym_generic_expression] = STATE(3447), + [sym_subscript_expression] = STATE(3487), + [sym_call_expression] = STATE(3487), + [sym_gnu_asm_expression] = STATE(3447), + [sym_field_expression] = STATE(3487), + [sym_compound_literal_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3487), + [sym_char_literal] = STATE(3228), + [sym_concatenated_string] = STATE(3228), + [sym_string_literal] = STATE(2167), + [sym_null] = STATE(3447), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8847), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3447), + [sym_raw_string_literal] = STATE(2167), + [sym_co_await_expression] = STATE(3447), + [sym_new_expression] = STATE(3447), + [sym_delete_expression] = STATE(3447), + [sym_requires_clause] = STATE(3447), + [sym_requires_expression] = STATE(3447), + [sym_lambda_expression] = STATE(3447), + [sym_lambda_capture_specifier] = STATE(6853), + [sym_fold_expression] = STATE(3447), + [sym_parameter_pack_expansion] = STATE(3447), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3487), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3487), + [sym_semgrep_ellipsis] = STATE(3486), + [sym_deep_ellipsis] = STATE(3486), + [sym_identifier] = ACTIONS(4890), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4892), + [anon_sym_LPAREN2] = ACTIONS(5050), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_TILDE] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2365), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2373), + [anon_sym_not] = ACTIONS(2365), + [anon_sym_compl] = ACTIONS(2365), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_sizeof] = ACTIONS(2375), + [anon_sym___alignof__] = ACTIONS(2377), + [anon_sym___alignof] = ACTIONS(2377), + [anon_sym__alignof] = ACTIONS(2377), + [anon_sym_alignof] = ACTIONS(2377), + [anon_sym__Alignof] = ACTIONS(2377), + [anon_sym_offsetof] = ACTIONS(2379), + [anon_sym__Generic] = ACTIONS(2381), + [anon_sym_asm] = ACTIONS(2383), + [anon_sym___asm__] = ACTIONS(2383), + [sym_number_literal] = ACTIONS(2385), + [anon_sym_L_SQUOTE] = ACTIONS(2387), + [anon_sym_u_SQUOTE] = ACTIONS(2387), + [anon_sym_U_SQUOTE] = ACTIONS(2387), + [anon_sym_u8_SQUOTE] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2387), + [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(2391), + [sym_false] = ACTIONS(2391), + [anon_sym_NULL] = ACTIONS(2393), + [anon_sym_nullptr] = ACTIONS(2393), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2973), - [anon_sym_R_DQUOTE] = ACTIONS(2975), - [anon_sym_LR_DQUOTE] = ACTIONS(2975), - [anon_sym_uR_DQUOTE] = ACTIONS(2975), - [anon_sym_UR_DQUOTE] = ACTIONS(2975), - [anon_sym_u8R_DQUOTE] = ACTIONS(2975), - [anon_sym_co_await] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2979), - [anon_sym_requires] = ACTIONS(2981), - [sym_this] = ACTIONS(2969), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2983), - [sym_semgrep_named_ellipsis] = ACTIONS(2985), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2399), + [anon_sym_new] = ACTIONS(2401), + [anon_sym_requires] = ACTIONS(2403), + [sym_this] = ACTIONS(2391), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2405), + [sym_semgrep_named_ellipsis] = ACTIONS(2407), }, - [1500] = { - [sym_expression] = STATE(3957), - [sym_expression_not_binary] = STATE(4358), - [sym_conditional_expression] = STATE(4353), - [sym_assignment_expression] = STATE(4353), - [sym_pointer_expression] = STATE(4360), - [sym_unary_expression] = STATE(4353), - [sym_binary_expression] = STATE(4358), - [sym_update_expression] = STATE(4353), - [sym_cast_expression] = STATE(4353), - [sym_sizeof_expression] = STATE(4353), - [sym_alignof_expression] = STATE(4353), - [sym_offsetof_expression] = STATE(4353), - [sym_generic_expression] = STATE(4353), - [sym_subscript_expression] = STATE(4360), - [sym_call_expression] = STATE(4360), - [sym_gnu_asm_expression] = STATE(4353), - [sym_field_expression] = STATE(4360), - [sym_compound_literal_expression] = STATE(4353), - [sym_parenthesized_expression] = STATE(4360), - [sym_char_literal] = STATE(4023), - [sym_concatenated_string] = STATE(4023), - [sym_string_literal] = STATE(2426), - [sym_null] = STATE(4353), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9636), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4353), - [sym_raw_string_literal] = STATE(2426), - [sym_co_await_expression] = STATE(4353), - [sym_new_expression] = STATE(4353), - [sym_delete_expression] = STATE(4353), - [sym_requires_clause] = STATE(4353), - [sym_requires_expression] = STATE(4353), - [sym_lambda_expression] = STATE(4353), - [sym_lambda_capture_specifier] = STATE(7284), - [sym_fold_expression] = STATE(4353), - [sym_parameter_pack_expansion] = STATE(4353), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4360), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4360), - [sym_semgrep_ellipsis] = STATE(4358), - [sym_deep_ellipsis] = STATE(4358), - [sym_identifier] = ACTIONS(2941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5070), - [anon_sym_LPAREN2] = ACTIONS(5130), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2951), - [anon_sym_not] = ACTIONS(2943), - [anon_sym_compl] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(5072), - [anon_sym_PLUS_PLUS] = ACTIONS(5072), - [anon_sym_sizeof] = ACTIONS(2953), - [anon_sym___alignof__] = ACTIONS(2955), - [anon_sym___alignof] = ACTIONS(2955), - [anon_sym__alignof] = ACTIONS(2955), - [anon_sym_alignof] = ACTIONS(2955), - [anon_sym__Alignof] = ACTIONS(2955), - [anon_sym_offsetof] = ACTIONS(2957), - [anon_sym__Generic] = ACTIONS(2959), - [anon_sym_asm] = ACTIONS(2961), - [anon_sym___asm__] = ACTIONS(2961), - [sym_number_literal] = ACTIONS(2963), - [anon_sym_L_SQUOTE] = ACTIONS(2965), - [anon_sym_u_SQUOTE] = ACTIONS(2965), - [anon_sym_U_SQUOTE] = ACTIONS(2965), - [anon_sym_u8_SQUOTE] = ACTIONS(2965), - [anon_sym_SQUOTE] = ACTIONS(2965), - [anon_sym_L_DQUOTE] = ACTIONS(2967), - [anon_sym_u_DQUOTE] = ACTIONS(2967), - [anon_sym_U_DQUOTE] = ACTIONS(2967), - [anon_sym_u8_DQUOTE] = ACTIONS(2967), - [anon_sym_DQUOTE] = ACTIONS(2967), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2971), - [anon_sym_nullptr] = ACTIONS(2971), + [1548] = { + [sym_expression] = STATE(3049), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(5322), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2973), - [anon_sym_R_DQUOTE] = ACTIONS(2975), - [anon_sym_LR_DQUOTE] = ACTIONS(2975), - [anon_sym_uR_DQUOTE] = ACTIONS(2975), - [anon_sym_UR_DQUOTE] = ACTIONS(2975), - [anon_sym_u8R_DQUOTE] = ACTIONS(2975), - [anon_sym_co_await] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2979), - [anon_sym_requires] = ACTIONS(2981), - [sym_this] = ACTIONS(2969), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2983), - [sym_semgrep_named_ellipsis] = ACTIONS(2985), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1501] = { - [sym_expression] = STATE(3807), - [sym_expression_not_binary] = STATE(4358), - [sym_conditional_expression] = STATE(4353), - [sym_assignment_expression] = STATE(4353), - [sym_pointer_expression] = STATE(4360), - [sym_unary_expression] = STATE(4353), - [sym_binary_expression] = STATE(4358), - [sym_update_expression] = STATE(4353), - [sym_cast_expression] = STATE(4353), - [sym_sizeof_expression] = STATE(4353), - [sym_alignof_expression] = STATE(4353), - [sym_offsetof_expression] = STATE(4353), - [sym_generic_expression] = STATE(4353), - [sym_subscript_expression] = STATE(4360), - [sym_call_expression] = STATE(4360), - [sym_gnu_asm_expression] = STATE(4353), - [sym_field_expression] = STATE(4360), - [sym_compound_literal_expression] = STATE(4353), - [sym_parenthesized_expression] = STATE(4360), - [sym_char_literal] = STATE(4023), - [sym_concatenated_string] = STATE(4023), - [sym_string_literal] = STATE(2426), - [sym_null] = STATE(4353), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9636), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4353), - [sym_raw_string_literal] = STATE(2426), - [sym_co_await_expression] = STATE(4353), - [sym_new_expression] = STATE(4353), - [sym_delete_expression] = STATE(4353), - [sym_requires_clause] = STATE(4353), - [sym_requires_expression] = STATE(4353), - [sym_lambda_expression] = STATE(4353), - [sym_lambda_capture_specifier] = STATE(7284), - [sym_fold_expression] = STATE(4353), - [sym_parameter_pack_expansion] = STATE(4353), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4360), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4360), - [sym_semgrep_ellipsis] = STATE(4358), - [sym_deep_ellipsis] = STATE(4358), - [sym_identifier] = ACTIONS(2941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5070), - [anon_sym_LPAREN2] = ACTIONS(5130), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2951), - [anon_sym_not] = ACTIONS(2943), - [anon_sym_compl] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(5072), - [anon_sym_PLUS_PLUS] = ACTIONS(5072), - [anon_sym_sizeof] = ACTIONS(2953), - [anon_sym___alignof__] = ACTIONS(2955), - [anon_sym___alignof] = ACTIONS(2955), - [anon_sym__alignof] = ACTIONS(2955), - [anon_sym_alignof] = ACTIONS(2955), - [anon_sym__Alignof] = ACTIONS(2955), - [anon_sym_offsetof] = ACTIONS(2957), - [anon_sym__Generic] = ACTIONS(2959), - [anon_sym_asm] = ACTIONS(2961), - [anon_sym___asm__] = ACTIONS(2961), - [sym_number_literal] = ACTIONS(2963), - [anon_sym_L_SQUOTE] = ACTIONS(2965), - [anon_sym_u_SQUOTE] = ACTIONS(2965), - [anon_sym_U_SQUOTE] = ACTIONS(2965), - [anon_sym_u8_SQUOTE] = ACTIONS(2965), - [anon_sym_SQUOTE] = ACTIONS(2965), - [anon_sym_L_DQUOTE] = ACTIONS(2967), - [anon_sym_u_DQUOTE] = ACTIONS(2967), - [anon_sym_U_DQUOTE] = ACTIONS(2967), - [anon_sym_u8_DQUOTE] = ACTIONS(2967), - [anon_sym_DQUOTE] = ACTIONS(2967), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2971), - [anon_sym_nullptr] = ACTIONS(2971), + [1549] = { + [sym_expression] = STATE(4905), + [sym_expression_not_binary] = STATE(5098), + [sym_conditional_expression] = STATE(5096), + [sym_assignment_expression] = STATE(5096), + [sym_pointer_expression] = STATE(3493), + [sym_unary_expression] = STATE(5096), + [sym_binary_expression] = STATE(5098), + [sym_update_expression] = STATE(5096), + [sym_cast_expression] = STATE(5096), + [sym_sizeof_expression] = STATE(5096), + [sym_alignof_expression] = STATE(5096), + [sym_offsetof_expression] = STATE(5096), + [sym_generic_expression] = STATE(5096), + [sym_subscript_expression] = STATE(3493), + [sym_call_expression] = STATE(3493), + [sym_gnu_asm_expression] = STATE(5096), + [sym_field_expression] = STATE(3493), + [sym_compound_literal_expression] = STATE(5096), + [sym_parenthesized_expression] = STATE(3493), + [sym_char_literal] = STATE(4944), + [sym_concatenated_string] = STATE(4944), + [sym_string_literal] = STATE(3577), + [sym_null] = STATE(5096), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9068), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5096), + [sym_raw_string_literal] = STATE(3577), + [sym_co_await_expression] = STATE(5096), + [sym_new_expression] = STATE(5096), + [sym_delete_expression] = STATE(5096), + [sym_requires_clause] = STATE(5096), + [sym_requires_expression] = STATE(5096), + [sym_lambda_expression] = STATE(5096), + [sym_lambda_capture_specifier] = STATE(6837), + [sym_fold_expression] = STATE(5096), + [sym_parameter_pack_expansion] = STATE(5096), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3493), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3493), + [sym_semgrep_ellipsis] = STATE(5098), + [sym_deep_ellipsis] = STATE(5098), + [sym_identifier] = ACTIONS(4980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4982), + [anon_sym_LPAREN2] = ACTIONS(5040), + [anon_sym_BANG] = ACTIONS(3960), + [anon_sym_TILDE] = ACTIONS(3960), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(3962), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3966), + [anon_sym_not] = ACTIONS(3958), + [anon_sym_compl] = ACTIONS(3958), + [anon_sym_DASH_DASH] = ACTIONS(4984), + [anon_sym_PLUS_PLUS] = ACTIONS(4984), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym___alignof__] = ACTIONS(3970), + [anon_sym___alignof] = ACTIONS(3970), + [anon_sym__alignof] = ACTIONS(3970), + [anon_sym_alignof] = ACTIONS(3970), + [anon_sym__Alignof] = ACTIONS(3970), + [anon_sym_offsetof] = ACTIONS(3972), + [anon_sym__Generic] = ACTIONS(3974), + [anon_sym_asm] = ACTIONS(3976), + [anon_sym___asm__] = ACTIONS(3976), + [sym_number_literal] = ACTIONS(3978), + [anon_sym_L_SQUOTE] = ACTIONS(3980), + [anon_sym_u_SQUOTE] = ACTIONS(3980), + [anon_sym_U_SQUOTE] = ACTIONS(3980), + [anon_sym_u8_SQUOTE] = ACTIONS(3980), + [anon_sym_SQUOTE] = ACTIONS(3980), + [anon_sym_L_DQUOTE] = ACTIONS(3982), + [anon_sym_u_DQUOTE] = ACTIONS(3982), + [anon_sym_U_DQUOTE] = ACTIONS(3982), + [anon_sym_u8_DQUOTE] = ACTIONS(3982), + [anon_sym_DQUOTE] = ACTIONS(3982), + [sym_true] = ACTIONS(3984), + [sym_false] = ACTIONS(3984), + [anon_sym_NULL] = ACTIONS(3986), + [anon_sym_nullptr] = ACTIONS(3986), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2973), - [anon_sym_R_DQUOTE] = ACTIONS(2975), - [anon_sym_LR_DQUOTE] = ACTIONS(2975), - [anon_sym_uR_DQUOTE] = ACTIONS(2975), - [anon_sym_UR_DQUOTE] = ACTIONS(2975), - [anon_sym_u8R_DQUOTE] = ACTIONS(2975), - [anon_sym_co_await] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2979), - [anon_sym_requires] = ACTIONS(2981), - [sym_this] = ACTIONS(2969), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2983), - [sym_semgrep_named_ellipsis] = ACTIONS(2985), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3988), + [anon_sym_R_DQUOTE] = ACTIONS(3990), + [anon_sym_LR_DQUOTE] = ACTIONS(3990), + [anon_sym_uR_DQUOTE] = ACTIONS(3990), + [anon_sym_UR_DQUOTE] = ACTIONS(3990), + [anon_sym_u8R_DQUOTE] = ACTIONS(3990), + [anon_sym_co_await] = ACTIONS(3992), + [anon_sym_new] = ACTIONS(3994), + [anon_sym_requires] = ACTIONS(3996), + [sym_this] = ACTIONS(3984), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3998), + [sym_semgrep_named_ellipsis] = ACTIONS(4000), }, - [1502] = { - [sym_expression] = STATE(3808), - [sym_expression_not_binary] = STATE(4358), - [sym_conditional_expression] = STATE(4353), - [sym_assignment_expression] = STATE(4353), - [sym_pointer_expression] = STATE(4360), - [sym_unary_expression] = STATE(4353), - [sym_binary_expression] = STATE(4358), - [sym_update_expression] = STATE(4353), - [sym_cast_expression] = STATE(4353), - [sym_sizeof_expression] = STATE(4353), - [sym_alignof_expression] = STATE(4353), - [sym_offsetof_expression] = STATE(4353), - [sym_generic_expression] = STATE(4353), - [sym_subscript_expression] = STATE(4360), - [sym_call_expression] = STATE(4360), - [sym_gnu_asm_expression] = STATE(4353), - [sym_field_expression] = STATE(4360), - [sym_compound_literal_expression] = STATE(4353), - [sym_parenthesized_expression] = STATE(4360), - [sym_char_literal] = STATE(4023), - [sym_concatenated_string] = STATE(4023), - [sym_string_literal] = STATE(2426), - [sym_null] = STATE(4353), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9636), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4353), - [sym_raw_string_literal] = STATE(2426), - [sym_co_await_expression] = STATE(4353), - [sym_new_expression] = STATE(4353), - [sym_delete_expression] = STATE(4353), - [sym_requires_clause] = STATE(4353), - [sym_requires_expression] = STATE(4353), - [sym_lambda_expression] = STATE(4353), - [sym_lambda_capture_specifier] = STATE(7284), - [sym_fold_expression] = STATE(4353), - [sym_parameter_pack_expansion] = STATE(4353), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4360), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4360), - [sym_semgrep_ellipsis] = STATE(4358), - [sym_deep_ellipsis] = STATE(4358), - [sym_identifier] = ACTIONS(2941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5070), - [anon_sym_LPAREN2] = ACTIONS(5130), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2951), - [anon_sym_not] = ACTIONS(2943), - [anon_sym_compl] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(5072), - [anon_sym_PLUS_PLUS] = ACTIONS(5072), - [anon_sym_sizeof] = ACTIONS(2953), - [anon_sym___alignof__] = ACTIONS(2955), - [anon_sym___alignof] = ACTIONS(2955), - [anon_sym__alignof] = ACTIONS(2955), - [anon_sym_alignof] = ACTIONS(2955), - [anon_sym__Alignof] = ACTIONS(2955), - [anon_sym_offsetof] = ACTIONS(2957), - [anon_sym__Generic] = ACTIONS(2959), - [anon_sym_asm] = ACTIONS(2961), - [anon_sym___asm__] = ACTIONS(2961), - [sym_number_literal] = ACTIONS(2963), - [anon_sym_L_SQUOTE] = ACTIONS(2965), - [anon_sym_u_SQUOTE] = ACTIONS(2965), - [anon_sym_U_SQUOTE] = ACTIONS(2965), - [anon_sym_u8_SQUOTE] = ACTIONS(2965), - [anon_sym_SQUOTE] = ACTIONS(2965), - [anon_sym_L_DQUOTE] = ACTIONS(2967), - [anon_sym_u_DQUOTE] = ACTIONS(2967), - [anon_sym_U_DQUOTE] = ACTIONS(2967), - [anon_sym_u8_DQUOTE] = ACTIONS(2967), - [anon_sym_DQUOTE] = ACTIONS(2967), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2971), - [anon_sym_nullptr] = ACTIONS(2971), + [1550] = { + [sym_expression] = STATE(4900), + [sym_expression_not_binary] = STATE(5098), + [sym_conditional_expression] = STATE(5096), + [sym_assignment_expression] = STATE(5096), + [sym_pointer_expression] = STATE(3493), + [sym_unary_expression] = STATE(5096), + [sym_binary_expression] = STATE(5098), + [sym_update_expression] = STATE(5096), + [sym_cast_expression] = STATE(5096), + [sym_sizeof_expression] = STATE(5096), + [sym_alignof_expression] = STATE(5096), + [sym_offsetof_expression] = STATE(5096), + [sym_generic_expression] = STATE(5096), + [sym_subscript_expression] = STATE(3493), + [sym_call_expression] = STATE(3493), + [sym_gnu_asm_expression] = STATE(5096), + [sym_field_expression] = STATE(3493), + [sym_compound_literal_expression] = STATE(5096), + [sym_parenthesized_expression] = STATE(3493), + [sym_char_literal] = STATE(4944), + [sym_concatenated_string] = STATE(4944), + [sym_string_literal] = STATE(3577), + [sym_null] = STATE(5096), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9068), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5096), + [sym_raw_string_literal] = STATE(3577), + [sym_co_await_expression] = STATE(5096), + [sym_new_expression] = STATE(5096), + [sym_delete_expression] = STATE(5096), + [sym_requires_clause] = STATE(5096), + [sym_requires_expression] = STATE(5096), + [sym_lambda_expression] = STATE(5096), + [sym_lambda_capture_specifier] = STATE(6837), + [sym_fold_expression] = STATE(5096), + [sym_parameter_pack_expansion] = STATE(5096), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3493), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3493), + [sym_semgrep_ellipsis] = STATE(5098), + [sym_deep_ellipsis] = STATE(5098), + [sym_identifier] = ACTIONS(4980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4982), + [anon_sym_LPAREN2] = ACTIONS(5040), + [anon_sym_BANG] = ACTIONS(3960), + [anon_sym_TILDE] = ACTIONS(3960), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(3962), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3966), + [anon_sym_not] = ACTIONS(3958), + [anon_sym_compl] = ACTIONS(3958), + [anon_sym_DASH_DASH] = ACTIONS(4984), + [anon_sym_PLUS_PLUS] = ACTIONS(4984), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym___alignof__] = ACTIONS(3970), + [anon_sym___alignof] = ACTIONS(3970), + [anon_sym__alignof] = ACTIONS(3970), + [anon_sym_alignof] = ACTIONS(3970), + [anon_sym__Alignof] = ACTIONS(3970), + [anon_sym_offsetof] = ACTIONS(3972), + [anon_sym__Generic] = ACTIONS(3974), + [anon_sym_asm] = ACTIONS(3976), + [anon_sym___asm__] = ACTIONS(3976), + [sym_number_literal] = ACTIONS(3978), + [anon_sym_L_SQUOTE] = ACTIONS(3980), + [anon_sym_u_SQUOTE] = ACTIONS(3980), + [anon_sym_U_SQUOTE] = ACTIONS(3980), + [anon_sym_u8_SQUOTE] = ACTIONS(3980), + [anon_sym_SQUOTE] = ACTIONS(3980), + [anon_sym_L_DQUOTE] = ACTIONS(3982), + [anon_sym_u_DQUOTE] = ACTIONS(3982), + [anon_sym_U_DQUOTE] = ACTIONS(3982), + [anon_sym_u8_DQUOTE] = ACTIONS(3982), + [anon_sym_DQUOTE] = ACTIONS(3982), + [sym_true] = ACTIONS(3984), + [sym_false] = ACTIONS(3984), + [anon_sym_NULL] = ACTIONS(3986), + [anon_sym_nullptr] = ACTIONS(3986), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2973), - [anon_sym_R_DQUOTE] = ACTIONS(2975), - [anon_sym_LR_DQUOTE] = ACTIONS(2975), - [anon_sym_uR_DQUOTE] = ACTIONS(2975), - [anon_sym_UR_DQUOTE] = ACTIONS(2975), - [anon_sym_u8R_DQUOTE] = ACTIONS(2975), - [anon_sym_co_await] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2979), - [anon_sym_requires] = ACTIONS(2981), - [sym_this] = ACTIONS(2969), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2983), - [sym_semgrep_named_ellipsis] = ACTIONS(2985), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3988), + [anon_sym_R_DQUOTE] = ACTIONS(3990), + [anon_sym_LR_DQUOTE] = ACTIONS(3990), + [anon_sym_uR_DQUOTE] = ACTIONS(3990), + [anon_sym_UR_DQUOTE] = ACTIONS(3990), + [anon_sym_u8R_DQUOTE] = ACTIONS(3990), + [anon_sym_co_await] = ACTIONS(3992), + [anon_sym_new] = ACTIONS(3994), + [anon_sym_requires] = ACTIONS(3996), + [sym_this] = ACTIONS(3984), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3998), + [sym_semgrep_named_ellipsis] = ACTIONS(4000), }, - [1503] = { - [sym_expression] = STATE(5750), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9595), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [sym_identifier] = ACTIONS(4059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4063), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), + [1551] = { + [sym_expression] = STATE(4839), + [sym_expression_not_binary] = STATE(5098), + [sym_conditional_expression] = STATE(5096), + [sym_assignment_expression] = STATE(5096), + [sym_pointer_expression] = STATE(3493), + [sym_unary_expression] = STATE(5096), + [sym_binary_expression] = STATE(5098), + [sym_update_expression] = STATE(5096), + [sym_cast_expression] = STATE(5096), + [sym_sizeof_expression] = STATE(5096), + [sym_alignof_expression] = STATE(5096), + [sym_offsetof_expression] = STATE(5096), + [sym_generic_expression] = STATE(5096), + [sym_subscript_expression] = STATE(3493), + [sym_call_expression] = STATE(3493), + [sym_gnu_asm_expression] = STATE(5096), + [sym_field_expression] = STATE(3493), + [sym_compound_literal_expression] = STATE(5096), + [sym_parenthesized_expression] = STATE(3493), + [sym_char_literal] = STATE(4944), + [sym_concatenated_string] = STATE(4944), + [sym_string_literal] = STATE(3577), + [sym_null] = STATE(5096), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9068), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5096), + [sym_raw_string_literal] = STATE(3577), + [sym_co_await_expression] = STATE(5096), + [sym_new_expression] = STATE(5096), + [sym_delete_expression] = STATE(5096), + [sym_requires_clause] = STATE(5096), + [sym_requires_expression] = STATE(5096), + [sym_lambda_expression] = STATE(5096), + [sym_lambda_capture_specifier] = STATE(6837), + [sym_fold_expression] = STATE(5096), + [sym_parameter_pack_expansion] = STATE(5096), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3493), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3493), + [sym_semgrep_ellipsis] = STATE(5098), + [sym_deep_ellipsis] = STATE(5098), + [sym_identifier] = ACTIONS(4980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4982), + [anon_sym_LPAREN2] = ACTIONS(5040), + [anon_sym_BANG] = ACTIONS(3960), + [anon_sym_TILDE] = ACTIONS(3960), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(3962), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3966), + [anon_sym_not] = ACTIONS(3958), + [anon_sym_compl] = ACTIONS(3958), + [anon_sym_DASH_DASH] = ACTIONS(4984), + [anon_sym_PLUS_PLUS] = ACTIONS(4984), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym___alignof__] = ACTIONS(3970), + [anon_sym___alignof] = ACTIONS(3970), + [anon_sym__alignof] = ACTIONS(3970), + [anon_sym_alignof] = ACTIONS(3970), + [anon_sym__Alignof] = ACTIONS(3970), + [anon_sym_offsetof] = ACTIONS(3972), + [anon_sym__Generic] = ACTIONS(3974), + [anon_sym_asm] = ACTIONS(3976), + [anon_sym___asm__] = ACTIONS(3976), + [sym_number_literal] = ACTIONS(3978), + [anon_sym_L_SQUOTE] = ACTIONS(3980), + [anon_sym_u_SQUOTE] = ACTIONS(3980), + [anon_sym_U_SQUOTE] = ACTIONS(3980), + [anon_sym_u8_SQUOTE] = ACTIONS(3980), + [anon_sym_SQUOTE] = ACTIONS(3980), + [anon_sym_L_DQUOTE] = ACTIONS(3982), + [anon_sym_u_DQUOTE] = ACTIONS(3982), + [anon_sym_U_DQUOTE] = ACTIONS(3982), + [anon_sym_u8_DQUOTE] = ACTIONS(3982), + [anon_sym_DQUOTE] = ACTIONS(3982), + [sym_true] = ACTIONS(3984), + [sym_false] = ACTIONS(3984), + [anon_sym_NULL] = ACTIONS(3986), + [anon_sym_nullptr] = ACTIONS(3986), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3988), + [anon_sym_R_DQUOTE] = ACTIONS(3990), + [anon_sym_LR_DQUOTE] = ACTIONS(3990), + [anon_sym_uR_DQUOTE] = ACTIONS(3990), + [anon_sym_UR_DQUOTE] = ACTIONS(3990), + [anon_sym_u8R_DQUOTE] = ACTIONS(3990), + [anon_sym_co_await] = ACTIONS(3992), + [anon_sym_new] = ACTIONS(3994), + [anon_sym_requires] = ACTIONS(3996), + [sym_this] = ACTIONS(3984), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3998), + [sym_semgrep_named_ellipsis] = ACTIONS(4000), }, - [1504] = { - [sym_expression] = STATE(5760), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9595), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [sym_identifier] = ACTIONS(4059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4063), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), + [1552] = { + [sym_expression] = STATE(4840), + [sym_expression_not_binary] = STATE(5098), + [sym_conditional_expression] = STATE(5096), + [sym_assignment_expression] = STATE(5096), + [sym_pointer_expression] = STATE(3493), + [sym_unary_expression] = STATE(5096), + [sym_binary_expression] = STATE(5098), + [sym_update_expression] = STATE(5096), + [sym_cast_expression] = STATE(5096), + [sym_sizeof_expression] = STATE(5096), + [sym_alignof_expression] = STATE(5096), + [sym_offsetof_expression] = STATE(5096), + [sym_generic_expression] = STATE(5096), + [sym_subscript_expression] = STATE(3493), + [sym_call_expression] = STATE(3493), + [sym_gnu_asm_expression] = STATE(5096), + [sym_field_expression] = STATE(3493), + [sym_compound_literal_expression] = STATE(5096), + [sym_parenthesized_expression] = STATE(3493), + [sym_char_literal] = STATE(4944), + [sym_concatenated_string] = STATE(4944), + [sym_string_literal] = STATE(3577), + [sym_null] = STATE(5096), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9068), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5096), + [sym_raw_string_literal] = STATE(3577), + [sym_co_await_expression] = STATE(5096), + [sym_new_expression] = STATE(5096), + [sym_delete_expression] = STATE(5096), + [sym_requires_clause] = STATE(5096), + [sym_requires_expression] = STATE(5096), + [sym_lambda_expression] = STATE(5096), + [sym_lambda_capture_specifier] = STATE(6837), + [sym_fold_expression] = STATE(5096), + [sym_parameter_pack_expansion] = STATE(5096), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3493), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3493), + [sym_semgrep_ellipsis] = STATE(5098), + [sym_deep_ellipsis] = STATE(5098), + [sym_identifier] = ACTIONS(4980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4982), + [anon_sym_LPAREN2] = ACTIONS(5040), + [anon_sym_BANG] = ACTIONS(3960), + [anon_sym_TILDE] = ACTIONS(3960), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(3962), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3966), + [anon_sym_not] = ACTIONS(3958), + [anon_sym_compl] = ACTIONS(3958), + [anon_sym_DASH_DASH] = ACTIONS(4984), + [anon_sym_PLUS_PLUS] = ACTIONS(4984), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym___alignof__] = ACTIONS(3970), + [anon_sym___alignof] = ACTIONS(3970), + [anon_sym__alignof] = ACTIONS(3970), + [anon_sym_alignof] = ACTIONS(3970), + [anon_sym__Alignof] = ACTIONS(3970), + [anon_sym_offsetof] = ACTIONS(3972), + [anon_sym__Generic] = ACTIONS(3974), + [anon_sym_asm] = ACTIONS(3976), + [anon_sym___asm__] = ACTIONS(3976), + [sym_number_literal] = ACTIONS(3978), + [anon_sym_L_SQUOTE] = ACTIONS(3980), + [anon_sym_u_SQUOTE] = ACTIONS(3980), + [anon_sym_U_SQUOTE] = ACTIONS(3980), + [anon_sym_u8_SQUOTE] = ACTIONS(3980), + [anon_sym_SQUOTE] = ACTIONS(3980), + [anon_sym_L_DQUOTE] = ACTIONS(3982), + [anon_sym_u_DQUOTE] = ACTIONS(3982), + [anon_sym_U_DQUOTE] = ACTIONS(3982), + [anon_sym_u8_DQUOTE] = ACTIONS(3982), + [anon_sym_DQUOTE] = ACTIONS(3982), + [sym_true] = ACTIONS(3984), + [sym_false] = ACTIONS(3984), + [anon_sym_NULL] = ACTIONS(3986), + [anon_sym_nullptr] = ACTIONS(3986), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3988), + [anon_sym_R_DQUOTE] = ACTIONS(3990), + [anon_sym_LR_DQUOTE] = ACTIONS(3990), + [anon_sym_uR_DQUOTE] = ACTIONS(3990), + [anon_sym_UR_DQUOTE] = ACTIONS(3990), + [anon_sym_u8R_DQUOTE] = ACTIONS(3990), + [anon_sym_co_await] = ACTIONS(3992), + [anon_sym_new] = ACTIONS(3994), + [anon_sym_requires] = ACTIONS(3996), + [sym_this] = ACTIONS(3984), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3998), + [sym_semgrep_named_ellipsis] = ACTIONS(4000), }, - [1505] = { - [sym_expression] = STATE(5763), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9595), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [sym_identifier] = ACTIONS(4059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5388), - [anon_sym_LPAREN2] = ACTIONS(5390), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4063), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), + [1553] = { + [sym_expression] = STATE(4841), + [sym_expression_not_binary] = STATE(5098), + [sym_conditional_expression] = STATE(5096), + [sym_assignment_expression] = STATE(5096), + [sym_pointer_expression] = STATE(3493), + [sym_unary_expression] = STATE(5096), + [sym_binary_expression] = STATE(5098), + [sym_update_expression] = STATE(5096), + [sym_cast_expression] = STATE(5096), + [sym_sizeof_expression] = STATE(5096), + [sym_alignof_expression] = STATE(5096), + [sym_offsetof_expression] = STATE(5096), + [sym_generic_expression] = STATE(5096), + [sym_subscript_expression] = STATE(3493), + [sym_call_expression] = STATE(3493), + [sym_gnu_asm_expression] = STATE(5096), + [sym_field_expression] = STATE(3493), + [sym_compound_literal_expression] = STATE(5096), + [sym_parenthesized_expression] = STATE(3493), + [sym_char_literal] = STATE(4944), + [sym_concatenated_string] = STATE(4944), + [sym_string_literal] = STATE(3577), + [sym_null] = STATE(5096), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9068), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5096), + [sym_raw_string_literal] = STATE(3577), + [sym_co_await_expression] = STATE(5096), + [sym_new_expression] = STATE(5096), + [sym_delete_expression] = STATE(5096), + [sym_requires_clause] = STATE(5096), + [sym_requires_expression] = STATE(5096), + [sym_lambda_expression] = STATE(5096), + [sym_lambda_capture_specifier] = STATE(6837), + [sym_fold_expression] = STATE(5096), + [sym_parameter_pack_expansion] = STATE(5096), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3493), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3493), + [sym_semgrep_ellipsis] = STATE(5098), + [sym_deep_ellipsis] = STATE(5098), + [sym_identifier] = ACTIONS(4980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4982), + [anon_sym_LPAREN2] = ACTIONS(5040), + [anon_sym_BANG] = ACTIONS(3960), + [anon_sym_TILDE] = ACTIONS(3960), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(3962), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3966), + [anon_sym_not] = ACTIONS(3958), + [anon_sym_compl] = ACTIONS(3958), + [anon_sym_DASH_DASH] = ACTIONS(4984), + [anon_sym_PLUS_PLUS] = ACTIONS(4984), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym___alignof__] = ACTIONS(3970), + [anon_sym___alignof] = ACTIONS(3970), + [anon_sym__alignof] = ACTIONS(3970), + [anon_sym_alignof] = ACTIONS(3970), + [anon_sym__Alignof] = ACTIONS(3970), + [anon_sym_offsetof] = ACTIONS(3972), + [anon_sym__Generic] = ACTIONS(3974), + [anon_sym_asm] = ACTIONS(3976), + [anon_sym___asm__] = ACTIONS(3976), + [sym_number_literal] = ACTIONS(3978), + [anon_sym_L_SQUOTE] = ACTIONS(3980), + [anon_sym_u_SQUOTE] = ACTIONS(3980), + [anon_sym_U_SQUOTE] = ACTIONS(3980), + [anon_sym_u8_SQUOTE] = ACTIONS(3980), + [anon_sym_SQUOTE] = ACTIONS(3980), + [anon_sym_L_DQUOTE] = ACTIONS(3982), + [anon_sym_u_DQUOTE] = ACTIONS(3982), + [anon_sym_U_DQUOTE] = ACTIONS(3982), + [anon_sym_u8_DQUOTE] = ACTIONS(3982), + [anon_sym_DQUOTE] = ACTIONS(3982), + [sym_true] = ACTIONS(3984), + [sym_false] = ACTIONS(3984), + [anon_sym_NULL] = ACTIONS(3986), + [anon_sym_nullptr] = ACTIONS(3986), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3988), + [anon_sym_R_DQUOTE] = ACTIONS(3990), + [anon_sym_LR_DQUOTE] = ACTIONS(3990), + [anon_sym_uR_DQUOTE] = ACTIONS(3990), + [anon_sym_UR_DQUOTE] = ACTIONS(3990), + [anon_sym_u8R_DQUOTE] = ACTIONS(3990), + [anon_sym_co_await] = ACTIONS(3992), + [anon_sym_new] = ACTIONS(3994), + [anon_sym_requires] = ACTIONS(3996), + [sym_this] = ACTIONS(3984), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3998), + [sym_semgrep_named_ellipsis] = ACTIONS(4000), }, - [1506] = { - [sym_expression] = STATE(3048), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3806), - [sym_concatenated_string] = STATE(3806), - [sym_string_literal] = STATE(2240), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(2240), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2652), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(5142), - [anon_sym_BANG] = ACTIONS(2656), - [anon_sym_TILDE] = ACTIONS(2656), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_PLUS] = ACTIONS(2654), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2654), - [anon_sym_compl] = ACTIONS(2654), - [anon_sym_DASH_DASH] = ACTIONS(5004), - [anon_sym_PLUS_PLUS] = ACTIONS(5004), - [anon_sym_sizeof] = ACTIONS(2660), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2662), - [anon_sym_L_SQUOTE] = ACTIONS(2664), - [anon_sym_u_SQUOTE] = ACTIONS(2664), - [anon_sym_U_SQUOTE] = ACTIONS(2664), - [anon_sym_u8_SQUOTE] = ACTIONS(2664), - [anon_sym_SQUOTE] = ACTIONS(2664), - [anon_sym_L_DQUOTE] = ACTIONS(2666), - [anon_sym_u_DQUOTE] = ACTIONS(2666), - [anon_sym_U_DQUOTE] = ACTIONS(2666), - [anon_sym_u8_DQUOTE] = ACTIONS(2666), - [anon_sym_DQUOTE] = ACTIONS(2666), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), + [1554] = { + [sym_expression] = STATE(4842), + [sym_expression_not_binary] = STATE(5098), + [sym_conditional_expression] = STATE(5096), + [sym_assignment_expression] = STATE(5096), + [sym_pointer_expression] = STATE(3493), + [sym_unary_expression] = STATE(5096), + [sym_binary_expression] = STATE(5098), + [sym_update_expression] = STATE(5096), + [sym_cast_expression] = STATE(5096), + [sym_sizeof_expression] = STATE(5096), + [sym_alignof_expression] = STATE(5096), + [sym_offsetof_expression] = STATE(5096), + [sym_generic_expression] = STATE(5096), + [sym_subscript_expression] = STATE(3493), + [sym_call_expression] = STATE(3493), + [sym_gnu_asm_expression] = STATE(5096), + [sym_field_expression] = STATE(3493), + [sym_compound_literal_expression] = STATE(5096), + [sym_parenthesized_expression] = STATE(3493), + [sym_char_literal] = STATE(4944), + [sym_concatenated_string] = STATE(4944), + [sym_string_literal] = STATE(3577), + [sym_null] = STATE(5096), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9068), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5096), + [sym_raw_string_literal] = STATE(3577), + [sym_co_await_expression] = STATE(5096), + [sym_new_expression] = STATE(5096), + [sym_delete_expression] = STATE(5096), + [sym_requires_clause] = STATE(5096), + [sym_requires_expression] = STATE(5096), + [sym_lambda_expression] = STATE(5096), + [sym_lambda_capture_specifier] = STATE(6837), + [sym_fold_expression] = STATE(5096), + [sym_parameter_pack_expansion] = STATE(5096), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3493), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3493), + [sym_semgrep_ellipsis] = STATE(5098), + [sym_deep_ellipsis] = STATE(5098), + [sym_identifier] = ACTIONS(4980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4982), + [anon_sym_LPAREN2] = ACTIONS(5040), + [anon_sym_BANG] = ACTIONS(3960), + [anon_sym_TILDE] = ACTIONS(3960), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(3962), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3966), + [anon_sym_not] = ACTIONS(3958), + [anon_sym_compl] = ACTIONS(3958), + [anon_sym_DASH_DASH] = ACTIONS(4984), + [anon_sym_PLUS_PLUS] = ACTIONS(4984), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym___alignof__] = ACTIONS(3970), + [anon_sym___alignof] = ACTIONS(3970), + [anon_sym__alignof] = ACTIONS(3970), + [anon_sym_alignof] = ACTIONS(3970), + [anon_sym__Alignof] = ACTIONS(3970), + [anon_sym_offsetof] = ACTIONS(3972), + [anon_sym__Generic] = ACTIONS(3974), + [anon_sym_asm] = ACTIONS(3976), + [anon_sym___asm__] = ACTIONS(3976), + [sym_number_literal] = ACTIONS(3978), + [anon_sym_L_SQUOTE] = ACTIONS(3980), + [anon_sym_u_SQUOTE] = ACTIONS(3980), + [anon_sym_U_SQUOTE] = ACTIONS(3980), + [anon_sym_u8_SQUOTE] = ACTIONS(3980), + [anon_sym_SQUOTE] = ACTIONS(3980), + [anon_sym_L_DQUOTE] = ACTIONS(3982), + [anon_sym_u_DQUOTE] = ACTIONS(3982), + [anon_sym_U_DQUOTE] = ACTIONS(3982), + [anon_sym_u8_DQUOTE] = ACTIONS(3982), + [anon_sym_DQUOTE] = ACTIONS(3982), + [sym_true] = ACTIONS(3984), + [sym_false] = ACTIONS(3984), + [anon_sym_NULL] = ACTIONS(3986), + [anon_sym_nullptr] = ACTIONS(3986), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2668), - [anon_sym_R_DQUOTE] = ACTIONS(2670), - [anon_sym_LR_DQUOTE] = ACTIONS(2670), - [anon_sym_uR_DQUOTE] = ACTIONS(2670), - [anon_sym_UR_DQUOTE] = ACTIONS(2670), - [anon_sym_u8R_DQUOTE] = ACTIONS(2670), - [anon_sym_co_await] = ACTIONS(2672), - [anon_sym_new] = ACTIONS(2674), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3988), + [anon_sym_R_DQUOTE] = ACTIONS(3990), + [anon_sym_LR_DQUOTE] = ACTIONS(3990), + [anon_sym_uR_DQUOTE] = ACTIONS(3990), + [anon_sym_UR_DQUOTE] = ACTIONS(3990), + [anon_sym_u8R_DQUOTE] = ACTIONS(3990), + [anon_sym_co_await] = ACTIONS(3992), + [anon_sym_new] = ACTIONS(3994), + [anon_sym_requires] = ACTIONS(3996), + [sym_this] = ACTIONS(3984), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3998), + [sym_semgrep_named_ellipsis] = ACTIONS(4000), }, - [1507] = { - [sym_expression] = STATE(3283), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), + [1555] = { + [sym_expression] = STATE(4843), + [sym_expression_not_binary] = STATE(5098), + [sym_conditional_expression] = STATE(5096), + [sym_assignment_expression] = STATE(5096), + [sym_pointer_expression] = STATE(3493), + [sym_unary_expression] = STATE(5096), + [sym_binary_expression] = STATE(5098), + [sym_update_expression] = STATE(5096), + [sym_cast_expression] = STATE(5096), + [sym_sizeof_expression] = STATE(5096), + [sym_alignof_expression] = STATE(5096), + [sym_offsetof_expression] = STATE(5096), + [sym_generic_expression] = STATE(5096), + [sym_subscript_expression] = STATE(3493), + [sym_call_expression] = STATE(3493), + [sym_gnu_asm_expression] = STATE(5096), + [sym_field_expression] = STATE(3493), + [sym_compound_literal_expression] = STATE(5096), + [sym_parenthesized_expression] = STATE(3493), + [sym_char_literal] = STATE(4944), + [sym_concatenated_string] = STATE(4944), + [sym_string_literal] = STATE(3577), + [sym_null] = STATE(5096), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9068), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5096), + [sym_raw_string_literal] = STATE(3577), + [sym_co_await_expression] = STATE(5096), + [sym_new_expression] = STATE(5096), + [sym_delete_expression] = STATE(5096), + [sym_requires_clause] = STATE(5096), + [sym_requires_expression] = STATE(5096), + [sym_lambda_expression] = STATE(5096), + [sym_lambda_capture_specifier] = STATE(6837), + [sym_fold_expression] = STATE(5096), + [sym_parameter_pack_expansion] = STATE(5096), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3493), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3493), + [sym_semgrep_ellipsis] = STATE(5098), + [sym_deep_ellipsis] = STATE(5098), + [sym_identifier] = ACTIONS(4980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4982), + [anon_sym_LPAREN2] = ACTIONS(5040), + [anon_sym_BANG] = ACTIONS(3960), + [anon_sym_TILDE] = ACTIONS(3960), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(3962), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3966), + [anon_sym_not] = ACTIONS(3958), + [anon_sym_compl] = ACTIONS(3958), + [anon_sym_DASH_DASH] = ACTIONS(4984), + [anon_sym_PLUS_PLUS] = ACTIONS(4984), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym___alignof__] = ACTIONS(3970), + [anon_sym___alignof] = ACTIONS(3970), + [anon_sym__alignof] = ACTIONS(3970), + [anon_sym_alignof] = ACTIONS(3970), + [anon_sym__Alignof] = ACTIONS(3970), + [anon_sym_offsetof] = ACTIONS(3972), + [anon_sym__Generic] = ACTIONS(3974), + [anon_sym_asm] = ACTIONS(3976), + [anon_sym___asm__] = ACTIONS(3976), + [sym_number_literal] = ACTIONS(3978), + [anon_sym_L_SQUOTE] = ACTIONS(3980), + [anon_sym_u_SQUOTE] = ACTIONS(3980), + [anon_sym_U_SQUOTE] = ACTIONS(3980), + [anon_sym_u8_SQUOTE] = ACTIONS(3980), + [anon_sym_SQUOTE] = ACTIONS(3980), + [anon_sym_L_DQUOTE] = ACTIONS(3982), + [anon_sym_u_DQUOTE] = ACTIONS(3982), + [anon_sym_U_DQUOTE] = ACTIONS(3982), + [anon_sym_u8_DQUOTE] = ACTIONS(3982), + [anon_sym_DQUOTE] = ACTIONS(3982), + [sym_true] = ACTIONS(3984), + [sym_false] = ACTIONS(3984), + [anon_sym_NULL] = ACTIONS(3986), + [anon_sym_nullptr] = ACTIONS(3986), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3988), + [anon_sym_R_DQUOTE] = ACTIONS(3990), + [anon_sym_LR_DQUOTE] = ACTIONS(3990), + [anon_sym_uR_DQUOTE] = ACTIONS(3990), + [anon_sym_UR_DQUOTE] = ACTIONS(3990), + [anon_sym_u8R_DQUOTE] = ACTIONS(3990), + [anon_sym_co_await] = ACTIONS(3992), + [anon_sym_new] = ACTIONS(3994), + [anon_sym_requires] = ACTIONS(3996), + [sym_this] = ACTIONS(3984), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3998), + [sym_semgrep_named_ellipsis] = ACTIONS(4000), }, - [1508] = { - [sym_expression] = STATE(6046), - [sym_expression_not_binary] = STATE(6169), - [sym_conditional_expression] = STATE(6267), - [sym_assignment_expression] = STATE(6267), - [sym_pointer_expression] = STATE(4422), - [sym_unary_expression] = STATE(6267), - [sym_binary_expression] = STATE(6169), - [sym_update_expression] = STATE(6267), - [sym_cast_expression] = STATE(6267), - [sym_sizeof_expression] = STATE(6267), - [sym_alignof_expression] = STATE(6267), - [sym_offsetof_expression] = STATE(6267), - [sym_generic_expression] = STATE(6267), - [sym_subscript_expression] = STATE(4422), - [sym_call_expression] = STATE(4422), - [sym_gnu_asm_expression] = STATE(6267), - [sym_field_expression] = STATE(4422), - [sym_compound_literal_expression] = STATE(6267), - [sym_parenthesized_expression] = STATE(4422), - [sym_char_literal] = STATE(6147), - [sym_concatenated_string] = STATE(6147), - [sym_string_literal] = STATE(4563), - [sym_null] = STATE(6267), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9242), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6267), - [sym_raw_string_literal] = STATE(4563), - [sym_co_await_expression] = STATE(6267), - [sym_new_expression] = STATE(6267), - [sym_delete_expression] = STATE(6267), - [sym_requires_clause] = STATE(6267), - [sym_requires_expression] = STATE(6267), - [sym_lambda_expression] = STATE(6267), - [sym_lambda_capture_specifier] = STATE(7263), - [sym_fold_expression] = STATE(6267), - [sym_parameter_pack_expansion] = STATE(6267), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4422), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4422), - [sym_semgrep_ellipsis] = STATE(6169), - [sym_deep_ellipsis] = STATE(6169), - [sym_identifier] = ACTIONS(4112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5054), - [anon_sym_LPAREN2] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_TILDE] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(5392), - [sym_primitive_type] = ACTIONS(4122), - [anon_sym_not] = ACTIONS(4114), - [anon_sym_compl] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(5056), - [anon_sym_PLUS_PLUS] = ACTIONS(5056), - [anon_sym_sizeof] = ACTIONS(4124), - [anon_sym___alignof__] = ACTIONS(4126), - [anon_sym___alignof] = ACTIONS(4126), - [anon_sym__alignof] = ACTIONS(4126), - [anon_sym_alignof] = ACTIONS(4126), - [anon_sym__Alignof] = ACTIONS(4126), - [anon_sym_offsetof] = ACTIONS(4128), - [anon_sym__Generic] = ACTIONS(4130), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4136), - [anon_sym_u_SQUOTE] = ACTIONS(4136), - [anon_sym_U_SQUOTE] = ACTIONS(4136), - [anon_sym_u8_SQUOTE] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_L_DQUOTE] = ACTIONS(4138), - [anon_sym_u_DQUOTE] = ACTIONS(4138), - [anon_sym_U_DQUOTE] = ACTIONS(4138), - [anon_sym_u8_DQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [anon_sym_NULL] = ACTIONS(4142), - [anon_sym_nullptr] = ACTIONS(4142), + [1556] = { + [sym_expression] = STATE(4844), + [sym_expression_not_binary] = STATE(5098), + [sym_conditional_expression] = STATE(5096), + [sym_assignment_expression] = STATE(5096), + [sym_pointer_expression] = STATE(3493), + [sym_unary_expression] = STATE(5096), + [sym_binary_expression] = STATE(5098), + [sym_update_expression] = STATE(5096), + [sym_cast_expression] = STATE(5096), + [sym_sizeof_expression] = STATE(5096), + [sym_alignof_expression] = STATE(5096), + [sym_offsetof_expression] = STATE(5096), + [sym_generic_expression] = STATE(5096), + [sym_subscript_expression] = STATE(3493), + [sym_call_expression] = STATE(3493), + [sym_gnu_asm_expression] = STATE(5096), + [sym_field_expression] = STATE(3493), + [sym_compound_literal_expression] = STATE(5096), + [sym_parenthesized_expression] = STATE(3493), + [sym_char_literal] = STATE(4944), + [sym_concatenated_string] = STATE(4944), + [sym_string_literal] = STATE(3577), + [sym_null] = STATE(5096), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9068), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5096), + [sym_raw_string_literal] = STATE(3577), + [sym_co_await_expression] = STATE(5096), + [sym_new_expression] = STATE(5096), + [sym_delete_expression] = STATE(5096), + [sym_requires_clause] = STATE(5096), + [sym_requires_expression] = STATE(5096), + [sym_lambda_expression] = STATE(5096), + [sym_lambda_capture_specifier] = STATE(6837), + [sym_fold_expression] = STATE(5096), + [sym_parameter_pack_expansion] = STATE(5096), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3493), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3493), + [sym_semgrep_ellipsis] = STATE(5098), + [sym_deep_ellipsis] = STATE(5098), + [sym_identifier] = ACTIONS(4980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4982), + [anon_sym_LPAREN2] = ACTIONS(5040), + [anon_sym_BANG] = ACTIONS(3960), + [anon_sym_TILDE] = ACTIONS(3960), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(3962), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3966), + [anon_sym_not] = ACTIONS(3958), + [anon_sym_compl] = ACTIONS(3958), + [anon_sym_DASH_DASH] = ACTIONS(4984), + [anon_sym_PLUS_PLUS] = ACTIONS(4984), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym___alignof__] = ACTIONS(3970), + [anon_sym___alignof] = ACTIONS(3970), + [anon_sym__alignof] = ACTIONS(3970), + [anon_sym_alignof] = ACTIONS(3970), + [anon_sym__Alignof] = ACTIONS(3970), + [anon_sym_offsetof] = ACTIONS(3972), + [anon_sym__Generic] = ACTIONS(3974), + [anon_sym_asm] = ACTIONS(3976), + [anon_sym___asm__] = ACTIONS(3976), + [sym_number_literal] = ACTIONS(3978), + [anon_sym_L_SQUOTE] = ACTIONS(3980), + [anon_sym_u_SQUOTE] = ACTIONS(3980), + [anon_sym_U_SQUOTE] = ACTIONS(3980), + [anon_sym_u8_SQUOTE] = ACTIONS(3980), + [anon_sym_SQUOTE] = ACTIONS(3980), + [anon_sym_L_DQUOTE] = ACTIONS(3982), + [anon_sym_u_DQUOTE] = ACTIONS(3982), + [anon_sym_U_DQUOTE] = ACTIONS(3982), + [anon_sym_u8_DQUOTE] = ACTIONS(3982), + [anon_sym_DQUOTE] = ACTIONS(3982), + [sym_true] = ACTIONS(3984), + [sym_false] = ACTIONS(3984), + [anon_sym_NULL] = ACTIONS(3986), + [anon_sym_nullptr] = ACTIONS(3986), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4150), - [anon_sym_requires] = ACTIONS(4152), - [sym_this] = ACTIONS(4140), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4154), - [sym_semgrep_named_ellipsis] = ACTIONS(4156), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3988), + [anon_sym_R_DQUOTE] = ACTIONS(3990), + [anon_sym_LR_DQUOTE] = ACTIONS(3990), + [anon_sym_uR_DQUOTE] = ACTIONS(3990), + [anon_sym_UR_DQUOTE] = ACTIONS(3990), + [anon_sym_u8R_DQUOTE] = ACTIONS(3990), + [anon_sym_co_await] = ACTIONS(3992), + [anon_sym_new] = ACTIONS(3994), + [anon_sym_requires] = ACTIONS(3996), + [sym_this] = ACTIONS(3984), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3998), + [sym_semgrep_named_ellipsis] = ACTIONS(4000), }, - [1509] = { - [sym_expression] = STATE(6048), - [sym_expression_not_binary] = STATE(6169), - [sym_conditional_expression] = STATE(6267), - [sym_assignment_expression] = STATE(6267), - [sym_pointer_expression] = STATE(4422), - [sym_unary_expression] = STATE(6267), - [sym_binary_expression] = STATE(6169), - [sym_update_expression] = STATE(6267), - [sym_cast_expression] = STATE(6267), - [sym_sizeof_expression] = STATE(6267), - [sym_alignof_expression] = STATE(6267), - [sym_offsetof_expression] = STATE(6267), - [sym_generic_expression] = STATE(6267), - [sym_subscript_expression] = STATE(4422), - [sym_call_expression] = STATE(4422), - [sym_gnu_asm_expression] = STATE(6267), - [sym_field_expression] = STATE(4422), - [sym_compound_literal_expression] = STATE(6267), - [sym_parenthesized_expression] = STATE(4422), - [sym_char_literal] = STATE(6147), - [sym_concatenated_string] = STATE(6147), - [sym_string_literal] = STATE(4563), - [sym_null] = STATE(6267), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9242), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6267), - [sym_raw_string_literal] = STATE(4563), - [sym_co_await_expression] = STATE(6267), - [sym_new_expression] = STATE(6267), - [sym_delete_expression] = STATE(6267), - [sym_requires_clause] = STATE(6267), - [sym_requires_expression] = STATE(6267), - [sym_lambda_expression] = STATE(6267), - [sym_lambda_capture_specifier] = STATE(7263), - [sym_fold_expression] = STATE(6267), - [sym_parameter_pack_expansion] = STATE(6267), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4422), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4422), - [sym_semgrep_ellipsis] = STATE(6169), - [sym_deep_ellipsis] = STATE(6169), - [sym_identifier] = ACTIONS(4112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5054), - [anon_sym_LPAREN2] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_TILDE] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4122), - [anon_sym_not] = ACTIONS(4114), - [anon_sym_compl] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(5056), - [anon_sym_PLUS_PLUS] = ACTIONS(5056), - [anon_sym_sizeof] = ACTIONS(4124), - [anon_sym___alignof__] = ACTIONS(4126), - [anon_sym___alignof] = ACTIONS(4126), - [anon_sym__alignof] = ACTIONS(4126), - [anon_sym_alignof] = ACTIONS(4126), - [anon_sym__Alignof] = ACTIONS(4126), - [anon_sym_offsetof] = ACTIONS(4128), - [anon_sym__Generic] = ACTIONS(4130), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4136), - [anon_sym_u_SQUOTE] = ACTIONS(4136), - [anon_sym_U_SQUOTE] = ACTIONS(4136), - [anon_sym_u8_SQUOTE] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_L_DQUOTE] = ACTIONS(4138), - [anon_sym_u_DQUOTE] = ACTIONS(4138), - [anon_sym_U_DQUOTE] = ACTIONS(4138), - [anon_sym_u8_DQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [anon_sym_NULL] = ACTIONS(4142), - [anon_sym_nullptr] = ACTIONS(4142), + [1557] = { + [sym_expression] = STATE(4845), + [sym_expression_not_binary] = STATE(5098), + [sym_conditional_expression] = STATE(5096), + [sym_assignment_expression] = STATE(5096), + [sym_pointer_expression] = STATE(3493), + [sym_unary_expression] = STATE(5096), + [sym_binary_expression] = STATE(5098), + [sym_update_expression] = STATE(5096), + [sym_cast_expression] = STATE(5096), + [sym_sizeof_expression] = STATE(5096), + [sym_alignof_expression] = STATE(5096), + [sym_offsetof_expression] = STATE(5096), + [sym_generic_expression] = STATE(5096), + [sym_subscript_expression] = STATE(3493), + [sym_call_expression] = STATE(3493), + [sym_gnu_asm_expression] = STATE(5096), + [sym_field_expression] = STATE(3493), + [sym_compound_literal_expression] = STATE(5096), + [sym_parenthesized_expression] = STATE(3493), + [sym_char_literal] = STATE(4944), + [sym_concatenated_string] = STATE(4944), + [sym_string_literal] = STATE(3577), + [sym_null] = STATE(5096), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9068), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5096), + [sym_raw_string_literal] = STATE(3577), + [sym_co_await_expression] = STATE(5096), + [sym_new_expression] = STATE(5096), + [sym_delete_expression] = STATE(5096), + [sym_requires_clause] = STATE(5096), + [sym_requires_expression] = STATE(5096), + [sym_lambda_expression] = STATE(5096), + [sym_lambda_capture_specifier] = STATE(6837), + [sym_fold_expression] = STATE(5096), + [sym_parameter_pack_expansion] = STATE(5096), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3493), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3493), + [sym_semgrep_ellipsis] = STATE(5098), + [sym_deep_ellipsis] = STATE(5098), + [sym_identifier] = ACTIONS(4980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4982), + [anon_sym_LPAREN2] = ACTIONS(5040), + [anon_sym_BANG] = ACTIONS(3960), + [anon_sym_TILDE] = ACTIONS(3960), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(3962), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3966), + [anon_sym_not] = ACTIONS(3958), + [anon_sym_compl] = ACTIONS(3958), + [anon_sym_DASH_DASH] = ACTIONS(4984), + [anon_sym_PLUS_PLUS] = ACTIONS(4984), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym___alignof__] = ACTIONS(3970), + [anon_sym___alignof] = ACTIONS(3970), + [anon_sym__alignof] = ACTIONS(3970), + [anon_sym_alignof] = ACTIONS(3970), + [anon_sym__Alignof] = ACTIONS(3970), + [anon_sym_offsetof] = ACTIONS(3972), + [anon_sym__Generic] = ACTIONS(3974), + [anon_sym_asm] = ACTIONS(3976), + [anon_sym___asm__] = ACTIONS(3976), + [sym_number_literal] = ACTIONS(3978), + [anon_sym_L_SQUOTE] = ACTIONS(3980), + [anon_sym_u_SQUOTE] = ACTIONS(3980), + [anon_sym_U_SQUOTE] = ACTIONS(3980), + [anon_sym_u8_SQUOTE] = ACTIONS(3980), + [anon_sym_SQUOTE] = ACTIONS(3980), + [anon_sym_L_DQUOTE] = ACTIONS(3982), + [anon_sym_u_DQUOTE] = ACTIONS(3982), + [anon_sym_U_DQUOTE] = ACTIONS(3982), + [anon_sym_u8_DQUOTE] = ACTIONS(3982), + [anon_sym_DQUOTE] = ACTIONS(3982), + [sym_true] = ACTIONS(3984), + [sym_false] = ACTIONS(3984), + [anon_sym_NULL] = ACTIONS(3986), + [anon_sym_nullptr] = ACTIONS(3986), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4150), - [anon_sym_requires] = ACTIONS(4152), - [sym_this] = ACTIONS(4140), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4154), - [sym_semgrep_named_ellipsis] = ACTIONS(4156), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3988), + [anon_sym_R_DQUOTE] = ACTIONS(3990), + [anon_sym_LR_DQUOTE] = ACTIONS(3990), + [anon_sym_uR_DQUOTE] = ACTIONS(3990), + [anon_sym_UR_DQUOTE] = ACTIONS(3990), + [anon_sym_u8R_DQUOTE] = ACTIONS(3990), + [anon_sym_co_await] = ACTIONS(3992), + [anon_sym_new] = ACTIONS(3994), + [anon_sym_requires] = ACTIONS(3996), + [sym_this] = ACTIONS(3984), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3998), + [sym_semgrep_named_ellipsis] = ACTIONS(4000), }, - [1510] = { - [sym_expression] = STATE(6058), - [sym_expression_not_binary] = STATE(6169), - [sym_conditional_expression] = STATE(6267), - [sym_assignment_expression] = STATE(6267), - [sym_pointer_expression] = STATE(4422), - [sym_unary_expression] = STATE(6267), - [sym_binary_expression] = STATE(6169), - [sym_update_expression] = STATE(6267), - [sym_cast_expression] = STATE(6267), - [sym_sizeof_expression] = STATE(6267), - [sym_alignof_expression] = STATE(6267), - [sym_offsetof_expression] = STATE(6267), - [sym_generic_expression] = STATE(6267), - [sym_subscript_expression] = STATE(4422), - [sym_call_expression] = STATE(4422), - [sym_gnu_asm_expression] = STATE(6267), - [sym_field_expression] = STATE(4422), - [sym_compound_literal_expression] = STATE(6267), - [sym_parenthesized_expression] = STATE(4422), - [sym_char_literal] = STATE(6147), - [sym_concatenated_string] = STATE(6147), - [sym_string_literal] = STATE(4563), - [sym_null] = STATE(6267), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9242), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6267), - [sym_raw_string_literal] = STATE(4563), - [sym_co_await_expression] = STATE(6267), - [sym_new_expression] = STATE(6267), - [sym_delete_expression] = STATE(6267), - [sym_requires_clause] = STATE(6267), - [sym_requires_expression] = STATE(6267), - [sym_lambda_expression] = STATE(6267), - [sym_lambda_capture_specifier] = STATE(7263), - [sym_fold_expression] = STATE(6267), - [sym_parameter_pack_expansion] = STATE(6267), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4422), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4422), - [sym_semgrep_ellipsis] = STATE(6169), - [sym_deep_ellipsis] = STATE(6169), - [sym_identifier] = ACTIONS(4112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5054), - [anon_sym_LPAREN2] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_TILDE] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(5394), - [sym_primitive_type] = ACTIONS(4122), - [anon_sym_not] = ACTIONS(4114), - [anon_sym_compl] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(5056), - [anon_sym_PLUS_PLUS] = ACTIONS(5056), - [anon_sym_sizeof] = ACTIONS(4124), - [anon_sym___alignof__] = ACTIONS(4126), - [anon_sym___alignof] = ACTIONS(4126), - [anon_sym__alignof] = ACTIONS(4126), - [anon_sym_alignof] = ACTIONS(4126), - [anon_sym__Alignof] = ACTIONS(4126), - [anon_sym_offsetof] = ACTIONS(4128), - [anon_sym__Generic] = ACTIONS(4130), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4136), - [anon_sym_u_SQUOTE] = ACTIONS(4136), - [anon_sym_U_SQUOTE] = ACTIONS(4136), - [anon_sym_u8_SQUOTE] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_L_DQUOTE] = ACTIONS(4138), - [anon_sym_u_DQUOTE] = ACTIONS(4138), - [anon_sym_U_DQUOTE] = ACTIONS(4138), - [anon_sym_u8_DQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [anon_sym_NULL] = ACTIONS(4142), - [anon_sym_nullptr] = ACTIONS(4142), + [1558] = { + [sym_expression] = STATE(4906), + [sym_expression_not_binary] = STATE(5098), + [sym_conditional_expression] = STATE(5096), + [sym_assignment_expression] = STATE(5096), + [sym_pointer_expression] = STATE(3493), + [sym_unary_expression] = STATE(5096), + [sym_binary_expression] = STATE(5098), + [sym_update_expression] = STATE(5096), + [sym_cast_expression] = STATE(5096), + [sym_sizeof_expression] = STATE(5096), + [sym_alignof_expression] = STATE(5096), + [sym_offsetof_expression] = STATE(5096), + [sym_generic_expression] = STATE(5096), + [sym_subscript_expression] = STATE(3493), + [sym_call_expression] = STATE(3493), + [sym_gnu_asm_expression] = STATE(5096), + [sym_field_expression] = STATE(3493), + [sym_compound_literal_expression] = STATE(5096), + [sym_parenthesized_expression] = STATE(3493), + [sym_char_literal] = STATE(4944), + [sym_concatenated_string] = STATE(4944), + [sym_string_literal] = STATE(3577), + [sym_null] = STATE(5096), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9068), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5096), + [sym_raw_string_literal] = STATE(3577), + [sym_co_await_expression] = STATE(5096), + [sym_new_expression] = STATE(5096), + [sym_delete_expression] = STATE(5096), + [sym_requires_clause] = STATE(5096), + [sym_requires_expression] = STATE(5096), + [sym_lambda_expression] = STATE(5096), + [sym_lambda_capture_specifier] = STATE(6837), + [sym_fold_expression] = STATE(5096), + [sym_parameter_pack_expansion] = STATE(5096), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3493), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3493), + [sym_semgrep_ellipsis] = STATE(5098), + [sym_deep_ellipsis] = STATE(5098), + [sym_identifier] = ACTIONS(4980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4982), + [anon_sym_LPAREN2] = ACTIONS(5040), + [anon_sym_BANG] = ACTIONS(3960), + [anon_sym_TILDE] = ACTIONS(3960), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(3962), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3966), + [anon_sym_not] = ACTIONS(3958), + [anon_sym_compl] = ACTIONS(3958), + [anon_sym_DASH_DASH] = ACTIONS(4984), + [anon_sym_PLUS_PLUS] = ACTIONS(4984), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym___alignof__] = ACTIONS(3970), + [anon_sym___alignof] = ACTIONS(3970), + [anon_sym__alignof] = ACTIONS(3970), + [anon_sym_alignof] = ACTIONS(3970), + [anon_sym__Alignof] = ACTIONS(3970), + [anon_sym_offsetof] = ACTIONS(3972), + [anon_sym__Generic] = ACTIONS(3974), + [anon_sym_asm] = ACTIONS(3976), + [anon_sym___asm__] = ACTIONS(3976), + [sym_number_literal] = ACTIONS(3978), + [anon_sym_L_SQUOTE] = ACTIONS(3980), + [anon_sym_u_SQUOTE] = ACTIONS(3980), + [anon_sym_U_SQUOTE] = ACTIONS(3980), + [anon_sym_u8_SQUOTE] = ACTIONS(3980), + [anon_sym_SQUOTE] = ACTIONS(3980), + [anon_sym_L_DQUOTE] = ACTIONS(3982), + [anon_sym_u_DQUOTE] = ACTIONS(3982), + [anon_sym_U_DQUOTE] = ACTIONS(3982), + [anon_sym_u8_DQUOTE] = ACTIONS(3982), + [anon_sym_DQUOTE] = ACTIONS(3982), + [sym_true] = ACTIONS(3984), + [sym_false] = ACTIONS(3984), + [anon_sym_NULL] = ACTIONS(3986), + [anon_sym_nullptr] = ACTIONS(3986), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4150), - [anon_sym_requires] = ACTIONS(4152), - [sym_this] = ACTIONS(4140), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4154), - [sym_semgrep_named_ellipsis] = ACTIONS(4156), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3988), + [anon_sym_R_DQUOTE] = ACTIONS(3990), + [anon_sym_LR_DQUOTE] = ACTIONS(3990), + [anon_sym_uR_DQUOTE] = ACTIONS(3990), + [anon_sym_UR_DQUOTE] = ACTIONS(3990), + [anon_sym_u8R_DQUOTE] = ACTIONS(3990), + [anon_sym_co_await] = ACTIONS(3992), + [anon_sym_new] = ACTIONS(3994), + [anon_sym_requires] = ACTIONS(3996), + [sym_this] = ACTIONS(3984), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3998), + [sym_semgrep_named_ellipsis] = ACTIONS(4000), }, - [1511] = { - [sym_expression] = STATE(3740), - [sym_expression_not_binary] = STATE(4050), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9276), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [sym_identifier] = ACTIONS(2854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2858), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), + [1559] = { + [sym_expression] = STATE(3578), + [sym_expression_not_binary] = STATE(3960), + [sym_conditional_expression] = STATE(3950), + [sym_assignment_expression] = STATE(3950), + [sym_pointer_expression] = STATE(3961), + [sym_unary_expression] = STATE(3950), + [sym_binary_expression] = STATE(3960), + [sym_update_expression] = STATE(3950), + [sym_cast_expression] = STATE(3950), + [sym_sizeof_expression] = STATE(3950), + [sym_alignof_expression] = STATE(3950), + [sym_offsetof_expression] = STATE(3950), + [sym_generic_expression] = STATE(3950), + [sym_subscript_expression] = STATE(3961), + [sym_call_expression] = STATE(3961), + [sym_gnu_asm_expression] = STATE(3950), + [sym_field_expression] = STATE(3961), + [sym_compound_literal_expression] = STATE(3950), + [sym_parenthesized_expression] = STATE(3961), + [sym_char_literal] = STATE(3756), + [sym_concatenated_string] = STATE(3756), + [sym_string_literal] = STATE(2508), + [sym_null] = STATE(3950), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8975), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3950), + [sym_raw_string_literal] = STATE(2508), + [sym_co_await_expression] = STATE(3950), + [sym_new_expression] = STATE(3950), + [sym_delete_expression] = STATE(3950), + [sym_requires_clause] = STATE(3950), + [sym_requires_expression] = STATE(3950), + [sym_lambda_expression] = STATE(3950), + [sym_lambda_capture_specifier] = STATE(6902), + [sym_fold_expression] = STATE(3950), + [sym_parameter_pack_expansion] = STATE(3950), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(3961), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3961), + [sym_semgrep_ellipsis] = STATE(3960), + [sym_deep_ellipsis] = STATE(3960), + [sym_identifier] = ACTIONS(2923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4882), + [anon_sym_LPAREN2] = ACTIONS(5074), + [anon_sym_BANG] = ACTIONS(2927), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2933), + [anon_sym_not] = ACTIONS(2925), + [anon_sym_compl] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(4888), + [anon_sym_PLUS_PLUS] = ACTIONS(4888), + [anon_sym_sizeof] = ACTIONS(2935), + [anon_sym___alignof__] = ACTIONS(2937), + [anon_sym___alignof] = ACTIONS(2937), + [anon_sym__alignof] = ACTIONS(2937), + [anon_sym_alignof] = ACTIONS(2937), + [anon_sym__Alignof] = ACTIONS(2937), + [anon_sym_offsetof] = ACTIONS(2939), + [anon_sym__Generic] = ACTIONS(2941), + [anon_sym_asm] = ACTIONS(2943), + [anon_sym___asm__] = ACTIONS(2943), + [sym_number_literal] = ACTIONS(2945), + [anon_sym_L_SQUOTE] = ACTIONS(2947), + [anon_sym_u_SQUOTE] = ACTIONS(2947), + [anon_sym_U_SQUOTE] = ACTIONS(2947), + [anon_sym_u8_SQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2947), + [anon_sym_L_DQUOTE] = ACTIONS(2949), + [anon_sym_u_DQUOTE] = ACTIONS(2949), + [anon_sym_U_DQUOTE] = ACTIONS(2949), + [anon_sym_u8_DQUOTE] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2949), + [sym_true] = ACTIONS(2951), + [sym_false] = ACTIONS(2951), + [anon_sym_NULL] = ACTIONS(2953), + [anon_sym_nullptr] = ACTIONS(2953), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2955), + [anon_sym_R_DQUOTE] = ACTIONS(2957), + [anon_sym_LR_DQUOTE] = ACTIONS(2957), + [anon_sym_uR_DQUOTE] = ACTIONS(2957), + [anon_sym_UR_DQUOTE] = ACTIONS(2957), + [anon_sym_u8R_DQUOTE] = ACTIONS(2957), + [anon_sym_co_await] = ACTIONS(2959), + [anon_sym_new] = ACTIONS(2961), + [anon_sym_requires] = ACTIONS(2963), + [sym_this] = ACTIONS(2951), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2965), + [sym_semgrep_named_ellipsis] = ACTIONS(2967), }, - [1512] = { - [sym_expression] = STATE(5292), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1560] = { + [sym_expression] = STATE(3596), + [sym_expression_not_binary] = STATE(3960), + [sym_conditional_expression] = STATE(3950), + [sym_assignment_expression] = STATE(3950), + [sym_pointer_expression] = STATE(3961), + [sym_unary_expression] = STATE(3950), + [sym_binary_expression] = STATE(3960), + [sym_update_expression] = STATE(3950), + [sym_cast_expression] = STATE(3950), + [sym_sizeof_expression] = STATE(3950), + [sym_alignof_expression] = STATE(3950), + [sym_offsetof_expression] = STATE(3950), + [sym_generic_expression] = STATE(3950), + [sym_subscript_expression] = STATE(3961), + [sym_call_expression] = STATE(3961), + [sym_gnu_asm_expression] = STATE(3950), + [sym_field_expression] = STATE(3961), + [sym_compound_literal_expression] = STATE(3950), + [sym_parenthesized_expression] = STATE(3961), + [sym_char_literal] = STATE(3756), + [sym_concatenated_string] = STATE(3756), + [sym_string_literal] = STATE(2508), + [sym_null] = STATE(3950), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8975), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3950), + [sym_raw_string_literal] = STATE(2508), + [sym_co_await_expression] = STATE(3950), + [sym_new_expression] = STATE(3950), + [sym_delete_expression] = STATE(3950), + [sym_requires_clause] = STATE(3950), + [sym_requires_expression] = STATE(3950), + [sym_lambda_expression] = STATE(3950), + [sym_lambda_capture_specifier] = STATE(6902), + [sym_fold_expression] = STATE(3950), + [sym_parameter_pack_expansion] = STATE(3950), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(3961), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3961), + [sym_semgrep_ellipsis] = STATE(3960), + [sym_deep_ellipsis] = STATE(3960), + [sym_identifier] = ACTIONS(2923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4882), + [anon_sym_LPAREN2] = ACTIONS(5074), + [anon_sym_BANG] = ACTIONS(2927), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2933), + [anon_sym_not] = ACTIONS(2925), + [anon_sym_compl] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(4888), + [anon_sym_PLUS_PLUS] = ACTIONS(4888), + [anon_sym_sizeof] = ACTIONS(2935), + [anon_sym___alignof__] = ACTIONS(2937), + [anon_sym___alignof] = ACTIONS(2937), + [anon_sym__alignof] = ACTIONS(2937), + [anon_sym_alignof] = ACTIONS(2937), + [anon_sym__Alignof] = ACTIONS(2937), + [anon_sym_offsetof] = ACTIONS(2939), + [anon_sym__Generic] = ACTIONS(2941), + [anon_sym_asm] = ACTIONS(2943), + [anon_sym___asm__] = ACTIONS(2943), + [sym_number_literal] = ACTIONS(2945), + [anon_sym_L_SQUOTE] = ACTIONS(2947), + [anon_sym_u_SQUOTE] = ACTIONS(2947), + [anon_sym_U_SQUOTE] = ACTIONS(2947), + [anon_sym_u8_SQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2947), + [anon_sym_L_DQUOTE] = ACTIONS(2949), + [anon_sym_u_DQUOTE] = ACTIONS(2949), + [anon_sym_U_DQUOTE] = ACTIONS(2949), + [anon_sym_u8_DQUOTE] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2949), + [sym_true] = ACTIONS(2951), + [sym_false] = ACTIONS(2951), + [anon_sym_NULL] = ACTIONS(2953), + [anon_sym_nullptr] = ACTIONS(2953), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2955), + [anon_sym_R_DQUOTE] = ACTIONS(2957), + [anon_sym_LR_DQUOTE] = ACTIONS(2957), + [anon_sym_uR_DQUOTE] = ACTIONS(2957), + [anon_sym_UR_DQUOTE] = ACTIONS(2957), + [anon_sym_u8R_DQUOTE] = ACTIONS(2957), + [anon_sym_co_await] = ACTIONS(2959), + [anon_sym_new] = ACTIONS(2961), + [anon_sym_requires] = ACTIONS(2963), + [sym_this] = ACTIONS(2951), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2965), + [sym_semgrep_named_ellipsis] = ACTIONS(2967), + }, + [1561] = { + [sym_expression] = STATE(3602), + [sym_expression_not_binary] = STATE(3960), + [sym_conditional_expression] = STATE(3950), + [sym_assignment_expression] = STATE(3950), + [sym_pointer_expression] = STATE(3961), + [sym_unary_expression] = STATE(3950), + [sym_binary_expression] = STATE(3960), + [sym_update_expression] = STATE(3950), + [sym_cast_expression] = STATE(3950), + [sym_sizeof_expression] = STATE(3950), + [sym_alignof_expression] = STATE(3950), + [sym_offsetof_expression] = STATE(3950), + [sym_generic_expression] = STATE(3950), + [sym_subscript_expression] = STATE(3961), + [sym_call_expression] = STATE(3961), + [sym_gnu_asm_expression] = STATE(3950), + [sym_field_expression] = STATE(3961), + [sym_compound_literal_expression] = STATE(3950), + [sym_parenthesized_expression] = STATE(3961), + [sym_char_literal] = STATE(3756), + [sym_concatenated_string] = STATE(3756), + [sym_string_literal] = STATE(2508), + [sym_null] = STATE(3950), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8975), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3950), + [sym_raw_string_literal] = STATE(2508), + [sym_co_await_expression] = STATE(3950), + [sym_new_expression] = STATE(3950), + [sym_delete_expression] = STATE(3950), + [sym_requires_clause] = STATE(3950), + [sym_requires_expression] = STATE(3950), + [sym_lambda_expression] = STATE(3950), + [sym_lambda_capture_specifier] = STATE(6902), + [sym_fold_expression] = STATE(3950), + [sym_parameter_pack_expansion] = STATE(3950), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(3961), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3961), + [sym_semgrep_ellipsis] = STATE(3960), + [sym_deep_ellipsis] = STATE(3960), + [sym_identifier] = ACTIONS(2923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5324), + [anon_sym_LPAREN2] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(2927), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2933), + [anon_sym_not] = ACTIONS(2925), + [anon_sym_compl] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(4888), + [anon_sym_PLUS_PLUS] = ACTIONS(4888), + [anon_sym_sizeof] = ACTIONS(2935), + [anon_sym___alignof__] = ACTIONS(2937), + [anon_sym___alignof] = ACTIONS(2937), + [anon_sym__alignof] = ACTIONS(2937), + [anon_sym_alignof] = ACTIONS(2937), + [anon_sym__Alignof] = ACTIONS(2937), + [anon_sym_offsetof] = ACTIONS(2939), + [anon_sym__Generic] = ACTIONS(2941), + [anon_sym_asm] = ACTIONS(2943), + [anon_sym___asm__] = ACTIONS(2943), + [sym_number_literal] = ACTIONS(2945), + [anon_sym_L_SQUOTE] = ACTIONS(2947), + [anon_sym_u_SQUOTE] = ACTIONS(2947), + [anon_sym_U_SQUOTE] = ACTIONS(2947), + [anon_sym_u8_SQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2947), + [anon_sym_L_DQUOTE] = ACTIONS(2949), + [anon_sym_u_DQUOTE] = ACTIONS(2949), + [anon_sym_U_DQUOTE] = ACTIONS(2949), + [anon_sym_u8_DQUOTE] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2949), + [sym_true] = ACTIONS(2951), + [sym_false] = ACTIONS(2951), + [anon_sym_NULL] = ACTIONS(2953), + [anon_sym_nullptr] = ACTIONS(2953), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2955), + [anon_sym_R_DQUOTE] = ACTIONS(2957), + [anon_sym_LR_DQUOTE] = ACTIONS(2957), + [anon_sym_uR_DQUOTE] = ACTIONS(2957), + [anon_sym_UR_DQUOTE] = ACTIONS(2957), + [anon_sym_u8R_DQUOTE] = ACTIONS(2957), + [anon_sym_co_await] = ACTIONS(2959), + [anon_sym_new] = ACTIONS(2961), + [anon_sym_requires] = ACTIONS(2963), + [sym_this] = ACTIONS(2951), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2965), + [sym_semgrep_named_ellipsis] = ACTIONS(2967), + }, + [1562] = { + [sym_expression] = STATE(2935), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(2995), + [sym_concatenated_string] = STATE(2995), + [sym_string_literal] = STATE(2040), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2040), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(5008), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5076), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_compl] = ACTIONS(2329), + [anon_sym_DASH_DASH] = ACTIONS(5010), + [anon_sym_PLUS_PLUS] = ACTIONS(5010), + [anon_sym_sizeof] = ACTIONS(2335), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2337), + [anon_sym_L_SQUOTE] = ACTIONS(2339), + [anon_sym_u_SQUOTE] = ACTIONS(2339), + [anon_sym_U_SQUOTE] = ACTIONS(2339), + [anon_sym_u8_SQUOTE] = ACTIONS(2339), + [anon_sym_SQUOTE] = ACTIONS(2339), + [anon_sym_L_DQUOTE] = ACTIONS(2341), + [anon_sym_u_DQUOTE] = ACTIONS(2341), + [anon_sym_U_DQUOTE] = ACTIONS(2341), + [anon_sym_u8_DQUOTE] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2343), + [anon_sym_R_DQUOTE] = ACTIONS(2345), + [anon_sym_LR_DQUOTE] = ACTIONS(2345), + [anon_sym_uR_DQUOTE] = ACTIONS(2345), + [anon_sym_UR_DQUOTE] = ACTIONS(2345), + [anon_sym_u8R_DQUOTE] = ACTIONS(2345), + [anon_sym_co_await] = ACTIONS(2347), + [anon_sym_new] = ACTIONS(2349), + [anon_sym_requires] = ACTIONS(2351), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1563] = { + [sym_expression] = STATE(2874), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(2995), + [sym_concatenated_string] = STATE(2995), + [sym_string_literal] = STATE(2040), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2040), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(5008), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5076), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_compl] = ACTIONS(2329), + [anon_sym_DASH_DASH] = ACTIONS(5010), + [anon_sym_PLUS_PLUS] = ACTIONS(5010), + [anon_sym_sizeof] = ACTIONS(2335), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2337), + [anon_sym_L_SQUOTE] = ACTIONS(2339), + [anon_sym_u_SQUOTE] = ACTIONS(2339), + [anon_sym_U_SQUOTE] = ACTIONS(2339), + [anon_sym_u8_SQUOTE] = ACTIONS(2339), + [anon_sym_SQUOTE] = ACTIONS(2339), + [anon_sym_L_DQUOTE] = ACTIONS(2341), + [anon_sym_u_DQUOTE] = ACTIONS(2341), + [anon_sym_U_DQUOTE] = ACTIONS(2341), + [anon_sym_u8_DQUOTE] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2343), + [anon_sym_R_DQUOTE] = ACTIONS(2345), + [anon_sym_LR_DQUOTE] = ACTIONS(2345), + [anon_sym_uR_DQUOTE] = ACTIONS(2345), + [anon_sym_UR_DQUOTE] = ACTIONS(2345), + [anon_sym_u8R_DQUOTE] = ACTIONS(2345), + [anon_sym_co_await] = ACTIONS(2347), + [anon_sym_new] = ACTIONS(2349), + [anon_sym_requires] = ACTIONS(2351), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1564] = { + [sym_expression] = STATE(2950), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(2995), + [sym_concatenated_string] = STATE(2995), + [sym_string_literal] = STATE(2040), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2040), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(5008), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5076), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_compl] = ACTIONS(2329), + [anon_sym_DASH_DASH] = ACTIONS(5010), + [anon_sym_PLUS_PLUS] = ACTIONS(5010), + [anon_sym_sizeof] = ACTIONS(2335), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2337), + [anon_sym_L_SQUOTE] = ACTIONS(2339), + [anon_sym_u_SQUOTE] = ACTIONS(2339), + [anon_sym_U_SQUOTE] = ACTIONS(2339), + [anon_sym_u8_SQUOTE] = ACTIONS(2339), + [anon_sym_SQUOTE] = ACTIONS(2339), + [anon_sym_L_DQUOTE] = ACTIONS(2341), + [anon_sym_u_DQUOTE] = ACTIONS(2341), + [anon_sym_U_DQUOTE] = ACTIONS(2341), + [anon_sym_u8_DQUOTE] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2343), + [anon_sym_R_DQUOTE] = ACTIONS(2345), + [anon_sym_LR_DQUOTE] = ACTIONS(2345), + [anon_sym_uR_DQUOTE] = ACTIONS(2345), + [anon_sym_UR_DQUOTE] = ACTIONS(2345), + [anon_sym_u8R_DQUOTE] = ACTIONS(2345), + [anon_sym_co_await] = ACTIONS(2347), + [anon_sym_new] = ACTIONS(2349), + [anon_sym_requires] = ACTIONS(2351), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1565] = { + [sym_expression] = STATE(2952), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(2995), + [sym_concatenated_string] = STATE(2995), + [sym_string_literal] = STATE(2040), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2040), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(5008), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5076), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_compl] = ACTIONS(2329), + [anon_sym_DASH_DASH] = ACTIONS(5010), + [anon_sym_PLUS_PLUS] = ACTIONS(5010), + [anon_sym_sizeof] = ACTIONS(2335), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2337), + [anon_sym_L_SQUOTE] = ACTIONS(2339), + [anon_sym_u_SQUOTE] = ACTIONS(2339), + [anon_sym_U_SQUOTE] = ACTIONS(2339), + [anon_sym_u8_SQUOTE] = ACTIONS(2339), + [anon_sym_SQUOTE] = ACTIONS(2339), + [anon_sym_L_DQUOTE] = ACTIONS(2341), + [anon_sym_u_DQUOTE] = ACTIONS(2341), + [anon_sym_U_DQUOTE] = ACTIONS(2341), + [anon_sym_u8_DQUOTE] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2343), + [anon_sym_R_DQUOTE] = ACTIONS(2345), + [anon_sym_LR_DQUOTE] = ACTIONS(2345), + [anon_sym_uR_DQUOTE] = ACTIONS(2345), + [anon_sym_UR_DQUOTE] = ACTIONS(2345), + [anon_sym_u8R_DQUOTE] = ACTIONS(2345), + [anon_sym_co_await] = ACTIONS(2347), + [anon_sym_new] = ACTIONS(2349), + [anon_sym_requires] = ACTIONS(2351), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1566] = { + [sym_expression] = STATE(2953), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(2995), + [sym_concatenated_string] = STATE(2995), + [sym_string_literal] = STATE(2040), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2040), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(5008), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5076), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_compl] = ACTIONS(2329), + [anon_sym_DASH_DASH] = ACTIONS(5010), + [anon_sym_PLUS_PLUS] = ACTIONS(5010), + [anon_sym_sizeof] = ACTIONS(2335), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2337), + [anon_sym_L_SQUOTE] = ACTIONS(2339), + [anon_sym_u_SQUOTE] = ACTIONS(2339), + [anon_sym_U_SQUOTE] = ACTIONS(2339), + [anon_sym_u8_SQUOTE] = ACTIONS(2339), + [anon_sym_SQUOTE] = ACTIONS(2339), + [anon_sym_L_DQUOTE] = ACTIONS(2341), + [anon_sym_u_DQUOTE] = ACTIONS(2341), + [anon_sym_U_DQUOTE] = ACTIONS(2341), + [anon_sym_u8_DQUOTE] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2343), + [anon_sym_R_DQUOTE] = ACTIONS(2345), + [anon_sym_LR_DQUOTE] = ACTIONS(2345), + [anon_sym_uR_DQUOTE] = ACTIONS(2345), + [anon_sym_UR_DQUOTE] = ACTIONS(2345), + [anon_sym_u8R_DQUOTE] = ACTIONS(2345), + [anon_sym_co_await] = ACTIONS(2347), + [anon_sym_new] = ACTIONS(2349), + [anon_sym_requires] = ACTIONS(2351), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1567] = { + [sym_expression] = STATE(2954), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(2995), + [sym_concatenated_string] = STATE(2995), + [sym_string_literal] = STATE(2040), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2040), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(5008), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5076), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_compl] = ACTIONS(2329), + [anon_sym_DASH_DASH] = ACTIONS(5010), + [anon_sym_PLUS_PLUS] = ACTIONS(5010), + [anon_sym_sizeof] = ACTIONS(2335), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2337), + [anon_sym_L_SQUOTE] = ACTIONS(2339), + [anon_sym_u_SQUOTE] = ACTIONS(2339), + [anon_sym_U_SQUOTE] = ACTIONS(2339), + [anon_sym_u8_SQUOTE] = ACTIONS(2339), + [anon_sym_SQUOTE] = ACTIONS(2339), + [anon_sym_L_DQUOTE] = ACTIONS(2341), + [anon_sym_u_DQUOTE] = ACTIONS(2341), + [anon_sym_U_DQUOTE] = ACTIONS(2341), + [anon_sym_u8_DQUOTE] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2343), + [anon_sym_R_DQUOTE] = ACTIONS(2345), + [anon_sym_LR_DQUOTE] = ACTIONS(2345), + [anon_sym_uR_DQUOTE] = ACTIONS(2345), + [anon_sym_UR_DQUOTE] = ACTIONS(2345), + [anon_sym_u8R_DQUOTE] = ACTIONS(2345), + [anon_sym_co_await] = ACTIONS(2347), + [anon_sym_new] = ACTIONS(2349), + [anon_sym_requires] = ACTIONS(2351), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1568] = { + [sym_expression] = STATE(2955), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(2995), + [sym_concatenated_string] = STATE(2995), + [sym_string_literal] = STATE(2040), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2040), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(5008), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5076), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_compl] = ACTIONS(2329), + [anon_sym_DASH_DASH] = ACTIONS(5010), + [anon_sym_PLUS_PLUS] = ACTIONS(5010), + [anon_sym_sizeof] = ACTIONS(2335), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2337), + [anon_sym_L_SQUOTE] = ACTIONS(2339), + [anon_sym_u_SQUOTE] = ACTIONS(2339), + [anon_sym_U_SQUOTE] = ACTIONS(2339), + [anon_sym_u8_SQUOTE] = ACTIONS(2339), + [anon_sym_SQUOTE] = ACTIONS(2339), + [anon_sym_L_DQUOTE] = ACTIONS(2341), + [anon_sym_u_DQUOTE] = ACTIONS(2341), + [anon_sym_U_DQUOTE] = ACTIONS(2341), + [anon_sym_u8_DQUOTE] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2343), + [anon_sym_R_DQUOTE] = ACTIONS(2345), + [anon_sym_LR_DQUOTE] = ACTIONS(2345), + [anon_sym_uR_DQUOTE] = ACTIONS(2345), + [anon_sym_UR_DQUOTE] = ACTIONS(2345), + [anon_sym_u8R_DQUOTE] = ACTIONS(2345), + [anon_sym_co_await] = ACTIONS(2347), + [anon_sym_new] = ACTIONS(2349), + [anon_sym_requires] = ACTIONS(2351), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1569] = { + [sym_expression] = STATE(2956), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(2995), + [sym_concatenated_string] = STATE(2995), + [sym_string_literal] = STATE(2040), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2040), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(5008), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5076), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_compl] = ACTIONS(2329), + [anon_sym_DASH_DASH] = ACTIONS(5010), + [anon_sym_PLUS_PLUS] = ACTIONS(5010), + [anon_sym_sizeof] = ACTIONS(2335), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2337), + [anon_sym_L_SQUOTE] = ACTIONS(2339), + [anon_sym_u_SQUOTE] = ACTIONS(2339), + [anon_sym_U_SQUOTE] = ACTIONS(2339), + [anon_sym_u8_SQUOTE] = ACTIONS(2339), + [anon_sym_SQUOTE] = ACTIONS(2339), + [anon_sym_L_DQUOTE] = ACTIONS(2341), + [anon_sym_u_DQUOTE] = ACTIONS(2341), + [anon_sym_U_DQUOTE] = ACTIONS(2341), + [anon_sym_u8_DQUOTE] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2343), + [anon_sym_R_DQUOTE] = ACTIONS(2345), + [anon_sym_LR_DQUOTE] = ACTIONS(2345), + [anon_sym_uR_DQUOTE] = ACTIONS(2345), + [anon_sym_UR_DQUOTE] = ACTIONS(2345), + [anon_sym_u8R_DQUOTE] = ACTIONS(2345), + [anon_sym_co_await] = ACTIONS(2347), + [anon_sym_new] = ACTIONS(2349), + [anon_sym_requires] = ACTIONS(2351), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1570] = { + [sym_expression] = STATE(2957), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(2995), + [sym_concatenated_string] = STATE(2995), + [sym_string_literal] = STATE(2040), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2040), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(5008), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5076), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_compl] = ACTIONS(2329), + [anon_sym_DASH_DASH] = ACTIONS(5010), + [anon_sym_PLUS_PLUS] = ACTIONS(5010), + [anon_sym_sizeof] = ACTIONS(2335), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2337), + [anon_sym_L_SQUOTE] = ACTIONS(2339), + [anon_sym_u_SQUOTE] = ACTIONS(2339), + [anon_sym_U_SQUOTE] = ACTIONS(2339), + [anon_sym_u8_SQUOTE] = ACTIONS(2339), + [anon_sym_SQUOTE] = ACTIONS(2339), + [anon_sym_L_DQUOTE] = ACTIONS(2341), + [anon_sym_u_DQUOTE] = ACTIONS(2341), + [anon_sym_U_DQUOTE] = ACTIONS(2341), + [anon_sym_u8_DQUOTE] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2343), + [anon_sym_R_DQUOTE] = ACTIONS(2345), + [anon_sym_LR_DQUOTE] = ACTIONS(2345), + [anon_sym_uR_DQUOTE] = ACTIONS(2345), + [anon_sym_UR_DQUOTE] = ACTIONS(2345), + [anon_sym_u8R_DQUOTE] = ACTIONS(2345), + [anon_sym_co_await] = ACTIONS(2347), + [anon_sym_new] = ACTIONS(2349), + [anon_sym_requires] = ACTIONS(2351), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1571] = { + [sym_expression] = STATE(2936), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(2995), + [sym_concatenated_string] = STATE(2995), + [sym_string_literal] = STATE(2040), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2040), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(5008), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5076), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_compl] = ACTIONS(2329), + [anon_sym_DASH_DASH] = ACTIONS(5010), + [anon_sym_PLUS_PLUS] = ACTIONS(5010), + [anon_sym_sizeof] = ACTIONS(2335), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2337), + [anon_sym_L_SQUOTE] = ACTIONS(2339), + [anon_sym_u_SQUOTE] = ACTIONS(2339), + [anon_sym_U_SQUOTE] = ACTIONS(2339), + [anon_sym_u8_SQUOTE] = ACTIONS(2339), + [anon_sym_SQUOTE] = ACTIONS(2339), + [anon_sym_L_DQUOTE] = ACTIONS(2341), + [anon_sym_u_DQUOTE] = ACTIONS(2341), + [anon_sym_U_DQUOTE] = ACTIONS(2341), + [anon_sym_u8_DQUOTE] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2343), + [anon_sym_R_DQUOTE] = ACTIONS(2345), + [anon_sym_LR_DQUOTE] = ACTIONS(2345), + [anon_sym_uR_DQUOTE] = ACTIONS(2345), + [anon_sym_UR_DQUOTE] = ACTIONS(2345), + [anon_sym_u8R_DQUOTE] = ACTIONS(2345), + [anon_sym_co_await] = ACTIONS(2347), + [anon_sym_new] = ACTIONS(2349), + [anon_sym_requires] = ACTIONS(2351), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1572] = { + [sym_expression] = STATE(4702), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3922), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3922), + [sym_call_expression] = STATE(3922), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3922), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3922), + [sym_char_literal] = STATE(5203), + [sym_concatenated_string] = STATE(5203), + [sym_string_literal] = STATE(3965), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3965), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3922), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3922), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_TILDE] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4200), + [anon_sym_compl] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_sizeof] = ACTIONS(4206), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -254325,99 +249923,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), + [sym_number_literal] = ACTIONS(4208), + [anon_sym_L_SQUOTE] = ACTIONS(4210), + [anon_sym_u_SQUOTE] = ACTIONS(4210), + [anon_sym_U_SQUOTE] = ACTIONS(4210), + [anon_sym_u8_SQUOTE] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4210), + [anon_sym_L_DQUOTE] = ACTIONS(4212), + [anon_sym_u_DQUOTE] = ACTIONS(4212), + [anon_sym_U_DQUOTE] = ACTIONS(4212), + [anon_sym_u8_DQUOTE] = ACTIONS(4212), + [anon_sym_DQUOTE] = ACTIONS(4212), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4214), + [anon_sym_R_DQUOTE] = ACTIONS(4216), + [anon_sym_LR_DQUOTE] = ACTIONS(4216), + [anon_sym_uR_DQUOTE] = ACTIONS(4216), + [anon_sym_UR_DQUOTE] = ACTIONS(4216), + [anon_sym_u8R_DQUOTE] = ACTIONS(4216), + [anon_sym_co_await] = ACTIONS(4218), [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1513] = { - [sym_expression] = STATE(5182), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1573] = { + [sym_expression] = STATE(4737), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3922), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3922), + [sym_call_expression] = STATE(3922), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3922), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3922), + [sym_char_literal] = STATE(5203), + [sym_concatenated_string] = STATE(5203), + [sym_string_literal] = STATE(3965), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3965), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3922), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3922), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_TILDE] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4200), + [anon_sym_compl] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_sizeof] = ACTIONS(4206), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -254427,2648 +250025,2546 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), + [sym_number_literal] = ACTIONS(4208), + [anon_sym_L_SQUOTE] = ACTIONS(4210), + [anon_sym_u_SQUOTE] = ACTIONS(4210), + [anon_sym_U_SQUOTE] = ACTIONS(4210), + [anon_sym_u8_SQUOTE] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4210), + [anon_sym_L_DQUOTE] = ACTIONS(4212), + [anon_sym_u_DQUOTE] = ACTIONS(4212), + [anon_sym_U_DQUOTE] = ACTIONS(4212), + [anon_sym_u8_DQUOTE] = ACTIONS(4212), + [anon_sym_DQUOTE] = ACTIONS(4212), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4214), + [anon_sym_R_DQUOTE] = ACTIONS(4216), + [anon_sym_LR_DQUOTE] = ACTIONS(4216), + [anon_sym_uR_DQUOTE] = ACTIONS(4216), + [anon_sym_UR_DQUOTE] = ACTIONS(4216), + [anon_sym_u8R_DQUOTE] = ACTIONS(4216), + [anon_sym_co_await] = ACTIONS(4218), [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1514] = { - [sym_expression] = STATE(3715), - [sym_expression_not_binary] = STATE(4050), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9276), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [sym_identifier] = ACTIONS(2854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2858), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), - }, - [1515] = { - [sym_expression] = STATE(3718), - [sym_expression_not_binary] = STATE(4050), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9276), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [sym_identifier] = ACTIONS(2854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2858), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), + [1574] = { + [sym_expression] = STATE(4774), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3922), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3922), + [sym_call_expression] = STATE(3922), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3922), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3922), + [sym_char_literal] = STATE(5203), + [sym_concatenated_string] = STATE(5203), + [sym_string_literal] = STATE(3965), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3965), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3922), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3922), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5328), + [anon_sym_LPAREN2] = ACTIONS(5330), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_TILDE] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4200), + [anon_sym_compl] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4908), + [anon_sym_PLUS_PLUS] = ACTIONS(4908), + [anon_sym_sizeof] = ACTIONS(4206), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(4208), + [anon_sym_L_SQUOTE] = ACTIONS(4210), + [anon_sym_u_SQUOTE] = ACTIONS(4210), + [anon_sym_U_SQUOTE] = ACTIONS(4210), + [anon_sym_u8_SQUOTE] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4210), + [anon_sym_L_DQUOTE] = ACTIONS(4212), + [anon_sym_u_DQUOTE] = ACTIONS(4212), + [anon_sym_U_DQUOTE] = ACTIONS(4212), + [anon_sym_u8_DQUOTE] = ACTIONS(4212), + [anon_sym_DQUOTE] = ACTIONS(4212), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4214), + [anon_sym_R_DQUOTE] = ACTIONS(4216), + [anon_sym_LR_DQUOTE] = ACTIONS(4216), + [anon_sym_uR_DQUOTE] = ACTIONS(4216), + [anon_sym_UR_DQUOTE] = ACTIONS(4216), + [anon_sym_u8R_DQUOTE] = ACTIONS(4216), + [anon_sym_co_await] = ACTIONS(4218), + [anon_sym_new] = ACTIONS(159), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1516] = { - [sym_expression] = STATE(3719), - [sym_expression_not_binary] = STATE(4050), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9276), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [sym_identifier] = ACTIONS(2854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2858), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), + [1575] = { + [sym_expression] = STATE(5520), + [sym_expression_not_binary] = STATE(5685), + [sym_conditional_expression] = STATE(5675), + [sym_assignment_expression] = STATE(5675), + [sym_pointer_expression] = STATE(4201), + [sym_unary_expression] = STATE(5675), + [sym_binary_expression] = STATE(5685), + [sym_update_expression] = STATE(5675), + [sym_cast_expression] = STATE(5675), + [sym_sizeof_expression] = STATE(5675), + [sym_alignof_expression] = STATE(5675), + [sym_offsetof_expression] = STATE(5675), + [sym_generic_expression] = STATE(5675), + [sym_subscript_expression] = STATE(4201), + [sym_call_expression] = STATE(4201), + [sym_gnu_asm_expression] = STATE(5675), + [sym_field_expression] = STATE(4201), + [sym_compound_literal_expression] = STATE(5675), + [sym_parenthesized_expression] = STATE(4201), + [sym_char_literal] = STATE(5600), + [sym_concatenated_string] = STATE(5600), + [sym_string_literal] = STATE(4359), + [sym_null] = STATE(5675), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9034), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5675), + [sym_raw_string_literal] = STATE(4359), + [sym_co_await_expression] = STATE(5675), + [sym_new_expression] = STATE(5675), + [sym_delete_expression] = STATE(5675), + [sym_requires_clause] = STATE(5675), + [sym_requires_expression] = STATE(5675), + [sym_lambda_expression] = STATE(5675), + [sym_lambda_capture_specifier] = STATE(6898), + [sym_fold_expression] = STATE(5675), + [sym_parameter_pack_expansion] = STATE(5675), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4201), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4201), + [sym_semgrep_ellipsis] = STATE(5685), + [sym_deep_ellipsis] = STATE(5685), + [sym_identifier] = ACTIONS(4242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4954), + [anon_sym_LPAREN2] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_TILDE] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(4248), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4252), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_sizeof] = ACTIONS(4254), + [anon_sym___alignof__] = ACTIONS(4256), + [anon_sym___alignof] = ACTIONS(4256), + [anon_sym__alignof] = ACTIONS(4256), + [anon_sym_alignof] = ACTIONS(4256), + [anon_sym__Alignof] = ACTIONS(4256), + [anon_sym_offsetof] = ACTIONS(4258), + [anon_sym__Generic] = ACTIONS(4260), + [anon_sym_asm] = ACTIONS(4262), + [anon_sym___asm__] = ACTIONS(4262), + [sym_number_literal] = ACTIONS(4264), + [anon_sym_L_SQUOTE] = ACTIONS(4266), + [anon_sym_u_SQUOTE] = ACTIONS(4266), + [anon_sym_U_SQUOTE] = ACTIONS(4266), + [anon_sym_u8_SQUOTE] = ACTIONS(4266), + [anon_sym_SQUOTE] = ACTIONS(4266), + [anon_sym_L_DQUOTE] = ACTIONS(4268), + [anon_sym_u_DQUOTE] = ACTIONS(4268), + [anon_sym_U_DQUOTE] = ACTIONS(4268), + [anon_sym_u8_DQUOTE] = ACTIONS(4268), + [anon_sym_DQUOTE] = ACTIONS(4268), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4272), + [anon_sym_nullptr] = ACTIONS(4272), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4274), + [anon_sym_R_DQUOTE] = ACTIONS(4276), + [anon_sym_LR_DQUOTE] = ACTIONS(4276), + [anon_sym_uR_DQUOTE] = ACTIONS(4276), + [anon_sym_UR_DQUOTE] = ACTIONS(4276), + [anon_sym_u8R_DQUOTE] = ACTIONS(4276), + [anon_sym_co_await] = ACTIONS(4278), + [anon_sym_new] = ACTIONS(4280), + [anon_sym_requires] = ACTIONS(4282), + [sym_this] = ACTIONS(4270), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4284), + [sym_semgrep_named_ellipsis] = ACTIONS(4286), }, - [1517] = { - [sym_expression] = STATE(3720), - [sym_expression_not_binary] = STATE(4050), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9276), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [sym_identifier] = ACTIONS(2854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2858), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), + [1576] = { + [sym_expression] = STATE(5521), + [sym_expression_not_binary] = STATE(5685), + [sym_conditional_expression] = STATE(5675), + [sym_assignment_expression] = STATE(5675), + [sym_pointer_expression] = STATE(4201), + [sym_unary_expression] = STATE(5675), + [sym_binary_expression] = STATE(5685), + [sym_update_expression] = STATE(5675), + [sym_cast_expression] = STATE(5675), + [sym_sizeof_expression] = STATE(5675), + [sym_alignof_expression] = STATE(5675), + [sym_offsetof_expression] = STATE(5675), + [sym_generic_expression] = STATE(5675), + [sym_subscript_expression] = STATE(4201), + [sym_call_expression] = STATE(4201), + [sym_gnu_asm_expression] = STATE(5675), + [sym_field_expression] = STATE(4201), + [sym_compound_literal_expression] = STATE(5675), + [sym_parenthesized_expression] = STATE(4201), + [sym_char_literal] = STATE(5600), + [sym_concatenated_string] = STATE(5600), + [sym_string_literal] = STATE(4359), + [sym_null] = STATE(5675), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9034), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5675), + [sym_raw_string_literal] = STATE(4359), + [sym_co_await_expression] = STATE(5675), + [sym_new_expression] = STATE(5675), + [sym_delete_expression] = STATE(5675), + [sym_requires_clause] = STATE(5675), + [sym_requires_expression] = STATE(5675), + [sym_lambda_expression] = STATE(5675), + [sym_lambda_capture_specifier] = STATE(6898), + [sym_fold_expression] = STATE(5675), + [sym_parameter_pack_expansion] = STATE(5675), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4201), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4201), + [sym_semgrep_ellipsis] = STATE(5685), + [sym_deep_ellipsis] = STATE(5685), + [sym_identifier] = ACTIONS(4242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4954), + [anon_sym_LPAREN2] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_TILDE] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(4248), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4252), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_sizeof] = ACTIONS(4254), + [anon_sym___alignof__] = ACTIONS(4256), + [anon_sym___alignof] = ACTIONS(4256), + [anon_sym__alignof] = ACTIONS(4256), + [anon_sym_alignof] = ACTIONS(4256), + [anon_sym__Alignof] = ACTIONS(4256), + [anon_sym_offsetof] = ACTIONS(4258), + [anon_sym__Generic] = ACTIONS(4260), + [anon_sym_asm] = ACTIONS(4262), + [anon_sym___asm__] = ACTIONS(4262), + [sym_number_literal] = ACTIONS(4264), + [anon_sym_L_SQUOTE] = ACTIONS(4266), + [anon_sym_u_SQUOTE] = ACTIONS(4266), + [anon_sym_U_SQUOTE] = ACTIONS(4266), + [anon_sym_u8_SQUOTE] = ACTIONS(4266), + [anon_sym_SQUOTE] = ACTIONS(4266), + [anon_sym_L_DQUOTE] = ACTIONS(4268), + [anon_sym_u_DQUOTE] = ACTIONS(4268), + [anon_sym_U_DQUOTE] = ACTIONS(4268), + [anon_sym_u8_DQUOTE] = ACTIONS(4268), + [anon_sym_DQUOTE] = ACTIONS(4268), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4272), + [anon_sym_nullptr] = ACTIONS(4272), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4274), + [anon_sym_R_DQUOTE] = ACTIONS(4276), + [anon_sym_LR_DQUOTE] = ACTIONS(4276), + [anon_sym_uR_DQUOTE] = ACTIONS(4276), + [anon_sym_UR_DQUOTE] = ACTIONS(4276), + [anon_sym_u8R_DQUOTE] = ACTIONS(4276), + [anon_sym_co_await] = ACTIONS(4278), + [anon_sym_new] = ACTIONS(4280), + [anon_sym_requires] = ACTIONS(4282), + [sym_this] = ACTIONS(4270), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4284), + [sym_semgrep_named_ellipsis] = ACTIONS(4286), }, - [1518] = { - [sym_expression] = STATE(3723), - [sym_expression_not_binary] = STATE(4050), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9276), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [sym_identifier] = ACTIONS(2854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2858), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), + [1577] = { + [sym_expression] = STATE(5522), + [sym_expression_not_binary] = STATE(5685), + [sym_conditional_expression] = STATE(5675), + [sym_assignment_expression] = STATE(5675), + [sym_pointer_expression] = STATE(4201), + [sym_unary_expression] = STATE(5675), + [sym_binary_expression] = STATE(5685), + [sym_update_expression] = STATE(5675), + [sym_cast_expression] = STATE(5675), + [sym_sizeof_expression] = STATE(5675), + [sym_alignof_expression] = STATE(5675), + [sym_offsetof_expression] = STATE(5675), + [sym_generic_expression] = STATE(5675), + [sym_subscript_expression] = STATE(4201), + [sym_call_expression] = STATE(4201), + [sym_gnu_asm_expression] = STATE(5675), + [sym_field_expression] = STATE(4201), + [sym_compound_literal_expression] = STATE(5675), + [sym_parenthesized_expression] = STATE(4201), + [sym_char_literal] = STATE(5600), + [sym_concatenated_string] = STATE(5600), + [sym_string_literal] = STATE(4359), + [sym_null] = STATE(5675), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9034), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5675), + [sym_raw_string_literal] = STATE(4359), + [sym_co_await_expression] = STATE(5675), + [sym_new_expression] = STATE(5675), + [sym_delete_expression] = STATE(5675), + [sym_requires_clause] = STATE(5675), + [sym_requires_expression] = STATE(5675), + [sym_lambda_expression] = STATE(5675), + [sym_lambda_capture_specifier] = STATE(6898), + [sym_fold_expression] = STATE(5675), + [sym_parameter_pack_expansion] = STATE(5675), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4201), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4201), + [sym_semgrep_ellipsis] = STATE(5685), + [sym_deep_ellipsis] = STATE(5685), + [sym_identifier] = ACTIONS(4242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4954), + [anon_sym_LPAREN2] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_TILDE] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(4248), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4252), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_sizeof] = ACTIONS(4254), + [anon_sym___alignof__] = ACTIONS(4256), + [anon_sym___alignof] = ACTIONS(4256), + [anon_sym__alignof] = ACTIONS(4256), + [anon_sym_alignof] = ACTIONS(4256), + [anon_sym__Alignof] = ACTIONS(4256), + [anon_sym_offsetof] = ACTIONS(4258), + [anon_sym__Generic] = ACTIONS(4260), + [anon_sym_asm] = ACTIONS(4262), + [anon_sym___asm__] = ACTIONS(4262), + [sym_number_literal] = ACTIONS(4264), + [anon_sym_L_SQUOTE] = ACTIONS(4266), + [anon_sym_u_SQUOTE] = ACTIONS(4266), + [anon_sym_U_SQUOTE] = ACTIONS(4266), + [anon_sym_u8_SQUOTE] = ACTIONS(4266), + [anon_sym_SQUOTE] = ACTIONS(4266), + [anon_sym_L_DQUOTE] = ACTIONS(4268), + [anon_sym_u_DQUOTE] = ACTIONS(4268), + [anon_sym_U_DQUOTE] = ACTIONS(4268), + [anon_sym_u8_DQUOTE] = ACTIONS(4268), + [anon_sym_DQUOTE] = ACTIONS(4268), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4272), + [anon_sym_nullptr] = ACTIONS(4272), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4274), + [anon_sym_R_DQUOTE] = ACTIONS(4276), + [anon_sym_LR_DQUOTE] = ACTIONS(4276), + [anon_sym_uR_DQUOTE] = ACTIONS(4276), + [anon_sym_UR_DQUOTE] = ACTIONS(4276), + [anon_sym_u8R_DQUOTE] = ACTIONS(4276), + [anon_sym_co_await] = ACTIONS(4278), + [anon_sym_new] = ACTIONS(4280), + [anon_sym_requires] = ACTIONS(4282), + [sym_this] = ACTIONS(4270), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4284), + [sym_semgrep_named_ellipsis] = ACTIONS(4286), }, - [1519] = { - [sym_expression] = STATE(3724), - [sym_expression_not_binary] = STATE(4050), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9276), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [sym_identifier] = ACTIONS(2854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2858), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), + [1578] = { + [sym_expression] = STATE(5523), + [sym_expression_not_binary] = STATE(5685), + [sym_conditional_expression] = STATE(5675), + [sym_assignment_expression] = STATE(5675), + [sym_pointer_expression] = STATE(4201), + [sym_unary_expression] = STATE(5675), + [sym_binary_expression] = STATE(5685), + [sym_update_expression] = STATE(5675), + [sym_cast_expression] = STATE(5675), + [sym_sizeof_expression] = STATE(5675), + [sym_alignof_expression] = STATE(5675), + [sym_offsetof_expression] = STATE(5675), + [sym_generic_expression] = STATE(5675), + [sym_subscript_expression] = STATE(4201), + [sym_call_expression] = STATE(4201), + [sym_gnu_asm_expression] = STATE(5675), + [sym_field_expression] = STATE(4201), + [sym_compound_literal_expression] = STATE(5675), + [sym_parenthesized_expression] = STATE(4201), + [sym_char_literal] = STATE(5600), + [sym_concatenated_string] = STATE(5600), + [sym_string_literal] = STATE(4359), + [sym_null] = STATE(5675), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9034), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5675), + [sym_raw_string_literal] = STATE(4359), + [sym_co_await_expression] = STATE(5675), + [sym_new_expression] = STATE(5675), + [sym_delete_expression] = STATE(5675), + [sym_requires_clause] = STATE(5675), + [sym_requires_expression] = STATE(5675), + [sym_lambda_expression] = STATE(5675), + [sym_lambda_capture_specifier] = STATE(6898), + [sym_fold_expression] = STATE(5675), + [sym_parameter_pack_expansion] = STATE(5675), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4201), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4201), + [sym_semgrep_ellipsis] = STATE(5685), + [sym_deep_ellipsis] = STATE(5685), + [sym_identifier] = ACTIONS(4242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4954), + [anon_sym_LPAREN2] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_TILDE] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(4248), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4252), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_sizeof] = ACTIONS(4254), + [anon_sym___alignof__] = ACTIONS(4256), + [anon_sym___alignof] = ACTIONS(4256), + [anon_sym__alignof] = ACTIONS(4256), + [anon_sym_alignof] = ACTIONS(4256), + [anon_sym__Alignof] = ACTIONS(4256), + [anon_sym_offsetof] = ACTIONS(4258), + [anon_sym__Generic] = ACTIONS(4260), + [anon_sym_asm] = ACTIONS(4262), + [anon_sym___asm__] = ACTIONS(4262), + [sym_number_literal] = ACTIONS(4264), + [anon_sym_L_SQUOTE] = ACTIONS(4266), + [anon_sym_u_SQUOTE] = ACTIONS(4266), + [anon_sym_U_SQUOTE] = ACTIONS(4266), + [anon_sym_u8_SQUOTE] = ACTIONS(4266), + [anon_sym_SQUOTE] = ACTIONS(4266), + [anon_sym_L_DQUOTE] = ACTIONS(4268), + [anon_sym_u_DQUOTE] = ACTIONS(4268), + [anon_sym_U_DQUOTE] = ACTIONS(4268), + [anon_sym_u8_DQUOTE] = ACTIONS(4268), + [anon_sym_DQUOTE] = ACTIONS(4268), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4272), + [anon_sym_nullptr] = ACTIONS(4272), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4274), + [anon_sym_R_DQUOTE] = ACTIONS(4276), + [anon_sym_LR_DQUOTE] = ACTIONS(4276), + [anon_sym_uR_DQUOTE] = ACTIONS(4276), + [anon_sym_UR_DQUOTE] = ACTIONS(4276), + [anon_sym_u8R_DQUOTE] = ACTIONS(4276), + [anon_sym_co_await] = ACTIONS(4278), + [anon_sym_new] = ACTIONS(4280), + [anon_sym_requires] = ACTIONS(4282), + [sym_this] = ACTIONS(4270), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4284), + [sym_semgrep_named_ellipsis] = ACTIONS(4286), }, - [1520] = { - [sym_expression] = STATE(3725), - [sym_expression_not_binary] = STATE(4050), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9276), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [sym_identifier] = ACTIONS(2854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2858), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), + [1579] = { + [sym_expression] = STATE(5524), + [sym_expression_not_binary] = STATE(5685), + [sym_conditional_expression] = STATE(5675), + [sym_assignment_expression] = STATE(5675), + [sym_pointer_expression] = STATE(4201), + [sym_unary_expression] = STATE(5675), + [sym_binary_expression] = STATE(5685), + [sym_update_expression] = STATE(5675), + [sym_cast_expression] = STATE(5675), + [sym_sizeof_expression] = STATE(5675), + [sym_alignof_expression] = STATE(5675), + [sym_offsetof_expression] = STATE(5675), + [sym_generic_expression] = STATE(5675), + [sym_subscript_expression] = STATE(4201), + [sym_call_expression] = STATE(4201), + [sym_gnu_asm_expression] = STATE(5675), + [sym_field_expression] = STATE(4201), + [sym_compound_literal_expression] = STATE(5675), + [sym_parenthesized_expression] = STATE(4201), + [sym_char_literal] = STATE(5600), + [sym_concatenated_string] = STATE(5600), + [sym_string_literal] = STATE(4359), + [sym_null] = STATE(5675), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9034), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5675), + [sym_raw_string_literal] = STATE(4359), + [sym_co_await_expression] = STATE(5675), + [sym_new_expression] = STATE(5675), + [sym_delete_expression] = STATE(5675), + [sym_requires_clause] = STATE(5675), + [sym_requires_expression] = STATE(5675), + [sym_lambda_expression] = STATE(5675), + [sym_lambda_capture_specifier] = STATE(6898), + [sym_fold_expression] = STATE(5675), + [sym_parameter_pack_expansion] = STATE(5675), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4201), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4201), + [sym_semgrep_ellipsis] = STATE(5685), + [sym_deep_ellipsis] = STATE(5685), + [sym_identifier] = ACTIONS(4242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4954), + [anon_sym_LPAREN2] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_TILDE] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(4248), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4252), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_sizeof] = ACTIONS(4254), + [anon_sym___alignof__] = ACTIONS(4256), + [anon_sym___alignof] = ACTIONS(4256), + [anon_sym__alignof] = ACTIONS(4256), + [anon_sym_alignof] = ACTIONS(4256), + [anon_sym__Alignof] = ACTIONS(4256), + [anon_sym_offsetof] = ACTIONS(4258), + [anon_sym__Generic] = ACTIONS(4260), + [anon_sym_asm] = ACTIONS(4262), + [anon_sym___asm__] = ACTIONS(4262), + [sym_number_literal] = ACTIONS(4264), + [anon_sym_L_SQUOTE] = ACTIONS(4266), + [anon_sym_u_SQUOTE] = ACTIONS(4266), + [anon_sym_U_SQUOTE] = ACTIONS(4266), + [anon_sym_u8_SQUOTE] = ACTIONS(4266), + [anon_sym_SQUOTE] = ACTIONS(4266), + [anon_sym_L_DQUOTE] = ACTIONS(4268), + [anon_sym_u_DQUOTE] = ACTIONS(4268), + [anon_sym_U_DQUOTE] = ACTIONS(4268), + [anon_sym_u8_DQUOTE] = ACTIONS(4268), + [anon_sym_DQUOTE] = ACTIONS(4268), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4272), + [anon_sym_nullptr] = ACTIONS(4272), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4274), + [anon_sym_R_DQUOTE] = ACTIONS(4276), + [anon_sym_LR_DQUOTE] = ACTIONS(4276), + [anon_sym_uR_DQUOTE] = ACTIONS(4276), + [anon_sym_UR_DQUOTE] = ACTIONS(4276), + [anon_sym_u8R_DQUOTE] = ACTIONS(4276), + [anon_sym_co_await] = ACTIONS(4278), + [anon_sym_new] = ACTIONS(4280), + [anon_sym_requires] = ACTIONS(4282), + [sym_this] = ACTIONS(4270), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4284), + [sym_semgrep_named_ellipsis] = ACTIONS(4286), }, - [1521] = { - [sym_expression] = STATE(3728), - [sym_expression_not_binary] = STATE(4050), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9276), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [sym_identifier] = ACTIONS(2854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2858), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), + [1580] = { + [sym_expression] = STATE(5525), + [sym_expression_not_binary] = STATE(5685), + [sym_conditional_expression] = STATE(5675), + [sym_assignment_expression] = STATE(5675), + [sym_pointer_expression] = STATE(4201), + [sym_unary_expression] = STATE(5675), + [sym_binary_expression] = STATE(5685), + [sym_update_expression] = STATE(5675), + [sym_cast_expression] = STATE(5675), + [sym_sizeof_expression] = STATE(5675), + [sym_alignof_expression] = STATE(5675), + [sym_offsetof_expression] = STATE(5675), + [sym_generic_expression] = STATE(5675), + [sym_subscript_expression] = STATE(4201), + [sym_call_expression] = STATE(4201), + [sym_gnu_asm_expression] = STATE(5675), + [sym_field_expression] = STATE(4201), + [sym_compound_literal_expression] = STATE(5675), + [sym_parenthesized_expression] = STATE(4201), + [sym_char_literal] = STATE(5600), + [sym_concatenated_string] = STATE(5600), + [sym_string_literal] = STATE(4359), + [sym_null] = STATE(5675), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9034), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5675), + [sym_raw_string_literal] = STATE(4359), + [sym_co_await_expression] = STATE(5675), + [sym_new_expression] = STATE(5675), + [sym_delete_expression] = STATE(5675), + [sym_requires_clause] = STATE(5675), + [sym_requires_expression] = STATE(5675), + [sym_lambda_expression] = STATE(5675), + [sym_lambda_capture_specifier] = STATE(6898), + [sym_fold_expression] = STATE(5675), + [sym_parameter_pack_expansion] = STATE(5675), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4201), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4201), + [sym_semgrep_ellipsis] = STATE(5685), + [sym_deep_ellipsis] = STATE(5685), + [sym_identifier] = ACTIONS(4242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4954), + [anon_sym_LPAREN2] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_TILDE] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(4248), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4252), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_sizeof] = ACTIONS(4254), + [anon_sym___alignof__] = ACTIONS(4256), + [anon_sym___alignof] = ACTIONS(4256), + [anon_sym__alignof] = ACTIONS(4256), + [anon_sym_alignof] = ACTIONS(4256), + [anon_sym__Alignof] = ACTIONS(4256), + [anon_sym_offsetof] = ACTIONS(4258), + [anon_sym__Generic] = ACTIONS(4260), + [anon_sym_asm] = ACTIONS(4262), + [anon_sym___asm__] = ACTIONS(4262), + [sym_number_literal] = ACTIONS(4264), + [anon_sym_L_SQUOTE] = ACTIONS(4266), + [anon_sym_u_SQUOTE] = ACTIONS(4266), + [anon_sym_U_SQUOTE] = ACTIONS(4266), + [anon_sym_u8_SQUOTE] = ACTIONS(4266), + [anon_sym_SQUOTE] = ACTIONS(4266), + [anon_sym_L_DQUOTE] = ACTIONS(4268), + [anon_sym_u_DQUOTE] = ACTIONS(4268), + [anon_sym_U_DQUOTE] = ACTIONS(4268), + [anon_sym_u8_DQUOTE] = ACTIONS(4268), + [anon_sym_DQUOTE] = ACTIONS(4268), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4272), + [anon_sym_nullptr] = ACTIONS(4272), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4274), + [anon_sym_R_DQUOTE] = ACTIONS(4276), + [anon_sym_LR_DQUOTE] = ACTIONS(4276), + [anon_sym_uR_DQUOTE] = ACTIONS(4276), + [anon_sym_UR_DQUOTE] = ACTIONS(4276), + [anon_sym_u8R_DQUOTE] = ACTIONS(4276), + [anon_sym_co_await] = ACTIONS(4278), + [anon_sym_new] = ACTIONS(4280), + [anon_sym_requires] = ACTIONS(4282), + [sym_this] = ACTIONS(4270), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4284), + [sym_semgrep_named_ellipsis] = ACTIONS(4286), }, - [1522] = { - [sym_expression] = STATE(3729), - [sym_expression_not_binary] = STATE(4050), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9276), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [sym_identifier] = ACTIONS(2854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2858), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), + [1581] = { + [sym_expression] = STATE(5526), + [sym_expression_not_binary] = STATE(5685), + [sym_conditional_expression] = STATE(5675), + [sym_assignment_expression] = STATE(5675), + [sym_pointer_expression] = STATE(4201), + [sym_unary_expression] = STATE(5675), + [sym_binary_expression] = STATE(5685), + [sym_update_expression] = STATE(5675), + [sym_cast_expression] = STATE(5675), + [sym_sizeof_expression] = STATE(5675), + [sym_alignof_expression] = STATE(5675), + [sym_offsetof_expression] = STATE(5675), + [sym_generic_expression] = STATE(5675), + [sym_subscript_expression] = STATE(4201), + [sym_call_expression] = STATE(4201), + [sym_gnu_asm_expression] = STATE(5675), + [sym_field_expression] = STATE(4201), + [sym_compound_literal_expression] = STATE(5675), + [sym_parenthesized_expression] = STATE(4201), + [sym_char_literal] = STATE(5600), + [sym_concatenated_string] = STATE(5600), + [sym_string_literal] = STATE(4359), + [sym_null] = STATE(5675), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9034), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5675), + [sym_raw_string_literal] = STATE(4359), + [sym_co_await_expression] = STATE(5675), + [sym_new_expression] = STATE(5675), + [sym_delete_expression] = STATE(5675), + [sym_requires_clause] = STATE(5675), + [sym_requires_expression] = STATE(5675), + [sym_lambda_expression] = STATE(5675), + [sym_lambda_capture_specifier] = STATE(6898), + [sym_fold_expression] = STATE(5675), + [sym_parameter_pack_expansion] = STATE(5675), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4201), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4201), + [sym_semgrep_ellipsis] = STATE(5685), + [sym_deep_ellipsis] = STATE(5685), + [sym_identifier] = ACTIONS(4242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4954), + [anon_sym_LPAREN2] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_TILDE] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(4248), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4252), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_sizeof] = ACTIONS(4254), + [anon_sym___alignof__] = ACTIONS(4256), + [anon_sym___alignof] = ACTIONS(4256), + [anon_sym__alignof] = ACTIONS(4256), + [anon_sym_alignof] = ACTIONS(4256), + [anon_sym__Alignof] = ACTIONS(4256), + [anon_sym_offsetof] = ACTIONS(4258), + [anon_sym__Generic] = ACTIONS(4260), + [anon_sym_asm] = ACTIONS(4262), + [anon_sym___asm__] = ACTIONS(4262), + [sym_number_literal] = ACTIONS(4264), + [anon_sym_L_SQUOTE] = ACTIONS(4266), + [anon_sym_u_SQUOTE] = ACTIONS(4266), + [anon_sym_U_SQUOTE] = ACTIONS(4266), + [anon_sym_u8_SQUOTE] = ACTIONS(4266), + [anon_sym_SQUOTE] = ACTIONS(4266), + [anon_sym_L_DQUOTE] = ACTIONS(4268), + [anon_sym_u_DQUOTE] = ACTIONS(4268), + [anon_sym_U_DQUOTE] = ACTIONS(4268), + [anon_sym_u8_DQUOTE] = ACTIONS(4268), + [anon_sym_DQUOTE] = ACTIONS(4268), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4272), + [anon_sym_nullptr] = ACTIONS(4272), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4274), + [anon_sym_R_DQUOTE] = ACTIONS(4276), + [anon_sym_LR_DQUOTE] = ACTIONS(4276), + [anon_sym_uR_DQUOTE] = ACTIONS(4276), + [anon_sym_UR_DQUOTE] = ACTIONS(4276), + [anon_sym_u8R_DQUOTE] = ACTIONS(4276), + [anon_sym_co_await] = ACTIONS(4278), + [anon_sym_new] = ACTIONS(4280), + [anon_sym_requires] = ACTIONS(4282), + [sym_this] = ACTIONS(4270), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4284), + [sym_semgrep_named_ellipsis] = ACTIONS(4286), }, - [1523] = { - [sym_expression] = STATE(3735), - [sym_expression_not_binary] = STATE(4050), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9276), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [sym_identifier] = ACTIONS(2854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2858), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), + [1582] = { + [sym_expression] = STATE(5527), + [sym_expression_not_binary] = STATE(5685), + [sym_conditional_expression] = STATE(5675), + [sym_assignment_expression] = STATE(5675), + [sym_pointer_expression] = STATE(4201), + [sym_unary_expression] = STATE(5675), + [sym_binary_expression] = STATE(5685), + [sym_update_expression] = STATE(5675), + [sym_cast_expression] = STATE(5675), + [sym_sizeof_expression] = STATE(5675), + [sym_alignof_expression] = STATE(5675), + [sym_offsetof_expression] = STATE(5675), + [sym_generic_expression] = STATE(5675), + [sym_subscript_expression] = STATE(4201), + [sym_call_expression] = STATE(4201), + [sym_gnu_asm_expression] = STATE(5675), + [sym_field_expression] = STATE(4201), + [sym_compound_literal_expression] = STATE(5675), + [sym_parenthesized_expression] = STATE(4201), + [sym_char_literal] = STATE(5600), + [sym_concatenated_string] = STATE(5600), + [sym_string_literal] = STATE(4359), + [sym_null] = STATE(5675), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9034), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5675), + [sym_raw_string_literal] = STATE(4359), + [sym_co_await_expression] = STATE(5675), + [sym_new_expression] = STATE(5675), + [sym_delete_expression] = STATE(5675), + [sym_requires_clause] = STATE(5675), + [sym_requires_expression] = STATE(5675), + [sym_lambda_expression] = STATE(5675), + [sym_lambda_capture_specifier] = STATE(6898), + [sym_fold_expression] = STATE(5675), + [sym_parameter_pack_expansion] = STATE(5675), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4201), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4201), + [sym_semgrep_ellipsis] = STATE(5685), + [sym_deep_ellipsis] = STATE(5685), + [sym_identifier] = ACTIONS(4242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4954), + [anon_sym_LPAREN2] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_TILDE] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(4248), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4252), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_sizeof] = ACTIONS(4254), + [anon_sym___alignof__] = ACTIONS(4256), + [anon_sym___alignof] = ACTIONS(4256), + [anon_sym__alignof] = ACTIONS(4256), + [anon_sym_alignof] = ACTIONS(4256), + [anon_sym__Alignof] = ACTIONS(4256), + [anon_sym_offsetof] = ACTIONS(4258), + [anon_sym__Generic] = ACTIONS(4260), + [anon_sym_asm] = ACTIONS(4262), + [anon_sym___asm__] = ACTIONS(4262), + [sym_number_literal] = ACTIONS(4264), + [anon_sym_L_SQUOTE] = ACTIONS(4266), + [anon_sym_u_SQUOTE] = ACTIONS(4266), + [anon_sym_U_SQUOTE] = ACTIONS(4266), + [anon_sym_u8_SQUOTE] = ACTIONS(4266), + [anon_sym_SQUOTE] = ACTIONS(4266), + [anon_sym_L_DQUOTE] = ACTIONS(4268), + [anon_sym_u_DQUOTE] = ACTIONS(4268), + [anon_sym_U_DQUOTE] = ACTIONS(4268), + [anon_sym_u8_DQUOTE] = ACTIONS(4268), + [anon_sym_DQUOTE] = ACTIONS(4268), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4272), + [anon_sym_nullptr] = ACTIONS(4272), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4274), + [anon_sym_R_DQUOTE] = ACTIONS(4276), + [anon_sym_LR_DQUOTE] = ACTIONS(4276), + [anon_sym_uR_DQUOTE] = ACTIONS(4276), + [anon_sym_UR_DQUOTE] = ACTIONS(4276), + [anon_sym_u8R_DQUOTE] = ACTIONS(4276), + [anon_sym_co_await] = ACTIONS(4278), + [anon_sym_new] = ACTIONS(4280), + [anon_sym_requires] = ACTIONS(4282), + [sym_this] = ACTIONS(4270), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4284), + [sym_semgrep_named_ellipsis] = ACTIONS(4286), }, - [1524] = { - [sym_expression] = STATE(5916), - [sym_expression_not_binary] = STATE(6169), - [sym_conditional_expression] = STATE(6267), - [sym_assignment_expression] = STATE(6267), - [sym_pointer_expression] = STATE(4422), - [sym_unary_expression] = STATE(6267), - [sym_binary_expression] = STATE(6169), - [sym_update_expression] = STATE(6267), - [sym_cast_expression] = STATE(6267), - [sym_sizeof_expression] = STATE(6267), - [sym_alignof_expression] = STATE(6267), - [sym_offsetof_expression] = STATE(6267), - [sym_generic_expression] = STATE(6267), - [sym_subscript_expression] = STATE(4422), - [sym_call_expression] = STATE(4422), - [sym_gnu_asm_expression] = STATE(6267), - [sym_field_expression] = STATE(4422), - [sym_compound_literal_expression] = STATE(6267), - [sym_parenthesized_expression] = STATE(4422), - [sym_char_literal] = STATE(6147), - [sym_concatenated_string] = STATE(6147), - [sym_string_literal] = STATE(4563), - [sym_null] = STATE(6267), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9242), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6267), - [sym_raw_string_literal] = STATE(4563), - [sym_co_await_expression] = STATE(6267), - [sym_new_expression] = STATE(6267), - [sym_delete_expression] = STATE(6267), - [sym_requires_clause] = STATE(6267), - [sym_requires_expression] = STATE(6267), - [sym_lambda_expression] = STATE(6267), - [sym_lambda_capture_specifier] = STATE(7263), - [sym_fold_expression] = STATE(6267), - [sym_parameter_pack_expansion] = STATE(6267), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4422), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4422), - [sym_semgrep_ellipsis] = STATE(6169), - [sym_deep_ellipsis] = STATE(6169), - [sym_identifier] = ACTIONS(4112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5054), - [anon_sym_LPAREN2] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_TILDE] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4122), - [anon_sym_not] = ACTIONS(4114), - [anon_sym_compl] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(5056), - [anon_sym_PLUS_PLUS] = ACTIONS(5056), - [anon_sym_sizeof] = ACTIONS(4124), - [anon_sym___alignof__] = ACTIONS(4126), - [anon_sym___alignof] = ACTIONS(4126), - [anon_sym__alignof] = ACTIONS(4126), - [anon_sym_alignof] = ACTIONS(4126), - [anon_sym__Alignof] = ACTIONS(4126), - [anon_sym_offsetof] = ACTIONS(4128), - [anon_sym__Generic] = ACTIONS(4130), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4136), - [anon_sym_u_SQUOTE] = ACTIONS(4136), - [anon_sym_U_SQUOTE] = ACTIONS(4136), - [anon_sym_u8_SQUOTE] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_L_DQUOTE] = ACTIONS(4138), - [anon_sym_u_DQUOTE] = ACTIONS(4138), - [anon_sym_U_DQUOTE] = ACTIONS(4138), - [anon_sym_u8_DQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [anon_sym_NULL] = ACTIONS(4142), - [anon_sym_nullptr] = ACTIONS(4142), + [1583] = { + [sym_expression] = STATE(5528), + [sym_expression_not_binary] = STATE(5685), + [sym_conditional_expression] = STATE(5675), + [sym_assignment_expression] = STATE(5675), + [sym_pointer_expression] = STATE(4201), + [sym_unary_expression] = STATE(5675), + [sym_binary_expression] = STATE(5685), + [sym_update_expression] = STATE(5675), + [sym_cast_expression] = STATE(5675), + [sym_sizeof_expression] = STATE(5675), + [sym_alignof_expression] = STATE(5675), + [sym_offsetof_expression] = STATE(5675), + [sym_generic_expression] = STATE(5675), + [sym_subscript_expression] = STATE(4201), + [sym_call_expression] = STATE(4201), + [sym_gnu_asm_expression] = STATE(5675), + [sym_field_expression] = STATE(4201), + [sym_compound_literal_expression] = STATE(5675), + [sym_parenthesized_expression] = STATE(4201), + [sym_char_literal] = STATE(5600), + [sym_concatenated_string] = STATE(5600), + [sym_string_literal] = STATE(4359), + [sym_null] = STATE(5675), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9034), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5675), + [sym_raw_string_literal] = STATE(4359), + [sym_co_await_expression] = STATE(5675), + [sym_new_expression] = STATE(5675), + [sym_delete_expression] = STATE(5675), + [sym_requires_clause] = STATE(5675), + [sym_requires_expression] = STATE(5675), + [sym_lambda_expression] = STATE(5675), + [sym_lambda_capture_specifier] = STATE(6898), + [sym_fold_expression] = STATE(5675), + [sym_parameter_pack_expansion] = STATE(5675), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4201), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4201), + [sym_semgrep_ellipsis] = STATE(5685), + [sym_deep_ellipsis] = STATE(5685), + [sym_identifier] = ACTIONS(4242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4954), + [anon_sym_LPAREN2] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_TILDE] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(4248), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4252), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_sizeof] = ACTIONS(4254), + [anon_sym___alignof__] = ACTIONS(4256), + [anon_sym___alignof] = ACTIONS(4256), + [anon_sym__alignof] = ACTIONS(4256), + [anon_sym_alignof] = ACTIONS(4256), + [anon_sym__Alignof] = ACTIONS(4256), + [anon_sym_offsetof] = ACTIONS(4258), + [anon_sym__Generic] = ACTIONS(4260), + [anon_sym_asm] = ACTIONS(4262), + [anon_sym___asm__] = ACTIONS(4262), + [sym_number_literal] = ACTIONS(4264), + [anon_sym_L_SQUOTE] = ACTIONS(4266), + [anon_sym_u_SQUOTE] = ACTIONS(4266), + [anon_sym_U_SQUOTE] = ACTIONS(4266), + [anon_sym_u8_SQUOTE] = ACTIONS(4266), + [anon_sym_SQUOTE] = ACTIONS(4266), + [anon_sym_L_DQUOTE] = ACTIONS(4268), + [anon_sym_u_DQUOTE] = ACTIONS(4268), + [anon_sym_U_DQUOTE] = ACTIONS(4268), + [anon_sym_u8_DQUOTE] = ACTIONS(4268), + [anon_sym_DQUOTE] = ACTIONS(4268), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4272), + [anon_sym_nullptr] = ACTIONS(4272), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4150), - [anon_sym_requires] = ACTIONS(4152), - [sym_this] = ACTIONS(4140), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4154), - [sym_semgrep_named_ellipsis] = ACTIONS(4156), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4274), + [anon_sym_R_DQUOTE] = ACTIONS(4276), + [anon_sym_LR_DQUOTE] = ACTIONS(4276), + [anon_sym_uR_DQUOTE] = ACTIONS(4276), + [anon_sym_UR_DQUOTE] = ACTIONS(4276), + [anon_sym_u8R_DQUOTE] = ACTIONS(4276), + [anon_sym_co_await] = ACTIONS(4278), + [anon_sym_new] = ACTIONS(4280), + [anon_sym_requires] = ACTIONS(4282), + [sym_this] = ACTIONS(4270), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4284), + [sym_semgrep_named_ellipsis] = ACTIONS(4286), }, - [1525] = { - [sym_expression] = STATE(4326), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), + [1584] = { + [sym_expression] = STATE(3123), + [sym_expression_not_binary] = STATE(3486), + [sym_conditional_expression] = STATE(3447), + [sym_assignment_expression] = STATE(3447), + [sym_pointer_expression] = STATE(3487), + [sym_unary_expression] = STATE(3447), + [sym_binary_expression] = STATE(3486), + [sym_update_expression] = STATE(3447), + [sym_cast_expression] = STATE(3447), + [sym_sizeof_expression] = STATE(3447), + [sym_alignof_expression] = STATE(3447), + [sym_offsetof_expression] = STATE(3447), + [sym_generic_expression] = STATE(3447), + [sym_subscript_expression] = STATE(3487), + [sym_call_expression] = STATE(3487), + [sym_gnu_asm_expression] = STATE(3447), + [sym_field_expression] = STATE(3487), + [sym_compound_literal_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3487), + [sym_char_literal] = STATE(3228), + [sym_concatenated_string] = STATE(3228), + [sym_string_literal] = STATE(2167), + [sym_null] = STATE(3447), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8847), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3447), + [sym_raw_string_literal] = STATE(2167), + [sym_co_await_expression] = STATE(3447), + [sym_new_expression] = STATE(3447), + [sym_delete_expression] = STATE(3447), + [sym_requires_clause] = STATE(3447), + [sym_requires_expression] = STATE(3447), + [sym_lambda_expression] = STATE(3447), + [sym_lambda_capture_specifier] = STATE(6853), + [sym_fold_expression] = STATE(3447), + [sym_parameter_pack_expansion] = STATE(3447), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3487), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3487), + [sym_semgrep_ellipsis] = STATE(3486), + [sym_deep_ellipsis] = STATE(3486), + [sym_identifier] = ACTIONS(4890), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4892), + [anon_sym_LPAREN2] = ACTIONS(5050), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_TILDE] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2365), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2373), + [anon_sym_not] = ACTIONS(2365), + [anon_sym_compl] = ACTIONS(2365), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_sizeof] = ACTIONS(2375), + [anon_sym___alignof__] = ACTIONS(2377), + [anon_sym___alignof] = ACTIONS(2377), + [anon_sym__alignof] = ACTIONS(2377), + [anon_sym_alignof] = ACTIONS(2377), + [anon_sym__Alignof] = ACTIONS(2377), + [anon_sym_offsetof] = ACTIONS(2379), + [anon_sym__Generic] = ACTIONS(2381), + [anon_sym_asm] = ACTIONS(2383), + [anon_sym___asm__] = ACTIONS(2383), + [sym_number_literal] = ACTIONS(2385), + [anon_sym_L_SQUOTE] = ACTIONS(2387), + [anon_sym_u_SQUOTE] = ACTIONS(2387), + [anon_sym_U_SQUOTE] = ACTIONS(2387), + [anon_sym_u8_SQUOTE] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2387), + [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(2391), + [sym_false] = ACTIONS(2391), + [anon_sym_NULL] = ACTIONS(2393), + [anon_sym_nullptr] = ACTIONS(2393), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2399), + [anon_sym_new] = ACTIONS(2401), + [anon_sym_requires] = ACTIONS(2403), + [sym_this] = ACTIONS(2391), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2405), + [sym_semgrep_named_ellipsis] = ACTIONS(2407), }, - [1526] = { - [sym_expression] = STATE(4329), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), + [1585] = { + [sym_expression] = STATE(3140), + [sym_expression_not_binary] = STATE(3486), + [sym_conditional_expression] = STATE(3447), + [sym_assignment_expression] = STATE(3447), + [sym_pointer_expression] = STATE(3487), + [sym_unary_expression] = STATE(3447), + [sym_binary_expression] = STATE(3486), + [sym_update_expression] = STATE(3447), + [sym_cast_expression] = STATE(3447), + [sym_sizeof_expression] = STATE(3447), + [sym_alignof_expression] = STATE(3447), + [sym_offsetof_expression] = STATE(3447), + [sym_generic_expression] = STATE(3447), + [sym_subscript_expression] = STATE(3487), + [sym_call_expression] = STATE(3487), + [sym_gnu_asm_expression] = STATE(3447), + [sym_field_expression] = STATE(3487), + [sym_compound_literal_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3487), + [sym_char_literal] = STATE(3228), + [sym_concatenated_string] = STATE(3228), + [sym_string_literal] = STATE(2167), + [sym_null] = STATE(3447), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8847), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3447), + [sym_raw_string_literal] = STATE(2167), + [sym_co_await_expression] = STATE(3447), + [sym_new_expression] = STATE(3447), + [sym_delete_expression] = STATE(3447), + [sym_requires_clause] = STATE(3447), + [sym_requires_expression] = STATE(3447), + [sym_lambda_expression] = STATE(3447), + [sym_lambda_capture_specifier] = STATE(6853), + [sym_fold_expression] = STATE(3447), + [sym_parameter_pack_expansion] = STATE(3447), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3487), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3487), + [sym_semgrep_ellipsis] = STATE(3486), + [sym_deep_ellipsis] = STATE(3486), + [sym_identifier] = ACTIONS(4890), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4892), + [anon_sym_LPAREN2] = ACTIONS(5050), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_TILDE] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2365), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2373), + [anon_sym_not] = ACTIONS(2365), + [anon_sym_compl] = ACTIONS(2365), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_sizeof] = ACTIONS(2375), + [anon_sym___alignof__] = ACTIONS(2377), + [anon_sym___alignof] = ACTIONS(2377), + [anon_sym__alignof] = ACTIONS(2377), + [anon_sym_alignof] = ACTIONS(2377), + [anon_sym__Alignof] = ACTIONS(2377), + [anon_sym_offsetof] = ACTIONS(2379), + [anon_sym__Generic] = ACTIONS(2381), + [anon_sym_asm] = ACTIONS(2383), + [anon_sym___asm__] = ACTIONS(2383), + [sym_number_literal] = ACTIONS(2385), + [anon_sym_L_SQUOTE] = ACTIONS(2387), + [anon_sym_u_SQUOTE] = ACTIONS(2387), + [anon_sym_U_SQUOTE] = ACTIONS(2387), + [anon_sym_u8_SQUOTE] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2387), + [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(2391), + [sym_false] = ACTIONS(2391), + [anon_sym_NULL] = ACTIONS(2393), + [anon_sym_nullptr] = ACTIONS(2393), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2399), + [anon_sym_new] = ACTIONS(2401), + [anon_sym_requires] = ACTIONS(2403), + [sym_this] = ACTIONS(2391), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2405), + [sym_semgrep_named_ellipsis] = ACTIONS(2407), }, - [1527] = { - [sym_expression] = STATE(4330), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), + [1586] = { + [sym_expression] = STATE(3154), + [sym_expression_not_binary] = STATE(3486), + [sym_conditional_expression] = STATE(3447), + [sym_assignment_expression] = STATE(3447), + [sym_pointer_expression] = STATE(3487), + [sym_unary_expression] = STATE(3447), + [sym_binary_expression] = STATE(3486), + [sym_update_expression] = STATE(3447), + [sym_cast_expression] = STATE(3447), + [sym_sizeof_expression] = STATE(3447), + [sym_alignof_expression] = STATE(3447), + [sym_offsetof_expression] = STATE(3447), + [sym_generic_expression] = STATE(3447), + [sym_subscript_expression] = STATE(3487), + [sym_call_expression] = STATE(3487), + [sym_gnu_asm_expression] = STATE(3447), + [sym_field_expression] = STATE(3487), + [sym_compound_literal_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3487), + [sym_char_literal] = STATE(3228), + [sym_concatenated_string] = STATE(3228), + [sym_string_literal] = STATE(2167), + [sym_null] = STATE(3447), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8847), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3447), + [sym_raw_string_literal] = STATE(2167), + [sym_co_await_expression] = STATE(3447), + [sym_new_expression] = STATE(3447), + [sym_delete_expression] = STATE(3447), + [sym_requires_clause] = STATE(3447), + [sym_requires_expression] = STATE(3447), + [sym_lambda_expression] = STATE(3447), + [sym_lambda_capture_specifier] = STATE(6853), + [sym_fold_expression] = STATE(3447), + [sym_parameter_pack_expansion] = STATE(3447), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3487), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3487), + [sym_semgrep_ellipsis] = STATE(3486), + [sym_deep_ellipsis] = STATE(3486), + [sym_identifier] = ACTIONS(4890), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4892), + [anon_sym_LPAREN2] = ACTIONS(5050), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_TILDE] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2365), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2373), + [anon_sym_not] = ACTIONS(2365), + [anon_sym_compl] = ACTIONS(2365), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_sizeof] = ACTIONS(2375), + [anon_sym___alignof__] = ACTIONS(2377), + [anon_sym___alignof] = ACTIONS(2377), + [anon_sym__alignof] = ACTIONS(2377), + [anon_sym_alignof] = ACTIONS(2377), + [anon_sym__Alignof] = ACTIONS(2377), + [anon_sym_offsetof] = ACTIONS(2379), + [anon_sym__Generic] = ACTIONS(2381), + [anon_sym_asm] = ACTIONS(2383), + [anon_sym___asm__] = ACTIONS(2383), + [sym_number_literal] = ACTIONS(2385), + [anon_sym_L_SQUOTE] = ACTIONS(2387), + [anon_sym_u_SQUOTE] = ACTIONS(2387), + [anon_sym_U_SQUOTE] = ACTIONS(2387), + [anon_sym_u8_SQUOTE] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2387), + [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(2391), + [sym_false] = ACTIONS(2391), + [anon_sym_NULL] = ACTIONS(2393), + [anon_sym_nullptr] = ACTIONS(2393), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2399), + [anon_sym_new] = ACTIONS(2401), + [anon_sym_requires] = ACTIONS(2403), + [sym_this] = ACTIONS(2391), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2405), + [sym_semgrep_named_ellipsis] = ACTIONS(2407), }, - [1528] = { - [sym_expression] = STATE(4334), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), + [1587] = { + [sym_expression] = STATE(3155), + [sym_expression_not_binary] = STATE(3486), + [sym_conditional_expression] = STATE(3447), + [sym_assignment_expression] = STATE(3447), + [sym_pointer_expression] = STATE(3487), + [sym_unary_expression] = STATE(3447), + [sym_binary_expression] = STATE(3486), + [sym_update_expression] = STATE(3447), + [sym_cast_expression] = STATE(3447), + [sym_sizeof_expression] = STATE(3447), + [sym_alignof_expression] = STATE(3447), + [sym_offsetof_expression] = STATE(3447), + [sym_generic_expression] = STATE(3447), + [sym_subscript_expression] = STATE(3487), + [sym_call_expression] = STATE(3487), + [sym_gnu_asm_expression] = STATE(3447), + [sym_field_expression] = STATE(3487), + [sym_compound_literal_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3487), + [sym_char_literal] = STATE(3228), + [sym_concatenated_string] = STATE(3228), + [sym_string_literal] = STATE(2167), + [sym_null] = STATE(3447), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8847), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3447), + [sym_raw_string_literal] = STATE(2167), + [sym_co_await_expression] = STATE(3447), + [sym_new_expression] = STATE(3447), + [sym_delete_expression] = STATE(3447), + [sym_requires_clause] = STATE(3447), + [sym_requires_expression] = STATE(3447), + [sym_lambda_expression] = STATE(3447), + [sym_lambda_capture_specifier] = STATE(6853), + [sym_fold_expression] = STATE(3447), + [sym_parameter_pack_expansion] = STATE(3447), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3487), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3487), + [sym_semgrep_ellipsis] = STATE(3486), + [sym_deep_ellipsis] = STATE(3486), + [sym_identifier] = ACTIONS(4890), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4892), + [anon_sym_LPAREN2] = ACTIONS(5050), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_TILDE] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2365), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2373), + [anon_sym_not] = ACTIONS(2365), + [anon_sym_compl] = ACTIONS(2365), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_sizeof] = ACTIONS(2375), + [anon_sym___alignof__] = ACTIONS(2377), + [anon_sym___alignof] = ACTIONS(2377), + [anon_sym__alignof] = ACTIONS(2377), + [anon_sym_alignof] = ACTIONS(2377), + [anon_sym__Alignof] = ACTIONS(2377), + [anon_sym_offsetof] = ACTIONS(2379), + [anon_sym__Generic] = ACTIONS(2381), + [anon_sym_asm] = ACTIONS(2383), + [anon_sym___asm__] = ACTIONS(2383), + [sym_number_literal] = ACTIONS(2385), + [anon_sym_L_SQUOTE] = ACTIONS(2387), + [anon_sym_u_SQUOTE] = ACTIONS(2387), + [anon_sym_U_SQUOTE] = ACTIONS(2387), + [anon_sym_u8_SQUOTE] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2387), + [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(2391), + [sym_false] = ACTIONS(2391), + [anon_sym_NULL] = ACTIONS(2393), + [anon_sym_nullptr] = ACTIONS(2393), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2399), + [anon_sym_new] = ACTIONS(2401), + [anon_sym_requires] = ACTIONS(2403), + [sym_this] = ACTIONS(2391), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2405), + [sym_semgrep_named_ellipsis] = ACTIONS(2407), }, - [1529] = { - [sym_expression] = STATE(4335), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), + [1588] = { + [sym_expression] = STATE(3157), + [sym_expression_not_binary] = STATE(3486), + [sym_conditional_expression] = STATE(3447), + [sym_assignment_expression] = STATE(3447), + [sym_pointer_expression] = STATE(3487), + [sym_unary_expression] = STATE(3447), + [sym_binary_expression] = STATE(3486), + [sym_update_expression] = STATE(3447), + [sym_cast_expression] = STATE(3447), + [sym_sizeof_expression] = STATE(3447), + [sym_alignof_expression] = STATE(3447), + [sym_offsetof_expression] = STATE(3447), + [sym_generic_expression] = STATE(3447), + [sym_subscript_expression] = STATE(3487), + [sym_call_expression] = STATE(3487), + [sym_gnu_asm_expression] = STATE(3447), + [sym_field_expression] = STATE(3487), + [sym_compound_literal_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3487), + [sym_char_literal] = STATE(3228), + [sym_concatenated_string] = STATE(3228), + [sym_string_literal] = STATE(2167), + [sym_null] = STATE(3447), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8847), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3447), + [sym_raw_string_literal] = STATE(2167), + [sym_co_await_expression] = STATE(3447), + [sym_new_expression] = STATE(3447), + [sym_delete_expression] = STATE(3447), + [sym_requires_clause] = STATE(3447), + [sym_requires_expression] = STATE(3447), + [sym_lambda_expression] = STATE(3447), + [sym_lambda_capture_specifier] = STATE(6853), + [sym_fold_expression] = STATE(3447), + [sym_parameter_pack_expansion] = STATE(3447), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3487), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3487), + [sym_semgrep_ellipsis] = STATE(3486), + [sym_deep_ellipsis] = STATE(3486), + [sym_identifier] = ACTIONS(4890), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4892), + [anon_sym_LPAREN2] = ACTIONS(5050), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_TILDE] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2365), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2373), + [anon_sym_not] = ACTIONS(2365), + [anon_sym_compl] = ACTIONS(2365), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_sizeof] = ACTIONS(2375), + [anon_sym___alignof__] = ACTIONS(2377), + [anon_sym___alignof] = ACTIONS(2377), + [anon_sym__alignof] = ACTIONS(2377), + [anon_sym_alignof] = ACTIONS(2377), + [anon_sym__Alignof] = ACTIONS(2377), + [anon_sym_offsetof] = ACTIONS(2379), + [anon_sym__Generic] = ACTIONS(2381), + [anon_sym_asm] = ACTIONS(2383), + [anon_sym___asm__] = ACTIONS(2383), + [sym_number_literal] = ACTIONS(2385), + [anon_sym_L_SQUOTE] = ACTIONS(2387), + [anon_sym_u_SQUOTE] = ACTIONS(2387), + [anon_sym_U_SQUOTE] = ACTIONS(2387), + [anon_sym_u8_SQUOTE] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2387), + [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(2391), + [sym_false] = ACTIONS(2391), + [anon_sym_NULL] = ACTIONS(2393), + [anon_sym_nullptr] = ACTIONS(2393), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2399), + [anon_sym_new] = ACTIONS(2401), + [anon_sym_requires] = ACTIONS(2403), + [sym_this] = ACTIONS(2391), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2405), + [sym_semgrep_named_ellipsis] = ACTIONS(2407), }, - [1530] = { - [sym_expression] = STATE(4336), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), + [1589] = { + [sym_expression] = STATE(3159), + [sym_expression_not_binary] = STATE(3486), + [sym_conditional_expression] = STATE(3447), + [sym_assignment_expression] = STATE(3447), + [sym_pointer_expression] = STATE(3487), + [sym_unary_expression] = STATE(3447), + [sym_binary_expression] = STATE(3486), + [sym_update_expression] = STATE(3447), + [sym_cast_expression] = STATE(3447), + [sym_sizeof_expression] = STATE(3447), + [sym_alignof_expression] = STATE(3447), + [sym_offsetof_expression] = STATE(3447), + [sym_generic_expression] = STATE(3447), + [sym_subscript_expression] = STATE(3487), + [sym_call_expression] = STATE(3487), + [sym_gnu_asm_expression] = STATE(3447), + [sym_field_expression] = STATE(3487), + [sym_compound_literal_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3487), + [sym_char_literal] = STATE(3228), + [sym_concatenated_string] = STATE(3228), + [sym_string_literal] = STATE(2167), + [sym_null] = STATE(3447), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8847), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3447), + [sym_raw_string_literal] = STATE(2167), + [sym_co_await_expression] = STATE(3447), + [sym_new_expression] = STATE(3447), + [sym_delete_expression] = STATE(3447), + [sym_requires_clause] = STATE(3447), + [sym_requires_expression] = STATE(3447), + [sym_lambda_expression] = STATE(3447), + [sym_lambda_capture_specifier] = STATE(6853), + [sym_fold_expression] = STATE(3447), + [sym_parameter_pack_expansion] = STATE(3447), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3487), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3487), + [sym_semgrep_ellipsis] = STATE(3486), + [sym_deep_ellipsis] = STATE(3486), + [sym_identifier] = ACTIONS(4890), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4892), + [anon_sym_LPAREN2] = ACTIONS(5050), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_TILDE] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2365), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2373), + [anon_sym_not] = ACTIONS(2365), + [anon_sym_compl] = ACTIONS(2365), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_sizeof] = ACTIONS(2375), + [anon_sym___alignof__] = ACTIONS(2377), + [anon_sym___alignof] = ACTIONS(2377), + [anon_sym__alignof] = ACTIONS(2377), + [anon_sym_alignof] = ACTIONS(2377), + [anon_sym__Alignof] = ACTIONS(2377), + [anon_sym_offsetof] = ACTIONS(2379), + [anon_sym__Generic] = ACTIONS(2381), + [anon_sym_asm] = ACTIONS(2383), + [anon_sym___asm__] = ACTIONS(2383), + [sym_number_literal] = ACTIONS(2385), + [anon_sym_L_SQUOTE] = ACTIONS(2387), + [anon_sym_u_SQUOTE] = ACTIONS(2387), + [anon_sym_U_SQUOTE] = ACTIONS(2387), + [anon_sym_u8_SQUOTE] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2387), + [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(2391), + [sym_false] = ACTIONS(2391), + [anon_sym_NULL] = ACTIONS(2393), + [anon_sym_nullptr] = ACTIONS(2393), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2399), + [anon_sym_new] = ACTIONS(2401), + [anon_sym_requires] = ACTIONS(2403), + [sym_this] = ACTIONS(2391), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2405), + [sym_semgrep_named_ellipsis] = ACTIONS(2407), }, - [1531] = { - [sym_expression] = STATE(4338), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), + [1590] = { + [sym_expression] = STATE(3161), + [sym_expression_not_binary] = STATE(3486), + [sym_conditional_expression] = STATE(3447), + [sym_assignment_expression] = STATE(3447), + [sym_pointer_expression] = STATE(3487), + [sym_unary_expression] = STATE(3447), + [sym_binary_expression] = STATE(3486), + [sym_update_expression] = STATE(3447), + [sym_cast_expression] = STATE(3447), + [sym_sizeof_expression] = STATE(3447), + [sym_alignof_expression] = STATE(3447), + [sym_offsetof_expression] = STATE(3447), + [sym_generic_expression] = STATE(3447), + [sym_subscript_expression] = STATE(3487), + [sym_call_expression] = STATE(3487), + [sym_gnu_asm_expression] = STATE(3447), + [sym_field_expression] = STATE(3487), + [sym_compound_literal_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3487), + [sym_char_literal] = STATE(3228), + [sym_concatenated_string] = STATE(3228), + [sym_string_literal] = STATE(2167), + [sym_null] = STATE(3447), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8847), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3447), + [sym_raw_string_literal] = STATE(2167), + [sym_co_await_expression] = STATE(3447), + [sym_new_expression] = STATE(3447), + [sym_delete_expression] = STATE(3447), + [sym_requires_clause] = STATE(3447), + [sym_requires_expression] = STATE(3447), + [sym_lambda_expression] = STATE(3447), + [sym_lambda_capture_specifier] = STATE(6853), + [sym_fold_expression] = STATE(3447), + [sym_parameter_pack_expansion] = STATE(3447), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3487), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3487), + [sym_semgrep_ellipsis] = STATE(3486), + [sym_deep_ellipsis] = STATE(3486), + [sym_identifier] = ACTIONS(4890), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4892), + [anon_sym_LPAREN2] = ACTIONS(5050), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_TILDE] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2365), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2373), + [anon_sym_not] = ACTIONS(2365), + [anon_sym_compl] = ACTIONS(2365), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_sizeof] = ACTIONS(2375), + [anon_sym___alignof__] = ACTIONS(2377), + [anon_sym___alignof] = ACTIONS(2377), + [anon_sym__alignof] = ACTIONS(2377), + [anon_sym_alignof] = ACTIONS(2377), + [anon_sym__Alignof] = ACTIONS(2377), + [anon_sym_offsetof] = ACTIONS(2379), + [anon_sym__Generic] = ACTIONS(2381), + [anon_sym_asm] = ACTIONS(2383), + [anon_sym___asm__] = ACTIONS(2383), + [sym_number_literal] = ACTIONS(2385), + [anon_sym_L_SQUOTE] = ACTIONS(2387), + [anon_sym_u_SQUOTE] = ACTIONS(2387), + [anon_sym_U_SQUOTE] = ACTIONS(2387), + [anon_sym_u8_SQUOTE] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2387), + [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(2391), + [sym_false] = ACTIONS(2391), + [anon_sym_NULL] = ACTIONS(2393), + [anon_sym_nullptr] = ACTIONS(2393), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2399), + [anon_sym_new] = ACTIONS(2401), + [anon_sym_requires] = ACTIONS(2403), + [sym_this] = ACTIONS(2391), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2405), + [sym_semgrep_named_ellipsis] = ACTIONS(2407), }, - [1532] = { - [sym_expression] = STATE(4348), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), + [1591] = { + [sym_expression] = STATE(3164), + [sym_expression_not_binary] = STATE(3486), + [sym_conditional_expression] = STATE(3447), + [sym_assignment_expression] = STATE(3447), + [sym_pointer_expression] = STATE(3487), + [sym_unary_expression] = STATE(3447), + [sym_binary_expression] = STATE(3486), + [sym_update_expression] = STATE(3447), + [sym_cast_expression] = STATE(3447), + [sym_sizeof_expression] = STATE(3447), + [sym_alignof_expression] = STATE(3447), + [sym_offsetof_expression] = STATE(3447), + [sym_generic_expression] = STATE(3447), + [sym_subscript_expression] = STATE(3487), + [sym_call_expression] = STATE(3487), + [sym_gnu_asm_expression] = STATE(3447), + [sym_field_expression] = STATE(3487), + [sym_compound_literal_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3487), + [sym_char_literal] = STATE(3228), + [sym_concatenated_string] = STATE(3228), + [sym_string_literal] = STATE(2167), + [sym_null] = STATE(3447), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8847), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3447), + [sym_raw_string_literal] = STATE(2167), + [sym_co_await_expression] = STATE(3447), + [sym_new_expression] = STATE(3447), + [sym_delete_expression] = STATE(3447), + [sym_requires_clause] = STATE(3447), + [sym_requires_expression] = STATE(3447), + [sym_lambda_expression] = STATE(3447), + [sym_lambda_capture_specifier] = STATE(6853), + [sym_fold_expression] = STATE(3447), + [sym_parameter_pack_expansion] = STATE(3447), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3487), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3487), + [sym_semgrep_ellipsis] = STATE(3486), + [sym_deep_ellipsis] = STATE(3486), + [sym_identifier] = ACTIONS(4890), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4892), + [anon_sym_LPAREN2] = ACTIONS(5050), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_TILDE] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2365), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2373), + [anon_sym_not] = ACTIONS(2365), + [anon_sym_compl] = ACTIONS(2365), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_sizeof] = ACTIONS(2375), + [anon_sym___alignof__] = ACTIONS(2377), + [anon_sym___alignof] = ACTIONS(2377), + [anon_sym__alignof] = ACTIONS(2377), + [anon_sym_alignof] = ACTIONS(2377), + [anon_sym__Alignof] = ACTIONS(2377), + [anon_sym_offsetof] = ACTIONS(2379), + [anon_sym__Generic] = ACTIONS(2381), + [anon_sym_asm] = ACTIONS(2383), + [anon_sym___asm__] = ACTIONS(2383), + [sym_number_literal] = ACTIONS(2385), + [anon_sym_L_SQUOTE] = ACTIONS(2387), + [anon_sym_u_SQUOTE] = ACTIONS(2387), + [anon_sym_U_SQUOTE] = ACTIONS(2387), + [anon_sym_u8_SQUOTE] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2387), + [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(2391), + [sym_false] = ACTIONS(2391), + [anon_sym_NULL] = ACTIONS(2393), + [anon_sym_nullptr] = ACTIONS(2393), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2399), + [anon_sym_new] = ACTIONS(2401), + [anon_sym_requires] = ACTIONS(2403), + [sym_this] = ACTIONS(2391), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2405), + [sym_semgrep_named_ellipsis] = ACTIONS(2407), }, - [1533] = { - [sym_expression] = STATE(4351), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), + [1592] = { + [sym_expression] = STATE(3205), + [sym_expression_not_binary] = STATE(3486), + [sym_conditional_expression] = STATE(3447), + [sym_assignment_expression] = STATE(3447), + [sym_pointer_expression] = STATE(3487), + [sym_unary_expression] = STATE(3447), + [sym_binary_expression] = STATE(3486), + [sym_update_expression] = STATE(3447), + [sym_cast_expression] = STATE(3447), + [sym_sizeof_expression] = STATE(3447), + [sym_alignof_expression] = STATE(3447), + [sym_offsetof_expression] = STATE(3447), + [sym_generic_expression] = STATE(3447), + [sym_subscript_expression] = STATE(3487), + [sym_call_expression] = STATE(3487), + [sym_gnu_asm_expression] = STATE(3447), + [sym_field_expression] = STATE(3487), + [sym_compound_literal_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3487), + [sym_char_literal] = STATE(3228), + [sym_concatenated_string] = STATE(3228), + [sym_string_literal] = STATE(2167), + [sym_null] = STATE(3447), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8847), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3447), + [sym_raw_string_literal] = STATE(2167), + [sym_co_await_expression] = STATE(3447), + [sym_new_expression] = STATE(3447), + [sym_delete_expression] = STATE(3447), + [sym_requires_clause] = STATE(3447), + [sym_requires_expression] = STATE(3447), + [sym_lambda_expression] = STATE(3447), + [sym_lambda_capture_specifier] = STATE(6853), + [sym_fold_expression] = STATE(3447), + [sym_parameter_pack_expansion] = STATE(3447), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3487), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3487), + [sym_semgrep_ellipsis] = STATE(3486), + [sym_deep_ellipsis] = STATE(3486), + [sym_identifier] = ACTIONS(4890), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4892), + [anon_sym_LPAREN2] = ACTIONS(5050), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_TILDE] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2365), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2373), + [anon_sym_not] = ACTIONS(2365), + [anon_sym_compl] = ACTIONS(2365), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_sizeof] = ACTIONS(2375), + [anon_sym___alignof__] = ACTIONS(2377), + [anon_sym___alignof] = ACTIONS(2377), + [anon_sym__alignof] = ACTIONS(2377), + [anon_sym_alignof] = ACTIONS(2377), + [anon_sym__Alignof] = ACTIONS(2377), + [anon_sym_offsetof] = ACTIONS(2379), + [anon_sym__Generic] = ACTIONS(2381), + [anon_sym_asm] = ACTIONS(2383), + [anon_sym___asm__] = ACTIONS(2383), + [sym_number_literal] = ACTIONS(2385), + [anon_sym_L_SQUOTE] = ACTIONS(2387), + [anon_sym_u_SQUOTE] = ACTIONS(2387), + [anon_sym_U_SQUOTE] = ACTIONS(2387), + [anon_sym_u8_SQUOTE] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2387), + [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(2391), + [sym_false] = ACTIONS(2391), + [anon_sym_NULL] = ACTIONS(2393), + [anon_sym_nullptr] = ACTIONS(2393), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2399), + [anon_sym_new] = ACTIONS(2401), + [anon_sym_requires] = ACTIONS(2403), + [sym_this] = ACTIONS(2391), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2405), + [sym_semgrep_named_ellipsis] = ACTIONS(2407), }, - [1534] = { - [sym_expression] = STATE(4356), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), + [1593] = { + [sym_expression] = STATE(3133), + [sym_expression_not_binary] = STATE(3486), + [sym_conditional_expression] = STATE(3447), + [sym_assignment_expression] = STATE(3447), + [sym_pointer_expression] = STATE(3487), + [sym_unary_expression] = STATE(3447), + [sym_binary_expression] = STATE(3486), + [sym_update_expression] = STATE(3447), + [sym_cast_expression] = STATE(3447), + [sym_sizeof_expression] = STATE(3447), + [sym_alignof_expression] = STATE(3447), + [sym_offsetof_expression] = STATE(3447), + [sym_generic_expression] = STATE(3447), + [sym_subscript_expression] = STATE(3487), + [sym_call_expression] = STATE(3487), + [sym_gnu_asm_expression] = STATE(3447), + [sym_field_expression] = STATE(3487), + [sym_compound_literal_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3487), + [sym_char_literal] = STATE(3228), + [sym_concatenated_string] = STATE(3228), + [sym_string_literal] = STATE(2167), + [sym_null] = STATE(3447), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8847), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3447), + [sym_raw_string_literal] = STATE(2167), + [sym_co_await_expression] = STATE(3447), + [sym_new_expression] = STATE(3447), + [sym_delete_expression] = STATE(3447), + [sym_requires_clause] = STATE(3447), + [sym_requires_expression] = STATE(3447), + [sym_lambda_expression] = STATE(3447), + [sym_lambda_capture_specifier] = STATE(6853), + [sym_fold_expression] = STATE(3447), + [sym_parameter_pack_expansion] = STATE(3447), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3487), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3487), + [sym_semgrep_ellipsis] = STATE(3486), + [sym_deep_ellipsis] = STATE(3486), + [sym_identifier] = ACTIONS(4890), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4892), + [anon_sym_LPAREN2] = ACTIONS(5050), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_TILDE] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2365), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2373), + [anon_sym_not] = ACTIONS(2365), + [anon_sym_compl] = ACTIONS(2365), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_sizeof] = ACTIONS(2375), + [anon_sym___alignof__] = ACTIONS(2377), + [anon_sym___alignof] = ACTIONS(2377), + [anon_sym__alignof] = ACTIONS(2377), + [anon_sym_alignof] = ACTIONS(2377), + [anon_sym__Alignof] = ACTIONS(2377), + [anon_sym_offsetof] = ACTIONS(2379), + [anon_sym__Generic] = ACTIONS(2381), + [anon_sym_asm] = ACTIONS(2383), + [anon_sym___asm__] = ACTIONS(2383), + [sym_number_literal] = ACTIONS(2385), + [anon_sym_L_SQUOTE] = ACTIONS(2387), + [anon_sym_u_SQUOTE] = ACTIONS(2387), + [anon_sym_U_SQUOTE] = ACTIONS(2387), + [anon_sym_u8_SQUOTE] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2387), + [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(2391), + [sym_false] = ACTIONS(2391), + [anon_sym_NULL] = ACTIONS(2393), + [anon_sym_nullptr] = ACTIONS(2393), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2399), + [anon_sym_new] = ACTIONS(2401), + [anon_sym_requires] = ACTIONS(2403), + [sym_this] = ACTIONS(2391), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2405), + [sym_semgrep_named_ellipsis] = ACTIONS(2407), }, - [1535] = { - [sym_expression] = STATE(4362), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), + [1594] = { + [sym_expression] = STATE(4668), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3204), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3204), + [sym_call_expression] = STATE(3204), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3204), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3204), + [sym_char_literal] = STATE(4797), + [sym_concatenated_string] = STATE(4797), + [sym_string_literal] = STATE(3234), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3234), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6827), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(3204), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3204), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5054), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(3897), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4936), + [anon_sym_PLUS_PLUS] = ACTIONS(4936), + [anon_sym_sizeof] = ACTIONS(3901), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(3903), + [anon_sym_L_SQUOTE] = ACTIONS(3905), + [anon_sym_u_SQUOTE] = ACTIONS(3905), + [anon_sym_U_SQUOTE] = ACTIONS(3905), + [anon_sym_u8_SQUOTE] = ACTIONS(3905), + [anon_sym_SQUOTE] = ACTIONS(3905), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3909), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + [anon_sym_co_await] = ACTIONS(3913), + [anon_sym_new] = ACTIONS(3915), + [anon_sym_requires] = ACTIONS(3917), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1536] = { - [sym_expression] = STATE(4377), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), + [1595] = { + [sym_expression] = STATE(5530), + [sym_expression_not_binary] = STATE(5685), + [sym_conditional_expression] = STATE(5675), + [sym_assignment_expression] = STATE(5675), + [sym_pointer_expression] = STATE(4201), + [sym_unary_expression] = STATE(5675), + [sym_binary_expression] = STATE(5685), + [sym_update_expression] = STATE(5675), + [sym_cast_expression] = STATE(5675), + [sym_sizeof_expression] = STATE(5675), + [sym_alignof_expression] = STATE(5675), + [sym_offsetof_expression] = STATE(5675), + [sym_generic_expression] = STATE(5675), + [sym_subscript_expression] = STATE(4201), + [sym_call_expression] = STATE(4201), + [sym_gnu_asm_expression] = STATE(5675), + [sym_field_expression] = STATE(4201), + [sym_compound_literal_expression] = STATE(5675), + [sym_parenthesized_expression] = STATE(4201), + [sym_char_literal] = STATE(5600), + [sym_concatenated_string] = STATE(5600), + [sym_string_literal] = STATE(4359), + [sym_null] = STATE(5675), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9034), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5675), + [sym_raw_string_literal] = STATE(4359), + [sym_co_await_expression] = STATE(5675), + [sym_new_expression] = STATE(5675), + [sym_delete_expression] = STATE(5675), + [sym_requires_clause] = STATE(5675), + [sym_requires_expression] = STATE(5675), + [sym_lambda_expression] = STATE(5675), + [sym_lambda_capture_specifier] = STATE(6898), + [sym_fold_expression] = STATE(5675), + [sym_parameter_pack_expansion] = STATE(5675), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4201), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4201), + [sym_semgrep_ellipsis] = STATE(5685), + [sym_deep_ellipsis] = STATE(5685), + [sym_identifier] = ACTIONS(4242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4954), + [anon_sym_LPAREN2] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_TILDE] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(4248), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4252), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_sizeof] = ACTIONS(4254), + [anon_sym___alignof__] = ACTIONS(4256), + [anon_sym___alignof] = ACTIONS(4256), + [anon_sym__alignof] = ACTIONS(4256), + [anon_sym_alignof] = ACTIONS(4256), + [anon_sym__Alignof] = ACTIONS(4256), + [anon_sym_offsetof] = ACTIONS(4258), + [anon_sym__Generic] = ACTIONS(4260), + [anon_sym_asm] = ACTIONS(4262), + [anon_sym___asm__] = ACTIONS(4262), + [sym_number_literal] = ACTIONS(4264), + [anon_sym_L_SQUOTE] = ACTIONS(4266), + [anon_sym_u_SQUOTE] = ACTIONS(4266), + [anon_sym_U_SQUOTE] = ACTIONS(4266), + [anon_sym_u8_SQUOTE] = ACTIONS(4266), + [anon_sym_SQUOTE] = ACTIONS(4266), + [anon_sym_L_DQUOTE] = ACTIONS(4268), + [anon_sym_u_DQUOTE] = ACTIONS(4268), + [anon_sym_U_DQUOTE] = ACTIONS(4268), + [anon_sym_u8_DQUOTE] = ACTIONS(4268), + [anon_sym_DQUOTE] = ACTIONS(4268), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4272), + [anon_sym_nullptr] = ACTIONS(4272), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4274), + [anon_sym_R_DQUOTE] = ACTIONS(4276), + [anon_sym_LR_DQUOTE] = ACTIONS(4276), + [anon_sym_uR_DQUOTE] = ACTIONS(4276), + [anon_sym_UR_DQUOTE] = ACTIONS(4276), + [anon_sym_u8R_DQUOTE] = ACTIONS(4276), + [anon_sym_co_await] = ACTIONS(4278), + [anon_sym_new] = ACTIONS(4280), + [anon_sym_requires] = ACTIONS(4282), + [sym_this] = ACTIONS(4270), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4284), + [sym_semgrep_named_ellipsis] = ACTIONS(4286), }, - [1537] = { - [sym_expression] = STATE(4379), - [sym_expression_not_binary] = STATE(4569), - [sym_conditional_expression] = STATE(4566), - [sym_assignment_expression] = STATE(4566), - [sym_pointer_expression] = STATE(4158), - [sym_unary_expression] = STATE(4566), - [sym_binary_expression] = STATE(4569), - [sym_update_expression] = STATE(4566), - [sym_cast_expression] = STATE(4566), - [sym_sizeof_expression] = STATE(4566), - [sym_alignof_expression] = STATE(4566), - [sym_offsetof_expression] = STATE(4566), - [sym_generic_expression] = STATE(4566), - [sym_subscript_expression] = STATE(4158), - [sym_call_expression] = STATE(4158), - [sym_gnu_asm_expression] = STATE(4566), - [sym_field_expression] = STATE(4158), - [sym_compound_literal_expression] = STATE(4566), - [sym_parenthesized_expression] = STATE(4158), - [sym_char_literal] = STATE(4489), - [sym_concatenated_string] = STATE(4489), - [sym_string_literal] = STATE(2616), - [sym_null] = STATE(4566), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9345), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4566), - [sym_raw_string_literal] = STATE(2616), - [sym_co_await_expression] = STATE(4566), - [sym_new_expression] = STATE(4566), - [sym_delete_expression] = STATE(4566), - [sym_requires_clause] = STATE(4566), - [sym_requires_expression] = STATE(4566), - [sym_lambda_expression] = STATE(4566), - [sym_lambda_capture_specifier] = STATE(7328), - [sym_fold_expression] = STATE(4566), - [sym_parameter_pack_expansion] = STATE(4566), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4158), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4158), - [sym_semgrep_ellipsis] = STATE(4569), - [sym_deep_ellipsis] = STATE(4569), - [sym_identifier] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5396), - [anon_sym_LPAREN2] = ACTIONS(5398), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_compl] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2139), - [anon_sym___alignof__] = ACTIONS(2141), - [anon_sym___alignof] = ACTIONS(2141), - [anon_sym__alignof] = ACTIONS(2141), - [anon_sym_alignof] = ACTIONS(2141), - [anon_sym__Alignof] = ACTIONS(2141), - [anon_sym_offsetof] = ACTIONS(2143), - [anon_sym__Generic] = ACTIONS(2145), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym___asm__] = ACTIONS(2147), - [sym_number_literal] = ACTIONS(2149), - [anon_sym_L_SQUOTE] = ACTIONS(2151), - [anon_sym_u_SQUOTE] = ACTIONS(2151), - [anon_sym_U_SQUOTE] = ACTIONS(2151), - [anon_sym_u8_SQUOTE] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_L_DQUOTE] = ACTIONS(2153), - [anon_sym_u_DQUOTE] = ACTIONS(2153), - [anon_sym_U_DQUOTE] = ACTIONS(2153), - [anon_sym_u8_DQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [anon_sym_NULL] = ACTIONS(2157), - [anon_sym_nullptr] = ACTIONS(2157), + [1596] = { + [sym_expression] = STATE(4669), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3204), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3204), + [sym_call_expression] = STATE(3204), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3204), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3204), + [sym_char_literal] = STATE(4797), + [sym_concatenated_string] = STATE(4797), + [sym_string_literal] = STATE(3234), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3234), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6827), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(3204), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3204), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5054), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(3897), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4936), + [anon_sym_PLUS_PLUS] = ACTIONS(4936), + [anon_sym_sizeof] = ACTIONS(3901), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(3903), + [anon_sym_L_SQUOTE] = ACTIONS(3905), + [anon_sym_u_SQUOTE] = ACTIONS(3905), + [anon_sym_U_SQUOTE] = ACTIONS(3905), + [anon_sym_u8_SQUOTE] = ACTIONS(3905), + [anon_sym_SQUOTE] = ACTIONS(3905), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_R_DQUOTE] = ACTIONS(2161), - [anon_sym_LR_DQUOTE] = ACTIONS(2161), - [anon_sym_uR_DQUOTE] = ACTIONS(2161), - [anon_sym_UR_DQUOTE] = ACTIONS(2161), - [anon_sym_u8R_DQUOTE] = ACTIONS(2161), - [anon_sym_co_await] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_requires] = ACTIONS(2167), - [sym_this] = ACTIONS(2155), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2169), - [sym_semgrep_named_ellipsis] = ACTIONS(2171), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3909), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + [anon_sym_co_await] = ACTIONS(3913), + [anon_sym_new] = ACTIONS(3915), + [anon_sym_requires] = ACTIONS(3917), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1538] = { - [sym_expression] = STATE(5764), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9595), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [sym_identifier] = ACTIONS(4059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4063), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), + [1597] = { + [sym_expression] = STATE(4670), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3204), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3204), + [sym_call_expression] = STATE(3204), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3204), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3204), + [sym_char_literal] = STATE(4797), + [sym_concatenated_string] = STATE(4797), + [sym_string_literal] = STATE(3234), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3234), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6827), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(3204), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3204), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5328), + [anon_sym_LPAREN2] = ACTIONS(5332), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(3897), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4936), + [anon_sym_PLUS_PLUS] = ACTIONS(4936), + [anon_sym_sizeof] = ACTIONS(3901), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(3903), + [anon_sym_L_SQUOTE] = ACTIONS(3905), + [anon_sym_u_SQUOTE] = ACTIONS(3905), + [anon_sym_U_SQUOTE] = ACTIONS(3905), + [anon_sym_u8_SQUOTE] = ACTIONS(3905), + [anon_sym_SQUOTE] = ACTIONS(3905), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3909), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + [anon_sym_co_await] = ACTIONS(3913), + [anon_sym_new] = ACTIONS(3915), + [anon_sym_requires] = ACTIONS(3917), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1539] = { - [sym_expression] = STATE(3014), - [sym_expression_not_binary] = STATE(3362), - [sym_conditional_expression] = STATE(3356), - [sym_assignment_expression] = STATE(3356), - [sym_pointer_expression] = STATE(3367), - [sym_unary_expression] = STATE(3356), - [sym_binary_expression] = STATE(3362), - [sym_update_expression] = STATE(3356), - [sym_cast_expression] = STATE(3356), - [sym_sizeof_expression] = STATE(3356), - [sym_alignof_expression] = STATE(3356), - [sym_offsetof_expression] = STATE(3356), - [sym_generic_expression] = STATE(3356), - [sym_subscript_expression] = STATE(3367), - [sym_call_expression] = STATE(3367), - [sym_gnu_asm_expression] = STATE(3356), - [sym_field_expression] = STATE(3367), - [sym_compound_literal_expression] = STATE(3356), - [sym_parenthesized_expression] = STATE(3367), - [sym_char_literal] = STATE(3167), - [sym_concatenated_string] = STATE(3167), - [sym_string_literal] = STATE(1962), - [sym_null] = STATE(3356), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9141), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3356), - [sym_raw_string_literal] = STATE(1962), - [sym_co_await_expression] = STATE(3356), - [sym_new_expression] = STATE(3356), - [sym_delete_expression] = STATE(3356), - [sym_requires_clause] = STATE(3356), - [sym_requires_expression] = STATE(3356), - [sym_lambda_expression] = STATE(3356), - [sym_lambda_capture_specifier] = STATE(7329), - [sym_fold_expression] = STATE(3356), - [sym_parameter_pack_expansion] = STATE(3356), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3367), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3367), - [sym_semgrep_ellipsis] = STATE(3362), - [sym_deep_ellipsis] = STATE(3362), - [sym_identifier] = ACTIONS(5048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5050), - [anon_sym_LPAREN2] = ACTIONS(5114), - [anon_sym_BANG] = ACTIONS(2285), - [anon_sym_TILDE] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2283), - [anon_sym_PLUS] = ACTIONS(2283), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), + [1598] = { + [sym_expression] = STATE(3072), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(3049), + [anon_sym_LBRACK] = ACTIONS(3044), [sym_primitive_type] = ACTIONS(2291), - [anon_sym_not] = ACTIONS(2283), - [anon_sym_compl] = ACTIONS(2283), - [anon_sym_DASH_DASH] = ACTIONS(5052), - [anon_sym_PLUS_PLUS] = ACTIONS(5052), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), [anon_sym_sizeof] = ACTIONS(2293), [anon_sym___alignof__] = ACTIONS(2295), [anon_sym___alignof] = ACTIONS(2295), @@ -257096,7 +252592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(2315), [anon_sym_R_DQUOTE] = ACTIONS(2317), [anon_sym_LR_DQUOTE] = ACTIONS(2317), @@ -257110,63 +252606,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, - [1540] = { - [sym_expression] = STATE(5303), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1599] = { + [sym_expression] = STATE(4908), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -257198,7 +252694,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -257212,63 +252708,675 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1541] = { - [sym_expression] = STATE(5263), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1600] = { + [sym_expression] = STATE(2896), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3584), + [sym_concatenated_string] = STATE(3584), + [sym_string_literal] = STATE(2482), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2482), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5060), + [anon_sym_BANG] = ACTIONS(2578), + [anon_sym_TILDE] = ACTIONS(2578), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(2580), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2576), + [anon_sym_compl] = ACTIONS(2576), + [anon_sym_DASH_DASH] = ACTIONS(4964), + [anon_sym_PLUS_PLUS] = ACTIONS(4964), + [anon_sym_sizeof] = ACTIONS(2582), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2584), + [anon_sym_L_SQUOTE] = ACTIONS(2586), + [anon_sym_u_SQUOTE] = ACTIONS(2586), + [anon_sym_U_SQUOTE] = ACTIONS(2586), + [anon_sym_u8_SQUOTE] = ACTIONS(2586), + [anon_sym_SQUOTE] = ACTIONS(2586), + [anon_sym_L_DQUOTE] = ACTIONS(2588), + [anon_sym_u_DQUOTE] = ACTIONS(2588), + [anon_sym_U_DQUOTE] = ACTIONS(2588), + [anon_sym_u8_DQUOTE] = ACTIONS(2588), + [anon_sym_DQUOTE] = ACTIONS(2588), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2590), + [anon_sym_R_DQUOTE] = ACTIONS(2592), + [anon_sym_LR_DQUOTE] = ACTIONS(2592), + [anon_sym_uR_DQUOTE] = ACTIONS(2592), + [anon_sym_UR_DQUOTE] = ACTIONS(2592), + [anon_sym_u8R_DQUOTE] = ACTIONS(2592), + [anon_sym_co_await] = ACTIONS(2594), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1601] = { + [sym_expression] = STATE(2970), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3584), + [sym_concatenated_string] = STATE(3584), + [sym_string_literal] = STATE(2482), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2482), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5060), + [anon_sym_BANG] = ACTIONS(2578), + [anon_sym_TILDE] = ACTIONS(2578), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(2580), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2576), + [anon_sym_compl] = ACTIONS(2576), + [anon_sym_DASH_DASH] = ACTIONS(4964), + [anon_sym_PLUS_PLUS] = ACTIONS(4964), + [anon_sym_sizeof] = ACTIONS(2582), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2584), + [anon_sym_L_SQUOTE] = ACTIONS(2586), + [anon_sym_u_SQUOTE] = ACTIONS(2586), + [anon_sym_U_SQUOTE] = ACTIONS(2586), + [anon_sym_u8_SQUOTE] = ACTIONS(2586), + [anon_sym_SQUOTE] = ACTIONS(2586), + [anon_sym_L_DQUOTE] = ACTIONS(2588), + [anon_sym_u_DQUOTE] = ACTIONS(2588), + [anon_sym_U_DQUOTE] = ACTIONS(2588), + [anon_sym_u8_DQUOTE] = ACTIONS(2588), + [anon_sym_DQUOTE] = ACTIONS(2588), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2590), + [anon_sym_R_DQUOTE] = ACTIONS(2592), + [anon_sym_LR_DQUOTE] = ACTIONS(2592), + [anon_sym_uR_DQUOTE] = ACTIONS(2592), + [anon_sym_UR_DQUOTE] = ACTIONS(2592), + [anon_sym_u8R_DQUOTE] = ACTIONS(2592), + [anon_sym_co_await] = ACTIONS(2594), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1602] = { + [sym_expression] = STATE(2973), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3584), + [sym_concatenated_string] = STATE(3584), + [sym_string_literal] = STATE(2482), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2482), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5298), + [anon_sym_LPAREN2] = ACTIONS(5334), + [anon_sym_BANG] = ACTIONS(2578), + [anon_sym_TILDE] = ACTIONS(2578), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_AMP] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(2580), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2576), + [anon_sym_compl] = ACTIONS(2576), + [anon_sym_DASH_DASH] = ACTIONS(4964), + [anon_sym_PLUS_PLUS] = ACTIONS(4964), + [anon_sym_sizeof] = ACTIONS(2582), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2584), + [anon_sym_L_SQUOTE] = ACTIONS(2586), + [anon_sym_u_SQUOTE] = ACTIONS(2586), + [anon_sym_U_SQUOTE] = ACTIONS(2586), + [anon_sym_u8_SQUOTE] = ACTIONS(2586), + [anon_sym_SQUOTE] = ACTIONS(2586), + [anon_sym_L_DQUOTE] = ACTIONS(2588), + [anon_sym_u_DQUOTE] = ACTIONS(2588), + [anon_sym_U_DQUOTE] = ACTIONS(2588), + [anon_sym_u8_DQUOTE] = ACTIONS(2588), + [anon_sym_DQUOTE] = ACTIONS(2588), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2590), + [anon_sym_R_DQUOTE] = ACTIONS(2592), + [anon_sym_LR_DQUOTE] = ACTIONS(2592), + [anon_sym_uR_DQUOTE] = ACTIONS(2592), + [anon_sym_UR_DQUOTE] = ACTIONS(2592), + [anon_sym_u8R_DQUOTE] = ACTIONS(2592), + [anon_sym_co_await] = ACTIONS(2594), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1603] = { + [sym_expression] = STATE(4895), + [sym_expression_not_binary] = STATE(5098), + [sym_conditional_expression] = STATE(5096), + [sym_assignment_expression] = STATE(5096), + [sym_pointer_expression] = STATE(3493), + [sym_unary_expression] = STATE(5096), + [sym_binary_expression] = STATE(5098), + [sym_update_expression] = STATE(5096), + [sym_cast_expression] = STATE(5096), + [sym_sizeof_expression] = STATE(5096), + [sym_alignof_expression] = STATE(5096), + [sym_offsetof_expression] = STATE(5096), + [sym_generic_expression] = STATE(5096), + [sym_subscript_expression] = STATE(3493), + [sym_call_expression] = STATE(3493), + [sym_gnu_asm_expression] = STATE(5096), + [sym_field_expression] = STATE(3493), + [sym_compound_literal_expression] = STATE(5096), + [sym_parenthesized_expression] = STATE(3493), + [sym_char_literal] = STATE(4944), + [sym_concatenated_string] = STATE(4944), + [sym_string_literal] = STATE(3577), + [sym_null] = STATE(5096), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9068), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5096), + [sym_raw_string_literal] = STATE(3577), + [sym_co_await_expression] = STATE(5096), + [sym_new_expression] = STATE(5096), + [sym_delete_expression] = STATE(5096), + [sym_requires_clause] = STATE(5096), + [sym_requires_expression] = STATE(5096), + [sym_lambda_expression] = STATE(5096), + [sym_lambda_capture_specifier] = STATE(6837), + [sym_fold_expression] = STATE(5096), + [sym_parameter_pack_expansion] = STATE(5096), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3493), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3493), + [sym_semgrep_ellipsis] = STATE(5098), + [sym_deep_ellipsis] = STATE(5098), + [sym_identifier] = ACTIONS(4980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4982), + [anon_sym_LPAREN2] = ACTIONS(5040), + [anon_sym_BANG] = ACTIONS(3960), + [anon_sym_TILDE] = ACTIONS(3960), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(3962), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3966), + [anon_sym_not] = ACTIONS(3958), + [anon_sym_compl] = ACTIONS(3958), + [anon_sym_DASH_DASH] = ACTIONS(4984), + [anon_sym_PLUS_PLUS] = ACTIONS(4984), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym___alignof__] = ACTIONS(3970), + [anon_sym___alignof] = ACTIONS(3970), + [anon_sym__alignof] = ACTIONS(3970), + [anon_sym_alignof] = ACTIONS(3970), + [anon_sym__Alignof] = ACTIONS(3970), + [anon_sym_offsetof] = ACTIONS(3972), + [anon_sym__Generic] = ACTIONS(3974), + [anon_sym_asm] = ACTIONS(3976), + [anon_sym___asm__] = ACTIONS(3976), + [sym_number_literal] = ACTIONS(3978), + [anon_sym_L_SQUOTE] = ACTIONS(3980), + [anon_sym_u_SQUOTE] = ACTIONS(3980), + [anon_sym_U_SQUOTE] = ACTIONS(3980), + [anon_sym_u8_SQUOTE] = ACTIONS(3980), + [anon_sym_SQUOTE] = ACTIONS(3980), + [anon_sym_L_DQUOTE] = ACTIONS(3982), + [anon_sym_u_DQUOTE] = ACTIONS(3982), + [anon_sym_U_DQUOTE] = ACTIONS(3982), + [anon_sym_u8_DQUOTE] = ACTIONS(3982), + [anon_sym_DQUOTE] = ACTIONS(3982), + [sym_true] = ACTIONS(3984), + [sym_false] = ACTIONS(3984), + [anon_sym_NULL] = ACTIONS(3986), + [anon_sym_nullptr] = ACTIONS(3986), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3988), + [anon_sym_R_DQUOTE] = ACTIONS(3990), + [anon_sym_LR_DQUOTE] = ACTIONS(3990), + [anon_sym_uR_DQUOTE] = ACTIONS(3990), + [anon_sym_UR_DQUOTE] = ACTIONS(3990), + [anon_sym_u8R_DQUOTE] = ACTIONS(3990), + [anon_sym_co_await] = ACTIONS(3992), + [anon_sym_new] = ACTIONS(3994), + [anon_sym_requires] = ACTIONS(3996), + [sym_this] = ACTIONS(3984), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3998), + [sym_semgrep_named_ellipsis] = ACTIONS(4000), + }, + [1604] = { + [sym_expression] = STATE(4896), + [sym_expression_not_binary] = STATE(5098), + [sym_conditional_expression] = STATE(5096), + [sym_assignment_expression] = STATE(5096), + [sym_pointer_expression] = STATE(3493), + [sym_unary_expression] = STATE(5096), + [sym_binary_expression] = STATE(5098), + [sym_update_expression] = STATE(5096), + [sym_cast_expression] = STATE(5096), + [sym_sizeof_expression] = STATE(5096), + [sym_alignof_expression] = STATE(5096), + [sym_offsetof_expression] = STATE(5096), + [sym_generic_expression] = STATE(5096), + [sym_subscript_expression] = STATE(3493), + [sym_call_expression] = STATE(3493), + [sym_gnu_asm_expression] = STATE(5096), + [sym_field_expression] = STATE(3493), + [sym_compound_literal_expression] = STATE(5096), + [sym_parenthesized_expression] = STATE(3493), + [sym_char_literal] = STATE(4944), + [sym_concatenated_string] = STATE(4944), + [sym_string_literal] = STATE(3577), + [sym_null] = STATE(5096), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9068), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5096), + [sym_raw_string_literal] = STATE(3577), + [sym_co_await_expression] = STATE(5096), + [sym_new_expression] = STATE(5096), + [sym_delete_expression] = STATE(5096), + [sym_requires_clause] = STATE(5096), + [sym_requires_expression] = STATE(5096), + [sym_lambda_expression] = STATE(5096), + [sym_lambda_capture_specifier] = STATE(6837), + [sym_fold_expression] = STATE(5096), + [sym_parameter_pack_expansion] = STATE(5096), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3493), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3493), + [sym_semgrep_ellipsis] = STATE(5098), + [sym_deep_ellipsis] = STATE(5098), + [sym_identifier] = ACTIONS(4980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4982), + [anon_sym_LPAREN2] = ACTIONS(5040), + [anon_sym_BANG] = ACTIONS(3960), + [anon_sym_TILDE] = ACTIONS(3960), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(3962), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3966), + [anon_sym_not] = ACTIONS(3958), + [anon_sym_compl] = ACTIONS(3958), + [anon_sym_DASH_DASH] = ACTIONS(4984), + [anon_sym_PLUS_PLUS] = ACTIONS(4984), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym___alignof__] = ACTIONS(3970), + [anon_sym___alignof] = ACTIONS(3970), + [anon_sym__alignof] = ACTIONS(3970), + [anon_sym_alignof] = ACTIONS(3970), + [anon_sym__Alignof] = ACTIONS(3970), + [anon_sym_offsetof] = ACTIONS(3972), + [anon_sym__Generic] = ACTIONS(3974), + [anon_sym_asm] = ACTIONS(3976), + [anon_sym___asm__] = ACTIONS(3976), + [sym_number_literal] = ACTIONS(3978), + [anon_sym_L_SQUOTE] = ACTIONS(3980), + [anon_sym_u_SQUOTE] = ACTIONS(3980), + [anon_sym_U_SQUOTE] = ACTIONS(3980), + [anon_sym_u8_SQUOTE] = ACTIONS(3980), + [anon_sym_SQUOTE] = ACTIONS(3980), + [anon_sym_L_DQUOTE] = ACTIONS(3982), + [anon_sym_u_DQUOTE] = ACTIONS(3982), + [anon_sym_U_DQUOTE] = ACTIONS(3982), + [anon_sym_u8_DQUOTE] = ACTIONS(3982), + [anon_sym_DQUOTE] = ACTIONS(3982), + [sym_true] = ACTIONS(3984), + [sym_false] = ACTIONS(3984), + [anon_sym_NULL] = ACTIONS(3986), + [anon_sym_nullptr] = ACTIONS(3986), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3988), + [anon_sym_R_DQUOTE] = ACTIONS(3990), + [anon_sym_LR_DQUOTE] = ACTIONS(3990), + [anon_sym_uR_DQUOTE] = ACTIONS(3990), + [anon_sym_UR_DQUOTE] = ACTIONS(3990), + [anon_sym_u8R_DQUOTE] = ACTIONS(3990), + [anon_sym_co_await] = ACTIONS(3992), + [anon_sym_new] = ACTIONS(3994), + [anon_sym_requires] = ACTIONS(3996), + [sym_this] = ACTIONS(3984), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3998), + [sym_semgrep_named_ellipsis] = ACTIONS(4000), + }, + [1605] = { + [sym_expression] = STATE(4897), + [sym_expression_not_binary] = STATE(5098), + [sym_conditional_expression] = STATE(5096), + [sym_assignment_expression] = STATE(5096), + [sym_pointer_expression] = STATE(3493), + [sym_unary_expression] = STATE(5096), + [sym_binary_expression] = STATE(5098), + [sym_update_expression] = STATE(5096), + [sym_cast_expression] = STATE(5096), + [sym_sizeof_expression] = STATE(5096), + [sym_alignof_expression] = STATE(5096), + [sym_offsetof_expression] = STATE(5096), + [sym_generic_expression] = STATE(5096), + [sym_subscript_expression] = STATE(3493), + [sym_call_expression] = STATE(3493), + [sym_gnu_asm_expression] = STATE(5096), + [sym_field_expression] = STATE(3493), + [sym_compound_literal_expression] = STATE(5096), + [sym_parenthesized_expression] = STATE(3493), + [sym_char_literal] = STATE(4944), + [sym_concatenated_string] = STATE(4944), + [sym_string_literal] = STATE(3577), + [sym_null] = STATE(5096), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9068), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5096), + [sym_raw_string_literal] = STATE(3577), + [sym_co_await_expression] = STATE(5096), + [sym_new_expression] = STATE(5096), + [sym_delete_expression] = STATE(5096), + [sym_requires_clause] = STATE(5096), + [sym_requires_expression] = STATE(5096), + [sym_lambda_expression] = STATE(5096), + [sym_lambda_capture_specifier] = STATE(6837), + [sym_fold_expression] = STATE(5096), + [sym_parameter_pack_expansion] = STATE(5096), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3493), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3493), + [sym_semgrep_ellipsis] = STATE(5098), + [sym_deep_ellipsis] = STATE(5098), + [sym_identifier] = ACTIONS(4980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5336), + [anon_sym_LPAREN2] = ACTIONS(5338), + [anon_sym_BANG] = ACTIONS(3960), + [anon_sym_TILDE] = ACTIONS(3960), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(3962), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3966), + [anon_sym_not] = ACTIONS(3958), + [anon_sym_compl] = ACTIONS(3958), + [anon_sym_DASH_DASH] = ACTIONS(4984), + [anon_sym_PLUS_PLUS] = ACTIONS(4984), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym___alignof__] = ACTIONS(3970), + [anon_sym___alignof] = ACTIONS(3970), + [anon_sym__alignof] = ACTIONS(3970), + [anon_sym_alignof] = ACTIONS(3970), + [anon_sym__Alignof] = ACTIONS(3970), + [anon_sym_offsetof] = ACTIONS(3972), + [anon_sym__Generic] = ACTIONS(3974), + [anon_sym_asm] = ACTIONS(3976), + [anon_sym___asm__] = ACTIONS(3976), + [sym_number_literal] = ACTIONS(3978), + [anon_sym_L_SQUOTE] = ACTIONS(3980), + [anon_sym_u_SQUOTE] = ACTIONS(3980), + [anon_sym_U_SQUOTE] = ACTIONS(3980), + [anon_sym_u8_SQUOTE] = ACTIONS(3980), + [anon_sym_SQUOTE] = ACTIONS(3980), + [anon_sym_L_DQUOTE] = ACTIONS(3982), + [anon_sym_u_DQUOTE] = ACTIONS(3982), + [anon_sym_U_DQUOTE] = ACTIONS(3982), + [anon_sym_u8_DQUOTE] = ACTIONS(3982), + [anon_sym_DQUOTE] = ACTIONS(3982), + [sym_true] = ACTIONS(3984), + [sym_false] = ACTIONS(3984), + [anon_sym_NULL] = ACTIONS(3986), + [anon_sym_nullptr] = ACTIONS(3986), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3988), + [anon_sym_R_DQUOTE] = ACTIONS(3990), + [anon_sym_LR_DQUOTE] = ACTIONS(3990), + [anon_sym_uR_DQUOTE] = ACTIONS(3990), + [anon_sym_UR_DQUOTE] = ACTIONS(3990), + [anon_sym_u8R_DQUOTE] = ACTIONS(3990), + [anon_sym_co_await] = ACTIONS(3992), + [anon_sym_new] = ACTIONS(3994), + [anon_sym_requires] = ACTIONS(3996), + [sym_this] = ACTIONS(3984), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3998), + [sym_semgrep_named_ellipsis] = ACTIONS(4000), + }, + [1606] = { + [sym_expression] = STATE(4712), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -257300,7 +253408,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -257314,63 +253422,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1542] = { - [sym_expression] = STATE(5200), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1607] = { + [sym_expression] = STATE(4909), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -257402,7 +253510,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -257416,63 +253524,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1543] = { - [sym_expression] = STATE(5237), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1608] = { + [sym_expression] = STATE(4910), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -257504,7 +253612,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -257518,71 +253626,377 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1544] = { - [sym_expression] = STATE(5285), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), + [1609] = { + [sym_expression] = STATE(2870), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(2995), + [sym_concatenated_string] = STATE(2995), + [sym_string_literal] = STATE(2040), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2040), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(5008), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5076), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_compl] = ACTIONS(2329), + [anon_sym_DASH_DASH] = ACTIONS(5010), + [anon_sym_PLUS_PLUS] = ACTIONS(5010), + [anon_sym_sizeof] = ACTIONS(2335), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2337), + [anon_sym_L_SQUOTE] = ACTIONS(2339), + [anon_sym_u_SQUOTE] = ACTIONS(2339), + [anon_sym_U_SQUOTE] = ACTIONS(2339), + [anon_sym_u8_SQUOTE] = ACTIONS(2339), + [anon_sym_SQUOTE] = ACTIONS(2339), + [anon_sym_L_DQUOTE] = ACTIONS(2341), + [anon_sym_u_DQUOTE] = ACTIONS(2341), + [anon_sym_U_DQUOTE] = ACTIONS(2341), + [anon_sym_u8_DQUOTE] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2343), + [anon_sym_R_DQUOTE] = ACTIONS(2345), + [anon_sym_LR_DQUOTE] = ACTIONS(2345), + [anon_sym_uR_DQUOTE] = ACTIONS(2345), + [anon_sym_UR_DQUOTE] = ACTIONS(2345), + [anon_sym_u8R_DQUOTE] = ACTIONS(2345), + [anon_sym_co_await] = ACTIONS(2347), + [anon_sym_new] = ACTIONS(2349), + [anon_sym_requires] = ACTIONS(2351), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1610] = { + [sym_expression] = STATE(2871), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(2995), + [sym_concatenated_string] = STATE(2995), + [sym_string_literal] = STATE(2040), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2040), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(5008), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5076), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_compl] = ACTIONS(2329), + [anon_sym_DASH_DASH] = ACTIONS(5010), + [anon_sym_PLUS_PLUS] = ACTIONS(5010), + [anon_sym_sizeof] = ACTIONS(2335), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2337), + [anon_sym_L_SQUOTE] = ACTIONS(2339), + [anon_sym_u_SQUOTE] = ACTIONS(2339), + [anon_sym_U_SQUOTE] = ACTIONS(2339), + [anon_sym_u8_SQUOTE] = ACTIONS(2339), + [anon_sym_SQUOTE] = ACTIONS(2339), + [anon_sym_L_DQUOTE] = ACTIONS(2341), + [anon_sym_u_DQUOTE] = ACTIONS(2341), + [anon_sym_U_DQUOTE] = ACTIONS(2341), + [anon_sym_u8_DQUOTE] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2343), + [anon_sym_R_DQUOTE] = ACTIONS(2345), + [anon_sym_LR_DQUOTE] = ACTIONS(2345), + [anon_sym_uR_DQUOTE] = ACTIONS(2345), + [anon_sym_UR_DQUOTE] = ACTIONS(2345), + [anon_sym_u8R_DQUOTE] = ACTIONS(2345), + [anon_sym_co_await] = ACTIONS(2347), + [anon_sym_new] = ACTIONS(2349), + [anon_sym_requires] = ACTIONS(2351), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1611] = { + [sym_expression] = STATE(2872), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(2995), + [sym_concatenated_string] = STATE(2995), + [sym_string_literal] = STATE(2040), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2040), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6650), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(5008), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5298), + [anon_sym_LPAREN2] = ACTIONS(5340), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(5056), + [anon_sym_COLON_COLON] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_compl] = ACTIONS(2329), + [anon_sym_DASH_DASH] = ACTIONS(5010), + [anon_sym_PLUS_PLUS] = ACTIONS(5010), + [anon_sym_sizeof] = ACTIONS(2335), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2337), + [anon_sym_L_SQUOTE] = ACTIONS(2339), + [anon_sym_u_SQUOTE] = ACTIONS(2339), + [anon_sym_U_SQUOTE] = ACTIONS(2339), + [anon_sym_u8_SQUOTE] = ACTIONS(2339), + [anon_sym_SQUOTE] = ACTIONS(2339), + [anon_sym_L_DQUOTE] = ACTIONS(2341), + [anon_sym_u_DQUOTE] = ACTIONS(2341), + [anon_sym_U_DQUOTE] = ACTIONS(2341), + [anon_sym_u8_DQUOTE] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2343), + [anon_sym_R_DQUOTE] = ACTIONS(2345), + [anon_sym_LR_DQUOTE] = ACTIONS(2345), + [anon_sym_uR_DQUOTE] = ACTIONS(2345), + [anon_sym_UR_DQUOTE] = ACTIONS(2345), + [anon_sym_u8R_DQUOTE] = ACTIONS(2345), + [anon_sym_co_await] = ACTIONS(2347), + [anon_sym_new] = ACTIONS(2349), + [anon_sym_requires] = ACTIONS(2351), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1612] = { + [sym_expression] = STATE(4911), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), [anon_sym_alignof] = ACTIONS(103), [anon_sym__Alignof] = ACTIONS(103), [anon_sym_offsetof] = ACTIONS(105), @@ -257606,7 +254020,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -257620,63 +254034,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1545] = { - [sym_expression] = STATE(5249), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1613] = { + [sym_expression] = STATE(4826), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -257708,7 +254122,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -257722,1593 +254136,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1546] = { - [sym_expression] = STATE(5118), - [sym_expression_not_binary] = STATE(5370), - [sym_conditional_expression] = STATE(5364), - [sym_assignment_expression] = STATE(5364), - [sym_pointer_expression] = STATE(3376), - [sym_unary_expression] = STATE(5364), - [sym_binary_expression] = STATE(5370), - [sym_update_expression] = STATE(5364), - [sym_cast_expression] = STATE(5364), - [sym_sizeof_expression] = STATE(5364), - [sym_alignof_expression] = STATE(5364), - [sym_offsetof_expression] = STATE(5364), - [sym_generic_expression] = STATE(5364), - [sym_subscript_expression] = STATE(3376), - [sym_call_expression] = STATE(3376), - [sym_gnu_asm_expression] = STATE(5364), - [sym_field_expression] = STATE(3376), - [sym_compound_literal_expression] = STATE(5364), - [sym_parenthesized_expression] = STATE(3376), - [sym_char_literal] = STATE(5241), - [sym_concatenated_string] = STATE(5241), - [sym_string_literal] = STATE(3576), - [sym_null] = STATE(5364), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9412), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5364), - [sym_raw_string_literal] = STATE(3576), - [sym_co_await_expression] = STATE(5364), - [sym_new_expression] = STATE(5364), - [sym_delete_expression] = STATE(5364), - [sym_requires_clause] = STATE(5364), - [sym_requires_expression] = STATE(5364), - [sym_lambda_expression] = STATE(5364), - [sym_lambda_capture_specifier] = STATE(7332), - [sym_fold_expression] = STATE(5364), - [sym_parameter_pack_expansion] = STATE(5364), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3376), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3376), - [sym_semgrep_ellipsis] = STATE(5370), - [sym_deep_ellipsis] = STATE(5370), - [sym_identifier] = ACTIONS(4984), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), - [anon_sym_LPAREN2] = ACTIONS(5124), - [anon_sym_BANG] = ACTIONS(3774), - [anon_sym_TILDE] = ACTIONS(3774), - [anon_sym_DASH] = ACTIONS(3772), - [anon_sym_PLUS] = ACTIONS(3772), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(3776), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3780), - [anon_sym_not] = ACTIONS(3772), - [anon_sym_compl] = ACTIONS(3772), - [anon_sym_DASH_DASH] = ACTIONS(4988), - [anon_sym_PLUS_PLUS] = ACTIONS(4988), - [anon_sym_sizeof] = ACTIONS(3782), - [anon_sym___alignof__] = ACTIONS(3784), - [anon_sym___alignof] = ACTIONS(3784), - [anon_sym__alignof] = ACTIONS(3784), - [anon_sym_alignof] = ACTIONS(3784), - [anon_sym__Alignof] = ACTIONS(3784), - [anon_sym_offsetof] = ACTIONS(3786), - [anon_sym__Generic] = ACTIONS(3788), - [anon_sym_asm] = ACTIONS(3790), - [anon_sym___asm__] = ACTIONS(3790), - [sym_number_literal] = ACTIONS(3792), - [anon_sym_L_SQUOTE] = ACTIONS(3794), - [anon_sym_u_SQUOTE] = ACTIONS(3794), - [anon_sym_U_SQUOTE] = ACTIONS(3794), - [anon_sym_u8_SQUOTE] = ACTIONS(3794), - [anon_sym_SQUOTE] = ACTIONS(3794), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_true] = ACTIONS(3798), - [sym_false] = ACTIONS(3798), - [anon_sym_NULL] = ACTIONS(3800), - [anon_sym_nullptr] = ACTIONS(3800), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3802), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - [anon_sym_co_await] = ACTIONS(3806), - [anon_sym_new] = ACTIONS(3808), - [anon_sym_requires] = ACTIONS(3810), - [sym_this] = ACTIONS(3798), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3812), - [sym_semgrep_named_ellipsis] = ACTIONS(3814), - }, - [1547] = { - [sym_expression] = STATE(5152), - [sym_expression_not_binary] = STATE(5370), - [sym_conditional_expression] = STATE(5364), - [sym_assignment_expression] = STATE(5364), - [sym_pointer_expression] = STATE(3376), - [sym_unary_expression] = STATE(5364), - [sym_binary_expression] = STATE(5370), - [sym_update_expression] = STATE(5364), - [sym_cast_expression] = STATE(5364), - [sym_sizeof_expression] = STATE(5364), - [sym_alignof_expression] = STATE(5364), - [sym_offsetof_expression] = STATE(5364), - [sym_generic_expression] = STATE(5364), - [sym_subscript_expression] = STATE(3376), - [sym_call_expression] = STATE(3376), - [sym_gnu_asm_expression] = STATE(5364), - [sym_field_expression] = STATE(3376), - [sym_compound_literal_expression] = STATE(5364), - [sym_parenthesized_expression] = STATE(3376), - [sym_char_literal] = STATE(5241), - [sym_concatenated_string] = STATE(5241), - [sym_string_literal] = STATE(3576), - [sym_null] = STATE(5364), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9412), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5364), - [sym_raw_string_literal] = STATE(3576), - [sym_co_await_expression] = STATE(5364), - [sym_new_expression] = STATE(5364), - [sym_delete_expression] = STATE(5364), - [sym_requires_clause] = STATE(5364), - [sym_requires_expression] = STATE(5364), - [sym_lambda_expression] = STATE(5364), - [sym_lambda_capture_specifier] = STATE(7332), - [sym_fold_expression] = STATE(5364), - [sym_parameter_pack_expansion] = STATE(5364), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3376), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3376), - [sym_semgrep_ellipsis] = STATE(5370), - [sym_deep_ellipsis] = STATE(5370), - [sym_identifier] = ACTIONS(4984), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), - [anon_sym_LPAREN2] = ACTIONS(5124), - [anon_sym_BANG] = ACTIONS(3774), - [anon_sym_TILDE] = ACTIONS(3774), - [anon_sym_DASH] = ACTIONS(3772), - [anon_sym_PLUS] = ACTIONS(3772), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(3776), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3780), - [anon_sym_not] = ACTIONS(3772), - [anon_sym_compl] = ACTIONS(3772), - [anon_sym_DASH_DASH] = ACTIONS(4988), - [anon_sym_PLUS_PLUS] = ACTIONS(4988), - [anon_sym_sizeof] = ACTIONS(3782), - [anon_sym___alignof__] = ACTIONS(3784), - [anon_sym___alignof] = ACTIONS(3784), - [anon_sym__alignof] = ACTIONS(3784), - [anon_sym_alignof] = ACTIONS(3784), - [anon_sym__Alignof] = ACTIONS(3784), - [anon_sym_offsetof] = ACTIONS(3786), - [anon_sym__Generic] = ACTIONS(3788), - [anon_sym_asm] = ACTIONS(3790), - [anon_sym___asm__] = ACTIONS(3790), - [sym_number_literal] = ACTIONS(3792), - [anon_sym_L_SQUOTE] = ACTIONS(3794), - [anon_sym_u_SQUOTE] = ACTIONS(3794), - [anon_sym_U_SQUOTE] = ACTIONS(3794), - [anon_sym_u8_SQUOTE] = ACTIONS(3794), - [anon_sym_SQUOTE] = ACTIONS(3794), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_true] = ACTIONS(3798), - [sym_false] = ACTIONS(3798), - [anon_sym_NULL] = ACTIONS(3800), - [anon_sym_nullptr] = ACTIONS(3800), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3802), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - [anon_sym_co_await] = ACTIONS(3806), - [anon_sym_new] = ACTIONS(3808), - [anon_sym_requires] = ACTIONS(3810), - [sym_this] = ACTIONS(3798), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3812), - [sym_semgrep_named_ellipsis] = ACTIONS(3814), - }, - [1548] = { - [sym_expression] = STATE(5119), - [sym_expression_not_binary] = STATE(5370), - [sym_conditional_expression] = STATE(5364), - [sym_assignment_expression] = STATE(5364), - [sym_pointer_expression] = STATE(3376), - [sym_unary_expression] = STATE(5364), - [sym_binary_expression] = STATE(5370), - [sym_update_expression] = STATE(5364), - [sym_cast_expression] = STATE(5364), - [sym_sizeof_expression] = STATE(5364), - [sym_alignof_expression] = STATE(5364), - [sym_offsetof_expression] = STATE(5364), - [sym_generic_expression] = STATE(5364), - [sym_subscript_expression] = STATE(3376), - [sym_call_expression] = STATE(3376), - [sym_gnu_asm_expression] = STATE(5364), - [sym_field_expression] = STATE(3376), - [sym_compound_literal_expression] = STATE(5364), - [sym_parenthesized_expression] = STATE(3376), - [sym_char_literal] = STATE(5241), - [sym_concatenated_string] = STATE(5241), - [sym_string_literal] = STATE(3576), - [sym_null] = STATE(5364), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9412), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5364), - [sym_raw_string_literal] = STATE(3576), - [sym_co_await_expression] = STATE(5364), - [sym_new_expression] = STATE(5364), - [sym_delete_expression] = STATE(5364), - [sym_requires_clause] = STATE(5364), - [sym_requires_expression] = STATE(5364), - [sym_lambda_expression] = STATE(5364), - [sym_lambda_capture_specifier] = STATE(7332), - [sym_fold_expression] = STATE(5364), - [sym_parameter_pack_expansion] = STATE(5364), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3376), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3376), - [sym_semgrep_ellipsis] = STATE(5370), - [sym_deep_ellipsis] = STATE(5370), - [sym_identifier] = ACTIONS(4984), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), - [anon_sym_LPAREN2] = ACTIONS(5124), - [anon_sym_BANG] = ACTIONS(3774), - [anon_sym_TILDE] = ACTIONS(3774), - [anon_sym_DASH] = ACTIONS(3772), - [anon_sym_PLUS] = ACTIONS(3772), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(3776), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3780), - [anon_sym_not] = ACTIONS(3772), - [anon_sym_compl] = ACTIONS(3772), - [anon_sym_DASH_DASH] = ACTIONS(4988), - [anon_sym_PLUS_PLUS] = ACTIONS(4988), - [anon_sym_sizeof] = ACTIONS(3782), - [anon_sym___alignof__] = ACTIONS(3784), - [anon_sym___alignof] = ACTIONS(3784), - [anon_sym__alignof] = ACTIONS(3784), - [anon_sym_alignof] = ACTIONS(3784), - [anon_sym__Alignof] = ACTIONS(3784), - [anon_sym_offsetof] = ACTIONS(3786), - [anon_sym__Generic] = ACTIONS(3788), - [anon_sym_asm] = ACTIONS(3790), - [anon_sym___asm__] = ACTIONS(3790), - [sym_number_literal] = ACTIONS(3792), - [anon_sym_L_SQUOTE] = ACTIONS(3794), - [anon_sym_u_SQUOTE] = ACTIONS(3794), - [anon_sym_U_SQUOTE] = ACTIONS(3794), - [anon_sym_u8_SQUOTE] = ACTIONS(3794), - [anon_sym_SQUOTE] = ACTIONS(3794), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_true] = ACTIONS(3798), - [sym_false] = ACTIONS(3798), - [anon_sym_NULL] = ACTIONS(3800), - [anon_sym_nullptr] = ACTIONS(3800), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3802), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - [anon_sym_co_await] = ACTIONS(3806), - [anon_sym_new] = ACTIONS(3808), - [anon_sym_requires] = ACTIONS(3810), - [sym_this] = ACTIONS(3798), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3812), - [sym_semgrep_named_ellipsis] = ACTIONS(3814), - }, - [1549] = { - [sym_expression] = STATE(5120), - [sym_expression_not_binary] = STATE(5370), - [sym_conditional_expression] = STATE(5364), - [sym_assignment_expression] = STATE(5364), - [sym_pointer_expression] = STATE(3376), - [sym_unary_expression] = STATE(5364), - [sym_binary_expression] = STATE(5370), - [sym_update_expression] = STATE(5364), - [sym_cast_expression] = STATE(5364), - [sym_sizeof_expression] = STATE(5364), - [sym_alignof_expression] = STATE(5364), - [sym_offsetof_expression] = STATE(5364), - [sym_generic_expression] = STATE(5364), - [sym_subscript_expression] = STATE(3376), - [sym_call_expression] = STATE(3376), - [sym_gnu_asm_expression] = STATE(5364), - [sym_field_expression] = STATE(3376), - [sym_compound_literal_expression] = STATE(5364), - [sym_parenthesized_expression] = STATE(3376), - [sym_char_literal] = STATE(5241), - [sym_concatenated_string] = STATE(5241), - [sym_string_literal] = STATE(3576), - [sym_null] = STATE(5364), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9412), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5364), - [sym_raw_string_literal] = STATE(3576), - [sym_co_await_expression] = STATE(5364), - [sym_new_expression] = STATE(5364), - [sym_delete_expression] = STATE(5364), - [sym_requires_clause] = STATE(5364), - [sym_requires_expression] = STATE(5364), - [sym_lambda_expression] = STATE(5364), - [sym_lambda_capture_specifier] = STATE(7332), - [sym_fold_expression] = STATE(5364), - [sym_parameter_pack_expansion] = STATE(5364), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3376), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3376), - [sym_semgrep_ellipsis] = STATE(5370), - [sym_deep_ellipsis] = STATE(5370), - [sym_identifier] = ACTIONS(4984), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), - [anon_sym_LPAREN2] = ACTIONS(5124), - [anon_sym_BANG] = ACTIONS(3774), - [anon_sym_TILDE] = ACTIONS(3774), - [anon_sym_DASH] = ACTIONS(3772), - [anon_sym_PLUS] = ACTIONS(3772), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(3776), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3780), - [anon_sym_not] = ACTIONS(3772), - [anon_sym_compl] = ACTIONS(3772), - [anon_sym_DASH_DASH] = ACTIONS(4988), - [anon_sym_PLUS_PLUS] = ACTIONS(4988), - [anon_sym_sizeof] = ACTIONS(3782), - [anon_sym___alignof__] = ACTIONS(3784), - [anon_sym___alignof] = ACTIONS(3784), - [anon_sym__alignof] = ACTIONS(3784), - [anon_sym_alignof] = ACTIONS(3784), - [anon_sym__Alignof] = ACTIONS(3784), - [anon_sym_offsetof] = ACTIONS(3786), - [anon_sym__Generic] = ACTIONS(3788), - [anon_sym_asm] = ACTIONS(3790), - [anon_sym___asm__] = ACTIONS(3790), - [sym_number_literal] = ACTIONS(3792), - [anon_sym_L_SQUOTE] = ACTIONS(3794), - [anon_sym_u_SQUOTE] = ACTIONS(3794), - [anon_sym_U_SQUOTE] = ACTIONS(3794), - [anon_sym_u8_SQUOTE] = ACTIONS(3794), - [anon_sym_SQUOTE] = ACTIONS(3794), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_true] = ACTIONS(3798), - [sym_false] = ACTIONS(3798), - [anon_sym_NULL] = ACTIONS(3800), - [anon_sym_nullptr] = ACTIONS(3800), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3802), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - [anon_sym_co_await] = ACTIONS(3806), - [anon_sym_new] = ACTIONS(3808), - [anon_sym_requires] = ACTIONS(3810), - [sym_this] = ACTIONS(3798), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3812), - [sym_semgrep_named_ellipsis] = ACTIONS(3814), - }, - [1550] = { - [sym_expression] = STATE(5121), - [sym_expression_not_binary] = STATE(5370), - [sym_conditional_expression] = STATE(5364), - [sym_assignment_expression] = STATE(5364), - [sym_pointer_expression] = STATE(3376), - [sym_unary_expression] = STATE(5364), - [sym_binary_expression] = STATE(5370), - [sym_update_expression] = STATE(5364), - [sym_cast_expression] = STATE(5364), - [sym_sizeof_expression] = STATE(5364), - [sym_alignof_expression] = STATE(5364), - [sym_offsetof_expression] = STATE(5364), - [sym_generic_expression] = STATE(5364), - [sym_subscript_expression] = STATE(3376), - [sym_call_expression] = STATE(3376), - [sym_gnu_asm_expression] = STATE(5364), - [sym_field_expression] = STATE(3376), - [sym_compound_literal_expression] = STATE(5364), - [sym_parenthesized_expression] = STATE(3376), - [sym_char_literal] = STATE(5241), - [sym_concatenated_string] = STATE(5241), - [sym_string_literal] = STATE(3576), - [sym_null] = STATE(5364), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9412), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5364), - [sym_raw_string_literal] = STATE(3576), - [sym_co_await_expression] = STATE(5364), - [sym_new_expression] = STATE(5364), - [sym_delete_expression] = STATE(5364), - [sym_requires_clause] = STATE(5364), - [sym_requires_expression] = STATE(5364), - [sym_lambda_expression] = STATE(5364), - [sym_lambda_capture_specifier] = STATE(7332), - [sym_fold_expression] = STATE(5364), - [sym_parameter_pack_expansion] = STATE(5364), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3376), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3376), - [sym_semgrep_ellipsis] = STATE(5370), - [sym_deep_ellipsis] = STATE(5370), - [sym_identifier] = ACTIONS(4984), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), - [anon_sym_LPAREN2] = ACTIONS(5124), - [anon_sym_BANG] = ACTIONS(3774), - [anon_sym_TILDE] = ACTIONS(3774), - [anon_sym_DASH] = ACTIONS(3772), - [anon_sym_PLUS] = ACTIONS(3772), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(3776), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3780), - [anon_sym_not] = ACTIONS(3772), - [anon_sym_compl] = ACTIONS(3772), - [anon_sym_DASH_DASH] = ACTIONS(4988), - [anon_sym_PLUS_PLUS] = ACTIONS(4988), - [anon_sym_sizeof] = ACTIONS(3782), - [anon_sym___alignof__] = ACTIONS(3784), - [anon_sym___alignof] = ACTIONS(3784), - [anon_sym__alignof] = ACTIONS(3784), - [anon_sym_alignof] = ACTIONS(3784), - [anon_sym__Alignof] = ACTIONS(3784), - [anon_sym_offsetof] = ACTIONS(3786), - [anon_sym__Generic] = ACTIONS(3788), - [anon_sym_asm] = ACTIONS(3790), - [anon_sym___asm__] = ACTIONS(3790), - [sym_number_literal] = ACTIONS(3792), - [anon_sym_L_SQUOTE] = ACTIONS(3794), - [anon_sym_u_SQUOTE] = ACTIONS(3794), - [anon_sym_U_SQUOTE] = ACTIONS(3794), - [anon_sym_u8_SQUOTE] = ACTIONS(3794), - [anon_sym_SQUOTE] = ACTIONS(3794), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_true] = ACTIONS(3798), - [sym_false] = ACTIONS(3798), - [anon_sym_NULL] = ACTIONS(3800), - [anon_sym_nullptr] = ACTIONS(3800), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3802), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - [anon_sym_co_await] = ACTIONS(3806), - [anon_sym_new] = ACTIONS(3808), - [anon_sym_requires] = ACTIONS(3810), - [sym_this] = ACTIONS(3798), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3812), - [sym_semgrep_named_ellipsis] = ACTIONS(3814), - }, - [1551] = { - [sym_expression] = STATE(5122), - [sym_expression_not_binary] = STATE(5370), - [sym_conditional_expression] = STATE(5364), - [sym_assignment_expression] = STATE(5364), - [sym_pointer_expression] = STATE(3376), - [sym_unary_expression] = STATE(5364), - [sym_binary_expression] = STATE(5370), - [sym_update_expression] = STATE(5364), - [sym_cast_expression] = STATE(5364), - [sym_sizeof_expression] = STATE(5364), - [sym_alignof_expression] = STATE(5364), - [sym_offsetof_expression] = STATE(5364), - [sym_generic_expression] = STATE(5364), - [sym_subscript_expression] = STATE(3376), - [sym_call_expression] = STATE(3376), - [sym_gnu_asm_expression] = STATE(5364), - [sym_field_expression] = STATE(3376), - [sym_compound_literal_expression] = STATE(5364), - [sym_parenthesized_expression] = STATE(3376), - [sym_char_literal] = STATE(5241), - [sym_concatenated_string] = STATE(5241), - [sym_string_literal] = STATE(3576), - [sym_null] = STATE(5364), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9412), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5364), - [sym_raw_string_literal] = STATE(3576), - [sym_co_await_expression] = STATE(5364), - [sym_new_expression] = STATE(5364), - [sym_delete_expression] = STATE(5364), - [sym_requires_clause] = STATE(5364), - [sym_requires_expression] = STATE(5364), - [sym_lambda_expression] = STATE(5364), - [sym_lambda_capture_specifier] = STATE(7332), - [sym_fold_expression] = STATE(5364), - [sym_parameter_pack_expansion] = STATE(5364), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3376), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3376), - [sym_semgrep_ellipsis] = STATE(5370), - [sym_deep_ellipsis] = STATE(5370), - [sym_identifier] = ACTIONS(4984), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), - [anon_sym_LPAREN2] = ACTIONS(5124), - [anon_sym_BANG] = ACTIONS(3774), - [anon_sym_TILDE] = ACTIONS(3774), - [anon_sym_DASH] = ACTIONS(3772), - [anon_sym_PLUS] = ACTIONS(3772), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(3776), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3780), - [anon_sym_not] = ACTIONS(3772), - [anon_sym_compl] = ACTIONS(3772), - [anon_sym_DASH_DASH] = ACTIONS(4988), - [anon_sym_PLUS_PLUS] = ACTIONS(4988), - [anon_sym_sizeof] = ACTIONS(3782), - [anon_sym___alignof__] = ACTIONS(3784), - [anon_sym___alignof] = ACTIONS(3784), - [anon_sym__alignof] = ACTIONS(3784), - [anon_sym_alignof] = ACTIONS(3784), - [anon_sym__Alignof] = ACTIONS(3784), - [anon_sym_offsetof] = ACTIONS(3786), - [anon_sym__Generic] = ACTIONS(3788), - [anon_sym_asm] = ACTIONS(3790), - [anon_sym___asm__] = ACTIONS(3790), - [sym_number_literal] = ACTIONS(3792), - [anon_sym_L_SQUOTE] = ACTIONS(3794), - [anon_sym_u_SQUOTE] = ACTIONS(3794), - [anon_sym_U_SQUOTE] = ACTIONS(3794), - [anon_sym_u8_SQUOTE] = ACTIONS(3794), - [anon_sym_SQUOTE] = ACTIONS(3794), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_true] = ACTIONS(3798), - [sym_false] = ACTIONS(3798), - [anon_sym_NULL] = ACTIONS(3800), - [anon_sym_nullptr] = ACTIONS(3800), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3802), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - [anon_sym_co_await] = ACTIONS(3806), - [anon_sym_new] = ACTIONS(3808), - [anon_sym_requires] = ACTIONS(3810), - [sym_this] = ACTIONS(3798), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3812), - [sym_semgrep_named_ellipsis] = ACTIONS(3814), - }, - [1552] = { - [sym_expression] = STATE(5124), - [sym_expression_not_binary] = STATE(5370), - [sym_conditional_expression] = STATE(5364), - [sym_assignment_expression] = STATE(5364), - [sym_pointer_expression] = STATE(3376), - [sym_unary_expression] = STATE(5364), - [sym_binary_expression] = STATE(5370), - [sym_update_expression] = STATE(5364), - [sym_cast_expression] = STATE(5364), - [sym_sizeof_expression] = STATE(5364), - [sym_alignof_expression] = STATE(5364), - [sym_offsetof_expression] = STATE(5364), - [sym_generic_expression] = STATE(5364), - [sym_subscript_expression] = STATE(3376), - [sym_call_expression] = STATE(3376), - [sym_gnu_asm_expression] = STATE(5364), - [sym_field_expression] = STATE(3376), - [sym_compound_literal_expression] = STATE(5364), - [sym_parenthesized_expression] = STATE(3376), - [sym_char_literal] = STATE(5241), - [sym_concatenated_string] = STATE(5241), - [sym_string_literal] = STATE(3576), - [sym_null] = STATE(5364), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9412), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5364), - [sym_raw_string_literal] = STATE(3576), - [sym_co_await_expression] = STATE(5364), - [sym_new_expression] = STATE(5364), - [sym_delete_expression] = STATE(5364), - [sym_requires_clause] = STATE(5364), - [sym_requires_expression] = STATE(5364), - [sym_lambda_expression] = STATE(5364), - [sym_lambda_capture_specifier] = STATE(7332), - [sym_fold_expression] = STATE(5364), - [sym_parameter_pack_expansion] = STATE(5364), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3376), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3376), - [sym_semgrep_ellipsis] = STATE(5370), - [sym_deep_ellipsis] = STATE(5370), - [sym_identifier] = ACTIONS(4984), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), - [anon_sym_LPAREN2] = ACTIONS(5124), - [anon_sym_BANG] = ACTIONS(3774), - [anon_sym_TILDE] = ACTIONS(3774), - [anon_sym_DASH] = ACTIONS(3772), - [anon_sym_PLUS] = ACTIONS(3772), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(3776), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3780), - [anon_sym_not] = ACTIONS(3772), - [anon_sym_compl] = ACTIONS(3772), - [anon_sym_DASH_DASH] = ACTIONS(4988), - [anon_sym_PLUS_PLUS] = ACTIONS(4988), - [anon_sym_sizeof] = ACTIONS(3782), - [anon_sym___alignof__] = ACTIONS(3784), - [anon_sym___alignof] = ACTIONS(3784), - [anon_sym__alignof] = ACTIONS(3784), - [anon_sym_alignof] = ACTIONS(3784), - [anon_sym__Alignof] = ACTIONS(3784), - [anon_sym_offsetof] = ACTIONS(3786), - [anon_sym__Generic] = ACTIONS(3788), - [anon_sym_asm] = ACTIONS(3790), - [anon_sym___asm__] = ACTIONS(3790), - [sym_number_literal] = ACTIONS(3792), - [anon_sym_L_SQUOTE] = ACTIONS(3794), - [anon_sym_u_SQUOTE] = ACTIONS(3794), - [anon_sym_U_SQUOTE] = ACTIONS(3794), - [anon_sym_u8_SQUOTE] = ACTIONS(3794), - [anon_sym_SQUOTE] = ACTIONS(3794), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_true] = ACTIONS(3798), - [sym_false] = ACTIONS(3798), - [anon_sym_NULL] = ACTIONS(3800), - [anon_sym_nullptr] = ACTIONS(3800), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3802), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - [anon_sym_co_await] = ACTIONS(3806), - [anon_sym_new] = ACTIONS(3808), - [anon_sym_requires] = ACTIONS(3810), - [sym_this] = ACTIONS(3798), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3812), - [sym_semgrep_named_ellipsis] = ACTIONS(3814), - }, - [1553] = { - [sym_expression] = STATE(5125), - [sym_expression_not_binary] = STATE(5370), - [sym_conditional_expression] = STATE(5364), - [sym_assignment_expression] = STATE(5364), - [sym_pointer_expression] = STATE(3376), - [sym_unary_expression] = STATE(5364), - [sym_binary_expression] = STATE(5370), - [sym_update_expression] = STATE(5364), - [sym_cast_expression] = STATE(5364), - [sym_sizeof_expression] = STATE(5364), - [sym_alignof_expression] = STATE(5364), - [sym_offsetof_expression] = STATE(5364), - [sym_generic_expression] = STATE(5364), - [sym_subscript_expression] = STATE(3376), - [sym_call_expression] = STATE(3376), - [sym_gnu_asm_expression] = STATE(5364), - [sym_field_expression] = STATE(3376), - [sym_compound_literal_expression] = STATE(5364), - [sym_parenthesized_expression] = STATE(3376), - [sym_char_literal] = STATE(5241), - [sym_concatenated_string] = STATE(5241), - [sym_string_literal] = STATE(3576), - [sym_null] = STATE(5364), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9412), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5364), - [sym_raw_string_literal] = STATE(3576), - [sym_co_await_expression] = STATE(5364), - [sym_new_expression] = STATE(5364), - [sym_delete_expression] = STATE(5364), - [sym_requires_clause] = STATE(5364), - [sym_requires_expression] = STATE(5364), - [sym_lambda_expression] = STATE(5364), - [sym_lambda_capture_specifier] = STATE(7332), - [sym_fold_expression] = STATE(5364), - [sym_parameter_pack_expansion] = STATE(5364), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3376), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3376), - [sym_semgrep_ellipsis] = STATE(5370), - [sym_deep_ellipsis] = STATE(5370), - [sym_identifier] = ACTIONS(4984), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), - [anon_sym_LPAREN2] = ACTIONS(5124), - [anon_sym_BANG] = ACTIONS(3774), - [anon_sym_TILDE] = ACTIONS(3774), - [anon_sym_DASH] = ACTIONS(3772), - [anon_sym_PLUS] = ACTIONS(3772), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(3776), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3780), - [anon_sym_not] = ACTIONS(3772), - [anon_sym_compl] = ACTIONS(3772), - [anon_sym_DASH_DASH] = ACTIONS(4988), - [anon_sym_PLUS_PLUS] = ACTIONS(4988), - [anon_sym_sizeof] = ACTIONS(3782), - [anon_sym___alignof__] = ACTIONS(3784), - [anon_sym___alignof] = ACTIONS(3784), - [anon_sym__alignof] = ACTIONS(3784), - [anon_sym_alignof] = ACTIONS(3784), - [anon_sym__Alignof] = ACTIONS(3784), - [anon_sym_offsetof] = ACTIONS(3786), - [anon_sym__Generic] = ACTIONS(3788), - [anon_sym_asm] = ACTIONS(3790), - [anon_sym___asm__] = ACTIONS(3790), - [sym_number_literal] = ACTIONS(3792), - [anon_sym_L_SQUOTE] = ACTIONS(3794), - [anon_sym_u_SQUOTE] = ACTIONS(3794), - [anon_sym_U_SQUOTE] = ACTIONS(3794), - [anon_sym_u8_SQUOTE] = ACTIONS(3794), - [anon_sym_SQUOTE] = ACTIONS(3794), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_true] = ACTIONS(3798), - [sym_false] = ACTIONS(3798), - [anon_sym_NULL] = ACTIONS(3800), - [anon_sym_nullptr] = ACTIONS(3800), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3802), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - [anon_sym_co_await] = ACTIONS(3806), - [anon_sym_new] = ACTIONS(3808), - [anon_sym_requires] = ACTIONS(3810), - [sym_this] = ACTIONS(3798), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3812), - [sym_semgrep_named_ellipsis] = ACTIONS(3814), - }, - [1554] = { - [sym_expression] = STATE(5126), - [sym_expression_not_binary] = STATE(5370), - [sym_conditional_expression] = STATE(5364), - [sym_assignment_expression] = STATE(5364), - [sym_pointer_expression] = STATE(3376), - [sym_unary_expression] = STATE(5364), - [sym_binary_expression] = STATE(5370), - [sym_update_expression] = STATE(5364), - [sym_cast_expression] = STATE(5364), - [sym_sizeof_expression] = STATE(5364), - [sym_alignof_expression] = STATE(5364), - [sym_offsetof_expression] = STATE(5364), - [sym_generic_expression] = STATE(5364), - [sym_subscript_expression] = STATE(3376), - [sym_call_expression] = STATE(3376), - [sym_gnu_asm_expression] = STATE(5364), - [sym_field_expression] = STATE(3376), - [sym_compound_literal_expression] = STATE(5364), - [sym_parenthesized_expression] = STATE(3376), - [sym_char_literal] = STATE(5241), - [sym_concatenated_string] = STATE(5241), - [sym_string_literal] = STATE(3576), - [sym_null] = STATE(5364), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9412), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5364), - [sym_raw_string_literal] = STATE(3576), - [sym_co_await_expression] = STATE(5364), - [sym_new_expression] = STATE(5364), - [sym_delete_expression] = STATE(5364), - [sym_requires_clause] = STATE(5364), - [sym_requires_expression] = STATE(5364), - [sym_lambda_expression] = STATE(5364), - [sym_lambda_capture_specifier] = STATE(7332), - [sym_fold_expression] = STATE(5364), - [sym_parameter_pack_expansion] = STATE(5364), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3376), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3376), - [sym_semgrep_ellipsis] = STATE(5370), - [sym_deep_ellipsis] = STATE(5370), - [sym_identifier] = ACTIONS(4984), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), - [anon_sym_LPAREN2] = ACTIONS(5124), - [anon_sym_BANG] = ACTIONS(3774), - [anon_sym_TILDE] = ACTIONS(3774), - [anon_sym_DASH] = ACTIONS(3772), - [anon_sym_PLUS] = ACTIONS(3772), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(3776), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3780), - [anon_sym_not] = ACTIONS(3772), - [anon_sym_compl] = ACTIONS(3772), - [anon_sym_DASH_DASH] = ACTIONS(4988), - [anon_sym_PLUS_PLUS] = ACTIONS(4988), - [anon_sym_sizeof] = ACTIONS(3782), - [anon_sym___alignof__] = ACTIONS(3784), - [anon_sym___alignof] = ACTIONS(3784), - [anon_sym__alignof] = ACTIONS(3784), - [anon_sym_alignof] = ACTIONS(3784), - [anon_sym__Alignof] = ACTIONS(3784), - [anon_sym_offsetof] = ACTIONS(3786), - [anon_sym__Generic] = ACTIONS(3788), - [anon_sym_asm] = ACTIONS(3790), - [anon_sym___asm__] = ACTIONS(3790), - [sym_number_literal] = ACTIONS(3792), - [anon_sym_L_SQUOTE] = ACTIONS(3794), - [anon_sym_u_SQUOTE] = ACTIONS(3794), - [anon_sym_U_SQUOTE] = ACTIONS(3794), - [anon_sym_u8_SQUOTE] = ACTIONS(3794), - [anon_sym_SQUOTE] = ACTIONS(3794), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_true] = ACTIONS(3798), - [sym_false] = ACTIONS(3798), - [anon_sym_NULL] = ACTIONS(3800), - [anon_sym_nullptr] = ACTIONS(3800), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3802), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - [anon_sym_co_await] = ACTIONS(3806), - [anon_sym_new] = ACTIONS(3808), - [anon_sym_requires] = ACTIONS(3810), - [sym_this] = ACTIONS(3798), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3812), - [sym_semgrep_named_ellipsis] = ACTIONS(3814), - }, - [1555] = { - [sym_expression] = STATE(5127), - [sym_expression_not_binary] = STATE(5370), - [sym_conditional_expression] = STATE(5364), - [sym_assignment_expression] = STATE(5364), - [sym_pointer_expression] = STATE(3376), - [sym_unary_expression] = STATE(5364), - [sym_binary_expression] = STATE(5370), - [sym_update_expression] = STATE(5364), - [sym_cast_expression] = STATE(5364), - [sym_sizeof_expression] = STATE(5364), - [sym_alignof_expression] = STATE(5364), - [sym_offsetof_expression] = STATE(5364), - [sym_generic_expression] = STATE(5364), - [sym_subscript_expression] = STATE(3376), - [sym_call_expression] = STATE(3376), - [sym_gnu_asm_expression] = STATE(5364), - [sym_field_expression] = STATE(3376), - [sym_compound_literal_expression] = STATE(5364), - [sym_parenthesized_expression] = STATE(3376), - [sym_char_literal] = STATE(5241), - [sym_concatenated_string] = STATE(5241), - [sym_string_literal] = STATE(3576), - [sym_null] = STATE(5364), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9412), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5364), - [sym_raw_string_literal] = STATE(3576), - [sym_co_await_expression] = STATE(5364), - [sym_new_expression] = STATE(5364), - [sym_delete_expression] = STATE(5364), - [sym_requires_clause] = STATE(5364), - [sym_requires_expression] = STATE(5364), - [sym_lambda_expression] = STATE(5364), - [sym_lambda_capture_specifier] = STATE(7332), - [sym_fold_expression] = STATE(5364), - [sym_parameter_pack_expansion] = STATE(5364), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3376), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3376), - [sym_semgrep_ellipsis] = STATE(5370), - [sym_deep_ellipsis] = STATE(5370), - [sym_identifier] = ACTIONS(4984), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), - [anon_sym_LPAREN2] = ACTIONS(5124), - [anon_sym_BANG] = ACTIONS(3774), - [anon_sym_TILDE] = ACTIONS(3774), - [anon_sym_DASH] = ACTIONS(3772), - [anon_sym_PLUS] = ACTIONS(3772), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(3776), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3780), - [anon_sym_not] = ACTIONS(3772), - [anon_sym_compl] = ACTIONS(3772), - [anon_sym_DASH_DASH] = ACTIONS(4988), - [anon_sym_PLUS_PLUS] = ACTIONS(4988), - [anon_sym_sizeof] = ACTIONS(3782), - [anon_sym___alignof__] = ACTIONS(3784), - [anon_sym___alignof] = ACTIONS(3784), - [anon_sym__alignof] = ACTIONS(3784), - [anon_sym_alignof] = ACTIONS(3784), - [anon_sym__Alignof] = ACTIONS(3784), - [anon_sym_offsetof] = ACTIONS(3786), - [anon_sym__Generic] = ACTIONS(3788), - [anon_sym_asm] = ACTIONS(3790), - [anon_sym___asm__] = ACTIONS(3790), - [sym_number_literal] = ACTIONS(3792), - [anon_sym_L_SQUOTE] = ACTIONS(3794), - [anon_sym_u_SQUOTE] = ACTIONS(3794), - [anon_sym_U_SQUOTE] = ACTIONS(3794), - [anon_sym_u8_SQUOTE] = ACTIONS(3794), - [anon_sym_SQUOTE] = ACTIONS(3794), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_true] = ACTIONS(3798), - [sym_false] = ACTIONS(3798), - [anon_sym_NULL] = ACTIONS(3800), - [anon_sym_nullptr] = ACTIONS(3800), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3802), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - [anon_sym_co_await] = ACTIONS(3806), - [anon_sym_new] = ACTIONS(3808), - [anon_sym_requires] = ACTIONS(3810), - [sym_this] = ACTIONS(3798), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3812), - [sym_semgrep_named_ellipsis] = ACTIONS(3814), - }, - [1556] = { - [sym_expression] = STATE(4102), - [sym_expression_not_binary] = STATE(4505), - [sym_conditional_expression] = STATE(4488), - [sym_assignment_expression] = STATE(4488), - [sym_pointer_expression] = STATE(4524), - [sym_unary_expression] = STATE(4488), - [sym_binary_expression] = STATE(4505), - [sym_update_expression] = STATE(4488), - [sym_cast_expression] = STATE(4488), - [sym_sizeof_expression] = STATE(4488), - [sym_alignof_expression] = STATE(4488), - [sym_offsetof_expression] = STATE(4488), - [sym_generic_expression] = STATE(4488), - [sym_subscript_expression] = STATE(4524), - [sym_call_expression] = STATE(4524), - [sym_gnu_asm_expression] = STATE(4488), - [sym_field_expression] = STATE(4524), - [sym_compound_literal_expression] = STATE(4488), - [sym_parenthesized_expression] = STATE(4524), - [sym_char_literal] = STATE(4272), - [sym_concatenated_string] = STATE(4272), - [sym_string_literal] = STATE(2514), - [sym_null] = STATE(4488), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9512), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4488), - [sym_raw_string_literal] = STATE(2514), - [sym_co_await_expression] = STATE(4488), - [sym_new_expression] = STATE(4488), - [sym_delete_expression] = STATE(4488), - [sym_requires_clause] = STATE(4488), - [sym_requires_expression] = STATE(4488), - [sym_lambda_expression] = STATE(4488), - [sym_lambda_capture_specifier] = STATE(7259), - [sym_fold_expression] = STATE(4488), - [sym_parameter_pack_expansion] = STATE(4488), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4524), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4524), - [sym_semgrep_ellipsis] = STATE(4505), - [sym_deep_ellipsis] = STATE(4505), - [sym_identifier] = ACTIONS(2999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4972), - [anon_sym_LPAREN2] = ACTIONS(5134), - [anon_sym_BANG] = ACTIONS(3003), - [anon_sym_TILDE] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3009), - [anon_sym_not] = ACTIONS(3001), - [anon_sym_compl] = ACTIONS(3001), - [anon_sym_DASH_DASH] = ACTIONS(4974), - [anon_sym_PLUS_PLUS] = ACTIONS(4974), - [anon_sym_sizeof] = ACTIONS(3011), - [anon_sym___alignof__] = ACTIONS(3013), - [anon_sym___alignof] = ACTIONS(3013), - [anon_sym__alignof] = ACTIONS(3013), - [anon_sym_alignof] = ACTIONS(3013), - [anon_sym__Alignof] = ACTIONS(3013), - [anon_sym_offsetof] = ACTIONS(3015), - [anon_sym__Generic] = ACTIONS(3017), - [anon_sym_asm] = ACTIONS(3019), - [anon_sym___asm__] = ACTIONS(3019), - [sym_number_literal] = ACTIONS(3021), - [anon_sym_L_SQUOTE] = ACTIONS(3023), - [anon_sym_u_SQUOTE] = ACTIONS(3023), - [anon_sym_U_SQUOTE] = ACTIONS(3023), - [anon_sym_u8_SQUOTE] = ACTIONS(3023), - [anon_sym_SQUOTE] = ACTIONS(3023), - [anon_sym_L_DQUOTE] = ACTIONS(3025), - [anon_sym_u_DQUOTE] = ACTIONS(3025), - [anon_sym_U_DQUOTE] = ACTIONS(3025), - [anon_sym_u8_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [anon_sym_NULL] = ACTIONS(3029), - [anon_sym_nullptr] = ACTIONS(3029), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(3033), - [anon_sym_LR_DQUOTE] = ACTIONS(3033), - [anon_sym_uR_DQUOTE] = ACTIONS(3033), - [anon_sym_UR_DQUOTE] = ACTIONS(3033), - [anon_sym_u8R_DQUOTE] = ACTIONS(3033), - [anon_sym_co_await] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_requires] = ACTIONS(3039), - [sym_this] = ACTIONS(3027), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3041), - [sym_semgrep_named_ellipsis] = ACTIONS(3043), - }, - [1557] = { - [sym_expression] = STATE(4122), - [sym_expression_not_binary] = STATE(4505), - [sym_conditional_expression] = STATE(4488), - [sym_assignment_expression] = STATE(4488), - [sym_pointer_expression] = STATE(4524), - [sym_unary_expression] = STATE(4488), - [sym_binary_expression] = STATE(4505), - [sym_update_expression] = STATE(4488), - [sym_cast_expression] = STATE(4488), - [sym_sizeof_expression] = STATE(4488), - [sym_alignof_expression] = STATE(4488), - [sym_offsetof_expression] = STATE(4488), - [sym_generic_expression] = STATE(4488), - [sym_subscript_expression] = STATE(4524), - [sym_call_expression] = STATE(4524), - [sym_gnu_asm_expression] = STATE(4488), - [sym_field_expression] = STATE(4524), - [sym_compound_literal_expression] = STATE(4488), - [sym_parenthesized_expression] = STATE(4524), - [sym_char_literal] = STATE(4272), - [sym_concatenated_string] = STATE(4272), - [sym_string_literal] = STATE(2514), - [sym_null] = STATE(4488), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9512), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4488), - [sym_raw_string_literal] = STATE(2514), - [sym_co_await_expression] = STATE(4488), - [sym_new_expression] = STATE(4488), - [sym_delete_expression] = STATE(4488), - [sym_requires_clause] = STATE(4488), - [sym_requires_expression] = STATE(4488), - [sym_lambda_expression] = STATE(4488), - [sym_lambda_capture_specifier] = STATE(7259), - [sym_fold_expression] = STATE(4488), - [sym_parameter_pack_expansion] = STATE(4488), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4524), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4524), - [sym_semgrep_ellipsis] = STATE(4505), - [sym_deep_ellipsis] = STATE(4505), - [sym_identifier] = ACTIONS(2999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4972), - [anon_sym_LPAREN2] = ACTIONS(5134), - [anon_sym_BANG] = ACTIONS(3003), - [anon_sym_TILDE] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3009), - [anon_sym_not] = ACTIONS(3001), - [anon_sym_compl] = ACTIONS(3001), - [anon_sym_DASH_DASH] = ACTIONS(4974), - [anon_sym_PLUS_PLUS] = ACTIONS(4974), - [anon_sym_sizeof] = ACTIONS(3011), - [anon_sym___alignof__] = ACTIONS(3013), - [anon_sym___alignof] = ACTIONS(3013), - [anon_sym__alignof] = ACTIONS(3013), - [anon_sym_alignof] = ACTIONS(3013), - [anon_sym__Alignof] = ACTIONS(3013), - [anon_sym_offsetof] = ACTIONS(3015), - [anon_sym__Generic] = ACTIONS(3017), - [anon_sym_asm] = ACTIONS(3019), - [anon_sym___asm__] = ACTIONS(3019), - [sym_number_literal] = ACTIONS(3021), - [anon_sym_L_SQUOTE] = ACTIONS(3023), - [anon_sym_u_SQUOTE] = ACTIONS(3023), - [anon_sym_U_SQUOTE] = ACTIONS(3023), - [anon_sym_u8_SQUOTE] = ACTIONS(3023), - [anon_sym_SQUOTE] = ACTIONS(3023), - [anon_sym_L_DQUOTE] = ACTIONS(3025), - [anon_sym_u_DQUOTE] = ACTIONS(3025), - [anon_sym_U_DQUOTE] = ACTIONS(3025), - [anon_sym_u8_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [anon_sym_NULL] = ACTIONS(3029), - [anon_sym_nullptr] = ACTIONS(3029), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(3033), - [anon_sym_LR_DQUOTE] = ACTIONS(3033), - [anon_sym_uR_DQUOTE] = ACTIONS(3033), - [anon_sym_UR_DQUOTE] = ACTIONS(3033), - [anon_sym_u8R_DQUOTE] = ACTIONS(3033), - [anon_sym_co_await] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_requires] = ACTIONS(3039), - [sym_this] = ACTIONS(3027), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3041), - [sym_semgrep_named_ellipsis] = ACTIONS(3043), - }, - [1558] = { - [sym_expression] = STATE(4126), - [sym_expression_not_binary] = STATE(4505), - [sym_conditional_expression] = STATE(4488), - [sym_assignment_expression] = STATE(4488), - [sym_pointer_expression] = STATE(4524), - [sym_unary_expression] = STATE(4488), - [sym_binary_expression] = STATE(4505), - [sym_update_expression] = STATE(4488), - [sym_cast_expression] = STATE(4488), - [sym_sizeof_expression] = STATE(4488), - [sym_alignof_expression] = STATE(4488), - [sym_offsetof_expression] = STATE(4488), - [sym_generic_expression] = STATE(4488), - [sym_subscript_expression] = STATE(4524), - [sym_call_expression] = STATE(4524), - [sym_gnu_asm_expression] = STATE(4488), - [sym_field_expression] = STATE(4524), - [sym_compound_literal_expression] = STATE(4488), - [sym_parenthesized_expression] = STATE(4524), - [sym_char_literal] = STATE(4272), - [sym_concatenated_string] = STATE(4272), - [sym_string_literal] = STATE(2514), - [sym_null] = STATE(4488), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9512), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4488), - [sym_raw_string_literal] = STATE(2514), - [sym_co_await_expression] = STATE(4488), - [sym_new_expression] = STATE(4488), - [sym_delete_expression] = STATE(4488), - [sym_requires_clause] = STATE(4488), - [sym_requires_expression] = STATE(4488), - [sym_lambda_expression] = STATE(4488), - [sym_lambda_capture_specifier] = STATE(7259), - [sym_fold_expression] = STATE(4488), - [sym_parameter_pack_expansion] = STATE(4488), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4524), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4524), - [sym_semgrep_ellipsis] = STATE(4505), - [sym_deep_ellipsis] = STATE(4505), - [sym_identifier] = ACTIONS(2999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5400), - [anon_sym_LPAREN2] = ACTIONS(5402), - [anon_sym_BANG] = ACTIONS(3003), - [anon_sym_TILDE] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3009), - [anon_sym_not] = ACTIONS(3001), - [anon_sym_compl] = ACTIONS(3001), - [anon_sym_DASH_DASH] = ACTIONS(4974), - [anon_sym_PLUS_PLUS] = ACTIONS(4974), - [anon_sym_sizeof] = ACTIONS(3011), - [anon_sym___alignof__] = ACTIONS(3013), - [anon_sym___alignof] = ACTIONS(3013), - [anon_sym__alignof] = ACTIONS(3013), - [anon_sym_alignof] = ACTIONS(3013), - [anon_sym__Alignof] = ACTIONS(3013), - [anon_sym_offsetof] = ACTIONS(3015), - [anon_sym__Generic] = ACTIONS(3017), - [anon_sym_asm] = ACTIONS(3019), - [anon_sym___asm__] = ACTIONS(3019), - [sym_number_literal] = ACTIONS(3021), - [anon_sym_L_SQUOTE] = ACTIONS(3023), - [anon_sym_u_SQUOTE] = ACTIONS(3023), - [anon_sym_U_SQUOTE] = ACTIONS(3023), - [anon_sym_u8_SQUOTE] = ACTIONS(3023), - [anon_sym_SQUOTE] = ACTIONS(3023), - [anon_sym_L_DQUOTE] = ACTIONS(3025), - [anon_sym_u_DQUOTE] = ACTIONS(3025), - [anon_sym_U_DQUOTE] = ACTIONS(3025), - [anon_sym_u8_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [anon_sym_NULL] = ACTIONS(3029), - [anon_sym_nullptr] = ACTIONS(3029), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3031), - [anon_sym_R_DQUOTE] = ACTIONS(3033), - [anon_sym_LR_DQUOTE] = ACTIONS(3033), - [anon_sym_uR_DQUOTE] = ACTIONS(3033), - [anon_sym_UR_DQUOTE] = ACTIONS(3033), - [anon_sym_u8R_DQUOTE] = ACTIONS(3033), - [anon_sym_co_await] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_requires] = ACTIONS(3039), - [sym_this] = ACTIONS(3027), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3041), - [sym_semgrep_named_ellipsis] = ACTIONS(3043), - }, - [1559] = { - [sym_expression] = STATE(3453), - [sym_expression_not_binary] = STATE(3786), - [sym_conditional_expression] = STATE(3784), - [sym_assignment_expression] = STATE(3784), - [sym_pointer_expression] = STATE(3787), - [sym_unary_expression] = STATE(3784), - [sym_binary_expression] = STATE(3786), - [sym_update_expression] = STATE(3784), - [sym_cast_expression] = STATE(3784), - [sym_sizeof_expression] = STATE(3784), - [sym_alignof_expression] = STATE(3784), - [sym_offsetof_expression] = STATE(3784), - [sym_generic_expression] = STATE(3784), - [sym_subscript_expression] = STATE(3787), - [sym_call_expression] = STATE(3787), - [sym_gnu_asm_expression] = STATE(3784), - [sym_field_expression] = STATE(3787), - [sym_compound_literal_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3787), - [sym_char_literal] = STATE(3471), - [sym_concatenated_string] = STATE(3471), - [sym_string_literal] = STATE(2063), - [sym_null] = STATE(3784), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9229), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3784), - [sym_raw_string_literal] = STATE(2063), - [sym_co_await_expression] = STATE(3784), - [sym_new_expression] = STATE(3784), - [sym_delete_expression] = STATE(3784), - [sym_requires_clause] = STATE(3784), - [sym_requires_expression] = STATE(3784), - [sym_lambda_expression] = STATE(3784), - [sym_lambda_capture_specifier] = STATE(7253), - [sym_fold_expression] = STATE(3784), - [sym_parameter_pack_expansion] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3787), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3787), - [sym_semgrep_ellipsis] = STATE(3786), - [sym_deep_ellipsis] = STATE(3786), - [sym_identifier] = ACTIONS(5062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5064), - [anon_sym_LPAREN2] = ACTIONS(5108), - [anon_sym_BANG] = ACTIONS(2383), - [anon_sym_TILDE] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2389), - [anon_sym_not] = ACTIONS(2381), - [anon_sym_compl] = ACTIONS(2381), - [anon_sym_DASH_DASH] = ACTIONS(5066), - [anon_sym_PLUS_PLUS] = ACTIONS(5066), - [anon_sym_sizeof] = ACTIONS(2391), - [anon_sym___alignof__] = ACTIONS(2393), - [anon_sym___alignof] = ACTIONS(2393), - [anon_sym__alignof] = ACTIONS(2393), - [anon_sym_alignof] = ACTIONS(2393), - [anon_sym__Alignof] = ACTIONS(2393), - [anon_sym_offsetof] = ACTIONS(2395), - [anon_sym__Generic] = ACTIONS(2397), - [anon_sym_asm] = ACTIONS(2399), - [anon_sym___asm__] = ACTIONS(2399), - [sym_number_literal] = ACTIONS(2401), - [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(2405), - [anon_sym_u_DQUOTE] = ACTIONS(2405), - [anon_sym_U_DQUOTE] = ACTIONS(2405), - [anon_sym_u8_DQUOTE] = ACTIONS(2405), - [anon_sym_DQUOTE] = ACTIONS(2405), - [sym_true] = ACTIONS(2407), - [sym_false] = ACTIONS(2407), - [anon_sym_NULL] = ACTIONS(2409), - [anon_sym_nullptr] = ACTIONS(2409), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2411), - [anon_sym_R_DQUOTE] = ACTIONS(2413), - [anon_sym_LR_DQUOTE] = ACTIONS(2413), - [anon_sym_uR_DQUOTE] = ACTIONS(2413), - [anon_sym_UR_DQUOTE] = ACTIONS(2413), - [anon_sym_u8R_DQUOTE] = ACTIONS(2413), - [anon_sym_co_await] = ACTIONS(2415), - [anon_sym_new] = ACTIONS(2417), - [anon_sym_requires] = ACTIONS(2419), - [sym_this] = ACTIONS(2407), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2421), - [sym_semgrep_named_ellipsis] = ACTIONS(2423), - }, - [1560] = { - [sym_expression] = STATE(5968), - [sym_expression_not_binary] = STATE(6169), - [sym_conditional_expression] = STATE(6267), - [sym_assignment_expression] = STATE(6267), - [sym_pointer_expression] = STATE(4422), - [sym_unary_expression] = STATE(6267), - [sym_binary_expression] = STATE(6169), - [sym_update_expression] = STATE(6267), - [sym_cast_expression] = STATE(6267), - [sym_sizeof_expression] = STATE(6267), - [sym_alignof_expression] = STATE(6267), - [sym_offsetof_expression] = STATE(6267), - [sym_generic_expression] = STATE(6267), - [sym_subscript_expression] = STATE(4422), - [sym_call_expression] = STATE(4422), - [sym_gnu_asm_expression] = STATE(6267), - [sym_field_expression] = STATE(4422), - [sym_compound_literal_expression] = STATE(6267), - [sym_parenthesized_expression] = STATE(4422), - [sym_char_literal] = STATE(6147), - [sym_concatenated_string] = STATE(6147), - [sym_string_literal] = STATE(4563), - [sym_null] = STATE(6267), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9242), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6267), - [sym_raw_string_literal] = STATE(4563), - [sym_co_await_expression] = STATE(6267), - [sym_new_expression] = STATE(6267), - [sym_delete_expression] = STATE(6267), - [sym_requires_clause] = STATE(6267), - [sym_requires_expression] = STATE(6267), - [sym_lambda_expression] = STATE(6267), - [sym_lambda_capture_specifier] = STATE(7263), - [sym_fold_expression] = STATE(6267), - [sym_parameter_pack_expansion] = STATE(6267), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4422), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4422), - [sym_semgrep_ellipsis] = STATE(6169), - [sym_deep_ellipsis] = STATE(6169), - [sym_identifier] = ACTIONS(4112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5054), - [anon_sym_LPAREN2] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_TILDE] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4122), - [anon_sym_not] = ACTIONS(4114), - [anon_sym_compl] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(5056), - [anon_sym_PLUS_PLUS] = ACTIONS(5056), - [anon_sym_sizeof] = ACTIONS(4124), - [anon_sym___alignof__] = ACTIONS(4126), - [anon_sym___alignof] = ACTIONS(4126), - [anon_sym__alignof] = ACTIONS(4126), - [anon_sym_alignof] = ACTIONS(4126), - [anon_sym__Alignof] = ACTIONS(4126), - [anon_sym_offsetof] = ACTIONS(4128), - [anon_sym__Generic] = ACTIONS(4130), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4136), - [anon_sym_u_SQUOTE] = ACTIONS(4136), - [anon_sym_U_SQUOTE] = ACTIONS(4136), - [anon_sym_u8_SQUOTE] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_L_DQUOTE] = ACTIONS(4138), - [anon_sym_u_DQUOTE] = ACTIONS(4138), - [anon_sym_U_DQUOTE] = ACTIONS(4138), - [anon_sym_u8_DQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [anon_sym_NULL] = ACTIONS(4142), - [anon_sym_nullptr] = ACTIONS(4142), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4150), - [anon_sym_requires] = ACTIONS(4152), - [sym_this] = ACTIONS(4140), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4154), - [sym_semgrep_named_ellipsis] = ACTIONS(4156), - }, - [1561] = { - [sym_expression] = STATE(5256), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1614] = { + [sym_expression] = STATE(4912), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -259340,7 +254224,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -259354,63 +254238,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1562] = { - [sym_expression] = STATE(5259), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1615] = { + [sym_expression] = STATE(4913), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -259442,7 +254326,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -259456,1389 +254340,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1563] = { - [sym_expression] = STATE(3655), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3806), - [sym_concatenated_string] = STATE(3806), - [sym_string_literal] = STATE(2240), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(2240), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2652), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(5142), - [anon_sym_BANG] = ACTIONS(2656), - [anon_sym_TILDE] = ACTIONS(2656), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_PLUS] = ACTIONS(2654), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2654), - [anon_sym_compl] = ACTIONS(2654), - [anon_sym_DASH_DASH] = ACTIONS(5004), - [anon_sym_PLUS_PLUS] = ACTIONS(5004), - [anon_sym_sizeof] = ACTIONS(2660), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2662), - [anon_sym_L_SQUOTE] = ACTIONS(2664), - [anon_sym_u_SQUOTE] = ACTIONS(2664), - [anon_sym_U_SQUOTE] = ACTIONS(2664), - [anon_sym_u8_SQUOTE] = ACTIONS(2664), - [anon_sym_SQUOTE] = ACTIONS(2664), - [anon_sym_L_DQUOTE] = ACTIONS(2666), - [anon_sym_u_DQUOTE] = ACTIONS(2666), - [anon_sym_U_DQUOTE] = ACTIONS(2666), - [anon_sym_u8_DQUOTE] = ACTIONS(2666), - [anon_sym_DQUOTE] = ACTIONS(2666), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2668), - [anon_sym_R_DQUOTE] = ACTIONS(2670), - [anon_sym_LR_DQUOTE] = ACTIONS(2670), - [anon_sym_uR_DQUOTE] = ACTIONS(2670), - [anon_sym_UR_DQUOTE] = ACTIONS(2670), - [anon_sym_u8R_DQUOTE] = ACTIONS(2670), - [anon_sym_co_await] = ACTIONS(2672), - [anon_sym_new] = ACTIONS(2674), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1564] = { - [sym_expression] = STATE(2986), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3806), - [sym_concatenated_string] = STATE(3806), - [sym_string_literal] = STATE(2240), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(2240), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2652), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(5142), - [anon_sym_BANG] = ACTIONS(2656), - [anon_sym_TILDE] = ACTIONS(2656), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_PLUS] = ACTIONS(2654), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2654), - [anon_sym_compl] = ACTIONS(2654), - [anon_sym_DASH_DASH] = ACTIONS(5004), - [anon_sym_PLUS_PLUS] = ACTIONS(5004), - [anon_sym_sizeof] = ACTIONS(2660), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2662), - [anon_sym_L_SQUOTE] = ACTIONS(2664), - [anon_sym_u_SQUOTE] = ACTIONS(2664), - [anon_sym_U_SQUOTE] = ACTIONS(2664), - [anon_sym_u8_SQUOTE] = ACTIONS(2664), - [anon_sym_SQUOTE] = ACTIONS(2664), - [anon_sym_L_DQUOTE] = ACTIONS(2666), - [anon_sym_u_DQUOTE] = ACTIONS(2666), - [anon_sym_U_DQUOTE] = ACTIONS(2666), - [anon_sym_u8_DQUOTE] = ACTIONS(2666), - [anon_sym_DQUOTE] = ACTIONS(2666), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2668), - [anon_sym_R_DQUOTE] = ACTIONS(2670), - [anon_sym_LR_DQUOTE] = ACTIONS(2670), - [anon_sym_uR_DQUOTE] = ACTIONS(2670), - [anon_sym_UR_DQUOTE] = ACTIONS(2670), - [anon_sym_u8R_DQUOTE] = ACTIONS(2670), - [anon_sym_co_await] = ACTIONS(2672), - [anon_sym_new] = ACTIONS(2674), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1565] = { - [sym_expression] = STATE(3768), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3806), - [sym_concatenated_string] = STATE(3806), - [sym_string_literal] = STATE(2240), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(2240), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2652), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(5142), - [anon_sym_BANG] = ACTIONS(2656), - [anon_sym_TILDE] = ACTIONS(2656), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_PLUS] = ACTIONS(2654), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2654), - [anon_sym_compl] = ACTIONS(2654), - [anon_sym_DASH_DASH] = ACTIONS(5004), - [anon_sym_PLUS_PLUS] = ACTIONS(5004), - [anon_sym_sizeof] = ACTIONS(2660), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2662), - [anon_sym_L_SQUOTE] = ACTIONS(2664), - [anon_sym_u_SQUOTE] = ACTIONS(2664), - [anon_sym_U_SQUOTE] = ACTIONS(2664), - [anon_sym_u8_SQUOTE] = ACTIONS(2664), - [anon_sym_SQUOTE] = ACTIONS(2664), - [anon_sym_L_DQUOTE] = ACTIONS(2666), - [anon_sym_u_DQUOTE] = ACTIONS(2666), - [anon_sym_U_DQUOTE] = ACTIONS(2666), - [anon_sym_u8_DQUOTE] = ACTIONS(2666), - [anon_sym_DQUOTE] = ACTIONS(2666), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2668), - [anon_sym_R_DQUOTE] = ACTIONS(2670), - [anon_sym_LR_DQUOTE] = ACTIONS(2670), - [anon_sym_uR_DQUOTE] = ACTIONS(2670), - [anon_sym_UR_DQUOTE] = ACTIONS(2670), - [anon_sym_u8R_DQUOTE] = ACTIONS(2670), - [anon_sym_co_await] = ACTIONS(2672), - [anon_sym_new] = ACTIONS(2674), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1566] = { - [sym_expression] = STATE(3769), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3806), - [sym_concatenated_string] = STATE(3806), - [sym_string_literal] = STATE(2240), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(2240), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2652), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(5142), - [anon_sym_BANG] = ACTIONS(2656), - [anon_sym_TILDE] = ACTIONS(2656), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_PLUS] = ACTIONS(2654), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2654), - [anon_sym_compl] = ACTIONS(2654), - [anon_sym_DASH_DASH] = ACTIONS(5004), - [anon_sym_PLUS_PLUS] = ACTIONS(5004), - [anon_sym_sizeof] = ACTIONS(2660), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2662), - [anon_sym_L_SQUOTE] = ACTIONS(2664), - [anon_sym_u_SQUOTE] = ACTIONS(2664), - [anon_sym_U_SQUOTE] = ACTIONS(2664), - [anon_sym_u8_SQUOTE] = ACTIONS(2664), - [anon_sym_SQUOTE] = ACTIONS(2664), - [anon_sym_L_DQUOTE] = ACTIONS(2666), - [anon_sym_u_DQUOTE] = ACTIONS(2666), - [anon_sym_U_DQUOTE] = ACTIONS(2666), - [anon_sym_u8_DQUOTE] = ACTIONS(2666), - [anon_sym_DQUOTE] = ACTIONS(2666), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2668), - [anon_sym_R_DQUOTE] = ACTIONS(2670), - [anon_sym_LR_DQUOTE] = ACTIONS(2670), - [anon_sym_uR_DQUOTE] = ACTIONS(2670), - [anon_sym_UR_DQUOTE] = ACTIONS(2670), - [anon_sym_u8R_DQUOTE] = ACTIONS(2670), - [anon_sym_co_await] = ACTIONS(2672), - [anon_sym_new] = ACTIONS(2674), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1567] = { - [sym_expression] = STATE(3770), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3806), - [sym_concatenated_string] = STATE(3806), - [sym_string_literal] = STATE(2240), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(2240), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2652), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(5142), - [anon_sym_BANG] = ACTIONS(2656), - [anon_sym_TILDE] = ACTIONS(2656), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_PLUS] = ACTIONS(2654), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2654), - [anon_sym_compl] = ACTIONS(2654), - [anon_sym_DASH_DASH] = ACTIONS(5004), - [anon_sym_PLUS_PLUS] = ACTIONS(5004), - [anon_sym_sizeof] = ACTIONS(2660), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2662), - [anon_sym_L_SQUOTE] = ACTIONS(2664), - [anon_sym_u_SQUOTE] = ACTIONS(2664), - [anon_sym_U_SQUOTE] = ACTIONS(2664), - [anon_sym_u8_SQUOTE] = ACTIONS(2664), - [anon_sym_SQUOTE] = ACTIONS(2664), - [anon_sym_L_DQUOTE] = ACTIONS(2666), - [anon_sym_u_DQUOTE] = ACTIONS(2666), - [anon_sym_U_DQUOTE] = ACTIONS(2666), - [anon_sym_u8_DQUOTE] = ACTIONS(2666), - [anon_sym_DQUOTE] = ACTIONS(2666), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2668), - [anon_sym_R_DQUOTE] = ACTIONS(2670), - [anon_sym_LR_DQUOTE] = ACTIONS(2670), - [anon_sym_uR_DQUOTE] = ACTIONS(2670), - [anon_sym_UR_DQUOTE] = ACTIONS(2670), - [anon_sym_u8R_DQUOTE] = ACTIONS(2670), - [anon_sym_co_await] = ACTIONS(2672), - [anon_sym_new] = ACTIONS(2674), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1568] = { - [sym_expression] = STATE(3771), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3806), - [sym_concatenated_string] = STATE(3806), - [sym_string_literal] = STATE(2240), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(2240), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2652), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(5142), - [anon_sym_BANG] = ACTIONS(2656), - [anon_sym_TILDE] = ACTIONS(2656), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_PLUS] = ACTIONS(2654), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2654), - [anon_sym_compl] = ACTIONS(2654), - [anon_sym_DASH_DASH] = ACTIONS(5004), - [anon_sym_PLUS_PLUS] = ACTIONS(5004), - [anon_sym_sizeof] = ACTIONS(2660), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2662), - [anon_sym_L_SQUOTE] = ACTIONS(2664), - [anon_sym_u_SQUOTE] = ACTIONS(2664), - [anon_sym_U_SQUOTE] = ACTIONS(2664), - [anon_sym_u8_SQUOTE] = ACTIONS(2664), - [anon_sym_SQUOTE] = ACTIONS(2664), - [anon_sym_L_DQUOTE] = ACTIONS(2666), - [anon_sym_u_DQUOTE] = ACTIONS(2666), - [anon_sym_U_DQUOTE] = ACTIONS(2666), - [anon_sym_u8_DQUOTE] = ACTIONS(2666), - [anon_sym_DQUOTE] = ACTIONS(2666), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2668), - [anon_sym_R_DQUOTE] = ACTIONS(2670), - [anon_sym_LR_DQUOTE] = ACTIONS(2670), - [anon_sym_uR_DQUOTE] = ACTIONS(2670), - [anon_sym_UR_DQUOTE] = ACTIONS(2670), - [anon_sym_u8R_DQUOTE] = ACTIONS(2670), - [anon_sym_co_await] = ACTIONS(2672), - [anon_sym_new] = ACTIONS(2674), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1569] = { - [sym_expression] = STATE(3772), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3806), - [sym_concatenated_string] = STATE(3806), - [sym_string_literal] = STATE(2240), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(2240), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2652), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(5142), - [anon_sym_BANG] = ACTIONS(2656), - [anon_sym_TILDE] = ACTIONS(2656), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_PLUS] = ACTIONS(2654), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2654), - [anon_sym_compl] = ACTIONS(2654), - [anon_sym_DASH_DASH] = ACTIONS(5004), - [anon_sym_PLUS_PLUS] = ACTIONS(5004), - [anon_sym_sizeof] = ACTIONS(2660), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2662), - [anon_sym_L_SQUOTE] = ACTIONS(2664), - [anon_sym_u_SQUOTE] = ACTIONS(2664), - [anon_sym_U_SQUOTE] = ACTIONS(2664), - [anon_sym_u8_SQUOTE] = ACTIONS(2664), - [anon_sym_SQUOTE] = ACTIONS(2664), - [anon_sym_L_DQUOTE] = ACTIONS(2666), - [anon_sym_u_DQUOTE] = ACTIONS(2666), - [anon_sym_U_DQUOTE] = ACTIONS(2666), - [anon_sym_u8_DQUOTE] = ACTIONS(2666), - [anon_sym_DQUOTE] = ACTIONS(2666), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2668), - [anon_sym_R_DQUOTE] = ACTIONS(2670), - [anon_sym_LR_DQUOTE] = ACTIONS(2670), - [anon_sym_uR_DQUOTE] = ACTIONS(2670), - [anon_sym_UR_DQUOTE] = ACTIONS(2670), - [anon_sym_u8R_DQUOTE] = ACTIONS(2670), - [anon_sym_co_await] = ACTIONS(2672), - [anon_sym_new] = ACTIONS(2674), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1570] = { - [sym_expression] = STATE(3773), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3806), - [sym_concatenated_string] = STATE(3806), - [sym_string_literal] = STATE(2240), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(2240), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2652), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(5142), - [anon_sym_BANG] = ACTIONS(2656), - [anon_sym_TILDE] = ACTIONS(2656), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_PLUS] = ACTIONS(2654), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2654), - [anon_sym_compl] = ACTIONS(2654), - [anon_sym_DASH_DASH] = ACTIONS(5004), - [anon_sym_PLUS_PLUS] = ACTIONS(5004), - [anon_sym_sizeof] = ACTIONS(2660), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2662), - [anon_sym_L_SQUOTE] = ACTIONS(2664), - [anon_sym_u_SQUOTE] = ACTIONS(2664), - [anon_sym_U_SQUOTE] = ACTIONS(2664), - [anon_sym_u8_SQUOTE] = ACTIONS(2664), - [anon_sym_SQUOTE] = ACTIONS(2664), - [anon_sym_L_DQUOTE] = ACTIONS(2666), - [anon_sym_u_DQUOTE] = ACTIONS(2666), - [anon_sym_U_DQUOTE] = ACTIONS(2666), - [anon_sym_u8_DQUOTE] = ACTIONS(2666), - [anon_sym_DQUOTE] = ACTIONS(2666), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2668), - [anon_sym_R_DQUOTE] = ACTIONS(2670), - [anon_sym_LR_DQUOTE] = ACTIONS(2670), - [anon_sym_uR_DQUOTE] = ACTIONS(2670), - [anon_sym_UR_DQUOTE] = ACTIONS(2670), - [anon_sym_u8R_DQUOTE] = ACTIONS(2670), - [anon_sym_co_await] = ACTIONS(2672), - [anon_sym_new] = ACTIONS(2674), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1571] = { - [sym_expression] = STATE(3774), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3806), - [sym_concatenated_string] = STATE(3806), - [sym_string_literal] = STATE(2240), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(2240), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2652), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(5142), - [anon_sym_BANG] = ACTIONS(2656), - [anon_sym_TILDE] = ACTIONS(2656), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_PLUS] = ACTIONS(2654), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2654), - [anon_sym_compl] = ACTIONS(2654), - [anon_sym_DASH_DASH] = ACTIONS(5004), - [anon_sym_PLUS_PLUS] = ACTIONS(5004), - [anon_sym_sizeof] = ACTIONS(2660), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2662), - [anon_sym_L_SQUOTE] = ACTIONS(2664), - [anon_sym_u_SQUOTE] = ACTIONS(2664), - [anon_sym_U_SQUOTE] = ACTIONS(2664), - [anon_sym_u8_SQUOTE] = ACTIONS(2664), - [anon_sym_SQUOTE] = ACTIONS(2664), - [anon_sym_L_DQUOTE] = ACTIONS(2666), - [anon_sym_u_DQUOTE] = ACTIONS(2666), - [anon_sym_U_DQUOTE] = ACTIONS(2666), - [anon_sym_u8_DQUOTE] = ACTIONS(2666), - [anon_sym_DQUOTE] = ACTIONS(2666), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2668), - [anon_sym_R_DQUOTE] = ACTIONS(2670), - [anon_sym_LR_DQUOTE] = ACTIONS(2670), - [anon_sym_uR_DQUOTE] = ACTIONS(2670), - [anon_sym_UR_DQUOTE] = ACTIONS(2670), - [anon_sym_u8R_DQUOTE] = ACTIONS(2670), - [anon_sym_co_await] = ACTIONS(2672), - [anon_sym_new] = ACTIONS(2674), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1572] = { - [sym_expression] = STATE(3656), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3806), - [sym_concatenated_string] = STATE(3806), - [sym_string_literal] = STATE(2240), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(2240), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2652), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(5142), - [anon_sym_BANG] = ACTIONS(2656), - [anon_sym_TILDE] = ACTIONS(2656), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_PLUS] = ACTIONS(2654), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2654), - [anon_sym_compl] = ACTIONS(2654), - [anon_sym_DASH_DASH] = ACTIONS(5004), - [anon_sym_PLUS_PLUS] = ACTIONS(5004), - [anon_sym_sizeof] = ACTIONS(2660), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2662), - [anon_sym_L_SQUOTE] = ACTIONS(2664), - [anon_sym_u_SQUOTE] = ACTIONS(2664), - [anon_sym_U_SQUOTE] = ACTIONS(2664), - [anon_sym_u8_SQUOTE] = ACTIONS(2664), - [anon_sym_SQUOTE] = ACTIONS(2664), - [anon_sym_L_DQUOTE] = ACTIONS(2666), - [anon_sym_u_DQUOTE] = ACTIONS(2666), - [anon_sym_U_DQUOTE] = ACTIONS(2666), - [anon_sym_u8_DQUOTE] = ACTIONS(2666), - [anon_sym_DQUOTE] = ACTIONS(2666), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2668), - [anon_sym_R_DQUOTE] = ACTIONS(2670), - [anon_sym_LR_DQUOTE] = ACTIONS(2670), - [anon_sym_uR_DQUOTE] = ACTIONS(2670), - [anon_sym_UR_DQUOTE] = ACTIONS(2670), - [anon_sym_u8R_DQUOTE] = ACTIONS(2670), - [anon_sym_co_await] = ACTIONS(2672), - [anon_sym_new] = ACTIONS(2674), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1573] = { - [sym_expression] = STATE(3817), - [sym_expression_not_binary] = STATE(4358), - [sym_conditional_expression] = STATE(4353), - [sym_assignment_expression] = STATE(4353), - [sym_pointer_expression] = STATE(4360), - [sym_unary_expression] = STATE(4353), - [sym_binary_expression] = STATE(4358), - [sym_update_expression] = STATE(4353), - [sym_cast_expression] = STATE(4353), - [sym_sizeof_expression] = STATE(4353), - [sym_alignof_expression] = STATE(4353), - [sym_offsetof_expression] = STATE(4353), - [sym_generic_expression] = STATE(4353), - [sym_subscript_expression] = STATE(4360), - [sym_call_expression] = STATE(4360), - [sym_gnu_asm_expression] = STATE(4353), - [sym_field_expression] = STATE(4360), - [sym_compound_literal_expression] = STATE(4353), - [sym_parenthesized_expression] = STATE(4360), - [sym_char_literal] = STATE(4023), - [sym_concatenated_string] = STATE(4023), - [sym_string_literal] = STATE(2426), - [sym_null] = STATE(4353), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9636), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4353), - [sym_raw_string_literal] = STATE(2426), - [sym_co_await_expression] = STATE(4353), - [sym_new_expression] = STATE(4353), - [sym_delete_expression] = STATE(4353), - [sym_requires_clause] = STATE(4353), - [sym_requires_expression] = STATE(4353), - [sym_lambda_expression] = STATE(4353), - [sym_lambda_capture_specifier] = STATE(7284), - [sym_fold_expression] = STATE(4353), - [sym_parameter_pack_expansion] = STATE(4353), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4360), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4360), - [sym_semgrep_ellipsis] = STATE(4358), - [sym_deep_ellipsis] = STATE(4358), - [sym_identifier] = ACTIONS(2941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5070), - [anon_sym_LPAREN2] = ACTIONS(5130), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2951), - [anon_sym_not] = ACTIONS(2943), - [anon_sym_compl] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(5072), - [anon_sym_PLUS_PLUS] = ACTIONS(5072), - [anon_sym_sizeof] = ACTIONS(2953), - [anon_sym___alignof__] = ACTIONS(2955), - [anon_sym___alignof] = ACTIONS(2955), - [anon_sym__alignof] = ACTIONS(2955), - [anon_sym_alignof] = ACTIONS(2955), - [anon_sym__Alignof] = ACTIONS(2955), - [anon_sym_offsetof] = ACTIONS(2957), - [anon_sym__Generic] = ACTIONS(2959), - [anon_sym_asm] = ACTIONS(2961), - [anon_sym___asm__] = ACTIONS(2961), - [sym_number_literal] = ACTIONS(2963), - [anon_sym_L_SQUOTE] = ACTIONS(2965), - [anon_sym_u_SQUOTE] = ACTIONS(2965), - [anon_sym_U_SQUOTE] = ACTIONS(2965), - [anon_sym_u8_SQUOTE] = ACTIONS(2965), - [anon_sym_SQUOTE] = ACTIONS(2965), - [anon_sym_L_DQUOTE] = ACTIONS(2967), - [anon_sym_u_DQUOTE] = ACTIONS(2967), - [anon_sym_U_DQUOTE] = ACTIONS(2967), - [anon_sym_u8_DQUOTE] = ACTIONS(2967), - [anon_sym_DQUOTE] = ACTIONS(2967), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2971), - [anon_sym_nullptr] = ACTIONS(2971), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2973), - [anon_sym_R_DQUOTE] = ACTIONS(2975), - [anon_sym_LR_DQUOTE] = ACTIONS(2975), - [anon_sym_uR_DQUOTE] = ACTIONS(2975), - [anon_sym_UR_DQUOTE] = ACTIONS(2975), - [anon_sym_u8R_DQUOTE] = ACTIONS(2975), - [anon_sym_co_await] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2979), - [anon_sym_requires] = ACTIONS(2981), - [sym_this] = ACTIONS(2969), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2983), - [sym_semgrep_named_ellipsis] = ACTIONS(2985), - }, - [1574] = { - [sym_expression] = STATE(3830), - [sym_expression_not_binary] = STATE(4358), - [sym_conditional_expression] = STATE(4353), - [sym_assignment_expression] = STATE(4353), - [sym_pointer_expression] = STATE(4360), - [sym_unary_expression] = STATE(4353), - [sym_binary_expression] = STATE(4358), - [sym_update_expression] = STATE(4353), - [sym_cast_expression] = STATE(4353), - [sym_sizeof_expression] = STATE(4353), - [sym_alignof_expression] = STATE(4353), - [sym_offsetof_expression] = STATE(4353), - [sym_generic_expression] = STATE(4353), - [sym_subscript_expression] = STATE(4360), - [sym_call_expression] = STATE(4360), - [sym_gnu_asm_expression] = STATE(4353), - [sym_field_expression] = STATE(4360), - [sym_compound_literal_expression] = STATE(4353), - [sym_parenthesized_expression] = STATE(4360), - [sym_char_literal] = STATE(4023), - [sym_concatenated_string] = STATE(4023), - [sym_string_literal] = STATE(2426), - [sym_null] = STATE(4353), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9636), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4353), - [sym_raw_string_literal] = STATE(2426), - [sym_co_await_expression] = STATE(4353), - [sym_new_expression] = STATE(4353), - [sym_delete_expression] = STATE(4353), - [sym_requires_clause] = STATE(4353), - [sym_requires_expression] = STATE(4353), - [sym_lambda_expression] = STATE(4353), - [sym_lambda_capture_specifier] = STATE(7284), - [sym_fold_expression] = STATE(4353), - [sym_parameter_pack_expansion] = STATE(4353), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4360), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4360), - [sym_semgrep_ellipsis] = STATE(4358), - [sym_deep_ellipsis] = STATE(4358), - [sym_identifier] = ACTIONS(2941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5070), - [anon_sym_LPAREN2] = ACTIONS(5130), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2951), - [anon_sym_not] = ACTIONS(2943), - [anon_sym_compl] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(5072), - [anon_sym_PLUS_PLUS] = ACTIONS(5072), - [anon_sym_sizeof] = ACTIONS(2953), - [anon_sym___alignof__] = ACTIONS(2955), - [anon_sym___alignof] = ACTIONS(2955), - [anon_sym__alignof] = ACTIONS(2955), - [anon_sym_alignof] = ACTIONS(2955), - [anon_sym__Alignof] = ACTIONS(2955), - [anon_sym_offsetof] = ACTIONS(2957), - [anon_sym__Generic] = ACTIONS(2959), - [anon_sym_asm] = ACTIONS(2961), - [anon_sym___asm__] = ACTIONS(2961), - [sym_number_literal] = ACTIONS(2963), - [anon_sym_L_SQUOTE] = ACTIONS(2965), - [anon_sym_u_SQUOTE] = ACTIONS(2965), - [anon_sym_U_SQUOTE] = ACTIONS(2965), - [anon_sym_u8_SQUOTE] = ACTIONS(2965), - [anon_sym_SQUOTE] = ACTIONS(2965), - [anon_sym_L_DQUOTE] = ACTIONS(2967), - [anon_sym_u_DQUOTE] = ACTIONS(2967), - [anon_sym_U_DQUOTE] = ACTIONS(2967), - [anon_sym_u8_DQUOTE] = ACTIONS(2967), - [anon_sym_DQUOTE] = ACTIONS(2967), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2971), - [anon_sym_nullptr] = ACTIONS(2971), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2973), - [anon_sym_R_DQUOTE] = ACTIONS(2975), - [anon_sym_LR_DQUOTE] = ACTIONS(2975), - [anon_sym_uR_DQUOTE] = ACTIONS(2975), - [anon_sym_UR_DQUOTE] = ACTIONS(2975), - [anon_sym_u8R_DQUOTE] = ACTIONS(2975), - [anon_sym_co_await] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2979), - [anon_sym_requires] = ACTIONS(2981), - [sym_this] = ACTIONS(2969), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2983), - [sym_semgrep_named_ellipsis] = ACTIONS(2985), - }, - [1575] = { - [sym_expression] = STATE(3834), - [sym_expression_not_binary] = STATE(4358), - [sym_conditional_expression] = STATE(4353), - [sym_assignment_expression] = STATE(4353), - [sym_pointer_expression] = STATE(4360), - [sym_unary_expression] = STATE(4353), - [sym_binary_expression] = STATE(4358), - [sym_update_expression] = STATE(4353), - [sym_cast_expression] = STATE(4353), - [sym_sizeof_expression] = STATE(4353), - [sym_alignof_expression] = STATE(4353), - [sym_offsetof_expression] = STATE(4353), - [sym_generic_expression] = STATE(4353), - [sym_subscript_expression] = STATE(4360), - [sym_call_expression] = STATE(4360), - [sym_gnu_asm_expression] = STATE(4353), - [sym_field_expression] = STATE(4360), - [sym_compound_literal_expression] = STATE(4353), - [sym_parenthesized_expression] = STATE(4360), - [sym_char_literal] = STATE(4023), - [sym_concatenated_string] = STATE(4023), - [sym_string_literal] = STATE(2426), - [sym_null] = STATE(4353), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9636), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4353), - [sym_raw_string_literal] = STATE(2426), - [sym_co_await_expression] = STATE(4353), - [sym_new_expression] = STATE(4353), - [sym_delete_expression] = STATE(4353), - [sym_requires_clause] = STATE(4353), - [sym_requires_expression] = STATE(4353), - [sym_lambda_expression] = STATE(4353), - [sym_lambda_capture_specifier] = STATE(7284), - [sym_fold_expression] = STATE(4353), - [sym_parameter_pack_expansion] = STATE(4353), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4360), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4360), - [sym_semgrep_ellipsis] = STATE(4358), - [sym_deep_ellipsis] = STATE(4358), - [sym_identifier] = ACTIONS(2941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5404), - [anon_sym_LPAREN2] = ACTIONS(5406), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2951), - [anon_sym_not] = ACTIONS(2943), - [anon_sym_compl] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(5072), - [anon_sym_PLUS_PLUS] = ACTIONS(5072), - [anon_sym_sizeof] = ACTIONS(2953), - [anon_sym___alignof__] = ACTIONS(2955), - [anon_sym___alignof] = ACTIONS(2955), - [anon_sym__alignof] = ACTIONS(2955), - [anon_sym_alignof] = ACTIONS(2955), - [anon_sym__Alignof] = ACTIONS(2955), - [anon_sym_offsetof] = ACTIONS(2957), - [anon_sym__Generic] = ACTIONS(2959), - [anon_sym_asm] = ACTIONS(2961), - [anon_sym___asm__] = ACTIONS(2961), - [sym_number_literal] = ACTIONS(2963), - [anon_sym_L_SQUOTE] = ACTIONS(2965), - [anon_sym_u_SQUOTE] = ACTIONS(2965), - [anon_sym_U_SQUOTE] = ACTIONS(2965), - [anon_sym_u8_SQUOTE] = ACTIONS(2965), - [anon_sym_SQUOTE] = ACTIONS(2965), - [anon_sym_L_DQUOTE] = ACTIONS(2967), - [anon_sym_u_DQUOTE] = ACTIONS(2967), - [anon_sym_U_DQUOTE] = ACTIONS(2967), - [anon_sym_u8_DQUOTE] = ACTIONS(2967), - [anon_sym_DQUOTE] = ACTIONS(2967), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2971), - [anon_sym_nullptr] = ACTIONS(2971), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2973), - [anon_sym_R_DQUOTE] = ACTIONS(2975), - [anon_sym_LR_DQUOTE] = ACTIONS(2975), - [anon_sym_uR_DQUOTE] = ACTIONS(2975), - [anon_sym_UR_DQUOTE] = ACTIONS(2975), - [anon_sym_u8R_DQUOTE] = ACTIONS(2975), - [anon_sym_co_await] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2979), - [anon_sym_requires] = ACTIONS(2981), - [sym_this] = ACTIONS(2969), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2983), - [sym_semgrep_named_ellipsis] = ACTIONS(2985), - }, - [1576] = { - [sym_expression] = STATE(5279), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1616] = { + [sym_expression] = STATE(4914), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -260870,7 +254428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -260884,63 +254442,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1577] = { - [sym_expression] = STATE(5195), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1617] = { + [sym_expression] = STATE(4915), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -260972,7 +254530,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -260986,1088 +254544,374 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1578] = { - [sym_expression] = STATE(5315), - [sym_expression_not_binary] = STATE(5540), - [sym_conditional_expression] = STATE(5537), - [sym_assignment_expression] = STATE(5537), - [sym_pointer_expression] = STATE(3745), - [sym_unary_expression] = STATE(5537), - [sym_binary_expression] = STATE(5540), - [sym_update_expression] = STATE(5537), - [sym_cast_expression] = STATE(5537), - [sym_sizeof_expression] = STATE(5537), - [sym_alignof_expression] = STATE(5537), - [sym_offsetof_expression] = STATE(5537), - [sym_generic_expression] = STATE(5537), - [sym_subscript_expression] = STATE(3745), - [sym_call_expression] = STATE(3745), - [sym_gnu_asm_expression] = STATE(5537), - [sym_field_expression] = STATE(3745), - [sym_compound_literal_expression] = STATE(5537), - [sym_parenthesized_expression] = STATE(3745), - [sym_char_literal] = STATE(5453), - [sym_concatenated_string] = STATE(5453), - [sym_string_literal] = STATE(3936), - [sym_null] = STATE(5537), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9333), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5537), - [sym_raw_string_literal] = STATE(3936), - [sym_co_await_expression] = STATE(5537), - [sym_new_expression] = STATE(5537), - [sym_delete_expression] = STATE(5537), - [sym_requires_clause] = STATE(5537), - [sym_requires_expression] = STATE(5537), - [sym_lambda_expression] = STATE(5537), - [sym_lambda_capture_specifier] = STATE(7261), - [sym_fold_expression] = STATE(5537), - [sym_parameter_pack_expansion] = STATE(5537), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3745), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3745), - [sym_semgrep_ellipsis] = STATE(5540), - [sym_deep_ellipsis] = STATE(5540), - [sym_identifier] = ACTIONS(5032), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5034), - [anon_sym_LPAREN2] = ACTIONS(5112), - [anon_sym_BANG] = ACTIONS(3820), - [anon_sym_TILDE] = ACTIONS(3820), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(3822), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3826), - [anon_sym_not] = ACTIONS(3818), - [anon_sym_compl] = ACTIONS(3818), - [anon_sym_DASH_DASH] = ACTIONS(5036), - [anon_sym_PLUS_PLUS] = ACTIONS(5036), - [anon_sym_sizeof] = ACTIONS(3828), - [anon_sym___alignof__] = ACTIONS(3830), - [anon_sym___alignof] = ACTIONS(3830), - [anon_sym__alignof] = ACTIONS(3830), - [anon_sym_alignof] = ACTIONS(3830), - [anon_sym__Alignof] = ACTIONS(3830), - [anon_sym_offsetof] = ACTIONS(3832), - [anon_sym__Generic] = ACTIONS(3834), - [anon_sym_asm] = ACTIONS(3836), - [anon_sym___asm__] = ACTIONS(3836), - [sym_number_literal] = ACTIONS(3838), - [anon_sym_L_SQUOTE] = ACTIONS(3840), - [anon_sym_u_SQUOTE] = ACTIONS(3840), - [anon_sym_U_SQUOTE] = ACTIONS(3840), - [anon_sym_u8_SQUOTE] = ACTIONS(3840), - [anon_sym_SQUOTE] = ACTIONS(3840), - [anon_sym_L_DQUOTE] = ACTIONS(3842), - [anon_sym_u_DQUOTE] = ACTIONS(3842), - [anon_sym_U_DQUOTE] = ACTIONS(3842), - [anon_sym_u8_DQUOTE] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym_true] = ACTIONS(3844), - [sym_false] = ACTIONS(3844), - [anon_sym_NULL] = ACTIONS(3846), - [anon_sym_nullptr] = ACTIONS(3846), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(3854), - [anon_sym_requires] = ACTIONS(3856), - [sym_this] = ACTIONS(3844), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3858), - [sym_semgrep_named_ellipsis] = ACTIONS(3860), - }, - [1579] = { - [sym_expression] = STATE(5392), - [sym_expression_not_binary] = STATE(5540), - [sym_conditional_expression] = STATE(5537), - [sym_assignment_expression] = STATE(5537), - [sym_pointer_expression] = STATE(3745), - [sym_unary_expression] = STATE(5537), - [sym_binary_expression] = STATE(5540), - [sym_update_expression] = STATE(5537), - [sym_cast_expression] = STATE(5537), - [sym_sizeof_expression] = STATE(5537), - [sym_alignof_expression] = STATE(5537), - [sym_offsetof_expression] = STATE(5537), - [sym_generic_expression] = STATE(5537), - [sym_subscript_expression] = STATE(3745), - [sym_call_expression] = STATE(3745), - [sym_gnu_asm_expression] = STATE(5537), - [sym_field_expression] = STATE(3745), - [sym_compound_literal_expression] = STATE(5537), - [sym_parenthesized_expression] = STATE(3745), - [sym_char_literal] = STATE(5453), - [sym_concatenated_string] = STATE(5453), - [sym_string_literal] = STATE(3936), - [sym_null] = STATE(5537), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9333), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5537), - [sym_raw_string_literal] = STATE(3936), - [sym_co_await_expression] = STATE(5537), - [sym_new_expression] = STATE(5537), - [sym_delete_expression] = STATE(5537), - [sym_requires_clause] = STATE(5537), - [sym_requires_expression] = STATE(5537), - [sym_lambda_expression] = STATE(5537), - [sym_lambda_capture_specifier] = STATE(7261), - [sym_fold_expression] = STATE(5537), - [sym_parameter_pack_expansion] = STATE(5537), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3745), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3745), - [sym_semgrep_ellipsis] = STATE(5540), - [sym_deep_ellipsis] = STATE(5540), - [sym_identifier] = ACTIONS(5032), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5034), - [anon_sym_LPAREN2] = ACTIONS(5112), - [anon_sym_BANG] = ACTIONS(3820), - [anon_sym_TILDE] = ACTIONS(3820), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(3822), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3826), - [anon_sym_not] = ACTIONS(3818), - [anon_sym_compl] = ACTIONS(3818), - [anon_sym_DASH_DASH] = ACTIONS(5036), - [anon_sym_PLUS_PLUS] = ACTIONS(5036), - [anon_sym_sizeof] = ACTIONS(3828), - [anon_sym___alignof__] = ACTIONS(3830), - [anon_sym___alignof] = ACTIONS(3830), - [anon_sym__alignof] = ACTIONS(3830), - [anon_sym_alignof] = ACTIONS(3830), - [anon_sym__Alignof] = ACTIONS(3830), - [anon_sym_offsetof] = ACTIONS(3832), - [anon_sym__Generic] = ACTIONS(3834), - [anon_sym_asm] = ACTIONS(3836), - [anon_sym___asm__] = ACTIONS(3836), - [sym_number_literal] = ACTIONS(3838), - [anon_sym_L_SQUOTE] = ACTIONS(3840), - [anon_sym_u_SQUOTE] = ACTIONS(3840), - [anon_sym_U_SQUOTE] = ACTIONS(3840), - [anon_sym_u8_SQUOTE] = ACTIONS(3840), - [anon_sym_SQUOTE] = ACTIONS(3840), - [anon_sym_L_DQUOTE] = ACTIONS(3842), - [anon_sym_u_DQUOTE] = ACTIONS(3842), - [anon_sym_U_DQUOTE] = ACTIONS(3842), - [anon_sym_u8_DQUOTE] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym_true] = ACTIONS(3844), - [sym_false] = ACTIONS(3844), - [anon_sym_NULL] = ACTIONS(3846), - [anon_sym_nullptr] = ACTIONS(3846), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(3854), - [anon_sym_requires] = ACTIONS(3856), - [sym_this] = ACTIONS(3844), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3858), - [sym_semgrep_named_ellipsis] = ACTIONS(3860), - }, - [1580] = { - [sym_expression] = STATE(5428), - [sym_expression_not_binary] = STATE(5540), - [sym_conditional_expression] = STATE(5537), - [sym_assignment_expression] = STATE(5537), - [sym_pointer_expression] = STATE(3745), - [sym_unary_expression] = STATE(5537), - [sym_binary_expression] = STATE(5540), - [sym_update_expression] = STATE(5537), - [sym_cast_expression] = STATE(5537), - [sym_sizeof_expression] = STATE(5537), - [sym_alignof_expression] = STATE(5537), - [sym_offsetof_expression] = STATE(5537), - [sym_generic_expression] = STATE(5537), - [sym_subscript_expression] = STATE(3745), - [sym_call_expression] = STATE(3745), - [sym_gnu_asm_expression] = STATE(5537), - [sym_field_expression] = STATE(3745), - [sym_compound_literal_expression] = STATE(5537), - [sym_parenthesized_expression] = STATE(3745), - [sym_char_literal] = STATE(5453), - [sym_concatenated_string] = STATE(5453), - [sym_string_literal] = STATE(3936), - [sym_null] = STATE(5537), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9333), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5537), - [sym_raw_string_literal] = STATE(3936), - [sym_co_await_expression] = STATE(5537), - [sym_new_expression] = STATE(5537), - [sym_delete_expression] = STATE(5537), - [sym_requires_clause] = STATE(5537), - [sym_requires_expression] = STATE(5537), - [sym_lambda_expression] = STATE(5537), - [sym_lambda_capture_specifier] = STATE(7261), - [sym_fold_expression] = STATE(5537), - [sym_parameter_pack_expansion] = STATE(5537), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3745), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3745), - [sym_semgrep_ellipsis] = STATE(5540), - [sym_deep_ellipsis] = STATE(5540), - [sym_identifier] = ACTIONS(5032), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5034), - [anon_sym_LPAREN2] = ACTIONS(5112), - [anon_sym_BANG] = ACTIONS(3820), - [anon_sym_TILDE] = ACTIONS(3820), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(3822), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3826), - [anon_sym_not] = ACTIONS(3818), - [anon_sym_compl] = ACTIONS(3818), - [anon_sym_DASH_DASH] = ACTIONS(5036), - [anon_sym_PLUS_PLUS] = ACTIONS(5036), - [anon_sym_sizeof] = ACTIONS(3828), - [anon_sym___alignof__] = ACTIONS(3830), - [anon_sym___alignof] = ACTIONS(3830), - [anon_sym__alignof] = ACTIONS(3830), - [anon_sym_alignof] = ACTIONS(3830), - [anon_sym__Alignof] = ACTIONS(3830), - [anon_sym_offsetof] = ACTIONS(3832), - [anon_sym__Generic] = ACTIONS(3834), - [anon_sym_asm] = ACTIONS(3836), - [anon_sym___asm__] = ACTIONS(3836), - [sym_number_literal] = ACTIONS(3838), - [anon_sym_L_SQUOTE] = ACTIONS(3840), - [anon_sym_u_SQUOTE] = ACTIONS(3840), - [anon_sym_U_SQUOTE] = ACTIONS(3840), - [anon_sym_u8_SQUOTE] = ACTIONS(3840), - [anon_sym_SQUOTE] = ACTIONS(3840), - [anon_sym_L_DQUOTE] = ACTIONS(3842), - [anon_sym_u_DQUOTE] = ACTIONS(3842), - [anon_sym_U_DQUOTE] = ACTIONS(3842), - [anon_sym_u8_DQUOTE] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym_true] = ACTIONS(3844), - [sym_false] = ACTIONS(3844), - [anon_sym_NULL] = ACTIONS(3846), - [anon_sym_nullptr] = ACTIONS(3846), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(3854), - [anon_sym_requires] = ACTIONS(3856), - [sym_this] = ACTIONS(3844), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3858), - [sym_semgrep_named_ellipsis] = ACTIONS(3860), - }, - [1581] = { - [sym_expression] = STATE(5429), - [sym_expression_not_binary] = STATE(5540), - [sym_conditional_expression] = STATE(5537), - [sym_assignment_expression] = STATE(5537), - [sym_pointer_expression] = STATE(3745), - [sym_unary_expression] = STATE(5537), - [sym_binary_expression] = STATE(5540), - [sym_update_expression] = STATE(5537), - [sym_cast_expression] = STATE(5537), - [sym_sizeof_expression] = STATE(5537), - [sym_alignof_expression] = STATE(5537), - [sym_offsetof_expression] = STATE(5537), - [sym_generic_expression] = STATE(5537), - [sym_subscript_expression] = STATE(3745), - [sym_call_expression] = STATE(3745), - [sym_gnu_asm_expression] = STATE(5537), - [sym_field_expression] = STATE(3745), - [sym_compound_literal_expression] = STATE(5537), - [sym_parenthesized_expression] = STATE(3745), - [sym_char_literal] = STATE(5453), - [sym_concatenated_string] = STATE(5453), - [sym_string_literal] = STATE(3936), - [sym_null] = STATE(5537), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9333), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5537), - [sym_raw_string_literal] = STATE(3936), - [sym_co_await_expression] = STATE(5537), - [sym_new_expression] = STATE(5537), - [sym_delete_expression] = STATE(5537), - [sym_requires_clause] = STATE(5537), - [sym_requires_expression] = STATE(5537), - [sym_lambda_expression] = STATE(5537), - [sym_lambda_capture_specifier] = STATE(7261), - [sym_fold_expression] = STATE(5537), - [sym_parameter_pack_expansion] = STATE(5537), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3745), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3745), - [sym_semgrep_ellipsis] = STATE(5540), - [sym_deep_ellipsis] = STATE(5540), - [sym_identifier] = ACTIONS(5032), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5034), - [anon_sym_LPAREN2] = ACTIONS(5112), - [anon_sym_BANG] = ACTIONS(3820), - [anon_sym_TILDE] = ACTIONS(3820), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(3822), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3826), - [anon_sym_not] = ACTIONS(3818), - [anon_sym_compl] = ACTIONS(3818), - [anon_sym_DASH_DASH] = ACTIONS(5036), - [anon_sym_PLUS_PLUS] = ACTIONS(5036), - [anon_sym_sizeof] = ACTIONS(3828), - [anon_sym___alignof__] = ACTIONS(3830), - [anon_sym___alignof] = ACTIONS(3830), - [anon_sym__alignof] = ACTIONS(3830), - [anon_sym_alignof] = ACTIONS(3830), - [anon_sym__Alignof] = ACTIONS(3830), - [anon_sym_offsetof] = ACTIONS(3832), - [anon_sym__Generic] = ACTIONS(3834), - [anon_sym_asm] = ACTIONS(3836), - [anon_sym___asm__] = ACTIONS(3836), - [sym_number_literal] = ACTIONS(3838), - [anon_sym_L_SQUOTE] = ACTIONS(3840), - [anon_sym_u_SQUOTE] = ACTIONS(3840), - [anon_sym_U_SQUOTE] = ACTIONS(3840), - [anon_sym_u8_SQUOTE] = ACTIONS(3840), - [anon_sym_SQUOTE] = ACTIONS(3840), - [anon_sym_L_DQUOTE] = ACTIONS(3842), - [anon_sym_u_DQUOTE] = ACTIONS(3842), - [anon_sym_U_DQUOTE] = ACTIONS(3842), - [anon_sym_u8_DQUOTE] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym_true] = ACTIONS(3844), - [sym_false] = ACTIONS(3844), - [anon_sym_NULL] = ACTIONS(3846), - [anon_sym_nullptr] = ACTIONS(3846), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(3854), - [anon_sym_requires] = ACTIONS(3856), - [sym_this] = ACTIONS(3844), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3858), - [sym_semgrep_named_ellipsis] = ACTIONS(3860), - }, - [1582] = { - [sym_expression] = STATE(5430), - [sym_expression_not_binary] = STATE(5540), - [sym_conditional_expression] = STATE(5537), - [sym_assignment_expression] = STATE(5537), - [sym_pointer_expression] = STATE(3745), - [sym_unary_expression] = STATE(5537), - [sym_binary_expression] = STATE(5540), - [sym_update_expression] = STATE(5537), - [sym_cast_expression] = STATE(5537), - [sym_sizeof_expression] = STATE(5537), - [sym_alignof_expression] = STATE(5537), - [sym_offsetof_expression] = STATE(5537), - [sym_generic_expression] = STATE(5537), - [sym_subscript_expression] = STATE(3745), - [sym_call_expression] = STATE(3745), - [sym_gnu_asm_expression] = STATE(5537), - [sym_field_expression] = STATE(3745), - [sym_compound_literal_expression] = STATE(5537), - [sym_parenthesized_expression] = STATE(3745), - [sym_char_literal] = STATE(5453), - [sym_concatenated_string] = STATE(5453), - [sym_string_literal] = STATE(3936), - [sym_null] = STATE(5537), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9333), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5537), - [sym_raw_string_literal] = STATE(3936), - [sym_co_await_expression] = STATE(5537), - [sym_new_expression] = STATE(5537), - [sym_delete_expression] = STATE(5537), - [sym_requires_clause] = STATE(5537), - [sym_requires_expression] = STATE(5537), - [sym_lambda_expression] = STATE(5537), - [sym_lambda_capture_specifier] = STATE(7261), - [sym_fold_expression] = STATE(5537), - [sym_parameter_pack_expansion] = STATE(5537), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3745), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3745), - [sym_semgrep_ellipsis] = STATE(5540), - [sym_deep_ellipsis] = STATE(5540), - [sym_identifier] = ACTIONS(5032), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5034), - [anon_sym_LPAREN2] = ACTIONS(5112), - [anon_sym_BANG] = ACTIONS(3820), - [anon_sym_TILDE] = ACTIONS(3820), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(3822), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3826), - [anon_sym_not] = ACTIONS(3818), - [anon_sym_compl] = ACTIONS(3818), - [anon_sym_DASH_DASH] = ACTIONS(5036), - [anon_sym_PLUS_PLUS] = ACTIONS(5036), - [anon_sym_sizeof] = ACTIONS(3828), - [anon_sym___alignof__] = ACTIONS(3830), - [anon_sym___alignof] = ACTIONS(3830), - [anon_sym__alignof] = ACTIONS(3830), - [anon_sym_alignof] = ACTIONS(3830), - [anon_sym__Alignof] = ACTIONS(3830), - [anon_sym_offsetof] = ACTIONS(3832), - [anon_sym__Generic] = ACTIONS(3834), - [anon_sym_asm] = ACTIONS(3836), - [anon_sym___asm__] = ACTIONS(3836), - [sym_number_literal] = ACTIONS(3838), - [anon_sym_L_SQUOTE] = ACTIONS(3840), - [anon_sym_u_SQUOTE] = ACTIONS(3840), - [anon_sym_U_SQUOTE] = ACTIONS(3840), - [anon_sym_u8_SQUOTE] = ACTIONS(3840), - [anon_sym_SQUOTE] = ACTIONS(3840), - [anon_sym_L_DQUOTE] = ACTIONS(3842), - [anon_sym_u_DQUOTE] = ACTIONS(3842), - [anon_sym_U_DQUOTE] = ACTIONS(3842), - [anon_sym_u8_DQUOTE] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym_true] = ACTIONS(3844), - [sym_false] = ACTIONS(3844), - [anon_sym_NULL] = ACTIONS(3846), - [anon_sym_nullptr] = ACTIONS(3846), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(3854), - [anon_sym_requires] = ACTIONS(3856), - [sym_this] = ACTIONS(3844), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3858), - [sym_semgrep_named_ellipsis] = ACTIONS(3860), - }, - [1583] = { - [sym_expression] = STATE(5751), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9595), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [sym_identifier] = ACTIONS(4059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4063), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), - }, - [1584] = { - [sym_expression] = STATE(5432), - [sym_expression_not_binary] = STATE(5540), - [sym_conditional_expression] = STATE(5537), - [sym_assignment_expression] = STATE(5537), - [sym_pointer_expression] = STATE(3745), - [sym_unary_expression] = STATE(5537), - [sym_binary_expression] = STATE(5540), - [sym_update_expression] = STATE(5537), - [sym_cast_expression] = STATE(5537), - [sym_sizeof_expression] = STATE(5537), - [sym_alignof_expression] = STATE(5537), - [sym_offsetof_expression] = STATE(5537), - [sym_generic_expression] = STATE(5537), - [sym_subscript_expression] = STATE(3745), - [sym_call_expression] = STATE(3745), - [sym_gnu_asm_expression] = STATE(5537), - [sym_field_expression] = STATE(3745), - [sym_compound_literal_expression] = STATE(5537), - [sym_parenthesized_expression] = STATE(3745), - [sym_char_literal] = STATE(5453), - [sym_concatenated_string] = STATE(5453), - [sym_string_literal] = STATE(3936), - [sym_null] = STATE(5537), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9333), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5537), - [sym_raw_string_literal] = STATE(3936), - [sym_co_await_expression] = STATE(5537), - [sym_new_expression] = STATE(5537), - [sym_delete_expression] = STATE(5537), - [sym_requires_clause] = STATE(5537), - [sym_requires_expression] = STATE(5537), - [sym_lambda_expression] = STATE(5537), - [sym_lambda_capture_specifier] = STATE(7261), - [sym_fold_expression] = STATE(5537), - [sym_parameter_pack_expansion] = STATE(5537), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3745), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3745), - [sym_semgrep_ellipsis] = STATE(5540), - [sym_deep_ellipsis] = STATE(5540), - [sym_identifier] = ACTIONS(5032), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5034), - [anon_sym_LPAREN2] = ACTIONS(5112), - [anon_sym_BANG] = ACTIONS(3820), - [anon_sym_TILDE] = ACTIONS(3820), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(3822), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3826), - [anon_sym_not] = ACTIONS(3818), - [anon_sym_compl] = ACTIONS(3818), - [anon_sym_DASH_DASH] = ACTIONS(5036), - [anon_sym_PLUS_PLUS] = ACTIONS(5036), - [anon_sym_sizeof] = ACTIONS(3828), - [anon_sym___alignof__] = ACTIONS(3830), - [anon_sym___alignof] = ACTIONS(3830), - [anon_sym__alignof] = ACTIONS(3830), - [anon_sym_alignof] = ACTIONS(3830), - [anon_sym__Alignof] = ACTIONS(3830), - [anon_sym_offsetof] = ACTIONS(3832), - [anon_sym__Generic] = ACTIONS(3834), - [anon_sym_asm] = ACTIONS(3836), - [anon_sym___asm__] = ACTIONS(3836), - [sym_number_literal] = ACTIONS(3838), - [anon_sym_L_SQUOTE] = ACTIONS(3840), - [anon_sym_u_SQUOTE] = ACTIONS(3840), - [anon_sym_U_SQUOTE] = ACTIONS(3840), - [anon_sym_u8_SQUOTE] = ACTIONS(3840), - [anon_sym_SQUOTE] = ACTIONS(3840), - [anon_sym_L_DQUOTE] = ACTIONS(3842), - [anon_sym_u_DQUOTE] = ACTIONS(3842), - [anon_sym_U_DQUOTE] = ACTIONS(3842), - [anon_sym_u8_DQUOTE] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym_true] = ACTIONS(3844), - [sym_false] = ACTIONS(3844), - [anon_sym_NULL] = ACTIONS(3846), - [anon_sym_nullptr] = ACTIONS(3846), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(3854), - [anon_sym_requires] = ACTIONS(3856), - [sym_this] = ACTIONS(3844), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3858), - [sym_semgrep_named_ellipsis] = ACTIONS(3860), - }, - [1585] = { - [sym_expression] = STATE(5433), - [sym_expression_not_binary] = STATE(5540), - [sym_conditional_expression] = STATE(5537), - [sym_assignment_expression] = STATE(5537), - [sym_pointer_expression] = STATE(3745), - [sym_unary_expression] = STATE(5537), - [sym_binary_expression] = STATE(5540), - [sym_update_expression] = STATE(5537), - [sym_cast_expression] = STATE(5537), - [sym_sizeof_expression] = STATE(5537), - [sym_alignof_expression] = STATE(5537), - [sym_offsetof_expression] = STATE(5537), - [sym_generic_expression] = STATE(5537), - [sym_subscript_expression] = STATE(3745), - [sym_call_expression] = STATE(3745), - [sym_gnu_asm_expression] = STATE(5537), - [sym_field_expression] = STATE(3745), - [sym_compound_literal_expression] = STATE(5537), - [sym_parenthesized_expression] = STATE(3745), - [sym_char_literal] = STATE(5453), - [sym_concatenated_string] = STATE(5453), - [sym_string_literal] = STATE(3936), - [sym_null] = STATE(5537), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9333), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5537), - [sym_raw_string_literal] = STATE(3936), - [sym_co_await_expression] = STATE(5537), - [sym_new_expression] = STATE(5537), - [sym_delete_expression] = STATE(5537), - [sym_requires_clause] = STATE(5537), - [sym_requires_expression] = STATE(5537), - [sym_lambda_expression] = STATE(5537), - [sym_lambda_capture_specifier] = STATE(7261), - [sym_fold_expression] = STATE(5537), - [sym_parameter_pack_expansion] = STATE(5537), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3745), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3745), - [sym_semgrep_ellipsis] = STATE(5540), - [sym_deep_ellipsis] = STATE(5540), - [sym_identifier] = ACTIONS(5032), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5034), - [anon_sym_LPAREN2] = ACTIONS(5112), - [anon_sym_BANG] = ACTIONS(3820), - [anon_sym_TILDE] = ACTIONS(3820), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(3822), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3826), - [anon_sym_not] = ACTIONS(3818), - [anon_sym_compl] = ACTIONS(3818), - [anon_sym_DASH_DASH] = ACTIONS(5036), - [anon_sym_PLUS_PLUS] = ACTIONS(5036), - [anon_sym_sizeof] = ACTIONS(3828), - [anon_sym___alignof__] = ACTIONS(3830), - [anon_sym___alignof] = ACTIONS(3830), - [anon_sym__alignof] = ACTIONS(3830), - [anon_sym_alignof] = ACTIONS(3830), - [anon_sym__Alignof] = ACTIONS(3830), - [anon_sym_offsetof] = ACTIONS(3832), - [anon_sym__Generic] = ACTIONS(3834), - [anon_sym_asm] = ACTIONS(3836), - [anon_sym___asm__] = ACTIONS(3836), - [sym_number_literal] = ACTIONS(3838), - [anon_sym_L_SQUOTE] = ACTIONS(3840), - [anon_sym_u_SQUOTE] = ACTIONS(3840), - [anon_sym_U_SQUOTE] = ACTIONS(3840), - [anon_sym_u8_SQUOTE] = ACTIONS(3840), - [anon_sym_SQUOTE] = ACTIONS(3840), - [anon_sym_L_DQUOTE] = ACTIONS(3842), - [anon_sym_u_DQUOTE] = ACTIONS(3842), - [anon_sym_U_DQUOTE] = ACTIONS(3842), - [anon_sym_u8_DQUOTE] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym_true] = ACTIONS(3844), - [sym_false] = ACTIONS(3844), - [anon_sym_NULL] = ACTIONS(3846), - [anon_sym_nullptr] = ACTIONS(3846), + [1618] = { + [sym_expression] = STATE(3153), + [sym_expression_not_binary] = STATE(3486), + [sym_conditional_expression] = STATE(3447), + [sym_assignment_expression] = STATE(3447), + [sym_pointer_expression] = STATE(3487), + [sym_unary_expression] = STATE(3447), + [sym_binary_expression] = STATE(3486), + [sym_update_expression] = STATE(3447), + [sym_cast_expression] = STATE(3447), + [sym_sizeof_expression] = STATE(3447), + [sym_alignof_expression] = STATE(3447), + [sym_offsetof_expression] = STATE(3447), + [sym_generic_expression] = STATE(3447), + [sym_subscript_expression] = STATE(3487), + [sym_call_expression] = STATE(3487), + [sym_gnu_asm_expression] = STATE(3447), + [sym_field_expression] = STATE(3487), + [sym_compound_literal_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3487), + [sym_char_literal] = STATE(3228), + [sym_concatenated_string] = STATE(3228), + [sym_string_literal] = STATE(2167), + [sym_null] = STATE(3447), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8847), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3447), + [sym_raw_string_literal] = STATE(2167), + [sym_co_await_expression] = STATE(3447), + [sym_new_expression] = STATE(3447), + [sym_delete_expression] = STATE(3447), + [sym_requires_clause] = STATE(3447), + [sym_requires_expression] = STATE(3447), + [sym_lambda_expression] = STATE(3447), + [sym_lambda_capture_specifier] = STATE(6853), + [sym_fold_expression] = STATE(3447), + [sym_parameter_pack_expansion] = STATE(3447), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3487), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3487), + [sym_semgrep_ellipsis] = STATE(3486), + [sym_deep_ellipsis] = STATE(3486), + [sym_identifier] = ACTIONS(4890), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4892), + [anon_sym_LPAREN2] = ACTIONS(5050), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_TILDE] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2365), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2373), + [anon_sym_not] = ACTIONS(2365), + [anon_sym_compl] = ACTIONS(2365), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_sizeof] = ACTIONS(2375), + [anon_sym___alignof__] = ACTIONS(2377), + [anon_sym___alignof] = ACTIONS(2377), + [anon_sym__alignof] = ACTIONS(2377), + [anon_sym_alignof] = ACTIONS(2377), + [anon_sym__Alignof] = ACTIONS(2377), + [anon_sym_offsetof] = ACTIONS(2379), + [anon_sym__Generic] = ACTIONS(2381), + [anon_sym_asm] = ACTIONS(2383), + [anon_sym___asm__] = ACTIONS(2383), + [sym_number_literal] = ACTIONS(2385), + [anon_sym_L_SQUOTE] = ACTIONS(2387), + [anon_sym_u_SQUOTE] = ACTIONS(2387), + [anon_sym_U_SQUOTE] = ACTIONS(2387), + [anon_sym_u8_SQUOTE] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2387), + [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(2391), + [sym_false] = ACTIONS(2391), + [anon_sym_NULL] = ACTIONS(2393), + [anon_sym_nullptr] = ACTIONS(2393), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(3854), - [anon_sym_requires] = ACTIONS(3856), - [sym_this] = ACTIONS(3844), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3858), - [sym_semgrep_named_ellipsis] = ACTIONS(3860), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2399), + [anon_sym_new] = ACTIONS(2401), + [anon_sym_requires] = ACTIONS(2403), + [sym_this] = ACTIONS(2391), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2405), + [sym_semgrep_named_ellipsis] = ACTIONS(2407), }, - [1586] = { - [sym_expression] = STATE(5434), - [sym_expression_not_binary] = STATE(5540), - [sym_conditional_expression] = STATE(5537), - [sym_assignment_expression] = STATE(5537), - [sym_pointer_expression] = STATE(3745), - [sym_unary_expression] = STATE(5537), - [sym_binary_expression] = STATE(5540), - [sym_update_expression] = STATE(5537), - [sym_cast_expression] = STATE(5537), - [sym_sizeof_expression] = STATE(5537), - [sym_alignof_expression] = STATE(5537), - [sym_offsetof_expression] = STATE(5537), - [sym_generic_expression] = STATE(5537), - [sym_subscript_expression] = STATE(3745), - [sym_call_expression] = STATE(3745), - [sym_gnu_asm_expression] = STATE(5537), - [sym_field_expression] = STATE(3745), - [sym_compound_literal_expression] = STATE(5537), - [sym_parenthesized_expression] = STATE(3745), - [sym_char_literal] = STATE(5453), - [sym_concatenated_string] = STATE(5453), - [sym_string_literal] = STATE(3936), - [sym_null] = STATE(5537), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9333), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5537), - [sym_raw_string_literal] = STATE(3936), - [sym_co_await_expression] = STATE(5537), - [sym_new_expression] = STATE(5537), - [sym_delete_expression] = STATE(5537), - [sym_requires_clause] = STATE(5537), - [sym_requires_expression] = STATE(5537), - [sym_lambda_expression] = STATE(5537), - [sym_lambda_capture_specifier] = STATE(7261), - [sym_fold_expression] = STATE(5537), - [sym_parameter_pack_expansion] = STATE(5537), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3745), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3745), - [sym_semgrep_ellipsis] = STATE(5540), - [sym_deep_ellipsis] = STATE(5540), - [sym_identifier] = ACTIONS(5032), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5034), - [anon_sym_LPAREN2] = ACTIONS(5112), - [anon_sym_BANG] = ACTIONS(3820), - [anon_sym_TILDE] = ACTIONS(3820), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(3822), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3826), - [anon_sym_not] = ACTIONS(3818), - [anon_sym_compl] = ACTIONS(3818), - [anon_sym_DASH_DASH] = ACTIONS(5036), - [anon_sym_PLUS_PLUS] = ACTIONS(5036), - [anon_sym_sizeof] = ACTIONS(3828), - [anon_sym___alignof__] = ACTIONS(3830), - [anon_sym___alignof] = ACTIONS(3830), - [anon_sym__alignof] = ACTIONS(3830), - [anon_sym_alignof] = ACTIONS(3830), - [anon_sym__Alignof] = ACTIONS(3830), - [anon_sym_offsetof] = ACTIONS(3832), - [anon_sym__Generic] = ACTIONS(3834), - [anon_sym_asm] = ACTIONS(3836), - [anon_sym___asm__] = ACTIONS(3836), - [sym_number_literal] = ACTIONS(3838), - [anon_sym_L_SQUOTE] = ACTIONS(3840), - [anon_sym_u_SQUOTE] = ACTIONS(3840), - [anon_sym_U_SQUOTE] = ACTIONS(3840), - [anon_sym_u8_SQUOTE] = ACTIONS(3840), - [anon_sym_SQUOTE] = ACTIONS(3840), - [anon_sym_L_DQUOTE] = ACTIONS(3842), - [anon_sym_u_DQUOTE] = ACTIONS(3842), - [anon_sym_U_DQUOTE] = ACTIONS(3842), - [anon_sym_u8_DQUOTE] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym_true] = ACTIONS(3844), - [sym_false] = ACTIONS(3844), - [anon_sym_NULL] = ACTIONS(3846), - [anon_sym_nullptr] = ACTIONS(3846), + [1619] = { + [sym_expression] = STATE(3190), + [sym_expression_not_binary] = STATE(3486), + [sym_conditional_expression] = STATE(3447), + [sym_assignment_expression] = STATE(3447), + [sym_pointer_expression] = STATE(3487), + [sym_unary_expression] = STATE(3447), + [sym_binary_expression] = STATE(3486), + [sym_update_expression] = STATE(3447), + [sym_cast_expression] = STATE(3447), + [sym_sizeof_expression] = STATE(3447), + [sym_alignof_expression] = STATE(3447), + [sym_offsetof_expression] = STATE(3447), + [sym_generic_expression] = STATE(3447), + [sym_subscript_expression] = STATE(3487), + [sym_call_expression] = STATE(3487), + [sym_gnu_asm_expression] = STATE(3447), + [sym_field_expression] = STATE(3487), + [sym_compound_literal_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3487), + [sym_char_literal] = STATE(3228), + [sym_concatenated_string] = STATE(3228), + [sym_string_literal] = STATE(2167), + [sym_null] = STATE(3447), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8847), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3447), + [sym_raw_string_literal] = STATE(2167), + [sym_co_await_expression] = STATE(3447), + [sym_new_expression] = STATE(3447), + [sym_delete_expression] = STATE(3447), + [sym_requires_clause] = STATE(3447), + [sym_requires_expression] = STATE(3447), + [sym_lambda_expression] = STATE(3447), + [sym_lambda_capture_specifier] = STATE(6853), + [sym_fold_expression] = STATE(3447), + [sym_parameter_pack_expansion] = STATE(3447), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3487), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3487), + [sym_semgrep_ellipsis] = STATE(3486), + [sym_deep_ellipsis] = STATE(3486), + [sym_identifier] = ACTIONS(4890), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4892), + [anon_sym_LPAREN2] = ACTIONS(5050), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_TILDE] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2365), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2373), + [anon_sym_not] = ACTIONS(2365), + [anon_sym_compl] = ACTIONS(2365), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_sizeof] = ACTIONS(2375), + [anon_sym___alignof__] = ACTIONS(2377), + [anon_sym___alignof] = ACTIONS(2377), + [anon_sym__alignof] = ACTIONS(2377), + [anon_sym_alignof] = ACTIONS(2377), + [anon_sym__Alignof] = ACTIONS(2377), + [anon_sym_offsetof] = ACTIONS(2379), + [anon_sym__Generic] = ACTIONS(2381), + [anon_sym_asm] = ACTIONS(2383), + [anon_sym___asm__] = ACTIONS(2383), + [sym_number_literal] = ACTIONS(2385), + [anon_sym_L_SQUOTE] = ACTIONS(2387), + [anon_sym_u_SQUOTE] = ACTIONS(2387), + [anon_sym_U_SQUOTE] = ACTIONS(2387), + [anon_sym_u8_SQUOTE] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2387), + [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(2391), + [sym_false] = ACTIONS(2391), + [anon_sym_NULL] = ACTIONS(2393), + [anon_sym_nullptr] = ACTIONS(2393), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(3854), - [anon_sym_requires] = ACTIONS(3856), - [sym_this] = ACTIONS(3844), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3858), - [sym_semgrep_named_ellipsis] = ACTIONS(3860), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2399), + [anon_sym_new] = ACTIONS(2401), + [anon_sym_requires] = ACTIONS(2403), + [sym_this] = ACTIONS(2391), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2405), + [sym_semgrep_named_ellipsis] = ACTIONS(2407), }, - [1587] = { - [sym_expression] = STATE(5358), - [sym_expression_not_binary] = STATE(5540), - [sym_conditional_expression] = STATE(5537), - [sym_assignment_expression] = STATE(5537), - [sym_pointer_expression] = STATE(3745), - [sym_unary_expression] = STATE(5537), - [sym_binary_expression] = STATE(5540), - [sym_update_expression] = STATE(5537), - [sym_cast_expression] = STATE(5537), - [sym_sizeof_expression] = STATE(5537), - [sym_alignof_expression] = STATE(5537), - [sym_offsetof_expression] = STATE(5537), - [sym_generic_expression] = STATE(5537), - [sym_subscript_expression] = STATE(3745), - [sym_call_expression] = STATE(3745), - [sym_gnu_asm_expression] = STATE(5537), - [sym_field_expression] = STATE(3745), - [sym_compound_literal_expression] = STATE(5537), - [sym_parenthesized_expression] = STATE(3745), - [sym_char_literal] = STATE(5453), - [sym_concatenated_string] = STATE(5453), - [sym_string_literal] = STATE(3936), - [sym_null] = STATE(5537), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9333), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5537), - [sym_raw_string_literal] = STATE(3936), - [sym_co_await_expression] = STATE(5537), - [sym_new_expression] = STATE(5537), - [sym_delete_expression] = STATE(5537), - [sym_requires_clause] = STATE(5537), - [sym_requires_expression] = STATE(5537), - [sym_lambda_expression] = STATE(5537), - [sym_lambda_capture_specifier] = STATE(7261), - [sym_fold_expression] = STATE(5537), - [sym_parameter_pack_expansion] = STATE(5537), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3745), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3745), - [sym_semgrep_ellipsis] = STATE(5540), - [sym_deep_ellipsis] = STATE(5540), - [sym_identifier] = ACTIONS(5032), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5034), - [anon_sym_LPAREN2] = ACTIONS(5112), - [anon_sym_BANG] = ACTIONS(3820), - [anon_sym_TILDE] = ACTIONS(3820), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(3822), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3826), - [anon_sym_not] = ACTIONS(3818), - [anon_sym_compl] = ACTIONS(3818), - [anon_sym_DASH_DASH] = ACTIONS(5036), - [anon_sym_PLUS_PLUS] = ACTIONS(5036), - [anon_sym_sizeof] = ACTIONS(3828), - [anon_sym___alignof__] = ACTIONS(3830), - [anon_sym___alignof] = ACTIONS(3830), - [anon_sym__alignof] = ACTIONS(3830), - [anon_sym_alignof] = ACTIONS(3830), - [anon_sym__Alignof] = ACTIONS(3830), - [anon_sym_offsetof] = ACTIONS(3832), - [anon_sym__Generic] = ACTIONS(3834), - [anon_sym_asm] = ACTIONS(3836), - [anon_sym___asm__] = ACTIONS(3836), - [sym_number_literal] = ACTIONS(3838), - [anon_sym_L_SQUOTE] = ACTIONS(3840), - [anon_sym_u_SQUOTE] = ACTIONS(3840), - [anon_sym_U_SQUOTE] = ACTIONS(3840), - [anon_sym_u8_SQUOTE] = ACTIONS(3840), - [anon_sym_SQUOTE] = ACTIONS(3840), - [anon_sym_L_DQUOTE] = ACTIONS(3842), - [anon_sym_u_DQUOTE] = ACTIONS(3842), - [anon_sym_U_DQUOTE] = ACTIONS(3842), - [anon_sym_u8_DQUOTE] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym_true] = ACTIONS(3844), - [sym_false] = ACTIONS(3844), - [anon_sym_NULL] = ACTIONS(3846), - [anon_sym_nullptr] = ACTIONS(3846), + [1620] = { + [sym_expression] = STATE(3165), + [sym_expression_not_binary] = STATE(3486), + [sym_conditional_expression] = STATE(3447), + [sym_assignment_expression] = STATE(3447), + [sym_pointer_expression] = STATE(3487), + [sym_unary_expression] = STATE(3447), + [sym_binary_expression] = STATE(3486), + [sym_update_expression] = STATE(3447), + [sym_cast_expression] = STATE(3447), + [sym_sizeof_expression] = STATE(3447), + [sym_alignof_expression] = STATE(3447), + [sym_offsetof_expression] = STATE(3447), + [sym_generic_expression] = STATE(3447), + [sym_subscript_expression] = STATE(3487), + [sym_call_expression] = STATE(3487), + [sym_gnu_asm_expression] = STATE(3447), + [sym_field_expression] = STATE(3487), + [sym_compound_literal_expression] = STATE(3447), + [sym_parenthesized_expression] = STATE(3487), + [sym_char_literal] = STATE(3228), + [sym_concatenated_string] = STATE(3228), + [sym_string_literal] = STATE(2167), + [sym_null] = STATE(3447), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8847), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(3447), + [sym_raw_string_literal] = STATE(2167), + [sym_co_await_expression] = STATE(3447), + [sym_new_expression] = STATE(3447), + [sym_delete_expression] = STATE(3447), + [sym_requires_clause] = STATE(3447), + [sym_requires_expression] = STATE(3447), + [sym_lambda_expression] = STATE(3447), + [sym_lambda_capture_specifier] = STATE(6853), + [sym_fold_expression] = STATE(3447), + [sym_parameter_pack_expansion] = STATE(3447), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3487), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3487), + [sym_semgrep_ellipsis] = STATE(3486), + [sym_deep_ellipsis] = STATE(3486), + [sym_identifier] = ACTIONS(4890), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5342), + [anon_sym_LPAREN2] = ACTIONS(5344), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_TILDE] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2365), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2373), + [anon_sym_not] = ACTIONS(2365), + [anon_sym_compl] = ACTIONS(2365), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_sizeof] = ACTIONS(2375), + [anon_sym___alignof__] = ACTIONS(2377), + [anon_sym___alignof] = ACTIONS(2377), + [anon_sym__alignof] = ACTIONS(2377), + [anon_sym_alignof] = ACTIONS(2377), + [anon_sym__Alignof] = ACTIONS(2377), + [anon_sym_offsetof] = ACTIONS(2379), + [anon_sym__Generic] = ACTIONS(2381), + [anon_sym_asm] = ACTIONS(2383), + [anon_sym___asm__] = ACTIONS(2383), + [sym_number_literal] = ACTIONS(2385), + [anon_sym_L_SQUOTE] = ACTIONS(2387), + [anon_sym_u_SQUOTE] = ACTIONS(2387), + [anon_sym_U_SQUOTE] = ACTIONS(2387), + [anon_sym_u8_SQUOTE] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2387), + [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(2391), + [sym_false] = ACTIONS(2391), + [anon_sym_NULL] = ACTIONS(2393), + [anon_sym_nullptr] = ACTIONS(2393), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(3854), - [anon_sym_requires] = ACTIONS(3856), - [sym_this] = ACTIONS(3844), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3858), - [sym_semgrep_named_ellipsis] = ACTIONS(3860), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2399), + [anon_sym_new] = ACTIONS(2401), + [anon_sym_requires] = ACTIONS(2403), + [sym_this] = ACTIONS(2391), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2405), + [sym_semgrep_named_ellipsis] = ACTIONS(2407), }, - [1588] = { - [sym_expression] = STATE(5187), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4036), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4036), - [sym_call_expression] = STATE(4036), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4036), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4036), - [sym_char_literal] = STATE(5772), - [sym_concatenated_string] = STATE(5772), - [sym_string_literal] = STATE(4262), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(4262), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4036), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4036), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5038), - [anon_sym_BANG] = ACTIONS(4035), - [anon_sym_TILDE] = ACTIONS(4035), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(4037), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4033), - [anon_sym_compl] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(5044), - [anon_sym_PLUS_PLUS] = ACTIONS(5044), - [anon_sym_sizeof] = ACTIONS(4039), + [1621] = { + [sym_expression] = STATE(4827), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -262077,99 +254921,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(4041), - [anon_sym_L_SQUOTE] = ACTIONS(4043), - [anon_sym_u_SQUOTE] = ACTIONS(4043), - [anon_sym_U_SQUOTE] = ACTIONS(4043), - [anon_sym_u8_SQUOTE] = ACTIONS(4043), - [anon_sym_SQUOTE] = ACTIONS(4043), - [anon_sym_L_DQUOTE] = ACTIONS(4045), - [anon_sym_u_DQUOTE] = ACTIONS(4045), - [anon_sym_U_DQUOTE] = ACTIONS(4045), - [anon_sym_u8_DQUOTE] = ACTIONS(4045), - [anon_sym_DQUOTE] = ACTIONS(4045), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4047), - [anon_sym_R_DQUOTE] = ACTIONS(4049), - [anon_sym_LR_DQUOTE] = ACTIONS(4049), - [anon_sym_uR_DQUOTE] = ACTIONS(4049), - [anon_sym_UR_DQUOTE] = ACTIONS(4049), - [anon_sym_u8R_DQUOTE] = ACTIONS(4049), - [anon_sym_co_await] = ACTIONS(4051), - [anon_sym_new] = ACTIONS(4053), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1589] = { - [sym_expression] = STATE(5098), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4036), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4036), - [sym_call_expression] = STATE(4036), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4036), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4036), - [sym_char_literal] = STATE(5772), - [sym_concatenated_string] = STATE(5772), - [sym_string_literal] = STATE(4262), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(4262), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4036), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4036), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5038), - [anon_sym_BANG] = ACTIONS(4035), - [anon_sym_TILDE] = ACTIONS(4035), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(4037), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4033), - [anon_sym_compl] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(5044), - [anon_sym_PLUS_PLUS] = ACTIONS(5044), - [anon_sym_sizeof] = ACTIONS(4039), + [1622] = { + [sym_expression] = STATE(3108), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1623] = { + [sym_expression] = STATE(5373), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -262179,99 +255125,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(4041), - [anon_sym_L_SQUOTE] = ACTIONS(4043), - [anon_sym_u_SQUOTE] = ACTIONS(4043), - [anon_sym_U_SQUOTE] = ACTIONS(4043), - [anon_sym_u8_SQUOTE] = ACTIONS(4043), - [anon_sym_SQUOTE] = ACTIONS(4043), - [anon_sym_L_DQUOTE] = ACTIONS(4045), - [anon_sym_u_DQUOTE] = ACTIONS(4045), - [anon_sym_U_DQUOTE] = ACTIONS(4045), - [anon_sym_u8_DQUOTE] = ACTIONS(4045), - [anon_sym_DQUOTE] = ACTIONS(4045), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4047), - [anon_sym_R_DQUOTE] = ACTIONS(4049), - [anon_sym_LR_DQUOTE] = ACTIONS(4049), - [anon_sym_uR_DQUOTE] = ACTIONS(4049), - [anon_sym_UR_DQUOTE] = ACTIONS(4049), - [anon_sym_u8R_DQUOTE] = ACTIONS(4049), - [anon_sym_co_await] = ACTIONS(4051), - [anon_sym_new] = ACTIONS(4053), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1590] = { - [sym_expression] = STATE(5151), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4036), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4036), - [sym_call_expression] = STATE(4036), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4036), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4036), - [sym_char_literal] = STATE(5772), - [sym_concatenated_string] = STATE(5772), - [sym_string_literal] = STATE(4262), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(4262), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4036), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4036), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5378), - [anon_sym_LPAREN2] = ACTIONS(5408), - [anon_sym_BANG] = ACTIONS(4035), - [anon_sym_TILDE] = ACTIONS(4035), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(4037), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4033), - [anon_sym_compl] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(5044), - [anon_sym_PLUS_PLUS] = ACTIONS(5044), - [anon_sym_sizeof] = ACTIONS(4039), + [1624] = { + [sym_expression] = STATE(5376), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -262281,201 +255227,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(4041), - [anon_sym_L_SQUOTE] = ACTIONS(4043), - [anon_sym_u_SQUOTE] = ACTIONS(4043), - [anon_sym_U_SQUOTE] = ACTIONS(4043), - [anon_sym_u8_SQUOTE] = ACTIONS(4043), - [anon_sym_SQUOTE] = ACTIONS(4043), - [anon_sym_L_DQUOTE] = ACTIONS(4045), - [anon_sym_u_DQUOTE] = ACTIONS(4045), - [anon_sym_U_DQUOTE] = ACTIONS(4045), - [anon_sym_u8_DQUOTE] = ACTIONS(4045), - [anon_sym_DQUOTE] = ACTIONS(4045), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4047), - [anon_sym_R_DQUOTE] = ACTIONS(4049), - [anon_sym_LR_DQUOTE] = ACTIONS(4049), - [anon_sym_uR_DQUOTE] = ACTIONS(4049), - [anon_sym_UR_DQUOTE] = ACTIONS(4049), - [anon_sym_u8R_DQUOTE] = ACTIONS(4049), - [anon_sym_co_await] = ACTIONS(4051), - [anon_sym_new] = ACTIONS(4053), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1591] = { - [sym_expression] = STATE(6012), - [sym_expression_not_binary] = STATE(6169), - [sym_conditional_expression] = STATE(6267), - [sym_assignment_expression] = STATE(6267), - [sym_pointer_expression] = STATE(4422), - [sym_unary_expression] = STATE(6267), - [sym_binary_expression] = STATE(6169), - [sym_update_expression] = STATE(6267), - [sym_cast_expression] = STATE(6267), - [sym_sizeof_expression] = STATE(6267), - [sym_alignof_expression] = STATE(6267), - [sym_offsetof_expression] = STATE(6267), - [sym_generic_expression] = STATE(6267), - [sym_subscript_expression] = STATE(4422), - [sym_call_expression] = STATE(4422), - [sym_gnu_asm_expression] = STATE(6267), - [sym_field_expression] = STATE(4422), - [sym_compound_literal_expression] = STATE(6267), - [sym_parenthesized_expression] = STATE(4422), - [sym_char_literal] = STATE(6147), - [sym_concatenated_string] = STATE(6147), - [sym_string_literal] = STATE(4563), - [sym_null] = STATE(6267), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9242), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6267), - [sym_raw_string_literal] = STATE(4563), - [sym_co_await_expression] = STATE(6267), - [sym_new_expression] = STATE(6267), - [sym_delete_expression] = STATE(6267), - [sym_requires_clause] = STATE(6267), - [sym_requires_expression] = STATE(6267), - [sym_lambda_expression] = STATE(6267), - [sym_lambda_capture_specifier] = STATE(7263), - [sym_fold_expression] = STATE(6267), - [sym_parameter_pack_expansion] = STATE(6267), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4422), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4422), - [sym_semgrep_ellipsis] = STATE(6169), - [sym_deep_ellipsis] = STATE(6169), - [sym_identifier] = ACTIONS(4112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5054), - [anon_sym_LPAREN2] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_TILDE] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4122), - [anon_sym_not] = ACTIONS(4114), - [anon_sym_compl] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(5056), - [anon_sym_PLUS_PLUS] = ACTIONS(5056), - [anon_sym_sizeof] = ACTIONS(4124), - [anon_sym___alignof__] = ACTIONS(4126), - [anon_sym___alignof] = ACTIONS(4126), - [anon_sym__alignof] = ACTIONS(4126), - [anon_sym_alignof] = ACTIONS(4126), - [anon_sym__Alignof] = ACTIONS(4126), - [anon_sym_offsetof] = ACTIONS(4128), - [anon_sym__Generic] = ACTIONS(4130), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4136), - [anon_sym_u_SQUOTE] = ACTIONS(4136), - [anon_sym_U_SQUOTE] = ACTIONS(4136), - [anon_sym_u8_SQUOTE] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_L_DQUOTE] = ACTIONS(4138), - [anon_sym_u_DQUOTE] = ACTIONS(4138), - [anon_sym_U_DQUOTE] = ACTIONS(4138), - [anon_sym_u8_DQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [anon_sym_NULL] = ACTIONS(4142), - [anon_sym_nullptr] = ACTIONS(4142), + [1625] = { + [sym_expression] = STATE(5377), + [sym_expression_not_binary] = STATE(5685), + [sym_conditional_expression] = STATE(5675), + [sym_assignment_expression] = STATE(5675), + [sym_pointer_expression] = STATE(4201), + [sym_unary_expression] = STATE(5675), + [sym_binary_expression] = STATE(5685), + [sym_update_expression] = STATE(5675), + [sym_cast_expression] = STATE(5675), + [sym_sizeof_expression] = STATE(5675), + [sym_alignof_expression] = STATE(5675), + [sym_offsetof_expression] = STATE(5675), + [sym_generic_expression] = STATE(5675), + [sym_subscript_expression] = STATE(4201), + [sym_call_expression] = STATE(4201), + [sym_gnu_asm_expression] = STATE(5675), + [sym_field_expression] = STATE(4201), + [sym_compound_literal_expression] = STATE(5675), + [sym_parenthesized_expression] = STATE(4201), + [sym_char_literal] = STATE(5600), + [sym_concatenated_string] = STATE(5600), + [sym_string_literal] = STATE(4359), + [sym_null] = STATE(5675), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9034), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5675), + [sym_raw_string_literal] = STATE(4359), + [sym_co_await_expression] = STATE(5675), + [sym_new_expression] = STATE(5675), + [sym_delete_expression] = STATE(5675), + [sym_requires_clause] = STATE(5675), + [sym_requires_expression] = STATE(5675), + [sym_lambda_expression] = STATE(5675), + [sym_lambda_capture_specifier] = STATE(6898), + [sym_fold_expression] = STATE(5675), + [sym_parameter_pack_expansion] = STATE(5675), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4201), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4201), + [sym_semgrep_ellipsis] = STATE(5685), + [sym_deep_ellipsis] = STATE(5685), + [sym_identifier] = ACTIONS(4242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4954), + [anon_sym_LPAREN2] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_TILDE] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(4248), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4252), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_sizeof] = ACTIONS(4254), + [anon_sym___alignof__] = ACTIONS(4256), + [anon_sym___alignof] = ACTIONS(4256), + [anon_sym__alignof] = ACTIONS(4256), + [anon_sym_alignof] = ACTIONS(4256), + [anon_sym__Alignof] = ACTIONS(4256), + [anon_sym_offsetof] = ACTIONS(4258), + [anon_sym__Generic] = ACTIONS(4260), + [anon_sym_asm] = ACTIONS(4262), + [anon_sym___asm__] = ACTIONS(4262), + [sym_number_literal] = ACTIONS(4264), + [anon_sym_L_SQUOTE] = ACTIONS(4266), + [anon_sym_u_SQUOTE] = ACTIONS(4266), + [anon_sym_U_SQUOTE] = ACTIONS(4266), + [anon_sym_u8_SQUOTE] = ACTIONS(4266), + [anon_sym_SQUOTE] = ACTIONS(4266), + [anon_sym_L_DQUOTE] = ACTIONS(4268), + [anon_sym_u_DQUOTE] = ACTIONS(4268), + [anon_sym_U_DQUOTE] = ACTIONS(4268), + [anon_sym_u8_DQUOTE] = ACTIONS(4268), + [anon_sym_DQUOTE] = ACTIONS(4268), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4272), + [anon_sym_nullptr] = ACTIONS(4272), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4150), - [anon_sym_requires] = ACTIONS(4152), - [sym_this] = ACTIONS(4140), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4154), - [sym_semgrep_named_ellipsis] = ACTIONS(4156), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4274), + [anon_sym_R_DQUOTE] = ACTIONS(4276), + [anon_sym_LR_DQUOTE] = ACTIONS(4276), + [anon_sym_uR_DQUOTE] = ACTIONS(4276), + [anon_sym_UR_DQUOTE] = ACTIONS(4276), + [anon_sym_u8R_DQUOTE] = ACTIONS(4276), + [anon_sym_co_await] = ACTIONS(4278), + [anon_sym_new] = ACTIONS(4280), + [anon_sym_requires] = ACTIONS(4282), + [sym_this] = ACTIONS(4270), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4284), + [sym_semgrep_named_ellipsis] = ACTIONS(4286), }, - [1592] = { - [sym_expression] = STATE(6037), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), + [1626] = { + [sym_expression] = STATE(5242), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(5346), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -262502,77 +255448,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1593] = { - [sym_expression] = STATE(6030), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1627] = { + [sym_expression] = STATE(5381), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(5348), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -262604,7 +255550,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -262618,68 +255564,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1594] = { - [sym_expression] = STATE(5270), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(5410), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1628] = { + [sym_expression] = STATE(5248), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -262706,1408 +255652,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1595] = { - [sym_expression] = STATE(3028), - [sym_expression_not_binary] = STATE(3362), - [sym_conditional_expression] = STATE(3356), - [sym_assignment_expression] = STATE(3356), - [sym_pointer_expression] = STATE(3367), - [sym_unary_expression] = STATE(3356), - [sym_binary_expression] = STATE(3362), - [sym_update_expression] = STATE(3356), - [sym_cast_expression] = STATE(3356), - [sym_sizeof_expression] = STATE(3356), - [sym_alignof_expression] = STATE(3356), - [sym_offsetof_expression] = STATE(3356), - [sym_generic_expression] = STATE(3356), - [sym_subscript_expression] = STATE(3367), - [sym_call_expression] = STATE(3367), - [sym_gnu_asm_expression] = STATE(3356), - [sym_field_expression] = STATE(3367), - [sym_compound_literal_expression] = STATE(3356), - [sym_parenthesized_expression] = STATE(3367), - [sym_char_literal] = STATE(3167), - [sym_concatenated_string] = STATE(3167), - [sym_string_literal] = STATE(1962), - [sym_null] = STATE(3356), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9141), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3356), - [sym_raw_string_literal] = STATE(1962), - [sym_co_await_expression] = STATE(3356), - [sym_new_expression] = STATE(3356), - [sym_delete_expression] = STATE(3356), - [sym_requires_clause] = STATE(3356), - [sym_requires_expression] = STATE(3356), - [sym_lambda_expression] = STATE(3356), - [sym_lambda_capture_specifier] = STATE(7329), - [sym_fold_expression] = STATE(3356), - [sym_parameter_pack_expansion] = STATE(3356), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3367), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3367), - [sym_semgrep_ellipsis] = STATE(3362), - [sym_deep_ellipsis] = STATE(3362), - [sym_identifier] = ACTIONS(5048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5050), - [anon_sym_LPAREN2] = ACTIONS(5114), - [anon_sym_BANG] = ACTIONS(2285), - [anon_sym_TILDE] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2283), - [anon_sym_PLUS] = ACTIONS(2283), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2291), - [anon_sym_not] = ACTIONS(2283), - [anon_sym_compl] = ACTIONS(2283), - [anon_sym_DASH_DASH] = ACTIONS(5052), - [anon_sym_PLUS_PLUS] = ACTIONS(5052), - [anon_sym_sizeof] = ACTIONS(2293), - [anon_sym___alignof__] = ACTIONS(2295), - [anon_sym___alignof] = ACTIONS(2295), - [anon_sym__alignof] = ACTIONS(2295), - [anon_sym_alignof] = ACTIONS(2295), - [anon_sym__Alignof] = ACTIONS(2295), - [anon_sym_offsetof] = ACTIONS(2297), - [anon_sym__Generic] = ACTIONS(2299), - [anon_sym_asm] = ACTIONS(2301), - [anon_sym___asm__] = ACTIONS(2301), - [sym_number_literal] = ACTIONS(2303), - [anon_sym_L_SQUOTE] = ACTIONS(2305), - [anon_sym_u_SQUOTE] = ACTIONS(2305), - [anon_sym_U_SQUOTE] = ACTIONS(2305), - [anon_sym_u8_SQUOTE] = ACTIONS(2305), - [anon_sym_SQUOTE] = ACTIONS(2305), - [anon_sym_L_DQUOTE] = ACTIONS(2307), - [anon_sym_u_DQUOTE] = ACTIONS(2307), - [anon_sym_U_DQUOTE] = ACTIONS(2307), - [anon_sym_u8_DQUOTE] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [sym_true] = ACTIONS(2309), - [sym_false] = ACTIONS(2309), - [anon_sym_NULL] = ACTIONS(2311), - [anon_sym_nullptr] = ACTIONS(2311), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2315), - [anon_sym_R_DQUOTE] = ACTIONS(2317), - [anon_sym_LR_DQUOTE] = ACTIONS(2317), - [anon_sym_uR_DQUOTE] = ACTIONS(2317), - [anon_sym_UR_DQUOTE] = ACTIONS(2317), - [anon_sym_u8R_DQUOTE] = ACTIONS(2317), - [anon_sym_co_await] = ACTIONS(2319), - [anon_sym_new] = ACTIONS(2321), - [anon_sym_requires] = ACTIONS(2323), - [sym_this] = ACTIONS(2309), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), - [sym_semgrep_named_ellipsis] = ACTIONS(2327), - }, - [1596] = { - [sym_expression] = STATE(3000), - [sym_expression_not_binary] = STATE(3362), - [sym_conditional_expression] = STATE(3356), - [sym_assignment_expression] = STATE(3356), - [sym_pointer_expression] = STATE(3367), - [sym_unary_expression] = STATE(3356), - [sym_binary_expression] = STATE(3362), - [sym_update_expression] = STATE(3356), - [sym_cast_expression] = STATE(3356), - [sym_sizeof_expression] = STATE(3356), - [sym_alignof_expression] = STATE(3356), - [sym_offsetof_expression] = STATE(3356), - [sym_generic_expression] = STATE(3356), - [sym_subscript_expression] = STATE(3367), - [sym_call_expression] = STATE(3367), - [sym_gnu_asm_expression] = STATE(3356), - [sym_field_expression] = STATE(3367), - [sym_compound_literal_expression] = STATE(3356), - [sym_parenthesized_expression] = STATE(3367), - [sym_char_literal] = STATE(3167), - [sym_concatenated_string] = STATE(3167), - [sym_string_literal] = STATE(1962), - [sym_null] = STATE(3356), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9141), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3356), - [sym_raw_string_literal] = STATE(1962), - [sym_co_await_expression] = STATE(3356), - [sym_new_expression] = STATE(3356), - [sym_delete_expression] = STATE(3356), - [sym_requires_clause] = STATE(3356), - [sym_requires_expression] = STATE(3356), - [sym_lambda_expression] = STATE(3356), - [sym_lambda_capture_specifier] = STATE(7329), - [sym_fold_expression] = STATE(3356), - [sym_parameter_pack_expansion] = STATE(3356), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3367), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3367), - [sym_semgrep_ellipsis] = STATE(3362), - [sym_deep_ellipsis] = STATE(3362), - [sym_identifier] = ACTIONS(5048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5050), - [anon_sym_LPAREN2] = ACTIONS(5114), - [anon_sym_BANG] = ACTIONS(2285), - [anon_sym_TILDE] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2283), - [anon_sym_PLUS] = ACTIONS(2283), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2291), - [anon_sym_not] = ACTIONS(2283), - [anon_sym_compl] = ACTIONS(2283), - [anon_sym_DASH_DASH] = ACTIONS(5052), - [anon_sym_PLUS_PLUS] = ACTIONS(5052), - [anon_sym_sizeof] = ACTIONS(2293), - [anon_sym___alignof__] = ACTIONS(2295), - [anon_sym___alignof] = ACTIONS(2295), - [anon_sym__alignof] = ACTIONS(2295), - [anon_sym_alignof] = ACTIONS(2295), - [anon_sym__Alignof] = ACTIONS(2295), - [anon_sym_offsetof] = ACTIONS(2297), - [anon_sym__Generic] = ACTIONS(2299), - [anon_sym_asm] = ACTIONS(2301), - [anon_sym___asm__] = ACTIONS(2301), - [sym_number_literal] = ACTIONS(2303), - [anon_sym_L_SQUOTE] = ACTIONS(2305), - [anon_sym_u_SQUOTE] = ACTIONS(2305), - [anon_sym_U_SQUOTE] = ACTIONS(2305), - [anon_sym_u8_SQUOTE] = ACTIONS(2305), - [anon_sym_SQUOTE] = ACTIONS(2305), - [anon_sym_L_DQUOTE] = ACTIONS(2307), - [anon_sym_u_DQUOTE] = ACTIONS(2307), - [anon_sym_U_DQUOTE] = ACTIONS(2307), - [anon_sym_u8_DQUOTE] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [sym_true] = ACTIONS(2309), - [sym_false] = ACTIONS(2309), - [anon_sym_NULL] = ACTIONS(2311), - [anon_sym_nullptr] = ACTIONS(2311), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2315), - [anon_sym_R_DQUOTE] = ACTIONS(2317), - [anon_sym_LR_DQUOTE] = ACTIONS(2317), - [anon_sym_uR_DQUOTE] = ACTIONS(2317), - [anon_sym_UR_DQUOTE] = ACTIONS(2317), - [anon_sym_u8R_DQUOTE] = ACTIONS(2317), - [anon_sym_co_await] = ACTIONS(2319), - [anon_sym_new] = ACTIONS(2321), - [anon_sym_requires] = ACTIONS(2323), - [sym_this] = ACTIONS(2309), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), - [sym_semgrep_named_ellipsis] = ACTIONS(2327), - }, - [1597] = { - [sym_expression] = STATE(2989), - [sym_expression_not_binary] = STATE(3362), - [sym_conditional_expression] = STATE(3356), - [sym_assignment_expression] = STATE(3356), - [sym_pointer_expression] = STATE(3367), - [sym_unary_expression] = STATE(3356), - [sym_binary_expression] = STATE(3362), - [sym_update_expression] = STATE(3356), - [sym_cast_expression] = STATE(3356), - [sym_sizeof_expression] = STATE(3356), - [sym_alignof_expression] = STATE(3356), - [sym_offsetof_expression] = STATE(3356), - [sym_generic_expression] = STATE(3356), - [sym_subscript_expression] = STATE(3367), - [sym_call_expression] = STATE(3367), - [sym_gnu_asm_expression] = STATE(3356), - [sym_field_expression] = STATE(3367), - [sym_compound_literal_expression] = STATE(3356), - [sym_parenthesized_expression] = STATE(3367), - [sym_char_literal] = STATE(3167), - [sym_concatenated_string] = STATE(3167), - [sym_string_literal] = STATE(1962), - [sym_null] = STATE(3356), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9141), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3356), - [sym_raw_string_literal] = STATE(1962), - [sym_co_await_expression] = STATE(3356), - [sym_new_expression] = STATE(3356), - [sym_delete_expression] = STATE(3356), - [sym_requires_clause] = STATE(3356), - [sym_requires_expression] = STATE(3356), - [sym_lambda_expression] = STATE(3356), - [sym_lambda_capture_specifier] = STATE(7329), - [sym_fold_expression] = STATE(3356), - [sym_parameter_pack_expansion] = STATE(3356), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3367), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3367), - [sym_semgrep_ellipsis] = STATE(3362), - [sym_deep_ellipsis] = STATE(3362), - [sym_identifier] = ACTIONS(5048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5050), - [anon_sym_LPAREN2] = ACTIONS(5114), - [anon_sym_BANG] = ACTIONS(2285), - [anon_sym_TILDE] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2283), - [anon_sym_PLUS] = ACTIONS(2283), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2291), - [anon_sym_not] = ACTIONS(2283), - [anon_sym_compl] = ACTIONS(2283), - [anon_sym_DASH_DASH] = ACTIONS(5052), - [anon_sym_PLUS_PLUS] = ACTIONS(5052), - [anon_sym_sizeof] = ACTIONS(2293), - [anon_sym___alignof__] = ACTIONS(2295), - [anon_sym___alignof] = ACTIONS(2295), - [anon_sym__alignof] = ACTIONS(2295), - [anon_sym_alignof] = ACTIONS(2295), - [anon_sym__Alignof] = ACTIONS(2295), - [anon_sym_offsetof] = ACTIONS(2297), - [anon_sym__Generic] = ACTIONS(2299), - [anon_sym_asm] = ACTIONS(2301), - [anon_sym___asm__] = ACTIONS(2301), - [sym_number_literal] = ACTIONS(2303), - [anon_sym_L_SQUOTE] = ACTIONS(2305), - [anon_sym_u_SQUOTE] = ACTIONS(2305), - [anon_sym_U_SQUOTE] = ACTIONS(2305), - [anon_sym_u8_SQUOTE] = ACTIONS(2305), - [anon_sym_SQUOTE] = ACTIONS(2305), - [anon_sym_L_DQUOTE] = ACTIONS(2307), - [anon_sym_u_DQUOTE] = ACTIONS(2307), - [anon_sym_U_DQUOTE] = ACTIONS(2307), - [anon_sym_u8_DQUOTE] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [sym_true] = ACTIONS(2309), - [sym_false] = ACTIONS(2309), - [anon_sym_NULL] = ACTIONS(2311), - [anon_sym_nullptr] = ACTIONS(2311), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2315), - [anon_sym_R_DQUOTE] = ACTIONS(2317), - [anon_sym_LR_DQUOTE] = ACTIONS(2317), - [anon_sym_uR_DQUOTE] = ACTIONS(2317), - [anon_sym_UR_DQUOTE] = ACTIONS(2317), - [anon_sym_u8R_DQUOTE] = ACTIONS(2317), - [anon_sym_co_await] = ACTIONS(2319), - [anon_sym_new] = ACTIONS(2321), - [anon_sym_requires] = ACTIONS(2323), - [sym_this] = ACTIONS(2309), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), - [sym_semgrep_named_ellipsis] = ACTIONS(2327), - }, - [1598] = { - [sym_expression] = STATE(2990), - [sym_expression_not_binary] = STATE(3362), - [sym_conditional_expression] = STATE(3356), - [sym_assignment_expression] = STATE(3356), - [sym_pointer_expression] = STATE(3367), - [sym_unary_expression] = STATE(3356), - [sym_binary_expression] = STATE(3362), - [sym_update_expression] = STATE(3356), - [sym_cast_expression] = STATE(3356), - [sym_sizeof_expression] = STATE(3356), - [sym_alignof_expression] = STATE(3356), - [sym_offsetof_expression] = STATE(3356), - [sym_generic_expression] = STATE(3356), - [sym_subscript_expression] = STATE(3367), - [sym_call_expression] = STATE(3367), - [sym_gnu_asm_expression] = STATE(3356), - [sym_field_expression] = STATE(3367), - [sym_compound_literal_expression] = STATE(3356), - [sym_parenthesized_expression] = STATE(3367), - [sym_char_literal] = STATE(3167), - [sym_concatenated_string] = STATE(3167), - [sym_string_literal] = STATE(1962), - [sym_null] = STATE(3356), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9141), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3356), - [sym_raw_string_literal] = STATE(1962), - [sym_co_await_expression] = STATE(3356), - [sym_new_expression] = STATE(3356), - [sym_delete_expression] = STATE(3356), - [sym_requires_clause] = STATE(3356), - [sym_requires_expression] = STATE(3356), - [sym_lambda_expression] = STATE(3356), - [sym_lambda_capture_specifier] = STATE(7329), - [sym_fold_expression] = STATE(3356), - [sym_parameter_pack_expansion] = STATE(3356), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3367), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3367), - [sym_semgrep_ellipsis] = STATE(3362), - [sym_deep_ellipsis] = STATE(3362), - [sym_identifier] = ACTIONS(5048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5050), - [anon_sym_LPAREN2] = ACTIONS(5114), - [anon_sym_BANG] = ACTIONS(2285), - [anon_sym_TILDE] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2283), - [anon_sym_PLUS] = ACTIONS(2283), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2291), - [anon_sym_not] = ACTIONS(2283), - [anon_sym_compl] = ACTIONS(2283), - [anon_sym_DASH_DASH] = ACTIONS(5052), - [anon_sym_PLUS_PLUS] = ACTIONS(5052), - [anon_sym_sizeof] = ACTIONS(2293), - [anon_sym___alignof__] = ACTIONS(2295), - [anon_sym___alignof] = ACTIONS(2295), - [anon_sym__alignof] = ACTIONS(2295), - [anon_sym_alignof] = ACTIONS(2295), - [anon_sym__Alignof] = ACTIONS(2295), - [anon_sym_offsetof] = ACTIONS(2297), - [anon_sym__Generic] = ACTIONS(2299), - [anon_sym_asm] = ACTIONS(2301), - [anon_sym___asm__] = ACTIONS(2301), - [sym_number_literal] = ACTIONS(2303), - [anon_sym_L_SQUOTE] = ACTIONS(2305), - [anon_sym_u_SQUOTE] = ACTIONS(2305), - [anon_sym_U_SQUOTE] = ACTIONS(2305), - [anon_sym_u8_SQUOTE] = ACTIONS(2305), - [anon_sym_SQUOTE] = ACTIONS(2305), - [anon_sym_L_DQUOTE] = ACTIONS(2307), - [anon_sym_u_DQUOTE] = ACTIONS(2307), - [anon_sym_U_DQUOTE] = ACTIONS(2307), - [anon_sym_u8_DQUOTE] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [sym_true] = ACTIONS(2309), - [sym_false] = ACTIONS(2309), - [anon_sym_NULL] = ACTIONS(2311), - [anon_sym_nullptr] = ACTIONS(2311), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2315), - [anon_sym_R_DQUOTE] = ACTIONS(2317), - [anon_sym_LR_DQUOTE] = ACTIONS(2317), - [anon_sym_uR_DQUOTE] = ACTIONS(2317), - [anon_sym_UR_DQUOTE] = ACTIONS(2317), - [anon_sym_u8R_DQUOTE] = ACTIONS(2317), - [anon_sym_co_await] = ACTIONS(2319), - [anon_sym_new] = ACTIONS(2321), - [anon_sym_requires] = ACTIONS(2323), - [sym_this] = ACTIONS(2309), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), - [sym_semgrep_named_ellipsis] = ACTIONS(2327), - }, - [1599] = { - [sym_expression] = STATE(2991), - [sym_expression_not_binary] = STATE(3362), - [sym_conditional_expression] = STATE(3356), - [sym_assignment_expression] = STATE(3356), - [sym_pointer_expression] = STATE(3367), - [sym_unary_expression] = STATE(3356), - [sym_binary_expression] = STATE(3362), - [sym_update_expression] = STATE(3356), - [sym_cast_expression] = STATE(3356), - [sym_sizeof_expression] = STATE(3356), - [sym_alignof_expression] = STATE(3356), - [sym_offsetof_expression] = STATE(3356), - [sym_generic_expression] = STATE(3356), - [sym_subscript_expression] = STATE(3367), - [sym_call_expression] = STATE(3367), - [sym_gnu_asm_expression] = STATE(3356), - [sym_field_expression] = STATE(3367), - [sym_compound_literal_expression] = STATE(3356), - [sym_parenthesized_expression] = STATE(3367), - [sym_char_literal] = STATE(3167), - [sym_concatenated_string] = STATE(3167), - [sym_string_literal] = STATE(1962), - [sym_null] = STATE(3356), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9141), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3356), - [sym_raw_string_literal] = STATE(1962), - [sym_co_await_expression] = STATE(3356), - [sym_new_expression] = STATE(3356), - [sym_delete_expression] = STATE(3356), - [sym_requires_clause] = STATE(3356), - [sym_requires_expression] = STATE(3356), - [sym_lambda_expression] = STATE(3356), - [sym_lambda_capture_specifier] = STATE(7329), - [sym_fold_expression] = STATE(3356), - [sym_parameter_pack_expansion] = STATE(3356), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3367), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3367), - [sym_semgrep_ellipsis] = STATE(3362), - [sym_deep_ellipsis] = STATE(3362), - [sym_identifier] = ACTIONS(5048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5050), - [anon_sym_LPAREN2] = ACTIONS(5114), - [anon_sym_BANG] = ACTIONS(2285), - [anon_sym_TILDE] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2283), - [anon_sym_PLUS] = ACTIONS(2283), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2291), - [anon_sym_not] = ACTIONS(2283), - [anon_sym_compl] = ACTIONS(2283), - [anon_sym_DASH_DASH] = ACTIONS(5052), - [anon_sym_PLUS_PLUS] = ACTIONS(5052), - [anon_sym_sizeof] = ACTIONS(2293), - [anon_sym___alignof__] = ACTIONS(2295), - [anon_sym___alignof] = ACTIONS(2295), - [anon_sym__alignof] = ACTIONS(2295), - [anon_sym_alignof] = ACTIONS(2295), - [anon_sym__Alignof] = ACTIONS(2295), - [anon_sym_offsetof] = ACTIONS(2297), - [anon_sym__Generic] = ACTIONS(2299), - [anon_sym_asm] = ACTIONS(2301), - [anon_sym___asm__] = ACTIONS(2301), - [sym_number_literal] = ACTIONS(2303), - [anon_sym_L_SQUOTE] = ACTIONS(2305), - [anon_sym_u_SQUOTE] = ACTIONS(2305), - [anon_sym_U_SQUOTE] = ACTIONS(2305), - [anon_sym_u8_SQUOTE] = ACTIONS(2305), - [anon_sym_SQUOTE] = ACTIONS(2305), - [anon_sym_L_DQUOTE] = ACTIONS(2307), - [anon_sym_u_DQUOTE] = ACTIONS(2307), - [anon_sym_U_DQUOTE] = ACTIONS(2307), - [anon_sym_u8_DQUOTE] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [sym_true] = ACTIONS(2309), - [sym_false] = ACTIONS(2309), - [anon_sym_NULL] = ACTIONS(2311), - [anon_sym_nullptr] = ACTIONS(2311), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2315), - [anon_sym_R_DQUOTE] = ACTIONS(2317), - [anon_sym_LR_DQUOTE] = ACTIONS(2317), - [anon_sym_uR_DQUOTE] = ACTIONS(2317), - [anon_sym_UR_DQUOTE] = ACTIONS(2317), - [anon_sym_u8R_DQUOTE] = ACTIONS(2317), - [anon_sym_co_await] = ACTIONS(2319), - [anon_sym_new] = ACTIONS(2321), - [anon_sym_requires] = ACTIONS(2323), - [sym_this] = ACTIONS(2309), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), - [sym_semgrep_named_ellipsis] = ACTIONS(2327), - }, - [1600] = { - [sym_expression] = STATE(2992), - [sym_expression_not_binary] = STATE(3362), - [sym_conditional_expression] = STATE(3356), - [sym_assignment_expression] = STATE(3356), - [sym_pointer_expression] = STATE(3367), - [sym_unary_expression] = STATE(3356), - [sym_binary_expression] = STATE(3362), - [sym_update_expression] = STATE(3356), - [sym_cast_expression] = STATE(3356), - [sym_sizeof_expression] = STATE(3356), - [sym_alignof_expression] = STATE(3356), - [sym_offsetof_expression] = STATE(3356), - [sym_generic_expression] = STATE(3356), - [sym_subscript_expression] = STATE(3367), - [sym_call_expression] = STATE(3367), - [sym_gnu_asm_expression] = STATE(3356), - [sym_field_expression] = STATE(3367), - [sym_compound_literal_expression] = STATE(3356), - [sym_parenthesized_expression] = STATE(3367), - [sym_char_literal] = STATE(3167), - [sym_concatenated_string] = STATE(3167), - [sym_string_literal] = STATE(1962), - [sym_null] = STATE(3356), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9141), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3356), - [sym_raw_string_literal] = STATE(1962), - [sym_co_await_expression] = STATE(3356), - [sym_new_expression] = STATE(3356), - [sym_delete_expression] = STATE(3356), - [sym_requires_clause] = STATE(3356), - [sym_requires_expression] = STATE(3356), - [sym_lambda_expression] = STATE(3356), - [sym_lambda_capture_specifier] = STATE(7329), - [sym_fold_expression] = STATE(3356), - [sym_parameter_pack_expansion] = STATE(3356), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3367), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3367), - [sym_semgrep_ellipsis] = STATE(3362), - [sym_deep_ellipsis] = STATE(3362), - [sym_identifier] = ACTIONS(5048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5050), - [anon_sym_LPAREN2] = ACTIONS(5114), - [anon_sym_BANG] = ACTIONS(2285), - [anon_sym_TILDE] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2283), - [anon_sym_PLUS] = ACTIONS(2283), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2291), - [anon_sym_not] = ACTIONS(2283), - [anon_sym_compl] = ACTIONS(2283), - [anon_sym_DASH_DASH] = ACTIONS(5052), - [anon_sym_PLUS_PLUS] = ACTIONS(5052), - [anon_sym_sizeof] = ACTIONS(2293), - [anon_sym___alignof__] = ACTIONS(2295), - [anon_sym___alignof] = ACTIONS(2295), - [anon_sym__alignof] = ACTIONS(2295), - [anon_sym_alignof] = ACTIONS(2295), - [anon_sym__Alignof] = ACTIONS(2295), - [anon_sym_offsetof] = ACTIONS(2297), - [anon_sym__Generic] = ACTIONS(2299), - [anon_sym_asm] = ACTIONS(2301), - [anon_sym___asm__] = ACTIONS(2301), - [sym_number_literal] = ACTIONS(2303), - [anon_sym_L_SQUOTE] = ACTIONS(2305), - [anon_sym_u_SQUOTE] = ACTIONS(2305), - [anon_sym_U_SQUOTE] = ACTIONS(2305), - [anon_sym_u8_SQUOTE] = ACTIONS(2305), - [anon_sym_SQUOTE] = ACTIONS(2305), - [anon_sym_L_DQUOTE] = ACTIONS(2307), - [anon_sym_u_DQUOTE] = ACTIONS(2307), - [anon_sym_U_DQUOTE] = ACTIONS(2307), - [anon_sym_u8_DQUOTE] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [sym_true] = ACTIONS(2309), - [sym_false] = ACTIONS(2309), - [anon_sym_NULL] = ACTIONS(2311), - [anon_sym_nullptr] = ACTIONS(2311), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2315), - [anon_sym_R_DQUOTE] = ACTIONS(2317), - [anon_sym_LR_DQUOTE] = ACTIONS(2317), - [anon_sym_uR_DQUOTE] = ACTIONS(2317), - [anon_sym_UR_DQUOTE] = ACTIONS(2317), - [anon_sym_u8R_DQUOTE] = ACTIONS(2317), - [anon_sym_co_await] = ACTIONS(2319), - [anon_sym_new] = ACTIONS(2321), - [anon_sym_requires] = ACTIONS(2323), - [sym_this] = ACTIONS(2309), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), - [sym_semgrep_named_ellipsis] = ACTIONS(2327), - }, - [1601] = { - [sym_expression] = STATE(2993), - [sym_expression_not_binary] = STATE(3362), - [sym_conditional_expression] = STATE(3356), - [sym_assignment_expression] = STATE(3356), - [sym_pointer_expression] = STATE(3367), - [sym_unary_expression] = STATE(3356), - [sym_binary_expression] = STATE(3362), - [sym_update_expression] = STATE(3356), - [sym_cast_expression] = STATE(3356), - [sym_sizeof_expression] = STATE(3356), - [sym_alignof_expression] = STATE(3356), - [sym_offsetof_expression] = STATE(3356), - [sym_generic_expression] = STATE(3356), - [sym_subscript_expression] = STATE(3367), - [sym_call_expression] = STATE(3367), - [sym_gnu_asm_expression] = STATE(3356), - [sym_field_expression] = STATE(3367), - [sym_compound_literal_expression] = STATE(3356), - [sym_parenthesized_expression] = STATE(3367), - [sym_char_literal] = STATE(3167), - [sym_concatenated_string] = STATE(3167), - [sym_string_literal] = STATE(1962), - [sym_null] = STATE(3356), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9141), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3356), - [sym_raw_string_literal] = STATE(1962), - [sym_co_await_expression] = STATE(3356), - [sym_new_expression] = STATE(3356), - [sym_delete_expression] = STATE(3356), - [sym_requires_clause] = STATE(3356), - [sym_requires_expression] = STATE(3356), - [sym_lambda_expression] = STATE(3356), - [sym_lambda_capture_specifier] = STATE(7329), - [sym_fold_expression] = STATE(3356), - [sym_parameter_pack_expansion] = STATE(3356), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3367), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3367), - [sym_semgrep_ellipsis] = STATE(3362), - [sym_deep_ellipsis] = STATE(3362), - [sym_identifier] = ACTIONS(5048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5050), - [anon_sym_LPAREN2] = ACTIONS(5114), - [anon_sym_BANG] = ACTIONS(2285), - [anon_sym_TILDE] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2283), - [anon_sym_PLUS] = ACTIONS(2283), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2291), - [anon_sym_not] = ACTIONS(2283), - [anon_sym_compl] = ACTIONS(2283), - [anon_sym_DASH_DASH] = ACTIONS(5052), - [anon_sym_PLUS_PLUS] = ACTIONS(5052), - [anon_sym_sizeof] = ACTIONS(2293), - [anon_sym___alignof__] = ACTIONS(2295), - [anon_sym___alignof] = ACTIONS(2295), - [anon_sym__alignof] = ACTIONS(2295), - [anon_sym_alignof] = ACTIONS(2295), - [anon_sym__Alignof] = ACTIONS(2295), - [anon_sym_offsetof] = ACTIONS(2297), - [anon_sym__Generic] = ACTIONS(2299), - [anon_sym_asm] = ACTIONS(2301), - [anon_sym___asm__] = ACTIONS(2301), - [sym_number_literal] = ACTIONS(2303), - [anon_sym_L_SQUOTE] = ACTIONS(2305), - [anon_sym_u_SQUOTE] = ACTIONS(2305), - [anon_sym_U_SQUOTE] = ACTIONS(2305), - [anon_sym_u8_SQUOTE] = ACTIONS(2305), - [anon_sym_SQUOTE] = ACTIONS(2305), - [anon_sym_L_DQUOTE] = ACTIONS(2307), - [anon_sym_u_DQUOTE] = ACTIONS(2307), - [anon_sym_U_DQUOTE] = ACTIONS(2307), - [anon_sym_u8_DQUOTE] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [sym_true] = ACTIONS(2309), - [sym_false] = ACTIONS(2309), - [anon_sym_NULL] = ACTIONS(2311), - [anon_sym_nullptr] = ACTIONS(2311), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2315), - [anon_sym_R_DQUOTE] = ACTIONS(2317), - [anon_sym_LR_DQUOTE] = ACTIONS(2317), - [anon_sym_uR_DQUOTE] = ACTIONS(2317), - [anon_sym_UR_DQUOTE] = ACTIONS(2317), - [anon_sym_u8R_DQUOTE] = ACTIONS(2317), - [anon_sym_co_await] = ACTIONS(2319), - [anon_sym_new] = ACTIONS(2321), - [anon_sym_requires] = ACTIONS(2323), - [sym_this] = ACTIONS(2309), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), - [sym_semgrep_named_ellipsis] = ACTIONS(2327), - }, - [1602] = { - [sym_expression] = STATE(2994), - [sym_expression_not_binary] = STATE(3362), - [sym_conditional_expression] = STATE(3356), - [sym_assignment_expression] = STATE(3356), - [sym_pointer_expression] = STATE(3367), - [sym_unary_expression] = STATE(3356), - [sym_binary_expression] = STATE(3362), - [sym_update_expression] = STATE(3356), - [sym_cast_expression] = STATE(3356), - [sym_sizeof_expression] = STATE(3356), - [sym_alignof_expression] = STATE(3356), - [sym_offsetof_expression] = STATE(3356), - [sym_generic_expression] = STATE(3356), - [sym_subscript_expression] = STATE(3367), - [sym_call_expression] = STATE(3367), - [sym_gnu_asm_expression] = STATE(3356), - [sym_field_expression] = STATE(3367), - [sym_compound_literal_expression] = STATE(3356), - [sym_parenthesized_expression] = STATE(3367), - [sym_char_literal] = STATE(3167), - [sym_concatenated_string] = STATE(3167), - [sym_string_literal] = STATE(1962), - [sym_null] = STATE(3356), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9141), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3356), - [sym_raw_string_literal] = STATE(1962), - [sym_co_await_expression] = STATE(3356), - [sym_new_expression] = STATE(3356), - [sym_delete_expression] = STATE(3356), - [sym_requires_clause] = STATE(3356), - [sym_requires_expression] = STATE(3356), - [sym_lambda_expression] = STATE(3356), - [sym_lambda_capture_specifier] = STATE(7329), - [sym_fold_expression] = STATE(3356), - [sym_parameter_pack_expansion] = STATE(3356), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3367), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3367), - [sym_semgrep_ellipsis] = STATE(3362), - [sym_deep_ellipsis] = STATE(3362), - [sym_identifier] = ACTIONS(5048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5050), - [anon_sym_LPAREN2] = ACTIONS(5114), - [anon_sym_BANG] = ACTIONS(2285), - [anon_sym_TILDE] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2283), - [anon_sym_PLUS] = ACTIONS(2283), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2291), - [anon_sym_not] = ACTIONS(2283), - [anon_sym_compl] = ACTIONS(2283), - [anon_sym_DASH_DASH] = ACTIONS(5052), - [anon_sym_PLUS_PLUS] = ACTIONS(5052), - [anon_sym_sizeof] = ACTIONS(2293), - [anon_sym___alignof__] = ACTIONS(2295), - [anon_sym___alignof] = ACTIONS(2295), - [anon_sym__alignof] = ACTIONS(2295), - [anon_sym_alignof] = ACTIONS(2295), - [anon_sym__Alignof] = ACTIONS(2295), - [anon_sym_offsetof] = ACTIONS(2297), - [anon_sym__Generic] = ACTIONS(2299), - [anon_sym_asm] = ACTIONS(2301), - [anon_sym___asm__] = ACTIONS(2301), - [sym_number_literal] = ACTIONS(2303), - [anon_sym_L_SQUOTE] = ACTIONS(2305), - [anon_sym_u_SQUOTE] = ACTIONS(2305), - [anon_sym_U_SQUOTE] = ACTIONS(2305), - [anon_sym_u8_SQUOTE] = ACTIONS(2305), - [anon_sym_SQUOTE] = ACTIONS(2305), - [anon_sym_L_DQUOTE] = ACTIONS(2307), - [anon_sym_u_DQUOTE] = ACTIONS(2307), - [anon_sym_U_DQUOTE] = ACTIONS(2307), - [anon_sym_u8_DQUOTE] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [sym_true] = ACTIONS(2309), - [sym_false] = ACTIONS(2309), - [anon_sym_NULL] = ACTIONS(2311), - [anon_sym_nullptr] = ACTIONS(2311), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2315), - [anon_sym_R_DQUOTE] = ACTIONS(2317), - [anon_sym_LR_DQUOTE] = ACTIONS(2317), - [anon_sym_uR_DQUOTE] = ACTIONS(2317), - [anon_sym_UR_DQUOTE] = ACTIONS(2317), - [anon_sym_u8R_DQUOTE] = ACTIONS(2317), - [anon_sym_co_await] = ACTIONS(2319), - [anon_sym_new] = ACTIONS(2321), - [anon_sym_requires] = ACTIONS(2323), - [sym_this] = ACTIONS(2309), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), - [sym_semgrep_named_ellipsis] = ACTIONS(2327), - }, - [1603] = { - [sym_expression] = STATE(2995), - [sym_expression_not_binary] = STATE(3362), - [sym_conditional_expression] = STATE(3356), - [sym_assignment_expression] = STATE(3356), - [sym_pointer_expression] = STATE(3367), - [sym_unary_expression] = STATE(3356), - [sym_binary_expression] = STATE(3362), - [sym_update_expression] = STATE(3356), - [sym_cast_expression] = STATE(3356), - [sym_sizeof_expression] = STATE(3356), - [sym_alignof_expression] = STATE(3356), - [sym_offsetof_expression] = STATE(3356), - [sym_generic_expression] = STATE(3356), - [sym_subscript_expression] = STATE(3367), - [sym_call_expression] = STATE(3367), - [sym_gnu_asm_expression] = STATE(3356), - [sym_field_expression] = STATE(3367), - [sym_compound_literal_expression] = STATE(3356), - [sym_parenthesized_expression] = STATE(3367), - [sym_char_literal] = STATE(3167), - [sym_concatenated_string] = STATE(3167), - [sym_string_literal] = STATE(1962), - [sym_null] = STATE(3356), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9141), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3356), - [sym_raw_string_literal] = STATE(1962), - [sym_co_await_expression] = STATE(3356), - [sym_new_expression] = STATE(3356), - [sym_delete_expression] = STATE(3356), - [sym_requires_clause] = STATE(3356), - [sym_requires_expression] = STATE(3356), - [sym_lambda_expression] = STATE(3356), - [sym_lambda_capture_specifier] = STATE(7329), - [sym_fold_expression] = STATE(3356), - [sym_parameter_pack_expansion] = STATE(3356), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3367), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3367), - [sym_semgrep_ellipsis] = STATE(3362), - [sym_deep_ellipsis] = STATE(3362), - [sym_identifier] = ACTIONS(5048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5050), - [anon_sym_LPAREN2] = ACTIONS(5114), - [anon_sym_BANG] = ACTIONS(2285), - [anon_sym_TILDE] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2283), - [anon_sym_PLUS] = ACTIONS(2283), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2291), - [anon_sym_not] = ACTIONS(2283), - [anon_sym_compl] = ACTIONS(2283), - [anon_sym_DASH_DASH] = ACTIONS(5052), - [anon_sym_PLUS_PLUS] = ACTIONS(5052), - [anon_sym_sizeof] = ACTIONS(2293), - [anon_sym___alignof__] = ACTIONS(2295), - [anon_sym___alignof] = ACTIONS(2295), - [anon_sym__alignof] = ACTIONS(2295), - [anon_sym_alignof] = ACTIONS(2295), - [anon_sym__Alignof] = ACTIONS(2295), - [anon_sym_offsetof] = ACTIONS(2297), - [anon_sym__Generic] = ACTIONS(2299), - [anon_sym_asm] = ACTIONS(2301), - [anon_sym___asm__] = ACTIONS(2301), - [sym_number_literal] = ACTIONS(2303), - [anon_sym_L_SQUOTE] = ACTIONS(2305), - [anon_sym_u_SQUOTE] = ACTIONS(2305), - [anon_sym_U_SQUOTE] = ACTIONS(2305), - [anon_sym_u8_SQUOTE] = ACTIONS(2305), - [anon_sym_SQUOTE] = ACTIONS(2305), - [anon_sym_L_DQUOTE] = ACTIONS(2307), - [anon_sym_u_DQUOTE] = ACTIONS(2307), - [anon_sym_U_DQUOTE] = ACTIONS(2307), - [anon_sym_u8_DQUOTE] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [sym_true] = ACTIONS(2309), - [sym_false] = ACTIONS(2309), - [anon_sym_NULL] = ACTIONS(2311), - [anon_sym_nullptr] = ACTIONS(2311), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2315), - [anon_sym_R_DQUOTE] = ACTIONS(2317), - [anon_sym_LR_DQUOTE] = ACTIONS(2317), - [anon_sym_uR_DQUOTE] = ACTIONS(2317), - [anon_sym_UR_DQUOTE] = ACTIONS(2317), - [anon_sym_u8R_DQUOTE] = ACTIONS(2317), - [anon_sym_co_await] = ACTIONS(2319), - [anon_sym_new] = ACTIONS(2321), - [anon_sym_requires] = ACTIONS(2323), - [sym_this] = ACTIONS(2309), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), - [sym_semgrep_named_ellipsis] = ACTIONS(2327), - }, - [1604] = { - [sym_expression] = STATE(3029), - [sym_expression_not_binary] = STATE(3362), - [sym_conditional_expression] = STATE(3356), - [sym_assignment_expression] = STATE(3356), - [sym_pointer_expression] = STATE(3367), - [sym_unary_expression] = STATE(3356), - [sym_binary_expression] = STATE(3362), - [sym_update_expression] = STATE(3356), - [sym_cast_expression] = STATE(3356), - [sym_sizeof_expression] = STATE(3356), - [sym_alignof_expression] = STATE(3356), - [sym_offsetof_expression] = STATE(3356), - [sym_generic_expression] = STATE(3356), - [sym_subscript_expression] = STATE(3367), - [sym_call_expression] = STATE(3367), - [sym_gnu_asm_expression] = STATE(3356), - [sym_field_expression] = STATE(3367), - [sym_compound_literal_expression] = STATE(3356), - [sym_parenthesized_expression] = STATE(3367), - [sym_char_literal] = STATE(3167), - [sym_concatenated_string] = STATE(3167), - [sym_string_literal] = STATE(1962), - [sym_null] = STATE(3356), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9141), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3356), - [sym_raw_string_literal] = STATE(1962), - [sym_co_await_expression] = STATE(3356), - [sym_new_expression] = STATE(3356), - [sym_delete_expression] = STATE(3356), - [sym_requires_clause] = STATE(3356), - [sym_requires_expression] = STATE(3356), - [sym_lambda_expression] = STATE(3356), - [sym_lambda_capture_specifier] = STATE(7329), - [sym_fold_expression] = STATE(3356), - [sym_parameter_pack_expansion] = STATE(3356), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3367), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3367), - [sym_semgrep_ellipsis] = STATE(3362), - [sym_deep_ellipsis] = STATE(3362), - [sym_identifier] = ACTIONS(5048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5050), - [anon_sym_LPAREN2] = ACTIONS(5114), - [anon_sym_BANG] = ACTIONS(2285), - [anon_sym_TILDE] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2283), - [anon_sym_PLUS] = ACTIONS(2283), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2291), - [anon_sym_not] = ACTIONS(2283), - [anon_sym_compl] = ACTIONS(2283), - [anon_sym_DASH_DASH] = ACTIONS(5052), - [anon_sym_PLUS_PLUS] = ACTIONS(5052), - [anon_sym_sizeof] = ACTIONS(2293), - [anon_sym___alignof__] = ACTIONS(2295), - [anon_sym___alignof] = ACTIONS(2295), - [anon_sym__alignof] = ACTIONS(2295), - [anon_sym_alignof] = ACTIONS(2295), - [anon_sym__Alignof] = ACTIONS(2295), - [anon_sym_offsetof] = ACTIONS(2297), - [anon_sym__Generic] = ACTIONS(2299), - [anon_sym_asm] = ACTIONS(2301), - [anon_sym___asm__] = ACTIONS(2301), - [sym_number_literal] = ACTIONS(2303), - [anon_sym_L_SQUOTE] = ACTIONS(2305), - [anon_sym_u_SQUOTE] = ACTIONS(2305), - [anon_sym_U_SQUOTE] = ACTIONS(2305), - [anon_sym_u8_SQUOTE] = ACTIONS(2305), - [anon_sym_SQUOTE] = ACTIONS(2305), - [anon_sym_L_DQUOTE] = ACTIONS(2307), - [anon_sym_u_DQUOTE] = ACTIONS(2307), - [anon_sym_U_DQUOTE] = ACTIONS(2307), - [anon_sym_u8_DQUOTE] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [sym_true] = ACTIONS(2309), - [sym_false] = ACTIONS(2309), - [anon_sym_NULL] = ACTIONS(2311), - [anon_sym_nullptr] = ACTIONS(2311), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2315), - [anon_sym_R_DQUOTE] = ACTIONS(2317), - [anon_sym_LR_DQUOTE] = ACTIONS(2317), - [anon_sym_uR_DQUOTE] = ACTIONS(2317), - [anon_sym_UR_DQUOTE] = ACTIONS(2317), - [anon_sym_u8R_DQUOTE] = ACTIONS(2317), - [anon_sym_co_await] = ACTIONS(2319), - [anon_sym_new] = ACTIONS(2321), - [anon_sym_requires] = ACTIONS(2323), - [sym_this] = ACTIONS(2309), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), - [sym_semgrep_named_ellipsis] = ACTIONS(2327), - }, - [1605] = { - [sym_expression] = STATE(5183), - [sym_expression_not_binary] = STATE(5370), - [sym_conditional_expression] = STATE(5364), - [sym_assignment_expression] = STATE(5364), - [sym_pointer_expression] = STATE(3376), - [sym_unary_expression] = STATE(5364), - [sym_binary_expression] = STATE(5370), - [sym_update_expression] = STATE(5364), - [sym_cast_expression] = STATE(5364), - [sym_sizeof_expression] = STATE(5364), - [sym_alignof_expression] = STATE(5364), - [sym_offsetof_expression] = STATE(5364), - [sym_generic_expression] = STATE(5364), - [sym_subscript_expression] = STATE(3376), - [sym_call_expression] = STATE(3376), - [sym_gnu_asm_expression] = STATE(5364), - [sym_field_expression] = STATE(3376), - [sym_compound_literal_expression] = STATE(5364), - [sym_parenthesized_expression] = STATE(3376), - [sym_char_literal] = STATE(5241), - [sym_concatenated_string] = STATE(5241), - [sym_string_literal] = STATE(3576), - [sym_null] = STATE(5364), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9412), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5364), - [sym_raw_string_literal] = STATE(3576), - [sym_co_await_expression] = STATE(5364), - [sym_new_expression] = STATE(5364), - [sym_delete_expression] = STATE(5364), - [sym_requires_clause] = STATE(5364), - [sym_requires_expression] = STATE(5364), - [sym_lambda_expression] = STATE(5364), - [sym_lambda_capture_specifier] = STATE(7332), - [sym_fold_expression] = STATE(5364), - [sym_parameter_pack_expansion] = STATE(5364), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3376), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3376), - [sym_semgrep_ellipsis] = STATE(5370), - [sym_deep_ellipsis] = STATE(5370), - [sym_identifier] = ACTIONS(4984), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), - [anon_sym_LPAREN2] = ACTIONS(5124), - [anon_sym_BANG] = ACTIONS(3774), - [anon_sym_TILDE] = ACTIONS(3774), - [anon_sym_DASH] = ACTIONS(3772), - [anon_sym_PLUS] = ACTIONS(3772), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(3776), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3780), - [anon_sym_not] = ACTIONS(3772), - [anon_sym_compl] = ACTIONS(3772), - [anon_sym_DASH_DASH] = ACTIONS(4988), - [anon_sym_PLUS_PLUS] = ACTIONS(4988), - [anon_sym_sizeof] = ACTIONS(3782), - [anon_sym___alignof__] = ACTIONS(3784), - [anon_sym___alignof] = ACTIONS(3784), - [anon_sym__alignof] = ACTIONS(3784), - [anon_sym_alignof] = ACTIONS(3784), - [anon_sym__Alignof] = ACTIONS(3784), - [anon_sym_offsetof] = ACTIONS(3786), - [anon_sym__Generic] = ACTIONS(3788), - [anon_sym_asm] = ACTIONS(3790), - [anon_sym___asm__] = ACTIONS(3790), - [sym_number_literal] = ACTIONS(3792), - [anon_sym_L_SQUOTE] = ACTIONS(3794), - [anon_sym_u_SQUOTE] = ACTIONS(3794), - [anon_sym_U_SQUOTE] = ACTIONS(3794), - [anon_sym_u8_SQUOTE] = ACTIONS(3794), - [anon_sym_SQUOTE] = ACTIONS(3794), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_true] = ACTIONS(3798), - [sym_false] = ACTIONS(3798), - [anon_sym_NULL] = ACTIONS(3800), - [anon_sym_nullptr] = ACTIONS(3800), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3802), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - [anon_sym_co_await] = ACTIONS(3806), - [anon_sym_new] = ACTIONS(3808), - [anon_sym_requires] = ACTIONS(3810), - [sym_this] = ACTIONS(3798), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3812), - [sym_semgrep_named_ellipsis] = ACTIONS(3814), - }, - [1606] = { - [sym_expression] = STATE(5107), - [sym_expression_not_binary] = STATE(5370), - [sym_conditional_expression] = STATE(5364), - [sym_assignment_expression] = STATE(5364), - [sym_pointer_expression] = STATE(3376), - [sym_unary_expression] = STATE(5364), - [sym_binary_expression] = STATE(5370), - [sym_update_expression] = STATE(5364), - [sym_cast_expression] = STATE(5364), - [sym_sizeof_expression] = STATE(5364), - [sym_alignof_expression] = STATE(5364), - [sym_offsetof_expression] = STATE(5364), - [sym_generic_expression] = STATE(5364), - [sym_subscript_expression] = STATE(3376), - [sym_call_expression] = STATE(3376), - [sym_gnu_asm_expression] = STATE(5364), - [sym_field_expression] = STATE(3376), - [sym_compound_literal_expression] = STATE(5364), - [sym_parenthesized_expression] = STATE(3376), - [sym_char_literal] = STATE(5241), - [sym_concatenated_string] = STATE(5241), - [sym_string_literal] = STATE(3576), - [sym_null] = STATE(5364), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9412), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5364), - [sym_raw_string_literal] = STATE(3576), - [sym_co_await_expression] = STATE(5364), - [sym_new_expression] = STATE(5364), - [sym_delete_expression] = STATE(5364), - [sym_requires_clause] = STATE(5364), - [sym_requires_expression] = STATE(5364), - [sym_lambda_expression] = STATE(5364), - [sym_lambda_capture_specifier] = STATE(7332), - [sym_fold_expression] = STATE(5364), - [sym_parameter_pack_expansion] = STATE(5364), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3376), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3376), - [sym_semgrep_ellipsis] = STATE(5370), - [sym_deep_ellipsis] = STATE(5370), - [sym_identifier] = ACTIONS(4984), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), - [anon_sym_LPAREN2] = ACTIONS(5124), - [anon_sym_BANG] = ACTIONS(3774), - [anon_sym_TILDE] = ACTIONS(3774), - [anon_sym_DASH] = ACTIONS(3772), - [anon_sym_PLUS] = ACTIONS(3772), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(3776), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3780), - [anon_sym_not] = ACTIONS(3772), - [anon_sym_compl] = ACTIONS(3772), - [anon_sym_DASH_DASH] = ACTIONS(4988), - [anon_sym_PLUS_PLUS] = ACTIONS(4988), - [anon_sym_sizeof] = ACTIONS(3782), - [anon_sym___alignof__] = ACTIONS(3784), - [anon_sym___alignof] = ACTIONS(3784), - [anon_sym__alignof] = ACTIONS(3784), - [anon_sym_alignof] = ACTIONS(3784), - [anon_sym__Alignof] = ACTIONS(3784), - [anon_sym_offsetof] = ACTIONS(3786), - [anon_sym__Generic] = ACTIONS(3788), - [anon_sym_asm] = ACTIONS(3790), - [anon_sym___asm__] = ACTIONS(3790), - [sym_number_literal] = ACTIONS(3792), - [anon_sym_L_SQUOTE] = ACTIONS(3794), - [anon_sym_u_SQUOTE] = ACTIONS(3794), - [anon_sym_U_SQUOTE] = ACTIONS(3794), - [anon_sym_u8_SQUOTE] = ACTIONS(3794), - [anon_sym_SQUOTE] = ACTIONS(3794), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_true] = ACTIONS(3798), - [sym_false] = ACTIONS(3798), - [anon_sym_NULL] = ACTIONS(3800), - [anon_sym_nullptr] = ACTIONS(3800), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3802), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - [anon_sym_co_await] = ACTIONS(3806), - [anon_sym_new] = ACTIONS(3808), - [anon_sym_requires] = ACTIONS(3810), - [sym_this] = ACTIONS(3798), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3812), - [sym_semgrep_named_ellipsis] = ACTIONS(3814), - }, - [1607] = { - [sym_expression] = STATE(5161), - [sym_expression_not_binary] = STATE(5370), - [sym_conditional_expression] = STATE(5364), - [sym_assignment_expression] = STATE(5364), - [sym_pointer_expression] = STATE(3376), - [sym_unary_expression] = STATE(5364), - [sym_binary_expression] = STATE(5370), - [sym_update_expression] = STATE(5364), - [sym_cast_expression] = STATE(5364), - [sym_sizeof_expression] = STATE(5364), - [sym_alignof_expression] = STATE(5364), - [sym_offsetof_expression] = STATE(5364), - [sym_generic_expression] = STATE(5364), - [sym_subscript_expression] = STATE(3376), - [sym_call_expression] = STATE(3376), - [sym_gnu_asm_expression] = STATE(5364), - [sym_field_expression] = STATE(3376), - [sym_compound_literal_expression] = STATE(5364), - [sym_parenthesized_expression] = STATE(3376), - [sym_char_literal] = STATE(5241), - [sym_concatenated_string] = STATE(5241), - [sym_string_literal] = STATE(3576), - [sym_null] = STATE(5364), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9412), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5364), - [sym_raw_string_literal] = STATE(3576), - [sym_co_await_expression] = STATE(5364), - [sym_new_expression] = STATE(5364), - [sym_delete_expression] = STATE(5364), - [sym_requires_clause] = STATE(5364), - [sym_requires_expression] = STATE(5364), - [sym_lambda_expression] = STATE(5364), - [sym_lambda_capture_specifier] = STATE(7332), - [sym_fold_expression] = STATE(5364), - [sym_parameter_pack_expansion] = STATE(5364), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3376), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3376), - [sym_semgrep_ellipsis] = STATE(5370), - [sym_deep_ellipsis] = STATE(5370), - [sym_identifier] = ACTIONS(4984), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5412), - [anon_sym_LPAREN2] = ACTIONS(5414), - [anon_sym_BANG] = ACTIONS(3774), - [anon_sym_TILDE] = ACTIONS(3774), - [anon_sym_DASH] = ACTIONS(3772), - [anon_sym_PLUS] = ACTIONS(3772), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(3776), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3780), - [anon_sym_not] = ACTIONS(3772), - [anon_sym_compl] = ACTIONS(3772), - [anon_sym_DASH_DASH] = ACTIONS(4988), - [anon_sym_PLUS_PLUS] = ACTIONS(4988), - [anon_sym_sizeof] = ACTIONS(3782), - [anon_sym___alignof__] = ACTIONS(3784), - [anon_sym___alignof] = ACTIONS(3784), - [anon_sym__alignof] = ACTIONS(3784), - [anon_sym_alignof] = ACTIONS(3784), - [anon_sym__Alignof] = ACTIONS(3784), - [anon_sym_offsetof] = ACTIONS(3786), - [anon_sym__Generic] = ACTIONS(3788), - [anon_sym_asm] = ACTIONS(3790), - [anon_sym___asm__] = ACTIONS(3790), - [sym_number_literal] = ACTIONS(3792), - [anon_sym_L_SQUOTE] = ACTIONS(3794), - [anon_sym_u_SQUOTE] = ACTIONS(3794), - [anon_sym_U_SQUOTE] = ACTIONS(3794), - [anon_sym_u8_SQUOTE] = ACTIONS(3794), - [anon_sym_SQUOTE] = ACTIONS(3794), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_true] = ACTIONS(3798), - [sym_false] = ACTIONS(3798), - [anon_sym_NULL] = ACTIONS(3800), - [anon_sym_nullptr] = ACTIONS(3800), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3802), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - [anon_sym_co_await] = ACTIONS(3806), - [anon_sym_new] = ACTIONS(3808), - [anon_sym_requires] = ACTIONS(3810), - [sym_this] = ACTIONS(3798), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3812), - [sym_semgrep_named_ellipsis] = ACTIONS(3814), - }, - [1608] = { - [sym_expression] = STATE(6043), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1629] = { + [sym_expression] = STATE(4712), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -264134,1510 +255754,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1609] = { - [sym_expression] = STATE(3788), - [sym_expression_not_binary] = STATE(4050), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9276), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [sym_identifier] = ACTIONS(2854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2858), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), - }, - [1610] = { - [sym_expression] = STATE(3300), - [sym_expression_not_binary] = STATE(3786), - [sym_conditional_expression] = STATE(3784), - [sym_assignment_expression] = STATE(3784), - [sym_pointer_expression] = STATE(3787), - [sym_unary_expression] = STATE(3784), - [sym_binary_expression] = STATE(3786), - [sym_update_expression] = STATE(3784), - [sym_cast_expression] = STATE(3784), - [sym_sizeof_expression] = STATE(3784), - [sym_alignof_expression] = STATE(3784), - [sym_offsetof_expression] = STATE(3784), - [sym_generic_expression] = STATE(3784), - [sym_subscript_expression] = STATE(3787), - [sym_call_expression] = STATE(3787), - [sym_gnu_asm_expression] = STATE(3784), - [sym_field_expression] = STATE(3787), - [sym_compound_literal_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3787), - [sym_char_literal] = STATE(3471), - [sym_concatenated_string] = STATE(3471), - [sym_string_literal] = STATE(2063), - [sym_null] = STATE(3784), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9229), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3784), - [sym_raw_string_literal] = STATE(2063), - [sym_co_await_expression] = STATE(3784), - [sym_new_expression] = STATE(3784), - [sym_delete_expression] = STATE(3784), - [sym_requires_clause] = STATE(3784), - [sym_requires_expression] = STATE(3784), - [sym_lambda_expression] = STATE(3784), - [sym_lambda_capture_specifier] = STATE(7253), - [sym_fold_expression] = STATE(3784), - [sym_parameter_pack_expansion] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3787), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3787), - [sym_semgrep_ellipsis] = STATE(3786), - [sym_deep_ellipsis] = STATE(3786), - [sym_identifier] = ACTIONS(5062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5064), - [anon_sym_LPAREN2] = ACTIONS(5108), - [anon_sym_BANG] = ACTIONS(2383), - [anon_sym_TILDE] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2389), - [anon_sym_not] = ACTIONS(2381), - [anon_sym_compl] = ACTIONS(2381), - [anon_sym_DASH_DASH] = ACTIONS(5066), - [anon_sym_PLUS_PLUS] = ACTIONS(5066), - [anon_sym_sizeof] = ACTIONS(2391), - [anon_sym___alignof__] = ACTIONS(2393), - [anon_sym___alignof] = ACTIONS(2393), - [anon_sym__alignof] = ACTIONS(2393), - [anon_sym_alignof] = ACTIONS(2393), - [anon_sym__Alignof] = ACTIONS(2393), - [anon_sym_offsetof] = ACTIONS(2395), - [anon_sym__Generic] = ACTIONS(2397), - [anon_sym_asm] = ACTIONS(2399), - [anon_sym___asm__] = ACTIONS(2399), - [sym_number_literal] = ACTIONS(2401), - [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(2405), - [anon_sym_u_DQUOTE] = ACTIONS(2405), - [anon_sym_U_DQUOTE] = ACTIONS(2405), - [anon_sym_u8_DQUOTE] = ACTIONS(2405), - [anon_sym_DQUOTE] = ACTIONS(2405), - [sym_true] = ACTIONS(2407), - [sym_false] = ACTIONS(2407), - [anon_sym_NULL] = ACTIONS(2409), - [anon_sym_nullptr] = ACTIONS(2409), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2411), - [anon_sym_R_DQUOTE] = ACTIONS(2413), - [anon_sym_LR_DQUOTE] = ACTIONS(2413), - [anon_sym_uR_DQUOTE] = ACTIONS(2413), - [anon_sym_UR_DQUOTE] = ACTIONS(2413), - [anon_sym_u8R_DQUOTE] = ACTIONS(2413), - [anon_sym_co_await] = ACTIONS(2415), - [anon_sym_new] = ACTIONS(2417), - [anon_sym_requires] = ACTIONS(2419), - [sym_this] = ACTIONS(2407), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2421), - [sym_semgrep_named_ellipsis] = ACTIONS(2423), - }, - [1611] = { - [sym_expression] = STATE(3411), - [sym_expression_not_binary] = STATE(3786), - [sym_conditional_expression] = STATE(3784), - [sym_assignment_expression] = STATE(3784), - [sym_pointer_expression] = STATE(3787), - [sym_unary_expression] = STATE(3784), - [sym_binary_expression] = STATE(3786), - [sym_update_expression] = STATE(3784), - [sym_cast_expression] = STATE(3784), - [sym_sizeof_expression] = STATE(3784), - [sym_alignof_expression] = STATE(3784), - [sym_offsetof_expression] = STATE(3784), - [sym_generic_expression] = STATE(3784), - [sym_subscript_expression] = STATE(3787), - [sym_call_expression] = STATE(3787), - [sym_gnu_asm_expression] = STATE(3784), - [sym_field_expression] = STATE(3787), - [sym_compound_literal_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3787), - [sym_char_literal] = STATE(3471), - [sym_concatenated_string] = STATE(3471), - [sym_string_literal] = STATE(2063), - [sym_null] = STATE(3784), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9229), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3784), - [sym_raw_string_literal] = STATE(2063), - [sym_co_await_expression] = STATE(3784), - [sym_new_expression] = STATE(3784), - [sym_delete_expression] = STATE(3784), - [sym_requires_clause] = STATE(3784), - [sym_requires_expression] = STATE(3784), - [sym_lambda_expression] = STATE(3784), - [sym_lambda_capture_specifier] = STATE(7253), - [sym_fold_expression] = STATE(3784), - [sym_parameter_pack_expansion] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3787), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3787), - [sym_semgrep_ellipsis] = STATE(3786), - [sym_deep_ellipsis] = STATE(3786), - [sym_identifier] = ACTIONS(5062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5064), - [anon_sym_LPAREN2] = ACTIONS(5108), - [anon_sym_BANG] = ACTIONS(2383), - [anon_sym_TILDE] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2389), - [anon_sym_not] = ACTIONS(2381), - [anon_sym_compl] = ACTIONS(2381), - [anon_sym_DASH_DASH] = ACTIONS(5066), - [anon_sym_PLUS_PLUS] = ACTIONS(5066), - [anon_sym_sizeof] = ACTIONS(2391), - [anon_sym___alignof__] = ACTIONS(2393), - [anon_sym___alignof] = ACTIONS(2393), - [anon_sym__alignof] = ACTIONS(2393), - [anon_sym_alignof] = ACTIONS(2393), - [anon_sym__Alignof] = ACTIONS(2393), - [anon_sym_offsetof] = ACTIONS(2395), - [anon_sym__Generic] = ACTIONS(2397), - [anon_sym_asm] = ACTIONS(2399), - [anon_sym___asm__] = ACTIONS(2399), - [sym_number_literal] = ACTIONS(2401), - [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(2405), - [anon_sym_u_DQUOTE] = ACTIONS(2405), - [anon_sym_U_DQUOTE] = ACTIONS(2405), - [anon_sym_u8_DQUOTE] = ACTIONS(2405), - [anon_sym_DQUOTE] = ACTIONS(2405), - [sym_true] = ACTIONS(2407), - [sym_false] = ACTIONS(2407), - [anon_sym_NULL] = ACTIONS(2409), - [anon_sym_nullptr] = ACTIONS(2409), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2411), - [anon_sym_R_DQUOTE] = ACTIONS(2413), - [anon_sym_LR_DQUOTE] = ACTIONS(2413), - [anon_sym_uR_DQUOTE] = ACTIONS(2413), - [anon_sym_UR_DQUOTE] = ACTIONS(2413), - [anon_sym_u8R_DQUOTE] = ACTIONS(2413), - [anon_sym_co_await] = ACTIONS(2415), - [anon_sym_new] = ACTIONS(2417), - [anon_sym_requires] = ACTIONS(2419), - [sym_this] = ACTIONS(2407), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2421), - [sym_semgrep_named_ellipsis] = ACTIONS(2423), - }, - [1612] = { - [sym_expression] = STATE(3308), - [sym_expression_not_binary] = STATE(3786), - [sym_conditional_expression] = STATE(3784), - [sym_assignment_expression] = STATE(3784), - [sym_pointer_expression] = STATE(3787), - [sym_unary_expression] = STATE(3784), - [sym_binary_expression] = STATE(3786), - [sym_update_expression] = STATE(3784), - [sym_cast_expression] = STATE(3784), - [sym_sizeof_expression] = STATE(3784), - [sym_alignof_expression] = STATE(3784), - [sym_offsetof_expression] = STATE(3784), - [sym_generic_expression] = STATE(3784), - [sym_subscript_expression] = STATE(3787), - [sym_call_expression] = STATE(3787), - [sym_gnu_asm_expression] = STATE(3784), - [sym_field_expression] = STATE(3787), - [sym_compound_literal_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3787), - [sym_char_literal] = STATE(3471), - [sym_concatenated_string] = STATE(3471), - [sym_string_literal] = STATE(2063), - [sym_null] = STATE(3784), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9229), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3784), - [sym_raw_string_literal] = STATE(2063), - [sym_co_await_expression] = STATE(3784), - [sym_new_expression] = STATE(3784), - [sym_delete_expression] = STATE(3784), - [sym_requires_clause] = STATE(3784), - [sym_requires_expression] = STATE(3784), - [sym_lambda_expression] = STATE(3784), - [sym_lambda_capture_specifier] = STATE(7253), - [sym_fold_expression] = STATE(3784), - [sym_parameter_pack_expansion] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3787), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3787), - [sym_semgrep_ellipsis] = STATE(3786), - [sym_deep_ellipsis] = STATE(3786), - [sym_identifier] = ACTIONS(5062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5064), - [anon_sym_LPAREN2] = ACTIONS(5108), - [anon_sym_BANG] = ACTIONS(2383), - [anon_sym_TILDE] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2389), - [anon_sym_not] = ACTIONS(2381), - [anon_sym_compl] = ACTIONS(2381), - [anon_sym_DASH_DASH] = ACTIONS(5066), - [anon_sym_PLUS_PLUS] = ACTIONS(5066), - [anon_sym_sizeof] = ACTIONS(2391), - [anon_sym___alignof__] = ACTIONS(2393), - [anon_sym___alignof] = ACTIONS(2393), - [anon_sym__alignof] = ACTIONS(2393), - [anon_sym_alignof] = ACTIONS(2393), - [anon_sym__Alignof] = ACTIONS(2393), - [anon_sym_offsetof] = ACTIONS(2395), - [anon_sym__Generic] = ACTIONS(2397), - [anon_sym_asm] = ACTIONS(2399), - [anon_sym___asm__] = ACTIONS(2399), - [sym_number_literal] = ACTIONS(2401), - [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(2405), - [anon_sym_u_DQUOTE] = ACTIONS(2405), - [anon_sym_U_DQUOTE] = ACTIONS(2405), - [anon_sym_u8_DQUOTE] = ACTIONS(2405), - [anon_sym_DQUOTE] = ACTIONS(2405), - [sym_true] = ACTIONS(2407), - [sym_false] = ACTIONS(2407), - [anon_sym_NULL] = ACTIONS(2409), - [anon_sym_nullptr] = ACTIONS(2409), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2411), - [anon_sym_R_DQUOTE] = ACTIONS(2413), - [anon_sym_LR_DQUOTE] = ACTIONS(2413), - [anon_sym_uR_DQUOTE] = ACTIONS(2413), - [anon_sym_UR_DQUOTE] = ACTIONS(2413), - [anon_sym_u8R_DQUOTE] = ACTIONS(2413), - [anon_sym_co_await] = ACTIONS(2415), - [anon_sym_new] = ACTIONS(2417), - [anon_sym_requires] = ACTIONS(2419), - [sym_this] = ACTIONS(2407), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2421), - [sym_semgrep_named_ellipsis] = ACTIONS(2423), - }, - [1613] = { - [sym_expression] = STATE(3310), - [sym_expression_not_binary] = STATE(3786), - [sym_conditional_expression] = STATE(3784), - [sym_assignment_expression] = STATE(3784), - [sym_pointer_expression] = STATE(3787), - [sym_unary_expression] = STATE(3784), - [sym_binary_expression] = STATE(3786), - [sym_update_expression] = STATE(3784), - [sym_cast_expression] = STATE(3784), - [sym_sizeof_expression] = STATE(3784), - [sym_alignof_expression] = STATE(3784), - [sym_offsetof_expression] = STATE(3784), - [sym_generic_expression] = STATE(3784), - [sym_subscript_expression] = STATE(3787), - [sym_call_expression] = STATE(3787), - [sym_gnu_asm_expression] = STATE(3784), - [sym_field_expression] = STATE(3787), - [sym_compound_literal_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3787), - [sym_char_literal] = STATE(3471), - [sym_concatenated_string] = STATE(3471), - [sym_string_literal] = STATE(2063), - [sym_null] = STATE(3784), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9229), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3784), - [sym_raw_string_literal] = STATE(2063), - [sym_co_await_expression] = STATE(3784), - [sym_new_expression] = STATE(3784), - [sym_delete_expression] = STATE(3784), - [sym_requires_clause] = STATE(3784), - [sym_requires_expression] = STATE(3784), - [sym_lambda_expression] = STATE(3784), - [sym_lambda_capture_specifier] = STATE(7253), - [sym_fold_expression] = STATE(3784), - [sym_parameter_pack_expansion] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3787), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3787), - [sym_semgrep_ellipsis] = STATE(3786), - [sym_deep_ellipsis] = STATE(3786), - [sym_identifier] = ACTIONS(5062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5064), - [anon_sym_LPAREN2] = ACTIONS(5108), - [anon_sym_BANG] = ACTIONS(2383), - [anon_sym_TILDE] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2389), - [anon_sym_not] = ACTIONS(2381), - [anon_sym_compl] = ACTIONS(2381), - [anon_sym_DASH_DASH] = ACTIONS(5066), - [anon_sym_PLUS_PLUS] = ACTIONS(5066), - [anon_sym_sizeof] = ACTIONS(2391), - [anon_sym___alignof__] = ACTIONS(2393), - [anon_sym___alignof] = ACTIONS(2393), - [anon_sym__alignof] = ACTIONS(2393), - [anon_sym_alignof] = ACTIONS(2393), - [anon_sym__Alignof] = ACTIONS(2393), - [anon_sym_offsetof] = ACTIONS(2395), - [anon_sym__Generic] = ACTIONS(2397), - [anon_sym_asm] = ACTIONS(2399), - [anon_sym___asm__] = ACTIONS(2399), - [sym_number_literal] = ACTIONS(2401), - [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(2405), - [anon_sym_u_DQUOTE] = ACTIONS(2405), - [anon_sym_U_DQUOTE] = ACTIONS(2405), - [anon_sym_u8_DQUOTE] = ACTIONS(2405), - [anon_sym_DQUOTE] = ACTIONS(2405), - [sym_true] = ACTIONS(2407), - [sym_false] = ACTIONS(2407), - [anon_sym_NULL] = ACTIONS(2409), - [anon_sym_nullptr] = ACTIONS(2409), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2411), - [anon_sym_R_DQUOTE] = ACTIONS(2413), - [anon_sym_LR_DQUOTE] = ACTIONS(2413), - [anon_sym_uR_DQUOTE] = ACTIONS(2413), - [anon_sym_UR_DQUOTE] = ACTIONS(2413), - [anon_sym_u8R_DQUOTE] = ACTIONS(2413), - [anon_sym_co_await] = ACTIONS(2415), - [anon_sym_new] = ACTIONS(2417), - [anon_sym_requires] = ACTIONS(2419), - [sym_this] = ACTIONS(2407), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2421), - [sym_semgrep_named_ellipsis] = ACTIONS(2423), - }, - [1614] = { - [sym_expression] = STATE(3312), - [sym_expression_not_binary] = STATE(3786), - [sym_conditional_expression] = STATE(3784), - [sym_assignment_expression] = STATE(3784), - [sym_pointer_expression] = STATE(3787), - [sym_unary_expression] = STATE(3784), - [sym_binary_expression] = STATE(3786), - [sym_update_expression] = STATE(3784), - [sym_cast_expression] = STATE(3784), - [sym_sizeof_expression] = STATE(3784), - [sym_alignof_expression] = STATE(3784), - [sym_offsetof_expression] = STATE(3784), - [sym_generic_expression] = STATE(3784), - [sym_subscript_expression] = STATE(3787), - [sym_call_expression] = STATE(3787), - [sym_gnu_asm_expression] = STATE(3784), - [sym_field_expression] = STATE(3787), - [sym_compound_literal_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3787), - [sym_char_literal] = STATE(3471), - [sym_concatenated_string] = STATE(3471), - [sym_string_literal] = STATE(2063), - [sym_null] = STATE(3784), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9229), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3784), - [sym_raw_string_literal] = STATE(2063), - [sym_co_await_expression] = STATE(3784), - [sym_new_expression] = STATE(3784), - [sym_delete_expression] = STATE(3784), - [sym_requires_clause] = STATE(3784), - [sym_requires_expression] = STATE(3784), - [sym_lambda_expression] = STATE(3784), - [sym_lambda_capture_specifier] = STATE(7253), - [sym_fold_expression] = STATE(3784), - [sym_parameter_pack_expansion] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3787), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3787), - [sym_semgrep_ellipsis] = STATE(3786), - [sym_deep_ellipsis] = STATE(3786), - [sym_identifier] = ACTIONS(5062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5064), - [anon_sym_LPAREN2] = ACTIONS(5108), - [anon_sym_BANG] = ACTIONS(2383), - [anon_sym_TILDE] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2389), - [anon_sym_not] = ACTIONS(2381), - [anon_sym_compl] = ACTIONS(2381), - [anon_sym_DASH_DASH] = ACTIONS(5066), - [anon_sym_PLUS_PLUS] = ACTIONS(5066), - [anon_sym_sizeof] = ACTIONS(2391), - [anon_sym___alignof__] = ACTIONS(2393), - [anon_sym___alignof] = ACTIONS(2393), - [anon_sym__alignof] = ACTIONS(2393), - [anon_sym_alignof] = ACTIONS(2393), - [anon_sym__Alignof] = ACTIONS(2393), - [anon_sym_offsetof] = ACTIONS(2395), - [anon_sym__Generic] = ACTIONS(2397), - [anon_sym_asm] = ACTIONS(2399), - [anon_sym___asm__] = ACTIONS(2399), - [sym_number_literal] = ACTIONS(2401), - [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(2405), - [anon_sym_u_DQUOTE] = ACTIONS(2405), - [anon_sym_U_DQUOTE] = ACTIONS(2405), - [anon_sym_u8_DQUOTE] = ACTIONS(2405), - [anon_sym_DQUOTE] = ACTIONS(2405), - [sym_true] = ACTIONS(2407), - [sym_false] = ACTIONS(2407), - [anon_sym_NULL] = ACTIONS(2409), - [anon_sym_nullptr] = ACTIONS(2409), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2411), - [anon_sym_R_DQUOTE] = ACTIONS(2413), - [anon_sym_LR_DQUOTE] = ACTIONS(2413), - [anon_sym_uR_DQUOTE] = ACTIONS(2413), - [anon_sym_UR_DQUOTE] = ACTIONS(2413), - [anon_sym_u8R_DQUOTE] = ACTIONS(2413), - [anon_sym_co_await] = ACTIONS(2415), - [anon_sym_new] = ACTIONS(2417), - [anon_sym_requires] = ACTIONS(2419), - [sym_this] = ACTIONS(2407), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2421), - [sym_semgrep_named_ellipsis] = ACTIONS(2423), - }, - [1615] = { - [sym_expression] = STATE(3331), - [sym_expression_not_binary] = STATE(3786), - [sym_conditional_expression] = STATE(3784), - [sym_assignment_expression] = STATE(3784), - [sym_pointer_expression] = STATE(3787), - [sym_unary_expression] = STATE(3784), - [sym_binary_expression] = STATE(3786), - [sym_update_expression] = STATE(3784), - [sym_cast_expression] = STATE(3784), - [sym_sizeof_expression] = STATE(3784), - [sym_alignof_expression] = STATE(3784), - [sym_offsetof_expression] = STATE(3784), - [sym_generic_expression] = STATE(3784), - [sym_subscript_expression] = STATE(3787), - [sym_call_expression] = STATE(3787), - [sym_gnu_asm_expression] = STATE(3784), - [sym_field_expression] = STATE(3787), - [sym_compound_literal_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3787), - [sym_char_literal] = STATE(3471), - [sym_concatenated_string] = STATE(3471), - [sym_string_literal] = STATE(2063), - [sym_null] = STATE(3784), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9229), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3784), - [sym_raw_string_literal] = STATE(2063), - [sym_co_await_expression] = STATE(3784), - [sym_new_expression] = STATE(3784), - [sym_delete_expression] = STATE(3784), - [sym_requires_clause] = STATE(3784), - [sym_requires_expression] = STATE(3784), - [sym_lambda_expression] = STATE(3784), - [sym_lambda_capture_specifier] = STATE(7253), - [sym_fold_expression] = STATE(3784), - [sym_parameter_pack_expansion] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3787), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3787), - [sym_semgrep_ellipsis] = STATE(3786), - [sym_deep_ellipsis] = STATE(3786), - [sym_identifier] = ACTIONS(5062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5064), - [anon_sym_LPAREN2] = ACTIONS(5108), - [anon_sym_BANG] = ACTIONS(2383), - [anon_sym_TILDE] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2389), - [anon_sym_not] = ACTIONS(2381), - [anon_sym_compl] = ACTIONS(2381), - [anon_sym_DASH_DASH] = ACTIONS(5066), - [anon_sym_PLUS_PLUS] = ACTIONS(5066), - [anon_sym_sizeof] = ACTIONS(2391), - [anon_sym___alignof__] = ACTIONS(2393), - [anon_sym___alignof] = ACTIONS(2393), - [anon_sym__alignof] = ACTIONS(2393), - [anon_sym_alignof] = ACTIONS(2393), - [anon_sym__Alignof] = ACTIONS(2393), - [anon_sym_offsetof] = ACTIONS(2395), - [anon_sym__Generic] = ACTIONS(2397), - [anon_sym_asm] = ACTIONS(2399), - [anon_sym___asm__] = ACTIONS(2399), - [sym_number_literal] = ACTIONS(2401), - [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(2405), - [anon_sym_u_DQUOTE] = ACTIONS(2405), - [anon_sym_U_DQUOTE] = ACTIONS(2405), - [anon_sym_u8_DQUOTE] = ACTIONS(2405), - [anon_sym_DQUOTE] = ACTIONS(2405), - [sym_true] = ACTIONS(2407), - [sym_false] = ACTIONS(2407), - [anon_sym_NULL] = ACTIONS(2409), - [anon_sym_nullptr] = ACTIONS(2409), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2411), - [anon_sym_R_DQUOTE] = ACTIONS(2413), - [anon_sym_LR_DQUOTE] = ACTIONS(2413), - [anon_sym_uR_DQUOTE] = ACTIONS(2413), - [anon_sym_UR_DQUOTE] = ACTIONS(2413), - [anon_sym_u8R_DQUOTE] = ACTIONS(2413), - [anon_sym_co_await] = ACTIONS(2415), - [anon_sym_new] = ACTIONS(2417), - [anon_sym_requires] = ACTIONS(2419), - [sym_this] = ACTIONS(2407), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2421), - [sym_semgrep_named_ellipsis] = ACTIONS(2423), - }, - [1616] = { - [sym_expression] = STATE(3333), - [sym_expression_not_binary] = STATE(3786), - [sym_conditional_expression] = STATE(3784), - [sym_assignment_expression] = STATE(3784), - [sym_pointer_expression] = STATE(3787), - [sym_unary_expression] = STATE(3784), - [sym_binary_expression] = STATE(3786), - [sym_update_expression] = STATE(3784), - [sym_cast_expression] = STATE(3784), - [sym_sizeof_expression] = STATE(3784), - [sym_alignof_expression] = STATE(3784), - [sym_offsetof_expression] = STATE(3784), - [sym_generic_expression] = STATE(3784), - [sym_subscript_expression] = STATE(3787), - [sym_call_expression] = STATE(3787), - [sym_gnu_asm_expression] = STATE(3784), - [sym_field_expression] = STATE(3787), - [sym_compound_literal_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3787), - [sym_char_literal] = STATE(3471), - [sym_concatenated_string] = STATE(3471), - [sym_string_literal] = STATE(2063), - [sym_null] = STATE(3784), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9229), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3784), - [sym_raw_string_literal] = STATE(2063), - [sym_co_await_expression] = STATE(3784), - [sym_new_expression] = STATE(3784), - [sym_delete_expression] = STATE(3784), - [sym_requires_clause] = STATE(3784), - [sym_requires_expression] = STATE(3784), - [sym_lambda_expression] = STATE(3784), - [sym_lambda_capture_specifier] = STATE(7253), - [sym_fold_expression] = STATE(3784), - [sym_parameter_pack_expansion] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3787), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3787), - [sym_semgrep_ellipsis] = STATE(3786), - [sym_deep_ellipsis] = STATE(3786), - [sym_identifier] = ACTIONS(5062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5064), - [anon_sym_LPAREN2] = ACTIONS(5108), - [anon_sym_BANG] = ACTIONS(2383), - [anon_sym_TILDE] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2389), - [anon_sym_not] = ACTIONS(2381), - [anon_sym_compl] = ACTIONS(2381), - [anon_sym_DASH_DASH] = ACTIONS(5066), - [anon_sym_PLUS_PLUS] = ACTIONS(5066), - [anon_sym_sizeof] = ACTIONS(2391), - [anon_sym___alignof__] = ACTIONS(2393), - [anon_sym___alignof] = ACTIONS(2393), - [anon_sym__alignof] = ACTIONS(2393), - [anon_sym_alignof] = ACTIONS(2393), - [anon_sym__Alignof] = ACTIONS(2393), - [anon_sym_offsetof] = ACTIONS(2395), - [anon_sym__Generic] = ACTIONS(2397), - [anon_sym_asm] = ACTIONS(2399), - [anon_sym___asm__] = ACTIONS(2399), - [sym_number_literal] = ACTIONS(2401), - [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(2405), - [anon_sym_u_DQUOTE] = ACTIONS(2405), - [anon_sym_U_DQUOTE] = ACTIONS(2405), - [anon_sym_u8_DQUOTE] = ACTIONS(2405), - [anon_sym_DQUOTE] = ACTIONS(2405), - [sym_true] = ACTIONS(2407), - [sym_false] = ACTIONS(2407), - [anon_sym_NULL] = ACTIONS(2409), - [anon_sym_nullptr] = ACTIONS(2409), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2411), - [anon_sym_R_DQUOTE] = ACTIONS(2413), - [anon_sym_LR_DQUOTE] = ACTIONS(2413), - [anon_sym_uR_DQUOTE] = ACTIONS(2413), - [anon_sym_UR_DQUOTE] = ACTIONS(2413), - [anon_sym_u8R_DQUOTE] = ACTIONS(2413), - [anon_sym_co_await] = ACTIONS(2415), - [anon_sym_new] = ACTIONS(2417), - [anon_sym_requires] = ACTIONS(2419), - [sym_this] = ACTIONS(2407), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2421), - [sym_semgrep_named_ellipsis] = ACTIONS(2423), - }, - [1617] = { - [sym_expression] = STATE(3334), - [sym_expression_not_binary] = STATE(3786), - [sym_conditional_expression] = STATE(3784), - [sym_assignment_expression] = STATE(3784), - [sym_pointer_expression] = STATE(3787), - [sym_unary_expression] = STATE(3784), - [sym_binary_expression] = STATE(3786), - [sym_update_expression] = STATE(3784), - [sym_cast_expression] = STATE(3784), - [sym_sizeof_expression] = STATE(3784), - [sym_alignof_expression] = STATE(3784), - [sym_offsetof_expression] = STATE(3784), - [sym_generic_expression] = STATE(3784), - [sym_subscript_expression] = STATE(3787), - [sym_call_expression] = STATE(3787), - [sym_gnu_asm_expression] = STATE(3784), - [sym_field_expression] = STATE(3787), - [sym_compound_literal_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3787), - [sym_char_literal] = STATE(3471), - [sym_concatenated_string] = STATE(3471), - [sym_string_literal] = STATE(2063), - [sym_null] = STATE(3784), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9229), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3784), - [sym_raw_string_literal] = STATE(2063), - [sym_co_await_expression] = STATE(3784), - [sym_new_expression] = STATE(3784), - [sym_delete_expression] = STATE(3784), - [sym_requires_clause] = STATE(3784), - [sym_requires_expression] = STATE(3784), - [sym_lambda_expression] = STATE(3784), - [sym_lambda_capture_specifier] = STATE(7253), - [sym_fold_expression] = STATE(3784), - [sym_parameter_pack_expansion] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3787), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3787), - [sym_semgrep_ellipsis] = STATE(3786), - [sym_deep_ellipsis] = STATE(3786), - [sym_identifier] = ACTIONS(5062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5064), - [anon_sym_LPAREN2] = ACTIONS(5108), - [anon_sym_BANG] = ACTIONS(2383), - [anon_sym_TILDE] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2389), - [anon_sym_not] = ACTIONS(2381), - [anon_sym_compl] = ACTIONS(2381), - [anon_sym_DASH_DASH] = ACTIONS(5066), - [anon_sym_PLUS_PLUS] = ACTIONS(5066), - [anon_sym_sizeof] = ACTIONS(2391), - [anon_sym___alignof__] = ACTIONS(2393), - [anon_sym___alignof] = ACTIONS(2393), - [anon_sym__alignof] = ACTIONS(2393), - [anon_sym_alignof] = ACTIONS(2393), - [anon_sym__Alignof] = ACTIONS(2393), - [anon_sym_offsetof] = ACTIONS(2395), - [anon_sym__Generic] = ACTIONS(2397), - [anon_sym_asm] = ACTIONS(2399), - [anon_sym___asm__] = ACTIONS(2399), - [sym_number_literal] = ACTIONS(2401), - [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(2405), - [anon_sym_u_DQUOTE] = ACTIONS(2405), - [anon_sym_U_DQUOTE] = ACTIONS(2405), - [anon_sym_u8_DQUOTE] = ACTIONS(2405), - [anon_sym_DQUOTE] = ACTIONS(2405), - [sym_true] = ACTIONS(2407), - [sym_false] = ACTIONS(2407), - [anon_sym_NULL] = ACTIONS(2409), - [anon_sym_nullptr] = ACTIONS(2409), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2411), - [anon_sym_R_DQUOTE] = ACTIONS(2413), - [anon_sym_LR_DQUOTE] = ACTIONS(2413), - [anon_sym_uR_DQUOTE] = ACTIONS(2413), - [anon_sym_UR_DQUOTE] = ACTIONS(2413), - [anon_sym_u8R_DQUOTE] = ACTIONS(2413), - [anon_sym_co_await] = ACTIONS(2415), - [anon_sym_new] = ACTIONS(2417), - [anon_sym_requires] = ACTIONS(2419), - [sym_this] = ACTIONS(2407), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2421), - [sym_semgrep_named_ellipsis] = ACTIONS(2423), - }, - [1618] = { - [sym_expression] = STATE(3335), - [sym_expression_not_binary] = STATE(3786), - [sym_conditional_expression] = STATE(3784), - [sym_assignment_expression] = STATE(3784), - [sym_pointer_expression] = STATE(3787), - [sym_unary_expression] = STATE(3784), - [sym_binary_expression] = STATE(3786), - [sym_update_expression] = STATE(3784), - [sym_cast_expression] = STATE(3784), - [sym_sizeof_expression] = STATE(3784), - [sym_alignof_expression] = STATE(3784), - [sym_offsetof_expression] = STATE(3784), - [sym_generic_expression] = STATE(3784), - [sym_subscript_expression] = STATE(3787), - [sym_call_expression] = STATE(3787), - [sym_gnu_asm_expression] = STATE(3784), - [sym_field_expression] = STATE(3787), - [sym_compound_literal_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3787), - [sym_char_literal] = STATE(3471), - [sym_concatenated_string] = STATE(3471), - [sym_string_literal] = STATE(2063), - [sym_null] = STATE(3784), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9229), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3784), - [sym_raw_string_literal] = STATE(2063), - [sym_co_await_expression] = STATE(3784), - [sym_new_expression] = STATE(3784), - [sym_delete_expression] = STATE(3784), - [sym_requires_clause] = STATE(3784), - [sym_requires_expression] = STATE(3784), - [sym_lambda_expression] = STATE(3784), - [sym_lambda_capture_specifier] = STATE(7253), - [sym_fold_expression] = STATE(3784), - [sym_parameter_pack_expansion] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3787), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3787), - [sym_semgrep_ellipsis] = STATE(3786), - [sym_deep_ellipsis] = STATE(3786), - [sym_identifier] = ACTIONS(5062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5064), - [anon_sym_LPAREN2] = ACTIONS(5108), - [anon_sym_BANG] = ACTIONS(2383), - [anon_sym_TILDE] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2389), - [anon_sym_not] = ACTIONS(2381), - [anon_sym_compl] = ACTIONS(2381), - [anon_sym_DASH_DASH] = ACTIONS(5066), - [anon_sym_PLUS_PLUS] = ACTIONS(5066), - [anon_sym_sizeof] = ACTIONS(2391), - [anon_sym___alignof__] = ACTIONS(2393), - [anon_sym___alignof] = ACTIONS(2393), - [anon_sym__alignof] = ACTIONS(2393), - [anon_sym_alignof] = ACTIONS(2393), - [anon_sym__Alignof] = ACTIONS(2393), - [anon_sym_offsetof] = ACTIONS(2395), - [anon_sym__Generic] = ACTIONS(2397), - [anon_sym_asm] = ACTIONS(2399), - [anon_sym___asm__] = ACTIONS(2399), - [sym_number_literal] = ACTIONS(2401), - [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(2405), - [anon_sym_u_DQUOTE] = ACTIONS(2405), - [anon_sym_U_DQUOTE] = ACTIONS(2405), - [anon_sym_u8_DQUOTE] = ACTIONS(2405), - [anon_sym_DQUOTE] = ACTIONS(2405), - [sym_true] = ACTIONS(2407), - [sym_false] = ACTIONS(2407), - [anon_sym_NULL] = ACTIONS(2409), - [anon_sym_nullptr] = ACTIONS(2409), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2411), - [anon_sym_R_DQUOTE] = ACTIONS(2413), - [anon_sym_LR_DQUOTE] = ACTIONS(2413), - [anon_sym_uR_DQUOTE] = ACTIONS(2413), - [anon_sym_UR_DQUOTE] = ACTIONS(2413), - [anon_sym_u8R_DQUOTE] = ACTIONS(2413), - [anon_sym_co_await] = ACTIONS(2415), - [anon_sym_new] = ACTIONS(2417), - [anon_sym_requires] = ACTIONS(2419), - [sym_this] = ACTIONS(2407), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2421), - [sym_semgrep_named_ellipsis] = ACTIONS(2423), - }, - [1619] = { - [sym_expression] = STATE(3347), - [sym_expression_not_binary] = STATE(3786), - [sym_conditional_expression] = STATE(3784), - [sym_assignment_expression] = STATE(3784), - [sym_pointer_expression] = STATE(3787), - [sym_unary_expression] = STATE(3784), - [sym_binary_expression] = STATE(3786), - [sym_update_expression] = STATE(3784), - [sym_cast_expression] = STATE(3784), - [sym_sizeof_expression] = STATE(3784), - [sym_alignof_expression] = STATE(3784), - [sym_offsetof_expression] = STATE(3784), - [sym_generic_expression] = STATE(3784), - [sym_subscript_expression] = STATE(3787), - [sym_call_expression] = STATE(3787), - [sym_gnu_asm_expression] = STATE(3784), - [sym_field_expression] = STATE(3787), - [sym_compound_literal_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3787), - [sym_char_literal] = STATE(3471), - [sym_concatenated_string] = STATE(3471), - [sym_string_literal] = STATE(2063), - [sym_null] = STATE(3784), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9229), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3784), - [sym_raw_string_literal] = STATE(2063), - [sym_co_await_expression] = STATE(3784), - [sym_new_expression] = STATE(3784), - [sym_delete_expression] = STATE(3784), - [sym_requires_clause] = STATE(3784), - [sym_requires_expression] = STATE(3784), - [sym_lambda_expression] = STATE(3784), - [sym_lambda_capture_specifier] = STATE(7253), - [sym_fold_expression] = STATE(3784), - [sym_parameter_pack_expansion] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3787), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3787), - [sym_semgrep_ellipsis] = STATE(3786), - [sym_deep_ellipsis] = STATE(3786), - [sym_identifier] = ACTIONS(5062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5064), - [anon_sym_LPAREN2] = ACTIONS(5108), - [anon_sym_BANG] = ACTIONS(2383), - [anon_sym_TILDE] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2389), - [anon_sym_not] = ACTIONS(2381), - [anon_sym_compl] = ACTIONS(2381), - [anon_sym_DASH_DASH] = ACTIONS(5066), - [anon_sym_PLUS_PLUS] = ACTIONS(5066), - [anon_sym_sizeof] = ACTIONS(2391), - [anon_sym___alignof__] = ACTIONS(2393), - [anon_sym___alignof] = ACTIONS(2393), - [anon_sym__alignof] = ACTIONS(2393), - [anon_sym_alignof] = ACTIONS(2393), - [anon_sym__Alignof] = ACTIONS(2393), - [anon_sym_offsetof] = ACTIONS(2395), - [anon_sym__Generic] = ACTIONS(2397), - [anon_sym_asm] = ACTIONS(2399), - [anon_sym___asm__] = ACTIONS(2399), - [sym_number_literal] = ACTIONS(2401), - [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(2405), - [anon_sym_u_DQUOTE] = ACTIONS(2405), - [anon_sym_U_DQUOTE] = ACTIONS(2405), - [anon_sym_u8_DQUOTE] = ACTIONS(2405), - [anon_sym_DQUOTE] = ACTIONS(2405), - [sym_true] = ACTIONS(2407), - [sym_false] = ACTIONS(2407), - [anon_sym_NULL] = ACTIONS(2409), - [anon_sym_nullptr] = ACTIONS(2409), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2411), - [anon_sym_R_DQUOTE] = ACTIONS(2413), - [anon_sym_LR_DQUOTE] = ACTIONS(2413), - [anon_sym_uR_DQUOTE] = ACTIONS(2413), - [anon_sym_UR_DQUOTE] = ACTIONS(2413), - [anon_sym_u8R_DQUOTE] = ACTIONS(2413), - [anon_sym_co_await] = ACTIONS(2415), - [anon_sym_new] = ACTIONS(2417), - [anon_sym_requires] = ACTIONS(2419), - [sym_this] = ACTIONS(2407), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2421), - [sym_semgrep_named_ellipsis] = ACTIONS(2423), - }, - [1620] = { - [sym_expression] = STATE(2981), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3806), - [sym_concatenated_string] = STATE(3806), - [sym_string_literal] = STATE(2240), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(2240), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2652), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(5142), - [anon_sym_BANG] = ACTIONS(2656), - [anon_sym_TILDE] = ACTIONS(2656), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_PLUS] = ACTIONS(2654), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2654), - [anon_sym_compl] = ACTIONS(2654), - [anon_sym_DASH_DASH] = ACTIONS(5004), - [anon_sym_PLUS_PLUS] = ACTIONS(5004), - [anon_sym_sizeof] = ACTIONS(2660), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2662), - [anon_sym_L_SQUOTE] = ACTIONS(2664), - [anon_sym_u_SQUOTE] = ACTIONS(2664), - [anon_sym_U_SQUOTE] = ACTIONS(2664), - [anon_sym_u8_SQUOTE] = ACTIONS(2664), - [anon_sym_SQUOTE] = ACTIONS(2664), - [anon_sym_L_DQUOTE] = ACTIONS(2666), - [anon_sym_u_DQUOTE] = ACTIONS(2666), - [anon_sym_U_DQUOTE] = ACTIONS(2666), - [anon_sym_u8_DQUOTE] = ACTIONS(2666), - [anon_sym_DQUOTE] = ACTIONS(2666), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2668), - [anon_sym_R_DQUOTE] = ACTIONS(2670), - [anon_sym_LR_DQUOTE] = ACTIONS(2670), - [anon_sym_uR_DQUOTE] = ACTIONS(2670), - [anon_sym_UR_DQUOTE] = ACTIONS(2670), - [anon_sym_u8R_DQUOTE] = ACTIONS(2670), - [anon_sym_co_await] = ACTIONS(2672), - [anon_sym_new] = ACTIONS(2674), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1621] = { - [sym_expression] = STATE(3061), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3806), - [sym_concatenated_string] = STATE(3806), - [sym_string_literal] = STATE(2240), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(2240), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2652), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(5142), - [anon_sym_BANG] = ACTIONS(2656), - [anon_sym_TILDE] = ACTIONS(2656), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_PLUS] = ACTIONS(2654), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2654), - [anon_sym_compl] = ACTIONS(2654), - [anon_sym_DASH_DASH] = ACTIONS(5004), - [anon_sym_PLUS_PLUS] = ACTIONS(5004), - [anon_sym_sizeof] = ACTIONS(2660), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2662), - [anon_sym_L_SQUOTE] = ACTIONS(2664), - [anon_sym_u_SQUOTE] = ACTIONS(2664), - [anon_sym_U_SQUOTE] = ACTIONS(2664), - [anon_sym_u8_SQUOTE] = ACTIONS(2664), - [anon_sym_SQUOTE] = ACTIONS(2664), - [anon_sym_L_DQUOTE] = ACTIONS(2666), - [anon_sym_u_DQUOTE] = ACTIONS(2666), - [anon_sym_U_DQUOTE] = ACTIONS(2666), - [anon_sym_u8_DQUOTE] = ACTIONS(2666), - [anon_sym_DQUOTE] = ACTIONS(2666), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2668), - [anon_sym_R_DQUOTE] = ACTIONS(2670), - [anon_sym_LR_DQUOTE] = ACTIONS(2670), - [anon_sym_uR_DQUOTE] = ACTIONS(2670), - [anon_sym_UR_DQUOTE] = ACTIONS(2670), - [anon_sym_u8R_DQUOTE] = ACTIONS(2670), - [anon_sym_co_await] = ACTIONS(2672), - [anon_sym_new] = ACTIONS(2674), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1622] = { - [sym_expression] = STATE(3018), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3806), - [sym_concatenated_string] = STATE(3806), - [sym_string_literal] = STATE(2240), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(2240), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2652), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5374), - [anon_sym_LPAREN2] = ACTIONS(5416), - [anon_sym_BANG] = ACTIONS(2656), - [anon_sym_TILDE] = ACTIONS(2656), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_PLUS] = ACTIONS(2654), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2654), - [anon_sym_compl] = ACTIONS(2654), - [anon_sym_DASH_DASH] = ACTIONS(5004), - [anon_sym_PLUS_PLUS] = ACTIONS(5004), - [anon_sym_sizeof] = ACTIONS(2660), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2662), - [anon_sym_L_SQUOTE] = ACTIONS(2664), - [anon_sym_u_SQUOTE] = ACTIONS(2664), - [anon_sym_U_SQUOTE] = ACTIONS(2664), - [anon_sym_u8_SQUOTE] = ACTIONS(2664), - [anon_sym_SQUOTE] = ACTIONS(2664), - [anon_sym_L_DQUOTE] = ACTIONS(2666), - [anon_sym_u_DQUOTE] = ACTIONS(2666), - [anon_sym_U_DQUOTE] = ACTIONS(2666), - [anon_sym_u8_DQUOTE] = ACTIONS(2666), - [anon_sym_DQUOTE] = ACTIONS(2666), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2668), - [anon_sym_R_DQUOTE] = ACTIONS(2670), - [anon_sym_LR_DQUOTE] = ACTIONS(2670), - [anon_sym_uR_DQUOTE] = ACTIONS(2670), - [anon_sym_UR_DQUOTE] = ACTIONS(2670), - [anon_sym_u8R_DQUOTE] = ACTIONS(2670), - [anon_sym_co_await] = ACTIONS(2672), - [anon_sym_new] = ACTIONS(2674), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1623] = { - [sym_expression] = STATE(6044), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1630] = { + [sym_expression] = STATE(5249), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -265664,82 +255856,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1624] = { - [sym_expression] = STATE(6045), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1631] = { + [sym_expression] = STATE(5250), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -265766,1306 +255958,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1625] = { - [sym_expression] = STATE(5379), - [sym_expression_not_binary] = STATE(5540), - [sym_conditional_expression] = STATE(5537), - [sym_assignment_expression] = STATE(5537), - [sym_pointer_expression] = STATE(3745), - [sym_unary_expression] = STATE(5537), - [sym_binary_expression] = STATE(5540), - [sym_update_expression] = STATE(5537), - [sym_cast_expression] = STATE(5537), - [sym_sizeof_expression] = STATE(5537), - [sym_alignof_expression] = STATE(5537), - [sym_offsetof_expression] = STATE(5537), - [sym_generic_expression] = STATE(5537), - [sym_subscript_expression] = STATE(3745), - [sym_call_expression] = STATE(3745), - [sym_gnu_asm_expression] = STATE(5537), - [sym_field_expression] = STATE(3745), - [sym_compound_literal_expression] = STATE(5537), - [sym_parenthesized_expression] = STATE(3745), - [sym_char_literal] = STATE(5453), - [sym_concatenated_string] = STATE(5453), - [sym_string_literal] = STATE(3936), - [sym_null] = STATE(5537), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9333), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5537), - [sym_raw_string_literal] = STATE(3936), - [sym_co_await_expression] = STATE(5537), - [sym_new_expression] = STATE(5537), - [sym_delete_expression] = STATE(5537), - [sym_requires_clause] = STATE(5537), - [sym_requires_expression] = STATE(5537), - [sym_lambda_expression] = STATE(5537), - [sym_lambda_capture_specifier] = STATE(7261), - [sym_fold_expression] = STATE(5537), - [sym_parameter_pack_expansion] = STATE(5537), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3745), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3745), - [sym_semgrep_ellipsis] = STATE(5540), - [sym_deep_ellipsis] = STATE(5540), - [sym_identifier] = ACTIONS(5032), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5034), - [anon_sym_LPAREN2] = ACTIONS(5112), - [anon_sym_BANG] = ACTIONS(3820), - [anon_sym_TILDE] = ACTIONS(3820), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(3822), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3826), - [anon_sym_not] = ACTIONS(3818), - [anon_sym_compl] = ACTIONS(3818), - [anon_sym_DASH_DASH] = ACTIONS(5036), - [anon_sym_PLUS_PLUS] = ACTIONS(5036), - [anon_sym_sizeof] = ACTIONS(3828), - [anon_sym___alignof__] = ACTIONS(3830), - [anon_sym___alignof] = ACTIONS(3830), - [anon_sym__alignof] = ACTIONS(3830), - [anon_sym_alignof] = ACTIONS(3830), - [anon_sym__Alignof] = ACTIONS(3830), - [anon_sym_offsetof] = ACTIONS(3832), - [anon_sym__Generic] = ACTIONS(3834), - [anon_sym_asm] = ACTIONS(3836), - [anon_sym___asm__] = ACTIONS(3836), - [sym_number_literal] = ACTIONS(3838), - [anon_sym_L_SQUOTE] = ACTIONS(3840), - [anon_sym_u_SQUOTE] = ACTIONS(3840), - [anon_sym_U_SQUOTE] = ACTIONS(3840), - [anon_sym_u8_SQUOTE] = ACTIONS(3840), - [anon_sym_SQUOTE] = ACTIONS(3840), - [anon_sym_L_DQUOTE] = ACTIONS(3842), - [anon_sym_u_DQUOTE] = ACTIONS(3842), - [anon_sym_U_DQUOTE] = ACTIONS(3842), - [anon_sym_u8_DQUOTE] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym_true] = ACTIONS(3844), - [sym_false] = ACTIONS(3844), - [anon_sym_NULL] = ACTIONS(3846), - [anon_sym_nullptr] = ACTIONS(3846), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(3854), - [anon_sym_requires] = ACTIONS(3856), - [sym_this] = ACTIONS(3844), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3858), - [sym_semgrep_named_ellipsis] = ACTIONS(3860), - }, - [1626] = { - [sym_expression] = STATE(5327), - [sym_expression_not_binary] = STATE(5540), - [sym_conditional_expression] = STATE(5537), - [sym_assignment_expression] = STATE(5537), - [sym_pointer_expression] = STATE(3745), - [sym_unary_expression] = STATE(5537), - [sym_binary_expression] = STATE(5540), - [sym_update_expression] = STATE(5537), - [sym_cast_expression] = STATE(5537), - [sym_sizeof_expression] = STATE(5537), - [sym_alignof_expression] = STATE(5537), - [sym_offsetof_expression] = STATE(5537), - [sym_generic_expression] = STATE(5537), - [sym_subscript_expression] = STATE(3745), - [sym_call_expression] = STATE(3745), - [sym_gnu_asm_expression] = STATE(5537), - [sym_field_expression] = STATE(3745), - [sym_compound_literal_expression] = STATE(5537), - [sym_parenthesized_expression] = STATE(3745), - [sym_char_literal] = STATE(5453), - [sym_concatenated_string] = STATE(5453), - [sym_string_literal] = STATE(3936), - [sym_null] = STATE(5537), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9333), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5537), - [sym_raw_string_literal] = STATE(3936), - [sym_co_await_expression] = STATE(5537), - [sym_new_expression] = STATE(5537), - [sym_delete_expression] = STATE(5537), - [sym_requires_clause] = STATE(5537), - [sym_requires_expression] = STATE(5537), - [sym_lambda_expression] = STATE(5537), - [sym_lambda_capture_specifier] = STATE(7261), - [sym_fold_expression] = STATE(5537), - [sym_parameter_pack_expansion] = STATE(5537), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3745), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3745), - [sym_semgrep_ellipsis] = STATE(5540), - [sym_deep_ellipsis] = STATE(5540), - [sym_identifier] = ACTIONS(5032), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5034), - [anon_sym_LPAREN2] = ACTIONS(5112), - [anon_sym_BANG] = ACTIONS(3820), - [anon_sym_TILDE] = ACTIONS(3820), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(3822), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3826), - [anon_sym_not] = ACTIONS(3818), - [anon_sym_compl] = ACTIONS(3818), - [anon_sym_DASH_DASH] = ACTIONS(5036), - [anon_sym_PLUS_PLUS] = ACTIONS(5036), - [anon_sym_sizeof] = ACTIONS(3828), - [anon_sym___alignof__] = ACTIONS(3830), - [anon_sym___alignof] = ACTIONS(3830), - [anon_sym__alignof] = ACTIONS(3830), - [anon_sym_alignof] = ACTIONS(3830), - [anon_sym__Alignof] = ACTIONS(3830), - [anon_sym_offsetof] = ACTIONS(3832), - [anon_sym__Generic] = ACTIONS(3834), - [anon_sym_asm] = ACTIONS(3836), - [anon_sym___asm__] = ACTIONS(3836), - [sym_number_literal] = ACTIONS(3838), - [anon_sym_L_SQUOTE] = ACTIONS(3840), - [anon_sym_u_SQUOTE] = ACTIONS(3840), - [anon_sym_U_SQUOTE] = ACTIONS(3840), - [anon_sym_u8_SQUOTE] = ACTIONS(3840), - [anon_sym_SQUOTE] = ACTIONS(3840), - [anon_sym_L_DQUOTE] = ACTIONS(3842), - [anon_sym_u_DQUOTE] = ACTIONS(3842), - [anon_sym_U_DQUOTE] = ACTIONS(3842), - [anon_sym_u8_DQUOTE] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym_true] = ACTIONS(3844), - [sym_false] = ACTIONS(3844), - [anon_sym_NULL] = ACTIONS(3846), - [anon_sym_nullptr] = ACTIONS(3846), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(3854), - [anon_sym_requires] = ACTIONS(3856), - [sym_this] = ACTIONS(3844), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3858), - [sym_semgrep_named_ellipsis] = ACTIONS(3860), - }, - [1627] = { - [sym_expression] = STATE(5341), - [sym_expression_not_binary] = STATE(5540), - [sym_conditional_expression] = STATE(5537), - [sym_assignment_expression] = STATE(5537), - [sym_pointer_expression] = STATE(3745), - [sym_unary_expression] = STATE(5537), - [sym_binary_expression] = STATE(5540), - [sym_update_expression] = STATE(5537), - [sym_cast_expression] = STATE(5537), - [sym_sizeof_expression] = STATE(5537), - [sym_alignof_expression] = STATE(5537), - [sym_offsetof_expression] = STATE(5537), - [sym_generic_expression] = STATE(5537), - [sym_subscript_expression] = STATE(3745), - [sym_call_expression] = STATE(3745), - [sym_gnu_asm_expression] = STATE(5537), - [sym_field_expression] = STATE(3745), - [sym_compound_literal_expression] = STATE(5537), - [sym_parenthesized_expression] = STATE(3745), - [sym_char_literal] = STATE(5453), - [sym_concatenated_string] = STATE(5453), - [sym_string_literal] = STATE(3936), - [sym_null] = STATE(5537), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9333), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5537), - [sym_raw_string_literal] = STATE(3936), - [sym_co_await_expression] = STATE(5537), - [sym_new_expression] = STATE(5537), - [sym_delete_expression] = STATE(5537), - [sym_requires_clause] = STATE(5537), - [sym_requires_expression] = STATE(5537), - [sym_lambda_expression] = STATE(5537), - [sym_lambda_capture_specifier] = STATE(7261), - [sym_fold_expression] = STATE(5537), - [sym_parameter_pack_expansion] = STATE(5537), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3745), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3745), - [sym_semgrep_ellipsis] = STATE(5540), - [sym_deep_ellipsis] = STATE(5540), - [sym_identifier] = ACTIONS(5032), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5418), - [anon_sym_LPAREN2] = ACTIONS(5420), - [anon_sym_BANG] = ACTIONS(3820), - [anon_sym_TILDE] = ACTIONS(3820), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(3822), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3826), - [anon_sym_not] = ACTIONS(3818), - [anon_sym_compl] = ACTIONS(3818), - [anon_sym_DASH_DASH] = ACTIONS(5036), - [anon_sym_PLUS_PLUS] = ACTIONS(5036), - [anon_sym_sizeof] = ACTIONS(3828), - [anon_sym___alignof__] = ACTIONS(3830), - [anon_sym___alignof] = ACTIONS(3830), - [anon_sym__alignof] = ACTIONS(3830), - [anon_sym_alignof] = ACTIONS(3830), - [anon_sym__Alignof] = ACTIONS(3830), - [anon_sym_offsetof] = ACTIONS(3832), - [anon_sym__Generic] = ACTIONS(3834), - [anon_sym_asm] = ACTIONS(3836), - [anon_sym___asm__] = ACTIONS(3836), - [sym_number_literal] = ACTIONS(3838), - [anon_sym_L_SQUOTE] = ACTIONS(3840), - [anon_sym_u_SQUOTE] = ACTIONS(3840), - [anon_sym_U_SQUOTE] = ACTIONS(3840), - [anon_sym_u8_SQUOTE] = ACTIONS(3840), - [anon_sym_SQUOTE] = ACTIONS(3840), - [anon_sym_L_DQUOTE] = ACTIONS(3842), - [anon_sym_u_DQUOTE] = ACTIONS(3842), - [anon_sym_U_DQUOTE] = ACTIONS(3842), - [anon_sym_u8_DQUOTE] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym_true] = ACTIONS(3844), - [sym_false] = ACTIONS(3844), - [anon_sym_NULL] = ACTIONS(3846), - [anon_sym_nullptr] = ACTIONS(3846), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(3854), - [anon_sym_requires] = ACTIONS(3856), - [sym_this] = ACTIONS(3844), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3858), - [sym_semgrep_named_ellipsis] = ACTIONS(3860), - }, - [1628] = { - [sym_expression] = STATE(3074), - [sym_expression_not_binary] = STATE(3362), - [sym_conditional_expression] = STATE(3356), - [sym_assignment_expression] = STATE(3356), - [sym_pointer_expression] = STATE(3367), - [sym_unary_expression] = STATE(3356), - [sym_binary_expression] = STATE(3362), - [sym_update_expression] = STATE(3356), - [sym_cast_expression] = STATE(3356), - [sym_sizeof_expression] = STATE(3356), - [sym_alignof_expression] = STATE(3356), - [sym_offsetof_expression] = STATE(3356), - [sym_generic_expression] = STATE(3356), - [sym_subscript_expression] = STATE(3367), - [sym_call_expression] = STATE(3367), - [sym_gnu_asm_expression] = STATE(3356), - [sym_field_expression] = STATE(3367), - [sym_compound_literal_expression] = STATE(3356), - [sym_parenthesized_expression] = STATE(3367), - [sym_char_literal] = STATE(3167), - [sym_concatenated_string] = STATE(3167), - [sym_string_literal] = STATE(1962), - [sym_null] = STATE(3356), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9141), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3356), - [sym_raw_string_literal] = STATE(1962), - [sym_co_await_expression] = STATE(3356), - [sym_new_expression] = STATE(3356), - [sym_delete_expression] = STATE(3356), - [sym_requires_clause] = STATE(3356), - [sym_requires_expression] = STATE(3356), - [sym_lambda_expression] = STATE(3356), - [sym_lambda_capture_specifier] = STATE(7329), - [sym_fold_expression] = STATE(3356), - [sym_parameter_pack_expansion] = STATE(3356), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3367), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3367), - [sym_semgrep_ellipsis] = STATE(3362), - [sym_deep_ellipsis] = STATE(3362), - [sym_identifier] = ACTIONS(5048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5050), - [anon_sym_LPAREN2] = ACTIONS(5114), - [anon_sym_BANG] = ACTIONS(2285), - [anon_sym_TILDE] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2283), - [anon_sym_PLUS] = ACTIONS(2283), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2291), - [anon_sym_not] = ACTIONS(2283), - [anon_sym_compl] = ACTIONS(2283), - [anon_sym_DASH_DASH] = ACTIONS(5052), - [anon_sym_PLUS_PLUS] = ACTIONS(5052), - [anon_sym_sizeof] = ACTIONS(2293), - [anon_sym___alignof__] = ACTIONS(2295), - [anon_sym___alignof] = ACTIONS(2295), - [anon_sym__alignof] = ACTIONS(2295), - [anon_sym_alignof] = ACTIONS(2295), - [anon_sym__Alignof] = ACTIONS(2295), - [anon_sym_offsetof] = ACTIONS(2297), - [anon_sym__Generic] = ACTIONS(2299), - [anon_sym_asm] = ACTIONS(2301), - [anon_sym___asm__] = ACTIONS(2301), - [sym_number_literal] = ACTIONS(2303), - [anon_sym_L_SQUOTE] = ACTIONS(2305), - [anon_sym_u_SQUOTE] = ACTIONS(2305), - [anon_sym_U_SQUOTE] = ACTIONS(2305), - [anon_sym_u8_SQUOTE] = ACTIONS(2305), - [anon_sym_SQUOTE] = ACTIONS(2305), - [anon_sym_L_DQUOTE] = ACTIONS(2307), - [anon_sym_u_DQUOTE] = ACTIONS(2307), - [anon_sym_U_DQUOTE] = ACTIONS(2307), - [anon_sym_u8_DQUOTE] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [sym_true] = ACTIONS(2309), - [sym_false] = ACTIONS(2309), - [anon_sym_NULL] = ACTIONS(2311), - [anon_sym_nullptr] = ACTIONS(2311), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2315), - [anon_sym_R_DQUOTE] = ACTIONS(2317), - [anon_sym_LR_DQUOTE] = ACTIONS(2317), - [anon_sym_uR_DQUOTE] = ACTIONS(2317), - [anon_sym_UR_DQUOTE] = ACTIONS(2317), - [anon_sym_u8R_DQUOTE] = ACTIONS(2317), - [anon_sym_co_await] = ACTIONS(2319), - [anon_sym_new] = ACTIONS(2321), - [anon_sym_requires] = ACTIONS(2323), - [sym_this] = ACTIONS(2309), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), - [sym_semgrep_named_ellipsis] = ACTIONS(2327), - }, - [1629] = { - [sym_expression] = STATE(3081), - [sym_expression_not_binary] = STATE(3362), - [sym_conditional_expression] = STATE(3356), - [sym_assignment_expression] = STATE(3356), - [sym_pointer_expression] = STATE(3367), - [sym_unary_expression] = STATE(3356), - [sym_binary_expression] = STATE(3362), - [sym_update_expression] = STATE(3356), - [sym_cast_expression] = STATE(3356), - [sym_sizeof_expression] = STATE(3356), - [sym_alignof_expression] = STATE(3356), - [sym_offsetof_expression] = STATE(3356), - [sym_generic_expression] = STATE(3356), - [sym_subscript_expression] = STATE(3367), - [sym_call_expression] = STATE(3367), - [sym_gnu_asm_expression] = STATE(3356), - [sym_field_expression] = STATE(3367), - [sym_compound_literal_expression] = STATE(3356), - [sym_parenthesized_expression] = STATE(3367), - [sym_char_literal] = STATE(3167), - [sym_concatenated_string] = STATE(3167), - [sym_string_literal] = STATE(1962), - [sym_null] = STATE(3356), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9141), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3356), - [sym_raw_string_literal] = STATE(1962), - [sym_co_await_expression] = STATE(3356), - [sym_new_expression] = STATE(3356), - [sym_delete_expression] = STATE(3356), - [sym_requires_clause] = STATE(3356), - [sym_requires_expression] = STATE(3356), - [sym_lambda_expression] = STATE(3356), - [sym_lambda_capture_specifier] = STATE(7329), - [sym_fold_expression] = STATE(3356), - [sym_parameter_pack_expansion] = STATE(3356), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3367), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3367), - [sym_semgrep_ellipsis] = STATE(3362), - [sym_deep_ellipsis] = STATE(3362), - [sym_identifier] = ACTIONS(5048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5050), - [anon_sym_LPAREN2] = ACTIONS(5114), - [anon_sym_BANG] = ACTIONS(2285), - [anon_sym_TILDE] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2283), - [anon_sym_PLUS] = ACTIONS(2283), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2291), - [anon_sym_not] = ACTIONS(2283), - [anon_sym_compl] = ACTIONS(2283), - [anon_sym_DASH_DASH] = ACTIONS(5052), - [anon_sym_PLUS_PLUS] = ACTIONS(5052), - [anon_sym_sizeof] = ACTIONS(2293), - [anon_sym___alignof__] = ACTIONS(2295), - [anon_sym___alignof] = ACTIONS(2295), - [anon_sym__alignof] = ACTIONS(2295), - [anon_sym_alignof] = ACTIONS(2295), - [anon_sym__Alignof] = ACTIONS(2295), - [anon_sym_offsetof] = ACTIONS(2297), - [anon_sym__Generic] = ACTIONS(2299), - [anon_sym_asm] = ACTIONS(2301), - [anon_sym___asm__] = ACTIONS(2301), - [sym_number_literal] = ACTIONS(2303), - [anon_sym_L_SQUOTE] = ACTIONS(2305), - [anon_sym_u_SQUOTE] = ACTIONS(2305), - [anon_sym_U_SQUOTE] = ACTIONS(2305), - [anon_sym_u8_SQUOTE] = ACTIONS(2305), - [anon_sym_SQUOTE] = ACTIONS(2305), - [anon_sym_L_DQUOTE] = ACTIONS(2307), - [anon_sym_u_DQUOTE] = ACTIONS(2307), - [anon_sym_U_DQUOTE] = ACTIONS(2307), - [anon_sym_u8_DQUOTE] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [sym_true] = ACTIONS(2309), - [sym_false] = ACTIONS(2309), - [anon_sym_NULL] = ACTIONS(2311), - [anon_sym_nullptr] = ACTIONS(2311), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2315), - [anon_sym_R_DQUOTE] = ACTIONS(2317), - [anon_sym_LR_DQUOTE] = ACTIONS(2317), - [anon_sym_uR_DQUOTE] = ACTIONS(2317), - [anon_sym_UR_DQUOTE] = ACTIONS(2317), - [anon_sym_u8R_DQUOTE] = ACTIONS(2317), - [anon_sym_co_await] = ACTIONS(2319), - [anon_sym_new] = ACTIONS(2321), - [anon_sym_requires] = ACTIONS(2323), - [sym_this] = ACTIONS(2309), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), - [sym_semgrep_named_ellipsis] = ACTIONS(2327), - }, - [1630] = { - [sym_expression] = STATE(3082), - [sym_expression_not_binary] = STATE(3362), - [sym_conditional_expression] = STATE(3356), - [sym_assignment_expression] = STATE(3356), - [sym_pointer_expression] = STATE(3367), - [sym_unary_expression] = STATE(3356), - [sym_binary_expression] = STATE(3362), - [sym_update_expression] = STATE(3356), - [sym_cast_expression] = STATE(3356), - [sym_sizeof_expression] = STATE(3356), - [sym_alignof_expression] = STATE(3356), - [sym_offsetof_expression] = STATE(3356), - [sym_generic_expression] = STATE(3356), - [sym_subscript_expression] = STATE(3367), - [sym_call_expression] = STATE(3367), - [sym_gnu_asm_expression] = STATE(3356), - [sym_field_expression] = STATE(3367), - [sym_compound_literal_expression] = STATE(3356), - [sym_parenthesized_expression] = STATE(3367), - [sym_char_literal] = STATE(3167), - [sym_concatenated_string] = STATE(3167), - [sym_string_literal] = STATE(1962), - [sym_null] = STATE(3356), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9141), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3356), - [sym_raw_string_literal] = STATE(1962), - [sym_co_await_expression] = STATE(3356), - [sym_new_expression] = STATE(3356), - [sym_delete_expression] = STATE(3356), - [sym_requires_clause] = STATE(3356), - [sym_requires_expression] = STATE(3356), - [sym_lambda_expression] = STATE(3356), - [sym_lambda_capture_specifier] = STATE(7329), - [sym_fold_expression] = STATE(3356), - [sym_parameter_pack_expansion] = STATE(3356), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3367), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3367), - [sym_semgrep_ellipsis] = STATE(3362), - [sym_deep_ellipsis] = STATE(3362), - [sym_identifier] = ACTIONS(5048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5422), - [anon_sym_LPAREN2] = ACTIONS(5424), - [anon_sym_BANG] = ACTIONS(2285), - [anon_sym_TILDE] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2283), - [anon_sym_PLUS] = ACTIONS(2283), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2291), - [anon_sym_not] = ACTIONS(2283), - [anon_sym_compl] = ACTIONS(2283), - [anon_sym_DASH_DASH] = ACTIONS(5052), - [anon_sym_PLUS_PLUS] = ACTIONS(5052), - [anon_sym_sizeof] = ACTIONS(2293), - [anon_sym___alignof__] = ACTIONS(2295), - [anon_sym___alignof] = ACTIONS(2295), - [anon_sym__alignof] = ACTIONS(2295), - [anon_sym_alignof] = ACTIONS(2295), - [anon_sym__Alignof] = ACTIONS(2295), - [anon_sym_offsetof] = ACTIONS(2297), - [anon_sym__Generic] = ACTIONS(2299), - [anon_sym_asm] = ACTIONS(2301), - [anon_sym___asm__] = ACTIONS(2301), - [sym_number_literal] = ACTIONS(2303), - [anon_sym_L_SQUOTE] = ACTIONS(2305), - [anon_sym_u_SQUOTE] = ACTIONS(2305), - [anon_sym_U_SQUOTE] = ACTIONS(2305), - [anon_sym_u8_SQUOTE] = ACTIONS(2305), - [anon_sym_SQUOTE] = ACTIONS(2305), - [anon_sym_L_DQUOTE] = ACTIONS(2307), - [anon_sym_u_DQUOTE] = ACTIONS(2307), - [anon_sym_U_DQUOTE] = ACTIONS(2307), - [anon_sym_u8_DQUOTE] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [sym_true] = ACTIONS(2309), - [sym_false] = ACTIONS(2309), - [anon_sym_NULL] = ACTIONS(2311), - [anon_sym_nullptr] = ACTIONS(2311), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2315), - [anon_sym_R_DQUOTE] = ACTIONS(2317), - [anon_sym_LR_DQUOTE] = ACTIONS(2317), - [anon_sym_uR_DQUOTE] = ACTIONS(2317), - [anon_sym_UR_DQUOTE] = ACTIONS(2317), - [anon_sym_u8R_DQUOTE] = ACTIONS(2317), - [anon_sym_co_await] = ACTIONS(2319), - [anon_sym_new] = ACTIONS(2321), - [anon_sym_requires] = ACTIONS(2323), - [sym_this] = ACTIONS(2309), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), - [sym_semgrep_named_ellipsis] = ACTIONS(2327), - }, - [1631] = { - [sym_expression] = STATE(5770), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9595), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [sym_identifier] = ACTIONS(4059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_LBRACK] = ACTIONS(5426), - [sym_primitive_type] = ACTIONS(4063), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), - }, [1632] = { - [sym_expression] = STATE(5771), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9595), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [sym_identifier] = ACTIONS(4059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4063), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), - }, - [1633] = { - [sym_expression] = STATE(3395), - [sym_expression_not_binary] = STATE(3786), - [sym_conditional_expression] = STATE(3784), - [sym_assignment_expression] = STATE(3784), - [sym_pointer_expression] = STATE(3787), - [sym_unary_expression] = STATE(3784), - [sym_binary_expression] = STATE(3786), - [sym_update_expression] = STATE(3784), - [sym_cast_expression] = STATE(3784), - [sym_sizeof_expression] = STATE(3784), - [sym_alignof_expression] = STATE(3784), - [sym_offsetof_expression] = STATE(3784), - [sym_generic_expression] = STATE(3784), - [sym_subscript_expression] = STATE(3787), - [sym_call_expression] = STATE(3787), - [sym_gnu_asm_expression] = STATE(3784), - [sym_field_expression] = STATE(3787), - [sym_compound_literal_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3787), - [sym_char_literal] = STATE(3471), - [sym_concatenated_string] = STATE(3471), - [sym_string_literal] = STATE(2063), - [sym_null] = STATE(3784), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9229), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3784), - [sym_raw_string_literal] = STATE(2063), - [sym_co_await_expression] = STATE(3784), - [sym_new_expression] = STATE(3784), - [sym_delete_expression] = STATE(3784), - [sym_requires_clause] = STATE(3784), - [sym_requires_expression] = STATE(3784), - [sym_lambda_expression] = STATE(3784), - [sym_lambda_capture_specifier] = STATE(7253), - [sym_fold_expression] = STATE(3784), - [sym_parameter_pack_expansion] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3787), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3787), - [sym_semgrep_ellipsis] = STATE(3786), - [sym_deep_ellipsis] = STATE(3786), - [sym_identifier] = ACTIONS(5062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5064), - [anon_sym_LPAREN2] = ACTIONS(5108), - [anon_sym_BANG] = ACTIONS(2383), - [anon_sym_TILDE] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2389), - [anon_sym_not] = ACTIONS(2381), - [anon_sym_compl] = ACTIONS(2381), - [anon_sym_DASH_DASH] = ACTIONS(5066), - [anon_sym_PLUS_PLUS] = ACTIONS(5066), - [anon_sym_sizeof] = ACTIONS(2391), - [anon_sym___alignof__] = ACTIONS(2393), - [anon_sym___alignof] = ACTIONS(2393), - [anon_sym__alignof] = ACTIONS(2393), - [anon_sym_alignof] = ACTIONS(2393), - [anon_sym__Alignof] = ACTIONS(2393), - [anon_sym_offsetof] = ACTIONS(2395), - [anon_sym__Generic] = ACTIONS(2397), - [anon_sym_asm] = ACTIONS(2399), - [anon_sym___asm__] = ACTIONS(2399), - [sym_number_literal] = ACTIONS(2401), - [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(2405), - [anon_sym_u_DQUOTE] = ACTIONS(2405), - [anon_sym_U_DQUOTE] = ACTIONS(2405), - [anon_sym_u8_DQUOTE] = ACTIONS(2405), - [anon_sym_DQUOTE] = ACTIONS(2405), - [sym_true] = ACTIONS(2407), - [sym_false] = ACTIONS(2407), - [anon_sym_NULL] = ACTIONS(2409), - [anon_sym_nullptr] = ACTIONS(2409), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2411), - [anon_sym_R_DQUOTE] = ACTIONS(2413), - [anon_sym_LR_DQUOTE] = ACTIONS(2413), - [anon_sym_uR_DQUOTE] = ACTIONS(2413), - [anon_sym_UR_DQUOTE] = ACTIONS(2413), - [anon_sym_u8R_DQUOTE] = ACTIONS(2413), - [anon_sym_co_await] = ACTIONS(2415), - [anon_sym_new] = ACTIONS(2417), - [anon_sym_requires] = ACTIONS(2419), - [sym_this] = ACTIONS(2407), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2421), - [sym_semgrep_named_ellipsis] = ACTIONS(2423), - }, - [1634] = { - [sym_expression] = STATE(3441), - [sym_expression_not_binary] = STATE(3786), - [sym_conditional_expression] = STATE(3784), - [sym_assignment_expression] = STATE(3784), - [sym_pointer_expression] = STATE(3787), - [sym_unary_expression] = STATE(3784), - [sym_binary_expression] = STATE(3786), - [sym_update_expression] = STATE(3784), - [sym_cast_expression] = STATE(3784), - [sym_sizeof_expression] = STATE(3784), - [sym_alignof_expression] = STATE(3784), - [sym_offsetof_expression] = STATE(3784), - [sym_generic_expression] = STATE(3784), - [sym_subscript_expression] = STATE(3787), - [sym_call_expression] = STATE(3787), - [sym_gnu_asm_expression] = STATE(3784), - [sym_field_expression] = STATE(3787), - [sym_compound_literal_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3787), - [sym_char_literal] = STATE(3471), - [sym_concatenated_string] = STATE(3471), - [sym_string_literal] = STATE(2063), - [sym_null] = STATE(3784), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9229), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3784), - [sym_raw_string_literal] = STATE(2063), - [sym_co_await_expression] = STATE(3784), - [sym_new_expression] = STATE(3784), - [sym_delete_expression] = STATE(3784), - [sym_requires_clause] = STATE(3784), - [sym_requires_expression] = STATE(3784), - [sym_lambda_expression] = STATE(3784), - [sym_lambda_capture_specifier] = STATE(7253), - [sym_fold_expression] = STATE(3784), - [sym_parameter_pack_expansion] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3787), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3787), - [sym_semgrep_ellipsis] = STATE(3786), - [sym_deep_ellipsis] = STATE(3786), - [sym_identifier] = ACTIONS(5062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5064), - [anon_sym_LPAREN2] = ACTIONS(5108), - [anon_sym_BANG] = ACTIONS(2383), - [anon_sym_TILDE] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2389), - [anon_sym_not] = ACTIONS(2381), - [anon_sym_compl] = ACTIONS(2381), - [anon_sym_DASH_DASH] = ACTIONS(5066), - [anon_sym_PLUS_PLUS] = ACTIONS(5066), - [anon_sym_sizeof] = ACTIONS(2391), - [anon_sym___alignof__] = ACTIONS(2393), - [anon_sym___alignof] = ACTIONS(2393), - [anon_sym__alignof] = ACTIONS(2393), - [anon_sym_alignof] = ACTIONS(2393), - [anon_sym__Alignof] = ACTIONS(2393), - [anon_sym_offsetof] = ACTIONS(2395), - [anon_sym__Generic] = ACTIONS(2397), - [anon_sym_asm] = ACTIONS(2399), - [anon_sym___asm__] = ACTIONS(2399), - [sym_number_literal] = ACTIONS(2401), - [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(2405), - [anon_sym_u_DQUOTE] = ACTIONS(2405), - [anon_sym_U_DQUOTE] = ACTIONS(2405), - [anon_sym_u8_DQUOTE] = ACTIONS(2405), - [anon_sym_DQUOTE] = ACTIONS(2405), - [sym_true] = ACTIONS(2407), - [sym_false] = ACTIONS(2407), - [anon_sym_NULL] = ACTIONS(2409), - [anon_sym_nullptr] = ACTIONS(2409), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2411), - [anon_sym_R_DQUOTE] = ACTIONS(2413), - [anon_sym_LR_DQUOTE] = ACTIONS(2413), - [anon_sym_uR_DQUOTE] = ACTIONS(2413), - [anon_sym_UR_DQUOTE] = ACTIONS(2413), - [anon_sym_u8R_DQUOTE] = ACTIONS(2413), - [anon_sym_co_await] = ACTIONS(2415), - [anon_sym_new] = ACTIONS(2417), - [anon_sym_requires] = ACTIONS(2419), - [sym_this] = ACTIONS(2407), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2421), - [sym_semgrep_named_ellipsis] = ACTIONS(2423), - }, - [1635] = { - [sym_expression] = STATE(3316), - [sym_expression_not_binary] = STATE(3786), - [sym_conditional_expression] = STATE(3784), - [sym_assignment_expression] = STATE(3784), - [sym_pointer_expression] = STATE(3787), - [sym_unary_expression] = STATE(3784), - [sym_binary_expression] = STATE(3786), - [sym_update_expression] = STATE(3784), - [sym_cast_expression] = STATE(3784), - [sym_sizeof_expression] = STATE(3784), - [sym_alignof_expression] = STATE(3784), - [sym_offsetof_expression] = STATE(3784), - [sym_generic_expression] = STATE(3784), - [sym_subscript_expression] = STATE(3787), - [sym_call_expression] = STATE(3787), - [sym_gnu_asm_expression] = STATE(3784), - [sym_field_expression] = STATE(3787), - [sym_compound_literal_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3787), - [sym_char_literal] = STATE(3471), - [sym_concatenated_string] = STATE(3471), - [sym_string_literal] = STATE(2063), - [sym_null] = STATE(3784), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9229), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3784), - [sym_raw_string_literal] = STATE(2063), - [sym_co_await_expression] = STATE(3784), - [sym_new_expression] = STATE(3784), - [sym_delete_expression] = STATE(3784), - [sym_requires_clause] = STATE(3784), - [sym_requires_expression] = STATE(3784), - [sym_lambda_expression] = STATE(3784), - [sym_lambda_capture_specifier] = STATE(7253), - [sym_fold_expression] = STATE(3784), - [sym_parameter_pack_expansion] = STATE(3784), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3787), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3787), - [sym_semgrep_ellipsis] = STATE(3786), - [sym_deep_ellipsis] = STATE(3786), - [sym_identifier] = ACTIONS(5062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5428), - [anon_sym_LPAREN2] = ACTIONS(5430), - [anon_sym_BANG] = ACTIONS(2383), - [anon_sym_TILDE] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2389), - [anon_sym_not] = ACTIONS(2381), - [anon_sym_compl] = ACTIONS(2381), - [anon_sym_DASH_DASH] = ACTIONS(5066), - [anon_sym_PLUS_PLUS] = ACTIONS(5066), - [anon_sym_sizeof] = ACTIONS(2391), - [anon_sym___alignof__] = ACTIONS(2393), - [anon_sym___alignof] = ACTIONS(2393), - [anon_sym__alignof] = ACTIONS(2393), - [anon_sym_alignof] = ACTIONS(2393), - [anon_sym__Alignof] = ACTIONS(2393), - [anon_sym_offsetof] = ACTIONS(2395), - [anon_sym__Generic] = ACTIONS(2397), - [anon_sym_asm] = ACTIONS(2399), - [anon_sym___asm__] = ACTIONS(2399), - [sym_number_literal] = ACTIONS(2401), - [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(2405), - [anon_sym_u_DQUOTE] = ACTIONS(2405), - [anon_sym_U_DQUOTE] = ACTIONS(2405), - [anon_sym_u8_DQUOTE] = ACTIONS(2405), - [anon_sym_DQUOTE] = ACTIONS(2405), - [sym_true] = ACTIONS(2407), - [sym_false] = ACTIONS(2407), - [anon_sym_NULL] = ACTIONS(2409), - [anon_sym_nullptr] = ACTIONS(2409), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2411), - [anon_sym_R_DQUOTE] = ACTIONS(2413), - [anon_sym_LR_DQUOTE] = ACTIONS(2413), - [anon_sym_uR_DQUOTE] = ACTIONS(2413), - [anon_sym_UR_DQUOTE] = ACTIONS(2413), - [anon_sym_u8R_DQUOTE] = ACTIONS(2413), - [anon_sym_co_await] = ACTIONS(2415), - [anon_sym_new] = ACTIONS(2417), - [anon_sym_requires] = ACTIONS(2419), - [sym_this] = ACTIONS(2407), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2421), - [sym_semgrep_named_ellipsis] = ACTIONS(2423), - }, - [1636] = { - [sym_expression] = STATE(5803), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9595), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [sym_identifier] = ACTIONS(4059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_LBRACK] = ACTIONS(5432), - [sym_primitive_type] = ACTIONS(4063), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), - }, - [1637] = { - [sym_expression] = STATE(5858), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [sym_expression] = STATE(5251), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -267092,82 +256060,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1638] = { - [sym_expression] = STATE(5187), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1633] = { + [sym_expression] = STATE(5252), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -267194,82 +256162,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1639] = { - [sym_expression] = STATE(5505), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4036), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4036), - [sym_call_expression] = STATE(4036), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4036), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4036), - [sym_char_literal] = STATE(5772), - [sym_concatenated_string] = STATE(5772), - [sym_string_literal] = STATE(4262), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(4262), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4036), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4036), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5038), - [anon_sym_BANG] = ACTIONS(4035), - [anon_sym_TILDE] = ACTIONS(4035), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(4037), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4033), - [anon_sym_compl] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(5044), - [anon_sym_PLUS_PLUS] = ACTIONS(5044), - [anon_sym_sizeof] = ACTIONS(4039), + [1634] = { + [sym_expression] = STATE(5253), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -267279,99 +256247,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(4041), - [anon_sym_L_SQUOTE] = ACTIONS(4043), - [anon_sym_u_SQUOTE] = ACTIONS(4043), - [anon_sym_U_SQUOTE] = ACTIONS(4043), - [anon_sym_u8_SQUOTE] = ACTIONS(4043), - [anon_sym_SQUOTE] = ACTIONS(4043), - [anon_sym_L_DQUOTE] = ACTIONS(4045), - [anon_sym_u_DQUOTE] = ACTIONS(4045), - [anon_sym_U_DQUOTE] = ACTIONS(4045), - [anon_sym_u8_DQUOTE] = ACTIONS(4045), - [anon_sym_DQUOTE] = ACTIONS(4045), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4047), - [anon_sym_R_DQUOTE] = ACTIONS(4049), - [anon_sym_LR_DQUOTE] = ACTIONS(4049), - [anon_sym_uR_DQUOTE] = ACTIONS(4049), - [anon_sym_UR_DQUOTE] = ACTIONS(4049), - [anon_sym_u8R_DQUOTE] = ACTIONS(4049), - [anon_sym_co_await] = ACTIONS(4051), - [anon_sym_new] = ACTIONS(4053), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1640] = { - [sym_expression] = STATE(5182), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4036), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4036), - [sym_call_expression] = STATE(4036), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4036), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4036), - [sym_char_literal] = STATE(5772), - [sym_concatenated_string] = STATE(5772), - [sym_string_literal] = STATE(4262), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(4262), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4036), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4036), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5038), - [anon_sym_BANG] = ACTIONS(4035), - [anon_sym_TILDE] = ACTIONS(4035), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(4037), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4033), - [anon_sym_compl] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(5044), - [anon_sym_PLUS_PLUS] = ACTIONS(5044), - [anon_sym_sizeof] = ACTIONS(4039), + [1635] = { + [sym_expression] = STATE(5254), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -267381,99 +256349,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(4041), - [anon_sym_L_SQUOTE] = ACTIONS(4043), - [anon_sym_u_SQUOTE] = ACTIONS(4043), - [anon_sym_U_SQUOTE] = ACTIONS(4043), - [anon_sym_u8_SQUOTE] = ACTIONS(4043), - [anon_sym_SQUOTE] = ACTIONS(4043), - [anon_sym_L_DQUOTE] = ACTIONS(4045), - [anon_sym_u_DQUOTE] = ACTIONS(4045), - [anon_sym_U_DQUOTE] = ACTIONS(4045), - [anon_sym_u8_DQUOTE] = ACTIONS(4045), - [anon_sym_DQUOTE] = ACTIONS(4045), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4047), - [anon_sym_R_DQUOTE] = ACTIONS(4049), - [anon_sym_LR_DQUOTE] = ACTIONS(4049), - [anon_sym_uR_DQUOTE] = ACTIONS(4049), - [anon_sym_UR_DQUOTE] = ACTIONS(4049), - [anon_sym_u8R_DQUOTE] = ACTIONS(4049), - [anon_sym_co_await] = ACTIONS(4051), - [anon_sym_new] = ACTIONS(4053), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1641] = { - [sym_expression] = STATE(5506), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4036), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4036), - [sym_call_expression] = STATE(4036), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4036), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4036), - [sym_char_literal] = STATE(5772), - [sym_concatenated_string] = STATE(5772), - [sym_string_literal] = STATE(4262), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(4262), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4036), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4036), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5038), - [anon_sym_BANG] = ACTIONS(4035), - [anon_sym_TILDE] = ACTIONS(4035), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(4037), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4033), - [anon_sym_compl] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(5044), - [anon_sym_PLUS_PLUS] = ACTIONS(5044), - [anon_sym_sizeof] = ACTIONS(4039), + [1636] = { + [sym_expression] = STATE(5255), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -267483,99 +256451,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(4041), - [anon_sym_L_SQUOTE] = ACTIONS(4043), - [anon_sym_u_SQUOTE] = ACTIONS(4043), - [anon_sym_U_SQUOTE] = ACTIONS(4043), - [anon_sym_u8_SQUOTE] = ACTIONS(4043), - [anon_sym_SQUOTE] = ACTIONS(4043), - [anon_sym_L_DQUOTE] = ACTIONS(4045), - [anon_sym_u_DQUOTE] = ACTIONS(4045), - [anon_sym_U_DQUOTE] = ACTIONS(4045), - [anon_sym_u8_DQUOTE] = ACTIONS(4045), - [anon_sym_DQUOTE] = ACTIONS(4045), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4047), - [anon_sym_R_DQUOTE] = ACTIONS(4049), - [anon_sym_LR_DQUOTE] = ACTIONS(4049), - [anon_sym_uR_DQUOTE] = ACTIONS(4049), - [anon_sym_UR_DQUOTE] = ACTIONS(4049), - [anon_sym_u8R_DQUOTE] = ACTIONS(4049), - [anon_sym_co_await] = ACTIONS(4051), - [anon_sym_new] = ACTIONS(4053), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1642] = { - [sym_expression] = STATE(5507), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4036), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4036), - [sym_call_expression] = STATE(4036), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4036), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4036), - [sym_char_literal] = STATE(5772), - [sym_concatenated_string] = STATE(5772), - [sym_string_literal] = STATE(4262), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(4262), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4036), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4036), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5038), - [anon_sym_BANG] = ACTIONS(4035), - [anon_sym_TILDE] = ACTIONS(4035), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(4037), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4033), - [anon_sym_compl] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(5044), - [anon_sym_PLUS_PLUS] = ACTIONS(5044), - [anon_sym_sizeof] = ACTIONS(4039), + [1637] = { + [sym_expression] = STATE(5256), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -267585,99 +256553,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(4041), - [anon_sym_L_SQUOTE] = ACTIONS(4043), - [anon_sym_u_SQUOTE] = ACTIONS(4043), - [anon_sym_U_SQUOTE] = ACTIONS(4043), - [anon_sym_u8_SQUOTE] = ACTIONS(4043), - [anon_sym_SQUOTE] = ACTIONS(4043), - [anon_sym_L_DQUOTE] = ACTIONS(4045), - [anon_sym_u_DQUOTE] = ACTIONS(4045), - [anon_sym_U_DQUOTE] = ACTIONS(4045), - [anon_sym_u8_DQUOTE] = ACTIONS(4045), - [anon_sym_DQUOTE] = ACTIONS(4045), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4047), - [anon_sym_R_DQUOTE] = ACTIONS(4049), - [anon_sym_LR_DQUOTE] = ACTIONS(4049), - [anon_sym_uR_DQUOTE] = ACTIONS(4049), - [anon_sym_UR_DQUOTE] = ACTIONS(4049), - [anon_sym_u8R_DQUOTE] = ACTIONS(4049), - [anon_sym_co_await] = ACTIONS(4051), - [anon_sym_new] = ACTIONS(4053), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1643] = { - [sym_expression] = STATE(5509), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4036), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4036), - [sym_call_expression] = STATE(4036), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4036), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4036), - [sym_char_literal] = STATE(5772), - [sym_concatenated_string] = STATE(5772), - [sym_string_literal] = STATE(4262), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(4262), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4036), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4036), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5038), - [anon_sym_BANG] = ACTIONS(4035), - [anon_sym_TILDE] = ACTIONS(4035), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(4037), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4033), - [anon_sym_compl] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(5044), - [anon_sym_PLUS_PLUS] = ACTIONS(5044), - [anon_sym_sizeof] = ACTIONS(4039), + [1638] = { + [sym_expression] = STATE(5258), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -267687,99 +256655,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(4041), - [anon_sym_L_SQUOTE] = ACTIONS(4043), - [anon_sym_u_SQUOTE] = ACTIONS(4043), - [anon_sym_U_SQUOTE] = ACTIONS(4043), - [anon_sym_u8_SQUOTE] = ACTIONS(4043), - [anon_sym_SQUOTE] = ACTIONS(4043), - [anon_sym_L_DQUOTE] = ACTIONS(4045), - [anon_sym_u_DQUOTE] = ACTIONS(4045), - [anon_sym_U_DQUOTE] = ACTIONS(4045), - [anon_sym_u8_DQUOTE] = ACTIONS(4045), - [anon_sym_DQUOTE] = ACTIONS(4045), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4047), - [anon_sym_R_DQUOTE] = ACTIONS(4049), - [anon_sym_LR_DQUOTE] = ACTIONS(4049), - [anon_sym_uR_DQUOTE] = ACTIONS(4049), - [anon_sym_UR_DQUOTE] = ACTIONS(4049), - [anon_sym_u8R_DQUOTE] = ACTIONS(4049), - [anon_sym_co_await] = ACTIONS(4051), - [anon_sym_new] = ACTIONS(4053), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1644] = { - [sym_expression] = STATE(5510), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4036), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4036), - [sym_call_expression] = STATE(4036), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4036), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4036), - [sym_char_literal] = STATE(5772), - [sym_concatenated_string] = STATE(5772), - [sym_string_literal] = STATE(4262), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(4262), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4036), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4036), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5038), - [anon_sym_BANG] = ACTIONS(4035), - [anon_sym_TILDE] = ACTIONS(4035), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(4037), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4033), - [anon_sym_compl] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(5044), - [anon_sym_PLUS_PLUS] = ACTIONS(5044), - [anon_sym_sizeof] = ACTIONS(4039), + [1639] = { + [sym_expression] = STATE(5383), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -267789,99 +256757,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(4041), - [anon_sym_L_SQUOTE] = ACTIONS(4043), - [anon_sym_u_SQUOTE] = ACTIONS(4043), - [anon_sym_U_SQUOTE] = ACTIONS(4043), - [anon_sym_u8_SQUOTE] = ACTIONS(4043), - [anon_sym_SQUOTE] = ACTIONS(4043), - [anon_sym_L_DQUOTE] = ACTIONS(4045), - [anon_sym_u_DQUOTE] = ACTIONS(4045), - [anon_sym_U_DQUOTE] = ACTIONS(4045), - [anon_sym_u8_DQUOTE] = ACTIONS(4045), - [anon_sym_DQUOTE] = ACTIONS(4045), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4047), - [anon_sym_R_DQUOTE] = ACTIONS(4049), - [anon_sym_LR_DQUOTE] = ACTIONS(4049), - [anon_sym_uR_DQUOTE] = ACTIONS(4049), - [anon_sym_UR_DQUOTE] = ACTIONS(4049), - [anon_sym_u8R_DQUOTE] = ACTIONS(4049), - [anon_sym_co_await] = ACTIONS(4051), - [anon_sym_new] = ACTIONS(4053), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1645] = { - [sym_expression] = STATE(5511), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4036), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4036), - [sym_call_expression] = STATE(4036), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4036), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4036), - [sym_char_literal] = STATE(5772), - [sym_concatenated_string] = STATE(5772), - [sym_string_literal] = STATE(4262), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(4262), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4036), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4036), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5038), - [anon_sym_BANG] = ACTIONS(4035), - [anon_sym_TILDE] = ACTIONS(4035), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(4037), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4033), - [anon_sym_compl] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(5044), - [anon_sym_PLUS_PLUS] = ACTIONS(5044), - [anon_sym_sizeof] = ACTIONS(4039), + [1640] = { + [sym_expression] = STATE(5005), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -267891,99 +256859,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(4041), - [anon_sym_L_SQUOTE] = ACTIONS(4043), - [anon_sym_u_SQUOTE] = ACTIONS(4043), - [anon_sym_U_SQUOTE] = ACTIONS(4043), - [anon_sym_u8_SQUOTE] = ACTIONS(4043), - [anon_sym_SQUOTE] = ACTIONS(4043), - [anon_sym_L_DQUOTE] = ACTIONS(4045), - [anon_sym_u_DQUOTE] = ACTIONS(4045), - [anon_sym_U_DQUOTE] = ACTIONS(4045), - [anon_sym_u8_DQUOTE] = ACTIONS(4045), - [anon_sym_DQUOTE] = ACTIONS(4045), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4047), - [anon_sym_R_DQUOTE] = ACTIONS(4049), - [anon_sym_LR_DQUOTE] = ACTIONS(4049), - [anon_sym_uR_DQUOTE] = ACTIONS(4049), - [anon_sym_UR_DQUOTE] = ACTIONS(4049), - [anon_sym_u8R_DQUOTE] = ACTIONS(4049), - [anon_sym_co_await] = ACTIONS(4051), - [anon_sym_new] = ACTIONS(4053), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1646] = { - [sym_expression] = STATE(5512), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4036), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4036), - [sym_call_expression] = STATE(4036), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4036), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4036), - [sym_char_literal] = STATE(5772), - [sym_concatenated_string] = STATE(5772), - [sym_string_literal] = STATE(4262), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(4262), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4036), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4036), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5038), - [anon_sym_BANG] = ACTIONS(4035), - [anon_sym_TILDE] = ACTIONS(4035), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(4037), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4033), - [anon_sym_compl] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(5044), - [anon_sym_PLUS_PLUS] = ACTIONS(5044), - [anon_sym_sizeof] = ACTIONS(4039), + [1641] = { + [sym_expression] = STATE(5386), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -267993,99 +256961,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(4041), - [anon_sym_L_SQUOTE] = ACTIONS(4043), - [anon_sym_u_SQUOTE] = ACTIONS(4043), - [anon_sym_U_SQUOTE] = ACTIONS(4043), - [anon_sym_u8_SQUOTE] = ACTIONS(4043), - [anon_sym_SQUOTE] = ACTIONS(4043), - [anon_sym_L_DQUOTE] = ACTIONS(4045), - [anon_sym_u_DQUOTE] = ACTIONS(4045), - [anon_sym_U_DQUOTE] = ACTIONS(4045), - [anon_sym_u8_DQUOTE] = ACTIONS(4045), - [anon_sym_DQUOTE] = ACTIONS(4045), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4047), - [anon_sym_R_DQUOTE] = ACTIONS(4049), - [anon_sym_LR_DQUOTE] = ACTIONS(4049), - [anon_sym_uR_DQUOTE] = ACTIONS(4049), - [anon_sym_UR_DQUOTE] = ACTIONS(4049), - [anon_sym_u8R_DQUOTE] = ACTIONS(4049), - [anon_sym_co_await] = ACTIONS(4051), - [anon_sym_new] = ACTIONS(4053), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1647] = { - [sym_expression] = STATE(5513), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4036), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4036), - [sym_call_expression] = STATE(4036), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4036), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4036), - [sym_char_literal] = STATE(5772), - [sym_concatenated_string] = STATE(5772), - [sym_string_literal] = STATE(4262), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(4262), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4036), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4036), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5038), - [anon_sym_BANG] = ACTIONS(4035), - [anon_sym_TILDE] = ACTIONS(4035), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(4037), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4033), - [anon_sym_compl] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(5044), - [anon_sym_PLUS_PLUS] = ACTIONS(5044), - [anon_sym_sizeof] = ACTIONS(4039), + [1642] = { + [sym_expression] = STATE(5387), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -268095,99 +257063,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(4041), - [anon_sym_L_SQUOTE] = ACTIONS(4043), - [anon_sym_u_SQUOTE] = ACTIONS(4043), - [anon_sym_U_SQUOTE] = ACTIONS(4043), - [anon_sym_u8_SQUOTE] = ACTIONS(4043), - [anon_sym_SQUOTE] = ACTIONS(4043), - [anon_sym_L_DQUOTE] = ACTIONS(4045), - [anon_sym_u_DQUOTE] = ACTIONS(4045), - [anon_sym_U_DQUOTE] = ACTIONS(4045), - [anon_sym_u8_DQUOTE] = ACTIONS(4045), - [anon_sym_DQUOTE] = ACTIONS(4045), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4047), - [anon_sym_R_DQUOTE] = ACTIONS(4049), - [anon_sym_LR_DQUOTE] = ACTIONS(4049), - [anon_sym_uR_DQUOTE] = ACTIONS(4049), - [anon_sym_UR_DQUOTE] = ACTIONS(4049), - [anon_sym_u8R_DQUOTE] = ACTIONS(4049), - [anon_sym_co_await] = ACTIONS(4051), - [anon_sym_new] = ACTIONS(4053), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1648] = { - [sym_expression] = STATE(5514), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4036), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4036), - [sym_call_expression] = STATE(4036), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4036), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4036), - [sym_char_literal] = STATE(5772), - [sym_concatenated_string] = STATE(5772), - [sym_string_literal] = STATE(4262), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(4262), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4036), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4036), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5038), - [anon_sym_BANG] = ACTIONS(4035), - [anon_sym_TILDE] = ACTIONS(4035), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(4037), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4033), - [anon_sym_compl] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(5044), - [anon_sym_PLUS_PLUS] = ACTIONS(5044), - [anon_sym_sizeof] = ACTIONS(4039), + [1643] = { + [sym_expression] = STATE(5268), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -268197,298 +257165,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(4041), - [anon_sym_L_SQUOTE] = ACTIONS(4043), - [anon_sym_u_SQUOTE] = ACTIONS(4043), - [anon_sym_U_SQUOTE] = ACTIONS(4043), - [anon_sym_u8_SQUOTE] = ACTIONS(4043), - [anon_sym_SQUOTE] = ACTIONS(4043), - [anon_sym_L_DQUOTE] = ACTIONS(4045), - [anon_sym_u_DQUOTE] = ACTIONS(4045), - [anon_sym_U_DQUOTE] = ACTIONS(4045), - [anon_sym_u8_DQUOTE] = ACTIONS(4045), - [anon_sym_DQUOTE] = ACTIONS(4045), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4047), - [anon_sym_R_DQUOTE] = ACTIONS(4049), - [anon_sym_LR_DQUOTE] = ACTIONS(4049), - [anon_sym_uR_DQUOTE] = ACTIONS(4049), - [anon_sym_UR_DQUOTE] = ACTIONS(4049), - [anon_sym_u8R_DQUOTE] = ACTIONS(4049), - [anon_sym_co_await] = ACTIONS(4051), - [anon_sym_new] = ACTIONS(4053), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1649] = { - [sym_expression] = STATE(5718), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9595), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [sym_identifier] = ACTIONS(4059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4063), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), - }, - [1650] = { - [sym_expression] = STATE(3048), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_compl] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(2341), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2361), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1651] = { - [sym_expression] = STATE(5954), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1644] = { + [sym_expression] = STATE(5390), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -268520,7 +257284,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -268534,170 +257298,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1652] = { - [sym_expression] = STATE(5184), - [sym_expression_not_binary] = STATE(5370), - [sym_conditional_expression] = STATE(5364), - [sym_assignment_expression] = STATE(5364), - [sym_pointer_expression] = STATE(3376), - [sym_unary_expression] = STATE(5364), - [sym_binary_expression] = STATE(5370), - [sym_update_expression] = STATE(5364), - [sym_cast_expression] = STATE(5364), - [sym_sizeof_expression] = STATE(5364), - [sym_alignof_expression] = STATE(5364), - [sym_offsetof_expression] = STATE(5364), - [sym_generic_expression] = STATE(5364), - [sym_subscript_expression] = STATE(3376), - [sym_call_expression] = STATE(3376), - [sym_gnu_asm_expression] = STATE(5364), - [sym_field_expression] = STATE(3376), - [sym_compound_literal_expression] = STATE(5364), - [sym_parenthesized_expression] = STATE(3376), - [sym_char_literal] = STATE(5241), - [sym_concatenated_string] = STATE(5241), - [sym_string_literal] = STATE(3576), - [sym_null] = STATE(5364), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9412), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5364), - [sym_raw_string_literal] = STATE(3576), - [sym_co_await_expression] = STATE(5364), - [sym_new_expression] = STATE(5364), - [sym_delete_expression] = STATE(5364), - [sym_requires_clause] = STATE(5364), - [sym_requires_expression] = STATE(5364), - [sym_lambda_expression] = STATE(5364), - [sym_lambda_capture_specifier] = STATE(7332), - [sym_fold_expression] = STATE(5364), - [sym_parameter_pack_expansion] = STATE(5364), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7117), - [sym_qualified_identifier] = STATE(3376), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3376), - [sym_semgrep_ellipsis] = STATE(5370), - [sym_deep_ellipsis] = STATE(5370), - [sym_identifier] = ACTIONS(4984), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), - [anon_sym_LPAREN2] = ACTIONS(5124), - [anon_sym_BANG] = ACTIONS(3774), - [anon_sym_TILDE] = ACTIONS(3774), - [anon_sym_DASH] = ACTIONS(3772), - [anon_sym_PLUS] = ACTIONS(3772), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(3776), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3780), - [anon_sym_not] = ACTIONS(3772), - [anon_sym_compl] = ACTIONS(3772), - [anon_sym_DASH_DASH] = ACTIONS(4988), - [anon_sym_PLUS_PLUS] = ACTIONS(4988), - [anon_sym_sizeof] = ACTIONS(3782), - [anon_sym___alignof__] = ACTIONS(3784), - [anon_sym___alignof] = ACTIONS(3784), - [anon_sym__alignof] = ACTIONS(3784), - [anon_sym_alignof] = ACTIONS(3784), - [anon_sym__Alignof] = ACTIONS(3784), - [anon_sym_offsetof] = ACTIONS(3786), - [anon_sym__Generic] = ACTIONS(3788), - [anon_sym_asm] = ACTIONS(3790), - [anon_sym___asm__] = ACTIONS(3790), - [sym_number_literal] = ACTIONS(3792), - [anon_sym_L_SQUOTE] = ACTIONS(3794), - [anon_sym_u_SQUOTE] = ACTIONS(3794), - [anon_sym_U_SQUOTE] = ACTIONS(3794), - [anon_sym_u8_SQUOTE] = ACTIONS(3794), - [anon_sym_SQUOTE] = ACTIONS(3794), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_true] = ACTIONS(3798), - [sym_false] = ACTIONS(3798), - [anon_sym_NULL] = ACTIONS(3800), - [anon_sym_nullptr] = ACTIONS(3800), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3802), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - [anon_sym_co_await] = ACTIONS(3806), - [anon_sym_new] = ACTIONS(3808), - [anon_sym_requires] = ACTIONS(3810), - [sym_this] = ACTIONS(3798), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3812), - [sym_semgrep_named_ellipsis] = ACTIONS(3814), - }, - [1653] = { - [sym_expression] = STATE(5932), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), + [1645] = { + [sym_expression] = STATE(5272), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -268724,77 +257386,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1654] = { - [sym_expression] = STATE(5937), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1646] = { + [sym_expression] = STATE(5219), + [sym_expression_not_binary] = STATE(5636), + [sym_conditional_expression] = STATE(5626), + [sym_assignment_expression] = STATE(5626), + [sym_pointer_expression] = STATE(4008), + [sym_unary_expression] = STATE(5626), + [sym_binary_expression] = STATE(5636), + [sym_update_expression] = STATE(5626), + [sym_cast_expression] = STATE(5626), + [sym_sizeof_expression] = STATE(5626), + [sym_alignof_expression] = STATE(5626), + [sym_offsetof_expression] = STATE(5626), + [sym_generic_expression] = STATE(5626), + [sym_subscript_expression] = STATE(4008), + [sym_call_expression] = STATE(4008), + [sym_gnu_asm_expression] = STATE(5626), + [sym_field_expression] = STATE(4008), + [sym_compound_literal_expression] = STATE(5626), + [sym_parenthesized_expression] = STATE(4008), + [sym_char_literal] = STATE(5550), + [sym_concatenated_string] = STATE(5550), + [sym_string_literal] = STATE(4242), + [sym_null] = STATE(5626), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8965), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5626), + [sym_raw_string_literal] = STATE(4242), + [sym_co_await_expression] = STATE(5626), + [sym_new_expression] = STATE(5626), + [sym_delete_expression] = STATE(5626), + [sym_requires_clause] = STATE(5626), + [sym_requires_expression] = STATE(5626), + [sym_lambda_expression] = STATE(5626), + [sym_lambda_capture_specifier] = STATE(6901), + [sym_fold_expression] = STATE(5626), + [sym_parameter_pack_expansion] = STATE(5626), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6594), + [sym_qualified_identifier] = STATE(4008), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4008), + [sym_semgrep_ellipsis] = STATE(5636), + [sym_deep_ellipsis] = STATE(5636), + [sym_identifier] = ACTIONS(4236), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4240), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym___asm__] = ACTIONS(3346), + [sym_number_literal] = ACTIONS(3348), + [anon_sym_L_SQUOTE] = ACTIONS(3350), + [anon_sym_u_SQUOTE] = ACTIONS(3350), + [anon_sym_U_SQUOTE] = ACTIONS(3350), + [anon_sym_u8_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_L_DQUOTE] = ACTIONS(3352), + [anon_sym_u_DQUOTE] = ACTIONS(3352), + [anon_sym_U_DQUOTE] = ACTIONS(3352), + [anon_sym_u8_DQUOTE] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3356), + [anon_sym_nullptr] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_R_DQUOTE] = ACTIONS(3368), + [anon_sym_LR_DQUOTE] = ACTIONS(3368), + [anon_sym_uR_DQUOTE] = ACTIONS(3368), + [anon_sym_UR_DQUOTE] = ACTIONS(3368), + [anon_sym_u8R_DQUOTE] = ACTIONS(3368), + [anon_sym_co_await] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3374), + [sym_this] = ACTIONS(3354), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3376), + [sym_semgrep_named_ellipsis] = ACTIONS(3378), + }, + [1647] = { + [sym_expression] = STATE(5008), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -268826,7 +257590,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -268840,165 +257604,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1655] = { - [sym_expression] = STATE(5940), - [sym_expression_not_binary] = STATE(6169), - [sym_conditional_expression] = STATE(6267), - [sym_assignment_expression] = STATE(6267), - [sym_pointer_expression] = STATE(4422), - [sym_unary_expression] = STATE(6267), - [sym_binary_expression] = STATE(6169), - [sym_update_expression] = STATE(6267), - [sym_cast_expression] = STATE(6267), - [sym_sizeof_expression] = STATE(6267), - [sym_alignof_expression] = STATE(6267), - [sym_offsetof_expression] = STATE(6267), - [sym_generic_expression] = STATE(6267), - [sym_subscript_expression] = STATE(4422), - [sym_call_expression] = STATE(4422), - [sym_gnu_asm_expression] = STATE(6267), - [sym_field_expression] = STATE(4422), - [sym_compound_literal_expression] = STATE(6267), - [sym_parenthesized_expression] = STATE(4422), - [sym_char_literal] = STATE(6147), - [sym_concatenated_string] = STATE(6147), - [sym_string_literal] = STATE(4563), - [sym_null] = STATE(6267), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9242), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6267), - [sym_raw_string_literal] = STATE(4563), - [sym_co_await_expression] = STATE(6267), - [sym_new_expression] = STATE(6267), - [sym_delete_expression] = STATE(6267), - [sym_requires_clause] = STATE(6267), - [sym_requires_expression] = STATE(6267), - [sym_lambda_expression] = STATE(6267), - [sym_lambda_capture_specifier] = STATE(7263), - [sym_fold_expression] = STATE(6267), - [sym_parameter_pack_expansion] = STATE(6267), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4422), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4422), - [sym_semgrep_ellipsis] = STATE(6169), - [sym_deep_ellipsis] = STATE(6169), - [sym_identifier] = ACTIONS(4112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5054), - [anon_sym_LPAREN2] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_TILDE] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4122), - [anon_sym_not] = ACTIONS(4114), - [anon_sym_compl] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(5056), - [anon_sym_PLUS_PLUS] = ACTIONS(5056), - [anon_sym_sizeof] = ACTIONS(4124), - [anon_sym___alignof__] = ACTIONS(4126), - [anon_sym___alignof] = ACTIONS(4126), - [anon_sym__alignof] = ACTIONS(4126), - [anon_sym_alignof] = ACTIONS(4126), - [anon_sym__Alignof] = ACTIONS(4126), - [anon_sym_offsetof] = ACTIONS(4128), - [anon_sym__Generic] = ACTIONS(4130), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4136), - [anon_sym_u_SQUOTE] = ACTIONS(4136), - [anon_sym_U_SQUOTE] = ACTIONS(4136), - [anon_sym_u8_SQUOTE] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_L_DQUOTE] = ACTIONS(4138), - [anon_sym_u_DQUOTE] = ACTIONS(4138), - [anon_sym_U_DQUOTE] = ACTIONS(4138), - [anon_sym_u8_DQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [anon_sym_NULL] = ACTIONS(4142), - [anon_sym_nullptr] = ACTIONS(4142), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4150), - [anon_sym_requires] = ACTIONS(4152), - [sym_this] = ACTIONS(4140), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4154), - [sym_semgrep_named_ellipsis] = ACTIONS(4156), - }, - [1656] = { - [sym_expression] = STATE(6018), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1648] = { + [sym_expression] = STATE(4737), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -269030,7 +257692,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -269044,63 +257706,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1657] = { - [sym_expression] = STATE(5951), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1649] = { + [sym_expression] = STATE(5569), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(5434), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -269132,7 +257794,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -269146,68 +257808,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1658] = { - [sym_expression] = STATE(5964), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1650] = { + [sym_expression] = STATE(5397), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -269234,77 +257896,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1659] = { - [sym_expression] = STATE(5517), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1651] = { + [sym_expression] = STATE(5400), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -269336,7 +257998,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -269350,63 +258012,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1660] = { - [sym_expression] = STATE(5976), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1652] = { + [sym_expression] = STATE(5401), + [sym_expression_not_binary] = STATE(5685), + [sym_conditional_expression] = STATE(5675), + [sym_assignment_expression] = STATE(5675), + [sym_pointer_expression] = STATE(4201), + [sym_unary_expression] = STATE(5675), + [sym_binary_expression] = STATE(5685), + [sym_update_expression] = STATE(5675), + [sym_cast_expression] = STATE(5675), + [sym_sizeof_expression] = STATE(5675), + [sym_alignof_expression] = STATE(5675), + [sym_offsetof_expression] = STATE(5675), + [sym_generic_expression] = STATE(5675), + [sym_subscript_expression] = STATE(4201), + [sym_call_expression] = STATE(4201), + [sym_gnu_asm_expression] = STATE(5675), + [sym_field_expression] = STATE(4201), + [sym_compound_literal_expression] = STATE(5675), + [sym_parenthesized_expression] = STATE(4201), + [sym_char_literal] = STATE(5600), + [sym_concatenated_string] = STATE(5600), + [sym_string_literal] = STATE(4359), + [sym_null] = STATE(5675), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9034), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5675), + [sym_raw_string_literal] = STATE(4359), + [sym_co_await_expression] = STATE(5675), + [sym_new_expression] = STATE(5675), + [sym_delete_expression] = STATE(5675), + [sym_requires_clause] = STATE(5675), + [sym_requires_expression] = STATE(5675), + [sym_lambda_expression] = STATE(5675), + [sym_lambda_capture_specifier] = STATE(6898), + [sym_fold_expression] = STATE(5675), + [sym_parameter_pack_expansion] = STATE(5675), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4201), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4201), + [sym_semgrep_ellipsis] = STATE(5685), + [sym_deep_ellipsis] = STATE(5685), + [sym_identifier] = ACTIONS(4242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4954), + [anon_sym_LPAREN2] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_TILDE] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(4248), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4252), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_sizeof] = ACTIONS(4254), + [anon_sym___alignof__] = ACTIONS(4256), + [anon_sym___alignof] = ACTIONS(4256), + [anon_sym__alignof] = ACTIONS(4256), + [anon_sym_alignof] = ACTIONS(4256), + [anon_sym__Alignof] = ACTIONS(4256), + [anon_sym_offsetof] = ACTIONS(4258), + [anon_sym__Generic] = ACTIONS(4260), + [anon_sym_asm] = ACTIONS(4262), + [anon_sym___asm__] = ACTIONS(4262), + [sym_number_literal] = ACTIONS(4264), + [anon_sym_L_SQUOTE] = ACTIONS(4266), + [anon_sym_u_SQUOTE] = ACTIONS(4266), + [anon_sym_U_SQUOTE] = ACTIONS(4266), + [anon_sym_u8_SQUOTE] = ACTIONS(4266), + [anon_sym_SQUOTE] = ACTIONS(4266), + [anon_sym_L_DQUOTE] = ACTIONS(4268), + [anon_sym_u_DQUOTE] = ACTIONS(4268), + [anon_sym_U_DQUOTE] = ACTIONS(4268), + [anon_sym_u8_DQUOTE] = ACTIONS(4268), + [anon_sym_DQUOTE] = ACTIONS(4268), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4272), + [anon_sym_nullptr] = ACTIONS(4272), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4274), + [anon_sym_R_DQUOTE] = ACTIONS(4276), + [anon_sym_LR_DQUOTE] = ACTIONS(4276), + [anon_sym_uR_DQUOTE] = ACTIONS(4276), + [anon_sym_UR_DQUOTE] = ACTIONS(4276), + [anon_sym_u8R_DQUOTE] = ACTIONS(4276), + [anon_sym_co_await] = ACTIONS(4278), + [anon_sym_new] = ACTIONS(4280), + [anon_sym_requires] = ACTIONS(4282), + [sym_this] = ACTIONS(4270), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4284), + [sym_semgrep_named_ellipsis] = ACTIONS(4286), + }, + [1653] = { + [sym_expression] = STATE(5404), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -269438,7 +258202,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -269452,63 +258216,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1661] = { - [sym_expression] = STATE(5977), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1654] = { + [sym_expression] = STATE(5024), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -269540,7 +258304,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -269554,63 +258318,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1662] = { - [sym_expression] = STATE(5981), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1655] = { + [sym_expression] = STATE(5405), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -269642,7 +258406,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -269656,68 +258420,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1663] = { - [sym_expression] = STATE(5519), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1656] = { + [sym_expression] = STATE(5406), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -269744,77 +258508,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1664] = { - [sym_expression] = STATE(5238), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1657] = { + [sym_expression] = STATE(5407), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -269846,7 +258610,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -269860,68 +258624,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1665] = { - [sym_expression] = STATE(6017), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), + [1658] = { + [sym_expression] = STATE(5027), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -269948,82 +258712,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), + [anon_sym_co_await] = ACTIONS(157), [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1666] = { - [sym_expression] = STATE(6025), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1659] = { + [sym_expression] = STATE(5417), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -270050,179 +258814,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1667] = { - [sym_expression] = STATE(6028), - [sym_expression_not_binary] = STATE(6169), - [sym_conditional_expression] = STATE(6267), - [sym_assignment_expression] = STATE(6267), - [sym_pointer_expression] = STATE(4422), - [sym_unary_expression] = STATE(6267), - [sym_binary_expression] = STATE(6169), - [sym_update_expression] = STATE(6267), - [sym_cast_expression] = STATE(6267), - [sym_sizeof_expression] = STATE(6267), - [sym_alignof_expression] = STATE(6267), - [sym_offsetof_expression] = STATE(6267), - [sym_generic_expression] = STATE(6267), - [sym_subscript_expression] = STATE(4422), - [sym_call_expression] = STATE(4422), - [sym_gnu_asm_expression] = STATE(6267), - [sym_field_expression] = STATE(4422), - [sym_compound_literal_expression] = STATE(6267), - [sym_parenthesized_expression] = STATE(4422), - [sym_char_literal] = STATE(6147), - [sym_concatenated_string] = STATE(6147), - [sym_string_literal] = STATE(4563), - [sym_null] = STATE(6267), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9242), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6267), - [sym_raw_string_literal] = STATE(4563), - [sym_co_await_expression] = STATE(6267), - [sym_new_expression] = STATE(6267), - [sym_delete_expression] = STATE(6267), - [sym_requires_clause] = STATE(6267), - [sym_requires_expression] = STATE(6267), - [sym_lambda_expression] = STATE(6267), - [sym_lambda_capture_specifier] = STATE(7263), - [sym_fold_expression] = STATE(6267), - [sym_parameter_pack_expansion] = STATE(6267), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4422), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4422), - [sym_semgrep_ellipsis] = STATE(6169), - [sym_deep_ellipsis] = STATE(6169), - [sym_identifier] = ACTIONS(4112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5054), - [anon_sym_LPAREN2] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_TILDE] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4122), - [anon_sym_not] = ACTIONS(4114), - [anon_sym_compl] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(5056), - [anon_sym_PLUS_PLUS] = ACTIONS(5056), - [anon_sym_sizeof] = ACTIONS(4124), - [anon_sym___alignof__] = ACTIONS(4126), - [anon_sym___alignof] = ACTIONS(4126), - [anon_sym__alignof] = ACTIONS(4126), - [anon_sym_alignof] = ACTIONS(4126), - [anon_sym__Alignof] = ACTIONS(4126), - [anon_sym_offsetof] = ACTIONS(4128), - [anon_sym__Generic] = ACTIONS(4130), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4136), - [anon_sym_u_SQUOTE] = ACTIONS(4136), - [anon_sym_U_SQUOTE] = ACTIONS(4136), - [anon_sym_u8_SQUOTE] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_L_DQUOTE] = ACTIONS(4138), - [anon_sym_u_DQUOTE] = ACTIONS(4138), - [anon_sym_U_DQUOTE] = ACTIONS(4138), - [anon_sym_u8_DQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [anon_sym_NULL] = ACTIONS(4142), - [anon_sym_nullptr] = ACTIONS(4142), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4150), - [anon_sym_requires] = ACTIONS(4152), - [sym_this] = ACTIONS(4140), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4154), - [sym_semgrep_named_ellipsis] = ACTIONS(4156), - }, - [1668] = { - [sym_expression] = STATE(6033), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1660] = { + [sym_expression] = STATE(5421), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(5436), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -270254,7 +258916,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -270268,63 +258930,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1669] = { - [sym_expression] = STATE(6036), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1661] = { + [sym_expression] = STATE(5422), + [sym_expression_not_binary] = STATE(5685), + [sym_conditional_expression] = STATE(5675), + [sym_assignment_expression] = STATE(5675), + [sym_pointer_expression] = STATE(4201), + [sym_unary_expression] = STATE(5675), + [sym_binary_expression] = STATE(5685), + [sym_update_expression] = STATE(5675), + [sym_cast_expression] = STATE(5675), + [sym_sizeof_expression] = STATE(5675), + [sym_alignof_expression] = STATE(5675), + [sym_offsetof_expression] = STATE(5675), + [sym_generic_expression] = STATE(5675), + [sym_subscript_expression] = STATE(4201), + [sym_call_expression] = STATE(4201), + [sym_gnu_asm_expression] = STATE(5675), + [sym_field_expression] = STATE(4201), + [sym_compound_literal_expression] = STATE(5675), + [sym_parenthesized_expression] = STATE(4201), + [sym_char_literal] = STATE(5600), + [sym_concatenated_string] = STATE(5600), + [sym_string_literal] = STATE(4359), + [sym_null] = STATE(5675), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9034), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5675), + [sym_raw_string_literal] = STATE(4359), + [sym_co_await_expression] = STATE(5675), + [sym_new_expression] = STATE(5675), + [sym_delete_expression] = STATE(5675), + [sym_requires_clause] = STATE(5675), + [sym_requires_expression] = STATE(5675), + [sym_lambda_expression] = STATE(5675), + [sym_lambda_capture_specifier] = STATE(6898), + [sym_fold_expression] = STATE(5675), + [sym_parameter_pack_expansion] = STATE(5675), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4201), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4201), + [sym_semgrep_ellipsis] = STATE(5685), + [sym_deep_ellipsis] = STATE(5685), + [sym_identifier] = ACTIONS(4242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4954), + [anon_sym_LPAREN2] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_TILDE] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(4248), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4252), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_sizeof] = ACTIONS(4254), + [anon_sym___alignof__] = ACTIONS(4256), + [anon_sym___alignof] = ACTIONS(4256), + [anon_sym__alignof] = ACTIONS(4256), + [anon_sym_alignof] = ACTIONS(4256), + [anon_sym__Alignof] = ACTIONS(4256), + [anon_sym_offsetof] = ACTIONS(4258), + [anon_sym__Generic] = ACTIONS(4260), + [anon_sym_asm] = ACTIONS(4262), + [anon_sym___asm__] = ACTIONS(4262), + [sym_number_literal] = ACTIONS(4264), + [anon_sym_L_SQUOTE] = ACTIONS(4266), + [anon_sym_u_SQUOTE] = ACTIONS(4266), + [anon_sym_U_SQUOTE] = ACTIONS(4266), + [anon_sym_u8_SQUOTE] = ACTIONS(4266), + [anon_sym_SQUOTE] = ACTIONS(4266), + [anon_sym_L_DQUOTE] = ACTIONS(4268), + [anon_sym_u_DQUOTE] = ACTIONS(4268), + [anon_sym_U_DQUOTE] = ACTIONS(4268), + [anon_sym_u8_DQUOTE] = ACTIONS(4268), + [anon_sym_DQUOTE] = ACTIONS(4268), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4272), + [anon_sym_nullptr] = ACTIONS(4272), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4274), + [anon_sym_R_DQUOTE] = ACTIONS(4276), + [anon_sym_LR_DQUOTE] = ACTIONS(4276), + [anon_sym_uR_DQUOTE] = ACTIONS(4276), + [anon_sym_UR_DQUOTE] = ACTIONS(4276), + [anon_sym_u8R_DQUOTE] = ACTIONS(4276), + [anon_sym_co_await] = ACTIONS(4278), + [anon_sym_new] = ACTIONS(4280), + [anon_sym_requires] = ACTIONS(4282), + [sym_this] = ACTIONS(4270), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4284), + [sym_semgrep_named_ellipsis] = ACTIONS(4286), + }, + [1662] = { + [sym_expression] = STATE(5427), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -270356,7 +259120,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -270370,63 +259134,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1670] = { - [sym_expression] = STATE(5535), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1663] = { + [sym_expression] = STATE(5044), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -270458,7 +259222,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -270472,63 +259236,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1671] = { - [sym_expression] = STATE(6038), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1664] = { + [sym_expression] = STATE(5429), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -270560,7 +259324,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -270574,68 +259338,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1672] = { - [sym_expression] = STATE(6039), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1665] = { + [sym_expression] = STATE(5430), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -270662,77 +259426,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1673] = { - [sym_expression] = STATE(6040), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1666] = { + [sym_expression] = STATE(5431), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -270764,7 +259528,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -270778,63 +259542,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1674] = { - [sym_expression] = STATE(5539), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1667] = { + [sym_expression] = STATE(5046), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -270866,7 +259630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -270880,170 +259644,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1675] = { - [sym_expression] = STATE(5749), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9595), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [sym_identifier] = ACTIONS(4059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4063), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), + [1668] = { + [sym_expression] = STATE(4890), + [sym_expression_not_binary] = STATE(5098), + [sym_conditional_expression] = STATE(5096), + [sym_assignment_expression] = STATE(5096), + [sym_pointer_expression] = STATE(3493), + [sym_unary_expression] = STATE(5096), + [sym_binary_expression] = STATE(5098), + [sym_update_expression] = STATE(5096), + [sym_cast_expression] = STATE(5096), + [sym_sizeof_expression] = STATE(5096), + [sym_alignof_expression] = STATE(5096), + [sym_offsetof_expression] = STATE(5096), + [sym_generic_expression] = STATE(5096), + [sym_subscript_expression] = STATE(3493), + [sym_call_expression] = STATE(3493), + [sym_gnu_asm_expression] = STATE(5096), + [sym_field_expression] = STATE(3493), + [sym_compound_literal_expression] = STATE(5096), + [sym_parenthesized_expression] = STATE(3493), + [sym_char_literal] = STATE(4944), + [sym_concatenated_string] = STATE(4944), + [sym_string_literal] = STATE(3577), + [sym_null] = STATE(5096), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9068), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5096), + [sym_raw_string_literal] = STATE(3577), + [sym_co_await_expression] = STATE(5096), + [sym_new_expression] = STATE(5096), + [sym_delete_expression] = STATE(5096), + [sym_requires_clause] = STATE(5096), + [sym_requires_expression] = STATE(5096), + [sym_lambda_expression] = STATE(5096), + [sym_lambda_capture_specifier] = STATE(6837), + [sym_fold_expression] = STATE(5096), + [sym_parameter_pack_expansion] = STATE(5096), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6665), + [sym_qualified_identifier] = STATE(3493), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3493), + [sym_semgrep_ellipsis] = STATE(5098), + [sym_deep_ellipsis] = STATE(5098), + [sym_identifier] = ACTIONS(4980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4982), + [anon_sym_LPAREN2] = ACTIONS(5040), + [anon_sym_BANG] = ACTIONS(3960), + [anon_sym_TILDE] = ACTIONS(3960), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_STAR] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(3962), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3966), + [anon_sym_not] = ACTIONS(3958), + [anon_sym_compl] = ACTIONS(3958), + [anon_sym_DASH_DASH] = ACTIONS(4984), + [anon_sym_PLUS_PLUS] = ACTIONS(4984), + [anon_sym_sizeof] = ACTIONS(3968), + [anon_sym___alignof__] = ACTIONS(3970), + [anon_sym___alignof] = ACTIONS(3970), + [anon_sym__alignof] = ACTIONS(3970), + [anon_sym_alignof] = ACTIONS(3970), + [anon_sym__Alignof] = ACTIONS(3970), + [anon_sym_offsetof] = ACTIONS(3972), + [anon_sym__Generic] = ACTIONS(3974), + [anon_sym_asm] = ACTIONS(3976), + [anon_sym___asm__] = ACTIONS(3976), + [sym_number_literal] = ACTIONS(3978), + [anon_sym_L_SQUOTE] = ACTIONS(3980), + [anon_sym_u_SQUOTE] = ACTIONS(3980), + [anon_sym_U_SQUOTE] = ACTIONS(3980), + [anon_sym_u8_SQUOTE] = ACTIONS(3980), + [anon_sym_SQUOTE] = ACTIONS(3980), + [anon_sym_L_DQUOTE] = ACTIONS(3982), + [anon_sym_u_DQUOTE] = ACTIONS(3982), + [anon_sym_U_DQUOTE] = ACTIONS(3982), + [anon_sym_u8_DQUOTE] = ACTIONS(3982), + [anon_sym_DQUOTE] = ACTIONS(3982), + [sym_true] = ACTIONS(3984), + [sym_false] = ACTIONS(3984), + [anon_sym_NULL] = ACTIONS(3986), + [anon_sym_nullptr] = ACTIONS(3986), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(3988), + [anon_sym_R_DQUOTE] = ACTIONS(3990), + [anon_sym_LR_DQUOTE] = ACTIONS(3990), + [anon_sym_uR_DQUOTE] = ACTIONS(3990), + [anon_sym_UR_DQUOTE] = ACTIONS(3990), + [anon_sym_u8R_DQUOTE] = ACTIONS(3990), + [anon_sym_co_await] = ACTIONS(3992), + [anon_sym_new] = ACTIONS(3994), + [anon_sym_requires] = ACTIONS(3996), + [sym_this] = ACTIONS(3984), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3998), + [sym_semgrep_named_ellipsis] = ACTIONS(4000), }, - [1676] = { - [sym_expression] = STATE(6078), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), + [1669] = { + [sym_expression] = STATE(5435), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -271070,77 +259834,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1677] = { - [sym_expression] = STATE(6082), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1670] = { + [sym_expression] = STATE(5438), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -271172,7 +259936,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -271186,165 +259950,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1678] = { - [sym_expression] = STATE(6083), - [sym_expression_not_binary] = STATE(6169), - [sym_conditional_expression] = STATE(6267), - [sym_assignment_expression] = STATE(6267), - [sym_pointer_expression] = STATE(4422), - [sym_unary_expression] = STATE(6267), - [sym_binary_expression] = STATE(6169), - [sym_update_expression] = STATE(6267), - [sym_cast_expression] = STATE(6267), - [sym_sizeof_expression] = STATE(6267), - [sym_alignof_expression] = STATE(6267), - [sym_offsetof_expression] = STATE(6267), - [sym_generic_expression] = STATE(6267), - [sym_subscript_expression] = STATE(4422), - [sym_call_expression] = STATE(4422), - [sym_gnu_asm_expression] = STATE(6267), - [sym_field_expression] = STATE(4422), - [sym_compound_literal_expression] = STATE(6267), - [sym_parenthesized_expression] = STATE(4422), - [sym_char_literal] = STATE(6147), - [sym_concatenated_string] = STATE(6147), - [sym_string_literal] = STATE(4563), - [sym_null] = STATE(6267), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9242), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6267), - [sym_raw_string_literal] = STATE(4563), - [sym_co_await_expression] = STATE(6267), - [sym_new_expression] = STATE(6267), - [sym_delete_expression] = STATE(6267), - [sym_requires_clause] = STATE(6267), - [sym_requires_expression] = STATE(6267), - [sym_lambda_expression] = STATE(6267), - [sym_lambda_capture_specifier] = STATE(7263), - [sym_fold_expression] = STATE(6267), - [sym_parameter_pack_expansion] = STATE(6267), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4422), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4422), - [sym_semgrep_ellipsis] = STATE(6169), - [sym_deep_ellipsis] = STATE(6169), - [sym_identifier] = ACTIONS(4112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5054), - [anon_sym_LPAREN2] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_TILDE] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4122), - [anon_sym_not] = ACTIONS(4114), - [anon_sym_compl] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(5056), - [anon_sym_PLUS_PLUS] = ACTIONS(5056), - [anon_sym_sizeof] = ACTIONS(4124), - [anon_sym___alignof__] = ACTIONS(4126), - [anon_sym___alignof] = ACTIONS(4126), - [anon_sym__alignof] = ACTIONS(4126), - [anon_sym_alignof] = ACTIONS(4126), - [anon_sym__Alignof] = ACTIONS(4126), - [anon_sym_offsetof] = ACTIONS(4128), - [anon_sym__Generic] = ACTIONS(4130), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4136), - [anon_sym_u_SQUOTE] = ACTIONS(4136), - [anon_sym_U_SQUOTE] = ACTIONS(4136), - [anon_sym_u8_SQUOTE] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_L_DQUOTE] = ACTIONS(4138), - [anon_sym_u_DQUOTE] = ACTIONS(4138), - [anon_sym_U_DQUOTE] = ACTIONS(4138), - [anon_sym_u8_DQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [anon_sym_NULL] = ACTIONS(4142), - [anon_sym_nullptr] = ACTIONS(4142), + [1671] = { + [sym_expression] = STATE(5439), + [sym_expression_not_binary] = STATE(5685), + [sym_conditional_expression] = STATE(5675), + [sym_assignment_expression] = STATE(5675), + [sym_pointer_expression] = STATE(4201), + [sym_unary_expression] = STATE(5675), + [sym_binary_expression] = STATE(5685), + [sym_update_expression] = STATE(5675), + [sym_cast_expression] = STATE(5675), + [sym_sizeof_expression] = STATE(5675), + [sym_alignof_expression] = STATE(5675), + [sym_offsetof_expression] = STATE(5675), + [sym_generic_expression] = STATE(5675), + [sym_subscript_expression] = STATE(4201), + [sym_call_expression] = STATE(4201), + [sym_gnu_asm_expression] = STATE(5675), + [sym_field_expression] = STATE(4201), + [sym_compound_literal_expression] = STATE(5675), + [sym_parenthesized_expression] = STATE(4201), + [sym_char_literal] = STATE(5600), + [sym_concatenated_string] = STATE(5600), + [sym_string_literal] = STATE(4359), + [sym_null] = STATE(5675), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9034), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5675), + [sym_raw_string_literal] = STATE(4359), + [sym_co_await_expression] = STATE(5675), + [sym_new_expression] = STATE(5675), + [sym_delete_expression] = STATE(5675), + [sym_requires_clause] = STATE(5675), + [sym_requires_expression] = STATE(5675), + [sym_lambda_expression] = STATE(5675), + [sym_lambda_capture_specifier] = STATE(6898), + [sym_fold_expression] = STATE(5675), + [sym_parameter_pack_expansion] = STATE(5675), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4201), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4201), + [sym_semgrep_ellipsis] = STATE(5685), + [sym_deep_ellipsis] = STATE(5685), + [sym_identifier] = ACTIONS(4242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4954), + [anon_sym_LPAREN2] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_TILDE] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(4248), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4252), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_sizeof] = ACTIONS(4254), + [anon_sym___alignof__] = ACTIONS(4256), + [anon_sym___alignof] = ACTIONS(4256), + [anon_sym__alignof] = ACTIONS(4256), + [anon_sym_alignof] = ACTIONS(4256), + [anon_sym__Alignof] = ACTIONS(4256), + [anon_sym_offsetof] = ACTIONS(4258), + [anon_sym__Generic] = ACTIONS(4260), + [anon_sym_asm] = ACTIONS(4262), + [anon_sym___asm__] = ACTIONS(4262), + [sym_number_literal] = ACTIONS(4264), + [anon_sym_L_SQUOTE] = ACTIONS(4266), + [anon_sym_u_SQUOTE] = ACTIONS(4266), + [anon_sym_U_SQUOTE] = ACTIONS(4266), + [anon_sym_u8_SQUOTE] = ACTIONS(4266), + [anon_sym_SQUOTE] = ACTIONS(4266), + [anon_sym_L_DQUOTE] = ACTIONS(4268), + [anon_sym_u_DQUOTE] = ACTIONS(4268), + [anon_sym_U_DQUOTE] = ACTIONS(4268), + [anon_sym_u8_DQUOTE] = ACTIONS(4268), + [anon_sym_DQUOTE] = ACTIONS(4268), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4272), + [anon_sym_nullptr] = ACTIONS(4272), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4150), - [anon_sym_requires] = ACTIONS(4152), - [sym_this] = ACTIONS(4140), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4154), - [sym_semgrep_named_ellipsis] = ACTIONS(4156), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4274), + [anon_sym_R_DQUOTE] = ACTIONS(4276), + [anon_sym_LR_DQUOTE] = ACTIONS(4276), + [anon_sym_uR_DQUOTE] = ACTIONS(4276), + [anon_sym_UR_DQUOTE] = ACTIONS(4276), + [anon_sym_u8R_DQUOTE] = ACTIONS(4276), + [anon_sym_co_await] = ACTIONS(4278), + [anon_sym_new] = ACTIONS(4280), + [anon_sym_requires] = ACTIONS(4282), + [sym_this] = ACTIONS(4270), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4284), + [sym_semgrep_named_ellipsis] = ACTIONS(4286), }, - [1679] = { - [sym_expression] = STATE(5882), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1672] = { + [sym_expression] = STATE(5445), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(5438), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -271376,7 +260140,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -271390,63 +260154,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1680] = { - [sym_expression] = STATE(5885), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1673] = { + [sym_expression] = STATE(5061), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -271478,7 +260242,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -271492,63 +260256,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1681] = { - [sym_expression] = STATE(5553), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1674] = { + [sym_expression] = STATE(5446), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -271580,7 +260344,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -271594,68 +260358,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1682] = { - [sym_expression] = STATE(5890), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1675] = { + [sym_expression] = STATE(5447), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -271682,77 +260446,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1683] = { - [sym_expression] = STATE(5891), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1676] = { + [sym_expression] = STATE(5448), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -271784,7 +260548,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -271798,63 +260562,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1684] = { - [sym_expression] = STATE(5892), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1677] = { + [sym_expression] = STATE(5062), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -271886,7 +260650,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -271900,68 +260664,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1685] = { - [sym_expression] = STATE(5558), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1678] = { + [sym_expression] = STATE(5451), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -271988,82 +260752,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1686] = { - [sym_expression] = STATE(5901), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), + [1679] = { + [sym_expression] = STATE(5454), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -272090,77 +260854,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), + [anon_sym_co_await] = ACTIONS(157), [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1687] = { - [sym_expression] = STATE(5908), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1680] = { + [sym_expression] = STATE(5455), + [sym_expression_not_binary] = STATE(5685), + [sym_conditional_expression] = STATE(5675), + [sym_assignment_expression] = STATE(5675), + [sym_pointer_expression] = STATE(4201), + [sym_unary_expression] = STATE(5675), + [sym_binary_expression] = STATE(5685), + [sym_update_expression] = STATE(5675), + [sym_cast_expression] = STATE(5675), + [sym_sizeof_expression] = STATE(5675), + [sym_alignof_expression] = STATE(5675), + [sym_offsetof_expression] = STATE(5675), + [sym_generic_expression] = STATE(5675), + [sym_subscript_expression] = STATE(4201), + [sym_call_expression] = STATE(4201), + [sym_gnu_asm_expression] = STATE(5675), + [sym_field_expression] = STATE(4201), + [sym_compound_literal_expression] = STATE(5675), + [sym_parenthesized_expression] = STATE(4201), + [sym_char_literal] = STATE(5600), + [sym_concatenated_string] = STATE(5600), + [sym_string_literal] = STATE(4359), + [sym_null] = STATE(5675), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9034), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5675), + [sym_raw_string_literal] = STATE(4359), + [sym_co_await_expression] = STATE(5675), + [sym_new_expression] = STATE(5675), + [sym_delete_expression] = STATE(5675), + [sym_requires_clause] = STATE(5675), + [sym_requires_expression] = STATE(5675), + [sym_lambda_expression] = STATE(5675), + [sym_lambda_capture_specifier] = STATE(6898), + [sym_fold_expression] = STATE(5675), + [sym_parameter_pack_expansion] = STATE(5675), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4201), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4201), + [sym_semgrep_ellipsis] = STATE(5685), + [sym_deep_ellipsis] = STATE(5685), + [sym_identifier] = ACTIONS(4242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4954), + [anon_sym_LPAREN2] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_TILDE] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(4248), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4252), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_sizeof] = ACTIONS(4254), + [anon_sym___alignof__] = ACTIONS(4256), + [anon_sym___alignof] = ACTIONS(4256), + [anon_sym__alignof] = ACTIONS(4256), + [anon_sym_alignof] = ACTIONS(4256), + [anon_sym__Alignof] = ACTIONS(4256), + [anon_sym_offsetof] = ACTIONS(4258), + [anon_sym__Generic] = ACTIONS(4260), + [anon_sym_asm] = ACTIONS(4262), + [anon_sym___asm__] = ACTIONS(4262), + [sym_number_literal] = ACTIONS(4264), + [anon_sym_L_SQUOTE] = ACTIONS(4266), + [anon_sym_u_SQUOTE] = ACTIONS(4266), + [anon_sym_U_SQUOTE] = ACTIONS(4266), + [anon_sym_u8_SQUOTE] = ACTIONS(4266), + [anon_sym_SQUOTE] = ACTIONS(4266), + [anon_sym_L_DQUOTE] = ACTIONS(4268), + [anon_sym_u_DQUOTE] = ACTIONS(4268), + [anon_sym_U_DQUOTE] = ACTIONS(4268), + [anon_sym_u8_DQUOTE] = ACTIONS(4268), + [anon_sym_DQUOTE] = ACTIONS(4268), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4272), + [anon_sym_nullptr] = ACTIONS(4272), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4274), + [anon_sym_R_DQUOTE] = ACTIONS(4276), + [anon_sym_LR_DQUOTE] = ACTIONS(4276), + [anon_sym_uR_DQUOTE] = ACTIONS(4276), + [anon_sym_UR_DQUOTE] = ACTIONS(4276), + [anon_sym_u8R_DQUOTE] = ACTIONS(4276), + [anon_sym_co_await] = ACTIONS(4278), + [anon_sym_new] = ACTIONS(4280), + [anon_sym_requires] = ACTIONS(4282), + [sym_this] = ACTIONS(4270), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4284), + [sym_semgrep_named_ellipsis] = ACTIONS(4286), + }, + [1681] = { + [sym_expression] = STATE(5462), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -272192,7 +261058,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -272206,165 +261072,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1688] = { - [sym_expression] = STATE(5909), - [sym_expression_not_binary] = STATE(6169), - [sym_conditional_expression] = STATE(6267), - [sym_assignment_expression] = STATE(6267), - [sym_pointer_expression] = STATE(4422), - [sym_unary_expression] = STATE(6267), - [sym_binary_expression] = STATE(6169), - [sym_update_expression] = STATE(6267), - [sym_cast_expression] = STATE(6267), - [sym_sizeof_expression] = STATE(6267), - [sym_alignof_expression] = STATE(6267), - [sym_offsetof_expression] = STATE(6267), - [sym_generic_expression] = STATE(6267), - [sym_subscript_expression] = STATE(4422), - [sym_call_expression] = STATE(4422), - [sym_gnu_asm_expression] = STATE(6267), - [sym_field_expression] = STATE(4422), - [sym_compound_literal_expression] = STATE(6267), - [sym_parenthesized_expression] = STATE(4422), - [sym_char_literal] = STATE(6147), - [sym_concatenated_string] = STATE(6147), - [sym_string_literal] = STATE(4563), - [sym_null] = STATE(6267), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9242), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6267), - [sym_raw_string_literal] = STATE(4563), - [sym_co_await_expression] = STATE(6267), - [sym_new_expression] = STATE(6267), - [sym_delete_expression] = STATE(6267), - [sym_requires_clause] = STATE(6267), - [sym_requires_expression] = STATE(6267), - [sym_lambda_expression] = STATE(6267), - [sym_lambda_capture_specifier] = STATE(7263), - [sym_fold_expression] = STATE(6267), - [sym_parameter_pack_expansion] = STATE(6267), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4422), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4422), - [sym_semgrep_ellipsis] = STATE(6169), - [sym_deep_ellipsis] = STATE(6169), - [sym_identifier] = ACTIONS(4112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5054), - [anon_sym_LPAREN2] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_TILDE] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4122), - [anon_sym_not] = ACTIONS(4114), - [anon_sym_compl] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(5056), - [anon_sym_PLUS_PLUS] = ACTIONS(5056), - [anon_sym_sizeof] = ACTIONS(4124), - [anon_sym___alignof__] = ACTIONS(4126), - [anon_sym___alignof] = ACTIONS(4126), - [anon_sym__alignof] = ACTIONS(4126), - [anon_sym_alignof] = ACTIONS(4126), - [anon_sym__Alignof] = ACTIONS(4126), - [anon_sym_offsetof] = ACTIONS(4128), - [anon_sym__Generic] = ACTIONS(4130), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4136), - [anon_sym_u_SQUOTE] = ACTIONS(4136), - [anon_sym_U_SQUOTE] = ACTIONS(4136), - [anon_sym_u8_SQUOTE] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_L_DQUOTE] = ACTIONS(4138), - [anon_sym_u_DQUOTE] = ACTIONS(4138), - [anon_sym_U_DQUOTE] = ACTIONS(4138), - [anon_sym_u8_DQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [anon_sym_NULL] = ACTIONS(4142), - [anon_sym_nullptr] = ACTIONS(4142), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4150), - [anon_sym_requires] = ACTIONS(4152), - [sym_this] = ACTIONS(4140), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4154), - [sym_semgrep_named_ellipsis] = ACTIONS(4156), - }, - [1689] = { - [sym_expression] = STATE(5914), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1682] = { + [sym_expression] = STATE(5068), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -272396,7 +261160,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -272410,63 +261174,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1690] = { - [sym_expression] = STATE(5918), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1683] = { + [sym_expression] = STATE(5465), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -272498,7 +261262,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -272512,68 +261276,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1691] = { - [sym_expression] = STATE(5572), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1684] = { + [sym_expression] = STATE(5466), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -272600,77 +261364,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1692] = { - [sym_expression] = STATE(5920), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1685] = { + [sym_expression] = STATE(5467), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -272702,7 +261466,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -272716,63 +261480,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1693] = { - [sym_expression] = STATE(5921), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1686] = { + [sym_expression] = STATE(5069), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -272804,7 +261568,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -272818,63 +261582,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1694] = { - [sym_expression] = STATE(5922), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1687] = { + [sym_expression] = STATE(5472), + [sym_expression_not_binary] = STATE(5685), + [sym_conditional_expression] = STATE(5675), + [sym_assignment_expression] = STATE(5675), + [sym_pointer_expression] = STATE(4201), + [sym_unary_expression] = STATE(5675), + [sym_binary_expression] = STATE(5685), + [sym_update_expression] = STATE(5675), + [sym_cast_expression] = STATE(5675), + [sym_sizeof_expression] = STATE(5675), + [sym_alignof_expression] = STATE(5675), + [sym_offsetof_expression] = STATE(5675), + [sym_generic_expression] = STATE(5675), + [sym_subscript_expression] = STATE(4201), + [sym_call_expression] = STATE(4201), + [sym_gnu_asm_expression] = STATE(5675), + [sym_field_expression] = STATE(4201), + [sym_compound_literal_expression] = STATE(5675), + [sym_parenthesized_expression] = STATE(4201), + [sym_char_literal] = STATE(5600), + [sym_concatenated_string] = STATE(5600), + [sym_string_literal] = STATE(4359), + [sym_null] = STATE(5675), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9034), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5675), + [sym_raw_string_literal] = STATE(4359), + [sym_co_await_expression] = STATE(5675), + [sym_new_expression] = STATE(5675), + [sym_delete_expression] = STATE(5675), + [sym_requires_clause] = STATE(5675), + [sym_requires_expression] = STATE(5675), + [sym_lambda_expression] = STATE(5675), + [sym_lambda_capture_specifier] = STATE(6898), + [sym_fold_expression] = STATE(5675), + [sym_parameter_pack_expansion] = STATE(5675), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4201), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4201), + [sym_semgrep_ellipsis] = STATE(5685), + [sym_deep_ellipsis] = STATE(5685), + [sym_identifier] = ACTIONS(4242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4954), + [anon_sym_LPAREN2] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_TILDE] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(4248), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4252), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_sizeof] = ACTIONS(4254), + [anon_sym___alignof__] = ACTIONS(4256), + [anon_sym___alignof] = ACTIONS(4256), + [anon_sym__alignof] = ACTIONS(4256), + [anon_sym_alignof] = ACTIONS(4256), + [anon_sym__Alignof] = ACTIONS(4256), + [anon_sym_offsetof] = ACTIONS(4258), + [anon_sym__Generic] = ACTIONS(4260), + [anon_sym_asm] = ACTIONS(4262), + [anon_sym___asm__] = ACTIONS(4262), + [sym_number_literal] = ACTIONS(4264), + [anon_sym_L_SQUOTE] = ACTIONS(4266), + [anon_sym_u_SQUOTE] = ACTIONS(4266), + [anon_sym_U_SQUOTE] = ACTIONS(4266), + [anon_sym_u8_SQUOTE] = ACTIONS(4266), + [anon_sym_SQUOTE] = ACTIONS(4266), + [anon_sym_L_DQUOTE] = ACTIONS(4268), + [anon_sym_u_DQUOTE] = ACTIONS(4268), + [anon_sym_U_DQUOTE] = ACTIONS(4268), + [anon_sym_u8_DQUOTE] = ACTIONS(4268), + [anon_sym_DQUOTE] = ACTIONS(4268), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4272), + [anon_sym_nullptr] = ACTIONS(4272), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4274), + [anon_sym_R_DQUOTE] = ACTIONS(4276), + [anon_sym_LR_DQUOTE] = ACTIONS(4276), + [anon_sym_uR_DQUOTE] = ACTIONS(4276), + [anon_sym_UR_DQUOTE] = ACTIONS(4276), + [anon_sym_u8R_DQUOTE] = ACTIONS(4276), + [anon_sym_co_await] = ACTIONS(4278), + [anon_sym_new] = ACTIONS(4280), + [anon_sym_requires] = ACTIONS(4282), + [sym_this] = ACTIONS(4270), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4284), + [sym_semgrep_named_ellipsis] = ACTIONS(4286), + }, + [1688] = { + [sym_expression] = STATE(5475), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -272906,7 +261772,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -272920,63 +261786,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1695] = { - [sym_expression] = STATE(5575), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1689] = { + [sym_expression] = STATE(5076), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -273008,7 +261874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -273022,63 +261888,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1696] = { - [sym_expression] = STATE(5838), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1690] = { + [sym_expression] = STATE(5476), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -273110,7 +261976,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -273124,68 +261990,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1697] = { - [sym_expression] = STATE(5927), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), + [1691] = { + [sym_expression] = STATE(5477), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -273212,77 +262078,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1698] = { - [sym_expression] = STATE(5930), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1692] = { + [sym_expression] = STATE(5478), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -273314,7 +262180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -273328,170 +262194,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1699] = { - [sym_expression] = STATE(5931), - [sym_expression_not_binary] = STATE(6169), - [sym_conditional_expression] = STATE(6267), - [sym_assignment_expression] = STATE(6267), - [sym_pointer_expression] = STATE(4422), - [sym_unary_expression] = STATE(6267), - [sym_binary_expression] = STATE(6169), - [sym_update_expression] = STATE(6267), - [sym_cast_expression] = STATE(6267), - [sym_sizeof_expression] = STATE(6267), - [sym_alignof_expression] = STATE(6267), - [sym_offsetof_expression] = STATE(6267), - [sym_generic_expression] = STATE(6267), - [sym_subscript_expression] = STATE(4422), - [sym_call_expression] = STATE(4422), - [sym_gnu_asm_expression] = STATE(6267), - [sym_field_expression] = STATE(4422), - [sym_compound_literal_expression] = STATE(6267), - [sym_parenthesized_expression] = STATE(4422), - [sym_char_literal] = STATE(6147), - [sym_concatenated_string] = STATE(6147), - [sym_string_literal] = STATE(4563), - [sym_null] = STATE(6267), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9242), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6267), - [sym_raw_string_literal] = STATE(4563), - [sym_co_await_expression] = STATE(6267), - [sym_new_expression] = STATE(6267), - [sym_delete_expression] = STATE(6267), - [sym_requires_clause] = STATE(6267), - [sym_requires_expression] = STATE(6267), - [sym_lambda_expression] = STATE(6267), - [sym_lambda_capture_specifier] = STATE(7263), - [sym_fold_expression] = STATE(6267), - [sym_parameter_pack_expansion] = STATE(6267), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4422), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4422), - [sym_semgrep_ellipsis] = STATE(6169), - [sym_deep_ellipsis] = STATE(6169), - [sym_identifier] = ACTIONS(4112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5054), - [anon_sym_LPAREN2] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_TILDE] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4122), - [anon_sym_not] = ACTIONS(4114), - [anon_sym_compl] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(5056), - [anon_sym_PLUS_PLUS] = ACTIONS(5056), - [anon_sym_sizeof] = ACTIONS(4124), - [anon_sym___alignof__] = ACTIONS(4126), - [anon_sym___alignof] = ACTIONS(4126), - [anon_sym__alignof] = ACTIONS(4126), - [anon_sym_alignof] = ACTIONS(4126), - [anon_sym__Alignof] = ACTIONS(4126), - [anon_sym_offsetof] = ACTIONS(4128), - [anon_sym__Generic] = ACTIONS(4130), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4136), - [anon_sym_u_SQUOTE] = ACTIONS(4136), - [anon_sym_U_SQUOTE] = ACTIONS(4136), - [anon_sym_u8_SQUOTE] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_L_DQUOTE] = ACTIONS(4138), - [anon_sym_u_DQUOTE] = ACTIONS(4138), - [anon_sym_U_DQUOTE] = ACTIONS(4138), - [anon_sym_u8_DQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [anon_sym_NULL] = ACTIONS(4142), - [anon_sym_nullptr] = ACTIONS(4142), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4150), - [anon_sym_requires] = ACTIONS(4152), - [sym_this] = ACTIONS(4140), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4154), - [sym_semgrep_named_ellipsis] = ACTIONS(4156), - }, - [1700] = { - [sym_expression] = STATE(5488), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4036), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4036), - [sym_call_expression] = STATE(4036), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4036), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4036), - [sym_char_literal] = STATE(5772), - [sym_concatenated_string] = STATE(5772), - [sym_string_literal] = STATE(4262), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(4262), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4036), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4036), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5038), - [anon_sym_BANG] = ACTIONS(4035), - [anon_sym_TILDE] = ACTIONS(4035), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_PLUS] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_COLON_COLON] = ACTIONS(4037), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4033), - [anon_sym_compl] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(5044), - [anon_sym_PLUS_PLUS] = ACTIONS(5044), - [anon_sym_sizeof] = ACTIONS(4039), + [1693] = { + [sym_expression] = STATE(5077), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -273501,94 +262265,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(107), [anon_sym_asm] = ACTIONS(109), [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(4041), - [anon_sym_L_SQUOTE] = ACTIONS(4043), - [anon_sym_u_SQUOTE] = ACTIONS(4043), - [anon_sym_U_SQUOTE] = ACTIONS(4043), - [anon_sym_u8_SQUOTE] = ACTIONS(4043), - [anon_sym_SQUOTE] = ACTIONS(4043), - [anon_sym_L_DQUOTE] = ACTIONS(4045), - [anon_sym_u_DQUOTE] = ACTIONS(4045), - [anon_sym_U_DQUOTE] = ACTIONS(4045), - [anon_sym_u8_DQUOTE] = ACTIONS(4045), - [anon_sym_DQUOTE] = ACTIONS(4045), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), [sym_true] = ACTIONS(117), [sym_false] = ACTIONS(117), [anon_sym_NULL] = ACTIONS(119), [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4047), - [anon_sym_R_DQUOTE] = ACTIONS(4049), - [anon_sym_LR_DQUOTE] = ACTIONS(4049), - [anon_sym_uR_DQUOTE] = ACTIONS(4049), - [anon_sym_UR_DQUOTE] = ACTIONS(4049), - [anon_sym_u8R_DQUOTE] = ACTIONS(4049), - [anon_sym_co_await] = ACTIONS(4051), - [anon_sym_new] = ACTIONS(4053), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1701] = { - [sym_expression] = STATE(5942), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1694] = { + [sym_expression] = STATE(5484), + [sym_expression_not_binary] = STATE(5685), + [sym_conditional_expression] = STATE(5675), + [sym_assignment_expression] = STATE(5675), + [sym_pointer_expression] = STATE(4201), + [sym_unary_expression] = STATE(5675), + [sym_binary_expression] = STATE(5685), + [sym_update_expression] = STATE(5675), + [sym_cast_expression] = STATE(5675), + [sym_sizeof_expression] = STATE(5675), + [sym_alignof_expression] = STATE(5675), + [sym_offsetof_expression] = STATE(5675), + [sym_generic_expression] = STATE(5675), + [sym_subscript_expression] = STATE(4201), + [sym_call_expression] = STATE(4201), + [sym_gnu_asm_expression] = STATE(5675), + [sym_field_expression] = STATE(4201), + [sym_compound_literal_expression] = STATE(5675), + [sym_parenthesized_expression] = STATE(4201), + [sym_char_literal] = STATE(5600), + [sym_concatenated_string] = STATE(5600), + [sym_string_literal] = STATE(4359), + [sym_null] = STATE(5675), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9034), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5675), + [sym_raw_string_literal] = STATE(4359), + [sym_co_await_expression] = STATE(5675), + [sym_new_expression] = STATE(5675), + [sym_delete_expression] = STATE(5675), + [sym_requires_clause] = STATE(5675), + [sym_requires_expression] = STATE(5675), + [sym_lambda_expression] = STATE(5675), + [sym_lambda_capture_specifier] = STATE(6898), + [sym_fold_expression] = STATE(5675), + [sym_parameter_pack_expansion] = STATE(5675), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4201), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4201), + [sym_semgrep_ellipsis] = STATE(5685), + [sym_deep_ellipsis] = STATE(5685), + [sym_identifier] = ACTIONS(4242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4954), + [anon_sym_LPAREN2] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_TILDE] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(4248), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4252), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_sizeof] = ACTIONS(4254), + [anon_sym___alignof__] = ACTIONS(4256), + [anon_sym___alignof] = ACTIONS(4256), + [anon_sym__alignof] = ACTIONS(4256), + [anon_sym_alignof] = ACTIONS(4256), + [anon_sym__Alignof] = ACTIONS(4256), + [anon_sym_offsetof] = ACTIONS(4258), + [anon_sym__Generic] = ACTIONS(4260), + [anon_sym_asm] = ACTIONS(4262), + [anon_sym___asm__] = ACTIONS(4262), + [sym_number_literal] = ACTIONS(4264), + [anon_sym_L_SQUOTE] = ACTIONS(4266), + [anon_sym_u_SQUOTE] = ACTIONS(4266), + [anon_sym_U_SQUOTE] = ACTIONS(4266), + [anon_sym_u8_SQUOTE] = ACTIONS(4266), + [anon_sym_SQUOTE] = ACTIONS(4266), + [anon_sym_L_DQUOTE] = ACTIONS(4268), + [anon_sym_u_DQUOTE] = ACTIONS(4268), + [anon_sym_U_DQUOTE] = ACTIONS(4268), + [anon_sym_u8_DQUOTE] = ACTIONS(4268), + [anon_sym_DQUOTE] = ACTIONS(4268), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4272), + [anon_sym_nullptr] = ACTIONS(4272), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4274), + [anon_sym_R_DQUOTE] = ACTIONS(4276), + [anon_sym_LR_DQUOTE] = ACTIONS(4276), + [anon_sym_uR_DQUOTE] = ACTIONS(4276), + [anon_sym_UR_DQUOTE] = ACTIONS(4276), + [anon_sym_u8R_DQUOTE] = ACTIONS(4276), + [anon_sym_co_await] = ACTIONS(4278), + [anon_sym_new] = ACTIONS(4280), + [anon_sym_requires] = ACTIONS(4282), + [sym_this] = ACTIONS(4270), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4284), + [sym_semgrep_named_ellipsis] = ACTIONS(4286), + }, + [1695] = { + [sym_expression] = STATE(5489), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -273620,7 +262486,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -273634,63 +262500,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1702] = { - [sym_expression] = STATE(5591), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1696] = { + [sym_expression] = STATE(5081), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -273722,7 +262588,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -273736,63 +262602,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1703] = { - [sym_expression] = STATE(5944), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1697] = { + [sym_expression] = STATE(5490), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -273824,7 +262690,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -273838,68 +262704,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1704] = { - [sym_expression] = STATE(5945), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1698] = { + [sym_expression] = STATE(5491), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -273926,77 +262792,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1705] = { - [sym_expression] = STATE(5946), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1699] = { + [sym_expression] = STATE(5492), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -274028,7 +262894,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -274042,63 +262908,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1706] = { - [sym_expression] = STATE(5595), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1700] = { + [sym_expression] = STATE(5082), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -274130,7 +262996,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -274144,165 +263010,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1707] = { - [sym_expression] = STATE(5952), - [sym_expression_not_binary] = STATE(6169), - [sym_conditional_expression] = STATE(6267), - [sym_assignment_expression] = STATE(6267), - [sym_pointer_expression] = STATE(4422), - [sym_unary_expression] = STATE(6267), - [sym_binary_expression] = STATE(6169), - [sym_update_expression] = STATE(6267), - [sym_cast_expression] = STATE(6267), - [sym_sizeof_expression] = STATE(6267), - [sym_alignof_expression] = STATE(6267), - [sym_offsetof_expression] = STATE(6267), - [sym_generic_expression] = STATE(6267), - [sym_subscript_expression] = STATE(4422), - [sym_call_expression] = STATE(4422), - [sym_gnu_asm_expression] = STATE(6267), - [sym_field_expression] = STATE(4422), - [sym_compound_literal_expression] = STATE(6267), - [sym_parenthesized_expression] = STATE(4422), - [sym_char_literal] = STATE(6147), - [sym_concatenated_string] = STATE(6147), - [sym_string_literal] = STATE(4563), - [sym_null] = STATE(6267), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9242), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6267), - [sym_raw_string_literal] = STATE(4563), - [sym_co_await_expression] = STATE(6267), - [sym_new_expression] = STATE(6267), - [sym_delete_expression] = STATE(6267), - [sym_requires_clause] = STATE(6267), - [sym_requires_expression] = STATE(6267), - [sym_lambda_expression] = STATE(6267), - [sym_lambda_capture_specifier] = STATE(7263), - [sym_fold_expression] = STATE(6267), - [sym_parameter_pack_expansion] = STATE(6267), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4422), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4422), - [sym_semgrep_ellipsis] = STATE(6169), - [sym_deep_ellipsis] = STATE(6169), - [sym_identifier] = ACTIONS(4112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5054), - [anon_sym_LPAREN2] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_TILDE] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4122), - [anon_sym_not] = ACTIONS(4114), - [anon_sym_compl] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(5056), - [anon_sym_PLUS_PLUS] = ACTIONS(5056), - [anon_sym_sizeof] = ACTIONS(4124), - [anon_sym___alignof__] = ACTIONS(4126), - [anon_sym___alignof] = ACTIONS(4126), - [anon_sym__alignof] = ACTIONS(4126), - [anon_sym_alignof] = ACTIONS(4126), - [anon_sym__Alignof] = ACTIONS(4126), - [anon_sym_offsetof] = ACTIONS(4128), - [anon_sym__Generic] = ACTIONS(4130), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4136), - [anon_sym_u_SQUOTE] = ACTIONS(4136), - [anon_sym_U_SQUOTE] = ACTIONS(4136), - [anon_sym_u8_SQUOTE] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_L_DQUOTE] = ACTIONS(4138), - [anon_sym_u_DQUOTE] = ACTIONS(4138), - [anon_sym_U_DQUOTE] = ACTIONS(4138), - [anon_sym_u8_DQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [anon_sym_NULL] = ACTIONS(4142), - [anon_sym_nullptr] = ACTIONS(4142), + [1701] = { + [sym_expression] = STATE(5494), + [sym_expression_not_binary] = STATE(5685), + [sym_conditional_expression] = STATE(5675), + [sym_assignment_expression] = STATE(5675), + [sym_pointer_expression] = STATE(4201), + [sym_unary_expression] = STATE(5675), + [sym_binary_expression] = STATE(5685), + [sym_update_expression] = STATE(5675), + [sym_cast_expression] = STATE(5675), + [sym_sizeof_expression] = STATE(5675), + [sym_alignof_expression] = STATE(5675), + [sym_offsetof_expression] = STATE(5675), + [sym_generic_expression] = STATE(5675), + [sym_subscript_expression] = STATE(4201), + [sym_call_expression] = STATE(4201), + [sym_gnu_asm_expression] = STATE(5675), + [sym_field_expression] = STATE(4201), + [sym_compound_literal_expression] = STATE(5675), + [sym_parenthesized_expression] = STATE(4201), + [sym_char_literal] = STATE(5600), + [sym_concatenated_string] = STATE(5600), + [sym_string_literal] = STATE(4359), + [sym_null] = STATE(5675), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9034), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5675), + [sym_raw_string_literal] = STATE(4359), + [sym_co_await_expression] = STATE(5675), + [sym_new_expression] = STATE(5675), + [sym_delete_expression] = STATE(5675), + [sym_requires_clause] = STATE(5675), + [sym_requires_expression] = STATE(5675), + [sym_lambda_expression] = STATE(5675), + [sym_lambda_capture_specifier] = STATE(6898), + [sym_fold_expression] = STATE(5675), + [sym_parameter_pack_expansion] = STATE(5675), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4201), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4201), + [sym_semgrep_ellipsis] = STATE(5685), + [sym_deep_ellipsis] = STATE(5685), + [sym_identifier] = ACTIONS(4242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4954), + [anon_sym_LPAREN2] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_TILDE] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(4248), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4252), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_sizeof] = ACTIONS(4254), + [anon_sym___alignof__] = ACTIONS(4256), + [anon_sym___alignof] = ACTIONS(4256), + [anon_sym__alignof] = ACTIONS(4256), + [anon_sym_alignof] = ACTIONS(4256), + [anon_sym__Alignof] = ACTIONS(4256), + [anon_sym_offsetof] = ACTIONS(4258), + [anon_sym__Generic] = ACTIONS(4260), + [anon_sym_asm] = ACTIONS(4262), + [anon_sym___asm__] = ACTIONS(4262), + [sym_number_literal] = ACTIONS(4264), + [anon_sym_L_SQUOTE] = ACTIONS(4266), + [anon_sym_u_SQUOTE] = ACTIONS(4266), + [anon_sym_U_SQUOTE] = ACTIONS(4266), + [anon_sym_u8_SQUOTE] = ACTIONS(4266), + [anon_sym_SQUOTE] = ACTIONS(4266), + [anon_sym_L_DQUOTE] = ACTIONS(4268), + [anon_sym_u_DQUOTE] = ACTIONS(4268), + [anon_sym_U_DQUOTE] = ACTIONS(4268), + [anon_sym_u8_DQUOTE] = ACTIONS(4268), + [anon_sym_DQUOTE] = ACTIONS(4268), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4272), + [anon_sym_nullptr] = ACTIONS(4272), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4150), - [anon_sym_requires] = ACTIONS(4152), - [sym_this] = ACTIONS(4140), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4154), - [sym_semgrep_named_ellipsis] = ACTIONS(4156), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4274), + [anon_sym_R_DQUOTE] = ACTIONS(4276), + [anon_sym_LR_DQUOTE] = ACTIONS(4276), + [anon_sym_uR_DQUOTE] = ACTIONS(4276), + [anon_sym_UR_DQUOTE] = ACTIONS(4276), + [anon_sym_u8R_DQUOTE] = ACTIONS(4276), + [anon_sym_co_await] = ACTIONS(4278), + [anon_sym_new] = ACTIONS(4280), + [anon_sym_requires] = ACTIONS(4282), + [sym_this] = ACTIONS(4270), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4284), + [sym_semgrep_named_ellipsis] = ACTIONS(4286), }, - [1708] = { - [sym_expression] = STATE(5957), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1702] = { + [sym_expression] = STATE(5497), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -274334,7 +263200,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -274348,63 +263214,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1709] = { - [sym_expression] = STATE(5604), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1703] = { + [sym_expression] = STATE(5086), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -274436,7 +263302,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -274450,63 +263316,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1710] = { - [sym_expression] = STATE(5959), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1704] = { + [sym_expression] = STATE(5498), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -274538,7 +263404,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -274552,68 +263418,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1711] = { - [sym_expression] = STATE(5960), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1705] = { + [sym_expression] = STATE(5499), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -274640,77 +263506,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1712] = { - [sym_expression] = STATE(5961), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1706] = { + [sym_expression] = STATE(5500), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -274742,7 +263608,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -274756,63 +263622,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1713] = { - [sym_expression] = STATE(5605), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1707] = { + [sym_expression] = STATE(5087), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -274844,7 +263710,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -274858,165 +263724,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1714] = { - [sym_expression] = STATE(5967), - [sym_expression_not_binary] = STATE(6169), - [sym_conditional_expression] = STATE(6267), - [sym_assignment_expression] = STATE(6267), - [sym_pointer_expression] = STATE(4422), - [sym_unary_expression] = STATE(6267), - [sym_binary_expression] = STATE(6169), - [sym_update_expression] = STATE(6267), - [sym_cast_expression] = STATE(6267), - [sym_sizeof_expression] = STATE(6267), - [sym_alignof_expression] = STATE(6267), - [sym_offsetof_expression] = STATE(6267), - [sym_generic_expression] = STATE(6267), - [sym_subscript_expression] = STATE(4422), - [sym_call_expression] = STATE(4422), - [sym_gnu_asm_expression] = STATE(6267), - [sym_field_expression] = STATE(4422), - [sym_compound_literal_expression] = STATE(6267), - [sym_parenthesized_expression] = STATE(4422), - [sym_char_literal] = STATE(6147), - [sym_concatenated_string] = STATE(6147), - [sym_string_literal] = STATE(4563), - [sym_null] = STATE(6267), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9242), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6267), - [sym_raw_string_literal] = STATE(4563), - [sym_co_await_expression] = STATE(6267), - [sym_new_expression] = STATE(6267), - [sym_delete_expression] = STATE(6267), - [sym_requires_clause] = STATE(6267), - [sym_requires_expression] = STATE(6267), - [sym_lambda_expression] = STATE(6267), - [sym_lambda_capture_specifier] = STATE(7263), - [sym_fold_expression] = STATE(6267), - [sym_parameter_pack_expansion] = STATE(6267), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4422), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4422), - [sym_semgrep_ellipsis] = STATE(6169), - [sym_deep_ellipsis] = STATE(6169), - [sym_identifier] = ACTIONS(4112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5054), - [anon_sym_LPAREN2] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_TILDE] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4122), - [anon_sym_not] = ACTIONS(4114), - [anon_sym_compl] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(5056), - [anon_sym_PLUS_PLUS] = ACTIONS(5056), - [anon_sym_sizeof] = ACTIONS(4124), - [anon_sym___alignof__] = ACTIONS(4126), - [anon_sym___alignof] = ACTIONS(4126), - [anon_sym__alignof] = ACTIONS(4126), - [anon_sym_alignof] = ACTIONS(4126), - [anon_sym__Alignof] = ACTIONS(4126), - [anon_sym_offsetof] = ACTIONS(4128), - [anon_sym__Generic] = ACTIONS(4130), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4136), - [anon_sym_u_SQUOTE] = ACTIONS(4136), - [anon_sym_U_SQUOTE] = ACTIONS(4136), - [anon_sym_u8_SQUOTE] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_L_DQUOTE] = ACTIONS(4138), - [anon_sym_u_DQUOTE] = ACTIONS(4138), - [anon_sym_U_DQUOTE] = ACTIONS(4138), - [anon_sym_u8_DQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [anon_sym_NULL] = ACTIONS(4142), - [anon_sym_nullptr] = ACTIONS(4142), + [1708] = { + [sym_expression] = STATE(5502), + [sym_expression_not_binary] = STATE(5685), + [sym_conditional_expression] = STATE(5675), + [sym_assignment_expression] = STATE(5675), + [sym_pointer_expression] = STATE(4201), + [sym_unary_expression] = STATE(5675), + [sym_binary_expression] = STATE(5685), + [sym_update_expression] = STATE(5675), + [sym_cast_expression] = STATE(5675), + [sym_sizeof_expression] = STATE(5675), + [sym_alignof_expression] = STATE(5675), + [sym_offsetof_expression] = STATE(5675), + [sym_generic_expression] = STATE(5675), + [sym_subscript_expression] = STATE(4201), + [sym_call_expression] = STATE(4201), + [sym_gnu_asm_expression] = STATE(5675), + [sym_field_expression] = STATE(4201), + [sym_compound_literal_expression] = STATE(5675), + [sym_parenthesized_expression] = STATE(4201), + [sym_char_literal] = STATE(5600), + [sym_concatenated_string] = STATE(5600), + [sym_string_literal] = STATE(4359), + [sym_null] = STATE(5675), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9034), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5675), + [sym_raw_string_literal] = STATE(4359), + [sym_co_await_expression] = STATE(5675), + [sym_new_expression] = STATE(5675), + [sym_delete_expression] = STATE(5675), + [sym_requires_clause] = STATE(5675), + [sym_requires_expression] = STATE(5675), + [sym_lambda_expression] = STATE(5675), + [sym_lambda_capture_specifier] = STATE(6898), + [sym_fold_expression] = STATE(5675), + [sym_parameter_pack_expansion] = STATE(5675), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4201), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4201), + [sym_semgrep_ellipsis] = STATE(5685), + [sym_deep_ellipsis] = STATE(5685), + [sym_identifier] = ACTIONS(4242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4954), + [anon_sym_LPAREN2] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_TILDE] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(4248), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(4252), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_sizeof] = ACTIONS(4254), + [anon_sym___alignof__] = ACTIONS(4256), + [anon_sym___alignof] = ACTIONS(4256), + [anon_sym__alignof] = ACTIONS(4256), + [anon_sym_alignof] = ACTIONS(4256), + [anon_sym__Alignof] = ACTIONS(4256), + [anon_sym_offsetof] = ACTIONS(4258), + [anon_sym__Generic] = ACTIONS(4260), + [anon_sym_asm] = ACTIONS(4262), + [anon_sym___asm__] = ACTIONS(4262), + [sym_number_literal] = ACTIONS(4264), + [anon_sym_L_SQUOTE] = ACTIONS(4266), + [anon_sym_u_SQUOTE] = ACTIONS(4266), + [anon_sym_U_SQUOTE] = ACTIONS(4266), + [anon_sym_u8_SQUOTE] = ACTIONS(4266), + [anon_sym_SQUOTE] = ACTIONS(4266), + [anon_sym_L_DQUOTE] = ACTIONS(4268), + [anon_sym_u_DQUOTE] = ACTIONS(4268), + [anon_sym_U_DQUOTE] = ACTIONS(4268), + [anon_sym_u8_DQUOTE] = ACTIONS(4268), + [anon_sym_DQUOTE] = ACTIONS(4268), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4272), + [anon_sym_nullptr] = ACTIONS(4272), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4150), - [anon_sym_requires] = ACTIONS(4152), - [sym_this] = ACTIONS(4140), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4154), - [sym_semgrep_named_ellipsis] = ACTIONS(4156), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4274), + [anon_sym_R_DQUOTE] = ACTIONS(4276), + [anon_sym_LR_DQUOTE] = ACTIONS(4276), + [anon_sym_uR_DQUOTE] = ACTIONS(4276), + [anon_sym_UR_DQUOTE] = ACTIONS(4276), + [anon_sym_u8R_DQUOTE] = ACTIONS(4276), + [anon_sym_co_await] = ACTIONS(4278), + [anon_sym_new] = ACTIONS(4280), + [anon_sym_requires] = ACTIONS(4282), + [sym_this] = ACTIONS(4270), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4284), + [sym_semgrep_named_ellipsis] = ACTIONS(4286), }, - [1715] = { - [sym_expression] = STATE(5971), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1709] = { + [sym_expression] = STATE(5091), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -275048,7 +263914,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -275062,68 +263928,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1716] = { - [sym_expression] = STATE(5611), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1710] = { + [sym_expression] = STATE(5506), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -275150,77 +264016,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1717] = { - [sym_expression] = STATE(5973), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1711] = { + [sym_expression] = STATE(5092), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -275252,7 +264118,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -275266,63 +264132,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1718] = { - [sym_expression] = STATE(5974), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1712] = { + [sym_expression] = STATE(5095), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -275354,7 +264220,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -275368,68 +264234,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1719] = { - [sym_expression] = STATE(5975), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1713] = { + [sym_expression] = STATE(4702), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -275456,77 +264322,485 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1720] = { - [sym_expression] = STATE(5612), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1714] = { + [sym_expression] = STATE(4737), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), + }, + [1715] = { + [sym_expression] = STATE(4774), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5328), + [anon_sym_LPAREN2] = ACTIONS(5350), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), + }, + [1716] = { + [sym_expression] = STATE(5321), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(5352), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), + }, + [1717] = { + [sym_expression] = STATE(4761), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4046), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4046), + [sym_call_expression] = STATE(4046), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4046), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4046), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4046), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4046), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(4304), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4308), + [anon_sym_PLUS_PLUS] = ACTIONS(4308), + [anon_sym_sizeof] = ACTIONS(4228), + [anon_sym___alignof__] = ACTIONS(103), + [anon_sym___alignof] = ACTIONS(103), + [anon_sym__alignof] = ACTIONS(103), + [anon_sym_alignof] = ACTIONS(103), + [anon_sym__Alignof] = ACTIONS(103), + [anon_sym_offsetof] = ACTIONS(105), + [anon_sym__Generic] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym___asm__] = ACTIONS(109), + [sym_number_literal] = ACTIONS(111), + [anon_sym_L_SQUOTE] = ACTIONS(113), + [anon_sym_u_SQUOTE] = ACTIONS(113), + [anon_sym_U_SQUOTE] = ACTIONS(113), + [anon_sym_u8_SQUOTE] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(113), + [anon_sym_L_DQUOTE] = ACTIONS(115), + [anon_sym_u_DQUOTE] = ACTIONS(115), + [anon_sym_U_DQUOTE] = ACTIONS(115), + [anon_sym_u8_DQUOTE] = ACTIONS(115), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_true] = ACTIONS(117), + [sym_false] = ACTIONS(117), + [anon_sym_NULL] = ACTIONS(119), + [anon_sym_nullptr] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4230), + [anon_sym_R_DQUOTE] = ACTIONS(155), + [anon_sym_LR_DQUOTE] = ACTIONS(155), + [anon_sym_uR_DQUOTE] = ACTIONS(155), + [anon_sym_UR_DQUOTE] = ACTIONS(155), + [anon_sym_u8R_DQUOTE] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(4232), + [anon_sym_new] = ACTIONS(4234), + [anon_sym_requires] = ACTIONS(161), + [sym_this] = ACTIONS(117), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), + [sym_semgrep_named_ellipsis] = ACTIONS(167), + }, + [1718] = { + [sym_expression] = STATE(5244), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -275558,7 +264832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -275572,170 +264846,374 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, + [1719] = { + [sym_expression] = STATE(2870), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5070), + [anon_sym_BANG] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_PLUS] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2969), + [anon_sym_compl] = ACTIONS(2969), + [anon_sym_DASH_DASH] = ACTIONS(5018), + [anon_sym_PLUS_PLUS] = ACTIONS(5018), + [anon_sym_sizeof] = ACTIONS(2975), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2977), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1720] = { + [sym_expression] = STATE(2871), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5070), + [anon_sym_BANG] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_PLUS] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2969), + [anon_sym_compl] = ACTIONS(2969), + [anon_sym_DASH_DASH] = ACTIONS(5018), + [anon_sym_PLUS_PLUS] = ACTIONS(5018), + [anon_sym_sizeof] = ACTIONS(2975), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2977), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, [1721] = { - [sym_expression] = STATE(5980), - [sym_expression_not_binary] = STATE(6169), - [sym_conditional_expression] = STATE(6267), - [sym_assignment_expression] = STATE(6267), - [sym_pointer_expression] = STATE(4422), - [sym_unary_expression] = STATE(6267), - [sym_binary_expression] = STATE(6169), - [sym_update_expression] = STATE(6267), - [sym_cast_expression] = STATE(6267), - [sym_sizeof_expression] = STATE(6267), - [sym_alignof_expression] = STATE(6267), - [sym_offsetof_expression] = STATE(6267), - [sym_generic_expression] = STATE(6267), - [sym_subscript_expression] = STATE(4422), - [sym_call_expression] = STATE(4422), - [sym_gnu_asm_expression] = STATE(6267), - [sym_field_expression] = STATE(4422), - [sym_compound_literal_expression] = STATE(6267), - [sym_parenthesized_expression] = STATE(4422), - [sym_char_literal] = STATE(6147), - [sym_concatenated_string] = STATE(6147), - [sym_string_literal] = STATE(4563), - [sym_null] = STATE(6267), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9242), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6267), - [sym_raw_string_literal] = STATE(4563), - [sym_co_await_expression] = STATE(6267), - [sym_new_expression] = STATE(6267), - [sym_delete_expression] = STATE(6267), - [sym_requires_clause] = STATE(6267), - [sym_requires_expression] = STATE(6267), - [sym_lambda_expression] = STATE(6267), - [sym_lambda_capture_specifier] = STATE(7263), - [sym_fold_expression] = STATE(6267), - [sym_parameter_pack_expansion] = STATE(6267), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4422), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4422), - [sym_semgrep_ellipsis] = STATE(6169), - [sym_deep_ellipsis] = STATE(6169), - [sym_identifier] = ACTIONS(4112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5054), - [anon_sym_LPAREN2] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_TILDE] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4122), - [anon_sym_not] = ACTIONS(4114), - [anon_sym_compl] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(5056), - [anon_sym_PLUS_PLUS] = ACTIONS(5056), - [anon_sym_sizeof] = ACTIONS(4124), - [anon_sym___alignof__] = ACTIONS(4126), - [anon_sym___alignof] = ACTIONS(4126), - [anon_sym__alignof] = ACTIONS(4126), - [anon_sym_alignof] = ACTIONS(4126), - [anon_sym__Alignof] = ACTIONS(4126), - [anon_sym_offsetof] = ACTIONS(4128), - [anon_sym__Generic] = ACTIONS(4130), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4136), - [anon_sym_u_SQUOTE] = ACTIONS(4136), - [anon_sym_U_SQUOTE] = ACTIONS(4136), - [anon_sym_u8_SQUOTE] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_L_DQUOTE] = ACTIONS(4138), - [anon_sym_u_DQUOTE] = ACTIONS(4138), - [anon_sym_U_DQUOTE] = ACTIONS(4138), - [anon_sym_u8_DQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [anon_sym_NULL] = ACTIONS(4142), - [anon_sym_nullptr] = ACTIONS(4142), + [sym_expression] = STATE(2872), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5298), + [anon_sym_LPAREN2] = ACTIONS(5354), + [anon_sym_BANG] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_PLUS] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2969), + [anon_sym_compl] = ACTIONS(2969), + [anon_sym_DASH_DASH] = ACTIONS(5018), + [anon_sym_PLUS_PLUS] = ACTIONS(5018), + [anon_sym_sizeof] = ACTIONS(2975), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4150), - [anon_sym_requires] = ACTIONS(4152), - [sym_this] = ACTIONS(4140), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4154), - [sym_semgrep_named_ellipsis] = ACTIONS(4156), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2977), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), }, [1722] = { - [sym_expression] = STATE(5986), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [sym_expression] = STATE(4630), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -275762,77 +265240,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [1723] = { - [sym_expression] = STATE(5616), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [sym_expression] = STATE(5287), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -275864,7 +265342,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -275879,62 +265357,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [1724] = { - [sym_expression] = STATE(5987), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [sym_expression] = STATE(5300), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -275966,7 +265444,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -275981,62 +265459,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [1725] = { - [sym_expression] = STATE(5988), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [sym_expression] = STATE(5305), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -276068,7 +265546,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -276083,62 +265561,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [1726] = { - [sym_expression] = STATE(5989), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [sym_expression] = STATE(5311), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -276170,7 +265648,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -276185,62 +265663,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [1727] = { - [sym_expression] = STATE(5617), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [sym_expression] = STATE(5316), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -276272,7 +265750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -276287,164 +265765,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_semgrep_named_ellipsis] = ACTIONS(167), }, [1728] = { - [sym_expression] = STATE(5991), - [sym_expression_not_binary] = STATE(6169), - [sym_conditional_expression] = STATE(6267), - [sym_assignment_expression] = STATE(6267), - [sym_pointer_expression] = STATE(4422), - [sym_unary_expression] = STATE(6267), - [sym_binary_expression] = STATE(6169), - [sym_update_expression] = STATE(6267), - [sym_cast_expression] = STATE(6267), - [sym_sizeof_expression] = STATE(6267), - [sym_alignof_expression] = STATE(6267), - [sym_offsetof_expression] = STATE(6267), - [sym_generic_expression] = STATE(6267), - [sym_subscript_expression] = STATE(4422), - [sym_call_expression] = STATE(4422), - [sym_gnu_asm_expression] = STATE(6267), - [sym_field_expression] = STATE(4422), - [sym_compound_literal_expression] = STATE(6267), - [sym_parenthesized_expression] = STATE(4422), - [sym_char_literal] = STATE(6147), - [sym_concatenated_string] = STATE(6147), - [sym_string_literal] = STATE(4563), - [sym_null] = STATE(6267), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9242), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6267), - [sym_raw_string_literal] = STATE(4563), - [sym_co_await_expression] = STATE(6267), - [sym_new_expression] = STATE(6267), - [sym_delete_expression] = STATE(6267), - [sym_requires_clause] = STATE(6267), - [sym_requires_expression] = STATE(6267), - [sym_lambda_expression] = STATE(6267), - [sym_lambda_capture_specifier] = STATE(7263), - [sym_fold_expression] = STATE(6267), - [sym_parameter_pack_expansion] = STATE(6267), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4422), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4422), - [sym_semgrep_ellipsis] = STATE(6169), - [sym_deep_ellipsis] = STATE(6169), - [sym_identifier] = ACTIONS(4112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5054), - [anon_sym_LPAREN2] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_TILDE] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4122), - [anon_sym_not] = ACTIONS(4114), - [anon_sym_compl] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(5056), - [anon_sym_PLUS_PLUS] = ACTIONS(5056), - [anon_sym_sizeof] = ACTIONS(4124), - [anon_sym___alignof__] = ACTIONS(4126), - [anon_sym___alignof] = ACTIONS(4126), - [anon_sym__alignof] = ACTIONS(4126), - [anon_sym_alignof] = ACTIONS(4126), - [anon_sym__Alignof] = ACTIONS(4126), - [anon_sym_offsetof] = ACTIONS(4128), - [anon_sym__Generic] = ACTIONS(4130), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4136), - [anon_sym_u_SQUOTE] = ACTIONS(4136), - [anon_sym_U_SQUOTE] = ACTIONS(4136), - [anon_sym_u8_SQUOTE] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_L_DQUOTE] = ACTIONS(4138), - [anon_sym_u_DQUOTE] = ACTIONS(4138), - [anon_sym_U_DQUOTE] = ACTIONS(4138), - [anon_sym_u8_DQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [anon_sym_NULL] = ACTIONS(4142), - [anon_sym_nullptr] = ACTIONS(4142), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4150), - [anon_sym_requires] = ACTIONS(4152), - [sym_this] = ACTIONS(4140), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4154), - [sym_semgrep_named_ellipsis] = ACTIONS(4156), - }, - [1729] = { - [sym_expression] = STATE(5628), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [sym_expression] = STATE(5317), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -276476,7 +265852,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -276490,63 +265866,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1730] = { - [sym_expression] = STATE(5997), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1729] = { + [sym_expression] = STATE(5318), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -276578,7 +265954,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -276592,68 +265968,1904 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, + [1730] = { + [sym_expression] = STATE(2882), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5070), + [anon_sym_BANG] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_PLUS] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2969), + [anon_sym_compl] = ACTIONS(2969), + [anon_sym_DASH_DASH] = ACTIONS(5018), + [anon_sym_PLUS_PLUS] = ACTIONS(5018), + [anon_sym_sizeof] = ACTIONS(2975), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2977), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, [1731] = { - [sym_expression] = STATE(5630), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [sym_expression] = STATE(3896), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5070), + [anon_sym_BANG] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_PLUS] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2969), + [anon_sym_compl] = ACTIONS(2969), + [anon_sym_DASH_DASH] = ACTIONS(5018), + [anon_sym_PLUS_PLUS] = ACTIONS(5018), + [anon_sym_sizeof] = ACTIONS(2975), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2977), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1732] = { + [sym_expression] = STATE(2874), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5070), + [anon_sym_BANG] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_PLUS] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2969), + [anon_sym_compl] = ACTIONS(2969), + [anon_sym_DASH_DASH] = ACTIONS(5018), + [anon_sym_PLUS_PLUS] = ACTIONS(5018), + [anon_sym_sizeof] = ACTIONS(2975), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2977), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1733] = { + [sym_expression] = STATE(3897), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5070), + [anon_sym_BANG] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_PLUS] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2969), + [anon_sym_compl] = ACTIONS(2969), + [anon_sym_DASH_DASH] = ACTIONS(5018), + [anon_sym_PLUS_PLUS] = ACTIONS(5018), + [anon_sym_sizeof] = ACTIONS(2975), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2977), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1734] = { + [sym_expression] = STATE(3898), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5070), + [anon_sym_BANG] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_PLUS] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2969), + [anon_sym_compl] = ACTIONS(2969), + [anon_sym_DASH_DASH] = ACTIONS(5018), + [anon_sym_PLUS_PLUS] = ACTIONS(5018), + [anon_sym_sizeof] = ACTIONS(2975), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2977), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1735] = { + [sym_expression] = STATE(3899), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5070), + [anon_sym_BANG] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_PLUS] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2969), + [anon_sym_compl] = ACTIONS(2969), + [anon_sym_DASH_DASH] = ACTIONS(5018), + [anon_sym_PLUS_PLUS] = ACTIONS(5018), + [anon_sym_sizeof] = ACTIONS(2975), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2977), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1736] = { + [sym_expression] = STATE(3900), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5070), + [anon_sym_BANG] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_PLUS] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2969), + [anon_sym_compl] = ACTIONS(2969), + [anon_sym_DASH_DASH] = ACTIONS(5018), + [anon_sym_PLUS_PLUS] = ACTIONS(5018), + [anon_sym_sizeof] = ACTIONS(2975), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2977), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1737] = { + [sym_expression] = STATE(3901), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5070), + [anon_sym_BANG] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_PLUS] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2969), + [anon_sym_compl] = ACTIONS(2969), + [anon_sym_DASH_DASH] = ACTIONS(5018), + [anon_sym_PLUS_PLUS] = ACTIONS(5018), + [anon_sym_sizeof] = ACTIONS(2975), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2977), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1738] = { + [sym_expression] = STATE(3902), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5070), + [anon_sym_BANG] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_PLUS] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2969), + [anon_sym_compl] = ACTIONS(2969), + [anon_sym_DASH_DASH] = ACTIONS(5018), + [anon_sym_PLUS_PLUS] = ACTIONS(5018), + [anon_sym_sizeof] = ACTIONS(2975), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2977), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1739] = { + [sym_expression] = STATE(3903), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5070), + [anon_sym_BANG] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_PLUS] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2969), + [anon_sym_compl] = ACTIONS(2969), + [anon_sym_DASH_DASH] = ACTIONS(5018), + [anon_sym_PLUS_PLUS] = ACTIONS(5018), + [anon_sym_sizeof] = ACTIONS(2975), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2977), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1740] = { + [sym_expression] = STATE(3904), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5070), + [anon_sym_BANG] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_PLUS] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2969), + [anon_sym_compl] = ACTIONS(2969), + [anon_sym_DASH_DASH] = ACTIONS(5018), + [anon_sym_PLUS_PLUS] = ACTIONS(5018), + [anon_sym_sizeof] = ACTIONS(2975), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2977), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1741] = { + [sym_expression] = STATE(3893), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5070), + [anon_sym_BANG] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_PLUS] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(5356), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2969), + [anon_sym_compl] = ACTIONS(2969), + [anon_sym_DASH_DASH] = ACTIONS(5018), + [anon_sym_PLUS_PLUS] = ACTIONS(5018), + [anon_sym_sizeof] = ACTIONS(2975), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2977), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1742] = { + [sym_expression] = STATE(2873), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5070), + [anon_sym_BANG] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_PLUS] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2969), + [anon_sym_compl] = ACTIONS(2969), + [anon_sym_DASH_DASH] = ACTIONS(5018), + [anon_sym_PLUS_PLUS] = ACTIONS(5018), + [anon_sym_sizeof] = ACTIONS(2975), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2977), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1743] = { + [sym_expression] = STATE(3894), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5070), + [anon_sym_BANG] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_PLUS] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(5358), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2969), + [anon_sym_compl] = ACTIONS(2969), + [anon_sym_DASH_DASH] = ACTIONS(5018), + [anon_sym_PLUS_PLUS] = ACTIONS(5018), + [anon_sym_sizeof] = ACTIONS(2975), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2977), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1744] = { + [sym_expression] = STATE(3905), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5070), + [anon_sym_BANG] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_PLUS] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2969), + [anon_sym_compl] = ACTIONS(2969), + [anon_sym_DASH_DASH] = ACTIONS(5018), + [anon_sym_PLUS_PLUS] = ACTIONS(5018), + [anon_sym_sizeof] = ACTIONS(2975), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2977), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1745] = { + [sym_expression] = STATE(2991), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_compl] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(2293), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2315), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1746] = { + [sym_expression] = STATE(3907), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5070), + [anon_sym_BANG] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_PLUS] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2969), + [anon_sym_compl] = ACTIONS(2969), + [anon_sym_DASH_DASH] = ACTIONS(5018), + [anon_sym_PLUS_PLUS] = ACTIONS(5018), + [anon_sym_sizeof] = ACTIONS(2975), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2977), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1747] = { + [sym_expression] = STATE(3909), + [sym_expression_not_binary] = STATE(2570), + [sym_conditional_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2568), + [sym_pointer_expression] = STATE(2571), + [sym_unary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2570), + [sym_update_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_alignof_expression] = STATE(2568), + [sym_offsetof_expression] = STATE(2568), + [sym_generic_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2571), + [sym_call_expression] = STATE(2571), + [sym_gnu_asm_expression] = STATE(2568), + [sym_field_expression] = STATE(2571), + [sym_compound_literal_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2571), + [sym_char_literal] = STATE(3025), + [sym_concatenated_string] = STATE(3025), + [sym_string_literal] = STATE(2049), + [sym_null] = STATE(2568), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8881), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(2568), + [sym_raw_string_literal] = STATE(2049), + [sym_co_await_expression] = STATE(2568), + [sym_new_expression] = STATE(2568), + [sym_delete_expression] = STATE(2568), + [sym_requires_clause] = STATE(2568), + [sym_requires_expression] = STATE(2568), + [sym_lambda_expression] = STATE(2568), + [sym_lambda_capture_specifier] = STATE(6864), + [sym_fold_expression] = STATE(2568), + [sym_parameter_pack_expansion] = STATE(2568), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(2571), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(2571), + [sym_semgrep_ellipsis] = STATE(2570), + [sym_deep_ellipsis] = STATE(2570), + [sym_identifier] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(5070), + [anon_sym_BANG] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_PLUS] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2969), + [anon_sym_compl] = ACTIONS(2969), + [anon_sym_DASH_DASH] = ACTIONS(5018), + [anon_sym_PLUS_PLUS] = ACTIONS(5018), + [anon_sym_sizeof] = ACTIONS(2975), + [anon_sym___alignof__] = ACTIONS(2295), + [anon_sym___alignof] = ACTIONS(2295), + [anon_sym__alignof] = ACTIONS(2295), + [anon_sym_alignof] = ACTIONS(2295), + [anon_sym__Alignof] = ACTIONS(2295), + [anon_sym_offsetof] = ACTIONS(2297), + [anon_sym__Generic] = ACTIONS(2299), + [anon_sym_asm] = ACTIONS(2301), + [anon_sym___asm__] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2303), + [anon_sym_L_SQUOTE] = ACTIONS(2305), + [anon_sym_u_SQUOTE] = ACTIONS(2305), + [anon_sym_U_SQUOTE] = ACTIONS(2305), + [anon_sym_u8_SQUOTE] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_L_DQUOTE] = ACTIONS(2307), + [anon_sym_u_DQUOTE] = ACTIONS(2307), + [anon_sym_U_DQUOTE] = ACTIONS(2307), + [anon_sym_u8_DQUOTE] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2311), + [anon_sym_nullptr] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(2977), + [anon_sym_R_DQUOTE] = ACTIONS(2317), + [anon_sym_LR_DQUOTE] = ACTIONS(2317), + [anon_sym_uR_DQUOTE] = ACTIONS(2317), + [anon_sym_UR_DQUOTE] = ACTIONS(2317), + [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_co_await] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_requires] = ACTIONS(2323), + [sym_this] = ACTIONS(2309), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2325), + [sym_semgrep_named_ellipsis] = ACTIONS(2327), + }, + [1748] = { + [sym_expression] = STATE(5551), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(5360), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -276680,184 +267892,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1732] = { - [sym_expression] = STATE(5998), - [sym_expression_not_binary] = STATE(6169), - [sym_conditional_expression] = STATE(6267), - [sym_assignment_expression] = STATE(6267), - [sym_pointer_expression] = STATE(4422), - [sym_unary_expression] = STATE(6267), - [sym_binary_expression] = STATE(6169), - [sym_update_expression] = STATE(6267), - [sym_cast_expression] = STATE(6267), - [sym_sizeof_expression] = STATE(6267), - [sym_alignof_expression] = STATE(6267), - [sym_offsetof_expression] = STATE(6267), - [sym_generic_expression] = STATE(6267), - [sym_subscript_expression] = STATE(4422), - [sym_call_expression] = STATE(4422), - [sym_gnu_asm_expression] = STATE(6267), - [sym_field_expression] = STATE(4422), - [sym_compound_literal_expression] = STATE(6267), - [sym_parenthesized_expression] = STATE(4422), - [sym_char_literal] = STATE(6147), - [sym_concatenated_string] = STATE(6147), - [sym_string_literal] = STATE(4563), - [sym_null] = STATE(6267), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9242), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6267), - [sym_raw_string_literal] = STATE(4563), - [sym_co_await_expression] = STATE(6267), - [sym_new_expression] = STATE(6267), - [sym_delete_expression] = STATE(6267), - [sym_requires_clause] = STATE(6267), - [sym_requires_expression] = STATE(6267), - [sym_lambda_expression] = STATE(6267), - [sym_lambda_capture_specifier] = STATE(7263), - [sym_fold_expression] = STATE(6267), - [sym_parameter_pack_expansion] = STATE(6267), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4422), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4422), - [sym_semgrep_ellipsis] = STATE(6169), - [sym_deep_ellipsis] = STATE(6169), - [sym_identifier] = ACTIONS(4112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5054), - [anon_sym_LPAREN2] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_TILDE] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4122), - [anon_sym_not] = ACTIONS(4114), - [anon_sym_compl] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(5056), - [anon_sym_PLUS_PLUS] = ACTIONS(5056), - [anon_sym_sizeof] = ACTIONS(4124), - [anon_sym___alignof__] = ACTIONS(4126), - [anon_sym___alignof] = ACTIONS(4126), - [anon_sym__alignof] = ACTIONS(4126), - [anon_sym_alignof] = ACTIONS(4126), - [anon_sym__Alignof] = ACTIONS(4126), - [anon_sym_offsetof] = ACTIONS(4128), - [anon_sym__Generic] = ACTIONS(4130), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4136), - [anon_sym_u_SQUOTE] = ACTIONS(4136), - [anon_sym_U_SQUOTE] = ACTIONS(4136), - [anon_sym_u8_SQUOTE] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_L_DQUOTE] = ACTIONS(4138), - [anon_sym_u_DQUOTE] = ACTIONS(4138), - [anon_sym_U_DQUOTE] = ACTIONS(4138), - [anon_sym_u8_DQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [anon_sym_NULL] = ACTIONS(4142), - [anon_sym_nullptr] = ACTIONS(4142), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4150), - [anon_sym_requires] = ACTIONS(4152), - [sym_this] = ACTIONS(4140), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4154), - [sym_semgrep_named_ellipsis] = ACTIONS(4156), - }, - [1733] = { - [sym_expression] = STATE(5635), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1749] = { + [sym_expression] = STATE(5553), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -276884,82 +267994,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1734] = { - [sym_expression] = STATE(6003), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1750] = { + [sym_expression] = STATE(5554), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -276986,82 +268096,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1735] = { - [sym_expression] = STATE(5636), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1751] = { + [sym_expression] = STATE(5555), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -277088,184 +268198,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1736] = { - [sym_expression] = STATE(6106), - [sym_expression_not_binary] = STATE(6169), - [sym_conditional_expression] = STATE(6267), - [sym_assignment_expression] = STATE(6267), - [sym_pointer_expression] = STATE(4422), - [sym_unary_expression] = STATE(6267), - [sym_binary_expression] = STATE(6169), - [sym_update_expression] = STATE(6267), - [sym_cast_expression] = STATE(6267), - [sym_sizeof_expression] = STATE(6267), - [sym_alignof_expression] = STATE(6267), - [sym_offsetof_expression] = STATE(6267), - [sym_generic_expression] = STATE(6267), - [sym_subscript_expression] = STATE(4422), - [sym_call_expression] = STATE(4422), - [sym_gnu_asm_expression] = STATE(6267), - [sym_field_expression] = STATE(4422), - [sym_compound_literal_expression] = STATE(6267), - [sym_parenthesized_expression] = STATE(4422), - [sym_char_literal] = STATE(6147), - [sym_concatenated_string] = STATE(6147), - [sym_string_literal] = STATE(4563), - [sym_null] = STATE(6267), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9242), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6267), - [sym_raw_string_literal] = STATE(4563), - [sym_co_await_expression] = STATE(6267), - [sym_new_expression] = STATE(6267), - [sym_delete_expression] = STATE(6267), - [sym_requires_clause] = STATE(6267), - [sym_requires_expression] = STATE(6267), - [sym_lambda_expression] = STATE(6267), - [sym_lambda_capture_specifier] = STATE(7263), - [sym_fold_expression] = STATE(6267), - [sym_parameter_pack_expansion] = STATE(6267), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7113), - [sym_qualified_identifier] = STATE(4422), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4422), - [sym_semgrep_ellipsis] = STATE(6169), - [sym_deep_ellipsis] = STATE(6169), - [sym_identifier] = ACTIONS(4112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5054), - [anon_sym_LPAREN2] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_TILDE] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4122), - [anon_sym_not] = ACTIONS(4114), - [anon_sym_compl] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(5056), - [anon_sym_PLUS_PLUS] = ACTIONS(5056), - [anon_sym_sizeof] = ACTIONS(4124), - [anon_sym___alignof__] = ACTIONS(4126), - [anon_sym___alignof] = ACTIONS(4126), - [anon_sym__alignof] = ACTIONS(4126), - [anon_sym_alignof] = ACTIONS(4126), - [anon_sym__Alignof] = ACTIONS(4126), - [anon_sym_offsetof] = ACTIONS(4128), - [anon_sym__Generic] = ACTIONS(4130), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4136), - [anon_sym_u_SQUOTE] = ACTIONS(4136), - [anon_sym_U_SQUOTE] = ACTIONS(4136), - [anon_sym_u8_SQUOTE] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_L_DQUOTE] = ACTIONS(4138), - [anon_sym_u_DQUOTE] = ACTIONS(4138), - [anon_sym_U_DQUOTE] = ACTIONS(4138), - [anon_sym_u8_DQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [anon_sym_NULL] = ACTIONS(4142), - [anon_sym_nullptr] = ACTIONS(4142), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4150), - [anon_sym_requires] = ACTIONS(4152), - [sym_this] = ACTIONS(4140), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4154), - [sym_semgrep_named_ellipsis] = ACTIONS(4156), - }, - [1737] = { - [sym_expression] = STATE(5642), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1752] = { + [sym_expression] = STATE(5556), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -277292,82 +268300,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1738] = { - [sym_expression] = STATE(6010), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1753] = { + [sym_expression] = STATE(5557), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -277394,82 +268402,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1739] = { - [sym_expression] = STATE(5643), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1754] = { + [sym_expression] = STATE(5558), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -277496,82 +268504,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1740] = { - [sym_expression] = STATE(5653), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1755] = { + [sym_expression] = STATE(5559), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -277598,184 +268606,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1741] = { - [sym_expression] = STATE(3692), - [sym_expression_not_binary] = STATE(4050), - [sym_conditional_expression] = STATE(4000), - [sym_assignment_expression] = STATE(4000), - [sym_pointer_expression] = STATE(4098), - [sym_unary_expression] = STATE(4000), - [sym_binary_expression] = STATE(4050), - [sym_update_expression] = STATE(4000), - [sym_cast_expression] = STATE(4000), - [sym_sizeof_expression] = STATE(4000), - [sym_alignof_expression] = STATE(4000), - [sym_offsetof_expression] = STATE(4000), - [sym_generic_expression] = STATE(4000), - [sym_subscript_expression] = STATE(4098), - [sym_call_expression] = STATE(4098), - [sym_gnu_asm_expression] = STATE(4000), - [sym_field_expression] = STATE(4098), - [sym_compound_literal_expression] = STATE(4000), - [sym_parenthesized_expression] = STATE(4098), - [sym_char_literal] = STATE(3859), - [sym_concatenated_string] = STATE(3859), - [sym_string_literal] = STATE(2218), - [sym_null] = STATE(4000), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9276), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(4000), - [sym_raw_string_literal] = STATE(2218), - [sym_co_await_expression] = STATE(4000), - [sym_new_expression] = STATE(4000), - [sym_delete_expression] = STATE(4000), - [sym_requires_clause] = STATE(4000), - [sym_requires_expression] = STATE(4000), - [sym_lambda_expression] = STATE(4000), - [sym_lambda_capture_specifier] = STATE(7265), - [sym_fold_expression] = STATE(4000), - [sym_parameter_pack_expansion] = STATE(4000), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7172), - [sym_qualified_identifier] = STATE(4098), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4098), - [sym_semgrep_ellipsis] = STATE(4050), - [sym_deep_ellipsis] = STATE(4050), - [sym_identifier] = ACTIONS(2854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2858), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_compl] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2233), - [anon_sym___alignof__] = ACTIONS(2235), - [anon_sym___alignof] = ACTIONS(2235), - [anon_sym__alignof] = ACTIONS(2235), - [anon_sym_alignof] = ACTIONS(2235), - [anon_sym__Alignof] = ACTIONS(2235), - [anon_sym_offsetof] = ACTIONS(2237), - [anon_sym__Generic] = ACTIONS(2239), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym___asm__] = ACTIONS(2241), - [sym_number_literal] = ACTIONS(2243), - [anon_sym_L_SQUOTE] = ACTIONS(2245), - [anon_sym_u_SQUOTE] = ACTIONS(2245), - [anon_sym_U_SQUOTE] = ACTIONS(2245), - [anon_sym_u8_SQUOTE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_L_DQUOTE] = ACTIONS(2247), - [anon_sym_u_DQUOTE] = ACTIONS(2247), - [anon_sym_U_DQUOTE] = ACTIONS(2247), - [anon_sym_u8_DQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2251), - [anon_sym_nullptr] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2261), - [anon_sym_R_DQUOTE] = ACTIONS(2263), - [anon_sym_LR_DQUOTE] = ACTIONS(2263), - [anon_sym_uR_DQUOTE] = ACTIONS(2263), - [anon_sym_UR_DQUOTE] = ACTIONS(2263), - [anon_sym_u8R_DQUOTE] = ACTIONS(2263), - [anon_sym_co_await] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_requires] = ACTIONS(2269), - [sym_this] = ACTIONS(2249), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2271), - [sym_semgrep_named_ellipsis] = ACTIONS(2273), - }, - [1742] = { - [sym_expression] = STATE(5825), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1756] = { + [sym_expression] = STATE(5560), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -277802,388 +268708,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1743] = { - [sym_expression] = STATE(4164), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(5148), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_TILDE] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2987), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2987), - [anon_sym_compl] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(5096), - [anon_sym_PLUS_PLUS] = ACTIONS(5096), - [anon_sym_sizeof] = ACTIONS(2993), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2995), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2997), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1744] = { - [sym_expression] = STATE(4165), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(5148), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_TILDE] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2987), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2987), - [anon_sym_compl] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(5096), - [anon_sym_PLUS_PLUS] = ACTIONS(5096), - [anon_sym_sizeof] = ACTIONS(2993), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2995), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2997), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1745] = { - [sym_expression] = STATE(4166), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5374), - [anon_sym_LPAREN2] = ACTIONS(5442), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_TILDE] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2987), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2987), - [anon_sym_compl] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(5096), - [anon_sym_PLUS_PLUS] = ACTIONS(5096), - [anon_sym_sizeof] = ACTIONS(2993), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2995), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2997), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1746] = { - [sym_expression] = STATE(5833), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1757] = { + [sym_expression] = STATE(5561), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -278210,82 +268810,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1747] = { - [sym_expression] = STATE(5839), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1758] = { + [sym_expression] = STATE(5562), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -278312,82 +268912,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1748] = { - [sym_expression] = STATE(5843), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1759] = { + [sym_expression] = STATE(5564), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -278414,77 +269014,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1749] = { - [sym_expression] = STATE(5844), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1760] = { + [sym_expression] = STATE(4889), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -278516,7 +269116,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -278530,68 +269130,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1750] = { - [sym_expression] = STATE(5846), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1761] = { + [sym_expression] = STATE(5566), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -278618,82 +269218,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1751] = { - [sym_expression] = STATE(5847), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1762] = { + [sym_expression] = STATE(4668), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -278720,82 +269320,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1752] = { - [sym_expression] = STATE(5852), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1763] = { + [sym_expression] = STATE(4669), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -278822,82 +269422,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1753] = { - [sym_expression] = STATE(5896), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1764] = { + [sym_expression] = STATE(4670), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5328), + [anon_sym_LPAREN2] = ACTIONS(5362), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -278924,184 +269524,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1754] = { - [sym_expression] = STATE(4192), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(5148), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_TILDE] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2987), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2987), - [anon_sym_compl] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(5096), - [anon_sym_PLUS_PLUS] = ACTIONS(5096), - [anon_sym_sizeof] = ACTIONS(2993), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2995), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2997), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1755] = { - [sym_expression] = STATE(6059), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(5444), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), + [1765] = { + [sym_expression] = STATE(5567), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(5364), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -279128,82 +269626,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1756] = { - [sym_expression] = STATE(6057), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), + [1766] = { + [sym_expression] = STATE(4671), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(4241), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(4241), + [sym_call_expression] = STATE(4241), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(4241), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(4241), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(4241), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4241), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(4288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_sizeof] = ACTIONS(4296), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -279230,82 +269728,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4298), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), + [anon_sym_co_await] = ACTIONS(4300), + [anon_sym_new] = ACTIONS(4234), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1757] = { - [sym_expression] = STATE(6061), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), + [1767] = { + [sym_expression] = STATE(4774), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5328), + [anon_sym_LPAREN2] = ACTIONS(5366), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -279332,82 +269830,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), + [anon_sym_co_await] = ACTIONS(157), [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1758] = { - [sym_expression] = STATE(6062), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), + [1768] = { + [sym_expression] = STATE(5576), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -279434,82 +269932,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), [anon_sym_uR_DQUOTE] = ACTIONS(155), [anon_sym_UR_DQUOTE] = ACTIONS(155), [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), + [anon_sym_co_await] = ACTIONS(157), [anon_sym_new] = ACTIONS(159), [anon_sym_requires] = ACTIONS(161), [sym_this] = ACTIONS(117), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1759] = { - [sym_expression] = STATE(6063), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), + [1769] = { + [sym_expression] = STATE(5577), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(29), + [anon_sym_compl] = ACTIONS(29), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), [anon_sym___alignof__] = ACTIONS(103), [anon_sym___alignof] = ACTIONS(103), [anon_sym__alignof] = ACTIONS(103), @@ -279536,3271 +270034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), - }, - [1760] = { - [sym_expression] = STATE(6064), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), - }, - [1761] = { - [sym_expression] = STATE(6065), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), - }, - [1762] = { - [sym_expression] = STATE(6066), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), - }, - [1763] = { - [sym_expression] = STATE(6067), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), - }, - [1764] = { - [sym_expression] = STATE(6068), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), - }, - [1765] = { - [sym_expression] = STATE(6070), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), - }, - [1766] = { - [sym_expression] = STATE(6071), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), - }, - [1767] = { - [sym_expression] = STATE(6074), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), - }, - [1768] = { - [sym_expression] = STATE(6076), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), - }, - [1769] = { - [sym_expression] = STATE(4171), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(5148), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_TILDE] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2987), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2987), - [anon_sym_compl] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(5096), - [anon_sym_PLUS_PLUS] = ACTIONS(5096), - [anon_sym_sizeof] = ACTIONS(2993), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2995), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2997), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1770] = { - [sym_expression] = STATE(4172), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(5148), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_TILDE] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2987), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2987), - [anon_sym_compl] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(5096), - [anon_sym_PLUS_PLUS] = ACTIONS(5096), - [anon_sym_sizeof] = ACTIONS(2993), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2995), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2997), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1771] = { - [sym_expression] = STATE(4173), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(5148), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_TILDE] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2987), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2987), - [anon_sym_compl] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(5096), - [anon_sym_PLUS_PLUS] = ACTIONS(5096), - [anon_sym_sizeof] = ACTIONS(2993), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2995), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2997), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1772] = { - [sym_expression] = STATE(4174), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(5148), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_TILDE] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2987), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2987), - [anon_sym_compl] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(5096), - [anon_sym_PLUS_PLUS] = ACTIONS(5096), - [anon_sym_sizeof] = ACTIONS(2993), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2995), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2997), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1773] = { - [sym_expression] = STATE(4175), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(5148), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_TILDE] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2987), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2987), - [anon_sym_compl] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(5096), - [anon_sym_PLUS_PLUS] = ACTIONS(5096), - [anon_sym_sizeof] = ACTIONS(2993), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2995), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2997), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1774] = { - [sym_expression] = STATE(4176), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(5148), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_TILDE] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2987), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2987), - [anon_sym_compl] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(5096), - [anon_sym_PLUS_PLUS] = ACTIONS(5096), - [anon_sym_sizeof] = ACTIONS(2993), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2995), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2997), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1775] = { - [sym_expression] = STATE(4177), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(5148), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_TILDE] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2987), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2987), - [anon_sym_compl] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(5096), - [anon_sym_PLUS_PLUS] = ACTIONS(5096), - [anon_sym_sizeof] = ACTIONS(2993), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2995), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2997), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1776] = { - [sym_expression] = STATE(4178), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(5148), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_TILDE] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2987), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2987), - [anon_sym_compl] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(5096), - [anon_sym_PLUS_PLUS] = ACTIONS(5096), - [anon_sym_sizeof] = ACTIONS(2993), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2995), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2997), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1777] = { - [sym_expression] = STATE(4179), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(5148), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_TILDE] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2987), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2987), - [anon_sym_compl] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(5096), - [anon_sym_PLUS_PLUS] = ACTIONS(5096), - [anon_sym_sizeof] = ACTIONS(2993), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2995), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2997), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1778] = { - [sym_expression] = STATE(4180), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(5148), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_TILDE] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2987), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2987), - [anon_sym_compl] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(5096), - [anon_sym_PLUS_PLUS] = ACTIONS(5096), - [anon_sym_sizeof] = ACTIONS(2993), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2995), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2997), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1779] = { - [sym_expression] = STATE(4167), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(5148), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_TILDE] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2987), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(5446), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2987), - [anon_sym_compl] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(5096), - [anon_sym_PLUS_PLUS] = ACTIONS(5096), - [anon_sym_sizeof] = ACTIONS(2993), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2995), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2997), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1780] = { - [sym_expression] = STATE(4168), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(5148), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_TILDE] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2987), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2987), - [anon_sym_compl] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(5096), - [anon_sym_PLUS_PLUS] = ACTIONS(5096), - [anon_sym_sizeof] = ACTIONS(2993), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2995), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2997), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1781] = { - [sym_expression] = STATE(4169), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(5148), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_TILDE] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2987), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(5448), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2987), - [anon_sym_compl] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(5096), - [anon_sym_PLUS_PLUS] = ACTIONS(5096), - [anon_sym_sizeof] = ACTIONS(2993), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2995), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2997), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1782] = { - [sym_expression] = STATE(4181), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(5148), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_TILDE] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2987), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2987), - [anon_sym_compl] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(5096), - [anon_sym_PLUS_PLUS] = ACTIONS(5096), - [anon_sym_sizeof] = ACTIONS(2993), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2995), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2997), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1783] = { - [sym_expression] = STATE(4185), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(5148), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_TILDE] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2987), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2987), - [anon_sym_compl] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(5096), - [anon_sym_PLUS_PLUS] = ACTIONS(5096), - [anon_sym_sizeof] = ACTIONS(2993), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2995), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2997), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1784] = { - [sym_expression] = STATE(5785), - [sym_expression_not_binary] = STATE(6115), - [sym_conditional_expression] = STATE(6135), - [sym_assignment_expression] = STATE(6135), - [sym_pointer_expression] = STATE(4239), - [sym_unary_expression] = STATE(6135), - [sym_binary_expression] = STATE(6115), - [sym_update_expression] = STATE(6135), - [sym_cast_expression] = STATE(6135), - [sym_sizeof_expression] = STATE(6135), - [sym_alignof_expression] = STATE(6135), - [sym_offsetof_expression] = STATE(6135), - [sym_generic_expression] = STATE(6135), - [sym_subscript_expression] = STATE(4239), - [sym_call_expression] = STATE(4239), - [sym_gnu_asm_expression] = STATE(6135), - [sym_field_expression] = STATE(4239), - [sym_compound_literal_expression] = STATE(6135), - [sym_parenthesized_expression] = STATE(4239), - [sym_char_literal] = STATE(6050), - [sym_concatenated_string] = STATE(6050), - [sym_string_literal] = STATE(4529), - [sym_null] = STATE(6135), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9595), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(6135), - [sym_raw_string_literal] = STATE(4529), - [sym_co_await_expression] = STATE(6135), - [sym_new_expression] = STATE(6135), - [sym_delete_expression] = STATE(6135), - [sym_requires_clause] = STATE(6135), - [sym_requires_expression] = STATE(6135), - [sym_lambda_expression] = STATE(6135), - [sym_lambda_capture_specifier] = STATE(7327), - [sym_fold_expression] = STATE(6135), - [sym_parameter_pack_expansion] = STATE(6135), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7092), - [sym_qualified_identifier] = STATE(4239), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4239), - [sym_semgrep_ellipsis] = STATE(6115), - [sym_deep_ellipsis] = STATE(6115), - [sym_identifier] = ACTIONS(4059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LPAREN2] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(3281), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(4063), - [anon_sym_not] = ACTIONS(3277), - [anon_sym_compl] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_sizeof] = ACTIONS(3297), - [anon_sym___alignof__] = ACTIONS(3299), - [anon_sym___alignof] = ACTIONS(3299), - [anon_sym__alignof] = ACTIONS(3299), - [anon_sym_alignof] = ACTIONS(3299), - [anon_sym__Alignof] = ACTIONS(3299), - [anon_sym_offsetof] = ACTIONS(3301), - [anon_sym__Generic] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3305), - [anon_sym___asm__] = ACTIONS(3305), - [sym_number_literal] = ACTIONS(3307), - [anon_sym_L_SQUOTE] = ACTIONS(3309), - [anon_sym_u_SQUOTE] = ACTIONS(3309), - [anon_sym_U_SQUOTE] = ACTIONS(3309), - [anon_sym_u8_SQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_L_DQUOTE] = ACTIONS(3311), - [anon_sym_u_DQUOTE] = ACTIONS(3311), - [anon_sym_U_DQUOTE] = ACTIONS(3311), - [anon_sym_u8_DQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [anon_sym_NULL] = ACTIONS(3315), - [anon_sym_nullptr] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3313), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3335), - [sym_semgrep_named_ellipsis] = ACTIONS(3337), - }, - [1785] = { - [sym_expression] = STATE(4187), - [sym_expression_not_binary] = STATE(3229), - [sym_conditional_expression] = STATE(3168), - [sym_assignment_expression] = STATE(3168), - [sym_pointer_expression] = STATE(3202), - [sym_unary_expression] = STATE(3168), - [sym_binary_expression] = STATE(3229), - [sym_update_expression] = STATE(3168), - [sym_cast_expression] = STATE(3168), - [sym_sizeof_expression] = STATE(3168), - [sym_alignof_expression] = STATE(3168), - [sym_offsetof_expression] = STATE(3168), - [sym_generic_expression] = STATE(3168), - [sym_subscript_expression] = STATE(3202), - [sym_call_expression] = STATE(3202), - [sym_gnu_asm_expression] = STATE(3168), - [sym_field_expression] = STATE(3202), - [sym_compound_literal_expression] = STATE(3168), - [sym_parenthesized_expression] = STATE(3202), - [sym_char_literal] = STATE(3138), - [sym_concatenated_string] = STATE(3138), - [sym_string_literal] = STATE(1968), - [sym_null] = STATE(3168), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9309), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(3168), - [sym_raw_string_literal] = STATE(1968), - [sym_co_await_expression] = STATE(3168), - [sym_new_expression] = STATE(3168), - [sym_delete_expression] = STATE(3168), - [sym_requires_clause] = STATE(3168), - [sym_requires_expression] = STATE(3168), - [sym_lambda_expression] = STATE(3168), - [sym_lambda_capture_specifier] = STATE(7313), - [sym_fold_expression] = STATE(3168), - [sym_parameter_pack_expansion] = STATE(3168), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3202), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3202), - [sym_semgrep_ellipsis] = STATE(3229), - [sym_deep_ellipsis] = STATE(3229), - [sym_identifier] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(5148), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_TILDE] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2987), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2987), - [anon_sym_compl] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(5096), - [anon_sym_PLUS_PLUS] = ACTIONS(5096), - [anon_sym_sizeof] = ACTIONS(2993), - [anon_sym___alignof__] = ACTIONS(2343), - [anon_sym___alignof] = ACTIONS(2343), - [anon_sym__alignof] = ACTIONS(2343), - [anon_sym_alignof] = ACTIONS(2343), - [anon_sym__Alignof] = ACTIONS(2343), - [anon_sym_offsetof] = ACTIONS(2345), - [anon_sym__Generic] = ACTIONS(2347), - [anon_sym_asm] = ACTIONS(2349), - [anon_sym___asm__] = ACTIONS(2349), - [sym_number_literal] = ACTIONS(2351), - [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(2355), - [anon_sym_u_DQUOTE] = ACTIONS(2355), - [anon_sym_U_DQUOTE] = ACTIONS(2355), - [anon_sym_u8_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2359), - [anon_sym_nullptr] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(2995), - [anon_sym_R_DQUOTE] = ACTIONS(2363), - [anon_sym_LR_DQUOTE] = ACTIONS(2363), - [anon_sym_uR_DQUOTE] = ACTIONS(2363), - [anon_sym_UR_DQUOTE] = ACTIONS(2363), - [anon_sym_u8R_DQUOTE] = ACTIONS(2363), - [anon_sym_co_await] = ACTIONS(2997), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_requires] = ACTIONS(2369), - [sym_this] = ACTIONS(2357), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(2371), - [sym_semgrep_named_ellipsis] = ACTIONS(2373), - }, - [1786] = { - [sym_expression] = STATE(6085), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), - }, - [1787] = { - [sym_expression] = STATE(6087), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), - }, - [1788] = { - [sym_expression] = STATE(6088), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5378), - [anon_sym_LPAREN2] = ACTIONS(5450), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), - }, - [1789] = { - [sym_expression] = STATE(6089), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(5452), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), - }, - [1790] = { - [sym_expression] = STATE(6090), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(4538), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(4538), - [sym_call_expression] = STATE(4538), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(4538), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(4538), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(4538), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(4538), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(4098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5146), - [anon_sym_COLON_COLON] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_sizeof] = ACTIONS(4106), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(4108), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(4110), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), - }, - [1791] = { - [sym_expression] = STATE(6094), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -282814,63 +270048,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1792] = { - [sym_expression] = STATE(6096), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1770] = { + [sym_expression] = STATE(5578), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -282902,7 +270136,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -282916,63 +270150,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1793] = { - [sym_expression] = STATE(6097), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1771] = { + [sym_expression] = STATE(5579), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -283004,7 +270238,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -283018,63 +270252,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1794] = { - [sym_expression] = STATE(6098), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1772] = { + [sym_expression] = STATE(5580), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -283106,7 +270340,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -283120,63 +270354,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1795] = { - [sym_expression] = STATE(6099), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1773] = { + [sym_expression] = STATE(5581), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -283208,7 +270442,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -283222,63 +270456,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1796] = { - [sym_expression] = STATE(6100), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), + [1774] = { + [sym_expression] = STATE(5582), + [sym_expression_not_binary] = STATE(4265), + [sym_conditional_expression] = STATE(4249), + [sym_assignment_expression] = STATE(4249), + [sym_pointer_expression] = STATE(3522), + [sym_unary_expression] = STATE(4249), + [sym_binary_expression] = STATE(4265), + [sym_update_expression] = STATE(4249), + [sym_cast_expression] = STATE(4249), + [sym_sizeof_expression] = STATE(4249), + [sym_alignof_expression] = STATE(4249), + [sym_offsetof_expression] = STATE(4249), + [sym_generic_expression] = STATE(4249), + [sym_subscript_expression] = STATE(3522), + [sym_call_expression] = STATE(3522), + [sym_gnu_asm_expression] = STATE(4249), + [sym_field_expression] = STATE(3522), + [sym_compound_literal_expression] = STATE(4249), + [sym_parenthesized_expression] = STATE(3522), + [sym_char_literal] = STATE(4812), + [sym_concatenated_string] = STATE(4812), + [sym_string_literal] = STATE(3238), + [sym_null] = STATE(4249), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(8970), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(4249), + [sym_raw_string_literal] = STATE(3238), + [sym_co_await_expression] = STATE(4249), + [sym_new_expression] = STATE(4249), + [sym_delete_expression] = STATE(4249), + [sym_requires_clause] = STATE(4249), + [sym_requires_expression] = STATE(4249), + [sym_lambda_expression] = STATE(4249), + [sym_lambda_capture_specifier] = STATE(6868), + [sym_fold_expression] = STATE(4249), + [sym_parameter_pack_expansion] = STATE(4249), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6593), + [sym_qualified_identifier] = STATE(3522), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(3522), + [sym_semgrep_ellipsis] = STATE(4265), + [sym_deep_ellipsis] = STATE(4265), + [sym_identifier] = ACTIONS(3135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_DASH] = ACTIONS(29), [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(2363), [anon_sym_not] = ACTIONS(29), [anon_sym_compl] = ACTIONS(29), [anon_sym_DASH_DASH] = ACTIONS(99), @@ -283310,7 +270544,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_delete] = ACTIONS(139), [anon_sym_R_DQUOTE] = ACTIONS(155), [anon_sym_LR_DQUOTE] = ACTIONS(155), @@ -283324,894 +270558,297 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), [sym_semgrep_named_ellipsis] = ACTIONS(167), }, - [1797] = { - [sym_expression] = STATE(6101), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), + [1775] = { + [sym_expression] = STATE(5483), + [sym_expression_not_binary] = STATE(5685), + [sym_conditional_expression] = STATE(5675), + [sym_assignment_expression] = STATE(5675), + [sym_pointer_expression] = STATE(4201), + [sym_unary_expression] = STATE(5675), + [sym_binary_expression] = STATE(5685), + [sym_update_expression] = STATE(5675), + [sym_cast_expression] = STATE(5675), + [sym_sizeof_expression] = STATE(5675), + [sym_alignof_expression] = STATE(5675), + [sym_offsetof_expression] = STATE(5675), + [sym_generic_expression] = STATE(5675), + [sym_subscript_expression] = STATE(4201), + [sym_call_expression] = STATE(4201), + [sym_gnu_asm_expression] = STATE(5675), + [sym_field_expression] = STATE(4201), + [sym_compound_literal_expression] = STATE(5675), + [sym_parenthesized_expression] = STATE(4201), + [sym_char_literal] = STATE(5600), + [sym_concatenated_string] = STATE(5600), + [sym_string_literal] = STATE(4359), + [sym_null] = STATE(5675), + [sym_decltype] = STATE(9605), + [sym_class_name] = STATE(9034), + [sym_template_type] = STATE(3094), + [sym_template_function] = STATE(5675), + [sym_raw_string_literal] = STATE(4359), + [sym_co_await_expression] = STATE(5675), + [sym_new_expression] = STATE(5675), + [sym_delete_expression] = STATE(5675), + [sym_requires_clause] = STATE(5675), + [sym_requires_expression] = STATE(5675), + [sym_lambda_expression] = STATE(5675), + [sym_lambda_capture_specifier] = STATE(6898), + [sym_fold_expression] = STATE(5675), + [sym_parameter_pack_expansion] = STATE(5675), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6585), + [sym_qualified_identifier] = STATE(4201), + [sym_qualified_type_identifier] = STATE(3098), + [sym_user_defined_literal] = STATE(4201), + [sym_semgrep_ellipsis] = STATE(5685), + [sym_deep_ellipsis] = STATE(5685), + [sym_identifier] = ACTIONS(4242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4954), + [anon_sym_LPAREN2] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_TILDE] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_COLON_COLON] = ACTIONS(4248), + [anon_sym_LBRACK] = ACTIONS(5368), + [sym_primitive_type] = ACTIONS(4252), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4956), + [anon_sym_PLUS_PLUS] = ACTIONS(4956), + [anon_sym_sizeof] = ACTIONS(4254), + [anon_sym___alignof__] = ACTIONS(4256), + [anon_sym___alignof] = ACTIONS(4256), + [anon_sym__alignof] = ACTIONS(4256), + [anon_sym_alignof] = ACTIONS(4256), + [anon_sym__Alignof] = ACTIONS(4256), + [anon_sym_offsetof] = ACTIONS(4258), + [anon_sym__Generic] = ACTIONS(4260), + [anon_sym_asm] = ACTIONS(4262), + [anon_sym___asm__] = ACTIONS(4262), + [sym_number_literal] = ACTIONS(4264), + [anon_sym_L_SQUOTE] = ACTIONS(4266), + [anon_sym_u_SQUOTE] = ACTIONS(4266), + [anon_sym_U_SQUOTE] = ACTIONS(4266), + [anon_sym_u8_SQUOTE] = ACTIONS(4266), + [anon_sym_SQUOTE] = ACTIONS(4266), + [anon_sym_L_DQUOTE] = ACTIONS(4268), + [anon_sym_u_DQUOTE] = ACTIONS(4268), + [anon_sym_U_DQUOTE] = ACTIONS(4268), + [anon_sym_u8_DQUOTE] = ACTIONS(4268), + [anon_sym_DQUOTE] = ACTIONS(4268), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4272), + [anon_sym_nullptr] = ACTIONS(4272), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_delete] = ACTIONS(4274), + [anon_sym_R_DQUOTE] = ACTIONS(4276), + [anon_sym_LR_DQUOTE] = ACTIONS(4276), + [anon_sym_uR_DQUOTE] = ACTIONS(4276), + [anon_sym_UR_DQUOTE] = ACTIONS(4276), + [anon_sym_u8R_DQUOTE] = ACTIONS(4276), + [anon_sym_co_await] = ACTIONS(4278), + [anon_sym_new] = ACTIONS(4280), + [anon_sym_requires] = ACTIONS(4282), + [sym_this] = ACTIONS(4270), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4284), + [sym_semgrep_named_ellipsis] = ACTIONS(4286), }, - [1798] = { - [sym_expression] = STATE(6102), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), + [1776] = { + [sym_identifier] = ACTIONS(3609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3611), + [anon_sym_LPAREN2] = ACTIONS(3611), + [anon_sym_BANG] = ACTIONS(3611), + [anon_sym_TILDE] = ACTIONS(3611), + [anon_sym_DASH] = ACTIONS(3609), + [anon_sym_PLUS] = ACTIONS(3609), + [anon_sym_STAR] = ACTIONS(3611), + [anon_sym_AMP] = ACTIONS(3611), + [anon_sym___extension__] = ACTIONS(3609), + [anon_sym_extern] = ACTIONS(3609), + [anon_sym___attribute__] = ACTIONS(3609), + [anon_sym_COLON_COLON] = ACTIONS(3611), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3611), + [anon_sym___declspec] = ACTIONS(3609), + [anon_sym_signed] = ACTIONS(3609), + [anon_sym_unsigned] = ACTIONS(3609), + [anon_sym_long] = ACTIONS(3609), + [anon_sym_short] = ACTIONS(3609), + [anon_sym_LBRACK] = ACTIONS(3609), + [anon_sym_static] = ACTIONS(3609), + [anon_sym_register] = ACTIONS(3609), + [anon_sym_inline] = ACTIONS(3609), + [anon_sym___inline] = ACTIONS(3609), + [anon_sym___inline__] = ACTIONS(3609), + [anon_sym___forceinline] = ACTIONS(3609), + [anon_sym_thread_local] = ACTIONS(3609), + [anon_sym___thread] = ACTIONS(3609), + [anon_sym_const] = ACTIONS(3609), + [anon_sym_constexpr] = ACTIONS(3609), + [anon_sym_volatile] = ACTIONS(3609), + [anon_sym_restrict] = ACTIONS(3609), + [anon_sym___restrict__] = ACTIONS(3609), + [anon_sym__Atomic] = ACTIONS(3609), + [anon_sym__Noreturn] = ACTIONS(3609), + [anon_sym_noreturn] = ACTIONS(3609), + [anon_sym_mutable] = ACTIONS(3609), + [anon_sym_constinit] = ACTIONS(3609), + [anon_sym_consteval] = ACTIONS(3609), + [sym_primitive_type] = ACTIONS(3609), + [anon_sym_enum] = ACTIONS(3609), + [anon_sym_class] = ACTIONS(3609), + [anon_sym_struct] = ACTIONS(3609), + [anon_sym_union] = ACTIONS(3609), + [anon_sym_not] = ACTIONS(3609), + [anon_sym_compl] = ACTIONS(3609), + [anon_sym_DASH_DASH] = ACTIONS(3611), + [anon_sym_PLUS_PLUS] = ACTIONS(3611), + [anon_sym_sizeof] = ACTIONS(3609), + [anon_sym___alignof__] = ACTIONS(3609), + [anon_sym___alignof] = ACTIONS(3609), + [anon_sym__alignof] = ACTIONS(3609), + [anon_sym_alignof] = ACTIONS(3609), + [anon_sym__Alignof] = ACTIONS(3609), + [anon_sym_offsetof] = ACTIONS(3609), + [anon_sym__Generic] = ACTIONS(3609), + [anon_sym_asm] = ACTIONS(3609), + [anon_sym___asm__] = ACTIONS(3609), + [sym_number_literal] = ACTIONS(3611), + [anon_sym_L_SQUOTE] = ACTIONS(3611), + [anon_sym_u_SQUOTE] = ACTIONS(3611), + [anon_sym_U_SQUOTE] = ACTIONS(3611), + [anon_sym_u8_SQUOTE] = ACTIONS(3611), + [anon_sym_SQUOTE] = ACTIONS(3611), + [anon_sym_L_DQUOTE] = ACTIONS(3611), + [anon_sym_u_DQUOTE] = ACTIONS(3611), + [anon_sym_U_DQUOTE] = ACTIONS(3611), + [anon_sym_u8_DQUOTE] = ACTIONS(3611), + [anon_sym_DQUOTE] = ACTIONS(3611), + [sym_true] = ACTIONS(3609), + [sym_false] = ACTIONS(3609), + [anon_sym_NULL] = ACTIONS(3609), + [anon_sym_nullptr] = ACTIONS(3609), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3609), + [anon_sym_decltype] = ACTIONS(3609), + [anon_sym_virtual] = ACTIONS(3609), + [anon_sym_alignas] = ACTIONS(3609), + [anon_sym_typename] = ACTIONS(3609), + [anon_sym_template] = ACTIONS(3609), + [anon_sym_delete] = ACTIONS(3609), + [anon_sym_R_DQUOTE] = ACTIONS(3611), + [anon_sym_LR_DQUOTE] = ACTIONS(3611), + [anon_sym_uR_DQUOTE] = ACTIONS(3611), + [anon_sym_UR_DQUOTE] = ACTIONS(3611), + [anon_sym_u8R_DQUOTE] = ACTIONS(3611), + [anon_sym_co_await] = ACTIONS(3609), + [anon_sym_new] = ACTIONS(3609), + [anon_sym_requires] = ACTIONS(3609), + [sym_this] = ACTIONS(3609), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3611), + [sym_semgrep_named_ellipsis] = ACTIONS(3611), }, - [1799] = { - [sym_expression] = STATE(6103), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), + [1777] = { + [sym_identifier] = ACTIONS(3223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3225), + [anon_sym_LPAREN2] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3225), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(3223), + [anon_sym_PLUS] = ACTIONS(3223), + [anon_sym_STAR] = ACTIONS(3225), + [anon_sym_AMP] = ACTIONS(3225), + [anon_sym___extension__] = ACTIONS(3223), + [anon_sym_extern] = ACTIONS(3223), + [anon_sym___attribute__] = ACTIONS(3223), + [anon_sym_COLON_COLON] = ACTIONS(3225), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3225), + [anon_sym___declspec] = ACTIONS(3223), + [anon_sym_signed] = ACTIONS(3223), + [anon_sym_unsigned] = ACTIONS(3223), + [anon_sym_long] = ACTIONS(3223), + [anon_sym_short] = ACTIONS(3223), + [anon_sym_LBRACK] = ACTIONS(3223), + [anon_sym_static] = ACTIONS(3223), + [anon_sym_register] = ACTIONS(3223), + [anon_sym_inline] = ACTIONS(3223), + [anon_sym___inline] = ACTIONS(3223), + [anon_sym___inline__] = ACTIONS(3223), + [anon_sym___forceinline] = ACTIONS(3223), + [anon_sym_thread_local] = ACTIONS(3223), + [anon_sym___thread] = ACTIONS(3223), + [anon_sym_const] = ACTIONS(3223), + [anon_sym_constexpr] = ACTIONS(3223), + [anon_sym_volatile] = ACTIONS(3223), + [anon_sym_restrict] = ACTIONS(3223), + [anon_sym___restrict__] = ACTIONS(3223), + [anon_sym__Atomic] = ACTIONS(3223), + [anon_sym__Noreturn] = ACTIONS(3223), + [anon_sym_noreturn] = ACTIONS(3223), + [anon_sym_mutable] = ACTIONS(3223), + [anon_sym_constinit] = ACTIONS(3223), + [anon_sym_consteval] = ACTIONS(3223), + [sym_primitive_type] = ACTIONS(3223), + [anon_sym_enum] = ACTIONS(3223), + [anon_sym_class] = ACTIONS(3223), + [anon_sym_struct] = ACTIONS(3223), + [anon_sym_union] = ACTIONS(3223), + [anon_sym_not] = ACTIONS(3223), + [anon_sym_compl] = ACTIONS(3223), + [anon_sym_DASH_DASH] = ACTIONS(3225), + [anon_sym_PLUS_PLUS] = ACTIONS(3225), + [anon_sym_sizeof] = ACTIONS(3223), + [anon_sym___alignof__] = ACTIONS(3223), + [anon_sym___alignof] = ACTIONS(3223), + [anon_sym__alignof] = ACTIONS(3223), + [anon_sym_alignof] = ACTIONS(3223), + [anon_sym__Alignof] = ACTIONS(3223), + [anon_sym_offsetof] = ACTIONS(3223), + [anon_sym__Generic] = ACTIONS(3223), + [anon_sym_asm] = ACTIONS(3223), + [anon_sym___asm__] = ACTIONS(3223), + [sym_number_literal] = ACTIONS(3225), + [anon_sym_L_SQUOTE] = ACTIONS(3225), + [anon_sym_u_SQUOTE] = ACTIONS(3225), + [anon_sym_U_SQUOTE] = ACTIONS(3225), + [anon_sym_u8_SQUOTE] = ACTIONS(3225), + [anon_sym_SQUOTE] = ACTIONS(3225), + [anon_sym_L_DQUOTE] = ACTIONS(3225), + [anon_sym_u_DQUOTE] = ACTIONS(3225), + [anon_sym_U_DQUOTE] = ACTIONS(3225), + [anon_sym_u8_DQUOTE] = ACTIONS(3225), + [anon_sym_DQUOTE] = ACTIONS(3225), + [sym_true] = ACTIONS(3223), + [sym_false] = ACTIONS(3223), + [anon_sym_NULL] = ACTIONS(3223), + [anon_sym_nullptr] = ACTIONS(3223), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), - }, - [1800] = { - [sym_expression] = STATE(6104), - [sym_expression_not_binary] = STATE(5260), - [sym_conditional_expression] = STATE(5251), - [sym_assignment_expression] = STATE(5251), - [sym_pointer_expression] = STATE(3551), - [sym_unary_expression] = STATE(5251), - [sym_binary_expression] = STATE(5260), - [sym_update_expression] = STATE(5251), - [sym_cast_expression] = STATE(5251), - [sym_sizeof_expression] = STATE(5251), - [sym_alignof_expression] = STATE(5251), - [sym_offsetof_expression] = STATE(5251), - [sym_generic_expression] = STATE(5251), - [sym_subscript_expression] = STATE(3551), - [sym_call_expression] = STATE(3551), - [sym_gnu_asm_expression] = STATE(5251), - [sym_field_expression] = STATE(3551), - [sym_compound_literal_expression] = STATE(5251), - [sym_parenthesized_expression] = STATE(3551), - [sym_char_literal] = STATE(5269), - [sym_concatenated_string] = STATE(5269), - [sym_string_literal] = STATE(3553), - [sym_null] = STATE(5251), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9415), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5251), - [sym_raw_string_literal] = STATE(3553), - [sym_co_await_expression] = STATE(5251), - [sym_new_expression] = STATE(5251), - [sym_delete_expression] = STATE(5251), - [sym_requires_clause] = STATE(5251), - [sym_requires_expression] = STATE(5251), - [sym_lambda_expression] = STATE(5251), - [sym_lambda_capture_specifier] = STATE(7262), - [sym_fold_expression] = STATE(5251), - [sym_parameter_pack_expansion] = STATE(5251), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7079), - [sym_qualified_identifier] = STATE(3551), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3551), - [sym_semgrep_ellipsis] = STATE(5260), - [sym_deep_ellipsis] = STATE(5260), - [sym_identifier] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_LPAREN2] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(29), - [anon_sym_compl] = ACTIONS(29), - [anon_sym_DASH_DASH] = ACTIONS(99), - [anon_sym_PLUS_PLUS] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(101), - [anon_sym___alignof__] = ACTIONS(103), - [anon_sym___alignof] = ACTIONS(103), - [anon_sym__alignof] = ACTIONS(103), - [anon_sym_alignof] = ACTIONS(103), - [anon_sym__Alignof] = ACTIONS(103), - [anon_sym_offsetof] = ACTIONS(105), - [anon_sym__Generic] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym___asm__] = ACTIONS(109), - [sym_number_literal] = ACTIONS(111), - [anon_sym_L_SQUOTE] = ACTIONS(113), - [anon_sym_u_SQUOTE] = ACTIONS(113), - [anon_sym_U_SQUOTE] = ACTIONS(113), - [anon_sym_u8_SQUOTE] = ACTIONS(113), - [anon_sym_SQUOTE] = ACTIONS(113), - [anon_sym_L_DQUOTE] = ACTIONS(115), - [anon_sym_u_DQUOTE] = ACTIONS(115), - [anon_sym_U_DQUOTE] = ACTIONS(115), - [anon_sym_u8_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_true] = ACTIONS(117), - [sym_false] = ACTIONS(117), - [anon_sym_NULL] = ACTIONS(119), - [anon_sym_nullptr] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(139), - [anon_sym_R_DQUOTE] = ACTIONS(155), - [anon_sym_LR_DQUOTE] = ACTIONS(155), - [anon_sym_uR_DQUOTE] = ACTIONS(155), - [anon_sym_UR_DQUOTE] = ACTIONS(155), - [anon_sym_u8R_DQUOTE] = ACTIONS(155), - [anon_sym_co_await] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_requires] = ACTIONS(161), - [sym_this] = ACTIONS(117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(165), - [sym_semgrep_named_ellipsis] = ACTIONS(167), - }, - [1801] = { - [sym_expression] = STATE(5431), - [sym_expression_not_binary] = STATE(5540), - [sym_conditional_expression] = STATE(5537), - [sym_assignment_expression] = STATE(5537), - [sym_pointer_expression] = STATE(3745), - [sym_unary_expression] = STATE(5537), - [sym_binary_expression] = STATE(5540), - [sym_update_expression] = STATE(5537), - [sym_cast_expression] = STATE(5537), - [sym_sizeof_expression] = STATE(5537), - [sym_alignof_expression] = STATE(5537), - [sym_offsetof_expression] = STATE(5537), - [sym_generic_expression] = STATE(5537), - [sym_subscript_expression] = STATE(3745), - [sym_call_expression] = STATE(3745), - [sym_gnu_asm_expression] = STATE(5537), - [sym_field_expression] = STATE(3745), - [sym_compound_literal_expression] = STATE(5537), - [sym_parenthesized_expression] = STATE(3745), - [sym_char_literal] = STATE(5453), - [sym_concatenated_string] = STATE(5453), - [sym_string_literal] = STATE(3936), - [sym_null] = STATE(5537), - [sym_decltype] = STATE(9982), - [sym_class_name] = STATE(9333), - [sym_template_type] = STATE(4736), - [sym_template_function] = STATE(5537), - [sym_raw_string_literal] = STATE(3936), - [sym_co_await_expression] = STATE(5537), - [sym_new_expression] = STATE(5537), - [sym_delete_expression] = STATE(5537), - [sym_requires_clause] = STATE(5537), - [sym_requires_expression] = STATE(5537), - [sym_lambda_expression] = STATE(5537), - [sym_lambda_capture_specifier] = STATE(7261), - [sym_fold_expression] = STATE(5537), - [sym_parameter_pack_expansion] = STATE(5537), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7138), - [sym_qualified_identifier] = STATE(3745), - [sym_qualified_type_identifier] = STATE(4648), - [sym_user_defined_literal] = STATE(3745), - [sym_semgrep_ellipsis] = STATE(5540), - [sym_deep_ellipsis] = STATE(5540), - [sym_identifier] = ACTIONS(5032), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5034), - [anon_sym_LPAREN2] = ACTIONS(5112), - [anon_sym_BANG] = ACTIONS(3820), - [anon_sym_TILDE] = ACTIONS(3820), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_AMP] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(3822), - [anon_sym_LBRACK] = ACTIONS(3049), - [sym_primitive_type] = ACTIONS(3826), - [anon_sym_not] = ACTIONS(3818), - [anon_sym_compl] = ACTIONS(3818), - [anon_sym_DASH_DASH] = ACTIONS(5036), - [anon_sym_PLUS_PLUS] = ACTIONS(5036), - [anon_sym_sizeof] = ACTIONS(3828), - [anon_sym___alignof__] = ACTIONS(3830), - [anon_sym___alignof] = ACTIONS(3830), - [anon_sym__alignof] = ACTIONS(3830), - [anon_sym_alignof] = ACTIONS(3830), - [anon_sym__Alignof] = ACTIONS(3830), - [anon_sym_offsetof] = ACTIONS(3832), - [anon_sym__Generic] = ACTIONS(3834), - [anon_sym_asm] = ACTIONS(3836), - [anon_sym___asm__] = ACTIONS(3836), - [sym_number_literal] = ACTIONS(3838), - [anon_sym_L_SQUOTE] = ACTIONS(3840), - [anon_sym_u_SQUOTE] = ACTIONS(3840), - [anon_sym_U_SQUOTE] = ACTIONS(3840), - [anon_sym_u8_SQUOTE] = ACTIONS(3840), - [anon_sym_SQUOTE] = ACTIONS(3840), - [anon_sym_L_DQUOTE] = ACTIONS(3842), - [anon_sym_u_DQUOTE] = ACTIONS(3842), - [anon_sym_U_DQUOTE] = ACTIONS(3842), - [anon_sym_u8_DQUOTE] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym_true] = ACTIONS(3844), - [sym_false] = ACTIONS(3844), - [anon_sym_NULL] = ACTIONS(3846), - [anon_sym_nullptr] = ACTIONS(3846), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_delete] = ACTIONS(3848), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), - [anon_sym_co_await] = ACTIONS(3852), - [anon_sym_new] = ACTIONS(3854), - [anon_sym_requires] = ACTIONS(3856), - [sym_this] = ACTIONS(3844), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3858), - [sym_semgrep_named_ellipsis] = ACTIONS(3860), - }, - [1802] = { - [sym_identifier] = ACTIONS(3179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3181), - [anon_sym_LPAREN2] = ACTIONS(3181), - [anon_sym_BANG] = ACTIONS(3181), - [anon_sym_TILDE] = ACTIONS(3181), - [anon_sym_DASH] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_STAR] = ACTIONS(3181), - [anon_sym_AMP] = ACTIONS(3181), - [anon_sym_SEMI] = ACTIONS(3181), - [anon_sym___extension__] = ACTIONS(3179), - [anon_sym_extern] = ACTIONS(3179), - [anon_sym___attribute__] = ACTIONS(3179), - [anon_sym_COLON_COLON] = ACTIONS(3181), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3181), - [anon_sym___declspec] = ACTIONS(3179), - [anon_sym_signed] = ACTIONS(3179), - [anon_sym_unsigned] = ACTIONS(3179), - [anon_sym_long] = ACTIONS(3179), - [anon_sym_short] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_static] = ACTIONS(3179), - [anon_sym_register] = ACTIONS(3179), - [anon_sym_inline] = ACTIONS(3179), - [anon_sym___inline] = ACTIONS(3179), - [anon_sym___inline__] = ACTIONS(3179), - [anon_sym___forceinline] = ACTIONS(3179), - [anon_sym_thread_local] = ACTIONS(3179), - [anon_sym___thread] = ACTIONS(3179), - [anon_sym_const] = ACTIONS(3179), - [anon_sym_constexpr] = ACTIONS(3179), - [anon_sym_volatile] = ACTIONS(3179), - [anon_sym_restrict] = ACTIONS(3179), - [anon_sym___restrict__] = ACTIONS(3179), - [anon_sym__Atomic] = ACTIONS(3179), - [anon_sym__Noreturn] = ACTIONS(3179), - [anon_sym_noreturn] = ACTIONS(3179), - [anon_sym_mutable] = ACTIONS(3179), - [anon_sym_constinit] = ACTIONS(3179), - [anon_sym_consteval] = ACTIONS(3179), - [sym_primitive_type] = ACTIONS(3179), - [anon_sym_enum] = ACTIONS(3179), - [anon_sym_class] = ACTIONS(3179), - [anon_sym_struct] = ACTIONS(3179), - [anon_sym_union] = ACTIONS(3179), - [anon_sym_not] = ACTIONS(3179), - [anon_sym_compl] = ACTIONS(3179), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_sizeof] = ACTIONS(3179), - [anon_sym___alignof__] = ACTIONS(3179), - [anon_sym___alignof] = ACTIONS(3179), - [anon_sym__alignof] = ACTIONS(3179), - [anon_sym_alignof] = ACTIONS(3179), - [anon_sym__Alignof] = ACTIONS(3179), - [anon_sym_offsetof] = ACTIONS(3179), - [anon_sym__Generic] = ACTIONS(3179), - [anon_sym_asm] = ACTIONS(3179), - [anon_sym___asm__] = ACTIONS(3179), - [sym_number_literal] = ACTIONS(3181), - [anon_sym_L_SQUOTE] = ACTIONS(3181), - [anon_sym_u_SQUOTE] = ACTIONS(3181), - [anon_sym_U_SQUOTE] = ACTIONS(3181), - [anon_sym_u8_SQUOTE] = ACTIONS(3181), - [anon_sym_SQUOTE] = ACTIONS(3181), - [anon_sym_L_DQUOTE] = ACTIONS(3181), - [anon_sym_u_DQUOTE] = ACTIONS(3181), - [anon_sym_U_DQUOTE] = ACTIONS(3181), - [anon_sym_u8_DQUOTE] = ACTIONS(3181), - [anon_sym_DQUOTE] = ACTIONS(3181), - [sym_true] = ACTIONS(3179), - [sym_false] = ACTIONS(3179), - [anon_sym_NULL] = ACTIONS(3179), - [anon_sym_nullptr] = ACTIONS(3179), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3179), - [anon_sym_decltype] = ACTIONS(3179), - [anon_sym_virtual] = ACTIONS(3179), - [anon_sym_alignas] = ACTIONS(3179), - [anon_sym_typename] = ACTIONS(3179), - [anon_sym_template] = ACTIONS(3179), - [anon_sym_delete] = ACTIONS(3179), - [anon_sym_R_DQUOTE] = ACTIONS(3181), - [anon_sym_LR_DQUOTE] = ACTIONS(3181), - [anon_sym_uR_DQUOTE] = ACTIONS(3181), - [anon_sym_UR_DQUOTE] = ACTIONS(3181), - [anon_sym_u8R_DQUOTE] = ACTIONS(3181), - [anon_sym_co_await] = ACTIONS(3179), - [anon_sym_new] = ACTIONS(3179), - [anon_sym_requires] = ACTIONS(3179), - [sym_this] = ACTIONS(3179), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3181), - [sym_semgrep_named_ellipsis] = ACTIONS(3181), - }, - [1803] = { - [sym_identifier] = ACTIONS(3491), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3493), - [anon_sym_LPAREN2] = ACTIONS(3493), - [anon_sym_BANG] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(3493), - [anon_sym_DASH] = ACTIONS(3491), - [anon_sym_PLUS] = ACTIONS(3491), - [anon_sym_STAR] = ACTIONS(3493), - [anon_sym_AMP] = ACTIONS(3493), - [anon_sym___extension__] = ACTIONS(3491), - [anon_sym_extern] = ACTIONS(3491), - [anon_sym___attribute__] = ACTIONS(3491), - [anon_sym_COLON_COLON] = ACTIONS(3493), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3493), - [anon_sym___declspec] = ACTIONS(3491), - [anon_sym_signed] = ACTIONS(3491), - [anon_sym_unsigned] = ACTIONS(3491), - [anon_sym_long] = ACTIONS(3491), - [anon_sym_short] = ACTIONS(3491), - [anon_sym_LBRACK] = ACTIONS(3491), - [anon_sym_static] = ACTIONS(3491), - [anon_sym_register] = ACTIONS(3491), - [anon_sym_inline] = ACTIONS(3491), - [anon_sym___inline] = ACTIONS(3491), - [anon_sym___inline__] = ACTIONS(3491), - [anon_sym___forceinline] = ACTIONS(3491), - [anon_sym_thread_local] = ACTIONS(3491), - [anon_sym___thread] = ACTIONS(3491), - [anon_sym_const] = ACTIONS(3491), - [anon_sym_constexpr] = ACTIONS(3491), - [anon_sym_volatile] = ACTIONS(3491), - [anon_sym_restrict] = ACTIONS(3491), - [anon_sym___restrict__] = ACTIONS(3491), - [anon_sym__Atomic] = ACTIONS(3491), - [anon_sym__Noreturn] = ACTIONS(3491), - [anon_sym_noreturn] = ACTIONS(3491), - [anon_sym_mutable] = ACTIONS(3491), - [anon_sym_constinit] = ACTIONS(3491), - [anon_sym_consteval] = ACTIONS(3491), - [sym_primitive_type] = ACTIONS(3491), - [anon_sym_enum] = ACTIONS(3491), - [anon_sym_class] = ACTIONS(3491), - [anon_sym_struct] = ACTIONS(3491), - [anon_sym_union] = ACTIONS(3491), - [anon_sym_not] = ACTIONS(3491), - [anon_sym_compl] = ACTIONS(3491), - [anon_sym_DASH_DASH] = ACTIONS(3493), - [anon_sym_PLUS_PLUS] = ACTIONS(3493), - [anon_sym_sizeof] = ACTIONS(3491), - [anon_sym___alignof__] = ACTIONS(3491), - [anon_sym___alignof] = ACTIONS(3491), - [anon_sym__alignof] = ACTIONS(3491), - [anon_sym_alignof] = ACTIONS(3491), - [anon_sym__Alignof] = ACTIONS(3491), - [anon_sym_offsetof] = ACTIONS(3491), - [anon_sym__Generic] = ACTIONS(3491), - [anon_sym_asm] = ACTIONS(3491), - [anon_sym___asm__] = ACTIONS(3491), - [sym_number_literal] = ACTIONS(3493), - [anon_sym_L_SQUOTE] = ACTIONS(3493), - [anon_sym_u_SQUOTE] = ACTIONS(3493), - [anon_sym_U_SQUOTE] = ACTIONS(3493), - [anon_sym_u8_SQUOTE] = ACTIONS(3493), - [anon_sym_SQUOTE] = ACTIONS(3493), - [anon_sym_L_DQUOTE] = ACTIONS(3493), - [anon_sym_u_DQUOTE] = ACTIONS(3493), - [anon_sym_U_DQUOTE] = ACTIONS(3493), - [anon_sym_u8_DQUOTE] = ACTIONS(3493), - [anon_sym_DQUOTE] = ACTIONS(3493), - [sym_true] = ACTIONS(3491), - [sym_false] = ACTIONS(3491), - [anon_sym_NULL] = ACTIONS(3491), - [anon_sym_nullptr] = ACTIONS(3491), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3491), - [anon_sym_decltype] = ACTIONS(3491), - [anon_sym_virtual] = ACTIONS(3491), - [anon_sym_alignas] = ACTIONS(3491), - [anon_sym_typename] = ACTIONS(3491), - [anon_sym_template] = ACTIONS(3491), - [anon_sym_delete] = ACTIONS(3491), - [anon_sym_R_DQUOTE] = ACTIONS(3493), - [anon_sym_LR_DQUOTE] = ACTIONS(3493), - [anon_sym_uR_DQUOTE] = ACTIONS(3493), - [anon_sym_UR_DQUOTE] = ACTIONS(3493), - [anon_sym_u8R_DQUOTE] = ACTIONS(3493), - [anon_sym_co_await] = ACTIONS(3491), - [anon_sym_new] = ACTIONS(3491), - [anon_sym_requires] = ACTIONS(3491), - [sym_this] = ACTIONS(3491), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3493), - [sym_semgrep_named_ellipsis] = ACTIONS(3493), - }, - [1804] = { - [sym_identifier] = ACTIONS(3189), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), - [anon_sym_LPAREN2] = ACTIONS(3191), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_TILDE] = ACTIONS(3191), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_STAR] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3191), - [anon_sym___extension__] = ACTIONS(3189), - [anon_sym_extern] = ACTIONS(3189), - [anon_sym___attribute__] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3191), - [anon_sym___declspec] = ACTIONS(3189), - [anon_sym_signed] = ACTIONS(3189), - [anon_sym_unsigned] = ACTIONS(3189), - [anon_sym_long] = ACTIONS(3189), - [anon_sym_short] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_static] = ACTIONS(3189), - [anon_sym_register] = ACTIONS(3189), - [anon_sym_inline] = ACTIONS(3189), - [anon_sym___inline] = ACTIONS(3189), - [anon_sym___inline__] = ACTIONS(3189), - [anon_sym___forceinline] = ACTIONS(3189), - [anon_sym_thread_local] = ACTIONS(3189), - [anon_sym___thread] = ACTIONS(3189), - [anon_sym_const] = ACTIONS(3189), - [anon_sym_constexpr] = ACTIONS(3189), - [anon_sym_volatile] = ACTIONS(3189), - [anon_sym_restrict] = ACTIONS(3189), - [anon_sym___restrict__] = ACTIONS(3189), - [anon_sym__Atomic] = ACTIONS(3189), - [anon_sym__Noreturn] = ACTIONS(3189), - [anon_sym_noreturn] = ACTIONS(3189), - [anon_sym_mutable] = ACTIONS(3189), - [anon_sym_constinit] = ACTIONS(3189), - [anon_sym_consteval] = ACTIONS(3189), - [sym_primitive_type] = ACTIONS(3189), - [anon_sym_enum] = ACTIONS(3189), - [anon_sym_class] = ACTIONS(3189), - [anon_sym_struct] = ACTIONS(3189), - [anon_sym_union] = ACTIONS(3189), - [anon_sym_not] = ACTIONS(3189), - [anon_sym_compl] = ACTIONS(3189), - [anon_sym_DASH_DASH] = ACTIONS(3191), - [anon_sym_PLUS_PLUS] = ACTIONS(3191), - [anon_sym_sizeof] = ACTIONS(3189), - [anon_sym___alignof__] = ACTIONS(3189), - [anon_sym___alignof] = ACTIONS(3189), - [anon_sym__alignof] = ACTIONS(3189), - [anon_sym_alignof] = ACTIONS(3189), - [anon_sym__Alignof] = ACTIONS(3189), - [anon_sym_offsetof] = ACTIONS(3189), - [anon_sym__Generic] = ACTIONS(3189), - [anon_sym_asm] = ACTIONS(3189), - [anon_sym___asm__] = ACTIONS(3189), - [sym_number_literal] = ACTIONS(3191), - [anon_sym_L_SQUOTE] = ACTIONS(3191), - [anon_sym_u_SQUOTE] = ACTIONS(3191), - [anon_sym_U_SQUOTE] = ACTIONS(3191), - [anon_sym_u8_SQUOTE] = ACTIONS(3191), - [anon_sym_SQUOTE] = ACTIONS(3191), - [anon_sym_L_DQUOTE] = ACTIONS(3191), - [anon_sym_u_DQUOTE] = ACTIONS(3191), - [anon_sym_U_DQUOTE] = ACTIONS(3191), - [anon_sym_u8_DQUOTE] = ACTIONS(3191), - [anon_sym_DQUOTE] = ACTIONS(3191), - [sym_true] = ACTIONS(3189), - [sym_false] = ACTIONS(3189), - [anon_sym_NULL] = ACTIONS(3189), - [anon_sym_nullptr] = ACTIONS(3189), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3189), - [anon_sym_decltype] = ACTIONS(3189), - [anon_sym_virtual] = ACTIONS(3189), - [anon_sym_alignas] = ACTIONS(3189), - [anon_sym_typename] = ACTIONS(3189), - [anon_sym_template] = ACTIONS(3189), - [anon_sym_delete] = ACTIONS(3189), - [anon_sym_R_DQUOTE] = ACTIONS(3191), - [anon_sym_LR_DQUOTE] = ACTIONS(3191), - [anon_sym_uR_DQUOTE] = ACTIONS(3191), - [anon_sym_UR_DQUOTE] = ACTIONS(3191), - [anon_sym_u8R_DQUOTE] = ACTIONS(3191), - [anon_sym_co_await] = ACTIONS(3189), - [anon_sym_new] = ACTIONS(3189), - [anon_sym_requires] = ACTIONS(3189), - [sym_this] = ACTIONS(3189), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3191), - [sym_semgrep_named_ellipsis] = ACTIONS(3191), - }, - [1805] = { - [sym_identifier] = ACTIONS(3511), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3513), - [anon_sym_LPAREN2] = ACTIONS(3513), - [anon_sym_BANG] = ACTIONS(3513), - [anon_sym_TILDE] = ACTIONS(3513), - [anon_sym_DASH] = ACTIONS(3511), - [anon_sym_PLUS] = ACTIONS(3511), - [anon_sym_STAR] = ACTIONS(3513), - [anon_sym_AMP] = ACTIONS(3513), - [anon_sym___extension__] = ACTIONS(3511), - [anon_sym_extern] = ACTIONS(3511), - [anon_sym___attribute__] = ACTIONS(3511), - [anon_sym_COLON_COLON] = ACTIONS(3513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3513), - [anon_sym___declspec] = ACTIONS(3511), - [anon_sym_signed] = ACTIONS(3511), - [anon_sym_unsigned] = ACTIONS(3511), - [anon_sym_long] = ACTIONS(3511), - [anon_sym_short] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3511), - [anon_sym_static] = ACTIONS(3511), - [anon_sym_register] = ACTIONS(3511), - [anon_sym_inline] = ACTIONS(3511), - [anon_sym___inline] = ACTIONS(3511), - [anon_sym___inline__] = ACTIONS(3511), - [anon_sym___forceinline] = ACTIONS(3511), - [anon_sym_thread_local] = ACTIONS(3511), - [anon_sym___thread] = ACTIONS(3511), - [anon_sym_const] = ACTIONS(3511), - [anon_sym_constexpr] = ACTIONS(3511), - [anon_sym_volatile] = ACTIONS(3511), - [anon_sym_restrict] = ACTIONS(3511), - [anon_sym___restrict__] = ACTIONS(3511), - [anon_sym__Atomic] = ACTIONS(3511), - [anon_sym__Noreturn] = ACTIONS(3511), - [anon_sym_noreturn] = ACTIONS(3511), - [anon_sym_mutable] = ACTIONS(3511), - [anon_sym_constinit] = ACTIONS(3511), - [anon_sym_consteval] = ACTIONS(3511), - [sym_primitive_type] = ACTIONS(3511), - [anon_sym_enum] = ACTIONS(3511), - [anon_sym_class] = ACTIONS(3511), - [anon_sym_struct] = ACTIONS(3511), - [anon_sym_union] = ACTIONS(3511), - [anon_sym_not] = ACTIONS(3511), - [anon_sym_compl] = ACTIONS(3511), - [anon_sym_DASH_DASH] = ACTIONS(3513), - [anon_sym_PLUS_PLUS] = ACTIONS(3513), - [anon_sym_sizeof] = ACTIONS(3511), - [anon_sym___alignof__] = ACTIONS(3511), - [anon_sym___alignof] = ACTIONS(3511), - [anon_sym__alignof] = ACTIONS(3511), - [anon_sym_alignof] = ACTIONS(3511), - [anon_sym__Alignof] = ACTIONS(3511), - [anon_sym_offsetof] = ACTIONS(3511), - [anon_sym__Generic] = ACTIONS(3511), - [anon_sym_asm] = ACTIONS(3511), - [anon_sym___asm__] = ACTIONS(3511), - [sym_number_literal] = ACTIONS(3513), - [anon_sym_L_SQUOTE] = ACTIONS(3513), - [anon_sym_u_SQUOTE] = ACTIONS(3513), - [anon_sym_U_SQUOTE] = ACTIONS(3513), - [anon_sym_u8_SQUOTE] = ACTIONS(3513), - [anon_sym_SQUOTE] = ACTIONS(3513), - [anon_sym_L_DQUOTE] = ACTIONS(3513), - [anon_sym_u_DQUOTE] = ACTIONS(3513), - [anon_sym_U_DQUOTE] = ACTIONS(3513), - [anon_sym_u8_DQUOTE] = ACTIONS(3513), - [anon_sym_DQUOTE] = ACTIONS(3513), - [sym_true] = ACTIONS(3511), - [sym_false] = ACTIONS(3511), - [anon_sym_NULL] = ACTIONS(3511), - [anon_sym_nullptr] = ACTIONS(3511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3511), - [anon_sym_decltype] = ACTIONS(3511), - [anon_sym_virtual] = ACTIONS(3511), - [anon_sym_alignas] = ACTIONS(3511), - [anon_sym_typename] = ACTIONS(3511), - [anon_sym_template] = ACTIONS(3511), - [anon_sym_delete] = ACTIONS(3511), - [anon_sym_R_DQUOTE] = ACTIONS(3513), - [anon_sym_LR_DQUOTE] = ACTIONS(3513), - [anon_sym_uR_DQUOTE] = ACTIONS(3513), - [anon_sym_UR_DQUOTE] = ACTIONS(3513), - [anon_sym_u8R_DQUOTE] = ACTIONS(3513), - [anon_sym_co_await] = ACTIONS(3511), - [anon_sym_new] = ACTIONS(3511), - [anon_sym_requires] = ACTIONS(3511), - [sym_this] = ACTIONS(3511), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3513), - [sym_semgrep_named_ellipsis] = ACTIONS(3513), + [sym_auto] = ACTIONS(3223), + [anon_sym_decltype] = ACTIONS(3223), + [anon_sym_virtual] = ACTIONS(3223), + [anon_sym_alignas] = ACTIONS(3223), + [anon_sym_typename] = ACTIONS(3223), + [anon_sym_template] = ACTIONS(3223), + [anon_sym_delete] = ACTIONS(3223), + [anon_sym_R_DQUOTE] = ACTIONS(3225), + [anon_sym_LR_DQUOTE] = ACTIONS(3225), + [anon_sym_uR_DQUOTE] = ACTIONS(3225), + [anon_sym_UR_DQUOTE] = ACTIONS(3225), + [anon_sym_u8R_DQUOTE] = ACTIONS(3225), + [anon_sym_co_await] = ACTIONS(3223), + [anon_sym_new] = ACTIONS(3223), + [anon_sym_requires] = ACTIONS(3223), + [sym_this] = ACTIONS(3223), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3225), + [sym_semgrep_named_ellipsis] = ACTIONS(3225), }, - [1806] = { + [1778] = { [sym_identifier] = ACTIONS(3139), [anon_sym_DOT_DOT_DOT] = ACTIONS(3141), [anon_sym_LPAREN2] = ACTIONS(3141), @@ -284305,441 +270942,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3141), [sym_semgrep_named_ellipsis] = ACTIONS(3141), }, - [1807] = { - [sym_identifier] = ACTIONS(3207), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3209), - [anon_sym_LPAREN2] = ACTIONS(3209), - [anon_sym_BANG] = ACTIONS(3209), - [anon_sym_TILDE] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(3209), - [anon_sym_AMP] = ACTIONS(3209), - [anon_sym___extension__] = ACTIONS(3207), - [anon_sym_extern] = ACTIONS(3207), - [anon_sym___attribute__] = ACTIONS(3207), - [anon_sym_COLON_COLON] = ACTIONS(3209), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3209), - [anon_sym___declspec] = ACTIONS(3207), - [anon_sym_signed] = ACTIONS(3207), - [anon_sym_unsigned] = ACTIONS(3207), - [anon_sym_long] = ACTIONS(3207), - [anon_sym_short] = ACTIONS(3207), - [anon_sym_LBRACK] = ACTIONS(3207), - [anon_sym_static] = ACTIONS(3207), - [anon_sym_register] = ACTIONS(3207), - [anon_sym_inline] = ACTIONS(3207), - [anon_sym___inline] = ACTIONS(3207), - [anon_sym___inline__] = ACTIONS(3207), - [anon_sym___forceinline] = ACTIONS(3207), - [anon_sym_thread_local] = ACTIONS(3207), - [anon_sym___thread] = ACTIONS(3207), - [anon_sym_const] = ACTIONS(3207), - [anon_sym_constexpr] = ACTIONS(3207), - [anon_sym_volatile] = ACTIONS(3207), - [anon_sym_restrict] = ACTIONS(3207), - [anon_sym___restrict__] = ACTIONS(3207), - [anon_sym__Atomic] = ACTIONS(3207), - [anon_sym__Noreturn] = ACTIONS(3207), - [anon_sym_noreturn] = ACTIONS(3207), - [anon_sym_mutable] = ACTIONS(3207), - [anon_sym_constinit] = ACTIONS(3207), - [anon_sym_consteval] = ACTIONS(3207), - [sym_primitive_type] = ACTIONS(3207), - [anon_sym_enum] = ACTIONS(3207), - [anon_sym_class] = ACTIONS(3207), - [anon_sym_struct] = ACTIONS(3207), - [anon_sym_union] = ACTIONS(3207), - [anon_sym_not] = ACTIONS(3207), - [anon_sym_compl] = ACTIONS(3207), - [anon_sym_DASH_DASH] = ACTIONS(3209), - [anon_sym_PLUS_PLUS] = ACTIONS(3209), - [anon_sym_sizeof] = ACTIONS(3207), - [anon_sym___alignof__] = ACTIONS(3207), - [anon_sym___alignof] = ACTIONS(3207), - [anon_sym__alignof] = ACTIONS(3207), - [anon_sym_alignof] = ACTIONS(3207), - [anon_sym__Alignof] = ACTIONS(3207), - [anon_sym_offsetof] = ACTIONS(3207), - [anon_sym__Generic] = ACTIONS(3207), - [anon_sym_asm] = ACTIONS(3207), - [anon_sym___asm__] = ACTIONS(3207), - [sym_number_literal] = ACTIONS(3209), - [anon_sym_L_SQUOTE] = ACTIONS(3209), - [anon_sym_u_SQUOTE] = ACTIONS(3209), - [anon_sym_U_SQUOTE] = ACTIONS(3209), - [anon_sym_u8_SQUOTE] = ACTIONS(3209), - [anon_sym_SQUOTE] = ACTIONS(3209), - [anon_sym_L_DQUOTE] = ACTIONS(3209), - [anon_sym_u_DQUOTE] = ACTIONS(3209), - [anon_sym_U_DQUOTE] = ACTIONS(3209), - [anon_sym_u8_DQUOTE] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(3209), - [sym_true] = ACTIONS(3207), - [sym_false] = ACTIONS(3207), - [anon_sym_NULL] = ACTIONS(3207), - [anon_sym_nullptr] = ACTIONS(3207), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3207), - [anon_sym_decltype] = ACTIONS(3207), - [anon_sym_virtual] = ACTIONS(3207), - [anon_sym_alignas] = ACTIONS(3207), - [anon_sym_typename] = ACTIONS(3207), - [anon_sym_template] = ACTIONS(3207), - [anon_sym_delete] = ACTIONS(3207), - [anon_sym_R_DQUOTE] = ACTIONS(3209), - [anon_sym_LR_DQUOTE] = ACTIONS(3209), - [anon_sym_uR_DQUOTE] = ACTIONS(3209), - [anon_sym_UR_DQUOTE] = ACTIONS(3209), - [anon_sym_u8R_DQUOTE] = ACTIONS(3209), - [anon_sym_co_await] = ACTIONS(3207), - [anon_sym_new] = ACTIONS(3207), - [anon_sym_requires] = ACTIONS(3207), - [sym_this] = ACTIONS(3207), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3209), - [sym_semgrep_named_ellipsis] = ACTIONS(3209), - }, - [1808] = { - [sym_identifier] = ACTIONS(3117), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3119), - [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___extension__] = ACTIONS(3117), - [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_signed] = ACTIONS(3117), - [anon_sym_unsigned] = ACTIONS(3117), - [anon_sym_long] = ACTIONS(3117), - [anon_sym_short] = ACTIONS(3117), - [anon_sym_LBRACK] = ACTIONS(3117), - [anon_sym_static] = ACTIONS(3117), - [anon_sym_register] = ACTIONS(3117), - [anon_sym_inline] = ACTIONS(3117), - [anon_sym___inline] = ACTIONS(3117), - [anon_sym___inline__] = ACTIONS(3117), - [anon_sym___forceinline] = ACTIONS(3117), - [anon_sym_thread_local] = ACTIONS(3117), - [anon_sym___thread] = ACTIONS(3117), - [anon_sym_const] = ACTIONS(3117), - [anon_sym_constexpr] = ACTIONS(3117), - [anon_sym_volatile] = ACTIONS(3117), - [anon_sym_restrict] = ACTIONS(3117), - [anon_sym___restrict__] = ACTIONS(3117), - [anon_sym__Atomic] = ACTIONS(3117), - [anon_sym__Noreturn] = ACTIONS(3117), - [anon_sym_noreturn] = ACTIONS(3117), - [anon_sym_mutable] = ACTIONS(3117), - [anon_sym_constinit] = ACTIONS(3117), - [anon_sym_consteval] = 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_not] = ACTIONS(3117), - [anon_sym_compl] = ACTIONS(3117), - [anon_sym_DASH_DASH] = ACTIONS(3119), - [anon_sym_PLUS_PLUS] = ACTIONS(3119), - [anon_sym_sizeof] = ACTIONS(3117), - [anon_sym___alignof__] = ACTIONS(3117), - [anon_sym___alignof] = ACTIONS(3117), - [anon_sym__alignof] = ACTIONS(3117), - [anon_sym_alignof] = ACTIONS(3117), - [anon_sym__Alignof] = ACTIONS(3117), - [anon_sym_offsetof] = ACTIONS(3117), - [anon_sym__Generic] = ACTIONS(3117), - [anon_sym_asm] = ACTIONS(3117), - [anon_sym___asm__] = 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), - [anon_sym_NULL] = ACTIONS(3117), - [anon_sym_nullptr] = ACTIONS(3117), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3117), - [anon_sym_decltype] = ACTIONS(3117), - [anon_sym_virtual] = ACTIONS(3117), - [anon_sym_alignas] = ACTIONS(3117), - [anon_sym_typename] = ACTIONS(3117), - [anon_sym_template] = ACTIONS(3117), - [anon_sym_delete] = ACTIONS(3117), - [anon_sym_R_DQUOTE] = ACTIONS(3119), - [anon_sym_LR_DQUOTE] = ACTIONS(3119), - [anon_sym_uR_DQUOTE] = ACTIONS(3119), - [anon_sym_UR_DQUOTE] = ACTIONS(3119), - [anon_sym_u8R_DQUOTE] = ACTIONS(3119), - [anon_sym_co_await] = ACTIONS(3117), - [anon_sym_new] = ACTIONS(3117), - [anon_sym_requires] = ACTIONS(3117), - [sym_this] = ACTIONS(3117), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3119), - [sym_semgrep_named_ellipsis] = ACTIONS(3119), - }, - [1809] = { - [sym_identifier] = ACTIONS(3227), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3229), - [anon_sym_LPAREN2] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_TILDE] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_AMP] = ACTIONS(3229), - [anon_sym___extension__] = ACTIONS(3227), - [anon_sym_extern] = ACTIONS(3227), - [anon_sym___attribute__] = ACTIONS(3227), - [anon_sym_COLON_COLON] = ACTIONS(3229), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3229), - [anon_sym___declspec] = ACTIONS(3227), - [anon_sym_signed] = ACTIONS(3227), - [anon_sym_unsigned] = ACTIONS(3227), - [anon_sym_long] = ACTIONS(3227), - [anon_sym_short] = ACTIONS(3227), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_static] = ACTIONS(3227), - [anon_sym_register] = ACTIONS(3227), - [anon_sym_inline] = ACTIONS(3227), - [anon_sym___inline] = ACTIONS(3227), - [anon_sym___inline__] = ACTIONS(3227), - [anon_sym___forceinline] = ACTIONS(3227), - [anon_sym_thread_local] = ACTIONS(3227), - [anon_sym___thread] = ACTIONS(3227), - [anon_sym_const] = ACTIONS(3227), - [anon_sym_constexpr] = ACTIONS(3227), - [anon_sym_volatile] = ACTIONS(3227), - [anon_sym_restrict] = ACTIONS(3227), - [anon_sym___restrict__] = ACTIONS(3227), - [anon_sym__Atomic] = ACTIONS(3227), - [anon_sym__Noreturn] = ACTIONS(3227), - [anon_sym_noreturn] = ACTIONS(3227), - [anon_sym_mutable] = ACTIONS(3227), - [anon_sym_constinit] = ACTIONS(3227), - [anon_sym_consteval] = ACTIONS(3227), - [sym_primitive_type] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(3227), - [anon_sym_class] = ACTIONS(3227), - [anon_sym_struct] = ACTIONS(3227), - [anon_sym_union] = ACTIONS(3227), - [anon_sym_not] = ACTIONS(3227), - [anon_sym_compl] = ACTIONS(3227), - [anon_sym_DASH_DASH] = ACTIONS(3229), - [anon_sym_PLUS_PLUS] = ACTIONS(3229), - [anon_sym_sizeof] = ACTIONS(3227), - [anon_sym___alignof__] = ACTIONS(3227), - [anon_sym___alignof] = ACTIONS(3227), - [anon_sym__alignof] = ACTIONS(3227), - [anon_sym_alignof] = ACTIONS(3227), - [anon_sym__Alignof] = ACTIONS(3227), - [anon_sym_offsetof] = ACTIONS(3227), - [anon_sym__Generic] = ACTIONS(3227), - [anon_sym_asm] = ACTIONS(3227), - [anon_sym___asm__] = ACTIONS(3227), - [sym_number_literal] = ACTIONS(3229), - [anon_sym_L_SQUOTE] = ACTIONS(3229), - [anon_sym_u_SQUOTE] = ACTIONS(3229), - [anon_sym_U_SQUOTE] = ACTIONS(3229), - [anon_sym_u8_SQUOTE] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3229), - [anon_sym_L_DQUOTE] = ACTIONS(3229), - [anon_sym_u_DQUOTE] = ACTIONS(3229), - [anon_sym_U_DQUOTE] = ACTIONS(3229), - [anon_sym_u8_DQUOTE] = ACTIONS(3229), - [anon_sym_DQUOTE] = ACTIONS(3229), - [sym_true] = ACTIONS(3227), - [sym_false] = ACTIONS(3227), - [anon_sym_NULL] = ACTIONS(3227), - [anon_sym_nullptr] = ACTIONS(3227), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3227), - [anon_sym_decltype] = ACTIONS(3227), - [anon_sym_virtual] = ACTIONS(3227), - [anon_sym_alignas] = ACTIONS(3227), - [anon_sym_typename] = ACTIONS(3227), - [anon_sym_template] = ACTIONS(3227), - [anon_sym_delete] = ACTIONS(3227), - [anon_sym_R_DQUOTE] = ACTIONS(3229), - [anon_sym_LR_DQUOTE] = ACTIONS(3229), - [anon_sym_uR_DQUOTE] = ACTIONS(3229), - [anon_sym_UR_DQUOTE] = ACTIONS(3229), - [anon_sym_u8R_DQUOTE] = ACTIONS(3229), - [anon_sym_co_await] = ACTIONS(3227), - [anon_sym_new] = ACTIONS(3227), - [anon_sym_requires] = ACTIONS(3227), - [sym_this] = ACTIONS(3227), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3229), - [sym_semgrep_named_ellipsis] = ACTIONS(3229), - }, - [1810] = { - [sym_identifier] = ACTIONS(3215), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3217), - [anon_sym_LPAREN2] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_STAR] = ACTIONS(3217), - [anon_sym_AMP] = ACTIONS(3217), - [anon_sym___extension__] = ACTIONS(3215), - [anon_sym_extern] = ACTIONS(3215), - [anon_sym___attribute__] = ACTIONS(3215), - [anon_sym_COLON_COLON] = ACTIONS(3217), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3217), - [anon_sym___declspec] = ACTIONS(3215), - [anon_sym_signed] = ACTIONS(3215), - [anon_sym_unsigned] = ACTIONS(3215), - [anon_sym_long] = ACTIONS(3215), - [anon_sym_short] = ACTIONS(3215), - [anon_sym_LBRACK] = ACTIONS(3215), - [anon_sym_static] = ACTIONS(3215), - [anon_sym_register] = ACTIONS(3215), - [anon_sym_inline] = ACTIONS(3215), - [anon_sym___inline] = ACTIONS(3215), - [anon_sym___inline__] = ACTIONS(3215), - [anon_sym___forceinline] = ACTIONS(3215), - [anon_sym_thread_local] = ACTIONS(3215), - [anon_sym___thread] = ACTIONS(3215), - [anon_sym_const] = ACTIONS(3215), - [anon_sym_constexpr] = ACTIONS(3215), - [anon_sym_volatile] = ACTIONS(3215), - [anon_sym_restrict] = ACTIONS(3215), - [anon_sym___restrict__] = ACTIONS(3215), - [anon_sym__Atomic] = ACTIONS(3215), - [anon_sym__Noreturn] = ACTIONS(3215), - [anon_sym_noreturn] = ACTIONS(3215), - [anon_sym_mutable] = ACTIONS(3215), - [anon_sym_constinit] = ACTIONS(3215), - [anon_sym_consteval] = ACTIONS(3215), - [sym_primitive_type] = ACTIONS(3215), - [anon_sym_enum] = ACTIONS(3215), - [anon_sym_class] = ACTIONS(3215), - [anon_sym_struct] = ACTIONS(3215), - [anon_sym_union] = ACTIONS(3215), - [anon_sym_not] = ACTIONS(3215), - [anon_sym_compl] = ACTIONS(3215), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_sizeof] = ACTIONS(3215), - [anon_sym___alignof__] = ACTIONS(3215), - [anon_sym___alignof] = ACTIONS(3215), - [anon_sym__alignof] = ACTIONS(3215), - [anon_sym_alignof] = ACTIONS(3215), - [anon_sym__Alignof] = ACTIONS(3215), - [anon_sym_offsetof] = ACTIONS(3215), - [anon_sym__Generic] = ACTIONS(3215), - [anon_sym_asm] = ACTIONS(3215), - [anon_sym___asm__] = ACTIONS(3215), - [sym_number_literal] = ACTIONS(3217), - [anon_sym_L_SQUOTE] = ACTIONS(3217), - [anon_sym_u_SQUOTE] = ACTIONS(3217), - [anon_sym_U_SQUOTE] = ACTIONS(3217), - [anon_sym_u8_SQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_L_DQUOTE] = ACTIONS(3217), - [anon_sym_u_DQUOTE] = ACTIONS(3217), - [anon_sym_U_DQUOTE] = ACTIONS(3217), - [anon_sym_u8_DQUOTE] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [sym_true] = ACTIONS(3215), - [sym_false] = ACTIONS(3215), - [anon_sym_NULL] = ACTIONS(3215), - [anon_sym_nullptr] = ACTIONS(3215), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3215), - [anon_sym_decltype] = ACTIONS(3215), - [anon_sym_virtual] = ACTIONS(3215), - [anon_sym_alignas] = ACTIONS(3215), - [anon_sym_typename] = ACTIONS(3215), - [anon_sym_template] = ACTIONS(3215), - [anon_sym_delete] = ACTIONS(3215), - [anon_sym_R_DQUOTE] = ACTIONS(3217), - [anon_sym_LR_DQUOTE] = ACTIONS(3217), - [anon_sym_uR_DQUOTE] = ACTIONS(3217), - [anon_sym_UR_DQUOTE] = ACTIONS(3217), - [anon_sym_u8R_DQUOTE] = ACTIONS(3217), - [anon_sym_co_await] = ACTIONS(3215), - [anon_sym_new] = ACTIONS(3215), - [anon_sym_requires] = ACTIONS(3215), - [sym_this] = ACTIONS(3215), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3217), - [sym_semgrep_named_ellipsis] = ACTIONS(3217), - }, - [1811] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6547), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(7996), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7634), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_parameter_list] = STATE(930), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(5473), - [sym_template_function] = STATE(7634), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7128), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_operator_name] = STATE(7634), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5270), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [1779] = { + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(6120), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7615), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7305), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_parameter_list] = STATE(914), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(5047), + [sym_template_function] = STATE(7305), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6595), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_operator_name] = STATE(7305), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5370), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym_LT] = ACTIONS(5454), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LT] = ACTIONS(5372), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(51), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3265), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -284759,7 +271020,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), + [sym_primitive_type] = ACTIONS(3267), [anon_sym_enum] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), [anon_sym_struct] = ACTIONS(73), @@ -284770,68 +271031,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_operator] = ACTIONS(2259), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_operator] = ACTIONS(2257), }, - [1812] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6594), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(7995), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7634), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_parameter_list] = STATE(928), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(5473), - [sym_template_function] = STATE(7634), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7128), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_operator_name] = STATE(7634), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5270), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [1780] = { + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(6198), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7654), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7305), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_parameter_list] = STATE(907), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(5047), + [sym_template_function] = STATE(7305), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6595), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_operator_name] = STATE(7305), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5370), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym_LT] = ACTIONS(5454), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LT] = ACTIONS(5372), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(51), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3265), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -284851,7 +271112,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), + [sym_primitive_type] = ACTIONS(3267), [anon_sym_enum] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), [anon_sym_struct] = ACTIONS(73), @@ -284862,68 +271123,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_operator] = ACTIONS(2259), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_operator] = ACTIONS(2257), }, - [1813] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6615), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(7981), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7634), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_parameter_list] = STATE(936), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(5473), - [sym_template_function] = STATE(7634), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7128), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_operator_name] = STATE(7634), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5270), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [1781] = { + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(6180), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7588), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7305), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_parameter_list] = STATE(912), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(5047), + [sym_template_function] = STATE(7305), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6595), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_operator_name] = STATE(7305), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5370), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym_LT] = ACTIONS(5454), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LT] = ACTIONS(5372), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(51), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3265), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -284943,7 +271204,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), + [sym_primitive_type] = ACTIONS(3267), [anon_sym_enum] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), [anon_sym_struct] = ACTIONS(73), @@ -284954,68 +271215,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_operator] = ACTIONS(2259), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_operator] = ACTIONS(2257), }, - [1814] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6631), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(7982), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7634), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_parameter_list] = STATE(934), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(5473), - [sym_template_function] = STATE(7634), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7128), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_operator_name] = STATE(7634), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5270), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [1782] = { + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(6051), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7583), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7305), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_parameter_list] = STATE(913), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(5047), + [sym_template_function] = STATE(7305), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6595), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_operator_name] = STATE(7305), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5370), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym_LT] = ACTIONS(5454), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LT] = ACTIONS(5372), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(51), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3265), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -285035,7 +271296,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), + [sym_primitive_type] = ACTIONS(3267), [anon_sym_enum] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), [anon_sym_struct] = ACTIONS(73), @@ -285046,68 +271307,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_operator] = ACTIONS(2259), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_operator] = ACTIONS(2257), }, - [1815] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6638), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(7983), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7634), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_parameter_list] = STATE(935), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(5473), - [sym_template_function] = STATE(7634), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7128), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_type_identifier] = STATE(4837), - [sym_operator_name] = STATE(7634), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5270), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [1783] = { + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(6065), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7652), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7305), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_parameter_list] = STATE(909), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(5047), + [sym_template_function] = STATE(7305), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6595), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_type_identifier] = STATE(4526), + [sym_operator_name] = STATE(7305), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5370), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym_LT] = ACTIONS(5454), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LT] = ACTIONS(5372), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___based] = ACTIONS(51), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3265), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -285127,7 +271388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), + [sym_primitive_type] = ACTIONS(3267), [anon_sym_enum] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), [anon_sym_struct] = ACTIONS(73), @@ -285138,2385 +271399,2298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_operator] = ACTIONS(2259), - }, - [1816] = { - [sym_identifier] = ACTIONS(5456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5458), - [anon_sym_COMMA] = ACTIONS(5458), - [anon_sym_RPAREN] = ACTIONS(5458), - [anon_sym_LPAREN2] = ACTIONS(5458), - [anon_sym_TILDE] = ACTIONS(5458), - [anon_sym_DASH] = ACTIONS(5456), - [anon_sym_PLUS] = ACTIONS(5456), - [anon_sym_STAR] = ACTIONS(5456), - [anon_sym_SLASH] = ACTIONS(5456), - [anon_sym_PERCENT] = ACTIONS(5456), - [anon_sym_PIPE_PIPE] = ACTIONS(5458), - [anon_sym_AMP_AMP] = ACTIONS(5458), - [anon_sym_PIPE] = ACTIONS(5456), - [anon_sym_CARET] = ACTIONS(5456), - [anon_sym_AMP] = ACTIONS(5456), - [anon_sym_EQ_EQ] = ACTIONS(5458), - [anon_sym_BANG_EQ] = ACTIONS(5458), - [anon_sym_GT] = ACTIONS(5456), - [anon_sym_GT_EQ] = ACTIONS(5458), - [anon_sym_LT_EQ] = ACTIONS(5456), - [anon_sym_LT] = ACTIONS(5456), - [anon_sym_LT_LT] = ACTIONS(5456), - [anon_sym_GT_GT] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(5458), - [anon_sym___extension__] = ACTIONS(5456), - [anon_sym_extern] = ACTIONS(5456), - [anon_sym___attribute__] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(5458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5458), - [anon_sym___declspec] = ACTIONS(5456), - [anon_sym___based] = ACTIONS(5456), - [anon_sym_LBRACE] = ACTIONS(5458), - [anon_sym_RBRACE] = ACTIONS(5458), - [anon_sym_LBRACK] = ACTIONS(5456), - [anon_sym_EQ] = ACTIONS(5456), - [anon_sym_static] = ACTIONS(5456), - [anon_sym_register] = ACTIONS(5456), - [anon_sym_inline] = ACTIONS(5456), - [anon_sym___inline] = ACTIONS(5456), - [anon_sym___inline__] = ACTIONS(5456), - [anon_sym___forceinline] = ACTIONS(5456), - [anon_sym_thread_local] = ACTIONS(5456), - [anon_sym___thread] = ACTIONS(5456), - [anon_sym_const] = ACTIONS(5456), - [anon_sym_constexpr] = ACTIONS(5456), - [anon_sym_volatile] = ACTIONS(5456), - [anon_sym_restrict] = ACTIONS(5456), - [anon_sym___restrict__] = ACTIONS(5456), - [anon_sym__Atomic] = ACTIONS(5456), - [anon_sym__Noreturn] = ACTIONS(5456), - [anon_sym_noreturn] = ACTIONS(5456), - [anon_sym_mutable] = ACTIONS(5456), - [anon_sym_constinit] = ACTIONS(5456), - [anon_sym_consteval] = ACTIONS(5456), - [anon_sym_QMARK] = ACTIONS(5458), - [anon_sym_STAR_EQ] = ACTIONS(5458), - [anon_sym_SLASH_EQ] = ACTIONS(5458), - [anon_sym_PERCENT_EQ] = ACTIONS(5458), - [anon_sym_PLUS_EQ] = ACTIONS(5458), - [anon_sym_DASH_EQ] = ACTIONS(5458), - [anon_sym_LT_LT_EQ] = ACTIONS(5458), - [anon_sym_GT_GT_EQ] = ACTIONS(5458), - [anon_sym_AMP_EQ] = ACTIONS(5458), - [anon_sym_CARET_EQ] = ACTIONS(5458), - [anon_sym_PIPE_EQ] = ACTIONS(5458), - [anon_sym_and_eq] = ACTIONS(5456), - [anon_sym_or_eq] = ACTIONS(5456), - [anon_sym_xor_eq] = ACTIONS(5456), - [anon_sym_LT_EQ_GT] = ACTIONS(5458), - [anon_sym_or] = ACTIONS(5456), - [anon_sym_and] = ACTIONS(5456), - [anon_sym_bitor] = ACTIONS(5456), - [anon_sym_xor] = ACTIONS(5456), - [anon_sym_bitand] = ACTIONS(5456), - [anon_sym_not_eq] = ACTIONS(5456), - [anon_sym_DASH_DASH] = ACTIONS(5458), - [anon_sym_PLUS_PLUS] = ACTIONS(5458), - [anon_sym_DOT] = ACTIONS(5456), - [anon_sym_DOT_STAR] = ACTIONS(5458), - [anon_sym_DASH_GT] = ACTIONS(5458), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5456), - [anon_sym_decltype] = ACTIONS(5456), - [anon_sym_virtual] = ACTIONS(5456), - [anon_sym_alignas] = ACTIONS(5456), - [anon_sym_template] = ACTIONS(5456), - [anon_sym_operator] = ACTIONS(5456), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_operator] = ACTIONS(2257), }, - [1817] = { - [sym_template_argument_list] = STATE(1828), - [sym_identifier] = ACTIONS(5460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5462), - [anon_sym_COMMA] = ACTIONS(5462), - [anon_sym_LPAREN2] = ACTIONS(5464), - [anon_sym_TILDE] = ACTIONS(5467), - [anon_sym_DASH] = ACTIONS(5469), - [anon_sym_PLUS] = ACTIONS(5469), - [anon_sym_STAR] = ACTIONS(5471), - [anon_sym_SLASH] = ACTIONS(5469), - [anon_sym_PERCENT] = ACTIONS(5469), - [anon_sym_PIPE_PIPE] = ACTIONS(5462), - [anon_sym_AMP_AMP] = ACTIONS(5464), - [anon_sym_PIPE] = ACTIONS(5469), - [anon_sym_CARET] = ACTIONS(5469), - [anon_sym_AMP] = ACTIONS(5471), - [anon_sym_EQ_EQ] = ACTIONS(5462), - [anon_sym_BANG_EQ] = ACTIONS(5462), - [anon_sym_GT] = ACTIONS(5469), - [anon_sym_GT_EQ] = ACTIONS(5462), - [anon_sym_LT_EQ] = ACTIONS(5469), - [anon_sym_LT] = ACTIONS(5474), - [anon_sym_LT_LT] = ACTIONS(5469), - [anon_sym_GT_GT] = ACTIONS(5469), - [anon_sym_SEMI] = ACTIONS(5464), - [anon_sym___extension__] = ACTIONS(5460), - [anon_sym_extern] = ACTIONS(5460), - [anon_sym___attribute__] = ACTIONS(5460), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5464), - [anon_sym___declspec] = ACTIONS(5460), - [anon_sym___based] = ACTIONS(5460), - [anon_sym_LBRACE] = ACTIONS(5467), - [anon_sym_RBRACE] = ACTIONS(5462), - [anon_sym_LBRACK] = ACTIONS(5471), - [anon_sym_EQ] = ACTIONS(5469), - [anon_sym_static] = ACTIONS(5460), - [anon_sym_register] = ACTIONS(5460), - [anon_sym_inline] = ACTIONS(5460), - [anon_sym___inline] = ACTIONS(5460), - [anon_sym___inline__] = ACTIONS(5460), - [anon_sym___forceinline] = ACTIONS(5460), - [anon_sym_thread_local] = ACTIONS(5460), - [anon_sym___thread] = ACTIONS(5460), - [anon_sym_const] = ACTIONS(5460), - [anon_sym_constexpr] = ACTIONS(5460), - [anon_sym_volatile] = ACTIONS(5460), - [anon_sym_restrict] = ACTIONS(5460), - [anon_sym___restrict__] = ACTIONS(5460), - [anon_sym__Atomic] = ACTIONS(5460), - [anon_sym__Noreturn] = ACTIONS(5460), - [anon_sym_noreturn] = ACTIONS(5460), - [anon_sym_mutable] = ACTIONS(5460), - [anon_sym_constinit] = ACTIONS(5460), - [anon_sym_consteval] = ACTIONS(5460), - [anon_sym_QMARK] = ACTIONS(5462), - [anon_sym_STAR_EQ] = ACTIONS(5462), - [anon_sym_SLASH_EQ] = ACTIONS(5462), - [anon_sym_PERCENT_EQ] = ACTIONS(5462), - [anon_sym_PLUS_EQ] = ACTIONS(5462), - [anon_sym_DASH_EQ] = ACTIONS(5462), - [anon_sym_LT_LT_EQ] = ACTIONS(5462), - [anon_sym_GT_GT_EQ] = ACTIONS(5462), - [anon_sym_AMP_EQ] = ACTIONS(5462), - [anon_sym_CARET_EQ] = ACTIONS(5462), - [anon_sym_PIPE_EQ] = ACTIONS(5462), - [anon_sym_and_eq] = ACTIONS(5469), - [anon_sym_or_eq] = ACTIONS(5469), - [anon_sym_xor_eq] = ACTIONS(5469), - [anon_sym_LT_EQ_GT] = ACTIONS(5462), - [anon_sym_or] = ACTIONS(5469), - [anon_sym_and] = ACTIONS(5469), - [anon_sym_bitor] = ACTIONS(5469), - [anon_sym_xor] = ACTIONS(5469), - [anon_sym_bitand] = ACTIONS(5469), - [anon_sym_not_eq] = ACTIONS(5469), - [anon_sym_DASH_DASH] = ACTIONS(5462), - [anon_sym_PLUS_PLUS] = ACTIONS(5462), - [anon_sym_DOT] = ACTIONS(5469), - [anon_sym_DOT_STAR] = ACTIONS(5462), - [anon_sym_DASH_GT] = ACTIONS(5462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5460), - [anon_sym_decltype] = ACTIONS(5460), - [anon_sym_virtual] = ACTIONS(5460), - [anon_sym_alignas] = ACTIONS(5460), - [anon_sym_template] = ACTIONS(5460), - [anon_sym_operator] = ACTIONS(5460), + [1784] = { + [sym_template_argument_list] = STATE(1796), + [sym_identifier] = ACTIONS(5374), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5376), + [anon_sym_COMMA] = ACTIONS(5376), + [anon_sym_LPAREN2] = ACTIONS(5378), + [anon_sym_TILDE] = ACTIONS(5381), + [anon_sym_DASH] = ACTIONS(5383), + [anon_sym_PLUS] = ACTIONS(5383), + [anon_sym_STAR] = ACTIONS(5385), + [anon_sym_SLASH] = ACTIONS(5383), + [anon_sym_PERCENT] = ACTIONS(5383), + [anon_sym_PIPE_PIPE] = ACTIONS(5376), + [anon_sym_AMP_AMP] = ACTIONS(5378), + [anon_sym_PIPE] = ACTIONS(5383), + [anon_sym_CARET] = ACTIONS(5383), + [anon_sym_AMP] = ACTIONS(5385), + [anon_sym_EQ_EQ] = ACTIONS(5376), + [anon_sym_BANG_EQ] = ACTIONS(5376), + [anon_sym_GT] = ACTIONS(5383), + [anon_sym_GT_EQ] = ACTIONS(5376), + [anon_sym_LT_EQ] = ACTIONS(5383), + [anon_sym_LT] = ACTIONS(5388), + [anon_sym_LT_LT] = ACTIONS(5383), + [anon_sym_GT_GT] = ACTIONS(5383), + [anon_sym_SEMI] = ACTIONS(5378), + [anon_sym___extension__] = ACTIONS(5374), + [anon_sym_extern] = ACTIONS(5374), + [anon_sym___attribute__] = ACTIONS(5374), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5378), + [anon_sym___declspec] = ACTIONS(5374), + [anon_sym___based] = ACTIONS(5374), + [anon_sym_LBRACE] = ACTIONS(5381), + [anon_sym_RBRACE] = ACTIONS(5376), + [anon_sym_LBRACK] = ACTIONS(5385), + [anon_sym_EQ] = ACTIONS(5383), + [anon_sym_static] = ACTIONS(5374), + [anon_sym_register] = ACTIONS(5374), + [anon_sym_inline] = ACTIONS(5374), + [anon_sym___inline] = ACTIONS(5374), + [anon_sym___inline__] = ACTIONS(5374), + [anon_sym___forceinline] = ACTIONS(5374), + [anon_sym_thread_local] = ACTIONS(5374), + [anon_sym___thread] = ACTIONS(5374), + [anon_sym_const] = ACTIONS(5374), + [anon_sym_constexpr] = ACTIONS(5374), + [anon_sym_volatile] = ACTIONS(5374), + [anon_sym_restrict] = ACTIONS(5374), + [anon_sym___restrict__] = ACTIONS(5374), + [anon_sym__Atomic] = ACTIONS(5374), + [anon_sym__Noreturn] = ACTIONS(5374), + [anon_sym_noreturn] = ACTIONS(5374), + [anon_sym_mutable] = ACTIONS(5374), + [anon_sym_constinit] = ACTIONS(5374), + [anon_sym_consteval] = ACTIONS(5374), + [anon_sym_QMARK] = ACTIONS(5376), + [anon_sym_STAR_EQ] = ACTIONS(5376), + [anon_sym_SLASH_EQ] = ACTIONS(5376), + [anon_sym_PERCENT_EQ] = ACTIONS(5376), + [anon_sym_PLUS_EQ] = ACTIONS(5376), + [anon_sym_DASH_EQ] = ACTIONS(5376), + [anon_sym_LT_LT_EQ] = ACTIONS(5376), + [anon_sym_GT_GT_EQ] = ACTIONS(5376), + [anon_sym_AMP_EQ] = ACTIONS(5376), + [anon_sym_CARET_EQ] = ACTIONS(5376), + [anon_sym_PIPE_EQ] = ACTIONS(5376), + [anon_sym_and_eq] = ACTIONS(5383), + [anon_sym_or_eq] = ACTIONS(5383), + [anon_sym_xor_eq] = ACTIONS(5383), + [anon_sym_LT_EQ_GT] = ACTIONS(5376), + [anon_sym_or] = ACTIONS(5383), + [anon_sym_and] = ACTIONS(5383), + [anon_sym_bitor] = ACTIONS(5383), + [anon_sym_xor] = ACTIONS(5383), + [anon_sym_bitand] = ACTIONS(5383), + [anon_sym_not_eq] = ACTIONS(5383), + [anon_sym_DASH_DASH] = ACTIONS(5376), + [anon_sym_PLUS_PLUS] = ACTIONS(5376), + [anon_sym_DOT] = ACTIONS(5383), + [anon_sym_DOT_STAR] = ACTIONS(5376), + [anon_sym_DASH_GT] = ACTIONS(5376), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5374), + [anon_sym_decltype] = ACTIONS(5374), + [anon_sym_virtual] = ACTIONS(5374), + [anon_sym_alignas] = ACTIONS(5374), + [anon_sym_template] = ACTIONS(5374), + [anon_sym_operator] = ACTIONS(5374), }, - [1818] = { - [sym_template_argument_list] = STATE(1837), - [sym_identifier] = ACTIONS(5460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5462), - [anon_sym_COMMA] = ACTIONS(5462), - [anon_sym_RPAREN] = ACTIONS(5462), - [anon_sym_LPAREN2] = ACTIONS(5464), - [anon_sym_TILDE] = ACTIONS(5467), - [anon_sym_DASH] = ACTIONS(5469), - [anon_sym_PLUS] = ACTIONS(5469), - [anon_sym_STAR] = ACTIONS(5471), - [anon_sym_SLASH] = ACTIONS(5469), - [anon_sym_PERCENT] = ACTIONS(5469), - [anon_sym_PIPE_PIPE] = ACTIONS(5462), - [anon_sym_AMP_AMP] = ACTIONS(5464), - [anon_sym_PIPE] = ACTIONS(5469), - [anon_sym_CARET] = ACTIONS(5469), - [anon_sym_AMP] = ACTIONS(5471), - [anon_sym_EQ_EQ] = ACTIONS(5462), - [anon_sym_BANG_EQ] = ACTIONS(5462), - [anon_sym_GT] = ACTIONS(5469), - [anon_sym_GT_EQ] = ACTIONS(5462), - [anon_sym_LT_EQ] = ACTIONS(5469), - [anon_sym_LT] = ACTIONS(5474), - [anon_sym_LT_LT] = ACTIONS(5469), - [anon_sym_GT_GT] = ACTIONS(5469), - [anon_sym_SEMI] = ACTIONS(5462), - [anon_sym___extension__] = ACTIONS(5460), - [anon_sym_extern] = ACTIONS(5460), - [anon_sym___attribute__] = ACTIONS(5460), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5467), - [anon_sym___declspec] = ACTIONS(5460), - [anon_sym___based] = ACTIONS(5460), - [anon_sym_LBRACE] = ACTIONS(5467), - [anon_sym_LBRACK] = ACTIONS(5471), - [anon_sym_EQ] = ACTIONS(5469), - [anon_sym_static] = ACTIONS(5460), - [anon_sym_register] = ACTIONS(5460), - [anon_sym_inline] = ACTIONS(5460), - [anon_sym___inline] = ACTIONS(5460), - [anon_sym___inline__] = ACTIONS(5460), - [anon_sym___forceinline] = ACTIONS(5460), - [anon_sym_thread_local] = ACTIONS(5460), - [anon_sym___thread] = ACTIONS(5460), - [anon_sym_const] = ACTIONS(5460), - [anon_sym_constexpr] = ACTIONS(5460), - [anon_sym_volatile] = ACTIONS(5460), - [anon_sym_restrict] = ACTIONS(5460), - [anon_sym___restrict__] = ACTIONS(5460), - [anon_sym__Atomic] = ACTIONS(5460), - [anon_sym__Noreturn] = ACTIONS(5460), - [anon_sym_noreturn] = ACTIONS(5460), - [anon_sym_mutable] = ACTIONS(5460), - [anon_sym_constinit] = ACTIONS(5460), - [anon_sym_consteval] = ACTIONS(5460), - [anon_sym_QMARK] = ACTIONS(5462), - [anon_sym_STAR_EQ] = ACTIONS(5462), - [anon_sym_SLASH_EQ] = ACTIONS(5462), - [anon_sym_PERCENT_EQ] = ACTIONS(5462), - [anon_sym_PLUS_EQ] = ACTIONS(5462), - [anon_sym_DASH_EQ] = ACTIONS(5462), - [anon_sym_LT_LT_EQ] = ACTIONS(5462), - [anon_sym_GT_GT_EQ] = ACTIONS(5462), - [anon_sym_AMP_EQ] = ACTIONS(5462), - [anon_sym_CARET_EQ] = ACTIONS(5462), - [anon_sym_PIPE_EQ] = ACTIONS(5462), - [anon_sym_and_eq] = ACTIONS(5469), - [anon_sym_or_eq] = ACTIONS(5469), - [anon_sym_xor_eq] = ACTIONS(5469), - [anon_sym_LT_EQ_GT] = ACTIONS(5462), - [anon_sym_or] = ACTIONS(5469), - [anon_sym_and] = ACTIONS(5469), - [anon_sym_bitor] = ACTIONS(5469), - [anon_sym_xor] = ACTIONS(5469), - [anon_sym_bitand] = ACTIONS(5469), - [anon_sym_not_eq] = ACTIONS(5469), - [anon_sym_DASH_DASH] = ACTIONS(5462), - [anon_sym_PLUS_PLUS] = ACTIONS(5462), - [anon_sym_DOT] = ACTIONS(5469), - [anon_sym_DOT_STAR] = ACTIONS(5462), - [anon_sym_DASH_GT] = ACTIONS(5462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5460), - [anon_sym_decltype] = ACTIONS(5460), - [anon_sym_virtual] = ACTIONS(5460), - [anon_sym_alignas] = ACTIONS(5460), - [anon_sym_template] = ACTIONS(5460), - [anon_sym_operator] = ACTIONS(5460), + [1785] = { + [sym_template_argument_list] = STATE(1795), + [sym_identifier] = ACTIONS(5374), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5378), + [anon_sym_COMMA] = ACTIONS(5378), + [anon_sym_RPAREN] = ACTIONS(5378), + [anon_sym_LPAREN2] = ACTIONS(5378), + [anon_sym_TILDE] = ACTIONS(5381), + [anon_sym_DASH] = ACTIONS(5383), + [anon_sym_PLUS] = ACTIONS(5383), + [anon_sym_STAR] = ACTIONS(5385), + [anon_sym_SLASH] = ACTIONS(5383), + [anon_sym_PERCENT] = ACTIONS(5383), + [anon_sym_PIPE_PIPE] = ACTIONS(5376), + [anon_sym_AMP_AMP] = ACTIONS(5378), + [anon_sym_PIPE] = ACTIONS(5383), + [anon_sym_CARET] = ACTIONS(5383), + [anon_sym_AMP] = ACTIONS(5385), + [anon_sym_EQ_EQ] = ACTIONS(5376), + [anon_sym_BANG_EQ] = ACTIONS(5376), + [anon_sym_GT] = ACTIONS(5383), + [anon_sym_GT_EQ] = ACTIONS(5376), + [anon_sym_LT_EQ] = ACTIONS(5383), + [anon_sym_LT] = ACTIONS(5391), + [anon_sym_LT_LT] = ACTIONS(5383), + [anon_sym_GT_GT] = ACTIONS(5383), + [anon_sym___extension__] = ACTIONS(5374), + [anon_sym_extern] = ACTIONS(5374), + [anon_sym___attribute__] = ACTIONS(5374), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5381), + [anon_sym___declspec] = ACTIONS(5374), + [anon_sym___based] = ACTIONS(5374), + [anon_sym_LBRACE] = ACTIONS(5381), + [anon_sym_LBRACK] = ACTIONS(5385), + [anon_sym_EQ] = ACTIONS(5385), + [anon_sym_static] = ACTIONS(5374), + [anon_sym_register] = ACTIONS(5374), + [anon_sym_inline] = ACTIONS(5374), + [anon_sym___inline] = ACTIONS(5374), + [anon_sym___inline__] = ACTIONS(5374), + [anon_sym___forceinline] = ACTIONS(5374), + [anon_sym_thread_local] = ACTIONS(5374), + [anon_sym___thread] = ACTIONS(5374), + [anon_sym_const] = ACTIONS(5374), + [anon_sym_constexpr] = ACTIONS(5374), + [anon_sym_volatile] = ACTIONS(5374), + [anon_sym_restrict] = ACTIONS(5374), + [anon_sym___restrict__] = ACTIONS(5374), + [anon_sym__Atomic] = ACTIONS(5374), + [anon_sym__Noreturn] = ACTIONS(5374), + [anon_sym_noreturn] = ACTIONS(5374), + [anon_sym_mutable] = ACTIONS(5374), + [anon_sym_constinit] = ACTIONS(5374), + [anon_sym_consteval] = ACTIONS(5374), + [anon_sym_QMARK] = ACTIONS(5376), + [anon_sym_STAR_EQ] = ACTIONS(5376), + [anon_sym_SLASH_EQ] = ACTIONS(5376), + [anon_sym_PERCENT_EQ] = ACTIONS(5376), + [anon_sym_PLUS_EQ] = ACTIONS(5376), + [anon_sym_DASH_EQ] = ACTIONS(5376), + [anon_sym_LT_LT_EQ] = ACTIONS(5376), + [anon_sym_GT_GT_EQ] = ACTIONS(5376), + [anon_sym_AMP_EQ] = ACTIONS(5376), + [anon_sym_CARET_EQ] = ACTIONS(5376), + [anon_sym_PIPE_EQ] = ACTIONS(5376), + [anon_sym_and_eq] = ACTIONS(5383), + [anon_sym_or_eq] = ACTIONS(5383), + [anon_sym_xor_eq] = ACTIONS(5383), + [anon_sym_LT_EQ_GT] = ACTIONS(5376), + [anon_sym_or] = ACTIONS(5383), + [anon_sym_and] = ACTIONS(5383), + [anon_sym_bitor] = ACTIONS(5383), + [anon_sym_xor] = ACTIONS(5383), + [anon_sym_bitand] = ACTIONS(5383), + [anon_sym_not_eq] = ACTIONS(5383), + [anon_sym_DASH_DASH] = ACTIONS(5376), + [anon_sym_PLUS_PLUS] = ACTIONS(5376), + [anon_sym_DOT] = ACTIONS(5383), + [anon_sym_DOT_STAR] = ACTIONS(5376), + [anon_sym_DASH_GT] = ACTIONS(5383), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5374), + [anon_sym_decltype] = ACTIONS(5374), + [anon_sym_virtual] = ACTIONS(5374), + [anon_sym_alignas] = ACTIONS(5374), + [anon_sym_template] = ACTIONS(5374), + [anon_sym_operator] = ACTIONS(5374), + [anon_sym_DASH_GT_STAR] = ACTIONS(5376), }, - [1819] = { - [sym_identifier] = ACTIONS(5477), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5479), - [anon_sym_COMMA] = ACTIONS(5479), - [anon_sym_RPAREN] = ACTIONS(5479), - [anon_sym_LPAREN2] = ACTIONS(5479), - [anon_sym_TILDE] = ACTIONS(5479), - [anon_sym_DASH] = ACTIONS(5477), - [anon_sym_PLUS] = ACTIONS(5477), - [anon_sym_STAR] = ACTIONS(5477), - [anon_sym_SLASH] = ACTIONS(5477), - [anon_sym_PERCENT] = ACTIONS(5477), - [anon_sym_PIPE_PIPE] = ACTIONS(5479), - [anon_sym_AMP_AMP] = ACTIONS(5479), - [anon_sym_PIPE] = ACTIONS(5477), - [anon_sym_CARET] = ACTIONS(5477), - [anon_sym_AMP] = ACTIONS(5477), - [anon_sym_EQ_EQ] = ACTIONS(5479), - [anon_sym_BANG_EQ] = ACTIONS(5479), - [anon_sym_GT] = ACTIONS(5477), - [anon_sym_GT_EQ] = ACTIONS(5479), - [anon_sym_LT_EQ] = ACTIONS(5477), - [anon_sym_LT] = ACTIONS(5477), - [anon_sym_LT_LT] = ACTIONS(5477), - [anon_sym_GT_GT] = ACTIONS(5477), - [anon_sym_SEMI] = ACTIONS(5479), - [anon_sym___extension__] = ACTIONS(5477), - [anon_sym_extern] = ACTIONS(5477), - [anon_sym___attribute__] = ACTIONS(5477), - [anon_sym_COLON_COLON] = ACTIONS(5479), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5479), - [anon_sym___declspec] = ACTIONS(5477), - [anon_sym___based] = ACTIONS(5477), - [anon_sym_LBRACE] = ACTIONS(5479), - [anon_sym_RBRACE] = ACTIONS(5479), - [anon_sym_LBRACK] = ACTIONS(5477), - [anon_sym_EQ] = ACTIONS(5477), - [anon_sym_static] = ACTIONS(5477), - [anon_sym_register] = ACTIONS(5477), - [anon_sym_inline] = ACTIONS(5477), - [anon_sym___inline] = ACTIONS(5477), - [anon_sym___inline__] = ACTIONS(5477), - [anon_sym___forceinline] = ACTIONS(5477), - [anon_sym_thread_local] = ACTIONS(5477), - [anon_sym___thread] = ACTIONS(5477), - [anon_sym_const] = ACTIONS(5477), - [anon_sym_constexpr] = ACTIONS(5477), - [anon_sym_volatile] = ACTIONS(5477), - [anon_sym_restrict] = ACTIONS(5477), - [anon_sym___restrict__] = ACTIONS(5477), - [anon_sym__Atomic] = ACTIONS(5477), - [anon_sym__Noreturn] = ACTIONS(5477), - [anon_sym_noreturn] = ACTIONS(5477), - [anon_sym_mutable] = ACTIONS(5477), - [anon_sym_constinit] = ACTIONS(5477), - [anon_sym_consteval] = ACTIONS(5477), - [anon_sym_QMARK] = ACTIONS(5479), - [anon_sym_STAR_EQ] = ACTIONS(5479), - [anon_sym_SLASH_EQ] = ACTIONS(5479), - [anon_sym_PERCENT_EQ] = ACTIONS(5479), - [anon_sym_PLUS_EQ] = ACTIONS(5479), - [anon_sym_DASH_EQ] = ACTIONS(5479), - [anon_sym_LT_LT_EQ] = ACTIONS(5479), - [anon_sym_GT_GT_EQ] = ACTIONS(5479), - [anon_sym_AMP_EQ] = ACTIONS(5479), - [anon_sym_CARET_EQ] = ACTIONS(5479), - [anon_sym_PIPE_EQ] = ACTIONS(5479), - [anon_sym_and_eq] = ACTIONS(5477), - [anon_sym_or_eq] = ACTIONS(5477), - [anon_sym_xor_eq] = ACTIONS(5477), - [anon_sym_LT_EQ_GT] = ACTIONS(5479), - [anon_sym_or] = ACTIONS(5477), - [anon_sym_and] = ACTIONS(5477), - [anon_sym_bitor] = ACTIONS(5477), - [anon_sym_xor] = ACTIONS(5477), - [anon_sym_bitand] = ACTIONS(5477), - [anon_sym_not_eq] = ACTIONS(5477), - [anon_sym_DASH_DASH] = ACTIONS(5479), - [anon_sym_PLUS_PLUS] = ACTIONS(5479), - [anon_sym_DOT] = ACTIONS(5477), - [anon_sym_DOT_STAR] = ACTIONS(5479), - [anon_sym_DASH_GT] = ACTIONS(5479), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5477), - [anon_sym_decltype] = ACTIONS(5477), - [anon_sym_virtual] = ACTIONS(5477), - [anon_sym_alignas] = ACTIONS(5477), - [anon_sym_template] = ACTIONS(5477), - [anon_sym_operator] = ACTIONS(5477), + [1786] = { + [sym_identifier] = ACTIONS(5394), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5396), + [anon_sym_COMMA] = ACTIONS(5396), + [anon_sym_RPAREN] = ACTIONS(5396), + [anon_sym_LPAREN2] = ACTIONS(5396), + [anon_sym_TILDE] = ACTIONS(5396), + [anon_sym_DASH] = ACTIONS(5394), + [anon_sym_PLUS] = ACTIONS(5394), + [anon_sym_STAR] = ACTIONS(5394), + [anon_sym_SLASH] = ACTIONS(5394), + [anon_sym_PERCENT] = ACTIONS(5394), + [anon_sym_PIPE_PIPE] = ACTIONS(5396), + [anon_sym_AMP_AMP] = ACTIONS(5396), + [anon_sym_PIPE] = ACTIONS(5394), + [anon_sym_CARET] = ACTIONS(5394), + [anon_sym_AMP] = ACTIONS(5394), + [anon_sym_EQ_EQ] = ACTIONS(5396), + [anon_sym_BANG_EQ] = ACTIONS(5396), + [anon_sym_GT] = ACTIONS(5394), + [anon_sym_GT_EQ] = ACTIONS(5396), + [anon_sym_LT_EQ] = ACTIONS(5394), + [anon_sym_LT] = ACTIONS(5394), + [anon_sym_LT_LT] = ACTIONS(5394), + [anon_sym_GT_GT] = ACTIONS(5394), + [anon_sym_SEMI] = ACTIONS(5396), + [anon_sym___extension__] = ACTIONS(5394), + [anon_sym_extern] = ACTIONS(5394), + [anon_sym___attribute__] = ACTIONS(5394), + [anon_sym_COLON_COLON] = ACTIONS(5396), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5396), + [anon_sym___declspec] = ACTIONS(5394), + [anon_sym___based] = ACTIONS(5394), + [anon_sym_LBRACE] = ACTIONS(5396), + [anon_sym_RBRACE] = ACTIONS(5396), + [anon_sym_LBRACK] = ACTIONS(5394), + [anon_sym_EQ] = ACTIONS(5394), + [anon_sym_static] = ACTIONS(5394), + [anon_sym_register] = ACTIONS(5394), + [anon_sym_inline] = ACTIONS(5394), + [anon_sym___inline] = ACTIONS(5394), + [anon_sym___inline__] = ACTIONS(5394), + [anon_sym___forceinline] = ACTIONS(5394), + [anon_sym_thread_local] = ACTIONS(5394), + [anon_sym___thread] = ACTIONS(5394), + [anon_sym_const] = ACTIONS(5394), + [anon_sym_constexpr] = ACTIONS(5394), + [anon_sym_volatile] = ACTIONS(5394), + [anon_sym_restrict] = ACTIONS(5394), + [anon_sym___restrict__] = ACTIONS(5394), + [anon_sym__Atomic] = ACTIONS(5394), + [anon_sym__Noreturn] = ACTIONS(5394), + [anon_sym_noreturn] = ACTIONS(5394), + [anon_sym_mutable] = ACTIONS(5394), + [anon_sym_constinit] = ACTIONS(5394), + [anon_sym_consteval] = ACTIONS(5394), + [anon_sym_QMARK] = ACTIONS(5396), + [anon_sym_STAR_EQ] = ACTIONS(5396), + [anon_sym_SLASH_EQ] = ACTIONS(5396), + [anon_sym_PERCENT_EQ] = ACTIONS(5396), + [anon_sym_PLUS_EQ] = ACTIONS(5396), + [anon_sym_DASH_EQ] = ACTIONS(5396), + [anon_sym_LT_LT_EQ] = ACTIONS(5396), + [anon_sym_GT_GT_EQ] = ACTIONS(5396), + [anon_sym_AMP_EQ] = ACTIONS(5396), + [anon_sym_CARET_EQ] = ACTIONS(5396), + [anon_sym_PIPE_EQ] = ACTIONS(5396), + [anon_sym_and_eq] = ACTIONS(5394), + [anon_sym_or_eq] = ACTIONS(5394), + [anon_sym_xor_eq] = ACTIONS(5394), + [anon_sym_LT_EQ_GT] = ACTIONS(5396), + [anon_sym_or] = ACTIONS(5394), + [anon_sym_and] = ACTIONS(5394), + [anon_sym_bitor] = ACTIONS(5394), + [anon_sym_xor] = ACTIONS(5394), + [anon_sym_bitand] = ACTIONS(5394), + [anon_sym_not_eq] = ACTIONS(5394), + [anon_sym_DASH_DASH] = ACTIONS(5396), + [anon_sym_PLUS_PLUS] = ACTIONS(5396), + [anon_sym_DOT] = ACTIONS(5394), + [anon_sym_DOT_STAR] = ACTIONS(5396), + [anon_sym_DASH_GT] = ACTIONS(5396), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5394), + [anon_sym_decltype] = ACTIONS(5394), + [anon_sym_virtual] = ACTIONS(5394), + [anon_sym_alignas] = ACTIONS(5394), + [anon_sym_template] = ACTIONS(5394), + [anon_sym_operator] = ACTIONS(5394), }, - [1820] = { - [sym_identifier] = ACTIONS(5481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5483), - [anon_sym_COMMA] = ACTIONS(5483), - [anon_sym_RPAREN] = ACTIONS(5483), - [anon_sym_LPAREN2] = ACTIONS(5483), - [anon_sym_TILDE] = ACTIONS(5483), - [anon_sym_DASH] = ACTIONS(5481), - [anon_sym_PLUS] = ACTIONS(5481), - [anon_sym_STAR] = ACTIONS(5481), - [anon_sym_SLASH] = ACTIONS(5481), - [anon_sym_PERCENT] = ACTIONS(5481), - [anon_sym_PIPE_PIPE] = ACTIONS(5483), - [anon_sym_AMP_AMP] = ACTIONS(5483), - [anon_sym_PIPE] = ACTIONS(5481), - [anon_sym_CARET] = ACTIONS(5481), - [anon_sym_AMP] = ACTIONS(5481), - [anon_sym_EQ_EQ] = ACTIONS(5483), - [anon_sym_BANG_EQ] = ACTIONS(5483), - [anon_sym_GT] = ACTIONS(5481), - [anon_sym_GT_EQ] = ACTIONS(5483), - [anon_sym_LT_EQ] = ACTIONS(5481), - [anon_sym_LT] = ACTIONS(5481), - [anon_sym_LT_LT] = ACTIONS(5481), - [anon_sym_GT_GT] = ACTIONS(5481), - [anon_sym_SEMI] = ACTIONS(5483), - [anon_sym___extension__] = ACTIONS(5481), - [anon_sym_extern] = ACTIONS(5481), - [anon_sym___attribute__] = ACTIONS(5481), - [anon_sym_COLON_COLON] = ACTIONS(5483), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5483), - [anon_sym___declspec] = ACTIONS(5481), - [anon_sym___based] = ACTIONS(5481), - [anon_sym_LBRACE] = ACTIONS(5483), - [anon_sym_RBRACE] = ACTIONS(5483), - [anon_sym_LBRACK] = ACTIONS(5481), - [anon_sym_EQ] = ACTIONS(5481), - [anon_sym_static] = ACTIONS(5481), - [anon_sym_register] = ACTIONS(5481), - [anon_sym_inline] = ACTIONS(5481), - [anon_sym___inline] = ACTIONS(5481), - [anon_sym___inline__] = ACTIONS(5481), - [anon_sym___forceinline] = ACTIONS(5481), - [anon_sym_thread_local] = ACTIONS(5481), - [anon_sym___thread] = ACTIONS(5481), - [anon_sym_const] = ACTIONS(5481), - [anon_sym_constexpr] = ACTIONS(5481), - [anon_sym_volatile] = ACTIONS(5481), - [anon_sym_restrict] = ACTIONS(5481), - [anon_sym___restrict__] = ACTIONS(5481), - [anon_sym__Atomic] = ACTIONS(5481), - [anon_sym__Noreturn] = ACTIONS(5481), - [anon_sym_noreturn] = ACTIONS(5481), - [anon_sym_mutable] = ACTIONS(5481), - [anon_sym_constinit] = ACTIONS(5481), - [anon_sym_consteval] = ACTIONS(5481), - [anon_sym_QMARK] = ACTIONS(5483), - [anon_sym_STAR_EQ] = ACTIONS(5483), - [anon_sym_SLASH_EQ] = ACTIONS(5483), - [anon_sym_PERCENT_EQ] = ACTIONS(5483), - [anon_sym_PLUS_EQ] = ACTIONS(5483), - [anon_sym_DASH_EQ] = ACTIONS(5483), - [anon_sym_LT_LT_EQ] = ACTIONS(5483), - [anon_sym_GT_GT_EQ] = ACTIONS(5483), - [anon_sym_AMP_EQ] = ACTIONS(5483), - [anon_sym_CARET_EQ] = ACTIONS(5483), - [anon_sym_PIPE_EQ] = ACTIONS(5483), - [anon_sym_and_eq] = ACTIONS(5481), - [anon_sym_or_eq] = ACTIONS(5481), - [anon_sym_xor_eq] = ACTIONS(5481), - [anon_sym_LT_EQ_GT] = ACTIONS(5483), - [anon_sym_or] = ACTIONS(5481), - [anon_sym_and] = ACTIONS(5481), - [anon_sym_bitor] = ACTIONS(5481), - [anon_sym_xor] = ACTIONS(5481), - [anon_sym_bitand] = ACTIONS(5481), - [anon_sym_not_eq] = ACTIONS(5481), - [anon_sym_DASH_DASH] = ACTIONS(5483), - [anon_sym_PLUS_PLUS] = ACTIONS(5483), - [anon_sym_DOT] = ACTIONS(5481), - [anon_sym_DOT_STAR] = ACTIONS(5483), - [anon_sym_DASH_GT] = ACTIONS(5483), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5481), - [anon_sym_decltype] = ACTIONS(5481), - [anon_sym_virtual] = ACTIONS(5481), - [anon_sym_alignas] = ACTIONS(5481), - [anon_sym_template] = ACTIONS(5481), - [anon_sym_operator] = ACTIONS(5481), + [1787] = { + [sym_identifier] = ACTIONS(5398), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5400), + [anon_sym_COMMA] = ACTIONS(5400), + [anon_sym_RPAREN] = ACTIONS(5400), + [anon_sym_LPAREN2] = ACTIONS(5400), + [anon_sym_TILDE] = ACTIONS(5400), + [anon_sym_DASH] = ACTIONS(5398), + [anon_sym_PLUS] = ACTIONS(5398), + [anon_sym_STAR] = ACTIONS(5398), + [anon_sym_SLASH] = ACTIONS(5398), + [anon_sym_PERCENT] = ACTIONS(5398), + [anon_sym_PIPE_PIPE] = ACTIONS(5400), + [anon_sym_AMP_AMP] = ACTIONS(5400), + [anon_sym_PIPE] = ACTIONS(5398), + [anon_sym_CARET] = ACTIONS(5398), + [anon_sym_AMP] = ACTIONS(5398), + [anon_sym_EQ_EQ] = ACTIONS(5400), + [anon_sym_BANG_EQ] = ACTIONS(5400), + [anon_sym_GT] = ACTIONS(5398), + [anon_sym_GT_EQ] = ACTIONS(5400), + [anon_sym_LT_EQ] = ACTIONS(5398), + [anon_sym_LT] = ACTIONS(5398), + [anon_sym_LT_LT] = ACTIONS(5398), + [anon_sym_GT_GT] = ACTIONS(5398), + [anon_sym_SEMI] = ACTIONS(5400), + [anon_sym___extension__] = ACTIONS(5398), + [anon_sym_extern] = ACTIONS(5398), + [anon_sym___attribute__] = ACTIONS(5398), + [anon_sym_COLON_COLON] = ACTIONS(5400), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5400), + [anon_sym___declspec] = ACTIONS(5398), + [anon_sym___based] = ACTIONS(5398), + [anon_sym_LBRACE] = ACTIONS(5400), + [anon_sym_RBRACE] = ACTIONS(5400), + [anon_sym_LBRACK] = ACTIONS(5398), + [anon_sym_EQ] = ACTIONS(5398), + [anon_sym_static] = ACTIONS(5398), + [anon_sym_register] = ACTIONS(5398), + [anon_sym_inline] = ACTIONS(5398), + [anon_sym___inline] = ACTIONS(5398), + [anon_sym___inline__] = ACTIONS(5398), + [anon_sym___forceinline] = ACTIONS(5398), + [anon_sym_thread_local] = ACTIONS(5398), + [anon_sym___thread] = ACTIONS(5398), + [anon_sym_const] = ACTIONS(5398), + [anon_sym_constexpr] = ACTIONS(5398), + [anon_sym_volatile] = ACTIONS(5398), + [anon_sym_restrict] = ACTIONS(5398), + [anon_sym___restrict__] = ACTIONS(5398), + [anon_sym__Atomic] = ACTIONS(5398), + [anon_sym__Noreturn] = ACTIONS(5398), + [anon_sym_noreturn] = ACTIONS(5398), + [anon_sym_mutable] = ACTIONS(5398), + [anon_sym_constinit] = ACTIONS(5398), + [anon_sym_consteval] = ACTIONS(5398), + [anon_sym_QMARK] = ACTIONS(5400), + [anon_sym_STAR_EQ] = ACTIONS(5400), + [anon_sym_SLASH_EQ] = ACTIONS(5400), + [anon_sym_PERCENT_EQ] = ACTIONS(5400), + [anon_sym_PLUS_EQ] = ACTIONS(5400), + [anon_sym_DASH_EQ] = ACTIONS(5400), + [anon_sym_LT_LT_EQ] = ACTIONS(5400), + [anon_sym_GT_GT_EQ] = ACTIONS(5400), + [anon_sym_AMP_EQ] = ACTIONS(5400), + [anon_sym_CARET_EQ] = ACTIONS(5400), + [anon_sym_PIPE_EQ] = ACTIONS(5400), + [anon_sym_and_eq] = ACTIONS(5398), + [anon_sym_or_eq] = ACTIONS(5398), + [anon_sym_xor_eq] = ACTIONS(5398), + [anon_sym_LT_EQ_GT] = ACTIONS(5400), + [anon_sym_or] = ACTIONS(5398), + [anon_sym_and] = ACTIONS(5398), + [anon_sym_bitor] = ACTIONS(5398), + [anon_sym_xor] = ACTIONS(5398), + [anon_sym_bitand] = ACTIONS(5398), + [anon_sym_not_eq] = ACTIONS(5398), + [anon_sym_DASH_DASH] = ACTIONS(5400), + [anon_sym_PLUS_PLUS] = ACTIONS(5400), + [anon_sym_DOT] = ACTIONS(5398), + [anon_sym_DOT_STAR] = ACTIONS(5400), + [anon_sym_DASH_GT] = ACTIONS(5400), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5398), + [anon_sym_decltype] = ACTIONS(5398), + [anon_sym_virtual] = ACTIONS(5398), + [anon_sym_alignas] = ACTIONS(5398), + [anon_sym_template] = ACTIONS(5398), + [anon_sym_operator] = ACTIONS(5398), }, - [1821] = { - [sym_string_literal] = STATE(2073), - [sym_template_argument_list] = STATE(1918), - [sym_raw_string_literal] = STATE(2073), - [aux_sym_sized_type_specifier_repeat1] = STATE(2089), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_RPAREN] = ACTIONS(4831), - [anon_sym_LPAREN2] = ACTIONS(4831), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4839), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4842), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4839), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(5485), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym___extension__] = ACTIONS(4835), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5488), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_signed] = ACTIONS(5490), - [anon_sym_unsigned] = ACTIONS(5490), - [anon_sym_long] = ACTIONS(5490), - [anon_sym_short] = ACTIONS(5490), - [anon_sym_LBRACK] = ACTIONS(4857), - [anon_sym_EQ] = ACTIONS(4837), - [anon_sym_const] = ACTIONS(4827), - [anon_sym_constexpr] = ACTIONS(4835), - [anon_sym_volatile] = ACTIONS(4835), - [anon_sym_restrict] = ACTIONS(4835), - [anon_sym___restrict__] = ACTIONS(4835), - [anon_sym__Atomic] = ACTIONS(4835), - [anon_sym__Noreturn] = ACTIONS(4835), - [anon_sym_noreturn] = ACTIONS(4835), - [anon_sym_mutable] = ACTIONS(4835), - [anon_sym_constinit] = ACTIONS(4835), - [anon_sym_consteval] = ACTIONS(4835), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4829), - [anon_sym_SLASH_EQ] = ACTIONS(4829), - [anon_sym_PERCENT_EQ] = ACTIONS(4829), - [anon_sym_PLUS_EQ] = ACTIONS(4829), - [anon_sym_DASH_EQ] = ACTIONS(4829), - [anon_sym_LT_LT_EQ] = ACTIONS(4829), - [anon_sym_GT_GT_EQ] = ACTIONS(4829), - [anon_sym_AMP_EQ] = ACTIONS(4829), - [anon_sym_CARET_EQ] = ACTIONS(4829), - [anon_sym_PIPE_EQ] = ACTIONS(4829), - [anon_sym_and_eq] = ACTIONS(4829), - [anon_sym_or_eq] = ACTIONS(4829), - [anon_sym_xor_eq] = ACTIONS(4829), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4829), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4829), - [anon_sym_not_eq] = ACTIONS(4829), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4837), - [anon_sym_L_DQUOTE] = ACTIONS(5492), - [anon_sym_u_DQUOTE] = ACTIONS(5492), - [anon_sym_U_DQUOTE] = ACTIONS(5492), - [anon_sym_u8_DQUOTE] = ACTIONS(5492), - [anon_sym_DQUOTE] = ACTIONS(5492), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4835), - [anon_sym_decltype] = ACTIONS(4835), - [anon_sym_R_DQUOTE] = ACTIONS(5494), - [anon_sym_LR_DQUOTE] = ACTIONS(5494), - [anon_sym_uR_DQUOTE] = ACTIONS(5494), - [anon_sym_UR_DQUOTE] = ACTIONS(5494), - [anon_sym_u8R_DQUOTE] = ACTIONS(5494), - [anon_sym_DASH_GT_STAR] = ACTIONS(4829), - [sym_semgrep_metavar] = ACTIONS(4835), + [1788] = { + [sym_identifier] = ACTIONS(5402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5404), + [anon_sym_COMMA] = ACTIONS(5404), + [anon_sym_RPAREN] = ACTIONS(5404), + [anon_sym_LPAREN2] = ACTIONS(5404), + [anon_sym_TILDE] = ACTIONS(5404), + [anon_sym_DASH] = ACTIONS(5402), + [anon_sym_PLUS] = ACTIONS(5402), + [anon_sym_STAR] = ACTIONS(5402), + [anon_sym_SLASH] = ACTIONS(5402), + [anon_sym_PERCENT] = ACTIONS(5402), + [anon_sym_PIPE_PIPE] = ACTIONS(5404), + [anon_sym_AMP_AMP] = ACTIONS(5404), + [anon_sym_PIPE] = ACTIONS(5402), + [anon_sym_CARET] = ACTIONS(5402), + [anon_sym_AMP] = ACTIONS(5402), + [anon_sym_EQ_EQ] = ACTIONS(5404), + [anon_sym_BANG_EQ] = ACTIONS(5404), + [anon_sym_GT] = ACTIONS(5402), + [anon_sym_GT_EQ] = ACTIONS(5404), + [anon_sym_LT_EQ] = ACTIONS(5402), + [anon_sym_LT] = ACTIONS(5402), + [anon_sym_LT_LT] = ACTIONS(5402), + [anon_sym_GT_GT] = ACTIONS(5402), + [anon_sym_SEMI] = ACTIONS(5404), + [anon_sym___extension__] = ACTIONS(5402), + [anon_sym_extern] = ACTIONS(5402), + [anon_sym___attribute__] = ACTIONS(5402), + [anon_sym_COLON_COLON] = ACTIONS(5404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5404), + [anon_sym___declspec] = ACTIONS(5402), + [anon_sym___based] = ACTIONS(5402), + [anon_sym_LBRACE] = ACTIONS(5404), + [anon_sym_RBRACE] = ACTIONS(5404), + [anon_sym_LBRACK] = ACTIONS(5402), + [anon_sym_EQ] = ACTIONS(5402), + [anon_sym_static] = ACTIONS(5402), + [anon_sym_register] = ACTIONS(5402), + [anon_sym_inline] = ACTIONS(5402), + [anon_sym___inline] = ACTIONS(5402), + [anon_sym___inline__] = ACTIONS(5402), + [anon_sym___forceinline] = ACTIONS(5402), + [anon_sym_thread_local] = ACTIONS(5402), + [anon_sym___thread] = ACTIONS(5402), + [anon_sym_const] = ACTIONS(5402), + [anon_sym_constexpr] = ACTIONS(5402), + [anon_sym_volatile] = ACTIONS(5402), + [anon_sym_restrict] = ACTIONS(5402), + [anon_sym___restrict__] = ACTIONS(5402), + [anon_sym__Atomic] = ACTIONS(5402), + [anon_sym__Noreturn] = ACTIONS(5402), + [anon_sym_noreturn] = ACTIONS(5402), + [anon_sym_mutable] = ACTIONS(5402), + [anon_sym_constinit] = ACTIONS(5402), + [anon_sym_consteval] = ACTIONS(5402), + [anon_sym_QMARK] = ACTIONS(5404), + [anon_sym_STAR_EQ] = ACTIONS(5404), + [anon_sym_SLASH_EQ] = ACTIONS(5404), + [anon_sym_PERCENT_EQ] = ACTIONS(5404), + [anon_sym_PLUS_EQ] = ACTIONS(5404), + [anon_sym_DASH_EQ] = ACTIONS(5404), + [anon_sym_LT_LT_EQ] = ACTIONS(5404), + [anon_sym_GT_GT_EQ] = ACTIONS(5404), + [anon_sym_AMP_EQ] = ACTIONS(5404), + [anon_sym_CARET_EQ] = ACTIONS(5404), + [anon_sym_PIPE_EQ] = ACTIONS(5404), + [anon_sym_and_eq] = ACTIONS(5402), + [anon_sym_or_eq] = ACTIONS(5402), + [anon_sym_xor_eq] = ACTIONS(5402), + [anon_sym_LT_EQ_GT] = ACTIONS(5404), + [anon_sym_or] = ACTIONS(5402), + [anon_sym_and] = ACTIONS(5402), + [anon_sym_bitor] = ACTIONS(5402), + [anon_sym_xor] = ACTIONS(5402), + [anon_sym_bitand] = ACTIONS(5402), + [anon_sym_not_eq] = ACTIONS(5402), + [anon_sym_DASH_DASH] = ACTIONS(5404), + [anon_sym_PLUS_PLUS] = ACTIONS(5404), + [anon_sym_DOT] = ACTIONS(5402), + [anon_sym_DOT_STAR] = ACTIONS(5404), + [anon_sym_DASH_GT] = ACTIONS(5404), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5402), + [anon_sym_decltype] = ACTIONS(5402), + [anon_sym_virtual] = ACTIONS(5402), + [anon_sym_alignas] = ACTIONS(5402), + [anon_sym_template] = ACTIONS(5402), + [anon_sym_operator] = ACTIONS(5402), }, - [1822] = { - [sym_identifier] = ACTIONS(5496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5498), - [anon_sym_COMMA] = ACTIONS(5498), - [anon_sym_RPAREN] = ACTIONS(5498), - [anon_sym_LPAREN2] = ACTIONS(5498), - [anon_sym_TILDE] = ACTIONS(5498), - [anon_sym_DASH] = ACTIONS(5496), - [anon_sym_PLUS] = ACTIONS(5496), - [anon_sym_STAR] = ACTIONS(5496), - [anon_sym_SLASH] = ACTIONS(5496), - [anon_sym_PERCENT] = ACTIONS(5496), - [anon_sym_PIPE_PIPE] = ACTIONS(5498), - [anon_sym_AMP_AMP] = ACTIONS(5498), - [anon_sym_PIPE] = ACTIONS(5496), - [anon_sym_CARET] = ACTIONS(5496), - [anon_sym_AMP] = ACTIONS(5496), - [anon_sym_EQ_EQ] = ACTIONS(5498), - [anon_sym_BANG_EQ] = ACTIONS(5498), - [anon_sym_GT] = ACTIONS(5496), - [anon_sym_GT_EQ] = ACTIONS(5498), - [anon_sym_LT_EQ] = ACTIONS(5496), - [anon_sym_LT] = ACTIONS(5496), - [anon_sym_LT_LT] = ACTIONS(5496), - [anon_sym_GT_GT] = ACTIONS(5496), - [anon_sym_SEMI] = ACTIONS(5498), - [anon_sym___extension__] = ACTIONS(5496), - [anon_sym_extern] = ACTIONS(5496), - [anon_sym___attribute__] = ACTIONS(5496), - [anon_sym_COLON_COLON] = ACTIONS(5498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5498), - [anon_sym___declspec] = ACTIONS(5496), - [anon_sym___based] = ACTIONS(5496), - [anon_sym_LBRACE] = ACTIONS(5498), - [anon_sym_RBRACE] = ACTIONS(5498), - [anon_sym_LBRACK] = ACTIONS(5496), - [anon_sym_EQ] = ACTIONS(5496), - [anon_sym_static] = ACTIONS(5496), - [anon_sym_register] = ACTIONS(5496), - [anon_sym_inline] = ACTIONS(5496), - [anon_sym___inline] = ACTIONS(5496), - [anon_sym___inline__] = ACTIONS(5496), - [anon_sym___forceinline] = ACTIONS(5496), - [anon_sym_thread_local] = ACTIONS(5496), - [anon_sym___thread] = ACTIONS(5496), - [anon_sym_const] = ACTIONS(5496), - [anon_sym_constexpr] = ACTIONS(5496), - [anon_sym_volatile] = ACTIONS(5496), - [anon_sym_restrict] = ACTIONS(5496), - [anon_sym___restrict__] = ACTIONS(5496), - [anon_sym__Atomic] = ACTIONS(5496), - [anon_sym__Noreturn] = ACTIONS(5496), - [anon_sym_noreturn] = ACTIONS(5496), - [anon_sym_mutable] = ACTIONS(5496), - [anon_sym_constinit] = ACTIONS(5496), - [anon_sym_consteval] = ACTIONS(5496), - [anon_sym_QMARK] = ACTIONS(5498), - [anon_sym_STAR_EQ] = ACTIONS(5498), - [anon_sym_SLASH_EQ] = ACTIONS(5498), - [anon_sym_PERCENT_EQ] = ACTIONS(5498), - [anon_sym_PLUS_EQ] = ACTIONS(5498), - [anon_sym_DASH_EQ] = ACTIONS(5498), - [anon_sym_LT_LT_EQ] = ACTIONS(5498), - [anon_sym_GT_GT_EQ] = ACTIONS(5498), - [anon_sym_AMP_EQ] = ACTIONS(5498), - [anon_sym_CARET_EQ] = ACTIONS(5498), - [anon_sym_PIPE_EQ] = ACTIONS(5498), - [anon_sym_and_eq] = ACTIONS(5496), - [anon_sym_or_eq] = ACTIONS(5496), - [anon_sym_xor_eq] = ACTIONS(5496), - [anon_sym_LT_EQ_GT] = ACTIONS(5498), - [anon_sym_or] = ACTIONS(5496), - [anon_sym_and] = ACTIONS(5496), - [anon_sym_bitor] = ACTIONS(5496), - [anon_sym_xor] = ACTIONS(5496), - [anon_sym_bitand] = ACTIONS(5496), - [anon_sym_not_eq] = ACTIONS(5496), - [anon_sym_DASH_DASH] = ACTIONS(5498), - [anon_sym_PLUS_PLUS] = ACTIONS(5498), - [anon_sym_DOT] = ACTIONS(5496), - [anon_sym_DOT_STAR] = ACTIONS(5498), - [anon_sym_DASH_GT] = ACTIONS(5498), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5496), - [anon_sym_decltype] = ACTIONS(5496), - [anon_sym_virtual] = ACTIONS(5496), - [anon_sym_alignas] = ACTIONS(5496), - [anon_sym_template] = ACTIONS(5496), - [anon_sym_operator] = ACTIONS(5496), + [1789] = { + [sym_string_literal] = STATE(2203), + [sym_template_argument_list] = STATE(1914), + [sym_raw_string_literal] = STATE(2203), + [aux_sym_sized_type_specifier_repeat1] = STATE(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_RPAREN] = ACTIONS(4767), + [anon_sym_LPAREN2] = ACTIONS(4767), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4775), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4778), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4775), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(5406), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym___extension__] = ACTIONS(4771), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5409), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_signed] = ACTIONS(5411), + [anon_sym_unsigned] = ACTIONS(5411), + [anon_sym_long] = ACTIONS(5411), + [anon_sym_short] = ACTIONS(5411), + [anon_sym_LBRACK] = ACTIONS(4793), + [anon_sym_EQ] = ACTIONS(4773), + [anon_sym_const] = ACTIONS(4763), + [anon_sym_constexpr] = ACTIONS(4771), + [anon_sym_volatile] = ACTIONS(4771), + [anon_sym_restrict] = ACTIONS(4771), + [anon_sym___restrict__] = ACTIONS(4771), + [anon_sym__Atomic] = ACTIONS(4771), + [anon_sym__Noreturn] = ACTIONS(4771), + [anon_sym_noreturn] = ACTIONS(4771), + [anon_sym_mutable] = ACTIONS(4771), + [anon_sym_constinit] = ACTIONS(4771), + [anon_sym_consteval] = ACTIONS(4771), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4765), + [anon_sym_SLASH_EQ] = ACTIONS(4765), + [anon_sym_PERCENT_EQ] = ACTIONS(4765), + [anon_sym_PLUS_EQ] = ACTIONS(4765), + [anon_sym_DASH_EQ] = ACTIONS(4765), + [anon_sym_LT_LT_EQ] = ACTIONS(4765), + [anon_sym_GT_GT_EQ] = ACTIONS(4765), + [anon_sym_AMP_EQ] = ACTIONS(4765), + [anon_sym_CARET_EQ] = ACTIONS(4765), + [anon_sym_PIPE_EQ] = ACTIONS(4765), + [anon_sym_and_eq] = ACTIONS(4765), + [anon_sym_or_eq] = ACTIONS(4765), + [anon_sym_xor_eq] = ACTIONS(4765), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4765), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4765), + [anon_sym_not_eq] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4773), + [anon_sym_L_DQUOTE] = ACTIONS(5413), + [anon_sym_u_DQUOTE] = ACTIONS(5413), + [anon_sym_U_DQUOTE] = ACTIONS(5413), + [anon_sym_u8_DQUOTE] = ACTIONS(5413), + [anon_sym_DQUOTE] = ACTIONS(5413), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4771), + [anon_sym_decltype] = ACTIONS(4771), + [anon_sym_R_DQUOTE] = ACTIONS(5415), + [anon_sym_LR_DQUOTE] = ACTIONS(5415), + [anon_sym_uR_DQUOTE] = ACTIONS(5415), + [anon_sym_UR_DQUOTE] = ACTIONS(5415), + [anon_sym_u8R_DQUOTE] = ACTIONS(5415), + [anon_sym_DASH_GT_STAR] = ACTIONS(4765), + [sym_semgrep_metavar] = ACTIONS(4771), }, - [1823] = { - [sym_identifier] = ACTIONS(5500), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5502), - [anon_sym_COMMA] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(5502), - [anon_sym_LPAREN2] = ACTIONS(5502), - [anon_sym_TILDE] = ACTIONS(5502), - [anon_sym_DASH] = ACTIONS(5500), - [anon_sym_PLUS] = ACTIONS(5500), - [anon_sym_STAR] = ACTIONS(5500), - [anon_sym_SLASH] = ACTIONS(5500), - [anon_sym_PERCENT] = ACTIONS(5500), - [anon_sym_PIPE_PIPE] = ACTIONS(5502), - [anon_sym_AMP_AMP] = ACTIONS(5502), - [anon_sym_PIPE] = ACTIONS(5500), - [anon_sym_CARET] = ACTIONS(5500), - [anon_sym_AMP] = ACTIONS(5500), - [anon_sym_EQ_EQ] = ACTIONS(5502), - [anon_sym_BANG_EQ] = ACTIONS(5502), - [anon_sym_GT] = ACTIONS(5500), - [anon_sym_GT_EQ] = ACTIONS(5502), - [anon_sym_LT_EQ] = ACTIONS(5500), - [anon_sym_LT] = ACTIONS(5500), - [anon_sym_LT_LT] = ACTIONS(5500), - [anon_sym_GT_GT] = ACTIONS(5500), - [anon_sym_SEMI] = ACTIONS(5502), - [anon_sym___extension__] = ACTIONS(5500), - [anon_sym_extern] = ACTIONS(5500), - [anon_sym___attribute__] = ACTIONS(5500), - [anon_sym_COLON_COLON] = ACTIONS(5502), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5502), - [anon_sym___declspec] = ACTIONS(5500), - [anon_sym___based] = ACTIONS(5500), - [anon_sym_LBRACE] = ACTIONS(5502), - [anon_sym_RBRACE] = ACTIONS(5502), - [anon_sym_LBRACK] = ACTIONS(5500), - [anon_sym_EQ] = ACTIONS(5500), - [anon_sym_static] = ACTIONS(5500), - [anon_sym_register] = ACTIONS(5500), - [anon_sym_inline] = ACTIONS(5500), - [anon_sym___inline] = ACTIONS(5500), - [anon_sym___inline__] = ACTIONS(5500), - [anon_sym___forceinline] = ACTIONS(5500), - [anon_sym_thread_local] = ACTIONS(5500), - [anon_sym___thread] = ACTIONS(5500), - [anon_sym_const] = ACTIONS(5500), - [anon_sym_constexpr] = ACTIONS(5500), - [anon_sym_volatile] = ACTIONS(5500), - [anon_sym_restrict] = ACTIONS(5500), - [anon_sym___restrict__] = ACTIONS(5500), - [anon_sym__Atomic] = ACTIONS(5500), - [anon_sym__Noreturn] = ACTIONS(5500), - [anon_sym_noreturn] = ACTIONS(5500), - [anon_sym_mutable] = ACTIONS(5500), - [anon_sym_constinit] = ACTIONS(5500), - [anon_sym_consteval] = ACTIONS(5500), - [anon_sym_QMARK] = ACTIONS(5502), - [anon_sym_STAR_EQ] = ACTIONS(5502), - [anon_sym_SLASH_EQ] = ACTIONS(5502), - [anon_sym_PERCENT_EQ] = ACTIONS(5502), - [anon_sym_PLUS_EQ] = ACTIONS(5502), - [anon_sym_DASH_EQ] = ACTIONS(5502), - [anon_sym_LT_LT_EQ] = ACTIONS(5502), - [anon_sym_GT_GT_EQ] = ACTIONS(5502), - [anon_sym_AMP_EQ] = ACTIONS(5502), - [anon_sym_CARET_EQ] = ACTIONS(5502), - [anon_sym_PIPE_EQ] = ACTIONS(5502), - [anon_sym_and_eq] = ACTIONS(5500), - [anon_sym_or_eq] = ACTIONS(5500), - [anon_sym_xor_eq] = ACTIONS(5500), - [anon_sym_LT_EQ_GT] = ACTIONS(5502), - [anon_sym_or] = ACTIONS(5500), - [anon_sym_and] = ACTIONS(5500), - [anon_sym_bitor] = ACTIONS(5500), - [anon_sym_xor] = ACTIONS(5500), - [anon_sym_bitand] = ACTIONS(5500), - [anon_sym_not_eq] = ACTIONS(5500), - [anon_sym_DASH_DASH] = ACTIONS(5502), - [anon_sym_PLUS_PLUS] = ACTIONS(5502), - [anon_sym_DOT] = ACTIONS(5500), - [anon_sym_DOT_STAR] = ACTIONS(5502), - [anon_sym_DASH_GT] = ACTIONS(5502), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5500), - [anon_sym_decltype] = ACTIONS(5500), - [anon_sym_virtual] = ACTIONS(5500), - [anon_sym_alignas] = ACTIONS(5500), - [anon_sym_template] = ACTIONS(5500), - [anon_sym_operator] = ACTIONS(5500), + [1790] = { + [sym_identifier] = ACTIONS(5417), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5419), + [anon_sym_COMMA] = ACTIONS(5419), + [anon_sym_RPAREN] = ACTIONS(5419), + [anon_sym_LPAREN2] = ACTIONS(5419), + [anon_sym_TILDE] = ACTIONS(5419), + [anon_sym_DASH] = ACTIONS(5417), + [anon_sym_PLUS] = ACTIONS(5417), + [anon_sym_STAR] = ACTIONS(5417), + [anon_sym_SLASH] = ACTIONS(5417), + [anon_sym_PERCENT] = ACTIONS(5417), + [anon_sym_PIPE_PIPE] = ACTIONS(5419), + [anon_sym_AMP_AMP] = ACTIONS(5419), + [anon_sym_PIPE] = ACTIONS(5417), + [anon_sym_CARET] = ACTIONS(5417), + [anon_sym_AMP] = ACTIONS(5417), + [anon_sym_EQ_EQ] = ACTIONS(5419), + [anon_sym_BANG_EQ] = ACTIONS(5419), + [anon_sym_GT] = ACTIONS(5417), + [anon_sym_GT_EQ] = ACTIONS(5419), + [anon_sym_LT_EQ] = ACTIONS(5417), + [anon_sym_LT] = ACTIONS(5417), + [anon_sym_LT_LT] = ACTIONS(5417), + [anon_sym_GT_GT] = ACTIONS(5417), + [anon_sym_SEMI] = ACTIONS(5419), + [anon_sym___extension__] = ACTIONS(5417), + [anon_sym_extern] = ACTIONS(5417), + [anon_sym___attribute__] = ACTIONS(5417), + [anon_sym_COLON_COLON] = ACTIONS(5419), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5419), + [anon_sym___declspec] = ACTIONS(5417), + [anon_sym___based] = ACTIONS(5417), + [anon_sym_LBRACE] = ACTIONS(5419), + [anon_sym_RBRACE] = ACTIONS(5419), + [anon_sym_LBRACK] = ACTIONS(5417), + [anon_sym_EQ] = ACTIONS(5417), + [anon_sym_static] = ACTIONS(5417), + [anon_sym_register] = ACTIONS(5417), + [anon_sym_inline] = ACTIONS(5417), + [anon_sym___inline] = ACTIONS(5417), + [anon_sym___inline__] = ACTIONS(5417), + [anon_sym___forceinline] = ACTIONS(5417), + [anon_sym_thread_local] = ACTIONS(5417), + [anon_sym___thread] = ACTIONS(5417), + [anon_sym_const] = ACTIONS(5417), + [anon_sym_constexpr] = ACTIONS(5417), + [anon_sym_volatile] = ACTIONS(5417), + [anon_sym_restrict] = ACTIONS(5417), + [anon_sym___restrict__] = ACTIONS(5417), + [anon_sym__Atomic] = ACTIONS(5417), + [anon_sym__Noreturn] = ACTIONS(5417), + [anon_sym_noreturn] = ACTIONS(5417), + [anon_sym_mutable] = ACTIONS(5417), + [anon_sym_constinit] = ACTIONS(5417), + [anon_sym_consteval] = ACTIONS(5417), + [anon_sym_QMARK] = ACTIONS(5419), + [anon_sym_STAR_EQ] = ACTIONS(5419), + [anon_sym_SLASH_EQ] = ACTIONS(5419), + [anon_sym_PERCENT_EQ] = ACTIONS(5419), + [anon_sym_PLUS_EQ] = ACTIONS(5419), + [anon_sym_DASH_EQ] = ACTIONS(5419), + [anon_sym_LT_LT_EQ] = ACTIONS(5419), + [anon_sym_GT_GT_EQ] = ACTIONS(5419), + [anon_sym_AMP_EQ] = ACTIONS(5419), + [anon_sym_CARET_EQ] = ACTIONS(5419), + [anon_sym_PIPE_EQ] = ACTIONS(5419), + [anon_sym_and_eq] = ACTIONS(5417), + [anon_sym_or_eq] = ACTIONS(5417), + [anon_sym_xor_eq] = ACTIONS(5417), + [anon_sym_LT_EQ_GT] = ACTIONS(5419), + [anon_sym_or] = ACTIONS(5417), + [anon_sym_and] = ACTIONS(5417), + [anon_sym_bitor] = ACTIONS(5417), + [anon_sym_xor] = ACTIONS(5417), + [anon_sym_bitand] = ACTIONS(5417), + [anon_sym_not_eq] = ACTIONS(5417), + [anon_sym_DASH_DASH] = ACTIONS(5419), + [anon_sym_PLUS_PLUS] = ACTIONS(5419), + [anon_sym_DOT] = ACTIONS(5417), + [anon_sym_DOT_STAR] = ACTIONS(5419), + [anon_sym_DASH_GT] = ACTIONS(5419), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5417), + [anon_sym_decltype] = ACTIONS(5417), + [anon_sym_virtual] = ACTIONS(5417), + [anon_sym_alignas] = ACTIONS(5417), + [anon_sym_template] = ACTIONS(5417), + [anon_sym_operator] = ACTIONS(5417), }, - [1824] = { - [sym_template_argument_list] = STATE(1836), - [sym_identifier] = ACTIONS(5460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5464), - [anon_sym_COMMA] = ACTIONS(5464), - [anon_sym_RPAREN] = ACTIONS(5464), - [anon_sym_LPAREN2] = ACTIONS(5464), - [anon_sym_TILDE] = ACTIONS(5467), - [anon_sym_DASH] = ACTIONS(5469), - [anon_sym_PLUS] = ACTIONS(5469), - [anon_sym_STAR] = ACTIONS(5471), - [anon_sym_SLASH] = ACTIONS(5469), - [anon_sym_PERCENT] = ACTIONS(5469), - [anon_sym_PIPE_PIPE] = ACTIONS(5462), - [anon_sym_AMP_AMP] = ACTIONS(5464), - [anon_sym_PIPE] = ACTIONS(5469), - [anon_sym_CARET] = ACTIONS(5469), - [anon_sym_AMP] = ACTIONS(5471), - [anon_sym_EQ_EQ] = ACTIONS(5462), - [anon_sym_BANG_EQ] = ACTIONS(5462), - [anon_sym_GT] = ACTIONS(5469), - [anon_sym_GT_EQ] = ACTIONS(5462), - [anon_sym_LT_EQ] = ACTIONS(5469), - [anon_sym_LT] = ACTIONS(5504), - [anon_sym_LT_LT] = ACTIONS(5469), - [anon_sym_GT_GT] = ACTIONS(5469), - [anon_sym___extension__] = ACTIONS(5460), - [anon_sym_extern] = ACTIONS(5460), - [anon_sym___attribute__] = ACTIONS(5460), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5467), - [anon_sym___declspec] = ACTIONS(5460), - [anon_sym___based] = ACTIONS(5460), - [anon_sym_LBRACE] = ACTIONS(5467), - [anon_sym_LBRACK] = ACTIONS(5471), - [anon_sym_EQ] = ACTIONS(5471), - [anon_sym_static] = ACTIONS(5460), - [anon_sym_register] = ACTIONS(5460), - [anon_sym_inline] = ACTIONS(5460), - [anon_sym___inline] = ACTIONS(5460), - [anon_sym___inline__] = ACTIONS(5460), - [anon_sym___forceinline] = ACTIONS(5460), - [anon_sym_thread_local] = ACTIONS(5460), - [anon_sym___thread] = ACTIONS(5460), - [anon_sym_const] = ACTIONS(5460), - [anon_sym_constexpr] = ACTIONS(5460), - [anon_sym_volatile] = ACTIONS(5460), - [anon_sym_restrict] = ACTIONS(5460), - [anon_sym___restrict__] = ACTIONS(5460), - [anon_sym__Atomic] = ACTIONS(5460), - [anon_sym__Noreturn] = ACTIONS(5460), - [anon_sym_noreturn] = ACTIONS(5460), - [anon_sym_mutable] = ACTIONS(5460), - [anon_sym_constinit] = ACTIONS(5460), - [anon_sym_consteval] = ACTIONS(5460), - [anon_sym_QMARK] = ACTIONS(5462), - [anon_sym_STAR_EQ] = ACTIONS(5462), - [anon_sym_SLASH_EQ] = ACTIONS(5462), - [anon_sym_PERCENT_EQ] = ACTIONS(5462), - [anon_sym_PLUS_EQ] = ACTIONS(5462), - [anon_sym_DASH_EQ] = ACTIONS(5462), - [anon_sym_LT_LT_EQ] = ACTIONS(5462), - [anon_sym_GT_GT_EQ] = ACTIONS(5462), - [anon_sym_AMP_EQ] = ACTIONS(5462), - [anon_sym_CARET_EQ] = ACTIONS(5462), - [anon_sym_PIPE_EQ] = ACTIONS(5462), - [anon_sym_and_eq] = ACTIONS(5469), - [anon_sym_or_eq] = ACTIONS(5469), - [anon_sym_xor_eq] = ACTIONS(5469), - [anon_sym_LT_EQ_GT] = ACTIONS(5462), - [anon_sym_or] = ACTIONS(5469), - [anon_sym_and] = ACTIONS(5469), - [anon_sym_bitor] = ACTIONS(5469), - [anon_sym_xor] = ACTIONS(5469), - [anon_sym_bitand] = ACTIONS(5469), - [anon_sym_not_eq] = ACTIONS(5469), - [anon_sym_DASH_DASH] = ACTIONS(5462), - [anon_sym_PLUS_PLUS] = ACTIONS(5462), - [anon_sym_DOT] = ACTIONS(5469), - [anon_sym_DOT_STAR] = ACTIONS(5462), - [anon_sym_DASH_GT] = ACTIONS(5469), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5460), - [anon_sym_decltype] = ACTIONS(5460), - [anon_sym_virtual] = ACTIONS(5460), - [anon_sym_alignas] = ACTIONS(5460), - [anon_sym_template] = ACTIONS(5460), - [anon_sym_operator] = ACTIONS(5460), - [anon_sym_DASH_GT_STAR] = ACTIONS(5462), + [1791] = { + [sym_identifier] = ACTIONS(5421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5423), + [anon_sym_COMMA] = ACTIONS(5423), + [anon_sym_RPAREN] = ACTIONS(5423), + [anon_sym_LPAREN2] = ACTIONS(5423), + [anon_sym_TILDE] = ACTIONS(5423), + [anon_sym_DASH] = ACTIONS(5421), + [anon_sym_PLUS] = ACTIONS(5421), + [anon_sym_STAR] = ACTIONS(5421), + [anon_sym_SLASH] = ACTIONS(5421), + [anon_sym_PERCENT] = ACTIONS(5421), + [anon_sym_PIPE_PIPE] = ACTIONS(5423), + [anon_sym_AMP_AMP] = ACTIONS(5423), + [anon_sym_PIPE] = ACTIONS(5421), + [anon_sym_CARET] = ACTIONS(5421), + [anon_sym_AMP] = ACTIONS(5421), + [anon_sym_EQ_EQ] = ACTIONS(5423), + [anon_sym_BANG_EQ] = ACTIONS(5423), + [anon_sym_GT] = ACTIONS(5421), + [anon_sym_GT_EQ] = ACTIONS(5423), + [anon_sym_LT_EQ] = ACTIONS(5421), + [anon_sym_LT] = ACTIONS(5421), + [anon_sym_LT_LT] = ACTIONS(5421), + [anon_sym_GT_GT] = ACTIONS(5421), + [anon_sym_SEMI] = ACTIONS(5423), + [anon_sym___extension__] = ACTIONS(5421), + [anon_sym_extern] = ACTIONS(5421), + [anon_sym___attribute__] = ACTIONS(5421), + [anon_sym_COLON_COLON] = ACTIONS(5423), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5423), + [anon_sym___declspec] = ACTIONS(5421), + [anon_sym___based] = ACTIONS(5421), + [anon_sym_LBRACE] = ACTIONS(5423), + [anon_sym_RBRACE] = ACTIONS(5423), + [anon_sym_LBRACK] = ACTIONS(5421), + [anon_sym_EQ] = ACTIONS(5421), + [anon_sym_static] = ACTIONS(5421), + [anon_sym_register] = ACTIONS(5421), + [anon_sym_inline] = ACTIONS(5421), + [anon_sym___inline] = ACTIONS(5421), + [anon_sym___inline__] = ACTIONS(5421), + [anon_sym___forceinline] = ACTIONS(5421), + [anon_sym_thread_local] = ACTIONS(5421), + [anon_sym___thread] = ACTIONS(5421), + [anon_sym_const] = ACTIONS(5421), + [anon_sym_constexpr] = ACTIONS(5421), + [anon_sym_volatile] = ACTIONS(5421), + [anon_sym_restrict] = ACTIONS(5421), + [anon_sym___restrict__] = ACTIONS(5421), + [anon_sym__Atomic] = ACTIONS(5421), + [anon_sym__Noreturn] = ACTIONS(5421), + [anon_sym_noreturn] = ACTIONS(5421), + [anon_sym_mutable] = ACTIONS(5421), + [anon_sym_constinit] = ACTIONS(5421), + [anon_sym_consteval] = ACTIONS(5421), + [anon_sym_QMARK] = ACTIONS(5423), + [anon_sym_STAR_EQ] = ACTIONS(5423), + [anon_sym_SLASH_EQ] = ACTIONS(5423), + [anon_sym_PERCENT_EQ] = ACTIONS(5423), + [anon_sym_PLUS_EQ] = ACTIONS(5423), + [anon_sym_DASH_EQ] = ACTIONS(5423), + [anon_sym_LT_LT_EQ] = ACTIONS(5423), + [anon_sym_GT_GT_EQ] = ACTIONS(5423), + [anon_sym_AMP_EQ] = ACTIONS(5423), + [anon_sym_CARET_EQ] = ACTIONS(5423), + [anon_sym_PIPE_EQ] = ACTIONS(5423), + [anon_sym_and_eq] = ACTIONS(5421), + [anon_sym_or_eq] = ACTIONS(5421), + [anon_sym_xor_eq] = ACTIONS(5421), + [anon_sym_LT_EQ_GT] = ACTIONS(5423), + [anon_sym_or] = ACTIONS(5421), + [anon_sym_and] = ACTIONS(5421), + [anon_sym_bitor] = ACTIONS(5421), + [anon_sym_xor] = ACTIONS(5421), + [anon_sym_bitand] = ACTIONS(5421), + [anon_sym_not_eq] = ACTIONS(5421), + [anon_sym_DASH_DASH] = ACTIONS(5423), + [anon_sym_PLUS_PLUS] = ACTIONS(5423), + [anon_sym_DOT] = ACTIONS(5421), + [anon_sym_DOT_STAR] = ACTIONS(5423), + [anon_sym_DASH_GT] = ACTIONS(5423), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5421), + [anon_sym_decltype] = ACTIONS(5421), + [anon_sym_virtual] = ACTIONS(5421), + [anon_sym_alignas] = ACTIONS(5421), + [anon_sym_template] = ACTIONS(5421), + [anon_sym_operator] = ACTIONS(5421), }, - [1825] = { - [sym_identifier] = ACTIONS(5507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5509), - [anon_sym_COMMA] = ACTIONS(5509), - [anon_sym_RPAREN] = ACTIONS(5509), - [anon_sym_LPAREN2] = ACTIONS(5509), - [anon_sym_TILDE] = ACTIONS(5509), - [anon_sym_DASH] = ACTIONS(5507), - [anon_sym_PLUS] = ACTIONS(5507), - [anon_sym_STAR] = ACTIONS(5507), - [anon_sym_SLASH] = ACTIONS(5507), - [anon_sym_PERCENT] = ACTIONS(5507), - [anon_sym_PIPE_PIPE] = ACTIONS(5509), - [anon_sym_AMP_AMP] = ACTIONS(5509), - [anon_sym_PIPE] = ACTIONS(5507), - [anon_sym_CARET] = ACTIONS(5507), - [anon_sym_AMP] = ACTIONS(5507), - [anon_sym_EQ_EQ] = ACTIONS(5509), - [anon_sym_BANG_EQ] = ACTIONS(5509), - [anon_sym_GT] = ACTIONS(5507), - [anon_sym_GT_EQ] = ACTIONS(5509), - [anon_sym_LT_EQ] = ACTIONS(5507), - [anon_sym_LT] = ACTIONS(5507), - [anon_sym_LT_LT] = ACTIONS(5507), - [anon_sym_GT_GT] = ACTIONS(5507), - [anon_sym_SEMI] = ACTIONS(5509), - [anon_sym___extension__] = ACTIONS(5507), - [anon_sym_extern] = ACTIONS(5507), - [anon_sym___attribute__] = ACTIONS(5507), - [anon_sym_COLON_COLON] = ACTIONS(5509), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5509), - [anon_sym___declspec] = ACTIONS(5507), - [anon_sym___based] = ACTIONS(5507), - [anon_sym_LBRACE] = ACTIONS(5509), - [anon_sym_RBRACE] = ACTIONS(5509), - [anon_sym_LBRACK] = ACTIONS(5507), - [anon_sym_EQ] = ACTIONS(5507), - [anon_sym_static] = ACTIONS(5507), - [anon_sym_register] = ACTIONS(5507), - [anon_sym_inline] = ACTIONS(5507), - [anon_sym___inline] = ACTIONS(5507), - [anon_sym___inline__] = ACTIONS(5507), - [anon_sym___forceinline] = ACTIONS(5507), - [anon_sym_thread_local] = ACTIONS(5507), - [anon_sym___thread] = ACTIONS(5507), - [anon_sym_const] = ACTIONS(5507), - [anon_sym_constexpr] = ACTIONS(5507), - [anon_sym_volatile] = ACTIONS(5507), - [anon_sym_restrict] = ACTIONS(5507), - [anon_sym___restrict__] = ACTIONS(5507), - [anon_sym__Atomic] = ACTIONS(5507), - [anon_sym__Noreturn] = ACTIONS(5507), - [anon_sym_noreturn] = ACTIONS(5507), - [anon_sym_mutable] = ACTIONS(5507), - [anon_sym_constinit] = ACTIONS(5507), - [anon_sym_consteval] = ACTIONS(5507), - [anon_sym_QMARK] = ACTIONS(5509), - [anon_sym_STAR_EQ] = ACTIONS(5509), - [anon_sym_SLASH_EQ] = ACTIONS(5509), - [anon_sym_PERCENT_EQ] = ACTIONS(5509), - [anon_sym_PLUS_EQ] = ACTIONS(5509), - [anon_sym_DASH_EQ] = ACTIONS(5509), - [anon_sym_LT_LT_EQ] = ACTIONS(5509), - [anon_sym_GT_GT_EQ] = ACTIONS(5509), - [anon_sym_AMP_EQ] = ACTIONS(5509), - [anon_sym_CARET_EQ] = ACTIONS(5509), - [anon_sym_PIPE_EQ] = ACTIONS(5509), - [anon_sym_and_eq] = ACTIONS(5507), - [anon_sym_or_eq] = ACTIONS(5507), - [anon_sym_xor_eq] = ACTIONS(5507), - [anon_sym_LT_EQ_GT] = ACTIONS(5509), - [anon_sym_or] = ACTIONS(5507), - [anon_sym_and] = ACTIONS(5507), - [anon_sym_bitor] = ACTIONS(5507), - [anon_sym_xor] = ACTIONS(5507), - [anon_sym_bitand] = ACTIONS(5507), - [anon_sym_not_eq] = ACTIONS(5507), - [anon_sym_DASH_DASH] = ACTIONS(5509), - [anon_sym_PLUS_PLUS] = ACTIONS(5509), - [anon_sym_DOT] = ACTIONS(5507), - [anon_sym_DOT_STAR] = ACTIONS(5509), - [anon_sym_DASH_GT] = ACTIONS(5509), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5507), - [anon_sym_decltype] = ACTIONS(5507), - [anon_sym_virtual] = ACTIONS(5507), - [anon_sym_alignas] = ACTIONS(5507), - [anon_sym_template] = ACTIONS(5507), - [anon_sym_operator] = ACTIONS(5507), + [1792] = { + [sym_identifier] = ACTIONS(5425), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5427), + [anon_sym_COMMA] = ACTIONS(5427), + [anon_sym_RPAREN] = ACTIONS(5427), + [anon_sym_LPAREN2] = ACTIONS(5427), + [anon_sym_TILDE] = ACTIONS(5427), + [anon_sym_DASH] = ACTIONS(5425), + [anon_sym_PLUS] = ACTIONS(5425), + [anon_sym_STAR] = ACTIONS(5425), + [anon_sym_SLASH] = ACTIONS(5425), + [anon_sym_PERCENT] = ACTIONS(5425), + [anon_sym_PIPE_PIPE] = ACTIONS(5427), + [anon_sym_AMP_AMP] = ACTIONS(5427), + [anon_sym_PIPE] = ACTIONS(5425), + [anon_sym_CARET] = ACTIONS(5425), + [anon_sym_AMP] = ACTIONS(5425), + [anon_sym_EQ_EQ] = ACTIONS(5427), + [anon_sym_BANG_EQ] = ACTIONS(5427), + [anon_sym_GT] = ACTIONS(5425), + [anon_sym_GT_EQ] = ACTIONS(5427), + [anon_sym_LT_EQ] = ACTIONS(5425), + [anon_sym_LT] = ACTIONS(5425), + [anon_sym_LT_LT] = ACTIONS(5425), + [anon_sym_GT_GT] = ACTIONS(5425), + [anon_sym_SEMI] = ACTIONS(5427), + [anon_sym___extension__] = ACTIONS(5425), + [anon_sym_extern] = ACTIONS(5425), + [anon_sym___attribute__] = ACTIONS(5425), + [anon_sym_COLON_COLON] = ACTIONS(5427), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5427), + [anon_sym___declspec] = ACTIONS(5425), + [anon_sym___based] = ACTIONS(5425), + [anon_sym_LBRACE] = ACTIONS(5427), + [anon_sym_RBRACE] = ACTIONS(5427), + [anon_sym_LBRACK] = ACTIONS(5425), + [anon_sym_EQ] = ACTIONS(5425), + [anon_sym_static] = ACTIONS(5425), + [anon_sym_register] = ACTIONS(5425), + [anon_sym_inline] = ACTIONS(5425), + [anon_sym___inline] = ACTIONS(5425), + [anon_sym___inline__] = ACTIONS(5425), + [anon_sym___forceinline] = ACTIONS(5425), + [anon_sym_thread_local] = ACTIONS(5425), + [anon_sym___thread] = ACTIONS(5425), + [anon_sym_const] = ACTIONS(5425), + [anon_sym_constexpr] = ACTIONS(5425), + [anon_sym_volatile] = ACTIONS(5425), + [anon_sym_restrict] = ACTIONS(5425), + [anon_sym___restrict__] = ACTIONS(5425), + [anon_sym__Atomic] = ACTIONS(5425), + [anon_sym__Noreturn] = ACTIONS(5425), + [anon_sym_noreturn] = ACTIONS(5425), + [anon_sym_mutable] = ACTIONS(5425), + [anon_sym_constinit] = ACTIONS(5425), + [anon_sym_consteval] = ACTIONS(5425), + [anon_sym_QMARK] = ACTIONS(5427), + [anon_sym_STAR_EQ] = ACTIONS(5427), + [anon_sym_SLASH_EQ] = ACTIONS(5427), + [anon_sym_PERCENT_EQ] = ACTIONS(5427), + [anon_sym_PLUS_EQ] = ACTIONS(5427), + [anon_sym_DASH_EQ] = ACTIONS(5427), + [anon_sym_LT_LT_EQ] = ACTIONS(5427), + [anon_sym_GT_GT_EQ] = ACTIONS(5427), + [anon_sym_AMP_EQ] = ACTIONS(5427), + [anon_sym_CARET_EQ] = ACTIONS(5427), + [anon_sym_PIPE_EQ] = ACTIONS(5427), + [anon_sym_and_eq] = ACTIONS(5425), + [anon_sym_or_eq] = ACTIONS(5425), + [anon_sym_xor_eq] = ACTIONS(5425), + [anon_sym_LT_EQ_GT] = ACTIONS(5427), + [anon_sym_or] = ACTIONS(5425), + [anon_sym_and] = ACTIONS(5425), + [anon_sym_bitor] = ACTIONS(5425), + [anon_sym_xor] = ACTIONS(5425), + [anon_sym_bitand] = ACTIONS(5425), + [anon_sym_not_eq] = ACTIONS(5425), + [anon_sym_DASH_DASH] = ACTIONS(5427), + [anon_sym_PLUS_PLUS] = ACTIONS(5427), + [anon_sym_DOT] = ACTIONS(5425), + [anon_sym_DOT_STAR] = ACTIONS(5427), + [anon_sym_DASH_GT] = ACTIONS(5427), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5425), + [anon_sym_decltype] = ACTIONS(5425), + [anon_sym_virtual] = ACTIONS(5425), + [anon_sym_alignas] = ACTIONS(5425), + [anon_sym_template] = ACTIONS(5425), + [anon_sym_operator] = ACTIONS(5425), }, - [1826] = { - [sym_identifier] = ACTIONS(5511), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5513), - [anon_sym_COMMA] = ACTIONS(5513), - [anon_sym_RPAREN] = ACTIONS(5513), - [anon_sym_LPAREN2] = ACTIONS(5513), - [anon_sym_TILDE] = ACTIONS(5513), - [anon_sym_DASH] = ACTIONS(5511), - [anon_sym_PLUS] = ACTIONS(5511), - [anon_sym_STAR] = ACTIONS(5511), - [anon_sym_SLASH] = ACTIONS(5511), - [anon_sym_PERCENT] = ACTIONS(5511), - [anon_sym_PIPE_PIPE] = ACTIONS(5513), - [anon_sym_AMP_AMP] = ACTIONS(5513), - [anon_sym_PIPE] = ACTIONS(5511), - [anon_sym_CARET] = ACTIONS(5511), - [anon_sym_AMP] = ACTIONS(5511), - [anon_sym_EQ_EQ] = ACTIONS(5513), - [anon_sym_BANG_EQ] = ACTIONS(5513), - [anon_sym_GT] = ACTIONS(5511), - [anon_sym_GT_EQ] = ACTIONS(5513), - [anon_sym_LT_EQ] = ACTIONS(5511), - [anon_sym_LT] = ACTIONS(5511), - [anon_sym_LT_LT] = ACTIONS(5511), - [anon_sym_GT_GT] = ACTIONS(5511), - [anon_sym_SEMI] = ACTIONS(5513), - [anon_sym___extension__] = ACTIONS(5511), - [anon_sym_extern] = ACTIONS(5511), - [anon_sym___attribute__] = ACTIONS(5511), - [anon_sym_COLON_COLON] = ACTIONS(5513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5513), - [anon_sym___declspec] = ACTIONS(5511), - [anon_sym___based] = ACTIONS(5511), - [anon_sym_LBRACE] = ACTIONS(5513), - [anon_sym_RBRACE] = ACTIONS(5513), - [anon_sym_LBRACK] = ACTIONS(5511), - [anon_sym_EQ] = ACTIONS(5511), - [anon_sym_static] = ACTIONS(5511), - [anon_sym_register] = ACTIONS(5511), - [anon_sym_inline] = ACTIONS(5511), - [anon_sym___inline] = ACTIONS(5511), - [anon_sym___inline__] = ACTIONS(5511), - [anon_sym___forceinline] = ACTIONS(5511), - [anon_sym_thread_local] = ACTIONS(5511), - [anon_sym___thread] = ACTIONS(5511), - [anon_sym_const] = ACTIONS(5511), - [anon_sym_constexpr] = ACTIONS(5511), - [anon_sym_volatile] = ACTIONS(5511), - [anon_sym_restrict] = ACTIONS(5511), - [anon_sym___restrict__] = ACTIONS(5511), - [anon_sym__Atomic] = ACTIONS(5511), - [anon_sym__Noreturn] = ACTIONS(5511), - [anon_sym_noreturn] = ACTIONS(5511), - [anon_sym_mutable] = ACTIONS(5511), - [anon_sym_constinit] = ACTIONS(5511), - [anon_sym_consteval] = ACTIONS(5511), - [anon_sym_QMARK] = ACTIONS(5513), - [anon_sym_STAR_EQ] = ACTIONS(5513), - [anon_sym_SLASH_EQ] = ACTIONS(5513), - [anon_sym_PERCENT_EQ] = ACTIONS(5513), - [anon_sym_PLUS_EQ] = ACTIONS(5513), - [anon_sym_DASH_EQ] = ACTIONS(5513), - [anon_sym_LT_LT_EQ] = ACTIONS(5513), - [anon_sym_GT_GT_EQ] = ACTIONS(5513), - [anon_sym_AMP_EQ] = ACTIONS(5513), - [anon_sym_CARET_EQ] = ACTIONS(5513), - [anon_sym_PIPE_EQ] = ACTIONS(5513), - [anon_sym_and_eq] = ACTIONS(5511), - [anon_sym_or_eq] = ACTIONS(5511), - [anon_sym_xor_eq] = ACTIONS(5511), - [anon_sym_LT_EQ_GT] = ACTIONS(5513), - [anon_sym_or] = ACTIONS(5511), - [anon_sym_and] = ACTIONS(5511), - [anon_sym_bitor] = ACTIONS(5511), - [anon_sym_xor] = ACTIONS(5511), - [anon_sym_bitand] = ACTIONS(5511), - [anon_sym_not_eq] = ACTIONS(5511), - [anon_sym_DASH_DASH] = ACTIONS(5513), - [anon_sym_PLUS_PLUS] = ACTIONS(5513), - [anon_sym_DOT] = ACTIONS(5511), - [anon_sym_DOT_STAR] = ACTIONS(5513), - [anon_sym_DASH_GT] = ACTIONS(5513), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5511), - [anon_sym_decltype] = ACTIONS(5511), - [anon_sym_virtual] = ACTIONS(5511), - [anon_sym_alignas] = ACTIONS(5511), - [anon_sym_template] = ACTIONS(5511), - [anon_sym_operator] = ACTIONS(5511), + [1793] = { + [sym_identifier] = ACTIONS(5429), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5431), + [anon_sym_COMMA] = ACTIONS(5431), + [anon_sym_RPAREN] = ACTIONS(5431), + [anon_sym_LPAREN2] = ACTIONS(5431), + [anon_sym_TILDE] = ACTIONS(5431), + [anon_sym_DASH] = ACTIONS(5429), + [anon_sym_PLUS] = ACTIONS(5429), + [anon_sym_STAR] = ACTIONS(5429), + [anon_sym_SLASH] = ACTIONS(5429), + [anon_sym_PERCENT] = ACTIONS(5429), + [anon_sym_PIPE_PIPE] = ACTIONS(5431), + [anon_sym_AMP_AMP] = ACTIONS(5431), + [anon_sym_PIPE] = ACTIONS(5429), + [anon_sym_CARET] = ACTIONS(5429), + [anon_sym_AMP] = ACTIONS(5429), + [anon_sym_EQ_EQ] = ACTIONS(5431), + [anon_sym_BANG_EQ] = ACTIONS(5431), + [anon_sym_GT] = ACTIONS(5429), + [anon_sym_GT_EQ] = ACTIONS(5431), + [anon_sym_LT_EQ] = ACTIONS(5429), + [anon_sym_LT] = ACTIONS(5429), + [anon_sym_LT_LT] = ACTIONS(5429), + [anon_sym_GT_GT] = ACTIONS(5429), + [anon_sym_SEMI] = ACTIONS(5431), + [anon_sym___extension__] = ACTIONS(5429), + [anon_sym_extern] = ACTIONS(5429), + [anon_sym___attribute__] = ACTIONS(5429), + [anon_sym_COLON_COLON] = ACTIONS(5431), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5431), + [anon_sym___declspec] = ACTIONS(5429), + [anon_sym___based] = ACTIONS(5429), + [anon_sym_LBRACE] = ACTIONS(5431), + [anon_sym_RBRACE] = ACTIONS(5431), + [anon_sym_LBRACK] = ACTIONS(5429), + [anon_sym_EQ] = ACTIONS(5429), + [anon_sym_static] = ACTIONS(5429), + [anon_sym_register] = ACTIONS(5429), + [anon_sym_inline] = ACTIONS(5429), + [anon_sym___inline] = ACTIONS(5429), + [anon_sym___inline__] = ACTIONS(5429), + [anon_sym___forceinline] = ACTIONS(5429), + [anon_sym_thread_local] = ACTIONS(5429), + [anon_sym___thread] = ACTIONS(5429), + [anon_sym_const] = ACTIONS(5429), + [anon_sym_constexpr] = ACTIONS(5429), + [anon_sym_volatile] = ACTIONS(5429), + [anon_sym_restrict] = ACTIONS(5429), + [anon_sym___restrict__] = ACTIONS(5429), + [anon_sym__Atomic] = ACTIONS(5429), + [anon_sym__Noreturn] = ACTIONS(5429), + [anon_sym_noreturn] = ACTIONS(5429), + [anon_sym_mutable] = ACTIONS(5429), + [anon_sym_constinit] = ACTIONS(5429), + [anon_sym_consteval] = ACTIONS(5429), + [anon_sym_QMARK] = ACTIONS(5431), + [anon_sym_STAR_EQ] = ACTIONS(5431), + [anon_sym_SLASH_EQ] = ACTIONS(5431), + [anon_sym_PERCENT_EQ] = ACTIONS(5431), + [anon_sym_PLUS_EQ] = ACTIONS(5431), + [anon_sym_DASH_EQ] = ACTIONS(5431), + [anon_sym_LT_LT_EQ] = ACTIONS(5431), + [anon_sym_GT_GT_EQ] = ACTIONS(5431), + [anon_sym_AMP_EQ] = ACTIONS(5431), + [anon_sym_CARET_EQ] = ACTIONS(5431), + [anon_sym_PIPE_EQ] = ACTIONS(5431), + [anon_sym_and_eq] = ACTIONS(5429), + [anon_sym_or_eq] = ACTIONS(5429), + [anon_sym_xor_eq] = ACTIONS(5429), + [anon_sym_LT_EQ_GT] = ACTIONS(5431), + [anon_sym_or] = ACTIONS(5429), + [anon_sym_and] = ACTIONS(5429), + [anon_sym_bitor] = ACTIONS(5429), + [anon_sym_xor] = ACTIONS(5429), + [anon_sym_bitand] = ACTIONS(5429), + [anon_sym_not_eq] = ACTIONS(5429), + [anon_sym_DASH_DASH] = ACTIONS(5431), + [anon_sym_PLUS_PLUS] = ACTIONS(5431), + [anon_sym_DOT] = ACTIONS(5429), + [anon_sym_DOT_STAR] = ACTIONS(5431), + [anon_sym_DASH_GT] = ACTIONS(5431), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5429), + [anon_sym_decltype] = ACTIONS(5429), + [anon_sym_virtual] = ACTIONS(5429), + [anon_sym_alignas] = ACTIONS(5429), + [anon_sym_template] = ACTIONS(5429), + [anon_sym_operator] = ACTIONS(5429), }, - [1827] = { - [sym_string_literal] = STATE(2073), - [sym_template_argument_list] = STATE(1964), - [sym_raw_string_literal] = STATE(2073), - [aux_sym_sized_type_specifier_repeat1] = STATE(2089), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_RPAREN] = ACTIONS(4842), - [anon_sym_LPAREN2] = ACTIONS(4842), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4839), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4842), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4839), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(5515), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym___extension__] = ACTIONS(4835), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_signed] = ACTIONS(5490), - [anon_sym_unsigned] = ACTIONS(5490), - [anon_sym_long] = ACTIONS(5490), - [anon_sym_short] = ACTIONS(5490), - [anon_sym_LBRACK] = ACTIONS(4842), - [anon_sym_EQ] = ACTIONS(4837), - [anon_sym_const] = ACTIONS(4827), - [anon_sym_constexpr] = ACTIONS(4835), - [anon_sym_volatile] = ACTIONS(4835), - [anon_sym_restrict] = ACTIONS(4835), - [anon_sym___restrict__] = ACTIONS(4835), - [anon_sym__Atomic] = ACTIONS(4835), - [anon_sym__Noreturn] = ACTIONS(4835), - [anon_sym_noreturn] = ACTIONS(4835), - [anon_sym_mutable] = ACTIONS(4835), - [anon_sym_constinit] = ACTIONS(4835), - [anon_sym_consteval] = ACTIONS(4835), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4829), - [anon_sym_SLASH_EQ] = ACTIONS(4829), - [anon_sym_PERCENT_EQ] = ACTIONS(4829), - [anon_sym_PLUS_EQ] = ACTIONS(4829), - [anon_sym_DASH_EQ] = ACTIONS(4829), - [anon_sym_LT_LT_EQ] = ACTIONS(4829), - [anon_sym_GT_GT_EQ] = ACTIONS(4829), - [anon_sym_AMP_EQ] = ACTIONS(4829), - [anon_sym_CARET_EQ] = ACTIONS(4829), - [anon_sym_PIPE_EQ] = ACTIONS(4829), - [anon_sym_and_eq] = ACTIONS(4829), - [anon_sym_or_eq] = ACTIONS(4829), - [anon_sym_xor_eq] = ACTIONS(4829), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4829), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4829), - [anon_sym_not_eq] = ACTIONS(4829), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4837), - [anon_sym_L_DQUOTE] = ACTIONS(5492), - [anon_sym_u_DQUOTE] = ACTIONS(5492), - [anon_sym_U_DQUOTE] = ACTIONS(5492), - [anon_sym_u8_DQUOTE] = ACTIONS(5492), - [anon_sym_DQUOTE] = ACTIONS(5492), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4835), - [anon_sym_decltype] = ACTIONS(4835), - [anon_sym_R_DQUOTE] = ACTIONS(5494), - [anon_sym_LR_DQUOTE] = ACTIONS(5494), - [anon_sym_uR_DQUOTE] = ACTIONS(5494), - [anon_sym_UR_DQUOTE] = ACTIONS(5494), - [anon_sym_u8R_DQUOTE] = ACTIONS(5494), - [anon_sym_DASH_GT_STAR] = ACTIONS(4829), - [sym_semgrep_metavar] = ACTIONS(4835), + [1794] = { + [sym_template_argument_list] = STATE(1800), + [sym_identifier] = ACTIONS(5374), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5376), + [anon_sym_COMMA] = ACTIONS(5376), + [anon_sym_RPAREN] = ACTIONS(5376), + [anon_sym_LPAREN2] = ACTIONS(5378), + [anon_sym_TILDE] = ACTIONS(5381), + [anon_sym_DASH] = ACTIONS(5383), + [anon_sym_PLUS] = ACTIONS(5383), + [anon_sym_STAR] = ACTIONS(5385), + [anon_sym_SLASH] = ACTIONS(5383), + [anon_sym_PERCENT] = ACTIONS(5383), + [anon_sym_PIPE_PIPE] = ACTIONS(5376), + [anon_sym_AMP_AMP] = ACTIONS(5378), + [anon_sym_PIPE] = ACTIONS(5383), + [anon_sym_CARET] = ACTIONS(5383), + [anon_sym_AMP] = ACTIONS(5385), + [anon_sym_EQ_EQ] = ACTIONS(5376), + [anon_sym_BANG_EQ] = ACTIONS(5376), + [anon_sym_GT] = ACTIONS(5383), + [anon_sym_GT_EQ] = ACTIONS(5376), + [anon_sym_LT_EQ] = ACTIONS(5383), + [anon_sym_LT] = ACTIONS(5388), + [anon_sym_LT_LT] = ACTIONS(5383), + [anon_sym_GT_GT] = ACTIONS(5383), + [anon_sym_SEMI] = ACTIONS(5376), + [anon_sym___extension__] = ACTIONS(5374), + [anon_sym_extern] = ACTIONS(5374), + [anon_sym___attribute__] = ACTIONS(5374), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5381), + [anon_sym___declspec] = ACTIONS(5374), + [anon_sym___based] = ACTIONS(5374), + [anon_sym_LBRACE] = ACTIONS(5381), + [anon_sym_LBRACK] = ACTIONS(5385), + [anon_sym_EQ] = ACTIONS(5383), + [anon_sym_static] = ACTIONS(5374), + [anon_sym_register] = ACTIONS(5374), + [anon_sym_inline] = ACTIONS(5374), + [anon_sym___inline] = ACTIONS(5374), + [anon_sym___inline__] = ACTIONS(5374), + [anon_sym___forceinline] = ACTIONS(5374), + [anon_sym_thread_local] = ACTIONS(5374), + [anon_sym___thread] = ACTIONS(5374), + [anon_sym_const] = ACTIONS(5374), + [anon_sym_constexpr] = ACTIONS(5374), + [anon_sym_volatile] = ACTIONS(5374), + [anon_sym_restrict] = ACTIONS(5374), + [anon_sym___restrict__] = ACTIONS(5374), + [anon_sym__Atomic] = ACTIONS(5374), + [anon_sym__Noreturn] = ACTIONS(5374), + [anon_sym_noreturn] = ACTIONS(5374), + [anon_sym_mutable] = ACTIONS(5374), + [anon_sym_constinit] = ACTIONS(5374), + [anon_sym_consteval] = ACTIONS(5374), + [anon_sym_QMARK] = ACTIONS(5376), + [anon_sym_STAR_EQ] = ACTIONS(5376), + [anon_sym_SLASH_EQ] = ACTIONS(5376), + [anon_sym_PERCENT_EQ] = ACTIONS(5376), + [anon_sym_PLUS_EQ] = ACTIONS(5376), + [anon_sym_DASH_EQ] = ACTIONS(5376), + [anon_sym_LT_LT_EQ] = ACTIONS(5376), + [anon_sym_GT_GT_EQ] = ACTIONS(5376), + [anon_sym_AMP_EQ] = ACTIONS(5376), + [anon_sym_CARET_EQ] = ACTIONS(5376), + [anon_sym_PIPE_EQ] = ACTIONS(5376), + [anon_sym_and_eq] = ACTIONS(5383), + [anon_sym_or_eq] = ACTIONS(5383), + [anon_sym_xor_eq] = ACTIONS(5383), + [anon_sym_LT_EQ_GT] = ACTIONS(5376), + [anon_sym_or] = ACTIONS(5383), + [anon_sym_and] = ACTIONS(5383), + [anon_sym_bitor] = ACTIONS(5383), + [anon_sym_xor] = ACTIONS(5383), + [anon_sym_bitand] = ACTIONS(5383), + [anon_sym_not_eq] = ACTIONS(5383), + [anon_sym_DASH_DASH] = ACTIONS(5376), + [anon_sym_PLUS_PLUS] = ACTIONS(5376), + [anon_sym_DOT] = ACTIONS(5383), + [anon_sym_DOT_STAR] = ACTIONS(5376), + [anon_sym_DASH_GT] = ACTIONS(5376), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5374), + [anon_sym_decltype] = ACTIONS(5374), + [anon_sym_virtual] = ACTIONS(5374), + [anon_sym_alignas] = ACTIONS(5374), + [anon_sym_template] = ACTIONS(5374), + [anon_sym_operator] = ACTIONS(5374), }, - [1828] = { - [sym_identifier] = ACTIONS(5518), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5520), - [anon_sym_COMMA] = ACTIONS(5520), - [anon_sym_LPAREN2] = ACTIONS(5522), - [anon_sym_TILDE] = ACTIONS(5525), - [anon_sym_DASH] = ACTIONS(5527), - [anon_sym_PLUS] = ACTIONS(5527), - [anon_sym_STAR] = ACTIONS(5529), - [anon_sym_SLASH] = ACTIONS(5527), - [anon_sym_PERCENT] = ACTIONS(5527), - [anon_sym_PIPE_PIPE] = ACTIONS(5520), - [anon_sym_AMP_AMP] = ACTIONS(5522), - [anon_sym_PIPE] = ACTIONS(5527), - [anon_sym_CARET] = ACTIONS(5527), - [anon_sym_AMP] = ACTIONS(5529), - [anon_sym_EQ_EQ] = ACTIONS(5520), - [anon_sym_BANG_EQ] = ACTIONS(5520), - [anon_sym_GT] = ACTIONS(5527), - [anon_sym_GT_EQ] = ACTIONS(5520), - [anon_sym_LT_EQ] = ACTIONS(5527), - [anon_sym_LT] = ACTIONS(5527), - [anon_sym_LT_LT] = ACTIONS(5527), - [anon_sym_GT_GT] = ACTIONS(5527), - [anon_sym_SEMI] = ACTIONS(5522), - [anon_sym___extension__] = ACTIONS(5518), - [anon_sym_extern] = ACTIONS(5518), - [anon_sym___attribute__] = ACTIONS(5518), - [anon_sym_COLON_COLON] = ACTIONS(5525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5522), - [anon_sym___declspec] = ACTIONS(5518), - [anon_sym___based] = ACTIONS(5518), - [anon_sym_LBRACE] = ACTIONS(5525), - [anon_sym_RBRACE] = ACTIONS(5520), - [anon_sym_LBRACK] = ACTIONS(5529), - [anon_sym_EQ] = ACTIONS(5527), - [anon_sym_static] = ACTIONS(5518), - [anon_sym_register] = ACTIONS(5518), - [anon_sym_inline] = ACTIONS(5518), - [anon_sym___inline] = ACTIONS(5518), - [anon_sym___inline__] = ACTIONS(5518), - [anon_sym___forceinline] = ACTIONS(5518), - [anon_sym_thread_local] = ACTIONS(5518), - [anon_sym___thread] = ACTIONS(5518), - [anon_sym_const] = ACTIONS(5518), - [anon_sym_constexpr] = ACTIONS(5518), - [anon_sym_volatile] = ACTIONS(5518), - [anon_sym_restrict] = ACTIONS(5518), - [anon_sym___restrict__] = ACTIONS(5518), - [anon_sym__Atomic] = ACTIONS(5518), - [anon_sym__Noreturn] = ACTIONS(5518), - [anon_sym_noreturn] = ACTIONS(5518), - [anon_sym_mutable] = ACTIONS(5518), - [anon_sym_constinit] = ACTIONS(5518), - [anon_sym_consteval] = ACTIONS(5518), - [anon_sym_QMARK] = ACTIONS(5520), - [anon_sym_STAR_EQ] = ACTIONS(5520), - [anon_sym_SLASH_EQ] = ACTIONS(5520), - [anon_sym_PERCENT_EQ] = ACTIONS(5520), - [anon_sym_PLUS_EQ] = ACTIONS(5520), - [anon_sym_DASH_EQ] = ACTIONS(5520), - [anon_sym_LT_LT_EQ] = ACTIONS(5520), - [anon_sym_GT_GT_EQ] = ACTIONS(5520), - [anon_sym_AMP_EQ] = ACTIONS(5520), - [anon_sym_CARET_EQ] = ACTIONS(5520), - [anon_sym_PIPE_EQ] = ACTIONS(5520), - [anon_sym_and_eq] = ACTIONS(5527), - [anon_sym_or_eq] = ACTIONS(5527), - [anon_sym_xor_eq] = ACTIONS(5527), - [anon_sym_LT_EQ_GT] = ACTIONS(5520), - [anon_sym_or] = ACTIONS(5527), - [anon_sym_and] = ACTIONS(5527), - [anon_sym_bitor] = ACTIONS(5527), - [anon_sym_xor] = ACTIONS(5527), - [anon_sym_bitand] = ACTIONS(5527), - [anon_sym_not_eq] = ACTIONS(5527), - [anon_sym_DASH_DASH] = ACTIONS(5520), - [anon_sym_PLUS_PLUS] = ACTIONS(5520), - [anon_sym_DOT] = ACTIONS(5527), - [anon_sym_DOT_STAR] = ACTIONS(5520), - [anon_sym_DASH_GT] = ACTIONS(5520), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5518), - [anon_sym_decltype] = ACTIONS(5518), - [anon_sym_virtual] = ACTIONS(5518), - [anon_sym_alignas] = ACTIONS(5518), - [anon_sym_template] = ACTIONS(5518), - [anon_sym_operator] = ACTIONS(5518), + [1795] = { + [sym_identifier] = ACTIONS(5433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5435), + [anon_sym_COMMA] = ACTIONS(5435), + [anon_sym_RPAREN] = ACTIONS(5435), + [anon_sym_LPAREN2] = ACTIONS(5435), + [anon_sym_TILDE] = ACTIONS(5438), + [anon_sym_DASH] = ACTIONS(5440), + [anon_sym_PLUS] = ACTIONS(5440), + [anon_sym_STAR] = ACTIONS(5442), + [anon_sym_SLASH] = ACTIONS(5440), + [anon_sym_PERCENT] = ACTIONS(5440), + [anon_sym_PIPE_PIPE] = ACTIONS(5445), + [anon_sym_AMP_AMP] = ACTIONS(5435), + [anon_sym_PIPE] = ACTIONS(5440), + [anon_sym_CARET] = ACTIONS(5440), + [anon_sym_AMP] = ACTIONS(5442), + [anon_sym_EQ_EQ] = ACTIONS(5445), + [anon_sym_BANG_EQ] = ACTIONS(5445), + [anon_sym_GT] = ACTIONS(5440), + [anon_sym_GT_EQ] = ACTIONS(5445), + [anon_sym_LT_EQ] = ACTIONS(5440), + [anon_sym_LT] = ACTIONS(5440), + [anon_sym_LT_LT] = ACTIONS(5440), + [anon_sym_GT_GT] = ACTIONS(5440), + [anon_sym___extension__] = ACTIONS(5433), + [anon_sym_extern] = ACTIONS(5433), + [anon_sym___attribute__] = ACTIONS(5433), + [anon_sym_COLON_COLON] = ACTIONS(5438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5438), + [anon_sym___declspec] = ACTIONS(5433), + [anon_sym___based] = ACTIONS(5433), + [anon_sym_LBRACE] = ACTIONS(5438), + [anon_sym_LBRACK] = ACTIONS(5442), + [anon_sym_EQ] = ACTIONS(5442), + [anon_sym_static] = ACTIONS(5433), + [anon_sym_register] = ACTIONS(5433), + [anon_sym_inline] = ACTIONS(5433), + [anon_sym___inline] = ACTIONS(5433), + [anon_sym___inline__] = ACTIONS(5433), + [anon_sym___forceinline] = ACTIONS(5433), + [anon_sym_thread_local] = ACTIONS(5433), + [anon_sym___thread] = ACTIONS(5433), + [anon_sym_const] = ACTIONS(5433), + [anon_sym_constexpr] = ACTIONS(5433), + [anon_sym_volatile] = ACTIONS(5433), + [anon_sym_restrict] = ACTIONS(5433), + [anon_sym___restrict__] = ACTIONS(5433), + [anon_sym__Atomic] = ACTIONS(5433), + [anon_sym__Noreturn] = ACTIONS(5433), + [anon_sym_noreturn] = ACTIONS(5433), + [anon_sym_mutable] = ACTIONS(5433), + [anon_sym_constinit] = ACTIONS(5433), + [anon_sym_consteval] = ACTIONS(5433), + [anon_sym_QMARK] = ACTIONS(5445), + [anon_sym_STAR_EQ] = ACTIONS(5445), + [anon_sym_SLASH_EQ] = ACTIONS(5445), + [anon_sym_PERCENT_EQ] = ACTIONS(5445), + [anon_sym_PLUS_EQ] = ACTIONS(5445), + [anon_sym_DASH_EQ] = ACTIONS(5445), + [anon_sym_LT_LT_EQ] = ACTIONS(5445), + [anon_sym_GT_GT_EQ] = ACTIONS(5445), + [anon_sym_AMP_EQ] = ACTIONS(5445), + [anon_sym_CARET_EQ] = ACTIONS(5445), + [anon_sym_PIPE_EQ] = ACTIONS(5445), + [anon_sym_and_eq] = ACTIONS(5440), + [anon_sym_or_eq] = ACTIONS(5440), + [anon_sym_xor_eq] = ACTIONS(5440), + [anon_sym_LT_EQ_GT] = ACTIONS(5445), + [anon_sym_or] = ACTIONS(5440), + [anon_sym_and] = ACTIONS(5440), + [anon_sym_bitor] = ACTIONS(5440), + [anon_sym_xor] = ACTIONS(5440), + [anon_sym_bitand] = ACTIONS(5440), + [anon_sym_not_eq] = ACTIONS(5440), + [anon_sym_DASH_DASH] = ACTIONS(5445), + [anon_sym_PLUS_PLUS] = ACTIONS(5445), + [anon_sym_DOT] = ACTIONS(5440), + [anon_sym_DOT_STAR] = ACTIONS(5445), + [anon_sym_DASH_GT] = ACTIONS(5440), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5433), + [anon_sym_decltype] = ACTIONS(5433), + [anon_sym_virtual] = ACTIONS(5433), + [anon_sym_alignas] = ACTIONS(5433), + [anon_sym_template] = ACTIONS(5433), + [anon_sym_operator] = ACTIONS(5433), + [anon_sym_DASH_GT_STAR] = ACTIONS(5445), }, - [1829] = { - [sym_identifier] = ACTIONS(5481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5483), - [anon_sym_COMMA] = ACTIONS(5483), - [anon_sym_RPAREN] = ACTIONS(5483), - [anon_sym_LPAREN2] = ACTIONS(5483), - [anon_sym_TILDE] = ACTIONS(5483), - [anon_sym_DASH] = ACTIONS(5481), - [anon_sym_PLUS] = ACTIONS(5481), - [anon_sym_STAR] = ACTIONS(5481), - [anon_sym_SLASH] = ACTIONS(5481), - [anon_sym_PERCENT] = ACTIONS(5481), - [anon_sym_PIPE_PIPE] = ACTIONS(5483), - [anon_sym_AMP_AMP] = ACTIONS(5483), - [anon_sym_PIPE] = ACTIONS(5481), - [anon_sym_CARET] = ACTIONS(5481), - [anon_sym_AMP] = ACTIONS(5481), - [anon_sym_EQ_EQ] = ACTIONS(5483), - [anon_sym_BANG_EQ] = ACTIONS(5483), - [anon_sym_GT] = ACTIONS(5481), - [anon_sym_GT_EQ] = ACTIONS(5483), - [anon_sym_LT_EQ] = ACTIONS(5481), - [anon_sym_LT] = ACTIONS(5481), - [anon_sym_LT_LT] = ACTIONS(5481), - [anon_sym_GT_GT] = ACTIONS(5481), - [anon_sym___extension__] = ACTIONS(5481), - [anon_sym_extern] = ACTIONS(5481), - [anon_sym___attribute__] = ACTIONS(5481), - [anon_sym_COLON_COLON] = ACTIONS(5483), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5483), - [anon_sym___declspec] = ACTIONS(5481), - [anon_sym___based] = ACTIONS(5481), - [anon_sym_LBRACE] = ACTIONS(5483), - [anon_sym_LBRACK] = ACTIONS(5481), - [anon_sym_EQ] = ACTIONS(5481), - [anon_sym_static] = ACTIONS(5481), - [anon_sym_register] = ACTIONS(5481), - [anon_sym_inline] = ACTIONS(5481), - [anon_sym___inline] = ACTIONS(5481), - [anon_sym___inline__] = ACTIONS(5481), - [anon_sym___forceinline] = ACTIONS(5481), - [anon_sym_thread_local] = ACTIONS(5481), - [anon_sym___thread] = ACTIONS(5481), - [anon_sym_const] = ACTIONS(5481), - [anon_sym_constexpr] = ACTIONS(5481), - [anon_sym_volatile] = ACTIONS(5481), - [anon_sym_restrict] = ACTIONS(5481), - [anon_sym___restrict__] = ACTIONS(5481), - [anon_sym__Atomic] = ACTIONS(5481), - [anon_sym__Noreturn] = ACTIONS(5481), - [anon_sym_noreturn] = ACTIONS(5481), - [anon_sym_mutable] = ACTIONS(5481), - [anon_sym_constinit] = ACTIONS(5481), - [anon_sym_consteval] = ACTIONS(5481), - [anon_sym_QMARK] = ACTIONS(5483), - [anon_sym_STAR_EQ] = ACTIONS(5483), - [anon_sym_SLASH_EQ] = ACTIONS(5483), - [anon_sym_PERCENT_EQ] = ACTIONS(5483), - [anon_sym_PLUS_EQ] = ACTIONS(5483), - [anon_sym_DASH_EQ] = ACTIONS(5483), - [anon_sym_LT_LT_EQ] = ACTIONS(5483), - [anon_sym_GT_GT_EQ] = ACTIONS(5483), - [anon_sym_AMP_EQ] = ACTIONS(5483), - [anon_sym_CARET_EQ] = ACTIONS(5483), - [anon_sym_PIPE_EQ] = ACTIONS(5483), - [anon_sym_and_eq] = ACTIONS(5481), - [anon_sym_or_eq] = ACTIONS(5481), - [anon_sym_xor_eq] = ACTIONS(5481), - [anon_sym_LT_EQ_GT] = ACTIONS(5483), - [anon_sym_or] = ACTIONS(5481), - [anon_sym_and] = ACTIONS(5481), - [anon_sym_bitor] = ACTIONS(5481), - [anon_sym_xor] = ACTIONS(5481), - [anon_sym_bitand] = ACTIONS(5481), - [anon_sym_not_eq] = ACTIONS(5481), - [anon_sym_DASH_DASH] = ACTIONS(5483), - [anon_sym_PLUS_PLUS] = ACTIONS(5483), - [anon_sym_DOT] = ACTIONS(5481), - [anon_sym_DOT_STAR] = ACTIONS(5483), - [anon_sym_DASH_GT] = ACTIONS(5481), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5481), - [anon_sym_decltype] = ACTIONS(5481), - [anon_sym_virtual] = ACTIONS(5481), - [anon_sym_alignas] = ACTIONS(5481), - [anon_sym_template] = ACTIONS(5481), - [anon_sym_operator] = ACTIONS(5481), - [anon_sym_DASH_GT_STAR] = ACTIONS(5483), + [1796] = { + [sym_identifier] = ACTIONS(5433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5445), + [anon_sym_COMMA] = ACTIONS(5445), + [anon_sym_LPAREN2] = ACTIONS(5435), + [anon_sym_TILDE] = ACTIONS(5438), + [anon_sym_DASH] = ACTIONS(5440), + [anon_sym_PLUS] = ACTIONS(5440), + [anon_sym_STAR] = ACTIONS(5442), + [anon_sym_SLASH] = ACTIONS(5440), + [anon_sym_PERCENT] = ACTIONS(5440), + [anon_sym_PIPE_PIPE] = ACTIONS(5445), + [anon_sym_AMP_AMP] = ACTIONS(5435), + [anon_sym_PIPE] = ACTIONS(5440), + [anon_sym_CARET] = ACTIONS(5440), + [anon_sym_AMP] = ACTIONS(5442), + [anon_sym_EQ_EQ] = ACTIONS(5445), + [anon_sym_BANG_EQ] = ACTIONS(5445), + [anon_sym_GT] = ACTIONS(5440), + [anon_sym_GT_EQ] = ACTIONS(5445), + [anon_sym_LT_EQ] = ACTIONS(5440), + [anon_sym_LT] = ACTIONS(5440), + [anon_sym_LT_LT] = ACTIONS(5440), + [anon_sym_GT_GT] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5435), + [anon_sym___extension__] = ACTIONS(5433), + [anon_sym_extern] = ACTIONS(5433), + [anon_sym___attribute__] = ACTIONS(5433), + [anon_sym_COLON_COLON] = ACTIONS(5438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5435), + [anon_sym___declspec] = ACTIONS(5433), + [anon_sym___based] = ACTIONS(5433), + [anon_sym_LBRACE] = ACTIONS(5438), + [anon_sym_RBRACE] = ACTIONS(5445), + [anon_sym_LBRACK] = ACTIONS(5442), + [anon_sym_EQ] = ACTIONS(5440), + [anon_sym_static] = ACTIONS(5433), + [anon_sym_register] = ACTIONS(5433), + [anon_sym_inline] = ACTIONS(5433), + [anon_sym___inline] = ACTIONS(5433), + [anon_sym___inline__] = ACTIONS(5433), + [anon_sym___forceinline] = ACTIONS(5433), + [anon_sym_thread_local] = ACTIONS(5433), + [anon_sym___thread] = ACTIONS(5433), + [anon_sym_const] = ACTIONS(5433), + [anon_sym_constexpr] = ACTIONS(5433), + [anon_sym_volatile] = ACTIONS(5433), + [anon_sym_restrict] = ACTIONS(5433), + [anon_sym___restrict__] = ACTIONS(5433), + [anon_sym__Atomic] = ACTIONS(5433), + [anon_sym__Noreturn] = ACTIONS(5433), + [anon_sym_noreturn] = ACTIONS(5433), + [anon_sym_mutable] = ACTIONS(5433), + [anon_sym_constinit] = ACTIONS(5433), + [anon_sym_consteval] = ACTIONS(5433), + [anon_sym_QMARK] = ACTIONS(5445), + [anon_sym_STAR_EQ] = ACTIONS(5445), + [anon_sym_SLASH_EQ] = ACTIONS(5445), + [anon_sym_PERCENT_EQ] = ACTIONS(5445), + [anon_sym_PLUS_EQ] = ACTIONS(5445), + [anon_sym_DASH_EQ] = ACTIONS(5445), + [anon_sym_LT_LT_EQ] = ACTIONS(5445), + [anon_sym_GT_GT_EQ] = ACTIONS(5445), + [anon_sym_AMP_EQ] = ACTIONS(5445), + [anon_sym_CARET_EQ] = ACTIONS(5445), + [anon_sym_PIPE_EQ] = ACTIONS(5445), + [anon_sym_and_eq] = ACTIONS(5440), + [anon_sym_or_eq] = ACTIONS(5440), + [anon_sym_xor_eq] = ACTIONS(5440), + [anon_sym_LT_EQ_GT] = ACTIONS(5445), + [anon_sym_or] = ACTIONS(5440), + [anon_sym_and] = ACTIONS(5440), + [anon_sym_bitor] = ACTIONS(5440), + [anon_sym_xor] = ACTIONS(5440), + [anon_sym_bitand] = ACTIONS(5440), + [anon_sym_not_eq] = ACTIONS(5440), + [anon_sym_DASH_DASH] = ACTIONS(5445), + [anon_sym_PLUS_PLUS] = ACTIONS(5445), + [anon_sym_DOT] = ACTIONS(5440), + [anon_sym_DOT_STAR] = ACTIONS(5445), + [anon_sym_DASH_GT] = ACTIONS(5445), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5433), + [anon_sym_decltype] = ACTIONS(5433), + [anon_sym_virtual] = ACTIONS(5433), + [anon_sym_alignas] = ACTIONS(5433), + [anon_sym_template] = ACTIONS(5433), + [anon_sym_operator] = ACTIONS(5433), }, - [1830] = { - [sym_identifier] = ACTIONS(5500), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5502), - [anon_sym_COMMA] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(5502), - [anon_sym_LPAREN2] = ACTIONS(5502), - [anon_sym_TILDE] = ACTIONS(5502), - [anon_sym_DASH] = ACTIONS(5500), - [anon_sym_PLUS] = ACTIONS(5500), - [anon_sym_STAR] = ACTIONS(5500), - [anon_sym_SLASH] = ACTIONS(5500), - [anon_sym_PERCENT] = ACTIONS(5500), - [anon_sym_PIPE_PIPE] = ACTIONS(5502), - [anon_sym_AMP_AMP] = ACTIONS(5502), - [anon_sym_PIPE] = ACTIONS(5500), - [anon_sym_CARET] = ACTIONS(5500), - [anon_sym_AMP] = ACTIONS(5500), - [anon_sym_EQ_EQ] = ACTIONS(5502), - [anon_sym_BANG_EQ] = ACTIONS(5502), - [anon_sym_GT] = ACTIONS(5500), - [anon_sym_GT_EQ] = ACTIONS(5502), - [anon_sym_LT_EQ] = ACTIONS(5500), - [anon_sym_LT] = ACTIONS(5500), - [anon_sym_LT_LT] = ACTIONS(5500), - [anon_sym_GT_GT] = ACTIONS(5500), - [anon_sym___extension__] = ACTIONS(5500), - [anon_sym_extern] = ACTIONS(5500), - [anon_sym___attribute__] = ACTIONS(5500), - [anon_sym_COLON_COLON] = ACTIONS(5502), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5502), - [anon_sym___declspec] = ACTIONS(5500), - [anon_sym___based] = ACTIONS(5500), - [anon_sym_LBRACE] = ACTIONS(5502), - [anon_sym_LBRACK] = ACTIONS(5500), - [anon_sym_EQ] = ACTIONS(5500), - [anon_sym_static] = ACTIONS(5500), - [anon_sym_register] = ACTIONS(5500), - [anon_sym_inline] = ACTIONS(5500), - [anon_sym___inline] = ACTIONS(5500), - [anon_sym___inline__] = ACTIONS(5500), - [anon_sym___forceinline] = ACTIONS(5500), - [anon_sym_thread_local] = ACTIONS(5500), - [anon_sym___thread] = ACTIONS(5500), - [anon_sym_const] = ACTIONS(5500), - [anon_sym_constexpr] = ACTIONS(5500), - [anon_sym_volatile] = ACTIONS(5500), - [anon_sym_restrict] = ACTIONS(5500), - [anon_sym___restrict__] = ACTIONS(5500), - [anon_sym__Atomic] = ACTIONS(5500), - [anon_sym__Noreturn] = ACTIONS(5500), - [anon_sym_noreturn] = ACTIONS(5500), - [anon_sym_mutable] = ACTIONS(5500), - [anon_sym_constinit] = ACTIONS(5500), - [anon_sym_consteval] = ACTIONS(5500), - [anon_sym_QMARK] = ACTIONS(5502), - [anon_sym_STAR_EQ] = ACTIONS(5502), - [anon_sym_SLASH_EQ] = ACTIONS(5502), - [anon_sym_PERCENT_EQ] = ACTIONS(5502), - [anon_sym_PLUS_EQ] = ACTIONS(5502), - [anon_sym_DASH_EQ] = ACTIONS(5502), - [anon_sym_LT_LT_EQ] = ACTIONS(5502), - [anon_sym_GT_GT_EQ] = ACTIONS(5502), - [anon_sym_AMP_EQ] = ACTIONS(5502), - [anon_sym_CARET_EQ] = ACTIONS(5502), - [anon_sym_PIPE_EQ] = ACTIONS(5502), - [anon_sym_and_eq] = ACTIONS(5500), - [anon_sym_or_eq] = ACTIONS(5500), - [anon_sym_xor_eq] = ACTIONS(5500), - [anon_sym_LT_EQ_GT] = ACTIONS(5502), - [anon_sym_or] = ACTIONS(5500), - [anon_sym_and] = ACTIONS(5500), - [anon_sym_bitor] = ACTIONS(5500), - [anon_sym_xor] = ACTIONS(5500), - [anon_sym_bitand] = ACTIONS(5500), - [anon_sym_not_eq] = ACTIONS(5500), - [anon_sym_DASH_DASH] = ACTIONS(5502), - [anon_sym_PLUS_PLUS] = ACTIONS(5502), - [anon_sym_DOT] = ACTIONS(5500), - [anon_sym_DOT_STAR] = ACTIONS(5502), - [anon_sym_DASH_GT] = ACTIONS(5500), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5500), - [anon_sym_decltype] = ACTIONS(5500), - [anon_sym_virtual] = ACTIONS(5500), - [anon_sym_alignas] = ACTIONS(5500), - [anon_sym_template] = ACTIONS(5500), - [anon_sym_operator] = ACTIONS(5500), - [anon_sym_DASH_GT_STAR] = ACTIONS(5502), + [1797] = { + [sym_template_argument_list] = STATE(1807), + [sym_identifier] = ACTIONS(5374), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5378), + [anon_sym_COMMA] = ACTIONS(5378), + [anon_sym_RPAREN] = ACTIONS(5378), + [anon_sym_LPAREN2] = ACTIONS(5378), + [anon_sym_TILDE] = ACTIONS(5381), + [anon_sym_DASH] = ACTIONS(5383), + [anon_sym_PLUS] = ACTIONS(5383), + [anon_sym_STAR] = ACTIONS(5385), + [anon_sym_SLASH] = ACTIONS(5383), + [anon_sym_PERCENT] = ACTIONS(5383), + [anon_sym_PIPE_PIPE] = ACTIONS(5376), + [anon_sym_AMP_AMP] = ACTIONS(5378), + [anon_sym_PIPE] = ACTIONS(5383), + [anon_sym_CARET] = ACTIONS(5383), + [anon_sym_AMP] = ACTIONS(5385), + [anon_sym_EQ_EQ] = ACTIONS(5376), + [anon_sym_BANG_EQ] = ACTIONS(5376), + [anon_sym_GT] = ACTIONS(5383), + [anon_sym_GT_EQ] = ACTIONS(5376), + [anon_sym_LT_EQ] = ACTIONS(5383), + [anon_sym_LT] = ACTIONS(5388), + [anon_sym_LT_LT] = ACTIONS(5383), + [anon_sym_GT_GT] = ACTIONS(5383), + [anon_sym___extension__] = ACTIONS(5374), + [anon_sym_extern] = ACTIONS(5374), + [anon_sym___attribute__] = ACTIONS(5374), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5381), + [anon_sym___declspec] = ACTIONS(5374), + [anon_sym___based] = ACTIONS(5374), + [anon_sym_LBRACE] = ACTIONS(5381), + [anon_sym_LBRACK] = ACTIONS(5385), + [anon_sym_EQ] = ACTIONS(5385), + [anon_sym_static] = ACTIONS(5374), + [anon_sym_register] = ACTIONS(5374), + [anon_sym_inline] = ACTIONS(5374), + [anon_sym___inline] = ACTIONS(5374), + [anon_sym___inline__] = ACTIONS(5374), + [anon_sym___forceinline] = ACTIONS(5374), + [anon_sym_thread_local] = ACTIONS(5374), + [anon_sym___thread] = ACTIONS(5374), + [anon_sym_const] = ACTIONS(5374), + [anon_sym_constexpr] = ACTIONS(5374), + [anon_sym_volatile] = ACTIONS(5374), + [anon_sym_restrict] = ACTIONS(5374), + [anon_sym___restrict__] = ACTIONS(5374), + [anon_sym__Atomic] = ACTIONS(5374), + [anon_sym__Noreturn] = ACTIONS(5374), + [anon_sym_noreturn] = ACTIONS(5374), + [anon_sym_mutable] = ACTIONS(5374), + [anon_sym_constinit] = ACTIONS(5374), + [anon_sym_consteval] = ACTIONS(5374), + [anon_sym_QMARK] = ACTIONS(5376), + [anon_sym_STAR_EQ] = ACTIONS(5376), + [anon_sym_SLASH_EQ] = ACTIONS(5376), + [anon_sym_PERCENT_EQ] = ACTIONS(5376), + [anon_sym_PLUS_EQ] = ACTIONS(5376), + [anon_sym_DASH_EQ] = ACTIONS(5376), + [anon_sym_LT_LT_EQ] = ACTIONS(5376), + [anon_sym_GT_GT_EQ] = ACTIONS(5376), + [anon_sym_AMP_EQ] = ACTIONS(5376), + [anon_sym_CARET_EQ] = ACTIONS(5376), + [anon_sym_PIPE_EQ] = ACTIONS(5376), + [anon_sym_and_eq] = ACTIONS(5383), + [anon_sym_or_eq] = ACTIONS(5383), + [anon_sym_xor_eq] = ACTIONS(5383), + [anon_sym_LT_EQ_GT] = ACTIONS(5376), + [anon_sym_or] = ACTIONS(5383), + [anon_sym_and] = ACTIONS(5383), + [anon_sym_bitor] = ACTIONS(5383), + [anon_sym_xor] = ACTIONS(5383), + [anon_sym_bitand] = ACTIONS(5383), + [anon_sym_not_eq] = ACTIONS(5383), + [anon_sym_DASH_DASH] = ACTIONS(5376), + [anon_sym_PLUS_PLUS] = ACTIONS(5376), + [anon_sym_DOT] = ACTIONS(5383), + [anon_sym_DOT_STAR] = ACTIONS(5376), + [anon_sym_DASH_GT] = ACTIONS(5376), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5374), + [anon_sym_decltype] = ACTIONS(5374), + [anon_sym_virtual] = ACTIONS(5374), + [anon_sym_alignas] = ACTIONS(5374), + [anon_sym_template] = ACTIONS(5374), + [anon_sym_operator] = ACTIONS(5374), }, - [1831] = { - [sym_template_argument_list] = STATE(1840), - [sym_identifier] = ACTIONS(5460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5464), - [anon_sym_COMMA] = ACTIONS(5464), - [anon_sym_RPAREN] = ACTIONS(5464), - [anon_sym_LPAREN2] = ACTIONS(5464), - [anon_sym_TILDE] = ACTIONS(5467), - [anon_sym_DASH] = ACTIONS(5469), - [anon_sym_PLUS] = ACTIONS(5469), - [anon_sym_STAR] = ACTIONS(5471), - [anon_sym_SLASH] = ACTIONS(5469), - [anon_sym_PERCENT] = ACTIONS(5469), - [anon_sym_PIPE_PIPE] = ACTIONS(5462), - [anon_sym_AMP_AMP] = ACTIONS(5464), - [anon_sym_PIPE] = ACTIONS(5469), - [anon_sym_CARET] = ACTIONS(5469), - [anon_sym_AMP] = ACTIONS(5471), - [anon_sym_EQ_EQ] = ACTIONS(5462), - [anon_sym_BANG_EQ] = ACTIONS(5462), - [anon_sym_GT] = ACTIONS(5469), - [anon_sym_GT_EQ] = ACTIONS(5462), - [anon_sym_LT_EQ] = ACTIONS(5469), - [anon_sym_LT] = ACTIONS(5474), - [anon_sym_LT_LT] = ACTIONS(5469), - [anon_sym_GT_GT] = ACTIONS(5469), - [anon_sym___extension__] = ACTIONS(5460), - [anon_sym_extern] = ACTIONS(5460), - [anon_sym___attribute__] = ACTIONS(5460), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5467), - [anon_sym___declspec] = ACTIONS(5460), - [anon_sym___based] = ACTIONS(5460), - [anon_sym_LBRACE] = ACTIONS(5467), - [anon_sym_LBRACK] = ACTIONS(5471), - [anon_sym_EQ] = ACTIONS(5471), - [anon_sym_static] = ACTIONS(5460), - [anon_sym_register] = ACTIONS(5460), - [anon_sym_inline] = ACTIONS(5460), - [anon_sym___inline] = ACTIONS(5460), - [anon_sym___inline__] = ACTIONS(5460), - [anon_sym___forceinline] = ACTIONS(5460), - [anon_sym_thread_local] = ACTIONS(5460), - [anon_sym___thread] = ACTIONS(5460), - [anon_sym_const] = ACTIONS(5460), - [anon_sym_constexpr] = ACTIONS(5460), - [anon_sym_volatile] = ACTIONS(5460), - [anon_sym_restrict] = ACTIONS(5460), - [anon_sym___restrict__] = ACTIONS(5460), - [anon_sym__Atomic] = ACTIONS(5460), - [anon_sym__Noreturn] = ACTIONS(5460), - [anon_sym_noreturn] = ACTIONS(5460), - [anon_sym_mutable] = ACTIONS(5460), - [anon_sym_constinit] = ACTIONS(5460), - [anon_sym_consteval] = ACTIONS(5460), - [anon_sym_QMARK] = ACTIONS(5462), - [anon_sym_STAR_EQ] = ACTIONS(5462), - [anon_sym_SLASH_EQ] = ACTIONS(5462), - [anon_sym_PERCENT_EQ] = ACTIONS(5462), - [anon_sym_PLUS_EQ] = ACTIONS(5462), - [anon_sym_DASH_EQ] = ACTIONS(5462), - [anon_sym_LT_LT_EQ] = ACTIONS(5462), - [anon_sym_GT_GT_EQ] = ACTIONS(5462), - [anon_sym_AMP_EQ] = ACTIONS(5462), - [anon_sym_CARET_EQ] = ACTIONS(5462), - [anon_sym_PIPE_EQ] = ACTIONS(5462), - [anon_sym_and_eq] = ACTIONS(5469), - [anon_sym_or_eq] = ACTIONS(5469), - [anon_sym_xor_eq] = ACTIONS(5469), - [anon_sym_LT_EQ_GT] = ACTIONS(5462), - [anon_sym_or] = ACTIONS(5469), - [anon_sym_and] = ACTIONS(5469), - [anon_sym_bitor] = ACTIONS(5469), - [anon_sym_xor] = ACTIONS(5469), - [anon_sym_bitand] = ACTIONS(5469), - [anon_sym_not_eq] = ACTIONS(5469), - [anon_sym_DASH_DASH] = ACTIONS(5462), - [anon_sym_PLUS_PLUS] = ACTIONS(5462), - [anon_sym_DOT] = ACTIONS(5469), - [anon_sym_DOT_STAR] = ACTIONS(5462), - [anon_sym_DASH_GT] = ACTIONS(5462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5460), - [anon_sym_decltype] = ACTIONS(5460), - [anon_sym_virtual] = ACTIONS(5460), - [anon_sym_alignas] = ACTIONS(5460), - [anon_sym_template] = ACTIONS(5460), - [anon_sym_operator] = ACTIONS(5460), + [1798] = { + [sym_identifier] = ACTIONS(5417), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5419), + [anon_sym_COMMA] = ACTIONS(5419), + [anon_sym_RPAREN] = ACTIONS(5419), + [anon_sym_LPAREN2] = ACTIONS(5419), + [anon_sym_TILDE] = ACTIONS(5419), + [anon_sym_DASH] = ACTIONS(5417), + [anon_sym_PLUS] = ACTIONS(5417), + [anon_sym_STAR] = ACTIONS(5417), + [anon_sym_SLASH] = ACTIONS(5417), + [anon_sym_PERCENT] = ACTIONS(5417), + [anon_sym_PIPE_PIPE] = ACTIONS(5419), + [anon_sym_AMP_AMP] = ACTIONS(5419), + [anon_sym_PIPE] = ACTIONS(5417), + [anon_sym_CARET] = ACTIONS(5417), + [anon_sym_AMP] = ACTIONS(5417), + [anon_sym_EQ_EQ] = ACTIONS(5419), + [anon_sym_BANG_EQ] = ACTIONS(5419), + [anon_sym_GT] = ACTIONS(5417), + [anon_sym_GT_EQ] = ACTIONS(5419), + [anon_sym_LT_EQ] = ACTIONS(5417), + [anon_sym_LT] = ACTIONS(5417), + [anon_sym_LT_LT] = ACTIONS(5417), + [anon_sym_GT_GT] = ACTIONS(5417), + [anon_sym___extension__] = ACTIONS(5417), + [anon_sym_extern] = ACTIONS(5417), + [anon_sym___attribute__] = ACTIONS(5417), + [anon_sym_COLON_COLON] = ACTIONS(5419), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5419), + [anon_sym___declspec] = ACTIONS(5417), + [anon_sym___based] = ACTIONS(5417), + [anon_sym_LBRACE] = ACTIONS(5419), + [anon_sym_LBRACK] = ACTIONS(5417), + [anon_sym_EQ] = ACTIONS(5417), + [anon_sym_static] = ACTIONS(5417), + [anon_sym_register] = ACTIONS(5417), + [anon_sym_inline] = ACTIONS(5417), + [anon_sym___inline] = ACTIONS(5417), + [anon_sym___inline__] = ACTIONS(5417), + [anon_sym___forceinline] = ACTIONS(5417), + [anon_sym_thread_local] = ACTIONS(5417), + [anon_sym___thread] = ACTIONS(5417), + [anon_sym_const] = ACTIONS(5417), + [anon_sym_constexpr] = ACTIONS(5417), + [anon_sym_volatile] = ACTIONS(5417), + [anon_sym_restrict] = ACTIONS(5417), + [anon_sym___restrict__] = ACTIONS(5417), + [anon_sym__Atomic] = ACTIONS(5417), + [anon_sym__Noreturn] = ACTIONS(5417), + [anon_sym_noreturn] = ACTIONS(5417), + [anon_sym_mutable] = ACTIONS(5417), + [anon_sym_constinit] = ACTIONS(5417), + [anon_sym_consteval] = ACTIONS(5417), + [anon_sym_QMARK] = ACTIONS(5419), + [anon_sym_STAR_EQ] = ACTIONS(5419), + [anon_sym_SLASH_EQ] = ACTIONS(5419), + [anon_sym_PERCENT_EQ] = ACTIONS(5419), + [anon_sym_PLUS_EQ] = ACTIONS(5419), + [anon_sym_DASH_EQ] = ACTIONS(5419), + [anon_sym_LT_LT_EQ] = ACTIONS(5419), + [anon_sym_GT_GT_EQ] = ACTIONS(5419), + [anon_sym_AMP_EQ] = ACTIONS(5419), + [anon_sym_CARET_EQ] = ACTIONS(5419), + [anon_sym_PIPE_EQ] = ACTIONS(5419), + [anon_sym_and_eq] = ACTIONS(5417), + [anon_sym_or_eq] = ACTIONS(5417), + [anon_sym_xor_eq] = ACTIONS(5417), + [anon_sym_LT_EQ_GT] = ACTIONS(5419), + [anon_sym_or] = ACTIONS(5417), + [anon_sym_and] = ACTIONS(5417), + [anon_sym_bitor] = ACTIONS(5417), + [anon_sym_xor] = ACTIONS(5417), + [anon_sym_bitand] = ACTIONS(5417), + [anon_sym_not_eq] = ACTIONS(5417), + [anon_sym_DASH_DASH] = ACTIONS(5419), + [anon_sym_PLUS_PLUS] = ACTIONS(5419), + [anon_sym_DOT] = ACTIONS(5417), + [anon_sym_DOT_STAR] = ACTIONS(5419), + [anon_sym_DASH_GT] = ACTIONS(5417), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5417), + [anon_sym_decltype] = ACTIONS(5417), + [anon_sym_virtual] = ACTIONS(5417), + [anon_sym_alignas] = ACTIONS(5417), + [anon_sym_template] = ACTIONS(5417), + [anon_sym_operator] = ACTIONS(5417), + [anon_sym_DASH_GT_STAR] = ACTIONS(5419), }, - [1832] = { - [sym_identifier] = ACTIONS(5496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5498), - [anon_sym_COMMA] = ACTIONS(5498), - [anon_sym_RPAREN] = ACTIONS(5498), - [anon_sym_LPAREN2] = ACTIONS(5498), - [anon_sym_TILDE] = ACTIONS(5498), - [anon_sym_DASH] = ACTIONS(5496), - [anon_sym_PLUS] = ACTIONS(5496), - [anon_sym_STAR] = ACTIONS(5496), - [anon_sym_SLASH] = ACTIONS(5496), - [anon_sym_PERCENT] = ACTIONS(5496), - [anon_sym_PIPE_PIPE] = ACTIONS(5498), - [anon_sym_AMP_AMP] = ACTIONS(5498), - [anon_sym_PIPE] = ACTIONS(5496), - [anon_sym_CARET] = ACTIONS(5496), - [anon_sym_AMP] = ACTIONS(5496), - [anon_sym_EQ_EQ] = ACTIONS(5498), - [anon_sym_BANG_EQ] = ACTIONS(5498), - [anon_sym_GT] = ACTIONS(5496), - [anon_sym_GT_EQ] = ACTIONS(5498), - [anon_sym_LT_EQ] = ACTIONS(5496), - [anon_sym_LT] = ACTIONS(5496), - [anon_sym_LT_LT] = ACTIONS(5496), - [anon_sym_GT_GT] = ACTIONS(5496), - [anon_sym___extension__] = ACTIONS(5496), - [anon_sym_extern] = ACTIONS(5496), - [anon_sym___attribute__] = ACTIONS(5496), - [anon_sym_COLON_COLON] = ACTIONS(5498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5498), - [anon_sym___declspec] = ACTIONS(5496), - [anon_sym___based] = ACTIONS(5496), - [anon_sym_LBRACE] = ACTIONS(5498), - [anon_sym_LBRACK] = ACTIONS(5496), - [anon_sym_EQ] = ACTIONS(5496), - [anon_sym_static] = ACTIONS(5496), - [anon_sym_register] = ACTIONS(5496), - [anon_sym_inline] = ACTIONS(5496), - [anon_sym___inline] = ACTIONS(5496), - [anon_sym___inline__] = ACTIONS(5496), - [anon_sym___forceinline] = ACTIONS(5496), - [anon_sym_thread_local] = ACTIONS(5496), - [anon_sym___thread] = ACTIONS(5496), - [anon_sym_const] = ACTIONS(5496), - [anon_sym_constexpr] = ACTIONS(5496), - [anon_sym_volatile] = ACTIONS(5496), - [anon_sym_restrict] = ACTIONS(5496), - [anon_sym___restrict__] = ACTIONS(5496), - [anon_sym__Atomic] = ACTIONS(5496), - [anon_sym__Noreturn] = ACTIONS(5496), - [anon_sym_noreturn] = ACTIONS(5496), - [anon_sym_mutable] = ACTIONS(5496), - [anon_sym_constinit] = ACTIONS(5496), - [anon_sym_consteval] = ACTIONS(5496), - [anon_sym_QMARK] = ACTIONS(5498), - [anon_sym_STAR_EQ] = ACTIONS(5498), - [anon_sym_SLASH_EQ] = ACTIONS(5498), - [anon_sym_PERCENT_EQ] = ACTIONS(5498), - [anon_sym_PLUS_EQ] = ACTIONS(5498), - [anon_sym_DASH_EQ] = ACTIONS(5498), - [anon_sym_LT_LT_EQ] = ACTIONS(5498), - [anon_sym_GT_GT_EQ] = ACTIONS(5498), - [anon_sym_AMP_EQ] = ACTIONS(5498), - [anon_sym_CARET_EQ] = ACTIONS(5498), - [anon_sym_PIPE_EQ] = ACTIONS(5498), - [anon_sym_and_eq] = ACTIONS(5496), - [anon_sym_or_eq] = ACTIONS(5496), - [anon_sym_xor_eq] = ACTIONS(5496), - [anon_sym_LT_EQ_GT] = ACTIONS(5498), - [anon_sym_or] = ACTIONS(5496), - [anon_sym_and] = ACTIONS(5496), - [anon_sym_bitor] = ACTIONS(5496), - [anon_sym_xor] = ACTIONS(5496), - [anon_sym_bitand] = ACTIONS(5496), - [anon_sym_not_eq] = ACTIONS(5496), - [anon_sym_DASH_DASH] = ACTIONS(5498), - [anon_sym_PLUS_PLUS] = ACTIONS(5498), - [anon_sym_DOT] = ACTIONS(5496), - [anon_sym_DOT_STAR] = ACTIONS(5498), - [anon_sym_DASH_GT] = ACTIONS(5496), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5496), - [anon_sym_decltype] = ACTIONS(5496), - [anon_sym_virtual] = ACTIONS(5496), - [anon_sym_alignas] = ACTIONS(5496), - [anon_sym_template] = ACTIONS(5496), - [anon_sym_operator] = ACTIONS(5496), - [anon_sym_DASH_GT_STAR] = ACTIONS(5498), + [1799] = { + [sym_identifier] = ACTIONS(5394), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5396), + [anon_sym_COMMA] = ACTIONS(5396), + [anon_sym_RPAREN] = ACTIONS(5396), + [anon_sym_LPAREN2] = ACTIONS(5396), + [anon_sym_TILDE] = ACTIONS(5396), + [anon_sym_DASH] = ACTIONS(5394), + [anon_sym_PLUS] = ACTIONS(5394), + [anon_sym_STAR] = ACTIONS(5394), + [anon_sym_SLASH] = ACTIONS(5394), + [anon_sym_PERCENT] = ACTIONS(5394), + [anon_sym_PIPE_PIPE] = ACTIONS(5396), + [anon_sym_AMP_AMP] = ACTIONS(5396), + [anon_sym_PIPE] = ACTIONS(5394), + [anon_sym_CARET] = ACTIONS(5394), + [anon_sym_AMP] = ACTIONS(5394), + [anon_sym_EQ_EQ] = ACTIONS(5396), + [anon_sym_BANG_EQ] = ACTIONS(5396), + [anon_sym_GT] = ACTIONS(5394), + [anon_sym_GT_EQ] = ACTIONS(5396), + [anon_sym_LT_EQ] = ACTIONS(5394), + [anon_sym_LT] = ACTIONS(5394), + [anon_sym_LT_LT] = ACTIONS(5394), + [anon_sym_GT_GT] = ACTIONS(5394), + [anon_sym___extension__] = ACTIONS(5394), + [anon_sym_extern] = ACTIONS(5394), + [anon_sym___attribute__] = ACTIONS(5394), + [anon_sym_COLON_COLON] = ACTIONS(5396), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5396), + [anon_sym___declspec] = ACTIONS(5394), + [anon_sym___based] = ACTIONS(5394), + [anon_sym_LBRACE] = ACTIONS(5396), + [anon_sym_LBRACK] = ACTIONS(5394), + [anon_sym_EQ] = ACTIONS(5394), + [anon_sym_static] = ACTIONS(5394), + [anon_sym_register] = ACTIONS(5394), + [anon_sym_inline] = ACTIONS(5394), + [anon_sym___inline] = ACTIONS(5394), + [anon_sym___inline__] = ACTIONS(5394), + [anon_sym___forceinline] = ACTIONS(5394), + [anon_sym_thread_local] = ACTIONS(5394), + [anon_sym___thread] = ACTIONS(5394), + [anon_sym_const] = ACTIONS(5394), + [anon_sym_constexpr] = ACTIONS(5394), + [anon_sym_volatile] = ACTIONS(5394), + [anon_sym_restrict] = ACTIONS(5394), + [anon_sym___restrict__] = ACTIONS(5394), + [anon_sym__Atomic] = ACTIONS(5394), + [anon_sym__Noreturn] = ACTIONS(5394), + [anon_sym_noreturn] = ACTIONS(5394), + [anon_sym_mutable] = ACTIONS(5394), + [anon_sym_constinit] = ACTIONS(5394), + [anon_sym_consteval] = ACTIONS(5394), + [anon_sym_QMARK] = ACTIONS(5396), + [anon_sym_STAR_EQ] = ACTIONS(5396), + [anon_sym_SLASH_EQ] = ACTIONS(5396), + [anon_sym_PERCENT_EQ] = ACTIONS(5396), + [anon_sym_PLUS_EQ] = ACTIONS(5396), + [anon_sym_DASH_EQ] = ACTIONS(5396), + [anon_sym_LT_LT_EQ] = ACTIONS(5396), + [anon_sym_GT_GT_EQ] = ACTIONS(5396), + [anon_sym_AMP_EQ] = ACTIONS(5396), + [anon_sym_CARET_EQ] = ACTIONS(5396), + [anon_sym_PIPE_EQ] = ACTIONS(5396), + [anon_sym_and_eq] = ACTIONS(5394), + [anon_sym_or_eq] = ACTIONS(5394), + [anon_sym_xor_eq] = ACTIONS(5394), + [anon_sym_LT_EQ_GT] = ACTIONS(5396), + [anon_sym_or] = ACTIONS(5394), + [anon_sym_and] = ACTIONS(5394), + [anon_sym_bitor] = ACTIONS(5394), + [anon_sym_xor] = ACTIONS(5394), + [anon_sym_bitand] = ACTIONS(5394), + [anon_sym_not_eq] = ACTIONS(5394), + [anon_sym_DASH_DASH] = ACTIONS(5396), + [anon_sym_PLUS_PLUS] = ACTIONS(5396), + [anon_sym_DOT] = ACTIONS(5394), + [anon_sym_DOT_STAR] = ACTIONS(5396), + [anon_sym_DASH_GT] = ACTIONS(5394), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5394), + [anon_sym_decltype] = ACTIONS(5394), + [anon_sym_virtual] = ACTIONS(5394), + [anon_sym_alignas] = ACTIONS(5394), + [anon_sym_template] = ACTIONS(5394), + [anon_sym_operator] = ACTIONS(5394), + [anon_sym_DASH_GT_STAR] = ACTIONS(5396), }, - [1833] = { - [sym_identifier] = ACTIONS(5507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5509), - [anon_sym_COMMA] = ACTIONS(5509), - [anon_sym_RPAREN] = ACTIONS(5509), - [anon_sym_LPAREN2] = ACTIONS(5509), - [anon_sym_TILDE] = ACTIONS(5509), - [anon_sym_DASH] = ACTIONS(5507), - [anon_sym_PLUS] = ACTIONS(5507), - [anon_sym_STAR] = ACTIONS(5507), - [anon_sym_SLASH] = ACTIONS(5507), - [anon_sym_PERCENT] = ACTIONS(5507), - [anon_sym_PIPE_PIPE] = ACTIONS(5509), - [anon_sym_AMP_AMP] = ACTIONS(5509), - [anon_sym_PIPE] = ACTIONS(5507), - [anon_sym_CARET] = ACTIONS(5507), - [anon_sym_AMP] = ACTIONS(5507), - [anon_sym_EQ_EQ] = ACTIONS(5509), - [anon_sym_BANG_EQ] = ACTIONS(5509), - [anon_sym_GT] = ACTIONS(5507), - [anon_sym_GT_EQ] = ACTIONS(5509), - [anon_sym_LT_EQ] = ACTIONS(5507), - [anon_sym_LT] = ACTIONS(5507), - [anon_sym_LT_LT] = ACTIONS(5507), - [anon_sym_GT_GT] = ACTIONS(5507), - [anon_sym___extension__] = ACTIONS(5507), - [anon_sym_extern] = ACTIONS(5507), - [anon_sym___attribute__] = ACTIONS(5507), - [anon_sym_COLON_COLON] = ACTIONS(5509), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5509), - [anon_sym___declspec] = ACTIONS(5507), - [anon_sym___based] = ACTIONS(5507), - [anon_sym_LBRACE] = ACTIONS(5509), - [anon_sym_LBRACK] = ACTIONS(5507), - [anon_sym_EQ] = ACTIONS(5507), - [anon_sym_static] = ACTIONS(5507), - [anon_sym_register] = ACTIONS(5507), - [anon_sym_inline] = ACTIONS(5507), - [anon_sym___inline] = ACTIONS(5507), - [anon_sym___inline__] = ACTIONS(5507), - [anon_sym___forceinline] = ACTIONS(5507), - [anon_sym_thread_local] = ACTIONS(5507), - [anon_sym___thread] = ACTIONS(5507), - [anon_sym_const] = ACTIONS(5507), - [anon_sym_constexpr] = ACTIONS(5507), - [anon_sym_volatile] = ACTIONS(5507), - [anon_sym_restrict] = ACTIONS(5507), - [anon_sym___restrict__] = ACTIONS(5507), - [anon_sym__Atomic] = ACTIONS(5507), - [anon_sym__Noreturn] = ACTIONS(5507), - [anon_sym_noreturn] = ACTIONS(5507), - [anon_sym_mutable] = ACTIONS(5507), - [anon_sym_constinit] = ACTIONS(5507), - [anon_sym_consteval] = ACTIONS(5507), - [anon_sym_QMARK] = ACTIONS(5509), - [anon_sym_STAR_EQ] = ACTIONS(5509), - [anon_sym_SLASH_EQ] = ACTIONS(5509), - [anon_sym_PERCENT_EQ] = ACTIONS(5509), - [anon_sym_PLUS_EQ] = ACTIONS(5509), - [anon_sym_DASH_EQ] = ACTIONS(5509), - [anon_sym_LT_LT_EQ] = ACTIONS(5509), - [anon_sym_GT_GT_EQ] = ACTIONS(5509), - [anon_sym_AMP_EQ] = ACTIONS(5509), - [anon_sym_CARET_EQ] = ACTIONS(5509), - [anon_sym_PIPE_EQ] = ACTIONS(5509), - [anon_sym_and_eq] = ACTIONS(5507), - [anon_sym_or_eq] = ACTIONS(5507), - [anon_sym_xor_eq] = ACTIONS(5507), - [anon_sym_LT_EQ_GT] = ACTIONS(5509), - [anon_sym_or] = ACTIONS(5507), - [anon_sym_and] = ACTIONS(5507), - [anon_sym_bitor] = ACTIONS(5507), - [anon_sym_xor] = ACTIONS(5507), - [anon_sym_bitand] = ACTIONS(5507), - [anon_sym_not_eq] = ACTIONS(5507), - [anon_sym_DASH_DASH] = ACTIONS(5509), - [anon_sym_PLUS_PLUS] = ACTIONS(5509), - [anon_sym_DOT] = ACTIONS(5507), - [anon_sym_DOT_STAR] = ACTIONS(5509), - [anon_sym_DASH_GT] = ACTIONS(5507), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5507), - [anon_sym_decltype] = ACTIONS(5507), - [anon_sym_virtual] = ACTIONS(5507), - [anon_sym_alignas] = ACTIONS(5507), - [anon_sym_template] = ACTIONS(5507), - [anon_sym_operator] = ACTIONS(5507), - [anon_sym_DASH_GT_STAR] = ACTIONS(5509), + [1800] = { + [sym_identifier] = ACTIONS(5433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5445), + [anon_sym_COMMA] = ACTIONS(5445), + [anon_sym_RPAREN] = ACTIONS(5445), + [anon_sym_LPAREN2] = ACTIONS(5435), + [anon_sym_TILDE] = ACTIONS(5438), + [anon_sym_DASH] = ACTIONS(5440), + [anon_sym_PLUS] = ACTIONS(5440), + [anon_sym_STAR] = ACTIONS(5442), + [anon_sym_SLASH] = ACTIONS(5440), + [anon_sym_PERCENT] = ACTIONS(5440), + [anon_sym_PIPE_PIPE] = ACTIONS(5445), + [anon_sym_AMP_AMP] = ACTIONS(5435), + [anon_sym_PIPE] = ACTIONS(5440), + [anon_sym_CARET] = ACTIONS(5440), + [anon_sym_AMP] = ACTIONS(5442), + [anon_sym_EQ_EQ] = ACTIONS(5445), + [anon_sym_BANG_EQ] = ACTIONS(5445), + [anon_sym_GT] = ACTIONS(5440), + [anon_sym_GT_EQ] = ACTIONS(5445), + [anon_sym_LT_EQ] = ACTIONS(5440), + [anon_sym_LT] = ACTIONS(5440), + [anon_sym_LT_LT] = ACTIONS(5440), + [anon_sym_GT_GT] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5445), + [anon_sym___extension__] = ACTIONS(5433), + [anon_sym_extern] = ACTIONS(5433), + [anon_sym___attribute__] = ACTIONS(5433), + [anon_sym_COLON_COLON] = ACTIONS(5438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5438), + [anon_sym___declspec] = ACTIONS(5433), + [anon_sym___based] = ACTIONS(5433), + [anon_sym_LBRACE] = ACTIONS(5438), + [anon_sym_LBRACK] = ACTIONS(5442), + [anon_sym_EQ] = ACTIONS(5440), + [anon_sym_static] = ACTIONS(5433), + [anon_sym_register] = ACTIONS(5433), + [anon_sym_inline] = ACTIONS(5433), + [anon_sym___inline] = ACTIONS(5433), + [anon_sym___inline__] = ACTIONS(5433), + [anon_sym___forceinline] = ACTIONS(5433), + [anon_sym_thread_local] = ACTIONS(5433), + [anon_sym___thread] = ACTIONS(5433), + [anon_sym_const] = ACTIONS(5433), + [anon_sym_constexpr] = ACTIONS(5433), + [anon_sym_volatile] = ACTIONS(5433), + [anon_sym_restrict] = ACTIONS(5433), + [anon_sym___restrict__] = ACTIONS(5433), + [anon_sym__Atomic] = ACTIONS(5433), + [anon_sym__Noreturn] = ACTIONS(5433), + [anon_sym_noreturn] = ACTIONS(5433), + [anon_sym_mutable] = ACTIONS(5433), + [anon_sym_constinit] = ACTIONS(5433), + [anon_sym_consteval] = ACTIONS(5433), + [anon_sym_QMARK] = ACTIONS(5445), + [anon_sym_STAR_EQ] = ACTIONS(5445), + [anon_sym_SLASH_EQ] = ACTIONS(5445), + [anon_sym_PERCENT_EQ] = ACTIONS(5445), + [anon_sym_PLUS_EQ] = ACTIONS(5445), + [anon_sym_DASH_EQ] = ACTIONS(5445), + [anon_sym_LT_LT_EQ] = ACTIONS(5445), + [anon_sym_GT_GT_EQ] = ACTIONS(5445), + [anon_sym_AMP_EQ] = ACTIONS(5445), + [anon_sym_CARET_EQ] = ACTIONS(5445), + [anon_sym_PIPE_EQ] = ACTIONS(5445), + [anon_sym_and_eq] = ACTIONS(5440), + [anon_sym_or_eq] = ACTIONS(5440), + [anon_sym_xor_eq] = ACTIONS(5440), + [anon_sym_LT_EQ_GT] = ACTIONS(5445), + [anon_sym_or] = ACTIONS(5440), + [anon_sym_and] = ACTIONS(5440), + [anon_sym_bitor] = ACTIONS(5440), + [anon_sym_xor] = ACTIONS(5440), + [anon_sym_bitand] = ACTIONS(5440), + [anon_sym_not_eq] = ACTIONS(5440), + [anon_sym_DASH_DASH] = ACTIONS(5445), + [anon_sym_PLUS_PLUS] = ACTIONS(5445), + [anon_sym_DOT] = ACTIONS(5440), + [anon_sym_DOT_STAR] = ACTIONS(5445), + [anon_sym_DASH_GT] = ACTIONS(5445), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5433), + [anon_sym_decltype] = ACTIONS(5433), + [anon_sym_virtual] = ACTIONS(5433), + [anon_sym_alignas] = ACTIONS(5433), + [anon_sym_template] = ACTIONS(5433), + [anon_sym_operator] = ACTIONS(5433), }, - [1834] = { - [sym_identifier] = ACTIONS(5511), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5513), - [anon_sym_COMMA] = ACTIONS(5513), - [anon_sym_RPAREN] = ACTIONS(5513), - [anon_sym_LPAREN2] = ACTIONS(5513), - [anon_sym_TILDE] = ACTIONS(5513), - [anon_sym_DASH] = ACTIONS(5511), - [anon_sym_PLUS] = ACTIONS(5511), - [anon_sym_STAR] = ACTIONS(5511), - [anon_sym_SLASH] = ACTIONS(5511), - [anon_sym_PERCENT] = ACTIONS(5511), - [anon_sym_PIPE_PIPE] = ACTIONS(5513), - [anon_sym_AMP_AMP] = ACTIONS(5513), - [anon_sym_PIPE] = ACTIONS(5511), - [anon_sym_CARET] = ACTIONS(5511), - [anon_sym_AMP] = ACTIONS(5511), - [anon_sym_EQ_EQ] = ACTIONS(5513), - [anon_sym_BANG_EQ] = ACTIONS(5513), - [anon_sym_GT] = ACTIONS(5511), - [anon_sym_GT_EQ] = ACTIONS(5513), - [anon_sym_LT_EQ] = ACTIONS(5511), - [anon_sym_LT] = ACTIONS(5511), - [anon_sym_LT_LT] = ACTIONS(5511), - [anon_sym_GT_GT] = ACTIONS(5511), - [anon_sym___extension__] = ACTIONS(5511), - [anon_sym_extern] = ACTIONS(5511), - [anon_sym___attribute__] = ACTIONS(5511), - [anon_sym_COLON_COLON] = ACTIONS(5513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5513), - [anon_sym___declspec] = ACTIONS(5511), - [anon_sym___based] = ACTIONS(5511), - [anon_sym_LBRACE] = ACTIONS(5513), - [anon_sym_LBRACK] = ACTIONS(5511), - [anon_sym_EQ] = ACTIONS(5511), - [anon_sym_static] = ACTIONS(5511), - [anon_sym_register] = ACTIONS(5511), - [anon_sym_inline] = ACTIONS(5511), - [anon_sym___inline] = ACTIONS(5511), - [anon_sym___inline__] = ACTIONS(5511), - [anon_sym___forceinline] = ACTIONS(5511), - [anon_sym_thread_local] = ACTIONS(5511), - [anon_sym___thread] = ACTIONS(5511), - [anon_sym_const] = ACTIONS(5511), - [anon_sym_constexpr] = ACTIONS(5511), - [anon_sym_volatile] = ACTIONS(5511), - [anon_sym_restrict] = ACTIONS(5511), - [anon_sym___restrict__] = ACTIONS(5511), - [anon_sym__Atomic] = ACTIONS(5511), - [anon_sym__Noreturn] = ACTIONS(5511), - [anon_sym_noreturn] = ACTIONS(5511), - [anon_sym_mutable] = ACTIONS(5511), - [anon_sym_constinit] = ACTIONS(5511), - [anon_sym_consteval] = ACTIONS(5511), - [anon_sym_QMARK] = ACTIONS(5513), - [anon_sym_STAR_EQ] = ACTIONS(5513), - [anon_sym_SLASH_EQ] = ACTIONS(5513), - [anon_sym_PERCENT_EQ] = ACTIONS(5513), - [anon_sym_PLUS_EQ] = ACTIONS(5513), - [anon_sym_DASH_EQ] = ACTIONS(5513), - [anon_sym_LT_LT_EQ] = ACTIONS(5513), - [anon_sym_GT_GT_EQ] = ACTIONS(5513), - [anon_sym_AMP_EQ] = ACTIONS(5513), - [anon_sym_CARET_EQ] = ACTIONS(5513), - [anon_sym_PIPE_EQ] = ACTIONS(5513), - [anon_sym_and_eq] = ACTIONS(5511), - [anon_sym_or_eq] = ACTIONS(5511), - [anon_sym_xor_eq] = ACTIONS(5511), - [anon_sym_LT_EQ_GT] = ACTIONS(5513), - [anon_sym_or] = ACTIONS(5511), - [anon_sym_and] = ACTIONS(5511), - [anon_sym_bitor] = ACTIONS(5511), - [anon_sym_xor] = ACTIONS(5511), - [anon_sym_bitand] = ACTIONS(5511), - [anon_sym_not_eq] = ACTIONS(5511), - [anon_sym_DASH_DASH] = ACTIONS(5513), - [anon_sym_PLUS_PLUS] = ACTIONS(5513), - [anon_sym_DOT] = ACTIONS(5511), - [anon_sym_DOT_STAR] = ACTIONS(5513), - [anon_sym_DASH_GT] = ACTIONS(5511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5511), - [anon_sym_decltype] = ACTIONS(5511), - [anon_sym_virtual] = ACTIONS(5511), - [anon_sym_alignas] = ACTIONS(5511), - [anon_sym_template] = ACTIONS(5511), - [anon_sym_operator] = ACTIONS(5511), - [anon_sym_DASH_GT_STAR] = ACTIONS(5513), + [1801] = { + [sym_identifier] = ACTIONS(5398), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5400), + [anon_sym_COMMA] = ACTIONS(5400), + [anon_sym_RPAREN] = ACTIONS(5400), + [anon_sym_LPAREN2] = ACTIONS(5400), + [anon_sym_TILDE] = ACTIONS(5400), + [anon_sym_DASH] = ACTIONS(5398), + [anon_sym_PLUS] = ACTIONS(5398), + [anon_sym_STAR] = ACTIONS(5398), + [anon_sym_SLASH] = ACTIONS(5398), + [anon_sym_PERCENT] = ACTIONS(5398), + [anon_sym_PIPE_PIPE] = ACTIONS(5400), + [anon_sym_AMP_AMP] = ACTIONS(5400), + [anon_sym_PIPE] = ACTIONS(5398), + [anon_sym_CARET] = ACTIONS(5398), + [anon_sym_AMP] = ACTIONS(5398), + [anon_sym_EQ_EQ] = ACTIONS(5400), + [anon_sym_BANG_EQ] = ACTIONS(5400), + [anon_sym_GT] = ACTIONS(5398), + [anon_sym_GT_EQ] = ACTIONS(5400), + [anon_sym_LT_EQ] = ACTIONS(5398), + [anon_sym_LT] = ACTIONS(5398), + [anon_sym_LT_LT] = ACTIONS(5398), + [anon_sym_GT_GT] = ACTIONS(5398), + [anon_sym___extension__] = ACTIONS(5398), + [anon_sym_extern] = ACTIONS(5398), + [anon_sym___attribute__] = ACTIONS(5398), + [anon_sym_COLON_COLON] = ACTIONS(5400), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5400), + [anon_sym___declspec] = ACTIONS(5398), + [anon_sym___based] = ACTIONS(5398), + [anon_sym_LBRACE] = ACTIONS(5400), + [anon_sym_LBRACK] = ACTIONS(5398), + [anon_sym_EQ] = ACTIONS(5398), + [anon_sym_static] = ACTIONS(5398), + [anon_sym_register] = ACTIONS(5398), + [anon_sym_inline] = ACTIONS(5398), + [anon_sym___inline] = ACTIONS(5398), + [anon_sym___inline__] = ACTIONS(5398), + [anon_sym___forceinline] = ACTIONS(5398), + [anon_sym_thread_local] = ACTIONS(5398), + [anon_sym___thread] = ACTIONS(5398), + [anon_sym_const] = ACTIONS(5398), + [anon_sym_constexpr] = ACTIONS(5398), + [anon_sym_volatile] = ACTIONS(5398), + [anon_sym_restrict] = ACTIONS(5398), + [anon_sym___restrict__] = ACTIONS(5398), + [anon_sym__Atomic] = ACTIONS(5398), + [anon_sym__Noreturn] = ACTIONS(5398), + [anon_sym_noreturn] = ACTIONS(5398), + [anon_sym_mutable] = ACTIONS(5398), + [anon_sym_constinit] = ACTIONS(5398), + [anon_sym_consteval] = ACTIONS(5398), + [anon_sym_QMARK] = ACTIONS(5400), + [anon_sym_STAR_EQ] = ACTIONS(5400), + [anon_sym_SLASH_EQ] = ACTIONS(5400), + [anon_sym_PERCENT_EQ] = ACTIONS(5400), + [anon_sym_PLUS_EQ] = ACTIONS(5400), + [anon_sym_DASH_EQ] = ACTIONS(5400), + [anon_sym_LT_LT_EQ] = ACTIONS(5400), + [anon_sym_GT_GT_EQ] = ACTIONS(5400), + [anon_sym_AMP_EQ] = ACTIONS(5400), + [anon_sym_CARET_EQ] = ACTIONS(5400), + [anon_sym_PIPE_EQ] = ACTIONS(5400), + [anon_sym_and_eq] = ACTIONS(5398), + [anon_sym_or_eq] = ACTIONS(5398), + [anon_sym_xor_eq] = ACTIONS(5398), + [anon_sym_LT_EQ_GT] = ACTIONS(5400), + [anon_sym_or] = ACTIONS(5398), + [anon_sym_and] = ACTIONS(5398), + [anon_sym_bitor] = ACTIONS(5398), + [anon_sym_xor] = ACTIONS(5398), + [anon_sym_bitand] = ACTIONS(5398), + [anon_sym_not_eq] = ACTIONS(5398), + [anon_sym_DASH_DASH] = ACTIONS(5400), + [anon_sym_PLUS_PLUS] = ACTIONS(5400), + [anon_sym_DOT] = ACTIONS(5398), + [anon_sym_DOT_STAR] = ACTIONS(5400), + [anon_sym_DASH_GT] = ACTIONS(5398), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5398), + [anon_sym_decltype] = ACTIONS(5398), + [anon_sym_virtual] = ACTIONS(5398), + [anon_sym_alignas] = ACTIONS(5398), + [anon_sym_template] = ACTIONS(5398), + [anon_sym_operator] = ACTIONS(5398), + [anon_sym_DASH_GT_STAR] = ACTIONS(5400), }, - [1835] = { - [sym_identifier] = ACTIONS(5456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5458), - [anon_sym_COMMA] = ACTIONS(5458), - [anon_sym_RPAREN] = ACTIONS(5458), - [anon_sym_LPAREN2] = ACTIONS(5458), - [anon_sym_TILDE] = ACTIONS(5458), - [anon_sym_DASH] = ACTIONS(5456), - [anon_sym_PLUS] = ACTIONS(5456), - [anon_sym_STAR] = ACTIONS(5456), - [anon_sym_SLASH] = ACTIONS(5456), - [anon_sym_PERCENT] = ACTIONS(5456), - [anon_sym_PIPE_PIPE] = ACTIONS(5458), - [anon_sym_AMP_AMP] = ACTIONS(5458), - [anon_sym_PIPE] = ACTIONS(5456), - [anon_sym_CARET] = ACTIONS(5456), - [anon_sym_AMP] = ACTIONS(5456), - [anon_sym_EQ_EQ] = ACTIONS(5458), - [anon_sym_BANG_EQ] = ACTIONS(5458), - [anon_sym_GT] = ACTIONS(5456), - [anon_sym_GT_EQ] = ACTIONS(5458), - [anon_sym_LT_EQ] = ACTIONS(5456), - [anon_sym_LT] = ACTIONS(5456), - [anon_sym_LT_LT] = ACTIONS(5456), - [anon_sym_GT_GT] = ACTIONS(5456), - [anon_sym___extension__] = ACTIONS(5456), - [anon_sym_extern] = ACTIONS(5456), - [anon_sym___attribute__] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(5458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5458), - [anon_sym___declspec] = ACTIONS(5456), - [anon_sym___based] = ACTIONS(5456), - [anon_sym_LBRACE] = ACTIONS(5458), - [anon_sym_LBRACK] = ACTIONS(5456), - [anon_sym_EQ] = ACTIONS(5456), - [anon_sym_static] = ACTIONS(5456), - [anon_sym_register] = ACTIONS(5456), - [anon_sym_inline] = ACTIONS(5456), - [anon_sym___inline] = ACTIONS(5456), - [anon_sym___inline__] = ACTIONS(5456), - [anon_sym___forceinline] = ACTIONS(5456), - [anon_sym_thread_local] = ACTIONS(5456), - [anon_sym___thread] = ACTIONS(5456), - [anon_sym_const] = ACTIONS(5456), - [anon_sym_constexpr] = ACTIONS(5456), - [anon_sym_volatile] = ACTIONS(5456), - [anon_sym_restrict] = ACTIONS(5456), - [anon_sym___restrict__] = ACTIONS(5456), - [anon_sym__Atomic] = ACTIONS(5456), - [anon_sym__Noreturn] = ACTIONS(5456), - [anon_sym_noreturn] = ACTIONS(5456), - [anon_sym_mutable] = ACTIONS(5456), - [anon_sym_constinit] = ACTIONS(5456), - [anon_sym_consteval] = ACTIONS(5456), - [anon_sym_QMARK] = ACTIONS(5458), - [anon_sym_STAR_EQ] = ACTIONS(5458), - [anon_sym_SLASH_EQ] = ACTIONS(5458), - [anon_sym_PERCENT_EQ] = ACTIONS(5458), - [anon_sym_PLUS_EQ] = ACTIONS(5458), - [anon_sym_DASH_EQ] = ACTIONS(5458), - [anon_sym_LT_LT_EQ] = ACTIONS(5458), - [anon_sym_GT_GT_EQ] = ACTIONS(5458), - [anon_sym_AMP_EQ] = ACTIONS(5458), - [anon_sym_CARET_EQ] = ACTIONS(5458), - [anon_sym_PIPE_EQ] = ACTIONS(5458), - [anon_sym_and_eq] = ACTIONS(5456), - [anon_sym_or_eq] = ACTIONS(5456), - [anon_sym_xor_eq] = ACTIONS(5456), - [anon_sym_LT_EQ_GT] = ACTIONS(5458), - [anon_sym_or] = ACTIONS(5456), - [anon_sym_and] = ACTIONS(5456), - [anon_sym_bitor] = ACTIONS(5456), - [anon_sym_xor] = ACTIONS(5456), - [anon_sym_bitand] = ACTIONS(5456), - [anon_sym_not_eq] = ACTIONS(5456), - [anon_sym_DASH_DASH] = ACTIONS(5458), - [anon_sym_PLUS_PLUS] = ACTIONS(5458), - [anon_sym_DOT] = ACTIONS(5456), - [anon_sym_DOT_STAR] = ACTIONS(5458), - [anon_sym_DASH_GT] = ACTIONS(5456), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5456), - [anon_sym_decltype] = ACTIONS(5456), - [anon_sym_virtual] = ACTIONS(5456), - [anon_sym_alignas] = ACTIONS(5456), - [anon_sym_template] = ACTIONS(5456), - [anon_sym_operator] = ACTIONS(5456), - [anon_sym_DASH_GT_STAR] = ACTIONS(5458), + [1802] = { + [sym_identifier] = ACTIONS(5429), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5431), + [anon_sym_COMMA] = ACTIONS(5431), + [anon_sym_RPAREN] = ACTIONS(5431), + [anon_sym_LPAREN2] = ACTIONS(5431), + [anon_sym_TILDE] = ACTIONS(5431), + [anon_sym_DASH] = ACTIONS(5429), + [anon_sym_PLUS] = ACTIONS(5429), + [anon_sym_STAR] = ACTIONS(5429), + [anon_sym_SLASH] = ACTIONS(5429), + [anon_sym_PERCENT] = ACTIONS(5429), + [anon_sym_PIPE_PIPE] = ACTIONS(5431), + [anon_sym_AMP_AMP] = ACTIONS(5431), + [anon_sym_PIPE] = ACTIONS(5429), + [anon_sym_CARET] = ACTIONS(5429), + [anon_sym_AMP] = ACTIONS(5429), + [anon_sym_EQ_EQ] = ACTIONS(5431), + [anon_sym_BANG_EQ] = ACTIONS(5431), + [anon_sym_GT] = ACTIONS(5429), + [anon_sym_GT_EQ] = ACTIONS(5431), + [anon_sym_LT_EQ] = ACTIONS(5429), + [anon_sym_LT] = ACTIONS(5429), + [anon_sym_LT_LT] = ACTIONS(5429), + [anon_sym_GT_GT] = ACTIONS(5429), + [anon_sym___extension__] = ACTIONS(5429), + [anon_sym_extern] = ACTIONS(5429), + [anon_sym___attribute__] = ACTIONS(5429), + [anon_sym_COLON_COLON] = ACTIONS(5431), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5431), + [anon_sym___declspec] = ACTIONS(5429), + [anon_sym___based] = ACTIONS(5429), + [anon_sym_LBRACE] = ACTIONS(5431), + [anon_sym_LBRACK] = ACTIONS(5429), + [anon_sym_EQ] = ACTIONS(5429), + [anon_sym_static] = ACTIONS(5429), + [anon_sym_register] = ACTIONS(5429), + [anon_sym_inline] = ACTIONS(5429), + [anon_sym___inline] = ACTIONS(5429), + [anon_sym___inline__] = ACTIONS(5429), + [anon_sym___forceinline] = ACTIONS(5429), + [anon_sym_thread_local] = ACTIONS(5429), + [anon_sym___thread] = ACTIONS(5429), + [anon_sym_const] = ACTIONS(5429), + [anon_sym_constexpr] = ACTIONS(5429), + [anon_sym_volatile] = ACTIONS(5429), + [anon_sym_restrict] = ACTIONS(5429), + [anon_sym___restrict__] = ACTIONS(5429), + [anon_sym__Atomic] = ACTIONS(5429), + [anon_sym__Noreturn] = ACTIONS(5429), + [anon_sym_noreturn] = ACTIONS(5429), + [anon_sym_mutable] = ACTIONS(5429), + [anon_sym_constinit] = ACTIONS(5429), + [anon_sym_consteval] = ACTIONS(5429), + [anon_sym_QMARK] = ACTIONS(5431), + [anon_sym_STAR_EQ] = ACTIONS(5431), + [anon_sym_SLASH_EQ] = ACTIONS(5431), + [anon_sym_PERCENT_EQ] = ACTIONS(5431), + [anon_sym_PLUS_EQ] = ACTIONS(5431), + [anon_sym_DASH_EQ] = ACTIONS(5431), + [anon_sym_LT_LT_EQ] = ACTIONS(5431), + [anon_sym_GT_GT_EQ] = ACTIONS(5431), + [anon_sym_AMP_EQ] = ACTIONS(5431), + [anon_sym_CARET_EQ] = ACTIONS(5431), + [anon_sym_PIPE_EQ] = ACTIONS(5431), + [anon_sym_and_eq] = ACTIONS(5429), + [anon_sym_or_eq] = ACTIONS(5429), + [anon_sym_xor_eq] = ACTIONS(5429), + [anon_sym_LT_EQ_GT] = ACTIONS(5431), + [anon_sym_or] = ACTIONS(5429), + [anon_sym_and] = ACTIONS(5429), + [anon_sym_bitor] = ACTIONS(5429), + [anon_sym_xor] = ACTIONS(5429), + [anon_sym_bitand] = ACTIONS(5429), + [anon_sym_not_eq] = ACTIONS(5429), + [anon_sym_DASH_DASH] = ACTIONS(5431), + [anon_sym_PLUS_PLUS] = ACTIONS(5431), + [anon_sym_DOT] = ACTIONS(5429), + [anon_sym_DOT_STAR] = ACTIONS(5431), + [anon_sym_DASH_GT] = ACTIONS(5429), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5429), + [anon_sym_decltype] = ACTIONS(5429), + [anon_sym_virtual] = ACTIONS(5429), + [anon_sym_alignas] = ACTIONS(5429), + [anon_sym_template] = ACTIONS(5429), + [anon_sym_operator] = ACTIONS(5429), + [anon_sym_DASH_GT_STAR] = ACTIONS(5431), }, - [1836] = { - [sym_identifier] = ACTIONS(5518), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5522), - [anon_sym_COMMA] = ACTIONS(5522), - [anon_sym_RPAREN] = ACTIONS(5522), - [anon_sym_LPAREN2] = ACTIONS(5522), - [anon_sym_TILDE] = ACTIONS(5525), - [anon_sym_DASH] = ACTIONS(5527), - [anon_sym_PLUS] = ACTIONS(5527), - [anon_sym_STAR] = ACTIONS(5529), - [anon_sym_SLASH] = ACTIONS(5527), - [anon_sym_PERCENT] = ACTIONS(5527), - [anon_sym_PIPE_PIPE] = ACTIONS(5520), - [anon_sym_AMP_AMP] = ACTIONS(5522), - [anon_sym_PIPE] = ACTIONS(5527), - [anon_sym_CARET] = ACTIONS(5527), - [anon_sym_AMP] = ACTIONS(5529), - [anon_sym_EQ_EQ] = ACTIONS(5520), - [anon_sym_BANG_EQ] = ACTIONS(5520), - [anon_sym_GT] = ACTIONS(5527), - [anon_sym_GT_EQ] = ACTIONS(5520), - [anon_sym_LT_EQ] = ACTIONS(5527), - [anon_sym_LT] = ACTIONS(5527), - [anon_sym_LT_LT] = ACTIONS(5527), - [anon_sym_GT_GT] = ACTIONS(5527), - [anon_sym___extension__] = ACTIONS(5518), - [anon_sym_extern] = ACTIONS(5518), - [anon_sym___attribute__] = ACTIONS(5518), - [anon_sym_COLON_COLON] = ACTIONS(5525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5525), - [anon_sym___declspec] = ACTIONS(5518), - [anon_sym___based] = ACTIONS(5518), - [anon_sym_LBRACE] = ACTIONS(5525), - [anon_sym_LBRACK] = ACTIONS(5529), - [anon_sym_EQ] = ACTIONS(5529), - [anon_sym_static] = ACTIONS(5518), - [anon_sym_register] = ACTIONS(5518), - [anon_sym_inline] = ACTIONS(5518), - [anon_sym___inline] = ACTIONS(5518), - [anon_sym___inline__] = ACTIONS(5518), - [anon_sym___forceinline] = ACTIONS(5518), - [anon_sym_thread_local] = ACTIONS(5518), - [anon_sym___thread] = ACTIONS(5518), - [anon_sym_const] = ACTIONS(5518), - [anon_sym_constexpr] = ACTIONS(5518), - [anon_sym_volatile] = ACTIONS(5518), - [anon_sym_restrict] = ACTIONS(5518), - [anon_sym___restrict__] = ACTIONS(5518), - [anon_sym__Atomic] = ACTIONS(5518), - [anon_sym__Noreturn] = ACTIONS(5518), - [anon_sym_noreturn] = ACTIONS(5518), - [anon_sym_mutable] = ACTIONS(5518), - [anon_sym_constinit] = ACTIONS(5518), - [anon_sym_consteval] = ACTIONS(5518), - [anon_sym_QMARK] = ACTIONS(5520), - [anon_sym_STAR_EQ] = ACTIONS(5520), - [anon_sym_SLASH_EQ] = ACTIONS(5520), - [anon_sym_PERCENT_EQ] = ACTIONS(5520), - [anon_sym_PLUS_EQ] = ACTIONS(5520), - [anon_sym_DASH_EQ] = ACTIONS(5520), - [anon_sym_LT_LT_EQ] = ACTIONS(5520), - [anon_sym_GT_GT_EQ] = ACTIONS(5520), - [anon_sym_AMP_EQ] = ACTIONS(5520), - [anon_sym_CARET_EQ] = ACTIONS(5520), - [anon_sym_PIPE_EQ] = ACTIONS(5520), - [anon_sym_and_eq] = ACTIONS(5527), - [anon_sym_or_eq] = ACTIONS(5527), - [anon_sym_xor_eq] = ACTIONS(5527), - [anon_sym_LT_EQ_GT] = ACTIONS(5520), - [anon_sym_or] = ACTIONS(5527), - [anon_sym_and] = ACTIONS(5527), - [anon_sym_bitor] = ACTIONS(5527), - [anon_sym_xor] = ACTIONS(5527), - [anon_sym_bitand] = ACTIONS(5527), - [anon_sym_not_eq] = ACTIONS(5527), - [anon_sym_DASH_DASH] = ACTIONS(5520), - [anon_sym_PLUS_PLUS] = ACTIONS(5520), - [anon_sym_DOT] = ACTIONS(5527), - [anon_sym_DOT_STAR] = ACTIONS(5520), - [anon_sym_DASH_GT] = ACTIONS(5527), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5518), - [anon_sym_decltype] = ACTIONS(5518), - [anon_sym_virtual] = ACTIONS(5518), - [anon_sym_alignas] = ACTIONS(5518), - [anon_sym_template] = ACTIONS(5518), - [anon_sym_operator] = ACTIONS(5518), - [anon_sym_DASH_GT_STAR] = ACTIONS(5520), + [1803] = { + [sym_identifier] = ACTIONS(5425), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5427), + [anon_sym_COMMA] = ACTIONS(5427), + [anon_sym_RPAREN] = ACTIONS(5427), + [anon_sym_LPAREN2] = ACTIONS(5427), + [anon_sym_TILDE] = ACTIONS(5427), + [anon_sym_DASH] = ACTIONS(5425), + [anon_sym_PLUS] = ACTIONS(5425), + [anon_sym_STAR] = ACTIONS(5425), + [anon_sym_SLASH] = ACTIONS(5425), + [anon_sym_PERCENT] = ACTIONS(5425), + [anon_sym_PIPE_PIPE] = ACTIONS(5427), + [anon_sym_AMP_AMP] = ACTIONS(5427), + [anon_sym_PIPE] = ACTIONS(5425), + [anon_sym_CARET] = ACTIONS(5425), + [anon_sym_AMP] = ACTIONS(5425), + [anon_sym_EQ_EQ] = ACTIONS(5427), + [anon_sym_BANG_EQ] = ACTIONS(5427), + [anon_sym_GT] = ACTIONS(5425), + [anon_sym_GT_EQ] = ACTIONS(5427), + [anon_sym_LT_EQ] = ACTIONS(5425), + [anon_sym_LT] = ACTIONS(5425), + [anon_sym_LT_LT] = ACTIONS(5425), + [anon_sym_GT_GT] = ACTIONS(5425), + [anon_sym___extension__] = ACTIONS(5425), + [anon_sym_extern] = ACTIONS(5425), + [anon_sym___attribute__] = ACTIONS(5425), + [anon_sym_COLON_COLON] = ACTIONS(5427), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5427), + [anon_sym___declspec] = ACTIONS(5425), + [anon_sym___based] = ACTIONS(5425), + [anon_sym_LBRACE] = ACTIONS(5427), + [anon_sym_LBRACK] = ACTIONS(5425), + [anon_sym_EQ] = ACTIONS(5425), + [anon_sym_static] = ACTIONS(5425), + [anon_sym_register] = ACTIONS(5425), + [anon_sym_inline] = ACTIONS(5425), + [anon_sym___inline] = ACTIONS(5425), + [anon_sym___inline__] = ACTIONS(5425), + [anon_sym___forceinline] = ACTIONS(5425), + [anon_sym_thread_local] = ACTIONS(5425), + [anon_sym___thread] = ACTIONS(5425), + [anon_sym_const] = ACTIONS(5425), + [anon_sym_constexpr] = ACTIONS(5425), + [anon_sym_volatile] = ACTIONS(5425), + [anon_sym_restrict] = ACTIONS(5425), + [anon_sym___restrict__] = ACTIONS(5425), + [anon_sym__Atomic] = ACTIONS(5425), + [anon_sym__Noreturn] = ACTIONS(5425), + [anon_sym_noreturn] = ACTIONS(5425), + [anon_sym_mutable] = ACTIONS(5425), + [anon_sym_constinit] = ACTIONS(5425), + [anon_sym_consteval] = ACTIONS(5425), + [anon_sym_QMARK] = ACTIONS(5427), + [anon_sym_STAR_EQ] = ACTIONS(5427), + [anon_sym_SLASH_EQ] = ACTIONS(5427), + [anon_sym_PERCENT_EQ] = ACTIONS(5427), + [anon_sym_PLUS_EQ] = ACTIONS(5427), + [anon_sym_DASH_EQ] = ACTIONS(5427), + [anon_sym_LT_LT_EQ] = ACTIONS(5427), + [anon_sym_GT_GT_EQ] = ACTIONS(5427), + [anon_sym_AMP_EQ] = ACTIONS(5427), + [anon_sym_CARET_EQ] = ACTIONS(5427), + [anon_sym_PIPE_EQ] = ACTIONS(5427), + [anon_sym_and_eq] = ACTIONS(5425), + [anon_sym_or_eq] = ACTIONS(5425), + [anon_sym_xor_eq] = ACTIONS(5425), + [anon_sym_LT_EQ_GT] = ACTIONS(5427), + [anon_sym_or] = ACTIONS(5425), + [anon_sym_and] = ACTIONS(5425), + [anon_sym_bitor] = ACTIONS(5425), + [anon_sym_xor] = ACTIONS(5425), + [anon_sym_bitand] = ACTIONS(5425), + [anon_sym_not_eq] = ACTIONS(5425), + [anon_sym_DASH_DASH] = ACTIONS(5427), + [anon_sym_PLUS_PLUS] = ACTIONS(5427), + [anon_sym_DOT] = ACTIONS(5425), + [anon_sym_DOT_STAR] = ACTIONS(5427), + [anon_sym_DASH_GT] = ACTIONS(5425), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5425), + [anon_sym_decltype] = ACTIONS(5425), + [anon_sym_virtual] = ACTIONS(5425), + [anon_sym_alignas] = ACTIONS(5425), + [anon_sym_template] = ACTIONS(5425), + [anon_sym_operator] = ACTIONS(5425), + [anon_sym_DASH_GT_STAR] = ACTIONS(5427), }, - [1837] = { - [sym_identifier] = ACTIONS(5518), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5520), - [anon_sym_COMMA] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(5520), - [anon_sym_LPAREN2] = ACTIONS(5522), - [anon_sym_TILDE] = ACTIONS(5525), - [anon_sym_DASH] = ACTIONS(5527), - [anon_sym_PLUS] = ACTIONS(5527), - [anon_sym_STAR] = ACTIONS(5529), - [anon_sym_SLASH] = ACTIONS(5527), - [anon_sym_PERCENT] = ACTIONS(5527), - [anon_sym_PIPE_PIPE] = ACTIONS(5520), - [anon_sym_AMP_AMP] = ACTIONS(5522), - [anon_sym_PIPE] = ACTIONS(5527), - [anon_sym_CARET] = ACTIONS(5527), - [anon_sym_AMP] = ACTIONS(5529), - [anon_sym_EQ_EQ] = ACTIONS(5520), - [anon_sym_BANG_EQ] = ACTIONS(5520), - [anon_sym_GT] = ACTIONS(5527), - [anon_sym_GT_EQ] = ACTIONS(5520), - [anon_sym_LT_EQ] = ACTIONS(5527), - [anon_sym_LT] = ACTIONS(5527), - [anon_sym_LT_LT] = ACTIONS(5527), - [anon_sym_GT_GT] = ACTIONS(5527), - [anon_sym_SEMI] = ACTIONS(5520), - [anon_sym___extension__] = ACTIONS(5518), - [anon_sym_extern] = ACTIONS(5518), - [anon_sym___attribute__] = ACTIONS(5518), - [anon_sym_COLON_COLON] = ACTIONS(5525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5525), - [anon_sym___declspec] = ACTIONS(5518), - [anon_sym___based] = ACTIONS(5518), - [anon_sym_LBRACE] = ACTIONS(5525), - [anon_sym_LBRACK] = ACTIONS(5529), - [anon_sym_EQ] = ACTIONS(5527), - [anon_sym_static] = ACTIONS(5518), - [anon_sym_register] = ACTIONS(5518), - [anon_sym_inline] = ACTIONS(5518), - [anon_sym___inline] = ACTIONS(5518), - [anon_sym___inline__] = ACTIONS(5518), - [anon_sym___forceinline] = ACTIONS(5518), - [anon_sym_thread_local] = ACTIONS(5518), - [anon_sym___thread] = ACTIONS(5518), - [anon_sym_const] = ACTIONS(5518), - [anon_sym_constexpr] = ACTIONS(5518), - [anon_sym_volatile] = ACTIONS(5518), - [anon_sym_restrict] = ACTIONS(5518), - [anon_sym___restrict__] = ACTIONS(5518), - [anon_sym__Atomic] = ACTIONS(5518), - [anon_sym__Noreturn] = ACTIONS(5518), - [anon_sym_noreturn] = ACTIONS(5518), - [anon_sym_mutable] = ACTIONS(5518), - [anon_sym_constinit] = ACTIONS(5518), - [anon_sym_consteval] = ACTIONS(5518), - [anon_sym_QMARK] = ACTIONS(5520), - [anon_sym_STAR_EQ] = ACTIONS(5520), - [anon_sym_SLASH_EQ] = ACTIONS(5520), - [anon_sym_PERCENT_EQ] = ACTIONS(5520), - [anon_sym_PLUS_EQ] = ACTIONS(5520), - [anon_sym_DASH_EQ] = ACTIONS(5520), - [anon_sym_LT_LT_EQ] = ACTIONS(5520), - [anon_sym_GT_GT_EQ] = ACTIONS(5520), - [anon_sym_AMP_EQ] = ACTIONS(5520), - [anon_sym_CARET_EQ] = ACTIONS(5520), - [anon_sym_PIPE_EQ] = ACTIONS(5520), - [anon_sym_and_eq] = ACTIONS(5527), - [anon_sym_or_eq] = ACTIONS(5527), - [anon_sym_xor_eq] = ACTIONS(5527), - [anon_sym_LT_EQ_GT] = ACTIONS(5520), - [anon_sym_or] = ACTIONS(5527), - [anon_sym_and] = ACTIONS(5527), - [anon_sym_bitor] = ACTIONS(5527), - [anon_sym_xor] = ACTIONS(5527), - [anon_sym_bitand] = ACTIONS(5527), - [anon_sym_not_eq] = ACTIONS(5527), - [anon_sym_DASH_DASH] = ACTIONS(5520), - [anon_sym_PLUS_PLUS] = ACTIONS(5520), - [anon_sym_DOT] = ACTIONS(5527), - [anon_sym_DOT_STAR] = ACTIONS(5520), - [anon_sym_DASH_GT] = ACTIONS(5520), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5518), - [anon_sym_decltype] = ACTIONS(5518), - [anon_sym_virtual] = ACTIONS(5518), - [anon_sym_alignas] = ACTIONS(5518), - [anon_sym_template] = ACTIONS(5518), - [anon_sym_operator] = ACTIONS(5518), + [1804] = { + [sym_identifier] = ACTIONS(5402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5404), + [anon_sym_COMMA] = ACTIONS(5404), + [anon_sym_RPAREN] = ACTIONS(5404), + [anon_sym_LPAREN2] = ACTIONS(5404), + [anon_sym_TILDE] = ACTIONS(5404), + [anon_sym_DASH] = ACTIONS(5402), + [anon_sym_PLUS] = ACTIONS(5402), + [anon_sym_STAR] = ACTIONS(5402), + [anon_sym_SLASH] = ACTIONS(5402), + [anon_sym_PERCENT] = ACTIONS(5402), + [anon_sym_PIPE_PIPE] = ACTIONS(5404), + [anon_sym_AMP_AMP] = ACTIONS(5404), + [anon_sym_PIPE] = ACTIONS(5402), + [anon_sym_CARET] = ACTIONS(5402), + [anon_sym_AMP] = ACTIONS(5402), + [anon_sym_EQ_EQ] = ACTIONS(5404), + [anon_sym_BANG_EQ] = ACTIONS(5404), + [anon_sym_GT] = ACTIONS(5402), + [anon_sym_GT_EQ] = ACTIONS(5404), + [anon_sym_LT_EQ] = ACTIONS(5402), + [anon_sym_LT] = ACTIONS(5402), + [anon_sym_LT_LT] = ACTIONS(5402), + [anon_sym_GT_GT] = ACTIONS(5402), + [anon_sym___extension__] = ACTIONS(5402), + [anon_sym_extern] = ACTIONS(5402), + [anon_sym___attribute__] = ACTIONS(5402), + [anon_sym_COLON_COLON] = ACTIONS(5404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5404), + [anon_sym___declspec] = ACTIONS(5402), + [anon_sym___based] = ACTIONS(5402), + [anon_sym_LBRACE] = ACTIONS(5404), + [anon_sym_LBRACK] = ACTIONS(5402), + [anon_sym_EQ] = ACTIONS(5402), + [anon_sym_static] = ACTIONS(5402), + [anon_sym_register] = ACTIONS(5402), + [anon_sym_inline] = ACTIONS(5402), + [anon_sym___inline] = ACTIONS(5402), + [anon_sym___inline__] = ACTIONS(5402), + [anon_sym___forceinline] = ACTIONS(5402), + [anon_sym_thread_local] = ACTIONS(5402), + [anon_sym___thread] = ACTIONS(5402), + [anon_sym_const] = ACTIONS(5402), + [anon_sym_constexpr] = ACTIONS(5402), + [anon_sym_volatile] = ACTIONS(5402), + [anon_sym_restrict] = ACTIONS(5402), + [anon_sym___restrict__] = ACTIONS(5402), + [anon_sym__Atomic] = ACTIONS(5402), + [anon_sym__Noreturn] = ACTIONS(5402), + [anon_sym_noreturn] = ACTIONS(5402), + [anon_sym_mutable] = ACTIONS(5402), + [anon_sym_constinit] = ACTIONS(5402), + [anon_sym_consteval] = ACTIONS(5402), + [anon_sym_QMARK] = ACTIONS(5404), + [anon_sym_STAR_EQ] = ACTIONS(5404), + [anon_sym_SLASH_EQ] = ACTIONS(5404), + [anon_sym_PERCENT_EQ] = ACTIONS(5404), + [anon_sym_PLUS_EQ] = ACTIONS(5404), + [anon_sym_DASH_EQ] = ACTIONS(5404), + [anon_sym_LT_LT_EQ] = ACTIONS(5404), + [anon_sym_GT_GT_EQ] = ACTIONS(5404), + [anon_sym_AMP_EQ] = ACTIONS(5404), + [anon_sym_CARET_EQ] = ACTIONS(5404), + [anon_sym_PIPE_EQ] = ACTIONS(5404), + [anon_sym_and_eq] = ACTIONS(5402), + [anon_sym_or_eq] = ACTIONS(5402), + [anon_sym_xor_eq] = ACTIONS(5402), + [anon_sym_LT_EQ_GT] = ACTIONS(5404), + [anon_sym_or] = ACTIONS(5402), + [anon_sym_and] = ACTIONS(5402), + [anon_sym_bitor] = ACTIONS(5402), + [anon_sym_xor] = ACTIONS(5402), + [anon_sym_bitand] = ACTIONS(5402), + [anon_sym_not_eq] = ACTIONS(5402), + [anon_sym_DASH_DASH] = ACTIONS(5404), + [anon_sym_PLUS_PLUS] = ACTIONS(5404), + [anon_sym_DOT] = ACTIONS(5402), + [anon_sym_DOT_STAR] = ACTIONS(5404), + [anon_sym_DASH_GT] = ACTIONS(5402), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5402), + [anon_sym_decltype] = ACTIONS(5402), + [anon_sym_virtual] = ACTIONS(5402), + [anon_sym_alignas] = ACTIONS(5402), + [anon_sym_template] = ACTIONS(5402), + [anon_sym_operator] = ACTIONS(5402), + [anon_sym_DASH_GT_STAR] = ACTIONS(5404), }, - [1838] = { - [sym_identifier] = ACTIONS(5477), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5479), - [anon_sym_COMMA] = ACTIONS(5479), - [anon_sym_RPAREN] = ACTIONS(5479), - [anon_sym_LPAREN2] = ACTIONS(5479), - [anon_sym_TILDE] = ACTIONS(5479), - [anon_sym_DASH] = ACTIONS(5477), - [anon_sym_PLUS] = ACTIONS(5477), - [anon_sym_STAR] = ACTIONS(5477), - [anon_sym_SLASH] = ACTIONS(5477), - [anon_sym_PERCENT] = ACTIONS(5477), - [anon_sym_PIPE_PIPE] = ACTIONS(5479), - [anon_sym_AMP_AMP] = ACTIONS(5479), - [anon_sym_PIPE] = ACTIONS(5477), - [anon_sym_CARET] = ACTIONS(5477), - [anon_sym_AMP] = ACTIONS(5477), - [anon_sym_EQ_EQ] = ACTIONS(5479), - [anon_sym_BANG_EQ] = ACTIONS(5479), - [anon_sym_GT] = ACTIONS(5477), - [anon_sym_GT_EQ] = ACTIONS(5479), - [anon_sym_LT_EQ] = ACTIONS(5477), - [anon_sym_LT] = ACTIONS(5477), - [anon_sym_LT_LT] = ACTIONS(5477), - [anon_sym_GT_GT] = ACTIONS(5477), - [anon_sym___extension__] = ACTIONS(5477), - [anon_sym_extern] = ACTIONS(5477), - [anon_sym___attribute__] = ACTIONS(5477), - [anon_sym_COLON_COLON] = ACTIONS(5479), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5479), - [anon_sym___declspec] = ACTIONS(5477), - [anon_sym___based] = ACTIONS(5477), - [anon_sym_LBRACE] = ACTIONS(5479), - [anon_sym_LBRACK] = ACTIONS(5477), - [anon_sym_EQ] = ACTIONS(5477), - [anon_sym_static] = ACTIONS(5477), - [anon_sym_register] = ACTIONS(5477), - [anon_sym_inline] = ACTIONS(5477), - [anon_sym___inline] = ACTIONS(5477), - [anon_sym___inline__] = ACTIONS(5477), - [anon_sym___forceinline] = ACTIONS(5477), - [anon_sym_thread_local] = ACTIONS(5477), - [anon_sym___thread] = ACTIONS(5477), - [anon_sym_const] = ACTIONS(5477), - [anon_sym_constexpr] = ACTIONS(5477), - [anon_sym_volatile] = ACTIONS(5477), - [anon_sym_restrict] = ACTIONS(5477), - [anon_sym___restrict__] = ACTIONS(5477), - [anon_sym__Atomic] = ACTIONS(5477), - [anon_sym__Noreturn] = ACTIONS(5477), - [anon_sym_noreturn] = ACTIONS(5477), - [anon_sym_mutable] = ACTIONS(5477), - [anon_sym_constinit] = ACTIONS(5477), - [anon_sym_consteval] = ACTIONS(5477), - [anon_sym_QMARK] = ACTIONS(5479), - [anon_sym_STAR_EQ] = ACTIONS(5479), - [anon_sym_SLASH_EQ] = ACTIONS(5479), - [anon_sym_PERCENT_EQ] = ACTIONS(5479), - [anon_sym_PLUS_EQ] = ACTIONS(5479), - [anon_sym_DASH_EQ] = ACTIONS(5479), - [anon_sym_LT_LT_EQ] = ACTIONS(5479), - [anon_sym_GT_GT_EQ] = ACTIONS(5479), - [anon_sym_AMP_EQ] = ACTIONS(5479), - [anon_sym_CARET_EQ] = ACTIONS(5479), - [anon_sym_PIPE_EQ] = ACTIONS(5479), - [anon_sym_and_eq] = ACTIONS(5477), - [anon_sym_or_eq] = ACTIONS(5477), - [anon_sym_xor_eq] = ACTIONS(5477), - [anon_sym_LT_EQ_GT] = ACTIONS(5479), - [anon_sym_or] = ACTIONS(5477), - [anon_sym_and] = ACTIONS(5477), - [anon_sym_bitor] = ACTIONS(5477), - [anon_sym_xor] = ACTIONS(5477), - [anon_sym_bitand] = ACTIONS(5477), - [anon_sym_not_eq] = ACTIONS(5477), - [anon_sym_DASH_DASH] = ACTIONS(5479), - [anon_sym_PLUS_PLUS] = ACTIONS(5479), - [anon_sym_DOT] = ACTIONS(5477), - [anon_sym_DOT_STAR] = ACTIONS(5479), - [anon_sym_DASH_GT] = ACTIONS(5477), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5477), - [anon_sym_decltype] = ACTIONS(5477), - [anon_sym_virtual] = ACTIONS(5477), - [anon_sym_alignas] = ACTIONS(5477), - [anon_sym_template] = ACTIONS(5477), - [anon_sym_operator] = ACTIONS(5477), - [anon_sym_DASH_GT_STAR] = ACTIONS(5479), + [1805] = { + [sym_identifier] = ACTIONS(5421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5423), + [anon_sym_COMMA] = ACTIONS(5423), + [anon_sym_RPAREN] = ACTIONS(5423), + [anon_sym_LPAREN2] = ACTIONS(5423), + [anon_sym_TILDE] = ACTIONS(5423), + [anon_sym_DASH] = ACTIONS(5421), + [anon_sym_PLUS] = ACTIONS(5421), + [anon_sym_STAR] = ACTIONS(5421), + [anon_sym_SLASH] = ACTIONS(5421), + [anon_sym_PERCENT] = ACTIONS(5421), + [anon_sym_PIPE_PIPE] = ACTIONS(5423), + [anon_sym_AMP_AMP] = ACTIONS(5423), + [anon_sym_PIPE] = ACTIONS(5421), + [anon_sym_CARET] = ACTIONS(5421), + [anon_sym_AMP] = ACTIONS(5421), + [anon_sym_EQ_EQ] = ACTIONS(5423), + [anon_sym_BANG_EQ] = ACTIONS(5423), + [anon_sym_GT] = ACTIONS(5421), + [anon_sym_GT_EQ] = ACTIONS(5423), + [anon_sym_LT_EQ] = ACTIONS(5421), + [anon_sym_LT] = ACTIONS(5421), + [anon_sym_LT_LT] = ACTIONS(5421), + [anon_sym_GT_GT] = ACTIONS(5421), + [anon_sym___extension__] = ACTIONS(5421), + [anon_sym_extern] = ACTIONS(5421), + [anon_sym___attribute__] = ACTIONS(5421), + [anon_sym_COLON_COLON] = ACTIONS(5423), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5423), + [anon_sym___declspec] = ACTIONS(5421), + [anon_sym___based] = ACTIONS(5421), + [anon_sym_LBRACE] = ACTIONS(5423), + [anon_sym_LBRACK] = ACTIONS(5421), + [anon_sym_EQ] = ACTIONS(5421), + [anon_sym_static] = ACTIONS(5421), + [anon_sym_register] = ACTIONS(5421), + [anon_sym_inline] = ACTIONS(5421), + [anon_sym___inline] = ACTIONS(5421), + [anon_sym___inline__] = ACTIONS(5421), + [anon_sym___forceinline] = ACTIONS(5421), + [anon_sym_thread_local] = ACTIONS(5421), + [anon_sym___thread] = ACTIONS(5421), + [anon_sym_const] = ACTIONS(5421), + [anon_sym_constexpr] = ACTIONS(5421), + [anon_sym_volatile] = ACTIONS(5421), + [anon_sym_restrict] = ACTIONS(5421), + [anon_sym___restrict__] = ACTIONS(5421), + [anon_sym__Atomic] = ACTIONS(5421), + [anon_sym__Noreturn] = ACTIONS(5421), + [anon_sym_noreturn] = ACTIONS(5421), + [anon_sym_mutable] = ACTIONS(5421), + [anon_sym_constinit] = ACTIONS(5421), + [anon_sym_consteval] = ACTIONS(5421), + [anon_sym_QMARK] = ACTIONS(5423), + [anon_sym_STAR_EQ] = ACTIONS(5423), + [anon_sym_SLASH_EQ] = ACTIONS(5423), + [anon_sym_PERCENT_EQ] = ACTIONS(5423), + [anon_sym_PLUS_EQ] = ACTIONS(5423), + [anon_sym_DASH_EQ] = ACTIONS(5423), + [anon_sym_LT_LT_EQ] = ACTIONS(5423), + [anon_sym_GT_GT_EQ] = ACTIONS(5423), + [anon_sym_AMP_EQ] = ACTIONS(5423), + [anon_sym_CARET_EQ] = ACTIONS(5423), + [anon_sym_PIPE_EQ] = ACTIONS(5423), + [anon_sym_and_eq] = ACTIONS(5421), + [anon_sym_or_eq] = ACTIONS(5421), + [anon_sym_xor_eq] = ACTIONS(5421), + [anon_sym_LT_EQ_GT] = ACTIONS(5423), + [anon_sym_or] = ACTIONS(5421), + [anon_sym_and] = ACTIONS(5421), + [anon_sym_bitor] = ACTIONS(5421), + [anon_sym_xor] = ACTIONS(5421), + [anon_sym_bitand] = ACTIONS(5421), + [anon_sym_not_eq] = ACTIONS(5421), + [anon_sym_DASH_DASH] = ACTIONS(5423), + [anon_sym_PLUS_PLUS] = ACTIONS(5423), + [anon_sym_DOT] = ACTIONS(5421), + [anon_sym_DOT_STAR] = ACTIONS(5423), + [anon_sym_DASH_GT] = ACTIONS(5421), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5421), + [anon_sym_decltype] = ACTIONS(5421), + [anon_sym_virtual] = ACTIONS(5421), + [anon_sym_alignas] = ACTIONS(5421), + [anon_sym_template] = ACTIONS(5421), + [anon_sym_operator] = ACTIONS(5421), + [anon_sym_DASH_GT_STAR] = ACTIONS(5423), }, - [1839] = { - [sym_string_literal] = STATE(1885), - [sym_template_argument_list] = STATE(2046), - [sym_raw_string_literal] = STATE(1885), - [aux_sym_sized_type_specifier_repeat1] = STATE(2089), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_RPAREN] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(4842), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4839), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4842), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4839), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(5532), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym___extension__] = ACTIONS(4835), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_signed] = ACTIONS(5490), - [anon_sym_unsigned] = ACTIONS(5490), - [anon_sym_long] = ACTIONS(5490), - [anon_sym_short] = ACTIONS(5490), - [anon_sym_LBRACK] = ACTIONS(4842), - [anon_sym_EQ] = ACTIONS(4837), - [anon_sym_const] = ACTIONS(4827), - [anon_sym_constexpr] = ACTIONS(4835), - [anon_sym_volatile] = ACTIONS(4835), - [anon_sym_restrict] = ACTIONS(4835), - [anon_sym___restrict__] = ACTIONS(4835), - [anon_sym__Atomic] = ACTIONS(4835), - [anon_sym__Noreturn] = ACTIONS(4835), - [anon_sym_noreturn] = ACTIONS(4835), - [anon_sym_mutable] = ACTIONS(4835), - [anon_sym_constinit] = ACTIONS(4835), - [anon_sym_consteval] = ACTIONS(4835), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4829), - [anon_sym_SLASH_EQ] = ACTIONS(4829), - [anon_sym_PERCENT_EQ] = ACTIONS(4829), - [anon_sym_PLUS_EQ] = ACTIONS(4829), - [anon_sym_DASH_EQ] = ACTIONS(4829), - [anon_sym_LT_LT_EQ] = ACTIONS(4829), - [anon_sym_GT_GT_EQ] = ACTIONS(4829), - [anon_sym_AMP_EQ] = ACTIONS(4829), - [anon_sym_CARET_EQ] = ACTIONS(4829), - [anon_sym_PIPE_EQ] = ACTIONS(4829), - [anon_sym_and_eq] = ACTIONS(4829), - [anon_sym_or_eq] = ACTIONS(4829), - [anon_sym_xor_eq] = ACTIONS(4829), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4829), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4829), - [anon_sym_not_eq] = ACTIONS(4829), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(2307), - [anon_sym_u_DQUOTE] = ACTIONS(2307), - [anon_sym_U_DQUOTE] = ACTIONS(2307), - [anon_sym_u8_DQUOTE] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4835), - [anon_sym_decltype] = ACTIONS(4835), - [anon_sym_R_DQUOTE] = ACTIONS(2317), - [anon_sym_LR_DQUOTE] = ACTIONS(2317), - [anon_sym_uR_DQUOTE] = ACTIONS(2317), - [anon_sym_UR_DQUOTE] = ACTIONS(2317), - [anon_sym_u8R_DQUOTE] = ACTIONS(2317), - [sym_semgrep_metavar] = ACTIONS(4835), + [1806] = { + [sym_string_literal] = STATE(2203), + [sym_template_argument_list] = STATE(2039), + [sym_raw_string_literal] = STATE(2203), + [aux_sym_sized_type_specifier_repeat1] = STATE(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_RPAREN] = ACTIONS(4778), + [anon_sym_LPAREN2] = ACTIONS(4778), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4775), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4778), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4775), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(5447), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym___extension__] = ACTIONS(4771), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_signed] = ACTIONS(5411), + [anon_sym_unsigned] = ACTIONS(5411), + [anon_sym_long] = ACTIONS(5411), + [anon_sym_short] = ACTIONS(5411), + [anon_sym_LBRACK] = ACTIONS(4778), + [anon_sym_EQ] = ACTIONS(4773), + [anon_sym_const] = ACTIONS(4763), + [anon_sym_constexpr] = ACTIONS(4771), + [anon_sym_volatile] = ACTIONS(4771), + [anon_sym_restrict] = ACTIONS(4771), + [anon_sym___restrict__] = ACTIONS(4771), + [anon_sym__Atomic] = ACTIONS(4771), + [anon_sym__Noreturn] = ACTIONS(4771), + [anon_sym_noreturn] = ACTIONS(4771), + [anon_sym_mutable] = ACTIONS(4771), + [anon_sym_constinit] = ACTIONS(4771), + [anon_sym_consteval] = ACTIONS(4771), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4765), + [anon_sym_SLASH_EQ] = ACTIONS(4765), + [anon_sym_PERCENT_EQ] = ACTIONS(4765), + [anon_sym_PLUS_EQ] = ACTIONS(4765), + [anon_sym_DASH_EQ] = ACTIONS(4765), + [anon_sym_LT_LT_EQ] = ACTIONS(4765), + [anon_sym_GT_GT_EQ] = ACTIONS(4765), + [anon_sym_AMP_EQ] = ACTIONS(4765), + [anon_sym_CARET_EQ] = ACTIONS(4765), + [anon_sym_PIPE_EQ] = ACTIONS(4765), + [anon_sym_and_eq] = ACTIONS(4765), + [anon_sym_or_eq] = ACTIONS(4765), + [anon_sym_xor_eq] = ACTIONS(4765), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4765), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4765), + [anon_sym_not_eq] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4773), + [anon_sym_L_DQUOTE] = ACTIONS(5413), + [anon_sym_u_DQUOTE] = ACTIONS(5413), + [anon_sym_U_DQUOTE] = ACTIONS(5413), + [anon_sym_u8_DQUOTE] = ACTIONS(5413), + [anon_sym_DQUOTE] = ACTIONS(5413), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4771), + [anon_sym_decltype] = ACTIONS(4771), + [anon_sym_R_DQUOTE] = ACTIONS(5415), + [anon_sym_LR_DQUOTE] = ACTIONS(5415), + [anon_sym_uR_DQUOTE] = ACTIONS(5415), + [anon_sym_UR_DQUOTE] = ACTIONS(5415), + [anon_sym_u8R_DQUOTE] = ACTIONS(5415), + [anon_sym_DASH_GT_STAR] = ACTIONS(4765), + [sym_semgrep_metavar] = ACTIONS(4771), }, - [1840] = { - [sym_identifier] = ACTIONS(5518), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5522), - [anon_sym_COMMA] = ACTIONS(5522), - [anon_sym_RPAREN] = ACTIONS(5522), - [anon_sym_LPAREN2] = ACTIONS(5522), - [anon_sym_TILDE] = ACTIONS(5525), - [anon_sym_DASH] = ACTIONS(5527), - [anon_sym_PLUS] = ACTIONS(5527), - [anon_sym_STAR] = ACTIONS(5529), - [anon_sym_SLASH] = ACTIONS(5527), - [anon_sym_PERCENT] = ACTIONS(5527), - [anon_sym_PIPE_PIPE] = ACTIONS(5520), - [anon_sym_AMP_AMP] = ACTIONS(5522), - [anon_sym_PIPE] = ACTIONS(5527), - [anon_sym_CARET] = ACTIONS(5527), - [anon_sym_AMP] = ACTIONS(5529), - [anon_sym_EQ_EQ] = ACTIONS(5520), - [anon_sym_BANG_EQ] = ACTIONS(5520), - [anon_sym_GT] = ACTIONS(5527), - [anon_sym_GT_EQ] = ACTIONS(5520), - [anon_sym_LT_EQ] = ACTIONS(5527), - [anon_sym_LT] = ACTIONS(5527), - [anon_sym_LT_LT] = ACTIONS(5527), - [anon_sym_GT_GT] = ACTIONS(5527), - [anon_sym___extension__] = ACTIONS(5518), - [anon_sym_extern] = ACTIONS(5518), - [anon_sym___attribute__] = ACTIONS(5518), - [anon_sym_COLON_COLON] = ACTIONS(5525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5525), - [anon_sym___declspec] = ACTIONS(5518), - [anon_sym___based] = ACTIONS(5518), - [anon_sym_LBRACE] = ACTIONS(5525), - [anon_sym_LBRACK] = ACTIONS(5529), - [anon_sym_EQ] = ACTIONS(5529), - [anon_sym_static] = ACTIONS(5518), - [anon_sym_register] = ACTIONS(5518), - [anon_sym_inline] = ACTIONS(5518), - [anon_sym___inline] = ACTIONS(5518), - [anon_sym___inline__] = ACTIONS(5518), - [anon_sym___forceinline] = ACTIONS(5518), - [anon_sym_thread_local] = ACTIONS(5518), - [anon_sym___thread] = ACTIONS(5518), - [anon_sym_const] = ACTIONS(5518), - [anon_sym_constexpr] = ACTIONS(5518), - [anon_sym_volatile] = ACTIONS(5518), - [anon_sym_restrict] = ACTIONS(5518), - [anon_sym___restrict__] = ACTIONS(5518), - [anon_sym__Atomic] = ACTIONS(5518), - [anon_sym__Noreturn] = ACTIONS(5518), - [anon_sym_noreturn] = ACTIONS(5518), - [anon_sym_mutable] = ACTIONS(5518), - [anon_sym_constinit] = ACTIONS(5518), - [anon_sym_consteval] = ACTIONS(5518), - [anon_sym_QMARK] = ACTIONS(5520), - [anon_sym_STAR_EQ] = ACTIONS(5520), - [anon_sym_SLASH_EQ] = ACTIONS(5520), - [anon_sym_PERCENT_EQ] = ACTIONS(5520), - [anon_sym_PLUS_EQ] = ACTIONS(5520), - [anon_sym_DASH_EQ] = ACTIONS(5520), - [anon_sym_LT_LT_EQ] = ACTIONS(5520), - [anon_sym_GT_GT_EQ] = ACTIONS(5520), - [anon_sym_AMP_EQ] = ACTIONS(5520), - [anon_sym_CARET_EQ] = ACTIONS(5520), - [anon_sym_PIPE_EQ] = ACTIONS(5520), - [anon_sym_and_eq] = ACTIONS(5527), - [anon_sym_or_eq] = ACTIONS(5527), - [anon_sym_xor_eq] = ACTIONS(5527), - [anon_sym_LT_EQ_GT] = ACTIONS(5520), - [anon_sym_or] = ACTIONS(5527), - [anon_sym_and] = ACTIONS(5527), - [anon_sym_bitor] = ACTIONS(5527), - [anon_sym_xor] = ACTIONS(5527), - [anon_sym_bitand] = ACTIONS(5527), - [anon_sym_not_eq] = ACTIONS(5527), - [anon_sym_DASH_DASH] = ACTIONS(5520), - [anon_sym_PLUS_PLUS] = ACTIONS(5520), - [anon_sym_DOT] = ACTIONS(5527), - [anon_sym_DOT_STAR] = ACTIONS(5520), - [anon_sym_DASH_GT] = ACTIONS(5520), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5518), - [anon_sym_decltype] = ACTIONS(5518), - [anon_sym_virtual] = ACTIONS(5518), - [anon_sym_alignas] = ACTIONS(5518), - [anon_sym_template] = ACTIONS(5518), - [anon_sym_operator] = ACTIONS(5518), + [1807] = { + [sym_identifier] = ACTIONS(5433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5435), + [anon_sym_COMMA] = ACTIONS(5435), + [anon_sym_RPAREN] = ACTIONS(5435), + [anon_sym_LPAREN2] = ACTIONS(5435), + [anon_sym_TILDE] = ACTIONS(5438), + [anon_sym_DASH] = ACTIONS(5440), + [anon_sym_PLUS] = ACTIONS(5440), + [anon_sym_STAR] = ACTIONS(5442), + [anon_sym_SLASH] = ACTIONS(5440), + [anon_sym_PERCENT] = ACTIONS(5440), + [anon_sym_PIPE_PIPE] = ACTIONS(5445), + [anon_sym_AMP_AMP] = ACTIONS(5435), + [anon_sym_PIPE] = ACTIONS(5440), + [anon_sym_CARET] = ACTIONS(5440), + [anon_sym_AMP] = ACTIONS(5442), + [anon_sym_EQ_EQ] = ACTIONS(5445), + [anon_sym_BANG_EQ] = ACTIONS(5445), + [anon_sym_GT] = ACTIONS(5440), + [anon_sym_GT_EQ] = ACTIONS(5445), + [anon_sym_LT_EQ] = ACTIONS(5440), + [anon_sym_LT] = ACTIONS(5440), + [anon_sym_LT_LT] = ACTIONS(5440), + [anon_sym_GT_GT] = ACTIONS(5440), + [anon_sym___extension__] = ACTIONS(5433), + [anon_sym_extern] = ACTIONS(5433), + [anon_sym___attribute__] = ACTIONS(5433), + [anon_sym_COLON_COLON] = ACTIONS(5438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5438), + [anon_sym___declspec] = ACTIONS(5433), + [anon_sym___based] = ACTIONS(5433), + [anon_sym_LBRACE] = ACTIONS(5438), + [anon_sym_LBRACK] = ACTIONS(5442), + [anon_sym_EQ] = ACTIONS(5442), + [anon_sym_static] = ACTIONS(5433), + [anon_sym_register] = ACTIONS(5433), + [anon_sym_inline] = ACTIONS(5433), + [anon_sym___inline] = ACTIONS(5433), + [anon_sym___inline__] = ACTIONS(5433), + [anon_sym___forceinline] = ACTIONS(5433), + [anon_sym_thread_local] = ACTIONS(5433), + [anon_sym___thread] = ACTIONS(5433), + [anon_sym_const] = ACTIONS(5433), + [anon_sym_constexpr] = ACTIONS(5433), + [anon_sym_volatile] = ACTIONS(5433), + [anon_sym_restrict] = ACTIONS(5433), + [anon_sym___restrict__] = ACTIONS(5433), + [anon_sym__Atomic] = ACTIONS(5433), + [anon_sym__Noreturn] = ACTIONS(5433), + [anon_sym_noreturn] = ACTIONS(5433), + [anon_sym_mutable] = ACTIONS(5433), + [anon_sym_constinit] = ACTIONS(5433), + [anon_sym_consteval] = ACTIONS(5433), + [anon_sym_QMARK] = ACTIONS(5445), + [anon_sym_STAR_EQ] = ACTIONS(5445), + [anon_sym_SLASH_EQ] = ACTIONS(5445), + [anon_sym_PERCENT_EQ] = ACTIONS(5445), + [anon_sym_PLUS_EQ] = ACTIONS(5445), + [anon_sym_DASH_EQ] = ACTIONS(5445), + [anon_sym_LT_LT_EQ] = ACTIONS(5445), + [anon_sym_GT_GT_EQ] = ACTIONS(5445), + [anon_sym_AMP_EQ] = ACTIONS(5445), + [anon_sym_CARET_EQ] = ACTIONS(5445), + [anon_sym_PIPE_EQ] = ACTIONS(5445), + [anon_sym_and_eq] = ACTIONS(5440), + [anon_sym_or_eq] = ACTIONS(5440), + [anon_sym_xor_eq] = ACTIONS(5440), + [anon_sym_LT_EQ_GT] = ACTIONS(5445), + [anon_sym_or] = ACTIONS(5440), + [anon_sym_and] = ACTIONS(5440), + [anon_sym_bitor] = ACTIONS(5440), + [anon_sym_xor] = ACTIONS(5440), + [anon_sym_bitand] = ACTIONS(5440), + [anon_sym_not_eq] = ACTIONS(5440), + [anon_sym_DASH_DASH] = ACTIONS(5445), + [anon_sym_PLUS_PLUS] = ACTIONS(5445), + [anon_sym_DOT] = ACTIONS(5440), + [anon_sym_DOT_STAR] = ACTIONS(5445), + [anon_sym_DASH_GT] = ACTIONS(5445), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5433), + [anon_sym_decltype] = ACTIONS(5433), + [anon_sym_virtual] = ACTIONS(5433), + [anon_sym_alignas] = ACTIONS(5433), + [anon_sym_template] = ACTIONS(5433), + [anon_sym_operator] = ACTIONS(5433), }, - [1841] = { - [sym_string_literal] = STATE(4196), - [sym_template_argument_list] = STATE(3809), - [sym_raw_string_literal] = STATE(4196), - [aux_sym_sized_type_specifier_repeat1] = STATE(2704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4842), - [anon_sym_COMMA] = ACTIONS(4842), - [anon_sym_LPAREN2] = ACTIONS(4842), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4839), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4842), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4839), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4837), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(5535), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym___extension__] = ACTIONS(4835), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_signed] = ACTIONS(5538), - [anon_sym_unsigned] = ACTIONS(5538), - [anon_sym_long] = ACTIONS(5538), - [anon_sym_short] = ACTIONS(5538), - [anon_sym_LBRACK] = ACTIONS(4842), - [anon_sym_EQ] = ACTIONS(5540), - [anon_sym_const] = ACTIONS(4827), - [anon_sym_constexpr] = ACTIONS(4835), - [anon_sym_volatile] = ACTIONS(4835), - [anon_sym_restrict] = ACTIONS(4835), - [anon_sym___restrict__] = ACTIONS(4835), - [anon_sym__Atomic] = ACTIONS(4835), - [anon_sym__Noreturn] = ACTIONS(4835), - [anon_sym_noreturn] = ACTIONS(4835), - [anon_sym_mutable] = ACTIONS(4835), - [anon_sym_constinit] = ACTIONS(4835), - [anon_sym_consteval] = ACTIONS(4835), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(5542), - [anon_sym_SLASH_EQ] = ACTIONS(5542), - [anon_sym_PERCENT_EQ] = ACTIONS(5542), - [anon_sym_PLUS_EQ] = ACTIONS(5542), - [anon_sym_DASH_EQ] = ACTIONS(5542), - [anon_sym_LT_LT_EQ] = ACTIONS(5542), - [anon_sym_GT_GT_EQ] = ACTIONS(5540), - [anon_sym_AMP_EQ] = ACTIONS(5542), - [anon_sym_CARET_EQ] = ACTIONS(5542), - [anon_sym_PIPE_EQ] = ACTIONS(5542), - [anon_sym_and_eq] = ACTIONS(5542), - [anon_sym_or_eq] = ACTIONS(5542), - [anon_sym_xor_eq] = ACTIONS(5542), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4829), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4829), - [anon_sym_not_eq] = ACTIONS(4829), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(5544), - [anon_sym_u_DQUOTE] = ACTIONS(5544), - [anon_sym_U_DQUOTE] = ACTIONS(5544), - [anon_sym_u8_DQUOTE] = ACTIONS(5544), - [anon_sym_DQUOTE] = ACTIONS(5544), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4835), - [anon_sym_decltype] = ACTIONS(4835), - [anon_sym_GT2] = ACTIONS(4842), - [anon_sym_R_DQUOTE] = ACTIONS(5546), - [anon_sym_LR_DQUOTE] = ACTIONS(5546), - [anon_sym_uR_DQUOTE] = ACTIONS(5546), - [anon_sym_UR_DQUOTE] = ACTIONS(5546), - [anon_sym_u8R_DQUOTE] = ACTIONS(5546), + [1808] = { + [sym_string_literal] = STATE(1843), + [sym_template_argument_list] = STATE(2106), + [sym_raw_string_literal] = STATE(1843), + [aux_sym_sized_type_specifier_repeat1] = STATE(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_RPAREN] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4778), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4775), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4778), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4775), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(5450), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym___extension__] = ACTIONS(4771), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_signed] = ACTIONS(5411), + [anon_sym_unsigned] = ACTIONS(5411), + [anon_sym_long] = ACTIONS(5411), + [anon_sym_short] = ACTIONS(5411), + [anon_sym_LBRACK] = ACTIONS(4778), + [anon_sym_EQ] = ACTIONS(4773), + [anon_sym_const] = ACTIONS(4763), + [anon_sym_constexpr] = ACTIONS(4771), + [anon_sym_volatile] = ACTIONS(4771), + [anon_sym_restrict] = ACTIONS(4771), + [anon_sym___restrict__] = ACTIONS(4771), + [anon_sym__Atomic] = ACTIONS(4771), + [anon_sym__Noreturn] = ACTIONS(4771), + [anon_sym_noreturn] = ACTIONS(4771), + [anon_sym_mutable] = ACTIONS(4771), + [anon_sym_constinit] = ACTIONS(4771), + [anon_sym_consteval] = ACTIONS(4771), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4765), + [anon_sym_SLASH_EQ] = ACTIONS(4765), + [anon_sym_PERCENT_EQ] = ACTIONS(4765), + [anon_sym_PLUS_EQ] = ACTIONS(4765), + [anon_sym_DASH_EQ] = ACTIONS(4765), + [anon_sym_LT_LT_EQ] = ACTIONS(4765), + [anon_sym_GT_GT_EQ] = ACTIONS(4765), + [anon_sym_AMP_EQ] = ACTIONS(4765), + [anon_sym_CARET_EQ] = ACTIONS(4765), + [anon_sym_PIPE_EQ] = ACTIONS(4765), + [anon_sym_and_eq] = ACTIONS(4765), + [anon_sym_or_eq] = ACTIONS(4765), + [anon_sym_xor_eq] = ACTIONS(4765), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4765), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4765), + [anon_sym_not_eq] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(2341), + [anon_sym_u_DQUOTE] = ACTIONS(2341), + [anon_sym_U_DQUOTE] = ACTIONS(2341), + [anon_sym_u8_DQUOTE] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4771), + [anon_sym_decltype] = ACTIONS(4771), + [anon_sym_R_DQUOTE] = ACTIONS(2345), + [anon_sym_LR_DQUOTE] = ACTIONS(2345), + [anon_sym_uR_DQUOTE] = ACTIONS(2345), + [anon_sym_UR_DQUOTE] = ACTIONS(2345), + [anon_sym_u8R_DQUOTE] = ACTIONS(2345), + [sym_semgrep_metavar] = ACTIONS(4771), }, - [1842] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(5181), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_abstract_declarator] = STATE(8174), - [sym_abstract_parenthesized_declarator] = STATE(7464), - [sym_abstract_pointer_declarator] = STATE(7464), - [sym_abstract_function_declarator] = STATE(7464), - [sym_abstract_array_declarator] = STATE(7464), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_parameter_list] = STATE(4268), - [sym_parameter_declaration] = STATE(8581), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_optional_parameter_declaration] = STATE(8581), - [sym_variadic_parameter_declaration] = STATE(8581), - [sym_abstract_reference_declarator] = STATE(7464), - [sym_function_declarator_seq] = STATE(7450), - [sym_template_type] = STATE(4853), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(4837), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5548), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5272), - [anon_sym_RPAREN] = ACTIONS(5274), - [anon_sym_LPAREN2] = ACTIONS(5550), - [anon_sym_STAR] = ACTIONS(5552), - [anon_sym_AMP_AMP] = ACTIONS(5554), - [anon_sym_AMP] = ACTIONS(5556), + [1809] = { + [sym_declaration_modifiers] = STATE(2412), + [sym_declaration_specifiers] = STATE(4711), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_abstract_declarator] = STATE(7837), + [sym_abstract_parenthesized_declarator] = STATE(7113), + [sym_abstract_pointer_declarator] = STATE(7113), + [sym_abstract_function_declarator] = STATE(7113), + [sym_abstract_array_declarator] = STATE(7113), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_parameter_list] = STATE(4330), + [sym_parameter_declaration] = STATE(8485), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_optional_parameter_declaration] = STATE(8485), + [sym_variadic_parameter_declaration] = STATE(8485), + [sym_abstract_reference_declarator] = STATE(7113), + [sym_function_declarator_seq] = STATE(7023), + [sym_template_type] = STATE(3324), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7569), + [sym_qualified_type_identifier] = STATE(4526), + [aux_sym_declaration_specifiers_repeat1] = STATE(2412), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5214), + [anon_sym_RPAREN] = ACTIONS(5216), + [anon_sym_LPAREN2] = ACTIONS(5455), + [anon_sym_STAR] = ACTIONS(5457), + [anon_sym_AMP_AMP] = ACTIONS(5459), + [anon_sym_AMP] = ACTIONS(5461), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(5558), + [anon_sym_LBRACK] = ACTIONS(5463), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -287536,74 +273710,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(2119), + [anon_sym_class] = ACTIONS(2121), + [anon_sym_struct] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2125), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_typename] = ACTIONS(2127), + [anon_sym_template] = ACTIONS(1534), }, - [1843] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(5181), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_abstract_declarator] = STATE(8139), - [sym_abstract_parenthesized_declarator] = STATE(7464), - [sym_abstract_pointer_declarator] = STATE(7464), - [sym_abstract_function_declarator] = STATE(7464), - [sym_abstract_array_declarator] = STATE(7464), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_parameter_list] = STATE(4268), - [sym_parameter_declaration] = STATE(8581), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_optional_parameter_declaration] = STATE(8581), - [sym_variadic_parameter_declaration] = STATE(8581), - [sym_abstract_reference_declarator] = STATE(7464), - [sym_function_declarator_seq] = STATE(7450), - [sym_template_type] = STATE(4853), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(4837), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5548), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5272), - [anon_sym_RPAREN] = ACTIONS(5274), - [anon_sym_LPAREN2] = ACTIONS(5550), - [anon_sym_STAR] = ACTIONS(5552), - [anon_sym_AMP_AMP] = ACTIONS(5554), - [anon_sym_AMP] = ACTIONS(5556), + [1810] = { + [sym_string_literal] = STATE(3858), + [sym_template_argument_list] = STATE(3665), + [sym_raw_string_literal] = STATE(3858), + [aux_sym_sized_type_specifier_repeat1] = STATE(2744), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4778), + [anon_sym_COMMA] = ACTIONS(4778), + [anon_sym_LPAREN2] = ACTIONS(4778), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4775), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4778), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4775), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4773), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(5465), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym___extension__] = ACTIONS(4771), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_signed] = ACTIONS(5468), + [anon_sym_unsigned] = ACTIONS(5468), + [anon_sym_long] = ACTIONS(5468), + [anon_sym_short] = ACTIONS(5468), + [anon_sym_LBRACK] = ACTIONS(4778), + [anon_sym_EQ] = ACTIONS(5470), + [anon_sym_const] = ACTIONS(4763), + [anon_sym_constexpr] = ACTIONS(4771), + [anon_sym_volatile] = ACTIONS(4771), + [anon_sym_restrict] = ACTIONS(4771), + [anon_sym___restrict__] = ACTIONS(4771), + [anon_sym__Atomic] = ACTIONS(4771), + [anon_sym__Noreturn] = ACTIONS(4771), + [anon_sym_noreturn] = ACTIONS(4771), + [anon_sym_mutable] = ACTIONS(4771), + [anon_sym_constinit] = ACTIONS(4771), + [anon_sym_consteval] = ACTIONS(4771), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(5472), + [anon_sym_SLASH_EQ] = ACTIONS(5472), + [anon_sym_PERCENT_EQ] = ACTIONS(5472), + [anon_sym_PLUS_EQ] = ACTIONS(5472), + [anon_sym_DASH_EQ] = ACTIONS(5472), + [anon_sym_LT_LT_EQ] = ACTIONS(5472), + [anon_sym_GT_GT_EQ] = ACTIONS(5470), + [anon_sym_AMP_EQ] = ACTIONS(5472), + [anon_sym_CARET_EQ] = ACTIONS(5472), + [anon_sym_PIPE_EQ] = ACTIONS(5472), + [anon_sym_and_eq] = ACTIONS(5472), + [anon_sym_or_eq] = ACTIONS(5472), + [anon_sym_xor_eq] = ACTIONS(5472), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4765), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4765), + [anon_sym_not_eq] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(5474), + [anon_sym_u_DQUOTE] = ACTIONS(5474), + [anon_sym_U_DQUOTE] = ACTIONS(5474), + [anon_sym_u8_DQUOTE] = ACTIONS(5474), + [anon_sym_DQUOTE] = ACTIONS(5474), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4771), + [anon_sym_decltype] = ACTIONS(4771), + [anon_sym_GT2] = ACTIONS(4778), + [anon_sym_R_DQUOTE] = ACTIONS(5476), + [anon_sym_LR_DQUOTE] = ACTIONS(5476), + [anon_sym_uR_DQUOTE] = ACTIONS(5476), + [anon_sym_UR_DQUOTE] = ACTIONS(5476), + [anon_sym_u8R_DQUOTE] = ACTIONS(5476), + }, + [1811] = { + [sym_declaration_modifiers] = STATE(2412), + [sym_declaration_specifiers] = STATE(4711), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_abstract_declarator] = STATE(7835), + [sym_abstract_parenthesized_declarator] = STATE(7113), + [sym_abstract_pointer_declarator] = STATE(7113), + [sym_abstract_function_declarator] = STATE(7113), + [sym_abstract_array_declarator] = STATE(7113), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_parameter_list] = STATE(4330), + [sym_parameter_declaration] = STATE(8485), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_optional_parameter_declaration] = STATE(8485), + [sym_variadic_parameter_declaration] = STATE(8485), + [sym_abstract_reference_declarator] = STATE(7113), + [sym_function_declarator_seq] = STATE(7023), + [sym_template_type] = STATE(3324), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7569), + [sym_qualified_type_identifier] = STATE(4526), + [aux_sym_declaration_specifiers_repeat1] = STATE(2412), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5214), + [anon_sym_RPAREN] = ACTIONS(5216), + [anon_sym_LPAREN2] = ACTIONS(5455), + [anon_sym_STAR] = ACTIONS(5457), + [anon_sym_AMP_AMP] = ACTIONS(5459), + [anon_sym_AMP] = ACTIONS(5461), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(5558), + [anon_sym_LBRACK] = ACTIONS(5463), [anon_sym_static] = ACTIONS(61), [anon_sym_register] = ACTIONS(61), [anon_sym_inline] = ACTIONS(61), @@ -287623,743 +273884,1317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(2119), + [anon_sym_class] = ACTIONS(2121), + [anon_sym_struct] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2125), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_typename] = ACTIONS(2127), + [anon_sym_template] = ACTIONS(1534), }, - [1844] = { - [sym_identifier] = ACTIONS(5477), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5479), - [anon_sym_COMMA] = ACTIONS(5479), - [anon_sym_RPAREN] = ACTIONS(5479), - [anon_sym_LPAREN2] = ACTIONS(5479), - [anon_sym_TILDE] = ACTIONS(5479), - [anon_sym_DASH] = ACTIONS(5477), - [anon_sym_PLUS] = ACTIONS(5477), - [anon_sym_STAR] = ACTIONS(5477), - [anon_sym_SLASH] = ACTIONS(5477), - [anon_sym_PERCENT] = ACTIONS(5477), - [anon_sym_PIPE_PIPE] = ACTIONS(5479), - [anon_sym_AMP_AMP] = ACTIONS(5479), - [anon_sym_PIPE] = ACTIONS(5477), - [anon_sym_CARET] = ACTIONS(5477), - [anon_sym_AMP] = ACTIONS(5477), - [anon_sym_EQ_EQ] = ACTIONS(5479), - [anon_sym_BANG_EQ] = ACTIONS(5479), - [anon_sym_GT] = ACTIONS(5477), - [anon_sym_GT_EQ] = ACTIONS(5479), - [anon_sym_LT_EQ] = ACTIONS(5477), - [anon_sym_LT] = ACTIONS(5477), - [anon_sym_LT_LT] = ACTIONS(5477), - [anon_sym_GT_GT] = ACTIONS(5477), - [anon_sym___extension__] = ACTIONS(5477), - [anon_sym_extern] = ACTIONS(5477), - [anon_sym___attribute__] = ACTIONS(5477), - [anon_sym_COLON_COLON] = ACTIONS(5479), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5479), - [anon_sym___declspec] = ACTIONS(5477), - [anon_sym___based] = ACTIONS(5477), - [anon_sym_LBRACE] = ACTIONS(5479), - [anon_sym_LBRACK] = ACTIONS(5477), - [anon_sym_EQ] = ACTIONS(5477), - [anon_sym_static] = ACTIONS(5477), - [anon_sym_register] = ACTIONS(5477), - [anon_sym_inline] = ACTIONS(5477), - [anon_sym___inline] = ACTIONS(5477), - [anon_sym___inline__] = ACTIONS(5477), - [anon_sym___forceinline] = ACTIONS(5477), - [anon_sym_thread_local] = ACTIONS(5477), - [anon_sym___thread] = ACTIONS(5477), - [anon_sym_const] = ACTIONS(5477), - [anon_sym_constexpr] = ACTIONS(5477), - [anon_sym_volatile] = ACTIONS(5477), - [anon_sym_restrict] = ACTIONS(5477), - [anon_sym___restrict__] = ACTIONS(5477), - [anon_sym__Atomic] = ACTIONS(5477), - [anon_sym__Noreturn] = ACTIONS(5477), - [anon_sym_noreturn] = ACTIONS(5477), - [anon_sym_mutable] = ACTIONS(5477), - [anon_sym_constinit] = ACTIONS(5477), - [anon_sym_consteval] = ACTIONS(5477), - [anon_sym_QMARK] = ACTIONS(5479), - [anon_sym_STAR_EQ] = ACTIONS(5479), - [anon_sym_SLASH_EQ] = ACTIONS(5479), - [anon_sym_PERCENT_EQ] = ACTIONS(5479), - [anon_sym_PLUS_EQ] = ACTIONS(5479), - [anon_sym_DASH_EQ] = ACTIONS(5479), - [anon_sym_LT_LT_EQ] = ACTIONS(5479), - [anon_sym_GT_GT_EQ] = ACTIONS(5479), - [anon_sym_AMP_EQ] = ACTIONS(5479), - [anon_sym_CARET_EQ] = ACTIONS(5479), - [anon_sym_PIPE_EQ] = ACTIONS(5479), - [anon_sym_LT_EQ_GT] = ACTIONS(5479), - [anon_sym_or] = ACTIONS(5477), - [anon_sym_and] = ACTIONS(5477), - [anon_sym_bitor] = ACTIONS(5477), - [anon_sym_xor] = ACTIONS(5477), - [anon_sym_bitand] = ACTIONS(5477), - [anon_sym_not_eq] = ACTIONS(5477), - [anon_sym_DASH_DASH] = ACTIONS(5479), - [anon_sym_PLUS_PLUS] = ACTIONS(5479), - [anon_sym_DOT] = ACTIONS(5477), - [anon_sym_DOT_STAR] = ACTIONS(5479), - [anon_sym_DASH_GT] = ACTIONS(5477), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5477), - [anon_sym_decltype] = ACTIONS(5477), - [anon_sym_virtual] = ACTIONS(5477), - [anon_sym_alignas] = ACTIONS(5477), - [anon_sym_template] = ACTIONS(5477), - [anon_sym_operator] = ACTIONS(5477), - [anon_sym_DASH_GT_STAR] = ACTIONS(5479), + [1812] = { + [sym_identifier] = ACTIONS(5433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5435), + [anon_sym_COMMA] = ACTIONS(5435), + [anon_sym_RPAREN] = ACTIONS(5435), + [anon_sym_LPAREN2] = ACTIONS(5435), + [anon_sym_TILDE] = ACTIONS(5438), + [anon_sym_DASH] = ACTIONS(5440), + [anon_sym_PLUS] = ACTIONS(5440), + [anon_sym_STAR] = ACTIONS(5442), + [anon_sym_SLASH] = ACTIONS(5440), + [anon_sym_PERCENT] = ACTIONS(5440), + [anon_sym_PIPE_PIPE] = ACTIONS(5445), + [anon_sym_AMP_AMP] = ACTIONS(5435), + [anon_sym_PIPE] = ACTIONS(5440), + [anon_sym_CARET] = ACTIONS(5440), + [anon_sym_AMP] = ACTIONS(5442), + [anon_sym_EQ_EQ] = ACTIONS(5445), + [anon_sym_BANG_EQ] = ACTIONS(5445), + [anon_sym_GT] = ACTIONS(5440), + [anon_sym_GT_EQ] = ACTIONS(5445), + [anon_sym_LT_EQ] = ACTIONS(5440), + [anon_sym_LT] = ACTIONS(5440), + [anon_sym_LT_LT] = ACTIONS(5440), + [anon_sym_GT_GT] = ACTIONS(5440), + [anon_sym___extension__] = ACTIONS(5433), + [anon_sym_extern] = ACTIONS(5433), + [anon_sym___attribute__] = ACTIONS(5433), + [anon_sym_COLON_COLON] = ACTIONS(5438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5438), + [anon_sym___declspec] = ACTIONS(5433), + [anon_sym___based] = ACTIONS(5433), + [anon_sym_LBRACE] = ACTIONS(5438), + [anon_sym_LBRACK] = ACTIONS(5442), + [anon_sym_EQ] = ACTIONS(5442), + [anon_sym_static] = ACTIONS(5433), + [anon_sym_register] = ACTIONS(5433), + [anon_sym_inline] = ACTIONS(5433), + [anon_sym___inline] = ACTIONS(5433), + [anon_sym___inline__] = ACTIONS(5433), + [anon_sym___forceinline] = ACTIONS(5433), + [anon_sym_thread_local] = ACTIONS(5433), + [anon_sym___thread] = ACTIONS(5433), + [anon_sym_const] = ACTIONS(5433), + [anon_sym_constexpr] = ACTIONS(5433), + [anon_sym_volatile] = ACTIONS(5433), + [anon_sym_restrict] = ACTIONS(5433), + [anon_sym___restrict__] = ACTIONS(5433), + [anon_sym__Atomic] = ACTIONS(5433), + [anon_sym__Noreturn] = ACTIONS(5433), + [anon_sym_noreturn] = ACTIONS(5433), + [anon_sym_mutable] = ACTIONS(5433), + [anon_sym_constinit] = ACTIONS(5433), + [anon_sym_consteval] = ACTIONS(5433), + [anon_sym_QMARK] = ACTIONS(5445), + [anon_sym_STAR_EQ] = ACTIONS(5445), + [anon_sym_SLASH_EQ] = ACTIONS(5445), + [anon_sym_PERCENT_EQ] = ACTIONS(5445), + [anon_sym_PLUS_EQ] = ACTIONS(5445), + [anon_sym_DASH_EQ] = ACTIONS(5445), + [anon_sym_LT_LT_EQ] = ACTIONS(5445), + [anon_sym_GT_GT_EQ] = ACTIONS(5445), + [anon_sym_AMP_EQ] = ACTIONS(5445), + [anon_sym_CARET_EQ] = ACTIONS(5445), + [anon_sym_PIPE_EQ] = ACTIONS(5445), + [anon_sym_LT_EQ_GT] = ACTIONS(5445), + [anon_sym_or] = ACTIONS(5440), + [anon_sym_and] = ACTIONS(5440), + [anon_sym_bitor] = ACTIONS(5440), + [anon_sym_xor] = ACTIONS(5440), + [anon_sym_bitand] = ACTIONS(5440), + [anon_sym_not_eq] = ACTIONS(5440), + [anon_sym_DASH_DASH] = ACTIONS(5445), + [anon_sym_PLUS_PLUS] = ACTIONS(5445), + [anon_sym_DOT] = ACTIONS(5440), + [anon_sym_DOT_STAR] = ACTIONS(5445), + [anon_sym_DASH_GT] = ACTIONS(5440), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5433), + [anon_sym_decltype] = ACTIONS(5433), + [anon_sym_virtual] = ACTIONS(5433), + [anon_sym_alignas] = ACTIONS(5433), + [anon_sym_template] = ACTIONS(5433), + [anon_sym_operator] = ACTIONS(5433), + [anon_sym_DASH_GT_STAR] = ACTIONS(5445), }, - [1845] = { - [sym_identifier] = ACTIONS(5456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5458), - [anon_sym_COMMA] = ACTIONS(5458), - [anon_sym_RPAREN] = ACTIONS(5458), - [anon_sym_LPAREN2] = ACTIONS(5458), - [anon_sym_TILDE] = ACTIONS(5458), - [anon_sym_DASH] = ACTIONS(5456), - [anon_sym_PLUS] = ACTIONS(5456), - [anon_sym_STAR] = ACTIONS(5456), - [anon_sym_SLASH] = ACTIONS(5456), - [anon_sym_PERCENT] = ACTIONS(5456), - [anon_sym_PIPE_PIPE] = ACTIONS(5458), - [anon_sym_AMP_AMP] = ACTIONS(5458), - [anon_sym_PIPE] = ACTIONS(5456), - [anon_sym_CARET] = ACTIONS(5456), - [anon_sym_AMP] = ACTIONS(5456), - [anon_sym_EQ_EQ] = ACTIONS(5458), - [anon_sym_BANG_EQ] = ACTIONS(5458), - [anon_sym_GT] = ACTIONS(5456), - [anon_sym_GT_EQ] = ACTIONS(5458), - [anon_sym_LT_EQ] = ACTIONS(5456), - [anon_sym_LT] = ACTIONS(5456), - [anon_sym_LT_LT] = ACTIONS(5456), - [anon_sym_GT_GT] = ACTIONS(5456), - [anon_sym___extension__] = ACTIONS(5456), - [anon_sym_extern] = ACTIONS(5456), - [anon_sym___attribute__] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(5458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5458), - [anon_sym___declspec] = ACTIONS(5456), - [anon_sym___based] = ACTIONS(5456), - [anon_sym_LBRACE] = ACTIONS(5458), - [anon_sym_LBRACK] = ACTIONS(5456), - [anon_sym_EQ] = ACTIONS(5456), - [anon_sym_static] = ACTIONS(5456), - [anon_sym_register] = ACTIONS(5456), - [anon_sym_inline] = ACTIONS(5456), - [anon_sym___inline] = ACTIONS(5456), - [anon_sym___inline__] = ACTIONS(5456), - [anon_sym___forceinline] = ACTIONS(5456), - [anon_sym_thread_local] = ACTIONS(5456), - [anon_sym___thread] = ACTIONS(5456), - [anon_sym_const] = ACTIONS(5456), - [anon_sym_constexpr] = ACTIONS(5456), - [anon_sym_volatile] = ACTIONS(5456), - [anon_sym_restrict] = ACTIONS(5456), - [anon_sym___restrict__] = ACTIONS(5456), - [anon_sym__Atomic] = ACTIONS(5456), - [anon_sym__Noreturn] = ACTIONS(5456), - [anon_sym_noreturn] = ACTIONS(5456), - [anon_sym_mutable] = ACTIONS(5456), - [anon_sym_constinit] = ACTIONS(5456), - [anon_sym_consteval] = ACTIONS(5456), - [anon_sym_QMARK] = ACTIONS(5458), - [anon_sym_STAR_EQ] = ACTIONS(5458), - [anon_sym_SLASH_EQ] = ACTIONS(5458), - [anon_sym_PERCENT_EQ] = ACTIONS(5458), - [anon_sym_PLUS_EQ] = ACTIONS(5458), - [anon_sym_DASH_EQ] = ACTIONS(5458), - [anon_sym_LT_LT_EQ] = ACTIONS(5458), - [anon_sym_GT_GT_EQ] = ACTIONS(5458), - [anon_sym_AMP_EQ] = ACTIONS(5458), - [anon_sym_CARET_EQ] = ACTIONS(5458), - [anon_sym_PIPE_EQ] = ACTIONS(5458), - [anon_sym_LT_EQ_GT] = ACTIONS(5458), - [anon_sym_or] = ACTIONS(5456), - [anon_sym_and] = ACTIONS(5456), - [anon_sym_bitor] = ACTIONS(5456), - [anon_sym_xor] = ACTIONS(5456), - [anon_sym_bitand] = ACTIONS(5456), - [anon_sym_not_eq] = ACTIONS(5456), - [anon_sym_DASH_DASH] = ACTIONS(5458), - [anon_sym_PLUS_PLUS] = ACTIONS(5458), - [anon_sym_DOT] = ACTIONS(5456), - [anon_sym_DOT_STAR] = ACTIONS(5458), - [anon_sym_DASH_GT] = ACTIONS(5456), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5456), - [anon_sym_decltype] = ACTIONS(5456), - [anon_sym_virtual] = ACTIONS(5456), - [anon_sym_alignas] = ACTIONS(5456), - [anon_sym_template] = ACTIONS(5456), - [anon_sym_operator] = ACTIONS(5456), - [anon_sym_DASH_GT_STAR] = ACTIONS(5458), + [1813] = { + [sym_identifier] = ACTIONS(5398), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5400), + [anon_sym_COMMA] = ACTIONS(5400), + [anon_sym_RPAREN] = ACTIONS(5400), + [anon_sym_LPAREN2] = ACTIONS(5400), + [anon_sym_TILDE] = ACTIONS(5400), + [anon_sym_DASH] = ACTIONS(5398), + [anon_sym_PLUS] = ACTIONS(5398), + [anon_sym_STAR] = ACTIONS(5398), + [anon_sym_SLASH] = ACTIONS(5398), + [anon_sym_PERCENT] = ACTIONS(5398), + [anon_sym_PIPE_PIPE] = ACTIONS(5400), + [anon_sym_AMP_AMP] = ACTIONS(5400), + [anon_sym_PIPE] = ACTIONS(5398), + [anon_sym_CARET] = ACTIONS(5398), + [anon_sym_AMP] = ACTIONS(5398), + [anon_sym_EQ_EQ] = ACTIONS(5400), + [anon_sym_BANG_EQ] = ACTIONS(5400), + [anon_sym_GT] = ACTIONS(5398), + [anon_sym_GT_EQ] = ACTIONS(5400), + [anon_sym_LT_EQ] = ACTIONS(5398), + [anon_sym_LT] = ACTIONS(5398), + [anon_sym_LT_LT] = ACTIONS(5398), + [anon_sym_GT_GT] = ACTIONS(5398), + [anon_sym___extension__] = ACTIONS(5398), + [anon_sym_extern] = ACTIONS(5398), + [anon_sym___attribute__] = ACTIONS(5398), + [anon_sym_COLON_COLON] = ACTIONS(5400), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5400), + [anon_sym___declspec] = ACTIONS(5398), + [anon_sym___based] = ACTIONS(5398), + [anon_sym_LBRACE] = ACTIONS(5400), + [anon_sym_LBRACK] = ACTIONS(5398), + [anon_sym_EQ] = ACTIONS(5398), + [anon_sym_static] = ACTIONS(5398), + [anon_sym_register] = ACTIONS(5398), + [anon_sym_inline] = ACTIONS(5398), + [anon_sym___inline] = ACTIONS(5398), + [anon_sym___inline__] = ACTIONS(5398), + [anon_sym___forceinline] = ACTIONS(5398), + [anon_sym_thread_local] = ACTIONS(5398), + [anon_sym___thread] = ACTIONS(5398), + [anon_sym_const] = ACTIONS(5398), + [anon_sym_constexpr] = ACTIONS(5398), + [anon_sym_volatile] = ACTIONS(5398), + [anon_sym_restrict] = ACTIONS(5398), + [anon_sym___restrict__] = ACTIONS(5398), + [anon_sym__Atomic] = ACTIONS(5398), + [anon_sym__Noreturn] = ACTIONS(5398), + [anon_sym_noreturn] = ACTIONS(5398), + [anon_sym_mutable] = ACTIONS(5398), + [anon_sym_constinit] = ACTIONS(5398), + [anon_sym_consteval] = ACTIONS(5398), + [anon_sym_QMARK] = ACTIONS(5400), + [anon_sym_STAR_EQ] = ACTIONS(5400), + [anon_sym_SLASH_EQ] = ACTIONS(5400), + [anon_sym_PERCENT_EQ] = ACTIONS(5400), + [anon_sym_PLUS_EQ] = ACTIONS(5400), + [anon_sym_DASH_EQ] = ACTIONS(5400), + [anon_sym_LT_LT_EQ] = ACTIONS(5400), + [anon_sym_GT_GT_EQ] = ACTIONS(5400), + [anon_sym_AMP_EQ] = ACTIONS(5400), + [anon_sym_CARET_EQ] = ACTIONS(5400), + [anon_sym_PIPE_EQ] = ACTIONS(5400), + [anon_sym_LT_EQ_GT] = ACTIONS(5400), + [anon_sym_or] = ACTIONS(5398), + [anon_sym_and] = ACTIONS(5398), + [anon_sym_bitor] = ACTIONS(5398), + [anon_sym_xor] = ACTIONS(5398), + [anon_sym_bitand] = ACTIONS(5398), + [anon_sym_not_eq] = ACTIONS(5398), + [anon_sym_DASH_DASH] = ACTIONS(5400), + [anon_sym_PLUS_PLUS] = ACTIONS(5400), + [anon_sym_DOT] = ACTIONS(5398), + [anon_sym_DOT_STAR] = ACTIONS(5400), + [anon_sym_DASH_GT] = ACTIONS(5398), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5398), + [anon_sym_decltype] = ACTIONS(5398), + [anon_sym_virtual] = ACTIONS(5398), + [anon_sym_alignas] = ACTIONS(5398), + [anon_sym_template] = ACTIONS(5398), + [anon_sym_operator] = ACTIONS(5398), + [anon_sym_DASH_GT_STAR] = ACTIONS(5400), }, - [1846] = { - [sym_identifier] = ACTIONS(5507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5509), - [anon_sym_COMMA] = ACTIONS(5509), - [anon_sym_RPAREN] = ACTIONS(5509), - [anon_sym_LPAREN2] = ACTIONS(5509), - [anon_sym_TILDE] = ACTIONS(5509), - [anon_sym_DASH] = ACTIONS(5507), - [anon_sym_PLUS] = ACTIONS(5507), - [anon_sym_STAR] = ACTIONS(5507), - [anon_sym_SLASH] = ACTIONS(5507), - [anon_sym_PERCENT] = ACTIONS(5507), - [anon_sym_PIPE_PIPE] = ACTIONS(5509), - [anon_sym_AMP_AMP] = ACTIONS(5509), - [anon_sym_PIPE] = ACTIONS(5507), - [anon_sym_CARET] = ACTIONS(5507), - [anon_sym_AMP] = ACTIONS(5507), - [anon_sym_EQ_EQ] = ACTIONS(5509), - [anon_sym_BANG_EQ] = ACTIONS(5509), - [anon_sym_GT] = ACTIONS(5507), - [anon_sym_GT_EQ] = ACTIONS(5509), - [anon_sym_LT_EQ] = ACTIONS(5507), - [anon_sym_LT] = ACTIONS(5507), - [anon_sym_LT_LT] = ACTIONS(5507), - [anon_sym_GT_GT] = ACTIONS(5507), - [anon_sym___extension__] = ACTIONS(5507), - [anon_sym_extern] = ACTIONS(5507), - [anon_sym___attribute__] = ACTIONS(5507), - [anon_sym_COLON_COLON] = ACTIONS(5509), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5509), - [anon_sym___declspec] = ACTIONS(5507), - [anon_sym___based] = ACTIONS(5507), - [anon_sym_LBRACE] = ACTIONS(5509), - [anon_sym_LBRACK] = ACTIONS(5507), - [anon_sym_EQ] = ACTIONS(5507), - [anon_sym_static] = ACTIONS(5507), - [anon_sym_register] = ACTIONS(5507), - [anon_sym_inline] = ACTIONS(5507), - [anon_sym___inline] = ACTIONS(5507), - [anon_sym___inline__] = ACTIONS(5507), - [anon_sym___forceinline] = ACTIONS(5507), - [anon_sym_thread_local] = ACTIONS(5507), - [anon_sym___thread] = ACTIONS(5507), - [anon_sym_const] = ACTIONS(5507), - [anon_sym_constexpr] = ACTIONS(5507), - [anon_sym_volatile] = ACTIONS(5507), - [anon_sym_restrict] = ACTIONS(5507), - [anon_sym___restrict__] = ACTIONS(5507), - [anon_sym__Atomic] = ACTIONS(5507), - [anon_sym__Noreturn] = ACTIONS(5507), - [anon_sym_noreturn] = ACTIONS(5507), - [anon_sym_mutable] = ACTIONS(5507), - [anon_sym_constinit] = ACTIONS(5507), - [anon_sym_consteval] = ACTIONS(5507), - [anon_sym_QMARK] = ACTIONS(5509), - [anon_sym_STAR_EQ] = ACTIONS(5509), - [anon_sym_SLASH_EQ] = ACTIONS(5509), - [anon_sym_PERCENT_EQ] = ACTIONS(5509), - [anon_sym_PLUS_EQ] = ACTIONS(5509), - [anon_sym_DASH_EQ] = ACTIONS(5509), - [anon_sym_LT_LT_EQ] = ACTIONS(5509), - [anon_sym_GT_GT_EQ] = ACTIONS(5509), - [anon_sym_AMP_EQ] = ACTIONS(5509), - [anon_sym_CARET_EQ] = ACTIONS(5509), - [anon_sym_PIPE_EQ] = ACTIONS(5509), - [anon_sym_LT_EQ_GT] = ACTIONS(5509), - [anon_sym_or] = ACTIONS(5507), - [anon_sym_and] = ACTIONS(5507), - [anon_sym_bitor] = ACTIONS(5507), - [anon_sym_xor] = ACTIONS(5507), - [anon_sym_bitand] = ACTIONS(5507), - [anon_sym_not_eq] = ACTIONS(5507), - [anon_sym_DASH_DASH] = ACTIONS(5509), - [anon_sym_PLUS_PLUS] = ACTIONS(5509), - [anon_sym_DOT] = ACTIONS(5507), - [anon_sym_DOT_STAR] = ACTIONS(5509), - [anon_sym_DASH_GT] = ACTIONS(5507), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5507), - [anon_sym_decltype] = ACTIONS(5507), - [anon_sym_virtual] = ACTIONS(5507), - [anon_sym_alignas] = ACTIONS(5507), - [anon_sym_template] = ACTIONS(5507), - [anon_sym_operator] = ACTIONS(5507), - [anon_sym_DASH_GT_STAR] = ACTIONS(5509), + [1814] = { + [sym_identifier] = ACTIONS(5417), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5419), + [anon_sym_COMMA] = ACTIONS(5419), + [anon_sym_RPAREN] = ACTIONS(5419), + [anon_sym_LPAREN2] = ACTIONS(5419), + [anon_sym_TILDE] = ACTIONS(5419), + [anon_sym_DASH] = ACTIONS(5417), + [anon_sym_PLUS] = ACTIONS(5417), + [anon_sym_STAR] = ACTIONS(5417), + [anon_sym_SLASH] = ACTIONS(5417), + [anon_sym_PERCENT] = ACTIONS(5417), + [anon_sym_PIPE_PIPE] = ACTIONS(5419), + [anon_sym_AMP_AMP] = ACTIONS(5419), + [anon_sym_PIPE] = ACTIONS(5417), + [anon_sym_CARET] = ACTIONS(5417), + [anon_sym_AMP] = ACTIONS(5417), + [anon_sym_EQ_EQ] = ACTIONS(5419), + [anon_sym_BANG_EQ] = ACTIONS(5419), + [anon_sym_GT] = ACTIONS(5417), + [anon_sym_GT_EQ] = ACTIONS(5419), + [anon_sym_LT_EQ] = ACTIONS(5417), + [anon_sym_LT] = ACTIONS(5417), + [anon_sym_LT_LT] = ACTIONS(5417), + [anon_sym_GT_GT] = ACTIONS(5417), + [anon_sym___extension__] = ACTIONS(5417), + [anon_sym_extern] = ACTIONS(5417), + [anon_sym___attribute__] = ACTIONS(5417), + [anon_sym_COLON_COLON] = ACTIONS(5419), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5419), + [anon_sym___declspec] = ACTIONS(5417), + [anon_sym___based] = ACTIONS(5417), + [anon_sym_LBRACE] = ACTIONS(5419), + [anon_sym_LBRACK] = ACTIONS(5417), + [anon_sym_EQ] = ACTIONS(5417), + [anon_sym_static] = ACTIONS(5417), + [anon_sym_register] = ACTIONS(5417), + [anon_sym_inline] = ACTIONS(5417), + [anon_sym___inline] = ACTIONS(5417), + [anon_sym___inline__] = ACTIONS(5417), + [anon_sym___forceinline] = ACTIONS(5417), + [anon_sym_thread_local] = ACTIONS(5417), + [anon_sym___thread] = ACTIONS(5417), + [anon_sym_const] = ACTIONS(5417), + [anon_sym_constexpr] = ACTIONS(5417), + [anon_sym_volatile] = ACTIONS(5417), + [anon_sym_restrict] = ACTIONS(5417), + [anon_sym___restrict__] = ACTIONS(5417), + [anon_sym__Atomic] = ACTIONS(5417), + [anon_sym__Noreturn] = ACTIONS(5417), + [anon_sym_noreturn] = ACTIONS(5417), + [anon_sym_mutable] = ACTIONS(5417), + [anon_sym_constinit] = ACTIONS(5417), + [anon_sym_consteval] = ACTIONS(5417), + [anon_sym_QMARK] = ACTIONS(5419), + [anon_sym_STAR_EQ] = ACTIONS(5419), + [anon_sym_SLASH_EQ] = ACTIONS(5419), + [anon_sym_PERCENT_EQ] = ACTIONS(5419), + [anon_sym_PLUS_EQ] = ACTIONS(5419), + [anon_sym_DASH_EQ] = ACTIONS(5419), + [anon_sym_LT_LT_EQ] = ACTIONS(5419), + [anon_sym_GT_GT_EQ] = ACTIONS(5419), + [anon_sym_AMP_EQ] = ACTIONS(5419), + [anon_sym_CARET_EQ] = ACTIONS(5419), + [anon_sym_PIPE_EQ] = ACTIONS(5419), + [anon_sym_LT_EQ_GT] = ACTIONS(5419), + [anon_sym_or] = ACTIONS(5417), + [anon_sym_and] = ACTIONS(5417), + [anon_sym_bitor] = ACTIONS(5417), + [anon_sym_xor] = ACTIONS(5417), + [anon_sym_bitand] = ACTIONS(5417), + [anon_sym_not_eq] = ACTIONS(5417), + [anon_sym_DASH_DASH] = ACTIONS(5419), + [anon_sym_PLUS_PLUS] = ACTIONS(5419), + [anon_sym_DOT] = ACTIONS(5417), + [anon_sym_DOT_STAR] = ACTIONS(5419), + [anon_sym_DASH_GT] = ACTIONS(5417), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5417), + [anon_sym_decltype] = ACTIONS(5417), + [anon_sym_virtual] = ACTIONS(5417), + [anon_sym_alignas] = ACTIONS(5417), + [anon_sym_template] = ACTIONS(5417), + [anon_sym_operator] = ACTIONS(5417), + [anon_sym_DASH_GT_STAR] = ACTIONS(5419), }, - [1847] = { - [sym_identifier] = ACTIONS(5518), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5522), - [anon_sym_COMMA] = ACTIONS(5522), - [anon_sym_RPAREN] = ACTIONS(5522), - [anon_sym_LPAREN2] = ACTIONS(5522), - [anon_sym_TILDE] = ACTIONS(5525), - [anon_sym_DASH] = ACTIONS(5527), - [anon_sym_PLUS] = ACTIONS(5527), - [anon_sym_STAR] = ACTIONS(5529), - [anon_sym_SLASH] = ACTIONS(5527), - [anon_sym_PERCENT] = ACTIONS(5527), - [anon_sym_PIPE_PIPE] = ACTIONS(5520), - [anon_sym_AMP_AMP] = ACTIONS(5522), - [anon_sym_PIPE] = ACTIONS(5527), - [anon_sym_CARET] = ACTIONS(5527), - [anon_sym_AMP] = ACTIONS(5529), - [anon_sym_EQ_EQ] = ACTIONS(5520), - [anon_sym_BANG_EQ] = ACTIONS(5520), - [anon_sym_GT] = ACTIONS(5527), - [anon_sym_GT_EQ] = ACTIONS(5520), - [anon_sym_LT_EQ] = ACTIONS(5527), - [anon_sym_LT] = ACTIONS(5527), - [anon_sym_LT_LT] = ACTIONS(5527), - [anon_sym_GT_GT] = ACTIONS(5527), - [anon_sym___extension__] = ACTIONS(5518), - [anon_sym_extern] = ACTIONS(5518), - [anon_sym___attribute__] = ACTIONS(5518), - [anon_sym_COLON_COLON] = ACTIONS(5525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5525), - [anon_sym___declspec] = ACTIONS(5518), - [anon_sym___based] = ACTIONS(5518), - [anon_sym_LBRACE] = ACTIONS(5525), - [anon_sym_LBRACK] = ACTIONS(5529), - [anon_sym_EQ] = ACTIONS(5529), - [anon_sym_static] = ACTIONS(5518), - [anon_sym_register] = ACTIONS(5518), - [anon_sym_inline] = ACTIONS(5518), - [anon_sym___inline] = ACTIONS(5518), - [anon_sym___inline__] = ACTIONS(5518), - [anon_sym___forceinline] = ACTIONS(5518), - [anon_sym_thread_local] = ACTIONS(5518), - [anon_sym___thread] = ACTIONS(5518), - [anon_sym_const] = ACTIONS(5518), - [anon_sym_constexpr] = ACTIONS(5518), - [anon_sym_volatile] = ACTIONS(5518), - [anon_sym_restrict] = ACTIONS(5518), - [anon_sym___restrict__] = ACTIONS(5518), - [anon_sym__Atomic] = ACTIONS(5518), - [anon_sym__Noreturn] = ACTIONS(5518), - [anon_sym_noreturn] = ACTIONS(5518), - [anon_sym_mutable] = ACTIONS(5518), - [anon_sym_constinit] = ACTIONS(5518), - [anon_sym_consteval] = ACTIONS(5518), - [anon_sym_QMARK] = ACTIONS(5520), - [anon_sym_STAR_EQ] = ACTIONS(5520), - [anon_sym_SLASH_EQ] = ACTIONS(5520), - [anon_sym_PERCENT_EQ] = ACTIONS(5520), - [anon_sym_PLUS_EQ] = ACTIONS(5520), - [anon_sym_DASH_EQ] = ACTIONS(5520), - [anon_sym_LT_LT_EQ] = ACTIONS(5520), - [anon_sym_GT_GT_EQ] = ACTIONS(5520), - [anon_sym_AMP_EQ] = ACTIONS(5520), - [anon_sym_CARET_EQ] = ACTIONS(5520), - [anon_sym_PIPE_EQ] = ACTIONS(5520), - [anon_sym_LT_EQ_GT] = ACTIONS(5520), - [anon_sym_or] = ACTIONS(5527), - [anon_sym_and] = ACTIONS(5527), - [anon_sym_bitor] = ACTIONS(5527), - [anon_sym_xor] = ACTIONS(5527), - [anon_sym_bitand] = ACTIONS(5527), - [anon_sym_not_eq] = ACTIONS(5527), - [anon_sym_DASH_DASH] = ACTIONS(5520), - [anon_sym_PLUS_PLUS] = ACTIONS(5520), - [anon_sym_DOT] = ACTIONS(5527), - [anon_sym_DOT_STAR] = ACTIONS(5520), - [anon_sym_DASH_GT] = ACTIONS(5527), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5518), - [anon_sym_decltype] = ACTIONS(5518), - [anon_sym_virtual] = ACTIONS(5518), - [anon_sym_alignas] = ACTIONS(5518), - [anon_sym_template] = ACTIONS(5518), - [anon_sym_operator] = ACTIONS(5518), - [anon_sym_DASH_GT_STAR] = ACTIONS(5520), + [1815] = { + [sym_identifier] = ACTIONS(5394), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5396), + [anon_sym_COMMA] = ACTIONS(5396), + [anon_sym_RPAREN] = ACTIONS(5396), + [anon_sym_LPAREN2] = ACTIONS(5396), + [anon_sym_TILDE] = ACTIONS(5396), + [anon_sym_DASH] = ACTIONS(5394), + [anon_sym_PLUS] = ACTIONS(5394), + [anon_sym_STAR] = ACTIONS(5394), + [anon_sym_SLASH] = ACTIONS(5394), + [anon_sym_PERCENT] = ACTIONS(5394), + [anon_sym_PIPE_PIPE] = ACTIONS(5396), + [anon_sym_AMP_AMP] = ACTIONS(5396), + [anon_sym_PIPE] = ACTIONS(5394), + [anon_sym_CARET] = ACTIONS(5394), + [anon_sym_AMP] = ACTIONS(5394), + [anon_sym_EQ_EQ] = ACTIONS(5396), + [anon_sym_BANG_EQ] = ACTIONS(5396), + [anon_sym_GT] = ACTIONS(5394), + [anon_sym_GT_EQ] = ACTIONS(5396), + [anon_sym_LT_EQ] = ACTIONS(5394), + [anon_sym_LT] = ACTIONS(5394), + [anon_sym_LT_LT] = ACTIONS(5394), + [anon_sym_GT_GT] = ACTIONS(5394), + [anon_sym___extension__] = ACTIONS(5394), + [anon_sym_extern] = ACTIONS(5394), + [anon_sym___attribute__] = ACTIONS(5394), + [anon_sym_COLON_COLON] = ACTIONS(5396), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5396), + [anon_sym___declspec] = ACTIONS(5394), + [anon_sym___based] = ACTIONS(5394), + [anon_sym_LBRACE] = ACTIONS(5396), + [anon_sym_LBRACK] = ACTIONS(5394), + [anon_sym_EQ] = ACTIONS(5394), + [anon_sym_static] = ACTIONS(5394), + [anon_sym_register] = ACTIONS(5394), + [anon_sym_inline] = ACTIONS(5394), + [anon_sym___inline] = ACTIONS(5394), + [anon_sym___inline__] = ACTIONS(5394), + [anon_sym___forceinline] = ACTIONS(5394), + [anon_sym_thread_local] = ACTIONS(5394), + [anon_sym___thread] = ACTIONS(5394), + [anon_sym_const] = ACTIONS(5394), + [anon_sym_constexpr] = ACTIONS(5394), + [anon_sym_volatile] = ACTIONS(5394), + [anon_sym_restrict] = ACTIONS(5394), + [anon_sym___restrict__] = ACTIONS(5394), + [anon_sym__Atomic] = ACTIONS(5394), + [anon_sym__Noreturn] = ACTIONS(5394), + [anon_sym_noreturn] = ACTIONS(5394), + [anon_sym_mutable] = ACTIONS(5394), + [anon_sym_constinit] = ACTIONS(5394), + [anon_sym_consteval] = ACTIONS(5394), + [anon_sym_QMARK] = ACTIONS(5396), + [anon_sym_STAR_EQ] = ACTIONS(5396), + [anon_sym_SLASH_EQ] = ACTIONS(5396), + [anon_sym_PERCENT_EQ] = ACTIONS(5396), + [anon_sym_PLUS_EQ] = ACTIONS(5396), + [anon_sym_DASH_EQ] = ACTIONS(5396), + [anon_sym_LT_LT_EQ] = ACTIONS(5396), + [anon_sym_GT_GT_EQ] = ACTIONS(5396), + [anon_sym_AMP_EQ] = ACTIONS(5396), + [anon_sym_CARET_EQ] = ACTIONS(5396), + [anon_sym_PIPE_EQ] = ACTIONS(5396), + [anon_sym_LT_EQ_GT] = ACTIONS(5396), + [anon_sym_or] = ACTIONS(5394), + [anon_sym_and] = ACTIONS(5394), + [anon_sym_bitor] = ACTIONS(5394), + [anon_sym_xor] = ACTIONS(5394), + [anon_sym_bitand] = ACTIONS(5394), + [anon_sym_not_eq] = ACTIONS(5394), + [anon_sym_DASH_DASH] = ACTIONS(5396), + [anon_sym_PLUS_PLUS] = ACTIONS(5396), + [anon_sym_DOT] = ACTIONS(5394), + [anon_sym_DOT_STAR] = ACTIONS(5396), + [anon_sym_DASH_GT] = ACTIONS(5394), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5394), + [anon_sym_decltype] = ACTIONS(5394), + [anon_sym_virtual] = ACTIONS(5394), + [anon_sym_alignas] = ACTIONS(5394), + [anon_sym_template] = ACTIONS(5394), + [anon_sym_operator] = ACTIONS(5394), + [anon_sym_DASH_GT_STAR] = ACTIONS(5396), }, - [1848] = { - [sym_identifier] = ACTIONS(5481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5483), - [anon_sym_COMMA] = ACTIONS(5483), - [anon_sym_RPAREN] = ACTIONS(5483), - [anon_sym_LPAREN2] = ACTIONS(5483), - [anon_sym_TILDE] = ACTIONS(5483), - [anon_sym_DASH] = ACTIONS(5481), - [anon_sym_PLUS] = ACTIONS(5481), - [anon_sym_STAR] = ACTIONS(5481), - [anon_sym_SLASH] = ACTIONS(5481), - [anon_sym_PERCENT] = ACTIONS(5481), - [anon_sym_PIPE_PIPE] = ACTIONS(5483), - [anon_sym_AMP_AMP] = ACTIONS(5483), - [anon_sym_PIPE] = ACTIONS(5481), - [anon_sym_CARET] = ACTIONS(5481), - [anon_sym_AMP] = ACTIONS(5481), - [anon_sym_EQ_EQ] = ACTIONS(5483), - [anon_sym_BANG_EQ] = ACTIONS(5483), - [anon_sym_GT] = ACTIONS(5481), - [anon_sym_GT_EQ] = ACTIONS(5483), - [anon_sym_LT_EQ] = ACTIONS(5481), - [anon_sym_LT] = ACTIONS(5481), - [anon_sym_LT_LT] = ACTIONS(5481), - [anon_sym_GT_GT] = ACTIONS(5481), - [anon_sym___extension__] = ACTIONS(5481), - [anon_sym_extern] = ACTIONS(5481), - [anon_sym___attribute__] = ACTIONS(5481), - [anon_sym_COLON_COLON] = ACTIONS(5483), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5483), - [anon_sym___declspec] = ACTIONS(5481), - [anon_sym___based] = ACTIONS(5481), - [anon_sym_LBRACE] = ACTIONS(5483), - [anon_sym_LBRACK] = ACTIONS(5481), - [anon_sym_EQ] = ACTIONS(5481), - [anon_sym_static] = ACTIONS(5481), - [anon_sym_register] = ACTIONS(5481), - [anon_sym_inline] = ACTIONS(5481), - [anon_sym___inline] = ACTIONS(5481), - [anon_sym___inline__] = ACTIONS(5481), - [anon_sym___forceinline] = ACTIONS(5481), - [anon_sym_thread_local] = ACTIONS(5481), - [anon_sym___thread] = ACTIONS(5481), - [anon_sym_const] = ACTIONS(5481), - [anon_sym_constexpr] = ACTIONS(5481), - [anon_sym_volatile] = ACTIONS(5481), - [anon_sym_restrict] = ACTIONS(5481), - [anon_sym___restrict__] = ACTIONS(5481), - [anon_sym__Atomic] = ACTIONS(5481), - [anon_sym__Noreturn] = ACTIONS(5481), - [anon_sym_noreturn] = ACTIONS(5481), - [anon_sym_mutable] = ACTIONS(5481), - [anon_sym_constinit] = ACTIONS(5481), - [anon_sym_consteval] = ACTIONS(5481), - [anon_sym_QMARK] = ACTIONS(5483), - [anon_sym_STAR_EQ] = ACTIONS(5483), - [anon_sym_SLASH_EQ] = ACTIONS(5483), - [anon_sym_PERCENT_EQ] = ACTIONS(5483), - [anon_sym_PLUS_EQ] = ACTIONS(5483), - [anon_sym_DASH_EQ] = ACTIONS(5483), - [anon_sym_LT_LT_EQ] = ACTIONS(5483), - [anon_sym_GT_GT_EQ] = ACTIONS(5483), - [anon_sym_AMP_EQ] = ACTIONS(5483), - [anon_sym_CARET_EQ] = ACTIONS(5483), - [anon_sym_PIPE_EQ] = ACTIONS(5483), - [anon_sym_LT_EQ_GT] = ACTIONS(5483), - [anon_sym_or] = ACTIONS(5481), - [anon_sym_and] = ACTIONS(5481), - [anon_sym_bitor] = ACTIONS(5481), - [anon_sym_xor] = ACTIONS(5481), - [anon_sym_bitand] = ACTIONS(5481), - [anon_sym_not_eq] = ACTIONS(5481), - [anon_sym_DASH_DASH] = ACTIONS(5483), - [anon_sym_PLUS_PLUS] = ACTIONS(5483), - [anon_sym_DOT] = ACTIONS(5481), - [anon_sym_DOT_STAR] = ACTIONS(5483), - [anon_sym_DASH_GT] = ACTIONS(5481), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5481), - [anon_sym_decltype] = ACTIONS(5481), - [anon_sym_virtual] = ACTIONS(5481), - [anon_sym_alignas] = ACTIONS(5481), - [anon_sym_template] = ACTIONS(5481), - [anon_sym_operator] = ACTIONS(5481), - [anon_sym_DASH_GT_STAR] = ACTIONS(5483), + [1816] = { + [sym_identifier] = ACTIONS(5421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5423), + [anon_sym_COMMA] = ACTIONS(5423), + [anon_sym_RPAREN] = ACTIONS(5423), + [anon_sym_LPAREN2] = ACTIONS(5423), + [anon_sym_TILDE] = ACTIONS(5423), + [anon_sym_DASH] = ACTIONS(5421), + [anon_sym_PLUS] = ACTIONS(5421), + [anon_sym_STAR] = ACTIONS(5421), + [anon_sym_SLASH] = ACTIONS(5421), + [anon_sym_PERCENT] = ACTIONS(5421), + [anon_sym_PIPE_PIPE] = ACTIONS(5423), + [anon_sym_AMP_AMP] = ACTIONS(5423), + [anon_sym_PIPE] = ACTIONS(5421), + [anon_sym_CARET] = ACTIONS(5421), + [anon_sym_AMP] = ACTIONS(5421), + [anon_sym_EQ_EQ] = ACTIONS(5423), + [anon_sym_BANG_EQ] = ACTIONS(5423), + [anon_sym_GT] = ACTIONS(5421), + [anon_sym_GT_EQ] = ACTIONS(5423), + [anon_sym_LT_EQ] = ACTIONS(5421), + [anon_sym_LT] = ACTIONS(5421), + [anon_sym_LT_LT] = ACTIONS(5421), + [anon_sym_GT_GT] = ACTIONS(5421), + [anon_sym___extension__] = ACTIONS(5421), + [anon_sym_extern] = ACTIONS(5421), + [anon_sym___attribute__] = ACTIONS(5421), + [anon_sym_COLON_COLON] = ACTIONS(5423), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5423), + [anon_sym___declspec] = ACTIONS(5421), + [anon_sym___based] = ACTIONS(5421), + [anon_sym_LBRACE] = ACTIONS(5423), + [anon_sym_LBRACK] = ACTIONS(5421), + [anon_sym_EQ] = ACTIONS(5421), + [anon_sym_static] = ACTIONS(5421), + [anon_sym_register] = ACTIONS(5421), + [anon_sym_inline] = ACTIONS(5421), + [anon_sym___inline] = ACTIONS(5421), + [anon_sym___inline__] = ACTIONS(5421), + [anon_sym___forceinline] = ACTIONS(5421), + [anon_sym_thread_local] = ACTIONS(5421), + [anon_sym___thread] = ACTIONS(5421), + [anon_sym_const] = ACTIONS(5421), + [anon_sym_constexpr] = ACTIONS(5421), + [anon_sym_volatile] = ACTIONS(5421), + [anon_sym_restrict] = ACTIONS(5421), + [anon_sym___restrict__] = ACTIONS(5421), + [anon_sym__Atomic] = ACTIONS(5421), + [anon_sym__Noreturn] = ACTIONS(5421), + [anon_sym_noreturn] = ACTIONS(5421), + [anon_sym_mutable] = ACTIONS(5421), + [anon_sym_constinit] = ACTIONS(5421), + [anon_sym_consteval] = ACTIONS(5421), + [anon_sym_QMARK] = ACTIONS(5423), + [anon_sym_STAR_EQ] = ACTIONS(5423), + [anon_sym_SLASH_EQ] = ACTIONS(5423), + [anon_sym_PERCENT_EQ] = ACTIONS(5423), + [anon_sym_PLUS_EQ] = ACTIONS(5423), + [anon_sym_DASH_EQ] = ACTIONS(5423), + [anon_sym_LT_LT_EQ] = ACTIONS(5423), + [anon_sym_GT_GT_EQ] = ACTIONS(5423), + [anon_sym_AMP_EQ] = ACTIONS(5423), + [anon_sym_CARET_EQ] = ACTIONS(5423), + [anon_sym_PIPE_EQ] = ACTIONS(5423), + [anon_sym_LT_EQ_GT] = ACTIONS(5423), + [anon_sym_or] = ACTIONS(5421), + [anon_sym_and] = ACTIONS(5421), + [anon_sym_bitor] = ACTIONS(5421), + [anon_sym_xor] = ACTIONS(5421), + [anon_sym_bitand] = ACTIONS(5421), + [anon_sym_not_eq] = ACTIONS(5421), + [anon_sym_DASH_DASH] = ACTIONS(5423), + [anon_sym_PLUS_PLUS] = ACTIONS(5423), + [anon_sym_DOT] = ACTIONS(5421), + [anon_sym_DOT_STAR] = ACTIONS(5423), + [anon_sym_DASH_GT] = ACTIONS(5421), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5421), + [anon_sym_decltype] = ACTIONS(5421), + [anon_sym_virtual] = ACTIONS(5421), + [anon_sym_alignas] = ACTIONS(5421), + [anon_sym_template] = ACTIONS(5421), + [anon_sym_operator] = ACTIONS(5421), + [anon_sym_DASH_GT_STAR] = ACTIONS(5423), }, - [1849] = { - [sym_identifier] = ACTIONS(5511), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5513), - [anon_sym_COMMA] = ACTIONS(5513), - [anon_sym_RPAREN] = ACTIONS(5513), - [anon_sym_LPAREN2] = ACTIONS(5513), - [anon_sym_TILDE] = ACTIONS(5513), - [anon_sym_DASH] = ACTIONS(5511), - [anon_sym_PLUS] = ACTIONS(5511), - [anon_sym_STAR] = ACTIONS(5511), - [anon_sym_SLASH] = ACTIONS(5511), - [anon_sym_PERCENT] = ACTIONS(5511), - [anon_sym_PIPE_PIPE] = ACTIONS(5513), - [anon_sym_AMP_AMP] = ACTIONS(5513), - [anon_sym_PIPE] = ACTIONS(5511), - [anon_sym_CARET] = ACTIONS(5511), - [anon_sym_AMP] = ACTIONS(5511), - [anon_sym_EQ_EQ] = ACTIONS(5513), - [anon_sym_BANG_EQ] = ACTIONS(5513), - [anon_sym_GT] = ACTIONS(5511), - [anon_sym_GT_EQ] = ACTIONS(5513), - [anon_sym_LT_EQ] = ACTIONS(5511), - [anon_sym_LT] = ACTIONS(5511), - [anon_sym_LT_LT] = ACTIONS(5511), - [anon_sym_GT_GT] = ACTIONS(5511), - [anon_sym___extension__] = ACTIONS(5511), - [anon_sym_extern] = ACTIONS(5511), - [anon_sym___attribute__] = ACTIONS(5511), - [anon_sym_COLON_COLON] = ACTIONS(5513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5513), - [anon_sym___declspec] = ACTIONS(5511), - [anon_sym___based] = ACTIONS(5511), - [anon_sym_LBRACE] = ACTIONS(5513), - [anon_sym_LBRACK] = ACTIONS(5511), - [anon_sym_EQ] = ACTIONS(5511), - [anon_sym_static] = ACTIONS(5511), - [anon_sym_register] = ACTIONS(5511), - [anon_sym_inline] = ACTIONS(5511), - [anon_sym___inline] = ACTIONS(5511), - [anon_sym___inline__] = ACTIONS(5511), - [anon_sym___forceinline] = ACTIONS(5511), - [anon_sym_thread_local] = ACTIONS(5511), - [anon_sym___thread] = ACTIONS(5511), - [anon_sym_const] = ACTIONS(5511), - [anon_sym_constexpr] = ACTIONS(5511), - [anon_sym_volatile] = ACTIONS(5511), - [anon_sym_restrict] = ACTIONS(5511), - [anon_sym___restrict__] = ACTIONS(5511), - [anon_sym__Atomic] = ACTIONS(5511), - [anon_sym__Noreturn] = ACTIONS(5511), - [anon_sym_noreturn] = ACTIONS(5511), - [anon_sym_mutable] = ACTIONS(5511), - [anon_sym_constinit] = ACTIONS(5511), - [anon_sym_consteval] = ACTIONS(5511), - [anon_sym_QMARK] = ACTIONS(5513), - [anon_sym_STAR_EQ] = ACTIONS(5513), - [anon_sym_SLASH_EQ] = ACTIONS(5513), - [anon_sym_PERCENT_EQ] = ACTIONS(5513), - [anon_sym_PLUS_EQ] = ACTIONS(5513), - [anon_sym_DASH_EQ] = ACTIONS(5513), - [anon_sym_LT_LT_EQ] = ACTIONS(5513), - [anon_sym_GT_GT_EQ] = ACTIONS(5513), - [anon_sym_AMP_EQ] = ACTIONS(5513), - [anon_sym_CARET_EQ] = ACTIONS(5513), - [anon_sym_PIPE_EQ] = ACTIONS(5513), - [anon_sym_LT_EQ_GT] = ACTIONS(5513), - [anon_sym_or] = ACTIONS(5511), - [anon_sym_and] = ACTIONS(5511), - [anon_sym_bitor] = ACTIONS(5511), - [anon_sym_xor] = ACTIONS(5511), - [anon_sym_bitand] = ACTIONS(5511), - [anon_sym_not_eq] = ACTIONS(5511), - [anon_sym_DASH_DASH] = ACTIONS(5513), - [anon_sym_PLUS_PLUS] = ACTIONS(5513), - [anon_sym_DOT] = ACTIONS(5511), - [anon_sym_DOT_STAR] = ACTIONS(5513), - [anon_sym_DASH_GT] = ACTIONS(5511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5511), - [anon_sym_decltype] = ACTIONS(5511), - [anon_sym_virtual] = ACTIONS(5511), - [anon_sym_alignas] = ACTIONS(5511), - [anon_sym_template] = ACTIONS(5511), - [anon_sym_operator] = ACTIONS(5511), - [anon_sym_DASH_GT_STAR] = ACTIONS(5513), + [1817] = { + [sym_identifier] = ACTIONS(5402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5404), + [anon_sym_COMMA] = ACTIONS(5404), + [anon_sym_RPAREN] = ACTIONS(5404), + [anon_sym_LPAREN2] = ACTIONS(5404), + [anon_sym_TILDE] = ACTIONS(5404), + [anon_sym_DASH] = ACTIONS(5402), + [anon_sym_PLUS] = ACTIONS(5402), + [anon_sym_STAR] = ACTIONS(5402), + [anon_sym_SLASH] = ACTIONS(5402), + [anon_sym_PERCENT] = ACTIONS(5402), + [anon_sym_PIPE_PIPE] = ACTIONS(5404), + [anon_sym_AMP_AMP] = ACTIONS(5404), + [anon_sym_PIPE] = ACTIONS(5402), + [anon_sym_CARET] = ACTIONS(5402), + [anon_sym_AMP] = ACTIONS(5402), + [anon_sym_EQ_EQ] = ACTIONS(5404), + [anon_sym_BANG_EQ] = ACTIONS(5404), + [anon_sym_GT] = ACTIONS(5402), + [anon_sym_GT_EQ] = ACTIONS(5404), + [anon_sym_LT_EQ] = ACTIONS(5402), + [anon_sym_LT] = ACTIONS(5402), + [anon_sym_LT_LT] = ACTIONS(5402), + [anon_sym_GT_GT] = ACTIONS(5402), + [anon_sym___extension__] = ACTIONS(5402), + [anon_sym_extern] = ACTIONS(5402), + [anon_sym___attribute__] = ACTIONS(5402), + [anon_sym_COLON_COLON] = ACTIONS(5404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5404), + [anon_sym___declspec] = ACTIONS(5402), + [anon_sym___based] = ACTIONS(5402), + [anon_sym_LBRACE] = ACTIONS(5404), + [anon_sym_LBRACK] = ACTIONS(5402), + [anon_sym_EQ] = ACTIONS(5402), + [anon_sym_static] = ACTIONS(5402), + [anon_sym_register] = ACTIONS(5402), + [anon_sym_inline] = ACTIONS(5402), + [anon_sym___inline] = ACTIONS(5402), + [anon_sym___inline__] = ACTIONS(5402), + [anon_sym___forceinline] = ACTIONS(5402), + [anon_sym_thread_local] = ACTIONS(5402), + [anon_sym___thread] = ACTIONS(5402), + [anon_sym_const] = ACTIONS(5402), + [anon_sym_constexpr] = ACTIONS(5402), + [anon_sym_volatile] = ACTIONS(5402), + [anon_sym_restrict] = ACTIONS(5402), + [anon_sym___restrict__] = ACTIONS(5402), + [anon_sym__Atomic] = ACTIONS(5402), + [anon_sym__Noreturn] = ACTIONS(5402), + [anon_sym_noreturn] = ACTIONS(5402), + [anon_sym_mutable] = ACTIONS(5402), + [anon_sym_constinit] = ACTIONS(5402), + [anon_sym_consteval] = ACTIONS(5402), + [anon_sym_QMARK] = ACTIONS(5404), + [anon_sym_STAR_EQ] = ACTIONS(5404), + [anon_sym_SLASH_EQ] = ACTIONS(5404), + [anon_sym_PERCENT_EQ] = ACTIONS(5404), + [anon_sym_PLUS_EQ] = ACTIONS(5404), + [anon_sym_DASH_EQ] = ACTIONS(5404), + [anon_sym_LT_LT_EQ] = ACTIONS(5404), + [anon_sym_GT_GT_EQ] = ACTIONS(5404), + [anon_sym_AMP_EQ] = ACTIONS(5404), + [anon_sym_CARET_EQ] = ACTIONS(5404), + [anon_sym_PIPE_EQ] = ACTIONS(5404), + [anon_sym_LT_EQ_GT] = ACTIONS(5404), + [anon_sym_or] = ACTIONS(5402), + [anon_sym_and] = ACTIONS(5402), + [anon_sym_bitor] = ACTIONS(5402), + [anon_sym_xor] = ACTIONS(5402), + [anon_sym_bitand] = ACTIONS(5402), + [anon_sym_not_eq] = ACTIONS(5402), + [anon_sym_DASH_DASH] = ACTIONS(5404), + [anon_sym_PLUS_PLUS] = ACTIONS(5404), + [anon_sym_DOT] = ACTIONS(5402), + [anon_sym_DOT_STAR] = ACTIONS(5404), + [anon_sym_DASH_GT] = ACTIONS(5402), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5402), + [anon_sym_decltype] = ACTIONS(5402), + [anon_sym_virtual] = ACTIONS(5402), + [anon_sym_alignas] = ACTIONS(5402), + [anon_sym_template] = ACTIONS(5402), + [anon_sym_operator] = ACTIONS(5402), + [anon_sym_DASH_GT_STAR] = ACTIONS(5404), }, - [1850] = { - [sym_identifier] = ACTIONS(5500), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5502), - [anon_sym_COMMA] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(5502), - [anon_sym_LPAREN2] = ACTIONS(5502), - [anon_sym_TILDE] = ACTIONS(5502), - [anon_sym_DASH] = ACTIONS(5500), - [anon_sym_PLUS] = ACTIONS(5500), - [anon_sym_STAR] = ACTIONS(5500), - [anon_sym_SLASH] = ACTIONS(5500), - [anon_sym_PERCENT] = ACTIONS(5500), - [anon_sym_PIPE_PIPE] = ACTIONS(5502), - [anon_sym_AMP_AMP] = ACTIONS(5502), - [anon_sym_PIPE] = ACTIONS(5500), - [anon_sym_CARET] = ACTIONS(5500), - [anon_sym_AMP] = ACTIONS(5500), - [anon_sym_EQ_EQ] = ACTIONS(5502), - [anon_sym_BANG_EQ] = ACTIONS(5502), - [anon_sym_GT] = ACTIONS(5500), - [anon_sym_GT_EQ] = ACTIONS(5502), - [anon_sym_LT_EQ] = ACTIONS(5500), - [anon_sym_LT] = ACTIONS(5500), - [anon_sym_LT_LT] = ACTIONS(5500), - [anon_sym_GT_GT] = ACTIONS(5500), - [anon_sym___extension__] = ACTIONS(5500), - [anon_sym_extern] = ACTIONS(5500), - [anon_sym___attribute__] = ACTIONS(5500), - [anon_sym_COLON_COLON] = ACTIONS(5502), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5502), - [anon_sym___declspec] = ACTIONS(5500), - [anon_sym___based] = ACTIONS(5500), - [anon_sym_LBRACE] = ACTIONS(5502), - [anon_sym_LBRACK] = ACTIONS(5500), - [anon_sym_EQ] = ACTIONS(5500), - [anon_sym_static] = ACTIONS(5500), - [anon_sym_register] = ACTIONS(5500), - [anon_sym_inline] = ACTIONS(5500), - [anon_sym___inline] = ACTIONS(5500), - [anon_sym___inline__] = ACTIONS(5500), - [anon_sym___forceinline] = ACTIONS(5500), - [anon_sym_thread_local] = ACTIONS(5500), - [anon_sym___thread] = ACTIONS(5500), - [anon_sym_const] = ACTIONS(5500), - [anon_sym_constexpr] = ACTIONS(5500), - [anon_sym_volatile] = ACTIONS(5500), - [anon_sym_restrict] = ACTIONS(5500), - [anon_sym___restrict__] = ACTIONS(5500), - [anon_sym__Atomic] = ACTIONS(5500), - [anon_sym__Noreturn] = ACTIONS(5500), - [anon_sym_noreturn] = ACTIONS(5500), - [anon_sym_mutable] = ACTIONS(5500), - [anon_sym_constinit] = ACTIONS(5500), - [anon_sym_consteval] = ACTIONS(5500), - [anon_sym_QMARK] = ACTIONS(5502), - [anon_sym_STAR_EQ] = ACTIONS(5502), - [anon_sym_SLASH_EQ] = ACTIONS(5502), - [anon_sym_PERCENT_EQ] = ACTIONS(5502), - [anon_sym_PLUS_EQ] = ACTIONS(5502), - [anon_sym_DASH_EQ] = ACTIONS(5502), - [anon_sym_LT_LT_EQ] = ACTIONS(5502), - [anon_sym_GT_GT_EQ] = ACTIONS(5502), - [anon_sym_AMP_EQ] = ACTIONS(5502), - [anon_sym_CARET_EQ] = ACTIONS(5502), - [anon_sym_PIPE_EQ] = ACTIONS(5502), - [anon_sym_LT_EQ_GT] = ACTIONS(5502), - [anon_sym_or] = ACTIONS(5500), - [anon_sym_and] = ACTIONS(5500), - [anon_sym_bitor] = ACTIONS(5500), - [anon_sym_xor] = ACTIONS(5500), - [anon_sym_bitand] = ACTIONS(5500), - [anon_sym_not_eq] = ACTIONS(5500), - [anon_sym_DASH_DASH] = ACTIONS(5502), - [anon_sym_PLUS_PLUS] = ACTIONS(5502), - [anon_sym_DOT] = ACTIONS(5500), - [anon_sym_DOT_STAR] = ACTIONS(5502), - [anon_sym_DASH_GT] = ACTIONS(5500), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5500), - [anon_sym_decltype] = ACTIONS(5500), - [anon_sym_virtual] = ACTIONS(5500), - [anon_sym_alignas] = ACTIONS(5500), - [anon_sym_template] = ACTIONS(5500), - [anon_sym_operator] = ACTIONS(5500), - [anon_sym_DASH_GT_STAR] = ACTIONS(5502), + [1818] = { + [sym_identifier] = ACTIONS(5425), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5427), + [anon_sym_COMMA] = ACTIONS(5427), + [anon_sym_RPAREN] = ACTIONS(5427), + [anon_sym_LPAREN2] = ACTIONS(5427), + [anon_sym_TILDE] = ACTIONS(5427), + [anon_sym_DASH] = ACTIONS(5425), + [anon_sym_PLUS] = ACTIONS(5425), + [anon_sym_STAR] = ACTIONS(5425), + [anon_sym_SLASH] = ACTIONS(5425), + [anon_sym_PERCENT] = ACTIONS(5425), + [anon_sym_PIPE_PIPE] = ACTIONS(5427), + [anon_sym_AMP_AMP] = ACTIONS(5427), + [anon_sym_PIPE] = ACTIONS(5425), + [anon_sym_CARET] = ACTIONS(5425), + [anon_sym_AMP] = ACTIONS(5425), + [anon_sym_EQ_EQ] = ACTIONS(5427), + [anon_sym_BANG_EQ] = ACTIONS(5427), + [anon_sym_GT] = ACTIONS(5425), + [anon_sym_GT_EQ] = ACTIONS(5427), + [anon_sym_LT_EQ] = ACTIONS(5425), + [anon_sym_LT] = ACTIONS(5425), + [anon_sym_LT_LT] = ACTIONS(5425), + [anon_sym_GT_GT] = ACTIONS(5425), + [anon_sym___extension__] = ACTIONS(5425), + [anon_sym_extern] = ACTIONS(5425), + [anon_sym___attribute__] = ACTIONS(5425), + [anon_sym_COLON_COLON] = ACTIONS(5427), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5427), + [anon_sym___declspec] = ACTIONS(5425), + [anon_sym___based] = ACTIONS(5425), + [anon_sym_LBRACE] = ACTIONS(5427), + [anon_sym_LBRACK] = ACTIONS(5425), + [anon_sym_EQ] = ACTIONS(5425), + [anon_sym_static] = ACTIONS(5425), + [anon_sym_register] = ACTIONS(5425), + [anon_sym_inline] = ACTIONS(5425), + [anon_sym___inline] = ACTIONS(5425), + [anon_sym___inline__] = ACTIONS(5425), + [anon_sym___forceinline] = ACTIONS(5425), + [anon_sym_thread_local] = ACTIONS(5425), + [anon_sym___thread] = ACTIONS(5425), + [anon_sym_const] = ACTIONS(5425), + [anon_sym_constexpr] = ACTIONS(5425), + [anon_sym_volatile] = ACTIONS(5425), + [anon_sym_restrict] = ACTIONS(5425), + [anon_sym___restrict__] = ACTIONS(5425), + [anon_sym__Atomic] = ACTIONS(5425), + [anon_sym__Noreturn] = ACTIONS(5425), + [anon_sym_noreturn] = ACTIONS(5425), + [anon_sym_mutable] = ACTIONS(5425), + [anon_sym_constinit] = ACTIONS(5425), + [anon_sym_consteval] = ACTIONS(5425), + [anon_sym_QMARK] = ACTIONS(5427), + [anon_sym_STAR_EQ] = ACTIONS(5427), + [anon_sym_SLASH_EQ] = ACTIONS(5427), + [anon_sym_PERCENT_EQ] = ACTIONS(5427), + [anon_sym_PLUS_EQ] = ACTIONS(5427), + [anon_sym_DASH_EQ] = ACTIONS(5427), + [anon_sym_LT_LT_EQ] = ACTIONS(5427), + [anon_sym_GT_GT_EQ] = ACTIONS(5427), + [anon_sym_AMP_EQ] = ACTIONS(5427), + [anon_sym_CARET_EQ] = ACTIONS(5427), + [anon_sym_PIPE_EQ] = ACTIONS(5427), + [anon_sym_LT_EQ_GT] = ACTIONS(5427), + [anon_sym_or] = ACTIONS(5425), + [anon_sym_and] = ACTIONS(5425), + [anon_sym_bitor] = ACTIONS(5425), + [anon_sym_xor] = ACTIONS(5425), + [anon_sym_bitand] = ACTIONS(5425), + [anon_sym_not_eq] = ACTIONS(5425), + [anon_sym_DASH_DASH] = ACTIONS(5427), + [anon_sym_PLUS_PLUS] = ACTIONS(5427), + [anon_sym_DOT] = ACTIONS(5425), + [anon_sym_DOT_STAR] = ACTIONS(5427), + [anon_sym_DASH_GT] = ACTIONS(5425), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5425), + [anon_sym_decltype] = ACTIONS(5425), + [anon_sym_virtual] = ACTIONS(5425), + [anon_sym_alignas] = ACTIONS(5425), + [anon_sym_template] = ACTIONS(5425), + [anon_sym_operator] = ACTIONS(5425), + [anon_sym_DASH_GT_STAR] = ACTIONS(5427), }, - [1851] = { - [sym_identifier] = ACTIONS(5496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5498), - [anon_sym_COMMA] = ACTIONS(5498), - [anon_sym_RPAREN] = ACTIONS(5498), - [anon_sym_LPAREN2] = ACTIONS(5498), - [anon_sym_TILDE] = ACTIONS(5498), - [anon_sym_DASH] = ACTIONS(5496), - [anon_sym_PLUS] = ACTIONS(5496), - [anon_sym_STAR] = ACTIONS(5496), - [anon_sym_SLASH] = ACTIONS(5496), - [anon_sym_PERCENT] = ACTIONS(5496), - [anon_sym_PIPE_PIPE] = ACTIONS(5498), - [anon_sym_AMP_AMP] = ACTIONS(5498), - [anon_sym_PIPE] = ACTIONS(5496), - [anon_sym_CARET] = ACTIONS(5496), - [anon_sym_AMP] = ACTIONS(5496), - [anon_sym_EQ_EQ] = ACTIONS(5498), - [anon_sym_BANG_EQ] = ACTIONS(5498), - [anon_sym_GT] = ACTIONS(5496), - [anon_sym_GT_EQ] = ACTIONS(5498), - [anon_sym_LT_EQ] = ACTIONS(5496), - [anon_sym_LT] = ACTIONS(5496), - [anon_sym_LT_LT] = ACTIONS(5496), - [anon_sym_GT_GT] = ACTIONS(5496), - [anon_sym___extension__] = ACTIONS(5496), - [anon_sym_extern] = ACTIONS(5496), - [anon_sym___attribute__] = ACTIONS(5496), - [anon_sym_COLON_COLON] = ACTIONS(5498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5498), - [anon_sym___declspec] = ACTIONS(5496), - [anon_sym___based] = ACTIONS(5496), - [anon_sym_LBRACE] = ACTIONS(5498), - [anon_sym_LBRACK] = ACTIONS(5496), - [anon_sym_EQ] = ACTIONS(5496), - [anon_sym_static] = ACTIONS(5496), - [anon_sym_register] = ACTIONS(5496), - [anon_sym_inline] = ACTIONS(5496), - [anon_sym___inline] = ACTIONS(5496), - [anon_sym___inline__] = ACTIONS(5496), - [anon_sym___forceinline] = ACTIONS(5496), - [anon_sym_thread_local] = ACTIONS(5496), - [anon_sym___thread] = ACTIONS(5496), - [anon_sym_const] = ACTIONS(5496), - [anon_sym_constexpr] = ACTIONS(5496), - [anon_sym_volatile] = ACTIONS(5496), - [anon_sym_restrict] = ACTIONS(5496), - [anon_sym___restrict__] = ACTIONS(5496), - [anon_sym__Atomic] = ACTIONS(5496), - [anon_sym__Noreturn] = ACTIONS(5496), - [anon_sym_noreturn] = ACTIONS(5496), - [anon_sym_mutable] = ACTIONS(5496), - [anon_sym_constinit] = ACTIONS(5496), - [anon_sym_consteval] = ACTIONS(5496), - [anon_sym_QMARK] = ACTIONS(5498), - [anon_sym_STAR_EQ] = ACTIONS(5498), - [anon_sym_SLASH_EQ] = ACTIONS(5498), - [anon_sym_PERCENT_EQ] = ACTIONS(5498), - [anon_sym_PLUS_EQ] = ACTIONS(5498), - [anon_sym_DASH_EQ] = ACTIONS(5498), - [anon_sym_LT_LT_EQ] = ACTIONS(5498), - [anon_sym_GT_GT_EQ] = ACTIONS(5498), - [anon_sym_AMP_EQ] = ACTIONS(5498), - [anon_sym_CARET_EQ] = ACTIONS(5498), - [anon_sym_PIPE_EQ] = ACTIONS(5498), - [anon_sym_LT_EQ_GT] = ACTIONS(5498), - [anon_sym_or] = ACTIONS(5496), - [anon_sym_and] = ACTIONS(5496), - [anon_sym_bitor] = ACTIONS(5496), - [anon_sym_xor] = ACTIONS(5496), - [anon_sym_bitand] = ACTIONS(5496), - [anon_sym_not_eq] = ACTIONS(5496), - [anon_sym_DASH_DASH] = ACTIONS(5498), - [anon_sym_PLUS_PLUS] = ACTIONS(5498), - [anon_sym_DOT] = ACTIONS(5496), - [anon_sym_DOT_STAR] = ACTIONS(5498), - [anon_sym_DASH_GT] = ACTIONS(5496), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5496), - [anon_sym_decltype] = ACTIONS(5496), - [anon_sym_virtual] = ACTIONS(5496), - [anon_sym_alignas] = ACTIONS(5496), - [anon_sym_template] = ACTIONS(5496), - [anon_sym_operator] = ACTIONS(5496), - [anon_sym_DASH_GT_STAR] = ACTIONS(5498), + [1819] = { + [sym_identifier] = ACTIONS(5429), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5431), + [anon_sym_COMMA] = ACTIONS(5431), + [anon_sym_RPAREN] = ACTIONS(5431), + [anon_sym_LPAREN2] = ACTIONS(5431), + [anon_sym_TILDE] = ACTIONS(5431), + [anon_sym_DASH] = ACTIONS(5429), + [anon_sym_PLUS] = ACTIONS(5429), + [anon_sym_STAR] = ACTIONS(5429), + [anon_sym_SLASH] = ACTIONS(5429), + [anon_sym_PERCENT] = ACTIONS(5429), + [anon_sym_PIPE_PIPE] = ACTIONS(5431), + [anon_sym_AMP_AMP] = ACTIONS(5431), + [anon_sym_PIPE] = ACTIONS(5429), + [anon_sym_CARET] = ACTIONS(5429), + [anon_sym_AMP] = ACTIONS(5429), + [anon_sym_EQ_EQ] = ACTIONS(5431), + [anon_sym_BANG_EQ] = ACTIONS(5431), + [anon_sym_GT] = ACTIONS(5429), + [anon_sym_GT_EQ] = ACTIONS(5431), + [anon_sym_LT_EQ] = ACTIONS(5429), + [anon_sym_LT] = ACTIONS(5429), + [anon_sym_LT_LT] = ACTIONS(5429), + [anon_sym_GT_GT] = ACTIONS(5429), + [anon_sym___extension__] = ACTIONS(5429), + [anon_sym_extern] = ACTIONS(5429), + [anon_sym___attribute__] = ACTIONS(5429), + [anon_sym_COLON_COLON] = ACTIONS(5431), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5431), + [anon_sym___declspec] = ACTIONS(5429), + [anon_sym___based] = ACTIONS(5429), + [anon_sym_LBRACE] = ACTIONS(5431), + [anon_sym_LBRACK] = ACTIONS(5429), + [anon_sym_EQ] = ACTIONS(5429), + [anon_sym_static] = ACTIONS(5429), + [anon_sym_register] = ACTIONS(5429), + [anon_sym_inline] = ACTIONS(5429), + [anon_sym___inline] = ACTIONS(5429), + [anon_sym___inline__] = ACTIONS(5429), + [anon_sym___forceinline] = ACTIONS(5429), + [anon_sym_thread_local] = ACTIONS(5429), + [anon_sym___thread] = ACTIONS(5429), + [anon_sym_const] = ACTIONS(5429), + [anon_sym_constexpr] = ACTIONS(5429), + [anon_sym_volatile] = ACTIONS(5429), + [anon_sym_restrict] = ACTIONS(5429), + [anon_sym___restrict__] = ACTIONS(5429), + [anon_sym__Atomic] = ACTIONS(5429), + [anon_sym__Noreturn] = ACTIONS(5429), + [anon_sym_noreturn] = ACTIONS(5429), + [anon_sym_mutable] = ACTIONS(5429), + [anon_sym_constinit] = ACTIONS(5429), + [anon_sym_consteval] = ACTIONS(5429), + [anon_sym_QMARK] = ACTIONS(5431), + [anon_sym_STAR_EQ] = ACTIONS(5431), + [anon_sym_SLASH_EQ] = ACTIONS(5431), + [anon_sym_PERCENT_EQ] = ACTIONS(5431), + [anon_sym_PLUS_EQ] = ACTIONS(5431), + [anon_sym_DASH_EQ] = ACTIONS(5431), + [anon_sym_LT_LT_EQ] = ACTIONS(5431), + [anon_sym_GT_GT_EQ] = ACTIONS(5431), + [anon_sym_AMP_EQ] = ACTIONS(5431), + [anon_sym_CARET_EQ] = ACTIONS(5431), + [anon_sym_PIPE_EQ] = ACTIONS(5431), + [anon_sym_LT_EQ_GT] = ACTIONS(5431), + [anon_sym_or] = ACTIONS(5429), + [anon_sym_and] = ACTIONS(5429), + [anon_sym_bitor] = ACTIONS(5429), + [anon_sym_xor] = ACTIONS(5429), + [anon_sym_bitand] = ACTIONS(5429), + [anon_sym_not_eq] = ACTIONS(5429), + [anon_sym_DASH_DASH] = ACTIONS(5431), + [anon_sym_PLUS_PLUS] = ACTIONS(5431), + [anon_sym_DOT] = ACTIONS(5429), + [anon_sym_DOT_STAR] = ACTIONS(5431), + [anon_sym_DASH_GT] = ACTIONS(5429), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5429), + [anon_sym_decltype] = ACTIONS(5429), + [anon_sym_virtual] = ACTIONS(5429), + [anon_sym_alignas] = ACTIONS(5429), + [anon_sym_template] = ACTIONS(5429), + [anon_sym_operator] = ACTIONS(5429), + [anon_sym_DASH_GT_STAR] = ACTIONS(5431), }, - [1852] = { - [sym_function_definition] = STATE(826), - [sym_declaration] = STATE(826), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6398), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_call_modifier] = STATE(2086), - [sym_declaration_list] = STATE(826), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4853), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(4837), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5548), + [1820] = { + [sym_identifier] = ACTIONS(5398), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5400), + [anon_sym_COMMA] = ACTIONS(5400), + [anon_sym_RPAREN] = ACTIONS(5400), + [anon_sym_LPAREN2] = ACTIONS(5400), + [anon_sym_TILDE] = ACTIONS(5400), + [anon_sym_DASH] = ACTIONS(5398), + [anon_sym_PLUS] = ACTIONS(5398), + [anon_sym_STAR] = ACTIONS(5400), + [anon_sym_SLASH] = ACTIONS(5398), + [anon_sym_PERCENT] = ACTIONS(5400), + [anon_sym_PIPE_PIPE] = ACTIONS(5400), + [anon_sym_AMP_AMP] = ACTIONS(5400), + [anon_sym_PIPE] = ACTIONS(5398), + [anon_sym_CARET] = ACTIONS(5400), + [anon_sym_AMP] = ACTIONS(5398), + [anon_sym_EQ_EQ] = ACTIONS(5400), + [anon_sym_BANG_EQ] = ACTIONS(5400), + [anon_sym_GT] = ACTIONS(5398), + [anon_sym_GT_EQ] = ACTIONS(5400), + [anon_sym_LT_EQ] = ACTIONS(5398), + [anon_sym_LT] = ACTIONS(5398), + [anon_sym_LT_LT] = ACTIONS(5400), + [anon_sym_GT_GT] = ACTIONS(5400), + [anon_sym_SEMI] = ACTIONS(5400), + [anon_sym___extension__] = ACTIONS(5398), + [anon_sym_extern] = ACTIONS(5398), + [anon_sym___attribute__] = ACTIONS(5398), + [anon_sym_COLON_COLON] = ACTIONS(5400), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5400), + [anon_sym___declspec] = ACTIONS(5398), + [anon_sym___based] = ACTIONS(5398), + [anon_sym_LBRACE] = ACTIONS(5400), + [anon_sym_RBRACE] = ACTIONS(5400), + [anon_sym_LBRACK] = ACTIONS(5398), + [anon_sym_EQ] = ACTIONS(5398), + [anon_sym_static] = ACTIONS(5398), + [anon_sym_register] = ACTIONS(5398), + [anon_sym_inline] = ACTIONS(5398), + [anon_sym___inline] = ACTIONS(5398), + [anon_sym___inline__] = ACTIONS(5398), + [anon_sym___forceinline] = ACTIONS(5398), + [anon_sym_thread_local] = ACTIONS(5398), + [anon_sym___thread] = ACTIONS(5398), + [anon_sym_const] = ACTIONS(5398), + [anon_sym_constexpr] = ACTIONS(5398), + [anon_sym_volatile] = ACTIONS(5398), + [anon_sym_restrict] = ACTIONS(5398), + [anon_sym___restrict__] = ACTIONS(5398), + [anon_sym__Atomic] = ACTIONS(5398), + [anon_sym__Noreturn] = ACTIONS(5398), + [anon_sym_noreturn] = ACTIONS(5398), + [anon_sym_mutable] = ACTIONS(5398), + [anon_sym_constinit] = ACTIONS(5398), + [anon_sym_consteval] = ACTIONS(5398), + [anon_sym_COLON] = ACTIONS(5398), + [anon_sym_QMARK] = ACTIONS(5400), + [anon_sym_LT_EQ_GT] = ACTIONS(5400), + [anon_sym_or] = ACTIONS(5398), + [anon_sym_and] = ACTIONS(5398), + [anon_sym_bitor] = ACTIONS(5398), + [anon_sym_xor] = ACTIONS(5398), + [anon_sym_bitand] = ACTIONS(5398), + [anon_sym_not_eq] = ACTIONS(5398), + [anon_sym_DASH_DASH] = ACTIONS(5400), + [anon_sym_PLUS_PLUS] = ACTIONS(5400), + [anon_sym_DOT] = ACTIONS(5398), + [anon_sym_DOT_STAR] = ACTIONS(5400), + [anon_sym_DASH_GT] = ACTIONS(5400), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5398), + [anon_sym_decltype] = ACTIONS(5398), + [anon_sym_final] = ACTIONS(5398), + [anon_sym_override] = ACTIONS(5398), + [anon_sym_virtual] = ACTIONS(5398), + [anon_sym_alignas] = ACTIONS(5398), + [anon_sym_template] = ACTIONS(5398), + [anon_sym_operator] = ACTIONS(5398), + [anon_sym_try] = ACTIONS(5398), + [anon_sym_requires] = ACTIONS(5398), + }, + [1821] = { + [sym_identifier] = ACTIONS(5402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5404), + [anon_sym_COMMA] = ACTIONS(5404), + [anon_sym_RPAREN] = ACTIONS(5404), + [anon_sym_LPAREN2] = ACTIONS(5404), + [anon_sym_TILDE] = ACTIONS(5404), + [anon_sym_DASH] = ACTIONS(5402), + [anon_sym_PLUS] = ACTIONS(5402), + [anon_sym_STAR] = ACTIONS(5404), + [anon_sym_SLASH] = ACTIONS(5402), + [anon_sym_PERCENT] = ACTIONS(5404), + [anon_sym_PIPE_PIPE] = ACTIONS(5404), + [anon_sym_AMP_AMP] = ACTIONS(5404), + [anon_sym_PIPE] = ACTIONS(5402), + [anon_sym_CARET] = ACTIONS(5404), + [anon_sym_AMP] = ACTIONS(5402), + [anon_sym_EQ_EQ] = ACTIONS(5404), + [anon_sym_BANG_EQ] = ACTIONS(5404), + [anon_sym_GT] = ACTIONS(5402), + [anon_sym_GT_EQ] = ACTIONS(5404), + [anon_sym_LT_EQ] = ACTIONS(5402), + [anon_sym_LT] = ACTIONS(5402), + [anon_sym_LT_LT] = ACTIONS(5404), + [anon_sym_GT_GT] = ACTIONS(5404), + [anon_sym_SEMI] = ACTIONS(5404), + [anon_sym___extension__] = ACTIONS(5402), + [anon_sym_extern] = ACTIONS(5402), + [anon_sym___attribute__] = ACTIONS(5402), + [anon_sym_COLON_COLON] = ACTIONS(5404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5404), + [anon_sym___declspec] = ACTIONS(5402), + [anon_sym___based] = ACTIONS(5402), + [anon_sym_LBRACE] = ACTIONS(5404), + [anon_sym_RBRACE] = ACTIONS(5404), + [anon_sym_LBRACK] = ACTIONS(5402), + [anon_sym_EQ] = ACTIONS(5402), + [anon_sym_static] = ACTIONS(5402), + [anon_sym_register] = ACTIONS(5402), + [anon_sym_inline] = ACTIONS(5402), + [anon_sym___inline] = ACTIONS(5402), + [anon_sym___inline__] = ACTIONS(5402), + [anon_sym___forceinline] = ACTIONS(5402), + [anon_sym_thread_local] = ACTIONS(5402), + [anon_sym___thread] = ACTIONS(5402), + [anon_sym_const] = ACTIONS(5402), + [anon_sym_constexpr] = ACTIONS(5402), + [anon_sym_volatile] = ACTIONS(5402), + [anon_sym_restrict] = ACTIONS(5402), + [anon_sym___restrict__] = ACTIONS(5402), + [anon_sym__Atomic] = ACTIONS(5402), + [anon_sym__Noreturn] = ACTIONS(5402), + [anon_sym_noreturn] = ACTIONS(5402), + [anon_sym_mutable] = ACTIONS(5402), + [anon_sym_constinit] = ACTIONS(5402), + [anon_sym_consteval] = ACTIONS(5402), + [anon_sym_COLON] = ACTIONS(5402), + [anon_sym_QMARK] = ACTIONS(5404), + [anon_sym_LT_EQ_GT] = ACTIONS(5404), + [anon_sym_or] = ACTIONS(5402), + [anon_sym_and] = ACTIONS(5402), + [anon_sym_bitor] = ACTIONS(5402), + [anon_sym_xor] = ACTIONS(5402), + [anon_sym_bitand] = ACTIONS(5402), + [anon_sym_not_eq] = ACTIONS(5402), + [anon_sym_DASH_DASH] = ACTIONS(5404), + [anon_sym_PLUS_PLUS] = ACTIONS(5404), + [anon_sym_DOT] = ACTIONS(5402), + [anon_sym_DOT_STAR] = ACTIONS(5404), + [anon_sym_DASH_GT] = ACTIONS(5404), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5402), + [anon_sym_decltype] = ACTIONS(5402), + [anon_sym_final] = ACTIONS(5402), + [anon_sym_override] = ACTIONS(5402), + [anon_sym_virtual] = ACTIONS(5402), + [anon_sym_alignas] = ACTIONS(5402), + [anon_sym_template] = ACTIONS(5402), + [anon_sym_operator] = ACTIONS(5402), + [anon_sym_try] = ACTIONS(5402), + [anon_sym_requires] = ACTIONS(5402), + }, + [1822] = { + [sym_identifier] = ACTIONS(5394), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5396), + [anon_sym_COMMA] = ACTIONS(5396), + [anon_sym_RPAREN] = ACTIONS(5396), + [anon_sym_LPAREN2] = ACTIONS(5396), + [anon_sym_TILDE] = ACTIONS(5396), + [anon_sym_DASH] = ACTIONS(5394), + [anon_sym_PLUS] = ACTIONS(5394), + [anon_sym_STAR] = ACTIONS(5396), + [anon_sym_SLASH] = ACTIONS(5394), + [anon_sym_PERCENT] = ACTIONS(5396), + [anon_sym_PIPE_PIPE] = ACTIONS(5396), + [anon_sym_AMP_AMP] = ACTIONS(5396), + [anon_sym_PIPE] = ACTIONS(5394), + [anon_sym_CARET] = ACTIONS(5396), + [anon_sym_AMP] = ACTIONS(5394), + [anon_sym_EQ_EQ] = ACTIONS(5396), + [anon_sym_BANG_EQ] = ACTIONS(5396), + [anon_sym_GT] = ACTIONS(5394), + [anon_sym_GT_EQ] = ACTIONS(5396), + [anon_sym_LT_EQ] = ACTIONS(5394), + [anon_sym_LT] = ACTIONS(5394), + [anon_sym_LT_LT] = ACTIONS(5396), + [anon_sym_GT_GT] = ACTIONS(5396), + [anon_sym_SEMI] = ACTIONS(5396), + [anon_sym___extension__] = ACTIONS(5394), + [anon_sym_extern] = ACTIONS(5394), + [anon_sym___attribute__] = ACTIONS(5394), + [anon_sym_COLON_COLON] = ACTIONS(5396), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5396), + [anon_sym___declspec] = ACTIONS(5394), + [anon_sym___based] = ACTIONS(5394), + [anon_sym_LBRACE] = ACTIONS(5396), + [anon_sym_RBRACE] = ACTIONS(5396), + [anon_sym_LBRACK] = ACTIONS(5394), + [anon_sym_EQ] = ACTIONS(5394), + [anon_sym_static] = ACTIONS(5394), + [anon_sym_register] = ACTIONS(5394), + [anon_sym_inline] = ACTIONS(5394), + [anon_sym___inline] = ACTIONS(5394), + [anon_sym___inline__] = ACTIONS(5394), + [anon_sym___forceinline] = ACTIONS(5394), + [anon_sym_thread_local] = ACTIONS(5394), + [anon_sym___thread] = ACTIONS(5394), + [anon_sym_const] = ACTIONS(5394), + [anon_sym_constexpr] = ACTIONS(5394), + [anon_sym_volatile] = ACTIONS(5394), + [anon_sym_restrict] = ACTIONS(5394), + [anon_sym___restrict__] = ACTIONS(5394), + [anon_sym__Atomic] = ACTIONS(5394), + [anon_sym__Noreturn] = ACTIONS(5394), + [anon_sym_noreturn] = ACTIONS(5394), + [anon_sym_mutable] = ACTIONS(5394), + [anon_sym_constinit] = ACTIONS(5394), + [anon_sym_consteval] = ACTIONS(5394), + [anon_sym_COLON] = ACTIONS(5394), + [anon_sym_QMARK] = ACTIONS(5396), + [anon_sym_LT_EQ_GT] = ACTIONS(5396), + [anon_sym_or] = ACTIONS(5394), + [anon_sym_and] = ACTIONS(5394), + [anon_sym_bitor] = ACTIONS(5394), + [anon_sym_xor] = ACTIONS(5394), + [anon_sym_bitand] = ACTIONS(5394), + [anon_sym_not_eq] = ACTIONS(5394), + [anon_sym_DASH_DASH] = ACTIONS(5396), + [anon_sym_PLUS_PLUS] = ACTIONS(5396), + [anon_sym_DOT] = ACTIONS(5394), + [anon_sym_DOT_STAR] = ACTIONS(5396), + [anon_sym_DASH_GT] = ACTIONS(5396), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5394), + [anon_sym_decltype] = ACTIONS(5394), + [anon_sym_final] = ACTIONS(5394), + [anon_sym_override] = ACTIONS(5394), + [anon_sym_virtual] = ACTIONS(5394), + [anon_sym_alignas] = ACTIONS(5394), + [anon_sym_template] = ACTIONS(5394), + [anon_sym_operator] = ACTIONS(5394), + [anon_sym_try] = ACTIONS(5394), + [anon_sym_requires] = ACTIONS(5394), + }, + [1823] = { + [sym_identifier] = ACTIONS(5417), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5419), + [anon_sym_COMMA] = ACTIONS(5419), + [anon_sym_RPAREN] = ACTIONS(5419), + [anon_sym_LPAREN2] = ACTIONS(5419), + [anon_sym_TILDE] = ACTIONS(5419), + [anon_sym_DASH] = ACTIONS(5417), + [anon_sym_PLUS] = ACTIONS(5417), + [anon_sym_STAR] = ACTIONS(5419), + [anon_sym_SLASH] = ACTIONS(5417), + [anon_sym_PERCENT] = ACTIONS(5419), + [anon_sym_PIPE_PIPE] = ACTIONS(5419), + [anon_sym_AMP_AMP] = ACTIONS(5419), + [anon_sym_PIPE] = ACTIONS(5417), + [anon_sym_CARET] = ACTIONS(5419), + [anon_sym_AMP] = ACTIONS(5417), + [anon_sym_EQ_EQ] = ACTIONS(5419), + [anon_sym_BANG_EQ] = ACTIONS(5419), + [anon_sym_GT] = ACTIONS(5417), + [anon_sym_GT_EQ] = ACTIONS(5419), + [anon_sym_LT_EQ] = ACTIONS(5417), + [anon_sym_LT] = ACTIONS(5417), + [anon_sym_LT_LT] = ACTIONS(5419), + [anon_sym_GT_GT] = ACTIONS(5419), + [anon_sym_SEMI] = ACTIONS(5419), + [anon_sym___extension__] = ACTIONS(5417), + [anon_sym_extern] = ACTIONS(5417), + [anon_sym___attribute__] = ACTIONS(5417), + [anon_sym_COLON_COLON] = ACTIONS(5419), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5419), + [anon_sym___declspec] = ACTIONS(5417), + [anon_sym___based] = ACTIONS(5417), + [anon_sym_LBRACE] = ACTIONS(5419), + [anon_sym_RBRACE] = ACTIONS(5419), + [anon_sym_LBRACK] = ACTIONS(5417), + [anon_sym_EQ] = ACTIONS(5417), + [anon_sym_static] = ACTIONS(5417), + [anon_sym_register] = ACTIONS(5417), + [anon_sym_inline] = ACTIONS(5417), + [anon_sym___inline] = ACTIONS(5417), + [anon_sym___inline__] = ACTIONS(5417), + [anon_sym___forceinline] = ACTIONS(5417), + [anon_sym_thread_local] = ACTIONS(5417), + [anon_sym___thread] = ACTIONS(5417), + [anon_sym_const] = ACTIONS(5417), + [anon_sym_constexpr] = ACTIONS(5417), + [anon_sym_volatile] = ACTIONS(5417), + [anon_sym_restrict] = ACTIONS(5417), + [anon_sym___restrict__] = ACTIONS(5417), + [anon_sym__Atomic] = ACTIONS(5417), + [anon_sym__Noreturn] = ACTIONS(5417), + [anon_sym_noreturn] = ACTIONS(5417), + [anon_sym_mutable] = ACTIONS(5417), + [anon_sym_constinit] = ACTIONS(5417), + [anon_sym_consteval] = ACTIONS(5417), + [anon_sym_COLON] = ACTIONS(5417), + [anon_sym_QMARK] = ACTIONS(5419), + [anon_sym_LT_EQ_GT] = ACTIONS(5419), + [anon_sym_or] = ACTIONS(5417), + [anon_sym_and] = ACTIONS(5417), + [anon_sym_bitor] = ACTIONS(5417), + [anon_sym_xor] = ACTIONS(5417), + [anon_sym_bitand] = ACTIONS(5417), + [anon_sym_not_eq] = ACTIONS(5417), + [anon_sym_DASH_DASH] = ACTIONS(5419), + [anon_sym_PLUS_PLUS] = ACTIONS(5419), + [anon_sym_DOT] = ACTIONS(5417), + [anon_sym_DOT_STAR] = ACTIONS(5419), + [anon_sym_DASH_GT] = ACTIONS(5419), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5417), + [anon_sym_decltype] = ACTIONS(5417), + [anon_sym_final] = ACTIONS(5417), + [anon_sym_override] = ACTIONS(5417), + [anon_sym_virtual] = ACTIONS(5417), + [anon_sym_alignas] = ACTIONS(5417), + [anon_sym_template] = ACTIONS(5417), + [anon_sym_operator] = ACTIONS(5417), + [anon_sym_try] = ACTIONS(5417), + [anon_sym_requires] = ACTIONS(5417), + }, + [1824] = { + [sym_identifier] = ACTIONS(5425), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5427), + [anon_sym_COMMA] = ACTIONS(5427), + [anon_sym_RPAREN] = ACTIONS(5427), + [anon_sym_LPAREN2] = ACTIONS(5427), + [anon_sym_TILDE] = ACTIONS(5427), + [anon_sym_DASH] = ACTIONS(5425), + [anon_sym_PLUS] = ACTIONS(5425), + [anon_sym_STAR] = ACTIONS(5427), + [anon_sym_SLASH] = ACTIONS(5425), + [anon_sym_PERCENT] = ACTIONS(5427), + [anon_sym_PIPE_PIPE] = ACTIONS(5427), + [anon_sym_AMP_AMP] = ACTIONS(5427), + [anon_sym_PIPE] = ACTIONS(5425), + [anon_sym_CARET] = ACTIONS(5427), + [anon_sym_AMP] = ACTIONS(5425), + [anon_sym_EQ_EQ] = ACTIONS(5427), + [anon_sym_BANG_EQ] = ACTIONS(5427), + [anon_sym_GT] = ACTIONS(5425), + [anon_sym_GT_EQ] = ACTIONS(5427), + [anon_sym_LT_EQ] = ACTIONS(5425), + [anon_sym_LT] = ACTIONS(5425), + [anon_sym_LT_LT] = ACTIONS(5427), + [anon_sym_GT_GT] = ACTIONS(5427), + [anon_sym_SEMI] = ACTIONS(5427), + [anon_sym___extension__] = ACTIONS(5425), + [anon_sym_extern] = ACTIONS(5425), + [anon_sym___attribute__] = ACTIONS(5425), + [anon_sym_COLON_COLON] = ACTIONS(5427), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5427), + [anon_sym___declspec] = ACTIONS(5425), + [anon_sym___based] = ACTIONS(5425), + [anon_sym_LBRACE] = ACTIONS(5427), + [anon_sym_RBRACE] = ACTIONS(5427), + [anon_sym_LBRACK] = ACTIONS(5425), + [anon_sym_EQ] = ACTIONS(5425), + [anon_sym_static] = ACTIONS(5425), + [anon_sym_register] = ACTIONS(5425), + [anon_sym_inline] = ACTIONS(5425), + [anon_sym___inline] = ACTIONS(5425), + [anon_sym___inline__] = ACTIONS(5425), + [anon_sym___forceinline] = ACTIONS(5425), + [anon_sym_thread_local] = ACTIONS(5425), + [anon_sym___thread] = ACTIONS(5425), + [anon_sym_const] = ACTIONS(5425), + [anon_sym_constexpr] = ACTIONS(5425), + [anon_sym_volatile] = ACTIONS(5425), + [anon_sym_restrict] = ACTIONS(5425), + [anon_sym___restrict__] = ACTIONS(5425), + [anon_sym__Atomic] = ACTIONS(5425), + [anon_sym__Noreturn] = ACTIONS(5425), + [anon_sym_noreturn] = ACTIONS(5425), + [anon_sym_mutable] = ACTIONS(5425), + [anon_sym_constinit] = ACTIONS(5425), + [anon_sym_consteval] = ACTIONS(5425), + [anon_sym_COLON] = ACTIONS(5425), + [anon_sym_QMARK] = ACTIONS(5427), + [anon_sym_LT_EQ_GT] = ACTIONS(5427), + [anon_sym_or] = ACTIONS(5425), + [anon_sym_and] = ACTIONS(5425), + [anon_sym_bitor] = ACTIONS(5425), + [anon_sym_xor] = ACTIONS(5425), + [anon_sym_bitand] = ACTIONS(5425), + [anon_sym_not_eq] = ACTIONS(5425), + [anon_sym_DASH_DASH] = ACTIONS(5427), + [anon_sym_PLUS_PLUS] = ACTIONS(5427), + [anon_sym_DOT] = ACTIONS(5425), + [anon_sym_DOT_STAR] = ACTIONS(5427), + [anon_sym_DASH_GT] = ACTIONS(5427), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5425), + [anon_sym_decltype] = ACTIONS(5425), + [anon_sym_final] = ACTIONS(5425), + [anon_sym_override] = ACTIONS(5425), + [anon_sym_virtual] = ACTIONS(5425), + [anon_sym_alignas] = ACTIONS(5425), + [anon_sym_template] = ACTIONS(5425), + [anon_sym_operator] = ACTIONS(5425), + [anon_sym_try] = ACTIONS(5425), + [anon_sym_requires] = ACTIONS(5425), + }, + [1825] = { + [sym_identifier] = ACTIONS(5421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5423), + [anon_sym_COMMA] = ACTIONS(5423), + [anon_sym_RPAREN] = ACTIONS(5423), + [anon_sym_LPAREN2] = ACTIONS(5423), + [anon_sym_TILDE] = ACTIONS(5423), + [anon_sym_DASH] = ACTIONS(5421), + [anon_sym_PLUS] = ACTIONS(5421), + [anon_sym_STAR] = ACTIONS(5423), + [anon_sym_SLASH] = ACTIONS(5421), + [anon_sym_PERCENT] = ACTIONS(5423), + [anon_sym_PIPE_PIPE] = ACTIONS(5423), + [anon_sym_AMP_AMP] = ACTIONS(5423), + [anon_sym_PIPE] = ACTIONS(5421), + [anon_sym_CARET] = ACTIONS(5423), + [anon_sym_AMP] = ACTIONS(5421), + [anon_sym_EQ_EQ] = ACTIONS(5423), + [anon_sym_BANG_EQ] = ACTIONS(5423), + [anon_sym_GT] = ACTIONS(5421), + [anon_sym_GT_EQ] = ACTIONS(5423), + [anon_sym_LT_EQ] = ACTIONS(5421), + [anon_sym_LT] = ACTIONS(5421), + [anon_sym_LT_LT] = ACTIONS(5423), + [anon_sym_GT_GT] = ACTIONS(5423), + [anon_sym_SEMI] = ACTIONS(5423), + [anon_sym___extension__] = ACTIONS(5421), + [anon_sym_extern] = ACTIONS(5421), + [anon_sym___attribute__] = ACTIONS(5421), + [anon_sym_COLON_COLON] = ACTIONS(5423), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5423), + [anon_sym___declspec] = ACTIONS(5421), + [anon_sym___based] = ACTIONS(5421), + [anon_sym_LBRACE] = ACTIONS(5423), + [anon_sym_RBRACE] = ACTIONS(5423), + [anon_sym_LBRACK] = ACTIONS(5421), + [anon_sym_EQ] = ACTIONS(5421), + [anon_sym_static] = ACTIONS(5421), + [anon_sym_register] = ACTIONS(5421), + [anon_sym_inline] = ACTIONS(5421), + [anon_sym___inline] = ACTIONS(5421), + [anon_sym___inline__] = ACTIONS(5421), + [anon_sym___forceinline] = ACTIONS(5421), + [anon_sym_thread_local] = ACTIONS(5421), + [anon_sym___thread] = ACTIONS(5421), + [anon_sym_const] = ACTIONS(5421), + [anon_sym_constexpr] = ACTIONS(5421), + [anon_sym_volatile] = ACTIONS(5421), + [anon_sym_restrict] = ACTIONS(5421), + [anon_sym___restrict__] = ACTIONS(5421), + [anon_sym__Atomic] = ACTIONS(5421), + [anon_sym__Noreturn] = ACTIONS(5421), + [anon_sym_noreturn] = ACTIONS(5421), + [anon_sym_mutable] = ACTIONS(5421), + [anon_sym_constinit] = ACTIONS(5421), + [anon_sym_consteval] = ACTIONS(5421), + [anon_sym_COLON] = ACTIONS(5421), + [anon_sym_QMARK] = ACTIONS(5423), + [anon_sym_LT_EQ_GT] = ACTIONS(5423), + [anon_sym_or] = ACTIONS(5421), + [anon_sym_and] = ACTIONS(5421), + [anon_sym_bitor] = ACTIONS(5421), + [anon_sym_xor] = ACTIONS(5421), + [anon_sym_bitand] = ACTIONS(5421), + [anon_sym_not_eq] = ACTIONS(5421), + [anon_sym_DASH_DASH] = ACTIONS(5423), + [anon_sym_PLUS_PLUS] = ACTIONS(5423), + [anon_sym_DOT] = ACTIONS(5421), + [anon_sym_DOT_STAR] = ACTIONS(5423), + [anon_sym_DASH_GT] = ACTIONS(5423), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5421), + [anon_sym_decltype] = ACTIONS(5421), + [anon_sym_final] = ACTIONS(5421), + [anon_sym_override] = ACTIONS(5421), + [anon_sym_virtual] = ACTIONS(5421), + [anon_sym_alignas] = ACTIONS(5421), + [anon_sym_template] = ACTIONS(5421), + [anon_sym_operator] = ACTIONS(5421), + [anon_sym_try] = ACTIONS(5421), + [anon_sym_requires] = ACTIONS(5421), + }, + [1826] = { + [sym_identifier] = ACTIONS(5429), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5431), + [anon_sym_COMMA] = ACTIONS(5431), + [anon_sym_RPAREN] = ACTIONS(5431), + [anon_sym_LPAREN2] = ACTIONS(5431), + [anon_sym_TILDE] = ACTIONS(5431), + [anon_sym_DASH] = ACTIONS(5429), + [anon_sym_PLUS] = ACTIONS(5429), + [anon_sym_STAR] = ACTIONS(5431), + [anon_sym_SLASH] = ACTIONS(5429), + [anon_sym_PERCENT] = ACTIONS(5431), + [anon_sym_PIPE_PIPE] = ACTIONS(5431), + [anon_sym_AMP_AMP] = ACTIONS(5431), + [anon_sym_PIPE] = ACTIONS(5429), + [anon_sym_CARET] = ACTIONS(5431), + [anon_sym_AMP] = ACTIONS(5429), + [anon_sym_EQ_EQ] = ACTIONS(5431), + [anon_sym_BANG_EQ] = ACTIONS(5431), + [anon_sym_GT] = ACTIONS(5429), + [anon_sym_GT_EQ] = ACTIONS(5431), + [anon_sym_LT_EQ] = ACTIONS(5429), + [anon_sym_LT] = ACTIONS(5429), + [anon_sym_LT_LT] = ACTIONS(5431), + [anon_sym_GT_GT] = ACTIONS(5431), + [anon_sym_SEMI] = ACTIONS(5431), + [anon_sym___extension__] = ACTIONS(5429), + [anon_sym_extern] = ACTIONS(5429), + [anon_sym___attribute__] = ACTIONS(5429), + [anon_sym_COLON_COLON] = ACTIONS(5431), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5431), + [anon_sym___declspec] = ACTIONS(5429), + [anon_sym___based] = ACTIONS(5429), + [anon_sym_LBRACE] = ACTIONS(5431), + [anon_sym_RBRACE] = ACTIONS(5431), + [anon_sym_LBRACK] = ACTIONS(5429), + [anon_sym_EQ] = ACTIONS(5429), + [anon_sym_static] = ACTIONS(5429), + [anon_sym_register] = ACTIONS(5429), + [anon_sym_inline] = ACTIONS(5429), + [anon_sym___inline] = ACTIONS(5429), + [anon_sym___inline__] = ACTIONS(5429), + [anon_sym___forceinline] = ACTIONS(5429), + [anon_sym_thread_local] = ACTIONS(5429), + [anon_sym___thread] = ACTIONS(5429), + [anon_sym_const] = ACTIONS(5429), + [anon_sym_constexpr] = ACTIONS(5429), + [anon_sym_volatile] = ACTIONS(5429), + [anon_sym_restrict] = ACTIONS(5429), + [anon_sym___restrict__] = ACTIONS(5429), + [anon_sym__Atomic] = ACTIONS(5429), + [anon_sym__Noreturn] = ACTIONS(5429), + [anon_sym_noreturn] = ACTIONS(5429), + [anon_sym_mutable] = ACTIONS(5429), + [anon_sym_constinit] = ACTIONS(5429), + [anon_sym_consteval] = ACTIONS(5429), + [anon_sym_COLON] = ACTIONS(5429), + [anon_sym_QMARK] = ACTIONS(5431), + [anon_sym_LT_EQ_GT] = ACTIONS(5431), + [anon_sym_or] = ACTIONS(5429), + [anon_sym_and] = ACTIONS(5429), + [anon_sym_bitor] = ACTIONS(5429), + [anon_sym_xor] = ACTIONS(5429), + [anon_sym_bitand] = ACTIONS(5429), + [anon_sym_not_eq] = ACTIONS(5429), + [anon_sym_DASH_DASH] = ACTIONS(5431), + [anon_sym_PLUS_PLUS] = ACTIONS(5431), + [anon_sym_DOT] = ACTIONS(5429), + [anon_sym_DOT_STAR] = ACTIONS(5431), + [anon_sym_DASH_GT] = ACTIONS(5431), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5429), + [anon_sym_decltype] = ACTIONS(5429), + [anon_sym_final] = ACTIONS(5429), + [anon_sym_override] = ACTIONS(5429), + [anon_sym_virtual] = ACTIONS(5429), + [anon_sym_alignas] = ACTIONS(5429), + [anon_sym_template] = ACTIONS(5429), + [anon_sym_operator] = ACTIONS(5429), + [anon_sym_try] = ACTIONS(5429), + [anon_sym_requires] = ACTIONS(5429), + }, + [1827] = { + [sym_function_definition] = STATE(876), + [sym_declaration] = STATE(876), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5909), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_call_modifier] = STATE(2182), + [sym_declaration_list] = STATE(876), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(3324), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7571), + [sym_qualified_type_identifier] = STATE(4526), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5478), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___cdecl] = ACTIONS(53), [anon_sym___clrcall] = ACTIONS(53), @@ -288367,7 +275202,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(53), [anon_sym___thiscall] = ACTIONS(53), [anon_sym___vectorcall] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(5560), + [anon_sym_LBRACE] = ACTIONS(5480), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), @@ -288391,7 +275226,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), + [sym_primitive_type] = ACTIONS(3267), [anon_sym_enum] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), [anon_sym_struct] = ACTIONS(73), @@ -288402,44 +275237,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), }, - [1853] = { - [sym_function_definition] = STATE(350), - [sym_declaration] = STATE(350), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6397), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_call_modifier] = STATE(2100), - [sym_declaration_list] = STATE(350), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4853), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(4837), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5548), + [1828] = { + [sym_function_definition] = STATE(542), + [sym_declaration] = STATE(542), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5894), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_call_modifier] = STATE(2224), + [sym_declaration_list] = STATE(542), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(3324), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7571), + [sym_qualified_type_identifier] = STATE(4526), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5478), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___cdecl] = ACTIONS(53), [anon_sym___clrcall] = ACTIONS(53), @@ -288447,7 +275282,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(53), [anon_sym___thiscall] = ACTIONS(53), [anon_sym___vectorcall] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(5562), + [anon_sym_LBRACE] = ACTIONS(5482), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), @@ -288471,7 +275306,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), + [sym_primitive_type] = ACTIONS(3267), [anon_sym_enum] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), [anon_sym_struct] = ACTIONS(73), @@ -288482,44 +275317,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), }, - [1854] = { - [sym_function_definition] = STATE(787), - [sym_declaration] = STATE(787), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6394), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_call_modifier] = STATE(2098), - [sym_declaration_list] = STATE(787), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4853), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(4837), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5548), + [1829] = { + [sym_function_definition] = STATE(445), + [sym_declaration] = STATE(445), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5889), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_call_modifier] = STATE(2223), + [sym_declaration_list] = STATE(445), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(3324), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7571), + [sym_qualified_type_identifier] = STATE(4526), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5478), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___cdecl] = ACTIONS(53), [anon_sym___clrcall] = ACTIONS(53), @@ -288527,7 +275362,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(53), [anon_sym___thiscall] = ACTIONS(53), [anon_sym___vectorcall] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(5564), + [anon_sym_LBRACE] = ACTIONS(5484), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), @@ -288551,7 +275386,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), + [sym_primitive_type] = ACTIONS(3267), [anon_sym_enum] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), [anon_sym_struct] = ACTIONS(73), @@ -288562,44 +275397,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), }, - [1855] = { - [sym_function_definition] = STATE(754), - [sym_declaration] = STATE(754), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6403), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_call_modifier] = STATE(2102), - [sym_declaration_list] = STATE(754), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4853), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(4837), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5548), + [1830] = { + [sym_function_definition] = STATE(739), + [sym_declaration] = STATE(739), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5929), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_call_modifier] = STATE(2225), + [sym_declaration_list] = STATE(739), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(3324), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7571), + [sym_qualified_type_identifier] = STATE(4526), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5478), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___cdecl] = ACTIONS(53), [anon_sym___clrcall] = ACTIONS(53), @@ -288607,7 +275442,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(53), [anon_sym___thiscall] = ACTIONS(53), [anon_sym___vectorcall] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(5566), + [anon_sym_LBRACE] = ACTIONS(5486), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), @@ -288631,7 +275466,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), + [sym_primitive_type] = ACTIONS(3267), [anon_sym_enum] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), [anon_sym_struct] = ACTIONS(73), @@ -288642,44 +275477,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), }, - [1856] = { - [sym_function_definition] = STATE(527), - [sym_declaration] = STATE(527), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6402), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_call_modifier] = STATE(2101), - [sym_declaration_list] = STATE(527), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4853), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(4837), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5548), + [1831] = { + [sym_function_definition] = STATE(770), + [sym_declaration] = STATE(770), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5871), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_call_modifier] = STATE(2222), + [sym_declaration_list] = STATE(770), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(3324), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7571), + [sym_qualified_type_identifier] = STATE(4526), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5478), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___cdecl] = ACTIONS(53), [anon_sym___clrcall] = ACTIONS(53), @@ -288687,7 +275522,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(53), [anon_sym___thiscall] = ACTIONS(53), [anon_sym___vectorcall] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(5568), + [anon_sym_LBRACE] = ACTIONS(5488), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), @@ -288711,7 +275546,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), + [sym_primitive_type] = ACTIONS(3267), [anon_sym_enum] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), [anon_sym_struct] = ACTIONS(73), @@ -288722,44 +275557,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), }, - [1857] = { - [sym_function_definition] = STATE(2271), - [sym_declaration] = STATE(2271), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6404), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_call_modifier] = STATE(2103), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(10149), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(5462), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(5450), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5570), + [1832] = { + [sym_function_definition] = STATE(2147), + [sym_declaration] = STATE(2147), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5907), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_call_modifier] = STATE(2228), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(9763), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4947), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7571), + [sym_qualified_type_identifier] = STATE(4948), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5490), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___cdecl] = ACTIONS(53), [anon_sym___clrcall] = ACTIONS(53), @@ -288790,55 +275625,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), + [sym_primitive_type] = ACTIONS(3267), [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(5572), - [anon_sym_struct] = ACTIONS(5574), - [anon_sym_union] = ACTIONS(5576), + [anon_sym_class] = ACTIONS(5492), + [anon_sym_struct] = ACTIONS(5494), + [anon_sym_union] = ACTIONS(5496), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), }, - [1858] = { - [sym_function_definition] = STATE(833), - [sym_declaration] = STATE(833), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6398), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_call_modifier] = STATE(2086), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(10466), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(5462), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(5450), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5570), + [1833] = { + [sym_identifier] = ACTIONS(5433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5438), + [anon_sym_COMMA] = ACTIONS(5438), + [anon_sym_RPAREN] = ACTIONS(5438), + [anon_sym_LPAREN2] = ACTIONS(5438), + [anon_sym_TILDE] = ACTIONS(5438), + [anon_sym_STAR] = ACTIONS(5438), + [anon_sym_PIPE_PIPE] = ACTIONS(5438), + [anon_sym_AMP_AMP] = ACTIONS(5438), + [anon_sym_AMP] = ACTIONS(5433), + [anon_sym_SEMI] = ACTIONS(5438), + [anon_sym___extension__] = ACTIONS(5433), + [anon_sym_extern] = ACTIONS(5433), + [anon_sym___attribute__] = ACTIONS(5433), + [anon_sym_COLON_COLON] = ACTIONS(5438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5438), + [anon_sym___declspec] = ACTIONS(5433), + [anon_sym___based] = ACTIONS(5433), + [anon_sym___cdecl] = ACTIONS(5433), + [anon_sym___clrcall] = ACTIONS(5433), + [anon_sym___stdcall] = ACTIONS(5433), + [anon_sym___fastcall] = ACTIONS(5433), + [anon_sym___thiscall] = ACTIONS(5433), + [anon_sym___vectorcall] = ACTIONS(5433), + [anon_sym_LBRACE] = ACTIONS(5438), + [anon_sym_signed] = ACTIONS(5433), + [anon_sym_unsigned] = ACTIONS(5433), + [anon_sym_long] = ACTIONS(5433), + [anon_sym_short] = ACTIONS(5433), + [anon_sym_LBRACK] = ACTIONS(5433), + [anon_sym_EQ] = ACTIONS(5438), + [anon_sym_static] = ACTIONS(5433), + [anon_sym_register] = ACTIONS(5433), + [anon_sym_inline] = ACTIONS(5433), + [anon_sym___inline] = ACTIONS(5433), + [anon_sym___inline__] = ACTIONS(5433), + [anon_sym___forceinline] = ACTIONS(5433), + [anon_sym_thread_local] = ACTIONS(5433), + [anon_sym___thread] = ACTIONS(5433), + [anon_sym_const] = ACTIONS(5433), + [anon_sym_constexpr] = ACTIONS(5433), + [anon_sym_volatile] = ACTIONS(5433), + [anon_sym_restrict] = ACTIONS(5433), + [anon_sym___restrict__] = ACTIONS(5433), + [anon_sym__Atomic] = ACTIONS(5433), + [anon_sym__Noreturn] = ACTIONS(5433), + [anon_sym_noreturn] = ACTIONS(5433), + [anon_sym_mutable] = ACTIONS(5433), + [anon_sym_constinit] = ACTIONS(5433), + [anon_sym_consteval] = ACTIONS(5433), + [sym_primitive_type] = ACTIONS(5433), + [anon_sym_enum] = ACTIONS(5433), + [anon_sym_class] = ACTIONS(5433), + [anon_sym_struct] = ACTIONS(5433), + [anon_sym_union] = ACTIONS(5433), + [anon_sym_COLON] = ACTIONS(5433), + [anon_sym_or] = ACTIONS(5433), + [anon_sym_and] = ACTIONS(5433), + [anon_sym_asm] = ACTIONS(5433), + [anon_sym___asm__] = ACTIONS(5433), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5433), + [anon_sym_decltype] = ACTIONS(5433), + [anon_sym_final] = ACTIONS(5433), + [anon_sym_override] = ACTIONS(5433), + [anon_sym_virtual] = ACTIONS(5433), + [anon_sym_alignas] = ACTIONS(5433), + [anon_sym_explicit] = ACTIONS(5433), + [anon_sym_typename] = ACTIONS(5433), + [anon_sym_template] = ACTIONS(5433), + [anon_sym_GT2] = ACTIONS(5438), + [anon_sym_operator] = ACTIONS(5433), + [anon_sym_try] = ACTIONS(5433), + [anon_sym_friend] = ACTIONS(5433), + [anon_sym_using] = ACTIONS(5433), + [anon_sym_concept] = ACTIONS(5433), + [anon_sym_requires] = ACTIONS(5433), + }, + [1834] = { + [sym_function_definition] = STATE(449), + [sym_declaration] = STATE(449), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5889), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_call_modifier] = STATE(2223), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(9705), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4947), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7571), + [sym_qualified_type_identifier] = STATE(4948), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5490), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___cdecl] = ACTIONS(53), [anon_sym___clrcall] = ACTIONS(53), @@ -288869,55 +275783,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), + [sym_primitive_type] = ACTIONS(3267), [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(5578), - [anon_sym_struct] = ACTIONS(5580), - [anon_sym_union] = ACTIONS(5582), + [anon_sym_class] = ACTIONS(5498), + [anon_sym_struct] = ACTIONS(5500), + [anon_sym_union] = ACTIONS(5502), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), }, - [1859] = { - [sym_function_definition] = STATE(771), - [sym_declaration] = STATE(771), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6394), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_call_modifier] = STATE(2098), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(10509), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(5462), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(5450), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5570), + [1835] = { + [sym_function_definition] = STATE(2255), + [sym_declaration] = STATE(2255), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5908), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_call_modifier] = STATE(2229), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(9689), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4947), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7571), + [sym_qualified_type_identifier] = STATE(4948), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5490), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___cdecl] = ACTIONS(53), [anon_sym___clrcall] = ACTIONS(53), @@ -288948,213 +275862,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), + [sym_primitive_type] = ACTIONS(3267), [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(5584), - [anon_sym_struct] = ACTIONS(5586), - [anon_sym_union] = ACTIONS(5588), + [anon_sym_class] = ACTIONS(5504), + [anon_sym_struct] = ACTIONS(5506), + [anon_sym_union] = ACTIONS(5508), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - }, - [1860] = { - [sym_identifier] = ACTIONS(5481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5483), - [anon_sym_COMMA] = ACTIONS(5483), - [anon_sym_RPAREN] = ACTIONS(5483), - [anon_sym_LPAREN2] = ACTIONS(5483), - [anon_sym_TILDE] = ACTIONS(5483), - [anon_sym_DASH] = ACTIONS(5481), - [anon_sym_PLUS] = ACTIONS(5481), - [anon_sym_STAR] = ACTIONS(5483), - [anon_sym_SLASH] = ACTIONS(5481), - [anon_sym_PERCENT] = ACTIONS(5483), - [anon_sym_PIPE_PIPE] = ACTIONS(5483), - [anon_sym_AMP_AMP] = ACTIONS(5483), - [anon_sym_PIPE] = ACTIONS(5481), - [anon_sym_CARET] = ACTIONS(5483), - [anon_sym_AMP] = ACTIONS(5481), - [anon_sym_EQ_EQ] = ACTIONS(5483), - [anon_sym_BANG_EQ] = ACTIONS(5483), - [anon_sym_GT] = ACTIONS(5481), - [anon_sym_GT_EQ] = ACTIONS(5483), - [anon_sym_LT_EQ] = ACTIONS(5481), - [anon_sym_LT] = ACTIONS(5481), - [anon_sym_LT_LT] = ACTIONS(5483), - [anon_sym_GT_GT] = ACTIONS(5483), - [anon_sym_SEMI] = ACTIONS(5483), - [anon_sym___extension__] = ACTIONS(5481), - [anon_sym_extern] = ACTIONS(5481), - [anon_sym___attribute__] = ACTIONS(5481), - [anon_sym_COLON_COLON] = ACTIONS(5483), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5483), - [anon_sym___declspec] = ACTIONS(5481), - [anon_sym___based] = ACTIONS(5481), - [anon_sym_LBRACE] = ACTIONS(5483), - [anon_sym_RBRACE] = ACTIONS(5483), - [anon_sym_LBRACK] = ACTIONS(5481), - [anon_sym_EQ] = ACTIONS(5481), - [anon_sym_static] = ACTIONS(5481), - [anon_sym_register] = ACTIONS(5481), - [anon_sym_inline] = ACTIONS(5481), - [anon_sym___inline] = ACTIONS(5481), - [anon_sym___inline__] = ACTIONS(5481), - [anon_sym___forceinline] = ACTIONS(5481), - [anon_sym_thread_local] = ACTIONS(5481), - [anon_sym___thread] = ACTIONS(5481), - [anon_sym_const] = ACTIONS(5481), - [anon_sym_constexpr] = ACTIONS(5481), - [anon_sym_volatile] = ACTIONS(5481), - [anon_sym_restrict] = ACTIONS(5481), - [anon_sym___restrict__] = ACTIONS(5481), - [anon_sym__Atomic] = ACTIONS(5481), - [anon_sym__Noreturn] = ACTIONS(5481), - [anon_sym_noreturn] = ACTIONS(5481), - [anon_sym_mutable] = ACTIONS(5481), - [anon_sym_constinit] = ACTIONS(5481), - [anon_sym_consteval] = ACTIONS(5481), - [anon_sym_COLON] = ACTIONS(5481), - [anon_sym_QMARK] = ACTIONS(5483), - [anon_sym_LT_EQ_GT] = ACTIONS(5483), - [anon_sym_or] = ACTIONS(5481), - [anon_sym_and] = ACTIONS(5481), - [anon_sym_bitor] = ACTIONS(5481), - [anon_sym_xor] = ACTIONS(5481), - [anon_sym_bitand] = ACTIONS(5481), - [anon_sym_not_eq] = ACTIONS(5481), - [anon_sym_DASH_DASH] = ACTIONS(5483), - [anon_sym_PLUS_PLUS] = ACTIONS(5483), - [anon_sym_DOT] = ACTIONS(5481), - [anon_sym_DOT_STAR] = ACTIONS(5483), - [anon_sym_DASH_GT] = ACTIONS(5483), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5481), - [anon_sym_decltype] = ACTIONS(5481), - [anon_sym_virtual] = ACTIONS(5481), - [anon_sym_alignas] = ACTIONS(5481), - [anon_sym_template] = ACTIONS(5481), - [anon_sym_operator] = ACTIONS(5481), - [anon_sym_try] = ACTIONS(5481), + [anon_sym_template] = ACTIONS(1534), }, - [1861] = { - [sym_identifier] = ACTIONS(5500), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5502), - [anon_sym_COMMA] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(5502), - [anon_sym_LPAREN2] = ACTIONS(5502), - [anon_sym_TILDE] = ACTIONS(5502), - [anon_sym_DASH] = ACTIONS(5500), - [anon_sym_PLUS] = ACTIONS(5500), - [anon_sym_STAR] = ACTIONS(5502), - [anon_sym_SLASH] = ACTIONS(5500), - [anon_sym_PERCENT] = ACTIONS(5502), - [anon_sym_PIPE_PIPE] = ACTIONS(5502), - [anon_sym_AMP_AMP] = ACTIONS(5502), - [anon_sym_PIPE] = ACTIONS(5500), - [anon_sym_CARET] = ACTIONS(5502), - [anon_sym_AMP] = ACTIONS(5500), - [anon_sym_EQ_EQ] = ACTIONS(5502), - [anon_sym_BANG_EQ] = ACTIONS(5502), - [anon_sym_GT] = ACTIONS(5500), - [anon_sym_GT_EQ] = ACTIONS(5502), - [anon_sym_LT_EQ] = ACTIONS(5500), - [anon_sym_LT] = ACTIONS(5500), - [anon_sym_LT_LT] = ACTIONS(5502), - [anon_sym_GT_GT] = ACTIONS(5502), - [anon_sym_SEMI] = ACTIONS(5502), - [anon_sym___extension__] = ACTIONS(5500), - [anon_sym_extern] = ACTIONS(5500), - [anon_sym___attribute__] = ACTIONS(5500), - [anon_sym_COLON_COLON] = ACTIONS(5502), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5502), - [anon_sym___declspec] = ACTIONS(5500), - [anon_sym___based] = ACTIONS(5500), - [anon_sym_LBRACE] = ACTIONS(5502), - [anon_sym_RBRACE] = ACTIONS(5502), - [anon_sym_LBRACK] = ACTIONS(5500), - [anon_sym_EQ] = ACTIONS(5500), - [anon_sym_static] = ACTIONS(5500), - [anon_sym_register] = ACTIONS(5500), - [anon_sym_inline] = ACTIONS(5500), - [anon_sym___inline] = ACTIONS(5500), - [anon_sym___inline__] = ACTIONS(5500), - [anon_sym___forceinline] = ACTIONS(5500), - [anon_sym_thread_local] = ACTIONS(5500), - [anon_sym___thread] = ACTIONS(5500), - [anon_sym_const] = ACTIONS(5500), - [anon_sym_constexpr] = ACTIONS(5500), - [anon_sym_volatile] = ACTIONS(5500), - [anon_sym_restrict] = ACTIONS(5500), - [anon_sym___restrict__] = ACTIONS(5500), - [anon_sym__Atomic] = ACTIONS(5500), - [anon_sym__Noreturn] = ACTIONS(5500), - [anon_sym_noreturn] = ACTIONS(5500), - [anon_sym_mutable] = ACTIONS(5500), - [anon_sym_constinit] = ACTIONS(5500), - [anon_sym_consteval] = ACTIONS(5500), - [anon_sym_COLON] = ACTIONS(5500), - [anon_sym_QMARK] = ACTIONS(5502), - [anon_sym_LT_EQ_GT] = ACTIONS(5502), - [anon_sym_or] = ACTIONS(5500), - [anon_sym_and] = ACTIONS(5500), - [anon_sym_bitor] = ACTIONS(5500), - [anon_sym_xor] = ACTIONS(5500), - [anon_sym_bitand] = ACTIONS(5500), - [anon_sym_not_eq] = ACTIONS(5500), - [anon_sym_DASH_DASH] = ACTIONS(5502), - [anon_sym_PLUS_PLUS] = ACTIONS(5502), - [anon_sym_DOT] = ACTIONS(5500), - [anon_sym_DOT_STAR] = ACTIONS(5502), - [anon_sym_DASH_GT] = ACTIONS(5502), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5500), - [anon_sym_decltype] = ACTIONS(5500), - [anon_sym_virtual] = ACTIONS(5500), - [anon_sym_alignas] = ACTIONS(5500), - [anon_sym_template] = ACTIONS(5500), - [anon_sym_operator] = ACTIONS(5500), - [anon_sym_try] = ACTIONS(5500), - }, - [1862] = { - [sym_function_definition] = STATE(419), - [sym_declaration] = STATE(419), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6397), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_call_modifier] = STATE(2100), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(10392), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(5462), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(5450), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5570), + [1836] = { + [sym_function_definition] = STATE(703), + [sym_declaration] = STATE(703), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5871), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_call_modifier] = STATE(2222), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(9834), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4947), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7571), + [sym_qualified_type_identifier] = STATE(4948), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5490), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___cdecl] = ACTIONS(53), [anon_sym___clrcall] = ACTIONS(53), @@ -289185,134 +275941,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), + [sym_primitive_type] = ACTIONS(3267), [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(5590), - [anon_sym_struct] = ACTIONS(5592), - [anon_sym_union] = ACTIONS(5594), + [anon_sym_class] = ACTIONS(5510), + [anon_sym_struct] = ACTIONS(5512), + [anon_sym_union] = ACTIONS(5514), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - }, - [1863] = { - [sym_identifier] = ACTIONS(5496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5498), - [anon_sym_COMMA] = ACTIONS(5498), - [anon_sym_RPAREN] = ACTIONS(5498), - [anon_sym_LPAREN2] = ACTIONS(5498), - [anon_sym_TILDE] = ACTIONS(5498), - [anon_sym_DASH] = ACTIONS(5496), - [anon_sym_PLUS] = ACTIONS(5496), - [anon_sym_STAR] = ACTIONS(5498), - [anon_sym_SLASH] = ACTIONS(5496), - [anon_sym_PERCENT] = ACTIONS(5498), - [anon_sym_PIPE_PIPE] = ACTIONS(5498), - [anon_sym_AMP_AMP] = ACTIONS(5498), - [anon_sym_PIPE] = ACTIONS(5496), - [anon_sym_CARET] = ACTIONS(5498), - [anon_sym_AMP] = ACTIONS(5496), - [anon_sym_EQ_EQ] = ACTIONS(5498), - [anon_sym_BANG_EQ] = ACTIONS(5498), - [anon_sym_GT] = ACTIONS(5496), - [anon_sym_GT_EQ] = ACTIONS(5498), - [anon_sym_LT_EQ] = ACTIONS(5496), - [anon_sym_LT] = ACTIONS(5496), - [anon_sym_LT_LT] = ACTIONS(5498), - [anon_sym_GT_GT] = ACTIONS(5498), - [anon_sym_SEMI] = ACTIONS(5498), - [anon_sym___extension__] = ACTIONS(5496), - [anon_sym_extern] = ACTIONS(5496), - [anon_sym___attribute__] = ACTIONS(5496), - [anon_sym_COLON_COLON] = ACTIONS(5498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5498), - [anon_sym___declspec] = ACTIONS(5496), - [anon_sym___based] = ACTIONS(5496), - [anon_sym_LBRACE] = ACTIONS(5498), - [anon_sym_RBRACE] = ACTIONS(5498), - [anon_sym_LBRACK] = ACTIONS(5496), - [anon_sym_EQ] = ACTIONS(5496), - [anon_sym_static] = ACTIONS(5496), - [anon_sym_register] = ACTIONS(5496), - [anon_sym_inline] = ACTIONS(5496), - [anon_sym___inline] = ACTIONS(5496), - [anon_sym___inline__] = ACTIONS(5496), - [anon_sym___forceinline] = ACTIONS(5496), - [anon_sym_thread_local] = ACTIONS(5496), - [anon_sym___thread] = ACTIONS(5496), - [anon_sym_const] = ACTIONS(5496), - [anon_sym_constexpr] = ACTIONS(5496), - [anon_sym_volatile] = ACTIONS(5496), - [anon_sym_restrict] = ACTIONS(5496), - [anon_sym___restrict__] = ACTIONS(5496), - [anon_sym__Atomic] = ACTIONS(5496), - [anon_sym__Noreturn] = ACTIONS(5496), - [anon_sym_noreturn] = ACTIONS(5496), - [anon_sym_mutable] = ACTIONS(5496), - [anon_sym_constinit] = ACTIONS(5496), - [anon_sym_consteval] = ACTIONS(5496), - [anon_sym_COLON] = ACTIONS(5496), - [anon_sym_QMARK] = ACTIONS(5498), - [anon_sym_LT_EQ_GT] = ACTIONS(5498), - [anon_sym_or] = ACTIONS(5496), - [anon_sym_and] = ACTIONS(5496), - [anon_sym_bitor] = ACTIONS(5496), - [anon_sym_xor] = ACTIONS(5496), - [anon_sym_bitand] = ACTIONS(5496), - [anon_sym_not_eq] = ACTIONS(5496), - [anon_sym_DASH_DASH] = ACTIONS(5498), - [anon_sym_PLUS_PLUS] = ACTIONS(5498), - [anon_sym_DOT] = ACTIONS(5496), - [anon_sym_DOT_STAR] = ACTIONS(5498), - [anon_sym_DASH_GT] = ACTIONS(5498), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5496), - [anon_sym_decltype] = ACTIONS(5496), - [anon_sym_virtual] = ACTIONS(5496), - [anon_sym_alignas] = ACTIONS(5496), - [anon_sym_template] = ACTIONS(5496), - [anon_sym_operator] = ACTIONS(5496), - [anon_sym_try] = ACTIONS(5496), + [anon_sym_template] = ACTIONS(1534), }, - [1864] = { - [sym_function_definition] = STATE(2045), - [sym_declaration] = STATE(2045), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6405), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_call_modifier] = STATE(2104), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(10202), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(5462), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(5450), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5570), + [1837] = { + [sym_function_definition] = STATE(2000), + [sym_declaration] = STATE(2000), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5903), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_call_modifier] = STATE(2227), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(9634), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4947), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7571), + [sym_qualified_type_identifier] = STATE(4948), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5490), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___cdecl] = ACTIONS(53), [anon_sym___clrcall] = ACTIONS(53), @@ -289343,55 +276020,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), + [sym_primitive_type] = ACTIONS(3267), [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(5596), - [anon_sym_struct] = ACTIONS(5598), - [anon_sym_union] = ACTIONS(5600), + [anon_sym_class] = ACTIONS(5516), + [anon_sym_struct] = ACTIONS(5518), + [anon_sym_union] = ACTIONS(5520), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), }, - [1865] = { - [sym_function_definition] = STATE(502), - [sym_declaration] = STATE(502), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6402), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_call_modifier] = STATE(2101), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9952), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(5462), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(5450), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5570), + [1838] = { + [sym_function_definition] = STATE(890), + [sym_declaration] = STATE(890), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5909), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_call_modifier] = STATE(2182), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(9206), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4947), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7571), + [sym_qualified_type_identifier] = STATE(4948), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5490), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___cdecl] = ACTIONS(53), [anon_sym___clrcall] = ACTIONS(53), @@ -289422,55 +276099,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), + [sym_primitive_type] = ACTIONS(3267), [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(5602), - [anon_sym_struct] = ACTIONS(5604), - [anon_sym_union] = ACTIONS(5606), + [anon_sym_class] = ACTIONS(5522), + [anon_sym_struct] = ACTIONS(5524), + [anon_sym_union] = ACTIONS(5526), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), }, - [1866] = { - [sym_function_definition] = STATE(691), - [sym_declaration] = STATE(691), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6403), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_call_modifier] = STATE(2102), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(10455), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(5462), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(5450), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5570), + [1839] = { + [sym_function_definition] = STATE(711), + [sym_declaration] = STATE(711), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5929), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_call_modifier] = STATE(2225), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(9510), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4947), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7571), + [sym_qualified_type_identifier] = STATE(4948), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5490), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___cdecl] = ACTIONS(53), [anon_sym___clrcall] = ACTIONS(53), @@ -289501,134 +276178,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), + [sym_primitive_type] = ACTIONS(3267), [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(5608), - [anon_sym_struct] = ACTIONS(5610), - [anon_sym_union] = ACTIONS(5612), + [anon_sym_class] = ACTIONS(5528), + [anon_sym_struct] = ACTIONS(5530), + [anon_sym_union] = ACTIONS(5532), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - }, - [1867] = { - [sym_identifier] = ACTIONS(5477), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5479), - [anon_sym_COMMA] = ACTIONS(5479), - [anon_sym_RPAREN] = ACTIONS(5479), - [anon_sym_LPAREN2] = ACTIONS(5479), - [anon_sym_TILDE] = ACTIONS(5479), - [anon_sym_DASH] = ACTIONS(5477), - [anon_sym_PLUS] = ACTIONS(5477), - [anon_sym_STAR] = ACTIONS(5479), - [anon_sym_SLASH] = ACTIONS(5477), - [anon_sym_PERCENT] = ACTIONS(5479), - [anon_sym_PIPE_PIPE] = ACTIONS(5479), - [anon_sym_AMP_AMP] = ACTIONS(5479), - [anon_sym_PIPE] = ACTIONS(5477), - [anon_sym_CARET] = ACTIONS(5479), - [anon_sym_AMP] = ACTIONS(5477), - [anon_sym_EQ_EQ] = ACTIONS(5479), - [anon_sym_BANG_EQ] = ACTIONS(5479), - [anon_sym_GT] = ACTIONS(5477), - [anon_sym_GT_EQ] = ACTIONS(5479), - [anon_sym_LT_EQ] = ACTIONS(5477), - [anon_sym_LT] = ACTIONS(5477), - [anon_sym_LT_LT] = ACTIONS(5479), - [anon_sym_GT_GT] = ACTIONS(5479), - [anon_sym_SEMI] = ACTIONS(5479), - [anon_sym___extension__] = ACTIONS(5477), - [anon_sym_extern] = ACTIONS(5477), - [anon_sym___attribute__] = ACTIONS(5477), - [anon_sym_COLON_COLON] = ACTIONS(5479), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5479), - [anon_sym___declspec] = ACTIONS(5477), - [anon_sym___based] = ACTIONS(5477), - [anon_sym_LBRACE] = ACTIONS(5479), - [anon_sym_RBRACE] = ACTIONS(5479), - [anon_sym_LBRACK] = ACTIONS(5477), - [anon_sym_EQ] = ACTIONS(5477), - [anon_sym_static] = ACTIONS(5477), - [anon_sym_register] = ACTIONS(5477), - [anon_sym_inline] = ACTIONS(5477), - [anon_sym___inline] = ACTIONS(5477), - [anon_sym___inline__] = ACTIONS(5477), - [anon_sym___forceinline] = ACTIONS(5477), - [anon_sym_thread_local] = ACTIONS(5477), - [anon_sym___thread] = ACTIONS(5477), - [anon_sym_const] = ACTIONS(5477), - [anon_sym_constexpr] = ACTIONS(5477), - [anon_sym_volatile] = ACTIONS(5477), - [anon_sym_restrict] = ACTIONS(5477), - [anon_sym___restrict__] = ACTIONS(5477), - [anon_sym__Atomic] = ACTIONS(5477), - [anon_sym__Noreturn] = ACTIONS(5477), - [anon_sym_noreturn] = ACTIONS(5477), - [anon_sym_mutable] = ACTIONS(5477), - [anon_sym_constinit] = ACTIONS(5477), - [anon_sym_consteval] = ACTIONS(5477), - [anon_sym_COLON] = ACTIONS(5477), - [anon_sym_QMARK] = ACTIONS(5479), - [anon_sym_LT_EQ_GT] = ACTIONS(5479), - [anon_sym_or] = ACTIONS(5477), - [anon_sym_and] = ACTIONS(5477), - [anon_sym_bitor] = ACTIONS(5477), - [anon_sym_xor] = ACTIONS(5477), - [anon_sym_bitand] = ACTIONS(5477), - [anon_sym_not_eq] = ACTIONS(5477), - [anon_sym_DASH_DASH] = ACTIONS(5479), - [anon_sym_PLUS_PLUS] = ACTIONS(5479), - [anon_sym_DOT] = ACTIONS(5477), - [anon_sym_DOT_STAR] = ACTIONS(5479), - [anon_sym_DASH_GT] = ACTIONS(5479), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5477), - [anon_sym_decltype] = ACTIONS(5477), - [anon_sym_virtual] = ACTIONS(5477), - [anon_sym_alignas] = ACTIONS(5477), - [anon_sym_template] = ACTIONS(5477), - [anon_sym_operator] = ACTIONS(5477), - [anon_sym_try] = ACTIONS(5477), + [anon_sym_template] = ACTIONS(1534), }, - [1868] = { - [sym_function_definition] = STATE(2135), - [sym_declaration] = STATE(2135), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6407), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_call_modifier] = STATE(2105), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(10617), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(5462), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(5450), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5570), + [1840] = { + [sym_function_definition] = STATE(522), + [sym_declaration] = STATE(522), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5894), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_call_modifier] = STATE(2224), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(9118), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4947), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7571), + [sym_qualified_type_identifier] = STATE(4948), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5490), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___cdecl] = ACTIONS(53), [anon_sym___clrcall] = ACTIONS(53), @@ -289659,55 +276257,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), + [sym_primitive_type] = ACTIONS(3267), [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(5614), - [anon_sym_struct] = ACTIONS(5616), - [anon_sym_union] = ACTIONS(5618), + [anon_sym_class] = ACTIONS(5534), + [anon_sym_struct] = ACTIONS(5536), + [anon_sym_union] = ACTIONS(5538), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), }, - [1869] = { - [sym_function_definition] = STATE(2431), - [sym_declaration] = STATE(2431), - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6408), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_ms_call_modifier] = STATE(2062), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_class_name] = STATE(9697), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(5462), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(5450), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5570), + [1841] = { + [sym_function_definition] = STATE(2398), + [sym_declaration] = STATE(2398), + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(5899), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_ms_call_modifier] = STATE(2226), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_class_name] = STATE(9626), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(4947), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7571), + [sym_qualified_type_identifier] = STATE(4948), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5490), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym___cdecl] = ACTIONS(53), [anon_sym___clrcall] = ACTIONS(53), @@ -289738,1387 +276336,1071 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), + [sym_primitive_type] = ACTIONS(3267), [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(5620), - [anon_sym_struct] = ACTIONS(5622), - [anon_sym_union] = ACTIONS(5624), + [anon_sym_class] = ACTIONS(5540), + [anon_sym_struct] = ACTIONS(5542), + [anon_sym_union] = ACTIONS(5544), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - }, - [1870] = { - [sym_identifier] = ACTIONS(5507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5509), - [anon_sym_COMMA] = ACTIONS(5509), - [anon_sym_RPAREN] = ACTIONS(5509), - [anon_sym_LPAREN2] = ACTIONS(5509), - [anon_sym_TILDE] = ACTIONS(5509), - [anon_sym_DASH] = ACTIONS(5507), - [anon_sym_PLUS] = ACTIONS(5507), - [anon_sym_STAR] = ACTIONS(5509), - [anon_sym_SLASH] = ACTIONS(5507), - [anon_sym_PERCENT] = ACTIONS(5509), - [anon_sym_PIPE_PIPE] = ACTIONS(5509), - [anon_sym_AMP_AMP] = ACTIONS(5509), - [anon_sym_PIPE] = ACTIONS(5507), - [anon_sym_CARET] = ACTIONS(5509), - [anon_sym_AMP] = ACTIONS(5507), - [anon_sym_EQ_EQ] = ACTIONS(5509), - [anon_sym_BANG_EQ] = ACTIONS(5509), - [anon_sym_GT] = ACTIONS(5507), - [anon_sym_GT_EQ] = ACTIONS(5509), - [anon_sym_LT_EQ] = ACTIONS(5507), - [anon_sym_LT] = ACTIONS(5507), - [anon_sym_LT_LT] = ACTIONS(5509), - [anon_sym_GT_GT] = ACTIONS(5509), - [anon_sym_SEMI] = ACTIONS(5509), - [anon_sym___extension__] = ACTIONS(5507), - [anon_sym_extern] = ACTIONS(5507), - [anon_sym___attribute__] = ACTIONS(5507), - [anon_sym_COLON_COLON] = ACTIONS(5509), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5509), - [anon_sym___declspec] = ACTIONS(5507), - [anon_sym___based] = ACTIONS(5507), - [anon_sym_LBRACE] = ACTIONS(5509), - [anon_sym_RBRACE] = ACTIONS(5509), - [anon_sym_LBRACK] = ACTIONS(5507), - [anon_sym_EQ] = ACTIONS(5507), - [anon_sym_static] = ACTIONS(5507), - [anon_sym_register] = ACTIONS(5507), - [anon_sym_inline] = ACTIONS(5507), - [anon_sym___inline] = ACTIONS(5507), - [anon_sym___inline__] = ACTIONS(5507), - [anon_sym___forceinline] = ACTIONS(5507), - [anon_sym_thread_local] = ACTIONS(5507), - [anon_sym___thread] = ACTIONS(5507), - [anon_sym_const] = ACTIONS(5507), - [anon_sym_constexpr] = ACTIONS(5507), - [anon_sym_volatile] = ACTIONS(5507), - [anon_sym_restrict] = ACTIONS(5507), - [anon_sym___restrict__] = ACTIONS(5507), - [anon_sym__Atomic] = ACTIONS(5507), - [anon_sym__Noreturn] = ACTIONS(5507), - [anon_sym_noreturn] = ACTIONS(5507), - [anon_sym_mutable] = ACTIONS(5507), - [anon_sym_constinit] = ACTIONS(5507), - [anon_sym_consteval] = ACTIONS(5507), - [anon_sym_COLON] = ACTIONS(5507), - [anon_sym_QMARK] = ACTIONS(5509), - [anon_sym_LT_EQ_GT] = ACTIONS(5509), - [anon_sym_or] = ACTIONS(5507), - [anon_sym_and] = ACTIONS(5507), - [anon_sym_bitor] = ACTIONS(5507), - [anon_sym_xor] = ACTIONS(5507), - [anon_sym_bitand] = ACTIONS(5507), - [anon_sym_not_eq] = ACTIONS(5507), - [anon_sym_DASH_DASH] = ACTIONS(5509), - [anon_sym_PLUS_PLUS] = ACTIONS(5509), - [anon_sym_DOT] = ACTIONS(5507), - [anon_sym_DOT_STAR] = ACTIONS(5509), - [anon_sym_DASH_GT] = ACTIONS(5509), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5507), - [anon_sym_decltype] = ACTIONS(5507), - [anon_sym_virtual] = ACTIONS(5507), - [anon_sym_alignas] = ACTIONS(5507), - [anon_sym_template] = ACTIONS(5507), - [anon_sym_operator] = ACTIONS(5507), - [anon_sym_try] = ACTIONS(5507), - }, - [1871] = { - [sym_identifier] = ACTIONS(5511), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5513), - [anon_sym_COMMA] = ACTIONS(5513), - [anon_sym_RPAREN] = ACTIONS(5513), - [anon_sym_LPAREN2] = ACTIONS(5513), - [anon_sym_TILDE] = ACTIONS(5513), - [anon_sym_DASH] = ACTIONS(5511), - [anon_sym_PLUS] = ACTIONS(5511), - [anon_sym_STAR] = ACTIONS(5513), - [anon_sym_SLASH] = ACTIONS(5511), - [anon_sym_PERCENT] = ACTIONS(5513), - [anon_sym_PIPE_PIPE] = ACTIONS(5513), - [anon_sym_AMP_AMP] = ACTIONS(5513), - [anon_sym_PIPE] = ACTIONS(5511), - [anon_sym_CARET] = ACTIONS(5513), - [anon_sym_AMP] = ACTIONS(5511), - [anon_sym_EQ_EQ] = ACTIONS(5513), - [anon_sym_BANG_EQ] = ACTIONS(5513), - [anon_sym_GT] = ACTIONS(5511), - [anon_sym_GT_EQ] = ACTIONS(5513), - [anon_sym_LT_EQ] = ACTIONS(5511), - [anon_sym_LT] = ACTIONS(5511), - [anon_sym_LT_LT] = ACTIONS(5513), - [anon_sym_GT_GT] = ACTIONS(5513), - [anon_sym_SEMI] = ACTIONS(5513), - [anon_sym___extension__] = ACTIONS(5511), - [anon_sym_extern] = ACTIONS(5511), - [anon_sym___attribute__] = ACTIONS(5511), - [anon_sym_COLON_COLON] = ACTIONS(5513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5513), - [anon_sym___declspec] = ACTIONS(5511), - [anon_sym___based] = ACTIONS(5511), - [anon_sym_LBRACE] = ACTIONS(5513), - [anon_sym_RBRACE] = ACTIONS(5513), - [anon_sym_LBRACK] = ACTIONS(5511), - [anon_sym_EQ] = ACTIONS(5511), - [anon_sym_static] = ACTIONS(5511), - [anon_sym_register] = ACTIONS(5511), - [anon_sym_inline] = ACTIONS(5511), - [anon_sym___inline] = ACTIONS(5511), - [anon_sym___inline__] = ACTIONS(5511), - [anon_sym___forceinline] = ACTIONS(5511), - [anon_sym_thread_local] = ACTIONS(5511), - [anon_sym___thread] = ACTIONS(5511), - [anon_sym_const] = ACTIONS(5511), - [anon_sym_constexpr] = ACTIONS(5511), - [anon_sym_volatile] = ACTIONS(5511), - [anon_sym_restrict] = ACTIONS(5511), - [anon_sym___restrict__] = ACTIONS(5511), - [anon_sym__Atomic] = ACTIONS(5511), - [anon_sym__Noreturn] = ACTIONS(5511), - [anon_sym_noreturn] = ACTIONS(5511), - [anon_sym_mutable] = ACTIONS(5511), - [anon_sym_constinit] = ACTIONS(5511), - [anon_sym_consteval] = ACTIONS(5511), - [anon_sym_COLON] = ACTIONS(5511), - [anon_sym_QMARK] = ACTIONS(5513), - [anon_sym_LT_EQ_GT] = ACTIONS(5513), - [anon_sym_or] = ACTIONS(5511), - [anon_sym_and] = ACTIONS(5511), - [anon_sym_bitor] = ACTIONS(5511), - [anon_sym_xor] = ACTIONS(5511), - [anon_sym_bitand] = ACTIONS(5511), - [anon_sym_not_eq] = ACTIONS(5511), - [anon_sym_DASH_DASH] = ACTIONS(5513), - [anon_sym_PLUS_PLUS] = ACTIONS(5513), - [anon_sym_DOT] = ACTIONS(5511), - [anon_sym_DOT_STAR] = ACTIONS(5513), - [anon_sym_DASH_GT] = ACTIONS(5513), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5511), - [anon_sym_decltype] = ACTIONS(5511), - [anon_sym_virtual] = ACTIONS(5511), - [anon_sym_alignas] = ACTIONS(5511), - [anon_sym_template] = ACTIONS(5511), - [anon_sym_operator] = ACTIONS(5511), - [anon_sym_try] = ACTIONS(5511), - }, - [1872] = { - [sym_identifier] = ACTIONS(5456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5458), - [anon_sym_COMMA] = ACTIONS(5458), - [anon_sym_RPAREN] = ACTIONS(5458), - [anon_sym_LPAREN2] = ACTIONS(5458), - [anon_sym_TILDE] = ACTIONS(5458), - [anon_sym_DASH] = ACTIONS(5456), - [anon_sym_PLUS] = ACTIONS(5456), - [anon_sym_STAR] = ACTIONS(5458), - [anon_sym_SLASH] = ACTIONS(5456), - [anon_sym_PERCENT] = ACTIONS(5458), - [anon_sym_PIPE_PIPE] = ACTIONS(5458), - [anon_sym_AMP_AMP] = ACTIONS(5458), - [anon_sym_PIPE] = ACTIONS(5456), - [anon_sym_CARET] = ACTIONS(5458), - [anon_sym_AMP] = ACTIONS(5456), - [anon_sym_EQ_EQ] = ACTIONS(5458), - [anon_sym_BANG_EQ] = ACTIONS(5458), - [anon_sym_GT] = ACTIONS(5456), - [anon_sym_GT_EQ] = ACTIONS(5458), - [anon_sym_LT_EQ] = ACTIONS(5456), - [anon_sym_LT] = ACTIONS(5456), - [anon_sym_LT_LT] = ACTIONS(5458), - [anon_sym_GT_GT] = ACTIONS(5458), - [anon_sym_SEMI] = ACTIONS(5458), - [anon_sym___extension__] = ACTIONS(5456), - [anon_sym_extern] = ACTIONS(5456), - [anon_sym___attribute__] = ACTIONS(5456), - [anon_sym_COLON_COLON] = ACTIONS(5458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5458), - [anon_sym___declspec] = ACTIONS(5456), - [anon_sym___based] = ACTIONS(5456), - [anon_sym_LBRACE] = ACTIONS(5458), - [anon_sym_RBRACE] = ACTIONS(5458), - [anon_sym_LBRACK] = ACTIONS(5456), - [anon_sym_EQ] = ACTIONS(5456), - [anon_sym_static] = ACTIONS(5456), - [anon_sym_register] = ACTIONS(5456), - [anon_sym_inline] = ACTIONS(5456), - [anon_sym___inline] = ACTIONS(5456), - [anon_sym___inline__] = ACTIONS(5456), - [anon_sym___forceinline] = ACTIONS(5456), - [anon_sym_thread_local] = ACTIONS(5456), - [anon_sym___thread] = ACTIONS(5456), - [anon_sym_const] = ACTIONS(5456), - [anon_sym_constexpr] = ACTIONS(5456), - [anon_sym_volatile] = ACTIONS(5456), - [anon_sym_restrict] = ACTIONS(5456), - [anon_sym___restrict__] = ACTIONS(5456), - [anon_sym__Atomic] = ACTIONS(5456), - [anon_sym__Noreturn] = ACTIONS(5456), - [anon_sym_noreturn] = ACTIONS(5456), - [anon_sym_mutable] = ACTIONS(5456), - [anon_sym_constinit] = ACTIONS(5456), - [anon_sym_consteval] = ACTIONS(5456), - [anon_sym_COLON] = ACTIONS(5456), - [anon_sym_QMARK] = ACTIONS(5458), - [anon_sym_LT_EQ_GT] = ACTIONS(5458), - [anon_sym_or] = ACTIONS(5456), - [anon_sym_and] = ACTIONS(5456), - [anon_sym_bitor] = ACTIONS(5456), - [anon_sym_xor] = ACTIONS(5456), - [anon_sym_bitand] = ACTIONS(5456), - [anon_sym_not_eq] = ACTIONS(5456), - [anon_sym_DASH_DASH] = ACTIONS(5458), - [anon_sym_PLUS_PLUS] = ACTIONS(5458), - [anon_sym_DOT] = ACTIONS(5456), - [anon_sym_DOT_STAR] = ACTIONS(5458), - [anon_sym_DASH_GT] = ACTIONS(5458), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5456), - [anon_sym_decltype] = ACTIONS(5456), - [anon_sym_virtual] = ACTIONS(5456), - [anon_sym_alignas] = ACTIONS(5456), - [anon_sym_template] = ACTIONS(5456), - [anon_sym_operator] = ACTIONS(5456), - [anon_sym_try] = ACTIONS(5456), - }, - [1873] = { - [sym_identifier] = ACTIONS(4378), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4380), - [anon_sym_LPAREN2] = ACTIONS(4380), - [anon_sym_BANG] = ACTIONS(4380), - [anon_sym_TILDE] = ACTIONS(4380), - [anon_sym_DASH] = ACTIONS(4378), - [anon_sym_PLUS] = ACTIONS(4378), - [anon_sym_STAR] = ACTIONS(4380), - [anon_sym_AMP] = ACTIONS(4380), - [anon_sym_SEMI] = ACTIONS(4380), - [anon_sym_COLON_COLON] = ACTIONS(4380), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4380), - [anon_sym_LBRACE] = ACTIONS(4380), - [anon_sym_LBRACK] = ACTIONS(4378), - [sym_primitive_type] = ACTIONS(4378), - [anon_sym_if] = ACTIONS(4378), - [anon_sym_switch] = ACTIONS(4378), - [anon_sym_case] = ACTIONS(4378), - [anon_sym_default] = ACTIONS(4378), - [anon_sym_while] = ACTIONS(4378), - [anon_sym_do] = ACTIONS(4378), - [anon_sym_for] = ACTIONS(4378), - [anon_sym_return] = ACTIONS(4378), - [anon_sym_break] = ACTIONS(4378), - [anon_sym_continue] = ACTIONS(4378), - [anon_sym_goto] = ACTIONS(4378), - [anon_sym___try] = ACTIONS(4378), - [anon_sym___leave] = ACTIONS(4378), - [anon_sym_not] = ACTIONS(4378), - [anon_sym_compl] = ACTIONS(4378), - [anon_sym_DASH_DASH] = ACTIONS(4380), - [anon_sym_PLUS_PLUS] = ACTIONS(4380), - [anon_sym_sizeof] = ACTIONS(4378), - [anon_sym___alignof__] = ACTIONS(4378), - [anon_sym___alignof] = ACTIONS(4378), - [anon_sym__alignof] = ACTIONS(4378), - [anon_sym_alignof] = ACTIONS(4378), - [anon_sym__Alignof] = ACTIONS(4378), - [anon_sym_offsetof] = ACTIONS(4378), - [anon_sym__Generic] = ACTIONS(4378), - [anon_sym_asm] = ACTIONS(4378), - [anon_sym___asm__] = ACTIONS(4378), - [sym_number_literal] = ACTIONS(4380), - [anon_sym_L_SQUOTE] = ACTIONS(4380), - [anon_sym_u_SQUOTE] = ACTIONS(4380), - [anon_sym_U_SQUOTE] = ACTIONS(4380), - [anon_sym_u8_SQUOTE] = ACTIONS(4380), - [anon_sym_SQUOTE] = ACTIONS(4380), - [anon_sym_L_DQUOTE] = ACTIONS(4380), - [anon_sym_u_DQUOTE] = ACTIONS(4380), - [anon_sym_U_DQUOTE] = ACTIONS(4380), - [anon_sym_u8_DQUOTE] = ACTIONS(4380), - [anon_sym_DQUOTE] = ACTIONS(4380), - [sym_true] = ACTIONS(4378), - [sym_false] = ACTIONS(4378), - [anon_sym_NULL] = ACTIONS(4378), - [anon_sym_nullptr] = ACTIONS(4378), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(4378), - [anon_sym_template] = ACTIONS(4378), - [anon_sym_try] = ACTIONS(4378), - [anon_sym_delete] = ACTIONS(4378), - [anon_sym_throw] = ACTIONS(4378), - [anon_sym_co_return] = ACTIONS(4378), - [anon_sym_co_yield] = ACTIONS(4378), - [anon_sym_R_DQUOTE] = ACTIONS(4380), - [anon_sym_LR_DQUOTE] = ACTIONS(4380), - [anon_sym_uR_DQUOTE] = ACTIONS(4380), - [anon_sym_UR_DQUOTE] = ACTIONS(4380), - [anon_sym_u8R_DQUOTE] = ACTIONS(4380), - [anon_sym_co_await] = ACTIONS(4378), - [anon_sym_new] = ACTIONS(4378), - [anon_sym_requires] = ACTIONS(4378), - [sym_this] = ACTIONS(4378), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4380), - [sym_semgrep_named_ellipsis] = ACTIONS(4380), + [anon_sym_template] = ACTIONS(1534), }, - [1874] = { - [sym_identifier] = ACTIONS(5626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5628), - [anon_sym_LPAREN2] = ACTIONS(5628), - [anon_sym_BANG] = ACTIONS(5628), - [anon_sym_TILDE] = ACTIONS(5628), - [anon_sym_DASH] = ACTIONS(5626), - [anon_sym_PLUS] = ACTIONS(5626), - [anon_sym_STAR] = ACTIONS(5628), - [anon_sym_AMP] = ACTIONS(5628), - [anon_sym_SEMI] = ACTIONS(5628), - [anon_sym_COLON_COLON] = ACTIONS(5628), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5628), - [anon_sym_LBRACE] = ACTIONS(5628), - [anon_sym_LBRACK] = ACTIONS(5626), - [sym_primitive_type] = ACTIONS(5626), - [anon_sym_if] = ACTIONS(5626), - [anon_sym_switch] = ACTIONS(5626), - [anon_sym_case] = ACTIONS(5626), - [anon_sym_default] = ACTIONS(5626), - [anon_sym_while] = ACTIONS(5626), - [anon_sym_do] = ACTIONS(5626), - [anon_sym_for] = ACTIONS(5626), - [anon_sym_return] = ACTIONS(5626), - [anon_sym_break] = ACTIONS(5626), - [anon_sym_continue] = ACTIONS(5626), - [anon_sym_goto] = ACTIONS(5626), - [anon_sym___try] = ACTIONS(5626), - [anon_sym___leave] = ACTIONS(5626), - [anon_sym_not] = ACTIONS(5626), - [anon_sym_compl] = ACTIONS(5626), - [anon_sym_DASH_DASH] = ACTIONS(5628), - [anon_sym_PLUS_PLUS] = ACTIONS(5628), - [anon_sym_sizeof] = ACTIONS(5626), - [anon_sym___alignof__] = ACTIONS(5626), - [anon_sym___alignof] = ACTIONS(5626), - [anon_sym__alignof] = ACTIONS(5626), - [anon_sym_alignof] = ACTIONS(5626), - [anon_sym__Alignof] = ACTIONS(5626), - [anon_sym_offsetof] = ACTIONS(5626), - [anon_sym__Generic] = ACTIONS(5626), - [anon_sym_asm] = ACTIONS(5626), - [anon_sym___asm__] = ACTIONS(5626), - [sym_number_literal] = ACTIONS(5628), - [anon_sym_L_SQUOTE] = ACTIONS(5628), - [anon_sym_u_SQUOTE] = ACTIONS(5628), - [anon_sym_U_SQUOTE] = ACTIONS(5628), - [anon_sym_u8_SQUOTE] = ACTIONS(5628), - [anon_sym_SQUOTE] = ACTIONS(5628), - [anon_sym_L_DQUOTE] = ACTIONS(5628), - [anon_sym_u_DQUOTE] = ACTIONS(5628), - [anon_sym_U_DQUOTE] = ACTIONS(5628), - [anon_sym_u8_DQUOTE] = ACTIONS(5628), - [anon_sym_DQUOTE] = ACTIONS(5628), - [sym_true] = ACTIONS(5626), - [sym_false] = ACTIONS(5626), - [anon_sym_NULL] = ACTIONS(5626), - [anon_sym_nullptr] = ACTIONS(5626), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(5626), - [anon_sym_template] = ACTIONS(5626), - [anon_sym_try] = ACTIONS(5626), - [anon_sym_delete] = ACTIONS(5626), - [anon_sym_throw] = ACTIONS(5626), - [anon_sym_co_return] = ACTIONS(5626), - [anon_sym_co_yield] = ACTIONS(5626), - [anon_sym_R_DQUOTE] = ACTIONS(5628), - [anon_sym_LR_DQUOTE] = ACTIONS(5628), - [anon_sym_uR_DQUOTE] = ACTIONS(5628), - [anon_sym_UR_DQUOTE] = ACTIONS(5628), - [anon_sym_u8R_DQUOTE] = ACTIONS(5628), - [anon_sym_co_await] = ACTIONS(5626), - [anon_sym_new] = ACTIONS(5626), - [anon_sym_requires] = ACTIONS(5626), - [sym_this] = ACTIONS(5626), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(5628), - [sym_semgrep_named_ellipsis] = ACTIONS(5628), + [1842] = { + [sym_identifier] = ACTIONS(5546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5548), + [anon_sym_LPAREN2] = ACTIONS(5548), + [anon_sym_BANG] = ACTIONS(5548), + [anon_sym_TILDE] = ACTIONS(5548), + [anon_sym_DASH] = ACTIONS(5546), + [anon_sym_PLUS] = ACTIONS(5546), + [anon_sym_STAR] = ACTIONS(5548), + [anon_sym_AMP] = ACTIONS(5548), + [anon_sym_SEMI] = ACTIONS(5548), + [anon_sym_COLON_COLON] = ACTIONS(5548), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5548), + [anon_sym_LBRACE] = ACTIONS(5548), + [anon_sym_LBRACK] = ACTIONS(5546), + [sym_primitive_type] = ACTIONS(5546), + [anon_sym_if] = ACTIONS(5546), + [anon_sym_switch] = ACTIONS(5546), + [anon_sym_case] = ACTIONS(5546), + [anon_sym_default] = ACTIONS(5546), + [anon_sym_while] = ACTIONS(5546), + [anon_sym_do] = ACTIONS(5546), + [anon_sym_for] = ACTIONS(5546), + [anon_sym_return] = ACTIONS(5546), + [anon_sym_break] = ACTIONS(5546), + [anon_sym_continue] = ACTIONS(5546), + [anon_sym_goto] = ACTIONS(5546), + [anon_sym___try] = ACTIONS(5546), + [anon_sym___leave] = ACTIONS(5546), + [anon_sym_not] = ACTIONS(5546), + [anon_sym_compl] = ACTIONS(5546), + [anon_sym_DASH_DASH] = ACTIONS(5548), + [anon_sym_PLUS_PLUS] = ACTIONS(5548), + [anon_sym_sizeof] = ACTIONS(5546), + [anon_sym___alignof__] = ACTIONS(5546), + [anon_sym___alignof] = ACTIONS(5546), + [anon_sym__alignof] = ACTIONS(5546), + [anon_sym_alignof] = ACTIONS(5546), + [anon_sym__Alignof] = ACTIONS(5546), + [anon_sym_offsetof] = ACTIONS(5546), + [anon_sym__Generic] = ACTIONS(5546), + [anon_sym_asm] = ACTIONS(5546), + [anon_sym___asm__] = ACTIONS(5546), + [sym_number_literal] = ACTIONS(5548), + [anon_sym_L_SQUOTE] = ACTIONS(5548), + [anon_sym_u_SQUOTE] = ACTIONS(5548), + [anon_sym_U_SQUOTE] = ACTIONS(5548), + [anon_sym_u8_SQUOTE] = ACTIONS(5548), + [anon_sym_SQUOTE] = ACTIONS(5548), + [anon_sym_L_DQUOTE] = ACTIONS(5548), + [anon_sym_u_DQUOTE] = ACTIONS(5548), + [anon_sym_U_DQUOTE] = ACTIONS(5548), + [anon_sym_u8_DQUOTE] = ACTIONS(5548), + [anon_sym_DQUOTE] = ACTIONS(5548), + [sym_true] = ACTIONS(5546), + [sym_false] = ACTIONS(5546), + [anon_sym_NULL] = ACTIONS(5546), + [anon_sym_nullptr] = ACTIONS(5546), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(5546), + [anon_sym_template] = ACTIONS(5546), + [anon_sym_try] = ACTIONS(5546), + [anon_sym_delete] = ACTIONS(5546), + [anon_sym_throw] = ACTIONS(5546), + [anon_sym_co_return] = ACTIONS(5546), + [anon_sym_co_yield] = ACTIONS(5546), + [anon_sym_R_DQUOTE] = ACTIONS(5548), + [anon_sym_LR_DQUOTE] = ACTIONS(5548), + [anon_sym_uR_DQUOTE] = ACTIONS(5548), + [anon_sym_UR_DQUOTE] = ACTIONS(5548), + [anon_sym_u8R_DQUOTE] = ACTIONS(5548), + [anon_sym_co_await] = ACTIONS(5546), + [anon_sym_new] = ACTIONS(5546), + [anon_sym_requires] = ACTIONS(5546), + [sym_this] = ACTIONS(5546), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(5548), + [sym_semgrep_named_ellipsis] = ACTIONS(5548), }, - [1875] = { - [sym_string_literal] = STATE(1875), - [sym_raw_string_literal] = STATE(1875), - [aux_sym_concatenated_string_repeat1] = STATE(1875), - [ts_builtin_sym_end] = ACTIONS(5630), - [sym_identifier] = ACTIONS(5632), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5630), - [anon_sym_COMMA] = ACTIONS(5630), - [anon_sym_RPAREN] = ACTIONS(5630), - [aux_sym_preproc_if_token2] = ACTIONS(5630), - [aux_sym_preproc_else_token1] = ACTIONS(5630), - [aux_sym_preproc_elif_token1] = ACTIONS(5635), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5630), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5630), - [anon_sym_LPAREN2] = ACTIONS(5630), - [anon_sym_DASH] = ACTIONS(5635), - [anon_sym_PLUS] = ACTIONS(5635), - [anon_sym_STAR] = ACTIONS(5635), - [anon_sym_SLASH] = ACTIONS(5635), - [anon_sym_PERCENT] = ACTIONS(5635), - [anon_sym_PIPE_PIPE] = ACTIONS(5630), - [anon_sym_AMP_AMP] = ACTIONS(5630), - [anon_sym_PIPE] = ACTIONS(5635), - [anon_sym_CARET] = ACTIONS(5635), - [anon_sym_AMP] = ACTIONS(5635), - [anon_sym_EQ_EQ] = ACTIONS(5630), - [anon_sym_BANG_EQ] = ACTIONS(5630), - [anon_sym_GT] = ACTIONS(5635), - [anon_sym_GT_EQ] = ACTIONS(5630), - [anon_sym_LT_EQ] = ACTIONS(5635), - [anon_sym_LT] = ACTIONS(5635), - [anon_sym_LT_LT] = ACTIONS(5635), - [anon_sym_GT_GT] = ACTIONS(5635), - [anon_sym_SEMI] = ACTIONS(5630), - [anon_sym_RBRACE] = ACTIONS(5630), - [anon_sym_LBRACK] = ACTIONS(5630), - [anon_sym_RBRACK] = ACTIONS(5630), - [anon_sym_EQ] = ACTIONS(5635), - [anon_sym_COLON] = ACTIONS(5630), - [anon_sym_QMARK] = ACTIONS(5630), - [anon_sym_STAR_EQ] = ACTIONS(5630), - [anon_sym_SLASH_EQ] = ACTIONS(5630), - [anon_sym_PERCENT_EQ] = ACTIONS(5630), - [anon_sym_PLUS_EQ] = ACTIONS(5630), - [anon_sym_DASH_EQ] = ACTIONS(5630), - [anon_sym_LT_LT_EQ] = ACTIONS(5630), - [anon_sym_GT_GT_EQ] = ACTIONS(5630), - [anon_sym_AMP_EQ] = ACTIONS(5630), - [anon_sym_CARET_EQ] = ACTIONS(5630), - [anon_sym_PIPE_EQ] = ACTIONS(5630), - [anon_sym_and_eq] = ACTIONS(5635), - [anon_sym_or_eq] = ACTIONS(5635), - [anon_sym_xor_eq] = ACTIONS(5635), - [anon_sym_LT_EQ_GT] = ACTIONS(5630), - [anon_sym_or] = ACTIONS(5635), - [anon_sym_and] = ACTIONS(5635), - [anon_sym_bitor] = ACTIONS(5635), - [anon_sym_xor] = ACTIONS(5635), - [anon_sym_bitand] = ACTIONS(5635), - [anon_sym_not_eq] = ACTIONS(5635), - [anon_sym_DASH_DASH] = ACTIONS(5630), - [anon_sym_PLUS_PLUS] = ACTIONS(5630), - [anon_sym_DOT] = ACTIONS(5635), - [anon_sym_DOT_STAR] = ACTIONS(5630), - [anon_sym_DASH_GT] = ACTIONS(5630), - [anon_sym_L_DQUOTE] = ACTIONS(5637), - [anon_sym_u_DQUOTE] = ACTIONS(5637), - [anon_sym_U_DQUOTE] = ACTIONS(5637), - [anon_sym_u8_DQUOTE] = ACTIONS(5637), - [anon_sym_DQUOTE] = ACTIONS(5637), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5640), - [anon_sym_LR_DQUOTE] = ACTIONS(5640), - [anon_sym_uR_DQUOTE] = ACTIONS(5640), - [anon_sym_UR_DQUOTE] = ACTIONS(5640), - [anon_sym_u8R_DQUOTE] = ACTIONS(5640), - [sym_literal_suffix] = ACTIONS(5635), + [1843] = { + [sym_string_literal] = STATE(1844), + [sym_raw_string_literal] = STATE(1844), + [aux_sym_concatenated_string_repeat1] = STATE(1844), + [ts_builtin_sym_end] = ACTIONS(5550), + [sym_identifier] = ACTIONS(5552), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5550), + [anon_sym_COMMA] = ACTIONS(5550), + [anon_sym_RPAREN] = ACTIONS(5550), + [aux_sym_preproc_if_token2] = ACTIONS(5550), + [aux_sym_preproc_else_token1] = ACTIONS(5550), + [aux_sym_preproc_elif_token1] = ACTIONS(5554), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5550), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5550), + [anon_sym_LPAREN2] = ACTIONS(5550), + [anon_sym_DASH] = ACTIONS(5554), + [anon_sym_PLUS] = ACTIONS(5554), + [anon_sym_STAR] = ACTIONS(5554), + [anon_sym_SLASH] = ACTIONS(5554), + [anon_sym_PERCENT] = ACTIONS(5554), + [anon_sym_PIPE_PIPE] = ACTIONS(5550), + [anon_sym_AMP_AMP] = ACTIONS(5550), + [anon_sym_PIPE] = ACTIONS(5554), + [anon_sym_CARET] = ACTIONS(5554), + [anon_sym_AMP] = ACTIONS(5554), + [anon_sym_EQ_EQ] = ACTIONS(5550), + [anon_sym_BANG_EQ] = ACTIONS(5550), + [anon_sym_GT] = ACTIONS(5554), + [anon_sym_GT_EQ] = ACTIONS(5550), + [anon_sym_LT_EQ] = ACTIONS(5554), + [anon_sym_LT] = ACTIONS(5554), + [anon_sym_LT_LT] = ACTIONS(5554), + [anon_sym_GT_GT] = ACTIONS(5554), + [anon_sym_SEMI] = ACTIONS(5550), + [anon_sym_RBRACE] = ACTIONS(5550), + [anon_sym_LBRACK] = ACTIONS(5550), + [anon_sym_RBRACK] = ACTIONS(5550), + [anon_sym_EQ] = ACTIONS(5554), + [anon_sym_COLON] = ACTIONS(5550), + [anon_sym_QMARK] = ACTIONS(5550), + [anon_sym_STAR_EQ] = ACTIONS(5550), + [anon_sym_SLASH_EQ] = ACTIONS(5550), + [anon_sym_PERCENT_EQ] = ACTIONS(5550), + [anon_sym_PLUS_EQ] = ACTIONS(5550), + [anon_sym_DASH_EQ] = ACTIONS(5550), + [anon_sym_LT_LT_EQ] = ACTIONS(5550), + [anon_sym_GT_GT_EQ] = ACTIONS(5550), + [anon_sym_AMP_EQ] = ACTIONS(5550), + [anon_sym_CARET_EQ] = ACTIONS(5550), + [anon_sym_PIPE_EQ] = ACTIONS(5550), + [anon_sym_and_eq] = ACTIONS(5554), + [anon_sym_or_eq] = ACTIONS(5554), + [anon_sym_xor_eq] = ACTIONS(5554), + [anon_sym_LT_EQ_GT] = ACTIONS(5550), + [anon_sym_or] = ACTIONS(5554), + [anon_sym_and] = ACTIONS(5554), + [anon_sym_bitor] = ACTIONS(5554), + [anon_sym_xor] = ACTIONS(5554), + [anon_sym_bitand] = ACTIONS(5554), + [anon_sym_not_eq] = ACTIONS(5554), + [anon_sym_DASH_DASH] = ACTIONS(5550), + [anon_sym_PLUS_PLUS] = ACTIONS(5550), + [anon_sym_DOT] = ACTIONS(5554), + [anon_sym_DOT_STAR] = ACTIONS(5550), + [anon_sym_DASH_GT] = ACTIONS(5550), + [anon_sym_L_DQUOTE] = ACTIONS(2341), + [anon_sym_u_DQUOTE] = ACTIONS(2341), + [anon_sym_U_DQUOTE] = ACTIONS(2341), + [anon_sym_u8_DQUOTE] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2345), + [anon_sym_LR_DQUOTE] = ACTIONS(2345), + [anon_sym_uR_DQUOTE] = ACTIONS(2345), + [anon_sym_UR_DQUOTE] = ACTIONS(2345), + [anon_sym_u8R_DQUOTE] = ACTIONS(2345), + [sym_literal_suffix] = ACTIONS(5554), }, - [1876] = { - [sym_identifier] = ACTIONS(4382), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4384), - [anon_sym_LPAREN2] = ACTIONS(4384), - [anon_sym_BANG] = ACTIONS(4384), - [anon_sym_TILDE] = ACTIONS(4384), - [anon_sym_DASH] = ACTIONS(4382), - [anon_sym_PLUS] = ACTIONS(4382), - [anon_sym_STAR] = ACTIONS(4384), - [anon_sym_AMP] = ACTIONS(4384), - [anon_sym_SEMI] = ACTIONS(4384), - [anon_sym_COLON_COLON] = ACTIONS(4384), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4384), - [anon_sym_LBRACE] = ACTIONS(4384), - [anon_sym_LBRACK] = ACTIONS(4382), - [sym_primitive_type] = ACTIONS(4382), - [anon_sym_if] = ACTIONS(4382), - [anon_sym_switch] = ACTIONS(4382), - [anon_sym_case] = ACTIONS(4382), - [anon_sym_default] = ACTIONS(4382), - [anon_sym_while] = ACTIONS(4382), - [anon_sym_do] = ACTIONS(4382), - [anon_sym_for] = ACTIONS(4382), - [anon_sym_return] = ACTIONS(4382), - [anon_sym_break] = ACTIONS(4382), - [anon_sym_continue] = ACTIONS(4382), - [anon_sym_goto] = ACTIONS(4382), - [anon_sym___try] = ACTIONS(4382), - [anon_sym___leave] = ACTIONS(4382), - [anon_sym_not] = ACTIONS(4382), - [anon_sym_compl] = ACTIONS(4382), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_sizeof] = ACTIONS(4382), - [anon_sym___alignof__] = ACTIONS(4382), - [anon_sym___alignof] = ACTIONS(4382), - [anon_sym__alignof] = ACTIONS(4382), - [anon_sym_alignof] = ACTIONS(4382), - [anon_sym__Alignof] = ACTIONS(4382), - [anon_sym_offsetof] = ACTIONS(4382), - [anon_sym__Generic] = ACTIONS(4382), - [anon_sym_asm] = ACTIONS(4382), - [anon_sym___asm__] = ACTIONS(4382), - [sym_number_literal] = ACTIONS(4384), - [anon_sym_L_SQUOTE] = ACTIONS(4384), - [anon_sym_u_SQUOTE] = ACTIONS(4384), - [anon_sym_U_SQUOTE] = ACTIONS(4384), - [anon_sym_u8_SQUOTE] = ACTIONS(4384), - [anon_sym_SQUOTE] = ACTIONS(4384), - [anon_sym_L_DQUOTE] = ACTIONS(4384), - [anon_sym_u_DQUOTE] = ACTIONS(4384), - [anon_sym_U_DQUOTE] = ACTIONS(4384), - [anon_sym_u8_DQUOTE] = ACTIONS(4384), - [anon_sym_DQUOTE] = ACTIONS(4384), - [sym_true] = ACTIONS(4382), - [sym_false] = ACTIONS(4382), - [anon_sym_NULL] = ACTIONS(4382), - [anon_sym_nullptr] = ACTIONS(4382), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(4382), - [anon_sym_template] = ACTIONS(4382), - [anon_sym_try] = ACTIONS(4382), - [anon_sym_delete] = ACTIONS(4382), - [anon_sym_throw] = ACTIONS(4382), - [anon_sym_co_return] = ACTIONS(4382), - [anon_sym_co_yield] = ACTIONS(4382), - [anon_sym_R_DQUOTE] = ACTIONS(4384), - [anon_sym_LR_DQUOTE] = ACTIONS(4384), - [anon_sym_uR_DQUOTE] = ACTIONS(4384), - [anon_sym_UR_DQUOTE] = ACTIONS(4384), - [anon_sym_u8R_DQUOTE] = ACTIONS(4384), - [anon_sym_co_await] = ACTIONS(4382), - [anon_sym_new] = ACTIONS(4382), - [anon_sym_requires] = ACTIONS(4382), - [sym_this] = ACTIONS(4382), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(4384), - [sym_semgrep_named_ellipsis] = ACTIONS(4384), + [1844] = { + [sym_string_literal] = STATE(1845), + [sym_raw_string_literal] = STATE(1845), + [aux_sym_concatenated_string_repeat1] = STATE(1845), + [ts_builtin_sym_end] = ACTIONS(5556), + [sym_identifier] = ACTIONS(5558), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5556), + [anon_sym_COMMA] = ACTIONS(5556), + [anon_sym_RPAREN] = ACTIONS(5556), + [aux_sym_preproc_if_token2] = ACTIONS(5556), + [aux_sym_preproc_else_token1] = ACTIONS(5556), + [aux_sym_preproc_elif_token1] = ACTIONS(5560), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5556), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5556), + [anon_sym_LPAREN2] = ACTIONS(5556), + [anon_sym_DASH] = ACTIONS(5560), + [anon_sym_PLUS] = ACTIONS(5560), + [anon_sym_STAR] = ACTIONS(5560), + [anon_sym_SLASH] = ACTIONS(5560), + [anon_sym_PERCENT] = ACTIONS(5560), + [anon_sym_PIPE_PIPE] = ACTIONS(5556), + [anon_sym_AMP_AMP] = ACTIONS(5556), + [anon_sym_PIPE] = ACTIONS(5560), + [anon_sym_CARET] = ACTIONS(5560), + [anon_sym_AMP] = ACTIONS(5560), + [anon_sym_EQ_EQ] = ACTIONS(5556), + [anon_sym_BANG_EQ] = ACTIONS(5556), + [anon_sym_GT] = ACTIONS(5560), + [anon_sym_GT_EQ] = ACTIONS(5556), + [anon_sym_LT_EQ] = ACTIONS(5560), + [anon_sym_LT] = ACTIONS(5560), + [anon_sym_LT_LT] = ACTIONS(5560), + [anon_sym_GT_GT] = ACTIONS(5560), + [anon_sym_SEMI] = ACTIONS(5556), + [anon_sym_RBRACE] = ACTIONS(5556), + [anon_sym_LBRACK] = ACTIONS(5556), + [anon_sym_RBRACK] = ACTIONS(5556), + [anon_sym_EQ] = ACTIONS(5560), + [anon_sym_COLON] = ACTIONS(5556), + [anon_sym_QMARK] = ACTIONS(5556), + [anon_sym_STAR_EQ] = ACTIONS(5556), + [anon_sym_SLASH_EQ] = ACTIONS(5556), + [anon_sym_PERCENT_EQ] = ACTIONS(5556), + [anon_sym_PLUS_EQ] = ACTIONS(5556), + [anon_sym_DASH_EQ] = ACTIONS(5556), + [anon_sym_LT_LT_EQ] = ACTIONS(5556), + [anon_sym_GT_GT_EQ] = ACTIONS(5556), + [anon_sym_AMP_EQ] = ACTIONS(5556), + [anon_sym_CARET_EQ] = ACTIONS(5556), + [anon_sym_PIPE_EQ] = ACTIONS(5556), + [anon_sym_and_eq] = ACTIONS(5560), + [anon_sym_or_eq] = ACTIONS(5560), + [anon_sym_xor_eq] = ACTIONS(5560), + [anon_sym_LT_EQ_GT] = ACTIONS(5556), + [anon_sym_or] = ACTIONS(5560), + [anon_sym_and] = ACTIONS(5560), + [anon_sym_bitor] = ACTIONS(5560), + [anon_sym_xor] = ACTIONS(5560), + [anon_sym_bitand] = ACTIONS(5560), + [anon_sym_not_eq] = ACTIONS(5560), + [anon_sym_DASH_DASH] = ACTIONS(5556), + [anon_sym_PLUS_PLUS] = ACTIONS(5556), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_DOT_STAR] = ACTIONS(5556), + [anon_sym_DASH_GT] = ACTIONS(5556), + [anon_sym_L_DQUOTE] = ACTIONS(2341), + [anon_sym_u_DQUOTE] = ACTIONS(2341), + [anon_sym_U_DQUOTE] = ACTIONS(2341), + [anon_sym_u8_DQUOTE] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2345), + [anon_sym_LR_DQUOTE] = ACTIONS(2345), + [anon_sym_uR_DQUOTE] = ACTIONS(2345), + [anon_sym_UR_DQUOTE] = ACTIONS(2345), + [anon_sym_u8R_DQUOTE] = ACTIONS(2345), + [sym_literal_suffix] = ACTIONS(5560), }, - [1877] = { - [ts_builtin_sym_end] = ACTIONS(5479), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5479), - [anon_sym_COMMA] = ACTIONS(5479), - [anon_sym_RPAREN] = ACTIONS(5479), - [anon_sym_LPAREN2] = ACTIONS(5479), - [anon_sym_DASH] = ACTIONS(5477), - [anon_sym_PLUS] = ACTIONS(5477), - [anon_sym_STAR] = ACTIONS(5477), - [anon_sym_SLASH] = ACTIONS(5477), - [anon_sym_PERCENT] = ACTIONS(5477), - [anon_sym_PIPE_PIPE] = ACTIONS(5479), - [anon_sym_AMP_AMP] = ACTIONS(5479), - [anon_sym_PIPE] = ACTIONS(5477), - [anon_sym_CARET] = ACTIONS(5477), - [anon_sym_AMP] = ACTIONS(5477), - [anon_sym_EQ_EQ] = ACTIONS(5479), - [anon_sym_BANG_EQ] = ACTIONS(5479), - [anon_sym_GT] = ACTIONS(5477), - [anon_sym_GT_EQ] = ACTIONS(5479), - [anon_sym_LT_EQ] = ACTIONS(5477), - [anon_sym_LT] = ACTIONS(5477), - [anon_sym_LT_LT] = ACTIONS(5477), - [anon_sym_GT_GT] = ACTIONS(5477), - [anon_sym_SEMI] = ACTIONS(5479), - [anon_sym___extension__] = ACTIONS(5479), - [anon_sym___attribute__] = ACTIONS(5479), - [anon_sym_COLON_COLON] = ACTIONS(5479), - [anon_sym_LBRACE] = ACTIONS(5479), - [anon_sym_RBRACE] = ACTIONS(5479), - [anon_sym_LBRACK] = ACTIONS(5479), - [anon_sym_RBRACK] = ACTIONS(5479), - [anon_sym_EQ] = ACTIONS(5477), - [anon_sym_const] = ACTIONS(5477), - [anon_sym_constexpr] = ACTIONS(5479), - [anon_sym_volatile] = ACTIONS(5479), - [anon_sym_restrict] = ACTIONS(5479), - [anon_sym___restrict__] = ACTIONS(5479), - [anon_sym__Atomic] = ACTIONS(5479), - [anon_sym__Noreturn] = ACTIONS(5479), - [anon_sym_noreturn] = ACTIONS(5479), - [anon_sym_mutable] = ACTIONS(5479), - [anon_sym_constinit] = ACTIONS(5479), - [anon_sym_consteval] = ACTIONS(5479), - [anon_sym_COLON] = ACTIONS(5477), - [anon_sym_QMARK] = ACTIONS(5479), - [anon_sym_STAR_EQ] = ACTIONS(5479), - [anon_sym_SLASH_EQ] = ACTIONS(5479), - [anon_sym_PERCENT_EQ] = ACTIONS(5479), - [anon_sym_PLUS_EQ] = ACTIONS(5479), - [anon_sym_DASH_EQ] = ACTIONS(5479), - [anon_sym_LT_LT_EQ] = ACTIONS(5479), - [anon_sym_GT_GT_EQ] = ACTIONS(5479), - [anon_sym_AMP_EQ] = ACTIONS(5479), - [anon_sym_CARET_EQ] = ACTIONS(5479), - [anon_sym_PIPE_EQ] = ACTIONS(5479), - [anon_sym_and_eq] = ACTIONS(5479), - [anon_sym_or_eq] = ACTIONS(5479), - [anon_sym_xor_eq] = ACTIONS(5479), - [anon_sym_LT_EQ_GT] = ACTIONS(5479), - [anon_sym_or] = ACTIONS(5477), - [anon_sym_and] = ACTIONS(5477), - [anon_sym_bitor] = ACTIONS(5479), - [anon_sym_xor] = ACTIONS(5477), - [anon_sym_bitand] = ACTIONS(5479), - [anon_sym_not_eq] = ACTIONS(5479), - [anon_sym_DASH_DASH] = ACTIONS(5479), - [anon_sym_PLUS_PLUS] = ACTIONS(5479), - [anon_sym_DOT] = ACTIONS(5477), - [anon_sym_DOT_STAR] = ACTIONS(5479), - [anon_sym_DASH_GT] = ACTIONS(5479), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5479), - [anon_sym_decltype] = ACTIONS(5479), - [anon_sym_final] = ACTIONS(5479), - [anon_sym_override] = ACTIONS(5479), - [sym_semgrep_metavar] = ACTIONS(5479), + [1845] = { + [sym_string_literal] = STATE(1845), + [sym_raw_string_literal] = STATE(1845), + [aux_sym_concatenated_string_repeat1] = STATE(1845), + [ts_builtin_sym_end] = ACTIONS(5562), + [sym_identifier] = ACTIONS(5564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5562), + [anon_sym_COMMA] = ACTIONS(5562), + [anon_sym_RPAREN] = ACTIONS(5562), + [aux_sym_preproc_if_token2] = ACTIONS(5562), + [aux_sym_preproc_else_token1] = ACTIONS(5562), + [aux_sym_preproc_elif_token1] = ACTIONS(5567), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5562), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5562), + [anon_sym_LPAREN2] = ACTIONS(5562), + [anon_sym_DASH] = ACTIONS(5567), + [anon_sym_PLUS] = ACTIONS(5567), + [anon_sym_STAR] = ACTIONS(5567), + [anon_sym_SLASH] = ACTIONS(5567), + [anon_sym_PERCENT] = ACTIONS(5567), + [anon_sym_PIPE_PIPE] = ACTIONS(5562), + [anon_sym_AMP_AMP] = ACTIONS(5562), + [anon_sym_PIPE] = ACTIONS(5567), + [anon_sym_CARET] = ACTIONS(5567), + [anon_sym_AMP] = ACTIONS(5567), + [anon_sym_EQ_EQ] = ACTIONS(5562), + [anon_sym_BANG_EQ] = ACTIONS(5562), + [anon_sym_GT] = ACTIONS(5567), + [anon_sym_GT_EQ] = ACTIONS(5562), + [anon_sym_LT_EQ] = ACTIONS(5567), + [anon_sym_LT] = ACTIONS(5567), + [anon_sym_LT_LT] = ACTIONS(5567), + [anon_sym_GT_GT] = ACTIONS(5567), + [anon_sym_SEMI] = ACTIONS(5562), + [anon_sym_RBRACE] = ACTIONS(5562), + [anon_sym_LBRACK] = ACTIONS(5562), + [anon_sym_RBRACK] = ACTIONS(5562), + [anon_sym_EQ] = ACTIONS(5567), + [anon_sym_COLON] = ACTIONS(5562), + [anon_sym_QMARK] = ACTIONS(5562), + [anon_sym_STAR_EQ] = ACTIONS(5562), + [anon_sym_SLASH_EQ] = ACTIONS(5562), + [anon_sym_PERCENT_EQ] = ACTIONS(5562), + [anon_sym_PLUS_EQ] = ACTIONS(5562), + [anon_sym_DASH_EQ] = ACTIONS(5562), + [anon_sym_LT_LT_EQ] = ACTIONS(5562), + [anon_sym_GT_GT_EQ] = ACTIONS(5562), + [anon_sym_AMP_EQ] = ACTIONS(5562), + [anon_sym_CARET_EQ] = ACTIONS(5562), + [anon_sym_PIPE_EQ] = ACTIONS(5562), + [anon_sym_and_eq] = ACTIONS(5567), + [anon_sym_or_eq] = ACTIONS(5567), + [anon_sym_xor_eq] = ACTIONS(5567), + [anon_sym_LT_EQ_GT] = ACTIONS(5562), + [anon_sym_or] = ACTIONS(5567), + [anon_sym_and] = ACTIONS(5567), + [anon_sym_bitor] = ACTIONS(5567), + [anon_sym_xor] = ACTIONS(5567), + [anon_sym_bitand] = ACTIONS(5567), + [anon_sym_not_eq] = ACTIONS(5567), + [anon_sym_DASH_DASH] = ACTIONS(5562), + [anon_sym_PLUS_PLUS] = ACTIONS(5562), + [anon_sym_DOT] = ACTIONS(5567), + [anon_sym_DOT_STAR] = ACTIONS(5562), + [anon_sym_DASH_GT] = ACTIONS(5562), + [anon_sym_L_DQUOTE] = ACTIONS(5569), + [anon_sym_u_DQUOTE] = ACTIONS(5569), + [anon_sym_U_DQUOTE] = ACTIONS(5569), + [anon_sym_u8_DQUOTE] = ACTIONS(5569), + [anon_sym_DQUOTE] = ACTIONS(5569), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5572), + [anon_sym_LR_DQUOTE] = ACTIONS(5572), + [anon_sym_uR_DQUOTE] = ACTIONS(5572), + [anon_sym_UR_DQUOTE] = ACTIONS(5572), + [anon_sym_u8R_DQUOTE] = ACTIONS(5572), + [sym_literal_suffix] = ACTIONS(5567), }, - [1878] = { - [ts_builtin_sym_end] = ACTIONS(5483), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5483), - [anon_sym_COMMA] = ACTIONS(5483), - [anon_sym_RPAREN] = ACTIONS(5483), - [anon_sym_LPAREN2] = ACTIONS(5483), - [anon_sym_DASH] = ACTIONS(5481), - [anon_sym_PLUS] = ACTIONS(5481), - [anon_sym_STAR] = ACTIONS(5481), - [anon_sym_SLASH] = ACTIONS(5481), - [anon_sym_PERCENT] = ACTIONS(5481), - [anon_sym_PIPE_PIPE] = ACTIONS(5483), - [anon_sym_AMP_AMP] = ACTIONS(5483), - [anon_sym_PIPE] = ACTIONS(5481), - [anon_sym_CARET] = ACTIONS(5481), - [anon_sym_AMP] = ACTIONS(5481), - [anon_sym_EQ_EQ] = ACTIONS(5483), - [anon_sym_BANG_EQ] = ACTIONS(5483), - [anon_sym_GT] = ACTIONS(5481), - [anon_sym_GT_EQ] = ACTIONS(5483), - [anon_sym_LT_EQ] = ACTIONS(5481), - [anon_sym_LT] = ACTIONS(5481), - [anon_sym_LT_LT] = ACTIONS(5481), - [anon_sym_GT_GT] = ACTIONS(5481), - [anon_sym_SEMI] = ACTIONS(5483), - [anon_sym___extension__] = ACTIONS(5483), - [anon_sym___attribute__] = ACTIONS(5483), - [anon_sym_COLON_COLON] = ACTIONS(5483), - [anon_sym_LBRACE] = ACTIONS(5483), - [anon_sym_RBRACE] = ACTIONS(5483), - [anon_sym_LBRACK] = ACTIONS(5483), - [anon_sym_RBRACK] = ACTIONS(5483), - [anon_sym_EQ] = ACTIONS(5481), - [anon_sym_const] = ACTIONS(5481), - [anon_sym_constexpr] = ACTIONS(5483), - [anon_sym_volatile] = ACTIONS(5483), - [anon_sym_restrict] = ACTIONS(5483), - [anon_sym___restrict__] = ACTIONS(5483), - [anon_sym__Atomic] = ACTIONS(5483), - [anon_sym__Noreturn] = ACTIONS(5483), - [anon_sym_noreturn] = ACTIONS(5483), - [anon_sym_mutable] = ACTIONS(5483), - [anon_sym_constinit] = ACTIONS(5483), - [anon_sym_consteval] = ACTIONS(5483), - [anon_sym_COLON] = ACTIONS(5481), - [anon_sym_QMARK] = ACTIONS(5483), - [anon_sym_STAR_EQ] = ACTIONS(5483), - [anon_sym_SLASH_EQ] = ACTIONS(5483), - [anon_sym_PERCENT_EQ] = ACTIONS(5483), - [anon_sym_PLUS_EQ] = ACTIONS(5483), - [anon_sym_DASH_EQ] = ACTIONS(5483), - [anon_sym_LT_LT_EQ] = ACTIONS(5483), - [anon_sym_GT_GT_EQ] = ACTIONS(5483), - [anon_sym_AMP_EQ] = ACTIONS(5483), - [anon_sym_CARET_EQ] = ACTIONS(5483), - [anon_sym_PIPE_EQ] = ACTIONS(5483), - [anon_sym_and_eq] = ACTIONS(5483), - [anon_sym_or_eq] = ACTIONS(5483), - [anon_sym_xor_eq] = ACTIONS(5483), - [anon_sym_LT_EQ_GT] = ACTIONS(5483), - [anon_sym_or] = ACTIONS(5481), - [anon_sym_and] = ACTIONS(5481), - [anon_sym_bitor] = ACTIONS(5483), - [anon_sym_xor] = ACTIONS(5481), - [anon_sym_bitand] = ACTIONS(5483), - [anon_sym_not_eq] = ACTIONS(5483), - [anon_sym_DASH_DASH] = ACTIONS(5483), - [anon_sym_PLUS_PLUS] = ACTIONS(5483), - [anon_sym_DOT] = ACTIONS(5481), - [anon_sym_DOT_STAR] = ACTIONS(5483), - [anon_sym_DASH_GT] = ACTIONS(5483), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5483), - [anon_sym_decltype] = ACTIONS(5483), - [anon_sym_final] = ACTIONS(5483), - [anon_sym_override] = ACTIONS(5483), - [sym_semgrep_metavar] = ACTIONS(5483), + [1846] = { + [ts_builtin_sym_end] = ACTIONS(5427), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5427), + [anon_sym_COMMA] = ACTIONS(5427), + [anon_sym_RPAREN] = ACTIONS(5427), + [anon_sym_LPAREN2] = ACTIONS(5427), + [anon_sym_DASH] = ACTIONS(5425), + [anon_sym_PLUS] = ACTIONS(5425), + [anon_sym_STAR] = ACTIONS(5425), + [anon_sym_SLASH] = ACTIONS(5425), + [anon_sym_PERCENT] = ACTIONS(5425), + [anon_sym_PIPE_PIPE] = ACTIONS(5427), + [anon_sym_AMP_AMP] = ACTIONS(5427), + [anon_sym_PIPE] = ACTIONS(5425), + [anon_sym_CARET] = ACTIONS(5425), + [anon_sym_AMP] = ACTIONS(5425), + [anon_sym_EQ_EQ] = ACTIONS(5427), + [anon_sym_BANG_EQ] = ACTIONS(5427), + [anon_sym_GT] = ACTIONS(5425), + [anon_sym_GT_EQ] = ACTIONS(5427), + [anon_sym_LT_EQ] = ACTIONS(5425), + [anon_sym_LT] = ACTIONS(5425), + [anon_sym_LT_LT] = ACTIONS(5425), + [anon_sym_GT_GT] = ACTIONS(5425), + [anon_sym_SEMI] = ACTIONS(5427), + [anon_sym___extension__] = ACTIONS(5427), + [anon_sym___attribute__] = ACTIONS(5427), + [anon_sym_COLON_COLON] = ACTIONS(5427), + [anon_sym_LBRACE] = ACTIONS(5427), + [anon_sym_RBRACE] = ACTIONS(5427), + [anon_sym_LBRACK] = ACTIONS(5427), + [anon_sym_RBRACK] = ACTIONS(5427), + [anon_sym_EQ] = ACTIONS(5425), + [anon_sym_const] = ACTIONS(5425), + [anon_sym_constexpr] = ACTIONS(5427), + [anon_sym_volatile] = ACTIONS(5427), + [anon_sym_restrict] = ACTIONS(5427), + [anon_sym___restrict__] = ACTIONS(5427), + [anon_sym__Atomic] = ACTIONS(5427), + [anon_sym__Noreturn] = ACTIONS(5427), + [anon_sym_noreturn] = ACTIONS(5427), + [anon_sym_mutable] = ACTIONS(5427), + [anon_sym_constinit] = ACTIONS(5427), + [anon_sym_consteval] = ACTIONS(5427), + [anon_sym_COLON] = ACTIONS(5425), + [anon_sym_QMARK] = ACTIONS(5427), + [anon_sym_STAR_EQ] = ACTIONS(5427), + [anon_sym_SLASH_EQ] = ACTIONS(5427), + [anon_sym_PERCENT_EQ] = ACTIONS(5427), + [anon_sym_PLUS_EQ] = ACTIONS(5427), + [anon_sym_DASH_EQ] = ACTIONS(5427), + [anon_sym_LT_LT_EQ] = ACTIONS(5427), + [anon_sym_GT_GT_EQ] = ACTIONS(5427), + [anon_sym_AMP_EQ] = ACTIONS(5427), + [anon_sym_CARET_EQ] = ACTIONS(5427), + [anon_sym_PIPE_EQ] = ACTIONS(5427), + [anon_sym_and_eq] = ACTIONS(5427), + [anon_sym_or_eq] = ACTIONS(5427), + [anon_sym_xor_eq] = ACTIONS(5427), + [anon_sym_LT_EQ_GT] = ACTIONS(5427), + [anon_sym_or] = ACTIONS(5425), + [anon_sym_and] = ACTIONS(5425), + [anon_sym_bitor] = ACTIONS(5427), + [anon_sym_xor] = ACTIONS(5425), + [anon_sym_bitand] = ACTIONS(5427), + [anon_sym_not_eq] = ACTIONS(5427), + [anon_sym_DASH_DASH] = ACTIONS(5427), + [anon_sym_PLUS_PLUS] = ACTIONS(5427), + [anon_sym_DOT] = ACTIONS(5425), + [anon_sym_DOT_STAR] = ACTIONS(5427), + [anon_sym_DASH_GT] = ACTIONS(5427), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5427), + [anon_sym_decltype] = ACTIONS(5427), + [anon_sym_final] = ACTIONS(5427), + [anon_sym_override] = ACTIONS(5427), + [sym_semgrep_metavar] = ACTIONS(5427), }, - [1879] = { - [ts_builtin_sym_end] = ACTIONS(5502), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5502), - [anon_sym_COMMA] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(5502), - [anon_sym_LPAREN2] = ACTIONS(5502), - [anon_sym_DASH] = ACTIONS(5500), - [anon_sym_PLUS] = ACTIONS(5500), - [anon_sym_STAR] = ACTIONS(5500), - [anon_sym_SLASH] = ACTIONS(5500), - [anon_sym_PERCENT] = ACTIONS(5500), - [anon_sym_PIPE_PIPE] = ACTIONS(5502), - [anon_sym_AMP_AMP] = ACTIONS(5502), - [anon_sym_PIPE] = ACTIONS(5500), - [anon_sym_CARET] = ACTIONS(5500), - [anon_sym_AMP] = ACTIONS(5500), - [anon_sym_EQ_EQ] = ACTIONS(5502), - [anon_sym_BANG_EQ] = ACTIONS(5502), - [anon_sym_GT] = ACTIONS(5500), - [anon_sym_GT_EQ] = ACTIONS(5502), - [anon_sym_LT_EQ] = ACTIONS(5500), - [anon_sym_LT] = ACTIONS(5500), - [anon_sym_LT_LT] = ACTIONS(5500), - [anon_sym_GT_GT] = ACTIONS(5500), - [anon_sym_SEMI] = ACTIONS(5502), - [anon_sym___extension__] = ACTIONS(5502), - [anon_sym___attribute__] = ACTIONS(5502), - [anon_sym_COLON_COLON] = ACTIONS(5502), - [anon_sym_LBRACE] = ACTIONS(5502), - [anon_sym_RBRACE] = ACTIONS(5502), - [anon_sym_LBRACK] = ACTIONS(5502), - [anon_sym_RBRACK] = ACTIONS(5502), - [anon_sym_EQ] = ACTIONS(5500), - [anon_sym_const] = ACTIONS(5500), - [anon_sym_constexpr] = ACTIONS(5502), - [anon_sym_volatile] = ACTIONS(5502), - [anon_sym_restrict] = ACTIONS(5502), - [anon_sym___restrict__] = ACTIONS(5502), - [anon_sym__Atomic] = ACTIONS(5502), - [anon_sym__Noreturn] = ACTIONS(5502), - [anon_sym_noreturn] = ACTIONS(5502), - [anon_sym_mutable] = ACTIONS(5502), - [anon_sym_constinit] = ACTIONS(5502), - [anon_sym_consteval] = ACTIONS(5502), - [anon_sym_COLON] = ACTIONS(5500), - [anon_sym_QMARK] = ACTIONS(5502), - [anon_sym_STAR_EQ] = ACTIONS(5502), - [anon_sym_SLASH_EQ] = ACTIONS(5502), - [anon_sym_PERCENT_EQ] = ACTIONS(5502), - [anon_sym_PLUS_EQ] = ACTIONS(5502), - [anon_sym_DASH_EQ] = ACTIONS(5502), - [anon_sym_LT_LT_EQ] = ACTIONS(5502), - [anon_sym_GT_GT_EQ] = ACTIONS(5502), - [anon_sym_AMP_EQ] = ACTIONS(5502), - [anon_sym_CARET_EQ] = ACTIONS(5502), - [anon_sym_PIPE_EQ] = ACTIONS(5502), - [anon_sym_and_eq] = ACTIONS(5502), - [anon_sym_or_eq] = ACTIONS(5502), - [anon_sym_xor_eq] = ACTIONS(5502), - [anon_sym_LT_EQ_GT] = ACTIONS(5502), - [anon_sym_or] = ACTIONS(5500), - [anon_sym_and] = ACTIONS(5500), - [anon_sym_bitor] = ACTIONS(5502), - [anon_sym_xor] = ACTIONS(5500), - [anon_sym_bitand] = ACTIONS(5502), - [anon_sym_not_eq] = ACTIONS(5502), - [anon_sym_DASH_DASH] = ACTIONS(5502), - [anon_sym_PLUS_PLUS] = ACTIONS(5502), - [anon_sym_DOT] = ACTIONS(5500), - [anon_sym_DOT_STAR] = ACTIONS(5502), - [anon_sym_DASH_GT] = ACTIONS(5502), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5502), - [anon_sym_decltype] = ACTIONS(5502), - [anon_sym_final] = ACTIONS(5502), - [anon_sym_override] = ACTIONS(5502), - [sym_semgrep_metavar] = ACTIONS(5502), + [1847] = { + [ts_builtin_sym_end] = ACTIONS(5423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5423), + [anon_sym_COMMA] = ACTIONS(5423), + [anon_sym_RPAREN] = ACTIONS(5423), + [anon_sym_LPAREN2] = ACTIONS(5423), + [anon_sym_DASH] = ACTIONS(5421), + [anon_sym_PLUS] = ACTIONS(5421), + [anon_sym_STAR] = ACTIONS(5421), + [anon_sym_SLASH] = ACTIONS(5421), + [anon_sym_PERCENT] = ACTIONS(5421), + [anon_sym_PIPE_PIPE] = ACTIONS(5423), + [anon_sym_AMP_AMP] = ACTIONS(5423), + [anon_sym_PIPE] = ACTIONS(5421), + [anon_sym_CARET] = ACTIONS(5421), + [anon_sym_AMP] = ACTIONS(5421), + [anon_sym_EQ_EQ] = ACTIONS(5423), + [anon_sym_BANG_EQ] = ACTIONS(5423), + [anon_sym_GT] = ACTIONS(5421), + [anon_sym_GT_EQ] = ACTIONS(5423), + [anon_sym_LT_EQ] = ACTIONS(5421), + [anon_sym_LT] = ACTIONS(5421), + [anon_sym_LT_LT] = ACTIONS(5421), + [anon_sym_GT_GT] = ACTIONS(5421), + [anon_sym_SEMI] = ACTIONS(5423), + [anon_sym___extension__] = ACTIONS(5423), + [anon_sym___attribute__] = ACTIONS(5423), + [anon_sym_COLON_COLON] = ACTIONS(5423), + [anon_sym_LBRACE] = ACTIONS(5423), + [anon_sym_RBRACE] = ACTIONS(5423), + [anon_sym_LBRACK] = ACTIONS(5423), + [anon_sym_RBRACK] = ACTIONS(5423), + [anon_sym_EQ] = ACTIONS(5421), + [anon_sym_const] = ACTIONS(5421), + [anon_sym_constexpr] = ACTIONS(5423), + [anon_sym_volatile] = ACTIONS(5423), + [anon_sym_restrict] = ACTIONS(5423), + [anon_sym___restrict__] = ACTIONS(5423), + [anon_sym__Atomic] = ACTIONS(5423), + [anon_sym__Noreturn] = ACTIONS(5423), + [anon_sym_noreturn] = ACTIONS(5423), + [anon_sym_mutable] = ACTIONS(5423), + [anon_sym_constinit] = ACTIONS(5423), + [anon_sym_consteval] = ACTIONS(5423), + [anon_sym_COLON] = ACTIONS(5421), + [anon_sym_QMARK] = ACTIONS(5423), + [anon_sym_STAR_EQ] = ACTIONS(5423), + [anon_sym_SLASH_EQ] = ACTIONS(5423), + [anon_sym_PERCENT_EQ] = ACTIONS(5423), + [anon_sym_PLUS_EQ] = ACTIONS(5423), + [anon_sym_DASH_EQ] = ACTIONS(5423), + [anon_sym_LT_LT_EQ] = ACTIONS(5423), + [anon_sym_GT_GT_EQ] = ACTIONS(5423), + [anon_sym_AMP_EQ] = ACTIONS(5423), + [anon_sym_CARET_EQ] = ACTIONS(5423), + [anon_sym_PIPE_EQ] = ACTIONS(5423), + [anon_sym_and_eq] = ACTIONS(5423), + [anon_sym_or_eq] = ACTIONS(5423), + [anon_sym_xor_eq] = ACTIONS(5423), + [anon_sym_LT_EQ_GT] = ACTIONS(5423), + [anon_sym_or] = ACTIONS(5421), + [anon_sym_and] = ACTIONS(5421), + [anon_sym_bitor] = ACTIONS(5423), + [anon_sym_xor] = ACTIONS(5421), + [anon_sym_bitand] = ACTIONS(5423), + [anon_sym_not_eq] = ACTIONS(5423), + [anon_sym_DASH_DASH] = ACTIONS(5423), + [anon_sym_PLUS_PLUS] = ACTIONS(5423), + [anon_sym_DOT] = ACTIONS(5421), + [anon_sym_DOT_STAR] = ACTIONS(5423), + [anon_sym_DASH_GT] = ACTIONS(5423), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5423), + [anon_sym_decltype] = ACTIONS(5423), + [anon_sym_final] = ACTIONS(5423), + [anon_sym_override] = ACTIONS(5423), + [sym_semgrep_metavar] = ACTIONS(5423), }, - [1880] = { - [ts_builtin_sym_end] = ACTIONS(5498), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5498), - [anon_sym_COMMA] = ACTIONS(5498), - [anon_sym_RPAREN] = ACTIONS(5498), - [anon_sym_LPAREN2] = ACTIONS(5498), - [anon_sym_DASH] = ACTIONS(5496), - [anon_sym_PLUS] = ACTIONS(5496), - [anon_sym_STAR] = ACTIONS(5496), - [anon_sym_SLASH] = ACTIONS(5496), - [anon_sym_PERCENT] = ACTIONS(5496), - [anon_sym_PIPE_PIPE] = ACTIONS(5498), - [anon_sym_AMP_AMP] = ACTIONS(5498), - [anon_sym_PIPE] = ACTIONS(5496), - [anon_sym_CARET] = ACTIONS(5496), - [anon_sym_AMP] = ACTIONS(5496), - [anon_sym_EQ_EQ] = ACTIONS(5498), - [anon_sym_BANG_EQ] = ACTIONS(5498), - [anon_sym_GT] = ACTIONS(5496), - [anon_sym_GT_EQ] = ACTIONS(5498), - [anon_sym_LT_EQ] = ACTIONS(5496), - [anon_sym_LT] = ACTIONS(5496), - [anon_sym_LT_LT] = ACTIONS(5496), - [anon_sym_GT_GT] = ACTIONS(5496), - [anon_sym_SEMI] = ACTIONS(5498), - [anon_sym___extension__] = ACTIONS(5498), - [anon_sym___attribute__] = ACTIONS(5498), - [anon_sym_COLON_COLON] = ACTIONS(5498), - [anon_sym_LBRACE] = ACTIONS(5498), - [anon_sym_RBRACE] = ACTIONS(5498), - [anon_sym_LBRACK] = ACTIONS(5498), - [anon_sym_RBRACK] = ACTIONS(5498), - [anon_sym_EQ] = ACTIONS(5496), - [anon_sym_const] = ACTIONS(5496), - [anon_sym_constexpr] = ACTIONS(5498), - [anon_sym_volatile] = ACTIONS(5498), - [anon_sym_restrict] = ACTIONS(5498), - [anon_sym___restrict__] = ACTIONS(5498), - [anon_sym__Atomic] = ACTIONS(5498), - [anon_sym__Noreturn] = ACTIONS(5498), - [anon_sym_noreturn] = ACTIONS(5498), - [anon_sym_mutable] = ACTIONS(5498), - [anon_sym_constinit] = ACTIONS(5498), - [anon_sym_consteval] = ACTIONS(5498), - [anon_sym_COLON] = ACTIONS(5496), - [anon_sym_QMARK] = ACTIONS(5498), - [anon_sym_STAR_EQ] = ACTIONS(5498), - [anon_sym_SLASH_EQ] = ACTIONS(5498), - [anon_sym_PERCENT_EQ] = ACTIONS(5498), - [anon_sym_PLUS_EQ] = ACTIONS(5498), - [anon_sym_DASH_EQ] = ACTIONS(5498), - [anon_sym_LT_LT_EQ] = ACTIONS(5498), - [anon_sym_GT_GT_EQ] = ACTIONS(5498), - [anon_sym_AMP_EQ] = ACTIONS(5498), - [anon_sym_CARET_EQ] = ACTIONS(5498), - [anon_sym_PIPE_EQ] = ACTIONS(5498), - [anon_sym_and_eq] = ACTIONS(5498), - [anon_sym_or_eq] = ACTIONS(5498), - [anon_sym_xor_eq] = ACTIONS(5498), - [anon_sym_LT_EQ_GT] = ACTIONS(5498), - [anon_sym_or] = ACTIONS(5496), - [anon_sym_and] = ACTIONS(5496), - [anon_sym_bitor] = ACTIONS(5498), - [anon_sym_xor] = ACTIONS(5496), - [anon_sym_bitand] = ACTIONS(5498), - [anon_sym_not_eq] = ACTIONS(5498), - [anon_sym_DASH_DASH] = ACTIONS(5498), - [anon_sym_PLUS_PLUS] = ACTIONS(5498), - [anon_sym_DOT] = ACTIONS(5496), - [anon_sym_DOT_STAR] = ACTIONS(5498), - [anon_sym_DASH_GT] = ACTIONS(5498), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5498), - [anon_sym_decltype] = ACTIONS(5498), - [anon_sym_final] = ACTIONS(5498), - [anon_sym_override] = ACTIONS(5498), - [sym_semgrep_metavar] = ACTIONS(5498), + [1848] = { + [ts_builtin_sym_end] = ACTIONS(5431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5431), + [anon_sym_COMMA] = ACTIONS(5431), + [anon_sym_RPAREN] = ACTIONS(5431), + [anon_sym_LPAREN2] = ACTIONS(5431), + [anon_sym_DASH] = ACTIONS(5429), + [anon_sym_PLUS] = ACTIONS(5429), + [anon_sym_STAR] = ACTIONS(5429), + [anon_sym_SLASH] = ACTIONS(5429), + [anon_sym_PERCENT] = ACTIONS(5429), + [anon_sym_PIPE_PIPE] = ACTIONS(5431), + [anon_sym_AMP_AMP] = ACTIONS(5431), + [anon_sym_PIPE] = ACTIONS(5429), + [anon_sym_CARET] = ACTIONS(5429), + [anon_sym_AMP] = ACTIONS(5429), + [anon_sym_EQ_EQ] = ACTIONS(5431), + [anon_sym_BANG_EQ] = ACTIONS(5431), + [anon_sym_GT] = ACTIONS(5429), + [anon_sym_GT_EQ] = ACTIONS(5431), + [anon_sym_LT_EQ] = ACTIONS(5429), + [anon_sym_LT] = ACTIONS(5429), + [anon_sym_LT_LT] = ACTIONS(5429), + [anon_sym_GT_GT] = ACTIONS(5429), + [anon_sym_SEMI] = ACTIONS(5431), + [anon_sym___extension__] = ACTIONS(5431), + [anon_sym___attribute__] = ACTIONS(5431), + [anon_sym_COLON_COLON] = ACTIONS(5431), + [anon_sym_LBRACE] = ACTIONS(5431), + [anon_sym_RBRACE] = ACTIONS(5431), + [anon_sym_LBRACK] = ACTIONS(5431), + [anon_sym_RBRACK] = ACTIONS(5431), + [anon_sym_EQ] = ACTIONS(5429), + [anon_sym_const] = ACTIONS(5429), + [anon_sym_constexpr] = ACTIONS(5431), + [anon_sym_volatile] = ACTIONS(5431), + [anon_sym_restrict] = ACTIONS(5431), + [anon_sym___restrict__] = ACTIONS(5431), + [anon_sym__Atomic] = ACTIONS(5431), + [anon_sym__Noreturn] = ACTIONS(5431), + [anon_sym_noreturn] = ACTIONS(5431), + [anon_sym_mutable] = ACTIONS(5431), + [anon_sym_constinit] = ACTIONS(5431), + [anon_sym_consteval] = ACTIONS(5431), + [anon_sym_COLON] = ACTIONS(5429), + [anon_sym_QMARK] = ACTIONS(5431), + [anon_sym_STAR_EQ] = ACTIONS(5431), + [anon_sym_SLASH_EQ] = ACTIONS(5431), + [anon_sym_PERCENT_EQ] = ACTIONS(5431), + [anon_sym_PLUS_EQ] = ACTIONS(5431), + [anon_sym_DASH_EQ] = ACTIONS(5431), + [anon_sym_LT_LT_EQ] = ACTIONS(5431), + [anon_sym_GT_GT_EQ] = ACTIONS(5431), + [anon_sym_AMP_EQ] = ACTIONS(5431), + [anon_sym_CARET_EQ] = ACTIONS(5431), + [anon_sym_PIPE_EQ] = ACTIONS(5431), + [anon_sym_and_eq] = ACTIONS(5431), + [anon_sym_or_eq] = ACTIONS(5431), + [anon_sym_xor_eq] = ACTIONS(5431), + [anon_sym_LT_EQ_GT] = ACTIONS(5431), + [anon_sym_or] = ACTIONS(5429), + [anon_sym_and] = ACTIONS(5429), + [anon_sym_bitor] = ACTIONS(5431), + [anon_sym_xor] = ACTIONS(5429), + [anon_sym_bitand] = ACTIONS(5431), + [anon_sym_not_eq] = ACTIONS(5431), + [anon_sym_DASH_DASH] = ACTIONS(5431), + [anon_sym_PLUS_PLUS] = ACTIONS(5431), + [anon_sym_DOT] = ACTIONS(5429), + [anon_sym_DOT_STAR] = ACTIONS(5431), + [anon_sym_DASH_GT] = ACTIONS(5431), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5431), + [anon_sym_decltype] = ACTIONS(5431), + [anon_sym_final] = ACTIONS(5431), + [anon_sym_override] = ACTIONS(5431), + [sym_semgrep_metavar] = ACTIONS(5431), }, - [1881] = { - [ts_builtin_sym_end] = ACTIONS(5509), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5509), - [anon_sym_COMMA] = ACTIONS(5509), - [anon_sym_RPAREN] = ACTIONS(5509), - [anon_sym_LPAREN2] = ACTIONS(5509), - [anon_sym_DASH] = ACTIONS(5507), - [anon_sym_PLUS] = ACTIONS(5507), - [anon_sym_STAR] = ACTIONS(5507), - [anon_sym_SLASH] = ACTIONS(5507), - [anon_sym_PERCENT] = ACTIONS(5507), - [anon_sym_PIPE_PIPE] = ACTIONS(5509), - [anon_sym_AMP_AMP] = ACTIONS(5509), - [anon_sym_PIPE] = ACTIONS(5507), - [anon_sym_CARET] = ACTIONS(5507), - [anon_sym_AMP] = ACTIONS(5507), - [anon_sym_EQ_EQ] = ACTIONS(5509), - [anon_sym_BANG_EQ] = ACTIONS(5509), - [anon_sym_GT] = ACTIONS(5507), - [anon_sym_GT_EQ] = ACTIONS(5509), - [anon_sym_LT_EQ] = ACTIONS(5507), - [anon_sym_LT] = ACTIONS(5507), - [anon_sym_LT_LT] = ACTIONS(5507), - [anon_sym_GT_GT] = ACTIONS(5507), - [anon_sym_SEMI] = ACTIONS(5509), - [anon_sym___extension__] = ACTIONS(5509), - [anon_sym___attribute__] = ACTIONS(5509), - [anon_sym_COLON_COLON] = ACTIONS(5509), - [anon_sym_LBRACE] = ACTIONS(5509), - [anon_sym_RBRACE] = ACTIONS(5509), - [anon_sym_LBRACK] = ACTIONS(5509), - [anon_sym_RBRACK] = ACTIONS(5509), - [anon_sym_EQ] = ACTIONS(5507), - [anon_sym_const] = ACTIONS(5507), - [anon_sym_constexpr] = ACTIONS(5509), - [anon_sym_volatile] = ACTIONS(5509), - [anon_sym_restrict] = ACTIONS(5509), - [anon_sym___restrict__] = ACTIONS(5509), - [anon_sym__Atomic] = ACTIONS(5509), - [anon_sym__Noreturn] = ACTIONS(5509), - [anon_sym_noreturn] = ACTIONS(5509), - [anon_sym_mutable] = ACTIONS(5509), - [anon_sym_constinit] = ACTIONS(5509), - [anon_sym_consteval] = ACTIONS(5509), - [anon_sym_COLON] = ACTIONS(5507), - [anon_sym_QMARK] = ACTIONS(5509), - [anon_sym_STAR_EQ] = ACTIONS(5509), - [anon_sym_SLASH_EQ] = ACTIONS(5509), - [anon_sym_PERCENT_EQ] = ACTIONS(5509), - [anon_sym_PLUS_EQ] = ACTIONS(5509), - [anon_sym_DASH_EQ] = ACTIONS(5509), - [anon_sym_LT_LT_EQ] = ACTIONS(5509), - [anon_sym_GT_GT_EQ] = ACTIONS(5509), - [anon_sym_AMP_EQ] = ACTIONS(5509), - [anon_sym_CARET_EQ] = ACTIONS(5509), - [anon_sym_PIPE_EQ] = ACTIONS(5509), - [anon_sym_and_eq] = ACTIONS(5509), - [anon_sym_or_eq] = ACTIONS(5509), - [anon_sym_xor_eq] = ACTIONS(5509), - [anon_sym_LT_EQ_GT] = ACTIONS(5509), - [anon_sym_or] = ACTIONS(5507), - [anon_sym_and] = ACTIONS(5507), - [anon_sym_bitor] = ACTIONS(5509), - [anon_sym_xor] = ACTIONS(5507), - [anon_sym_bitand] = ACTIONS(5509), - [anon_sym_not_eq] = ACTIONS(5509), - [anon_sym_DASH_DASH] = ACTIONS(5509), - [anon_sym_PLUS_PLUS] = ACTIONS(5509), - [anon_sym_DOT] = ACTIONS(5507), - [anon_sym_DOT_STAR] = ACTIONS(5509), - [anon_sym_DASH_GT] = ACTIONS(5509), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5509), - [anon_sym_decltype] = ACTIONS(5509), - [anon_sym_final] = ACTIONS(5509), - [anon_sym_override] = ACTIONS(5509), - [sym_semgrep_metavar] = ACTIONS(5509), + [1849] = { + [ts_builtin_sym_end] = ACTIONS(5396), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5396), + [anon_sym_COMMA] = ACTIONS(5396), + [anon_sym_RPAREN] = ACTIONS(5396), + [anon_sym_LPAREN2] = ACTIONS(5396), + [anon_sym_DASH] = ACTIONS(5394), + [anon_sym_PLUS] = ACTIONS(5394), + [anon_sym_STAR] = ACTIONS(5394), + [anon_sym_SLASH] = ACTIONS(5394), + [anon_sym_PERCENT] = ACTIONS(5394), + [anon_sym_PIPE_PIPE] = ACTIONS(5396), + [anon_sym_AMP_AMP] = ACTIONS(5396), + [anon_sym_PIPE] = ACTIONS(5394), + [anon_sym_CARET] = ACTIONS(5394), + [anon_sym_AMP] = ACTIONS(5394), + [anon_sym_EQ_EQ] = ACTIONS(5396), + [anon_sym_BANG_EQ] = ACTIONS(5396), + [anon_sym_GT] = ACTIONS(5394), + [anon_sym_GT_EQ] = ACTIONS(5396), + [anon_sym_LT_EQ] = ACTIONS(5394), + [anon_sym_LT] = ACTIONS(5394), + [anon_sym_LT_LT] = ACTIONS(5394), + [anon_sym_GT_GT] = ACTIONS(5394), + [anon_sym_SEMI] = ACTIONS(5396), + [anon_sym___extension__] = ACTIONS(5396), + [anon_sym___attribute__] = ACTIONS(5396), + [anon_sym_COLON_COLON] = ACTIONS(5396), + [anon_sym_LBRACE] = ACTIONS(5396), + [anon_sym_RBRACE] = ACTIONS(5396), + [anon_sym_LBRACK] = ACTIONS(5396), + [anon_sym_RBRACK] = ACTIONS(5396), + [anon_sym_EQ] = ACTIONS(5394), + [anon_sym_const] = ACTIONS(5394), + [anon_sym_constexpr] = ACTIONS(5396), + [anon_sym_volatile] = ACTIONS(5396), + [anon_sym_restrict] = ACTIONS(5396), + [anon_sym___restrict__] = ACTIONS(5396), + [anon_sym__Atomic] = ACTIONS(5396), + [anon_sym__Noreturn] = ACTIONS(5396), + [anon_sym_noreturn] = ACTIONS(5396), + [anon_sym_mutable] = ACTIONS(5396), + [anon_sym_constinit] = ACTIONS(5396), + [anon_sym_consteval] = ACTIONS(5396), + [anon_sym_COLON] = ACTIONS(5394), + [anon_sym_QMARK] = ACTIONS(5396), + [anon_sym_STAR_EQ] = ACTIONS(5396), + [anon_sym_SLASH_EQ] = ACTIONS(5396), + [anon_sym_PERCENT_EQ] = ACTIONS(5396), + [anon_sym_PLUS_EQ] = ACTIONS(5396), + [anon_sym_DASH_EQ] = ACTIONS(5396), + [anon_sym_LT_LT_EQ] = ACTIONS(5396), + [anon_sym_GT_GT_EQ] = ACTIONS(5396), + [anon_sym_AMP_EQ] = ACTIONS(5396), + [anon_sym_CARET_EQ] = ACTIONS(5396), + [anon_sym_PIPE_EQ] = ACTIONS(5396), + [anon_sym_and_eq] = ACTIONS(5396), + [anon_sym_or_eq] = ACTIONS(5396), + [anon_sym_xor_eq] = ACTIONS(5396), + [anon_sym_LT_EQ_GT] = ACTIONS(5396), + [anon_sym_or] = ACTIONS(5394), + [anon_sym_and] = ACTIONS(5394), + [anon_sym_bitor] = ACTIONS(5396), + [anon_sym_xor] = ACTIONS(5394), + [anon_sym_bitand] = ACTIONS(5396), + [anon_sym_not_eq] = ACTIONS(5396), + [anon_sym_DASH_DASH] = ACTIONS(5396), + [anon_sym_PLUS_PLUS] = ACTIONS(5396), + [anon_sym_DOT] = ACTIONS(5394), + [anon_sym_DOT_STAR] = ACTIONS(5396), + [anon_sym_DASH_GT] = ACTIONS(5396), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5396), + [anon_sym_decltype] = ACTIONS(5396), + [anon_sym_final] = ACTIONS(5396), + [anon_sym_override] = ACTIONS(5396), + [sym_semgrep_metavar] = ACTIONS(5396), }, - [1882] = { - [ts_builtin_sym_end] = ACTIONS(5513), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5513), - [anon_sym_COMMA] = ACTIONS(5513), - [anon_sym_RPAREN] = ACTIONS(5513), - [anon_sym_LPAREN2] = ACTIONS(5513), - [anon_sym_DASH] = ACTIONS(5511), - [anon_sym_PLUS] = ACTIONS(5511), - [anon_sym_STAR] = ACTIONS(5511), - [anon_sym_SLASH] = ACTIONS(5511), - [anon_sym_PERCENT] = ACTIONS(5511), - [anon_sym_PIPE_PIPE] = ACTIONS(5513), - [anon_sym_AMP_AMP] = ACTIONS(5513), - [anon_sym_PIPE] = ACTIONS(5511), - [anon_sym_CARET] = ACTIONS(5511), - [anon_sym_AMP] = ACTIONS(5511), - [anon_sym_EQ_EQ] = ACTIONS(5513), - [anon_sym_BANG_EQ] = ACTIONS(5513), - [anon_sym_GT] = ACTIONS(5511), - [anon_sym_GT_EQ] = ACTIONS(5513), - [anon_sym_LT_EQ] = ACTIONS(5511), - [anon_sym_LT] = ACTIONS(5511), - [anon_sym_LT_LT] = ACTIONS(5511), - [anon_sym_GT_GT] = ACTIONS(5511), - [anon_sym_SEMI] = ACTIONS(5513), - [anon_sym___extension__] = ACTIONS(5513), - [anon_sym___attribute__] = ACTIONS(5513), - [anon_sym_COLON_COLON] = ACTIONS(5513), - [anon_sym_LBRACE] = ACTIONS(5513), - [anon_sym_RBRACE] = ACTIONS(5513), - [anon_sym_LBRACK] = ACTIONS(5513), - [anon_sym_RBRACK] = ACTIONS(5513), - [anon_sym_EQ] = ACTIONS(5511), - [anon_sym_const] = ACTIONS(5511), - [anon_sym_constexpr] = ACTIONS(5513), - [anon_sym_volatile] = ACTIONS(5513), - [anon_sym_restrict] = ACTIONS(5513), - [anon_sym___restrict__] = ACTIONS(5513), - [anon_sym__Atomic] = ACTIONS(5513), - [anon_sym__Noreturn] = ACTIONS(5513), - [anon_sym_noreturn] = ACTIONS(5513), - [anon_sym_mutable] = ACTIONS(5513), - [anon_sym_constinit] = ACTIONS(5513), - [anon_sym_consteval] = ACTIONS(5513), - [anon_sym_COLON] = ACTIONS(5511), - [anon_sym_QMARK] = ACTIONS(5513), - [anon_sym_STAR_EQ] = ACTIONS(5513), - [anon_sym_SLASH_EQ] = ACTIONS(5513), - [anon_sym_PERCENT_EQ] = ACTIONS(5513), - [anon_sym_PLUS_EQ] = ACTIONS(5513), - [anon_sym_DASH_EQ] = ACTIONS(5513), - [anon_sym_LT_LT_EQ] = ACTIONS(5513), - [anon_sym_GT_GT_EQ] = ACTIONS(5513), - [anon_sym_AMP_EQ] = ACTIONS(5513), - [anon_sym_CARET_EQ] = ACTIONS(5513), - [anon_sym_PIPE_EQ] = ACTIONS(5513), - [anon_sym_and_eq] = ACTIONS(5513), - [anon_sym_or_eq] = ACTIONS(5513), - [anon_sym_xor_eq] = ACTIONS(5513), - [anon_sym_LT_EQ_GT] = ACTIONS(5513), - [anon_sym_or] = ACTIONS(5511), - [anon_sym_and] = ACTIONS(5511), - [anon_sym_bitor] = ACTIONS(5513), - [anon_sym_xor] = ACTIONS(5511), - [anon_sym_bitand] = ACTIONS(5513), - [anon_sym_not_eq] = ACTIONS(5513), - [anon_sym_DASH_DASH] = ACTIONS(5513), - [anon_sym_PLUS_PLUS] = ACTIONS(5513), - [anon_sym_DOT] = ACTIONS(5511), - [anon_sym_DOT_STAR] = ACTIONS(5513), - [anon_sym_DASH_GT] = ACTIONS(5513), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5513), - [anon_sym_decltype] = ACTIONS(5513), - [anon_sym_final] = ACTIONS(5513), - [anon_sym_override] = ACTIONS(5513), - [sym_semgrep_metavar] = ACTIONS(5513), + [1850] = { + [ts_builtin_sym_end] = ACTIONS(5419), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5419), + [anon_sym_COMMA] = ACTIONS(5419), + [anon_sym_RPAREN] = ACTIONS(5419), + [anon_sym_LPAREN2] = ACTIONS(5419), + [anon_sym_DASH] = ACTIONS(5417), + [anon_sym_PLUS] = ACTIONS(5417), + [anon_sym_STAR] = ACTIONS(5417), + [anon_sym_SLASH] = ACTIONS(5417), + [anon_sym_PERCENT] = ACTIONS(5417), + [anon_sym_PIPE_PIPE] = ACTIONS(5419), + [anon_sym_AMP_AMP] = ACTIONS(5419), + [anon_sym_PIPE] = ACTIONS(5417), + [anon_sym_CARET] = ACTIONS(5417), + [anon_sym_AMP] = ACTIONS(5417), + [anon_sym_EQ_EQ] = ACTIONS(5419), + [anon_sym_BANG_EQ] = ACTIONS(5419), + [anon_sym_GT] = ACTIONS(5417), + [anon_sym_GT_EQ] = ACTIONS(5419), + [anon_sym_LT_EQ] = ACTIONS(5417), + [anon_sym_LT] = ACTIONS(5417), + [anon_sym_LT_LT] = ACTIONS(5417), + [anon_sym_GT_GT] = ACTIONS(5417), + [anon_sym_SEMI] = ACTIONS(5419), + [anon_sym___extension__] = ACTIONS(5419), + [anon_sym___attribute__] = ACTIONS(5419), + [anon_sym_COLON_COLON] = ACTIONS(5419), + [anon_sym_LBRACE] = ACTIONS(5419), + [anon_sym_RBRACE] = ACTIONS(5419), + [anon_sym_LBRACK] = ACTIONS(5419), + [anon_sym_RBRACK] = ACTIONS(5419), + [anon_sym_EQ] = ACTIONS(5417), + [anon_sym_const] = ACTIONS(5417), + [anon_sym_constexpr] = ACTIONS(5419), + [anon_sym_volatile] = ACTIONS(5419), + [anon_sym_restrict] = ACTIONS(5419), + [anon_sym___restrict__] = ACTIONS(5419), + [anon_sym__Atomic] = ACTIONS(5419), + [anon_sym__Noreturn] = ACTIONS(5419), + [anon_sym_noreturn] = ACTIONS(5419), + [anon_sym_mutable] = ACTIONS(5419), + [anon_sym_constinit] = ACTIONS(5419), + [anon_sym_consteval] = ACTIONS(5419), + [anon_sym_COLON] = ACTIONS(5417), + [anon_sym_QMARK] = ACTIONS(5419), + [anon_sym_STAR_EQ] = ACTIONS(5419), + [anon_sym_SLASH_EQ] = ACTIONS(5419), + [anon_sym_PERCENT_EQ] = ACTIONS(5419), + [anon_sym_PLUS_EQ] = ACTIONS(5419), + [anon_sym_DASH_EQ] = ACTIONS(5419), + [anon_sym_LT_LT_EQ] = ACTIONS(5419), + [anon_sym_GT_GT_EQ] = ACTIONS(5419), + [anon_sym_AMP_EQ] = ACTIONS(5419), + [anon_sym_CARET_EQ] = ACTIONS(5419), + [anon_sym_PIPE_EQ] = ACTIONS(5419), + [anon_sym_and_eq] = ACTIONS(5419), + [anon_sym_or_eq] = ACTIONS(5419), + [anon_sym_xor_eq] = ACTIONS(5419), + [anon_sym_LT_EQ_GT] = ACTIONS(5419), + [anon_sym_or] = ACTIONS(5417), + [anon_sym_and] = ACTIONS(5417), + [anon_sym_bitor] = ACTIONS(5419), + [anon_sym_xor] = ACTIONS(5417), + [anon_sym_bitand] = ACTIONS(5419), + [anon_sym_not_eq] = ACTIONS(5419), + [anon_sym_DASH_DASH] = ACTIONS(5419), + [anon_sym_PLUS_PLUS] = ACTIONS(5419), + [anon_sym_DOT] = ACTIONS(5417), + [anon_sym_DOT_STAR] = ACTIONS(5419), + [anon_sym_DASH_GT] = ACTIONS(5419), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5419), + [anon_sym_decltype] = ACTIONS(5419), + [anon_sym_final] = ACTIONS(5419), + [anon_sym_override] = ACTIONS(5419), + [sym_semgrep_metavar] = ACTIONS(5419), }, - [1883] = { - [ts_builtin_sym_end] = ACTIONS(5458), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5458), - [anon_sym_COMMA] = ACTIONS(5458), - [anon_sym_RPAREN] = ACTIONS(5458), - [anon_sym_LPAREN2] = ACTIONS(5458), - [anon_sym_DASH] = ACTIONS(5456), - [anon_sym_PLUS] = ACTIONS(5456), - [anon_sym_STAR] = ACTIONS(5456), - [anon_sym_SLASH] = ACTIONS(5456), - [anon_sym_PERCENT] = ACTIONS(5456), - [anon_sym_PIPE_PIPE] = ACTIONS(5458), - [anon_sym_AMP_AMP] = ACTIONS(5458), - [anon_sym_PIPE] = ACTIONS(5456), - [anon_sym_CARET] = ACTIONS(5456), - [anon_sym_AMP] = ACTIONS(5456), - [anon_sym_EQ_EQ] = ACTIONS(5458), - [anon_sym_BANG_EQ] = ACTIONS(5458), - [anon_sym_GT] = ACTIONS(5456), - [anon_sym_GT_EQ] = ACTIONS(5458), - [anon_sym_LT_EQ] = ACTIONS(5456), - [anon_sym_LT] = ACTIONS(5456), - [anon_sym_LT_LT] = ACTIONS(5456), - [anon_sym_GT_GT] = ACTIONS(5456), - [anon_sym_SEMI] = ACTIONS(5458), - [anon_sym___extension__] = ACTIONS(5458), - [anon_sym___attribute__] = ACTIONS(5458), - [anon_sym_COLON_COLON] = ACTIONS(5458), - [anon_sym_LBRACE] = ACTIONS(5458), - [anon_sym_RBRACE] = ACTIONS(5458), - [anon_sym_LBRACK] = ACTIONS(5458), - [anon_sym_RBRACK] = ACTIONS(5458), - [anon_sym_EQ] = ACTIONS(5456), - [anon_sym_const] = ACTIONS(5456), - [anon_sym_constexpr] = ACTIONS(5458), - [anon_sym_volatile] = ACTIONS(5458), - [anon_sym_restrict] = ACTIONS(5458), - [anon_sym___restrict__] = ACTIONS(5458), - [anon_sym__Atomic] = ACTIONS(5458), - [anon_sym__Noreturn] = ACTIONS(5458), - [anon_sym_noreturn] = ACTIONS(5458), - [anon_sym_mutable] = ACTIONS(5458), - [anon_sym_constinit] = ACTIONS(5458), - [anon_sym_consteval] = ACTIONS(5458), - [anon_sym_COLON] = ACTIONS(5456), - [anon_sym_QMARK] = ACTIONS(5458), - [anon_sym_STAR_EQ] = ACTIONS(5458), - [anon_sym_SLASH_EQ] = ACTIONS(5458), - [anon_sym_PERCENT_EQ] = ACTIONS(5458), - [anon_sym_PLUS_EQ] = ACTIONS(5458), - [anon_sym_DASH_EQ] = ACTIONS(5458), - [anon_sym_LT_LT_EQ] = ACTIONS(5458), - [anon_sym_GT_GT_EQ] = ACTIONS(5458), - [anon_sym_AMP_EQ] = ACTIONS(5458), - [anon_sym_CARET_EQ] = ACTIONS(5458), - [anon_sym_PIPE_EQ] = ACTIONS(5458), - [anon_sym_and_eq] = ACTIONS(5458), - [anon_sym_or_eq] = ACTIONS(5458), - [anon_sym_xor_eq] = ACTIONS(5458), - [anon_sym_LT_EQ_GT] = ACTIONS(5458), - [anon_sym_or] = ACTIONS(5456), - [anon_sym_and] = ACTIONS(5456), - [anon_sym_bitor] = ACTIONS(5458), - [anon_sym_xor] = ACTIONS(5456), - [anon_sym_bitand] = ACTIONS(5458), - [anon_sym_not_eq] = ACTIONS(5458), - [anon_sym_DASH_DASH] = ACTIONS(5458), - [anon_sym_PLUS_PLUS] = ACTIONS(5458), - [anon_sym_DOT] = ACTIONS(5456), - [anon_sym_DOT_STAR] = ACTIONS(5458), - [anon_sym_DASH_GT] = ACTIONS(5458), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5458), - [anon_sym_decltype] = ACTIONS(5458), - [anon_sym_final] = ACTIONS(5458), - [anon_sym_override] = ACTIONS(5458), - [sym_semgrep_metavar] = ACTIONS(5458), + [1851] = { + [ts_builtin_sym_end] = ACTIONS(5400), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5400), + [anon_sym_COMMA] = ACTIONS(5400), + [anon_sym_RPAREN] = ACTIONS(5400), + [anon_sym_LPAREN2] = ACTIONS(5400), + [anon_sym_DASH] = ACTIONS(5398), + [anon_sym_PLUS] = ACTIONS(5398), + [anon_sym_STAR] = ACTIONS(5398), + [anon_sym_SLASH] = ACTIONS(5398), + [anon_sym_PERCENT] = ACTIONS(5398), + [anon_sym_PIPE_PIPE] = ACTIONS(5400), + [anon_sym_AMP_AMP] = ACTIONS(5400), + [anon_sym_PIPE] = ACTIONS(5398), + [anon_sym_CARET] = ACTIONS(5398), + [anon_sym_AMP] = ACTIONS(5398), + [anon_sym_EQ_EQ] = ACTIONS(5400), + [anon_sym_BANG_EQ] = ACTIONS(5400), + [anon_sym_GT] = ACTIONS(5398), + [anon_sym_GT_EQ] = ACTIONS(5400), + [anon_sym_LT_EQ] = ACTIONS(5398), + [anon_sym_LT] = ACTIONS(5398), + [anon_sym_LT_LT] = ACTIONS(5398), + [anon_sym_GT_GT] = ACTIONS(5398), + [anon_sym_SEMI] = ACTIONS(5400), + [anon_sym___extension__] = ACTIONS(5400), + [anon_sym___attribute__] = ACTIONS(5400), + [anon_sym_COLON_COLON] = ACTIONS(5400), + [anon_sym_LBRACE] = ACTIONS(5400), + [anon_sym_RBRACE] = ACTIONS(5400), + [anon_sym_LBRACK] = ACTIONS(5400), + [anon_sym_RBRACK] = ACTIONS(5400), + [anon_sym_EQ] = ACTIONS(5398), + [anon_sym_const] = ACTIONS(5398), + [anon_sym_constexpr] = ACTIONS(5400), + [anon_sym_volatile] = ACTIONS(5400), + [anon_sym_restrict] = ACTIONS(5400), + [anon_sym___restrict__] = ACTIONS(5400), + [anon_sym__Atomic] = ACTIONS(5400), + [anon_sym__Noreturn] = ACTIONS(5400), + [anon_sym_noreturn] = ACTIONS(5400), + [anon_sym_mutable] = ACTIONS(5400), + [anon_sym_constinit] = ACTIONS(5400), + [anon_sym_consteval] = ACTIONS(5400), + [anon_sym_COLON] = ACTIONS(5398), + [anon_sym_QMARK] = ACTIONS(5400), + [anon_sym_STAR_EQ] = ACTIONS(5400), + [anon_sym_SLASH_EQ] = ACTIONS(5400), + [anon_sym_PERCENT_EQ] = ACTIONS(5400), + [anon_sym_PLUS_EQ] = ACTIONS(5400), + [anon_sym_DASH_EQ] = ACTIONS(5400), + [anon_sym_LT_LT_EQ] = ACTIONS(5400), + [anon_sym_GT_GT_EQ] = ACTIONS(5400), + [anon_sym_AMP_EQ] = ACTIONS(5400), + [anon_sym_CARET_EQ] = ACTIONS(5400), + [anon_sym_PIPE_EQ] = ACTIONS(5400), + [anon_sym_and_eq] = ACTIONS(5400), + [anon_sym_or_eq] = ACTIONS(5400), + [anon_sym_xor_eq] = ACTIONS(5400), + [anon_sym_LT_EQ_GT] = ACTIONS(5400), + [anon_sym_or] = ACTIONS(5398), + [anon_sym_and] = ACTIONS(5398), + [anon_sym_bitor] = ACTIONS(5400), + [anon_sym_xor] = ACTIONS(5398), + [anon_sym_bitand] = ACTIONS(5400), + [anon_sym_not_eq] = ACTIONS(5400), + [anon_sym_DASH_DASH] = ACTIONS(5400), + [anon_sym_PLUS_PLUS] = ACTIONS(5400), + [anon_sym_DOT] = ACTIONS(5398), + [anon_sym_DOT_STAR] = ACTIONS(5400), + [anon_sym_DASH_GT] = ACTIONS(5400), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5400), + [anon_sym_decltype] = ACTIONS(5400), + [anon_sym_final] = ACTIONS(5400), + [anon_sym_override] = ACTIONS(5400), + [sym_semgrep_metavar] = ACTIONS(5400), }, - [1884] = { - [sym_string_literal] = STATE(1875), - [sym_raw_string_literal] = STATE(1875), - [aux_sym_concatenated_string_repeat1] = STATE(1875), - [ts_builtin_sym_end] = ACTIONS(5643), - [sym_identifier] = ACTIONS(5645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5643), - [anon_sym_COMMA] = ACTIONS(5643), - [anon_sym_RPAREN] = ACTIONS(5643), - [aux_sym_preproc_if_token2] = ACTIONS(5643), - [aux_sym_preproc_else_token1] = ACTIONS(5643), - [aux_sym_preproc_elif_token1] = ACTIONS(5647), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5643), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5643), - [anon_sym_LPAREN2] = ACTIONS(5643), - [anon_sym_DASH] = ACTIONS(5647), - [anon_sym_PLUS] = ACTIONS(5647), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5647), - [anon_sym_PERCENT] = ACTIONS(5647), - [anon_sym_PIPE_PIPE] = ACTIONS(5643), - [anon_sym_AMP_AMP] = ACTIONS(5643), - [anon_sym_PIPE] = ACTIONS(5647), - [anon_sym_CARET] = ACTIONS(5647), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5643), - [anon_sym_BANG_EQ] = ACTIONS(5643), - [anon_sym_GT] = ACTIONS(5647), - [anon_sym_GT_EQ] = ACTIONS(5643), - [anon_sym_LT_EQ] = ACTIONS(5647), - [anon_sym_LT] = ACTIONS(5647), - [anon_sym_LT_LT] = ACTIONS(5647), - [anon_sym_GT_GT] = ACTIONS(5647), - [anon_sym_SEMI] = ACTIONS(5643), - [anon_sym_RBRACE] = ACTIONS(5643), - [anon_sym_LBRACK] = ACTIONS(5643), - [anon_sym_RBRACK] = ACTIONS(5643), - [anon_sym_EQ] = ACTIONS(5647), - [anon_sym_COLON] = ACTIONS(5643), - [anon_sym_QMARK] = ACTIONS(5643), - [anon_sym_STAR_EQ] = ACTIONS(5643), - [anon_sym_SLASH_EQ] = ACTIONS(5643), - [anon_sym_PERCENT_EQ] = ACTIONS(5643), - [anon_sym_PLUS_EQ] = ACTIONS(5643), - [anon_sym_DASH_EQ] = ACTIONS(5643), - [anon_sym_LT_LT_EQ] = ACTIONS(5643), - [anon_sym_GT_GT_EQ] = ACTIONS(5643), - [anon_sym_AMP_EQ] = ACTIONS(5643), - [anon_sym_CARET_EQ] = ACTIONS(5643), - [anon_sym_PIPE_EQ] = ACTIONS(5643), - [anon_sym_and_eq] = ACTIONS(5647), - [anon_sym_or_eq] = ACTIONS(5647), - [anon_sym_xor_eq] = ACTIONS(5647), - [anon_sym_LT_EQ_GT] = ACTIONS(5643), - [anon_sym_or] = ACTIONS(5647), - [anon_sym_and] = ACTIONS(5647), - [anon_sym_bitor] = ACTIONS(5647), - [anon_sym_xor] = ACTIONS(5647), - [anon_sym_bitand] = ACTIONS(5647), - [anon_sym_not_eq] = ACTIONS(5647), - [anon_sym_DASH_DASH] = ACTIONS(5643), - [anon_sym_PLUS_PLUS] = ACTIONS(5643), - [anon_sym_DOT] = ACTIONS(5647), - [anon_sym_DOT_STAR] = ACTIONS(5643), - [anon_sym_DASH_GT] = ACTIONS(5643), - [anon_sym_L_DQUOTE] = ACTIONS(2307), - [anon_sym_u_DQUOTE] = ACTIONS(2307), - [anon_sym_U_DQUOTE] = ACTIONS(2307), - [anon_sym_u8_DQUOTE] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(2317), - [anon_sym_LR_DQUOTE] = ACTIONS(2317), - [anon_sym_uR_DQUOTE] = ACTIONS(2317), - [anon_sym_UR_DQUOTE] = ACTIONS(2317), - [anon_sym_u8R_DQUOTE] = ACTIONS(2317), - [sym_literal_suffix] = ACTIONS(5647), + [1852] = { + [ts_builtin_sym_end] = ACTIONS(5404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5404), + [anon_sym_COMMA] = ACTIONS(5404), + [anon_sym_RPAREN] = ACTIONS(5404), + [anon_sym_LPAREN2] = ACTIONS(5404), + [anon_sym_DASH] = ACTIONS(5402), + [anon_sym_PLUS] = ACTIONS(5402), + [anon_sym_STAR] = ACTIONS(5402), + [anon_sym_SLASH] = ACTIONS(5402), + [anon_sym_PERCENT] = ACTIONS(5402), + [anon_sym_PIPE_PIPE] = ACTIONS(5404), + [anon_sym_AMP_AMP] = ACTIONS(5404), + [anon_sym_PIPE] = ACTIONS(5402), + [anon_sym_CARET] = ACTIONS(5402), + [anon_sym_AMP] = ACTIONS(5402), + [anon_sym_EQ_EQ] = ACTIONS(5404), + [anon_sym_BANG_EQ] = ACTIONS(5404), + [anon_sym_GT] = ACTIONS(5402), + [anon_sym_GT_EQ] = ACTIONS(5404), + [anon_sym_LT_EQ] = ACTIONS(5402), + [anon_sym_LT] = ACTIONS(5402), + [anon_sym_LT_LT] = ACTIONS(5402), + [anon_sym_GT_GT] = ACTIONS(5402), + [anon_sym_SEMI] = ACTIONS(5404), + [anon_sym___extension__] = ACTIONS(5404), + [anon_sym___attribute__] = ACTIONS(5404), + [anon_sym_COLON_COLON] = ACTIONS(5404), + [anon_sym_LBRACE] = ACTIONS(5404), + [anon_sym_RBRACE] = ACTIONS(5404), + [anon_sym_LBRACK] = ACTIONS(5404), + [anon_sym_RBRACK] = ACTIONS(5404), + [anon_sym_EQ] = ACTIONS(5402), + [anon_sym_const] = ACTIONS(5402), + [anon_sym_constexpr] = ACTIONS(5404), + [anon_sym_volatile] = ACTIONS(5404), + [anon_sym_restrict] = ACTIONS(5404), + [anon_sym___restrict__] = ACTIONS(5404), + [anon_sym__Atomic] = ACTIONS(5404), + [anon_sym__Noreturn] = ACTIONS(5404), + [anon_sym_noreturn] = ACTIONS(5404), + [anon_sym_mutable] = ACTIONS(5404), + [anon_sym_constinit] = ACTIONS(5404), + [anon_sym_consteval] = ACTIONS(5404), + [anon_sym_COLON] = ACTIONS(5402), + [anon_sym_QMARK] = ACTIONS(5404), + [anon_sym_STAR_EQ] = ACTIONS(5404), + [anon_sym_SLASH_EQ] = ACTIONS(5404), + [anon_sym_PERCENT_EQ] = ACTIONS(5404), + [anon_sym_PLUS_EQ] = ACTIONS(5404), + [anon_sym_DASH_EQ] = ACTIONS(5404), + [anon_sym_LT_LT_EQ] = ACTIONS(5404), + [anon_sym_GT_GT_EQ] = ACTIONS(5404), + [anon_sym_AMP_EQ] = ACTIONS(5404), + [anon_sym_CARET_EQ] = ACTIONS(5404), + [anon_sym_PIPE_EQ] = ACTIONS(5404), + [anon_sym_and_eq] = ACTIONS(5404), + [anon_sym_or_eq] = ACTIONS(5404), + [anon_sym_xor_eq] = ACTIONS(5404), + [anon_sym_LT_EQ_GT] = ACTIONS(5404), + [anon_sym_or] = ACTIONS(5402), + [anon_sym_and] = ACTIONS(5402), + [anon_sym_bitor] = ACTIONS(5404), + [anon_sym_xor] = ACTIONS(5402), + [anon_sym_bitand] = ACTIONS(5404), + [anon_sym_not_eq] = ACTIONS(5404), + [anon_sym_DASH_DASH] = ACTIONS(5404), + [anon_sym_PLUS_PLUS] = ACTIONS(5404), + [anon_sym_DOT] = ACTIONS(5402), + [anon_sym_DOT_STAR] = ACTIONS(5404), + [anon_sym_DASH_GT] = ACTIONS(5404), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5404), + [anon_sym_decltype] = ACTIONS(5404), + [anon_sym_final] = ACTIONS(5404), + [anon_sym_override] = ACTIONS(5404), + [sym_semgrep_metavar] = ACTIONS(5404), }, - [1885] = { - [sym_string_literal] = STATE(1884), - [sym_raw_string_literal] = STATE(1884), - [aux_sym_concatenated_string_repeat1] = STATE(1884), - [ts_builtin_sym_end] = ACTIONS(5649), - [sym_identifier] = ACTIONS(5651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5649), - [anon_sym_COMMA] = ACTIONS(5649), - [anon_sym_RPAREN] = ACTIONS(5649), - [aux_sym_preproc_if_token2] = ACTIONS(5649), - [aux_sym_preproc_else_token1] = ACTIONS(5649), - [aux_sym_preproc_elif_token1] = ACTIONS(5653), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5649), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5649), - [anon_sym_LPAREN2] = ACTIONS(5649), - [anon_sym_DASH] = ACTIONS(5653), - [anon_sym_PLUS] = ACTIONS(5653), - [anon_sym_STAR] = ACTIONS(5653), - [anon_sym_SLASH] = ACTIONS(5653), - [anon_sym_PERCENT] = ACTIONS(5653), - [anon_sym_PIPE_PIPE] = ACTIONS(5649), - [anon_sym_AMP_AMP] = ACTIONS(5649), - [anon_sym_PIPE] = ACTIONS(5653), - [anon_sym_CARET] = ACTIONS(5653), - [anon_sym_AMP] = ACTIONS(5653), - [anon_sym_EQ_EQ] = ACTIONS(5649), - [anon_sym_BANG_EQ] = ACTIONS(5649), - [anon_sym_GT] = ACTIONS(5653), - [anon_sym_GT_EQ] = ACTIONS(5649), - [anon_sym_LT_EQ] = ACTIONS(5653), - [anon_sym_LT] = ACTIONS(5653), - [anon_sym_LT_LT] = ACTIONS(5653), - [anon_sym_GT_GT] = ACTIONS(5653), - [anon_sym_SEMI] = ACTIONS(5649), - [anon_sym_RBRACE] = ACTIONS(5649), - [anon_sym_LBRACK] = ACTIONS(5649), - [anon_sym_RBRACK] = ACTIONS(5649), - [anon_sym_EQ] = ACTIONS(5653), - [anon_sym_COLON] = ACTIONS(5649), - [anon_sym_QMARK] = ACTIONS(5649), - [anon_sym_STAR_EQ] = ACTIONS(5649), - [anon_sym_SLASH_EQ] = ACTIONS(5649), - [anon_sym_PERCENT_EQ] = ACTIONS(5649), - [anon_sym_PLUS_EQ] = ACTIONS(5649), - [anon_sym_DASH_EQ] = ACTIONS(5649), - [anon_sym_LT_LT_EQ] = ACTIONS(5649), - [anon_sym_GT_GT_EQ] = ACTIONS(5649), - [anon_sym_AMP_EQ] = ACTIONS(5649), - [anon_sym_CARET_EQ] = ACTIONS(5649), - [anon_sym_PIPE_EQ] = ACTIONS(5649), - [anon_sym_and_eq] = ACTIONS(5653), - [anon_sym_or_eq] = ACTIONS(5653), - [anon_sym_xor_eq] = ACTIONS(5653), - [anon_sym_LT_EQ_GT] = ACTIONS(5649), - [anon_sym_or] = ACTIONS(5653), - [anon_sym_and] = ACTIONS(5653), - [anon_sym_bitor] = ACTIONS(5653), - [anon_sym_xor] = ACTIONS(5653), - [anon_sym_bitand] = ACTIONS(5653), - [anon_sym_not_eq] = ACTIONS(5653), - [anon_sym_DASH_DASH] = ACTIONS(5649), - [anon_sym_PLUS_PLUS] = ACTIONS(5649), - [anon_sym_DOT] = ACTIONS(5653), - [anon_sym_DOT_STAR] = ACTIONS(5649), - [anon_sym_DASH_GT] = ACTIONS(5649), - [anon_sym_L_DQUOTE] = ACTIONS(2307), - [anon_sym_u_DQUOTE] = ACTIONS(2307), - [anon_sym_U_DQUOTE] = ACTIONS(2307), - [anon_sym_u8_DQUOTE] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(2317), - [anon_sym_LR_DQUOTE] = ACTIONS(2317), - [anon_sym_uR_DQUOTE] = ACTIONS(2317), - [anon_sym_UR_DQUOTE] = ACTIONS(2317), - [anon_sym_u8R_DQUOTE] = ACTIONS(2317), - [sym_literal_suffix] = ACTIONS(5653), + [1853] = { + [sym_identifier] = ACTIONS(5575), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5577), + [anon_sym_LPAREN2] = ACTIONS(5577), + [anon_sym_BANG] = ACTIONS(5577), + [anon_sym_TILDE] = ACTIONS(5577), + [anon_sym_DASH] = ACTIONS(5575), + [anon_sym_PLUS] = ACTIONS(5575), + [anon_sym_STAR] = ACTIONS(5577), + [anon_sym_AMP] = ACTIONS(5577), + [anon_sym_SEMI] = ACTIONS(5577), + [anon_sym_COLON_COLON] = ACTIONS(5577), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5577), + [anon_sym_LBRACE] = ACTIONS(5577), + [anon_sym_LBRACK] = ACTIONS(5575), + [sym_primitive_type] = ACTIONS(5575), + [anon_sym_if] = ACTIONS(5575), + [anon_sym_switch] = ACTIONS(5575), + [anon_sym_case] = ACTIONS(5575), + [anon_sym_default] = ACTIONS(5575), + [anon_sym_while] = ACTIONS(5575), + [anon_sym_do] = ACTIONS(5575), + [anon_sym_for] = ACTIONS(5575), + [anon_sym_return] = ACTIONS(5575), + [anon_sym_break] = ACTIONS(5575), + [anon_sym_continue] = ACTIONS(5575), + [anon_sym_goto] = ACTIONS(5575), + [anon_sym___try] = ACTIONS(5575), + [anon_sym___leave] = ACTIONS(5575), + [anon_sym_not] = ACTIONS(5575), + [anon_sym_compl] = ACTIONS(5575), + [anon_sym_DASH_DASH] = ACTIONS(5577), + [anon_sym_PLUS_PLUS] = ACTIONS(5577), + [anon_sym_sizeof] = ACTIONS(5575), + [anon_sym___alignof__] = ACTIONS(5575), + [anon_sym___alignof] = ACTIONS(5575), + [anon_sym__alignof] = ACTIONS(5575), + [anon_sym_alignof] = ACTIONS(5575), + [anon_sym__Alignof] = ACTIONS(5575), + [anon_sym_offsetof] = ACTIONS(5575), + [anon_sym__Generic] = ACTIONS(5575), + [anon_sym_asm] = ACTIONS(5575), + [anon_sym___asm__] = ACTIONS(5575), + [sym_number_literal] = ACTIONS(5577), + [anon_sym_L_SQUOTE] = ACTIONS(5577), + [anon_sym_u_SQUOTE] = ACTIONS(5577), + [anon_sym_U_SQUOTE] = ACTIONS(5577), + [anon_sym_u8_SQUOTE] = ACTIONS(5577), + [anon_sym_SQUOTE] = ACTIONS(5577), + [anon_sym_L_DQUOTE] = ACTIONS(5577), + [anon_sym_u_DQUOTE] = ACTIONS(5577), + [anon_sym_U_DQUOTE] = ACTIONS(5577), + [anon_sym_u8_DQUOTE] = ACTIONS(5577), + [anon_sym_DQUOTE] = ACTIONS(5577), + [sym_true] = ACTIONS(5575), + [sym_false] = ACTIONS(5575), + [anon_sym_NULL] = ACTIONS(5575), + [anon_sym_nullptr] = ACTIONS(5575), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(5575), + [anon_sym_template] = ACTIONS(5575), + [anon_sym_try] = ACTIONS(5575), + [anon_sym_delete] = ACTIONS(5575), + [anon_sym_throw] = ACTIONS(5575), + [anon_sym_co_return] = ACTIONS(5575), + [anon_sym_co_yield] = ACTIONS(5575), + [anon_sym_R_DQUOTE] = ACTIONS(5577), + [anon_sym_LR_DQUOTE] = ACTIONS(5577), + [anon_sym_uR_DQUOTE] = ACTIONS(5577), + [anon_sym_UR_DQUOTE] = ACTIONS(5577), + [anon_sym_u8R_DQUOTE] = ACTIONS(5577), + [anon_sym_co_await] = ACTIONS(5575), + [anon_sym_new] = ACTIONS(5575), + [anon_sym_requires] = ACTIONS(5575), + [sym_this] = ACTIONS(5575), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(5577), + [sym_semgrep_named_ellipsis] = ACTIONS(5577), }, - [1886] = { - [sym_identifier] = ACTIONS(5655), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5657), - [anon_sym_LPAREN2] = ACTIONS(5657), - [anon_sym_BANG] = ACTIONS(5657), - [anon_sym_TILDE] = ACTIONS(5657), - [anon_sym_DASH] = ACTIONS(5655), - [anon_sym_PLUS] = ACTIONS(5655), - [anon_sym_STAR] = ACTIONS(5657), - [anon_sym_AMP] = ACTIONS(5657), - [anon_sym_SEMI] = ACTIONS(5657), - [anon_sym_COLON_COLON] = ACTIONS(5657), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5657), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_LBRACK] = ACTIONS(5655), - [sym_primitive_type] = ACTIONS(5655), - [anon_sym_if] = ACTIONS(5655), - [anon_sym_switch] = ACTIONS(5655), - [anon_sym_case] = ACTIONS(5655), - [anon_sym_default] = ACTIONS(5655), - [anon_sym_while] = ACTIONS(5655), - [anon_sym_do] = ACTIONS(5655), - [anon_sym_for] = ACTIONS(5655), - [anon_sym_return] = ACTIONS(5655), - [anon_sym_break] = ACTIONS(5655), - [anon_sym_continue] = ACTIONS(5655), - [anon_sym_goto] = ACTIONS(5655), - [anon_sym___try] = ACTIONS(5655), - [anon_sym___leave] = ACTIONS(5655), - [anon_sym_not] = ACTIONS(5655), - [anon_sym_compl] = ACTIONS(5655), - [anon_sym_DASH_DASH] = ACTIONS(5657), - [anon_sym_PLUS_PLUS] = ACTIONS(5657), - [anon_sym_sizeof] = ACTIONS(5655), - [anon_sym___alignof__] = ACTIONS(5655), - [anon_sym___alignof] = ACTIONS(5655), - [anon_sym__alignof] = ACTIONS(5655), - [anon_sym_alignof] = ACTIONS(5655), - [anon_sym__Alignof] = ACTIONS(5655), - [anon_sym_offsetof] = ACTIONS(5655), - [anon_sym__Generic] = ACTIONS(5655), - [anon_sym_asm] = ACTIONS(5655), - [anon_sym___asm__] = ACTIONS(5655), - [sym_number_literal] = ACTIONS(5657), - [anon_sym_L_SQUOTE] = ACTIONS(5657), - [anon_sym_u_SQUOTE] = ACTIONS(5657), - [anon_sym_U_SQUOTE] = ACTIONS(5657), - [anon_sym_u8_SQUOTE] = ACTIONS(5657), - [anon_sym_SQUOTE] = ACTIONS(5657), - [anon_sym_L_DQUOTE] = ACTIONS(5657), - [anon_sym_u_DQUOTE] = ACTIONS(5657), - [anon_sym_U_DQUOTE] = ACTIONS(5657), - [anon_sym_u8_DQUOTE] = ACTIONS(5657), - [anon_sym_DQUOTE] = ACTIONS(5657), - [sym_true] = ACTIONS(5655), - [sym_false] = ACTIONS(5655), - [anon_sym_NULL] = ACTIONS(5655), - [anon_sym_nullptr] = ACTIONS(5655), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(5655), - [anon_sym_template] = ACTIONS(5655), - [anon_sym_try] = ACTIONS(5655), - [anon_sym_delete] = ACTIONS(5655), - [anon_sym_throw] = ACTIONS(5655), - [anon_sym_co_return] = ACTIONS(5655), - [anon_sym_co_yield] = ACTIONS(5655), - [anon_sym_R_DQUOTE] = ACTIONS(5657), - [anon_sym_LR_DQUOTE] = ACTIONS(5657), - [anon_sym_uR_DQUOTE] = ACTIONS(5657), - [anon_sym_UR_DQUOTE] = ACTIONS(5657), - [anon_sym_u8R_DQUOTE] = ACTIONS(5657), - [anon_sym_co_await] = ACTIONS(5655), - [anon_sym_new] = ACTIONS(5655), - [anon_sym_requires] = ACTIONS(5655), - [sym_this] = ACTIONS(5655), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(5657), - [sym_semgrep_named_ellipsis] = ACTIONS(5657), + [1854] = { + [sym_identifier] = ACTIONS(5579), + [anon_sym_COMMA] = ACTIONS(5581), + [anon_sym_RPAREN] = ACTIONS(5581), + [anon_sym_LPAREN2] = ACTIONS(5581), + [anon_sym_TILDE] = ACTIONS(5581), + [anon_sym_STAR] = ACTIONS(5581), + [anon_sym_PIPE_PIPE] = ACTIONS(5581), + [anon_sym_AMP_AMP] = ACTIONS(5581), + [anon_sym_AMP] = ACTIONS(5579), + [anon_sym_SEMI] = ACTIONS(5581), + [anon_sym___extension__] = ACTIONS(5579), + [anon_sym_extern] = ACTIONS(5579), + [anon_sym___attribute__] = ACTIONS(5579), + [anon_sym_COLON_COLON] = ACTIONS(5581), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5581), + [anon_sym___declspec] = ACTIONS(5579), + [anon_sym___based] = ACTIONS(5579), + [anon_sym___cdecl] = ACTIONS(5579), + [anon_sym___clrcall] = ACTIONS(5579), + [anon_sym___stdcall] = ACTIONS(5579), + [anon_sym___fastcall] = ACTIONS(5579), + [anon_sym___thiscall] = ACTIONS(5579), + [anon_sym___vectorcall] = ACTIONS(5579), + [anon_sym_LBRACE] = ACTIONS(5581), + [anon_sym_signed] = ACTIONS(5579), + [anon_sym_unsigned] = ACTIONS(5579), + [anon_sym_long] = ACTIONS(5579), + [anon_sym_short] = ACTIONS(5579), + [anon_sym_LBRACK] = ACTIONS(5579), + [anon_sym_EQ] = ACTIONS(5581), + [anon_sym_static] = ACTIONS(5579), + [anon_sym_register] = ACTIONS(5579), + [anon_sym_inline] = ACTIONS(5579), + [anon_sym___inline] = ACTIONS(5579), + [anon_sym___inline__] = ACTIONS(5579), + [anon_sym___forceinline] = ACTIONS(5579), + [anon_sym_thread_local] = ACTIONS(5579), + [anon_sym___thread] = ACTIONS(5579), + [anon_sym_const] = ACTIONS(5579), + [anon_sym_constexpr] = ACTIONS(5579), + [anon_sym_volatile] = ACTIONS(5579), + [anon_sym_restrict] = ACTIONS(5579), + [anon_sym___restrict__] = ACTIONS(5579), + [anon_sym__Atomic] = ACTIONS(5579), + [anon_sym__Noreturn] = ACTIONS(5579), + [anon_sym_noreturn] = ACTIONS(5579), + [anon_sym_mutable] = ACTIONS(5579), + [anon_sym_constinit] = ACTIONS(5579), + [anon_sym_consteval] = ACTIONS(5579), + [sym_primitive_type] = ACTIONS(5579), + [anon_sym_enum] = ACTIONS(5579), + [anon_sym_class] = ACTIONS(5579), + [anon_sym_struct] = ACTIONS(5579), + [anon_sym_union] = ACTIONS(5579), + [anon_sym_or] = ACTIONS(5579), + [anon_sym_and] = ACTIONS(5579), + [anon_sym_asm] = ACTIONS(5579), + [anon_sym___asm__] = ACTIONS(5579), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5579), + [anon_sym_decltype] = ACTIONS(5579), + [anon_sym_final] = ACTIONS(5579), + [anon_sym_override] = ACTIONS(5579), + [anon_sym_virtual] = ACTIONS(5579), + [anon_sym_alignas] = ACTIONS(5579), + [anon_sym_explicit] = ACTIONS(5579), + [anon_sym_typename] = ACTIONS(5579), + [anon_sym_template] = ACTIONS(5579), + [anon_sym_GT2] = ACTIONS(5581), + [anon_sym_operator] = ACTIONS(5579), + [anon_sym_try] = ACTIONS(5579), + [anon_sym_friend] = ACTIONS(5579), + [anon_sym_using] = ACTIONS(5579), + [anon_sym_concept] = ACTIONS(5579), + [anon_sym_requires] = ACTIONS(5579), }, - [1887] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(5193), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_parameter_declaration] = STATE(9087), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_type_parameter_declaration] = STATE(9087), - [sym_variadic_type_parameter_declaration] = STATE(9087), - [sym_optional_type_parameter_declaration] = STATE(9087), - [sym_template_template_parameter_declaration] = STATE(9087), - [sym_optional_parameter_declaration] = STATE(9087), - [sym_variadic_parameter_declaration] = STATE(9087), - [sym_template_type] = STATE(4853), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(4837), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5548), + [1855] = { + [sym_declaration_modifiers] = STATE(2412), + [sym_declaration_specifiers] = STATE(4730), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_parameter_declaration] = STATE(8536), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_type_parameter_declaration] = STATE(8536), + [sym_variadic_type_parameter_declaration] = STATE(8536), + [sym_optional_type_parameter_declaration] = STATE(8536), + [sym_template_template_parameter_declaration] = STATE(8536), + [sym_optional_parameter_declaration] = STATE(8536), + [sym_variadic_parameter_declaration] = STATE(8536), + [sym_template_type] = STATE(3324), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7569), + [sym_qualified_type_identifier] = STATE(4526), + [aux_sym_declaration_specifiers_repeat1] = STATE(2412), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5453), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), @@ -291143,59 +277425,521 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(5659), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(2119), + [anon_sym_class] = ACTIONS(5583), + [anon_sym_struct] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2125), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(5661), - [anon_sym_template] = ACTIONS(5663), - [anon_sym_GT2] = ACTIONS(5665), + [anon_sym_typename] = ACTIONS(5585), + [anon_sym_template] = ACTIONS(5587), + [anon_sym_GT2] = ACTIONS(5589), }, - [1888] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(5193), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_parameter_declaration] = STATE(8713), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_type_parameter_declaration] = STATE(8713), - [sym_variadic_type_parameter_declaration] = STATE(8713), - [sym_optional_type_parameter_declaration] = STATE(8713), - [sym_template_template_parameter_declaration] = STATE(8713), - [sym_optional_parameter_declaration] = STATE(8713), - [sym_variadic_parameter_declaration] = STATE(8713), - [sym_template_type] = STATE(4853), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(4837), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5548), + [1856] = { + [sym_identifier] = ACTIONS(5591), + [anon_sym_COMMA] = ACTIONS(5593), + [anon_sym_RPAREN] = ACTIONS(5593), + [anon_sym_LPAREN2] = ACTIONS(5593), + [anon_sym_TILDE] = ACTIONS(5593), + [anon_sym_STAR] = ACTIONS(5593), + [anon_sym_PIPE_PIPE] = ACTIONS(5593), + [anon_sym_AMP_AMP] = ACTIONS(5593), + [anon_sym_AMP] = ACTIONS(5591), + [anon_sym_SEMI] = ACTIONS(5593), + [anon_sym___extension__] = ACTIONS(5591), + [anon_sym_extern] = ACTIONS(5591), + [anon_sym___attribute__] = ACTIONS(5591), + [anon_sym_COLON_COLON] = ACTIONS(5593), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5593), + [anon_sym___declspec] = ACTIONS(5591), + [anon_sym___based] = ACTIONS(5591), + [anon_sym___cdecl] = ACTIONS(5591), + [anon_sym___clrcall] = ACTIONS(5591), + [anon_sym___stdcall] = ACTIONS(5591), + [anon_sym___fastcall] = ACTIONS(5591), + [anon_sym___thiscall] = ACTIONS(5591), + [anon_sym___vectorcall] = ACTIONS(5591), + [anon_sym_LBRACE] = ACTIONS(5593), + [anon_sym_signed] = ACTIONS(5591), + [anon_sym_unsigned] = ACTIONS(5591), + [anon_sym_long] = ACTIONS(5591), + [anon_sym_short] = ACTIONS(5591), + [anon_sym_LBRACK] = ACTIONS(5591), + [anon_sym_EQ] = ACTIONS(5593), + [anon_sym_static] = ACTIONS(5591), + [anon_sym_register] = ACTIONS(5591), + [anon_sym_inline] = ACTIONS(5591), + [anon_sym___inline] = ACTIONS(5591), + [anon_sym___inline__] = ACTIONS(5591), + [anon_sym___forceinline] = ACTIONS(5591), + [anon_sym_thread_local] = ACTIONS(5591), + [anon_sym___thread] = ACTIONS(5591), + [anon_sym_const] = ACTIONS(5591), + [anon_sym_constexpr] = ACTIONS(5591), + [anon_sym_volatile] = ACTIONS(5591), + [anon_sym_restrict] = ACTIONS(5591), + [anon_sym___restrict__] = ACTIONS(5591), + [anon_sym__Atomic] = ACTIONS(5591), + [anon_sym__Noreturn] = ACTIONS(5591), + [anon_sym_noreturn] = ACTIONS(5591), + [anon_sym_mutable] = ACTIONS(5591), + [anon_sym_constinit] = ACTIONS(5591), + [anon_sym_consteval] = ACTIONS(5591), + [sym_primitive_type] = ACTIONS(5591), + [anon_sym_enum] = ACTIONS(5591), + [anon_sym_class] = ACTIONS(5591), + [anon_sym_struct] = ACTIONS(5591), + [anon_sym_union] = ACTIONS(5591), + [anon_sym_or] = ACTIONS(5591), + [anon_sym_and] = ACTIONS(5591), + [anon_sym_asm] = ACTIONS(5591), + [anon_sym___asm__] = ACTIONS(5591), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5591), + [anon_sym_decltype] = ACTIONS(5591), + [anon_sym_final] = ACTIONS(5591), + [anon_sym_override] = ACTIONS(5591), + [anon_sym_virtual] = ACTIONS(5591), + [anon_sym_alignas] = ACTIONS(5591), + [anon_sym_explicit] = ACTIONS(5591), + [anon_sym_typename] = ACTIONS(5591), + [anon_sym_template] = ACTIONS(5591), + [anon_sym_GT2] = ACTIONS(5593), + [anon_sym_operator] = ACTIONS(5591), + [anon_sym_try] = ACTIONS(5591), + [anon_sym_friend] = ACTIONS(5591), + [anon_sym_using] = ACTIONS(5591), + [anon_sym_concept] = ACTIONS(5591), + [anon_sym_requires] = ACTIONS(5591), + }, + [1857] = { + [sym_identifier] = ACTIONS(5595), + [anon_sym_COMMA] = ACTIONS(5597), + [anon_sym_RPAREN] = ACTIONS(5597), + [anon_sym_LPAREN2] = ACTIONS(5597), + [anon_sym_TILDE] = ACTIONS(5597), + [anon_sym_STAR] = ACTIONS(5597), + [anon_sym_PIPE_PIPE] = ACTIONS(5597), + [anon_sym_AMP_AMP] = ACTIONS(5597), + [anon_sym_AMP] = ACTIONS(5595), + [anon_sym_SEMI] = ACTIONS(5597), + [anon_sym___extension__] = ACTIONS(5595), + [anon_sym_extern] = ACTIONS(5595), + [anon_sym___attribute__] = ACTIONS(5595), + [anon_sym_COLON_COLON] = ACTIONS(5597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5597), + [anon_sym___declspec] = ACTIONS(5595), + [anon_sym___based] = ACTIONS(5595), + [anon_sym___cdecl] = ACTIONS(5595), + [anon_sym___clrcall] = ACTIONS(5595), + [anon_sym___stdcall] = ACTIONS(5595), + [anon_sym___fastcall] = ACTIONS(5595), + [anon_sym___thiscall] = ACTIONS(5595), + [anon_sym___vectorcall] = ACTIONS(5595), + [anon_sym_LBRACE] = ACTIONS(5597), + [anon_sym_signed] = ACTIONS(5595), + [anon_sym_unsigned] = ACTIONS(5595), + [anon_sym_long] = ACTIONS(5595), + [anon_sym_short] = ACTIONS(5595), + [anon_sym_LBRACK] = ACTIONS(5595), + [anon_sym_EQ] = ACTIONS(5597), + [anon_sym_static] = ACTIONS(5595), + [anon_sym_register] = ACTIONS(5595), + [anon_sym_inline] = ACTIONS(5595), + [anon_sym___inline] = ACTIONS(5595), + [anon_sym___inline__] = ACTIONS(5595), + [anon_sym___forceinline] = ACTIONS(5595), + [anon_sym_thread_local] = ACTIONS(5595), + [anon_sym___thread] = ACTIONS(5595), + [anon_sym_const] = ACTIONS(5595), + [anon_sym_constexpr] = ACTIONS(5595), + [anon_sym_volatile] = ACTIONS(5595), + [anon_sym_restrict] = ACTIONS(5595), + [anon_sym___restrict__] = ACTIONS(5595), + [anon_sym__Atomic] = ACTIONS(5595), + [anon_sym__Noreturn] = ACTIONS(5595), + [anon_sym_noreturn] = ACTIONS(5595), + [anon_sym_mutable] = ACTIONS(5595), + [anon_sym_constinit] = ACTIONS(5595), + [anon_sym_consteval] = ACTIONS(5595), + [sym_primitive_type] = ACTIONS(5595), + [anon_sym_enum] = ACTIONS(5595), + [anon_sym_class] = ACTIONS(5595), + [anon_sym_struct] = ACTIONS(5595), + [anon_sym_union] = ACTIONS(5595), + [anon_sym_or] = ACTIONS(5595), + [anon_sym_and] = ACTIONS(5595), + [anon_sym_asm] = ACTIONS(5595), + [anon_sym___asm__] = ACTIONS(5595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5595), + [anon_sym_decltype] = ACTIONS(5595), + [anon_sym_final] = ACTIONS(5595), + [anon_sym_override] = ACTIONS(5595), + [anon_sym_virtual] = ACTIONS(5595), + [anon_sym_alignas] = ACTIONS(5595), + [anon_sym_explicit] = ACTIONS(5595), + [anon_sym_typename] = ACTIONS(5595), + [anon_sym_template] = ACTIONS(5595), + [anon_sym_GT2] = ACTIONS(5597), + [anon_sym_operator] = ACTIONS(5595), + [anon_sym_try] = ACTIONS(5595), + [anon_sym_friend] = ACTIONS(5595), + [anon_sym_using] = ACTIONS(5595), + [anon_sym_concept] = ACTIONS(5595), + [anon_sym_requires] = ACTIONS(5595), + }, + [1858] = { + [sym_identifier] = ACTIONS(5599), + [anon_sym_COMMA] = ACTIONS(5601), + [anon_sym_RPAREN] = ACTIONS(5601), + [anon_sym_LPAREN2] = ACTIONS(5601), + [anon_sym_TILDE] = ACTIONS(5601), + [anon_sym_STAR] = ACTIONS(5601), + [anon_sym_PIPE_PIPE] = ACTIONS(5601), + [anon_sym_AMP_AMP] = ACTIONS(5601), + [anon_sym_AMP] = ACTIONS(5599), + [anon_sym_SEMI] = ACTIONS(5601), + [anon_sym___extension__] = ACTIONS(5599), + [anon_sym_extern] = ACTIONS(5599), + [anon_sym___attribute__] = ACTIONS(5599), + [anon_sym_COLON_COLON] = ACTIONS(5601), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5601), + [anon_sym___declspec] = ACTIONS(5599), + [anon_sym___based] = ACTIONS(5599), + [anon_sym___cdecl] = ACTIONS(5599), + [anon_sym___clrcall] = ACTIONS(5599), + [anon_sym___stdcall] = ACTIONS(5599), + [anon_sym___fastcall] = ACTIONS(5599), + [anon_sym___thiscall] = ACTIONS(5599), + [anon_sym___vectorcall] = ACTIONS(5599), + [anon_sym_LBRACE] = ACTIONS(5601), + [anon_sym_signed] = ACTIONS(5599), + [anon_sym_unsigned] = ACTIONS(5599), + [anon_sym_long] = ACTIONS(5599), + [anon_sym_short] = ACTIONS(5599), + [anon_sym_LBRACK] = ACTIONS(5599), + [anon_sym_EQ] = ACTIONS(5601), + [anon_sym_static] = ACTIONS(5599), + [anon_sym_register] = ACTIONS(5599), + [anon_sym_inline] = ACTIONS(5599), + [anon_sym___inline] = ACTIONS(5599), + [anon_sym___inline__] = ACTIONS(5599), + [anon_sym___forceinline] = ACTIONS(5599), + [anon_sym_thread_local] = ACTIONS(5599), + [anon_sym___thread] = ACTIONS(5599), + [anon_sym_const] = ACTIONS(5599), + [anon_sym_constexpr] = ACTIONS(5599), + [anon_sym_volatile] = ACTIONS(5599), + [anon_sym_restrict] = ACTIONS(5599), + [anon_sym___restrict__] = ACTIONS(5599), + [anon_sym__Atomic] = ACTIONS(5599), + [anon_sym__Noreturn] = ACTIONS(5599), + [anon_sym_noreturn] = ACTIONS(5599), + [anon_sym_mutable] = ACTIONS(5599), + [anon_sym_constinit] = ACTIONS(5599), + [anon_sym_consteval] = ACTIONS(5599), + [sym_primitive_type] = ACTIONS(5599), + [anon_sym_enum] = ACTIONS(5599), + [anon_sym_class] = ACTIONS(5599), + [anon_sym_struct] = ACTIONS(5599), + [anon_sym_union] = ACTIONS(5599), + [anon_sym_or] = ACTIONS(5599), + [anon_sym_and] = ACTIONS(5599), + [anon_sym_asm] = ACTIONS(5599), + [anon_sym___asm__] = ACTIONS(5599), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5599), + [anon_sym_decltype] = ACTIONS(5599), + [anon_sym_final] = ACTIONS(5599), + [anon_sym_override] = ACTIONS(5599), + [anon_sym_virtual] = ACTIONS(5599), + [anon_sym_alignas] = ACTIONS(5599), + [anon_sym_explicit] = ACTIONS(5599), + [anon_sym_typename] = ACTIONS(5599), + [anon_sym_template] = ACTIONS(5599), + [anon_sym_GT2] = ACTIONS(5601), + [anon_sym_operator] = ACTIONS(5599), + [anon_sym_try] = ACTIONS(5599), + [anon_sym_friend] = ACTIONS(5599), + [anon_sym_using] = ACTIONS(5599), + [anon_sym_concept] = ACTIONS(5599), + [anon_sym_requires] = ACTIONS(5599), + }, + [1859] = { + [sym_identifier] = ACTIONS(5603), + [anon_sym_COMMA] = ACTIONS(5605), + [anon_sym_RPAREN] = ACTIONS(5605), + [anon_sym_LPAREN2] = ACTIONS(5605), + [anon_sym_TILDE] = ACTIONS(5605), + [anon_sym_STAR] = ACTIONS(5605), + [anon_sym_PIPE_PIPE] = ACTIONS(5605), + [anon_sym_AMP_AMP] = ACTIONS(5605), + [anon_sym_AMP] = ACTIONS(5603), + [anon_sym_SEMI] = ACTIONS(5605), + [anon_sym___extension__] = ACTIONS(5603), + [anon_sym_extern] = ACTIONS(5603), + [anon_sym___attribute__] = ACTIONS(5603), + [anon_sym_COLON_COLON] = ACTIONS(5605), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5605), + [anon_sym___declspec] = ACTIONS(5603), + [anon_sym___based] = ACTIONS(5603), + [anon_sym___cdecl] = ACTIONS(5603), + [anon_sym___clrcall] = ACTIONS(5603), + [anon_sym___stdcall] = ACTIONS(5603), + [anon_sym___fastcall] = ACTIONS(5603), + [anon_sym___thiscall] = ACTIONS(5603), + [anon_sym___vectorcall] = ACTIONS(5603), + [anon_sym_LBRACE] = ACTIONS(5605), + [anon_sym_signed] = ACTIONS(5603), + [anon_sym_unsigned] = ACTIONS(5603), + [anon_sym_long] = ACTIONS(5603), + [anon_sym_short] = ACTIONS(5603), + [anon_sym_LBRACK] = ACTIONS(5603), + [anon_sym_EQ] = ACTIONS(5605), + [anon_sym_static] = ACTIONS(5603), + [anon_sym_register] = ACTIONS(5603), + [anon_sym_inline] = ACTIONS(5603), + [anon_sym___inline] = ACTIONS(5603), + [anon_sym___inline__] = ACTIONS(5603), + [anon_sym___forceinline] = ACTIONS(5603), + [anon_sym_thread_local] = ACTIONS(5603), + [anon_sym___thread] = ACTIONS(5603), + [anon_sym_const] = ACTIONS(5603), + [anon_sym_constexpr] = ACTIONS(5603), + [anon_sym_volatile] = ACTIONS(5603), + [anon_sym_restrict] = ACTIONS(5603), + [anon_sym___restrict__] = ACTIONS(5603), + [anon_sym__Atomic] = ACTIONS(5603), + [anon_sym__Noreturn] = ACTIONS(5603), + [anon_sym_noreturn] = ACTIONS(5603), + [anon_sym_mutable] = ACTIONS(5603), + [anon_sym_constinit] = ACTIONS(5603), + [anon_sym_consteval] = ACTIONS(5603), + [sym_primitive_type] = ACTIONS(5603), + [anon_sym_enum] = ACTIONS(5603), + [anon_sym_class] = ACTIONS(5603), + [anon_sym_struct] = ACTIONS(5603), + [anon_sym_union] = ACTIONS(5603), + [anon_sym_or] = ACTIONS(5603), + [anon_sym_and] = ACTIONS(5603), + [anon_sym_asm] = ACTIONS(5603), + [anon_sym___asm__] = ACTIONS(5603), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5603), + [anon_sym_decltype] = ACTIONS(5603), + [anon_sym_final] = ACTIONS(5603), + [anon_sym_override] = ACTIONS(5603), + [anon_sym_virtual] = ACTIONS(5603), + [anon_sym_alignas] = ACTIONS(5603), + [anon_sym_explicit] = ACTIONS(5603), + [anon_sym_typename] = ACTIONS(5603), + [anon_sym_template] = ACTIONS(5603), + [anon_sym_GT2] = ACTIONS(5605), + [anon_sym_operator] = ACTIONS(5603), + [anon_sym_try] = ACTIONS(5603), + [anon_sym_friend] = ACTIONS(5603), + [anon_sym_using] = ACTIONS(5603), + [anon_sym_concept] = ACTIONS(5603), + [anon_sym_requires] = ACTIONS(5603), + }, + [1860] = { + [sym_identifier] = ACTIONS(5607), + [anon_sym_COMMA] = ACTIONS(5609), + [anon_sym_RPAREN] = ACTIONS(5609), + [anon_sym_LPAREN2] = ACTIONS(5609), + [anon_sym_TILDE] = ACTIONS(5609), + [anon_sym_STAR] = ACTIONS(5609), + [anon_sym_PIPE_PIPE] = ACTIONS(5609), + [anon_sym_AMP_AMP] = ACTIONS(5609), + [anon_sym_AMP] = ACTIONS(5607), + [anon_sym_SEMI] = ACTIONS(5609), + [anon_sym___extension__] = ACTIONS(5607), + [anon_sym_extern] = ACTIONS(5607), + [anon_sym___attribute__] = ACTIONS(5607), + [anon_sym_COLON_COLON] = ACTIONS(5609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5609), + [anon_sym___declspec] = ACTIONS(5607), + [anon_sym___based] = ACTIONS(5607), + [anon_sym___cdecl] = ACTIONS(5607), + [anon_sym___clrcall] = ACTIONS(5607), + [anon_sym___stdcall] = ACTIONS(5607), + [anon_sym___fastcall] = ACTIONS(5607), + [anon_sym___thiscall] = ACTIONS(5607), + [anon_sym___vectorcall] = ACTIONS(5607), + [anon_sym_LBRACE] = ACTIONS(5609), + [anon_sym_signed] = ACTIONS(5607), + [anon_sym_unsigned] = ACTIONS(5607), + [anon_sym_long] = ACTIONS(5607), + [anon_sym_short] = ACTIONS(5607), + [anon_sym_LBRACK] = ACTIONS(5607), + [anon_sym_EQ] = ACTIONS(5609), + [anon_sym_static] = ACTIONS(5607), + [anon_sym_register] = ACTIONS(5607), + [anon_sym_inline] = ACTIONS(5607), + [anon_sym___inline] = ACTIONS(5607), + [anon_sym___inline__] = ACTIONS(5607), + [anon_sym___forceinline] = ACTIONS(5607), + [anon_sym_thread_local] = ACTIONS(5607), + [anon_sym___thread] = ACTIONS(5607), + [anon_sym_const] = ACTIONS(5607), + [anon_sym_constexpr] = ACTIONS(5607), + [anon_sym_volatile] = ACTIONS(5607), + [anon_sym_restrict] = ACTIONS(5607), + [anon_sym___restrict__] = ACTIONS(5607), + [anon_sym__Atomic] = ACTIONS(5607), + [anon_sym__Noreturn] = ACTIONS(5607), + [anon_sym_noreturn] = ACTIONS(5607), + [anon_sym_mutable] = ACTIONS(5607), + [anon_sym_constinit] = ACTIONS(5607), + [anon_sym_consteval] = ACTIONS(5607), + [sym_primitive_type] = ACTIONS(5607), + [anon_sym_enum] = ACTIONS(5607), + [anon_sym_class] = ACTIONS(5607), + [anon_sym_struct] = ACTIONS(5607), + [anon_sym_union] = ACTIONS(5607), + [anon_sym_or] = ACTIONS(5607), + [anon_sym_and] = ACTIONS(5607), + [anon_sym_asm] = ACTIONS(5607), + [anon_sym___asm__] = ACTIONS(5607), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5607), + [anon_sym_decltype] = ACTIONS(5607), + [anon_sym_final] = ACTIONS(5607), + [anon_sym_override] = ACTIONS(5607), + [anon_sym_virtual] = ACTIONS(5607), + [anon_sym_alignas] = ACTIONS(5607), + [anon_sym_explicit] = ACTIONS(5607), + [anon_sym_typename] = ACTIONS(5607), + [anon_sym_template] = ACTIONS(5607), + [anon_sym_GT2] = ACTIONS(5609), + [anon_sym_operator] = ACTIONS(5607), + [anon_sym_try] = ACTIONS(5607), + [anon_sym_friend] = ACTIONS(5607), + [anon_sym_using] = ACTIONS(5607), + [anon_sym_concept] = ACTIONS(5607), + [anon_sym_requires] = ACTIONS(5607), + }, + [1861] = { + [sym_identifier] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5613), + [anon_sym_RPAREN] = ACTIONS(5613), + [anon_sym_LPAREN2] = ACTIONS(5613), + [anon_sym_TILDE] = ACTIONS(5613), + [anon_sym_STAR] = ACTIONS(5613), + [anon_sym_PIPE_PIPE] = ACTIONS(5613), + [anon_sym_AMP_AMP] = ACTIONS(5613), + [anon_sym_AMP] = ACTIONS(5611), + [anon_sym_SEMI] = ACTIONS(5613), + [anon_sym___extension__] = ACTIONS(5611), + [anon_sym_extern] = ACTIONS(5611), + [anon_sym___attribute__] = ACTIONS(5611), + [anon_sym_COLON_COLON] = ACTIONS(5613), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5613), + [anon_sym___declspec] = ACTIONS(5611), + [anon_sym___based] = ACTIONS(5611), + [anon_sym___cdecl] = ACTIONS(5611), + [anon_sym___clrcall] = ACTIONS(5611), + [anon_sym___stdcall] = ACTIONS(5611), + [anon_sym___fastcall] = ACTIONS(5611), + [anon_sym___thiscall] = ACTIONS(5611), + [anon_sym___vectorcall] = ACTIONS(5611), + [anon_sym_LBRACE] = ACTIONS(5613), + [anon_sym_signed] = ACTIONS(5611), + [anon_sym_unsigned] = ACTIONS(5611), + [anon_sym_long] = ACTIONS(5611), + [anon_sym_short] = ACTIONS(5611), + [anon_sym_LBRACK] = ACTIONS(5611), + [anon_sym_EQ] = ACTIONS(5613), + [anon_sym_static] = ACTIONS(5611), + [anon_sym_register] = ACTIONS(5611), + [anon_sym_inline] = ACTIONS(5611), + [anon_sym___inline] = ACTIONS(5611), + [anon_sym___inline__] = ACTIONS(5611), + [anon_sym___forceinline] = ACTIONS(5611), + [anon_sym_thread_local] = ACTIONS(5611), + [anon_sym___thread] = ACTIONS(5611), + [anon_sym_const] = ACTIONS(5611), + [anon_sym_constexpr] = ACTIONS(5611), + [anon_sym_volatile] = ACTIONS(5611), + [anon_sym_restrict] = ACTIONS(5611), + [anon_sym___restrict__] = ACTIONS(5611), + [anon_sym__Atomic] = ACTIONS(5611), + [anon_sym__Noreturn] = ACTIONS(5611), + [anon_sym_noreturn] = ACTIONS(5611), + [anon_sym_mutable] = ACTIONS(5611), + [anon_sym_constinit] = ACTIONS(5611), + [anon_sym_consteval] = ACTIONS(5611), + [sym_primitive_type] = ACTIONS(5611), + [anon_sym_enum] = ACTIONS(5611), + [anon_sym_class] = ACTIONS(5611), + [anon_sym_struct] = ACTIONS(5611), + [anon_sym_union] = ACTIONS(5611), + [anon_sym_or] = ACTIONS(5611), + [anon_sym_and] = ACTIONS(5611), + [anon_sym_asm] = ACTIONS(5611), + [anon_sym___asm__] = ACTIONS(5611), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5611), + [anon_sym_decltype] = ACTIONS(5611), + [anon_sym_final] = ACTIONS(5611), + [anon_sym_override] = ACTIONS(5611), + [anon_sym_virtual] = ACTIONS(5611), + [anon_sym_alignas] = ACTIONS(5611), + [anon_sym_explicit] = ACTIONS(5611), + [anon_sym_typename] = ACTIONS(5611), + [anon_sym_template] = ACTIONS(5611), + [anon_sym_GT2] = ACTIONS(5613), + [anon_sym_operator] = ACTIONS(5611), + [anon_sym_try] = ACTIONS(5611), + [anon_sym_friend] = ACTIONS(5611), + [anon_sym_using] = ACTIONS(5611), + [anon_sym_concept] = ACTIONS(5611), + [anon_sym_requires] = ACTIONS(5611), + }, + [1862] = { + [sym_declaration_modifiers] = STATE(2412), + [sym_declaration_specifiers] = STATE(4730), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_parameter_declaration] = STATE(8198), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_type_parameter_declaration] = STATE(8198), + [sym_variadic_type_parameter_declaration] = STATE(8198), + [sym_optional_type_parameter_declaration] = STATE(8198), + [sym_template_template_parameter_declaration] = STATE(8198), + [sym_optional_parameter_declaration] = STATE(8198), + [sym_variadic_parameter_declaration] = STATE(8198), + [sym_template_type] = STATE(3324), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7569), + [sym_qualified_type_identifier] = STATE(4526), + [aux_sym_declaration_specifiers_repeat1] = STATE(2412), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5453), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), @@ -291220,59 +277964,598 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(5659), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(2119), + [anon_sym_class] = ACTIONS(5583), + [anon_sym_struct] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2125), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(5661), - [anon_sym_template] = ACTIONS(5663), - [anon_sym_GT2] = ACTIONS(5667), + [anon_sym_typename] = ACTIONS(5585), + [anon_sym_template] = ACTIONS(5587), + [anon_sym_GT2] = ACTIONS(5615), }, - [1889] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(5193), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_parameter_declaration] = STATE(9504), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_type_parameter_declaration] = STATE(9504), - [sym_variadic_type_parameter_declaration] = STATE(9504), - [sym_optional_type_parameter_declaration] = STATE(9504), - [sym_template_template_parameter_declaration] = STATE(9504), - [sym_optional_parameter_declaration] = STATE(9504), - [sym_variadic_parameter_declaration] = STATE(9504), - [sym_template_type] = STATE(4853), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(4837), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5548), + [1863] = { + [sym_identifier] = ACTIONS(5617), + [anon_sym_COMMA] = ACTIONS(5619), + [anon_sym_RPAREN] = ACTIONS(5619), + [anon_sym_LPAREN2] = ACTIONS(5619), + [anon_sym_TILDE] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5619), + [anon_sym_AMP_AMP] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5617), + [anon_sym_SEMI] = ACTIONS(5619), + [anon_sym___extension__] = ACTIONS(5617), + [anon_sym_extern] = ACTIONS(5617), + [anon_sym___attribute__] = ACTIONS(5617), + [anon_sym_COLON_COLON] = ACTIONS(5619), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5619), + [anon_sym___declspec] = ACTIONS(5617), + [anon_sym___based] = ACTIONS(5617), + [anon_sym___cdecl] = ACTIONS(5617), + [anon_sym___clrcall] = ACTIONS(5617), + [anon_sym___stdcall] = ACTIONS(5617), + [anon_sym___fastcall] = ACTIONS(5617), + [anon_sym___thiscall] = ACTIONS(5617), + [anon_sym___vectorcall] = ACTIONS(5617), + [anon_sym_LBRACE] = ACTIONS(5619), + [anon_sym_signed] = ACTIONS(5617), + [anon_sym_unsigned] = ACTIONS(5617), + [anon_sym_long] = ACTIONS(5617), + [anon_sym_short] = ACTIONS(5617), + [anon_sym_LBRACK] = ACTIONS(5617), + [anon_sym_EQ] = ACTIONS(5619), + [anon_sym_static] = ACTIONS(5617), + [anon_sym_register] = ACTIONS(5617), + [anon_sym_inline] = ACTIONS(5617), + [anon_sym___inline] = ACTIONS(5617), + [anon_sym___inline__] = ACTIONS(5617), + [anon_sym___forceinline] = ACTIONS(5617), + [anon_sym_thread_local] = ACTIONS(5617), + [anon_sym___thread] = ACTIONS(5617), + [anon_sym_const] = ACTIONS(5617), + [anon_sym_constexpr] = ACTIONS(5617), + [anon_sym_volatile] = ACTIONS(5617), + [anon_sym_restrict] = ACTIONS(5617), + [anon_sym___restrict__] = ACTIONS(5617), + [anon_sym__Atomic] = ACTIONS(5617), + [anon_sym__Noreturn] = ACTIONS(5617), + [anon_sym_noreturn] = ACTIONS(5617), + [anon_sym_mutable] = ACTIONS(5617), + [anon_sym_constinit] = ACTIONS(5617), + [anon_sym_consteval] = ACTIONS(5617), + [sym_primitive_type] = ACTIONS(5617), + [anon_sym_enum] = ACTIONS(5617), + [anon_sym_class] = ACTIONS(5617), + [anon_sym_struct] = ACTIONS(5617), + [anon_sym_union] = ACTIONS(5617), + [anon_sym_or] = ACTIONS(5617), + [anon_sym_and] = ACTIONS(5617), + [anon_sym_asm] = ACTIONS(5617), + [anon_sym___asm__] = ACTIONS(5617), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5617), + [anon_sym_decltype] = ACTIONS(5617), + [anon_sym_final] = ACTIONS(5617), + [anon_sym_override] = ACTIONS(5617), + [anon_sym_virtual] = ACTIONS(5617), + [anon_sym_alignas] = ACTIONS(5617), + [anon_sym_explicit] = ACTIONS(5617), + [anon_sym_typename] = ACTIONS(5617), + [anon_sym_template] = ACTIONS(5617), + [anon_sym_GT2] = ACTIONS(5619), + [anon_sym_operator] = ACTIONS(5617), + [anon_sym_try] = ACTIONS(5617), + [anon_sym_friend] = ACTIONS(5617), + [anon_sym_using] = ACTIONS(5617), + [anon_sym_concept] = ACTIONS(5617), + [anon_sym_requires] = ACTIONS(5617), + }, + [1864] = { + [sym_identifier] = ACTIONS(5621), + [anon_sym_COMMA] = ACTIONS(5623), + [anon_sym_RPAREN] = ACTIONS(5623), + [anon_sym_LPAREN2] = ACTIONS(5623), + [anon_sym_TILDE] = ACTIONS(5623), + [anon_sym_STAR] = ACTIONS(5623), + [anon_sym_PIPE_PIPE] = ACTIONS(5623), + [anon_sym_AMP_AMP] = ACTIONS(5623), + [anon_sym_AMP] = ACTIONS(5621), + [anon_sym_SEMI] = ACTIONS(5623), + [anon_sym___extension__] = ACTIONS(5621), + [anon_sym_extern] = ACTIONS(5621), + [anon_sym___attribute__] = ACTIONS(5621), + [anon_sym_COLON_COLON] = ACTIONS(5623), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5623), + [anon_sym___declspec] = ACTIONS(5621), + [anon_sym___based] = ACTIONS(5621), + [anon_sym___cdecl] = ACTIONS(5621), + [anon_sym___clrcall] = ACTIONS(5621), + [anon_sym___stdcall] = ACTIONS(5621), + [anon_sym___fastcall] = ACTIONS(5621), + [anon_sym___thiscall] = ACTIONS(5621), + [anon_sym___vectorcall] = ACTIONS(5621), + [anon_sym_LBRACE] = ACTIONS(5623), + [anon_sym_signed] = ACTIONS(5621), + [anon_sym_unsigned] = ACTIONS(5621), + [anon_sym_long] = ACTIONS(5621), + [anon_sym_short] = ACTIONS(5621), + [anon_sym_LBRACK] = ACTIONS(5621), + [anon_sym_EQ] = ACTIONS(5623), + [anon_sym_static] = ACTIONS(5621), + [anon_sym_register] = ACTIONS(5621), + [anon_sym_inline] = ACTIONS(5621), + [anon_sym___inline] = ACTIONS(5621), + [anon_sym___inline__] = ACTIONS(5621), + [anon_sym___forceinline] = ACTIONS(5621), + [anon_sym_thread_local] = ACTIONS(5621), + [anon_sym___thread] = ACTIONS(5621), + [anon_sym_const] = ACTIONS(5621), + [anon_sym_constexpr] = ACTIONS(5621), + [anon_sym_volatile] = ACTIONS(5621), + [anon_sym_restrict] = ACTIONS(5621), + [anon_sym___restrict__] = ACTIONS(5621), + [anon_sym__Atomic] = ACTIONS(5621), + [anon_sym__Noreturn] = ACTIONS(5621), + [anon_sym_noreturn] = ACTIONS(5621), + [anon_sym_mutable] = ACTIONS(5621), + [anon_sym_constinit] = ACTIONS(5621), + [anon_sym_consteval] = ACTIONS(5621), + [sym_primitive_type] = ACTIONS(5621), + [anon_sym_enum] = ACTIONS(5621), + [anon_sym_class] = ACTIONS(5621), + [anon_sym_struct] = ACTIONS(5621), + [anon_sym_union] = ACTIONS(5621), + [anon_sym_or] = ACTIONS(5621), + [anon_sym_and] = ACTIONS(5621), + [anon_sym_asm] = ACTIONS(5621), + [anon_sym___asm__] = ACTIONS(5621), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5621), + [anon_sym_decltype] = ACTIONS(5621), + [anon_sym_final] = ACTIONS(5621), + [anon_sym_override] = ACTIONS(5621), + [anon_sym_virtual] = ACTIONS(5621), + [anon_sym_alignas] = ACTIONS(5621), + [anon_sym_explicit] = ACTIONS(5621), + [anon_sym_typename] = ACTIONS(5621), + [anon_sym_template] = ACTIONS(5621), + [anon_sym_GT2] = ACTIONS(5623), + [anon_sym_operator] = ACTIONS(5621), + [anon_sym_try] = ACTIONS(5621), + [anon_sym_friend] = ACTIONS(5621), + [anon_sym_using] = ACTIONS(5621), + [anon_sym_concept] = ACTIONS(5621), + [anon_sym_requires] = ACTIONS(5621), + }, + [1865] = { + [sym_identifier] = ACTIONS(5625), + [anon_sym_COMMA] = ACTIONS(5627), + [anon_sym_RPAREN] = ACTIONS(5627), + [anon_sym_LPAREN2] = ACTIONS(5627), + [anon_sym_TILDE] = ACTIONS(5627), + [anon_sym_STAR] = ACTIONS(5627), + [anon_sym_PIPE_PIPE] = ACTIONS(5627), + [anon_sym_AMP_AMP] = ACTIONS(5627), + [anon_sym_AMP] = ACTIONS(5625), + [anon_sym_SEMI] = ACTIONS(5627), + [anon_sym___extension__] = ACTIONS(5625), + [anon_sym_extern] = ACTIONS(5625), + [anon_sym___attribute__] = ACTIONS(5625), + [anon_sym_COLON_COLON] = ACTIONS(5627), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5627), + [anon_sym___declspec] = ACTIONS(5625), + [anon_sym___based] = ACTIONS(5625), + [anon_sym___cdecl] = ACTIONS(5625), + [anon_sym___clrcall] = ACTIONS(5625), + [anon_sym___stdcall] = ACTIONS(5625), + [anon_sym___fastcall] = ACTIONS(5625), + [anon_sym___thiscall] = ACTIONS(5625), + [anon_sym___vectorcall] = ACTIONS(5625), + [anon_sym_LBRACE] = ACTIONS(5627), + [anon_sym_signed] = ACTIONS(5625), + [anon_sym_unsigned] = ACTIONS(5625), + [anon_sym_long] = ACTIONS(5625), + [anon_sym_short] = ACTIONS(5625), + [anon_sym_LBRACK] = ACTIONS(5625), + [anon_sym_EQ] = ACTIONS(5627), + [anon_sym_static] = ACTIONS(5625), + [anon_sym_register] = ACTIONS(5625), + [anon_sym_inline] = ACTIONS(5625), + [anon_sym___inline] = ACTIONS(5625), + [anon_sym___inline__] = ACTIONS(5625), + [anon_sym___forceinline] = ACTIONS(5625), + [anon_sym_thread_local] = ACTIONS(5625), + [anon_sym___thread] = ACTIONS(5625), + [anon_sym_const] = ACTIONS(5625), + [anon_sym_constexpr] = ACTIONS(5625), + [anon_sym_volatile] = ACTIONS(5625), + [anon_sym_restrict] = ACTIONS(5625), + [anon_sym___restrict__] = ACTIONS(5625), + [anon_sym__Atomic] = ACTIONS(5625), + [anon_sym__Noreturn] = ACTIONS(5625), + [anon_sym_noreturn] = ACTIONS(5625), + [anon_sym_mutable] = ACTIONS(5625), + [anon_sym_constinit] = ACTIONS(5625), + [anon_sym_consteval] = ACTIONS(5625), + [sym_primitive_type] = ACTIONS(5625), + [anon_sym_enum] = ACTIONS(5625), + [anon_sym_class] = ACTIONS(5625), + [anon_sym_struct] = ACTIONS(5625), + [anon_sym_union] = ACTIONS(5625), + [anon_sym_or] = ACTIONS(5625), + [anon_sym_and] = ACTIONS(5625), + [anon_sym_asm] = ACTIONS(5625), + [anon_sym___asm__] = ACTIONS(5625), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5625), + [anon_sym_decltype] = ACTIONS(5625), + [anon_sym_final] = ACTIONS(5625), + [anon_sym_override] = ACTIONS(5625), + [anon_sym_virtual] = ACTIONS(5625), + [anon_sym_alignas] = ACTIONS(5625), + [anon_sym_explicit] = ACTIONS(5625), + [anon_sym_typename] = ACTIONS(5625), + [anon_sym_template] = ACTIONS(5625), + [anon_sym_GT2] = ACTIONS(5627), + [anon_sym_operator] = ACTIONS(5625), + [anon_sym_try] = ACTIONS(5625), + [anon_sym_friend] = ACTIONS(5625), + [anon_sym_using] = ACTIONS(5625), + [anon_sym_concept] = ACTIONS(5625), + [anon_sym_requires] = ACTIONS(5625), + }, + [1866] = { + [sym_identifier] = ACTIONS(5629), + [anon_sym_COMMA] = ACTIONS(5631), + [anon_sym_RPAREN] = ACTIONS(5631), + [anon_sym_LPAREN2] = ACTIONS(5631), + [anon_sym_TILDE] = ACTIONS(5631), + [anon_sym_STAR] = ACTIONS(5631), + [anon_sym_PIPE_PIPE] = ACTIONS(5631), + [anon_sym_AMP_AMP] = ACTIONS(5631), + [anon_sym_AMP] = ACTIONS(5629), + [anon_sym_SEMI] = ACTIONS(5631), + [anon_sym___extension__] = ACTIONS(5629), + [anon_sym_extern] = ACTIONS(5629), + [anon_sym___attribute__] = ACTIONS(5629), + [anon_sym_COLON_COLON] = ACTIONS(5631), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5631), + [anon_sym___declspec] = ACTIONS(5629), + [anon_sym___based] = ACTIONS(5629), + [anon_sym___cdecl] = ACTIONS(5629), + [anon_sym___clrcall] = ACTIONS(5629), + [anon_sym___stdcall] = ACTIONS(5629), + [anon_sym___fastcall] = ACTIONS(5629), + [anon_sym___thiscall] = ACTIONS(5629), + [anon_sym___vectorcall] = ACTIONS(5629), + [anon_sym_LBRACE] = ACTIONS(5631), + [anon_sym_signed] = ACTIONS(5629), + [anon_sym_unsigned] = ACTIONS(5629), + [anon_sym_long] = ACTIONS(5629), + [anon_sym_short] = ACTIONS(5629), + [anon_sym_LBRACK] = ACTIONS(5629), + [anon_sym_EQ] = ACTIONS(5631), + [anon_sym_static] = ACTIONS(5629), + [anon_sym_register] = ACTIONS(5629), + [anon_sym_inline] = ACTIONS(5629), + [anon_sym___inline] = ACTIONS(5629), + [anon_sym___inline__] = ACTIONS(5629), + [anon_sym___forceinline] = ACTIONS(5629), + [anon_sym_thread_local] = ACTIONS(5629), + [anon_sym___thread] = ACTIONS(5629), + [anon_sym_const] = ACTIONS(5629), + [anon_sym_constexpr] = ACTIONS(5629), + [anon_sym_volatile] = ACTIONS(5629), + [anon_sym_restrict] = ACTIONS(5629), + [anon_sym___restrict__] = ACTIONS(5629), + [anon_sym__Atomic] = ACTIONS(5629), + [anon_sym__Noreturn] = ACTIONS(5629), + [anon_sym_noreturn] = ACTIONS(5629), + [anon_sym_mutable] = ACTIONS(5629), + [anon_sym_constinit] = ACTIONS(5629), + [anon_sym_consteval] = ACTIONS(5629), + [sym_primitive_type] = ACTIONS(5629), + [anon_sym_enum] = ACTIONS(5629), + [anon_sym_class] = ACTIONS(5629), + [anon_sym_struct] = ACTIONS(5629), + [anon_sym_union] = ACTIONS(5629), + [anon_sym_or] = ACTIONS(5629), + [anon_sym_and] = ACTIONS(5629), + [anon_sym_asm] = ACTIONS(5629), + [anon_sym___asm__] = ACTIONS(5629), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5629), + [anon_sym_decltype] = ACTIONS(5629), + [anon_sym_final] = ACTIONS(5629), + [anon_sym_override] = ACTIONS(5629), + [anon_sym_virtual] = ACTIONS(5629), + [anon_sym_alignas] = ACTIONS(5629), + [anon_sym_explicit] = ACTIONS(5629), + [anon_sym_typename] = ACTIONS(5629), + [anon_sym_template] = ACTIONS(5629), + [anon_sym_GT2] = ACTIONS(5631), + [anon_sym_operator] = ACTIONS(5629), + [anon_sym_try] = ACTIONS(5629), + [anon_sym_friend] = ACTIONS(5629), + [anon_sym_using] = ACTIONS(5629), + [anon_sym_concept] = ACTIONS(5629), + [anon_sym_requires] = ACTIONS(5629), + }, + [1867] = { + [sym_identifier] = ACTIONS(5633), + [anon_sym_COMMA] = ACTIONS(5635), + [anon_sym_RPAREN] = ACTIONS(5635), + [anon_sym_LPAREN2] = ACTIONS(5635), + [anon_sym_TILDE] = ACTIONS(5635), + [anon_sym_STAR] = ACTIONS(5635), + [anon_sym_PIPE_PIPE] = ACTIONS(5635), + [anon_sym_AMP_AMP] = ACTIONS(5635), + [anon_sym_AMP] = ACTIONS(5633), + [anon_sym_SEMI] = ACTIONS(5635), + [anon_sym___extension__] = ACTIONS(5633), + [anon_sym_extern] = ACTIONS(5633), + [anon_sym___attribute__] = ACTIONS(5633), + [anon_sym_COLON_COLON] = ACTIONS(5635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5635), + [anon_sym___declspec] = ACTIONS(5633), + [anon_sym___based] = ACTIONS(5633), + [anon_sym___cdecl] = ACTIONS(5633), + [anon_sym___clrcall] = ACTIONS(5633), + [anon_sym___stdcall] = ACTIONS(5633), + [anon_sym___fastcall] = ACTIONS(5633), + [anon_sym___thiscall] = ACTIONS(5633), + [anon_sym___vectorcall] = ACTIONS(5633), + [anon_sym_LBRACE] = ACTIONS(5635), + [anon_sym_signed] = ACTIONS(5633), + [anon_sym_unsigned] = ACTIONS(5633), + [anon_sym_long] = ACTIONS(5633), + [anon_sym_short] = ACTIONS(5633), + [anon_sym_LBRACK] = ACTIONS(5633), + [anon_sym_EQ] = ACTIONS(5635), + [anon_sym_static] = ACTIONS(5633), + [anon_sym_register] = ACTIONS(5633), + [anon_sym_inline] = ACTIONS(5633), + [anon_sym___inline] = ACTIONS(5633), + [anon_sym___inline__] = ACTIONS(5633), + [anon_sym___forceinline] = ACTIONS(5633), + [anon_sym_thread_local] = ACTIONS(5633), + [anon_sym___thread] = ACTIONS(5633), + [anon_sym_const] = ACTIONS(5633), + [anon_sym_constexpr] = ACTIONS(5633), + [anon_sym_volatile] = ACTIONS(5633), + [anon_sym_restrict] = ACTIONS(5633), + [anon_sym___restrict__] = ACTIONS(5633), + [anon_sym__Atomic] = ACTIONS(5633), + [anon_sym__Noreturn] = ACTIONS(5633), + [anon_sym_noreturn] = ACTIONS(5633), + [anon_sym_mutable] = ACTIONS(5633), + [anon_sym_constinit] = ACTIONS(5633), + [anon_sym_consteval] = ACTIONS(5633), + [sym_primitive_type] = ACTIONS(5633), + [anon_sym_enum] = ACTIONS(5633), + [anon_sym_class] = ACTIONS(5633), + [anon_sym_struct] = ACTIONS(5633), + [anon_sym_union] = ACTIONS(5633), + [anon_sym_or] = ACTIONS(5633), + [anon_sym_and] = ACTIONS(5633), + [anon_sym_asm] = ACTIONS(5633), + [anon_sym___asm__] = ACTIONS(5633), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5633), + [anon_sym_decltype] = ACTIONS(5633), + [anon_sym_final] = ACTIONS(5633), + [anon_sym_override] = ACTIONS(5633), + [anon_sym_virtual] = ACTIONS(5633), + [anon_sym_alignas] = ACTIONS(5633), + [anon_sym_explicit] = ACTIONS(5633), + [anon_sym_typename] = ACTIONS(5633), + [anon_sym_template] = ACTIONS(5633), + [anon_sym_GT2] = ACTIONS(5635), + [anon_sym_operator] = ACTIONS(5633), + [anon_sym_try] = ACTIONS(5633), + [anon_sym_friend] = ACTIONS(5633), + [anon_sym_using] = ACTIONS(5633), + [anon_sym_concept] = ACTIONS(5633), + [anon_sym_requires] = ACTIONS(5633), + }, + [1868] = { + [sym_identifier] = ACTIONS(5637), + [anon_sym_COMMA] = ACTIONS(5639), + [anon_sym_RPAREN] = ACTIONS(5639), + [anon_sym_LPAREN2] = ACTIONS(5639), + [anon_sym_TILDE] = ACTIONS(5639), + [anon_sym_STAR] = ACTIONS(5639), + [anon_sym_PIPE_PIPE] = ACTIONS(5639), + [anon_sym_AMP_AMP] = ACTIONS(5639), + [anon_sym_AMP] = ACTIONS(5637), + [anon_sym_SEMI] = ACTIONS(5639), + [anon_sym___extension__] = ACTIONS(5637), + [anon_sym_extern] = ACTIONS(5637), + [anon_sym___attribute__] = ACTIONS(5637), + [anon_sym_COLON_COLON] = ACTIONS(5639), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5639), + [anon_sym___declspec] = ACTIONS(5637), + [anon_sym___based] = ACTIONS(5637), + [anon_sym___cdecl] = ACTIONS(5637), + [anon_sym___clrcall] = ACTIONS(5637), + [anon_sym___stdcall] = ACTIONS(5637), + [anon_sym___fastcall] = ACTIONS(5637), + [anon_sym___thiscall] = ACTIONS(5637), + [anon_sym___vectorcall] = ACTIONS(5637), + [anon_sym_LBRACE] = ACTIONS(5639), + [anon_sym_signed] = ACTIONS(5637), + [anon_sym_unsigned] = ACTIONS(5637), + [anon_sym_long] = ACTIONS(5637), + [anon_sym_short] = ACTIONS(5637), + [anon_sym_LBRACK] = ACTIONS(5637), + [anon_sym_EQ] = ACTIONS(5639), + [anon_sym_static] = ACTIONS(5637), + [anon_sym_register] = ACTIONS(5637), + [anon_sym_inline] = ACTIONS(5637), + [anon_sym___inline] = ACTIONS(5637), + [anon_sym___inline__] = ACTIONS(5637), + [anon_sym___forceinline] = ACTIONS(5637), + [anon_sym_thread_local] = ACTIONS(5637), + [anon_sym___thread] = ACTIONS(5637), + [anon_sym_const] = ACTIONS(5637), + [anon_sym_constexpr] = ACTIONS(5637), + [anon_sym_volatile] = ACTIONS(5637), + [anon_sym_restrict] = ACTIONS(5637), + [anon_sym___restrict__] = ACTIONS(5637), + [anon_sym__Atomic] = ACTIONS(5637), + [anon_sym__Noreturn] = ACTIONS(5637), + [anon_sym_noreturn] = ACTIONS(5637), + [anon_sym_mutable] = ACTIONS(5637), + [anon_sym_constinit] = ACTIONS(5637), + [anon_sym_consteval] = ACTIONS(5637), + [sym_primitive_type] = ACTIONS(5637), + [anon_sym_enum] = ACTIONS(5637), + [anon_sym_class] = ACTIONS(5637), + [anon_sym_struct] = ACTIONS(5637), + [anon_sym_union] = ACTIONS(5637), + [anon_sym_or] = ACTIONS(5637), + [anon_sym_and] = ACTIONS(5637), + [anon_sym_asm] = ACTIONS(5637), + [anon_sym___asm__] = ACTIONS(5637), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5637), + [anon_sym_decltype] = ACTIONS(5637), + [anon_sym_final] = ACTIONS(5637), + [anon_sym_override] = ACTIONS(5637), + [anon_sym_virtual] = ACTIONS(5637), + [anon_sym_alignas] = ACTIONS(5637), + [anon_sym_explicit] = ACTIONS(5637), + [anon_sym_typename] = ACTIONS(5637), + [anon_sym_template] = ACTIONS(5637), + [anon_sym_GT2] = ACTIONS(5639), + [anon_sym_operator] = ACTIONS(5637), + [anon_sym_try] = ACTIONS(5637), + [anon_sym_friend] = ACTIONS(5637), + [anon_sym_using] = ACTIONS(5637), + [anon_sym_concept] = ACTIONS(5637), + [anon_sym_requires] = ACTIONS(5637), + }, + [1869] = { + [sym_identifier] = ACTIONS(5641), + [anon_sym_COMMA] = ACTIONS(5643), + [anon_sym_RPAREN] = ACTIONS(5643), + [anon_sym_LPAREN2] = ACTIONS(5643), + [anon_sym_TILDE] = ACTIONS(5643), + [anon_sym_STAR] = ACTIONS(5643), + [anon_sym_PIPE_PIPE] = ACTIONS(5643), + [anon_sym_AMP_AMP] = ACTIONS(5643), + [anon_sym_AMP] = ACTIONS(5641), + [anon_sym_SEMI] = ACTIONS(5643), + [anon_sym___extension__] = ACTIONS(5641), + [anon_sym_extern] = ACTIONS(5641), + [anon_sym___attribute__] = ACTIONS(5641), + [anon_sym_COLON_COLON] = ACTIONS(5643), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5643), + [anon_sym___declspec] = ACTIONS(5641), + [anon_sym___based] = ACTIONS(5641), + [anon_sym___cdecl] = ACTIONS(5641), + [anon_sym___clrcall] = ACTIONS(5641), + [anon_sym___stdcall] = ACTIONS(5641), + [anon_sym___fastcall] = ACTIONS(5641), + [anon_sym___thiscall] = ACTIONS(5641), + [anon_sym___vectorcall] = ACTIONS(5641), + [anon_sym_LBRACE] = ACTIONS(5643), + [anon_sym_signed] = ACTIONS(5641), + [anon_sym_unsigned] = ACTIONS(5641), + [anon_sym_long] = ACTIONS(5641), + [anon_sym_short] = ACTIONS(5641), + [anon_sym_LBRACK] = ACTIONS(5641), + [anon_sym_EQ] = ACTIONS(5643), + [anon_sym_static] = ACTIONS(5641), + [anon_sym_register] = ACTIONS(5641), + [anon_sym_inline] = ACTIONS(5641), + [anon_sym___inline] = ACTIONS(5641), + [anon_sym___inline__] = ACTIONS(5641), + [anon_sym___forceinline] = ACTIONS(5641), + [anon_sym_thread_local] = ACTIONS(5641), + [anon_sym___thread] = ACTIONS(5641), + [anon_sym_const] = ACTIONS(5641), + [anon_sym_constexpr] = ACTIONS(5641), + [anon_sym_volatile] = ACTIONS(5641), + [anon_sym_restrict] = ACTIONS(5641), + [anon_sym___restrict__] = ACTIONS(5641), + [anon_sym__Atomic] = ACTIONS(5641), + [anon_sym__Noreturn] = ACTIONS(5641), + [anon_sym_noreturn] = ACTIONS(5641), + [anon_sym_mutable] = ACTIONS(5641), + [anon_sym_constinit] = ACTIONS(5641), + [anon_sym_consteval] = ACTIONS(5641), + [sym_primitive_type] = ACTIONS(5641), + [anon_sym_enum] = ACTIONS(5641), + [anon_sym_class] = ACTIONS(5641), + [anon_sym_struct] = ACTIONS(5641), + [anon_sym_union] = ACTIONS(5641), + [anon_sym_or] = ACTIONS(5641), + [anon_sym_and] = ACTIONS(5641), + [anon_sym_asm] = ACTIONS(5641), + [anon_sym___asm__] = ACTIONS(5641), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5641), + [anon_sym_decltype] = ACTIONS(5641), + [anon_sym_final] = ACTIONS(5641), + [anon_sym_override] = ACTIONS(5641), + [anon_sym_virtual] = ACTIONS(5641), + [anon_sym_alignas] = ACTIONS(5641), + [anon_sym_explicit] = ACTIONS(5641), + [anon_sym_typename] = ACTIONS(5641), + [anon_sym_template] = ACTIONS(5641), + [anon_sym_GT2] = ACTIONS(5643), + [anon_sym_operator] = ACTIONS(5641), + [anon_sym_try] = ACTIONS(5641), + [anon_sym_friend] = ACTIONS(5641), + [anon_sym_using] = ACTIONS(5641), + [anon_sym_concept] = ACTIONS(5641), + [anon_sym_requires] = ACTIONS(5641), + }, + [1870] = { + [sym_declaration_modifiers] = STATE(2412), + [sym_declaration_specifiers] = STATE(4730), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_parameter_declaration] = STATE(9064), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_type_parameter_declaration] = STATE(9064), + [sym_variadic_type_parameter_declaration] = STATE(9064), + [sym_optional_type_parameter_declaration] = STATE(9064), + [sym_template_template_parameter_declaration] = STATE(9064), + [sym_optional_parameter_declaration] = STATE(9064), + [sym_variadic_parameter_declaration] = STATE(9064), + [sym_template_type] = STATE(3324), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7569), + [sym_qualified_type_identifier] = STATE(4526), + [aux_sym_declaration_specifiers_repeat1] = STATE(2412), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5453), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), @@ -291297,1106 +278580,1481 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(5659), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(2119), + [anon_sym_class] = ACTIONS(5583), + [anon_sym_struct] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2125), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(5661), - [anon_sym_template] = ACTIONS(5663), + [anon_sym_typename] = ACTIONS(5585), + [anon_sym_template] = ACTIONS(5587), }, - [1890] = { - [ts_builtin_sym_end] = ACTIONS(5669), - [sym_identifier] = ACTIONS(5671), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5669), - [anon_sym_COMMA] = ACTIONS(5669), - [anon_sym_RPAREN] = ACTIONS(5669), - [aux_sym_preproc_if_token2] = ACTIONS(5669), - [aux_sym_preproc_else_token1] = ACTIONS(5669), - [aux_sym_preproc_elif_token1] = ACTIONS(5671), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5669), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5669), - [anon_sym_LPAREN2] = ACTIONS(5669), - [anon_sym_DASH] = ACTIONS(5671), - [anon_sym_PLUS] = ACTIONS(5671), - [anon_sym_STAR] = ACTIONS(5671), - [anon_sym_SLASH] = ACTIONS(5671), - [anon_sym_PERCENT] = ACTIONS(5671), - [anon_sym_PIPE_PIPE] = ACTIONS(5669), - [anon_sym_AMP_AMP] = ACTIONS(5669), - [anon_sym_PIPE] = ACTIONS(5671), - [anon_sym_CARET] = ACTIONS(5671), - [anon_sym_AMP] = ACTIONS(5671), - [anon_sym_EQ_EQ] = ACTIONS(5669), - [anon_sym_BANG_EQ] = ACTIONS(5669), - [anon_sym_GT] = ACTIONS(5671), - [anon_sym_GT_EQ] = ACTIONS(5669), - [anon_sym_LT_EQ] = ACTIONS(5671), - [anon_sym_LT] = ACTIONS(5671), - [anon_sym_LT_LT] = ACTIONS(5671), - [anon_sym_GT_GT] = ACTIONS(5671), - [anon_sym_SEMI] = ACTIONS(5669), - [anon_sym_RBRACE] = ACTIONS(5669), - [anon_sym_LBRACK] = ACTIONS(5669), - [anon_sym_RBRACK] = ACTIONS(5669), - [anon_sym_EQ] = ACTIONS(5671), - [anon_sym_COLON] = ACTIONS(5669), - [anon_sym_QMARK] = ACTIONS(5669), - [anon_sym_STAR_EQ] = ACTIONS(5669), - [anon_sym_SLASH_EQ] = ACTIONS(5669), - [anon_sym_PERCENT_EQ] = ACTIONS(5669), - [anon_sym_PLUS_EQ] = ACTIONS(5669), - [anon_sym_DASH_EQ] = ACTIONS(5669), - [anon_sym_LT_LT_EQ] = ACTIONS(5669), - [anon_sym_GT_GT_EQ] = ACTIONS(5669), - [anon_sym_AMP_EQ] = ACTIONS(5669), - [anon_sym_CARET_EQ] = ACTIONS(5669), - [anon_sym_PIPE_EQ] = ACTIONS(5669), - [anon_sym_and_eq] = ACTIONS(5671), - [anon_sym_or_eq] = ACTIONS(5671), - [anon_sym_xor_eq] = ACTIONS(5671), - [anon_sym_LT_EQ_GT] = ACTIONS(5669), - [anon_sym_or] = ACTIONS(5671), - [anon_sym_and] = ACTIONS(5671), - [anon_sym_bitor] = ACTIONS(5671), - [anon_sym_xor] = ACTIONS(5671), - [anon_sym_bitand] = ACTIONS(5671), - [anon_sym_not_eq] = ACTIONS(5671), - [anon_sym_DASH_DASH] = ACTIONS(5669), - [anon_sym_PLUS_PLUS] = ACTIONS(5669), - [anon_sym_DOT] = ACTIONS(5671), - [anon_sym_DOT_STAR] = ACTIONS(5669), - [anon_sym_DASH_GT] = ACTIONS(5669), - [anon_sym_L_DQUOTE] = ACTIONS(5669), - [anon_sym_u_DQUOTE] = ACTIONS(5669), - [anon_sym_U_DQUOTE] = ACTIONS(5669), - [anon_sym_u8_DQUOTE] = ACTIONS(5669), - [anon_sym_DQUOTE] = ACTIONS(5669), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5669), - [anon_sym_LR_DQUOTE] = ACTIONS(5669), - [anon_sym_uR_DQUOTE] = ACTIONS(5669), - [anon_sym_UR_DQUOTE] = ACTIONS(5669), - [anon_sym_u8R_DQUOTE] = ACTIONS(5669), - [sym_literal_suffix] = ACTIONS(5671), + [1871] = { + [sym_identifier] = ACTIONS(5433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5445), + [anon_sym_COMMA] = ACTIONS(5445), + [anon_sym_RPAREN] = ACTIONS(5445), + [anon_sym_LPAREN2] = ACTIONS(5435), + [anon_sym_TILDE] = ACTIONS(5438), + [anon_sym_DASH] = ACTIONS(5440), + [anon_sym_PLUS] = ACTIONS(5440), + [anon_sym_STAR] = ACTIONS(5435), + [anon_sym_SLASH] = ACTIONS(5440), + [anon_sym_PERCENT] = ACTIONS(5445), + [anon_sym_PIPE_PIPE] = ACTIONS(5445), + [anon_sym_AMP_AMP] = ACTIONS(5435), + [anon_sym_PIPE] = ACTIONS(5440), + [anon_sym_CARET] = ACTIONS(5445), + [anon_sym_AMP] = ACTIONS(5442), + [anon_sym_EQ_EQ] = ACTIONS(5445), + [anon_sym_BANG_EQ] = ACTIONS(5445), + [anon_sym_GT] = ACTIONS(5440), + [anon_sym_GT_EQ] = ACTIONS(5445), + [anon_sym_LT_EQ] = ACTIONS(5440), + [anon_sym_LT] = ACTIONS(5440), + [anon_sym_LT_LT] = ACTIONS(5445), + [anon_sym_GT_GT] = ACTIONS(5445), + [anon_sym_SEMI] = ACTIONS(5445), + [anon_sym___extension__] = ACTIONS(5433), + [anon_sym_extern] = ACTIONS(5433), + [anon_sym___attribute__] = ACTIONS(5433), + [anon_sym_COLON_COLON] = ACTIONS(5438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5438), + [anon_sym___declspec] = ACTIONS(5433), + [anon_sym___based] = ACTIONS(5433), + [anon_sym_LBRACE] = ACTIONS(5438), + [anon_sym_LBRACK] = ACTIONS(5442), + [anon_sym_static] = ACTIONS(5433), + [anon_sym_register] = ACTIONS(5433), + [anon_sym_inline] = ACTIONS(5433), + [anon_sym___inline] = ACTIONS(5433), + [anon_sym___inline__] = ACTIONS(5433), + [anon_sym___forceinline] = ACTIONS(5433), + [anon_sym_thread_local] = ACTIONS(5433), + [anon_sym___thread] = ACTIONS(5433), + [anon_sym_const] = ACTIONS(5433), + [anon_sym_constexpr] = ACTIONS(5433), + [anon_sym_volatile] = ACTIONS(5433), + [anon_sym_restrict] = ACTIONS(5433), + [anon_sym___restrict__] = ACTIONS(5433), + [anon_sym__Atomic] = ACTIONS(5433), + [anon_sym__Noreturn] = ACTIONS(5433), + [anon_sym_noreturn] = ACTIONS(5433), + [anon_sym_mutable] = ACTIONS(5433), + [anon_sym_constinit] = ACTIONS(5433), + [anon_sym_consteval] = ACTIONS(5433), + [anon_sym_QMARK] = ACTIONS(5445), + [anon_sym_LT_EQ_GT] = ACTIONS(5445), + [anon_sym_or] = ACTIONS(5440), + [anon_sym_and] = ACTIONS(5440), + [anon_sym_bitor] = ACTIONS(5440), + [anon_sym_xor] = ACTIONS(5440), + [anon_sym_bitand] = ACTIONS(5440), + [anon_sym_not_eq] = ACTIONS(5440), + [anon_sym_DASH_DASH] = ACTIONS(5445), + [anon_sym_PLUS_PLUS] = ACTIONS(5445), + [anon_sym_DOT] = ACTIONS(5440), + [anon_sym_DOT_STAR] = ACTIONS(5445), + [anon_sym_DASH_GT] = ACTIONS(5445), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5433), + [anon_sym_decltype] = ACTIONS(5433), + [anon_sym_virtual] = ACTIONS(5433), + [anon_sym_alignas] = ACTIONS(5433), + [anon_sym_template] = ACTIONS(5433), + [anon_sym_operator] = ACTIONS(5433), }, - [1891] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5458), - [anon_sym_COMMA] = ACTIONS(5458), - [anon_sym_RPAREN] = ACTIONS(5458), - [anon_sym_LPAREN2] = ACTIONS(5458), - [anon_sym_DASH] = ACTIONS(5456), - [anon_sym_PLUS] = ACTIONS(5456), - [anon_sym_STAR] = ACTIONS(5456), - [anon_sym_SLASH] = ACTIONS(5456), - [anon_sym_PERCENT] = ACTIONS(5456), - [anon_sym_PIPE_PIPE] = ACTIONS(5458), - [anon_sym_AMP_AMP] = ACTIONS(5458), - [anon_sym_PIPE] = ACTIONS(5456), - [anon_sym_CARET] = ACTIONS(5456), - [anon_sym_AMP] = ACTIONS(5456), - [anon_sym_EQ_EQ] = ACTIONS(5458), - [anon_sym_BANG_EQ] = ACTIONS(5458), - [anon_sym_GT] = ACTIONS(5456), - [anon_sym_GT_EQ] = ACTIONS(5458), - [anon_sym_LT_EQ] = ACTIONS(5456), - [anon_sym_LT] = ACTIONS(5456), - [anon_sym_LT_LT] = ACTIONS(5456), - [anon_sym_GT_GT] = ACTIONS(5456), - [anon_sym___extension__] = ACTIONS(5458), - [anon_sym___attribute__] = ACTIONS(5458), - [anon_sym_COLON_COLON] = ACTIONS(5458), - [anon_sym_LBRACE] = ACTIONS(5458), - [anon_sym_LBRACK] = ACTIONS(5458), - [anon_sym_EQ] = ACTIONS(5456), - [anon_sym_const] = ACTIONS(5456), - [anon_sym_constexpr] = ACTIONS(5458), - [anon_sym_volatile] = ACTIONS(5458), - [anon_sym_restrict] = ACTIONS(5458), - [anon_sym___restrict__] = ACTIONS(5458), - [anon_sym__Atomic] = ACTIONS(5458), - [anon_sym__Noreturn] = ACTIONS(5458), - [anon_sym_noreturn] = ACTIONS(5458), - [anon_sym_mutable] = ACTIONS(5458), - [anon_sym_constinit] = ACTIONS(5458), - [anon_sym_consteval] = ACTIONS(5458), - [anon_sym_COLON] = ACTIONS(5456), - [anon_sym_QMARK] = ACTIONS(5458), - [anon_sym_STAR_EQ] = ACTIONS(5458), - [anon_sym_SLASH_EQ] = ACTIONS(5458), - [anon_sym_PERCENT_EQ] = ACTIONS(5458), - [anon_sym_PLUS_EQ] = ACTIONS(5458), - [anon_sym_DASH_EQ] = ACTIONS(5458), - [anon_sym_LT_LT_EQ] = ACTIONS(5458), - [anon_sym_GT_GT_EQ] = ACTIONS(5458), - [anon_sym_AMP_EQ] = ACTIONS(5458), - [anon_sym_CARET_EQ] = ACTIONS(5458), - [anon_sym_PIPE_EQ] = ACTIONS(5458), - [anon_sym_and_eq] = ACTIONS(5458), - [anon_sym_or_eq] = ACTIONS(5458), - [anon_sym_xor_eq] = ACTIONS(5458), - [anon_sym_LT_EQ_GT] = ACTIONS(5458), - [anon_sym_or] = ACTIONS(5456), - [anon_sym_and] = ACTIONS(5456), - [anon_sym_bitor] = ACTIONS(5458), - [anon_sym_xor] = ACTIONS(5456), - [anon_sym_bitand] = ACTIONS(5458), - [anon_sym_not_eq] = ACTIONS(5458), - [anon_sym_DASH_DASH] = ACTIONS(5458), - [anon_sym_PLUS_PLUS] = ACTIONS(5458), - [anon_sym_DOT] = ACTIONS(5456), - [anon_sym_DOT_STAR] = ACTIONS(5458), - [anon_sym_DASH_GT] = ACTIONS(5456), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5458), - [anon_sym_decltype] = ACTIONS(5458), - [anon_sym_final] = ACTIONS(5458), - [anon_sym_override] = ACTIONS(5458), - [anon_sym_DASH_GT_STAR] = ACTIONS(5458), - [sym_semgrep_metavar] = ACTIONS(5458), + [1872] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5419), + [anon_sym_COMMA] = ACTIONS(5419), + [anon_sym_RPAREN] = ACTIONS(5419), + [anon_sym_LPAREN2] = ACTIONS(5419), + [anon_sym_DASH] = ACTIONS(5417), + [anon_sym_PLUS] = ACTIONS(5417), + [anon_sym_STAR] = ACTIONS(5417), + [anon_sym_SLASH] = ACTIONS(5417), + [anon_sym_PERCENT] = ACTIONS(5417), + [anon_sym_PIPE_PIPE] = ACTIONS(5419), + [anon_sym_AMP_AMP] = ACTIONS(5419), + [anon_sym_PIPE] = ACTIONS(5417), + [anon_sym_CARET] = ACTIONS(5417), + [anon_sym_AMP] = ACTIONS(5417), + [anon_sym_EQ_EQ] = ACTIONS(5419), + [anon_sym_BANG_EQ] = ACTIONS(5419), + [anon_sym_GT] = ACTIONS(5417), + [anon_sym_GT_EQ] = ACTIONS(5419), + [anon_sym_LT_EQ] = ACTIONS(5417), + [anon_sym_LT] = ACTIONS(5417), + [anon_sym_LT_LT] = ACTIONS(5417), + [anon_sym_GT_GT] = ACTIONS(5417), + [anon_sym___extension__] = ACTIONS(5419), + [anon_sym___attribute__] = ACTIONS(5419), + [anon_sym_COLON_COLON] = ACTIONS(5419), + [anon_sym_LBRACE] = ACTIONS(5419), + [anon_sym_LBRACK] = ACTIONS(5419), + [anon_sym_EQ] = ACTIONS(5417), + [anon_sym_const] = ACTIONS(5417), + [anon_sym_constexpr] = ACTIONS(5419), + [anon_sym_volatile] = ACTIONS(5419), + [anon_sym_restrict] = ACTIONS(5419), + [anon_sym___restrict__] = ACTIONS(5419), + [anon_sym__Atomic] = ACTIONS(5419), + [anon_sym__Noreturn] = ACTIONS(5419), + [anon_sym_noreturn] = ACTIONS(5419), + [anon_sym_mutable] = ACTIONS(5419), + [anon_sym_constinit] = ACTIONS(5419), + [anon_sym_consteval] = ACTIONS(5419), + [anon_sym_COLON] = ACTIONS(5417), + [anon_sym_QMARK] = ACTIONS(5419), + [anon_sym_STAR_EQ] = ACTIONS(5419), + [anon_sym_SLASH_EQ] = ACTIONS(5419), + [anon_sym_PERCENT_EQ] = ACTIONS(5419), + [anon_sym_PLUS_EQ] = ACTIONS(5419), + [anon_sym_DASH_EQ] = ACTIONS(5419), + [anon_sym_LT_LT_EQ] = ACTIONS(5419), + [anon_sym_GT_GT_EQ] = ACTIONS(5419), + [anon_sym_AMP_EQ] = ACTIONS(5419), + [anon_sym_CARET_EQ] = ACTIONS(5419), + [anon_sym_PIPE_EQ] = ACTIONS(5419), + [anon_sym_and_eq] = ACTIONS(5419), + [anon_sym_or_eq] = ACTIONS(5419), + [anon_sym_xor_eq] = ACTIONS(5419), + [anon_sym_LT_EQ_GT] = ACTIONS(5419), + [anon_sym_or] = ACTIONS(5417), + [anon_sym_and] = ACTIONS(5417), + [anon_sym_bitor] = ACTIONS(5419), + [anon_sym_xor] = ACTIONS(5417), + [anon_sym_bitand] = ACTIONS(5419), + [anon_sym_not_eq] = ACTIONS(5419), + [anon_sym_DASH_DASH] = ACTIONS(5419), + [anon_sym_PLUS_PLUS] = ACTIONS(5419), + [anon_sym_DOT] = ACTIONS(5417), + [anon_sym_DOT_STAR] = ACTIONS(5419), + [anon_sym_DASH_GT] = ACTIONS(5417), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5419), + [anon_sym_decltype] = ACTIONS(5419), + [anon_sym_final] = ACTIONS(5419), + [anon_sym_override] = ACTIONS(5419), + [anon_sym_DASH_GT_STAR] = ACTIONS(5419), + [sym_semgrep_metavar] = ACTIONS(5419), }, - [1892] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5513), - [anon_sym_COMMA] = ACTIONS(5513), - [anon_sym_RPAREN] = ACTIONS(5513), - [anon_sym_LPAREN2] = ACTIONS(5513), - [anon_sym_DASH] = ACTIONS(5511), - [anon_sym_PLUS] = ACTIONS(5511), - [anon_sym_STAR] = ACTIONS(5511), - [anon_sym_SLASH] = ACTIONS(5511), - [anon_sym_PERCENT] = ACTIONS(5511), - [anon_sym_PIPE_PIPE] = ACTIONS(5513), - [anon_sym_AMP_AMP] = ACTIONS(5513), - [anon_sym_PIPE] = ACTIONS(5511), - [anon_sym_CARET] = ACTIONS(5511), - [anon_sym_AMP] = ACTIONS(5511), - [anon_sym_EQ_EQ] = ACTIONS(5513), - [anon_sym_BANG_EQ] = ACTIONS(5513), - [anon_sym_GT] = ACTIONS(5511), - [anon_sym_GT_EQ] = ACTIONS(5513), - [anon_sym_LT_EQ] = ACTIONS(5511), - [anon_sym_LT] = ACTIONS(5511), - [anon_sym_LT_LT] = ACTIONS(5511), - [anon_sym_GT_GT] = ACTIONS(5511), - [anon_sym___extension__] = ACTIONS(5513), - [anon_sym___attribute__] = ACTIONS(5513), - [anon_sym_COLON_COLON] = ACTIONS(5513), - [anon_sym_LBRACE] = ACTIONS(5513), - [anon_sym_LBRACK] = ACTIONS(5513), - [anon_sym_EQ] = ACTIONS(5511), - [anon_sym_const] = ACTIONS(5511), - [anon_sym_constexpr] = ACTIONS(5513), - [anon_sym_volatile] = ACTIONS(5513), - [anon_sym_restrict] = ACTIONS(5513), - [anon_sym___restrict__] = ACTIONS(5513), - [anon_sym__Atomic] = ACTIONS(5513), - [anon_sym__Noreturn] = ACTIONS(5513), - [anon_sym_noreturn] = ACTIONS(5513), - [anon_sym_mutable] = ACTIONS(5513), - [anon_sym_constinit] = ACTIONS(5513), - [anon_sym_consteval] = ACTIONS(5513), - [anon_sym_COLON] = ACTIONS(5511), - [anon_sym_QMARK] = ACTIONS(5513), - [anon_sym_STAR_EQ] = ACTIONS(5513), - [anon_sym_SLASH_EQ] = ACTIONS(5513), - [anon_sym_PERCENT_EQ] = ACTIONS(5513), - [anon_sym_PLUS_EQ] = ACTIONS(5513), - [anon_sym_DASH_EQ] = ACTIONS(5513), - [anon_sym_LT_LT_EQ] = ACTIONS(5513), - [anon_sym_GT_GT_EQ] = ACTIONS(5513), - [anon_sym_AMP_EQ] = ACTIONS(5513), - [anon_sym_CARET_EQ] = ACTIONS(5513), - [anon_sym_PIPE_EQ] = ACTIONS(5513), - [anon_sym_and_eq] = ACTIONS(5513), - [anon_sym_or_eq] = ACTIONS(5513), - [anon_sym_xor_eq] = ACTIONS(5513), - [anon_sym_LT_EQ_GT] = ACTIONS(5513), - [anon_sym_or] = ACTIONS(5511), - [anon_sym_and] = ACTIONS(5511), - [anon_sym_bitor] = ACTIONS(5513), - [anon_sym_xor] = ACTIONS(5511), - [anon_sym_bitand] = ACTIONS(5513), - [anon_sym_not_eq] = ACTIONS(5513), - [anon_sym_DASH_DASH] = ACTIONS(5513), - [anon_sym_PLUS_PLUS] = ACTIONS(5513), - [anon_sym_DOT] = ACTIONS(5511), - [anon_sym_DOT_STAR] = ACTIONS(5513), - [anon_sym_DASH_GT] = ACTIONS(5511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5513), - [anon_sym_decltype] = ACTIONS(5513), - [anon_sym_final] = ACTIONS(5513), - [anon_sym_override] = ACTIONS(5513), - [anon_sym_DASH_GT_STAR] = ACTIONS(5513), - [sym_semgrep_metavar] = ACTIONS(5513), + [1873] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5400), + [anon_sym_COMMA] = ACTIONS(5400), + [anon_sym_RPAREN] = ACTIONS(5400), + [anon_sym_LPAREN2] = ACTIONS(5400), + [anon_sym_DASH] = ACTIONS(5398), + [anon_sym_PLUS] = ACTIONS(5398), + [anon_sym_STAR] = ACTIONS(5398), + [anon_sym_SLASH] = ACTIONS(5398), + [anon_sym_PERCENT] = ACTIONS(5398), + [anon_sym_PIPE_PIPE] = ACTIONS(5400), + [anon_sym_AMP_AMP] = ACTIONS(5400), + [anon_sym_PIPE] = ACTIONS(5398), + [anon_sym_CARET] = ACTIONS(5398), + [anon_sym_AMP] = ACTIONS(5398), + [anon_sym_EQ_EQ] = ACTIONS(5400), + [anon_sym_BANG_EQ] = ACTIONS(5400), + [anon_sym_GT] = ACTIONS(5398), + [anon_sym_GT_EQ] = ACTIONS(5400), + [anon_sym_LT_EQ] = ACTIONS(5398), + [anon_sym_LT] = ACTIONS(5398), + [anon_sym_LT_LT] = ACTIONS(5398), + [anon_sym_GT_GT] = ACTIONS(5398), + [anon_sym___extension__] = ACTIONS(5400), + [anon_sym___attribute__] = ACTIONS(5400), + [anon_sym_COLON_COLON] = ACTIONS(5400), + [anon_sym_LBRACE] = ACTIONS(5400), + [anon_sym_LBRACK] = ACTIONS(5400), + [anon_sym_EQ] = ACTIONS(5398), + [anon_sym_const] = ACTIONS(5398), + [anon_sym_constexpr] = ACTIONS(5400), + [anon_sym_volatile] = ACTIONS(5400), + [anon_sym_restrict] = ACTIONS(5400), + [anon_sym___restrict__] = ACTIONS(5400), + [anon_sym__Atomic] = ACTIONS(5400), + [anon_sym__Noreturn] = ACTIONS(5400), + [anon_sym_noreturn] = ACTIONS(5400), + [anon_sym_mutable] = ACTIONS(5400), + [anon_sym_constinit] = ACTIONS(5400), + [anon_sym_consteval] = ACTIONS(5400), + [anon_sym_COLON] = ACTIONS(5398), + [anon_sym_QMARK] = ACTIONS(5400), + [anon_sym_STAR_EQ] = ACTIONS(5400), + [anon_sym_SLASH_EQ] = ACTIONS(5400), + [anon_sym_PERCENT_EQ] = ACTIONS(5400), + [anon_sym_PLUS_EQ] = ACTIONS(5400), + [anon_sym_DASH_EQ] = ACTIONS(5400), + [anon_sym_LT_LT_EQ] = ACTIONS(5400), + [anon_sym_GT_GT_EQ] = ACTIONS(5400), + [anon_sym_AMP_EQ] = ACTIONS(5400), + [anon_sym_CARET_EQ] = ACTIONS(5400), + [anon_sym_PIPE_EQ] = ACTIONS(5400), + [anon_sym_and_eq] = ACTIONS(5400), + [anon_sym_or_eq] = ACTIONS(5400), + [anon_sym_xor_eq] = ACTIONS(5400), + [anon_sym_LT_EQ_GT] = ACTIONS(5400), + [anon_sym_or] = ACTIONS(5398), + [anon_sym_and] = ACTIONS(5398), + [anon_sym_bitor] = ACTIONS(5400), + [anon_sym_xor] = ACTIONS(5398), + [anon_sym_bitand] = ACTIONS(5400), + [anon_sym_not_eq] = ACTIONS(5400), + [anon_sym_DASH_DASH] = ACTIONS(5400), + [anon_sym_PLUS_PLUS] = ACTIONS(5400), + [anon_sym_DOT] = ACTIONS(5398), + [anon_sym_DOT_STAR] = ACTIONS(5400), + [anon_sym_DASH_GT] = ACTIONS(5398), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5400), + [anon_sym_decltype] = ACTIONS(5400), + [anon_sym_final] = ACTIONS(5400), + [anon_sym_override] = ACTIONS(5400), + [anon_sym_DASH_GT_STAR] = ACTIONS(5400), + [sym_semgrep_metavar] = ACTIONS(5400), }, - [1893] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5479), - [anon_sym_COMMA] = ACTIONS(5479), - [anon_sym_RPAREN] = ACTIONS(5479), - [anon_sym_LPAREN2] = ACTIONS(5479), - [anon_sym_DASH] = ACTIONS(5477), - [anon_sym_PLUS] = ACTIONS(5477), - [anon_sym_STAR] = ACTIONS(5477), - [anon_sym_SLASH] = ACTIONS(5477), - [anon_sym_PERCENT] = ACTIONS(5477), - [anon_sym_PIPE_PIPE] = ACTIONS(5479), - [anon_sym_AMP_AMP] = ACTIONS(5479), - [anon_sym_PIPE] = ACTIONS(5477), - [anon_sym_CARET] = ACTIONS(5477), - [anon_sym_AMP] = ACTIONS(5477), - [anon_sym_EQ_EQ] = ACTIONS(5479), - [anon_sym_BANG_EQ] = ACTIONS(5479), - [anon_sym_GT] = ACTIONS(5477), - [anon_sym_GT_EQ] = ACTIONS(5479), - [anon_sym_LT_EQ] = ACTIONS(5477), - [anon_sym_LT] = ACTIONS(5477), - [anon_sym_LT_LT] = ACTIONS(5477), - [anon_sym_GT_GT] = ACTIONS(5477), - [anon_sym___extension__] = ACTIONS(5479), - [anon_sym___attribute__] = ACTIONS(5479), - [anon_sym_COLON_COLON] = ACTIONS(5479), - [anon_sym_LBRACE] = ACTIONS(5479), - [anon_sym_LBRACK] = ACTIONS(5479), - [anon_sym_EQ] = ACTIONS(5477), - [anon_sym_const] = ACTIONS(5477), - [anon_sym_constexpr] = ACTIONS(5479), - [anon_sym_volatile] = ACTIONS(5479), - [anon_sym_restrict] = ACTIONS(5479), - [anon_sym___restrict__] = ACTIONS(5479), - [anon_sym__Atomic] = ACTIONS(5479), - [anon_sym__Noreturn] = ACTIONS(5479), - [anon_sym_noreturn] = ACTIONS(5479), - [anon_sym_mutable] = ACTIONS(5479), - [anon_sym_constinit] = ACTIONS(5479), - [anon_sym_consteval] = ACTIONS(5479), - [anon_sym_COLON] = ACTIONS(5477), - [anon_sym_QMARK] = ACTIONS(5479), - [anon_sym_STAR_EQ] = ACTIONS(5479), - [anon_sym_SLASH_EQ] = ACTIONS(5479), - [anon_sym_PERCENT_EQ] = ACTIONS(5479), - [anon_sym_PLUS_EQ] = ACTIONS(5479), - [anon_sym_DASH_EQ] = ACTIONS(5479), - [anon_sym_LT_LT_EQ] = ACTIONS(5479), - [anon_sym_GT_GT_EQ] = ACTIONS(5479), - [anon_sym_AMP_EQ] = ACTIONS(5479), - [anon_sym_CARET_EQ] = ACTIONS(5479), - [anon_sym_PIPE_EQ] = ACTIONS(5479), - [anon_sym_and_eq] = ACTIONS(5479), - [anon_sym_or_eq] = ACTIONS(5479), - [anon_sym_xor_eq] = ACTIONS(5479), - [anon_sym_LT_EQ_GT] = ACTIONS(5479), - [anon_sym_or] = ACTIONS(5477), - [anon_sym_and] = ACTIONS(5477), - [anon_sym_bitor] = ACTIONS(5479), - [anon_sym_xor] = ACTIONS(5477), - [anon_sym_bitand] = ACTIONS(5479), - [anon_sym_not_eq] = ACTIONS(5479), - [anon_sym_DASH_DASH] = ACTIONS(5479), - [anon_sym_PLUS_PLUS] = ACTIONS(5479), - [anon_sym_DOT] = ACTIONS(5477), - [anon_sym_DOT_STAR] = ACTIONS(5479), - [anon_sym_DASH_GT] = ACTIONS(5477), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5479), - [anon_sym_decltype] = ACTIONS(5479), - [anon_sym_final] = ACTIONS(5479), - [anon_sym_override] = ACTIONS(5479), - [anon_sym_DASH_GT_STAR] = ACTIONS(5479), - [sym_semgrep_metavar] = ACTIONS(5479), + [1874] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5404), + [anon_sym_COMMA] = ACTIONS(5404), + [anon_sym_RPAREN] = ACTIONS(5404), + [anon_sym_LPAREN2] = ACTIONS(5404), + [anon_sym_DASH] = ACTIONS(5402), + [anon_sym_PLUS] = ACTIONS(5402), + [anon_sym_STAR] = ACTIONS(5402), + [anon_sym_SLASH] = ACTIONS(5402), + [anon_sym_PERCENT] = ACTIONS(5402), + [anon_sym_PIPE_PIPE] = ACTIONS(5404), + [anon_sym_AMP_AMP] = ACTIONS(5404), + [anon_sym_PIPE] = ACTIONS(5402), + [anon_sym_CARET] = ACTIONS(5402), + [anon_sym_AMP] = ACTIONS(5402), + [anon_sym_EQ_EQ] = ACTIONS(5404), + [anon_sym_BANG_EQ] = ACTIONS(5404), + [anon_sym_GT] = ACTIONS(5402), + [anon_sym_GT_EQ] = ACTIONS(5404), + [anon_sym_LT_EQ] = ACTIONS(5402), + [anon_sym_LT] = ACTIONS(5402), + [anon_sym_LT_LT] = ACTIONS(5402), + [anon_sym_GT_GT] = ACTIONS(5402), + [anon_sym___extension__] = ACTIONS(5404), + [anon_sym___attribute__] = ACTIONS(5404), + [anon_sym_COLON_COLON] = ACTIONS(5404), + [anon_sym_LBRACE] = ACTIONS(5404), + [anon_sym_LBRACK] = ACTIONS(5404), + [anon_sym_EQ] = ACTIONS(5402), + [anon_sym_const] = ACTIONS(5402), + [anon_sym_constexpr] = ACTIONS(5404), + [anon_sym_volatile] = ACTIONS(5404), + [anon_sym_restrict] = ACTIONS(5404), + [anon_sym___restrict__] = ACTIONS(5404), + [anon_sym__Atomic] = ACTIONS(5404), + [anon_sym__Noreturn] = ACTIONS(5404), + [anon_sym_noreturn] = ACTIONS(5404), + [anon_sym_mutable] = ACTIONS(5404), + [anon_sym_constinit] = ACTIONS(5404), + [anon_sym_consteval] = ACTIONS(5404), + [anon_sym_COLON] = ACTIONS(5402), + [anon_sym_QMARK] = ACTIONS(5404), + [anon_sym_STAR_EQ] = ACTIONS(5404), + [anon_sym_SLASH_EQ] = ACTIONS(5404), + [anon_sym_PERCENT_EQ] = ACTIONS(5404), + [anon_sym_PLUS_EQ] = ACTIONS(5404), + [anon_sym_DASH_EQ] = ACTIONS(5404), + [anon_sym_LT_LT_EQ] = ACTIONS(5404), + [anon_sym_GT_GT_EQ] = ACTIONS(5404), + [anon_sym_AMP_EQ] = ACTIONS(5404), + [anon_sym_CARET_EQ] = ACTIONS(5404), + [anon_sym_PIPE_EQ] = ACTIONS(5404), + [anon_sym_and_eq] = ACTIONS(5404), + [anon_sym_or_eq] = ACTIONS(5404), + [anon_sym_xor_eq] = ACTIONS(5404), + [anon_sym_LT_EQ_GT] = ACTIONS(5404), + [anon_sym_or] = ACTIONS(5402), + [anon_sym_and] = ACTIONS(5402), + [anon_sym_bitor] = ACTIONS(5404), + [anon_sym_xor] = ACTIONS(5402), + [anon_sym_bitand] = ACTIONS(5404), + [anon_sym_not_eq] = ACTIONS(5404), + [anon_sym_DASH_DASH] = ACTIONS(5404), + [anon_sym_PLUS_PLUS] = ACTIONS(5404), + [anon_sym_DOT] = ACTIONS(5402), + [anon_sym_DOT_STAR] = ACTIONS(5404), + [anon_sym_DASH_GT] = ACTIONS(5402), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5404), + [anon_sym_decltype] = ACTIONS(5404), + [anon_sym_final] = ACTIONS(5404), + [anon_sym_override] = ACTIONS(5404), + [anon_sym_DASH_GT_STAR] = ACTIONS(5404), + [sym_semgrep_metavar] = ACTIONS(5404), }, - [1894] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5483), - [anon_sym_COMMA] = ACTIONS(5483), - [anon_sym_RPAREN] = ACTIONS(5483), - [anon_sym_LPAREN2] = ACTIONS(5483), - [anon_sym_DASH] = ACTIONS(5481), - [anon_sym_PLUS] = ACTIONS(5481), - [anon_sym_STAR] = ACTIONS(5481), - [anon_sym_SLASH] = ACTIONS(5481), - [anon_sym_PERCENT] = ACTIONS(5481), - [anon_sym_PIPE_PIPE] = ACTIONS(5483), - [anon_sym_AMP_AMP] = ACTIONS(5483), - [anon_sym_PIPE] = ACTIONS(5481), - [anon_sym_CARET] = ACTIONS(5481), - [anon_sym_AMP] = ACTIONS(5481), - [anon_sym_EQ_EQ] = ACTIONS(5483), - [anon_sym_BANG_EQ] = ACTIONS(5483), - [anon_sym_GT] = ACTIONS(5481), - [anon_sym_GT_EQ] = ACTIONS(5483), - [anon_sym_LT_EQ] = ACTIONS(5481), - [anon_sym_LT] = ACTIONS(5481), - [anon_sym_LT_LT] = ACTIONS(5481), - [anon_sym_GT_GT] = ACTIONS(5481), - [anon_sym___extension__] = ACTIONS(5483), - [anon_sym___attribute__] = ACTIONS(5483), - [anon_sym_COLON_COLON] = ACTIONS(5483), - [anon_sym_LBRACE] = ACTIONS(5483), - [anon_sym_LBRACK] = ACTIONS(5483), - [anon_sym_EQ] = ACTIONS(5481), - [anon_sym_const] = ACTIONS(5481), - [anon_sym_constexpr] = ACTIONS(5483), - [anon_sym_volatile] = ACTIONS(5483), - [anon_sym_restrict] = ACTIONS(5483), - [anon_sym___restrict__] = ACTIONS(5483), - [anon_sym__Atomic] = ACTIONS(5483), - [anon_sym__Noreturn] = ACTIONS(5483), - [anon_sym_noreturn] = ACTIONS(5483), - [anon_sym_mutable] = ACTIONS(5483), - [anon_sym_constinit] = ACTIONS(5483), - [anon_sym_consteval] = ACTIONS(5483), - [anon_sym_COLON] = ACTIONS(5481), - [anon_sym_QMARK] = ACTIONS(5483), - [anon_sym_STAR_EQ] = ACTIONS(5483), - [anon_sym_SLASH_EQ] = ACTIONS(5483), - [anon_sym_PERCENT_EQ] = ACTIONS(5483), - [anon_sym_PLUS_EQ] = ACTIONS(5483), - [anon_sym_DASH_EQ] = ACTIONS(5483), - [anon_sym_LT_LT_EQ] = ACTIONS(5483), - [anon_sym_GT_GT_EQ] = ACTIONS(5483), - [anon_sym_AMP_EQ] = ACTIONS(5483), - [anon_sym_CARET_EQ] = ACTIONS(5483), - [anon_sym_PIPE_EQ] = ACTIONS(5483), - [anon_sym_and_eq] = ACTIONS(5483), - [anon_sym_or_eq] = ACTIONS(5483), - [anon_sym_xor_eq] = ACTIONS(5483), - [anon_sym_LT_EQ_GT] = ACTIONS(5483), - [anon_sym_or] = ACTIONS(5481), - [anon_sym_and] = ACTIONS(5481), - [anon_sym_bitor] = ACTIONS(5483), - [anon_sym_xor] = ACTIONS(5481), - [anon_sym_bitand] = ACTIONS(5483), - [anon_sym_not_eq] = ACTIONS(5483), - [anon_sym_DASH_DASH] = ACTIONS(5483), - [anon_sym_PLUS_PLUS] = ACTIONS(5483), - [anon_sym_DOT] = ACTIONS(5481), - [anon_sym_DOT_STAR] = ACTIONS(5483), - [anon_sym_DASH_GT] = ACTIONS(5481), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5483), - [anon_sym_decltype] = ACTIONS(5483), - [anon_sym_final] = ACTIONS(5483), - [anon_sym_override] = ACTIONS(5483), - [anon_sym_DASH_GT_STAR] = ACTIONS(5483), - [sym_semgrep_metavar] = ACTIONS(5483), + [1875] = { + [sym_catch_clause] = STATE(1889), + [aux_sym_constructor_try_statement_repeat1] = STATE(1889), + [sym_identifier] = ACTIONS(3056), + [aux_sym_preproc_def_token1] = ACTIONS(3056), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3058), + [aux_sym_preproc_if_token1] = ACTIONS(3056), + [aux_sym_preproc_if_token2] = ACTIONS(3056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3056), + [aux_sym_preproc_else_token1] = ACTIONS(3056), + [aux_sym_preproc_elif_token1] = ACTIONS(3056), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3056), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3056), + [sym_preproc_directive] = ACTIONS(3056), + [anon_sym_LPAREN2] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3058), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_AMP_AMP] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3056), + [anon_sym___extension__] = ACTIONS(3056), + [anon_sym_typedef] = ACTIONS(3056), + [anon_sym_extern] = ACTIONS(3056), + [anon_sym___attribute__] = ACTIONS(3056), + [anon_sym_COLON_COLON] = ACTIONS(3058), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3058), + [anon_sym___declspec] = ACTIONS(3056), + [anon_sym___based] = ACTIONS(3056), + [anon_sym_signed] = ACTIONS(3056), + [anon_sym_unsigned] = ACTIONS(3056), + [anon_sym_long] = ACTIONS(3056), + [anon_sym_short] = ACTIONS(3056), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_static] = ACTIONS(3056), + [anon_sym_register] = ACTIONS(3056), + [anon_sym_inline] = ACTIONS(3056), + [anon_sym___inline] = ACTIONS(3056), + [anon_sym___inline__] = ACTIONS(3056), + [anon_sym___forceinline] = ACTIONS(3056), + [anon_sym_thread_local] = ACTIONS(3056), + [anon_sym___thread] = ACTIONS(3056), + [anon_sym_const] = ACTIONS(3056), + [anon_sym_constexpr] = ACTIONS(3056), + [anon_sym_volatile] = ACTIONS(3056), + [anon_sym_restrict] = ACTIONS(3056), + [anon_sym___restrict__] = ACTIONS(3056), + [anon_sym__Atomic] = ACTIONS(3056), + [anon_sym__Noreturn] = ACTIONS(3056), + [anon_sym_noreturn] = ACTIONS(3056), + [anon_sym_mutable] = ACTIONS(3056), + [anon_sym_constinit] = ACTIONS(3056), + [anon_sym_consteval] = ACTIONS(3056), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3056), + [anon_sym_class] = ACTIONS(3056), + [anon_sym_struct] = ACTIONS(3056), + [anon_sym_union] = ACTIONS(3056), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3056), + [anon_sym_decltype] = ACTIONS(3056), + [anon_sym_virtual] = ACTIONS(3056), + [anon_sym_alignas] = ACTIONS(3056), + [anon_sym_explicit] = ACTIONS(3056), + [anon_sym_typename] = ACTIONS(3056), + [anon_sym_template] = ACTIONS(3056), + [anon_sym_operator] = ACTIONS(3056), + [anon_sym_friend] = ACTIONS(3056), + [anon_sym_public] = ACTIONS(3056), + [anon_sym_private] = ACTIONS(3056), + [anon_sym_protected] = ACTIONS(3056), + [anon_sym_using] = ACTIONS(3056), + [anon_sym_static_assert] = ACTIONS(3056), + [anon_sym_catch] = ACTIONS(5645), + [sym_semgrep_metavar] = ACTIONS(3058), }, - [1895] = { - [sym_identifier] = ACTIONS(5518), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5520), - [anon_sym_COMMA] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(5520), - [anon_sym_LPAREN2] = ACTIONS(5522), - [anon_sym_TILDE] = ACTIONS(5525), - [anon_sym_DASH] = ACTIONS(5527), - [anon_sym_PLUS] = ACTIONS(5527), - [anon_sym_STAR] = ACTIONS(5522), - [anon_sym_SLASH] = ACTIONS(5527), - [anon_sym_PERCENT] = ACTIONS(5520), - [anon_sym_PIPE_PIPE] = ACTIONS(5520), - [anon_sym_AMP_AMP] = ACTIONS(5522), - [anon_sym_PIPE] = ACTIONS(5527), - [anon_sym_CARET] = ACTIONS(5520), - [anon_sym_AMP] = ACTIONS(5529), - [anon_sym_EQ_EQ] = ACTIONS(5520), - [anon_sym_BANG_EQ] = ACTIONS(5520), - [anon_sym_GT] = ACTIONS(5527), - [anon_sym_GT_EQ] = ACTIONS(5520), - [anon_sym_LT_EQ] = ACTIONS(5527), - [anon_sym_LT] = ACTIONS(5527), - [anon_sym_LT_LT] = ACTIONS(5520), - [anon_sym_GT_GT] = ACTIONS(5520), - [anon_sym_SEMI] = ACTIONS(5520), - [anon_sym___extension__] = ACTIONS(5518), - [anon_sym_extern] = ACTIONS(5518), - [anon_sym___attribute__] = ACTIONS(5518), - [anon_sym_COLON_COLON] = ACTIONS(5525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5525), - [anon_sym___declspec] = ACTIONS(5518), - [anon_sym___based] = ACTIONS(5518), - [anon_sym_LBRACE] = ACTIONS(5525), - [anon_sym_LBRACK] = ACTIONS(5529), - [anon_sym_static] = ACTIONS(5518), - [anon_sym_register] = ACTIONS(5518), - [anon_sym_inline] = ACTIONS(5518), - [anon_sym___inline] = ACTIONS(5518), - [anon_sym___inline__] = ACTIONS(5518), - [anon_sym___forceinline] = ACTIONS(5518), - [anon_sym_thread_local] = ACTIONS(5518), - [anon_sym___thread] = ACTIONS(5518), - [anon_sym_const] = ACTIONS(5518), - [anon_sym_constexpr] = ACTIONS(5518), - [anon_sym_volatile] = ACTIONS(5518), - [anon_sym_restrict] = ACTIONS(5518), - [anon_sym___restrict__] = ACTIONS(5518), - [anon_sym__Atomic] = ACTIONS(5518), - [anon_sym__Noreturn] = ACTIONS(5518), - [anon_sym_noreturn] = ACTIONS(5518), - [anon_sym_mutable] = ACTIONS(5518), - [anon_sym_constinit] = ACTIONS(5518), - [anon_sym_consteval] = ACTIONS(5518), - [anon_sym_QMARK] = ACTIONS(5520), - [anon_sym_LT_EQ_GT] = ACTIONS(5520), - [anon_sym_or] = ACTIONS(5527), - [anon_sym_and] = ACTIONS(5527), - [anon_sym_bitor] = ACTIONS(5527), - [anon_sym_xor] = ACTIONS(5527), - [anon_sym_bitand] = ACTIONS(5527), - [anon_sym_not_eq] = ACTIONS(5527), - [anon_sym_DASH_DASH] = ACTIONS(5520), - [anon_sym_PLUS_PLUS] = ACTIONS(5520), - [anon_sym_DOT] = ACTIONS(5527), - [anon_sym_DOT_STAR] = ACTIONS(5520), - [anon_sym_DASH_GT] = ACTIONS(5520), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5518), - [anon_sym_decltype] = ACTIONS(5518), - [anon_sym_virtual] = ACTIONS(5518), - [anon_sym_alignas] = ACTIONS(5518), - [anon_sym_template] = ACTIONS(5518), - [anon_sym_operator] = ACTIONS(5518), + [1876] = { + [ts_builtin_sym_end] = ACTIONS(5647), + [sym_identifier] = ACTIONS(5649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5647), + [anon_sym_COMMA] = ACTIONS(5647), + [anon_sym_RPAREN] = ACTIONS(5647), + [aux_sym_preproc_if_token2] = ACTIONS(5647), + [aux_sym_preproc_else_token1] = ACTIONS(5647), + [aux_sym_preproc_elif_token1] = ACTIONS(5649), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5647), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5647), + [anon_sym_LPAREN2] = ACTIONS(5647), + [anon_sym_DASH] = ACTIONS(5649), + [anon_sym_PLUS] = ACTIONS(5649), + [anon_sym_STAR] = ACTIONS(5649), + [anon_sym_SLASH] = ACTIONS(5649), + [anon_sym_PERCENT] = ACTIONS(5649), + [anon_sym_PIPE_PIPE] = ACTIONS(5647), + [anon_sym_AMP_AMP] = ACTIONS(5647), + [anon_sym_PIPE] = ACTIONS(5649), + [anon_sym_CARET] = ACTIONS(5649), + [anon_sym_AMP] = ACTIONS(5649), + [anon_sym_EQ_EQ] = ACTIONS(5647), + [anon_sym_BANG_EQ] = ACTIONS(5647), + [anon_sym_GT] = ACTIONS(5649), + [anon_sym_GT_EQ] = ACTIONS(5647), + [anon_sym_LT_EQ] = ACTIONS(5649), + [anon_sym_LT] = ACTIONS(5649), + [anon_sym_LT_LT] = ACTIONS(5649), + [anon_sym_GT_GT] = ACTIONS(5649), + [anon_sym_SEMI] = ACTIONS(5647), + [anon_sym_RBRACE] = ACTIONS(5647), + [anon_sym_LBRACK] = ACTIONS(5647), + [anon_sym_RBRACK] = ACTIONS(5647), + [anon_sym_EQ] = ACTIONS(5649), + [anon_sym_COLON] = ACTIONS(5647), + [anon_sym_QMARK] = ACTIONS(5647), + [anon_sym_STAR_EQ] = ACTIONS(5647), + [anon_sym_SLASH_EQ] = ACTIONS(5647), + [anon_sym_PERCENT_EQ] = ACTIONS(5647), + [anon_sym_PLUS_EQ] = ACTIONS(5647), + [anon_sym_DASH_EQ] = ACTIONS(5647), + [anon_sym_LT_LT_EQ] = ACTIONS(5647), + [anon_sym_GT_GT_EQ] = ACTIONS(5647), + [anon_sym_AMP_EQ] = ACTIONS(5647), + [anon_sym_CARET_EQ] = ACTIONS(5647), + [anon_sym_PIPE_EQ] = ACTIONS(5647), + [anon_sym_and_eq] = ACTIONS(5649), + [anon_sym_or_eq] = ACTIONS(5649), + [anon_sym_xor_eq] = ACTIONS(5649), + [anon_sym_LT_EQ_GT] = ACTIONS(5647), + [anon_sym_or] = ACTIONS(5649), + [anon_sym_and] = ACTIONS(5649), + [anon_sym_bitor] = ACTIONS(5649), + [anon_sym_xor] = ACTIONS(5649), + [anon_sym_bitand] = ACTIONS(5649), + [anon_sym_not_eq] = ACTIONS(5649), + [anon_sym_DASH_DASH] = ACTIONS(5647), + [anon_sym_PLUS_PLUS] = ACTIONS(5647), + [anon_sym_DOT] = ACTIONS(5649), + [anon_sym_DOT_STAR] = ACTIONS(5647), + [anon_sym_DASH_GT] = ACTIONS(5647), + [anon_sym_L_DQUOTE] = ACTIONS(5647), + [anon_sym_u_DQUOTE] = ACTIONS(5647), + [anon_sym_U_DQUOTE] = ACTIONS(5647), + [anon_sym_u8_DQUOTE] = ACTIONS(5647), + [anon_sym_DQUOTE] = ACTIONS(5647), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5647), + [anon_sym_LR_DQUOTE] = ACTIONS(5647), + [anon_sym_uR_DQUOTE] = ACTIONS(5647), + [anon_sym_UR_DQUOTE] = ACTIONS(5647), + [anon_sym_u8R_DQUOTE] = ACTIONS(5647), + [sym_literal_suffix] = ACTIONS(5649), }, - [1896] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5502), - [anon_sym_COMMA] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(5502), - [anon_sym_LPAREN2] = ACTIONS(5502), - [anon_sym_DASH] = ACTIONS(5500), - [anon_sym_PLUS] = ACTIONS(5500), - [anon_sym_STAR] = ACTIONS(5500), - [anon_sym_SLASH] = ACTIONS(5500), - [anon_sym_PERCENT] = ACTIONS(5500), - [anon_sym_PIPE_PIPE] = ACTIONS(5502), - [anon_sym_AMP_AMP] = ACTIONS(5502), - [anon_sym_PIPE] = ACTIONS(5500), - [anon_sym_CARET] = ACTIONS(5500), - [anon_sym_AMP] = ACTIONS(5500), - [anon_sym_EQ_EQ] = ACTIONS(5502), - [anon_sym_BANG_EQ] = ACTIONS(5502), - [anon_sym_GT] = ACTIONS(5500), - [anon_sym_GT_EQ] = ACTIONS(5502), - [anon_sym_LT_EQ] = ACTIONS(5500), - [anon_sym_LT] = ACTIONS(5500), - [anon_sym_LT_LT] = ACTIONS(5500), - [anon_sym_GT_GT] = ACTIONS(5500), - [anon_sym___extension__] = ACTIONS(5502), - [anon_sym___attribute__] = ACTIONS(5502), - [anon_sym_COLON_COLON] = ACTIONS(5502), - [anon_sym_LBRACE] = ACTIONS(5502), - [anon_sym_LBRACK] = ACTIONS(5502), - [anon_sym_EQ] = ACTIONS(5500), - [anon_sym_const] = ACTIONS(5500), - [anon_sym_constexpr] = ACTIONS(5502), - [anon_sym_volatile] = ACTIONS(5502), - [anon_sym_restrict] = ACTIONS(5502), - [anon_sym___restrict__] = ACTIONS(5502), - [anon_sym__Atomic] = ACTIONS(5502), - [anon_sym__Noreturn] = ACTIONS(5502), - [anon_sym_noreturn] = ACTIONS(5502), - [anon_sym_mutable] = ACTIONS(5502), - [anon_sym_constinit] = ACTIONS(5502), - [anon_sym_consteval] = ACTIONS(5502), - [anon_sym_COLON] = ACTIONS(5500), - [anon_sym_QMARK] = ACTIONS(5502), - [anon_sym_STAR_EQ] = ACTIONS(5502), - [anon_sym_SLASH_EQ] = ACTIONS(5502), - [anon_sym_PERCENT_EQ] = ACTIONS(5502), - [anon_sym_PLUS_EQ] = ACTIONS(5502), - [anon_sym_DASH_EQ] = ACTIONS(5502), - [anon_sym_LT_LT_EQ] = ACTIONS(5502), - [anon_sym_GT_GT_EQ] = ACTIONS(5502), - [anon_sym_AMP_EQ] = ACTIONS(5502), - [anon_sym_CARET_EQ] = ACTIONS(5502), - [anon_sym_PIPE_EQ] = ACTIONS(5502), - [anon_sym_and_eq] = ACTIONS(5502), - [anon_sym_or_eq] = ACTIONS(5502), - [anon_sym_xor_eq] = ACTIONS(5502), - [anon_sym_LT_EQ_GT] = ACTIONS(5502), - [anon_sym_or] = ACTIONS(5500), - [anon_sym_and] = ACTIONS(5500), - [anon_sym_bitor] = ACTIONS(5502), - [anon_sym_xor] = ACTIONS(5500), - [anon_sym_bitand] = ACTIONS(5502), - [anon_sym_not_eq] = ACTIONS(5502), - [anon_sym_DASH_DASH] = ACTIONS(5502), - [anon_sym_PLUS_PLUS] = ACTIONS(5502), - [anon_sym_DOT] = ACTIONS(5500), - [anon_sym_DOT_STAR] = ACTIONS(5502), - [anon_sym_DASH_GT] = ACTIONS(5500), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5502), - [anon_sym_decltype] = ACTIONS(5502), - [anon_sym_final] = ACTIONS(5502), - [anon_sym_override] = ACTIONS(5502), - [anon_sym_DASH_GT_STAR] = ACTIONS(5502), - [sym_semgrep_metavar] = ACTIONS(5502), + [1877] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1877), + [ts_builtin_sym_end] = ACTIONS(5651), + [sym_identifier] = ACTIONS(5653), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5651), + [anon_sym_COMMA] = ACTIONS(5651), + [anon_sym_RPAREN] = ACTIONS(5651), + [aux_sym_preproc_if_token2] = ACTIONS(5651), + [aux_sym_preproc_else_token1] = ACTIONS(5651), + [aux_sym_preproc_elif_token1] = ACTIONS(5653), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5651), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5651), + [anon_sym_LPAREN2] = ACTIONS(5651), + [anon_sym_DASH] = ACTIONS(5653), + [anon_sym_PLUS] = ACTIONS(5653), + [anon_sym_STAR] = ACTIONS(5651), + [anon_sym_SLASH] = ACTIONS(5653), + [anon_sym_PERCENT] = ACTIONS(5651), + [anon_sym_PIPE_PIPE] = ACTIONS(5651), + [anon_sym_AMP_AMP] = ACTIONS(5651), + [anon_sym_PIPE] = ACTIONS(5653), + [anon_sym_CARET] = ACTIONS(5651), + [anon_sym_AMP] = ACTIONS(5653), + [anon_sym_EQ_EQ] = ACTIONS(5651), + [anon_sym_BANG_EQ] = ACTIONS(5651), + [anon_sym_GT] = ACTIONS(5653), + [anon_sym_GT_EQ] = ACTIONS(5651), + [anon_sym_LT_EQ] = ACTIONS(5653), + [anon_sym_LT] = ACTIONS(5653), + [anon_sym_LT_LT] = ACTIONS(5651), + [anon_sym_GT_GT] = ACTIONS(5651), + [anon_sym_SEMI] = ACTIONS(5651), + [anon_sym___extension__] = ACTIONS(5653), + [anon_sym___attribute__] = ACTIONS(5653), + [anon_sym_LBRACE] = ACTIONS(5651), + [anon_sym_RBRACE] = ACTIONS(5651), + [anon_sym_signed] = ACTIONS(5655), + [anon_sym_unsigned] = ACTIONS(5655), + [anon_sym_long] = ACTIONS(5655), + [anon_sym_short] = ACTIONS(5655), + [anon_sym_LBRACK] = ACTIONS(5651), + [anon_sym_RBRACK] = ACTIONS(5651), + [anon_sym_const] = ACTIONS(5653), + [anon_sym_constexpr] = ACTIONS(5653), + [anon_sym_volatile] = ACTIONS(5653), + [anon_sym_restrict] = ACTIONS(5653), + [anon_sym___restrict__] = ACTIONS(5653), + [anon_sym__Atomic] = ACTIONS(5653), + [anon_sym__Noreturn] = ACTIONS(5653), + [anon_sym_noreturn] = ACTIONS(5653), + [anon_sym_mutable] = ACTIONS(5653), + [anon_sym_constinit] = ACTIONS(5653), + [anon_sym_consteval] = ACTIONS(5653), + [sym_primitive_type] = ACTIONS(5653), + [anon_sym_COLON] = ACTIONS(5651), + [anon_sym_QMARK] = ACTIONS(5651), + [anon_sym_LT_EQ_GT] = ACTIONS(5651), + [anon_sym_or] = ACTIONS(5653), + [anon_sym_and] = ACTIONS(5653), + [anon_sym_bitor] = ACTIONS(5653), + [anon_sym_xor] = ACTIONS(5653), + [anon_sym_bitand] = ACTIONS(5653), + [anon_sym_not_eq] = ACTIONS(5653), + [anon_sym_DASH_DASH] = ACTIONS(5651), + [anon_sym_PLUS_PLUS] = ACTIONS(5651), + [anon_sym_DOT] = ACTIONS(5653), + [anon_sym_DOT_STAR] = ACTIONS(5651), + [anon_sym_DASH_GT] = ACTIONS(5651), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5653), + [anon_sym_decltype] = ACTIONS(5653), + [anon_sym_final] = ACTIONS(5653), + [anon_sym_override] = ACTIONS(5653), + [anon_sym_requires] = ACTIONS(5653), }, - [1897] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5509), - [anon_sym_COMMA] = ACTIONS(5509), - [anon_sym_RPAREN] = ACTIONS(5509), - [anon_sym_LPAREN2] = ACTIONS(5509), - [anon_sym_DASH] = ACTIONS(5507), - [anon_sym_PLUS] = ACTIONS(5507), - [anon_sym_STAR] = ACTIONS(5507), - [anon_sym_SLASH] = ACTIONS(5507), - [anon_sym_PERCENT] = ACTIONS(5507), - [anon_sym_PIPE_PIPE] = ACTIONS(5509), - [anon_sym_AMP_AMP] = ACTIONS(5509), - [anon_sym_PIPE] = ACTIONS(5507), - [anon_sym_CARET] = ACTIONS(5507), - [anon_sym_AMP] = ACTIONS(5507), - [anon_sym_EQ_EQ] = ACTIONS(5509), - [anon_sym_BANG_EQ] = ACTIONS(5509), - [anon_sym_GT] = ACTIONS(5507), - [anon_sym_GT_EQ] = ACTIONS(5509), - [anon_sym_LT_EQ] = ACTIONS(5507), - [anon_sym_LT] = ACTIONS(5507), - [anon_sym_LT_LT] = ACTIONS(5507), - [anon_sym_GT_GT] = ACTIONS(5507), - [anon_sym___extension__] = ACTIONS(5509), - [anon_sym___attribute__] = ACTIONS(5509), - [anon_sym_COLON_COLON] = ACTIONS(5509), - [anon_sym_LBRACE] = ACTIONS(5509), - [anon_sym_LBRACK] = ACTIONS(5509), - [anon_sym_EQ] = ACTIONS(5507), - [anon_sym_const] = ACTIONS(5507), - [anon_sym_constexpr] = ACTIONS(5509), - [anon_sym_volatile] = ACTIONS(5509), - [anon_sym_restrict] = ACTIONS(5509), - [anon_sym___restrict__] = ACTIONS(5509), - [anon_sym__Atomic] = ACTIONS(5509), - [anon_sym__Noreturn] = ACTIONS(5509), - [anon_sym_noreturn] = ACTIONS(5509), - [anon_sym_mutable] = ACTIONS(5509), - [anon_sym_constinit] = ACTIONS(5509), - [anon_sym_consteval] = ACTIONS(5509), - [anon_sym_COLON] = ACTIONS(5507), - [anon_sym_QMARK] = ACTIONS(5509), - [anon_sym_STAR_EQ] = ACTIONS(5509), - [anon_sym_SLASH_EQ] = ACTIONS(5509), - [anon_sym_PERCENT_EQ] = ACTIONS(5509), - [anon_sym_PLUS_EQ] = ACTIONS(5509), - [anon_sym_DASH_EQ] = ACTIONS(5509), - [anon_sym_LT_LT_EQ] = ACTIONS(5509), - [anon_sym_GT_GT_EQ] = ACTIONS(5509), - [anon_sym_AMP_EQ] = ACTIONS(5509), - [anon_sym_CARET_EQ] = ACTIONS(5509), - [anon_sym_PIPE_EQ] = ACTIONS(5509), - [anon_sym_and_eq] = ACTIONS(5509), - [anon_sym_or_eq] = ACTIONS(5509), - [anon_sym_xor_eq] = ACTIONS(5509), - [anon_sym_LT_EQ_GT] = ACTIONS(5509), - [anon_sym_or] = ACTIONS(5507), - [anon_sym_and] = ACTIONS(5507), - [anon_sym_bitor] = ACTIONS(5509), - [anon_sym_xor] = ACTIONS(5507), - [anon_sym_bitand] = ACTIONS(5509), - [anon_sym_not_eq] = ACTIONS(5509), - [anon_sym_DASH_DASH] = ACTIONS(5509), - [anon_sym_PLUS_PLUS] = ACTIONS(5509), - [anon_sym_DOT] = ACTIONS(5507), - [anon_sym_DOT_STAR] = ACTIONS(5509), - [anon_sym_DASH_GT] = ACTIONS(5507), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5509), - [anon_sym_decltype] = ACTIONS(5509), - [anon_sym_final] = ACTIONS(5509), - [anon_sym_override] = ACTIONS(5509), - [anon_sym_DASH_GT_STAR] = ACTIONS(5509), - [sym_semgrep_metavar] = ACTIONS(5509), + [1878] = { + [ts_builtin_sym_end] = ACTIONS(5658), + [sym_identifier] = ACTIONS(5660), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5658), + [anon_sym_COMMA] = ACTIONS(5658), + [anon_sym_RPAREN] = ACTIONS(5658), + [aux_sym_preproc_if_token2] = ACTIONS(5658), + [aux_sym_preproc_else_token1] = ACTIONS(5658), + [aux_sym_preproc_elif_token1] = ACTIONS(5660), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5658), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5658), + [anon_sym_LPAREN2] = ACTIONS(5658), + [anon_sym_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5660), + [anon_sym_STAR] = ACTIONS(5660), + [anon_sym_SLASH] = ACTIONS(5660), + [anon_sym_PERCENT] = ACTIONS(5660), + [anon_sym_PIPE_PIPE] = ACTIONS(5658), + [anon_sym_AMP_AMP] = ACTIONS(5658), + [anon_sym_PIPE] = ACTIONS(5660), + [anon_sym_CARET] = ACTIONS(5660), + [anon_sym_AMP] = ACTIONS(5660), + [anon_sym_EQ_EQ] = ACTIONS(5658), + [anon_sym_BANG_EQ] = ACTIONS(5658), + [anon_sym_GT] = ACTIONS(5660), + [anon_sym_GT_EQ] = ACTIONS(5658), + [anon_sym_LT_EQ] = ACTIONS(5660), + [anon_sym_LT] = ACTIONS(5660), + [anon_sym_LT_LT] = ACTIONS(5660), + [anon_sym_GT_GT] = ACTIONS(5660), + [anon_sym_SEMI] = ACTIONS(5658), + [anon_sym_RBRACE] = ACTIONS(5658), + [anon_sym_LBRACK] = ACTIONS(5658), + [anon_sym_RBRACK] = ACTIONS(5658), + [anon_sym_EQ] = ACTIONS(5660), + [anon_sym_COLON] = ACTIONS(5658), + [anon_sym_QMARK] = ACTIONS(5658), + [anon_sym_STAR_EQ] = ACTIONS(5658), + [anon_sym_SLASH_EQ] = ACTIONS(5658), + [anon_sym_PERCENT_EQ] = ACTIONS(5658), + [anon_sym_PLUS_EQ] = ACTIONS(5658), + [anon_sym_DASH_EQ] = ACTIONS(5658), + [anon_sym_LT_LT_EQ] = ACTIONS(5658), + [anon_sym_GT_GT_EQ] = ACTIONS(5658), + [anon_sym_AMP_EQ] = ACTIONS(5658), + [anon_sym_CARET_EQ] = ACTIONS(5658), + [anon_sym_PIPE_EQ] = ACTIONS(5658), + [anon_sym_and_eq] = ACTIONS(5660), + [anon_sym_or_eq] = ACTIONS(5660), + [anon_sym_xor_eq] = ACTIONS(5660), + [anon_sym_LT_EQ_GT] = ACTIONS(5658), + [anon_sym_or] = ACTIONS(5660), + [anon_sym_and] = ACTIONS(5660), + [anon_sym_bitor] = ACTIONS(5660), + [anon_sym_xor] = ACTIONS(5660), + [anon_sym_bitand] = ACTIONS(5660), + [anon_sym_not_eq] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5658), + [anon_sym_DOT] = ACTIONS(5660), + [anon_sym_DOT_STAR] = ACTIONS(5658), + [anon_sym_DASH_GT] = ACTIONS(5658), + [anon_sym_L_DQUOTE] = ACTIONS(5658), + [anon_sym_u_DQUOTE] = ACTIONS(5658), + [anon_sym_U_DQUOTE] = ACTIONS(5658), + [anon_sym_u8_DQUOTE] = ACTIONS(5658), + [anon_sym_DQUOTE] = ACTIONS(5658), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5658), + [anon_sym_LR_DQUOTE] = ACTIONS(5658), + [anon_sym_uR_DQUOTE] = ACTIONS(5658), + [anon_sym_UR_DQUOTE] = ACTIONS(5658), + [anon_sym_u8R_DQUOTE] = ACTIONS(5658), + [sym_literal_suffix] = ACTIONS(5660), }, - [1898] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5498), - [anon_sym_COMMA] = ACTIONS(5498), - [anon_sym_RPAREN] = ACTIONS(5498), - [anon_sym_LPAREN2] = ACTIONS(5498), - [anon_sym_DASH] = ACTIONS(5496), - [anon_sym_PLUS] = ACTIONS(5496), - [anon_sym_STAR] = ACTIONS(5496), - [anon_sym_SLASH] = ACTIONS(5496), - [anon_sym_PERCENT] = ACTIONS(5496), - [anon_sym_PIPE_PIPE] = ACTIONS(5498), - [anon_sym_AMP_AMP] = ACTIONS(5498), - [anon_sym_PIPE] = ACTIONS(5496), - [anon_sym_CARET] = ACTIONS(5496), - [anon_sym_AMP] = ACTIONS(5496), - [anon_sym_EQ_EQ] = ACTIONS(5498), - [anon_sym_BANG_EQ] = ACTIONS(5498), - [anon_sym_GT] = ACTIONS(5496), - [anon_sym_GT_EQ] = ACTIONS(5498), - [anon_sym_LT_EQ] = ACTIONS(5496), - [anon_sym_LT] = ACTIONS(5496), - [anon_sym_LT_LT] = ACTIONS(5496), - [anon_sym_GT_GT] = ACTIONS(5496), - [anon_sym___extension__] = ACTIONS(5498), - [anon_sym___attribute__] = ACTIONS(5498), - [anon_sym_COLON_COLON] = ACTIONS(5498), - [anon_sym_LBRACE] = ACTIONS(5498), - [anon_sym_LBRACK] = ACTIONS(5498), - [anon_sym_EQ] = ACTIONS(5496), - [anon_sym_const] = ACTIONS(5496), - [anon_sym_constexpr] = ACTIONS(5498), - [anon_sym_volatile] = ACTIONS(5498), - [anon_sym_restrict] = ACTIONS(5498), - [anon_sym___restrict__] = ACTIONS(5498), - [anon_sym__Atomic] = ACTIONS(5498), - [anon_sym__Noreturn] = ACTIONS(5498), - [anon_sym_noreturn] = ACTIONS(5498), - [anon_sym_mutable] = ACTIONS(5498), - [anon_sym_constinit] = ACTIONS(5498), - [anon_sym_consteval] = ACTIONS(5498), - [anon_sym_COLON] = ACTIONS(5496), - [anon_sym_QMARK] = ACTIONS(5498), - [anon_sym_STAR_EQ] = ACTIONS(5498), - [anon_sym_SLASH_EQ] = ACTIONS(5498), - [anon_sym_PERCENT_EQ] = ACTIONS(5498), - [anon_sym_PLUS_EQ] = ACTIONS(5498), - [anon_sym_DASH_EQ] = ACTIONS(5498), - [anon_sym_LT_LT_EQ] = ACTIONS(5498), - [anon_sym_GT_GT_EQ] = ACTIONS(5498), - [anon_sym_AMP_EQ] = ACTIONS(5498), - [anon_sym_CARET_EQ] = ACTIONS(5498), - [anon_sym_PIPE_EQ] = ACTIONS(5498), - [anon_sym_and_eq] = ACTIONS(5498), - [anon_sym_or_eq] = ACTIONS(5498), - [anon_sym_xor_eq] = ACTIONS(5498), - [anon_sym_LT_EQ_GT] = ACTIONS(5498), - [anon_sym_or] = ACTIONS(5496), - [anon_sym_and] = ACTIONS(5496), - [anon_sym_bitor] = ACTIONS(5498), - [anon_sym_xor] = ACTIONS(5496), - [anon_sym_bitand] = ACTIONS(5498), - [anon_sym_not_eq] = ACTIONS(5498), - [anon_sym_DASH_DASH] = ACTIONS(5498), - [anon_sym_PLUS_PLUS] = ACTIONS(5498), - [anon_sym_DOT] = ACTIONS(5496), - [anon_sym_DOT_STAR] = ACTIONS(5498), - [anon_sym_DASH_GT] = ACTIONS(5496), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5498), - [anon_sym_decltype] = ACTIONS(5498), - [anon_sym_final] = ACTIONS(5498), - [anon_sym_override] = ACTIONS(5498), - [anon_sym_DASH_GT_STAR] = ACTIONS(5498), - [sym_semgrep_metavar] = ACTIONS(5498), + [1879] = { + [sym_identifier] = ACTIONS(5433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5445), + [anon_sym_COMMA] = ACTIONS(5445), + [anon_sym_LPAREN2] = ACTIONS(5435), + [anon_sym_TILDE] = ACTIONS(5438), + [anon_sym_DASH] = ACTIONS(5440), + [anon_sym_PLUS] = ACTIONS(5440), + [anon_sym_STAR] = ACTIONS(5435), + [anon_sym_SLASH] = ACTIONS(5440), + [anon_sym_PERCENT] = ACTIONS(5445), + [anon_sym_PIPE_PIPE] = ACTIONS(5445), + [anon_sym_AMP_AMP] = ACTIONS(5435), + [anon_sym_PIPE] = ACTIONS(5440), + [anon_sym_CARET] = ACTIONS(5445), + [anon_sym_AMP] = ACTIONS(5442), + [anon_sym_EQ_EQ] = ACTIONS(5445), + [anon_sym_BANG_EQ] = ACTIONS(5445), + [anon_sym_GT] = ACTIONS(5440), + [anon_sym_GT_EQ] = ACTIONS(5445), + [anon_sym_LT_EQ] = ACTIONS(5440), + [anon_sym_LT] = ACTIONS(5440), + [anon_sym_LT_LT] = ACTIONS(5445), + [anon_sym_GT_GT] = ACTIONS(5445), + [anon_sym_SEMI] = ACTIONS(5435), + [anon_sym___extension__] = ACTIONS(5433), + [anon_sym_extern] = ACTIONS(5433), + [anon_sym___attribute__] = ACTIONS(5433), + [anon_sym_COLON_COLON] = ACTIONS(5438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5435), + [anon_sym___declspec] = ACTIONS(5433), + [anon_sym___based] = ACTIONS(5433), + [anon_sym_LBRACE] = ACTIONS(5438), + [anon_sym_RBRACE] = ACTIONS(5445), + [anon_sym_LBRACK] = ACTIONS(5442), + [anon_sym_static] = ACTIONS(5433), + [anon_sym_register] = ACTIONS(5433), + [anon_sym_inline] = ACTIONS(5433), + [anon_sym___inline] = ACTIONS(5433), + [anon_sym___inline__] = ACTIONS(5433), + [anon_sym___forceinline] = ACTIONS(5433), + [anon_sym_thread_local] = ACTIONS(5433), + [anon_sym___thread] = ACTIONS(5433), + [anon_sym_const] = ACTIONS(5433), + [anon_sym_constexpr] = ACTIONS(5433), + [anon_sym_volatile] = ACTIONS(5433), + [anon_sym_restrict] = ACTIONS(5433), + [anon_sym___restrict__] = ACTIONS(5433), + [anon_sym__Atomic] = ACTIONS(5433), + [anon_sym__Noreturn] = ACTIONS(5433), + [anon_sym_noreturn] = ACTIONS(5433), + [anon_sym_mutable] = ACTIONS(5433), + [anon_sym_constinit] = ACTIONS(5433), + [anon_sym_consteval] = ACTIONS(5433), + [anon_sym_QMARK] = ACTIONS(5445), + [anon_sym_LT_EQ_GT] = ACTIONS(5445), + [anon_sym_or] = ACTIONS(5440), + [anon_sym_and] = ACTIONS(5440), + [anon_sym_bitor] = ACTIONS(5440), + [anon_sym_xor] = ACTIONS(5440), + [anon_sym_bitand] = ACTIONS(5440), + [anon_sym_not_eq] = ACTIONS(5440), + [anon_sym_DASH_DASH] = ACTIONS(5445), + [anon_sym_PLUS_PLUS] = ACTIONS(5445), + [anon_sym_DOT] = ACTIONS(5440), + [anon_sym_DOT_STAR] = ACTIONS(5445), + [anon_sym_DASH_GT] = ACTIONS(5445), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5433), + [anon_sym_decltype] = ACTIONS(5433), + [anon_sym_virtual] = ACTIONS(5433), + [anon_sym_alignas] = ACTIONS(5433), + [anon_sym_template] = ACTIONS(5433), + [anon_sym_operator] = ACTIONS(5433), }, - [1899] = { - [sym_identifier] = ACTIONS(5518), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5520), - [anon_sym_COMMA] = ACTIONS(5520), - [anon_sym_LPAREN2] = ACTIONS(5522), - [anon_sym_TILDE] = ACTIONS(5525), - [anon_sym_DASH] = ACTIONS(5527), - [anon_sym_PLUS] = ACTIONS(5527), - [anon_sym_STAR] = ACTIONS(5522), - [anon_sym_SLASH] = ACTIONS(5527), - [anon_sym_PERCENT] = ACTIONS(5520), - [anon_sym_PIPE_PIPE] = ACTIONS(5520), - [anon_sym_AMP_AMP] = ACTIONS(5522), - [anon_sym_PIPE] = ACTIONS(5527), - [anon_sym_CARET] = ACTIONS(5520), - [anon_sym_AMP] = ACTIONS(5529), - [anon_sym_EQ_EQ] = ACTIONS(5520), - [anon_sym_BANG_EQ] = ACTIONS(5520), - [anon_sym_GT] = ACTIONS(5527), - [anon_sym_GT_EQ] = ACTIONS(5520), - [anon_sym_LT_EQ] = ACTIONS(5527), - [anon_sym_LT] = ACTIONS(5527), - [anon_sym_LT_LT] = ACTIONS(5520), - [anon_sym_GT_GT] = ACTIONS(5520), - [anon_sym_SEMI] = ACTIONS(5522), - [anon_sym___extension__] = ACTIONS(5518), - [anon_sym_extern] = ACTIONS(5518), - [anon_sym___attribute__] = ACTIONS(5518), - [anon_sym_COLON_COLON] = ACTIONS(5525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5522), - [anon_sym___declspec] = ACTIONS(5518), - [anon_sym___based] = ACTIONS(5518), - [anon_sym_LBRACE] = ACTIONS(5525), - [anon_sym_RBRACE] = ACTIONS(5520), - [anon_sym_LBRACK] = ACTIONS(5529), - [anon_sym_static] = ACTIONS(5518), - [anon_sym_register] = ACTIONS(5518), - [anon_sym_inline] = ACTIONS(5518), - [anon_sym___inline] = ACTIONS(5518), - [anon_sym___inline__] = ACTIONS(5518), - [anon_sym___forceinline] = ACTIONS(5518), - [anon_sym_thread_local] = ACTIONS(5518), - [anon_sym___thread] = ACTIONS(5518), - [anon_sym_const] = ACTIONS(5518), - [anon_sym_constexpr] = ACTIONS(5518), - [anon_sym_volatile] = ACTIONS(5518), - [anon_sym_restrict] = ACTIONS(5518), - [anon_sym___restrict__] = ACTIONS(5518), - [anon_sym__Atomic] = ACTIONS(5518), - [anon_sym__Noreturn] = ACTIONS(5518), - [anon_sym_noreturn] = ACTIONS(5518), - [anon_sym_mutable] = ACTIONS(5518), - [anon_sym_constinit] = ACTIONS(5518), - [anon_sym_consteval] = ACTIONS(5518), - [anon_sym_QMARK] = ACTIONS(5520), - [anon_sym_LT_EQ_GT] = ACTIONS(5520), - [anon_sym_or] = ACTIONS(5527), - [anon_sym_and] = ACTIONS(5527), - [anon_sym_bitor] = ACTIONS(5527), - [anon_sym_xor] = ACTIONS(5527), - [anon_sym_bitand] = ACTIONS(5527), - [anon_sym_not_eq] = ACTIONS(5527), - [anon_sym_DASH_DASH] = ACTIONS(5520), - [anon_sym_PLUS_PLUS] = ACTIONS(5520), - [anon_sym_DOT] = ACTIONS(5527), - [anon_sym_DOT_STAR] = ACTIONS(5520), - [anon_sym_DASH_GT] = ACTIONS(5520), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5518), - [anon_sym_decltype] = ACTIONS(5518), - [anon_sym_virtual] = ACTIONS(5518), - [anon_sym_alignas] = ACTIONS(5518), - [anon_sym_template] = ACTIONS(5518), - [anon_sym_operator] = ACTIONS(5518), + [1880] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5427), + [anon_sym_COMMA] = ACTIONS(5427), + [anon_sym_RPAREN] = ACTIONS(5427), + [anon_sym_LPAREN2] = ACTIONS(5427), + [anon_sym_DASH] = ACTIONS(5425), + [anon_sym_PLUS] = ACTIONS(5425), + [anon_sym_STAR] = ACTIONS(5425), + [anon_sym_SLASH] = ACTIONS(5425), + [anon_sym_PERCENT] = ACTIONS(5425), + [anon_sym_PIPE_PIPE] = ACTIONS(5427), + [anon_sym_AMP_AMP] = ACTIONS(5427), + [anon_sym_PIPE] = ACTIONS(5425), + [anon_sym_CARET] = ACTIONS(5425), + [anon_sym_AMP] = ACTIONS(5425), + [anon_sym_EQ_EQ] = ACTIONS(5427), + [anon_sym_BANG_EQ] = ACTIONS(5427), + [anon_sym_GT] = ACTIONS(5425), + [anon_sym_GT_EQ] = ACTIONS(5427), + [anon_sym_LT_EQ] = ACTIONS(5425), + [anon_sym_LT] = ACTIONS(5425), + [anon_sym_LT_LT] = ACTIONS(5425), + [anon_sym_GT_GT] = ACTIONS(5425), + [anon_sym___extension__] = ACTIONS(5427), + [anon_sym___attribute__] = ACTIONS(5427), + [anon_sym_COLON_COLON] = ACTIONS(5427), + [anon_sym_LBRACE] = ACTIONS(5427), + [anon_sym_LBRACK] = ACTIONS(5427), + [anon_sym_EQ] = ACTIONS(5425), + [anon_sym_const] = ACTIONS(5425), + [anon_sym_constexpr] = ACTIONS(5427), + [anon_sym_volatile] = ACTIONS(5427), + [anon_sym_restrict] = ACTIONS(5427), + [anon_sym___restrict__] = ACTIONS(5427), + [anon_sym__Atomic] = ACTIONS(5427), + [anon_sym__Noreturn] = ACTIONS(5427), + [anon_sym_noreturn] = ACTIONS(5427), + [anon_sym_mutable] = ACTIONS(5427), + [anon_sym_constinit] = ACTIONS(5427), + [anon_sym_consteval] = ACTIONS(5427), + [anon_sym_COLON] = ACTIONS(5425), + [anon_sym_QMARK] = ACTIONS(5427), + [anon_sym_STAR_EQ] = ACTIONS(5427), + [anon_sym_SLASH_EQ] = ACTIONS(5427), + [anon_sym_PERCENT_EQ] = ACTIONS(5427), + [anon_sym_PLUS_EQ] = ACTIONS(5427), + [anon_sym_DASH_EQ] = ACTIONS(5427), + [anon_sym_LT_LT_EQ] = ACTIONS(5427), + [anon_sym_GT_GT_EQ] = ACTIONS(5427), + [anon_sym_AMP_EQ] = ACTIONS(5427), + [anon_sym_CARET_EQ] = ACTIONS(5427), + [anon_sym_PIPE_EQ] = ACTIONS(5427), + [anon_sym_and_eq] = ACTIONS(5427), + [anon_sym_or_eq] = ACTIONS(5427), + [anon_sym_xor_eq] = ACTIONS(5427), + [anon_sym_LT_EQ_GT] = ACTIONS(5427), + [anon_sym_or] = ACTIONS(5425), + [anon_sym_and] = ACTIONS(5425), + [anon_sym_bitor] = ACTIONS(5427), + [anon_sym_xor] = ACTIONS(5425), + [anon_sym_bitand] = ACTIONS(5427), + [anon_sym_not_eq] = ACTIONS(5427), + [anon_sym_DASH_DASH] = ACTIONS(5427), + [anon_sym_PLUS_PLUS] = ACTIONS(5427), + [anon_sym_DOT] = ACTIONS(5425), + [anon_sym_DOT_STAR] = ACTIONS(5427), + [anon_sym_DASH_GT] = ACTIONS(5425), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5427), + [anon_sym_decltype] = ACTIONS(5427), + [anon_sym_final] = ACTIONS(5427), + [anon_sym_override] = ACTIONS(5427), + [anon_sym_DASH_GT_STAR] = ACTIONS(5427), + [sym_semgrep_metavar] = ACTIONS(5427), }, - [1900] = { - [ts_builtin_sym_end] = ACTIONS(5673), - [sym_identifier] = ACTIONS(5675), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5673), - [anon_sym_COMMA] = ACTIONS(5673), - [anon_sym_RPAREN] = ACTIONS(5673), - [aux_sym_preproc_if_token2] = ACTIONS(5673), - [aux_sym_preproc_else_token1] = ACTIONS(5673), - [aux_sym_preproc_elif_token1] = ACTIONS(5675), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5673), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5673), - [anon_sym_LPAREN2] = ACTIONS(5673), - [anon_sym_DASH] = ACTIONS(5675), - [anon_sym_PLUS] = ACTIONS(5675), - [anon_sym_STAR] = ACTIONS(5675), - [anon_sym_SLASH] = ACTIONS(5675), - [anon_sym_PERCENT] = ACTIONS(5675), - [anon_sym_PIPE_PIPE] = ACTIONS(5673), - [anon_sym_AMP_AMP] = ACTIONS(5673), - [anon_sym_PIPE] = ACTIONS(5675), - [anon_sym_CARET] = ACTIONS(5675), - [anon_sym_AMP] = ACTIONS(5675), - [anon_sym_EQ_EQ] = ACTIONS(5673), - [anon_sym_BANG_EQ] = ACTIONS(5673), - [anon_sym_GT] = ACTIONS(5675), - [anon_sym_GT_EQ] = ACTIONS(5673), - [anon_sym_LT_EQ] = ACTIONS(5675), - [anon_sym_LT] = ACTIONS(5675), - [anon_sym_LT_LT] = ACTIONS(5675), - [anon_sym_GT_GT] = ACTIONS(5675), - [anon_sym_SEMI] = ACTIONS(5673), - [anon_sym_RBRACE] = ACTIONS(5673), - [anon_sym_LBRACK] = ACTIONS(5673), - [anon_sym_RBRACK] = ACTIONS(5673), - [anon_sym_EQ] = ACTIONS(5675), - [anon_sym_COLON] = ACTIONS(5673), - [anon_sym_QMARK] = ACTIONS(5673), - [anon_sym_STAR_EQ] = ACTIONS(5673), - [anon_sym_SLASH_EQ] = ACTIONS(5673), - [anon_sym_PERCENT_EQ] = ACTIONS(5673), - [anon_sym_PLUS_EQ] = ACTIONS(5673), - [anon_sym_DASH_EQ] = ACTIONS(5673), - [anon_sym_LT_LT_EQ] = ACTIONS(5673), - [anon_sym_GT_GT_EQ] = ACTIONS(5673), - [anon_sym_AMP_EQ] = ACTIONS(5673), - [anon_sym_CARET_EQ] = ACTIONS(5673), - [anon_sym_PIPE_EQ] = ACTIONS(5673), - [anon_sym_and_eq] = ACTIONS(5675), - [anon_sym_or_eq] = ACTIONS(5675), - [anon_sym_xor_eq] = ACTIONS(5675), - [anon_sym_LT_EQ_GT] = ACTIONS(5673), - [anon_sym_or] = ACTIONS(5675), - [anon_sym_and] = ACTIONS(5675), - [anon_sym_bitor] = ACTIONS(5675), - [anon_sym_xor] = ACTIONS(5675), - [anon_sym_bitand] = ACTIONS(5675), - [anon_sym_not_eq] = ACTIONS(5675), - [anon_sym_DASH_DASH] = ACTIONS(5673), - [anon_sym_PLUS_PLUS] = ACTIONS(5673), - [anon_sym_DOT] = ACTIONS(5675), - [anon_sym_DOT_STAR] = ACTIONS(5673), - [anon_sym_DASH_GT] = ACTIONS(5673), - [anon_sym_L_DQUOTE] = ACTIONS(5673), - [anon_sym_u_DQUOTE] = ACTIONS(5673), - [anon_sym_U_DQUOTE] = ACTIONS(5673), - [anon_sym_u8_DQUOTE] = ACTIONS(5673), - [anon_sym_DQUOTE] = ACTIONS(5673), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5673), - [anon_sym_LR_DQUOTE] = ACTIONS(5673), - [anon_sym_uR_DQUOTE] = ACTIONS(5673), - [anon_sym_UR_DQUOTE] = ACTIONS(5673), - [anon_sym_u8R_DQUOTE] = ACTIONS(5673), - [sym_literal_suffix] = ACTIONS(5675), + [1881] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5423), + [anon_sym_COMMA] = ACTIONS(5423), + [anon_sym_RPAREN] = ACTIONS(5423), + [anon_sym_LPAREN2] = ACTIONS(5423), + [anon_sym_DASH] = ACTIONS(5421), + [anon_sym_PLUS] = ACTIONS(5421), + [anon_sym_STAR] = ACTIONS(5421), + [anon_sym_SLASH] = ACTIONS(5421), + [anon_sym_PERCENT] = ACTIONS(5421), + [anon_sym_PIPE_PIPE] = ACTIONS(5423), + [anon_sym_AMP_AMP] = ACTIONS(5423), + [anon_sym_PIPE] = ACTIONS(5421), + [anon_sym_CARET] = ACTIONS(5421), + [anon_sym_AMP] = ACTIONS(5421), + [anon_sym_EQ_EQ] = ACTIONS(5423), + [anon_sym_BANG_EQ] = ACTIONS(5423), + [anon_sym_GT] = ACTIONS(5421), + [anon_sym_GT_EQ] = ACTIONS(5423), + [anon_sym_LT_EQ] = ACTIONS(5421), + [anon_sym_LT] = ACTIONS(5421), + [anon_sym_LT_LT] = ACTIONS(5421), + [anon_sym_GT_GT] = ACTIONS(5421), + [anon_sym___extension__] = ACTIONS(5423), + [anon_sym___attribute__] = ACTIONS(5423), + [anon_sym_COLON_COLON] = ACTIONS(5423), + [anon_sym_LBRACE] = ACTIONS(5423), + [anon_sym_LBRACK] = ACTIONS(5423), + [anon_sym_EQ] = ACTIONS(5421), + [anon_sym_const] = ACTIONS(5421), + [anon_sym_constexpr] = ACTIONS(5423), + [anon_sym_volatile] = ACTIONS(5423), + [anon_sym_restrict] = ACTIONS(5423), + [anon_sym___restrict__] = ACTIONS(5423), + [anon_sym__Atomic] = ACTIONS(5423), + [anon_sym__Noreturn] = ACTIONS(5423), + [anon_sym_noreturn] = ACTIONS(5423), + [anon_sym_mutable] = ACTIONS(5423), + [anon_sym_constinit] = ACTIONS(5423), + [anon_sym_consteval] = ACTIONS(5423), + [anon_sym_COLON] = ACTIONS(5421), + [anon_sym_QMARK] = ACTIONS(5423), + [anon_sym_STAR_EQ] = ACTIONS(5423), + [anon_sym_SLASH_EQ] = ACTIONS(5423), + [anon_sym_PERCENT_EQ] = ACTIONS(5423), + [anon_sym_PLUS_EQ] = ACTIONS(5423), + [anon_sym_DASH_EQ] = ACTIONS(5423), + [anon_sym_LT_LT_EQ] = ACTIONS(5423), + [anon_sym_GT_GT_EQ] = ACTIONS(5423), + [anon_sym_AMP_EQ] = ACTIONS(5423), + [anon_sym_CARET_EQ] = ACTIONS(5423), + [anon_sym_PIPE_EQ] = ACTIONS(5423), + [anon_sym_and_eq] = ACTIONS(5423), + [anon_sym_or_eq] = ACTIONS(5423), + [anon_sym_xor_eq] = ACTIONS(5423), + [anon_sym_LT_EQ_GT] = ACTIONS(5423), + [anon_sym_or] = ACTIONS(5421), + [anon_sym_and] = ACTIONS(5421), + [anon_sym_bitor] = ACTIONS(5423), + [anon_sym_xor] = ACTIONS(5421), + [anon_sym_bitand] = ACTIONS(5423), + [anon_sym_not_eq] = ACTIONS(5423), + [anon_sym_DASH_DASH] = ACTIONS(5423), + [anon_sym_PLUS_PLUS] = ACTIONS(5423), + [anon_sym_DOT] = ACTIONS(5421), + [anon_sym_DOT_STAR] = ACTIONS(5423), + [anon_sym_DASH_GT] = ACTIONS(5421), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5423), + [anon_sym_decltype] = ACTIONS(5423), + [anon_sym_final] = ACTIONS(5423), + [anon_sym_override] = ACTIONS(5423), + [anon_sym_DASH_GT_STAR] = ACTIONS(5423), + [sym_semgrep_metavar] = ACTIONS(5423), }, - [1901] = { - [ts_builtin_sym_end] = ACTIONS(5677), - [sym_identifier] = ACTIONS(5679), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5677), - [anon_sym_COMMA] = ACTIONS(5677), - [anon_sym_RPAREN] = ACTIONS(5677), - [aux_sym_preproc_if_token2] = ACTIONS(5677), - [aux_sym_preproc_else_token1] = ACTIONS(5677), - [aux_sym_preproc_elif_token1] = ACTIONS(5679), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5677), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5677), - [anon_sym_LPAREN2] = ACTIONS(5677), - [anon_sym_DASH] = ACTIONS(5679), - [anon_sym_PLUS] = ACTIONS(5679), - [anon_sym_STAR] = ACTIONS(5679), - [anon_sym_SLASH] = ACTIONS(5679), - [anon_sym_PERCENT] = ACTIONS(5679), - [anon_sym_PIPE_PIPE] = ACTIONS(5677), - [anon_sym_AMP_AMP] = ACTIONS(5677), - [anon_sym_PIPE] = ACTIONS(5679), - [anon_sym_CARET] = ACTIONS(5679), - [anon_sym_AMP] = ACTIONS(5679), - [anon_sym_EQ_EQ] = ACTIONS(5677), - [anon_sym_BANG_EQ] = ACTIONS(5677), - [anon_sym_GT] = ACTIONS(5679), - [anon_sym_GT_EQ] = ACTIONS(5677), - [anon_sym_LT_EQ] = ACTIONS(5679), - [anon_sym_LT] = ACTIONS(5679), - [anon_sym_LT_LT] = ACTIONS(5679), - [anon_sym_GT_GT] = ACTIONS(5679), - [anon_sym_SEMI] = ACTIONS(5677), - [anon_sym_RBRACE] = ACTIONS(5677), - [anon_sym_LBRACK] = ACTIONS(5677), - [anon_sym_RBRACK] = ACTIONS(5677), - [anon_sym_EQ] = ACTIONS(5679), - [anon_sym_COLON] = ACTIONS(5677), - [anon_sym_QMARK] = ACTIONS(5677), - [anon_sym_STAR_EQ] = ACTIONS(5677), - [anon_sym_SLASH_EQ] = ACTIONS(5677), - [anon_sym_PERCENT_EQ] = ACTIONS(5677), - [anon_sym_PLUS_EQ] = ACTIONS(5677), - [anon_sym_DASH_EQ] = ACTIONS(5677), - [anon_sym_LT_LT_EQ] = ACTIONS(5677), - [anon_sym_GT_GT_EQ] = ACTIONS(5677), - [anon_sym_AMP_EQ] = ACTIONS(5677), - [anon_sym_CARET_EQ] = ACTIONS(5677), - [anon_sym_PIPE_EQ] = ACTIONS(5677), - [anon_sym_and_eq] = ACTIONS(5679), - [anon_sym_or_eq] = ACTIONS(5679), - [anon_sym_xor_eq] = ACTIONS(5679), - [anon_sym_LT_EQ_GT] = ACTIONS(5677), - [anon_sym_or] = ACTIONS(5679), - [anon_sym_and] = ACTIONS(5679), - [anon_sym_bitor] = ACTIONS(5679), - [anon_sym_xor] = ACTIONS(5679), - [anon_sym_bitand] = ACTIONS(5679), - [anon_sym_not_eq] = ACTIONS(5679), - [anon_sym_DASH_DASH] = ACTIONS(5677), - [anon_sym_PLUS_PLUS] = ACTIONS(5677), - [anon_sym_DOT] = ACTIONS(5679), - [anon_sym_DOT_STAR] = ACTIONS(5677), - [anon_sym_DASH_GT] = ACTIONS(5677), - [anon_sym_L_DQUOTE] = ACTIONS(5677), - [anon_sym_u_DQUOTE] = ACTIONS(5677), - [anon_sym_U_DQUOTE] = ACTIONS(5677), - [anon_sym_u8_DQUOTE] = ACTIONS(5677), - [anon_sym_DQUOTE] = ACTIONS(5677), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5677), - [anon_sym_LR_DQUOTE] = ACTIONS(5677), - [anon_sym_uR_DQUOTE] = ACTIONS(5677), - [anon_sym_UR_DQUOTE] = ACTIONS(5677), - [anon_sym_u8R_DQUOTE] = ACTIONS(5677), - [sym_literal_suffix] = ACTIONS(5679), + [1882] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5431), + [anon_sym_COMMA] = ACTIONS(5431), + [anon_sym_RPAREN] = ACTIONS(5431), + [anon_sym_LPAREN2] = ACTIONS(5431), + [anon_sym_DASH] = ACTIONS(5429), + [anon_sym_PLUS] = ACTIONS(5429), + [anon_sym_STAR] = ACTIONS(5429), + [anon_sym_SLASH] = ACTIONS(5429), + [anon_sym_PERCENT] = ACTIONS(5429), + [anon_sym_PIPE_PIPE] = ACTIONS(5431), + [anon_sym_AMP_AMP] = ACTIONS(5431), + [anon_sym_PIPE] = ACTIONS(5429), + [anon_sym_CARET] = ACTIONS(5429), + [anon_sym_AMP] = ACTIONS(5429), + [anon_sym_EQ_EQ] = ACTIONS(5431), + [anon_sym_BANG_EQ] = ACTIONS(5431), + [anon_sym_GT] = ACTIONS(5429), + [anon_sym_GT_EQ] = ACTIONS(5431), + [anon_sym_LT_EQ] = ACTIONS(5429), + [anon_sym_LT] = ACTIONS(5429), + [anon_sym_LT_LT] = ACTIONS(5429), + [anon_sym_GT_GT] = ACTIONS(5429), + [anon_sym___extension__] = ACTIONS(5431), + [anon_sym___attribute__] = ACTIONS(5431), + [anon_sym_COLON_COLON] = ACTIONS(5431), + [anon_sym_LBRACE] = ACTIONS(5431), + [anon_sym_LBRACK] = ACTIONS(5431), + [anon_sym_EQ] = ACTIONS(5429), + [anon_sym_const] = ACTIONS(5429), + [anon_sym_constexpr] = ACTIONS(5431), + [anon_sym_volatile] = ACTIONS(5431), + [anon_sym_restrict] = ACTIONS(5431), + [anon_sym___restrict__] = ACTIONS(5431), + [anon_sym__Atomic] = ACTIONS(5431), + [anon_sym__Noreturn] = ACTIONS(5431), + [anon_sym_noreturn] = ACTIONS(5431), + [anon_sym_mutable] = ACTIONS(5431), + [anon_sym_constinit] = ACTIONS(5431), + [anon_sym_consteval] = ACTIONS(5431), + [anon_sym_COLON] = ACTIONS(5429), + [anon_sym_QMARK] = ACTIONS(5431), + [anon_sym_STAR_EQ] = ACTIONS(5431), + [anon_sym_SLASH_EQ] = ACTIONS(5431), + [anon_sym_PERCENT_EQ] = ACTIONS(5431), + [anon_sym_PLUS_EQ] = ACTIONS(5431), + [anon_sym_DASH_EQ] = ACTIONS(5431), + [anon_sym_LT_LT_EQ] = ACTIONS(5431), + [anon_sym_GT_GT_EQ] = ACTIONS(5431), + [anon_sym_AMP_EQ] = ACTIONS(5431), + [anon_sym_CARET_EQ] = ACTIONS(5431), + [anon_sym_PIPE_EQ] = ACTIONS(5431), + [anon_sym_and_eq] = ACTIONS(5431), + [anon_sym_or_eq] = ACTIONS(5431), + [anon_sym_xor_eq] = ACTIONS(5431), + [anon_sym_LT_EQ_GT] = ACTIONS(5431), + [anon_sym_or] = ACTIONS(5429), + [anon_sym_and] = ACTIONS(5429), + [anon_sym_bitor] = ACTIONS(5431), + [anon_sym_xor] = ACTIONS(5429), + [anon_sym_bitand] = ACTIONS(5431), + [anon_sym_not_eq] = ACTIONS(5431), + [anon_sym_DASH_DASH] = ACTIONS(5431), + [anon_sym_PLUS_PLUS] = ACTIONS(5431), + [anon_sym_DOT] = ACTIONS(5429), + [anon_sym_DOT_STAR] = ACTIONS(5431), + [anon_sym_DASH_GT] = ACTIONS(5429), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5431), + [anon_sym_decltype] = ACTIONS(5431), + [anon_sym_final] = ACTIONS(5431), + [anon_sym_override] = ACTIONS(5431), + [anon_sym_DASH_GT_STAR] = ACTIONS(5431), + [sym_semgrep_metavar] = ACTIONS(5431), }, - [1902] = { - [sym_identifier] = ACTIONS(5518), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5522), - [anon_sym_COMMA] = ACTIONS(5522), - [anon_sym_RPAREN] = ACTIONS(5522), - [anon_sym_LPAREN2] = ACTIONS(5522), - [anon_sym_TILDE] = ACTIONS(5525), - [anon_sym_DASH] = ACTIONS(5527), - [anon_sym_PLUS] = ACTIONS(5527), - [anon_sym_STAR] = ACTIONS(5522), - [anon_sym_SLASH] = ACTIONS(5527), - [anon_sym_PERCENT] = ACTIONS(5520), - [anon_sym_PIPE_PIPE] = ACTIONS(5520), - [anon_sym_AMP_AMP] = ACTIONS(5522), - [anon_sym_PIPE] = ACTIONS(5527), - [anon_sym_CARET] = ACTIONS(5520), - [anon_sym_AMP] = ACTIONS(5529), - [anon_sym_EQ_EQ] = ACTIONS(5520), - [anon_sym_BANG_EQ] = ACTIONS(5520), - [anon_sym_GT] = ACTIONS(5527), - [anon_sym_GT_EQ] = ACTIONS(5520), - [anon_sym_LT_EQ] = ACTIONS(5527), - [anon_sym_LT] = ACTIONS(5527), - [anon_sym_LT_LT] = ACTIONS(5520), - [anon_sym_GT_GT] = ACTIONS(5520), - [anon_sym___extension__] = ACTIONS(5518), - [anon_sym_extern] = ACTIONS(5518), - [anon_sym___attribute__] = ACTIONS(5518), - [anon_sym_COLON_COLON] = ACTIONS(5525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5525), - [anon_sym___declspec] = ACTIONS(5518), - [anon_sym___based] = ACTIONS(5518), - [anon_sym_LBRACE] = ACTIONS(5525), - [anon_sym_LBRACK] = ACTIONS(5529), - [anon_sym_EQ] = ACTIONS(5518), - [anon_sym_static] = ACTIONS(5518), - [anon_sym_register] = ACTIONS(5518), - [anon_sym_inline] = ACTIONS(5518), - [anon_sym___inline] = ACTIONS(5518), - [anon_sym___inline__] = ACTIONS(5518), - [anon_sym___forceinline] = ACTIONS(5518), - [anon_sym_thread_local] = ACTIONS(5518), - [anon_sym___thread] = ACTIONS(5518), - [anon_sym_const] = ACTIONS(5518), - [anon_sym_constexpr] = ACTIONS(5518), - [anon_sym_volatile] = ACTIONS(5518), - [anon_sym_restrict] = ACTIONS(5518), - [anon_sym___restrict__] = ACTIONS(5518), - [anon_sym__Atomic] = ACTIONS(5518), - [anon_sym__Noreturn] = ACTIONS(5518), - [anon_sym_noreturn] = ACTIONS(5518), - [anon_sym_mutable] = ACTIONS(5518), - [anon_sym_constinit] = ACTIONS(5518), - [anon_sym_consteval] = ACTIONS(5518), - [anon_sym_QMARK] = ACTIONS(5520), - [anon_sym_LT_EQ_GT] = ACTIONS(5520), - [anon_sym_or] = ACTIONS(5527), - [anon_sym_and] = ACTIONS(5527), - [anon_sym_bitor] = ACTIONS(5527), - [anon_sym_xor] = ACTIONS(5527), - [anon_sym_bitand] = ACTIONS(5527), - [anon_sym_not_eq] = ACTIONS(5527), - [anon_sym_DASH_DASH] = ACTIONS(5520), - [anon_sym_PLUS_PLUS] = ACTIONS(5520), - [anon_sym_DOT] = ACTIONS(5527), - [anon_sym_DOT_STAR] = ACTIONS(5520), - [anon_sym_DASH_GT] = ACTIONS(5520), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5518), - [anon_sym_decltype] = ACTIONS(5518), - [anon_sym_virtual] = ACTIONS(5518), - [anon_sym_alignas] = ACTIONS(5518), - [anon_sym_template] = ACTIONS(5518), - [anon_sym_operator] = ACTIONS(5518), + [1883] = { + [ts_builtin_sym_end] = ACTIONS(5662), + [sym_identifier] = ACTIONS(5664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5662), + [anon_sym_COMMA] = ACTIONS(5662), + [anon_sym_RPAREN] = ACTIONS(5662), + [aux_sym_preproc_if_token2] = ACTIONS(5662), + [aux_sym_preproc_else_token1] = ACTIONS(5662), + [aux_sym_preproc_elif_token1] = ACTIONS(5664), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5662), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5662), + [anon_sym_LPAREN2] = ACTIONS(5662), + [anon_sym_DASH] = ACTIONS(5664), + [anon_sym_PLUS] = ACTIONS(5664), + [anon_sym_STAR] = ACTIONS(5664), + [anon_sym_SLASH] = ACTIONS(5664), + [anon_sym_PERCENT] = ACTIONS(5664), + [anon_sym_PIPE_PIPE] = ACTIONS(5662), + [anon_sym_AMP_AMP] = ACTIONS(5662), + [anon_sym_PIPE] = ACTIONS(5664), + [anon_sym_CARET] = ACTIONS(5664), + [anon_sym_AMP] = ACTIONS(5664), + [anon_sym_EQ_EQ] = ACTIONS(5662), + [anon_sym_BANG_EQ] = ACTIONS(5662), + [anon_sym_GT] = ACTIONS(5664), + [anon_sym_GT_EQ] = ACTIONS(5662), + [anon_sym_LT_EQ] = ACTIONS(5664), + [anon_sym_LT] = ACTIONS(5664), + [anon_sym_LT_LT] = ACTIONS(5664), + [anon_sym_GT_GT] = ACTIONS(5664), + [anon_sym_SEMI] = ACTIONS(5662), + [anon_sym_RBRACE] = ACTIONS(5662), + [anon_sym_LBRACK] = ACTIONS(5662), + [anon_sym_RBRACK] = ACTIONS(5662), + [anon_sym_EQ] = ACTIONS(5664), + [anon_sym_COLON] = ACTIONS(5662), + [anon_sym_QMARK] = ACTIONS(5662), + [anon_sym_STAR_EQ] = ACTIONS(5662), + [anon_sym_SLASH_EQ] = ACTIONS(5662), + [anon_sym_PERCENT_EQ] = ACTIONS(5662), + [anon_sym_PLUS_EQ] = ACTIONS(5662), + [anon_sym_DASH_EQ] = ACTIONS(5662), + [anon_sym_LT_LT_EQ] = ACTIONS(5662), + [anon_sym_GT_GT_EQ] = ACTIONS(5662), + [anon_sym_AMP_EQ] = ACTIONS(5662), + [anon_sym_CARET_EQ] = ACTIONS(5662), + [anon_sym_PIPE_EQ] = ACTIONS(5662), + [anon_sym_and_eq] = ACTIONS(5664), + [anon_sym_or_eq] = ACTIONS(5664), + [anon_sym_xor_eq] = ACTIONS(5664), + [anon_sym_LT_EQ_GT] = ACTIONS(5662), + [anon_sym_or] = ACTIONS(5664), + [anon_sym_and] = ACTIONS(5664), + [anon_sym_bitor] = ACTIONS(5664), + [anon_sym_xor] = ACTIONS(5664), + [anon_sym_bitand] = ACTIONS(5664), + [anon_sym_not_eq] = ACTIONS(5664), + [anon_sym_DASH_DASH] = ACTIONS(5662), + [anon_sym_PLUS_PLUS] = ACTIONS(5662), + [anon_sym_DOT] = ACTIONS(5664), + [anon_sym_DOT_STAR] = ACTIONS(5662), + [anon_sym_DASH_GT] = ACTIONS(5662), + [anon_sym_L_DQUOTE] = ACTIONS(5662), + [anon_sym_u_DQUOTE] = ACTIONS(5662), + [anon_sym_U_DQUOTE] = ACTIONS(5662), + [anon_sym_u8_DQUOTE] = ACTIONS(5662), + [anon_sym_DQUOTE] = ACTIONS(5662), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5662), + [anon_sym_LR_DQUOTE] = ACTIONS(5662), + [anon_sym_uR_DQUOTE] = ACTIONS(5662), + [anon_sym_UR_DQUOTE] = ACTIONS(5662), + [anon_sym_u8R_DQUOTE] = ACTIONS(5662), + [sym_literal_suffix] = ACTIONS(5664), }, - [1903] = { - [ts_builtin_sym_end] = ACTIONS(5681), - [sym_identifier] = ACTIONS(5683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5681), - [anon_sym_COMMA] = ACTIONS(5681), - [anon_sym_RPAREN] = ACTIONS(5681), - [aux_sym_preproc_if_token2] = ACTIONS(5681), - [aux_sym_preproc_else_token1] = ACTIONS(5681), - [aux_sym_preproc_elif_token1] = ACTIONS(5683), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5681), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5681), - [anon_sym_LPAREN2] = ACTIONS(5681), - [anon_sym_DASH] = ACTIONS(5683), - [anon_sym_PLUS] = ACTIONS(5683), - [anon_sym_STAR] = ACTIONS(5683), - [anon_sym_SLASH] = ACTIONS(5683), - [anon_sym_PERCENT] = ACTIONS(5683), - [anon_sym_PIPE_PIPE] = ACTIONS(5681), - [anon_sym_AMP_AMP] = ACTIONS(5681), - [anon_sym_PIPE] = ACTIONS(5683), - [anon_sym_CARET] = ACTIONS(5683), - [anon_sym_AMP] = ACTIONS(5683), - [anon_sym_EQ_EQ] = ACTIONS(5681), - [anon_sym_BANG_EQ] = ACTIONS(5681), - [anon_sym_GT] = ACTIONS(5683), - [anon_sym_GT_EQ] = ACTIONS(5681), - [anon_sym_LT_EQ] = ACTIONS(5683), - [anon_sym_LT] = ACTIONS(5683), - [anon_sym_LT_LT] = ACTIONS(5683), - [anon_sym_GT_GT] = ACTIONS(5683), - [anon_sym_SEMI] = ACTIONS(5681), - [anon_sym_RBRACE] = ACTIONS(5681), - [anon_sym_LBRACK] = ACTIONS(5681), - [anon_sym_RBRACK] = ACTIONS(5681), - [anon_sym_EQ] = ACTIONS(5683), - [anon_sym_COLON] = ACTIONS(5681), - [anon_sym_QMARK] = ACTIONS(5681), - [anon_sym_STAR_EQ] = ACTIONS(5681), - [anon_sym_SLASH_EQ] = ACTIONS(5681), - [anon_sym_PERCENT_EQ] = ACTIONS(5681), - [anon_sym_PLUS_EQ] = ACTIONS(5681), - [anon_sym_DASH_EQ] = ACTIONS(5681), - [anon_sym_LT_LT_EQ] = ACTIONS(5681), - [anon_sym_GT_GT_EQ] = ACTIONS(5681), - [anon_sym_AMP_EQ] = ACTIONS(5681), - [anon_sym_CARET_EQ] = ACTIONS(5681), - [anon_sym_PIPE_EQ] = ACTIONS(5681), - [anon_sym_and_eq] = ACTIONS(5683), - [anon_sym_or_eq] = ACTIONS(5683), - [anon_sym_xor_eq] = ACTIONS(5683), - [anon_sym_LT_EQ_GT] = ACTIONS(5681), - [anon_sym_or] = ACTIONS(5683), - [anon_sym_and] = ACTIONS(5683), - [anon_sym_bitor] = ACTIONS(5683), - [anon_sym_xor] = ACTIONS(5683), - [anon_sym_bitand] = ACTIONS(5683), - [anon_sym_not_eq] = ACTIONS(5683), - [anon_sym_DASH_DASH] = ACTIONS(5681), - [anon_sym_PLUS_PLUS] = ACTIONS(5681), - [anon_sym_DOT] = ACTIONS(5683), - [anon_sym_DOT_STAR] = ACTIONS(5681), - [anon_sym_DASH_GT] = ACTIONS(5681), - [anon_sym_L_DQUOTE] = ACTIONS(5681), - [anon_sym_u_DQUOTE] = ACTIONS(5681), - [anon_sym_U_DQUOTE] = ACTIONS(5681), - [anon_sym_u8_DQUOTE] = ACTIONS(5681), - [anon_sym_DQUOTE] = ACTIONS(5681), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5681), - [anon_sym_LR_DQUOTE] = ACTIONS(5681), - [anon_sym_uR_DQUOTE] = ACTIONS(5681), - [anon_sym_UR_DQUOTE] = ACTIONS(5681), - [anon_sym_u8R_DQUOTE] = ACTIONS(5681), - [sym_literal_suffix] = ACTIONS(5683), + [1884] = { + [sym_catch_clause] = STATE(1889), + [aux_sym_constructor_try_statement_repeat1] = STATE(1889), + [sym_identifier] = ACTIONS(3052), + [aux_sym_preproc_def_token1] = ACTIONS(3052), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3054), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_if_token2] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3052), + [aux_sym_preproc_else_token1] = ACTIONS(3052), + [aux_sym_preproc_elif_token1] = ACTIONS(3052), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3052), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3052), + [sym_preproc_directive] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3054), + [anon_sym_TILDE] = ACTIONS(3054), + [anon_sym_STAR] = ACTIONS(3054), + [anon_sym_AMP_AMP] = ACTIONS(3054), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym___extension__] = ACTIONS(3052), + [anon_sym_typedef] = ACTIONS(3052), + [anon_sym_extern] = ACTIONS(3052), + [anon_sym___attribute__] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3054), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3054), + [anon_sym___declspec] = ACTIONS(3052), + [anon_sym___based] = ACTIONS(3052), + [anon_sym_signed] = ACTIONS(3052), + [anon_sym_unsigned] = ACTIONS(3052), + [anon_sym_long] = ACTIONS(3052), + [anon_sym_short] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_static] = ACTIONS(3052), + [anon_sym_register] = ACTIONS(3052), + [anon_sym_inline] = ACTIONS(3052), + [anon_sym___inline] = ACTIONS(3052), + [anon_sym___inline__] = ACTIONS(3052), + [anon_sym___forceinline] = ACTIONS(3052), + [anon_sym_thread_local] = ACTIONS(3052), + [anon_sym___thread] = ACTIONS(3052), + [anon_sym_const] = ACTIONS(3052), + [anon_sym_constexpr] = ACTIONS(3052), + [anon_sym_volatile] = ACTIONS(3052), + [anon_sym_restrict] = ACTIONS(3052), + [anon_sym___restrict__] = ACTIONS(3052), + [anon_sym__Atomic] = ACTIONS(3052), + [anon_sym__Noreturn] = ACTIONS(3052), + [anon_sym_noreturn] = ACTIONS(3052), + [anon_sym_mutable] = ACTIONS(3052), + [anon_sym_constinit] = ACTIONS(3052), + [anon_sym_consteval] = ACTIONS(3052), + [sym_primitive_type] = ACTIONS(3052), + [anon_sym_enum] = ACTIONS(3052), + [anon_sym_class] = ACTIONS(3052), + [anon_sym_struct] = ACTIONS(3052), + [anon_sym_union] = ACTIONS(3052), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3052), + [anon_sym_decltype] = ACTIONS(3052), + [anon_sym_virtual] = ACTIONS(3052), + [anon_sym_alignas] = ACTIONS(3052), + [anon_sym_explicit] = ACTIONS(3052), + [anon_sym_typename] = ACTIONS(3052), + [anon_sym_template] = ACTIONS(3052), + [anon_sym_operator] = ACTIONS(3052), + [anon_sym_friend] = ACTIONS(3052), + [anon_sym_public] = ACTIONS(3052), + [anon_sym_private] = ACTIONS(3052), + [anon_sym_protected] = ACTIONS(3052), + [anon_sym_using] = ACTIONS(3052), + [anon_sym_static_assert] = ACTIONS(3052), + [anon_sym_catch] = ACTIONS(5645), + [sym_semgrep_metavar] = ACTIONS(3054), }, - [1904] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(5181), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_parameter_declaration] = STATE(8718), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_optional_parameter_declaration] = STATE(8718), - [sym_variadic_parameter_declaration] = STATE(8718), - [sym_template_type] = STATE(4853), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(4837), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5548), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5685), - [anon_sym_RPAREN] = ACTIONS(5687), + [1885] = { + [ts_builtin_sym_end] = ACTIONS(5666), + [sym_identifier] = ACTIONS(5668), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5666), + [anon_sym_COMMA] = ACTIONS(5666), + [anon_sym_RPAREN] = ACTIONS(5666), + [aux_sym_preproc_if_token2] = ACTIONS(5666), + [aux_sym_preproc_else_token1] = ACTIONS(5666), + [aux_sym_preproc_elif_token1] = ACTIONS(5668), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5666), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5666), + [anon_sym_LPAREN2] = ACTIONS(5666), + [anon_sym_DASH] = ACTIONS(5668), + [anon_sym_PLUS] = ACTIONS(5668), + [anon_sym_STAR] = ACTIONS(5668), + [anon_sym_SLASH] = ACTIONS(5668), + [anon_sym_PERCENT] = ACTIONS(5668), + [anon_sym_PIPE_PIPE] = ACTIONS(5666), + [anon_sym_AMP_AMP] = ACTIONS(5666), + [anon_sym_PIPE] = ACTIONS(5668), + [anon_sym_CARET] = ACTIONS(5668), + [anon_sym_AMP] = ACTIONS(5668), + [anon_sym_EQ_EQ] = ACTIONS(5666), + [anon_sym_BANG_EQ] = ACTIONS(5666), + [anon_sym_GT] = ACTIONS(5668), + [anon_sym_GT_EQ] = ACTIONS(5666), + [anon_sym_LT_EQ] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5668), + [anon_sym_LT_LT] = ACTIONS(5668), + [anon_sym_GT_GT] = ACTIONS(5668), + [anon_sym_SEMI] = ACTIONS(5666), + [anon_sym_RBRACE] = ACTIONS(5666), + [anon_sym_LBRACK] = ACTIONS(5666), + [anon_sym_RBRACK] = ACTIONS(5666), + [anon_sym_EQ] = ACTIONS(5668), + [anon_sym_COLON] = ACTIONS(5666), + [anon_sym_QMARK] = ACTIONS(5666), + [anon_sym_STAR_EQ] = ACTIONS(5666), + [anon_sym_SLASH_EQ] = ACTIONS(5666), + [anon_sym_PERCENT_EQ] = ACTIONS(5666), + [anon_sym_PLUS_EQ] = ACTIONS(5666), + [anon_sym_DASH_EQ] = ACTIONS(5666), + [anon_sym_LT_LT_EQ] = ACTIONS(5666), + [anon_sym_GT_GT_EQ] = ACTIONS(5666), + [anon_sym_AMP_EQ] = ACTIONS(5666), + [anon_sym_CARET_EQ] = ACTIONS(5666), + [anon_sym_PIPE_EQ] = ACTIONS(5666), + [anon_sym_and_eq] = ACTIONS(5668), + [anon_sym_or_eq] = ACTIONS(5668), + [anon_sym_xor_eq] = ACTIONS(5668), + [anon_sym_LT_EQ_GT] = ACTIONS(5666), + [anon_sym_or] = ACTIONS(5668), + [anon_sym_and] = ACTIONS(5668), + [anon_sym_bitor] = ACTIONS(5668), + [anon_sym_xor] = ACTIONS(5668), + [anon_sym_bitand] = ACTIONS(5668), + [anon_sym_not_eq] = ACTIONS(5668), + [anon_sym_DASH_DASH] = ACTIONS(5666), + [anon_sym_PLUS_PLUS] = ACTIONS(5666), + [anon_sym_DOT] = ACTIONS(5668), + [anon_sym_DOT_STAR] = ACTIONS(5666), + [anon_sym_DASH_GT] = ACTIONS(5666), + [anon_sym_L_DQUOTE] = ACTIONS(5666), + [anon_sym_u_DQUOTE] = ACTIONS(5666), + [anon_sym_U_DQUOTE] = ACTIONS(5666), + [anon_sym_u8_DQUOTE] = ACTIONS(5666), + [anon_sym_DQUOTE] = ACTIONS(5666), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5666), + [anon_sym_LR_DQUOTE] = ACTIONS(5666), + [anon_sym_uR_DQUOTE] = ACTIONS(5666), + [anon_sym_UR_DQUOTE] = ACTIONS(5666), + [anon_sym_u8R_DQUOTE] = ACTIONS(5666), + [sym_literal_suffix] = ACTIONS(5668), + }, + [1886] = { + [sym_identifier] = ACTIONS(5433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5435), + [anon_sym_COMMA] = ACTIONS(5435), + [anon_sym_RPAREN] = ACTIONS(5435), + [anon_sym_LPAREN2] = ACTIONS(5435), + [anon_sym_TILDE] = ACTIONS(5438), + [anon_sym_DASH] = ACTIONS(5440), + [anon_sym_PLUS] = ACTIONS(5440), + [anon_sym_STAR] = ACTIONS(5435), + [anon_sym_SLASH] = ACTIONS(5440), + [anon_sym_PERCENT] = ACTIONS(5445), + [anon_sym_PIPE_PIPE] = ACTIONS(5445), + [anon_sym_AMP_AMP] = ACTIONS(5435), + [anon_sym_PIPE] = ACTIONS(5440), + [anon_sym_CARET] = ACTIONS(5445), + [anon_sym_AMP] = ACTIONS(5442), + [anon_sym_EQ_EQ] = ACTIONS(5445), + [anon_sym_BANG_EQ] = ACTIONS(5445), + [anon_sym_GT] = ACTIONS(5440), + [anon_sym_GT_EQ] = ACTIONS(5445), + [anon_sym_LT_EQ] = ACTIONS(5440), + [anon_sym_LT] = ACTIONS(5440), + [anon_sym_LT_LT] = ACTIONS(5445), + [anon_sym_GT_GT] = ACTIONS(5445), + [anon_sym___extension__] = ACTIONS(5433), + [anon_sym_extern] = ACTIONS(5433), + [anon_sym___attribute__] = ACTIONS(5433), + [anon_sym_COLON_COLON] = ACTIONS(5438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5438), + [anon_sym___declspec] = ACTIONS(5433), + [anon_sym___based] = ACTIONS(5433), + [anon_sym_LBRACE] = ACTIONS(5438), + [anon_sym_LBRACK] = ACTIONS(5442), + [anon_sym_EQ] = ACTIONS(5433), + [anon_sym_static] = ACTIONS(5433), + [anon_sym_register] = ACTIONS(5433), + [anon_sym_inline] = ACTIONS(5433), + [anon_sym___inline] = ACTIONS(5433), + [anon_sym___inline__] = ACTIONS(5433), + [anon_sym___forceinline] = ACTIONS(5433), + [anon_sym_thread_local] = ACTIONS(5433), + [anon_sym___thread] = ACTIONS(5433), + [anon_sym_const] = ACTIONS(5433), + [anon_sym_constexpr] = ACTIONS(5433), + [anon_sym_volatile] = ACTIONS(5433), + [anon_sym_restrict] = ACTIONS(5433), + [anon_sym___restrict__] = ACTIONS(5433), + [anon_sym__Atomic] = ACTIONS(5433), + [anon_sym__Noreturn] = ACTIONS(5433), + [anon_sym_noreturn] = ACTIONS(5433), + [anon_sym_mutable] = ACTIONS(5433), + [anon_sym_constinit] = ACTIONS(5433), + [anon_sym_consteval] = ACTIONS(5433), + [anon_sym_QMARK] = ACTIONS(5445), + [anon_sym_LT_EQ_GT] = ACTIONS(5445), + [anon_sym_or] = ACTIONS(5440), + [anon_sym_and] = ACTIONS(5440), + [anon_sym_bitor] = ACTIONS(5440), + [anon_sym_xor] = ACTIONS(5440), + [anon_sym_bitand] = ACTIONS(5440), + [anon_sym_not_eq] = ACTIONS(5440), + [anon_sym_DASH_DASH] = ACTIONS(5445), + [anon_sym_PLUS_PLUS] = ACTIONS(5445), + [anon_sym_DOT] = ACTIONS(5440), + [anon_sym_DOT_STAR] = ACTIONS(5445), + [anon_sym_DASH_GT] = ACTIONS(5445), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5433), + [anon_sym_decltype] = ACTIONS(5433), + [anon_sym_virtual] = ACTIONS(5433), + [anon_sym_alignas] = ACTIONS(5433), + [anon_sym_template] = ACTIONS(5433), + [anon_sym_operator] = ACTIONS(5433), + }, + [1887] = { + [sym_catch_clause] = STATE(1889), + [aux_sym_constructor_try_statement_repeat1] = STATE(1889), + [sym_identifier] = ACTIONS(3046), + [aux_sym_preproc_def_token1] = ACTIONS(3046), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3046), + [aux_sym_preproc_if_token2] = ACTIONS(3046), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3046), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3046), + [aux_sym_preproc_else_token1] = ACTIONS(3046), + [aux_sym_preproc_elif_token1] = ACTIONS(3046), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3046), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3046), + [sym_preproc_directive] = ACTIONS(3046), + [anon_sym_LPAREN2] = ACTIONS(3048), + [anon_sym_TILDE] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(3048), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3046), + [anon_sym_typedef] = ACTIONS(3046), + [anon_sym_extern] = ACTIONS(3046), + [anon_sym___attribute__] = ACTIONS(3046), + [anon_sym_COLON_COLON] = ACTIONS(3048), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3048), + [anon_sym___declspec] = ACTIONS(3046), + [anon_sym___based] = ACTIONS(3046), + [anon_sym_signed] = ACTIONS(3046), + [anon_sym_unsigned] = ACTIONS(3046), + [anon_sym_long] = ACTIONS(3046), + [anon_sym_short] = ACTIONS(3046), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_static] = ACTIONS(3046), + [anon_sym_register] = ACTIONS(3046), + [anon_sym_inline] = ACTIONS(3046), + [anon_sym___inline] = ACTIONS(3046), + [anon_sym___inline__] = ACTIONS(3046), + [anon_sym___forceinline] = ACTIONS(3046), + [anon_sym_thread_local] = ACTIONS(3046), + [anon_sym___thread] = ACTIONS(3046), + [anon_sym_const] = ACTIONS(3046), + [anon_sym_constexpr] = ACTIONS(3046), + [anon_sym_volatile] = ACTIONS(3046), + [anon_sym_restrict] = ACTIONS(3046), + [anon_sym___restrict__] = ACTIONS(3046), + [anon_sym__Atomic] = ACTIONS(3046), + [anon_sym__Noreturn] = ACTIONS(3046), + [anon_sym_noreturn] = ACTIONS(3046), + [anon_sym_mutable] = ACTIONS(3046), + [anon_sym_constinit] = ACTIONS(3046), + [anon_sym_consteval] = ACTIONS(3046), + [sym_primitive_type] = ACTIONS(3046), + [anon_sym_enum] = ACTIONS(3046), + [anon_sym_class] = ACTIONS(3046), + [anon_sym_struct] = ACTIONS(3046), + [anon_sym_union] = ACTIONS(3046), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3046), + [anon_sym_decltype] = ACTIONS(3046), + [anon_sym_virtual] = ACTIONS(3046), + [anon_sym_alignas] = ACTIONS(3046), + [anon_sym_explicit] = ACTIONS(3046), + [anon_sym_typename] = ACTIONS(3046), + [anon_sym_template] = ACTIONS(3046), + [anon_sym_operator] = ACTIONS(3046), + [anon_sym_friend] = ACTIONS(3046), + [anon_sym_public] = ACTIONS(3046), + [anon_sym_private] = ACTIONS(3046), + [anon_sym_protected] = ACTIONS(3046), + [anon_sym_using] = ACTIONS(3046), + [anon_sym_static_assert] = ACTIONS(3046), + [anon_sym_catch] = ACTIONS(5645), + [sym_semgrep_metavar] = ACTIONS(3048), + }, + [1888] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5396), + [anon_sym_COMMA] = ACTIONS(5396), + [anon_sym_RPAREN] = ACTIONS(5396), + [anon_sym_LPAREN2] = ACTIONS(5396), + [anon_sym_DASH] = ACTIONS(5394), + [anon_sym_PLUS] = ACTIONS(5394), + [anon_sym_STAR] = ACTIONS(5394), + [anon_sym_SLASH] = ACTIONS(5394), + [anon_sym_PERCENT] = ACTIONS(5394), + [anon_sym_PIPE_PIPE] = ACTIONS(5396), + [anon_sym_AMP_AMP] = ACTIONS(5396), + [anon_sym_PIPE] = ACTIONS(5394), + [anon_sym_CARET] = ACTIONS(5394), + [anon_sym_AMP] = ACTIONS(5394), + [anon_sym_EQ_EQ] = ACTIONS(5396), + [anon_sym_BANG_EQ] = ACTIONS(5396), + [anon_sym_GT] = ACTIONS(5394), + [anon_sym_GT_EQ] = ACTIONS(5396), + [anon_sym_LT_EQ] = ACTIONS(5394), + [anon_sym_LT] = ACTIONS(5394), + [anon_sym_LT_LT] = ACTIONS(5394), + [anon_sym_GT_GT] = ACTIONS(5394), + [anon_sym___extension__] = ACTIONS(5396), + [anon_sym___attribute__] = ACTIONS(5396), + [anon_sym_COLON_COLON] = ACTIONS(5396), + [anon_sym_LBRACE] = ACTIONS(5396), + [anon_sym_LBRACK] = ACTIONS(5396), + [anon_sym_EQ] = ACTIONS(5394), + [anon_sym_const] = ACTIONS(5394), + [anon_sym_constexpr] = ACTIONS(5396), + [anon_sym_volatile] = ACTIONS(5396), + [anon_sym_restrict] = ACTIONS(5396), + [anon_sym___restrict__] = ACTIONS(5396), + [anon_sym__Atomic] = ACTIONS(5396), + [anon_sym__Noreturn] = ACTIONS(5396), + [anon_sym_noreturn] = ACTIONS(5396), + [anon_sym_mutable] = ACTIONS(5396), + [anon_sym_constinit] = ACTIONS(5396), + [anon_sym_consteval] = ACTIONS(5396), + [anon_sym_COLON] = ACTIONS(5394), + [anon_sym_QMARK] = ACTIONS(5396), + [anon_sym_STAR_EQ] = ACTIONS(5396), + [anon_sym_SLASH_EQ] = ACTIONS(5396), + [anon_sym_PERCENT_EQ] = ACTIONS(5396), + [anon_sym_PLUS_EQ] = ACTIONS(5396), + [anon_sym_DASH_EQ] = ACTIONS(5396), + [anon_sym_LT_LT_EQ] = ACTIONS(5396), + [anon_sym_GT_GT_EQ] = ACTIONS(5396), + [anon_sym_AMP_EQ] = ACTIONS(5396), + [anon_sym_CARET_EQ] = ACTIONS(5396), + [anon_sym_PIPE_EQ] = ACTIONS(5396), + [anon_sym_and_eq] = ACTIONS(5396), + [anon_sym_or_eq] = ACTIONS(5396), + [anon_sym_xor_eq] = ACTIONS(5396), + [anon_sym_LT_EQ_GT] = ACTIONS(5396), + [anon_sym_or] = ACTIONS(5394), + [anon_sym_and] = ACTIONS(5394), + [anon_sym_bitor] = ACTIONS(5396), + [anon_sym_xor] = ACTIONS(5394), + [anon_sym_bitand] = ACTIONS(5396), + [anon_sym_not_eq] = ACTIONS(5396), + [anon_sym_DASH_DASH] = ACTIONS(5396), + [anon_sym_PLUS_PLUS] = ACTIONS(5396), + [anon_sym_DOT] = ACTIONS(5394), + [anon_sym_DOT_STAR] = ACTIONS(5396), + [anon_sym_DASH_GT] = ACTIONS(5394), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5396), + [anon_sym_decltype] = ACTIONS(5396), + [anon_sym_final] = ACTIONS(5396), + [anon_sym_override] = ACTIONS(5396), + [anon_sym_DASH_GT_STAR] = ACTIONS(5396), + [sym_semgrep_metavar] = ACTIONS(5396), + }, + [1889] = { + [sym_catch_clause] = STATE(1889), + [aux_sym_constructor_try_statement_repeat1] = STATE(1889), + [sym_identifier] = ACTIONS(3027), + [aux_sym_preproc_def_token1] = ACTIONS(3027), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3029), + [aux_sym_preproc_if_token1] = ACTIONS(3027), + [aux_sym_preproc_if_token2] = ACTIONS(3027), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3027), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3027), + [aux_sym_preproc_else_token1] = ACTIONS(3027), + [aux_sym_preproc_elif_token1] = ACTIONS(3027), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3027), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3027), + [sym_preproc_directive] = ACTIONS(3027), + [anon_sym_LPAREN2] = ACTIONS(3029), + [anon_sym_TILDE] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3029), + [anon_sym_AMP_AMP] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3027), + [anon_sym___extension__] = ACTIONS(3027), + [anon_sym_typedef] = ACTIONS(3027), + [anon_sym_extern] = ACTIONS(3027), + [anon_sym___attribute__] = ACTIONS(3027), + [anon_sym_COLON_COLON] = ACTIONS(3029), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3029), + [anon_sym___declspec] = ACTIONS(3027), + [anon_sym___based] = ACTIONS(3027), + [anon_sym_signed] = ACTIONS(3027), + [anon_sym_unsigned] = ACTIONS(3027), + [anon_sym_long] = ACTIONS(3027), + [anon_sym_short] = ACTIONS(3027), + [anon_sym_LBRACK] = ACTIONS(3027), + [anon_sym_static] = ACTIONS(3027), + [anon_sym_register] = ACTIONS(3027), + [anon_sym_inline] = ACTIONS(3027), + [anon_sym___inline] = ACTIONS(3027), + [anon_sym___inline__] = ACTIONS(3027), + [anon_sym___forceinline] = ACTIONS(3027), + [anon_sym_thread_local] = ACTIONS(3027), + [anon_sym___thread] = ACTIONS(3027), + [anon_sym_const] = ACTIONS(3027), + [anon_sym_constexpr] = ACTIONS(3027), + [anon_sym_volatile] = ACTIONS(3027), + [anon_sym_restrict] = ACTIONS(3027), + [anon_sym___restrict__] = ACTIONS(3027), + [anon_sym__Atomic] = ACTIONS(3027), + [anon_sym__Noreturn] = ACTIONS(3027), + [anon_sym_noreturn] = ACTIONS(3027), + [anon_sym_mutable] = ACTIONS(3027), + [anon_sym_constinit] = ACTIONS(3027), + [anon_sym_consteval] = ACTIONS(3027), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3027), + [anon_sym_class] = ACTIONS(3027), + [anon_sym_struct] = ACTIONS(3027), + [anon_sym_union] = ACTIONS(3027), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3027), + [anon_sym_decltype] = ACTIONS(3027), + [anon_sym_virtual] = ACTIONS(3027), + [anon_sym_alignas] = ACTIONS(3027), + [anon_sym_explicit] = ACTIONS(3027), + [anon_sym_typename] = ACTIONS(3027), + [anon_sym_template] = ACTIONS(3027), + [anon_sym_operator] = ACTIONS(3027), + [anon_sym_friend] = ACTIONS(3027), + [anon_sym_public] = ACTIONS(3027), + [anon_sym_private] = ACTIONS(3027), + [anon_sym_protected] = ACTIONS(3027), + [anon_sym_using] = ACTIONS(3027), + [anon_sym_static_assert] = ACTIONS(3027), + [anon_sym_catch] = ACTIONS(5670), + [sym_semgrep_metavar] = ACTIONS(3029), + }, + [1890] = { + [sym_declaration_modifiers] = STATE(2412), + [sym_declaration_specifiers] = STATE(4711), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_parameter_declaration] = STATE(8485), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_optional_parameter_declaration] = STATE(8485), + [sym_variadic_parameter_declaration] = STATE(8485), + [sym_template_type] = STATE(3324), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7569), + [sym_qualified_type_identifier] = STATE(4526), + [aux_sym_declaration_specifiers_repeat1] = STATE(2412), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5214), + [anon_sym_RPAREN] = ACTIONS(5216), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), @@ -292421,56 +280079,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(2119), + [anon_sym_class] = ACTIONS(2121), + [anon_sym_struct] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2125), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_typename] = ACTIONS(2127), + [anon_sym_template] = ACTIONS(1534), }, - [1905] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(5181), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_parameter_declaration] = STATE(9068), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_optional_parameter_declaration] = STATE(9068), - [sym_variadic_parameter_declaration] = STATE(9068), - [sym_template_type] = STATE(4853), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(4837), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5548), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5689), - [anon_sym_RPAREN] = ACTIONS(5691), + [1891] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1891), + [ts_builtin_sym_end] = ACTIONS(5651), + [sym_identifier] = ACTIONS(5653), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5651), + [anon_sym_COMMA] = ACTIONS(5651), + [anon_sym_RPAREN] = ACTIONS(5651), + [aux_sym_preproc_if_token2] = ACTIONS(5651), + [aux_sym_preproc_else_token1] = ACTIONS(5651), + [aux_sym_preproc_elif_token1] = ACTIONS(5653), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5651), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5651), + [anon_sym_LPAREN2] = ACTIONS(5651), + [anon_sym_DASH] = ACTIONS(5653), + [anon_sym_PLUS] = ACTIONS(5653), + [anon_sym_STAR] = ACTIONS(5653), + [anon_sym_SLASH] = ACTIONS(5653), + [anon_sym_PERCENT] = ACTIONS(5653), + [anon_sym_PIPE_PIPE] = ACTIONS(5651), + [anon_sym_AMP_AMP] = ACTIONS(5651), + [anon_sym_PIPE] = ACTIONS(5653), + [anon_sym_CARET] = ACTIONS(5653), + [anon_sym_AMP] = ACTIONS(5653), + [anon_sym_EQ_EQ] = ACTIONS(5651), + [anon_sym_BANG_EQ] = ACTIONS(5651), + [anon_sym_GT] = ACTIONS(5653), + [anon_sym_GT_EQ] = ACTIONS(5651), + [anon_sym_LT_EQ] = ACTIONS(5653), + [anon_sym_LT] = ACTIONS(5653), + [anon_sym_LT_LT] = ACTIONS(5653), + [anon_sym_GT_GT] = ACTIONS(5653), + [anon_sym_SEMI] = ACTIONS(5651), + [anon_sym___attribute__] = ACTIONS(5653), + [anon_sym_LBRACE] = ACTIONS(5651), + [anon_sym_RBRACE] = ACTIONS(5651), + [anon_sym_signed] = ACTIONS(5673), + [anon_sym_unsigned] = ACTIONS(5673), + [anon_sym_long] = ACTIONS(5673), + [anon_sym_short] = ACTIONS(5673), + [anon_sym_LBRACK] = ACTIONS(5651), + [anon_sym_RBRACK] = ACTIONS(5651), + [anon_sym_EQ] = ACTIONS(5653), + [sym_primitive_type] = ACTIONS(5653), + [anon_sym_COLON] = ACTIONS(5651), + [anon_sym_QMARK] = ACTIONS(5651), + [anon_sym_STAR_EQ] = ACTIONS(5651), + [anon_sym_SLASH_EQ] = ACTIONS(5651), + [anon_sym_PERCENT_EQ] = ACTIONS(5651), + [anon_sym_PLUS_EQ] = ACTIONS(5651), + [anon_sym_DASH_EQ] = ACTIONS(5651), + [anon_sym_LT_LT_EQ] = ACTIONS(5651), + [anon_sym_GT_GT_EQ] = ACTIONS(5651), + [anon_sym_AMP_EQ] = ACTIONS(5651), + [anon_sym_CARET_EQ] = ACTIONS(5651), + [anon_sym_PIPE_EQ] = ACTIONS(5651), + [anon_sym_and_eq] = ACTIONS(5653), + [anon_sym_or_eq] = ACTIONS(5653), + [anon_sym_xor_eq] = ACTIONS(5653), + [anon_sym_LT_EQ_GT] = ACTIONS(5651), + [anon_sym_or] = ACTIONS(5653), + [anon_sym_and] = ACTIONS(5653), + [anon_sym_bitor] = ACTIONS(5653), + [anon_sym_xor] = ACTIONS(5653), + [anon_sym_bitand] = ACTIONS(5653), + [anon_sym_not_eq] = ACTIONS(5653), + [anon_sym_DASH_DASH] = ACTIONS(5651), + [anon_sym_PLUS_PLUS] = ACTIONS(5651), + [anon_sym_DOT] = ACTIONS(5653), + [anon_sym_DOT_STAR] = ACTIONS(5651), + [anon_sym_DASH_GT] = ACTIONS(5651), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5653), + [anon_sym_decltype] = ACTIONS(5653), + }, + [1892] = { + [sym_declaration_modifiers] = STATE(2412), + [sym_declaration_specifiers] = STATE(4711), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_parameter_declaration] = STATE(8652), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_optional_parameter_declaration] = STATE(8652), + [sym_variadic_parameter_declaration] = STATE(8652), + [sym_template_type] = STATE(3324), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7569), + [sym_qualified_type_identifier] = STATE(4526), + [aux_sym_declaration_specifiers_repeat1] = STATE(2412), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5676), + [anon_sym_RPAREN] = ACTIONS(5678), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), @@ -292495,56 +280227,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(2119), + [anon_sym_class] = ACTIONS(2121), + [anon_sym_struct] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2125), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_typename] = ACTIONS(2127), + [anon_sym_template] = ACTIONS(1534), }, - [1906] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(5181), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_parameter_declaration] = STATE(8789), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_optional_parameter_declaration] = STATE(8789), - [sym_variadic_parameter_declaration] = STATE(8789), - [sym_template_type] = STATE(4853), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(4837), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5548), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5693), - [anon_sym_RPAREN] = ACTIONS(5695), + [1893] = { + [sym_identifier] = ACTIONS(2355), + [aux_sym_preproc_def_token1] = ACTIONS(2355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2353), + [anon_sym_COMMA] = ACTIONS(3211), + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2355), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2355), + [sym_preproc_directive] = ACTIONS(2355), + [anon_sym_LPAREN2] = ACTIONS(2353), + [anon_sym_TILDE] = ACTIONS(2353), + [anon_sym_STAR] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(2353), + [anon_sym_AMP] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(3211), + [anon_sym___extension__] = ACTIONS(2355), + [anon_sym_typedef] = ACTIONS(2355), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym___attribute__] = ACTIONS(5680), + [anon_sym_COLON_COLON] = ACTIONS(2353), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), + [anon_sym___declspec] = ACTIONS(2355), + [anon_sym___based] = ACTIONS(2355), + [anon_sym_signed] = ACTIONS(2355), + [anon_sym_unsigned] = ACTIONS(2355), + [anon_sym_long] = ACTIONS(2355), + [anon_sym_short] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_static] = ACTIONS(2355), + [anon_sym_register] = ACTIONS(2355), + [anon_sym_inline] = ACTIONS(2355), + [anon_sym___inline] = ACTIONS(2355), + [anon_sym___inline__] = ACTIONS(2355), + [anon_sym___forceinline] = ACTIONS(2355), + [anon_sym_thread_local] = ACTIONS(2355), + [anon_sym___thread] = ACTIONS(2355), + [anon_sym_const] = ACTIONS(2355), + [anon_sym_constexpr] = ACTIONS(2355), + [anon_sym_volatile] = ACTIONS(2355), + [anon_sym_restrict] = ACTIONS(2355), + [anon_sym___restrict__] = ACTIONS(2355), + [anon_sym__Atomic] = ACTIONS(2355), + [anon_sym__Noreturn] = ACTIONS(2355), + [anon_sym_noreturn] = ACTIONS(2355), + [anon_sym_mutable] = ACTIONS(2355), + [anon_sym_constinit] = ACTIONS(2355), + [anon_sym_consteval] = 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), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2355), + [anon_sym_decltype] = ACTIONS(2355), + [anon_sym_virtual] = ACTIONS(2355), + [anon_sym_alignas] = ACTIONS(2355), + [anon_sym_explicit] = ACTIONS(2355), + [anon_sym_typename] = ACTIONS(2355), + [anon_sym_template] = ACTIONS(2355), + [anon_sym_operator] = ACTIONS(2355), + [anon_sym_friend] = ACTIONS(2355), + [anon_sym_public] = ACTIONS(2355), + [anon_sym_private] = ACTIONS(2355), + [anon_sym_protected] = ACTIONS(2355), + [anon_sym_using] = ACTIONS(2355), + [anon_sym_static_assert] = ACTIONS(2355), + [sym_semgrep_metavar] = ACTIONS(2353), + }, + [1894] = { + [sym_declaration_modifiers] = STATE(2412), + [sym_declaration_specifiers] = STATE(4711), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_parameter_declaration] = STATE(8190), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_optional_parameter_declaration] = STATE(8190), + [sym_variadic_parameter_declaration] = STATE(8190), + [sym_template_type] = STATE(3324), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7569), + [sym_qualified_type_identifier] = STATE(4526), + [aux_sym_declaration_specifiers_repeat1] = STATE(2412), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5682), + [anon_sym_RPAREN] = ACTIONS(5684), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), @@ -292569,56 +280375,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(2119), + [anon_sym_class] = ACTIONS(2121), + [anon_sym_struct] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2125), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_typename] = ACTIONS(2127), + [anon_sym_template] = ACTIONS(1534), }, - [1907] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(5181), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_parameter_declaration] = STATE(8581), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_optional_parameter_declaration] = STATE(8581), - [sym_variadic_parameter_declaration] = STATE(8581), - [sym_template_type] = STATE(4853), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(4837), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5548), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5272), - [anon_sym_RPAREN] = ACTIONS(5274), + [1895] = { + [sym_declaration_modifiers] = STATE(2412), + [sym_declaration_specifiers] = STATE(4711), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_parameter_declaration] = STATE(8241), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_optional_parameter_declaration] = STATE(8241), + [sym_variadic_parameter_declaration] = STATE(8241), + [sym_template_type] = STATE(3324), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7569), + [sym_qualified_type_identifier] = STATE(4526), + [aux_sym_declaration_specifiers_repeat1] = STATE(2412), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5686), + [anon_sym_RPAREN] = ACTIONS(5688), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), @@ -292643,130 +280449,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(2119), + [anon_sym_class] = ACTIONS(2121), + [anon_sym_struct] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2125), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_typename] = ACTIONS(2127), + [anon_sym_template] = ACTIONS(1534), }, - [1908] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1908), - [ts_builtin_sym_end] = ACTIONS(5697), - [sym_identifier] = ACTIONS(5699), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5697), - [anon_sym_COMMA] = ACTIONS(5697), - [anon_sym_RPAREN] = ACTIONS(5697), - [aux_sym_preproc_if_token2] = ACTIONS(5697), - [aux_sym_preproc_else_token1] = ACTIONS(5697), - [aux_sym_preproc_elif_token1] = ACTIONS(5699), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5697), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5697), - [anon_sym_LPAREN2] = ACTIONS(5697), - [anon_sym_DASH] = ACTIONS(5699), - [anon_sym_PLUS] = ACTIONS(5699), - [anon_sym_STAR] = ACTIONS(5699), - [anon_sym_SLASH] = ACTIONS(5699), - [anon_sym_PERCENT] = ACTIONS(5699), - [anon_sym_PIPE_PIPE] = ACTIONS(5697), - [anon_sym_AMP_AMP] = ACTIONS(5697), - [anon_sym_PIPE] = ACTIONS(5699), - [anon_sym_CARET] = ACTIONS(5699), - [anon_sym_AMP] = ACTIONS(5699), - [anon_sym_EQ_EQ] = ACTIONS(5697), - [anon_sym_BANG_EQ] = ACTIONS(5697), - [anon_sym_GT] = ACTIONS(5699), - [anon_sym_GT_EQ] = ACTIONS(5697), - [anon_sym_LT_EQ] = ACTIONS(5699), - [anon_sym_LT] = ACTIONS(5699), - [anon_sym_LT_LT] = ACTIONS(5699), - [anon_sym_GT_GT] = ACTIONS(5699), - [anon_sym_SEMI] = ACTIONS(5697), - [anon_sym___attribute__] = ACTIONS(5699), - [anon_sym_LBRACE] = ACTIONS(5697), - [anon_sym_RBRACE] = ACTIONS(5697), - [anon_sym_signed] = ACTIONS(5701), - [anon_sym_unsigned] = ACTIONS(5701), - [anon_sym_long] = ACTIONS(5701), - [anon_sym_short] = ACTIONS(5701), - [anon_sym_LBRACK] = ACTIONS(5697), - [anon_sym_RBRACK] = ACTIONS(5697), - [anon_sym_EQ] = ACTIONS(5699), - [sym_primitive_type] = ACTIONS(5699), - [anon_sym_COLON] = ACTIONS(5697), - [anon_sym_QMARK] = ACTIONS(5697), - [anon_sym_STAR_EQ] = ACTIONS(5697), - [anon_sym_SLASH_EQ] = ACTIONS(5697), - [anon_sym_PERCENT_EQ] = ACTIONS(5697), - [anon_sym_PLUS_EQ] = ACTIONS(5697), - [anon_sym_DASH_EQ] = ACTIONS(5697), - [anon_sym_LT_LT_EQ] = ACTIONS(5697), - [anon_sym_GT_GT_EQ] = ACTIONS(5697), - [anon_sym_AMP_EQ] = ACTIONS(5697), - [anon_sym_CARET_EQ] = ACTIONS(5697), - [anon_sym_PIPE_EQ] = ACTIONS(5697), - [anon_sym_and_eq] = ACTIONS(5699), - [anon_sym_or_eq] = ACTIONS(5699), - [anon_sym_xor_eq] = ACTIONS(5699), - [anon_sym_LT_EQ_GT] = ACTIONS(5697), - [anon_sym_or] = ACTIONS(5699), - [anon_sym_and] = ACTIONS(5699), - [anon_sym_bitor] = ACTIONS(5699), - [anon_sym_xor] = ACTIONS(5699), - [anon_sym_bitand] = ACTIONS(5699), - [anon_sym_not_eq] = ACTIONS(5699), - [anon_sym_DASH_DASH] = ACTIONS(5697), - [anon_sym_PLUS_PLUS] = ACTIONS(5697), - [anon_sym_DOT] = ACTIONS(5699), - [anon_sym_DOT_STAR] = ACTIONS(5697), - [anon_sym_DASH_GT] = ACTIONS(5697), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5699), - [anon_sym_decltype] = ACTIONS(5699), - }, - [1909] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(5181), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_parameter_declaration] = STATE(8599), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_optional_parameter_declaration] = STATE(8599), - [sym_variadic_parameter_declaration] = STATE(8599), - [sym_template_type] = STATE(4853), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(4837), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5548), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5704), - [anon_sym_RPAREN] = ACTIONS(5706), + [1896] = { + [sym_declaration_modifiers] = STATE(2412), + [sym_declaration_specifiers] = STATE(4711), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_parameter_declaration] = STATE(8299), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_optional_parameter_declaration] = STATE(8299), + [sym_variadic_parameter_declaration] = STATE(8299), + [sym_template_type] = STATE(3324), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7569), + [sym_qualified_type_identifier] = STATE(4526), + [aux_sym_declaration_specifiers_repeat1] = STATE(2412), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5690), + [anon_sym_RPAREN] = ACTIONS(5692), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), @@ -292791,56 +280523,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(2119), + [anon_sym_class] = ACTIONS(2121), + [anon_sym_struct] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2125), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_typename] = ACTIONS(2127), + [anon_sym_template] = ACTIONS(1534), }, - [1910] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(5181), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_parameter_declaration] = STATE(9034), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_optional_parameter_declaration] = STATE(9034), - [sym_variadic_parameter_declaration] = STATE(9034), - [sym_template_type] = STATE(4853), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(4837), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5548), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5708), - [anon_sym_RPAREN] = ACTIONS(5710), + [1897] = { + [sym_attribute_specifier] = STATE(2329), + [sym_field_declaration_list] = STATE(2168), + [sym_virtual_specifier] = STATE(8009), + [sym_base_class_clause] = STATE(8676), + [ts_builtin_sym_end] = ACTIONS(5694), + [sym_identifier] = ACTIONS(5696), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5694), + [anon_sym_COMMA] = ACTIONS(5694), + [anon_sym_RPAREN] = ACTIONS(5694), + [aux_sym_preproc_if_token2] = ACTIONS(5694), + [aux_sym_preproc_else_token1] = ACTIONS(5694), + [aux_sym_preproc_elif_token1] = ACTIONS(5696), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5694), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5694), + [anon_sym_LPAREN2] = ACTIONS(5694), + [anon_sym_DASH] = ACTIONS(5696), + [anon_sym_PLUS] = ACTIONS(5696), + [anon_sym_STAR] = ACTIONS(5696), + [anon_sym_SLASH] = ACTIONS(5696), + [anon_sym_PERCENT] = ACTIONS(5696), + [anon_sym_PIPE_PIPE] = ACTIONS(5694), + [anon_sym_AMP_AMP] = ACTIONS(5694), + [anon_sym_PIPE] = ACTIONS(5696), + [anon_sym_CARET] = ACTIONS(5696), + [anon_sym_AMP] = ACTIONS(5696), + [anon_sym_EQ_EQ] = ACTIONS(5694), + [anon_sym_BANG_EQ] = ACTIONS(5694), + [anon_sym_GT] = ACTIONS(5696), + [anon_sym_GT_EQ] = ACTIONS(5694), + [anon_sym_LT_EQ] = ACTIONS(5696), + [anon_sym_LT] = ACTIONS(5696), + [anon_sym_LT_LT] = ACTIONS(5696), + [anon_sym_GT_GT] = ACTIONS(5696), + [anon_sym_SEMI] = ACTIONS(5694), + [anon_sym___attribute__] = ACTIONS(5698), + [anon_sym_LBRACE] = ACTIONS(5700), + [anon_sym_RBRACE] = ACTIONS(5694), + [anon_sym_LBRACK] = ACTIONS(5694), + [anon_sym_RBRACK] = ACTIONS(5694), + [anon_sym_EQ] = ACTIONS(5696), + [anon_sym_COLON] = ACTIONS(5702), + [anon_sym_QMARK] = ACTIONS(5694), + [anon_sym_STAR_EQ] = ACTIONS(5694), + [anon_sym_SLASH_EQ] = ACTIONS(5694), + [anon_sym_PERCENT_EQ] = ACTIONS(5694), + [anon_sym_PLUS_EQ] = ACTIONS(5694), + [anon_sym_DASH_EQ] = ACTIONS(5694), + [anon_sym_LT_LT_EQ] = ACTIONS(5694), + [anon_sym_GT_GT_EQ] = ACTIONS(5694), + [anon_sym_AMP_EQ] = ACTIONS(5694), + [anon_sym_CARET_EQ] = ACTIONS(5694), + [anon_sym_PIPE_EQ] = ACTIONS(5694), + [anon_sym_and_eq] = ACTIONS(5696), + [anon_sym_or_eq] = ACTIONS(5696), + [anon_sym_xor_eq] = ACTIONS(5696), + [anon_sym_LT_EQ_GT] = ACTIONS(5694), + [anon_sym_or] = ACTIONS(5696), + [anon_sym_and] = ACTIONS(5696), + [anon_sym_bitor] = ACTIONS(5696), + [anon_sym_xor] = ACTIONS(5696), + [anon_sym_bitand] = ACTIONS(5696), + [anon_sym_not_eq] = ACTIONS(5696), + [anon_sym_DASH_DASH] = ACTIONS(5694), + [anon_sym_PLUS_PLUS] = ACTIONS(5694), + [anon_sym_DOT] = ACTIONS(5696), + [anon_sym_DOT_STAR] = ACTIONS(5694), + [anon_sym_DASH_GT] = ACTIONS(5694), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5696), + [anon_sym_decltype] = ACTIONS(5696), + [anon_sym_final] = ACTIONS(5704), + [anon_sym_override] = ACTIONS(5704), + }, + [1898] = { + [sym_declaration_modifiers] = STATE(2412), + [sym_declaration_specifiers] = STATE(4711), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_parameter_declaration] = STATE(8349), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_optional_parameter_declaration] = STATE(8349), + [sym_variadic_parameter_declaration] = STATE(8349), + [sym_template_type] = STATE(3324), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7569), + [sym_qualified_type_identifier] = STATE(4526), + [aux_sym_declaration_specifiers_repeat1] = STATE(2412), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5706), + [anon_sym_RPAREN] = ACTIONS(5708), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), @@ -292865,56 +280671,1224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(2119), + [anon_sym_class] = ACTIONS(2121), + [anon_sym_struct] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2125), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_typename] = ACTIONS(2127), + [anon_sym_template] = ACTIONS(1534), + }, + [1899] = { + [sym_identifier] = ACTIONS(2355), + [aux_sym_preproc_def_token1] = ACTIONS(2355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2353), + [anon_sym_COMMA] = ACTIONS(3211), + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2355), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2355), + [sym_preproc_directive] = ACTIONS(2355), + [anon_sym_LPAREN2] = ACTIONS(2353), + [anon_sym_TILDE] = ACTIONS(2353), + [anon_sym_STAR] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(2353), + [anon_sym_AMP] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(3211), + [anon_sym___extension__] = ACTIONS(2355), + [anon_sym_typedef] = ACTIONS(2355), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym___attribute__] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(2353), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), + [anon_sym___declspec] = ACTIONS(2355), + [anon_sym___based] = ACTIONS(2355), + [anon_sym_signed] = ACTIONS(2355), + [anon_sym_unsigned] = ACTIONS(2355), + [anon_sym_long] = ACTIONS(2355), + [anon_sym_short] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_static] = ACTIONS(2355), + [anon_sym_register] = ACTIONS(2355), + [anon_sym_inline] = ACTIONS(2355), + [anon_sym___inline] = ACTIONS(2355), + [anon_sym___inline__] = ACTIONS(2355), + [anon_sym___forceinline] = ACTIONS(2355), + [anon_sym_thread_local] = ACTIONS(2355), + [anon_sym___thread] = ACTIONS(2355), + [anon_sym_const] = ACTIONS(2355), + [anon_sym_constexpr] = ACTIONS(2355), + [anon_sym_volatile] = ACTIONS(2355), + [anon_sym_restrict] = ACTIONS(2355), + [anon_sym___restrict__] = ACTIONS(2355), + [anon_sym__Atomic] = ACTIONS(2355), + [anon_sym__Noreturn] = ACTIONS(2355), + [anon_sym_noreturn] = ACTIONS(2355), + [anon_sym_mutable] = ACTIONS(2355), + [anon_sym_constinit] = ACTIONS(2355), + [anon_sym_consteval] = 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), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2355), + [anon_sym_decltype] = ACTIONS(2355), + [anon_sym_virtual] = ACTIONS(2355), + [anon_sym_alignas] = ACTIONS(2355), + [anon_sym_explicit] = ACTIONS(2355), + [anon_sym_typename] = ACTIONS(2355), + [anon_sym_template] = ACTIONS(2355), + [anon_sym_operator] = ACTIONS(2355), + [anon_sym_friend] = ACTIONS(2355), + [anon_sym_public] = ACTIONS(2355), + [anon_sym_private] = ACTIONS(2355), + [anon_sym_protected] = ACTIONS(2355), + [anon_sym_using] = ACTIONS(2355), + [anon_sym_static_assert] = ACTIONS(2355), + [sym_semgrep_metavar] = ACTIONS(2353), + }, + [1900] = { + [sym_identifier] = ACTIONS(3060), + [aux_sym_preproc_def_token1] = ACTIONS(3060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3062), + [aux_sym_preproc_if_token1] = ACTIONS(3060), + [aux_sym_preproc_if_token2] = ACTIONS(3060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3060), + [aux_sym_preproc_else_token1] = ACTIONS(3060), + [aux_sym_preproc_elif_token1] = ACTIONS(3060), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3060), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3060), + [sym_preproc_directive] = ACTIONS(3060), + [anon_sym_LPAREN2] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3062), + [anon_sym_AMP_AMP] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym___extension__] = ACTIONS(3060), + [anon_sym_typedef] = ACTIONS(3060), + [anon_sym_extern] = ACTIONS(3060), + [anon_sym___attribute__] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3062), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3062), + [anon_sym___declspec] = ACTIONS(3060), + [anon_sym___based] = ACTIONS(3060), + [anon_sym_signed] = ACTIONS(3060), + [anon_sym_unsigned] = ACTIONS(3060), + [anon_sym_long] = ACTIONS(3060), + [anon_sym_short] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_register] = ACTIONS(3060), + [anon_sym_inline] = ACTIONS(3060), + [anon_sym___inline] = ACTIONS(3060), + [anon_sym___inline__] = ACTIONS(3060), + [anon_sym___forceinline] = ACTIONS(3060), + [anon_sym_thread_local] = ACTIONS(3060), + [anon_sym___thread] = ACTIONS(3060), + [anon_sym_const] = ACTIONS(3060), + [anon_sym_constexpr] = ACTIONS(3060), + [anon_sym_volatile] = ACTIONS(3060), + [anon_sym_restrict] = ACTIONS(3060), + [anon_sym___restrict__] = ACTIONS(3060), + [anon_sym__Atomic] = ACTIONS(3060), + [anon_sym__Noreturn] = ACTIONS(3060), + [anon_sym_noreturn] = ACTIONS(3060), + [anon_sym_mutable] = ACTIONS(3060), + [anon_sym_constinit] = ACTIONS(3060), + [anon_sym_consteval] = ACTIONS(3060), + [sym_primitive_type] = ACTIONS(3060), + [anon_sym_enum] = ACTIONS(3060), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3060), + [anon_sym_union] = ACTIONS(3060), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3060), + [anon_sym_decltype] = ACTIONS(3060), + [anon_sym_virtual] = ACTIONS(3060), + [anon_sym_alignas] = ACTIONS(3060), + [anon_sym_explicit] = ACTIONS(3060), + [anon_sym_typename] = ACTIONS(3060), + [anon_sym_template] = ACTIONS(3060), + [anon_sym_operator] = ACTIONS(3060), + [anon_sym_friend] = ACTIONS(3060), + [anon_sym_public] = ACTIONS(3060), + [anon_sym_private] = ACTIONS(3060), + [anon_sym_protected] = ACTIONS(3060), + [anon_sym_using] = ACTIONS(3060), + [anon_sym_static_assert] = ACTIONS(3060), + [anon_sym_catch] = ACTIONS(3060), + [sym_semgrep_metavar] = ACTIONS(3062), + }, + [1901] = { + [sym_catch_clause] = STATE(1903), + [aux_sym_constructor_try_statement_repeat1] = STATE(1903), + [sym_identifier] = ACTIONS(3052), + [aux_sym_preproc_def_token1] = ACTIONS(3052), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3054), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_if_token2] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3052), + [aux_sym_preproc_else_token1] = ACTIONS(3052), + [aux_sym_preproc_elif_token1] = ACTIONS(3052), + [sym_preproc_directive] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3054), + [anon_sym_TILDE] = ACTIONS(3054), + [anon_sym_STAR] = ACTIONS(3054), + [anon_sym_AMP_AMP] = ACTIONS(3054), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym___extension__] = ACTIONS(3052), + [anon_sym_typedef] = ACTIONS(3052), + [anon_sym_extern] = ACTIONS(3052), + [anon_sym___attribute__] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3054), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3054), + [anon_sym___declspec] = ACTIONS(3052), + [anon_sym___based] = ACTIONS(3052), + [anon_sym_signed] = ACTIONS(3052), + [anon_sym_unsigned] = ACTIONS(3052), + [anon_sym_long] = ACTIONS(3052), + [anon_sym_short] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_static] = ACTIONS(3052), + [anon_sym_register] = ACTIONS(3052), + [anon_sym_inline] = ACTIONS(3052), + [anon_sym___inline] = ACTIONS(3052), + [anon_sym___inline__] = ACTIONS(3052), + [anon_sym___forceinline] = ACTIONS(3052), + [anon_sym_thread_local] = ACTIONS(3052), + [anon_sym___thread] = ACTIONS(3052), + [anon_sym_const] = ACTIONS(3052), + [anon_sym_constexpr] = ACTIONS(3052), + [anon_sym_volatile] = ACTIONS(3052), + [anon_sym_restrict] = ACTIONS(3052), + [anon_sym___restrict__] = ACTIONS(3052), + [anon_sym__Atomic] = ACTIONS(3052), + [anon_sym__Noreturn] = ACTIONS(3052), + [anon_sym_noreturn] = ACTIONS(3052), + [anon_sym_mutable] = ACTIONS(3052), + [anon_sym_constinit] = ACTIONS(3052), + [anon_sym_consteval] = ACTIONS(3052), + [sym_primitive_type] = ACTIONS(3052), + [anon_sym_enum] = ACTIONS(3052), + [anon_sym_class] = ACTIONS(3052), + [anon_sym_struct] = ACTIONS(3052), + [anon_sym_union] = ACTIONS(3052), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3052), + [anon_sym_decltype] = ACTIONS(3052), + [anon_sym_virtual] = ACTIONS(3052), + [anon_sym_alignas] = ACTIONS(3052), + [anon_sym_explicit] = ACTIONS(3052), + [anon_sym_typename] = ACTIONS(3052), + [anon_sym_template] = ACTIONS(3052), + [anon_sym_operator] = ACTIONS(3052), + [anon_sym_friend] = ACTIONS(3052), + [anon_sym_public] = ACTIONS(3052), + [anon_sym_private] = ACTIONS(3052), + [anon_sym_protected] = ACTIONS(3052), + [anon_sym_using] = ACTIONS(3052), + [anon_sym_static_assert] = ACTIONS(3052), + [anon_sym_catch] = ACTIONS(5710), + [sym_semgrep_metavar] = ACTIONS(3054), + }, + [1902] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5404), + [anon_sym_COMMA] = ACTIONS(5404), + [anon_sym_LPAREN2] = ACTIONS(5404), + [anon_sym_DASH] = ACTIONS(5402), + [anon_sym_PLUS] = ACTIONS(5402), + [anon_sym_STAR] = ACTIONS(5402), + [anon_sym_SLASH] = ACTIONS(5402), + [anon_sym_PERCENT] = ACTIONS(5402), + [anon_sym_PIPE_PIPE] = ACTIONS(5404), + [anon_sym_AMP_AMP] = ACTIONS(5404), + [anon_sym_PIPE] = ACTIONS(5402), + [anon_sym_CARET] = ACTIONS(5402), + [anon_sym_AMP] = ACTIONS(5402), + [anon_sym_EQ_EQ] = ACTIONS(5404), + [anon_sym_BANG_EQ] = ACTIONS(5404), + [anon_sym_GT] = ACTIONS(5402), + [anon_sym_GT_EQ] = ACTIONS(5402), + [anon_sym_LT_EQ] = ACTIONS(5402), + [anon_sym_LT] = ACTIONS(5402), + [anon_sym_LT_LT] = ACTIONS(5402), + [anon_sym_GT_GT] = ACTIONS(5402), + [anon_sym___extension__] = ACTIONS(5404), + [anon_sym___attribute__] = ACTIONS(5404), + [anon_sym_COLON_COLON] = ACTIONS(5404), + [anon_sym_LBRACE] = ACTIONS(5404), + [anon_sym_LBRACK] = ACTIONS(5404), + [anon_sym_EQ] = ACTIONS(5402), + [anon_sym_const] = ACTIONS(5402), + [anon_sym_constexpr] = ACTIONS(5404), + [anon_sym_volatile] = ACTIONS(5404), + [anon_sym_restrict] = ACTIONS(5404), + [anon_sym___restrict__] = ACTIONS(5404), + [anon_sym__Atomic] = ACTIONS(5404), + [anon_sym__Noreturn] = ACTIONS(5404), + [anon_sym_noreturn] = ACTIONS(5404), + [anon_sym_mutable] = ACTIONS(5404), + [anon_sym_constinit] = ACTIONS(5404), + [anon_sym_consteval] = ACTIONS(5404), + [anon_sym_COLON] = ACTIONS(5402), + [anon_sym_QMARK] = ACTIONS(5404), + [anon_sym_STAR_EQ] = ACTIONS(5404), + [anon_sym_SLASH_EQ] = ACTIONS(5404), + [anon_sym_PERCENT_EQ] = ACTIONS(5404), + [anon_sym_PLUS_EQ] = ACTIONS(5404), + [anon_sym_DASH_EQ] = ACTIONS(5404), + [anon_sym_LT_LT_EQ] = ACTIONS(5404), + [anon_sym_GT_GT_EQ] = ACTIONS(5402), + [anon_sym_AMP_EQ] = ACTIONS(5404), + [anon_sym_CARET_EQ] = ACTIONS(5404), + [anon_sym_PIPE_EQ] = ACTIONS(5404), + [anon_sym_and_eq] = ACTIONS(5404), + [anon_sym_or_eq] = ACTIONS(5404), + [anon_sym_xor_eq] = ACTIONS(5404), + [anon_sym_LT_EQ_GT] = ACTIONS(5404), + [anon_sym_or] = ACTIONS(5402), + [anon_sym_and] = ACTIONS(5402), + [anon_sym_bitor] = ACTIONS(5404), + [anon_sym_xor] = ACTIONS(5402), + [anon_sym_bitand] = ACTIONS(5404), + [anon_sym_not_eq] = ACTIONS(5404), + [anon_sym_DASH_DASH] = ACTIONS(5404), + [anon_sym_PLUS_PLUS] = ACTIONS(5404), + [anon_sym_DOT] = ACTIONS(5402), + [anon_sym_DOT_STAR] = ACTIONS(5404), + [anon_sym_DASH_GT] = ACTIONS(5404), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5404), + [anon_sym_decltype] = ACTIONS(5404), + [anon_sym_final] = ACTIONS(5404), + [anon_sym_override] = ACTIONS(5404), + [anon_sym_GT2] = ACTIONS(5404), + }, + [1903] = { + [sym_catch_clause] = STATE(1903), + [aux_sym_constructor_try_statement_repeat1] = STATE(1903), + [sym_identifier] = ACTIONS(3027), + [aux_sym_preproc_def_token1] = ACTIONS(3027), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3029), + [aux_sym_preproc_if_token1] = ACTIONS(3027), + [aux_sym_preproc_if_token2] = ACTIONS(3027), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3027), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3027), + [aux_sym_preproc_else_token1] = ACTIONS(3027), + [aux_sym_preproc_elif_token1] = ACTIONS(3027), + [sym_preproc_directive] = ACTIONS(3027), + [anon_sym_LPAREN2] = ACTIONS(3029), + [anon_sym_TILDE] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3029), + [anon_sym_AMP_AMP] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3027), + [anon_sym___extension__] = ACTIONS(3027), + [anon_sym_typedef] = ACTIONS(3027), + [anon_sym_extern] = ACTIONS(3027), + [anon_sym___attribute__] = ACTIONS(3027), + [anon_sym_COLON_COLON] = ACTIONS(3029), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3029), + [anon_sym___declspec] = ACTIONS(3027), + [anon_sym___based] = ACTIONS(3027), + [anon_sym_signed] = ACTIONS(3027), + [anon_sym_unsigned] = ACTIONS(3027), + [anon_sym_long] = ACTIONS(3027), + [anon_sym_short] = ACTIONS(3027), + [anon_sym_LBRACK] = ACTIONS(3027), + [anon_sym_static] = ACTIONS(3027), + [anon_sym_register] = ACTIONS(3027), + [anon_sym_inline] = ACTIONS(3027), + [anon_sym___inline] = ACTIONS(3027), + [anon_sym___inline__] = ACTIONS(3027), + [anon_sym___forceinline] = ACTIONS(3027), + [anon_sym_thread_local] = ACTIONS(3027), + [anon_sym___thread] = ACTIONS(3027), + [anon_sym_const] = ACTIONS(3027), + [anon_sym_constexpr] = ACTIONS(3027), + [anon_sym_volatile] = ACTIONS(3027), + [anon_sym_restrict] = ACTIONS(3027), + [anon_sym___restrict__] = ACTIONS(3027), + [anon_sym__Atomic] = ACTIONS(3027), + [anon_sym__Noreturn] = ACTIONS(3027), + [anon_sym_noreturn] = ACTIONS(3027), + [anon_sym_mutable] = ACTIONS(3027), + [anon_sym_constinit] = ACTIONS(3027), + [anon_sym_consteval] = ACTIONS(3027), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3027), + [anon_sym_class] = ACTIONS(3027), + [anon_sym_struct] = ACTIONS(3027), + [anon_sym_union] = ACTIONS(3027), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3027), + [anon_sym_decltype] = ACTIONS(3027), + [anon_sym_virtual] = ACTIONS(3027), + [anon_sym_alignas] = ACTIONS(3027), + [anon_sym_explicit] = ACTIONS(3027), + [anon_sym_typename] = ACTIONS(3027), + [anon_sym_template] = ACTIONS(3027), + [anon_sym_operator] = ACTIONS(3027), + [anon_sym_friend] = ACTIONS(3027), + [anon_sym_public] = ACTIONS(3027), + [anon_sym_private] = ACTIONS(3027), + [anon_sym_protected] = ACTIONS(3027), + [anon_sym_using] = ACTIONS(3027), + [anon_sym_static_assert] = ACTIONS(3027), + [anon_sym_catch] = ACTIONS(5712), + [sym_semgrep_metavar] = ACTIONS(3029), + }, + [1904] = { + [sym_catch_clause] = STATE(1903), + [aux_sym_constructor_try_statement_repeat1] = STATE(1903), + [sym_identifier] = ACTIONS(3056), + [aux_sym_preproc_def_token1] = ACTIONS(3056), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3058), + [aux_sym_preproc_if_token1] = ACTIONS(3056), + [aux_sym_preproc_if_token2] = ACTIONS(3056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3056), + [aux_sym_preproc_else_token1] = ACTIONS(3056), + [aux_sym_preproc_elif_token1] = ACTIONS(3056), + [sym_preproc_directive] = ACTIONS(3056), + [anon_sym_LPAREN2] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3058), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_AMP_AMP] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3056), + [anon_sym___extension__] = ACTIONS(3056), + [anon_sym_typedef] = ACTIONS(3056), + [anon_sym_extern] = ACTIONS(3056), + [anon_sym___attribute__] = ACTIONS(3056), + [anon_sym_COLON_COLON] = ACTIONS(3058), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3058), + [anon_sym___declspec] = ACTIONS(3056), + [anon_sym___based] = ACTIONS(3056), + [anon_sym_signed] = ACTIONS(3056), + [anon_sym_unsigned] = ACTIONS(3056), + [anon_sym_long] = ACTIONS(3056), + [anon_sym_short] = ACTIONS(3056), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_static] = ACTIONS(3056), + [anon_sym_register] = ACTIONS(3056), + [anon_sym_inline] = ACTIONS(3056), + [anon_sym___inline] = ACTIONS(3056), + [anon_sym___inline__] = ACTIONS(3056), + [anon_sym___forceinline] = ACTIONS(3056), + [anon_sym_thread_local] = ACTIONS(3056), + [anon_sym___thread] = ACTIONS(3056), + [anon_sym_const] = ACTIONS(3056), + [anon_sym_constexpr] = ACTIONS(3056), + [anon_sym_volatile] = ACTIONS(3056), + [anon_sym_restrict] = ACTIONS(3056), + [anon_sym___restrict__] = ACTIONS(3056), + [anon_sym__Atomic] = ACTIONS(3056), + [anon_sym__Noreturn] = ACTIONS(3056), + [anon_sym_noreturn] = ACTIONS(3056), + [anon_sym_mutable] = ACTIONS(3056), + [anon_sym_constinit] = ACTIONS(3056), + [anon_sym_consteval] = ACTIONS(3056), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3056), + [anon_sym_class] = ACTIONS(3056), + [anon_sym_struct] = ACTIONS(3056), + [anon_sym_union] = ACTIONS(3056), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3056), + [anon_sym_decltype] = ACTIONS(3056), + [anon_sym_virtual] = ACTIONS(3056), + [anon_sym_alignas] = ACTIONS(3056), + [anon_sym_explicit] = ACTIONS(3056), + [anon_sym_typename] = ACTIONS(3056), + [anon_sym_template] = ACTIONS(3056), + [anon_sym_operator] = ACTIONS(3056), + [anon_sym_friend] = ACTIONS(3056), + [anon_sym_public] = ACTIONS(3056), + [anon_sym_private] = ACTIONS(3056), + [anon_sym_protected] = ACTIONS(3056), + [anon_sym_using] = ACTIONS(3056), + [anon_sym_static_assert] = ACTIONS(3056), + [anon_sym_catch] = ACTIONS(5710), + [sym_semgrep_metavar] = ACTIONS(3058), + }, + [1905] = { + [sym_catch_clause] = STATE(1903), + [aux_sym_constructor_try_statement_repeat1] = STATE(1903), + [sym_identifier] = ACTIONS(3046), + [aux_sym_preproc_def_token1] = ACTIONS(3046), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3046), + [aux_sym_preproc_if_token2] = ACTIONS(3046), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3046), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3046), + [aux_sym_preproc_else_token1] = ACTIONS(3046), + [aux_sym_preproc_elif_token1] = ACTIONS(3046), + [sym_preproc_directive] = ACTIONS(3046), + [anon_sym_LPAREN2] = ACTIONS(3048), + [anon_sym_TILDE] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(3048), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3046), + [anon_sym_typedef] = ACTIONS(3046), + [anon_sym_extern] = ACTIONS(3046), + [anon_sym___attribute__] = ACTIONS(3046), + [anon_sym_COLON_COLON] = ACTIONS(3048), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3048), + [anon_sym___declspec] = ACTIONS(3046), + [anon_sym___based] = ACTIONS(3046), + [anon_sym_signed] = ACTIONS(3046), + [anon_sym_unsigned] = ACTIONS(3046), + [anon_sym_long] = ACTIONS(3046), + [anon_sym_short] = ACTIONS(3046), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_static] = ACTIONS(3046), + [anon_sym_register] = ACTIONS(3046), + [anon_sym_inline] = ACTIONS(3046), + [anon_sym___inline] = ACTIONS(3046), + [anon_sym___inline__] = ACTIONS(3046), + [anon_sym___forceinline] = ACTIONS(3046), + [anon_sym_thread_local] = ACTIONS(3046), + [anon_sym___thread] = ACTIONS(3046), + [anon_sym_const] = ACTIONS(3046), + [anon_sym_constexpr] = ACTIONS(3046), + [anon_sym_volatile] = ACTIONS(3046), + [anon_sym_restrict] = ACTIONS(3046), + [anon_sym___restrict__] = ACTIONS(3046), + [anon_sym__Atomic] = ACTIONS(3046), + [anon_sym__Noreturn] = ACTIONS(3046), + [anon_sym_noreturn] = ACTIONS(3046), + [anon_sym_mutable] = ACTIONS(3046), + [anon_sym_constinit] = ACTIONS(3046), + [anon_sym_consteval] = ACTIONS(3046), + [sym_primitive_type] = ACTIONS(3046), + [anon_sym_enum] = ACTIONS(3046), + [anon_sym_class] = ACTIONS(3046), + [anon_sym_struct] = ACTIONS(3046), + [anon_sym_union] = ACTIONS(3046), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3046), + [anon_sym_decltype] = ACTIONS(3046), + [anon_sym_virtual] = ACTIONS(3046), + [anon_sym_alignas] = ACTIONS(3046), + [anon_sym_explicit] = ACTIONS(3046), + [anon_sym_typename] = ACTIONS(3046), + [anon_sym_template] = ACTIONS(3046), + [anon_sym_operator] = ACTIONS(3046), + [anon_sym_friend] = ACTIONS(3046), + [anon_sym_public] = ACTIONS(3046), + [anon_sym_private] = ACTIONS(3046), + [anon_sym_protected] = ACTIONS(3046), + [anon_sym_using] = ACTIONS(3046), + [anon_sym_static_assert] = ACTIONS(3046), + [anon_sym_catch] = ACTIONS(5710), + [sym_semgrep_metavar] = ACTIONS(3048), + }, + [1906] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5423), + [anon_sym_COMMA] = ACTIONS(5423), + [anon_sym_LPAREN2] = ACTIONS(5423), + [anon_sym_DASH] = ACTIONS(5421), + [anon_sym_PLUS] = ACTIONS(5421), + [anon_sym_STAR] = ACTIONS(5421), + [anon_sym_SLASH] = ACTIONS(5421), + [anon_sym_PERCENT] = ACTIONS(5421), + [anon_sym_PIPE_PIPE] = ACTIONS(5423), + [anon_sym_AMP_AMP] = ACTIONS(5423), + [anon_sym_PIPE] = ACTIONS(5421), + [anon_sym_CARET] = ACTIONS(5421), + [anon_sym_AMP] = ACTIONS(5421), + [anon_sym_EQ_EQ] = ACTIONS(5423), + [anon_sym_BANG_EQ] = ACTIONS(5423), + [anon_sym_GT] = ACTIONS(5421), + [anon_sym_GT_EQ] = ACTIONS(5421), + [anon_sym_LT_EQ] = ACTIONS(5421), + [anon_sym_LT] = ACTIONS(5421), + [anon_sym_LT_LT] = ACTIONS(5421), + [anon_sym_GT_GT] = ACTIONS(5421), + [anon_sym___extension__] = ACTIONS(5423), + [anon_sym___attribute__] = ACTIONS(5423), + [anon_sym_COLON_COLON] = ACTIONS(5423), + [anon_sym_LBRACE] = ACTIONS(5423), + [anon_sym_LBRACK] = ACTIONS(5423), + [anon_sym_EQ] = ACTIONS(5421), + [anon_sym_const] = ACTIONS(5421), + [anon_sym_constexpr] = ACTIONS(5423), + [anon_sym_volatile] = ACTIONS(5423), + [anon_sym_restrict] = ACTIONS(5423), + [anon_sym___restrict__] = ACTIONS(5423), + [anon_sym__Atomic] = ACTIONS(5423), + [anon_sym__Noreturn] = ACTIONS(5423), + [anon_sym_noreturn] = ACTIONS(5423), + [anon_sym_mutable] = ACTIONS(5423), + [anon_sym_constinit] = ACTIONS(5423), + [anon_sym_consteval] = ACTIONS(5423), + [anon_sym_COLON] = ACTIONS(5421), + [anon_sym_QMARK] = ACTIONS(5423), + [anon_sym_STAR_EQ] = ACTIONS(5423), + [anon_sym_SLASH_EQ] = ACTIONS(5423), + [anon_sym_PERCENT_EQ] = ACTIONS(5423), + [anon_sym_PLUS_EQ] = ACTIONS(5423), + [anon_sym_DASH_EQ] = ACTIONS(5423), + [anon_sym_LT_LT_EQ] = ACTIONS(5423), + [anon_sym_GT_GT_EQ] = ACTIONS(5421), + [anon_sym_AMP_EQ] = ACTIONS(5423), + [anon_sym_CARET_EQ] = ACTIONS(5423), + [anon_sym_PIPE_EQ] = ACTIONS(5423), + [anon_sym_and_eq] = ACTIONS(5423), + [anon_sym_or_eq] = ACTIONS(5423), + [anon_sym_xor_eq] = ACTIONS(5423), + [anon_sym_LT_EQ_GT] = ACTIONS(5423), + [anon_sym_or] = ACTIONS(5421), + [anon_sym_and] = ACTIONS(5421), + [anon_sym_bitor] = ACTIONS(5423), + [anon_sym_xor] = ACTIONS(5421), + [anon_sym_bitand] = ACTIONS(5423), + [anon_sym_not_eq] = ACTIONS(5423), + [anon_sym_DASH_DASH] = ACTIONS(5423), + [anon_sym_PLUS_PLUS] = ACTIONS(5423), + [anon_sym_DOT] = ACTIONS(5421), + [anon_sym_DOT_STAR] = ACTIONS(5423), + [anon_sym_DASH_GT] = ACTIONS(5423), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5423), + [anon_sym_decltype] = ACTIONS(5423), + [anon_sym_final] = ACTIONS(5423), + [anon_sym_override] = ACTIONS(5423), + [anon_sym_GT2] = ACTIONS(5423), + }, + [1907] = { + [sym_string_literal] = STATE(2729), + [sym_template_argument_list] = STATE(4089), + [sym_raw_string_literal] = STATE(2729), + [sym_identifier] = ACTIONS(4773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [aux_sym_preproc_if_token2] = ACTIONS(4765), + [aux_sym_preproc_else_token1] = ACTIONS(4765), + [aux_sym_preproc_elif_token1] = ACTIONS(4773), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4765), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4765), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4773), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4773), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(5715), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_EQ] = ACTIONS(5718), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(5720), + [anon_sym_SLASH_EQ] = ACTIONS(5720), + [anon_sym_PERCENT_EQ] = ACTIONS(5720), + [anon_sym_PLUS_EQ] = ACTIONS(5720), + [anon_sym_DASH_EQ] = ACTIONS(5720), + [anon_sym_LT_LT_EQ] = ACTIONS(5720), + [anon_sym_GT_GT_EQ] = ACTIONS(5720), + [anon_sym_AMP_EQ] = ACTIONS(5720), + [anon_sym_CARET_EQ] = ACTIONS(5720), + [anon_sym_PIPE_EQ] = ACTIONS(5720), + [anon_sym_and_eq] = ACTIONS(5718), + [anon_sym_or_eq] = ACTIONS(5718), + [anon_sym_xor_eq] = ACTIONS(5718), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4773), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4773), + [anon_sym_not_eq] = ACTIONS(4773), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + }, + [1908] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5431), + [anon_sym_COMMA] = ACTIONS(5431), + [anon_sym_LPAREN2] = ACTIONS(5431), + [anon_sym_DASH] = ACTIONS(5429), + [anon_sym_PLUS] = ACTIONS(5429), + [anon_sym_STAR] = ACTIONS(5429), + [anon_sym_SLASH] = ACTIONS(5429), + [anon_sym_PERCENT] = ACTIONS(5429), + [anon_sym_PIPE_PIPE] = ACTIONS(5431), + [anon_sym_AMP_AMP] = ACTIONS(5431), + [anon_sym_PIPE] = ACTIONS(5429), + [anon_sym_CARET] = ACTIONS(5429), + [anon_sym_AMP] = ACTIONS(5429), + [anon_sym_EQ_EQ] = ACTIONS(5431), + [anon_sym_BANG_EQ] = ACTIONS(5431), + [anon_sym_GT] = ACTIONS(5429), + [anon_sym_GT_EQ] = ACTIONS(5429), + [anon_sym_LT_EQ] = ACTIONS(5429), + [anon_sym_LT] = ACTIONS(5429), + [anon_sym_LT_LT] = ACTIONS(5429), + [anon_sym_GT_GT] = ACTIONS(5429), + [anon_sym___extension__] = ACTIONS(5431), + [anon_sym___attribute__] = ACTIONS(5431), + [anon_sym_COLON_COLON] = ACTIONS(5431), + [anon_sym_LBRACE] = ACTIONS(5431), + [anon_sym_LBRACK] = ACTIONS(5431), + [anon_sym_EQ] = ACTIONS(5429), + [anon_sym_const] = ACTIONS(5429), + [anon_sym_constexpr] = ACTIONS(5431), + [anon_sym_volatile] = ACTIONS(5431), + [anon_sym_restrict] = ACTIONS(5431), + [anon_sym___restrict__] = ACTIONS(5431), + [anon_sym__Atomic] = ACTIONS(5431), + [anon_sym__Noreturn] = ACTIONS(5431), + [anon_sym_noreturn] = ACTIONS(5431), + [anon_sym_mutable] = ACTIONS(5431), + [anon_sym_constinit] = ACTIONS(5431), + [anon_sym_consteval] = ACTIONS(5431), + [anon_sym_COLON] = ACTIONS(5429), + [anon_sym_QMARK] = ACTIONS(5431), + [anon_sym_STAR_EQ] = ACTIONS(5431), + [anon_sym_SLASH_EQ] = ACTIONS(5431), + [anon_sym_PERCENT_EQ] = ACTIONS(5431), + [anon_sym_PLUS_EQ] = ACTIONS(5431), + [anon_sym_DASH_EQ] = ACTIONS(5431), + [anon_sym_LT_LT_EQ] = ACTIONS(5431), + [anon_sym_GT_GT_EQ] = ACTIONS(5429), + [anon_sym_AMP_EQ] = ACTIONS(5431), + [anon_sym_CARET_EQ] = ACTIONS(5431), + [anon_sym_PIPE_EQ] = ACTIONS(5431), + [anon_sym_and_eq] = ACTIONS(5431), + [anon_sym_or_eq] = ACTIONS(5431), + [anon_sym_xor_eq] = ACTIONS(5431), + [anon_sym_LT_EQ_GT] = ACTIONS(5431), + [anon_sym_or] = ACTIONS(5429), + [anon_sym_and] = ACTIONS(5429), + [anon_sym_bitor] = ACTIONS(5431), + [anon_sym_xor] = ACTIONS(5429), + [anon_sym_bitand] = ACTIONS(5431), + [anon_sym_not_eq] = ACTIONS(5431), + [anon_sym_DASH_DASH] = ACTIONS(5431), + [anon_sym_PLUS_PLUS] = ACTIONS(5431), + [anon_sym_DOT] = ACTIONS(5429), + [anon_sym_DOT_STAR] = ACTIONS(5431), + [anon_sym_DASH_GT] = ACTIONS(5431), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5431), + [anon_sym_decltype] = ACTIONS(5431), + [anon_sym_final] = ACTIONS(5431), + [anon_sym_override] = ACTIONS(5431), + [anon_sym_GT2] = ACTIONS(5431), + }, + [1909] = { + [sym_identifier] = ACTIONS(2355), + [aux_sym_preproc_def_token1] = ACTIONS(2355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2353), + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2355), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2355), + [sym_preproc_directive] = ACTIONS(2355), + [anon_sym_LPAREN2] = ACTIONS(2353), + [anon_sym_TILDE] = ACTIONS(2353), + [anon_sym_STAR] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(2353), + [anon_sym_AMP] = ACTIONS(2355), + [anon_sym___extension__] = ACTIONS(2355), + [anon_sym_typedef] = ACTIONS(2355), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym___attribute__] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(2353), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), + [anon_sym___declspec] = ACTIONS(2355), + [anon_sym___based] = ACTIONS(2355), + [anon_sym_signed] = ACTIONS(2355), + [anon_sym_unsigned] = ACTIONS(2355), + [anon_sym_long] = ACTIONS(2355), + [anon_sym_short] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_static] = ACTIONS(2355), + [anon_sym_register] = ACTIONS(2355), + [anon_sym_inline] = ACTIONS(2355), + [anon_sym___inline] = ACTIONS(2355), + [anon_sym___inline__] = ACTIONS(2355), + [anon_sym___forceinline] = ACTIONS(2355), + [anon_sym_thread_local] = ACTIONS(2355), + [anon_sym___thread] = ACTIONS(2355), + [anon_sym_const] = ACTIONS(2355), + [anon_sym_constexpr] = ACTIONS(2355), + [anon_sym_volatile] = ACTIONS(2355), + [anon_sym_restrict] = ACTIONS(2355), + [anon_sym___restrict__] = ACTIONS(2355), + [anon_sym__Atomic] = ACTIONS(2355), + [anon_sym__Noreturn] = ACTIONS(2355), + [anon_sym_noreturn] = ACTIONS(2355), + [anon_sym_mutable] = ACTIONS(2355), + [anon_sym_constinit] = ACTIONS(2355), + [anon_sym_consteval] = 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), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2355), + [anon_sym_decltype] = ACTIONS(2355), + [anon_sym_virtual] = ACTIONS(2355), + [anon_sym_alignas] = ACTIONS(2355), + [anon_sym_explicit] = ACTIONS(2355), + [anon_sym_typename] = ACTIONS(2355), + [anon_sym_template] = ACTIONS(2355), + [anon_sym_operator] = ACTIONS(2355), + [anon_sym_friend] = ACTIONS(2355), + [anon_sym_public] = ACTIONS(2355), + [anon_sym_private] = ACTIONS(2355), + [anon_sym_protected] = ACTIONS(2355), + [anon_sym_using] = ACTIONS(2355), + [anon_sym_static_assert] = ACTIONS(2355), + [anon_sym_catch] = ACTIONS(2355), + [sym_semgrep_metavar] = ACTIONS(2353), + }, + [1910] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5419), + [anon_sym_COMMA] = ACTIONS(5419), + [anon_sym_LPAREN2] = ACTIONS(5419), + [anon_sym_DASH] = ACTIONS(5417), + [anon_sym_PLUS] = ACTIONS(5417), + [anon_sym_STAR] = ACTIONS(5417), + [anon_sym_SLASH] = ACTIONS(5417), + [anon_sym_PERCENT] = ACTIONS(5417), + [anon_sym_PIPE_PIPE] = ACTIONS(5419), + [anon_sym_AMP_AMP] = ACTIONS(5419), + [anon_sym_PIPE] = ACTIONS(5417), + [anon_sym_CARET] = ACTIONS(5417), + [anon_sym_AMP] = ACTIONS(5417), + [anon_sym_EQ_EQ] = ACTIONS(5419), + [anon_sym_BANG_EQ] = ACTIONS(5419), + [anon_sym_GT] = ACTIONS(5417), + [anon_sym_GT_EQ] = ACTIONS(5417), + [anon_sym_LT_EQ] = ACTIONS(5417), + [anon_sym_LT] = ACTIONS(5417), + [anon_sym_LT_LT] = ACTIONS(5417), + [anon_sym_GT_GT] = ACTIONS(5417), + [anon_sym___extension__] = ACTIONS(5419), + [anon_sym___attribute__] = ACTIONS(5419), + [anon_sym_COLON_COLON] = ACTIONS(5419), + [anon_sym_LBRACE] = ACTIONS(5419), + [anon_sym_LBRACK] = ACTIONS(5419), + [anon_sym_EQ] = ACTIONS(5417), + [anon_sym_const] = ACTIONS(5417), + [anon_sym_constexpr] = ACTIONS(5419), + [anon_sym_volatile] = ACTIONS(5419), + [anon_sym_restrict] = ACTIONS(5419), + [anon_sym___restrict__] = ACTIONS(5419), + [anon_sym__Atomic] = ACTIONS(5419), + [anon_sym__Noreturn] = ACTIONS(5419), + [anon_sym_noreturn] = ACTIONS(5419), + [anon_sym_mutable] = ACTIONS(5419), + [anon_sym_constinit] = ACTIONS(5419), + [anon_sym_consteval] = ACTIONS(5419), + [anon_sym_COLON] = ACTIONS(5417), + [anon_sym_QMARK] = ACTIONS(5419), + [anon_sym_STAR_EQ] = ACTIONS(5419), + [anon_sym_SLASH_EQ] = ACTIONS(5419), + [anon_sym_PERCENT_EQ] = ACTIONS(5419), + [anon_sym_PLUS_EQ] = ACTIONS(5419), + [anon_sym_DASH_EQ] = ACTIONS(5419), + [anon_sym_LT_LT_EQ] = ACTIONS(5419), + [anon_sym_GT_GT_EQ] = ACTIONS(5417), + [anon_sym_AMP_EQ] = ACTIONS(5419), + [anon_sym_CARET_EQ] = ACTIONS(5419), + [anon_sym_PIPE_EQ] = ACTIONS(5419), + [anon_sym_and_eq] = ACTIONS(5419), + [anon_sym_or_eq] = ACTIONS(5419), + [anon_sym_xor_eq] = ACTIONS(5419), + [anon_sym_LT_EQ_GT] = ACTIONS(5419), + [anon_sym_or] = ACTIONS(5417), + [anon_sym_and] = ACTIONS(5417), + [anon_sym_bitor] = ACTIONS(5419), + [anon_sym_xor] = ACTIONS(5417), + [anon_sym_bitand] = ACTIONS(5419), + [anon_sym_not_eq] = ACTIONS(5419), + [anon_sym_DASH_DASH] = ACTIONS(5419), + [anon_sym_PLUS_PLUS] = ACTIONS(5419), + [anon_sym_DOT] = ACTIONS(5417), + [anon_sym_DOT_STAR] = ACTIONS(5419), + [anon_sym_DASH_GT] = ACTIONS(5419), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5419), + [anon_sym_decltype] = ACTIONS(5419), + [anon_sym_final] = ACTIONS(5419), + [anon_sym_override] = ACTIONS(5419), + [anon_sym_GT2] = ACTIONS(5419), }, [1911] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(5181), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_parameter_declaration] = STATE(8919), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_optional_parameter_declaration] = STATE(8919), - [sym_variadic_parameter_declaration] = STATE(8919), - [sym_template_type] = STATE(4853), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(4837), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5548), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5712), - [anon_sym_RPAREN] = ACTIONS(5714), + [sym_identifier] = ACTIONS(2359), + [aux_sym_preproc_def_token1] = ACTIONS(2359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2357), + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2359), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2359), + [sym_preproc_directive] = ACTIONS(2359), + [anon_sym_LPAREN2] = ACTIONS(2357), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_STAR] = ACTIONS(2357), + [anon_sym_AMP_AMP] = ACTIONS(2357), + [anon_sym_AMP] = ACTIONS(2359), + [anon_sym___extension__] = ACTIONS(2359), + [anon_sym_typedef] = ACTIONS(2359), + [anon_sym_extern] = ACTIONS(2359), + [anon_sym___attribute__] = ACTIONS(2359), + [anon_sym_COLON_COLON] = ACTIONS(2357), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2357), + [anon_sym___declspec] = ACTIONS(2359), + [anon_sym___based] = ACTIONS(2359), + [anon_sym_signed] = ACTIONS(2359), + [anon_sym_unsigned] = ACTIONS(2359), + [anon_sym_long] = ACTIONS(2359), + [anon_sym_short] = ACTIONS(2359), + [anon_sym_LBRACK] = ACTIONS(2359), + [anon_sym_static] = ACTIONS(2359), + [anon_sym_register] = ACTIONS(2359), + [anon_sym_inline] = ACTIONS(2359), + [anon_sym___inline] = ACTIONS(2359), + [anon_sym___inline__] = ACTIONS(2359), + [anon_sym___forceinline] = ACTIONS(2359), + [anon_sym_thread_local] = ACTIONS(2359), + [anon_sym___thread] = ACTIONS(2359), + [anon_sym_const] = ACTIONS(2359), + [anon_sym_constexpr] = ACTIONS(2359), + [anon_sym_volatile] = ACTIONS(2359), + [anon_sym_restrict] = ACTIONS(2359), + [anon_sym___restrict__] = ACTIONS(2359), + [anon_sym__Atomic] = ACTIONS(2359), + [anon_sym__Noreturn] = ACTIONS(2359), + [anon_sym_noreturn] = ACTIONS(2359), + [anon_sym_mutable] = ACTIONS(2359), + [anon_sym_constinit] = ACTIONS(2359), + [anon_sym_consteval] = 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), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2359), + [anon_sym_decltype] = ACTIONS(2359), + [anon_sym_virtual] = ACTIONS(2359), + [anon_sym_alignas] = ACTIONS(2359), + [anon_sym_explicit] = ACTIONS(2359), + [anon_sym_typename] = ACTIONS(2359), + [anon_sym_template] = ACTIONS(2359), + [anon_sym_operator] = ACTIONS(2359), + [anon_sym_friend] = ACTIONS(2359), + [anon_sym_public] = ACTIONS(2359), + [anon_sym_private] = ACTIONS(2359), + [anon_sym_protected] = ACTIONS(2359), + [anon_sym_using] = ACTIONS(2359), + [anon_sym_static_assert] = ACTIONS(2359), + [anon_sym_catch] = ACTIONS(2359), + [sym_semgrep_metavar] = ACTIONS(2357), + }, + [1912] = { + [sym_string_literal] = STATE(1843), + [sym_template_argument_list] = STATE(2485), + [sym_raw_string_literal] = STATE(1843), + [ts_builtin_sym_end] = ACTIONS(4765), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_RPAREN] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4765), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4773), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4773), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(5450), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_SEMI] = ACTIONS(4765), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_RBRACE] = ACTIONS(4765), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_RBRACK] = ACTIONS(4765), + [anon_sym_EQ] = ACTIONS(4773), + [anon_sym_COLON] = ACTIONS(4773), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4765), + [anon_sym_SLASH_EQ] = ACTIONS(4765), + [anon_sym_PERCENT_EQ] = ACTIONS(4765), + [anon_sym_PLUS_EQ] = ACTIONS(4765), + [anon_sym_DASH_EQ] = ACTIONS(4765), + [anon_sym_LT_LT_EQ] = ACTIONS(4765), + [anon_sym_GT_GT_EQ] = ACTIONS(4765), + [anon_sym_AMP_EQ] = ACTIONS(4765), + [anon_sym_CARET_EQ] = ACTIONS(4765), + [anon_sym_PIPE_EQ] = ACTIONS(4765), + [anon_sym_and_eq] = ACTIONS(4765), + [anon_sym_or_eq] = ACTIONS(4765), + [anon_sym_xor_eq] = ACTIONS(4765), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4765), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4765), + [anon_sym_not_eq] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(2341), + [anon_sym_u_DQUOTE] = ACTIONS(2341), + [anon_sym_U_DQUOTE] = ACTIONS(2341), + [anon_sym_u8_DQUOTE] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2345), + [anon_sym_LR_DQUOTE] = ACTIONS(2345), + [anon_sym_uR_DQUOTE] = ACTIONS(2345), + [anon_sym_UR_DQUOTE] = ACTIONS(2345), + [anon_sym_u8R_DQUOTE] = ACTIONS(2345), + }, + [1913] = { + [sym_string_literal] = STATE(1843), + [sym_template_argument_list] = STATE(2485), + [sym_raw_string_literal] = STATE(1843), + [sym_identifier] = ACTIONS(4773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [aux_sym_preproc_if_token2] = ACTIONS(4765), + [aux_sym_preproc_else_token1] = ACTIONS(4765), + [aux_sym_preproc_elif_token1] = ACTIONS(4773), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4765), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4765), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4773), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4773), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(5722), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_EQ] = ACTIONS(4773), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4765), + [anon_sym_SLASH_EQ] = ACTIONS(4765), + [anon_sym_PERCENT_EQ] = ACTIONS(4765), + [anon_sym_PLUS_EQ] = ACTIONS(4765), + [anon_sym_DASH_EQ] = ACTIONS(4765), + [anon_sym_LT_LT_EQ] = ACTIONS(4765), + [anon_sym_GT_GT_EQ] = ACTIONS(4765), + [anon_sym_AMP_EQ] = ACTIONS(4765), + [anon_sym_CARET_EQ] = ACTIONS(4765), + [anon_sym_PIPE_EQ] = ACTIONS(4765), + [anon_sym_and_eq] = ACTIONS(4773), + [anon_sym_or_eq] = ACTIONS(4773), + [anon_sym_xor_eq] = ACTIONS(4773), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4773), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4773), + [anon_sym_not_eq] = ACTIONS(4773), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(2341), + [anon_sym_u_DQUOTE] = ACTIONS(2341), + [anon_sym_U_DQUOTE] = ACTIONS(2341), + [anon_sym_u8_DQUOTE] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2345), + [anon_sym_LR_DQUOTE] = ACTIONS(2345), + [anon_sym_uR_DQUOTE] = ACTIONS(2345), + [anon_sym_UR_DQUOTE] = ACTIONS(2345), + [anon_sym_u8R_DQUOTE] = ACTIONS(2345), + }, + [1914] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5445), + [anon_sym_COMMA] = ACTIONS(5445), + [anon_sym_RPAREN] = ACTIONS(5435), + [anon_sym_LPAREN2] = ACTIONS(5435), + [anon_sym_DASH] = ACTIONS(5440), + [anon_sym_PLUS] = ACTIONS(5440), + [anon_sym_STAR] = ACTIONS(5442), + [anon_sym_SLASH] = ACTIONS(5440), + [anon_sym_PERCENT] = ACTIONS(5440), + [anon_sym_PIPE_PIPE] = ACTIONS(5445), + [anon_sym_AMP_AMP] = ACTIONS(5435), + [anon_sym_PIPE] = ACTIONS(5440), + [anon_sym_CARET] = ACTIONS(5440), + [anon_sym_AMP] = ACTIONS(5442), + [anon_sym_EQ_EQ] = ACTIONS(5445), + [anon_sym_BANG_EQ] = ACTIONS(5445), + [anon_sym_GT] = ACTIONS(5440), + [anon_sym_GT_EQ] = ACTIONS(5445), + [anon_sym_LT_EQ] = ACTIONS(5440), + [anon_sym_LT] = ACTIONS(5440), + [anon_sym_LT_LT] = ACTIONS(5440), + [anon_sym_GT_GT] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5445), + [anon_sym___extension__] = ACTIONS(5438), + [anon_sym_COLON_COLON] = ACTIONS(5438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5445), + [anon_sym_LBRACE] = ACTIONS(5438), + [anon_sym_LBRACK] = ACTIONS(5442), + [anon_sym_EQ] = ACTIONS(5440), + [anon_sym_const] = ACTIONS(5433), + [anon_sym_constexpr] = ACTIONS(5438), + [anon_sym_volatile] = ACTIONS(5438), + [anon_sym_restrict] = ACTIONS(5438), + [anon_sym___restrict__] = ACTIONS(5438), + [anon_sym__Atomic] = ACTIONS(5438), + [anon_sym__Noreturn] = ACTIONS(5438), + [anon_sym_noreturn] = ACTIONS(5438), + [anon_sym_mutable] = ACTIONS(5438), + [anon_sym_constinit] = ACTIONS(5438), + [anon_sym_consteval] = ACTIONS(5438), + [anon_sym_QMARK] = ACTIONS(5445), + [anon_sym_STAR_EQ] = ACTIONS(5445), + [anon_sym_SLASH_EQ] = ACTIONS(5445), + [anon_sym_PERCENT_EQ] = ACTIONS(5445), + [anon_sym_PLUS_EQ] = ACTIONS(5445), + [anon_sym_DASH_EQ] = ACTIONS(5445), + [anon_sym_LT_LT_EQ] = ACTIONS(5445), + [anon_sym_GT_GT_EQ] = ACTIONS(5445), + [anon_sym_AMP_EQ] = ACTIONS(5445), + [anon_sym_CARET_EQ] = ACTIONS(5445), + [anon_sym_PIPE_EQ] = ACTIONS(5445), + [anon_sym_and_eq] = ACTIONS(5445), + [anon_sym_or_eq] = ACTIONS(5445), + [anon_sym_xor_eq] = ACTIONS(5445), + [anon_sym_LT_EQ_GT] = ACTIONS(5445), + [anon_sym_or] = ACTIONS(5440), + [anon_sym_and] = ACTIONS(5440), + [anon_sym_bitor] = ACTIONS(5445), + [anon_sym_xor] = ACTIONS(5440), + [anon_sym_bitand] = ACTIONS(5445), + [anon_sym_not_eq] = ACTIONS(5445), + [anon_sym_DASH_DASH] = ACTIONS(5445), + [anon_sym_PLUS_PLUS] = ACTIONS(5445), + [anon_sym_DOT] = ACTIONS(5440), + [anon_sym_DOT_STAR] = ACTIONS(5445), + [anon_sym_DASH_GT] = ACTIONS(5440), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5438), + [anon_sym_decltype] = ACTIONS(5438), + [anon_sym_DASH_GT_STAR] = ACTIONS(5445), + [sym_semgrep_metavar] = ACTIONS(5438), + }, + [1915] = { + [sym_declaration_modifiers] = STATE(2412), + [sym_declaration_specifiers] = STATE(4711), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_parameter_declaration] = STATE(8424), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_optional_parameter_declaration] = STATE(8424), + [sym_variadic_parameter_declaration] = STATE(8424), + [sym_template_type] = STATE(3324), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7569), + [sym_qualified_type_identifier] = STATE(4526), + [aux_sym_declaration_specifiers_repeat1] = STATE(2412), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5453), + [anon_sym_RPAREN] = ACTIONS(2133), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), @@ -292939,201 +281913,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(2119), + [anon_sym_class] = ACTIONS(2121), + [anon_sym_struct] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2125), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - }, - [1912] = { - [sym_catch_clause] = STATE(1928), - [aux_sym_constructor_try_statement_repeat1] = STATE(1928), - [sym_identifier] = ACTIONS(3057), - [aux_sym_preproc_def_token1] = ACTIONS(3057), - [aux_sym_preproc_if_token1] = ACTIONS(3057), - [aux_sym_preproc_if_token2] = ACTIONS(3057), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3057), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3057), - [aux_sym_preproc_else_token1] = ACTIONS(3057), - [aux_sym_preproc_elif_token1] = ACTIONS(3057), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3057), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3057), - [sym_preproc_directive] = ACTIONS(3057), - [anon_sym_LPAREN2] = ACTIONS(3059), - [anon_sym_TILDE] = ACTIONS(3059), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_AMP_AMP] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym___extension__] = ACTIONS(3057), - [anon_sym_typedef] = ACTIONS(3057), - [anon_sym_extern] = ACTIONS(3057), - [anon_sym___attribute__] = ACTIONS(3057), - [anon_sym_COLON_COLON] = ACTIONS(3059), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3059), - [anon_sym___declspec] = ACTIONS(3057), - [anon_sym___based] = ACTIONS(3057), - [anon_sym_signed] = ACTIONS(3057), - [anon_sym_unsigned] = ACTIONS(3057), - [anon_sym_long] = ACTIONS(3057), - [anon_sym_short] = ACTIONS(3057), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_static] = ACTIONS(3057), - [anon_sym_register] = ACTIONS(3057), - [anon_sym_inline] = ACTIONS(3057), - [anon_sym___inline] = ACTIONS(3057), - [anon_sym___inline__] = ACTIONS(3057), - [anon_sym___forceinline] = ACTIONS(3057), - [anon_sym_thread_local] = ACTIONS(3057), - [anon_sym___thread] = ACTIONS(3057), - [anon_sym_const] = ACTIONS(3057), - [anon_sym_constexpr] = ACTIONS(3057), - [anon_sym_volatile] = ACTIONS(3057), - [anon_sym_restrict] = ACTIONS(3057), - [anon_sym___restrict__] = ACTIONS(3057), - [anon_sym__Atomic] = ACTIONS(3057), - [anon_sym__Noreturn] = ACTIONS(3057), - [anon_sym_noreturn] = ACTIONS(3057), - [anon_sym_mutable] = ACTIONS(3057), - [anon_sym_constinit] = ACTIONS(3057), - [anon_sym_consteval] = ACTIONS(3057), - [sym_primitive_type] = ACTIONS(3057), - [anon_sym_enum] = ACTIONS(3057), - [anon_sym_class] = ACTIONS(3057), - [anon_sym_struct] = ACTIONS(3057), - [anon_sym_union] = ACTIONS(3057), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3057), - [anon_sym_decltype] = ACTIONS(3057), - [anon_sym_virtual] = ACTIONS(3057), - [anon_sym_alignas] = ACTIONS(3057), - [anon_sym_explicit] = ACTIONS(3057), - [anon_sym_typename] = ACTIONS(3057), - [anon_sym_template] = ACTIONS(3057), - [anon_sym_operator] = ACTIONS(3057), - [anon_sym_friend] = ACTIONS(3057), - [anon_sym_public] = ACTIONS(3057), - [anon_sym_private] = ACTIONS(3057), - [anon_sym_protected] = ACTIONS(3057), - [anon_sym_using] = ACTIONS(3057), - [anon_sym_static_assert] = ACTIONS(3057), - [anon_sym_catch] = ACTIONS(5716), + [anon_sym_typename] = ACTIONS(2127), + [anon_sym_template] = ACTIONS(1534), }, - [1913] = { - [sym_catch_clause] = STATE(1928), - [aux_sym_constructor_try_statement_repeat1] = STATE(1928), - [sym_identifier] = ACTIONS(3074), - [aux_sym_preproc_def_token1] = ACTIONS(3074), - [aux_sym_preproc_if_token1] = ACTIONS(3074), - [aux_sym_preproc_if_token2] = ACTIONS(3074), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3074), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3074), - [aux_sym_preproc_else_token1] = ACTIONS(3074), - [aux_sym_preproc_elif_token1] = ACTIONS(3074), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3074), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3074), - [sym_preproc_directive] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3076), - [anon_sym_TILDE] = ACTIONS(3076), - [anon_sym_STAR] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym___extension__] = ACTIONS(3074), - [anon_sym_typedef] = ACTIONS(3074), - [anon_sym_extern] = ACTIONS(3074), - [anon_sym___attribute__] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3076), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3076), - [anon_sym___declspec] = ACTIONS(3074), - [anon_sym___based] = ACTIONS(3074), - [anon_sym_signed] = ACTIONS(3074), - [anon_sym_unsigned] = ACTIONS(3074), - [anon_sym_long] = ACTIONS(3074), - [anon_sym_short] = ACTIONS(3074), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_static] = ACTIONS(3074), - [anon_sym_register] = ACTIONS(3074), - [anon_sym_inline] = ACTIONS(3074), - [anon_sym___inline] = ACTIONS(3074), - [anon_sym___inline__] = ACTIONS(3074), - [anon_sym___forceinline] = ACTIONS(3074), - [anon_sym_thread_local] = ACTIONS(3074), - [anon_sym___thread] = ACTIONS(3074), - [anon_sym_const] = ACTIONS(3074), - [anon_sym_constexpr] = ACTIONS(3074), - [anon_sym_volatile] = ACTIONS(3074), - [anon_sym_restrict] = ACTIONS(3074), - [anon_sym___restrict__] = ACTIONS(3074), - [anon_sym__Atomic] = ACTIONS(3074), - [anon_sym__Noreturn] = ACTIONS(3074), - [anon_sym_noreturn] = ACTIONS(3074), - [anon_sym_mutable] = ACTIONS(3074), - [anon_sym_constinit] = ACTIONS(3074), - [anon_sym_consteval] = ACTIONS(3074), - [sym_primitive_type] = ACTIONS(3074), - [anon_sym_enum] = ACTIONS(3074), - [anon_sym_class] = ACTIONS(3074), - [anon_sym_struct] = ACTIONS(3074), - [anon_sym_union] = ACTIONS(3074), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3074), - [anon_sym_decltype] = ACTIONS(3074), - [anon_sym_virtual] = ACTIONS(3074), - [anon_sym_alignas] = ACTIONS(3074), - [anon_sym_explicit] = ACTIONS(3074), - [anon_sym_typename] = ACTIONS(3074), - [anon_sym_template] = ACTIONS(3074), - [anon_sym_operator] = ACTIONS(3074), - [anon_sym_friend] = ACTIONS(3074), - [anon_sym_public] = ACTIONS(3074), - [anon_sym_private] = ACTIONS(3074), - [anon_sym_protected] = ACTIONS(3074), - [anon_sym_using] = ACTIONS(3074), - [anon_sym_static_assert] = ACTIONS(3074), - [anon_sym_catch] = ACTIONS(5716), + [1916] = { + [sym_type_qualifier] = STATE(1916), + [aux_sym_type_definition_type_repeat1] = STATE(1916), + [sym_identifier] = ACTIONS(5725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5727), + [anon_sym_LPAREN2] = ACTIONS(5727), + [anon_sym_BANG] = ACTIONS(5727), + [anon_sym_TILDE] = ACTIONS(5727), + [anon_sym_DASH] = ACTIONS(5725), + [anon_sym_PLUS] = ACTIONS(5725), + [anon_sym_STAR] = ACTIONS(5727), + [anon_sym_AMP] = ACTIONS(5727), + [anon_sym___extension__] = ACTIONS(5729), + [anon_sym_COLON_COLON] = ACTIONS(5727), + [anon_sym_LBRACK] = ACTIONS(5727), + [anon_sym_RBRACK] = ACTIONS(5727), + [anon_sym_const] = ACTIONS(5729), + [anon_sym_constexpr] = ACTIONS(5729), + [anon_sym_volatile] = ACTIONS(5729), + [anon_sym_restrict] = ACTIONS(5729), + [anon_sym___restrict__] = ACTIONS(5729), + [anon_sym__Atomic] = ACTIONS(5729), + [anon_sym__Noreturn] = ACTIONS(5729), + [anon_sym_noreturn] = ACTIONS(5729), + [anon_sym_mutable] = ACTIONS(5729), + [anon_sym_constinit] = ACTIONS(5729), + [anon_sym_consteval] = ACTIONS(5729), + [sym_primitive_type] = ACTIONS(5725), + [anon_sym_not] = ACTIONS(5725), + [anon_sym_compl] = ACTIONS(5725), + [anon_sym_DASH_DASH] = ACTIONS(5727), + [anon_sym_PLUS_PLUS] = ACTIONS(5727), + [anon_sym_sizeof] = ACTIONS(5725), + [anon_sym___alignof__] = ACTIONS(5725), + [anon_sym___alignof] = ACTIONS(5725), + [anon_sym__alignof] = ACTIONS(5725), + [anon_sym_alignof] = ACTIONS(5725), + [anon_sym__Alignof] = ACTIONS(5725), + [anon_sym_offsetof] = ACTIONS(5725), + [anon_sym__Generic] = ACTIONS(5725), + [anon_sym_asm] = ACTIONS(5725), + [anon_sym___asm__] = ACTIONS(5725), + [sym_number_literal] = ACTIONS(5727), + [anon_sym_L_SQUOTE] = ACTIONS(5727), + [anon_sym_u_SQUOTE] = ACTIONS(5727), + [anon_sym_U_SQUOTE] = ACTIONS(5727), + [anon_sym_u8_SQUOTE] = ACTIONS(5727), + [anon_sym_SQUOTE] = ACTIONS(5727), + [anon_sym_L_DQUOTE] = ACTIONS(5727), + [anon_sym_u_DQUOTE] = ACTIONS(5727), + [anon_sym_U_DQUOTE] = ACTIONS(5727), + [anon_sym_u8_DQUOTE] = ACTIONS(5727), + [anon_sym_DQUOTE] = ACTIONS(5727), + [sym_true] = ACTIONS(5725), + [sym_false] = ACTIONS(5725), + [anon_sym_NULL] = ACTIONS(5725), + [anon_sym_nullptr] = ACTIONS(5725), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(5725), + [anon_sym_template] = ACTIONS(5725), + [anon_sym_delete] = ACTIONS(5725), + [anon_sym_R_DQUOTE] = ACTIONS(5727), + [anon_sym_LR_DQUOTE] = ACTIONS(5727), + [anon_sym_uR_DQUOTE] = ACTIONS(5727), + [anon_sym_UR_DQUOTE] = ACTIONS(5727), + [anon_sym_u8R_DQUOTE] = ACTIONS(5727), + [anon_sym_co_await] = ACTIONS(5725), + [anon_sym_new] = ACTIONS(5725), + [anon_sym_requires] = ACTIONS(5725), + [sym_this] = ACTIONS(5725), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(5727), + [sym_semgrep_named_ellipsis] = ACTIONS(5727), }, - [1914] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(5181), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_parameter_declaration] = STATE(8827), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_optional_parameter_declaration] = STATE(8827), - [sym_variadic_parameter_declaration] = STATE(8827), - [sym_template_type] = STATE(4853), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(4837), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5548), - [anon_sym_RPAREN] = ACTIONS(2123), + [1917] = { + [sym_declaration_modifiers] = STATE(2412), + [sym_declaration_specifiers] = STATE(4711), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_parameter_declaration] = STATE(8836), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_optional_parameter_declaration] = STATE(8836), + [sym_variadic_parameter_declaration] = STATE(8836), + [sym_template_type] = STATE(3324), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7569), + [sym_qualified_type_identifier] = STATE(4526), + [aux_sym_declaration_specifiers_repeat1] = STATE(2412), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5732), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), @@ -293158,201 +282059,418 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(2119), + [anon_sym_class] = ACTIONS(2121), + [anon_sym_struct] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2125), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_typename] = ACTIONS(2127), + [anon_sym_template] = ACTIONS(1534), }, - [1915] = { - [sym_string_literal] = STATE(1885), - [sym_template_argument_list] = STATE(2898), - [sym_raw_string_literal] = STATE(1885), - [ts_builtin_sym_end] = ACTIONS(4829), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_RPAREN] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(4829), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(5532), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_RBRACE] = ACTIONS(4829), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_RBRACK] = ACTIONS(4829), - [anon_sym_EQ] = ACTIONS(4837), - [anon_sym_COLON] = ACTIONS(4837), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4829), - [anon_sym_SLASH_EQ] = ACTIONS(4829), - [anon_sym_PERCENT_EQ] = ACTIONS(4829), - [anon_sym_PLUS_EQ] = ACTIONS(4829), - [anon_sym_DASH_EQ] = ACTIONS(4829), - [anon_sym_LT_LT_EQ] = ACTIONS(4829), - [anon_sym_GT_GT_EQ] = ACTIONS(4829), - [anon_sym_AMP_EQ] = ACTIONS(4829), - [anon_sym_CARET_EQ] = ACTIONS(4829), - [anon_sym_PIPE_EQ] = ACTIONS(4829), - [anon_sym_and_eq] = ACTIONS(4829), - [anon_sym_or_eq] = ACTIONS(4829), - [anon_sym_xor_eq] = ACTIONS(4829), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4829), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4829), - [anon_sym_not_eq] = ACTIONS(4829), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(2307), - [anon_sym_u_DQUOTE] = ACTIONS(2307), - [anon_sym_U_DQUOTE] = ACTIONS(2307), - [anon_sym_u8_DQUOTE] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(2317), - [anon_sym_LR_DQUOTE] = ACTIONS(2317), - [anon_sym_uR_DQUOTE] = ACTIONS(2317), - [anon_sym_UR_DQUOTE] = ACTIONS(2317), - [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [1918] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5396), + [anon_sym_COMMA] = ACTIONS(5396), + [anon_sym_LPAREN2] = ACTIONS(5396), + [anon_sym_DASH] = ACTIONS(5394), + [anon_sym_PLUS] = ACTIONS(5394), + [anon_sym_STAR] = ACTIONS(5394), + [anon_sym_SLASH] = ACTIONS(5394), + [anon_sym_PERCENT] = ACTIONS(5394), + [anon_sym_PIPE_PIPE] = ACTIONS(5396), + [anon_sym_AMP_AMP] = ACTIONS(5396), + [anon_sym_PIPE] = ACTIONS(5394), + [anon_sym_CARET] = ACTIONS(5394), + [anon_sym_AMP] = ACTIONS(5394), + [anon_sym_EQ_EQ] = ACTIONS(5396), + [anon_sym_BANG_EQ] = ACTIONS(5396), + [anon_sym_GT] = ACTIONS(5394), + [anon_sym_GT_EQ] = ACTIONS(5394), + [anon_sym_LT_EQ] = ACTIONS(5394), + [anon_sym_LT] = ACTIONS(5394), + [anon_sym_LT_LT] = ACTIONS(5394), + [anon_sym_GT_GT] = ACTIONS(5394), + [anon_sym___extension__] = ACTIONS(5396), + [anon_sym___attribute__] = ACTIONS(5396), + [anon_sym_COLON_COLON] = ACTIONS(5396), + [anon_sym_LBRACE] = ACTIONS(5396), + [anon_sym_LBRACK] = ACTIONS(5396), + [anon_sym_EQ] = ACTIONS(5394), + [anon_sym_const] = ACTIONS(5394), + [anon_sym_constexpr] = ACTIONS(5396), + [anon_sym_volatile] = ACTIONS(5396), + [anon_sym_restrict] = ACTIONS(5396), + [anon_sym___restrict__] = ACTIONS(5396), + [anon_sym__Atomic] = ACTIONS(5396), + [anon_sym__Noreturn] = ACTIONS(5396), + [anon_sym_noreturn] = ACTIONS(5396), + [anon_sym_mutable] = ACTIONS(5396), + [anon_sym_constinit] = ACTIONS(5396), + [anon_sym_consteval] = ACTIONS(5396), + [anon_sym_COLON] = ACTIONS(5394), + [anon_sym_QMARK] = ACTIONS(5396), + [anon_sym_STAR_EQ] = ACTIONS(5396), + [anon_sym_SLASH_EQ] = ACTIONS(5396), + [anon_sym_PERCENT_EQ] = ACTIONS(5396), + [anon_sym_PLUS_EQ] = ACTIONS(5396), + [anon_sym_DASH_EQ] = ACTIONS(5396), + [anon_sym_LT_LT_EQ] = ACTIONS(5396), + [anon_sym_GT_GT_EQ] = ACTIONS(5394), + [anon_sym_AMP_EQ] = ACTIONS(5396), + [anon_sym_CARET_EQ] = ACTIONS(5396), + [anon_sym_PIPE_EQ] = ACTIONS(5396), + [anon_sym_and_eq] = ACTIONS(5396), + [anon_sym_or_eq] = ACTIONS(5396), + [anon_sym_xor_eq] = ACTIONS(5396), + [anon_sym_LT_EQ_GT] = ACTIONS(5396), + [anon_sym_or] = ACTIONS(5394), + [anon_sym_and] = ACTIONS(5394), + [anon_sym_bitor] = ACTIONS(5396), + [anon_sym_xor] = ACTIONS(5394), + [anon_sym_bitand] = ACTIONS(5396), + [anon_sym_not_eq] = ACTIONS(5396), + [anon_sym_DASH_DASH] = ACTIONS(5396), + [anon_sym_PLUS_PLUS] = ACTIONS(5396), + [anon_sym_DOT] = ACTIONS(5394), + [anon_sym_DOT_STAR] = ACTIONS(5396), + [anon_sym_DASH_GT] = ACTIONS(5396), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5396), + [anon_sym_decltype] = ACTIONS(5396), + [anon_sym_final] = ACTIONS(5396), + [anon_sym_override] = ACTIONS(5396), + [anon_sym_GT2] = ACTIONS(5396), }, - [1916] = { - [sym_string_literal] = STATE(2640), - [sym_template_argument_list] = STATE(5092), - [sym_raw_string_literal] = STATE(2640), - [sym_identifier] = ACTIONS(4837), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [aux_sym_preproc_if_token2] = ACTIONS(4829), - [aux_sym_preproc_else_token1] = ACTIONS(4829), - [aux_sym_preproc_elif_token1] = ACTIONS(4837), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4829), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(4829), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(5718), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_EQ] = ACTIONS(5721), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(5723), - [anon_sym_SLASH_EQ] = ACTIONS(5723), - [anon_sym_PERCENT_EQ] = ACTIONS(5723), - [anon_sym_PLUS_EQ] = ACTIONS(5723), - [anon_sym_DASH_EQ] = ACTIONS(5723), - [anon_sym_LT_LT_EQ] = ACTIONS(5723), - [anon_sym_GT_GT_EQ] = ACTIONS(5723), - [anon_sym_AMP_EQ] = ACTIONS(5723), - [anon_sym_CARET_EQ] = ACTIONS(5723), - [anon_sym_PIPE_EQ] = ACTIONS(5723), - [anon_sym_and_eq] = ACTIONS(5721), - [anon_sym_or_eq] = ACTIONS(5721), - [anon_sym_xor_eq] = ACTIONS(5721), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4837), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4837), - [anon_sym_not_eq] = ACTIONS(4837), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), + [1919] = { + [sym_template_argument_list] = STATE(1914), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5376), + [anon_sym_COMMA] = ACTIONS(5376), + [anon_sym_RPAREN] = ACTIONS(5378), + [anon_sym_LPAREN2] = ACTIONS(5378), + [anon_sym_DASH] = ACTIONS(5383), + [anon_sym_PLUS] = ACTIONS(5383), + [anon_sym_STAR] = ACTIONS(5385), + [anon_sym_SLASH] = ACTIONS(5383), + [anon_sym_PERCENT] = ACTIONS(5383), + [anon_sym_PIPE_PIPE] = ACTIONS(5376), + [anon_sym_AMP_AMP] = ACTIONS(5378), + [anon_sym_PIPE] = ACTIONS(5383), + [anon_sym_CARET] = ACTIONS(5383), + [anon_sym_AMP] = ACTIONS(5385), + [anon_sym_EQ_EQ] = ACTIONS(5376), + [anon_sym_BANG_EQ] = ACTIONS(5376), + [anon_sym_GT] = ACTIONS(5383), + [anon_sym_GT_EQ] = ACTIONS(5376), + [anon_sym_LT_EQ] = ACTIONS(5383), + [anon_sym_LT] = ACTIONS(5734), + [anon_sym_LT_LT] = ACTIONS(5383), + [anon_sym_GT_GT] = ACTIONS(5383), + [anon_sym___extension__] = ACTIONS(5381), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5376), + [anon_sym_LBRACE] = ACTIONS(5381), + [anon_sym_LBRACK] = ACTIONS(5385), + [anon_sym_EQ] = ACTIONS(5383), + [anon_sym_const] = ACTIONS(5374), + [anon_sym_constexpr] = ACTIONS(5381), + [anon_sym_volatile] = ACTIONS(5381), + [anon_sym_restrict] = ACTIONS(5381), + [anon_sym___restrict__] = ACTIONS(5381), + [anon_sym__Atomic] = ACTIONS(5381), + [anon_sym__Noreturn] = ACTIONS(5381), + [anon_sym_noreturn] = ACTIONS(5381), + [anon_sym_mutable] = ACTIONS(5381), + [anon_sym_constinit] = ACTIONS(5381), + [anon_sym_consteval] = ACTIONS(5381), + [anon_sym_QMARK] = ACTIONS(5376), + [anon_sym_STAR_EQ] = ACTIONS(5376), + [anon_sym_SLASH_EQ] = ACTIONS(5376), + [anon_sym_PERCENT_EQ] = ACTIONS(5376), + [anon_sym_PLUS_EQ] = ACTIONS(5376), + [anon_sym_DASH_EQ] = ACTIONS(5376), + [anon_sym_LT_LT_EQ] = ACTIONS(5376), + [anon_sym_GT_GT_EQ] = ACTIONS(5376), + [anon_sym_AMP_EQ] = ACTIONS(5376), + [anon_sym_CARET_EQ] = ACTIONS(5376), + [anon_sym_PIPE_EQ] = ACTIONS(5376), + [anon_sym_and_eq] = ACTIONS(5376), + [anon_sym_or_eq] = ACTIONS(5376), + [anon_sym_xor_eq] = ACTIONS(5376), + [anon_sym_LT_EQ_GT] = ACTIONS(5376), + [anon_sym_or] = ACTIONS(5383), + [anon_sym_and] = ACTIONS(5383), + [anon_sym_bitor] = ACTIONS(5376), + [anon_sym_xor] = ACTIONS(5383), + [anon_sym_bitand] = ACTIONS(5376), + [anon_sym_not_eq] = ACTIONS(5376), + [anon_sym_DASH_DASH] = ACTIONS(5376), + [anon_sym_PLUS_PLUS] = ACTIONS(5376), + [anon_sym_DOT] = ACTIONS(5383), + [anon_sym_DOT_STAR] = ACTIONS(5376), + [anon_sym_DASH_GT] = ACTIONS(5383), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5381), + [anon_sym_decltype] = ACTIONS(5381), + [anon_sym_DASH_GT_STAR] = ACTIONS(5376), + [sym_semgrep_metavar] = ACTIONS(5381), }, - [1917] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(5181), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_parameter_declaration] = STATE(9612), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_optional_parameter_declaration] = STATE(9612), - [sym_variadic_parameter_declaration] = STATE(9612), - [sym_template_type] = STATE(4853), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(4837), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5548), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5725), + [1920] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5427), + [anon_sym_COMMA] = ACTIONS(5427), + [anon_sym_LPAREN2] = ACTIONS(5427), + [anon_sym_DASH] = ACTIONS(5425), + [anon_sym_PLUS] = ACTIONS(5425), + [anon_sym_STAR] = ACTIONS(5425), + [anon_sym_SLASH] = ACTIONS(5425), + [anon_sym_PERCENT] = ACTIONS(5425), + [anon_sym_PIPE_PIPE] = ACTIONS(5427), + [anon_sym_AMP_AMP] = ACTIONS(5427), + [anon_sym_PIPE] = ACTIONS(5425), + [anon_sym_CARET] = ACTIONS(5425), + [anon_sym_AMP] = ACTIONS(5425), + [anon_sym_EQ_EQ] = ACTIONS(5427), + [anon_sym_BANG_EQ] = ACTIONS(5427), + [anon_sym_GT] = ACTIONS(5425), + [anon_sym_GT_EQ] = ACTIONS(5425), + [anon_sym_LT_EQ] = ACTIONS(5425), + [anon_sym_LT] = ACTIONS(5425), + [anon_sym_LT_LT] = ACTIONS(5425), + [anon_sym_GT_GT] = ACTIONS(5425), + [anon_sym___extension__] = ACTIONS(5427), + [anon_sym___attribute__] = ACTIONS(5427), + [anon_sym_COLON_COLON] = ACTIONS(5427), + [anon_sym_LBRACE] = ACTIONS(5427), + [anon_sym_LBRACK] = ACTIONS(5427), + [anon_sym_EQ] = ACTIONS(5425), + [anon_sym_const] = ACTIONS(5425), + [anon_sym_constexpr] = ACTIONS(5427), + [anon_sym_volatile] = ACTIONS(5427), + [anon_sym_restrict] = ACTIONS(5427), + [anon_sym___restrict__] = ACTIONS(5427), + [anon_sym__Atomic] = ACTIONS(5427), + [anon_sym__Noreturn] = ACTIONS(5427), + [anon_sym_noreturn] = ACTIONS(5427), + [anon_sym_mutable] = ACTIONS(5427), + [anon_sym_constinit] = ACTIONS(5427), + [anon_sym_consteval] = ACTIONS(5427), + [anon_sym_COLON] = ACTIONS(5425), + [anon_sym_QMARK] = ACTIONS(5427), + [anon_sym_STAR_EQ] = ACTIONS(5427), + [anon_sym_SLASH_EQ] = ACTIONS(5427), + [anon_sym_PERCENT_EQ] = ACTIONS(5427), + [anon_sym_PLUS_EQ] = ACTIONS(5427), + [anon_sym_DASH_EQ] = ACTIONS(5427), + [anon_sym_LT_LT_EQ] = ACTIONS(5427), + [anon_sym_GT_GT_EQ] = ACTIONS(5425), + [anon_sym_AMP_EQ] = ACTIONS(5427), + [anon_sym_CARET_EQ] = ACTIONS(5427), + [anon_sym_PIPE_EQ] = ACTIONS(5427), + [anon_sym_and_eq] = ACTIONS(5427), + [anon_sym_or_eq] = ACTIONS(5427), + [anon_sym_xor_eq] = ACTIONS(5427), + [anon_sym_LT_EQ_GT] = ACTIONS(5427), + [anon_sym_or] = ACTIONS(5425), + [anon_sym_and] = ACTIONS(5425), + [anon_sym_bitor] = ACTIONS(5427), + [anon_sym_xor] = ACTIONS(5425), + [anon_sym_bitand] = ACTIONS(5427), + [anon_sym_not_eq] = ACTIONS(5427), + [anon_sym_DASH_DASH] = ACTIONS(5427), + [anon_sym_PLUS_PLUS] = ACTIONS(5427), + [anon_sym_DOT] = ACTIONS(5425), + [anon_sym_DOT_STAR] = ACTIONS(5427), + [anon_sym_DASH_GT] = ACTIONS(5427), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5427), + [anon_sym_decltype] = ACTIONS(5427), + [anon_sym_final] = ACTIONS(5427), + [anon_sym_override] = ACTIONS(5427), + [anon_sym_GT2] = ACTIONS(5427), + }, + [1921] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5400), + [anon_sym_COMMA] = ACTIONS(5400), + [anon_sym_LPAREN2] = ACTIONS(5400), + [anon_sym_DASH] = ACTIONS(5398), + [anon_sym_PLUS] = ACTIONS(5398), + [anon_sym_STAR] = ACTIONS(5398), + [anon_sym_SLASH] = ACTIONS(5398), + [anon_sym_PERCENT] = ACTIONS(5398), + [anon_sym_PIPE_PIPE] = ACTIONS(5400), + [anon_sym_AMP_AMP] = ACTIONS(5400), + [anon_sym_PIPE] = ACTIONS(5398), + [anon_sym_CARET] = ACTIONS(5398), + [anon_sym_AMP] = ACTIONS(5398), + [anon_sym_EQ_EQ] = ACTIONS(5400), + [anon_sym_BANG_EQ] = ACTIONS(5400), + [anon_sym_GT] = ACTIONS(5398), + [anon_sym_GT_EQ] = ACTIONS(5398), + [anon_sym_LT_EQ] = ACTIONS(5398), + [anon_sym_LT] = ACTIONS(5398), + [anon_sym_LT_LT] = ACTIONS(5398), + [anon_sym_GT_GT] = ACTIONS(5398), + [anon_sym___extension__] = ACTIONS(5400), + [anon_sym___attribute__] = ACTIONS(5400), + [anon_sym_COLON_COLON] = ACTIONS(5400), + [anon_sym_LBRACE] = ACTIONS(5400), + [anon_sym_LBRACK] = ACTIONS(5400), + [anon_sym_EQ] = ACTIONS(5398), + [anon_sym_const] = ACTIONS(5398), + [anon_sym_constexpr] = ACTIONS(5400), + [anon_sym_volatile] = ACTIONS(5400), + [anon_sym_restrict] = ACTIONS(5400), + [anon_sym___restrict__] = ACTIONS(5400), + [anon_sym__Atomic] = ACTIONS(5400), + [anon_sym__Noreturn] = ACTIONS(5400), + [anon_sym_noreturn] = ACTIONS(5400), + [anon_sym_mutable] = ACTIONS(5400), + [anon_sym_constinit] = ACTIONS(5400), + [anon_sym_consteval] = ACTIONS(5400), + [anon_sym_COLON] = ACTIONS(5398), + [anon_sym_QMARK] = ACTIONS(5400), + [anon_sym_STAR_EQ] = ACTIONS(5400), + [anon_sym_SLASH_EQ] = ACTIONS(5400), + [anon_sym_PERCENT_EQ] = ACTIONS(5400), + [anon_sym_PLUS_EQ] = ACTIONS(5400), + [anon_sym_DASH_EQ] = ACTIONS(5400), + [anon_sym_LT_LT_EQ] = ACTIONS(5400), + [anon_sym_GT_GT_EQ] = ACTIONS(5398), + [anon_sym_AMP_EQ] = ACTIONS(5400), + [anon_sym_CARET_EQ] = ACTIONS(5400), + [anon_sym_PIPE_EQ] = ACTIONS(5400), + [anon_sym_and_eq] = ACTIONS(5400), + [anon_sym_or_eq] = ACTIONS(5400), + [anon_sym_xor_eq] = ACTIONS(5400), + [anon_sym_LT_EQ_GT] = ACTIONS(5400), + [anon_sym_or] = ACTIONS(5398), + [anon_sym_and] = ACTIONS(5398), + [anon_sym_bitor] = ACTIONS(5400), + [anon_sym_xor] = ACTIONS(5398), + [anon_sym_bitand] = ACTIONS(5400), + [anon_sym_not_eq] = ACTIONS(5400), + [anon_sym_DASH_DASH] = ACTIONS(5400), + [anon_sym_PLUS_PLUS] = ACTIONS(5400), + [anon_sym_DOT] = ACTIONS(5398), + [anon_sym_DOT_STAR] = ACTIONS(5400), + [anon_sym_DASH_GT] = ACTIONS(5400), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5400), + [anon_sym_decltype] = ACTIONS(5400), + [anon_sym_final] = ACTIONS(5400), + [anon_sym_override] = ACTIONS(5400), + [anon_sym_GT2] = ACTIONS(5400), + }, + [1922] = { + [sym_identifier] = ACTIONS(5737), + [aux_sym_preproc_def_token1] = ACTIONS(5737), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5739), + [aux_sym_preproc_if_token1] = ACTIONS(5737), + [aux_sym_preproc_if_token2] = ACTIONS(5737), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5737), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5737), + [aux_sym_preproc_else_token1] = ACTIONS(5737), + [aux_sym_preproc_elif_token1] = ACTIONS(5737), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5737), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5737), + [sym_preproc_directive] = ACTIONS(5737), + [anon_sym_LPAREN2] = ACTIONS(5739), + [anon_sym_TILDE] = ACTIONS(5739), + [anon_sym_STAR] = ACTIONS(5739), + [anon_sym_AMP_AMP] = ACTIONS(5739), + [anon_sym_AMP] = ACTIONS(5737), + [anon_sym___extension__] = ACTIONS(5737), + [anon_sym_typedef] = ACTIONS(5737), + [anon_sym_extern] = ACTIONS(5737), + [anon_sym___attribute__] = ACTIONS(5737), + [anon_sym_COLON_COLON] = ACTIONS(5739), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5739), + [anon_sym___declspec] = ACTIONS(5737), + [anon_sym___based] = ACTIONS(5737), + [anon_sym_signed] = ACTIONS(5737), + [anon_sym_unsigned] = ACTIONS(5737), + [anon_sym_long] = ACTIONS(5737), + [anon_sym_short] = ACTIONS(5737), + [anon_sym_LBRACK] = ACTIONS(5737), + [anon_sym_static] = ACTIONS(5737), + [anon_sym_register] = ACTIONS(5737), + [anon_sym_inline] = ACTIONS(5737), + [anon_sym___inline] = ACTIONS(5737), + [anon_sym___inline__] = ACTIONS(5737), + [anon_sym___forceinline] = ACTIONS(5737), + [anon_sym_thread_local] = ACTIONS(5737), + [anon_sym___thread] = ACTIONS(5737), + [anon_sym_const] = ACTIONS(5737), + [anon_sym_constexpr] = ACTIONS(5737), + [anon_sym_volatile] = ACTIONS(5737), + [anon_sym_restrict] = ACTIONS(5737), + [anon_sym___restrict__] = ACTIONS(5737), + [anon_sym__Atomic] = ACTIONS(5737), + [anon_sym__Noreturn] = ACTIONS(5737), + [anon_sym_noreturn] = ACTIONS(5737), + [anon_sym_mutable] = ACTIONS(5737), + [anon_sym_constinit] = ACTIONS(5737), + [anon_sym_consteval] = ACTIONS(5737), + [sym_primitive_type] = ACTIONS(5737), + [anon_sym_enum] = ACTIONS(5737), + [anon_sym_class] = ACTIONS(5737), + [anon_sym_struct] = ACTIONS(5737), + [anon_sym_union] = ACTIONS(5737), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5737), + [anon_sym_decltype] = ACTIONS(5737), + [anon_sym_virtual] = ACTIONS(5737), + [anon_sym_alignas] = ACTIONS(5737), + [anon_sym_explicit] = ACTIONS(5737), + [anon_sym_typename] = ACTIONS(5737), + [anon_sym_template] = ACTIONS(5737), + [anon_sym_operator] = ACTIONS(5737), + [anon_sym_friend] = ACTIONS(5737), + [anon_sym_public] = ACTIONS(5737), + [anon_sym_private] = ACTIONS(5737), + [anon_sym_protected] = ACTIONS(5737), + [anon_sym_using] = ACTIONS(5737), + [anon_sym_static_assert] = ACTIONS(5737), + [sym_semgrep_metavar] = ACTIONS(5739), + }, + [1923] = { + [sym_declaration_modifiers] = STATE(2412), + [sym_declaration_specifiers] = STATE(4711), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_parameter_declaration] = STATE(8944), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_optional_parameter_declaration] = STATE(8944), + [sym_variadic_parameter_declaration] = STATE(8944), + [sym_template_type] = STATE(3324), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7569), + [sym_qualified_type_identifier] = STATE(4526), + [aux_sym_declaration_specifiers_repeat1] = STATE(2412), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5453), [anon_sym___extension__] = ACTIONS(65), [anon_sym_extern] = ACTIONS(61), [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), [anon_sym___declspec] = ACTIONS(49), [anon_sym_signed] = ACTIONS(57), [anon_sym_unsigned] = ACTIONS(57), @@ -293377,4260 +282495,2975 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(65), [anon_sym_constinit] = ACTIONS(65), [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(2119), + [anon_sym_class] = ACTIONS(2121), + [anon_sym_struct] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2125), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(121), [anon_sym_decltype] = ACTIONS(123), [anon_sym_virtual] = ACTIONS(125), [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - }, - [1918] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5520), - [anon_sym_COMMA] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(5522), - [anon_sym_LPAREN2] = ACTIONS(5522), - [anon_sym_DASH] = ACTIONS(5527), - [anon_sym_PLUS] = ACTIONS(5527), - [anon_sym_STAR] = ACTIONS(5529), - [anon_sym_SLASH] = ACTIONS(5527), - [anon_sym_PERCENT] = ACTIONS(5527), - [anon_sym_PIPE_PIPE] = ACTIONS(5520), - [anon_sym_AMP_AMP] = ACTIONS(5522), - [anon_sym_PIPE] = ACTIONS(5527), - [anon_sym_CARET] = ACTIONS(5527), - [anon_sym_AMP] = ACTIONS(5529), - [anon_sym_EQ_EQ] = ACTIONS(5520), - [anon_sym_BANG_EQ] = ACTIONS(5520), - [anon_sym_GT] = ACTIONS(5527), - [anon_sym_GT_EQ] = ACTIONS(5520), - [anon_sym_LT_EQ] = ACTIONS(5527), - [anon_sym_LT] = ACTIONS(5527), - [anon_sym_LT_LT] = ACTIONS(5527), - [anon_sym_GT_GT] = ACTIONS(5527), - [anon_sym_SEMI] = ACTIONS(5520), - [anon_sym___extension__] = ACTIONS(5525), - [anon_sym_COLON_COLON] = ACTIONS(5525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5520), - [anon_sym_LBRACE] = ACTIONS(5525), - [anon_sym_LBRACK] = ACTIONS(5529), - [anon_sym_EQ] = ACTIONS(5527), - [anon_sym_const] = ACTIONS(5518), - [anon_sym_constexpr] = ACTIONS(5525), - [anon_sym_volatile] = ACTIONS(5525), - [anon_sym_restrict] = ACTIONS(5525), - [anon_sym___restrict__] = ACTIONS(5525), - [anon_sym__Atomic] = ACTIONS(5525), - [anon_sym__Noreturn] = ACTIONS(5525), - [anon_sym_noreturn] = ACTIONS(5525), - [anon_sym_mutable] = ACTIONS(5525), - [anon_sym_constinit] = ACTIONS(5525), - [anon_sym_consteval] = ACTIONS(5525), - [anon_sym_QMARK] = ACTIONS(5520), - [anon_sym_STAR_EQ] = ACTIONS(5520), - [anon_sym_SLASH_EQ] = ACTIONS(5520), - [anon_sym_PERCENT_EQ] = ACTIONS(5520), - [anon_sym_PLUS_EQ] = ACTIONS(5520), - [anon_sym_DASH_EQ] = ACTIONS(5520), - [anon_sym_LT_LT_EQ] = ACTIONS(5520), - [anon_sym_GT_GT_EQ] = ACTIONS(5520), - [anon_sym_AMP_EQ] = ACTIONS(5520), - [anon_sym_CARET_EQ] = ACTIONS(5520), - [anon_sym_PIPE_EQ] = ACTIONS(5520), - [anon_sym_and_eq] = ACTIONS(5520), - [anon_sym_or_eq] = ACTIONS(5520), - [anon_sym_xor_eq] = ACTIONS(5520), - [anon_sym_LT_EQ_GT] = ACTIONS(5520), - [anon_sym_or] = ACTIONS(5527), - [anon_sym_and] = ACTIONS(5527), - [anon_sym_bitor] = ACTIONS(5520), - [anon_sym_xor] = ACTIONS(5527), - [anon_sym_bitand] = ACTIONS(5520), - [anon_sym_not_eq] = ACTIONS(5520), - [anon_sym_DASH_DASH] = ACTIONS(5520), - [anon_sym_PLUS_PLUS] = ACTIONS(5520), - [anon_sym_DOT] = ACTIONS(5527), - [anon_sym_DOT_STAR] = ACTIONS(5520), - [anon_sym_DASH_GT] = ACTIONS(5527), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5525), - [anon_sym_decltype] = ACTIONS(5525), - [anon_sym_DASH_GT_STAR] = ACTIONS(5520), - [sym_semgrep_metavar] = ACTIONS(5525), - }, - [1919] = { - [sym_type_qualifier] = STATE(1919), - [aux_sym_type_definition_type_repeat1] = STATE(1919), - [sym_identifier] = ACTIONS(5727), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5729), - [anon_sym_LPAREN2] = ACTIONS(5729), - [anon_sym_BANG] = ACTIONS(5729), - [anon_sym_TILDE] = ACTIONS(5729), - [anon_sym_DASH] = ACTIONS(5727), - [anon_sym_PLUS] = ACTIONS(5727), - [anon_sym_STAR] = ACTIONS(5729), - [anon_sym_AMP] = ACTIONS(5729), - [anon_sym___extension__] = ACTIONS(5731), - [anon_sym_COLON_COLON] = ACTIONS(5729), - [anon_sym_LBRACK] = ACTIONS(5729), - [anon_sym_RBRACK] = ACTIONS(5729), - [anon_sym_const] = ACTIONS(5731), - [anon_sym_constexpr] = ACTIONS(5731), - [anon_sym_volatile] = ACTIONS(5731), - [anon_sym_restrict] = ACTIONS(5731), - [anon_sym___restrict__] = ACTIONS(5731), - [anon_sym__Atomic] = ACTIONS(5731), - [anon_sym__Noreturn] = ACTIONS(5731), - [anon_sym_noreturn] = ACTIONS(5731), - [anon_sym_mutable] = ACTIONS(5731), - [anon_sym_constinit] = ACTIONS(5731), - [anon_sym_consteval] = ACTIONS(5731), - [sym_primitive_type] = ACTIONS(5727), - [anon_sym_not] = ACTIONS(5727), - [anon_sym_compl] = ACTIONS(5727), - [anon_sym_DASH_DASH] = ACTIONS(5729), - [anon_sym_PLUS_PLUS] = ACTIONS(5729), - [anon_sym_sizeof] = ACTIONS(5727), - [anon_sym___alignof__] = ACTIONS(5727), - [anon_sym___alignof] = ACTIONS(5727), - [anon_sym__alignof] = ACTIONS(5727), - [anon_sym_alignof] = ACTIONS(5727), - [anon_sym__Alignof] = ACTIONS(5727), - [anon_sym_offsetof] = ACTIONS(5727), - [anon_sym__Generic] = ACTIONS(5727), - [anon_sym_asm] = ACTIONS(5727), - [anon_sym___asm__] = ACTIONS(5727), - [sym_number_literal] = ACTIONS(5729), - [anon_sym_L_SQUOTE] = ACTIONS(5729), - [anon_sym_u_SQUOTE] = ACTIONS(5729), - [anon_sym_U_SQUOTE] = ACTIONS(5729), - [anon_sym_u8_SQUOTE] = ACTIONS(5729), - [anon_sym_SQUOTE] = ACTIONS(5729), - [anon_sym_L_DQUOTE] = ACTIONS(5729), - [anon_sym_u_DQUOTE] = ACTIONS(5729), - [anon_sym_U_DQUOTE] = ACTIONS(5729), - [anon_sym_u8_DQUOTE] = ACTIONS(5729), - [anon_sym_DQUOTE] = ACTIONS(5729), - [sym_true] = ACTIONS(5727), - [sym_false] = ACTIONS(5727), - [anon_sym_NULL] = ACTIONS(5727), - [anon_sym_nullptr] = ACTIONS(5727), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(5727), - [anon_sym_template] = ACTIONS(5727), - [anon_sym_delete] = ACTIONS(5727), - [anon_sym_R_DQUOTE] = ACTIONS(5729), - [anon_sym_LR_DQUOTE] = ACTIONS(5729), - [anon_sym_uR_DQUOTE] = ACTIONS(5729), - [anon_sym_UR_DQUOTE] = ACTIONS(5729), - [anon_sym_u8R_DQUOTE] = ACTIONS(5729), - [anon_sym_co_await] = ACTIONS(5727), - [anon_sym_new] = ACTIONS(5727), - [anon_sym_requires] = ACTIONS(5727), - [sym_this] = ACTIONS(5727), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(5729), - [sym_semgrep_named_ellipsis] = ACTIONS(5729), - }, - [1920] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1920), - [ts_builtin_sym_end] = ACTIONS(5697), - [sym_identifier] = ACTIONS(5699), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5697), - [anon_sym_COMMA] = ACTIONS(5697), - [anon_sym_RPAREN] = ACTIONS(5697), - [aux_sym_preproc_if_token2] = ACTIONS(5697), - [aux_sym_preproc_else_token1] = ACTIONS(5697), - [aux_sym_preproc_elif_token1] = ACTIONS(5699), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5697), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5697), - [anon_sym_LPAREN2] = ACTIONS(5697), - [anon_sym_DASH] = ACTIONS(5699), - [anon_sym_PLUS] = ACTIONS(5699), - [anon_sym_STAR] = ACTIONS(5699), - [anon_sym_SLASH] = ACTIONS(5699), - [anon_sym_PERCENT] = ACTIONS(5699), - [anon_sym_PIPE_PIPE] = ACTIONS(5697), - [anon_sym_AMP_AMP] = ACTIONS(5697), - [anon_sym_PIPE] = ACTIONS(5699), - [anon_sym_CARET] = ACTIONS(5699), - [anon_sym_AMP] = ACTIONS(5699), - [anon_sym_EQ_EQ] = ACTIONS(5697), - [anon_sym_BANG_EQ] = ACTIONS(5697), - [anon_sym_GT] = ACTIONS(5699), - [anon_sym_GT_EQ] = ACTIONS(5697), - [anon_sym_LT_EQ] = ACTIONS(5699), - [anon_sym_LT] = ACTIONS(5699), - [anon_sym_LT_LT] = ACTIONS(5699), - [anon_sym_GT_GT] = ACTIONS(5699), - [anon_sym_SEMI] = ACTIONS(5697), - [anon_sym_LBRACE] = ACTIONS(5697), - [anon_sym_RBRACE] = ACTIONS(5697), - [anon_sym_signed] = ACTIONS(5734), - [anon_sym_unsigned] = ACTIONS(5734), - [anon_sym_long] = ACTIONS(5734), - [anon_sym_short] = ACTIONS(5734), - [anon_sym_LBRACK] = ACTIONS(5697), - [anon_sym_RBRACK] = ACTIONS(5697), - [anon_sym_EQ] = ACTIONS(5699), - [sym_primitive_type] = ACTIONS(5699), - [anon_sym_COLON] = ACTIONS(5697), - [anon_sym_QMARK] = ACTIONS(5697), - [anon_sym_STAR_EQ] = ACTIONS(5697), - [anon_sym_SLASH_EQ] = ACTIONS(5697), - [anon_sym_PERCENT_EQ] = ACTIONS(5697), - [anon_sym_PLUS_EQ] = ACTIONS(5697), - [anon_sym_DASH_EQ] = ACTIONS(5697), - [anon_sym_LT_LT_EQ] = ACTIONS(5697), - [anon_sym_GT_GT_EQ] = ACTIONS(5697), - [anon_sym_AMP_EQ] = ACTIONS(5697), - [anon_sym_CARET_EQ] = ACTIONS(5697), - [anon_sym_PIPE_EQ] = ACTIONS(5697), - [anon_sym_and_eq] = ACTIONS(5699), - [anon_sym_or_eq] = ACTIONS(5699), - [anon_sym_xor_eq] = ACTIONS(5699), - [anon_sym_LT_EQ_GT] = ACTIONS(5697), - [anon_sym_or] = ACTIONS(5699), - [anon_sym_and] = ACTIONS(5699), - [anon_sym_bitor] = ACTIONS(5699), - [anon_sym_xor] = ACTIONS(5699), - [anon_sym_bitand] = ACTIONS(5699), - [anon_sym_not_eq] = ACTIONS(5699), - [anon_sym_DASH_DASH] = ACTIONS(5697), - [anon_sym_PLUS_PLUS] = ACTIONS(5697), - [anon_sym_DOT] = ACTIONS(5699), - [anon_sym_DOT_STAR] = ACTIONS(5697), - [anon_sym_DASH_GT] = ACTIONS(5697), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5699), - [anon_sym_decltype] = ACTIONS(5699), - }, - [1921] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5479), - [anon_sym_COMMA] = ACTIONS(5479), - [anon_sym_LPAREN2] = ACTIONS(5479), - [anon_sym_DASH] = ACTIONS(5477), - [anon_sym_PLUS] = ACTIONS(5477), - [anon_sym_STAR] = ACTIONS(5477), - [anon_sym_SLASH] = ACTIONS(5477), - [anon_sym_PERCENT] = ACTIONS(5477), - [anon_sym_PIPE_PIPE] = ACTIONS(5479), - [anon_sym_AMP_AMP] = ACTIONS(5479), - [anon_sym_PIPE] = ACTIONS(5477), - [anon_sym_CARET] = ACTIONS(5477), - [anon_sym_AMP] = ACTIONS(5477), - [anon_sym_EQ_EQ] = ACTIONS(5479), - [anon_sym_BANG_EQ] = ACTIONS(5479), - [anon_sym_GT] = ACTIONS(5477), - [anon_sym_GT_EQ] = ACTIONS(5477), - [anon_sym_LT_EQ] = ACTIONS(5477), - [anon_sym_LT] = ACTIONS(5477), - [anon_sym_LT_LT] = ACTIONS(5477), - [anon_sym_GT_GT] = ACTIONS(5477), - [anon_sym___extension__] = ACTIONS(5479), - [anon_sym___attribute__] = ACTIONS(5479), - [anon_sym_COLON_COLON] = ACTIONS(5479), - [anon_sym_LBRACE] = ACTIONS(5479), - [anon_sym_LBRACK] = ACTIONS(5479), - [anon_sym_EQ] = ACTIONS(5477), - [anon_sym_const] = ACTIONS(5477), - [anon_sym_constexpr] = ACTIONS(5479), - [anon_sym_volatile] = ACTIONS(5479), - [anon_sym_restrict] = ACTIONS(5479), - [anon_sym___restrict__] = ACTIONS(5479), - [anon_sym__Atomic] = ACTIONS(5479), - [anon_sym__Noreturn] = ACTIONS(5479), - [anon_sym_noreturn] = ACTIONS(5479), - [anon_sym_mutable] = ACTIONS(5479), - [anon_sym_constinit] = ACTIONS(5479), - [anon_sym_consteval] = ACTIONS(5479), - [anon_sym_COLON] = ACTIONS(5477), - [anon_sym_QMARK] = ACTIONS(5479), - [anon_sym_STAR_EQ] = ACTIONS(5479), - [anon_sym_SLASH_EQ] = ACTIONS(5479), - [anon_sym_PERCENT_EQ] = ACTIONS(5479), - [anon_sym_PLUS_EQ] = ACTIONS(5479), - [anon_sym_DASH_EQ] = ACTIONS(5479), - [anon_sym_LT_LT_EQ] = ACTIONS(5479), - [anon_sym_GT_GT_EQ] = ACTIONS(5477), - [anon_sym_AMP_EQ] = ACTIONS(5479), - [anon_sym_CARET_EQ] = ACTIONS(5479), - [anon_sym_PIPE_EQ] = ACTIONS(5479), - [anon_sym_and_eq] = ACTIONS(5479), - [anon_sym_or_eq] = ACTIONS(5479), - [anon_sym_xor_eq] = ACTIONS(5479), - [anon_sym_LT_EQ_GT] = ACTIONS(5479), - [anon_sym_or] = ACTIONS(5477), - [anon_sym_and] = ACTIONS(5477), - [anon_sym_bitor] = ACTIONS(5479), - [anon_sym_xor] = ACTIONS(5477), - [anon_sym_bitand] = ACTIONS(5479), - [anon_sym_not_eq] = ACTIONS(5479), - [anon_sym_DASH_DASH] = ACTIONS(5479), - [anon_sym_PLUS_PLUS] = ACTIONS(5479), - [anon_sym_DOT] = ACTIONS(5477), - [anon_sym_DOT_STAR] = ACTIONS(5479), - [anon_sym_DASH_GT] = ACTIONS(5479), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5479), - [anon_sym_decltype] = ACTIONS(5479), - [anon_sym_final] = ACTIONS(5479), - [anon_sym_override] = ACTIONS(5479), - [anon_sym_GT2] = ACTIONS(5479), - }, - [1922] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5483), - [anon_sym_COMMA] = ACTIONS(5483), - [anon_sym_LPAREN2] = ACTIONS(5483), - [anon_sym_DASH] = ACTIONS(5481), - [anon_sym_PLUS] = ACTIONS(5481), - [anon_sym_STAR] = ACTIONS(5481), - [anon_sym_SLASH] = ACTIONS(5481), - [anon_sym_PERCENT] = ACTIONS(5481), - [anon_sym_PIPE_PIPE] = ACTIONS(5483), - [anon_sym_AMP_AMP] = ACTIONS(5483), - [anon_sym_PIPE] = ACTIONS(5481), - [anon_sym_CARET] = ACTIONS(5481), - [anon_sym_AMP] = ACTIONS(5481), - [anon_sym_EQ_EQ] = ACTIONS(5483), - [anon_sym_BANG_EQ] = ACTIONS(5483), - [anon_sym_GT] = ACTIONS(5481), - [anon_sym_GT_EQ] = ACTIONS(5481), - [anon_sym_LT_EQ] = ACTIONS(5481), - [anon_sym_LT] = ACTIONS(5481), - [anon_sym_LT_LT] = ACTIONS(5481), - [anon_sym_GT_GT] = ACTIONS(5481), - [anon_sym___extension__] = ACTIONS(5483), - [anon_sym___attribute__] = ACTIONS(5483), - [anon_sym_COLON_COLON] = ACTIONS(5483), - [anon_sym_LBRACE] = ACTIONS(5483), - [anon_sym_LBRACK] = ACTIONS(5483), - [anon_sym_EQ] = ACTIONS(5481), - [anon_sym_const] = ACTIONS(5481), - [anon_sym_constexpr] = ACTIONS(5483), - [anon_sym_volatile] = ACTIONS(5483), - [anon_sym_restrict] = ACTIONS(5483), - [anon_sym___restrict__] = ACTIONS(5483), - [anon_sym__Atomic] = ACTIONS(5483), - [anon_sym__Noreturn] = ACTIONS(5483), - [anon_sym_noreturn] = ACTIONS(5483), - [anon_sym_mutable] = ACTIONS(5483), - [anon_sym_constinit] = ACTIONS(5483), - [anon_sym_consteval] = ACTIONS(5483), - [anon_sym_COLON] = ACTIONS(5481), - [anon_sym_QMARK] = ACTIONS(5483), - [anon_sym_STAR_EQ] = ACTIONS(5483), - [anon_sym_SLASH_EQ] = ACTIONS(5483), - [anon_sym_PERCENT_EQ] = ACTIONS(5483), - [anon_sym_PLUS_EQ] = ACTIONS(5483), - [anon_sym_DASH_EQ] = ACTIONS(5483), - [anon_sym_LT_LT_EQ] = ACTIONS(5483), - [anon_sym_GT_GT_EQ] = ACTIONS(5481), - [anon_sym_AMP_EQ] = ACTIONS(5483), - [anon_sym_CARET_EQ] = ACTIONS(5483), - [anon_sym_PIPE_EQ] = ACTIONS(5483), - [anon_sym_and_eq] = ACTIONS(5483), - [anon_sym_or_eq] = ACTIONS(5483), - [anon_sym_xor_eq] = ACTIONS(5483), - [anon_sym_LT_EQ_GT] = ACTIONS(5483), - [anon_sym_or] = ACTIONS(5481), - [anon_sym_and] = ACTIONS(5481), - [anon_sym_bitor] = ACTIONS(5483), - [anon_sym_xor] = ACTIONS(5481), - [anon_sym_bitand] = ACTIONS(5483), - [anon_sym_not_eq] = ACTIONS(5483), - [anon_sym_DASH_DASH] = ACTIONS(5483), - [anon_sym_PLUS_PLUS] = ACTIONS(5483), - [anon_sym_DOT] = ACTIONS(5481), - [anon_sym_DOT_STAR] = ACTIONS(5483), - [anon_sym_DASH_GT] = ACTIONS(5483), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5483), - [anon_sym_decltype] = ACTIONS(5483), - [anon_sym_final] = ACTIONS(5483), - [anon_sym_override] = ACTIONS(5483), - [anon_sym_GT2] = ACTIONS(5483), - }, - [1923] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5502), - [anon_sym_COMMA] = ACTIONS(5502), - [anon_sym_LPAREN2] = ACTIONS(5502), - [anon_sym_DASH] = ACTIONS(5500), - [anon_sym_PLUS] = ACTIONS(5500), - [anon_sym_STAR] = ACTIONS(5500), - [anon_sym_SLASH] = ACTIONS(5500), - [anon_sym_PERCENT] = ACTIONS(5500), - [anon_sym_PIPE_PIPE] = ACTIONS(5502), - [anon_sym_AMP_AMP] = ACTIONS(5502), - [anon_sym_PIPE] = ACTIONS(5500), - [anon_sym_CARET] = ACTIONS(5500), - [anon_sym_AMP] = ACTIONS(5500), - [anon_sym_EQ_EQ] = ACTIONS(5502), - [anon_sym_BANG_EQ] = ACTIONS(5502), - [anon_sym_GT] = ACTIONS(5500), - [anon_sym_GT_EQ] = ACTIONS(5500), - [anon_sym_LT_EQ] = ACTIONS(5500), - [anon_sym_LT] = ACTIONS(5500), - [anon_sym_LT_LT] = ACTIONS(5500), - [anon_sym_GT_GT] = ACTIONS(5500), - [anon_sym___extension__] = ACTIONS(5502), - [anon_sym___attribute__] = ACTIONS(5502), - [anon_sym_COLON_COLON] = ACTIONS(5502), - [anon_sym_LBRACE] = ACTIONS(5502), - [anon_sym_LBRACK] = ACTIONS(5502), - [anon_sym_EQ] = ACTIONS(5500), - [anon_sym_const] = ACTIONS(5500), - [anon_sym_constexpr] = ACTIONS(5502), - [anon_sym_volatile] = ACTIONS(5502), - [anon_sym_restrict] = ACTIONS(5502), - [anon_sym___restrict__] = ACTIONS(5502), - [anon_sym__Atomic] = ACTIONS(5502), - [anon_sym__Noreturn] = ACTIONS(5502), - [anon_sym_noreturn] = ACTIONS(5502), - [anon_sym_mutable] = ACTIONS(5502), - [anon_sym_constinit] = ACTIONS(5502), - [anon_sym_consteval] = ACTIONS(5502), - [anon_sym_COLON] = ACTIONS(5500), - [anon_sym_QMARK] = ACTIONS(5502), - [anon_sym_STAR_EQ] = ACTIONS(5502), - [anon_sym_SLASH_EQ] = ACTIONS(5502), - [anon_sym_PERCENT_EQ] = ACTIONS(5502), - [anon_sym_PLUS_EQ] = ACTIONS(5502), - [anon_sym_DASH_EQ] = ACTIONS(5502), - [anon_sym_LT_LT_EQ] = ACTIONS(5502), - [anon_sym_GT_GT_EQ] = ACTIONS(5500), - [anon_sym_AMP_EQ] = ACTIONS(5502), - [anon_sym_CARET_EQ] = ACTIONS(5502), - [anon_sym_PIPE_EQ] = ACTIONS(5502), - [anon_sym_and_eq] = ACTIONS(5502), - [anon_sym_or_eq] = ACTIONS(5502), - [anon_sym_xor_eq] = ACTIONS(5502), - [anon_sym_LT_EQ_GT] = ACTIONS(5502), - [anon_sym_or] = ACTIONS(5500), - [anon_sym_and] = ACTIONS(5500), - [anon_sym_bitor] = ACTIONS(5502), - [anon_sym_xor] = ACTIONS(5500), - [anon_sym_bitand] = ACTIONS(5502), - [anon_sym_not_eq] = ACTIONS(5502), - [anon_sym_DASH_DASH] = ACTIONS(5502), - [anon_sym_PLUS_PLUS] = ACTIONS(5502), - [anon_sym_DOT] = ACTIONS(5500), - [anon_sym_DOT_STAR] = ACTIONS(5502), - [anon_sym_DASH_GT] = ACTIONS(5502), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5502), - [anon_sym_decltype] = ACTIONS(5502), - [anon_sym_final] = ACTIONS(5502), - [anon_sym_override] = ACTIONS(5502), - [anon_sym_GT2] = ACTIONS(5502), + [anon_sym_typename] = ACTIONS(2127), + [anon_sym_template] = ACTIONS(1534), }, [1924] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5498), - [anon_sym_COMMA] = ACTIONS(5498), - [anon_sym_LPAREN2] = ACTIONS(5498), - [anon_sym_DASH] = ACTIONS(5496), - [anon_sym_PLUS] = ACTIONS(5496), - [anon_sym_STAR] = ACTIONS(5496), - [anon_sym_SLASH] = ACTIONS(5496), - [anon_sym_PERCENT] = ACTIONS(5496), - [anon_sym_PIPE_PIPE] = ACTIONS(5498), - [anon_sym_AMP_AMP] = ACTIONS(5498), - [anon_sym_PIPE] = ACTIONS(5496), - [anon_sym_CARET] = ACTIONS(5496), - [anon_sym_AMP] = ACTIONS(5496), - [anon_sym_EQ_EQ] = ACTIONS(5498), - [anon_sym_BANG_EQ] = ACTIONS(5498), - [anon_sym_GT] = ACTIONS(5496), - [anon_sym_GT_EQ] = ACTIONS(5496), - [anon_sym_LT_EQ] = ACTIONS(5496), - [anon_sym_LT] = ACTIONS(5496), - [anon_sym_LT_LT] = ACTIONS(5496), - [anon_sym_GT_GT] = ACTIONS(5496), - [anon_sym___extension__] = ACTIONS(5498), - [anon_sym___attribute__] = ACTIONS(5498), - [anon_sym_COLON_COLON] = ACTIONS(5498), - [anon_sym_LBRACE] = ACTIONS(5498), - [anon_sym_LBRACK] = ACTIONS(5498), - [anon_sym_EQ] = ACTIONS(5496), - [anon_sym_const] = ACTIONS(5496), - [anon_sym_constexpr] = ACTIONS(5498), - [anon_sym_volatile] = ACTIONS(5498), - [anon_sym_restrict] = ACTIONS(5498), - [anon_sym___restrict__] = ACTIONS(5498), - [anon_sym__Atomic] = ACTIONS(5498), - [anon_sym__Noreturn] = ACTIONS(5498), - [anon_sym_noreturn] = ACTIONS(5498), - [anon_sym_mutable] = ACTIONS(5498), - [anon_sym_constinit] = ACTIONS(5498), - [anon_sym_consteval] = ACTIONS(5498), - [anon_sym_COLON] = ACTIONS(5496), - [anon_sym_QMARK] = ACTIONS(5498), - [anon_sym_STAR_EQ] = ACTIONS(5498), - [anon_sym_SLASH_EQ] = ACTIONS(5498), - [anon_sym_PERCENT_EQ] = ACTIONS(5498), - [anon_sym_PLUS_EQ] = ACTIONS(5498), - [anon_sym_DASH_EQ] = ACTIONS(5498), - [anon_sym_LT_LT_EQ] = ACTIONS(5498), - [anon_sym_GT_GT_EQ] = ACTIONS(5496), - [anon_sym_AMP_EQ] = ACTIONS(5498), - [anon_sym_CARET_EQ] = ACTIONS(5498), - [anon_sym_PIPE_EQ] = ACTIONS(5498), - [anon_sym_and_eq] = ACTIONS(5498), - [anon_sym_or_eq] = ACTIONS(5498), - [anon_sym_xor_eq] = ACTIONS(5498), - [anon_sym_LT_EQ_GT] = ACTIONS(5498), - [anon_sym_or] = ACTIONS(5496), - [anon_sym_and] = ACTIONS(5496), - [anon_sym_bitor] = ACTIONS(5498), - [anon_sym_xor] = ACTIONS(5496), - [anon_sym_bitand] = ACTIONS(5498), - [anon_sym_not_eq] = ACTIONS(5498), - [anon_sym_DASH_DASH] = ACTIONS(5498), - [anon_sym_PLUS_PLUS] = ACTIONS(5498), - [anon_sym_DOT] = ACTIONS(5496), - [anon_sym_DOT_STAR] = ACTIONS(5498), - [anon_sym_DASH_GT] = ACTIONS(5498), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5498), - [anon_sym_decltype] = ACTIONS(5498), - [anon_sym_final] = ACTIONS(5498), - [anon_sym_override] = ACTIONS(5498), - [anon_sym_GT2] = ACTIONS(5498), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5427), + [anon_sym_COMMA] = ACTIONS(5427), + [anon_sym_RPAREN] = ACTIONS(5427), + [anon_sym_LPAREN2] = ACTIONS(5427), + [anon_sym_DASH] = ACTIONS(5425), + [anon_sym_PLUS] = ACTIONS(5425), + [anon_sym_STAR] = ACTIONS(5425), + [anon_sym_SLASH] = ACTIONS(5425), + [anon_sym_PERCENT] = ACTIONS(5425), + [anon_sym_PIPE_PIPE] = ACTIONS(5427), + [anon_sym_AMP_AMP] = ACTIONS(5427), + [anon_sym_PIPE] = ACTIONS(5425), + [anon_sym_CARET] = ACTIONS(5425), + [anon_sym_AMP] = ACTIONS(5425), + [anon_sym_EQ_EQ] = ACTIONS(5427), + [anon_sym_BANG_EQ] = ACTIONS(5427), + [anon_sym_GT] = ACTIONS(5425), + [anon_sym_GT_EQ] = ACTIONS(5427), + [anon_sym_LT_EQ] = ACTIONS(5425), + [anon_sym_LT] = ACTIONS(5425), + [anon_sym_LT_LT] = ACTIONS(5425), + [anon_sym_GT_GT] = ACTIONS(5425), + [anon_sym___extension__] = ACTIONS(5427), + [anon_sym_COLON_COLON] = ACTIONS(5427), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5427), + [anon_sym_LBRACE] = ACTIONS(5427), + [anon_sym_LBRACK] = ACTIONS(5425), + [anon_sym_EQ] = ACTIONS(5425), + [anon_sym_const] = ACTIONS(5425), + [anon_sym_constexpr] = ACTIONS(5427), + [anon_sym_volatile] = ACTIONS(5427), + [anon_sym_restrict] = ACTIONS(5427), + [anon_sym___restrict__] = ACTIONS(5427), + [anon_sym__Atomic] = ACTIONS(5427), + [anon_sym__Noreturn] = ACTIONS(5427), + [anon_sym_noreturn] = ACTIONS(5427), + [anon_sym_mutable] = ACTIONS(5427), + [anon_sym_constinit] = ACTIONS(5427), + [anon_sym_consteval] = ACTIONS(5427), + [anon_sym_QMARK] = ACTIONS(5427), + [anon_sym_STAR_EQ] = ACTIONS(5427), + [anon_sym_SLASH_EQ] = ACTIONS(5427), + [anon_sym_PERCENT_EQ] = ACTIONS(5427), + [anon_sym_PLUS_EQ] = ACTIONS(5427), + [anon_sym_DASH_EQ] = ACTIONS(5427), + [anon_sym_LT_LT_EQ] = ACTIONS(5427), + [anon_sym_GT_GT_EQ] = ACTIONS(5427), + [anon_sym_AMP_EQ] = ACTIONS(5427), + [anon_sym_CARET_EQ] = ACTIONS(5427), + [anon_sym_PIPE_EQ] = ACTIONS(5427), + [anon_sym_and_eq] = ACTIONS(5427), + [anon_sym_or_eq] = ACTIONS(5427), + [anon_sym_xor_eq] = ACTIONS(5427), + [anon_sym_LT_EQ_GT] = ACTIONS(5427), + [anon_sym_or] = ACTIONS(5425), + [anon_sym_and] = ACTIONS(5425), + [anon_sym_bitor] = ACTIONS(5427), + [anon_sym_xor] = ACTIONS(5425), + [anon_sym_bitand] = ACTIONS(5427), + [anon_sym_not_eq] = ACTIONS(5427), + [anon_sym_DASH_DASH] = ACTIONS(5427), + [anon_sym_PLUS_PLUS] = ACTIONS(5427), + [anon_sym_DOT] = ACTIONS(5425), + [anon_sym_DOT_STAR] = ACTIONS(5427), + [anon_sym_DASH_GT] = ACTIONS(5425), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5427), + [anon_sym_decltype] = ACTIONS(5427), + [anon_sym_DASH_GT_STAR] = ACTIONS(5427), + [sym_semgrep_metavar] = ACTIONS(5427), }, [1925] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5509), - [anon_sym_COMMA] = ACTIONS(5509), - [anon_sym_LPAREN2] = ACTIONS(5509), - [anon_sym_DASH] = ACTIONS(5507), - [anon_sym_PLUS] = ACTIONS(5507), - [anon_sym_STAR] = ACTIONS(5507), - [anon_sym_SLASH] = ACTIONS(5507), - [anon_sym_PERCENT] = ACTIONS(5507), - [anon_sym_PIPE_PIPE] = ACTIONS(5509), - [anon_sym_AMP_AMP] = ACTIONS(5509), - [anon_sym_PIPE] = ACTIONS(5507), - [anon_sym_CARET] = ACTIONS(5507), - [anon_sym_AMP] = ACTIONS(5507), - [anon_sym_EQ_EQ] = ACTIONS(5509), - [anon_sym_BANG_EQ] = ACTIONS(5509), - [anon_sym_GT] = ACTIONS(5507), - [anon_sym_GT_EQ] = ACTIONS(5507), - [anon_sym_LT_EQ] = ACTIONS(5507), - [anon_sym_LT] = ACTIONS(5507), - [anon_sym_LT_LT] = ACTIONS(5507), - [anon_sym_GT_GT] = ACTIONS(5507), - [anon_sym___extension__] = ACTIONS(5509), - [anon_sym___attribute__] = ACTIONS(5509), - [anon_sym_COLON_COLON] = ACTIONS(5509), - [anon_sym_LBRACE] = ACTIONS(5509), - [anon_sym_LBRACK] = ACTIONS(5509), - [anon_sym_EQ] = ACTIONS(5507), - [anon_sym_const] = ACTIONS(5507), - [anon_sym_constexpr] = ACTIONS(5509), - [anon_sym_volatile] = ACTIONS(5509), - [anon_sym_restrict] = ACTIONS(5509), - [anon_sym___restrict__] = ACTIONS(5509), - [anon_sym__Atomic] = ACTIONS(5509), - [anon_sym__Noreturn] = ACTIONS(5509), - [anon_sym_noreturn] = ACTIONS(5509), - [anon_sym_mutable] = ACTIONS(5509), - [anon_sym_constinit] = ACTIONS(5509), - [anon_sym_consteval] = ACTIONS(5509), - [anon_sym_COLON] = ACTIONS(5507), - [anon_sym_QMARK] = ACTIONS(5509), - [anon_sym_STAR_EQ] = ACTIONS(5509), - [anon_sym_SLASH_EQ] = ACTIONS(5509), - [anon_sym_PERCENT_EQ] = ACTIONS(5509), - [anon_sym_PLUS_EQ] = ACTIONS(5509), - [anon_sym_DASH_EQ] = ACTIONS(5509), - [anon_sym_LT_LT_EQ] = ACTIONS(5509), - [anon_sym_GT_GT_EQ] = ACTIONS(5507), - [anon_sym_AMP_EQ] = ACTIONS(5509), - [anon_sym_CARET_EQ] = ACTIONS(5509), - [anon_sym_PIPE_EQ] = ACTIONS(5509), - [anon_sym_and_eq] = ACTIONS(5509), - [anon_sym_or_eq] = ACTIONS(5509), - [anon_sym_xor_eq] = ACTIONS(5509), - [anon_sym_LT_EQ_GT] = ACTIONS(5509), - [anon_sym_or] = ACTIONS(5507), - [anon_sym_and] = ACTIONS(5507), - [anon_sym_bitor] = ACTIONS(5509), - [anon_sym_xor] = ACTIONS(5507), - [anon_sym_bitand] = ACTIONS(5509), - [anon_sym_not_eq] = ACTIONS(5509), - [anon_sym_DASH_DASH] = ACTIONS(5509), - [anon_sym_PLUS_PLUS] = ACTIONS(5509), - [anon_sym_DOT] = ACTIONS(5507), - [anon_sym_DOT_STAR] = ACTIONS(5509), - [anon_sym_DASH_GT] = ACTIONS(5509), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5509), - [anon_sym_decltype] = ACTIONS(5509), - [anon_sym_final] = ACTIONS(5509), - [anon_sym_override] = ACTIONS(5509), - [anon_sym_GT2] = ACTIONS(5509), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5423), + [anon_sym_COMMA] = ACTIONS(5423), + [anon_sym_RPAREN] = ACTIONS(5423), + [anon_sym_LPAREN2] = ACTIONS(5423), + [anon_sym_DASH] = ACTIONS(5421), + [anon_sym_PLUS] = ACTIONS(5421), + [anon_sym_STAR] = ACTIONS(5421), + [anon_sym_SLASH] = ACTIONS(5421), + [anon_sym_PERCENT] = ACTIONS(5421), + [anon_sym_PIPE_PIPE] = ACTIONS(5423), + [anon_sym_AMP_AMP] = ACTIONS(5423), + [anon_sym_PIPE] = ACTIONS(5421), + [anon_sym_CARET] = ACTIONS(5421), + [anon_sym_AMP] = ACTIONS(5421), + [anon_sym_EQ_EQ] = ACTIONS(5423), + [anon_sym_BANG_EQ] = ACTIONS(5423), + [anon_sym_GT] = ACTIONS(5421), + [anon_sym_GT_EQ] = ACTIONS(5423), + [anon_sym_LT_EQ] = ACTIONS(5421), + [anon_sym_LT] = ACTIONS(5421), + [anon_sym_LT_LT] = ACTIONS(5421), + [anon_sym_GT_GT] = ACTIONS(5421), + [anon_sym___extension__] = ACTIONS(5423), + [anon_sym_COLON_COLON] = ACTIONS(5423), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5423), + [anon_sym_LBRACE] = ACTIONS(5423), + [anon_sym_LBRACK] = ACTIONS(5421), + [anon_sym_EQ] = ACTIONS(5421), + [anon_sym_const] = ACTIONS(5421), + [anon_sym_constexpr] = ACTIONS(5423), + [anon_sym_volatile] = ACTIONS(5423), + [anon_sym_restrict] = ACTIONS(5423), + [anon_sym___restrict__] = ACTIONS(5423), + [anon_sym__Atomic] = ACTIONS(5423), + [anon_sym__Noreturn] = ACTIONS(5423), + [anon_sym_noreturn] = ACTIONS(5423), + [anon_sym_mutable] = ACTIONS(5423), + [anon_sym_constinit] = ACTIONS(5423), + [anon_sym_consteval] = ACTIONS(5423), + [anon_sym_QMARK] = ACTIONS(5423), + [anon_sym_STAR_EQ] = ACTIONS(5423), + [anon_sym_SLASH_EQ] = ACTIONS(5423), + [anon_sym_PERCENT_EQ] = ACTIONS(5423), + [anon_sym_PLUS_EQ] = ACTIONS(5423), + [anon_sym_DASH_EQ] = ACTIONS(5423), + [anon_sym_LT_LT_EQ] = ACTIONS(5423), + [anon_sym_GT_GT_EQ] = ACTIONS(5423), + [anon_sym_AMP_EQ] = ACTIONS(5423), + [anon_sym_CARET_EQ] = ACTIONS(5423), + [anon_sym_PIPE_EQ] = ACTIONS(5423), + [anon_sym_and_eq] = ACTIONS(5423), + [anon_sym_or_eq] = ACTIONS(5423), + [anon_sym_xor_eq] = ACTIONS(5423), + [anon_sym_LT_EQ_GT] = ACTIONS(5423), + [anon_sym_or] = ACTIONS(5421), + [anon_sym_and] = ACTIONS(5421), + [anon_sym_bitor] = ACTIONS(5423), + [anon_sym_xor] = ACTIONS(5421), + [anon_sym_bitand] = ACTIONS(5423), + [anon_sym_not_eq] = ACTIONS(5423), + [anon_sym_DASH_DASH] = ACTIONS(5423), + [anon_sym_PLUS_PLUS] = ACTIONS(5423), + [anon_sym_DOT] = ACTIONS(5421), + [anon_sym_DOT_STAR] = ACTIONS(5423), + [anon_sym_DASH_GT] = ACTIONS(5421), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5423), + [anon_sym_decltype] = ACTIONS(5423), + [anon_sym_DASH_GT_STAR] = ACTIONS(5423), + [sym_semgrep_metavar] = ACTIONS(5423), }, [1926] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5513), - [anon_sym_COMMA] = ACTIONS(5513), - [anon_sym_LPAREN2] = ACTIONS(5513), - [anon_sym_DASH] = ACTIONS(5511), - [anon_sym_PLUS] = ACTIONS(5511), - [anon_sym_STAR] = ACTIONS(5511), - [anon_sym_SLASH] = ACTIONS(5511), - [anon_sym_PERCENT] = ACTIONS(5511), - [anon_sym_PIPE_PIPE] = ACTIONS(5513), - [anon_sym_AMP_AMP] = ACTIONS(5513), - [anon_sym_PIPE] = ACTIONS(5511), - [anon_sym_CARET] = ACTIONS(5511), - [anon_sym_AMP] = ACTIONS(5511), - [anon_sym_EQ_EQ] = ACTIONS(5513), - [anon_sym_BANG_EQ] = ACTIONS(5513), - [anon_sym_GT] = ACTIONS(5511), - [anon_sym_GT_EQ] = ACTIONS(5511), - [anon_sym_LT_EQ] = ACTIONS(5511), - [anon_sym_LT] = ACTIONS(5511), - [anon_sym_LT_LT] = ACTIONS(5511), - [anon_sym_GT_GT] = ACTIONS(5511), - [anon_sym___extension__] = ACTIONS(5513), - [anon_sym___attribute__] = ACTIONS(5513), - [anon_sym_COLON_COLON] = ACTIONS(5513), - [anon_sym_LBRACE] = ACTIONS(5513), - [anon_sym_LBRACK] = ACTIONS(5513), - [anon_sym_EQ] = ACTIONS(5511), - [anon_sym_const] = ACTIONS(5511), - [anon_sym_constexpr] = ACTIONS(5513), - [anon_sym_volatile] = ACTIONS(5513), - [anon_sym_restrict] = ACTIONS(5513), - [anon_sym___restrict__] = ACTIONS(5513), - [anon_sym__Atomic] = ACTIONS(5513), - [anon_sym__Noreturn] = ACTIONS(5513), - [anon_sym_noreturn] = ACTIONS(5513), - [anon_sym_mutable] = ACTIONS(5513), - [anon_sym_constinit] = ACTIONS(5513), - [anon_sym_consteval] = ACTIONS(5513), - [anon_sym_COLON] = ACTIONS(5511), - [anon_sym_QMARK] = ACTIONS(5513), - [anon_sym_STAR_EQ] = ACTIONS(5513), - [anon_sym_SLASH_EQ] = ACTIONS(5513), - [anon_sym_PERCENT_EQ] = ACTIONS(5513), - [anon_sym_PLUS_EQ] = ACTIONS(5513), - [anon_sym_DASH_EQ] = ACTIONS(5513), - [anon_sym_LT_LT_EQ] = ACTIONS(5513), - [anon_sym_GT_GT_EQ] = ACTIONS(5511), - [anon_sym_AMP_EQ] = ACTIONS(5513), - [anon_sym_CARET_EQ] = ACTIONS(5513), - [anon_sym_PIPE_EQ] = ACTIONS(5513), - [anon_sym_and_eq] = ACTIONS(5513), - [anon_sym_or_eq] = ACTIONS(5513), - [anon_sym_xor_eq] = ACTIONS(5513), - [anon_sym_LT_EQ_GT] = ACTIONS(5513), - [anon_sym_or] = ACTIONS(5511), - [anon_sym_and] = ACTIONS(5511), - [anon_sym_bitor] = ACTIONS(5513), - [anon_sym_xor] = ACTIONS(5511), - [anon_sym_bitand] = ACTIONS(5513), - [anon_sym_not_eq] = ACTIONS(5513), - [anon_sym_DASH_DASH] = ACTIONS(5513), - [anon_sym_PLUS_PLUS] = ACTIONS(5513), - [anon_sym_DOT] = ACTIONS(5511), - [anon_sym_DOT_STAR] = ACTIONS(5513), - [anon_sym_DASH_GT] = ACTIONS(5513), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5513), - [anon_sym_decltype] = ACTIONS(5513), - [anon_sym_final] = ACTIONS(5513), - [anon_sym_override] = ACTIONS(5513), - [anon_sym_GT2] = ACTIONS(5513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5431), + [anon_sym_COMMA] = ACTIONS(5431), + [anon_sym_RPAREN] = ACTIONS(5431), + [anon_sym_LPAREN2] = ACTIONS(5431), + [anon_sym_DASH] = ACTIONS(5429), + [anon_sym_PLUS] = ACTIONS(5429), + [anon_sym_STAR] = ACTIONS(5429), + [anon_sym_SLASH] = ACTIONS(5429), + [anon_sym_PERCENT] = ACTIONS(5429), + [anon_sym_PIPE_PIPE] = ACTIONS(5431), + [anon_sym_AMP_AMP] = ACTIONS(5431), + [anon_sym_PIPE] = ACTIONS(5429), + [anon_sym_CARET] = ACTIONS(5429), + [anon_sym_AMP] = ACTIONS(5429), + [anon_sym_EQ_EQ] = ACTIONS(5431), + [anon_sym_BANG_EQ] = ACTIONS(5431), + [anon_sym_GT] = ACTIONS(5429), + [anon_sym_GT_EQ] = ACTIONS(5431), + [anon_sym_LT_EQ] = ACTIONS(5429), + [anon_sym_LT] = ACTIONS(5429), + [anon_sym_LT_LT] = ACTIONS(5429), + [anon_sym_GT_GT] = ACTIONS(5429), + [anon_sym___extension__] = ACTIONS(5431), + [anon_sym_COLON_COLON] = ACTIONS(5431), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5431), + [anon_sym_LBRACE] = ACTIONS(5431), + [anon_sym_LBRACK] = ACTIONS(5429), + [anon_sym_EQ] = ACTIONS(5429), + [anon_sym_const] = ACTIONS(5429), + [anon_sym_constexpr] = ACTIONS(5431), + [anon_sym_volatile] = ACTIONS(5431), + [anon_sym_restrict] = ACTIONS(5431), + [anon_sym___restrict__] = ACTIONS(5431), + [anon_sym__Atomic] = ACTIONS(5431), + [anon_sym__Noreturn] = ACTIONS(5431), + [anon_sym_noreturn] = ACTIONS(5431), + [anon_sym_mutable] = ACTIONS(5431), + [anon_sym_constinit] = ACTIONS(5431), + [anon_sym_consteval] = ACTIONS(5431), + [anon_sym_QMARK] = ACTIONS(5431), + [anon_sym_STAR_EQ] = ACTIONS(5431), + [anon_sym_SLASH_EQ] = ACTIONS(5431), + [anon_sym_PERCENT_EQ] = ACTIONS(5431), + [anon_sym_PLUS_EQ] = ACTIONS(5431), + [anon_sym_DASH_EQ] = ACTIONS(5431), + [anon_sym_LT_LT_EQ] = ACTIONS(5431), + [anon_sym_GT_GT_EQ] = ACTIONS(5431), + [anon_sym_AMP_EQ] = ACTIONS(5431), + [anon_sym_CARET_EQ] = ACTIONS(5431), + [anon_sym_PIPE_EQ] = ACTIONS(5431), + [anon_sym_and_eq] = ACTIONS(5431), + [anon_sym_or_eq] = ACTIONS(5431), + [anon_sym_xor_eq] = ACTIONS(5431), + [anon_sym_LT_EQ_GT] = ACTIONS(5431), + [anon_sym_or] = ACTIONS(5429), + [anon_sym_and] = ACTIONS(5429), + [anon_sym_bitor] = ACTIONS(5431), + [anon_sym_xor] = ACTIONS(5429), + [anon_sym_bitand] = ACTIONS(5431), + [anon_sym_not_eq] = ACTIONS(5431), + [anon_sym_DASH_DASH] = ACTIONS(5431), + [anon_sym_PLUS_PLUS] = ACTIONS(5431), + [anon_sym_DOT] = ACTIONS(5429), + [anon_sym_DOT_STAR] = ACTIONS(5431), + [anon_sym_DASH_GT] = ACTIONS(5429), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5431), + [anon_sym_decltype] = ACTIONS(5431), + [anon_sym_DASH_GT_STAR] = ACTIONS(5431), + [sym_semgrep_metavar] = ACTIONS(5431), }, [1927] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5458), - [anon_sym_COMMA] = ACTIONS(5458), - [anon_sym_LPAREN2] = ACTIONS(5458), - [anon_sym_DASH] = ACTIONS(5456), - [anon_sym_PLUS] = ACTIONS(5456), - [anon_sym_STAR] = ACTIONS(5456), - [anon_sym_SLASH] = ACTIONS(5456), - [anon_sym_PERCENT] = ACTIONS(5456), - [anon_sym_PIPE_PIPE] = ACTIONS(5458), - [anon_sym_AMP_AMP] = ACTIONS(5458), - [anon_sym_PIPE] = ACTIONS(5456), - [anon_sym_CARET] = ACTIONS(5456), - [anon_sym_AMP] = ACTIONS(5456), - [anon_sym_EQ_EQ] = ACTIONS(5458), - [anon_sym_BANG_EQ] = ACTIONS(5458), - [anon_sym_GT] = ACTIONS(5456), - [anon_sym_GT_EQ] = ACTIONS(5456), - [anon_sym_LT_EQ] = ACTIONS(5456), - [anon_sym_LT] = ACTIONS(5456), - [anon_sym_LT_LT] = ACTIONS(5456), - [anon_sym_GT_GT] = ACTIONS(5456), - [anon_sym___extension__] = ACTIONS(5458), - [anon_sym___attribute__] = ACTIONS(5458), - [anon_sym_COLON_COLON] = ACTIONS(5458), - [anon_sym_LBRACE] = ACTIONS(5458), - [anon_sym_LBRACK] = ACTIONS(5458), - [anon_sym_EQ] = ACTIONS(5456), - [anon_sym_const] = ACTIONS(5456), - [anon_sym_constexpr] = ACTIONS(5458), - [anon_sym_volatile] = ACTIONS(5458), - [anon_sym_restrict] = ACTIONS(5458), - [anon_sym___restrict__] = ACTIONS(5458), - [anon_sym__Atomic] = ACTIONS(5458), - [anon_sym__Noreturn] = ACTIONS(5458), - [anon_sym_noreturn] = ACTIONS(5458), - [anon_sym_mutable] = ACTIONS(5458), - [anon_sym_constinit] = ACTIONS(5458), - [anon_sym_consteval] = ACTIONS(5458), - [anon_sym_COLON] = ACTIONS(5456), - [anon_sym_QMARK] = ACTIONS(5458), - [anon_sym_STAR_EQ] = ACTIONS(5458), - [anon_sym_SLASH_EQ] = ACTIONS(5458), - [anon_sym_PERCENT_EQ] = ACTIONS(5458), - [anon_sym_PLUS_EQ] = ACTIONS(5458), - [anon_sym_DASH_EQ] = ACTIONS(5458), - [anon_sym_LT_LT_EQ] = ACTIONS(5458), - [anon_sym_GT_GT_EQ] = ACTIONS(5456), - [anon_sym_AMP_EQ] = ACTIONS(5458), - [anon_sym_CARET_EQ] = ACTIONS(5458), - [anon_sym_PIPE_EQ] = ACTIONS(5458), - [anon_sym_and_eq] = ACTIONS(5458), - [anon_sym_or_eq] = ACTIONS(5458), - [anon_sym_xor_eq] = ACTIONS(5458), - [anon_sym_LT_EQ_GT] = ACTIONS(5458), - [anon_sym_or] = ACTIONS(5456), - [anon_sym_and] = ACTIONS(5456), - [anon_sym_bitor] = ACTIONS(5458), - [anon_sym_xor] = ACTIONS(5456), - [anon_sym_bitand] = ACTIONS(5458), - [anon_sym_not_eq] = ACTIONS(5458), - [anon_sym_DASH_DASH] = ACTIONS(5458), - [anon_sym_PLUS_PLUS] = ACTIONS(5458), - [anon_sym_DOT] = ACTIONS(5456), - [anon_sym_DOT_STAR] = ACTIONS(5458), - [anon_sym_DASH_GT] = ACTIONS(5458), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5458), - [anon_sym_decltype] = ACTIONS(5458), - [anon_sym_final] = ACTIONS(5458), - [anon_sym_override] = ACTIONS(5458), - [anon_sym_GT2] = ACTIONS(5458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5396), + [anon_sym_COMMA] = ACTIONS(5396), + [anon_sym_RPAREN] = ACTIONS(5396), + [anon_sym_LPAREN2] = ACTIONS(5396), + [anon_sym_DASH] = ACTIONS(5394), + [anon_sym_PLUS] = ACTIONS(5394), + [anon_sym_STAR] = ACTIONS(5394), + [anon_sym_SLASH] = ACTIONS(5394), + [anon_sym_PERCENT] = ACTIONS(5394), + [anon_sym_PIPE_PIPE] = ACTIONS(5396), + [anon_sym_AMP_AMP] = ACTIONS(5396), + [anon_sym_PIPE] = ACTIONS(5394), + [anon_sym_CARET] = ACTIONS(5394), + [anon_sym_AMP] = ACTIONS(5394), + [anon_sym_EQ_EQ] = ACTIONS(5396), + [anon_sym_BANG_EQ] = ACTIONS(5396), + [anon_sym_GT] = ACTIONS(5394), + [anon_sym_GT_EQ] = ACTIONS(5396), + [anon_sym_LT_EQ] = ACTIONS(5394), + [anon_sym_LT] = ACTIONS(5394), + [anon_sym_LT_LT] = ACTIONS(5394), + [anon_sym_GT_GT] = ACTIONS(5394), + [anon_sym___extension__] = ACTIONS(5396), + [anon_sym_COLON_COLON] = ACTIONS(5396), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5396), + [anon_sym_LBRACE] = ACTIONS(5396), + [anon_sym_LBRACK] = ACTIONS(5394), + [anon_sym_EQ] = ACTIONS(5394), + [anon_sym_const] = ACTIONS(5394), + [anon_sym_constexpr] = ACTIONS(5396), + [anon_sym_volatile] = ACTIONS(5396), + [anon_sym_restrict] = ACTIONS(5396), + [anon_sym___restrict__] = ACTIONS(5396), + [anon_sym__Atomic] = ACTIONS(5396), + [anon_sym__Noreturn] = ACTIONS(5396), + [anon_sym_noreturn] = ACTIONS(5396), + [anon_sym_mutable] = ACTIONS(5396), + [anon_sym_constinit] = ACTIONS(5396), + [anon_sym_consteval] = ACTIONS(5396), + [anon_sym_QMARK] = ACTIONS(5396), + [anon_sym_STAR_EQ] = ACTIONS(5396), + [anon_sym_SLASH_EQ] = ACTIONS(5396), + [anon_sym_PERCENT_EQ] = ACTIONS(5396), + [anon_sym_PLUS_EQ] = ACTIONS(5396), + [anon_sym_DASH_EQ] = ACTIONS(5396), + [anon_sym_LT_LT_EQ] = ACTIONS(5396), + [anon_sym_GT_GT_EQ] = ACTIONS(5396), + [anon_sym_AMP_EQ] = ACTIONS(5396), + [anon_sym_CARET_EQ] = ACTIONS(5396), + [anon_sym_PIPE_EQ] = ACTIONS(5396), + [anon_sym_and_eq] = ACTIONS(5396), + [anon_sym_or_eq] = ACTIONS(5396), + [anon_sym_xor_eq] = ACTIONS(5396), + [anon_sym_LT_EQ_GT] = ACTIONS(5396), + [anon_sym_or] = ACTIONS(5394), + [anon_sym_and] = ACTIONS(5394), + [anon_sym_bitor] = ACTIONS(5396), + [anon_sym_xor] = ACTIONS(5394), + [anon_sym_bitand] = ACTIONS(5396), + [anon_sym_not_eq] = ACTIONS(5396), + [anon_sym_DASH_DASH] = ACTIONS(5396), + [anon_sym_PLUS_PLUS] = ACTIONS(5396), + [anon_sym_DOT] = ACTIONS(5394), + [anon_sym_DOT_STAR] = ACTIONS(5396), + [anon_sym_DASH_GT] = ACTIONS(5394), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5396), + [anon_sym_decltype] = ACTIONS(5396), + [anon_sym_DASH_GT_STAR] = ACTIONS(5396), + [sym_semgrep_metavar] = ACTIONS(5396), }, [1928] = { - [sym_catch_clause] = STATE(1928), - [aux_sym_constructor_try_statement_repeat1] = STATE(1928), - [sym_identifier] = ACTIONS(3063), - [aux_sym_preproc_def_token1] = ACTIONS(3063), - [aux_sym_preproc_if_token1] = ACTIONS(3063), - [aux_sym_preproc_if_token2] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3063), - [aux_sym_preproc_else_token1] = ACTIONS(3063), - [aux_sym_preproc_elif_token1] = ACTIONS(3063), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3063), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3063), - [sym_preproc_directive] = ACTIONS(3063), - [anon_sym_LPAREN2] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3063), - [anon_sym___extension__] = ACTIONS(3063), - [anon_sym_typedef] = ACTIONS(3063), - [anon_sym_extern] = ACTIONS(3063), - [anon_sym___attribute__] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(3065), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3065), - [anon_sym___declspec] = ACTIONS(3063), - [anon_sym___based] = ACTIONS(3063), - [anon_sym_signed] = ACTIONS(3063), - [anon_sym_unsigned] = ACTIONS(3063), - [anon_sym_long] = ACTIONS(3063), - [anon_sym_short] = ACTIONS(3063), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_static] = ACTIONS(3063), - [anon_sym_register] = ACTIONS(3063), - [anon_sym_inline] = ACTIONS(3063), - [anon_sym___inline] = ACTIONS(3063), - [anon_sym___inline__] = ACTIONS(3063), - [anon_sym___forceinline] = ACTIONS(3063), - [anon_sym_thread_local] = ACTIONS(3063), - [anon_sym___thread] = ACTIONS(3063), - [anon_sym_const] = ACTIONS(3063), - [anon_sym_constexpr] = ACTIONS(3063), - [anon_sym_volatile] = ACTIONS(3063), - [anon_sym_restrict] = ACTIONS(3063), - [anon_sym___restrict__] = ACTIONS(3063), - [anon_sym__Atomic] = ACTIONS(3063), - [anon_sym__Noreturn] = ACTIONS(3063), - [anon_sym_noreturn] = ACTIONS(3063), - [anon_sym_mutable] = ACTIONS(3063), - [anon_sym_constinit] = ACTIONS(3063), - [anon_sym_consteval] = ACTIONS(3063), - [sym_primitive_type] = ACTIONS(3063), - [anon_sym_enum] = ACTIONS(3063), - [anon_sym_class] = ACTIONS(3063), - [anon_sym_struct] = ACTIONS(3063), - [anon_sym_union] = ACTIONS(3063), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3063), - [anon_sym_decltype] = ACTIONS(3063), - [anon_sym_virtual] = ACTIONS(3063), - [anon_sym_alignas] = ACTIONS(3063), - [anon_sym_explicit] = ACTIONS(3063), - [anon_sym_typename] = ACTIONS(3063), - [anon_sym_template] = ACTIONS(3063), - [anon_sym_operator] = ACTIONS(3063), - [anon_sym_friend] = ACTIONS(3063), - [anon_sym_public] = ACTIONS(3063), - [anon_sym_private] = ACTIONS(3063), - [anon_sym_protected] = ACTIONS(3063), - [anon_sym_using] = ACTIONS(3063), - [anon_sym_static_assert] = ACTIONS(3063), - [anon_sym_catch] = ACTIONS(5737), + [sym_identifier] = ACTIONS(3442), + [aux_sym_preproc_def_token1] = ACTIONS(3442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3444), + [aux_sym_preproc_if_token1] = ACTIONS(3442), + [aux_sym_preproc_if_token2] = ACTIONS(3442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3442), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3442), + [aux_sym_preproc_else_token1] = ACTIONS(3442), + [aux_sym_preproc_elif_token1] = ACTIONS(3442), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3442), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3442), + [sym_preproc_directive] = ACTIONS(3442), + [anon_sym_LPAREN2] = ACTIONS(3444), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3444), + [anon_sym_AMP_AMP] = ACTIONS(3444), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym___extension__] = ACTIONS(3442), + [anon_sym_typedef] = ACTIONS(3442), + [anon_sym_extern] = ACTIONS(3442), + [anon_sym___attribute__] = ACTIONS(3442), + [anon_sym_COLON_COLON] = ACTIONS(3444), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3444), + [anon_sym___declspec] = ACTIONS(3442), + [anon_sym___based] = ACTIONS(3442), + [anon_sym_signed] = ACTIONS(3442), + [anon_sym_unsigned] = ACTIONS(3442), + [anon_sym_long] = ACTIONS(3442), + [anon_sym_short] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_static] = ACTIONS(3442), + [anon_sym_register] = ACTIONS(3442), + [anon_sym_inline] = ACTIONS(3442), + [anon_sym___inline] = ACTIONS(3442), + [anon_sym___inline__] = ACTIONS(3442), + [anon_sym___forceinline] = ACTIONS(3442), + [anon_sym_thread_local] = ACTIONS(3442), + [anon_sym___thread] = ACTIONS(3442), + [anon_sym_const] = ACTIONS(3442), + [anon_sym_constexpr] = ACTIONS(3442), + [anon_sym_volatile] = ACTIONS(3442), + [anon_sym_restrict] = ACTIONS(3442), + [anon_sym___restrict__] = ACTIONS(3442), + [anon_sym__Atomic] = ACTIONS(3442), + [anon_sym__Noreturn] = ACTIONS(3442), + [anon_sym_noreturn] = ACTIONS(3442), + [anon_sym_mutable] = ACTIONS(3442), + [anon_sym_constinit] = ACTIONS(3442), + [anon_sym_consteval] = ACTIONS(3442), + [sym_primitive_type] = ACTIONS(3442), + [anon_sym_enum] = ACTIONS(3442), + [anon_sym_class] = ACTIONS(3442), + [anon_sym_struct] = ACTIONS(3442), + [anon_sym_union] = ACTIONS(3442), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3442), + [anon_sym_decltype] = ACTIONS(3442), + [anon_sym_virtual] = ACTIONS(3442), + [anon_sym_alignas] = ACTIONS(3442), + [anon_sym_explicit] = ACTIONS(3442), + [anon_sym_typename] = ACTIONS(3442), + [anon_sym_template] = ACTIONS(3442), + [anon_sym_operator] = ACTIONS(3442), + [anon_sym_friend] = ACTIONS(3442), + [anon_sym_public] = ACTIONS(3442), + [anon_sym_private] = ACTIONS(3442), + [anon_sym_protected] = ACTIONS(3442), + [anon_sym_using] = ACTIONS(3442), + [anon_sym_static_assert] = ACTIONS(3442), + [sym_semgrep_metavar] = ACTIONS(3444), }, [1929] = { - [sym_catch_clause] = STATE(1928), - [aux_sym_constructor_try_statement_repeat1] = STATE(1928), - [sym_identifier] = ACTIONS(3070), - [aux_sym_preproc_def_token1] = ACTIONS(3070), - [aux_sym_preproc_if_token1] = ACTIONS(3070), - [aux_sym_preproc_if_token2] = ACTIONS(3070), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3070), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3070), - [aux_sym_preproc_else_token1] = ACTIONS(3070), - [aux_sym_preproc_elif_token1] = ACTIONS(3070), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3070), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3070), - [sym_preproc_directive] = ACTIONS(3070), - [anon_sym_LPAREN2] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3072), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_AMP] = ACTIONS(3070), - [anon_sym___extension__] = ACTIONS(3070), - [anon_sym_typedef] = ACTIONS(3070), - [anon_sym_extern] = ACTIONS(3070), - [anon_sym___attribute__] = ACTIONS(3070), - [anon_sym_COLON_COLON] = ACTIONS(3072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3072), - [anon_sym___declspec] = ACTIONS(3070), - [anon_sym___based] = ACTIONS(3070), - [anon_sym_signed] = ACTIONS(3070), - [anon_sym_unsigned] = ACTIONS(3070), - [anon_sym_long] = ACTIONS(3070), - [anon_sym_short] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(3070), - [anon_sym_static] = ACTIONS(3070), - [anon_sym_register] = ACTIONS(3070), - [anon_sym_inline] = ACTIONS(3070), - [anon_sym___inline] = ACTIONS(3070), - [anon_sym___inline__] = ACTIONS(3070), - [anon_sym___forceinline] = ACTIONS(3070), - [anon_sym_thread_local] = ACTIONS(3070), - [anon_sym___thread] = ACTIONS(3070), - [anon_sym_const] = ACTIONS(3070), - [anon_sym_constexpr] = ACTIONS(3070), - [anon_sym_volatile] = ACTIONS(3070), - [anon_sym_restrict] = ACTIONS(3070), - [anon_sym___restrict__] = ACTIONS(3070), - [anon_sym__Atomic] = ACTIONS(3070), - [anon_sym__Noreturn] = ACTIONS(3070), - [anon_sym_noreturn] = ACTIONS(3070), - [anon_sym_mutable] = ACTIONS(3070), - [anon_sym_constinit] = ACTIONS(3070), - [anon_sym_consteval] = ACTIONS(3070), - [sym_primitive_type] = ACTIONS(3070), - [anon_sym_enum] = ACTIONS(3070), - [anon_sym_class] = ACTIONS(3070), - [anon_sym_struct] = ACTIONS(3070), - [anon_sym_union] = ACTIONS(3070), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3070), - [anon_sym_decltype] = ACTIONS(3070), - [anon_sym_virtual] = ACTIONS(3070), - [anon_sym_alignas] = ACTIONS(3070), - [anon_sym_explicit] = ACTIONS(3070), - [anon_sym_typename] = ACTIONS(3070), - [anon_sym_template] = ACTIONS(3070), - [anon_sym_operator] = ACTIONS(3070), - [anon_sym_friend] = ACTIONS(3070), - [anon_sym_public] = ACTIONS(3070), - [anon_sym_private] = ACTIONS(3070), - [anon_sym_protected] = ACTIONS(3070), - [anon_sym_using] = ACTIONS(3070), - [anon_sym_static_assert] = ACTIONS(3070), - [anon_sym_catch] = ACTIONS(5716), + [sym_declaration_modifiers] = STATE(4979), + [sym_attribute_specifier] = STATE(4535), + [sym_attribute_declaration] = STATE(4535), + [sym_ms_declspec_modifier] = STATE(4535), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7264), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4535), + [sym_type_qualifier] = STATE(4535), + [sym_decltype] = STATE(9605), + [sym_virtual] = STATE(4535), + [sym_alignas_specifier] = STATE(4535), + [sym_explicit_function_specifier] = STATE(4979), + [sym_operator_cast] = STATE(7724), + [sym_constructor_specifiers] = STATE(4069), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(9605), + [sym_template_function] = STATE(7305), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6514), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_operator_cast_identifier] = STATE(7724), + [sym_operator_name] = STATE(7305), + [aux_sym_operator_cast_definition_repeat1] = STATE(4069), + [sym_identifier] = ACTIONS(5741), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(5743), + [anon_sym_extern] = ACTIONS(5745), + [anon_sym___attribute__] = ACTIONS(5747), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5749), + [anon_sym___declspec] = ACTIONS(5751), + [anon_sym___based] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(5745), + [anon_sym_register] = ACTIONS(5745), + [anon_sym_inline] = ACTIONS(5745), + [anon_sym___inline] = ACTIONS(5745), + [anon_sym___inline__] = ACTIONS(5745), + [anon_sym___forceinline] = ACTIONS(5745), + [anon_sym_thread_local] = ACTIONS(5745), + [anon_sym___thread] = ACTIONS(5745), + [anon_sym_const] = ACTIONS(5743), + [anon_sym_constexpr] = ACTIONS(5743), + [anon_sym_volatile] = ACTIONS(5743), + [anon_sym_restrict] = ACTIONS(5743), + [anon_sym___restrict__] = ACTIONS(5743), + [anon_sym__Atomic] = ACTIONS(5743), + [anon_sym__Noreturn] = ACTIONS(5743), + [anon_sym_noreturn] = ACTIONS(5743), + [anon_sym_mutable] = ACTIONS(5743), + [anon_sym_constinit] = ACTIONS(5743), + [anon_sym_consteval] = ACTIONS(5743), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_virtual] = ACTIONS(5753), + [anon_sym_alignas] = ACTIONS(5755), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_operator] = ACTIONS(135), }, [1930] = { - [sym_template_argument_list] = STATE(1918), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5462), - [anon_sym_COMMA] = ACTIONS(5462), - [anon_sym_RPAREN] = ACTIONS(5464), - [anon_sym_LPAREN2] = ACTIONS(5464), - [anon_sym_DASH] = ACTIONS(5469), - [anon_sym_PLUS] = ACTIONS(5469), - [anon_sym_STAR] = ACTIONS(5471), - [anon_sym_SLASH] = ACTIONS(5469), - [anon_sym_PERCENT] = ACTIONS(5469), - [anon_sym_PIPE_PIPE] = ACTIONS(5462), - [anon_sym_AMP_AMP] = ACTIONS(5464), - [anon_sym_PIPE] = ACTIONS(5469), - [anon_sym_CARET] = ACTIONS(5469), - [anon_sym_AMP] = ACTIONS(5471), - [anon_sym_EQ_EQ] = ACTIONS(5462), - [anon_sym_BANG_EQ] = ACTIONS(5462), - [anon_sym_GT] = ACTIONS(5469), - [anon_sym_GT_EQ] = ACTIONS(5462), - [anon_sym_LT_EQ] = ACTIONS(5469), - [anon_sym_LT] = ACTIONS(5740), - [anon_sym_LT_LT] = ACTIONS(5469), - [anon_sym_GT_GT] = ACTIONS(5469), - [anon_sym___extension__] = ACTIONS(5467), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5462), - [anon_sym_LBRACE] = ACTIONS(5467), - [anon_sym_LBRACK] = ACTIONS(5471), - [anon_sym_EQ] = ACTIONS(5469), - [anon_sym_const] = ACTIONS(5460), - [anon_sym_constexpr] = ACTIONS(5467), - [anon_sym_volatile] = ACTIONS(5467), - [anon_sym_restrict] = ACTIONS(5467), - [anon_sym___restrict__] = ACTIONS(5467), - [anon_sym__Atomic] = ACTIONS(5467), - [anon_sym__Noreturn] = ACTIONS(5467), - [anon_sym_noreturn] = ACTIONS(5467), - [anon_sym_mutable] = ACTIONS(5467), - [anon_sym_constinit] = ACTIONS(5467), - [anon_sym_consteval] = ACTIONS(5467), - [anon_sym_QMARK] = ACTIONS(5462), - [anon_sym_STAR_EQ] = ACTIONS(5462), - [anon_sym_SLASH_EQ] = ACTIONS(5462), - [anon_sym_PERCENT_EQ] = ACTIONS(5462), - [anon_sym_PLUS_EQ] = ACTIONS(5462), - [anon_sym_DASH_EQ] = ACTIONS(5462), - [anon_sym_LT_LT_EQ] = ACTIONS(5462), - [anon_sym_GT_GT_EQ] = ACTIONS(5462), - [anon_sym_AMP_EQ] = ACTIONS(5462), - [anon_sym_CARET_EQ] = ACTIONS(5462), - [anon_sym_PIPE_EQ] = ACTIONS(5462), - [anon_sym_and_eq] = ACTIONS(5462), - [anon_sym_or_eq] = ACTIONS(5462), - [anon_sym_xor_eq] = ACTIONS(5462), - [anon_sym_LT_EQ_GT] = ACTIONS(5462), - [anon_sym_or] = ACTIONS(5469), - [anon_sym_and] = ACTIONS(5469), - [anon_sym_bitor] = ACTIONS(5462), - [anon_sym_xor] = ACTIONS(5469), - [anon_sym_bitand] = ACTIONS(5462), - [anon_sym_not_eq] = ACTIONS(5462), - [anon_sym_DASH_DASH] = ACTIONS(5462), - [anon_sym_PLUS_PLUS] = ACTIONS(5462), - [anon_sym_DOT] = ACTIONS(5469), - [anon_sym_DOT_STAR] = ACTIONS(5462), - [anon_sym_DASH_GT] = ACTIONS(5469), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5467), - [anon_sym_decltype] = ACTIONS(5467), - [anon_sym_DASH_GT_STAR] = ACTIONS(5462), - [sym_semgrep_metavar] = ACTIONS(5467), + [sym_identifier] = ACTIONS(3513), + [aux_sym_preproc_def_token1] = ACTIONS(3513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3515), + [aux_sym_preproc_if_token1] = ACTIONS(3513), + [aux_sym_preproc_if_token2] = ACTIONS(3513), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3513), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3513), + [aux_sym_preproc_else_token1] = ACTIONS(3513), + [aux_sym_preproc_elif_token1] = ACTIONS(3513), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3513), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3513), + [sym_preproc_directive] = ACTIONS(3513), + [anon_sym_LPAREN2] = ACTIONS(3515), + [anon_sym_TILDE] = ACTIONS(3515), + [anon_sym_STAR] = ACTIONS(3515), + [anon_sym_AMP_AMP] = ACTIONS(3515), + [anon_sym_AMP] = ACTIONS(3513), + [anon_sym___extension__] = ACTIONS(3513), + [anon_sym_typedef] = ACTIONS(3513), + [anon_sym_extern] = ACTIONS(3513), + [anon_sym___attribute__] = ACTIONS(3513), + [anon_sym_COLON_COLON] = ACTIONS(3515), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3515), + [anon_sym___declspec] = ACTIONS(3513), + [anon_sym___based] = ACTIONS(3513), + [anon_sym_signed] = ACTIONS(3513), + [anon_sym_unsigned] = ACTIONS(3513), + [anon_sym_long] = ACTIONS(3513), + [anon_sym_short] = ACTIONS(3513), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_static] = ACTIONS(3513), + [anon_sym_register] = ACTIONS(3513), + [anon_sym_inline] = ACTIONS(3513), + [anon_sym___inline] = ACTIONS(3513), + [anon_sym___inline__] = ACTIONS(3513), + [anon_sym___forceinline] = ACTIONS(3513), + [anon_sym_thread_local] = ACTIONS(3513), + [anon_sym___thread] = ACTIONS(3513), + [anon_sym_const] = ACTIONS(3513), + [anon_sym_constexpr] = ACTIONS(3513), + [anon_sym_volatile] = ACTIONS(3513), + [anon_sym_restrict] = ACTIONS(3513), + [anon_sym___restrict__] = ACTIONS(3513), + [anon_sym__Atomic] = ACTIONS(3513), + [anon_sym__Noreturn] = ACTIONS(3513), + [anon_sym_noreturn] = ACTIONS(3513), + [anon_sym_mutable] = ACTIONS(3513), + [anon_sym_constinit] = ACTIONS(3513), + [anon_sym_consteval] = ACTIONS(3513), + [sym_primitive_type] = ACTIONS(3513), + [anon_sym_enum] = ACTIONS(3513), + [anon_sym_class] = ACTIONS(3513), + [anon_sym_struct] = ACTIONS(3513), + [anon_sym_union] = ACTIONS(3513), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3513), + [anon_sym_decltype] = ACTIONS(3513), + [anon_sym_virtual] = ACTIONS(3513), + [anon_sym_alignas] = ACTIONS(3513), + [anon_sym_explicit] = ACTIONS(3513), + [anon_sym_typename] = ACTIONS(3513), + [anon_sym_template] = ACTIONS(3513), + [anon_sym_operator] = ACTIONS(3513), + [anon_sym_friend] = ACTIONS(3513), + [anon_sym_public] = ACTIONS(3513), + [anon_sym_private] = ACTIONS(3513), + [anon_sym_protected] = ACTIONS(3513), + [anon_sym_using] = ACTIONS(3513), + [anon_sym_static_assert] = ACTIONS(3513), + [sym_semgrep_metavar] = ACTIONS(3515), }, [1931] = { - [sym_string_literal] = STATE(1885), - [sym_template_argument_list] = STATE(3012), - [sym_raw_string_literal] = STATE(1885), - [sym_identifier] = ACTIONS(4837), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [aux_sym_preproc_if_token2] = ACTIONS(4829), - [aux_sym_preproc_else_token1] = ACTIONS(4829), - [aux_sym_preproc_elif_token1] = ACTIONS(4837), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4829), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(4829), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(5743), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_EQ] = ACTIONS(4837), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4829), - [anon_sym_SLASH_EQ] = ACTIONS(4829), - [anon_sym_PERCENT_EQ] = ACTIONS(4829), - [anon_sym_PLUS_EQ] = ACTIONS(4829), - [anon_sym_DASH_EQ] = ACTIONS(4829), - [anon_sym_LT_LT_EQ] = ACTIONS(4829), - [anon_sym_GT_GT_EQ] = ACTIONS(4829), - [anon_sym_AMP_EQ] = ACTIONS(4829), - [anon_sym_CARET_EQ] = ACTIONS(4829), - [anon_sym_PIPE_EQ] = ACTIONS(4829), - [anon_sym_and_eq] = ACTIONS(4837), - [anon_sym_or_eq] = ACTIONS(4837), - [anon_sym_xor_eq] = ACTIONS(4837), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4837), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4837), - [anon_sym_not_eq] = ACTIONS(4837), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(2307), - [anon_sym_u_DQUOTE] = ACTIONS(2307), - [anon_sym_U_DQUOTE] = ACTIONS(2307), - [anon_sym_u8_DQUOTE] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(2317), - [anon_sym_LR_DQUOTE] = ACTIONS(2317), - [anon_sym_uR_DQUOTE] = ACTIONS(2317), - [anon_sym_UR_DQUOTE] = ACTIONS(2317), - [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [sym_identifier] = ACTIONS(3613), + [aux_sym_preproc_def_token1] = ACTIONS(3613), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3615), + [aux_sym_preproc_if_token1] = ACTIONS(3613), + [aux_sym_preproc_if_token2] = ACTIONS(3613), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3613), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3613), + [aux_sym_preproc_else_token1] = ACTIONS(3613), + [aux_sym_preproc_elif_token1] = ACTIONS(3613), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3613), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3613), + [sym_preproc_directive] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_TILDE] = ACTIONS(3615), + [anon_sym_STAR] = ACTIONS(3615), + [anon_sym_AMP_AMP] = ACTIONS(3615), + [anon_sym_AMP] = ACTIONS(3613), + [anon_sym___extension__] = ACTIONS(3613), + [anon_sym_typedef] = ACTIONS(3613), + [anon_sym_extern] = ACTIONS(3613), + [anon_sym___attribute__] = ACTIONS(3613), + [anon_sym_COLON_COLON] = ACTIONS(3615), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3615), + [anon_sym___declspec] = ACTIONS(3613), + [anon_sym___based] = ACTIONS(3613), + [anon_sym_signed] = ACTIONS(3613), + [anon_sym_unsigned] = ACTIONS(3613), + [anon_sym_long] = ACTIONS(3613), + [anon_sym_short] = ACTIONS(3613), + [anon_sym_LBRACK] = ACTIONS(3613), + [anon_sym_static] = ACTIONS(3613), + [anon_sym_register] = ACTIONS(3613), + [anon_sym_inline] = ACTIONS(3613), + [anon_sym___inline] = ACTIONS(3613), + [anon_sym___inline__] = ACTIONS(3613), + [anon_sym___forceinline] = ACTIONS(3613), + [anon_sym_thread_local] = ACTIONS(3613), + [anon_sym___thread] = ACTIONS(3613), + [anon_sym_const] = ACTIONS(3613), + [anon_sym_constexpr] = ACTIONS(3613), + [anon_sym_volatile] = ACTIONS(3613), + [anon_sym_restrict] = ACTIONS(3613), + [anon_sym___restrict__] = ACTIONS(3613), + [anon_sym__Atomic] = ACTIONS(3613), + [anon_sym__Noreturn] = ACTIONS(3613), + [anon_sym_noreturn] = ACTIONS(3613), + [anon_sym_mutable] = ACTIONS(3613), + [anon_sym_constinit] = ACTIONS(3613), + [anon_sym_consteval] = ACTIONS(3613), + [sym_primitive_type] = ACTIONS(3613), + [anon_sym_enum] = ACTIONS(3613), + [anon_sym_class] = ACTIONS(3613), + [anon_sym_struct] = ACTIONS(3613), + [anon_sym_union] = ACTIONS(3613), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3613), + [anon_sym_decltype] = ACTIONS(3613), + [anon_sym_virtual] = ACTIONS(3613), + [anon_sym_alignas] = ACTIONS(3613), + [anon_sym_explicit] = ACTIONS(3613), + [anon_sym_typename] = ACTIONS(3613), + [anon_sym_template] = ACTIONS(3613), + [anon_sym_operator] = ACTIONS(3613), + [anon_sym_friend] = ACTIONS(3613), + [anon_sym_public] = ACTIONS(3613), + [anon_sym_private] = ACTIONS(3613), + [anon_sym_protected] = ACTIONS(3613), + [anon_sym_using] = ACTIONS(3613), + [anon_sym_static_assert] = ACTIONS(3613), + [sym_semgrep_metavar] = ACTIONS(3615), }, [1932] = { - [sym_identifier] = ACTIONS(3078), - [aux_sym_preproc_def_token1] = ACTIONS(3078), - [anon_sym_COMMA] = ACTIONS(3187), - [aux_sym_preproc_if_token1] = ACTIONS(3078), - [aux_sym_preproc_if_token2] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3078), - [aux_sym_preproc_else_token1] = ACTIONS(3078), - [aux_sym_preproc_elif_token1] = ACTIONS(3078), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3078), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3078), - [sym_preproc_directive] = ACTIONS(3078), - [anon_sym_LPAREN2] = ACTIONS(3080), - [anon_sym_TILDE] = ACTIONS(3080), - [anon_sym_STAR] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym_SEMI] = ACTIONS(3187), - [anon_sym___extension__] = ACTIONS(3078), - [anon_sym_typedef] = ACTIONS(3078), - [anon_sym_extern] = ACTIONS(3078), - [anon_sym___attribute__] = ACTIONS(5746), - [anon_sym_COLON_COLON] = ACTIONS(3080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3080), - [anon_sym___declspec] = ACTIONS(3078), - [anon_sym___based] = ACTIONS(3078), - [anon_sym_signed] = ACTIONS(3078), - [anon_sym_unsigned] = ACTIONS(3078), - [anon_sym_long] = ACTIONS(3078), - [anon_sym_short] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_static] = ACTIONS(3078), - [anon_sym_register] = ACTIONS(3078), - [anon_sym_inline] = ACTIONS(3078), - [anon_sym___inline] = ACTIONS(3078), - [anon_sym___inline__] = ACTIONS(3078), - [anon_sym___forceinline] = ACTIONS(3078), - [anon_sym_thread_local] = ACTIONS(3078), - [anon_sym___thread] = ACTIONS(3078), - [anon_sym_const] = ACTIONS(3078), - [anon_sym_constexpr] = ACTIONS(3078), - [anon_sym_volatile] = ACTIONS(3078), - [anon_sym_restrict] = ACTIONS(3078), - [anon_sym___restrict__] = ACTIONS(3078), - [anon_sym__Atomic] = ACTIONS(3078), - [anon_sym__Noreturn] = ACTIONS(3078), - [anon_sym_noreturn] = ACTIONS(3078), - [anon_sym_mutable] = ACTIONS(3078), - [anon_sym_constinit] = ACTIONS(3078), - [anon_sym_consteval] = ACTIONS(3078), - [sym_primitive_type] = ACTIONS(3078), - [anon_sym_enum] = ACTIONS(3078), - [anon_sym_class] = ACTIONS(3078), - [anon_sym_struct] = ACTIONS(3078), - [anon_sym_union] = ACTIONS(3078), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3078), - [anon_sym_decltype] = ACTIONS(3078), - [anon_sym_virtual] = ACTIONS(3078), - [anon_sym_alignas] = ACTIONS(3078), - [anon_sym_explicit] = ACTIONS(3078), - [anon_sym_typename] = ACTIONS(3078), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_operator] = ACTIONS(3078), - [anon_sym_friend] = ACTIONS(3078), - [anon_sym_public] = ACTIONS(3078), - [anon_sym_private] = ACTIONS(3078), - [anon_sym_protected] = ACTIONS(3078), - [anon_sym_using] = ACTIONS(3078), - [anon_sym_static_assert] = ACTIONS(3078), + [sym_identifier] = ACTIONS(3619), + [aux_sym_preproc_def_token1] = ACTIONS(3619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3621), + [aux_sym_preproc_if_token1] = ACTIONS(3619), + [aux_sym_preproc_if_token2] = ACTIONS(3619), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3619), + [aux_sym_preproc_else_token1] = ACTIONS(3619), + [aux_sym_preproc_elif_token1] = ACTIONS(3619), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3619), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3619), + [sym_preproc_directive] = ACTIONS(3619), + [anon_sym_LPAREN2] = ACTIONS(3621), + [anon_sym_TILDE] = ACTIONS(3621), + [anon_sym_STAR] = ACTIONS(3621), + [anon_sym_AMP_AMP] = ACTIONS(3621), + [anon_sym_AMP] = ACTIONS(3619), + [anon_sym___extension__] = ACTIONS(3619), + [anon_sym_typedef] = ACTIONS(3619), + [anon_sym_extern] = ACTIONS(3619), + [anon_sym___attribute__] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3621), + [anon_sym___declspec] = ACTIONS(3619), + [anon_sym___based] = ACTIONS(3619), + [anon_sym_signed] = ACTIONS(3619), + [anon_sym_unsigned] = ACTIONS(3619), + [anon_sym_long] = ACTIONS(3619), + [anon_sym_short] = ACTIONS(3619), + [anon_sym_LBRACK] = ACTIONS(3619), + [anon_sym_static] = ACTIONS(3619), + [anon_sym_register] = ACTIONS(3619), + [anon_sym_inline] = ACTIONS(3619), + [anon_sym___inline] = ACTIONS(3619), + [anon_sym___inline__] = ACTIONS(3619), + [anon_sym___forceinline] = ACTIONS(3619), + [anon_sym_thread_local] = ACTIONS(3619), + [anon_sym___thread] = ACTIONS(3619), + [anon_sym_const] = ACTIONS(3619), + [anon_sym_constexpr] = ACTIONS(3619), + [anon_sym_volatile] = ACTIONS(3619), + [anon_sym_restrict] = ACTIONS(3619), + [anon_sym___restrict__] = ACTIONS(3619), + [anon_sym__Atomic] = ACTIONS(3619), + [anon_sym__Noreturn] = ACTIONS(3619), + [anon_sym_noreturn] = ACTIONS(3619), + [anon_sym_mutable] = ACTIONS(3619), + [anon_sym_constinit] = ACTIONS(3619), + [anon_sym_consteval] = ACTIONS(3619), + [sym_primitive_type] = ACTIONS(3619), + [anon_sym_enum] = ACTIONS(3619), + [anon_sym_class] = ACTIONS(3619), + [anon_sym_struct] = ACTIONS(3619), + [anon_sym_union] = ACTIONS(3619), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3619), + [anon_sym_decltype] = ACTIONS(3619), + [anon_sym_virtual] = ACTIONS(3619), + [anon_sym_alignas] = ACTIONS(3619), + [anon_sym_explicit] = ACTIONS(3619), + [anon_sym_typename] = ACTIONS(3619), + [anon_sym_template] = ACTIONS(3619), + [anon_sym_operator] = ACTIONS(3619), + [anon_sym_friend] = ACTIONS(3619), + [anon_sym_public] = ACTIONS(3619), + [anon_sym_private] = ACTIONS(3619), + [anon_sym_protected] = ACTIONS(3619), + [anon_sym_using] = ACTIONS(3619), + [anon_sym_static_assert] = ACTIONS(3619), + [sym_semgrep_metavar] = ACTIONS(3621), }, [1933] = { - [sym_declaration_modifiers] = STATE(5655), - [sym_attribute_specifier] = STATE(5060), - [sym_attribute_declaration] = STATE(5060), - [sym_ms_declspec_modifier] = STATE(5060), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7746), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(5060), - [sym_type_qualifier] = STATE(5060), - [sym_decltype] = STATE(9982), - [sym_virtual] = STATE(5060), - [sym_alignas_specifier] = STATE(5060), - [sym_explicit_function_specifier] = STATE(5655), - [sym_operator_cast] = STATE(8087), - [sym_constructor_specifiers] = STATE(4359), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(9982), - [sym_template_function] = STATE(7634), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6973), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_operator_cast_identifier] = STATE(8087), - [sym_operator_name] = STATE(7634), - [aux_sym_operator_cast_definition_repeat1] = STATE(4359), - [sym_identifier] = ACTIONS(5748), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(5750), - [anon_sym_extern] = ACTIONS(5752), - [anon_sym___attribute__] = ACTIONS(5754), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5756), - [anon_sym___declspec] = ACTIONS(5758), - [anon_sym___based] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(5752), - [anon_sym_register] = ACTIONS(5752), - [anon_sym_inline] = ACTIONS(5752), - [anon_sym___inline] = ACTIONS(5752), - [anon_sym___inline__] = ACTIONS(5752), - [anon_sym___forceinline] = ACTIONS(5752), - [anon_sym_thread_local] = ACTIONS(5752), - [anon_sym___thread] = ACTIONS(5752), - [anon_sym_const] = ACTIONS(5750), - [anon_sym_constexpr] = ACTIONS(5750), - [anon_sym_volatile] = ACTIONS(5750), - [anon_sym_restrict] = ACTIONS(5750), - [anon_sym___restrict__] = ACTIONS(5750), - [anon_sym__Atomic] = ACTIONS(5750), - [anon_sym__Noreturn] = ACTIONS(5750), - [anon_sym_noreturn] = ACTIONS(5750), - [anon_sym_mutable] = ACTIONS(5750), - [anon_sym_constinit] = ACTIONS(5750), - [anon_sym_consteval] = ACTIONS(5750), + [sym_identifier] = ACTIONS(3189), + [aux_sym_preproc_def_token1] = ACTIONS(3189), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), + [aux_sym_preproc_if_token1] = ACTIONS(3189), + [aux_sym_preproc_if_token2] = ACTIONS(3189), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3189), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3189), + [aux_sym_preproc_else_token1] = ACTIONS(3189), + [aux_sym_preproc_elif_token1] = ACTIONS(3189), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3189), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3189), + [sym_preproc_directive] = ACTIONS(3189), + [anon_sym_LPAREN2] = ACTIONS(3191), + [anon_sym_TILDE] = ACTIONS(3191), + [anon_sym_STAR] = ACTIONS(3191), + [anon_sym_AMP_AMP] = ACTIONS(3191), + [anon_sym_AMP] = ACTIONS(3189), + [anon_sym___extension__] = ACTIONS(3189), + [anon_sym_typedef] = ACTIONS(3189), + [anon_sym_extern] = ACTIONS(3189), + [anon_sym___attribute__] = ACTIONS(3189), + [anon_sym_COLON_COLON] = ACTIONS(3191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3191), + [anon_sym___declspec] = ACTIONS(3189), + [anon_sym___based] = ACTIONS(3189), + [anon_sym_signed] = ACTIONS(3189), + [anon_sym_unsigned] = ACTIONS(3189), + [anon_sym_long] = ACTIONS(3189), + [anon_sym_short] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_static] = ACTIONS(3189), + [anon_sym_register] = ACTIONS(3189), + [anon_sym_inline] = ACTIONS(3189), + [anon_sym___inline] = ACTIONS(3189), + [anon_sym___inline__] = ACTIONS(3189), + [anon_sym___forceinline] = ACTIONS(3189), + [anon_sym_thread_local] = ACTIONS(3189), + [anon_sym___thread] = ACTIONS(3189), + [anon_sym_const] = ACTIONS(3189), + [anon_sym_constexpr] = ACTIONS(3189), + [anon_sym_volatile] = ACTIONS(3189), + [anon_sym_restrict] = ACTIONS(3189), + [anon_sym___restrict__] = ACTIONS(3189), + [anon_sym__Atomic] = ACTIONS(3189), + [anon_sym__Noreturn] = ACTIONS(3189), + [anon_sym_noreturn] = ACTIONS(3189), + [anon_sym_mutable] = ACTIONS(3189), + [anon_sym_constinit] = ACTIONS(3189), + [anon_sym_consteval] = ACTIONS(3189), + [sym_primitive_type] = ACTIONS(3189), + [anon_sym_enum] = ACTIONS(3189), + [anon_sym_class] = ACTIONS(3189), + [anon_sym_struct] = ACTIONS(3189), + [anon_sym_union] = ACTIONS(3189), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_virtual] = ACTIONS(5760), - [anon_sym_alignas] = ACTIONS(5762), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_operator] = ACTIONS(135), + [sym_auto] = ACTIONS(3189), + [anon_sym_decltype] = ACTIONS(3189), + [anon_sym_virtual] = ACTIONS(3189), + [anon_sym_alignas] = ACTIONS(3189), + [anon_sym_explicit] = ACTIONS(3189), + [anon_sym_typename] = ACTIONS(3189), + [anon_sym_template] = ACTIONS(3189), + [anon_sym_operator] = ACTIONS(3189), + [anon_sym_friend] = ACTIONS(3189), + [anon_sym_public] = ACTIONS(3189), + [anon_sym_private] = ACTIONS(3189), + [anon_sym_protected] = ACTIONS(3189), + [anon_sym_using] = ACTIONS(3189), + [anon_sym_static_assert] = ACTIONS(3189), + [sym_semgrep_metavar] = ACTIONS(3191), }, [1934] = { - [sym_declaration_modifiers] = STATE(5655), - [sym_attribute_specifier] = STATE(5060), - [sym_attribute_declaration] = STATE(5060), - [sym_ms_declspec_modifier] = STATE(5060), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7656), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(5060), - [sym_type_qualifier] = STATE(5060), - [sym_decltype] = STATE(9982), - [sym_virtual] = STATE(5060), - [sym_alignas_specifier] = STATE(5060), - [sym_explicit_function_specifier] = STATE(5655), - [sym_operator_cast] = STATE(8102), - [sym_constructor_specifiers] = STATE(4359), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(9982), - [sym_template_function] = STATE(7634), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6973), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_operator_cast_identifier] = STATE(8102), - [sym_operator_name] = STATE(7634), - [aux_sym_operator_cast_definition_repeat1] = STATE(4359), - [sym_identifier] = ACTIONS(5748), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(5750), - [anon_sym_extern] = ACTIONS(5752), - [anon_sym___attribute__] = ACTIONS(5754), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5756), - [anon_sym___declspec] = ACTIONS(5758), - [anon_sym___based] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(5752), - [anon_sym_register] = ACTIONS(5752), - [anon_sym_inline] = ACTIONS(5752), - [anon_sym___inline] = ACTIONS(5752), - [anon_sym___inline__] = ACTIONS(5752), - [anon_sym___forceinline] = ACTIONS(5752), - [anon_sym_thread_local] = ACTIONS(5752), - [anon_sym___thread] = ACTIONS(5752), - [anon_sym_const] = ACTIONS(5750), - [anon_sym_constexpr] = ACTIONS(5750), - [anon_sym_volatile] = ACTIONS(5750), - [anon_sym_restrict] = ACTIONS(5750), - [anon_sym___restrict__] = ACTIONS(5750), - [anon_sym__Atomic] = ACTIONS(5750), - [anon_sym__Noreturn] = ACTIONS(5750), - [anon_sym_noreturn] = ACTIONS(5750), - [anon_sym_mutable] = ACTIONS(5750), - [anon_sym_constinit] = ACTIONS(5750), - [anon_sym_consteval] = ACTIONS(5750), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_virtual] = ACTIONS(5760), - [anon_sym_alignas] = ACTIONS(5762), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_operator] = ACTIONS(135), + [sym_argument_list] = STATE(2666), + [sym_initializer_list] = STATE(2666), + [sym_decltype_auto] = STATE(2235), + [sym_new_declarator] = STATE(2449), + [ts_builtin_sym_end] = ACTIONS(5757), + [sym_identifier] = ACTIONS(5759), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5757), + [anon_sym_COMMA] = ACTIONS(5757), + [anon_sym_RPAREN] = ACTIONS(5757), + [aux_sym_preproc_if_token2] = ACTIONS(5757), + [aux_sym_preproc_else_token1] = ACTIONS(5757), + [aux_sym_preproc_elif_token1] = ACTIONS(5759), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5757), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5757), + [anon_sym_LPAREN2] = ACTIONS(5761), + [anon_sym_DASH] = ACTIONS(5759), + [anon_sym_PLUS] = ACTIONS(5759), + [anon_sym_STAR] = ACTIONS(5759), + [anon_sym_SLASH] = ACTIONS(5759), + [anon_sym_PERCENT] = ACTIONS(5759), + [anon_sym_PIPE_PIPE] = ACTIONS(5757), + [anon_sym_AMP_AMP] = ACTIONS(5757), + [anon_sym_PIPE] = ACTIONS(5759), + [anon_sym_CARET] = ACTIONS(5759), + [anon_sym_AMP] = ACTIONS(5759), + [anon_sym_EQ_EQ] = ACTIONS(5757), + [anon_sym_BANG_EQ] = ACTIONS(5757), + [anon_sym_GT] = ACTIONS(5759), + [anon_sym_GT_EQ] = ACTIONS(5757), + [anon_sym_LT_EQ] = ACTIONS(5759), + [anon_sym_LT] = ACTIONS(5759), + [anon_sym_LT_LT] = ACTIONS(5759), + [anon_sym_GT_GT] = ACTIONS(5759), + [anon_sym_SEMI] = ACTIONS(5757), + [anon_sym___attribute__] = ACTIONS(5759), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_RBRACE] = ACTIONS(5757), + [anon_sym_LBRACK] = ACTIONS(5763), + [anon_sym_RBRACK] = ACTIONS(5757), + [anon_sym_EQ] = ACTIONS(5759), + [anon_sym_COLON] = ACTIONS(5757), + [anon_sym_QMARK] = ACTIONS(5757), + [anon_sym_STAR_EQ] = ACTIONS(5757), + [anon_sym_SLASH_EQ] = ACTIONS(5757), + [anon_sym_PERCENT_EQ] = ACTIONS(5757), + [anon_sym_PLUS_EQ] = ACTIONS(5757), + [anon_sym_DASH_EQ] = ACTIONS(5757), + [anon_sym_LT_LT_EQ] = ACTIONS(5757), + [anon_sym_GT_GT_EQ] = ACTIONS(5757), + [anon_sym_AMP_EQ] = ACTIONS(5757), + [anon_sym_CARET_EQ] = ACTIONS(5757), + [anon_sym_PIPE_EQ] = ACTIONS(5757), + [anon_sym_and_eq] = ACTIONS(5759), + [anon_sym_or_eq] = ACTIONS(5759), + [anon_sym_xor_eq] = ACTIONS(5759), + [anon_sym_LT_EQ_GT] = ACTIONS(5757), + [anon_sym_or] = ACTIONS(5759), + [anon_sym_and] = ACTIONS(5759), + [anon_sym_bitor] = ACTIONS(5759), + [anon_sym_xor] = ACTIONS(5759), + [anon_sym_bitand] = ACTIONS(5759), + [anon_sym_not_eq] = ACTIONS(5759), + [anon_sym_DASH_DASH] = ACTIONS(5757), + [anon_sym_PLUS_PLUS] = ACTIONS(5757), + [anon_sym_DOT] = ACTIONS(5759), + [anon_sym_DOT_STAR] = ACTIONS(5757), + [anon_sym_DASH_GT] = ACTIONS(5757), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5765), + [anon_sym_decltype] = ACTIONS(5767), }, [1935] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5502), - [anon_sym_COMMA] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(5502), - [anon_sym_LPAREN2] = ACTIONS(5502), - [anon_sym_DASH] = ACTIONS(5500), - [anon_sym_PLUS] = ACTIONS(5500), - [anon_sym_STAR] = ACTIONS(5500), - [anon_sym_SLASH] = ACTIONS(5500), - [anon_sym_PERCENT] = ACTIONS(5500), - [anon_sym_PIPE_PIPE] = ACTIONS(5502), - [anon_sym_AMP_AMP] = ACTIONS(5502), - [anon_sym_PIPE] = ACTIONS(5500), - [anon_sym_CARET] = ACTIONS(5500), - [anon_sym_AMP] = ACTIONS(5500), - [anon_sym_EQ_EQ] = ACTIONS(5502), - [anon_sym_BANG_EQ] = ACTIONS(5502), - [anon_sym_GT] = ACTIONS(5500), - [anon_sym_GT_EQ] = ACTIONS(5502), - [anon_sym_LT_EQ] = ACTIONS(5500), - [anon_sym_LT] = ACTIONS(5500), - [anon_sym_LT_LT] = ACTIONS(5500), - [anon_sym_GT_GT] = ACTIONS(5500), - [anon_sym___extension__] = ACTIONS(5502), - [anon_sym_COLON_COLON] = ACTIONS(5502), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5502), - [anon_sym_LBRACE] = ACTIONS(5502), - [anon_sym_LBRACK] = ACTIONS(5500), - [anon_sym_EQ] = ACTIONS(5500), - [anon_sym_const] = ACTIONS(5500), - [anon_sym_constexpr] = ACTIONS(5502), - [anon_sym_volatile] = ACTIONS(5502), - [anon_sym_restrict] = ACTIONS(5502), - [anon_sym___restrict__] = ACTIONS(5502), - [anon_sym__Atomic] = ACTIONS(5502), - [anon_sym__Noreturn] = ACTIONS(5502), - [anon_sym_noreturn] = ACTIONS(5502), - [anon_sym_mutable] = ACTIONS(5502), - [anon_sym_constinit] = ACTIONS(5502), - [anon_sym_consteval] = ACTIONS(5502), - [anon_sym_QMARK] = ACTIONS(5502), - [anon_sym_STAR_EQ] = ACTIONS(5502), - [anon_sym_SLASH_EQ] = ACTIONS(5502), - [anon_sym_PERCENT_EQ] = ACTIONS(5502), - [anon_sym_PLUS_EQ] = ACTIONS(5502), - [anon_sym_DASH_EQ] = ACTIONS(5502), - [anon_sym_LT_LT_EQ] = ACTIONS(5502), - [anon_sym_GT_GT_EQ] = ACTIONS(5502), - [anon_sym_AMP_EQ] = ACTIONS(5502), - [anon_sym_CARET_EQ] = ACTIONS(5502), - [anon_sym_PIPE_EQ] = ACTIONS(5502), - [anon_sym_and_eq] = ACTIONS(5502), - [anon_sym_or_eq] = ACTIONS(5502), - [anon_sym_xor_eq] = ACTIONS(5502), - [anon_sym_LT_EQ_GT] = ACTIONS(5502), - [anon_sym_or] = ACTIONS(5500), - [anon_sym_and] = ACTIONS(5500), - [anon_sym_bitor] = ACTIONS(5502), - [anon_sym_xor] = ACTIONS(5500), - [anon_sym_bitand] = ACTIONS(5502), - [anon_sym_not_eq] = ACTIONS(5502), - [anon_sym_DASH_DASH] = ACTIONS(5502), - [anon_sym_PLUS_PLUS] = ACTIONS(5502), - [anon_sym_DOT] = ACTIONS(5500), - [anon_sym_DOT_STAR] = ACTIONS(5502), - [anon_sym_DASH_GT] = ACTIONS(5500), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5502), - [anon_sym_decltype] = ACTIONS(5502), - [anon_sym_DASH_GT_STAR] = ACTIONS(5502), - [sym_semgrep_metavar] = ACTIONS(5502), + [sym_identifier] = ACTIONS(5769), + [aux_sym_preproc_def_token1] = ACTIONS(5769), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5771), + [aux_sym_preproc_if_token1] = ACTIONS(5769), + [aux_sym_preproc_if_token2] = ACTIONS(5769), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5769), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5769), + [aux_sym_preproc_else_token1] = ACTIONS(5769), + [aux_sym_preproc_elif_token1] = ACTIONS(5769), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5769), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5769), + [sym_preproc_directive] = ACTIONS(5769), + [anon_sym_LPAREN2] = ACTIONS(5771), + [anon_sym_TILDE] = ACTIONS(5771), + [anon_sym_STAR] = ACTIONS(5771), + [anon_sym_AMP_AMP] = ACTIONS(5771), + [anon_sym_AMP] = ACTIONS(5769), + [anon_sym___extension__] = ACTIONS(5769), + [anon_sym_typedef] = ACTIONS(5769), + [anon_sym_extern] = ACTIONS(5769), + [anon_sym___attribute__] = ACTIONS(5769), + [anon_sym_COLON_COLON] = ACTIONS(5771), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5771), + [anon_sym___declspec] = ACTIONS(5769), + [anon_sym___based] = ACTIONS(5769), + [anon_sym_signed] = ACTIONS(5769), + [anon_sym_unsigned] = ACTIONS(5769), + [anon_sym_long] = ACTIONS(5769), + [anon_sym_short] = ACTIONS(5769), + [anon_sym_LBRACK] = ACTIONS(5769), + [anon_sym_static] = ACTIONS(5769), + [anon_sym_register] = ACTIONS(5769), + [anon_sym_inline] = ACTIONS(5769), + [anon_sym___inline] = ACTIONS(5769), + [anon_sym___inline__] = ACTIONS(5769), + [anon_sym___forceinline] = ACTIONS(5769), + [anon_sym_thread_local] = ACTIONS(5769), + [anon_sym___thread] = ACTIONS(5769), + [anon_sym_const] = ACTIONS(5769), + [anon_sym_constexpr] = ACTIONS(5769), + [anon_sym_volatile] = ACTIONS(5769), + [anon_sym_restrict] = ACTIONS(5769), + [anon_sym___restrict__] = ACTIONS(5769), + [anon_sym__Atomic] = ACTIONS(5769), + [anon_sym__Noreturn] = ACTIONS(5769), + [anon_sym_noreturn] = ACTIONS(5769), + [anon_sym_mutable] = ACTIONS(5769), + [anon_sym_constinit] = ACTIONS(5769), + [anon_sym_consteval] = ACTIONS(5769), + [sym_primitive_type] = ACTIONS(5769), + [anon_sym_enum] = ACTIONS(5769), + [anon_sym_class] = ACTIONS(5769), + [anon_sym_struct] = ACTIONS(5769), + [anon_sym_union] = ACTIONS(5769), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5769), + [anon_sym_decltype] = ACTIONS(5769), + [anon_sym_virtual] = ACTIONS(5769), + [anon_sym_alignas] = ACTIONS(5769), + [anon_sym_explicit] = ACTIONS(5769), + [anon_sym_typename] = ACTIONS(5769), + [anon_sym_template] = ACTIONS(5769), + [anon_sym_operator] = ACTIONS(5769), + [anon_sym_friend] = ACTIONS(5769), + [anon_sym_public] = ACTIONS(5769), + [anon_sym_private] = ACTIONS(5769), + [anon_sym_protected] = ACTIONS(5769), + [anon_sym_using] = ACTIONS(5769), + [anon_sym_static_assert] = ACTIONS(5769), + [sym_semgrep_metavar] = ACTIONS(5771), }, [1936] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5498), - [anon_sym_COMMA] = ACTIONS(5498), - [anon_sym_RPAREN] = ACTIONS(5498), - [anon_sym_LPAREN2] = ACTIONS(5498), - [anon_sym_DASH] = ACTIONS(5496), - [anon_sym_PLUS] = ACTIONS(5496), - [anon_sym_STAR] = ACTIONS(5496), - [anon_sym_SLASH] = ACTIONS(5496), - [anon_sym_PERCENT] = ACTIONS(5496), - [anon_sym_PIPE_PIPE] = ACTIONS(5498), - [anon_sym_AMP_AMP] = ACTIONS(5498), - [anon_sym_PIPE] = ACTIONS(5496), - [anon_sym_CARET] = ACTIONS(5496), - [anon_sym_AMP] = ACTIONS(5496), - [anon_sym_EQ_EQ] = ACTIONS(5498), - [anon_sym_BANG_EQ] = ACTIONS(5498), - [anon_sym_GT] = ACTIONS(5496), - [anon_sym_GT_EQ] = ACTIONS(5498), - [anon_sym_LT_EQ] = ACTIONS(5496), - [anon_sym_LT] = ACTIONS(5496), - [anon_sym_LT_LT] = ACTIONS(5496), - [anon_sym_GT_GT] = ACTIONS(5496), - [anon_sym___extension__] = ACTIONS(5498), - [anon_sym_COLON_COLON] = ACTIONS(5498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5498), - [anon_sym_LBRACE] = ACTIONS(5498), - [anon_sym_LBRACK] = ACTIONS(5496), - [anon_sym_EQ] = ACTIONS(5496), - [anon_sym_const] = ACTIONS(5496), - [anon_sym_constexpr] = ACTIONS(5498), - [anon_sym_volatile] = ACTIONS(5498), - [anon_sym_restrict] = ACTIONS(5498), - [anon_sym___restrict__] = ACTIONS(5498), - [anon_sym__Atomic] = ACTIONS(5498), - [anon_sym__Noreturn] = ACTIONS(5498), - [anon_sym_noreturn] = ACTIONS(5498), - [anon_sym_mutable] = ACTIONS(5498), - [anon_sym_constinit] = ACTIONS(5498), - [anon_sym_consteval] = ACTIONS(5498), - [anon_sym_QMARK] = ACTIONS(5498), - [anon_sym_STAR_EQ] = ACTIONS(5498), - [anon_sym_SLASH_EQ] = ACTIONS(5498), - [anon_sym_PERCENT_EQ] = ACTIONS(5498), - [anon_sym_PLUS_EQ] = ACTIONS(5498), - [anon_sym_DASH_EQ] = ACTIONS(5498), - [anon_sym_LT_LT_EQ] = ACTIONS(5498), - [anon_sym_GT_GT_EQ] = ACTIONS(5498), - [anon_sym_AMP_EQ] = ACTIONS(5498), - [anon_sym_CARET_EQ] = ACTIONS(5498), - [anon_sym_PIPE_EQ] = ACTIONS(5498), - [anon_sym_and_eq] = ACTIONS(5498), - [anon_sym_or_eq] = ACTIONS(5498), - [anon_sym_xor_eq] = ACTIONS(5498), - [anon_sym_LT_EQ_GT] = ACTIONS(5498), - [anon_sym_or] = ACTIONS(5496), - [anon_sym_and] = ACTIONS(5496), - [anon_sym_bitor] = ACTIONS(5498), - [anon_sym_xor] = ACTIONS(5496), - [anon_sym_bitand] = ACTIONS(5498), - [anon_sym_not_eq] = ACTIONS(5498), - [anon_sym_DASH_DASH] = ACTIONS(5498), - [anon_sym_PLUS_PLUS] = ACTIONS(5498), - [anon_sym_DOT] = ACTIONS(5496), - [anon_sym_DOT_STAR] = ACTIONS(5498), - [anon_sym_DASH_GT] = ACTIONS(5496), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5498), - [anon_sym_decltype] = ACTIONS(5498), - [anon_sym_DASH_GT_STAR] = ACTIONS(5498), - [sym_semgrep_metavar] = ACTIONS(5498), + [sym_identifier] = ACTIONS(3684), + [aux_sym_preproc_def_token1] = ACTIONS(3684), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3686), + [aux_sym_preproc_if_token1] = ACTIONS(3684), + [aux_sym_preproc_if_token2] = ACTIONS(3684), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3684), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3684), + [aux_sym_preproc_else_token1] = ACTIONS(3684), + [aux_sym_preproc_elif_token1] = ACTIONS(3684), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3684), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3684), + [sym_preproc_directive] = ACTIONS(3684), + [anon_sym_LPAREN2] = ACTIONS(3686), + [anon_sym_TILDE] = ACTIONS(3686), + [anon_sym_STAR] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3686), + [anon_sym_AMP] = ACTIONS(3684), + [anon_sym___extension__] = ACTIONS(3684), + [anon_sym_typedef] = ACTIONS(3684), + [anon_sym_extern] = ACTIONS(3684), + [anon_sym___attribute__] = ACTIONS(3684), + [anon_sym_COLON_COLON] = ACTIONS(3686), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3686), + [anon_sym___declspec] = ACTIONS(3684), + [anon_sym___based] = ACTIONS(3684), + [anon_sym_signed] = ACTIONS(3684), + [anon_sym_unsigned] = ACTIONS(3684), + [anon_sym_long] = ACTIONS(3684), + [anon_sym_short] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3684), + [anon_sym_static] = ACTIONS(3684), + [anon_sym_register] = ACTIONS(3684), + [anon_sym_inline] = ACTIONS(3684), + [anon_sym___inline] = ACTIONS(3684), + [anon_sym___inline__] = ACTIONS(3684), + [anon_sym___forceinline] = ACTIONS(3684), + [anon_sym_thread_local] = ACTIONS(3684), + [anon_sym___thread] = ACTIONS(3684), + [anon_sym_const] = ACTIONS(3684), + [anon_sym_constexpr] = ACTIONS(3684), + [anon_sym_volatile] = ACTIONS(3684), + [anon_sym_restrict] = ACTIONS(3684), + [anon_sym___restrict__] = ACTIONS(3684), + [anon_sym__Atomic] = ACTIONS(3684), + [anon_sym__Noreturn] = ACTIONS(3684), + [anon_sym_noreturn] = ACTIONS(3684), + [anon_sym_mutable] = ACTIONS(3684), + [anon_sym_constinit] = ACTIONS(3684), + [anon_sym_consteval] = ACTIONS(3684), + [sym_primitive_type] = ACTIONS(3684), + [anon_sym_enum] = ACTIONS(3684), + [anon_sym_class] = ACTIONS(3684), + [anon_sym_struct] = ACTIONS(3684), + [anon_sym_union] = ACTIONS(3684), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3684), + [anon_sym_decltype] = ACTIONS(3684), + [anon_sym_virtual] = ACTIONS(3684), + [anon_sym_alignas] = ACTIONS(3684), + [anon_sym_explicit] = ACTIONS(3684), + [anon_sym_typename] = ACTIONS(3684), + [anon_sym_template] = ACTIONS(3684), + [anon_sym_operator] = ACTIONS(3684), + [anon_sym_friend] = ACTIONS(3684), + [anon_sym_public] = ACTIONS(3684), + [anon_sym_private] = ACTIONS(3684), + [anon_sym_protected] = ACTIONS(3684), + [anon_sym_using] = ACTIONS(3684), + [anon_sym_static_assert] = ACTIONS(3684), + [sym_semgrep_metavar] = ACTIONS(3686), }, [1937] = { - [sym_declaration_modifiers] = STATE(5655), - [sym_attribute_specifier] = STATE(5060), - [sym_attribute_declaration] = STATE(5060), - [sym_ms_declspec_modifier] = STATE(5060), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7756), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(5060), - [sym_type_qualifier] = STATE(5060), - [sym_decltype] = STATE(9982), - [sym_virtual] = STATE(5060), - [sym_alignas_specifier] = STATE(5060), - [sym_explicit_function_specifier] = STATE(5655), - [sym_operator_cast] = STATE(8097), - [sym_constructor_specifiers] = STATE(4359), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(9982), - [sym_template_function] = STATE(7634), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6973), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_operator_cast_identifier] = STATE(8097), - [sym_operator_name] = STATE(7634), - [aux_sym_operator_cast_definition_repeat1] = STATE(4359), - [sym_identifier] = ACTIONS(5748), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [sym_declaration_modifiers] = STATE(4979), + [sym_attribute_specifier] = STATE(4535), + [sym_attribute_declaration] = STATE(4535), + [sym_ms_declspec_modifier] = STATE(4535), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7267), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4535), + [sym_type_qualifier] = STATE(4535), + [sym_decltype] = STATE(9605), + [sym_virtual] = STATE(4535), + [sym_alignas_specifier] = STATE(4535), + [sym_explicit_function_specifier] = STATE(4979), + [sym_operator_cast] = STATE(7760), + [sym_constructor_specifiers] = STATE(4069), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(9605), + [sym_template_function] = STATE(7305), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6514), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_operator_cast_identifier] = STATE(7760), + [sym_operator_name] = STATE(7305), + [aux_sym_operator_cast_definition_repeat1] = STATE(4069), + [sym_identifier] = ACTIONS(5741), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(5750), - [anon_sym_extern] = ACTIONS(5752), - [anon_sym___attribute__] = ACTIONS(5754), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5756), - [anon_sym___declspec] = ACTIONS(5758), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(5743), + [anon_sym_extern] = ACTIONS(5745), + [anon_sym___attribute__] = ACTIONS(5747), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5749), + [anon_sym___declspec] = ACTIONS(5751), [anon_sym___based] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(5752), - [anon_sym_register] = ACTIONS(5752), - [anon_sym_inline] = ACTIONS(5752), - [anon_sym___inline] = ACTIONS(5752), - [anon_sym___inline__] = ACTIONS(5752), - [anon_sym___forceinline] = ACTIONS(5752), - [anon_sym_thread_local] = ACTIONS(5752), - [anon_sym___thread] = ACTIONS(5752), - [anon_sym_const] = ACTIONS(5750), - [anon_sym_constexpr] = ACTIONS(5750), - [anon_sym_volatile] = ACTIONS(5750), - [anon_sym_restrict] = ACTIONS(5750), - [anon_sym___restrict__] = ACTIONS(5750), - [anon_sym__Atomic] = ACTIONS(5750), - [anon_sym__Noreturn] = ACTIONS(5750), - [anon_sym_noreturn] = ACTIONS(5750), - [anon_sym_mutable] = ACTIONS(5750), - [anon_sym_constinit] = ACTIONS(5750), - [anon_sym_consteval] = ACTIONS(5750), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(5745), + [anon_sym_register] = ACTIONS(5745), + [anon_sym_inline] = ACTIONS(5745), + [anon_sym___inline] = ACTIONS(5745), + [anon_sym___inline__] = ACTIONS(5745), + [anon_sym___forceinline] = ACTIONS(5745), + [anon_sym_thread_local] = ACTIONS(5745), + [anon_sym___thread] = ACTIONS(5745), + [anon_sym_const] = ACTIONS(5743), + [anon_sym_constexpr] = ACTIONS(5743), + [anon_sym_volatile] = ACTIONS(5743), + [anon_sym_restrict] = ACTIONS(5743), + [anon_sym___restrict__] = ACTIONS(5743), + [anon_sym__Atomic] = ACTIONS(5743), + [anon_sym__Noreturn] = ACTIONS(5743), + [anon_sym_noreturn] = ACTIONS(5743), + [anon_sym_mutable] = ACTIONS(5743), + [anon_sym_constinit] = ACTIONS(5743), + [anon_sym_consteval] = ACTIONS(5743), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_virtual] = ACTIONS(5760), - [anon_sym_alignas] = ACTIONS(5762), + [anon_sym_virtual] = ACTIONS(5753), + [anon_sym_alignas] = ACTIONS(5755), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_operator] = ACTIONS(135), }, [1938] = { - [sym_declaration_modifiers] = STATE(5655), - [sym_attribute_specifier] = STATE(5060), - [sym_attribute_declaration] = STATE(5060), - [sym_ms_declspec_modifier] = STATE(5060), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7670), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(5060), - [sym_type_qualifier] = STATE(5060), - [sym_decltype] = STATE(9982), - [sym_virtual] = STATE(5060), - [sym_alignas_specifier] = STATE(5060), - [sym_explicit_function_specifier] = STATE(5655), - [sym_operator_cast] = STATE(8087), - [sym_constructor_specifiers] = STATE(4359), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(9982), - [sym_template_function] = STATE(7634), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6973), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_operator_cast_identifier] = STATE(8087), - [sym_operator_name] = STATE(7634), - [aux_sym_operator_cast_definition_repeat1] = STATE(4359), - [sym_identifier] = ACTIONS(5748), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [sym_declaration_modifiers] = STATE(4979), + [sym_attribute_specifier] = STATE(4535), + [sym_attribute_declaration] = STATE(4535), + [sym_ms_declspec_modifier] = STATE(4535), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7235), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4535), + [sym_type_qualifier] = STATE(4535), + [sym_decltype] = STATE(9605), + [sym_virtual] = STATE(4535), + [sym_alignas_specifier] = STATE(4535), + [sym_explicit_function_specifier] = STATE(4979), + [sym_operator_cast] = STATE(7732), + [sym_constructor_specifiers] = STATE(4069), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(9605), + [sym_template_function] = STATE(7305), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6514), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_operator_cast_identifier] = STATE(7732), + [sym_operator_name] = STATE(7305), + [aux_sym_operator_cast_definition_repeat1] = STATE(4069), + [sym_identifier] = ACTIONS(5741), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(5750), - [anon_sym_extern] = ACTIONS(5752), - [anon_sym___attribute__] = ACTIONS(5754), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5756), - [anon_sym___declspec] = ACTIONS(5758), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(5743), + [anon_sym_extern] = ACTIONS(5745), + [anon_sym___attribute__] = ACTIONS(5747), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5749), + [anon_sym___declspec] = ACTIONS(5751), [anon_sym___based] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(5752), - [anon_sym_register] = ACTIONS(5752), - [anon_sym_inline] = ACTIONS(5752), - [anon_sym___inline] = ACTIONS(5752), - [anon_sym___inline__] = ACTIONS(5752), - [anon_sym___forceinline] = ACTIONS(5752), - [anon_sym_thread_local] = ACTIONS(5752), - [anon_sym___thread] = ACTIONS(5752), - [anon_sym_const] = ACTIONS(5750), - [anon_sym_constexpr] = ACTIONS(5750), - [anon_sym_volatile] = ACTIONS(5750), - [anon_sym_restrict] = ACTIONS(5750), - [anon_sym___restrict__] = ACTIONS(5750), - [anon_sym__Atomic] = ACTIONS(5750), - [anon_sym__Noreturn] = ACTIONS(5750), - [anon_sym_noreturn] = ACTIONS(5750), - [anon_sym_mutable] = ACTIONS(5750), - [anon_sym_constinit] = ACTIONS(5750), - [anon_sym_consteval] = ACTIONS(5750), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(5745), + [anon_sym_register] = ACTIONS(5745), + [anon_sym_inline] = ACTIONS(5745), + [anon_sym___inline] = ACTIONS(5745), + [anon_sym___inline__] = ACTIONS(5745), + [anon_sym___forceinline] = ACTIONS(5745), + [anon_sym_thread_local] = ACTIONS(5745), + [anon_sym___thread] = ACTIONS(5745), + [anon_sym_const] = ACTIONS(5743), + [anon_sym_constexpr] = ACTIONS(5743), + [anon_sym_volatile] = ACTIONS(5743), + [anon_sym_restrict] = ACTIONS(5743), + [anon_sym___restrict__] = ACTIONS(5743), + [anon_sym__Atomic] = ACTIONS(5743), + [anon_sym__Noreturn] = ACTIONS(5743), + [anon_sym_noreturn] = ACTIONS(5743), + [anon_sym_mutable] = ACTIONS(5743), + [anon_sym_constinit] = ACTIONS(5743), + [anon_sym_consteval] = ACTIONS(5743), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_virtual] = ACTIONS(5760), - [anon_sym_alignas] = ACTIONS(5762), + [anon_sym_virtual] = ACTIONS(5753), + [anon_sym_alignas] = ACTIONS(5755), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_operator] = ACTIONS(135), }, [1939] = { - [sym_declaration_modifiers] = STATE(5655), - [sym_attribute_specifier] = STATE(5060), - [sym_attribute_declaration] = STATE(5060), - [sym_ms_declspec_modifier] = STATE(5060), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7701), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(5060), - [sym_type_qualifier] = STATE(5060), - [sym_decltype] = STATE(9982), - [sym_virtual] = STATE(5060), - [sym_alignas_specifier] = STATE(5060), - [sym_explicit_function_specifier] = STATE(5655), - [sym_operator_cast] = STATE(8097), - [sym_constructor_specifiers] = STATE(4359), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(9982), - [sym_template_function] = STATE(7634), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6973), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_operator_cast_identifier] = STATE(8097), - [sym_operator_name] = STATE(7634), - [aux_sym_operator_cast_definition_repeat1] = STATE(4359), - [sym_identifier] = ACTIONS(5748), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(5750), - [anon_sym_extern] = ACTIONS(5752), - [anon_sym___attribute__] = ACTIONS(5754), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5756), - [anon_sym___declspec] = ACTIONS(5758), - [anon_sym___based] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(5752), - [anon_sym_register] = ACTIONS(5752), - [anon_sym_inline] = ACTIONS(5752), - [anon_sym___inline] = ACTIONS(5752), - [anon_sym___inline__] = ACTIONS(5752), - [anon_sym___forceinline] = ACTIONS(5752), - [anon_sym_thread_local] = ACTIONS(5752), - [anon_sym___thread] = ACTIONS(5752), - [anon_sym_const] = ACTIONS(5750), - [anon_sym_constexpr] = ACTIONS(5750), - [anon_sym_volatile] = ACTIONS(5750), - [anon_sym_restrict] = ACTIONS(5750), - [anon_sym___restrict__] = ACTIONS(5750), - [anon_sym__Atomic] = ACTIONS(5750), - [anon_sym__Noreturn] = ACTIONS(5750), - [anon_sym_noreturn] = ACTIONS(5750), - [anon_sym_mutable] = ACTIONS(5750), - [anon_sym_constinit] = ACTIONS(5750), - [anon_sym_consteval] = ACTIONS(5750), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_virtual] = ACTIONS(5760), - [anon_sym_alignas] = ACTIONS(5762), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_operator] = ACTIONS(135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5400), + [anon_sym_COMMA] = ACTIONS(5400), + [anon_sym_RPAREN] = ACTIONS(5400), + [anon_sym_LPAREN2] = ACTIONS(5400), + [anon_sym_DASH] = ACTIONS(5398), + [anon_sym_PLUS] = ACTIONS(5398), + [anon_sym_STAR] = ACTIONS(5398), + [anon_sym_SLASH] = ACTIONS(5398), + [anon_sym_PERCENT] = ACTIONS(5398), + [anon_sym_PIPE_PIPE] = ACTIONS(5400), + [anon_sym_AMP_AMP] = ACTIONS(5400), + [anon_sym_PIPE] = ACTIONS(5398), + [anon_sym_CARET] = ACTIONS(5398), + [anon_sym_AMP] = ACTIONS(5398), + [anon_sym_EQ_EQ] = ACTIONS(5400), + [anon_sym_BANG_EQ] = ACTIONS(5400), + [anon_sym_GT] = ACTIONS(5398), + [anon_sym_GT_EQ] = ACTIONS(5400), + [anon_sym_LT_EQ] = ACTIONS(5398), + [anon_sym_LT] = ACTIONS(5398), + [anon_sym_LT_LT] = ACTIONS(5398), + [anon_sym_GT_GT] = ACTIONS(5398), + [anon_sym___extension__] = ACTIONS(5400), + [anon_sym_COLON_COLON] = ACTIONS(5400), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5400), + [anon_sym_LBRACE] = ACTIONS(5400), + [anon_sym_LBRACK] = ACTIONS(5398), + [anon_sym_EQ] = ACTIONS(5398), + [anon_sym_const] = ACTIONS(5398), + [anon_sym_constexpr] = ACTIONS(5400), + [anon_sym_volatile] = ACTIONS(5400), + [anon_sym_restrict] = ACTIONS(5400), + [anon_sym___restrict__] = ACTIONS(5400), + [anon_sym__Atomic] = ACTIONS(5400), + [anon_sym__Noreturn] = ACTIONS(5400), + [anon_sym_noreturn] = ACTIONS(5400), + [anon_sym_mutable] = ACTIONS(5400), + [anon_sym_constinit] = ACTIONS(5400), + [anon_sym_consteval] = ACTIONS(5400), + [anon_sym_QMARK] = ACTIONS(5400), + [anon_sym_STAR_EQ] = ACTIONS(5400), + [anon_sym_SLASH_EQ] = ACTIONS(5400), + [anon_sym_PERCENT_EQ] = ACTIONS(5400), + [anon_sym_PLUS_EQ] = ACTIONS(5400), + [anon_sym_DASH_EQ] = ACTIONS(5400), + [anon_sym_LT_LT_EQ] = ACTIONS(5400), + [anon_sym_GT_GT_EQ] = ACTIONS(5400), + [anon_sym_AMP_EQ] = ACTIONS(5400), + [anon_sym_CARET_EQ] = ACTIONS(5400), + [anon_sym_PIPE_EQ] = ACTIONS(5400), + [anon_sym_and_eq] = ACTIONS(5400), + [anon_sym_or_eq] = ACTIONS(5400), + [anon_sym_xor_eq] = ACTIONS(5400), + [anon_sym_LT_EQ_GT] = ACTIONS(5400), + [anon_sym_or] = ACTIONS(5398), + [anon_sym_and] = ACTIONS(5398), + [anon_sym_bitor] = ACTIONS(5400), + [anon_sym_xor] = ACTIONS(5398), + [anon_sym_bitand] = ACTIONS(5400), + [anon_sym_not_eq] = ACTIONS(5400), + [anon_sym_DASH_DASH] = ACTIONS(5400), + [anon_sym_PLUS_PLUS] = ACTIONS(5400), + [anon_sym_DOT] = ACTIONS(5398), + [anon_sym_DOT_STAR] = ACTIONS(5400), + [anon_sym_DASH_GT] = ACTIONS(5398), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5400), + [anon_sym_decltype] = ACTIONS(5400), + [anon_sym_DASH_GT_STAR] = ACTIONS(5400), + [sym_semgrep_metavar] = ACTIONS(5400), }, [1940] = { - [sym_declaration_modifiers] = STATE(5655), - [sym_attribute_specifier] = STATE(5060), - [sym_attribute_declaration] = STATE(5060), - [sym_ms_declspec_modifier] = STATE(5060), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7625), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(5060), - [sym_type_qualifier] = STATE(5060), - [sym_decltype] = STATE(9982), - [sym_virtual] = STATE(5060), - [sym_alignas_specifier] = STATE(5060), - [sym_explicit_function_specifier] = STATE(5655), - [sym_operator_cast] = STATE(8069), - [sym_constructor_specifiers] = STATE(4359), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(9982), - [sym_template_function] = STATE(7634), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6973), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_operator_cast_identifier] = STATE(8069), - [sym_operator_name] = STATE(7634), - [aux_sym_operator_cast_definition_repeat1] = STATE(4359), - [sym_identifier] = ACTIONS(5748), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(5750), - [anon_sym_extern] = ACTIONS(5752), - [anon_sym___attribute__] = ACTIONS(5754), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5756), - [anon_sym___declspec] = ACTIONS(5758), - [anon_sym___based] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(5752), - [anon_sym_register] = ACTIONS(5752), - [anon_sym_inline] = ACTIONS(5752), - [anon_sym___inline] = ACTIONS(5752), - [anon_sym___inline__] = ACTIONS(5752), - [anon_sym___forceinline] = ACTIONS(5752), - [anon_sym_thread_local] = ACTIONS(5752), - [anon_sym___thread] = ACTIONS(5752), - [anon_sym_const] = ACTIONS(5750), - [anon_sym_constexpr] = ACTIONS(5750), - [anon_sym_volatile] = ACTIONS(5750), - [anon_sym_restrict] = ACTIONS(5750), - [anon_sym___restrict__] = ACTIONS(5750), - [anon_sym__Atomic] = ACTIONS(5750), - [anon_sym__Noreturn] = ACTIONS(5750), - [anon_sym_noreturn] = ACTIONS(5750), - [anon_sym_mutable] = ACTIONS(5750), - [anon_sym_constinit] = ACTIONS(5750), - [anon_sym_consteval] = ACTIONS(5750), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_virtual] = ACTIONS(5760), - [anon_sym_alignas] = ACTIONS(5762), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_operator] = ACTIONS(135), + [sym_identifier] = ACTIONS(3525), + [aux_sym_preproc_def_token1] = ACTIONS(3525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3527), + [aux_sym_preproc_if_token1] = ACTIONS(3525), + [aux_sym_preproc_if_token2] = ACTIONS(3525), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3525), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3525), + [aux_sym_preproc_else_token1] = ACTIONS(3525), + [aux_sym_preproc_elif_token1] = ACTIONS(3525), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3525), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3525), + [sym_preproc_directive] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(3527), + [anon_sym_TILDE] = ACTIONS(3527), + [anon_sym_STAR] = ACTIONS(3527), + [anon_sym_AMP_AMP] = ACTIONS(3527), + [anon_sym_AMP] = ACTIONS(3525), + [anon_sym___extension__] = ACTIONS(3525), + [anon_sym_typedef] = ACTIONS(3525), + [anon_sym_extern] = ACTIONS(3525), + [anon_sym___attribute__] = ACTIONS(3525), + [anon_sym_COLON_COLON] = ACTIONS(3527), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3527), + [anon_sym___declspec] = ACTIONS(3525), + [anon_sym___based] = ACTIONS(3525), + [anon_sym_signed] = ACTIONS(3525), + [anon_sym_unsigned] = ACTIONS(3525), + [anon_sym_long] = ACTIONS(3525), + [anon_sym_short] = ACTIONS(3525), + [anon_sym_LBRACK] = ACTIONS(3525), + [anon_sym_static] = ACTIONS(3525), + [anon_sym_register] = ACTIONS(3525), + [anon_sym_inline] = ACTIONS(3525), + [anon_sym___inline] = ACTIONS(3525), + [anon_sym___inline__] = ACTIONS(3525), + [anon_sym___forceinline] = ACTIONS(3525), + [anon_sym_thread_local] = ACTIONS(3525), + [anon_sym___thread] = ACTIONS(3525), + [anon_sym_const] = ACTIONS(3525), + [anon_sym_constexpr] = ACTIONS(3525), + [anon_sym_volatile] = ACTIONS(3525), + [anon_sym_restrict] = ACTIONS(3525), + [anon_sym___restrict__] = ACTIONS(3525), + [anon_sym__Atomic] = ACTIONS(3525), + [anon_sym__Noreturn] = ACTIONS(3525), + [anon_sym_noreturn] = ACTIONS(3525), + [anon_sym_mutable] = ACTIONS(3525), + [anon_sym_constinit] = ACTIONS(3525), + [anon_sym_consteval] = ACTIONS(3525), + [sym_primitive_type] = ACTIONS(3525), + [anon_sym_enum] = ACTIONS(3525), + [anon_sym_class] = ACTIONS(3525), + [anon_sym_struct] = ACTIONS(3525), + [anon_sym_union] = ACTIONS(3525), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3525), + [anon_sym_decltype] = ACTIONS(3525), + [anon_sym_virtual] = ACTIONS(3525), + [anon_sym_alignas] = ACTIONS(3525), + [anon_sym_explicit] = ACTIONS(3525), + [anon_sym_typename] = ACTIONS(3525), + [anon_sym_template] = ACTIONS(3525), + [anon_sym_operator] = ACTIONS(3525), + [anon_sym_friend] = ACTIONS(3525), + [anon_sym_public] = ACTIONS(3525), + [anon_sym_private] = ACTIONS(3525), + [anon_sym_protected] = ACTIONS(3525), + [anon_sym_using] = ACTIONS(3525), + [anon_sym_static_assert] = ACTIONS(3525), + [sym_semgrep_metavar] = ACTIONS(3527), }, [1941] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(5181), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_parameter_declaration] = STATE(9311), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_optional_parameter_declaration] = STATE(9311), - [sym_variadic_parameter_declaration] = STATE(9311), - [sym_template_type] = STATE(4853), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(4837), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5548), - [anon_sym___extension__] = ACTIONS(65), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - }, - [1942] = { - [sym_declaration_modifiers] = STATE(5655), - [sym_attribute_specifier] = STATE(5060), - [sym_attribute_declaration] = STATE(5060), - [sym_ms_declspec_modifier] = STATE(5060), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7696), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(5060), - [sym_type_qualifier] = STATE(5060), - [sym_decltype] = STATE(9982), - [sym_virtual] = STATE(5060), - [sym_alignas_specifier] = STATE(5060), - [sym_explicit_function_specifier] = STATE(5655), - [sym_operator_cast] = STATE(8110), - [sym_constructor_specifiers] = STATE(4359), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(9982), - [sym_template_function] = STATE(7634), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6973), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_operator_cast_identifier] = STATE(8110), - [sym_operator_name] = STATE(7634), - [aux_sym_operator_cast_definition_repeat1] = STATE(4359), - [sym_identifier] = ACTIONS(5748), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [sym_declaration_modifiers] = STATE(4979), + [sym_attribute_specifier] = STATE(4535), + [sym_attribute_declaration] = STATE(4535), + [sym_ms_declspec_modifier] = STATE(4535), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7336), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4535), + [sym_type_qualifier] = STATE(4535), + [sym_decltype] = STATE(9605), + [sym_virtual] = STATE(4535), + [sym_alignas_specifier] = STATE(4535), + [sym_explicit_function_specifier] = STATE(4979), + [sym_operator_cast] = STATE(7728), + [sym_constructor_specifiers] = STATE(4069), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(9605), + [sym_template_function] = STATE(7305), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6514), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_operator_cast_identifier] = STATE(7728), + [sym_operator_name] = STATE(7305), + [aux_sym_operator_cast_definition_repeat1] = STATE(4069), + [sym_identifier] = ACTIONS(5741), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(5750), - [anon_sym_extern] = ACTIONS(5752), - [anon_sym___attribute__] = ACTIONS(5754), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5756), - [anon_sym___declspec] = ACTIONS(5758), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(5743), + [anon_sym_extern] = ACTIONS(5745), + [anon_sym___attribute__] = ACTIONS(5747), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5749), + [anon_sym___declspec] = ACTIONS(5751), [anon_sym___based] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(5752), - [anon_sym_register] = ACTIONS(5752), - [anon_sym_inline] = ACTIONS(5752), - [anon_sym___inline] = ACTIONS(5752), - [anon_sym___inline__] = ACTIONS(5752), - [anon_sym___forceinline] = ACTIONS(5752), - [anon_sym_thread_local] = ACTIONS(5752), - [anon_sym___thread] = ACTIONS(5752), - [anon_sym_const] = ACTIONS(5750), - [anon_sym_constexpr] = ACTIONS(5750), - [anon_sym_volatile] = ACTIONS(5750), - [anon_sym_restrict] = ACTIONS(5750), - [anon_sym___restrict__] = ACTIONS(5750), - [anon_sym__Atomic] = ACTIONS(5750), - [anon_sym__Noreturn] = ACTIONS(5750), - [anon_sym_noreturn] = ACTIONS(5750), - [anon_sym_mutable] = ACTIONS(5750), - [anon_sym_constinit] = ACTIONS(5750), - [anon_sym_consteval] = ACTIONS(5750), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(5745), + [anon_sym_register] = ACTIONS(5745), + [anon_sym_inline] = ACTIONS(5745), + [anon_sym___inline] = ACTIONS(5745), + [anon_sym___inline__] = ACTIONS(5745), + [anon_sym___forceinline] = ACTIONS(5745), + [anon_sym_thread_local] = ACTIONS(5745), + [anon_sym___thread] = ACTIONS(5745), + [anon_sym_const] = ACTIONS(5743), + [anon_sym_constexpr] = ACTIONS(5743), + [anon_sym_volatile] = ACTIONS(5743), + [anon_sym_restrict] = ACTIONS(5743), + [anon_sym___restrict__] = ACTIONS(5743), + [anon_sym__Atomic] = ACTIONS(5743), + [anon_sym__Noreturn] = ACTIONS(5743), + [anon_sym_noreturn] = ACTIONS(5743), + [anon_sym_mutable] = ACTIONS(5743), + [anon_sym_constinit] = ACTIONS(5743), + [anon_sym_consteval] = ACTIONS(5743), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_virtual] = ACTIONS(5760), - [anon_sym_alignas] = ACTIONS(5762), + [anon_sym_virtual] = ACTIONS(5753), + [anon_sym_alignas] = ACTIONS(5755), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_operator] = ACTIONS(135), }, + [1942] = { + [sym_identifier] = ACTIONS(3623), + [aux_sym_preproc_def_token1] = ACTIONS(3623), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3625), + [aux_sym_preproc_if_token1] = ACTIONS(3623), + [aux_sym_preproc_if_token2] = ACTIONS(3623), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3623), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3623), + [aux_sym_preproc_else_token1] = ACTIONS(3623), + [aux_sym_preproc_elif_token1] = ACTIONS(3623), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3623), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3623), + [sym_preproc_directive] = ACTIONS(3623), + [anon_sym_LPAREN2] = ACTIONS(3625), + [anon_sym_TILDE] = ACTIONS(3625), + [anon_sym_STAR] = ACTIONS(3625), + [anon_sym_AMP_AMP] = ACTIONS(3625), + [anon_sym_AMP] = ACTIONS(3623), + [anon_sym___extension__] = ACTIONS(3623), + [anon_sym_typedef] = ACTIONS(3623), + [anon_sym_extern] = ACTIONS(3623), + [anon_sym___attribute__] = ACTIONS(3623), + [anon_sym_COLON_COLON] = ACTIONS(3625), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3625), + [anon_sym___declspec] = ACTIONS(3623), + [anon_sym___based] = ACTIONS(3623), + [anon_sym_signed] = ACTIONS(3623), + [anon_sym_unsigned] = ACTIONS(3623), + [anon_sym_long] = ACTIONS(3623), + [anon_sym_short] = ACTIONS(3623), + [anon_sym_LBRACK] = ACTIONS(3623), + [anon_sym_static] = ACTIONS(3623), + [anon_sym_register] = ACTIONS(3623), + [anon_sym_inline] = ACTIONS(3623), + [anon_sym___inline] = ACTIONS(3623), + [anon_sym___inline__] = ACTIONS(3623), + [anon_sym___forceinline] = ACTIONS(3623), + [anon_sym_thread_local] = ACTIONS(3623), + [anon_sym___thread] = ACTIONS(3623), + [anon_sym_const] = ACTIONS(3623), + [anon_sym_constexpr] = ACTIONS(3623), + [anon_sym_volatile] = ACTIONS(3623), + [anon_sym_restrict] = ACTIONS(3623), + [anon_sym___restrict__] = ACTIONS(3623), + [anon_sym__Atomic] = ACTIONS(3623), + [anon_sym__Noreturn] = ACTIONS(3623), + [anon_sym_noreturn] = ACTIONS(3623), + [anon_sym_mutable] = ACTIONS(3623), + [anon_sym_constinit] = ACTIONS(3623), + [anon_sym_consteval] = ACTIONS(3623), + [sym_primitive_type] = ACTIONS(3623), + [anon_sym_enum] = ACTIONS(3623), + [anon_sym_class] = ACTIONS(3623), + [anon_sym_struct] = ACTIONS(3623), + [anon_sym_union] = ACTIONS(3623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3623), + [anon_sym_decltype] = ACTIONS(3623), + [anon_sym_virtual] = ACTIONS(3623), + [anon_sym_alignas] = ACTIONS(3623), + [anon_sym_explicit] = ACTIONS(3623), + [anon_sym_typename] = ACTIONS(3623), + [anon_sym_template] = ACTIONS(3623), + [anon_sym_operator] = ACTIONS(3623), + [anon_sym_friend] = ACTIONS(3623), + [anon_sym_public] = ACTIONS(3623), + [anon_sym_private] = ACTIONS(3623), + [anon_sym_protected] = ACTIONS(3623), + [anon_sym_using] = ACTIONS(3623), + [anon_sym_static_assert] = ACTIONS(3623), + [sym_semgrep_metavar] = ACTIONS(3625), + }, [1943] = { - [sym_identifier] = ACTIONS(3078), - [aux_sym_preproc_def_token1] = ACTIONS(3078), - [anon_sym_COMMA] = ACTIONS(3187), - [aux_sym_preproc_if_token1] = ACTIONS(3078), - [aux_sym_preproc_if_token2] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3078), - [aux_sym_preproc_else_token1] = ACTIONS(3078), - [aux_sym_preproc_elif_token1] = ACTIONS(3078), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3078), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3078), - [sym_preproc_directive] = ACTIONS(3078), - [anon_sym_LPAREN2] = ACTIONS(3080), - [anon_sym_TILDE] = ACTIONS(3080), - [anon_sym_STAR] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym_SEMI] = ACTIONS(3187), - [anon_sym___extension__] = ACTIONS(3078), - [anon_sym_typedef] = ACTIONS(3078), - [anon_sym_extern] = ACTIONS(3078), - [anon_sym___attribute__] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3080), - [anon_sym___declspec] = ACTIONS(3078), - [anon_sym___based] = ACTIONS(3078), - [anon_sym_signed] = ACTIONS(3078), - [anon_sym_unsigned] = ACTIONS(3078), - [anon_sym_long] = ACTIONS(3078), - [anon_sym_short] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_static] = ACTIONS(3078), - [anon_sym_register] = ACTIONS(3078), - [anon_sym_inline] = ACTIONS(3078), - [anon_sym___inline] = ACTIONS(3078), - [anon_sym___inline__] = ACTIONS(3078), - [anon_sym___forceinline] = ACTIONS(3078), - [anon_sym_thread_local] = ACTIONS(3078), - [anon_sym___thread] = ACTIONS(3078), - [anon_sym_const] = ACTIONS(3078), - [anon_sym_constexpr] = ACTIONS(3078), - [anon_sym_volatile] = ACTIONS(3078), - [anon_sym_restrict] = ACTIONS(3078), - [anon_sym___restrict__] = ACTIONS(3078), - [anon_sym__Atomic] = ACTIONS(3078), - [anon_sym__Noreturn] = ACTIONS(3078), - [anon_sym_noreturn] = ACTIONS(3078), - [anon_sym_mutable] = ACTIONS(3078), - [anon_sym_constinit] = ACTIONS(3078), - [anon_sym_consteval] = ACTIONS(3078), - [sym_primitive_type] = ACTIONS(3078), - [anon_sym_enum] = ACTIONS(3078), - [anon_sym_class] = ACTIONS(3078), - [anon_sym_struct] = ACTIONS(3078), - [anon_sym_union] = ACTIONS(3078), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3078), - [anon_sym_decltype] = ACTIONS(3078), - [anon_sym_virtual] = ACTIONS(3078), - [anon_sym_alignas] = ACTIONS(3078), - [anon_sym_explicit] = ACTIONS(3078), - [anon_sym_typename] = ACTIONS(3078), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_operator] = ACTIONS(3078), - [anon_sym_friend] = ACTIONS(3078), - [anon_sym_public] = ACTIONS(3078), - [anon_sym_private] = ACTIONS(3078), - [anon_sym_protected] = ACTIONS(3078), - [anon_sym_using] = ACTIONS(3078), - [anon_sym_static_assert] = ACTIONS(3078), + [sym_identifier] = ACTIONS(3087), + [aux_sym_preproc_def_token1] = ACTIONS(3087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [aux_sym_preproc_if_token1] = ACTIONS(3087), + [aux_sym_preproc_if_token2] = ACTIONS(3087), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3087), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3087), + [aux_sym_preproc_else_token1] = ACTIONS(3087), + [aux_sym_preproc_elif_token1] = ACTIONS(3087), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3087), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3087), + [sym_preproc_directive] = ACTIONS(3087), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_TILDE] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_typedef] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3089), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3089), + [anon_sym___declspec] = ACTIONS(3087), + [anon_sym___based] = ACTIONS(3087), + [anon_sym_signed] = ACTIONS(3087), + [anon_sym_unsigned] = ACTIONS(3087), + [anon_sym_long] = ACTIONS(3087), + [anon_sym_short] = ACTIONS(3087), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_register] = ACTIONS(3087), + [anon_sym_inline] = ACTIONS(3087), + [anon_sym___inline] = ACTIONS(3087), + [anon_sym___inline__] = ACTIONS(3087), + [anon_sym___forceinline] = ACTIONS(3087), + [anon_sym_thread_local] = ACTIONS(3087), + [anon_sym___thread] = ACTIONS(3087), + [anon_sym_const] = ACTIONS(3087), + [anon_sym_constexpr] = ACTIONS(3087), + [anon_sym_volatile] = ACTIONS(3087), + [anon_sym_restrict] = ACTIONS(3087), + [anon_sym___restrict__] = ACTIONS(3087), + [anon_sym__Atomic] = ACTIONS(3087), + [anon_sym__Noreturn] = ACTIONS(3087), + [anon_sym_noreturn] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [sym_primitive_type] = ACTIONS(3087), + [anon_sym_enum] = ACTIONS(3087), + [anon_sym_class] = ACTIONS(3087), + [anon_sym_struct] = ACTIONS(3087), + [anon_sym_union] = ACTIONS(3087), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym_explicit] = ACTIONS(3087), + [anon_sym_typename] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [anon_sym_friend] = ACTIONS(3087), + [anon_sym_public] = ACTIONS(3087), + [anon_sym_private] = ACTIONS(3087), + [anon_sym_protected] = ACTIONS(3087), + [anon_sym_using] = ACTIONS(3087), + [anon_sym_static_assert] = ACTIONS(3087), + [sym_semgrep_metavar] = ACTIONS(3089), }, [1944] = { - [sym_string_literal] = STATE(2640), - [sym_template_argument_list] = STATE(5014), - [sym_raw_string_literal] = STATE(2640), - [ts_builtin_sym_end] = ACTIONS(4829), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_RPAREN] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(4829), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(5764), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_RBRACE] = ACTIONS(4829), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_RBRACK] = ACTIONS(4829), - [anon_sym_EQ] = ACTIONS(4861), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4865), - [anon_sym_SLASH_EQ] = ACTIONS(4865), - [anon_sym_PERCENT_EQ] = ACTIONS(4865), - [anon_sym_PLUS_EQ] = ACTIONS(4865), - [anon_sym_DASH_EQ] = ACTIONS(4865), - [anon_sym_LT_LT_EQ] = ACTIONS(4865), - [anon_sym_GT_GT_EQ] = ACTIONS(4865), - [anon_sym_AMP_EQ] = ACTIONS(4865), - [anon_sym_CARET_EQ] = ACTIONS(4865), - [anon_sym_PIPE_EQ] = ACTIONS(4865), - [anon_sym_and_eq] = ACTIONS(4865), - [anon_sym_or_eq] = ACTIONS(4865), - [anon_sym_xor_eq] = ACTIONS(4865), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4829), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4829), - [anon_sym_not_eq] = ACTIONS(4829), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), + [sym_identifier] = ACTIONS(3609), + [aux_sym_preproc_def_token1] = ACTIONS(3609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3611), + [aux_sym_preproc_if_token1] = ACTIONS(3609), + [aux_sym_preproc_if_token2] = ACTIONS(3609), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3609), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3609), + [aux_sym_preproc_else_token1] = ACTIONS(3609), + [aux_sym_preproc_elif_token1] = ACTIONS(3609), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3609), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3609), + [sym_preproc_directive] = ACTIONS(3609), + [anon_sym_LPAREN2] = ACTIONS(3611), + [anon_sym_TILDE] = ACTIONS(3611), + [anon_sym_STAR] = ACTIONS(3611), + [anon_sym_AMP_AMP] = ACTIONS(3611), + [anon_sym_AMP] = ACTIONS(3609), + [anon_sym___extension__] = ACTIONS(3609), + [anon_sym_typedef] = ACTIONS(3609), + [anon_sym_extern] = ACTIONS(3609), + [anon_sym___attribute__] = ACTIONS(3609), + [anon_sym_COLON_COLON] = ACTIONS(3611), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3611), + [anon_sym___declspec] = ACTIONS(3609), + [anon_sym___based] = ACTIONS(3609), + [anon_sym_signed] = ACTIONS(3609), + [anon_sym_unsigned] = ACTIONS(3609), + [anon_sym_long] = ACTIONS(3609), + [anon_sym_short] = ACTIONS(3609), + [anon_sym_LBRACK] = ACTIONS(3609), + [anon_sym_static] = ACTIONS(3609), + [anon_sym_register] = ACTIONS(3609), + [anon_sym_inline] = ACTIONS(3609), + [anon_sym___inline] = ACTIONS(3609), + [anon_sym___inline__] = ACTIONS(3609), + [anon_sym___forceinline] = ACTIONS(3609), + [anon_sym_thread_local] = ACTIONS(3609), + [anon_sym___thread] = ACTIONS(3609), + [anon_sym_const] = ACTIONS(3609), + [anon_sym_constexpr] = ACTIONS(3609), + [anon_sym_volatile] = ACTIONS(3609), + [anon_sym_restrict] = ACTIONS(3609), + [anon_sym___restrict__] = ACTIONS(3609), + [anon_sym__Atomic] = ACTIONS(3609), + [anon_sym__Noreturn] = ACTIONS(3609), + [anon_sym_noreturn] = ACTIONS(3609), + [anon_sym_mutable] = ACTIONS(3609), + [anon_sym_constinit] = ACTIONS(3609), + [anon_sym_consteval] = ACTIONS(3609), + [sym_primitive_type] = ACTIONS(3609), + [anon_sym_enum] = ACTIONS(3609), + [anon_sym_class] = ACTIONS(3609), + [anon_sym_struct] = ACTIONS(3609), + [anon_sym_union] = ACTIONS(3609), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3609), + [anon_sym_decltype] = ACTIONS(3609), + [anon_sym_virtual] = ACTIONS(3609), + [anon_sym_alignas] = ACTIONS(3609), + [anon_sym_explicit] = ACTIONS(3609), + [anon_sym_typename] = ACTIONS(3609), + [anon_sym_template] = ACTIONS(3609), + [anon_sym_operator] = ACTIONS(3609), + [anon_sym_friend] = ACTIONS(3609), + [anon_sym_public] = ACTIONS(3609), + [anon_sym_private] = ACTIONS(3609), + [anon_sym_protected] = ACTIONS(3609), + [anon_sym_using] = ACTIONS(3609), + [anon_sym_static_assert] = ACTIONS(3609), + [sym_semgrep_metavar] = ACTIONS(3611), }, [1945] = { - [sym_declaration_modifiers] = STATE(5655), - [sym_attribute_specifier] = STATE(5060), - [sym_attribute_declaration] = STATE(5060), - [sym_ms_declspec_modifier] = STATE(5060), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7720), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(5060), - [sym_type_qualifier] = STATE(5060), - [sym_decltype] = STATE(9982), - [sym_virtual] = STATE(5060), - [sym_alignas_specifier] = STATE(5060), - [sym_explicit_function_specifier] = STATE(5655), - [sym_operator_cast] = STATE(8054), - [sym_constructor_specifiers] = STATE(4359), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(9982), - [sym_template_function] = STATE(7634), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6973), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_operator_cast_identifier] = STATE(8054), - [sym_operator_name] = STATE(7634), - [aux_sym_operator_cast_definition_repeat1] = STATE(4359), - [sym_identifier] = ACTIONS(5748), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [sym_declaration_modifiers] = STATE(4979), + [sym_attribute_specifier] = STATE(4535), + [sym_attribute_declaration] = STATE(4535), + [sym_ms_declspec_modifier] = STATE(4535), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7237), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4535), + [sym_type_qualifier] = STATE(4535), + [sym_decltype] = STATE(9605), + [sym_virtual] = STATE(4535), + [sym_alignas_specifier] = STATE(4535), + [sym_explicit_function_specifier] = STATE(4979), + [sym_operator_cast] = STATE(7772), + [sym_constructor_specifiers] = STATE(4069), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(9605), + [sym_template_function] = STATE(7305), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6514), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_operator_cast_identifier] = STATE(7772), + [sym_operator_name] = STATE(7305), + [aux_sym_operator_cast_definition_repeat1] = STATE(4069), + [sym_identifier] = ACTIONS(5741), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(5750), - [anon_sym_extern] = ACTIONS(5752), - [anon_sym___attribute__] = ACTIONS(5754), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5756), - [anon_sym___declspec] = ACTIONS(5758), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(5743), + [anon_sym_extern] = ACTIONS(5745), + [anon_sym___attribute__] = ACTIONS(5747), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5749), + [anon_sym___declspec] = ACTIONS(5751), [anon_sym___based] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(5752), - [anon_sym_register] = ACTIONS(5752), - [anon_sym_inline] = ACTIONS(5752), - [anon_sym___inline] = ACTIONS(5752), - [anon_sym___inline__] = ACTIONS(5752), - [anon_sym___forceinline] = ACTIONS(5752), - [anon_sym_thread_local] = ACTIONS(5752), - [anon_sym___thread] = ACTIONS(5752), - [anon_sym_const] = ACTIONS(5750), - [anon_sym_constexpr] = ACTIONS(5750), - [anon_sym_volatile] = ACTIONS(5750), - [anon_sym_restrict] = ACTIONS(5750), - [anon_sym___restrict__] = ACTIONS(5750), - [anon_sym__Atomic] = ACTIONS(5750), - [anon_sym__Noreturn] = ACTIONS(5750), - [anon_sym_noreturn] = ACTIONS(5750), - [anon_sym_mutable] = ACTIONS(5750), - [anon_sym_constinit] = ACTIONS(5750), - [anon_sym_consteval] = ACTIONS(5750), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(5745), + [anon_sym_register] = ACTIONS(5745), + [anon_sym_inline] = ACTIONS(5745), + [anon_sym___inline] = ACTIONS(5745), + [anon_sym___inline__] = ACTIONS(5745), + [anon_sym___forceinline] = ACTIONS(5745), + [anon_sym_thread_local] = ACTIONS(5745), + [anon_sym___thread] = ACTIONS(5745), + [anon_sym_const] = ACTIONS(5743), + [anon_sym_constexpr] = ACTIONS(5743), + [anon_sym_volatile] = ACTIONS(5743), + [anon_sym_restrict] = ACTIONS(5743), + [anon_sym___restrict__] = ACTIONS(5743), + [anon_sym__Atomic] = ACTIONS(5743), + [anon_sym__Noreturn] = ACTIONS(5743), + [anon_sym_noreturn] = ACTIONS(5743), + [anon_sym_mutable] = ACTIONS(5743), + [anon_sym_constinit] = ACTIONS(5743), + [anon_sym_consteval] = ACTIONS(5743), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_virtual] = ACTIONS(5760), - [anon_sym_alignas] = ACTIONS(5762), + [anon_sym_virtual] = ACTIONS(5753), + [anon_sym_alignas] = ACTIONS(5755), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_operator] = ACTIONS(135), }, [1946] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5458), - [anon_sym_COMMA] = ACTIONS(5458), - [anon_sym_RPAREN] = ACTIONS(5458), - [anon_sym_LPAREN2] = ACTIONS(5458), - [anon_sym_DASH] = ACTIONS(5456), - [anon_sym_PLUS] = ACTIONS(5456), - [anon_sym_STAR] = ACTIONS(5456), - [anon_sym_SLASH] = ACTIONS(5456), - [anon_sym_PERCENT] = ACTIONS(5456), - [anon_sym_PIPE_PIPE] = ACTIONS(5458), - [anon_sym_AMP_AMP] = ACTIONS(5458), - [anon_sym_PIPE] = ACTIONS(5456), - [anon_sym_CARET] = ACTIONS(5456), - [anon_sym_AMP] = ACTIONS(5456), - [anon_sym_EQ_EQ] = ACTIONS(5458), - [anon_sym_BANG_EQ] = ACTIONS(5458), - [anon_sym_GT] = ACTIONS(5456), - [anon_sym_GT_EQ] = ACTIONS(5458), - [anon_sym_LT_EQ] = ACTIONS(5456), - [anon_sym_LT] = ACTIONS(5456), - [anon_sym_LT_LT] = ACTIONS(5456), - [anon_sym_GT_GT] = ACTIONS(5456), - [anon_sym___extension__] = ACTIONS(5458), - [anon_sym_COLON_COLON] = ACTIONS(5458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5458), - [anon_sym_LBRACE] = ACTIONS(5458), - [anon_sym_LBRACK] = ACTIONS(5456), - [anon_sym_EQ] = ACTIONS(5456), - [anon_sym_const] = ACTIONS(5456), - [anon_sym_constexpr] = ACTIONS(5458), - [anon_sym_volatile] = ACTIONS(5458), - [anon_sym_restrict] = ACTIONS(5458), - [anon_sym___restrict__] = ACTIONS(5458), - [anon_sym__Atomic] = ACTIONS(5458), - [anon_sym__Noreturn] = ACTIONS(5458), - [anon_sym_noreturn] = ACTIONS(5458), - [anon_sym_mutable] = ACTIONS(5458), - [anon_sym_constinit] = ACTIONS(5458), - [anon_sym_consteval] = ACTIONS(5458), - [anon_sym_QMARK] = ACTIONS(5458), - [anon_sym_STAR_EQ] = ACTIONS(5458), - [anon_sym_SLASH_EQ] = ACTIONS(5458), - [anon_sym_PERCENT_EQ] = ACTIONS(5458), - [anon_sym_PLUS_EQ] = ACTIONS(5458), - [anon_sym_DASH_EQ] = ACTIONS(5458), - [anon_sym_LT_LT_EQ] = ACTIONS(5458), - [anon_sym_GT_GT_EQ] = ACTIONS(5458), - [anon_sym_AMP_EQ] = ACTIONS(5458), - [anon_sym_CARET_EQ] = ACTIONS(5458), - [anon_sym_PIPE_EQ] = ACTIONS(5458), - [anon_sym_and_eq] = ACTIONS(5458), - [anon_sym_or_eq] = ACTIONS(5458), - [anon_sym_xor_eq] = ACTIONS(5458), - [anon_sym_LT_EQ_GT] = ACTIONS(5458), - [anon_sym_or] = ACTIONS(5456), - [anon_sym_and] = ACTIONS(5456), - [anon_sym_bitor] = ACTIONS(5458), - [anon_sym_xor] = ACTIONS(5456), - [anon_sym_bitand] = ACTIONS(5458), - [anon_sym_not_eq] = ACTIONS(5458), - [anon_sym_DASH_DASH] = ACTIONS(5458), - [anon_sym_PLUS_PLUS] = ACTIONS(5458), - [anon_sym_DOT] = ACTIONS(5456), - [anon_sym_DOT_STAR] = ACTIONS(5458), - [anon_sym_DASH_GT] = ACTIONS(5456), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5458), - [anon_sym_decltype] = ACTIONS(5458), - [anon_sym_DASH_GT_STAR] = ACTIONS(5458), - [sym_semgrep_metavar] = ACTIONS(5458), + [sym_identifier] = ACTIONS(2191), + [aux_sym_preproc_def_token1] = ACTIONS(2191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2193), + [aux_sym_preproc_if_token1] = ACTIONS(2191), + [aux_sym_preproc_if_token2] = ACTIONS(2191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2191), + [aux_sym_preproc_else_token1] = ACTIONS(2191), + [aux_sym_preproc_elif_token1] = ACTIONS(2191), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2191), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2191), + [sym_preproc_directive] = ACTIONS(2191), + [anon_sym_LPAREN2] = ACTIONS(2193), + [anon_sym_TILDE] = ACTIONS(2193), + [anon_sym_STAR] = ACTIONS(2193), + [anon_sym_AMP_AMP] = ACTIONS(2193), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym___extension__] = ACTIONS(2191), + [anon_sym_typedef] = ACTIONS(2191), + [anon_sym_extern] = ACTIONS(2191), + [anon_sym___attribute__] = ACTIONS(2191), + [anon_sym_COLON_COLON] = ACTIONS(2193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2193), + [anon_sym___declspec] = ACTIONS(2191), + [anon_sym___based] = ACTIONS(2191), + [anon_sym_signed] = ACTIONS(2191), + [anon_sym_unsigned] = ACTIONS(2191), + [anon_sym_long] = ACTIONS(2191), + [anon_sym_short] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_register] = ACTIONS(2191), + [anon_sym_inline] = ACTIONS(2191), + [anon_sym___inline] = ACTIONS(2191), + [anon_sym___inline__] = ACTIONS(2191), + [anon_sym___forceinline] = ACTIONS(2191), + [anon_sym_thread_local] = ACTIONS(2191), + [anon_sym___thread] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_constexpr] = ACTIONS(2191), + [anon_sym_volatile] = ACTIONS(2191), + [anon_sym_restrict] = ACTIONS(2191), + [anon_sym___restrict__] = ACTIONS(2191), + [anon_sym__Atomic] = ACTIONS(2191), + [anon_sym__Noreturn] = ACTIONS(2191), + [anon_sym_noreturn] = ACTIONS(2191), + [anon_sym_mutable] = ACTIONS(2191), + [anon_sym_constinit] = ACTIONS(2191), + [anon_sym_consteval] = ACTIONS(2191), + [sym_primitive_type] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_struct] = ACTIONS(2191), + [anon_sym_union] = ACTIONS(2191), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2191), + [anon_sym_decltype] = ACTIONS(2191), + [anon_sym_virtual] = ACTIONS(2191), + [anon_sym_alignas] = ACTIONS(2191), + [anon_sym_explicit] = ACTIONS(2191), + [anon_sym_typename] = ACTIONS(2191), + [anon_sym_template] = ACTIONS(2191), + [anon_sym_operator] = ACTIONS(2191), + [anon_sym_friend] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_static_assert] = ACTIONS(2191), + [sym_semgrep_metavar] = ACTIONS(2193), }, [1947] = { - [sym_declaration_modifiers] = STATE(5655), - [sym_attribute_specifier] = STATE(5060), - [sym_attribute_declaration] = STATE(5060), - [sym_ms_declspec_modifier] = STATE(5060), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7669), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(5060), - [sym_type_qualifier] = STATE(5060), - [sym_decltype] = STATE(9982), - [sym_virtual] = STATE(5060), - [sym_alignas_specifier] = STATE(5060), - [sym_explicit_function_specifier] = STATE(5655), - [sym_operator_cast] = STATE(8115), - [sym_constructor_specifiers] = STATE(4359), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(9982), - [sym_template_function] = STATE(7634), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6973), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_operator_cast_identifier] = STATE(8115), - [sym_operator_name] = STATE(7634), - [aux_sym_operator_cast_definition_repeat1] = STATE(4359), - [sym_identifier] = ACTIONS(5748), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(5750), - [anon_sym_extern] = ACTIONS(5752), - [anon_sym___attribute__] = ACTIONS(5754), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5756), - [anon_sym___declspec] = ACTIONS(5758), - [anon_sym___based] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(5752), - [anon_sym_register] = ACTIONS(5752), - [anon_sym_inline] = ACTIONS(5752), - [anon_sym___inline] = ACTIONS(5752), - [anon_sym___inline__] = ACTIONS(5752), - [anon_sym___forceinline] = ACTIONS(5752), - [anon_sym_thread_local] = ACTIONS(5752), - [anon_sym___thread] = ACTIONS(5752), - [anon_sym_const] = ACTIONS(5750), - [anon_sym_constexpr] = ACTIONS(5750), - [anon_sym_volatile] = ACTIONS(5750), - [anon_sym_restrict] = ACTIONS(5750), - [anon_sym___restrict__] = ACTIONS(5750), - [anon_sym__Atomic] = ACTIONS(5750), - [anon_sym__Noreturn] = ACTIONS(5750), - [anon_sym_noreturn] = ACTIONS(5750), - [anon_sym_mutable] = ACTIONS(5750), - [anon_sym_constinit] = ACTIONS(5750), - [anon_sym_consteval] = ACTIONS(5750), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_virtual] = ACTIONS(5760), - [anon_sym_alignas] = ACTIONS(5762), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_operator] = ACTIONS(135), + [sym_identifier] = ACTIONS(3541), + [aux_sym_preproc_def_token1] = ACTIONS(3541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3543), + [aux_sym_preproc_if_token1] = ACTIONS(3541), + [aux_sym_preproc_if_token2] = ACTIONS(3541), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3541), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3541), + [aux_sym_preproc_else_token1] = ACTIONS(3541), + [aux_sym_preproc_elif_token1] = ACTIONS(3541), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3541), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3541), + [sym_preproc_directive] = ACTIONS(3541), + [anon_sym_LPAREN2] = ACTIONS(3543), + [anon_sym_TILDE] = ACTIONS(3543), + [anon_sym_STAR] = ACTIONS(3543), + [anon_sym_AMP_AMP] = ACTIONS(3543), + [anon_sym_AMP] = ACTIONS(3541), + [anon_sym___extension__] = ACTIONS(3541), + [anon_sym_typedef] = ACTIONS(3541), + [anon_sym_extern] = ACTIONS(3541), + [anon_sym___attribute__] = ACTIONS(3541), + [anon_sym_COLON_COLON] = ACTIONS(3543), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3543), + [anon_sym___declspec] = ACTIONS(3541), + [anon_sym___based] = ACTIONS(3541), + [anon_sym_signed] = ACTIONS(3541), + [anon_sym_unsigned] = ACTIONS(3541), + [anon_sym_long] = ACTIONS(3541), + [anon_sym_short] = ACTIONS(3541), + [anon_sym_LBRACK] = ACTIONS(3541), + [anon_sym_static] = ACTIONS(3541), + [anon_sym_register] = ACTIONS(3541), + [anon_sym_inline] = ACTIONS(3541), + [anon_sym___inline] = ACTIONS(3541), + [anon_sym___inline__] = ACTIONS(3541), + [anon_sym___forceinline] = ACTIONS(3541), + [anon_sym_thread_local] = ACTIONS(3541), + [anon_sym___thread] = ACTIONS(3541), + [anon_sym_const] = ACTIONS(3541), + [anon_sym_constexpr] = ACTIONS(3541), + [anon_sym_volatile] = ACTIONS(3541), + [anon_sym_restrict] = ACTIONS(3541), + [anon_sym___restrict__] = ACTIONS(3541), + [anon_sym__Atomic] = ACTIONS(3541), + [anon_sym__Noreturn] = ACTIONS(3541), + [anon_sym_noreturn] = ACTIONS(3541), + [anon_sym_mutable] = ACTIONS(3541), + [anon_sym_constinit] = ACTIONS(3541), + [anon_sym_consteval] = ACTIONS(3541), + [sym_primitive_type] = ACTIONS(3541), + [anon_sym_enum] = ACTIONS(3541), + [anon_sym_class] = ACTIONS(3541), + [anon_sym_struct] = ACTIONS(3541), + [anon_sym_union] = ACTIONS(3541), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3541), + [anon_sym_decltype] = ACTIONS(3541), + [anon_sym_virtual] = ACTIONS(3541), + [anon_sym_alignas] = ACTIONS(3541), + [anon_sym_explicit] = ACTIONS(3541), + [anon_sym_typename] = ACTIONS(3541), + [anon_sym_template] = ACTIONS(3541), + [anon_sym_operator] = ACTIONS(3541), + [anon_sym_friend] = ACTIONS(3541), + [anon_sym_public] = ACTIONS(3541), + [anon_sym_private] = ACTIONS(3541), + [anon_sym_protected] = ACTIONS(3541), + [anon_sym_using] = ACTIONS(3541), + [anon_sym_static_assert] = ACTIONS(3541), + [sym_semgrep_metavar] = ACTIONS(3543), }, [1948] = { - [sym_declaration_modifiers] = STATE(5655), - [sym_attribute_specifier] = STATE(5060), - [sym_attribute_declaration] = STATE(5060), - [sym_ms_declspec_modifier] = STATE(5060), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7722), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(5060), - [sym_type_qualifier] = STATE(5060), - [sym_decltype] = STATE(9982), - [sym_virtual] = STATE(5060), - [sym_alignas_specifier] = STATE(5060), - [sym_explicit_function_specifier] = STATE(5655), - [sym_operator_cast] = STATE(8069), - [sym_constructor_specifiers] = STATE(4359), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(9982), - [sym_template_function] = STATE(7634), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6973), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_operator_cast_identifier] = STATE(8069), - [sym_operator_name] = STATE(7634), - [aux_sym_operator_cast_definition_repeat1] = STATE(4359), - [sym_identifier] = ACTIONS(5748), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [sym_declaration_modifiers] = STATE(4979), + [sym_attribute_specifier] = STATE(4535), + [sym_attribute_declaration] = STATE(4535), + [sym_ms_declspec_modifier] = STATE(4535), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7329), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4535), + [sym_type_qualifier] = STATE(4535), + [sym_decltype] = STATE(9605), + [sym_virtual] = STATE(4535), + [sym_alignas_specifier] = STATE(4535), + [sym_explicit_function_specifier] = STATE(4979), + [sym_operator_cast] = STATE(7740), + [sym_constructor_specifiers] = STATE(4069), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(9605), + [sym_template_function] = STATE(7305), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6514), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_operator_cast_identifier] = STATE(7740), + [sym_operator_name] = STATE(7305), + [aux_sym_operator_cast_definition_repeat1] = STATE(4069), + [sym_identifier] = ACTIONS(5741), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(5750), - [anon_sym_extern] = ACTIONS(5752), - [anon_sym___attribute__] = ACTIONS(5754), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5756), - [anon_sym___declspec] = ACTIONS(5758), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(5743), + [anon_sym_extern] = ACTIONS(5745), + [anon_sym___attribute__] = ACTIONS(5747), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5749), + [anon_sym___declspec] = ACTIONS(5751), [anon_sym___based] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(5752), - [anon_sym_register] = ACTIONS(5752), - [anon_sym_inline] = ACTIONS(5752), - [anon_sym___inline] = ACTIONS(5752), - [anon_sym___inline__] = ACTIONS(5752), - [anon_sym___forceinline] = ACTIONS(5752), - [anon_sym_thread_local] = ACTIONS(5752), - [anon_sym___thread] = ACTIONS(5752), - [anon_sym_const] = ACTIONS(5750), - [anon_sym_constexpr] = ACTIONS(5750), - [anon_sym_volatile] = ACTIONS(5750), - [anon_sym_restrict] = ACTIONS(5750), - [anon_sym___restrict__] = ACTIONS(5750), - [anon_sym__Atomic] = ACTIONS(5750), - [anon_sym__Noreturn] = ACTIONS(5750), - [anon_sym_noreturn] = ACTIONS(5750), - [anon_sym_mutable] = ACTIONS(5750), - [anon_sym_constinit] = ACTIONS(5750), - [anon_sym_consteval] = ACTIONS(5750), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(5745), + [anon_sym_register] = ACTIONS(5745), + [anon_sym_inline] = ACTIONS(5745), + [anon_sym___inline] = ACTIONS(5745), + [anon_sym___inline__] = ACTIONS(5745), + [anon_sym___forceinline] = ACTIONS(5745), + [anon_sym_thread_local] = ACTIONS(5745), + [anon_sym___thread] = ACTIONS(5745), + [anon_sym_const] = ACTIONS(5743), + [anon_sym_constexpr] = ACTIONS(5743), + [anon_sym_volatile] = ACTIONS(5743), + [anon_sym_restrict] = ACTIONS(5743), + [anon_sym___restrict__] = ACTIONS(5743), + [anon_sym__Atomic] = ACTIONS(5743), + [anon_sym__Noreturn] = ACTIONS(5743), + [anon_sym_noreturn] = ACTIONS(5743), + [anon_sym_mutable] = ACTIONS(5743), + [anon_sym_constinit] = ACTIONS(5743), + [anon_sym_consteval] = ACTIONS(5743), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_virtual] = ACTIONS(5760), - [anon_sym_alignas] = ACTIONS(5762), + [anon_sym_virtual] = ACTIONS(5753), + [anon_sym_alignas] = ACTIONS(5755), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_operator] = ACTIONS(135), }, [1949] = { - [sym_declaration_modifiers] = STATE(5655), - [sym_attribute_specifier] = STATE(5060), - [sym_attribute_declaration] = STATE(5060), - [sym_ms_declspec_modifier] = STATE(5060), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7694), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(5060), - [sym_type_qualifier] = STATE(5060), - [sym_decltype] = STATE(9982), - [sym_virtual] = STATE(5060), - [sym_alignas_specifier] = STATE(5060), - [sym_explicit_function_specifier] = STATE(5655), - [sym_operator_cast] = STATE(8054), - [sym_constructor_specifiers] = STATE(4359), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(9982), - [sym_template_function] = STATE(7634), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6973), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_operator_cast_identifier] = STATE(8054), - [sym_operator_name] = STATE(7634), - [aux_sym_operator_cast_definition_repeat1] = STATE(4359), - [sym_identifier] = ACTIONS(5748), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), + [sym_declaration_modifiers] = STATE(4979), + [sym_attribute_specifier] = STATE(4535), + [sym_attribute_declaration] = STATE(4535), + [sym_ms_declspec_modifier] = STATE(4535), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7337), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4535), + [sym_type_qualifier] = STATE(4535), + [sym_decltype] = STATE(9605), + [sym_virtual] = STATE(4535), + [sym_alignas_specifier] = STATE(4535), + [sym_explicit_function_specifier] = STATE(4979), + [sym_operator_cast] = STATE(7743), + [sym_constructor_specifiers] = STATE(4069), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(9605), + [sym_template_function] = STATE(7305), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6514), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_operator_cast_identifier] = STATE(7743), + [sym_operator_name] = STATE(7305), + [aux_sym_operator_cast_definition_repeat1] = STATE(4069), + [sym_identifier] = ACTIONS(5741), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(5750), - [anon_sym_extern] = ACTIONS(5752), - [anon_sym___attribute__] = ACTIONS(5754), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5756), - [anon_sym___declspec] = ACTIONS(5758), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(5743), + [anon_sym_extern] = ACTIONS(5745), + [anon_sym___attribute__] = ACTIONS(5747), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5749), + [anon_sym___declspec] = ACTIONS(5751), [anon_sym___based] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(5752), - [anon_sym_register] = ACTIONS(5752), - [anon_sym_inline] = ACTIONS(5752), - [anon_sym___inline] = ACTIONS(5752), - [anon_sym___inline__] = ACTIONS(5752), - [anon_sym___forceinline] = ACTIONS(5752), - [anon_sym_thread_local] = ACTIONS(5752), - [anon_sym___thread] = ACTIONS(5752), - [anon_sym_const] = ACTIONS(5750), - [anon_sym_constexpr] = ACTIONS(5750), - [anon_sym_volatile] = ACTIONS(5750), - [anon_sym_restrict] = ACTIONS(5750), - [anon_sym___restrict__] = ACTIONS(5750), - [anon_sym__Atomic] = ACTIONS(5750), - [anon_sym__Noreturn] = ACTIONS(5750), - [anon_sym_noreturn] = ACTIONS(5750), - [anon_sym_mutable] = ACTIONS(5750), - [anon_sym_constinit] = ACTIONS(5750), - [anon_sym_consteval] = ACTIONS(5750), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(5745), + [anon_sym_register] = ACTIONS(5745), + [anon_sym_inline] = ACTIONS(5745), + [anon_sym___inline] = ACTIONS(5745), + [anon_sym___inline__] = ACTIONS(5745), + [anon_sym___forceinline] = ACTIONS(5745), + [anon_sym_thread_local] = ACTIONS(5745), + [anon_sym___thread] = ACTIONS(5745), + [anon_sym_const] = ACTIONS(5743), + [anon_sym_constexpr] = ACTIONS(5743), + [anon_sym_volatile] = ACTIONS(5743), + [anon_sym_restrict] = ACTIONS(5743), + [anon_sym___restrict__] = ACTIONS(5743), + [anon_sym__Atomic] = ACTIONS(5743), + [anon_sym__Noreturn] = ACTIONS(5743), + [anon_sym_noreturn] = ACTIONS(5743), + [anon_sym_mutable] = ACTIONS(5743), + [anon_sym_constinit] = ACTIONS(5743), + [anon_sym_consteval] = ACTIONS(5743), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_virtual] = ACTIONS(5760), - [anon_sym_alignas] = ACTIONS(5762), + [anon_sym_virtual] = ACTIONS(5753), + [anon_sym_alignas] = ACTIONS(5755), [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1538), + [anon_sym_template] = ACTIONS(1534), [anon_sym_operator] = ACTIONS(135), }, [1950] = { - [sym_declaration_modifiers] = STATE(5655), - [sym_attribute_specifier] = STATE(5060), - [sym_attribute_declaration] = STATE(5060), - [sym_ms_declspec_modifier] = STATE(5060), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7751), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(5060), - [sym_type_qualifier] = STATE(5060), - [sym_decltype] = STATE(9982), - [sym_virtual] = STATE(5060), - [sym_alignas_specifier] = STATE(5060), - [sym_explicit_function_specifier] = STATE(5655), - [sym_operator_cast] = STATE(8049), - [sym_constructor_specifiers] = STATE(4359), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(9982), - [sym_template_function] = STATE(7634), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6973), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_operator_cast_identifier] = STATE(8049), - [sym_operator_name] = STATE(7634), - [aux_sym_operator_cast_definition_repeat1] = STATE(4359), - [sym_identifier] = ACTIONS(5748), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(5750), - [anon_sym_extern] = ACTIONS(5752), - [anon_sym___attribute__] = ACTIONS(5754), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5756), - [anon_sym___declspec] = ACTIONS(5758), - [anon_sym___based] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(5752), - [anon_sym_register] = ACTIONS(5752), - [anon_sym_inline] = ACTIONS(5752), - [anon_sym___inline] = ACTIONS(5752), - [anon_sym___inline__] = ACTIONS(5752), - [anon_sym___forceinline] = ACTIONS(5752), - [anon_sym_thread_local] = ACTIONS(5752), - [anon_sym___thread] = ACTIONS(5752), - [anon_sym_const] = ACTIONS(5750), - [anon_sym_constexpr] = ACTIONS(5750), - [anon_sym_volatile] = ACTIONS(5750), - [anon_sym_restrict] = ACTIONS(5750), - [anon_sym___restrict__] = ACTIONS(5750), - [anon_sym__Atomic] = ACTIONS(5750), - [anon_sym__Noreturn] = ACTIONS(5750), - [anon_sym_noreturn] = ACTIONS(5750), - [anon_sym_mutable] = ACTIONS(5750), - [anon_sym_constinit] = ACTIONS(5750), - [anon_sym_consteval] = ACTIONS(5750), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_virtual] = ACTIONS(5760), - [anon_sym_alignas] = ACTIONS(5762), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_operator] = ACTIONS(135), + [sym_identifier] = ACTIONS(5773), + [aux_sym_preproc_def_token1] = ACTIONS(5773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5775), + [aux_sym_preproc_if_token1] = ACTIONS(5773), + [aux_sym_preproc_if_token2] = ACTIONS(5773), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5773), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5773), + [aux_sym_preproc_else_token1] = ACTIONS(5773), + [aux_sym_preproc_elif_token1] = ACTIONS(5773), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5773), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5773), + [sym_preproc_directive] = ACTIONS(5773), + [anon_sym_LPAREN2] = ACTIONS(5775), + [anon_sym_TILDE] = ACTIONS(5775), + [anon_sym_STAR] = ACTIONS(5775), + [anon_sym_AMP_AMP] = ACTIONS(5775), + [anon_sym_AMP] = ACTIONS(5773), + [anon_sym___extension__] = ACTIONS(5773), + [anon_sym_typedef] = ACTIONS(5773), + [anon_sym_extern] = ACTIONS(5773), + [anon_sym___attribute__] = ACTIONS(5773), + [anon_sym_COLON_COLON] = ACTIONS(5775), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5775), + [anon_sym___declspec] = ACTIONS(5773), + [anon_sym___based] = ACTIONS(5773), + [anon_sym_signed] = ACTIONS(5773), + [anon_sym_unsigned] = ACTIONS(5773), + [anon_sym_long] = ACTIONS(5773), + [anon_sym_short] = ACTIONS(5773), + [anon_sym_LBRACK] = ACTIONS(5773), + [anon_sym_static] = ACTIONS(5773), + [anon_sym_register] = ACTIONS(5773), + [anon_sym_inline] = ACTIONS(5773), + [anon_sym___inline] = ACTIONS(5773), + [anon_sym___inline__] = ACTIONS(5773), + [anon_sym___forceinline] = ACTIONS(5773), + [anon_sym_thread_local] = ACTIONS(5773), + [anon_sym___thread] = ACTIONS(5773), + [anon_sym_const] = ACTIONS(5773), + [anon_sym_constexpr] = ACTIONS(5773), + [anon_sym_volatile] = ACTIONS(5773), + [anon_sym_restrict] = ACTIONS(5773), + [anon_sym___restrict__] = ACTIONS(5773), + [anon_sym__Atomic] = ACTIONS(5773), + [anon_sym__Noreturn] = ACTIONS(5773), + [anon_sym_noreturn] = ACTIONS(5773), + [anon_sym_mutable] = ACTIONS(5773), + [anon_sym_constinit] = ACTIONS(5773), + [anon_sym_consteval] = ACTIONS(5773), + [sym_primitive_type] = ACTIONS(5773), + [anon_sym_enum] = ACTIONS(5773), + [anon_sym_class] = ACTIONS(5773), + [anon_sym_struct] = ACTIONS(5773), + [anon_sym_union] = ACTIONS(5773), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5773), + [anon_sym_decltype] = ACTIONS(5773), + [anon_sym_virtual] = ACTIONS(5773), + [anon_sym_alignas] = ACTIONS(5773), + [anon_sym_explicit] = ACTIONS(5773), + [anon_sym_typename] = ACTIONS(5773), + [anon_sym_template] = ACTIONS(5773), + [anon_sym_operator] = ACTIONS(5773), + [anon_sym_friend] = ACTIONS(5773), + [anon_sym_public] = ACTIONS(5773), + [anon_sym_private] = ACTIONS(5773), + [anon_sym_protected] = ACTIONS(5773), + [anon_sym_using] = ACTIONS(5773), + [anon_sym_static_assert] = ACTIONS(5773), + [sym_semgrep_metavar] = ACTIONS(5775), }, [1951] = { - [sym_declaration_modifiers] = STATE(5655), - [sym_attribute_specifier] = STATE(5060), - [sym_attribute_declaration] = STATE(5060), - [sym_ms_declspec_modifier] = STATE(5060), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7674), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(5060), - [sym_type_qualifier] = STATE(5060), - [sym_decltype] = STATE(9982), - [sym_virtual] = STATE(5060), - [sym_alignas_specifier] = STATE(5060), - [sym_explicit_function_specifier] = STATE(5655), - [sym_operator_cast] = STATE(8049), - [sym_constructor_specifiers] = STATE(4359), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(9982), - [sym_template_function] = STATE(7634), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6973), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_operator_cast_identifier] = STATE(8049), - [sym_operator_name] = STATE(7634), - [aux_sym_operator_cast_definition_repeat1] = STATE(4359), - [sym_identifier] = ACTIONS(5748), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(5750), - [anon_sym_extern] = ACTIONS(5752), - [anon_sym___attribute__] = ACTIONS(5754), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5756), - [anon_sym___declspec] = ACTIONS(5758), - [anon_sym___based] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(5752), - [anon_sym_register] = ACTIONS(5752), - [anon_sym_inline] = ACTIONS(5752), - [anon_sym___inline] = ACTIONS(5752), - [anon_sym___inline__] = ACTIONS(5752), - [anon_sym___forceinline] = ACTIONS(5752), - [anon_sym_thread_local] = ACTIONS(5752), - [anon_sym___thread] = ACTIONS(5752), - [anon_sym_const] = ACTIONS(5750), - [anon_sym_constexpr] = ACTIONS(5750), - [anon_sym_volatile] = ACTIONS(5750), - [anon_sym_restrict] = ACTIONS(5750), - [anon_sym___restrict__] = ACTIONS(5750), - [anon_sym__Atomic] = ACTIONS(5750), - [anon_sym__Noreturn] = ACTIONS(5750), - [anon_sym_noreturn] = ACTIONS(5750), - [anon_sym_mutable] = ACTIONS(5750), - [anon_sym_constinit] = ACTIONS(5750), - [anon_sym_consteval] = ACTIONS(5750), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_virtual] = ACTIONS(5760), - [anon_sym_alignas] = ACTIONS(5762), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_operator] = ACTIONS(135), + [sym_identifier] = ACTIONS(5777), + [aux_sym_preproc_def_token1] = ACTIONS(5777), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5779), + [aux_sym_preproc_if_token1] = ACTIONS(5777), + [aux_sym_preproc_if_token2] = ACTIONS(5777), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5777), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5777), + [aux_sym_preproc_else_token1] = ACTIONS(5777), + [aux_sym_preproc_elif_token1] = ACTIONS(5777), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5777), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5777), + [sym_preproc_directive] = ACTIONS(5777), + [anon_sym_LPAREN2] = ACTIONS(5779), + [anon_sym_TILDE] = ACTIONS(5779), + [anon_sym_STAR] = ACTIONS(5779), + [anon_sym_AMP_AMP] = ACTIONS(5779), + [anon_sym_AMP] = ACTIONS(5777), + [anon_sym___extension__] = ACTIONS(5777), + [anon_sym_typedef] = ACTIONS(5777), + [anon_sym_extern] = ACTIONS(5777), + [anon_sym___attribute__] = ACTIONS(5777), + [anon_sym_COLON_COLON] = ACTIONS(5779), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5779), + [anon_sym___declspec] = ACTIONS(5777), + [anon_sym___based] = ACTIONS(5777), + [anon_sym_signed] = ACTIONS(5777), + [anon_sym_unsigned] = ACTIONS(5777), + [anon_sym_long] = ACTIONS(5777), + [anon_sym_short] = ACTIONS(5777), + [anon_sym_LBRACK] = ACTIONS(5777), + [anon_sym_static] = ACTIONS(5777), + [anon_sym_register] = ACTIONS(5777), + [anon_sym_inline] = ACTIONS(5777), + [anon_sym___inline] = ACTIONS(5777), + [anon_sym___inline__] = ACTIONS(5777), + [anon_sym___forceinline] = ACTIONS(5777), + [anon_sym_thread_local] = ACTIONS(5777), + [anon_sym___thread] = ACTIONS(5777), + [anon_sym_const] = ACTIONS(5777), + [anon_sym_constexpr] = ACTIONS(5777), + [anon_sym_volatile] = ACTIONS(5777), + [anon_sym_restrict] = ACTIONS(5777), + [anon_sym___restrict__] = ACTIONS(5777), + [anon_sym__Atomic] = ACTIONS(5777), + [anon_sym__Noreturn] = ACTIONS(5777), + [anon_sym_noreturn] = ACTIONS(5777), + [anon_sym_mutable] = ACTIONS(5777), + [anon_sym_constinit] = ACTIONS(5777), + [anon_sym_consteval] = ACTIONS(5777), + [sym_primitive_type] = ACTIONS(5777), + [anon_sym_enum] = ACTIONS(5777), + [anon_sym_class] = ACTIONS(5777), + [anon_sym_struct] = ACTIONS(5777), + [anon_sym_union] = ACTIONS(5777), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5777), + [anon_sym_decltype] = ACTIONS(5777), + [anon_sym_virtual] = ACTIONS(5777), + [anon_sym_alignas] = ACTIONS(5777), + [anon_sym_explicit] = ACTIONS(5777), + [anon_sym_typename] = ACTIONS(5777), + [anon_sym_template] = ACTIONS(5777), + [anon_sym_operator] = ACTIONS(5777), + [anon_sym_friend] = ACTIONS(5777), + [anon_sym_public] = ACTIONS(5777), + [anon_sym_private] = ACTIONS(5777), + [anon_sym_protected] = ACTIONS(5777), + [anon_sym_using] = ACTIONS(5777), + [anon_sym_static_assert] = ACTIONS(5777), + [sym_semgrep_metavar] = ACTIONS(5779), }, [1952] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5483), - [anon_sym_COMMA] = ACTIONS(5483), - [anon_sym_RPAREN] = ACTIONS(5483), - [anon_sym_LPAREN2] = ACTIONS(5483), - [anon_sym_DASH] = ACTIONS(5481), - [anon_sym_PLUS] = ACTIONS(5481), - [anon_sym_STAR] = ACTIONS(5481), - [anon_sym_SLASH] = ACTIONS(5481), - [anon_sym_PERCENT] = ACTIONS(5481), - [anon_sym_PIPE_PIPE] = ACTIONS(5483), - [anon_sym_AMP_AMP] = ACTIONS(5483), - [anon_sym_PIPE] = ACTIONS(5481), - [anon_sym_CARET] = ACTIONS(5481), - [anon_sym_AMP] = ACTIONS(5481), - [anon_sym_EQ_EQ] = ACTIONS(5483), - [anon_sym_BANG_EQ] = ACTIONS(5483), - [anon_sym_GT] = ACTIONS(5481), - [anon_sym_GT_EQ] = ACTIONS(5483), - [anon_sym_LT_EQ] = ACTIONS(5481), - [anon_sym_LT] = ACTIONS(5481), - [anon_sym_LT_LT] = ACTIONS(5481), - [anon_sym_GT_GT] = ACTIONS(5481), - [anon_sym___extension__] = ACTIONS(5483), - [anon_sym_COLON_COLON] = ACTIONS(5483), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5483), - [anon_sym_LBRACE] = ACTIONS(5483), - [anon_sym_LBRACK] = ACTIONS(5481), - [anon_sym_EQ] = ACTIONS(5481), - [anon_sym_const] = ACTIONS(5481), - [anon_sym_constexpr] = ACTIONS(5483), - [anon_sym_volatile] = ACTIONS(5483), - [anon_sym_restrict] = ACTIONS(5483), - [anon_sym___restrict__] = ACTIONS(5483), - [anon_sym__Atomic] = ACTIONS(5483), - [anon_sym__Noreturn] = ACTIONS(5483), - [anon_sym_noreturn] = ACTIONS(5483), - [anon_sym_mutable] = ACTIONS(5483), - [anon_sym_constinit] = ACTIONS(5483), - [anon_sym_consteval] = ACTIONS(5483), - [anon_sym_QMARK] = ACTIONS(5483), - [anon_sym_STAR_EQ] = ACTIONS(5483), - [anon_sym_SLASH_EQ] = ACTIONS(5483), - [anon_sym_PERCENT_EQ] = ACTIONS(5483), - [anon_sym_PLUS_EQ] = ACTIONS(5483), - [anon_sym_DASH_EQ] = ACTIONS(5483), - [anon_sym_LT_LT_EQ] = ACTIONS(5483), - [anon_sym_GT_GT_EQ] = ACTIONS(5483), - [anon_sym_AMP_EQ] = ACTIONS(5483), - [anon_sym_CARET_EQ] = ACTIONS(5483), - [anon_sym_PIPE_EQ] = ACTIONS(5483), - [anon_sym_and_eq] = ACTIONS(5483), - [anon_sym_or_eq] = ACTIONS(5483), - [anon_sym_xor_eq] = ACTIONS(5483), - [anon_sym_LT_EQ_GT] = ACTIONS(5483), - [anon_sym_or] = ACTIONS(5481), - [anon_sym_and] = ACTIONS(5481), - [anon_sym_bitor] = ACTIONS(5483), - [anon_sym_xor] = ACTIONS(5481), - [anon_sym_bitand] = ACTIONS(5483), - [anon_sym_not_eq] = ACTIONS(5483), - [anon_sym_DASH_DASH] = ACTIONS(5483), - [anon_sym_PLUS_PLUS] = ACTIONS(5483), - [anon_sym_DOT] = ACTIONS(5481), - [anon_sym_DOT_STAR] = ACTIONS(5483), - [anon_sym_DASH_GT] = ACTIONS(5481), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5483), - [anon_sym_decltype] = ACTIONS(5483), - [anon_sym_DASH_GT_STAR] = ACTIONS(5483), - [sym_semgrep_metavar] = ACTIONS(5483), + [sym_identifier] = ACTIONS(5781), + [aux_sym_preproc_def_token1] = ACTIONS(5781), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5783), + [aux_sym_preproc_if_token1] = ACTIONS(5781), + [aux_sym_preproc_if_token2] = ACTIONS(5781), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5781), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5781), + [aux_sym_preproc_else_token1] = ACTIONS(5781), + [aux_sym_preproc_elif_token1] = ACTIONS(5781), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5781), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5781), + [sym_preproc_directive] = ACTIONS(5781), + [anon_sym_LPAREN2] = ACTIONS(5783), + [anon_sym_TILDE] = ACTIONS(5783), + [anon_sym_STAR] = ACTIONS(5783), + [anon_sym_AMP_AMP] = ACTIONS(5783), + [anon_sym_AMP] = ACTIONS(5781), + [anon_sym___extension__] = ACTIONS(5781), + [anon_sym_typedef] = ACTIONS(5781), + [anon_sym_extern] = ACTIONS(5781), + [anon_sym___attribute__] = ACTIONS(5781), + [anon_sym_COLON_COLON] = ACTIONS(5783), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5783), + [anon_sym___declspec] = ACTIONS(5781), + [anon_sym___based] = ACTIONS(5781), + [anon_sym_signed] = ACTIONS(5781), + [anon_sym_unsigned] = ACTIONS(5781), + [anon_sym_long] = ACTIONS(5781), + [anon_sym_short] = ACTIONS(5781), + [anon_sym_LBRACK] = ACTIONS(5781), + [anon_sym_static] = ACTIONS(5781), + [anon_sym_register] = ACTIONS(5781), + [anon_sym_inline] = ACTIONS(5781), + [anon_sym___inline] = ACTIONS(5781), + [anon_sym___inline__] = ACTIONS(5781), + [anon_sym___forceinline] = ACTIONS(5781), + [anon_sym_thread_local] = ACTIONS(5781), + [anon_sym___thread] = ACTIONS(5781), + [anon_sym_const] = ACTIONS(5781), + [anon_sym_constexpr] = ACTIONS(5781), + [anon_sym_volatile] = ACTIONS(5781), + [anon_sym_restrict] = ACTIONS(5781), + [anon_sym___restrict__] = ACTIONS(5781), + [anon_sym__Atomic] = ACTIONS(5781), + [anon_sym__Noreturn] = ACTIONS(5781), + [anon_sym_noreturn] = ACTIONS(5781), + [anon_sym_mutable] = ACTIONS(5781), + [anon_sym_constinit] = ACTIONS(5781), + [anon_sym_consteval] = ACTIONS(5781), + [sym_primitive_type] = ACTIONS(5781), + [anon_sym_enum] = ACTIONS(5781), + [anon_sym_class] = ACTIONS(5781), + [anon_sym_struct] = ACTIONS(5781), + [anon_sym_union] = ACTIONS(5781), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5781), + [anon_sym_decltype] = ACTIONS(5781), + [anon_sym_virtual] = ACTIONS(5781), + [anon_sym_alignas] = ACTIONS(5781), + [anon_sym_explicit] = ACTIONS(5781), + [anon_sym_typename] = ACTIONS(5781), + [anon_sym_template] = ACTIONS(5781), + [anon_sym_operator] = ACTIONS(5781), + [anon_sym_friend] = ACTIONS(5781), + [anon_sym_public] = ACTIONS(5781), + [anon_sym_private] = ACTIONS(5781), + [anon_sym_protected] = ACTIONS(5781), + [anon_sym_using] = ACTIONS(5781), + [anon_sym_static_assert] = ACTIONS(5781), + [sym_semgrep_metavar] = ACTIONS(5783), }, [1953] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5509), - [anon_sym_COMMA] = ACTIONS(5509), - [anon_sym_RPAREN] = ACTIONS(5509), - [anon_sym_LPAREN2] = ACTIONS(5509), - [anon_sym_DASH] = ACTIONS(5507), - [anon_sym_PLUS] = ACTIONS(5507), - [anon_sym_STAR] = ACTIONS(5507), - [anon_sym_SLASH] = ACTIONS(5507), - [anon_sym_PERCENT] = ACTIONS(5507), - [anon_sym_PIPE_PIPE] = ACTIONS(5509), - [anon_sym_AMP_AMP] = ACTIONS(5509), - [anon_sym_PIPE] = ACTIONS(5507), - [anon_sym_CARET] = ACTIONS(5507), - [anon_sym_AMP] = ACTIONS(5507), - [anon_sym_EQ_EQ] = ACTIONS(5509), - [anon_sym_BANG_EQ] = ACTIONS(5509), - [anon_sym_GT] = ACTIONS(5507), - [anon_sym_GT_EQ] = ACTIONS(5509), - [anon_sym_LT_EQ] = ACTIONS(5507), - [anon_sym_LT] = ACTIONS(5507), - [anon_sym_LT_LT] = ACTIONS(5507), - [anon_sym_GT_GT] = ACTIONS(5507), - [anon_sym___extension__] = ACTIONS(5509), - [anon_sym_COLON_COLON] = ACTIONS(5509), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5509), - [anon_sym_LBRACE] = ACTIONS(5509), - [anon_sym_LBRACK] = ACTIONS(5507), - [anon_sym_EQ] = ACTIONS(5507), - [anon_sym_const] = ACTIONS(5507), - [anon_sym_constexpr] = ACTIONS(5509), - [anon_sym_volatile] = ACTIONS(5509), - [anon_sym_restrict] = ACTIONS(5509), - [anon_sym___restrict__] = ACTIONS(5509), - [anon_sym__Atomic] = ACTIONS(5509), - [anon_sym__Noreturn] = ACTIONS(5509), - [anon_sym_noreturn] = ACTIONS(5509), - [anon_sym_mutable] = ACTIONS(5509), - [anon_sym_constinit] = ACTIONS(5509), - [anon_sym_consteval] = ACTIONS(5509), - [anon_sym_QMARK] = ACTIONS(5509), - [anon_sym_STAR_EQ] = ACTIONS(5509), - [anon_sym_SLASH_EQ] = ACTIONS(5509), - [anon_sym_PERCENT_EQ] = ACTIONS(5509), - [anon_sym_PLUS_EQ] = ACTIONS(5509), - [anon_sym_DASH_EQ] = ACTIONS(5509), - [anon_sym_LT_LT_EQ] = ACTIONS(5509), - [anon_sym_GT_GT_EQ] = ACTIONS(5509), - [anon_sym_AMP_EQ] = ACTIONS(5509), - [anon_sym_CARET_EQ] = ACTIONS(5509), - [anon_sym_PIPE_EQ] = ACTIONS(5509), - [anon_sym_and_eq] = ACTIONS(5509), - [anon_sym_or_eq] = ACTIONS(5509), - [anon_sym_xor_eq] = ACTIONS(5509), - [anon_sym_LT_EQ_GT] = ACTIONS(5509), - [anon_sym_or] = ACTIONS(5507), - [anon_sym_and] = ACTIONS(5507), - [anon_sym_bitor] = ACTIONS(5509), - [anon_sym_xor] = ACTIONS(5507), - [anon_sym_bitand] = ACTIONS(5509), - [anon_sym_not_eq] = ACTIONS(5509), - [anon_sym_DASH_DASH] = ACTIONS(5509), - [anon_sym_PLUS_PLUS] = ACTIONS(5509), - [anon_sym_DOT] = ACTIONS(5507), - [anon_sym_DOT_STAR] = ACTIONS(5509), - [anon_sym_DASH_GT] = ACTIONS(5507), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5509), - [anon_sym_decltype] = ACTIONS(5509), - [anon_sym_DASH_GT_STAR] = ACTIONS(5509), - [sym_semgrep_metavar] = ACTIONS(5509), + [sym_identifier] = ACTIONS(5785), + [aux_sym_preproc_def_token1] = ACTIONS(5785), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5787), + [aux_sym_preproc_if_token1] = ACTIONS(5785), + [aux_sym_preproc_if_token2] = ACTIONS(5785), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5785), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5785), + [aux_sym_preproc_else_token1] = ACTIONS(5785), + [aux_sym_preproc_elif_token1] = ACTIONS(5785), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5785), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5785), + [sym_preproc_directive] = ACTIONS(5785), + [anon_sym_LPAREN2] = ACTIONS(5787), + [anon_sym_TILDE] = ACTIONS(5787), + [anon_sym_STAR] = ACTIONS(5787), + [anon_sym_AMP_AMP] = ACTIONS(5787), + [anon_sym_AMP] = ACTIONS(5785), + [anon_sym___extension__] = ACTIONS(5785), + [anon_sym_typedef] = ACTIONS(5785), + [anon_sym_extern] = ACTIONS(5785), + [anon_sym___attribute__] = ACTIONS(5785), + [anon_sym_COLON_COLON] = ACTIONS(5787), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5787), + [anon_sym___declspec] = ACTIONS(5785), + [anon_sym___based] = ACTIONS(5785), + [anon_sym_signed] = ACTIONS(5785), + [anon_sym_unsigned] = ACTIONS(5785), + [anon_sym_long] = ACTIONS(5785), + [anon_sym_short] = ACTIONS(5785), + [anon_sym_LBRACK] = ACTIONS(5785), + [anon_sym_static] = ACTIONS(5785), + [anon_sym_register] = ACTIONS(5785), + [anon_sym_inline] = ACTIONS(5785), + [anon_sym___inline] = ACTIONS(5785), + [anon_sym___inline__] = ACTIONS(5785), + [anon_sym___forceinline] = ACTIONS(5785), + [anon_sym_thread_local] = ACTIONS(5785), + [anon_sym___thread] = ACTIONS(5785), + [anon_sym_const] = ACTIONS(5785), + [anon_sym_constexpr] = ACTIONS(5785), + [anon_sym_volatile] = ACTIONS(5785), + [anon_sym_restrict] = ACTIONS(5785), + [anon_sym___restrict__] = ACTIONS(5785), + [anon_sym__Atomic] = ACTIONS(5785), + [anon_sym__Noreturn] = ACTIONS(5785), + [anon_sym_noreturn] = ACTIONS(5785), + [anon_sym_mutable] = ACTIONS(5785), + [anon_sym_constinit] = ACTIONS(5785), + [anon_sym_consteval] = ACTIONS(5785), + [sym_primitive_type] = ACTIONS(5785), + [anon_sym_enum] = ACTIONS(5785), + [anon_sym_class] = ACTIONS(5785), + [anon_sym_struct] = ACTIONS(5785), + [anon_sym_union] = ACTIONS(5785), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5785), + [anon_sym_decltype] = ACTIONS(5785), + [anon_sym_virtual] = ACTIONS(5785), + [anon_sym_alignas] = ACTIONS(5785), + [anon_sym_explicit] = ACTIONS(5785), + [anon_sym_typename] = ACTIONS(5785), + [anon_sym_template] = ACTIONS(5785), + [anon_sym_operator] = ACTIONS(5785), + [anon_sym_friend] = ACTIONS(5785), + [anon_sym_public] = ACTIONS(5785), + [anon_sym_private] = ACTIONS(5785), + [anon_sym_protected] = ACTIONS(5785), + [anon_sym_using] = ACTIONS(5785), + [anon_sym_static_assert] = ACTIONS(5785), + [sym_semgrep_metavar] = ACTIONS(5787), }, [1954] = { - [sym_declaration_modifiers] = STATE(5655), - [sym_attribute_specifier] = STATE(5060), - [sym_attribute_declaration] = STATE(5060), - [sym_ms_declspec_modifier] = STATE(5060), - [sym_ms_based_modifier] = STATE(10059), - [sym_declarator] = STATE(8034), - [sym_parenthesized_declarator] = STATE(7634), - [sym_attributed_declarator] = STATE(7634), - [sym_pointer_declarator] = STATE(7634), - [sym_function_declarator] = STATE(7626), - [sym_array_declarator] = STATE(7634), - [sym_storage_class_specifier] = STATE(5060), - [sym_type_qualifier] = STATE(5060), - [sym_decltype] = STATE(9982), - [sym_virtual] = STATE(5060), - [sym_alignas_specifier] = STATE(5060), - [sym_explicit_function_specifier] = STATE(5655), - [sym_operator_cast] = STATE(8119), - [sym_constructor_specifiers] = STATE(4359), - [sym_reference_declarator] = STATE(7634), - [sym_structured_binding_declarator] = STATE(7634), - [sym_template_type] = STATE(9982), - [sym_template_function] = STATE(7634), - [sym_destructor_name] = STATE(7634), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(6973), - [sym_qualified_identifier] = STATE(7634), - [sym_qualified_operator_cast_identifier] = STATE(8119), - [sym_operator_name] = STATE(7634), - [aux_sym_operator_cast_definition_repeat1] = STATE(4359), - [sym_identifier] = ACTIONS(5748), - [anon_sym_LPAREN2] = ACTIONS(3704), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3708), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(5750), - [anon_sym_extern] = ACTIONS(5752), - [anon_sym___attribute__] = ACTIONS(5754), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5756), - [anon_sym___declspec] = ACTIONS(5758), - [anon_sym___based] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_static] = ACTIONS(5752), - [anon_sym_register] = ACTIONS(5752), - [anon_sym_inline] = ACTIONS(5752), - [anon_sym___inline] = ACTIONS(5752), - [anon_sym___inline__] = ACTIONS(5752), - [anon_sym___forceinline] = ACTIONS(5752), - [anon_sym_thread_local] = ACTIONS(5752), - [anon_sym___thread] = ACTIONS(5752), - [anon_sym_const] = ACTIONS(5750), - [anon_sym_constexpr] = ACTIONS(5750), - [anon_sym_volatile] = ACTIONS(5750), - [anon_sym_restrict] = ACTIONS(5750), - [anon_sym___restrict__] = ACTIONS(5750), - [anon_sym__Atomic] = ACTIONS(5750), - [anon_sym__Noreturn] = ACTIONS(5750), - [anon_sym_noreturn] = ACTIONS(5750), - [anon_sym_mutable] = ACTIONS(5750), - [anon_sym_constinit] = ACTIONS(5750), - [anon_sym_consteval] = ACTIONS(5750), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2313), - [anon_sym_virtual] = ACTIONS(5760), - [anon_sym_alignas] = ACTIONS(5762), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1538), - [anon_sym_operator] = ACTIONS(135), + [sym_identifier] = ACTIONS(5789), + [aux_sym_preproc_def_token1] = ACTIONS(5789), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5791), + [aux_sym_preproc_if_token1] = ACTIONS(5789), + [aux_sym_preproc_if_token2] = ACTIONS(5789), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5789), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5789), + [aux_sym_preproc_else_token1] = ACTIONS(5789), + [aux_sym_preproc_elif_token1] = ACTIONS(5789), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5789), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5789), + [sym_preproc_directive] = ACTIONS(5789), + [anon_sym_LPAREN2] = ACTIONS(5791), + [anon_sym_TILDE] = ACTIONS(5791), + [anon_sym_STAR] = ACTIONS(5791), + [anon_sym_AMP_AMP] = ACTIONS(5791), + [anon_sym_AMP] = ACTIONS(5789), + [anon_sym___extension__] = ACTIONS(5789), + [anon_sym_typedef] = ACTIONS(5789), + [anon_sym_extern] = ACTIONS(5789), + [anon_sym___attribute__] = ACTIONS(5789), + [anon_sym_COLON_COLON] = ACTIONS(5791), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5791), + [anon_sym___declspec] = ACTIONS(5789), + [anon_sym___based] = ACTIONS(5789), + [anon_sym_signed] = ACTIONS(5789), + [anon_sym_unsigned] = ACTIONS(5789), + [anon_sym_long] = ACTIONS(5789), + [anon_sym_short] = ACTIONS(5789), + [anon_sym_LBRACK] = ACTIONS(5789), + [anon_sym_static] = ACTIONS(5789), + [anon_sym_register] = ACTIONS(5789), + [anon_sym_inline] = ACTIONS(5789), + [anon_sym___inline] = ACTIONS(5789), + [anon_sym___inline__] = ACTIONS(5789), + [anon_sym___forceinline] = ACTIONS(5789), + [anon_sym_thread_local] = ACTIONS(5789), + [anon_sym___thread] = ACTIONS(5789), + [anon_sym_const] = ACTIONS(5789), + [anon_sym_constexpr] = ACTIONS(5789), + [anon_sym_volatile] = ACTIONS(5789), + [anon_sym_restrict] = ACTIONS(5789), + [anon_sym___restrict__] = ACTIONS(5789), + [anon_sym__Atomic] = ACTIONS(5789), + [anon_sym__Noreturn] = ACTIONS(5789), + [anon_sym_noreturn] = ACTIONS(5789), + [anon_sym_mutable] = ACTIONS(5789), + [anon_sym_constinit] = ACTIONS(5789), + [anon_sym_consteval] = ACTIONS(5789), + [sym_primitive_type] = ACTIONS(5789), + [anon_sym_enum] = ACTIONS(5789), + [anon_sym_class] = ACTIONS(5789), + [anon_sym_struct] = ACTIONS(5789), + [anon_sym_union] = ACTIONS(5789), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5789), + [anon_sym_decltype] = ACTIONS(5789), + [anon_sym_virtual] = ACTIONS(5789), + [anon_sym_alignas] = ACTIONS(5789), + [anon_sym_explicit] = ACTIONS(5789), + [anon_sym_typename] = ACTIONS(5789), + [anon_sym_template] = ACTIONS(5789), + [anon_sym_operator] = ACTIONS(5789), + [anon_sym_friend] = ACTIONS(5789), + [anon_sym_public] = ACTIONS(5789), + [anon_sym_private] = ACTIONS(5789), + [anon_sym_protected] = ACTIONS(5789), + [anon_sym_using] = ACTIONS(5789), + [anon_sym_static_assert] = ACTIONS(5789), + [sym_semgrep_metavar] = ACTIONS(5791), }, [1955] = { - [sym_template_argument_list] = STATE(1964), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5462), - [anon_sym_COMMA] = ACTIONS(5462), - [anon_sym_RPAREN] = ACTIONS(5464), - [anon_sym_LPAREN2] = ACTIONS(5464), - [anon_sym_DASH] = ACTIONS(5469), - [anon_sym_PLUS] = ACTIONS(5469), - [anon_sym_STAR] = ACTIONS(5471), - [anon_sym_SLASH] = ACTIONS(5469), - [anon_sym_PERCENT] = ACTIONS(5469), - [anon_sym_PIPE_PIPE] = ACTIONS(5462), - [anon_sym_AMP_AMP] = ACTIONS(5464), - [anon_sym_PIPE] = ACTIONS(5469), - [anon_sym_CARET] = ACTIONS(5469), - [anon_sym_AMP] = ACTIONS(5471), - [anon_sym_EQ_EQ] = ACTIONS(5462), - [anon_sym_BANG_EQ] = ACTIONS(5462), - [anon_sym_GT] = ACTIONS(5469), - [anon_sym_GT_EQ] = ACTIONS(5462), - [anon_sym_LT_EQ] = ACTIONS(5469), - [anon_sym_LT] = ACTIONS(5767), - [anon_sym_LT_LT] = ACTIONS(5469), - [anon_sym_GT_GT] = ACTIONS(5469), - [anon_sym___extension__] = ACTIONS(5467), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(5467), - [anon_sym_LBRACK] = ACTIONS(5464), - [anon_sym_EQ] = ACTIONS(5469), - [anon_sym_const] = ACTIONS(5460), - [anon_sym_constexpr] = ACTIONS(5467), - [anon_sym_volatile] = ACTIONS(5467), - [anon_sym_restrict] = ACTIONS(5467), - [anon_sym___restrict__] = ACTIONS(5467), - [anon_sym__Atomic] = ACTIONS(5467), - [anon_sym__Noreturn] = ACTIONS(5467), - [anon_sym_noreturn] = ACTIONS(5467), - [anon_sym_mutable] = ACTIONS(5467), - [anon_sym_constinit] = ACTIONS(5467), - [anon_sym_consteval] = ACTIONS(5467), - [anon_sym_QMARK] = ACTIONS(5462), - [anon_sym_STAR_EQ] = ACTIONS(5462), - [anon_sym_SLASH_EQ] = ACTIONS(5462), - [anon_sym_PERCENT_EQ] = ACTIONS(5462), - [anon_sym_PLUS_EQ] = ACTIONS(5462), - [anon_sym_DASH_EQ] = ACTIONS(5462), - [anon_sym_LT_LT_EQ] = ACTIONS(5462), - [anon_sym_GT_GT_EQ] = ACTIONS(5462), - [anon_sym_AMP_EQ] = ACTIONS(5462), - [anon_sym_CARET_EQ] = ACTIONS(5462), - [anon_sym_PIPE_EQ] = ACTIONS(5462), - [anon_sym_and_eq] = ACTIONS(5462), - [anon_sym_or_eq] = ACTIONS(5462), - [anon_sym_xor_eq] = ACTIONS(5462), - [anon_sym_LT_EQ_GT] = ACTIONS(5462), - [anon_sym_or] = ACTIONS(5469), - [anon_sym_and] = ACTIONS(5469), - [anon_sym_bitor] = ACTIONS(5462), - [anon_sym_xor] = ACTIONS(5469), - [anon_sym_bitand] = ACTIONS(5462), - [anon_sym_not_eq] = ACTIONS(5462), - [anon_sym_DASH_DASH] = ACTIONS(5462), - [anon_sym_PLUS_PLUS] = ACTIONS(5462), - [anon_sym_DOT] = ACTIONS(5469), - [anon_sym_DOT_STAR] = ACTIONS(5462), - [anon_sym_DASH_GT] = ACTIONS(5469), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5467), - [anon_sym_decltype] = ACTIONS(5467), - [anon_sym_DASH_GT_STAR] = ACTIONS(5462), - [sym_semgrep_metavar] = ACTIONS(5467), + [sym_identifier] = ACTIONS(3219), + [aux_sym_preproc_def_token1] = ACTIONS(3219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3221), + [aux_sym_preproc_if_token1] = ACTIONS(3219), + [aux_sym_preproc_if_token2] = ACTIONS(3219), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3219), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3219), + [aux_sym_preproc_else_token1] = ACTIONS(3219), + [aux_sym_preproc_elif_token1] = ACTIONS(3219), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3219), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3219), + [sym_preproc_directive] = ACTIONS(3219), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3221), + [anon_sym_STAR] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_AMP] = ACTIONS(3219), + [anon_sym___extension__] = ACTIONS(3219), + [anon_sym_typedef] = ACTIONS(3219), + [anon_sym_extern] = ACTIONS(3219), + [anon_sym___attribute__] = ACTIONS(3219), + [anon_sym_COLON_COLON] = ACTIONS(3221), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3221), + [anon_sym___declspec] = ACTIONS(3219), + [anon_sym___based] = ACTIONS(3219), + [anon_sym_signed] = ACTIONS(3219), + [anon_sym_unsigned] = ACTIONS(3219), + [anon_sym_long] = ACTIONS(3219), + [anon_sym_short] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_register] = ACTIONS(3219), + [anon_sym_inline] = ACTIONS(3219), + [anon_sym___inline] = ACTIONS(3219), + [anon_sym___inline__] = ACTIONS(3219), + [anon_sym___forceinline] = ACTIONS(3219), + [anon_sym_thread_local] = ACTIONS(3219), + [anon_sym___thread] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_constexpr] = ACTIONS(3219), + [anon_sym_volatile] = ACTIONS(3219), + [anon_sym_restrict] = ACTIONS(3219), + [anon_sym___restrict__] = ACTIONS(3219), + [anon_sym__Atomic] = ACTIONS(3219), + [anon_sym__Noreturn] = ACTIONS(3219), + [anon_sym_noreturn] = ACTIONS(3219), + [anon_sym_mutable] = ACTIONS(3219), + [anon_sym_constinit] = ACTIONS(3219), + [anon_sym_consteval] = ACTIONS(3219), + [sym_primitive_type] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_struct] = ACTIONS(3219), + [anon_sym_union] = ACTIONS(3219), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3219), + [anon_sym_decltype] = ACTIONS(3219), + [anon_sym_virtual] = ACTIONS(3219), + [anon_sym_alignas] = ACTIONS(3219), + [anon_sym_explicit] = ACTIONS(3219), + [anon_sym_typename] = ACTIONS(3219), + [anon_sym_template] = ACTIONS(3219), + [anon_sym_operator] = ACTIONS(3219), + [anon_sym_friend] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_static_assert] = ACTIONS(3219), + [sym_semgrep_metavar] = ACTIONS(3221), }, [1956] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5479), - [anon_sym_COMMA] = ACTIONS(5479), - [anon_sym_RPAREN] = ACTIONS(5479), - [anon_sym_LPAREN2] = ACTIONS(5479), - [anon_sym_DASH] = ACTIONS(5477), - [anon_sym_PLUS] = ACTIONS(5477), - [anon_sym_STAR] = ACTIONS(5477), - [anon_sym_SLASH] = ACTIONS(5477), - [anon_sym_PERCENT] = ACTIONS(5477), - [anon_sym_PIPE_PIPE] = ACTIONS(5479), - [anon_sym_AMP_AMP] = ACTIONS(5479), - [anon_sym_PIPE] = ACTIONS(5477), - [anon_sym_CARET] = ACTIONS(5477), - [anon_sym_AMP] = ACTIONS(5477), - [anon_sym_EQ_EQ] = ACTIONS(5479), - [anon_sym_BANG_EQ] = ACTIONS(5479), - [anon_sym_GT] = ACTIONS(5477), - [anon_sym_GT_EQ] = ACTIONS(5479), - [anon_sym_LT_EQ] = ACTIONS(5477), - [anon_sym_LT] = ACTIONS(5477), - [anon_sym_LT_LT] = ACTIONS(5477), - [anon_sym_GT_GT] = ACTIONS(5477), - [anon_sym___extension__] = ACTIONS(5479), - [anon_sym_COLON_COLON] = ACTIONS(5479), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5479), - [anon_sym_LBRACE] = ACTIONS(5479), - [anon_sym_LBRACK] = ACTIONS(5477), - [anon_sym_EQ] = ACTIONS(5477), - [anon_sym_const] = ACTIONS(5477), - [anon_sym_constexpr] = ACTIONS(5479), - [anon_sym_volatile] = ACTIONS(5479), - [anon_sym_restrict] = ACTIONS(5479), - [anon_sym___restrict__] = ACTIONS(5479), - [anon_sym__Atomic] = ACTIONS(5479), - [anon_sym__Noreturn] = ACTIONS(5479), - [anon_sym_noreturn] = ACTIONS(5479), - [anon_sym_mutable] = ACTIONS(5479), - [anon_sym_constinit] = ACTIONS(5479), - [anon_sym_consteval] = ACTIONS(5479), - [anon_sym_QMARK] = ACTIONS(5479), - [anon_sym_STAR_EQ] = ACTIONS(5479), - [anon_sym_SLASH_EQ] = ACTIONS(5479), - [anon_sym_PERCENT_EQ] = ACTIONS(5479), - [anon_sym_PLUS_EQ] = ACTIONS(5479), - [anon_sym_DASH_EQ] = ACTIONS(5479), - [anon_sym_LT_LT_EQ] = ACTIONS(5479), - [anon_sym_GT_GT_EQ] = ACTIONS(5479), - [anon_sym_AMP_EQ] = ACTIONS(5479), - [anon_sym_CARET_EQ] = ACTIONS(5479), - [anon_sym_PIPE_EQ] = ACTIONS(5479), - [anon_sym_and_eq] = ACTIONS(5479), - [anon_sym_or_eq] = ACTIONS(5479), - [anon_sym_xor_eq] = ACTIONS(5479), - [anon_sym_LT_EQ_GT] = ACTIONS(5479), - [anon_sym_or] = ACTIONS(5477), - [anon_sym_and] = ACTIONS(5477), - [anon_sym_bitor] = ACTIONS(5479), - [anon_sym_xor] = ACTIONS(5477), - [anon_sym_bitand] = ACTIONS(5479), - [anon_sym_not_eq] = ACTIONS(5479), - [anon_sym_DASH_DASH] = ACTIONS(5479), - [anon_sym_PLUS_PLUS] = ACTIONS(5479), - [anon_sym_DOT] = ACTIONS(5477), - [anon_sym_DOT_STAR] = ACTIONS(5479), - [anon_sym_DASH_GT] = ACTIONS(5477), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5479), - [anon_sym_decltype] = ACTIONS(5479), - [anon_sym_DASH_GT_STAR] = ACTIONS(5479), - [sym_semgrep_metavar] = ACTIONS(5479), + [sym_identifier] = ACTIONS(5793), + [aux_sym_preproc_def_token1] = ACTIONS(5793), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5795), + [aux_sym_preproc_if_token1] = ACTIONS(5793), + [aux_sym_preproc_if_token2] = ACTIONS(5793), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5793), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5793), + [aux_sym_preproc_else_token1] = ACTIONS(5793), + [aux_sym_preproc_elif_token1] = ACTIONS(5793), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5793), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5793), + [sym_preproc_directive] = ACTIONS(5793), + [anon_sym_LPAREN2] = ACTIONS(5795), + [anon_sym_TILDE] = ACTIONS(5795), + [anon_sym_STAR] = ACTIONS(5795), + [anon_sym_AMP_AMP] = ACTIONS(5795), + [anon_sym_AMP] = ACTIONS(5793), + [anon_sym___extension__] = ACTIONS(5793), + [anon_sym_typedef] = ACTIONS(5793), + [anon_sym_extern] = ACTIONS(5793), + [anon_sym___attribute__] = ACTIONS(5793), + [anon_sym_COLON_COLON] = ACTIONS(5795), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5795), + [anon_sym___declspec] = ACTIONS(5793), + [anon_sym___based] = ACTIONS(5793), + [anon_sym_signed] = ACTIONS(5793), + [anon_sym_unsigned] = ACTIONS(5793), + [anon_sym_long] = ACTIONS(5793), + [anon_sym_short] = ACTIONS(5793), + [anon_sym_LBRACK] = ACTIONS(5793), + [anon_sym_static] = ACTIONS(5793), + [anon_sym_register] = ACTIONS(5793), + [anon_sym_inline] = ACTIONS(5793), + [anon_sym___inline] = ACTIONS(5793), + [anon_sym___inline__] = ACTIONS(5793), + [anon_sym___forceinline] = ACTIONS(5793), + [anon_sym_thread_local] = ACTIONS(5793), + [anon_sym___thread] = ACTIONS(5793), + [anon_sym_const] = ACTIONS(5793), + [anon_sym_constexpr] = ACTIONS(5793), + [anon_sym_volatile] = ACTIONS(5793), + [anon_sym_restrict] = ACTIONS(5793), + [anon_sym___restrict__] = ACTIONS(5793), + [anon_sym__Atomic] = ACTIONS(5793), + [anon_sym__Noreturn] = ACTIONS(5793), + [anon_sym_noreturn] = ACTIONS(5793), + [anon_sym_mutable] = ACTIONS(5793), + [anon_sym_constinit] = ACTIONS(5793), + [anon_sym_consteval] = ACTIONS(5793), + [sym_primitive_type] = ACTIONS(5793), + [anon_sym_enum] = ACTIONS(5793), + [anon_sym_class] = ACTIONS(5793), + [anon_sym_struct] = ACTIONS(5793), + [anon_sym_union] = ACTIONS(5793), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5793), + [anon_sym_decltype] = ACTIONS(5793), + [anon_sym_virtual] = ACTIONS(5793), + [anon_sym_alignas] = ACTIONS(5793), + [anon_sym_explicit] = ACTIONS(5793), + [anon_sym_typename] = ACTIONS(5793), + [anon_sym_template] = ACTIONS(5793), + [anon_sym_operator] = ACTIONS(5793), + [anon_sym_friend] = ACTIONS(5793), + [anon_sym_public] = ACTIONS(5793), + [anon_sym_private] = ACTIONS(5793), + [anon_sym_protected] = ACTIONS(5793), + [anon_sym_using] = ACTIONS(5793), + [anon_sym_static_assert] = ACTIONS(5793), + [sym_semgrep_metavar] = ACTIONS(5795), }, [1957] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5513), - [anon_sym_COMMA] = ACTIONS(5513), - [anon_sym_RPAREN] = ACTIONS(5513), - [anon_sym_LPAREN2] = ACTIONS(5513), - [anon_sym_DASH] = ACTIONS(5511), - [anon_sym_PLUS] = ACTIONS(5511), - [anon_sym_STAR] = ACTIONS(5511), - [anon_sym_SLASH] = ACTIONS(5511), - [anon_sym_PERCENT] = ACTIONS(5511), - [anon_sym_PIPE_PIPE] = ACTIONS(5513), - [anon_sym_AMP_AMP] = ACTIONS(5513), - [anon_sym_PIPE] = ACTIONS(5511), - [anon_sym_CARET] = ACTIONS(5511), - [anon_sym_AMP] = ACTIONS(5511), - [anon_sym_EQ_EQ] = ACTIONS(5513), - [anon_sym_BANG_EQ] = ACTIONS(5513), - [anon_sym_GT] = ACTIONS(5511), - [anon_sym_GT_EQ] = ACTIONS(5513), - [anon_sym_LT_EQ] = ACTIONS(5511), - [anon_sym_LT] = ACTIONS(5511), - [anon_sym_LT_LT] = ACTIONS(5511), - [anon_sym_GT_GT] = ACTIONS(5511), - [anon_sym___extension__] = ACTIONS(5513), - [anon_sym_COLON_COLON] = ACTIONS(5513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5513), - [anon_sym_LBRACE] = ACTIONS(5513), - [anon_sym_LBRACK] = ACTIONS(5511), - [anon_sym_EQ] = ACTIONS(5511), - [anon_sym_const] = ACTIONS(5511), - [anon_sym_constexpr] = ACTIONS(5513), - [anon_sym_volatile] = ACTIONS(5513), - [anon_sym_restrict] = ACTIONS(5513), - [anon_sym___restrict__] = ACTIONS(5513), - [anon_sym__Atomic] = ACTIONS(5513), - [anon_sym__Noreturn] = ACTIONS(5513), - [anon_sym_noreturn] = ACTIONS(5513), - [anon_sym_mutable] = ACTIONS(5513), - [anon_sym_constinit] = ACTIONS(5513), - [anon_sym_consteval] = ACTIONS(5513), - [anon_sym_QMARK] = ACTIONS(5513), - [anon_sym_STAR_EQ] = ACTIONS(5513), - [anon_sym_SLASH_EQ] = ACTIONS(5513), - [anon_sym_PERCENT_EQ] = ACTIONS(5513), - [anon_sym_PLUS_EQ] = ACTIONS(5513), - [anon_sym_DASH_EQ] = ACTIONS(5513), - [anon_sym_LT_LT_EQ] = ACTIONS(5513), - [anon_sym_GT_GT_EQ] = ACTIONS(5513), - [anon_sym_AMP_EQ] = ACTIONS(5513), - [anon_sym_CARET_EQ] = ACTIONS(5513), - [anon_sym_PIPE_EQ] = ACTIONS(5513), - [anon_sym_and_eq] = ACTIONS(5513), - [anon_sym_or_eq] = ACTIONS(5513), - [anon_sym_xor_eq] = ACTIONS(5513), - [anon_sym_LT_EQ_GT] = ACTIONS(5513), - [anon_sym_or] = ACTIONS(5511), - [anon_sym_and] = ACTIONS(5511), - [anon_sym_bitor] = ACTIONS(5513), - [anon_sym_xor] = ACTIONS(5511), - [anon_sym_bitand] = ACTIONS(5513), - [anon_sym_not_eq] = ACTIONS(5513), - [anon_sym_DASH_DASH] = ACTIONS(5513), - [anon_sym_PLUS_PLUS] = ACTIONS(5513), - [anon_sym_DOT] = ACTIONS(5511), - [anon_sym_DOT_STAR] = ACTIONS(5513), - [anon_sym_DASH_GT] = ACTIONS(5511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5513), - [anon_sym_decltype] = ACTIONS(5513), - [anon_sym_DASH_GT_STAR] = ACTIONS(5513), - [sym_semgrep_metavar] = ACTIONS(5513), + [sym_declaration_modifiers] = STATE(4979), + [sym_attribute_specifier] = STATE(4535), + [sym_attribute_declaration] = STATE(4535), + [sym_ms_declspec_modifier] = STATE(4535), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7259), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4535), + [sym_type_qualifier] = STATE(4535), + [sym_decltype] = STATE(9605), + [sym_virtual] = STATE(4535), + [sym_alignas_specifier] = STATE(4535), + [sym_explicit_function_specifier] = STATE(4979), + [sym_operator_cast] = STATE(7752), + [sym_constructor_specifiers] = STATE(4069), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(9605), + [sym_template_function] = STATE(7305), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6514), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_operator_cast_identifier] = STATE(7752), + [sym_operator_name] = STATE(7305), + [aux_sym_operator_cast_definition_repeat1] = STATE(4069), + [sym_identifier] = ACTIONS(5741), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(5743), + [anon_sym_extern] = ACTIONS(5745), + [anon_sym___attribute__] = ACTIONS(5747), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5749), + [anon_sym___declspec] = ACTIONS(5751), + [anon_sym___based] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(5745), + [anon_sym_register] = ACTIONS(5745), + [anon_sym_inline] = ACTIONS(5745), + [anon_sym___inline] = ACTIONS(5745), + [anon_sym___inline__] = ACTIONS(5745), + [anon_sym___forceinline] = ACTIONS(5745), + [anon_sym_thread_local] = ACTIONS(5745), + [anon_sym___thread] = ACTIONS(5745), + [anon_sym_const] = ACTIONS(5743), + [anon_sym_constexpr] = ACTIONS(5743), + [anon_sym_volatile] = ACTIONS(5743), + [anon_sym_restrict] = ACTIONS(5743), + [anon_sym___restrict__] = ACTIONS(5743), + [anon_sym__Atomic] = ACTIONS(5743), + [anon_sym__Noreturn] = ACTIONS(5743), + [anon_sym_noreturn] = ACTIONS(5743), + [anon_sym_mutable] = ACTIONS(5743), + [anon_sym_constinit] = ACTIONS(5743), + [anon_sym_consteval] = ACTIONS(5743), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_virtual] = ACTIONS(5753), + [anon_sym_alignas] = ACTIONS(5755), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_operator] = ACTIONS(135), }, [1958] = { - [sym_string_literal] = STATE(3792), - [sym_template_argument_list] = STATE(5373), - [sym_raw_string_literal] = STATE(3792), - [sym_identifier] = ACTIONS(4837), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [aux_sym_preproc_if_token2] = ACTIONS(4829), - [aux_sym_preproc_else_token1] = ACTIONS(4829), - [aux_sym_preproc_elif_token1] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(4829), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(5770), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_EQ] = ACTIONS(5773), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(5775), - [anon_sym_SLASH_EQ] = ACTIONS(5775), - [anon_sym_PERCENT_EQ] = ACTIONS(5775), - [anon_sym_PLUS_EQ] = ACTIONS(5775), - [anon_sym_DASH_EQ] = ACTIONS(5775), - [anon_sym_LT_LT_EQ] = ACTIONS(5775), - [anon_sym_GT_GT_EQ] = ACTIONS(5775), - [anon_sym_AMP_EQ] = ACTIONS(5775), - [anon_sym_CARET_EQ] = ACTIONS(5775), - [anon_sym_PIPE_EQ] = ACTIONS(5775), - [anon_sym_and_eq] = ACTIONS(5773), - [anon_sym_or_eq] = ACTIONS(5773), - [anon_sym_xor_eq] = ACTIONS(5773), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4837), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4837), - [anon_sym_not_eq] = ACTIONS(4837), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(3842), - [anon_sym_u_DQUOTE] = ACTIONS(3842), - [anon_sym_U_DQUOTE] = ACTIONS(3842), - [anon_sym_u8_DQUOTE] = ACTIONS(3842), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3850), - [anon_sym_LR_DQUOTE] = ACTIONS(3850), - [anon_sym_uR_DQUOTE] = ACTIONS(3850), - [anon_sym_UR_DQUOTE] = ACTIONS(3850), - [anon_sym_u8R_DQUOTE] = ACTIONS(3850), + [sym_identifier] = ACTIONS(5797), + [aux_sym_preproc_def_token1] = ACTIONS(5797), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5799), + [aux_sym_preproc_if_token1] = ACTIONS(5797), + [aux_sym_preproc_if_token2] = ACTIONS(5797), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5797), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5797), + [aux_sym_preproc_else_token1] = ACTIONS(5797), + [aux_sym_preproc_elif_token1] = ACTIONS(5797), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5797), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5797), + [sym_preproc_directive] = ACTIONS(5797), + [anon_sym_LPAREN2] = ACTIONS(5799), + [anon_sym_TILDE] = ACTIONS(5799), + [anon_sym_STAR] = ACTIONS(5799), + [anon_sym_AMP_AMP] = ACTIONS(5799), + [anon_sym_AMP] = ACTIONS(5797), + [anon_sym___extension__] = ACTIONS(5797), + [anon_sym_typedef] = ACTIONS(5797), + [anon_sym_extern] = ACTIONS(5797), + [anon_sym___attribute__] = ACTIONS(5797), + [anon_sym_COLON_COLON] = ACTIONS(5799), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5799), + [anon_sym___declspec] = ACTIONS(5797), + [anon_sym___based] = ACTIONS(5797), + [anon_sym_signed] = ACTIONS(5797), + [anon_sym_unsigned] = ACTIONS(5797), + [anon_sym_long] = ACTIONS(5797), + [anon_sym_short] = ACTIONS(5797), + [anon_sym_LBRACK] = ACTIONS(5797), + [anon_sym_static] = ACTIONS(5797), + [anon_sym_register] = ACTIONS(5797), + [anon_sym_inline] = ACTIONS(5797), + [anon_sym___inline] = ACTIONS(5797), + [anon_sym___inline__] = ACTIONS(5797), + [anon_sym___forceinline] = ACTIONS(5797), + [anon_sym_thread_local] = ACTIONS(5797), + [anon_sym___thread] = ACTIONS(5797), + [anon_sym_const] = ACTIONS(5797), + [anon_sym_constexpr] = ACTIONS(5797), + [anon_sym_volatile] = ACTIONS(5797), + [anon_sym_restrict] = ACTIONS(5797), + [anon_sym___restrict__] = ACTIONS(5797), + [anon_sym__Atomic] = ACTIONS(5797), + [anon_sym__Noreturn] = ACTIONS(5797), + [anon_sym_noreturn] = ACTIONS(5797), + [anon_sym_mutable] = ACTIONS(5797), + [anon_sym_constinit] = ACTIONS(5797), + [anon_sym_consteval] = ACTIONS(5797), + [sym_primitive_type] = ACTIONS(5797), + [anon_sym_enum] = ACTIONS(5797), + [anon_sym_class] = ACTIONS(5797), + [anon_sym_struct] = ACTIONS(5797), + [anon_sym_union] = ACTIONS(5797), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5797), + [anon_sym_decltype] = ACTIONS(5797), + [anon_sym_virtual] = ACTIONS(5797), + [anon_sym_alignas] = ACTIONS(5797), + [anon_sym_explicit] = ACTIONS(5797), + [anon_sym_typename] = ACTIONS(5797), + [anon_sym_template] = ACTIONS(5797), + [anon_sym_operator] = ACTIONS(5797), + [anon_sym_friend] = ACTIONS(5797), + [anon_sym_public] = ACTIONS(5797), + [anon_sym_private] = ACTIONS(5797), + [anon_sym_protected] = ACTIONS(5797), + [anon_sym_using] = ACTIONS(5797), + [anon_sym_static_assert] = ACTIONS(5797), + [sym_semgrep_metavar] = ACTIONS(5799), }, [1959] = { - [sym_identifier] = ACTIONS(3096), - [aux_sym_preproc_def_token1] = ACTIONS(3096), - [aux_sym_preproc_if_token1] = ACTIONS(3096), - [aux_sym_preproc_if_token2] = ACTIONS(3096), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3096), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3096), - [aux_sym_preproc_else_token1] = ACTIONS(3096), - [aux_sym_preproc_elif_token1] = ACTIONS(3096), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3096), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3096), - [sym_preproc_directive] = ACTIONS(3096), - [anon_sym_LPAREN2] = ACTIONS(3094), - [anon_sym_TILDE] = ACTIONS(3094), - [anon_sym_STAR] = ACTIONS(3094), - [anon_sym_AMP_AMP] = ACTIONS(3094), - [anon_sym_AMP] = ACTIONS(3096), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_typedef] = ACTIONS(3096), - [anon_sym_extern] = ACTIONS(3096), - [anon_sym___attribute__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(3094), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3094), - [anon_sym___declspec] = ACTIONS(3096), - [anon_sym___based] = ACTIONS(3096), - [anon_sym_signed] = ACTIONS(3096), - [anon_sym_unsigned] = ACTIONS(3096), - [anon_sym_long] = ACTIONS(3096), - [anon_sym_short] = ACTIONS(3096), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_static] = ACTIONS(3096), - [anon_sym_register] = ACTIONS(3096), - [anon_sym_inline] = ACTIONS(3096), - [anon_sym___inline] = ACTIONS(3096), - [anon_sym___inline__] = ACTIONS(3096), - [anon_sym___forceinline] = ACTIONS(3096), - [anon_sym_thread_local] = ACTIONS(3096), - [anon_sym___thread] = ACTIONS(3096), - [anon_sym_const] = ACTIONS(3096), - [anon_sym_constexpr] = ACTIONS(3096), - [anon_sym_volatile] = ACTIONS(3096), - [anon_sym_restrict] = ACTIONS(3096), - [anon_sym___restrict__] = ACTIONS(3096), - [anon_sym__Atomic] = ACTIONS(3096), - [anon_sym__Noreturn] = ACTIONS(3096), - [anon_sym_noreturn] = ACTIONS(3096), - [anon_sym_mutable] = ACTIONS(3096), - [anon_sym_constinit] = ACTIONS(3096), - [anon_sym_consteval] = ACTIONS(3096), - [sym_primitive_type] = ACTIONS(3096), - [anon_sym_enum] = ACTIONS(3096), - [anon_sym_class] = ACTIONS(3096), - [anon_sym_struct] = ACTIONS(3096), - [anon_sym_union] = ACTIONS(3096), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3096), - [anon_sym_decltype] = ACTIONS(3096), - [anon_sym_virtual] = ACTIONS(3096), - [anon_sym_alignas] = ACTIONS(3096), - [anon_sym_explicit] = ACTIONS(3096), - [anon_sym_typename] = ACTIONS(3096), - [anon_sym_template] = ACTIONS(3096), - [anon_sym_operator] = ACTIONS(3096), - [anon_sym_friend] = ACTIONS(3096), - [anon_sym_public] = ACTIONS(3096), - [anon_sym_private] = ACTIONS(3096), - [anon_sym_protected] = ACTIONS(3096), - [anon_sym_using] = ACTIONS(3096), - [anon_sym_static_assert] = ACTIONS(3096), - [anon_sym_catch] = ACTIONS(3096), + [sym_identifier] = ACTIONS(5801), + [aux_sym_preproc_def_token1] = ACTIONS(5801), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5803), + [aux_sym_preproc_if_token1] = ACTIONS(5801), + [aux_sym_preproc_if_token2] = ACTIONS(5801), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5801), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5801), + [aux_sym_preproc_else_token1] = ACTIONS(5801), + [aux_sym_preproc_elif_token1] = ACTIONS(5801), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5801), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5801), + [sym_preproc_directive] = ACTIONS(5801), + [anon_sym_LPAREN2] = ACTIONS(5803), + [anon_sym_TILDE] = ACTIONS(5803), + [anon_sym_STAR] = ACTIONS(5803), + [anon_sym_AMP_AMP] = ACTIONS(5803), + [anon_sym_AMP] = ACTIONS(5801), + [anon_sym___extension__] = ACTIONS(5801), + [anon_sym_typedef] = ACTIONS(5801), + [anon_sym_extern] = ACTIONS(5801), + [anon_sym___attribute__] = ACTIONS(5801), + [anon_sym_COLON_COLON] = ACTIONS(5803), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5803), + [anon_sym___declspec] = ACTIONS(5801), + [anon_sym___based] = ACTIONS(5801), + [anon_sym_signed] = ACTIONS(5801), + [anon_sym_unsigned] = ACTIONS(5801), + [anon_sym_long] = ACTIONS(5801), + [anon_sym_short] = ACTIONS(5801), + [anon_sym_LBRACK] = ACTIONS(5801), + [anon_sym_static] = ACTIONS(5801), + [anon_sym_register] = ACTIONS(5801), + [anon_sym_inline] = ACTIONS(5801), + [anon_sym___inline] = ACTIONS(5801), + [anon_sym___inline__] = ACTIONS(5801), + [anon_sym___forceinline] = ACTIONS(5801), + [anon_sym_thread_local] = ACTIONS(5801), + [anon_sym___thread] = ACTIONS(5801), + [anon_sym_const] = ACTIONS(5801), + [anon_sym_constexpr] = ACTIONS(5801), + [anon_sym_volatile] = ACTIONS(5801), + [anon_sym_restrict] = ACTIONS(5801), + [anon_sym___restrict__] = ACTIONS(5801), + [anon_sym__Atomic] = ACTIONS(5801), + [anon_sym__Noreturn] = ACTIONS(5801), + [anon_sym_noreturn] = ACTIONS(5801), + [anon_sym_mutable] = ACTIONS(5801), + [anon_sym_constinit] = ACTIONS(5801), + [anon_sym_consteval] = ACTIONS(5801), + [sym_primitive_type] = ACTIONS(5801), + [anon_sym_enum] = ACTIONS(5801), + [anon_sym_class] = ACTIONS(5801), + [anon_sym_struct] = ACTIONS(5801), + [anon_sym_union] = ACTIONS(5801), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5801), + [anon_sym_decltype] = ACTIONS(5801), + [anon_sym_virtual] = ACTIONS(5801), + [anon_sym_alignas] = ACTIONS(5801), + [anon_sym_explicit] = ACTIONS(5801), + [anon_sym_typename] = ACTIONS(5801), + [anon_sym_template] = ACTIONS(5801), + [anon_sym_operator] = ACTIONS(5801), + [anon_sym_friend] = ACTIONS(5801), + [anon_sym_public] = ACTIONS(5801), + [anon_sym_private] = ACTIONS(5801), + [anon_sym_protected] = ACTIONS(5801), + [anon_sym_using] = ACTIONS(5801), + [anon_sym_static_assert] = ACTIONS(5801), + [sym_semgrep_metavar] = ACTIONS(5803), }, [1960] = { - [sym_template_argument_list] = STATE(2046), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5462), - [anon_sym_COMMA] = ACTIONS(5462), - [anon_sym_RPAREN] = ACTIONS(5462), - [anon_sym_LPAREN2] = ACTIONS(5464), - [anon_sym_DASH] = ACTIONS(5469), - [anon_sym_PLUS] = ACTIONS(5469), - [anon_sym_STAR] = ACTIONS(5471), - [anon_sym_SLASH] = ACTIONS(5469), - [anon_sym_PERCENT] = ACTIONS(5469), - [anon_sym_PIPE_PIPE] = ACTIONS(5462), - [anon_sym_AMP_AMP] = ACTIONS(5464), - [anon_sym_PIPE] = ACTIONS(5469), - [anon_sym_CARET] = ACTIONS(5469), - [anon_sym_AMP] = ACTIONS(5471), - [anon_sym_EQ_EQ] = ACTIONS(5462), - [anon_sym_BANG_EQ] = ACTIONS(5462), - [anon_sym_GT] = ACTIONS(5469), - [anon_sym_GT_EQ] = ACTIONS(5462), - [anon_sym_LT_EQ] = ACTIONS(5469), - [anon_sym_LT] = ACTIONS(5777), - [anon_sym_LT_LT] = ACTIONS(5469), - [anon_sym_GT_GT] = ACTIONS(5469), - [anon_sym___extension__] = ACTIONS(5467), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(5467), - [anon_sym_LBRACK] = ACTIONS(5464), - [anon_sym_EQ] = ACTIONS(5469), - [anon_sym_const] = ACTIONS(5460), - [anon_sym_constexpr] = ACTIONS(5467), - [anon_sym_volatile] = ACTIONS(5467), - [anon_sym_restrict] = ACTIONS(5467), - [anon_sym___restrict__] = ACTIONS(5467), - [anon_sym__Atomic] = ACTIONS(5467), - [anon_sym__Noreturn] = ACTIONS(5467), - [anon_sym_noreturn] = ACTIONS(5467), - [anon_sym_mutable] = ACTIONS(5467), - [anon_sym_constinit] = ACTIONS(5467), - [anon_sym_consteval] = ACTIONS(5467), - [anon_sym_QMARK] = ACTIONS(5462), - [anon_sym_STAR_EQ] = ACTIONS(5462), - [anon_sym_SLASH_EQ] = ACTIONS(5462), - [anon_sym_PERCENT_EQ] = ACTIONS(5462), - [anon_sym_PLUS_EQ] = ACTIONS(5462), - [anon_sym_DASH_EQ] = ACTIONS(5462), - [anon_sym_LT_LT_EQ] = ACTIONS(5462), - [anon_sym_GT_GT_EQ] = ACTIONS(5462), - [anon_sym_AMP_EQ] = ACTIONS(5462), - [anon_sym_CARET_EQ] = ACTIONS(5462), - [anon_sym_PIPE_EQ] = ACTIONS(5462), - [anon_sym_and_eq] = ACTIONS(5462), - [anon_sym_or_eq] = ACTIONS(5462), - [anon_sym_xor_eq] = ACTIONS(5462), - [anon_sym_LT_EQ_GT] = ACTIONS(5462), - [anon_sym_or] = ACTIONS(5469), - [anon_sym_and] = ACTIONS(5469), - [anon_sym_bitor] = ACTIONS(5462), - [anon_sym_xor] = ACTIONS(5469), - [anon_sym_bitand] = ACTIONS(5462), - [anon_sym_not_eq] = ACTIONS(5462), - [anon_sym_DASH_DASH] = ACTIONS(5462), - [anon_sym_PLUS_PLUS] = ACTIONS(5462), - [anon_sym_DOT] = ACTIONS(5469), - [anon_sym_DOT_STAR] = ACTIONS(5462), - [anon_sym_DASH_GT] = ACTIONS(5462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5467), - [anon_sym_decltype] = ACTIONS(5467), - [sym_semgrep_metavar] = ACTIONS(5467), + [sym_identifier] = ACTIONS(3223), + [aux_sym_preproc_def_token1] = ACTIONS(3223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3225), + [aux_sym_preproc_if_token1] = ACTIONS(3223), + [aux_sym_preproc_if_token2] = ACTIONS(3223), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3223), + [aux_sym_preproc_else_token1] = ACTIONS(3223), + [aux_sym_preproc_elif_token1] = ACTIONS(3223), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3223), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3223), + [sym_preproc_directive] = ACTIONS(3223), + [anon_sym_LPAREN2] = ACTIONS(3225), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_STAR] = ACTIONS(3225), + [anon_sym_AMP_AMP] = ACTIONS(3225), + [anon_sym_AMP] = ACTIONS(3223), + [anon_sym___extension__] = ACTIONS(3223), + [anon_sym_typedef] = ACTIONS(3223), + [anon_sym_extern] = ACTIONS(3223), + [anon_sym___attribute__] = ACTIONS(3223), + [anon_sym_COLON_COLON] = ACTIONS(3225), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3225), + [anon_sym___declspec] = ACTIONS(3223), + [anon_sym___based] = ACTIONS(3223), + [anon_sym_signed] = ACTIONS(3223), + [anon_sym_unsigned] = ACTIONS(3223), + [anon_sym_long] = ACTIONS(3223), + [anon_sym_short] = ACTIONS(3223), + [anon_sym_LBRACK] = ACTIONS(3223), + [anon_sym_static] = ACTIONS(3223), + [anon_sym_register] = ACTIONS(3223), + [anon_sym_inline] = ACTIONS(3223), + [anon_sym___inline] = ACTIONS(3223), + [anon_sym___inline__] = ACTIONS(3223), + [anon_sym___forceinline] = ACTIONS(3223), + [anon_sym_thread_local] = ACTIONS(3223), + [anon_sym___thread] = ACTIONS(3223), + [anon_sym_const] = ACTIONS(3223), + [anon_sym_constexpr] = ACTIONS(3223), + [anon_sym_volatile] = ACTIONS(3223), + [anon_sym_restrict] = ACTIONS(3223), + [anon_sym___restrict__] = ACTIONS(3223), + [anon_sym__Atomic] = ACTIONS(3223), + [anon_sym__Noreturn] = ACTIONS(3223), + [anon_sym_noreturn] = ACTIONS(3223), + [anon_sym_mutable] = ACTIONS(3223), + [anon_sym_constinit] = ACTIONS(3223), + [anon_sym_consteval] = ACTIONS(3223), + [sym_primitive_type] = ACTIONS(3223), + [anon_sym_enum] = ACTIONS(3223), + [anon_sym_class] = ACTIONS(3223), + [anon_sym_struct] = ACTIONS(3223), + [anon_sym_union] = ACTIONS(3223), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3223), + [anon_sym_decltype] = ACTIONS(3223), + [anon_sym_virtual] = ACTIONS(3223), + [anon_sym_alignas] = ACTIONS(3223), + [anon_sym_explicit] = ACTIONS(3223), + [anon_sym_typename] = ACTIONS(3223), + [anon_sym_template] = ACTIONS(3223), + [anon_sym_operator] = ACTIONS(3223), + [anon_sym_friend] = ACTIONS(3223), + [anon_sym_public] = ACTIONS(3223), + [anon_sym_private] = ACTIONS(3223), + [anon_sym_protected] = ACTIONS(3223), + [anon_sym_using] = ACTIONS(3223), + [anon_sym_static_assert] = ACTIONS(3223), + [sym_semgrep_metavar] = ACTIONS(3225), }, [1961] = { - [sym_catch_clause] = STATE(1961), - [aux_sym_constructor_try_statement_repeat1] = STATE(1961), - [sym_identifier] = ACTIONS(3063), - [aux_sym_preproc_def_token1] = ACTIONS(3063), - [aux_sym_preproc_if_token1] = ACTIONS(3063), - [aux_sym_preproc_if_token2] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3063), - [aux_sym_preproc_else_token1] = ACTIONS(3063), - [aux_sym_preproc_elif_token1] = ACTIONS(3063), - [sym_preproc_directive] = ACTIONS(3063), - [anon_sym_LPAREN2] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3063), - [anon_sym___extension__] = ACTIONS(3063), - [anon_sym_typedef] = ACTIONS(3063), - [anon_sym_extern] = ACTIONS(3063), - [anon_sym___attribute__] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(3065), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3065), - [anon_sym___declspec] = ACTIONS(3063), - [anon_sym___based] = ACTIONS(3063), - [anon_sym_signed] = ACTIONS(3063), - [anon_sym_unsigned] = ACTIONS(3063), - [anon_sym_long] = ACTIONS(3063), - [anon_sym_short] = ACTIONS(3063), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_static] = ACTIONS(3063), - [anon_sym_register] = ACTIONS(3063), - [anon_sym_inline] = ACTIONS(3063), - [anon_sym___inline] = ACTIONS(3063), - [anon_sym___inline__] = ACTIONS(3063), - [anon_sym___forceinline] = ACTIONS(3063), - [anon_sym_thread_local] = ACTIONS(3063), - [anon_sym___thread] = ACTIONS(3063), - [anon_sym_const] = ACTIONS(3063), - [anon_sym_constexpr] = ACTIONS(3063), - [anon_sym_volatile] = ACTIONS(3063), - [anon_sym_restrict] = ACTIONS(3063), - [anon_sym___restrict__] = ACTIONS(3063), - [anon_sym__Atomic] = ACTIONS(3063), - [anon_sym__Noreturn] = ACTIONS(3063), - [anon_sym_noreturn] = ACTIONS(3063), - [anon_sym_mutable] = ACTIONS(3063), - [anon_sym_constinit] = ACTIONS(3063), - [anon_sym_consteval] = ACTIONS(3063), - [sym_primitive_type] = ACTIONS(3063), - [anon_sym_enum] = ACTIONS(3063), - [anon_sym_class] = ACTIONS(3063), - [anon_sym_struct] = ACTIONS(3063), - [anon_sym_union] = ACTIONS(3063), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3063), - [anon_sym_decltype] = ACTIONS(3063), - [anon_sym_virtual] = ACTIONS(3063), - [anon_sym_alignas] = ACTIONS(3063), - [anon_sym_explicit] = ACTIONS(3063), - [anon_sym_typename] = ACTIONS(3063), - [anon_sym_template] = ACTIONS(3063), - [anon_sym_operator] = ACTIONS(3063), - [anon_sym_friend] = ACTIONS(3063), - [anon_sym_public] = ACTIONS(3063), - [anon_sym_private] = ACTIONS(3063), - [anon_sym_protected] = ACTIONS(3063), - [anon_sym_using] = ACTIONS(3063), - [anon_sym_static_assert] = ACTIONS(3063), - [anon_sym_catch] = ACTIONS(5780), + [sym_identifier] = ACTIONS(3434), + [aux_sym_preproc_def_token1] = ACTIONS(3434), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3436), + [aux_sym_preproc_if_token1] = ACTIONS(3434), + [aux_sym_preproc_if_token2] = ACTIONS(3434), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3434), + [aux_sym_preproc_else_token1] = ACTIONS(3434), + [aux_sym_preproc_elif_token1] = ACTIONS(3434), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3434), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3434), + [sym_preproc_directive] = ACTIONS(3434), + [anon_sym_LPAREN2] = ACTIONS(3436), + [anon_sym_TILDE] = ACTIONS(3436), + [anon_sym_STAR] = ACTIONS(3436), + [anon_sym_AMP_AMP] = ACTIONS(3436), + [anon_sym_AMP] = ACTIONS(3434), + [anon_sym___extension__] = ACTIONS(3434), + [anon_sym_typedef] = ACTIONS(3434), + [anon_sym_extern] = ACTIONS(3434), + [anon_sym___attribute__] = ACTIONS(3434), + [anon_sym_COLON_COLON] = ACTIONS(3436), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3436), + [anon_sym___declspec] = ACTIONS(3434), + [anon_sym___based] = ACTIONS(3434), + [anon_sym_signed] = ACTIONS(3434), + [anon_sym_unsigned] = ACTIONS(3434), + [anon_sym_long] = ACTIONS(3434), + [anon_sym_short] = ACTIONS(3434), + [anon_sym_LBRACK] = ACTIONS(3434), + [anon_sym_static] = ACTIONS(3434), + [anon_sym_register] = ACTIONS(3434), + [anon_sym_inline] = ACTIONS(3434), + [anon_sym___inline] = ACTIONS(3434), + [anon_sym___inline__] = ACTIONS(3434), + [anon_sym___forceinline] = ACTIONS(3434), + [anon_sym_thread_local] = ACTIONS(3434), + [anon_sym___thread] = ACTIONS(3434), + [anon_sym_const] = ACTIONS(3434), + [anon_sym_constexpr] = ACTIONS(3434), + [anon_sym_volatile] = ACTIONS(3434), + [anon_sym_restrict] = ACTIONS(3434), + [anon_sym___restrict__] = ACTIONS(3434), + [anon_sym__Atomic] = ACTIONS(3434), + [anon_sym__Noreturn] = ACTIONS(3434), + [anon_sym_noreturn] = ACTIONS(3434), + [anon_sym_mutable] = ACTIONS(3434), + [anon_sym_constinit] = ACTIONS(3434), + [anon_sym_consteval] = ACTIONS(3434), + [sym_primitive_type] = ACTIONS(3434), + [anon_sym_enum] = ACTIONS(3434), + [anon_sym_class] = ACTIONS(3434), + [anon_sym_struct] = ACTIONS(3434), + [anon_sym_union] = ACTIONS(3434), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3434), + [anon_sym_decltype] = ACTIONS(3434), + [anon_sym_virtual] = ACTIONS(3434), + [anon_sym_alignas] = ACTIONS(3434), + [anon_sym_explicit] = ACTIONS(3434), + [anon_sym_typename] = ACTIONS(3434), + [anon_sym_template] = ACTIONS(3434), + [anon_sym_operator] = ACTIONS(3434), + [anon_sym_friend] = ACTIONS(3434), + [anon_sym_public] = ACTIONS(3434), + [anon_sym_private] = ACTIONS(3434), + [anon_sym_protected] = ACTIONS(3434), + [anon_sym_using] = ACTIONS(3434), + [anon_sym_static_assert] = ACTIONS(3434), + [sym_semgrep_metavar] = ACTIONS(3436), }, [1962] = { - [sym_string_literal] = STATE(1885), - [sym_raw_string_literal] = STATE(1885), - [sym_identifier] = ACTIONS(4837), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [aux_sym_preproc_if_token2] = ACTIONS(4829), - [aux_sym_preproc_else_token1] = ACTIONS(4829), - [aux_sym_preproc_elif_token1] = ACTIONS(4837), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4829), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(4829), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_EQ] = ACTIONS(4837), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4829), - [anon_sym_SLASH_EQ] = ACTIONS(4829), - [anon_sym_PERCENT_EQ] = ACTIONS(4829), - [anon_sym_PLUS_EQ] = ACTIONS(4829), - [anon_sym_DASH_EQ] = ACTIONS(4829), - [anon_sym_LT_LT_EQ] = ACTIONS(4829), - [anon_sym_GT_GT_EQ] = ACTIONS(4829), - [anon_sym_AMP_EQ] = ACTIONS(4829), - [anon_sym_CARET_EQ] = ACTIONS(4829), - [anon_sym_PIPE_EQ] = ACTIONS(4829), - [anon_sym_and_eq] = ACTIONS(4837), - [anon_sym_or_eq] = ACTIONS(4837), - [anon_sym_xor_eq] = ACTIONS(4837), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4837), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4837), - [anon_sym_not_eq] = ACTIONS(4837), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(2307), - [anon_sym_u_DQUOTE] = ACTIONS(2307), - [anon_sym_U_DQUOTE] = ACTIONS(2307), - [anon_sym_u8_DQUOTE] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(2317), - [anon_sym_LR_DQUOTE] = ACTIONS(2317), - [anon_sym_uR_DQUOTE] = ACTIONS(2317), - [anon_sym_UR_DQUOTE] = ACTIONS(2317), - [anon_sym_u8R_DQUOTE] = ACTIONS(2317), - [sym_literal_suffix] = ACTIONS(5783), + [sym_argument_list] = STATE(2648), + [sym_initializer_list] = STATE(2648), + [sym_decltype_auto] = STATE(2235), + [sym_new_declarator] = STATE(2435), + [ts_builtin_sym_end] = ACTIONS(5805), + [sym_identifier] = ACTIONS(5807), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5805), + [anon_sym_COMMA] = ACTIONS(5805), + [anon_sym_RPAREN] = ACTIONS(5805), + [aux_sym_preproc_if_token2] = ACTIONS(5805), + [aux_sym_preproc_else_token1] = ACTIONS(5805), + [aux_sym_preproc_elif_token1] = ACTIONS(5807), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5805), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5805), + [anon_sym_LPAREN2] = ACTIONS(5761), + [anon_sym_DASH] = ACTIONS(5807), + [anon_sym_PLUS] = ACTIONS(5807), + [anon_sym_STAR] = ACTIONS(5807), + [anon_sym_SLASH] = ACTIONS(5807), + [anon_sym_PERCENT] = ACTIONS(5807), + [anon_sym_PIPE_PIPE] = ACTIONS(5805), + [anon_sym_AMP_AMP] = ACTIONS(5805), + [anon_sym_PIPE] = ACTIONS(5807), + [anon_sym_CARET] = ACTIONS(5807), + [anon_sym_AMP] = ACTIONS(5807), + [anon_sym_EQ_EQ] = ACTIONS(5805), + [anon_sym_BANG_EQ] = ACTIONS(5805), + [anon_sym_GT] = ACTIONS(5807), + [anon_sym_GT_EQ] = ACTIONS(5805), + [anon_sym_LT_EQ] = ACTIONS(5807), + [anon_sym_LT] = ACTIONS(5807), + [anon_sym_LT_LT] = ACTIONS(5807), + [anon_sym_GT_GT] = ACTIONS(5807), + [anon_sym_SEMI] = ACTIONS(5805), + [anon_sym___attribute__] = ACTIONS(5807), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_RBRACE] = ACTIONS(5805), + [anon_sym_LBRACK] = ACTIONS(5763), + [anon_sym_RBRACK] = ACTIONS(5805), + [anon_sym_EQ] = ACTIONS(5807), + [anon_sym_COLON] = ACTIONS(5805), + [anon_sym_QMARK] = ACTIONS(5805), + [anon_sym_STAR_EQ] = ACTIONS(5805), + [anon_sym_SLASH_EQ] = ACTIONS(5805), + [anon_sym_PERCENT_EQ] = ACTIONS(5805), + [anon_sym_PLUS_EQ] = ACTIONS(5805), + [anon_sym_DASH_EQ] = ACTIONS(5805), + [anon_sym_LT_LT_EQ] = ACTIONS(5805), + [anon_sym_GT_GT_EQ] = ACTIONS(5805), + [anon_sym_AMP_EQ] = ACTIONS(5805), + [anon_sym_CARET_EQ] = ACTIONS(5805), + [anon_sym_PIPE_EQ] = ACTIONS(5805), + [anon_sym_and_eq] = ACTIONS(5807), + [anon_sym_or_eq] = ACTIONS(5807), + [anon_sym_xor_eq] = ACTIONS(5807), + [anon_sym_LT_EQ_GT] = ACTIONS(5805), + [anon_sym_or] = ACTIONS(5807), + [anon_sym_and] = ACTIONS(5807), + [anon_sym_bitor] = ACTIONS(5807), + [anon_sym_xor] = ACTIONS(5807), + [anon_sym_bitand] = ACTIONS(5807), + [anon_sym_not_eq] = ACTIONS(5807), + [anon_sym_DASH_DASH] = ACTIONS(5805), + [anon_sym_PLUS_PLUS] = ACTIONS(5805), + [anon_sym_DOT] = ACTIONS(5807), + [anon_sym_DOT_STAR] = ACTIONS(5805), + [anon_sym_DASH_GT] = ACTIONS(5805), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5765), + [anon_sym_decltype] = ACTIONS(5767), }, [1963] = { - [sym_string_literal] = STATE(2019), - [sym_template_argument_list] = STATE(3361), - [sym_raw_string_literal] = STATE(2019), - [sym_identifier] = ACTIONS(4837), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [aux_sym_preproc_if_token2] = ACTIONS(4829), - [aux_sym_preproc_else_token1] = ACTIONS(4829), - [aux_sym_preproc_elif_token1] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(4829), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(5785), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_EQ] = ACTIONS(4837), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4829), - [anon_sym_SLASH_EQ] = ACTIONS(4829), - [anon_sym_PERCENT_EQ] = ACTIONS(4829), - [anon_sym_PLUS_EQ] = ACTIONS(4829), - [anon_sym_DASH_EQ] = ACTIONS(4829), - [anon_sym_LT_LT_EQ] = ACTIONS(4829), - [anon_sym_GT_GT_EQ] = ACTIONS(4829), - [anon_sym_AMP_EQ] = ACTIONS(4829), - [anon_sym_CARET_EQ] = ACTIONS(4829), - [anon_sym_PIPE_EQ] = ACTIONS(4829), - [anon_sym_and_eq] = ACTIONS(4837), - [anon_sym_or_eq] = ACTIONS(4837), - [anon_sym_xor_eq] = ACTIONS(4837), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4837), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4837), - [anon_sym_not_eq] = ACTIONS(4837), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(2405), - [anon_sym_u_DQUOTE] = ACTIONS(2405), - [anon_sym_U_DQUOTE] = ACTIONS(2405), - [anon_sym_u8_DQUOTE] = ACTIONS(2405), - [anon_sym_DQUOTE] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(2413), - [anon_sym_LR_DQUOTE] = ACTIONS(2413), - [anon_sym_uR_DQUOTE] = ACTIONS(2413), - [anon_sym_UR_DQUOTE] = ACTIONS(2413), - [anon_sym_u8R_DQUOTE] = ACTIONS(2413), + [sym_identifier] = ACTIONS(3545), + [aux_sym_preproc_def_token1] = ACTIONS(3545), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3547), + [aux_sym_preproc_if_token1] = ACTIONS(3545), + [aux_sym_preproc_if_token2] = ACTIONS(3545), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3545), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3545), + [aux_sym_preproc_else_token1] = ACTIONS(3545), + [aux_sym_preproc_elif_token1] = ACTIONS(3545), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3545), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3545), + [sym_preproc_directive] = ACTIONS(3545), + [anon_sym_LPAREN2] = ACTIONS(3547), + [anon_sym_TILDE] = ACTIONS(3547), + [anon_sym_STAR] = ACTIONS(3547), + [anon_sym_AMP_AMP] = ACTIONS(3547), + [anon_sym_AMP] = ACTIONS(3545), + [anon_sym___extension__] = ACTIONS(3545), + [anon_sym_typedef] = ACTIONS(3545), + [anon_sym_extern] = ACTIONS(3545), + [anon_sym___attribute__] = ACTIONS(3545), + [anon_sym_COLON_COLON] = ACTIONS(3547), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3547), + [anon_sym___declspec] = ACTIONS(3545), + [anon_sym___based] = ACTIONS(3545), + [anon_sym_signed] = ACTIONS(3545), + [anon_sym_unsigned] = ACTIONS(3545), + [anon_sym_long] = ACTIONS(3545), + [anon_sym_short] = ACTIONS(3545), + [anon_sym_LBRACK] = ACTIONS(3545), + [anon_sym_static] = ACTIONS(3545), + [anon_sym_register] = ACTIONS(3545), + [anon_sym_inline] = ACTIONS(3545), + [anon_sym___inline] = ACTIONS(3545), + [anon_sym___inline__] = ACTIONS(3545), + [anon_sym___forceinline] = ACTIONS(3545), + [anon_sym_thread_local] = ACTIONS(3545), + [anon_sym___thread] = ACTIONS(3545), + [anon_sym_const] = ACTIONS(3545), + [anon_sym_constexpr] = ACTIONS(3545), + [anon_sym_volatile] = ACTIONS(3545), + [anon_sym_restrict] = ACTIONS(3545), + [anon_sym___restrict__] = ACTIONS(3545), + [anon_sym__Atomic] = ACTIONS(3545), + [anon_sym__Noreturn] = ACTIONS(3545), + [anon_sym_noreturn] = ACTIONS(3545), + [anon_sym_mutable] = ACTIONS(3545), + [anon_sym_constinit] = ACTIONS(3545), + [anon_sym_consteval] = ACTIONS(3545), + [sym_primitive_type] = ACTIONS(3545), + [anon_sym_enum] = ACTIONS(3545), + [anon_sym_class] = ACTIONS(3545), + [anon_sym_struct] = ACTIONS(3545), + [anon_sym_union] = ACTIONS(3545), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3545), + [anon_sym_decltype] = ACTIONS(3545), + [anon_sym_virtual] = ACTIONS(3545), + [anon_sym_alignas] = ACTIONS(3545), + [anon_sym_explicit] = ACTIONS(3545), + [anon_sym_typename] = ACTIONS(3545), + [anon_sym_template] = ACTIONS(3545), + [anon_sym_operator] = ACTIONS(3545), + [anon_sym_friend] = ACTIONS(3545), + [anon_sym_public] = ACTIONS(3545), + [anon_sym_private] = ACTIONS(3545), + [anon_sym_protected] = ACTIONS(3545), + [anon_sym_using] = ACTIONS(3545), + [anon_sym_static_assert] = ACTIONS(3545), + [sym_semgrep_metavar] = ACTIONS(3547), }, [1964] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5520), - [anon_sym_COMMA] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(5522), - [anon_sym_LPAREN2] = ACTIONS(5522), - [anon_sym_DASH] = ACTIONS(5527), - [anon_sym_PLUS] = ACTIONS(5527), - [anon_sym_STAR] = ACTIONS(5529), - [anon_sym_SLASH] = ACTIONS(5527), - [anon_sym_PERCENT] = ACTIONS(5527), - [anon_sym_PIPE_PIPE] = ACTIONS(5520), - [anon_sym_AMP_AMP] = ACTIONS(5522), - [anon_sym_PIPE] = ACTIONS(5527), - [anon_sym_CARET] = ACTIONS(5527), - [anon_sym_AMP] = ACTIONS(5529), - [anon_sym_EQ_EQ] = ACTIONS(5520), - [anon_sym_BANG_EQ] = ACTIONS(5520), - [anon_sym_GT] = ACTIONS(5527), - [anon_sym_GT_EQ] = ACTIONS(5520), - [anon_sym_LT_EQ] = ACTIONS(5527), - [anon_sym_LT] = ACTIONS(5527), - [anon_sym_LT_LT] = ACTIONS(5527), - [anon_sym_GT_GT] = ACTIONS(5527), - [anon_sym___extension__] = ACTIONS(5525), - [anon_sym_COLON_COLON] = ACTIONS(5525), - [anon_sym_LBRACE] = ACTIONS(5525), - [anon_sym_LBRACK] = ACTIONS(5522), - [anon_sym_EQ] = ACTIONS(5527), - [anon_sym_const] = ACTIONS(5518), - [anon_sym_constexpr] = ACTIONS(5525), - [anon_sym_volatile] = ACTIONS(5525), - [anon_sym_restrict] = ACTIONS(5525), - [anon_sym___restrict__] = ACTIONS(5525), - [anon_sym__Atomic] = ACTIONS(5525), - [anon_sym__Noreturn] = ACTIONS(5525), - [anon_sym_noreturn] = ACTIONS(5525), - [anon_sym_mutable] = ACTIONS(5525), - [anon_sym_constinit] = ACTIONS(5525), - [anon_sym_consteval] = ACTIONS(5525), - [anon_sym_QMARK] = ACTIONS(5520), - [anon_sym_STAR_EQ] = ACTIONS(5520), - [anon_sym_SLASH_EQ] = ACTIONS(5520), - [anon_sym_PERCENT_EQ] = ACTIONS(5520), - [anon_sym_PLUS_EQ] = ACTIONS(5520), - [anon_sym_DASH_EQ] = ACTIONS(5520), - [anon_sym_LT_LT_EQ] = ACTIONS(5520), - [anon_sym_GT_GT_EQ] = ACTIONS(5520), - [anon_sym_AMP_EQ] = ACTIONS(5520), - [anon_sym_CARET_EQ] = ACTIONS(5520), - [anon_sym_PIPE_EQ] = ACTIONS(5520), - [anon_sym_and_eq] = ACTIONS(5520), - [anon_sym_or_eq] = ACTIONS(5520), - [anon_sym_xor_eq] = ACTIONS(5520), - [anon_sym_LT_EQ_GT] = ACTIONS(5520), - [anon_sym_or] = ACTIONS(5527), - [anon_sym_and] = ACTIONS(5527), - [anon_sym_bitor] = ACTIONS(5520), - [anon_sym_xor] = ACTIONS(5527), - [anon_sym_bitand] = ACTIONS(5520), - [anon_sym_not_eq] = ACTIONS(5520), - [anon_sym_DASH_DASH] = ACTIONS(5520), - [anon_sym_PLUS_PLUS] = ACTIONS(5520), - [anon_sym_DOT] = ACTIONS(5527), - [anon_sym_DOT_STAR] = ACTIONS(5520), - [anon_sym_DASH_GT] = ACTIONS(5527), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5525), - [anon_sym_decltype] = ACTIONS(5525), - [anon_sym_DASH_GT_STAR] = ACTIONS(5520), - [sym_semgrep_metavar] = ACTIONS(5525), + [sym_template_argument_list] = STATE(2039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5376), + [anon_sym_COMMA] = ACTIONS(5376), + [anon_sym_RPAREN] = ACTIONS(5378), + [anon_sym_LPAREN2] = ACTIONS(5378), + [anon_sym_DASH] = ACTIONS(5383), + [anon_sym_PLUS] = ACTIONS(5383), + [anon_sym_STAR] = ACTIONS(5385), + [anon_sym_SLASH] = ACTIONS(5383), + [anon_sym_PERCENT] = ACTIONS(5383), + [anon_sym_PIPE_PIPE] = ACTIONS(5376), + [anon_sym_AMP_AMP] = ACTIONS(5378), + [anon_sym_PIPE] = ACTIONS(5383), + [anon_sym_CARET] = ACTIONS(5383), + [anon_sym_AMP] = ACTIONS(5385), + [anon_sym_EQ_EQ] = ACTIONS(5376), + [anon_sym_BANG_EQ] = ACTIONS(5376), + [anon_sym_GT] = ACTIONS(5383), + [anon_sym_GT_EQ] = ACTIONS(5376), + [anon_sym_LT_EQ] = ACTIONS(5383), + [anon_sym_LT] = ACTIONS(5809), + [anon_sym_LT_LT] = ACTIONS(5383), + [anon_sym_GT_GT] = ACTIONS(5383), + [anon_sym___extension__] = ACTIONS(5381), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(5381), + [anon_sym_LBRACK] = ACTIONS(5378), + [anon_sym_EQ] = ACTIONS(5383), + [anon_sym_const] = ACTIONS(5374), + [anon_sym_constexpr] = ACTIONS(5381), + [anon_sym_volatile] = ACTIONS(5381), + [anon_sym_restrict] = ACTIONS(5381), + [anon_sym___restrict__] = ACTIONS(5381), + [anon_sym__Atomic] = ACTIONS(5381), + [anon_sym__Noreturn] = ACTIONS(5381), + [anon_sym_noreturn] = ACTIONS(5381), + [anon_sym_mutable] = ACTIONS(5381), + [anon_sym_constinit] = ACTIONS(5381), + [anon_sym_consteval] = ACTIONS(5381), + [anon_sym_QMARK] = ACTIONS(5376), + [anon_sym_STAR_EQ] = ACTIONS(5376), + [anon_sym_SLASH_EQ] = ACTIONS(5376), + [anon_sym_PERCENT_EQ] = ACTIONS(5376), + [anon_sym_PLUS_EQ] = ACTIONS(5376), + [anon_sym_DASH_EQ] = ACTIONS(5376), + [anon_sym_LT_LT_EQ] = ACTIONS(5376), + [anon_sym_GT_GT_EQ] = ACTIONS(5376), + [anon_sym_AMP_EQ] = ACTIONS(5376), + [anon_sym_CARET_EQ] = ACTIONS(5376), + [anon_sym_PIPE_EQ] = ACTIONS(5376), + [anon_sym_and_eq] = ACTIONS(5376), + [anon_sym_or_eq] = ACTIONS(5376), + [anon_sym_xor_eq] = ACTIONS(5376), + [anon_sym_LT_EQ_GT] = ACTIONS(5376), + [anon_sym_or] = ACTIONS(5383), + [anon_sym_and] = ACTIONS(5383), + [anon_sym_bitor] = ACTIONS(5376), + [anon_sym_xor] = ACTIONS(5383), + [anon_sym_bitand] = ACTIONS(5376), + [anon_sym_not_eq] = ACTIONS(5376), + [anon_sym_DASH_DASH] = ACTIONS(5376), + [anon_sym_PLUS_PLUS] = ACTIONS(5376), + [anon_sym_DOT] = ACTIONS(5383), + [anon_sym_DOT_STAR] = ACTIONS(5376), + [anon_sym_DASH_GT] = ACTIONS(5383), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5381), + [anon_sym_decltype] = ACTIONS(5381), + [anon_sym_DASH_GT_STAR] = ACTIONS(5376), + [sym_semgrep_metavar] = ACTIONS(5381), }, [1965] = { - [sym_identifier] = ACTIONS(3078), - [aux_sym_preproc_def_token1] = ACTIONS(3078), - [aux_sym_preproc_if_token1] = ACTIONS(3078), - [aux_sym_preproc_if_token2] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3078), - [aux_sym_preproc_else_token1] = ACTIONS(3078), - [aux_sym_preproc_elif_token1] = ACTIONS(3078), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3078), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3078), - [sym_preproc_directive] = ACTIONS(3078), - [anon_sym_LPAREN2] = ACTIONS(3080), - [anon_sym_TILDE] = ACTIONS(3080), - [anon_sym_STAR] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym___extension__] = ACTIONS(3078), - [anon_sym_typedef] = ACTIONS(3078), - [anon_sym_extern] = ACTIONS(3078), - [anon_sym___attribute__] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3080), - [anon_sym___declspec] = ACTIONS(3078), - [anon_sym___based] = ACTIONS(3078), - [anon_sym_signed] = ACTIONS(3078), - [anon_sym_unsigned] = ACTIONS(3078), - [anon_sym_long] = ACTIONS(3078), - [anon_sym_short] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_static] = ACTIONS(3078), - [anon_sym_register] = ACTIONS(3078), - [anon_sym_inline] = ACTIONS(3078), - [anon_sym___inline] = ACTIONS(3078), - [anon_sym___inline__] = ACTIONS(3078), - [anon_sym___forceinline] = ACTIONS(3078), - [anon_sym_thread_local] = ACTIONS(3078), - [anon_sym___thread] = ACTIONS(3078), - [anon_sym_const] = ACTIONS(3078), - [anon_sym_constexpr] = ACTIONS(3078), - [anon_sym_volatile] = ACTIONS(3078), - [anon_sym_restrict] = ACTIONS(3078), - [anon_sym___restrict__] = ACTIONS(3078), - [anon_sym__Atomic] = ACTIONS(3078), - [anon_sym__Noreturn] = ACTIONS(3078), - [anon_sym_noreturn] = ACTIONS(3078), - [anon_sym_mutable] = ACTIONS(3078), - [anon_sym_constinit] = ACTIONS(3078), - [anon_sym_consteval] = ACTIONS(3078), - [sym_primitive_type] = ACTIONS(3078), - [anon_sym_enum] = ACTIONS(3078), - [anon_sym_class] = ACTIONS(3078), - [anon_sym_struct] = ACTIONS(3078), - [anon_sym_union] = ACTIONS(3078), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3078), - [anon_sym_decltype] = ACTIONS(3078), - [anon_sym_virtual] = ACTIONS(3078), - [anon_sym_alignas] = ACTIONS(3078), - [anon_sym_explicit] = ACTIONS(3078), - [anon_sym_typename] = ACTIONS(3078), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_operator] = ACTIONS(3078), - [anon_sym_friend] = ACTIONS(3078), - [anon_sym_public] = ACTIONS(3078), - [anon_sym_private] = ACTIONS(3078), - [anon_sym_protected] = ACTIONS(3078), - [anon_sym_using] = ACTIONS(3078), - [anon_sym_static_assert] = ACTIONS(3078), - [anon_sym_catch] = ACTIONS(3078), - }, - [1966] = { - [sym_catch_clause] = STATE(1961), - [aux_sym_constructor_try_statement_repeat1] = STATE(1961), - [sym_identifier] = ACTIONS(3074), - [aux_sym_preproc_def_token1] = ACTIONS(3074), - [aux_sym_preproc_if_token1] = ACTIONS(3074), - [aux_sym_preproc_if_token2] = ACTIONS(3074), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3074), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3074), - [aux_sym_preproc_else_token1] = ACTIONS(3074), - [aux_sym_preproc_elif_token1] = ACTIONS(3074), - [sym_preproc_directive] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3076), - [anon_sym_TILDE] = ACTIONS(3076), - [anon_sym_STAR] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym___extension__] = ACTIONS(3074), - [anon_sym_typedef] = ACTIONS(3074), - [anon_sym_extern] = ACTIONS(3074), - [anon_sym___attribute__] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3076), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3076), - [anon_sym___declspec] = ACTIONS(3074), - [anon_sym___based] = ACTIONS(3074), - [anon_sym_signed] = ACTIONS(3074), - [anon_sym_unsigned] = ACTIONS(3074), - [anon_sym_long] = ACTIONS(3074), - [anon_sym_short] = ACTIONS(3074), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_static] = ACTIONS(3074), - [anon_sym_register] = ACTIONS(3074), - [anon_sym_inline] = ACTIONS(3074), - [anon_sym___inline] = ACTIONS(3074), - [anon_sym___inline__] = ACTIONS(3074), - [anon_sym___forceinline] = ACTIONS(3074), - [anon_sym_thread_local] = ACTIONS(3074), - [anon_sym___thread] = ACTIONS(3074), - [anon_sym_const] = ACTIONS(3074), - [anon_sym_constexpr] = ACTIONS(3074), - [anon_sym_volatile] = ACTIONS(3074), - [anon_sym_restrict] = ACTIONS(3074), - [anon_sym___restrict__] = ACTIONS(3074), - [anon_sym__Atomic] = ACTIONS(3074), - [anon_sym__Noreturn] = ACTIONS(3074), - [anon_sym_noreturn] = ACTIONS(3074), - [anon_sym_mutable] = ACTIONS(3074), - [anon_sym_constinit] = ACTIONS(3074), - [anon_sym_consteval] = ACTIONS(3074), - [sym_primitive_type] = ACTIONS(3074), - [anon_sym_enum] = ACTIONS(3074), - [anon_sym_class] = ACTIONS(3074), - [anon_sym_struct] = ACTIONS(3074), - [anon_sym_union] = ACTIONS(3074), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3074), - [anon_sym_decltype] = ACTIONS(3074), - [anon_sym_virtual] = ACTIONS(3074), - [anon_sym_alignas] = ACTIONS(3074), - [anon_sym_explicit] = ACTIONS(3074), - [anon_sym_typename] = ACTIONS(3074), - [anon_sym_template] = ACTIONS(3074), - [anon_sym_operator] = ACTIONS(3074), - [anon_sym_friend] = ACTIONS(3074), - [anon_sym_public] = ACTIONS(3074), - [anon_sym_private] = ACTIONS(3074), - [anon_sym_protected] = ACTIONS(3074), - [anon_sym_using] = ACTIONS(3074), - [anon_sym_static_assert] = ACTIONS(3074), - [anon_sym_catch] = ACTIONS(5788), - }, - [1967] = { - [sym_catch_clause] = STATE(1961), - [aux_sym_constructor_try_statement_repeat1] = STATE(1961), - [sym_identifier] = ACTIONS(3070), - [aux_sym_preproc_def_token1] = ACTIONS(3070), - [aux_sym_preproc_if_token1] = ACTIONS(3070), - [aux_sym_preproc_if_token2] = ACTIONS(3070), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3070), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3070), - [aux_sym_preproc_else_token1] = ACTIONS(3070), - [aux_sym_preproc_elif_token1] = ACTIONS(3070), - [sym_preproc_directive] = ACTIONS(3070), - [anon_sym_LPAREN2] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3072), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_AMP] = ACTIONS(3070), - [anon_sym___extension__] = ACTIONS(3070), - [anon_sym_typedef] = ACTIONS(3070), - [anon_sym_extern] = ACTIONS(3070), - [anon_sym___attribute__] = ACTIONS(3070), - [anon_sym_COLON_COLON] = ACTIONS(3072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3072), - [anon_sym___declspec] = ACTIONS(3070), - [anon_sym___based] = ACTIONS(3070), - [anon_sym_signed] = ACTIONS(3070), - [anon_sym_unsigned] = ACTIONS(3070), - [anon_sym_long] = ACTIONS(3070), - [anon_sym_short] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(3070), - [anon_sym_static] = ACTIONS(3070), - [anon_sym_register] = ACTIONS(3070), - [anon_sym_inline] = ACTIONS(3070), - [anon_sym___inline] = ACTIONS(3070), - [anon_sym___inline__] = ACTIONS(3070), - [anon_sym___forceinline] = ACTIONS(3070), - [anon_sym_thread_local] = ACTIONS(3070), - [anon_sym___thread] = ACTIONS(3070), - [anon_sym_const] = ACTIONS(3070), - [anon_sym_constexpr] = ACTIONS(3070), - [anon_sym_volatile] = ACTIONS(3070), - [anon_sym_restrict] = ACTIONS(3070), - [anon_sym___restrict__] = ACTIONS(3070), - [anon_sym__Atomic] = ACTIONS(3070), - [anon_sym__Noreturn] = ACTIONS(3070), - [anon_sym_noreturn] = ACTIONS(3070), - [anon_sym_mutable] = ACTIONS(3070), - [anon_sym_constinit] = ACTIONS(3070), - [anon_sym_consteval] = ACTIONS(3070), - [sym_primitive_type] = ACTIONS(3070), - [anon_sym_enum] = ACTIONS(3070), - [anon_sym_class] = ACTIONS(3070), - [anon_sym_struct] = ACTIONS(3070), - [anon_sym_union] = ACTIONS(3070), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3070), - [anon_sym_decltype] = ACTIONS(3070), - [anon_sym_virtual] = ACTIONS(3070), - [anon_sym_alignas] = ACTIONS(3070), - [anon_sym_explicit] = ACTIONS(3070), - [anon_sym_typename] = ACTIONS(3070), - [anon_sym_template] = ACTIONS(3070), - [anon_sym_operator] = ACTIONS(3070), - [anon_sym_friend] = ACTIONS(3070), - [anon_sym_public] = ACTIONS(3070), - [anon_sym_private] = ACTIONS(3070), - [anon_sym_protected] = ACTIONS(3070), - [anon_sym_using] = ACTIONS(3070), - [anon_sym_static_assert] = ACTIONS(3070), - [anon_sym_catch] = ACTIONS(5788), - }, - [1968] = { - [sym_string_literal] = STATE(1885), - [sym_raw_string_literal] = STATE(1885), - [ts_builtin_sym_end] = ACTIONS(4829), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_RPAREN] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(4829), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym_RBRACE] = ACTIONS(4829), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_RBRACK] = ACTIONS(4829), - [anon_sym_EQ] = ACTIONS(4837), - [anon_sym_COLON] = ACTIONS(4829), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4829), - [anon_sym_SLASH_EQ] = ACTIONS(4829), - [anon_sym_PERCENT_EQ] = ACTIONS(4829), - [anon_sym_PLUS_EQ] = ACTIONS(4829), - [anon_sym_DASH_EQ] = ACTIONS(4829), - [anon_sym_LT_LT_EQ] = ACTIONS(4829), - [anon_sym_GT_GT_EQ] = ACTIONS(4829), - [anon_sym_AMP_EQ] = ACTIONS(4829), - [anon_sym_CARET_EQ] = ACTIONS(4829), - [anon_sym_PIPE_EQ] = ACTIONS(4829), - [anon_sym_and_eq] = ACTIONS(4837), - [anon_sym_or_eq] = ACTIONS(4837), - [anon_sym_xor_eq] = ACTIONS(4837), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4837), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4837), - [anon_sym_not_eq] = ACTIONS(4837), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(2307), - [anon_sym_u_DQUOTE] = ACTIONS(2307), - [anon_sym_U_DQUOTE] = ACTIONS(2307), - [anon_sym_u8_DQUOTE] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(2317), - [anon_sym_LR_DQUOTE] = ACTIONS(2317), - [anon_sym_uR_DQUOTE] = ACTIONS(2317), - [anon_sym_UR_DQUOTE] = ACTIONS(2317), - [anon_sym_u8R_DQUOTE] = ACTIONS(2317), - [sym_literal_suffix] = ACTIONS(5790), - }, - [1969] = { - [sym_catch_clause] = STATE(1961), - [aux_sym_constructor_try_statement_repeat1] = STATE(1961), - [sym_identifier] = ACTIONS(3057), - [aux_sym_preproc_def_token1] = ACTIONS(3057), - [aux_sym_preproc_if_token1] = ACTIONS(3057), - [aux_sym_preproc_if_token2] = ACTIONS(3057), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3057), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3057), - [aux_sym_preproc_else_token1] = ACTIONS(3057), - [aux_sym_preproc_elif_token1] = ACTIONS(3057), - [sym_preproc_directive] = ACTIONS(3057), - [anon_sym_LPAREN2] = ACTIONS(3059), - [anon_sym_TILDE] = ACTIONS(3059), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_AMP_AMP] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym___extension__] = ACTIONS(3057), - [anon_sym_typedef] = ACTIONS(3057), - [anon_sym_extern] = ACTIONS(3057), - [anon_sym___attribute__] = ACTIONS(3057), - [anon_sym_COLON_COLON] = ACTIONS(3059), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3059), - [anon_sym___declspec] = ACTIONS(3057), - [anon_sym___based] = ACTIONS(3057), - [anon_sym_signed] = ACTIONS(3057), - [anon_sym_unsigned] = ACTIONS(3057), - [anon_sym_long] = ACTIONS(3057), - [anon_sym_short] = ACTIONS(3057), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_static] = ACTIONS(3057), - [anon_sym_register] = ACTIONS(3057), - [anon_sym_inline] = ACTIONS(3057), - [anon_sym___inline] = ACTIONS(3057), - [anon_sym___inline__] = ACTIONS(3057), - [anon_sym___forceinline] = ACTIONS(3057), - [anon_sym_thread_local] = ACTIONS(3057), - [anon_sym___thread] = ACTIONS(3057), - [anon_sym_const] = ACTIONS(3057), - [anon_sym_constexpr] = ACTIONS(3057), - [anon_sym_volatile] = ACTIONS(3057), - [anon_sym_restrict] = ACTIONS(3057), - [anon_sym___restrict__] = ACTIONS(3057), - [anon_sym__Atomic] = ACTIONS(3057), - [anon_sym__Noreturn] = ACTIONS(3057), - [anon_sym_noreturn] = ACTIONS(3057), - [anon_sym_mutable] = ACTIONS(3057), - [anon_sym_constinit] = ACTIONS(3057), - [anon_sym_consteval] = ACTIONS(3057), - [sym_primitive_type] = ACTIONS(3057), - [anon_sym_enum] = ACTIONS(3057), - [anon_sym_class] = ACTIONS(3057), - [anon_sym_struct] = ACTIONS(3057), - [anon_sym_union] = ACTIONS(3057), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3057), - [anon_sym_decltype] = ACTIONS(3057), - [anon_sym_virtual] = ACTIONS(3057), - [anon_sym_alignas] = ACTIONS(3057), - [anon_sym_explicit] = ACTIONS(3057), - [anon_sym_typename] = ACTIONS(3057), - [anon_sym_template] = ACTIONS(3057), - [anon_sym_operator] = ACTIONS(3057), - [anon_sym_friend] = ACTIONS(3057), - [anon_sym_public] = ACTIONS(3057), - [anon_sym_private] = ACTIONS(3057), - [anon_sym_protected] = ACTIONS(3057), - [anon_sym_using] = ACTIONS(3057), - [anon_sym_static_assert] = ACTIONS(3057), - [anon_sym_catch] = ACTIONS(5788), - }, - [1970] = { - [sym_identifier] = ACTIONS(3656), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3658), - [anon_sym_LPAREN2] = ACTIONS(3658), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_TILDE] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3656), - [anon_sym_PLUS] = ACTIONS(3656), - [anon_sym_STAR] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym___extension__] = ACTIONS(3656), - [anon_sym_COLON_COLON] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3658), - [anon_sym_RBRACK] = ACTIONS(3658), - [anon_sym_const] = ACTIONS(3656), - [anon_sym_constexpr] = ACTIONS(3656), - [anon_sym_volatile] = ACTIONS(3656), - [anon_sym_restrict] = ACTIONS(3656), - [anon_sym___restrict__] = ACTIONS(3656), - [anon_sym__Atomic] = ACTIONS(3656), - [anon_sym__Noreturn] = ACTIONS(3656), - [anon_sym_noreturn] = ACTIONS(3656), - [anon_sym_mutable] = ACTIONS(3656), - [anon_sym_constinit] = ACTIONS(3656), - [anon_sym_consteval] = ACTIONS(3656), - [sym_primitive_type] = ACTIONS(3656), - [anon_sym_not] = ACTIONS(3656), - [anon_sym_compl] = ACTIONS(3656), - [anon_sym_DASH_DASH] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3658), - [anon_sym_sizeof] = ACTIONS(3656), - [anon_sym___alignof__] = ACTIONS(3656), - [anon_sym___alignof] = ACTIONS(3656), - [anon_sym__alignof] = ACTIONS(3656), - [anon_sym_alignof] = ACTIONS(3656), - [anon_sym__Alignof] = ACTIONS(3656), - [anon_sym_offsetof] = ACTIONS(3656), - [anon_sym__Generic] = ACTIONS(3656), - [anon_sym_asm] = ACTIONS(3656), - [anon_sym___asm__] = ACTIONS(3656), - [sym_number_literal] = ACTIONS(3658), - [anon_sym_L_SQUOTE] = ACTIONS(3658), - [anon_sym_u_SQUOTE] = ACTIONS(3658), - [anon_sym_U_SQUOTE] = ACTIONS(3658), - [anon_sym_u8_SQUOTE] = ACTIONS(3658), - [anon_sym_SQUOTE] = ACTIONS(3658), - [anon_sym_L_DQUOTE] = ACTIONS(3658), - [anon_sym_u_DQUOTE] = ACTIONS(3658), - [anon_sym_U_DQUOTE] = ACTIONS(3658), - [anon_sym_u8_DQUOTE] = ACTIONS(3658), - [anon_sym_DQUOTE] = ACTIONS(3658), - [sym_true] = ACTIONS(3656), - [sym_false] = ACTIONS(3656), - [anon_sym_NULL] = ACTIONS(3656), - [anon_sym_nullptr] = ACTIONS(3656), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3656), - [anon_sym_template] = ACTIONS(3656), - [anon_sym_delete] = ACTIONS(3656), - [anon_sym_R_DQUOTE] = ACTIONS(3658), - [anon_sym_LR_DQUOTE] = ACTIONS(3658), - [anon_sym_uR_DQUOTE] = ACTIONS(3658), - [anon_sym_UR_DQUOTE] = ACTIONS(3658), - [anon_sym_u8R_DQUOTE] = ACTIONS(3658), - [anon_sym_co_await] = ACTIONS(3656), - [anon_sym_new] = ACTIONS(3656), - [anon_sym_requires] = ACTIONS(3656), - [sym_this] = ACTIONS(3656), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3658), - [sym_semgrep_named_ellipsis] = ACTIONS(3658), - }, - [1971] = { - [sym_identifier] = ACTIONS(3101), - [aux_sym_preproc_def_token1] = ACTIONS(3101), - [aux_sym_preproc_if_token1] = ACTIONS(3101), - [aux_sym_preproc_if_token2] = ACTIONS(3101), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3101), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3101), - [aux_sym_preproc_else_token1] = ACTIONS(3101), - [aux_sym_preproc_elif_token1] = ACTIONS(3101), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3101), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3101), - [sym_preproc_directive] = ACTIONS(3101), - [anon_sym_LPAREN2] = ACTIONS(3103), - [anon_sym_TILDE] = ACTIONS(3103), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_AMP_AMP] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym___extension__] = ACTIONS(3101), - [anon_sym_typedef] = ACTIONS(3101), - [anon_sym_extern] = ACTIONS(3101), - [anon_sym___attribute__] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(3103), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3103), - [anon_sym___declspec] = ACTIONS(3101), - [anon_sym___based] = ACTIONS(3101), - [anon_sym_signed] = ACTIONS(3101), - [anon_sym_unsigned] = ACTIONS(3101), - [anon_sym_long] = ACTIONS(3101), - [anon_sym_short] = ACTIONS(3101), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_static] = ACTIONS(3101), - [anon_sym_register] = ACTIONS(3101), - [anon_sym_inline] = ACTIONS(3101), - [anon_sym___inline] = ACTIONS(3101), - [anon_sym___inline__] = ACTIONS(3101), - [anon_sym___forceinline] = ACTIONS(3101), - [anon_sym_thread_local] = ACTIONS(3101), - [anon_sym___thread] = ACTIONS(3101), - [anon_sym_const] = ACTIONS(3101), - [anon_sym_constexpr] = ACTIONS(3101), - [anon_sym_volatile] = ACTIONS(3101), - [anon_sym_restrict] = ACTIONS(3101), - [anon_sym___restrict__] = ACTIONS(3101), - [anon_sym__Atomic] = ACTIONS(3101), - [anon_sym__Noreturn] = ACTIONS(3101), - [anon_sym_noreturn] = ACTIONS(3101), - [anon_sym_mutable] = ACTIONS(3101), - [anon_sym_constinit] = ACTIONS(3101), - [anon_sym_consteval] = ACTIONS(3101), - [sym_primitive_type] = ACTIONS(3101), - [anon_sym_enum] = ACTIONS(3101), - [anon_sym_class] = ACTIONS(3101), - [anon_sym_struct] = ACTIONS(3101), - [anon_sym_union] = ACTIONS(3101), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3101), - [anon_sym_decltype] = ACTIONS(3101), - [anon_sym_virtual] = ACTIONS(3101), - [anon_sym_alignas] = ACTIONS(3101), - [anon_sym_explicit] = ACTIONS(3101), - [anon_sym_typename] = ACTIONS(3101), - [anon_sym_template] = ACTIONS(3101), - [anon_sym_operator] = ACTIONS(3101), - [anon_sym_friend] = ACTIONS(3101), - [anon_sym_public] = ACTIONS(3101), - [anon_sym_private] = ACTIONS(3101), - [anon_sym_protected] = ACTIONS(3101), - [anon_sym_using] = ACTIONS(3101), - [anon_sym_static_assert] = ACTIONS(3101), - [anon_sym_catch] = ACTIONS(3101), - }, - [1972] = { - [sym_identifier] = ACTIONS(5792), - [aux_sym_preproc_def_token1] = ACTIONS(5792), - [aux_sym_preproc_if_token1] = ACTIONS(5792), - [aux_sym_preproc_if_token2] = ACTIONS(5792), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5792), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5792), - [aux_sym_preproc_else_token1] = ACTIONS(5792), - [aux_sym_preproc_elif_token1] = ACTIONS(5792), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5792), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5792), - [sym_preproc_directive] = ACTIONS(5792), - [anon_sym_LPAREN2] = ACTIONS(5794), - [anon_sym_TILDE] = ACTIONS(5794), - [anon_sym_STAR] = ACTIONS(5794), - [anon_sym_AMP_AMP] = ACTIONS(5794), - [anon_sym_AMP] = ACTIONS(5792), - [anon_sym___extension__] = ACTIONS(5792), - [anon_sym_typedef] = ACTIONS(5792), - [anon_sym_extern] = ACTIONS(5792), - [anon_sym___attribute__] = ACTIONS(5792), - [anon_sym_COLON_COLON] = ACTIONS(5794), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5794), - [anon_sym___declspec] = ACTIONS(5792), - [anon_sym___based] = ACTIONS(5792), - [anon_sym_signed] = ACTIONS(5792), - [anon_sym_unsigned] = ACTIONS(5792), - [anon_sym_long] = ACTIONS(5792), - [anon_sym_short] = ACTIONS(5792), - [anon_sym_LBRACK] = ACTIONS(5792), - [anon_sym_static] = ACTIONS(5792), - [anon_sym_register] = ACTIONS(5792), - [anon_sym_inline] = ACTIONS(5792), - [anon_sym___inline] = ACTIONS(5792), - [anon_sym___inline__] = ACTIONS(5792), - [anon_sym___forceinline] = ACTIONS(5792), - [anon_sym_thread_local] = ACTIONS(5792), - [anon_sym___thread] = ACTIONS(5792), - [anon_sym_const] = ACTIONS(5792), - [anon_sym_constexpr] = ACTIONS(5792), - [anon_sym_volatile] = ACTIONS(5792), - [anon_sym_restrict] = ACTIONS(5792), - [anon_sym___restrict__] = ACTIONS(5792), - [anon_sym__Atomic] = ACTIONS(5792), - [anon_sym__Noreturn] = ACTIONS(5792), - [anon_sym_noreturn] = ACTIONS(5792), - [anon_sym_mutable] = ACTIONS(5792), - [anon_sym_constinit] = ACTIONS(5792), - [anon_sym_consteval] = ACTIONS(5792), - [sym_primitive_type] = ACTIONS(5792), - [anon_sym_enum] = ACTIONS(5792), - [anon_sym_class] = ACTIONS(5792), - [anon_sym_struct] = ACTIONS(5792), - [anon_sym_union] = ACTIONS(5792), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5792), - [anon_sym_decltype] = ACTIONS(5792), - [anon_sym_virtual] = ACTIONS(5792), - [anon_sym_alignas] = ACTIONS(5792), - [anon_sym_explicit] = ACTIONS(5792), - [anon_sym_typename] = ACTIONS(5792), - [anon_sym_template] = ACTIONS(5792), - [anon_sym_operator] = ACTIONS(5792), - [anon_sym_friend] = ACTIONS(5792), - [anon_sym_public] = ACTIONS(5792), - [anon_sym_private] = ACTIONS(5792), - [anon_sym_protected] = ACTIONS(5792), - [anon_sym_using] = ACTIONS(5792), - [anon_sym_static_assert] = ACTIONS(5792), - }, - [1973] = { - [sym_identifier] = ACTIONS(5796), - [aux_sym_preproc_def_token1] = ACTIONS(5796), - [aux_sym_preproc_if_token1] = ACTIONS(5796), - [aux_sym_preproc_if_token2] = ACTIONS(5796), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5796), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5796), - [aux_sym_preproc_else_token1] = ACTIONS(5796), - [aux_sym_preproc_elif_token1] = ACTIONS(5796), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5796), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5796), - [sym_preproc_directive] = ACTIONS(5796), - [anon_sym_LPAREN2] = ACTIONS(5798), - [anon_sym_TILDE] = ACTIONS(5798), - [anon_sym_STAR] = ACTIONS(5798), - [anon_sym_AMP_AMP] = ACTIONS(5798), - [anon_sym_AMP] = ACTIONS(5796), - [anon_sym___extension__] = ACTIONS(5796), - [anon_sym_typedef] = ACTIONS(5796), - [anon_sym_extern] = ACTIONS(5796), - [anon_sym___attribute__] = ACTIONS(5796), - [anon_sym_COLON_COLON] = ACTIONS(5798), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5798), - [anon_sym___declspec] = ACTIONS(5796), - [anon_sym___based] = ACTIONS(5796), - [anon_sym_signed] = ACTIONS(5796), - [anon_sym_unsigned] = ACTIONS(5796), - [anon_sym_long] = ACTIONS(5796), - [anon_sym_short] = ACTIONS(5796), - [anon_sym_LBRACK] = ACTIONS(5796), - [anon_sym_static] = ACTIONS(5796), - [anon_sym_register] = ACTIONS(5796), - [anon_sym_inline] = ACTIONS(5796), - [anon_sym___inline] = ACTIONS(5796), - [anon_sym___inline__] = ACTIONS(5796), - [anon_sym___forceinline] = ACTIONS(5796), - [anon_sym_thread_local] = ACTIONS(5796), - [anon_sym___thread] = ACTIONS(5796), - [anon_sym_const] = ACTIONS(5796), - [anon_sym_constexpr] = ACTIONS(5796), - [anon_sym_volatile] = ACTIONS(5796), - [anon_sym_restrict] = ACTIONS(5796), - [anon_sym___restrict__] = ACTIONS(5796), - [anon_sym__Atomic] = ACTIONS(5796), - [anon_sym__Noreturn] = ACTIONS(5796), - [anon_sym_noreturn] = ACTIONS(5796), - [anon_sym_mutable] = ACTIONS(5796), - [anon_sym_constinit] = ACTIONS(5796), - [anon_sym_consteval] = ACTIONS(5796), - [sym_primitive_type] = ACTIONS(5796), - [anon_sym_enum] = ACTIONS(5796), - [anon_sym_class] = ACTIONS(5796), - [anon_sym_struct] = ACTIONS(5796), - [anon_sym_union] = ACTIONS(5796), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5796), - [anon_sym_decltype] = ACTIONS(5796), - [anon_sym_virtual] = ACTIONS(5796), - [anon_sym_alignas] = ACTIONS(5796), - [anon_sym_explicit] = ACTIONS(5796), - [anon_sym_typename] = ACTIONS(5796), - [anon_sym_template] = ACTIONS(5796), - [anon_sym_operator] = ACTIONS(5796), - [anon_sym_friend] = ACTIONS(5796), - [anon_sym_public] = ACTIONS(5796), - [anon_sym_private] = ACTIONS(5796), - [anon_sym_protected] = ACTIONS(5796), - [anon_sym_using] = ACTIONS(5796), - [anon_sym_static_assert] = ACTIONS(5796), - }, - [1974] = { - [sym_identifier] = ACTIONS(5800), - [aux_sym_preproc_def_token1] = ACTIONS(5800), - [aux_sym_preproc_if_token1] = ACTIONS(5800), - [aux_sym_preproc_if_token2] = ACTIONS(5800), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5800), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5800), - [aux_sym_preproc_else_token1] = ACTIONS(5800), - [aux_sym_preproc_elif_token1] = ACTIONS(5800), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5800), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5800), - [sym_preproc_directive] = ACTIONS(5800), - [anon_sym_LPAREN2] = ACTIONS(5802), - [anon_sym_TILDE] = ACTIONS(5802), - [anon_sym_STAR] = ACTIONS(5802), - [anon_sym_AMP_AMP] = ACTIONS(5802), - [anon_sym_AMP] = ACTIONS(5800), - [anon_sym___extension__] = ACTIONS(5800), - [anon_sym_typedef] = ACTIONS(5800), - [anon_sym_extern] = ACTIONS(5800), - [anon_sym___attribute__] = ACTIONS(5800), - [anon_sym_COLON_COLON] = ACTIONS(5802), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5802), - [anon_sym___declspec] = ACTIONS(5800), - [anon_sym___based] = ACTIONS(5800), - [anon_sym_signed] = ACTIONS(5800), - [anon_sym_unsigned] = ACTIONS(5800), - [anon_sym_long] = ACTIONS(5800), - [anon_sym_short] = ACTIONS(5800), - [anon_sym_LBRACK] = ACTIONS(5800), - [anon_sym_static] = ACTIONS(5800), - [anon_sym_register] = ACTIONS(5800), - [anon_sym_inline] = ACTIONS(5800), - [anon_sym___inline] = ACTIONS(5800), - [anon_sym___inline__] = ACTIONS(5800), - [anon_sym___forceinline] = ACTIONS(5800), - [anon_sym_thread_local] = ACTIONS(5800), - [anon_sym___thread] = ACTIONS(5800), - [anon_sym_const] = ACTIONS(5800), - [anon_sym_constexpr] = ACTIONS(5800), - [anon_sym_volatile] = ACTIONS(5800), - [anon_sym_restrict] = ACTIONS(5800), - [anon_sym___restrict__] = ACTIONS(5800), - [anon_sym__Atomic] = ACTIONS(5800), - [anon_sym__Noreturn] = ACTIONS(5800), - [anon_sym_noreturn] = ACTIONS(5800), - [anon_sym_mutable] = ACTIONS(5800), - [anon_sym_constinit] = ACTIONS(5800), - [anon_sym_consteval] = ACTIONS(5800), - [sym_primitive_type] = ACTIONS(5800), - [anon_sym_enum] = ACTIONS(5800), - [anon_sym_class] = ACTIONS(5800), - [anon_sym_struct] = ACTIONS(5800), - [anon_sym_union] = ACTIONS(5800), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5800), - [anon_sym_decltype] = ACTIONS(5800), - [anon_sym_virtual] = ACTIONS(5800), - [anon_sym_alignas] = ACTIONS(5800), - [anon_sym_explicit] = ACTIONS(5800), - [anon_sym_typename] = ACTIONS(5800), - [anon_sym_template] = ACTIONS(5800), - [anon_sym_operator] = ACTIONS(5800), - [anon_sym_friend] = ACTIONS(5800), - [anon_sym_public] = ACTIONS(5800), - [anon_sym_private] = ACTIONS(5800), - [anon_sym_protected] = ACTIONS(5800), - [anon_sym_using] = ACTIONS(5800), - [anon_sym_static_assert] = ACTIONS(5800), - }, - [1975] = { - [sym_identifier] = ACTIONS(5804), - [aux_sym_preproc_def_token1] = ACTIONS(5804), - [aux_sym_preproc_if_token1] = ACTIONS(5804), - [aux_sym_preproc_if_token2] = ACTIONS(5804), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5804), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5804), - [aux_sym_preproc_else_token1] = ACTIONS(5804), - [aux_sym_preproc_elif_token1] = ACTIONS(5804), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5804), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5804), - [sym_preproc_directive] = ACTIONS(5804), - [anon_sym_LPAREN2] = ACTIONS(5806), - [anon_sym_TILDE] = ACTIONS(5806), - [anon_sym_STAR] = ACTIONS(5806), - [anon_sym_AMP_AMP] = ACTIONS(5806), - [anon_sym_AMP] = ACTIONS(5804), - [anon_sym___extension__] = ACTIONS(5804), - [anon_sym_typedef] = ACTIONS(5804), - [anon_sym_extern] = ACTIONS(5804), - [anon_sym___attribute__] = ACTIONS(5804), - [anon_sym_COLON_COLON] = ACTIONS(5806), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5806), - [anon_sym___declspec] = ACTIONS(5804), - [anon_sym___based] = ACTIONS(5804), - [anon_sym_signed] = ACTIONS(5804), - [anon_sym_unsigned] = ACTIONS(5804), - [anon_sym_long] = ACTIONS(5804), - [anon_sym_short] = ACTIONS(5804), - [anon_sym_LBRACK] = ACTIONS(5804), - [anon_sym_static] = ACTIONS(5804), - [anon_sym_register] = ACTIONS(5804), - [anon_sym_inline] = ACTIONS(5804), - [anon_sym___inline] = ACTIONS(5804), - [anon_sym___inline__] = ACTIONS(5804), - [anon_sym___forceinline] = ACTIONS(5804), - [anon_sym_thread_local] = ACTIONS(5804), - [anon_sym___thread] = ACTIONS(5804), - [anon_sym_const] = ACTIONS(5804), - [anon_sym_constexpr] = ACTIONS(5804), - [anon_sym_volatile] = ACTIONS(5804), - [anon_sym_restrict] = ACTIONS(5804), - [anon_sym___restrict__] = ACTIONS(5804), - [anon_sym__Atomic] = ACTIONS(5804), - [anon_sym__Noreturn] = ACTIONS(5804), - [anon_sym_noreturn] = ACTIONS(5804), - [anon_sym_mutable] = ACTIONS(5804), - [anon_sym_constinit] = ACTIONS(5804), - [anon_sym_consteval] = ACTIONS(5804), - [sym_primitive_type] = ACTIONS(5804), - [anon_sym_enum] = ACTIONS(5804), - [anon_sym_class] = ACTIONS(5804), - [anon_sym_struct] = ACTIONS(5804), - [anon_sym_union] = ACTIONS(5804), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5804), - [anon_sym_decltype] = ACTIONS(5804), - [anon_sym_virtual] = ACTIONS(5804), - [anon_sym_alignas] = ACTIONS(5804), - [anon_sym_explicit] = ACTIONS(5804), - [anon_sym_typename] = ACTIONS(5804), - [anon_sym_template] = ACTIONS(5804), - [anon_sym_operator] = ACTIONS(5804), - [anon_sym_friend] = ACTIONS(5804), - [anon_sym_public] = ACTIONS(5804), - [anon_sym_private] = ACTIONS(5804), - [anon_sym_protected] = ACTIONS(5804), - [anon_sym_using] = ACTIONS(5804), - [anon_sym_static_assert] = ACTIONS(5804), - }, - [1976] = { - [sym_identifier] = ACTIONS(5808), - [aux_sym_preproc_def_token1] = ACTIONS(5808), - [aux_sym_preproc_if_token1] = ACTIONS(5808), - [aux_sym_preproc_if_token2] = ACTIONS(5808), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5808), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5808), - [aux_sym_preproc_else_token1] = ACTIONS(5808), - [aux_sym_preproc_elif_token1] = ACTIONS(5808), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5808), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5808), - [sym_preproc_directive] = ACTIONS(5808), - [anon_sym_LPAREN2] = ACTIONS(5810), - [anon_sym_TILDE] = ACTIONS(5810), - [anon_sym_STAR] = ACTIONS(5810), - [anon_sym_AMP_AMP] = ACTIONS(5810), - [anon_sym_AMP] = ACTIONS(5808), - [anon_sym___extension__] = ACTIONS(5808), - [anon_sym_typedef] = ACTIONS(5808), - [anon_sym_extern] = ACTIONS(5808), - [anon_sym___attribute__] = ACTIONS(5808), - [anon_sym_COLON_COLON] = ACTIONS(5810), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5810), - [anon_sym___declspec] = ACTIONS(5808), - [anon_sym___based] = ACTIONS(5808), - [anon_sym_signed] = ACTIONS(5808), - [anon_sym_unsigned] = ACTIONS(5808), - [anon_sym_long] = ACTIONS(5808), - [anon_sym_short] = ACTIONS(5808), - [anon_sym_LBRACK] = ACTIONS(5808), - [anon_sym_static] = ACTIONS(5808), - [anon_sym_register] = ACTIONS(5808), - [anon_sym_inline] = ACTIONS(5808), - [anon_sym___inline] = ACTIONS(5808), - [anon_sym___inline__] = ACTIONS(5808), - [anon_sym___forceinline] = ACTIONS(5808), - [anon_sym_thread_local] = ACTIONS(5808), - [anon_sym___thread] = ACTIONS(5808), - [anon_sym_const] = ACTIONS(5808), - [anon_sym_constexpr] = ACTIONS(5808), - [anon_sym_volatile] = ACTIONS(5808), - [anon_sym_restrict] = ACTIONS(5808), - [anon_sym___restrict__] = ACTIONS(5808), - [anon_sym__Atomic] = ACTIONS(5808), - [anon_sym__Noreturn] = ACTIONS(5808), - [anon_sym_noreturn] = ACTIONS(5808), - [anon_sym_mutable] = ACTIONS(5808), - [anon_sym_constinit] = ACTIONS(5808), - [anon_sym_consteval] = ACTIONS(5808), - [sym_primitive_type] = ACTIONS(5808), - [anon_sym_enum] = ACTIONS(5808), - [anon_sym_class] = ACTIONS(5808), - [anon_sym_struct] = ACTIONS(5808), - [anon_sym_union] = ACTIONS(5808), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5808), - [anon_sym_decltype] = ACTIONS(5808), - [anon_sym_virtual] = ACTIONS(5808), - [anon_sym_alignas] = ACTIONS(5808), - [anon_sym_explicit] = ACTIONS(5808), - [anon_sym_typename] = ACTIONS(5808), - [anon_sym_template] = ACTIONS(5808), - [anon_sym_operator] = ACTIONS(5808), - [anon_sym_friend] = ACTIONS(5808), - [anon_sym_public] = ACTIONS(5808), - [anon_sym_private] = ACTIONS(5808), - [anon_sym_protected] = ACTIONS(5808), - [anon_sym_using] = ACTIONS(5808), - [anon_sym_static_assert] = ACTIONS(5808), - }, - [1977] = { [sym_identifier] = ACTIONS(5812), [aux_sym_preproc_def_token1] = ACTIONS(5812), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5814), [aux_sym_preproc_if_token1] = ACTIONS(5812), [aux_sym_preproc_if_token2] = ACTIONS(5812), [aux_sym_preproc_ifdef_token1] = ACTIONS(5812), @@ -297697,10 +285530,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5812), [anon_sym_using] = ACTIONS(5812), [anon_sym_static_assert] = ACTIONS(5812), + [sym_semgrep_metavar] = ACTIONS(5814), }, - [1978] = { + [1966] = { [sym_identifier] = ACTIONS(5816), [aux_sym_preproc_def_token1] = ACTIONS(5816), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5818), [aux_sym_preproc_if_token1] = ACTIONS(5816), [aux_sym_preproc_if_token2] = ACTIONS(5816), [aux_sym_preproc_ifdef_token1] = ACTIONS(5816), @@ -297767,10 +285602,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5816), [anon_sym_using] = ACTIONS(5816), [anon_sym_static_assert] = ACTIONS(5816), + [sym_semgrep_metavar] = ACTIONS(5818), }, - [1979] = { + [1967] = { [sym_identifier] = ACTIONS(5820), [aux_sym_preproc_def_token1] = ACTIONS(5820), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5822), [aux_sym_preproc_if_token1] = ACTIONS(5820), [aux_sym_preproc_if_token2] = ACTIONS(5820), [aux_sym_preproc_ifdef_token1] = ACTIONS(5820), @@ -297837,10 +285674,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5820), [anon_sym_using] = ACTIONS(5820), [anon_sym_static_assert] = ACTIONS(5820), + [sym_semgrep_metavar] = ACTIONS(5822), }, - [1980] = { + [1968] = { [sym_identifier] = ACTIONS(5824), [aux_sym_preproc_def_token1] = ACTIONS(5824), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5826), [aux_sym_preproc_if_token1] = ACTIONS(5824), [aux_sym_preproc_if_token2] = ACTIONS(5824), [aux_sym_preproc_ifdef_token1] = ACTIONS(5824), @@ -297907,150 +285746,660 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5824), [anon_sym_using] = ACTIONS(5824), [anon_sym_static_assert] = ACTIONS(5824), + [sym_semgrep_metavar] = ACTIONS(5826), }, - [1981] = { - [sym_identifier] = ACTIONS(3179), - [aux_sym_preproc_def_token1] = ACTIONS(3179), - [aux_sym_preproc_if_token1] = ACTIONS(3179), - [aux_sym_preproc_if_token2] = ACTIONS(3179), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3179), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3179), - [aux_sym_preproc_else_token1] = ACTIONS(3179), - [aux_sym_preproc_elif_token1] = ACTIONS(3179), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3179), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3179), - [sym_preproc_directive] = ACTIONS(3179), - [anon_sym_LPAREN2] = ACTIONS(3181), - [anon_sym_TILDE] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3181), - [anon_sym_AMP_AMP] = ACTIONS(3181), - [anon_sym_AMP] = ACTIONS(3179), - [anon_sym___extension__] = ACTIONS(3179), - [anon_sym_typedef] = ACTIONS(3179), - [anon_sym_extern] = ACTIONS(3179), - [anon_sym___attribute__] = ACTIONS(3179), - [anon_sym_COLON_COLON] = ACTIONS(3181), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3181), - [anon_sym___declspec] = ACTIONS(3179), - [anon_sym___based] = ACTIONS(3179), - [anon_sym_signed] = ACTIONS(3179), - [anon_sym_unsigned] = ACTIONS(3179), - [anon_sym_long] = ACTIONS(3179), - [anon_sym_short] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_static] = ACTIONS(3179), - [anon_sym_register] = ACTIONS(3179), - [anon_sym_inline] = ACTIONS(3179), - [anon_sym___inline] = ACTIONS(3179), - [anon_sym___inline__] = ACTIONS(3179), - [anon_sym___forceinline] = ACTIONS(3179), - [anon_sym_thread_local] = ACTIONS(3179), - [anon_sym___thread] = ACTIONS(3179), - [anon_sym_const] = ACTIONS(3179), - [anon_sym_constexpr] = ACTIONS(3179), - [anon_sym_volatile] = ACTIONS(3179), - [anon_sym_restrict] = ACTIONS(3179), - [anon_sym___restrict__] = ACTIONS(3179), - [anon_sym__Atomic] = ACTIONS(3179), - [anon_sym__Noreturn] = ACTIONS(3179), - [anon_sym_noreturn] = ACTIONS(3179), - [anon_sym_mutable] = ACTIONS(3179), - [anon_sym_constinit] = ACTIONS(3179), - [anon_sym_consteval] = ACTIONS(3179), - [sym_primitive_type] = ACTIONS(3179), - [anon_sym_enum] = ACTIONS(3179), - [anon_sym_class] = ACTIONS(3179), - [anon_sym_struct] = ACTIONS(3179), - [anon_sym_union] = ACTIONS(3179), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3179), - [anon_sym_decltype] = ACTIONS(3179), - [anon_sym_virtual] = ACTIONS(3179), - [anon_sym_alignas] = ACTIONS(3179), - [anon_sym_explicit] = ACTIONS(3179), - [anon_sym_typename] = ACTIONS(3179), - [anon_sym_template] = ACTIONS(3179), - [anon_sym_operator] = ACTIONS(3179), - [anon_sym_friend] = ACTIONS(3179), - [anon_sym_public] = ACTIONS(3179), - [anon_sym_private] = ACTIONS(3179), - [anon_sym_protected] = ACTIONS(3179), - [anon_sym_using] = ACTIONS(3179), - [anon_sym_static_assert] = ACTIONS(3179), + [1969] = { + [sym_identifier] = ACTIONS(3649), + [aux_sym_preproc_def_token1] = ACTIONS(3649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3651), + [aux_sym_preproc_if_token1] = ACTIONS(3649), + [aux_sym_preproc_if_token2] = ACTIONS(3649), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3649), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3649), + [aux_sym_preproc_else_token1] = ACTIONS(3649), + [aux_sym_preproc_elif_token1] = ACTIONS(3649), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3649), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3649), + [sym_preproc_directive] = ACTIONS(3649), + [anon_sym_LPAREN2] = ACTIONS(3651), + [anon_sym_TILDE] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3651), + [anon_sym_AMP_AMP] = ACTIONS(3651), + [anon_sym_AMP] = ACTIONS(3649), + [anon_sym___extension__] = ACTIONS(3649), + [anon_sym_typedef] = ACTIONS(3649), + [anon_sym_extern] = ACTIONS(3649), + [anon_sym___attribute__] = ACTIONS(3649), + [anon_sym_COLON_COLON] = ACTIONS(3651), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3651), + [anon_sym___declspec] = ACTIONS(3649), + [anon_sym___based] = ACTIONS(3649), + [anon_sym_signed] = ACTIONS(3649), + [anon_sym_unsigned] = ACTIONS(3649), + [anon_sym_long] = ACTIONS(3649), + [anon_sym_short] = ACTIONS(3649), + [anon_sym_LBRACK] = ACTIONS(3649), + [anon_sym_static] = ACTIONS(3649), + [anon_sym_register] = ACTIONS(3649), + [anon_sym_inline] = ACTIONS(3649), + [anon_sym___inline] = ACTIONS(3649), + [anon_sym___inline__] = ACTIONS(3649), + [anon_sym___forceinline] = ACTIONS(3649), + [anon_sym_thread_local] = ACTIONS(3649), + [anon_sym___thread] = ACTIONS(3649), + [anon_sym_const] = ACTIONS(3649), + [anon_sym_constexpr] = ACTIONS(3649), + [anon_sym_volatile] = ACTIONS(3649), + [anon_sym_restrict] = ACTIONS(3649), + [anon_sym___restrict__] = ACTIONS(3649), + [anon_sym__Atomic] = ACTIONS(3649), + [anon_sym__Noreturn] = ACTIONS(3649), + [anon_sym_noreturn] = ACTIONS(3649), + [anon_sym_mutable] = ACTIONS(3649), + [anon_sym_constinit] = ACTIONS(3649), + [anon_sym_consteval] = ACTIONS(3649), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_enum] = ACTIONS(3649), + [anon_sym_class] = ACTIONS(3649), + [anon_sym_struct] = ACTIONS(3649), + [anon_sym_union] = ACTIONS(3649), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3649), + [anon_sym_decltype] = ACTIONS(3649), + [anon_sym_virtual] = ACTIONS(3649), + [anon_sym_alignas] = ACTIONS(3649), + [anon_sym_explicit] = ACTIONS(3649), + [anon_sym_typename] = ACTIONS(3649), + [anon_sym_template] = ACTIONS(3649), + [anon_sym_operator] = ACTIONS(3649), + [anon_sym_friend] = ACTIONS(3649), + [anon_sym_public] = ACTIONS(3649), + [anon_sym_private] = ACTIONS(3649), + [anon_sym_protected] = ACTIONS(3649), + [anon_sym_using] = ACTIONS(3649), + [anon_sym_static_assert] = ACTIONS(3649), + [sym_semgrep_metavar] = ACTIONS(3651), }, - [1982] = { - [sym_identifier] = ACTIONS(5828), - [aux_sym_preproc_def_token1] = ACTIONS(5828), - [aux_sym_preproc_if_token1] = ACTIONS(5828), + [1970] = { + [sym_identifier] = ACTIONS(3529), + [aux_sym_preproc_def_token1] = ACTIONS(3529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3531), + [aux_sym_preproc_if_token1] = ACTIONS(3529), + [aux_sym_preproc_if_token2] = ACTIONS(3529), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3529), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3529), + [aux_sym_preproc_else_token1] = ACTIONS(3529), + [aux_sym_preproc_elif_token1] = ACTIONS(3529), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3529), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3529), + [sym_preproc_directive] = ACTIONS(3529), + [anon_sym_LPAREN2] = ACTIONS(3531), + [anon_sym_TILDE] = ACTIONS(3531), + [anon_sym_STAR] = ACTIONS(3531), + [anon_sym_AMP_AMP] = ACTIONS(3531), + [anon_sym_AMP] = ACTIONS(3529), + [anon_sym___extension__] = ACTIONS(3529), + [anon_sym_typedef] = ACTIONS(3529), + [anon_sym_extern] = ACTIONS(3529), + [anon_sym___attribute__] = ACTIONS(3529), + [anon_sym_COLON_COLON] = ACTIONS(3531), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3531), + [anon_sym___declspec] = ACTIONS(3529), + [anon_sym___based] = ACTIONS(3529), + [anon_sym_signed] = ACTIONS(3529), + [anon_sym_unsigned] = ACTIONS(3529), + [anon_sym_long] = ACTIONS(3529), + [anon_sym_short] = ACTIONS(3529), + [anon_sym_LBRACK] = ACTIONS(3529), + [anon_sym_static] = ACTIONS(3529), + [anon_sym_register] = ACTIONS(3529), + [anon_sym_inline] = ACTIONS(3529), + [anon_sym___inline] = ACTIONS(3529), + [anon_sym___inline__] = ACTIONS(3529), + [anon_sym___forceinline] = ACTIONS(3529), + [anon_sym_thread_local] = ACTIONS(3529), + [anon_sym___thread] = ACTIONS(3529), + [anon_sym_const] = ACTIONS(3529), + [anon_sym_constexpr] = ACTIONS(3529), + [anon_sym_volatile] = ACTIONS(3529), + [anon_sym_restrict] = ACTIONS(3529), + [anon_sym___restrict__] = ACTIONS(3529), + [anon_sym__Atomic] = ACTIONS(3529), + [anon_sym__Noreturn] = ACTIONS(3529), + [anon_sym_noreturn] = ACTIONS(3529), + [anon_sym_mutable] = ACTIONS(3529), + [anon_sym_constinit] = ACTIONS(3529), + [anon_sym_consteval] = ACTIONS(3529), + [sym_primitive_type] = ACTIONS(3529), + [anon_sym_enum] = ACTIONS(3529), + [anon_sym_class] = ACTIONS(3529), + [anon_sym_struct] = ACTIONS(3529), + [anon_sym_union] = ACTIONS(3529), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3529), + [anon_sym_decltype] = ACTIONS(3529), + [anon_sym_virtual] = ACTIONS(3529), + [anon_sym_alignas] = ACTIONS(3529), + [anon_sym_explicit] = ACTIONS(3529), + [anon_sym_typename] = ACTIONS(3529), + [anon_sym_template] = ACTIONS(3529), + [anon_sym_operator] = ACTIONS(3529), + [anon_sym_friend] = ACTIONS(3529), + [anon_sym_public] = ACTIONS(3529), + [anon_sym_private] = ACTIONS(3529), + [anon_sym_protected] = ACTIONS(3529), + [anon_sym_using] = ACTIONS(3529), + [anon_sym_static_assert] = ACTIONS(3529), + [sym_semgrep_metavar] = ACTIONS(3531), + }, + [1971] = { + [sym_identifier] = ACTIONS(3533), + [aux_sym_preproc_def_token1] = ACTIONS(3533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3535), + [aux_sym_preproc_if_token1] = ACTIONS(3533), + [aux_sym_preproc_if_token2] = ACTIONS(3533), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3533), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3533), + [aux_sym_preproc_else_token1] = ACTIONS(3533), + [aux_sym_preproc_elif_token1] = ACTIONS(3533), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3533), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3533), + [sym_preproc_directive] = ACTIONS(3533), + [anon_sym_LPAREN2] = ACTIONS(3535), + [anon_sym_TILDE] = ACTIONS(3535), + [anon_sym_STAR] = ACTIONS(3535), + [anon_sym_AMP_AMP] = ACTIONS(3535), + [anon_sym_AMP] = ACTIONS(3533), + [anon_sym___extension__] = ACTIONS(3533), + [anon_sym_typedef] = ACTIONS(3533), + [anon_sym_extern] = ACTIONS(3533), + [anon_sym___attribute__] = ACTIONS(3533), + [anon_sym_COLON_COLON] = ACTIONS(3535), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3535), + [anon_sym___declspec] = ACTIONS(3533), + [anon_sym___based] = ACTIONS(3533), + [anon_sym_signed] = ACTIONS(3533), + [anon_sym_unsigned] = ACTIONS(3533), + [anon_sym_long] = ACTIONS(3533), + [anon_sym_short] = ACTIONS(3533), + [anon_sym_LBRACK] = ACTIONS(3533), + [anon_sym_static] = ACTIONS(3533), + [anon_sym_register] = ACTIONS(3533), + [anon_sym_inline] = ACTIONS(3533), + [anon_sym___inline] = ACTIONS(3533), + [anon_sym___inline__] = ACTIONS(3533), + [anon_sym___forceinline] = ACTIONS(3533), + [anon_sym_thread_local] = ACTIONS(3533), + [anon_sym___thread] = ACTIONS(3533), + [anon_sym_const] = ACTIONS(3533), + [anon_sym_constexpr] = ACTIONS(3533), + [anon_sym_volatile] = ACTIONS(3533), + [anon_sym_restrict] = ACTIONS(3533), + [anon_sym___restrict__] = ACTIONS(3533), + [anon_sym__Atomic] = ACTIONS(3533), + [anon_sym__Noreturn] = ACTIONS(3533), + [anon_sym_noreturn] = ACTIONS(3533), + [anon_sym_mutable] = ACTIONS(3533), + [anon_sym_constinit] = ACTIONS(3533), + [anon_sym_consteval] = ACTIONS(3533), + [sym_primitive_type] = ACTIONS(3533), + [anon_sym_enum] = ACTIONS(3533), + [anon_sym_class] = ACTIONS(3533), + [anon_sym_struct] = ACTIONS(3533), + [anon_sym_union] = ACTIONS(3533), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3533), + [anon_sym_decltype] = ACTIONS(3533), + [anon_sym_virtual] = ACTIONS(3533), + [anon_sym_alignas] = ACTIONS(3533), + [anon_sym_explicit] = ACTIONS(3533), + [anon_sym_typename] = ACTIONS(3533), + [anon_sym_template] = ACTIONS(3533), + [anon_sym_operator] = ACTIONS(3533), + [anon_sym_friend] = ACTIONS(3533), + [anon_sym_public] = ACTIONS(3533), + [anon_sym_private] = ACTIONS(3533), + [anon_sym_protected] = ACTIONS(3533), + [anon_sym_using] = ACTIONS(3533), + [anon_sym_static_assert] = ACTIONS(3533), + [sym_semgrep_metavar] = ACTIONS(3535), + }, + [1972] = { + [sym_identifier] = ACTIONS(3396), + [aux_sym_preproc_def_token1] = ACTIONS(3396), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3398), + [aux_sym_preproc_if_token1] = ACTIONS(3396), + [aux_sym_preproc_if_token2] = ACTIONS(3396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3396), + [aux_sym_preproc_else_token1] = ACTIONS(3396), + [aux_sym_preproc_elif_token1] = ACTIONS(3396), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3396), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3396), + [sym_preproc_directive] = ACTIONS(3396), + [anon_sym_LPAREN2] = ACTIONS(3398), + [anon_sym_TILDE] = ACTIONS(3398), + [anon_sym_STAR] = ACTIONS(3398), + [anon_sym_AMP_AMP] = ACTIONS(3398), + [anon_sym_AMP] = ACTIONS(3396), + [anon_sym___extension__] = ACTIONS(3396), + [anon_sym_typedef] = ACTIONS(3396), + [anon_sym_extern] = ACTIONS(3396), + [anon_sym___attribute__] = ACTIONS(3396), + [anon_sym_COLON_COLON] = ACTIONS(3398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3398), + [anon_sym___declspec] = ACTIONS(3396), + [anon_sym___based] = ACTIONS(3396), + [anon_sym_signed] = ACTIONS(3396), + [anon_sym_unsigned] = ACTIONS(3396), + [anon_sym_long] = ACTIONS(3396), + [anon_sym_short] = ACTIONS(3396), + [anon_sym_LBRACK] = ACTIONS(3396), + [anon_sym_static] = ACTIONS(3396), + [anon_sym_register] = ACTIONS(3396), + [anon_sym_inline] = ACTIONS(3396), + [anon_sym___inline] = ACTIONS(3396), + [anon_sym___inline__] = ACTIONS(3396), + [anon_sym___forceinline] = ACTIONS(3396), + [anon_sym_thread_local] = ACTIONS(3396), + [anon_sym___thread] = ACTIONS(3396), + [anon_sym_const] = ACTIONS(3396), + [anon_sym_constexpr] = ACTIONS(3396), + [anon_sym_volatile] = ACTIONS(3396), + [anon_sym_restrict] = ACTIONS(3396), + [anon_sym___restrict__] = ACTIONS(3396), + [anon_sym__Atomic] = ACTIONS(3396), + [anon_sym__Noreturn] = ACTIONS(3396), + [anon_sym_noreturn] = ACTIONS(3396), + [anon_sym_mutable] = ACTIONS(3396), + [anon_sym_constinit] = ACTIONS(3396), + [anon_sym_consteval] = ACTIONS(3396), + [sym_primitive_type] = ACTIONS(3396), + [anon_sym_enum] = ACTIONS(3396), + [anon_sym_class] = ACTIONS(3396), + [anon_sym_struct] = ACTIONS(3396), + [anon_sym_union] = ACTIONS(3396), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3396), + [anon_sym_decltype] = ACTIONS(3396), + [anon_sym_virtual] = ACTIONS(3396), + [anon_sym_alignas] = ACTIONS(3396), + [anon_sym_explicit] = ACTIONS(3396), + [anon_sym_typename] = ACTIONS(3396), + [anon_sym_template] = ACTIONS(3396), + [anon_sym_operator] = ACTIONS(3396), + [anon_sym_friend] = ACTIONS(3396), + [anon_sym_public] = ACTIONS(3396), + [anon_sym_private] = ACTIONS(3396), + [anon_sym_protected] = ACTIONS(3396), + [anon_sym_using] = ACTIONS(3396), + [anon_sym_static_assert] = ACTIONS(3396), + [sym_semgrep_metavar] = ACTIONS(3398), + }, + [1973] = { + [sym_declaration_modifiers] = STATE(4979), + [sym_attribute_specifier] = STATE(4535), + [sym_attribute_declaration] = STATE(4535), + [sym_ms_declspec_modifier] = STATE(4535), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7382), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4535), + [sym_type_qualifier] = STATE(4535), + [sym_decltype] = STATE(9605), + [sym_virtual] = STATE(4535), + [sym_alignas_specifier] = STATE(4535), + [sym_explicit_function_specifier] = STATE(4979), + [sym_operator_cast] = STATE(7746), + [sym_constructor_specifiers] = STATE(4069), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(9605), + [sym_template_function] = STATE(7305), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6514), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_operator_cast_identifier] = STATE(7746), + [sym_operator_name] = STATE(7305), + [aux_sym_operator_cast_definition_repeat1] = STATE(4069), + [sym_identifier] = ACTIONS(5741), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(5743), + [anon_sym_extern] = ACTIONS(5745), + [anon_sym___attribute__] = ACTIONS(5747), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5749), + [anon_sym___declspec] = ACTIONS(5751), + [anon_sym___based] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(5745), + [anon_sym_register] = ACTIONS(5745), + [anon_sym_inline] = ACTIONS(5745), + [anon_sym___inline] = ACTIONS(5745), + [anon_sym___inline__] = ACTIONS(5745), + [anon_sym___forceinline] = ACTIONS(5745), + [anon_sym_thread_local] = ACTIONS(5745), + [anon_sym___thread] = ACTIONS(5745), + [anon_sym_const] = ACTIONS(5743), + [anon_sym_constexpr] = ACTIONS(5743), + [anon_sym_volatile] = ACTIONS(5743), + [anon_sym_restrict] = ACTIONS(5743), + [anon_sym___restrict__] = ACTIONS(5743), + [anon_sym__Atomic] = ACTIONS(5743), + [anon_sym__Noreturn] = ACTIONS(5743), + [anon_sym_noreturn] = ACTIONS(5743), + [anon_sym_mutable] = ACTIONS(5743), + [anon_sym_constinit] = ACTIONS(5743), + [anon_sym_consteval] = ACTIONS(5743), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_virtual] = ACTIONS(5753), + [anon_sym_alignas] = ACTIONS(5755), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_operator] = ACTIONS(135), + }, + [1974] = { + [sym_identifier] = ACTIONS(3302), + [aux_sym_preproc_def_token1] = ACTIONS(3302), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3304), + [aux_sym_preproc_if_token1] = ACTIONS(3302), + [aux_sym_preproc_if_token2] = ACTIONS(3302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3302), + [aux_sym_preproc_else_token1] = ACTIONS(3302), + [aux_sym_preproc_elif_token1] = ACTIONS(3302), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3302), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3302), + [sym_preproc_directive] = ACTIONS(3302), + [anon_sym_LPAREN2] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3304), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_AMP_AMP] = ACTIONS(3304), + [anon_sym_AMP] = ACTIONS(3302), + [anon_sym___extension__] = ACTIONS(3302), + [anon_sym_typedef] = ACTIONS(3302), + [anon_sym_extern] = ACTIONS(3302), + [anon_sym___attribute__] = ACTIONS(3302), + [anon_sym_COLON_COLON] = ACTIONS(3304), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3304), + [anon_sym___declspec] = ACTIONS(3302), + [anon_sym___based] = ACTIONS(3302), + [anon_sym_signed] = ACTIONS(3302), + [anon_sym_unsigned] = ACTIONS(3302), + [anon_sym_long] = ACTIONS(3302), + [anon_sym_short] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_register] = ACTIONS(3302), + [anon_sym_inline] = ACTIONS(3302), + [anon_sym___inline] = ACTIONS(3302), + [anon_sym___inline__] = ACTIONS(3302), + [anon_sym___forceinline] = ACTIONS(3302), + [anon_sym_thread_local] = ACTIONS(3302), + [anon_sym___thread] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_constexpr] = ACTIONS(3302), + [anon_sym_volatile] = ACTIONS(3302), + [anon_sym_restrict] = ACTIONS(3302), + [anon_sym___restrict__] = ACTIONS(3302), + [anon_sym__Atomic] = ACTIONS(3302), + [anon_sym__Noreturn] = ACTIONS(3302), + [anon_sym_noreturn] = ACTIONS(3302), + [anon_sym_mutable] = ACTIONS(3302), + [anon_sym_constinit] = ACTIONS(3302), + [anon_sym_consteval] = ACTIONS(3302), + [sym_primitive_type] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_struct] = ACTIONS(3302), + [anon_sym_union] = ACTIONS(3302), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3302), + [anon_sym_decltype] = ACTIONS(3302), + [anon_sym_virtual] = ACTIONS(3302), + [anon_sym_alignas] = ACTIONS(3302), + [anon_sym_explicit] = ACTIONS(3302), + [anon_sym_typename] = ACTIONS(3302), + [anon_sym_template] = ACTIONS(3302), + [anon_sym_operator] = ACTIONS(3302), + [anon_sym_friend] = ACTIONS(3302), + [anon_sym_public] = ACTIONS(3302), + [anon_sym_private] = ACTIONS(3302), + [anon_sym_protected] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_static_assert] = ACTIONS(3302), + [sym_semgrep_metavar] = ACTIONS(3304), + }, + [1975] = { + [sym_identifier] = ACTIONS(2355), + [aux_sym_preproc_def_token1] = ACTIONS(2355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2353), + [anon_sym_COMMA] = ACTIONS(3211), + [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(2353), + [anon_sym_TILDE] = ACTIONS(2353), + [anon_sym_STAR] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(2353), + [anon_sym_AMP] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(3211), + [anon_sym___extension__] = ACTIONS(2355), + [anon_sym_typedef] = ACTIONS(2355), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym___attribute__] = ACTIONS(5680), + [anon_sym_COLON_COLON] = ACTIONS(2353), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), + [anon_sym___declspec] = ACTIONS(2355), + [anon_sym___based] = ACTIONS(2355), + [anon_sym_signed] = ACTIONS(2355), + [anon_sym_unsigned] = ACTIONS(2355), + [anon_sym_long] = ACTIONS(2355), + [anon_sym_short] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_static] = ACTIONS(2355), + [anon_sym_register] = ACTIONS(2355), + [anon_sym_inline] = ACTIONS(2355), + [anon_sym___inline] = ACTIONS(2355), + [anon_sym___inline__] = ACTIONS(2355), + [anon_sym___forceinline] = ACTIONS(2355), + [anon_sym_thread_local] = ACTIONS(2355), + [anon_sym___thread] = ACTIONS(2355), + [anon_sym_const] = ACTIONS(2355), + [anon_sym_constexpr] = ACTIONS(2355), + [anon_sym_volatile] = ACTIONS(2355), + [anon_sym_restrict] = ACTIONS(2355), + [anon_sym___restrict__] = ACTIONS(2355), + [anon_sym__Atomic] = ACTIONS(2355), + [anon_sym__Noreturn] = ACTIONS(2355), + [anon_sym_noreturn] = ACTIONS(2355), + [anon_sym_mutable] = ACTIONS(2355), + [anon_sym_constinit] = ACTIONS(2355), + [anon_sym_consteval] = 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), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2355), + [anon_sym_decltype] = ACTIONS(2355), + [anon_sym_virtual] = ACTIONS(2355), + [anon_sym_alignas] = ACTIONS(2355), + [anon_sym_explicit] = ACTIONS(2355), + [anon_sym_typename] = ACTIONS(2355), + [anon_sym_template] = ACTIONS(2355), + [anon_sym_operator] = ACTIONS(2355), + [anon_sym_friend] = ACTIONS(2355), + [anon_sym_public] = ACTIONS(2355), + [anon_sym_private] = ACTIONS(2355), + [anon_sym_protected] = ACTIONS(2355), + [anon_sym_using] = ACTIONS(2355), + [anon_sym_static_assert] = ACTIONS(2355), + [sym_semgrep_metavar] = ACTIONS(2353), + }, + [1976] = { + [sym_declaration_modifiers] = STATE(4979), + [sym_attribute_specifier] = STATE(4535), + [sym_attribute_declaration] = STATE(4535), + [sym_ms_declspec_modifier] = STATE(4535), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7262), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4535), + [sym_type_qualifier] = STATE(4535), + [sym_decltype] = STATE(9605), + [sym_virtual] = STATE(4535), + [sym_alignas_specifier] = STATE(4535), + [sym_explicit_function_specifier] = STATE(4979), + [sym_operator_cast] = STATE(7743), + [sym_constructor_specifiers] = STATE(4069), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(9605), + [sym_template_function] = STATE(7305), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6514), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_operator_cast_identifier] = STATE(7743), + [sym_operator_name] = STATE(7305), + [aux_sym_operator_cast_definition_repeat1] = STATE(4069), + [sym_identifier] = ACTIONS(5741), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(5743), + [anon_sym_extern] = ACTIONS(5745), + [anon_sym___attribute__] = ACTIONS(5747), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5749), + [anon_sym___declspec] = ACTIONS(5751), + [anon_sym___based] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(5745), + [anon_sym_register] = ACTIONS(5745), + [anon_sym_inline] = ACTIONS(5745), + [anon_sym___inline] = ACTIONS(5745), + [anon_sym___inline__] = ACTIONS(5745), + [anon_sym___forceinline] = ACTIONS(5745), + [anon_sym_thread_local] = ACTIONS(5745), + [anon_sym___thread] = ACTIONS(5745), + [anon_sym_const] = ACTIONS(5743), + [anon_sym_constexpr] = ACTIONS(5743), + [anon_sym_volatile] = ACTIONS(5743), + [anon_sym_restrict] = ACTIONS(5743), + [anon_sym___restrict__] = ACTIONS(5743), + [anon_sym__Atomic] = ACTIONS(5743), + [anon_sym__Noreturn] = ACTIONS(5743), + [anon_sym_noreturn] = ACTIONS(5743), + [anon_sym_mutable] = ACTIONS(5743), + [anon_sym_constinit] = ACTIONS(5743), + [anon_sym_consteval] = ACTIONS(5743), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_virtual] = ACTIONS(5753), + [anon_sym_alignas] = ACTIONS(5755), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_operator] = ACTIONS(135), + }, + [1977] = { + [sym_argument_list] = STATE(2605), + [sym_initializer_list] = STATE(2605), + [sym_decltype_auto] = STATE(2235), + [sym_new_declarator] = STATE(2411), + [ts_builtin_sym_end] = ACTIONS(5828), + [sym_identifier] = ACTIONS(5830), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5828), + [anon_sym_COMMA] = ACTIONS(5828), + [anon_sym_RPAREN] = ACTIONS(5828), [aux_sym_preproc_if_token2] = ACTIONS(5828), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5828), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5828), [aux_sym_preproc_else_token1] = ACTIONS(5828), - [aux_sym_preproc_elif_token1] = ACTIONS(5828), + [aux_sym_preproc_elif_token1] = ACTIONS(5830), [aux_sym_preproc_elifdef_token1] = ACTIONS(5828), [aux_sym_preproc_elifdef_token2] = ACTIONS(5828), - [sym_preproc_directive] = ACTIONS(5828), - [anon_sym_LPAREN2] = ACTIONS(5830), - [anon_sym_TILDE] = ACTIONS(5830), + [anon_sym_LPAREN2] = ACTIONS(5761), + [anon_sym_DASH] = ACTIONS(5830), + [anon_sym_PLUS] = ACTIONS(5830), [anon_sym_STAR] = ACTIONS(5830), - [anon_sym_AMP_AMP] = ACTIONS(5830), - [anon_sym_AMP] = ACTIONS(5828), - [anon_sym___extension__] = ACTIONS(5828), - [anon_sym_typedef] = ACTIONS(5828), - [anon_sym_extern] = ACTIONS(5828), - [anon_sym___attribute__] = ACTIONS(5828), - [anon_sym_COLON_COLON] = ACTIONS(5830), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5830), - [anon_sym___declspec] = ACTIONS(5828), - [anon_sym___based] = ACTIONS(5828), - [anon_sym_signed] = ACTIONS(5828), - [anon_sym_unsigned] = ACTIONS(5828), - [anon_sym_long] = ACTIONS(5828), - [anon_sym_short] = ACTIONS(5828), - [anon_sym_LBRACK] = ACTIONS(5828), - [anon_sym_static] = ACTIONS(5828), - [anon_sym_register] = ACTIONS(5828), - [anon_sym_inline] = ACTIONS(5828), - [anon_sym___inline] = ACTIONS(5828), - [anon_sym___inline__] = ACTIONS(5828), - [anon_sym___forceinline] = ACTIONS(5828), - [anon_sym_thread_local] = ACTIONS(5828), - [anon_sym___thread] = ACTIONS(5828), - [anon_sym_const] = ACTIONS(5828), - [anon_sym_constexpr] = ACTIONS(5828), - [anon_sym_volatile] = ACTIONS(5828), - [anon_sym_restrict] = ACTIONS(5828), - [anon_sym___restrict__] = ACTIONS(5828), - [anon_sym__Atomic] = ACTIONS(5828), - [anon_sym__Noreturn] = ACTIONS(5828), - [anon_sym_noreturn] = ACTIONS(5828), - [anon_sym_mutable] = ACTIONS(5828), - [anon_sym_constinit] = ACTIONS(5828), - [anon_sym_consteval] = ACTIONS(5828), - [sym_primitive_type] = ACTIONS(5828), - [anon_sym_enum] = ACTIONS(5828), - [anon_sym_class] = ACTIONS(5828), - [anon_sym_struct] = ACTIONS(5828), - [anon_sym_union] = ACTIONS(5828), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5828), - [anon_sym_decltype] = ACTIONS(5828), - [anon_sym_virtual] = ACTIONS(5828), - [anon_sym_alignas] = ACTIONS(5828), - [anon_sym_explicit] = ACTIONS(5828), - [anon_sym_typename] = ACTIONS(5828), - [anon_sym_template] = ACTIONS(5828), - [anon_sym_operator] = ACTIONS(5828), - [anon_sym_friend] = ACTIONS(5828), - [anon_sym_public] = ACTIONS(5828), - [anon_sym_private] = ACTIONS(5828), - [anon_sym_protected] = ACTIONS(5828), - [anon_sym_using] = ACTIONS(5828), - [anon_sym_static_assert] = ACTIONS(5828), + [anon_sym_SLASH] = ACTIONS(5830), + [anon_sym_PERCENT] = ACTIONS(5830), + [anon_sym_PIPE_PIPE] = ACTIONS(5828), + [anon_sym_AMP_AMP] = ACTIONS(5828), + [anon_sym_PIPE] = ACTIONS(5830), + [anon_sym_CARET] = ACTIONS(5830), + [anon_sym_AMP] = ACTIONS(5830), + [anon_sym_EQ_EQ] = ACTIONS(5828), + [anon_sym_BANG_EQ] = ACTIONS(5828), + [anon_sym_GT] = ACTIONS(5830), + [anon_sym_GT_EQ] = ACTIONS(5828), + [anon_sym_LT_EQ] = ACTIONS(5830), + [anon_sym_LT] = ACTIONS(5830), + [anon_sym_LT_LT] = ACTIONS(5830), + [anon_sym_GT_GT] = ACTIONS(5830), + [anon_sym_SEMI] = ACTIONS(5828), + [anon_sym___attribute__] = ACTIONS(5830), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_RBRACE] = ACTIONS(5828), + [anon_sym_LBRACK] = ACTIONS(5763), + [anon_sym_RBRACK] = ACTIONS(5828), + [anon_sym_EQ] = ACTIONS(5830), + [anon_sym_COLON] = ACTIONS(5828), + [anon_sym_QMARK] = ACTIONS(5828), + [anon_sym_STAR_EQ] = ACTIONS(5828), + [anon_sym_SLASH_EQ] = ACTIONS(5828), + [anon_sym_PERCENT_EQ] = ACTIONS(5828), + [anon_sym_PLUS_EQ] = ACTIONS(5828), + [anon_sym_DASH_EQ] = ACTIONS(5828), + [anon_sym_LT_LT_EQ] = ACTIONS(5828), + [anon_sym_GT_GT_EQ] = ACTIONS(5828), + [anon_sym_AMP_EQ] = ACTIONS(5828), + [anon_sym_CARET_EQ] = ACTIONS(5828), + [anon_sym_PIPE_EQ] = ACTIONS(5828), + [anon_sym_and_eq] = ACTIONS(5830), + [anon_sym_or_eq] = ACTIONS(5830), + [anon_sym_xor_eq] = ACTIONS(5830), + [anon_sym_LT_EQ_GT] = ACTIONS(5828), + [anon_sym_or] = ACTIONS(5830), + [anon_sym_and] = ACTIONS(5830), + [anon_sym_bitor] = ACTIONS(5830), + [anon_sym_xor] = ACTIONS(5830), + [anon_sym_bitand] = ACTIONS(5830), + [anon_sym_not_eq] = ACTIONS(5830), + [anon_sym_DASH_DASH] = ACTIONS(5828), + [anon_sym_PLUS_PLUS] = ACTIONS(5828), + [anon_sym_DOT] = ACTIONS(5830), + [anon_sym_DOT_STAR] = ACTIONS(5828), + [anon_sym_DASH_GT] = ACTIONS(5828), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5765), + [anon_sym_decltype] = ACTIONS(5767), }, - [1983] = { + [1978] = { [sym_identifier] = ACTIONS(5832), [aux_sym_preproc_def_token1] = ACTIONS(5832), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5834), [aux_sym_preproc_if_token1] = ACTIONS(5832), [aux_sym_preproc_if_token2] = ACTIONS(5832), [aux_sym_preproc_ifdef_token1] = ACTIONS(5832), @@ -298117,10 +286466,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5832), [anon_sym_using] = ACTIONS(5832), [anon_sym_static_assert] = ACTIONS(5832), + [sym_semgrep_metavar] = ACTIONS(5834), }, - [1984] = { + [1979] = { + [sym_declaration_modifiers] = STATE(4979), + [sym_attribute_specifier] = STATE(4535), + [sym_attribute_declaration] = STATE(4535), + [sym_ms_declspec_modifier] = STATE(4535), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7290), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4535), + [sym_type_qualifier] = STATE(4535), + [sym_decltype] = STATE(9605), + [sym_virtual] = STATE(4535), + [sym_alignas_specifier] = STATE(4535), + [sym_explicit_function_specifier] = STATE(4979), + [sym_operator_cast] = STATE(7740), + [sym_constructor_specifiers] = STATE(4069), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(9605), + [sym_template_function] = STATE(7305), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6514), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_operator_cast_identifier] = STATE(7740), + [sym_operator_name] = STATE(7305), + [aux_sym_operator_cast_definition_repeat1] = STATE(4069), + [sym_identifier] = ACTIONS(5741), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(5743), + [anon_sym_extern] = ACTIONS(5745), + [anon_sym___attribute__] = ACTIONS(5747), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5749), + [anon_sym___declspec] = ACTIONS(5751), + [anon_sym___based] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(5745), + [anon_sym_register] = ACTIONS(5745), + [anon_sym_inline] = ACTIONS(5745), + [anon_sym___inline] = ACTIONS(5745), + [anon_sym___inline__] = ACTIONS(5745), + [anon_sym___forceinline] = ACTIONS(5745), + [anon_sym_thread_local] = ACTIONS(5745), + [anon_sym___thread] = ACTIONS(5745), + [anon_sym_const] = ACTIONS(5743), + [anon_sym_constexpr] = ACTIONS(5743), + [anon_sym_volatile] = ACTIONS(5743), + [anon_sym_restrict] = ACTIONS(5743), + [anon_sym___restrict__] = ACTIONS(5743), + [anon_sym__Atomic] = ACTIONS(5743), + [anon_sym__Noreturn] = ACTIONS(5743), + [anon_sym_noreturn] = ACTIONS(5743), + [anon_sym_mutable] = ACTIONS(5743), + [anon_sym_constinit] = ACTIONS(5743), + [anon_sym_consteval] = ACTIONS(5743), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_virtual] = ACTIONS(5753), + [anon_sym_alignas] = ACTIONS(5755), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_operator] = ACTIONS(135), + }, + [1980] = { [sym_identifier] = ACTIONS(5836), [aux_sym_preproc_def_token1] = ACTIONS(5836), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5838), [aux_sym_preproc_if_token1] = ACTIONS(5836), [aux_sym_preproc_if_token2] = ACTIONS(5836), [aux_sym_preproc_ifdef_token1] = ACTIONS(5836), @@ -298187,10 +286610,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5836), [anon_sym_using] = ACTIONS(5836), [anon_sym_static_assert] = ACTIONS(5836), + [sym_semgrep_metavar] = ACTIONS(5838), }, - [1985] = { + [1981] = { [sym_identifier] = ACTIONS(5840), [aux_sym_preproc_def_token1] = ACTIONS(5840), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5842), [aux_sym_preproc_if_token1] = ACTIONS(5840), [aux_sym_preproc_if_token2] = ACTIONS(5840), [aux_sym_preproc_ifdef_token1] = ACTIONS(5840), @@ -298257,10 +286682,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5840), [anon_sym_using] = ACTIONS(5840), [anon_sym_static_assert] = ACTIONS(5840), + [sym_semgrep_metavar] = ACTIONS(5842), }, - [1986] = { + [1982] = { + [sym_identifier] = ACTIONS(3457), + [aux_sym_preproc_def_token1] = ACTIONS(3457), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3459), + [aux_sym_preproc_if_token1] = ACTIONS(3457), + [aux_sym_preproc_if_token2] = ACTIONS(3457), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3457), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3457), + [aux_sym_preproc_else_token1] = ACTIONS(3457), + [aux_sym_preproc_elif_token1] = ACTIONS(3457), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3457), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3457), + [sym_preproc_directive] = ACTIONS(3457), + [anon_sym_LPAREN2] = ACTIONS(3459), + [anon_sym_TILDE] = ACTIONS(3459), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_AMP] = ACTIONS(3457), + [anon_sym___extension__] = ACTIONS(3457), + [anon_sym_typedef] = ACTIONS(3457), + [anon_sym_extern] = ACTIONS(3457), + [anon_sym___attribute__] = ACTIONS(3457), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3459), + [anon_sym___declspec] = ACTIONS(3457), + [anon_sym___based] = ACTIONS(3457), + [anon_sym_signed] = ACTIONS(3457), + [anon_sym_unsigned] = ACTIONS(3457), + [anon_sym_long] = ACTIONS(3457), + [anon_sym_short] = ACTIONS(3457), + [anon_sym_LBRACK] = ACTIONS(3457), + [anon_sym_static] = ACTIONS(3457), + [anon_sym_register] = ACTIONS(3457), + [anon_sym_inline] = ACTIONS(3457), + [anon_sym___inline] = ACTIONS(3457), + [anon_sym___inline__] = ACTIONS(3457), + [anon_sym___forceinline] = ACTIONS(3457), + [anon_sym_thread_local] = ACTIONS(3457), + [anon_sym___thread] = ACTIONS(3457), + [anon_sym_const] = ACTIONS(3457), + [anon_sym_constexpr] = ACTIONS(3457), + [anon_sym_volatile] = ACTIONS(3457), + [anon_sym_restrict] = ACTIONS(3457), + [anon_sym___restrict__] = ACTIONS(3457), + [anon_sym__Atomic] = ACTIONS(3457), + [anon_sym__Noreturn] = ACTIONS(3457), + [anon_sym_noreturn] = ACTIONS(3457), + [anon_sym_mutable] = ACTIONS(3457), + [anon_sym_constinit] = ACTIONS(3457), + [anon_sym_consteval] = ACTIONS(3457), + [sym_primitive_type] = ACTIONS(3457), + [anon_sym_enum] = ACTIONS(3457), + [anon_sym_class] = ACTIONS(3457), + [anon_sym_struct] = ACTIONS(3457), + [anon_sym_union] = ACTIONS(3457), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3457), + [anon_sym_decltype] = ACTIONS(3457), + [anon_sym_virtual] = ACTIONS(3457), + [anon_sym_alignas] = ACTIONS(3457), + [anon_sym_explicit] = ACTIONS(3457), + [anon_sym_typename] = ACTIONS(3457), + [anon_sym_template] = ACTIONS(3457), + [anon_sym_operator] = ACTIONS(3457), + [anon_sym_friend] = ACTIONS(3457), + [anon_sym_public] = ACTIONS(3457), + [anon_sym_private] = ACTIONS(3457), + [anon_sym_protected] = ACTIONS(3457), + [anon_sym_using] = ACTIONS(3457), + [anon_sym_static_assert] = ACTIONS(3457), + [sym_semgrep_metavar] = ACTIONS(3459), + }, + [1983] = { + [sym_identifier] = ACTIONS(3551), + [aux_sym_preproc_def_token1] = ACTIONS(3551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3553), + [aux_sym_preproc_if_token1] = ACTIONS(3551), + [aux_sym_preproc_if_token2] = ACTIONS(3551), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3551), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3551), + [aux_sym_preproc_else_token1] = ACTIONS(3551), + [aux_sym_preproc_elif_token1] = ACTIONS(3551), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3551), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3551), + [sym_preproc_directive] = ACTIONS(3551), + [anon_sym_LPAREN2] = ACTIONS(3553), + [anon_sym_TILDE] = ACTIONS(3553), + [anon_sym_STAR] = ACTIONS(3553), + [anon_sym_AMP_AMP] = ACTIONS(3553), + [anon_sym_AMP] = ACTIONS(3551), + [anon_sym___extension__] = ACTIONS(3551), + [anon_sym_typedef] = ACTIONS(3551), + [anon_sym_extern] = ACTIONS(3551), + [anon_sym___attribute__] = ACTIONS(3551), + [anon_sym_COLON_COLON] = ACTIONS(3553), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3553), + [anon_sym___declspec] = ACTIONS(3551), + [anon_sym___based] = ACTIONS(3551), + [anon_sym_signed] = ACTIONS(3551), + [anon_sym_unsigned] = ACTIONS(3551), + [anon_sym_long] = ACTIONS(3551), + [anon_sym_short] = ACTIONS(3551), + [anon_sym_LBRACK] = ACTIONS(3551), + [anon_sym_static] = ACTIONS(3551), + [anon_sym_register] = ACTIONS(3551), + [anon_sym_inline] = ACTIONS(3551), + [anon_sym___inline] = ACTIONS(3551), + [anon_sym___inline__] = ACTIONS(3551), + [anon_sym___forceinline] = ACTIONS(3551), + [anon_sym_thread_local] = ACTIONS(3551), + [anon_sym___thread] = ACTIONS(3551), + [anon_sym_const] = ACTIONS(3551), + [anon_sym_constexpr] = ACTIONS(3551), + [anon_sym_volatile] = ACTIONS(3551), + [anon_sym_restrict] = ACTIONS(3551), + [anon_sym___restrict__] = ACTIONS(3551), + [anon_sym__Atomic] = ACTIONS(3551), + [anon_sym__Noreturn] = ACTIONS(3551), + [anon_sym_noreturn] = ACTIONS(3551), + [anon_sym_mutable] = ACTIONS(3551), + [anon_sym_constinit] = ACTIONS(3551), + [anon_sym_consteval] = ACTIONS(3551), + [sym_primitive_type] = ACTIONS(3551), + [anon_sym_enum] = ACTIONS(3551), + [anon_sym_class] = ACTIONS(3551), + [anon_sym_struct] = ACTIONS(3551), + [anon_sym_union] = ACTIONS(3551), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3551), + [anon_sym_decltype] = ACTIONS(3551), + [anon_sym_virtual] = ACTIONS(3551), + [anon_sym_alignas] = ACTIONS(3551), + [anon_sym_explicit] = ACTIONS(3551), + [anon_sym_typename] = ACTIONS(3551), + [anon_sym_template] = ACTIONS(3551), + [anon_sym_operator] = ACTIONS(3551), + [anon_sym_friend] = ACTIONS(3551), + [anon_sym_public] = ACTIONS(3551), + [anon_sym_private] = ACTIONS(3551), + [anon_sym_protected] = ACTIONS(3551), + [anon_sym_using] = ACTIONS(3551), + [anon_sym_static_assert] = ACTIONS(3551), + [sym_semgrep_metavar] = ACTIONS(3553), + }, + [1984] = { [sym_identifier] = ACTIONS(5844), [aux_sym_preproc_def_token1] = ACTIONS(5844), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5846), [aux_sym_preproc_if_token1] = ACTIONS(5844), [aux_sym_preproc_if_token2] = ACTIONS(5844), [aux_sym_preproc_ifdef_token1] = ACTIONS(5844), @@ -298327,10 +286898,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5844), [anon_sym_using] = ACTIONS(5844), [anon_sym_static_assert] = ACTIONS(5844), + [sym_semgrep_metavar] = ACTIONS(5846), }, - [1987] = { + [1985] = { [sym_identifier] = ACTIONS(5848), [aux_sym_preproc_def_token1] = ACTIONS(5848), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5850), [aux_sym_preproc_if_token1] = ACTIONS(5848), [aux_sym_preproc_if_token2] = ACTIONS(5848), [aux_sym_preproc_ifdef_token1] = ACTIONS(5848), @@ -298397,10 +286970,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5848), [anon_sym_using] = ACTIONS(5848), [anon_sym_static_assert] = ACTIONS(5848), + [sym_semgrep_metavar] = ACTIONS(5850), }, - [1988] = { + [1986] = { [sym_identifier] = ACTIONS(5852), [aux_sym_preproc_def_token1] = ACTIONS(5852), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5854), [aux_sym_preproc_if_token1] = ACTIONS(5852), [aux_sym_preproc_if_token2] = ACTIONS(5852), [aux_sym_preproc_ifdef_token1] = ACTIONS(5852), @@ -298467,10 +287042,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5852), [anon_sym_using] = ACTIONS(5852), [anon_sym_static_assert] = ACTIONS(5852), + [sym_semgrep_metavar] = ACTIONS(5854), }, - [1989] = { + [1987] = { + [sym_identifier] = ACTIONS(3143), + [aux_sym_preproc_def_token1] = ACTIONS(3143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3145), + [aux_sym_preproc_if_token1] = ACTIONS(3143), + [aux_sym_preproc_if_token2] = ACTIONS(3143), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3143), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3143), + [aux_sym_preproc_else_token1] = ACTIONS(3143), + [aux_sym_preproc_elif_token1] = ACTIONS(3143), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3143), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3143), + [sym_preproc_directive] = ACTIONS(3143), + [anon_sym_LPAREN2] = ACTIONS(3145), + [anon_sym_TILDE] = ACTIONS(3145), + [anon_sym_STAR] = ACTIONS(3145), + [anon_sym_AMP_AMP] = ACTIONS(3145), + [anon_sym_AMP] = ACTIONS(3143), + [anon_sym___extension__] = ACTIONS(3143), + [anon_sym_typedef] = ACTIONS(3143), + [anon_sym_extern] = ACTIONS(3143), + [anon_sym___attribute__] = ACTIONS(3143), + [anon_sym_COLON_COLON] = ACTIONS(3145), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3145), + [anon_sym___declspec] = ACTIONS(3143), + [anon_sym___based] = ACTIONS(3143), + [anon_sym_signed] = ACTIONS(3143), + [anon_sym_unsigned] = ACTIONS(3143), + [anon_sym_long] = ACTIONS(3143), + [anon_sym_short] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(3143), + [anon_sym_static] = ACTIONS(3143), + [anon_sym_register] = ACTIONS(3143), + [anon_sym_inline] = ACTIONS(3143), + [anon_sym___inline] = ACTIONS(3143), + [anon_sym___inline__] = ACTIONS(3143), + [anon_sym___forceinline] = ACTIONS(3143), + [anon_sym_thread_local] = ACTIONS(3143), + [anon_sym___thread] = ACTIONS(3143), + [anon_sym_const] = ACTIONS(3143), + [anon_sym_constexpr] = ACTIONS(3143), + [anon_sym_volatile] = ACTIONS(3143), + [anon_sym_restrict] = ACTIONS(3143), + [anon_sym___restrict__] = ACTIONS(3143), + [anon_sym__Atomic] = ACTIONS(3143), + [anon_sym__Noreturn] = ACTIONS(3143), + [anon_sym_noreturn] = ACTIONS(3143), + [anon_sym_mutable] = ACTIONS(3143), + [anon_sym_constinit] = ACTIONS(3143), + [anon_sym_consteval] = ACTIONS(3143), + [sym_primitive_type] = ACTIONS(3143), + [anon_sym_enum] = ACTIONS(3143), + [anon_sym_class] = ACTIONS(3143), + [anon_sym_struct] = ACTIONS(3143), + [anon_sym_union] = ACTIONS(3143), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3143), + [anon_sym_decltype] = ACTIONS(3143), + [anon_sym_virtual] = ACTIONS(3143), + [anon_sym_alignas] = ACTIONS(3143), + [anon_sym_explicit] = ACTIONS(3143), + [anon_sym_typename] = ACTIONS(3143), + [anon_sym_template] = ACTIONS(3143), + [anon_sym_operator] = ACTIONS(3143), + [anon_sym_friend] = ACTIONS(3143), + [anon_sym_public] = ACTIONS(3143), + [anon_sym_private] = ACTIONS(3143), + [anon_sym_protected] = ACTIONS(3143), + [anon_sym_using] = ACTIONS(3143), + [anon_sym_static_assert] = ACTIONS(3143), + [sym_semgrep_metavar] = ACTIONS(3145), + }, + [1988] = { [sym_identifier] = ACTIONS(5856), [aux_sym_preproc_def_token1] = ACTIONS(5856), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5858), [aux_sym_preproc_if_token1] = ACTIONS(5856), [aux_sym_preproc_if_token2] = ACTIONS(5856), [aux_sym_preproc_ifdef_token1] = ACTIONS(5856), @@ -298537,220 +287186,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5856), [anon_sym_using] = ACTIONS(5856), [anon_sym_static_assert] = ACTIONS(5856), + [sym_semgrep_metavar] = ACTIONS(5858), }, - [1990] = { - [sym_identifier] = ACTIONS(3491), - [aux_sym_preproc_def_token1] = ACTIONS(3491), - [aux_sym_preproc_if_token1] = ACTIONS(3491), - [aux_sym_preproc_if_token2] = ACTIONS(3491), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3491), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3491), - [aux_sym_preproc_else_token1] = ACTIONS(3491), - [aux_sym_preproc_elif_token1] = ACTIONS(3491), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3491), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3491), - [sym_preproc_directive] = ACTIONS(3491), - [anon_sym_LPAREN2] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(3493), - [anon_sym_STAR] = ACTIONS(3493), - [anon_sym_AMP_AMP] = ACTIONS(3493), - [anon_sym_AMP] = ACTIONS(3491), - [anon_sym___extension__] = ACTIONS(3491), - [anon_sym_typedef] = ACTIONS(3491), - [anon_sym_extern] = ACTIONS(3491), - [anon_sym___attribute__] = ACTIONS(3491), - [anon_sym_COLON_COLON] = ACTIONS(3493), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3493), - [anon_sym___declspec] = ACTIONS(3491), - [anon_sym___based] = ACTIONS(3491), - [anon_sym_signed] = ACTIONS(3491), - [anon_sym_unsigned] = ACTIONS(3491), - [anon_sym_long] = ACTIONS(3491), - [anon_sym_short] = ACTIONS(3491), - [anon_sym_LBRACK] = ACTIONS(3491), - [anon_sym_static] = ACTIONS(3491), - [anon_sym_register] = ACTIONS(3491), - [anon_sym_inline] = ACTIONS(3491), - [anon_sym___inline] = ACTIONS(3491), - [anon_sym___inline__] = ACTIONS(3491), - [anon_sym___forceinline] = ACTIONS(3491), - [anon_sym_thread_local] = ACTIONS(3491), - [anon_sym___thread] = ACTIONS(3491), - [anon_sym_const] = ACTIONS(3491), - [anon_sym_constexpr] = ACTIONS(3491), - [anon_sym_volatile] = ACTIONS(3491), - [anon_sym_restrict] = ACTIONS(3491), - [anon_sym___restrict__] = ACTIONS(3491), - [anon_sym__Atomic] = ACTIONS(3491), - [anon_sym__Noreturn] = ACTIONS(3491), - [anon_sym_noreturn] = ACTIONS(3491), - [anon_sym_mutable] = ACTIONS(3491), - [anon_sym_constinit] = ACTIONS(3491), - [anon_sym_consteval] = ACTIONS(3491), - [sym_primitive_type] = ACTIONS(3491), - [anon_sym_enum] = ACTIONS(3491), - [anon_sym_class] = ACTIONS(3491), - [anon_sym_struct] = ACTIONS(3491), - [anon_sym_union] = ACTIONS(3491), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3491), - [anon_sym_decltype] = ACTIONS(3491), - [anon_sym_virtual] = ACTIONS(3491), - [anon_sym_alignas] = ACTIONS(3491), - [anon_sym_explicit] = ACTIONS(3491), - [anon_sym_typename] = ACTIONS(3491), - [anon_sym_template] = ACTIONS(3491), - [anon_sym_operator] = ACTIONS(3491), - [anon_sym_friend] = ACTIONS(3491), - [anon_sym_public] = ACTIONS(3491), - [anon_sym_private] = ACTIONS(3491), - [anon_sym_protected] = ACTIONS(3491), - [anon_sym_using] = ACTIONS(3491), - [anon_sym_static_assert] = ACTIONS(3491), - }, - [1991] = { - [sym_identifier] = ACTIONS(5848), - [aux_sym_preproc_def_token1] = ACTIONS(5848), - [aux_sym_preproc_if_token1] = ACTIONS(5848), - [aux_sym_preproc_if_token2] = ACTIONS(5848), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5848), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5848), - [aux_sym_preproc_else_token1] = ACTIONS(5848), - [aux_sym_preproc_elif_token1] = ACTIONS(5848), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5848), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5848), - [sym_preproc_directive] = ACTIONS(5848), - [anon_sym_LPAREN2] = ACTIONS(5850), - [anon_sym_TILDE] = ACTIONS(5850), - [anon_sym_STAR] = ACTIONS(5850), - [anon_sym_AMP_AMP] = ACTIONS(5850), - [anon_sym_AMP] = ACTIONS(5848), - [anon_sym___extension__] = ACTIONS(5848), - [anon_sym_typedef] = ACTIONS(5848), - [anon_sym_extern] = ACTIONS(5848), - [anon_sym___attribute__] = ACTIONS(5848), - [anon_sym_COLON_COLON] = ACTIONS(5850), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5850), - [anon_sym___declspec] = ACTIONS(5848), - [anon_sym___based] = ACTIONS(5848), - [anon_sym_signed] = ACTIONS(5848), - [anon_sym_unsigned] = ACTIONS(5848), - [anon_sym_long] = ACTIONS(5848), - [anon_sym_short] = ACTIONS(5848), - [anon_sym_LBRACK] = ACTIONS(5848), - [anon_sym_static] = ACTIONS(5848), - [anon_sym_register] = ACTIONS(5848), - [anon_sym_inline] = ACTIONS(5848), - [anon_sym___inline] = ACTIONS(5848), - [anon_sym___inline__] = ACTIONS(5848), - [anon_sym___forceinline] = ACTIONS(5848), - [anon_sym_thread_local] = ACTIONS(5848), - [anon_sym___thread] = ACTIONS(5848), - [anon_sym_const] = ACTIONS(5848), - [anon_sym_constexpr] = ACTIONS(5848), - [anon_sym_volatile] = ACTIONS(5848), - [anon_sym_restrict] = ACTIONS(5848), - [anon_sym___restrict__] = ACTIONS(5848), - [anon_sym__Atomic] = ACTIONS(5848), - [anon_sym__Noreturn] = ACTIONS(5848), - [anon_sym_noreturn] = ACTIONS(5848), - [anon_sym_mutable] = ACTIONS(5848), - [anon_sym_constinit] = ACTIONS(5848), - [anon_sym_consteval] = ACTIONS(5848), - [sym_primitive_type] = ACTIONS(5848), - [anon_sym_enum] = ACTIONS(5848), - [anon_sym_class] = ACTIONS(5848), - [anon_sym_struct] = ACTIONS(5848), - [anon_sym_union] = ACTIONS(5848), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5848), - [anon_sym_decltype] = ACTIONS(5848), - [anon_sym_virtual] = ACTIONS(5848), - [anon_sym_alignas] = ACTIONS(5848), - [anon_sym_explicit] = ACTIONS(5848), - [anon_sym_typename] = ACTIONS(5848), - [anon_sym_template] = ACTIONS(5848), - [anon_sym_operator] = ACTIONS(5848), - [anon_sym_friend] = ACTIONS(5848), - [anon_sym_public] = ACTIONS(5848), - [anon_sym_private] = ACTIONS(5848), - [anon_sym_protected] = ACTIONS(5848), - [anon_sym_using] = ACTIONS(5848), - [anon_sym_static_assert] = ACTIONS(5848), - }, - [1992] = { - [sym_identifier] = ACTIONS(3511), - [aux_sym_preproc_def_token1] = ACTIONS(3511), - [aux_sym_preproc_if_token1] = ACTIONS(3511), - [aux_sym_preproc_if_token2] = ACTIONS(3511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3511), - [aux_sym_preproc_else_token1] = ACTIONS(3511), - [aux_sym_preproc_elif_token1] = ACTIONS(3511), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3511), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3511), - [sym_preproc_directive] = ACTIONS(3511), - [anon_sym_LPAREN2] = ACTIONS(3513), - [anon_sym_TILDE] = ACTIONS(3513), - [anon_sym_STAR] = ACTIONS(3513), - [anon_sym_AMP_AMP] = ACTIONS(3513), - [anon_sym_AMP] = ACTIONS(3511), - [anon_sym___extension__] = ACTIONS(3511), - [anon_sym_typedef] = ACTIONS(3511), - [anon_sym_extern] = ACTIONS(3511), - [anon_sym___attribute__] = ACTIONS(3511), - [anon_sym_COLON_COLON] = ACTIONS(3513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3513), - [anon_sym___declspec] = ACTIONS(3511), - [anon_sym___based] = ACTIONS(3511), - [anon_sym_signed] = ACTIONS(3511), - [anon_sym_unsigned] = ACTIONS(3511), - [anon_sym_long] = ACTIONS(3511), - [anon_sym_short] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3511), - [anon_sym_static] = ACTIONS(3511), - [anon_sym_register] = ACTIONS(3511), - [anon_sym_inline] = ACTIONS(3511), - [anon_sym___inline] = ACTIONS(3511), - [anon_sym___inline__] = ACTIONS(3511), - [anon_sym___forceinline] = ACTIONS(3511), - [anon_sym_thread_local] = ACTIONS(3511), - [anon_sym___thread] = ACTIONS(3511), - [anon_sym_const] = ACTIONS(3511), - [anon_sym_constexpr] = ACTIONS(3511), - [anon_sym_volatile] = ACTIONS(3511), - [anon_sym_restrict] = ACTIONS(3511), - [anon_sym___restrict__] = ACTIONS(3511), - [anon_sym__Atomic] = ACTIONS(3511), - [anon_sym__Noreturn] = ACTIONS(3511), - [anon_sym_noreturn] = ACTIONS(3511), - [anon_sym_mutable] = ACTIONS(3511), - [anon_sym_constinit] = ACTIONS(3511), - [anon_sym_consteval] = ACTIONS(3511), - [sym_primitive_type] = ACTIONS(3511), - [anon_sym_enum] = ACTIONS(3511), - [anon_sym_class] = ACTIONS(3511), - [anon_sym_struct] = ACTIONS(3511), - [anon_sym_union] = ACTIONS(3511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3511), - [anon_sym_decltype] = ACTIONS(3511), - [anon_sym_virtual] = ACTIONS(3511), - [anon_sym_alignas] = ACTIONS(3511), - [anon_sym_explicit] = ACTIONS(3511), - [anon_sym_typename] = ACTIONS(3511), - [anon_sym_template] = ACTIONS(3511), - [anon_sym_operator] = ACTIONS(3511), - [anon_sym_friend] = ACTIONS(3511), - [anon_sym_public] = ACTIONS(3511), - [anon_sym_private] = ACTIONS(3511), - [anon_sym_protected] = ACTIONS(3511), - [anon_sym_using] = ACTIONS(3511), - [anon_sym_static_assert] = ACTIONS(3511), - }, - [1993] = { + [1989] = { [sym_identifier] = ACTIONS(5860), [aux_sym_preproc_def_token1] = ACTIONS(5860), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5862), [aux_sym_preproc_if_token1] = ACTIONS(5860), [aux_sym_preproc_if_token2] = ACTIONS(5860), [aux_sym_preproc_ifdef_token1] = ACTIONS(5860), @@ -298817,10 +287258,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5860), [anon_sym_using] = ACTIONS(5860), [anon_sym_static_assert] = ACTIONS(5860), + [sym_semgrep_metavar] = ACTIONS(5862), }, - [1994] = { + [1990] = { [sym_identifier] = ACTIONS(5864), [aux_sym_preproc_def_token1] = ACTIONS(5864), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5866), [aux_sym_preproc_if_token1] = ACTIONS(5864), [aux_sym_preproc_if_token2] = ACTIONS(5864), [aux_sym_preproc_ifdef_token1] = ACTIONS(5864), @@ -298887,80 +287330,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5864), [anon_sym_using] = ACTIONS(5864), [anon_sym_static_assert] = ACTIONS(5864), + [sym_semgrep_metavar] = ACTIONS(5866), }, - [1995] = { - [sym_identifier] = ACTIONS(5868), - [aux_sym_preproc_def_token1] = ACTIONS(5868), - [aux_sym_preproc_if_token1] = ACTIONS(5868), - [aux_sym_preproc_if_token2] = ACTIONS(5868), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5868), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5868), - [aux_sym_preproc_else_token1] = ACTIONS(5868), - [aux_sym_preproc_elif_token1] = ACTIONS(5868), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5868), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5868), - [sym_preproc_directive] = ACTIONS(5868), - [anon_sym_LPAREN2] = ACTIONS(5870), - [anon_sym_TILDE] = ACTIONS(5870), - [anon_sym_STAR] = ACTIONS(5870), - [anon_sym_AMP_AMP] = ACTIONS(5870), - [anon_sym_AMP] = ACTIONS(5868), - [anon_sym___extension__] = ACTIONS(5868), - [anon_sym_typedef] = ACTIONS(5868), - [anon_sym_extern] = ACTIONS(5868), - [anon_sym___attribute__] = ACTIONS(5868), - [anon_sym_COLON_COLON] = ACTIONS(5870), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5870), - [anon_sym___declspec] = ACTIONS(5868), - [anon_sym___based] = ACTIONS(5868), - [anon_sym_signed] = ACTIONS(5868), - [anon_sym_unsigned] = ACTIONS(5868), - [anon_sym_long] = ACTIONS(5868), - [anon_sym_short] = ACTIONS(5868), - [anon_sym_LBRACK] = ACTIONS(5868), - [anon_sym_static] = ACTIONS(5868), - [anon_sym_register] = ACTIONS(5868), - [anon_sym_inline] = ACTIONS(5868), - [anon_sym___inline] = ACTIONS(5868), - [anon_sym___inline__] = ACTIONS(5868), - [anon_sym___forceinline] = ACTIONS(5868), - [anon_sym_thread_local] = ACTIONS(5868), - [anon_sym___thread] = ACTIONS(5868), - [anon_sym_const] = ACTIONS(5868), - [anon_sym_constexpr] = ACTIONS(5868), - [anon_sym_volatile] = ACTIONS(5868), - [anon_sym_restrict] = ACTIONS(5868), - [anon_sym___restrict__] = ACTIONS(5868), - [anon_sym__Atomic] = ACTIONS(5868), - [anon_sym__Noreturn] = ACTIONS(5868), - [anon_sym_noreturn] = ACTIONS(5868), - [anon_sym_mutable] = ACTIONS(5868), - [anon_sym_constinit] = ACTIONS(5868), - [anon_sym_consteval] = ACTIONS(5868), - [sym_primitive_type] = ACTIONS(5868), - [anon_sym_enum] = ACTIONS(5868), - [anon_sym_class] = ACTIONS(5868), - [anon_sym_struct] = ACTIONS(5868), - [anon_sym_union] = ACTIONS(5868), + [1991] = { + [sym_identifier] = ACTIONS(5864), + [aux_sym_preproc_def_token1] = ACTIONS(5864), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5866), + [aux_sym_preproc_if_token1] = ACTIONS(5864), + [aux_sym_preproc_if_token2] = ACTIONS(5864), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5864), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5864), + [aux_sym_preproc_else_token1] = ACTIONS(5864), + [aux_sym_preproc_elif_token1] = ACTIONS(5864), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5864), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5864), + [sym_preproc_directive] = ACTIONS(5864), + [anon_sym_LPAREN2] = ACTIONS(5866), + [anon_sym_TILDE] = ACTIONS(5866), + [anon_sym_STAR] = ACTIONS(5866), + [anon_sym_AMP_AMP] = ACTIONS(5866), + [anon_sym_AMP] = ACTIONS(5864), + [anon_sym___extension__] = ACTIONS(5864), + [anon_sym_typedef] = ACTIONS(5864), + [anon_sym_extern] = ACTIONS(5864), + [anon_sym___attribute__] = ACTIONS(5864), + [anon_sym_COLON_COLON] = ACTIONS(5866), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5866), + [anon_sym___declspec] = ACTIONS(5864), + [anon_sym___based] = ACTIONS(5864), + [anon_sym_signed] = ACTIONS(5864), + [anon_sym_unsigned] = ACTIONS(5864), + [anon_sym_long] = ACTIONS(5864), + [anon_sym_short] = ACTIONS(5864), + [anon_sym_LBRACK] = ACTIONS(5864), + [anon_sym_static] = ACTIONS(5864), + [anon_sym_register] = ACTIONS(5864), + [anon_sym_inline] = ACTIONS(5864), + [anon_sym___inline] = ACTIONS(5864), + [anon_sym___inline__] = ACTIONS(5864), + [anon_sym___forceinline] = ACTIONS(5864), + [anon_sym_thread_local] = ACTIONS(5864), + [anon_sym___thread] = ACTIONS(5864), + [anon_sym_const] = ACTIONS(5864), + [anon_sym_constexpr] = ACTIONS(5864), + [anon_sym_volatile] = ACTIONS(5864), + [anon_sym_restrict] = ACTIONS(5864), + [anon_sym___restrict__] = ACTIONS(5864), + [anon_sym__Atomic] = ACTIONS(5864), + [anon_sym__Noreturn] = ACTIONS(5864), + [anon_sym_noreturn] = ACTIONS(5864), + [anon_sym_mutable] = ACTIONS(5864), + [anon_sym_constinit] = ACTIONS(5864), + [anon_sym_consteval] = ACTIONS(5864), + [sym_primitive_type] = ACTIONS(5864), + [anon_sym_enum] = ACTIONS(5864), + [anon_sym_class] = ACTIONS(5864), + [anon_sym_struct] = ACTIONS(5864), + [anon_sym_union] = ACTIONS(5864), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5868), - [anon_sym_decltype] = ACTIONS(5868), - [anon_sym_virtual] = ACTIONS(5868), - [anon_sym_alignas] = ACTIONS(5868), - [anon_sym_explicit] = ACTIONS(5868), - [anon_sym_typename] = ACTIONS(5868), - [anon_sym_template] = ACTIONS(5868), - [anon_sym_operator] = ACTIONS(5868), - [anon_sym_friend] = ACTIONS(5868), - [anon_sym_public] = ACTIONS(5868), - [anon_sym_private] = ACTIONS(5868), - [anon_sym_protected] = ACTIONS(5868), - [anon_sym_using] = ACTIONS(5868), - [anon_sym_static_assert] = ACTIONS(5868), + [sym_auto] = ACTIONS(5864), + [anon_sym_decltype] = ACTIONS(5864), + [anon_sym_virtual] = ACTIONS(5864), + [anon_sym_alignas] = ACTIONS(5864), + [anon_sym_explicit] = ACTIONS(5864), + [anon_sym_typename] = ACTIONS(5864), + [anon_sym_template] = ACTIONS(5864), + [anon_sym_operator] = ACTIONS(5864), + [anon_sym_friend] = ACTIONS(5864), + [anon_sym_public] = ACTIONS(5864), + [anon_sym_private] = ACTIONS(5864), + [anon_sym_protected] = ACTIONS(5864), + [anon_sym_using] = ACTIONS(5864), + [anon_sym_static_assert] = ACTIONS(5864), + [sym_semgrep_metavar] = ACTIONS(5866), }, - [1996] = { + [1992] = { [sym_identifier] = ACTIONS(5868), [aux_sym_preproc_def_token1] = ACTIONS(5868), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5870), [aux_sym_preproc_if_token1] = ACTIONS(5868), [aux_sym_preproc_if_token2] = ACTIONS(5868), [aux_sym_preproc_ifdef_token1] = ACTIONS(5868), @@ -299027,10 +287474,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5868), [anon_sym_using] = ACTIONS(5868), [anon_sym_static_assert] = ACTIONS(5868), + [sym_semgrep_metavar] = ACTIONS(5870), }, - [1997] = { + [1993] = { [sym_identifier] = ACTIONS(5872), [aux_sym_preproc_def_token1] = ACTIONS(5872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5874), [aux_sym_preproc_if_token1] = ACTIONS(5872), [aux_sym_preproc_if_token2] = ACTIONS(5872), [aux_sym_preproc_ifdef_token1] = ACTIONS(5872), @@ -299097,220 +287546,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5872), [anon_sym_using] = ACTIONS(5872), [anon_sym_static_assert] = ACTIONS(5872), + [sym_semgrep_metavar] = ACTIONS(5874), }, - [1998] = { - [sym_identifier] = ACTIONS(3189), - [aux_sym_preproc_def_token1] = ACTIONS(3189), - [aux_sym_preproc_if_token1] = ACTIONS(3189), - [aux_sym_preproc_if_token2] = ACTIONS(3189), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3189), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3189), - [aux_sym_preproc_else_token1] = ACTIONS(3189), - [aux_sym_preproc_elif_token1] = ACTIONS(3189), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3189), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3189), - [sym_preproc_directive] = ACTIONS(3189), - [anon_sym_LPAREN2] = ACTIONS(3191), - [anon_sym_TILDE] = ACTIONS(3191), - [anon_sym_STAR] = ACTIONS(3191), - [anon_sym_AMP_AMP] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym___extension__] = ACTIONS(3189), - [anon_sym_typedef] = ACTIONS(3189), - [anon_sym_extern] = ACTIONS(3189), - [anon_sym___attribute__] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3191), - [anon_sym___declspec] = ACTIONS(3189), - [anon_sym___based] = ACTIONS(3189), - [anon_sym_signed] = ACTIONS(3189), - [anon_sym_unsigned] = ACTIONS(3189), - [anon_sym_long] = ACTIONS(3189), - [anon_sym_short] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_static] = ACTIONS(3189), - [anon_sym_register] = ACTIONS(3189), - [anon_sym_inline] = ACTIONS(3189), - [anon_sym___inline] = ACTIONS(3189), - [anon_sym___inline__] = ACTIONS(3189), - [anon_sym___forceinline] = ACTIONS(3189), - [anon_sym_thread_local] = ACTIONS(3189), - [anon_sym___thread] = ACTIONS(3189), - [anon_sym_const] = ACTIONS(3189), - [anon_sym_constexpr] = ACTIONS(3189), - [anon_sym_volatile] = ACTIONS(3189), - [anon_sym_restrict] = ACTIONS(3189), - [anon_sym___restrict__] = ACTIONS(3189), - [anon_sym__Atomic] = ACTIONS(3189), - [anon_sym__Noreturn] = ACTIONS(3189), - [anon_sym_noreturn] = ACTIONS(3189), - [anon_sym_mutable] = ACTIONS(3189), - [anon_sym_constinit] = ACTIONS(3189), - [anon_sym_consteval] = ACTIONS(3189), - [sym_primitive_type] = ACTIONS(3189), - [anon_sym_enum] = ACTIONS(3189), - [anon_sym_class] = ACTIONS(3189), - [anon_sym_struct] = ACTIONS(3189), - [anon_sym_union] = ACTIONS(3189), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3189), - [anon_sym_decltype] = ACTIONS(3189), - [anon_sym_virtual] = ACTIONS(3189), - [anon_sym_alignas] = ACTIONS(3189), - [anon_sym_explicit] = ACTIONS(3189), - [anon_sym_typename] = ACTIONS(3189), - [anon_sym_template] = ACTIONS(3189), - [anon_sym_operator] = ACTIONS(3189), - [anon_sym_friend] = ACTIONS(3189), - [anon_sym_public] = ACTIONS(3189), - [anon_sym_private] = ACTIONS(3189), - [anon_sym_protected] = ACTIONS(3189), - [anon_sym_using] = ACTIONS(3189), - [anon_sym_static_assert] = ACTIONS(3189), - }, - [1999] = { - [sym_identifier] = ACTIONS(3078), - [aux_sym_preproc_def_token1] = ACTIONS(3078), - [anon_sym_COMMA] = ACTIONS(3187), - [aux_sym_preproc_if_token1] = ACTIONS(3078), - [aux_sym_preproc_if_token2] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3078), - [aux_sym_preproc_else_token1] = ACTIONS(3078), - [aux_sym_preproc_elif_token1] = ACTIONS(3078), - [sym_preproc_directive] = ACTIONS(3078), - [anon_sym_LPAREN2] = ACTIONS(3080), - [anon_sym_TILDE] = ACTIONS(3080), - [anon_sym_STAR] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym_SEMI] = ACTIONS(3187), - [anon_sym___extension__] = ACTIONS(3078), - [anon_sym_typedef] = ACTIONS(3078), - [anon_sym_extern] = ACTIONS(3078), - [anon_sym___attribute__] = ACTIONS(5746), - [anon_sym_COLON_COLON] = ACTIONS(3080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3080), - [anon_sym___declspec] = ACTIONS(3078), - [anon_sym___based] = ACTIONS(3078), - [anon_sym_signed] = ACTIONS(3078), - [anon_sym_unsigned] = ACTIONS(3078), - [anon_sym_long] = ACTIONS(3078), - [anon_sym_short] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_static] = ACTIONS(3078), - [anon_sym_register] = ACTIONS(3078), - [anon_sym_inline] = ACTIONS(3078), - [anon_sym___inline] = ACTIONS(3078), - [anon_sym___inline__] = ACTIONS(3078), - [anon_sym___forceinline] = ACTIONS(3078), - [anon_sym_thread_local] = ACTIONS(3078), - [anon_sym___thread] = ACTIONS(3078), - [anon_sym_const] = ACTIONS(3078), - [anon_sym_constexpr] = ACTIONS(3078), - [anon_sym_volatile] = ACTIONS(3078), - [anon_sym_restrict] = ACTIONS(3078), - [anon_sym___restrict__] = ACTIONS(3078), - [anon_sym__Atomic] = ACTIONS(3078), - [anon_sym__Noreturn] = ACTIONS(3078), - [anon_sym_noreturn] = ACTIONS(3078), - [anon_sym_mutable] = ACTIONS(3078), - [anon_sym_constinit] = ACTIONS(3078), - [anon_sym_consteval] = ACTIONS(3078), - [sym_primitive_type] = ACTIONS(3078), - [anon_sym_enum] = ACTIONS(3078), - [anon_sym_class] = ACTIONS(3078), - [anon_sym_struct] = ACTIONS(3078), - [anon_sym_union] = ACTIONS(3078), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3078), - [anon_sym_decltype] = ACTIONS(3078), - [anon_sym_virtual] = ACTIONS(3078), - [anon_sym_alignas] = ACTIONS(3078), - [anon_sym_explicit] = ACTIONS(3078), - [anon_sym_typename] = ACTIONS(3078), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_operator] = ACTIONS(3078), - [anon_sym_friend] = ACTIONS(3078), - [anon_sym_public] = ACTIONS(3078), - [anon_sym_private] = ACTIONS(3078), - [anon_sym_protected] = ACTIONS(3078), - [anon_sym_using] = ACTIONS(3078), - [anon_sym_static_assert] = ACTIONS(3078), - }, - [2000] = { - [sym_identifier] = ACTIONS(5876), - [aux_sym_preproc_def_token1] = ACTIONS(5876), - [aux_sym_preproc_if_token1] = ACTIONS(5876), + [1994] = { + [sym_argument_list] = STATE(2623), + [sym_initializer_list] = STATE(2623), + [sym_decltype_auto] = STATE(2235), + [sym_new_declarator] = STATE(2421), + [ts_builtin_sym_end] = ACTIONS(5876), + [sym_identifier] = ACTIONS(5878), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5876), + [anon_sym_COMMA] = ACTIONS(5876), + [anon_sym_RPAREN] = ACTIONS(5876), [aux_sym_preproc_if_token2] = ACTIONS(5876), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5876), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5876), [aux_sym_preproc_else_token1] = ACTIONS(5876), - [aux_sym_preproc_elif_token1] = ACTIONS(5876), + [aux_sym_preproc_elif_token1] = ACTIONS(5878), [aux_sym_preproc_elifdef_token1] = ACTIONS(5876), [aux_sym_preproc_elifdef_token2] = ACTIONS(5876), - [sym_preproc_directive] = ACTIONS(5876), - [anon_sym_LPAREN2] = ACTIONS(5878), - [anon_sym_TILDE] = ACTIONS(5878), + [anon_sym_LPAREN2] = ACTIONS(5761), + [anon_sym_DASH] = ACTIONS(5878), + [anon_sym_PLUS] = ACTIONS(5878), [anon_sym_STAR] = ACTIONS(5878), - [anon_sym_AMP_AMP] = ACTIONS(5878), - [anon_sym_AMP] = ACTIONS(5876), - [anon_sym___extension__] = ACTIONS(5876), - [anon_sym_typedef] = ACTIONS(5876), - [anon_sym_extern] = ACTIONS(5876), - [anon_sym___attribute__] = ACTIONS(5876), - [anon_sym_COLON_COLON] = ACTIONS(5878), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5878), - [anon_sym___declspec] = ACTIONS(5876), - [anon_sym___based] = ACTIONS(5876), - [anon_sym_signed] = ACTIONS(5876), - [anon_sym_unsigned] = ACTIONS(5876), - [anon_sym_long] = ACTIONS(5876), - [anon_sym_short] = ACTIONS(5876), - [anon_sym_LBRACK] = ACTIONS(5876), - [anon_sym_static] = ACTIONS(5876), - [anon_sym_register] = ACTIONS(5876), - [anon_sym_inline] = ACTIONS(5876), - [anon_sym___inline] = ACTIONS(5876), - [anon_sym___inline__] = ACTIONS(5876), - [anon_sym___forceinline] = ACTIONS(5876), - [anon_sym_thread_local] = ACTIONS(5876), - [anon_sym___thread] = ACTIONS(5876), - [anon_sym_const] = ACTIONS(5876), - [anon_sym_constexpr] = ACTIONS(5876), - [anon_sym_volatile] = ACTIONS(5876), - [anon_sym_restrict] = ACTIONS(5876), - [anon_sym___restrict__] = ACTIONS(5876), - [anon_sym__Atomic] = ACTIONS(5876), - [anon_sym__Noreturn] = ACTIONS(5876), - [anon_sym_noreturn] = ACTIONS(5876), - [anon_sym_mutable] = ACTIONS(5876), - [anon_sym_constinit] = ACTIONS(5876), - [anon_sym_consteval] = ACTIONS(5876), - [sym_primitive_type] = ACTIONS(5876), - [anon_sym_enum] = ACTIONS(5876), - [anon_sym_class] = ACTIONS(5876), - [anon_sym_struct] = ACTIONS(5876), - [anon_sym_union] = ACTIONS(5876), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5876), - [anon_sym_decltype] = ACTIONS(5876), - [anon_sym_virtual] = ACTIONS(5876), - [anon_sym_alignas] = ACTIONS(5876), - [anon_sym_explicit] = ACTIONS(5876), - [anon_sym_typename] = ACTIONS(5876), - [anon_sym_template] = ACTIONS(5876), - [anon_sym_operator] = ACTIONS(5876), - [anon_sym_friend] = ACTIONS(5876), - [anon_sym_public] = ACTIONS(5876), - [anon_sym_private] = ACTIONS(5876), - [anon_sym_protected] = ACTIONS(5876), - [anon_sym_using] = ACTIONS(5876), - [anon_sym_static_assert] = ACTIONS(5876), + [anon_sym_SLASH] = ACTIONS(5878), + [anon_sym_PERCENT] = ACTIONS(5878), + [anon_sym_PIPE_PIPE] = ACTIONS(5876), + [anon_sym_AMP_AMP] = ACTIONS(5876), + [anon_sym_PIPE] = ACTIONS(5878), + [anon_sym_CARET] = ACTIONS(5878), + [anon_sym_AMP] = ACTIONS(5878), + [anon_sym_EQ_EQ] = ACTIONS(5876), + [anon_sym_BANG_EQ] = ACTIONS(5876), + [anon_sym_GT] = ACTIONS(5878), + [anon_sym_GT_EQ] = ACTIONS(5876), + [anon_sym_LT_EQ] = ACTIONS(5878), + [anon_sym_LT] = ACTIONS(5878), + [anon_sym_LT_LT] = ACTIONS(5878), + [anon_sym_GT_GT] = ACTIONS(5878), + [anon_sym_SEMI] = ACTIONS(5876), + [anon_sym___attribute__] = ACTIONS(5878), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_RBRACE] = ACTIONS(5876), + [anon_sym_LBRACK] = ACTIONS(5763), + [anon_sym_RBRACK] = ACTIONS(5876), + [anon_sym_EQ] = ACTIONS(5878), + [anon_sym_COLON] = ACTIONS(5876), + [anon_sym_QMARK] = ACTIONS(5876), + [anon_sym_STAR_EQ] = ACTIONS(5876), + [anon_sym_SLASH_EQ] = ACTIONS(5876), + [anon_sym_PERCENT_EQ] = ACTIONS(5876), + [anon_sym_PLUS_EQ] = ACTIONS(5876), + [anon_sym_DASH_EQ] = ACTIONS(5876), + [anon_sym_LT_LT_EQ] = ACTIONS(5876), + [anon_sym_GT_GT_EQ] = ACTIONS(5876), + [anon_sym_AMP_EQ] = ACTIONS(5876), + [anon_sym_CARET_EQ] = ACTIONS(5876), + [anon_sym_PIPE_EQ] = ACTIONS(5876), + [anon_sym_and_eq] = ACTIONS(5878), + [anon_sym_or_eq] = ACTIONS(5878), + [anon_sym_xor_eq] = ACTIONS(5878), + [anon_sym_LT_EQ_GT] = ACTIONS(5876), + [anon_sym_or] = ACTIONS(5878), + [anon_sym_and] = ACTIONS(5878), + [anon_sym_bitor] = ACTIONS(5878), + [anon_sym_xor] = ACTIONS(5878), + [anon_sym_bitand] = ACTIONS(5878), + [anon_sym_not_eq] = ACTIONS(5878), + [anon_sym_DASH_DASH] = ACTIONS(5876), + [anon_sym_PLUS_PLUS] = ACTIONS(5876), + [anon_sym_DOT] = ACTIONS(5878), + [anon_sym_DOT_STAR] = ACTIONS(5876), + [anon_sym_DASH_GT] = ACTIONS(5876), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5765), + [anon_sym_decltype] = ACTIONS(5767), }, - [2001] = { + [1995] = { [sym_identifier] = ACTIONS(5880), [aux_sym_preproc_def_token1] = ACTIONS(5880), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5882), [aux_sym_preproc_if_token1] = ACTIONS(5880), [aux_sym_preproc_if_token2] = ACTIONS(5880), [aux_sym_preproc_ifdef_token1] = ACTIONS(5880), @@ -299377,220 +287690,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5880), [anon_sym_using] = ACTIONS(5880), [anon_sym_static_assert] = ACTIONS(5880), + [sym_semgrep_metavar] = ACTIONS(5882), }, - [2002] = { - [sym_identifier] = ACTIONS(3227), - [aux_sym_preproc_def_token1] = ACTIONS(3227), - [aux_sym_preproc_if_token1] = ACTIONS(3227), - [aux_sym_preproc_if_token2] = ACTIONS(3227), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3227), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3227), - [aux_sym_preproc_else_token1] = ACTIONS(3227), - [aux_sym_preproc_elif_token1] = ACTIONS(3227), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3227), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3227), - [sym_preproc_directive] = ACTIONS(3227), - [anon_sym_LPAREN2] = ACTIONS(3229), - [anon_sym_TILDE] = ACTIONS(3229), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_AMP_AMP] = ACTIONS(3229), - [anon_sym_AMP] = ACTIONS(3227), - [anon_sym___extension__] = ACTIONS(3227), - [anon_sym_typedef] = ACTIONS(3227), - [anon_sym_extern] = ACTIONS(3227), - [anon_sym___attribute__] = ACTIONS(3227), - [anon_sym_COLON_COLON] = ACTIONS(3229), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3229), - [anon_sym___declspec] = ACTIONS(3227), - [anon_sym___based] = ACTIONS(3227), - [anon_sym_signed] = ACTIONS(3227), - [anon_sym_unsigned] = ACTIONS(3227), - [anon_sym_long] = ACTIONS(3227), - [anon_sym_short] = ACTIONS(3227), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_static] = ACTIONS(3227), - [anon_sym_register] = ACTIONS(3227), - [anon_sym_inline] = ACTIONS(3227), - [anon_sym___inline] = ACTIONS(3227), - [anon_sym___inline__] = ACTIONS(3227), - [anon_sym___forceinline] = ACTIONS(3227), - [anon_sym_thread_local] = ACTIONS(3227), - [anon_sym___thread] = ACTIONS(3227), - [anon_sym_const] = ACTIONS(3227), - [anon_sym_constexpr] = ACTIONS(3227), - [anon_sym_volatile] = ACTIONS(3227), - [anon_sym_restrict] = ACTIONS(3227), - [anon_sym___restrict__] = ACTIONS(3227), - [anon_sym__Atomic] = ACTIONS(3227), - [anon_sym__Noreturn] = ACTIONS(3227), - [anon_sym_noreturn] = ACTIONS(3227), - [anon_sym_mutable] = ACTIONS(3227), - [anon_sym_constinit] = ACTIONS(3227), - [anon_sym_consteval] = ACTIONS(3227), - [sym_primitive_type] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(3227), - [anon_sym_class] = ACTIONS(3227), - [anon_sym_struct] = ACTIONS(3227), - [anon_sym_union] = ACTIONS(3227), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3227), - [anon_sym_decltype] = ACTIONS(3227), - [anon_sym_virtual] = ACTIONS(3227), - [anon_sym_alignas] = ACTIONS(3227), - [anon_sym_explicit] = ACTIONS(3227), - [anon_sym_typename] = ACTIONS(3227), - [anon_sym_template] = ACTIONS(3227), - [anon_sym_operator] = ACTIONS(3227), - [anon_sym_friend] = ACTIONS(3227), - [anon_sym_public] = ACTIONS(3227), - [anon_sym_private] = ACTIONS(3227), - [anon_sym_protected] = ACTIONS(3227), - [anon_sym_using] = ACTIONS(3227), - [anon_sym_static_assert] = ACTIONS(3227), - }, - [2003] = { - [sym_string_literal] = STATE(2640), - [sym_template_argument_list] = STATE(5014), - [sym_raw_string_literal] = STATE(2640), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(4829), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(5764), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_RBRACE] = ACTIONS(4829), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_EQ] = ACTIONS(4861), - [anon_sym_COLON] = ACTIONS(2195), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4865), - [anon_sym_SLASH_EQ] = ACTIONS(4865), - [anon_sym_PERCENT_EQ] = ACTIONS(4865), - [anon_sym_PLUS_EQ] = ACTIONS(4865), - [anon_sym_DASH_EQ] = ACTIONS(4865), - [anon_sym_LT_LT_EQ] = ACTIONS(4865), - [anon_sym_GT_GT_EQ] = ACTIONS(4865), - [anon_sym_AMP_EQ] = ACTIONS(4865), - [anon_sym_CARET_EQ] = ACTIONS(4865), - [anon_sym_PIPE_EQ] = ACTIONS(4865), - [anon_sym_and_eq] = ACTIONS(4865), - [anon_sym_or_eq] = ACTIONS(4865), - [anon_sym_xor_eq] = ACTIONS(4865), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4829), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4829), - [anon_sym_not_eq] = ACTIONS(4829), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - }, - [2004] = { - [sym_identifier] = ACTIONS(3139), - [aux_sym_preproc_def_token1] = ACTIONS(3139), - [aux_sym_preproc_if_token1] = ACTIONS(3139), - [aux_sym_preproc_if_token2] = ACTIONS(3139), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3139), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3139), - [aux_sym_preproc_else_token1] = ACTIONS(3139), - [aux_sym_preproc_elif_token1] = ACTIONS(3139), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3139), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3139), - [sym_preproc_directive] = ACTIONS(3139), - [anon_sym_LPAREN2] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_AMP_AMP] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3139), - [anon_sym___extension__] = ACTIONS(3139), - [anon_sym_typedef] = ACTIONS(3139), - [anon_sym_extern] = ACTIONS(3139), - [anon_sym___attribute__] = ACTIONS(3139), - [anon_sym_COLON_COLON] = ACTIONS(3141), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3141), - [anon_sym___declspec] = ACTIONS(3139), - [anon_sym___based] = ACTIONS(3139), - [anon_sym_signed] = ACTIONS(3139), - [anon_sym_unsigned] = ACTIONS(3139), - [anon_sym_long] = ACTIONS(3139), - [anon_sym_short] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_static] = ACTIONS(3139), - [anon_sym_register] = ACTIONS(3139), - [anon_sym_inline] = ACTIONS(3139), - [anon_sym___inline] = ACTIONS(3139), - [anon_sym___inline__] = ACTIONS(3139), - [anon_sym___forceinline] = ACTIONS(3139), - [anon_sym_thread_local] = ACTIONS(3139), - [anon_sym___thread] = ACTIONS(3139), - [anon_sym_const] = ACTIONS(3139), - [anon_sym_constexpr] = ACTIONS(3139), - [anon_sym_volatile] = ACTIONS(3139), - [anon_sym_restrict] = ACTIONS(3139), - [anon_sym___restrict__] = ACTIONS(3139), - [anon_sym__Atomic] = ACTIONS(3139), - [anon_sym__Noreturn] = ACTIONS(3139), - [anon_sym_noreturn] = ACTIONS(3139), - [anon_sym_mutable] = ACTIONS(3139), - [anon_sym_constinit] = ACTIONS(3139), - [anon_sym_consteval] = ACTIONS(3139), - [sym_primitive_type] = ACTIONS(3139), - [anon_sym_enum] = ACTIONS(3139), - [anon_sym_class] = ACTIONS(3139), - [anon_sym_struct] = ACTIONS(3139), - [anon_sym_union] = ACTIONS(3139), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3139), - [anon_sym_decltype] = ACTIONS(3139), - [anon_sym_virtual] = ACTIONS(3139), - [anon_sym_alignas] = ACTIONS(3139), - [anon_sym_explicit] = ACTIONS(3139), - [anon_sym_typename] = ACTIONS(3139), - [anon_sym_template] = ACTIONS(3139), - [anon_sym_operator] = ACTIONS(3139), - [anon_sym_friend] = ACTIONS(3139), - [anon_sym_public] = ACTIONS(3139), - [anon_sym_private] = ACTIONS(3139), - [anon_sym_protected] = ACTIONS(3139), - [anon_sym_using] = ACTIONS(3139), - [anon_sym_static_assert] = ACTIONS(3139), - }, - [2005] = { + [1996] = { [sym_identifier] = ACTIONS(5884), [aux_sym_preproc_def_token1] = ACTIONS(5884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5886), [aux_sym_preproc_if_token1] = ACTIONS(5884), [aux_sym_preproc_if_token2] = ACTIONS(5884), [aux_sym_preproc_ifdef_token1] = ACTIONS(5884), @@ -299657,150 +287762,732 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5884), [anon_sym_using] = ACTIONS(5884), [anon_sym_static_assert] = ACTIONS(5884), + [sym_semgrep_metavar] = ACTIONS(5886), + }, + [1997] = { + [sym_identifier] = ACTIONS(5880), + [aux_sym_preproc_def_token1] = ACTIONS(5880), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5882), + [aux_sym_preproc_if_token1] = ACTIONS(5880), + [aux_sym_preproc_if_token2] = ACTIONS(5880), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5880), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5880), + [aux_sym_preproc_else_token1] = ACTIONS(5880), + [aux_sym_preproc_elif_token1] = ACTIONS(5880), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5880), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5880), + [sym_preproc_directive] = ACTIONS(5880), + [anon_sym_LPAREN2] = ACTIONS(5882), + [anon_sym_TILDE] = ACTIONS(5882), + [anon_sym_STAR] = ACTIONS(5882), + [anon_sym_AMP_AMP] = ACTIONS(5882), + [anon_sym_AMP] = ACTIONS(5880), + [anon_sym___extension__] = ACTIONS(5880), + [anon_sym_typedef] = ACTIONS(5880), + [anon_sym_extern] = ACTIONS(5880), + [anon_sym___attribute__] = ACTIONS(5880), + [anon_sym_COLON_COLON] = ACTIONS(5882), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5882), + [anon_sym___declspec] = ACTIONS(5880), + [anon_sym___based] = ACTIONS(5880), + [anon_sym_signed] = ACTIONS(5880), + [anon_sym_unsigned] = ACTIONS(5880), + [anon_sym_long] = ACTIONS(5880), + [anon_sym_short] = ACTIONS(5880), + [anon_sym_LBRACK] = ACTIONS(5880), + [anon_sym_static] = ACTIONS(5880), + [anon_sym_register] = ACTIONS(5880), + [anon_sym_inline] = ACTIONS(5880), + [anon_sym___inline] = ACTIONS(5880), + [anon_sym___inline__] = ACTIONS(5880), + [anon_sym___forceinline] = ACTIONS(5880), + [anon_sym_thread_local] = ACTIONS(5880), + [anon_sym___thread] = ACTIONS(5880), + [anon_sym_const] = ACTIONS(5880), + [anon_sym_constexpr] = ACTIONS(5880), + [anon_sym_volatile] = ACTIONS(5880), + [anon_sym_restrict] = ACTIONS(5880), + [anon_sym___restrict__] = ACTIONS(5880), + [anon_sym__Atomic] = ACTIONS(5880), + [anon_sym__Noreturn] = ACTIONS(5880), + [anon_sym_noreturn] = ACTIONS(5880), + [anon_sym_mutable] = ACTIONS(5880), + [anon_sym_constinit] = ACTIONS(5880), + [anon_sym_consteval] = ACTIONS(5880), + [sym_primitive_type] = ACTIONS(5880), + [anon_sym_enum] = ACTIONS(5880), + [anon_sym_class] = ACTIONS(5880), + [anon_sym_struct] = ACTIONS(5880), + [anon_sym_union] = ACTIONS(5880), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5880), + [anon_sym_decltype] = ACTIONS(5880), + [anon_sym_virtual] = ACTIONS(5880), + [anon_sym_alignas] = ACTIONS(5880), + [anon_sym_explicit] = ACTIONS(5880), + [anon_sym_typename] = ACTIONS(5880), + [anon_sym_template] = ACTIONS(5880), + [anon_sym_operator] = ACTIONS(5880), + [anon_sym_friend] = ACTIONS(5880), + [anon_sym_public] = ACTIONS(5880), + [anon_sym_private] = ACTIONS(5880), + [anon_sym_protected] = ACTIONS(5880), + [anon_sym_using] = ACTIONS(5880), + [anon_sym_static_assert] = ACTIONS(5880), + [sym_semgrep_metavar] = ACTIONS(5882), + }, + [1998] = { + [sym_declaration_modifiers] = STATE(4979), + [sym_attribute_specifier] = STATE(4535), + [sym_attribute_declaration] = STATE(4535), + [sym_ms_declspec_modifier] = STATE(4535), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7328), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4535), + [sym_type_qualifier] = STATE(4535), + [sym_decltype] = STATE(9605), + [sym_virtual] = STATE(4535), + [sym_alignas_specifier] = STATE(4535), + [sym_explicit_function_specifier] = STATE(4979), + [sym_operator_cast] = STATE(7724), + [sym_constructor_specifiers] = STATE(4069), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(9605), + [sym_template_function] = STATE(7305), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6514), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_operator_cast_identifier] = STATE(7724), + [sym_operator_name] = STATE(7305), + [aux_sym_operator_cast_definition_repeat1] = STATE(4069), + [sym_identifier] = ACTIONS(5741), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(5743), + [anon_sym_extern] = ACTIONS(5745), + [anon_sym___attribute__] = ACTIONS(5747), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5749), + [anon_sym___declspec] = ACTIONS(5751), + [anon_sym___based] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(5745), + [anon_sym_register] = ACTIONS(5745), + [anon_sym_inline] = ACTIONS(5745), + [anon_sym___inline] = ACTIONS(5745), + [anon_sym___inline__] = ACTIONS(5745), + [anon_sym___forceinline] = ACTIONS(5745), + [anon_sym_thread_local] = ACTIONS(5745), + [anon_sym___thread] = ACTIONS(5745), + [anon_sym_const] = ACTIONS(5743), + [anon_sym_constexpr] = ACTIONS(5743), + [anon_sym_volatile] = ACTIONS(5743), + [anon_sym_restrict] = ACTIONS(5743), + [anon_sym___restrict__] = ACTIONS(5743), + [anon_sym__Atomic] = ACTIONS(5743), + [anon_sym__Noreturn] = ACTIONS(5743), + [anon_sym_noreturn] = ACTIONS(5743), + [anon_sym_mutable] = ACTIONS(5743), + [anon_sym_constinit] = ACTIONS(5743), + [anon_sym_consteval] = ACTIONS(5743), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_virtual] = ACTIONS(5753), + [anon_sym_alignas] = ACTIONS(5755), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_operator] = ACTIONS(135), + }, + [1999] = { + [sym_identifier] = ACTIONS(3461), + [aux_sym_preproc_def_token1] = ACTIONS(3461), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3463), + [aux_sym_preproc_if_token1] = ACTIONS(3461), + [aux_sym_preproc_if_token2] = ACTIONS(3461), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3461), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3461), + [aux_sym_preproc_else_token1] = ACTIONS(3461), + [aux_sym_preproc_elif_token1] = ACTIONS(3461), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3461), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3461), + [sym_preproc_directive] = ACTIONS(3461), + [anon_sym_LPAREN2] = ACTIONS(3463), + [anon_sym_TILDE] = ACTIONS(3463), + [anon_sym_STAR] = ACTIONS(3463), + [anon_sym_AMP_AMP] = ACTIONS(3463), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym___extension__] = ACTIONS(3461), + [anon_sym_typedef] = ACTIONS(3461), + [anon_sym_extern] = ACTIONS(3461), + [anon_sym___attribute__] = ACTIONS(3461), + [anon_sym_COLON_COLON] = ACTIONS(3463), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3463), + [anon_sym___declspec] = ACTIONS(3461), + [anon_sym___based] = ACTIONS(3461), + [anon_sym_signed] = ACTIONS(3461), + [anon_sym_unsigned] = ACTIONS(3461), + [anon_sym_long] = ACTIONS(3461), + [anon_sym_short] = ACTIONS(3461), + [anon_sym_LBRACK] = ACTIONS(3461), + [anon_sym_static] = ACTIONS(3461), + [anon_sym_register] = ACTIONS(3461), + [anon_sym_inline] = ACTIONS(3461), + [anon_sym___inline] = ACTIONS(3461), + [anon_sym___inline__] = ACTIONS(3461), + [anon_sym___forceinline] = ACTIONS(3461), + [anon_sym_thread_local] = ACTIONS(3461), + [anon_sym___thread] = ACTIONS(3461), + [anon_sym_const] = ACTIONS(3461), + [anon_sym_constexpr] = ACTIONS(3461), + [anon_sym_volatile] = ACTIONS(3461), + [anon_sym_restrict] = ACTIONS(3461), + [anon_sym___restrict__] = ACTIONS(3461), + [anon_sym__Atomic] = ACTIONS(3461), + [anon_sym__Noreturn] = ACTIONS(3461), + [anon_sym_noreturn] = ACTIONS(3461), + [anon_sym_mutable] = ACTIONS(3461), + [anon_sym_constinit] = ACTIONS(3461), + [anon_sym_consteval] = ACTIONS(3461), + [sym_primitive_type] = ACTIONS(3461), + [anon_sym_enum] = ACTIONS(3461), + [anon_sym_class] = ACTIONS(3461), + [anon_sym_struct] = ACTIONS(3461), + [anon_sym_union] = ACTIONS(3461), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3461), + [anon_sym_decltype] = ACTIONS(3461), + [anon_sym_virtual] = ACTIONS(3461), + [anon_sym_alignas] = ACTIONS(3461), + [anon_sym_explicit] = ACTIONS(3461), + [anon_sym_typename] = ACTIONS(3461), + [anon_sym_template] = ACTIONS(3461), + [anon_sym_operator] = ACTIONS(3461), + [anon_sym_friend] = ACTIONS(3461), + [anon_sym_public] = ACTIONS(3461), + [anon_sym_private] = ACTIONS(3461), + [anon_sym_protected] = ACTIONS(3461), + [anon_sym_using] = ACTIONS(3461), + [anon_sym_static_assert] = ACTIONS(3461), + [sym_semgrep_metavar] = ACTIONS(3463), + }, + [2000] = { + [sym_identifier] = ACTIONS(3668), + [aux_sym_preproc_def_token1] = ACTIONS(3668), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3670), + [aux_sym_preproc_if_token1] = ACTIONS(3668), + [aux_sym_preproc_if_token2] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [aux_sym_preproc_else_token1] = ACTIONS(3668), + [aux_sym_preproc_elif_token1] = ACTIONS(3668), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3668), + [anon_sym_LPAREN2] = ACTIONS(3670), + [anon_sym_TILDE] = ACTIONS(3670), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_AMP_AMP] = ACTIONS(3670), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym___extension__] = ACTIONS(3668), + [anon_sym_typedef] = ACTIONS(3668), + [anon_sym_extern] = ACTIONS(3668), + [anon_sym___attribute__] = ACTIONS(3668), + [anon_sym_COLON_COLON] = ACTIONS(3670), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3670), + [anon_sym___declspec] = ACTIONS(3668), + [anon_sym___based] = ACTIONS(3668), + [anon_sym_signed] = ACTIONS(3668), + [anon_sym_unsigned] = ACTIONS(3668), + [anon_sym_long] = ACTIONS(3668), + [anon_sym_short] = ACTIONS(3668), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_static] = ACTIONS(3668), + [anon_sym_register] = ACTIONS(3668), + [anon_sym_inline] = ACTIONS(3668), + [anon_sym___inline] = ACTIONS(3668), + [anon_sym___inline__] = ACTIONS(3668), + [anon_sym___forceinline] = ACTIONS(3668), + [anon_sym_thread_local] = ACTIONS(3668), + [anon_sym___thread] = ACTIONS(3668), + [anon_sym_const] = ACTIONS(3668), + [anon_sym_constexpr] = ACTIONS(3668), + [anon_sym_volatile] = ACTIONS(3668), + [anon_sym_restrict] = ACTIONS(3668), + [anon_sym___restrict__] = ACTIONS(3668), + [anon_sym__Atomic] = ACTIONS(3668), + [anon_sym__Noreturn] = ACTIONS(3668), + [anon_sym_noreturn] = ACTIONS(3668), + [anon_sym_mutable] = ACTIONS(3668), + [anon_sym_constinit] = ACTIONS(3668), + [anon_sym_consteval] = ACTIONS(3668), + [sym_primitive_type] = ACTIONS(3668), + [anon_sym_enum] = ACTIONS(3668), + [anon_sym_class] = ACTIONS(3668), + [anon_sym_struct] = ACTIONS(3668), + [anon_sym_union] = ACTIONS(3668), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3668), + [anon_sym_decltype] = ACTIONS(3668), + [anon_sym_virtual] = ACTIONS(3668), + [anon_sym_alignas] = ACTIONS(3668), + [anon_sym_explicit] = ACTIONS(3668), + [anon_sym_typename] = ACTIONS(3668), + [anon_sym_template] = ACTIONS(3668), + [anon_sym_operator] = ACTIONS(3668), + [anon_sym_friend] = ACTIONS(3668), + [anon_sym_public] = ACTIONS(3668), + [anon_sym_private] = ACTIONS(3668), + [anon_sym_protected] = ACTIONS(3668), + [anon_sym_using] = ACTIONS(3668), + [anon_sym_static_assert] = ACTIONS(3668), + [sym_semgrep_metavar] = ACTIONS(3670), + }, + [2001] = { + [sym_identifier] = ACTIONS(3672), + [aux_sym_preproc_def_token1] = ACTIONS(3672), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3674), + [aux_sym_preproc_if_token1] = ACTIONS(3672), + [aux_sym_preproc_if_token2] = ACTIONS(3672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3672), + [aux_sym_preproc_else_token1] = ACTIONS(3672), + [aux_sym_preproc_elif_token1] = ACTIONS(3672), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3672), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3672), + [sym_preproc_directive] = ACTIONS(3672), + [anon_sym_LPAREN2] = ACTIONS(3674), + [anon_sym_TILDE] = ACTIONS(3674), + [anon_sym_STAR] = ACTIONS(3674), + [anon_sym_AMP_AMP] = ACTIONS(3674), + [anon_sym_AMP] = ACTIONS(3672), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3672), + [anon_sym_extern] = ACTIONS(3672), + [anon_sym___attribute__] = ACTIONS(3672), + [anon_sym_COLON_COLON] = ACTIONS(3674), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3674), + [anon_sym___declspec] = ACTIONS(3672), + [anon_sym___based] = ACTIONS(3672), + [anon_sym_signed] = ACTIONS(3672), + [anon_sym_unsigned] = ACTIONS(3672), + [anon_sym_long] = ACTIONS(3672), + [anon_sym_short] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_static] = ACTIONS(3672), + [anon_sym_register] = ACTIONS(3672), + [anon_sym_inline] = ACTIONS(3672), + [anon_sym___inline] = ACTIONS(3672), + [anon_sym___inline__] = ACTIONS(3672), + [anon_sym___forceinline] = ACTIONS(3672), + [anon_sym_thread_local] = ACTIONS(3672), + [anon_sym___thread] = ACTIONS(3672), + [anon_sym_const] = ACTIONS(3672), + [anon_sym_constexpr] = ACTIONS(3672), + [anon_sym_volatile] = ACTIONS(3672), + [anon_sym_restrict] = ACTIONS(3672), + [anon_sym___restrict__] = ACTIONS(3672), + [anon_sym__Atomic] = ACTIONS(3672), + [anon_sym__Noreturn] = ACTIONS(3672), + [anon_sym_noreturn] = ACTIONS(3672), + [anon_sym_mutable] = ACTIONS(3672), + [anon_sym_constinit] = ACTIONS(3672), + [anon_sym_consteval] = ACTIONS(3672), + [sym_primitive_type] = ACTIONS(3672), + [anon_sym_enum] = ACTIONS(3672), + [anon_sym_class] = ACTIONS(3672), + [anon_sym_struct] = ACTIONS(3672), + [anon_sym_union] = ACTIONS(3672), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3672), + [anon_sym_decltype] = ACTIONS(3672), + [anon_sym_virtual] = ACTIONS(3672), + [anon_sym_alignas] = ACTIONS(3672), + [anon_sym_explicit] = ACTIONS(3672), + [anon_sym_typename] = ACTIONS(3672), + [anon_sym_template] = ACTIONS(3672), + [anon_sym_operator] = ACTIONS(3672), + [anon_sym_friend] = ACTIONS(3672), + [anon_sym_public] = ACTIONS(3672), + [anon_sym_private] = ACTIONS(3672), + [anon_sym_protected] = ACTIONS(3672), + [anon_sym_using] = ACTIONS(3672), + [anon_sym_static_assert] = ACTIONS(3672), + [sym_semgrep_metavar] = ACTIONS(3674), + }, + [2002] = { + [sym_identifier] = ACTIONS(5888), + [aux_sym_preproc_def_token1] = ACTIONS(5888), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5890), + [aux_sym_preproc_if_token1] = ACTIONS(5888), + [aux_sym_preproc_if_token2] = ACTIONS(5888), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5888), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5888), + [aux_sym_preproc_else_token1] = ACTIONS(5888), + [aux_sym_preproc_elif_token1] = ACTIONS(5888), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5888), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5888), + [sym_preproc_directive] = ACTIONS(5888), + [anon_sym_LPAREN2] = ACTIONS(5890), + [anon_sym_TILDE] = ACTIONS(5890), + [anon_sym_STAR] = ACTIONS(5890), + [anon_sym_AMP_AMP] = ACTIONS(5890), + [anon_sym_AMP] = ACTIONS(5888), + [anon_sym___extension__] = ACTIONS(5888), + [anon_sym_typedef] = ACTIONS(5888), + [anon_sym_extern] = ACTIONS(5888), + [anon_sym___attribute__] = ACTIONS(5888), + [anon_sym_COLON_COLON] = ACTIONS(5890), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5890), + [anon_sym___declspec] = ACTIONS(5888), + [anon_sym___based] = ACTIONS(5888), + [anon_sym_signed] = ACTIONS(5888), + [anon_sym_unsigned] = ACTIONS(5888), + [anon_sym_long] = ACTIONS(5888), + [anon_sym_short] = ACTIONS(5888), + [anon_sym_LBRACK] = ACTIONS(5888), + [anon_sym_static] = ACTIONS(5888), + [anon_sym_register] = ACTIONS(5888), + [anon_sym_inline] = ACTIONS(5888), + [anon_sym___inline] = ACTIONS(5888), + [anon_sym___inline__] = ACTIONS(5888), + [anon_sym___forceinline] = ACTIONS(5888), + [anon_sym_thread_local] = ACTIONS(5888), + [anon_sym___thread] = ACTIONS(5888), + [anon_sym_const] = ACTIONS(5888), + [anon_sym_constexpr] = ACTIONS(5888), + [anon_sym_volatile] = ACTIONS(5888), + [anon_sym_restrict] = ACTIONS(5888), + [anon_sym___restrict__] = ACTIONS(5888), + [anon_sym__Atomic] = ACTIONS(5888), + [anon_sym__Noreturn] = ACTIONS(5888), + [anon_sym_noreturn] = ACTIONS(5888), + [anon_sym_mutable] = ACTIONS(5888), + [anon_sym_constinit] = ACTIONS(5888), + [anon_sym_consteval] = ACTIONS(5888), + [sym_primitive_type] = ACTIONS(5888), + [anon_sym_enum] = ACTIONS(5888), + [anon_sym_class] = ACTIONS(5888), + [anon_sym_struct] = ACTIONS(5888), + [anon_sym_union] = ACTIONS(5888), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5888), + [anon_sym_decltype] = ACTIONS(5888), + [anon_sym_virtual] = ACTIONS(5888), + [anon_sym_alignas] = ACTIONS(5888), + [anon_sym_explicit] = ACTIONS(5888), + [anon_sym_typename] = ACTIONS(5888), + [anon_sym_template] = ACTIONS(5888), + [anon_sym_operator] = ACTIONS(5888), + [anon_sym_friend] = ACTIONS(5888), + [anon_sym_public] = ACTIONS(5888), + [anon_sym_private] = ACTIONS(5888), + [anon_sym_protected] = ACTIONS(5888), + [anon_sym_using] = ACTIONS(5888), + [anon_sym_static_assert] = ACTIONS(5888), + [sym_semgrep_metavar] = ACTIONS(5890), + }, + [2003] = { + [sym_identifier] = ACTIONS(3465), + [aux_sym_preproc_def_token1] = ACTIONS(3465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3467), + [aux_sym_preproc_if_token1] = ACTIONS(3465), + [aux_sym_preproc_if_token2] = ACTIONS(3465), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3465), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3465), + [aux_sym_preproc_else_token1] = ACTIONS(3465), + [aux_sym_preproc_elif_token1] = ACTIONS(3465), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3465), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3465), + [sym_preproc_directive] = ACTIONS(3465), + [anon_sym_LPAREN2] = ACTIONS(3467), + [anon_sym_TILDE] = ACTIONS(3467), + [anon_sym_STAR] = ACTIONS(3467), + [anon_sym_AMP_AMP] = ACTIONS(3467), + [anon_sym_AMP] = ACTIONS(3465), + [anon_sym___extension__] = ACTIONS(3465), + [anon_sym_typedef] = ACTIONS(3465), + [anon_sym_extern] = ACTIONS(3465), + [anon_sym___attribute__] = ACTIONS(3465), + [anon_sym_COLON_COLON] = ACTIONS(3467), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3467), + [anon_sym___declspec] = ACTIONS(3465), + [anon_sym___based] = ACTIONS(3465), + [anon_sym_signed] = ACTIONS(3465), + [anon_sym_unsigned] = ACTIONS(3465), + [anon_sym_long] = ACTIONS(3465), + [anon_sym_short] = ACTIONS(3465), + [anon_sym_LBRACK] = ACTIONS(3465), + [anon_sym_static] = ACTIONS(3465), + [anon_sym_register] = ACTIONS(3465), + [anon_sym_inline] = ACTIONS(3465), + [anon_sym___inline] = ACTIONS(3465), + [anon_sym___inline__] = ACTIONS(3465), + [anon_sym___forceinline] = ACTIONS(3465), + [anon_sym_thread_local] = ACTIONS(3465), + [anon_sym___thread] = ACTIONS(3465), + [anon_sym_const] = ACTIONS(3465), + [anon_sym_constexpr] = ACTIONS(3465), + [anon_sym_volatile] = ACTIONS(3465), + [anon_sym_restrict] = ACTIONS(3465), + [anon_sym___restrict__] = ACTIONS(3465), + [anon_sym__Atomic] = ACTIONS(3465), + [anon_sym__Noreturn] = ACTIONS(3465), + [anon_sym_noreturn] = ACTIONS(3465), + [anon_sym_mutable] = ACTIONS(3465), + [anon_sym_constinit] = ACTIONS(3465), + [anon_sym_consteval] = ACTIONS(3465), + [sym_primitive_type] = ACTIONS(3465), + [anon_sym_enum] = ACTIONS(3465), + [anon_sym_class] = ACTIONS(3465), + [anon_sym_struct] = ACTIONS(3465), + [anon_sym_union] = ACTIONS(3465), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3465), + [anon_sym_decltype] = ACTIONS(3465), + [anon_sym_virtual] = ACTIONS(3465), + [anon_sym_alignas] = ACTIONS(3465), + [anon_sym_explicit] = ACTIONS(3465), + [anon_sym_typename] = ACTIONS(3465), + [anon_sym_template] = ACTIONS(3465), + [anon_sym_operator] = ACTIONS(3465), + [anon_sym_friend] = ACTIONS(3465), + [anon_sym_public] = ACTIONS(3465), + [anon_sym_private] = ACTIONS(3465), + [anon_sym_protected] = ACTIONS(3465), + [anon_sym_using] = ACTIONS(3465), + [anon_sym_static_assert] = ACTIONS(3465), + [sym_semgrep_metavar] = ACTIONS(3467), + }, + [2004] = { + [sym_identifier] = ACTIONS(3438), + [aux_sym_preproc_def_token1] = ACTIONS(3438), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3440), + [aux_sym_preproc_if_token1] = ACTIONS(3438), + [aux_sym_preproc_if_token2] = ACTIONS(3438), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3438), + [aux_sym_preproc_else_token1] = ACTIONS(3438), + [aux_sym_preproc_elif_token1] = ACTIONS(3438), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3438), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3438), + [sym_preproc_directive] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3440), + [anon_sym_STAR] = ACTIONS(3440), + [anon_sym_AMP_AMP] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym___extension__] = ACTIONS(3438), + [anon_sym_typedef] = ACTIONS(3438), + [anon_sym_extern] = ACTIONS(3438), + [anon_sym___attribute__] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3440), + [anon_sym___declspec] = ACTIONS(3438), + [anon_sym___based] = ACTIONS(3438), + [anon_sym_signed] = ACTIONS(3438), + [anon_sym_unsigned] = ACTIONS(3438), + [anon_sym_long] = ACTIONS(3438), + [anon_sym_short] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_static] = ACTIONS(3438), + [anon_sym_register] = ACTIONS(3438), + [anon_sym_inline] = ACTIONS(3438), + [anon_sym___inline] = ACTIONS(3438), + [anon_sym___inline__] = ACTIONS(3438), + [anon_sym___forceinline] = ACTIONS(3438), + [anon_sym_thread_local] = ACTIONS(3438), + [anon_sym___thread] = ACTIONS(3438), + [anon_sym_const] = ACTIONS(3438), + [anon_sym_constexpr] = ACTIONS(3438), + [anon_sym_volatile] = ACTIONS(3438), + [anon_sym_restrict] = ACTIONS(3438), + [anon_sym___restrict__] = ACTIONS(3438), + [anon_sym__Atomic] = ACTIONS(3438), + [anon_sym__Noreturn] = ACTIONS(3438), + [anon_sym_noreturn] = ACTIONS(3438), + [anon_sym_mutable] = ACTIONS(3438), + [anon_sym_constinit] = ACTIONS(3438), + [anon_sym_consteval] = ACTIONS(3438), + [sym_primitive_type] = ACTIONS(3438), + [anon_sym_enum] = ACTIONS(3438), + [anon_sym_class] = ACTIONS(3438), + [anon_sym_struct] = ACTIONS(3438), + [anon_sym_union] = ACTIONS(3438), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3438), + [anon_sym_decltype] = ACTIONS(3438), + [anon_sym_virtual] = ACTIONS(3438), + [anon_sym_alignas] = ACTIONS(3438), + [anon_sym_explicit] = ACTIONS(3438), + [anon_sym_typename] = ACTIONS(3438), + [anon_sym_template] = ACTIONS(3438), + [anon_sym_operator] = ACTIONS(3438), + [anon_sym_friend] = ACTIONS(3438), + [anon_sym_public] = ACTIONS(3438), + [anon_sym_private] = ACTIONS(3438), + [anon_sym_protected] = ACTIONS(3438), + [anon_sym_using] = ACTIONS(3438), + [anon_sym_static_assert] = ACTIONS(3438), + [sym_semgrep_metavar] = ACTIONS(3440), + }, + [2005] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5404), + [anon_sym_COMMA] = ACTIONS(5404), + [anon_sym_RPAREN] = ACTIONS(5404), + [anon_sym_LPAREN2] = ACTIONS(5404), + [anon_sym_DASH] = ACTIONS(5402), + [anon_sym_PLUS] = ACTIONS(5402), + [anon_sym_STAR] = ACTIONS(5402), + [anon_sym_SLASH] = ACTIONS(5402), + [anon_sym_PERCENT] = ACTIONS(5402), + [anon_sym_PIPE_PIPE] = ACTIONS(5404), + [anon_sym_AMP_AMP] = ACTIONS(5404), + [anon_sym_PIPE] = ACTIONS(5402), + [anon_sym_CARET] = ACTIONS(5402), + [anon_sym_AMP] = ACTIONS(5402), + [anon_sym_EQ_EQ] = ACTIONS(5404), + [anon_sym_BANG_EQ] = ACTIONS(5404), + [anon_sym_GT] = ACTIONS(5402), + [anon_sym_GT_EQ] = ACTIONS(5404), + [anon_sym_LT_EQ] = ACTIONS(5402), + [anon_sym_LT] = ACTIONS(5402), + [anon_sym_LT_LT] = ACTIONS(5402), + [anon_sym_GT_GT] = ACTIONS(5402), + [anon_sym___extension__] = ACTIONS(5404), + [anon_sym_COLON_COLON] = ACTIONS(5404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5404), + [anon_sym_LBRACE] = ACTIONS(5404), + [anon_sym_LBRACK] = ACTIONS(5402), + [anon_sym_EQ] = ACTIONS(5402), + [anon_sym_const] = ACTIONS(5402), + [anon_sym_constexpr] = ACTIONS(5404), + [anon_sym_volatile] = ACTIONS(5404), + [anon_sym_restrict] = ACTIONS(5404), + [anon_sym___restrict__] = ACTIONS(5404), + [anon_sym__Atomic] = ACTIONS(5404), + [anon_sym__Noreturn] = ACTIONS(5404), + [anon_sym_noreturn] = ACTIONS(5404), + [anon_sym_mutable] = ACTIONS(5404), + [anon_sym_constinit] = ACTIONS(5404), + [anon_sym_consteval] = ACTIONS(5404), + [anon_sym_QMARK] = ACTIONS(5404), + [anon_sym_STAR_EQ] = ACTIONS(5404), + [anon_sym_SLASH_EQ] = ACTIONS(5404), + [anon_sym_PERCENT_EQ] = ACTIONS(5404), + [anon_sym_PLUS_EQ] = ACTIONS(5404), + [anon_sym_DASH_EQ] = ACTIONS(5404), + [anon_sym_LT_LT_EQ] = ACTIONS(5404), + [anon_sym_GT_GT_EQ] = ACTIONS(5404), + [anon_sym_AMP_EQ] = ACTIONS(5404), + [anon_sym_CARET_EQ] = ACTIONS(5404), + [anon_sym_PIPE_EQ] = ACTIONS(5404), + [anon_sym_and_eq] = ACTIONS(5404), + [anon_sym_or_eq] = ACTIONS(5404), + [anon_sym_xor_eq] = ACTIONS(5404), + [anon_sym_LT_EQ_GT] = ACTIONS(5404), + [anon_sym_or] = ACTIONS(5402), + [anon_sym_and] = ACTIONS(5402), + [anon_sym_bitor] = ACTIONS(5404), + [anon_sym_xor] = ACTIONS(5402), + [anon_sym_bitand] = ACTIONS(5404), + [anon_sym_not_eq] = ACTIONS(5404), + [anon_sym_DASH_DASH] = ACTIONS(5404), + [anon_sym_PLUS_PLUS] = ACTIONS(5404), + [anon_sym_DOT] = ACTIONS(5402), + [anon_sym_DOT_STAR] = ACTIONS(5404), + [anon_sym_DASH_GT] = ACTIONS(5402), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5404), + [anon_sym_decltype] = ACTIONS(5404), + [anon_sym_DASH_GT_STAR] = ACTIONS(5404), + [sym_semgrep_metavar] = ACTIONS(5404), }, [2006] = { - [sym_string_literal] = STATE(1885), - [sym_template_argument_list] = STATE(2898), - [sym_raw_string_literal] = STATE(1885), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(5888), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(5532), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5888), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_RBRACE] = ACTIONS(4829), - [anon_sym_LBRACK] = ACTIONS(5890), - [anon_sym_EQ] = ACTIONS(4837), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4829), - [anon_sym_SLASH_EQ] = ACTIONS(4829), - [anon_sym_PERCENT_EQ] = ACTIONS(4829), - [anon_sym_PLUS_EQ] = ACTIONS(4829), - [anon_sym_DASH_EQ] = ACTIONS(4829), - [anon_sym_LT_LT_EQ] = ACTIONS(4829), - [anon_sym_GT_GT_EQ] = ACTIONS(4829), - [anon_sym_AMP_EQ] = ACTIONS(4829), - [anon_sym_CARET_EQ] = ACTIONS(4829), - [anon_sym_PIPE_EQ] = ACTIONS(4829), - [anon_sym_and_eq] = ACTIONS(4829), - [anon_sym_or_eq] = ACTIONS(4829), - [anon_sym_xor_eq] = ACTIONS(4829), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4829), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4829), - [anon_sym_not_eq] = ACTIONS(4829), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(2307), - [anon_sym_u_DQUOTE] = ACTIONS(2307), - [anon_sym_U_DQUOTE] = ACTIONS(2307), - [anon_sym_u8_DQUOTE] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), + [sym_declaration_modifiers] = STATE(4979), + [sym_attribute_specifier] = STATE(4535), + [sym_attribute_declaration] = STATE(4535), + [sym_ms_declspec_modifier] = STATE(4535), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7289), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4535), + [sym_type_qualifier] = STATE(4535), + [sym_decltype] = STATE(9605), + [sym_virtual] = STATE(4535), + [sym_alignas_specifier] = STATE(4535), + [sym_explicit_function_specifier] = STATE(4979), + [sym_operator_cast] = STATE(7728), + [sym_constructor_specifiers] = STATE(4069), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(9605), + [sym_template_function] = STATE(7305), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6514), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_operator_cast_identifier] = STATE(7728), + [sym_operator_name] = STATE(7305), + [aux_sym_operator_cast_definition_repeat1] = STATE(4069), + [sym_identifier] = ACTIONS(5741), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(5743), + [anon_sym_extern] = ACTIONS(5745), + [anon_sym___attribute__] = ACTIONS(5747), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5749), + [anon_sym___declspec] = ACTIONS(5751), + [anon_sym___based] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(5745), + [anon_sym_register] = ACTIONS(5745), + [anon_sym_inline] = ACTIONS(5745), + [anon_sym___inline] = ACTIONS(5745), + [anon_sym___inline__] = ACTIONS(5745), + [anon_sym___forceinline] = ACTIONS(5745), + [anon_sym_thread_local] = ACTIONS(5745), + [anon_sym___thread] = ACTIONS(5745), + [anon_sym_const] = ACTIONS(5743), + [anon_sym_constexpr] = ACTIONS(5743), + [anon_sym_volatile] = ACTIONS(5743), + [anon_sym_restrict] = ACTIONS(5743), + [anon_sym___restrict__] = ACTIONS(5743), + [anon_sym__Atomic] = ACTIONS(5743), + [anon_sym__Noreturn] = ACTIONS(5743), + [anon_sym_noreturn] = ACTIONS(5743), + [anon_sym_mutable] = ACTIONS(5743), + [anon_sym_constinit] = ACTIONS(5743), + [anon_sym_consteval] = ACTIONS(5743), [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(2317), - [anon_sym_LR_DQUOTE] = ACTIONS(2317), - [anon_sym_uR_DQUOTE] = ACTIONS(2317), - [anon_sym_UR_DQUOTE] = ACTIONS(2317), - [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_virtual] = ACTIONS(5753), + [anon_sym_alignas] = ACTIONS(5755), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_operator] = ACTIONS(135), }, [2007] = { - [sym_identifier] = ACTIONS(3644), - [aux_sym_preproc_def_token1] = ACTIONS(3644), - [aux_sym_preproc_if_token1] = ACTIONS(3644), - [aux_sym_preproc_if_token2] = ACTIONS(3644), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3644), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3644), - [aux_sym_preproc_else_token1] = ACTIONS(3644), - [aux_sym_preproc_elif_token1] = ACTIONS(3644), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3644), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3644), - [sym_preproc_directive] = ACTIONS(3644), - [anon_sym_LPAREN2] = ACTIONS(3646), - [anon_sym_TILDE] = ACTIONS(3646), - [anon_sym_STAR] = ACTIONS(3646), - [anon_sym_AMP_AMP] = ACTIONS(3646), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym___extension__] = ACTIONS(3644), - [anon_sym_typedef] = ACTIONS(3644), - [anon_sym_extern] = ACTIONS(3644), - [anon_sym___attribute__] = ACTIONS(3644), - [anon_sym_COLON_COLON] = ACTIONS(3646), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3646), - [anon_sym___declspec] = ACTIONS(3644), - [anon_sym___based] = ACTIONS(3644), - [anon_sym_signed] = ACTIONS(3644), - [anon_sym_unsigned] = ACTIONS(3644), - [anon_sym_long] = ACTIONS(3644), - [anon_sym_short] = ACTIONS(3644), - [anon_sym_LBRACK] = ACTIONS(3644), - [anon_sym_static] = ACTIONS(3644), - [anon_sym_register] = ACTIONS(3644), - [anon_sym_inline] = ACTIONS(3644), - [anon_sym___inline] = ACTIONS(3644), - [anon_sym___inline__] = ACTIONS(3644), - [anon_sym___forceinline] = ACTIONS(3644), - [anon_sym_thread_local] = ACTIONS(3644), - [anon_sym___thread] = ACTIONS(3644), - [anon_sym_const] = ACTIONS(3644), - [anon_sym_constexpr] = ACTIONS(3644), - [anon_sym_volatile] = ACTIONS(3644), - [anon_sym_restrict] = ACTIONS(3644), - [anon_sym___restrict__] = ACTIONS(3644), - [anon_sym__Atomic] = ACTIONS(3644), - [anon_sym__Noreturn] = ACTIONS(3644), - [anon_sym_noreturn] = ACTIONS(3644), - [anon_sym_mutable] = ACTIONS(3644), - [anon_sym_constinit] = ACTIONS(3644), - [anon_sym_consteval] = ACTIONS(3644), - [sym_primitive_type] = ACTIONS(3644), - [anon_sym_enum] = ACTIONS(3644), - [anon_sym_class] = ACTIONS(3644), - [anon_sym_struct] = ACTIONS(3644), - [anon_sym_union] = ACTIONS(3644), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3644), - [anon_sym_decltype] = ACTIONS(3644), - [anon_sym_virtual] = ACTIONS(3644), - [anon_sym_alignas] = ACTIONS(3644), - [anon_sym_explicit] = ACTIONS(3644), - [anon_sym_typename] = ACTIONS(3644), - [anon_sym_template] = ACTIONS(3644), - [anon_sym_operator] = ACTIONS(3644), - [anon_sym_friend] = ACTIONS(3644), - [anon_sym_public] = ACTIONS(3644), - [anon_sym_private] = ACTIONS(3644), - [anon_sym_protected] = ACTIONS(3644), - [anon_sym_using] = ACTIONS(3644), - [anon_sym_static_assert] = ACTIONS(3644), - }, - [2008] = { [sym_identifier] = ACTIONS(5892), [aux_sym_preproc_def_token1] = ACTIONS(5892), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5894), [aux_sym_preproc_if_token1] = ACTIONS(5892), [aux_sym_preproc_if_token2] = ACTIONS(5892), [aux_sym_preproc_ifdef_token1] = ACTIONS(5892), @@ -299867,10 +288554,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5892), [anon_sym_using] = ACTIONS(5892), [anon_sym_static_assert] = ACTIONS(5892), + [sym_semgrep_metavar] = ACTIONS(5894), }, - [2009] = { + [2008] = { [sym_identifier] = ACTIONS(5896), [aux_sym_preproc_def_token1] = ACTIONS(5896), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5898), [aux_sym_preproc_if_token1] = ACTIONS(5896), [aux_sym_preproc_if_token2] = ACTIONS(5896), [aux_sym_preproc_ifdef_token1] = ACTIONS(5896), @@ -299937,1620 +288626,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5896), [anon_sym_using] = ACTIONS(5896), [anon_sym_static_assert] = ACTIONS(5896), + [sym_semgrep_metavar] = ACTIONS(5898), }, - [2010] = { - [sym_identifier] = ACTIONS(3481), - [aux_sym_preproc_def_token1] = ACTIONS(3481), - [aux_sym_preproc_if_token1] = ACTIONS(3481), - [aux_sym_preproc_if_token2] = ACTIONS(3481), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3481), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3481), - [aux_sym_preproc_else_token1] = ACTIONS(3481), - [aux_sym_preproc_elif_token1] = ACTIONS(3481), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3481), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3481), - [sym_preproc_directive] = ACTIONS(3481), - [anon_sym_LPAREN2] = ACTIONS(3483), - [anon_sym_TILDE] = ACTIONS(3483), - [anon_sym_STAR] = ACTIONS(3483), - [anon_sym_AMP_AMP] = ACTIONS(3483), - [anon_sym_AMP] = ACTIONS(3481), - [anon_sym___extension__] = ACTIONS(3481), - [anon_sym_typedef] = ACTIONS(3481), - [anon_sym_extern] = ACTIONS(3481), - [anon_sym___attribute__] = ACTIONS(3481), - [anon_sym_COLON_COLON] = ACTIONS(3483), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3483), - [anon_sym___declspec] = ACTIONS(3481), - [anon_sym___based] = ACTIONS(3481), - [anon_sym_signed] = ACTIONS(3481), - [anon_sym_unsigned] = ACTIONS(3481), - [anon_sym_long] = ACTIONS(3481), - [anon_sym_short] = ACTIONS(3481), - [anon_sym_LBRACK] = ACTIONS(3481), - [anon_sym_static] = ACTIONS(3481), - [anon_sym_register] = ACTIONS(3481), - [anon_sym_inline] = ACTIONS(3481), - [anon_sym___inline] = ACTIONS(3481), - [anon_sym___inline__] = ACTIONS(3481), - [anon_sym___forceinline] = ACTIONS(3481), - [anon_sym_thread_local] = ACTIONS(3481), - [anon_sym___thread] = ACTIONS(3481), - [anon_sym_const] = ACTIONS(3481), - [anon_sym_constexpr] = ACTIONS(3481), - [anon_sym_volatile] = ACTIONS(3481), - [anon_sym_restrict] = ACTIONS(3481), - [anon_sym___restrict__] = ACTIONS(3481), - [anon_sym__Atomic] = ACTIONS(3481), - [anon_sym__Noreturn] = ACTIONS(3481), - [anon_sym_noreturn] = ACTIONS(3481), - [anon_sym_mutable] = ACTIONS(3481), - [anon_sym_constinit] = ACTIONS(3481), - [anon_sym_consteval] = ACTIONS(3481), - [sym_primitive_type] = ACTIONS(3481), - [anon_sym_enum] = ACTIONS(3481), - [anon_sym_class] = ACTIONS(3481), - [anon_sym_struct] = ACTIONS(3481), - [anon_sym_union] = ACTIONS(3481), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3481), - [anon_sym_decltype] = ACTIONS(3481), - [anon_sym_virtual] = ACTIONS(3481), - [anon_sym_alignas] = ACTIONS(3481), - [anon_sym_explicit] = ACTIONS(3481), - [anon_sym_typename] = ACTIONS(3481), - [anon_sym_template] = ACTIONS(3481), - [anon_sym_operator] = ACTIONS(3481), - [anon_sym_friend] = ACTIONS(3481), - [anon_sym_public] = ACTIONS(3481), - [anon_sym_private] = ACTIONS(3481), - [anon_sym_protected] = ACTIONS(3481), - [anon_sym_using] = ACTIONS(3481), - [anon_sym_static_assert] = ACTIONS(3481), - }, - [2011] = { - [sym_template_argument_list] = STATE(2088), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5464), - [anon_sym_COMMA] = ACTIONS(5464), - [anon_sym_LPAREN2] = ACTIONS(5464), - [anon_sym_DASH] = ACTIONS(5469), - [anon_sym_PLUS] = ACTIONS(5469), - [anon_sym_STAR] = ACTIONS(5471), - [anon_sym_SLASH] = ACTIONS(5469), - [anon_sym_PERCENT] = ACTIONS(5469), - [anon_sym_PIPE_PIPE] = ACTIONS(5462), - [anon_sym_AMP_AMP] = ACTIONS(5464), - [anon_sym_PIPE] = ACTIONS(5469), - [anon_sym_CARET] = ACTIONS(5469), - [anon_sym_AMP] = ACTIONS(5471), - [anon_sym_EQ_EQ] = ACTIONS(5462), - [anon_sym_BANG_EQ] = ACTIONS(5462), - [anon_sym_GT] = ACTIONS(5469), - [anon_sym_GT_EQ] = ACTIONS(5469), - [anon_sym_LT_EQ] = ACTIONS(5469), - [anon_sym_LT] = ACTIONS(5900), - [anon_sym_LT_LT] = ACTIONS(5469), - [anon_sym_GT_GT] = ACTIONS(5469), - [anon_sym___extension__] = ACTIONS(5467), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(5467), - [anon_sym_LBRACK] = ACTIONS(5464), - [anon_sym_EQ] = ACTIONS(5469), - [anon_sym_const] = ACTIONS(5460), - [anon_sym_constexpr] = ACTIONS(5467), - [anon_sym_volatile] = ACTIONS(5467), - [anon_sym_restrict] = ACTIONS(5467), - [anon_sym___restrict__] = ACTIONS(5467), - [anon_sym__Atomic] = ACTIONS(5467), - [anon_sym__Noreturn] = ACTIONS(5467), - [anon_sym_noreturn] = ACTIONS(5467), - [anon_sym_mutable] = ACTIONS(5467), - [anon_sym_constinit] = ACTIONS(5467), - [anon_sym_consteval] = ACTIONS(5467), - [anon_sym_QMARK] = ACTIONS(5462), - [anon_sym_STAR_EQ] = ACTIONS(5462), - [anon_sym_SLASH_EQ] = ACTIONS(5462), - [anon_sym_PERCENT_EQ] = ACTIONS(5462), - [anon_sym_PLUS_EQ] = ACTIONS(5462), - [anon_sym_DASH_EQ] = ACTIONS(5462), - [anon_sym_LT_LT_EQ] = ACTIONS(5462), - [anon_sym_GT_GT_EQ] = ACTIONS(5469), - [anon_sym_AMP_EQ] = ACTIONS(5462), - [anon_sym_CARET_EQ] = ACTIONS(5462), - [anon_sym_PIPE_EQ] = ACTIONS(5462), - [anon_sym_and_eq] = ACTIONS(5462), - [anon_sym_or_eq] = ACTIONS(5462), - [anon_sym_xor_eq] = ACTIONS(5462), - [anon_sym_LT_EQ_GT] = ACTIONS(5462), - [anon_sym_or] = ACTIONS(5469), - [anon_sym_and] = ACTIONS(5469), - [anon_sym_bitor] = ACTIONS(5462), - [anon_sym_xor] = ACTIONS(5469), - [anon_sym_bitand] = ACTIONS(5462), - [anon_sym_not_eq] = ACTIONS(5462), - [anon_sym_DASH_DASH] = ACTIONS(5462), - [anon_sym_PLUS_PLUS] = ACTIONS(5462), - [anon_sym_DOT] = ACTIONS(5469), - [anon_sym_DOT_STAR] = ACTIONS(5462), - [anon_sym_DASH_GT] = ACTIONS(5462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5467), - [anon_sym_decltype] = ACTIONS(5467), - [anon_sym_GT2] = ACTIONS(5464), - }, - [2012] = { - [sym_identifier] = ACTIONS(3614), - [aux_sym_preproc_def_token1] = ACTIONS(3614), - [aux_sym_preproc_if_token1] = ACTIONS(3614), - [aux_sym_preproc_if_token2] = ACTIONS(3614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3614), - [aux_sym_preproc_else_token1] = ACTIONS(3614), - [aux_sym_preproc_elif_token1] = ACTIONS(3614), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3614), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3614), - [sym_preproc_directive] = ACTIONS(3614), - [anon_sym_LPAREN2] = ACTIONS(3616), - [anon_sym_TILDE] = ACTIONS(3616), - [anon_sym_STAR] = ACTIONS(3616), - [anon_sym_AMP_AMP] = ACTIONS(3616), - [anon_sym_AMP] = ACTIONS(3614), - [anon_sym___extension__] = ACTIONS(3614), - [anon_sym_typedef] = ACTIONS(3614), - [anon_sym_extern] = ACTIONS(3614), - [anon_sym___attribute__] = ACTIONS(3614), - [anon_sym_COLON_COLON] = ACTIONS(3616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3616), - [anon_sym___declspec] = ACTIONS(3614), - [anon_sym___based] = ACTIONS(3614), - [anon_sym_signed] = ACTIONS(3614), - [anon_sym_unsigned] = ACTIONS(3614), - [anon_sym_long] = ACTIONS(3614), - [anon_sym_short] = ACTIONS(3614), - [anon_sym_LBRACK] = ACTIONS(3614), - [anon_sym_static] = ACTIONS(3614), - [anon_sym_register] = ACTIONS(3614), - [anon_sym_inline] = ACTIONS(3614), - [anon_sym___inline] = ACTIONS(3614), - [anon_sym___inline__] = ACTIONS(3614), - [anon_sym___forceinline] = ACTIONS(3614), - [anon_sym_thread_local] = ACTIONS(3614), - [anon_sym___thread] = ACTIONS(3614), - [anon_sym_const] = ACTIONS(3614), - [anon_sym_constexpr] = ACTIONS(3614), - [anon_sym_volatile] = ACTIONS(3614), - [anon_sym_restrict] = ACTIONS(3614), - [anon_sym___restrict__] = ACTIONS(3614), - [anon_sym__Atomic] = ACTIONS(3614), - [anon_sym__Noreturn] = ACTIONS(3614), - [anon_sym_noreturn] = ACTIONS(3614), - [anon_sym_mutable] = ACTIONS(3614), - [anon_sym_constinit] = ACTIONS(3614), - [anon_sym_consteval] = ACTIONS(3614), - [sym_primitive_type] = ACTIONS(3614), - [anon_sym_enum] = ACTIONS(3614), - [anon_sym_class] = ACTIONS(3614), - [anon_sym_struct] = ACTIONS(3614), - [anon_sym_union] = ACTIONS(3614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3614), - [anon_sym_decltype] = ACTIONS(3614), - [anon_sym_virtual] = ACTIONS(3614), - [anon_sym_alignas] = ACTIONS(3614), - [anon_sym_explicit] = ACTIONS(3614), - [anon_sym_typename] = ACTIONS(3614), - [anon_sym_template] = ACTIONS(3614), - [anon_sym_operator] = ACTIONS(3614), - [anon_sym_friend] = ACTIONS(3614), - [anon_sym_public] = ACTIONS(3614), - [anon_sym_private] = ACTIONS(3614), - [anon_sym_protected] = ACTIONS(3614), - [anon_sym_using] = ACTIONS(3614), - [anon_sym_static_assert] = ACTIONS(3614), - }, - [2013] = { - [sym_identifier] = ACTIONS(3626), - [aux_sym_preproc_def_token1] = ACTIONS(3626), - [aux_sym_preproc_if_token1] = ACTIONS(3626), - [aux_sym_preproc_if_token2] = ACTIONS(3626), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3626), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3626), - [aux_sym_preproc_else_token1] = ACTIONS(3626), - [aux_sym_preproc_elif_token1] = ACTIONS(3626), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3626), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3626), - [sym_preproc_directive] = ACTIONS(3626), - [anon_sym_LPAREN2] = ACTIONS(3628), - [anon_sym_TILDE] = ACTIONS(3628), - [anon_sym_STAR] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3626), - [anon_sym___extension__] = ACTIONS(3626), - [anon_sym_typedef] = ACTIONS(3626), - [anon_sym_extern] = ACTIONS(3626), - [anon_sym___attribute__] = ACTIONS(3626), - [anon_sym_COLON_COLON] = ACTIONS(3628), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3628), - [anon_sym___declspec] = ACTIONS(3626), - [anon_sym___based] = ACTIONS(3626), - [anon_sym_signed] = ACTIONS(3626), - [anon_sym_unsigned] = ACTIONS(3626), - [anon_sym_long] = ACTIONS(3626), - [anon_sym_short] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_register] = ACTIONS(3626), - [anon_sym_inline] = ACTIONS(3626), - [anon_sym___inline] = ACTIONS(3626), - [anon_sym___inline__] = ACTIONS(3626), - [anon_sym___forceinline] = ACTIONS(3626), - [anon_sym_thread_local] = ACTIONS(3626), - [anon_sym___thread] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_constexpr] = ACTIONS(3626), - [anon_sym_volatile] = ACTIONS(3626), - [anon_sym_restrict] = ACTIONS(3626), - [anon_sym___restrict__] = ACTIONS(3626), - [anon_sym__Atomic] = ACTIONS(3626), - [anon_sym__Noreturn] = ACTIONS(3626), - [anon_sym_noreturn] = ACTIONS(3626), - [anon_sym_mutable] = ACTIONS(3626), - [anon_sym_constinit] = ACTIONS(3626), - [anon_sym_consteval] = ACTIONS(3626), - [sym_primitive_type] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_struct] = ACTIONS(3626), - [anon_sym_union] = ACTIONS(3626), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3626), - [anon_sym_decltype] = ACTIONS(3626), - [anon_sym_virtual] = ACTIONS(3626), - [anon_sym_alignas] = ACTIONS(3626), - [anon_sym_explicit] = ACTIONS(3626), - [anon_sym_typename] = ACTIONS(3626), - [anon_sym_template] = ACTIONS(3626), - [anon_sym_operator] = ACTIONS(3626), - [anon_sym_friend] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_static_assert] = ACTIONS(3626), - }, - [2014] = { - [sym_identifier] = ACTIONS(3630), - [aux_sym_preproc_def_token1] = ACTIONS(3630), - [aux_sym_preproc_if_token1] = ACTIONS(3630), - [aux_sym_preproc_if_token2] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), - [aux_sym_preproc_else_token1] = ACTIONS(3630), - [aux_sym_preproc_elif_token1] = ACTIONS(3630), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3630), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3630), - [sym_preproc_directive] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(3632), - [anon_sym_TILDE] = ACTIONS(3632), - [anon_sym_STAR] = ACTIONS(3632), - [anon_sym_AMP_AMP] = ACTIONS(3632), - [anon_sym_AMP] = ACTIONS(3630), - [anon_sym___extension__] = ACTIONS(3630), - [anon_sym_typedef] = ACTIONS(3630), - [anon_sym_extern] = ACTIONS(3630), - [anon_sym___attribute__] = ACTIONS(3630), - [anon_sym_COLON_COLON] = ACTIONS(3632), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), - [anon_sym___declspec] = ACTIONS(3630), - [anon_sym___based] = ACTIONS(3630), - [anon_sym_signed] = ACTIONS(3630), - [anon_sym_unsigned] = ACTIONS(3630), - [anon_sym_long] = ACTIONS(3630), - [anon_sym_short] = ACTIONS(3630), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_static] = ACTIONS(3630), - [anon_sym_register] = ACTIONS(3630), - [anon_sym_inline] = ACTIONS(3630), - [anon_sym___inline] = ACTIONS(3630), - [anon_sym___inline__] = ACTIONS(3630), - [anon_sym___forceinline] = ACTIONS(3630), - [anon_sym_thread_local] = ACTIONS(3630), - [anon_sym___thread] = ACTIONS(3630), - [anon_sym_const] = ACTIONS(3630), - [anon_sym_constexpr] = ACTIONS(3630), - [anon_sym_volatile] = ACTIONS(3630), - [anon_sym_restrict] = ACTIONS(3630), - [anon_sym___restrict__] = ACTIONS(3630), - [anon_sym__Atomic] = ACTIONS(3630), - [anon_sym__Noreturn] = ACTIONS(3630), - [anon_sym_noreturn] = ACTIONS(3630), - [anon_sym_mutable] = ACTIONS(3630), - [anon_sym_constinit] = ACTIONS(3630), - [anon_sym_consteval] = ACTIONS(3630), - [sym_primitive_type] = ACTIONS(3630), - [anon_sym_enum] = ACTIONS(3630), - [anon_sym_class] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3630), - [anon_sym_union] = ACTIONS(3630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3630), - [anon_sym_decltype] = ACTIONS(3630), - [anon_sym_virtual] = ACTIONS(3630), - [anon_sym_alignas] = ACTIONS(3630), - [anon_sym_explicit] = ACTIONS(3630), - [anon_sym_typename] = ACTIONS(3630), - [anon_sym_template] = ACTIONS(3630), - [anon_sym_operator] = ACTIONS(3630), - [anon_sym_friend] = ACTIONS(3630), - [anon_sym_public] = ACTIONS(3630), - [anon_sym_private] = ACTIONS(3630), - [anon_sym_protected] = ACTIONS(3630), - [anon_sym_using] = ACTIONS(3630), - [anon_sym_static_assert] = ACTIONS(3630), - }, - [2015] = { - [sym_identifier] = ACTIONS(5903), - [aux_sym_preproc_def_token1] = ACTIONS(5903), - [aux_sym_preproc_if_token1] = ACTIONS(5903), - [aux_sym_preproc_if_token2] = ACTIONS(5903), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5903), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5903), - [aux_sym_preproc_else_token1] = ACTIONS(5903), - [aux_sym_preproc_elif_token1] = ACTIONS(5903), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5903), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5903), - [sym_preproc_directive] = ACTIONS(5903), - [anon_sym_LPAREN2] = ACTIONS(5905), - [anon_sym_TILDE] = ACTIONS(5905), - [anon_sym_STAR] = ACTIONS(5905), - [anon_sym_AMP_AMP] = ACTIONS(5905), - [anon_sym_AMP] = ACTIONS(5903), - [anon_sym___extension__] = ACTIONS(5903), - [anon_sym_typedef] = ACTIONS(5903), - [anon_sym_extern] = ACTIONS(5903), - [anon_sym___attribute__] = ACTIONS(5903), - [anon_sym_COLON_COLON] = ACTIONS(5905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5905), - [anon_sym___declspec] = ACTIONS(5903), - [anon_sym___based] = ACTIONS(5903), - [anon_sym_signed] = ACTIONS(5903), - [anon_sym_unsigned] = ACTIONS(5903), - [anon_sym_long] = ACTIONS(5903), - [anon_sym_short] = ACTIONS(5903), - [anon_sym_LBRACK] = ACTIONS(5903), - [anon_sym_static] = ACTIONS(5903), - [anon_sym_register] = ACTIONS(5903), - [anon_sym_inline] = ACTIONS(5903), - [anon_sym___inline] = ACTIONS(5903), - [anon_sym___inline__] = ACTIONS(5903), - [anon_sym___forceinline] = ACTIONS(5903), - [anon_sym_thread_local] = ACTIONS(5903), - [anon_sym___thread] = ACTIONS(5903), - [anon_sym_const] = ACTIONS(5903), - [anon_sym_constexpr] = ACTIONS(5903), - [anon_sym_volatile] = ACTIONS(5903), - [anon_sym_restrict] = ACTIONS(5903), - [anon_sym___restrict__] = ACTIONS(5903), - [anon_sym__Atomic] = ACTIONS(5903), - [anon_sym__Noreturn] = ACTIONS(5903), - [anon_sym_noreturn] = ACTIONS(5903), - [anon_sym_mutable] = ACTIONS(5903), - [anon_sym_constinit] = ACTIONS(5903), - [anon_sym_consteval] = ACTIONS(5903), - [sym_primitive_type] = ACTIONS(5903), - [anon_sym_enum] = ACTIONS(5903), - [anon_sym_class] = ACTIONS(5903), - [anon_sym_struct] = ACTIONS(5903), - [anon_sym_union] = ACTIONS(5903), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5903), - [anon_sym_decltype] = ACTIONS(5903), - [anon_sym_virtual] = ACTIONS(5903), - [anon_sym_alignas] = ACTIONS(5903), - [anon_sym_explicit] = ACTIONS(5903), - [anon_sym_typename] = ACTIONS(5903), - [anon_sym_template] = ACTIONS(5903), - [anon_sym_operator] = ACTIONS(5903), - [anon_sym_friend] = ACTIONS(5903), - [anon_sym_public] = ACTIONS(5903), - [anon_sym_private] = ACTIONS(5903), - [anon_sym_protected] = ACTIONS(5903), - [anon_sym_using] = ACTIONS(5903), - [anon_sym_static_assert] = ACTIONS(5903), - }, - [2016] = { - [sym_identifier] = ACTIONS(3634), - [aux_sym_preproc_def_token1] = ACTIONS(3634), - [aux_sym_preproc_if_token1] = ACTIONS(3634), - [aux_sym_preproc_if_token2] = ACTIONS(3634), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3634), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3634), - [aux_sym_preproc_else_token1] = ACTIONS(3634), - [aux_sym_preproc_elif_token1] = ACTIONS(3634), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3634), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3634), - [sym_preproc_directive] = ACTIONS(3634), - [anon_sym_LPAREN2] = ACTIONS(3636), - [anon_sym_TILDE] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3636), - [anon_sym_AMP_AMP] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3634), - [anon_sym___extension__] = ACTIONS(3634), - [anon_sym_typedef] = ACTIONS(3634), - [anon_sym_extern] = ACTIONS(3634), - [anon_sym___attribute__] = ACTIONS(3634), - [anon_sym_COLON_COLON] = ACTIONS(3636), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3636), - [anon_sym___declspec] = ACTIONS(3634), - [anon_sym___based] = ACTIONS(3634), - [anon_sym_signed] = ACTIONS(3634), - [anon_sym_unsigned] = ACTIONS(3634), - [anon_sym_long] = ACTIONS(3634), - [anon_sym_short] = ACTIONS(3634), - [anon_sym_LBRACK] = ACTIONS(3634), - [anon_sym_static] = ACTIONS(3634), - [anon_sym_register] = ACTIONS(3634), - [anon_sym_inline] = ACTIONS(3634), - [anon_sym___inline] = ACTIONS(3634), - [anon_sym___inline__] = ACTIONS(3634), - [anon_sym___forceinline] = ACTIONS(3634), - [anon_sym_thread_local] = ACTIONS(3634), - [anon_sym___thread] = ACTIONS(3634), - [anon_sym_const] = ACTIONS(3634), - [anon_sym_constexpr] = ACTIONS(3634), - [anon_sym_volatile] = ACTIONS(3634), - [anon_sym_restrict] = ACTIONS(3634), - [anon_sym___restrict__] = ACTIONS(3634), - [anon_sym__Atomic] = ACTIONS(3634), - [anon_sym__Noreturn] = ACTIONS(3634), - [anon_sym_noreturn] = ACTIONS(3634), - [anon_sym_mutable] = ACTIONS(3634), - [anon_sym_constinit] = ACTIONS(3634), - [anon_sym_consteval] = ACTIONS(3634), - [sym_primitive_type] = ACTIONS(3634), - [anon_sym_enum] = ACTIONS(3634), - [anon_sym_class] = ACTIONS(3634), - [anon_sym_struct] = ACTIONS(3634), - [anon_sym_union] = ACTIONS(3634), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3634), - [anon_sym_decltype] = ACTIONS(3634), - [anon_sym_virtual] = ACTIONS(3634), - [anon_sym_alignas] = ACTIONS(3634), - [anon_sym_explicit] = ACTIONS(3634), - [anon_sym_typename] = ACTIONS(3634), - [anon_sym_template] = ACTIONS(3634), - [anon_sym_operator] = ACTIONS(3634), - [anon_sym_friend] = ACTIONS(3634), - [anon_sym_public] = ACTIONS(3634), - [anon_sym_private] = ACTIONS(3634), - [anon_sym_protected] = ACTIONS(3634), - [anon_sym_using] = ACTIONS(3634), - [anon_sym_static_assert] = ACTIONS(3634), - }, - [2017] = { - [sym_string_literal] = STATE(2640), - [sym_template_argument_list] = STATE(5014), - [sym_raw_string_literal] = STATE(2640), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(4829), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(5764), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_RBRACE] = ACTIONS(4829), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_EQ] = ACTIONS(4861), - [anon_sym_COLON] = ACTIONS(4890), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4865), - [anon_sym_SLASH_EQ] = ACTIONS(4865), - [anon_sym_PERCENT_EQ] = ACTIONS(4865), - [anon_sym_PLUS_EQ] = ACTIONS(4865), - [anon_sym_DASH_EQ] = ACTIONS(4865), - [anon_sym_LT_LT_EQ] = ACTIONS(4865), - [anon_sym_GT_GT_EQ] = ACTIONS(4865), - [anon_sym_AMP_EQ] = ACTIONS(4865), - [anon_sym_CARET_EQ] = ACTIONS(4865), - [anon_sym_PIPE_EQ] = ACTIONS(4865), - [anon_sym_and_eq] = ACTIONS(4865), - [anon_sym_or_eq] = ACTIONS(4865), - [anon_sym_xor_eq] = ACTIONS(4865), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4829), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4829), - [anon_sym_not_eq] = ACTIONS(4829), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - }, - [2018] = { - [sym_identifier] = ACTIONS(5907), - [aux_sym_preproc_def_token1] = ACTIONS(5907), - [aux_sym_preproc_if_token1] = ACTIONS(5907), - [aux_sym_preproc_if_token2] = ACTIONS(5907), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5907), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5907), - [aux_sym_preproc_else_token1] = ACTIONS(5907), - [aux_sym_preproc_elif_token1] = ACTIONS(5907), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5907), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5907), - [sym_preproc_directive] = ACTIONS(5907), - [anon_sym_LPAREN2] = ACTIONS(5909), - [anon_sym_TILDE] = ACTIONS(5909), - [anon_sym_STAR] = ACTIONS(5909), - [anon_sym_AMP_AMP] = ACTIONS(5909), - [anon_sym_AMP] = ACTIONS(5907), - [anon_sym___extension__] = ACTIONS(5907), - [anon_sym_typedef] = ACTIONS(5907), - [anon_sym_extern] = ACTIONS(5907), - [anon_sym___attribute__] = ACTIONS(5907), - [anon_sym_COLON_COLON] = ACTIONS(5909), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5909), - [anon_sym___declspec] = ACTIONS(5907), - [anon_sym___based] = ACTIONS(5907), - [anon_sym_signed] = ACTIONS(5907), - [anon_sym_unsigned] = ACTIONS(5907), - [anon_sym_long] = ACTIONS(5907), - [anon_sym_short] = ACTIONS(5907), - [anon_sym_LBRACK] = ACTIONS(5907), - [anon_sym_static] = ACTIONS(5907), - [anon_sym_register] = ACTIONS(5907), - [anon_sym_inline] = ACTIONS(5907), - [anon_sym___inline] = ACTIONS(5907), - [anon_sym___inline__] = ACTIONS(5907), - [anon_sym___forceinline] = ACTIONS(5907), - [anon_sym_thread_local] = ACTIONS(5907), - [anon_sym___thread] = ACTIONS(5907), - [anon_sym_const] = ACTIONS(5907), - [anon_sym_constexpr] = ACTIONS(5907), - [anon_sym_volatile] = ACTIONS(5907), - [anon_sym_restrict] = ACTIONS(5907), - [anon_sym___restrict__] = ACTIONS(5907), - [anon_sym__Atomic] = ACTIONS(5907), - [anon_sym__Noreturn] = ACTIONS(5907), - [anon_sym_noreturn] = ACTIONS(5907), - [anon_sym_mutable] = ACTIONS(5907), - [anon_sym_constinit] = ACTIONS(5907), - [anon_sym_consteval] = ACTIONS(5907), - [sym_primitive_type] = ACTIONS(5907), - [anon_sym_enum] = ACTIONS(5907), - [anon_sym_class] = ACTIONS(5907), - [anon_sym_struct] = ACTIONS(5907), - [anon_sym_union] = ACTIONS(5907), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5907), - [anon_sym_decltype] = ACTIONS(5907), - [anon_sym_virtual] = ACTIONS(5907), - [anon_sym_alignas] = ACTIONS(5907), - [anon_sym_explicit] = ACTIONS(5907), - [anon_sym_typename] = ACTIONS(5907), - [anon_sym_template] = ACTIONS(5907), - [anon_sym_operator] = ACTIONS(5907), - [anon_sym_friend] = ACTIONS(5907), - [anon_sym_public] = ACTIONS(5907), - [anon_sym_private] = ACTIONS(5907), - [anon_sym_protected] = ACTIONS(5907), - [anon_sym_using] = ACTIONS(5907), - [anon_sym_static_assert] = ACTIONS(5907), - }, - [2019] = { - [sym_string_literal] = STATE(2021), - [sym_raw_string_literal] = STATE(2021), - [aux_sym_concatenated_string_repeat1] = STATE(2021), - [sym_identifier] = ACTIONS(5911), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5649), - [anon_sym_COMMA] = ACTIONS(5649), - [aux_sym_preproc_if_token2] = ACTIONS(5649), - [aux_sym_preproc_else_token1] = ACTIONS(5649), - [aux_sym_preproc_elif_token1] = ACTIONS(5649), - [anon_sym_LPAREN2] = ACTIONS(5649), - [anon_sym_DASH] = ACTIONS(5653), - [anon_sym_PLUS] = ACTIONS(5653), - [anon_sym_STAR] = ACTIONS(5653), - [anon_sym_SLASH] = ACTIONS(5653), - [anon_sym_PERCENT] = ACTIONS(5653), - [anon_sym_PIPE_PIPE] = ACTIONS(5649), - [anon_sym_AMP_AMP] = ACTIONS(5649), - [anon_sym_PIPE] = ACTIONS(5653), - [anon_sym_CARET] = ACTIONS(5653), - [anon_sym_AMP] = ACTIONS(5653), - [anon_sym_EQ_EQ] = ACTIONS(5649), - [anon_sym_BANG_EQ] = ACTIONS(5649), - [anon_sym_GT] = ACTIONS(5653), - [anon_sym_GT_EQ] = ACTIONS(5649), - [anon_sym_LT_EQ] = ACTIONS(5653), - [anon_sym_LT] = ACTIONS(5653), - [anon_sym_LT_LT] = ACTIONS(5653), - [anon_sym_GT_GT] = ACTIONS(5653), - [anon_sym_LBRACK] = ACTIONS(5649), - [anon_sym_EQ] = ACTIONS(5653), - [anon_sym_QMARK] = ACTIONS(5649), - [anon_sym_STAR_EQ] = ACTIONS(5649), - [anon_sym_SLASH_EQ] = ACTIONS(5649), - [anon_sym_PERCENT_EQ] = ACTIONS(5649), - [anon_sym_PLUS_EQ] = ACTIONS(5649), - [anon_sym_DASH_EQ] = ACTIONS(5649), - [anon_sym_LT_LT_EQ] = ACTIONS(5649), - [anon_sym_GT_GT_EQ] = ACTIONS(5649), - [anon_sym_AMP_EQ] = ACTIONS(5649), - [anon_sym_CARET_EQ] = ACTIONS(5649), - [anon_sym_PIPE_EQ] = ACTIONS(5649), - [anon_sym_and_eq] = ACTIONS(5653), - [anon_sym_or_eq] = ACTIONS(5653), - [anon_sym_xor_eq] = ACTIONS(5653), - [anon_sym_LT_EQ_GT] = ACTIONS(5649), - [anon_sym_or] = ACTIONS(5653), - [anon_sym_and] = ACTIONS(5653), - [anon_sym_bitor] = ACTIONS(5653), - [anon_sym_xor] = ACTIONS(5653), - [anon_sym_bitand] = ACTIONS(5653), - [anon_sym_not_eq] = ACTIONS(5653), - [anon_sym_DASH_DASH] = ACTIONS(5649), - [anon_sym_PLUS_PLUS] = ACTIONS(5649), - [anon_sym_DOT] = ACTIONS(5653), - [anon_sym_DOT_STAR] = ACTIONS(5649), - [anon_sym_DASH_GT] = ACTIONS(5649), - [anon_sym_L_DQUOTE] = ACTIONS(2405), - [anon_sym_u_DQUOTE] = ACTIONS(2405), - [anon_sym_U_DQUOTE] = ACTIONS(2405), - [anon_sym_u8_DQUOTE] = ACTIONS(2405), - [anon_sym_DQUOTE] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(2413), - [anon_sym_LR_DQUOTE] = ACTIONS(2413), - [anon_sym_uR_DQUOTE] = ACTIONS(2413), - [anon_sym_UR_DQUOTE] = ACTIONS(2413), - [anon_sym_u8R_DQUOTE] = ACTIONS(2413), - [sym_literal_suffix] = ACTIONS(5653), - }, - [2020] = { - [sym_identifier] = ACTIONS(5913), - [aux_sym_preproc_def_token1] = ACTIONS(5913), - [aux_sym_preproc_if_token1] = ACTIONS(5913), - [aux_sym_preproc_if_token2] = ACTIONS(5913), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5913), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5913), - [aux_sym_preproc_else_token1] = ACTIONS(5913), - [aux_sym_preproc_elif_token1] = ACTIONS(5913), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5913), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5913), - [sym_preproc_directive] = ACTIONS(5913), - [anon_sym_LPAREN2] = ACTIONS(5915), - [anon_sym_TILDE] = ACTIONS(5915), - [anon_sym_STAR] = ACTIONS(5915), - [anon_sym_AMP_AMP] = ACTIONS(5915), - [anon_sym_AMP] = ACTIONS(5913), - [anon_sym___extension__] = ACTIONS(5913), - [anon_sym_typedef] = ACTIONS(5913), - [anon_sym_extern] = ACTIONS(5913), - [anon_sym___attribute__] = ACTIONS(5913), - [anon_sym_COLON_COLON] = ACTIONS(5915), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5915), - [anon_sym___declspec] = ACTIONS(5913), - [anon_sym___based] = ACTIONS(5913), - [anon_sym_signed] = ACTIONS(5913), - [anon_sym_unsigned] = ACTIONS(5913), - [anon_sym_long] = ACTIONS(5913), - [anon_sym_short] = ACTIONS(5913), - [anon_sym_LBRACK] = ACTIONS(5913), - [anon_sym_static] = ACTIONS(5913), - [anon_sym_register] = ACTIONS(5913), - [anon_sym_inline] = ACTIONS(5913), - [anon_sym___inline] = ACTIONS(5913), - [anon_sym___inline__] = ACTIONS(5913), - [anon_sym___forceinline] = ACTIONS(5913), - [anon_sym_thread_local] = ACTIONS(5913), - [anon_sym___thread] = ACTIONS(5913), - [anon_sym_const] = ACTIONS(5913), - [anon_sym_constexpr] = ACTIONS(5913), - [anon_sym_volatile] = ACTIONS(5913), - [anon_sym_restrict] = ACTIONS(5913), - [anon_sym___restrict__] = ACTIONS(5913), - [anon_sym__Atomic] = ACTIONS(5913), - [anon_sym__Noreturn] = ACTIONS(5913), - [anon_sym_noreturn] = ACTIONS(5913), - [anon_sym_mutable] = ACTIONS(5913), - [anon_sym_constinit] = ACTIONS(5913), - [anon_sym_consteval] = ACTIONS(5913), - [sym_primitive_type] = ACTIONS(5913), - [anon_sym_enum] = ACTIONS(5913), - [anon_sym_class] = ACTIONS(5913), - [anon_sym_struct] = ACTIONS(5913), - [anon_sym_union] = ACTIONS(5913), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5913), - [anon_sym_decltype] = ACTIONS(5913), - [anon_sym_virtual] = ACTIONS(5913), - [anon_sym_alignas] = ACTIONS(5913), - [anon_sym_explicit] = ACTIONS(5913), - [anon_sym_typename] = ACTIONS(5913), - [anon_sym_template] = ACTIONS(5913), - [anon_sym_operator] = ACTIONS(5913), - [anon_sym_friend] = ACTIONS(5913), - [anon_sym_public] = ACTIONS(5913), - [anon_sym_private] = ACTIONS(5913), - [anon_sym_protected] = ACTIONS(5913), - [anon_sym_using] = ACTIONS(5913), - [anon_sym_static_assert] = ACTIONS(5913), - }, - [2021] = { - [sym_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [aux_sym_concatenated_string_repeat1] = STATE(2024), - [sym_identifier] = ACTIONS(5917), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5643), - [anon_sym_COMMA] = ACTIONS(5643), - [aux_sym_preproc_if_token2] = ACTIONS(5643), - [aux_sym_preproc_else_token1] = ACTIONS(5643), - [aux_sym_preproc_elif_token1] = ACTIONS(5643), - [anon_sym_LPAREN2] = ACTIONS(5643), - [anon_sym_DASH] = ACTIONS(5647), - [anon_sym_PLUS] = ACTIONS(5647), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5647), - [anon_sym_PERCENT] = ACTIONS(5647), - [anon_sym_PIPE_PIPE] = ACTIONS(5643), - [anon_sym_AMP_AMP] = ACTIONS(5643), - [anon_sym_PIPE] = ACTIONS(5647), - [anon_sym_CARET] = ACTIONS(5647), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5643), - [anon_sym_BANG_EQ] = ACTIONS(5643), - [anon_sym_GT] = ACTIONS(5647), - [anon_sym_GT_EQ] = ACTIONS(5643), - [anon_sym_LT_EQ] = ACTIONS(5647), - [anon_sym_LT] = ACTIONS(5647), - [anon_sym_LT_LT] = ACTIONS(5647), - [anon_sym_GT_GT] = ACTIONS(5647), - [anon_sym_LBRACK] = ACTIONS(5643), - [anon_sym_EQ] = ACTIONS(5647), - [anon_sym_QMARK] = ACTIONS(5643), - [anon_sym_STAR_EQ] = ACTIONS(5643), - [anon_sym_SLASH_EQ] = ACTIONS(5643), - [anon_sym_PERCENT_EQ] = ACTIONS(5643), - [anon_sym_PLUS_EQ] = ACTIONS(5643), - [anon_sym_DASH_EQ] = ACTIONS(5643), - [anon_sym_LT_LT_EQ] = ACTIONS(5643), - [anon_sym_GT_GT_EQ] = ACTIONS(5643), - [anon_sym_AMP_EQ] = ACTIONS(5643), - [anon_sym_CARET_EQ] = ACTIONS(5643), - [anon_sym_PIPE_EQ] = ACTIONS(5643), - [anon_sym_and_eq] = ACTIONS(5647), - [anon_sym_or_eq] = ACTIONS(5647), - [anon_sym_xor_eq] = ACTIONS(5647), - [anon_sym_LT_EQ_GT] = ACTIONS(5643), - [anon_sym_or] = ACTIONS(5647), - [anon_sym_and] = ACTIONS(5647), - [anon_sym_bitor] = ACTIONS(5647), - [anon_sym_xor] = ACTIONS(5647), - [anon_sym_bitand] = ACTIONS(5647), - [anon_sym_not_eq] = ACTIONS(5647), - [anon_sym_DASH_DASH] = ACTIONS(5643), - [anon_sym_PLUS_PLUS] = ACTIONS(5643), - [anon_sym_DOT] = ACTIONS(5647), - [anon_sym_DOT_STAR] = ACTIONS(5643), - [anon_sym_DASH_GT] = ACTIONS(5643), - [anon_sym_L_DQUOTE] = ACTIONS(2405), - [anon_sym_u_DQUOTE] = ACTIONS(2405), - [anon_sym_U_DQUOTE] = ACTIONS(2405), - [anon_sym_u8_DQUOTE] = ACTIONS(2405), - [anon_sym_DQUOTE] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(2413), - [anon_sym_LR_DQUOTE] = ACTIONS(2413), - [anon_sym_uR_DQUOTE] = ACTIONS(2413), - [anon_sym_UR_DQUOTE] = ACTIONS(2413), - [anon_sym_u8R_DQUOTE] = ACTIONS(2413), - [sym_literal_suffix] = ACTIONS(5647), - }, - [2022] = { - [sym_identifier] = ACTIONS(3652), - [aux_sym_preproc_def_token1] = ACTIONS(3652), - [aux_sym_preproc_if_token1] = ACTIONS(3652), - [aux_sym_preproc_if_token2] = ACTIONS(3652), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3652), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3652), - [aux_sym_preproc_else_token1] = ACTIONS(3652), - [aux_sym_preproc_elif_token1] = ACTIONS(3652), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3652), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3652), - [sym_preproc_directive] = ACTIONS(3652), - [anon_sym_LPAREN2] = ACTIONS(3654), - [anon_sym_TILDE] = ACTIONS(3654), - [anon_sym_STAR] = ACTIONS(3654), - [anon_sym_AMP_AMP] = ACTIONS(3654), - [anon_sym_AMP] = ACTIONS(3652), - [anon_sym___extension__] = ACTIONS(3652), - [anon_sym_typedef] = ACTIONS(3652), - [anon_sym_extern] = ACTIONS(3652), - [anon_sym___attribute__] = ACTIONS(3652), - [anon_sym_COLON_COLON] = ACTIONS(3654), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3654), - [anon_sym___declspec] = ACTIONS(3652), - [anon_sym___based] = ACTIONS(3652), - [anon_sym_signed] = ACTIONS(3652), - [anon_sym_unsigned] = ACTIONS(3652), - [anon_sym_long] = ACTIONS(3652), - [anon_sym_short] = ACTIONS(3652), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_static] = ACTIONS(3652), - [anon_sym_register] = ACTIONS(3652), - [anon_sym_inline] = ACTIONS(3652), - [anon_sym___inline] = ACTIONS(3652), - [anon_sym___inline__] = ACTIONS(3652), - [anon_sym___forceinline] = ACTIONS(3652), - [anon_sym_thread_local] = ACTIONS(3652), - [anon_sym___thread] = ACTIONS(3652), - [anon_sym_const] = ACTIONS(3652), - [anon_sym_constexpr] = ACTIONS(3652), - [anon_sym_volatile] = ACTIONS(3652), - [anon_sym_restrict] = ACTIONS(3652), - [anon_sym___restrict__] = ACTIONS(3652), - [anon_sym__Atomic] = ACTIONS(3652), - [anon_sym__Noreturn] = ACTIONS(3652), - [anon_sym_noreturn] = ACTIONS(3652), - [anon_sym_mutable] = ACTIONS(3652), - [anon_sym_constinit] = ACTIONS(3652), - [anon_sym_consteval] = ACTIONS(3652), - [sym_primitive_type] = ACTIONS(3652), - [anon_sym_enum] = ACTIONS(3652), - [anon_sym_class] = ACTIONS(3652), - [anon_sym_struct] = ACTIONS(3652), - [anon_sym_union] = ACTIONS(3652), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3652), - [anon_sym_decltype] = ACTIONS(3652), - [anon_sym_virtual] = ACTIONS(3652), - [anon_sym_alignas] = ACTIONS(3652), - [anon_sym_explicit] = ACTIONS(3652), - [anon_sym_typename] = ACTIONS(3652), - [anon_sym_template] = ACTIONS(3652), - [anon_sym_operator] = ACTIONS(3652), - [anon_sym_friend] = ACTIONS(3652), - [anon_sym_public] = ACTIONS(3652), - [anon_sym_private] = ACTIONS(3652), - [anon_sym_protected] = ACTIONS(3652), - [anon_sym_using] = ACTIONS(3652), - [anon_sym_static_assert] = ACTIONS(3652), - }, - [2023] = { - [sym_identifier] = ACTIONS(3078), - [aux_sym_preproc_def_token1] = ACTIONS(3078), - [anon_sym_COMMA] = ACTIONS(3187), - [aux_sym_preproc_if_token1] = ACTIONS(3078), - [aux_sym_preproc_if_token2] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3078), - [aux_sym_preproc_else_token1] = ACTIONS(3078), - [aux_sym_preproc_elif_token1] = ACTIONS(3078), - [sym_preproc_directive] = ACTIONS(3078), - [anon_sym_LPAREN2] = ACTIONS(3080), - [anon_sym_TILDE] = ACTIONS(3080), - [anon_sym_STAR] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym_SEMI] = ACTIONS(3187), - [anon_sym___extension__] = ACTIONS(3078), - [anon_sym_typedef] = ACTIONS(3078), - [anon_sym_extern] = ACTIONS(3078), - [anon_sym___attribute__] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3080), - [anon_sym___declspec] = ACTIONS(3078), - [anon_sym___based] = ACTIONS(3078), - [anon_sym_signed] = ACTIONS(3078), - [anon_sym_unsigned] = ACTIONS(3078), - [anon_sym_long] = ACTIONS(3078), - [anon_sym_short] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_static] = ACTIONS(3078), - [anon_sym_register] = ACTIONS(3078), - [anon_sym_inline] = ACTIONS(3078), - [anon_sym___inline] = ACTIONS(3078), - [anon_sym___inline__] = ACTIONS(3078), - [anon_sym___forceinline] = ACTIONS(3078), - [anon_sym_thread_local] = ACTIONS(3078), - [anon_sym___thread] = ACTIONS(3078), - [anon_sym_const] = ACTIONS(3078), - [anon_sym_constexpr] = ACTIONS(3078), - [anon_sym_volatile] = ACTIONS(3078), - [anon_sym_restrict] = ACTIONS(3078), - [anon_sym___restrict__] = ACTIONS(3078), - [anon_sym__Atomic] = ACTIONS(3078), - [anon_sym__Noreturn] = ACTIONS(3078), - [anon_sym_noreturn] = ACTIONS(3078), - [anon_sym_mutable] = ACTIONS(3078), - [anon_sym_constinit] = ACTIONS(3078), - [anon_sym_consteval] = ACTIONS(3078), - [sym_primitive_type] = ACTIONS(3078), - [anon_sym_enum] = ACTIONS(3078), - [anon_sym_class] = ACTIONS(3078), - [anon_sym_struct] = ACTIONS(3078), - [anon_sym_union] = ACTIONS(3078), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3078), - [anon_sym_decltype] = ACTIONS(3078), - [anon_sym_virtual] = ACTIONS(3078), - [anon_sym_alignas] = ACTIONS(3078), - [anon_sym_explicit] = ACTIONS(3078), - [anon_sym_typename] = ACTIONS(3078), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_operator] = ACTIONS(3078), - [anon_sym_friend] = ACTIONS(3078), - [anon_sym_public] = ACTIONS(3078), - [anon_sym_private] = ACTIONS(3078), - [anon_sym_protected] = ACTIONS(3078), - [anon_sym_using] = ACTIONS(3078), - [anon_sym_static_assert] = ACTIONS(3078), - }, - [2024] = { - [sym_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [aux_sym_concatenated_string_repeat1] = STATE(2024), - [sym_identifier] = ACTIONS(5919), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5630), - [anon_sym_COMMA] = ACTIONS(5630), - [aux_sym_preproc_if_token2] = ACTIONS(5630), - [aux_sym_preproc_else_token1] = ACTIONS(5630), - [aux_sym_preproc_elif_token1] = ACTIONS(5630), - [anon_sym_LPAREN2] = ACTIONS(5630), - [anon_sym_DASH] = ACTIONS(5635), - [anon_sym_PLUS] = ACTIONS(5635), - [anon_sym_STAR] = ACTIONS(5635), - [anon_sym_SLASH] = ACTIONS(5635), - [anon_sym_PERCENT] = ACTIONS(5635), - [anon_sym_PIPE_PIPE] = ACTIONS(5630), - [anon_sym_AMP_AMP] = ACTIONS(5630), - [anon_sym_PIPE] = ACTIONS(5635), - [anon_sym_CARET] = ACTIONS(5635), - [anon_sym_AMP] = ACTIONS(5635), - [anon_sym_EQ_EQ] = ACTIONS(5630), - [anon_sym_BANG_EQ] = ACTIONS(5630), - [anon_sym_GT] = ACTIONS(5635), - [anon_sym_GT_EQ] = ACTIONS(5630), - [anon_sym_LT_EQ] = ACTIONS(5635), - [anon_sym_LT] = ACTIONS(5635), - [anon_sym_LT_LT] = ACTIONS(5635), - [anon_sym_GT_GT] = ACTIONS(5635), - [anon_sym_LBRACK] = ACTIONS(5630), - [anon_sym_EQ] = ACTIONS(5635), - [anon_sym_QMARK] = ACTIONS(5630), - [anon_sym_STAR_EQ] = ACTIONS(5630), - [anon_sym_SLASH_EQ] = ACTIONS(5630), - [anon_sym_PERCENT_EQ] = ACTIONS(5630), - [anon_sym_PLUS_EQ] = ACTIONS(5630), - [anon_sym_DASH_EQ] = ACTIONS(5630), - [anon_sym_LT_LT_EQ] = ACTIONS(5630), - [anon_sym_GT_GT_EQ] = ACTIONS(5630), - [anon_sym_AMP_EQ] = ACTIONS(5630), - [anon_sym_CARET_EQ] = ACTIONS(5630), - [anon_sym_PIPE_EQ] = ACTIONS(5630), - [anon_sym_and_eq] = ACTIONS(5635), - [anon_sym_or_eq] = ACTIONS(5635), - [anon_sym_xor_eq] = ACTIONS(5635), - [anon_sym_LT_EQ_GT] = ACTIONS(5630), - [anon_sym_or] = ACTIONS(5635), - [anon_sym_and] = ACTIONS(5635), - [anon_sym_bitor] = ACTIONS(5635), - [anon_sym_xor] = ACTIONS(5635), - [anon_sym_bitand] = ACTIONS(5635), - [anon_sym_not_eq] = ACTIONS(5635), - [anon_sym_DASH_DASH] = ACTIONS(5630), - [anon_sym_PLUS_PLUS] = ACTIONS(5630), - [anon_sym_DOT] = ACTIONS(5635), - [anon_sym_DOT_STAR] = ACTIONS(5630), - [anon_sym_DASH_GT] = ACTIONS(5630), - [anon_sym_L_DQUOTE] = ACTIONS(5922), - [anon_sym_u_DQUOTE] = ACTIONS(5922), - [anon_sym_U_DQUOTE] = ACTIONS(5922), - [anon_sym_u8_DQUOTE] = ACTIONS(5922), - [anon_sym_DQUOTE] = ACTIONS(5922), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5925), - [anon_sym_LR_DQUOTE] = ACTIONS(5925), - [anon_sym_uR_DQUOTE] = ACTIONS(5925), - [anon_sym_UR_DQUOTE] = ACTIONS(5925), - [anon_sym_u8R_DQUOTE] = ACTIONS(5925), - [sym_literal_suffix] = ACTIONS(5635), - }, - [2025] = { - [sym_identifier] = ACTIONS(3261), - [aux_sym_preproc_def_token1] = ACTIONS(3261), - [aux_sym_preproc_if_token1] = ACTIONS(3261), - [aux_sym_preproc_if_token2] = ACTIONS(3261), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3261), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3261), - [aux_sym_preproc_else_token1] = ACTIONS(3261), - [aux_sym_preproc_elif_token1] = ACTIONS(3261), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3261), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3261), - [sym_preproc_directive] = ACTIONS(3261), - [anon_sym_LPAREN2] = ACTIONS(3263), - [anon_sym_TILDE] = ACTIONS(3263), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP_AMP] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3261), - [anon_sym___extension__] = ACTIONS(3261), - [anon_sym_typedef] = ACTIONS(3261), - [anon_sym_extern] = ACTIONS(3261), - [anon_sym___attribute__] = ACTIONS(3261), - [anon_sym_COLON_COLON] = ACTIONS(3263), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3263), - [anon_sym___declspec] = ACTIONS(3261), - [anon_sym___based] = ACTIONS(3261), - [anon_sym_signed] = ACTIONS(3261), - [anon_sym_unsigned] = ACTIONS(3261), - [anon_sym_long] = ACTIONS(3261), - [anon_sym_short] = ACTIONS(3261), - [anon_sym_LBRACK] = ACTIONS(3261), - [anon_sym_static] = ACTIONS(3261), - [anon_sym_register] = ACTIONS(3261), - [anon_sym_inline] = ACTIONS(3261), - [anon_sym___inline] = ACTIONS(3261), - [anon_sym___inline__] = ACTIONS(3261), - [anon_sym___forceinline] = ACTIONS(3261), - [anon_sym_thread_local] = ACTIONS(3261), - [anon_sym___thread] = ACTIONS(3261), - [anon_sym_const] = ACTIONS(3261), - [anon_sym_constexpr] = ACTIONS(3261), - [anon_sym_volatile] = ACTIONS(3261), - [anon_sym_restrict] = ACTIONS(3261), - [anon_sym___restrict__] = ACTIONS(3261), - [anon_sym__Atomic] = ACTIONS(3261), - [anon_sym__Noreturn] = ACTIONS(3261), - [anon_sym_noreturn] = ACTIONS(3261), - [anon_sym_mutable] = ACTIONS(3261), - [anon_sym_constinit] = ACTIONS(3261), - [anon_sym_consteval] = ACTIONS(3261), - [sym_primitive_type] = ACTIONS(3261), - [anon_sym_enum] = ACTIONS(3261), - [anon_sym_class] = ACTIONS(3261), - [anon_sym_struct] = ACTIONS(3261), - [anon_sym_union] = ACTIONS(3261), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3261), - [anon_sym_decltype] = ACTIONS(3261), - [anon_sym_virtual] = ACTIONS(3261), - [anon_sym_alignas] = ACTIONS(3261), - [anon_sym_explicit] = ACTIONS(3261), - [anon_sym_typename] = ACTIONS(3261), - [anon_sym_template] = ACTIONS(3261), - [anon_sym_operator] = ACTIONS(3261), - [anon_sym_friend] = ACTIONS(3261), - [anon_sym_public] = ACTIONS(3261), - [anon_sym_private] = ACTIONS(3261), - [anon_sym_protected] = ACTIONS(3261), - [anon_sym_using] = ACTIONS(3261), - [anon_sym_static_assert] = ACTIONS(3261), - }, - [2026] = { - [sym_identifier] = ACTIONS(3350), - [aux_sym_preproc_def_token1] = ACTIONS(3350), - [aux_sym_preproc_if_token1] = ACTIONS(3350), - [aux_sym_preproc_if_token2] = ACTIONS(3350), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3350), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3350), - [aux_sym_preproc_else_token1] = ACTIONS(3350), - [aux_sym_preproc_elif_token1] = ACTIONS(3350), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3350), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3350), - [sym_preproc_directive] = ACTIONS(3350), - [anon_sym_LPAREN2] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(3352), - [anon_sym_STAR] = ACTIONS(3352), - [anon_sym_AMP_AMP] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3350), - [anon_sym___extension__] = ACTIONS(3350), - [anon_sym_typedef] = ACTIONS(3350), - [anon_sym_extern] = ACTIONS(3350), - [anon_sym___attribute__] = ACTIONS(3350), - [anon_sym_COLON_COLON] = ACTIONS(3352), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3352), - [anon_sym___declspec] = ACTIONS(3350), - [anon_sym___based] = ACTIONS(3350), - [anon_sym_signed] = ACTIONS(3350), - [anon_sym_unsigned] = ACTIONS(3350), - [anon_sym_long] = ACTIONS(3350), - [anon_sym_short] = ACTIONS(3350), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_static] = ACTIONS(3350), - [anon_sym_register] = ACTIONS(3350), - [anon_sym_inline] = ACTIONS(3350), - [anon_sym___inline] = ACTIONS(3350), - [anon_sym___inline__] = ACTIONS(3350), - [anon_sym___forceinline] = ACTIONS(3350), - [anon_sym_thread_local] = ACTIONS(3350), - [anon_sym___thread] = ACTIONS(3350), - [anon_sym_const] = ACTIONS(3350), - [anon_sym_constexpr] = ACTIONS(3350), - [anon_sym_volatile] = ACTIONS(3350), - [anon_sym_restrict] = ACTIONS(3350), - [anon_sym___restrict__] = ACTIONS(3350), - [anon_sym__Atomic] = ACTIONS(3350), - [anon_sym__Noreturn] = ACTIONS(3350), - [anon_sym_noreturn] = ACTIONS(3350), - [anon_sym_mutable] = ACTIONS(3350), - [anon_sym_constinit] = ACTIONS(3350), - [anon_sym_consteval] = ACTIONS(3350), - [sym_primitive_type] = ACTIONS(3350), - [anon_sym_enum] = ACTIONS(3350), - [anon_sym_class] = ACTIONS(3350), - [anon_sym_struct] = ACTIONS(3350), - [anon_sym_union] = ACTIONS(3350), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3350), - [anon_sym_decltype] = ACTIONS(3350), - [anon_sym_virtual] = ACTIONS(3350), - [anon_sym_alignas] = ACTIONS(3350), - [anon_sym_explicit] = ACTIONS(3350), - [anon_sym_typename] = ACTIONS(3350), - [anon_sym_template] = ACTIONS(3350), - [anon_sym_operator] = ACTIONS(3350), - [anon_sym_friend] = ACTIONS(3350), - [anon_sym_public] = ACTIONS(3350), - [anon_sym_private] = ACTIONS(3350), - [anon_sym_protected] = ACTIONS(3350), - [anon_sym_using] = ACTIONS(3350), - [anon_sym_static_assert] = ACTIONS(3350), - }, - [2027] = { - [sym_string_literal] = STATE(2073), - [sym_template_argument_list] = STATE(3686), - [sym_raw_string_literal] = STATE(2073), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_RPAREN] = ACTIONS(5888), - [anon_sym_LPAREN2] = ACTIONS(5888), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(5515), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5888), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_LBRACK] = ACTIONS(5890), - [anon_sym_EQ] = ACTIONS(4837), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4829), - [anon_sym_SLASH_EQ] = ACTIONS(4829), - [anon_sym_PERCENT_EQ] = ACTIONS(4829), - [anon_sym_PLUS_EQ] = ACTIONS(4829), - [anon_sym_DASH_EQ] = ACTIONS(4829), - [anon_sym_LT_LT_EQ] = ACTIONS(4829), - [anon_sym_GT_GT_EQ] = ACTIONS(4829), - [anon_sym_AMP_EQ] = ACTIONS(4829), - [anon_sym_CARET_EQ] = ACTIONS(4829), - [anon_sym_PIPE_EQ] = ACTIONS(4829), - [anon_sym_and_eq] = ACTIONS(4829), - [anon_sym_or_eq] = ACTIONS(4829), - [anon_sym_xor_eq] = ACTIONS(4829), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4829), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4829), - [anon_sym_not_eq] = ACTIONS(4829), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4837), - [anon_sym_L_DQUOTE] = ACTIONS(5492), - [anon_sym_u_DQUOTE] = ACTIONS(5492), - [anon_sym_U_DQUOTE] = ACTIONS(5492), - [anon_sym_u8_DQUOTE] = ACTIONS(5492), - [anon_sym_DQUOTE] = ACTIONS(5492), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5494), - [anon_sym_LR_DQUOTE] = ACTIONS(5494), - [anon_sym_uR_DQUOTE] = ACTIONS(5494), - [anon_sym_UR_DQUOTE] = ACTIONS(5494), - [anon_sym_u8R_DQUOTE] = ACTIONS(5494), - [anon_sym_DASH_GT_STAR] = ACTIONS(4829), - }, - [2028] = { - [sym_identifier] = ACTIONS(3362), - [aux_sym_preproc_def_token1] = ACTIONS(3362), - [aux_sym_preproc_if_token1] = ACTIONS(3362), - [aux_sym_preproc_if_token2] = ACTIONS(3362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3362), - [aux_sym_preproc_else_token1] = ACTIONS(3362), - [aux_sym_preproc_elif_token1] = ACTIONS(3362), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3362), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3362), - [sym_preproc_directive] = ACTIONS(3362), - [anon_sym_LPAREN2] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(3364), - [anon_sym_STAR] = ACTIONS(3364), - [anon_sym_AMP_AMP] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3362), - [anon_sym___extension__] = ACTIONS(3362), - [anon_sym_typedef] = ACTIONS(3362), - [anon_sym_extern] = ACTIONS(3362), - [anon_sym___attribute__] = ACTIONS(3362), - [anon_sym_COLON_COLON] = ACTIONS(3364), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3364), - [anon_sym___declspec] = ACTIONS(3362), - [anon_sym___based] = ACTIONS(3362), - [anon_sym_signed] = ACTIONS(3362), - [anon_sym_unsigned] = ACTIONS(3362), - [anon_sym_long] = ACTIONS(3362), - [anon_sym_short] = ACTIONS(3362), - [anon_sym_LBRACK] = ACTIONS(3362), - [anon_sym_static] = ACTIONS(3362), - [anon_sym_register] = ACTIONS(3362), - [anon_sym_inline] = ACTIONS(3362), - [anon_sym___inline] = ACTIONS(3362), - [anon_sym___inline__] = ACTIONS(3362), - [anon_sym___forceinline] = ACTIONS(3362), - [anon_sym_thread_local] = ACTIONS(3362), - [anon_sym___thread] = ACTIONS(3362), - [anon_sym_const] = ACTIONS(3362), - [anon_sym_constexpr] = ACTIONS(3362), - [anon_sym_volatile] = ACTIONS(3362), - [anon_sym_restrict] = ACTIONS(3362), - [anon_sym___restrict__] = ACTIONS(3362), - [anon_sym__Atomic] = ACTIONS(3362), - [anon_sym__Noreturn] = ACTIONS(3362), - [anon_sym_noreturn] = ACTIONS(3362), - [anon_sym_mutable] = ACTIONS(3362), - [anon_sym_constinit] = ACTIONS(3362), - [anon_sym_consteval] = ACTIONS(3362), - [sym_primitive_type] = ACTIONS(3362), - [anon_sym_enum] = ACTIONS(3362), - [anon_sym_class] = ACTIONS(3362), - [anon_sym_struct] = ACTIONS(3362), - [anon_sym_union] = ACTIONS(3362), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3362), - [anon_sym_decltype] = ACTIONS(3362), - [anon_sym_virtual] = ACTIONS(3362), - [anon_sym_alignas] = ACTIONS(3362), - [anon_sym_explicit] = ACTIONS(3362), - [anon_sym_typename] = ACTIONS(3362), - [anon_sym_template] = ACTIONS(3362), - [anon_sym_operator] = ACTIONS(3362), - [anon_sym_friend] = ACTIONS(3362), - [anon_sym_public] = ACTIONS(3362), - [anon_sym_private] = ACTIONS(3362), - [anon_sym_protected] = ACTIONS(3362), - [anon_sym_using] = ACTIONS(3362), - [anon_sym_static_assert] = ACTIONS(3362), - }, - [2029] = { - [sym_identifier] = ACTIONS(3366), - [aux_sym_preproc_def_token1] = ACTIONS(3366), - [aux_sym_preproc_if_token1] = ACTIONS(3366), - [aux_sym_preproc_if_token2] = ACTIONS(3366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3366), - [aux_sym_preproc_else_token1] = ACTIONS(3366), - [aux_sym_preproc_elif_token1] = ACTIONS(3366), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3366), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3366), - [sym_preproc_directive] = ACTIONS(3366), - [anon_sym_LPAREN2] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(3368), - [anon_sym_STAR] = ACTIONS(3368), - [anon_sym_AMP_AMP] = ACTIONS(3368), - [anon_sym_AMP] = ACTIONS(3366), - [anon_sym___extension__] = ACTIONS(3366), - [anon_sym_typedef] = ACTIONS(3366), - [anon_sym_extern] = ACTIONS(3366), - [anon_sym___attribute__] = ACTIONS(3366), - [anon_sym_COLON_COLON] = ACTIONS(3368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3368), - [anon_sym___declspec] = ACTIONS(3366), - [anon_sym___based] = ACTIONS(3366), - [anon_sym_signed] = ACTIONS(3366), - [anon_sym_unsigned] = ACTIONS(3366), - [anon_sym_long] = ACTIONS(3366), - [anon_sym_short] = ACTIONS(3366), - [anon_sym_LBRACK] = ACTIONS(3366), - [anon_sym_static] = ACTIONS(3366), - [anon_sym_register] = ACTIONS(3366), - [anon_sym_inline] = ACTIONS(3366), - [anon_sym___inline] = ACTIONS(3366), - [anon_sym___inline__] = ACTIONS(3366), - [anon_sym___forceinline] = ACTIONS(3366), - [anon_sym_thread_local] = ACTIONS(3366), - [anon_sym___thread] = ACTIONS(3366), - [anon_sym_const] = ACTIONS(3366), - [anon_sym_constexpr] = ACTIONS(3366), - [anon_sym_volatile] = ACTIONS(3366), - [anon_sym_restrict] = ACTIONS(3366), - [anon_sym___restrict__] = ACTIONS(3366), - [anon_sym__Atomic] = ACTIONS(3366), - [anon_sym__Noreturn] = ACTIONS(3366), - [anon_sym_noreturn] = ACTIONS(3366), - [anon_sym_mutable] = ACTIONS(3366), - [anon_sym_constinit] = ACTIONS(3366), - [anon_sym_consteval] = ACTIONS(3366), - [sym_primitive_type] = ACTIONS(3366), - [anon_sym_enum] = ACTIONS(3366), - [anon_sym_class] = ACTIONS(3366), - [anon_sym_struct] = ACTIONS(3366), - [anon_sym_union] = ACTIONS(3366), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3366), - [anon_sym_decltype] = ACTIONS(3366), - [anon_sym_virtual] = ACTIONS(3366), - [anon_sym_alignas] = ACTIONS(3366), - [anon_sym_explicit] = ACTIONS(3366), - [anon_sym_typename] = ACTIONS(3366), - [anon_sym_template] = ACTIONS(3366), - [anon_sym_operator] = ACTIONS(3366), - [anon_sym_friend] = ACTIONS(3366), - [anon_sym_public] = ACTIONS(3366), - [anon_sym_private] = ACTIONS(3366), - [anon_sym_protected] = ACTIONS(3366), - [anon_sym_using] = ACTIONS(3366), - [anon_sym_static_assert] = ACTIONS(3366), - }, - [2030] = { - [sym_identifier] = ACTIONS(3372), - [aux_sym_preproc_def_token1] = ACTIONS(3372), - [aux_sym_preproc_if_token1] = ACTIONS(3372), - [aux_sym_preproc_if_token2] = ACTIONS(3372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3372), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3372), - [aux_sym_preproc_else_token1] = ACTIONS(3372), - [aux_sym_preproc_elif_token1] = ACTIONS(3372), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3372), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3372), - [sym_preproc_directive] = ACTIONS(3372), - [anon_sym_LPAREN2] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(3374), - [anon_sym_STAR] = ACTIONS(3374), - [anon_sym_AMP_AMP] = ACTIONS(3374), - [anon_sym_AMP] = ACTIONS(3372), - [anon_sym___extension__] = ACTIONS(3372), - [anon_sym_typedef] = ACTIONS(3372), - [anon_sym_extern] = ACTIONS(3372), - [anon_sym___attribute__] = ACTIONS(3372), - [anon_sym_COLON_COLON] = ACTIONS(3374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3374), - [anon_sym___declspec] = ACTIONS(3372), - [anon_sym___based] = ACTIONS(3372), - [anon_sym_signed] = ACTIONS(3372), - [anon_sym_unsigned] = ACTIONS(3372), - [anon_sym_long] = ACTIONS(3372), - [anon_sym_short] = ACTIONS(3372), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_static] = ACTIONS(3372), - [anon_sym_register] = ACTIONS(3372), - [anon_sym_inline] = ACTIONS(3372), - [anon_sym___inline] = ACTIONS(3372), - [anon_sym___inline__] = ACTIONS(3372), - [anon_sym___forceinline] = ACTIONS(3372), - [anon_sym_thread_local] = ACTIONS(3372), - [anon_sym___thread] = ACTIONS(3372), - [anon_sym_const] = ACTIONS(3372), - [anon_sym_constexpr] = ACTIONS(3372), - [anon_sym_volatile] = ACTIONS(3372), - [anon_sym_restrict] = ACTIONS(3372), - [anon_sym___restrict__] = ACTIONS(3372), - [anon_sym__Atomic] = ACTIONS(3372), - [anon_sym__Noreturn] = ACTIONS(3372), - [anon_sym_noreturn] = ACTIONS(3372), - [anon_sym_mutable] = ACTIONS(3372), - [anon_sym_constinit] = ACTIONS(3372), - [anon_sym_consteval] = ACTIONS(3372), - [sym_primitive_type] = ACTIONS(3372), - [anon_sym_enum] = ACTIONS(3372), - [anon_sym_class] = ACTIONS(3372), - [anon_sym_struct] = ACTIONS(3372), - [anon_sym_union] = ACTIONS(3372), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3372), - [anon_sym_decltype] = ACTIONS(3372), - [anon_sym_virtual] = ACTIONS(3372), - [anon_sym_alignas] = ACTIONS(3372), - [anon_sym_explicit] = ACTIONS(3372), - [anon_sym_typename] = ACTIONS(3372), - [anon_sym_template] = ACTIONS(3372), - [anon_sym_operator] = ACTIONS(3372), - [anon_sym_friend] = ACTIONS(3372), - [anon_sym_public] = ACTIONS(3372), - [anon_sym_private] = ACTIONS(3372), - [anon_sym_protected] = ACTIONS(3372), - [anon_sym_using] = ACTIONS(3372), - [anon_sym_static_assert] = ACTIONS(3372), - }, - [2031] = { - [sym_identifier] = ACTIONS(5928), - [aux_sym_preproc_def_token1] = ACTIONS(5928), - [aux_sym_preproc_if_token1] = ACTIONS(5928), - [aux_sym_preproc_if_token2] = ACTIONS(5928), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5928), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5928), - [aux_sym_preproc_else_token1] = ACTIONS(5928), - [aux_sym_preproc_elif_token1] = ACTIONS(5928), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5928), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5928), - [sym_preproc_directive] = ACTIONS(5928), - [anon_sym_LPAREN2] = ACTIONS(5930), - [anon_sym_TILDE] = ACTIONS(5930), - [anon_sym_STAR] = ACTIONS(5930), - [anon_sym_AMP_AMP] = ACTIONS(5930), - [anon_sym_AMP] = ACTIONS(5928), - [anon_sym___extension__] = ACTIONS(5928), - [anon_sym_typedef] = ACTIONS(5928), - [anon_sym_extern] = ACTIONS(5928), - [anon_sym___attribute__] = ACTIONS(5928), - [anon_sym_COLON_COLON] = ACTIONS(5930), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5930), - [anon_sym___declspec] = ACTIONS(5928), - [anon_sym___based] = ACTIONS(5928), - [anon_sym_signed] = ACTIONS(5928), - [anon_sym_unsigned] = ACTIONS(5928), - [anon_sym_long] = ACTIONS(5928), - [anon_sym_short] = ACTIONS(5928), - [anon_sym_LBRACK] = ACTIONS(5928), - [anon_sym_static] = ACTIONS(5928), - [anon_sym_register] = ACTIONS(5928), - [anon_sym_inline] = ACTIONS(5928), - [anon_sym___inline] = ACTIONS(5928), - [anon_sym___inline__] = ACTIONS(5928), - [anon_sym___forceinline] = ACTIONS(5928), - [anon_sym_thread_local] = ACTIONS(5928), - [anon_sym___thread] = ACTIONS(5928), - [anon_sym_const] = ACTIONS(5928), - [anon_sym_constexpr] = ACTIONS(5928), - [anon_sym_volatile] = ACTIONS(5928), - [anon_sym_restrict] = ACTIONS(5928), - [anon_sym___restrict__] = ACTIONS(5928), - [anon_sym__Atomic] = ACTIONS(5928), - [anon_sym__Noreturn] = ACTIONS(5928), - [anon_sym_noreturn] = ACTIONS(5928), - [anon_sym_mutable] = ACTIONS(5928), - [anon_sym_constinit] = ACTIONS(5928), - [anon_sym_consteval] = ACTIONS(5928), - [sym_primitive_type] = ACTIONS(5928), - [anon_sym_enum] = ACTIONS(5928), - [anon_sym_class] = ACTIONS(5928), - [anon_sym_struct] = ACTIONS(5928), - [anon_sym_union] = ACTIONS(5928), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5928), - [anon_sym_decltype] = ACTIONS(5928), - [anon_sym_virtual] = ACTIONS(5928), - [anon_sym_alignas] = ACTIONS(5928), - [anon_sym_explicit] = ACTIONS(5928), - [anon_sym_typename] = ACTIONS(5928), - [anon_sym_template] = ACTIONS(5928), - [anon_sym_operator] = ACTIONS(5928), - [anon_sym_friend] = ACTIONS(5928), - [anon_sym_public] = ACTIONS(5928), - [anon_sym_private] = ACTIONS(5928), - [anon_sym_protected] = ACTIONS(5928), - [anon_sym_using] = ACTIONS(5928), - [anon_sym_static_assert] = ACTIONS(5928), - }, - [2032] = { - [sym_identifier] = ACTIONS(3376), - [aux_sym_preproc_def_token1] = ACTIONS(3376), - [aux_sym_preproc_if_token1] = ACTIONS(3376), - [aux_sym_preproc_if_token2] = ACTIONS(3376), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3376), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3376), - [aux_sym_preproc_else_token1] = ACTIONS(3376), - [aux_sym_preproc_elif_token1] = ACTIONS(3376), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3376), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3376), - [sym_preproc_directive] = ACTIONS(3376), - [anon_sym_LPAREN2] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(3378), - [anon_sym_STAR] = ACTIONS(3378), - [anon_sym_AMP_AMP] = ACTIONS(3378), - [anon_sym_AMP] = ACTIONS(3376), - [anon_sym___extension__] = ACTIONS(3376), - [anon_sym_typedef] = ACTIONS(3376), - [anon_sym_extern] = ACTIONS(3376), - [anon_sym___attribute__] = ACTIONS(3376), - [anon_sym_COLON_COLON] = ACTIONS(3378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3378), - [anon_sym___declspec] = ACTIONS(3376), - [anon_sym___based] = ACTIONS(3376), - [anon_sym_signed] = ACTIONS(3376), - [anon_sym_unsigned] = ACTIONS(3376), - [anon_sym_long] = ACTIONS(3376), - [anon_sym_short] = ACTIONS(3376), - [anon_sym_LBRACK] = ACTIONS(3376), - [anon_sym_static] = ACTIONS(3376), - [anon_sym_register] = ACTIONS(3376), - [anon_sym_inline] = ACTIONS(3376), - [anon_sym___inline] = ACTIONS(3376), - [anon_sym___inline__] = ACTIONS(3376), - [anon_sym___forceinline] = ACTIONS(3376), - [anon_sym_thread_local] = ACTIONS(3376), - [anon_sym___thread] = ACTIONS(3376), - [anon_sym_const] = ACTIONS(3376), - [anon_sym_constexpr] = ACTIONS(3376), - [anon_sym_volatile] = ACTIONS(3376), - [anon_sym_restrict] = ACTIONS(3376), - [anon_sym___restrict__] = ACTIONS(3376), - [anon_sym__Atomic] = ACTIONS(3376), - [anon_sym__Noreturn] = ACTIONS(3376), - [anon_sym_noreturn] = ACTIONS(3376), - [anon_sym_mutable] = ACTIONS(3376), - [anon_sym_constinit] = ACTIONS(3376), - [anon_sym_consteval] = ACTIONS(3376), - [sym_primitive_type] = ACTIONS(3376), - [anon_sym_enum] = ACTIONS(3376), - [anon_sym_class] = ACTIONS(3376), - [anon_sym_struct] = ACTIONS(3376), - [anon_sym_union] = ACTIONS(3376), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3376), - [anon_sym_decltype] = ACTIONS(3376), - [anon_sym_virtual] = ACTIONS(3376), - [anon_sym_alignas] = ACTIONS(3376), - [anon_sym_explicit] = ACTIONS(3376), - [anon_sym_typename] = ACTIONS(3376), - [anon_sym_template] = ACTIONS(3376), - [anon_sym_operator] = ACTIONS(3376), - [anon_sym_friend] = ACTIONS(3376), - [anon_sym_public] = ACTIONS(3376), - [anon_sym_private] = ACTIONS(3376), - [anon_sym_protected] = ACTIONS(3376), - [anon_sym_using] = ACTIONS(3376), - [anon_sym_static_assert] = ACTIONS(3376), - }, - [2033] = { + [2009] = { [sym_identifier] = ACTIONS(3380), [aux_sym_preproc_def_token1] = ACTIONS(3380), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3382), [aux_sym_preproc_if_token1] = ACTIONS(3380), [aux_sym_preproc_if_token2] = ACTIONS(3380), [aux_sym_preproc_ifdef_token1] = ACTIONS(3380), @@ -301617,220 +288698,1020 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(3380), [anon_sym_using] = ACTIONS(3380), [anon_sym_static_assert] = ACTIONS(3380), + [sym_semgrep_metavar] = ACTIONS(3382), }, - [2034] = { - [sym_string_literal] = STATE(2073), - [sym_template_argument_list] = STATE(3578), - [sym_raw_string_literal] = STATE(2073), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_RPAREN] = ACTIONS(5932), - [anon_sym_LPAREN2] = ACTIONS(5932), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(5485), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5488), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_LBRACK] = ACTIONS(5935), - [anon_sym_EQ] = ACTIONS(4837), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4829), - [anon_sym_SLASH_EQ] = ACTIONS(4829), - [anon_sym_PERCENT_EQ] = ACTIONS(4829), - [anon_sym_PLUS_EQ] = ACTIONS(4829), - [anon_sym_DASH_EQ] = ACTIONS(4829), - [anon_sym_LT_LT_EQ] = ACTIONS(4829), - [anon_sym_GT_GT_EQ] = ACTIONS(4829), - [anon_sym_AMP_EQ] = ACTIONS(4829), - [anon_sym_CARET_EQ] = ACTIONS(4829), - [anon_sym_PIPE_EQ] = ACTIONS(4829), - [anon_sym_and_eq] = ACTIONS(4829), - [anon_sym_or_eq] = ACTIONS(4829), - [anon_sym_xor_eq] = ACTIONS(4829), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4829), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4829), - [anon_sym_not_eq] = ACTIONS(4829), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4837), - [anon_sym_L_DQUOTE] = ACTIONS(5492), - [anon_sym_u_DQUOTE] = ACTIONS(5492), - [anon_sym_U_DQUOTE] = ACTIONS(5492), - [anon_sym_u8_DQUOTE] = ACTIONS(5492), - [anon_sym_DQUOTE] = ACTIONS(5492), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5494), - [anon_sym_LR_DQUOTE] = ACTIONS(5494), - [anon_sym_uR_DQUOTE] = ACTIONS(5494), - [anon_sym_UR_DQUOTE] = ACTIONS(5494), - [anon_sym_u8R_DQUOTE] = ACTIONS(5494), - [anon_sym_DASH_GT_STAR] = ACTIONS(4829), + [2010] = { + [sym_identifier] = ACTIONS(5900), + [aux_sym_preproc_def_token1] = ACTIONS(5900), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5902), + [aux_sym_preproc_if_token1] = ACTIONS(5900), + [aux_sym_preproc_if_token2] = ACTIONS(5900), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5900), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5900), + [aux_sym_preproc_else_token1] = ACTIONS(5900), + [aux_sym_preproc_elif_token1] = ACTIONS(5900), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5900), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5900), + [sym_preproc_directive] = ACTIONS(5900), + [anon_sym_LPAREN2] = ACTIONS(5902), + [anon_sym_TILDE] = ACTIONS(5902), + [anon_sym_STAR] = ACTIONS(5902), + [anon_sym_AMP_AMP] = ACTIONS(5902), + [anon_sym_AMP] = ACTIONS(5900), + [anon_sym___extension__] = ACTIONS(5900), + [anon_sym_typedef] = ACTIONS(5900), + [anon_sym_extern] = ACTIONS(5900), + [anon_sym___attribute__] = ACTIONS(5900), + [anon_sym_COLON_COLON] = ACTIONS(5902), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5902), + [anon_sym___declspec] = ACTIONS(5900), + [anon_sym___based] = ACTIONS(5900), + [anon_sym_signed] = ACTIONS(5900), + [anon_sym_unsigned] = ACTIONS(5900), + [anon_sym_long] = ACTIONS(5900), + [anon_sym_short] = ACTIONS(5900), + [anon_sym_LBRACK] = ACTIONS(5900), + [anon_sym_static] = ACTIONS(5900), + [anon_sym_register] = ACTIONS(5900), + [anon_sym_inline] = ACTIONS(5900), + [anon_sym___inline] = ACTIONS(5900), + [anon_sym___inline__] = ACTIONS(5900), + [anon_sym___forceinline] = ACTIONS(5900), + [anon_sym_thread_local] = ACTIONS(5900), + [anon_sym___thread] = ACTIONS(5900), + [anon_sym_const] = ACTIONS(5900), + [anon_sym_constexpr] = ACTIONS(5900), + [anon_sym_volatile] = ACTIONS(5900), + [anon_sym_restrict] = ACTIONS(5900), + [anon_sym___restrict__] = ACTIONS(5900), + [anon_sym__Atomic] = ACTIONS(5900), + [anon_sym__Noreturn] = ACTIONS(5900), + [anon_sym_noreturn] = ACTIONS(5900), + [anon_sym_mutable] = ACTIONS(5900), + [anon_sym_constinit] = ACTIONS(5900), + [anon_sym_consteval] = ACTIONS(5900), + [sym_primitive_type] = ACTIONS(5900), + [anon_sym_enum] = ACTIONS(5900), + [anon_sym_class] = ACTIONS(5900), + [anon_sym_struct] = ACTIONS(5900), + [anon_sym_union] = ACTIONS(5900), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5900), + [anon_sym_decltype] = ACTIONS(5900), + [anon_sym_virtual] = ACTIONS(5900), + [anon_sym_alignas] = ACTIONS(5900), + [anon_sym_explicit] = ACTIONS(5900), + [anon_sym_typename] = ACTIONS(5900), + [anon_sym_template] = ACTIONS(5900), + [anon_sym_operator] = ACTIONS(5900), + [anon_sym_friend] = ACTIONS(5900), + [anon_sym_public] = ACTIONS(5900), + [anon_sym_private] = ACTIONS(5900), + [anon_sym_protected] = ACTIONS(5900), + [anon_sym_using] = ACTIONS(5900), + [anon_sym_static_assert] = ACTIONS(5900), + [sym_semgrep_metavar] = ACTIONS(5902), }, - [2035] = { - [sym_identifier] = ACTIONS(3384), - [aux_sym_preproc_def_token1] = ACTIONS(3384), - [aux_sym_preproc_if_token1] = ACTIONS(3384), - [aux_sym_preproc_if_token2] = ACTIONS(3384), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3384), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3384), - [aux_sym_preproc_else_token1] = ACTIONS(3384), - [aux_sym_preproc_elif_token1] = ACTIONS(3384), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3384), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3384), - [sym_preproc_directive] = ACTIONS(3384), - [anon_sym_LPAREN2] = ACTIONS(3386), - [anon_sym_TILDE] = ACTIONS(3386), - [anon_sym_STAR] = ACTIONS(3386), - [anon_sym_AMP_AMP] = ACTIONS(3386), - [anon_sym_AMP] = ACTIONS(3384), - [anon_sym___extension__] = ACTIONS(3384), - [anon_sym_typedef] = ACTIONS(3384), - [anon_sym_extern] = ACTIONS(3384), - [anon_sym___attribute__] = ACTIONS(3384), - [anon_sym_COLON_COLON] = ACTIONS(3386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3386), - [anon_sym___declspec] = ACTIONS(3384), - [anon_sym___based] = ACTIONS(3384), - [anon_sym_signed] = ACTIONS(3384), - [anon_sym_unsigned] = ACTIONS(3384), - [anon_sym_long] = ACTIONS(3384), - [anon_sym_short] = ACTIONS(3384), - [anon_sym_LBRACK] = ACTIONS(3384), - [anon_sym_static] = ACTIONS(3384), - [anon_sym_register] = ACTIONS(3384), - [anon_sym_inline] = ACTIONS(3384), - [anon_sym___inline] = ACTIONS(3384), - [anon_sym___inline__] = ACTIONS(3384), - [anon_sym___forceinline] = ACTIONS(3384), - [anon_sym_thread_local] = ACTIONS(3384), - [anon_sym___thread] = ACTIONS(3384), - [anon_sym_const] = ACTIONS(3384), - [anon_sym_constexpr] = ACTIONS(3384), - [anon_sym_volatile] = ACTIONS(3384), - [anon_sym_restrict] = ACTIONS(3384), - [anon_sym___restrict__] = ACTIONS(3384), - [anon_sym__Atomic] = ACTIONS(3384), - [anon_sym__Noreturn] = ACTIONS(3384), - [anon_sym_noreturn] = ACTIONS(3384), - [anon_sym_mutable] = ACTIONS(3384), - [anon_sym_constinit] = ACTIONS(3384), - [anon_sym_consteval] = ACTIONS(3384), - [sym_primitive_type] = ACTIONS(3384), - [anon_sym_enum] = ACTIONS(3384), - [anon_sym_class] = ACTIONS(3384), - [anon_sym_struct] = ACTIONS(3384), - [anon_sym_union] = ACTIONS(3384), + [2011] = { + [sym_identifier] = ACTIONS(3503), + [aux_sym_preproc_def_token1] = ACTIONS(3503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3505), + [aux_sym_preproc_if_token1] = ACTIONS(3503), + [aux_sym_preproc_if_token2] = ACTIONS(3503), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3503), + [aux_sym_preproc_else_token1] = ACTIONS(3503), + [aux_sym_preproc_elif_token1] = ACTIONS(3503), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3503), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3503), + [sym_preproc_directive] = ACTIONS(3503), + [anon_sym_LPAREN2] = ACTIONS(3505), + [anon_sym_TILDE] = ACTIONS(3505), + [anon_sym_STAR] = ACTIONS(3505), + [anon_sym_AMP_AMP] = ACTIONS(3505), + [anon_sym_AMP] = ACTIONS(3503), + [anon_sym___extension__] = ACTIONS(3503), + [anon_sym_typedef] = ACTIONS(3503), + [anon_sym_extern] = ACTIONS(3503), + [anon_sym___attribute__] = ACTIONS(3503), + [anon_sym_COLON_COLON] = ACTIONS(3505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3505), + [anon_sym___declspec] = ACTIONS(3503), + [anon_sym___based] = ACTIONS(3503), + [anon_sym_signed] = ACTIONS(3503), + [anon_sym_unsigned] = ACTIONS(3503), + [anon_sym_long] = ACTIONS(3503), + [anon_sym_short] = ACTIONS(3503), + [anon_sym_LBRACK] = ACTIONS(3503), + [anon_sym_static] = ACTIONS(3503), + [anon_sym_register] = ACTIONS(3503), + [anon_sym_inline] = ACTIONS(3503), + [anon_sym___inline] = ACTIONS(3503), + [anon_sym___inline__] = ACTIONS(3503), + [anon_sym___forceinline] = ACTIONS(3503), + [anon_sym_thread_local] = ACTIONS(3503), + [anon_sym___thread] = ACTIONS(3503), + [anon_sym_const] = ACTIONS(3503), + [anon_sym_constexpr] = ACTIONS(3503), + [anon_sym_volatile] = ACTIONS(3503), + [anon_sym_restrict] = ACTIONS(3503), + [anon_sym___restrict__] = ACTIONS(3503), + [anon_sym__Atomic] = ACTIONS(3503), + [anon_sym__Noreturn] = ACTIONS(3503), + [anon_sym_noreturn] = ACTIONS(3503), + [anon_sym_mutable] = ACTIONS(3503), + [anon_sym_constinit] = ACTIONS(3503), + [anon_sym_consteval] = ACTIONS(3503), + [sym_primitive_type] = ACTIONS(3503), + [anon_sym_enum] = ACTIONS(3503), + [anon_sym_class] = ACTIONS(3503), + [anon_sym_struct] = ACTIONS(3503), + [anon_sym_union] = ACTIONS(3503), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3384), - [anon_sym_decltype] = ACTIONS(3384), - [anon_sym_virtual] = ACTIONS(3384), - [anon_sym_alignas] = ACTIONS(3384), - [anon_sym_explicit] = ACTIONS(3384), - [anon_sym_typename] = ACTIONS(3384), - [anon_sym_template] = ACTIONS(3384), - [anon_sym_operator] = ACTIONS(3384), - [anon_sym_friend] = ACTIONS(3384), - [anon_sym_public] = ACTIONS(3384), - [anon_sym_private] = ACTIONS(3384), - [anon_sym_protected] = ACTIONS(3384), - [anon_sym_using] = ACTIONS(3384), - [anon_sym_static_assert] = ACTIONS(3384), + [sym_auto] = ACTIONS(3503), + [anon_sym_decltype] = ACTIONS(3503), + [anon_sym_virtual] = ACTIONS(3503), + [anon_sym_alignas] = ACTIONS(3503), + [anon_sym_explicit] = ACTIONS(3503), + [anon_sym_typename] = ACTIONS(3503), + [anon_sym_template] = ACTIONS(3503), + [anon_sym_operator] = ACTIONS(3503), + [anon_sym_friend] = ACTIONS(3503), + [anon_sym_public] = ACTIONS(3503), + [anon_sym_private] = ACTIONS(3503), + [anon_sym_protected] = ACTIONS(3503), + [anon_sym_using] = ACTIONS(3503), + [anon_sym_static_assert] = ACTIONS(3503), + [sym_semgrep_metavar] = ACTIONS(3505), }, - [2036] = { - [sym_identifier] = ACTIONS(3388), - [aux_sym_preproc_def_token1] = ACTIONS(3388), - [aux_sym_preproc_if_token1] = ACTIONS(3388), - [aux_sym_preproc_if_token2] = ACTIONS(3388), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3388), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3388), - [aux_sym_preproc_else_token1] = ACTIONS(3388), - [aux_sym_preproc_elif_token1] = ACTIONS(3388), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3388), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3388), - [sym_preproc_directive] = ACTIONS(3388), - [anon_sym_LPAREN2] = ACTIONS(3390), - [anon_sym_TILDE] = ACTIONS(3390), - [anon_sym_STAR] = ACTIONS(3390), - [anon_sym_AMP_AMP] = ACTIONS(3390), - [anon_sym_AMP] = ACTIONS(3388), - [anon_sym___extension__] = ACTIONS(3388), - [anon_sym_typedef] = ACTIONS(3388), - [anon_sym_extern] = ACTIONS(3388), - [anon_sym___attribute__] = ACTIONS(3388), - [anon_sym_COLON_COLON] = ACTIONS(3390), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3390), - [anon_sym___declspec] = ACTIONS(3388), - [anon_sym___based] = ACTIONS(3388), - [anon_sym_signed] = ACTIONS(3388), - [anon_sym_unsigned] = ACTIONS(3388), - [anon_sym_long] = ACTIONS(3388), - [anon_sym_short] = ACTIONS(3388), - [anon_sym_LBRACK] = ACTIONS(3388), - [anon_sym_static] = ACTIONS(3388), - [anon_sym_register] = ACTIONS(3388), - [anon_sym_inline] = ACTIONS(3388), - [anon_sym___inline] = ACTIONS(3388), - [anon_sym___inline__] = ACTIONS(3388), - [anon_sym___forceinline] = ACTIONS(3388), - [anon_sym_thread_local] = ACTIONS(3388), - [anon_sym___thread] = ACTIONS(3388), - [anon_sym_const] = ACTIONS(3388), - [anon_sym_constexpr] = ACTIONS(3388), - [anon_sym_volatile] = ACTIONS(3388), - [anon_sym_restrict] = ACTIONS(3388), - [anon_sym___restrict__] = ACTIONS(3388), - [anon_sym__Atomic] = ACTIONS(3388), - [anon_sym__Noreturn] = ACTIONS(3388), - [anon_sym_noreturn] = ACTIONS(3388), - [anon_sym_mutable] = ACTIONS(3388), - [anon_sym_constinit] = ACTIONS(3388), - [anon_sym_consteval] = ACTIONS(3388), - [sym_primitive_type] = ACTIONS(3388), - [anon_sym_enum] = ACTIONS(3388), - [anon_sym_class] = ACTIONS(3388), - [anon_sym_struct] = ACTIONS(3388), - [anon_sym_union] = ACTIONS(3388), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3388), - [anon_sym_decltype] = ACTIONS(3388), - [anon_sym_virtual] = ACTIONS(3388), - [anon_sym_alignas] = ACTIONS(3388), - [anon_sym_explicit] = ACTIONS(3388), - [anon_sym_typename] = ACTIONS(3388), - [anon_sym_template] = ACTIONS(3388), - [anon_sym_operator] = ACTIONS(3388), - [anon_sym_friend] = ACTIONS(3388), - [anon_sym_public] = ACTIONS(3388), - [anon_sym_private] = ACTIONS(3388), - [anon_sym_protected] = ACTIONS(3388), - [anon_sym_using] = ACTIONS(3388), - [anon_sym_static_assert] = ACTIONS(3388), + [2012] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5419), + [anon_sym_COMMA] = ACTIONS(5419), + [anon_sym_RPAREN] = ACTIONS(5419), + [anon_sym_LPAREN2] = ACTIONS(5419), + [anon_sym_DASH] = ACTIONS(5417), + [anon_sym_PLUS] = ACTIONS(5417), + [anon_sym_STAR] = ACTIONS(5417), + [anon_sym_SLASH] = ACTIONS(5417), + [anon_sym_PERCENT] = ACTIONS(5417), + [anon_sym_PIPE_PIPE] = ACTIONS(5419), + [anon_sym_AMP_AMP] = ACTIONS(5419), + [anon_sym_PIPE] = ACTIONS(5417), + [anon_sym_CARET] = ACTIONS(5417), + [anon_sym_AMP] = ACTIONS(5417), + [anon_sym_EQ_EQ] = ACTIONS(5419), + [anon_sym_BANG_EQ] = ACTIONS(5419), + [anon_sym_GT] = ACTIONS(5417), + [anon_sym_GT_EQ] = ACTIONS(5419), + [anon_sym_LT_EQ] = ACTIONS(5417), + [anon_sym_LT] = ACTIONS(5417), + [anon_sym_LT_LT] = ACTIONS(5417), + [anon_sym_GT_GT] = ACTIONS(5417), + [anon_sym___extension__] = ACTIONS(5419), + [anon_sym_COLON_COLON] = ACTIONS(5419), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5419), + [anon_sym_LBRACE] = ACTIONS(5419), + [anon_sym_LBRACK] = ACTIONS(5417), + [anon_sym_EQ] = ACTIONS(5417), + [anon_sym_const] = ACTIONS(5417), + [anon_sym_constexpr] = ACTIONS(5419), + [anon_sym_volatile] = ACTIONS(5419), + [anon_sym_restrict] = ACTIONS(5419), + [anon_sym___restrict__] = ACTIONS(5419), + [anon_sym__Atomic] = ACTIONS(5419), + [anon_sym__Noreturn] = ACTIONS(5419), + [anon_sym_noreturn] = ACTIONS(5419), + [anon_sym_mutable] = ACTIONS(5419), + [anon_sym_constinit] = ACTIONS(5419), + [anon_sym_consteval] = ACTIONS(5419), + [anon_sym_QMARK] = ACTIONS(5419), + [anon_sym_STAR_EQ] = ACTIONS(5419), + [anon_sym_SLASH_EQ] = ACTIONS(5419), + [anon_sym_PERCENT_EQ] = ACTIONS(5419), + [anon_sym_PLUS_EQ] = ACTIONS(5419), + [anon_sym_DASH_EQ] = ACTIONS(5419), + [anon_sym_LT_LT_EQ] = ACTIONS(5419), + [anon_sym_GT_GT_EQ] = ACTIONS(5419), + [anon_sym_AMP_EQ] = ACTIONS(5419), + [anon_sym_CARET_EQ] = ACTIONS(5419), + [anon_sym_PIPE_EQ] = ACTIONS(5419), + [anon_sym_and_eq] = ACTIONS(5419), + [anon_sym_or_eq] = ACTIONS(5419), + [anon_sym_xor_eq] = ACTIONS(5419), + [anon_sym_LT_EQ_GT] = ACTIONS(5419), + [anon_sym_or] = ACTIONS(5417), + [anon_sym_and] = ACTIONS(5417), + [anon_sym_bitor] = ACTIONS(5419), + [anon_sym_xor] = ACTIONS(5417), + [anon_sym_bitand] = ACTIONS(5419), + [anon_sym_not_eq] = ACTIONS(5419), + [anon_sym_DASH_DASH] = ACTIONS(5419), + [anon_sym_PLUS_PLUS] = ACTIONS(5419), + [anon_sym_DOT] = ACTIONS(5417), + [anon_sym_DOT_STAR] = ACTIONS(5419), + [anon_sym_DASH_GT] = ACTIONS(5417), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5419), + [anon_sym_decltype] = ACTIONS(5419), + [anon_sym_DASH_GT_STAR] = ACTIONS(5419), + [sym_semgrep_metavar] = ACTIONS(5419), }, - [2037] = { + [2013] = { + [sym_identifier] = ACTIONS(3577), + [aux_sym_preproc_def_token1] = ACTIONS(3577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3579), + [aux_sym_preproc_if_token1] = ACTIONS(3577), + [aux_sym_preproc_if_token2] = ACTIONS(3577), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3577), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3577), + [aux_sym_preproc_else_token1] = ACTIONS(3577), + [aux_sym_preproc_elif_token1] = ACTIONS(3577), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3577), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3577), + [sym_preproc_directive] = ACTIONS(3577), + [anon_sym_LPAREN2] = ACTIONS(3579), + [anon_sym_TILDE] = ACTIONS(3579), + [anon_sym_STAR] = ACTIONS(3579), + [anon_sym_AMP_AMP] = ACTIONS(3579), + [anon_sym_AMP] = ACTIONS(3577), + [anon_sym___extension__] = ACTIONS(3577), + [anon_sym_typedef] = ACTIONS(3577), + [anon_sym_extern] = ACTIONS(3577), + [anon_sym___attribute__] = ACTIONS(3577), + [anon_sym_COLON_COLON] = ACTIONS(3579), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3579), + [anon_sym___declspec] = ACTIONS(3577), + [anon_sym___based] = ACTIONS(3577), + [anon_sym_signed] = ACTIONS(3577), + [anon_sym_unsigned] = ACTIONS(3577), + [anon_sym_long] = ACTIONS(3577), + [anon_sym_short] = ACTIONS(3577), + [anon_sym_LBRACK] = ACTIONS(3577), + [anon_sym_static] = ACTIONS(3577), + [anon_sym_register] = ACTIONS(3577), + [anon_sym_inline] = ACTIONS(3577), + [anon_sym___inline] = ACTIONS(3577), + [anon_sym___inline__] = ACTIONS(3577), + [anon_sym___forceinline] = ACTIONS(3577), + [anon_sym_thread_local] = ACTIONS(3577), + [anon_sym___thread] = ACTIONS(3577), + [anon_sym_const] = ACTIONS(3577), + [anon_sym_constexpr] = ACTIONS(3577), + [anon_sym_volatile] = ACTIONS(3577), + [anon_sym_restrict] = ACTIONS(3577), + [anon_sym___restrict__] = ACTIONS(3577), + [anon_sym__Atomic] = ACTIONS(3577), + [anon_sym__Noreturn] = ACTIONS(3577), + [anon_sym_noreturn] = ACTIONS(3577), + [anon_sym_mutable] = ACTIONS(3577), + [anon_sym_constinit] = ACTIONS(3577), + [anon_sym_consteval] = ACTIONS(3577), + [sym_primitive_type] = ACTIONS(3577), + [anon_sym_enum] = ACTIONS(3577), + [anon_sym_class] = ACTIONS(3577), + [anon_sym_struct] = ACTIONS(3577), + [anon_sym_union] = ACTIONS(3577), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3577), + [anon_sym_decltype] = ACTIONS(3577), + [anon_sym_virtual] = ACTIONS(3577), + [anon_sym_alignas] = ACTIONS(3577), + [anon_sym_explicit] = ACTIONS(3577), + [anon_sym_typename] = ACTIONS(3577), + [anon_sym_template] = ACTIONS(3577), + [anon_sym_operator] = ACTIONS(3577), + [anon_sym_friend] = ACTIONS(3577), + [anon_sym_public] = ACTIONS(3577), + [anon_sym_private] = ACTIONS(3577), + [anon_sym_protected] = ACTIONS(3577), + [anon_sym_using] = ACTIONS(3577), + [anon_sym_static_assert] = ACTIONS(3577), + [sym_semgrep_metavar] = ACTIONS(3579), + }, + [2014] = { + [sym_declaration_modifiers] = STATE(4979), + [sym_attribute_specifier] = STATE(4535), + [sym_attribute_declaration] = STATE(4535), + [sym_ms_declspec_modifier] = STATE(4535), + [sym_ms_based_modifier] = STATE(9481), + [sym_declarator] = STATE(7697), + [sym_parenthesized_declarator] = STATE(7305), + [sym_attributed_declarator] = STATE(7305), + [sym_pointer_declarator] = STATE(7305), + [sym_function_declarator] = STATE(7310), + [sym_array_declarator] = STATE(7305), + [sym_storage_class_specifier] = STATE(4535), + [sym_type_qualifier] = STATE(4535), + [sym_decltype] = STATE(9605), + [sym_virtual] = STATE(4535), + [sym_alignas_specifier] = STATE(4535), + [sym_explicit_function_specifier] = STATE(4979), + [sym_operator_cast] = STATE(7746), + [sym_constructor_specifiers] = STATE(4069), + [sym_reference_declarator] = STATE(7305), + [sym_structured_binding_declarator] = STATE(7305), + [sym_template_type] = STATE(9605), + [sym_template_function] = STATE(7305), + [sym_destructor_name] = STATE(7305), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(6514), + [sym_qualified_identifier] = STATE(7305), + [sym_qualified_operator_cast_identifier] = STATE(7746), + [sym_operator_name] = STATE(7305), + [aux_sym_operator_cast_definition_repeat1] = STATE(4069), + [sym_identifier] = ACTIONS(5741), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym___extension__] = ACTIONS(5743), + [anon_sym_extern] = ACTIONS(5745), + [anon_sym___attribute__] = ACTIONS(5747), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5749), + [anon_sym___declspec] = ACTIONS(5751), + [anon_sym___based] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_static] = ACTIONS(5745), + [anon_sym_register] = ACTIONS(5745), + [anon_sym_inline] = ACTIONS(5745), + [anon_sym___inline] = ACTIONS(5745), + [anon_sym___inline__] = ACTIONS(5745), + [anon_sym___forceinline] = ACTIONS(5745), + [anon_sym_thread_local] = ACTIONS(5745), + [anon_sym___thread] = ACTIONS(5745), + [anon_sym_const] = ACTIONS(5743), + [anon_sym_constexpr] = ACTIONS(5743), + [anon_sym_volatile] = ACTIONS(5743), + [anon_sym_restrict] = ACTIONS(5743), + [anon_sym___restrict__] = ACTIONS(5743), + [anon_sym__Atomic] = ACTIONS(5743), + [anon_sym__Noreturn] = ACTIONS(5743), + [anon_sym_noreturn] = ACTIONS(5743), + [anon_sym_mutable] = ACTIONS(5743), + [anon_sym_constinit] = ACTIONS(5743), + [anon_sym_consteval] = ACTIONS(5743), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2313), + [anon_sym_virtual] = ACTIONS(5753), + [anon_sym_alignas] = ACTIONS(5755), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1534), + [anon_sym_operator] = ACTIONS(135), + }, + [2015] = { + [sym_identifier] = ACTIONS(5904), + [aux_sym_preproc_def_token1] = ACTIONS(5904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5906), + [aux_sym_preproc_if_token1] = ACTIONS(5904), + [aux_sym_preproc_if_token2] = ACTIONS(5904), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5904), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5904), + [aux_sym_preproc_else_token1] = ACTIONS(5904), + [aux_sym_preproc_elif_token1] = ACTIONS(5904), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5904), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5904), + [sym_preproc_directive] = ACTIONS(5904), + [anon_sym_LPAREN2] = ACTIONS(5906), + [anon_sym_TILDE] = ACTIONS(5906), + [anon_sym_STAR] = ACTIONS(5906), + [anon_sym_AMP_AMP] = ACTIONS(5906), + [anon_sym_AMP] = ACTIONS(5904), + [anon_sym___extension__] = ACTIONS(5904), + [anon_sym_typedef] = ACTIONS(5904), + [anon_sym_extern] = ACTIONS(5904), + [anon_sym___attribute__] = ACTIONS(5904), + [anon_sym_COLON_COLON] = ACTIONS(5906), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5906), + [anon_sym___declspec] = ACTIONS(5904), + [anon_sym___based] = ACTIONS(5904), + [anon_sym_signed] = ACTIONS(5904), + [anon_sym_unsigned] = ACTIONS(5904), + [anon_sym_long] = ACTIONS(5904), + [anon_sym_short] = ACTIONS(5904), + [anon_sym_LBRACK] = ACTIONS(5904), + [anon_sym_static] = ACTIONS(5904), + [anon_sym_register] = ACTIONS(5904), + [anon_sym_inline] = ACTIONS(5904), + [anon_sym___inline] = ACTIONS(5904), + [anon_sym___inline__] = ACTIONS(5904), + [anon_sym___forceinline] = ACTIONS(5904), + [anon_sym_thread_local] = ACTIONS(5904), + [anon_sym___thread] = ACTIONS(5904), + [anon_sym_const] = ACTIONS(5904), + [anon_sym_constexpr] = ACTIONS(5904), + [anon_sym_volatile] = ACTIONS(5904), + [anon_sym_restrict] = ACTIONS(5904), + [anon_sym___restrict__] = ACTIONS(5904), + [anon_sym__Atomic] = ACTIONS(5904), + [anon_sym__Noreturn] = ACTIONS(5904), + [anon_sym_noreturn] = ACTIONS(5904), + [anon_sym_mutable] = ACTIONS(5904), + [anon_sym_constinit] = ACTIONS(5904), + [anon_sym_consteval] = ACTIONS(5904), + [sym_primitive_type] = ACTIONS(5904), + [anon_sym_enum] = ACTIONS(5904), + [anon_sym_class] = ACTIONS(5904), + [anon_sym_struct] = ACTIONS(5904), + [anon_sym_union] = ACTIONS(5904), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5904), + [anon_sym_decltype] = ACTIONS(5904), + [anon_sym_virtual] = ACTIONS(5904), + [anon_sym_alignas] = ACTIONS(5904), + [anon_sym_explicit] = ACTIONS(5904), + [anon_sym_typename] = ACTIONS(5904), + [anon_sym_template] = ACTIONS(5904), + [anon_sym_operator] = ACTIONS(5904), + [anon_sym_friend] = ACTIONS(5904), + [anon_sym_public] = ACTIONS(5904), + [anon_sym_private] = ACTIONS(5904), + [anon_sym_protected] = ACTIONS(5904), + [anon_sym_using] = ACTIONS(5904), + [anon_sym_static_assert] = ACTIONS(5904), + [sym_semgrep_metavar] = ACTIONS(5906), + }, + [2016] = { + [sym_identifier] = ACTIONS(3581), + [aux_sym_preproc_def_token1] = ACTIONS(3581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3583), + [aux_sym_preproc_if_token1] = ACTIONS(3581), + [aux_sym_preproc_if_token2] = ACTIONS(3581), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3581), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3581), + [aux_sym_preproc_else_token1] = ACTIONS(3581), + [aux_sym_preproc_elif_token1] = ACTIONS(3581), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3581), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3581), + [sym_preproc_directive] = ACTIONS(3581), + [anon_sym_LPAREN2] = ACTIONS(3583), + [anon_sym_TILDE] = ACTIONS(3583), + [anon_sym_STAR] = ACTIONS(3583), + [anon_sym_AMP_AMP] = ACTIONS(3583), + [anon_sym_AMP] = ACTIONS(3581), + [anon_sym___extension__] = ACTIONS(3581), + [anon_sym_typedef] = ACTIONS(3581), + [anon_sym_extern] = ACTIONS(3581), + [anon_sym___attribute__] = ACTIONS(3581), + [anon_sym_COLON_COLON] = ACTIONS(3583), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3583), + [anon_sym___declspec] = ACTIONS(3581), + [anon_sym___based] = ACTIONS(3581), + [anon_sym_signed] = ACTIONS(3581), + [anon_sym_unsigned] = ACTIONS(3581), + [anon_sym_long] = ACTIONS(3581), + [anon_sym_short] = ACTIONS(3581), + [anon_sym_LBRACK] = ACTIONS(3581), + [anon_sym_static] = ACTIONS(3581), + [anon_sym_register] = ACTIONS(3581), + [anon_sym_inline] = ACTIONS(3581), + [anon_sym___inline] = ACTIONS(3581), + [anon_sym___inline__] = ACTIONS(3581), + [anon_sym___forceinline] = ACTIONS(3581), + [anon_sym_thread_local] = ACTIONS(3581), + [anon_sym___thread] = ACTIONS(3581), + [anon_sym_const] = ACTIONS(3581), + [anon_sym_constexpr] = ACTIONS(3581), + [anon_sym_volatile] = ACTIONS(3581), + [anon_sym_restrict] = ACTIONS(3581), + [anon_sym___restrict__] = ACTIONS(3581), + [anon_sym__Atomic] = ACTIONS(3581), + [anon_sym__Noreturn] = ACTIONS(3581), + [anon_sym_noreturn] = ACTIONS(3581), + [anon_sym_mutable] = ACTIONS(3581), + [anon_sym_constinit] = ACTIONS(3581), + [anon_sym_consteval] = ACTIONS(3581), + [sym_primitive_type] = ACTIONS(3581), + [anon_sym_enum] = ACTIONS(3581), + [anon_sym_class] = ACTIONS(3581), + [anon_sym_struct] = ACTIONS(3581), + [anon_sym_union] = ACTIONS(3581), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3581), + [anon_sym_decltype] = ACTIONS(3581), + [anon_sym_virtual] = ACTIONS(3581), + [anon_sym_alignas] = ACTIONS(3581), + [anon_sym_explicit] = ACTIONS(3581), + [anon_sym_typename] = ACTIONS(3581), + [anon_sym_template] = ACTIONS(3581), + [anon_sym_operator] = ACTIONS(3581), + [anon_sym_friend] = ACTIONS(3581), + [anon_sym_public] = ACTIONS(3581), + [anon_sym_private] = ACTIONS(3581), + [anon_sym_protected] = ACTIONS(3581), + [anon_sym_using] = ACTIONS(3581), + [anon_sym_static_assert] = ACTIONS(3581), + [sym_semgrep_metavar] = ACTIONS(3583), + }, + [2017] = { + [sym_identifier] = ACTIONS(3294), + [aux_sym_preproc_def_token1] = ACTIONS(3294), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3296), + [aux_sym_preproc_if_token1] = ACTIONS(3294), + [aux_sym_preproc_if_token2] = ACTIONS(3294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3294), + [aux_sym_preproc_else_token1] = ACTIONS(3294), + [aux_sym_preproc_elif_token1] = ACTIONS(3294), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3294), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3294), + [sym_preproc_directive] = ACTIONS(3294), + [anon_sym_LPAREN2] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_AMP] = ACTIONS(3294), + [anon_sym___extension__] = ACTIONS(3294), + [anon_sym_typedef] = ACTIONS(3294), + [anon_sym_extern] = ACTIONS(3294), + [anon_sym___attribute__] = ACTIONS(3294), + [anon_sym_COLON_COLON] = ACTIONS(3296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3296), + [anon_sym___declspec] = ACTIONS(3294), + [anon_sym___based] = ACTIONS(3294), + [anon_sym_signed] = ACTIONS(3294), + [anon_sym_unsigned] = ACTIONS(3294), + [anon_sym_long] = ACTIONS(3294), + [anon_sym_short] = ACTIONS(3294), + [anon_sym_LBRACK] = ACTIONS(3294), + [anon_sym_static] = ACTIONS(3294), + [anon_sym_register] = ACTIONS(3294), + [anon_sym_inline] = ACTIONS(3294), + [anon_sym___inline] = ACTIONS(3294), + [anon_sym___inline__] = ACTIONS(3294), + [anon_sym___forceinline] = ACTIONS(3294), + [anon_sym_thread_local] = ACTIONS(3294), + [anon_sym___thread] = ACTIONS(3294), + [anon_sym_const] = ACTIONS(3294), + [anon_sym_constexpr] = ACTIONS(3294), + [anon_sym_volatile] = ACTIONS(3294), + [anon_sym_restrict] = ACTIONS(3294), + [anon_sym___restrict__] = ACTIONS(3294), + [anon_sym__Atomic] = ACTIONS(3294), + [anon_sym__Noreturn] = ACTIONS(3294), + [anon_sym_noreturn] = ACTIONS(3294), + [anon_sym_mutable] = ACTIONS(3294), + [anon_sym_constinit] = ACTIONS(3294), + [anon_sym_consteval] = ACTIONS(3294), + [sym_primitive_type] = ACTIONS(3294), + [anon_sym_enum] = ACTIONS(3294), + [anon_sym_class] = ACTIONS(3294), + [anon_sym_struct] = ACTIONS(3294), + [anon_sym_union] = ACTIONS(3294), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3294), + [anon_sym_decltype] = ACTIONS(3294), + [anon_sym_virtual] = ACTIONS(3294), + [anon_sym_alignas] = ACTIONS(3294), + [anon_sym_explicit] = ACTIONS(3294), + [anon_sym_typename] = ACTIONS(3294), + [anon_sym_template] = ACTIONS(3294), + [anon_sym_operator] = ACTIONS(3294), + [anon_sym_friend] = ACTIONS(3294), + [anon_sym_public] = ACTIONS(3294), + [anon_sym_private] = ACTIONS(3294), + [anon_sym_protected] = ACTIONS(3294), + [anon_sym_using] = ACTIONS(3294), + [anon_sym_static_assert] = ACTIONS(3294), + [sym_semgrep_metavar] = ACTIONS(3296), + }, + [2018] = { + [sym_identifier] = ACTIONS(3587), + [aux_sym_preproc_def_token1] = ACTIONS(3587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3589), + [aux_sym_preproc_if_token1] = ACTIONS(3587), + [aux_sym_preproc_if_token2] = ACTIONS(3587), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3587), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3587), + [aux_sym_preproc_else_token1] = ACTIONS(3587), + [aux_sym_preproc_elif_token1] = ACTIONS(3587), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3587), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3587), + [sym_preproc_directive] = ACTIONS(3587), + [anon_sym_LPAREN2] = ACTIONS(3589), + [anon_sym_TILDE] = ACTIONS(3589), + [anon_sym_STAR] = ACTIONS(3589), + [anon_sym_AMP_AMP] = ACTIONS(3589), + [anon_sym_AMP] = ACTIONS(3587), + [anon_sym___extension__] = ACTIONS(3587), + [anon_sym_typedef] = ACTIONS(3587), + [anon_sym_extern] = ACTIONS(3587), + [anon_sym___attribute__] = ACTIONS(3587), + [anon_sym_COLON_COLON] = ACTIONS(3589), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3589), + [anon_sym___declspec] = ACTIONS(3587), + [anon_sym___based] = ACTIONS(3587), + [anon_sym_signed] = ACTIONS(3587), + [anon_sym_unsigned] = ACTIONS(3587), + [anon_sym_long] = ACTIONS(3587), + [anon_sym_short] = ACTIONS(3587), + [anon_sym_LBRACK] = ACTIONS(3587), + [anon_sym_static] = ACTIONS(3587), + [anon_sym_register] = ACTIONS(3587), + [anon_sym_inline] = ACTIONS(3587), + [anon_sym___inline] = ACTIONS(3587), + [anon_sym___inline__] = ACTIONS(3587), + [anon_sym___forceinline] = ACTIONS(3587), + [anon_sym_thread_local] = ACTIONS(3587), + [anon_sym___thread] = ACTIONS(3587), + [anon_sym_const] = ACTIONS(3587), + [anon_sym_constexpr] = ACTIONS(3587), + [anon_sym_volatile] = ACTIONS(3587), + [anon_sym_restrict] = ACTIONS(3587), + [anon_sym___restrict__] = ACTIONS(3587), + [anon_sym__Atomic] = ACTIONS(3587), + [anon_sym__Noreturn] = ACTIONS(3587), + [anon_sym_noreturn] = ACTIONS(3587), + [anon_sym_mutable] = ACTIONS(3587), + [anon_sym_constinit] = ACTIONS(3587), + [anon_sym_consteval] = ACTIONS(3587), + [sym_primitive_type] = ACTIONS(3587), + [anon_sym_enum] = ACTIONS(3587), + [anon_sym_class] = ACTIONS(3587), + [anon_sym_struct] = ACTIONS(3587), + [anon_sym_union] = ACTIONS(3587), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3587), + [anon_sym_decltype] = ACTIONS(3587), + [anon_sym_virtual] = ACTIONS(3587), + [anon_sym_alignas] = ACTIONS(3587), + [anon_sym_explicit] = ACTIONS(3587), + [anon_sym_typename] = ACTIONS(3587), + [anon_sym_template] = ACTIONS(3587), + [anon_sym_operator] = ACTIONS(3587), + [anon_sym_friend] = ACTIONS(3587), + [anon_sym_public] = ACTIONS(3587), + [anon_sym_private] = ACTIONS(3587), + [anon_sym_protected] = ACTIONS(3587), + [anon_sym_using] = ACTIONS(3587), + [anon_sym_static_assert] = ACTIONS(3587), + [sym_semgrep_metavar] = ACTIONS(3589), + }, + [2019] = { + [sym_identifier] = ACTIONS(3593), + [aux_sym_preproc_def_token1] = ACTIONS(3593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3595), + [aux_sym_preproc_if_token1] = ACTIONS(3593), + [aux_sym_preproc_if_token2] = ACTIONS(3593), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3593), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3593), + [aux_sym_preproc_else_token1] = ACTIONS(3593), + [aux_sym_preproc_elif_token1] = ACTIONS(3593), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3593), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3593), + [sym_preproc_directive] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(3595), + [anon_sym_STAR] = ACTIONS(3595), + [anon_sym_AMP_AMP] = ACTIONS(3595), + [anon_sym_AMP] = ACTIONS(3593), + [anon_sym___extension__] = ACTIONS(3593), + [anon_sym_typedef] = ACTIONS(3593), + [anon_sym_extern] = ACTIONS(3593), + [anon_sym___attribute__] = ACTIONS(3593), + [anon_sym_COLON_COLON] = ACTIONS(3595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3595), + [anon_sym___declspec] = ACTIONS(3593), + [anon_sym___based] = ACTIONS(3593), + [anon_sym_signed] = ACTIONS(3593), + [anon_sym_unsigned] = ACTIONS(3593), + [anon_sym_long] = ACTIONS(3593), + [anon_sym_short] = ACTIONS(3593), + [anon_sym_LBRACK] = ACTIONS(3593), + [anon_sym_static] = ACTIONS(3593), + [anon_sym_register] = ACTIONS(3593), + [anon_sym_inline] = ACTIONS(3593), + [anon_sym___inline] = ACTIONS(3593), + [anon_sym___inline__] = ACTIONS(3593), + [anon_sym___forceinline] = ACTIONS(3593), + [anon_sym_thread_local] = ACTIONS(3593), + [anon_sym___thread] = ACTIONS(3593), + [anon_sym_const] = ACTIONS(3593), + [anon_sym_constexpr] = ACTIONS(3593), + [anon_sym_volatile] = ACTIONS(3593), + [anon_sym_restrict] = ACTIONS(3593), + [anon_sym___restrict__] = ACTIONS(3593), + [anon_sym__Atomic] = ACTIONS(3593), + [anon_sym__Noreturn] = ACTIONS(3593), + [anon_sym_noreturn] = ACTIONS(3593), + [anon_sym_mutable] = ACTIONS(3593), + [anon_sym_constinit] = ACTIONS(3593), + [anon_sym_consteval] = ACTIONS(3593), + [sym_primitive_type] = ACTIONS(3593), + [anon_sym_enum] = ACTIONS(3593), + [anon_sym_class] = ACTIONS(3593), + [anon_sym_struct] = ACTIONS(3593), + [anon_sym_union] = ACTIONS(3593), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3593), + [anon_sym_decltype] = ACTIONS(3593), + [anon_sym_virtual] = ACTIONS(3593), + [anon_sym_alignas] = ACTIONS(3593), + [anon_sym_explicit] = ACTIONS(3593), + [anon_sym_typename] = ACTIONS(3593), + [anon_sym_template] = ACTIONS(3593), + [anon_sym_operator] = ACTIONS(3593), + [anon_sym_friend] = ACTIONS(3593), + [anon_sym_public] = ACTIONS(3593), + [anon_sym_private] = ACTIONS(3593), + [anon_sym_protected] = ACTIONS(3593), + [anon_sym_using] = ACTIONS(3593), + [anon_sym_static_assert] = ACTIONS(3593), + [sym_semgrep_metavar] = ACTIONS(3595), + }, + [2020] = { + [sym_identifier] = ACTIONS(3631), + [aux_sym_preproc_def_token1] = ACTIONS(3631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3633), + [aux_sym_preproc_if_token1] = ACTIONS(3631), + [aux_sym_preproc_if_token2] = ACTIONS(3631), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3631), + [aux_sym_preproc_else_token1] = ACTIONS(3631), + [aux_sym_preproc_elif_token1] = ACTIONS(3631), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3631), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3631), + [sym_preproc_directive] = ACTIONS(3631), + [anon_sym_LPAREN2] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_STAR] = ACTIONS(3633), + [anon_sym_AMP_AMP] = ACTIONS(3633), + [anon_sym_AMP] = ACTIONS(3631), + [anon_sym___extension__] = ACTIONS(3631), + [anon_sym_typedef] = ACTIONS(3631), + [anon_sym_extern] = ACTIONS(3631), + [anon_sym___attribute__] = ACTIONS(3631), + [anon_sym_COLON_COLON] = ACTIONS(3633), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3633), + [anon_sym___declspec] = ACTIONS(3631), + [anon_sym___based] = ACTIONS(3631), + [anon_sym_signed] = ACTIONS(3631), + [anon_sym_unsigned] = ACTIONS(3631), + [anon_sym_long] = ACTIONS(3631), + [anon_sym_short] = ACTIONS(3631), + [anon_sym_LBRACK] = ACTIONS(3631), + [anon_sym_static] = ACTIONS(3631), + [anon_sym_register] = ACTIONS(3631), + [anon_sym_inline] = ACTIONS(3631), + [anon_sym___inline] = ACTIONS(3631), + [anon_sym___inline__] = ACTIONS(3631), + [anon_sym___forceinline] = ACTIONS(3631), + [anon_sym_thread_local] = ACTIONS(3631), + [anon_sym___thread] = ACTIONS(3631), + [anon_sym_const] = ACTIONS(3631), + [anon_sym_constexpr] = ACTIONS(3631), + [anon_sym_volatile] = ACTIONS(3631), + [anon_sym_restrict] = ACTIONS(3631), + [anon_sym___restrict__] = ACTIONS(3631), + [anon_sym__Atomic] = ACTIONS(3631), + [anon_sym__Noreturn] = ACTIONS(3631), + [anon_sym_noreturn] = ACTIONS(3631), + [anon_sym_mutable] = ACTIONS(3631), + [anon_sym_constinit] = ACTIONS(3631), + [anon_sym_consteval] = ACTIONS(3631), + [sym_primitive_type] = ACTIONS(3631), + [anon_sym_enum] = ACTIONS(3631), + [anon_sym_class] = ACTIONS(3631), + [anon_sym_struct] = ACTIONS(3631), + [anon_sym_union] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3631), + [anon_sym_decltype] = ACTIONS(3631), + [anon_sym_virtual] = ACTIONS(3631), + [anon_sym_alignas] = ACTIONS(3631), + [anon_sym_explicit] = ACTIONS(3631), + [anon_sym_typename] = ACTIONS(3631), + [anon_sym_template] = ACTIONS(3631), + [anon_sym_operator] = ACTIONS(3631), + [anon_sym_friend] = ACTIONS(3631), + [anon_sym_public] = ACTIONS(3631), + [anon_sym_private] = ACTIONS(3631), + [anon_sym_protected] = ACTIONS(3631), + [anon_sym_using] = ACTIONS(3631), + [anon_sym_static_assert] = ACTIONS(3631), + [sym_semgrep_metavar] = ACTIONS(3633), + }, + [2021] = { + [sym_identifier] = ACTIONS(3657), + [aux_sym_preproc_def_token1] = ACTIONS(3657), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3659), + [aux_sym_preproc_if_token1] = ACTIONS(3657), + [aux_sym_preproc_if_token2] = ACTIONS(3657), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3657), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3657), + [aux_sym_preproc_else_token1] = ACTIONS(3657), + [aux_sym_preproc_elif_token1] = ACTIONS(3657), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3657), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3657), + [sym_preproc_directive] = ACTIONS(3657), + [anon_sym_LPAREN2] = ACTIONS(3659), + [anon_sym_TILDE] = ACTIONS(3659), + [anon_sym_STAR] = ACTIONS(3659), + [anon_sym_AMP_AMP] = ACTIONS(3659), + [anon_sym_AMP] = ACTIONS(3657), + [anon_sym___extension__] = ACTIONS(3657), + [anon_sym_typedef] = ACTIONS(3657), + [anon_sym_extern] = ACTIONS(3657), + [anon_sym___attribute__] = ACTIONS(3657), + [anon_sym_COLON_COLON] = ACTIONS(3659), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3659), + [anon_sym___declspec] = ACTIONS(3657), + [anon_sym___based] = ACTIONS(3657), + [anon_sym_signed] = ACTIONS(3657), + [anon_sym_unsigned] = ACTIONS(3657), + [anon_sym_long] = ACTIONS(3657), + [anon_sym_short] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_static] = ACTIONS(3657), + [anon_sym_register] = ACTIONS(3657), + [anon_sym_inline] = ACTIONS(3657), + [anon_sym___inline] = ACTIONS(3657), + [anon_sym___inline__] = ACTIONS(3657), + [anon_sym___forceinline] = ACTIONS(3657), + [anon_sym_thread_local] = ACTIONS(3657), + [anon_sym___thread] = ACTIONS(3657), + [anon_sym_const] = ACTIONS(3657), + [anon_sym_constexpr] = ACTIONS(3657), + [anon_sym_volatile] = ACTIONS(3657), + [anon_sym_restrict] = ACTIONS(3657), + [anon_sym___restrict__] = ACTIONS(3657), + [anon_sym__Atomic] = ACTIONS(3657), + [anon_sym__Noreturn] = ACTIONS(3657), + [anon_sym_noreturn] = ACTIONS(3657), + [anon_sym_mutable] = ACTIONS(3657), + [anon_sym_constinit] = ACTIONS(3657), + [anon_sym_consteval] = ACTIONS(3657), + [sym_primitive_type] = ACTIONS(3657), + [anon_sym_enum] = ACTIONS(3657), + [anon_sym_class] = ACTIONS(3657), + [anon_sym_struct] = ACTIONS(3657), + [anon_sym_union] = ACTIONS(3657), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3657), + [anon_sym_decltype] = ACTIONS(3657), + [anon_sym_virtual] = ACTIONS(3657), + [anon_sym_alignas] = ACTIONS(3657), + [anon_sym_explicit] = ACTIONS(3657), + [anon_sym_typename] = ACTIONS(3657), + [anon_sym_template] = ACTIONS(3657), + [anon_sym_operator] = ACTIONS(3657), + [anon_sym_friend] = ACTIONS(3657), + [anon_sym_public] = ACTIONS(3657), + [anon_sym_private] = ACTIONS(3657), + [anon_sym_protected] = ACTIONS(3657), + [anon_sym_using] = ACTIONS(3657), + [anon_sym_static_assert] = ACTIONS(3657), + [sym_semgrep_metavar] = ACTIONS(3659), + }, + [2022] = { + [sym_identifier] = ACTIONS(2355), + [aux_sym_preproc_def_token1] = ACTIONS(2355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2353), + [anon_sym_COMMA] = ACTIONS(3211), + [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(2353), + [anon_sym_TILDE] = ACTIONS(2353), + [anon_sym_STAR] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(2353), + [anon_sym_AMP] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(3211), + [anon_sym___extension__] = ACTIONS(2355), + [anon_sym_typedef] = ACTIONS(2355), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym___attribute__] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(2353), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), + [anon_sym___declspec] = ACTIONS(2355), + [anon_sym___based] = ACTIONS(2355), + [anon_sym_signed] = ACTIONS(2355), + [anon_sym_unsigned] = ACTIONS(2355), + [anon_sym_long] = ACTIONS(2355), + [anon_sym_short] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_static] = ACTIONS(2355), + [anon_sym_register] = ACTIONS(2355), + [anon_sym_inline] = ACTIONS(2355), + [anon_sym___inline] = ACTIONS(2355), + [anon_sym___inline__] = ACTIONS(2355), + [anon_sym___forceinline] = ACTIONS(2355), + [anon_sym_thread_local] = ACTIONS(2355), + [anon_sym___thread] = ACTIONS(2355), + [anon_sym_const] = ACTIONS(2355), + [anon_sym_constexpr] = ACTIONS(2355), + [anon_sym_volatile] = ACTIONS(2355), + [anon_sym_restrict] = ACTIONS(2355), + [anon_sym___restrict__] = ACTIONS(2355), + [anon_sym__Atomic] = ACTIONS(2355), + [anon_sym__Noreturn] = ACTIONS(2355), + [anon_sym_noreturn] = ACTIONS(2355), + [anon_sym_mutable] = ACTIONS(2355), + [anon_sym_constinit] = ACTIONS(2355), + [anon_sym_consteval] = 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), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2355), + [anon_sym_decltype] = ACTIONS(2355), + [anon_sym_virtual] = ACTIONS(2355), + [anon_sym_alignas] = ACTIONS(2355), + [anon_sym_explicit] = ACTIONS(2355), + [anon_sym_typename] = ACTIONS(2355), + [anon_sym_template] = ACTIONS(2355), + [anon_sym_operator] = ACTIONS(2355), + [anon_sym_friend] = ACTIONS(2355), + [anon_sym_public] = ACTIONS(2355), + [anon_sym_private] = ACTIONS(2355), + [anon_sym_protected] = ACTIONS(2355), + [anon_sym_using] = ACTIONS(2355), + [anon_sym_static_assert] = ACTIONS(2355), + [sym_semgrep_metavar] = ACTIONS(2353), + }, + [2023] = { + [sym_identifier] = ACTIONS(5908), + [aux_sym_preproc_def_token1] = ACTIONS(5908), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5910), + [aux_sym_preproc_if_token1] = ACTIONS(5908), + [aux_sym_preproc_if_token2] = ACTIONS(5908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5908), + [aux_sym_preproc_else_token1] = ACTIONS(5908), + [aux_sym_preproc_elif_token1] = ACTIONS(5908), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5908), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5908), + [sym_preproc_directive] = ACTIONS(5908), + [anon_sym_LPAREN2] = ACTIONS(5910), + [anon_sym_TILDE] = ACTIONS(5910), + [anon_sym_STAR] = ACTIONS(5910), + [anon_sym_AMP_AMP] = ACTIONS(5910), + [anon_sym_AMP] = ACTIONS(5908), + [anon_sym___extension__] = ACTIONS(5908), + [anon_sym_typedef] = ACTIONS(5908), + [anon_sym_extern] = ACTIONS(5908), + [anon_sym___attribute__] = ACTIONS(5908), + [anon_sym_COLON_COLON] = ACTIONS(5910), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5910), + [anon_sym___declspec] = ACTIONS(5908), + [anon_sym___based] = ACTIONS(5908), + [anon_sym_signed] = ACTIONS(5908), + [anon_sym_unsigned] = ACTIONS(5908), + [anon_sym_long] = ACTIONS(5908), + [anon_sym_short] = ACTIONS(5908), + [anon_sym_LBRACK] = ACTIONS(5908), + [anon_sym_static] = ACTIONS(5908), + [anon_sym_register] = ACTIONS(5908), + [anon_sym_inline] = ACTIONS(5908), + [anon_sym___inline] = ACTIONS(5908), + [anon_sym___inline__] = ACTIONS(5908), + [anon_sym___forceinline] = ACTIONS(5908), + [anon_sym_thread_local] = ACTIONS(5908), + [anon_sym___thread] = ACTIONS(5908), + [anon_sym_const] = ACTIONS(5908), + [anon_sym_constexpr] = ACTIONS(5908), + [anon_sym_volatile] = ACTIONS(5908), + [anon_sym_restrict] = ACTIONS(5908), + [anon_sym___restrict__] = ACTIONS(5908), + [anon_sym__Atomic] = ACTIONS(5908), + [anon_sym__Noreturn] = ACTIONS(5908), + [anon_sym_noreturn] = ACTIONS(5908), + [anon_sym_mutable] = ACTIONS(5908), + [anon_sym_constinit] = ACTIONS(5908), + [anon_sym_consteval] = ACTIONS(5908), + [sym_primitive_type] = ACTIONS(5908), + [anon_sym_enum] = ACTIONS(5908), + [anon_sym_class] = ACTIONS(5908), + [anon_sym_struct] = ACTIONS(5908), + [anon_sym_union] = ACTIONS(5908), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5908), + [anon_sym_decltype] = ACTIONS(5908), + [anon_sym_virtual] = ACTIONS(5908), + [anon_sym_alignas] = ACTIONS(5908), + [anon_sym_explicit] = ACTIONS(5908), + [anon_sym_typename] = ACTIONS(5908), + [anon_sym_template] = ACTIONS(5908), + [anon_sym_operator] = ACTIONS(5908), + [anon_sym_friend] = ACTIONS(5908), + [anon_sym_public] = ACTIONS(5908), + [anon_sym_private] = ACTIONS(5908), + [anon_sym_protected] = ACTIONS(5908), + [anon_sym_using] = ACTIONS(5908), + [anon_sym_static_assert] = ACTIONS(5908), + [sym_semgrep_metavar] = ACTIONS(5910), + }, + [2024] = { [sym_identifier] = ACTIONS(3392), [aux_sym_preproc_def_token1] = ACTIONS(3392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3394), [aux_sym_preproc_if_token1] = ACTIONS(3392), [aux_sym_preproc_if_token2] = ACTIONS(3392), [aux_sym_preproc_ifdef_token1] = ACTIONS(3392), @@ -301897,5898 +289778,3340 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(3392), [anon_sym_using] = ACTIONS(3392), [anon_sym_static_assert] = ACTIONS(3392), + [sym_semgrep_metavar] = ACTIONS(3394), }, - [2038] = { - [sym_identifier] = ACTIONS(3396), - [aux_sym_preproc_def_token1] = ACTIONS(3396), - [aux_sym_preproc_if_token1] = ACTIONS(3396), - [aux_sym_preproc_if_token2] = ACTIONS(3396), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3396), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3396), - [aux_sym_preproc_else_token1] = ACTIONS(3396), - [aux_sym_preproc_elif_token1] = ACTIONS(3396), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3396), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3396), - [sym_preproc_directive] = ACTIONS(3396), - [anon_sym_LPAREN2] = ACTIONS(3398), - [anon_sym_TILDE] = ACTIONS(3398), - [anon_sym_STAR] = ACTIONS(3398), - [anon_sym_AMP_AMP] = ACTIONS(3398), - [anon_sym_AMP] = ACTIONS(3396), - [anon_sym___extension__] = ACTIONS(3396), - [anon_sym_typedef] = ACTIONS(3396), - [anon_sym_extern] = ACTIONS(3396), - [anon_sym___attribute__] = ACTIONS(3396), - [anon_sym_COLON_COLON] = ACTIONS(3398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3398), - [anon_sym___declspec] = ACTIONS(3396), - [anon_sym___based] = ACTIONS(3396), - [anon_sym_signed] = ACTIONS(3396), - [anon_sym_unsigned] = ACTIONS(3396), - [anon_sym_long] = ACTIONS(3396), - [anon_sym_short] = ACTIONS(3396), - [anon_sym_LBRACK] = ACTIONS(3396), - [anon_sym_static] = ACTIONS(3396), - [anon_sym_register] = ACTIONS(3396), - [anon_sym_inline] = ACTIONS(3396), - [anon_sym___inline] = ACTIONS(3396), - [anon_sym___inline__] = ACTIONS(3396), - [anon_sym___forceinline] = ACTIONS(3396), - [anon_sym_thread_local] = ACTIONS(3396), - [anon_sym___thread] = ACTIONS(3396), - [anon_sym_const] = ACTIONS(3396), - [anon_sym_constexpr] = ACTIONS(3396), - [anon_sym_volatile] = ACTIONS(3396), - [anon_sym_restrict] = ACTIONS(3396), - [anon_sym___restrict__] = ACTIONS(3396), - [anon_sym__Atomic] = ACTIONS(3396), - [anon_sym__Noreturn] = ACTIONS(3396), - [anon_sym_noreturn] = ACTIONS(3396), - [anon_sym_mutable] = ACTIONS(3396), - [anon_sym_constinit] = ACTIONS(3396), - [anon_sym_consteval] = ACTIONS(3396), - [sym_primitive_type] = ACTIONS(3396), - [anon_sym_enum] = ACTIONS(3396), - [anon_sym_class] = ACTIONS(3396), - [anon_sym_struct] = ACTIONS(3396), - [anon_sym_union] = ACTIONS(3396), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3396), - [anon_sym_decltype] = ACTIONS(3396), - [anon_sym_virtual] = ACTIONS(3396), - [anon_sym_alignas] = ACTIONS(3396), - [anon_sym_explicit] = ACTIONS(3396), - [anon_sym_typename] = ACTIONS(3396), - [anon_sym_template] = ACTIONS(3396), - [anon_sym_operator] = ACTIONS(3396), - [anon_sym_friend] = ACTIONS(3396), - [anon_sym_public] = ACTIONS(3396), - [anon_sym_private] = ACTIONS(3396), - [anon_sym_protected] = ACTIONS(3396), - [anon_sym_using] = ACTIONS(3396), - [anon_sym_static_assert] = ACTIONS(3396), + [2025] = { + [sym_identifier] = ACTIONS(3410), + [aux_sym_preproc_def_token1] = ACTIONS(3410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3412), + [aux_sym_preproc_if_token1] = ACTIONS(3410), + [aux_sym_preproc_if_token2] = ACTIONS(3410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3410), + [aux_sym_preproc_else_token1] = ACTIONS(3410), + [aux_sym_preproc_elif_token1] = ACTIONS(3410), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3410), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3410), + [sym_preproc_directive] = ACTIONS(3410), + [anon_sym_LPAREN2] = ACTIONS(3412), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_AMP] = ACTIONS(3410), + [anon_sym___extension__] = ACTIONS(3410), + [anon_sym_typedef] = ACTIONS(3410), + [anon_sym_extern] = ACTIONS(3410), + [anon_sym___attribute__] = ACTIONS(3410), + [anon_sym_COLON_COLON] = ACTIONS(3412), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3412), + [anon_sym___declspec] = ACTIONS(3410), + [anon_sym___based] = ACTIONS(3410), + [anon_sym_signed] = ACTIONS(3410), + [anon_sym_unsigned] = ACTIONS(3410), + [anon_sym_long] = ACTIONS(3410), + [anon_sym_short] = ACTIONS(3410), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_static] = ACTIONS(3410), + [anon_sym_register] = ACTIONS(3410), + [anon_sym_inline] = ACTIONS(3410), + [anon_sym___inline] = ACTIONS(3410), + [anon_sym___inline__] = ACTIONS(3410), + [anon_sym___forceinline] = ACTIONS(3410), + [anon_sym_thread_local] = ACTIONS(3410), + [anon_sym___thread] = ACTIONS(3410), + [anon_sym_const] = ACTIONS(3410), + [anon_sym_constexpr] = ACTIONS(3410), + [anon_sym_volatile] = ACTIONS(3410), + [anon_sym_restrict] = ACTIONS(3410), + [anon_sym___restrict__] = ACTIONS(3410), + [anon_sym__Atomic] = ACTIONS(3410), + [anon_sym__Noreturn] = ACTIONS(3410), + [anon_sym_noreturn] = ACTIONS(3410), + [anon_sym_mutable] = ACTIONS(3410), + [anon_sym_constinit] = ACTIONS(3410), + [anon_sym_consteval] = ACTIONS(3410), + [sym_primitive_type] = ACTIONS(3410), + [anon_sym_enum] = ACTIONS(3410), + [anon_sym_class] = ACTIONS(3410), + [anon_sym_struct] = ACTIONS(3410), + [anon_sym_union] = ACTIONS(3410), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3410), + [anon_sym_decltype] = ACTIONS(3410), + [anon_sym_virtual] = ACTIONS(3410), + [anon_sym_alignas] = ACTIONS(3410), + [anon_sym_explicit] = ACTIONS(3410), + [anon_sym_typename] = ACTIONS(3410), + [anon_sym_template] = ACTIONS(3410), + [anon_sym_operator] = ACTIONS(3410), + [anon_sym_friend] = ACTIONS(3410), + [anon_sym_public] = ACTIONS(3410), + [anon_sym_private] = ACTIONS(3410), + [anon_sym_protected] = ACTIONS(3410), + [anon_sym_using] = ACTIONS(3410), + [anon_sym_static_assert] = ACTIONS(3410), + [sym_semgrep_metavar] = ACTIONS(3412), }, - [2039] = { - [sym_identifier] = ACTIONS(5938), - [aux_sym_preproc_def_token1] = ACTIONS(5938), - [aux_sym_preproc_if_token1] = ACTIONS(5938), - [aux_sym_preproc_if_token2] = ACTIONS(5938), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5938), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5938), - [aux_sym_preproc_else_token1] = ACTIONS(5938), - [aux_sym_preproc_elif_token1] = ACTIONS(5938), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5938), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5938), - [sym_preproc_directive] = ACTIONS(5938), - [anon_sym_LPAREN2] = ACTIONS(5940), - [anon_sym_TILDE] = ACTIONS(5940), - [anon_sym_STAR] = ACTIONS(5940), - [anon_sym_AMP_AMP] = ACTIONS(5940), - [anon_sym_AMP] = ACTIONS(5938), - [anon_sym___extension__] = ACTIONS(5938), - [anon_sym_typedef] = ACTIONS(5938), - [anon_sym_extern] = ACTIONS(5938), - [anon_sym___attribute__] = ACTIONS(5938), - [anon_sym_COLON_COLON] = ACTIONS(5940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5940), - [anon_sym___declspec] = ACTIONS(5938), - [anon_sym___based] = ACTIONS(5938), - [anon_sym_signed] = ACTIONS(5938), - [anon_sym_unsigned] = ACTIONS(5938), - [anon_sym_long] = ACTIONS(5938), - [anon_sym_short] = ACTIONS(5938), - [anon_sym_LBRACK] = ACTIONS(5938), - [anon_sym_static] = ACTIONS(5938), - [anon_sym_register] = ACTIONS(5938), - [anon_sym_inline] = ACTIONS(5938), - [anon_sym___inline] = ACTIONS(5938), - [anon_sym___inline__] = ACTIONS(5938), - [anon_sym___forceinline] = ACTIONS(5938), - [anon_sym_thread_local] = ACTIONS(5938), - [anon_sym___thread] = ACTIONS(5938), - [anon_sym_const] = ACTIONS(5938), - [anon_sym_constexpr] = ACTIONS(5938), - [anon_sym_volatile] = ACTIONS(5938), - [anon_sym_restrict] = ACTIONS(5938), - [anon_sym___restrict__] = ACTIONS(5938), - [anon_sym__Atomic] = ACTIONS(5938), - [anon_sym__Noreturn] = ACTIONS(5938), - [anon_sym_noreturn] = ACTIONS(5938), - [anon_sym_mutable] = ACTIONS(5938), - [anon_sym_constinit] = ACTIONS(5938), - [anon_sym_consteval] = ACTIONS(5938), - [sym_primitive_type] = ACTIONS(5938), - [anon_sym_enum] = ACTIONS(5938), - [anon_sym_class] = ACTIONS(5938), - [anon_sym_struct] = ACTIONS(5938), - [anon_sym_union] = ACTIONS(5938), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5938), - [anon_sym_decltype] = ACTIONS(5938), - [anon_sym_virtual] = ACTIONS(5938), - [anon_sym_alignas] = ACTIONS(5938), - [anon_sym_explicit] = ACTIONS(5938), - [anon_sym_typename] = ACTIONS(5938), - [anon_sym_template] = ACTIONS(5938), - [anon_sym_operator] = ACTIONS(5938), - [anon_sym_friend] = ACTIONS(5938), - [anon_sym_public] = ACTIONS(5938), - [anon_sym_private] = ACTIONS(5938), - [anon_sym_protected] = ACTIONS(5938), - [anon_sym_using] = ACTIONS(5938), - [anon_sym_static_assert] = ACTIONS(5938), + [2026] = { + [sym_identifier] = ACTIONS(3428), + [aux_sym_preproc_def_token1] = ACTIONS(3428), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3430), + [aux_sym_preproc_if_token1] = ACTIONS(3428), + [aux_sym_preproc_if_token2] = ACTIONS(3428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3428), + [aux_sym_preproc_else_token1] = ACTIONS(3428), + [aux_sym_preproc_elif_token1] = ACTIONS(3428), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3428), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3428), + [sym_preproc_directive] = ACTIONS(3428), + [anon_sym_LPAREN2] = ACTIONS(3430), + [anon_sym_TILDE] = ACTIONS(3430), + [anon_sym_STAR] = ACTIONS(3430), + [anon_sym_AMP_AMP] = ACTIONS(3430), + [anon_sym_AMP] = ACTIONS(3428), + [anon_sym___extension__] = ACTIONS(3428), + [anon_sym_typedef] = ACTIONS(3428), + [anon_sym_extern] = ACTIONS(3428), + [anon_sym___attribute__] = ACTIONS(3428), + [anon_sym_COLON_COLON] = ACTIONS(3430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3430), + [anon_sym___declspec] = ACTIONS(3428), + [anon_sym___based] = ACTIONS(3428), + [anon_sym_signed] = ACTIONS(3428), + [anon_sym_unsigned] = ACTIONS(3428), + [anon_sym_long] = ACTIONS(3428), + [anon_sym_short] = ACTIONS(3428), + [anon_sym_LBRACK] = ACTIONS(3428), + [anon_sym_static] = ACTIONS(3428), + [anon_sym_register] = ACTIONS(3428), + [anon_sym_inline] = ACTIONS(3428), + [anon_sym___inline] = ACTIONS(3428), + [anon_sym___inline__] = ACTIONS(3428), + [anon_sym___forceinline] = ACTIONS(3428), + [anon_sym_thread_local] = ACTIONS(3428), + [anon_sym___thread] = ACTIONS(3428), + [anon_sym_const] = ACTIONS(3428), + [anon_sym_constexpr] = ACTIONS(3428), + [anon_sym_volatile] = ACTIONS(3428), + [anon_sym_restrict] = ACTIONS(3428), + [anon_sym___restrict__] = ACTIONS(3428), + [anon_sym__Atomic] = ACTIONS(3428), + [anon_sym__Noreturn] = ACTIONS(3428), + [anon_sym_noreturn] = ACTIONS(3428), + [anon_sym_mutable] = ACTIONS(3428), + [anon_sym_constinit] = ACTIONS(3428), + [anon_sym_consteval] = ACTIONS(3428), + [sym_primitive_type] = ACTIONS(3428), + [anon_sym_enum] = ACTIONS(3428), + [anon_sym_class] = ACTIONS(3428), + [anon_sym_struct] = ACTIONS(3428), + [anon_sym_union] = ACTIONS(3428), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3428), + [anon_sym_decltype] = ACTIONS(3428), + [anon_sym_virtual] = ACTIONS(3428), + [anon_sym_alignas] = ACTIONS(3428), + [anon_sym_explicit] = ACTIONS(3428), + [anon_sym_typename] = ACTIONS(3428), + [anon_sym_template] = ACTIONS(3428), + [anon_sym_operator] = ACTIONS(3428), + [anon_sym_friend] = ACTIONS(3428), + [anon_sym_public] = ACTIONS(3428), + [anon_sym_private] = ACTIONS(3428), + [anon_sym_protected] = ACTIONS(3428), + [anon_sym_using] = ACTIONS(3428), + [anon_sym_static_assert] = ACTIONS(3428), + [sym_semgrep_metavar] = ACTIONS(3430), + }, + [2027] = { + [sym_identifier] = ACTIONS(3451), + [aux_sym_preproc_def_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3453), + [aux_sym_preproc_if_token1] = ACTIONS(3451), + [aux_sym_preproc_if_token2] = ACTIONS(3451), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3451), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3451), + [aux_sym_preproc_else_token1] = ACTIONS(3451), + [aux_sym_preproc_elif_token1] = ACTIONS(3451), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3451), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3451), + [sym_preproc_directive] = ACTIONS(3451), + [anon_sym_LPAREN2] = ACTIONS(3453), + [anon_sym_TILDE] = ACTIONS(3453), + [anon_sym_STAR] = ACTIONS(3453), + [anon_sym_AMP_AMP] = ACTIONS(3453), + [anon_sym_AMP] = ACTIONS(3451), + [anon_sym___extension__] = ACTIONS(3451), + [anon_sym_typedef] = ACTIONS(3451), + [anon_sym_extern] = ACTIONS(3451), + [anon_sym___attribute__] = ACTIONS(3451), + [anon_sym_COLON_COLON] = ACTIONS(3453), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3453), + [anon_sym___declspec] = ACTIONS(3451), + [anon_sym___based] = ACTIONS(3451), + [anon_sym_signed] = ACTIONS(3451), + [anon_sym_unsigned] = ACTIONS(3451), + [anon_sym_long] = ACTIONS(3451), + [anon_sym_short] = ACTIONS(3451), + [anon_sym_LBRACK] = ACTIONS(3451), + [anon_sym_static] = ACTIONS(3451), + [anon_sym_register] = ACTIONS(3451), + [anon_sym_inline] = ACTIONS(3451), + [anon_sym___inline] = ACTIONS(3451), + [anon_sym___inline__] = ACTIONS(3451), + [anon_sym___forceinline] = ACTIONS(3451), + [anon_sym_thread_local] = ACTIONS(3451), + [anon_sym___thread] = ACTIONS(3451), + [anon_sym_const] = ACTIONS(3451), + [anon_sym_constexpr] = ACTIONS(3451), + [anon_sym_volatile] = ACTIONS(3451), + [anon_sym_restrict] = ACTIONS(3451), + [anon_sym___restrict__] = ACTIONS(3451), + [anon_sym__Atomic] = ACTIONS(3451), + [anon_sym__Noreturn] = ACTIONS(3451), + [anon_sym_noreturn] = ACTIONS(3451), + [anon_sym_mutable] = ACTIONS(3451), + [anon_sym_constinit] = ACTIONS(3451), + [anon_sym_consteval] = ACTIONS(3451), + [sym_primitive_type] = ACTIONS(3451), + [anon_sym_enum] = ACTIONS(3451), + [anon_sym_class] = ACTIONS(3451), + [anon_sym_struct] = ACTIONS(3451), + [anon_sym_union] = ACTIONS(3451), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3451), + [anon_sym_decltype] = ACTIONS(3451), + [anon_sym_virtual] = ACTIONS(3451), + [anon_sym_alignas] = ACTIONS(3451), + [anon_sym_explicit] = ACTIONS(3451), + [anon_sym_typename] = ACTIONS(3451), + [anon_sym_template] = ACTIONS(3451), + [anon_sym_operator] = ACTIONS(3451), + [anon_sym_friend] = ACTIONS(3451), + [anon_sym_public] = ACTIONS(3451), + [anon_sym_private] = ACTIONS(3451), + [anon_sym_protected] = ACTIONS(3451), + [anon_sym_using] = ACTIONS(3451), + [anon_sym_static_assert] = ACTIONS(3451), + [sym_semgrep_metavar] = ACTIONS(3453), + }, + [2028] = { + [ts_builtin_sym_end] = ACTIONS(5431), + [sym_identifier] = ACTIONS(5429), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5431), + [anon_sym_COMMA] = ACTIONS(5431), + [anon_sym_RPAREN] = ACTIONS(5431), + [anon_sym_LPAREN2] = ACTIONS(5431), + [anon_sym_DASH] = ACTIONS(5429), + [anon_sym_PLUS] = ACTIONS(5429), + [anon_sym_STAR] = ACTIONS(5431), + [anon_sym_SLASH] = ACTIONS(5429), + [anon_sym_PERCENT] = ACTIONS(5431), + [anon_sym_PIPE_PIPE] = ACTIONS(5431), + [anon_sym_AMP_AMP] = ACTIONS(5431), + [anon_sym_PIPE] = ACTIONS(5429), + [anon_sym_CARET] = ACTIONS(5431), + [anon_sym_AMP] = ACTIONS(5429), + [anon_sym_EQ_EQ] = ACTIONS(5431), + [anon_sym_BANG_EQ] = ACTIONS(5431), + [anon_sym_GT] = ACTIONS(5429), + [anon_sym_GT_EQ] = ACTIONS(5431), + [anon_sym_LT_EQ] = ACTIONS(5429), + [anon_sym_LT] = ACTIONS(5429), + [anon_sym_LT_LT] = ACTIONS(5431), + [anon_sym_GT_GT] = ACTIONS(5431), + [anon_sym_SEMI] = ACTIONS(5431), + [anon_sym___extension__] = ACTIONS(5429), + [anon_sym___attribute__] = ACTIONS(5429), + [anon_sym_COLON_COLON] = ACTIONS(5431), + [anon_sym___based] = ACTIONS(5429), + [anon_sym_LBRACE] = ACTIONS(5431), + [anon_sym_RBRACE] = ACTIONS(5431), + [anon_sym_signed] = ACTIONS(5429), + [anon_sym_unsigned] = ACTIONS(5429), + [anon_sym_long] = ACTIONS(5429), + [anon_sym_short] = ACTIONS(5429), + [anon_sym_LBRACK] = ACTIONS(5431), + [anon_sym_RBRACK] = ACTIONS(5431), + [anon_sym_const] = ACTIONS(5429), + [anon_sym_constexpr] = ACTIONS(5429), + [anon_sym_volatile] = ACTIONS(5429), + [anon_sym_restrict] = ACTIONS(5429), + [anon_sym___restrict__] = ACTIONS(5429), + [anon_sym__Atomic] = ACTIONS(5429), + [anon_sym__Noreturn] = ACTIONS(5429), + [anon_sym_noreturn] = ACTIONS(5429), + [anon_sym_mutable] = ACTIONS(5429), + [anon_sym_constinit] = ACTIONS(5429), + [anon_sym_consteval] = ACTIONS(5429), + [sym_primitive_type] = ACTIONS(5429), + [anon_sym_COLON] = ACTIONS(5429), + [anon_sym_QMARK] = ACTIONS(5431), + [anon_sym_LT_EQ_GT] = ACTIONS(5431), + [anon_sym_or] = ACTIONS(5429), + [anon_sym_and] = ACTIONS(5429), + [anon_sym_bitor] = ACTIONS(5429), + [anon_sym_xor] = ACTIONS(5429), + [anon_sym_bitand] = ACTIONS(5429), + [anon_sym_not_eq] = ACTIONS(5429), + [anon_sym_DASH_DASH] = ACTIONS(5431), + [anon_sym_PLUS_PLUS] = ACTIONS(5431), + [anon_sym_DOT] = ACTIONS(5429), + [anon_sym_DOT_STAR] = ACTIONS(5431), + [anon_sym_DASH_GT] = ACTIONS(5431), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5429), + [anon_sym_decltype] = ACTIONS(5429), + [anon_sym_final] = ACTIONS(5429), + [anon_sym_override] = ACTIONS(5429), + [anon_sym_requires] = ACTIONS(5429), + }, + [2029] = { + [ts_builtin_sym_end] = ACTIONS(5404), + [sym_identifier] = ACTIONS(5402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5404), + [anon_sym_COMMA] = ACTIONS(5404), + [anon_sym_RPAREN] = ACTIONS(5404), + [anon_sym_LPAREN2] = ACTIONS(5404), + [anon_sym_DASH] = ACTIONS(5402), + [anon_sym_PLUS] = ACTIONS(5402), + [anon_sym_STAR] = ACTIONS(5404), + [anon_sym_SLASH] = ACTIONS(5402), + [anon_sym_PERCENT] = ACTIONS(5404), + [anon_sym_PIPE_PIPE] = ACTIONS(5404), + [anon_sym_AMP_AMP] = ACTIONS(5404), + [anon_sym_PIPE] = ACTIONS(5402), + [anon_sym_CARET] = ACTIONS(5404), + [anon_sym_AMP] = ACTIONS(5402), + [anon_sym_EQ_EQ] = ACTIONS(5404), + [anon_sym_BANG_EQ] = ACTIONS(5404), + [anon_sym_GT] = ACTIONS(5402), + [anon_sym_GT_EQ] = ACTIONS(5404), + [anon_sym_LT_EQ] = ACTIONS(5402), + [anon_sym_LT] = ACTIONS(5402), + [anon_sym_LT_LT] = ACTIONS(5404), + [anon_sym_GT_GT] = ACTIONS(5404), + [anon_sym_SEMI] = ACTIONS(5404), + [anon_sym___extension__] = ACTIONS(5402), + [anon_sym___attribute__] = ACTIONS(5402), + [anon_sym_COLON_COLON] = ACTIONS(5404), + [anon_sym___based] = ACTIONS(5402), + [anon_sym_LBRACE] = ACTIONS(5404), + [anon_sym_RBRACE] = ACTIONS(5404), + [anon_sym_signed] = ACTIONS(5402), + [anon_sym_unsigned] = ACTIONS(5402), + [anon_sym_long] = ACTIONS(5402), + [anon_sym_short] = ACTIONS(5402), + [anon_sym_LBRACK] = ACTIONS(5404), + [anon_sym_RBRACK] = ACTIONS(5404), + [anon_sym_const] = ACTIONS(5402), + [anon_sym_constexpr] = ACTIONS(5402), + [anon_sym_volatile] = ACTIONS(5402), + [anon_sym_restrict] = ACTIONS(5402), + [anon_sym___restrict__] = ACTIONS(5402), + [anon_sym__Atomic] = ACTIONS(5402), + [anon_sym__Noreturn] = ACTIONS(5402), + [anon_sym_noreturn] = ACTIONS(5402), + [anon_sym_mutable] = ACTIONS(5402), + [anon_sym_constinit] = ACTIONS(5402), + [anon_sym_consteval] = ACTIONS(5402), + [sym_primitive_type] = ACTIONS(5402), + [anon_sym_COLON] = ACTIONS(5402), + [anon_sym_QMARK] = ACTIONS(5404), + [anon_sym_LT_EQ_GT] = ACTIONS(5404), + [anon_sym_or] = ACTIONS(5402), + [anon_sym_and] = ACTIONS(5402), + [anon_sym_bitor] = ACTIONS(5402), + [anon_sym_xor] = ACTIONS(5402), + [anon_sym_bitand] = ACTIONS(5402), + [anon_sym_not_eq] = ACTIONS(5402), + [anon_sym_DASH_DASH] = ACTIONS(5404), + [anon_sym_PLUS_PLUS] = ACTIONS(5404), + [anon_sym_DOT] = ACTIONS(5402), + [anon_sym_DOT_STAR] = ACTIONS(5404), + [anon_sym_DASH_GT] = ACTIONS(5404), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5402), + [anon_sym_decltype] = ACTIONS(5402), + [anon_sym_final] = ACTIONS(5402), + [anon_sym_override] = ACTIONS(5402), + [anon_sym_requires] = ACTIONS(5402), + }, + [2030] = { + [sym_identifier] = ACTIONS(2191), + [aux_sym_preproc_def_token1] = ACTIONS(2191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2193), + [anon_sym_RPAREN] = ACTIONS(2193), + [aux_sym_preproc_if_token1] = ACTIONS(2191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2191), + [sym_preproc_directive] = ACTIONS(2191), + [anon_sym_LPAREN2] = ACTIONS(2193), + [anon_sym_TILDE] = ACTIONS(2193), + [anon_sym_STAR] = ACTIONS(2193), + [anon_sym_AMP_AMP] = ACTIONS(2193), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2193), + [anon_sym___extension__] = ACTIONS(2191), + [anon_sym_typedef] = ACTIONS(2191), + [anon_sym_extern] = ACTIONS(2191), + [anon_sym___attribute__] = ACTIONS(2191), + [anon_sym_COLON_COLON] = ACTIONS(2193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2193), + [anon_sym___declspec] = ACTIONS(2191), + [anon_sym___based] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_RBRACE] = ACTIONS(2193), + [anon_sym_signed] = ACTIONS(2191), + [anon_sym_unsigned] = ACTIONS(2191), + [anon_sym_long] = ACTIONS(2191), + [anon_sym_short] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_register] = ACTIONS(2191), + [anon_sym_inline] = ACTIONS(2191), + [anon_sym___inline] = ACTIONS(2191), + [anon_sym___inline__] = ACTIONS(2191), + [anon_sym___forceinline] = ACTIONS(2191), + [anon_sym_thread_local] = ACTIONS(2191), + [anon_sym___thread] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_constexpr] = ACTIONS(2191), + [anon_sym_volatile] = ACTIONS(2191), + [anon_sym_restrict] = ACTIONS(2191), + [anon_sym___restrict__] = ACTIONS(2191), + [anon_sym__Atomic] = ACTIONS(2191), + [anon_sym__Noreturn] = ACTIONS(2191), + [anon_sym_noreturn] = ACTIONS(2191), + [anon_sym_mutable] = ACTIONS(2191), + [anon_sym_constinit] = ACTIONS(2191), + [anon_sym_consteval] = ACTIONS(2191), + [sym_primitive_type] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_struct] = ACTIONS(2191), + [anon_sym_union] = ACTIONS(2191), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2191), + [anon_sym_decltype] = ACTIONS(2191), + [anon_sym_virtual] = ACTIONS(2191), + [anon_sym_alignas] = ACTIONS(2191), + [anon_sym_explicit] = ACTIONS(2191), + [anon_sym_typename] = ACTIONS(2191), + [anon_sym_template] = ACTIONS(2191), + [anon_sym_operator] = ACTIONS(2191), + [anon_sym_friend] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_static_assert] = ACTIONS(2191), + [sym_semgrep_metavar] = ACTIONS(2193), + }, + [2031] = { + [sym_string_literal] = STATE(3345), + [sym_template_argument_list] = STATE(4868), + [sym_raw_string_literal] = STATE(3345), + [sym_identifier] = ACTIONS(4773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [aux_sym_preproc_if_token2] = ACTIONS(4765), + [aux_sym_preproc_else_token1] = ACTIONS(4765), + [aux_sym_preproc_elif_token1] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4765), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4773), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4773), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(5912), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_EQ] = ACTIONS(5915), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(5917), + [anon_sym_SLASH_EQ] = ACTIONS(5917), + [anon_sym_PERCENT_EQ] = ACTIONS(5917), + [anon_sym_PLUS_EQ] = ACTIONS(5917), + [anon_sym_DASH_EQ] = ACTIONS(5917), + [anon_sym_LT_LT_EQ] = ACTIONS(5917), + [anon_sym_GT_GT_EQ] = ACTIONS(5917), + [anon_sym_AMP_EQ] = ACTIONS(5917), + [anon_sym_CARET_EQ] = ACTIONS(5917), + [anon_sym_PIPE_EQ] = ACTIONS(5917), + [anon_sym_and_eq] = ACTIONS(5915), + [anon_sym_or_eq] = ACTIONS(5915), + [anon_sym_xor_eq] = ACTIONS(5915), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4773), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4773), + [anon_sym_not_eq] = ACTIONS(4773), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(3982), + [anon_sym_u_DQUOTE] = ACTIONS(3982), + [anon_sym_U_DQUOTE] = ACTIONS(3982), + [anon_sym_u8_DQUOTE] = ACTIONS(3982), + [anon_sym_DQUOTE] = ACTIONS(3982), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3990), + [anon_sym_LR_DQUOTE] = ACTIONS(3990), + [anon_sym_uR_DQUOTE] = ACTIONS(3990), + [anon_sym_UR_DQUOTE] = ACTIONS(3990), + [anon_sym_u8R_DQUOTE] = ACTIONS(3990), + }, + [2032] = { + [sym_catch_clause] = STATE(2037), + [aux_sym_constructor_try_statement_repeat1] = STATE(2037), + [sym_identifier] = ACTIONS(3056), + [aux_sym_preproc_def_token1] = ACTIONS(3056), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3058), + [aux_sym_preproc_if_token1] = ACTIONS(3056), + [aux_sym_preproc_if_token2] = ACTIONS(3056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3056), + [sym_preproc_directive] = ACTIONS(3056), + [anon_sym_LPAREN2] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3058), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_AMP_AMP] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3056), + [anon_sym___extension__] = ACTIONS(3056), + [anon_sym_typedef] = ACTIONS(3056), + [anon_sym_extern] = ACTIONS(3056), + [anon_sym___attribute__] = ACTIONS(3056), + [anon_sym_COLON_COLON] = ACTIONS(3058), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3058), + [anon_sym___declspec] = ACTIONS(3056), + [anon_sym___based] = ACTIONS(3056), + [anon_sym_signed] = ACTIONS(3056), + [anon_sym_unsigned] = ACTIONS(3056), + [anon_sym_long] = ACTIONS(3056), + [anon_sym_short] = ACTIONS(3056), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_static] = ACTIONS(3056), + [anon_sym_register] = ACTIONS(3056), + [anon_sym_inline] = ACTIONS(3056), + [anon_sym___inline] = ACTIONS(3056), + [anon_sym___inline__] = ACTIONS(3056), + [anon_sym___forceinline] = ACTIONS(3056), + [anon_sym_thread_local] = ACTIONS(3056), + [anon_sym___thread] = ACTIONS(3056), + [anon_sym_const] = ACTIONS(3056), + [anon_sym_constexpr] = ACTIONS(3056), + [anon_sym_volatile] = ACTIONS(3056), + [anon_sym_restrict] = ACTIONS(3056), + [anon_sym___restrict__] = ACTIONS(3056), + [anon_sym__Atomic] = ACTIONS(3056), + [anon_sym__Noreturn] = ACTIONS(3056), + [anon_sym_noreturn] = ACTIONS(3056), + [anon_sym_mutable] = ACTIONS(3056), + [anon_sym_constinit] = ACTIONS(3056), + [anon_sym_consteval] = ACTIONS(3056), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3056), + [anon_sym_class] = ACTIONS(3056), + [anon_sym_struct] = ACTIONS(3056), + [anon_sym_union] = ACTIONS(3056), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3056), + [anon_sym_decltype] = ACTIONS(3056), + [anon_sym_virtual] = ACTIONS(3056), + [anon_sym_alignas] = ACTIONS(3056), + [anon_sym_explicit] = ACTIONS(3056), + [anon_sym_typename] = ACTIONS(3056), + [anon_sym_template] = ACTIONS(3056), + [anon_sym_operator] = ACTIONS(3056), + [anon_sym_friend] = ACTIONS(3056), + [anon_sym_public] = ACTIONS(3056), + [anon_sym_private] = ACTIONS(3056), + [anon_sym_protected] = ACTIONS(3056), + [anon_sym_using] = ACTIONS(3056), + [anon_sym_static_assert] = ACTIONS(3056), + [anon_sym_catch] = ACTIONS(5919), + [sym_semgrep_metavar] = ACTIONS(3058), + }, + [2033] = { + [sym_identifier] = ACTIONS(3060), + [aux_sym_preproc_def_token1] = ACTIONS(3060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3062), + [aux_sym_preproc_if_token1] = ACTIONS(3060), + [aux_sym_preproc_if_token2] = ACTIONS(3060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3060), + [aux_sym_preproc_else_token1] = ACTIONS(3060), + [aux_sym_preproc_elif_token1] = ACTIONS(3060), + [sym_preproc_directive] = ACTIONS(3060), + [anon_sym_LPAREN2] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3062), + [anon_sym_AMP_AMP] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym___extension__] = ACTIONS(3060), + [anon_sym_typedef] = ACTIONS(3060), + [anon_sym_extern] = ACTIONS(3060), + [anon_sym___attribute__] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3062), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3062), + [anon_sym___declspec] = ACTIONS(3060), + [anon_sym___based] = ACTIONS(3060), + [anon_sym_signed] = ACTIONS(3060), + [anon_sym_unsigned] = ACTIONS(3060), + [anon_sym_long] = ACTIONS(3060), + [anon_sym_short] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_register] = ACTIONS(3060), + [anon_sym_inline] = ACTIONS(3060), + [anon_sym___inline] = ACTIONS(3060), + [anon_sym___inline__] = ACTIONS(3060), + [anon_sym___forceinline] = ACTIONS(3060), + [anon_sym_thread_local] = ACTIONS(3060), + [anon_sym___thread] = ACTIONS(3060), + [anon_sym_const] = ACTIONS(3060), + [anon_sym_constexpr] = ACTIONS(3060), + [anon_sym_volatile] = ACTIONS(3060), + [anon_sym_restrict] = ACTIONS(3060), + [anon_sym___restrict__] = ACTIONS(3060), + [anon_sym__Atomic] = ACTIONS(3060), + [anon_sym__Noreturn] = ACTIONS(3060), + [anon_sym_noreturn] = ACTIONS(3060), + [anon_sym_mutable] = ACTIONS(3060), + [anon_sym_constinit] = ACTIONS(3060), + [anon_sym_consteval] = ACTIONS(3060), + [sym_primitive_type] = ACTIONS(3060), + [anon_sym_enum] = ACTIONS(3060), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3060), + [anon_sym_union] = ACTIONS(3060), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3060), + [anon_sym_decltype] = ACTIONS(3060), + [anon_sym_virtual] = ACTIONS(3060), + [anon_sym_alignas] = ACTIONS(3060), + [anon_sym_explicit] = ACTIONS(3060), + [anon_sym_typename] = ACTIONS(3060), + [anon_sym_template] = ACTIONS(3060), + [anon_sym_operator] = ACTIONS(3060), + [anon_sym_friend] = ACTIONS(3060), + [anon_sym_public] = ACTIONS(3060), + [anon_sym_private] = ACTIONS(3060), + [anon_sym_protected] = ACTIONS(3060), + [anon_sym_using] = ACTIONS(3060), + [anon_sym_static_assert] = ACTIONS(3060), + [anon_sym_catch] = ACTIONS(3060), + [sym_semgrep_metavar] = ACTIONS(3062), + }, + [2034] = { + [sym_catch_clause] = STATE(2037), + [aux_sym_constructor_try_statement_repeat1] = STATE(2037), + [sym_identifier] = ACTIONS(3052), + [aux_sym_preproc_def_token1] = ACTIONS(3052), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3054), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_if_token2] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3052), + [sym_preproc_directive] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3054), + [anon_sym_TILDE] = ACTIONS(3054), + [anon_sym_STAR] = ACTIONS(3054), + [anon_sym_AMP_AMP] = ACTIONS(3054), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym___extension__] = ACTIONS(3052), + [anon_sym_typedef] = ACTIONS(3052), + [anon_sym_extern] = ACTIONS(3052), + [anon_sym___attribute__] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3054), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3054), + [anon_sym___declspec] = ACTIONS(3052), + [anon_sym___based] = ACTIONS(3052), + [anon_sym_signed] = ACTIONS(3052), + [anon_sym_unsigned] = ACTIONS(3052), + [anon_sym_long] = ACTIONS(3052), + [anon_sym_short] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_static] = ACTIONS(3052), + [anon_sym_register] = ACTIONS(3052), + [anon_sym_inline] = ACTIONS(3052), + [anon_sym___inline] = ACTIONS(3052), + [anon_sym___inline__] = ACTIONS(3052), + [anon_sym___forceinline] = ACTIONS(3052), + [anon_sym_thread_local] = ACTIONS(3052), + [anon_sym___thread] = ACTIONS(3052), + [anon_sym_const] = ACTIONS(3052), + [anon_sym_constexpr] = ACTIONS(3052), + [anon_sym_volatile] = ACTIONS(3052), + [anon_sym_restrict] = ACTIONS(3052), + [anon_sym___restrict__] = ACTIONS(3052), + [anon_sym__Atomic] = ACTIONS(3052), + [anon_sym__Noreturn] = ACTIONS(3052), + [anon_sym_noreturn] = ACTIONS(3052), + [anon_sym_mutable] = ACTIONS(3052), + [anon_sym_constinit] = ACTIONS(3052), + [anon_sym_consteval] = ACTIONS(3052), + [sym_primitive_type] = ACTIONS(3052), + [anon_sym_enum] = ACTIONS(3052), + [anon_sym_class] = ACTIONS(3052), + [anon_sym_struct] = ACTIONS(3052), + [anon_sym_union] = ACTIONS(3052), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3052), + [anon_sym_decltype] = ACTIONS(3052), + [anon_sym_virtual] = ACTIONS(3052), + [anon_sym_alignas] = ACTIONS(3052), + [anon_sym_explicit] = ACTIONS(3052), + [anon_sym_typename] = ACTIONS(3052), + [anon_sym_template] = ACTIONS(3052), + [anon_sym_operator] = ACTIONS(3052), + [anon_sym_friend] = ACTIONS(3052), + [anon_sym_public] = ACTIONS(3052), + [anon_sym_private] = ACTIONS(3052), + [anon_sym_protected] = ACTIONS(3052), + [anon_sym_using] = ACTIONS(3052), + [anon_sym_static_assert] = ACTIONS(3052), + [anon_sym_catch] = ACTIONS(5919), + [sym_semgrep_metavar] = ACTIONS(3054), + }, + [2035] = { + [sym_string_literal] = STATE(2094), + [sym_template_argument_list] = STATE(3178), + [sym_raw_string_literal] = STATE(2094), + [sym_identifier] = ACTIONS(4773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [aux_sym_preproc_if_token2] = ACTIONS(4765), + [aux_sym_preproc_else_token1] = ACTIONS(4765), + [aux_sym_preproc_elif_token1] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4765), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4773), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4773), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(5921), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_EQ] = ACTIONS(4773), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4765), + [anon_sym_SLASH_EQ] = ACTIONS(4765), + [anon_sym_PERCENT_EQ] = ACTIONS(4765), + [anon_sym_PLUS_EQ] = ACTIONS(4765), + [anon_sym_DASH_EQ] = ACTIONS(4765), + [anon_sym_LT_LT_EQ] = ACTIONS(4765), + [anon_sym_GT_GT_EQ] = ACTIONS(4765), + [anon_sym_AMP_EQ] = ACTIONS(4765), + [anon_sym_CARET_EQ] = ACTIONS(4765), + [anon_sym_PIPE_EQ] = ACTIONS(4765), + [anon_sym_and_eq] = ACTIONS(4773), + [anon_sym_or_eq] = ACTIONS(4773), + [anon_sym_xor_eq] = ACTIONS(4773), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4773), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4773), + [anon_sym_not_eq] = ACTIONS(4773), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [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_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + }, + [2036] = { + [sym_catch_clause] = STATE(2037), + [aux_sym_constructor_try_statement_repeat1] = STATE(2037), + [sym_identifier] = ACTIONS(3046), + [aux_sym_preproc_def_token1] = ACTIONS(3046), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3046), + [aux_sym_preproc_if_token2] = ACTIONS(3046), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3046), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3046), + [sym_preproc_directive] = ACTIONS(3046), + [anon_sym_LPAREN2] = ACTIONS(3048), + [anon_sym_TILDE] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(3048), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3046), + [anon_sym_typedef] = ACTIONS(3046), + [anon_sym_extern] = ACTIONS(3046), + [anon_sym___attribute__] = ACTIONS(3046), + [anon_sym_COLON_COLON] = ACTIONS(3048), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3048), + [anon_sym___declspec] = ACTIONS(3046), + [anon_sym___based] = ACTIONS(3046), + [anon_sym_signed] = ACTIONS(3046), + [anon_sym_unsigned] = ACTIONS(3046), + [anon_sym_long] = ACTIONS(3046), + [anon_sym_short] = ACTIONS(3046), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_static] = ACTIONS(3046), + [anon_sym_register] = ACTIONS(3046), + [anon_sym_inline] = ACTIONS(3046), + [anon_sym___inline] = ACTIONS(3046), + [anon_sym___inline__] = ACTIONS(3046), + [anon_sym___forceinline] = ACTIONS(3046), + [anon_sym_thread_local] = ACTIONS(3046), + [anon_sym___thread] = ACTIONS(3046), + [anon_sym_const] = ACTIONS(3046), + [anon_sym_constexpr] = ACTIONS(3046), + [anon_sym_volatile] = ACTIONS(3046), + [anon_sym_restrict] = ACTIONS(3046), + [anon_sym___restrict__] = ACTIONS(3046), + [anon_sym__Atomic] = ACTIONS(3046), + [anon_sym__Noreturn] = ACTIONS(3046), + [anon_sym_noreturn] = ACTIONS(3046), + [anon_sym_mutable] = ACTIONS(3046), + [anon_sym_constinit] = ACTIONS(3046), + [anon_sym_consteval] = ACTIONS(3046), + [sym_primitive_type] = ACTIONS(3046), + [anon_sym_enum] = ACTIONS(3046), + [anon_sym_class] = ACTIONS(3046), + [anon_sym_struct] = ACTIONS(3046), + [anon_sym_union] = ACTIONS(3046), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3046), + [anon_sym_decltype] = ACTIONS(3046), + [anon_sym_virtual] = ACTIONS(3046), + [anon_sym_alignas] = ACTIONS(3046), + [anon_sym_explicit] = ACTIONS(3046), + [anon_sym_typename] = ACTIONS(3046), + [anon_sym_template] = ACTIONS(3046), + [anon_sym_operator] = ACTIONS(3046), + [anon_sym_friend] = ACTIONS(3046), + [anon_sym_public] = ACTIONS(3046), + [anon_sym_private] = ACTIONS(3046), + [anon_sym_protected] = ACTIONS(3046), + [anon_sym_using] = ACTIONS(3046), + [anon_sym_static_assert] = ACTIONS(3046), + [anon_sym_catch] = ACTIONS(5919), + [sym_semgrep_metavar] = ACTIONS(3048), + }, + [2037] = { + [sym_catch_clause] = STATE(2037), + [aux_sym_constructor_try_statement_repeat1] = STATE(2037), + [sym_identifier] = ACTIONS(3027), + [aux_sym_preproc_def_token1] = ACTIONS(3027), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3029), + [aux_sym_preproc_if_token1] = ACTIONS(3027), + [aux_sym_preproc_if_token2] = ACTIONS(3027), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3027), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3027), + [sym_preproc_directive] = ACTIONS(3027), + [anon_sym_LPAREN2] = ACTIONS(3029), + [anon_sym_TILDE] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3029), + [anon_sym_AMP_AMP] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3027), + [anon_sym___extension__] = ACTIONS(3027), + [anon_sym_typedef] = ACTIONS(3027), + [anon_sym_extern] = ACTIONS(3027), + [anon_sym___attribute__] = ACTIONS(3027), + [anon_sym_COLON_COLON] = ACTIONS(3029), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3029), + [anon_sym___declspec] = ACTIONS(3027), + [anon_sym___based] = ACTIONS(3027), + [anon_sym_signed] = ACTIONS(3027), + [anon_sym_unsigned] = ACTIONS(3027), + [anon_sym_long] = ACTIONS(3027), + [anon_sym_short] = ACTIONS(3027), + [anon_sym_LBRACK] = ACTIONS(3027), + [anon_sym_static] = ACTIONS(3027), + [anon_sym_register] = ACTIONS(3027), + [anon_sym_inline] = ACTIONS(3027), + [anon_sym___inline] = ACTIONS(3027), + [anon_sym___inline__] = ACTIONS(3027), + [anon_sym___forceinline] = ACTIONS(3027), + [anon_sym_thread_local] = ACTIONS(3027), + [anon_sym___thread] = ACTIONS(3027), + [anon_sym_const] = ACTIONS(3027), + [anon_sym_constexpr] = ACTIONS(3027), + [anon_sym_volatile] = ACTIONS(3027), + [anon_sym_restrict] = ACTIONS(3027), + [anon_sym___restrict__] = ACTIONS(3027), + [anon_sym__Atomic] = ACTIONS(3027), + [anon_sym__Noreturn] = ACTIONS(3027), + [anon_sym_noreturn] = ACTIONS(3027), + [anon_sym_mutable] = ACTIONS(3027), + [anon_sym_constinit] = ACTIONS(3027), + [anon_sym_consteval] = ACTIONS(3027), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3027), + [anon_sym_class] = ACTIONS(3027), + [anon_sym_struct] = ACTIONS(3027), + [anon_sym_union] = ACTIONS(3027), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3027), + [anon_sym_decltype] = ACTIONS(3027), + [anon_sym_virtual] = ACTIONS(3027), + [anon_sym_alignas] = ACTIONS(3027), + [anon_sym_explicit] = ACTIONS(3027), + [anon_sym_typename] = ACTIONS(3027), + [anon_sym_template] = ACTIONS(3027), + [anon_sym_operator] = ACTIONS(3027), + [anon_sym_friend] = ACTIONS(3027), + [anon_sym_public] = ACTIONS(3027), + [anon_sym_private] = ACTIONS(3027), + [anon_sym_protected] = ACTIONS(3027), + [anon_sym_using] = ACTIONS(3027), + [anon_sym_static_assert] = ACTIONS(3027), + [anon_sym_catch] = ACTIONS(5924), + [sym_semgrep_metavar] = ACTIONS(3029), + }, + [2038] = { + [sym_catch_clause] = STATE(2054), + [aux_sym_constructor_try_statement_repeat1] = STATE(2054), + [sym_identifier] = ACTIONS(3056), + [aux_sym_preproc_def_token1] = ACTIONS(3056), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3058), + [aux_sym_preproc_if_token1] = ACTIONS(3056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3056), + [sym_preproc_directive] = ACTIONS(3056), + [anon_sym_LPAREN2] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3058), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_AMP_AMP] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3056), + [anon_sym___extension__] = ACTIONS(3056), + [anon_sym_typedef] = ACTIONS(3056), + [anon_sym_extern] = ACTIONS(3056), + [anon_sym___attribute__] = ACTIONS(3056), + [anon_sym_COLON_COLON] = ACTIONS(3058), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3058), + [anon_sym___declspec] = ACTIONS(3056), + [anon_sym___based] = ACTIONS(3056), + [anon_sym_RBRACE] = ACTIONS(3058), + [anon_sym_signed] = ACTIONS(3056), + [anon_sym_unsigned] = ACTIONS(3056), + [anon_sym_long] = ACTIONS(3056), + [anon_sym_short] = ACTIONS(3056), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_static] = ACTIONS(3056), + [anon_sym_register] = ACTIONS(3056), + [anon_sym_inline] = ACTIONS(3056), + [anon_sym___inline] = ACTIONS(3056), + [anon_sym___inline__] = ACTIONS(3056), + [anon_sym___forceinline] = ACTIONS(3056), + [anon_sym_thread_local] = ACTIONS(3056), + [anon_sym___thread] = ACTIONS(3056), + [anon_sym_const] = ACTIONS(3056), + [anon_sym_constexpr] = ACTIONS(3056), + [anon_sym_volatile] = ACTIONS(3056), + [anon_sym_restrict] = ACTIONS(3056), + [anon_sym___restrict__] = ACTIONS(3056), + [anon_sym__Atomic] = ACTIONS(3056), + [anon_sym__Noreturn] = ACTIONS(3056), + [anon_sym_noreturn] = ACTIONS(3056), + [anon_sym_mutable] = ACTIONS(3056), + [anon_sym_constinit] = ACTIONS(3056), + [anon_sym_consteval] = ACTIONS(3056), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3056), + [anon_sym_class] = ACTIONS(3056), + [anon_sym_struct] = ACTIONS(3056), + [anon_sym_union] = ACTIONS(3056), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3056), + [anon_sym_decltype] = ACTIONS(3056), + [anon_sym_virtual] = ACTIONS(3056), + [anon_sym_alignas] = ACTIONS(3056), + [anon_sym_explicit] = ACTIONS(3056), + [anon_sym_typename] = ACTIONS(3056), + [anon_sym_template] = ACTIONS(3056), + [anon_sym_operator] = ACTIONS(3056), + [anon_sym_friend] = ACTIONS(3056), + [anon_sym_public] = ACTIONS(3056), + [anon_sym_private] = ACTIONS(3056), + [anon_sym_protected] = ACTIONS(3056), + [anon_sym_using] = ACTIONS(3056), + [anon_sym_static_assert] = ACTIONS(3056), + [anon_sym_catch] = ACTIONS(5927), + [sym_semgrep_metavar] = ACTIONS(3058), + }, + [2039] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5445), + [anon_sym_COMMA] = ACTIONS(5445), + [anon_sym_RPAREN] = ACTIONS(5435), + [anon_sym_LPAREN2] = ACTIONS(5435), + [anon_sym_DASH] = ACTIONS(5440), + [anon_sym_PLUS] = ACTIONS(5440), + [anon_sym_STAR] = ACTIONS(5442), + [anon_sym_SLASH] = ACTIONS(5440), + [anon_sym_PERCENT] = ACTIONS(5440), + [anon_sym_PIPE_PIPE] = ACTIONS(5445), + [anon_sym_AMP_AMP] = ACTIONS(5435), + [anon_sym_PIPE] = ACTIONS(5440), + [anon_sym_CARET] = ACTIONS(5440), + [anon_sym_AMP] = ACTIONS(5442), + [anon_sym_EQ_EQ] = ACTIONS(5445), + [anon_sym_BANG_EQ] = ACTIONS(5445), + [anon_sym_GT] = ACTIONS(5440), + [anon_sym_GT_EQ] = ACTIONS(5445), + [anon_sym_LT_EQ] = ACTIONS(5440), + [anon_sym_LT] = ACTIONS(5440), + [anon_sym_LT_LT] = ACTIONS(5440), + [anon_sym_GT_GT] = ACTIONS(5440), + [anon_sym___extension__] = ACTIONS(5438), + [anon_sym_COLON_COLON] = ACTIONS(5438), + [anon_sym_LBRACE] = ACTIONS(5438), + [anon_sym_LBRACK] = ACTIONS(5435), + [anon_sym_EQ] = ACTIONS(5440), + [anon_sym_const] = ACTIONS(5433), + [anon_sym_constexpr] = ACTIONS(5438), + [anon_sym_volatile] = ACTIONS(5438), + [anon_sym_restrict] = ACTIONS(5438), + [anon_sym___restrict__] = ACTIONS(5438), + [anon_sym__Atomic] = ACTIONS(5438), + [anon_sym__Noreturn] = ACTIONS(5438), + [anon_sym_noreturn] = ACTIONS(5438), + [anon_sym_mutable] = ACTIONS(5438), + [anon_sym_constinit] = ACTIONS(5438), + [anon_sym_consteval] = ACTIONS(5438), + [anon_sym_QMARK] = ACTIONS(5445), + [anon_sym_STAR_EQ] = ACTIONS(5445), + [anon_sym_SLASH_EQ] = ACTIONS(5445), + [anon_sym_PERCENT_EQ] = ACTIONS(5445), + [anon_sym_PLUS_EQ] = ACTIONS(5445), + [anon_sym_DASH_EQ] = ACTIONS(5445), + [anon_sym_LT_LT_EQ] = ACTIONS(5445), + [anon_sym_GT_GT_EQ] = ACTIONS(5445), + [anon_sym_AMP_EQ] = ACTIONS(5445), + [anon_sym_CARET_EQ] = ACTIONS(5445), + [anon_sym_PIPE_EQ] = ACTIONS(5445), + [anon_sym_and_eq] = ACTIONS(5445), + [anon_sym_or_eq] = ACTIONS(5445), + [anon_sym_xor_eq] = ACTIONS(5445), + [anon_sym_LT_EQ_GT] = ACTIONS(5445), + [anon_sym_or] = ACTIONS(5440), + [anon_sym_and] = ACTIONS(5440), + [anon_sym_bitor] = ACTIONS(5445), + [anon_sym_xor] = ACTIONS(5440), + [anon_sym_bitand] = ACTIONS(5445), + [anon_sym_not_eq] = ACTIONS(5445), + [anon_sym_DASH_DASH] = ACTIONS(5445), + [anon_sym_PLUS_PLUS] = ACTIONS(5445), + [anon_sym_DOT] = ACTIONS(5440), + [anon_sym_DOT_STAR] = ACTIONS(5445), + [anon_sym_DASH_GT] = ACTIONS(5440), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5438), + [anon_sym_decltype] = ACTIONS(5438), + [anon_sym_DASH_GT_STAR] = ACTIONS(5445), + [sym_semgrep_metavar] = ACTIONS(5438), }, [2040] = { - [sym_string_literal] = STATE(2640), - [sym_template_argument_list] = STATE(5014), - [sym_raw_string_literal] = STATE(2640), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(5888), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(5764), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5888), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_RBRACE] = ACTIONS(4829), - [anon_sym_LBRACK] = ACTIONS(5890), - [anon_sym_EQ] = ACTIONS(4861), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4865), - [anon_sym_SLASH_EQ] = ACTIONS(4865), - [anon_sym_PERCENT_EQ] = ACTIONS(4865), - [anon_sym_PLUS_EQ] = ACTIONS(4865), - [anon_sym_DASH_EQ] = ACTIONS(4865), - [anon_sym_LT_LT_EQ] = ACTIONS(4865), - [anon_sym_GT_GT_EQ] = ACTIONS(4865), - [anon_sym_AMP_EQ] = ACTIONS(4865), - [anon_sym_CARET_EQ] = ACTIONS(4865), - [anon_sym_PIPE_EQ] = ACTIONS(4865), - [anon_sym_and_eq] = ACTIONS(4865), - [anon_sym_or_eq] = ACTIONS(4865), - [anon_sym_xor_eq] = ACTIONS(4865), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4829), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4829), - [anon_sym_not_eq] = ACTIONS(4829), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), + [sym_string_literal] = STATE(1843), + [sym_raw_string_literal] = STATE(1843), + [sym_identifier] = ACTIONS(4773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [aux_sym_preproc_if_token2] = ACTIONS(4765), + [aux_sym_preproc_else_token1] = ACTIONS(4765), + [aux_sym_preproc_elif_token1] = ACTIONS(4773), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4765), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4765), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4773), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4773), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(4773), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_EQ] = ACTIONS(4773), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4765), + [anon_sym_SLASH_EQ] = ACTIONS(4765), + [anon_sym_PERCENT_EQ] = ACTIONS(4765), + [anon_sym_PLUS_EQ] = ACTIONS(4765), + [anon_sym_DASH_EQ] = ACTIONS(4765), + [anon_sym_LT_LT_EQ] = ACTIONS(4765), + [anon_sym_GT_GT_EQ] = ACTIONS(4765), + [anon_sym_AMP_EQ] = ACTIONS(4765), + [anon_sym_CARET_EQ] = ACTIONS(4765), + [anon_sym_PIPE_EQ] = ACTIONS(4765), + [anon_sym_and_eq] = ACTIONS(4773), + [anon_sym_or_eq] = ACTIONS(4773), + [anon_sym_xor_eq] = ACTIONS(4773), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4773), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4773), + [anon_sym_not_eq] = ACTIONS(4773), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(2341), + [anon_sym_u_DQUOTE] = ACTIONS(2341), + [anon_sym_U_DQUOTE] = ACTIONS(2341), + [anon_sym_u8_DQUOTE] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2345), + [anon_sym_LR_DQUOTE] = ACTIONS(2345), + [anon_sym_uR_DQUOTE] = ACTIONS(2345), + [anon_sym_UR_DQUOTE] = ACTIONS(2345), + [anon_sym_u8R_DQUOTE] = ACTIONS(2345), + [sym_literal_suffix] = ACTIONS(5929), }, [2041] = { - [sym_identifier] = ACTIONS(3433), - [aux_sym_preproc_def_token1] = ACTIONS(3433), - [aux_sym_preproc_if_token1] = ACTIONS(3433), - [aux_sym_preproc_if_token2] = ACTIONS(3433), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3433), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3433), - [aux_sym_preproc_else_token1] = ACTIONS(3433), - [aux_sym_preproc_elif_token1] = ACTIONS(3433), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3433), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3433), - [sym_preproc_directive] = ACTIONS(3433), - [anon_sym_LPAREN2] = ACTIONS(3435), - [anon_sym_TILDE] = ACTIONS(3435), - [anon_sym_STAR] = ACTIONS(3435), - [anon_sym_AMP_AMP] = ACTIONS(3435), - [anon_sym_AMP] = ACTIONS(3433), - [anon_sym___extension__] = ACTIONS(3433), - [anon_sym_typedef] = ACTIONS(3433), - [anon_sym_extern] = ACTIONS(3433), - [anon_sym___attribute__] = ACTIONS(3433), - [anon_sym_COLON_COLON] = ACTIONS(3435), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3435), - [anon_sym___declspec] = ACTIONS(3433), - [anon_sym___based] = ACTIONS(3433), - [anon_sym_signed] = ACTIONS(3433), - [anon_sym_unsigned] = ACTIONS(3433), - [anon_sym_long] = ACTIONS(3433), - [anon_sym_short] = ACTIONS(3433), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_static] = ACTIONS(3433), - [anon_sym_register] = ACTIONS(3433), - [anon_sym_inline] = ACTIONS(3433), - [anon_sym___inline] = ACTIONS(3433), - [anon_sym___inline__] = ACTIONS(3433), - [anon_sym___forceinline] = ACTIONS(3433), - [anon_sym_thread_local] = ACTIONS(3433), - [anon_sym___thread] = ACTIONS(3433), - [anon_sym_const] = ACTIONS(3433), - [anon_sym_constexpr] = ACTIONS(3433), - [anon_sym_volatile] = ACTIONS(3433), - [anon_sym_restrict] = ACTIONS(3433), - [anon_sym___restrict__] = ACTIONS(3433), - [anon_sym__Atomic] = ACTIONS(3433), - [anon_sym__Noreturn] = ACTIONS(3433), - [anon_sym_noreturn] = ACTIONS(3433), - [anon_sym_mutable] = ACTIONS(3433), - [anon_sym_constinit] = ACTIONS(3433), - [anon_sym_consteval] = ACTIONS(3433), - [sym_primitive_type] = ACTIONS(3433), - [anon_sym_enum] = ACTIONS(3433), - [anon_sym_class] = ACTIONS(3433), - [anon_sym_struct] = ACTIONS(3433), - [anon_sym_union] = ACTIONS(3433), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3433), - [anon_sym_decltype] = ACTIONS(3433), - [anon_sym_virtual] = ACTIONS(3433), - [anon_sym_alignas] = ACTIONS(3433), - [anon_sym_explicit] = ACTIONS(3433), - [anon_sym_typename] = ACTIONS(3433), - [anon_sym_template] = ACTIONS(3433), - [anon_sym_operator] = ACTIONS(3433), - [anon_sym_friend] = ACTIONS(3433), - [anon_sym_public] = ACTIONS(3433), - [anon_sym_private] = ACTIONS(3433), - [anon_sym_protected] = ACTIONS(3433), - [anon_sym_using] = ACTIONS(3433), - [anon_sym_static_assert] = ACTIONS(3433), + [sym_catch_clause] = STATE(2054), + [aux_sym_constructor_try_statement_repeat1] = STATE(2054), + [sym_identifier] = ACTIONS(3052), + [aux_sym_preproc_def_token1] = ACTIONS(3052), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3054), + [aux_sym_preproc_if_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3052), + [sym_preproc_directive] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3054), + [anon_sym_TILDE] = ACTIONS(3054), + [anon_sym_STAR] = ACTIONS(3054), + [anon_sym_AMP_AMP] = ACTIONS(3054), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym___extension__] = ACTIONS(3052), + [anon_sym_typedef] = ACTIONS(3052), + [anon_sym_extern] = ACTIONS(3052), + [anon_sym___attribute__] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3054), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3054), + [anon_sym___declspec] = ACTIONS(3052), + [anon_sym___based] = ACTIONS(3052), + [anon_sym_RBRACE] = ACTIONS(3054), + [anon_sym_signed] = ACTIONS(3052), + [anon_sym_unsigned] = ACTIONS(3052), + [anon_sym_long] = ACTIONS(3052), + [anon_sym_short] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_static] = ACTIONS(3052), + [anon_sym_register] = ACTIONS(3052), + [anon_sym_inline] = ACTIONS(3052), + [anon_sym___inline] = ACTIONS(3052), + [anon_sym___inline__] = ACTIONS(3052), + [anon_sym___forceinline] = ACTIONS(3052), + [anon_sym_thread_local] = ACTIONS(3052), + [anon_sym___thread] = ACTIONS(3052), + [anon_sym_const] = ACTIONS(3052), + [anon_sym_constexpr] = ACTIONS(3052), + [anon_sym_volatile] = ACTIONS(3052), + [anon_sym_restrict] = ACTIONS(3052), + [anon_sym___restrict__] = ACTIONS(3052), + [anon_sym__Atomic] = ACTIONS(3052), + [anon_sym__Noreturn] = ACTIONS(3052), + [anon_sym_noreturn] = ACTIONS(3052), + [anon_sym_mutable] = ACTIONS(3052), + [anon_sym_constinit] = ACTIONS(3052), + [anon_sym_consteval] = ACTIONS(3052), + [sym_primitive_type] = ACTIONS(3052), + [anon_sym_enum] = ACTIONS(3052), + [anon_sym_class] = ACTIONS(3052), + [anon_sym_struct] = ACTIONS(3052), + [anon_sym_union] = ACTIONS(3052), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3052), + [anon_sym_decltype] = ACTIONS(3052), + [anon_sym_virtual] = ACTIONS(3052), + [anon_sym_alignas] = ACTIONS(3052), + [anon_sym_explicit] = ACTIONS(3052), + [anon_sym_typename] = ACTIONS(3052), + [anon_sym_template] = ACTIONS(3052), + [anon_sym_operator] = ACTIONS(3052), + [anon_sym_friend] = ACTIONS(3052), + [anon_sym_public] = ACTIONS(3052), + [anon_sym_private] = ACTIONS(3052), + [anon_sym_protected] = ACTIONS(3052), + [anon_sym_using] = ACTIONS(3052), + [anon_sym_static_assert] = ACTIONS(3052), + [anon_sym_catch] = ACTIONS(5927), + [sym_semgrep_metavar] = ACTIONS(3054), }, [2042] = { - [sym_identifier] = ACTIONS(3441), - [aux_sym_preproc_def_token1] = ACTIONS(3441), - [aux_sym_preproc_if_token1] = ACTIONS(3441), - [aux_sym_preproc_if_token2] = ACTIONS(3441), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3441), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3441), - [aux_sym_preproc_else_token1] = ACTIONS(3441), - [aux_sym_preproc_elif_token1] = ACTIONS(3441), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3441), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3441), - [sym_preproc_directive] = ACTIONS(3441), - [anon_sym_LPAREN2] = ACTIONS(3443), - [anon_sym_TILDE] = ACTIONS(3443), - [anon_sym_STAR] = ACTIONS(3443), - [anon_sym_AMP_AMP] = ACTIONS(3443), - [anon_sym_AMP] = ACTIONS(3441), - [anon_sym___extension__] = ACTIONS(3441), - [anon_sym_typedef] = ACTIONS(3441), - [anon_sym_extern] = ACTIONS(3441), - [anon_sym___attribute__] = ACTIONS(3441), - [anon_sym_COLON_COLON] = ACTIONS(3443), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3443), - [anon_sym___declspec] = ACTIONS(3441), - [anon_sym___based] = ACTIONS(3441), - [anon_sym_signed] = ACTIONS(3441), - [anon_sym_unsigned] = ACTIONS(3441), - [anon_sym_long] = ACTIONS(3441), - [anon_sym_short] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_static] = ACTIONS(3441), - [anon_sym_register] = ACTIONS(3441), - [anon_sym_inline] = ACTIONS(3441), - [anon_sym___inline] = ACTIONS(3441), - [anon_sym___inline__] = ACTIONS(3441), - [anon_sym___forceinline] = ACTIONS(3441), - [anon_sym_thread_local] = ACTIONS(3441), - [anon_sym___thread] = ACTIONS(3441), - [anon_sym_const] = ACTIONS(3441), - [anon_sym_constexpr] = ACTIONS(3441), - [anon_sym_volatile] = ACTIONS(3441), - [anon_sym_restrict] = ACTIONS(3441), - [anon_sym___restrict__] = ACTIONS(3441), - [anon_sym__Atomic] = ACTIONS(3441), - [anon_sym__Noreturn] = ACTIONS(3441), - [anon_sym_noreturn] = ACTIONS(3441), - [anon_sym_mutable] = ACTIONS(3441), - [anon_sym_constinit] = ACTIONS(3441), - [anon_sym_consteval] = ACTIONS(3441), - [sym_primitive_type] = ACTIONS(3441), - [anon_sym_enum] = ACTIONS(3441), - [anon_sym_class] = ACTIONS(3441), - [anon_sym_struct] = ACTIONS(3441), - [anon_sym_union] = ACTIONS(3441), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3441), - [anon_sym_decltype] = ACTIONS(3441), - [anon_sym_virtual] = ACTIONS(3441), - [anon_sym_alignas] = ACTIONS(3441), - [anon_sym_explicit] = ACTIONS(3441), - [anon_sym_typename] = ACTIONS(3441), - [anon_sym_template] = ACTIONS(3441), - [anon_sym_operator] = ACTIONS(3441), - [anon_sym_friend] = ACTIONS(3441), - [anon_sym_public] = ACTIONS(3441), - [anon_sym_private] = ACTIONS(3441), - [anon_sym_protected] = ACTIONS(3441), - [anon_sym_using] = ACTIONS(3441), - [anon_sym_static_assert] = ACTIONS(3441), + [sym_template_argument_list] = STATE(2106), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5376), + [anon_sym_COMMA] = ACTIONS(5376), + [anon_sym_RPAREN] = ACTIONS(5376), + [anon_sym_LPAREN2] = ACTIONS(5378), + [anon_sym_DASH] = ACTIONS(5383), + [anon_sym_PLUS] = ACTIONS(5383), + [anon_sym_STAR] = ACTIONS(5385), + [anon_sym_SLASH] = ACTIONS(5383), + [anon_sym_PERCENT] = ACTIONS(5383), + [anon_sym_PIPE_PIPE] = ACTIONS(5376), + [anon_sym_AMP_AMP] = ACTIONS(5378), + [anon_sym_PIPE] = ACTIONS(5383), + [anon_sym_CARET] = ACTIONS(5383), + [anon_sym_AMP] = ACTIONS(5385), + [anon_sym_EQ_EQ] = ACTIONS(5376), + [anon_sym_BANG_EQ] = ACTIONS(5376), + [anon_sym_GT] = ACTIONS(5383), + [anon_sym_GT_EQ] = ACTIONS(5376), + [anon_sym_LT_EQ] = ACTIONS(5383), + [anon_sym_LT] = ACTIONS(5931), + [anon_sym_LT_LT] = ACTIONS(5383), + [anon_sym_GT_GT] = ACTIONS(5383), + [anon_sym___extension__] = ACTIONS(5381), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(5381), + [anon_sym_LBRACK] = ACTIONS(5378), + [anon_sym_EQ] = ACTIONS(5383), + [anon_sym_const] = ACTIONS(5374), + [anon_sym_constexpr] = ACTIONS(5381), + [anon_sym_volatile] = ACTIONS(5381), + [anon_sym_restrict] = ACTIONS(5381), + [anon_sym___restrict__] = ACTIONS(5381), + [anon_sym__Atomic] = ACTIONS(5381), + [anon_sym__Noreturn] = ACTIONS(5381), + [anon_sym_noreturn] = ACTIONS(5381), + [anon_sym_mutable] = ACTIONS(5381), + [anon_sym_constinit] = ACTIONS(5381), + [anon_sym_consteval] = ACTIONS(5381), + [anon_sym_QMARK] = ACTIONS(5376), + [anon_sym_STAR_EQ] = ACTIONS(5376), + [anon_sym_SLASH_EQ] = ACTIONS(5376), + [anon_sym_PERCENT_EQ] = ACTIONS(5376), + [anon_sym_PLUS_EQ] = ACTIONS(5376), + [anon_sym_DASH_EQ] = ACTIONS(5376), + [anon_sym_LT_LT_EQ] = ACTIONS(5376), + [anon_sym_GT_GT_EQ] = ACTIONS(5376), + [anon_sym_AMP_EQ] = ACTIONS(5376), + [anon_sym_CARET_EQ] = ACTIONS(5376), + [anon_sym_PIPE_EQ] = ACTIONS(5376), + [anon_sym_and_eq] = ACTIONS(5376), + [anon_sym_or_eq] = ACTIONS(5376), + [anon_sym_xor_eq] = ACTIONS(5376), + [anon_sym_LT_EQ_GT] = ACTIONS(5376), + [anon_sym_or] = ACTIONS(5383), + [anon_sym_and] = ACTIONS(5383), + [anon_sym_bitor] = ACTIONS(5376), + [anon_sym_xor] = ACTIONS(5383), + [anon_sym_bitand] = ACTIONS(5376), + [anon_sym_not_eq] = ACTIONS(5376), + [anon_sym_DASH_DASH] = ACTIONS(5376), + [anon_sym_PLUS_PLUS] = ACTIONS(5376), + [anon_sym_DOT] = ACTIONS(5383), + [anon_sym_DOT_STAR] = ACTIONS(5376), + [anon_sym_DASH_GT] = ACTIONS(5376), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5381), + [anon_sym_decltype] = ACTIONS(5381), + [sym_semgrep_metavar] = ACTIONS(5381), }, [2043] = { - [sym_identifier] = ACTIONS(3445), - [aux_sym_preproc_def_token1] = ACTIONS(3445), - [aux_sym_preproc_if_token1] = ACTIONS(3445), - [aux_sym_preproc_if_token2] = ACTIONS(3445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3445), - [aux_sym_preproc_else_token1] = ACTIONS(3445), - [aux_sym_preproc_elif_token1] = ACTIONS(3445), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3445), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3445), - [sym_preproc_directive] = ACTIONS(3445), - [anon_sym_LPAREN2] = ACTIONS(3447), - [anon_sym_TILDE] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3445), - [anon_sym___extension__] = ACTIONS(3445), - [anon_sym_typedef] = ACTIONS(3445), - [anon_sym_extern] = ACTIONS(3445), - [anon_sym___attribute__] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3447), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3447), - [anon_sym___declspec] = ACTIONS(3445), - [anon_sym___based] = ACTIONS(3445), - [anon_sym_signed] = ACTIONS(3445), - [anon_sym_unsigned] = ACTIONS(3445), - [anon_sym_long] = ACTIONS(3445), - [anon_sym_short] = ACTIONS(3445), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_static] = ACTIONS(3445), - [anon_sym_register] = ACTIONS(3445), - [anon_sym_inline] = ACTIONS(3445), - [anon_sym___inline] = ACTIONS(3445), - [anon_sym___inline__] = ACTIONS(3445), - [anon_sym___forceinline] = ACTIONS(3445), - [anon_sym_thread_local] = ACTIONS(3445), - [anon_sym___thread] = ACTIONS(3445), - [anon_sym_const] = ACTIONS(3445), - [anon_sym_constexpr] = ACTIONS(3445), - [anon_sym_volatile] = ACTIONS(3445), - [anon_sym_restrict] = ACTIONS(3445), - [anon_sym___restrict__] = ACTIONS(3445), - [anon_sym__Atomic] = ACTIONS(3445), - [anon_sym__Noreturn] = ACTIONS(3445), - [anon_sym_noreturn] = ACTIONS(3445), - [anon_sym_mutable] = ACTIONS(3445), - [anon_sym_constinit] = ACTIONS(3445), - [anon_sym_consteval] = ACTIONS(3445), - [sym_primitive_type] = ACTIONS(3445), - [anon_sym_enum] = ACTIONS(3445), - [anon_sym_class] = ACTIONS(3445), - [anon_sym_struct] = ACTIONS(3445), - [anon_sym_union] = ACTIONS(3445), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3445), - [anon_sym_decltype] = ACTIONS(3445), - [anon_sym_virtual] = ACTIONS(3445), - [anon_sym_alignas] = ACTIONS(3445), - [anon_sym_explicit] = ACTIONS(3445), - [anon_sym_typename] = ACTIONS(3445), - [anon_sym_template] = ACTIONS(3445), - [anon_sym_operator] = ACTIONS(3445), - [anon_sym_friend] = ACTIONS(3445), - [anon_sym_public] = ACTIONS(3445), - [anon_sym_private] = ACTIONS(3445), - [anon_sym_protected] = ACTIONS(3445), - [anon_sym_using] = ACTIONS(3445), - [anon_sym_static_assert] = ACTIONS(3445), + [sym_identifier] = ACTIONS(2355), + [aux_sym_preproc_def_token1] = ACTIONS(2355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2353), + [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(2353), + [anon_sym_TILDE] = ACTIONS(2353), + [anon_sym_STAR] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(2353), + [anon_sym_AMP] = ACTIONS(2355), + [anon_sym___extension__] = ACTIONS(2355), + [anon_sym_typedef] = ACTIONS(2355), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym___attribute__] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(2353), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), + [anon_sym___declspec] = ACTIONS(2355), + [anon_sym___based] = ACTIONS(2355), + [anon_sym_signed] = ACTIONS(2355), + [anon_sym_unsigned] = ACTIONS(2355), + [anon_sym_long] = ACTIONS(2355), + [anon_sym_short] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_static] = ACTIONS(2355), + [anon_sym_register] = ACTIONS(2355), + [anon_sym_inline] = ACTIONS(2355), + [anon_sym___inline] = ACTIONS(2355), + [anon_sym___inline__] = ACTIONS(2355), + [anon_sym___forceinline] = ACTIONS(2355), + [anon_sym_thread_local] = ACTIONS(2355), + [anon_sym___thread] = ACTIONS(2355), + [anon_sym_const] = ACTIONS(2355), + [anon_sym_constexpr] = ACTIONS(2355), + [anon_sym_volatile] = ACTIONS(2355), + [anon_sym_restrict] = ACTIONS(2355), + [anon_sym___restrict__] = ACTIONS(2355), + [anon_sym__Atomic] = ACTIONS(2355), + [anon_sym__Noreturn] = ACTIONS(2355), + [anon_sym_noreturn] = ACTIONS(2355), + [anon_sym_mutable] = ACTIONS(2355), + [anon_sym_constinit] = ACTIONS(2355), + [anon_sym_consteval] = 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), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2355), + [anon_sym_decltype] = ACTIONS(2355), + [anon_sym_virtual] = ACTIONS(2355), + [anon_sym_alignas] = ACTIONS(2355), + [anon_sym_explicit] = ACTIONS(2355), + [anon_sym_typename] = ACTIONS(2355), + [anon_sym_template] = ACTIONS(2355), + [anon_sym_operator] = ACTIONS(2355), + [anon_sym_friend] = ACTIONS(2355), + [anon_sym_public] = ACTIONS(2355), + [anon_sym_private] = ACTIONS(2355), + [anon_sym_protected] = ACTIONS(2355), + [anon_sym_using] = ACTIONS(2355), + [anon_sym_static_assert] = ACTIONS(2355), + [anon_sym_catch] = ACTIONS(2355), + [sym_semgrep_metavar] = ACTIONS(2353), }, [2044] = { - [sym_identifier] = ACTIONS(5942), - [aux_sym_preproc_def_token1] = ACTIONS(5942), - [aux_sym_preproc_if_token1] = ACTIONS(5942), - [aux_sym_preproc_if_token2] = ACTIONS(5942), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5942), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5942), - [aux_sym_preproc_else_token1] = ACTIONS(5942), - [aux_sym_preproc_elif_token1] = ACTIONS(5942), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5942), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5942), - [sym_preproc_directive] = ACTIONS(5942), - [anon_sym_LPAREN2] = ACTIONS(5944), - [anon_sym_TILDE] = ACTIONS(5944), - [anon_sym_STAR] = ACTIONS(5944), - [anon_sym_AMP_AMP] = ACTIONS(5944), - [anon_sym_AMP] = ACTIONS(5942), - [anon_sym___extension__] = ACTIONS(5942), - [anon_sym_typedef] = ACTIONS(5942), - [anon_sym_extern] = ACTIONS(5942), - [anon_sym___attribute__] = ACTIONS(5942), - [anon_sym_COLON_COLON] = ACTIONS(5944), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5944), - [anon_sym___declspec] = ACTIONS(5942), - [anon_sym___based] = ACTIONS(5942), - [anon_sym_signed] = ACTIONS(5942), - [anon_sym_unsigned] = ACTIONS(5942), - [anon_sym_long] = ACTIONS(5942), - [anon_sym_short] = ACTIONS(5942), - [anon_sym_LBRACK] = ACTIONS(5942), - [anon_sym_static] = ACTIONS(5942), - [anon_sym_register] = ACTIONS(5942), - [anon_sym_inline] = ACTIONS(5942), - [anon_sym___inline] = ACTIONS(5942), - [anon_sym___inline__] = ACTIONS(5942), - [anon_sym___forceinline] = ACTIONS(5942), - [anon_sym_thread_local] = ACTIONS(5942), - [anon_sym___thread] = ACTIONS(5942), - [anon_sym_const] = ACTIONS(5942), - [anon_sym_constexpr] = ACTIONS(5942), - [anon_sym_volatile] = ACTIONS(5942), - [anon_sym_restrict] = ACTIONS(5942), - [anon_sym___restrict__] = ACTIONS(5942), - [anon_sym__Atomic] = ACTIONS(5942), - [anon_sym__Noreturn] = ACTIONS(5942), - [anon_sym_noreturn] = ACTIONS(5942), - [anon_sym_mutable] = ACTIONS(5942), - [anon_sym_constinit] = ACTIONS(5942), - [anon_sym_consteval] = ACTIONS(5942), - [sym_primitive_type] = ACTIONS(5942), - [anon_sym_enum] = ACTIONS(5942), - [anon_sym_class] = ACTIONS(5942), - [anon_sym_struct] = ACTIONS(5942), - [anon_sym_union] = ACTIONS(5942), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5942), - [anon_sym_decltype] = ACTIONS(5942), - [anon_sym_virtual] = ACTIONS(5942), - [anon_sym_alignas] = ACTIONS(5942), - [anon_sym_explicit] = ACTIONS(5942), - [anon_sym_typename] = ACTIONS(5942), - [anon_sym_template] = ACTIONS(5942), - [anon_sym_operator] = ACTIONS(5942), - [anon_sym_friend] = ACTIONS(5942), - [anon_sym_public] = ACTIONS(5942), - [anon_sym_private] = ACTIONS(5942), - [anon_sym_protected] = ACTIONS(5942), - [anon_sym_using] = ACTIONS(5942), - [anon_sym_static_assert] = ACTIONS(5942), + [sym_identifier] = ACTIONS(2359), + [aux_sym_preproc_def_token1] = ACTIONS(2359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2357), + [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(2357), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_STAR] = ACTIONS(2357), + [anon_sym_AMP_AMP] = ACTIONS(2357), + [anon_sym_AMP] = ACTIONS(2359), + [anon_sym___extension__] = ACTIONS(2359), + [anon_sym_typedef] = ACTIONS(2359), + [anon_sym_extern] = ACTIONS(2359), + [anon_sym___attribute__] = ACTIONS(2359), + [anon_sym_COLON_COLON] = ACTIONS(2357), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2357), + [anon_sym___declspec] = ACTIONS(2359), + [anon_sym___based] = ACTIONS(2359), + [anon_sym_signed] = ACTIONS(2359), + [anon_sym_unsigned] = ACTIONS(2359), + [anon_sym_long] = ACTIONS(2359), + [anon_sym_short] = ACTIONS(2359), + [anon_sym_LBRACK] = ACTIONS(2359), + [anon_sym_static] = ACTIONS(2359), + [anon_sym_register] = ACTIONS(2359), + [anon_sym_inline] = ACTIONS(2359), + [anon_sym___inline] = ACTIONS(2359), + [anon_sym___inline__] = ACTIONS(2359), + [anon_sym___forceinline] = ACTIONS(2359), + [anon_sym_thread_local] = ACTIONS(2359), + [anon_sym___thread] = ACTIONS(2359), + [anon_sym_const] = ACTIONS(2359), + [anon_sym_constexpr] = ACTIONS(2359), + [anon_sym_volatile] = ACTIONS(2359), + [anon_sym_restrict] = ACTIONS(2359), + [anon_sym___restrict__] = ACTIONS(2359), + [anon_sym__Atomic] = ACTIONS(2359), + [anon_sym__Noreturn] = ACTIONS(2359), + [anon_sym_noreturn] = ACTIONS(2359), + [anon_sym_mutable] = ACTIONS(2359), + [anon_sym_constinit] = ACTIONS(2359), + [anon_sym_consteval] = 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), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2359), + [anon_sym_decltype] = ACTIONS(2359), + [anon_sym_virtual] = ACTIONS(2359), + [anon_sym_alignas] = ACTIONS(2359), + [anon_sym_explicit] = ACTIONS(2359), + [anon_sym_typename] = ACTIONS(2359), + [anon_sym_template] = ACTIONS(2359), + [anon_sym_operator] = ACTIONS(2359), + [anon_sym_friend] = ACTIONS(2359), + [anon_sym_public] = ACTIONS(2359), + [anon_sym_private] = ACTIONS(2359), + [anon_sym_protected] = ACTIONS(2359), + [anon_sym_using] = ACTIONS(2359), + [anon_sym_static_assert] = ACTIONS(2359), + [anon_sym_catch] = ACTIONS(2359), + [sym_semgrep_metavar] = ACTIONS(2357), }, [2045] = { - [sym_identifier] = ACTIONS(3556), - [aux_sym_preproc_def_token1] = ACTIONS(3556), - [aux_sym_preproc_if_token1] = ACTIONS(3556), - [aux_sym_preproc_if_token2] = ACTIONS(3556), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3556), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3556), - [aux_sym_preproc_else_token1] = ACTIONS(3556), - [aux_sym_preproc_elif_token1] = ACTIONS(3556), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3556), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3556), - [sym_preproc_directive] = ACTIONS(3556), - [anon_sym_LPAREN2] = ACTIONS(3558), - [anon_sym_TILDE] = ACTIONS(3558), - [anon_sym_STAR] = ACTIONS(3558), - [anon_sym_AMP_AMP] = ACTIONS(3558), - [anon_sym_AMP] = ACTIONS(3556), - [anon_sym___extension__] = ACTIONS(3556), - [anon_sym_typedef] = ACTIONS(3556), - [anon_sym_extern] = ACTIONS(3556), - [anon_sym___attribute__] = ACTIONS(3556), - [anon_sym_COLON_COLON] = ACTIONS(3558), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3558), - [anon_sym___declspec] = ACTIONS(3556), - [anon_sym___based] = ACTIONS(3556), - [anon_sym_signed] = ACTIONS(3556), - [anon_sym_unsigned] = ACTIONS(3556), - [anon_sym_long] = ACTIONS(3556), - [anon_sym_short] = ACTIONS(3556), - [anon_sym_LBRACK] = ACTIONS(3556), - [anon_sym_static] = ACTIONS(3556), - [anon_sym_register] = ACTIONS(3556), - [anon_sym_inline] = ACTIONS(3556), - [anon_sym___inline] = ACTIONS(3556), - [anon_sym___inline__] = ACTIONS(3556), - [anon_sym___forceinline] = ACTIONS(3556), - [anon_sym_thread_local] = ACTIONS(3556), - [anon_sym___thread] = ACTIONS(3556), - [anon_sym_const] = ACTIONS(3556), - [anon_sym_constexpr] = ACTIONS(3556), - [anon_sym_volatile] = ACTIONS(3556), - [anon_sym_restrict] = ACTIONS(3556), - [anon_sym___restrict__] = ACTIONS(3556), - [anon_sym__Atomic] = ACTIONS(3556), - [anon_sym__Noreturn] = ACTIONS(3556), - [anon_sym_noreturn] = ACTIONS(3556), - [anon_sym_mutable] = ACTIONS(3556), - [anon_sym_constinit] = ACTIONS(3556), - [anon_sym_consteval] = ACTIONS(3556), - [sym_primitive_type] = ACTIONS(3556), - [anon_sym_enum] = ACTIONS(3556), - [anon_sym_class] = ACTIONS(3556), - [anon_sym_struct] = ACTIONS(3556), - [anon_sym_union] = ACTIONS(3556), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3556), - [anon_sym_decltype] = ACTIONS(3556), - [anon_sym_virtual] = ACTIONS(3556), - [anon_sym_alignas] = ACTIONS(3556), - [anon_sym_explicit] = ACTIONS(3556), - [anon_sym_typename] = ACTIONS(3556), - [anon_sym_template] = ACTIONS(3556), - [anon_sym_operator] = ACTIONS(3556), - [anon_sym_friend] = ACTIONS(3556), - [anon_sym_public] = ACTIONS(3556), - [anon_sym_private] = ACTIONS(3556), - [anon_sym_protected] = ACTIONS(3556), - [anon_sym_using] = ACTIONS(3556), - [anon_sym_static_assert] = ACTIONS(3556), + [sym_identifier] = ACTIONS(3700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3702), + [anon_sym_LPAREN2] = ACTIONS(3702), + [anon_sym_BANG] = ACTIONS(3702), + [anon_sym_TILDE] = ACTIONS(3702), + [anon_sym_DASH] = ACTIONS(3700), + [anon_sym_PLUS] = ACTIONS(3700), + [anon_sym_STAR] = ACTIONS(3702), + [anon_sym_AMP] = ACTIONS(3702), + [anon_sym___extension__] = ACTIONS(3700), + [anon_sym_COLON_COLON] = ACTIONS(3702), + [anon_sym_LBRACK] = ACTIONS(3702), + [anon_sym_RBRACK] = ACTIONS(3702), + [anon_sym_const] = ACTIONS(3700), + [anon_sym_constexpr] = ACTIONS(3700), + [anon_sym_volatile] = ACTIONS(3700), + [anon_sym_restrict] = ACTIONS(3700), + [anon_sym___restrict__] = ACTIONS(3700), + [anon_sym__Atomic] = ACTIONS(3700), + [anon_sym__Noreturn] = ACTIONS(3700), + [anon_sym_noreturn] = ACTIONS(3700), + [anon_sym_mutable] = ACTIONS(3700), + [anon_sym_constinit] = ACTIONS(3700), + [anon_sym_consteval] = ACTIONS(3700), + [sym_primitive_type] = ACTIONS(3700), + [anon_sym_not] = ACTIONS(3700), + [anon_sym_compl] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3702), + [anon_sym_PLUS_PLUS] = ACTIONS(3702), + [anon_sym_sizeof] = ACTIONS(3700), + [anon_sym___alignof__] = ACTIONS(3700), + [anon_sym___alignof] = ACTIONS(3700), + [anon_sym__alignof] = ACTIONS(3700), + [anon_sym_alignof] = ACTIONS(3700), + [anon_sym__Alignof] = ACTIONS(3700), + [anon_sym_offsetof] = ACTIONS(3700), + [anon_sym__Generic] = ACTIONS(3700), + [anon_sym_asm] = ACTIONS(3700), + [anon_sym___asm__] = ACTIONS(3700), + [sym_number_literal] = ACTIONS(3702), + [anon_sym_L_SQUOTE] = ACTIONS(3702), + [anon_sym_u_SQUOTE] = ACTIONS(3702), + [anon_sym_U_SQUOTE] = ACTIONS(3702), + [anon_sym_u8_SQUOTE] = ACTIONS(3702), + [anon_sym_SQUOTE] = ACTIONS(3702), + [anon_sym_L_DQUOTE] = ACTIONS(3702), + [anon_sym_u_DQUOTE] = ACTIONS(3702), + [anon_sym_U_DQUOTE] = ACTIONS(3702), + [anon_sym_u8_DQUOTE] = ACTIONS(3702), + [anon_sym_DQUOTE] = ACTIONS(3702), + [sym_true] = ACTIONS(3700), + [sym_false] = ACTIONS(3700), + [anon_sym_NULL] = ACTIONS(3700), + [anon_sym_nullptr] = ACTIONS(3700), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3700), + [anon_sym_template] = ACTIONS(3700), + [anon_sym_delete] = ACTIONS(3700), + [anon_sym_R_DQUOTE] = ACTIONS(3702), + [anon_sym_LR_DQUOTE] = ACTIONS(3702), + [anon_sym_uR_DQUOTE] = ACTIONS(3702), + [anon_sym_UR_DQUOTE] = ACTIONS(3702), + [anon_sym_u8R_DQUOTE] = ACTIONS(3702), + [anon_sym_co_await] = ACTIONS(3700), + [anon_sym_new] = ACTIONS(3700), + [anon_sym_requires] = ACTIONS(3700), + [sym_this] = ACTIONS(3700), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(3702), + [sym_semgrep_named_ellipsis] = ACTIONS(3702), }, [2046] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5520), - [anon_sym_COMMA] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(5520), - [anon_sym_LPAREN2] = ACTIONS(5522), - [anon_sym_DASH] = ACTIONS(5527), - [anon_sym_PLUS] = ACTIONS(5527), - [anon_sym_STAR] = ACTIONS(5529), - [anon_sym_SLASH] = ACTIONS(5527), - [anon_sym_PERCENT] = ACTIONS(5527), - [anon_sym_PIPE_PIPE] = ACTIONS(5520), - [anon_sym_AMP_AMP] = ACTIONS(5522), - [anon_sym_PIPE] = ACTIONS(5527), - [anon_sym_CARET] = ACTIONS(5527), - [anon_sym_AMP] = ACTIONS(5529), - [anon_sym_EQ_EQ] = ACTIONS(5520), - [anon_sym_BANG_EQ] = ACTIONS(5520), - [anon_sym_GT] = ACTIONS(5527), - [anon_sym_GT_EQ] = ACTIONS(5520), - [anon_sym_LT_EQ] = ACTIONS(5527), - [anon_sym_LT] = ACTIONS(5527), - [anon_sym_LT_LT] = ACTIONS(5527), - [anon_sym_GT_GT] = ACTIONS(5527), - [anon_sym___extension__] = ACTIONS(5525), - [anon_sym_COLON_COLON] = ACTIONS(5525), - [anon_sym_LBRACE] = ACTIONS(5525), - [anon_sym_LBRACK] = ACTIONS(5522), - [anon_sym_EQ] = ACTIONS(5527), - [anon_sym_const] = ACTIONS(5518), - [anon_sym_constexpr] = ACTIONS(5525), - [anon_sym_volatile] = ACTIONS(5525), - [anon_sym_restrict] = ACTIONS(5525), - [anon_sym___restrict__] = ACTIONS(5525), - [anon_sym__Atomic] = ACTIONS(5525), - [anon_sym__Noreturn] = ACTIONS(5525), - [anon_sym_noreturn] = ACTIONS(5525), - [anon_sym_mutable] = ACTIONS(5525), - [anon_sym_constinit] = ACTIONS(5525), - [anon_sym_consteval] = ACTIONS(5525), - [anon_sym_QMARK] = ACTIONS(5520), - [anon_sym_STAR_EQ] = ACTIONS(5520), - [anon_sym_SLASH_EQ] = ACTIONS(5520), - [anon_sym_PERCENT_EQ] = ACTIONS(5520), - [anon_sym_PLUS_EQ] = ACTIONS(5520), - [anon_sym_DASH_EQ] = ACTIONS(5520), - [anon_sym_LT_LT_EQ] = ACTIONS(5520), - [anon_sym_GT_GT_EQ] = ACTIONS(5520), - [anon_sym_AMP_EQ] = ACTIONS(5520), - [anon_sym_CARET_EQ] = ACTIONS(5520), - [anon_sym_PIPE_EQ] = ACTIONS(5520), - [anon_sym_and_eq] = ACTIONS(5520), - [anon_sym_or_eq] = ACTIONS(5520), - [anon_sym_xor_eq] = ACTIONS(5520), - [anon_sym_LT_EQ_GT] = ACTIONS(5520), - [anon_sym_or] = ACTIONS(5527), - [anon_sym_and] = ACTIONS(5527), - [anon_sym_bitor] = ACTIONS(5520), - [anon_sym_xor] = ACTIONS(5527), - [anon_sym_bitand] = ACTIONS(5520), - [anon_sym_not_eq] = ACTIONS(5520), - [anon_sym_DASH_DASH] = ACTIONS(5520), - [anon_sym_PLUS_PLUS] = ACTIONS(5520), - [anon_sym_DOT] = ACTIONS(5527), - [anon_sym_DOT_STAR] = ACTIONS(5520), - [anon_sym_DASH_GT] = ACTIONS(5520), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5525), - [anon_sym_decltype] = ACTIONS(5525), - [sym_semgrep_metavar] = ACTIONS(5525), + [ts_builtin_sym_end] = ACTIONS(5381), + [sym_identifier] = ACTIONS(5374), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5381), + [anon_sym_COMMA] = ACTIONS(5381), + [anon_sym_RPAREN] = ACTIONS(5381), + [aux_sym_preproc_if_token2] = ACTIONS(5381), + [aux_sym_preproc_else_token1] = ACTIONS(5381), + [aux_sym_preproc_elif_token1] = ACTIONS(5374), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5381), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5381), + [anon_sym_LPAREN2] = ACTIONS(5381), + [anon_sym_DASH] = ACTIONS(5374), + [anon_sym_PLUS] = ACTIONS(5374), + [anon_sym_STAR] = ACTIONS(5374), + [anon_sym_SLASH] = ACTIONS(5374), + [anon_sym_PERCENT] = ACTIONS(5374), + [anon_sym_PIPE_PIPE] = ACTIONS(5381), + [anon_sym_AMP_AMP] = ACTIONS(5381), + [anon_sym_PIPE] = ACTIONS(5374), + [anon_sym_CARET] = ACTIONS(5374), + [anon_sym_AMP] = ACTIONS(5374), + [anon_sym_EQ_EQ] = ACTIONS(5381), + [anon_sym_BANG_EQ] = ACTIONS(5381), + [anon_sym_GT] = ACTIONS(5374), + [anon_sym_GT_EQ] = ACTIONS(5381), + [anon_sym_LT_EQ] = ACTIONS(5374), + [anon_sym_LT] = ACTIONS(5374), + [anon_sym_LT_LT] = ACTIONS(5374), + [anon_sym_GT_GT] = ACTIONS(5374), + [anon_sym_SEMI] = ACTIONS(5381), + [anon_sym___attribute__] = ACTIONS(5374), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(5381), + [anon_sym_RBRACE] = ACTIONS(5381), + [anon_sym_LBRACK] = ACTIONS(5381), + [anon_sym_RBRACK] = ACTIONS(5381), + [anon_sym_EQ] = ACTIONS(5374), + [anon_sym_COLON] = ACTIONS(5374), + [anon_sym_QMARK] = ACTIONS(5381), + [anon_sym_STAR_EQ] = ACTIONS(5381), + [anon_sym_SLASH_EQ] = ACTIONS(5381), + [anon_sym_PERCENT_EQ] = ACTIONS(5381), + [anon_sym_PLUS_EQ] = ACTIONS(5381), + [anon_sym_DASH_EQ] = ACTIONS(5381), + [anon_sym_LT_LT_EQ] = ACTIONS(5381), + [anon_sym_GT_GT_EQ] = ACTIONS(5381), + [anon_sym_AMP_EQ] = ACTIONS(5381), + [anon_sym_CARET_EQ] = ACTIONS(5381), + [anon_sym_PIPE_EQ] = ACTIONS(5381), + [anon_sym_and_eq] = ACTIONS(5374), + [anon_sym_or_eq] = ACTIONS(5374), + [anon_sym_xor_eq] = ACTIONS(5374), + [anon_sym_LT_EQ_GT] = ACTIONS(5381), + [anon_sym_or] = ACTIONS(5374), + [anon_sym_and] = ACTIONS(5374), + [anon_sym_bitor] = ACTIONS(5374), + [anon_sym_xor] = ACTIONS(5374), + [anon_sym_bitand] = ACTIONS(5374), + [anon_sym_not_eq] = ACTIONS(5374), + [anon_sym_DASH_DASH] = ACTIONS(5381), + [anon_sym_PLUS_PLUS] = ACTIONS(5381), + [anon_sym_DOT] = ACTIONS(5374), + [anon_sym_DOT_STAR] = ACTIONS(5381), + [anon_sym_DASH_GT] = ACTIONS(5381), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5374), + [anon_sym_decltype] = ACTIONS(5374), + [anon_sym_final] = ACTIONS(5374), + [anon_sym_override] = ACTIONS(5374), }, [2047] = { - [sym_identifier] = ACTIONS(3560), - [aux_sym_preproc_def_token1] = ACTIONS(3560), - [aux_sym_preproc_if_token1] = ACTIONS(3560), - [aux_sym_preproc_if_token2] = ACTIONS(3560), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3560), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3560), - [aux_sym_preproc_else_token1] = ACTIONS(3560), - [aux_sym_preproc_elif_token1] = ACTIONS(3560), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3560), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3560), - [sym_preproc_directive] = ACTIONS(3560), - [anon_sym_LPAREN2] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_STAR] = ACTIONS(3562), - [anon_sym_AMP_AMP] = ACTIONS(3562), - [anon_sym_AMP] = ACTIONS(3560), - [anon_sym___extension__] = ACTIONS(3560), - [anon_sym_typedef] = ACTIONS(3560), - [anon_sym_extern] = ACTIONS(3560), - [anon_sym___attribute__] = ACTIONS(3560), - [anon_sym_COLON_COLON] = ACTIONS(3562), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3562), - [anon_sym___declspec] = ACTIONS(3560), - [anon_sym___based] = ACTIONS(3560), - [anon_sym_signed] = ACTIONS(3560), - [anon_sym_unsigned] = ACTIONS(3560), - [anon_sym_long] = ACTIONS(3560), - [anon_sym_short] = ACTIONS(3560), - [anon_sym_LBRACK] = ACTIONS(3560), - [anon_sym_static] = ACTIONS(3560), - [anon_sym_register] = ACTIONS(3560), - [anon_sym_inline] = ACTIONS(3560), - [anon_sym___inline] = ACTIONS(3560), - [anon_sym___inline__] = ACTIONS(3560), - [anon_sym___forceinline] = ACTIONS(3560), - [anon_sym_thread_local] = ACTIONS(3560), - [anon_sym___thread] = ACTIONS(3560), - [anon_sym_const] = ACTIONS(3560), - [anon_sym_constexpr] = ACTIONS(3560), - [anon_sym_volatile] = ACTIONS(3560), - [anon_sym_restrict] = ACTIONS(3560), - [anon_sym___restrict__] = ACTIONS(3560), - [anon_sym__Atomic] = ACTIONS(3560), - [anon_sym__Noreturn] = ACTIONS(3560), - [anon_sym_noreturn] = ACTIONS(3560), - [anon_sym_mutable] = ACTIONS(3560), - [anon_sym_constinit] = ACTIONS(3560), - [anon_sym_consteval] = ACTIONS(3560), - [sym_primitive_type] = ACTIONS(3560), - [anon_sym_enum] = ACTIONS(3560), - [anon_sym_class] = ACTIONS(3560), - [anon_sym_struct] = ACTIONS(3560), - [anon_sym_union] = ACTIONS(3560), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3560), - [anon_sym_decltype] = ACTIONS(3560), - [anon_sym_virtual] = ACTIONS(3560), - [anon_sym_alignas] = ACTIONS(3560), - [anon_sym_explicit] = ACTIONS(3560), - [anon_sym_typename] = ACTIONS(3560), - [anon_sym_template] = ACTIONS(3560), - [anon_sym_operator] = ACTIONS(3560), - [anon_sym_friend] = ACTIONS(3560), - [anon_sym_public] = ACTIONS(3560), - [anon_sym_private] = ACTIONS(3560), - [anon_sym_protected] = ACTIONS(3560), - [anon_sym_using] = ACTIONS(3560), - [anon_sym_static_assert] = ACTIONS(3560), + [ts_builtin_sym_end] = ACTIONS(5934), + [sym_identifier] = ACTIONS(5936), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5934), + [anon_sym_COMMA] = ACTIONS(5934), + [anon_sym_RPAREN] = ACTIONS(5934), + [aux_sym_preproc_if_token2] = ACTIONS(5934), + [aux_sym_preproc_else_token1] = ACTIONS(5934), + [aux_sym_preproc_elif_token1] = ACTIONS(5936), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5934), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5934), + [anon_sym_LPAREN2] = ACTIONS(5934), + [anon_sym_DASH] = ACTIONS(5936), + [anon_sym_PLUS] = ACTIONS(5936), + [anon_sym_STAR] = ACTIONS(5936), + [anon_sym_SLASH] = ACTIONS(5936), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_PIPE_PIPE] = ACTIONS(5934), + [anon_sym_AMP_AMP] = ACTIONS(5934), + [anon_sym_PIPE] = ACTIONS(5936), + [anon_sym_CARET] = ACTIONS(5936), + [anon_sym_AMP] = ACTIONS(5936), + [anon_sym_EQ_EQ] = ACTIONS(5934), + [anon_sym_BANG_EQ] = ACTIONS(5934), + [anon_sym_GT] = ACTIONS(5936), + [anon_sym_GT_EQ] = ACTIONS(5934), + [anon_sym_LT_EQ] = ACTIONS(5936), + [anon_sym_LT] = ACTIONS(5936), + [anon_sym_LT_LT] = ACTIONS(5936), + [anon_sym_GT_GT] = ACTIONS(5936), + [anon_sym_SEMI] = ACTIONS(5934), + [anon_sym___attribute__] = ACTIONS(5936), + [anon_sym_COLON_COLON] = ACTIONS(5934), + [anon_sym_LBRACE] = ACTIONS(5934), + [anon_sym_RBRACE] = ACTIONS(5934), + [anon_sym_LBRACK] = ACTIONS(5934), + [anon_sym_RBRACK] = ACTIONS(5934), + [anon_sym_EQ] = ACTIONS(5936), + [anon_sym_COLON] = ACTIONS(5936), + [anon_sym_QMARK] = ACTIONS(5934), + [anon_sym_STAR_EQ] = ACTIONS(5934), + [anon_sym_SLASH_EQ] = ACTIONS(5934), + [anon_sym_PERCENT_EQ] = ACTIONS(5934), + [anon_sym_PLUS_EQ] = ACTIONS(5934), + [anon_sym_DASH_EQ] = ACTIONS(5934), + [anon_sym_LT_LT_EQ] = ACTIONS(5934), + [anon_sym_GT_GT_EQ] = ACTIONS(5934), + [anon_sym_AMP_EQ] = ACTIONS(5934), + [anon_sym_CARET_EQ] = ACTIONS(5934), + [anon_sym_PIPE_EQ] = ACTIONS(5934), + [anon_sym_and_eq] = ACTIONS(5936), + [anon_sym_or_eq] = ACTIONS(5936), + [anon_sym_xor_eq] = ACTIONS(5936), + [anon_sym_LT_EQ_GT] = ACTIONS(5934), + [anon_sym_or] = ACTIONS(5936), + [anon_sym_and] = ACTIONS(5936), + [anon_sym_bitor] = ACTIONS(5936), + [anon_sym_xor] = ACTIONS(5936), + [anon_sym_bitand] = ACTIONS(5936), + [anon_sym_not_eq] = ACTIONS(5936), + [anon_sym_DASH_DASH] = ACTIONS(5934), + [anon_sym_PLUS_PLUS] = ACTIONS(5934), + [anon_sym_DOT] = ACTIONS(5936), + [anon_sym_DOT_STAR] = ACTIONS(5934), + [anon_sym_DASH_GT] = ACTIONS(5934), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5936), + [anon_sym_decltype] = ACTIONS(5936), + [anon_sym_final] = ACTIONS(5936), + [anon_sym_override] = ACTIONS(5936), }, [2048] = { - [sym_identifier] = ACTIONS(3449), - [aux_sym_preproc_def_token1] = ACTIONS(3449), - [aux_sym_preproc_if_token1] = ACTIONS(3449), - [aux_sym_preproc_if_token2] = ACTIONS(3449), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3449), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3449), - [aux_sym_preproc_else_token1] = ACTIONS(3449), - [aux_sym_preproc_elif_token1] = ACTIONS(3449), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3449), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3449), - [sym_preproc_directive] = ACTIONS(3449), - [anon_sym_LPAREN2] = ACTIONS(3451), - [anon_sym_TILDE] = ACTIONS(3451), - [anon_sym_STAR] = ACTIONS(3451), - [anon_sym_AMP_AMP] = ACTIONS(3451), - [anon_sym_AMP] = ACTIONS(3449), - [anon_sym___extension__] = ACTIONS(3449), - [anon_sym_typedef] = ACTIONS(3449), - [anon_sym_extern] = ACTIONS(3449), - [anon_sym___attribute__] = ACTIONS(3449), - [anon_sym_COLON_COLON] = ACTIONS(3451), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3451), - [anon_sym___declspec] = ACTIONS(3449), - [anon_sym___based] = ACTIONS(3449), - [anon_sym_signed] = ACTIONS(3449), - [anon_sym_unsigned] = ACTIONS(3449), - [anon_sym_long] = ACTIONS(3449), - [anon_sym_short] = ACTIONS(3449), - [anon_sym_LBRACK] = ACTIONS(3449), - [anon_sym_static] = ACTIONS(3449), - [anon_sym_register] = ACTIONS(3449), - [anon_sym_inline] = ACTIONS(3449), - [anon_sym___inline] = ACTIONS(3449), - [anon_sym___inline__] = ACTIONS(3449), - [anon_sym___forceinline] = ACTIONS(3449), - [anon_sym_thread_local] = ACTIONS(3449), - [anon_sym___thread] = ACTIONS(3449), - [anon_sym_const] = ACTIONS(3449), - [anon_sym_constexpr] = ACTIONS(3449), - [anon_sym_volatile] = ACTIONS(3449), - [anon_sym_restrict] = ACTIONS(3449), - [anon_sym___restrict__] = ACTIONS(3449), - [anon_sym__Atomic] = ACTIONS(3449), - [anon_sym__Noreturn] = ACTIONS(3449), - [anon_sym_noreturn] = ACTIONS(3449), - [anon_sym_mutable] = ACTIONS(3449), - [anon_sym_constinit] = ACTIONS(3449), - [anon_sym_consteval] = ACTIONS(3449), - [sym_primitive_type] = ACTIONS(3449), - [anon_sym_enum] = ACTIONS(3449), - [anon_sym_class] = ACTIONS(3449), - [anon_sym_struct] = ACTIONS(3449), - [anon_sym_union] = ACTIONS(3449), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3449), - [anon_sym_decltype] = ACTIONS(3449), - [anon_sym_virtual] = ACTIONS(3449), - [anon_sym_alignas] = ACTIONS(3449), - [anon_sym_explicit] = ACTIONS(3449), - [anon_sym_typename] = ACTIONS(3449), - [anon_sym_template] = ACTIONS(3449), - [anon_sym_operator] = ACTIONS(3449), - [anon_sym_friend] = ACTIONS(3449), - [anon_sym_public] = ACTIONS(3449), - [anon_sym_private] = ACTIONS(3449), - [anon_sym_protected] = ACTIONS(3449), - [anon_sym_using] = ACTIONS(3449), - [anon_sym_static_assert] = ACTIONS(3449), + [ts_builtin_sym_end] = ACTIONS(5438), + [sym_identifier] = ACTIONS(5433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5438), + [anon_sym_COMMA] = ACTIONS(5438), + [anon_sym_RPAREN] = ACTIONS(5438), + [aux_sym_preproc_if_token2] = ACTIONS(5438), + [aux_sym_preproc_else_token1] = ACTIONS(5438), + [aux_sym_preproc_elif_token1] = ACTIONS(5433), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5438), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5438), + [anon_sym_LPAREN2] = ACTIONS(5438), + [anon_sym_DASH] = ACTIONS(5433), + [anon_sym_PLUS] = ACTIONS(5433), + [anon_sym_STAR] = ACTIONS(5433), + [anon_sym_SLASH] = ACTIONS(5433), + [anon_sym_PERCENT] = ACTIONS(5433), + [anon_sym_PIPE_PIPE] = ACTIONS(5438), + [anon_sym_AMP_AMP] = ACTIONS(5438), + [anon_sym_PIPE] = ACTIONS(5433), + [anon_sym_CARET] = ACTIONS(5433), + [anon_sym_AMP] = ACTIONS(5433), + [anon_sym_EQ_EQ] = ACTIONS(5438), + [anon_sym_BANG_EQ] = ACTIONS(5438), + [anon_sym_GT] = ACTIONS(5433), + [anon_sym_GT_EQ] = ACTIONS(5438), + [anon_sym_LT_EQ] = ACTIONS(5433), + [anon_sym_LT] = ACTIONS(5433), + [anon_sym_LT_LT] = ACTIONS(5433), + [anon_sym_GT_GT] = ACTIONS(5433), + [anon_sym_SEMI] = ACTIONS(5438), + [anon_sym___attribute__] = ACTIONS(5433), + [anon_sym_COLON_COLON] = ACTIONS(5438), + [anon_sym_LBRACE] = ACTIONS(5438), + [anon_sym_RBRACE] = ACTIONS(5438), + [anon_sym_LBRACK] = ACTIONS(5438), + [anon_sym_RBRACK] = ACTIONS(5438), + [anon_sym_EQ] = ACTIONS(5433), + [anon_sym_COLON] = ACTIONS(5433), + [anon_sym_QMARK] = ACTIONS(5438), + [anon_sym_STAR_EQ] = ACTIONS(5438), + [anon_sym_SLASH_EQ] = ACTIONS(5438), + [anon_sym_PERCENT_EQ] = ACTIONS(5438), + [anon_sym_PLUS_EQ] = ACTIONS(5438), + [anon_sym_DASH_EQ] = ACTIONS(5438), + [anon_sym_LT_LT_EQ] = ACTIONS(5438), + [anon_sym_GT_GT_EQ] = ACTIONS(5438), + [anon_sym_AMP_EQ] = ACTIONS(5438), + [anon_sym_CARET_EQ] = ACTIONS(5438), + [anon_sym_PIPE_EQ] = ACTIONS(5438), + [anon_sym_and_eq] = ACTIONS(5433), + [anon_sym_or_eq] = ACTIONS(5433), + [anon_sym_xor_eq] = ACTIONS(5433), + [anon_sym_LT_EQ_GT] = ACTIONS(5438), + [anon_sym_or] = ACTIONS(5433), + [anon_sym_and] = ACTIONS(5433), + [anon_sym_bitor] = ACTIONS(5433), + [anon_sym_xor] = ACTIONS(5433), + [anon_sym_bitand] = ACTIONS(5433), + [anon_sym_not_eq] = ACTIONS(5433), + [anon_sym_DASH_DASH] = ACTIONS(5438), + [anon_sym_PLUS_PLUS] = ACTIONS(5438), + [anon_sym_DOT] = ACTIONS(5433), + [anon_sym_DOT_STAR] = ACTIONS(5438), + [anon_sym_DASH_GT] = ACTIONS(5438), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5433), + [anon_sym_decltype] = ACTIONS(5433), + [anon_sym_final] = ACTIONS(5433), + [anon_sym_override] = ACTIONS(5433), }, [2049] = { - [sym_identifier] = ACTIONS(3453), - [aux_sym_preproc_def_token1] = ACTIONS(3453), - [aux_sym_preproc_if_token1] = ACTIONS(3453), - [aux_sym_preproc_if_token2] = ACTIONS(3453), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3453), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3453), - [aux_sym_preproc_else_token1] = ACTIONS(3453), - [aux_sym_preproc_elif_token1] = ACTIONS(3453), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3453), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3453), - [sym_preproc_directive] = ACTIONS(3453), - [anon_sym_LPAREN2] = ACTIONS(3455), - [anon_sym_TILDE] = ACTIONS(3455), - [anon_sym_STAR] = ACTIONS(3455), - [anon_sym_AMP_AMP] = ACTIONS(3455), - [anon_sym_AMP] = ACTIONS(3453), - [anon_sym___extension__] = ACTIONS(3453), - [anon_sym_typedef] = ACTIONS(3453), - [anon_sym_extern] = ACTIONS(3453), - [anon_sym___attribute__] = ACTIONS(3453), - [anon_sym_COLON_COLON] = ACTIONS(3455), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3455), - [anon_sym___declspec] = ACTIONS(3453), - [anon_sym___based] = ACTIONS(3453), - [anon_sym_signed] = ACTIONS(3453), - [anon_sym_unsigned] = ACTIONS(3453), - [anon_sym_long] = ACTIONS(3453), - [anon_sym_short] = ACTIONS(3453), - [anon_sym_LBRACK] = ACTIONS(3453), - [anon_sym_static] = ACTIONS(3453), - [anon_sym_register] = ACTIONS(3453), - [anon_sym_inline] = ACTIONS(3453), - [anon_sym___inline] = ACTIONS(3453), - [anon_sym___inline__] = ACTIONS(3453), - [anon_sym___forceinline] = ACTIONS(3453), - [anon_sym_thread_local] = ACTIONS(3453), - [anon_sym___thread] = ACTIONS(3453), - [anon_sym_const] = ACTIONS(3453), - [anon_sym_constexpr] = ACTIONS(3453), - [anon_sym_volatile] = ACTIONS(3453), - [anon_sym_restrict] = ACTIONS(3453), - [anon_sym___restrict__] = ACTIONS(3453), - [anon_sym__Atomic] = ACTIONS(3453), - [anon_sym__Noreturn] = ACTIONS(3453), - [anon_sym_noreturn] = ACTIONS(3453), - [anon_sym_mutable] = ACTIONS(3453), - [anon_sym_constinit] = ACTIONS(3453), - [anon_sym_consteval] = ACTIONS(3453), - [sym_primitive_type] = ACTIONS(3453), - [anon_sym_enum] = ACTIONS(3453), - [anon_sym_class] = ACTIONS(3453), - [anon_sym_struct] = ACTIONS(3453), - [anon_sym_union] = ACTIONS(3453), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3453), - [anon_sym_decltype] = ACTIONS(3453), - [anon_sym_virtual] = ACTIONS(3453), - [anon_sym_alignas] = ACTIONS(3453), - [anon_sym_explicit] = ACTIONS(3453), - [anon_sym_typename] = ACTIONS(3453), - [anon_sym_template] = ACTIONS(3453), - [anon_sym_operator] = ACTIONS(3453), - [anon_sym_friend] = ACTIONS(3453), - [anon_sym_public] = ACTIONS(3453), - [anon_sym_private] = ACTIONS(3453), - [anon_sym_protected] = ACTIONS(3453), - [anon_sym_using] = ACTIONS(3453), - [anon_sym_static_assert] = ACTIONS(3453), + [sym_string_literal] = STATE(1843), + [sym_raw_string_literal] = STATE(1843), + [ts_builtin_sym_end] = ACTIONS(4765), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_RPAREN] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4765), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4773), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4773), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(4773), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_SEMI] = ACTIONS(4765), + [anon_sym_RBRACE] = ACTIONS(4765), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_RBRACK] = ACTIONS(4765), + [anon_sym_EQ] = ACTIONS(4773), + [anon_sym_COLON] = ACTIONS(4765), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4765), + [anon_sym_SLASH_EQ] = ACTIONS(4765), + [anon_sym_PERCENT_EQ] = ACTIONS(4765), + [anon_sym_PLUS_EQ] = ACTIONS(4765), + [anon_sym_DASH_EQ] = ACTIONS(4765), + [anon_sym_LT_LT_EQ] = ACTIONS(4765), + [anon_sym_GT_GT_EQ] = ACTIONS(4765), + [anon_sym_AMP_EQ] = ACTIONS(4765), + [anon_sym_CARET_EQ] = ACTIONS(4765), + [anon_sym_PIPE_EQ] = ACTIONS(4765), + [anon_sym_and_eq] = ACTIONS(4773), + [anon_sym_or_eq] = ACTIONS(4773), + [anon_sym_xor_eq] = ACTIONS(4773), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4773), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4773), + [anon_sym_not_eq] = ACTIONS(4773), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(2341), + [anon_sym_u_DQUOTE] = ACTIONS(2341), + [anon_sym_U_DQUOTE] = ACTIONS(2341), + [anon_sym_u8_DQUOTE] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2345), + [anon_sym_LR_DQUOTE] = ACTIONS(2345), + [anon_sym_uR_DQUOTE] = ACTIONS(2345), + [anon_sym_UR_DQUOTE] = ACTIONS(2345), + [anon_sym_u8R_DQUOTE] = ACTIONS(2345), + [sym_literal_suffix] = ACTIONS(5929), }, [2050] = { - [sym_string_literal] = STATE(1885), - [sym_template_argument_list] = STATE(3094), - [sym_raw_string_literal] = STATE(1885), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(5932), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(5946), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5488), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_RBRACE] = ACTIONS(4829), - [anon_sym_LBRACK] = ACTIONS(5935), - [anon_sym_EQ] = ACTIONS(4837), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4829), - [anon_sym_SLASH_EQ] = ACTIONS(4829), - [anon_sym_PERCENT_EQ] = ACTIONS(4829), - [anon_sym_PLUS_EQ] = ACTIONS(4829), - [anon_sym_DASH_EQ] = ACTIONS(4829), - [anon_sym_LT_LT_EQ] = ACTIONS(4829), - [anon_sym_GT_GT_EQ] = ACTIONS(4829), - [anon_sym_AMP_EQ] = ACTIONS(4829), - [anon_sym_CARET_EQ] = ACTIONS(4829), - [anon_sym_PIPE_EQ] = ACTIONS(4829), - [anon_sym_and_eq] = ACTIONS(4829), - [anon_sym_or_eq] = ACTIONS(4829), - [anon_sym_xor_eq] = ACTIONS(4829), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4829), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4829), - [anon_sym_not_eq] = ACTIONS(4829), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(2307), - [anon_sym_u_DQUOTE] = ACTIONS(2307), - [anon_sym_U_DQUOTE] = ACTIONS(2307), - [anon_sym_u8_DQUOTE] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), + [ts_builtin_sym_end] = ACTIONS(4789), + [sym_identifier] = ACTIONS(5938), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4789), + [anon_sym_COMMA] = ACTIONS(4789), + [anon_sym_RPAREN] = ACTIONS(4789), + [aux_sym_preproc_if_token2] = ACTIONS(4789), + [aux_sym_preproc_else_token1] = ACTIONS(4789), + [aux_sym_preproc_elif_token1] = ACTIONS(5938), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4789), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4789), + [anon_sym_LPAREN2] = ACTIONS(4789), + [anon_sym_DASH] = ACTIONS(5938), + [anon_sym_PLUS] = ACTIONS(5938), + [anon_sym_STAR] = ACTIONS(5938), + [anon_sym_SLASH] = ACTIONS(5938), + [anon_sym_PERCENT] = ACTIONS(5938), + [anon_sym_PIPE_PIPE] = ACTIONS(4789), + [anon_sym_AMP_AMP] = ACTIONS(4789), + [anon_sym_PIPE] = ACTIONS(5938), + [anon_sym_CARET] = ACTIONS(5938), + [anon_sym_AMP] = ACTIONS(5938), + [anon_sym_EQ_EQ] = ACTIONS(4789), + [anon_sym_BANG_EQ] = ACTIONS(4789), + [anon_sym_GT] = ACTIONS(5938), + [anon_sym_GT_EQ] = ACTIONS(4789), + [anon_sym_LT_EQ] = ACTIONS(5938), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_LT] = ACTIONS(5938), + [anon_sym_GT_GT] = ACTIONS(5938), + [anon_sym_SEMI] = ACTIONS(4789), + [anon_sym___attribute__] = ACTIONS(5938), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_RBRACE] = ACTIONS(4789), + [anon_sym_LBRACK] = ACTIONS(4789), + [anon_sym_RBRACK] = ACTIONS(4789), + [anon_sym_EQ] = ACTIONS(5938), + [anon_sym_COLON] = ACTIONS(5938), + [anon_sym_QMARK] = ACTIONS(4789), + [anon_sym_STAR_EQ] = ACTIONS(4789), + [anon_sym_SLASH_EQ] = ACTIONS(4789), + [anon_sym_PERCENT_EQ] = ACTIONS(4789), + [anon_sym_PLUS_EQ] = ACTIONS(4789), + [anon_sym_DASH_EQ] = ACTIONS(4789), + [anon_sym_LT_LT_EQ] = ACTIONS(4789), + [anon_sym_GT_GT_EQ] = ACTIONS(4789), + [anon_sym_AMP_EQ] = ACTIONS(4789), + [anon_sym_CARET_EQ] = ACTIONS(4789), + [anon_sym_PIPE_EQ] = ACTIONS(4789), + [anon_sym_and_eq] = ACTIONS(5938), + [anon_sym_or_eq] = ACTIONS(5938), + [anon_sym_xor_eq] = ACTIONS(5938), + [anon_sym_LT_EQ_GT] = ACTIONS(4789), + [anon_sym_or] = ACTIONS(5938), + [anon_sym_and] = ACTIONS(5938), + [anon_sym_bitor] = ACTIONS(5938), + [anon_sym_xor] = ACTIONS(5938), + [anon_sym_bitand] = ACTIONS(5938), + [anon_sym_not_eq] = ACTIONS(5938), + [anon_sym_DASH_DASH] = ACTIONS(4789), + [anon_sym_PLUS_PLUS] = ACTIONS(4789), + [anon_sym_DOT] = ACTIONS(5938), + [anon_sym_DOT_STAR] = ACTIONS(4789), + [anon_sym_DASH_GT] = ACTIONS(4789), [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(2317), - [anon_sym_LR_DQUOTE] = ACTIONS(2317), - [anon_sym_uR_DQUOTE] = ACTIONS(2317), - [anon_sym_UR_DQUOTE] = ACTIONS(2317), - [anon_sym_u8R_DQUOTE] = ACTIONS(2317), + [sym_auto] = ACTIONS(5938), + [anon_sym_decltype] = ACTIONS(5938), + [anon_sym_final] = ACTIONS(5938), + [anon_sym_override] = ACTIONS(5938), }, [2051] = { - [sym_identifier] = ACTIONS(3457), - [aux_sym_preproc_def_token1] = ACTIONS(3457), - [aux_sym_preproc_if_token1] = ACTIONS(3457), - [aux_sym_preproc_if_token2] = ACTIONS(3457), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3457), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3457), - [aux_sym_preproc_else_token1] = ACTIONS(3457), - [aux_sym_preproc_elif_token1] = ACTIONS(3457), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3457), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3457), - [sym_preproc_directive] = ACTIONS(3457), - [anon_sym_LPAREN2] = ACTIONS(3459), - [anon_sym_TILDE] = ACTIONS(3459), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_AMP] = ACTIONS(3457), - [anon_sym___extension__] = ACTIONS(3457), - [anon_sym_typedef] = ACTIONS(3457), - [anon_sym_extern] = ACTIONS(3457), - [anon_sym___attribute__] = ACTIONS(3457), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3459), - [anon_sym___declspec] = ACTIONS(3457), - [anon_sym___based] = ACTIONS(3457), - [anon_sym_signed] = ACTIONS(3457), - [anon_sym_unsigned] = ACTIONS(3457), - [anon_sym_long] = ACTIONS(3457), - [anon_sym_short] = ACTIONS(3457), - [anon_sym_LBRACK] = ACTIONS(3457), - [anon_sym_static] = ACTIONS(3457), - [anon_sym_register] = ACTIONS(3457), - [anon_sym_inline] = ACTIONS(3457), - [anon_sym___inline] = ACTIONS(3457), - [anon_sym___inline__] = ACTIONS(3457), - [anon_sym___forceinline] = ACTIONS(3457), - [anon_sym_thread_local] = ACTIONS(3457), - [anon_sym___thread] = ACTIONS(3457), - [anon_sym_const] = ACTIONS(3457), - [anon_sym_constexpr] = ACTIONS(3457), - [anon_sym_volatile] = ACTIONS(3457), - [anon_sym_restrict] = ACTIONS(3457), - [anon_sym___restrict__] = ACTIONS(3457), - [anon_sym__Atomic] = ACTIONS(3457), - [anon_sym__Noreturn] = ACTIONS(3457), - [anon_sym_noreturn] = ACTIONS(3457), - [anon_sym_mutable] = ACTIONS(3457), - [anon_sym_constinit] = ACTIONS(3457), - [anon_sym_consteval] = ACTIONS(3457), - [sym_primitive_type] = ACTIONS(3457), - [anon_sym_enum] = ACTIONS(3457), - [anon_sym_class] = ACTIONS(3457), - [anon_sym_struct] = ACTIONS(3457), - [anon_sym_union] = ACTIONS(3457), + [aux_sym_sized_type_specifier_repeat1] = STATE(2051), + [ts_builtin_sym_end] = ACTIONS(5651), + [sym_identifier] = ACTIONS(5653), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5651), + [anon_sym_COMMA] = ACTIONS(5651), + [anon_sym_RPAREN] = ACTIONS(5651), + [anon_sym_LPAREN2] = ACTIONS(5651), + [anon_sym_DASH] = ACTIONS(5653), + [anon_sym_PLUS] = ACTIONS(5653), + [anon_sym_STAR] = ACTIONS(5651), + [anon_sym_SLASH] = ACTIONS(5653), + [anon_sym_PERCENT] = ACTIONS(5651), + [anon_sym_PIPE_PIPE] = ACTIONS(5651), + [anon_sym_AMP_AMP] = ACTIONS(5651), + [anon_sym_PIPE] = ACTIONS(5653), + [anon_sym_CARET] = ACTIONS(5651), + [anon_sym_AMP] = ACTIONS(5653), + [anon_sym_EQ_EQ] = ACTIONS(5651), + [anon_sym_BANG_EQ] = ACTIONS(5651), + [anon_sym_GT] = ACTIONS(5653), + [anon_sym_GT_EQ] = ACTIONS(5651), + [anon_sym_LT_EQ] = ACTIONS(5653), + [anon_sym_LT] = ACTIONS(5653), + [anon_sym_LT_LT] = ACTIONS(5651), + [anon_sym_GT_GT] = ACTIONS(5651), + [anon_sym_SEMI] = ACTIONS(5651), + [anon_sym___extension__] = ACTIONS(5653), + [anon_sym___attribute__] = ACTIONS(5653), + [anon_sym_LBRACE] = ACTIONS(5651), + [anon_sym_RBRACE] = ACTIONS(5651), + [anon_sym_signed] = ACTIONS(5940), + [anon_sym_unsigned] = ACTIONS(5940), + [anon_sym_long] = ACTIONS(5940), + [anon_sym_short] = ACTIONS(5940), + [anon_sym_LBRACK] = ACTIONS(5651), + [anon_sym_RBRACK] = ACTIONS(5651), + [anon_sym_const] = ACTIONS(5653), + [anon_sym_constexpr] = ACTIONS(5653), + [anon_sym_volatile] = ACTIONS(5653), + [anon_sym_restrict] = ACTIONS(5653), + [anon_sym___restrict__] = ACTIONS(5653), + [anon_sym__Atomic] = ACTIONS(5653), + [anon_sym__Noreturn] = ACTIONS(5653), + [anon_sym_noreturn] = ACTIONS(5653), + [anon_sym_mutable] = ACTIONS(5653), + [anon_sym_constinit] = ACTIONS(5653), + [anon_sym_consteval] = ACTIONS(5653), + [sym_primitive_type] = ACTIONS(5653), + [anon_sym_COLON] = ACTIONS(5651), + [anon_sym_QMARK] = ACTIONS(5651), + [anon_sym_LT_EQ_GT] = ACTIONS(5651), + [anon_sym_or] = ACTIONS(5653), + [anon_sym_and] = ACTIONS(5653), + [anon_sym_bitor] = ACTIONS(5653), + [anon_sym_xor] = ACTIONS(5653), + [anon_sym_bitand] = ACTIONS(5653), + [anon_sym_not_eq] = ACTIONS(5653), + [anon_sym_DASH_DASH] = ACTIONS(5651), + [anon_sym_PLUS_PLUS] = ACTIONS(5651), + [anon_sym_DOT] = ACTIONS(5653), + [anon_sym_DOT_STAR] = ACTIONS(5651), + [anon_sym_DASH_GT] = ACTIONS(5651), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3457), - [anon_sym_decltype] = ACTIONS(3457), - [anon_sym_virtual] = ACTIONS(3457), - [anon_sym_alignas] = ACTIONS(3457), - [anon_sym_explicit] = ACTIONS(3457), - [anon_sym_typename] = ACTIONS(3457), - [anon_sym_template] = ACTIONS(3457), - [anon_sym_operator] = ACTIONS(3457), - [anon_sym_friend] = ACTIONS(3457), - [anon_sym_public] = ACTIONS(3457), - [anon_sym_private] = ACTIONS(3457), - [anon_sym_protected] = ACTIONS(3457), - [anon_sym_using] = ACTIONS(3457), - [anon_sym_static_assert] = ACTIONS(3457), + [sym_auto] = ACTIONS(5653), + [anon_sym_decltype] = ACTIONS(5653), + [anon_sym_final] = ACTIONS(5653), + [anon_sym_override] = ACTIONS(5653), + [anon_sym_requires] = ACTIONS(5653), + [sym_semgrep_metavar] = ACTIONS(5651), }, [2052] = { - [sym_identifier] = ACTIONS(3461), - [aux_sym_preproc_def_token1] = ACTIONS(3461), - [aux_sym_preproc_if_token1] = ACTIONS(3461), - [aux_sym_preproc_if_token2] = ACTIONS(3461), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3461), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3461), - [aux_sym_preproc_else_token1] = ACTIONS(3461), - [aux_sym_preproc_elif_token1] = ACTIONS(3461), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3461), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3461), - [sym_preproc_directive] = ACTIONS(3461), - [anon_sym_LPAREN2] = ACTIONS(3463), - [anon_sym_TILDE] = ACTIONS(3463), - [anon_sym_STAR] = ACTIONS(3463), - [anon_sym_AMP_AMP] = ACTIONS(3463), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym___extension__] = ACTIONS(3461), - [anon_sym_typedef] = ACTIONS(3461), - [anon_sym_extern] = ACTIONS(3461), - [anon_sym___attribute__] = ACTIONS(3461), - [anon_sym_COLON_COLON] = ACTIONS(3463), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3463), - [anon_sym___declspec] = ACTIONS(3461), - [anon_sym___based] = ACTIONS(3461), - [anon_sym_signed] = ACTIONS(3461), - [anon_sym_unsigned] = ACTIONS(3461), - [anon_sym_long] = ACTIONS(3461), - [anon_sym_short] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3461), - [anon_sym_static] = ACTIONS(3461), - [anon_sym_register] = ACTIONS(3461), - [anon_sym_inline] = ACTIONS(3461), - [anon_sym___inline] = ACTIONS(3461), - [anon_sym___inline__] = ACTIONS(3461), - [anon_sym___forceinline] = ACTIONS(3461), - [anon_sym_thread_local] = ACTIONS(3461), - [anon_sym___thread] = ACTIONS(3461), - [anon_sym_const] = ACTIONS(3461), - [anon_sym_constexpr] = ACTIONS(3461), - [anon_sym_volatile] = ACTIONS(3461), - [anon_sym_restrict] = ACTIONS(3461), - [anon_sym___restrict__] = ACTIONS(3461), - [anon_sym__Atomic] = ACTIONS(3461), - [anon_sym__Noreturn] = ACTIONS(3461), - [anon_sym_noreturn] = ACTIONS(3461), - [anon_sym_mutable] = ACTIONS(3461), - [anon_sym_constinit] = ACTIONS(3461), - [anon_sym_consteval] = ACTIONS(3461), - [sym_primitive_type] = ACTIONS(3461), - [anon_sym_enum] = ACTIONS(3461), - [anon_sym_class] = ACTIONS(3461), - [anon_sym_struct] = ACTIONS(3461), - [anon_sym_union] = ACTIONS(3461), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3461), - [anon_sym_decltype] = ACTIONS(3461), - [anon_sym_virtual] = ACTIONS(3461), - [anon_sym_alignas] = ACTIONS(3461), - [anon_sym_explicit] = ACTIONS(3461), - [anon_sym_typename] = ACTIONS(3461), - [anon_sym_template] = ACTIONS(3461), - [anon_sym_operator] = ACTIONS(3461), - [anon_sym_friend] = ACTIONS(3461), - [anon_sym_public] = ACTIONS(3461), - [anon_sym_private] = ACTIONS(3461), - [anon_sym_protected] = ACTIONS(3461), - [anon_sym_using] = ACTIONS(3461), - [anon_sym_static_assert] = ACTIONS(3461), + [ts_builtin_sym_end] = ACTIONS(5419), + [sym_identifier] = ACTIONS(5417), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5419), + [anon_sym_COMMA] = ACTIONS(5419), + [anon_sym_RPAREN] = ACTIONS(5419), + [anon_sym_LPAREN2] = ACTIONS(5419), + [anon_sym_DASH] = ACTIONS(5417), + [anon_sym_PLUS] = ACTIONS(5417), + [anon_sym_STAR] = ACTIONS(5419), + [anon_sym_SLASH] = ACTIONS(5417), + [anon_sym_PERCENT] = ACTIONS(5419), + [anon_sym_PIPE_PIPE] = ACTIONS(5419), + [anon_sym_AMP_AMP] = ACTIONS(5419), + [anon_sym_PIPE] = ACTIONS(5417), + [anon_sym_CARET] = ACTIONS(5419), + [anon_sym_AMP] = ACTIONS(5417), + [anon_sym_EQ_EQ] = ACTIONS(5419), + [anon_sym_BANG_EQ] = ACTIONS(5419), + [anon_sym_GT] = ACTIONS(5417), + [anon_sym_GT_EQ] = ACTIONS(5419), + [anon_sym_LT_EQ] = ACTIONS(5417), + [anon_sym_LT] = ACTIONS(5417), + [anon_sym_LT_LT] = ACTIONS(5419), + [anon_sym_GT_GT] = ACTIONS(5419), + [anon_sym_SEMI] = ACTIONS(5419), + [anon_sym___extension__] = ACTIONS(5417), + [anon_sym___attribute__] = ACTIONS(5417), + [anon_sym_COLON_COLON] = ACTIONS(5419), + [anon_sym___based] = ACTIONS(5417), + [anon_sym_LBRACE] = ACTIONS(5419), + [anon_sym_RBRACE] = ACTIONS(5419), + [anon_sym_signed] = ACTIONS(5417), + [anon_sym_unsigned] = ACTIONS(5417), + [anon_sym_long] = ACTIONS(5417), + [anon_sym_short] = ACTIONS(5417), + [anon_sym_LBRACK] = ACTIONS(5419), + [anon_sym_RBRACK] = ACTIONS(5419), + [anon_sym_const] = ACTIONS(5417), + [anon_sym_constexpr] = ACTIONS(5417), + [anon_sym_volatile] = ACTIONS(5417), + [anon_sym_restrict] = ACTIONS(5417), + [anon_sym___restrict__] = ACTIONS(5417), + [anon_sym__Atomic] = ACTIONS(5417), + [anon_sym__Noreturn] = ACTIONS(5417), + [anon_sym_noreturn] = ACTIONS(5417), + [anon_sym_mutable] = ACTIONS(5417), + [anon_sym_constinit] = ACTIONS(5417), + [anon_sym_consteval] = ACTIONS(5417), + [sym_primitive_type] = ACTIONS(5417), + [anon_sym_COLON] = ACTIONS(5417), + [anon_sym_QMARK] = ACTIONS(5419), + [anon_sym_LT_EQ_GT] = ACTIONS(5419), + [anon_sym_or] = ACTIONS(5417), + [anon_sym_and] = ACTIONS(5417), + [anon_sym_bitor] = ACTIONS(5417), + [anon_sym_xor] = ACTIONS(5417), + [anon_sym_bitand] = ACTIONS(5417), + [anon_sym_not_eq] = ACTIONS(5417), + [anon_sym_DASH_DASH] = ACTIONS(5419), + [anon_sym_PLUS_PLUS] = ACTIONS(5419), + [anon_sym_DOT] = ACTIONS(5417), + [anon_sym_DOT_STAR] = ACTIONS(5419), + [anon_sym_DASH_GT] = ACTIONS(5419), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5417), + [anon_sym_decltype] = ACTIONS(5417), + [anon_sym_final] = ACTIONS(5417), + [anon_sym_override] = ACTIONS(5417), + [anon_sym_requires] = ACTIONS(5417), }, [2053] = { - [sym_identifier] = ACTIONS(3465), - [aux_sym_preproc_def_token1] = ACTIONS(3465), - [aux_sym_preproc_if_token1] = ACTIONS(3465), - [aux_sym_preproc_if_token2] = ACTIONS(3465), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3465), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3465), - [aux_sym_preproc_else_token1] = ACTIONS(3465), - [aux_sym_preproc_elif_token1] = ACTIONS(3465), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3465), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3465), - [sym_preproc_directive] = ACTIONS(3465), - [anon_sym_LPAREN2] = ACTIONS(3467), - [anon_sym_TILDE] = ACTIONS(3467), - [anon_sym_STAR] = ACTIONS(3467), - [anon_sym_AMP_AMP] = ACTIONS(3467), - [anon_sym_AMP] = ACTIONS(3465), - [anon_sym___extension__] = ACTIONS(3465), - [anon_sym_typedef] = ACTIONS(3465), - [anon_sym_extern] = ACTIONS(3465), - [anon_sym___attribute__] = ACTIONS(3465), - [anon_sym_COLON_COLON] = ACTIONS(3467), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3467), - [anon_sym___declspec] = ACTIONS(3465), - [anon_sym___based] = ACTIONS(3465), - [anon_sym_signed] = ACTIONS(3465), - [anon_sym_unsigned] = ACTIONS(3465), - [anon_sym_long] = ACTIONS(3465), - [anon_sym_short] = ACTIONS(3465), - [anon_sym_LBRACK] = ACTIONS(3465), - [anon_sym_static] = ACTIONS(3465), - [anon_sym_register] = ACTIONS(3465), - [anon_sym_inline] = ACTIONS(3465), - [anon_sym___inline] = ACTIONS(3465), - [anon_sym___inline__] = ACTIONS(3465), - [anon_sym___forceinline] = ACTIONS(3465), - [anon_sym_thread_local] = ACTIONS(3465), - [anon_sym___thread] = ACTIONS(3465), - [anon_sym_const] = ACTIONS(3465), - [anon_sym_constexpr] = ACTIONS(3465), - [anon_sym_volatile] = ACTIONS(3465), - [anon_sym_restrict] = ACTIONS(3465), - [anon_sym___restrict__] = ACTIONS(3465), - [anon_sym__Atomic] = ACTIONS(3465), - [anon_sym__Noreturn] = ACTIONS(3465), - [anon_sym_noreturn] = ACTIONS(3465), - [anon_sym_mutable] = ACTIONS(3465), - [anon_sym_constinit] = ACTIONS(3465), - [anon_sym_consteval] = ACTIONS(3465), - [sym_primitive_type] = ACTIONS(3465), - [anon_sym_enum] = ACTIONS(3465), - [anon_sym_class] = ACTIONS(3465), - [anon_sym_struct] = ACTIONS(3465), - [anon_sym_union] = ACTIONS(3465), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3465), - [anon_sym_decltype] = ACTIONS(3465), - [anon_sym_virtual] = ACTIONS(3465), - [anon_sym_alignas] = ACTIONS(3465), - [anon_sym_explicit] = ACTIONS(3465), - [anon_sym_typename] = ACTIONS(3465), - [anon_sym_template] = ACTIONS(3465), - [anon_sym_operator] = ACTIONS(3465), - [anon_sym_friend] = ACTIONS(3465), - [anon_sym_public] = ACTIONS(3465), - [anon_sym_private] = ACTIONS(3465), - [anon_sym_protected] = ACTIONS(3465), - [anon_sym_using] = ACTIONS(3465), - [anon_sym_static_assert] = ACTIONS(3465), + [sym_catch_clause] = STATE(2054), + [aux_sym_constructor_try_statement_repeat1] = STATE(2054), + [sym_identifier] = ACTIONS(3046), + [aux_sym_preproc_def_token1] = ACTIONS(3046), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3046), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3046), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3046), + [sym_preproc_directive] = ACTIONS(3046), + [anon_sym_LPAREN2] = ACTIONS(3048), + [anon_sym_TILDE] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(3048), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3046), + [anon_sym_typedef] = ACTIONS(3046), + [anon_sym_extern] = ACTIONS(3046), + [anon_sym___attribute__] = ACTIONS(3046), + [anon_sym_COLON_COLON] = ACTIONS(3048), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3048), + [anon_sym___declspec] = ACTIONS(3046), + [anon_sym___based] = ACTIONS(3046), + [anon_sym_RBRACE] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3046), + [anon_sym_unsigned] = ACTIONS(3046), + [anon_sym_long] = ACTIONS(3046), + [anon_sym_short] = ACTIONS(3046), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_static] = ACTIONS(3046), + [anon_sym_register] = ACTIONS(3046), + [anon_sym_inline] = ACTIONS(3046), + [anon_sym___inline] = ACTIONS(3046), + [anon_sym___inline__] = ACTIONS(3046), + [anon_sym___forceinline] = ACTIONS(3046), + [anon_sym_thread_local] = ACTIONS(3046), + [anon_sym___thread] = ACTIONS(3046), + [anon_sym_const] = ACTIONS(3046), + [anon_sym_constexpr] = ACTIONS(3046), + [anon_sym_volatile] = ACTIONS(3046), + [anon_sym_restrict] = ACTIONS(3046), + [anon_sym___restrict__] = ACTIONS(3046), + [anon_sym__Atomic] = ACTIONS(3046), + [anon_sym__Noreturn] = ACTIONS(3046), + [anon_sym_noreturn] = ACTIONS(3046), + [anon_sym_mutable] = ACTIONS(3046), + [anon_sym_constinit] = ACTIONS(3046), + [anon_sym_consteval] = ACTIONS(3046), + [sym_primitive_type] = ACTIONS(3046), + [anon_sym_enum] = ACTIONS(3046), + [anon_sym_class] = ACTIONS(3046), + [anon_sym_struct] = ACTIONS(3046), + [anon_sym_union] = ACTIONS(3046), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3046), + [anon_sym_decltype] = ACTIONS(3046), + [anon_sym_virtual] = ACTIONS(3046), + [anon_sym_alignas] = ACTIONS(3046), + [anon_sym_explicit] = ACTIONS(3046), + [anon_sym_typename] = ACTIONS(3046), + [anon_sym_template] = ACTIONS(3046), + [anon_sym_operator] = ACTIONS(3046), + [anon_sym_friend] = ACTIONS(3046), + [anon_sym_public] = ACTIONS(3046), + [anon_sym_private] = ACTIONS(3046), + [anon_sym_protected] = ACTIONS(3046), + [anon_sym_using] = ACTIONS(3046), + [anon_sym_static_assert] = ACTIONS(3046), + [anon_sym_catch] = ACTIONS(5927), + [sym_semgrep_metavar] = ACTIONS(3048), }, [2054] = { - [sym_identifier] = ACTIONS(3495), - [aux_sym_preproc_def_token1] = ACTIONS(3495), - [aux_sym_preproc_if_token1] = ACTIONS(3495), - [aux_sym_preproc_if_token2] = ACTIONS(3495), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3495), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3495), - [aux_sym_preproc_else_token1] = ACTIONS(3495), - [aux_sym_preproc_elif_token1] = ACTIONS(3495), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3495), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3495), - [sym_preproc_directive] = ACTIONS(3495), - [anon_sym_LPAREN2] = ACTIONS(3497), - [anon_sym_TILDE] = ACTIONS(3497), - [anon_sym_STAR] = ACTIONS(3497), - [anon_sym_AMP_AMP] = ACTIONS(3497), - [anon_sym_AMP] = ACTIONS(3495), - [anon_sym___extension__] = ACTIONS(3495), - [anon_sym_typedef] = ACTIONS(3495), - [anon_sym_extern] = ACTIONS(3495), - [anon_sym___attribute__] = ACTIONS(3495), - [anon_sym_COLON_COLON] = ACTIONS(3497), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3497), - [anon_sym___declspec] = ACTIONS(3495), - [anon_sym___based] = ACTIONS(3495), - [anon_sym_signed] = ACTIONS(3495), - [anon_sym_unsigned] = ACTIONS(3495), - [anon_sym_long] = ACTIONS(3495), - [anon_sym_short] = ACTIONS(3495), - [anon_sym_LBRACK] = ACTIONS(3495), - [anon_sym_static] = ACTIONS(3495), - [anon_sym_register] = ACTIONS(3495), - [anon_sym_inline] = ACTIONS(3495), - [anon_sym___inline] = ACTIONS(3495), - [anon_sym___inline__] = ACTIONS(3495), - [anon_sym___forceinline] = ACTIONS(3495), - [anon_sym_thread_local] = ACTIONS(3495), - [anon_sym___thread] = ACTIONS(3495), - [anon_sym_const] = ACTIONS(3495), - [anon_sym_constexpr] = ACTIONS(3495), - [anon_sym_volatile] = ACTIONS(3495), - [anon_sym_restrict] = ACTIONS(3495), - [anon_sym___restrict__] = ACTIONS(3495), - [anon_sym__Atomic] = ACTIONS(3495), - [anon_sym__Noreturn] = ACTIONS(3495), - [anon_sym_noreturn] = ACTIONS(3495), - [anon_sym_mutable] = ACTIONS(3495), - [anon_sym_constinit] = ACTIONS(3495), - [anon_sym_consteval] = ACTIONS(3495), - [sym_primitive_type] = ACTIONS(3495), - [anon_sym_enum] = ACTIONS(3495), - [anon_sym_class] = ACTIONS(3495), - [anon_sym_struct] = ACTIONS(3495), - [anon_sym_union] = ACTIONS(3495), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3495), - [anon_sym_decltype] = ACTIONS(3495), - [anon_sym_virtual] = ACTIONS(3495), - [anon_sym_alignas] = ACTIONS(3495), - [anon_sym_explicit] = ACTIONS(3495), - [anon_sym_typename] = ACTIONS(3495), - [anon_sym_template] = ACTIONS(3495), - [anon_sym_operator] = ACTIONS(3495), - [anon_sym_friend] = ACTIONS(3495), - [anon_sym_public] = ACTIONS(3495), - [anon_sym_private] = ACTIONS(3495), - [anon_sym_protected] = ACTIONS(3495), - [anon_sym_using] = ACTIONS(3495), - [anon_sym_static_assert] = ACTIONS(3495), + [sym_catch_clause] = STATE(2054), + [aux_sym_constructor_try_statement_repeat1] = STATE(2054), + [sym_identifier] = ACTIONS(3027), + [aux_sym_preproc_def_token1] = ACTIONS(3027), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3029), + [aux_sym_preproc_if_token1] = ACTIONS(3027), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3027), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3027), + [sym_preproc_directive] = ACTIONS(3027), + [anon_sym_LPAREN2] = ACTIONS(3029), + [anon_sym_TILDE] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3029), + [anon_sym_AMP_AMP] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3027), + [anon_sym___extension__] = ACTIONS(3027), + [anon_sym_typedef] = ACTIONS(3027), + [anon_sym_extern] = ACTIONS(3027), + [anon_sym___attribute__] = ACTIONS(3027), + [anon_sym_COLON_COLON] = ACTIONS(3029), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3029), + [anon_sym___declspec] = ACTIONS(3027), + [anon_sym___based] = ACTIONS(3027), + [anon_sym_RBRACE] = ACTIONS(3029), + [anon_sym_signed] = ACTIONS(3027), + [anon_sym_unsigned] = ACTIONS(3027), + [anon_sym_long] = ACTIONS(3027), + [anon_sym_short] = ACTIONS(3027), + [anon_sym_LBRACK] = ACTIONS(3027), + [anon_sym_static] = ACTIONS(3027), + [anon_sym_register] = ACTIONS(3027), + [anon_sym_inline] = ACTIONS(3027), + [anon_sym___inline] = ACTIONS(3027), + [anon_sym___inline__] = ACTIONS(3027), + [anon_sym___forceinline] = ACTIONS(3027), + [anon_sym_thread_local] = ACTIONS(3027), + [anon_sym___thread] = ACTIONS(3027), + [anon_sym_const] = ACTIONS(3027), + [anon_sym_constexpr] = ACTIONS(3027), + [anon_sym_volatile] = ACTIONS(3027), + [anon_sym_restrict] = ACTIONS(3027), + [anon_sym___restrict__] = ACTIONS(3027), + [anon_sym__Atomic] = ACTIONS(3027), + [anon_sym__Noreturn] = ACTIONS(3027), + [anon_sym_noreturn] = ACTIONS(3027), + [anon_sym_mutable] = ACTIONS(3027), + [anon_sym_constinit] = ACTIONS(3027), + [anon_sym_consteval] = ACTIONS(3027), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3027), + [anon_sym_class] = ACTIONS(3027), + [anon_sym_struct] = ACTIONS(3027), + [anon_sym_union] = ACTIONS(3027), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3027), + [anon_sym_decltype] = ACTIONS(3027), + [anon_sym_virtual] = ACTIONS(3027), + [anon_sym_alignas] = ACTIONS(3027), + [anon_sym_explicit] = ACTIONS(3027), + [anon_sym_typename] = ACTIONS(3027), + [anon_sym_template] = ACTIONS(3027), + [anon_sym_operator] = ACTIONS(3027), + [anon_sym_friend] = ACTIONS(3027), + [anon_sym_public] = ACTIONS(3027), + [anon_sym_private] = ACTIONS(3027), + [anon_sym_protected] = ACTIONS(3027), + [anon_sym_using] = ACTIONS(3027), + [anon_sym_static_assert] = ACTIONS(3027), + [anon_sym_catch] = ACTIONS(5943), + [sym_semgrep_metavar] = ACTIONS(3029), }, [2055] = { - [sym_identifier] = ACTIONS(3499), - [aux_sym_preproc_def_token1] = ACTIONS(3499), - [aux_sym_preproc_if_token1] = ACTIONS(3499), - [aux_sym_preproc_if_token2] = ACTIONS(3499), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3499), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3499), - [aux_sym_preproc_else_token1] = ACTIONS(3499), - [aux_sym_preproc_elif_token1] = ACTIONS(3499), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3499), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3499), - [sym_preproc_directive] = ACTIONS(3499), - [anon_sym_LPAREN2] = ACTIONS(3501), - [anon_sym_TILDE] = ACTIONS(3501), - [anon_sym_STAR] = ACTIONS(3501), - [anon_sym_AMP_AMP] = ACTIONS(3501), - [anon_sym_AMP] = ACTIONS(3499), - [anon_sym___extension__] = ACTIONS(3499), - [anon_sym_typedef] = ACTIONS(3499), - [anon_sym_extern] = ACTIONS(3499), - [anon_sym___attribute__] = ACTIONS(3499), - [anon_sym_COLON_COLON] = ACTIONS(3501), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3501), - [anon_sym___declspec] = ACTIONS(3499), - [anon_sym___based] = ACTIONS(3499), - [anon_sym_signed] = ACTIONS(3499), - [anon_sym_unsigned] = ACTIONS(3499), - [anon_sym_long] = ACTIONS(3499), - [anon_sym_short] = ACTIONS(3499), - [anon_sym_LBRACK] = ACTIONS(3499), - [anon_sym_static] = ACTIONS(3499), - [anon_sym_register] = ACTIONS(3499), - [anon_sym_inline] = ACTIONS(3499), - [anon_sym___inline] = ACTIONS(3499), - [anon_sym___inline__] = ACTIONS(3499), - [anon_sym___forceinline] = ACTIONS(3499), - [anon_sym_thread_local] = ACTIONS(3499), - [anon_sym___thread] = ACTIONS(3499), - [anon_sym_const] = ACTIONS(3499), - [anon_sym_constexpr] = ACTIONS(3499), - [anon_sym_volatile] = ACTIONS(3499), - [anon_sym_restrict] = ACTIONS(3499), - [anon_sym___restrict__] = ACTIONS(3499), - [anon_sym__Atomic] = ACTIONS(3499), - [anon_sym__Noreturn] = ACTIONS(3499), - [anon_sym_noreturn] = ACTIONS(3499), - [anon_sym_mutable] = ACTIONS(3499), - [anon_sym_constinit] = ACTIONS(3499), - [anon_sym_consteval] = ACTIONS(3499), - [sym_primitive_type] = ACTIONS(3499), - [anon_sym_enum] = ACTIONS(3499), - [anon_sym_class] = ACTIONS(3499), - [anon_sym_struct] = ACTIONS(3499), - [anon_sym_union] = ACTIONS(3499), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3499), - [anon_sym_decltype] = ACTIONS(3499), - [anon_sym_virtual] = ACTIONS(3499), - [anon_sym_alignas] = ACTIONS(3499), - [anon_sym_explicit] = ACTIONS(3499), - [anon_sym_typename] = ACTIONS(3499), - [anon_sym_template] = ACTIONS(3499), - [anon_sym_operator] = ACTIONS(3499), - [anon_sym_friend] = ACTIONS(3499), - [anon_sym_public] = ACTIONS(3499), - [anon_sym_private] = ACTIONS(3499), - [anon_sym_protected] = ACTIONS(3499), - [anon_sym_using] = ACTIONS(3499), - [anon_sym_static_assert] = ACTIONS(3499), + [ts_builtin_sym_end] = ACTIONS(5427), + [sym_identifier] = ACTIONS(5425), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5427), + [anon_sym_COMMA] = ACTIONS(5427), + [anon_sym_RPAREN] = ACTIONS(5427), + [anon_sym_LPAREN2] = ACTIONS(5427), + [anon_sym_DASH] = ACTIONS(5425), + [anon_sym_PLUS] = ACTIONS(5425), + [anon_sym_STAR] = ACTIONS(5427), + [anon_sym_SLASH] = ACTIONS(5425), + [anon_sym_PERCENT] = ACTIONS(5427), + [anon_sym_PIPE_PIPE] = ACTIONS(5427), + [anon_sym_AMP_AMP] = ACTIONS(5427), + [anon_sym_PIPE] = ACTIONS(5425), + [anon_sym_CARET] = ACTIONS(5427), + [anon_sym_AMP] = ACTIONS(5425), + [anon_sym_EQ_EQ] = ACTIONS(5427), + [anon_sym_BANG_EQ] = ACTIONS(5427), + [anon_sym_GT] = ACTIONS(5425), + [anon_sym_GT_EQ] = ACTIONS(5427), + [anon_sym_LT_EQ] = ACTIONS(5425), + [anon_sym_LT] = ACTIONS(5425), + [anon_sym_LT_LT] = ACTIONS(5427), + [anon_sym_GT_GT] = ACTIONS(5427), + [anon_sym_SEMI] = ACTIONS(5427), + [anon_sym___extension__] = ACTIONS(5425), + [anon_sym___attribute__] = ACTIONS(5425), + [anon_sym_COLON_COLON] = ACTIONS(5427), + [anon_sym___based] = ACTIONS(5425), + [anon_sym_LBRACE] = ACTIONS(5427), + [anon_sym_RBRACE] = ACTIONS(5427), + [anon_sym_signed] = ACTIONS(5425), + [anon_sym_unsigned] = ACTIONS(5425), + [anon_sym_long] = ACTIONS(5425), + [anon_sym_short] = ACTIONS(5425), + [anon_sym_LBRACK] = ACTIONS(5427), + [anon_sym_RBRACK] = ACTIONS(5427), + [anon_sym_const] = ACTIONS(5425), + [anon_sym_constexpr] = ACTIONS(5425), + [anon_sym_volatile] = ACTIONS(5425), + [anon_sym_restrict] = ACTIONS(5425), + [anon_sym___restrict__] = ACTIONS(5425), + [anon_sym__Atomic] = ACTIONS(5425), + [anon_sym__Noreturn] = ACTIONS(5425), + [anon_sym_noreturn] = ACTIONS(5425), + [anon_sym_mutable] = ACTIONS(5425), + [anon_sym_constinit] = ACTIONS(5425), + [anon_sym_consteval] = ACTIONS(5425), + [sym_primitive_type] = ACTIONS(5425), + [anon_sym_COLON] = ACTIONS(5425), + [anon_sym_QMARK] = ACTIONS(5427), + [anon_sym_LT_EQ_GT] = ACTIONS(5427), + [anon_sym_or] = ACTIONS(5425), + [anon_sym_and] = ACTIONS(5425), + [anon_sym_bitor] = ACTIONS(5425), + [anon_sym_xor] = ACTIONS(5425), + [anon_sym_bitand] = ACTIONS(5425), + [anon_sym_not_eq] = ACTIONS(5425), + [anon_sym_DASH_DASH] = ACTIONS(5427), + [anon_sym_PLUS_PLUS] = ACTIONS(5427), + [anon_sym_DOT] = ACTIONS(5425), + [anon_sym_DOT_STAR] = ACTIONS(5427), + [anon_sym_DASH_GT] = ACTIONS(5427), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5425), + [anon_sym_decltype] = ACTIONS(5425), + [anon_sym_final] = ACTIONS(5425), + [anon_sym_override] = ACTIONS(5425), + [anon_sym_requires] = ACTIONS(5425), }, [2056] = { - [sym_identifier] = ACTIONS(3503), - [aux_sym_preproc_def_token1] = ACTIONS(3503), - [aux_sym_preproc_if_token1] = ACTIONS(3503), - [aux_sym_preproc_if_token2] = ACTIONS(3503), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3503), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3503), - [aux_sym_preproc_else_token1] = ACTIONS(3503), - [aux_sym_preproc_elif_token1] = ACTIONS(3503), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3503), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3503), - [sym_preproc_directive] = ACTIONS(3503), - [anon_sym_LPAREN2] = ACTIONS(3505), - [anon_sym_TILDE] = ACTIONS(3505), - [anon_sym_STAR] = ACTIONS(3505), - [anon_sym_AMP_AMP] = ACTIONS(3505), - [anon_sym_AMP] = ACTIONS(3503), - [anon_sym___extension__] = ACTIONS(3503), - [anon_sym_typedef] = ACTIONS(3503), - [anon_sym_extern] = ACTIONS(3503), - [anon_sym___attribute__] = ACTIONS(3503), - [anon_sym_COLON_COLON] = ACTIONS(3505), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3505), - [anon_sym___declspec] = ACTIONS(3503), - [anon_sym___based] = ACTIONS(3503), - [anon_sym_signed] = ACTIONS(3503), - [anon_sym_unsigned] = ACTIONS(3503), - [anon_sym_long] = ACTIONS(3503), - [anon_sym_short] = ACTIONS(3503), - [anon_sym_LBRACK] = ACTIONS(3503), - [anon_sym_static] = ACTIONS(3503), - [anon_sym_register] = ACTIONS(3503), - [anon_sym_inline] = ACTIONS(3503), - [anon_sym___inline] = ACTIONS(3503), - [anon_sym___inline__] = ACTIONS(3503), - [anon_sym___forceinline] = ACTIONS(3503), - [anon_sym_thread_local] = ACTIONS(3503), - [anon_sym___thread] = ACTIONS(3503), - [anon_sym_const] = ACTIONS(3503), - [anon_sym_constexpr] = ACTIONS(3503), - [anon_sym_volatile] = ACTIONS(3503), - [anon_sym_restrict] = ACTIONS(3503), - [anon_sym___restrict__] = ACTIONS(3503), - [anon_sym__Atomic] = ACTIONS(3503), - [anon_sym__Noreturn] = ACTIONS(3503), - [anon_sym_noreturn] = ACTIONS(3503), - [anon_sym_mutable] = ACTIONS(3503), - [anon_sym_constinit] = ACTIONS(3503), - [anon_sym_consteval] = ACTIONS(3503), - [sym_primitive_type] = ACTIONS(3503), - [anon_sym_enum] = ACTIONS(3503), - [anon_sym_class] = ACTIONS(3503), - [anon_sym_struct] = ACTIONS(3503), - [anon_sym_union] = ACTIONS(3503), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3503), - [anon_sym_decltype] = ACTIONS(3503), - [anon_sym_virtual] = ACTIONS(3503), - [anon_sym_alignas] = ACTIONS(3503), - [anon_sym_explicit] = ACTIONS(3503), - [anon_sym_typename] = ACTIONS(3503), - [anon_sym_template] = ACTIONS(3503), - [anon_sym_operator] = ACTIONS(3503), - [anon_sym_friend] = ACTIONS(3503), - [anon_sym_public] = ACTIONS(3503), - [anon_sym_private] = ACTIONS(3503), - [anon_sym_protected] = ACTIONS(3503), - [anon_sym_using] = ACTIONS(3503), - [anon_sym_static_assert] = ACTIONS(3503), + [ts_builtin_sym_end] = ACTIONS(5423), + [sym_identifier] = ACTIONS(5421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5423), + [anon_sym_COMMA] = ACTIONS(5423), + [anon_sym_RPAREN] = ACTIONS(5423), + [anon_sym_LPAREN2] = ACTIONS(5423), + [anon_sym_DASH] = ACTIONS(5421), + [anon_sym_PLUS] = ACTIONS(5421), + [anon_sym_STAR] = ACTIONS(5423), + [anon_sym_SLASH] = ACTIONS(5421), + [anon_sym_PERCENT] = ACTIONS(5423), + [anon_sym_PIPE_PIPE] = ACTIONS(5423), + [anon_sym_AMP_AMP] = ACTIONS(5423), + [anon_sym_PIPE] = ACTIONS(5421), + [anon_sym_CARET] = ACTIONS(5423), + [anon_sym_AMP] = ACTIONS(5421), + [anon_sym_EQ_EQ] = ACTIONS(5423), + [anon_sym_BANG_EQ] = ACTIONS(5423), + [anon_sym_GT] = ACTIONS(5421), + [anon_sym_GT_EQ] = ACTIONS(5423), + [anon_sym_LT_EQ] = ACTIONS(5421), + [anon_sym_LT] = ACTIONS(5421), + [anon_sym_LT_LT] = ACTIONS(5423), + [anon_sym_GT_GT] = ACTIONS(5423), + [anon_sym_SEMI] = ACTIONS(5423), + [anon_sym___extension__] = ACTIONS(5421), + [anon_sym___attribute__] = ACTIONS(5421), + [anon_sym_COLON_COLON] = ACTIONS(5423), + [anon_sym___based] = ACTIONS(5421), + [anon_sym_LBRACE] = ACTIONS(5423), + [anon_sym_RBRACE] = ACTIONS(5423), + [anon_sym_signed] = ACTIONS(5421), + [anon_sym_unsigned] = ACTIONS(5421), + [anon_sym_long] = ACTIONS(5421), + [anon_sym_short] = ACTIONS(5421), + [anon_sym_LBRACK] = ACTIONS(5423), + [anon_sym_RBRACK] = ACTIONS(5423), + [anon_sym_const] = ACTIONS(5421), + [anon_sym_constexpr] = ACTIONS(5421), + [anon_sym_volatile] = ACTIONS(5421), + [anon_sym_restrict] = ACTIONS(5421), + [anon_sym___restrict__] = ACTIONS(5421), + [anon_sym__Atomic] = ACTIONS(5421), + [anon_sym__Noreturn] = ACTIONS(5421), + [anon_sym_noreturn] = ACTIONS(5421), + [anon_sym_mutable] = ACTIONS(5421), + [anon_sym_constinit] = ACTIONS(5421), + [anon_sym_consteval] = ACTIONS(5421), + [sym_primitive_type] = ACTIONS(5421), + [anon_sym_COLON] = ACTIONS(5421), + [anon_sym_QMARK] = ACTIONS(5423), + [anon_sym_LT_EQ_GT] = ACTIONS(5423), + [anon_sym_or] = ACTIONS(5421), + [anon_sym_and] = ACTIONS(5421), + [anon_sym_bitor] = ACTIONS(5421), + [anon_sym_xor] = ACTIONS(5421), + [anon_sym_bitand] = ACTIONS(5421), + [anon_sym_not_eq] = ACTIONS(5421), + [anon_sym_DASH_DASH] = ACTIONS(5423), + [anon_sym_PLUS_PLUS] = ACTIONS(5423), + [anon_sym_DOT] = ACTIONS(5421), + [anon_sym_DOT_STAR] = ACTIONS(5423), + [anon_sym_DASH_GT] = ACTIONS(5423), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5421), + [anon_sym_decltype] = ACTIONS(5421), + [anon_sym_final] = ACTIONS(5421), + [anon_sym_override] = ACTIONS(5421), + [anon_sym_requires] = ACTIONS(5421), }, [2057] = { - [sym_identifier] = ACTIONS(5949), - [aux_sym_preproc_def_token1] = ACTIONS(5949), - [aux_sym_preproc_if_token1] = ACTIONS(5949), - [aux_sym_preproc_if_token2] = ACTIONS(5949), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5949), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5949), - [aux_sym_preproc_else_token1] = ACTIONS(5949), - [aux_sym_preproc_elif_token1] = ACTIONS(5949), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5949), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5949), - [sym_preproc_directive] = ACTIONS(5949), - [anon_sym_LPAREN2] = ACTIONS(5951), - [anon_sym_TILDE] = ACTIONS(5951), - [anon_sym_STAR] = ACTIONS(5951), - [anon_sym_AMP_AMP] = ACTIONS(5951), - [anon_sym_AMP] = ACTIONS(5949), - [anon_sym___extension__] = ACTIONS(5949), - [anon_sym_typedef] = ACTIONS(5949), - [anon_sym_extern] = ACTIONS(5949), - [anon_sym___attribute__] = ACTIONS(5949), - [anon_sym_COLON_COLON] = ACTIONS(5951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5951), - [anon_sym___declspec] = ACTIONS(5949), - [anon_sym___based] = ACTIONS(5949), - [anon_sym_signed] = ACTIONS(5949), - [anon_sym_unsigned] = ACTIONS(5949), - [anon_sym_long] = ACTIONS(5949), - [anon_sym_short] = ACTIONS(5949), - [anon_sym_LBRACK] = ACTIONS(5949), - [anon_sym_static] = ACTIONS(5949), - [anon_sym_register] = ACTIONS(5949), - [anon_sym_inline] = ACTIONS(5949), - [anon_sym___inline] = ACTIONS(5949), - [anon_sym___inline__] = ACTIONS(5949), - [anon_sym___forceinline] = ACTIONS(5949), - [anon_sym_thread_local] = ACTIONS(5949), - [anon_sym___thread] = ACTIONS(5949), - [anon_sym_const] = ACTIONS(5949), - [anon_sym_constexpr] = ACTIONS(5949), - [anon_sym_volatile] = ACTIONS(5949), - [anon_sym_restrict] = ACTIONS(5949), - [anon_sym___restrict__] = ACTIONS(5949), - [anon_sym__Atomic] = ACTIONS(5949), - [anon_sym__Noreturn] = ACTIONS(5949), - [anon_sym_noreturn] = ACTIONS(5949), - [anon_sym_mutable] = ACTIONS(5949), - [anon_sym_constinit] = ACTIONS(5949), - [anon_sym_consteval] = ACTIONS(5949), - [sym_primitive_type] = ACTIONS(5949), - [anon_sym_enum] = ACTIONS(5949), - [anon_sym_class] = ACTIONS(5949), - [anon_sym_struct] = ACTIONS(5949), - [anon_sym_union] = ACTIONS(5949), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5949), - [anon_sym_decltype] = ACTIONS(5949), - [anon_sym_virtual] = ACTIONS(5949), - [anon_sym_alignas] = ACTIONS(5949), - [anon_sym_explicit] = ACTIONS(5949), - [anon_sym_typename] = ACTIONS(5949), - [anon_sym_template] = ACTIONS(5949), - [anon_sym_operator] = ACTIONS(5949), - [anon_sym_friend] = ACTIONS(5949), - [anon_sym_public] = ACTIONS(5949), - [anon_sym_private] = ACTIONS(5949), - [anon_sym_protected] = ACTIONS(5949), - [anon_sym_using] = ACTIONS(5949), - [anon_sym_static_assert] = ACTIONS(5949), + [sym_string_literal] = STATE(2729), + [sym_template_argument_list] = STATE(4089), + [sym_raw_string_literal] = STATE(2729), + [ts_builtin_sym_end] = ACTIONS(4765), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_RPAREN] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4765), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4773), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4773), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(5946), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_SEMI] = ACTIONS(4765), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_RBRACE] = ACTIONS(4765), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_EQ] = ACTIONS(4797), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4801), + [anon_sym_SLASH_EQ] = ACTIONS(4801), + [anon_sym_PERCENT_EQ] = ACTIONS(4801), + [anon_sym_PLUS_EQ] = ACTIONS(4801), + [anon_sym_DASH_EQ] = ACTIONS(4801), + [anon_sym_LT_LT_EQ] = ACTIONS(4801), + [anon_sym_GT_GT_EQ] = ACTIONS(4801), + [anon_sym_AMP_EQ] = ACTIONS(4801), + [anon_sym_CARET_EQ] = ACTIONS(4801), + [anon_sym_PIPE_EQ] = ACTIONS(4801), + [anon_sym_and_eq] = ACTIONS(4801), + [anon_sym_or_eq] = ACTIONS(4801), + [anon_sym_xor_eq] = ACTIONS(4801), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4765), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4765), + [anon_sym_not_eq] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), }, [2058] = { - [sym_identifier] = ACTIONS(3618), - [aux_sym_preproc_def_token1] = ACTIONS(3618), - [aux_sym_preproc_if_token1] = ACTIONS(3618), - [aux_sym_preproc_if_token2] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), - [aux_sym_preproc_else_token1] = ACTIONS(3618), - [aux_sym_preproc_elif_token1] = ACTIONS(3618), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3618), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3618), - [sym_preproc_directive] = ACTIONS(3618), - [anon_sym_LPAREN2] = ACTIONS(3620), - [anon_sym_TILDE] = ACTIONS(3620), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_AMP_AMP] = ACTIONS(3620), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym___extension__] = ACTIONS(3618), - [anon_sym_typedef] = ACTIONS(3618), - [anon_sym_extern] = ACTIONS(3618), - [anon_sym___attribute__] = ACTIONS(3618), - [anon_sym_COLON_COLON] = ACTIONS(3620), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), - [anon_sym___declspec] = ACTIONS(3618), - [anon_sym___based] = ACTIONS(3618), - [anon_sym_signed] = ACTIONS(3618), - [anon_sym_unsigned] = ACTIONS(3618), - [anon_sym_long] = ACTIONS(3618), - [anon_sym_short] = ACTIONS(3618), - [anon_sym_LBRACK] = ACTIONS(3618), - [anon_sym_static] = ACTIONS(3618), - [anon_sym_register] = ACTIONS(3618), - [anon_sym_inline] = ACTIONS(3618), - [anon_sym___inline] = ACTIONS(3618), - [anon_sym___inline__] = ACTIONS(3618), - [anon_sym___forceinline] = ACTIONS(3618), - [anon_sym_thread_local] = ACTIONS(3618), - [anon_sym___thread] = ACTIONS(3618), - [anon_sym_const] = ACTIONS(3618), - [anon_sym_constexpr] = ACTIONS(3618), - [anon_sym_volatile] = ACTIONS(3618), - [anon_sym_restrict] = ACTIONS(3618), - [anon_sym___restrict__] = ACTIONS(3618), - [anon_sym__Atomic] = ACTIONS(3618), - [anon_sym__Noreturn] = ACTIONS(3618), - [anon_sym_noreturn] = ACTIONS(3618), - [anon_sym_mutable] = ACTIONS(3618), - [anon_sym_constinit] = ACTIONS(3618), - [anon_sym_consteval] = ACTIONS(3618), - [sym_primitive_type] = ACTIONS(3618), - [anon_sym_enum] = ACTIONS(3618), - [anon_sym_class] = ACTIONS(3618), - [anon_sym_struct] = ACTIONS(3618), - [anon_sym_union] = ACTIONS(3618), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3618), - [anon_sym_decltype] = ACTIONS(3618), - [anon_sym_virtual] = ACTIONS(3618), - [anon_sym_alignas] = ACTIONS(3618), - [anon_sym_explicit] = ACTIONS(3618), - [anon_sym_typename] = ACTIONS(3618), - [anon_sym_template] = ACTIONS(3618), - [anon_sym_operator] = ACTIONS(3618), - [anon_sym_friend] = ACTIONS(3618), - [anon_sym_public] = ACTIONS(3618), - [anon_sym_private] = ACTIONS(3618), - [anon_sym_protected] = ACTIONS(3618), - [anon_sym_using] = ACTIONS(3618), - [anon_sym_static_assert] = ACTIONS(3618), + [ts_builtin_sym_end] = ACTIONS(5396), + [sym_identifier] = ACTIONS(5394), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5396), + [anon_sym_COMMA] = ACTIONS(5396), + [anon_sym_RPAREN] = ACTIONS(5396), + [anon_sym_LPAREN2] = ACTIONS(5396), + [anon_sym_DASH] = ACTIONS(5394), + [anon_sym_PLUS] = ACTIONS(5394), + [anon_sym_STAR] = ACTIONS(5396), + [anon_sym_SLASH] = ACTIONS(5394), + [anon_sym_PERCENT] = ACTIONS(5396), + [anon_sym_PIPE_PIPE] = ACTIONS(5396), + [anon_sym_AMP_AMP] = ACTIONS(5396), + [anon_sym_PIPE] = ACTIONS(5394), + [anon_sym_CARET] = ACTIONS(5396), + [anon_sym_AMP] = ACTIONS(5394), + [anon_sym_EQ_EQ] = ACTIONS(5396), + [anon_sym_BANG_EQ] = ACTIONS(5396), + [anon_sym_GT] = ACTIONS(5394), + [anon_sym_GT_EQ] = ACTIONS(5396), + [anon_sym_LT_EQ] = ACTIONS(5394), + [anon_sym_LT] = ACTIONS(5394), + [anon_sym_LT_LT] = ACTIONS(5396), + [anon_sym_GT_GT] = ACTIONS(5396), + [anon_sym_SEMI] = ACTIONS(5396), + [anon_sym___extension__] = ACTIONS(5394), + [anon_sym___attribute__] = ACTIONS(5394), + [anon_sym_COLON_COLON] = ACTIONS(5396), + [anon_sym___based] = ACTIONS(5394), + [anon_sym_LBRACE] = ACTIONS(5396), + [anon_sym_RBRACE] = ACTIONS(5396), + [anon_sym_signed] = ACTIONS(5394), + [anon_sym_unsigned] = ACTIONS(5394), + [anon_sym_long] = ACTIONS(5394), + [anon_sym_short] = ACTIONS(5394), + [anon_sym_LBRACK] = ACTIONS(5396), + [anon_sym_RBRACK] = ACTIONS(5396), + [anon_sym_const] = ACTIONS(5394), + [anon_sym_constexpr] = ACTIONS(5394), + [anon_sym_volatile] = ACTIONS(5394), + [anon_sym_restrict] = ACTIONS(5394), + [anon_sym___restrict__] = ACTIONS(5394), + [anon_sym__Atomic] = ACTIONS(5394), + [anon_sym__Noreturn] = ACTIONS(5394), + [anon_sym_noreturn] = ACTIONS(5394), + [anon_sym_mutable] = ACTIONS(5394), + [anon_sym_constinit] = ACTIONS(5394), + [anon_sym_consteval] = ACTIONS(5394), + [sym_primitive_type] = ACTIONS(5394), + [anon_sym_COLON] = ACTIONS(5394), + [anon_sym_QMARK] = ACTIONS(5396), + [anon_sym_LT_EQ_GT] = ACTIONS(5396), + [anon_sym_or] = ACTIONS(5394), + [anon_sym_and] = ACTIONS(5394), + [anon_sym_bitor] = ACTIONS(5394), + [anon_sym_xor] = ACTIONS(5394), + [anon_sym_bitand] = ACTIONS(5394), + [anon_sym_not_eq] = ACTIONS(5394), + [anon_sym_DASH_DASH] = ACTIONS(5396), + [anon_sym_PLUS_PLUS] = ACTIONS(5396), + [anon_sym_DOT] = ACTIONS(5394), + [anon_sym_DOT_STAR] = ACTIONS(5396), + [anon_sym_DASH_GT] = ACTIONS(5396), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5394), + [anon_sym_decltype] = ACTIONS(5394), + [anon_sym_final] = ACTIONS(5394), + [anon_sym_override] = ACTIONS(5394), + [anon_sym_requires] = ACTIONS(5394), }, [2059] = { - [sym_identifier] = ACTIONS(3622), - [aux_sym_preproc_def_token1] = ACTIONS(3622), - [aux_sym_preproc_if_token1] = ACTIONS(3622), - [aux_sym_preproc_if_token2] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), - [aux_sym_preproc_else_token1] = ACTIONS(3622), - [aux_sym_preproc_elif_token1] = ACTIONS(3622), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3622), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3622), - [sym_preproc_directive] = ACTIONS(3622), - [anon_sym_LPAREN2] = ACTIONS(3624), - [anon_sym_TILDE] = ACTIONS(3624), - [anon_sym_STAR] = ACTIONS(3624), - [anon_sym_AMP_AMP] = ACTIONS(3624), - [anon_sym_AMP] = ACTIONS(3622), - [anon_sym___extension__] = ACTIONS(3622), - [anon_sym_typedef] = ACTIONS(3622), - [anon_sym_extern] = ACTIONS(3622), - [anon_sym___attribute__] = ACTIONS(3622), - [anon_sym_COLON_COLON] = ACTIONS(3624), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), - [anon_sym___declspec] = ACTIONS(3622), - [anon_sym___based] = ACTIONS(3622), - [anon_sym_signed] = ACTIONS(3622), - [anon_sym_unsigned] = ACTIONS(3622), - [anon_sym_long] = ACTIONS(3622), - [anon_sym_short] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3622), - [anon_sym_static] = ACTIONS(3622), - [anon_sym_register] = ACTIONS(3622), - [anon_sym_inline] = ACTIONS(3622), - [anon_sym___inline] = ACTIONS(3622), - [anon_sym___inline__] = ACTIONS(3622), - [anon_sym___forceinline] = ACTIONS(3622), - [anon_sym_thread_local] = ACTIONS(3622), - [anon_sym___thread] = ACTIONS(3622), - [anon_sym_const] = ACTIONS(3622), - [anon_sym_constexpr] = ACTIONS(3622), - [anon_sym_volatile] = ACTIONS(3622), - [anon_sym_restrict] = ACTIONS(3622), - [anon_sym___restrict__] = ACTIONS(3622), - [anon_sym__Atomic] = ACTIONS(3622), - [anon_sym__Noreturn] = ACTIONS(3622), - [anon_sym_noreturn] = ACTIONS(3622), - [anon_sym_mutable] = ACTIONS(3622), - [anon_sym_constinit] = ACTIONS(3622), - [anon_sym_consteval] = ACTIONS(3622), - [sym_primitive_type] = ACTIONS(3622), - [anon_sym_enum] = ACTIONS(3622), - [anon_sym_class] = ACTIONS(3622), - [anon_sym_struct] = ACTIONS(3622), - [anon_sym_union] = ACTIONS(3622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3622), - [anon_sym_decltype] = ACTIONS(3622), - [anon_sym_virtual] = ACTIONS(3622), - [anon_sym_alignas] = ACTIONS(3622), - [anon_sym_explicit] = ACTIONS(3622), - [anon_sym_typename] = ACTIONS(3622), - [anon_sym_template] = ACTIONS(3622), - [anon_sym_operator] = ACTIONS(3622), - [anon_sym_friend] = ACTIONS(3622), - [anon_sym_public] = ACTIONS(3622), - [anon_sym_private] = ACTIONS(3622), - [anon_sym_protected] = ACTIONS(3622), - [anon_sym_using] = ACTIONS(3622), - [anon_sym_static_assert] = ACTIONS(3622), + [ts_builtin_sym_end] = ACTIONS(5400), + [sym_identifier] = ACTIONS(5398), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5400), + [anon_sym_COMMA] = ACTIONS(5400), + [anon_sym_RPAREN] = ACTIONS(5400), + [anon_sym_LPAREN2] = ACTIONS(5400), + [anon_sym_DASH] = ACTIONS(5398), + [anon_sym_PLUS] = ACTIONS(5398), + [anon_sym_STAR] = ACTIONS(5400), + [anon_sym_SLASH] = ACTIONS(5398), + [anon_sym_PERCENT] = ACTIONS(5400), + [anon_sym_PIPE_PIPE] = ACTIONS(5400), + [anon_sym_AMP_AMP] = ACTIONS(5400), + [anon_sym_PIPE] = ACTIONS(5398), + [anon_sym_CARET] = ACTIONS(5400), + [anon_sym_AMP] = ACTIONS(5398), + [anon_sym_EQ_EQ] = ACTIONS(5400), + [anon_sym_BANG_EQ] = ACTIONS(5400), + [anon_sym_GT] = ACTIONS(5398), + [anon_sym_GT_EQ] = ACTIONS(5400), + [anon_sym_LT_EQ] = ACTIONS(5398), + [anon_sym_LT] = ACTIONS(5398), + [anon_sym_LT_LT] = ACTIONS(5400), + [anon_sym_GT_GT] = ACTIONS(5400), + [anon_sym_SEMI] = ACTIONS(5400), + [anon_sym___extension__] = ACTIONS(5398), + [anon_sym___attribute__] = ACTIONS(5398), + [anon_sym_COLON_COLON] = ACTIONS(5400), + [anon_sym___based] = ACTIONS(5398), + [anon_sym_LBRACE] = ACTIONS(5400), + [anon_sym_RBRACE] = ACTIONS(5400), + [anon_sym_signed] = ACTIONS(5398), + [anon_sym_unsigned] = ACTIONS(5398), + [anon_sym_long] = ACTIONS(5398), + [anon_sym_short] = ACTIONS(5398), + [anon_sym_LBRACK] = ACTIONS(5400), + [anon_sym_RBRACK] = ACTIONS(5400), + [anon_sym_const] = ACTIONS(5398), + [anon_sym_constexpr] = ACTIONS(5398), + [anon_sym_volatile] = ACTIONS(5398), + [anon_sym_restrict] = ACTIONS(5398), + [anon_sym___restrict__] = ACTIONS(5398), + [anon_sym__Atomic] = ACTIONS(5398), + [anon_sym__Noreturn] = ACTIONS(5398), + [anon_sym_noreturn] = ACTIONS(5398), + [anon_sym_mutable] = ACTIONS(5398), + [anon_sym_constinit] = ACTIONS(5398), + [anon_sym_consteval] = ACTIONS(5398), + [sym_primitive_type] = ACTIONS(5398), + [anon_sym_COLON] = ACTIONS(5398), + [anon_sym_QMARK] = ACTIONS(5400), + [anon_sym_LT_EQ_GT] = ACTIONS(5400), + [anon_sym_or] = ACTIONS(5398), + [anon_sym_and] = ACTIONS(5398), + [anon_sym_bitor] = ACTIONS(5398), + [anon_sym_xor] = ACTIONS(5398), + [anon_sym_bitand] = ACTIONS(5398), + [anon_sym_not_eq] = ACTIONS(5398), + [anon_sym_DASH_DASH] = ACTIONS(5400), + [anon_sym_PLUS_PLUS] = ACTIONS(5400), + [anon_sym_DOT] = ACTIONS(5398), + [anon_sym_DOT_STAR] = ACTIONS(5400), + [anon_sym_DASH_GT] = ACTIONS(5400), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5398), + [anon_sym_decltype] = ACTIONS(5398), + [anon_sym_final] = ACTIONS(5398), + [anon_sym_override] = ACTIONS(5398), + [anon_sym_requires] = ACTIONS(5398), }, [2060] = { - [sym_identifier] = ACTIONS(3515), - [aux_sym_preproc_def_token1] = ACTIONS(3515), - [aux_sym_preproc_if_token1] = ACTIONS(3515), - [aux_sym_preproc_if_token2] = ACTIONS(3515), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3515), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3515), - [aux_sym_preproc_else_token1] = ACTIONS(3515), - [aux_sym_preproc_elif_token1] = ACTIONS(3515), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3515), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3515), - [sym_preproc_directive] = ACTIONS(3515), - [anon_sym_LPAREN2] = ACTIONS(3517), - [anon_sym_TILDE] = ACTIONS(3517), - [anon_sym_STAR] = ACTIONS(3517), - [anon_sym_AMP_AMP] = ACTIONS(3517), - [anon_sym_AMP] = ACTIONS(3515), - [anon_sym___extension__] = ACTIONS(3515), - [anon_sym_typedef] = ACTIONS(3515), - [anon_sym_extern] = ACTIONS(3515), - [anon_sym___attribute__] = ACTIONS(3515), - [anon_sym_COLON_COLON] = ACTIONS(3517), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3517), - [anon_sym___declspec] = ACTIONS(3515), - [anon_sym___based] = ACTIONS(3515), - [anon_sym_signed] = ACTIONS(3515), - [anon_sym_unsigned] = ACTIONS(3515), - [anon_sym_long] = ACTIONS(3515), - [anon_sym_short] = ACTIONS(3515), - [anon_sym_LBRACK] = ACTIONS(3515), - [anon_sym_static] = ACTIONS(3515), - [anon_sym_register] = ACTIONS(3515), - [anon_sym_inline] = ACTIONS(3515), - [anon_sym___inline] = ACTIONS(3515), - [anon_sym___inline__] = ACTIONS(3515), - [anon_sym___forceinline] = ACTIONS(3515), - [anon_sym_thread_local] = ACTIONS(3515), - [anon_sym___thread] = ACTIONS(3515), - [anon_sym_const] = ACTIONS(3515), - [anon_sym_constexpr] = ACTIONS(3515), - [anon_sym_volatile] = ACTIONS(3515), - [anon_sym_restrict] = ACTIONS(3515), - [anon_sym___restrict__] = ACTIONS(3515), - [anon_sym__Atomic] = ACTIONS(3515), - [anon_sym__Noreturn] = ACTIONS(3515), - [anon_sym_noreturn] = ACTIONS(3515), - [anon_sym_mutable] = ACTIONS(3515), - [anon_sym_constinit] = ACTIONS(3515), - [anon_sym_consteval] = ACTIONS(3515), - [sym_primitive_type] = ACTIONS(3515), - [anon_sym_enum] = ACTIONS(3515), - [anon_sym_class] = ACTIONS(3515), - [anon_sym_struct] = ACTIONS(3515), - [anon_sym_union] = ACTIONS(3515), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3515), - [anon_sym_decltype] = ACTIONS(3515), - [anon_sym_virtual] = ACTIONS(3515), - [anon_sym_alignas] = ACTIONS(3515), - [anon_sym_explicit] = ACTIONS(3515), - [anon_sym_typename] = ACTIONS(3515), - [anon_sym_template] = ACTIONS(3515), - [anon_sym_operator] = ACTIONS(3515), - [anon_sym_friend] = ACTIONS(3515), - [anon_sym_public] = ACTIONS(3515), - [anon_sym_private] = ACTIONS(3515), - [anon_sym_protected] = ACTIONS(3515), - [anon_sym_using] = ACTIONS(3515), - [anon_sym_static_assert] = ACTIONS(3515), + [sym_identifier] = ACTIONS(3631), + [aux_sym_preproc_def_token1] = ACTIONS(3631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3633), + [aux_sym_preproc_if_token1] = ACTIONS(3631), + [aux_sym_preproc_if_token2] = ACTIONS(3631), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3631), + [aux_sym_preproc_else_token1] = ACTIONS(3631), + [aux_sym_preproc_elif_token1] = ACTIONS(3631), + [sym_preproc_directive] = ACTIONS(3631), + [anon_sym_LPAREN2] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_STAR] = ACTIONS(3633), + [anon_sym_AMP_AMP] = ACTIONS(3633), + [anon_sym_AMP] = ACTIONS(3631), + [anon_sym___extension__] = ACTIONS(3631), + [anon_sym_typedef] = ACTIONS(3631), + [anon_sym_extern] = ACTIONS(3631), + [anon_sym___attribute__] = ACTIONS(3631), + [anon_sym_COLON_COLON] = ACTIONS(3633), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3633), + [anon_sym___declspec] = ACTIONS(3631), + [anon_sym___based] = ACTIONS(3631), + [anon_sym_signed] = ACTIONS(3631), + [anon_sym_unsigned] = ACTIONS(3631), + [anon_sym_long] = ACTIONS(3631), + [anon_sym_short] = ACTIONS(3631), + [anon_sym_LBRACK] = ACTIONS(3631), + [anon_sym_static] = ACTIONS(3631), + [anon_sym_register] = ACTIONS(3631), + [anon_sym_inline] = ACTIONS(3631), + [anon_sym___inline] = ACTIONS(3631), + [anon_sym___inline__] = ACTIONS(3631), + [anon_sym___forceinline] = ACTIONS(3631), + [anon_sym_thread_local] = ACTIONS(3631), + [anon_sym___thread] = ACTIONS(3631), + [anon_sym_const] = ACTIONS(3631), + [anon_sym_constexpr] = ACTIONS(3631), + [anon_sym_volatile] = ACTIONS(3631), + [anon_sym_restrict] = ACTIONS(3631), + [anon_sym___restrict__] = ACTIONS(3631), + [anon_sym__Atomic] = ACTIONS(3631), + [anon_sym__Noreturn] = ACTIONS(3631), + [anon_sym_noreturn] = ACTIONS(3631), + [anon_sym_mutable] = ACTIONS(3631), + [anon_sym_constinit] = ACTIONS(3631), + [anon_sym_consteval] = ACTIONS(3631), + [sym_primitive_type] = ACTIONS(3631), + [anon_sym_enum] = ACTIONS(3631), + [anon_sym_class] = ACTIONS(3631), + [anon_sym_struct] = ACTIONS(3631), + [anon_sym_union] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3631), + [anon_sym_decltype] = ACTIONS(3631), + [anon_sym_virtual] = ACTIONS(3631), + [anon_sym_alignas] = ACTIONS(3631), + [anon_sym_explicit] = ACTIONS(3631), + [anon_sym_typename] = ACTIONS(3631), + [anon_sym_template] = ACTIONS(3631), + [anon_sym_operator] = ACTIONS(3631), + [anon_sym_friend] = ACTIONS(3631), + [anon_sym_public] = ACTIONS(3631), + [anon_sym_private] = ACTIONS(3631), + [anon_sym_protected] = ACTIONS(3631), + [anon_sym_using] = ACTIONS(3631), + [anon_sym_static_assert] = ACTIONS(3631), + [sym_semgrep_metavar] = ACTIONS(3633), }, [2061] = { - [sym_identifier] = ACTIONS(3638), - [aux_sym_preproc_def_token1] = ACTIONS(3638), - [aux_sym_preproc_if_token1] = ACTIONS(3638), - [aux_sym_preproc_if_token2] = ACTIONS(3638), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3638), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3638), - [aux_sym_preproc_else_token1] = ACTIONS(3638), - [aux_sym_preproc_elif_token1] = ACTIONS(3638), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3638), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3638), - [sym_preproc_directive] = ACTIONS(3638), - [anon_sym_LPAREN2] = ACTIONS(3640), - [anon_sym_TILDE] = ACTIONS(3640), - [anon_sym_STAR] = ACTIONS(3640), - [anon_sym_AMP_AMP] = ACTIONS(3640), - [anon_sym_AMP] = ACTIONS(3638), - [anon_sym___extension__] = ACTIONS(3638), - [anon_sym_typedef] = ACTIONS(3638), - [anon_sym_extern] = ACTIONS(3638), - [anon_sym___attribute__] = ACTIONS(3638), - [anon_sym_COLON_COLON] = ACTIONS(3640), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3640), - [anon_sym___declspec] = ACTIONS(3638), - [anon_sym___based] = ACTIONS(3638), - [anon_sym_signed] = ACTIONS(3638), - [anon_sym_unsigned] = ACTIONS(3638), - [anon_sym_long] = ACTIONS(3638), - [anon_sym_short] = ACTIONS(3638), - [anon_sym_LBRACK] = ACTIONS(3638), - [anon_sym_static] = ACTIONS(3638), - [anon_sym_register] = ACTIONS(3638), - [anon_sym_inline] = ACTIONS(3638), - [anon_sym___inline] = ACTIONS(3638), - [anon_sym___inline__] = ACTIONS(3638), - [anon_sym___forceinline] = ACTIONS(3638), - [anon_sym_thread_local] = ACTIONS(3638), - [anon_sym___thread] = ACTIONS(3638), - [anon_sym_const] = ACTIONS(3638), - [anon_sym_constexpr] = ACTIONS(3638), - [anon_sym_volatile] = ACTIONS(3638), - [anon_sym_restrict] = ACTIONS(3638), - [anon_sym___restrict__] = ACTIONS(3638), - [anon_sym__Atomic] = ACTIONS(3638), - [anon_sym__Noreturn] = ACTIONS(3638), - [anon_sym_noreturn] = ACTIONS(3638), - [anon_sym_mutable] = ACTIONS(3638), - [anon_sym_constinit] = ACTIONS(3638), - [anon_sym_consteval] = ACTIONS(3638), - [sym_primitive_type] = ACTIONS(3638), - [anon_sym_enum] = ACTIONS(3638), - [anon_sym_class] = ACTIONS(3638), - [anon_sym_struct] = ACTIONS(3638), - [anon_sym_union] = ACTIONS(3638), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3638), - [anon_sym_decltype] = ACTIONS(3638), - [anon_sym_virtual] = ACTIONS(3638), - [anon_sym_alignas] = ACTIONS(3638), - [anon_sym_explicit] = ACTIONS(3638), - [anon_sym_typename] = ACTIONS(3638), - [anon_sym_template] = ACTIONS(3638), - [anon_sym_operator] = ACTIONS(3638), - [anon_sym_friend] = ACTIONS(3638), - [anon_sym_public] = ACTIONS(3638), - [anon_sym_private] = ACTIONS(3638), - [anon_sym_protected] = ACTIONS(3638), - [anon_sym_using] = ACTIONS(3638), - [anon_sym_static_assert] = ACTIONS(3638), + [sym_identifier] = ACTIONS(3533), + [aux_sym_preproc_def_token1] = ACTIONS(3533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3535), + [aux_sym_preproc_if_token1] = ACTIONS(3533), + [aux_sym_preproc_if_token2] = ACTIONS(3533), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3533), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3533), + [aux_sym_preproc_else_token1] = ACTIONS(3533), + [aux_sym_preproc_elif_token1] = ACTIONS(3533), + [sym_preproc_directive] = ACTIONS(3533), + [anon_sym_LPAREN2] = ACTIONS(3535), + [anon_sym_TILDE] = ACTIONS(3535), + [anon_sym_STAR] = ACTIONS(3535), + [anon_sym_AMP_AMP] = ACTIONS(3535), + [anon_sym_AMP] = ACTIONS(3533), + [anon_sym___extension__] = ACTIONS(3533), + [anon_sym_typedef] = ACTIONS(3533), + [anon_sym_extern] = ACTIONS(3533), + [anon_sym___attribute__] = ACTIONS(3533), + [anon_sym_COLON_COLON] = ACTIONS(3535), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3535), + [anon_sym___declspec] = ACTIONS(3533), + [anon_sym___based] = ACTIONS(3533), + [anon_sym_signed] = ACTIONS(3533), + [anon_sym_unsigned] = ACTIONS(3533), + [anon_sym_long] = ACTIONS(3533), + [anon_sym_short] = ACTIONS(3533), + [anon_sym_LBRACK] = ACTIONS(3533), + [anon_sym_static] = ACTIONS(3533), + [anon_sym_register] = ACTIONS(3533), + [anon_sym_inline] = ACTIONS(3533), + [anon_sym___inline] = ACTIONS(3533), + [anon_sym___inline__] = ACTIONS(3533), + [anon_sym___forceinline] = ACTIONS(3533), + [anon_sym_thread_local] = ACTIONS(3533), + [anon_sym___thread] = ACTIONS(3533), + [anon_sym_const] = ACTIONS(3533), + [anon_sym_constexpr] = ACTIONS(3533), + [anon_sym_volatile] = ACTIONS(3533), + [anon_sym_restrict] = ACTIONS(3533), + [anon_sym___restrict__] = ACTIONS(3533), + [anon_sym__Atomic] = ACTIONS(3533), + [anon_sym__Noreturn] = ACTIONS(3533), + [anon_sym_noreturn] = ACTIONS(3533), + [anon_sym_mutable] = ACTIONS(3533), + [anon_sym_constinit] = ACTIONS(3533), + [anon_sym_consteval] = ACTIONS(3533), + [sym_primitive_type] = ACTIONS(3533), + [anon_sym_enum] = ACTIONS(3533), + [anon_sym_class] = ACTIONS(3533), + [anon_sym_struct] = ACTIONS(3533), + [anon_sym_union] = ACTIONS(3533), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3533), + [anon_sym_decltype] = ACTIONS(3533), + [anon_sym_virtual] = ACTIONS(3533), + [anon_sym_alignas] = ACTIONS(3533), + [anon_sym_explicit] = ACTIONS(3533), + [anon_sym_typename] = ACTIONS(3533), + [anon_sym_template] = ACTIONS(3533), + [anon_sym_operator] = ACTIONS(3533), + [anon_sym_friend] = ACTIONS(3533), + [anon_sym_public] = ACTIONS(3533), + [anon_sym_private] = ACTIONS(3533), + [anon_sym_protected] = ACTIONS(3533), + [anon_sym_using] = ACTIONS(3533), + [anon_sym_static_assert] = ACTIONS(3533), + [sym_semgrep_metavar] = ACTIONS(3535), }, [2062] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6659), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4853), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(4837), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5548), - [anon_sym___extension__] = ACTIONS(65), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), + [sym_identifier] = ACTIONS(5781), + [aux_sym_preproc_def_token1] = ACTIONS(5781), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5783), + [aux_sym_preproc_if_token1] = ACTIONS(5781), + [aux_sym_preproc_if_token2] = ACTIONS(5781), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5781), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5781), + [aux_sym_preproc_else_token1] = ACTIONS(5781), + [aux_sym_preproc_elif_token1] = ACTIONS(5781), + [sym_preproc_directive] = ACTIONS(5781), + [anon_sym_LPAREN2] = ACTIONS(5783), + [anon_sym_TILDE] = ACTIONS(5783), + [anon_sym_STAR] = ACTIONS(5783), + [anon_sym_AMP_AMP] = ACTIONS(5783), + [anon_sym_AMP] = ACTIONS(5781), + [anon_sym___extension__] = ACTIONS(5781), + [anon_sym_typedef] = ACTIONS(5781), + [anon_sym_extern] = ACTIONS(5781), + [anon_sym___attribute__] = ACTIONS(5781), + [anon_sym_COLON_COLON] = ACTIONS(5783), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5783), + [anon_sym___declspec] = ACTIONS(5781), + [anon_sym___based] = ACTIONS(5781), + [anon_sym_signed] = ACTIONS(5781), + [anon_sym_unsigned] = ACTIONS(5781), + [anon_sym_long] = ACTIONS(5781), + [anon_sym_short] = ACTIONS(5781), + [anon_sym_LBRACK] = ACTIONS(5781), + [anon_sym_static] = ACTIONS(5781), + [anon_sym_register] = ACTIONS(5781), + [anon_sym_inline] = ACTIONS(5781), + [anon_sym___inline] = ACTIONS(5781), + [anon_sym___inline__] = ACTIONS(5781), + [anon_sym___forceinline] = ACTIONS(5781), + [anon_sym_thread_local] = ACTIONS(5781), + [anon_sym___thread] = ACTIONS(5781), + [anon_sym_const] = ACTIONS(5781), + [anon_sym_constexpr] = ACTIONS(5781), + [anon_sym_volatile] = ACTIONS(5781), + [anon_sym_restrict] = ACTIONS(5781), + [anon_sym___restrict__] = ACTIONS(5781), + [anon_sym__Atomic] = ACTIONS(5781), + [anon_sym__Noreturn] = ACTIONS(5781), + [anon_sym_noreturn] = ACTIONS(5781), + [anon_sym_mutable] = ACTIONS(5781), + [anon_sym_constinit] = ACTIONS(5781), + [anon_sym_consteval] = ACTIONS(5781), + [sym_primitive_type] = ACTIONS(5781), + [anon_sym_enum] = ACTIONS(5781), + [anon_sym_class] = ACTIONS(5781), + [anon_sym_struct] = ACTIONS(5781), + [anon_sym_union] = ACTIONS(5781), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5781), + [anon_sym_decltype] = ACTIONS(5781), + [anon_sym_virtual] = ACTIONS(5781), + [anon_sym_alignas] = ACTIONS(5781), + [anon_sym_explicit] = ACTIONS(5781), + [anon_sym_typename] = ACTIONS(5781), + [anon_sym_template] = ACTIONS(5781), + [anon_sym_operator] = ACTIONS(5781), + [anon_sym_friend] = ACTIONS(5781), + [anon_sym_public] = ACTIONS(5781), + [anon_sym_private] = ACTIONS(5781), + [anon_sym_protected] = ACTIONS(5781), + [anon_sym_using] = ACTIONS(5781), + [anon_sym_static_assert] = ACTIONS(5781), + [sym_semgrep_metavar] = ACTIONS(5783), }, [2063] = { - [sym_string_literal] = STATE(2019), - [sym_raw_string_literal] = STATE(2019), - [sym_identifier] = ACTIONS(4837), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [aux_sym_preproc_if_token2] = ACTIONS(4829), - [aux_sym_preproc_else_token1] = ACTIONS(4829), - [aux_sym_preproc_elif_token1] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(4829), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_EQ] = ACTIONS(4837), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4829), - [anon_sym_SLASH_EQ] = ACTIONS(4829), - [anon_sym_PERCENT_EQ] = ACTIONS(4829), - [anon_sym_PLUS_EQ] = ACTIONS(4829), - [anon_sym_DASH_EQ] = ACTIONS(4829), - [anon_sym_LT_LT_EQ] = ACTIONS(4829), - [anon_sym_GT_GT_EQ] = ACTIONS(4829), - [anon_sym_AMP_EQ] = ACTIONS(4829), - [anon_sym_CARET_EQ] = ACTIONS(4829), - [anon_sym_PIPE_EQ] = ACTIONS(4829), - [anon_sym_and_eq] = ACTIONS(4837), - [anon_sym_or_eq] = ACTIONS(4837), - [anon_sym_xor_eq] = ACTIONS(4837), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4837), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4837), - [anon_sym_not_eq] = ACTIONS(4837), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(2405), - [anon_sym_u_DQUOTE] = ACTIONS(2405), - [anon_sym_U_DQUOTE] = ACTIONS(2405), - [anon_sym_u8_DQUOTE] = ACTIONS(2405), - [anon_sym_DQUOTE] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(2413), - [anon_sym_LR_DQUOTE] = ACTIONS(2413), - [anon_sym_uR_DQUOTE] = ACTIONS(2413), - [anon_sym_UR_DQUOTE] = ACTIONS(2413), - [anon_sym_u8R_DQUOTE] = ACTIONS(2413), - [sym_literal_suffix] = ACTIONS(5953), + [sym_identifier] = ACTIONS(3541), + [aux_sym_preproc_def_token1] = ACTIONS(3541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3543), + [aux_sym_preproc_if_token1] = ACTIONS(3541), + [aux_sym_preproc_if_token2] = ACTIONS(3541), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3541), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3541), + [aux_sym_preproc_else_token1] = ACTIONS(3541), + [aux_sym_preproc_elif_token1] = ACTIONS(3541), + [sym_preproc_directive] = ACTIONS(3541), + [anon_sym_LPAREN2] = ACTIONS(3543), + [anon_sym_TILDE] = ACTIONS(3543), + [anon_sym_STAR] = ACTIONS(3543), + [anon_sym_AMP_AMP] = ACTIONS(3543), + [anon_sym_AMP] = ACTIONS(3541), + [anon_sym___extension__] = ACTIONS(3541), + [anon_sym_typedef] = ACTIONS(3541), + [anon_sym_extern] = ACTIONS(3541), + [anon_sym___attribute__] = ACTIONS(3541), + [anon_sym_COLON_COLON] = ACTIONS(3543), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3543), + [anon_sym___declspec] = ACTIONS(3541), + [anon_sym___based] = ACTIONS(3541), + [anon_sym_signed] = ACTIONS(3541), + [anon_sym_unsigned] = ACTIONS(3541), + [anon_sym_long] = ACTIONS(3541), + [anon_sym_short] = ACTIONS(3541), + [anon_sym_LBRACK] = ACTIONS(3541), + [anon_sym_static] = ACTIONS(3541), + [anon_sym_register] = ACTIONS(3541), + [anon_sym_inline] = ACTIONS(3541), + [anon_sym___inline] = ACTIONS(3541), + [anon_sym___inline__] = ACTIONS(3541), + [anon_sym___forceinline] = ACTIONS(3541), + [anon_sym_thread_local] = ACTIONS(3541), + [anon_sym___thread] = ACTIONS(3541), + [anon_sym_const] = ACTIONS(3541), + [anon_sym_constexpr] = ACTIONS(3541), + [anon_sym_volatile] = ACTIONS(3541), + [anon_sym_restrict] = ACTIONS(3541), + [anon_sym___restrict__] = ACTIONS(3541), + [anon_sym__Atomic] = ACTIONS(3541), + [anon_sym__Noreturn] = ACTIONS(3541), + [anon_sym_noreturn] = ACTIONS(3541), + [anon_sym_mutable] = ACTIONS(3541), + [anon_sym_constinit] = ACTIONS(3541), + [anon_sym_consteval] = ACTIONS(3541), + [sym_primitive_type] = ACTIONS(3541), + [anon_sym_enum] = ACTIONS(3541), + [anon_sym_class] = ACTIONS(3541), + [anon_sym_struct] = ACTIONS(3541), + [anon_sym_union] = ACTIONS(3541), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3541), + [anon_sym_decltype] = ACTIONS(3541), + [anon_sym_virtual] = ACTIONS(3541), + [anon_sym_alignas] = ACTIONS(3541), + [anon_sym_explicit] = ACTIONS(3541), + [anon_sym_typename] = ACTIONS(3541), + [anon_sym_template] = ACTIONS(3541), + [anon_sym_operator] = ACTIONS(3541), + [anon_sym_friend] = ACTIONS(3541), + [anon_sym_public] = ACTIONS(3541), + [anon_sym_private] = ACTIONS(3541), + [anon_sym_protected] = ACTIONS(3541), + [anon_sym_using] = ACTIONS(3541), + [anon_sym_static_assert] = ACTIONS(3541), + [sym_semgrep_metavar] = ACTIONS(3543), }, [2064] = { - [sym_string_literal] = STATE(2640), - [sym_template_argument_list] = STATE(5014), - [sym_raw_string_literal] = STATE(2640), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(4829), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(5764), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_EQ] = ACTIONS(4861), - [anon_sym_COLON] = ACTIONS(4922), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4865), - [anon_sym_SLASH_EQ] = ACTIONS(4865), - [anon_sym_PERCENT_EQ] = ACTIONS(4865), - [anon_sym_PLUS_EQ] = ACTIONS(4865), - [anon_sym_DASH_EQ] = ACTIONS(4865), - [anon_sym_LT_LT_EQ] = ACTIONS(4865), - [anon_sym_GT_GT_EQ] = ACTIONS(4865), - [anon_sym_AMP_EQ] = ACTIONS(4865), - [anon_sym_CARET_EQ] = ACTIONS(4865), - [anon_sym_PIPE_EQ] = ACTIONS(4865), - [anon_sym_and_eq] = ACTIONS(4865), - [anon_sym_or_eq] = ACTIONS(4865), - [anon_sym_xor_eq] = ACTIONS(4865), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4829), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4829), - [anon_sym_not_eq] = ACTIONS(4829), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), + [sym_identifier] = ACTIONS(3545), + [aux_sym_preproc_def_token1] = ACTIONS(3545), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3547), + [aux_sym_preproc_if_token1] = ACTIONS(3545), + [aux_sym_preproc_if_token2] = ACTIONS(3545), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3545), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3545), + [aux_sym_preproc_else_token1] = ACTIONS(3545), + [aux_sym_preproc_elif_token1] = ACTIONS(3545), + [sym_preproc_directive] = ACTIONS(3545), + [anon_sym_LPAREN2] = ACTIONS(3547), + [anon_sym_TILDE] = ACTIONS(3547), + [anon_sym_STAR] = ACTIONS(3547), + [anon_sym_AMP_AMP] = ACTIONS(3547), + [anon_sym_AMP] = ACTIONS(3545), + [anon_sym___extension__] = ACTIONS(3545), + [anon_sym_typedef] = ACTIONS(3545), + [anon_sym_extern] = ACTIONS(3545), + [anon_sym___attribute__] = ACTIONS(3545), + [anon_sym_COLON_COLON] = ACTIONS(3547), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3547), + [anon_sym___declspec] = ACTIONS(3545), + [anon_sym___based] = ACTIONS(3545), + [anon_sym_signed] = ACTIONS(3545), + [anon_sym_unsigned] = ACTIONS(3545), + [anon_sym_long] = ACTIONS(3545), + [anon_sym_short] = ACTIONS(3545), + [anon_sym_LBRACK] = ACTIONS(3545), + [anon_sym_static] = ACTIONS(3545), + [anon_sym_register] = ACTIONS(3545), + [anon_sym_inline] = ACTIONS(3545), + [anon_sym___inline] = ACTIONS(3545), + [anon_sym___inline__] = ACTIONS(3545), + [anon_sym___forceinline] = ACTIONS(3545), + [anon_sym_thread_local] = ACTIONS(3545), + [anon_sym___thread] = ACTIONS(3545), + [anon_sym_const] = ACTIONS(3545), + [anon_sym_constexpr] = ACTIONS(3545), + [anon_sym_volatile] = ACTIONS(3545), + [anon_sym_restrict] = ACTIONS(3545), + [anon_sym___restrict__] = ACTIONS(3545), + [anon_sym__Atomic] = ACTIONS(3545), + [anon_sym__Noreturn] = ACTIONS(3545), + [anon_sym_noreturn] = ACTIONS(3545), + [anon_sym_mutable] = ACTIONS(3545), + [anon_sym_constinit] = ACTIONS(3545), + [anon_sym_consteval] = ACTIONS(3545), + [sym_primitive_type] = ACTIONS(3545), + [anon_sym_enum] = ACTIONS(3545), + [anon_sym_class] = ACTIONS(3545), + [anon_sym_struct] = ACTIONS(3545), + [anon_sym_union] = ACTIONS(3545), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3545), + [anon_sym_decltype] = ACTIONS(3545), + [anon_sym_virtual] = ACTIONS(3545), + [anon_sym_alignas] = ACTIONS(3545), + [anon_sym_explicit] = ACTIONS(3545), + [anon_sym_typename] = ACTIONS(3545), + [anon_sym_template] = ACTIONS(3545), + [anon_sym_operator] = ACTIONS(3545), + [anon_sym_friend] = ACTIONS(3545), + [anon_sym_public] = ACTIONS(3545), + [anon_sym_private] = ACTIONS(3545), + [anon_sym_protected] = ACTIONS(3545), + [anon_sym_using] = ACTIONS(3545), + [anon_sym_static_assert] = ACTIONS(3545), + [sym_semgrep_metavar] = ACTIONS(3547), }, [2065] = { - [sym_catch_clause] = STATE(2117), - [aux_sym_constructor_try_statement_repeat1] = STATE(2117), - [sym_identifier] = ACTIONS(3074), - [aux_sym_preproc_def_token1] = ACTIONS(3074), - [aux_sym_preproc_if_token1] = ACTIONS(3074), - [aux_sym_preproc_if_token2] = ACTIONS(3074), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3074), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3074), - [sym_preproc_directive] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3076), - [anon_sym_TILDE] = ACTIONS(3076), - [anon_sym_STAR] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym___extension__] = ACTIONS(3074), - [anon_sym_typedef] = ACTIONS(3074), - [anon_sym_extern] = ACTIONS(3074), - [anon_sym___attribute__] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3076), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3076), - [anon_sym___declspec] = ACTIONS(3074), - [anon_sym___based] = ACTIONS(3074), - [anon_sym_signed] = ACTIONS(3074), - [anon_sym_unsigned] = ACTIONS(3074), - [anon_sym_long] = ACTIONS(3074), - [anon_sym_short] = ACTIONS(3074), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_static] = ACTIONS(3074), - [anon_sym_register] = ACTIONS(3074), - [anon_sym_inline] = ACTIONS(3074), - [anon_sym___inline] = ACTIONS(3074), - [anon_sym___inline__] = ACTIONS(3074), - [anon_sym___forceinline] = ACTIONS(3074), - [anon_sym_thread_local] = ACTIONS(3074), - [anon_sym___thread] = ACTIONS(3074), - [anon_sym_const] = ACTIONS(3074), - [anon_sym_constexpr] = ACTIONS(3074), - [anon_sym_volatile] = ACTIONS(3074), - [anon_sym_restrict] = ACTIONS(3074), - [anon_sym___restrict__] = ACTIONS(3074), - [anon_sym__Atomic] = ACTIONS(3074), - [anon_sym__Noreturn] = ACTIONS(3074), - [anon_sym_noreturn] = ACTIONS(3074), - [anon_sym_mutable] = ACTIONS(3074), - [anon_sym_constinit] = ACTIONS(3074), - [anon_sym_consteval] = ACTIONS(3074), - [sym_primitive_type] = ACTIONS(3074), - [anon_sym_enum] = ACTIONS(3074), - [anon_sym_class] = ACTIONS(3074), - [anon_sym_struct] = ACTIONS(3074), - [anon_sym_union] = ACTIONS(3074), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3074), - [anon_sym_decltype] = ACTIONS(3074), - [anon_sym_virtual] = ACTIONS(3074), - [anon_sym_alignas] = ACTIONS(3074), - [anon_sym_explicit] = ACTIONS(3074), - [anon_sym_typename] = ACTIONS(3074), - [anon_sym_template] = ACTIONS(3074), - [anon_sym_operator] = ACTIONS(3074), - [anon_sym_friend] = ACTIONS(3074), - [anon_sym_public] = ACTIONS(3074), - [anon_sym_private] = ACTIONS(3074), - [anon_sym_protected] = ACTIONS(3074), - [anon_sym_using] = ACTIONS(3074), - [anon_sym_static_assert] = ACTIONS(3074), - [anon_sym_catch] = ACTIONS(5955), + [sym_identifier] = ACTIONS(3551), + [aux_sym_preproc_def_token1] = ACTIONS(3551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3553), + [aux_sym_preproc_if_token1] = ACTIONS(3551), + [aux_sym_preproc_if_token2] = ACTIONS(3551), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3551), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3551), + [aux_sym_preproc_else_token1] = ACTIONS(3551), + [aux_sym_preproc_elif_token1] = ACTIONS(3551), + [sym_preproc_directive] = ACTIONS(3551), + [anon_sym_LPAREN2] = ACTIONS(3553), + [anon_sym_TILDE] = ACTIONS(3553), + [anon_sym_STAR] = ACTIONS(3553), + [anon_sym_AMP_AMP] = ACTIONS(3553), + [anon_sym_AMP] = ACTIONS(3551), + [anon_sym___extension__] = ACTIONS(3551), + [anon_sym_typedef] = ACTIONS(3551), + [anon_sym_extern] = ACTIONS(3551), + [anon_sym___attribute__] = ACTIONS(3551), + [anon_sym_COLON_COLON] = ACTIONS(3553), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3553), + [anon_sym___declspec] = ACTIONS(3551), + [anon_sym___based] = ACTIONS(3551), + [anon_sym_signed] = ACTIONS(3551), + [anon_sym_unsigned] = ACTIONS(3551), + [anon_sym_long] = ACTIONS(3551), + [anon_sym_short] = ACTIONS(3551), + [anon_sym_LBRACK] = ACTIONS(3551), + [anon_sym_static] = ACTIONS(3551), + [anon_sym_register] = ACTIONS(3551), + [anon_sym_inline] = ACTIONS(3551), + [anon_sym___inline] = ACTIONS(3551), + [anon_sym___inline__] = ACTIONS(3551), + [anon_sym___forceinline] = ACTIONS(3551), + [anon_sym_thread_local] = ACTIONS(3551), + [anon_sym___thread] = ACTIONS(3551), + [anon_sym_const] = ACTIONS(3551), + [anon_sym_constexpr] = ACTIONS(3551), + [anon_sym_volatile] = ACTIONS(3551), + [anon_sym_restrict] = ACTIONS(3551), + [anon_sym___restrict__] = ACTIONS(3551), + [anon_sym__Atomic] = ACTIONS(3551), + [anon_sym__Noreturn] = ACTIONS(3551), + [anon_sym_noreturn] = ACTIONS(3551), + [anon_sym_mutable] = ACTIONS(3551), + [anon_sym_constinit] = ACTIONS(3551), + [anon_sym_consteval] = ACTIONS(3551), + [sym_primitive_type] = ACTIONS(3551), + [anon_sym_enum] = ACTIONS(3551), + [anon_sym_class] = ACTIONS(3551), + [anon_sym_struct] = ACTIONS(3551), + [anon_sym_union] = ACTIONS(3551), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3551), + [anon_sym_decltype] = ACTIONS(3551), + [anon_sym_virtual] = ACTIONS(3551), + [anon_sym_alignas] = ACTIONS(3551), + [anon_sym_explicit] = ACTIONS(3551), + [anon_sym_typename] = ACTIONS(3551), + [anon_sym_template] = ACTIONS(3551), + [anon_sym_operator] = ACTIONS(3551), + [anon_sym_friend] = ACTIONS(3551), + [anon_sym_public] = ACTIONS(3551), + [anon_sym_private] = ACTIONS(3551), + [anon_sym_protected] = ACTIONS(3551), + [anon_sym_using] = ACTIONS(3551), + [anon_sym_static_assert] = ACTIONS(3551), + [sym_semgrep_metavar] = ACTIONS(3553), }, [2066] = { - [ts_builtin_sym_end] = ACTIONS(5669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5669), - [anon_sym_COMMA] = ACTIONS(5669), - [anon_sym_RPAREN] = ACTIONS(5669), - [anon_sym_LPAREN2] = ACTIONS(5669), - [anon_sym_DASH] = ACTIONS(5671), - [anon_sym_PLUS] = ACTIONS(5671), - [anon_sym_STAR] = ACTIONS(5671), - [anon_sym_SLASH] = ACTIONS(5671), - [anon_sym_PERCENT] = ACTIONS(5671), - [anon_sym_PIPE_PIPE] = ACTIONS(5669), - [anon_sym_AMP_AMP] = ACTIONS(5669), - [anon_sym_PIPE] = ACTIONS(5671), - [anon_sym_CARET] = ACTIONS(5671), - [anon_sym_AMP] = ACTIONS(5671), - [anon_sym_EQ_EQ] = ACTIONS(5669), - [anon_sym_BANG_EQ] = ACTIONS(5669), - [anon_sym_GT] = ACTIONS(5671), - [anon_sym_GT_EQ] = ACTIONS(5669), - [anon_sym_LT_EQ] = ACTIONS(5671), - [anon_sym_LT] = ACTIONS(5671), - [anon_sym_LT_LT] = ACTIONS(5671), - [anon_sym_GT_GT] = ACTIONS(5671), - [anon_sym_SEMI] = ACTIONS(5669), - [anon_sym_RBRACE] = ACTIONS(5669), - [anon_sym_LBRACK] = ACTIONS(5669), - [anon_sym_RBRACK] = ACTIONS(5669), - [anon_sym_EQ] = ACTIONS(5671), - [anon_sym_COLON] = ACTIONS(5669), - [anon_sym_QMARK] = ACTIONS(5669), - [anon_sym_STAR_EQ] = ACTIONS(5669), - [anon_sym_SLASH_EQ] = ACTIONS(5669), - [anon_sym_PERCENT_EQ] = ACTIONS(5669), - [anon_sym_PLUS_EQ] = ACTIONS(5669), - [anon_sym_DASH_EQ] = ACTIONS(5669), - [anon_sym_LT_LT_EQ] = ACTIONS(5669), - [anon_sym_GT_GT_EQ] = ACTIONS(5669), - [anon_sym_AMP_EQ] = ACTIONS(5669), - [anon_sym_CARET_EQ] = ACTIONS(5669), - [anon_sym_PIPE_EQ] = ACTIONS(5669), - [anon_sym_and_eq] = ACTIONS(5671), - [anon_sym_or_eq] = ACTIONS(5671), - [anon_sym_xor_eq] = ACTIONS(5671), - [anon_sym_LT_EQ_GT] = ACTIONS(5669), - [anon_sym_or] = ACTIONS(5671), - [anon_sym_and] = ACTIONS(5671), - [anon_sym_bitor] = ACTIONS(5671), - [anon_sym_xor] = ACTIONS(5671), - [anon_sym_bitand] = ACTIONS(5671), - [anon_sym_not_eq] = ACTIONS(5671), - [anon_sym_DASH_DASH] = ACTIONS(5669), - [anon_sym_PLUS_PLUS] = ACTIONS(5669), - [anon_sym_DOT] = ACTIONS(5671), - [anon_sym_DOT_STAR] = ACTIONS(5669), - [anon_sym_DASH_GT] = ACTIONS(5669), - [anon_sym_L_DQUOTE] = ACTIONS(5669), - [anon_sym_u_DQUOTE] = ACTIONS(5669), - [anon_sym_U_DQUOTE] = ACTIONS(5669), - [anon_sym_u8_DQUOTE] = ACTIONS(5669), - [anon_sym_DQUOTE] = ACTIONS(5669), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5669), - [anon_sym_LR_DQUOTE] = ACTIONS(5669), - [anon_sym_uR_DQUOTE] = ACTIONS(5669), - [anon_sym_UR_DQUOTE] = ACTIONS(5669), - [anon_sym_u8R_DQUOTE] = ACTIONS(5669), - [sym_literal_suffix] = ACTIONS(5671), + [sym_identifier] = ACTIONS(3294), + [aux_sym_preproc_def_token1] = ACTIONS(3294), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3296), + [aux_sym_preproc_if_token1] = ACTIONS(3294), + [aux_sym_preproc_if_token2] = ACTIONS(3294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3294), + [aux_sym_preproc_else_token1] = ACTIONS(3294), + [aux_sym_preproc_elif_token1] = ACTIONS(3294), + [sym_preproc_directive] = ACTIONS(3294), + [anon_sym_LPAREN2] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_AMP] = ACTIONS(3294), + [anon_sym___extension__] = ACTIONS(3294), + [anon_sym_typedef] = ACTIONS(3294), + [anon_sym_extern] = ACTIONS(3294), + [anon_sym___attribute__] = ACTIONS(3294), + [anon_sym_COLON_COLON] = ACTIONS(3296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3296), + [anon_sym___declspec] = ACTIONS(3294), + [anon_sym___based] = ACTIONS(3294), + [anon_sym_signed] = ACTIONS(3294), + [anon_sym_unsigned] = ACTIONS(3294), + [anon_sym_long] = ACTIONS(3294), + [anon_sym_short] = ACTIONS(3294), + [anon_sym_LBRACK] = ACTIONS(3294), + [anon_sym_static] = ACTIONS(3294), + [anon_sym_register] = ACTIONS(3294), + [anon_sym_inline] = ACTIONS(3294), + [anon_sym___inline] = ACTIONS(3294), + [anon_sym___inline__] = ACTIONS(3294), + [anon_sym___forceinline] = ACTIONS(3294), + [anon_sym_thread_local] = ACTIONS(3294), + [anon_sym___thread] = ACTIONS(3294), + [anon_sym_const] = ACTIONS(3294), + [anon_sym_constexpr] = ACTIONS(3294), + [anon_sym_volatile] = ACTIONS(3294), + [anon_sym_restrict] = ACTIONS(3294), + [anon_sym___restrict__] = ACTIONS(3294), + [anon_sym__Atomic] = ACTIONS(3294), + [anon_sym__Noreturn] = ACTIONS(3294), + [anon_sym_noreturn] = ACTIONS(3294), + [anon_sym_mutable] = ACTIONS(3294), + [anon_sym_constinit] = ACTIONS(3294), + [anon_sym_consteval] = ACTIONS(3294), + [sym_primitive_type] = ACTIONS(3294), + [anon_sym_enum] = ACTIONS(3294), + [anon_sym_class] = ACTIONS(3294), + [anon_sym_struct] = ACTIONS(3294), + [anon_sym_union] = ACTIONS(3294), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3294), + [anon_sym_decltype] = ACTIONS(3294), + [anon_sym_virtual] = ACTIONS(3294), + [anon_sym_alignas] = ACTIONS(3294), + [anon_sym_explicit] = ACTIONS(3294), + [anon_sym_typename] = ACTIONS(3294), + [anon_sym_template] = ACTIONS(3294), + [anon_sym_operator] = ACTIONS(3294), + [anon_sym_friend] = ACTIONS(3294), + [anon_sym_public] = ACTIONS(3294), + [anon_sym_private] = ACTIONS(3294), + [anon_sym_protected] = ACTIONS(3294), + [anon_sym_using] = ACTIONS(3294), + [anon_sym_static_assert] = ACTIONS(3294), + [sym_semgrep_metavar] = ACTIONS(3296), }, [2067] = { - [ts_builtin_sym_end] = ACTIONS(5681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5681), - [anon_sym_COMMA] = ACTIONS(5681), - [anon_sym_RPAREN] = ACTIONS(5681), - [anon_sym_LPAREN2] = ACTIONS(5681), - [anon_sym_DASH] = ACTIONS(5683), - [anon_sym_PLUS] = ACTIONS(5683), - [anon_sym_STAR] = ACTIONS(5683), - [anon_sym_SLASH] = ACTIONS(5683), - [anon_sym_PERCENT] = ACTIONS(5683), - [anon_sym_PIPE_PIPE] = ACTIONS(5681), - [anon_sym_AMP_AMP] = ACTIONS(5681), - [anon_sym_PIPE] = ACTIONS(5683), - [anon_sym_CARET] = ACTIONS(5683), - [anon_sym_AMP] = ACTIONS(5683), - [anon_sym_EQ_EQ] = ACTIONS(5681), - [anon_sym_BANG_EQ] = ACTIONS(5681), - [anon_sym_GT] = ACTIONS(5683), - [anon_sym_GT_EQ] = ACTIONS(5681), - [anon_sym_LT_EQ] = ACTIONS(5683), - [anon_sym_LT] = ACTIONS(5683), - [anon_sym_LT_LT] = ACTIONS(5683), - [anon_sym_GT_GT] = ACTIONS(5683), - [anon_sym_SEMI] = ACTIONS(5681), - [anon_sym_RBRACE] = ACTIONS(5681), - [anon_sym_LBRACK] = ACTIONS(5681), - [anon_sym_RBRACK] = ACTIONS(5681), - [anon_sym_EQ] = ACTIONS(5683), - [anon_sym_COLON] = ACTIONS(5681), - [anon_sym_QMARK] = ACTIONS(5681), - [anon_sym_STAR_EQ] = ACTIONS(5681), - [anon_sym_SLASH_EQ] = ACTIONS(5681), - [anon_sym_PERCENT_EQ] = ACTIONS(5681), - [anon_sym_PLUS_EQ] = ACTIONS(5681), - [anon_sym_DASH_EQ] = ACTIONS(5681), - [anon_sym_LT_LT_EQ] = ACTIONS(5681), - [anon_sym_GT_GT_EQ] = ACTIONS(5681), - [anon_sym_AMP_EQ] = ACTIONS(5681), - [anon_sym_CARET_EQ] = ACTIONS(5681), - [anon_sym_PIPE_EQ] = ACTIONS(5681), - [anon_sym_and_eq] = ACTIONS(5683), - [anon_sym_or_eq] = ACTIONS(5683), - [anon_sym_xor_eq] = ACTIONS(5683), - [anon_sym_LT_EQ_GT] = ACTIONS(5681), - [anon_sym_or] = ACTIONS(5683), - [anon_sym_and] = ACTIONS(5683), - [anon_sym_bitor] = ACTIONS(5683), - [anon_sym_xor] = ACTIONS(5683), - [anon_sym_bitand] = ACTIONS(5683), - [anon_sym_not_eq] = ACTIONS(5683), - [anon_sym_DASH_DASH] = ACTIONS(5681), - [anon_sym_PLUS_PLUS] = ACTIONS(5681), - [anon_sym_DOT] = ACTIONS(5683), - [anon_sym_DOT_STAR] = ACTIONS(5681), - [anon_sym_DASH_GT] = ACTIONS(5681), - [anon_sym_L_DQUOTE] = ACTIONS(5681), - [anon_sym_u_DQUOTE] = ACTIONS(5681), - [anon_sym_U_DQUOTE] = ACTIONS(5681), - [anon_sym_u8_DQUOTE] = ACTIONS(5681), - [anon_sym_DQUOTE] = ACTIONS(5681), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5681), - [anon_sym_LR_DQUOTE] = ACTIONS(5681), - [anon_sym_uR_DQUOTE] = ACTIONS(5681), - [anon_sym_UR_DQUOTE] = ACTIONS(5681), - [anon_sym_u8R_DQUOTE] = ACTIONS(5681), - [sym_literal_suffix] = ACTIONS(5683), + [sym_identifier] = ACTIONS(3302), + [aux_sym_preproc_def_token1] = ACTIONS(3302), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3304), + [aux_sym_preproc_if_token1] = ACTIONS(3302), + [aux_sym_preproc_if_token2] = ACTIONS(3302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3302), + [aux_sym_preproc_else_token1] = ACTIONS(3302), + [aux_sym_preproc_elif_token1] = ACTIONS(3302), + [sym_preproc_directive] = ACTIONS(3302), + [anon_sym_LPAREN2] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3304), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_AMP_AMP] = ACTIONS(3304), + [anon_sym_AMP] = ACTIONS(3302), + [anon_sym___extension__] = ACTIONS(3302), + [anon_sym_typedef] = ACTIONS(3302), + [anon_sym_extern] = ACTIONS(3302), + [anon_sym___attribute__] = ACTIONS(3302), + [anon_sym_COLON_COLON] = ACTIONS(3304), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3304), + [anon_sym___declspec] = ACTIONS(3302), + [anon_sym___based] = ACTIONS(3302), + [anon_sym_signed] = ACTIONS(3302), + [anon_sym_unsigned] = ACTIONS(3302), + [anon_sym_long] = ACTIONS(3302), + [anon_sym_short] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_register] = ACTIONS(3302), + [anon_sym_inline] = ACTIONS(3302), + [anon_sym___inline] = ACTIONS(3302), + [anon_sym___inline__] = ACTIONS(3302), + [anon_sym___forceinline] = ACTIONS(3302), + [anon_sym_thread_local] = ACTIONS(3302), + [anon_sym___thread] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_constexpr] = ACTIONS(3302), + [anon_sym_volatile] = ACTIONS(3302), + [anon_sym_restrict] = ACTIONS(3302), + [anon_sym___restrict__] = ACTIONS(3302), + [anon_sym__Atomic] = ACTIONS(3302), + [anon_sym__Noreturn] = ACTIONS(3302), + [anon_sym_noreturn] = ACTIONS(3302), + [anon_sym_mutable] = ACTIONS(3302), + [anon_sym_constinit] = ACTIONS(3302), + [anon_sym_consteval] = ACTIONS(3302), + [sym_primitive_type] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_struct] = ACTIONS(3302), + [anon_sym_union] = ACTIONS(3302), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3302), + [anon_sym_decltype] = ACTIONS(3302), + [anon_sym_virtual] = ACTIONS(3302), + [anon_sym_alignas] = ACTIONS(3302), + [anon_sym_explicit] = ACTIONS(3302), + [anon_sym_typename] = ACTIONS(3302), + [anon_sym_template] = ACTIONS(3302), + [anon_sym_operator] = ACTIONS(3302), + [anon_sym_friend] = ACTIONS(3302), + [anon_sym_public] = ACTIONS(3302), + [anon_sym_private] = ACTIONS(3302), + [anon_sym_protected] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_static_assert] = ACTIONS(3302), + [sym_semgrep_metavar] = ACTIONS(3304), }, [2068] = { - [sym_template_argument_list] = STATE(6753), - [aux_sym_sized_type_specifier_repeat1] = STATE(2229), - [sym_identifier] = ACTIONS(5957), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5959), - [anon_sym_COMMA] = ACTIONS(5959), - [aux_sym_preproc_if_token2] = ACTIONS(5959), - [aux_sym_preproc_else_token1] = ACTIONS(5959), - [aux_sym_preproc_elif_token1] = ACTIONS(5957), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5959), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5959), - [anon_sym_LPAREN2] = ACTIONS(5959), - [anon_sym_DASH] = ACTIONS(5957), - [anon_sym_PLUS] = ACTIONS(5957), - [anon_sym_STAR] = ACTIONS(5957), - [anon_sym_SLASH] = ACTIONS(5957), - [anon_sym_PERCENT] = ACTIONS(5957), - [anon_sym_PIPE_PIPE] = ACTIONS(5959), - [anon_sym_AMP_AMP] = ACTIONS(5959), - [anon_sym_PIPE] = ACTIONS(5957), - [anon_sym_CARET] = ACTIONS(5957), - [anon_sym_AMP] = ACTIONS(5957), - [anon_sym_EQ_EQ] = ACTIONS(5959), - [anon_sym_BANG_EQ] = ACTIONS(5959), - [anon_sym_GT] = ACTIONS(5957), - [anon_sym_GT_EQ] = ACTIONS(5959), - [anon_sym_LT_EQ] = ACTIONS(5957), - [anon_sym_LT] = ACTIONS(5957), - [anon_sym_LT_LT] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5957), - [anon_sym___attribute__] = ACTIONS(5957), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(5959), - [anon_sym_signed] = ACTIONS(5961), - [anon_sym_unsigned] = ACTIONS(5961), - [anon_sym_long] = ACTIONS(5961), - [anon_sym_short] = ACTIONS(5961), - [anon_sym_LBRACK] = ACTIONS(5959), - [anon_sym_EQ] = ACTIONS(5957), - [anon_sym_QMARK] = ACTIONS(5959), - [anon_sym_STAR_EQ] = ACTIONS(5959), - [anon_sym_SLASH_EQ] = ACTIONS(5959), - [anon_sym_PERCENT_EQ] = ACTIONS(5959), - [anon_sym_PLUS_EQ] = ACTIONS(5959), - [anon_sym_DASH_EQ] = ACTIONS(5959), - [anon_sym_LT_LT_EQ] = ACTIONS(5959), - [anon_sym_GT_GT_EQ] = ACTIONS(5959), - [anon_sym_AMP_EQ] = ACTIONS(5959), - [anon_sym_CARET_EQ] = ACTIONS(5959), - [anon_sym_PIPE_EQ] = ACTIONS(5959), - [anon_sym_and_eq] = ACTIONS(5957), - [anon_sym_or_eq] = ACTIONS(5957), - [anon_sym_xor_eq] = ACTIONS(5957), - [anon_sym_LT_EQ_GT] = ACTIONS(5959), - [anon_sym_or] = ACTIONS(5957), - [anon_sym_and] = ACTIONS(5957), - [anon_sym_bitor] = ACTIONS(5957), - [anon_sym_xor] = ACTIONS(5957), - [anon_sym_bitand] = ACTIONS(5957), - [anon_sym_not_eq] = ACTIONS(5957), - [anon_sym_DASH_DASH] = ACTIONS(5959), - [anon_sym_PLUS_PLUS] = ACTIONS(5959), - [anon_sym_DOT] = ACTIONS(5957), - [anon_sym_DOT_STAR] = ACTIONS(5959), - [anon_sym_DASH_GT] = ACTIONS(5959), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5957), - [anon_sym_decltype] = ACTIONS(5957), + [sym_identifier] = ACTIONS(3613), + [aux_sym_preproc_def_token1] = ACTIONS(3613), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3615), + [aux_sym_preproc_if_token1] = ACTIONS(3613), + [aux_sym_preproc_if_token2] = ACTIONS(3613), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3613), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3613), + [aux_sym_preproc_else_token1] = ACTIONS(3613), + [aux_sym_preproc_elif_token1] = ACTIONS(3613), + [sym_preproc_directive] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_TILDE] = ACTIONS(3615), + [anon_sym_STAR] = ACTIONS(3615), + [anon_sym_AMP_AMP] = ACTIONS(3615), + [anon_sym_AMP] = ACTIONS(3613), + [anon_sym___extension__] = ACTIONS(3613), + [anon_sym_typedef] = ACTIONS(3613), + [anon_sym_extern] = ACTIONS(3613), + [anon_sym___attribute__] = ACTIONS(3613), + [anon_sym_COLON_COLON] = ACTIONS(3615), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3615), + [anon_sym___declspec] = ACTIONS(3613), + [anon_sym___based] = ACTIONS(3613), + [anon_sym_signed] = ACTIONS(3613), + [anon_sym_unsigned] = ACTIONS(3613), + [anon_sym_long] = ACTIONS(3613), + [anon_sym_short] = ACTIONS(3613), + [anon_sym_LBRACK] = ACTIONS(3613), + [anon_sym_static] = ACTIONS(3613), + [anon_sym_register] = ACTIONS(3613), + [anon_sym_inline] = ACTIONS(3613), + [anon_sym___inline] = ACTIONS(3613), + [anon_sym___inline__] = ACTIONS(3613), + [anon_sym___forceinline] = ACTIONS(3613), + [anon_sym_thread_local] = ACTIONS(3613), + [anon_sym___thread] = ACTIONS(3613), + [anon_sym_const] = ACTIONS(3613), + [anon_sym_constexpr] = ACTIONS(3613), + [anon_sym_volatile] = ACTIONS(3613), + [anon_sym_restrict] = ACTIONS(3613), + [anon_sym___restrict__] = ACTIONS(3613), + [anon_sym__Atomic] = ACTIONS(3613), + [anon_sym__Noreturn] = ACTIONS(3613), + [anon_sym_noreturn] = ACTIONS(3613), + [anon_sym_mutable] = ACTIONS(3613), + [anon_sym_constinit] = ACTIONS(3613), + [anon_sym_consteval] = ACTIONS(3613), + [sym_primitive_type] = ACTIONS(3613), + [anon_sym_enum] = ACTIONS(3613), + [anon_sym_class] = ACTIONS(3613), + [anon_sym_struct] = ACTIONS(3613), + [anon_sym_union] = ACTIONS(3613), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3613), + [anon_sym_decltype] = ACTIONS(3613), + [anon_sym_virtual] = ACTIONS(3613), + [anon_sym_alignas] = ACTIONS(3613), + [anon_sym_explicit] = ACTIONS(3613), + [anon_sym_typename] = ACTIONS(3613), + [anon_sym_template] = ACTIONS(3613), + [anon_sym_operator] = ACTIONS(3613), + [anon_sym_friend] = ACTIONS(3613), + [anon_sym_public] = ACTIONS(3613), + [anon_sym_private] = ACTIONS(3613), + [anon_sym_protected] = ACTIONS(3613), + [anon_sym_using] = ACTIONS(3613), + [anon_sym_static_assert] = ACTIONS(3613), + [sym_semgrep_metavar] = ACTIONS(3615), }, [2069] = { - [sym_string_literal] = STATE(2069), - [sym_raw_string_literal] = STATE(2069), - [aux_sym_concatenated_string_repeat1] = STATE(2069), - [sym_identifier] = ACTIONS(5963), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5630), - [anon_sym_COMMA] = ACTIONS(5630), - [anon_sym_RPAREN] = ACTIONS(5630), - [anon_sym_LPAREN2] = ACTIONS(5630), - [anon_sym_DASH] = ACTIONS(5635), - [anon_sym_PLUS] = ACTIONS(5635), - [anon_sym_STAR] = ACTIONS(5635), - [anon_sym_SLASH] = ACTIONS(5635), - [anon_sym_PERCENT] = ACTIONS(5635), - [anon_sym_PIPE_PIPE] = ACTIONS(5630), - [anon_sym_AMP_AMP] = ACTIONS(5630), - [anon_sym_PIPE] = ACTIONS(5635), - [anon_sym_CARET] = ACTIONS(5635), - [anon_sym_AMP] = ACTIONS(5635), - [anon_sym_EQ_EQ] = ACTIONS(5630), - [anon_sym_BANG_EQ] = ACTIONS(5630), - [anon_sym_GT] = ACTIONS(5635), - [anon_sym_GT_EQ] = ACTIONS(5630), - [anon_sym_LT_EQ] = ACTIONS(5635), - [anon_sym_LT] = ACTIONS(5635), - [anon_sym_LT_LT] = ACTIONS(5635), - [anon_sym_GT_GT] = ACTIONS(5635), - [anon_sym_LBRACK] = ACTIONS(5630), - [anon_sym_EQ] = ACTIONS(5635), - [anon_sym_QMARK] = ACTIONS(5630), - [anon_sym_STAR_EQ] = ACTIONS(5630), - [anon_sym_SLASH_EQ] = ACTIONS(5630), - [anon_sym_PERCENT_EQ] = ACTIONS(5630), - [anon_sym_PLUS_EQ] = ACTIONS(5630), - [anon_sym_DASH_EQ] = ACTIONS(5630), - [anon_sym_LT_LT_EQ] = ACTIONS(5630), - [anon_sym_GT_GT_EQ] = ACTIONS(5630), - [anon_sym_AMP_EQ] = ACTIONS(5630), - [anon_sym_CARET_EQ] = ACTIONS(5630), - [anon_sym_PIPE_EQ] = ACTIONS(5630), - [anon_sym_and_eq] = ACTIONS(5635), - [anon_sym_or_eq] = ACTIONS(5635), - [anon_sym_xor_eq] = ACTIONS(5635), - [anon_sym_LT_EQ_GT] = ACTIONS(5630), - [anon_sym_or] = ACTIONS(5635), - [anon_sym_and] = ACTIONS(5635), - [anon_sym_bitor] = ACTIONS(5635), - [anon_sym_xor] = ACTIONS(5635), - [anon_sym_bitand] = ACTIONS(5635), - [anon_sym_not_eq] = ACTIONS(5635), - [anon_sym_DASH_DASH] = ACTIONS(5630), - [anon_sym_PLUS_PLUS] = ACTIONS(5630), - [anon_sym_DOT] = ACTIONS(5635), - [anon_sym_DOT_STAR] = ACTIONS(5630), - [anon_sym_DASH_GT] = ACTIONS(5635), - [anon_sym_L_DQUOTE] = ACTIONS(5966), - [anon_sym_u_DQUOTE] = ACTIONS(5966), - [anon_sym_U_DQUOTE] = ACTIONS(5966), - [anon_sym_u8_DQUOTE] = ACTIONS(5966), - [anon_sym_DQUOTE] = ACTIONS(5966), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5969), - [anon_sym_LR_DQUOTE] = ACTIONS(5969), - [anon_sym_uR_DQUOTE] = ACTIONS(5969), - [anon_sym_UR_DQUOTE] = ACTIONS(5969), - [anon_sym_u8R_DQUOTE] = ACTIONS(5969), - [anon_sym_DASH_GT_STAR] = ACTIONS(5630), - [sym_literal_suffix] = ACTIONS(5635), + [sym_identifier] = ACTIONS(3619), + [aux_sym_preproc_def_token1] = ACTIONS(3619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3621), + [aux_sym_preproc_if_token1] = ACTIONS(3619), + [aux_sym_preproc_if_token2] = ACTIONS(3619), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3619), + [aux_sym_preproc_else_token1] = ACTIONS(3619), + [aux_sym_preproc_elif_token1] = ACTIONS(3619), + [sym_preproc_directive] = ACTIONS(3619), + [anon_sym_LPAREN2] = ACTIONS(3621), + [anon_sym_TILDE] = ACTIONS(3621), + [anon_sym_STAR] = ACTIONS(3621), + [anon_sym_AMP_AMP] = ACTIONS(3621), + [anon_sym_AMP] = ACTIONS(3619), + [anon_sym___extension__] = ACTIONS(3619), + [anon_sym_typedef] = ACTIONS(3619), + [anon_sym_extern] = ACTIONS(3619), + [anon_sym___attribute__] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3621), + [anon_sym___declspec] = ACTIONS(3619), + [anon_sym___based] = ACTIONS(3619), + [anon_sym_signed] = ACTIONS(3619), + [anon_sym_unsigned] = ACTIONS(3619), + [anon_sym_long] = ACTIONS(3619), + [anon_sym_short] = ACTIONS(3619), + [anon_sym_LBRACK] = ACTIONS(3619), + [anon_sym_static] = ACTIONS(3619), + [anon_sym_register] = ACTIONS(3619), + [anon_sym_inline] = ACTIONS(3619), + [anon_sym___inline] = ACTIONS(3619), + [anon_sym___inline__] = ACTIONS(3619), + [anon_sym___forceinline] = ACTIONS(3619), + [anon_sym_thread_local] = ACTIONS(3619), + [anon_sym___thread] = ACTIONS(3619), + [anon_sym_const] = ACTIONS(3619), + [anon_sym_constexpr] = ACTIONS(3619), + [anon_sym_volatile] = ACTIONS(3619), + [anon_sym_restrict] = ACTIONS(3619), + [anon_sym___restrict__] = ACTIONS(3619), + [anon_sym__Atomic] = ACTIONS(3619), + [anon_sym__Noreturn] = ACTIONS(3619), + [anon_sym_noreturn] = ACTIONS(3619), + [anon_sym_mutable] = ACTIONS(3619), + [anon_sym_constinit] = ACTIONS(3619), + [anon_sym_consteval] = ACTIONS(3619), + [sym_primitive_type] = ACTIONS(3619), + [anon_sym_enum] = ACTIONS(3619), + [anon_sym_class] = ACTIONS(3619), + [anon_sym_struct] = ACTIONS(3619), + [anon_sym_union] = ACTIONS(3619), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3619), + [anon_sym_decltype] = ACTIONS(3619), + [anon_sym_virtual] = ACTIONS(3619), + [anon_sym_alignas] = ACTIONS(3619), + [anon_sym_explicit] = ACTIONS(3619), + [anon_sym_typename] = ACTIONS(3619), + [anon_sym_template] = ACTIONS(3619), + [anon_sym_operator] = ACTIONS(3619), + [anon_sym_friend] = ACTIONS(3619), + [anon_sym_public] = ACTIONS(3619), + [anon_sym_private] = ACTIONS(3619), + [anon_sym_protected] = ACTIONS(3619), + [anon_sym_using] = ACTIONS(3619), + [anon_sym_static_assert] = ACTIONS(3619), + [sym_semgrep_metavar] = ACTIONS(3621), }, [2070] = { - [sym_string_literal] = STATE(2071), - [sym_template_argument_list] = STATE(2898), - [sym_raw_string_literal] = STATE(2071), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(4829), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(5532), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym___attribute__] = ACTIONS(4829), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_EQ] = ACTIONS(4837), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4829), - [anon_sym_SLASH_EQ] = ACTIONS(4829), - [anon_sym_PERCENT_EQ] = ACTIONS(4829), - [anon_sym_PLUS_EQ] = ACTIONS(4829), - [anon_sym_DASH_EQ] = ACTIONS(4829), - [anon_sym_LT_LT_EQ] = ACTIONS(4829), - [anon_sym_GT_GT_EQ] = ACTIONS(4829), - [anon_sym_AMP_EQ] = ACTIONS(4829), - [anon_sym_CARET_EQ] = ACTIONS(4829), - [anon_sym_PIPE_EQ] = ACTIONS(4829), - [anon_sym_and_eq] = ACTIONS(4829), - [anon_sym_or_eq] = ACTIONS(4829), - [anon_sym_xor_eq] = ACTIONS(4829), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4829), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4829), - [anon_sym_not_eq] = ACTIONS(4829), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(5972), - [anon_sym_u_DQUOTE] = ACTIONS(5972), - [anon_sym_U_DQUOTE] = ACTIONS(5972), - [anon_sym_u8_DQUOTE] = ACTIONS(5972), - [anon_sym_DQUOTE] = ACTIONS(5972), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5974), - [anon_sym_LR_DQUOTE] = ACTIONS(5974), - [anon_sym_uR_DQUOTE] = ACTIONS(5974), - [anon_sym_UR_DQUOTE] = ACTIONS(5974), - [anon_sym_u8R_DQUOTE] = ACTIONS(5974), + [sym_identifier] = ACTIONS(5785), + [aux_sym_preproc_def_token1] = ACTIONS(5785), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5787), + [aux_sym_preproc_if_token1] = ACTIONS(5785), + [aux_sym_preproc_if_token2] = ACTIONS(5785), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5785), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5785), + [aux_sym_preproc_else_token1] = ACTIONS(5785), + [aux_sym_preproc_elif_token1] = ACTIONS(5785), + [sym_preproc_directive] = ACTIONS(5785), + [anon_sym_LPAREN2] = ACTIONS(5787), + [anon_sym_TILDE] = ACTIONS(5787), + [anon_sym_STAR] = ACTIONS(5787), + [anon_sym_AMP_AMP] = ACTIONS(5787), + [anon_sym_AMP] = ACTIONS(5785), + [anon_sym___extension__] = ACTIONS(5785), + [anon_sym_typedef] = ACTIONS(5785), + [anon_sym_extern] = ACTIONS(5785), + [anon_sym___attribute__] = ACTIONS(5785), + [anon_sym_COLON_COLON] = ACTIONS(5787), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5787), + [anon_sym___declspec] = ACTIONS(5785), + [anon_sym___based] = ACTIONS(5785), + [anon_sym_signed] = ACTIONS(5785), + [anon_sym_unsigned] = ACTIONS(5785), + [anon_sym_long] = ACTIONS(5785), + [anon_sym_short] = ACTIONS(5785), + [anon_sym_LBRACK] = ACTIONS(5785), + [anon_sym_static] = ACTIONS(5785), + [anon_sym_register] = ACTIONS(5785), + [anon_sym_inline] = ACTIONS(5785), + [anon_sym___inline] = ACTIONS(5785), + [anon_sym___inline__] = ACTIONS(5785), + [anon_sym___forceinline] = ACTIONS(5785), + [anon_sym_thread_local] = ACTIONS(5785), + [anon_sym___thread] = ACTIONS(5785), + [anon_sym_const] = ACTIONS(5785), + [anon_sym_constexpr] = ACTIONS(5785), + [anon_sym_volatile] = ACTIONS(5785), + [anon_sym_restrict] = ACTIONS(5785), + [anon_sym___restrict__] = ACTIONS(5785), + [anon_sym__Atomic] = ACTIONS(5785), + [anon_sym__Noreturn] = ACTIONS(5785), + [anon_sym_noreturn] = ACTIONS(5785), + [anon_sym_mutable] = ACTIONS(5785), + [anon_sym_constinit] = ACTIONS(5785), + [anon_sym_consteval] = ACTIONS(5785), + [sym_primitive_type] = ACTIONS(5785), + [anon_sym_enum] = ACTIONS(5785), + [anon_sym_class] = ACTIONS(5785), + [anon_sym_struct] = ACTIONS(5785), + [anon_sym_union] = ACTIONS(5785), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5785), + [anon_sym_decltype] = ACTIONS(5785), + [anon_sym_virtual] = ACTIONS(5785), + [anon_sym_alignas] = ACTIONS(5785), + [anon_sym_explicit] = ACTIONS(5785), + [anon_sym_typename] = ACTIONS(5785), + [anon_sym_template] = ACTIONS(5785), + [anon_sym_operator] = ACTIONS(5785), + [anon_sym_friend] = ACTIONS(5785), + [anon_sym_public] = ACTIONS(5785), + [anon_sym_private] = ACTIONS(5785), + [anon_sym_protected] = ACTIONS(5785), + [anon_sym_using] = ACTIONS(5785), + [anon_sym_static_assert] = ACTIONS(5785), + [sym_semgrep_metavar] = ACTIONS(5787), }, [2071] = { - [sym_string_literal] = STATE(2075), - [sym_raw_string_literal] = STATE(2075), - [aux_sym_concatenated_string_repeat1] = STATE(2075), - [sym_identifier] = ACTIONS(5976), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5649), - [anon_sym_COMMA] = ACTIONS(5649), - [anon_sym_LPAREN2] = ACTIONS(5649), - [anon_sym_DASH] = ACTIONS(5653), - [anon_sym_PLUS] = ACTIONS(5653), - [anon_sym_STAR] = ACTIONS(5653), - [anon_sym_SLASH] = ACTIONS(5653), - [anon_sym_PERCENT] = ACTIONS(5653), - [anon_sym_PIPE_PIPE] = ACTIONS(5649), - [anon_sym_AMP_AMP] = ACTIONS(5649), - [anon_sym_PIPE] = ACTIONS(5653), - [anon_sym_CARET] = ACTIONS(5653), - [anon_sym_AMP] = ACTIONS(5653), - [anon_sym_EQ_EQ] = ACTIONS(5649), - [anon_sym_BANG_EQ] = ACTIONS(5649), - [anon_sym_GT] = ACTIONS(5653), - [anon_sym_GT_EQ] = ACTIONS(5649), - [anon_sym_LT_EQ] = ACTIONS(5653), - [anon_sym_LT] = ACTIONS(5653), - [anon_sym_LT_LT] = ACTIONS(5653), - [anon_sym_GT_GT] = ACTIONS(5653), - [anon_sym_SEMI] = ACTIONS(5649), - [anon_sym___attribute__] = ACTIONS(5653), - [anon_sym_LBRACK] = ACTIONS(5649), - [anon_sym_EQ] = ACTIONS(5653), - [anon_sym_QMARK] = ACTIONS(5649), - [anon_sym_STAR_EQ] = ACTIONS(5649), - [anon_sym_SLASH_EQ] = ACTIONS(5649), - [anon_sym_PERCENT_EQ] = ACTIONS(5649), - [anon_sym_PLUS_EQ] = ACTIONS(5649), - [anon_sym_DASH_EQ] = ACTIONS(5649), - [anon_sym_LT_LT_EQ] = ACTIONS(5649), - [anon_sym_GT_GT_EQ] = ACTIONS(5649), - [anon_sym_AMP_EQ] = ACTIONS(5649), - [anon_sym_CARET_EQ] = ACTIONS(5649), - [anon_sym_PIPE_EQ] = ACTIONS(5649), - [anon_sym_and_eq] = ACTIONS(5653), - [anon_sym_or_eq] = ACTIONS(5653), - [anon_sym_xor_eq] = ACTIONS(5653), - [anon_sym_LT_EQ_GT] = ACTIONS(5649), - [anon_sym_or] = ACTIONS(5653), - [anon_sym_and] = ACTIONS(5653), - [anon_sym_bitor] = ACTIONS(5653), - [anon_sym_xor] = ACTIONS(5653), - [anon_sym_bitand] = ACTIONS(5653), - [anon_sym_not_eq] = ACTIONS(5653), - [anon_sym_DASH_DASH] = ACTIONS(5649), - [anon_sym_PLUS_PLUS] = ACTIONS(5649), - [anon_sym_DOT] = ACTIONS(5653), - [anon_sym_DOT_STAR] = ACTIONS(5649), - [anon_sym_DASH_GT] = ACTIONS(5649), - [anon_sym_L_DQUOTE] = ACTIONS(5972), - [anon_sym_u_DQUOTE] = ACTIONS(5972), - [anon_sym_U_DQUOTE] = ACTIONS(5972), - [anon_sym_u8_DQUOTE] = ACTIONS(5972), - [anon_sym_DQUOTE] = ACTIONS(5972), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5974), - [anon_sym_LR_DQUOTE] = ACTIONS(5974), - [anon_sym_uR_DQUOTE] = ACTIONS(5974), - [anon_sym_UR_DQUOTE] = ACTIONS(5974), - [anon_sym_u8R_DQUOTE] = ACTIONS(5974), - [sym_literal_suffix] = ACTIONS(5653), + [sym_identifier] = ACTIONS(3623), + [aux_sym_preproc_def_token1] = ACTIONS(3623), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3625), + [aux_sym_preproc_if_token1] = ACTIONS(3623), + [aux_sym_preproc_if_token2] = ACTIONS(3623), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3623), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3623), + [aux_sym_preproc_else_token1] = ACTIONS(3623), + [aux_sym_preproc_elif_token1] = ACTIONS(3623), + [sym_preproc_directive] = ACTIONS(3623), + [anon_sym_LPAREN2] = ACTIONS(3625), + [anon_sym_TILDE] = ACTIONS(3625), + [anon_sym_STAR] = ACTIONS(3625), + [anon_sym_AMP_AMP] = ACTIONS(3625), + [anon_sym_AMP] = ACTIONS(3623), + [anon_sym___extension__] = ACTIONS(3623), + [anon_sym_typedef] = ACTIONS(3623), + [anon_sym_extern] = ACTIONS(3623), + [anon_sym___attribute__] = ACTIONS(3623), + [anon_sym_COLON_COLON] = ACTIONS(3625), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3625), + [anon_sym___declspec] = ACTIONS(3623), + [anon_sym___based] = ACTIONS(3623), + [anon_sym_signed] = ACTIONS(3623), + [anon_sym_unsigned] = ACTIONS(3623), + [anon_sym_long] = ACTIONS(3623), + [anon_sym_short] = ACTIONS(3623), + [anon_sym_LBRACK] = ACTIONS(3623), + [anon_sym_static] = ACTIONS(3623), + [anon_sym_register] = ACTIONS(3623), + [anon_sym_inline] = ACTIONS(3623), + [anon_sym___inline] = ACTIONS(3623), + [anon_sym___inline__] = ACTIONS(3623), + [anon_sym___forceinline] = ACTIONS(3623), + [anon_sym_thread_local] = ACTIONS(3623), + [anon_sym___thread] = ACTIONS(3623), + [anon_sym_const] = ACTIONS(3623), + [anon_sym_constexpr] = ACTIONS(3623), + [anon_sym_volatile] = ACTIONS(3623), + [anon_sym_restrict] = ACTIONS(3623), + [anon_sym___restrict__] = ACTIONS(3623), + [anon_sym__Atomic] = ACTIONS(3623), + [anon_sym__Noreturn] = ACTIONS(3623), + [anon_sym_noreturn] = ACTIONS(3623), + [anon_sym_mutable] = ACTIONS(3623), + [anon_sym_constinit] = ACTIONS(3623), + [anon_sym_consteval] = ACTIONS(3623), + [sym_primitive_type] = ACTIONS(3623), + [anon_sym_enum] = ACTIONS(3623), + [anon_sym_class] = ACTIONS(3623), + [anon_sym_struct] = ACTIONS(3623), + [anon_sym_union] = ACTIONS(3623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3623), + [anon_sym_decltype] = ACTIONS(3623), + [anon_sym_virtual] = ACTIONS(3623), + [anon_sym_alignas] = ACTIONS(3623), + [anon_sym_explicit] = ACTIONS(3623), + [anon_sym_typename] = ACTIONS(3623), + [anon_sym_template] = ACTIONS(3623), + [anon_sym_operator] = ACTIONS(3623), + [anon_sym_friend] = ACTIONS(3623), + [anon_sym_public] = ACTIONS(3623), + [anon_sym_private] = ACTIONS(3623), + [anon_sym_protected] = ACTIONS(3623), + [anon_sym_using] = ACTIONS(3623), + [anon_sym_static_assert] = ACTIONS(3623), + [sym_semgrep_metavar] = ACTIONS(3625), }, [2072] = { - [sym_string_literal] = STATE(2640), - [sym_template_argument_list] = STATE(5014), - [sym_raw_string_literal] = STATE(2640), - [aux_sym_structured_binding_declarator_repeat1] = STATE(8945), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(5978), - [anon_sym_LPAREN2] = ACTIONS(4829), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(5764), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_RBRACK] = ACTIONS(5981), - [anon_sym_EQ] = ACTIONS(4861), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4865), - [anon_sym_SLASH_EQ] = ACTIONS(4865), - [anon_sym_PERCENT_EQ] = ACTIONS(4865), - [anon_sym_PLUS_EQ] = ACTIONS(4865), - [anon_sym_DASH_EQ] = ACTIONS(4865), - [anon_sym_LT_LT_EQ] = ACTIONS(4865), - [anon_sym_GT_GT_EQ] = ACTIONS(4865), - [anon_sym_AMP_EQ] = ACTIONS(4865), - [anon_sym_CARET_EQ] = ACTIONS(4865), - [anon_sym_PIPE_EQ] = ACTIONS(4865), - [anon_sym_and_eq] = ACTIONS(4865), - [anon_sym_or_eq] = ACTIONS(4865), - [anon_sym_xor_eq] = ACTIONS(4865), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4829), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4829), - [anon_sym_not_eq] = ACTIONS(4829), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - }, - [2073] = { - [sym_string_literal] = STATE(2097), - [sym_raw_string_literal] = STATE(2097), - [aux_sym_concatenated_string_repeat1] = STATE(2097), - [sym_identifier] = ACTIONS(5984), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5649), - [anon_sym_COMMA] = ACTIONS(5649), - [anon_sym_RPAREN] = ACTIONS(5649), - [anon_sym_LPAREN2] = ACTIONS(5649), - [anon_sym_DASH] = ACTIONS(5653), - [anon_sym_PLUS] = ACTIONS(5653), - [anon_sym_STAR] = ACTIONS(5653), - [anon_sym_SLASH] = ACTIONS(5653), - [anon_sym_PERCENT] = ACTIONS(5653), - [anon_sym_PIPE_PIPE] = ACTIONS(5649), - [anon_sym_AMP_AMP] = ACTIONS(5649), - [anon_sym_PIPE] = ACTIONS(5653), - [anon_sym_CARET] = ACTIONS(5653), - [anon_sym_AMP] = ACTIONS(5653), - [anon_sym_EQ_EQ] = ACTIONS(5649), - [anon_sym_BANG_EQ] = ACTIONS(5649), - [anon_sym_GT] = ACTIONS(5653), - [anon_sym_GT_EQ] = ACTIONS(5649), - [anon_sym_LT_EQ] = ACTIONS(5653), - [anon_sym_LT] = ACTIONS(5653), - [anon_sym_LT_LT] = ACTIONS(5653), - [anon_sym_GT_GT] = ACTIONS(5653), - [anon_sym_LBRACK] = ACTIONS(5649), - [anon_sym_EQ] = ACTIONS(5653), - [anon_sym_QMARK] = ACTIONS(5649), - [anon_sym_STAR_EQ] = ACTIONS(5649), - [anon_sym_SLASH_EQ] = ACTIONS(5649), - [anon_sym_PERCENT_EQ] = ACTIONS(5649), - [anon_sym_PLUS_EQ] = ACTIONS(5649), - [anon_sym_DASH_EQ] = ACTIONS(5649), - [anon_sym_LT_LT_EQ] = ACTIONS(5649), - [anon_sym_GT_GT_EQ] = ACTIONS(5649), - [anon_sym_AMP_EQ] = ACTIONS(5649), - [anon_sym_CARET_EQ] = ACTIONS(5649), - [anon_sym_PIPE_EQ] = ACTIONS(5649), - [anon_sym_and_eq] = ACTIONS(5653), - [anon_sym_or_eq] = ACTIONS(5653), - [anon_sym_xor_eq] = ACTIONS(5653), - [anon_sym_LT_EQ_GT] = ACTIONS(5649), - [anon_sym_or] = ACTIONS(5653), - [anon_sym_and] = ACTIONS(5653), - [anon_sym_bitor] = ACTIONS(5653), - [anon_sym_xor] = ACTIONS(5653), - [anon_sym_bitand] = ACTIONS(5653), - [anon_sym_not_eq] = ACTIONS(5653), - [anon_sym_DASH_DASH] = ACTIONS(5649), - [anon_sym_PLUS_PLUS] = ACTIONS(5649), - [anon_sym_DOT] = ACTIONS(5653), - [anon_sym_DOT_STAR] = ACTIONS(5649), - [anon_sym_DASH_GT] = ACTIONS(5653), - [anon_sym_L_DQUOTE] = ACTIONS(5492), - [anon_sym_u_DQUOTE] = ACTIONS(5492), - [anon_sym_U_DQUOTE] = ACTIONS(5492), - [anon_sym_u8_DQUOTE] = ACTIONS(5492), - [anon_sym_DQUOTE] = ACTIONS(5492), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5494), - [anon_sym_LR_DQUOTE] = ACTIONS(5494), - [anon_sym_uR_DQUOTE] = ACTIONS(5494), - [anon_sym_UR_DQUOTE] = ACTIONS(5494), - [anon_sym_u8R_DQUOTE] = ACTIONS(5494), - [anon_sym_DASH_GT_STAR] = ACTIONS(5649), - [sym_literal_suffix] = ACTIONS(5653), - }, - [2074] = { - [sym_string_literal] = STATE(2640), - [sym_template_argument_list] = STATE(5014), - [sym_raw_string_literal] = STATE(2640), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(4829), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(5764), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_EQ] = ACTIONS(4861), - [anon_sym_COLON] = ACTIONS(5986), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4865), - [anon_sym_SLASH_EQ] = ACTIONS(4865), - [anon_sym_PERCENT_EQ] = ACTIONS(4865), - [anon_sym_PLUS_EQ] = ACTIONS(4865), - [anon_sym_DASH_EQ] = ACTIONS(4865), - [anon_sym_LT_LT_EQ] = ACTIONS(4865), - [anon_sym_GT_GT_EQ] = ACTIONS(4865), - [anon_sym_AMP_EQ] = ACTIONS(4865), - [anon_sym_CARET_EQ] = ACTIONS(4865), - [anon_sym_PIPE_EQ] = ACTIONS(4865), - [anon_sym_and_eq] = ACTIONS(4865), - [anon_sym_or_eq] = ACTIONS(4865), - [anon_sym_xor_eq] = ACTIONS(4865), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4829), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4829), - [anon_sym_not_eq] = ACTIONS(4829), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - }, - [2075] = { - [sym_string_literal] = STATE(2091), - [sym_raw_string_literal] = STATE(2091), - [aux_sym_concatenated_string_repeat1] = STATE(2091), - [sym_identifier] = ACTIONS(5988), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5643), - [anon_sym_COMMA] = ACTIONS(5643), - [anon_sym_LPAREN2] = ACTIONS(5643), - [anon_sym_DASH] = ACTIONS(5647), - [anon_sym_PLUS] = ACTIONS(5647), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5647), - [anon_sym_PERCENT] = ACTIONS(5647), - [anon_sym_PIPE_PIPE] = ACTIONS(5643), - [anon_sym_AMP_AMP] = ACTIONS(5643), - [anon_sym_PIPE] = ACTIONS(5647), - [anon_sym_CARET] = ACTIONS(5647), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5643), - [anon_sym_BANG_EQ] = ACTIONS(5643), - [anon_sym_GT] = ACTIONS(5647), - [anon_sym_GT_EQ] = ACTIONS(5643), - [anon_sym_LT_EQ] = ACTIONS(5647), - [anon_sym_LT] = ACTIONS(5647), - [anon_sym_LT_LT] = ACTIONS(5647), - [anon_sym_GT_GT] = ACTIONS(5647), - [anon_sym_SEMI] = ACTIONS(5643), - [anon_sym___attribute__] = ACTIONS(5647), - [anon_sym_LBRACK] = ACTIONS(5643), - [anon_sym_EQ] = ACTIONS(5647), - [anon_sym_QMARK] = ACTIONS(5643), - [anon_sym_STAR_EQ] = ACTIONS(5643), - [anon_sym_SLASH_EQ] = ACTIONS(5643), - [anon_sym_PERCENT_EQ] = ACTIONS(5643), - [anon_sym_PLUS_EQ] = ACTIONS(5643), - [anon_sym_DASH_EQ] = ACTIONS(5643), - [anon_sym_LT_LT_EQ] = ACTIONS(5643), - [anon_sym_GT_GT_EQ] = ACTIONS(5643), - [anon_sym_AMP_EQ] = ACTIONS(5643), - [anon_sym_CARET_EQ] = ACTIONS(5643), - [anon_sym_PIPE_EQ] = ACTIONS(5643), - [anon_sym_and_eq] = ACTIONS(5647), - [anon_sym_or_eq] = ACTIONS(5647), - [anon_sym_xor_eq] = ACTIONS(5647), - [anon_sym_LT_EQ_GT] = ACTIONS(5643), - [anon_sym_or] = ACTIONS(5647), - [anon_sym_and] = ACTIONS(5647), - [anon_sym_bitor] = ACTIONS(5647), - [anon_sym_xor] = ACTIONS(5647), - [anon_sym_bitand] = ACTIONS(5647), - [anon_sym_not_eq] = ACTIONS(5647), - [anon_sym_DASH_DASH] = ACTIONS(5643), - [anon_sym_PLUS_PLUS] = ACTIONS(5643), - [anon_sym_DOT] = ACTIONS(5647), - [anon_sym_DOT_STAR] = ACTIONS(5643), - [anon_sym_DASH_GT] = ACTIONS(5643), - [anon_sym_L_DQUOTE] = ACTIONS(5972), - [anon_sym_u_DQUOTE] = ACTIONS(5972), - [anon_sym_U_DQUOTE] = ACTIONS(5972), - [anon_sym_u8_DQUOTE] = ACTIONS(5972), - [anon_sym_DQUOTE] = ACTIONS(5972), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5974), - [anon_sym_LR_DQUOTE] = ACTIONS(5974), - [anon_sym_uR_DQUOTE] = ACTIONS(5974), - [anon_sym_UR_DQUOTE] = ACTIONS(5974), - [anon_sym_u8R_DQUOTE] = ACTIONS(5974), - [sym_literal_suffix] = ACTIONS(5647), - }, - [2076] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2079), - [ts_builtin_sym_end] = ACTIONS(5990), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5990), - [anon_sym_COMMA] = ACTIONS(5990), - [anon_sym_RPAREN] = ACTIONS(5990), - [anon_sym_LPAREN2] = ACTIONS(5990), - [anon_sym_DASH] = ACTIONS(5992), - [anon_sym_PLUS] = ACTIONS(5992), - [anon_sym_STAR] = ACTIONS(5990), - [anon_sym_SLASH] = ACTIONS(5992), - [anon_sym_PERCENT] = ACTIONS(5990), - [anon_sym_PIPE_PIPE] = ACTIONS(5990), - [anon_sym_AMP_AMP] = ACTIONS(5990), - [anon_sym_PIPE] = ACTIONS(5992), - [anon_sym_CARET] = ACTIONS(5990), - [anon_sym_AMP] = ACTIONS(5992), - [anon_sym_EQ_EQ] = ACTIONS(5990), - [anon_sym_BANG_EQ] = ACTIONS(5990), - [anon_sym_GT] = ACTIONS(5992), - [anon_sym_GT_EQ] = ACTIONS(5990), - [anon_sym_LT_EQ] = ACTIONS(5992), - [anon_sym_LT] = ACTIONS(5992), - [anon_sym_LT_LT] = ACTIONS(5990), - [anon_sym_GT_GT] = ACTIONS(5990), - [anon_sym_SEMI] = ACTIONS(5990), - [anon_sym___extension__] = ACTIONS(5990), - [anon_sym___attribute__] = ACTIONS(5990), - [anon_sym_LBRACE] = ACTIONS(5990), - [anon_sym_RBRACE] = ACTIONS(5990), - [anon_sym_signed] = ACTIONS(5994), - [anon_sym_unsigned] = ACTIONS(5994), - [anon_sym_long] = ACTIONS(5994), - [anon_sym_short] = ACTIONS(5994), - [anon_sym_LBRACK] = ACTIONS(5990), - [anon_sym_RBRACK] = ACTIONS(5990), - [anon_sym_const] = ACTIONS(5992), - [anon_sym_constexpr] = ACTIONS(5990), - [anon_sym_volatile] = ACTIONS(5990), - [anon_sym_restrict] = ACTIONS(5990), - [anon_sym___restrict__] = ACTIONS(5990), - [anon_sym__Atomic] = ACTIONS(5990), - [anon_sym__Noreturn] = ACTIONS(5990), - [anon_sym_noreturn] = ACTIONS(5990), - [anon_sym_mutable] = ACTIONS(5990), - [anon_sym_constinit] = ACTIONS(5990), - [anon_sym_consteval] = ACTIONS(5990), - [anon_sym_COLON] = ACTIONS(5990), - [anon_sym_QMARK] = ACTIONS(5990), - [anon_sym_LT_EQ_GT] = ACTIONS(5990), - [anon_sym_or] = ACTIONS(5990), - [anon_sym_and] = ACTIONS(5990), - [anon_sym_bitor] = ACTIONS(5990), - [anon_sym_xor] = ACTIONS(5990), - [anon_sym_bitand] = ACTIONS(5990), - [anon_sym_not_eq] = ACTIONS(5990), - [anon_sym_DASH_DASH] = ACTIONS(5990), - [anon_sym_PLUS_PLUS] = ACTIONS(5990), - [anon_sym_DOT] = ACTIONS(5992), - [anon_sym_DOT_STAR] = ACTIONS(5990), - [anon_sym_DASH_GT] = ACTIONS(5990), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5990), - [anon_sym_decltype] = ACTIONS(5990), - [anon_sym_final] = ACTIONS(5990), - [anon_sym_override] = ACTIONS(5990), - [anon_sym_requires] = ACTIONS(5990), - [sym_semgrep_metavar] = ACTIONS(5990), - }, - [2077] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2079), - [ts_builtin_sym_end] = ACTIONS(5996), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5996), - [anon_sym_COMMA] = ACTIONS(5996), - [anon_sym_RPAREN] = ACTIONS(5996), - [anon_sym_LPAREN2] = ACTIONS(5996), - [anon_sym_DASH] = ACTIONS(5998), - [anon_sym_PLUS] = ACTIONS(5998), - [anon_sym_STAR] = ACTIONS(5996), - [anon_sym_SLASH] = ACTIONS(5998), - [anon_sym_PERCENT] = ACTIONS(5996), - [anon_sym_PIPE_PIPE] = ACTIONS(5996), - [anon_sym_AMP_AMP] = ACTIONS(5996), - [anon_sym_PIPE] = ACTIONS(5998), - [anon_sym_CARET] = ACTIONS(5996), - [anon_sym_AMP] = ACTIONS(5998), - [anon_sym_EQ_EQ] = ACTIONS(5996), - [anon_sym_BANG_EQ] = ACTIONS(5996), - [anon_sym_GT] = ACTIONS(5998), - [anon_sym_GT_EQ] = ACTIONS(5996), - [anon_sym_LT_EQ] = ACTIONS(5998), - [anon_sym_LT] = ACTIONS(5998), - [anon_sym_LT_LT] = ACTIONS(5996), - [anon_sym_GT_GT] = ACTIONS(5996), - [anon_sym_SEMI] = ACTIONS(5996), - [anon_sym___extension__] = ACTIONS(5996), - [anon_sym___attribute__] = ACTIONS(5996), - [anon_sym_LBRACE] = ACTIONS(5996), - [anon_sym_RBRACE] = ACTIONS(5996), - [anon_sym_signed] = ACTIONS(5994), - [anon_sym_unsigned] = ACTIONS(5994), - [anon_sym_long] = ACTIONS(5994), - [anon_sym_short] = ACTIONS(5994), - [anon_sym_LBRACK] = ACTIONS(5996), - [anon_sym_RBRACK] = ACTIONS(5996), - [anon_sym_const] = ACTIONS(5998), - [anon_sym_constexpr] = ACTIONS(5996), - [anon_sym_volatile] = ACTIONS(5996), - [anon_sym_restrict] = ACTIONS(5996), - [anon_sym___restrict__] = ACTIONS(5996), - [anon_sym__Atomic] = ACTIONS(5996), - [anon_sym__Noreturn] = ACTIONS(5996), - [anon_sym_noreturn] = ACTIONS(5996), - [anon_sym_mutable] = ACTIONS(5996), - [anon_sym_constinit] = ACTIONS(5996), - [anon_sym_consteval] = ACTIONS(5996), - [anon_sym_COLON] = ACTIONS(5996), - [anon_sym_QMARK] = ACTIONS(5996), - [anon_sym_LT_EQ_GT] = ACTIONS(5996), - [anon_sym_or] = ACTIONS(5996), - [anon_sym_and] = ACTIONS(5996), - [anon_sym_bitor] = ACTIONS(5996), - [anon_sym_xor] = ACTIONS(5996), - [anon_sym_bitand] = ACTIONS(5996), - [anon_sym_not_eq] = ACTIONS(5996), - [anon_sym_DASH_DASH] = ACTIONS(5996), - [anon_sym_PLUS_PLUS] = ACTIONS(5996), - [anon_sym_DOT] = ACTIONS(5998), - [anon_sym_DOT_STAR] = ACTIONS(5996), - [anon_sym_DASH_GT] = ACTIONS(5996), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5996), - [anon_sym_decltype] = ACTIONS(5996), - [anon_sym_final] = ACTIONS(5996), - [anon_sym_override] = ACTIONS(5996), - [anon_sym_requires] = ACTIONS(5996), - [sym_semgrep_metavar] = ACTIONS(5996), - }, - [2078] = { - [sym_catch_clause] = STATE(2092), - [aux_sym_constructor_try_statement_repeat1] = STATE(2092), - [sym_identifier] = ACTIONS(3074), - [aux_sym_preproc_def_token1] = ACTIONS(3074), - [aux_sym_preproc_if_token1] = ACTIONS(3074), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3074), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3074), - [sym_preproc_directive] = ACTIONS(3074), - [anon_sym_LPAREN2] = ACTIONS(3076), - [anon_sym_TILDE] = ACTIONS(3076), - [anon_sym_STAR] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym___extension__] = ACTIONS(3074), - [anon_sym_typedef] = ACTIONS(3074), - [anon_sym_extern] = ACTIONS(3074), - [anon_sym___attribute__] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3076), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3076), - [anon_sym___declspec] = ACTIONS(3074), - [anon_sym___based] = ACTIONS(3074), - [anon_sym_RBRACE] = ACTIONS(3076), - [anon_sym_signed] = ACTIONS(3074), - [anon_sym_unsigned] = ACTIONS(3074), - [anon_sym_long] = ACTIONS(3074), - [anon_sym_short] = ACTIONS(3074), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_static] = ACTIONS(3074), - [anon_sym_register] = ACTIONS(3074), - [anon_sym_inline] = ACTIONS(3074), - [anon_sym___inline] = ACTIONS(3074), - [anon_sym___inline__] = ACTIONS(3074), - [anon_sym___forceinline] = ACTIONS(3074), - [anon_sym_thread_local] = ACTIONS(3074), - [anon_sym___thread] = ACTIONS(3074), - [anon_sym_const] = ACTIONS(3074), - [anon_sym_constexpr] = ACTIONS(3074), - [anon_sym_volatile] = ACTIONS(3074), - [anon_sym_restrict] = ACTIONS(3074), - [anon_sym___restrict__] = ACTIONS(3074), - [anon_sym__Atomic] = ACTIONS(3074), - [anon_sym__Noreturn] = ACTIONS(3074), - [anon_sym_noreturn] = ACTIONS(3074), - [anon_sym_mutable] = ACTIONS(3074), - [anon_sym_constinit] = ACTIONS(3074), - [anon_sym_consteval] = ACTIONS(3074), - [sym_primitive_type] = ACTIONS(3074), - [anon_sym_enum] = ACTIONS(3074), - [anon_sym_class] = ACTIONS(3074), - [anon_sym_struct] = ACTIONS(3074), - [anon_sym_union] = ACTIONS(3074), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3074), - [anon_sym_decltype] = ACTIONS(3074), - [anon_sym_virtual] = ACTIONS(3074), - [anon_sym_alignas] = ACTIONS(3074), - [anon_sym_explicit] = ACTIONS(3074), - [anon_sym_typename] = ACTIONS(3074), - [anon_sym_template] = ACTIONS(3074), - [anon_sym_operator] = ACTIONS(3074), - [anon_sym_friend] = ACTIONS(3074), - [anon_sym_public] = ACTIONS(3074), - [anon_sym_private] = ACTIONS(3074), - [anon_sym_protected] = ACTIONS(3074), - [anon_sym_using] = ACTIONS(3074), - [anon_sym_static_assert] = ACTIONS(3074), - [anon_sym_catch] = ACTIONS(6000), - }, - [2079] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2079), - [ts_builtin_sym_end] = ACTIONS(5697), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5697), - [anon_sym_COMMA] = ACTIONS(5697), - [anon_sym_RPAREN] = ACTIONS(5697), - [anon_sym_LPAREN2] = ACTIONS(5697), - [anon_sym_DASH] = ACTIONS(5699), - [anon_sym_PLUS] = ACTIONS(5699), - [anon_sym_STAR] = ACTIONS(5697), - [anon_sym_SLASH] = ACTIONS(5699), - [anon_sym_PERCENT] = ACTIONS(5697), - [anon_sym_PIPE_PIPE] = ACTIONS(5697), - [anon_sym_AMP_AMP] = ACTIONS(5697), - [anon_sym_PIPE] = ACTIONS(5699), - [anon_sym_CARET] = ACTIONS(5697), - [anon_sym_AMP] = ACTIONS(5699), - [anon_sym_EQ_EQ] = ACTIONS(5697), - [anon_sym_BANG_EQ] = ACTIONS(5697), - [anon_sym_GT] = ACTIONS(5699), - [anon_sym_GT_EQ] = ACTIONS(5697), - [anon_sym_LT_EQ] = ACTIONS(5699), - [anon_sym_LT] = ACTIONS(5699), - [anon_sym_LT_LT] = ACTIONS(5697), - [anon_sym_GT_GT] = ACTIONS(5697), - [anon_sym_SEMI] = ACTIONS(5697), - [anon_sym___extension__] = ACTIONS(5697), - [anon_sym___attribute__] = ACTIONS(5697), - [anon_sym_LBRACE] = ACTIONS(5697), - [anon_sym_RBRACE] = ACTIONS(5697), - [anon_sym_signed] = ACTIONS(6002), - [anon_sym_unsigned] = ACTIONS(6002), - [anon_sym_long] = ACTIONS(6002), - [anon_sym_short] = ACTIONS(6002), - [anon_sym_LBRACK] = ACTIONS(5697), - [anon_sym_RBRACK] = ACTIONS(5697), - [anon_sym_const] = ACTIONS(5699), - [anon_sym_constexpr] = ACTIONS(5697), - [anon_sym_volatile] = ACTIONS(5697), - [anon_sym_restrict] = ACTIONS(5697), - [anon_sym___restrict__] = ACTIONS(5697), - [anon_sym__Atomic] = ACTIONS(5697), - [anon_sym__Noreturn] = ACTIONS(5697), - [anon_sym_noreturn] = ACTIONS(5697), - [anon_sym_mutable] = ACTIONS(5697), - [anon_sym_constinit] = ACTIONS(5697), - [anon_sym_consteval] = ACTIONS(5697), - [anon_sym_COLON] = ACTIONS(5697), - [anon_sym_QMARK] = ACTIONS(5697), - [anon_sym_LT_EQ_GT] = ACTIONS(5697), - [anon_sym_or] = ACTIONS(5697), - [anon_sym_and] = ACTIONS(5697), - [anon_sym_bitor] = ACTIONS(5697), - [anon_sym_xor] = ACTIONS(5697), - [anon_sym_bitand] = ACTIONS(5697), - [anon_sym_not_eq] = ACTIONS(5697), - [anon_sym_DASH_DASH] = ACTIONS(5697), - [anon_sym_PLUS_PLUS] = ACTIONS(5697), - [anon_sym_DOT] = ACTIONS(5699), - [anon_sym_DOT_STAR] = ACTIONS(5697), - [anon_sym_DASH_GT] = ACTIONS(5697), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5697), - [anon_sym_decltype] = ACTIONS(5697), - [anon_sym_final] = ACTIONS(5697), - [anon_sym_override] = ACTIONS(5697), - [anon_sym_requires] = ACTIONS(5697), - [sym_semgrep_metavar] = ACTIONS(5697), - }, - [2080] = { - [sym_string_literal] = STATE(2640), - [sym_template_argument_list] = STATE(5014), - [sym_raw_string_literal] = STATE(2640), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(4829), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(5764), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_EQ] = ACTIONS(4861), - [anon_sym_COLON] = ACTIONS(4896), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4865), - [anon_sym_SLASH_EQ] = ACTIONS(4865), - [anon_sym_PERCENT_EQ] = ACTIONS(4865), - [anon_sym_PLUS_EQ] = ACTIONS(4865), - [anon_sym_DASH_EQ] = ACTIONS(4865), - [anon_sym_LT_LT_EQ] = ACTIONS(4865), - [anon_sym_GT_GT_EQ] = ACTIONS(4865), - [anon_sym_AMP_EQ] = ACTIONS(4865), - [anon_sym_CARET_EQ] = ACTIONS(4865), - [anon_sym_PIPE_EQ] = ACTIONS(4865), - [anon_sym_and_eq] = ACTIONS(4865), - [anon_sym_or_eq] = ACTIONS(4865), - [anon_sym_xor_eq] = ACTIONS(4865), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4829), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4829), - [anon_sym_not_eq] = ACTIONS(4829), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - }, - [2081] = { - [sym_identifier] = ACTIONS(3078), - [aux_sym_preproc_def_token1] = ACTIONS(3078), - [aux_sym_preproc_if_token1] = ACTIONS(3078), - [aux_sym_preproc_if_token2] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3078), - [aux_sym_preproc_else_token1] = ACTIONS(3078), - [aux_sym_preproc_elif_token1] = ACTIONS(3078), - [sym_preproc_directive] = ACTIONS(3078), - [anon_sym_LPAREN2] = ACTIONS(3080), - [anon_sym_TILDE] = ACTIONS(3080), - [anon_sym_STAR] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym___extension__] = ACTIONS(3078), - [anon_sym_typedef] = ACTIONS(3078), - [anon_sym_extern] = ACTIONS(3078), - [anon_sym___attribute__] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3080), - [anon_sym___declspec] = ACTIONS(3078), - [anon_sym___based] = ACTIONS(3078), - [anon_sym_signed] = ACTIONS(3078), - [anon_sym_unsigned] = ACTIONS(3078), - [anon_sym_long] = ACTIONS(3078), - [anon_sym_short] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_static] = ACTIONS(3078), - [anon_sym_register] = ACTIONS(3078), - [anon_sym_inline] = ACTIONS(3078), - [anon_sym___inline] = ACTIONS(3078), - [anon_sym___inline__] = ACTIONS(3078), - [anon_sym___forceinline] = ACTIONS(3078), - [anon_sym_thread_local] = ACTIONS(3078), - [anon_sym___thread] = ACTIONS(3078), - [anon_sym_const] = ACTIONS(3078), - [anon_sym_constexpr] = ACTIONS(3078), - [anon_sym_volatile] = ACTIONS(3078), - [anon_sym_restrict] = ACTIONS(3078), - [anon_sym___restrict__] = ACTIONS(3078), - [anon_sym__Atomic] = ACTIONS(3078), - [anon_sym__Noreturn] = ACTIONS(3078), - [anon_sym_noreturn] = ACTIONS(3078), - [anon_sym_mutable] = ACTIONS(3078), - [anon_sym_constinit] = ACTIONS(3078), - [anon_sym_consteval] = ACTIONS(3078), - [sym_primitive_type] = ACTIONS(3078), - [anon_sym_enum] = ACTIONS(3078), - [anon_sym_class] = ACTIONS(3078), - [anon_sym_struct] = ACTIONS(3078), - [anon_sym_union] = ACTIONS(3078), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3078), - [anon_sym_decltype] = ACTIONS(3078), - [anon_sym_virtual] = ACTIONS(3078), - [anon_sym_alignas] = ACTIONS(3078), - [anon_sym_explicit] = ACTIONS(3078), - [anon_sym_typename] = ACTIONS(3078), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_operator] = ACTIONS(3078), - [anon_sym_friend] = ACTIONS(3078), - [anon_sym_public] = ACTIONS(3078), - [anon_sym_private] = ACTIONS(3078), - [anon_sym_protected] = ACTIONS(3078), - [anon_sym_using] = ACTIONS(3078), - [anon_sym_static_assert] = ACTIONS(3078), - [anon_sym_catch] = ACTIONS(3078), - }, - [2082] = { - [sym_identifier] = ACTIONS(3096), - [aux_sym_preproc_def_token1] = ACTIONS(3096), - [aux_sym_preproc_if_token1] = ACTIONS(3096), - [aux_sym_preproc_if_token2] = ACTIONS(3096), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3096), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3096), - [aux_sym_preproc_else_token1] = ACTIONS(3096), - [aux_sym_preproc_elif_token1] = ACTIONS(3096), - [sym_preproc_directive] = ACTIONS(3096), - [anon_sym_LPAREN2] = ACTIONS(3094), - [anon_sym_TILDE] = ACTIONS(3094), - [anon_sym_STAR] = ACTIONS(3094), - [anon_sym_AMP_AMP] = ACTIONS(3094), - [anon_sym_AMP] = ACTIONS(3096), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_typedef] = ACTIONS(3096), - [anon_sym_extern] = ACTIONS(3096), - [anon_sym___attribute__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(3094), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3094), - [anon_sym___declspec] = ACTIONS(3096), - [anon_sym___based] = ACTIONS(3096), - [anon_sym_signed] = ACTIONS(3096), - [anon_sym_unsigned] = ACTIONS(3096), - [anon_sym_long] = ACTIONS(3096), - [anon_sym_short] = ACTIONS(3096), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_static] = ACTIONS(3096), - [anon_sym_register] = ACTIONS(3096), - [anon_sym_inline] = ACTIONS(3096), - [anon_sym___inline] = ACTIONS(3096), - [anon_sym___inline__] = ACTIONS(3096), - [anon_sym___forceinline] = ACTIONS(3096), - [anon_sym_thread_local] = ACTIONS(3096), - [anon_sym___thread] = ACTIONS(3096), - [anon_sym_const] = ACTIONS(3096), - [anon_sym_constexpr] = ACTIONS(3096), - [anon_sym_volatile] = ACTIONS(3096), - [anon_sym_restrict] = ACTIONS(3096), - [anon_sym___restrict__] = ACTIONS(3096), - [anon_sym__Atomic] = ACTIONS(3096), - [anon_sym__Noreturn] = ACTIONS(3096), - [anon_sym_noreturn] = ACTIONS(3096), - [anon_sym_mutable] = ACTIONS(3096), - [anon_sym_constinit] = ACTIONS(3096), - [anon_sym_consteval] = ACTIONS(3096), - [sym_primitive_type] = ACTIONS(3096), - [anon_sym_enum] = ACTIONS(3096), - [anon_sym_class] = ACTIONS(3096), - [anon_sym_struct] = ACTIONS(3096), - [anon_sym_union] = ACTIONS(3096), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3096), - [anon_sym_decltype] = ACTIONS(3096), - [anon_sym_virtual] = ACTIONS(3096), - [anon_sym_alignas] = ACTIONS(3096), - [anon_sym_explicit] = ACTIONS(3096), - [anon_sym_typename] = ACTIONS(3096), - [anon_sym_template] = ACTIONS(3096), - [anon_sym_operator] = ACTIONS(3096), - [anon_sym_friend] = ACTIONS(3096), - [anon_sym_public] = ACTIONS(3096), - [anon_sym_private] = ACTIONS(3096), - [anon_sym_protected] = ACTIONS(3096), - [anon_sym_using] = ACTIONS(3096), - [anon_sym_static_assert] = ACTIONS(3096), - [anon_sym_catch] = ACTIONS(3096), - }, - [2083] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2076), - [ts_builtin_sym_end] = ACTIONS(6005), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6005), - [anon_sym_COMMA] = ACTIONS(6005), - [anon_sym_RPAREN] = ACTIONS(6005), - [anon_sym_LPAREN2] = ACTIONS(6005), - [anon_sym_DASH] = ACTIONS(6007), - [anon_sym_PLUS] = ACTIONS(6007), - [anon_sym_STAR] = ACTIONS(6005), - [anon_sym_SLASH] = ACTIONS(6007), - [anon_sym_PERCENT] = ACTIONS(6005), - [anon_sym_PIPE_PIPE] = ACTIONS(6005), - [anon_sym_AMP_AMP] = ACTIONS(6005), - [anon_sym_PIPE] = ACTIONS(6007), - [anon_sym_CARET] = ACTIONS(6005), - [anon_sym_AMP] = ACTIONS(6007), - [anon_sym_EQ_EQ] = ACTIONS(6005), - [anon_sym_BANG_EQ] = ACTIONS(6005), - [anon_sym_GT] = ACTIONS(6007), - [anon_sym_GT_EQ] = ACTIONS(6005), - [anon_sym_LT_EQ] = ACTIONS(6007), - [anon_sym_LT] = ACTIONS(6007), - [anon_sym_LT_LT] = ACTIONS(6005), - [anon_sym_GT_GT] = ACTIONS(6005), - [anon_sym_SEMI] = ACTIONS(6005), - [anon_sym___extension__] = ACTIONS(6005), - [anon_sym___attribute__] = ACTIONS(6005), - [anon_sym_LBRACE] = ACTIONS(6005), - [anon_sym_RBRACE] = ACTIONS(6005), - [anon_sym_signed] = ACTIONS(6009), - [anon_sym_unsigned] = ACTIONS(6009), - [anon_sym_long] = ACTIONS(6009), - [anon_sym_short] = ACTIONS(6009), - [anon_sym_LBRACK] = ACTIONS(6005), - [anon_sym_RBRACK] = ACTIONS(6005), - [anon_sym_const] = ACTIONS(6007), - [anon_sym_constexpr] = ACTIONS(6005), - [anon_sym_volatile] = ACTIONS(6005), - [anon_sym_restrict] = ACTIONS(6005), - [anon_sym___restrict__] = ACTIONS(6005), - [anon_sym__Atomic] = ACTIONS(6005), - [anon_sym__Noreturn] = ACTIONS(6005), - [anon_sym_noreturn] = ACTIONS(6005), - [anon_sym_mutable] = ACTIONS(6005), - [anon_sym_constinit] = ACTIONS(6005), - [anon_sym_consteval] = ACTIONS(6005), - [anon_sym_COLON] = ACTIONS(6005), - [anon_sym_QMARK] = ACTIONS(6005), - [anon_sym_LT_EQ_GT] = ACTIONS(6005), - [anon_sym_or] = ACTIONS(6005), - [anon_sym_and] = ACTIONS(6005), - [anon_sym_bitor] = ACTIONS(6005), - [anon_sym_xor] = ACTIONS(6005), - [anon_sym_bitand] = ACTIONS(6005), - [anon_sym_not_eq] = ACTIONS(6005), - [anon_sym_DASH_DASH] = ACTIONS(6005), - [anon_sym_PLUS_PLUS] = ACTIONS(6005), - [anon_sym_DOT] = ACTIONS(6007), - [anon_sym_DOT_STAR] = ACTIONS(6005), - [anon_sym_DASH_GT] = ACTIONS(6005), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6005), - [anon_sym_decltype] = ACTIONS(6005), - [anon_sym_final] = ACTIONS(6005), - [anon_sym_override] = ACTIONS(6005), - [anon_sym_requires] = ACTIONS(6005), - [sym_semgrep_metavar] = ACTIONS(6005), - }, - [2084] = { - [sym_string_literal] = STATE(2409), - [sym_template_argument_list] = STATE(4384), - [sym_raw_string_literal] = STATE(2409), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_RPAREN] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(4829), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(6011), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_EQ] = ACTIONS(4837), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4829), - [anon_sym_SLASH_EQ] = ACTIONS(4829), - [anon_sym_PERCENT_EQ] = ACTIONS(4829), - [anon_sym_PLUS_EQ] = ACTIONS(4829), - [anon_sym_DASH_EQ] = ACTIONS(4829), - [anon_sym_LT_LT_EQ] = ACTIONS(4829), - [anon_sym_GT_GT_EQ] = ACTIONS(4829), - [anon_sym_AMP_EQ] = ACTIONS(4829), - [anon_sym_CARET_EQ] = ACTIONS(4829), - [anon_sym_PIPE_EQ] = ACTIONS(4829), - [anon_sym_and_eq] = ACTIONS(6014), - [anon_sym_or_eq] = ACTIONS(6014), - [anon_sym_xor_eq] = ACTIONS(6014), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4829), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4829), - [anon_sym_not_eq] = ACTIONS(4829), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4837), - [anon_sym_L_DQUOTE] = ACTIONS(4876), - [anon_sym_u_DQUOTE] = ACTIONS(4876), - [anon_sym_U_DQUOTE] = ACTIONS(4876), - [anon_sym_u8_DQUOTE] = ACTIONS(4876), - [anon_sym_DQUOTE] = ACTIONS(4876), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(4878), - [anon_sym_LR_DQUOTE] = ACTIONS(4878), - [anon_sym_uR_DQUOTE] = ACTIONS(4878), - [anon_sym_UR_DQUOTE] = ACTIONS(4878), - [anon_sym_u8R_DQUOTE] = ACTIONS(4878), - [anon_sym_DASH_GT_STAR] = ACTIONS(4829), - }, - [2085] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1908), - [ts_builtin_sym_end] = ACTIONS(6016), - [sym_identifier] = ACTIONS(5699), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6016), - [anon_sym_COMMA] = ACTIONS(6016), - [anon_sym_RPAREN] = ACTIONS(6016), - [anon_sym_LPAREN2] = ACTIONS(6016), - [anon_sym_DASH] = ACTIONS(6019), - [anon_sym_PLUS] = ACTIONS(6019), - [anon_sym_STAR] = ACTIONS(6019), - [anon_sym_SLASH] = ACTIONS(6019), - [anon_sym_PERCENT] = ACTIONS(6019), - [anon_sym_PIPE_PIPE] = ACTIONS(6016), - [anon_sym_AMP_AMP] = ACTIONS(6016), - [anon_sym_PIPE] = ACTIONS(6019), - [anon_sym_CARET] = ACTIONS(6019), - [anon_sym_AMP] = ACTIONS(6019), - [anon_sym_EQ_EQ] = ACTIONS(6016), - [anon_sym_BANG_EQ] = ACTIONS(6016), - [anon_sym_GT] = ACTIONS(6019), - [anon_sym_GT_EQ] = ACTIONS(6016), - [anon_sym_LT_EQ] = ACTIONS(6019), - [anon_sym_LT] = ACTIONS(6019), - [anon_sym_LT_LT] = ACTIONS(6019), - [anon_sym_GT_GT] = ACTIONS(6019), - [anon_sym_SEMI] = ACTIONS(6016), - [anon_sym___attribute__] = ACTIONS(6019), - [anon_sym_LBRACE] = ACTIONS(6016), - [anon_sym_RBRACE] = ACTIONS(6016), - [anon_sym_signed] = ACTIONS(5701), - [anon_sym_unsigned] = ACTIONS(5701), - [anon_sym_long] = ACTIONS(5701), - [anon_sym_short] = ACTIONS(5701), - [anon_sym_LBRACK] = ACTIONS(6016), - [anon_sym_RBRACK] = ACTIONS(6016), - [anon_sym_EQ] = ACTIONS(6019), - [sym_primitive_type] = ACTIONS(5699), - [anon_sym_COLON] = ACTIONS(6016), - [anon_sym_QMARK] = ACTIONS(6016), - [anon_sym_STAR_EQ] = ACTIONS(6016), - [anon_sym_SLASH_EQ] = ACTIONS(6016), - [anon_sym_PERCENT_EQ] = ACTIONS(6016), - [anon_sym_PLUS_EQ] = ACTIONS(6016), - [anon_sym_DASH_EQ] = ACTIONS(6016), - [anon_sym_LT_LT_EQ] = ACTIONS(6016), - [anon_sym_GT_GT_EQ] = ACTIONS(6016), - [anon_sym_AMP_EQ] = ACTIONS(6016), - [anon_sym_CARET_EQ] = ACTIONS(6016), - [anon_sym_PIPE_EQ] = ACTIONS(6016), - [anon_sym_and_eq] = ACTIONS(6019), - [anon_sym_or_eq] = ACTIONS(6019), - [anon_sym_xor_eq] = ACTIONS(6019), - [anon_sym_LT_EQ_GT] = ACTIONS(6016), - [anon_sym_or] = ACTIONS(6019), - [anon_sym_and] = ACTIONS(6019), - [anon_sym_bitor] = ACTIONS(6019), - [anon_sym_xor] = ACTIONS(6019), - [anon_sym_bitand] = ACTIONS(6019), - [anon_sym_not_eq] = ACTIONS(6019), - [anon_sym_DASH_DASH] = ACTIONS(6016), - [anon_sym_PLUS_PLUS] = ACTIONS(6016), - [anon_sym_DOT] = ACTIONS(6019), - [anon_sym_DOT_STAR] = ACTIONS(6016), - [anon_sym_DASH_GT] = ACTIONS(6016), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6019), - [anon_sym_decltype] = ACTIONS(6019), - }, - [2086] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6584), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4853), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(4837), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5548), - [anon_sym___extension__] = ACTIONS(65), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - }, - [2087] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2085), - [ts_builtin_sym_end] = ACTIONS(6022), - [sym_identifier] = ACTIONS(6024), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6022), - [anon_sym_COMMA] = ACTIONS(6022), - [anon_sym_RPAREN] = ACTIONS(6022), - [anon_sym_LPAREN2] = ACTIONS(6022), - [anon_sym_DASH] = ACTIONS(6026), - [anon_sym_PLUS] = ACTIONS(6026), - [anon_sym_STAR] = ACTIONS(6026), - [anon_sym_SLASH] = ACTIONS(6026), - [anon_sym_PERCENT] = ACTIONS(6026), - [anon_sym_PIPE_PIPE] = ACTIONS(6022), - [anon_sym_AMP_AMP] = ACTIONS(6022), - [anon_sym_PIPE] = ACTIONS(6026), - [anon_sym_CARET] = ACTIONS(6026), - [anon_sym_AMP] = ACTIONS(6026), - [anon_sym_EQ_EQ] = ACTIONS(6022), - [anon_sym_BANG_EQ] = ACTIONS(6022), - [anon_sym_GT] = ACTIONS(6026), - [anon_sym_GT_EQ] = ACTIONS(6022), - [anon_sym_LT_EQ] = ACTIONS(6026), - [anon_sym_LT] = ACTIONS(6026), - [anon_sym_LT_LT] = ACTIONS(6026), - [anon_sym_GT_GT] = ACTIONS(6026), - [anon_sym_SEMI] = ACTIONS(6022), - [anon_sym___attribute__] = ACTIONS(6026), - [anon_sym_LBRACE] = ACTIONS(6022), - [anon_sym_RBRACE] = ACTIONS(6022), - [anon_sym_signed] = ACTIONS(6028), - [anon_sym_unsigned] = ACTIONS(6028), - [anon_sym_long] = ACTIONS(6028), - [anon_sym_short] = ACTIONS(6028), - [anon_sym_LBRACK] = ACTIONS(6022), - [anon_sym_RBRACK] = ACTIONS(6022), - [anon_sym_EQ] = ACTIONS(6026), - [sym_primitive_type] = ACTIONS(6030), - [anon_sym_COLON] = ACTIONS(6022), - [anon_sym_QMARK] = ACTIONS(6022), - [anon_sym_STAR_EQ] = ACTIONS(6022), - [anon_sym_SLASH_EQ] = ACTIONS(6022), - [anon_sym_PERCENT_EQ] = ACTIONS(6022), - [anon_sym_PLUS_EQ] = ACTIONS(6022), - [anon_sym_DASH_EQ] = ACTIONS(6022), - [anon_sym_LT_LT_EQ] = ACTIONS(6022), - [anon_sym_GT_GT_EQ] = ACTIONS(6022), - [anon_sym_AMP_EQ] = ACTIONS(6022), - [anon_sym_CARET_EQ] = ACTIONS(6022), - [anon_sym_PIPE_EQ] = ACTIONS(6022), - [anon_sym_and_eq] = ACTIONS(6026), - [anon_sym_or_eq] = ACTIONS(6026), - [anon_sym_xor_eq] = ACTIONS(6026), - [anon_sym_LT_EQ_GT] = ACTIONS(6022), - [anon_sym_or] = ACTIONS(6026), - [anon_sym_and] = ACTIONS(6026), - [anon_sym_bitor] = ACTIONS(6026), - [anon_sym_xor] = ACTIONS(6026), - [anon_sym_bitand] = ACTIONS(6026), - [anon_sym_not_eq] = ACTIONS(6026), - [anon_sym_DASH_DASH] = ACTIONS(6022), - [anon_sym_PLUS_PLUS] = ACTIONS(6022), - [anon_sym_DOT] = ACTIONS(6026), - [anon_sym_DOT_STAR] = ACTIONS(6022), - [anon_sym_DASH_GT] = ACTIONS(6022), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6026), - [anon_sym_decltype] = ACTIONS(6026), - }, - [2088] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5522), - [anon_sym_COMMA] = ACTIONS(5522), - [anon_sym_LPAREN2] = ACTIONS(5522), - [anon_sym_DASH] = ACTIONS(5527), - [anon_sym_PLUS] = ACTIONS(5527), - [anon_sym_STAR] = ACTIONS(5529), - [anon_sym_SLASH] = ACTIONS(5527), - [anon_sym_PERCENT] = ACTIONS(5527), - [anon_sym_PIPE_PIPE] = ACTIONS(5520), - [anon_sym_AMP_AMP] = ACTIONS(5522), - [anon_sym_PIPE] = ACTIONS(5527), - [anon_sym_CARET] = ACTIONS(5527), - [anon_sym_AMP] = ACTIONS(5529), - [anon_sym_EQ_EQ] = ACTIONS(5520), - [anon_sym_BANG_EQ] = ACTIONS(5520), - [anon_sym_GT] = ACTIONS(5527), - [anon_sym_GT_EQ] = ACTIONS(5527), - [anon_sym_LT_EQ] = ACTIONS(5527), - [anon_sym_LT] = ACTIONS(5527), - [anon_sym_LT_LT] = ACTIONS(5527), - [anon_sym_GT_GT] = ACTIONS(5527), - [anon_sym___extension__] = ACTIONS(5525), - [anon_sym_COLON_COLON] = ACTIONS(5525), - [anon_sym_LBRACE] = ACTIONS(5525), - [anon_sym_LBRACK] = ACTIONS(5522), - [anon_sym_EQ] = ACTIONS(5527), - [anon_sym_const] = ACTIONS(5518), - [anon_sym_constexpr] = ACTIONS(5525), - [anon_sym_volatile] = ACTIONS(5525), - [anon_sym_restrict] = ACTIONS(5525), - [anon_sym___restrict__] = ACTIONS(5525), - [anon_sym__Atomic] = ACTIONS(5525), - [anon_sym__Noreturn] = ACTIONS(5525), - [anon_sym_noreturn] = ACTIONS(5525), - [anon_sym_mutable] = ACTIONS(5525), - [anon_sym_constinit] = ACTIONS(5525), - [anon_sym_consteval] = ACTIONS(5525), - [anon_sym_QMARK] = ACTIONS(5520), - [anon_sym_STAR_EQ] = ACTIONS(5520), - [anon_sym_SLASH_EQ] = ACTIONS(5520), - [anon_sym_PERCENT_EQ] = ACTIONS(5520), - [anon_sym_PLUS_EQ] = ACTIONS(5520), - [anon_sym_DASH_EQ] = ACTIONS(5520), - [anon_sym_LT_LT_EQ] = ACTIONS(5520), - [anon_sym_GT_GT_EQ] = ACTIONS(5527), - [anon_sym_AMP_EQ] = ACTIONS(5520), - [anon_sym_CARET_EQ] = ACTIONS(5520), - [anon_sym_PIPE_EQ] = ACTIONS(5520), - [anon_sym_and_eq] = ACTIONS(5520), - [anon_sym_or_eq] = ACTIONS(5520), - [anon_sym_xor_eq] = ACTIONS(5520), - [anon_sym_LT_EQ_GT] = ACTIONS(5520), - [anon_sym_or] = ACTIONS(5527), - [anon_sym_and] = ACTIONS(5527), - [anon_sym_bitor] = ACTIONS(5520), - [anon_sym_xor] = ACTIONS(5527), - [anon_sym_bitand] = ACTIONS(5520), - [anon_sym_not_eq] = ACTIONS(5520), - [anon_sym_DASH_DASH] = ACTIONS(5520), - [anon_sym_PLUS_PLUS] = ACTIONS(5520), - [anon_sym_DOT] = ACTIONS(5527), - [anon_sym_DOT_STAR] = ACTIONS(5520), - [anon_sym_DASH_GT] = ACTIONS(5520), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5525), - [anon_sym_decltype] = ACTIONS(5525), - [anon_sym_GT2] = ACTIONS(5522), - }, - [2089] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2079), - [ts_builtin_sym_end] = ACTIONS(6032), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6032), - [anon_sym_COMMA] = ACTIONS(6032), - [anon_sym_RPAREN] = ACTIONS(6032), - [anon_sym_LPAREN2] = ACTIONS(6032), - [anon_sym_DASH] = ACTIONS(6034), - [anon_sym_PLUS] = ACTIONS(6034), - [anon_sym_STAR] = ACTIONS(6032), - [anon_sym_SLASH] = ACTIONS(6034), - [anon_sym_PERCENT] = ACTIONS(6032), - [anon_sym_PIPE_PIPE] = ACTIONS(6032), - [anon_sym_AMP_AMP] = ACTIONS(6032), - [anon_sym_PIPE] = ACTIONS(6034), - [anon_sym_CARET] = ACTIONS(6032), - [anon_sym_AMP] = ACTIONS(6034), - [anon_sym_EQ_EQ] = ACTIONS(6032), - [anon_sym_BANG_EQ] = ACTIONS(6032), - [anon_sym_GT] = ACTIONS(6034), - [anon_sym_GT_EQ] = ACTIONS(6032), - [anon_sym_LT_EQ] = ACTIONS(6034), - [anon_sym_LT] = ACTIONS(6034), - [anon_sym_LT_LT] = ACTIONS(6032), - [anon_sym_GT_GT] = ACTIONS(6032), - [anon_sym_SEMI] = ACTIONS(6032), - [anon_sym___extension__] = ACTIONS(6032), - [anon_sym___attribute__] = ACTIONS(6032), - [anon_sym_LBRACE] = ACTIONS(6032), - [anon_sym_RBRACE] = ACTIONS(6032), - [anon_sym_signed] = ACTIONS(5994), - [anon_sym_unsigned] = ACTIONS(5994), - [anon_sym_long] = ACTIONS(5994), - [anon_sym_short] = ACTIONS(5994), - [anon_sym_LBRACK] = ACTIONS(6032), - [anon_sym_RBRACK] = ACTIONS(6032), - [anon_sym_const] = ACTIONS(6034), - [anon_sym_constexpr] = ACTIONS(6032), - [anon_sym_volatile] = ACTIONS(6032), - [anon_sym_restrict] = ACTIONS(6032), - [anon_sym___restrict__] = ACTIONS(6032), - [anon_sym__Atomic] = ACTIONS(6032), - [anon_sym__Noreturn] = ACTIONS(6032), - [anon_sym_noreturn] = ACTIONS(6032), - [anon_sym_mutable] = ACTIONS(6032), - [anon_sym_constinit] = ACTIONS(6032), - [anon_sym_consteval] = ACTIONS(6032), - [anon_sym_COLON] = ACTIONS(6032), - [anon_sym_QMARK] = ACTIONS(6032), - [anon_sym_LT_EQ_GT] = ACTIONS(6032), - [anon_sym_or] = ACTIONS(6032), - [anon_sym_and] = ACTIONS(6032), - [anon_sym_bitor] = ACTIONS(6032), - [anon_sym_xor] = ACTIONS(6032), - [anon_sym_bitand] = ACTIONS(6032), - [anon_sym_not_eq] = ACTIONS(6032), - [anon_sym_DASH_DASH] = ACTIONS(6032), - [anon_sym_PLUS_PLUS] = ACTIONS(6032), - [anon_sym_DOT] = ACTIONS(6034), - [anon_sym_DOT_STAR] = ACTIONS(6032), - [anon_sym_DASH_GT] = ACTIONS(6032), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6032), - [anon_sym_decltype] = ACTIONS(6032), - [anon_sym_final] = ACTIONS(6032), - [anon_sym_override] = ACTIONS(6032), - [anon_sym_requires] = ACTIONS(6032), - [sym_semgrep_metavar] = ACTIONS(6032), - }, - [2090] = { - [sym_catch_clause] = STATE(2092), - [aux_sym_constructor_try_statement_repeat1] = STATE(2092), - [sym_identifier] = ACTIONS(3057), - [aux_sym_preproc_def_token1] = ACTIONS(3057), - [aux_sym_preproc_if_token1] = ACTIONS(3057), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3057), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3057), - [sym_preproc_directive] = ACTIONS(3057), - [anon_sym_LPAREN2] = ACTIONS(3059), - [anon_sym_TILDE] = ACTIONS(3059), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_AMP_AMP] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym___extension__] = ACTIONS(3057), - [anon_sym_typedef] = ACTIONS(3057), - [anon_sym_extern] = ACTIONS(3057), - [anon_sym___attribute__] = ACTIONS(3057), - [anon_sym_COLON_COLON] = ACTIONS(3059), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3059), - [anon_sym___declspec] = ACTIONS(3057), - [anon_sym___based] = ACTIONS(3057), - [anon_sym_RBRACE] = ACTIONS(3059), - [anon_sym_signed] = ACTIONS(3057), - [anon_sym_unsigned] = ACTIONS(3057), - [anon_sym_long] = ACTIONS(3057), - [anon_sym_short] = ACTIONS(3057), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_static] = ACTIONS(3057), - [anon_sym_register] = ACTIONS(3057), - [anon_sym_inline] = ACTIONS(3057), - [anon_sym___inline] = ACTIONS(3057), - [anon_sym___inline__] = ACTIONS(3057), - [anon_sym___forceinline] = ACTIONS(3057), - [anon_sym_thread_local] = ACTIONS(3057), - [anon_sym___thread] = ACTIONS(3057), - [anon_sym_const] = ACTIONS(3057), - [anon_sym_constexpr] = ACTIONS(3057), - [anon_sym_volatile] = ACTIONS(3057), - [anon_sym_restrict] = ACTIONS(3057), - [anon_sym___restrict__] = ACTIONS(3057), - [anon_sym__Atomic] = ACTIONS(3057), - [anon_sym__Noreturn] = ACTIONS(3057), - [anon_sym_noreturn] = ACTIONS(3057), - [anon_sym_mutable] = ACTIONS(3057), - [anon_sym_constinit] = ACTIONS(3057), - [anon_sym_consteval] = ACTIONS(3057), - [sym_primitive_type] = ACTIONS(3057), - [anon_sym_enum] = ACTIONS(3057), - [anon_sym_class] = ACTIONS(3057), - [anon_sym_struct] = ACTIONS(3057), - [anon_sym_union] = ACTIONS(3057), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3057), - [anon_sym_decltype] = ACTIONS(3057), - [anon_sym_virtual] = ACTIONS(3057), - [anon_sym_alignas] = ACTIONS(3057), - [anon_sym_explicit] = ACTIONS(3057), - [anon_sym_typename] = ACTIONS(3057), - [anon_sym_template] = ACTIONS(3057), - [anon_sym_operator] = ACTIONS(3057), - [anon_sym_friend] = ACTIONS(3057), - [anon_sym_public] = ACTIONS(3057), - [anon_sym_private] = ACTIONS(3057), - [anon_sym_protected] = ACTIONS(3057), - [anon_sym_using] = ACTIONS(3057), - [anon_sym_static_assert] = ACTIONS(3057), - [anon_sym_catch] = ACTIONS(6000), - }, - [2091] = { - [sym_string_literal] = STATE(2091), - [sym_raw_string_literal] = STATE(2091), - [aux_sym_concatenated_string_repeat1] = STATE(2091), - [sym_identifier] = ACTIONS(6036), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5630), - [anon_sym_COMMA] = ACTIONS(5630), - [anon_sym_LPAREN2] = ACTIONS(5630), - [anon_sym_DASH] = ACTIONS(5635), - [anon_sym_PLUS] = ACTIONS(5635), - [anon_sym_STAR] = ACTIONS(5635), - [anon_sym_SLASH] = ACTIONS(5635), - [anon_sym_PERCENT] = ACTIONS(5635), - [anon_sym_PIPE_PIPE] = ACTIONS(5630), - [anon_sym_AMP_AMP] = ACTIONS(5630), - [anon_sym_PIPE] = ACTIONS(5635), - [anon_sym_CARET] = ACTIONS(5635), - [anon_sym_AMP] = ACTIONS(5635), - [anon_sym_EQ_EQ] = ACTIONS(5630), - [anon_sym_BANG_EQ] = ACTIONS(5630), - [anon_sym_GT] = ACTIONS(5635), - [anon_sym_GT_EQ] = ACTIONS(5630), - [anon_sym_LT_EQ] = ACTIONS(5635), - [anon_sym_LT] = ACTIONS(5635), - [anon_sym_LT_LT] = ACTIONS(5635), - [anon_sym_GT_GT] = ACTIONS(5635), - [anon_sym_SEMI] = ACTIONS(5630), - [anon_sym___attribute__] = ACTIONS(5635), - [anon_sym_LBRACK] = ACTIONS(5630), - [anon_sym_EQ] = ACTIONS(5635), - [anon_sym_QMARK] = ACTIONS(5630), - [anon_sym_STAR_EQ] = ACTIONS(5630), - [anon_sym_SLASH_EQ] = ACTIONS(5630), - [anon_sym_PERCENT_EQ] = ACTIONS(5630), - [anon_sym_PLUS_EQ] = ACTIONS(5630), - [anon_sym_DASH_EQ] = ACTIONS(5630), - [anon_sym_LT_LT_EQ] = ACTIONS(5630), - [anon_sym_GT_GT_EQ] = ACTIONS(5630), - [anon_sym_AMP_EQ] = ACTIONS(5630), - [anon_sym_CARET_EQ] = ACTIONS(5630), - [anon_sym_PIPE_EQ] = ACTIONS(5630), - [anon_sym_and_eq] = ACTIONS(5635), - [anon_sym_or_eq] = ACTIONS(5635), - [anon_sym_xor_eq] = ACTIONS(5635), - [anon_sym_LT_EQ_GT] = ACTIONS(5630), - [anon_sym_or] = ACTIONS(5635), - [anon_sym_and] = ACTIONS(5635), - [anon_sym_bitor] = ACTIONS(5635), - [anon_sym_xor] = ACTIONS(5635), - [anon_sym_bitand] = ACTIONS(5635), - [anon_sym_not_eq] = ACTIONS(5635), - [anon_sym_DASH_DASH] = ACTIONS(5630), - [anon_sym_PLUS_PLUS] = ACTIONS(5630), - [anon_sym_DOT] = ACTIONS(5635), - [anon_sym_DOT_STAR] = ACTIONS(5630), - [anon_sym_DASH_GT] = ACTIONS(5630), - [anon_sym_L_DQUOTE] = ACTIONS(6039), - [anon_sym_u_DQUOTE] = ACTIONS(6039), - [anon_sym_U_DQUOTE] = ACTIONS(6039), - [anon_sym_u8_DQUOTE] = ACTIONS(6039), - [anon_sym_DQUOTE] = ACTIONS(6039), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(6042), - [anon_sym_LR_DQUOTE] = ACTIONS(6042), - [anon_sym_uR_DQUOTE] = ACTIONS(6042), - [anon_sym_UR_DQUOTE] = ACTIONS(6042), - [anon_sym_u8R_DQUOTE] = ACTIONS(6042), - [sym_literal_suffix] = ACTIONS(5635), - }, - [2092] = { - [sym_catch_clause] = STATE(2092), - [aux_sym_constructor_try_statement_repeat1] = STATE(2092), - [sym_identifier] = ACTIONS(3063), - [aux_sym_preproc_def_token1] = ACTIONS(3063), - [aux_sym_preproc_if_token1] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3063), - [sym_preproc_directive] = ACTIONS(3063), - [anon_sym_LPAREN2] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3063), - [anon_sym___extension__] = ACTIONS(3063), - [anon_sym_typedef] = ACTIONS(3063), - [anon_sym_extern] = ACTIONS(3063), - [anon_sym___attribute__] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(3065), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3065), - [anon_sym___declspec] = ACTIONS(3063), - [anon_sym___based] = ACTIONS(3063), - [anon_sym_RBRACE] = ACTIONS(3065), - [anon_sym_signed] = ACTIONS(3063), - [anon_sym_unsigned] = ACTIONS(3063), - [anon_sym_long] = ACTIONS(3063), - [anon_sym_short] = ACTIONS(3063), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_static] = ACTIONS(3063), - [anon_sym_register] = ACTIONS(3063), - [anon_sym_inline] = ACTIONS(3063), - [anon_sym___inline] = ACTIONS(3063), - [anon_sym___inline__] = ACTIONS(3063), - [anon_sym___forceinline] = ACTIONS(3063), - [anon_sym_thread_local] = ACTIONS(3063), - [anon_sym___thread] = ACTIONS(3063), - [anon_sym_const] = ACTIONS(3063), - [anon_sym_constexpr] = ACTIONS(3063), - [anon_sym_volatile] = ACTIONS(3063), - [anon_sym_restrict] = ACTIONS(3063), - [anon_sym___restrict__] = ACTIONS(3063), - [anon_sym__Atomic] = ACTIONS(3063), - [anon_sym__Noreturn] = ACTIONS(3063), - [anon_sym_noreturn] = ACTIONS(3063), - [anon_sym_mutable] = ACTIONS(3063), - [anon_sym_constinit] = ACTIONS(3063), - [anon_sym_consteval] = ACTIONS(3063), - [sym_primitive_type] = ACTIONS(3063), - [anon_sym_enum] = ACTIONS(3063), - [anon_sym_class] = ACTIONS(3063), - [anon_sym_struct] = ACTIONS(3063), - [anon_sym_union] = ACTIONS(3063), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3063), - [anon_sym_decltype] = ACTIONS(3063), - [anon_sym_virtual] = ACTIONS(3063), - [anon_sym_alignas] = ACTIONS(3063), - [anon_sym_explicit] = ACTIONS(3063), - [anon_sym_typename] = ACTIONS(3063), - [anon_sym_template] = ACTIONS(3063), - [anon_sym_operator] = ACTIONS(3063), - [anon_sym_friend] = ACTIONS(3063), - [anon_sym_public] = ACTIONS(3063), - [anon_sym_private] = ACTIONS(3063), - [anon_sym_protected] = ACTIONS(3063), - [anon_sym_using] = ACTIONS(3063), - [anon_sym_static_assert] = ACTIONS(3063), - [anon_sym_catch] = ACTIONS(6045), - }, - [2093] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2077), - [ts_builtin_sym_end] = ACTIONS(6048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6048), - [anon_sym_COMMA] = ACTIONS(6048), - [anon_sym_RPAREN] = ACTIONS(6048), - [anon_sym_LPAREN2] = ACTIONS(6048), - [anon_sym_DASH] = ACTIONS(6050), - [anon_sym_PLUS] = ACTIONS(6050), - [anon_sym_STAR] = ACTIONS(6048), - [anon_sym_SLASH] = ACTIONS(6050), - [anon_sym_PERCENT] = ACTIONS(6048), - [anon_sym_PIPE_PIPE] = ACTIONS(6048), - [anon_sym_AMP_AMP] = ACTIONS(6048), - [anon_sym_PIPE] = ACTIONS(6050), - [anon_sym_CARET] = ACTIONS(6048), - [anon_sym_AMP] = ACTIONS(6050), - [anon_sym_EQ_EQ] = ACTIONS(6048), - [anon_sym_BANG_EQ] = ACTIONS(6048), - [anon_sym_GT] = ACTIONS(6050), - [anon_sym_GT_EQ] = ACTIONS(6048), - [anon_sym_LT_EQ] = ACTIONS(6050), - [anon_sym_LT] = ACTIONS(6050), - [anon_sym_LT_LT] = ACTIONS(6048), - [anon_sym_GT_GT] = ACTIONS(6048), - [anon_sym_SEMI] = ACTIONS(6048), - [anon_sym___extension__] = ACTIONS(6048), - [anon_sym___attribute__] = ACTIONS(6048), - [anon_sym_LBRACE] = ACTIONS(6048), - [anon_sym_RBRACE] = ACTIONS(6048), - [anon_sym_signed] = ACTIONS(6052), - [anon_sym_unsigned] = ACTIONS(6052), - [anon_sym_long] = ACTIONS(6052), - [anon_sym_short] = ACTIONS(6052), - [anon_sym_LBRACK] = ACTIONS(6048), - [anon_sym_RBRACK] = ACTIONS(6048), - [anon_sym_const] = ACTIONS(6050), - [anon_sym_constexpr] = ACTIONS(6048), - [anon_sym_volatile] = ACTIONS(6048), - [anon_sym_restrict] = ACTIONS(6048), - [anon_sym___restrict__] = ACTIONS(6048), - [anon_sym__Atomic] = ACTIONS(6048), - [anon_sym__Noreturn] = ACTIONS(6048), - [anon_sym_noreturn] = ACTIONS(6048), - [anon_sym_mutable] = ACTIONS(6048), - [anon_sym_constinit] = ACTIONS(6048), - [anon_sym_consteval] = ACTIONS(6048), - [anon_sym_COLON] = ACTIONS(6048), - [anon_sym_QMARK] = ACTIONS(6048), - [anon_sym_LT_EQ_GT] = ACTIONS(6048), - [anon_sym_or] = ACTIONS(6048), - [anon_sym_and] = ACTIONS(6048), - [anon_sym_bitor] = ACTIONS(6048), - [anon_sym_xor] = ACTIONS(6048), - [anon_sym_bitand] = ACTIONS(6048), - [anon_sym_not_eq] = ACTIONS(6048), - [anon_sym_DASH_DASH] = ACTIONS(6048), - [anon_sym_PLUS_PLUS] = ACTIONS(6048), - [anon_sym_DOT] = ACTIONS(6050), - [anon_sym_DOT_STAR] = ACTIONS(6048), - [anon_sym_DASH_GT] = ACTIONS(6048), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6048), - [anon_sym_decltype] = ACTIONS(6048), - [anon_sym_final] = ACTIONS(6048), - [anon_sym_override] = ACTIONS(6048), - [anon_sym_requires] = ACTIONS(6048), - [sym_semgrep_metavar] = ACTIONS(6048), - }, - [2094] = { - [sym_template_argument_list] = STATE(2553), - [aux_sym_sized_type_specifier_repeat1] = STATE(2246), - [ts_builtin_sym_end] = ACTIONS(4835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4835), - [anon_sym_COMMA] = ACTIONS(4835), - [anon_sym_RPAREN] = ACTIONS(4835), - [anon_sym_LPAREN2] = ACTIONS(4835), - [anon_sym_DASH] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(4827), - [anon_sym_STAR] = ACTIONS(4827), - [anon_sym_SLASH] = ACTIONS(4827), - [anon_sym_PERCENT] = ACTIONS(4827), - [anon_sym_PIPE_PIPE] = ACTIONS(4835), - [anon_sym_AMP_AMP] = ACTIONS(4835), - [anon_sym_PIPE] = ACTIONS(4827), - [anon_sym_CARET] = ACTIONS(4827), - [anon_sym_AMP] = ACTIONS(4827), - [anon_sym_EQ_EQ] = ACTIONS(4835), - [anon_sym_BANG_EQ] = ACTIONS(4835), - [anon_sym_GT] = ACTIONS(4827), - [anon_sym_GT_EQ] = ACTIONS(4835), - [anon_sym_LT_EQ] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(6054), - [anon_sym_LT_LT] = ACTIONS(4827), - [anon_sym_GT_GT] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(4835), - [anon_sym___attribute__] = ACTIONS(4835), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(4835), - [anon_sym_RBRACE] = ACTIONS(4835), - [anon_sym_signed] = ACTIONS(6056), - [anon_sym_unsigned] = ACTIONS(6056), - [anon_sym_long] = ACTIONS(6056), - [anon_sym_short] = ACTIONS(6056), - [anon_sym_LBRACK] = ACTIONS(4835), - [anon_sym_RBRACK] = ACTIONS(4835), - [anon_sym_EQ] = ACTIONS(4827), - [anon_sym_COLON] = ACTIONS(4827), - [anon_sym_QMARK] = ACTIONS(4835), - [anon_sym_STAR_EQ] = ACTIONS(4835), - [anon_sym_SLASH_EQ] = ACTIONS(4835), - [anon_sym_PERCENT_EQ] = ACTIONS(4835), - [anon_sym_PLUS_EQ] = ACTIONS(4835), - [anon_sym_DASH_EQ] = ACTIONS(4835), - [anon_sym_LT_LT_EQ] = ACTIONS(4835), - [anon_sym_GT_GT_EQ] = ACTIONS(4835), - [anon_sym_AMP_EQ] = ACTIONS(4835), - [anon_sym_CARET_EQ] = ACTIONS(4835), - [anon_sym_PIPE_EQ] = ACTIONS(4835), - [anon_sym_and_eq] = ACTIONS(4835), - [anon_sym_or_eq] = ACTIONS(4835), - [anon_sym_xor_eq] = ACTIONS(4835), - [anon_sym_LT_EQ_GT] = ACTIONS(4835), - [anon_sym_or] = ACTIONS(4827), - [anon_sym_and] = ACTIONS(4827), - [anon_sym_bitor] = ACTIONS(4835), - [anon_sym_xor] = ACTIONS(4827), - [anon_sym_bitand] = ACTIONS(4835), - [anon_sym_not_eq] = ACTIONS(4835), - [anon_sym_DASH_DASH] = ACTIONS(4835), - [anon_sym_PLUS_PLUS] = ACTIONS(4835), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_DOT_STAR] = ACTIONS(4835), - [anon_sym_DASH_GT] = ACTIONS(4835), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4835), - [anon_sym_decltype] = ACTIONS(4835), - }, - [2095] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6564), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4853), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(4837), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5548), - [anon_sym___extension__] = ACTIONS(65), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - }, - [2096] = { - [sym_string_literal] = STATE(2640), - [sym_template_argument_list] = STATE(5014), - [sym_raw_string_literal] = STATE(2640), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(4829), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(5764), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_EQ] = ACTIONS(4861), - [anon_sym_COLON] = ACTIONS(4888), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4865), - [anon_sym_SLASH_EQ] = ACTIONS(4865), - [anon_sym_PERCENT_EQ] = ACTIONS(4865), - [anon_sym_PLUS_EQ] = ACTIONS(4865), - [anon_sym_DASH_EQ] = ACTIONS(4865), - [anon_sym_LT_LT_EQ] = ACTIONS(4865), - [anon_sym_GT_GT_EQ] = ACTIONS(4865), - [anon_sym_AMP_EQ] = ACTIONS(4865), - [anon_sym_CARET_EQ] = ACTIONS(4865), - [anon_sym_PIPE_EQ] = ACTIONS(4865), - [anon_sym_and_eq] = ACTIONS(4865), - [anon_sym_or_eq] = ACTIONS(4865), - [anon_sym_xor_eq] = ACTIONS(4865), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4829), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4829), - [anon_sym_not_eq] = ACTIONS(4829), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - }, - [2097] = { - [sym_string_literal] = STATE(2069), - [sym_raw_string_literal] = STATE(2069), - [aux_sym_concatenated_string_repeat1] = STATE(2069), - [sym_identifier] = ACTIONS(6058), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5643), - [anon_sym_COMMA] = ACTIONS(5643), - [anon_sym_RPAREN] = ACTIONS(5643), - [anon_sym_LPAREN2] = ACTIONS(5643), - [anon_sym_DASH] = ACTIONS(5647), - [anon_sym_PLUS] = ACTIONS(5647), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5647), - [anon_sym_PERCENT] = ACTIONS(5647), - [anon_sym_PIPE_PIPE] = ACTIONS(5643), - [anon_sym_AMP_AMP] = ACTIONS(5643), - [anon_sym_PIPE] = ACTIONS(5647), - [anon_sym_CARET] = ACTIONS(5647), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5643), - [anon_sym_BANG_EQ] = ACTIONS(5643), - [anon_sym_GT] = ACTIONS(5647), - [anon_sym_GT_EQ] = ACTIONS(5643), - [anon_sym_LT_EQ] = ACTIONS(5647), - [anon_sym_LT] = ACTIONS(5647), - [anon_sym_LT_LT] = ACTIONS(5647), - [anon_sym_GT_GT] = ACTIONS(5647), - [anon_sym_LBRACK] = ACTIONS(5643), - [anon_sym_EQ] = ACTIONS(5647), - [anon_sym_QMARK] = ACTIONS(5643), - [anon_sym_STAR_EQ] = ACTIONS(5643), - [anon_sym_SLASH_EQ] = ACTIONS(5643), - [anon_sym_PERCENT_EQ] = ACTIONS(5643), - [anon_sym_PLUS_EQ] = ACTIONS(5643), - [anon_sym_DASH_EQ] = ACTIONS(5643), - [anon_sym_LT_LT_EQ] = ACTIONS(5643), - [anon_sym_GT_GT_EQ] = ACTIONS(5643), - [anon_sym_AMP_EQ] = ACTIONS(5643), - [anon_sym_CARET_EQ] = ACTIONS(5643), - [anon_sym_PIPE_EQ] = ACTIONS(5643), - [anon_sym_and_eq] = ACTIONS(5647), - [anon_sym_or_eq] = ACTIONS(5647), - [anon_sym_xor_eq] = ACTIONS(5647), - [anon_sym_LT_EQ_GT] = ACTIONS(5643), - [anon_sym_or] = ACTIONS(5647), - [anon_sym_and] = ACTIONS(5647), - [anon_sym_bitor] = ACTIONS(5647), - [anon_sym_xor] = ACTIONS(5647), - [anon_sym_bitand] = ACTIONS(5647), - [anon_sym_not_eq] = ACTIONS(5647), - [anon_sym_DASH_DASH] = ACTIONS(5643), - [anon_sym_PLUS_PLUS] = ACTIONS(5643), - [anon_sym_DOT] = ACTIONS(5647), - [anon_sym_DOT_STAR] = ACTIONS(5643), - [anon_sym_DASH_GT] = ACTIONS(5647), - [anon_sym_L_DQUOTE] = ACTIONS(5492), - [anon_sym_u_DQUOTE] = ACTIONS(5492), - [anon_sym_U_DQUOTE] = ACTIONS(5492), - [anon_sym_u8_DQUOTE] = ACTIONS(5492), - [anon_sym_DQUOTE] = ACTIONS(5492), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5494), - [anon_sym_LR_DQUOTE] = ACTIONS(5494), - [anon_sym_uR_DQUOTE] = ACTIONS(5494), - [anon_sym_UR_DQUOTE] = ACTIONS(5494), - [anon_sym_u8R_DQUOTE] = ACTIONS(5494), - [anon_sym_DASH_GT_STAR] = ACTIONS(5643), - [sym_literal_suffix] = ACTIONS(5647), - }, - [2098] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6595), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4853), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(4837), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5548), - [anon_sym___extension__] = ACTIONS(65), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - }, - [2099] = { - [ts_builtin_sym_end] = ACTIONS(5677), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5677), - [anon_sym_COMMA] = ACTIONS(5677), - [anon_sym_RPAREN] = ACTIONS(5677), - [anon_sym_LPAREN2] = ACTIONS(5677), - [anon_sym_DASH] = ACTIONS(5679), - [anon_sym_PLUS] = ACTIONS(5679), - [anon_sym_STAR] = ACTIONS(5679), - [anon_sym_SLASH] = ACTIONS(5679), - [anon_sym_PERCENT] = ACTIONS(5679), - [anon_sym_PIPE_PIPE] = ACTIONS(5677), - [anon_sym_AMP_AMP] = ACTIONS(5677), - [anon_sym_PIPE] = ACTIONS(5679), - [anon_sym_CARET] = ACTIONS(5679), - [anon_sym_AMP] = ACTIONS(5679), - [anon_sym_EQ_EQ] = ACTIONS(5677), - [anon_sym_BANG_EQ] = ACTIONS(5677), - [anon_sym_GT] = ACTIONS(5679), - [anon_sym_GT_EQ] = ACTIONS(5677), - [anon_sym_LT_EQ] = ACTIONS(5679), - [anon_sym_LT] = ACTIONS(5679), - [anon_sym_LT_LT] = ACTIONS(5679), - [anon_sym_GT_GT] = ACTIONS(5679), - [anon_sym_SEMI] = ACTIONS(5677), - [anon_sym_RBRACE] = ACTIONS(5677), - [anon_sym_LBRACK] = ACTIONS(5677), - [anon_sym_RBRACK] = ACTIONS(5677), - [anon_sym_EQ] = ACTIONS(5679), - [anon_sym_COLON] = ACTIONS(5677), - [anon_sym_QMARK] = ACTIONS(5677), - [anon_sym_STAR_EQ] = ACTIONS(5677), - [anon_sym_SLASH_EQ] = ACTIONS(5677), - [anon_sym_PERCENT_EQ] = ACTIONS(5677), - [anon_sym_PLUS_EQ] = ACTIONS(5677), - [anon_sym_DASH_EQ] = ACTIONS(5677), - [anon_sym_LT_LT_EQ] = ACTIONS(5677), - [anon_sym_GT_GT_EQ] = ACTIONS(5677), - [anon_sym_AMP_EQ] = ACTIONS(5677), - [anon_sym_CARET_EQ] = ACTIONS(5677), - [anon_sym_PIPE_EQ] = ACTIONS(5677), - [anon_sym_and_eq] = ACTIONS(5679), - [anon_sym_or_eq] = ACTIONS(5679), - [anon_sym_xor_eq] = ACTIONS(5679), - [anon_sym_LT_EQ_GT] = ACTIONS(5677), - [anon_sym_or] = ACTIONS(5679), - [anon_sym_and] = ACTIONS(5679), - [anon_sym_bitor] = ACTIONS(5679), - [anon_sym_xor] = ACTIONS(5679), - [anon_sym_bitand] = ACTIONS(5679), - [anon_sym_not_eq] = ACTIONS(5679), - [anon_sym_DASH_DASH] = ACTIONS(5677), - [anon_sym_PLUS_PLUS] = ACTIONS(5677), - [anon_sym_DOT] = ACTIONS(5679), - [anon_sym_DOT_STAR] = ACTIONS(5677), - [anon_sym_DASH_GT] = ACTIONS(5677), - [anon_sym_L_DQUOTE] = ACTIONS(5677), - [anon_sym_u_DQUOTE] = ACTIONS(5677), - [anon_sym_U_DQUOTE] = ACTIONS(5677), - [anon_sym_u8_DQUOTE] = ACTIONS(5677), - [anon_sym_DQUOTE] = ACTIONS(5677), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5677), - [anon_sym_LR_DQUOTE] = ACTIONS(5677), - [anon_sym_uR_DQUOTE] = ACTIONS(5677), - [anon_sym_UR_DQUOTE] = ACTIONS(5677), - [anon_sym_u8R_DQUOTE] = ACTIONS(5677), - [sym_literal_suffix] = ACTIONS(5679), - }, - [2100] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6616), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4853), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(4837), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5548), - [anon_sym___extension__] = ACTIONS(65), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - }, - [2101] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6632), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4853), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(4837), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5548), - [anon_sym___extension__] = ACTIONS(65), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - }, - [2102] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6639), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4853), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(4837), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5548), - [anon_sym___extension__] = ACTIONS(65), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - }, - [2103] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6644), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4853), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(4837), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5548), - [anon_sym___extension__] = ACTIONS(65), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - }, - [2104] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6649), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4853), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(4837), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5548), - [anon_sym___extension__] = ACTIONS(65), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - }, - [2105] = { - [sym_declaration_modifiers] = STATE(2173), - [sym_declaration_specifiers] = STATE(6655), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3546), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4853), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(4837), - [aux_sym_declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5548), - [anon_sym___extension__] = ACTIONS(65), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - }, - [2106] = { - [ts_builtin_sym_end] = ACTIONS(5673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5673), - [anon_sym_COMMA] = ACTIONS(5673), - [anon_sym_RPAREN] = ACTIONS(5673), - [anon_sym_LPAREN2] = ACTIONS(5673), - [anon_sym_DASH] = ACTIONS(5675), - [anon_sym_PLUS] = ACTIONS(5675), - [anon_sym_STAR] = ACTIONS(5675), - [anon_sym_SLASH] = ACTIONS(5675), - [anon_sym_PERCENT] = ACTIONS(5675), - [anon_sym_PIPE_PIPE] = ACTIONS(5673), - [anon_sym_AMP_AMP] = ACTIONS(5673), - [anon_sym_PIPE] = ACTIONS(5675), - [anon_sym_CARET] = ACTIONS(5675), - [anon_sym_AMP] = ACTIONS(5675), - [anon_sym_EQ_EQ] = ACTIONS(5673), - [anon_sym_BANG_EQ] = ACTIONS(5673), - [anon_sym_GT] = ACTIONS(5675), - [anon_sym_GT_EQ] = ACTIONS(5673), - [anon_sym_LT_EQ] = ACTIONS(5675), - [anon_sym_LT] = ACTIONS(5675), - [anon_sym_LT_LT] = ACTIONS(5675), - [anon_sym_GT_GT] = ACTIONS(5675), - [anon_sym_SEMI] = ACTIONS(5673), - [anon_sym_RBRACE] = ACTIONS(5673), - [anon_sym_LBRACK] = ACTIONS(5673), - [anon_sym_RBRACK] = ACTIONS(5673), - [anon_sym_EQ] = ACTIONS(5675), - [anon_sym_COLON] = ACTIONS(5673), - [anon_sym_QMARK] = ACTIONS(5673), - [anon_sym_STAR_EQ] = ACTIONS(5673), - [anon_sym_SLASH_EQ] = ACTIONS(5673), - [anon_sym_PERCENT_EQ] = ACTIONS(5673), - [anon_sym_PLUS_EQ] = ACTIONS(5673), - [anon_sym_DASH_EQ] = ACTIONS(5673), - [anon_sym_LT_LT_EQ] = ACTIONS(5673), - [anon_sym_GT_GT_EQ] = ACTIONS(5673), - [anon_sym_AMP_EQ] = ACTIONS(5673), - [anon_sym_CARET_EQ] = ACTIONS(5673), - [anon_sym_PIPE_EQ] = ACTIONS(5673), - [anon_sym_and_eq] = ACTIONS(5675), - [anon_sym_or_eq] = ACTIONS(5675), - [anon_sym_xor_eq] = ACTIONS(5675), - [anon_sym_LT_EQ_GT] = ACTIONS(5673), - [anon_sym_or] = ACTIONS(5675), - [anon_sym_and] = ACTIONS(5675), - [anon_sym_bitor] = ACTIONS(5675), - [anon_sym_xor] = ACTIONS(5675), - [anon_sym_bitand] = ACTIONS(5675), - [anon_sym_not_eq] = ACTIONS(5675), - [anon_sym_DASH_DASH] = ACTIONS(5673), - [anon_sym_PLUS_PLUS] = ACTIONS(5673), - [anon_sym_DOT] = ACTIONS(5675), - [anon_sym_DOT_STAR] = ACTIONS(5673), - [anon_sym_DASH_GT] = ACTIONS(5673), - [anon_sym_L_DQUOTE] = ACTIONS(5673), - [anon_sym_u_DQUOTE] = ACTIONS(5673), - [anon_sym_U_DQUOTE] = ACTIONS(5673), - [anon_sym_u8_DQUOTE] = ACTIONS(5673), - [anon_sym_DQUOTE] = ACTIONS(5673), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5673), - [anon_sym_LR_DQUOTE] = ACTIONS(5673), - [anon_sym_uR_DQUOTE] = ACTIONS(5673), - [anon_sym_UR_DQUOTE] = ACTIONS(5673), - [anon_sym_u8R_DQUOTE] = ACTIONS(5673), - [sym_literal_suffix] = ACTIONS(5675), - }, - [2107] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2108), - [ts_builtin_sym_end] = ACTIONS(5959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5959), - [anon_sym_COMMA] = ACTIONS(5959), - [anon_sym_RPAREN] = ACTIONS(5959), - [anon_sym_LPAREN2] = ACTIONS(5959), - [anon_sym_DASH] = ACTIONS(5957), - [anon_sym_PLUS] = ACTIONS(5957), - [anon_sym_STAR] = ACTIONS(5959), - [anon_sym_SLASH] = ACTIONS(5957), - [anon_sym_PERCENT] = ACTIONS(5959), - [anon_sym_PIPE_PIPE] = ACTIONS(5959), - [anon_sym_AMP_AMP] = ACTIONS(5959), - [anon_sym_PIPE] = ACTIONS(5957), - [anon_sym_CARET] = ACTIONS(5959), - [anon_sym_AMP] = ACTIONS(5957), - [anon_sym_EQ_EQ] = ACTIONS(5959), - [anon_sym_BANG_EQ] = ACTIONS(5959), - [anon_sym_GT] = ACTIONS(5957), - [anon_sym_GT_EQ] = ACTIONS(5959), - [anon_sym_LT_EQ] = ACTIONS(5957), - [anon_sym_LT] = ACTIONS(5957), - [anon_sym_LT_LT] = ACTIONS(5959), - [anon_sym_GT_GT] = ACTIONS(5959), - [anon_sym_SEMI] = ACTIONS(5959), - [anon_sym___extension__] = ACTIONS(5959), - [anon_sym___attribute__] = ACTIONS(5959), - [anon_sym_LBRACE] = ACTIONS(5959), - [anon_sym_RBRACE] = ACTIONS(5959), - [anon_sym_signed] = ACTIONS(6060), - [anon_sym_unsigned] = ACTIONS(6060), - [anon_sym_long] = ACTIONS(6060), - [anon_sym_short] = ACTIONS(6060), - [anon_sym_LBRACK] = ACTIONS(5959), - [anon_sym_RBRACK] = ACTIONS(5959), - [anon_sym_const] = ACTIONS(5957), - [anon_sym_constexpr] = ACTIONS(5959), - [anon_sym_volatile] = ACTIONS(5959), - [anon_sym_restrict] = ACTIONS(5959), - [anon_sym___restrict__] = ACTIONS(5959), - [anon_sym__Atomic] = ACTIONS(5959), - [anon_sym__Noreturn] = ACTIONS(5959), - [anon_sym_noreturn] = ACTIONS(5959), - [anon_sym_mutable] = ACTIONS(5959), - [anon_sym_constinit] = ACTIONS(5959), - [anon_sym_consteval] = ACTIONS(5959), - [anon_sym_COLON] = ACTIONS(5959), - [anon_sym_QMARK] = ACTIONS(5959), - [anon_sym_LT_EQ_GT] = ACTIONS(5959), - [anon_sym_or] = ACTIONS(5959), - [anon_sym_and] = ACTIONS(5959), - [anon_sym_bitor] = ACTIONS(5959), - [anon_sym_xor] = ACTIONS(5959), - [anon_sym_bitand] = ACTIONS(5959), - [anon_sym_not_eq] = ACTIONS(5959), - [anon_sym_DASH_DASH] = ACTIONS(5959), - [anon_sym_PLUS_PLUS] = ACTIONS(5959), - [anon_sym_DOT] = ACTIONS(5957), - [anon_sym_DOT_STAR] = ACTIONS(5959), - [anon_sym_DASH_GT] = ACTIONS(5959), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5959), - [anon_sym_decltype] = ACTIONS(5959), - [anon_sym_final] = ACTIONS(5959), - [anon_sym_override] = ACTIONS(5959), - [anon_sym_requires] = ACTIONS(5959), - [sym_semgrep_metavar] = ACTIONS(5959), - }, - [2108] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2079), - [ts_builtin_sym_end] = ACTIONS(6062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6062), - [anon_sym_COMMA] = ACTIONS(6062), - [anon_sym_RPAREN] = ACTIONS(6062), - [anon_sym_LPAREN2] = ACTIONS(6062), - [anon_sym_DASH] = ACTIONS(6064), - [anon_sym_PLUS] = ACTIONS(6064), - [anon_sym_STAR] = ACTIONS(6062), - [anon_sym_SLASH] = ACTIONS(6064), - [anon_sym_PERCENT] = ACTIONS(6062), - [anon_sym_PIPE_PIPE] = ACTIONS(6062), - [anon_sym_AMP_AMP] = ACTIONS(6062), - [anon_sym_PIPE] = ACTIONS(6064), - [anon_sym_CARET] = ACTIONS(6062), - [anon_sym_AMP] = ACTIONS(6064), - [anon_sym_EQ_EQ] = ACTIONS(6062), - [anon_sym_BANG_EQ] = ACTIONS(6062), - [anon_sym_GT] = ACTIONS(6064), - [anon_sym_GT_EQ] = ACTIONS(6062), - [anon_sym_LT_EQ] = ACTIONS(6064), - [anon_sym_LT] = ACTIONS(6064), - [anon_sym_LT_LT] = ACTIONS(6062), - [anon_sym_GT_GT] = ACTIONS(6062), - [anon_sym_SEMI] = ACTIONS(6062), - [anon_sym___extension__] = ACTIONS(6062), - [anon_sym___attribute__] = ACTIONS(6062), - [anon_sym_LBRACE] = ACTIONS(6062), - [anon_sym_RBRACE] = ACTIONS(6062), - [anon_sym_signed] = ACTIONS(5994), - [anon_sym_unsigned] = ACTIONS(5994), - [anon_sym_long] = ACTIONS(5994), - [anon_sym_short] = ACTIONS(5994), - [anon_sym_LBRACK] = ACTIONS(6062), - [anon_sym_RBRACK] = ACTIONS(6062), - [anon_sym_const] = ACTIONS(6064), - [anon_sym_constexpr] = ACTIONS(6062), - [anon_sym_volatile] = ACTIONS(6062), - [anon_sym_restrict] = ACTIONS(6062), - [anon_sym___restrict__] = ACTIONS(6062), - [anon_sym__Atomic] = ACTIONS(6062), - [anon_sym__Noreturn] = ACTIONS(6062), - [anon_sym_noreturn] = ACTIONS(6062), - [anon_sym_mutable] = ACTIONS(6062), - [anon_sym_constinit] = ACTIONS(6062), - [anon_sym_consteval] = ACTIONS(6062), - [anon_sym_COLON] = ACTIONS(6062), - [anon_sym_QMARK] = ACTIONS(6062), - [anon_sym_LT_EQ_GT] = ACTIONS(6062), - [anon_sym_or] = ACTIONS(6062), - [anon_sym_and] = ACTIONS(6062), - [anon_sym_bitor] = ACTIONS(6062), - [anon_sym_xor] = ACTIONS(6062), - [anon_sym_bitand] = ACTIONS(6062), - [anon_sym_not_eq] = ACTIONS(6062), - [anon_sym_DASH_DASH] = ACTIONS(6062), - [anon_sym_PLUS_PLUS] = ACTIONS(6062), - [anon_sym_DOT] = ACTIONS(6064), - [anon_sym_DOT_STAR] = ACTIONS(6062), - [anon_sym_DASH_GT] = ACTIONS(6062), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6062), - [anon_sym_decltype] = ACTIONS(6062), - [anon_sym_final] = ACTIONS(6062), - [anon_sym_override] = ACTIONS(6062), - [anon_sym_requires] = ACTIONS(6062), - [sym_semgrep_metavar] = ACTIONS(6062), - }, - [2109] = { - [sym_catch_clause] = STATE(2117), - [aux_sym_constructor_try_statement_repeat1] = STATE(2117), - [sym_identifier] = ACTIONS(3057), - [aux_sym_preproc_def_token1] = ACTIONS(3057), - [aux_sym_preproc_if_token1] = ACTIONS(3057), - [aux_sym_preproc_if_token2] = ACTIONS(3057), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3057), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3057), - [sym_preproc_directive] = ACTIONS(3057), - [anon_sym_LPAREN2] = ACTIONS(3059), - [anon_sym_TILDE] = ACTIONS(3059), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_AMP_AMP] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym___extension__] = ACTIONS(3057), - [anon_sym_typedef] = ACTIONS(3057), - [anon_sym_extern] = ACTIONS(3057), - [anon_sym___attribute__] = ACTIONS(3057), - [anon_sym_COLON_COLON] = ACTIONS(3059), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3059), - [anon_sym___declspec] = ACTIONS(3057), - [anon_sym___based] = ACTIONS(3057), - [anon_sym_signed] = ACTIONS(3057), - [anon_sym_unsigned] = ACTIONS(3057), - [anon_sym_long] = ACTIONS(3057), - [anon_sym_short] = ACTIONS(3057), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_static] = ACTIONS(3057), - [anon_sym_register] = ACTIONS(3057), - [anon_sym_inline] = ACTIONS(3057), - [anon_sym___inline] = ACTIONS(3057), - [anon_sym___inline__] = ACTIONS(3057), - [anon_sym___forceinline] = ACTIONS(3057), - [anon_sym_thread_local] = ACTIONS(3057), - [anon_sym___thread] = ACTIONS(3057), - [anon_sym_const] = ACTIONS(3057), - [anon_sym_constexpr] = ACTIONS(3057), - [anon_sym_volatile] = ACTIONS(3057), - [anon_sym_restrict] = ACTIONS(3057), - [anon_sym___restrict__] = ACTIONS(3057), - [anon_sym__Atomic] = ACTIONS(3057), - [anon_sym__Noreturn] = ACTIONS(3057), - [anon_sym_noreturn] = ACTIONS(3057), - [anon_sym_mutable] = ACTIONS(3057), - [anon_sym_constinit] = ACTIONS(3057), - [anon_sym_consteval] = ACTIONS(3057), - [sym_primitive_type] = ACTIONS(3057), - [anon_sym_enum] = ACTIONS(3057), - [anon_sym_class] = ACTIONS(3057), - [anon_sym_struct] = ACTIONS(3057), - [anon_sym_union] = ACTIONS(3057), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3057), - [anon_sym_decltype] = ACTIONS(3057), - [anon_sym_virtual] = ACTIONS(3057), - [anon_sym_alignas] = ACTIONS(3057), - [anon_sym_explicit] = ACTIONS(3057), - [anon_sym_typename] = ACTIONS(3057), - [anon_sym_template] = ACTIONS(3057), - [anon_sym_operator] = ACTIONS(3057), - [anon_sym_friend] = ACTIONS(3057), - [anon_sym_public] = ACTIONS(3057), - [anon_sym_private] = ACTIONS(3057), - [anon_sym_protected] = ACTIONS(3057), - [anon_sym_using] = ACTIONS(3057), - [anon_sym_static_assert] = ACTIONS(3057), - [anon_sym_catch] = ACTIONS(5955), - }, - [2110] = { - [sym_catch_clause] = STATE(2117), - [aux_sym_constructor_try_statement_repeat1] = STATE(2117), - [sym_identifier] = ACTIONS(3070), - [aux_sym_preproc_def_token1] = ACTIONS(3070), - [aux_sym_preproc_if_token1] = ACTIONS(3070), - [aux_sym_preproc_if_token2] = ACTIONS(3070), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3070), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3070), - [sym_preproc_directive] = ACTIONS(3070), - [anon_sym_LPAREN2] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3072), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_AMP] = ACTIONS(3070), - [anon_sym___extension__] = ACTIONS(3070), - [anon_sym_typedef] = ACTIONS(3070), - [anon_sym_extern] = ACTIONS(3070), - [anon_sym___attribute__] = ACTIONS(3070), - [anon_sym_COLON_COLON] = ACTIONS(3072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3072), - [anon_sym___declspec] = ACTIONS(3070), - [anon_sym___based] = ACTIONS(3070), - [anon_sym_signed] = ACTIONS(3070), - [anon_sym_unsigned] = ACTIONS(3070), - [anon_sym_long] = ACTIONS(3070), - [anon_sym_short] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(3070), - [anon_sym_static] = ACTIONS(3070), - [anon_sym_register] = ACTIONS(3070), - [anon_sym_inline] = ACTIONS(3070), - [anon_sym___inline] = ACTIONS(3070), - [anon_sym___inline__] = ACTIONS(3070), - [anon_sym___forceinline] = ACTIONS(3070), - [anon_sym_thread_local] = ACTIONS(3070), - [anon_sym___thread] = ACTIONS(3070), - [anon_sym_const] = ACTIONS(3070), - [anon_sym_constexpr] = ACTIONS(3070), - [anon_sym_volatile] = ACTIONS(3070), - [anon_sym_restrict] = ACTIONS(3070), - [anon_sym___restrict__] = ACTIONS(3070), - [anon_sym__Atomic] = ACTIONS(3070), - [anon_sym__Noreturn] = ACTIONS(3070), - [anon_sym_noreturn] = ACTIONS(3070), - [anon_sym_mutable] = ACTIONS(3070), - [anon_sym_constinit] = ACTIONS(3070), - [anon_sym_consteval] = ACTIONS(3070), - [sym_primitive_type] = ACTIONS(3070), - [anon_sym_enum] = ACTIONS(3070), - [anon_sym_class] = ACTIONS(3070), - [anon_sym_struct] = ACTIONS(3070), - [anon_sym_union] = ACTIONS(3070), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3070), - [anon_sym_decltype] = ACTIONS(3070), - [anon_sym_virtual] = ACTIONS(3070), - [anon_sym_alignas] = ACTIONS(3070), - [anon_sym_explicit] = ACTIONS(3070), - [anon_sym_typename] = ACTIONS(3070), - [anon_sym_template] = ACTIONS(3070), - [anon_sym_operator] = ACTIONS(3070), - [anon_sym_friend] = ACTIONS(3070), - [anon_sym_public] = ACTIONS(3070), - [anon_sym_private] = ACTIONS(3070), - [anon_sym_protected] = ACTIONS(3070), - [anon_sym_using] = ACTIONS(3070), - [anon_sym_static_assert] = ACTIONS(3070), - [anon_sym_catch] = ACTIONS(5955), - }, - [2111] = { - [sym_string_literal] = STATE(2640), - [sym_template_argument_list] = STATE(5014), - [sym_raw_string_literal] = STATE(2640), - [aux_sym_structured_binding_declarator_repeat1] = STATE(8945), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(6066), - [anon_sym_LPAREN2] = ACTIONS(4829), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(5764), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_RBRACK] = ACTIONS(5981), - [anon_sym_EQ] = ACTIONS(4861), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4865), - [anon_sym_SLASH_EQ] = ACTIONS(4865), - [anon_sym_PERCENT_EQ] = ACTIONS(4865), - [anon_sym_PLUS_EQ] = ACTIONS(4865), - [anon_sym_DASH_EQ] = ACTIONS(4865), - [anon_sym_LT_LT_EQ] = ACTIONS(4865), - [anon_sym_GT_GT_EQ] = ACTIONS(4865), - [anon_sym_AMP_EQ] = ACTIONS(4865), - [anon_sym_CARET_EQ] = ACTIONS(4865), - [anon_sym_PIPE_EQ] = ACTIONS(4865), - [anon_sym_and_eq] = ACTIONS(4865), - [anon_sym_or_eq] = ACTIONS(4865), - [anon_sym_xor_eq] = ACTIONS(4865), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4829), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4829), - [anon_sym_not_eq] = ACTIONS(4829), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - }, - [2112] = { - [sym_string_literal] = STATE(3865), - [sym_template_argument_list] = STATE(5014), - [sym_raw_string_literal] = STATE(3865), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(4829), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(5764), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym___attribute__] = ACTIONS(4829), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_EQ] = ACTIONS(6068), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(6070), - [anon_sym_SLASH_EQ] = ACTIONS(6070), - [anon_sym_PERCENT_EQ] = ACTIONS(6070), - [anon_sym_PLUS_EQ] = ACTIONS(6070), - [anon_sym_DASH_EQ] = ACTIONS(6070), - [anon_sym_LT_LT_EQ] = ACTIONS(6070), - [anon_sym_GT_GT_EQ] = ACTIONS(6070), - [anon_sym_AMP_EQ] = ACTIONS(6070), - [anon_sym_CARET_EQ] = ACTIONS(6070), - [anon_sym_PIPE_EQ] = ACTIONS(6070), - [anon_sym_and_eq] = ACTIONS(6070), - [anon_sym_or_eq] = ACTIONS(6070), - [anon_sym_xor_eq] = ACTIONS(6070), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4829), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4829), - [anon_sym_not_eq] = ACTIONS(4829), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(6072), - [anon_sym_u_DQUOTE] = ACTIONS(6072), - [anon_sym_U_DQUOTE] = ACTIONS(6072), - [anon_sym_u8_DQUOTE] = ACTIONS(6072), - [anon_sym_DQUOTE] = ACTIONS(6072), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(6074), - [anon_sym_LR_DQUOTE] = ACTIONS(6074), - [anon_sym_uR_DQUOTE] = ACTIONS(6074), - [anon_sym_UR_DQUOTE] = ACTIONS(6074), - [anon_sym_u8R_DQUOTE] = ACTIONS(6074), - }, - [2113] = { - [sym_string_literal] = STATE(2640), - [sym_template_argument_list] = STATE(5014), - [sym_raw_string_literal] = STATE(2640), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(4829), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(5764), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_EQ] = ACTIONS(4861), - [anon_sym_COLON] = ACTIONS(4920), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4865), - [anon_sym_SLASH_EQ] = ACTIONS(4865), - [anon_sym_PERCENT_EQ] = ACTIONS(4865), - [anon_sym_PLUS_EQ] = ACTIONS(4865), - [anon_sym_DASH_EQ] = ACTIONS(4865), - [anon_sym_LT_LT_EQ] = ACTIONS(4865), - [anon_sym_GT_GT_EQ] = ACTIONS(4865), - [anon_sym_AMP_EQ] = ACTIONS(4865), - [anon_sym_CARET_EQ] = ACTIONS(4865), - [anon_sym_PIPE_EQ] = ACTIONS(4865), - [anon_sym_and_eq] = ACTIONS(4865), - [anon_sym_or_eq] = ACTIONS(4865), - [anon_sym_xor_eq] = ACTIONS(4865), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4829), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4829), - [anon_sym_not_eq] = ACTIONS(4829), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - }, - [2114] = { - [sym_attribute_specifier] = STATE(2939), - [sym_field_declaration_list] = STATE(2702), - [sym_virtual_specifier] = STATE(8328), - [sym_base_class_clause] = STATE(9536), - [sym_identifier] = ACTIONS(6076), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6078), - [anon_sym_COMMA] = ACTIONS(6078), - [aux_sym_preproc_if_token2] = ACTIONS(6078), - [aux_sym_preproc_else_token1] = ACTIONS(6078), - [aux_sym_preproc_elif_token1] = ACTIONS(6076), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6078), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6078), - [anon_sym_LPAREN2] = ACTIONS(6078), - [anon_sym_DASH] = ACTIONS(6076), - [anon_sym_PLUS] = ACTIONS(6076), - [anon_sym_STAR] = ACTIONS(6076), - [anon_sym_SLASH] = ACTIONS(6076), - [anon_sym_PERCENT] = ACTIONS(6076), - [anon_sym_PIPE_PIPE] = ACTIONS(6078), - [anon_sym_AMP_AMP] = ACTIONS(6078), - [anon_sym_PIPE] = ACTIONS(6076), - [anon_sym_CARET] = ACTIONS(6076), - [anon_sym_AMP] = ACTIONS(6076), - [anon_sym_EQ_EQ] = ACTIONS(6078), - [anon_sym_BANG_EQ] = ACTIONS(6078), - [anon_sym_GT] = ACTIONS(6076), - [anon_sym_GT_EQ] = ACTIONS(6078), - [anon_sym_LT_EQ] = ACTIONS(6076), - [anon_sym_LT] = ACTIONS(6076), - [anon_sym_LT_LT] = ACTIONS(6076), - [anon_sym_GT_GT] = ACTIONS(6076), - [anon_sym___attribute__] = ACTIONS(6080), - [anon_sym_LBRACE] = ACTIONS(6082), - [anon_sym_LBRACK] = ACTIONS(6078), - [anon_sym_EQ] = ACTIONS(6076), - [anon_sym_COLON] = ACTIONS(6084), - [anon_sym_QMARK] = ACTIONS(6078), - [anon_sym_STAR_EQ] = ACTIONS(6078), - [anon_sym_SLASH_EQ] = ACTIONS(6078), - [anon_sym_PERCENT_EQ] = ACTIONS(6078), - [anon_sym_PLUS_EQ] = ACTIONS(6078), - [anon_sym_DASH_EQ] = ACTIONS(6078), - [anon_sym_LT_LT_EQ] = ACTIONS(6078), - [anon_sym_GT_GT_EQ] = ACTIONS(6078), - [anon_sym_AMP_EQ] = ACTIONS(6078), - [anon_sym_CARET_EQ] = ACTIONS(6078), - [anon_sym_PIPE_EQ] = ACTIONS(6078), - [anon_sym_and_eq] = ACTIONS(6076), - [anon_sym_or_eq] = ACTIONS(6076), - [anon_sym_xor_eq] = ACTIONS(6076), - [anon_sym_LT_EQ_GT] = ACTIONS(6078), - [anon_sym_or] = ACTIONS(6076), - [anon_sym_and] = ACTIONS(6076), - [anon_sym_bitor] = ACTIONS(6076), - [anon_sym_xor] = ACTIONS(6076), - [anon_sym_bitand] = ACTIONS(6076), - [anon_sym_not_eq] = ACTIONS(6076), - [anon_sym_DASH_DASH] = ACTIONS(6078), - [anon_sym_PLUS_PLUS] = ACTIONS(6078), - [anon_sym_DOT] = ACTIONS(6076), - [anon_sym_DOT_STAR] = ACTIONS(6078), - [anon_sym_DASH_GT] = ACTIONS(6078), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6076), - [anon_sym_decltype] = ACTIONS(6076), - [anon_sym_final] = ACTIONS(6086), - [anon_sym_override] = ACTIONS(6086), - }, - [2115] = { - [sym_string_literal] = STATE(2640), - [sym_template_argument_list] = STATE(5014), - [sym_raw_string_literal] = STATE(2640), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(4829), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(5764), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_EQ] = ACTIONS(4861), - [anon_sym_COLON] = ACTIONS(4906), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4865), - [anon_sym_SLASH_EQ] = ACTIONS(4865), - [anon_sym_PERCENT_EQ] = ACTIONS(4865), - [anon_sym_PLUS_EQ] = ACTIONS(4865), - [anon_sym_DASH_EQ] = ACTIONS(4865), - [anon_sym_LT_LT_EQ] = ACTIONS(4865), - [anon_sym_GT_GT_EQ] = ACTIONS(4865), - [anon_sym_AMP_EQ] = ACTIONS(4865), - [anon_sym_CARET_EQ] = ACTIONS(4865), - [anon_sym_PIPE_EQ] = ACTIONS(4865), - [anon_sym_and_eq] = ACTIONS(4865), - [anon_sym_or_eq] = ACTIONS(4865), - [anon_sym_xor_eq] = ACTIONS(4865), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4829), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4829), - [anon_sym_not_eq] = ACTIONS(4829), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), - }, - [2116] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2108), - [ts_builtin_sym_end] = ACTIONS(4835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4835), - [anon_sym_COMMA] = ACTIONS(4835), - [anon_sym_RPAREN] = ACTIONS(4835), - [anon_sym_LPAREN2] = ACTIONS(4835), - [anon_sym_DASH] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(4827), - [anon_sym_STAR] = ACTIONS(4835), - [anon_sym_SLASH] = ACTIONS(4827), - [anon_sym_PERCENT] = ACTIONS(4835), - [anon_sym_PIPE_PIPE] = ACTIONS(4835), - [anon_sym_AMP_AMP] = ACTIONS(4835), - [anon_sym_PIPE] = ACTIONS(4827), - [anon_sym_CARET] = ACTIONS(4835), - [anon_sym_AMP] = ACTIONS(4827), - [anon_sym_EQ_EQ] = ACTIONS(4835), - [anon_sym_BANG_EQ] = ACTIONS(4835), - [anon_sym_GT] = ACTIONS(4827), - [anon_sym_GT_EQ] = ACTIONS(4835), - [anon_sym_LT_EQ] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4827), - [anon_sym_LT_LT] = ACTIONS(4835), - [anon_sym_GT_GT] = ACTIONS(4835), - [anon_sym_SEMI] = ACTIONS(4835), - [anon_sym___extension__] = ACTIONS(4835), - [anon_sym___attribute__] = ACTIONS(4835), - [anon_sym_LBRACE] = ACTIONS(4835), - [anon_sym_RBRACE] = ACTIONS(4835), - [anon_sym_signed] = ACTIONS(6060), - [anon_sym_unsigned] = ACTIONS(6060), - [anon_sym_long] = ACTIONS(6060), - [anon_sym_short] = ACTIONS(6060), - [anon_sym_LBRACK] = ACTIONS(4835), - [anon_sym_RBRACK] = ACTIONS(4835), - [anon_sym_const] = ACTIONS(4827), - [anon_sym_constexpr] = ACTIONS(4835), - [anon_sym_volatile] = ACTIONS(4835), - [anon_sym_restrict] = ACTIONS(4835), - [anon_sym___restrict__] = ACTIONS(4835), - [anon_sym__Atomic] = ACTIONS(4835), - [anon_sym__Noreturn] = ACTIONS(4835), - [anon_sym_noreturn] = ACTIONS(4835), - [anon_sym_mutable] = ACTIONS(4835), - [anon_sym_constinit] = ACTIONS(4835), - [anon_sym_consteval] = ACTIONS(4835), - [anon_sym_COLON] = ACTIONS(4835), - [anon_sym_QMARK] = ACTIONS(4835), - [anon_sym_LT_EQ_GT] = ACTIONS(4835), - [anon_sym_or] = ACTIONS(4835), - [anon_sym_and] = ACTIONS(4835), - [anon_sym_bitor] = ACTIONS(4835), - [anon_sym_xor] = ACTIONS(4835), - [anon_sym_bitand] = ACTIONS(4835), - [anon_sym_not_eq] = ACTIONS(4835), - [anon_sym_DASH_DASH] = ACTIONS(4835), - [anon_sym_PLUS_PLUS] = ACTIONS(4835), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_DOT_STAR] = ACTIONS(4835), - [anon_sym_DASH_GT] = ACTIONS(4835), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4835), - [anon_sym_decltype] = ACTIONS(4835), - [anon_sym_final] = ACTIONS(4835), - [anon_sym_override] = ACTIONS(4835), - [anon_sym_requires] = ACTIONS(4835), - [sym_semgrep_metavar] = ACTIONS(4835), - }, - [2117] = { - [sym_catch_clause] = STATE(2117), - [aux_sym_constructor_try_statement_repeat1] = STATE(2117), - [sym_identifier] = ACTIONS(3063), - [aux_sym_preproc_def_token1] = ACTIONS(3063), - [aux_sym_preproc_if_token1] = ACTIONS(3063), - [aux_sym_preproc_if_token2] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3063), - [sym_preproc_directive] = ACTIONS(3063), - [anon_sym_LPAREN2] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3063), - [anon_sym___extension__] = ACTIONS(3063), - [anon_sym_typedef] = ACTIONS(3063), - [anon_sym_extern] = ACTIONS(3063), - [anon_sym___attribute__] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(3065), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3065), - [anon_sym___declspec] = ACTIONS(3063), - [anon_sym___based] = ACTIONS(3063), - [anon_sym_signed] = ACTIONS(3063), - [anon_sym_unsigned] = ACTIONS(3063), - [anon_sym_long] = ACTIONS(3063), - [anon_sym_short] = ACTIONS(3063), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_static] = ACTIONS(3063), - [anon_sym_register] = ACTIONS(3063), - [anon_sym_inline] = ACTIONS(3063), - [anon_sym___inline] = ACTIONS(3063), - [anon_sym___inline__] = ACTIONS(3063), - [anon_sym___forceinline] = ACTIONS(3063), - [anon_sym_thread_local] = ACTIONS(3063), - [anon_sym___thread] = ACTIONS(3063), - [anon_sym_const] = ACTIONS(3063), - [anon_sym_constexpr] = ACTIONS(3063), - [anon_sym_volatile] = ACTIONS(3063), - [anon_sym_restrict] = ACTIONS(3063), - [anon_sym___restrict__] = ACTIONS(3063), - [anon_sym__Atomic] = ACTIONS(3063), - [anon_sym__Noreturn] = ACTIONS(3063), - [anon_sym_noreturn] = ACTIONS(3063), - [anon_sym_mutable] = ACTIONS(3063), - [anon_sym_constinit] = ACTIONS(3063), - [anon_sym_consteval] = ACTIONS(3063), - [sym_primitive_type] = ACTIONS(3063), - [anon_sym_enum] = ACTIONS(3063), - [anon_sym_class] = ACTIONS(3063), - [anon_sym_struct] = ACTIONS(3063), - [anon_sym_union] = ACTIONS(3063), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3063), - [anon_sym_decltype] = ACTIONS(3063), - [anon_sym_virtual] = ACTIONS(3063), - [anon_sym_alignas] = ACTIONS(3063), - [anon_sym_explicit] = ACTIONS(3063), - [anon_sym_typename] = ACTIONS(3063), - [anon_sym_template] = ACTIONS(3063), - [anon_sym_operator] = ACTIONS(3063), - [anon_sym_friend] = ACTIONS(3063), - [anon_sym_public] = ACTIONS(3063), - [anon_sym_private] = ACTIONS(3063), - [anon_sym_protected] = ACTIONS(3063), - [anon_sym_using] = ACTIONS(3063), - [anon_sym_static_assert] = ACTIONS(3063), - [anon_sym_catch] = ACTIONS(6088), - }, - [2118] = { - [sym_identifier] = ACTIONS(3101), - [aux_sym_preproc_def_token1] = ACTIONS(3101), - [aux_sym_preproc_if_token1] = ACTIONS(3101), - [aux_sym_preproc_if_token2] = ACTIONS(3101), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3101), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3101), - [aux_sym_preproc_else_token1] = ACTIONS(3101), - [aux_sym_preproc_elif_token1] = ACTIONS(3101), - [sym_preproc_directive] = ACTIONS(3101), - [anon_sym_LPAREN2] = ACTIONS(3103), - [anon_sym_TILDE] = ACTIONS(3103), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_AMP_AMP] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym___extension__] = ACTIONS(3101), - [anon_sym_typedef] = ACTIONS(3101), - [anon_sym_extern] = ACTIONS(3101), - [anon_sym___attribute__] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(3103), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3103), - [anon_sym___declspec] = ACTIONS(3101), - [anon_sym___based] = ACTIONS(3101), - [anon_sym_signed] = ACTIONS(3101), - [anon_sym_unsigned] = ACTIONS(3101), - [anon_sym_long] = ACTIONS(3101), - [anon_sym_short] = ACTIONS(3101), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_static] = ACTIONS(3101), - [anon_sym_register] = ACTIONS(3101), - [anon_sym_inline] = ACTIONS(3101), - [anon_sym___inline] = ACTIONS(3101), - [anon_sym___inline__] = ACTIONS(3101), - [anon_sym___forceinline] = ACTIONS(3101), - [anon_sym_thread_local] = ACTIONS(3101), - [anon_sym___thread] = ACTIONS(3101), - [anon_sym_const] = ACTIONS(3101), - [anon_sym_constexpr] = ACTIONS(3101), - [anon_sym_volatile] = ACTIONS(3101), - [anon_sym_restrict] = ACTIONS(3101), - [anon_sym___restrict__] = ACTIONS(3101), - [anon_sym__Atomic] = ACTIONS(3101), - [anon_sym__Noreturn] = ACTIONS(3101), - [anon_sym_noreturn] = ACTIONS(3101), - [anon_sym_mutable] = ACTIONS(3101), - [anon_sym_constinit] = ACTIONS(3101), - [anon_sym_consteval] = ACTIONS(3101), - [sym_primitive_type] = ACTIONS(3101), - [anon_sym_enum] = ACTIONS(3101), - [anon_sym_class] = ACTIONS(3101), - [anon_sym_struct] = ACTIONS(3101), - [anon_sym_union] = ACTIONS(3101), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3101), - [anon_sym_decltype] = ACTIONS(3101), - [anon_sym_virtual] = ACTIONS(3101), - [anon_sym_alignas] = ACTIONS(3101), - [anon_sym_explicit] = ACTIONS(3101), - [anon_sym_typename] = ACTIONS(3101), - [anon_sym_template] = ACTIONS(3101), - [anon_sym_operator] = ACTIONS(3101), - [anon_sym_friend] = ACTIONS(3101), - [anon_sym_public] = ACTIONS(3101), - [anon_sym_private] = ACTIONS(3101), - [anon_sym_protected] = ACTIONS(3101), - [anon_sym_using] = ACTIONS(3101), - [anon_sym_static_assert] = ACTIONS(3101), - [anon_sym_catch] = ACTIONS(3101), - }, - [2119] = { - [sym_string_literal] = STATE(2073), - [sym_template_argument_list] = STATE(3686), - [sym_raw_string_literal] = STATE(2073), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_RPAREN] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(4829), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(5515), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_EQ] = ACTIONS(4837), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4829), - [anon_sym_SLASH_EQ] = ACTIONS(4829), - [anon_sym_PERCENT_EQ] = ACTIONS(4829), - [anon_sym_PLUS_EQ] = ACTIONS(4829), - [anon_sym_DASH_EQ] = ACTIONS(4829), - [anon_sym_LT_LT_EQ] = ACTIONS(4829), - [anon_sym_GT_GT_EQ] = ACTIONS(4829), - [anon_sym_AMP_EQ] = ACTIONS(4829), - [anon_sym_CARET_EQ] = ACTIONS(4829), - [anon_sym_PIPE_EQ] = ACTIONS(4829), - [anon_sym_and_eq] = ACTIONS(4829), - [anon_sym_or_eq] = ACTIONS(4829), - [anon_sym_xor_eq] = ACTIONS(4829), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4829), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4829), - [anon_sym_not_eq] = ACTIONS(4829), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4837), - [anon_sym_L_DQUOTE] = ACTIONS(5492), - [anon_sym_u_DQUOTE] = ACTIONS(5492), - [anon_sym_U_DQUOTE] = ACTIONS(5492), - [anon_sym_u8_DQUOTE] = ACTIONS(5492), - [anon_sym_DQUOTE] = ACTIONS(5492), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5494), - [anon_sym_LR_DQUOTE] = ACTIONS(5494), - [anon_sym_uR_DQUOTE] = ACTIONS(5494), - [anon_sym_UR_DQUOTE] = ACTIONS(5494), - [anon_sym_u8R_DQUOTE] = ACTIONS(5494), - [anon_sym_DASH_GT_STAR] = ACTIONS(4829), - }, - [2120] = { - [sym_catch_clause] = STATE(2092), - [aux_sym_constructor_try_statement_repeat1] = STATE(2092), - [sym_identifier] = ACTIONS(3070), - [aux_sym_preproc_def_token1] = ACTIONS(3070), - [aux_sym_preproc_if_token1] = ACTIONS(3070), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3070), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3070), - [sym_preproc_directive] = ACTIONS(3070), - [anon_sym_LPAREN2] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3072), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_AMP] = ACTIONS(3070), - [anon_sym___extension__] = ACTIONS(3070), - [anon_sym_typedef] = ACTIONS(3070), - [anon_sym_extern] = ACTIONS(3070), - [anon_sym___attribute__] = ACTIONS(3070), - [anon_sym_COLON_COLON] = ACTIONS(3072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3072), - [anon_sym___declspec] = ACTIONS(3070), - [anon_sym___based] = ACTIONS(3070), - [anon_sym_RBRACE] = ACTIONS(3072), - [anon_sym_signed] = ACTIONS(3070), - [anon_sym_unsigned] = ACTIONS(3070), - [anon_sym_long] = ACTIONS(3070), - [anon_sym_short] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(3070), - [anon_sym_static] = ACTIONS(3070), - [anon_sym_register] = ACTIONS(3070), - [anon_sym_inline] = ACTIONS(3070), - [anon_sym___inline] = ACTIONS(3070), - [anon_sym___inline__] = ACTIONS(3070), - [anon_sym___forceinline] = ACTIONS(3070), - [anon_sym_thread_local] = ACTIONS(3070), - [anon_sym___thread] = ACTIONS(3070), - [anon_sym_const] = ACTIONS(3070), - [anon_sym_constexpr] = ACTIONS(3070), - [anon_sym_volatile] = ACTIONS(3070), - [anon_sym_restrict] = ACTIONS(3070), - [anon_sym___restrict__] = ACTIONS(3070), - [anon_sym__Atomic] = ACTIONS(3070), - [anon_sym__Noreturn] = ACTIONS(3070), - [anon_sym_noreturn] = ACTIONS(3070), - [anon_sym_mutable] = ACTIONS(3070), - [anon_sym_constinit] = ACTIONS(3070), - [anon_sym_consteval] = ACTIONS(3070), - [sym_primitive_type] = ACTIONS(3070), - [anon_sym_enum] = ACTIONS(3070), - [anon_sym_class] = ACTIONS(3070), - [anon_sym_struct] = ACTIONS(3070), - [anon_sym_union] = ACTIONS(3070), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3070), - [anon_sym_decltype] = ACTIONS(3070), - [anon_sym_virtual] = ACTIONS(3070), - [anon_sym_alignas] = ACTIONS(3070), - [anon_sym_explicit] = ACTIONS(3070), - [anon_sym_typename] = ACTIONS(3070), - [anon_sym_template] = ACTIONS(3070), - [anon_sym_operator] = ACTIONS(3070), - [anon_sym_friend] = ACTIONS(3070), - [anon_sym_public] = ACTIONS(3070), - [anon_sym_private] = ACTIONS(3070), - [anon_sym_protected] = ACTIONS(3070), - [anon_sym_using] = ACTIONS(3070), - [anon_sym_static_assert] = ACTIONS(3070), - [anon_sym_catch] = ACTIONS(6000), - }, - [2121] = { - [sym_template_argument_list] = STATE(6753), - [aux_sym_sized_type_specifier_repeat1] = STATE(2246), - [ts_builtin_sym_end] = ACTIONS(5959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5959), - [anon_sym_COMMA] = ACTIONS(5959), - [anon_sym_RPAREN] = ACTIONS(5959), - [anon_sym_LPAREN2] = ACTIONS(5959), - [anon_sym_DASH] = ACTIONS(5957), - [anon_sym_PLUS] = ACTIONS(5957), - [anon_sym_STAR] = ACTIONS(5957), - [anon_sym_SLASH] = ACTIONS(5957), - [anon_sym_PERCENT] = ACTIONS(5957), - [anon_sym_PIPE_PIPE] = ACTIONS(5959), - [anon_sym_AMP_AMP] = ACTIONS(5959), - [anon_sym_PIPE] = ACTIONS(5957), - [anon_sym_CARET] = ACTIONS(5957), - [anon_sym_AMP] = ACTIONS(5957), - [anon_sym_EQ_EQ] = ACTIONS(5959), - [anon_sym_BANG_EQ] = ACTIONS(5959), - [anon_sym_GT] = ACTIONS(5957), - [anon_sym_GT_EQ] = ACTIONS(5959), - [anon_sym_LT_EQ] = ACTIONS(5957), - [anon_sym_LT] = ACTIONS(5957), - [anon_sym_LT_LT] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5957), - [anon_sym_SEMI] = ACTIONS(5959), - [anon_sym___attribute__] = ACTIONS(5959), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(5959), - [anon_sym_RBRACE] = ACTIONS(5959), - [anon_sym_signed] = ACTIONS(6056), - [anon_sym_unsigned] = ACTIONS(6056), - [anon_sym_long] = ACTIONS(6056), - [anon_sym_short] = ACTIONS(6056), - [anon_sym_LBRACK] = ACTIONS(5959), - [anon_sym_RBRACK] = ACTIONS(5959), - [anon_sym_EQ] = ACTIONS(5957), - [anon_sym_COLON] = ACTIONS(5957), - [anon_sym_QMARK] = ACTIONS(5959), - [anon_sym_STAR_EQ] = ACTIONS(5959), - [anon_sym_SLASH_EQ] = ACTIONS(5959), - [anon_sym_PERCENT_EQ] = ACTIONS(5959), - [anon_sym_PLUS_EQ] = ACTIONS(5959), - [anon_sym_DASH_EQ] = ACTIONS(5959), - [anon_sym_LT_LT_EQ] = ACTIONS(5959), - [anon_sym_GT_GT_EQ] = ACTIONS(5959), - [anon_sym_AMP_EQ] = ACTIONS(5959), - [anon_sym_CARET_EQ] = ACTIONS(5959), - [anon_sym_PIPE_EQ] = ACTIONS(5959), - [anon_sym_and_eq] = ACTIONS(5959), - [anon_sym_or_eq] = ACTIONS(5959), - [anon_sym_xor_eq] = ACTIONS(5959), - [anon_sym_LT_EQ_GT] = ACTIONS(5959), - [anon_sym_or] = ACTIONS(5957), - [anon_sym_and] = ACTIONS(5957), - [anon_sym_bitor] = ACTIONS(5959), - [anon_sym_xor] = ACTIONS(5957), - [anon_sym_bitand] = ACTIONS(5959), - [anon_sym_not_eq] = ACTIONS(5959), - [anon_sym_DASH_DASH] = ACTIONS(5959), - [anon_sym_PLUS_PLUS] = ACTIONS(5959), - [anon_sym_DOT] = ACTIONS(5957), - [anon_sym_DOT_STAR] = ACTIONS(5959), - [anon_sym_DASH_GT] = ACTIONS(5959), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5959), - [anon_sym_decltype] = ACTIONS(5959), - }, - [2122] = { - [sym_identifier] = ACTIONS(5804), - [aux_sym_preproc_def_token1] = ACTIONS(5804), - [aux_sym_preproc_if_token1] = ACTIONS(5804), - [aux_sym_preproc_if_token2] = ACTIONS(5804), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5804), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5804), - [aux_sym_preproc_else_token1] = ACTIONS(5804), - [aux_sym_preproc_elif_token1] = ACTIONS(5804), - [sym_preproc_directive] = ACTIONS(5804), - [anon_sym_LPAREN2] = ACTIONS(5806), - [anon_sym_TILDE] = ACTIONS(5806), - [anon_sym_STAR] = ACTIONS(5806), - [anon_sym_AMP_AMP] = ACTIONS(5806), - [anon_sym_AMP] = ACTIONS(5804), - [anon_sym___extension__] = ACTIONS(5804), - [anon_sym_typedef] = ACTIONS(5804), - [anon_sym_extern] = ACTIONS(5804), - [anon_sym___attribute__] = ACTIONS(5804), - [anon_sym_COLON_COLON] = ACTIONS(5806), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5806), - [anon_sym___declspec] = ACTIONS(5804), - [anon_sym___based] = ACTIONS(5804), - [anon_sym_signed] = ACTIONS(5804), - [anon_sym_unsigned] = ACTIONS(5804), - [anon_sym_long] = ACTIONS(5804), - [anon_sym_short] = ACTIONS(5804), - [anon_sym_LBRACK] = ACTIONS(5804), - [anon_sym_static] = ACTIONS(5804), - [anon_sym_register] = ACTIONS(5804), - [anon_sym_inline] = ACTIONS(5804), - [anon_sym___inline] = ACTIONS(5804), - [anon_sym___inline__] = ACTIONS(5804), - [anon_sym___forceinline] = ACTIONS(5804), - [anon_sym_thread_local] = ACTIONS(5804), - [anon_sym___thread] = ACTIONS(5804), - [anon_sym_const] = ACTIONS(5804), - [anon_sym_constexpr] = ACTIONS(5804), - [anon_sym_volatile] = ACTIONS(5804), - [anon_sym_restrict] = ACTIONS(5804), - [anon_sym___restrict__] = ACTIONS(5804), - [anon_sym__Atomic] = ACTIONS(5804), - [anon_sym__Noreturn] = ACTIONS(5804), - [anon_sym_noreturn] = ACTIONS(5804), - [anon_sym_mutable] = ACTIONS(5804), - [anon_sym_constinit] = ACTIONS(5804), - [anon_sym_consteval] = ACTIONS(5804), - [sym_primitive_type] = ACTIONS(5804), - [anon_sym_enum] = ACTIONS(5804), - [anon_sym_class] = ACTIONS(5804), - [anon_sym_struct] = ACTIONS(5804), - [anon_sym_union] = ACTIONS(5804), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5804), - [anon_sym_decltype] = ACTIONS(5804), - [anon_sym_virtual] = ACTIONS(5804), - [anon_sym_alignas] = ACTIONS(5804), - [anon_sym_explicit] = ACTIONS(5804), - [anon_sym_typename] = ACTIONS(5804), - [anon_sym_template] = ACTIONS(5804), - [anon_sym_operator] = ACTIONS(5804), - [anon_sym_friend] = ACTIONS(5804), - [anon_sym_public] = ACTIONS(5804), - [anon_sym_private] = ACTIONS(5804), - [anon_sym_protected] = ACTIONS(5804), - [anon_sym_using] = ACTIONS(5804), - [anon_sym_static_assert] = ACTIONS(5804), - }, - [2123] = { [sym_identifier] = ACTIONS(3396), [aux_sym_preproc_def_token1] = ACTIONS(3396), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3398), [aux_sym_preproc_if_token1] = ACTIONS(3396), [aux_sym_preproc_if_token2] = ACTIONS(3396), [aux_sym_preproc_ifdef_token1] = ACTIONS(3396), @@ -307853,2390 +293176,642 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(3396), [anon_sym_using] = ACTIONS(3396), [anon_sym_static_assert] = ACTIONS(3396), + [sym_semgrep_metavar] = ACTIONS(3398), }, - [2124] = { - [sym_string_literal] = STATE(2124), - [sym_raw_string_literal] = STATE(2124), - [aux_sym_concatenated_string_repeat1] = STATE(2124), - [sym_identifier] = ACTIONS(6091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5630), - [anon_sym_COMMA] = ACTIONS(5630), - [anon_sym_LPAREN2] = ACTIONS(5630), - [anon_sym_DASH] = ACTIONS(5635), - [anon_sym_PLUS] = ACTIONS(5635), - [anon_sym_STAR] = ACTIONS(5635), - [anon_sym_SLASH] = ACTIONS(5635), - [anon_sym_PERCENT] = ACTIONS(5635), - [anon_sym_PIPE_PIPE] = ACTIONS(5630), - [anon_sym_AMP_AMP] = ACTIONS(5630), - [anon_sym_PIPE] = ACTIONS(5635), - [anon_sym_CARET] = ACTIONS(5635), - [anon_sym_AMP] = ACTIONS(5635), - [anon_sym_EQ_EQ] = ACTIONS(5630), - [anon_sym_BANG_EQ] = ACTIONS(5630), - [anon_sym_GT] = ACTIONS(5635), - [anon_sym_GT_EQ] = ACTIONS(5635), - [anon_sym_LT_EQ] = ACTIONS(5635), - [anon_sym_LT] = ACTIONS(5635), - [anon_sym_LT_LT] = ACTIONS(5635), - [anon_sym_GT_GT] = ACTIONS(5635), - [anon_sym_LBRACK] = ACTIONS(5630), - [anon_sym_EQ] = ACTIONS(5635), - [anon_sym_QMARK] = ACTIONS(5630), - [anon_sym_STAR_EQ] = ACTIONS(5630), - [anon_sym_SLASH_EQ] = ACTIONS(5630), - [anon_sym_PERCENT_EQ] = ACTIONS(5630), - [anon_sym_PLUS_EQ] = ACTIONS(5630), - [anon_sym_DASH_EQ] = ACTIONS(5630), - [anon_sym_LT_LT_EQ] = ACTIONS(5630), - [anon_sym_GT_GT_EQ] = ACTIONS(5635), - [anon_sym_AMP_EQ] = ACTIONS(5630), - [anon_sym_CARET_EQ] = ACTIONS(5630), - [anon_sym_PIPE_EQ] = ACTIONS(5630), - [anon_sym_and_eq] = ACTIONS(5635), - [anon_sym_or_eq] = ACTIONS(5635), - [anon_sym_xor_eq] = ACTIONS(5635), - [anon_sym_LT_EQ_GT] = ACTIONS(5630), - [anon_sym_or] = ACTIONS(5635), - [anon_sym_and] = ACTIONS(5635), - [anon_sym_bitor] = ACTIONS(5635), - [anon_sym_xor] = ACTIONS(5635), - [anon_sym_bitand] = ACTIONS(5635), - [anon_sym_not_eq] = ACTIONS(5635), - [anon_sym_DASH_DASH] = ACTIONS(5630), - [anon_sym_PLUS_PLUS] = ACTIONS(5630), - [anon_sym_DOT] = ACTIONS(5635), - [anon_sym_DOT_STAR] = ACTIONS(5630), - [anon_sym_DASH_GT] = ACTIONS(5630), - [anon_sym_L_DQUOTE] = ACTIONS(6094), - [anon_sym_u_DQUOTE] = ACTIONS(6094), - [anon_sym_U_DQUOTE] = ACTIONS(6094), - [anon_sym_u8_DQUOTE] = ACTIONS(6094), - [anon_sym_DQUOTE] = ACTIONS(6094), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(5630), - [anon_sym_R_DQUOTE] = ACTIONS(6097), - [anon_sym_LR_DQUOTE] = ACTIONS(6097), - [anon_sym_uR_DQUOTE] = ACTIONS(6097), - [anon_sym_UR_DQUOTE] = ACTIONS(6097), - [anon_sym_u8R_DQUOTE] = ACTIONS(6097), - [sym_literal_suffix] = ACTIONS(5635), - }, - [2125] = { - [sym_identifier] = ACTIONS(3614), - [aux_sym_preproc_def_token1] = ACTIONS(3614), - [aux_sym_preproc_if_token1] = ACTIONS(3614), - [aux_sym_preproc_if_token2] = ACTIONS(3614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3614), - [aux_sym_preproc_else_token1] = ACTIONS(3614), - [aux_sym_preproc_elif_token1] = ACTIONS(3614), - [sym_preproc_directive] = ACTIONS(3614), - [anon_sym_LPAREN2] = ACTIONS(3616), - [anon_sym_TILDE] = ACTIONS(3616), - [anon_sym_STAR] = ACTIONS(3616), - [anon_sym_AMP_AMP] = ACTIONS(3616), - [anon_sym_AMP] = ACTIONS(3614), - [anon_sym___extension__] = ACTIONS(3614), - [anon_sym_typedef] = ACTIONS(3614), - [anon_sym_extern] = ACTIONS(3614), - [anon_sym___attribute__] = ACTIONS(3614), - [anon_sym_COLON_COLON] = ACTIONS(3616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3616), - [anon_sym___declspec] = ACTIONS(3614), - [anon_sym___based] = ACTIONS(3614), - [anon_sym_signed] = ACTIONS(3614), - [anon_sym_unsigned] = ACTIONS(3614), - [anon_sym_long] = ACTIONS(3614), - [anon_sym_short] = ACTIONS(3614), - [anon_sym_LBRACK] = ACTIONS(3614), - [anon_sym_static] = ACTIONS(3614), - [anon_sym_register] = ACTIONS(3614), - [anon_sym_inline] = ACTIONS(3614), - [anon_sym___inline] = ACTIONS(3614), - [anon_sym___inline__] = ACTIONS(3614), - [anon_sym___forceinline] = ACTIONS(3614), - [anon_sym_thread_local] = ACTIONS(3614), - [anon_sym___thread] = ACTIONS(3614), - [anon_sym_const] = ACTIONS(3614), - [anon_sym_constexpr] = ACTIONS(3614), - [anon_sym_volatile] = ACTIONS(3614), - [anon_sym_restrict] = ACTIONS(3614), - [anon_sym___restrict__] = ACTIONS(3614), - [anon_sym__Atomic] = ACTIONS(3614), - [anon_sym__Noreturn] = ACTIONS(3614), - [anon_sym_noreturn] = ACTIONS(3614), - [anon_sym_mutable] = ACTIONS(3614), - [anon_sym_constinit] = ACTIONS(3614), - [anon_sym_consteval] = ACTIONS(3614), - [sym_primitive_type] = ACTIONS(3614), - [anon_sym_enum] = ACTIONS(3614), - [anon_sym_class] = ACTIONS(3614), - [anon_sym_struct] = ACTIONS(3614), - [anon_sym_union] = ACTIONS(3614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3614), - [anon_sym_decltype] = ACTIONS(3614), - [anon_sym_virtual] = ACTIONS(3614), - [anon_sym_alignas] = ACTIONS(3614), - [anon_sym_explicit] = ACTIONS(3614), - [anon_sym_typename] = ACTIONS(3614), - [anon_sym_template] = ACTIONS(3614), - [anon_sym_operator] = ACTIONS(3614), - [anon_sym_friend] = ACTIONS(3614), - [anon_sym_public] = ACTIONS(3614), - [anon_sym_private] = ACTIONS(3614), - [anon_sym_protected] = ACTIONS(3614), - [anon_sym_using] = ACTIONS(3614), - [anon_sym_static_assert] = ACTIONS(3614), - }, - [2126] = { - [sym_identifier] = ACTIONS(3481), - [aux_sym_preproc_def_token1] = ACTIONS(3481), - [aux_sym_preproc_if_token1] = ACTIONS(3481), - [aux_sym_preproc_if_token2] = ACTIONS(3481), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3481), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3481), - [aux_sym_preproc_else_token1] = ACTIONS(3481), - [aux_sym_preproc_elif_token1] = ACTIONS(3481), - [sym_preproc_directive] = ACTIONS(3481), - [anon_sym_LPAREN2] = ACTIONS(3483), - [anon_sym_TILDE] = ACTIONS(3483), - [anon_sym_STAR] = ACTIONS(3483), - [anon_sym_AMP_AMP] = ACTIONS(3483), - [anon_sym_AMP] = ACTIONS(3481), - [anon_sym___extension__] = ACTIONS(3481), - [anon_sym_typedef] = ACTIONS(3481), - [anon_sym_extern] = ACTIONS(3481), - [anon_sym___attribute__] = ACTIONS(3481), - [anon_sym_COLON_COLON] = ACTIONS(3483), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3483), - [anon_sym___declspec] = ACTIONS(3481), - [anon_sym___based] = ACTIONS(3481), - [anon_sym_signed] = ACTIONS(3481), - [anon_sym_unsigned] = ACTIONS(3481), - [anon_sym_long] = ACTIONS(3481), - [anon_sym_short] = ACTIONS(3481), - [anon_sym_LBRACK] = ACTIONS(3481), - [anon_sym_static] = ACTIONS(3481), - [anon_sym_register] = ACTIONS(3481), - [anon_sym_inline] = ACTIONS(3481), - [anon_sym___inline] = ACTIONS(3481), - [anon_sym___inline__] = ACTIONS(3481), - [anon_sym___forceinline] = ACTIONS(3481), - [anon_sym_thread_local] = ACTIONS(3481), - [anon_sym___thread] = ACTIONS(3481), - [anon_sym_const] = ACTIONS(3481), - [anon_sym_constexpr] = ACTIONS(3481), - [anon_sym_volatile] = ACTIONS(3481), - [anon_sym_restrict] = ACTIONS(3481), - [anon_sym___restrict__] = ACTIONS(3481), - [anon_sym__Atomic] = ACTIONS(3481), - [anon_sym__Noreturn] = ACTIONS(3481), - [anon_sym_noreturn] = ACTIONS(3481), - [anon_sym_mutable] = ACTIONS(3481), - [anon_sym_constinit] = ACTIONS(3481), - [anon_sym_consteval] = ACTIONS(3481), - [sym_primitive_type] = ACTIONS(3481), - [anon_sym_enum] = ACTIONS(3481), - [anon_sym_class] = ACTIONS(3481), - [anon_sym_struct] = ACTIONS(3481), - [anon_sym_union] = ACTIONS(3481), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3481), - [anon_sym_decltype] = ACTIONS(3481), - [anon_sym_virtual] = ACTIONS(3481), - [anon_sym_alignas] = ACTIONS(3481), - [anon_sym_explicit] = ACTIONS(3481), - [anon_sym_typename] = ACTIONS(3481), - [anon_sym_template] = ACTIONS(3481), - [anon_sym_operator] = ACTIONS(3481), - [anon_sym_friend] = ACTIONS(3481), - [anon_sym_public] = ACTIONS(3481), - [anon_sym_private] = ACTIONS(3481), - [anon_sym_protected] = ACTIONS(3481), - [anon_sym_using] = ACTIONS(3481), - [anon_sym_static_assert] = ACTIONS(3481), - }, - [2127] = { - [sym_identifier] = ACTIONS(3626), - [aux_sym_preproc_def_token1] = ACTIONS(3626), - [aux_sym_preproc_if_token1] = ACTIONS(3626), - [aux_sym_preproc_if_token2] = ACTIONS(3626), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3626), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3626), - [aux_sym_preproc_else_token1] = ACTIONS(3626), - [aux_sym_preproc_elif_token1] = ACTIONS(3626), - [sym_preproc_directive] = ACTIONS(3626), - [anon_sym_LPAREN2] = ACTIONS(3628), - [anon_sym_TILDE] = ACTIONS(3628), - [anon_sym_STAR] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3626), - [anon_sym___extension__] = ACTIONS(3626), - [anon_sym_typedef] = ACTIONS(3626), - [anon_sym_extern] = ACTIONS(3626), - [anon_sym___attribute__] = ACTIONS(3626), - [anon_sym_COLON_COLON] = ACTIONS(3628), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3628), - [anon_sym___declspec] = ACTIONS(3626), - [anon_sym___based] = ACTIONS(3626), - [anon_sym_signed] = ACTIONS(3626), - [anon_sym_unsigned] = ACTIONS(3626), - [anon_sym_long] = ACTIONS(3626), - [anon_sym_short] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_register] = ACTIONS(3626), - [anon_sym_inline] = ACTIONS(3626), - [anon_sym___inline] = ACTIONS(3626), - [anon_sym___inline__] = ACTIONS(3626), - [anon_sym___forceinline] = ACTIONS(3626), - [anon_sym_thread_local] = ACTIONS(3626), - [anon_sym___thread] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_constexpr] = ACTIONS(3626), - [anon_sym_volatile] = ACTIONS(3626), - [anon_sym_restrict] = ACTIONS(3626), - [anon_sym___restrict__] = ACTIONS(3626), - [anon_sym__Atomic] = ACTIONS(3626), - [anon_sym__Noreturn] = ACTIONS(3626), - [anon_sym_noreturn] = ACTIONS(3626), - [anon_sym_mutable] = ACTIONS(3626), - [anon_sym_constinit] = ACTIONS(3626), - [anon_sym_consteval] = ACTIONS(3626), - [sym_primitive_type] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_struct] = ACTIONS(3626), - [anon_sym_union] = ACTIONS(3626), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3626), - [anon_sym_decltype] = ACTIONS(3626), - [anon_sym_virtual] = ACTIONS(3626), - [anon_sym_alignas] = ACTIONS(3626), - [anon_sym_explicit] = ACTIONS(3626), - [anon_sym_typename] = ACTIONS(3626), - [anon_sym_template] = ACTIONS(3626), - [anon_sym_operator] = ACTIONS(3626), - [anon_sym_friend] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_static_assert] = ACTIONS(3626), - }, - [2128] = { - [sym_identifier] = ACTIONS(5903), - [aux_sym_preproc_def_token1] = ACTIONS(5903), - [aux_sym_preproc_if_token1] = ACTIONS(5903), - [aux_sym_preproc_if_token2] = ACTIONS(5903), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5903), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5903), - [aux_sym_preproc_else_token1] = ACTIONS(5903), - [aux_sym_preproc_elif_token1] = ACTIONS(5903), - [sym_preproc_directive] = ACTIONS(5903), - [anon_sym_LPAREN2] = ACTIONS(5905), - [anon_sym_TILDE] = ACTIONS(5905), - [anon_sym_STAR] = ACTIONS(5905), - [anon_sym_AMP_AMP] = ACTIONS(5905), - [anon_sym_AMP] = ACTIONS(5903), - [anon_sym___extension__] = ACTIONS(5903), - [anon_sym_typedef] = ACTIONS(5903), - [anon_sym_extern] = ACTIONS(5903), - [anon_sym___attribute__] = ACTIONS(5903), - [anon_sym_COLON_COLON] = ACTIONS(5905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5905), - [anon_sym___declspec] = ACTIONS(5903), - [anon_sym___based] = ACTIONS(5903), - [anon_sym_signed] = ACTIONS(5903), - [anon_sym_unsigned] = ACTIONS(5903), - [anon_sym_long] = ACTIONS(5903), - [anon_sym_short] = ACTIONS(5903), - [anon_sym_LBRACK] = ACTIONS(5903), - [anon_sym_static] = ACTIONS(5903), - [anon_sym_register] = ACTIONS(5903), - [anon_sym_inline] = ACTIONS(5903), - [anon_sym___inline] = ACTIONS(5903), - [anon_sym___inline__] = ACTIONS(5903), - [anon_sym___forceinline] = ACTIONS(5903), - [anon_sym_thread_local] = ACTIONS(5903), - [anon_sym___thread] = ACTIONS(5903), - [anon_sym_const] = ACTIONS(5903), - [anon_sym_constexpr] = ACTIONS(5903), - [anon_sym_volatile] = ACTIONS(5903), - [anon_sym_restrict] = ACTIONS(5903), - [anon_sym___restrict__] = ACTIONS(5903), - [anon_sym__Atomic] = ACTIONS(5903), - [anon_sym__Noreturn] = ACTIONS(5903), - [anon_sym_noreturn] = ACTIONS(5903), - [anon_sym_mutable] = ACTIONS(5903), - [anon_sym_constinit] = ACTIONS(5903), - [anon_sym_consteval] = ACTIONS(5903), - [sym_primitive_type] = ACTIONS(5903), - [anon_sym_enum] = ACTIONS(5903), - [anon_sym_class] = ACTIONS(5903), - [anon_sym_struct] = ACTIONS(5903), - [anon_sym_union] = ACTIONS(5903), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5903), - [anon_sym_decltype] = ACTIONS(5903), - [anon_sym_virtual] = ACTIONS(5903), - [anon_sym_alignas] = ACTIONS(5903), - [anon_sym_explicit] = ACTIONS(5903), - [anon_sym_typename] = ACTIONS(5903), - [anon_sym_template] = ACTIONS(5903), - [anon_sym_operator] = ACTIONS(5903), - [anon_sym_friend] = ACTIONS(5903), - [anon_sym_public] = ACTIONS(5903), - [anon_sym_private] = ACTIONS(5903), - [anon_sym_protected] = ACTIONS(5903), - [anon_sym_using] = ACTIONS(5903), - [anon_sym_static_assert] = ACTIONS(5903), + [2073] = { + [sym_identifier] = ACTIONS(3649), + [aux_sym_preproc_def_token1] = ACTIONS(3649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3651), + [aux_sym_preproc_if_token1] = ACTIONS(3649), + [aux_sym_preproc_if_token2] = ACTIONS(3649), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3649), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3649), + [aux_sym_preproc_else_token1] = ACTIONS(3649), + [aux_sym_preproc_elif_token1] = ACTIONS(3649), + [sym_preproc_directive] = ACTIONS(3649), + [anon_sym_LPAREN2] = ACTIONS(3651), + [anon_sym_TILDE] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3651), + [anon_sym_AMP_AMP] = ACTIONS(3651), + [anon_sym_AMP] = ACTIONS(3649), + [anon_sym___extension__] = ACTIONS(3649), + [anon_sym_typedef] = ACTIONS(3649), + [anon_sym_extern] = ACTIONS(3649), + [anon_sym___attribute__] = ACTIONS(3649), + [anon_sym_COLON_COLON] = ACTIONS(3651), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3651), + [anon_sym___declspec] = ACTIONS(3649), + [anon_sym___based] = ACTIONS(3649), + [anon_sym_signed] = ACTIONS(3649), + [anon_sym_unsigned] = ACTIONS(3649), + [anon_sym_long] = ACTIONS(3649), + [anon_sym_short] = ACTIONS(3649), + [anon_sym_LBRACK] = ACTIONS(3649), + [anon_sym_static] = ACTIONS(3649), + [anon_sym_register] = ACTIONS(3649), + [anon_sym_inline] = ACTIONS(3649), + [anon_sym___inline] = ACTIONS(3649), + [anon_sym___inline__] = ACTIONS(3649), + [anon_sym___forceinline] = ACTIONS(3649), + [anon_sym_thread_local] = ACTIONS(3649), + [anon_sym___thread] = ACTIONS(3649), + [anon_sym_const] = ACTIONS(3649), + [anon_sym_constexpr] = ACTIONS(3649), + [anon_sym_volatile] = ACTIONS(3649), + [anon_sym_restrict] = ACTIONS(3649), + [anon_sym___restrict__] = ACTIONS(3649), + [anon_sym__Atomic] = ACTIONS(3649), + [anon_sym__Noreturn] = ACTIONS(3649), + [anon_sym_noreturn] = ACTIONS(3649), + [anon_sym_mutable] = ACTIONS(3649), + [anon_sym_constinit] = ACTIONS(3649), + [anon_sym_consteval] = ACTIONS(3649), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_enum] = ACTIONS(3649), + [anon_sym_class] = ACTIONS(3649), + [anon_sym_struct] = ACTIONS(3649), + [anon_sym_union] = ACTIONS(3649), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3649), + [anon_sym_decltype] = ACTIONS(3649), + [anon_sym_virtual] = ACTIONS(3649), + [anon_sym_alignas] = ACTIONS(3649), + [anon_sym_explicit] = ACTIONS(3649), + [anon_sym_typename] = ACTIONS(3649), + [anon_sym_template] = ACTIONS(3649), + [anon_sym_operator] = ACTIONS(3649), + [anon_sym_friend] = ACTIONS(3649), + [anon_sym_public] = ACTIONS(3649), + [anon_sym_private] = ACTIONS(3649), + [anon_sym_protected] = ACTIONS(3649), + [anon_sym_using] = ACTIONS(3649), + [anon_sym_static_assert] = ACTIONS(3649), + [sym_semgrep_metavar] = ACTIONS(3651), }, - [2129] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1920), - [ts_builtin_sym_end] = ACTIONS(6016), - [sym_identifier] = ACTIONS(5699), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6016), - [anon_sym_COMMA] = ACTIONS(6016), - [anon_sym_RPAREN] = ACTIONS(6016), - [anon_sym_LPAREN2] = ACTIONS(6016), - [anon_sym_DASH] = ACTIONS(6019), - [anon_sym_PLUS] = ACTIONS(6019), - [anon_sym_STAR] = ACTIONS(6019), - [anon_sym_SLASH] = ACTIONS(6019), - [anon_sym_PERCENT] = ACTIONS(6019), - [anon_sym_PIPE_PIPE] = ACTIONS(6016), - [anon_sym_AMP_AMP] = ACTIONS(6016), - [anon_sym_PIPE] = ACTIONS(6019), - [anon_sym_CARET] = ACTIONS(6019), - [anon_sym_AMP] = ACTIONS(6019), - [anon_sym_EQ_EQ] = ACTIONS(6016), - [anon_sym_BANG_EQ] = ACTIONS(6016), - [anon_sym_GT] = ACTIONS(6019), - [anon_sym_GT_EQ] = ACTIONS(6016), - [anon_sym_LT_EQ] = ACTIONS(6019), - [anon_sym_LT] = ACTIONS(6019), - [anon_sym_LT_LT] = ACTIONS(6019), - [anon_sym_GT_GT] = ACTIONS(6019), - [anon_sym_SEMI] = ACTIONS(6016), - [anon_sym_LBRACE] = ACTIONS(6016), - [anon_sym_RBRACE] = ACTIONS(6016), - [anon_sym_signed] = ACTIONS(5734), - [anon_sym_unsigned] = ACTIONS(5734), - [anon_sym_long] = ACTIONS(5734), - [anon_sym_short] = ACTIONS(5734), - [anon_sym_LBRACK] = ACTIONS(6016), - [anon_sym_RBRACK] = ACTIONS(6016), - [anon_sym_EQ] = ACTIONS(6019), - [sym_primitive_type] = ACTIONS(5699), - [anon_sym_COLON] = ACTIONS(6016), - [anon_sym_QMARK] = ACTIONS(6016), - [anon_sym_STAR_EQ] = ACTIONS(6016), - [anon_sym_SLASH_EQ] = ACTIONS(6016), - [anon_sym_PERCENT_EQ] = ACTIONS(6016), - [anon_sym_PLUS_EQ] = ACTIONS(6016), - [anon_sym_DASH_EQ] = ACTIONS(6016), - [anon_sym_LT_LT_EQ] = ACTIONS(6016), - [anon_sym_GT_GT_EQ] = ACTIONS(6016), - [anon_sym_AMP_EQ] = ACTIONS(6016), - [anon_sym_CARET_EQ] = ACTIONS(6016), - [anon_sym_PIPE_EQ] = ACTIONS(6016), - [anon_sym_and_eq] = ACTIONS(6019), - [anon_sym_or_eq] = ACTIONS(6019), - [anon_sym_xor_eq] = ACTIONS(6019), - [anon_sym_LT_EQ_GT] = ACTIONS(6016), - [anon_sym_or] = ACTIONS(6019), - [anon_sym_and] = ACTIONS(6019), - [anon_sym_bitor] = ACTIONS(6019), - [anon_sym_xor] = ACTIONS(6019), - [anon_sym_bitand] = ACTIONS(6019), - [anon_sym_not_eq] = ACTIONS(6019), - [anon_sym_DASH_DASH] = ACTIONS(6016), - [anon_sym_PLUS_PLUS] = ACTIONS(6016), - [anon_sym_DOT] = ACTIONS(6019), - [anon_sym_DOT_STAR] = ACTIONS(6016), - [anon_sym_DASH_GT] = ACTIONS(6016), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6019), - [anon_sym_decltype] = ACTIONS(6019), + [2074] = { + [sym_identifier] = ACTIONS(5789), + [aux_sym_preproc_def_token1] = ACTIONS(5789), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5791), + [aux_sym_preproc_if_token1] = ACTIONS(5789), + [aux_sym_preproc_if_token2] = ACTIONS(5789), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5789), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5789), + [aux_sym_preproc_else_token1] = ACTIONS(5789), + [aux_sym_preproc_elif_token1] = ACTIONS(5789), + [sym_preproc_directive] = ACTIONS(5789), + [anon_sym_LPAREN2] = ACTIONS(5791), + [anon_sym_TILDE] = ACTIONS(5791), + [anon_sym_STAR] = ACTIONS(5791), + [anon_sym_AMP_AMP] = ACTIONS(5791), + [anon_sym_AMP] = ACTIONS(5789), + [anon_sym___extension__] = ACTIONS(5789), + [anon_sym_typedef] = ACTIONS(5789), + [anon_sym_extern] = ACTIONS(5789), + [anon_sym___attribute__] = ACTIONS(5789), + [anon_sym_COLON_COLON] = ACTIONS(5791), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5791), + [anon_sym___declspec] = ACTIONS(5789), + [anon_sym___based] = ACTIONS(5789), + [anon_sym_signed] = ACTIONS(5789), + [anon_sym_unsigned] = ACTIONS(5789), + [anon_sym_long] = ACTIONS(5789), + [anon_sym_short] = ACTIONS(5789), + [anon_sym_LBRACK] = ACTIONS(5789), + [anon_sym_static] = ACTIONS(5789), + [anon_sym_register] = ACTIONS(5789), + [anon_sym_inline] = ACTIONS(5789), + [anon_sym___inline] = ACTIONS(5789), + [anon_sym___inline__] = ACTIONS(5789), + [anon_sym___forceinline] = ACTIONS(5789), + [anon_sym_thread_local] = ACTIONS(5789), + [anon_sym___thread] = ACTIONS(5789), + [anon_sym_const] = ACTIONS(5789), + [anon_sym_constexpr] = ACTIONS(5789), + [anon_sym_volatile] = ACTIONS(5789), + [anon_sym_restrict] = ACTIONS(5789), + [anon_sym___restrict__] = ACTIONS(5789), + [anon_sym__Atomic] = ACTIONS(5789), + [anon_sym__Noreturn] = ACTIONS(5789), + [anon_sym_noreturn] = ACTIONS(5789), + [anon_sym_mutable] = ACTIONS(5789), + [anon_sym_constinit] = ACTIONS(5789), + [anon_sym_consteval] = ACTIONS(5789), + [sym_primitive_type] = ACTIONS(5789), + [anon_sym_enum] = ACTIONS(5789), + [anon_sym_class] = ACTIONS(5789), + [anon_sym_struct] = ACTIONS(5789), + [anon_sym_union] = ACTIONS(5789), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5789), + [anon_sym_decltype] = ACTIONS(5789), + [anon_sym_virtual] = ACTIONS(5789), + [anon_sym_alignas] = ACTIONS(5789), + [anon_sym_explicit] = ACTIONS(5789), + [anon_sym_typename] = ACTIONS(5789), + [anon_sym_template] = ACTIONS(5789), + [anon_sym_operator] = ACTIONS(5789), + [anon_sym_friend] = ACTIONS(5789), + [anon_sym_public] = ACTIONS(5789), + [anon_sym_private] = ACTIONS(5789), + [anon_sym_protected] = ACTIONS(5789), + [anon_sym_using] = ACTIONS(5789), + [anon_sym_static_assert] = ACTIONS(5789), + [sym_semgrep_metavar] = ACTIONS(5791), }, - [2130] = { - [sym_identifier] = ACTIONS(3630), - [aux_sym_preproc_def_token1] = ACTIONS(3630), - [aux_sym_preproc_if_token1] = ACTIONS(3630), - [aux_sym_preproc_if_token2] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), - [aux_sym_preproc_else_token1] = ACTIONS(3630), - [aux_sym_preproc_elif_token1] = ACTIONS(3630), - [sym_preproc_directive] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(3632), - [anon_sym_TILDE] = ACTIONS(3632), - [anon_sym_STAR] = ACTIONS(3632), - [anon_sym_AMP_AMP] = ACTIONS(3632), - [anon_sym_AMP] = ACTIONS(3630), - [anon_sym___extension__] = ACTIONS(3630), - [anon_sym_typedef] = ACTIONS(3630), - [anon_sym_extern] = ACTIONS(3630), - [anon_sym___attribute__] = ACTIONS(3630), - [anon_sym_COLON_COLON] = ACTIONS(3632), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), - [anon_sym___declspec] = ACTIONS(3630), - [anon_sym___based] = ACTIONS(3630), - [anon_sym_signed] = ACTIONS(3630), - [anon_sym_unsigned] = ACTIONS(3630), - [anon_sym_long] = ACTIONS(3630), - [anon_sym_short] = ACTIONS(3630), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_static] = ACTIONS(3630), - [anon_sym_register] = ACTIONS(3630), - [anon_sym_inline] = ACTIONS(3630), - [anon_sym___inline] = ACTIONS(3630), - [anon_sym___inline__] = ACTIONS(3630), - [anon_sym___forceinline] = ACTIONS(3630), - [anon_sym_thread_local] = ACTIONS(3630), - [anon_sym___thread] = ACTIONS(3630), - [anon_sym_const] = ACTIONS(3630), - [anon_sym_constexpr] = ACTIONS(3630), - [anon_sym_volatile] = ACTIONS(3630), - [anon_sym_restrict] = ACTIONS(3630), - [anon_sym___restrict__] = ACTIONS(3630), - [anon_sym__Atomic] = ACTIONS(3630), - [anon_sym__Noreturn] = ACTIONS(3630), - [anon_sym_noreturn] = ACTIONS(3630), - [anon_sym_mutable] = ACTIONS(3630), - [anon_sym_constinit] = ACTIONS(3630), - [anon_sym_consteval] = ACTIONS(3630), - [sym_primitive_type] = ACTIONS(3630), - [anon_sym_enum] = ACTIONS(3630), - [anon_sym_class] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3630), - [anon_sym_union] = ACTIONS(3630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3630), - [anon_sym_decltype] = ACTIONS(3630), - [anon_sym_virtual] = ACTIONS(3630), - [anon_sym_alignas] = ACTIONS(3630), - [anon_sym_explicit] = ACTIONS(3630), - [anon_sym_typename] = ACTIONS(3630), - [anon_sym_template] = ACTIONS(3630), - [anon_sym_operator] = ACTIONS(3630), - [anon_sym_friend] = ACTIONS(3630), - [anon_sym_public] = ACTIONS(3630), - [anon_sym_private] = ACTIONS(3630), - [anon_sym_protected] = ACTIONS(3630), - [anon_sym_using] = ACTIONS(3630), - [anon_sym_static_assert] = ACTIONS(3630), + [2075] = { + [sym_identifier] = ACTIONS(5793), + [aux_sym_preproc_def_token1] = ACTIONS(5793), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5795), + [aux_sym_preproc_if_token1] = ACTIONS(5793), + [aux_sym_preproc_if_token2] = ACTIONS(5793), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5793), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5793), + [aux_sym_preproc_else_token1] = ACTIONS(5793), + [aux_sym_preproc_elif_token1] = ACTIONS(5793), + [sym_preproc_directive] = ACTIONS(5793), + [anon_sym_LPAREN2] = ACTIONS(5795), + [anon_sym_TILDE] = ACTIONS(5795), + [anon_sym_STAR] = ACTIONS(5795), + [anon_sym_AMP_AMP] = ACTIONS(5795), + [anon_sym_AMP] = ACTIONS(5793), + [anon_sym___extension__] = ACTIONS(5793), + [anon_sym_typedef] = ACTIONS(5793), + [anon_sym_extern] = ACTIONS(5793), + [anon_sym___attribute__] = ACTIONS(5793), + [anon_sym_COLON_COLON] = ACTIONS(5795), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5795), + [anon_sym___declspec] = ACTIONS(5793), + [anon_sym___based] = ACTIONS(5793), + [anon_sym_signed] = ACTIONS(5793), + [anon_sym_unsigned] = ACTIONS(5793), + [anon_sym_long] = ACTIONS(5793), + [anon_sym_short] = ACTIONS(5793), + [anon_sym_LBRACK] = ACTIONS(5793), + [anon_sym_static] = ACTIONS(5793), + [anon_sym_register] = ACTIONS(5793), + [anon_sym_inline] = ACTIONS(5793), + [anon_sym___inline] = ACTIONS(5793), + [anon_sym___inline__] = ACTIONS(5793), + [anon_sym___forceinline] = ACTIONS(5793), + [anon_sym_thread_local] = ACTIONS(5793), + [anon_sym___thread] = ACTIONS(5793), + [anon_sym_const] = ACTIONS(5793), + [anon_sym_constexpr] = ACTIONS(5793), + [anon_sym_volatile] = ACTIONS(5793), + [anon_sym_restrict] = ACTIONS(5793), + [anon_sym___restrict__] = ACTIONS(5793), + [anon_sym__Atomic] = ACTIONS(5793), + [anon_sym__Noreturn] = ACTIONS(5793), + [anon_sym_noreturn] = ACTIONS(5793), + [anon_sym_mutable] = ACTIONS(5793), + [anon_sym_constinit] = ACTIONS(5793), + [anon_sym_consteval] = ACTIONS(5793), + [sym_primitive_type] = ACTIONS(5793), + [anon_sym_enum] = ACTIONS(5793), + [anon_sym_class] = ACTIONS(5793), + [anon_sym_struct] = ACTIONS(5793), + [anon_sym_union] = ACTIONS(5793), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5793), + [anon_sym_decltype] = ACTIONS(5793), + [anon_sym_virtual] = ACTIONS(5793), + [anon_sym_alignas] = ACTIONS(5793), + [anon_sym_explicit] = ACTIONS(5793), + [anon_sym_typename] = ACTIONS(5793), + [anon_sym_template] = ACTIONS(5793), + [anon_sym_operator] = ACTIONS(5793), + [anon_sym_friend] = ACTIONS(5793), + [anon_sym_public] = ACTIONS(5793), + [anon_sym_private] = ACTIONS(5793), + [anon_sym_protected] = ACTIONS(5793), + [anon_sym_using] = ACTIONS(5793), + [anon_sym_static_assert] = ACTIONS(5793), + [sym_semgrep_metavar] = ACTIONS(5795), }, - [2131] = { - [sym_identifier] = ACTIONS(5864), - [aux_sym_preproc_def_token1] = ACTIONS(5864), - [aux_sym_preproc_if_token1] = ACTIONS(5864), - [aux_sym_preproc_if_token2] = ACTIONS(5864), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5864), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5864), - [aux_sym_preproc_else_token1] = ACTIONS(5864), - [aux_sym_preproc_elif_token1] = ACTIONS(5864), - [sym_preproc_directive] = ACTIONS(5864), - [anon_sym_LPAREN2] = ACTIONS(5866), - [anon_sym_TILDE] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_AMP_AMP] = ACTIONS(5866), - [anon_sym_AMP] = ACTIONS(5864), - [anon_sym___extension__] = ACTIONS(5864), - [anon_sym_typedef] = ACTIONS(5864), - [anon_sym_extern] = ACTIONS(5864), - [anon_sym___attribute__] = ACTIONS(5864), - [anon_sym_COLON_COLON] = ACTIONS(5866), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5866), - [anon_sym___declspec] = ACTIONS(5864), - [anon_sym___based] = ACTIONS(5864), - [anon_sym_signed] = ACTIONS(5864), - [anon_sym_unsigned] = ACTIONS(5864), - [anon_sym_long] = ACTIONS(5864), - [anon_sym_short] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5864), - [anon_sym_static] = ACTIONS(5864), - [anon_sym_register] = ACTIONS(5864), - [anon_sym_inline] = ACTIONS(5864), - [anon_sym___inline] = ACTIONS(5864), - [anon_sym___inline__] = ACTIONS(5864), - [anon_sym___forceinline] = ACTIONS(5864), - [anon_sym_thread_local] = ACTIONS(5864), - [anon_sym___thread] = ACTIONS(5864), - [anon_sym_const] = ACTIONS(5864), - [anon_sym_constexpr] = ACTIONS(5864), - [anon_sym_volatile] = ACTIONS(5864), - [anon_sym_restrict] = ACTIONS(5864), - [anon_sym___restrict__] = ACTIONS(5864), - [anon_sym__Atomic] = ACTIONS(5864), - [anon_sym__Noreturn] = ACTIONS(5864), - [anon_sym_noreturn] = ACTIONS(5864), - [anon_sym_mutable] = ACTIONS(5864), - [anon_sym_constinit] = ACTIONS(5864), - [anon_sym_consteval] = ACTIONS(5864), - [sym_primitive_type] = ACTIONS(5864), - [anon_sym_enum] = ACTIONS(5864), - [anon_sym_class] = ACTIONS(5864), - [anon_sym_struct] = ACTIONS(5864), - [anon_sym_union] = ACTIONS(5864), + [2076] = { + [sym_identifier] = ACTIONS(3143), + [aux_sym_preproc_def_token1] = ACTIONS(3143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3145), + [aux_sym_preproc_if_token1] = ACTIONS(3143), + [aux_sym_preproc_if_token2] = ACTIONS(3143), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3143), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3143), + [aux_sym_preproc_else_token1] = ACTIONS(3143), + [aux_sym_preproc_elif_token1] = ACTIONS(3143), + [sym_preproc_directive] = ACTIONS(3143), + [anon_sym_LPAREN2] = ACTIONS(3145), + [anon_sym_TILDE] = ACTIONS(3145), + [anon_sym_STAR] = ACTIONS(3145), + [anon_sym_AMP_AMP] = ACTIONS(3145), + [anon_sym_AMP] = ACTIONS(3143), + [anon_sym___extension__] = ACTIONS(3143), + [anon_sym_typedef] = ACTIONS(3143), + [anon_sym_extern] = ACTIONS(3143), + [anon_sym___attribute__] = ACTIONS(3143), + [anon_sym_COLON_COLON] = ACTIONS(3145), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3145), + [anon_sym___declspec] = ACTIONS(3143), + [anon_sym___based] = ACTIONS(3143), + [anon_sym_signed] = ACTIONS(3143), + [anon_sym_unsigned] = ACTIONS(3143), + [anon_sym_long] = ACTIONS(3143), + [anon_sym_short] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(3143), + [anon_sym_static] = ACTIONS(3143), + [anon_sym_register] = ACTIONS(3143), + [anon_sym_inline] = ACTIONS(3143), + [anon_sym___inline] = ACTIONS(3143), + [anon_sym___inline__] = ACTIONS(3143), + [anon_sym___forceinline] = ACTIONS(3143), + [anon_sym_thread_local] = ACTIONS(3143), + [anon_sym___thread] = ACTIONS(3143), + [anon_sym_const] = ACTIONS(3143), + [anon_sym_constexpr] = ACTIONS(3143), + [anon_sym_volatile] = ACTIONS(3143), + [anon_sym_restrict] = ACTIONS(3143), + [anon_sym___restrict__] = ACTIONS(3143), + [anon_sym__Atomic] = ACTIONS(3143), + [anon_sym__Noreturn] = ACTIONS(3143), + [anon_sym_noreturn] = ACTIONS(3143), + [anon_sym_mutable] = ACTIONS(3143), + [anon_sym_constinit] = ACTIONS(3143), + [anon_sym_consteval] = ACTIONS(3143), + [sym_primitive_type] = ACTIONS(3143), + [anon_sym_enum] = ACTIONS(3143), + [anon_sym_class] = ACTIONS(3143), + [anon_sym_struct] = ACTIONS(3143), + [anon_sym_union] = ACTIONS(3143), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5864), - [anon_sym_decltype] = ACTIONS(5864), - [anon_sym_virtual] = ACTIONS(5864), - [anon_sym_alignas] = ACTIONS(5864), - [anon_sym_explicit] = ACTIONS(5864), - [anon_sym_typename] = ACTIONS(5864), - [anon_sym_template] = ACTIONS(5864), - [anon_sym_operator] = ACTIONS(5864), - [anon_sym_friend] = ACTIONS(5864), - [anon_sym_public] = ACTIONS(5864), - [anon_sym_private] = ACTIONS(5864), - [anon_sym_protected] = ACTIONS(5864), - [anon_sym_using] = ACTIONS(5864), - [anon_sym_static_assert] = ACTIONS(5864), - }, - [2132] = { - [sym_identifier] = ACTIONS(3362), - [aux_sym_preproc_def_token1] = ACTIONS(3362), - [aux_sym_preproc_if_token1] = ACTIONS(3362), - [aux_sym_preproc_if_token2] = ACTIONS(3362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3362), - [aux_sym_preproc_else_token1] = ACTIONS(3362), - [aux_sym_preproc_elif_token1] = ACTIONS(3362), - [sym_preproc_directive] = ACTIONS(3362), - [anon_sym_LPAREN2] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(3364), - [anon_sym_STAR] = ACTIONS(3364), - [anon_sym_AMP_AMP] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3362), - [anon_sym___extension__] = ACTIONS(3362), - [anon_sym_typedef] = ACTIONS(3362), - [anon_sym_extern] = ACTIONS(3362), - [anon_sym___attribute__] = ACTIONS(3362), - [anon_sym_COLON_COLON] = ACTIONS(3364), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3364), - [anon_sym___declspec] = ACTIONS(3362), - [anon_sym___based] = ACTIONS(3362), - [anon_sym_signed] = ACTIONS(3362), - [anon_sym_unsigned] = ACTIONS(3362), - [anon_sym_long] = ACTIONS(3362), - [anon_sym_short] = ACTIONS(3362), - [anon_sym_LBRACK] = ACTIONS(3362), - [anon_sym_static] = ACTIONS(3362), - [anon_sym_register] = ACTIONS(3362), - [anon_sym_inline] = ACTIONS(3362), - [anon_sym___inline] = ACTIONS(3362), - [anon_sym___inline__] = ACTIONS(3362), - [anon_sym___forceinline] = ACTIONS(3362), - [anon_sym_thread_local] = ACTIONS(3362), - [anon_sym___thread] = ACTIONS(3362), - [anon_sym_const] = ACTIONS(3362), - [anon_sym_constexpr] = ACTIONS(3362), - [anon_sym_volatile] = ACTIONS(3362), - [anon_sym_restrict] = ACTIONS(3362), - [anon_sym___restrict__] = ACTIONS(3362), - [anon_sym__Atomic] = ACTIONS(3362), - [anon_sym__Noreturn] = ACTIONS(3362), - [anon_sym_noreturn] = ACTIONS(3362), - [anon_sym_mutable] = ACTIONS(3362), - [anon_sym_constinit] = ACTIONS(3362), - [anon_sym_consteval] = ACTIONS(3362), - [sym_primitive_type] = ACTIONS(3362), - [anon_sym_enum] = ACTIONS(3362), - [anon_sym_class] = ACTIONS(3362), - [anon_sym_struct] = ACTIONS(3362), - [anon_sym_union] = ACTIONS(3362), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3362), - [anon_sym_decltype] = ACTIONS(3362), - [anon_sym_virtual] = ACTIONS(3362), - [anon_sym_alignas] = ACTIONS(3362), - [anon_sym_explicit] = ACTIONS(3362), - [anon_sym_typename] = ACTIONS(3362), - [anon_sym_template] = ACTIONS(3362), - [anon_sym_operator] = ACTIONS(3362), - [anon_sym_friend] = ACTIONS(3362), - [anon_sym_public] = ACTIONS(3362), - [anon_sym_private] = ACTIONS(3362), - [anon_sym_protected] = ACTIONS(3362), - [anon_sym_using] = ACTIONS(3362), - [anon_sym_static_assert] = ACTIONS(3362), - }, - [2133] = { - [sym_identifier] = ACTIONS(3644), - [aux_sym_preproc_def_token1] = ACTIONS(3644), - [aux_sym_preproc_if_token1] = ACTIONS(3644), - [aux_sym_preproc_if_token2] = ACTIONS(3644), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3644), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3644), - [aux_sym_preproc_else_token1] = ACTIONS(3644), - [aux_sym_preproc_elif_token1] = ACTIONS(3644), - [sym_preproc_directive] = ACTIONS(3644), - [anon_sym_LPAREN2] = ACTIONS(3646), - [anon_sym_TILDE] = ACTIONS(3646), - [anon_sym_STAR] = ACTIONS(3646), - [anon_sym_AMP_AMP] = ACTIONS(3646), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym___extension__] = ACTIONS(3644), - [anon_sym_typedef] = ACTIONS(3644), - [anon_sym_extern] = ACTIONS(3644), - [anon_sym___attribute__] = ACTIONS(3644), - [anon_sym_COLON_COLON] = ACTIONS(3646), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3646), - [anon_sym___declspec] = ACTIONS(3644), - [anon_sym___based] = ACTIONS(3644), - [anon_sym_signed] = ACTIONS(3644), - [anon_sym_unsigned] = ACTIONS(3644), - [anon_sym_long] = ACTIONS(3644), - [anon_sym_short] = ACTIONS(3644), - [anon_sym_LBRACK] = ACTIONS(3644), - [anon_sym_static] = ACTIONS(3644), - [anon_sym_register] = ACTIONS(3644), - [anon_sym_inline] = ACTIONS(3644), - [anon_sym___inline] = ACTIONS(3644), - [anon_sym___inline__] = ACTIONS(3644), - [anon_sym___forceinline] = ACTIONS(3644), - [anon_sym_thread_local] = ACTIONS(3644), - [anon_sym___thread] = ACTIONS(3644), - [anon_sym_const] = ACTIONS(3644), - [anon_sym_constexpr] = ACTIONS(3644), - [anon_sym_volatile] = ACTIONS(3644), - [anon_sym_restrict] = ACTIONS(3644), - [anon_sym___restrict__] = ACTIONS(3644), - [anon_sym__Atomic] = ACTIONS(3644), - [anon_sym__Noreturn] = ACTIONS(3644), - [anon_sym_noreturn] = ACTIONS(3644), - [anon_sym_mutable] = ACTIONS(3644), - [anon_sym_constinit] = ACTIONS(3644), - [anon_sym_consteval] = ACTIONS(3644), - [sym_primitive_type] = ACTIONS(3644), - [anon_sym_enum] = ACTIONS(3644), - [anon_sym_class] = ACTIONS(3644), - [anon_sym_struct] = ACTIONS(3644), - [anon_sym_union] = ACTIONS(3644), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3644), - [anon_sym_decltype] = ACTIONS(3644), - [anon_sym_virtual] = ACTIONS(3644), - [anon_sym_alignas] = ACTIONS(3644), - [anon_sym_explicit] = ACTIONS(3644), - [anon_sym_typename] = ACTIONS(3644), - [anon_sym_template] = ACTIONS(3644), - [anon_sym_operator] = ACTIONS(3644), - [anon_sym_friend] = ACTIONS(3644), - [anon_sym_public] = ACTIONS(3644), - [anon_sym_private] = ACTIONS(3644), - [anon_sym_protected] = ACTIONS(3644), - [anon_sym_using] = ACTIONS(3644), - [anon_sym_static_assert] = ACTIONS(3644), - }, - [2134] = { - [sym_identifier] = ACTIONS(3078), - [aux_sym_preproc_def_token1] = ACTIONS(3078), - [anon_sym_COMMA] = ACTIONS(3187), - [aux_sym_preproc_if_token1] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3078), - [sym_preproc_directive] = ACTIONS(3078), - [anon_sym_LPAREN2] = ACTIONS(3080), - [anon_sym_TILDE] = ACTIONS(3080), - [anon_sym_STAR] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym_SEMI] = ACTIONS(3187), - [anon_sym___extension__] = ACTIONS(3078), - [anon_sym_typedef] = ACTIONS(3078), - [anon_sym_extern] = ACTIONS(3078), - [anon_sym___attribute__] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3080), - [anon_sym___declspec] = ACTIONS(3078), - [anon_sym___based] = ACTIONS(3078), - [anon_sym_RBRACE] = ACTIONS(3080), - [anon_sym_signed] = ACTIONS(3078), - [anon_sym_unsigned] = ACTIONS(3078), - [anon_sym_long] = ACTIONS(3078), - [anon_sym_short] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_static] = ACTIONS(3078), - [anon_sym_register] = ACTIONS(3078), - [anon_sym_inline] = ACTIONS(3078), - [anon_sym___inline] = ACTIONS(3078), - [anon_sym___inline__] = ACTIONS(3078), - [anon_sym___forceinline] = ACTIONS(3078), - [anon_sym_thread_local] = ACTIONS(3078), - [anon_sym___thread] = ACTIONS(3078), - [anon_sym_const] = ACTIONS(3078), - [anon_sym_constexpr] = ACTIONS(3078), - [anon_sym_volatile] = ACTIONS(3078), - [anon_sym_restrict] = ACTIONS(3078), - [anon_sym___restrict__] = ACTIONS(3078), - [anon_sym__Atomic] = ACTIONS(3078), - [anon_sym__Noreturn] = ACTIONS(3078), - [anon_sym_noreturn] = ACTIONS(3078), - [anon_sym_mutable] = ACTIONS(3078), - [anon_sym_constinit] = ACTIONS(3078), - [anon_sym_consteval] = ACTIONS(3078), - [sym_primitive_type] = ACTIONS(3078), - [anon_sym_enum] = ACTIONS(3078), - [anon_sym_class] = ACTIONS(3078), - [anon_sym_struct] = ACTIONS(3078), - [anon_sym_union] = ACTIONS(3078), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3078), - [anon_sym_decltype] = ACTIONS(3078), - [anon_sym_virtual] = ACTIONS(3078), - [anon_sym_alignas] = ACTIONS(3078), - [anon_sym_explicit] = ACTIONS(3078), - [anon_sym_typename] = ACTIONS(3078), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_operator] = ACTIONS(3078), - [anon_sym_friend] = ACTIONS(3078), - [anon_sym_public] = ACTIONS(3078), - [anon_sym_private] = ACTIONS(3078), - [anon_sym_protected] = ACTIONS(3078), - [anon_sym_using] = ACTIONS(3078), - [anon_sym_static_assert] = ACTIONS(3078), - }, - [2135] = { - [sym_identifier] = ACTIONS(3556), - [aux_sym_preproc_def_token1] = ACTIONS(3556), - [aux_sym_preproc_if_token1] = ACTIONS(3556), - [aux_sym_preproc_if_token2] = ACTIONS(3556), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3556), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3556), - [aux_sym_preproc_else_token1] = ACTIONS(3556), - [aux_sym_preproc_elif_token1] = ACTIONS(3556), - [sym_preproc_directive] = ACTIONS(3556), - [anon_sym_LPAREN2] = ACTIONS(3558), - [anon_sym_TILDE] = ACTIONS(3558), - [anon_sym_STAR] = ACTIONS(3558), - [anon_sym_AMP_AMP] = ACTIONS(3558), - [anon_sym_AMP] = ACTIONS(3556), - [anon_sym___extension__] = ACTIONS(3556), - [anon_sym_typedef] = ACTIONS(3556), - [anon_sym_extern] = ACTIONS(3556), - [anon_sym___attribute__] = ACTIONS(3556), - [anon_sym_COLON_COLON] = ACTIONS(3558), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3558), - [anon_sym___declspec] = ACTIONS(3556), - [anon_sym___based] = ACTIONS(3556), - [anon_sym_signed] = ACTIONS(3556), - [anon_sym_unsigned] = ACTIONS(3556), - [anon_sym_long] = ACTIONS(3556), - [anon_sym_short] = ACTIONS(3556), - [anon_sym_LBRACK] = ACTIONS(3556), - [anon_sym_static] = ACTIONS(3556), - [anon_sym_register] = ACTIONS(3556), - [anon_sym_inline] = ACTIONS(3556), - [anon_sym___inline] = ACTIONS(3556), - [anon_sym___inline__] = ACTIONS(3556), - [anon_sym___forceinline] = ACTIONS(3556), - [anon_sym_thread_local] = ACTIONS(3556), - [anon_sym___thread] = ACTIONS(3556), - [anon_sym_const] = ACTIONS(3556), - [anon_sym_constexpr] = ACTIONS(3556), - [anon_sym_volatile] = ACTIONS(3556), - [anon_sym_restrict] = ACTIONS(3556), - [anon_sym___restrict__] = ACTIONS(3556), - [anon_sym__Atomic] = ACTIONS(3556), - [anon_sym__Noreturn] = ACTIONS(3556), - [anon_sym_noreturn] = ACTIONS(3556), - [anon_sym_mutable] = ACTIONS(3556), - [anon_sym_constinit] = ACTIONS(3556), - [anon_sym_consteval] = ACTIONS(3556), - [sym_primitive_type] = ACTIONS(3556), - [anon_sym_enum] = ACTIONS(3556), - [anon_sym_class] = ACTIONS(3556), - [anon_sym_struct] = ACTIONS(3556), - [anon_sym_union] = ACTIONS(3556), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3556), - [anon_sym_decltype] = ACTIONS(3556), - [anon_sym_virtual] = ACTIONS(3556), - [anon_sym_alignas] = ACTIONS(3556), - [anon_sym_explicit] = ACTIONS(3556), - [anon_sym_typename] = ACTIONS(3556), - [anon_sym_template] = ACTIONS(3556), - [anon_sym_operator] = ACTIONS(3556), - [anon_sym_friend] = ACTIONS(3556), - [anon_sym_public] = ACTIONS(3556), - [anon_sym_private] = ACTIONS(3556), - [anon_sym_protected] = ACTIONS(3556), - [anon_sym_using] = ACTIONS(3556), - [anon_sym_static_assert] = ACTIONS(3556), - }, - [2136] = { - [sym_identifier] = ACTIONS(3560), - [aux_sym_preproc_def_token1] = ACTIONS(3560), - [aux_sym_preproc_if_token1] = ACTIONS(3560), - [aux_sym_preproc_if_token2] = ACTIONS(3560), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3560), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3560), - [aux_sym_preproc_else_token1] = ACTIONS(3560), - [aux_sym_preproc_elif_token1] = ACTIONS(3560), - [sym_preproc_directive] = ACTIONS(3560), - [anon_sym_LPAREN2] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_STAR] = ACTIONS(3562), - [anon_sym_AMP_AMP] = ACTIONS(3562), - [anon_sym_AMP] = ACTIONS(3560), - [anon_sym___extension__] = ACTIONS(3560), - [anon_sym_typedef] = ACTIONS(3560), - [anon_sym_extern] = ACTIONS(3560), - [anon_sym___attribute__] = ACTIONS(3560), - [anon_sym_COLON_COLON] = ACTIONS(3562), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3562), - [anon_sym___declspec] = ACTIONS(3560), - [anon_sym___based] = ACTIONS(3560), - [anon_sym_signed] = ACTIONS(3560), - [anon_sym_unsigned] = ACTIONS(3560), - [anon_sym_long] = ACTIONS(3560), - [anon_sym_short] = ACTIONS(3560), - [anon_sym_LBRACK] = ACTIONS(3560), - [anon_sym_static] = ACTIONS(3560), - [anon_sym_register] = ACTIONS(3560), - [anon_sym_inline] = ACTIONS(3560), - [anon_sym___inline] = ACTIONS(3560), - [anon_sym___inline__] = ACTIONS(3560), - [anon_sym___forceinline] = ACTIONS(3560), - [anon_sym_thread_local] = ACTIONS(3560), - [anon_sym___thread] = ACTIONS(3560), - [anon_sym_const] = ACTIONS(3560), - [anon_sym_constexpr] = ACTIONS(3560), - [anon_sym_volatile] = ACTIONS(3560), - [anon_sym_restrict] = ACTIONS(3560), - [anon_sym___restrict__] = ACTIONS(3560), - [anon_sym__Atomic] = ACTIONS(3560), - [anon_sym__Noreturn] = ACTIONS(3560), - [anon_sym_noreturn] = ACTIONS(3560), - [anon_sym_mutable] = ACTIONS(3560), - [anon_sym_constinit] = ACTIONS(3560), - [anon_sym_consteval] = ACTIONS(3560), - [sym_primitive_type] = ACTIONS(3560), - [anon_sym_enum] = ACTIONS(3560), - [anon_sym_class] = ACTIONS(3560), - [anon_sym_struct] = ACTIONS(3560), - [anon_sym_union] = ACTIONS(3560), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3560), - [anon_sym_decltype] = ACTIONS(3560), - [anon_sym_virtual] = ACTIONS(3560), - [anon_sym_alignas] = ACTIONS(3560), - [anon_sym_explicit] = ACTIONS(3560), - [anon_sym_typename] = ACTIONS(3560), - [anon_sym_template] = ACTIONS(3560), - [anon_sym_operator] = ACTIONS(3560), - [anon_sym_friend] = ACTIONS(3560), - [anon_sym_public] = ACTIONS(3560), - [anon_sym_private] = ACTIONS(3560), - [anon_sym_protected] = ACTIONS(3560), - [anon_sym_using] = ACTIONS(3560), - [anon_sym_static_assert] = ACTIONS(3560), - }, - [2137] = { - [sym_identifier] = ACTIONS(3491), - [aux_sym_preproc_def_token1] = ACTIONS(3491), - [aux_sym_preproc_if_token1] = ACTIONS(3491), - [aux_sym_preproc_if_token2] = ACTIONS(3491), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3491), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3491), - [aux_sym_preproc_else_token1] = ACTIONS(3491), - [aux_sym_preproc_elif_token1] = ACTIONS(3491), - [sym_preproc_directive] = ACTIONS(3491), - [anon_sym_LPAREN2] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(3493), - [anon_sym_STAR] = ACTIONS(3493), - [anon_sym_AMP_AMP] = ACTIONS(3493), - [anon_sym_AMP] = ACTIONS(3491), - [anon_sym___extension__] = ACTIONS(3491), - [anon_sym_typedef] = ACTIONS(3491), - [anon_sym_extern] = ACTIONS(3491), - [anon_sym___attribute__] = ACTIONS(3491), - [anon_sym_COLON_COLON] = ACTIONS(3493), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3493), - [anon_sym___declspec] = ACTIONS(3491), - [anon_sym___based] = ACTIONS(3491), - [anon_sym_signed] = ACTIONS(3491), - [anon_sym_unsigned] = ACTIONS(3491), - [anon_sym_long] = ACTIONS(3491), - [anon_sym_short] = ACTIONS(3491), - [anon_sym_LBRACK] = ACTIONS(3491), - [anon_sym_static] = ACTIONS(3491), - [anon_sym_register] = ACTIONS(3491), - [anon_sym_inline] = ACTIONS(3491), - [anon_sym___inline] = ACTIONS(3491), - [anon_sym___inline__] = ACTIONS(3491), - [anon_sym___forceinline] = ACTIONS(3491), - [anon_sym_thread_local] = ACTIONS(3491), - [anon_sym___thread] = ACTIONS(3491), - [anon_sym_const] = ACTIONS(3491), - [anon_sym_constexpr] = ACTIONS(3491), - [anon_sym_volatile] = ACTIONS(3491), - [anon_sym_restrict] = ACTIONS(3491), - [anon_sym___restrict__] = ACTIONS(3491), - [anon_sym__Atomic] = ACTIONS(3491), - [anon_sym__Noreturn] = ACTIONS(3491), - [anon_sym_noreturn] = ACTIONS(3491), - [anon_sym_mutable] = ACTIONS(3491), - [anon_sym_constinit] = ACTIONS(3491), - [anon_sym_consteval] = ACTIONS(3491), - [sym_primitive_type] = ACTIONS(3491), - [anon_sym_enum] = ACTIONS(3491), - [anon_sym_class] = ACTIONS(3491), - [anon_sym_struct] = ACTIONS(3491), - [anon_sym_union] = ACTIONS(3491), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3491), - [anon_sym_decltype] = ACTIONS(3491), - [anon_sym_virtual] = ACTIONS(3491), - [anon_sym_alignas] = ACTIONS(3491), - [anon_sym_explicit] = ACTIONS(3491), - [anon_sym_typename] = ACTIONS(3491), - [anon_sym_template] = ACTIONS(3491), - [anon_sym_operator] = ACTIONS(3491), - [anon_sym_friend] = ACTIONS(3491), - [anon_sym_public] = ACTIONS(3491), - [anon_sym_private] = ACTIONS(3491), - [anon_sym_protected] = ACTIONS(3491), - [anon_sym_using] = ACTIONS(3491), - [anon_sym_static_assert] = ACTIONS(3491), - }, - [2138] = { - [sym_string_literal] = STATE(2151), - [sym_raw_string_literal] = STATE(2151), - [aux_sym_concatenated_string_repeat1] = STATE(2151), - [sym_identifier] = ACTIONS(6100), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5649), - [anon_sym_COMMA] = ACTIONS(5649), - [anon_sym_LPAREN2] = ACTIONS(5649), - [anon_sym_DASH] = ACTIONS(5653), - [anon_sym_PLUS] = ACTIONS(5653), - [anon_sym_STAR] = ACTIONS(5653), - [anon_sym_SLASH] = ACTIONS(5653), - [anon_sym_PERCENT] = ACTIONS(5653), - [anon_sym_PIPE_PIPE] = ACTIONS(5649), - [anon_sym_AMP_AMP] = ACTIONS(5649), - [anon_sym_PIPE] = ACTIONS(5653), - [anon_sym_CARET] = ACTIONS(5653), - [anon_sym_AMP] = ACTIONS(5653), - [anon_sym_EQ_EQ] = ACTIONS(5649), - [anon_sym_BANG_EQ] = ACTIONS(5649), - [anon_sym_GT] = ACTIONS(5653), - [anon_sym_GT_EQ] = ACTIONS(5653), - [anon_sym_LT_EQ] = ACTIONS(5653), - [anon_sym_LT] = ACTIONS(5653), - [anon_sym_LT_LT] = ACTIONS(5653), - [anon_sym_GT_GT] = ACTIONS(5653), - [anon_sym_LBRACK] = ACTIONS(5649), - [anon_sym_EQ] = ACTIONS(5653), - [anon_sym_QMARK] = ACTIONS(5649), - [anon_sym_STAR_EQ] = ACTIONS(5649), - [anon_sym_SLASH_EQ] = ACTIONS(5649), - [anon_sym_PERCENT_EQ] = ACTIONS(5649), - [anon_sym_PLUS_EQ] = ACTIONS(5649), - [anon_sym_DASH_EQ] = ACTIONS(5649), - [anon_sym_LT_LT_EQ] = ACTIONS(5649), - [anon_sym_GT_GT_EQ] = ACTIONS(5653), - [anon_sym_AMP_EQ] = ACTIONS(5649), - [anon_sym_CARET_EQ] = ACTIONS(5649), - [anon_sym_PIPE_EQ] = ACTIONS(5649), - [anon_sym_and_eq] = ACTIONS(5653), - [anon_sym_or_eq] = ACTIONS(5653), - [anon_sym_xor_eq] = ACTIONS(5653), - [anon_sym_LT_EQ_GT] = ACTIONS(5649), - [anon_sym_or] = ACTIONS(5653), - [anon_sym_and] = ACTIONS(5653), - [anon_sym_bitor] = ACTIONS(5653), - [anon_sym_xor] = ACTIONS(5653), - [anon_sym_bitand] = ACTIONS(5653), - [anon_sym_not_eq] = ACTIONS(5653), - [anon_sym_DASH_DASH] = ACTIONS(5649), - [anon_sym_PLUS_PLUS] = ACTIONS(5649), - [anon_sym_DOT] = ACTIONS(5653), - [anon_sym_DOT_STAR] = ACTIONS(5649), - [anon_sym_DASH_GT] = ACTIONS(5649), - [anon_sym_L_DQUOTE] = ACTIONS(6102), - [anon_sym_u_DQUOTE] = ACTIONS(6102), - [anon_sym_U_DQUOTE] = ACTIONS(6102), - [anon_sym_u8_DQUOTE] = ACTIONS(6102), - [anon_sym_DQUOTE] = ACTIONS(6102), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(5649), - [anon_sym_R_DQUOTE] = ACTIONS(6104), - [anon_sym_LR_DQUOTE] = ACTIONS(6104), - [anon_sym_uR_DQUOTE] = ACTIONS(6104), - [anon_sym_UR_DQUOTE] = ACTIONS(6104), - [anon_sym_u8R_DQUOTE] = ACTIONS(6104), - [sym_literal_suffix] = ACTIONS(5653), - }, - [2139] = { - [sym_identifier] = ACTIONS(3618), - [aux_sym_preproc_def_token1] = ACTIONS(3618), - [aux_sym_preproc_if_token1] = ACTIONS(3618), - [aux_sym_preproc_if_token2] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), - [aux_sym_preproc_else_token1] = ACTIONS(3618), - [aux_sym_preproc_elif_token1] = ACTIONS(3618), - [sym_preproc_directive] = ACTIONS(3618), - [anon_sym_LPAREN2] = ACTIONS(3620), - [anon_sym_TILDE] = ACTIONS(3620), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_AMP_AMP] = ACTIONS(3620), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym___extension__] = ACTIONS(3618), - [anon_sym_typedef] = ACTIONS(3618), - [anon_sym_extern] = ACTIONS(3618), - [anon_sym___attribute__] = ACTIONS(3618), - [anon_sym_COLON_COLON] = ACTIONS(3620), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), - [anon_sym___declspec] = ACTIONS(3618), - [anon_sym___based] = ACTIONS(3618), - [anon_sym_signed] = ACTIONS(3618), - [anon_sym_unsigned] = ACTIONS(3618), - [anon_sym_long] = ACTIONS(3618), - [anon_sym_short] = ACTIONS(3618), - [anon_sym_LBRACK] = ACTIONS(3618), - [anon_sym_static] = ACTIONS(3618), - [anon_sym_register] = ACTIONS(3618), - [anon_sym_inline] = ACTIONS(3618), - [anon_sym___inline] = ACTIONS(3618), - [anon_sym___inline__] = ACTIONS(3618), - [anon_sym___forceinline] = ACTIONS(3618), - [anon_sym_thread_local] = ACTIONS(3618), - [anon_sym___thread] = ACTIONS(3618), - [anon_sym_const] = ACTIONS(3618), - [anon_sym_constexpr] = ACTIONS(3618), - [anon_sym_volatile] = ACTIONS(3618), - [anon_sym_restrict] = ACTIONS(3618), - [anon_sym___restrict__] = ACTIONS(3618), - [anon_sym__Atomic] = ACTIONS(3618), - [anon_sym__Noreturn] = ACTIONS(3618), - [anon_sym_noreturn] = ACTIONS(3618), - [anon_sym_mutable] = ACTIONS(3618), - [anon_sym_constinit] = ACTIONS(3618), - [anon_sym_consteval] = ACTIONS(3618), - [sym_primitive_type] = ACTIONS(3618), - [anon_sym_enum] = ACTIONS(3618), - [anon_sym_class] = ACTIONS(3618), - [anon_sym_struct] = ACTIONS(3618), - [anon_sym_union] = ACTIONS(3618), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3618), - [anon_sym_decltype] = ACTIONS(3618), - [anon_sym_virtual] = ACTIONS(3618), - [anon_sym_alignas] = ACTIONS(3618), - [anon_sym_explicit] = ACTIONS(3618), - [anon_sym_typename] = ACTIONS(3618), - [anon_sym_template] = ACTIONS(3618), - [anon_sym_operator] = ACTIONS(3618), - [anon_sym_friend] = ACTIONS(3618), - [anon_sym_public] = ACTIONS(3618), - [anon_sym_private] = ACTIONS(3618), - [anon_sym_protected] = ACTIONS(3618), - [anon_sym_using] = ACTIONS(3618), - [anon_sym_static_assert] = ACTIONS(3618), - }, - [2140] = { - [sym_identifier] = ACTIONS(5907), - [aux_sym_preproc_def_token1] = ACTIONS(5907), - [aux_sym_preproc_if_token1] = ACTIONS(5907), - [aux_sym_preproc_if_token2] = ACTIONS(5907), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5907), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5907), - [aux_sym_preproc_else_token1] = ACTIONS(5907), - [aux_sym_preproc_elif_token1] = ACTIONS(5907), - [sym_preproc_directive] = ACTIONS(5907), - [anon_sym_LPAREN2] = ACTIONS(5909), - [anon_sym_TILDE] = ACTIONS(5909), - [anon_sym_STAR] = ACTIONS(5909), - [anon_sym_AMP_AMP] = ACTIONS(5909), - [anon_sym_AMP] = ACTIONS(5907), - [anon_sym___extension__] = ACTIONS(5907), - [anon_sym_typedef] = ACTIONS(5907), - [anon_sym_extern] = ACTIONS(5907), - [anon_sym___attribute__] = ACTIONS(5907), - [anon_sym_COLON_COLON] = ACTIONS(5909), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5909), - [anon_sym___declspec] = ACTIONS(5907), - [anon_sym___based] = ACTIONS(5907), - [anon_sym_signed] = ACTIONS(5907), - [anon_sym_unsigned] = ACTIONS(5907), - [anon_sym_long] = ACTIONS(5907), - [anon_sym_short] = ACTIONS(5907), - [anon_sym_LBRACK] = ACTIONS(5907), - [anon_sym_static] = ACTIONS(5907), - [anon_sym_register] = ACTIONS(5907), - [anon_sym_inline] = ACTIONS(5907), - [anon_sym___inline] = ACTIONS(5907), - [anon_sym___inline__] = ACTIONS(5907), - [anon_sym___forceinline] = ACTIONS(5907), - [anon_sym_thread_local] = ACTIONS(5907), - [anon_sym___thread] = ACTIONS(5907), - [anon_sym_const] = ACTIONS(5907), - [anon_sym_constexpr] = ACTIONS(5907), - [anon_sym_volatile] = ACTIONS(5907), - [anon_sym_restrict] = ACTIONS(5907), - [anon_sym___restrict__] = ACTIONS(5907), - [anon_sym__Atomic] = ACTIONS(5907), - [anon_sym__Noreturn] = ACTIONS(5907), - [anon_sym_noreturn] = ACTIONS(5907), - [anon_sym_mutable] = ACTIONS(5907), - [anon_sym_constinit] = ACTIONS(5907), - [anon_sym_consteval] = ACTIONS(5907), - [sym_primitive_type] = ACTIONS(5907), - [anon_sym_enum] = ACTIONS(5907), - [anon_sym_class] = ACTIONS(5907), - [anon_sym_struct] = ACTIONS(5907), - [anon_sym_union] = ACTIONS(5907), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5907), - [anon_sym_decltype] = ACTIONS(5907), - [anon_sym_virtual] = ACTIONS(5907), - [anon_sym_alignas] = ACTIONS(5907), - [anon_sym_explicit] = ACTIONS(5907), - [anon_sym_typename] = ACTIONS(5907), - [anon_sym_template] = ACTIONS(5907), - [anon_sym_operator] = ACTIONS(5907), - [anon_sym_friend] = ACTIONS(5907), - [anon_sym_public] = ACTIONS(5907), - [anon_sym_private] = ACTIONS(5907), - [anon_sym_protected] = ACTIONS(5907), - [anon_sym_using] = ACTIONS(5907), - [anon_sym_static_assert] = ACTIONS(5907), - }, - [2141] = { - [sym_identifier] = ACTIONS(3078), - [aux_sym_preproc_def_token1] = ACTIONS(3078), - [anon_sym_COMMA] = ACTIONS(3187), - [aux_sym_preproc_if_token1] = ACTIONS(3078), - [aux_sym_preproc_if_token2] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3078), - [sym_preproc_directive] = ACTIONS(3078), - [anon_sym_LPAREN2] = ACTIONS(3080), - [anon_sym_TILDE] = ACTIONS(3080), - [anon_sym_STAR] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym_SEMI] = ACTIONS(3187), - [anon_sym___extension__] = ACTIONS(3078), - [anon_sym_typedef] = ACTIONS(3078), - [anon_sym_extern] = ACTIONS(3078), - [anon_sym___attribute__] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3080), - [anon_sym___declspec] = ACTIONS(3078), - [anon_sym___based] = ACTIONS(3078), - [anon_sym_signed] = ACTIONS(3078), - [anon_sym_unsigned] = ACTIONS(3078), - [anon_sym_long] = ACTIONS(3078), - [anon_sym_short] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_static] = ACTIONS(3078), - [anon_sym_register] = ACTIONS(3078), - [anon_sym_inline] = ACTIONS(3078), - [anon_sym___inline] = ACTIONS(3078), - [anon_sym___inline__] = ACTIONS(3078), - [anon_sym___forceinline] = ACTIONS(3078), - [anon_sym_thread_local] = ACTIONS(3078), - [anon_sym___thread] = ACTIONS(3078), - [anon_sym_const] = ACTIONS(3078), - [anon_sym_constexpr] = ACTIONS(3078), - [anon_sym_volatile] = ACTIONS(3078), - [anon_sym_restrict] = ACTIONS(3078), - [anon_sym___restrict__] = ACTIONS(3078), - [anon_sym__Atomic] = ACTIONS(3078), - [anon_sym__Noreturn] = ACTIONS(3078), - [anon_sym_noreturn] = ACTIONS(3078), - [anon_sym_mutable] = ACTIONS(3078), - [anon_sym_constinit] = ACTIONS(3078), - [anon_sym_consteval] = ACTIONS(3078), - [sym_primitive_type] = ACTIONS(3078), - [anon_sym_enum] = ACTIONS(3078), - [anon_sym_class] = ACTIONS(3078), - [anon_sym_struct] = ACTIONS(3078), - [anon_sym_union] = ACTIONS(3078), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3078), - [anon_sym_decltype] = ACTIONS(3078), - [anon_sym_virtual] = ACTIONS(3078), - [anon_sym_alignas] = ACTIONS(3078), - [anon_sym_explicit] = ACTIONS(3078), - [anon_sym_typename] = ACTIONS(3078), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_operator] = ACTIONS(3078), - [anon_sym_friend] = ACTIONS(3078), - [anon_sym_public] = ACTIONS(3078), - [anon_sym_private] = ACTIONS(3078), - [anon_sym_protected] = ACTIONS(3078), - [anon_sym_using] = ACTIONS(3078), - [anon_sym_static_assert] = ACTIONS(3078), - }, - [2142] = { - [sym_identifier] = ACTIONS(3511), - [aux_sym_preproc_def_token1] = ACTIONS(3511), - [aux_sym_preproc_if_token1] = ACTIONS(3511), - [aux_sym_preproc_if_token2] = ACTIONS(3511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3511), - [aux_sym_preproc_else_token1] = ACTIONS(3511), - [aux_sym_preproc_elif_token1] = ACTIONS(3511), - [sym_preproc_directive] = ACTIONS(3511), - [anon_sym_LPAREN2] = ACTIONS(3513), - [anon_sym_TILDE] = ACTIONS(3513), - [anon_sym_STAR] = ACTIONS(3513), - [anon_sym_AMP_AMP] = ACTIONS(3513), - [anon_sym_AMP] = ACTIONS(3511), - [anon_sym___extension__] = ACTIONS(3511), - [anon_sym_typedef] = ACTIONS(3511), - [anon_sym_extern] = ACTIONS(3511), - [anon_sym___attribute__] = ACTIONS(3511), - [anon_sym_COLON_COLON] = ACTIONS(3513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3513), - [anon_sym___declspec] = ACTIONS(3511), - [anon_sym___based] = ACTIONS(3511), - [anon_sym_signed] = ACTIONS(3511), - [anon_sym_unsigned] = ACTIONS(3511), - [anon_sym_long] = ACTIONS(3511), - [anon_sym_short] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3511), - [anon_sym_static] = ACTIONS(3511), - [anon_sym_register] = ACTIONS(3511), - [anon_sym_inline] = ACTIONS(3511), - [anon_sym___inline] = ACTIONS(3511), - [anon_sym___inline__] = ACTIONS(3511), - [anon_sym___forceinline] = ACTIONS(3511), - [anon_sym_thread_local] = ACTIONS(3511), - [anon_sym___thread] = ACTIONS(3511), - [anon_sym_const] = ACTIONS(3511), - [anon_sym_constexpr] = ACTIONS(3511), - [anon_sym_volatile] = ACTIONS(3511), - [anon_sym_restrict] = ACTIONS(3511), - [anon_sym___restrict__] = ACTIONS(3511), - [anon_sym__Atomic] = ACTIONS(3511), - [anon_sym__Noreturn] = ACTIONS(3511), - [anon_sym_noreturn] = ACTIONS(3511), - [anon_sym_mutable] = ACTIONS(3511), - [anon_sym_constinit] = ACTIONS(3511), - [anon_sym_consteval] = ACTIONS(3511), - [sym_primitive_type] = ACTIONS(3511), - [anon_sym_enum] = ACTIONS(3511), - [anon_sym_class] = ACTIONS(3511), - [anon_sym_struct] = ACTIONS(3511), - [anon_sym_union] = ACTIONS(3511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3511), - [anon_sym_decltype] = ACTIONS(3511), - [anon_sym_virtual] = ACTIONS(3511), - [anon_sym_alignas] = ACTIONS(3511), - [anon_sym_explicit] = ACTIONS(3511), - [anon_sym_typename] = ACTIONS(3511), - [anon_sym_template] = ACTIONS(3511), - [anon_sym_operator] = ACTIONS(3511), - [anon_sym_friend] = ACTIONS(3511), - [anon_sym_public] = ACTIONS(3511), - [anon_sym_private] = ACTIONS(3511), - [anon_sym_protected] = ACTIONS(3511), - [anon_sym_using] = ACTIONS(3511), - [anon_sym_static_assert] = ACTIONS(3511), - }, - [2143] = { - [sym_identifier] = ACTIONS(3634), - [aux_sym_preproc_def_token1] = ACTIONS(3634), - [aux_sym_preproc_if_token1] = ACTIONS(3634), - [aux_sym_preproc_if_token2] = ACTIONS(3634), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3634), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3634), - [aux_sym_preproc_else_token1] = ACTIONS(3634), - [aux_sym_preproc_elif_token1] = ACTIONS(3634), - [sym_preproc_directive] = ACTIONS(3634), - [anon_sym_LPAREN2] = ACTIONS(3636), - [anon_sym_TILDE] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3636), - [anon_sym_AMP_AMP] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3634), - [anon_sym___extension__] = ACTIONS(3634), - [anon_sym_typedef] = ACTIONS(3634), - [anon_sym_extern] = ACTIONS(3634), - [anon_sym___attribute__] = ACTIONS(3634), - [anon_sym_COLON_COLON] = ACTIONS(3636), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3636), - [anon_sym___declspec] = ACTIONS(3634), - [anon_sym___based] = ACTIONS(3634), - [anon_sym_signed] = ACTIONS(3634), - [anon_sym_unsigned] = ACTIONS(3634), - [anon_sym_long] = ACTIONS(3634), - [anon_sym_short] = ACTIONS(3634), - [anon_sym_LBRACK] = ACTIONS(3634), - [anon_sym_static] = ACTIONS(3634), - [anon_sym_register] = ACTIONS(3634), - [anon_sym_inline] = ACTIONS(3634), - [anon_sym___inline] = ACTIONS(3634), - [anon_sym___inline__] = ACTIONS(3634), - [anon_sym___forceinline] = ACTIONS(3634), - [anon_sym_thread_local] = ACTIONS(3634), - [anon_sym___thread] = ACTIONS(3634), - [anon_sym_const] = ACTIONS(3634), - [anon_sym_constexpr] = ACTIONS(3634), - [anon_sym_volatile] = ACTIONS(3634), - [anon_sym_restrict] = ACTIONS(3634), - [anon_sym___restrict__] = ACTIONS(3634), - [anon_sym__Atomic] = ACTIONS(3634), - [anon_sym__Noreturn] = ACTIONS(3634), - [anon_sym_noreturn] = ACTIONS(3634), - [anon_sym_mutable] = ACTIONS(3634), - [anon_sym_constinit] = ACTIONS(3634), - [anon_sym_consteval] = ACTIONS(3634), - [sym_primitive_type] = ACTIONS(3634), - [anon_sym_enum] = ACTIONS(3634), - [anon_sym_class] = ACTIONS(3634), - [anon_sym_struct] = ACTIONS(3634), - [anon_sym_union] = ACTIONS(3634), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3634), - [anon_sym_decltype] = ACTIONS(3634), - [anon_sym_virtual] = ACTIONS(3634), - [anon_sym_alignas] = ACTIONS(3634), - [anon_sym_explicit] = ACTIONS(3634), - [anon_sym_typename] = ACTIONS(3634), - [anon_sym_template] = ACTIONS(3634), - [anon_sym_operator] = ACTIONS(3634), - [anon_sym_friend] = ACTIONS(3634), - [anon_sym_public] = ACTIONS(3634), - [anon_sym_private] = ACTIONS(3634), - [anon_sym_protected] = ACTIONS(3634), - [anon_sym_using] = ACTIONS(3634), - [anon_sym_static_assert] = ACTIONS(3634), + [sym_auto] = ACTIONS(3143), + [anon_sym_decltype] = ACTIONS(3143), + [anon_sym_virtual] = ACTIONS(3143), + [anon_sym_alignas] = ACTIONS(3143), + [anon_sym_explicit] = ACTIONS(3143), + [anon_sym_typename] = ACTIONS(3143), + [anon_sym_template] = ACTIONS(3143), + [anon_sym_operator] = ACTIONS(3143), + [anon_sym_friend] = ACTIONS(3143), + [anon_sym_public] = ACTIONS(3143), + [anon_sym_private] = ACTIONS(3143), + [anon_sym_protected] = ACTIONS(3143), + [anon_sym_using] = ACTIONS(3143), + [anon_sym_static_assert] = ACTIONS(3143), + [sym_semgrep_metavar] = ACTIONS(3145), }, - [2144] = { - [sym_identifier] = ACTIONS(5868), - [aux_sym_preproc_def_token1] = ACTIONS(5868), - [aux_sym_preproc_if_token1] = ACTIONS(5868), - [aux_sym_preproc_if_token2] = ACTIONS(5868), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5868), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5868), - [aux_sym_preproc_else_token1] = ACTIONS(5868), - [aux_sym_preproc_elif_token1] = ACTIONS(5868), - [sym_preproc_directive] = ACTIONS(5868), - [anon_sym_LPAREN2] = ACTIONS(5870), - [anon_sym_TILDE] = ACTIONS(5870), - [anon_sym_STAR] = ACTIONS(5870), - [anon_sym_AMP_AMP] = ACTIONS(5870), - [anon_sym_AMP] = ACTIONS(5868), - [anon_sym___extension__] = ACTIONS(5868), - [anon_sym_typedef] = ACTIONS(5868), - [anon_sym_extern] = ACTIONS(5868), - [anon_sym___attribute__] = ACTIONS(5868), - [anon_sym_COLON_COLON] = ACTIONS(5870), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5870), - [anon_sym___declspec] = ACTIONS(5868), - [anon_sym___based] = ACTIONS(5868), - [anon_sym_signed] = ACTIONS(5868), - [anon_sym_unsigned] = ACTIONS(5868), - [anon_sym_long] = ACTIONS(5868), - [anon_sym_short] = ACTIONS(5868), - [anon_sym_LBRACK] = ACTIONS(5868), - [anon_sym_static] = ACTIONS(5868), - [anon_sym_register] = ACTIONS(5868), - [anon_sym_inline] = ACTIONS(5868), - [anon_sym___inline] = ACTIONS(5868), - [anon_sym___inline__] = ACTIONS(5868), - [anon_sym___forceinline] = ACTIONS(5868), - [anon_sym_thread_local] = ACTIONS(5868), - [anon_sym___thread] = ACTIONS(5868), - [anon_sym_const] = ACTIONS(5868), - [anon_sym_constexpr] = ACTIONS(5868), - [anon_sym_volatile] = ACTIONS(5868), - [anon_sym_restrict] = ACTIONS(5868), - [anon_sym___restrict__] = ACTIONS(5868), - [anon_sym__Atomic] = ACTIONS(5868), - [anon_sym__Noreturn] = ACTIONS(5868), - [anon_sym_noreturn] = ACTIONS(5868), - [anon_sym_mutable] = ACTIONS(5868), - [anon_sym_constinit] = ACTIONS(5868), - [anon_sym_consteval] = ACTIONS(5868), - [sym_primitive_type] = ACTIONS(5868), - [anon_sym_enum] = ACTIONS(5868), - [anon_sym_class] = ACTIONS(5868), - [anon_sym_struct] = ACTIONS(5868), - [anon_sym_union] = ACTIONS(5868), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5868), - [anon_sym_decltype] = ACTIONS(5868), - [anon_sym_virtual] = ACTIONS(5868), - [anon_sym_alignas] = ACTIONS(5868), - [anon_sym_explicit] = ACTIONS(5868), - [anon_sym_typename] = ACTIONS(5868), - [anon_sym_template] = ACTIONS(5868), - [anon_sym_operator] = ACTIONS(5868), - [anon_sym_friend] = ACTIONS(5868), - [anon_sym_public] = ACTIONS(5868), - [anon_sym_private] = ACTIONS(5868), - [anon_sym_protected] = ACTIONS(5868), - [anon_sym_using] = ACTIONS(5868), - [anon_sym_static_assert] = ACTIONS(5868), + [2077] = { + [sym_identifier] = ACTIONS(5797), + [aux_sym_preproc_def_token1] = ACTIONS(5797), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5799), + [aux_sym_preproc_if_token1] = ACTIONS(5797), + [aux_sym_preproc_if_token2] = ACTIONS(5797), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5797), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5797), + [aux_sym_preproc_else_token1] = ACTIONS(5797), + [aux_sym_preproc_elif_token1] = ACTIONS(5797), + [sym_preproc_directive] = ACTIONS(5797), + [anon_sym_LPAREN2] = ACTIONS(5799), + [anon_sym_TILDE] = ACTIONS(5799), + [anon_sym_STAR] = ACTIONS(5799), + [anon_sym_AMP_AMP] = ACTIONS(5799), + [anon_sym_AMP] = ACTIONS(5797), + [anon_sym___extension__] = ACTIONS(5797), + [anon_sym_typedef] = ACTIONS(5797), + [anon_sym_extern] = ACTIONS(5797), + [anon_sym___attribute__] = ACTIONS(5797), + [anon_sym_COLON_COLON] = ACTIONS(5799), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5799), + [anon_sym___declspec] = ACTIONS(5797), + [anon_sym___based] = ACTIONS(5797), + [anon_sym_signed] = ACTIONS(5797), + [anon_sym_unsigned] = ACTIONS(5797), + [anon_sym_long] = ACTIONS(5797), + [anon_sym_short] = ACTIONS(5797), + [anon_sym_LBRACK] = ACTIONS(5797), + [anon_sym_static] = ACTIONS(5797), + [anon_sym_register] = ACTIONS(5797), + [anon_sym_inline] = ACTIONS(5797), + [anon_sym___inline] = ACTIONS(5797), + [anon_sym___inline__] = ACTIONS(5797), + [anon_sym___forceinline] = ACTIONS(5797), + [anon_sym_thread_local] = ACTIONS(5797), + [anon_sym___thread] = ACTIONS(5797), + [anon_sym_const] = ACTIONS(5797), + [anon_sym_constexpr] = ACTIONS(5797), + [anon_sym_volatile] = ACTIONS(5797), + [anon_sym_restrict] = ACTIONS(5797), + [anon_sym___restrict__] = ACTIONS(5797), + [anon_sym__Atomic] = ACTIONS(5797), + [anon_sym__Noreturn] = ACTIONS(5797), + [anon_sym_noreturn] = ACTIONS(5797), + [anon_sym_mutable] = ACTIONS(5797), + [anon_sym_constinit] = ACTIONS(5797), + [anon_sym_consteval] = ACTIONS(5797), + [sym_primitive_type] = ACTIONS(5797), + [anon_sym_enum] = ACTIONS(5797), + [anon_sym_class] = ACTIONS(5797), + [anon_sym_struct] = ACTIONS(5797), + [anon_sym_union] = ACTIONS(5797), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5797), + [anon_sym_decltype] = ACTIONS(5797), + [anon_sym_virtual] = ACTIONS(5797), + [anon_sym_alignas] = ACTIONS(5797), + [anon_sym_explicit] = ACTIONS(5797), + [anon_sym_typename] = ACTIONS(5797), + [anon_sym_template] = ACTIONS(5797), + [anon_sym_operator] = ACTIONS(5797), + [anon_sym_friend] = ACTIONS(5797), + [anon_sym_public] = ACTIONS(5797), + [anon_sym_private] = ACTIONS(5797), + [anon_sym_protected] = ACTIONS(5797), + [anon_sym_using] = ACTIONS(5797), + [anon_sym_static_assert] = ACTIONS(5797), + [sym_semgrep_metavar] = ACTIONS(5799), }, - [2145] = { - [sym_template_argument_list] = STATE(2868), - [aux_sym_sized_type_specifier_repeat1] = STATE(2262), - [sym_identifier] = ACTIONS(4827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4835), - [anon_sym_COMMA] = ACTIONS(4835), - [aux_sym_preproc_if_token2] = ACTIONS(4835), - [aux_sym_preproc_else_token1] = ACTIONS(4835), - [aux_sym_preproc_elif_token1] = ACTIONS(4827), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4835), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4835), - [anon_sym_LPAREN2] = ACTIONS(4835), - [anon_sym_DASH] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(4827), - [anon_sym_STAR] = ACTIONS(4827), - [anon_sym_SLASH] = ACTIONS(4827), - [anon_sym_PERCENT] = ACTIONS(4827), - [anon_sym_PIPE_PIPE] = ACTIONS(4835), - [anon_sym_AMP_AMP] = ACTIONS(4835), - [anon_sym_PIPE] = ACTIONS(4827), - [anon_sym_CARET] = ACTIONS(4827), - [anon_sym_AMP] = ACTIONS(4827), - [anon_sym_EQ_EQ] = ACTIONS(4835), - [anon_sym_BANG_EQ] = ACTIONS(4835), - [anon_sym_GT] = ACTIONS(4827), - [anon_sym_GT_EQ] = ACTIONS(4835), - [anon_sym_LT_EQ] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(6106), - [anon_sym_LT_LT] = ACTIONS(4827), - [anon_sym_GT_GT] = ACTIONS(4827), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(4835), - [anon_sym_signed] = ACTIONS(6108), - [anon_sym_unsigned] = ACTIONS(6108), - [anon_sym_long] = ACTIONS(6108), - [anon_sym_short] = ACTIONS(6108), - [anon_sym_LBRACK] = ACTIONS(4835), - [anon_sym_EQ] = ACTIONS(4827), - [anon_sym_QMARK] = ACTIONS(4835), - [anon_sym_STAR_EQ] = ACTIONS(4835), - [anon_sym_SLASH_EQ] = ACTIONS(4835), - [anon_sym_PERCENT_EQ] = ACTIONS(4835), - [anon_sym_PLUS_EQ] = ACTIONS(4835), - [anon_sym_DASH_EQ] = ACTIONS(4835), - [anon_sym_LT_LT_EQ] = ACTIONS(4835), - [anon_sym_GT_GT_EQ] = ACTIONS(4835), - [anon_sym_AMP_EQ] = ACTIONS(4835), - [anon_sym_CARET_EQ] = ACTIONS(4835), - [anon_sym_PIPE_EQ] = ACTIONS(4835), - [anon_sym_and_eq] = ACTIONS(4827), - [anon_sym_or_eq] = ACTIONS(4827), - [anon_sym_xor_eq] = ACTIONS(4827), - [anon_sym_LT_EQ_GT] = ACTIONS(4835), - [anon_sym_or] = ACTIONS(4827), - [anon_sym_and] = ACTIONS(4827), - [anon_sym_bitor] = ACTIONS(4827), - [anon_sym_xor] = ACTIONS(4827), - [anon_sym_bitand] = ACTIONS(4827), - [anon_sym_not_eq] = ACTIONS(4827), - [anon_sym_DASH_DASH] = ACTIONS(4835), - [anon_sym_PLUS_PLUS] = ACTIONS(4835), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_DOT_STAR] = ACTIONS(4835), - [anon_sym_DASH_GT] = ACTIONS(4835), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4827), - [anon_sym_decltype] = ACTIONS(4827), + [2078] = { + [sym_identifier] = ACTIONS(5801), + [aux_sym_preproc_def_token1] = ACTIONS(5801), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5803), + [aux_sym_preproc_if_token1] = ACTIONS(5801), + [aux_sym_preproc_if_token2] = ACTIONS(5801), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5801), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5801), + [aux_sym_preproc_else_token1] = ACTIONS(5801), + [aux_sym_preproc_elif_token1] = ACTIONS(5801), + [sym_preproc_directive] = ACTIONS(5801), + [anon_sym_LPAREN2] = ACTIONS(5803), + [anon_sym_TILDE] = ACTIONS(5803), + [anon_sym_STAR] = ACTIONS(5803), + [anon_sym_AMP_AMP] = ACTIONS(5803), + [anon_sym_AMP] = ACTIONS(5801), + [anon_sym___extension__] = ACTIONS(5801), + [anon_sym_typedef] = ACTIONS(5801), + [anon_sym_extern] = ACTIONS(5801), + [anon_sym___attribute__] = ACTIONS(5801), + [anon_sym_COLON_COLON] = ACTIONS(5803), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5803), + [anon_sym___declspec] = ACTIONS(5801), + [anon_sym___based] = ACTIONS(5801), + [anon_sym_signed] = ACTIONS(5801), + [anon_sym_unsigned] = ACTIONS(5801), + [anon_sym_long] = ACTIONS(5801), + [anon_sym_short] = ACTIONS(5801), + [anon_sym_LBRACK] = ACTIONS(5801), + [anon_sym_static] = ACTIONS(5801), + [anon_sym_register] = ACTIONS(5801), + [anon_sym_inline] = ACTIONS(5801), + [anon_sym___inline] = ACTIONS(5801), + [anon_sym___inline__] = ACTIONS(5801), + [anon_sym___forceinline] = ACTIONS(5801), + [anon_sym_thread_local] = ACTIONS(5801), + [anon_sym___thread] = ACTIONS(5801), + [anon_sym_const] = ACTIONS(5801), + [anon_sym_constexpr] = ACTIONS(5801), + [anon_sym_volatile] = ACTIONS(5801), + [anon_sym_restrict] = ACTIONS(5801), + [anon_sym___restrict__] = ACTIONS(5801), + [anon_sym__Atomic] = ACTIONS(5801), + [anon_sym__Noreturn] = ACTIONS(5801), + [anon_sym_noreturn] = ACTIONS(5801), + [anon_sym_mutable] = ACTIONS(5801), + [anon_sym_constinit] = ACTIONS(5801), + [anon_sym_consteval] = ACTIONS(5801), + [sym_primitive_type] = ACTIONS(5801), + [anon_sym_enum] = ACTIONS(5801), + [anon_sym_class] = ACTIONS(5801), + [anon_sym_struct] = ACTIONS(5801), + [anon_sym_union] = ACTIONS(5801), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5801), + [anon_sym_decltype] = ACTIONS(5801), + [anon_sym_virtual] = ACTIONS(5801), + [anon_sym_alignas] = ACTIONS(5801), + [anon_sym_explicit] = ACTIONS(5801), + [anon_sym_typename] = ACTIONS(5801), + [anon_sym_template] = ACTIONS(5801), + [anon_sym_operator] = ACTIONS(5801), + [anon_sym_friend] = ACTIONS(5801), + [anon_sym_public] = ACTIONS(5801), + [anon_sym_private] = ACTIONS(5801), + [anon_sym_protected] = ACTIONS(5801), + [anon_sym_using] = ACTIONS(5801), + [anon_sym_static_assert] = ACTIONS(5801), + [sym_semgrep_metavar] = ACTIONS(5803), }, - [2146] = { - [sym_identifier] = ACTIONS(5868), - [aux_sym_preproc_def_token1] = ACTIONS(5868), - [aux_sym_preproc_if_token1] = ACTIONS(5868), - [aux_sym_preproc_if_token2] = ACTIONS(5868), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5868), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5868), - [aux_sym_preproc_else_token1] = ACTIONS(5868), - [aux_sym_preproc_elif_token1] = ACTIONS(5868), - [sym_preproc_directive] = ACTIONS(5868), - [anon_sym_LPAREN2] = ACTIONS(5870), - [anon_sym_TILDE] = ACTIONS(5870), - [anon_sym_STAR] = ACTIONS(5870), - [anon_sym_AMP_AMP] = ACTIONS(5870), - [anon_sym_AMP] = ACTIONS(5868), - [anon_sym___extension__] = ACTIONS(5868), - [anon_sym_typedef] = ACTIONS(5868), - [anon_sym_extern] = ACTIONS(5868), - [anon_sym___attribute__] = ACTIONS(5868), - [anon_sym_COLON_COLON] = ACTIONS(5870), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5870), - [anon_sym___declspec] = ACTIONS(5868), - [anon_sym___based] = ACTIONS(5868), - [anon_sym_signed] = ACTIONS(5868), - [anon_sym_unsigned] = ACTIONS(5868), - [anon_sym_long] = ACTIONS(5868), - [anon_sym_short] = ACTIONS(5868), - [anon_sym_LBRACK] = ACTIONS(5868), - [anon_sym_static] = ACTIONS(5868), - [anon_sym_register] = ACTIONS(5868), - [anon_sym_inline] = ACTIONS(5868), - [anon_sym___inline] = ACTIONS(5868), - [anon_sym___inline__] = ACTIONS(5868), - [anon_sym___forceinline] = ACTIONS(5868), - [anon_sym_thread_local] = ACTIONS(5868), - [anon_sym___thread] = ACTIONS(5868), - [anon_sym_const] = ACTIONS(5868), - [anon_sym_constexpr] = ACTIONS(5868), - [anon_sym_volatile] = ACTIONS(5868), - [anon_sym_restrict] = ACTIONS(5868), - [anon_sym___restrict__] = ACTIONS(5868), - [anon_sym__Atomic] = ACTIONS(5868), - [anon_sym__Noreturn] = ACTIONS(5868), - [anon_sym_noreturn] = ACTIONS(5868), - [anon_sym_mutable] = ACTIONS(5868), - [anon_sym_constinit] = ACTIONS(5868), - [anon_sym_consteval] = ACTIONS(5868), - [sym_primitive_type] = ACTIONS(5868), - [anon_sym_enum] = ACTIONS(5868), - [anon_sym_class] = ACTIONS(5868), - [anon_sym_struct] = ACTIONS(5868), - [anon_sym_union] = ACTIONS(5868), + [2079] = { + [sym_identifier] = ACTIONS(3380), + [aux_sym_preproc_def_token1] = ACTIONS(3380), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3382), + [aux_sym_preproc_if_token1] = ACTIONS(3380), + [aux_sym_preproc_if_token2] = ACTIONS(3380), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3380), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3380), + [aux_sym_preproc_else_token1] = ACTIONS(3380), + [aux_sym_preproc_elif_token1] = ACTIONS(3380), + [sym_preproc_directive] = ACTIONS(3380), + [anon_sym_LPAREN2] = ACTIONS(3382), + [anon_sym_TILDE] = ACTIONS(3382), + [anon_sym_STAR] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_AMP] = ACTIONS(3380), + [anon_sym___extension__] = ACTIONS(3380), + [anon_sym_typedef] = ACTIONS(3380), + [anon_sym_extern] = ACTIONS(3380), + [anon_sym___attribute__] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3382), + [anon_sym___declspec] = ACTIONS(3380), + [anon_sym___based] = ACTIONS(3380), + [anon_sym_signed] = ACTIONS(3380), + [anon_sym_unsigned] = ACTIONS(3380), + [anon_sym_long] = ACTIONS(3380), + [anon_sym_short] = ACTIONS(3380), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_static] = ACTIONS(3380), + [anon_sym_register] = ACTIONS(3380), + [anon_sym_inline] = ACTIONS(3380), + [anon_sym___inline] = ACTIONS(3380), + [anon_sym___inline__] = ACTIONS(3380), + [anon_sym___forceinline] = ACTIONS(3380), + [anon_sym_thread_local] = ACTIONS(3380), + [anon_sym___thread] = ACTIONS(3380), + [anon_sym_const] = ACTIONS(3380), + [anon_sym_constexpr] = ACTIONS(3380), + [anon_sym_volatile] = ACTIONS(3380), + [anon_sym_restrict] = ACTIONS(3380), + [anon_sym___restrict__] = ACTIONS(3380), + [anon_sym__Atomic] = ACTIONS(3380), + [anon_sym__Noreturn] = ACTIONS(3380), + [anon_sym_noreturn] = ACTIONS(3380), + [anon_sym_mutable] = ACTIONS(3380), + [anon_sym_constinit] = ACTIONS(3380), + [anon_sym_consteval] = ACTIONS(3380), + [sym_primitive_type] = ACTIONS(3380), + [anon_sym_enum] = ACTIONS(3380), + [anon_sym_class] = ACTIONS(3380), + [anon_sym_struct] = ACTIONS(3380), + [anon_sym_union] = ACTIONS(3380), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5868), - [anon_sym_decltype] = ACTIONS(5868), - [anon_sym_virtual] = ACTIONS(5868), - [anon_sym_alignas] = ACTIONS(5868), - [anon_sym_explicit] = ACTIONS(5868), - [anon_sym_typename] = ACTIONS(5868), - [anon_sym_template] = ACTIONS(5868), - [anon_sym_operator] = ACTIONS(5868), - [anon_sym_friend] = ACTIONS(5868), - [anon_sym_public] = ACTIONS(5868), - [anon_sym_private] = ACTIONS(5868), - [anon_sym_protected] = ACTIONS(5868), - [anon_sym_using] = ACTIONS(5868), - [anon_sym_static_assert] = ACTIONS(5868), - }, - [2147] = { - [sym_identifier] = ACTIONS(3433), - [aux_sym_preproc_def_token1] = ACTIONS(3433), - [aux_sym_preproc_if_token1] = ACTIONS(3433), - [aux_sym_preproc_if_token2] = ACTIONS(3433), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3433), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3433), - [aux_sym_preproc_else_token1] = ACTIONS(3433), - [aux_sym_preproc_elif_token1] = ACTIONS(3433), - [sym_preproc_directive] = ACTIONS(3433), - [anon_sym_LPAREN2] = ACTIONS(3435), - [anon_sym_TILDE] = ACTIONS(3435), - [anon_sym_STAR] = ACTIONS(3435), - [anon_sym_AMP_AMP] = ACTIONS(3435), - [anon_sym_AMP] = ACTIONS(3433), - [anon_sym___extension__] = ACTIONS(3433), - [anon_sym_typedef] = ACTIONS(3433), - [anon_sym_extern] = ACTIONS(3433), - [anon_sym___attribute__] = ACTIONS(3433), - [anon_sym_COLON_COLON] = ACTIONS(3435), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3435), - [anon_sym___declspec] = ACTIONS(3433), - [anon_sym___based] = ACTIONS(3433), - [anon_sym_signed] = ACTIONS(3433), - [anon_sym_unsigned] = ACTIONS(3433), - [anon_sym_long] = ACTIONS(3433), - [anon_sym_short] = ACTIONS(3433), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_static] = ACTIONS(3433), - [anon_sym_register] = ACTIONS(3433), - [anon_sym_inline] = ACTIONS(3433), - [anon_sym___inline] = ACTIONS(3433), - [anon_sym___inline__] = ACTIONS(3433), - [anon_sym___forceinline] = ACTIONS(3433), - [anon_sym_thread_local] = ACTIONS(3433), - [anon_sym___thread] = ACTIONS(3433), - [anon_sym_const] = ACTIONS(3433), - [anon_sym_constexpr] = ACTIONS(3433), - [anon_sym_volatile] = ACTIONS(3433), - [anon_sym_restrict] = ACTIONS(3433), - [anon_sym___restrict__] = ACTIONS(3433), - [anon_sym__Atomic] = ACTIONS(3433), - [anon_sym__Noreturn] = ACTIONS(3433), - [anon_sym_noreturn] = ACTIONS(3433), - [anon_sym_mutable] = ACTIONS(3433), - [anon_sym_constinit] = ACTIONS(3433), - [anon_sym_consteval] = ACTIONS(3433), - [sym_primitive_type] = ACTIONS(3433), - [anon_sym_enum] = ACTIONS(3433), - [anon_sym_class] = ACTIONS(3433), - [anon_sym_struct] = ACTIONS(3433), - [anon_sym_union] = ACTIONS(3433), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3433), - [anon_sym_decltype] = ACTIONS(3433), - [anon_sym_virtual] = ACTIONS(3433), - [anon_sym_alignas] = ACTIONS(3433), - [anon_sym_explicit] = ACTIONS(3433), - [anon_sym_typename] = ACTIONS(3433), - [anon_sym_template] = ACTIONS(3433), - [anon_sym_operator] = ACTIONS(3433), - [anon_sym_friend] = ACTIONS(3433), - [anon_sym_public] = ACTIONS(3433), - [anon_sym_private] = ACTIONS(3433), - [anon_sym_protected] = ACTIONS(3433), - [anon_sym_using] = ACTIONS(3433), - [anon_sym_static_assert] = ACTIONS(3433), - }, - [2148] = { - [sym_identifier] = ACTIONS(3638), - [aux_sym_preproc_def_token1] = ACTIONS(3638), - [aux_sym_preproc_if_token1] = ACTIONS(3638), - [aux_sym_preproc_if_token2] = ACTIONS(3638), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3638), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3638), - [aux_sym_preproc_else_token1] = ACTIONS(3638), - [aux_sym_preproc_elif_token1] = ACTIONS(3638), - [sym_preproc_directive] = ACTIONS(3638), - [anon_sym_LPAREN2] = ACTIONS(3640), - [anon_sym_TILDE] = ACTIONS(3640), - [anon_sym_STAR] = ACTIONS(3640), - [anon_sym_AMP_AMP] = ACTIONS(3640), - [anon_sym_AMP] = ACTIONS(3638), - [anon_sym___extension__] = ACTIONS(3638), - [anon_sym_typedef] = ACTIONS(3638), - [anon_sym_extern] = ACTIONS(3638), - [anon_sym___attribute__] = ACTIONS(3638), - [anon_sym_COLON_COLON] = ACTIONS(3640), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3640), - [anon_sym___declspec] = ACTIONS(3638), - [anon_sym___based] = ACTIONS(3638), - [anon_sym_signed] = ACTIONS(3638), - [anon_sym_unsigned] = ACTIONS(3638), - [anon_sym_long] = ACTIONS(3638), - [anon_sym_short] = ACTIONS(3638), - [anon_sym_LBRACK] = ACTIONS(3638), - [anon_sym_static] = ACTIONS(3638), - [anon_sym_register] = ACTIONS(3638), - [anon_sym_inline] = ACTIONS(3638), - [anon_sym___inline] = ACTIONS(3638), - [anon_sym___inline__] = ACTIONS(3638), - [anon_sym___forceinline] = ACTIONS(3638), - [anon_sym_thread_local] = ACTIONS(3638), - [anon_sym___thread] = ACTIONS(3638), - [anon_sym_const] = ACTIONS(3638), - [anon_sym_constexpr] = ACTIONS(3638), - [anon_sym_volatile] = ACTIONS(3638), - [anon_sym_restrict] = ACTIONS(3638), - [anon_sym___restrict__] = ACTIONS(3638), - [anon_sym__Atomic] = ACTIONS(3638), - [anon_sym__Noreturn] = ACTIONS(3638), - [anon_sym_noreturn] = ACTIONS(3638), - [anon_sym_mutable] = ACTIONS(3638), - [anon_sym_constinit] = ACTIONS(3638), - [anon_sym_consteval] = ACTIONS(3638), - [sym_primitive_type] = ACTIONS(3638), - [anon_sym_enum] = ACTIONS(3638), - [anon_sym_class] = ACTIONS(3638), - [anon_sym_struct] = ACTIONS(3638), - [anon_sym_union] = ACTIONS(3638), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3638), - [anon_sym_decltype] = ACTIONS(3638), - [anon_sym_virtual] = ACTIONS(3638), - [anon_sym_alignas] = ACTIONS(3638), - [anon_sym_explicit] = ACTIONS(3638), - [anon_sym_typename] = ACTIONS(3638), - [anon_sym_template] = ACTIONS(3638), - [anon_sym_operator] = ACTIONS(3638), - [anon_sym_friend] = ACTIONS(3638), - [anon_sym_public] = ACTIONS(3638), - [anon_sym_private] = ACTIONS(3638), - [anon_sym_protected] = ACTIONS(3638), - [anon_sym_using] = ACTIONS(3638), - [anon_sym_static_assert] = ACTIONS(3638), - }, - [2149] = { - [sym_declaration_modifiers] = STATE(4294), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(5177), - [sym_sized_type_specifier] = STATE(4794), - [sym_enum_specifier] = STATE(4794), - [sym_struct_specifier] = STATE(4794), - [sym_union_specifier] = STATE(4794), - [sym_placeholder_type_specifier] = STATE(4794), - [sym_decltype_auto] = STATE(4805), - [sym_decltype] = STATE(4720), - [sym_class_specifier] = STATE(4794), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4794), - [sym_template_type] = STATE(4720), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7904), - [sym_qualified_type_identifier] = STATE(4751), - [aux_sym_declaration_specifiers_repeat1] = STATE(4294), - [aux_sym_sized_type_specifier_repeat1] = STATE(5372), - [sym_identifier] = ACTIONS(4342), - [anon_sym___extension__] = ACTIONS(65), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(4348), - [anon_sym_unsigned] = ACTIONS(4348), - [anon_sym_long] = ACTIONS(4348), - [anon_sym_short] = ACTIONS(4348), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(4350), - [anon_sym_enum] = ACTIONS(4352), - [anon_sym_class] = ACTIONS(4354), - [anon_sym_struct] = ACTIONS(4356), - [anon_sym_union] = ACTIONS(4358), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4360), - [anon_sym_decltype] = ACTIONS(4362), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(4364), - [anon_sym_template] = ACTIONS(1538), - }, - [2150] = { - [sym_identifier] = ACTIONS(3652), - [aux_sym_preproc_def_token1] = ACTIONS(3652), - [aux_sym_preproc_if_token1] = ACTIONS(3652), - [aux_sym_preproc_if_token2] = ACTIONS(3652), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3652), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3652), - [aux_sym_preproc_else_token1] = ACTIONS(3652), - [aux_sym_preproc_elif_token1] = ACTIONS(3652), - [sym_preproc_directive] = ACTIONS(3652), - [anon_sym_LPAREN2] = ACTIONS(3654), - [anon_sym_TILDE] = ACTIONS(3654), - [anon_sym_STAR] = ACTIONS(3654), - [anon_sym_AMP_AMP] = ACTIONS(3654), - [anon_sym_AMP] = ACTIONS(3652), - [anon_sym___extension__] = ACTIONS(3652), - [anon_sym_typedef] = ACTIONS(3652), - [anon_sym_extern] = ACTIONS(3652), - [anon_sym___attribute__] = ACTIONS(3652), - [anon_sym_COLON_COLON] = ACTIONS(3654), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3654), - [anon_sym___declspec] = ACTIONS(3652), - [anon_sym___based] = ACTIONS(3652), - [anon_sym_signed] = ACTIONS(3652), - [anon_sym_unsigned] = ACTIONS(3652), - [anon_sym_long] = ACTIONS(3652), - [anon_sym_short] = ACTIONS(3652), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_static] = ACTIONS(3652), - [anon_sym_register] = ACTIONS(3652), - [anon_sym_inline] = ACTIONS(3652), - [anon_sym___inline] = ACTIONS(3652), - [anon_sym___inline__] = ACTIONS(3652), - [anon_sym___forceinline] = ACTIONS(3652), - [anon_sym_thread_local] = ACTIONS(3652), - [anon_sym___thread] = ACTIONS(3652), - [anon_sym_const] = ACTIONS(3652), - [anon_sym_constexpr] = ACTIONS(3652), - [anon_sym_volatile] = ACTIONS(3652), - [anon_sym_restrict] = ACTIONS(3652), - [anon_sym___restrict__] = ACTIONS(3652), - [anon_sym__Atomic] = ACTIONS(3652), - [anon_sym__Noreturn] = ACTIONS(3652), - [anon_sym_noreturn] = ACTIONS(3652), - [anon_sym_mutable] = ACTIONS(3652), - [anon_sym_constinit] = ACTIONS(3652), - [anon_sym_consteval] = ACTIONS(3652), - [sym_primitive_type] = ACTIONS(3652), - [anon_sym_enum] = ACTIONS(3652), - [anon_sym_class] = ACTIONS(3652), - [anon_sym_struct] = ACTIONS(3652), - [anon_sym_union] = ACTIONS(3652), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3652), - [anon_sym_decltype] = ACTIONS(3652), - [anon_sym_virtual] = ACTIONS(3652), - [anon_sym_alignas] = ACTIONS(3652), - [anon_sym_explicit] = ACTIONS(3652), - [anon_sym_typename] = ACTIONS(3652), - [anon_sym_template] = ACTIONS(3652), - [anon_sym_operator] = ACTIONS(3652), - [anon_sym_friend] = ACTIONS(3652), - [anon_sym_public] = ACTIONS(3652), - [anon_sym_private] = ACTIONS(3652), - [anon_sym_protected] = ACTIONS(3652), - [anon_sym_using] = ACTIONS(3652), - [anon_sym_static_assert] = ACTIONS(3652), + [sym_auto] = ACTIONS(3380), + [anon_sym_decltype] = ACTIONS(3380), + [anon_sym_virtual] = ACTIONS(3380), + [anon_sym_alignas] = ACTIONS(3380), + [anon_sym_explicit] = ACTIONS(3380), + [anon_sym_typename] = ACTIONS(3380), + [anon_sym_template] = ACTIONS(3380), + [anon_sym_operator] = ACTIONS(3380), + [anon_sym_friend] = ACTIONS(3380), + [anon_sym_public] = ACTIONS(3380), + [anon_sym_private] = ACTIONS(3380), + [anon_sym_protected] = ACTIONS(3380), + [anon_sym_using] = ACTIONS(3380), + [anon_sym_static_assert] = ACTIONS(3380), + [sym_semgrep_metavar] = ACTIONS(3382), }, - [2151] = { - [sym_string_literal] = STATE(2124), - [sym_raw_string_literal] = STATE(2124), - [aux_sym_concatenated_string_repeat1] = STATE(2124), - [sym_identifier] = ACTIONS(6110), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5643), - [anon_sym_COMMA] = ACTIONS(5643), - [anon_sym_LPAREN2] = ACTIONS(5643), - [anon_sym_DASH] = ACTIONS(5647), - [anon_sym_PLUS] = ACTIONS(5647), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5647), - [anon_sym_PERCENT] = ACTIONS(5647), - [anon_sym_PIPE_PIPE] = ACTIONS(5643), - [anon_sym_AMP_AMP] = ACTIONS(5643), - [anon_sym_PIPE] = ACTIONS(5647), - [anon_sym_CARET] = ACTIONS(5647), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5643), - [anon_sym_BANG_EQ] = ACTIONS(5643), - [anon_sym_GT] = ACTIONS(5647), - [anon_sym_GT_EQ] = ACTIONS(5647), - [anon_sym_LT_EQ] = ACTIONS(5647), - [anon_sym_LT] = ACTIONS(5647), - [anon_sym_LT_LT] = ACTIONS(5647), - [anon_sym_GT_GT] = ACTIONS(5647), - [anon_sym_LBRACK] = ACTIONS(5643), - [anon_sym_EQ] = ACTIONS(5647), - [anon_sym_QMARK] = ACTIONS(5643), - [anon_sym_STAR_EQ] = ACTIONS(5643), - [anon_sym_SLASH_EQ] = ACTIONS(5643), - [anon_sym_PERCENT_EQ] = ACTIONS(5643), - [anon_sym_PLUS_EQ] = ACTIONS(5643), - [anon_sym_DASH_EQ] = ACTIONS(5643), - [anon_sym_LT_LT_EQ] = ACTIONS(5643), - [anon_sym_GT_GT_EQ] = ACTIONS(5647), - [anon_sym_AMP_EQ] = ACTIONS(5643), - [anon_sym_CARET_EQ] = ACTIONS(5643), - [anon_sym_PIPE_EQ] = ACTIONS(5643), - [anon_sym_and_eq] = ACTIONS(5647), - [anon_sym_or_eq] = ACTIONS(5647), - [anon_sym_xor_eq] = ACTIONS(5647), - [anon_sym_LT_EQ_GT] = ACTIONS(5643), - [anon_sym_or] = ACTIONS(5647), - [anon_sym_and] = ACTIONS(5647), - [anon_sym_bitor] = ACTIONS(5647), - [anon_sym_xor] = ACTIONS(5647), - [anon_sym_bitand] = ACTIONS(5647), - [anon_sym_not_eq] = ACTIONS(5647), - [anon_sym_DASH_DASH] = ACTIONS(5643), - [anon_sym_PLUS_PLUS] = ACTIONS(5643), - [anon_sym_DOT] = ACTIONS(5647), - [anon_sym_DOT_STAR] = ACTIONS(5643), - [anon_sym_DASH_GT] = ACTIONS(5643), - [anon_sym_L_DQUOTE] = ACTIONS(6102), - [anon_sym_u_DQUOTE] = ACTIONS(6102), - [anon_sym_U_DQUOTE] = ACTIONS(6102), - [anon_sym_u8_DQUOTE] = ACTIONS(6102), - [anon_sym_DQUOTE] = ACTIONS(6102), + [2080] = { + [sym_identifier] = ACTIONS(3503), + [aux_sym_preproc_def_token1] = ACTIONS(3503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3505), + [aux_sym_preproc_if_token1] = ACTIONS(3503), + [aux_sym_preproc_if_token2] = ACTIONS(3503), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3503), + [aux_sym_preproc_else_token1] = ACTIONS(3503), + [aux_sym_preproc_elif_token1] = ACTIONS(3503), + [sym_preproc_directive] = ACTIONS(3503), + [anon_sym_LPAREN2] = ACTIONS(3505), + [anon_sym_TILDE] = ACTIONS(3505), + [anon_sym_STAR] = ACTIONS(3505), + [anon_sym_AMP_AMP] = ACTIONS(3505), + [anon_sym_AMP] = ACTIONS(3503), + [anon_sym___extension__] = ACTIONS(3503), + [anon_sym_typedef] = ACTIONS(3503), + [anon_sym_extern] = ACTIONS(3503), + [anon_sym___attribute__] = ACTIONS(3503), + [anon_sym_COLON_COLON] = ACTIONS(3505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3505), + [anon_sym___declspec] = ACTIONS(3503), + [anon_sym___based] = ACTIONS(3503), + [anon_sym_signed] = ACTIONS(3503), + [anon_sym_unsigned] = ACTIONS(3503), + [anon_sym_long] = ACTIONS(3503), + [anon_sym_short] = ACTIONS(3503), + [anon_sym_LBRACK] = ACTIONS(3503), + [anon_sym_static] = ACTIONS(3503), + [anon_sym_register] = ACTIONS(3503), + [anon_sym_inline] = ACTIONS(3503), + [anon_sym___inline] = ACTIONS(3503), + [anon_sym___inline__] = ACTIONS(3503), + [anon_sym___forceinline] = ACTIONS(3503), + [anon_sym_thread_local] = ACTIONS(3503), + [anon_sym___thread] = ACTIONS(3503), + [anon_sym_const] = ACTIONS(3503), + [anon_sym_constexpr] = ACTIONS(3503), + [anon_sym_volatile] = ACTIONS(3503), + [anon_sym_restrict] = ACTIONS(3503), + [anon_sym___restrict__] = ACTIONS(3503), + [anon_sym__Atomic] = ACTIONS(3503), + [anon_sym__Noreturn] = ACTIONS(3503), + [anon_sym_noreturn] = ACTIONS(3503), + [anon_sym_mutable] = ACTIONS(3503), + [anon_sym_constinit] = ACTIONS(3503), + [anon_sym_consteval] = ACTIONS(3503), + [sym_primitive_type] = ACTIONS(3503), + [anon_sym_enum] = ACTIONS(3503), + [anon_sym_class] = ACTIONS(3503), + [anon_sym_struct] = ACTIONS(3503), + [anon_sym_union] = ACTIONS(3503), [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(5643), - [anon_sym_R_DQUOTE] = ACTIONS(6104), - [anon_sym_LR_DQUOTE] = ACTIONS(6104), - [anon_sym_uR_DQUOTE] = ACTIONS(6104), - [anon_sym_UR_DQUOTE] = ACTIONS(6104), - [anon_sym_u8R_DQUOTE] = ACTIONS(6104), - [sym_literal_suffix] = ACTIONS(5647), - }, - [2152] = { - [sym_identifier] = ACTIONS(3261), - [aux_sym_preproc_def_token1] = ACTIONS(3261), - [aux_sym_preproc_if_token1] = ACTIONS(3261), - [aux_sym_preproc_if_token2] = ACTIONS(3261), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3261), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3261), - [aux_sym_preproc_else_token1] = ACTIONS(3261), - [aux_sym_preproc_elif_token1] = ACTIONS(3261), - [sym_preproc_directive] = ACTIONS(3261), - [anon_sym_LPAREN2] = ACTIONS(3263), - [anon_sym_TILDE] = ACTIONS(3263), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP_AMP] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3261), - [anon_sym___extension__] = ACTIONS(3261), - [anon_sym_typedef] = ACTIONS(3261), - [anon_sym_extern] = ACTIONS(3261), - [anon_sym___attribute__] = ACTIONS(3261), - [anon_sym_COLON_COLON] = ACTIONS(3263), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3263), - [anon_sym___declspec] = ACTIONS(3261), - [anon_sym___based] = ACTIONS(3261), - [anon_sym_signed] = ACTIONS(3261), - [anon_sym_unsigned] = ACTIONS(3261), - [anon_sym_long] = ACTIONS(3261), - [anon_sym_short] = ACTIONS(3261), - [anon_sym_LBRACK] = ACTIONS(3261), - [anon_sym_static] = ACTIONS(3261), - [anon_sym_register] = ACTIONS(3261), - [anon_sym_inline] = ACTIONS(3261), - [anon_sym___inline] = ACTIONS(3261), - [anon_sym___inline__] = ACTIONS(3261), - [anon_sym___forceinline] = ACTIONS(3261), - [anon_sym_thread_local] = ACTIONS(3261), - [anon_sym___thread] = ACTIONS(3261), - [anon_sym_const] = ACTIONS(3261), - [anon_sym_constexpr] = ACTIONS(3261), - [anon_sym_volatile] = ACTIONS(3261), - [anon_sym_restrict] = ACTIONS(3261), - [anon_sym___restrict__] = ACTIONS(3261), - [anon_sym__Atomic] = ACTIONS(3261), - [anon_sym__Noreturn] = ACTIONS(3261), - [anon_sym_noreturn] = ACTIONS(3261), - [anon_sym_mutable] = ACTIONS(3261), - [anon_sym_constinit] = ACTIONS(3261), - [anon_sym_consteval] = ACTIONS(3261), - [sym_primitive_type] = ACTIONS(3261), - [anon_sym_enum] = ACTIONS(3261), - [anon_sym_class] = ACTIONS(3261), - [anon_sym_struct] = ACTIONS(3261), - [anon_sym_union] = ACTIONS(3261), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3261), - [anon_sym_decltype] = ACTIONS(3261), - [anon_sym_virtual] = ACTIONS(3261), - [anon_sym_alignas] = ACTIONS(3261), - [anon_sym_explicit] = ACTIONS(3261), - [anon_sym_typename] = ACTIONS(3261), - [anon_sym_template] = ACTIONS(3261), - [anon_sym_operator] = ACTIONS(3261), - [anon_sym_friend] = ACTIONS(3261), - [anon_sym_public] = ACTIONS(3261), - [anon_sym_private] = ACTIONS(3261), - [anon_sym_protected] = ACTIONS(3261), - [anon_sym_using] = ACTIONS(3261), - [anon_sym_static_assert] = ACTIONS(3261), - }, - [2153] = { - [sym_identifier] = ACTIONS(3350), - [aux_sym_preproc_def_token1] = ACTIONS(3350), - [aux_sym_preproc_if_token1] = ACTIONS(3350), - [aux_sym_preproc_if_token2] = ACTIONS(3350), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3350), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3350), - [aux_sym_preproc_else_token1] = ACTIONS(3350), - [aux_sym_preproc_elif_token1] = ACTIONS(3350), - [sym_preproc_directive] = ACTIONS(3350), - [anon_sym_LPAREN2] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(3352), - [anon_sym_STAR] = ACTIONS(3352), - [anon_sym_AMP_AMP] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3350), - [anon_sym___extension__] = ACTIONS(3350), - [anon_sym_typedef] = ACTIONS(3350), - [anon_sym_extern] = ACTIONS(3350), - [anon_sym___attribute__] = ACTIONS(3350), - [anon_sym_COLON_COLON] = ACTIONS(3352), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3352), - [anon_sym___declspec] = ACTIONS(3350), - [anon_sym___based] = ACTIONS(3350), - [anon_sym_signed] = ACTIONS(3350), - [anon_sym_unsigned] = ACTIONS(3350), - [anon_sym_long] = ACTIONS(3350), - [anon_sym_short] = ACTIONS(3350), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_static] = ACTIONS(3350), - [anon_sym_register] = ACTIONS(3350), - [anon_sym_inline] = ACTIONS(3350), - [anon_sym___inline] = ACTIONS(3350), - [anon_sym___inline__] = ACTIONS(3350), - [anon_sym___forceinline] = ACTIONS(3350), - [anon_sym_thread_local] = ACTIONS(3350), - [anon_sym___thread] = ACTIONS(3350), - [anon_sym_const] = ACTIONS(3350), - [anon_sym_constexpr] = ACTIONS(3350), - [anon_sym_volatile] = ACTIONS(3350), - [anon_sym_restrict] = ACTIONS(3350), - [anon_sym___restrict__] = ACTIONS(3350), - [anon_sym__Atomic] = ACTIONS(3350), - [anon_sym__Noreturn] = ACTIONS(3350), - [anon_sym_noreturn] = ACTIONS(3350), - [anon_sym_mutable] = ACTIONS(3350), - [anon_sym_constinit] = ACTIONS(3350), - [anon_sym_consteval] = ACTIONS(3350), - [sym_primitive_type] = ACTIONS(3350), - [anon_sym_enum] = ACTIONS(3350), - [anon_sym_class] = ACTIONS(3350), - [anon_sym_struct] = ACTIONS(3350), - [anon_sym_union] = ACTIONS(3350), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3350), - [anon_sym_decltype] = ACTIONS(3350), - [anon_sym_virtual] = ACTIONS(3350), - [anon_sym_alignas] = ACTIONS(3350), - [anon_sym_explicit] = ACTIONS(3350), - [anon_sym_typename] = ACTIONS(3350), - [anon_sym_template] = ACTIONS(3350), - [anon_sym_operator] = ACTIONS(3350), - [anon_sym_friend] = ACTIONS(3350), - [anon_sym_public] = ACTIONS(3350), - [anon_sym_private] = ACTIONS(3350), - [anon_sym_protected] = ACTIONS(3350), - [anon_sym_using] = ACTIONS(3350), - [anon_sym_static_assert] = ACTIONS(3350), - }, - [2154] = { - [sym_identifier] = ACTIONS(3441), - [aux_sym_preproc_def_token1] = ACTIONS(3441), - [aux_sym_preproc_if_token1] = ACTIONS(3441), - [aux_sym_preproc_if_token2] = ACTIONS(3441), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3441), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3441), - [aux_sym_preproc_else_token1] = ACTIONS(3441), - [aux_sym_preproc_elif_token1] = ACTIONS(3441), - [sym_preproc_directive] = ACTIONS(3441), - [anon_sym_LPAREN2] = ACTIONS(3443), - [anon_sym_TILDE] = ACTIONS(3443), - [anon_sym_STAR] = ACTIONS(3443), - [anon_sym_AMP_AMP] = ACTIONS(3443), - [anon_sym_AMP] = ACTIONS(3441), - [anon_sym___extension__] = ACTIONS(3441), - [anon_sym_typedef] = ACTIONS(3441), - [anon_sym_extern] = ACTIONS(3441), - [anon_sym___attribute__] = ACTIONS(3441), - [anon_sym_COLON_COLON] = ACTIONS(3443), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3443), - [anon_sym___declspec] = ACTIONS(3441), - [anon_sym___based] = ACTIONS(3441), - [anon_sym_signed] = ACTIONS(3441), - [anon_sym_unsigned] = ACTIONS(3441), - [anon_sym_long] = ACTIONS(3441), - [anon_sym_short] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_static] = ACTIONS(3441), - [anon_sym_register] = ACTIONS(3441), - [anon_sym_inline] = ACTIONS(3441), - [anon_sym___inline] = ACTIONS(3441), - [anon_sym___inline__] = ACTIONS(3441), - [anon_sym___forceinline] = ACTIONS(3441), - [anon_sym_thread_local] = ACTIONS(3441), - [anon_sym___thread] = ACTIONS(3441), - [anon_sym_const] = ACTIONS(3441), - [anon_sym_constexpr] = ACTIONS(3441), - [anon_sym_volatile] = ACTIONS(3441), - [anon_sym_restrict] = ACTIONS(3441), - [anon_sym___restrict__] = ACTIONS(3441), - [anon_sym__Atomic] = ACTIONS(3441), - [anon_sym__Noreturn] = ACTIONS(3441), - [anon_sym_noreturn] = ACTIONS(3441), - [anon_sym_mutable] = ACTIONS(3441), - [anon_sym_constinit] = ACTIONS(3441), - [anon_sym_consteval] = ACTIONS(3441), - [sym_primitive_type] = ACTIONS(3441), - [anon_sym_enum] = ACTIONS(3441), - [anon_sym_class] = ACTIONS(3441), - [anon_sym_struct] = ACTIONS(3441), - [anon_sym_union] = ACTIONS(3441), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3441), - [anon_sym_decltype] = ACTIONS(3441), - [anon_sym_virtual] = ACTIONS(3441), - [anon_sym_alignas] = ACTIONS(3441), - [anon_sym_explicit] = ACTIONS(3441), - [anon_sym_typename] = ACTIONS(3441), - [anon_sym_template] = ACTIONS(3441), - [anon_sym_operator] = ACTIONS(3441), - [anon_sym_friend] = ACTIONS(3441), - [anon_sym_public] = ACTIONS(3441), - [anon_sym_private] = ACTIONS(3441), - [anon_sym_protected] = ACTIONS(3441), - [anon_sym_using] = ACTIONS(3441), - [anon_sym_static_assert] = ACTIONS(3441), - }, - [2155] = { - [sym_identifier] = ACTIONS(3515), - [aux_sym_preproc_def_token1] = ACTIONS(3515), - [aux_sym_preproc_if_token1] = ACTIONS(3515), - [aux_sym_preproc_if_token2] = ACTIONS(3515), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3515), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3515), - [aux_sym_preproc_else_token1] = ACTIONS(3515), - [aux_sym_preproc_elif_token1] = ACTIONS(3515), - [sym_preproc_directive] = ACTIONS(3515), - [anon_sym_LPAREN2] = ACTIONS(3517), - [anon_sym_TILDE] = ACTIONS(3517), - [anon_sym_STAR] = ACTIONS(3517), - [anon_sym_AMP_AMP] = ACTIONS(3517), - [anon_sym_AMP] = ACTIONS(3515), - [anon_sym___extension__] = ACTIONS(3515), - [anon_sym_typedef] = ACTIONS(3515), - [anon_sym_extern] = ACTIONS(3515), - [anon_sym___attribute__] = ACTIONS(3515), - [anon_sym_COLON_COLON] = ACTIONS(3517), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3517), - [anon_sym___declspec] = ACTIONS(3515), - [anon_sym___based] = ACTIONS(3515), - [anon_sym_signed] = ACTIONS(3515), - [anon_sym_unsigned] = ACTIONS(3515), - [anon_sym_long] = ACTIONS(3515), - [anon_sym_short] = ACTIONS(3515), - [anon_sym_LBRACK] = ACTIONS(3515), - [anon_sym_static] = ACTIONS(3515), - [anon_sym_register] = ACTIONS(3515), - [anon_sym_inline] = ACTIONS(3515), - [anon_sym___inline] = ACTIONS(3515), - [anon_sym___inline__] = ACTIONS(3515), - [anon_sym___forceinline] = ACTIONS(3515), - [anon_sym_thread_local] = ACTIONS(3515), - [anon_sym___thread] = ACTIONS(3515), - [anon_sym_const] = ACTIONS(3515), - [anon_sym_constexpr] = ACTIONS(3515), - [anon_sym_volatile] = ACTIONS(3515), - [anon_sym_restrict] = ACTIONS(3515), - [anon_sym___restrict__] = ACTIONS(3515), - [anon_sym__Atomic] = ACTIONS(3515), - [anon_sym__Noreturn] = ACTIONS(3515), - [anon_sym_noreturn] = ACTIONS(3515), - [anon_sym_mutable] = ACTIONS(3515), - [anon_sym_constinit] = ACTIONS(3515), - [anon_sym_consteval] = ACTIONS(3515), - [sym_primitive_type] = ACTIONS(3515), - [anon_sym_enum] = ACTIONS(3515), - [anon_sym_class] = ACTIONS(3515), - [anon_sym_struct] = ACTIONS(3515), - [anon_sym_union] = ACTIONS(3515), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3515), - [anon_sym_decltype] = ACTIONS(3515), - [anon_sym_virtual] = ACTIONS(3515), - [anon_sym_alignas] = ACTIONS(3515), - [anon_sym_explicit] = ACTIONS(3515), - [anon_sym_typename] = ACTIONS(3515), - [anon_sym_template] = ACTIONS(3515), - [anon_sym_operator] = ACTIONS(3515), - [anon_sym_friend] = ACTIONS(3515), - [anon_sym_public] = ACTIONS(3515), - [anon_sym_private] = ACTIONS(3515), - [anon_sym_protected] = ACTIONS(3515), - [anon_sym_using] = ACTIONS(3515), - [anon_sym_static_assert] = ACTIONS(3515), - }, - [2156] = { - [sym_identifier] = ACTIONS(3445), - [aux_sym_preproc_def_token1] = ACTIONS(3445), - [aux_sym_preproc_if_token1] = ACTIONS(3445), - [aux_sym_preproc_if_token2] = ACTIONS(3445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3445), - [aux_sym_preproc_else_token1] = ACTIONS(3445), - [aux_sym_preproc_elif_token1] = ACTIONS(3445), - [sym_preproc_directive] = ACTIONS(3445), - [anon_sym_LPAREN2] = ACTIONS(3447), - [anon_sym_TILDE] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3445), - [anon_sym___extension__] = ACTIONS(3445), - [anon_sym_typedef] = ACTIONS(3445), - [anon_sym_extern] = ACTIONS(3445), - [anon_sym___attribute__] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3447), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3447), - [anon_sym___declspec] = ACTIONS(3445), - [anon_sym___based] = ACTIONS(3445), - [anon_sym_signed] = ACTIONS(3445), - [anon_sym_unsigned] = ACTIONS(3445), - [anon_sym_long] = ACTIONS(3445), - [anon_sym_short] = ACTIONS(3445), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_static] = ACTIONS(3445), - [anon_sym_register] = ACTIONS(3445), - [anon_sym_inline] = ACTIONS(3445), - [anon_sym___inline] = ACTIONS(3445), - [anon_sym___inline__] = ACTIONS(3445), - [anon_sym___forceinline] = ACTIONS(3445), - [anon_sym_thread_local] = ACTIONS(3445), - [anon_sym___thread] = ACTIONS(3445), - [anon_sym_const] = ACTIONS(3445), - [anon_sym_constexpr] = ACTIONS(3445), - [anon_sym_volatile] = ACTIONS(3445), - [anon_sym_restrict] = ACTIONS(3445), - [anon_sym___restrict__] = ACTIONS(3445), - [anon_sym__Atomic] = ACTIONS(3445), - [anon_sym__Noreturn] = ACTIONS(3445), - [anon_sym_noreturn] = ACTIONS(3445), - [anon_sym_mutable] = ACTIONS(3445), - [anon_sym_constinit] = ACTIONS(3445), - [anon_sym_consteval] = ACTIONS(3445), - [sym_primitive_type] = ACTIONS(3445), - [anon_sym_enum] = ACTIONS(3445), - [anon_sym_class] = ACTIONS(3445), - [anon_sym_struct] = ACTIONS(3445), - [anon_sym_union] = ACTIONS(3445), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3445), - [anon_sym_decltype] = ACTIONS(3445), - [anon_sym_virtual] = ACTIONS(3445), - [anon_sym_alignas] = ACTIONS(3445), - [anon_sym_explicit] = ACTIONS(3445), - [anon_sym_typename] = ACTIONS(3445), - [anon_sym_template] = ACTIONS(3445), - [anon_sym_operator] = ACTIONS(3445), - [anon_sym_friend] = ACTIONS(3445), - [anon_sym_public] = ACTIONS(3445), - [anon_sym_private] = ACTIONS(3445), - [anon_sym_protected] = ACTIONS(3445), - [anon_sym_using] = ACTIONS(3445), - [anon_sym_static_assert] = ACTIONS(3445), - }, - [2157] = { - [sym_identifier] = ACTIONS(3449), - [aux_sym_preproc_def_token1] = ACTIONS(3449), - [aux_sym_preproc_if_token1] = ACTIONS(3449), - [aux_sym_preproc_if_token2] = ACTIONS(3449), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3449), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3449), - [aux_sym_preproc_else_token1] = ACTIONS(3449), - [aux_sym_preproc_elif_token1] = ACTIONS(3449), - [sym_preproc_directive] = ACTIONS(3449), - [anon_sym_LPAREN2] = ACTIONS(3451), - [anon_sym_TILDE] = ACTIONS(3451), - [anon_sym_STAR] = ACTIONS(3451), - [anon_sym_AMP_AMP] = ACTIONS(3451), - [anon_sym_AMP] = ACTIONS(3449), - [anon_sym___extension__] = ACTIONS(3449), - [anon_sym_typedef] = ACTIONS(3449), - [anon_sym_extern] = ACTIONS(3449), - [anon_sym___attribute__] = ACTIONS(3449), - [anon_sym_COLON_COLON] = ACTIONS(3451), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3451), - [anon_sym___declspec] = ACTIONS(3449), - [anon_sym___based] = ACTIONS(3449), - [anon_sym_signed] = ACTIONS(3449), - [anon_sym_unsigned] = ACTIONS(3449), - [anon_sym_long] = ACTIONS(3449), - [anon_sym_short] = ACTIONS(3449), - [anon_sym_LBRACK] = ACTIONS(3449), - [anon_sym_static] = ACTIONS(3449), - [anon_sym_register] = ACTIONS(3449), - [anon_sym_inline] = ACTIONS(3449), - [anon_sym___inline] = ACTIONS(3449), - [anon_sym___inline__] = ACTIONS(3449), - [anon_sym___forceinline] = ACTIONS(3449), - [anon_sym_thread_local] = ACTIONS(3449), - [anon_sym___thread] = ACTIONS(3449), - [anon_sym_const] = ACTIONS(3449), - [anon_sym_constexpr] = ACTIONS(3449), - [anon_sym_volatile] = ACTIONS(3449), - [anon_sym_restrict] = ACTIONS(3449), - [anon_sym___restrict__] = ACTIONS(3449), - [anon_sym__Atomic] = ACTIONS(3449), - [anon_sym__Noreturn] = ACTIONS(3449), - [anon_sym_noreturn] = ACTIONS(3449), - [anon_sym_mutable] = ACTIONS(3449), - [anon_sym_constinit] = ACTIONS(3449), - [anon_sym_consteval] = ACTIONS(3449), - [sym_primitive_type] = ACTIONS(3449), - [anon_sym_enum] = ACTIONS(3449), - [anon_sym_class] = ACTIONS(3449), - [anon_sym_struct] = ACTIONS(3449), - [anon_sym_union] = ACTIONS(3449), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3449), - [anon_sym_decltype] = ACTIONS(3449), - [anon_sym_virtual] = ACTIONS(3449), - [anon_sym_alignas] = ACTIONS(3449), - [anon_sym_explicit] = ACTIONS(3449), - [anon_sym_typename] = ACTIONS(3449), - [anon_sym_template] = ACTIONS(3449), - [anon_sym_operator] = ACTIONS(3449), - [anon_sym_friend] = ACTIONS(3449), - [anon_sym_public] = ACTIONS(3449), - [anon_sym_private] = ACTIONS(3449), - [anon_sym_protected] = ACTIONS(3449), - [anon_sym_using] = ACTIONS(3449), - [anon_sym_static_assert] = ACTIONS(3449), + [sym_auto] = ACTIONS(3503), + [anon_sym_decltype] = ACTIONS(3503), + [anon_sym_virtual] = ACTIONS(3503), + [anon_sym_alignas] = ACTIONS(3503), + [anon_sym_explicit] = ACTIONS(3503), + [anon_sym_typename] = ACTIONS(3503), + [anon_sym_template] = ACTIONS(3503), + [anon_sym_operator] = ACTIONS(3503), + [anon_sym_friend] = ACTIONS(3503), + [anon_sym_public] = ACTIONS(3503), + [anon_sym_private] = ACTIONS(3503), + [anon_sym_protected] = ACTIONS(3503), + [anon_sym_using] = ACTIONS(3503), + [anon_sym_static_assert] = ACTIONS(3503), + [sym_semgrep_metavar] = ACTIONS(3505), }, - [2158] = { - [sym_identifier] = ACTIONS(3453), - [aux_sym_preproc_def_token1] = ACTIONS(3453), - [aux_sym_preproc_if_token1] = ACTIONS(3453), - [aux_sym_preproc_if_token2] = ACTIONS(3453), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3453), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3453), - [aux_sym_preproc_else_token1] = ACTIONS(3453), - [aux_sym_preproc_elif_token1] = ACTIONS(3453), - [sym_preproc_directive] = ACTIONS(3453), - [anon_sym_LPAREN2] = ACTIONS(3455), - [anon_sym_TILDE] = ACTIONS(3455), - [anon_sym_STAR] = ACTIONS(3455), - [anon_sym_AMP_AMP] = ACTIONS(3455), - [anon_sym_AMP] = ACTIONS(3453), - [anon_sym___extension__] = ACTIONS(3453), - [anon_sym_typedef] = ACTIONS(3453), - [anon_sym_extern] = ACTIONS(3453), - [anon_sym___attribute__] = ACTIONS(3453), - [anon_sym_COLON_COLON] = ACTIONS(3455), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3455), - [anon_sym___declspec] = ACTIONS(3453), - [anon_sym___based] = ACTIONS(3453), - [anon_sym_signed] = ACTIONS(3453), - [anon_sym_unsigned] = ACTIONS(3453), - [anon_sym_long] = ACTIONS(3453), - [anon_sym_short] = ACTIONS(3453), - [anon_sym_LBRACK] = ACTIONS(3453), - [anon_sym_static] = ACTIONS(3453), - [anon_sym_register] = ACTIONS(3453), - [anon_sym_inline] = ACTIONS(3453), - [anon_sym___inline] = ACTIONS(3453), - [anon_sym___inline__] = ACTIONS(3453), - [anon_sym___forceinline] = ACTIONS(3453), - [anon_sym_thread_local] = ACTIONS(3453), - [anon_sym___thread] = ACTIONS(3453), - [anon_sym_const] = ACTIONS(3453), - [anon_sym_constexpr] = ACTIONS(3453), - [anon_sym_volatile] = ACTIONS(3453), - [anon_sym_restrict] = ACTIONS(3453), - [anon_sym___restrict__] = ACTIONS(3453), - [anon_sym__Atomic] = ACTIONS(3453), - [anon_sym__Noreturn] = ACTIONS(3453), - [anon_sym_noreturn] = ACTIONS(3453), - [anon_sym_mutable] = ACTIONS(3453), - [anon_sym_constinit] = ACTIONS(3453), - [anon_sym_consteval] = ACTIONS(3453), - [sym_primitive_type] = ACTIONS(3453), - [anon_sym_enum] = ACTIONS(3453), - [anon_sym_class] = ACTIONS(3453), - [anon_sym_struct] = ACTIONS(3453), - [anon_sym_union] = ACTIONS(3453), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3453), - [anon_sym_decltype] = ACTIONS(3453), - [anon_sym_virtual] = ACTIONS(3453), - [anon_sym_alignas] = ACTIONS(3453), - [anon_sym_explicit] = ACTIONS(3453), - [anon_sym_typename] = ACTIONS(3453), - [anon_sym_template] = ACTIONS(3453), - [anon_sym_operator] = ACTIONS(3453), - [anon_sym_friend] = ACTIONS(3453), - [anon_sym_public] = ACTIONS(3453), - [anon_sym_private] = ACTIONS(3453), - [anon_sym_protected] = ACTIONS(3453), - [anon_sym_using] = ACTIONS(3453), - [anon_sym_static_assert] = ACTIONS(3453), + [2081] = { + [sym_identifier] = ACTIONS(3577), + [aux_sym_preproc_def_token1] = ACTIONS(3577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3579), + [aux_sym_preproc_if_token1] = ACTIONS(3577), + [aux_sym_preproc_if_token2] = ACTIONS(3577), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3577), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3577), + [aux_sym_preproc_else_token1] = ACTIONS(3577), + [aux_sym_preproc_elif_token1] = ACTIONS(3577), + [sym_preproc_directive] = ACTIONS(3577), + [anon_sym_LPAREN2] = ACTIONS(3579), + [anon_sym_TILDE] = ACTIONS(3579), + [anon_sym_STAR] = ACTIONS(3579), + [anon_sym_AMP_AMP] = ACTIONS(3579), + [anon_sym_AMP] = ACTIONS(3577), + [anon_sym___extension__] = ACTIONS(3577), + [anon_sym_typedef] = ACTIONS(3577), + [anon_sym_extern] = ACTIONS(3577), + [anon_sym___attribute__] = ACTIONS(3577), + [anon_sym_COLON_COLON] = ACTIONS(3579), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3579), + [anon_sym___declspec] = ACTIONS(3577), + [anon_sym___based] = ACTIONS(3577), + [anon_sym_signed] = ACTIONS(3577), + [anon_sym_unsigned] = ACTIONS(3577), + [anon_sym_long] = ACTIONS(3577), + [anon_sym_short] = ACTIONS(3577), + [anon_sym_LBRACK] = ACTIONS(3577), + [anon_sym_static] = ACTIONS(3577), + [anon_sym_register] = ACTIONS(3577), + [anon_sym_inline] = ACTIONS(3577), + [anon_sym___inline] = ACTIONS(3577), + [anon_sym___inline__] = ACTIONS(3577), + [anon_sym___forceinline] = ACTIONS(3577), + [anon_sym_thread_local] = ACTIONS(3577), + [anon_sym___thread] = ACTIONS(3577), + [anon_sym_const] = ACTIONS(3577), + [anon_sym_constexpr] = ACTIONS(3577), + [anon_sym_volatile] = ACTIONS(3577), + [anon_sym_restrict] = ACTIONS(3577), + [anon_sym___restrict__] = ACTIONS(3577), + [anon_sym__Atomic] = ACTIONS(3577), + [anon_sym__Noreturn] = ACTIONS(3577), + [anon_sym_noreturn] = ACTIONS(3577), + [anon_sym_mutable] = ACTIONS(3577), + [anon_sym_constinit] = ACTIONS(3577), + [anon_sym_consteval] = ACTIONS(3577), + [sym_primitive_type] = ACTIONS(3577), + [anon_sym_enum] = ACTIONS(3577), + [anon_sym_class] = ACTIONS(3577), + [anon_sym_struct] = ACTIONS(3577), + [anon_sym_union] = ACTIONS(3577), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3577), + [anon_sym_decltype] = ACTIONS(3577), + [anon_sym_virtual] = ACTIONS(3577), + [anon_sym_alignas] = ACTIONS(3577), + [anon_sym_explicit] = ACTIONS(3577), + [anon_sym_typename] = ACTIONS(3577), + [anon_sym_template] = ACTIONS(3577), + [anon_sym_operator] = ACTIONS(3577), + [anon_sym_friend] = ACTIONS(3577), + [anon_sym_public] = ACTIONS(3577), + [anon_sym_private] = ACTIONS(3577), + [anon_sym_protected] = ACTIONS(3577), + [anon_sym_using] = ACTIONS(3577), + [anon_sym_static_assert] = ACTIONS(3577), + [sym_semgrep_metavar] = ACTIONS(3579), }, - [2159] = { + [2082] = { [sym_identifier] = ACTIONS(3189), [aux_sym_preproc_def_token1] = ACTIONS(3189), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), [aux_sym_preproc_if_token1] = ACTIONS(3189), [aux_sym_preproc_if_token2] = ACTIONS(3189), [aux_sym_preproc_ifdef_token1] = ACTIONS(3189), @@ -310301,282 +293876,712 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(3189), [anon_sym_using] = ACTIONS(3189), [anon_sym_static_assert] = ACTIONS(3189), + [sym_semgrep_metavar] = ACTIONS(3191), }, - [2160] = { - [sym_identifier] = ACTIONS(3078), - [aux_sym_preproc_def_token1] = ACTIONS(3078), - [anon_sym_COMMA] = ACTIONS(3187), - [aux_sym_preproc_if_token1] = ACTIONS(3078), - [aux_sym_preproc_if_token2] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3078), - [sym_preproc_directive] = ACTIONS(3078), - [anon_sym_LPAREN2] = ACTIONS(3080), - [anon_sym_TILDE] = ACTIONS(3080), - [anon_sym_STAR] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym_SEMI] = ACTIONS(3187), - [anon_sym___extension__] = ACTIONS(3078), - [anon_sym_typedef] = ACTIONS(3078), - [anon_sym_extern] = ACTIONS(3078), - [anon_sym___attribute__] = ACTIONS(5746), - [anon_sym_COLON_COLON] = ACTIONS(3080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3080), - [anon_sym___declspec] = ACTIONS(3078), - [anon_sym___based] = ACTIONS(3078), - [anon_sym_signed] = ACTIONS(3078), - [anon_sym_unsigned] = ACTIONS(3078), - [anon_sym_long] = ACTIONS(3078), - [anon_sym_short] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_static] = ACTIONS(3078), - [anon_sym_register] = ACTIONS(3078), - [anon_sym_inline] = ACTIONS(3078), - [anon_sym___inline] = ACTIONS(3078), - [anon_sym___inline__] = ACTIONS(3078), - [anon_sym___forceinline] = ACTIONS(3078), - [anon_sym_thread_local] = ACTIONS(3078), - [anon_sym___thread] = ACTIONS(3078), - [anon_sym_const] = ACTIONS(3078), - [anon_sym_constexpr] = ACTIONS(3078), - [anon_sym_volatile] = ACTIONS(3078), - [anon_sym_restrict] = ACTIONS(3078), - [anon_sym___restrict__] = ACTIONS(3078), - [anon_sym__Atomic] = ACTIONS(3078), - [anon_sym__Noreturn] = ACTIONS(3078), - [anon_sym_noreturn] = ACTIONS(3078), - [anon_sym_mutable] = ACTIONS(3078), - [anon_sym_constinit] = ACTIONS(3078), - [anon_sym_consteval] = ACTIONS(3078), - [sym_primitive_type] = ACTIONS(3078), - [anon_sym_enum] = ACTIONS(3078), - [anon_sym_class] = ACTIONS(3078), - [anon_sym_struct] = ACTIONS(3078), - [anon_sym_union] = ACTIONS(3078), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3078), - [anon_sym_decltype] = ACTIONS(3078), - [anon_sym_virtual] = ACTIONS(3078), - [anon_sym_alignas] = ACTIONS(3078), - [anon_sym_explicit] = ACTIONS(3078), - [anon_sym_typename] = ACTIONS(3078), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_operator] = ACTIONS(3078), - [anon_sym_friend] = ACTIONS(3078), - [anon_sym_public] = ACTIONS(3078), - [anon_sym_private] = ACTIONS(3078), - [anon_sym_protected] = ACTIONS(3078), - [anon_sym_using] = ACTIONS(3078), - [anon_sym_static_assert] = ACTIONS(3078), + [2083] = { + [sym_identifier] = ACTIONS(3581), + [aux_sym_preproc_def_token1] = ACTIONS(3581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3583), + [aux_sym_preproc_if_token1] = ACTIONS(3581), + [aux_sym_preproc_if_token2] = ACTIONS(3581), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3581), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3581), + [aux_sym_preproc_else_token1] = ACTIONS(3581), + [aux_sym_preproc_elif_token1] = ACTIONS(3581), + [sym_preproc_directive] = ACTIONS(3581), + [anon_sym_LPAREN2] = ACTIONS(3583), + [anon_sym_TILDE] = ACTIONS(3583), + [anon_sym_STAR] = ACTIONS(3583), + [anon_sym_AMP_AMP] = ACTIONS(3583), + [anon_sym_AMP] = ACTIONS(3581), + [anon_sym___extension__] = ACTIONS(3581), + [anon_sym_typedef] = ACTIONS(3581), + [anon_sym_extern] = ACTIONS(3581), + [anon_sym___attribute__] = ACTIONS(3581), + [anon_sym_COLON_COLON] = ACTIONS(3583), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3583), + [anon_sym___declspec] = ACTIONS(3581), + [anon_sym___based] = ACTIONS(3581), + [anon_sym_signed] = ACTIONS(3581), + [anon_sym_unsigned] = ACTIONS(3581), + [anon_sym_long] = ACTIONS(3581), + [anon_sym_short] = ACTIONS(3581), + [anon_sym_LBRACK] = ACTIONS(3581), + [anon_sym_static] = ACTIONS(3581), + [anon_sym_register] = ACTIONS(3581), + [anon_sym_inline] = ACTIONS(3581), + [anon_sym___inline] = ACTIONS(3581), + [anon_sym___inline__] = ACTIONS(3581), + [anon_sym___forceinline] = ACTIONS(3581), + [anon_sym_thread_local] = ACTIONS(3581), + [anon_sym___thread] = ACTIONS(3581), + [anon_sym_const] = ACTIONS(3581), + [anon_sym_constexpr] = ACTIONS(3581), + [anon_sym_volatile] = ACTIONS(3581), + [anon_sym_restrict] = ACTIONS(3581), + [anon_sym___restrict__] = ACTIONS(3581), + [anon_sym__Atomic] = ACTIONS(3581), + [anon_sym__Noreturn] = ACTIONS(3581), + [anon_sym_noreturn] = ACTIONS(3581), + [anon_sym_mutable] = ACTIONS(3581), + [anon_sym_constinit] = ACTIONS(3581), + [anon_sym_consteval] = ACTIONS(3581), + [sym_primitive_type] = ACTIONS(3581), + [anon_sym_enum] = ACTIONS(3581), + [anon_sym_class] = ACTIONS(3581), + [anon_sym_struct] = ACTIONS(3581), + [anon_sym_union] = ACTIONS(3581), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3581), + [anon_sym_decltype] = ACTIONS(3581), + [anon_sym_virtual] = ACTIONS(3581), + [anon_sym_alignas] = ACTIONS(3581), + [anon_sym_explicit] = ACTIONS(3581), + [anon_sym_typename] = ACTIONS(3581), + [anon_sym_template] = ACTIONS(3581), + [anon_sym_operator] = ACTIONS(3581), + [anon_sym_friend] = ACTIONS(3581), + [anon_sym_public] = ACTIONS(3581), + [anon_sym_private] = ACTIONS(3581), + [anon_sym_protected] = ACTIONS(3581), + [anon_sym_using] = ACTIONS(3581), + [anon_sym_static_assert] = ACTIONS(3581), + [sym_semgrep_metavar] = ACTIONS(3583), }, - [2161] = { - [sym_identifier] = ACTIONS(5792), - [aux_sym_preproc_def_token1] = ACTIONS(5792), - [aux_sym_preproc_if_token1] = ACTIONS(5792), - [aux_sym_preproc_if_token2] = ACTIONS(5792), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5792), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5792), - [aux_sym_preproc_else_token1] = ACTIONS(5792), - [aux_sym_preproc_elif_token1] = ACTIONS(5792), - [sym_preproc_directive] = ACTIONS(5792), - [anon_sym_LPAREN2] = ACTIONS(5794), - [anon_sym_TILDE] = ACTIONS(5794), - [anon_sym_STAR] = ACTIONS(5794), - [anon_sym_AMP_AMP] = ACTIONS(5794), - [anon_sym_AMP] = ACTIONS(5792), - [anon_sym___extension__] = ACTIONS(5792), - [anon_sym_typedef] = ACTIONS(5792), - [anon_sym_extern] = ACTIONS(5792), - [anon_sym___attribute__] = ACTIONS(5792), - [anon_sym_COLON_COLON] = ACTIONS(5794), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5794), - [anon_sym___declspec] = ACTIONS(5792), - [anon_sym___based] = ACTIONS(5792), - [anon_sym_signed] = ACTIONS(5792), - [anon_sym_unsigned] = ACTIONS(5792), - [anon_sym_long] = ACTIONS(5792), - [anon_sym_short] = ACTIONS(5792), - [anon_sym_LBRACK] = ACTIONS(5792), - [anon_sym_static] = ACTIONS(5792), - [anon_sym_register] = ACTIONS(5792), - [anon_sym_inline] = ACTIONS(5792), - [anon_sym___inline] = ACTIONS(5792), - [anon_sym___inline__] = ACTIONS(5792), - [anon_sym___forceinline] = ACTIONS(5792), - [anon_sym_thread_local] = ACTIONS(5792), - [anon_sym___thread] = ACTIONS(5792), - [anon_sym_const] = ACTIONS(5792), - [anon_sym_constexpr] = ACTIONS(5792), - [anon_sym_volatile] = ACTIONS(5792), - [anon_sym_restrict] = ACTIONS(5792), - [anon_sym___restrict__] = ACTIONS(5792), - [anon_sym__Atomic] = ACTIONS(5792), - [anon_sym__Noreturn] = ACTIONS(5792), - [anon_sym_noreturn] = ACTIONS(5792), - [anon_sym_mutable] = ACTIONS(5792), - [anon_sym_constinit] = ACTIONS(5792), - [anon_sym_consteval] = ACTIONS(5792), - [sym_primitive_type] = ACTIONS(5792), - [anon_sym_enum] = ACTIONS(5792), - [anon_sym_class] = ACTIONS(5792), - [anon_sym_struct] = ACTIONS(5792), - [anon_sym_union] = ACTIONS(5792), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5792), - [anon_sym_decltype] = ACTIONS(5792), - [anon_sym_virtual] = ACTIONS(5792), - [anon_sym_alignas] = ACTIONS(5792), - [anon_sym_explicit] = ACTIONS(5792), - [anon_sym_typename] = ACTIONS(5792), - [anon_sym_template] = ACTIONS(5792), - [anon_sym_operator] = ACTIONS(5792), - [anon_sym_friend] = ACTIONS(5792), - [anon_sym_public] = ACTIONS(5792), - [anon_sym_private] = ACTIONS(5792), - [anon_sym_protected] = ACTIONS(5792), - [anon_sym_using] = ACTIONS(5792), - [anon_sym_static_assert] = ACTIONS(5792), + [2084] = { + [sym_identifier] = ACTIONS(3087), + [aux_sym_preproc_def_token1] = ACTIONS(3087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [aux_sym_preproc_if_token1] = ACTIONS(3087), + [aux_sym_preproc_if_token2] = ACTIONS(3087), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3087), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3087), + [aux_sym_preproc_else_token1] = ACTIONS(3087), + [aux_sym_preproc_elif_token1] = ACTIONS(3087), + [sym_preproc_directive] = ACTIONS(3087), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_TILDE] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_typedef] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3089), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3089), + [anon_sym___declspec] = ACTIONS(3087), + [anon_sym___based] = ACTIONS(3087), + [anon_sym_signed] = ACTIONS(3087), + [anon_sym_unsigned] = ACTIONS(3087), + [anon_sym_long] = ACTIONS(3087), + [anon_sym_short] = ACTIONS(3087), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_register] = ACTIONS(3087), + [anon_sym_inline] = ACTIONS(3087), + [anon_sym___inline] = ACTIONS(3087), + [anon_sym___inline__] = ACTIONS(3087), + [anon_sym___forceinline] = ACTIONS(3087), + [anon_sym_thread_local] = ACTIONS(3087), + [anon_sym___thread] = ACTIONS(3087), + [anon_sym_const] = ACTIONS(3087), + [anon_sym_constexpr] = ACTIONS(3087), + [anon_sym_volatile] = ACTIONS(3087), + [anon_sym_restrict] = ACTIONS(3087), + [anon_sym___restrict__] = ACTIONS(3087), + [anon_sym__Atomic] = ACTIONS(3087), + [anon_sym__Noreturn] = ACTIONS(3087), + [anon_sym_noreturn] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [sym_primitive_type] = ACTIONS(3087), + [anon_sym_enum] = ACTIONS(3087), + [anon_sym_class] = ACTIONS(3087), + [anon_sym_struct] = ACTIONS(3087), + [anon_sym_union] = ACTIONS(3087), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym_explicit] = ACTIONS(3087), + [anon_sym_typename] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [anon_sym_friend] = ACTIONS(3087), + [anon_sym_public] = ACTIONS(3087), + [anon_sym_private] = ACTIONS(3087), + [anon_sym_protected] = ACTIONS(3087), + [anon_sym_using] = ACTIONS(3087), + [anon_sym_static_assert] = ACTIONS(3087), + [sym_semgrep_metavar] = ACTIONS(3089), }, - [2162] = { - [sym_identifier] = ACTIONS(5892), - [aux_sym_preproc_def_token1] = ACTIONS(5892), - [aux_sym_preproc_if_token1] = ACTIONS(5892), - [aux_sym_preproc_if_token2] = ACTIONS(5892), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5892), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5892), - [aux_sym_preproc_else_token1] = ACTIONS(5892), - [aux_sym_preproc_elif_token1] = ACTIONS(5892), - [sym_preproc_directive] = ACTIONS(5892), - [anon_sym_LPAREN2] = ACTIONS(5894), - [anon_sym_TILDE] = ACTIONS(5894), - [anon_sym_STAR] = ACTIONS(5894), - [anon_sym_AMP_AMP] = ACTIONS(5894), - [anon_sym_AMP] = ACTIONS(5892), - [anon_sym___extension__] = ACTIONS(5892), - [anon_sym_typedef] = ACTIONS(5892), - [anon_sym_extern] = ACTIONS(5892), - [anon_sym___attribute__] = ACTIONS(5892), - [anon_sym_COLON_COLON] = ACTIONS(5894), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5894), - [anon_sym___declspec] = ACTIONS(5892), - [anon_sym___based] = ACTIONS(5892), - [anon_sym_signed] = ACTIONS(5892), - [anon_sym_unsigned] = ACTIONS(5892), - [anon_sym_long] = ACTIONS(5892), - [anon_sym_short] = ACTIONS(5892), - [anon_sym_LBRACK] = ACTIONS(5892), - [anon_sym_static] = ACTIONS(5892), - [anon_sym_register] = ACTIONS(5892), - [anon_sym_inline] = ACTIONS(5892), - [anon_sym___inline] = ACTIONS(5892), - [anon_sym___inline__] = ACTIONS(5892), - [anon_sym___forceinline] = ACTIONS(5892), - [anon_sym_thread_local] = ACTIONS(5892), - [anon_sym___thread] = ACTIONS(5892), - [anon_sym_const] = ACTIONS(5892), - [anon_sym_constexpr] = ACTIONS(5892), - [anon_sym_volatile] = ACTIONS(5892), - [anon_sym_restrict] = ACTIONS(5892), - [anon_sym___restrict__] = ACTIONS(5892), - [anon_sym__Atomic] = ACTIONS(5892), - [anon_sym__Noreturn] = ACTIONS(5892), - [anon_sym_noreturn] = ACTIONS(5892), - [anon_sym_mutable] = ACTIONS(5892), - [anon_sym_constinit] = ACTIONS(5892), - [anon_sym_consteval] = ACTIONS(5892), - [sym_primitive_type] = ACTIONS(5892), - [anon_sym_enum] = ACTIONS(5892), - [anon_sym_class] = ACTIONS(5892), - [anon_sym_struct] = ACTIONS(5892), - [anon_sym_union] = ACTIONS(5892), + [2085] = { + [sym_identifier] = ACTIONS(3587), + [aux_sym_preproc_def_token1] = ACTIONS(3587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3589), + [aux_sym_preproc_if_token1] = ACTIONS(3587), + [aux_sym_preproc_if_token2] = ACTIONS(3587), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3587), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3587), + [aux_sym_preproc_else_token1] = ACTIONS(3587), + [aux_sym_preproc_elif_token1] = ACTIONS(3587), + [sym_preproc_directive] = ACTIONS(3587), + [anon_sym_LPAREN2] = ACTIONS(3589), + [anon_sym_TILDE] = ACTIONS(3589), + [anon_sym_STAR] = ACTIONS(3589), + [anon_sym_AMP_AMP] = ACTIONS(3589), + [anon_sym_AMP] = ACTIONS(3587), + [anon_sym___extension__] = ACTIONS(3587), + [anon_sym_typedef] = ACTIONS(3587), + [anon_sym_extern] = ACTIONS(3587), + [anon_sym___attribute__] = ACTIONS(3587), + [anon_sym_COLON_COLON] = ACTIONS(3589), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3589), + [anon_sym___declspec] = ACTIONS(3587), + [anon_sym___based] = ACTIONS(3587), + [anon_sym_signed] = ACTIONS(3587), + [anon_sym_unsigned] = ACTIONS(3587), + [anon_sym_long] = ACTIONS(3587), + [anon_sym_short] = ACTIONS(3587), + [anon_sym_LBRACK] = ACTIONS(3587), + [anon_sym_static] = ACTIONS(3587), + [anon_sym_register] = ACTIONS(3587), + [anon_sym_inline] = ACTIONS(3587), + [anon_sym___inline] = ACTIONS(3587), + [anon_sym___inline__] = ACTIONS(3587), + [anon_sym___forceinline] = ACTIONS(3587), + [anon_sym_thread_local] = ACTIONS(3587), + [anon_sym___thread] = ACTIONS(3587), + [anon_sym_const] = ACTIONS(3587), + [anon_sym_constexpr] = ACTIONS(3587), + [anon_sym_volatile] = ACTIONS(3587), + [anon_sym_restrict] = ACTIONS(3587), + [anon_sym___restrict__] = ACTIONS(3587), + [anon_sym__Atomic] = ACTIONS(3587), + [anon_sym__Noreturn] = ACTIONS(3587), + [anon_sym_noreturn] = ACTIONS(3587), + [anon_sym_mutable] = ACTIONS(3587), + [anon_sym_constinit] = ACTIONS(3587), + [anon_sym_consteval] = ACTIONS(3587), + [sym_primitive_type] = ACTIONS(3587), + [anon_sym_enum] = ACTIONS(3587), + [anon_sym_class] = ACTIONS(3587), + [anon_sym_struct] = ACTIONS(3587), + [anon_sym_union] = ACTIONS(3587), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3587), + [anon_sym_decltype] = ACTIONS(3587), + [anon_sym_virtual] = ACTIONS(3587), + [anon_sym_alignas] = ACTIONS(3587), + [anon_sym_explicit] = ACTIONS(3587), + [anon_sym_typename] = ACTIONS(3587), + [anon_sym_template] = ACTIONS(3587), + [anon_sym_operator] = ACTIONS(3587), + [anon_sym_friend] = ACTIONS(3587), + [anon_sym_public] = ACTIONS(3587), + [anon_sym_private] = ACTIONS(3587), + [anon_sym_protected] = ACTIONS(3587), + [anon_sym_using] = ACTIONS(3587), + [anon_sym_static_assert] = ACTIONS(3587), + [sym_semgrep_metavar] = ACTIONS(3589), + }, + [2086] = { + [sym_identifier] = ACTIONS(3609), + [aux_sym_preproc_def_token1] = ACTIONS(3609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3611), + [aux_sym_preproc_if_token1] = ACTIONS(3609), + [aux_sym_preproc_if_token2] = ACTIONS(3609), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3609), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3609), + [aux_sym_preproc_else_token1] = ACTIONS(3609), + [aux_sym_preproc_elif_token1] = ACTIONS(3609), + [sym_preproc_directive] = ACTIONS(3609), + [anon_sym_LPAREN2] = ACTIONS(3611), + [anon_sym_TILDE] = ACTIONS(3611), + [anon_sym_STAR] = ACTIONS(3611), + [anon_sym_AMP_AMP] = ACTIONS(3611), + [anon_sym_AMP] = ACTIONS(3609), + [anon_sym___extension__] = ACTIONS(3609), + [anon_sym_typedef] = ACTIONS(3609), + [anon_sym_extern] = ACTIONS(3609), + [anon_sym___attribute__] = ACTIONS(3609), + [anon_sym_COLON_COLON] = ACTIONS(3611), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3611), + [anon_sym___declspec] = ACTIONS(3609), + [anon_sym___based] = ACTIONS(3609), + [anon_sym_signed] = ACTIONS(3609), + [anon_sym_unsigned] = ACTIONS(3609), + [anon_sym_long] = ACTIONS(3609), + [anon_sym_short] = ACTIONS(3609), + [anon_sym_LBRACK] = ACTIONS(3609), + [anon_sym_static] = ACTIONS(3609), + [anon_sym_register] = ACTIONS(3609), + [anon_sym_inline] = ACTIONS(3609), + [anon_sym___inline] = ACTIONS(3609), + [anon_sym___inline__] = ACTIONS(3609), + [anon_sym___forceinline] = ACTIONS(3609), + [anon_sym_thread_local] = ACTIONS(3609), + [anon_sym___thread] = ACTIONS(3609), + [anon_sym_const] = ACTIONS(3609), + [anon_sym_constexpr] = ACTIONS(3609), + [anon_sym_volatile] = ACTIONS(3609), + [anon_sym_restrict] = ACTIONS(3609), + [anon_sym___restrict__] = ACTIONS(3609), + [anon_sym__Atomic] = ACTIONS(3609), + [anon_sym__Noreturn] = ACTIONS(3609), + [anon_sym_noreturn] = ACTIONS(3609), + [anon_sym_mutable] = ACTIONS(3609), + [anon_sym_constinit] = ACTIONS(3609), + [anon_sym_consteval] = ACTIONS(3609), + [sym_primitive_type] = ACTIONS(3609), + [anon_sym_enum] = ACTIONS(3609), + [anon_sym_class] = ACTIONS(3609), + [anon_sym_struct] = ACTIONS(3609), + [anon_sym_union] = ACTIONS(3609), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3609), + [anon_sym_decltype] = ACTIONS(3609), + [anon_sym_virtual] = ACTIONS(3609), + [anon_sym_alignas] = ACTIONS(3609), + [anon_sym_explicit] = ACTIONS(3609), + [anon_sym_typename] = ACTIONS(3609), + [anon_sym_template] = ACTIONS(3609), + [anon_sym_operator] = ACTIONS(3609), + [anon_sym_friend] = ACTIONS(3609), + [anon_sym_public] = ACTIONS(3609), + [anon_sym_private] = ACTIONS(3609), + [anon_sym_protected] = ACTIONS(3609), + [anon_sym_using] = ACTIONS(3609), + [anon_sym_static_assert] = ACTIONS(3609), + [sym_semgrep_metavar] = ACTIONS(3611), + }, + [2087] = { + [sym_identifier] = ACTIONS(3219), + [aux_sym_preproc_def_token1] = ACTIONS(3219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3221), + [aux_sym_preproc_if_token1] = ACTIONS(3219), + [aux_sym_preproc_if_token2] = ACTIONS(3219), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3219), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3219), + [aux_sym_preproc_else_token1] = ACTIONS(3219), + [aux_sym_preproc_elif_token1] = ACTIONS(3219), + [sym_preproc_directive] = ACTIONS(3219), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3221), + [anon_sym_STAR] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_AMP] = ACTIONS(3219), + [anon_sym___extension__] = ACTIONS(3219), + [anon_sym_typedef] = ACTIONS(3219), + [anon_sym_extern] = ACTIONS(3219), + [anon_sym___attribute__] = ACTIONS(3219), + [anon_sym_COLON_COLON] = ACTIONS(3221), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3221), + [anon_sym___declspec] = ACTIONS(3219), + [anon_sym___based] = ACTIONS(3219), + [anon_sym_signed] = ACTIONS(3219), + [anon_sym_unsigned] = ACTIONS(3219), + [anon_sym_long] = ACTIONS(3219), + [anon_sym_short] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_register] = ACTIONS(3219), + [anon_sym_inline] = ACTIONS(3219), + [anon_sym___inline] = ACTIONS(3219), + [anon_sym___inline__] = ACTIONS(3219), + [anon_sym___forceinline] = ACTIONS(3219), + [anon_sym_thread_local] = ACTIONS(3219), + [anon_sym___thread] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_constexpr] = ACTIONS(3219), + [anon_sym_volatile] = ACTIONS(3219), + [anon_sym_restrict] = ACTIONS(3219), + [anon_sym___restrict__] = ACTIONS(3219), + [anon_sym__Atomic] = ACTIONS(3219), + [anon_sym__Noreturn] = ACTIONS(3219), + [anon_sym_noreturn] = ACTIONS(3219), + [anon_sym_mutable] = ACTIONS(3219), + [anon_sym_constinit] = ACTIONS(3219), + [anon_sym_consteval] = ACTIONS(3219), + [sym_primitive_type] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_struct] = ACTIONS(3219), + [anon_sym_union] = ACTIONS(3219), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5892), - [anon_sym_decltype] = ACTIONS(5892), - [anon_sym_virtual] = ACTIONS(5892), - [anon_sym_alignas] = ACTIONS(5892), - [anon_sym_explicit] = ACTIONS(5892), - [anon_sym_typename] = ACTIONS(5892), - [anon_sym_template] = ACTIONS(5892), - [anon_sym_operator] = ACTIONS(5892), - [anon_sym_friend] = ACTIONS(5892), - [anon_sym_public] = ACTIONS(5892), - [anon_sym_private] = ACTIONS(5892), - [anon_sym_protected] = ACTIONS(5892), - [anon_sym_using] = ACTIONS(5892), - [anon_sym_static_assert] = ACTIONS(5892), + [sym_auto] = ACTIONS(3219), + [anon_sym_decltype] = ACTIONS(3219), + [anon_sym_virtual] = ACTIONS(3219), + [anon_sym_alignas] = ACTIONS(3219), + [anon_sym_explicit] = ACTIONS(3219), + [anon_sym_typename] = ACTIONS(3219), + [anon_sym_template] = ACTIONS(3219), + [anon_sym_operator] = ACTIONS(3219), + [anon_sym_friend] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_static_assert] = ACTIONS(3219), + [sym_semgrep_metavar] = ACTIONS(3221), }, - [2163] = { - [sym_identifier] = ACTIONS(5938), - [aux_sym_preproc_def_token1] = ACTIONS(5938), - [aux_sym_preproc_if_token1] = ACTIONS(5938), - [aux_sym_preproc_if_token2] = ACTIONS(5938), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5938), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5938), - [aux_sym_preproc_else_token1] = ACTIONS(5938), - [aux_sym_preproc_elif_token1] = ACTIONS(5938), - [sym_preproc_directive] = ACTIONS(5938), - [anon_sym_LPAREN2] = ACTIONS(5940), - [anon_sym_TILDE] = ACTIONS(5940), - [anon_sym_STAR] = ACTIONS(5940), - [anon_sym_AMP_AMP] = ACTIONS(5940), - [anon_sym_AMP] = ACTIONS(5938), - [anon_sym___extension__] = ACTIONS(5938), - [anon_sym_typedef] = ACTIONS(5938), - [anon_sym_extern] = ACTIONS(5938), - [anon_sym___attribute__] = ACTIONS(5938), - [anon_sym_COLON_COLON] = ACTIONS(5940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5940), - [anon_sym___declspec] = ACTIONS(5938), - [anon_sym___based] = ACTIONS(5938), - [anon_sym_signed] = ACTIONS(5938), - [anon_sym_unsigned] = ACTIONS(5938), - [anon_sym_long] = ACTIONS(5938), - [anon_sym_short] = ACTIONS(5938), - [anon_sym_LBRACK] = ACTIONS(5938), - [anon_sym_static] = ACTIONS(5938), - [anon_sym_register] = ACTIONS(5938), - [anon_sym_inline] = ACTIONS(5938), - [anon_sym___inline] = ACTIONS(5938), - [anon_sym___inline__] = ACTIONS(5938), - [anon_sym___forceinline] = ACTIONS(5938), - [anon_sym_thread_local] = ACTIONS(5938), - [anon_sym___thread] = ACTIONS(5938), - [anon_sym_const] = ACTIONS(5938), - [anon_sym_constexpr] = ACTIONS(5938), - [anon_sym_volatile] = ACTIONS(5938), - [anon_sym_restrict] = ACTIONS(5938), - [anon_sym___restrict__] = ACTIONS(5938), - [anon_sym__Atomic] = ACTIONS(5938), - [anon_sym__Noreturn] = ACTIONS(5938), - [anon_sym_noreturn] = ACTIONS(5938), - [anon_sym_mutable] = ACTIONS(5938), - [anon_sym_constinit] = ACTIONS(5938), - [anon_sym_consteval] = ACTIONS(5938), - [sym_primitive_type] = ACTIONS(5938), - [anon_sym_enum] = ACTIONS(5938), - [anon_sym_class] = ACTIONS(5938), - [anon_sym_struct] = ACTIONS(5938), - [anon_sym_union] = ACTIONS(5938), + [2088] = { + [sym_identifier] = ACTIONS(3223), + [aux_sym_preproc_def_token1] = ACTIONS(3223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3225), + [aux_sym_preproc_if_token1] = ACTIONS(3223), + [aux_sym_preproc_if_token2] = ACTIONS(3223), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3223), + [aux_sym_preproc_else_token1] = ACTIONS(3223), + [aux_sym_preproc_elif_token1] = ACTIONS(3223), + [sym_preproc_directive] = ACTIONS(3223), + [anon_sym_LPAREN2] = ACTIONS(3225), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_STAR] = ACTIONS(3225), + [anon_sym_AMP_AMP] = ACTIONS(3225), + [anon_sym_AMP] = ACTIONS(3223), + [anon_sym___extension__] = ACTIONS(3223), + [anon_sym_typedef] = ACTIONS(3223), + [anon_sym_extern] = ACTIONS(3223), + [anon_sym___attribute__] = ACTIONS(3223), + [anon_sym_COLON_COLON] = ACTIONS(3225), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3225), + [anon_sym___declspec] = ACTIONS(3223), + [anon_sym___based] = ACTIONS(3223), + [anon_sym_signed] = ACTIONS(3223), + [anon_sym_unsigned] = ACTIONS(3223), + [anon_sym_long] = ACTIONS(3223), + [anon_sym_short] = ACTIONS(3223), + [anon_sym_LBRACK] = ACTIONS(3223), + [anon_sym_static] = ACTIONS(3223), + [anon_sym_register] = ACTIONS(3223), + [anon_sym_inline] = ACTIONS(3223), + [anon_sym___inline] = ACTIONS(3223), + [anon_sym___inline__] = ACTIONS(3223), + [anon_sym___forceinline] = ACTIONS(3223), + [anon_sym_thread_local] = ACTIONS(3223), + [anon_sym___thread] = ACTIONS(3223), + [anon_sym_const] = ACTIONS(3223), + [anon_sym_constexpr] = ACTIONS(3223), + [anon_sym_volatile] = ACTIONS(3223), + [anon_sym_restrict] = ACTIONS(3223), + [anon_sym___restrict__] = ACTIONS(3223), + [anon_sym__Atomic] = ACTIONS(3223), + [anon_sym__Noreturn] = ACTIONS(3223), + [anon_sym_noreturn] = ACTIONS(3223), + [anon_sym_mutable] = ACTIONS(3223), + [anon_sym_constinit] = ACTIONS(3223), + [anon_sym_consteval] = ACTIONS(3223), + [sym_primitive_type] = ACTIONS(3223), + [anon_sym_enum] = ACTIONS(3223), + [anon_sym_class] = ACTIONS(3223), + [anon_sym_struct] = ACTIONS(3223), + [anon_sym_union] = ACTIONS(3223), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5938), - [anon_sym_decltype] = ACTIONS(5938), - [anon_sym_virtual] = ACTIONS(5938), - [anon_sym_alignas] = ACTIONS(5938), - [anon_sym_explicit] = ACTIONS(5938), - [anon_sym_typename] = ACTIONS(5938), - [anon_sym_template] = ACTIONS(5938), - [anon_sym_operator] = ACTIONS(5938), - [anon_sym_friend] = ACTIONS(5938), - [anon_sym_public] = ACTIONS(5938), - [anon_sym_private] = ACTIONS(5938), - [anon_sym_protected] = ACTIONS(5938), - [anon_sym_using] = ACTIONS(5938), - [anon_sym_static_assert] = ACTIONS(5938), + [sym_auto] = ACTIONS(3223), + [anon_sym_decltype] = ACTIONS(3223), + [anon_sym_virtual] = ACTIONS(3223), + [anon_sym_alignas] = ACTIONS(3223), + [anon_sym_explicit] = ACTIONS(3223), + [anon_sym_typename] = ACTIONS(3223), + [anon_sym_template] = ACTIONS(3223), + [anon_sym_operator] = ACTIONS(3223), + [anon_sym_friend] = ACTIONS(3223), + [anon_sym_public] = ACTIONS(3223), + [anon_sym_private] = ACTIONS(3223), + [anon_sym_protected] = ACTIONS(3223), + [anon_sym_using] = ACTIONS(3223), + [anon_sym_static_assert] = ACTIONS(3223), + [sym_semgrep_metavar] = ACTIONS(3225), }, - [2164] = { + [2089] = { + [sym_identifier] = ACTIONS(3593), + [aux_sym_preproc_def_token1] = ACTIONS(3593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3595), + [aux_sym_preproc_if_token1] = ACTIONS(3593), + [aux_sym_preproc_if_token2] = ACTIONS(3593), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3593), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3593), + [aux_sym_preproc_else_token1] = ACTIONS(3593), + [aux_sym_preproc_elif_token1] = ACTIONS(3593), + [sym_preproc_directive] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(3595), + [anon_sym_STAR] = ACTIONS(3595), + [anon_sym_AMP_AMP] = ACTIONS(3595), + [anon_sym_AMP] = ACTIONS(3593), + [anon_sym___extension__] = ACTIONS(3593), + [anon_sym_typedef] = ACTIONS(3593), + [anon_sym_extern] = ACTIONS(3593), + [anon_sym___attribute__] = ACTIONS(3593), + [anon_sym_COLON_COLON] = ACTIONS(3595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3595), + [anon_sym___declspec] = ACTIONS(3593), + [anon_sym___based] = ACTIONS(3593), + [anon_sym_signed] = ACTIONS(3593), + [anon_sym_unsigned] = ACTIONS(3593), + [anon_sym_long] = ACTIONS(3593), + [anon_sym_short] = ACTIONS(3593), + [anon_sym_LBRACK] = ACTIONS(3593), + [anon_sym_static] = ACTIONS(3593), + [anon_sym_register] = ACTIONS(3593), + [anon_sym_inline] = ACTIONS(3593), + [anon_sym___inline] = ACTIONS(3593), + [anon_sym___inline__] = ACTIONS(3593), + [anon_sym___forceinline] = ACTIONS(3593), + [anon_sym_thread_local] = ACTIONS(3593), + [anon_sym___thread] = ACTIONS(3593), + [anon_sym_const] = ACTIONS(3593), + [anon_sym_constexpr] = ACTIONS(3593), + [anon_sym_volatile] = ACTIONS(3593), + [anon_sym_restrict] = ACTIONS(3593), + [anon_sym___restrict__] = ACTIONS(3593), + [anon_sym__Atomic] = ACTIONS(3593), + [anon_sym__Noreturn] = ACTIONS(3593), + [anon_sym_noreturn] = ACTIONS(3593), + [anon_sym_mutable] = ACTIONS(3593), + [anon_sym_constinit] = ACTIONS(3593), + [anon_sym_consteval] = ACTIONS(3593), + [sym_primitive_type] = ACTIONS(3593), + [anon_sym_enum] = ACTIONS(3593), + [anon_sym_class] = ACTIONS(3593), + [anon_sym_struct] = ACTIONS(3593), + [anon_sym_union] = ACTIONS(3593), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3593), + [anon_sym_decltype] = ACTIONS(3593), + [anon_sym_virtual] = ACTIONS(3593), + [anon_sym_alignas] = ACTIONS(3593), + [anon_sym_explicit] = ACTIONS(3593), + [anon_sym_typename] = ACTIONS(3593), + [anon_sym_template] = ACTIONS(3593), + [anon_sym_operator] = ACTIONS(3593), + [anon_sym_friend] = ACTIONS(3593), + [anon_sym_public] = ACTIONS(3593), + [anon_sym_private] = ACTIONS(3593), + [anon_sym_protected] = ACTIONS(3593), + [anon_sym_using] = ACTIONS(3593), + [anon_sym_static_assert] = ACTIONS(3593), + [sym_semgrep_metavar] = ACTIONS(3595), + }, + [2090] = { + [sym_identifier] = ACTIONS(2355), + [aux_sym_preproc_def_token1] = ACTIONS(2355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2353), + [anon_sym_COMMA] = ACTIONS(3211), + [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(2353), + [anon_sym_TILDE] = ACTIONS(2353), + [anon_sym_STAR] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(2353), + [anon_sym_AMP] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(3211), + [anon_sym___extension__] = ACTIONS(2355), + [anon_sym_typedef] = ACTIONS(2355), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym___attribute__] = ACTIONS(5680), + [anon_sym_COLON_COLON] = ACTIONS(2353), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), + [anon_sym___declspec] = ACTIONS(2355), + [anon_sym___based] = ACTIONS(2355), + [anon_sym_signed] = ACTIONS(2355), + [anon_sym_unsigned] = ACTIONS(2355), + [anon_sym_long] = ACTIONS(2355), + [anon_sym_short] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_static] = ACTIONS(2355), + [anon_sym_register] = ACTIONS(2355), + [anon_sym_inline] = ACTIONS(2355), + [anon_sym___inline] = ACTIONS(2355), + [anon_sym___inline__] = ACTIONS(2355), + [anon_sym___forceinline] = ACTIONS(2355), + [anon_sym_thread_local] = ACTIONS(2355), + [anon_sym___thread] = ACTIONS(2355), + [anon_sym_const] = ACTIONS(2355), + [anon_sym_constexpr] = ACTIONS(2355), + [anon_sym_volatile] = ACTIONS(2355), + [anon_sym_restrict] = ACTIONS(2355), + [anon_sym___restrict__] = ACTIONS(2355), + [anon_sym__Atomic] = ACTIONS(2355), + [anon_sym__Noreturn] = ACTIONS(2355), + [anon_sym_noreturn] = ACTIONS(2355), + [anon_sym_mutable] = ACTIONS(2355), + [anon_sym_constinit] = ACTIONS(2355), + [anon_sym_consteval] = 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), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2355), + [anon_sym_decltype] = ACTIONS(2355), + [anon_sym_virtual] = ACTIONS(2355), + [anon_sym_alignas] = ACTIONS(2355), + [anon_sym_explicit] = ACTIONS(2355), + [anon_sym_typename] = ACTIONS(2355), + [anon_sym_template] = ACTIONS(2355), + [anon_sym_operator] = ACTIONS(2355), + [anon_sym_friend] = ACTIONS(2355), + [anon_sym_public] = ACTIONS(2355), + [anon_sym_private] = ACTIONS(2355), + [anon_sym_protected] = ACTIONS(2355), + [anon_sym_using] = ACTIONS(2355), + [anon_sym_static_assert] = ACTIONS(2355), + [sym_semgrep_metavar] = ACTIONS(2353), + }, + [2091] = { + [sym_template_argument_list] = STATE(2220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5378), + [anon_sym_COMMA] = ACTIONS(5378), + [anon_sym_LPAREN2] = ACTIONS(5378), + [anon_sym_DASH] = ACTIONS(5383), + [anon_sym_PLUS] = ACTIONS(5383), + [anon_sym_STAR] = ACTIONS(5385), + [anon_sym_SLASH] = ACTIONS(5383), + [anon_sym_PERCENT] = ACTIONS(5383), + [anon_sym_PIPE_PIPE] = ACTIONS(5376), + [anon_sym_AMP_AMP] = ACTIONS(5378), + [anon_sym_PIPE] = ACTIONS(5383), + [anon_sym_CARET] = ACTIONS(5383), + [anon_sym_AMP] = ACTIONS(5385), + [anon_sym_EQ_EQ] = ACTIONS(5376), + [anon_sym_BANG_EQ] = ACTIONS(5376), + [anon_sym_GT] = ACTIONS(5383), + [anon_sym_GT_EQ] = ACTIONS(5383), + [anon_sym_LT_EQ] = ACTIONS(5383), + [anon_sym_LT] = ACTIONS(5949), + [anon_sym_LT_LT] = ACTIONS(5383), + [anon_sym_GT_GT] = ACTIONS(5383), + [anon_sym___extension__] = ACTIONS(5381), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(5381), + [anon_sym_LBRACK] = ACTIONS(5378), + [anon_sym_EQ] = ACTIONS(5383), + [anon_sym_const] = ACTIONS(5374), + [anon_sym_constexpr] = ACTIONS(5381), + [anon_sym_volatile] = ACTIONS(5381), + [anon_sym_restrict] = ACTIONS(5381), + [anon_sym___restrict__] = ACTIONS(5381), + [anon_sym__Atomic] = ACTIONS(5381), + [anon_sym__Noreturn] = ACTIONS(5381), + [anon_sym_noreturn] = ACTIONS(5381), + [anon_sym_mutable] = ACTIONS(5381), + [anon_sym_constinit] = ACTIONS(5381), + [anon_sym_consteval] = ACTIONS(5381), + [anon_sym_QMARK] = ACTIONS(5376), + [anon_sym_STAR_EQ] = ACTIONS(5376), + [anon_sym_SLASH_EQ] = ACTIONS(5376), + [anon_sym_PERCENT_EQ] = ACTIONS(5376), + [anon_sym_PLUS_EQ] = ACTIONS(5376), + [anon_sym_DASH_EQ] = ACTIONS(5376), + [anon_sym_LT_LT_EQ] = ACTIONS(5376), + [anon_sym_GT_GT_EQ] = ACTIONS(5383), + [anon_sym_AMP_EQ] = ACTIONS(5376), + [anon_sym_CARET_EQ] = ACTIONS(5376), + [anon_sym_PIPE_EQ] = ACTIONS(5376), + [anon_sym_and_eq] = ACTIONS(5376), + [anon_sym_or_eq] = ACTIONS(5376), + [anon_sym_xor_eq] = ACTIONS(5376), + [anon_sym_LT_EQ_GT] = ACTIONS(5376), + [anon_sym_or] = ACTIONS(5383), + [anon_sym_and] = ACTIONS(5383), + [anon_sym_bitor] = ACTIONS(5376), + [anon_sym_xor] = ACTIONS(5383), + [anon_sym_bitand] = ACTIONS(5376), + [anon_sym_not_eq] = ACTIONS(5376), + [anon_sym_DASH_DASH] = ACTIONS(5376), + [anon_sym_PLUS_PLUS] = ACTIONS(5376), + [anon_sym_DOT] = ACTIONS(5383), + [anon_sym_DOT_STAR] = ACTIONS(5376), + [anon_sym_DASH_GT] = ACTIONS(5376), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5381), + [anon_sym_decltype] = ACTIONS(5381), + [anon_sym_GT2] = ACTIONS(5378), + }, + [2092] = { + [sym_identifier] = ACTIONS(5737), + [aux_sym_preproc_def_token1] = ACTIONS(5737), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5739), + [aux_sym_preproc_if_token1] = ACTIONS(5737), + [aux_sym_preproc_if_token2] = ACTIONS(5737), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5737), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5737), + [aux_sym_preproc_else_token1] = ACTIONS(5737), + [aux_sym_preproc_elif_token1] = ACTIONS(5737), + [sym_preproc_directive] = ACTIONS(5737), + [anon_sym_LPAREN2] = ACTIONS(5739), + [anon_sym_TILDE] = ACTIONS(5739), + [anon_sym_STAR] = ACTIONS(5739), + [anon_sym_AMP_AMP] = ACTIONS(5739), + [anon_sym_AMP] = ACTIONS(5737), + [anon_sym___extension__] = ACTIONS(5737), + [anon_sym_typedef] = ACTIONS(5737), + [anon_sym_extern] = ACTIONS(5737), + [anon_sym___attribute__] = ACTIONS(5737), + [anon_sym_COLON_COLON] = ACTIONS(5739), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5739), + [anon_sym___declspec] = ACTIONS(5737), + [anon_sym___based] = ACTIONS(5737), + [anon_sym_signed] = ACTIONS(5737), + [anon_sym_unsigned] = ACTIONS(5737), + [anon_sym_long] = ACTIONS(5737), + [anon_sym_short] = ACTIONS(5737), + [anon_sym_LBRACK] = ACTIONS(5737), + [anon_sym_static] = ACTIONS(5737), + [anon_sym_register] = ACTIONS(5737), + [anon_sym_inline] = ACTIONS(5737), + [anon_sym___inline] = ACTIONS(5737), + [anon_sym___inline__] = ACTIONS(5737), + [anon_sym___forceinline] = ACTIONS(5737), + [anon_sym_thread_local] = ACTIONS(5737), + [anon_sym___thread] = ACTIONS(5737), + [anon_sym_const] = ACTIONS(5737), + [anon_sym_constexpr] = ACTIONS(5737), + [anon_sym_volatile] = ACTIONS(5737), + [anon_sym_restrict] = ACTIONS(5737), + [anon_sym___restrict__] = ACTIONS(5737), + [anon_sym__Atomic] = ACTIONS(5737), + [anon_sym__Noreturn] = ACTIONS(5737), + [anon_sym_noreturn] = ACTIONS(5737), + [anon_sym_mutable] = ACTIONS(5737), + [anon_sym_constinit] = ACTIONS(5737), + [anon_sym_consteval] = ACTIONS(5737), + [sym_primitive_type] = ACTIONS(5737), + [anon_sym_enum] = ACTIONS(5737), + [anon_sym_class] = ACTIONS(5737), + [anon_sym_struct] = ACTIONS(5737), + [anon_sym_union] = ACTIONS(5737), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5737), + [anon_sym_decltype] = ACTIONS(5737), + [anon_sym_virtual] = ACTIONS(5737), + [anon_sym_alignas] = ACTIONS(5737), + [anon_sym_explicit] = ACTIONS(5737), + [anon_sym_typename] = ACTIONS(5737), + [anon_sym_template] = ACTIONS(5737), + [anon_sym_operator] = ACTIONS(5737), + [anon_sym_friend] = ACTIONS(5737), + [anon_sym_public] = ACTIONS(5737), + [anon_sym_private] = ACTIONS(5737), + [anon_sym_protected] = ACTIONS(5737), + [anon_sym_using] = ACTIONS(5737), + [anon_sym_static_assert] = ACTIONS(5737), + [sym_semgrep_metavar] = ACTIONS(5739), + }, + [2093] = { [sym_identifier] = ACTIONS(5812), [aux_sym_preproc_def_token1] = ACTIONS(5812), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5814), [aux_sym_preproc_if_token1] = ACTIONS(5812), [aux_sym_preproc_if_token2] = ACTIONS(5812), [aux_sym_preproc_ifdef_token1] = ACTIONS(5812), @@ -310641,10 +294646,292 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5812), [anon_sym_using] = ACTIONS(5812), [anon_sym_static_assert] = ACTIONS(5812), + [sym_semgrep_metavar] = ACTIONS(5814), }, - [2165] = { + [2094] = { + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [aux_sym_concatenated_string_repeat1] = STATE(2095), + [sym_identifier] = ACTIONS(5952), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5550), + [anon_sym_COMMA] = ACTIONS(5550), + [aux_sym_preproc_if_token2] = ACTIONS(5550), + [aux_sym_preproc_else_token1] = ACTIONS(5550), + [aux_sym_preproc_elif_token1] = ACTIONS(5550), + [anon_sym_LPAREN2] = ACTIONS(5550), + [anon_sym_DASH] = ACTIONS(5554), + [anon_sym_PLUS] = ACTIONS(5554), + [anon_sym_STAR] = ACTIONS(5554), + [anon_sym_SLASH] = ACTIONS(5554), + [anon_sym_PERCENT] = ACTIONS(5554), + [anon_sym_PIPE_PIPE] = ACTIONS(5550), + [anon_sym_AMP_AMP] = ACTIONS(5550), + [anon_sym_PIPE] = ACTIONS(5554), + [anon_sym_CARET] = ACTIONS(5554), + [anon_sym_AMP] = ACTIONS(5554), + [anon_sym_EQ_EQ] = ACTIONS(5550), + [anon_sym_BANG_EQ] = ACTIONS(5550), + [anon_sym_GT] = ACTIONS(5554), + [anon_sym_GT_EQ] = ACTIONS(5550), + [anon_sym_LT_EQ] = ACTIONS(5554), + [anon_sym_LT] = ACTIONS(5554), + [anon_sym_LT_LT] = ACTIONS(5554), + [anon_sym_GT_GT] = ACTIONS(5554), + [anon_sym_LBRACK] = ACTIONS(5550), + [anon_sym_EQ] = ACTIONS(5554), + [anon_sym_QMARK] = ACTIONS(5550), + [anon_sym_STAR_EQ] = ACTIONS(5550), + [anon_sym_SLASH_EQ] = ACTIONS(5550), + [anon_sym_PERCENT_EQ] = ACTIONS(5550), + [anon_sym_PLUS_EQ] = ACTIONS(5550), + [anon_sym_DASH_EQ] = ACTIONS(5550), + [anon_sym_LT_LT_EQ] = ACTIONS(5550), + [anon_sym_GT_GT_EQ] = ACTIONS(5550), + [anon_sym_AMP_EQ] = ACTIONS(5550), + [anon_sym_CARET_EQ] = ACTIONS(5550), + [anon_sym_PIPE_EQ] = ACTIONS(5550), + [anon_sym_and_eq] = ACTIONS(5554), + [anon_sym_or_eq] = ACTIONS(5554), + [anon_sym_xor_eq] = ACTIONS(5554), + [anon_sym_LT_EQ_GT] = ACTIONS(5550), + [anon_sym_or] = ACTIONS(5554), + [anon_sym_and] = ACTIONS(5554), + [anon_sym_bitor] = ACTIONS(5554), + [anon_sym_xor] = ACTIONS(5554), + [anon_sym_bitand] = ACTIONS(5554), + [anon_sym_not_eq] = ACTIONS(5554), + [anon_sym_DASH_DASH] = ACTIONS(5550), + [anon_sym_PLUS_PLUS] = ACTIONS(5550), + [anon_sym_DOT] = ACTIONS(5554), + [anon_sym_DOT_STAR] = ACTIONS(5550), + [anon_sym_DASH_GT] = ACTIONS(5550), + [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_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [sym_literal_suffix] = ACTIONS(5554), + }, + [2095] = { + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [aux_sym_concatenated_string_repeat1] = STATE(2096), + [sym_identifier] = ACTIONS(5954), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5556), + [anon_sym_COMMA] = ACTIONS(5556), + [aux_sym_preproc_if_token2] = ACTIONS(5556), + [aux_sym_preproc_else_token1] = ACTIONS(5556), + [aux_sym_preproc_elif_token1] = ACTIONS(5556), + [anon_sym_LPAREN2] = ACTIONS(5556), + [anon_sym_DASH] = ACTIONS(5560), + [anon_sym_PLUS] = ACTIONS(5560), + [anon_sym_STAR] = ACTIONS(5560), + [anon_sym_SLASH] = ACTIONS(5560), + [anon_sym_PERCENT] = ACTIONS(5560), + [anon_sym_PIPE_PIPE] = ACTIONS(5556), + [anon_sym_AMP_AMP] = ACTIONS(5556), + [anon_sym_PIPE] = ACTIONS(5560), + [anon_sym_CARET] = ACTIONS(5560), + [anon_sym_AMP] = ACTIONS(5560), + [anon_sym_EQ_EQ] = ACTIONS(5556), + [anon_sym_BANG_EQ] = ACTIONS(5556), + [anon_sym_GT] = ACTIONS(5560), + [anon_sym_GT_EQ] = ACTIONS(5556), + [anon_sym_LT_EQ] = ACTIONS(5560), + [anon_sym_LT] = ACTIONS(5560), + [anon_sym_LT_LT] = ACTIONS(5560), + [anon_sym_GT_GT] = ACTIONS(5560), + [anon_sym_LBRACK] = ACTIONS(5556), + [anon_sym_EQ] = ACTIONS(5560), + [anon_sym_QMARK] = ACTIONS(5556), + [anon_sym_STAR_EQ] = ACTIONS(5556), + [anon_sym_SLASH_EQ] = ACTIONS(5556), + [anon_sym_PERCENT_EQ] = ACTIONS(5556), + [anon_sym_PLUS_EQ] = ACTIONS(5556), + [anon_sym_DASH_EQ] = ACTIONS(5556), + [anon_sym_LT_LT_EQ] = ACTIONS(5556), + [anon_sym_GT_GT_EQ] = ACTIONS(5556), + [anon_sym_AMP_EQ] = ACTIONS(5556), + [anon_sym_CARET_EQ] = ACTIONS(5556), + [anon_sym_PIPE_EQ] = ACTIONS(5556), + [anon_sym_and_eq] = ACTIONS(5560), + [anon_sym_or_eq] = ACTIONS(5560), + [anon_sym_xor_eq] = ACTIONS(5560), + [anon_sym_LT_EQ_GT] = ACTIONS(5556), + [anon_sym_or] = ACTIONS(5560), + [anon_sym_and] = ACTIONS(5560), + [anon_sym_bitor] = ACTIONS(5560), + [anon_sym_xor] = ACTIONS(5560), + [anon_sym_bitand] = ACTIONS(5560), + [anon_sym_not_eq] = ACTIONS(5560), + [anon_sym_DASH_DASH] = ACTIONS(5556), + [anon_sym_PLUS_PLUS] = ACTIONS(5556), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_DOT_STAR] = ACTIONS(5556), + [anon_sym_DASH_GT] = ACTIONS(5556), + [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_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [sym_literal_suffix] = ACTIONS(5560), + }, + [2096] = { + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [aux_sym_concatenated_string_repeat1] = STATE(2096), + [sym_identifier] = ACTIONS(5956), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5562), + [anon_sym_COMMA] = ACTIONS(5562), + [aux_sym_preproc_if_token2] = ACTIONS(5562), + [aux_sym_preproc_else_token1] = ACTIONS(5562), + [aux_sym_preproc_elif_token1] = ACTIONS(5562), + [anon_sym_LPAREN2] = ACTIONS(5562), + [anon_sym_DASH] = ACTIONS(5567), + [anon_sym_PLUS] = ACTIONS(5567), + [anon_sym_STAR] = ACTIONS(5567), + [anon_sym_SLASH] = ACTIONS(5567), + [anon_sym_PERCENT] = ACTIONS(5567), + [anon_sym_PIPE_PIPE] = ACTIONS(5562), + [anon_sym_AMP_AMP] = ACTIONS(5562), + [anon_sym_PIPE] = ACTIONS(5567), + [anon_sym_CARET] = ACTIONS(5567), + [anon_sym_AMP] = ACTIONS(5567), + [anon_sym_EQ_EQ] = ACTIONS(5562), + [anon_sym_BANG_EQ] = ACTIONS(5562), + [anon_sym_GT] = ACTIONS(5567), + [anon_sym_GT_EQ] = ACTIONS(5562), + [anon_sym_LT_EQ] = ACTIONS(5567), + [anon_sym_LT] = ACTIONS(5567), + [anon_sym_LT_LT] = ACTIONS(5567), + [anon_sym_GT_GT] = ACTIONS(5567), + [anon_sym_LBRACK] = ACTIONS(5562), + [anon_sym_EQ] = ACTIONS(5567), + [anon_sym_QMARK] = ACTIONS(5562), + [anon_sym_STAR_EQ] = ACTIONS(5562), + [anon_sym_SLASH_EQ] = ACTIONS(5562), + [anon_sym_PERCENT_EQ] = ACTIONS(5562), + [anon_sym_PLUS_EQ] = ACTIONS(5562), + [anon_sym_DASH_EQ] = ACTIONS(5562), + [anon_sym_LT_LT_EQ] = ACTIONS(5562), + [anon_sym_GT_GT_EQ] = ACTIONS(5562), + [anon_sym_AMP_EQ] = ACTIONS(5562), + [anon_sym_CARET_EQ] = ACTIONS(5562), + [anon_sym_PIPE_EQ] = ACTIONS(5562), + [anon_sym_and_eq] = ACTIONS(5567), + [anon_sym_or_eq] = ACTIONS(5567), + [anon_sym_xor_eq] = ACTIONS(5567), + [anon_sym_LT_EQ_GT] = ACTIONS(5562), + [anon_sym_or] = ACTIONS(5567), + [anon_sym_and] = ACTIONS(5567), + [anon_sym_bitor] = ACTIONS(5567), + [anon_sym_xor] = ACTIONS(5567), + [anon_sym_bitand] = ACTIONS(5567), + [anon_sym_not_eq] = ACTIONS(5567), + [anon_sym_DASH_DASH] = ACTIONS(5562), + [anon_sym_PLUS_PLUS] = ACTIONS(5562), + [anon_sym_DOT] = ACTIONS(5567), + [anon_sym_DOT_STAR] = ACTIONS(5562), + [anon_sym_DASH_GT] = ACTIONS(5562), + [anon_sym_L_DQUOTE] = ACTIONS(5959), + [anon_sym_u_DQUOTE] = ACTIONS(5959), + [anon_sym_U_DQUOTE] = ACTIONS(5959), + [anon_sym_u8_DQUOTE] = ACTIONS(5959), + [anon_sym_DQUOTE] = ACTIONS(5959), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5962), + [anon_sym_LR_DQUOTE] = ACTIONS(5962), + [anon_sym_uR_DQUOTE] = ACTIONS(5962), + [anon_sym_UR_DQUOTE] = ACTIONS(5962), + [anon_sym_u8R_DQUOTE] = ACTIONS(5962), + [sym_literal_suffix] = ACTIONS(5567), + }, + [2097] = { + [sym_identifier] = ACTIONS(5816), + [aux_sym_preproc_def_token1] = ACTIONS(5816), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5818), + [aux_sym_preproc_if_token1] = ACTIONS(5816), + [aux_sym_preproc_if_token2] = ACTIONS(5816), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5816), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5816), + [aux_sym_preproc_else_token1] = ACTIONS(5816), + [aux_sym_preproc_elif_token1] = ACTIONS(5816), + [sym_preproc_directive] = ACTIONS(5816), + [anon_sym_LPAREN2] = ACTIONS(5818), + [anon_sym_TILDE] = ACTIONS(5818), + [anon_sym_STAR] = ACTIONS(5818), + [anon_sym_AMP_AMP] = ACTIONS(5818), + [anon_sym_AMP] = ACTIONS(5816), + [anon_sym___extension__] = ACTIONS(5816), + [anon_sym_typedef] = ACTIONS(5816), + [anon_sym_extern] = ACTIONS(5816), + [anon_sym___attribute__] = ACTIONS(5816), + [anon_sym_COLON_COLON] = ACTIONS(5818), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5818), + [anon_sym___declspec] = ACTIONS(5816), + [anon_sym___based] = ACTIONS(5816), + [anon_sym_signed] = ACTIONS(5816), + [anon_sym_unsigned] = ACTIONS(5816), + [anon_sym_long] = ACTIONS(5816), + [anon_sym_short] = ACTIONS(5816), + [anon_sym_LBRACK] = ACTIONS(5816), + [anon_sym_static] = ACTIONS(5816), + [anon_sym_register] = ACTIONS(5816), + [anon_sym_inline] = ACTIONS(5816), + [anon_sym___inline] = ACTIONS(5816), + [anon_sym___inline__] = ACTIONS(5816), + [anon_sym___forceinline] = ACTIONS(5816), + [anon_sym_thread_local] = ACTIONS(5816), + [anon_sym___thread] = ACTIONS(5816), + [anon_sym_const] = ACTIONS(5816), + [anon_sym_constexpr] = ACTIONS(5816), + [anon_sym_volatile] = ACTIONS(5816), + [anon_sym_restrict] = ACTIONS(5816), + [anon_sym___restrict__] = ACTIONS(5816), + [anon_sym__Atomic] = ACTIONS(5816), + [anon_sym__Noreturn] = ACTIONS(5816), + [anon_sym_noreturn] = ACTIONS(5816), + [anon_sym_mutable] = ACTIONS(5816), + [anon_sym_constinit] = ACTIONS(5816), + [anon_sym_consteval] = ACTIONS(5816), + [sym_primitive_type] = ACTIONS(5816), + [anon_sym_enum] = ACTIONS(5816), + [anon_sym_class] = ACTIONS(5816), + [anon_sym_struct] = ACTIONS(5816), + [anon_sym_union] = ACTIONS(5816), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5816), + [anon_sym_decltype] = ACTIONS(5816), + [anon_sym_virtual] = ACTIONS(5816), + [anon_sym_alignas] = ACTIONS(5816), + [anon_sym_explicit] = ACTIONS(5816), + [anon_sym_typename] = ACTIONS(5816), + [anon_sym_template] = ACTIONS(5816), + [anon_sym_operator] = ACTIONS(5816), + [anon_sym_friend] = ACTIONS(5816), + [anon_sym_public] = ACTIONS(5816), + [anon_sym_private] = ACTIONS(5816), + [anon_sym_protected] = ACTIONS(5816), + [anon_sym_using] = ACTIONS(5816), + [anon_sym_static_assert] = ACTIONS(5816), + [sym_semgrep_metavar] = ACTIONS(5818), + }, + [2098] = { [sym_identifier] = ACTIONS(5820), [aux_sym_preproc_def_token1] = ACTIONS(5820), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5822), [aux_sym_preproc_if_token1] = ACTIONS(5820), [aux_sym_preproc_if_token2] = ACTIONS(5820), [aux_sym_preproc_ifdef_token1] = ACTIONS(5820), @@ -310709,78 +294996,642 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5820), [anon_sym_using] = ACTIONS(5820), [anon_sym_static_assert] = ACTIONS(5820), + [sym_semgrep_metavar] = ACTIONS(5822), }, - [2166] = { - [sym_identifier] = ACTIONS(3622), - [aux_sym_preproc_def_token1] = ACTIONS(3622), - [aux_sym_preproc_if_token1] = ACTIONS(3622), - [aux_sym_preproc_if_token2] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), - [aux_sym_preproc_else_token1] = ACTIONS(3622), - [aux_sym_preproc_elif_token1] = ACTIONS(3622), - [sym_preproc_directive] = ACTIONS(3622), - [anon_sym_LPAREN2] = ACTIONS(3624), - [anon_sym_TILDE] = ACTIONS(3624), - [anon_sym_STAR] = ACTIONS(3624), - [anon_sym_AMP_AMP] = ACTIONS(3624), - [anon_sym_AMP] = ACTIONS(3622), - [anon_sym___extension__] = ACTIONS(3622), - [anon_sym_typedef] = ACTIONS(3622), - [anon_sym_extern] = ACTIONS(3622), - [anon_sym___attribute__] = ACTIONS(3622), - [anon_sym_COLON_COLON] = ACTIONS(3624), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), - [anon_sym___declspec] = ACTIONS(3622), - [anon_sym___based] = ACTIONS(3622), - [anon_sym_signed] = ACTIONS(3622), - [anon_sym_unsigned] = ACTIONS(3622), - [anon_sym_long] = ACTIONS(3622), - [anon_sym_short] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3622), - [anon_sym_static] = ACTIONS(3622), - [anon_sym_register] = ACTIONS(3622), - [anon_sym_inline] = ACTIONS(3622), - [anon_sym___inline] = ACTIONS(3622), - [anon_sym___inline__] = ACTIONS(3622), - [anon_sym___forceinline] = ACTIONS(3622), - [anon_sym_thread_local] = ACTIONS(3622), - [anon_sym___thread] = ACTIONS(3622), - [anon_sym_const] = ACTIONS(3622), - [anon_sym_constexpr] = ACTIONS(3622), - [anon_sym_volatile] = ACTIONS(3622), - [anon_sym_restrict] = ACTIONS(3622), - [anon_sym___restrict__] = ACTIONS(3622), - [anon_sym__Atomic] = ACTIONS(3622), - [anon_sym__Noreturn] = ACTIONS(3622), - [anon_sym_noreturn] = ACTIONS(3622), - [anon_sym_mutable] = ACTIONS(3622), - [anon_sym_constinit] = ACTIONS(3622), - [anon_sym_consteval] = ACTIONS(3622), - [sym_primitive_type] = ACTIONS(3622), - [anon_sym_enum] = ACTIONS(3622), - [anon_sym_class] = ACTIONS(3622), - [anon_sym_struct] = ACTIONS(3622), - [anon_sym_union] = ACTIONS(3622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3622), - [anon_sym_decltype] = ACTIONS(3622), - [anon_sym_virtual] = ACTIONS(3622), - [anon_sym_alignas] = ACTIONS(3622), - [anon_sym_explicit] = ACTIONS(3622), - [anon_sym_typename] = ACTIONS(3622), - [anon_sym_template] = ACTIONS(3622), - [anon_sym_operator] = ACTIONS(3622), - [anon_sym_friend] = ACTIONS(3622), - [anon_sym_public] = ACTIONS(3622), - [anon_sym_private] = ACTIONS(3622), - [anon_sym_protected] = ACTIONS(3622), - [anon_sym_using] = ACTIONS(3622), - [anon_sym_static_assert] = ACTIONS(3622), + [2099] = { + [sym_identifier] = ACTIONS(5824), + [aux_sym_preproc_def_token1] = ACTIONS(5824), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5826), + [aux_sym_preproc_if_token1] = ACTIONS(5824), + [aux_sym_preproc_if_token2] = ACTIONS(5824), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5824), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5824), + [aux_sym_preproc_else_token1] = ACTIONS(5824), + [aux_sym_preproc_elif_token1] = ACTIONS(5824), + [sym_preproc_directive] = ACTIONS(5824), + [anon_sym_LPAREN2] = ACTIONS(5826), + [anon_sym_TILDE] = ACTIONS(5826), + [anon_sym_STAR] = ACTIONS(5826), + [anon_sym_AMP_AMP] = ACTIONS(5826), + [anon_sym_AMP] = ACTIONS(5824), + [anon_sym___extension__] = ACTIONS(5824), + [anon_sym_typedef] = ACTIONS(5824), + [anon_sym_extern] = ACTIONS(5824), + [anon_sym___attribute__] = ACTIONS(5824), + [anon_sym_COLON_COLON] = ACTIONS(5826), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5826), + [anon_sym___declspec] = ACTIONS(5824), + [anon_sym___based] = ACTIONS(5824), + [anon_sym_signed] = ACTIONS(5824), + [anon_sym_unsigned] = ACTIONS(5824), + [anon_sym_long] = ACTIONS(5824), + [anon_sym_short] = ACTIONS(5824), + [anon_sym_LBRACK] = ACTIONS(5824), + [anon_sym_static] = ACTIONS(5824), + [anon_sym_register] = ACTIONS(5824), + [anon_sym_inline] = ACTIONS(5824), + [anon_sym___inline] = ACTIONS(5824), + [anon_sym___inline__] = ACTIONS(5824), + [anon_sym___forceinline] = ACTIONS(5824), + [anon_sym_thread_local] = ACTIONS(5824), + [anon_sym___thread] = ACTIONS(5824), + [anon_sym_const] = ACTIONS(5824), + [anon_sym_constexpr] = ACTIONS(5824), + [anon_sym_volatile] = ACTIONS(5824), + [anon_sym_restrict] = ACTIONS(5824), + [anon_sym___restrict__] = ACTIONS(5824), + [anon_sym__Atomic] = ACTIONS(5824), + [anon_sym__Noreturn] = ACTIONS(5824), + [anon_sym_noreturn] = ACTIONS(5824), + [anon_sym_mutable] = ACTIONS(5824), + [anon_sym_constinit] = ACTIONS(5824), + [anon_sym_consteval] = ACTIONS(5824), + [sym_primitive_type] = ACTIONS(5824), + [anon_sym_enum] = ACTIONS(5824), + [anon_sym_class] = ACTIONS(5824), + [anon_sym_struct] = ACTIONS(5824), + [anon_sym_union] = ACTIONS(5824), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5824), + [anon_sym_decltype] = ACTIONS(5824), + [anon_sym_virtual] = ACTIONS(5824), + [anon_sym_alignas] = ACTIONS(5824), + [anon_sym_explicit] = ACTIONS(5824), + [anon_sym_typename] = ACTIONS(5824), + [anon_sym_template] = ACTIONS(5824), + [anon_sym_operator] = ACTIONS(5824), + [anon_sym_friend] = ACTIONS(5824), + [anon_sym_public] = ACTIONS(5824), + [anon_sym_private] = ACTIONS(5824), + [anon_sym_protected] = ACTIONS(5824), + [anon_sym_using] = ACTIONS(5824), + [anon_sym_static_assert] = ACTIONS(5824), + [sym_semgrep_metavar] = ACTIONS(5826), }, - [2167] = { + [2100] = { + [sym_identifier] = ACTIONS(2355), + [aux_sym_preproc_def_token1] = ACTIONS(2355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2353), + [anon_sym_COMMA] = ACTIONS(3211), + [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(2353), + [anon_sym_TILDE] = ACTIONS(2353), + [anon_sym_STAR] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(2353), + [anon_sym_AMP] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(3211), + [anon_sym___extension__] = ACTIONS(2355), + [anon_sym_typedef] = ACTIONS(2355), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym___attribute__] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(2353), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), + [anon_sym___declspec] = ACTIONS(2355), + [anon_sym___based] = ACTIONS(2355), + [anon_sym_signed] = ACTIONS(2355), + [anon_sym_unsigned] = ACTIONS(2355), + [anon_sym_long] = ACTIONS(2355), + [anon_sym_short] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_static] = ACTIONS(2355), + [anon_sym_register] = ACTIONS(2355), + [anon_sym_inline] = ACTIONS(2355), + [anon_sym___inline] = ACTIONS(2355), + [anon_sym___inline__] = ACTIONS(2355), + [anon_sym___forceinline] = ACTIONS(2355), + [anon_sym_thread_local] = ACTIONS(2355), + [anon_sym___thread] = ACTIONS(2355), + [anon_sym_const] = ACTIONS(2355), + [anon_sym_constexpr] = ACTIONS(2355), + [anon_sym_volatile] = ACTIONS(2355), + [anon_sym_restrict] = ACTIONS(2355), + [anon_sym___restrict__] = ACTIONS(2355), + [anon_sym__Atomic] = ACTIONS(2355), + [anon_sym__Noreturn] = ACTIONS(2355), + [anon_sym_noreturn] = ACTIONS(2355), + [anon_sym_mutable] = ACTIONS(2355), + [anon_sym_constinit] = ACTIONS(2355), + [anon_sym_consteval] = 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), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2355), + [anon_sym_decltype] = ACTIONS(2355), + [anon_sym_virtual] = ACTIONS(2355), + [anon_sym_alignas] = ACTIONS(2355), + [anon_sym_explicit] = ACTIONS(2355), + [anon_sym_typename] = ACTIONS(2355), + [anon_sym_template] = ACTIONS(2355), + [anon_sym_operator] = ACTIONS(2355), + [anon_sym_friend] = ACTIONS(2355), + [anon_sym_public] = ACTIONS(2355), + [anon_sym_private] = ACTIONS(2355), + [anon_sym_protected] = ACTIONS(2355), + [anon_sym_using] = ACTIONS(2355), + [anon_sym_static_assert] = ACTIONS(2355), + [sym_semgrep_metavar] = ACTIONS(2353), + }, + [2101] = { + [sym_identifier] = ACTIONS(3657), + [aux_sym_preproc_def_token1] = ACTIONS(3657), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3659), + [aux_sym_preproc_if_token1] = ACTIONS(3657), + [aux_sym_preproc_if_token2] = ACTIONS(3657), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3657), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3657), + [aux_sym_preproc_else_token1] = ACTIONS(3657), + [aux_sym_preproc_elif_token1] = ACTIONS(3657), + [sym_preproc_directive] = ACTIONS(3657), + [anon_sym_LPAREN2] = ACTIONS(3659), + [anon_sym_TILDE] = ACTIONS(3659), + [anon_sym_STAR] = ACTIONS(3659), + [anon_sym_AMP_AMP] = ACTIONS(3659), + [anon_sym_AMP] = ACTIONS(3657), + [anon_sym___extension__] = ACTIONS(3657), + [anon_sym_typedef] = ACTIONS(3657), + [anon_sym_extern] = ACTIONS(3657), + [anon_sym___attribute__] = ACTIONS(3657), + [anon_sym_COLON_COLON] = ACTIONS(3659), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3659), + [anon_sym___declspec] = ACTIONS(3657), + [anon_sym___based] = ACTIONS(3657), + [anon_sym_signed] = ACTIONS(3657), + [anon_sym_unsigned] = ACTIONS(3657), + [anon_sym_long] = ACTIONS(3657), + [anon_sym_short] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_static] = ACTIONS(3657), + [anon_sym_register] = ACTIONS(3657), + [anon_sym_inline] = ACTIONS(3657), + [anon_sym___inline] = ACTIONS(3657), + [anon_sym___inline__] = ACTIONS(3657), + [anon_sym___forceinline] = ACTIONS(3657), + [anon_sym_thread_local] = ACTIONS(3657), + [anon_sym___thread] = ACTIONS(3657), + [anon_sym_const] = ACTIONS(3657), + [anon_sym_constexpr] = ACTIONS(3657), + [anon_sym_volatile] = ACTIONS(3657), + [anon_sym_restrict] = ACTIONS(3657), + [anon_sym___restrict__] = ACTIONS(3657), + [anon_sym__Atomic] = ACTIONS(3657), + [anon_sym__Noreturn] = ACTIONS(3657), + [anon_sym_noreturn] = ACTIONS(3657), + [anon_sym_mutable] = ACTIONS(3657), + [anon_sym_constinit] = ACTIONS(3657), + [anon_sym_consteval] = ACTIONS(3657), + [sym_primitive_type] = ACTIONS(3657), + [anon_sym_enum] = ACTIONS(3657), + [anon_sym_class] = ACTIONS(3657), + [anon_sym_struct] = ACTIONS(3657), + [anon_sym_union] = ACTIONS(3657), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3657), + [anon_sym_decltype] = ACTIONS(3657), + [anon_sym_virtual] = ACTIONS(3657), + [anon_sym_alignas] = ACTIONS(3657), + [anon_sym_explicit] = ACTIONS(3657), + [anon_sym_typename] = ACTIONS(3657), + [anon_sym_template] = ACTIONS(3657), + [anon_sym_operator] = ACTIONS(3657), + [anon_sym_friend] = ACTIONS(3657), + [anon_sym_public] = ACTIONS(3657), + [anon_sym_private] = ACTIONS(3657), + [anon_sym_protected] = ACTIONS(3657), + [anon_sym_using] = ACTIONS(3657), + [anon_sym_static_assert] = ACTIONS(3657), + [sym_semgrep_metavar] = ACTIONS(3659), + }, + [2102] = { + [sym_identifier] = ACTIONS(3392), + [aux_sym_preproc_def_token1] = ACTIONS(3392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3394), + [aux_sym_preproc_if_token1] = ACTIONS(3392), + [aux_sym_preproc_if_token2] = ACTIONS(3392), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3392), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3392), + [aux_sym_preproc_else_token1] = ACTIONS(3392), + [aux_sym_preproc_elif_token1] = ACTIONS(3392), + [sym_preproc_directive] = ACTIONS(3392), + [anon_sym_LPAREN2] = ACTIONS(3394), + [anon_sym_TILDE] = ACTIONS(3394), + [anon_sym_STAR] = ACTIONS(3394), + [anon_sym_AMP_AMP] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3392), + [anon_sym___extension__] = ACTIONS(3392), + [anon_sym_typedef] = ACTIONS(3392), + [anon_sym_extern] = ACTIONS(3392), + [anon_sym___attribute__] = ACTIONS(3392), + [anon_sym_COLON_COLON] = ACTIONS(3394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3394), + [anon_sym___declspec] = ACTIONS(3392), + [anon_sym___based] = ACTIONS(3392), + [anon_sym_signed] = ACTIONS(3392), + [anon_sym_unsigned] = ACTIONS(3392), + [anon_sym_long] = ACTIONS(3392), + [anon_sym_short] = ACTIONS(3392), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_static] = ACTIONS(3392), + [anon_sym_register] = ACTIONS(3392), + [anon_sym_inline] = ACTIONS(3392), + [anon_sym___inline] = ACTIONS(3392), + [anon_sym___inline__] = ACTIONS(3392), + [anon_sym___forceinline] = ACTIONS(3392), + [anon_sym_thread_local] = ACTIONS(3392), + [anon_sym___thread] = ACTIONS(3392), + [anon_sym_const] = ACTIONS(3392), + [anon_sym_constexpr] = ACTIONS(3392), + [anon_sym_volatile] = ACTIONS(3392), + [anon_sym_restrict] = ACTIONS(3392), + [anon_sym___restrict__] = ACTIONS(3392), + [anon_sym__Atomic] = ACTIONS(3392), + [anon_sym__Noreturn] = ACTIONS(3392), + [anon_sym_noreturn] = ACTIONS(3392), + [anon_sym_mutable] = ACTIONS(3392), + [anon_sym_constinit] = ACTIONS(3392), + [anon_sym_consteval] = ACTIONS(3392), + [sym_primitive_type] = ACTIONS(3392), + [anon_sym_enum] = ACTIONS(3392), + [anon_sym_class] = ACTIONS(3392), + [anon_sym_struct] = ACTIONS(3392), + [anon_sym_union] = ACTIONS(3392), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3392), + [anon_sym_decltype] = ACTIONS(3392), + [anon_sym_virtual] = ACTIONS(3392), + [anon_sym_alignas] = ACTIONS(3392), + [anon_sym_explicit] = ACTIONS(3392), + [anon_sym_typename] = ACTIONS(3392), + [anon_sym_template] = ACTIONS(3392), + [anon_sym_operator] = ACTIONS(3392), + [anon_sym_friend] = ACTIONS(3392), + [anon_sym_public] = ACTIONS(3392), + [anon_sym_private] = ACTIONS(3392), + [anon_sym_protected] = ACTIONS(3392), + [anon_sym_using] = ACTIONS(3392), + [anon_sym_static_assert] = ACTIONS(3392), + [sym_semgrep_metavar] = ACTIONS(3394), + }, + [2103] = { + [sym_identifier] = ACTIONS(2191), + [aux_sym_preproc_def_token1] = ACTIONS(2191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2193), + [aux_sym_preproc_if_token1] = ACTIONS(2191), + [aux_sym_preproc_if_token2] = ACTIONS(2191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2191), + [aux_sym_preproc_else_token1] = ACTIONS(2191), + [aux_sym_preproc_elif_token1] = ACTIONS(2191), + [sym_preproc_directive] = ACTIONS(2191), + [anon_sym_LPAREN2] = ACTIONS(2193), + [anon_sym_TILDE] = ACTIONS(2193), + [anon_sym_STAR] = ACTIONS(2193), + [anon_sym_AMP_AMP] = ACTIONS(2193), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym___extension__] = ACTIONS(2191), + [anon_sym_typedef] = ACTIONS(2191), + [anon_sym_extern] = ACTIONS(2191), + [anon_sym___attribute__] = ACTIONS(2191), + [anon_sym_COLON_COLON] = ACTIONS(2193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2193), + [anon_sym___declspec] = ACTIONS(2191), + [anon_sym___based] = ACTIONS(2191), + [anon_sym_signed] = ACTIONS(2191), + [anon_sym_unsigned] = ACTIONS(2191), + [anon_sym_long] = ACTIONS(2191), + [anon_sym_short] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_register] = ACTIONS(2191), + [anon_sym_inline] = ACTIONS(2191), + [anon_sym___inline] = ACTIONS(2191), + [anon_sym___inline__] = ACTIONS(2191), + [anon_sym___forceinline] = ACTIONS(2191), + [anon_sym_thread_local] = ACTIONS(2191), + [anon_sym___thread] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_constexpr] = ACTIONS(2191), + [anon_sym_volatile] = ACTIONS(2191), + [anon_sym_restrict] = ACTIONS(2191), + [anon_sym___restrict__] = ACTIONS(2191), + [anon_sym__Atomic] = ACTIONS(2191), + [anon_sym__Noreturn] = ACTIONS(2191), + [anon_sym_noreturn] = ACTIONS(2191), + [anon_sym_mutable] = ACTIONS(2191), + [anon_sym_constinit] = ACTIONS(2191), + [anon_sym_consteval] = ACTIONS(2191), + [sym_primitive_type] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_struct] = ACTIONS(2191), + [anon_sym_union] = ACTIONS(2191), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2191), + [anon_sym_decltype] = ACTIONS(2191), + [anon_sym_virtual] = ACTIONS(2191), + [anon_sym_alignas] = ACTIONS(2191), + [anon_sym_explicit] = ACTIONS(2191), + [anon_sym_typename] = ACTIONS(2191), + [anon_sym_template] = ACTIONS(2191), + [anon_sym_operator] = ACTIONS(2191), + [anon_sym_friend] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_static_assert] = ACTIONS(2191), + [sym_semgrep_metavar] = ACTIONS(2193), + }, + [2104] = { + [sym_identifier] = ACTIONS(3410), + [aux_sym_preproc_def_token1] = ACTIONS(3410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3412), + [aux_sym_preproc_if_token1] = ACTIONS(3410), + [aux_sym_preproc_if_token2] = ACTIONS(3410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3410), + [aux_sym_preproc_else_token1] = ACTIONS(3410), + [aux_sym_preproc_elif_token1] = ACTIONS(3410), + [sym_preproc_directive] = ACTIONS(3410), + [anon_sym_LPAREN2] = ACTIONS(3412), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_AMP] = ACTIONS(3410), + [anon_sym___extension__] = ACTIONS(3410), + [anon_sym_typedef] = ACTIONS(3410), + [anon_sym_extern] = ACTIONS(3410), + [anon_sym___attribute__] = ACTIONS(3410), + [anon_sym_COLON_COLON] = ACTIONS(3412), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3412), + [anon_sym___declspec] = ACTIONS(3410), + [anon_sym___based] = ACTIONS(3410), + [anon_sym_signed] = ACTIONS(3410), + [anon_sym_unsigned] = ACTIONS(3410), + [anon_sym_long] = ACTIONS(3410), + [anon_sym_short] = ACTIONS(3410), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_static] = ACTIONS(3410), + [anon_sym_register] = ACTIONS(3410), + [anon_sym_inline] = ACTIONS(3410), + [anon_sym___inline] = ACTIONS(3410), + [anon_sym___inline__] = ACTIONS(3410), + [anon_sym___forceinline] = ACTIONS(3410), + [anon_sym_thread_local] = ACTIONS(3410), + [anon_sym___thread] = ACTIONS(3410), + [anon_sym_const] = ACTIONS(3410), + [anon_sym_constexpr] = ACTIONS(3410), + [anon_sym_volatile] = ACTIONS(3410), + [anon_sym_restrict] = ACTIONS(3410), + [anon_sym___restrict__] = ACTIONS(3410), + [anon_sym__Atomic] = ACTIONS(3410), + [anon_sym__Noreturn] = ACTIONS(3410), + [anon_sym_noreturn] = ACTIONS(3410), + [anon_sym_mutable] = ACTIONS(3410), + [anon_sym_constinit] = ACTIONS(3410), + [anon_sym_consteval] = ACTIONS(3410), + [sym_primitive_type] = ACTIONS(3410), + [anon_sym_enum] = ACTIONS(3410), + [anon_sym_class] = ACTIONS(3410), + [anon_sym_struct] = ACTIONS(3410), + [anon_sym_union] = ACTIONS(3410), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3410), + [anon_sym_decltype] = ACTIONS(3410), + [anon_sym_virtual] = ACTIONS(3410), + [anon_sym_alignas] = ACTIONS(3410), + [anon_sym_explicit] = ACTIONS(3410), + [anon_sym_typename] = ACTIONS(3410), + [anon_sym_template] = ACTIONS(3410), + [anon_sym_operator] = ACTIONS(3410), + [anon_sym_friend] = ACTIONS(3410), + [anon_sym_public] = ACTIONS(3410), + [anon_sym_private] = ACTIONS(3410), + [anon_sym_protected] = ACTIONS(3410), + [anon_sym_using] = ACTIONS(3410), + [anon_sym_static_assert] = ACTIONS(3410), + [sym_semgrep_metavar] = ACTIONS(3412), + }, + [2105] = { + [sym_identifier] = ACTIONS(3428), + [aux_sym_preproc_def_token1] = ACTIONS(3428), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3430), + [aux_sym_preproc_if_token1] = ACTIONS(3428), + [aux_sym_preproc_if_token2] = ACTIONS(3428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3428), + [aux_sym_preproc_else_token1] = ACTIONS(3428), + [aux_sym_preproc_elif_token1] = ACTIONS(3428), + [sym_preproc_directive] = ACTIONS(3428), + [anon_sym_LPAREN2] = ACTIONS(3430), + [anon_sym_TILDE] = ACTIONS(3430), + [anon_sym_STAR] = ACTIONS(3430), + [anon_sym_AMP_AMP] = ACTIONS(3430), + [anon_sym_AMP] = ACTIONS(3428), + [anon_sym___extension__] = ACTIONS(3428), + [anon_sym_typedef] = ACTIONS(3428), + [anon_sym_extern] = ACTIONS(3428), + [anon_sym___attribute__] = ACTIONS(3428), + [anon_sym_COLON_COLON] = ACTIONS(3430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3430), + [anon_sym___declspec] = ACTIONS(3428), + [anon_sym___based] = ACTIONS(3428), + [anon_sym_signed] = ACTIONS(3428), + [anon_sym_unsigned] = ACTIONS(3428), + [anon_sym_long] = ACTIONS(3428), + [anon_sym_short] = ACTIONS(3428), + [anon_sym_LBRACK] = ACTIONS(3428), + [anon_sym_static] = ACTIONS(3428), + [anon_sym_register] = ACTIONS(3428), + [anon_sym_inline] = ACTIONS(3428), + [anon_sym___inline] = ACTIONS(3428), + [anon_sym___inline__] = ACTIONS(3428), + [anon_sym___forceinline] = ACTIONS(3428), + [anon_sym_thread_local] = ACTIONS(3428), + [anon_sym___thread] = ACTIONS(3428), + [anon_sym_const] = ACTIONS(3428), + [anon_sym_constexpr] = ACTIONS(3428), + [anon_sym_volatile] = ACTIONS(3428), + [anon_sym_restrict] = ACTIONS(3428), + [anon_sym___restrict__] = ACTIONS(3428), + [anon_sym__Atomic] = ACTIONS(3428), + [anon_sym__Noreturn] = ACTIONS(3428), + [anon_sym_noreturn] = ACTIONS(3428), + [anon_sym_mutable] = ACTIONS(3428), + [anon_sym_constinit] = ACTIONS(3428), + [anon_sym_consteval] = ACTIONS(3428), + [sym_primitive_type] = ACTIONS(3428), + [anon_sym_enum] = ACTIONS(3428), + [anon_sym_class] = ACTIONS(3428), + [anon_sym_struct] = ACTIONS(3428), + [anon_sym_union] = ACTIONS(3428), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3428), + [anon_sym_decltype] = ACTIONS(3428), + [anon_sym_virtual] = ACTIONS(3428), + [anon_sym_alignas] = ACTIONS(3428), + [anon_sym_explicit] = ACTIONS(3428), + [anon_sym_typename] = ACTIONS(3428), + [anon_sym_template] = ACTIONS(3428), + [anon_sym_operator] = ACTIONS(3428), + [anon_sym_friend] = ACTIONS(3428), + [anon_sym_public] = ACTIONS(3428), + [anon_sym_private] = ACTIONS(3428), + [anon_sym_protected] = ACTIONS(3428), + [anon_sym_using] = ACTIONS(3428), + [anon_sym_static_assert] = ACTIONS(3428), + [sym_semgrep_metavar] = ACTIONS(3430), + }, + [2106] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5445), + [anon_sym_COMMA] = ACTIONS(5445), + [anon_sym_RPAREN] = ACTIONS(5445), + [anon_sym_LPAREN2] = ACTIONS(5435), + [anon_sym_DASH] = ACTIONS(5440), + [anon_sym_PLUS] = ACTIONS(5440), + [anon_sym_STAR] = ACTIONS(5442), + [anon_sym_SLASH] = ACTIONS(5440), + [anon_sym_PERCENT] = ACTIONS(5440), + [anon_sym_PIPE_PIPE] = ACTIONS(5445), + [anon_sym_AMP_AMP] = ACTIONS(5435), + [anon_sym_PIPE] = ACTIONS(5440), + [anon_sym_CARET] = ACTIONS(5440), + [anon_sym_AMP] = ACTIONS(5442), + [anon_sym_EQ_EQ] = ACTIONS(5445), + [anon_sym_BANG_EQ] = ACTIONS(5445), + [anon_sym_GT] = ACTIONS(5440), + [anon_sym_GT_EQ] = ACTIONS(5445), + [anon_sym_LT_EQ] = ACTIONS(5440), + [anon_sym_LT] = ACTIONS(5440), + [anon_sym_LT_LT] = ACTIONS(5440), + [anon_sym_GT_GT] = ACTIONS(5440), + [anon_sym___extension__] = ACTIONS(5438), + [anon_sym_COLON_COLON] = ACTIONS(5438), + [anon_sym_LBRACE] = ACTIONS(5438), + [anon_sym_LBRACK] = ACTIONS(5435), + [anon_sym_EQ] = ACTIONS(5440), + [anon_sym_const] = ACTIONS(5433), + [anon_sym_constexpr] = ACTIONS(5438), + [anon_sym_volatile] = ACTIONS(5438), + [anon_sym_restrict] = ACTIONS(5438), + [anon_sym___restrict__] = ACTIONS(5438), + [anon_sym__Atomic] = ACTIONS(5438), + [anon_sym__Noreturn] = ACTIONS(5438), + [anon_sym_noreturn] = ACTIONS(5438), + [anon_sym_mutable] = ACTIONS(5438), + [anon_sym_constinit] = ACTIONS(5438), + [anon_sym_consteval] = ACTIONS(5438), + [anon_sym_QMARK] = ACTIONS(5445), + [anon_sym_STAR_EQ] = ACTIONS(5445), + [anon_sym_SLASH_EQ] = ACTIONS(5445), + [anon_sym_PERCENT_EQ] = ACTIONS(5445), + [anon_sym_PLUS_EQ] = ACTIONS(5445), + [anon_sym_DASH_EQ] = ACTIONS(5445), + [anon_sym_LT_LT_EQ] = ACTIONS(5445), + [anon_sym_GT_GT_EQ] = ACTIONS(5445), + [anon_sym_AMP_EQ] = ACTIONS(5445), + [anon_sym_CARET_EQ] = ACTIONS(5445), + [anon_sym_PIPE_EQ] = ACTIONS(5445), + [anon_sym_and_eq] = ACTIONS(5445), + [anon_sym_or_eq] = ACTIONS(5445), + [anon_sym_xor_eq] = ACTIONS(5445), + [anon_sym_LT_EQ_GT] = ACTIONS(5445), + [anon_sym_or] = ACTIONS(5440), + [anon_sym_and] = ACTIONS(5440), + [anon_sym_bitor] = ACTIONS(5445), + [anon_sym_xor] = ACTIONS(5440), + [anon_sym_bitand] = ACTIONS(5445), + [anon_sym_not_eq] = ACTIONS(5445), + [anon_sym_DASH_DASH] = ACTIONS(5445), + [anon_sym_PLUS_PLUS] = ACTIONS(5445), + [anon_sym_DOT] = ACTIONS(5440), + [anon_sym_DOT_STAR] = ACTIONS(5445), + [anon_sym_DASH_GT] = ACTIONS(5445), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5438), + [anon_sym_decltype] = ACTIONS(5438), + [sym_semgrep_metavar] = ACTIONS(5438), + }, + [2107] = { + [sym_identifier] = ACTIONS(3434), + [aux_sym_preproc_def_token1] = ACTIONS(3434), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3436), + [aux_sym_preproc_if_token1] = ACTIONS(3434), + [aux_sym_preproc_if_token2] = ACTIONS(3434), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3434), + [aux_sym_preproc_else_token1] = ACTIONS(3434), + [aux_sym_preproc_elif_token1] = ACTIONS(3434), + [sym_preproc_directive] = ACTIONS(3434), + [anon_sym_LPAREN2] = ACTIONS(3436), + [anon_sym_TILDE] = ACTIONS(3436), + [anon_sym_STAR] = ACTIONS(3436), + [anon_sym_AMP_AMP] = ACTIONS(3436), + [anon_sym_AMP] = ACTIONS(3434), + [anon_sym___extension__] = ACTIONS(3434), + [anon_sym_typedef] = ACTIONS(3434), + [anon_sym_extern] = ACTIONS(3434), + [anon_sym___attribute__] = ACTIONS(3434), + [anon_sym_COLON_COLON] = ACTIONS(3436), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3436), + [anon_sym___declspec] = ACTIONS(3434), + [anon_sym___based] = ACTIONS(3434), + [anon_sym_signed] = ACTIONS(3434), + [anon_sym_unsigned] = ACTIONS(3434), + [anon_sym_long] = ACTIONS(3434), + [anon_sym_short] = ACTIONS(3434), + [anon_sym_LBRACK] = ACTIONS(3434), + [anon_sym_static] = ACTIONS(3434), + [anon_sym_register] = ACTIONS(3434), + [anon_sym_inline] = ACTIONS(3434), + [anon_sym___inline] = ACTIONS(3434), + [anon_sym___inline__] = ACTIONS(3434), + [anon_sym___forceinline] = ACTIONS(3434), + [anon_sym_thread_local] = ACTIONS(3434), + [anon_sym___thread] = ACTIONS(3434), + [anon_sym_const] = ACTIONS(3434), + [anon_sym_constexpr] = ACTIONS(3434), + [anon_sym_volatile] = ACTIONS(3434), + [anon_sym_restrict] = ACTIONS(3434), + [anon_sym___restrict__] = ACTIONS(3434), + [anon_sym__Atomic] = ACTIONS(3434), + [anon_sym__Noreturn] = ACTIONS(3434), + [anon_sym_noreturn] = ACTIONS(3434), + [anon_sym_mutable] = ACTIONS(3434), + [anon_sym_constinit] = ACTIONS(3434), + [anon_sym_consteval] = ACTIONS(3434), + [sym_primitive_type] = ACTIONS(3434), + [anon_sym_enum] = ACTIONS(3434), + [anon_sym_class] = ACTIONS(3434), + [anon_sym_struct] = ACTIONS(3434), + [anon_sym_union] = ACTIONS(3434), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3434), + [anon_sym_decltype] = ACTIONS(3434), + [anon_sym_virtual] = ACTIONS(3434), + [anon_sym_alignas] = ACTIONS(3434), + [anon_sym_explicit] = ACTIONS(3434), + [anon_sym_typename] = ACTIONS(3434), + [anon_sym_template] = ACTIONS(3434), + [anon_sym_operator] = ACTIONS(3434), + [anon_sym_friend] = ACTIONS(3434), + [anon_sym_public] = ACTIONS(3434), + [anon_sym_private] = ACTIONS(3434), + [anon_sym_protected] = ACTIONS(3434), + [anon_sym_using] = ACTIONS(3434), + [anon_sym_static_assert] = ACTIONS(3434), + [sym_semgrep_metavar] = ACTIONS(3436), + }, + [2108] = { [sym_identifier] = ACTIONS(5836), [aux_sym_preproc_def_token1] = ACTIONS(5836), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5838), [aux_sym_preproc_if_token1] = ACTIONS(5836), [aux_sym_preproc_if_token2] = ACTIONS(5836), [aux_sym_preproc_ifdef_token1] = ACTIONS(5836), @@ -310845,58 +295696,480 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5836), [anon_sym_using] = ACTIONS(5836), [anon_sym_static_assert] = ACTIONS(5836), + [sym_semgrep_metavar] = ACTIONS(5838), }, - [2168] = { - [sym_identifier] = ACTIONS(5856), - [aux_sym_preproc_def_token1] = ACTIONS(5856), - [aux_sym_preproc_if_token1] = ACTIONS(5856), - [aux_sym_preproc_if_token2] = ACTIONS(5856), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5856), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5856), - [aux_sym_preproc_else_token1] = ACTIONS(5856), - [aux_sym_preproc_elif_token1] = ACTIONS(5856), - [sym_preproc_directive] = ACTIONS(5856), - [anon_sym_LPAREN2] = ACTIONS(5858), - [anon_sym_TILDE] = ACTIONS(5858), - [anon_sym_STAR] = ACTIONS(5858), - [anon_sym_AMP_AMP] = ACTIONS(5858), - [anon_sym_AMP] = ACTIONS(5856), - [anon_sym___extension__] = ACTIONS(5856), - [anon_sym_typedef] = ACTIONS(5856), - [anon_sym_extern] = ACTIONS(5856), - [anon_sym___attribute__] = ACTIONS(5856), - [anon_sym_COLON_COLON] = ACTIONS(5858), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5858), - [anon_sym___declspec] = ACTIONS(5856), - [anon_sym___based] = ACTIONS(5856), - [anon_sym_signed] = ACTIONS(5856), - [anon_sym_unsigned] = ACTIONS(5856), - [anon_sym_long] = ACTIONS(5856), - [anon_sym_short] = ACTIONS(5856), - [anon_sym_LBRACK] = ACTIONS(5856), - [anon_sym_static] = ACTIONS(5856), - [anon_sym_register] = ACTIONS(5856), - [anon_sym_inline] = ACTIONS(5856), - [anon_sym___inline] = ACTIONS(5856), - [anon_sym___inline__] = ACTIONS(5856), - [anon_sym___forceinline] = ACTIONS(5856), - [anon_sym_thread_local] = ACTIONS(5856), - [anon_sym___thread] = ACTIONS(5856), - [anon_sym_const] = ACTIONS(5856), - [anon_sym_constexpr] = ACTIONS(5856), - [anon_sym_volatile] = ACTIONS(5856), - [anon_sym_restrict] = ACTIONS(5856), - [anon_sym___restrict__] = ACTIONS(5856), - [anon_sym__Atomic] = ACTIONS(5856), - [anon_sym__Noreturn] = ACTIONS(5856), - [anon_sym_noreturn] = ACTIONS(5856), - [anon_sym_mutable] = ACTIONS(5856), - [anon_sym_constinit] = ACTIONS(5856), - [anon_sym_consteval] = ACTIONS(5856), - [sym_primitive_type] = ACTIONS(5856), - [anon_sym_enum] = ACTIONS(5856), - [anon_sym_class] = ACTIONS(5856), - [anon_sym_struct] = ACTIONS(5856), + [2109] = { + [sym_identifier] = ACTIONS(5840), + [aux_sym_preproc_def_token1] = ACTIONS(5840), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5842), + [aux_sym_preproc_if_token1] = ACTIONS(5840), + [aux_sym_preproc_if_token2] = ACTIONS(5840), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5840), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5840), + [aux_sym_preproc_else_token1] = ACTIONS(5840), + [aux_sym_preproc_elif_token1] = ACTIONS(5840), + [sym_preproc_directive] = ACTIONS(5840), + [anon_sym_LPAREN2] = ACTIONS(5842), + [anon_sym_TILDE] = ACTIONS(5842), + [anon_sym_STAR] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(5842), + [anon_sym_AMP] = ACTIONS(5840), + [anon_sym___extension__] = ACTIONS(5840), + [anon_sym_typedef] = ACTIONS(5840), + [anon_sym_extern] = ACTIONS(5840), + [anon_sym___attribute__] = ACTIONS(5840), + [anon_sym_COLON_COLON] = ACTIONS(5842), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5842), + [anon_sym___declspec] = ACTIONS(5840), + [anon_sym___based] = ACTIONS(5840), + [anon_sym_signed] = ACTIONS(5840), + [anon_sym_unsigned] = ACTIONS(5840), + [anon_sym_long] = ACTIONS(5840), + [anon_sym_short] = ACTIONS(5840), + [anon_sym_LBRACK] = ACTIONS(5840), + [anon_sym_static] = ACTIONS(5840), + [anon_sym_register] = ACTIONS(5840), + [anon_sym_inline] = ACTIONS(5840), + [anon_sym___inline] = ACTIONS(5840), + [anon_sym___inline__] = ACTIONS(5840), + [anon_sym___forceinline] = ACTIONS(5840), + [anon_sym_thread_local] = ACTIONS(5840), + [anon_sym___thread] = ACTIONS(5840), + [anon_sym_const] = ACTIONS(5840), + [anon_sym_constexpr] = ACTIONS(5840), + [anon_sym_volatile] = ACTIONS(5840), + [anon_sym_restrict] = ACTIONS(5840), + [anon_sym___restrict__] = ACTIONS(5840), + [anon_sym__Atomic] = ACTIONS(5840), + [anon_sym__Noreturn] = ACTIONS(5840), + [anon_sym_noreturn] = ACTIONS(5840), + [anon_sym_mutable] = ACTIONS(5840), + [anon_sym_constinit] = ACTIONS(5840), + [anon_sym_consteval] = ACTIONS(5840), + [sym_primitive_type] = ACTIONS(5840), + [anon_sym_enum] = ACTIONS(5840), + [anon_sym_class] = ACTIONS(5840), + [anon_sym_struct] = ACTIONS(5840), + [anon_sym_union] = ACTIONS(5840), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5840), + [anon_sym_decltype] = ACTIONS(5840), + [anon_sym_virtual] = ACTIONS(5840), + [anon_sym_alignas] = ACTIONS(5840), + [anon_sym_explicit] = ACTIONS(5840), + [anon_sym_typename] = ACTIONS(5840), + [anon_sym_template] = ACTIONS(5840), + [anon_sym_operator] = ACTIONS(5840), + [anon_sym_friend] = ACTIONS(5840), + [anon_sym_public] = ACTIONS(5840), + [anon_sym_private] = ACTIONS(5840), + [anon_sym_protected] = ACTIONS(5840), + [anon_sym_using] = ACTIONS(5840), + [anon_sym_static_assert] = ACTIONS(5840), + [sym_semgrep_metavar] = ACTIONS(5842), + }, + [2110] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2124), + [ts_builtin_sym_end] = ACTIONS(5965), + [sym_identifier] = ACTIONS(5967), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5965), + [anon_sym_COMMA] = ACTIONS(5965), + [anon_sym_RPAREN] = ACTIONS(5965), + [anon_sym_LPAREN2] = ACTIONS(5965), + [anon_sym_DASH] = ACTIONS(5969), + [anon_sym_PLUS] = ACTIONS(5969), + [anon_sym_STAR] = ACTIONS(5965), + [anon_sym_SLASH] = ACTIONS(5969), + [anon_sym_PERCENT] = ACTIONS(5965), + [anon_sym_PIPE_PIPE] = ACTIONS(5965), + [anon_sym_AMP_AMP] = ACTIONS(5965), + [anon_sym_PIPE] = ACTIONS(5969), + [anon_sym_CARET] = ACTIONS(5965), + [anon_sym_AMP] = ACTIONS(5969), + [anon_sym_EQ_EQ] = ACTIONS(5965), + [anon_sym_BANG_EQ] = ACTIONS(5965), + [anon_sym_GT] = ACTIONS(5969), + [anon_sym_GT_EQ] = ACTIONS(5965), + [anon_sym_LT_EQ] = ACTIONS(5969), + [anon_sym_LT] = ACTIONS(5969), + [anon_sym_LT_LT] = ACTIONS(5965), + [anon_sym_GT_GT] = ACTIONS(5965), + [anon_sym_SEMI] = ACTIONS(5965), + [anon_sym___extension__] = ACTIONS(5969), + [anon_sym___attribute__] = ACTIONS(5969), + [anon_sym_LBRACE] = ACTIONS(5965), + [anon_sym_RBRACE] = ACTIONS(5965), + [anon_sym_signed] = ACTIONS(5971), + [anon_sym_unsigned] = ACTIONS(5971), + [anon_sym_long] = ACTIONS(5971), + [anon_sym_short] = ACTIONS(5971), + [anon_sym_LBRACK] = ACTIONS(5965), + [anon_sym_RBRACK] = ACTIONS(5965), + [anon_sym_const] = ACTIONS(5969), + [anon_sym_constexpr] = ACTIONS(5969), + [anon_sym_volatile] = ACTIONS(5969), + [anon_sym_restrict] = ACTIONS(5969), + [anon_sym___restrict__] = ACTIONS(5969), + [anon_sym__Atomic] = ACTIONS(5969), + [anon_sym__Noreturn] = ACTIONS(5969), + [anon_sym_noreturn] = ACTIONS(5969), + [anon_sym_mutable] = ACTIONS(5969), + [anon_sym_constinit] = ACTIONS(5969), + [anon_sym_consteval] = ACTIONS(5969), + [sym_primitive_type] = ACTIONS(5973), + [anon_sym_COLON] = ACTIONS(5965), + [anon_sym_QMARK] = ACTIONS(5965), + [anon_sym_LT_EQ_GT] = ACTIONS(5965), + [anon_sym_or] = ACTIONS(5969), + [anon_sym_and] = ACTIONS(5969), + [anon_sym_bitor] = ACTIONS(5969), + [anon_sym_xor] = ACTIONS(5969), + [anon_sym_bitand] = ACTIONS(5969), + [anon_sym_not_eq] = ACTIONS(5969), + [anon_sym_DASH_DASH] = ACTIONS(5965), + [anon_sym_PLUS_PLUS] = ACTIONS(5965), + [anon_sym_DOT] = ACTIONS(5969), + [anon_sym_DOT_STAR] = ACTIONS(5965), + [anon_sym_DASH_GT] = ACTIONS(5965), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5969), + [anon_sym_decltype] = ACTIONS(5969), + [anon_sym_final] = ACTIONS(5969), + [anon_sym_override] = ACTIONS(5969), + [anon_sym_requires] = ACTIONS(5969), + }, + [2111] = { + [sym_identifier] = ACTIONS(5844), + [aux_sym_preproc_def_token1] = ACTIONS(5844), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5846), + [aux_sym_preproc_if_token1] = ACTIONS(5844), + [aux_sym_preproc_if_token2] = ACTIONS(5844), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5844), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5844), + [aux_sym_preproc_else_token1] = ACTIONS(5844), + [aux_sym_preproc_elif_token1] = ACTIONS(5844), + [sym_preproc_directive] = ACTIONS(5844), + [anon_sym_LPAREN2] = ACTIONS(5846), + [anon_sym_TILDE] = ACTIONS(5846), + [anon_sym_STAR] = ACTIONS(5846), + [anon_sym_AMP_AMP] = ACTIONS(5846), + [anon_sym_AMP] = ACTIONS(5844), + [anon_sym___extension__] = ACTIONS(5844), + [anon_sym_typedef] = ACTIONS(5844), + [anon_sym_extern] = ACTIONS(5844), + [anon_sym___attribute__] = ACTIONS(5844), + [anon_sym_COLON_COLON] = ACTIONS(5846), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5846), + [anon_sym___declspec] = ACTIONS(5844), + [anon_sym___based] = ACTIONS(5844), + [anon_sym_signed] = ACTIONS(5844), + [anon_sym_unsigned] = ACTIONS(5844), + [anon_sym_long] = ACTIONS(5844), + [anon_sym_short] = ACTIONS(5844), + [anon_sym_LBRACK] = ACTIONS(5844), + [anon_sym_static] = ACTIONS(5844), + [anon_sym_register] = ACTIONS(5844), + [anon_sym_inline] = ACTIONS(5844), + [anon_sym___inline] = ACTIONS(5844), + [anon_sym___inline__] = ACTIONS(5844), + [anon_sym___forceinline] = ACTIONS(5844), + [anon_sym_thread_local] = ACTIONS(5844), + [anon_sym___thread] = ACTIONS(5844), + [anon_sym_const] = ACTIONS(5844), + [anon_sym_constexpr] = ACTIONS(5844), + [anon_sym_volatile] = ACTIONS(5844), + [anon_sym_restrict] = ACTIONS(5844), + [anon_sym___restrict__] = ACTIONS(5844), + [anon_sym__Atomic] = ACTIONS(5844), + [anon_sym__Noreturn] = ACTIONS(5844), + [anon_sym_noreturn] = ACTIONS(5844), + [anon_sym_mutable] = ACTIONS(5844), + [anon_sym_constinit] = ACTIONS(5844), + [anon_sym_consteval] = ACTIONS(5844), + [sym_primitive_type] = ACTIONS(5844), + [anon_sym_enum] = ACTIONS(5844), + [anon_sym_class] = ACTIONS(5844), + [anon_sym_struct] = ACTIONS(5844), + [anon_sym_union] = ACTIONS(5844), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5844), + [anon_sym_decltype] = ACTIONS(5844), + [anon_sym_virtual] = ACTIONS(5844), + [anon_sym_alignas] = ACTIONS(5844), + [anon_sym_explicit] = ACTIONS(5844), + [anon_sym_typename] = ACTIONS(5844), + [anon_sym_template] = ACTIONS(5844), + [anon_sym_operator] = ACTIONS(5844), + [anon_sym_friend] = ACTIONS(5844), + [anon_sym_public] = ACTIONS(5844), + [anon_sym_private] = ACTIONS(5844), + [anon_sym_protected] = ACTIONS(5844), + [anon_sym_using] = ACTIONS(5844), + [anon_sym_static_assert] = ACTIONS(5844), + [sym_semgrep_metavar] = ACTIONS(5846), + }, + [2112] = { + [sym_identifier] = ACTIONS(3529), + [aux_sym_preproc_def_token1] = ACTIONS(3529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3531), + [aux_sym_preproc_if_token1] = ACTIONS(3529), + [aux_sym_preproc_if_token2] = ACTIONS(3529), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3529), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3529), + [aux_sym_preproc_else_token1] = ACTIONS(3529), + [aux_sym_preproc_elif_token1] = ACTIONS(3529), + [sym_preproc_directive] = ACTIONS(3529), + [anon_sym_LPAREN2] = ACTIONS(3531), + [anon_sym_TILDE] = ACTIONS(3531), + [anon_sym_STAR] = ACTIONS(3531), + [anon_sym_AMP_AMP] = ACTIONS(3531), + [anon_sym_AMP] = ACTIONS(3529), + [anon_sym___extension__] = ACTIONS(3529), + [anon_sym_typedef] = ACTIONS(3529), + [anon_sym_extern] = ACTIONS(3529), + [anon_sym___attribute__] = ACTIONS(3529), + [anon_sym_COLON_COLON] = ACTIONS(3531), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3531), + [anon_sym___declspec] = ACTIONS(3529), + [anon_sym___based] = ACTIONS(3529), + [anon_sym_signed] = ACTIONS(3529), + [anon_sym_unsigned] = ACTIONS(3529), + [anon_sym_long] = ACTIONS(3529), + [anon_sym_short] = ACTIONS(3529), + [anon_sym_LBRACK] = ACTIONS(3529), + [anon_sym_static] = ACTIONS(3529), + [anon_sym_register] = ACTIONS(3529), + [anon_sym_inline] = ACTIONS(3529), + [anon_sym___inline] = ACTIONS(3529), + [anon_sym___inline__] = ACTIONS(3529), + [anon_sym___forceinline] = ACTIONS(3529), + [anon_sym_thread_local] = ACTIONS(3529), + [anon_sym___thread] = ACTIONS(3529), + [anon_sym_const] = ACTIONS(3529), + [anon_sym_constexpr] = ACTIONS(3529), + [anon_sym_volatile] = ACTIONS(3529), + [anon_sym_restrict] = ACTIONS(3529), + [anon_sym___restrict__] = ACTIONS(3529), + [anon_sym__Atomic] = ACTIONS(3529), + [anon_sym__Noreturn] = ACTIONS(3529), + [anon_sym_noreturn] = ACTIONS(3529), + [anon_sym_mutable] = ACTIONS(3529), + [anon_sym_constinit] = ACTIONS(3529), + [anon_sym_consteval] = ACTIONS(3529), + [sym_primitive_type] = ACTIONS(3529), + [anon_sym_enum] = ACTIONS(3529), + [anon_sym_class] = ACTIONS(3529), + [anon_sym_struct] = ACTIONS(3529), + [anon_sym_union] = ACTIONS(3529), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3529), + [anon_sym_decltype] = ACTIONS(3529), + [anon_sym_virtual] = ACTIONS(3529), + [anon_sym_alignas] = ACTIONS(3529), + [anon_sym_explicit] = ACTIONS(3529), + [anon_sym_typename] = ACTIONS(3529), + [anon_sym_template] = ACTIONS(3529), + [anon_sym_operator] = ACTIONS(3529), + [anon_sym_friend] = ACTIONS(3529), + [anon_sym_public] = ACTIONS(3529), + [anon_sym_private] = ACTIONS(3529), + [anon_sym_protected] = ACTIONS(3529), + [anon_sym_using] = ACTIONS(3529), + [anon_sym_static_assert] = ACTIONS(3529), + [sym_semgrep_metavar] = ACTIONS(3531), + }, + [2113] = { + [sym_identifier] = ACTIONS(5852), + [aux_sym_preproc_def_token1] = ACTIONS(5852), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5854), + [aux_sym_preproc_if_token1] = ACTIONS(5852), + [aux_sym_preproc_if_token2] = ACTIONS(5852), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5852), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5852), + [aux_sym_preproc_else_token1] = ACTIONS(5852), + [aux_sym_preproc_elif_token1] = ACTIONS(5852), + [sym_preproc_directive] = ACTIONS(5852), + [anon_sym_LPAREN2] = ACTIONS(5854), + [anon_sym_TILDE] = ACTIONS(5854), + [anon_sym_STAR] = ACTIONS(5854), + [anon_sym_AMP_AMP] = ACTIONS(5854), + [anon_sym_AMP] = ACTIONS(5852), + [anon_sym___extension__] = ACTIONS(5852), + [anon_sym_typedef] = ACTIONS(5852), + [anon_sym_extern] = ACTIONS(5852), + [anon_sym___attribute__] = ACTIONS(5852), + [anon_sym_COLON_COLON] = ACTIONS(5854), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5854), + [anon_sym___declspec] = ACTIONS(5852), + [anon_sym___based] = ACTIONS(5852), + [anon_sym_signed] = ACTIONS(5852), + [anon_sym_unsigned] = ACTIONS(5852), + [anon_sym_long] = ACTIONS(5852), + [anon_sym_short] = ACTIONS(5852), + [anon_sym_LBRACK] = ACTIONS(5852), + [anon_sym_static] = ACTIONS(5852), + [anon_sym_register] = ACTIONS(5852), + [anon_sym_inline] = ACTIONS(5852), + [anon_sym___inline] = ACTIONS(5852), + [anon_sym___inline__] = ACTIONS(5852), + [anon_sym___forceinline] = ACTIONS(5852), + [anon_sym_thread_local] = ACTIONS(5852), + [anon_sym___thread] = ACTIONS(5852), + [anon_sym_const] = ACTIONS(5852), + [anon_sym_constexpr] = ACTIONS(5852), + [anon_sym_volatile] = ACTIONS(5852), + [anon_sym_restrict] = ACTIONS(5852), + [anon_sym___restrict__] = ACTIONS(5852), + [anon_sym__Atomic] = ACTIONS(5852), + [anon_sym__Noreturn] = ACTIONS(5852), + [anon_sym_noreturn] = ACTIONS(5852), + [anon_sym_mutable] = ACTIONS(5852), + [anon_sym_constinit] = ACTIONS(5852), + [anon_sym_consteval] = ACTIONS(5852), + [sym_primitive_type] = ACTIONS(5852), + [anon_sym_enum] = ACTIONS(5852), + [anon_sym_class] = ACTIONS(5852), + [anon_sym_struct] = ACTIONS(5852), + [anon_sym_union] = ACTIONS(5852), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5852), + [anon_sym_decltype] = ACTIONS(5852), + [anon_sym_virtual] = ACTIONS(5852), + [anon_sym_alignas] = ACTIONS(5852), + [anon_sym_explicit] = ACTIONS(5852), + [anon_sym_typename] = ACTIONS(5852), + [anon_sym_template] = ACTIONS(5852), + [anon_sym_operator] = ACTIONS(5852), + [anon_sym_friend] = ACTIONS(5852), + [anon_sym_public] = ACTIONS(5852), + [anon_sym_private] = ACTIONS(5852), + [anon_sym_protected] = ACTIONS(5852), + [anon_sym_using] = ACTIONS(5852), + [anon_sym_static_assert] = ACTIONS(5852), + [sym_semgrep_metavar] = ACTIONS(5854), + }, + [2114] = { + [sym_string_literal] = STATE(2729), + [sym_template_argument_list] = STATE(4089), + [sym_raw_string_literal] = STATE(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4765), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4773), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4773), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(5946), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_SEMI] = ACTIONS(4765), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_RBRACE] = ACTIONS(4765), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_EQ] = ACTIONS(4797), + [anon_sym_COLON] = ACTIONS(2195), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4801), + [anon_sym_SLASH_EQ] = ACTIONS(4801), + [anon_sym_PERCENT_EQ] = ACTIONS(4801), + [anon_sym_PLUS_EQ] = ACTIONS(4801), + [anon_sym_DASH_EQ] = ACTIONS(4801), + [anon_sym_LT_LT_EQ] = ACTIONS(4801), + [anon_sym_GT_GT_EQ] = ACTIONS(4801), + [anon_sym_AMP_EQ] = ACTIONS(4801), + [anon_sym_CARET_EQ] = ACTIONS(4801), + [anon_sym_PIPE_EQ] = ACTIONS(4801), + [anon_sym_and_eq] = ACTIONS(4801), + [anon_sym_or_eq] = ACTIONS(4801), + [anon_sym_xor_eq] = ACTIONS(4801), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4765), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4765), + [anon_sym_not_eq] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + }, + [2115] = { + [sym_identifier] = ACTIONS(5856), + [aux_sym_preproc_def_token1] = ACTIONS(5856), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5858), + [aux_sym_preproc_if_token1] = ACTIONS(5856), + [aux_sym_preproc_if_token2] = ACTIONS(5856), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5856), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5856), + [aux_sym_preproc_else_token1] = ACTIONS(5856), + [aux_sym_preproc_elif_token1] = ACTIONS(5856), + [sym_preproc_directive] = ACTIONS(5856), + [anon_sym_LPAREN2] = ACTIONS(5858), + [anon_sym_TILDE] = ACTIONS(5858), + [anon_sym_STAR] = ACTIONS(5858), + [anon_sym_AMP_AMP] = ACTIONS(5858), + [anon_sym_AMP] = ACTIONS(5856), + [anon_sym___extension__] = ACTIONS(5856), + [anon_sym_typedef] = ACTIONS(5856), + [anon_sym_extern] = ACTIONS(5856), + [anon_sym___attribute__] = ACTIONS(5856), + [anon_sym_COLON_COLON] = ACTIONS(5858), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5858), + [anon_sym___declspec] = ACTIONS(5856), + [anon_sym___based] = ACTIONS(5856), + [anon_sym_signed] = ACTIONS(5856), + [anon_sym_unsigned] = ACTIONS(5856), + [anon_sym_long] = ACTIONS(5856), + [anon_sym_short] = ACTIONS(5856), + [anon_sym_LBRACK] = ACTIONS(5856), + [anon_sym_static] = ACTIONS(5856), + [anon_sym_register] = ACTIONS(5856), + [anon_sym_inline] = ACTIONS(5856), + [anon_sym___inline] = ACTIONS(5856), + [anon_sym___inline__] = ACTIONS(5856), + [anon_sym___forceinline] = ACTIONS(5856), + [anon_sym_thread_local] = ACTIONS(5856), + [anon_sym___thread] = ACTIONS(5856), + [anon_sym_const] = ACTIONS(5856), + [anon_sym_constexpr] = ACTIONS(5856), + [anon_sym_volatile] = ACTIONS(5856), + [anon_sym_restrict] = ACTIONS(5856), + [anon_sym___restrict__] = ACTIONS(5856), + [anon_sym__Atomic] = ACTIONS(5856), + [anon_sym__Noreturn] = ACTIONS(5856), + [anon_sym_noreturn] = ACTIONS(5856), + [anon_sym_mutable] = ACTIONS(5856), + [anon_sym_constinit] = ACTIONS(5856), + [anon_sym_consteval] = ACTIONS(5856), + [sym_primitive_type] = ACTIONS(5856), + [anon_sym_enum] = ACTIONS(5856), + [anon_sym_class] = ACTIONS(5856), + [anon_sym_struct] = ACTIONS(5856), [anon_sym_union] = ACTIONS(5856), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(5856), @@ -310913,350 +296186,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5856), [anon_sym_using] = ACTIONS(5856), [anon_sym_static_assert] = ACTIONS(5856), + [sym_semgrep_metavar] = ACTIONS(5858), }, - [2169] = { - [sym_identifier] = ACTIONS(5872), - [aux_sym_preproc_def_token1] = ACTIONS(5872), - [aux_sym_preproc_if_token1] = ACTIONS(5872), - [aux_sym_preproc_if_token2] = ACTIONS(5872), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5872), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5872), - [aux_sym_preproc_else_token1] = ACTIONS(5872), - [aux_sym_preproc_elif_token1] = ACTIONS(5872), - [sym_preproc_directive] = ACTIONS(5872), - [anon_sym_LPAREN2] = ACTIONS(5874), - [anon_sym_TILDE] = ACTIONS(5874), - [anon_sym_STAR] = ACTIONS(5874), - [anon_sym_AMP_AMP] = ACTIONS(5874), - [anon_sym_AMP] = ACTIONS(5872), - [anon_sym___extension__] = ACTIONS(5872), - [anon_sym_typedef] = ACTIONS(5872), - [anon_sym_extern] = ACTIONS(5872), - [anon_sym___attribute__] = ACTIONS(5872), - [anon_sym_COLON_COLON] = ACTIONS(5874), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5874), - [anon_sym___declspec] = ACTIONS(5872), - [anon_sym___based] = ACTIONS(5872), - [anon_sym_signed] = ACTIONS(5872), - [anon_sym_unsigned] = ACTIONS(5872), - [anon_sym_long] = ACTIONS(5872), - [anon_sym_short] = ACTIONS(5872), - [anon_sym_LBRACK] = ACTIONS(5872), - [anon_sym_static] = ACTIONS(5872), - [anon_sym_register] = ACTIONS(5872), - [anon_sym_inline] = ACTIONS(5872), - [anon_sym___inline] = ACTIONS(5872), - [anon_sym___inline__] = ACTIONS(5872), - [anon_sym___forceinline] = ACTIONS(5872), - [anon_sym_thread_local] = ACTIONS(5872), - [anon_sym___thread] = ACTIONS(5872), - [anon_sym_const] = ACTIONS(5872), - [anon_sym_constexpr] = ACTIONS(5872), - [anon_sym_volatile] = ACTIONS(5872), - [anon_sym_restrict] = ACTIONS(5872), - [anon_sym___restrict__] = ACTIONS(5872), - [anon_sym__Atomic] = ACTIONS(5872), - [anon_sym__Noreturn] = ACTIONS(5872), - [anon_sym_noreturn] = ACTIONS(5872), - [anon_sym_mutable] = ACTIONS(5872), - [anon_sym_constinit] = ACTIONS(5872), - [anon_sym_consteval] = ACTIONS(5872), - [sym_primitive_type] = ACTIONS(5872), - [anon_sym_enum] = ACTIONS(5872), - [anon_sym_class] = ACTIONS(5872), - [anon_sym_struct] = ACTIONS(5872), - [anon_sym_union] = ACTIONS(5872), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5872), - [anon_sym_decltype] = ACTIONS(5872), - [anon_sym_virtual] = ACTIONS(5872), - [anon_sym_alignas] = ACTIONS(5872), - [anon_sym_explicit] = ACTIONS(5872), - [anon_sym_typename] = ACTIONS(5872), - [anon_sym_template] = ACTIONS(5872), - [anon_sym_operator] = ACTIONS(5872), - [anon_sym_friend] = ACTIONS(5872), - [anon_sym_public] = ACTIONS(5872), - [anon_sym_private] = ACTIONS(5872), - [anon_sym_protected] = ACTIONS(5872), - [anon_sym_using] = ACTIONS(5872), - [anon_sym_static_assert] = ACTIONS(5872), - }, - [2170] = { - [sym_identifier] = ACTIONS(3465), - [aux_sym_preproc_def_token1] = ACTIONS(3465), - [aux_sym_preproc_if_token1] = ACTIONS(3465), - [aux_sym_preproc_if_token2] = ACTIONS(3465), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3465), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3465), - [aux_sym_preproc_else_token1] = ACTIONS(3465), - [aux_sym_preproc_elif_token1] = ACTIONS(3465), - [sym_preproc_directive] = ACTIONS(3465), - [anon_sym_LPAREN2] = ACTIONS(3467), - [anon_sym_TILDE] = ACTIONS(3467), - [anon_sym_STAR] = ACTIONS(3467), - [anon_sym_AMP_AMP] = ACTIONS(3467), - [anon_sym_AMP] = ACTIONS(3465), - [anon_sym___extension__] = ACTIONS(3465), - [anon_sym_typedef] = ACTIONS(3465), - [anon_sym_extern] = ACTIONS(3465), - [anon_sym___attribute__] = ACTIONS(3465), - [anon_sym_COLON_COLON] = ACTIONS(3467), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3467), - [anon_sym___declspec] = ACTIONS(3465), - [anon_sym___based] = ACTIONS(3465), - [anon_sym_signed] = ACTIONS(3465), - [anon_sym_unsigned] = ACTIONS(3465), - [anon_sym_long] = ACTIONS(3465), - [anon_sym_short] = ACTIONS(3465), - [anon_sym_LBRACK] = ACTIONS(3465), - [anon_sym_static] = ACTIONS(3465), - [anon_sym_register] = ACTIONS(3465), - [anon_sym_inline] = ACTIONS(3465), - [anon_sym___inline] = ACTIONS(3465), - [anon_sym___inline__] = ACTIONS(3465), - [anon_sym___forceinline] = ACTIONS(3465), - [anon_sym_thread_local] = ACTIONS(3465), - [anon_sym___thread] = ACTIONS(3465), - [anon_sym_const] = ACTIONS(3465), - [anon_sym_constexpr] = ACTIONS(3465), - [anon_sym_volatile] = ACTIONS(3465), - [anon_sym_restrict] = ACTIONS(3465), - [anon_sym___restrict__] = ACTIONS(3465), - [anon_sym__Atomic] = ACTIONS(3465), - [anon_sym__Noreturn] = ACTIONS(3465), - [anon_sym_noreturn] = ACTIONS(3465), - [anon_sym_mutable] = ACTIONS(3465), - [anon_sym_constinit] = ACTIONS(3465), - [anon_sym_consteval] = ACTIONS(3465), - [sym_primitive_type] = ACTIONS(3465), - [anon_sym_enum] = ACTIONS(3465), - [anon_sym_class] = ACTIONS(3465), - [anon_sym_struct] = ACTIONS(3465), - [anon_sym_union] = ACTIONS(3465), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3465), - [anon_sym_decltype] = ACTIONS(3465), - [anon_sym_virtual] = ACTIONS(3465), - [anon_sym_alignas] = ACTIONS(3465), - [anon_sym_explicit] = ACTIONS(3465), - [anon_sym_typename] = ACTIONS(3465), - [anon_sym_template] = ACTIONS(3465), - [anon_sym_operator] = ACTIONS(3465), - [anon_sym_friend] = ACTIONS(3465), - [anon_sym_public] = ACTIONS(3465), - [anon_sym_private] = ACTIONS(3465), - [anon_sym_protected] = ACTIONS(3465), - [anon_sym_using] = ACTIONS(3465), - [anon_sym_static_assert] = ACTIONS(3465), - }, - [2171] = { - [sym_identifier] = ACTIONS(5949), - [aux_sym_preproc_def_token1] = ACTIONS(5949), - [aux_sym_preproc_if_token1] = ACTIONS(5949), - [aux_sym_preproc_if_token2] = ACTIONS(5949), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5949), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5949), - [aux_sym_preproc_else_token1] = ACTIONS(5949), - [aux_sym_preproc_elif_token1] = ACTIONS(5949), - [sym_preproc_directive] = ACTIONS(5949), - [anon_sym_LPAREN2] = ACTIONS(5951), - [anon_sym_TILDE] = ACTIONS(5951), - [anon_sym_STAR] = ACTIONS(5951), - [anon_sym_AMP_AMP] = ACTIONS(5951), - [anon_sym_AMP] = ACTIONS(5949), - [anon_sym___extension__] = ACTIONS(5949), - [anon_sym_typedef] = ACTIONS(5949), - [anon_sym_extern] = ACTIONS(5949), - [anon_sym___attribute__] = ACTIONS(5949), - [anon_sym_COLON_COLON] = ACTIONS(5951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5951), - [anon_sym___declspec] = ACTIONS(5949), - [anon_sym___based] = ACTIONS(5949), - [anon_sym_signed] = ACTIONS(5949), - [anon_sym_unsigned] = ACTIONS(5949), - [anon_sym_long] = ACTIONS(5949), - [anon_sym_short] = ACTIONS(5949), - [anon_sym_LBRACK] = ACTIONS(5949), - [anon_sym_static] = ACTIONS(5949), - [anon_sym_register] = ACTIONS(5949), - [anon_sym_inline] = ACTIONS(5949), - [anon_sym___inline] = ACTIONS(5949), - [anon_sym___inline__] = ACTIONS(5949), - [anon_sym___forceinline] = ACTIONS(5949), - [anon_sym_thread_local] = ACTIONS(5949), - [anon_sym___thread] = ACTIONS(5949), - [anon_sym_const] = ACTIONS(5949), - [anon_sym_constexpr] = ACTIONS(5949), - [anon_sym_volatile] = ACTIONS(5949), - [anon_sym_restrict] = ACTIONS(5949), - [anon_sym___restrict__] = ACTIONS(5949), - [anon_sym__Atomic] = ACTIONS(5949), - [anon_sym__Noreturn] = ACTIONS(5949), - [anon_sym_noreturn] = ACTIONS(5949), - [anon_sym_mutable] = ACTIONS(5949), - [anon_sym_constinit] = ACTIONS(5949), - [anon_sym_consteval] = ACTIONS(5949), - [sym_primitive_type] = ACTIONS(5949), - [anon_sym_enum] = ACTIONS(5949), - [anon_sym_class] = ACTIONS(5949), - [anon_sym_struct] = ACTIONS(5949), - [anon_sym_union] = ACTIONS(5949), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5949), - [anon_sym_decltype] = ACTIONS(5949), - [anon_sym_virtual] = ACTIONS(5949), - [anon_sym_alignas] = ACTIONS(5949), - [anon_sym_explicit] = ACTIONS(5949), - [anon_sym_typename] = ACTIONS(5949), - [anon_sym_template] = ACTIONS(5949), - [anon_sym_operator] = ACTIONS(5949), - [anon_sym_friend] = ACTIONS(5949), - [anon_sym_public] = ACTIONS(5949), - [anon_sym_private] = ACTIONS(5949), - [anon_sym_protected] = ACTIONS(5949), - [anon_sym_using] = ACTIONS(5949), - [anon_sym_static_assert] = ACTIONS(5949), - }, - [2172] = { - [sym_identifier] = ACTIONS(3078), - [aux_sym_preproc_def_token1] = ACTIONS(3078), - [anon_sym_COMMA] = ACTIONS(3187), - [aux_sym_preproc_if_token1] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3078), - [sym_preproc_directive] = ACTIONS(3078), - [anon_sym_LPAREN2] = ACTIONS(3080), - [anon_sym_TILDE] = ACTIONS(3080), - [anon_sym_STAR] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym_SEMI] = ACTIONS(3187), - [anon_sym___extension__] = ACTIONS(3078), - [anon_sym_typedef] = ACTIONS(3078), - [anon_sym_extern] = ACTIONS(3078), - [anon_sym___attribute__] = ACTIONS(5746), - [anon_sym_COLON_COLON] = ACTIONS(3080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3080), - [anon_sym___declspec] = ACTIONS(3078), - [anon_sym___based] = ACTIONS(3078), - [anon_sym_RBRACE] = ACTIONS(3080), - [anon_sym_signed] = ACTIONS(3078), - [anon_sym_unsigned] = ACTIONS(3078), - [anon_sym_long] = ACTIONS(3078), - [anon_sym_short] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_static] = ACTIONS(3078), - [anon_sym_register] = ACTIONS(3078), - [anon_sym_inline] = ACTIONS(3078), - [anon_sym___inline] = ACTIONS(3078), - [anon_sym___inline__] = ACTIONS(3078), - [anon_sym___forceinline] = ACTIONS(3078), - [anon_sym_thread_local] = ACTIONS(3078), - [anon_sym___thread] = ACTIONS(3078), - [anon_sym_const] = ACTIONS(3078), - [anon_sym_constexpr] = ACTIONS(3078), - [anon_sym_volatile] = ACTIONS(3078), - [anon_sym_restrict] = ACTIONS(3078), - [anon_sym___restrict__] = ACTIONS(3078), - [anon_sym__Atomic] = ACTIONS(3078), - [anon_sym__Noreturn] = ACTIONS(3078), - [anon_sym_noreturn] = ACTIONS(3078), - [anon_sym_mutable] = ACTIONS(3078), - [anon_sym_constinit] = ACTIONS(3078), - [anon_sym_consteval] = ACTIONS(3078), - [sym_primitive_type] = ACTIONS(3078), - [anon_sym_enum] = ACTIONS(3078), - [anon_sym_class] = ACTIONS(3078), - [anon_sym_struct] = ACTIONS(3078), - [anon_sym_union] = ACTIONS(3078), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3078), - [anon_sym_decltype] = ACTIONS(3078), - [anon_sym_virtual] = ACTIONS(3078), - [anon_sym_alignas] = ACTIONS(3078), - [anon_sym_explicit] = ACTIONS(3078), - [anon_sym_typename] = ACTIONS(3078), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_operator] = ACTIONS(3078), - [anon_sym_friend] = ACTIONS(3078), - [anon_sym_public] = ACTIONS(3078), - [anon_sym_private] = ACTIONS(3078), - [anon_sym_protected] = ACTIONS(3078), - [anon_sym_using] = ACTIONS(3078), - [anon_sym_static_assert] = ACTIONS(3078), - }, - [2173] = { - [sym_declaration_modifiers] = STATE(4294), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(3485), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4853), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(4837), - [aux_sym_declaration_specifiers_repeat1] = STATE(4294), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5548), - [anon_sym___extension__] = ACTIONS(65), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1538), - }, - [2174] = { + [2116] = { [sym_identifier] = ACTIONS(5860), [aux_sym_preproc_def_token1] = ACTIONS(5860), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5862), [aux_sym_preproc_if_token1] = ACTIONS(5860), [aux_sym_preproc_if_token2] = ACTIONS(5860), [aux_sym_preproc_ifdef_token1] = ACTIONS(5860), @@ -311321,418 +296256,292 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5860), [anon_sym_using] = ACTIONS(5860), [anon_sym_static_assert] = ACTIONS(5860), + [sym_semgrep_metavar] = ACTIONS(5862), }, - [2175] = { - [sym_identifier] = ACTIONS(5884), - [aux_sym_preproc_def_token1] = ACTIONS(5884), - [aux_sym_preproc_if_token1] = ACTIONS(5884), - [aux_sym_preproc_if_token2] = ACTIONS(5884), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5884), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5884), - [aux_sym_preproc_else_token1] = ACTIONS(5884), - [aux_sym_preproc_elif_token1] = ACTIONS(5884), - [sym_preproc_directive] = ACTIONS(5884), - [anon_sym_LPAREN2] = ACTIONS(5886), - [anon_sym_TILDE] = ACTIONS(5886), - [anon_sym_STAR] = ACTIONS(5886), - [anon_sym_AMP_AMP] = ACTIONS(5886), - [anon_sym_AMP] = ACTIONS(5884), - [anon_sym___extension__] = ACTIONS(5884), - [anon_sym_typedef] = ACTIONS(5884), - [anon_sym_extern] = ACTIONS(5884), - [anon_sym___attribute__] = ACTIONS(5884), - [anon_sym_COLON_COLON] = ACTIONS(5886), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5886), - [anon_sym___declspec] = ACTIONS(5884), - [anon_sym___based] = ACTIONS(5884), - [anon_sym_signed] = ACTIONS(5884), - [anon_sym_unsigned] = ACTIONS(5884), - [anon_sym_long] = ACTIONS(5884), - [anon_sym_short] = ACTIONS(5884), - [anon_sym_LBRACK] = ACTIONS(5884), - [anon_sym_static] = ACTIONS(5884), - [anon_sym_register] = ACTIONS(5884), - [anon_sym_inline] = ACTIONS(5884), - [anon_sym___inline] = ACTIONS(5884), - [anon_sym___inline__] = ACTIONS(5884), - [anon_sym___forceinline] = ACTIONS(5884), - [anon_sym_thread_local] = ACTIONS(5884), - [anon_sym___thread] = ACTIONS(5884), - [anon_sym_const] = ACTIONS(5884), - [anon_sym_constexpr] = ACTIONS(5884), - [anon_sym_volatile] = ACTIONS(5884), - [anon_sym_restrict] = ACTIONS(5884), - [anon_sym___restrict__] = ACTIONS(5884), - [anon_sym__Atomic] = ACTIONS(5884), - [anon_sym__Noreturn] = ACTIONS(5884), - [anon_sym_noreturn] = ACTIONS(5884), - [anon_sym_mutable] = ACTIONS(5884), - [anon_sym_constinit] = ACTIONS(5884), - [anon_sym_consteval] = ACTIONS(5884), - [sym_primitive_type] = ACTIONS(5884), - [anon_sym_enum] = ACTIONS(5884), - [anon_sym_class] = ACTIONS(5884), - [anon_sym_struct] = ACTIONS(5884), - [anon_sym_union] = ACTIONS(5884), + [2117] = { + [sym_identifier] = ACTIONS(5864), + [aux_sym_preproc_def_token1] = ACTIONS(5864), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5866), + [aux_sym_preproc_if_token1] = ACTIONS(5864), + [aux_sym_preproc_if_token2] = ACTIONS(5864), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5864), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5864), + [aux_sym_preproc_else_token1] = ACTIONS(5864), + [aux_sym_preproc_elif_token1] = ACTIONS(5864), + [sym_preproc_directive] = ACTIONS(5864), + [anon_sym_LPAREN2] = ACTIONS(5866), + [anon_sym_TILDE] = ACTIONS(5866), + [anon_sym_STAR] = ACTIONS(5866), + [anon_sym_AMP_AMP] = ACTIONS(5866), + [anon_sym_AMP] = ACTIONS(5864), + [anon_sym___extension__] = ACTIONS(5864), + [anon_sym_typedef] = ACTIONS(5864), + [anon_sym_extern] = ACTIONS(5864), + [anon_sym___attribute__] = ACTIONS(5864), + [anon_sym_COLON_COLON] = ACTIONS(5866), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5866), + [anon_sym___declspec] = ACTIONS(5864), + [anon_sym___based] = ACTIONS(5864), + [anon_sym_signed] = ACTIONS(5864), + [anon_sym_unsigned] = ACTIONS(5864), + [anon_sym_long] = ACTIONS(5864), + [anon_sym_short] = ACTIONS(5864), + [anon_sym_LBRACK] = ACTIONS(5864), + [anon_sym_static] = ACTIONS(5864), + [anon_sym_register] = ACTIONS(5864), + [anon_sym_inline] = ACTIONS(5864), + [anon_sym___inline] = ACTIONS(5864), + [anon_sym___inline__] = ACTIONS(5864), + [anon_sym___forceinline] = ACTIONS(5864), + [anon_sym_thread_local] = ACTIONS(5864), + [anon_sym___thread] = ACTIONS(5864), + [anon_sym_const] = ACTIONS(5864), + [anon_sym_constexpr] = ACTIONS(5864), + [anon_sym_volatile] = ACTIONS(5864), + [anon_sym_restrict] = ACTIONS(5864), + [anon_sym___restrict__] = ACTIONS(5864), + [anon_sym__Atomic] = ACTIONS(5864), + [anon_sym__Noreturn] = ACTIONS(5864), + [anon_sym_noreturn] = ACTIONS(5864), + [anon_sym_mutable] = ACTIONS(5864), + [anon_sym_constinit] = ACTIONS(5864), + [anon_sym_consteval] = ACTIONS(5864), + [sym_primitive_type] = ACTIONS(5864), + [anon_sym_enum] = ACTIONS(5864), + [anon_sym_class] = ACTIONS(5864), + [anon_sym_struct] = ACTIONS(5864), + [anon_sym_union] = ACTIONS(5864), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5884), - [anon_sym_decltype] = ACTIONS(5884), - [anon_sym_virtual] = ACTIONS(5884), - [anon_sym_alignas] = ACTIONS(5884), - [anon_sym_explicit] = ACTIONS(5884), - [anon_sym_typename] = ACTIONS(5884), - [anon_sym_template] = ACTIONS(5884), - [anon_sym_operator] = ACTIONS(5884), - [anon_sym_friend] = ACTIONS(5884), - [anon_sym_public] = ACTIONS(5884), - [anon_sym_private] = ACTIONS(5884), - [anon_sym_protected] = ACTIONS(5884), - [anon_sym_using] = ACTIONS(5884), - [anon_sym_static_assert] = ACTIONS(5884), - }, - [2176] = { - [sym_identifier] = ACTIONS(5928), - [aux_sym_preproc_def_token1] = ACTIONS(5928), - [aux_sym_preproc_if_token1] = ACTIONS(5928), - [aux_sym_preproc_if_token2] = ACTIONS(5928), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5928), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5928), - [aux_sym_preproc_else_token1] = ACTIONS(5928), - [aux_sym_preproc_elif_token1] = ACTIONS(5928), - [sym_preproc_directive] = ACTIONS(5928), - [anon_sym_LPAREN2] = ACTIONS(5930), - [anon_sym_TILDE] = ACTIONS(5930), - [anon_sym_STAR] = ACTIONS(5930), - [anon_sym_AMP_AMP] = ACTIONS(5930), - [anon_sym_AMP] = ACTIONS(5928), - [anon_sym___extension__] = ACTIONS(5928), - [anon_sym_typedef] = ACTIONS(5928), - [anon_sym_extern] = ACTIONS(5928), - [anon_sym___attribute__] = ACTIONS(5928), - [anon_sym_COLON_COLON] = ACTIONS(5930), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5930), - [anon_sym___declspec] = ACTIONS(5928), - [anon_sym___based] = ACTIONS(5928), - [anon_sym_signed] = ACTIONS(5928), - [anon_sym_unsigned] = ACTIONS(5928), - [anon_sym_long] = ACTIONS(5928), - [anon_sym_short] = ACTIONS(5928), - [anon_sym_LBRACK] = ACTIONS(5928), - [anon_sym_static] = ACTIONS(5928), - [anon_sym_register] = ACTIONS(5928), - [anon_sym_inline] = ACTIONS(5928), - [anon_sym___inline] = ACTIONS(5928), - [anon_sym___inline__] = ACTIONS(5928), - [anon_sym___forceinline] = ACTIONS(5928), - [anon_sym_thread_local] = ACTIONS(5928), - [anon_sym___thread] = ACTIONS(5928), - [anon_sym_const] = ACTIONS(5928), - [anon_sym_constexpr] = ACTIONS(5928), - [anon_sym_volatile] = ACTIONS(5928), - [anon_sym_restrict] = ACTIONS(5928), - [anon_sym___restrict__] = ACTIONS(5928), - [anon_sym__Atomic] = ACTIONS(5928), - [anon_sym__Noreturn] = ACTIONS(5928), - [anon_sym_noreturn] = ACTIONS(5928), - [anon_sym_mutable] = ACTIONS(5928), - [anon_sym_constinit] = ACTIONS(5928), - [anon_sym_consteval] = ACTIONS(5928), - [sym_primitive_type] = ACTIONS(5928), - [anon_sym_enum] = ACTIONS(5928), - [anon_sym_class] = ACTIONS(5928), - [anon_sym_struct] = ACTIONS(5928), - [anon_sym_union] = ACTIONS(5928), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5928), - [anon_sym_decltype] = ACTIONS(5928), - [anon_sym_virtual] = ACTIONS(5928), - [anon_sym_alignas] = ACTIONS(5928), - [anon_sym_explicit] = ACTIONS(5928), - [anon_sym_typename] = ACTIONS(5928), - [anon_sym_template] = ACTIONS(5928), - [anon_sym_operator] = ACTIONS(5928), - [anon_sym_friend] = ACTIONS(5928), - [anon_sym_public] = ACTIONS(5928), - [anon_sym_private] = ACTIONS(5928), - [anon_sym_protected] = ACTIONS(5928), - [anon_sym_using] = ACTIONS(5928), - [anon_sym_static_assert] = ACTIONS(5928), - }, - [2177] = { - [sym_identifier] = ACTIONS(5876), - [aux_sym_preproc_def_token1] = ACTIONS(5876), - [aux_sym_preproc_if_token1] = ACTIONS(5876), - [aux_sym_preproc_if_token2] = ACTIONS(5876), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5876), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5876), - [aux_sym_preproc_else_token1] = ACTIONS(5876), - [aux_sym_preproc_elif_token1] = ACTIONS(5876), - [sym_preproc_directive] = ACTIONS(5876), - [anon_sym_LPAREN2] = ACTIONS(5878), - [anon_sym_TILDE] = ACTIONS(5878), - [anon_sym_STAR] = ACTIONS(5878), - [anon_sym_AMP_AMP] = ACTIONS(5878), - [anon_sym_AMP] = ACTIONS(5876), - [anon_sym___extension__] = ACTIONS(5876), - [anon_sym_typedef] = ACTIONS(5876), - [anon_sym_extern] = ACTIONS(5876), - [anon_sym___attribute__] = ACTIONS(5876), - [anon_sym_COLON_COLON] = ACTIONS(5878), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5878), - [anon_sym___declspec] = ACTIONS(5876), - [anon_sym___based] = ACTIONS(5876), - [anon_sym_signed] = ACTIONS(5876), - [anon_sym_unsigned] = ACTIONS(5876), - [anon_sym_long] = ACTIONS(5876), - [anon_sym_short] = ACTIONS(5876), - [anon_sym_LBRACK] = ACTIONS(5876), - [anon_sym_static] = ACTIONS(5876), - [anon_sym_register] = ACTIONS(5876), - [anon_sym_inline] = ACTIONS(5876), - [anon_sym___inline] = ACTIONS(5876), - [anon_sym___inline__] = ACTIONS(5876), - [anon_sym___forceinline] = ACTIONS(5876), - [anon_sym_thread_local] = ACTIONS(5876), - [anon_sym___thread] = ACTIONS(5876), - [anon_sym_const] = ACTIONS(5876), - [anon_sym_constexpr] = ACTIONS(5876), - [anon_sym_volatile] = ACTIONS(5876), - [anon_sym_restrict] = ACTIONS(5876), - [anon_sym___restrict__] = ACTIONS(5876), - [anon_sym__Atomic] = ACTIONS(5876), - [anon_sym__Noreturn] = ACTIONS(5876), - [anon_sym_noreturn] = ACTIONS(5876), - [anon_sym_mutable] = ACTIONS(5876), - [anon_sym_constinit] = ACTIONS(5876), - [anon_sym_consteval] = ACTIONS(5876), - [sym_primitive_type] = ACTIONS(5876), - [anon_sym_enum] = ACTIONS(5876), - [anon_sym_class] = ACTIONS(5876), - [anon_sym_struct] = ACTIONS(5876), - [anon_sym_union] = ACTIONS(5876), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5876), - [anon_sym_decltype] = ACTIONS(5876), - [anon_sym_virtual] = ACTIONS(5876), - [anon_sym_alignas] = ACTIONS(5876), - [anon_sym_explicit] = ACTIONS(5876), - [anon_sym_typename] = ACTIONS(5876), - [anon_sym_template] = ACTIONS(5876), - [anon_sym_operator] = ACTIONS(5876), - [anon_sym_friend] = ACTIONS(5876), - [anon_sym_public] = ACTIONS(5876), - [anon_sym_private] = ACTIONS(5876), - [anon_sym_protected] = ACTIONS(5876), - [anon_sym_using] = ACTIONS(5876), - [anon_sym_static_assert] = ACTIONS(5876), + [sym_auto] = ACTIONS(5864), + [anon_sym_decltype] = ACTIONS(5864), + [anon_sym_virtual] = ACTIONS(5864), + [anon_sym_alignas] = ACTIONS(5864), + [anon_sym_explicit] = ACTIONS(5864), + [anon_sym_typename] = ACTIONS(5864), + [anon_sym_template] = ACTIONS(5864), + [anon_sym_operator] = ACTIONS(5864), + [anon_sym_friend] = ACTIONS(5864), + [anon_sym_public] = ACTIONS(5864), + [anon_sym_private] = ACTIONS(5864), + [anon_sym_protected] = ACTIONS(5864), + [anon_sym_using] = ACTIONS(5864), + [anon_sym_static_assert] = ACTIONS(5864), + [sym_semgrep_metavar] = ACTIONS(5866), }, - [2178] = { - [sym_identifier] = ACTIONS(3139), - [aux_sym_preproc_def_token1] = ACTIONS(3139), - [aux_sym_preproc_if_token1] = ACTIONS(3139), - [aux_sym_preproc_if_token2] = ACTIONS(3139), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3139), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3139), - [aux_sym_preproc_else_token1] = ACTIONS(3139), - [aux_sym_preproc_elif_token1] = ACTIONS(3139), - [sym_preproc_directive] = ACTIONS(3139), - [anon_sym_LPAREN2] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_AMP_AMP] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3139), - [anon_sym___extension__] = ACTIONS(3139), - [anon_sym_typedef] = ACTIONS(3139), - [anon_sym_extern] = ACTIONS(3139), - [anon_sym___attribute__] = ACTIONS(3139), - [anon_sym_COLON_COLON] = ACTIONS(3141), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3141), - [anon_sym___declspec] = ACTIONS(3139), - [anon_sym___based] = ACTIONS(3139), - [anon_sym_signed] = ACTIONS(3139), - [anon_sym_unsigned] = ACTIONS(3139), - [anon_sym_long] = ACTIONS(3139), - [anon_sym_short] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_static] = ACTIONS(3139), - [anon_sym_register] = ACTIONS(3139), - [anon_sym_inline] = ACTIONS(3139), - [anon_sym___inline] = ACTIONS(3139), - [anon_sym___inline__] = ACTIONS(3139), - [anon_sym___forceinline] = ACTIONS(3139), - [anon_sym_thread_local] = ACTIONS(3139), - [anon_sym___thread] = ACTIONS(3139), - [anon_sym_const] = ACTIONS(3139), - [anon_sym_constexpr] = ACTIONS(3139), - [anon_sym_volatile] = ACTIONS(3139), - [anon_sym_restrict] = ACTIONS(3139), - [anon_sym___restrict__] = ACTIONS(3139), - [anon_sym__Atomic] = ACTIONS(3139), - [anon_sym__Noreturn] = ACTIONS(3139), - [anon_sym_noreturn] = ACTIONS(3139), - [anon_sym_mutable] = ACTIONS(3139), - [anon_sym_constinit] = ACTIONS(3139), - [anon_sym_consteval] = ACTIONS(3139), - [sym_primitive_type] = ACTIONS(3139), - [anon_sym_enum] = ACTIONS(3139), - [anon_sym_class] = ACTIONS(3139), - [anon_sym_struct] = ACTIONS(3139), - [anon_sym_union] = ACTIONS(3139), + [2118] = { + [sym_identifier] = ACTIONS(5864), + [aux_sym_preproc_def_token1] = ACTIONS(5864), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5866), + [aux_sym_preproc_if_token1] = ACTIONS(5864), + [aux_sym_preproc_if_token2] = ACTIONS(5864), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5864), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5864), + [aux_sym_preproc_else_token1] = ACTIONS(5864), + [aux_sym_preproc_elif_token1] = ACTIONS(5864), + [sym_preproc_directive] = ACTIONS(5864), + [anon_sym_LPAREN2] = ACTIONS(5866), + [anon_sym_TILDE] = ACTIONS(5866), + [anon_sym_STAR] = ACTIONS(5866), + [anon_sym_AMP_AMP] = ACTIONS(5866), + [anon_sym_AMP] = ACTIONS(5864), + [anon_sym___extension__] = ACTIONS(5864), + [anon_sym_typedef] = ACTIONS(5864), + [anon_sym_extern] = ACTIONS(5864), + [anon_sym___attribute__] = ACTIONS(5864), + [anon_sym_COLON_COLON] = ACTIONS(5866), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5866), + [anon_sym___declspec] = ACTIONS(5864), + [anon_sym___based] = ACTIONS(5864), + [anon_sym_signed] = ACTIONS(5864), + [anon_sym_unsigned] = ACTIONS(5864), + [anon_sym_long] = ACTIONS(5864), + [anon_sym_short] = ACTIONS(5864), + [anon_sym_LBRACK] = ACTIONS(5864), + [anon_sym_static] = ACTIONS(5864), + [anon_sym_register] = ACTIONS(5864), + [anon_sym_inline] = ACTIONS(5864), + [anon_sym___inline] = ACTIONS(5864), + [anon_sym___inline__] = ACTIONS(5864), + [anon_sym___forceinline] = ACTIONS(5864), + [anon_sym_thread_local] = ACTIONS(5864), + [anon_sym___thread] = ACTIONS(5864), + [anon_sym_const] = ACTIONS(5864), + [anon_sym_constexpr] = ACTIONS(5864), + [anon_sym_volatile] = ACTIONS(5864), + [anon_sym_restrict] = ACTIONS(5864), + [anon_sym___restrict__] = ACTIONS(5864), + [anon_sym__Atomic] = ACTIONS(5864), + [anon_sym__Noreturn] = ACTIONS(5864), + [anon_sym_noreturn] = ACTIONS(5864), + [anon_sym_mutable] = ACTIONS(5864), + [anon_sym_constinit] = ACTIONS(5864), + [anon_sym_consteval] = ACTIONS(5864), + [sym_primitive_type] = ACTIONS(5864), + [anon_sym_enum] = ACTIONS(5864), + [anon_sym_class] = ACTIONS(5864), + [anon_sym_struct] = ACTIONS(5864), + [anon_sym_union] = ACTIONS(5864), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3139), - [anon_sym_decltype] = ACTIONS(3139), - [anon_sym_virtual] = ACTIONS(3139), - [anon_sym_alignas] = ACTIONS(3139), - [anon_sym_explicit] = ACTIONS(3139), - [anon_sym_typename] = ACTIONS(3139), - [anon_sym_template] = ACTIONS(3139), - [anon_sym_operator] = ACTIONS(3139), - [anon_sym_friend] = ACTIONS(3139), - [anon_sym_public] = ACTIONS(3139), - [anon_sym_private] = ACTIONS(3139), - [anon_sym_protected] = ACTIONS(3139), - [anon_sym_using] = ACTIONS(3139), - [anon_sym_static_assert] = ACTIONS(3139), + [sym_auto] = ACTIONS(5864), + [anon_sym_decltype] = ACTIONS(5864), + [anon_sym_virtual] = ACTIONS(5864), + [anon_sym_alignas] = ACTIONS(5864), + [anon_sym_explicit] = ACTIONS(5864), + [anon_sym_typename] = ACTIONS(5864), + [anon_sym_template] = ACTIONS(5864), + [anon_sym_operator] = ACTIONS(5864), + [anon_sym_friend] = ACTIONS(5864), + [anon_sym_public] = ACTIONS(5864), + [anon_sym_private] = ACTIONS(5864), + [anon_sym_protected] = ACTIONS(5864), + [anon_sym_using] = ACTIONS(5864), + [anon_sym_static_assert] = ACTIONS(5864), + [sym_semgrep_metavar] = ACTIONS(5866), }, - [2179] = { - [sym_identifier] = ACTIONS(5852), - [aux_sym_preproc_def_token1] = ACTIONS(5852), - [aux_sym_preproc_if_token1] = ACTIONS(5852), - [aux_sym_preproc_if_token2] = ACTIONS(5852), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5852), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5852), - [aux_sym_preproc_else_token1] = ACTIONS(5852), - [aux_sym_preproc_elif_token1] = ACTIONS(5852), - [sym_preproc_directive] = ACTIONS(5852), - [anon_sym_LPAREN2] = ACTIONS(5854), - [anon_sym_TILDE] = ACTIONS(5854), - [anon_sym_STAR] = ACTIONS(5854), - [anon_sym_AMP_AMP] = ACTIONS(5854), - [anon_sym_AMP] = ACTIONS(5852), - [anon_sym___extension__] = ACTIONS(5852), - [anon_sym_typedef] = ACTIONS(5852), - [anon_sym_extern] = ACTIONS(5852), - [anon_sym___attribute__] = ACTIONS(5852), - [anon_sym_COLON_COLON] = ACTIONS(5854), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5854), - [anon_sym___declspec] = ACTIONS(5852), - [anon_sym___based] = ACTIONS(5852), - [anon_sym_signed] = ACTIONS(5852), - [anon_sym_unsigned] = ACTIONS(5852), - [anon_sym_long] = ACTIONS(5852), - [anon_sym_short] = ACTIONS(5852), - [anon_sym_LBRACK] = ACTIONS(5852), - [anon_sym_static] = ACTIONS(5852), - [anon_sym_register] = ACTIONS(5852), - [anon_sym_inline] = ACTIONS(5852), - [anon_sym___inline] = ACTIONS(5852), - [anon_sym___inline__] = ACTIONS(5852), - [anon_sym___forceinline] = ACTIONS(5852), - [anon_sym_thread_local] = ACTIONS(5852), - [anon_sym___thread] = ACTIONS(5852), - [anon_sym_const] = ACTIONS(5852), - [anon_sym_constexpr] = ACTIONS(5852), - [anon_sym_volatile] = ACTIONS(5852), - [anon_sym_restrict] = ACTIONS(5852), - [anon_sym___restrict__] = ACTIONS(5852), - [anon_sym__Atomic] = ACTIONS(5852), - [anon_sym__Noreturn] = ACTIONS(5852), - [anon_sym_noreturn] = ACTIONS(5852), - [anon_sym_mutable] = ACTIONS(5852), - [anon_sym_constinit] = ACTIONS(5852), - [anon_sym_consteval] = ACTIONS(5852), - [sym_primitive_type] = ACTIONS(5852), - [anon_sym_enum] = ACTIONS(5852), - [anon_sym_class] = ACTIONS(5852), - [anon_sym_struct] = ACTIONS(5852), - [anon_sym_union] = ACTIONS(5852), + [2119] = { + [sym_identifier] = ACTIONS(5868), + [aux_sym_preproc_def_token1] = ACTIONS(5868), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5870), + [aux_sym_preproc_if_token1] = ACTIONS(5868), + [aux_sym_preproc_if_token2] = ACTIONS(5868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5868), + [aux_sym_preproc_else_token1] = ACTIONS(5868), + [aux_sym_preproc_elif_token1] = ACTIONS(5868), + [sym_preproc_directive] = ACTIONS(5868), + [anon_sym_LPAREN2] = ACTIONS(5870), + [anon_sym_TILDE] = ACTIONS(5870), + [anon_sym_STAR] = ACTIONS(5870), + [anon_sym_AMP_AMP] = ACTIONS(5870), + [anon_sym_AMP] = ACTIONS(5868), + [anon_sym___extension__] = ACTIONS(5868), + [anon_sym_typedef] = ACTIONS(5868), + [anon_sym_extern] = ACTIONS(5868), + [anon_sym___attribute__] = ACTIONS(5868), + [anon_sym_COLON_COLON] = ACTIONS(5870), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5870), + [anon_sym___declspec] = ACTIONS(5868), + [anon_sym___based] = ACTIONS(5868), + [anon_sym_signed] = ACTIONS(5868), + [anon_sym_unsigned] = ACTIONS(5868), + [anon_sym_long] = ACTIONS(5868), + [anon_sym_short] = ACTIONS(5868), + [anon_sym_LBRACK] = ACTIONS(5868), + [anon_sym_static] = ACTIONS(5868), + [anon_sym_register] = ACTIONS(5868), + [anon_sym_inline] = ACTIONS(5868), + [anon_sym___inline] = ACTIONS(5868), + [anon_sym___inline__] = ACTIONS(5868), + [anon_sym___forceinline] = ACTIONS(5868), + [anon_sym_thread_local] = ACTIONS(5868), + [anon_sym___thread] = ACTIONS(5868), + [anon_sym_const] = ACTIONS(5868), + [anon_sym_constexpr] = ACTIONS(5868), + [anon_sym_volatile] = ACTIONS(5868), + [anon_sym_restrict] = ACTIONS(5868), + [anon_sym___restrict__] = ACTIONS(5868), + [anon_sym__Atomic] = ACTIONS(5868), + [anon_sym__Noreturn] = ACTIONS(5868), + [anon_sym_noreturn] = ACTIONS(5868), + [anon_sym_mutable] = ACTIONS(5868), + [anon_sym_constinit] = ACTIONS(5868), + [anon_sym_consteval] = ACTIONS(5868), + [sym_primitive_type] = ACTIONS(5868), + [anon_sym_enum] = ACTIONS(5868), + [anon_sym_class] = ACTIONS(5868), + [anon_sym_struct] = ACTIONS(5868), + [anon_sym_union] = ACTIONS(5868), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5852), - [anon_sym_decltype] = ACTIONS(5852), - [anon_sym_virtual] = ACTIONS(5852), - [anon_sym_alignas] = ACTIONS(5852), - [anon_sym_explicit] = ACTIONS(5852), - [anon_sym_typename] = ACTIONS(5852), - [anon_sym_template] = ACTIONS(5852), - [anon_sym_operator] = ACTIONS(5852), - [anon_sym_friend] = ACTIONS(5852), - [anon_sym_public] = ACTIONS(5852), - [anon_sym_private] = ACTIONS(5852), - [anon_sym_protected] = ACTIONS(5852), - [anon_sym_using] = ACTIONS(5852), - [anon_sym_static_assert] = ACTIONS(5852), + [sym_auto] = ACTIONS(5868), + [anon_sym_decltype] = ACTIONS(5868), + [anon_sym_virtual] = ACTIONS(5868), + [anon_sym_alignas] = ACTIONS(5868), + [anon_sym_explicit] = ACTIONS(5868), + [anon_sym_typename] = ACTIONS(5868), + [anon_sym_template] = ACTIONS(5868), + [anon_sym_operator] = ACTIONS(5868), + [anon_sym_friend] = ACTIONS(5868), + [anon_sym_public] = ACTIONS(5868), + [anon_sym_private] = ACTIONS(5868), + [anon_sym_protected] = ACTIONS(5868), + [anon_sym_using] = ACTIONS(5868), + [anon_sym_static_assert] = ACTIONS(5868), + [sym_semgrep_metavar] = ACTIONS(5870), }, - [2180] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2129), - [ts_builtin_sym_end] = ACTIONS(6022), - [sym_identifier] = ACTIONS(6024), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6022), - [anon_sym_COMMA] = ACTIONS(6022), - [anon_sym_RPAREN] = ACTIONS(6022), - [anon_sym_LPAREN2] = ACTIONS(6022), - [anon_sym_DASH] = ACTIONS(6026), - [anon_sym_PLUS] = ACTIONS(6026), - [anon_sym_STAR] = ACTIONS(6026), - [anon_sym_SLASH] = ACTIONS(6026), - [anon_sym_PERCENT] = ACTIONS(6026), - [anon_sym_PIPE_PIPE] = ACTIONS(6022), - [anon_sym_AMP_AMP] = ACTIONS(6022), - [anon_sym_PIPE] = ACTIONS(6026), - [anon_sym_CARET] = ACTIONS(6026), - [anon_sym_AMP] = ACTIONS(6026), - [anon_sym_EQ_EQ] = ACTIONS(6022), - [anon_sym_BANG_EQ] = ACTIONS(6022), - [anon_sym_GT] = ACTIONS(6026), - [anon_sym_GT_EQ] = ACTIONS(6022), - [anon_sym_LT_EQ] = ACTIONS(6026), - [anon_sym_LT] = ACTIONS(6026), - [anon_sym_LT_LT] = ACTIONS(6026), - [anon_sym_GT_GT] = ACTIONS(6026), - [anon_sym_SEMI] = ACTIONS(6022), - [anon_sym_LBRACE] = ACTIONS(6022), - [anon_sym_RBRACE] = ACTIONS(6022), - [anon_sym_signed] = ACTIONS(6112), - [anon_sym_unsigned] = ACTIONS(6112), - [anon_sym_long] = ACTIONS(6112), - [anon_sym_short] = ACTIONS(6112), - [anon_sym_LBRACK] = ACTIONS(6022), - [anon_sym_RBRACK] = ACTIONS(6022), - [anon_sym_EQ] = ACTIONS(6026), - [sym_primitive_type] = ACTIONS(6030), - [anon_sym_COLON] = ACTIONS(6022), - [anon_sym_QMARK] = ACTIONS(6022), - [anon_sym_STAR_EQ] = ACTIONS(6022), - [anon_sym_SLASH_EQ] = ACTIONS(6022), - [anon_sym_PERCENT_EQ] = ACTIONS(6022), - [anon_sym_PLUS_EQ] = ACTIONS(6022), - [anon_sym_DASH_EQ] = ACTIONS(6022), - [anon_sym_LT_LT_EQ] = ACTIONS(6022), - [anon_sym_GT_GT_EQ] = ACTIONS(6022), - [anon_sym_AMP_EQ] = ACTIONS(6022), - [anon_sym_CARET_EQ] = ACTIONS(6022), - [anon_sym_PIPE_EQ] = ACTIONS(6022), - [anon_sym_and_eq] = ACTIONS(6026), - [anon_sym_or_eq] = ACTIONS(6026), - [anon_sym_xor_eq] = ACTIONS(6026), - [anon_sym_LT_EQ_GT] = ACTIONS(6022), - [anon_sym_or] = ACTIONS(6026), - [anon_sym_and] = ACTIONS(6026), - [anon_sym_bitor] = ACTIONS(6026), - [anon_sym_xor] = ACTIONS(6026), - [anon_sym_bitand] = ACTIONS(6026), - [anon_sym_not_eq] = ACTIONS(6026), - [anon_sym_DASH_DASH] = ACTIONS(6022), - [anon_sym_PLUS_PLUS] = ACTIONS(6022), - [anon_sym_DOT] = ACTIONS(6026), - [anon_sym_DOT_STAR] = ACTIONS(6022), - [anon_sym_DASH_GT] = ACTIONS(6022), + [2120] = { + [sym_identifier] = ACTIONS(5872), + [aux_sym_preproc_def_token1] = ACTIONS(5872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5874), + [aux_sym_preproc_if_token1] = ACTIONS(5872), + [aux_sym_preproc_if_token2] = ACTIONS(5872), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5872), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5872), + [aux_sym_preproc_else_token1] = ACTIONS(5872), + [aux_sym_preproc_elif_token1] = ACTIONS(5872), + [sym_preproc_directive] = ACTIONS(5872), + [anon_sym_LPAREN2] = ACTIONS(5874), + [anon_sym_TILDE] = ACTIONS(5874), + [anon_sym_STAR] = ACTIONS(5874), + [anon_sym_AMP_AMP] = ACTIONS(5874), + [anon_sym_AMP] = ACTIONS(5872), + [anon_sym___extension__] = ACTIONS(5872), + [anon_sym_typedef] = ACTIONS(5872), + [anon_sym_extern] = ACTIONS(5872), + [anon_sym___attribute__] = ACTIONS(5872), + [anon_sym_COLON_COLON] = ACTIONS(5874), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5874), + [anon_sym___declspec] = ACTIONS(5872), + [anon_sym___based] = ACTIONS(5872), + [anon_sym_signed] = ACTIONS(5872), + [anon_sym_unsigned] = ACTIONS(5872), + [anon_sym_long] = ACTIONS(5872), + [anon_sym_short] = ACTIONS(5872), + [anon_sym_LBRACK] = ACTIONS(5872), + [anon_sym_static] = ACTIONS(5872), + [anon_sym_register] = ACTIONS(5872), + [anon_sym_inline] = ACTIONS(5872), + [anon_sym___inline] = ACTIONS(5872), + [anon_sym___inline__] = ACTIONS(5872), + [anon_sym___forceinline] = ACTIONS(5872), + [anon_sym_thread_local] = ACTIONS(5872), + [anon_sym___thread] = ACTIONS(5872), + [anon_sym_const] = ACTIONS(5872), + [anon_sym_constexpr] = ACTIONS(5872), + [anon_sym_volatile] = ACTIONS(5872), + [anon_sym_restrict] = ACTIONS(5872), + [anon_sym___restrict__] = ACTIONS(5872), + [anon_sym__Atomic] = ACTIONS(5872), + [anon_sym__Noreturn] = ACTIONS(5872), + [anon_sym_noreturn] = ACTIONS(5872), + [anon_sym_mutable] = ACTIONS(5872), + [anon_sym_constinit] = ACTIONS(5872), + [anon_sym_consteval] = ACTIONS(5872), + [sym_primitive_type] = ACTIONS(5872), + [anon_sym_enum] = ACTIONS(5872), + [anon_sym_class] = ACTIONS(5872), + [anon_sym_struct] = ACTIONS(5872), + [anon_sym_union] = ACTIONS(5872), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6026), - [anon_sym_decltype] = ACTIONS(6026), + [sym_auto] = ACTIONS(5872), + [anon_sym_decltype] = ACTIONS(5872), + [anon_sym_virtual] = ACTIONS(5872), + [anon_sym_alignas] = ACTIONS(5872), + [anon_sym_explicit] = ACTIONS(5872), + [anon_sym_typename] = ACTIONS(5872), + [anon_sym_template] = ACTIONS(5872), + [anon_sym_operator] = ACTIONS(5872), + [anon_sym_friend] = ACTIONS(5872), + [anon_sym_public] = ACTIONS(5872), + [anon_sym_private] = ACTIONS(5872), + [anon_sym_protected] = ACTIONS(5872), + [anon_sym_using] = ACTIONS(5872), + [anon_sym_static_assert] = ACTIONS(5872), + [sym_semgrep_metavar] = ACTIONS(5874), }, - [2181] = { + [2121] = { [sym_identifier] = ACTIONS(5880), [aux_sym_preproc_def_token1] = ACTIONS(5880), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5882), [aux_sym_preproc_if_token1] = ACTIONS(5880), [aux_sym_preproc_if_token2] = ACTIONS(5880), [aux_sym_preproc_ifdef_token1] = ACTIONS(5880), @@ -311797,418 +296606,502 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5880), [anon_sym_using] = ACTIONS(5880), [anon_sym_static_assert] = ACTIONS(5880), + [sym_semgrep_metavar] = ACTIONS(5882), }, - [2182] = { - [sym_attribute_specifier] = STATE(2585), - [sym_field_declaration_list] = STATE(2506), - [sym_virtual_specifier] = STATE(8385), - [sym_base_class_clause] = STATE(9327), - [ts_builtin_sym_end] = ACTIONS(6078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6078), - [anon_sym_COMMA] = ACTIONS(6078), - [anon_sym_RPAREN] = ACTIONS(6078), - [anon_sym_LPAREN2] = ACTIONS(6078), - [anon_sym_DASH] = ACTIONS(6076), - [anon_sym_PLUS] = ACTIONS(6076), - [anon_sym_STAR] = ACTIONS(6078), - [anon_sym_SLASH] = ACTIONS(6076), - [anon_sym_PERCENT] = ACTIONS(6078), - [anon_sym_PIPE_PIPE] = ACTIONS(6078), - [anon_sym_AMP_AMP] = ACTIONS(6078), - [anon_sym_PIPE] = ACTIONS(6076), - [anon_sym_CARET] = ACTIONS(6078), - [anon_sym_AMP] = ACTIONS(6076), - [anon_sym_EQ_EQ] = ACTIONS(6078), - [anon_sym_BANG_EQ] = ACTIONS(6078), - [anon_sym_GT] = ACTIONS(6076), - [anon_sym_GT_EQ] = ACTIONS(6078), - [anon_sym_LT_EQ] = ACTIONS(6076), - [anon_sym_LT] = ACTIONS(6076), - [anon_sym_LT_LT] = ACTIONS(6078), - [anon_sym_GT_GT] = ACTIONS(6078), - [anon_sym_SEMI] = ACTIONS(6078), - [anon_sym___extension__] = ACTIONS(6078), - [anon_sym___attribute__] = ACTIONS(6114), - [anon_sym_LBRACE] = ACTIONS(6116), - [anon_sym_RBRACE] = ACTIONS(6078), - [anon_sym_LBRACK] = ACTIONS(6078), - [anon_sym_RBRACK] = ACTIONS(6078), - [anon_sym_const] = ACTIONS(6076), - [anon_sym_constexpr] = ACTIONS(6078), - [anon_sym_volatile] = ACTIONS(6078), - [anon_sym_restrict] = ACTIONS(6078), - [anon_sym___restrict__] = ACTIONS(6078), - [anon_sym__Atomic] = ACTIONS(6078), - [anon_sym__Noreturn] = ACTIONS(6078), - [anon_sym_noreturn] = ACTIONS(6078), - [anon_sym_mutable] = ACTIONS(6078), - [anon_sym_constinit] = ACTIONS(6078), - [anon_sym_consteval] = ACTIONS(6078), - [anon_sym_COLON] = ACTIONS(6084), - [anon_sym_QMARK] = ACTIONS(6078), - [anon_sym_LT_EQ_GT] = ACTIONS(6078), - [anon_sym_or] = ACTIONS(6078), - [anon_sym_and] = ACTIONS(6078), - [anon_sym_bitor] = ACTIONS(6078), - [anon_sym_xor] = ACTIONS(6078), - [anon_sym_bitand] = ACTIONS(6078), - [anon_sym_not_eq] = ACTIONS(6078), - [anon_sym_DASH_DASH] = ACTIONS(6078), - [anon_sym_PLUS_PLUS] = ACTIONS(6078), - [anon_sym_DOT] = ACTIONS(6076), - [anon_sym_DOT_STAR] = ACTIONS(6078), - [anon_sym_DASH_GT] = ACTIONS(6078), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6078), - [anon_sym_decltype] = ACTIONS(6078), - [anon_sym_final] = ACTIONS(6118), - [anon_sym_override] = ACTIONS(6118), - [anon_sym_requires] = ACTIONS(6078), - [sym_semgrep_metavar] = ACTIONS(6078), + [2122] = { + [sym_identifier] = ACTIONS(3438), + [aux_sym_preproc_def_token1] = ACTIONS(3438), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3440), + [aux_sym_preproc_if_token1] = ACTIONS(3438), + [aux_sym_preproc_if_token2] = ACTIONS(3438), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3438), + [aux_sym_preproc_else_token1] = ACTIONS(3438), + [aux_sym_preproc_elif_token1] = ACTIONS(3438), + [sym_preproc_directive] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3440), + [anon_sym_STAR] = ACTIONS(3440), + [anon_sym_AMP_AMP] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym___extension__] = ACTIONS(3438), + [anon_sym_typedef] = ACTIONS(3438), + [anon_sym_extern] = ACTIONS(3438), + [anon_sym___attribute__] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3440), + [anon_sym___declspec] = ACTIONS(3438), + [anon_sym___based] = ACTIONS(3438), + [anon_sym_signed] = ACTIONS(3438), + [anon_sym_unsigned] = ACTIONS(3438), + [anon_sym_long] = ACTIONS(3438), + [anon_sym_short] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_static] = ACTIONS(3438), + [anon_sym_register] = ACTIONS(3438), + [anon_sym_inline] = ACTIONS(3438), + [anon_sym___inline] = ACTIONS(3438), + [anon_sym___inline__] = ACTIONS(3438), + [anon_sym___forceinline] = ACTIONS(3438), + [anon_sym_thread_local] = ACTIONS(3438), + [anon_sym___thread] = ACTIONS(3438), + [anon_sym_const] = ACTIONS(3438), + [anon_sym_constexpr] = ACTIONS(3438), + [anon_sym_volatile] = ACTIONS(3438), + [anon_sym_restrict] = ACTIONS(3438), + [anon_sym___restrict__] = ACTIONS(3438), + [anon_sym__Atomic] = ACTIONS(3438), + [anon_sym__Noreturn] = ACTIONS(3438), + [anon_sym_noreturn] = ACTIONS(3438), + [anon_sym_mutable] = ACTIONS(3438), + [anon_sym_constinit] = ACTIONS(3438), + [anon_sym_consteval] = ACTIONS(3438), + [sym_primitive_type] = ACTIONS(3438), + [anon_sym_enum] = ACTIONS(3438), + [anon_sym_class] = ACTIONS(3438), + [anon_sym_struct] = ACTIONS(3438), + [anon_sym_union] = ACTIONS(3438), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3438), + [anon_sym_decltype] = ACTIONS(3438), + [anon_sym_virtual] = ACTIONS(3438), + [anon_sym_alignas] = ACTIONS(3438), + [anon_sym_explicit] = ACTIONS(3438), + [anon_sym_typename] = ACTIONS(3438), + [anon_sym_template] = ACTIONS(3438), + [anon_sym_operator] = ACTIONS(3438), + [anon_sym_friend] = ACTIONS(3438), + [anon_sym_public] = ACTIONS(3438), + [anon_sym_private] = ACTIONS(3438), + [anon_sym_protected] = ACTIONS(3438), + [anon_sym_using] = ACTIONS(3438), + [anon_sym_static_assert] = ACTIONS(3438), + [sym_semgrep_metavar] = ACTIONS(3440), }, - [2183] = { - [sym_identifier] = ACTIONS(5942), - [aux_sym_preproc_def_token1] = ACTIONS(5942), - [aux_sym_preproc_if_token1] = ACTIONS(5942), - [aux_sym_preproc_if_token2] = ACTIONS(5942), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5942), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5942), - [aux_sym_preproc_else_token1] = ACTIONS(5942), - [aux_sym_preproc_elif_token1] = ACTIONS(5942), - [sym_preproc_directive] = ACTIONS(5942), - [anon_sym_LPAREN2] = ACTIONS(5944), - [anon_sym_TILDE] = ACTIONS(5944), - [anon_sym_STAR] = ACTIONS(5944), - [anon_sym_AMP_AMP] = ACTIONS(5944), - [anon_sym_AMP] = ACTIONS(5942), - [anon_sym___extension__] = ACTIONS(5942), - [anon_sym_typedef] = ACTIONS(5942), - [anon_sym_extern] = ACTIONS(5942), - [anon_sym___attribute__] = ACTIONS(5942), - [anon_sym_COLON_COLON] = ACTIONS(5944), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5944), - [anon_sym___declspec] = ACTIONS(5942), - [anon_sym___based] = ACTIONS(5942), - [anon_sym_signed] = ACTIONS(5942), - [anon_sym_unsigned] = ACTIONS(5942), - [anon_sym_long] = ACTIONS(5942), - [anon_sym_short] = ACTIONS(5942), - [anon_sym_LBRACK] = ACTIONS(5942), - [anon_sym_static] = ACTIONS(5942), - [anon_sym_register] = ACTIONS(5942), - [anon_sym_inline] = ACTIONS(5942), - [anon_sym___inline] = ACTIONS(5942), - [anon_sym___inline__] = ACTIONS(5942), - [anon_sym___forceinline] = ACTIONS(5942), - [anon_sym_thread_local] = ACTIONS(5942), - [anon_sym___thread] = ACTIONS(5942), - [anon_sym_const] = ACTIONS(5942), - [anon_sym_constexpr] = ACTIONS(5942), - [anon_sym_volatile] = ACTIONS(5942), - [anon_sym_restrict] = ACTIONS(5942), - [anon_sym___restrict__] = ACTIONS(5942), - [anon_sym__Atomic] = ACTIONS(5942), - [anon_sym__Noreturn] = ACTIONS(5942), - [anon_sym_noreturn] = ACTIONS(5942), - [anon_sym_mutable] = ACTIONS(5942), - [anon_sym_constinit] = ACTIONS(5942), - [anon_sym_consteval] = ACTIONS(5942), - [sym_primitive_type] = ACTIONS(5942), - [anon_sym_enum] = ACTIONS(5942), - [anon_sym_class] = ACTIONS(5942), - [anon_sym_struct] = ACTIONS(5942), - [anon_sym_union] = ACTIONS(5942), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5942), - [anon_sym_decltype] = ACTIONS(5942), - [anon_sym_virtual] = ACTIONS(5942), - [anon_sym_alignas] = ACTIONS(5942), - [anon_sym_explicit] = ACTIONS(5942), - [anon_sym_typename] = ACTIONS(5942), - [anon_sym_template] = ACTIONS(5942), - [anon_sym_operator] = ACTIONS(5942), - [anon_sym_friend] = ACTIONS(5942), - [anon_sym_public] = ACTIONS(5942), - [anon_sym_private] = ACTIONS(5942), - [anon_sym_protected] = ACTIONS(5942), - [anon_sym_using] = ACTIONS(5942), - [anon_sym_static_assert] = ACTIONS(5942), + [2123] = { + [ts_builtin_sym_end] = ACTIONS(5381), + [sym_identifier] = ACTIONS(5374), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5381), + [anon_sym_COMMA] = ACTIONS(5381), + [anon_sym_RPAREN] = ACTIONS(5381), + [aux_sym_preproc_if_token2] = ACTIONS(5381), + [aux_sym_preproc_else_token1] = ACTIONS(5381), + [aux_sym_preproc_elif_token1] = ACTIONS(5374), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5381), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5381), + [anon_sym_LPAREN2] = ACTIONS(5381), + [anon_sym_DASH] = ACTIONS(5374), + [anon_sym_PLUS] = ACTIONS(5374), + [anon_sym_STAR] = ACTIONS(5374), + [anon_sym_SLASH] = ACTIONS(5374), + [anon_sym_PERCENT] = ACTIONS(5374), + [anon_sym_PIPE_PIPE] = ACTIONS(5381), + [anon_sym_AMP_AMP] = ACTIONS(5381), + [anon_sym_PIPE] = ACTIONS(5374), + [anon_sym_CARET] = ACTIONS(5374), + [anon_sym_AMP] = ACTIONS(5374), + [anon_sym_EQ_EQ] = ACTIONS(5381), + [anon_sym_BANG_EQ] = ACTIONS(5381), + [anon_sym_GT] = ACTIONS(5374), + [anon_sym_GT_EQ] = ACTIONS(5381), + [anon_sym_LT_EQ] = ACTIONS(5374), + [anon_sym_LT] = ACTIONS(5374), + [anon_sym_LT_LT] = ACTIONS(5374), + [anon_sym_GT_GT] = ACTIONS(5374), + [anon_sym_SEMI] = ACTIONS(5381), + [anon_sym___attribute__] = ACTIONS(5374), + [anon_sym_LBRACE] = ACTIONS(5381), + [anon_sym_RBRACE] = ACTIONS(5381), + [anon_sym_LBRACK] = ACTIONS(5381), + [anon_sym_RBRACK] = ACTIONS(5381), + [anon_sym_EQ] = ACTIONS(5374), + [anon_sym_COLON] = ACTIONS(5381), + [anon_sym_QMARK] = ACTIONS(5381), + [anon_sym_STAR_EQ] = ACTIONS(5381), + [anon_sym_SLASH_EQ] = ACTIONS(5381), + [anon_sym_PERCENT_EQ] = ACTIONS(5381), + [anon_sym_PLUS_EQ] = ACTIONS(5381), + [anon_sym_DASH_EQ] = ACTIONS(5381), + [anon_sym_LT_LT_EQ] = ACTIONS(5381), + [anon_sym_GT_GT_EQ] = ACTIONS(5381), + [anon_sym_AMP_EQ] = ACTIONS(5381), + [anon_sym_CARET_EQ] = ACTIONS(5381), + [anon_sym_PIPE_EQ] = ACTIONS(5381), + [anon_sym_and_eq] = ACTIONS(5374), + [anon_sym_or_eq] = ACTIONS(5374), + [anon_sym_xor_eq] = ACTIONS(5374), + [anon_sym_LT_EQ_GT] = ACTIONS(5381), + [anon_sym_or] = ACTIONS(5374), + [anon_sym_and] = ACTIONS(5374), + [anon_sym_bitor] = ACTIONS(5374), + [anon_sym_xor] = ACTIONS(5374), + [anon_sym_bitand] = ACTIONS(5374), + [anon_sym_not_eq] = ACTIONS(5374), + [anon_sym_DASH_DASH] = ACTIONS(5381), + [anon_sym_PLUS_PLUS] = ACTIONS(5381), + [anon_sym_DOT] = ACTIONS(5374), + [anon_sym_DOT_STAR] = ACTIONS(5381), + [anon_sym_DASH_GT] = ACTIONS(5381), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5374), + [anon_sym_decltype] = ACTIONS(5374), + [anon_sym_final] = ACTIONS(5374), + [anon_sym_override] = ACTIONS(5374), }, - [2184] = { - [sym_string_literal] = STATE(2138), - [sym_template_argument_list] = STATE(3841), - [sym_raw_string_literal] = STATE(2138), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(4829), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4837), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(6120), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_EQ] = ACTIONS(4837), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4829), - [anon_sym_SLASH_EQ] = ACTIONS(4829), - [anon_sym_PERCENT_EQ] = ACTIONS(4829), - [anon_sym_PLUS_EQ] = ACTIONS(4829), - [anon_sym_DASH_EQ] = ACTIONS(4829), - [anon_sym_LT_LT_EQ] = ACTIONS(4829), - [anon_sym_GT_GT_EQ] = ACTIONS(4837), - [anon_sym_AMP_EQ] = ACTIONS(4829), - [anon_sym_CARET_EQ] = ACTIONS(4829), - [anon_sym_PIPE_EQ] = ACTIONS(4829), - [anon_sym_and_eq] = ACTIONS(4829), - [anon_sym_or_eq] = ACTIONS(4829), - [anon_sym_xor_eq] = ACTIONS(4829), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4829), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4829), - [anon_sym_not_eq] = ACTIONS(4829), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(6102), - [anon_sym_u_DQUOTE] = ACTIONS(6102), - [anon_sym_U_DQUOTE] = ACTIONS(6102), - [anon_sym_u8_DQUOTE] = ACTIONS(6102), - [anon_sym_DQUOTE] = ACTIONS(6102), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(4829), - [anon_sym_R_DQUOTE] = ACTIONS(6104), - [anon_sym_LR_DQUOTE] = ACTIONS(6104), - [anon_sym_uR_DQUOTE] = ACTIONS(6104), - [anon_sym_UR_DQUOTE] = ACTIONS(6104), - [anon_sym_u8R_DQUOTE] = ACTIONS(6104), + [2124] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1877), + [ts_builtin_sym_end] = ACTIONS(5975), + [sym_identifier] = ACTIONS(5653), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5975), + [anon_sym_COMMA] = ACTIONS(5975), + [anon_sym_RPAREN] = ACTIONS(5975), + [anon_sym_LPAREN2] = ACTIONS(5975), + [anon_sym_DASH] = ACTIONS(5978), + [anon_sym_PLUS] = ACTIONS(5978), + [anon_sym_STAR] = ACTIONS(5975), + [anon_sym_SLASH] = ACTIONS(5978), + [anon_sym_PERCENT] = ACTIONS(5975), + [anon_sym_PIPE_PIPE] = ACTIONS(5975), + [anon_sym_AMP_AMP] = ACTIONS(5975), + [anon_sym_PIPE] = ACTIONS(5978), + [anon_sym_CARET] = ACTIONS(5975), + [anon_sym_AMP] = ACTIONS(5978), + [anon_sym_EQ_EQ] = ACTIONS(5975), + [anon_sym_BANG_EQ] = ACTIONS(5975), + [anon_sym_GT] = ACTIONS(5978), + [anon_sym_GT_EQ] = ACTIONS(5975), + [anon_sym_LT_EQ] = ACTIONS(5978), + [anon_sym_LT] = ACTIONS(5978), + [anon_sym_LT_LT] = ACTIONS(5975), + [anon_sym_GT_GT] = ACTIONS(5975), + [anon_sym_SEMI] = ACTIONS(5975), + [anon_sym___extension__] = ACTIONS(5978), + [anon_sym___attribute__] = ACTIONS(5978), + [anon_sym_LBRACE] = ACTIONS(5975), + [anon_sym_RBRACE] = ACTIONS(5975), + [anon_sym_signed] = ACTIONS(5655), + [anon_sym_unsigned] = ACTIONS(5655), + [anon_sym_long] = ACTIONS(5655), + [anon_sym_short] = ACTIONS(5655), + [anon_sym_LBRACK] = ACTIONS(5975), + [anon_sym_RBRACK] = ACTIONS(5975), + [anon_sym_const] = ACTIONS(5978), + [anon_sym_constexpr] = ACTIONS(5978), + [anon_sym_volatile] = ACTIONS(5978), + [anon_sym_restrict] = ACTIONS(5978), + [anon_sym___restrict__] = ACTIONS(5978), + [anon_sym__Atomic] = ACTIONS(5978), + [anon_sym__Noreturn] = ACTIONS(5978), + [anon_sym_noreturn] = ACTIONS(5978), + [anon_sym_mutable] = ACTIONS(5978), + [anon_sym_constinit] = ACTIONS(5978), + [anon_sym_consteval] = ACTIONS(5978), + [sym_primitive_type] = ACTIONS(5653), + [anon_sym_COLON] = ACTIONS(5975), + [anon_sym_QMARK] = ACTIONS(5975), + [anon_sym_LT_EQ_GT] = ACTIONS(5975), + [anon_sym_or] = ACTIONS(5978), + [anon_sym_and] = ACTIONS(5978), + [anon_sym_bitor] = ACTIONS(5978), + [anon_sym_xor] = ACTIONS(5978), + [anon_sym_bitand] = ACTIONS(5978), + [anon_sym_not_eq] = ACTIONS(5978), + [anon_sym_DASH_DASH] = ACTIONS(5975), + [anon_sym_PLUS_PLUS] = ACTIONS(5975), + [anon_sym_DOT] = ACTIONS(5978), + [anon_sym_DOT_STAR] = ACTIONS(5975), + [anon_sym_DASH_GT] = ACTIONS(5975), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5978), + [anon_sym_decltype] = ACTIONS(5978), + [anon_sym_final] = ACTIONS(5978), + [anon_sym_override] = ACTIONS(5978), + [anon_sym_requires] = ACTIONS(5978), }, - [2185] = { - [sym_identifier] = ACTIONS(5913), - [aux_sym_preproc_def_token1] = ACTIONS(5913), - [aux_sym_preproc_if_token1] = ACTIONS(5913), - [aux_sym_preproc_if_token2] = ACTIONS(5913), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5913), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5913), - [aux_sym_preproc_else_token1] = ACTIONS(5913), - [aux_sym_preproc_elif_token1] = ACTIONS(5913), - [sym_preproc_directive] = ACTIONS(5913), - [anon_sym_LPAREN2] = ACTIONS(5915), - [anon_sym_TILDE] = ACTIONS(5915), - [anon_sym_STAR] = ACTIONS(5915), - [anon_sym_AMP_AMP] = ACTIONS(5915), - [anon_sym_AMP] = ACTIONS(5913), - [anon_sym___extension__] = ACTIONS(5913), - [anon_sym_typedef] = ACTIONS(5913), - [anon_sym_extern] = ACTIONS(5913), - [anon_sym___attribute__] = ACTIONS(5913), - [anon_sym_COLON_COLON] = ACTIONS(5915), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5915), - [anon_sym___declspec] = ACTIONS(5913), - [anon_sym___based] = ACTIONS(5913), - [anon_sym_signed] = ACTIONS(5913), - [anon_sym_unsigned] = ACTIONS(5913), - [anon_sym_long] = ACTIONS(5913), - [anon_sym_short] = ACTIONS(5913), - [anon_sym_LBRACK] = ACTIONS(5913), - [anon_sym_static] = ACTIONS(5913), - [anon_sym_register] = ACTIONS(5913), - [anon_sym_inline] = ACTIONS(5913), - [anon_sym___inline] = ACTIONS(5913), - [anon_sym___inline__] = ACTIONS(5913), - [anon_sym___forceinline] = ACTIONS(5913), - [anon_sym_thread_local] = ACTIONS(5913), - [anon_sym___thread] = ACTIONS(5913), - [anon_sym_const] = ACTIONS(5913), - [anon_sym_constexpr] = ACTIONS(5913), - [anon_sym_volatile] = ACTIONS(5913), - [anon_sym_restrict] = ACTIONS(5913), - [anon_sym___restrict__] = ACTIONS(5913), - [anon_sym__Atomic] = ACTIONS(5913), - [anon_sym__Noreturn] = ACTIONS(5913), - [anon_sym_noreturn] = ACTIONS(5913), - [anon_sym_mutable] = ACTIONS(5913), - [anon_sym_constinit] = ACTIONS(5913), - [anon_sym_consteval] = ACTIONS(5913), - [sym_primitive_type] = ACTIONS(5913), - [anon_sym_enum] = ACTIONS(5913), - [anon_sym_class] = ACTIONS(5913), - [anon_sym_struct] = ACTIONS(5913), - [anon_sym_union] = ACTIONS(5913), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5913), - [anon_sym_decltype] = ACTIONS(5913), - [anon_sym_virtual] = ACTIONS(5913), - [anon_sym_alignas] = ACTIONS(5913), - [anon_sym_explicit] = ACTIONS(5913), - [anon_sym_typename] = ACTIONS(5913), - [anon_sym_template] = ACTIONS(5913), - [anon_sym_operator] = ACTIONS(5913), - [anon_sym_friend] = ACTIONS(5913), - [anon_sym_public] = ACTIONS(5913), - [anon_sym_private] = ACTIONS(5913), - [anon_sym_protected] = ACTIONS(5913), - [anon_sym_using] = ACTIONS(5913), - [anon_sym_static_assert] = ACTIONS(5913), + [2125] = { + [sym_identifier] = ACTIONS(5880), + [aux_sym_preproc_def_token1] = ACTIONS(5880), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5882), + [aux_sym_preproc_if_token1] = ACTIONS(5880), + [aux_sym_preproc_if_token2] = ACTIONS(5880), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5880), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5880), + [aux_sym_preproc_else_token1] = ACTIONS(5880), + [aux_sym_preproc_elif_token1] = ACTIONS(5880), + [sym_preproc_directive] = ACTIONS(5880), + [anon_sym_LPAREN2] = ACTIONS(5882), + [anon_sym_TILDE] = ACTIONS(5882), + [anon_sym_STAR] = ACTIONS(5882), + [anon_sym_AMP_AMP] = ACTIONS(5882), + [anon_sym_AMP] = ACTIONS(5880), + [anon_sym___extension__] = ACTIONS(5880), + [anon_sym_typedef] = ACTIONS(5880), + [anon_sym_extern] = ACTIONS(5880), + [anon_sym___attribute__] = ACTIONS(5880), + [anon_sym_COLON_COLON] = ACTIONS(5882), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5882), + [anon_sym___declspec] = ACTIONS(5880), + [anon_sym___based] = ACTIONS(5880), + [anon_sym_signed] = ACTIONS(5880), + [anon_sym_unsigned] = ACTIONS(5880), + [anon_sym_long] = ACTIONS(5880), + [anon_sym_short] = ACTIONS(5880), + [anon_sym_LBRACK] = ACTIONS(5880), + [anon_sym_static] = ACTIONS(5880), + [anon_sym_register] = ACTIONS(5880), + [anon_sym_inline] = ACTIONS(5880), + [anon_sym___inline] = ACTIONS(5880), + [anon_sym___inline__] = ACTIONS(5880), + [anon_sym___forceinline] = ACTIONS(5880), + [anon_sym_thread_local] = ACTIONS(5880), + [anon_sym___thread] = ACTIONS(5880), + [anon_sym_const] = ACTIONS(5880), + [anon_sym_constexpr] = ACTIONS(5880), + [anon_sym_volatile] = ACTIONS(5880), + [anon_sym_restrict] = ACTIONS(5880), + [anon_sym___restrict__] = ACTIONS(5880), + [anon_sym__Atomic] = ACTIONS(5880), + [anon_sym__Noreturn] = ACTIONS(5880), + [anon_sym_noreturn] = ACTIONS(5880), + [anon_sym_mutable] = ACTIONS(5880), + [anon_sym_constinit] = ACTIONS(5880), + [anon_sym_consteval] = ACTIONS(5880), + [sym_primitive_type] = ACTIONS(5880), + [anon_sym_enum] = ACTIONS(5880), + [anon_sym_class] = ACTIONS(5880), + [anon_sym_struct] = ACTIONS(5880), + [anon_sym_union] = ACTIONS(5880), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5880), + [anon_sym_decltype] = ACTIONS(5880), + [anon_sym_virtual] = ACTIONS(5880), + [anon_sym_alignas] = ACTIONS(5880), + [anon_sym_explicit] = ACTIONS(5880), + [anon_sym_typename] = ACTIONS(5880), + [anon_sym_template] = ACTIONS(5880), + [anon_sym_operator] = ACTIONS(5880), + [anon_sym_friend] = ACTIONS(5880), + [anon_sym_public] = ACTIONS(5880), + [anon_sym_private] = ACTIONS(5880), + [anon_sym_protected] = ACTIONS(5880), + [anon_sym_using] = ACTIONS(5880), + [anon_sym_static_assert] = ACTIONS(5880), + [sym_semgrep_metavar] = ACTIONS(5882), }, - [2186] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1908), - [sym_identifier] = ACTIONS(6019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6016), - [anon_sym_COMMA] = ACTIONS(6016), - [aux_sym_preproc_if_token2] = ACTIONS(6016), - [aux_sym_preproc_else_token1] = ACTIONS(6016), - [aux_sym_preproc_elif_token1] = ACTIONS(6019), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6016), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6016), - [anon_sym_LPAREN2] = ACTIONS(6016), - [anon_sym_DASH] = ACTIONS(6019), - [anon_sym_PLUS] = ACTIONS(6019), - [anon_sym_STAR] = ACTIONS(6019), - [anon_sym_SLASH] = ACTIONS(6019), - [anon_sym_PERCENT] = ACTIONS(6019), - [anon_sym_PIPE_PIPE] = ACTIONS(6016), - [anon_sym_AMP_AMP] = ACTIONS(6016), - [anon_sym_PIPE] = ACTIONS(6019), - [anon_sym_CARET] = ACTIONS(6019), - [anon_sym_AMP] = ACTIONS(6019), - [anon_sym_EQ_EQ] = ACTIONS(6016), - [anon_sym_BANG_EQ] = ACTIONS(6016), - [anon_sym_GT] = ACTIONS(6019), - [anon_sym_GT_EQ] = ACTIONS(6016), - [anon_sym_LT_EQ] = ACTIONS(6019), - [anon_sym_LT] = ACTIONS(6019), - [anon_sym_LT_LT] = ACTIONS(6019), - [anon_sym_GT_GT] = ACTIONS(6019), - [anon_sym___attribute__] = ACTIONS(6019), - [anon_sym_LBRACE] = ACTIONS(6016), - [anon_sym_signed] = ACTIONS(5701), - [anon_sym_unsigned] = ACTIONS(5701), - [anon_sym_long] = ACTIONS(5701), - [anon_sym_short] = ACTIONS(5701), - [anon_sym_LBRACK] = ACTIONS(6016), - [anon_sym_EQ] = ACTIONS(6019), - [sym_primitive_type] = ACTIONS(5699), - [anon_sym_QMARK] = ACTIONS(6016), - [anon_sym_STAR_EQ] = ACTIONS(6016), - [anon_sym_SLASH_EQ] = ACTIONS(6016), - [anon_sym_PERCENT_EQ] = ACTIONS(6016), - [anon_sym_PLUS_EQ] = ACTIONS(6016), - [anon_sym_DASH_EQ] = ACTIONS(6016), - [anon_sym_LT_LT_EQ] = ACTIONS(6016), - [anon_sym_GT_GT_EQ] = ACTIONS(6016), - [anon_sym_AMP_EQ] = ACTIONS(6016), - [anon_sym_CARET_EQ] = ACTIONS(6016), - [anon_sym_PIPE_EQ] = ACTIONS(6016), - [anon_sym_and_eq] = ACTIONS(6019), - [anon_sym_or_eq] = ACTIONS(6019), - [anon_sym_xor_eq] = ACTIONS(6019), - [anon_sym_LT_EQ_GT] = ACTIONS(6016), - [anon_sym_or] = ACTIONS(6019), - [anon_sym_and] = ACTIONS(6019), - [anon_sym_bitor] = ACTIONS(6019), - [anon_sym_xor] = ACTIONS(6019), - [anon_sym_bitand] = ACTIONS(6019), - [anon_sym_not_eq] = ACTIONS(6019), - [anon_sym_DASH_DASH] = ACTIONS(6016), - [anon_sym_PLUS_PLUS] = ACTIONS(6016), - [anon_sym_DOT] = ACTIONS(6019), - [anon_sym_DOT_STAR] = ACTIONS(6016), - [anon_sym_DASH_GT] = ACTIONS(6016), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6019), - [anon_sym_decltype] = ACTIONS(6019), + [2126] = { + [sym_identifier] = ACTIONS(3442), + [aux_sym_preproc_def_token1] = ACTIONS(3442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3444), + [aux_sym_preproc_if_token1] = ACTIONS(3442), + [aux_sym_preproc_if_token2] = ACTIONS(3442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3442), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3442), + [aux_sym_preproc_else_token1] = ACTIONS(3442), + [aux_sym_preproc_elif_token1] = ACTIONS(3442), + [sym_preproc_directive] = ACTIONS(3442), + [anon_sym_LPAREN2] = ACTIONS(3444), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3444), + [anon_sym_AMP_AMP] = ACTIONS(3444), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym___extension__] = ACTIONS(3442), + [anon_sym_typedef] = ACTIONS(3442), + [anon_sym_extern] = ACTIONS(3442), + [anon_sym___attribute__] = ACTIONS(3442), + [anon_sym_COLON_COLON] = ACTIONS(3444), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3444), + [anon_sym___declspec] = ACTIONS(3442), + [anon_sym___based] = ACTIONS(3442), + [anon_sym_signed] = ACTIONS(3442), + [anon_sym_unsigned] = ACTIONS(3442), + [anon_sym_long] = ACTIONS(3442), + [anon_sym_short] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_static] = ACTIONS(3442), + [anon_sym_register] = ACTIONS(3442), + [anon_sym_inline] = ACTIONS(3442), + [anon_sym___inline] = ACTIONS(3442), + [anon_sym___inline__] = ACTIONS(3442), + [anon_sym___forceinline] = ACTIONS(3442), + [anon_sym_thread_local] = ACTIONS(3442), + [anon_sym___thread] = ACTIONS(3442), + [anon_sym_const] = ACTIONS(3442), + [anon_sym_constexpr] = ACTIONS(3442), + [anon_sym_volatile] = ACTIONS(3442), + [anon_sym_restrict] = ACTIONS(3442), + [anon_sym___restrict__] = ACTIONS(3442), + [anon_sym__Atomic] = ACTIONS(3442), + [anon_sym__Noreturn] = ACTIONS(3442), + [anon_sym_noreturn] = ACTIONS(3442), + [anon_sym_mutable] = ACTIONS(3442), + [anon_sym_constinit] = ACTIONS(3442), + [anon_sym_consteval] = ACTIONS(3442), + [sym_primitive_type] = ACTIONS(3442), + [anon_sym_enum] = ACTIONS(3442), + [anon_sym_class] = ACTIONS(3442), + [anon_sym_struct] = ACTIONS(3442), + [anon_sym_union] = ACTIONS(3442), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3442), + [anon_sym_decltype] = ACTIONS(3442), + [anon_sym_virtual] = ACTIONS(3442), + [anon_sym_alignas] = ACTIONS(3442), + [anon_sym_explicit] = ACTIONS(3442), + [anon_sym_typename] = ACTIONS(3442), + [anon_sym_template] = ACTIONS(3442), + [anon_sym_operator] = ACTIONS(3442), + [anon_sym_friend] = ACTIONS(3442), + [anon_sym_public] = ACTIONS(3442), + [anon_sym_private] = ACTIONS(3442), + [anon_sym_protected] = ACTIONS(3442), + [anon_sym_using] = ACTIONS(3442), + [anon_sym_static_assert] = ACTIONS(3442), + [sym_semgrep_metavar] = ACTIONS(3444), }, - [2187] = { - [sym_string_literal] = STATE(4196), - [sym_template_argument_list] = STATE(5722), - [sym_raw_string_literal] = STATE(4196), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(4829), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4837), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(5535), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_EQ] = ACTIONS(5540), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(5542), - [anon_sym_SLASH_EQ] = ACTIONS(5542), - [anon_sym_PERCENT_EQ] = ACTIONS(5542), - [anon_sym_PLUS_EQ] = ACTIONS(5542), - [anon_sym_DASH_EQ] = ACTIONS(5542), - [anon_sym_LT_LT_EQ] = ACTIONS(5542), - [anon_sym_GT_GT_EQ] = ACTIONS(5540), - [anon_sym_AMP_EQ] = ACTIONS(5542), - [anon_sym_CARET_EQ] = ACTIONS(5542), - [anon_sym_PIPE_EQ] = ACTIONS(5542), - [anon_sym_and_eq] = ACTIONS(5542), - [anon_sym_or_eq] = ACTIONS(5542), - [anon_sym_xor_eq] = ACTIONS(5542), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4829), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4829), - [anon_sym_not_eq] = ACTIONS(4829), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(5544), - [anon_sym_u_DQUOTE] = ACTIONS(5544), - [anon_sym_U_DQUOTE] = ACTIONS(5544), - [anon_sym_u8_DQUOTE] = ACTIONS(5544), - [anon_sym_DQUOTE] = ACTIONS(5544), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(4829), - [anon_sym_R_DQUOTE] = ACTIONS(5546), - [anon_sym_LR_DQUOTE] = ACTIONS(5546), - [anon_sym_uR_DQUOTE] = ACTIONS(5546), - [anon_sym_UR_DQUOTE] = ACTIONS(5546), - [anon_sym_u8R_DQUOTE] = ACTIONS(5546), + [2127] = { + [sym_identifier] = ACTIONS(3451), + [aux_sym_preproc_def_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3453), + [aux_sym_preproc_if_token1] = ACTIONS(3451), + [aux_sym_preproc_if_token2] = ACTIONS(3451), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3451), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3451), + [aux_sym_preproc_else_token1] = ACTIONS(3451), + [aux_sym_preproc_elif_token1] = ACTIONS(3451), + [sym_preproc_directive] = ACTIONS(3451), + [anon_sym_LPAREN2] = ACTIONS(3453), + [anon_sym_TILDE] = ACTIONS(3453), + [anon_sym_STAR] = ACTIONS(3453), + [anon_sym_AMP_AMP] = ACTIONS(3453), + [anon_sym_AMP] = ACTIONS(3451), + [anon_sym___extension__] = ACTIONS(3451), + [anon_sym_typedef] = ACTIONS(3451), + [anon_sym_extern] = ACTIONS(3451), + [anon_sym___attribute__] = ACTIONS(3451), + [anon_sym_COLON_COLON] = ACTIONS(3453), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3453), + [anon_sym___declspec] = ACTIONS(3451), + [anon_sym___based] = ACTIONS(3451), + [anon_sym_signed] = ACTIONS(3451), + [anon_sym_unsigned] = ACTIONS(3451), + [anon_sym_long] = ACTIONS(3451), + [anon_sym_short] = ACTIONS(3451), + [anon_sym_LBRACK] = ACTIONS(3451), + [anon_sym_static] = ACTIONS(3451), + [anon_sym_register] = ACTIONS(3451), + [anon_sym_inline] = ACTIONS(3451), + [anon_sym___inline] = ACTIONS(3451), + [anon_sym___inline__] = ACTIONS(3451), + [anon_sym___forceinline] = ACTIONS(3451), + [anon_sym_thread_local] = ACTIONS(3451), + [anon_sym___thread] = ACTIONS(3451), + [anon_sym_const] = ACTIONS(3451), + [anon_sym_constexpr] = ACTIONS(3451), + [anon_sym_volatile] = ACTIONS(3451), + [anon_sym_restrict] = ACTIONS(3451), + [anon_sym___restrict__] = ACTIONS(3451), + [anon_sym__Atomic] = ACTIONS(3451), + [anon_sym__Noreturn] = ACTIONS(3451), + [anon_sym_noreturn] = ACTIONS(3451), + [anon_sym_mutable] = ACTIONS(3451), + [anon_sym_constinit] = ACTIONS(3451), + [anon_sym_consteval] = ACTIONS(3451), + [sym_primitive_type] = ACTIONS(3451), + [anon_sym_enum] = ACTIONS(3451), + [anon_sym_class] = ACTIONS(3451), + [anon_sym_struct] = ACTIONS(3451), + [anon_sym_union] = ACTIONS(3451), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3451), + [anon_sym_decltype] = ACTIONS(3451), + [anon_sym_virtual] = ACTIONS(3451), + [anon_sym_alignas] = ACTIONS(3451), + [anon_sym_explicit] = ACTIONS(3451), + [anon_sym_typename] = ACTIONS(3451), + [anon_sym_template] = ACTIONS(3451), + [anon_sym_operator] = ACTIONS(3451), + [anon_sym_friend] = ACTIONS(3451), + [anon_sym_public] = ACTIONS(3451), + [anon_sym_private] = ACTIONS(3451), + [anon_sym_protected] = ACTIONS(3451), + [anon_sym_using] = ACTIONS(3451), + [anon_sym_static_assert] = ACTIONS(3451), + [sym_semgrep_metavar] = ACTIONS(3453), }, - [2188] = { + [2128] = { + [sym_attribute_specifier] = STATE(2450), + [sym_enumerator_list] = STATE(2177), + [ts_builtin_sym_end] = ACTIONS(5981), + [sym_identifier] = ACTIONS(5983), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5981), + [anon_sym_COMMA] = ACTIONS(5981), + [anon_sym_RPAREN] = ACTIONS(5981), + [aux_sym_preproc_if_token2] = ACTIONS(5981), + [aux_sym_preproc_else_token1] = ACTIONS(5981), + [aux_sym_preproc_elif_token1] = ACTIONS(5983), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5981), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5981), + [anon_sym_LPAREN2] = ACTIONS(5981), + [anon_sym_DASH] = ACTIONS(5983), + [anon_sym_PLUS] = ACTIONS(5983), + [anon_sym_STAR] = ACTIONS(5983), + [anon_sym_SLASH] = ACTIONS(5983), + [anon_sym_PERCENT] = ACTIONS(5983), + [anon_sym_PIPE_PIPE] = ACTIONS(5981), + [anon_sym_AMP_AMP] = ACTIONS(5981), + [anon_sym_PIPE] = ACTIONS(5983), + [anon_sym_CARET] = ACTIONS(5983), + [anon_sym_AMP] = ACTIONS(5983), + [anon_sym_EQ_EQ] = ACTIONS(5981), + [anon_sym_BANG_EQ] = ACTIONS(5981), + [anon_sym_GT] = ACTIONS(5983), + [anon_sym_GT_EQ] = ACTIONS(5981), + [anon_sym_LT_EQ] = ACTIONS(5983), + [anon_sym_LT] = ACTIONS(5983), + [anon_sym_LT_LT] = ACTIONS(5983), + [anon_sym_GT_GT] = ACTIONS(5983), + [anon_sym_SEMI] = ACTIONS(5981), + [anon_sym___attribute__] = ACTIONS(5698), + [anon_sym_LBRACE] = ACTIONS(5985), + [anon_sym_RBRACE] = ACTIONS(5981), + [anon_sym_LBRACK] = ACTIONS(5981), + [anon_sym_RBRACK] = ACTIONS(5981), + [anon_sym_EQ] = ACTIONS(5983), + [anon_sym_COLON] = ACTIONS(5981), + [anon_sym_QMARK] = ACTIONS(5981), + [anon_sym_STAR_EQ] = ACTIONS(5981), + [anon_sym_SLASH_EQ] = ACTIONS(5981), + [anon_sym_PERCENT_EQ] = ACTIONS(5981), + [anon_sym_PLUS_EQ] = ACTIONS(5981), + [anon_sym_DASH_EQ] = ACTIONS(5981), + [anon_sym_LT_LT_EQ] = ACTIONS(5981), + [anon_sym_GT_GT_EQ] = ACTIONS(5981), + [anon_sym_AMP_EQ] = ACTIONS(5981), + [anon_sym_CARET_EQ] = ACTIONS(5981), + [anon_sym_PIPE_EQ] = ACTIONS(5981), + [anon_sym_and_eq] = ACTIONS(5983), + [anon_sym_or_eq] = ACTIONS(5983), + [anon_sym_xor_eq] = ACTIONS(5983), + [anon_sym_LT_EQ_GT] = ACTIONS(5981), + [anon_sym_or] = ACTIONS(5983), + [anon_sym_and] = ACTIONS(5983), + [anon_sym_bitor] = ACTIONS(5983), + [anon_sym_xor] = ACTIONS(5983), + [anon_sym_bitand] = ACTIONS(5983), + [anon_sym_not_eq] = ACTIONS(5983), + [anon_sym_DASH_DASH] = ACTIONS(5981), + [anon_sym_PLUS_PLUS] = ACTIONS(5981), + [anon_sym_DOT] = ACTIONS(5983), + [anon_sym_DOT_STAR] = ACTIONS(5981), + [anon_sym_DASH_GT] = ACTIONS(5981), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5983), + [anon_sym_decltype] = ACTIONS(5983), + }, + [2129] = { [sym_identifier] = ACTIONS(5896), [aux_sym_preproc_def_token1] = ACTIONS(5896), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5898), [aux_sym_preproc_if_token1] = ACTIONS(5896), [aux_sym_preproc_if_token2] = ACTIONS(5896), [aux_sym_preproc_ifdef_token1] = ACTIONS(5896), @@ -312273,1234 +297166,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5896), [anon_sym_using] = ACTIONS(5896), [anon_sym_static_assert] = ACTIONS(5896), + [sym_semgrep_metavar] = ACTIONS(5898), }, - [2189] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2186), - [sym_identifier] = ACTIONS(6123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6022), - [anon_sym_COMMA] = ACTIONS(6022), - [aux_sym_preproc_if_token2] = ACTIONS(6022), - [aux_sym_preproc_else_token1] = ACTIONS(6022), - [aux_sym_preproc_elif_token1] = ACTIONS(6026), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6022), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6022), - [anon_sym_LPAREN2] = ACTIONS(6022), - [anon_sym_DASH] = ACTIONS(6026), - [anon_sym_PLUS] = ACTIONS(6026), - [anon_sym_STAR] = ACTIONS(6026), - [anon_sym_SLASH] = ACTIONS(6026), - [anon_sym_PERCENT] = ACTIONS(6026), - [anon_sym_PIPE_PIPE] = ACTIONS(6022), - [anon_sym_AMP_AMP] = ACTIONS(6022), - [anon_sym_PIPE] = ACTIONS(6026), - [anon_sym_CARET] = ACTIONS(6026), - [anon_sym_AMP] = ACTIONS(6026), - [anon_sym_EQ_EQ] = ACTIONS(6022), - [anon_sym_BANG_EQ] = ACTIONS(6022), - [anon_sym_GT] = ACTIONS(6026), - [anon_sym_GT_EQ] = ACTIONS(6022), - [anon_sym_LT_EQ] = ACTIONS(6026), - [anon_sym_LT] = ACTIONS(6026), - [anon_sym_LT_LT] = ACTIONS(6026), - [anon_sym_GT_GT] = ACTIONS(6026), - [anon_sym___attribute__] = ACTIONS(6026), - [anon_sym_LBRACE] = ACTIONS(6022), - [anon_sym_signed] = ACTIONS(6126), - [anon_sym_unsigned] = ACTIONS(6126), - [anon_sym_long] = ACTIONS(6126), - [anon_sym_short] = ACTIONS(6126), - [anon_sym_LBRACK] = ACTIONS(6022), - [anon_sym_EQ] = ACTIONS(6026), - [sym_primitive_type] = ACTIONS(6128), - [anon_sym_QMARK] = ACTIONS(6022), - [anon_sym_STAR_EQ] = ACTIONS(6022), - [anon_sym_SLASH_EQ] = ACTIONS(6022), - [anon_sym_PERCENT_EQ] = ACTIONS(6022), - [anon_sym_PLUS_EQ] = ACTIONS(6022), - [anon_sym_DASH_EQ] = ACTIONS(6022), - [anon_sym_LT_LT_EQ] = ACTIONS(6022), - [anon_sym_GT_GT_EQ] = ACTIONS(6022), - [anon_sym_AMP_EQ] = ACTIONS(6022), - [anon_sym_CARET_EQ] = ACTIONS(6022), - [anon_sym_PIPE_EQ] = ACTIONS(6022), - [anon_sym_and_eq] = ACTIONS(6026), - [anon_sym_or_eq] = ACTIONS(6026), - [anon_sym_xor_eq] = ACTIONS(6026), - [anon_sym_LT_EQ_GT] = ACTIONS(6022), - [anon_sym_or] = ACTIONS(6026), - [anon_sym_and] = ACTIONS(6026), - [anon_sym_bitor] = ACTIONS(6026), - [anon_sym_xor] = ACTIONS(6026), - [anon_sym_bitand] = ACTIONS(6026), - [anon_sym_not_eq] = ACTIONS(6026), - [anon_sym_DASH_DASH] = ACTIONS(6022), - [anon_sym_PLUS_PLUS] = ACTIONS(6022), - [anon_sym_DOT] = ACTIONS(6026), - [anon_sym_DOT_STAR] = ACTIONS(6022), - [anon_sym_DASH_GT] = ACTIONS(6022), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6026), - [anon_sym_decltype] = ACTIONS(6026), - }, - [2190] = { - [sym_attribute_specifier] = STATE(2851), - [sym_field_declaration_list] = STATE(2681), - [sym_virtual_specifier] = STATE(8457), - [sym_base_class_clause] = STATE(9418), - [ts_builtin_sym_end] = ACTIONS(6078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6078), - [anon_sym_COMMA] = ACTIONS(6078), - [anon_sym_RPAREN] = ACTIONS(6078), - [anon_sym_LPAREN2] = ACTIONS(6078), - [anon_sym_DASH] = ACTIONS(6076), - [anon_sym_PLUS] = ACTIONS(6076), - [anon_sym_STAR] = ACTIONS(6076), - [anon_sym_SLASH] = ACTIONS(6076), - [anon_sym_PERCENT] = ACTIONS(6076), - [anon_sym_PIPE_PIPE] = ACTIONS(6078), - [anon_sym_AMP_AMP] = ACTIONS(6078), - [anon_sym_PIPE] = ACTIONS(6076), - [anon_sym_CARET] = ACTIONS(6076), - [anon_sym_AMP] = ACTIONS(6076), - [anon_sym_EQ_EQ] = ACTIONS(6078), - [anon_sym_BANG_EQ] = ACTIONS(6078), - [anon_sym_GT] = ACTIONS(6076), - [anon_sym_GT_EQ] = ACTIONS(6078), - [anon_sym_LT_EQ] = ACTIONS(6076), - [anon_sym_LT] = ACTIONS(6076), - [anon_sym_LT_LT] = ACTIONS(6076), - [anon_sym_GT_GT] = ACTIONS(6076), - [anon_sym_SEMI] = ACTIONS(6078), - [anon_sym___attribute__] = ACTIONS(6130), - [anon_sym_LBRACE] = ACTIONS(6132), - [anon_sym_RBRACE] = ACTIONS(6078), - [anon_sym_LBRACK] = ACTIONS(6078), - [anon_sym_RBRACK] = ACTIONS(6078), - [anon_sym_EQ] = ACTIONS(6076), - [anon_sym_COLON] = ACTIONS(6084), - [anon_sym_QMARK] = ACTIONS(6078), - [anon_sym_STAR_EQ] = ACTIONS(6078), - [anon_sym_SLASH_EQ] = ACTIONS(6078), - [anon_sym_PERCENT_EQ] = ACTIONS(6078), - [anon_sym_PLUS_EQ] = ACTIONS(6078), - [anon_sym_DASH_EQ] = ACTIONS(6078), - [anon_sym_LT_LT_EQ] = ACTIONS(6078), - [anon_sym_GT_GT_EQ] = ACTIONS(6078), - [anon_sym_AMP_EQ] = ACTIONS(6078), - [anon_sym_CARET_EQ] = ACTIONS(6078), - [anon_sym_PIPE_EQ] = ACTIONS(6078), - [anon_sym_and_eq] = ACTIONS(6078), - [anon_sym_or_eq] = ACTIONS(6078), - [anon_sym_xor_eq] = ACTIONS(6078), - [anon_sym_LT_EQ_GT] = ACTIONS(6078), - [anon_sym_or] = ACTIONS(6076), - [anon_sym_and] = ACTIONS(6076), - [anon_sym_bitor] = ACTIONS(6078), - [anon_sym_xor] = ACTIONS(6076), - [anon_sym_bitand] = ACTIONS(6078), - [anon_sym_not_eq] = ACTIONS(6078), - [anon_sym_DASH_DASH] = ACTIONS(6078), - [anon_sym_PLUS_PLUS] = ACTIONS(6078), - [anon_sym_DOT] = ACTIONS(6076), - [anon_sym_DOT_STAR] = ACTIONS(6078), - [anon_sym_DASH_GT] = ACTIONS(6078), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6078), - [anon_sym_decltype] = ACTIONS(6078), - [anon_sym_final] = ACTIONS(6118), - [anon_sym_override] = ACTIONS(6118), - }, - [2191] = { - [sym_identifier] = ACTIONS(5796), - [aux_sym_preproc_def_token1] = ACTIONS(5796), - [aux_sym_preproc_if_token1] = ACTIONS(5796), - [aux_sym_preproc_if_token2] = ACTIONS(5796), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5796), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5796), - [aux_sym_preproc_else_token1] = ACTIONS(5796), - [aux_sym_preproc_elif_token1] = ACTIONS(5796), - [sym_preproc_directive] = ACTIONS(5796), - [anon_sym_LPAREN2] = ACTIONS(5798), - [anon_sym_TILDE] = ACTIONS(5798), - [anon_sym_STAR] = ACTIONS(5798), - [anon_sym_AMP_AMP] = ACTIONS(5798), - [anon_sym_AMP] = ACTIONS(5796), - [anon_sym___extension__] = ACTIONS(5796), - [anon_sym_typedef] = ACTIONS(5796), - [anon_sym_extern] = ACTIONS(5796), - [anon_sym___attribute__] = ACTIONS(5796), - [anon_sym_COLON_COLON] = ACTIONS(5798), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5798), - [anon_sym___declspec] = ACTIONS(5796), - [anon_sym___based] = ACTIONS(5796), - [anon_sym_signed] = ACTIONS(5796), - [anon_sym_unsigned] = ACTIONS(5796), - [anon_sym_long] = ACTIONS(5796), - [anon_sym_short] = ACTIONS(5796), - [anon_sym_LBRACK] = ACTIONS(5796), - [anon_sym_static] = ACTIONS(5796), - [anon_sym_register] = ACTIONS(5796), - [anon_sym_inline] = ACTIONS(5796), - [anon_sym___inline] = ACTIONS(5796), - [anon_sym___inline__] = ACTIONS(5796), - [anon_sym___forceinline] = ACTIONS(5796), - [anon_sym_thread_local] = ACTIONS(5796), - [anon_sym___thread] = ACTIONS(5796), - [anon_sym_const] = ACTIONS(5796), - [anon_sym_constexpr] = ACTIONS(5796), - [anon_sym_volatile] = ACTIONS(5796), - [anon_sym_restrict] = ACTIONS(5796), - [anon_sym___restrict__] = ACTIONS(5796), - [anon_sym__Atomic] = ACTIONS(5796), - [anon_sym__Noreturn] = ACTIONS(5796), - [anon_sym_noreturn] = ACTIONS(5796), - [anon_sym_mutable] = ACTIONS(5796), - [anon_sym_constinit] = ACTIONS(5796), - [anon_sym_consteval] = ACTIONS(5796), - [sym_primitive_type] = ACTIONS(5796), - [anon_sym_enum] = ACTIONS(5796), - [anon_sym_class] = ACTIONS(5796), - [anon_sym_struct] = ACTIONS(5796), - [anon_sym_union] = ACTIONS(5796), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5796), - [anon_sym_decltype] = ACTIONS(5796), - [anon_sym_virtual] = ACTIONS(5796), - [anon_sym_alignas] = ACTIONS(5796), - [anon_sym_explicit] = ACTIONS(5796), - [anon_sym_typename] = ACTIONS(5796), - [anon_sym_template] = ACTIONS(5796), - [anon_sym_operator] = ACTIONS(5796), - [anon_sym_friend] = ACTIONS(5796), - [anon_sym_public] = ACTIONS(5796), - [anon_sym_private] = ACTIONS(5796), - [anon_sym_protected] = ACTIONS(5796), - [anon_sym_using] = ACTIONS(5796), - [anon_sym_static_assert] = ACTIONS(5796), - }, - [2192] = { - [sym_identifier] = ACTIONS(5800), - [aux_sym_preproc_def_token1] = ACTIONS(5800), - [aux_sym_preproc_if_token1] = ACTIONS(5800), - [aux_sym_preproc_if_token2] = ACTIONS(5800), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5800), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5800), - [aux_sym_preproc_else_token1] = ACTIONS(5800), - [aux_sym_preproc_elif_token1] = ACTIONS(5800), - [sym_preproc_directive] = ACTIONS(5800), - [anon_sym_LPAREN2] = ACTIONS(5802), - [anon_sym_TILDE] = ACTIONS(5802), - [anon_sym_STAR] = ACTIONS(5802), - [anon_sym_AMP_AMP] = ACTIONS(5802), - [anon_sym_AMP] = ACTIONS(5800), - [anon_sym___extension__] = ACTIONS(5800), - [anon_sym_typedef] = ACTIONS(5800), - [anon_sym_extern] = ACTIONS(5800), - [anon_sym___attribute__] = ACTIONS(5800), - [anon_sym_COLON_COLON] = ACTIONS(5802), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5802), - [anon_sym___declspec] = ACTIONS(5800), - [anon_sym___based] = ACTIONS(5800), - [anon_sym_signed] = ACTIONS(5800), - [anon_sym_unsigned] = ACTIONS(5800), - [anon_sym_long] = ACTIONS(5800), - [anon_sym_short] = ACTIONS(5800), - [anon_sym_LBRACK] = ACTIONS(5800), - [anon_sym_static] = ACTIONS(5800), - [anon_sym_register] = ACTIONS(5800), - [anon_sym_inline] = ACTIONS(5800), - [anon_sym___inline] = ACTIONS(5800), - [anon_sym___inline__] = ACTIONS(5800), - [anon_sym___forceinline] = ACTIONS(5800), - [anon_sym_thread_local] = ACTIONS(5800), - [anon_sym___thread] = ACTIONS(5800), - [anon_sym_const] = ACTIONS(5800), - [anon_sym_constexpr] = ACTIONS(5800), - [anon_sym_volatile] = ACTIONS(5800), - [anon_sym_restrict] = ACTIONS(5800), - [anon_sym___restrict__] = ACTIONS(5800), - [anon_sym__Atomic] = ACTIONS(5800), - [anon_sym__Noreturn] = ACTIONS(5800), - [anon_sym_noreturn] = ACTIONS(5800), - [anon_sym_mutable] = ACTIONS(5800), - [anon_sym_constinit] = ACTIONS(5800), - [anon_sym_consteval] = ACTIONS(5800), - [sym_primitive_type] = ACTIONS(5800), - [anon_sym_enum] = ACTIONS(5800), - [anon_sym_class] = ACTIONS(5800), - [anon_sym_struct] = ACTIONS(5800), - [anon_sym_union] = ACTIONS(5800), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5800), - [anon_sym_decltype] = ACTIONS(5800), - [anon_sym_virtual] = ACTIONS(5800), - [anon_sym_alignas] = ACTIONS(5800), - [anon_sym_explicit] = ACTIONS(5800), - [anon_sym_typename] = ACTIONS(5800), - [anon_sym_template] = ACTIONS(5800), - [anon_sym_operator] = ACTIONS(5800), - [anon_sym_friend] = ACTIONS(5800), - [anon_sym_public] = ACTIONS(5800), - [anon_sym_private] = ACTIONS(5800), - [anon_sym_protected] = ACTIONS(5800), - [anon_sym_using] = ACTIONS(5800), - [anon_sym_static_assert] = ACTIONS(5800), - }, - [2193] = { - [sym_identifier] = ACTIONS(5848), - [aux_sym_preproc_def_token1] = ACTIONS(5848), - [aux_sym_preproc_if_token1] = ACTIONS(5848), - [aux_sym_preproc_if_token2] = ACTIONS(5848), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5848), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5848), - [aux_sym_preproc_else_token1] = ACTIONS(5848), - [aux_sym_preproc_elif_token1] = ACTIONS(5848), - [sym_preproc_directive] = ACTIONS(5848), - [anon_sym_LPAREN2] = ACTIONS(5850), - [anon_sym_TILDE] = ACTIONS(5850), - [anon_sym_STAR] = ACTIONS(5850), - [anon_sym_AMP_AMP] = ACTIONS(5850), - [anon_sym_AMP] = ACTIONS(5848), - [anon_sym___extension__] = ACTIONS(5848), - [anon_sym_typedef] = ACTIONS(5848), - [anon_sym_extern] = ACTIONS(5848), - [anon_sym___attribute__] = ACTIONS(5848), - [anon_sym_COLON_COLON] = ACTIONS(5850), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5850), - [anon_sym___declspec] = ACTIONS(5848), - [anon_sym___based] = ACTIONS(5848), - [anon_sym_signed] = ACTIONS(5848), - [anon_sym_unsigned] = ACTIONS(5848), - [anon_sym_long] = ACTIONS(5848), - [anon_sym_short] = ACTIONS(5848), - [anon_sym_LBRACK] = ACTIONS(5848), - [anon_sym_static] = ACTIONS(5848), - [anon_sym_register] = ACTIONS(5848), - [anon_sym_inline] = ACTIONS(5848), - [anon_sym___inline] = ACTIONS(5848), - [anon_sym___inline__] = ACTIONS(5848), - [anon_sym___forceinline] = ACTIONS(5848), - [anon_sym_thread_local] = ACTIONS(5848), - [anon_sym___thread] = ACTIONS(5848), - [anon_sym_const] = ACTIONS(5848), - [anon_sym_constexpr] = ACTIONS(5848), - [anon_sym_volatile] = ACTIONS(5848), - [anon_sym_restrict] = ACTIONS(5848), - [anon_sym___restrict__] = ACTIONS(5848), - [anon_sym__Atomic] = ACTIONS(5848), - [anon_sym__Noreturn] = ACTIONS(5848), - [anon_sym_noreturn] = ACTIONS(5848), - [anon_sym_mutable] = ACTIONS(5848), - [anon_sym_constinit] = ACTIONS(5848), - [anon_sym_consteval] = ACTIONS(5848), - [sym_primitive_type] = ACTIONS(5848), - [anon_sym_enum] = ACTIONS(5848), - [anon_sym_class] = ACTIONS(5848), - [anon_sym_struct] = ACTIONS(5848), - [anon_sym_union] = ACTIONS(5848), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5848), - [anon_sym_decltype] = ACTIONS(5848), - [anon_sym_virtual] = ACTIONS(5848), - [anon_sym_alignas] = ACTIONS(5848), - [anon_sym_explicit] = ACTIONS(5848), - [anon_sym_typename] = ACTIONS(5848), - [anon_sym_template] = ACTIONS(5848), - [anon_sym_operator] = ACTIONS(5848), - [anon_sym_friend] = ACTIONS(5848), - [anon_sym_public] = ACTIONS(5848), - [anon_sym_private] = ACTIONS(5848), - [anon_sym_protected] = ACTIONS(5848), - [anon_sym_using] = ACTIONS(5848), - [anon_sym_static_assert] = ACTIONS(5848), - }, - [2194] = { - [sym_identifier] = ACTIONS(5808), - [aux_sym_preproc_def_token1] = ACTIONS(5808), - [aux_sym_preproc_if_token1] = ACTIONS(5808), - [aux_sym_preproc_if_token2] = ACTIONS(5808), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5808), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5808), - [aux_sym_preproc_else_token1] = ACTIONS(5808), - [aux_sym_preproc_elif_token1] = ACTIONS(5808), - [sym_preproc_directive] = ACTIONS(5808), - [anon_sym_LPAREN2] = ACTIONS(5810), - [anon_sym_TILDE] = ACTIONS(5810), - [anon_sym_STAR] = ACTIONS(5810), - [anon_sym_AMP_AMP] = ACTIONS(5810), - [anon_sym_AMP] = ACTIONS(5808), - [anon_sym___extension__] = ACTIONS(5808), - [anon_sym_typedef] = ACTIONS(5808), - [anon_sym_extern] = ACTIONS(5808), - [anon_sym___attribute__] = ACTIONS(5808), - [anon_sym_COLON_COLON] = ACTIONS(5810), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5810), - [anon_sym___declspec] = ACTIONS(5808), - [anon_sym___based] = ACTIONS(5808), - [anon_sym_signed] = ACTIONS(5808), - [anon_sym_unsigned] = ACTIONS(5808), - [anon_sym_long] = ACTIONS(5808), - [anon_sym_short] = ACTIONS(5808), - [anon_sym_LBRACK] = ACTIONS(5808), - [anon_sym_static] = ACTIONS(5808), - [anon_sym_register] = ACTIONS(5808), - [anon_sym_inline] = ACTIONS(5808), - [anon_sym___inline] = ACTIONS(5808), - [anon_sym___inline__] = ACTIONS(5808), - [anon_sym___forceinline] = ACTIONS(5808), - [anon_sym_thread_local] = ACTIONS(5808), - [anon_sym___thread] = ACTIONS(5808), - [anon_sym_const] = ACTIONS(5808), - [anon_sym_constexpr] = ACTIONS(5808), - [anon_sym_volatile] = ACTIONS(5808), - [anon_sym_restrict] = ACTIONS(5808), - [anon_sym___restrict__] = ACTIONS(5808), - [anon_sym__Atomic] = ACTIONS(5808), - [anon_sym__Noreturn] = ACTIONS(5808), - [anon_sym_noreturn] = ACTIONS(5808), - [anon_sym_mutable] = ACTIONS(5808), - [anon_sym_constinit] = ACTIONS(5808), - [anon_sym_consteval] = ACTIONS(5808), - [sym_primitive_type] = ACTIONS(5808), - [anon_sym_enum] = ACTIONS(5808), - [anon_sym_class] = ACTIONS(5808), - [anon_sym_struct] = ACTIONS(5808), - [anon_sym_union] = ACTIONS(5808), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5808), - [anon_sym_decltype] = ACTIONS(5808), - [anon_sym_virtual] = ACTIONS(5808), - [anon_sym_alignas] = ACTIONS(5808), - [anon_sym_explicit] = ACTIONS(5808), - [anon_sym_typename] = ACTIONS(5808), - [anon_sym_template] = ACTIONS(5808), - [anon_sym_operator] = ACTIONS(5808), - [anon_sym_friend] = ACTIONS(5808), - [anon_sym_public] = ACTIONS(5808), - [anon_sym_private] = ACTIONS(5808), - [anon_sym_protected] = ACTIONS(5808), - [anon_sym_using] = ACTIONS(5808), - [anon_sym_static_assert] = ACTIONS(5808), - }, - [2195] = { - [sym_identifier] = ACTIONS(3366), - [aux_sym_preproc_def_token1] = ACTIONS(3366), - [aux_sym_preproc_if_token1] = ACTIONS(3366), - [aux_sym_preproc_if_token2] = ACTIONS(3366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3366), - [aux_sym_preproc_else_token1] = ACTIONS(3366), - [aux_sym_preproc_elif_token1] = ACTIONS(3366), - [sym_preproc_directive] = ACTIONS(3366), - [anon_sym_LPAREN2] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(3368), - [anon_sym_STAR] = ACTIONS(3368), - [anon_sym_AMP_AMP] = ACTIONS(3368), - [anon_sym_AMP] = ACTIONS(3366), - [anon_sym___extension__] = ACTIONS(3366), - [anon_sym_typedef] = ACTIONS(3366), - [anon_sym_extern] = ACTIONS(3366), - [anon_sym___attribute__] = ACTIONS(3366), - [anon_sym_COLON_COLON] = ACTIONS(3368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3368), - [anon_sym___declspec] = ACTIONS(3366), - [anon_sym___based] = ACTIONS(3366), - [anon_sym_signed] = ACTIONS(3366), - [anon_sym_unsigned] = ACTIONS(3366), - [anon_sym_long] = ACTIONS(3366), - [anon_sym_short] = ACTIONS(3366), - [anon_sym_LBRACK] = ACTIONS(3366), - [anon_sym_static] = ACTIONS(3366), - [anon_sym_register] = ACTIONS(3366), - [anon_sym_inline] = ACTIONS(3366), - [anon_sym___inline] = ACTIONS(3366), - [anon_sym___inline__] = ACTIONS(3366), - [anon_sym___forceinline] = ACTIONS(3366), - [anon_sym_thread_local] = ACTIONS(3366), - [anon_sym___thread] = ACTIONS(3366), - [anon_sym_const] = ACTIONS(3366), - [anon_sym_constexpr] = ACTIONS(3366), - [anon_sym_volatile] = ACTIONS(3366), - [anon_sym_restrict] = ACTIONS(3366), - [anon_sym___restrict__] = ACTIONS(3366), - [anon_sym__Atomic] = ACTIONS(3366), - [anon_sym__Noreturn] = ACTIONS(3366), - [anon_sym_noreturn] = ACTIONS(3366), - [anon_sym_mutable] = ACTIONS(3366), - [anon_sym_constinit] = ACTIONS(3366), - [anon_sym_consteval] = ACTIONS(3366), - [sym_primitive_type] = ACTIONS(3366), - [anon_sym_enum] = ACTIONS(3366), - [anon_sym_class] = ACTIONS(3366), - [anon_sym_struct] = ACTIONS(3366), - [anon_sym_union] = ACTIONS(3366), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3366), - [anon_sym_decltype] = ACTIONS(3366), - [anon_sym_virtual] = ACTIONS(3366), - [anon_sym_alignas] = ACTIONS(3366), - [anon_sym_explicit] = ACTIONS(3366), - [anon_sym_typename] = ACTIONS(3366), - [anon_sym_template] = ACTIONS(3366), - [anon_sym_operator] = ACTIONS(3366), - [anon_sym_friend] = ACTIONS(3366), - [anon_sym_public] = ACTIONS(3366), - [anon_sym_private] = ACTIONS(3366), - [anon_sym_protected] = ACTIONS(3366), - [anon_sym_using] = ACTIONS(3366), - [anon_sym_static_assert] = ACTIONS(3366), - }, - [2196] = { - [sym_identifier] = ACTIONS(3372), - [aux_sym_preproc_def_token1] = ACTIONS(3372), - [aux_sym_preproc_if_token1] = ACTIONS(3372), - [aux_sym_preproc_if_token2] = ACTIONS(3372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3372), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3372), - [aux_sym_preproc_else_token1] = ACTIONS(3372), - [aux_sym_preproc_elif_token1] = ACTIONS(3372), - [sym_preproc_directive] = ACTIONS(3372), - [anon_sym_LPAREN2] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(3374), - [anon_sym_STAR] = ACTIONS(3374), - [anon_sym_AMP_AMP] = ACTIONS(3374), - [anon_sym_AMP] = ACTIONS(3372), - [anon_sym___extension__] = ACTIONS(3372), - [anon_sym_typedef] = ACTIONS(3372), - [anon_sym_extern] = ACTIONS(3372), - [anon_sym___attribute__] = ACTIONS(3372), - [anon_sym_COLON_COLON] = ACTIONS(3374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3374), - [anon_sym___declspec] = ACTIONS(3372), - [anon_sym___based] = ACTIONS(3372), - [anon_sym_signed] = ACTIONS(3372), - [anon_sym_unsigned] = ACTIONS(3372), - [anon_sym_long] = ACTIONS(3372), - [anon_sym_short] = ACTIONS(3372), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_static] = ACTIONS(3372), - [anon_sym_register] = ACTIONS(3372), - [anon_sym_inline] = ACTIONS(3372), - [anon_sym___inline] = ACTIONS(3372), - [anon_sym___inline__] = ACTIONS(3372), - [anon_sym___forceinline] = ACTIONS(3372), - [anon_sym_thread_local] = ACTIONS(3372), - [anon_sym___thread] = ACTIONS(3372), - [anon_sym_const] = ACTIONS(3372), - [anon_sym_constexpr] = ACTIONS(3372), - [anon_sym_volatile] = ACTIONS(3372), - [anon_sym_restrict] = ACTIONS(3372), - [anon_sym___restrict__] = ACTIONS(3372), - [anon_sym__Atomic] = ACTIONS(3372), - [anon_sym__Noreturn] = ACTIONS(3372), - [anon_sym_noreturn] = ACTIONS(3372), - [anon_sym_mutable] = ACTIONS(3372), - [anon_sym_constinit] = ACTIONS(3372), - [anon_sym_consteval] = ACTIONS(3372), - [sym_primitive_type] = ACTIONS(3372), - [anon_sym_enum] = ACTIONS(3372), - [anon_sym_class] = ACTIONS(3372), - [anon_sym_struct] = ACTIONS(3372), - [anon_sym_union] = ACTIONS(3372), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3372), - [anon_sym_decltype] = ACTIONS(3372), - [anon_sym_virtual] = ACTIONS(3372), - [anon_sym_alignas] = ACTIONS(3372), - [anon_sym_explicit] = ACTIONS(3372), - [anon_sym_typename] = ACTIONS(3372), - [anon_sym_template] = ACTIONS(3372), - [anon_sym_operator] = ACTIONS(3372), - [anon_sym_friend] = ACTIONS(3372), - [anon_sym_public] = ACTIONS(3372), - [anon_sym_private] = ACTIONS(3372), - [anon_sym_protected] = ACTIONS(3372), - [anon_sym_using] = ACTIONS(3372), - [anon_sym_static_assert] = ACTIONS(3372), - }, - [2197] = { - [sym_declaration_modifiers] = STATE(4294), - [sym_attribute_specifier] = STATE(4269), - [sym_attribute_declaration] = STATE(4269), - [sym_ms_declspec_modifier] = STATE(4269), - [sym_storage_class_specifier] = STATE(4269), - [sym_type_qualifier] = STATE(4269), - [sym_type_specifier] = STATE(4671), - [sym_sized_type_specifier] = STATE(4873), - [sym_enum_specifier] = STATE(4873), - [sym_struct_specifier] = STATE(4873), - [sym_union_specifier] = STATE(4873), - [sym_placeholder_type_specifier] = STATE(4873), - [sym_decltype_auto] = STATE(4836), - [sym_decltype] = STATE(4853), - [sym_class_specifier] = STATE(4873), - [sym_virtual] = STATE(4269), - [sym_alignas_specifier] = STATE(4269), - [sym_dependent_type] = STATE(4873), - [sym_template_type] = STATE(4853), - [sym_dependent_type_identifier] = STATE(9982), - [sym_scope_resolution] = STATE(7881), - [sym_qualified_type_identifier] = STATE(4837), - [aux_sym_declaration_specifiers_repeat1] = STATE(4294), - [aux_sym_sized_type_specifier_repeat1] = STATE(3874), - [sym_identifier] = ACTIONS(5548), - [anon_sym___extension__] = ACTIONS(65), - [anon_sym_extern] = ACTIONS(61), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2107), - [anon_sym___declspec] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(57), - [anon_sym_unsigned] = ACTIONS(57), - [anon_sym_long] = ACTIONS(57), - [anon_sym_short] = ACTIONS(57), - [anon_sym_static] = ACTIONS(61), - [anon_sym_register] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym___inline] = ACTIONS(61), - [anon_sym___inline__] = ACTIONS(61), - [anon_sym___forceinline] = ACTIONS(61), - [anon_sym_thread_local] = ACTIONS(61), - [anon_sym___thread] = ACTIONS(61), - [anon_sym_const] = ACTIONS(65), - [anon_sym_constexpr] = ACTIONS(65), - [anon_sym_volatile] = ACTIONS(65), - [anon_sym_restrict] = ACTIONS(65), - [anon_sym___restrict__] = ACTIONS(65), - [anon_sym__Atomic] = ACTIONS(65), - [anon_sym__Noreturn] = ACTIONS(65), - [anon_sym_noreturn] = ACTIONS(65), - [anon_sym_mutable] = ACTIONS(65), - [anon_sym_constinit] = ACTIONS(65), - [anon_sym_consteval] = ACTIONS(65), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3722), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_union] = ACTIONS(3728), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(121), - [anon_sym_decltype] = ACTIONS(123), - [anon_sym_virtual] = ACTIONS(125), - [anon_sym_alignas] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(3730), - [anon_sym_template] = ACTIONS(1538), - }, - [2198] = { - [sym_identifier] = ACTIONS(3495), - [aux_sym_preproc_def_token1] = ACTIONS(3495), - [aux_sym_preproc_if_token1] = ACTIONS(3495), - [aux_sym_preproc_if_token2] = ACTIONS(3495), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3495), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3495), - [aux_sym_preproc_else_token1] = ACTIONS(3495), - [aux_sym_preproc_elif_token1] = ACTIONS(3495), - [sym_preproc_directive] = ACTIONS(3495), - [anon_sym_LPAREN2] = ACTIONS(3497), - [anon_sym_TILDE] = ACTIONS(3497), - [anon_sym_STAR] = ACTIONS(3497), - [anon_sym_AMP_AMP] = ACTIONS(3497), - [anon_sym_AMP] = ACTIONS(3495), - [anon_sym___extension__] = ACTIONS(3495), - [anon_sym_typedef] = ACTIONS(3495), - [anon_sym_extern] = ACTIONS(3495), - [anon_sym___attribute__] = ACTIONS(3495), - [anon_sym_COLON_COLON] = ACTIONS(3497), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3497), - [anon_sym___declspec] = ACTIONS(3495), - [anon_sym___based] = ACTIONS(3495), - [anon_sym_signed] = ACTIONS(3495), - [anon_sym_unsigned] = ACTIONS(3495), - [anon_sym_long] = ACTIONS(3495), - [anon_sym_short] = ACTIONS(3495), - [anon_sym_LBRACK] = ACTIONS(3495), - [anon_sym_static] = ACTIONS(3495), - [anon_sym_register] = ACTIONS(3495), - [anon_sym_inline] = ACTIONS(3495), - [anon_sym___inline] = ACTIONS(3495), - [anon_sym___inline__] = ACTIONS(3495), - [anon_sym___forceinline] = ACTIONS(3495), - [anon_sym_thread_local] = ACTIONS(3495), - [anon_sym___thread] = ACTIONS(3495), - [anon_sym_const] = ACTIONS(3495), - [anon_sym_constexpr] = ACTIONS(3495), - [anon_sym_volatile] = ACTIONS(3495), - [anon_sym_restrict] = ACTIONS(3495), - [anon_sym___restrict__] = ACTIONS(3495), - [anon_sym__Atomic] = ACTIONS(3495), - [anon_sym__Noreturn] = ACTIONS(3495), - [anon_sym_noreturn] = ACTIONS(3495), - [anon_sym_mutable] = ACTIONS(3495), - [anon_sym_constinit] = ACTIONS(3495), - [anon_sym_consteval] = ACTIONS(3495), - [sym_primitive_type] = ACTIONS(3495), - [anon_sym_enum] = ACTIONS(3495), - [anon_sym_class] = ACTIONS(3495), - [anon_sym_struct] = ACTIONS(3495), - [anon_sym_union] = ACTIONS(3495), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3495), - [anon_sym_decltype] = ACTIONS(3495), - [anon_sym_virtual] = ACTIONS(3495), - [anon_sym_alignas] = ACTIONS(3495), - [anon_sym_explicit] = ACTIONS(3495), - [anon_sym_typename] = ACTIONS(3495), - [anon_sym_template] = ACTIONS(3495), - [anon_sym_operator] = ACTIONS(3495), - [anon_sym_friend] = ACTIONS(3495), - [anon_sym_public] = ACTIONS(3495), - [anon_sym_private] = ACTIONS(3495), - [anon_sym_protected] = ACTIONS(3495), - [anon_sym_using] = ACTIONS(3495), - [anon_sym_static_assert] = ACTIONS(3495), - }, - [2199] = { - [sym_identifier] = ACTIONS(3376), - [aux_sym_preproc_def_token1] = ACTIONS(3376), - [aux_sym_preproc_if_token1] = ACTIONS(3376), - [aux_sym_preproc_if_token2] = ACTIONS(3376), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3376), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3376), - [aux_sym_preproc_else_token1] = ACTIONS(3376), - [aux_sym_preproc_elif_token1] = ACTIONS(3376), - [sym_preproc_directive] = ACTIONS(3376), - [anon_sym_LPAREN2] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(3378), - [anon_sym_STAR] = ACTIONS(3378), - [anon_sym_AMP_AMP] = ACTIONS(3378), - [anon_sym_AMP] = ACTIONS(3376), - [anon_sym___extension__] = ACTIONS(3376), - [anon_sym_typedef] = ACTIONS(3376), - [anon_sym_extern] = ACTIONS(3376), - [anon_sym___attribute__] = ACTIONS(3376), - [anon_sym_COLON_COLON] = ACTIONS(3378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3378), - [anon_sym___declspec] = ACTIONS(3376), - [anon_sym___based] = ACTIONS(3376), - [anon_sym_signed] = ACTIONS(3376), - [anon_sym_unsigned] = ACTIONS(3376), - [anon_sym_long] = ACTIONS(3376), - [anon_sym_short] = ACTIONS(3376), - [anon_sym_LBRACK] = ACTIONS(3376), - [anon_sym_static] = ACTIONS(3376), - [anon_sym_register] = ACTIONS(3376), - [anon_sym_inline] = ACTIONS(3376), - [anon_sym___inline] = ACTIONS(3376), - [anon_sym___inline__] = ACTIONS(3376), - [anon_sym___forceinline] = ACTIONS(3376), - [anon_sym_thread_local] = ACTIONS(3376), - [anon_sym___thread] = ACTIONS(3376), - [anon_sym_const] = ACTIONS(3376), - [anon_sym_constexpr] = ACTIONS(3376), - [anon_sym_volatile] = ACTIONS(3376), - [anon_sym_restrict] = ACTIONS(3376), - [anon_sym___restrict__] = ACTIONS(3376), - [anon_sym__Atomic] = ACTIONS(3376), - [anon_sym__Noreturn] = ACTIONS(3376), - [anon_sym_noreturn] = ACTIONS(3376), - [anon_sym_mutable] = ACTIONS(3376), - [anon_sym_constinit] = ACTIONS(3376), - [anon_sym_consteval] = ACTIONS(3376), - [sym_primitive_type] = ACTIONS(3376), - [anon_sym_enum] = ACTIONS(3376), - [anon_sym_class] = ACTIONS(3376), - [anon_sym_struct] = ACTIONS(3376), - [anon_sym_union] = ACTIONS(3376), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3376), - [anon_sym_decltype] = ACTIONS(3376), - [anon_sym_virtual] = ACTIONS(3376), - [anon_sym_alignas] = ACTIONS(3376), - [anon_sym_explicit] = ACTIONS(3376), - [anon_sym_typename] = ACTIONS(3376), - [anon_sym_template] = ACTIONS(3376), - [anon_sym_operator] = ACTIONS(3376), - [anon_sym_friend] = ACTIONS(3376), - [anon_sym_public] = ACTIONS(3376), - [anon_sym_private] = ACTIONS(3376), - [anon_sym_protected] = ACTIONS(3376), - [anon_sym_using] = ACTIONS(3376), - [anon_sym_static_assert] = ACTIONS(3376), - }, - [2200] = { - [sym_identifier] = ACTIONS(3380), - [aux_sym_preproc_def_token1] = ACTIONS(3380), - [aux_sym_preproc_if_token1] = ACTIONS(3380), - [aux_sym_preproc_if_token2] = ACTIONS(3380), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3380), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3380), - [aux_sym_preproc_else_token1] = ACTIONS(3380), - [aux_sym_preproc_elif_token1] = ACTIONS(3380), - [sym_preproc_directive] = ACTIONS(3380), - [anon_sym_LPAREN2] = ACTIONS(3382), - [anon_sym_TILDE] = ACTIONS(3382), - [anon_sym_STAR] = ACTIONS(3382), - [anon_sym_AMP_AMP] = ACTIONS(3382), - [anon_sym_AMP] = ACTIONS(3380), - [anon_sym___extension__] = ACTIONS(3380), - [anon_sym_typedef] = ACTIONS(3380), - [anon_sym_extern] = ACTIONS(3380), - [anon_sym___attribute__] = ACTIONS(3380), - [anon_sym_COLON_COLON] = ACTIONS(3382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3382), - [anon_sym___declspec] = ACTIONS(3380), - [anon_sym___based] = ACTIONS(3380), - [anon_sym_signed] = ACTIONS(3380), - [anon_sym_unsigned] = ACTIONS(3380), - [anon_sym_long] = ACTIONS(3380), - [anon_sym_short] = ACTIONS(3380), - [anon_sym_LBRACK] = ACTIONS(3380), - [anon_sym_static] = ACTIONS(3380), - [anon_sym_register] = ACTIONS(3380), - [anon_sym_inline] = ACTIONS(3380), - [anon_sym___inline] = ACTIONS(3380), - [anon_sym___inline__] = ACTIONS(3380), - [anon_sym___forceinline] = ACTIONS(3380), - [anon_sym_thread_local] = ACTIONS(3380), - [anon_sym___thread] = ACTIONS(3380), - [anon_sym_const] = ACTIONS(3380), - [anon_sym_constexpr] = ACTIONS(3380), - [anon_sym_volatile] = ACTIONS(3380), - [anon_sym_restrict] = ACTIONS(3380), - [anon_sym___restrict__] = ACTIONS(3380), - [anon_sym__Atomic] = ACTIONS(3380), - [anon_sym__Noreturn] = ACTIONS(3380), - [anon_sym_noreturn] = ACTIONS(3380), - [anon_sym_mutable] = ACTIONS(3380), - [anon_sym_constinit] = ACTIONS(3380), - [anon_sym_consteval] = ACTIONS(3380), - [sym_primitive_type] = ACTIONS(3380), - [anon_sym_enum] = ACTIONS(3380), - [anon_sym_class] = ACTIONS(3380), - [anon_sym_struct] = ACTIONS(3380), - [anon_sym_union] = ACTIONS(3380), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3380), - [anon_sym_decltype] = ACTIONS(3380), - [anon_sym_virtual] = ACTIONS(3380), - [anon_sym_alignas] = ACTIONS(3380), - [anon_sym_explicit] = ACTIONS(3380), - [anon_sym_typename] = ACTIONS(3380), - [anon_sym_template] = ACTIONS(3380), - [anon_sym_operator] = ACTIONS(3380), - [anon_sym_friend] = ACTIONS(3380), - [anon_sym_public] = ACTIONS(3380), - [anon_sym_private] = ACTIONS(3380), - [anon_sym_protected] = ACTIONS(3380), - [anon_sym_using] = ACTIONS(3380), - [anon_sym_static_assert] = ACTIONS(3380), - }, - [2201] = { - [sym_identifier] = ACTIONS(5816), - [aux_sym_preproc_def_token1] = ACTIONS(5816), - [aux_sym_preproc_if_token1] = ACTIONS(5816), - [aux_sym_preproc_if_token2] = ACTIONS(5816), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5816), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5816), - [aux_sym_preproc_else_token1] = ACTIONS(5816), - [aux_sym_preproc_elif_token1] = ACTIONS(5816), - [sym_preproc_directive] = ACTIONS(5816), - [anon_sym_LPAREN2] = ACTIONS(5818), - [anon_sym_TILDE] = ACTIONS(5818), - [anon_sym_STAR] = ACTIONS(5818), - [anon_sym_AMP_AMP] = ACTIONS(5818), - [anon_sym_AMP] = ACTIONS(5816), - [anon_sym___extension__] = ACTIONS(5816), - [anon_sym_typedef] = ACTIONS(5816), - [anon_sym_extern] = ACTIONS(5816), - [anon_sym___attribute__] = ACTIONS(5816), - [anon_sym_COLON_COLON] = ACTIONS(5818), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5818), - [anon_sym___declspec] = ACTIONS(5816), - [anon_sym___based] = ACTIONS(5816), - [anon_sym_signed] = ACTIONS(5816), - [anon_sym_unsigned] = ACTIONS(5816), - [anon_sym_long] = ACTIONS(5816), - [anon_sym_short] = ACTIONS(5816), - [anon_sym_LBRACK] = ACTIONS(5816), - [anon_sym_static] = ACTIONS(5816), - [anon_sym_register] = ACTIONS(5816), - [anon_sym_inline] = ACTIONS(5816), - [anon_sym___inline] = ACTIONS(5816), - [anon_sym___inline__] = ACTIONS(5816), - [anon_sym___forceinline] = ACTIONS(5816), - [anon_sym_thread_local] = ACTIONS(5816), - [anon_sym___thread] = ACTIONS(5816), - [anon_sym_const] = ACTIONS(5816), - [anon_sym_constexpr] = ACTIONS(5816), - [anon_sym_volatile] = ACTIONS(5816), - [anon_sym_restrict] = ACTIONS(5816), - [anon_sym___restrict__] = ACTIONS(5816), - [anon_sym__Atomic] = ACTIONS(5816), - [anon_sym__Noreturn] = ACTIONS(5816), - [anon_sym_noreturn] = ACTIONS(5816), - [anon_sym_mutable] = ACTIONS(5816), - [anon_sym_constinit] = ACTIONS(5816), - [anon_sym_consteval] = ACTIONS(5816), - [sym_primitive_type] = ACTIONS(5816), - [anon_sym_enum] = ACTIONS(5816), - [anon_sym_class] = ACTIONS(5816), - [anon_sym_struct] = ACTIONS(5816), - [anon_sym_union] = ACTIONS(5816), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5816), - [anon_sym_decltype] = ACTIONS(5816), - [anon_sym_virtual] = ACTIONS(5816), - [anon_sym_alignas] = ACTIONS(5816), - [anon_sym_explicit] = ACTIONS(5816), - [anon_sym_typename] = ACTIONS(5816), - [anon_sym_template] = ACTIONS(5816), - [anon_sym_operator] = ACTIONS(5816), - [anon_sym_friend] = ACTIONS(5816), - [anon_sym_public] = ACTIONS(5816), - [anon_sym_private] = ACTIONS(5816), - [anon_sym_protected] = ACTIONS(5816), - [anon_sym_using] = ACTIONS(5816), - [anon_sym_static_assert] = ACTIONS(5816), - }, - [2202] = { - [sym_identifier] = ACTIONS(5824), - [aux_sym_preproc_def_token1] = ACTIONS(5824), - [aux_sym_preproc_if_token1] = ACTIONS(5824), - [aux_sym_preproc_if_token2] = ACTIONS(5824), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5824), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5824), - [aux_sym_preproc_else_token1] = ACTIONS(5824), - [aux_sym_preproc_elif_token1] = ACTIONS(5824), - [sym_preproc_directive] = ACTIONS(5824), - [anon_sym_LPAREN2] = ACTIONS(5826), - [anon_sym_TILDE] = ACTIONS(5826), - [anon_sym_STAR] = ACTIONS(5826), - [anon_sym_AMP_AMP] = ACTIONS(5826), - [anon_sym_AMP] = ACTIONS(5824), - [anon_sym___extension__] = ACTIONS(5824), - [anon_sym_typedef] = ACTIONS(5824), - [anon_sym_extern] = ACTIONS(5824), - [anon_sym___attribute__] = ACTIONS(5824), - [anon_sym_COLON_COLON] = ACTIONS(5826), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5826), - [anon_sym___declspec] = ACTIONS(5824), - [anon_sym___based] = ACTIONS(5824), - [anon_sym_signed] = ACTIONS(5824), - [anon_sym_unsigned] = ACTIONS(5824), - [anon_sym_long] = ACTIONS(5824), - [anon_sym_short] = ACTIONS(5824), - [anon_sym_LBRACK] = ACTIONS(5824), - [anon_sym_static] = ACTIONS(5824), - [anon_sym_register] = ACTIONS(5824), - [anon_sym_inline] = ACTIONS(5824), - [anon_sym___inline] = ACTIONS(5824), - [anon_sym___inline__] = ACTIONS(5824), - [anon_sym___forceinline] = ACTIONS(5824), - [anon_sym_thread_local] = ACTIONS(5824), - [anon_sym___thread] = ACTIONS(5824), - [anon_sym_const] = ACTIONS(5824), - [anon_sym_constexpr] = ACTIONS(5824), - [anon_sym_volatile] = ACTIONS(5824), - [anon_sym_restrict] = ACTIONS(5824), - [anon_sym___restrict__] = ACTIONS(5824), - [anon_sym__Atomic] = ACTIONS(5824), - [anon_sym__Noreturn] = ACTIONS(5824), - [anon_sym_noreturn] = ACTIONS(5824), - [anon_sym_mutable] = ACTIONS(5824), - [anon_sym_constinit] = ACTIONS(5824), - [anon_sym_consteval] = ACTIONS(5824), - [sym_primitive_type] = ACTIONS(5824), - [anon_sym_enum] = ACTIONS(5824), - [anon_sym_class] = ACTIONS(5824), - [anon_sym_struct] = ACTIONS(5824), - [anon_sym_union] = ACTIONS(5824), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5824), - [anon_sym_decltype] = ACTIONS(5824), - [anon_sym_virtual] = ACTIONS(5824), - [anon_sym_alignas] = ACTIONS(5824), - [anon_sym_explicit] = ACTIONS(5824), - [anon_sym_typename] = ACTIONS(5824), - [anon_sym_template] = ACTIONS(5824), - [anon_sym_operator] = ACTIONS(5824), - [anon_sym_friend] = ACTIONS(5824), - [anon_sym_public] = ACTIONS(5824), - [anon_sym_private] = ACTIONS(5824), - [anon_sym_protected] = ACTIONS(5824), - [anon_sym_using] = ACTIONS(5824), - [anon_sym_static_assert] = ACTIONS(5824), - }, - [2203] = { - [sym_identifier] = ACTIONS(5828), - [aux_sym_preproc_def_token1] = ACTIONS(5828), - [aux_sym_preproc_if_token1] = ACTIONS(5828), - [aux_sym_preproc_if_token2] = ACTIONS(5828), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5828), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5828), - [aux_sym_preproc_else_token1] = ACTIONS(5828), - [aux_sym_preproc_elif_token1] = ACTIONS(5828), - [sym_preproc_directive] = ACTIONS(5828), - [anon_sym_LPAREN2] = ACTIONS(5830), - [anon_sym_TILDE] = ACTIONS(5830), - [anon_sym_STAR] = ACTIONS(5830), - [anon_sym_AMP_AMP] = ACTIONS(5830), - [anon_sym_AMP] = ACTIONS(5828), - [anon_sym___extension__] = ACTIONS(5828), - [anon_sym_typedef] = ACTIONS(5828), - [anon_sym_extern] = ACTIONS(5828), - [anon_sym___attribute__] = ACTIONS(5828), - [anon_sym_COLON_COLON] = ACTIONS(5830), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5830), - [anon_sym___declspec] = ACTIONS(5828), - [anon_sym___based] = ACTIONS(5828), - [anon_sym_signed] = ACTIONS(5828), - [anon_sym_unsigned] = ACTIONS(5828), - [anon_sym_long] = ACTIONS(5828), - [anon_sym_short] = ACTIONS(5828), - [anon_sym_LBRACK] = ACTIONS(5828), - [anon_sym_static] = ACTIONS(5828), - [anon_sym_register] = ACTIONS(5828), - [anon_sym_inline] = ACTIONS(5828), - [anon_sym___inline] = ACTIONS(5828), - [anon_sym___inline__] = ACTIONS(5828), - [anon_sym___forceinline] = ACTIONS(5828), - [anon_sym_thread_local] = ACTIONS(5828), - [anon_sym___thread] = ACTIONS(5828), - [anon_sym_const] = ACTIONS(5828), - [anon_sym_constexpr] = ACTIONS(5828), - [anon_sym_volatile] = ACTIONS(5828), - [anon_sym_restrict] = ACTIONS(5828), - [anon_sym___restrict__] = ACTIONS(5828), - [anon_sym__Atomic] = ACTIONS(5828), - [anon_sym__Noreturn] = ACTIONS(5828), - [anon_sym_noreturn] = ACTIONS(5828), - [anon_sym_mutable] = ACTIONS(5828), - [anon_sym_constinit] = ACTIONS(5828), - [anon_sym_consteval] = ACTIONS(5828), - [sym_primitive_type] = ACTIONS(5828), - [anon_sym_enum] = ACTIONS(5828), - [anon_sym_class] = ACTIONS(5828), - [anon_sym_struct] = ACTIONS(5828), - [anon_sym_union] = ACTIONS(5828), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5828), - [anon_sym_decltype] = ACTIONS(5828), - [anon_sym_virtual] = ACTIONS(5828), - [anon_sym_alignas] = ACTIONS(5828), - [anon_sym_explicit] = ACTIONS(5828), - [anon_sym_typename] = ACTIONS(5828), - [anon_sym_template] = ACTIONS(5828), - [anon_sym_operator] = ACTIONS(5828), - [anon_sym_friend] = ACTIONS(5828), - [anon_sym_public] = ACTIONS(5828), - [anon_sym_private] = ACTIONS(5828), - [anon_sym_protected] = ACTIONS(5828), - [anon_sym_using] = ACTIONS(5828), - [anon_sym_static_assert] = ACTIONS(5828), - }, - [2204] = { - [sym_identifier] = ACTIONS(3384), - [aux_sym_preproc_def_token1] = ACTIONS(3384), - [aux_sym_preproc_if_token1] = ACTIONS(3384), - [aux_sym_preproc_if_token2] = ACTIONS(3384), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3384), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3384), - [aux_sym_preproc_else_token1] = ACTIONS(3384), - [aux_sym_preproc_elif_token1] = ACTIONS(3384), - [sym_preproc_directive] = ACTIONS(3384), - [anon_sym_LPAREN2] = ACTIONS(3386), - [anon_sym_TILDE] = ACTIONS(3386), - [anon_sym_STAR] = ACTIONS(3386), - [anon_sym_AMP_AMP] = ACTIONS(3386), - [anon_sym_AMP] = ACTIONS(3384), - [anon_sym___extension__] = ACTIONS(3384), - [anon_sym_typedef] = ACTIONS(3384), - [anon_sym_extern] = ACTIONS(3384), - [anon_sym___attribute__] = ACTIONS(3384), - [anon_sym_COLON_COLON] = ACTIONS(3386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3386), - [anon_sym___declspec] = ACTIONS(3384), - [anon_sym___based] = ACTIONS(3384), - [anon_sym_signed] = ACTIONS(3384), - [anon_sym_unsigned] = ACTIONS(3384), - [anon_sym_long] = ACTIONS(3384), - [anon_sym_short] = ACTIONS(3384), - [anon_sym_LBRACK] = ACTIONS(3384), - [anon_sym_static] = ACTIONS(3384), - [anon_sym_register] = ACTIONS(3384), - [anon_sym_inline] = ACTIONS(3384), - [anon_sym___inline] = ACTIONS(3384), - [anon_sym___inline__] = ACTIONS(3384), - [anon_sym___forceinline] = ACTIONS(3384), - [anon_sym_thread_local] = ACTIONS(3384), - [anon_sym___thread] = ACTIONS(3384), - [anon_sym_const] = ACTIONS(3384), - [anon_sym_constexpr] = ACTIONS(3384), - [anon_sym_volatile] = ACTIONS(3384), - [anon_sym_restrict] = ACTIONS(3384), - [anon_sym___restrict__] = ACTIONS(3384), - [anon_sym__Atomic] = ACTIONS(3384), - [anon_sym__Noreturn] = ACTIONS(3384), - [anon_sym_noreturn] = ACTIONS(3384), - [anon_sym_mutable] = ACTIONS(3384), - [anon_sym_constinit] = ACTIONS(3384), - [anon_sym_consteval] = ACTIONS(3384), - [sym_primitive_type] = ACTIONS(3384), - [anon_sym_enum] = ACTIONS(3384), - [anon_sym_class] = ACTIONS(3384), - [anon_sym_struct] = ACTIONS(3384), - [anon_sym_union] = ACTIONS(3384), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3384), - [anon_sym_decltype] = ACTIONS(3384), - [anon_sym_virtual] = ACTIONS(3384), - [anon_sym_alignas] = ACTIONS(3384), - [anon_sym_explicit] = ACTIONS(3384), - [anon_sym_typename] = ACTIONS(3384), - [anon_sym_template] = ACTIONS(3384), - [anon_sym_operator] = ACTIONS(3384), - [anon_sym_friend] = ACTIONS(3384), - [anon_sym_public] = ACTIONS(3384), - [anon_sym_private] = ACTIONS(3384), - [anon_sym_protected] = ACTIONS(3384), - [anon_sym_using] = ACTIONS(3384), - [anon_sym_static_assert] = ACTIONS(3384), + [2130] = { + [sym_identifier] = ACTIONS(2355), + [aux_sym_preproc_def_token1] = ACTIONS(2355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2353), + [anon_sym_COMMA] = ACTIONS(3211), + [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(2353), + [anon_sym_TILDE] = ACTIONS(2353), + [anon_sym_STAR] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(2353), + [anon_sym_AMP] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(3211), + [anon_sym___extension__] = ACTIONS(2355), + [anon_sym_typedef] = ACTIONS(2355), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym___attribute__] = ACTIONS(5680), + [anon_sym_COLON_COLON] = ACTIONS(2353), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), + [anon_sym___declspec] = ACTIONS(2355), + [anon_sym___based] = ACTIONS(2355), + [anon_sym_RBRACE] = ACTIONS(2353), + [anon_sym_signed] = ACTIONS(2355), + [anon_sym_unsigned] = ACTIONS(2355), + [anon_sym_long] = ACTIONS(2355), + [anon_sym_short] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_static] = ACTIONS(2355), + [anon_sym_register] = ACTIONS(2355), + [anon_sym_inline] = ACTIONS(2355), + [anon_sym___inline] = ACTIONS(2355), + [anon_sym___inline__] = ACTIONS(2355), + [anon_sym___forceinline] = ACTIONS(2355), + [anon_sym_thread_local] = ACTIONS(2355), + [anon_sym___thread] = ACTIONS(2355), + [anon_sym_const] = ACTIONS(2355), + [anon_sym_constexpr] = ACTIONS(2355), + [anon_sym_volatile] = ACTIONS(2355), + [anon_sym_restrict] = ACTIONS(2355), + [anon_sym___restrict__] = ACTIONS(2355), + [anon_sym__Atomic] = ACTIONS(2355), + [anon_sym__Noreturn] = ACTIONS(2355), + [anon_sym_noreturn] = ACTIONS(2355), + [anon_sym_mutable] = ACTIONS(2355), + [anon_sym_constinit] = ACTIONS(2355), + [anon_sym_consteval] = 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), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2355), + [anon_sym_decltype] = ACTIONS(2355), + [anon_sym_virtual] = ACTIONS(2355), + [anon_sym_alignas] = ACTIONS(2355), + [anon_sym_explicit] = ACTIONS(2355), + [anon_sym_typename] = ACTIONS(2355), + [anon_sym_template] = ACTIONS(2355), + [anon_sym_operator] = ACTIONS(2355), + [anon_sym_friend] = ACTIONS(2355), + [anon_sym_public] = ACTIONS(2355), + [anon_sym_private] = ACTIONS(2355), + [anon_sym_protected] = ACTIONS(2355), + [anon_sym_using] = ACTIONS(2355), + [anon_sym_static_assert] = ACTIONS(2355), + [sym_semgrep_metavar] = ACTIONS(2353), }, - [2205] = { - [sym_identifier] = ACTIONS(3499), - [aux_sym_preproc_def_token1] = ACTIONS(3499), - [aux_sym_preproc_if_token1] = ACTIONS(3499), - [aux_sym_preproc_if_token2] = ACTIONS(3499), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3499), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3499), - [aux_sym_preproc_else_token1] = ACTIONS(3499), - [aux_sym_preproc_elif_token1] = ACTIONS(3499), - [sym_preproc_directive] = ACTIONS(3499), - [anon_sym_LPAREN2] = ACTIONS(3501), - [anon_sym_TILDE] = ACTIONS(3501), - [anon_sym_STAR] = ACTIONS(3501), - [anon_sym_AMP_AMP] = ACTIONS(3501), - [anon_sym_AMP] = ACTIONS(3499), - [anon_sym___extension__] = ACTIONS(3499), - [anon_sym_typedef] = ACTIONS(3499), - [anon_sym_extern] = ACTIONS(3499), - [anon_sym___attribute__] = ACTIONS(3499), - [anon_sym_COLON_COLON] = ACTIONS(3501), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3501), - [anon_sym___declspec] = ACTIONS(3499), - [anon_sym___based] = ACTIONS(3499), - [anon_sym_signed] = ACTIONS(3499), - [anon_sym_unsigned] = ACTIONS(3499), - [anon_sym_long] = ACTIONS(3499), - [anon_sym_short] = ACTIONS(3499), - [anon_sym_LBRACK] = ACTIONS(3499), - [anon_sym_static] = ACTIONS(3499), - [anon_sym_register] = ACTIONS(3499), - [anon_sym_inline] = ACTIONS(3499), - [anon_sym___inline] = ACTIONS(3499), - [anon_sym___inline__] = ACTIONS(3499), - [anon_sym___forceinline] = ACTIONS(3499), - [anon_sym_thread_local] = ACTIONS(3499), - [anon_sym___thread] = ACTIONS(3499), - [anon_sym_const] = ACTIONS(3499), - [anon_sym_constexpr] = ACTIONS(3499), - [anon_sym_volatile] = ACTIONS(3499), - [anon_sym_restrict] = ACTIONS(3499), - [anon_sym___restrict__] = ACTIONS(3499), - [anon_sym__Atomic] = ACTIONS(3499), - [anon_sym__Noreturn] = ACTIONS(3499), - [anon_sym_noreturn] = ACTIONS(3499), - [anon_sym_mutable] = ACTIONS(3499), - [anon_sym_constinit] = ACTIONS(3499), - [anon_sym_consteval] = ACTIONS(3499), - [sym_primitive_type] = ACTIONS(3499), - [anon_sym_enum] = ACTIONS(3499), - [anon_sym_class] = ACTIONS(3499), - [anon_sym_struct] = ACTIONS(3499), - [anon_sym_union] = ACTIONS(3499), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3499), - [anon_sym_decltype] = ACTIONS(3499), - [anon_sym_virtual] = ACTIONS(3499), - [anon_sym_alignas] = ACTIONS(3499), - [anon_sym_explicit] = ACTIONS(3499), - [anon_sym_typename] = ACTIONS(3499), - [anon_sym_template] = ACTIONS(3499), - [anon_sym_operator] = ACTIONS(3499), - [anon_sym_friend] = ACTIONS(3499), - [anon_sym_public] = ACTIONS(3499), - [anon_sym_private] = ACTIONS(3499), - [anon_sym_protected] = ACTIONS(3499), - [anon_sym_using] = ACTIONS(3499), - [anon_sym_static_assert] = ACTIONS(3499), + [2131] = { + [sym_attribute_specifier] = STATE(2383), + [sym_enumerator_list] = STATE(2188), + [ts_builtin_sym_end] = ACTIONS(5987), + [sym_identifier] = ACTIONS(5989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5987), + [anon_sym_COMMA] = ACTIONS(5987), + [anon_sym_RPAREN] = ACTIONS(5987), + [aux_sym_preproc_if_token2] = ACTIONS(5987), + [aux_sym_preproc_else_token1] = ACTIONS(5987), + [aux_sym_preproc_elif_token1] = ACTIONS(5989), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5987), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5987), + [anon_sym_LPAREN2] = ACTIONS(5987), + [anon_sym_DASH] = ACTIONS(5989), + [anon_sym_PLUS] = ACTIONS(5989), + [anon_sym_STAR] = ACTIONS(5989), + [anon_sym_SLASH] = ACTIONS(5989), + [anon_sym_PERCENT] = ACTIONS(5989), + [anon_sym_PIPE_PIPE] = ACTIONS(5987), + [anon_sym_AMP_AMP] = ACTIONS(5987), + [anon_sym_PIPE] = ACTIONS(5989), + [anon_sym_CARET] = ACTIONS(5989), + [anon_sym_AMP] = ACTIONS(5989), + [anon_sym_EQ_EQ] = ACTIONS(5987), + [anon_sym_BANG_EQ] = ACTIONS(5987), + [anon_sym_GT] = ACTIONS(5989), + [anon_sym_GT_EQ] = ACTIONS(5987), + [anon_sym_LT_EQ] = ACTIONS(5989), + [anon_sym_LT] = ACTIONS(5989), + [anon_sym_LT_LT] = ACTIONS(5989), + [anon_sym_GT_GT] = ACTIONS(5989), + [anon_sym_SEMI] = ACTIONS(5987), + [anon_sym___attribute__] = ACTIONS(5698), + [anon_sym_LBRACE] = ACTIONS(5985), + [anon_sym_RBRACE] = ACTIONS(5987), + [anon_sym_LBRACK] = ACTIONS(5987), + [anon_sym_RBRACK] = ACTIONS(5987), + [anon_sym_EQ] = ACTIONS(5989), + [anon_sym_COLON] = ACTIONS(5987), + [anon_sym_QMARK] = ACTIONS(5987), + [anon_sym_STAR_EQ] = ACTIONS(5987), + [anon_sym_SLASH_EQ] = ACTIONS(5987), + [anon_sym_PERCENT_EQ] = ACTIONS(5987), + [anon_sym_PLUS_EQ] = ACTIONS(5987), + [anon_sym_DASH_EQ] = ACTIONS(5987), + [anon_sym_LT_LT_EQ] = ACTIONS(5987), + [anon_sym_GT_GT_EQ] = ACTIONS(5987), + [anon_sym_AMP_EQ] = ACTIONS(5987), + [anon_sym_CARET_EQ] = ACTIONS(5987), + [anon_sym_PIPE_EQ] = ACTIONS(5987), + [anon_sym_and_eq] = ACTIONS(5989), + [anon_sym_or_eq] = ACTIONS(5989), + [anon_sym_xor_eq] = ACTIONS(5989), + [anon_sym_LT_EQ_GT] = ACTIONS(5987), + [anon_sym_or] = ACTIONS(5989), + [anon_sym_and] = ACTIONS(5989), + [anon_sym_bitor] = ACTIONS(5989), + [anon_sym_xor] = ACTIONS(5989), + [anon_sym_bitand] = ACTIONS(5989), + [anon_sym_not_eq] = ACTIONS(5989), + [anon_sym_DASH_DASH] = ACTIONS(5987), + [anon_sym_PLUS_PLUS] = ACTIONS(5987), + [anon_sym_DOT] = ACTIONS(5989), + [anon_sym_DOT_STAR] = ACTIONS(5987), + [anon_sym_DASH_GT] = ACTIONS(5987), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5989), + [anon_sym_decltype] = ACTIONS(5989), }, - [2206] = { - [sym_identifier] = ACTIONS(5832), - [aux_sym_preproc_def_token1] = ACTIONS(5832), - [aux_sym_preproc_if_token1] = ACTIONS(5832), - [aux_sym_preproc_if_token2] = ACTIONS(5832), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5832), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5832), - [aux_sym_preproc_else_token1] = ACTIONS(5832), - [aux_sym_preproc_elif_token1] = ACTIONS(5832), - [sym_preproc_directive] = ACTIONS(5832), - [anon_sym_LPAREN2] = ACTIONS(5834), - [anon_sym_TILDE] = ACTIONS(5834), - [anon_sym_STAR] = ACTIONS(5834), - [anon_sym_AMP_AMP] = ACTIONS(5834), - [anon_sym_AMP] = ACTIONS(5832), - [anon_sym___extension__] = ACTIONS(5832), - [anon_sym_typedef] = ACTIONS(5832), - [anon_sym_extern] = ACTIONS(5832), - [anon_sym___attribute__] = ACTIONS(5832), - [anon_sym_COLON_COLON] = ACTIONS(5834), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5834), - [anon_sym___declspec] = ACTIONS(5832), - [anon_sym___based] = ACTIONS(5832), - [anon_sym_signed] = ACTIONS(5832), - [anon_sym_unsigned] = ACTIONS(5832), - [anon_sym_long] = ACTIONS(5832), - [anon_sym_short] = ACTIONS(5832), - [anon_sym_LBRACK] = ACTIONS(5832), - [anon_sym_static] = ACTIONS(5832), - [anon_sym_register] = ACTIONS(5832), - [anon_sym_inline] = ACTIONS(5832), - [anon_sym___inline] = ACTIONS(5832), - [anon_sym___inline__] = ACTIONS(5832), - [anon_sym___forceinline] = ACTIONS(5832), - [anon_sym_thread_local] = ACTIONS(5832), - [anon_sym___thread] = ACTIONS(5832), - [anon_sym_const] = ACTIONS(5832), - [anon_sym_constexpr] = ACTIONS(5832), - [anon_sym_volatile] = ACTIONS(5832), - [anon_sym_restrict] = ACTIONS(5832), - [anon_sym___restrict__] = ACTIONS(5832), - [anon_sym__Atomic] = ACTIONS(5832), - [anon_sym__Noreturn] = ACTIONS(5832), - [anon_sym_noreturn] = ACTIONS(5832), - [anon_sym_mutable] = ACTIONS(5832), - [anon_sym_constinit] = ACTIONS(5832), - [anon_sym_consteval] = ACTIONS(5832), - [sym_primitive_type] = ACTIONS(5832), - [anon_sym_enum] = ACTIONS(5832), - [anon_sym_class] = ACTIONS(5832), - [anon_sym_struct] = ACTIONS(5832), - [anon_sym_union] = ACTIONS(5832), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5832), - [anon_sym_decltype] = ACTIONS(5832), - [anon_sym_virtual] = ACTIONS(5832), - [anon_sym_alignas] = ACTIONS(5832), - [anon_sym_explicit] = ACTIONS(5832), - [anon_sym_typename] = ACTIONS(5832), - [anon_sym_template] = ACTIONS(5832), - [anon_sym_operator] = ACTIONS(5832), - [anon_sym_friend] = ACTIONS(5832), - [anon_sym_public] = ACTIONS(5832), - [anon_sym_private] = ACTIONS(5832), - [anon_sym_protected] = ACTIONS(5832), - [anon_sym_using] = ACTIONS(5832), - [anon_sym_static_assert] = ACTIONS(5832), + [2132] = { + [sym_identifier] = ACTIONS(5904), + [aux_sym_preproc_def_token1] = ACTIONS(5904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5906), + [aux_sym_preproc_if_token1] = ACTIONS(5904), + [aux_sym_preproc_if_token2] = ACTIONS(5904), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5904), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5904), + [aux_sym_preproc_else_token1] = ACTIONS(5904), + [aux_sym_preproc_elif_token1] = ACTIONS(5904), + [sym_preproc_directive] = ACTIONS(5904), + [anon_sym_LPAREN2] = ACTIONS(5906), + [anon_sym_TILDE] = ACTIONS(5906), + [anon_sym_STAR] = ACTIONS(5906), + [anon_sym_AMP_AMP] = ACTIONS(5906), + [anon_sym_AMP] = ACTIONS(5904), + [anon_sym___extension__] = ACTIONS(5904), + [anon_sym_typedef] = ACTIONS(5904), + [anon_sym_extern] = ACTIONS(5904), + [anon_sym___attribute__] = ACTIONS(5904), + [anon_sym_COLON_COLON] = ACTIONS(5906), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5906), + [anon_sym___declspec] = ACTIONS(5904), + [anon_sym___based] = ACTIONS(5904), + [anon_sym_signed] = ACTIONS(5904), + [anon_sym_unsigned] = ACTIONS(5904), + [anon_sym_long] = ACTIONS(5904), + [anon_sym_short] = ACTIONS(5904), + [anon_sym_LBRACK] = ACTIONS(5904), + [anon_sym_static] = ACTIONS(5904), + [anon_sym_register] = ACTIONS(5904), + [anon_sym_inline] = ACTIONS(5904), + [anon_sym___inline] = ACTIONS(5904), + [anon_sym___inline__] = ACTIONS(5904), + [anon_sym___forceinline] = ACTIONS(5904), + [anon_sym_thread_local] = ACTIONS(5904), + [anon_sym___thread] = ACTIONS(5904), + [anon_sym_const] = ACTIONS(5904), + [anon_sym_constexpr] = ACTIONS(5904), + [anon_sym_volatile] = ACTIONS(5904), + [anon_sym_restrict] = ACTIONS(5904), + [anon_sym___restrict__] = ACTIONS(5904), + [anon_sym__Atomic] = ACTIONS(5904), + [anon_sym__Noreturn] = ACTIONS(5904), + [anon_sym_noreturn] = ACTIONS(5904), + [anon_sym_mutable] = ACTIONS(5904), + [anon_sym_constinit] = ACTIONS(5904), + [anon_sym_consteval] = ACTIONS(5904), + [sym_primitive_type] = ACTIONS(5904), + [anon_sym_enum] = ACTIONS(5904), + [anon_sym_class] = ACTIONS(5904), + [anon_sym_struct] = ACTIONS(5904), + [anon_sym_union] = ACTIONS(5904), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5904), + [anon_sym_decltype] = ACTIONS(5904), + [anon_sym_virtual] = ACTIONS(5904), + [anon_sym_alignas] = ACTIONS(5904), + [anon_sym_explicit] = ACTIONS(5904), + [anon_sym_typename] = ACTIONS(5904), + [anon_sym_template] = ACTIONS(5904), + [anon_sym_operator] = ACTIONS(5904), + [anon_sym_friend] = ACTIONS(5904), + [anon_sym_public] = ACTIONS(5904), + [anon_sym_private] = ACTIONS(5904), + [anon_sym_protected] = ACTIONS(5904), + [anon_sym_using] = ACTIONS(5904), + [anon_sym_static_assert] = ACTIONS(5904), + [sym_semgrep_metavar] = ACTIONS(5906), }, - [2207] = { + [2133] = { [sym_identifier] = ACTIONS(3457), [aux_sym_preproc_def_token1] = ACTIONS(3457), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3459), [aux_sym_preproc_if_token1] = ACTIONS(3457), [aux_sym_preproc_if_token2] = ACTIONS(3457), [aux_sym_preproc_ifdef_token1] = ACTIONS(3457), @@ -313565,146 +297446,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(3457), [anon_sym_using] = ACTIONS(3457), [anon_sym_static_assert] = ACTIONS(3457), + [sym_semgrep_metavar] = ACTIONS(3459), }, - [2208] = { - [sym_identifier] = ACTIONS(3388), - [aux_sym_preproc_def_token1] = ACTIONS(3388), - [aux_sym_preproc_if_token1] = ACTIONS(3388), - [aux_sym_preproc_if_token2] = ACTIONS(3388), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3388), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3388), - [aux_sym_preproc_else_token1] = ACTIONS(3388), - [aux_sym_preproc_elif_token1] = ACTIONS(3388), - [sym_preproc_directive] = ACTIONS(3388), - [anon_sym_LPAREN2] = ACTIONS(3390), - [anon_sym_TILDE] = ACTIONS(3390), - [anon_sym_STAR] = ACTIONS(3390), - [anon_sym_AMP_AMP] = ACTIONS(3390), - [anon_sym_AMP] = ACTIONS(3388), - [anon_sym___extension__] = ACTIONS(3388), - [anon_sym_typedef] = ACTIONS(3388), - [anon_sym_extern] = ACTIONS(3388), - [anon_sym___attribute__] = ACTIONS(3388), - [anon_sym_COLON_COLON] = ACTIONS(3390), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3390), - [anon_sym___declspec] = ACTIONS(3388), - [anon_sym___based] = ACTIONS(3388), - [anon_sym_signed] = ACTIONS(3388), - [anon_sym_unsigned] = ACTIONS(3388), - [anon_sym_long] = ACTIONS(3388), - [anon_sym_short] = ACTIONS(3388), - [anon_sym_LBRACK] = ACTIONS(3388), - [anon_sym_static] = ACTIONS(3388), - [anon_sym_register] = ACTIONS(3388), - [anon_sym_inline] = ACTIONS(3388), - [anon_sym___inline] = ACTIONS(3388), - [anon_sym___inline__] = ACTIONS(3388), - [anon_sym___forceinline] = ACTIONS(3388), - [anon_sym_thread_local] = ACTIONS(3388), - [anon_sym___thread] = ACTIONS(3388), - [anon_sym_const] = ACTIONS(3388), - [anon_sym_constexpr] = ACTIONS(3388), - [anon_sym_volatile] = ACTIONS(3388), - [anon_sym_restrict] = ACTIONS(3388), - [anon_sym___restrict__] = ACTIONS(3388), - [anon_sym__Atomic] = ACTIONS(3388), - [anon_sym__Noreturn] = ACTIONS(3388), - [anon_sym_noreturn] = ACTIONS(3388), - [anon_sym_mutable] = ACTIONS(3388), - [anon_sym_constinit] = ACTIONS(3388), - [anon_sym_consteval] = ACTIONS(3388), - [sym_primitive_type] = ACTIONS(3388), - [anon_sym_enum] = ACTIONS(3388), - [anon_sym_class] = ACTIONS(3388), - [anon_sym_struct] = ACTIONS(3388), - [anon_sym_union] = ACTIONS(3388), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3388), - [anon_sym_decltype] = ACTIONS(3388), - [anon_sym_virtual] = ACTIONS(3388), - [anon_sym_alignas] = ACTIONS(3388), - [anon_sym_explicit] = ACTIONS(3388), - [anon_sym_typename] = ACTIONS(3388), - [anon_sym_template] = ACTIONS(3388), - [anon_sym_operator] = ACTIONS(3388), - [anon_sym_friend] = ACTIONS(3388), - [anon_sym_public] = ACTIONS(3388), - [anon_sym_private] = ACTIONS(3388), - [anon_sym_protected] = ACTIONS(3388), - [anon_sym_using] = ACTIONS(3388), - [anon_sym_static_assert] = ACTIONS(3388), + [2134] = { + [sym_string_literal] = STATE(1843), + [sym_template_argument_list] = STATE(2485), + [sym_raw_string_literal] = STATE(1843), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(5991), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4773), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4773), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(5450), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_SEMI] = ACTIONS(4765), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5991), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_RBRACE] = ACTIONS(4765), + [anon_sym_LBRACK] = ACTIONS(5993), + [anon_sym_EQ] = ACTIONS(4773), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4765), + [anon_sym_SLASH_EQ] = ACTIONS(4765), + [anon_sym_PERCENT_EQ] = ACTIONS(4765), + [anon_sym_PLUS_EQ] = ACTIONS(4765), + [anon_sym_DASH_EQ] = ACTIONS(4765), + [anon_sym_LT_LT_EQ] = ACTIONS(4765), + [anon_sym_GT_GT_EQ] = ACTIONS(4765), + [anon_sym_AMP_EQ] = ACTIONS(4765), + [anon_sym_CARET_EQ] = ACTIONS(4765), + [anon_sym_PIPE_EQ] = ACTIONS(4765), + [anon_sym_and_eq] = ACTIONS(4765), + [anon_sym_or_eq] = ACTIONS(4765), + [anon_sym_xor_eq] = ACTIONS(4765), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4765), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4765), + [anon_sym_not_eq] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(2341), + [anon_sym_u_DQUOTE] = ACTIONS(2341), + [anon_sym_U_DQUOTE] = ACTIONS(2341), + [anon_sym_u8_DQUOTE] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2345), + [anon_sym_LR_DQUOTE] = ACTIONS(2345), + [anon_sym_uR_DQUOTE] = ACTIONS(2345), + [anon_sym_UR_DQUOTE] = ACTIONS(2345), + [anon_sym_u8R_DQUOTE] = ACTIONS(2345), }, - [2209] = { - [sym_identifier] = ACTIONS(3179), - [aux_sym_preproc_def_token1] = ACTIONS(3179), - [aux_sym_preproc_if_token1] = ACTIONS(3179), - [aux_sym_preproc_if_token2] = ACTIONS(3179), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3179), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3179), - [aux_sym_preproc_else_token1] = ACTIONS(3179), - [aux_sym_preproc_elif_token1] = ACTIONS(3179), - [sym_preproc_directive] = ACTIONS(3179), - [anon_sym_LPAREN2] = ACTIONS(3181), - [anon_sym_TILDE] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3181), - [anon_sym_AMP_AMP] = ACTIONS(3181), - [anon_sym_AMP] = ACTIONS(3179), - [anon_sym___extension__] = ACTIONS(3179), - [anon_sym_typedef] = ACTIONS(3179), - [anon_sym_extern] = ACTIONS(3179), - [anon_sym___attribute__] = ACTIONS(3179), - [anon_sym_COLON_COLON] = ACTIONS(3181), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3181), - [anon_sym___declspec] = ACTIONS(3179), - [anon_sym___based] = ACTIONS(3179), - [anon_sym_signed] = ACTIONS(3179), - [anon_sym_unsigned] = ACTIONS(3179), - [anon_sym_long] = ACTIONS(3179), - [anon_sym_short] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_static] = ACTIONS(3179), - [anon_sym_register] = ACTIONS(3179), - [anon_sym_inline] = ACTIONS(3179), - [anon_sym___inline] = ACTIONS(3179), - [anon_sym___inline__] = ACTIONS(3179), - [anon_sym___forceinline] = ACTIONS(3179), - [anon_sym_thread_local] = ACTIONS(3179), - [anon_sym___thread] = ACTIONS(3179), - [anon_sym_const] = ACTIONS(3179), - [anon_sym_constexpr] = ACTIONS(3179), - [anon_sym_volatile] = ACTIONS(3179), - [anon_sym_restrict] = ACTIONS(3179), - [anon_sym___restrict__] = ACTIONS(3179), - [anon_sym__Atomic] = ACTIONS(3179), - [anon_sym__Noreturn] = ACTIONS(3179), - [anon_sym_noreturn] = ACTIONS(3179), - [anon_sym_mutable] = ACTIONS(3179), - [anon_sym_constinit] = ACTIONS(3179), - [anon_sym_consteval] = ACTIONS(3179), - [sym_primitive_type] = ACTIONS(3179), - [anon_sym_enum] = ACTIONS(3179), - [anon_sym_class] = ACTIONS(3179), - [anon_sym_struct] = ACTIONS(3179), - [anon_sym_union] = ACTIONS(3179), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3179), - [anon_sym_decltype] = ACTIONS(3179), - [anon_sym_virtual] = ACTIONS(3179), - [anon_sym_alignas] = ACTIONS(3179), - [anon_sym_explicit] = ACTIONS(3179), - [anon_sym_typename] = ACTIONS(3179), - [anon_sym_template] = ACTIONS(3179), - [anon_sym_operator] = ACTIONS(3179), - [anon_sym_friend] = ACTIONS(3179), - [anon_sym_public] = ACTIONS(3179), - [anon_sym_private] = ACTIONS(3179), - [anon_sym_protected] = ACTIONS(3179), - [anon_sym_using] = ACTIONS(3179), - [anon_sym_static_assert] = ACTIONS(3179), + [2135] = { + [sym_identifier] = ACTIONS(5908), + [aux_sym_preproc_def_token1] = ACTIONS(5908), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5910), + [aux_sym_preproc_if_token1] = ACTIONS(5908), + [aux_sym_preproc_if_token2] = ACTIONS(5908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5908), + [aux_sym_preproc_else_token1] = ACTIONS(5908), + [aux_sym_preproc_elif_token1] = ACTIONS(5908), + [sym_preproc_directive] = ACTIONS(5908), + [anon_sym_LPAREN2] = ACTIONS(5910), + [anon_sym_TILDE] = ACTIONS(5910), + [anon_sym_STAR] = ACTIONS(5910), + [anon_sym_AMP_AMP] = ACTIONS(5910), + [anon_sym_AMP] = ACTIONS(5908), + [anon_sym___extension__] = ACTIONS(5908), + [anon_sym_typedef] = ACTIONS(5908), + [anon_sym_extern] = ACTIONS(5908), + [anon_sym___attribute__] = ACTIONS(5908), + [anon_sym_COLON_COLON] = ACTIONS(5910), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5910), + [anon_sym___declspec] = ACTIONS(5908), + [anon_sym___based] = ACTIONS(5908), + [anon_sym_signed] = ACTIONS(5908), + [anon_sym_unsigned] = ACTIONS(5908), + [anon_sym_long] = ACTIONS(5908), + [anon_sym_short] = ACTIONS(5908), + [anon_sym_LBRACK] = ACTIONS(5908), + [anon_sym_static] = ACTIONS(5908), + [anon_sym_register] = ACTIONS(5908), + [anon_sym_inline] = ACTIONS(5908), + [anon_sym___inline] = ACTIONS(5908), + [anon_sym___inline__] = ACTIONS(5908), + [anon_sym___forceinline] = ACTIONS(5908), + [anon_sym_thread_local] = ACTIONS(5908), + [anon_sym___thread] = ACTIONS(5908), + [anon_sym_const] = ACTIONS(5908), + [anon_sym_constexpr] = ACTIONS(5908), + [anon_sym_volatile] = ACTIONS(5908), + [anon_sym_restrict] = ACTIONS(5908), + [anon_sym___restrict__] = ACTIONS(5908), + [anon_sym__Atomic] = ACTIONS(5908), + [anon_sym__Noreturn] = ACTIONS(5908), + [anon_sym_noreturn] = ACTIONS(5908), + [anon_sym_mutable] = ACTIONS(5908), + [anon_sym_constinit] = ACTIONS(5908), + [anon_sym_consteval] = ACTIONS(5908), + [sym_primitive_type] = ACTIONS(5908), + [anon_sym_enum] = ACTIONS(5908), + [anon_sym_class] = ACTIONS(5908), + [anon_sym_struct] = ACTIONS(5908), + [anon_sym_union] = ACTIONS(5908), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5908), + [anon_sym_decltype] = ACTIONS(5908), + [anon_sym_virtual] = ACTIONS(5908), + [anon_sym_alignas] = ACTIONS(5908), + [anon_sym_explicit] = ACTIONS(5908), + [anon_sym_typename] = ACTIONS(5908), + [anon_sym_template] = ACTIONS(5908), + [anon_sym_operator] = ACTIONS(5908), + [anon_sym_friend] = ACTIONS(5908), + [anon_sym_public] = ACTIONS(5908), + [anon_sym_private] = ACTIONS(5908), + [anon_sym_protected] = ACTIONS(5908), + [anon_sym_using] = ACTIONS(5908), + [anon_sym_static_assert] = ACTIONS(5908), + [sym_semgrep_metavar] = ACTIONS(5910), }, - [2210] = { + [2136] = { [sym_identifier] = ACTIONS(3461), [aux_sym_preproc_def_token1] = ACTIONS(3461), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3463), [aux_sym_preproc_if_token1] = ACTIONS(3461), [aux_sym_preproc_if_token2] = ACTIONS(3461), [aux_sym_preproc_ifdef_token1] = ACTIONS(3461), @@ -313769,50613 +297656,23914 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(3461), [anon_sym_using] = ACTIONS(3461), [anon_sym_static_assert] = ACTIONS(3461), + [sym_semgrep_metavar] = ACTIONS(3463), }, - [2211] = { - [sym_identifier] = ACTIONS(3392), - [aux_sym_preproc_def_token1] = ACTIONS(3392), - [aux_sym_preproc_if_token1] = ACTIONS(3392), - [aux_sym_preproc_if_token2] = ACTIONS(3392), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3392), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3392), - [aux_sym_preproc_else_token1] = ACTIONS(3392), - [aux_sym_preproc_elif_token1] = ACTIONS(3392), - [sym_preproc_directive] = ACTIONS(3392), - [anon_sym_LPAREN2] = ACTIONS(3394), - [anon_sym_TILDE] = ACTIONS(3394), - [anon_sym_STAR] = ACTIONS(3394), - [anon_sym_AMP_AMP] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3392), - [anon_sym___extension__] = ACTIONS(3392), - [anon_sym_typedef] = ACTIONS(3392), - [anon_sym_extern] = ACTIONS(3392), - [anon_sym___attribute__] = ACTIONS(3392), - [anon_sym_COLON_COLON] = ACTIONS(3394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3394), - [anon_sym___declspec] = ACTIONS(3392), - [anon_sym___based] = ACTIONS(3392), - [anon_sym_signed] = ACTIONS(3392), - [anon_sym_unsigned] = ACTIONS(3392), - [anon_sym_long] = ACTIONS(3392), - [anon_sym_short] = ACTIONS(3392), - [anon_sym_LBRACK] = ACTIONS(3392), - [anon_sym_static] = ACTIONS(3392), - [anon_sym_register] = ACTIONS(3392), - [anon_sym_inline] = ACTIONS(3392), - [anon_sym___inline] = ACTIONS(3392), - [anon_sym___inline__] = ACTIONS(3392), - [anon_sym___forceinline] = ACTIONS(3392), - [anon_sym_thread_local] = ACTIONS(3392), - [anon_sym___thread] = ACTIONS(3392), - [anon_sym_const] = ACTIONS(3392), - [anon_sym_constexpr] = ACTIONS(3392), - [anon_sym_volatile] = ACTIONS(3392), - [anon_sym_restrict] = ACTIONS(3392), - [anon_sym___restrict__] = ACTIONS(3392), - [anon_sym__Atomic] = ACTIONS(3392), - [anon_sym__Noreturn] = ACTIONS(3392), - [anon_sym_noreturn] = ACTIONS(3392), - [anon_sym_mutable] = ACTIONS(3392), - [anon_sym_constinit] = ACTIONS(3392), - [anon_sym_consteval] = ACTIONS(3392), - [sym_primitive_type] = ACTIONS(3392), - [anon_sym_enum] = ACTIONS(3392), - [anon_sym_class] = ACTIONS(3392), - [anon_sym_struct] = ACTIONS(3392), - [anon_sym_union] = ACTIONS(3392), + [2137] = { + [ts_builtin_sym_end] = ACTIONS(4789), + [sym_identifier] = ACTIONS(5938), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4789), + [anon_sym_COMMA] = ACTIONS(4789), + [anon_sym_RPAREN] = ACTIONS(4789), + [aux_sym_preproc_if_token2] = ACTIONS(4789), + [aux_sym_preproc_else_token1] = ACTIONS(4789), + [aux_sym_preproc_elif_token1] = ACTIONS(5938), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4789), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4789), + [anon_sym_LPAREN2] = ACTIONS(4789), + [anon_sym_DASH] = ACTIONS(5938), + [anon_sym_PLUS] = ACTIONS(5938), + [anon_sym_STAR] = ACTIONS(5938), + [anon_sym_SLASH] = ACTIONS(5938), + [anon_sym_PERCENT] = ACTIONS(5938), + [anon_sym_PIPE_PIPE] = ACTIONS(4789), + [anon_sym_AMP_AMP] = ACTIONS(4789), + [anon_sym_PIPE] = ACTIONS(5938), + [anon_sym_CARET] = ACTIONS(5938), + [anon_sym_AMP] = ACTIONS(5938), + [anon_sym_EQ_EQ] = ACTIONS(4789), + [anon_sym_BANG_EQ] = ACTIONS(4789), + [anon_sym_GT] = ACTIONS(5938), + [anon_sym_GT_EQ] = ACTIONS(4789), + [anon_sym_LT_EQ] = ACTIONS(5938), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_LT] = ACTIONS(5938), + [anon_sym_GT_GT] = ACTIONS(5938), + [anon_sym_SEMI] = ACTIONS(4789), + [anon_sym___attribute__] = ACTIONS(5938), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_RBRACE] = ACTIONS(4789), + [anon_sym_LBRACK] = ACTIONS(4789), + [anon_sym_RBRACK] = ACTIONS(4789), + [anon_sym_EQ] = ACTIONS(5938), + [anon_sym_COLON] = ACTIONS(4789), + [anon_sym_QMARK] = ACTIONS(4789), + [anon_sym_STAR_EQ] = ACTIONS(4789), + [anon_sym_SLASH_EQ] = ACTIONS(4789), + [anon_sym_PERCENT_EQ] = ACTIONS(4789), + [anon_sym_PLUS_EQ] = ACTIONS(4789), + [anon_sym_DASH_EQ] = ACTIONS(4789), + [anon_sym_LT_LT_EQ] = ACTIONS(4789), + [anon_sym_GT_GT_EQ] = ACTIONS(4789), + [anon_sym_AMP_EQ] = ACTIONS(4789), + [anon_sym_CARET_EQ] = ACTIONS(4789), + [anon_sym_PIPE_EQ] = ACTIONS(4789), + [anon_sym_and_eq] = ACTIONS(5938), + [anon_sym_or_eq] = ACTIONS(5938), + [anon_sym_xor_eq] = ACTIONS(5938), + [anon_sym_LT_EQ_GT] = ACTIONS(4789), + [anon_sym_or] = ACTIONS(5938), + [anon_sym_and] = ACTIONS(5938), + [anon_sym_bitor] = ACTIONS(5938), + [anon_sym_xor] = ACTIONS(5938), + [anon_sym_bitand] = ACTIONS(5938), + [anon_sym_not_eq] = ACTIONS(5938), + [anon_sym_DASH_DASH] = ACTIONS(4789), + [anon_sym_PLUS_PLUS] = ACTIONS(4789), + [anon_sym_DOT] = ACTIONS(5938), + [anon_sym_DOT_STAR] = ACTIONS(4789), + [anon_sym_DASH_GT] = ACTIONS(4789), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3392), - [anon_sym_decltype] = ACTIONS(3392), - [anon_sym_virtual] = ACTIONS(3392), - [anon_sym_alignas] = ACTIONS(3392), - [anon_sym_explicit] = ACTIONS(3392), - [anon_sym_typename] = ACTIONS(3392), - [anon_sym_template] = ACTIONS(3392), - [anon_sym_operator] = ACTIONS(3392), - [anon_sym_friend] = ACTIONS(3392), - [anon_sym_public] = ACTIONS(3392), - [anon_sym_private] = ACTIONS(3392), - [anon_sym_protected] = ACTIONS(3392), - [anon_sym_using] = ACTIONS(3392), - [anon_sym_static_assert] = ACTIONS(3392), + [sym_auto] = ACTIONS(5938), + [anon_sym_decltype] = ACTIONS(5938), + [anon_sym_final] = ACTIONS(5938), + [anon_sym_override] = ACTIONS(5938), }, - [2212] = { - [sym_identifier] = ACTIONS(3503), - [aux_sym_preproc_def_token1] = ACTIONS(3503), - [aux_sym_preproc_if_token1] = ACTIONS(3503), - [aux_sym_preproc_if_token2] = ACTIONS(3503), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3503), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3503), - [aux_sym_preproc_else_token1] = ACTIONS(3503), - [aux_sym_preproc_elif_token1] = ACTIONS(3503), - [sym_preproc_directive] = ACTIONS(3503), - [anon_sym_LPAREN2] = ACTIONS(3505), - [anon_sym_TILDE] = ACTIONS(3505), - [anon_sym_STAR] = ACTIONS(3505), - [anon_sym_AMP_AMP] = ACTIONS(3505), - [anon_sym_AMP] = ACTIONS(3503), - [anon_sym___extension__] = ACTIONS(3503), - [anon_sym_typedef] = ACTIONS(3503), - [anon_sym_extern] = ACTIONS(3503), - [anon_sym___attribute__] = ACTIONS(3503), - [anon_sym_COLON_COLON] = ACTIONS(3505), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3505), - [anon_sym___declspec] = ACTIONS(3503), - [anon_sym___based] = ACTIONS(3503), - [anon_sym_signed] = ACTIONS(3503), - [anon_sym_unsigned] = ACTIONS(3503), - [anon_sym_long] = ACTIONS(3503), - [anon_sym_short] = ACTIONS(3503), - [anon_sym_LBRACK] = ACTIONS(3503), - [anon_sym_static] = ACTIONS(3503), - [anon_sym_register] = ACTIONS(3503), - [anon_sym_inline] = ACTIONS(3503), - [anon_sym___inline] = ACTIONS(3503), - [anon_sym___inline__] = ACTIONS(3503), - [anon_sym___forceinline] = ACTIONS(3503), - [anon_sym_thread_local] = ACTIONS(3503), - [anon_sym___thread] = ACTIONS(3503), - [anon_sym_const] = ACTIONS(3503), - [anon_sym_constexpr] = ACTIONS(3503), - [anon_sym_volatile] = ACTIONS(3503), - [anon_sym_restrict] = ACTIONS(3503), - [anon_sym___restrict__] = ACTIONS(3503), - [anon_sym__Atomic] = ACTIONS(3503), - [anon_sym__Noreturn] = ACTIONS(3503), - [anon_sym_noreturn] = ACTIONS(3503), - [anon_sym_mutable] = ACTIONS(3503), - [anon_sym_constinit] = ACTIONS(3503), - [anon_sym_consteval] = ACTIONS(3503), - [sym_primitive_type] = ACTIONS(3503), - [anon_sym_enum] = ACTIONS(3503), - [anon_sym_class] = ACTIONS(3503), - [anon_sym_struct] = ACTIONS(3503), - [anon_sym_union] = ACTIONS(3503), + [2138] = { + [sym_identifier] = ACTIONS(5832), + [aux_sym_preproc_def_token1] = ACTIONS(5832), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5834), + [aux_sym_preproc_if_token1] = ACTIONS(5832), + [aux_sym_preproc_if_token2] = ACTIONS(5832), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5832), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5832), + [aux_sym_preproc_else_token1] = ACTIONS(5832), + [aux_sym_preproc_elif_token1] = ACTIONS(5832), + [sym_preproc_directive] = ACTIONS(5832), + [anon_sym_LPAREN2] = ACTIONS(5834), + [anon_sym_TILDE] = ACTIONS(5834), + [anon_sym_STAR] = ACTIONS(5834), + [anon_sym_AMP_AMP] = ACTIONS(5834), + [anon_sym_AMP] = ACTIONS(5832), + [anon_sym___extension__] = ACTIONS(5832), + [anon_sym_typedef] = ACTIONS(5832), + [anon_sym_extern] = ACTIONS(5832), + [anon_sym___attribute__] = ACTIONS(5832), + [anon_sym_COLON_COLON] = ACTIONS(5834), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5834), + [anon_sym___declspec] = ACTIONS(5832), + [anon_sym___based] = ACTIONS(5832), + [anon_sym_signed] = ACTIONS(5832), + [anon_sym_unsigned] = ACTIONS(5832), + [anon_sym_long] = ACTIONS(5832), + [anon_sym_short] = ACTIONS(5832), + [anon_sym_LBRACK] = ACTIONS(5832), + [anon_sym_static] = ACTIONS(5832), + [anon_sym_register] = ACTIONS(5832), + [anon_sym_inline] = ACTIONS(5832), + [anon_sym___inline] = ACTIONS(5832), + [anon_sym___inline__] = ACTIONS(5832), + [anon_sym___forceinline] = ACTIONS(5832), + [anon_sym_thread_local] = ACTIONS(5832), + [anon_sym___thread] = ACTIONS(5832), + [anon_sym_const] = ACTIONS(5832), + [anon_sym_constexpr] = ACTIONS(5832), + [anon_sym_volatile] = ACTIONS(5832), + [anon_sym_restrict] = ACTIONS(5832), + [anon_sym___restrict__] = ACTIONS(5832), + [anon_sym__Atomic] = ACTIONS(5832), + [anon_sym__Noreturn] = ACTIONS(5832), + [anon_sym_noreturn] = ACTIONS(5832), + [anon_sym_mutable] = ACTIONS(5832), + [anon_sym_constinit] = ACTIONS(5832), + [anon_sym_consteval] = ACTIONS(5832), + [sym_primitive_type] = ACTIONS(5832), + [anon_sym_enum] = ACTIONS(5832), + [anon_sym_class] = ACTIONS(5832), + [anon_sym_struct] = ACTIONS(5832), + [anon_sym_union] = ACTIONS(5832), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3503), - [anon_sym_decltype] = ACTIONS(3503), - [anon_sym_virtual] = ACTIONS(3503), - [anon_sym_alignas] = ACTIONS(3503), - [anon_sym_explicit] = ACTIONS(3503), - [anon_sym_typename] = ACTIONS(3503), - [anon_sym_template] = ACTIONS(3503), - [anon_sym_operator] = ACTIONS(3503), - [anon_sym_friend] = ACTIONS(3503), - [anon_sym_public] = ACTIONS(3503), - [anon_sym_private] = ACTIONS(3503), - [anon_sym_protected] = ACTIONS(3503), - [anon_sym_using] = ACTIONS(3503), - [anon_sym_static_assert] = ACTIONS(3503), + [sym_auto] = ACTIONS(5832), + [anon_sym_decltype] = ACTIONS(5832), + [anon_sym_virtual] = ACTIONS(5832), + [anon_sym_alignas] = ACTIONS(5832), + [anon_sym_explicit] = ACTIONS(5832), + [anon_sym_typename] = ACTIONS(5832), + [anon_sym_template] = ACTIONS(5832), + [anon_sym_operator] = ACTIONS(5832), + [anon_sym_friend] = ACTIONS(5832), + [anon_sym_public] = ACTIONS(5832), + [anon_sym_private] = ACTIONS(5832), + [anon_sym_protected] = ACTIONS(5832), + [anon_sym_using] = ACTIONS(5832), + [anon_sym_static_assert] = ACTIONS(5832), + [sym_semgrep_metavar] = ACTIONS(5834), }, - [2213] = { - [sym_identifier] = ACTIONS(5840), - [aux_sym_preproc_def_token1] = ACTIONS(5840), - [aux_sym_preproc_if_token1] = ACTIONS(5840), - [aux_sym_preproc_if_token2] = ACTIONS(5840), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5840), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5840), - [aux_sym_preproc_else_token1] = ACTIONS(5840), - [aux_sym_preproc_elif_token1] = ACTIONS(5840), - [sym_preproc_directive] = ACTIONS(5840), - [anon_sym_LPAREN2] = ACTIONS(5842), - [anon_sym_TILDE] = ACTIONS(5842), - [anon_sym_STAR] = ACTIONS(5842), - [anon_sym_AMP_AMP] = ACTIONS(5842), - [anon_sym_AMP] = ACTIONS(5840), - [anon_sym___extension__] = ACTIONS(5840), - [anon_sym_typedef] = ACTIONS(5840), - [anon_sym_extern] = ACTIONS(5840), - [anon_sym___attribute__] = ACTIONS(5840), - [anon_sym_COLON_COLON] = ACTIONS(5842), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5842), - [anon_sym___declspec] = ACTIONS(5840), - [anon_sym___based] = ACTIONS(5840), - [anon_sym_signed] = ACTIONS(5840), - [anon_sym_unsigned] = ACTIONS(5840), - [anon_sym_long] = ACTIONS(5840), - [anon_sym_short] = ACTIONS(5840), - [anon_sym_LBRACK] = ACTIONS(5840), - [anon_sym_static] = ACTIONS(5840), - [anon_sym_register] = ACTIONS(5840), - [anon_sym_inline] = ACTIONS(5840), - [anon_sym___inline] = ACTIONS(5840), - [anon_sym___inline__] = ACTIONS(5840), - [anon_sym___forceinline] = ACTIONS(5840), - [anon_sym_thread_local] = ACTIONS(5840), - [anon_sym___thread] = ACTIONS(5840), - [anon_sym_const] = ACTIONS(5840), - [anon_sym_constexpr] = ACTIONS(5840), - [anon_sym_volatile] = ACTIONS(5840), - [anon_sym_restrict] = ACTIONS(5840), - [anon_sym___restrict__] = ACTIONS(5840), - [anon_sym__Atomic] = ACTIONS(5840), - [anon_sym__Noreturn] = ACTIONS(5840), - [anon_sym_noreturn] = ACTIONS(5840), - [anon_sym_mutable] = ACTIONS(5840), - [anon_sym_constinit] = ACTIONS(5840), - [anon_sym_consteval] = ACTIONS(5840), - [sym_primitive_type] = ACTIONS(5840), - [anon_sym_enum] = ACTIONS(5840), - [anon_sym_class] = ACTIONS(5840), - [anon_sym_struct] = ACTIONS(5840), - [anon_sym_union] = ACTIONS(5840), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5840), - [anon_sym_decltype] = ACTIONS(5840), - [anon_sym_virtual] = ACTIONS(5840), - [anon_sym_alignas] = ACTIONS(5840), - [anon_sym_explicit] = ACTIONS(5840), - [anon_sym_typename] = ACTIONS(5840), - [anon_sym_template] = ACTIONS(5840), - [anon_sym_operator] = ACTIONS(5840), - [anon_sym_friend] = ACTIONS(5840), - [anon_sym_public] = ACTIONS(5840), - [anon_sym_private] = ACTIONS(5840), - [anon_sym_protected] = ACTIONS(5840), - [anon_sym_using] = ACTIONS(5840), - [anon_sym_static_assert] = ACTIONS(5840), + [2139] = { + [sym_string_literal] = STATE(2203), + [sym_template_argument_list] = STATE(3476), + [sym_raw_string_literal] = STATE(2203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_RPAREN] = ACTIONS(5991), + [anon_sym_LPAREN2] = ACTIONS(5991), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4773), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4773), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(5447), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5991), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_LBRACK] = ACTIONS(5993), + [anon_sym_EQ] = ACTIONS(4773), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4765), + [anon_sym_SLASH_EQ] = ACTIONS(4765), + [anon_sym_PERCENT_EQ] = ACTIONS(4765), + [anon_sym_PLUS_EQ] = ACTIONS(4765), + [anon_sym_DASH_EQ] = ACTIONS(4765), + [anon_sym_LT_LT_EQ] = ACTIONS(4765), + [anon_sym_GT_GT_EQ] = ACTIONS(4765), + [anon_sym_AMP_EQ] = ACTIONS(4765), + [anon_sym_CARET_EQ] = ACTIONS(4765), + [anon_sym_PIPE_EQ] = ACTIONS(4765), + [anon_sym_and_eq] = ACTIONS(4765), + [anon_sym_or_eq] = ACTIONS(4765), + [anon_sym_xor_eq] = ACTIONS(4765), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4765), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4765), + [anon_sym_not_eq] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4773), + [anon_sym_L_DQUOTE] = ACTIONS(5413), + [anon_sym_u_DQUOTE] = ACTIONS(5413), + [anon_sym_U_DQUOTE] = ACTIONS(5413), + [anon_sym_u8_DQUOTE] = ACTIONS(5413), + [anon_sym_DQUOTE] = ACTIONS(5413), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5415), + [anon_sym_LR_DQUOTE] = ACTIONS(5415), + [anon_sym_uR_DQUOTE] = ACTIONS(5415), + [anon_sym_UR_DQUOTE] = ACTIONS(5415), + [anon_sym_u8R_DQUOTE] = ACTIONS(5415), + [anon_sym_DASH_GT_STAR] = ACTIONS(4765), }, - [2214] = { - [sym_identifier] = ACTIONS(5844), - [aux_sym_preproc_def_token1] = ACTIONS(5844), - [aux_sym_preproc_if_token1] = ACTIONS(5844), - [aux_sym_preproc_if_token2] = ACTIONS(5844), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5844), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5844), - [aux_sym_preproc_else_token1] = ACTIONS(5844), - [aux_sym_preproc_elif_token1] = ACTIONS(5844), - [sym_preproc_directive] = ACTIONS(5844), - [anon_sym_LPAREN2] = ACTIONS(5846), - [anon_sym_TILDE] = ACTIONS(5846), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_AMP_AMP] = ACTIONS(5846), - [anon_sym_AMP] = ACTIONS(5844), - [anon_sym___extension__] = ACTIONS(5844), - [anon_sym_typedef] = ACTIONS(5844), - [anon_sym_extern] = ACTIONS(5844), - [anon_sym___attribute__] = ACTIONS(5844), - [anon_sym_COLON_COLON] = ACTIONS(5846), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5846), - [anon_sym___declspec] = ACTIONS(5844), - [anon_sym___based] = ACTIONS(5844), - [anon_sym_signed] = ACTIONS(5844), - [anon_sym_unsigned] = ACTIONS(5844), - [anon_sym_long] = ACTIONS(5844), - [anon_sym_short] = ACTIONS(5844), - [anon_sym_LBRACK] = ACTIONS(5844), - [anon_sym_static] = ACTIONS(5844), - [anon_sym_register] = ACTIONS(5844), - [anon_sym_inline] = ACTIONS(5844), - [anon_sym___inline] = ACTIONS(5844), - [anon_sym___inline__] = ACTIONS(5844), - [anon_sym___forceinline] = ACTIONS(5844), - [anon_sym_thread_local] = ACTIONS(5844), - [anon_sym___thread] = ACTIONS(5844), - [anon_sym_const] = ACTIONS(5844), - [anon_sym_constexpr] = ACTIONS(5844), - [anon_sym_volatile] = ACTIONS(5844), - [anon_sym_restrict] = ACTIONS(5844), - [anon_sym___restrict__] = ACTIONS(5844), - [anon_sym__Atomic] = ACTIONS(5844), - [anon_sym__Noreturn] = ACTIONS(5844), - [anon_sym_noreturn] = ACTIONS(5844), - [anon_sym_mutable] = ACTIONS(5844), - [anon_sym_constinit] = ACTIONS(5844), - [anon_sym_consteval] = ACTIONS(5844), - [sym_primitive_type] = ACTIONS(5844), - [anon_sym_enum] = ACTIONS(5844), - [anon_sym_class] = ACTIONS(5844), - [anon_sym_struct] = ACTIONS(5844), - [anon_sym_union] = ACTIONS(5844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5844), - [anon_sym_decltype] = ACTIONS(5844), - [anon_sym_virtual] = ACTIONS(5844), - [anon_sym_alignas] = ACTIONS(5844), - [anon_sym_explicit] = ACTIONS(5844), - [anon_sym_typename] = ACTIONS(5844), - [anon_sym_template] = ACTIONS(5844), - [anon_sym_operator] = ACTIONS(5844), - [anon_sym_friend] = ACTIONS(5844), - [anon_sym_public] = ACTIONS(5844), - [anon_sym_private] = ACTIONS(5844), - [anon_sym_protected] = ACTIONS(5844), - [anon_sym_using] = ACTIONS(5844), - [anon_sym_static_assert] = ACTIONS(5844), + [2140] = { + [sym_string_literal] = STATE(2203), + [sym_template_argument_list] = STATE(3252), + [sym_raw_string_literal] = STATE(2203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_RPAREN] = ACTIONS(5995), + [anon_sym_LPAREN2] = ACTIONS(5995), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4773), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4773), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(5406), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5409), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_LBRACK] = ACTIONS(5998), + [anon_sym_EQ] = ACTIONS(4773), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4765), + [anon_sym_SLASH_EQ] = ACTIONS(4765), + [anon_sym_PERCENT_EQ] = ACTIONS(4765), + [anon_sym_PLUS_EQ] = ACTIONS(4765), + [anon_sym_DASH_EQ] = ACTIONS(4765), + [anon_sym_LT_LT_EQ] = ACTIONS(4765), + [anon_sym_GT_GT_EQ] = ACTIONS(4765), + [anon_sym_AMP_EQ] = ACTIONS(4765), + [anon_sym_CARET_EQ] = ACTIONS(4765), + [anon_sym_PIPE_EQ] = ACTIONS(4765), + [anon_sym_and_eq] = ACTIONS(4765), + [anon_sym_or_eq] = ACTIONS(4765), + [anon_sym_xor_eq] = ACTIONS(4765), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4765), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4765), + [anon_sym_not_eq] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4773), + [anon_sym_L_DQUOTE] = ACTIONS(5413), + [anon_sym_u_DQUOTE] = ACTIONS(5413), + [anon_sym_U_DQUOTE] = ACTIONS(5413), + [anon_sym_u8_DQUOTE] = ACTIONS(5413), + [anon_sym_DQUOTE] = ACTIONS(5413), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5415), + [anon_sym_LR_DQUOTE] = ACTIONS(5415), + [anon_sym_uR_DQUOTE] = ACTIONS(5415), + [anon_sym_UR_DQUOTE] = ACTIONS(5415), + [anon_sym_u8R_DQUOTE] = ACTIONS(5415), + [anon_sym_DASH_GT_STAR] = ACTIONS(4765), }, - [2215] = { - [sym_identifier] = ACTIONS(5848), - [aux_sym_preproc_def_token1] = ACTIONS(5848), - [aux_sym_preproc_if_token1] = ACTIONS(5848), - [aux_sym_preproc_if_token2] = ACTIONS(5848), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5848), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5848), - [aux_sym_preproc_else_token1] = ACTIONS(5848), - [aux_sym_preproc_elif_token1] = ACTIONS(5848), - [sym_preproc_directive] = ACTIONS(5848), - [anon_sym_LPAREN2] = ACTIONS(5850), - [anon_sym_TILDE] = ACTIONS(5850), - [anon_sym_STAR] = ACTIONS(5850), - [anon_sym_AMP_AMP] = ACTIONS(5850), - [anon_sym_AMP] = ACTIONS(5848), - [anon_sym___extension__] = ACTIONS(5848), - [anon_sym_typedef] = ACTIONS(5848), - [anon_sym_extern] = ACTIONS(5848), - [anon_sym___attribute__] = ACTIONS(5848), - [anon_sym_COLON_COLON] = ACTIONS(5850), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5850), - [anon_sym___declspec] = ACTIONS(5848), - [anon_sym___based] = ACTIONS(5848), - [anon_sym_signed] = ACTIONS(5848), - [anon_sym_unsigned] = ACTIONS(5848), - [anon_sym_long] = ACTIONS(5848), - [anon_sym_short] = ACTIONS(5848), - [anon_sym_LBRACK] = ACTIONS(5848), - [anon_sym_static] = ACTIONS(5848), - [anon_sym_register] = ACTIONS(5848), - [anon_sym_inline] = ACTIONS(5848), - [anon_sym___inline] = ACTIONS(5848), - [anon_sym___inline__] = ACTIONS(5848), - [anon_sym___forceinline] = ACTIONS(5848), - [anon_sym_thread_local] = ACTIONS(5848), - [anon_sym___thread] = ACTIONS(5848), - [anon_sym_const] = ACTIONS(5848), - [anon_sym_constexpr] = ACTIONS(5848), - [anon_sym_volatile] = ACTIONS(5848), - [anon_sym_restrict] = ACTIONS(5848), - [anon_sym___restrict__] = ACTIONS(5848), - [anon_sym__Atomic] = ACTIONS(5848), - [anon_sym__Noreturn] = ACTIONS(5848), - [anon_sym_noreturn] = ACTIONS(5848), - [anon_sym_mutable] = ACTIONS(5848), - [anon_sym_constinit] = ACTIONS(5848), - [anon_sym_consteval] = ACTIONS(5848), - [sym_primitive_type] = ACTIONS(5848), - [anon_sym_enum] = ACTIONS(5848), - [anon_sym_class] = ACTIONS(5848), - [anon_sym_struct] = ACTIONS(5848), - [anon_sym_union] = ACTIONS(5848), + [2141] = { + [sym_identifier] = ACTIONS(3465), + [aux_sym_preproc_def_token1] = ACTIONS(3465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3467), + [aux_sym_preproc_if_token1] = ACTIONS(3465), + [aux_sym_preproc_if_token2] = ACTIONS(3465), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3465), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3465), + [aux_sym_preproc_else_token1] = ACTIONS(3465), + [aux_sym_preproc_elif_token1] = ACTIONS(3465), + [sym_preproc_directive] = ACTIONS(3465), + [anon_sym_LPAREN2] = ACTIONS(3467), + [anon_sym_TILDE] = ACTIONS(3467), + [anon_sym_STAR] = ACTIONS(3467), + [anon_sym_AMP_AMP] = ACTIONS(3467), + [anon_sym_AMP] = ACTIONS(3465), + [anon_sym___extension__] = ACTIONS(3465), + [anon_sym_typedef] = ACTIONS(3465), + [anon_sym_extern] = ACTIONS(3465), + [anon_sym___attribute__] = ACTIONS(3465), + [anon_sym_COLON_COLON] = ACTIONS(3467), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3467), + [anon_sym___declspec] = ACTIONS(3465), + [anon_sym___based] = ACTIONS(3465), + [anon_sym_signed] = ACTIONS(3465), + [anon_sym_unsigned] = ACTIONS(3465), + [anon_sym_long] = ACTIONS(3465), + [anon_sym_short] = ACTIONS(3465), + [anon_sym_LBRACK] = ACTIONS(3465), + [anon_sym_static] = ACTIONS(3465), + [anon_sym_register] = ACTIONS(3465), + [anon_sym_inline] = ACTIONS(3465), + [anon_sym___inline] = ACTIONS(3465), + [anon_sym___inline__] = ACTIONS(3465), + [anon_sym___forceinline] = ACTIONS(3465), + [anon_sym_thread_local] = ACTIONS(3465), + [anon_sym___thread] = ACTIONS(3465), + [anon_sym_const] = ACTIONS(3465), + [anon_sym_constexpr] = ACTIONS(3465), + [anon_sym_volatile] = ACTIONS(3465), + [anon_sym_restrict] = ACTIONS(3465), + [anon_sym___restrict__] = ACTIONS(3465), + [anon_sym__Atomic] = ACTIONS(3465), + [anon_sym__Noreturn] = ACTIONS(3465), + [anon_sym_noreturn] = ACTIONS(3465), + [anon_sym_mutable] = ACTIONS(3465), + [anon_sym_constinit] = ACTIONS(3465), + [anon_sym_consteval] = ACTIONS(3465), + [sym_primitive_type] = ACTIONS(3465), + [anon_sym_enum] = ACTIONS(3465), + [anon_sym_class] = ACTIONS(3465), + [anon_sym_struct] = ACTIONS(3465), + [anon_sym_union] = ACTIONS(3465), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5848), - [anon_sym_decltype] = ACTIONS(5848), - [anon_sym_virtual] = ACTIONS(5848), - [anon_sym_alignas] = ACTIONS(5848), - [anon_sym_explicit] = ACTIONS(5848), - [anon_sym_typename] = ACTIONS(5848), - [anon_sym_template] = ACTIONS(5848), - [anon_sym_operator] = ACTIONS(5848), - [anon_sym_friend] = ACTIONS(5848), - [anon_sym_public] = ACTIONS(5848), - [anon_sym_private] = ACTIONS(5848), - [anon_sym_protected] = ACTIONS(5848), - [anon_sym_using] = ACTIONS(5848), - [anon_sym_static_assert] = ACTIONS(5848), + [sym_auto] = ACTIONS(3465), + [anon_sym_decltype] = ACTIONS(3465), + [anon_sym_virtual] = ACTIONS(3465), + [anon_sym_alignas] = ACTIONS(3465), + [anon_sym_explicit] = ACTIONS(3465), + [anon_sym_typename] = ACTIONS(3465), + [anon_sym_template] = ACTIONS(3465), + [anon_sym_operator] = ACTIONS(3465), + [anon_sym_friend] = ACTIONS(3465), + [anon_sym_public] = ACTIONS(3465), + [anon_sym_private] = ACTIONS(3465), + [anon_sym_protected] = ACTIONS(3465), + [anon_sym_using] = ACTIONS(3465), + [anon_sym_static_assert] = ACTIONS(3465), + [sym_semgrep_metavar] = ACTIONS(3467), }, - [2216] = { - [sym_identifier] = ACTIONS(3227), - [aux_sym_preproc_def_token1] = ACTIONS(3227), - [aux_sym_preproc_if_token1] = ACTIONS(3227), - [aux_sym_preproc_if_token2] = ACTIONS(3227), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3227), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3227), - [aux_sym_preproc_else_token1] = ACTIONS(3227), - [aux_sym_preproc_elif_token1] = ACTIONS(3227), - [sym_preproc_directive] = ACTIONS(3227), - [anon_sym_LPAREN2] = ACTIONS(3229), - [anon_sym_TILDE] = ACTIONS(3229), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_AMP_AMP] = ACTIONS(3229), - [anon_sym_AMP] = ACTIONS(3227), - [anon_sym___extension__] = ACTIONS(3227), - [anon_sym_typedef] = ACTIONS(3227), - [anon_sym_extern] = ACTIONS(3227), - [anon_sym___attribute__] = ACTIONS(3227), - [anon_sym_COLON_COLON] = ACTIONS(3229), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3229), - [anon_sym___declspec] = ACTIONS(3227), - [anon_sym___based] = ACTIONS(3227), - [anon_sym_signed] = ACTIONS(3227), - [anon_sym_unsigned] = ACTIONS(3227), - [anon_sym_long] = ACTIONS(3227), - [anon_sym_short] = ACTIONS(3227), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_static] = ACTIONS(3227), - [anon_sym_register] = ACTIONS(3227), - [anon_sym_inline] = ACTIONS(3227), - [anon_sym___inline] = ACTIONS(3227), - [anon_sym___inline__] = ACTIONS(3227), - [anon_sym___forceinline] = ACTIONS(3227), - [anon_sym_thread_local] = ACTIONS(3227), - [anon_sym___thread] = ACTIONS(3227), - [anon_sym_const] = ACTIONS(3227), - [anon_sym_constexpr] = ACTIONS(3227), - [anon_sym_volatile] = ACTIONS(3227), - [anon_sym_restrict] = ACTIONS(3227), - [anon_sym___restrict__] = ACTIONS(3227), - [anon_sym__Atomic] = ACTIONS(3227), - [anon_sym__Noreturn] = ACTIONS(3227), - [anon_sym_noreturn] = ACTIONS(3227), - [anon_sym_mutable] = ACTIONS(3227), - [anon_sym_constinit] = ACTIONS(3227), - [anon_sym_consteval] = ACTIONS(3227), - [sym_primitive_type] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(3227), - [anon_sym_class] = ACTIONS(3227), - [anon_sym_struct] = ACTIONS(3227), - [anon_sym_union] = ACTIONS(3227), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3227), - [anon_sym_decltype] = ACTIONS(3227), - [anon_sym_virtual] = ACTIONS(3227), - [anon_sym_alignas] = ACTIONS(3227), - [anon_sym_explicit] = ACTIONS(3227), - [anon_sym_typename] = ACTIONS(3227), - [anon_sym_template] = ACTIONS(3227), - [anon_sym_operator] = ACTIONS(3227), - [anon_sym_friend] = ACTIONS(3227), - [anon_sym_public] = ACTIONS(3227), - [anon_sym_private] = ACTIONS(3227), - [anon_sym_protected] = ACTIONS(3227), - [anon_sym_using] = ACTIONS(3227), - [anon_sym_static_assert] = ACTIONS(3227), + [2142] = { + [sym_identifier] = ACTIONS(5769), + [aux_sym_preproc_def_token1] = ACTIONS(5769), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5771), + [aux_sym_preproc_if_token1] = ACTIONS(5769), + [aux_sym_preproc_if_token2] = ACTIONS(5769), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5769), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5769), + [aux_sym_preproc_else_token1] = ACTIONS(5769), + [aux_sym_preproc_elif_token1] = ACTIONS(5769), + [sym_preproc_directive] = ACTIONS(5769), + [anon_sym_LPAREN2] = ACTIONS(5771), + [anon_sym_TILDE] = ACTIONS(5771), + [anon_sym_STAR] = ACTIONS(5771), + [anon_sym_AMP_AMP] = ACTIONS(5771), + [anon_sym_AMP] = ACTIONS(5769), + [anon_sym___extension__] = ACTIONS(5769), + [anon_sym_typedef] = ACTIONS(5769), + [anon_sym_extern] = ACTIONS(5769), + [anon_sym___attribute__] = ACTIONS(5769), + [anon_sym_COLON_COLON] = ACTIONS(5771), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5771), + [anon_sym___declspec] = ACTIONS(5769), + [anon_sym___based] = ACTIONS(5769), + [anon_sym_signed] = ACTIONS(5769), + [anon_sym_unsigned] = ACTIONS(5769), + [anon_sym_long] = ACTIONS(5769), + [anon_sym_short] = ACTIONS(5769), + [anon_sym_LBRACK] = ACTIONS(5769), + [anon_sym_static] = ACTIONS(5769), + [anon_sym_register] = ACTIONS(5769), + [anon_sym_inline] = ACTIONS(5769), + [anon_sym___inline] = ACTIONS(5769), + [anon_sym___inline__] = ACTIONS(5769), + [anon_sym___forceinline] = ACTIONS(5769), + [anon_sym_thread_local] = ACTIONS(5769), + [anon_sym___thread] = ACTIONS(5769), + [anon_sym_const] = ACTIONS(5769), + [anon_sym_constexpr] = ACTIONS(5769), + [anon_sym_volatile] = ACTIONS(5769), + [anon_sym_restrict] = ACTIONS(5769), + [anon_sym___restrict__] = ACTIONS(5769), + [anon_sym__Atomic] = ACTIONS(5769), + [anon_sym__Noreturn] = ACTIONS(5769), + [anon_sym_noreturn] = ACTIONS(5769), + [anon_sym_mutable] = ACTIONS(5769), + [anon_sym_constinit] = ACTIONS(5769), + [anon_sym_consteval] = ACTIONS(5769), + [sym_primitive_type] = ACTIONS(5769), + [anon_sym_enum] = ACTIONS(5769), + [anon_sym_class] = ACTIONS(5769), + [anon_sym_struct] = ACTIONS(5769), + [anon_sym_union] = ACTIONS(5769), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5769), + [anon_sym_decltype] = ACTIONS(5769), + [anon_sym_virtual] = ACTIONS(5769), + [anon_sym_alignas] = ACTIONS(5769), + [anon_sym_explicit] = ACTIONS(5769), + [anon_sym_typename] = ACTIONS(5769), + [anon_sym_template] = ACTIONS(5769), + [anon_sym_operator] = ACTIONS(5769), + [anon_sym_friend] = ACTIONS(5769), + [anon_sym_public] = ACTIONS(5769), + [anon_sym_private] = ACTIONS(5769), + [anon_sym_protected] = ACTIONS(5769), + [anon_sym_using] = ACTIONS(5769), + [anon_sym_static_assert] = ACTIONS(5769), + [sym_semgrep_metavar] = ACTIONS(5771), }, - [2217] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2228), - [sym_identifier] = ACTIONS(5992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5990), - [anon_sym_COMMA] = ACTIONS(5990), - [aux_sym_preproc_if_token2] = ACTIONS(5990), - [aux_sym_preproc_else_token1] = ACTIONS(5990), - [aux_sym_preproc_elif_token1] = ACTIONS(5992), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5990), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5990), - [anon_sym_LPAREN2] = ACTIONS(5990), - [anon_sym_DASH] = ACTIONS(5992), - [anon_sym_PLUS] = ACTIONS(5992), - [anon_sym_STAR] = ACTIONS(5992), - [anon_sym_SLASH] = ACTIONS(5992), - [anon_sym_PERCENT] = ACTIONS(5992), - [anon_sym_PIPE_PIPE] = ACTIONS(5990), - [anon_sym_AMP_AMP] = ACTIONS(5990), - [anon_sym_PIPE] = ACTIONS(5992), - [anon_sym_CARET] = ACTIONS(5992), - [anon_sym_AMP] = ACTIONS(5992), - [anon_sym_EQ_EQ] = ACTIONS(5990), - [anon_sym_BANG_EQ] = ACTIONS(5990), - [anon_sym_GT] = ACTIONS(5992), - [anon_sym_GT_EQ] = ACTIONS(5990), - [anon_sym_LT_EQ] = ACTIONS(5992), - [anon_sym_LT] = ACTIONS(5992), - [anon_sym_LT_LT] = ACTIONS(5992), - [anon_sym_GT_GT] = ACTIONS(5992), - [anon_sym___attribute__] = ACTIONS(5992), - [anon_sym_LBRACE] = ACTIONS(5990), - [anon_sym_signed] = ACTIONS(6134), - [anon_sym_unsigned] = ACTIONS(6134), - [anon_sym_long] = ACTIONS(6134), - [anon_sym_short] = ACTIONS(6134), - [anon_sym_LBRACK] = ACTIONS(5990), - [anon_sym_EQ] = ACTIONS(5992), - [anon_sym_QMARK] = ACTIONS(5990), - [anon_sym_STAR_EQ] = ACTIONS(5990), - [anon_sym_SLASH_EQ] = ACTIONS(5990), - [anon_sym_PERCENT_EQ] = ACTIONS(5990), - [anon_sym_PLUS_EQ] = ACTIONS(5990), - [anon_sym_DASH_EQ] = ACTIONS(5990), - [anon_sym_LT_LT_EQ] = ACTIONS(5990), - [anon_sym_GT_GT_EQ] = ACTIONS(5990), - [anon_sym_AMP_EQ] = ACTIONS(5990), - [anon_sym_CARET_EQ] = ACTIONS(5990), - [anon_sym_PIPE_EQ] = ACTIONS(5990), - [anon_sym_and_eq] = ACTIONS(5992), - [anon_sym_or_eq] = ACTIONS(5992), - [anon_sym_xor_eq] = ACTIONS(5992), - [anon_sym_LT_EQ_GT] = ACTIONS(5990), - [anon_sym_or] = ACTIONS(5992), - [anon_sym_and] = ACTIONS(5992), - [anon_sym_bitor] = ACTIONS(5992), - [anon_sym_xor] = ACTIONS(5992), - [anon_sym_bitand] = ACTIONS(5992), - [anon_sym_not_eq] = ACTIONS(5992), - [anon_sym_DASH_DASH] = ACTIONS(5990), - [anon_sym_PLUS_PLUS] = ACTIONS(5990), - [anon_sym_DOT] = ACTIONS(5992), - [anon_sym_DOT_STAR] = ACTIONS(5990), - [anon_sym_DASH_GT] = ACTIONS(5990), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5992), - [anon_sym_decltype] = ACTIONS(5992), + [2143] = { + [sym_identifier] = ACTIONS(5773), + [aux_sym_preproc_def_token1] = ACTIONS(5773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5775), + [aux_sym_preproc_if_token1] = ACTIONS(5773), + [aux_sym_preproc_if_token2] = ACTIONS(5773), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5773), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5773), + [aux_sym_preproc_else_token1] = ACTIONS(5773), + [aux_sym_preproc_elif_token1] = ACTIONS(5773), + [sym_preproc_directive] = ACTIONS(5773), + [anon_sym_LPAREN2] = ACTIONS(5775), + [anon_sym_TILDE] = ACTIONS(5775), + [anon_sym_STAR] = ACTIONS(5775), + [anon_sym_AMP_AMP] = ACTIONS(5775), + [anon_sym_AMP] = ACTIONS(5773), + [anon_sym___extension__] = ACTIONS(5773), + [anon_sym_typedef] = ACTIONS(5773), + [anon_sym_extern] = ACTIONS(5773), + [anon_sym___attribute__] = ACTIONS(5773), + [anon_sym_COLON_COLON] = ACTIONS(5775), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5775), + [anon_sym___declspec] = ACTIONS(5773), + [anon_sym___based] = ACTIONS(5773), + [anon_sym_signed] = ACTIONS(5773), + [anon_sym_unsigned] = ACTIONS(5773), + [anon_sym_long] = ACTIONS(5773), + [anon_sym_short] = ACTIONS(5773), + [anon_sym_LBRACK] = ACTIONS(5773), + [anon_sym_static] = ACTIONS(5773), + [anon_sym_register] = ACTIONS(5773), + [anon_sym_inline] = ACTIONS(5773), + [anon_sym___inline] = ACTIONS(5773), + [anon_sym___inline__] = ACTIONS(5773), + [anon_sym___forceinline] = ACTIONS(5773), + [anon_sym_thread_local] = ACTIONS(5773), + [anon_sym___thread] = ACTIONS(5773), + [anon_sym_const] = ACTIONS(5773), + [anon_sym_constexpr] = ACTIONS(5773), + [anon_sym_volatile] = ACTIONS(5773), + [anon_sym_restrict] = ACTIONS(5773), + [anon_sym___restrict__] = ACTIONS(5773), + [anon_sym__Atomic] = ACTIONS(5773), + [anon_sym__Noreturn] = ACTIONS(5773), + [anon_sym_noreturn] = ACTIONS(5773), + [anon_sym_mutable] = ACTIONS(5773), + [anon_sym_constinit] = ACTIONS(5773), + [anon_sym_consteval] = ACTIONS(5773), + [sym_primitive_type] = ACTIONS(5773), + [anon_sym_enum] = ACTIONS(5773), + [anon_sym_class] = ACTIONS(5773), + [anon_sym_struct] = ACTIONS(5773), + [anon_sym_union] = ACTIONS(5773), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5773), + [anon_sym_decltype] = ACTIONS(5773), + [anon_sym_virtual] = ACTIONS(5773), + [anon_sym_alignas] = ACTIONS(5773), + [anon_sym_explicit] = ACTIONS(5773), + [anon_sym_typename] = ACTIONS(5773), + [anon_sym_template] = ACTIONS(5773), + [anon_sym_operator] = ACTIONS(5773), + [anon_sym_friend] = ACTIONS(5773), + [anon_sym_public] = ACTIONS(5773), + [anon_sym_private] = ACTIONS(5773), + [anon_sym_protected] = ACTIONS(5773), + [anon_sym_using] = ACTIONS(5773), + [anon_sym_static_assert] = ACTIONS(5773), + [sym_semgrep_metavar] = ACTIONS(5775), }, - [2218] = { - [sym_string_literal] = STATE(2073), - [sym_raw_string_literal] = STATE(2073), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_RPAREN] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(4829), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_EQ] = ACTIONS(4837), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4829), - [anon_sym_SLASH_EQ] = ACTIONS(4829), - [anon_sym_PERCENT_EQ] = ACTIONS(4829), - [anon_sym_PLUS_EQ] = ACTIONS(4829), - [anon_sym_DASH_EQ] = ACTIONS(4829), - [anon_sym_LT_LT_EQ] = ACTIONS(4829), - [anon_sym_GT_GT_EQ] = ACTIONS(4829), - [anon_sym_AMP_EQ] = ACTIONS(4829), - [anon_sym_CARET_EQ] = ACTIONS(4829), - [anon_sym_PIPE_EQ] = ACTIONS(4829), - [anon_sym_and_eq] = ACTIONS(4837), - [anon_sym_or_eq] = ACTIONS(4837), - [anon_sym_xor_eq] = ACTIONS(4837), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4837), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4837), - [anon_sym_not_eq] = ACTIONS(4837), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4837), - [anon_sym_L_DQUOTE] = ACTIONS(5492), - [anon_sym_u_DQUOTE] = ACTIONS(5492), - [anon_sym_U_DQUOTE] = ACTIONS(5492), - [anon_sym_u8_DQUOTE] = ACTIONS(5492), - [anon_sym_DQUOTE] = ACTIONS(5492), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5494), - [anon_sym_LR_DQUOTE] = ACTIONS(5494), - [anon_sym_uR_DQUOTE] = ACTIONS(5494), - [anon_sym_UR_DQUOTE] = ACTIONS(5494), - [anon_sym_u8R_DQUOTE] = ACTIONS(5494), - [anon_sym_DASH_GT_STAR] = ACTIONS(4829), - [sym_literal_suffix] = ACTIONS(6136), + [2144] = { + [sym_string_literal] = STATE(2729), + [sym_template_argument_list] = STATE(4089), + [sym_raw_string_literal] = STATE(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4765), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4773), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4773), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(5946), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_SEMI] = ACTIONS(4765), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_RBRACE] = ACTIONS(4765), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_EQ] = ACTIONS(4797), + [anon_sym_COLON] = ACTIONS(4838), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4801), + [anon_sym_SLASH_EQ] = ACTIONS(4801), + [anon_sym_PERCENT_EQ] = ACTIONS(4801), + [anon_sym_PLUS_EQ] = ACTIONS(4801), + [anon_sym_DASH_EQ] = ACTIONS(4801), + [anon_sym_LT_LT_EQ] = ACTIONS(4801), + [anon_sym_GT_GT_EQ] = ACTIONS(4801), + [anon_sym_AMP_EQ] = ACTIONS(4801), + [anon_sym_CARET_EQ] = ACTIONS(4801), + [anon_sym_PIPE_EQ] = ACTIONS(4801), + [anon_sym_and_eq] = ACTIONS(4801), + [anon_sym_or_eq] = ACTIONS(4801), + [anon_sym_xor_eq] = ACTIONS(4801), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4765), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4765), + [anon_sym_not_eq] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), }, - [2219] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2254), - [ts_builtin_sym_end] = ACTIONS(5996), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5996), - [anon_sym_COMMA] = ACTIONS(5996), - [anon_sym_RPAREN] = ACTIONS(5996), - [anon_sym_LPAREN2] = ACTIONS(5996), - [anon_sym_DASH] = ACTIONS(5998), - [anon_sym_PLUS] = ACTIONS(5998), - [anon_sym_STAR] = ACTIONS(5998), - [anon_sym_SLASH] = ACTIONS(5998), - [anon_sym_PERCENT] = ACTIONS(5998), - [anon_sym_PIPE_PIPE] = ACTIONS(5996), - [anon_sym_AMP_AMP] = ACTIONS(5996), - [anon_sym_PIPE] = ACTIONS(5998), - [anon_sym_CARET] = ACTIONS(5998), - [anon_sym_AMP] = ACTIONS(5998), - [anon_sym_EQ_EQ] = ACTIONS(5996), - [anon_sym_BANG_EQ] = ACTIONS(5996), - [anon_sym_GT] = ACTIONS(5998), - [anon_sym_GT_EQ] = ACTIONS(5996), - [anon_sym_LT_EQ] = ACTIONS(5998), - [anon_sym_LT] = ACTIONS(5998), - [anon_sym_LT_LT] = ACTIONS(5998), - [anon_sym_GT_GT] = ACTIONS(5998), - [anon_sym_SEMI] = ACTIONS(5996), - [anon_sym___attribute__] = ACTIONS(5996), - [anon_sym_LBRACE] = ACTIONS(5996), - [anon_sym_RBRACE] = ACTIONS(5996), - [anon_sym_signed] = ACTIONS(6138), - [anon_sym_unsigned] = ACTIONS(6138), - [anon_sym_long] = ACTIONS(6138), - [anon_sym_short] = ACTIONS(6138), - [anon_sym_LBRACK] = ACTIONS(5996), - [anon_sym_RBRACK] = ACTIONS(5996), - [anon_sym_EQ] = ACTIONS(5998), - [anon_sym_COLON] = ACTIONS(5996), - [anon_sym_QMARK] = ACTIONS(5996), - [anon_sym_STAR_EQ] = ACTIONS(5996), - [anon_sym_SLASH_EQ] = ACTIONS(5996), - [anon_sym_PERCENT_EQ] = ACTIONS(5996), - [anon_sym_PLUS_EQ] = ACTIONS(5996), - [anon_sym_DASH_EQ] = ACTIONS(5996), - [anon_sym_LT_LT_EQ] = ACTIONS(5996), - [anon_sym_GT_GT_EQ] = ACTIONS(5996), - [anon_sym_AMP_EQ] = ACTIONS(5996), - [anon_sym_CARET_EQ] = ACTIONS(5996), - [anon_sym_PIPE_EQ] = ACTIONS(5996), - [anon_sym_and_eq] = ACTIONS(5996), - [anon_sym_or_eq] = ACTIONS(5996), - [anon_sym_xor_eq] = ACTIONS(5996), - [anon_sym_LT_EQ_GT] = ACTIONS(5996), - [anon_sym_or] = ACTIONS(5998), - [anon_sym_and] = ACTIONS(5998), - [anon_sym_bitor] = ACTIONS(5996), - [anon_sym_xor] = ACTIONS(5998), - [anon_sym_bitand] = ACTIONS(5996), - [anon_sym_not_eq] = ACTIONS(5996), - [anon_sym_DASH_DASH] = ACTIONS(5996), - [anon_sym_PLUS_PLUS] = ACTIONS(5996), - [anon_sym_DOT] = ACTIONS(5998), - [anon_sym_DOT_STAR] = ACTIONS(5996), - [anon_sym_DASH_GT] = ACTIONS(5996), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5996), - [anon_sym_decltype] = ACTIONS(5996), + [2145] = { + [sym_identifier] = ACTIONS(2355), + [aux_sym_preproc_def_token1] = ACTIONS(2355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2353), + [anon_sym_COMMA] = ACTIONS(3211), + [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(2353), + [anon_sym_TILDE] = ACTIONS(2353), + [anon_sym_STAR] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(2353), + [anon_sym_AMP] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(3211), + [anon_sym___extension__] = ACTIONS(2355), + [anon_sym_typedef] = ACTIONS(2355), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym___attribute__] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(2353), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), + [anon_sym___declspec] = ACTIONS(2355), + [anon_sym___based] = ACTIONS(2355), + [anon_sym_RBRACE] = ACTIONS(2353), + [anon_sym_signed] = ACTIONS(2355), + [anon_sym_unsigned] = ACTIONS(2355), + [anon_sym_long] = ACTIONS(2355), + [anon_sym_short] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_static] = ACTIONS(2355), + [anon_sym_register] = ACTIONS(2355), + [anon_sym_inline] = ACTIONS(2355), + [anon_sym___inline] = ACTIONS(2355), + [anon_sym___inline__] = ACTIONS(2355), + [anon_sym___forceinline] = ACTIONS(2355), + [anon_sym_thread_local] = ACTIONS(2355), + [anon_sym___thread] = ACTIONS(2355), + [anon_sym_const] = ACTIONS(2355), + [anon_sym_constexpr] = ACTIONS(2355), + [anon_sym_volatile] = ACTIONS(2355), + [anon_sym_restrict] = ACTIONS(2355), + [anon_sym___restrict__] = ACTIONS(2355), + [anon_sym__Atomic] = ACTIONS(2355), + [anon_sym__Noreturn] = ACTIONS(2355), + [anon_sym_noreturn] = ACTIONS(2355), + [anon_sym_mutable] = ACTIONS(2355), + [anon_sym_constinit] = ACTIONS(2355), + [anon_sym_consteval] = 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), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2355), + [anon_sym_decltype] = ACTIONS(2355), + [anon_sym_virtual] = ACTIONS(2355), + [anon_sym_alignas] = ACTIONS(2355), + [anon_sym_explicit] = ACTIONS(2355), + [anon_sym_typename] = ACTIONS(2355), + [anon_sym_template] = ACTIONS(2355), + [anon_sym_operator] = ACTIONS(2355), + [anon_sym_friend] = ACTIONS(2355), + [anon_sym_public] = ACTIONS(2355), + [anon_sym_private] = ACTIONS(2355), + [anon_sym_protected] = ACTIONS(2355), + [anon_sym_using] = ACTIONS(2355), + [anon_sym_static_assert] = ACTIONS(2355), + [sym_semgrep_metavar] = ACTIONS(2353), }, - [2220] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2237), - [sym_identifier] = ACTIONS(6140), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6022), - [anon_sym_COMMA] = ACTIONS(6022), - [aux_sym_preproc_if_token2] = ACTIONS(6022), - [aux_sym_preproc_else_token1] = ACTIONS(6022), - [aux_sym_preproc_elif_token1] = ACTIONS(6026), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6022), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6022), - [anon_sym_LPAREN2] = ACTIONS(6022), - [anon_sym_DASH] = ACTIONS(6026), - [anon_sym_PLUS] = ACTIONS(6026), - [anon_sym_STAR] = ACTIONS(6026), - [anon_sym_SLASH] = ACTIONS(6026), - [anon_sym_PERCENT] = ACTIONS(6026), - [anon_sym_PIPE_PIPE] = ACTIONS(6022), - [anon_sym_AMP_AMP] = ACTIONS(6022), - [anon_sym_PIPE] = ACTIONS(6026), - [anon_sym_CARET] = ACTIONS(6026), - [anon_sym_AMP] = ACTIONS(6026), - [anon_sym_EQ_EQ] = ACTIONS(6022), - [anon_sym_BANG_EQ] = ACTIONS(6022), - [anon_sym_GT] = ACTIONS(6026), - [anon_sym_GT_EQ] = ACTIONS(6022), - [anon_sym_LT_EQ] = ACTIONS(6026), - [anon_sym_LT] = ACTIONS(6026), - [anon_sym_LT_LT] = ACTIONS(6026), - [anon_sym_GT_GT] = ACTIONS(6026), - [anon_sym_LBRACE] = ACTIONS(6022), - [anon_sym_signed] = ACTIONS(6143), - [anon_sym_unsigned] = ACTIONS(6143), - [anon_sym_long] = ACTIONS(6143), - [anon_sym_short] = ACTIONS(6143), - [anon_sym_LBRACK] = ACTIONS(6022), - [anon_sym_EQ] = ACTIONS(6026), - [sym_primitive_type] = ACTIONS(6145), - [anon_sym_QMARK] = ACTIONS(6022), - [anon_sym_STAR_EQ] = ACTIONS(6022), - [anon_sym_SLASH_EQ] = ACTIONS(6022), - [anon_sym_PERCENT_EQ] = ACTIONS(6022), - [anon_sym_PLUS_EQ] = ACTIONS(6022), - [anon_sym_DASH_EQ] = ACTIONS(6022), - [anon_sym_LT_LT_EQ] = ACTIONS(6022), - [anon_sym_GT_GT_EQ] = ACTIONS(6022), - [anon_sym_AMP_EQ] = ACTIONS(6022), - [anon_sym_CARET_EQ] = ACTIONS(6022), - [anon_sym_PIPE_EQ] = ACTIONS(6022), - [anon_sym_and_eq] = ACTIONS(6026), - [anon_sym_or_eq] = ACTIONS(6026), - [anon_sym_xor_eq] = ACTIONS(6026), - [anon_sym_LT_EQ_GT] = ACTIONS(6022), - [anon_sym_or] = ACTIONS(6026), - [anon_sym_and] = ACTIONS(6026), - [anon_sym_bitor] = ACTIONS(6026), - [anon_sym_xor] = ACTIONS(6026), + [2146] = { + [sym_identifier] = ACTIONS(5884), + [aux_sym_preproc_def_token1] = ACTIONS(5884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5886), + [aux_sym_preproc_if_token1] = ACTIONS(5884), + [aux_sym_preproc_if_token2] = ACTIONS(5884), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5884), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5884), + [aux_sym_preproc_else_token1] = ACTIONS(5884), + [aux_sym_preproc_elif_token1] = ACTIONS(5884), + [sym_preproc_directive] = ACTIONS(5884), + [anon_sym_LPAREN2] = ACTIONS(5886), + [anon_sym_TILDE] = ACTIONS(5886), + [anon_sym_STAR] = ACTIONS(5886), + [anon_sym_AMP_AMP] = ACTIONS(5886), + [anon_sym_AMP] = ACTIONS(5884), + [anon_sym___extension__] = ACTIONS(5884), + [anon_sym_typedef] = ACTIONS(5884), + [anon_sym_extern] = ACTIONS(5884), + [anon_sym___attribute__] = ACTIONS(5884), + [anon_sym_COLON_COLON] = ACTIONS(5886), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5886), + [anon_sym___declspec] = ACTIONS(5884), + [anon_sym___based] = ACTIONS(5884), + [anon_sym_signed] = ACTIONS(5884), + [anon_sym_unsigned] = ACTIONS(5884), + [anon_sym_long] = ACTIONS(5884), + [anon_sym_short] = ACTIONS(5884), + [anon_sym_LBRACK] = ACTIONS(5884), + [anon_sym_static] = ACTIONS(5884), + [anon_sym_register] = ACTIONS(5884), + [anon_sym_inline] = ACTIONS(5884), + [anon_sym___inline] = ACTIONS(5884), + [anon_sym___inline__] = ACTIONS(5884), + [anon_sym___forceinline] = ACTIONS(5884), + [anon_sym_thread_local] = ACTIONS(5884), + [anon_sym___thread] = ACTIONS(5884), + [anon_sym_const] = ACTIONS(5884), + [anon_sym_constexpr] = ACTIONS(5884), + [anon_sym_volatile] = ACTIONS(5884), + [anon_sym_restrict] = ACTIONS(5884), + [anon_sym___restrict__] = ACTIONS(5884), + [anon_sym__Atomic] = ACTIONS(5884), + [anon_sym__Noreturn] = ACTIONS(5884), + [anon_sym_noreturn] = ACTIONS(5884), + [anon_sym_mutable] = ACTIONS(5884), + [anon_sym_constinit] = ACTIONS(5884), + [anon_sym_consteval] = ACTIONS(5884), + [sym_primitive_type] = ACTIONS(5884), + [anon_sym_enum] = ACTIONS(5884), + [anon_sym_class] = ACTIONS(5884), + [anon_sym_struct] = ACTIONS(5884), + [anon_sym_union] = ACTIONS(5884), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5884), + [anon_sym_decltype] = ACTIONS(5884), + [anon_sym_virtual] = ACTIONS(5884), + [anon_sym_alignas] = ACTIONS(5884), + [anon_sym_explicit] = ACTIONS(5884), + [anon_sym_typename] = ACTIONS(5884), + [anon_sym_template] = ACTIONS(5884), + [anon_sym_operator] = ACTIONS(5884), + [anon_sym_friend] = ACTIONS(5884), + [anon_sym_public] = ACTIONS(5884), + [anon_sym_private] = ACTIONS(5884), + [anon_sym_protected] = ACTIONS(5884), + [anon_sym_using] = ACTIONS(5884), + [anon_sym_static_assert] = ACTIONS(5884), + [sym_semgrep_metavar] = ACTIONS(5886), + }, + [2147] = { + [sym_identifier] = ACTIONS(3668), + [aux_sym_preproc_def_token1] = ACTIONS(3668), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3670), + [aux_sym_preproc_if_token1] = ACTIONS(3668), + [aux_sym_preproc_if_token2] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [aux_sym_preproc_else_token1] = ACTIONS(3668), + [aux_sym_preproc_elif_token1] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3668), + [anon_sym_LPAREN2] = ACTIONS(3670), + [anon_sym_TILDE] = ACTIONS(3670), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_AMP_AMP] = ACTIONS(3670), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym___extension__] = ACTIONS(3668), + [anon_sym_typedef] = ACTIONS(3668), + [anon_sym_extern] = ACTIONS(3668), + [anon_sym___attribute__] = ACTIONS(3668), + [anon_sym_COLON_COLON] = ACTIONS(3670), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3670), + [anon_sym___declspec] = ACTIONS(3668), + [anon_sym___based] = ACTIONS(3668), + [anon_sym_signed] = ACTIONS(3668), + [anon_sym_unsigned] = ACTIONS(3668), + [anon_sym_long] = ACTIONS(3668), + [anon_sym_short] = ACTIONS(3668), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_static] = ACTIONS(3668), + [anon_sym_register] = ACTIONS(3668), + [anon_sym_inline] = ACTIONS(3668), + [anon_sym___inline] = ACTIONS(3668), + [anon_sym___inline__] = ACTIONS(3668), + [anon_sym___forceinline] = ACTIONS(3668), + [anon_sym_thread_local] = ACTIONS(3668), + [anon_sym___thread] = ACTIONS(3668), + [anon_sym_const] = ACTIONS(3668), + [anon_sym_constexpr] = ACTIONS(3668), + [anon_sym_volatile] = ACTIONS(3668), + [anon_sym_restrict] = ACTIONS(3668), + [anon_sym___restrict__] = ACTIONS(3668), + [anon_sym__Atomic] = ACTIONS(3668), + [anon_sym__Noreturn] = ACTIONS(3668), + [anon_sym_noreturn] = ACTIONS(3668), + [anon_sym_mutable] = ACTIONS(3668), + [anon_sym_constinit] = ACTIONS(3668), + [anon_sym_consteval] = ACTIONS(3668), + [sym_primitive_type] = ACTIONS(3668), + [anon_sym_enum] = ACTIONS(3668), + [anon_sym_class] = ACTIONS(3668), + [anon_sym_struct] = ACTIONS(3668), + [anon_sym_union] = ACTIONS(3668), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3668), + [anon_sym_decltype] = ACTIONS(3668), + [anon_sym_virtual] = ACTIONS(3668), + [anon_sym_alignas] = ACTIONS(3668), + [anon_sym_explicit] = ACTIONS(3668), + [anon_sym_typename] = ACTIONS(3668), + [anon_sym_template] = ACTIONS(3668), + [anon_sym_operator] = ACTIONS(3668), + [anon_sym_friend] = ACTIONS(3668), + [anon_sym_public] = ACTIONS(3668), + [anon_sym_private] = ACTIONS(3668), + [anon_sym_protected] = ACTIONS(3668), + [anon_sym_using] = ACTIONS(3668), + [anon_sym_static_assert] = ACTIONS(3668), + [sym_semgrep_metavar] = ACTIONS(3670), + }, + [2148] = { + [sym_identifier] = ACTIONS(5892), + [aux_sym_preproc_def_token1] = ACTIONS(5892), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5894), + [aux_sym_preproc_if_token1] = ACTIONS(5892), + [aux_sym_preproc_if_token2] = ACTIONS(5892), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5892), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5892), + [aux_sym_preproc_else_token1] = ACTIONS(5892), + [aux_sym_preproc_elif_token1] = ACTIONS(5892), + [sym_preproc_directive] = ACTIONS(5892), + [anon_sym_LPAREN2] = ACTIONS(5894), + [anon_sym_TILDE] = ACTIONS(5894), + [anon_sym_STAR] = ACTIONS(5894), + [anon_sym_AMP_AMP] = ACTIONS(5894), + [anon_sym_AMP] = ACTIONS(5892), + [anon_sym___extension__] = ACTIONS(5892), + [anon_sym_typedef] = ACTIONS(5892), + [anon_sym_extern] = ACTIONS(5892), + [anon_sym___attribute__] = ACTIONS(5892), + [anon_sym_COLON_COLON] = ACTIONS(5894), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5894), + [anon_sym___declspec] = ACTIONS(5892), + [anon_sym___based] = ACTIONS(5892), + [anon_sym_signed] = ACTIONS(5892), + [anon_sym_unsigned] = ACTIONS(5892), + [anon_sym_long] = ACTIONS(5892), + [anon_sym_short] = ACTIONS(5892), + [anon_sym_LBRACK] = ACTIONS(5892), + [anon_sym_static] = ACTIONS(5892), + [anon_sym_register] = ACTIONS(5892), + [anon_sym_inline] = ACTIONS(5892), + [anon_sym___inline] = ACTIONS(5892), + [anon_sym___inline__] = ACTIONS(5892), + [anon_sym___forceinline] = ACTIONS(5892), + [anon_sym_thread_local] = ACTIONS(5892), + [anon_sym___thread] = ACTIONS(5892), + [anon_sym_const] = ACTIONS(5892), + [anon_sym_constexpr] = ACTIONS(5892), + [anon_sym_volatile] = ACTIONS(5892), + [anon_sym_restrict] = ACTIONS(5892), + [anon_sym___restrict__] = ACTIONS(5892), + [anon_sym__Atomic] = ACTIONS(5892), + [anon_sym__Noreturn] = ACTIONS(5892), + [anon_sym_noreturn] = ACTIONS(5892), + [anon_sym_mutable] = ACTIONS(5892), + [anon_sym_constinit] = ACTIONS(5892), + [anon_sym_consteval] = ACTIONS(5892), + [sym_primitive_type] = ACTIONS(5892), + [anon_sym_enum] = ACTIONS(5892), + [anon_sym_class] = ACTIONS(5892), + [anon_sym_struct] = ACTIONS(5892), + [anon_sym_union] = ACTIONS(5892), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5892), + [anon_sym_decltype] = ACTIONS(5892), + [anon_sym_virtual] = ACTIONS(5892), + [anon_sym_alignas] = ACTIONS(5892), + [anon_sym_explicit] = ACTIONS(5892), + [anon_sym_typename] = ACTIONS(5892), + [anon_sym_template] = ACTIONS(5892), + [anon_sym_operator] = ACTIONS(5892), + [anon_sym_friend] = ACTIONS(5892), + [anon_sym_public] = ACTIONS(5892), + [anon_sym_private] = ACTIONS(5892), + [anon_sym_protected] = ACTIONS(5892), + [anon_sym_using] = ACTIONS(5892), + [anon_sym_static_assert] = ACTIONS(5892), + [sym_semgrep_metavar] = ACTIONS(5894), + }, + [2149] = { + [sym_identifier] = ACTIONS(5900), + [aux_sym_preproc_def_token1] = ACTIONS(5900), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5902), + [aux_sym_preproc_if_token1] = ACTIONS(5900), + [aux_sym_preproc_if_token2] = ACTIONS(5900), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5900), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5900), + [aux_sym_preproc_else_token1] = ACTIONS(5900), + [aux_sym_preproc_elif_token1] = ACTIONS(5900), + [sym_preproc_directive] = ACTIONS(5900), + [anon_sym_LPAREN2] = ACTIONS(5902), + [anon_sym_TILDE] = ACTIONS(5902), + [anon_sym_STAR] = ACTIONS(5902), + [anon_sym_AMP_AMP] = ACTIONS(5902), + [anon_sym_AMP] = ACTIONS(5900), + [anon_sym___extension__] = ACTIONS(5900), + [anon_sym_typedef] = ACTIONS(5900), + [anon_sym_extern] = ACTIONS(5900), + [anon_sym___attribute__] = ACTIONS(5900), + [anon_sym_COLON_COLON] = ACTIONS(5902), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5902), + [anon_sym___declspec] = ACTIONS(5900), + [anon_sym___based] = ACTIONS(5900), + [anon_sym_signed] = ACTIONS(5900), + [anon_sym_unsigned] = ACTIONS(5900), + [anon_sym_long] = ACTIONS(5900), + [anon_sym_short] = ACTIONS(5900), + [anon_sym_LBRACK] = ACTIONS(5900), + [anon_sym_static] = ACTIONS(5900), + [anon_sym_register] = ACTIONS(5900), + [anon_sym_inline] = ACTIONS(5900), + [anon_sym___inline] = ACTIONS(5900), + [anon_sym___inline__] = ACTIONS(5900), + [anon_sym___forceinline] = ACTIONS(5900), + [anon_sym_thread_local] = ACTIONS(5900), + [anon_sym___thread] = ACTIONS(5900), + [anon_sym_const] = ACTIONS(5900), + [anon_sym_constexpr] = ACTIONS(5900), + [anon_sym_volatile] = ACTIONS(5900), + [anon_sym_restrict] = ACTIONS(5900), + [anon_sym___restrict__] = ACTIONS(5900), + [anon_sym__Atomic] = ACTIONS(5900), + [anon_sym__Noreturn] = ACTIONS(5900), + [anon_sym_noreturn] = ACTIONS(5900), + [anon_sym_mutable] = ACTIONS(5900), + [anon_sym_constinit] = ACTIONS(5900), + [anon_sym_consteval] = ACTIONS(5900), + [sym_primitive_type] = ACTIONS(5900), + [anon_sym_enum] = ACTIONS(5900), + [anon_sym_class] = ACTIONS(5900), + [anon_sym_struct] = ACTIONS(5900), + [anon_sym_union] = ACTIONS(5900), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5900), + [anon_sym_decltype] = ACTIONS(5900), + [anon_sym_virtual] = ACTIONS(5900), + [anon_sym_alignas] = ACTIONS(5900), + [anon_sym_explicit] = ACTIONS(5900), + [anon_sym_typename] = ACTIONS(5900), + [anon_sym_template] = ACTIONS(5900), + [anon_sym_operator] = ACTIONS(5900), + [anon_sym_friend] = ACTIONS(5900), + [anon_sym_public] = ACTIONS(5900), + [anon_sym_private] = ACTIONS(5900), + [anon_sym_protected] = ACTIONS(5900), + [anon_sym_using] = ACTIONS(5900), + [anon_sym_static_assert] = ACTIONS(5900), + [sym_semgrep_metavar] = ACTIONS(5902), + }, + [2150] = { + [sym_identifier] = ACTIONS(3672), + [aux_sym_preproc_def_token1] = ACTIONS(3672), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3674), + [aux_sym_preproc_if_token1] = ACTIONS(3672), + [aux_sym_preproc_if_token2] = ACTIONS(3672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3672), + [aux_sym_preproc_else_token1] = ACTIONS(3672), + [aux_sym_preproc_elif_token1] = ACTIONS(3672), + [sym_preproc_directive] = ACTIONS(3672), + [anon_sym_LPAREN2] = ACTIONS(3674), + [anon_sym_TILDE] = ACTIONS(3674), + [anon_sym_STAR] = ACTIONS(3674), + [anon_sym_AMP_AMP] = ACTIONS(3674), + [anon_sym_AMP] = ACTIONS(3672), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3672), + [anon_sym_extern] = ACTIONS(3672), + [anon_sym___attribute__] = ACTIONS(3672), + [anon_sym_COLON_COLON] = ACTIONS(3674), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3674), + [anon_sym___declspec] = ACTIONS(3672), + [anon_sym___based] = ACTIONS(3672), + [anon_sym_signed] = ACTIONS(3672), + [anon_sym_unsigned] = ACTIONS(3672), + [anon_sym_long] = ACTIONS(3672), + [anon_sym_short] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_static] = ACTIONS(3672), + [anon_sym_register] = ACTIONS(3672), + [anon_sym_inline] = ACTIONS(3672), + [anon_sym___inline] = ACTIONS(3672), + [anon_sym___inline__] = ACTIONS(3672), + [anon_sym___forceinline] = ACTIONS(3672), + [anon_sym_thread_local] = ACTIONS(3672), + [anon_sym___thread] = ACTIONS(3672), + [anon_sym_const] = ACTIONS(3672), + [anon_sym_constexpr] = ACTIONS(3672), + [anon_sym_volatile] = ACTIONS(3672), + [anon_sym_restrict] = ACTIONS(3672), + [anon_sym___restrict__] = ACTIONS(3672), + [anon_sym__Atomic] = ACTIONS(3672), + [anon_sym__Noreturn] = ACTIONS(3672), + [anon_sym_noreturn] = ACTIONS(3672), + [anon_sym_mutable] = ACTIONS(3672), + [anon_sym_constinit] = ACTIONS(3672), + [anon_sym_consteval] = ACTIONS(3672), + [sym_primitive_type] = ACTIONS(3672), + [anon_sym_enum] = ACTIONS(3672), + [anon_sym_class] = ACTIONS(3672), + [anon_sym_struct] = ACTIONS(3672), + [anon_sym_union] = ACTIONS(3672), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3672), + [anon_sym_decltype] = ACTIONS(3672), + [anon_sym_virtual] = ACTIONS(3672), + [anon_sym_alignas] = ACTIONS(3672), + [anon_sym_explicit] = ACTIONS(3672), + [anon_sym_typename] = ACTIONS(3672), + [anon_sym_template] = ACTIONS(3672), + [anon_sym_operator] = ACTIONS(3672), + [anon_sym_friend] = ACTIONS(3672), + [anon_sym_public] = ACTIONS(3672), + [anon_sym_private] = ACTIONS(3672), + [anon_sym_protected] = ACTIONS(3672), + [anon_sym_using] = ACTIONS(3672), + [anon_sym_static_assert] = ACTIONS(3672), + [sym_semgrep_metavar] = ACTIONS(3674), + }, + [2151] = { + [sym_identifier] = ACTIONS(5888), + [aux_sym_preproc_def_token1] = ACTIONS(5888), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5890), + [aux_sym_preproc_if_token1] = ACTIONS(5888), + [aux_sym_preproc_if_token2] = ACTIONS(5888), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5888), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5888), + [aux_sym_preproc_else_token1] = ACTIONS(5888), + [aux_sym_preproc_elif_token1] = ACTIONS(5888), + [sym_preproc_directive] = ACTIONS(5888), + [anon_sym_LPAREN2] = ACTIONS(5890), + [anon_sym_TILDE] = ACTIONS(5890), + [anon_sym_STAR] = ACTIONS(5890), + [anon_sym_AMP_AMP] = ACTIONS(5890), + [anon_sym_AMP] = ACTIONS(5888), + [anon_sym___extension__] = ACTIONS(5888), + [anon_sym_typedef] = ACTIONS(5888), + [anon_sym_extern] = ACTIONS(5888), + [anon_sym___attribute__] = ACTIONS(5888), + [anon_sym_COLON_COLON] = ACTIONS(5890), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5890), + [anon_sym___declspec] = ACTIONS(5888), + [anon_sym___based] = ACTIONS(5888), + [anon_sym_signed] = ACTIONS(5888), + [anon_sym_unsigned] = ACTIONS(5888), + [anon_sym_long] = ACTIONS(5888), + [anon_sym_short] = ACTIONS(5888), + [anon_sym_LBRACK] = ACTIONS(5888), + [anon_sym_static] = ACTIONS(5888), + [anon_sym_register] = ACTIONS(5888), + [anon_sym_inline] = ACTIONS(5888), + [anon_sym___inline] = ACTIONS(5888), + [anon_sym___inline__] = ACTIONS(5888), + [anon_sym___forceinline] = ACTIONS(5888), + [anon_sym_thread_local] = ACTIONS(5888), + [anon_sym___thread] = ACTIONS(5888), + [anon_sym_const] = ACTIONS(5888), + [anon_sym_constexpr] = ACTIONS(5888), + [anon_sym_volatile] = ACTIONS(5888), + [anon_sym_restrict] = ACTIONS(5888), + [anon_sym___restrict__] = ACTIONS(5888), + [anon_sym__Atomic] = ACTIONS(5888), + [anon_sym__Noreturn] = ACTIONS(5888), + [anon_sym_noreturn] = ACTIONS(5888), + [anon_sym_mutable] = ACTIONS(5888), + [anon_sym_constinit] = ACTIONS(5888), + [anon_sym_consteval] = ACTIONS(5888), + [sym_primitive_type] = ACTIONS(5888), + [anon_sym_enum] = ACTIONS(5888), + [anon_sym_class] = ACTIONS(5888), + [anon_sym_struct] = ACTIONS(5888), + [anon_sym_union] = ACTIONS(5888), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5888), + [anon_sym_decltype] = ACTIONS(5888), + [anon_sym_virtual] = ACTIONS(5888), + [anon_sym_alignas] = ACTIONS(5888), + [anon_sym_explicit] = ACTIONS(5888), + [anon_sym_typename] = ACTIONS(5888), + [anon_sym_template] = ACTIONS(5888), + [anon_sym_operator] = ACTIONS(5888), + [anon_sym_friend] = ACTIONS(5888), + [anon_sym_public] = ACTIONS(5888), + [anon_sym_private] = ACTIONS(5888), + [anon_sym_protected] = ACTIONS(5888), + [anon_sym_using] = ACTIONS(5888), + [anon_sym_static_assert] = ACTIONS(5888), + [sym_semgrep_metavar] = ACTIONS(5890), + }, + [2152] = { + [sym_identifier] = ACTIONS(5777), + [aux_sym_preproc_def_token1] = ACTIONS(5777), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5779), + [aux_sym_preproc_if_token1] = ACTIONS(5777), + [aux_sym_preproc_if_token2] = ACTIONS(5777), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5777), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5777), + [aux_sym_preproc_else_token1] = ACTIONS(5777), + [aux_sym_preproc_elif_token1] = ACTIONS(5777), + [sym_preproc_directive] = ACTIONS(5777), + [anon_sym_LPAREN2] = ACTIONS(5779), + [anon_sym_TILDE] = ACTIONS(5779), + [anon_sym_STAR] = ACTIONS(5779), + [anon_sym_AMP_AMP] = ACTIONS(5779), + [anon_sym_AMP] = ACTIONS(5777), + [anon_sym___extension__] = ACTIONS(5777), + [anon_sym_typedef] = ACTIONS(5777), + [anon_sym_extern] = ACTIONS(5777), + [anon_sym___attribute__] = ACTIONS(5777), + [anon_sym_COLON_COLON] = ACTIONS(5779), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5779), + [anon_sym___declspec] = ACTIONS(5777), + [anon_sym___based] = ACTIONS(5777), + [anon_sym_signed] = ACTIONS(5777), + [anon_sym_unsigned] = ACTIONS(5777), + [anon_sym_long] = ACTIONS(5777), + [anon_sym_short] = ACTIONS(5777), + [anon_sym_LBRACK] = ACTIONS(5777), + [anon_sym_static] = ACTIONS(5777), + [anon_sym_register] = ACTIONS(5777), + [anon_sym_inline] = ACTIONS(5777), + [anon_sym___inline] = ACTIONS(5777), + [anon_sym___inline__] = ACTIONS(5777), + [anon_sym___forceinline] = ACTIONS(5777), + [anon_sym_thread_local] = ACTIONS(5777), + [anon_sym___thread] = ACTIONS(5777), + [anon_sym_const] = ACTIONS(5777), + [anon_sym_constexpr] = ACTIONS(5777), + [anon_sym_volatile] = ACTIONS(5777), + [anon_sym_restrict] = ACTIONS(5777), + [anon_sym___restrict__] = ACTIONS(5777), + [anon_sym__Atomic] = ACTIONS(5777), + [anon_sym__Noreturn] = ACTIONS(5777), + [anon_sym_noreturn] = ACTIONS(5777), + [anon_sym_mutable] = ACTIONS(5777), + [anon_sym_constinit] = ACTIONS(5777), + [anon_sym_consteval] = ACTIONS(5777), + [sym_primitive_type] = ACTIONS(5777), + [anon_sym_enum] = ACTIONS(5777), + [anon_sym_class] = ACTIONS(5777), + [anon_sym_struct] = ACTIONS(5777), + [anon_sym_union] = ACTIONS(5777), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5777), + [anon_sym_decltype] = ACTIONS(5777), + [anon_sym_virtual] = ACTIONS(5777), + [anon_sym_alignas] = ACTIONS(5777), + [anon_sym_explicit] = ACTIONS(5777), + [anon_sym_typename] = ACTIONS(5777), + [anon_sym_template] = ACTIONS(5777), + [anon_sym_operator] = ACTIONS(5777), + [anon_sym_friend] = ACTIONS(5777), + [anon_sym_public] = ACTIONS(5777), + [anon_sym_private] = ACTIONS(5777), + [anon_sym_protected] = ACTIONS(5777), + [anon_sym_using] = ACTIONS(5777), + [anon_sym_static_assert] = ACTIONS(5777), + [sym_semgrep_metavar] = ACTIONS(5779), + }, + [2153] = { + [sym_identifier] = ACTIONS(3513), + [aux_sym_preproc_def_token1] = ACTIONS(3513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3515), + [aux_sym_preproc_if_token1] = ACTIONS(3513), + [aux_sym_preproc_if_token2] = ACTIONS(3513), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3513), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3513), + [aux_sym_preproc_else_token1] = ACTIONS(3513), + [aux_sym_preproc_elif_token1] = ACTIONS(3513), + [sym_preproc_directive] = ACTIONS(3513), + [anon_sym_LPAREN2] = ACTIONS(3515), + [anon_sym_TILDE] = ACTIONS(3515), + [anon_sym_STAR] = ACTIONS(3515), + [anon_sym_AMP_AMP] = ACTIONS(3515), + [anon_sym_AMP] = ACTIONS(3513), + [anon_sym___extension__] = ACTIONS(3513), + [anon_sym_typedef] = ACTIONS(3513), + [anon_sym_extern] = ACTIONS(3513), + [anon_sym___attribute__] = ACTIONS(3513), + [anon_sym_COLON_COLON] = ACTIONS(3515), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3515), + [anon_sym___declspec] = ACTIONS(3513), + [anon_sym___based] = ACTIONS(3513), + [anon_sym_signed] = ACTIONS(3513), + [anon_sym_unsigned] = ACTIONS(3513), + [anon_sym_long] = ACTIONS(3513), + [anon_sym_short] = ACTIONS(3513), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_static] = ACTIONS(3513), + [anon_sym_register] = ACTIONS(3513), + [anon_sym_inline] = ACTIONS(3513), + [anon_sym___inline] = ACTIONS(3513), + [anon_sym___inline__] = ACTIONS(3513), + [anon_sym___forceinline] = ACTIONS(3513), + [anon_sym_thread_local] = ACTIONS(3513), + [anon_sym___thread] = ACTIONS(3513), + [anon_sym_const] = ACTIONS(3513), + [anon_sym_constexpr] = ACTIONS(3513), + [anon_sym_volatile] = ACTIONS(3513), + [anon_sym_restrict] = ACTIONS(3513), + [anon_sym___restrict__] = ACTIONS(3513), + [anon_sym__Atomic] = ACTIONS(3513), + [anon_sym__Noreturn] = ACTIONS(3513), + [anon_sym_noreturn] = ACTIONS(3513), + [anon_sym_mutable] = ACTIONS(3513), + [anon_sym_constinit] = ACTIONS(3513), + [anon_sym_consteval] = ACTIONS(3513), + [sym_primitive_type] = ACTIONS(3513), + [anon_sym_enum] = ACTIONS(3513), + [anon_sym_class] = ACTIONS(3513), + [anon_sym_struct] = ACTIONS(3513), + [anon_sym_union] = ACTIONS(3513), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3513), + [anon_sym_decltype] = ACTIONS(3513), + [anon_sym_virtual] = ACTIONS(3513), + [anon_sym_alignas] = ACTIONS(3513), + [anon_sym_explicit] = ACTIONS(3513), + [anon_sym_typename] = ACTIONS(3513), + [anon_sym_template] = ACTIONS(3513), + [anon_sym_operator] = ACTIONS(3513), + [anon_sym_friend] = ACTIONS(3513), + [anon_sym_public] = ACTIONS(3513), + [anon_sym_private] = ACTIONS(3513), + [anon_sym_protected] = ACTIONS(3513), + [anon_sym_using] = ACTIONS(3513), + [anon_sym_static_assert] = ACTIONS(3513), + [sym_semgrep_metavar] = ACTIONS(3515), + }, + [2154] = { + [sym_identifier] = ACTIONS(3684), + [aux_sym_preproc_def_token1] = ACTIONS(3684), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3686), + [aux_sym_preproc_if_token1] = ACTIONS(3684), + [aux_sym_preproc_if_token2] = ACTIONS(3684), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3684), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3684), + [aux_sym_preproc_else_token1] = ACTIONS(3684), + [aux_sym_preproc_elif_token1] = ACTIONS(3684), + [sym_preproc_directive] = ACTIONS(3684), + [anon_sym_LPAREN2] = ACTIONS(3686), + [anon_sym_TILDE] = ACTIONS(3686), + [anon_sym_STAR] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3686), + [anon_sym_AMP] = ACTIONS(3684), + [anon_sym___extension__] = ACTIONS(3684), + [anon_sym_typedef] = ACTIONS(3684), + [anon_sym_extern] = ACTIONS(3684), + [anon_sym___attribute__] = ACTIONS(3684), + [anon_sym_COLON_COLON] = ACTIONS(3686), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3686), + [anon_sym___declspec] = ACTIONS(3684), + [anon_sym___based] = ACTIONS(3684), + [anon_sym_signed] = ACTIONS(3684), + [anon_sym_unsigned] = ACTIONS(3684), + [anon_sym_long] = ACTIONS(3684), + [anon_sym_short] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3684), + [anon_sym_static] = ACTIONS(3684), + [anon_sym_register] = ACTIONS(3684), + [anon_sym_inline] = ACTIONS(3684), + [anon_sym___inline] = ACTIONS(3684), + [anon_sym___inline__] = ACTIONS(3684), + [anon_sym___forceinline] = ACTIONS(3684), + [anon_sym_thread_local] = ACTIONS(3684), + [anon_sym___thread] = ACTIONS(3684), + [anon_sym_const] = ACTIONS(3684), + [anon_sym_constexpr] = ACTIONS(3684), + [anon_sym_volatile] = ACTIONS(3684), + [anon_sym_restrict] = ACTIONS(3684), + [anon_sym___restrict__] = ACTIONS(3684), + [anon_sym__Atomic] = ACTIONS(3684), + [anon_sym__Noreturn] = ACTIONS(3684), + [anon_sym_noreturn] = ACTIONS(3684), + [anon_sym_mutable] = ACTIONS(3684), + [anon_sym_constinit] = ACTIONS(3684), + [anon_sym_consteval] = ACTIONS(3684), + [sym_primitive_type] = ACTIONS(3684), + [anon_sym_enum] = ACTIONS(3684), + [anon_sym_class] = ACTIONS(3684), + [anon_sym_struct] = ACTIONS(3684), + [anon_sym_union] = ACTIONS(3684), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3684), + [anon_sym_decltype] = ACTIONS(3684), + [anon_sym_virtual] = ACTIONS(3684), + [anon_sym_alignas] = ACTIONS(3684), + [anon_sym_explicit] = ACTIONS(3684), + [anon_sym_typename] = ACTIONS(3684), + [anon_sym_template] = ACTIONS(3684), + [anon_sym_operator] = ACTIONS(3684), + [anon_sym_friend] = ACTIONS(3684), + [anon_sym_public] = ACTIONS(3684), + [anon_sym_private] = ACTIONS(3684), + [anon_sym_protected] = ACTIONS(3684), + [anon_sym_using] = ACTIONS(3684), + [anon_sym_static_assert] = ACTIONS(3684), + [sym_semgrep_metavar] = ACTIONS(3686), + }, + [2155] = { + [sym_identifier] = ACTIONS(3525), + [aux_sym_preproc_def_token1] = ACTIONS(3525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3527), + [aux_sym_preproc_if_token1] = ACTIONS(3525), + [aux_sym_preproc_if_token2] = ACTIONS(3525), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3525), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3525), + [aux_sym_preproc_else_token1] = ACTIONS(3525), + [aux_sym_preproc_elif_token1] = ACTIONS(3525), + [sym_preproc_directive] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(3527), + [anon_sym_TILDE] = ACTIONS(3527), + [anon_sym_STAR] = ACTIONS(3527), + [anon_sym_AMP_AMP] = ACTIONS(3527), + [anon_sym_AMP] = ACTIONS(3525), + [anon_sym___extension__] = ACTIONS(3525), + [anon_sym_typedef] = ACTIONS(3525), + [anon_sym_extern] = ACTIONS(3525), + [anon_sym___attribute__] = ACTIONS(3525), + [anon_sym_COLON_COLON] = ACTIONS(3527), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3527), + [anon_sym___declspec] = ACTIONS(3525), + [anon_sym___based] = ACTIONS(3525), + [anon_sym_signed] = ACTIONS(3525), + [anon_sym_unsigned] = ACTIONS(3525), + [anon_sym_long] = ACTIONS(3525), + [anon_sym_short] = ACTIONS(3525), + [anon_sym_LBRACK] = ACTIONS(3525), + [anon_sym_static] = ACTIONS(3525), + [anon_sym_register] = ACTIONS(3525), + [anon_sym_inline] = ACTIONS(3525), + [anon_sym___inline] = ACTIONS(3525), + [anon_sym___inline__] = ACTIONS(3525), + [anon_sym___forceinline] = ACTIONS(3525), + [anon_sym_thread_local] = ACTIONS(3525), + [anon_sym___thread] = ACTIONS(3525), + [anon_sym_const] = ACTIONS(3525), + [anon_sym_constexpr] = ACTIONS(3525), + [anon_sym_volatile] = ACTIONS(3525), + [anon_sym_restrict] = ACTIONS(3525), + [anon_sym___restrict__] = ACTIONS(3525), + [anon_sym__Atomic] = ACTIONS(3525), + [anon_sym__Noreturn] = ACTIONS(3525), + [anon_sym_noreturn] = ACTIONS(3525), + [anon_sym_mutable] = ACTIONS(3525), + [anon_sym_constinit] = ACTIONS(3525), + [anon_sym_consteval] = ACTIONS(3525), + [sym_primitive_type] = ACTIONS(3525), + [anon_sym_enum] = ACTIONS(3525), + [anon_sym_class] = ACTIONS(3525), + [anon_sym_struct] = ACTIONS(3525), + [anon_sym_union] = ACTIONS(3525), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3525), + [anon_sym_decltype] = ACTIONS(3525), + [anon_sym_virtual] = ACTIONS(3525), + [anon_sym_alignas] = ACTIONS(3525), + [anon_sym_explicit] = ACTIONS(3525), + [anon_sym_typename] = ACTIONS(3525), + [anon_sym_template] = ACTIONS(3525), + [anon_sym_operator] = ACTIONS(3525), + [anon_sym_friend] = ACTIONS(3525), + [anon_sym_public] = ACTIONS(3525), + [anon_sym_private] = ACTIONS(3525), + [anon_sym_protected] = ACTIONS(3525), + [anon_sym_using] = ACTIONS(3525), + [anon_sym_static_assert] = ACTIONS(3525), + [sym_semgrep_metavar] = ACTIONS(3527), + }, + [2156] = { + [sym_string_literal] = STATE(1843), + [sym_template_argument_list] = STATE(3089), + [sym_raw_string_literal] = STATE(1843), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(5995), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4773), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4773), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(6001), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_SEMI] = ACTIONS(4765), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5409), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_RBRACE] = ACTIONS(4765), + [anon_sym_LBRACK] = ACTIONS(5998), + [anon_sym_EQ] = ACTIONS(4773), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4765), + [anon_sym_SLASH_EQ] = ACTIONS(4765), + [anon_sym_PERCENT_EQ] = ACTIONS(4765), + [anon_sym_PLUS_EQ] = ACTIONS(4765), + [anon_sym_DASH_EQ] = ACTIONS(4765), + [anon_sym_LT_LT_EQ] = ACTIONS(4765), + [anon_sym_GT_GT_EQ] = ACTIONS(4765), + [anon_sym_AMP_EQ] = ACTIONS(4765), + [anon_sym_CARET_EQ] = ACTIONS(4765), + [anon_sym_PIPE_EQ] = ACTIONS(4765), + [anon_sym_and_eq] = ACTIONS(4765), + [anon_sym_or_eq] = ACTIONS(4765), + [anon_sym_xor_eq] = ACTIONS(4765), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4765), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4765), + [anon_sym_not_eq] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(2341), + [anon_sym_u_DQUOTE] = ACTIONS(2341), + [anon_sym_U_DQUOTE] = ACTIONS(2341), + [anon_sym_u8_DQUOTE] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2345), + [anon_sym_LR_DQUOTE] = ACTIONS(2345), + [anon_sym_uR_DQUOTE] = ACTIONS(2345), + [anon_sym_UR_DQUOTE] = ACTIONS(2345), + [anon_sym_u8R_DQUOTE] = ACTIONS(2345), + }, + [2157] = { + [sym_string_literal] = STATE(2729), + [sym_template_argument_list] = STATE(4089), + [sym_raw_string_literal] = STATE(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(5991), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4773), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4773), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(5946), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_SEMI] = ACTIONS(4765), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5991), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_RBRACE] = ACTIONS(4765), + [anon_sym_LBRACK] = ACTIONS(5993), + [anon_sym_EQ] = ACTIONS(4797), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4801), + [anon_sym_SLASH_EQ] = ACTIONS(4801), + [anon_sym_PERCENT_EQ] = ACTIONS(4801), + [anon_sym_PLUS_EQ] = ACTIONS(4801), + [anon_sym_DASH_EQ] = ACTIONS(4801), + [anon_sym_LT_LT_EQ] = ACTIONS(4801), + [anon_sym_GT_GT_EQ] = ACTIONS(4801), + [anon_sym_AMP_EQ] = ACTIONS(4801), + [anon_sym_CARET_EQ] = ACTIONS(4801), + [anon_sym_PIPE_EQ] = ACTIONS(4801), + [anon_sym_and_eq] = ACTIONS(4801), + [anon_sym_or_eq] = ACTIONS(4801), + [anon_sym_xor_eq] = ACTIONS(4801), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4765), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4765), + [anon_sym_not_eq] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + }, + [2158] = { + [sym_identifier] = ACTIONS(5848), + [aux_sym_preproc_def_token1] = ACTIONS(5848), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5850), + [aux_sym_preproc_if_token1] = ACTIONS(5848), + [aux_sym_preproc_if_token2] = ACTIONS(5848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5848), + [aux_sym_preproc_else_token1] = ACTIONS(5848), + [aux_sym_preproc_elif_token1] = ACTIONS(5848), + [sym_preproc_directive] = ACTIONS(5848), + [anon_sym_LPAREN2] = ACTIONS(5850), + [anon_sym_TILDE] = ACTIONS(5850), + [anon_sym_STAR] = ACTIONS(5850), + [anon_sym_AMP_AMP] = ACTIONS(5850), + [anon_sym_AMP] = ACTIONS(5848), + [anon_sym___extension__] = ACTIONS(5848), + [anon_sym_typedef] = ACTIONS(5848), + [anon_sym_extern] = ACTIONS(5848), + [anon_sym___attribute__] = ACTIONS(5848), + [anon_sym_COLON_COLON] = ACTIONS(5850), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5850), + [anon_sym___declspec] = ACTIONS(5848), + [anon_sym___based] = ACTIONS(5848), + [anon_sym_signed] = ACTIONS(5848), + [anon_sym_unsigned] = ACTIONS(5848), + [anon_sym_long] = ACTIONS(5848), + [anon_sym_short] = ACTIONS(5848), + [anon_sym_LBRACK] = ACTIONS(5848), + [anon_sym_static] = ACTIONS(5848), + [anon_sym_register] = ACTIONS(5848), + [anon_sym_inline] = ACTIONS(5848), + [anon_sym___inline] = ACTIONS(5848), + [anon_sym___inline__] = ACTIONS(5848), + [anon_sym___forceinline] = ACTIONS(5848), + [anon_sym_thread_local] = ACTIONS(5848), + [anon_sym___thread] = ACTIONS(5848), + [anon_sym_const] = ACTIONS(5848), + [anon_sym_constexpr] = ACTIONS(5848), + [anon_sym_volatile] = ACTIONS(5848), + [anon_sym_restrict] = ACTIONS(5848), + [anon_sym___restrict__] = ACTIONS(5848), + [anon_sym__Atomic] = ACTIONS(5848), + [anon_sym__Noreturn] = ACTIONS(5848), + [anon_sym_noreturn] = ACTIONS(5848), + [anon_sym_mutable] = ACTIONS(5848), + [anon_sym_constinit] = ACTIONS(5848), + [anon_sym_consteval] = ACTIONS(5848), + [sym_primitive_type] = ACTIONS(5848), + [anon_sym_enum] = ACTIONS(5848), + [anon_sym_class] = ACTIONS(5848), + [anon_sym_struct] = ACTIONS(5848), + [anon_sym_union] = ACTIONS(5848), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5848), + [anon_sym_decltype] = ACTIONS(5848), + [anon_sym_virtual] = ACTIONS(5848), + [anon_sym_alignas] = ACTIONS(5848), + [anon_sym_explicit] = ACTIONS(5848), + [anon_sym_typename] = ACTIONS(5848), + [anon_sym_template] = ACTIONS(5848), + [anon_sym_operator] = ACTIONS(5848), + [anon_sym_friend] = ACTIONS(5848), + [anon_sym_public] = ACTIONS(5848), + [anon_sym_private] = ACTIONS(5848), + [anon_sym_protected] = ACTIONS(5848), + [anon_sym_using] = ACTIONS(5848), + [anon_sym_static_assert] = ACTIONS(5848), + [sym_semgrep_metavar] = ACTIONS(5850), + }, + [2159] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2232), + [ts_builtin_sym_end] = ACTIONS(5965), + [sym_identifier] = ACTIONS(6004), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5965), + [anon_sym_COMMA] = ACTIONS(5965), + [anon_sym_RPAREN] = ACTIONS(5965), + [anon_sym_LPAREN2] = ACTIONS(5965), + [anon_sym_DASH] = ACTIONS(5969), + [anon_sym_PLUS] = ACTIONS(5969), + [anon_sym_STAR] = ACTIONS(5969), + [anon_sym_SLASH] = ACTIONS(5969), + [anon_sym_PERCENT] = ACTIONS(5969), + [anon_sym_PIPE_PIPE] = ACTIONS(5965), + [anon_sym_AMP_AMP] = ACTIONS(5965), + [anon_sym_PIPE] = ACTIONS(5969), + [anon_sym_CARET] = ACTIONS(5969), + [anon_sym_AMP] = ACTIONS(5969), + [anon_sym_EQ_EQ] = ACTIONS(5965), + [anon_sym_BANG_EQ] = ACTIONS(5965), + [anon_sym_GT] = ACTIONS(5969), + [anon_sym_GT_EQ] = ACTIONS(5965), + [anon_sym_LT_EQ] = ACTIONS(5969), + [anon_sym_LT] = ACTIONS(5969), + [anon_sym_LT_LT] = ACTIONS(5969), + [anon_sym_GT_GT] = ACTIONS(5969), + [anon_sym_SEMI] = ACTIONS(5965), + [anon_sym___attribute__] = ACTIONS(5969), + [anon_sym_LBRACE] = ACTIONS(5965), + [anon_sym_RBRACE] = ACTIONS(5965), + [anon_sym_signed] = ACTIONS(6006), + [anon_sym_unsigned] = ACTIONS(6006), + [anon_sym_long] = ACTIONS(6006), + [anon_sym_short] = ACTIONS(6006), + [anon_sym_LBRACK] = ACTIONS(5965), + [anon_sym_RBRACK] = ACTIONS(5965), + [anon_sym_EQ] = ACTIONS(5969), + [sym_primitive_type] = ACTIONS(6008), + [anon_sym_COLON] = ACTIONS(5965), + [anon_sym_QMARK] = ACTIONS(5965), + [anon_sym_STAR_EQ] = ACTIONS(5965), + [anon_sym_SLASH_EQ] = ACTIONS(5965), + [anon_sym_PERCENT_EQ] = ACTIONS(5965), + [anon_sym_PLUS_EQ] = ACTIONS(5965), + [anon_sym_DASH_EQ] = ACTIONS(5965), + [anon_sym_LT_LT_EQ] = ACTIONS(5965), + [anon_sym_GT_GT_EQ] = ACTIONS(5965), + [anon_sym_AMP_EQ] = ACTIONS(5965), + [anon_sym_CARET_EQ] = ACTIONS(5965), + [anon_sym_PIPE_EQ] = ACTIONS(5965), + [anon_sym_and_eq] = ACTIONS(5969), + [anon_sym_or_eq] = ACTIONS(5969), + [anon_sym_xor_eq] = ACTIONS(5969), + [anon_sym_LT_EQ_GT] = ACTIONS(5965), + [anon_sym_or] = ACTIONS(5969), + [anon_sym_and] = ACTIONS(5969), + [anon_sym_bitor] = ACTIONS(5969), + [anon_sym_xor] = ACTIONS(5969), + [anon_sym_bitand] = ACTIONS(5969), + [anon_sym_not_eq] = ACTIONS(5969), + [anon_sym_DASH_DASH] = ACTIONS(5965), + [anon_sym_PLUS_PLUS] = ACTIONS(5965), + [anon_sym_DOT] = ACTIONS(5969), + [anon_sym_DOT_STAR] = ACTIONS(5965), + [anon_sym_DASH_GT] = ACTIONS(5965), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5969), + [anon_sym_decltype] = ACTIONS(5969), + }, + [2160] = { + [sym_string_literal] = STATE(2173), + [sym_raw_string_literal] = STATE(2173), + [aux_sym_concatenated_string_repeat1] = STATE(2173), + [sym_identifier] = ACTIONS(6010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5550), + [anon_sym_COMMA] = ACTIONS(5550), + [anon_sym_LPAREN2] = ACTIONS(5550), + [anon_sym_DASH] = ACTIONS(5554), + [anon_sym_PLUS] = ACTIONS(5554), + [anon_sym_STAR] = ACTIONS(5554), + [anon_sym_SLASH] = ACTIONS(5554), + [anon_sym_PERCENT] = ACTIONS(5554), + [anon_sym_PIPE_PIPE] = ACTIONS(5550), + [anon_sym_AMP_AMP] = ACTIONS(5550), + [anon_sym_PIPE] = ACTIONS(5554), + [anon_sym_CARET] = ACTIONS(5554), + [anon_sym_AMP] = ACTIONS(5554), + [anon_sym_EQ_EQ] = ACTIONS(5550), + [anon_sym_BANG_EQ] = ACTIONS(5550), + [anon_sym_GT] = ACTIONS(5554), + [anon_sym_GT_EQ] = ACTIONS(5550), + [anon_sym_LT_EQ] = ACTIONS(5554), + [anon_sym_LT] = ACTIONS(5554), + [anon_sym_LT_LT] = ACTIONS(5554), + [anon_sym_GT_GT] = ACTIONS(5554), + [anon_sym_SEMI] = ACTIONS(5550), + [anon_sym___attribute__] = ACTIONS(5554), + [anon_sym_LBRACK] = ACTIONS(5550), + [anon_sym_EQ] = ACTIONS(5554), + [anon_sym_QMARK] = ACTIONS(5550), + [anon_sym_STAR_EQ] = ACTIONS(5550), + [anon_sym_SLASH_EQ] = ACTIONS(5550), + [anon_sym_PERCENT_EQ] = ACTIONS(5550), + [anon_sym_PLUS_EQ] = ACTIONS(5550), + [anon_sym_DASH_EQ] = ACTIONS(5550), + [anon_sym_LT_LT_EQ] = ACTIONS(5550), + [anon_sym_GT_GT_EQ] = ACTIONS(5550), + [anon_sym_AMP_EQ] = ACTIONS(5550), + [anon_sym_CARET_EQ] = ACTIONS(5550), + [anon_sym_PIPE_EQ] = ACTIONS(5550), + [anon_sym_and_eq] = ACTIONS(5554), + [anon_sym_or_eq] = ACTIONS(5554), + [anon_sym_xor_eq] = ACTIONS(5554), + [anon_sym_LT_EQ_GT] = ACTIONS(5550), + [anon_sym_or] = ACTIONS(5554), + [anon_sym_and] = ACTIONS(5554), + [anon_sym_bitor] = ACTIONS(5554), + [anon_sym_xor] = ACTIONS(5554), + [anon_sym_bitand] = ACTIONS(5554), + [anon_sym_not_eq] = ACTIONS(5554), + [anon_sym_DASH_DASH] = ACTIONS(5550), + [anon_sym_PLUS_PLUS] = ACTIONS(5550), + [anon_sym_DOT] = ACTIONS(5554), + [anon_sym_DOT_STAR] = ACTIONS(5550), + [anon_sym_DASH_GT] = ACTIONS(5550), + [anon_sym_L_DQUOTE] = ACTIONS(6012), + [anon_sym_u_DQUOTE] = ACTIONS(6012), + [anon_sym_U_DQUOTE] = ACTIONS(6012), + [anon_sym_u8_DQUOTE] = ACTIONS(6012), + [anon_sym_DQUOTE] = ACTIONS(6012), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6014), + [anon_sym_LR_DQUOTE] = ACTIONS(6014), + [anon_sym_uR_DQUOTE] = ACTIONS(6014), + [anon_sym_UR_DQUOTE] = ACTIONS(6014), + [anon_sym_u8R_DQUOTE] = ACTIONS(6014), + [sym_literal_suffix] = ACTIONS(5554), + }, + [2161] = { + [sym_identifier] = ACTIONS(3700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3702), + [anon_sym_COMMA] = ACTIONS(3702), + [anon_sym_RPAREN] = ACTIONS(3702), + [anon_sym_LPAREN2] = ACTIONS(3702), + [anon_sym_TILDE] = ACTIONS(3702), + [anon_sym_STAR] = ACTIONS(3702), + [anon_sym_AMP_AMP] = ACTIONS(3702), + [anon_sym_AMP] = ACTIONS(3700), + [anon_sym_SEMI] = ACTIONS(3702), + [anon_sym___extension__] = ACTIONS(3700), + [anon_sym_extern] = ACTIONS(3700), + [anon_sym___attribute__] = ACTIONS(3700), + [anon_sym_COLON_COLON] = ACTIONS(3702), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3702), + [anon_sym___declspec] = ACTIONS(3700), + [anon_sym___based] = ACTIONS(3700), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_signed] = ACTIONS(3700), + [anon_sym_unsigned] = ACTIONS(3700), + [anon_sym_long] = ACTIONS(3700), + [anon_sym_short] = ACTIONS(3700), + [anon_sym_LBRACK] = ACTIONS(3700), + [anon_sym_EQ] = ACTIONS(3702), + [anon_sym_static] = ACTIONS(3700), + [anon_sym_register] = ACTIONS(3700), + [anon_sym_inline] = ACTIONS(3700), + [anon_sym___inline] = ACTIONS(3700), + [anon_sym___inline__] = ACTIONS(3700), + [anon_sym___forceinline] = ACTIONS(3700), + [anon_sym_thread_local] = ACTIONS(3700), + [anon_sym___thread] = ACTIONS(3700), + [anon_sym_const] = ACTIONS(3700), + [anon_sym_constexpr] = ACTIONS(3700), + [anon_sym_volatile] = ACTIONS(3700), + [anon_sym_restrict] = ACTIONS(3700), + [anon_sym___restrict__] = ACTIONS(3700), + [anon_sym__Atomic] = ACTIONS(3700), + [anon_sym__Noreturn] = ACTIONS(3700), + [anon_sym_noreturn] = ACTIONS(3700), + [anon_sym_mutable] = ACTIONS(3700), + [anon_sym_constinit] = ACTIONS(3700), + [anon_sym_consteval] = ACTIONS(3700), + [sym_primitive_type] = ACTIONS(3700), + [anon_sym_enum] = ACTIONS(3700), + [anon_sym_class] = ACTIONS(3700), + [anon_sym_struct] = ACTIONS(3700), + [anon_sym_union] = ACTIONS(3700), + [anon_sym_asm] = ACTIONS(3700), + [anon_sym___asm__] = ACTIONS(3700), + [anon_sym_DASH_GT] = ACTIONS(3702), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3700), + [anon_sym_decltype] = ACTIONS(3700), + [anon_sym_final] = ACTIONS(3700), + [anon_sym_override] = ACTIONS(3700), + [anon_sym_virtual] = ACTIONS(3700), + [anon_sym_alignas] = ACTIONS(3700), + [anon_sym_explicit] = ACTIONS(3700), + [anon_sym_typename] = ACTIONS(3700), + [anon_sym_template] = ACTIONS(3700), + [anon_sym_GT2] = ACTIONS(3702), + [anon_sym_operator] = ACTIONS(3700), + [anon_sym_try] = ACTIONS(3700), + [anon_sym_noexcept] = ACTIONS(3700), + [anon_sym_throw] = ACTIONS(3700), + [anon_sym_requires] = ACTIONS(3700), + }, + [2162] = { + [sym_string_literal] = STATE(2729), + [sym_template_argument_list] = STATE(4089), + [sym_raw_string_literal] = STATE(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4765), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4773), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4773), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(5946), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_SEMI] = ACTIONS(4765), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_EQ] = ACTIONS(4797), + [anon_sym_COLON] = ACTIONS(4803), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4801), + [anon_sym_SLASH_EQ] = ACTIONS(4801), + [anon_sym_PERCENT_EQ] = ACTIONS(4801), + [anon_sym_PLUS_EQ] = ACTIONS(4801), + [anon_sym_DASH_EQ] = ACTIONS(4801), + [anon_sym_LT_LT_EQ] = ACTIONS(4801), + [anon_sym_GT_GT_EQ] = ACTIONS(4801), + [anon_sym_AMP_EQ] = ACTIONS(4801), + [anon_sym_CARET_EQ] = ACTIONS(4801), + [anon_sym_PIPE_EQ] = ACTIONS(4801), + [anon_sym_and_eq] = ACTIONS(4801), + [anon_sym_or_eq] = ACTIONS(4801), + [anon_sym_xor_eq] = ACTIONS(4801), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4765), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4765), + [anon_sym_not_eq] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + }, + [2163] = { + [sym_identifier] = ACTIONS(6016), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6018), + [anon_sym_COMMA] = ACTIONS(6018), + [anon_sym_RPAREN] = ACTIONS(6018), + [anon_sym_LPAREN2] = ACTIONS(6018), + [anon_sym_TILDE] = ACTIONS(6018), + [anon_sym_STAR] = ACTIONS(6018), + [anon_sym_AMP_AMP] = ACTIONS(6018), + [anon_sym_AMP] = ACTIONS(6016), + [anon_sym_SEMI] = ACTIONS(6018), + [anon_sym___extension__] = ACTIONS(6016), + [anon_sym_extern] = ACTIONS(6016), + [anon_sym___attribute__] = ACTIONS(6016), + [anon_sym_COLON_COLON] = ACTIONS(6018), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6018), + [anon_sym___declspec] = ACTIONS(6016), + [anon_sym___based] = ACTIONS(6016), + [anon_sym_LBRACE] = ACTIONS(6018), + [anon_sym_signed] = ACTIONS(6016), + [anon_sym_unsigned] = ACTIONS(6016), + [anon_sym_long] = ACTIONS(6016), + [anon_sym_short] = ACTIONS(6016), + [anon_sym_LBRACK] = ACTIONS(6016), + [anon_sym_EQ] = ACTIONS(6018), + [anon_sym_static] = ACTIONS(6016), + [anon_sym_register] = ACTIONS(6016), + [anon_sym_inline] = ACTIONS(6016), + [anon_sym___inline] = ACTIONS(6016), + [anon_sym___inline__] = ACTIONS(6016), + [anon_sym___forceinline] = ACTIONS(6016), + [anon_sym_thread_local] = ACTIONS(6016), + [anon_sym___thread] = ACTIONS(6016), + [anon_sym_const] = ACTIONS(6016), + [anon_sym_constexpr] = ACTIONS(6016), + [anon_sym_volatile] = ACTIONS(6016), + [anon_sym_restrict] = ACTIONS(6016), + [anon_sym___restrict__] = ACTIONS(6016), + [anon_sym__Atomic] = ACTIONS(6016), + [anon_sym__Noreturn] = ACTIONS(6016), + [anon_sym_noreturn] = ACTIONS(6016), + [anon_sym_mutable] = ACTIONS(6016), + [anon_sym_constinit] = ACTIONS(6016), + [anon_sym_consteval] = ACTIONS(6016), + [sym_primitive_type] = ACTIONS(6016), + [anon_sym_enum] = ACTIONS(6016), + [anon_sym_class] = ACTIONS(6016), + [anon_sym_struct] = ACTIONS(6016), + [anon_sym_union] = ACTIONS(6016), + [anon_sym_asm] = ACTIONS(6016), + [anon_sym___asm__] = ACTIONS(6016), + [anon_sym_DASH_GT] = ACTIONS(6018), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6016), + [anon_sym_decltype] = ACTIONS(6016), + [anon_sym_final] = ACTIONS(6016), + [anon_sym_override] = ACTIONS(6016), + [anon_sym_virtual] = ACTIONS(6016), + [anon_sym_alignas] = ACTIONS(6016), + [anon_sym_explicit] = ACTIONS(6016), + [anon_sym_typename] = ACTIONS(6016), + [anon_sym_template] = ACTIONS(6016), + [anon_sym_GT2] = ACTIONS(6018), + [anon_sym_operator] = ACTIONS(6016), + [anon_sym_try] = ACTIONS(6016), + [anon_sym_noexcept] = ACTIONS(6016), + [anon_sym_throw] = ACTIONS(6016), + [anon_sym_requires] = ACTIONS(6016), + }, + [2164] = { + [sym_identifier] = ACTIONS(2355), + [aux_sym_preproc_def_token1] = ACTIONS(2355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2353), + [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(2353), + [anon_sym_TILDE] = ACTIONS(2353), + [anon_sym_STAR] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(2353), + [anon_sym_AMP] = ACTIONS(2355), + [anon_sym___extension__] = ACTIONS(2355), + [anon_sym_typedef] = ACTIONS(2355), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym___attribute__] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(2353), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), + [anon_sym___declspec] = ACTIONS(2355), + [anon_sym___based] = ACTIONS(2355), + [anon_sym_RBRACE] = ACTIONS(2353), + [anon_sym_signed] = ACTIONS(2355), + [anon_sym_unsigned] = ACTIONS(2355), + [anon_sym_long] = ACTIONS(2355), + [anon_sym_short] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_static] = ACTIONS(2355), + [anon_sym_register] = ACTIONS(2355), + [anon_sym_inline] = ACTIONS(2355), + [anon_sym___inline] = ACTIONS(2355), + [anon_sym___inline__] = ACTIONS(2355), + [anon_sym___forceinline] = ACTIONS(2355), + [anon_sym_thread_local] = ACTIONS(2355), + [anon_sym___thread] = ACTIONS(2355), + [anon_sym_const] = ACTIONS(2355), + [anon_sym_constexpr] = ACTIONS(2355), + [anon_sym_volatile] = ACTIONS(2355), + [anon_sym_restrict] = ACTIONS(2355), + [anon_sym___restrict__] = ACTIONS(2355), + [anon_sym__Atomic] = ACTIONS(2355), + [anon_sym__Noreturn] = ACTIONS(2355), + [anon_sym_noreturn] = ACTIONS(2355), + [anon_sym_mutable] = ACTIONS(2355), + [anon_sym_constinit] = ACTIONS(2355), + [anon_sym_consteval] = 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), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2355), + [anon_sym_decltype] = ACTIONS(2355), + [anon_sym_virtual] = ACTIONS(2355), + [anon_sym_alignas] = ACTIONS(2355), + [anon_sym_explicit] = ACTIONS(2355), + [anon_sym_typename] = ACTIONS(2355), + [anon_sym_template] = ACTIONS(2355), + [anon_sym_operator] = ACTIONS(2355), + [anon_sym_friend] = ACTIONS(2355), + [anon_sym_public] = ACTIONS(2355), + [anon_sym_private] = ACTIONS(2355), + [anon_sym_protected] = ACTIONS(2355), + [anon_sym_using] = ACTIONS(2355), + [anon_sym_static_assert] = ACTIONS(2355), + [anon_sym_catch] = ACTIONS(2355), + [sym_semgrep_metavar] = ACTIONS(2353), + }, + [2165] = { + [sym_attribute_specifier] = STATE(2355), + [ts_builtin_sym_end] = ACTIONS(6020), + [sym_identifier] = ACTIONS(6022), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6020), + [anon_sym_COMMA] = ACTIONS(6020), + [anon_sym_RPAREN] = ACTIONS(6020), + [aux_sym_preproc_if_token2] = ACTIONS(6020), + [aux_sym_preproc_else_token1] = ACTIONS(6020), + [aux_sym_preproc_elif_token1] = ACTIONS(6022), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6020), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6020), + [anon_sym_LPAREN2] = ACTIONS(6020), + [anon_sym_DASH] = ACTIONS(6022), + [anon_sym_PLUS] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(6022), + [anon_sym_SLASH] = ACTIONS(6022), + [anon_sym_PERCENT] = ACTIONS(6022), + [anon_sym_PIPE_PIPE] = ACTIONS(6020), + [anon_sym_AMP_AMP] = ACTIONS(6020), + [anon_sym_PIPE] = ACTIONS(6022), + [anon_sym_CARET] = ACTIONS(6022), + [anon_sym_AMP] = ACTIONS(6022), + [anon_sym_EQ_EQ] = ACTIONS(6020), + [anon_sym_BANG_EQ] = ACTIONS(6020), + [anon_sym_GT] = ACTIONS(6022), + [anon_sym_GT_EQ] = ACTIONS(6020), + [anon_sym_LT_EQ] = ACTIONS(6022), + [anon_sym_LT] = ACTIONS(6022), + [anon_sym_LT_LT] = ACTIONS(6022), + [anon_sym_GT_GT] = ACTIONS(6022), + [anon_sym_SEMI] = ACTIONS(6020), + [anon_sym___attribute__] = ACTIONS(5698), + [anon_sym_LBRACE] = ACTIONS(6020), + [anon_sym_RBRACE] = ACTIONS(6020), + [anon_sym_LBRACK] = ACTIONS(6020), + [anon_sym_RBRACK] = ACTIONS(6020), + [anon_sym_EQ] = ACTIONS(6022), + [anon_sym_COLON] = ACTIONS(6020), + [anon_sym_QMARK] = ACTIONS(6020), + [anon_sym_STAR_EQ] = ACTIONS(6020), + [anon_sym_SLASH_EQ] = ACTIONS(6020), + [anon_sym_PERCENT_EQ] = ACTIONS(6020), + [anon_sym_PLUS_EQ] = ACTIONS(6020), + [anon_sym_DASH_EQ] = ACTIONS(6020), + [anon_sym_LT_LT_EQ] = ACTIONS(6020), + [anon_sym_GT_GT_EQ] = ACTIONS(6020), + [anon_sym_AMP_EQ] = ACTIONS(6020), + [anon_sym_CARET_EQ] = ACTIONS(6020), + [anon_sym_PIPE_EQ] = ACTIONS(6020), + [anon_sym_and_eq] = ACTIONS(6022), + [anon_sym_or_eq] = ACTIONS(6022), + [anon_sym_xor_eq] = ACTIONS(6022), + [anon_sym_LT_EQ_GT] = ACTIONS(6020), + [anon_sym_or] = ACTIONS(6022), + [anon_sym_and] = ACTIONS(6022), + [anon_sym_bitor] = ACTIONS(6022), + [anon_sym_xor] = ACTIONS(6022), + [anon_sym_bitand] = ACTIONS(6022), + [anon_sym_not_eq] = ACTIONS(6022), + [anon_sym_DASH_DASH] = ACTIONS(6020), + [anon_sym_PLUS_PLUS] = ACTIONS(6020), + [anon_sym_DOT] = ACTIONS(6022), + [anon_sym_DOT_STAR] = ACTIONS(6020), + [anon_sym_DASH_GT] = ACTIONS(6020), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6022), + [anon_sym_decltype] = ACTIONS(6022), + }, + [2166] = { + [sym_attribute_specifier] = STATE(2360), + [ts_builtin_sym_end] = ACTIONS(6024), + [sym_identifier] = ACTIONS(6026), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6024), + [anon_sym_COMMA] = ACTIONS(6024), + [anon_sym_RPAREN] = ACTIONS(6024), + [aux_sym_preproc_if_token2] = ACTIONS(6024), + [aux_sym_preproc_else_token1] = ACTIONS(6024), + [aux_sym_preproc_elif_token1] = ACTIONS(6026), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6024), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6024), + [anon_sym_LPAREN2] = ACTIONS(6024), + [anon_sym_DASH] = ACTIONS(6026), + [anon_sym_PLUS] = ACTIONS(6026), + [anon_sym_STAR] = ACTIONS(6026), + [anon_sym_SLASH] = ACTIONS(6026), + [anon_sym_PERCENT] = ACTIONS(6026), + [anon_sym_PIPE_PIPE] = ACTIONS(6024), + [anon_sym_AMP_AMP] = ACTIONS(6024), + [anon_sym_PIPE] = ACTIONS(6026), + [anon_sym_CARET] = ACTIONS(6026), + [anon_sym_AMP] = ACTIONS(6026), + [anon_sym_EQ_EQ] = ACTIONS(6024), + [anon_sym_BANG_EQ] = ACTIONS(6024), + [anon_sym_GT] = ACTIONS(6026), + [anon_sym_GT_EQ] = ACTIONS(6024), + [anon_sym_LT_EQ] = ACTIONS(6026), + [anon_sym_LT] = ACTIONS(6026), + [anon_sym_LT_LT] = ACTIONS(6026), + [anon_sym_GT_GT] = ACTIONS(6026), + [anon_sym_SEMI] = ACTIONS(6024), + [anon_sym___attribute__] = ACTIONS(5698), + [anon_sym_LBRACE] = ACTIONS(6024), + [anon_sym_RBRACE] = ACTIONS(6024), + [anon_sym_LBRACK] = ACTIONS(6024), + [anon_sym_RBRACK] = ACTIONS(6024), + [anon_sym_EQ] = ACTIONS(6026), + [anon_sym_COLON] = ACTIONS(6024), + [anon_sym_QMARK] = ACTIONS(6024), + [anon_sym_STAR_EQ] = ACTIONS(6024), + [anon_sym_SLASH_EQ] = ACTIONS(6024), + [anon_sym_PERCENT_EQ] = ACTIONS(6024), + [anon_sym_PLUS_EQ] = ACTIONS(6024), + [anon_sym_DASH_EQ] = ACTIONS(6024), + [anon_sym_LT_LT_EQ] = ACTIONS(6024), + [anon_sym_GT_GT_EQ] = ACTIONS(6024), + [anon_sym_AMP_EQ] = ACTIONS(6024), + [anon_sym_CARET_EQ] = ACTIONS(6024), + [anon_sym_PIPE_EQ] = ACTIONS(6024), + [anon_sym_and_eq] = ACTIONS(6026), + [anon_sym_or_eq] = ACTIONS(6026), + [anon_sym_xor_eq] = ACTIONS(6026), + [anon_sym_LT_EQ_GT] = ACTIONS(6024), + [anon_sym_or] = ACTIONS(6026), + [anon_sym_and] = ACTIONS(6026), + [anon_sym_bitor] = ACTIONS(6026), + [anon_sym_xor] = ACTIONS(6026), [anon_sym_bitand] = ACTIONS(6026), [anon_sym_not_eq] = ACTIONS(6026), - [anon_sym_DASH_DASH] = ACTIONS(6022), - [anon_sym_PLUS_PLUS] = ACTIONS(6022), + [anon_sym_DASH_DASH] = ACTIONS(6024), + [anon_sym_PLUS_PLUS] = ACTIONS(6024), [anon_sym_DOT] = ACTIONS(6026), - [anon_sym_DOT_STAR] = ACTIONS(6022), - [anon_sym_DASH_GT] = ACTIONS(6022), + [anon_sym_DOT_STAR] = ACTIONS(6024), + [anon_sym_DASH_GT] = ACTIONS(6024), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(6026), [anon_sym_decltype] = ACTIONS(6026), }, - [2221] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2253), - [ts_builtin_sym_end] = ACTIONS(5959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5959), - [anon_sym_COMMA] = ACTIONS(5959), - [anon_sym_RPAREN] = ACTIONS(5959), - [anon_sym_LPAREN2] = ACTIONS(5959), - [anon_sym_DASH] = ACTIONS(5957), - [anon_sym_PLUS] = ACTIONS(5957), - [anon_sym_STAR] = ACTIONS(5957), - [anon_sym_SLASH] = ACTIONS(5957), - [anon_sym_PERCENT] = ACTIONS(5957), - [anon_sym_PIPE_PIPE] = ACTIONS(5959), - [anon_sym_AMP_AMP] = ACTIONS(5959), - [anon_sym_PIPE] = ACTIONS(5957), - [anon_sym_CARET] = ACTIONS(5957), - [anon_sym_AMP] = ACTIONS(5957), - [anon_sym_EQ_EQ] = ACTIONS(5959), - [anon_sym_BANG_EQ] = ACTIONS(5959), - [anon_sym_GT] = ACTIONS(5957), - [anon_sym_GT_EQ] = ACTIONS(5959), - [anon_sym_LT_EQ] = ACTIONS(5957), - [anon_sym_LT] = ACTIONS(5957), - [anon_sym_LT_LT] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5957), - [anon_sym_SEMI] = ACTIONS(5959), - [anon_sym___attribute__] = ACTIONS(5959), - [anon_sym_LBRACE] = ACTIONS(5959), - [anon_sym_RBRACE] = ACTIONS(5959), - [anon_sym_signed] = ACTIONS(6147), - [anon_sym_unsigned] = ACTIONS(6147), - [anon_sym_long] = ACTIONS(6147), - [anon_sym_short] = ACTIONS(6147), - [anon_sym_LBRACK] = ACTIONS(5959), - [anon_sym_RBRACK] = ACTIONS(5959), - [anon_sym_EQ] = ACTIONS(5957), - [anon_sym_COLON] = ACTIONS(5959), - [anon_sym_QMARK] = ACTIONS(5959), - [anon_sym_STAR_EQ] = ACTIONS(5959), - [anon_sym_SLASH_EQ] = ACTIONS(5959), - [anon_sym_PERCENT_EQ] = ACTIONS(5959), - [anon_sym_PLUS_EQ] = ACTIONS(5959), - [anon_sym_DASH_EQ] = ACTIONS(5959), - [anon_sym_LT_LT_EQ] = ACTIONS(5959), - [anon_sym_GT_GT_EQ] = ACTIONS(5959), - [anon_sym_AMP_EQ] = ACTIONS(5959), - [anon_sym_CARET_EQ] = ACTIONS(5959), - [anon_sym_PIPE_EQ] = ACTIONS(5959), - [anon_sym_and_eq] = ACTIONS(5959), - [anon_sym_or_eq] = ACTIONS(5959), - [anon_sym_xor_eq] = ACTIONS(5959), - [anon_sym_LT_EQ_GT] = ACTIONS(5959), - [anon_sym_or] = ACTIONS(5957), - [anon_sym_and] = ACTIONS(5957), - [anon_sym_bitor] = ACTIONS(5959), - [anon_sym_xor] = ACTIONS(5957), - [anon_sym_bitand] = ACTIONS(5959), - [anon_sym_not_eq] = ACTIONS(5959), - [anon_sym_DASH_DASH] = ACTIONS(5959), - [anon_sym_PLUS_PLUS] = ACTIONS(5959), - [anon_sym_DOT] = ACTIONS(5957), - [anon_sym_DOT_STAR] = ACTIONS(5959), - [anon_sym_DASH_GT] = ACTIONS(5959), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5959), - [anon_sym_decltype] = ACTIONS(5959), + [2167] = { + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_identifier] = ACTIONS(4773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [aux_sym_preproc_if_token2] = ACTIONS(4765), + [aux_sym_preproc_else_token1] = ACTIONS(4765), + [aux_sym_preproc_elif_token1] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4765), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4773), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4773), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(4773), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_EQ] = ACTIONS(4773), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4765), + [anon_sym_SLASH_EQ] = ACTIONS(4765), + [anon_sym_PERCENT_EQ] = ACTIONS(4765), + [anon_sym_PLUS_EQ] = ACTIONS(4765), + [anon_sym_DASH_EQ] = ACTIONS(4765), + [anon_sym_LT_LT_EQ] = ACTIONS(4765), + [anon_sym_GT_GT_EQ] = ACTIONS(4765), + [anon_sym_AMP_EQ] = ACTIONS(4765), + [anon_sym_CARET_EQ] = ACTIONS(4765), + [anon_sym_PIPE_EQ] = ACTIONS(4765), + [anon_sym_and_eq] = ACTIONS(4773), + [anon_sym_or_eq] = ACTIONS(4773), + [anon_sym_xor_eq] = ACTIONS(4773), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4773), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4773), + [anon_sym_not_eq] = ACTIONS(4773), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [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_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [sym_literal_suffix] = ACTIONS(6028), }, - [2222] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2254), - [ts_builtin_sym_end] = ACTIONS(5990), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5990), - [anon_sym_COMMA] = ACTIONS(5990), - [anon_sym_RPAREN] = ACTIONS(5990), - [anon_sym_LPAREN2] = ACTIONS(5990), - [anon_sym_DASH] = ACTIONS(5992), - [anon_sym_PLUS] = ACTIONS(5992), - [anon_sym_STAR] = ACTIONS(5992), - [anon_sym_SLASH] = ACTIONS(5992), - [anon_sym_PERCENT] = ACTIONS(5992), - [anon_sym_PIPE_PIPE] = ACTIONS(5990), - [anon_sym_AMP_AMP] = ACTIONS(5990), - [anon_sym_PIPE] = ACTIONS(5992), - [anon_sym_CARET] = ACTIONS(5992), - [anon_sym_AMP] = ACTIONS(5992), - [anon_sym_EQ_EQ] = ACTIONS(5990), - [anon_sym_BANG_EQ] = ACTIONS(5990), - [anon_sym_GT] = ACTIONS(5992), - [anon_sym_GT_EQ] = ACTIONS(5990), - [anon_sym_LT_EQ] = ACTIONS(5992), - [anon_sym_LT] = ACTIONS(5992), - [anon_sym_LT_LT] = ACTIONS(5992), - [anon_sym_GT_GT] = ACTIONS(5992), - [anon_sym_SEMI] = ACTIONS(5990), - [anon_sym___attribute__] = ACTIONS(5990), - [anon_sym_LBRACE] = ACTIONS(5990), - [anon_sym_RBRACE] = ACTIONS(5990), - [anon_sym_signed] = ACTIONS(6138), - [anon_sym_unsigned] = ACTIONS(6138), - [anon_sym_long] = ACTIONS(6138), - [anon_sym_short] = ACTIONS(6138), - [anon_sym_LBRACK] = ACTIONS(5990), - [anon_sym_RBRACK] = ACTIONS(5990), - [anon_sym_EQ] = ACTIONS(5992), - [anon_sym_COLON] = ACTIONS(5990), - [anon_sym_QMARK] = ACTIONS(5990), - [anon_sym_STAR_EQ] = ACTIONS(5990), - [anon_sym_SLASH_EQ] = ACTIONS(5990), - [anon_sym_PERCENT_EQ] = ACTIONS(5990), - [anon_sym_PLUS_EQ] = ACTIONS(5990), - [anon_sym_DASH_EQ] = ACTIONS(5990), - [anon_sym_LT_LT_EQ] = ACTIONS(5990), - [anon_sym_GT_GT_EQ] = ACTIONS(5990), - [anon_sym_AMP_EQ] = ACTIONS(5990), - [anon_sym_CARET_EQ] = ACTIONS(5990), - [anon_sym_PIPE_EQ] = ACTIONS(5990), - [anon_sym_and_eq] = ACTIONS(5990), - [anon_sym_or_eq] = ACTIONS(5990), - [anon_sym_xor_eq] = ACTIONS(5990), - [anon_sym_LT_EQ_GT] = ACTIONS(5990), - [anon_sym_or] = ACTIONS(5992), - [anon_sym_and] = ACTIONS(5992), - [anon_sym_bitor] = ACTIONS(5990), - [anon_sym_xor] = ACTIONS(5992), - [anon_sym_bitand] = ACTIONS(5990), - [anon_sym_not_eq] = ACTIONS(5990), - [anon_sym_DASH_DASH] = ACTIONS(5990), - [anon_sym_PLUS_PLUS] = ACTIONS(5990), - [anon_sym_DOT] = ACTIONS(5992), - [anon_sym_DOT_STAR] = ACTIONS(5990), - [anon_sym_DASH_GT] = ACTIONS(5990), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5990), - [anon_sym_decltype] = ACTIONS(5990), + [2168] = { + [sym_attribute_specifier] = STATE(2367), + [ts_builtin_sym_end] = ACTIONS(6030), + [sym_identifier] = ACTIONS(6032), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6030), + [anon_sym_COMMA] = ACTIONS(6030), + [anon_sym_RPAREN] = ACTIONS(6030), + [aux_sym_preproc_if_token2] = ACTIONS(6030), + [aux_sym_preproc_else_token1] = ACTIONS(6030), + [aux_sym_preproc_elif_token1] = ACTIONS(6032), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6030), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6030), + [anon_sym_LPAREN2] = ACTIONS(6030), + [anon_sym_DASH] = ACTIONS(6032), + [anon_sym_PLUS] = ACTIONS(6032), + [anon_sym_STAR] = ACTIONS(6032), + [anon_sym_SLASH] = ACTIONS(6032), + [anon_sym_PERCENT] = ACTIONS(6032), + [anon_sym_PIPE_PIPE] = ACTIONS(6030), + [anon_sym_AMP_AMP] = ACTIONS(6030), + [anon_sym_PIPE] = ACTIONS(6032), + [anon_sym_CARET] = ACTIONS(6032), + [anon_sym_AMP] = ACTIONS(6032), + [anon_sym_EQ_EQ] = ACTIONS(6030), + [anon_sym_BANG_EQ] = ACTIONS(6030), + [anon_sym_GT] = ACTIONS(6032), + [anon_sym_GT_EQ] = ACTIONS(6030), + [anon_sym_LT_EQ] = ACTIONS(6032), + [anon_sym_LT] = ACTIONS(6032), + [anon_sym_LT_LT] = ACTIONS(6032), + [anon_sym_GT_GT] = ACTIONS(6032), + [anon_sym_SEMI] = ACTIONS(6030), + [anon_sym___attribute__] = ACTIONS(5698), + [anon_sym_LBRACE] = ACTIONS(6030), + [anon_sym_RBRACE] = ACTIONS(6030), + [anon_sym_LBRACK] = ACTIONS(6030), + [anon_sym_RBRACK] = ACTIONS(6030), + [anon_sym_EQ] = ACTIONS(6032), + [anon_sym_COLON] = ACTIONS(6030), + [anon_sym_QMARK] = ACTIONS(6030), + [anon_sym_STAR_EQ] = ACTIONS(6030), + [anon_sym_SLASH_EQ] = ACTIONS(6030), + [anon_sym_PERCENT_EQ] = ACTIONS(6030), + [anon_sym_PLUS_EQ] = ACTIONS(6030), + [anon_sym_DASH_EQ] = ACTIONS(6030), + [anon_sym_LT_LT_EQ] = ACTIONS(6030), + [anon_sym_GT_GT_EQ] = ACTIONS(6030), + [anon_sym_AMP_EQ] = ACTIONS(6030), + [anon_sym_CARET_EQ] = ACTIONS(6030), + [anon_sym_PIPE_EQ] = ACTIONS(6030), + [anon_sym_and_eq] = ACTIONS(6032), + [anon_sym_or_eq] = ACTIONS(6032), + [anon_sym_xor_eq] = ACTIONS(6032), + [anon_sym_LT_EQ_GT] = ACTIONS(6030), + [anon_sym_or] = ACTIONS(6032), + [anon_sym_and] = ACTIONS(6032), + [anon_sym_bitor] = ACTIONS(6032), + [anon_sym_xor] = ACTIONS(6032), + [anon_sym_bitand] = ACTIONS(6032), + [anon_sym_not_eq] = ACTIONS(6032), + [anon_sym_DASH_DASH] = ACTIONS(6030), + [anon_sym_PLUS_PLUS] = ACTIONS(6030), + [anon_sym_DOT] = ACTIONS(6032), + [anon_sym_DOT_STAR] = ACTIONS(6030), + [anon_sym_DASH_GT] = ACTIONS(6030), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6032), + [anon_sym_decltype] = ACTIONS(6032), }, - [2223] = { - [sym_attribute_specifier] = STATE(3124), - [sym_field_declaration_list] = STATE(2934), - [sym_virtual_specifier] = STATE(8339), - [sym_base_class_clause] = STATE(9571), - [sym_identifier] = ACTIONS(6076), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6078), - [anon_sym_COMMA] = ACTIONS(6078), - [aux_sym_preproc_if_token2] = ACTIONS(6078), - [aux_sym_preproc_else_token1] = ACTIONS(6078), - [aux_sym_preproc_elif_token1] = ACTIONS(6078), - [anon_sym_LPAREN2] = ACTIONS(6078), - [anon_sym_DASH] = ACTIONS(6076), - [anon_sym_PLUS] = ACTIONS(6076), - [anon_sym_STAR] = ACTIONS(6076), - [anon_sym_SLASH] = ACTIONS(6076), - [anon_sym_PERCENT] = ACTIONS(6076), - [anon_sym_PIPE_PIPE] = ACTIONS(6078), - [anon_sym_AMP_AMP] = ACTIONS(6078), - [anon_sym_PIPE] = ACTIONS(6076), - [anon_sym_CARET] = ACTIONS(6076), - [anon_sym_AMP] = ACTIONS(6076), - [anon_sym_EQ_EQ] = ACTIONS(6078), - [anon_sym_BANG_EQ] = ACTIONS(6078), - [anon_sym_GT] = ACTIONS(6076), - [anon_sym_GT_EQ] = ACTIONS(6078), - [anon_sym_LT_EQ] = ACTIONS(6076), - [anon_sym_LT] = ACTIONS(6076), - [anon_sym_LT_LT] = ACTIONS(6076), - [anon_sym_GT_GT] = ACTIONS(6076), - [anon_sym___attribute__] = ACTIONS(6149), - [anon_sym_LBRACE] = ACTIONS(6151), - [anon_sym_LBRACK] = ACTIONS(6078), - [anon_sym_EQ] = ACTIONS(6076), - [anon_sym_COLON] = ACTIONS(6084), - [anon_sym_QMARK] = ACTIONS(6078), - [anon_sym_STAR_EQ] = ACTIONS(6078), - [anon_sym_SLASH_EQ] = ACTIONS(6078), - [anon_sym_PERCENT_EQ] = ACTIONS(6078), - [anon_sym_PLUS_EQ] = ACTIONS(6078), - [anon_sym_DASH_EQ] = ACTIONS(6078), - [anon_sym_LT_LT_EQ] = ACTIONS(6078), - [anon_sym_GT_GT_EQ] = ACTIONS(6078), - [anon_sym_AMP_EQ] = ACTIONS(6078), - [anon_sym_CARET_EQ] = ACTIONS(6078), - [anon_sym_PIPE_EQ] = ACTIONS(6078), - [anon_sym_and_eq] = ACTIONS(6076), - [anon_sym_or_eq] = ACTIONS(6076), - [anon_sym_xor_eq] = ACTIONS(6076), - [anon_sym_LT_EQ_GT] = ACTIONS(6078), - [anon_sym_or] = ACTIONS(6076), - [anon_sym_and] = ACTIONS(6076), - [anon_sym_bitor] = ACTIONS(6076), - [anon_sym_xor] = ACTIONS(6076), - [anon_sym_bitand] = ACTIONS(6076), - [anon_sym_not_eq] = ACTIONS(6076), - [anon_sym_DASH_DASH] = ACTIONS(6078), - [anon_sym_PLUS_PLUS] = ACTIONS(6078), - [anon_sym_DOT] = ACTIONS(6076), - [anon_sym_DOT_STAR] = ACTIONS(6078), - [anon_sym_DASH_GT] = ACTIONS(6078), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6076), - [anon_sym_decltype] = ACTIONS(6076), - [anon_sym_final] = ACTIONS(6086), - [anon_sym_override] = ACTIONS(6086), + [2169] = { + [sym_attribute_specifier] = STATE(2369), + [ts_builtin_sym_end] = ACTIONS(6034), + [sym_identifier] = ACTIONS(6036), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6034), + [anon_sym_COMMA] = ACTIONS(6034), + [anon_sym_RPAREN] = ACTIONS(6034), + [aux_sym_preproc_if_token2] = ACTIONS(6034), + [aux_sym_preproc_else_token1] = ACTIONS(6034), + [aux_sym_preproc_elif_token1] = ACTIONS(6036), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6034), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6034), + [anon_sym_LPAREN2] = ACTIONS(6034), + [anon_sym_DASH] = ACTIONS(6036), + [anon_sym_PLUS] = ACTIONS(6036), + [anon_sym_STAR] = ACTIONS(6036), + [anon_sym_SLASH] = ACTIONS(6036), + [anon_sym_PERCENT] = ACTIONS(6036), + [anon_sym_PIPE_PIPE] = ACTIONS(6034), + [anon_sym_AMP_AMP] = ACTIONS(6034), + [anon_sym_PIPE] = ACTIONS(6036), + [anon_sym_CARET] = ACTIONS(6036), + [anon_sym_AMP] = ACTIONS(6036), + [anon_sym_EQ_EQ] = ACTIONS(6034), + [anon_sym_BANG_EQ] = ACTIONS(6034), + [anon_sym_GT] = ACTIONS(6036), + [anon_sym_GT_EQ] = ACTIONS(6034), + [anon_sym_LT_EQ] = ACTIONS(6036), + [anon_sym_LT] = ACTIONS(6036), + [anon_sym_LT_LT] = ACTIONS(6036), + [anon_sym_GT_GT] = ACTIONS(6036), + [anon_sym_SEMI] = ACTIONS(6034), + [anon_sym___attribute__] = ACTIONS(5698), + [anon_sym_LBRACE] = ACTIONS(6034), + [anon_sym_RBRACE] = ACTIONS(6034), + [anon_sym_LBRACK] = ACTIONS(6034), + [anon_sym_RBRACK] = ACTIONS(6034), + [anon_sym_EQ] = ACTIONS(6036), + [anon_sym_COLON] = ACTIONS(6034), + [anon_sym_QMARK] = ACTIONS(6034), + [anon_sym_STAR_EQ] = ACTIONS(6034), + [anon_sym_SLASH_EQ] = ACTIONS(6034), + [anon_sym_PERCENT_EQ] = ACTIONS(6034), + [anon_sym_PLUS_EQ] = ACTIONS(6034), + [anon_sym_DASH_EQ] = ACTIONS(6034), + [anon_sym_LT_LT_EQ] = ACTIONS(6034), + [anon_sym_GT_GT_EQ] = ACTIONS(6034), + [anon_sym_AMP_EQ] = ACTIONS(6034), + [anon_sym_CARET_EQ] = ACTIONS(6034), + [anon_sym_PIPE_EQ] = ACTIONS(6034), + [anon_sym_and_eq] = ACTIONS(6036), + [anon_sym_or_eq] = ACTIONS(6036), + [anon_sym_xor_eq] = ACTIONS(6036), + [anon_sym_LT_EQ_GT] = ACTIONS(6034), + [anon_sym_or] = ACTIONS(6036), + [anon_sym_and] = ACTIONS(6036), + [anon_sym_bitor] = ACTIONS(6036), + [anon_sym_xor] = ACTIONS(6036), + [anon_sym_bitand] = ACTIONS(6036), + [anon_sym_not_eq] = ACTIONS(6036), + [anon_sym_DASH_DASH] = ACTIONS(6034), + [anon_sym_PLUS_PLUS] = ACTIONS(6034), + [anon_sym_DOT] = ACTIONS(6036), + [anon_sym_DOT_STAR] = ACTIONS(6034), + [anon_sym_DASH_GT] = ACTIONS(6034), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6036), + [anon_sym_decltype] = ACTIONS(6036), }, - [2224] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2228), - [sym_identifier] = ACTIONS(6064), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6062), - [anon_sym_COMMA] = ACTIONS(6062), - [aux_sym_preproc_if_token2] = ACTIONS(6062), - [aux_sym_preproc_else_token1] = ACTIONS(6062), - [aux_sym_preproc_elif_token1] = ACTIONS(6064), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6062), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6062), - [anon_sym_LPAREN2] = ACTIONS(6062), - [anon_sym_DASH] = ACTIONS(6064), - [anon_sym_PLUS] = ACTIONS(6064), + [2170] = { + [sym_attribute_declaration] = STATE(2276), + [sym_parameter_list] = STATE(2318), + [aux_sym_attributed_declarator_repeat1] = STATE(2276), + [ts_builtin_sym_end] = ACTIONS(6038), + [sym_identifier] = ACTIONS(6040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6038), + [anon_sym_COMMA] = ACTIONS(6038), + [anon_sym_RPAREN] = ACTIONS(6038), + [aux_sym_preproc_if_token2] = ACTIONS(6038), + [aux_sym_preproc_else_token1] = ACTIONS(6038), + [aux_sym_preproc_elif_token1] = ACTIONS(6040), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6038), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6038), + [anon_sym_LPAREN2] = ACTIONS(6042), + [anon_sym_DASH] = ACTIONS(6040), + [anon_sym_PLUS] = ACTIONS(6040), + [anon_sym_STAR] = ACTIONS(6040), + [anon_sym_SLASH] = ACTIONS(6040), + [anon_sym_PERCENT] = ACTIONS(6040), + [anon_sym_PIPE_PIPE] = ACTIONS(6038), + [anon_sym_AMP_AMP] = ACTIONS(6038), + [anon_sym_PIPE] = ACTIONS(6040), + [anon_sym_CARET] = ACTIONS(6040), + [anon_sym_AMP] = ACTIONS(6040), + [anon_sym_EQ_EQ] = ACTIONS(6038), + [anon_sym_BANG_EQ] = ACTIONS(6038), + [anon_sym_GT] = ACTIONS(6040), + [anon_sym_GT_EQ] = ACTIONS(6038), + [anon_sym_LT_EQ] = ACTIONS(6040), + [anon_sym_LT] = ACTIONS(6040), + [anon_sym_LT_LT] = ACTIONS(6040), + [anon_sym_GT_GT] = ACTIONS(6040), + [anon_sym_SEMI] = ACTIONS(6038), + [anon_sym___attribute__] = ACTIONS(6040), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6044), + [anon_sym_RBRACE] = ACTIONS(6038), + [anon_sym_LBRACK] = ACTIONS(6046), + [anon_sym_RBRACK] = ACTIONS(6038), + [anon_sym_EQ] = ACTIONS(6040), + [anon_sym_COLON] = ACTIONS(6038), + [anon_sym_QMARK] = ACTIONS(6038), + [anon_sym_STAR_EQ] = ACTIONS(6038), + [anon_sym_SLASH_EQ] = ACTIONS(6038), + [anon_sym_PERCENT_EQ] = ACTIONS(6038), + [anon_sym_PLUS_EQ] = ACTIONS(6038), + [anon_sym_DASH_EQ] = ACTIONS(6038), + [anon_sym_LT_LT_EQ] = ACTIONS(6038), + [anon_sym_GT_GT_EQ] = ACTIONS(6038), + [anon_sym_AMP_EQ] = ACTIONS(6038), + [anon_sym_CARET_EQ] = ACTIONS(6038), + [anon_sym_PIPE_EQ] = ACTIONS(6038), + [anon_sym_and_eq] = ACTIONS(6040), + [anon_sym_or_eq] = ACTIONS(6040), + [anon_sym_xor_eq] = ACTIONS(6040), + [anon_sym_LT_EQ_GT] = ACTIONS(6038), + [anon_sym_or] = ACTIONS(6040), + [anon_sym_and] = ACTIONS(6040), + [anon_sym_bitor] = ACTIONS(6040), + [anon_sym_xor] = ACTIONS(6040), + [anon_sym_bitand] = ACTIONS(6040), + [anon_sym_not_eq] = ACTIONS(6040), + [anon_sym_DASH_DASH] = ACTIONS(6038), + [anon_sym_PLUS_PLUS] = ACTIONS(6038), + [anon_sym_DOT] = ACTIONS(6040), + [anon_sym_DOT_STAR] = ACTIONS(6038), + [anon_sym_DASH_GT] = ACTIONS(6038), + [sym_comment] = ACTIONS(3), + }, + [2171] = { + [sym_string_literal] = STATE(2729), + [sym_template_argument_list] = STATE(4089), + [sym_raw_string_literal] = STATE(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4765), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4773), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4773), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(5946), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_SEMI] = ACTIONS(4765), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_EQ] = ACTIONS(4797), + [anon_sym_COLON] = ACTIONS(4854), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4801), + [anon_sym_SLASH_EQ] = ACTIONS(4801), + [anon_sym_PERCENT_EQ] = ACTIONS(4801), + [anon_sym_PLUS_EQ] = ACTIONS(4801), + [anon_sym_DASH_EQ] = ACTIONS(4801), + [anon_sym_LT_LT_EQ] = ACTIONS(4801), + [anon_sym_GT_GT_EQ] = ACTIONS(4801), + [anon_sym_AMP_EQ] = ACTIONS(4801), + [anon_sym_CARET_EQ] = ACTIONS(4801), + [anon_sym_PIPE_EQ] = ACTIONS(4801), + [anon_sym_and_eq] = ACTIONS(4801), + [anon_sym_or_eq] = ACTIONS(4801), + [anon_sym_xor_eq] = ACTIONS(4801), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4765), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4765), + [anon_sym_not_eq] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + }, + [2172] = { + [ts_builtin_sym_end] = ACTIONS(4771), + [sym_identifier] = ACTIONS(4763), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4771), + [anon_sym_COMMA] = ACTIONS(4771), + [anon_sym_RPAREN] = ACTIONS(4771), + [aux_sym_preproc_if_token2] = ACTIONS(4771), + [aux_sym_preproc_else_token1] = ACTIONS(4771), + [aux_sym_preproc_elif_token1] = ACTIONS(4763), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4771), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4771), + [anon_sym_LPAREN2] = ACTIONS(4771), + [anon_sym_DASH] = ACTIONS(4763), + [anon_sym_PLUS] = ACTIONS(4763), + [anon_sym_STAR] = ACTIONS(4763), + [anon_sym_SLASH] = ACTIONS(4763), + [anon_sym_PERCENT] = ACTIONS(4763), + [anon_sym_PIPE_PIPE] = ACTIONS(4771), + [anon_sym_AMP_AMP] = ACTIONS(4771), + [anon_sym_PIPE] = ACTIONS(4763), + [anon_sym_CARET] = ACTIONS(4763), + [anon_sym_AMP] = ACTIONS(4763), + [anon_sym_EQ_EQ] = ACTIONS(4771), + [anon_sym_BANG_EQ] = ACTIONS(4771), + [anon_sym_GT] = ACTIONS(4763), + [anon_sym_GT_EQ] = ACTIONS(4771), + [anon_sym_LT_EQ] = ACTIONS(4763), + [anon_sym_LT] = ACTIONS(4763), + [anon_sym_LT_LT] = ACTIONS(4763), + [anon_sym_GT_GT] = ACTIONS(4763), + [anon_sym_SEMI] = ACTIONS(4771), + [anon_sym___attribute__] = ACTIONS(4763), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(4771), + [anon_sym_RBRACE] = ACTIONS(4771), + [anon_sym_LBRACK] = ACTIONS(4771), + [anon_sym_RBRACK] = ACTIONS(4771), + [anon_sym_EQ] = ACTIONS(4763), + [anon_sym_COLON] = ACTIONS(4763), + [anon_sym_QMARK] = ACTIONS(4771), + [anon_sym_STAR_EQ] = ACTIONS(4771), + [anon_sym_SLASH_EQ] = ACTIONS(4771), + [anon_sym_PERCENT_EQ] = ACTIONS(4771), + [anon_sym_PLUS_EQ] = ACTIONS(4771), + [anon_sym_DASH_EQ] = ACTIONS(4771), + [anon_sym_LT_LT_EQ] = ACTIONS(4771), + [anon_sym_GT_GT_EQ] = ACTIONS(4771), + [anon_sym_AMP_EQ] = ACTIONS(4771), + [anon_sym_CARET_EQ] = ACTIONS(4771), + [anon_sym_PIPE_EQ] = ACTIONS(4771), + [anon_sym_and_eq] = ACTIONS(4763), + [anon_sym_or_eq] = ACTIONS(4763), + [anon_sym_xor_eq] = ACTIONS(4763), + [anon_sym_LT_EQ_GT] = ACTIONS(4771), + [anon_sym_or] = ACTIONS(4763), + [anon_sym_and] = ACTIONS(4763), + [anon_sym_bitor] = ACTIONS(4763), + [anon_sym_xor] = ACTIONS(4763), + [anon_sym_bitand] = ACTIONS(4763), + [anon_sym_not_eq] = ACTIONS(4763), + [anon_sym_DASH_DASH] = ACTIONS(4771), + [anon_sym_PLUS_PLUS] = ACTIONS(4771), + [anon_sym_DOT] = ACTIONS(4763), + [anon_sym_DOT_STAR] = ACTIONS(4771), + [anon_sym_DASH_GT] = ACTIONS(4771), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4763), + [anon_sym_decltype] = ACTIONS(4763), + }, + [2173] = { + [sym_string_literal] = STATE(2193), + [sym_raw_string_literal] = STATE(2193), + [aux_sym_concatenated_string_repeat1] = STATE(2193), + [sym_identifier] = ACTIONS(6048), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5556), + [anon_sym_COMMA] = ACTIONS(5556), + [anon_sym_LPAREN2] = ACTIONS(5556), + [anon_sym_DASH] = ACTIONS(5560), + [anon_sym_PLUS] = ACTIONS(5560), + [anon_sym_STAR] = ACTIONS(5560), + [anon_sym_SLASH] = ACTIONS(5560), + [anon_sym_PERCENT] = ACTIONS(5560), + [anon_sym_PIPE_PIPE] = ACTIONS(5556), + [anon_sym_AMP_AMP] = ACTIONS(5556), + [anon_sym_PIPE] = ACTIONS(5560), + [anon_sym_CARET] = ACTIONS(5560), + [anon_sym_AMP] = ACTIONS(5560), + [anon_sym_EQ_EQ] = ACTIONS(5556), + [anon_sym_BANG_EQ] = ACTIONS(5556), + [anon_sym_GT] = ACTIONS(5560), + [anon_sym_GT_EQ] = ACTIONS(5556), + [anon_sym_LT_EQ] = ACTIONS(5560), + [anon_sym_LT] = ACTIONS(5560), + [anon_sym_LT_LT] = ACTIONS(5560), + [anon_sym_GT_GT] = ACTIONS(5560), + [anon_sym_SEMI] = ACTIONS(5556), + [anon_sym___attribute__] = ACTIONS(5560), + [anon_sym_LBRACK] = ACTIONS(5556), + [anon_sym_EQ] = ACTIONS(5560), + [anon_sym_QMARK] = ACTIONS(5556), + [anon_sym_STAR_EQ] = ACTIONS(5556), + [anon_sym_SLASH_EQ] = ACTIONS(5556), + [anon_sym_PERCENT_EQ] = ACTIONS(5556), + [anon_sym_PLUS_EQ] = ACTIONS(5556), + [anon_sym_DASH_EQ] = ACTIONS(5556), + [anon_sym_LT_LT_EQ] = ACTIONS(5556), + [anon_sym_GT_GT_EQ] = ACTIONS(5556), + [anon_sym_AMP_EQ] = ACTIONS(5556), + [anon_sym_CARET_EQ] = ACTIONS(5556), + [anon_sym_PIPE_EQ] = ACTIONS(5556), + [anon_sym_and_eq] = ACTIONS(5560), + [anon_sym_or_eq] = ACTIONS(5560), + [anon_sym_xor_eq] = ACTIONS(5560), + [anon_sym_LT_EQ_GT] = ACTIONS(5556), + [anon_sym_or] = ACTIONS(5560), + [anon_sym_and] = ACTIONS(5560), + [anon_sym_bitor] = ACTIONS(5560), + [anon_sym_xor] = ACTIONS(5560), + [anon_sym_bitand] = ACTIONS(5560), + [anon_sym_not_eq] = ACTIONS(5560), + [anon_sym_DASH_DASH] = ACTIONS(5556), + [anon_sym_PLUS_PLUS] = ACTIONS(5556), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_DOT_STAR] = ACTIONS(5556), + [anon_sym_DASH_GT] = ACTIONS(5556), + [anon_sym_L_DQUOTE] = ACTIONS(6012), + [anon_sym_u_DQUOTE] = ACTIONS(6012), + [anon_sym_U_DQUOTE] = ACTIONS(6012), + [anon_sym_u8_DQUOTE] = ACTIONS(6012), + [anon_sym_DQUOTE] = ACTIONS(6012), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6014), + [anon_sym_LR_DQUOTE] = ACTIONS(6014), + [anon_sym_uR_DQUOTE] = ACTIONS(6014), + [anon_sym_UR_DQUOTE] = ACTIONS(6014), + [anon_sym_u8R_DQUOTE] = ACTIONS(6014), + [sym_literal_suffix] = ACTIONS(5560), + }, + [2174] = { + [sym_attribute_specifier] = STATE(2382), + [ts_builtin_sym_end] = ACTIONS(6050), + [sym_identifier] = ACTIONS(6052), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6050), + [anon_sym_COMMA] = ACTIONS(6050), + [anon_sym_RPAREN] = ACTIONS(6050), + [aux_sym_preproc_if_token2] = ACTIONS(6050), + [aux_sym_preproc_else_token1] = ACTIONS(6050), + [aux_sym_preproc_elif_token1] = ACTIONS(6052), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6050), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6050), + [anon_sym_LPAREN2] = ACTIONS(6050), + [anon_sym_DASH] = ACTIONS(6052), + [anon_sym_PLUS] = ACTIONS(6052), + [anon_sym_STAR] = ACTIONS(6052), + [anon_sym_SLASH] = ACTIONS(6052), + [anon_sym_PERCENT] = ACTIONS(6052), + [anon_sym_PIPE_PIPE] = ACTIONS(6050), + [anon_sym_AMP_AMP] = ACTIONS(6050), + [anon_sym_PIPE] = ACTIONS(6052), + [anon_sym_CARET] = ACTIONS(6052), + [anon_sym_AMP] = ACTIONS(6052), + [anon_sym_EQ_EQ] = ACTIONS(6050), + [anon_sym_BANG_EQ] = ACTIONS(6050), + [anon_sym_GT] = ACTIONS(6052), + [anon_sym_GT_EQ] = ACTIONS(6050), + [anon_sym_LT_EQ] = ACTIONS(6052), + [anon_sym_LT] = ACTIONS(6052), + [anon_sym_LT_LT] = ACTIONS(6052), + [anon_sym_GT_GT] = ACTIONS(6052), + [anon_sym_SEMI] = ACTIONS(6050), + [anon_sym___attribute__] = ACTIONS(5698), + [anon_sym_LBRACE] = ACTIONS(6050), + [anon_sym_RBRACE] = ACTIONS(6050), + [anon_sym_LBRACK] = ACTIONS(6050), + [anon_sym_RBRACK] = ACTIONS(6050), + [anon_sym_EQ] = ACTIONS(6052), + [anon_sym_COLON] = ACTIONS(6050), + [anon_sym_QMARK] = ACTIONS(6050), + [anon_sym_STAR_EQ] = ACTIONS(6050), + [anon_sym_SLASH_EQ] = ACTIONS(6050), + [anon_sym_PERCENT_EQ] = ACTIONS(6050), + [anon_sym_PLUS_EQ] = ACTIONS(6050), + [anon_sym_DASH_EQ] = ACTIONS(6050), + [anon_sym_LT_LT_EQ] = ACTIONS(6050), + [anon_sym_GT_GT_EQ] = ACTIONS(6050), + [anon_sym_AMP_EQ] = ACTIONS(6050), + [anon_sym_CARET_EQ] = ACTIONS(6050), + [anon_sym_PIPE_EQ] = ACTIONS(6050), + [anon_sym_and_eq] = ACTIONS(6052), + [anon_sym_or_eq] = ACTIONS(6052), + [anon_sym_xor_eq] = ACTIONS(6052), + [anon_sym_LT_EQ_GT] = ACTIONS(6050), + [anon_sym_or] = ACTIONS(6052), + [anon_sym_and] = ACTIONS(6052), + [anon_sym_bitor] = ACTIONS(6052), + [anon_sym_xor] = ACTIONS(6052), + [anon_sym_bitand] = ACTIONS(6052), + [anon_sym_not_eq] = ACTIONS(6052), + [anon_sym_DASH_DASH] = ACTIONS(6050), + [anon_sym_PLUS_PLUS] = ACTIONS(6050), + [anon_sym_DOT] = ACTIONS(6052), + [anon_sym_DOT_STAR] = ACTIONS(6050), + [anon_sym_DASH_GT] = ACTIONS(6050), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6052), + [anon_sym_decltype] = ACTIONS(6052), + }, + [2175] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2051), + [ts_builtin_sym_end] = ACTIONS(6054), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6054), + [anon_sym_COMMA] = ACTIONS(6054), + [anon_sym_RPAREN] = ACTIONS(6054), + [anon_sym_LPAREN2] = ACTIONS(6054), + [anon_sym_DASH] = ACTIONS(6056), + [anon_sym_PLUS] = ACTIONS(6056), + [anon_sym_STAR] = ACTIONS(6054), + [anon_sym_SLASH] = ACTIONS(6056), + [anon_sym_PERCENT] = ACTIONS(6054), + [anon_sym_PIPE_PIPE] = ACTIONS(6054), + [anon_sym_AMP_AMP] = ACTIONS(6054), + [anon_sym_PIPE] = ACTIONS(6056), + [anon_sym_CARET] = ACTIONS(6054), + [anon_sym_AMP] = ACTIONS(6056), + [anon_sym_EQ_EQ] = ACTIONS(6054), + [anon_sym_BANG_EQ] = ACTIONS(6054), + [anon_sym_GT] = ACTIONS(6056), + [anon_sym_GT_EQ] = ACTIONS(6054), + [anon_sym_LT_EQ] = ACTIONS(6056), + [anon_sym_LT] = ACTIONS(6056), + [anon_sym_LT_LT] = ACTIONS(6054), + [anon_sym_GT_GT] = ACTIONS(6054), + [anon_sym_SEMI] = ACTIONS(6054), + [anon_sym___extension__] = ACTIONS(6054), + [anon_sym___attribute__] = ACTIONS(6054), + [anon_sym_LBRACE] = ACTIONS(6054), + [anon_sym_RBRACE] = ACTIONS(6054), + [anon_sym_signed] = ACTIONS(6058), + [anon_sym_unsigned] = ACTIONS(6058), + [anon_sym_long] = ACTIONS(6058), + [anon_sym_short] = ACTIONS(6058), + [anon_sym_LBRACK] = ACTIONS(6054), + [anon_sym_RBRACK] = ACTIONS(6054), + [anon_sym_const] = ACTIONS(6056), + [anon_sym_constexpr] = ACTIONS(6054), + [anon_sym_volatile] = ACTIONS(6054), + [anon_sym_restrict] = ACTIONS(6054), + [anon_sym___restrict__] = ACTIONS(6054), + [anon_sym__Atomic] = ACTIONS(6054), + [anon_sym__Noreturn] = ACTIONS(6054), + [anon_sym_noreturn] = ACTIONS(6054), + [anon_sym_mutable] = ACTIONS(6054), + [anon_sym_constinit] = ACTIONS(6054), + [anon_sym_consteval] = ACTIONS(6054), + [anon_sym_COLON] = ACTIONS(6054), + [anon_sym_QMARK] = ACTIONS(6054), + [anon_sym_LT_EQ_GT] = ACTIONS(6054), + [anon_sym_or] = ACTIONS(6054), + [anon_sym_and] = ACTIONS(6054), + [anon_sym_bitor] = ACTIONS(6054), + [anon_sym_xor] = ACTIONS(6054), + [anon_sym_bitand] = ACTIONS(6054), + [anon_sym_not_eq] = ACTIONS(6054), + [anon_sym_DASH_DASH] = ACTIONS(6054), + [anon_sym_PLUS_PLUS] = ACTIONS(6054), + [anon_sym_DOT] = ACTIONS(6056), + [anon_sym_DOT_STAR] = ACTIONS(6054), + [anon_sym_DASH_GT] = ACTIONS(6054), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6054), + [anon_sym_decltype] = ACTIONS(6054), + [anon_sym_final] = ACTIONS(6054), + [anon_sym_override] = ACTIONS(6054), + [anon_sym_requires] = ACTIONS(6054), + [sym_semgrep_metavar] = ACTIONS(6054), + }, + [2176] = { + [sym_string_literal] = STATE(2729), + [sym_template_argument_list] = STATE(4089), + [sym_raw_string_literal] = STATE(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4765), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4773), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4773), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(5946), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_SEMI] = ACTIONS(4765), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_EQ] = ACTIONS(4797), + [anon_sym_COLON] = ACTIONS(4822), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4801), + [anon_sym_SLASH_EQ] = ACTIONS(4801), + [anon_sym_PERCENT_EQ] = ACTIONS(4801), + [anon_sym_PLUS_EQ] = ACTIONS(4801), + [anon_sym_DASH_EQ] = ACTIONS(4801), + [anon_sym_LT_LT_EQ] = ACTIONS(4801), + [anon_sym_GT_GT_EQ] = ACTIONS(4801), + [anon_sym_AMP_EQ] = ACTIONS(4801), + [anon_sym_CARET_EQ] = ACTIONS(4801), + [anon_sym_PIPE_EQ] = ACTIONS(4801), + [anon_sym_and_eq] = ACTIONS(4801), + [anon_sym_or_eq] = ACTIONS(4801), + [anon_sym_xor_eq] = ACTIONS(4801), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4765), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4765), + [anon_sym_not_eq] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + }, + [2177] = { + [sym_attribute_specifier] = STATE(2385), + [ts_builtin_sym_end] = ACTIONS(6060), + [sym_identifier] = ACTIONS(6062), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6060), + [anon_sym_COMMA] = ACTIONS(6060), + [anon_sym_RPAREN] = ACTIONS(6060), + [aux_sym_preproc_if_token2] = ACTIONS(6060), + [aux_sym_preproc_else_token1] = ACTIONS(6060), + [aux_sym_preproc_elif_token1] = ACTIONS(6062), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6060), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6060), + [anon_sym_LPAREN2] = ACTIONS(6060), + [anon_sym_DASH] = ACTIONS(6062), + [anon_sym_PLUS] = ACTIONS(6062), + [anon_sym_STAR] = ACTIONS(6062), + [anon_sym_SLASH] = ACTIONS(6062), + [anon_sym_PERCENT] = ACTIONS(6062), + [anon_sym_PIPE_PIPE] = ACTIONS(6060), + [anon_sym_AMP_AMP] = ACTIONS(6060), + [anon_sym_PIPE] = ACTIONS(6062), + [anon_sym_CARET] = ACTIONS(6062), + [anon_sym_AMP] = ACTIONS(6062), + [anon_sym_EQ_EQ] = ACTIONS(6060), + [anon_sym_BANG_EQ] = ACTIONS(6060), + [anon_sym_GT] = ACTIONS(6062), + [anon_sym_GT_EQ] = ACTIONS(6060), + [anon_sym_LT_EQ] = ACTIONS(6062), + [anon_sym_LT] = ACTIONS(6062), + [anon_sym_LT_LT] = ACTIONS(6062), + [anon_sym_GT_GT] = ACTIONS(6062), + [anon_sym_SEMI] = ACTIONS(6060), + [anon_sym___attribute__] = ACTIONS(5698), + [anon_sym_LBRACE] = ACTIONS(6060), + [anon_sym_RBRACE] = ACTIONS(6060), + [anon_sym_LBRACK] = ACTIONS(6060), + [anon_sym_RBRACK] = ACTIONS(6060), + [anon_sym_EQ] = ACTIONS(6062), + [anon_sym_COLON] = ACTIONS(6060), + [anon_sym_QMARK] = ACTIONS(6060), + [anon_sym_STAR_EQ] = ACTIONS(6060), + [anon_sym_SLASH_EQ] = ACTIONS(6060), + [anon_sym_PERCENT_EQ] = ACTIONS(6060), + [anon_sym_PLUS_EQ] = ACTIONS(6060), + [anon_sym_DASH_EQ] = ACTIONS(6060), + [anon_sym_LT_LT_EQ] = ACTIONS(6060), + [anon_sym_GT_GT_EQ] = ACTIONS(6060), + [anon_sym_AMP_EQ] = ACTIONS(6060), + [anon_sym_CARET_EQ] = ACTIONS(6060), + [anon_sym_PIPE_EQ] = ACTIONS(6060), + [anon_sym_and_eq] = ACTIONS(6062), + [anon_sym_or_eq] = ACTIONS(6062), + [anon_sym_xor_eq] = ACTIONS(6062), + [anon_sym_LT_EQ_GT] = ACTIONS(6060), + [anon_sym_or] = ACTIONS(6062), + [anon_sym_and] = ACTIONS(6062), + [anon_sym_bitor] = ACTIONS(6062), + [anon_sym_xor] = ACTIONS(6062), + [anon_sym_bitand] = ACTIONS(6062), + [anon_sym_not_eq] = ACTIONS(6062), + [anon_sym_DASH_DASH] = ACTIONS(6060), + [anon_sym_PLUS_PLUS] = ACTIONS(6060), + [anon_sym_DOT] = ACTIONS(6062), + [anon_sym_DOT_STAR] = ACTIONS(6060), + [anon_sym_DASH_GT] = ACTIONS(6060), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6062), + [anon_sym_decltype] = ACTIONS(6062), + }, + [2178] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2051), + [ts_builtin_sym_end] = ACTIONS(6064), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6064), + [anon_sym_COMMA] = ACTIONS(6064), + [anon_sym_RPAREN] = ACTIONS(6064), + [anon_sym_LPAREN2] = ACTIONS(6064), + [anon_sym_DASH] = ACTIONS(6066), + [anon_sym_PLUS] = ACTIONS(6066), [anon_sym_STAR] = ACTIONS(6064), - [anon_sym_SLASH] = ACTIONS(6064), + [anon_sym_SLASH] = ACTIONS(6066), [anon_sym_PERCENT] = ACTIONS(6064), - [anon_sym_PIPE_PIPE] = ACTIONS(6062), - [anon_sym_AMP_AMP] = ACTIONS(6062), - [anon_sym_PIPE] = ACTIONS(6064), + [anon_sym_PIPE_PIPE] = ACTIONS(6064), + [anon_sym_AMP_AMP] = ACTIONS(6064), + [anon_sym_PIPE] = ACTIONS(6066), [anon_sym_CARET] = ACTIONS(6064), - [anon_sym_AMP] = ACTIONS(6064), - [anon_sym_EQ_EQ] = ACTIONS(6062), - [anon_sym_BANG_EQ] = ACTIONS(6062), - [anon_sym_GT] = ACTIONS(6064), - [anon_sym_GT_EQ] = ACTIONS(6062), - [anon_sym_LT_EQ] = ACTIONS(6064), - [anon_sym_LT] = ACTIONS(6064), + [anon_sym_AMP] = ACTIONS(6066), + [anon_sym_EQ_EQ] = ACTIONS(6064), + [anon_sym_BANG_EQ] = ACTIONS(6064), + [anon_sym_GT] = ACTIONS(6066), + [anon_sym_GT_EQ] = ACTIONS(6064), + [anon_sym_LT_EQ] = ACTIONS(6066), + [anon_sym_LT] = ACTIONS(6066), [anon_sym_LT_LT] = ACTIONS(6064), [anon_sym_GT_GT] = ACTIONS(6064), + [anon_sym_SEMI] = ACTIONS(6064), + [anon_sym___extension__] = ACTIONS(6064), [anon_sym___attribute__] = ACTIONS(6064), - [anon_sym_LBRACE] = ACTIONS(6062), - [anon_sym_signed] = ACTIONS(6134), - [anon_sym_unsigned] = ACTIONS(6134), - [anon_sym_long] = ACTIONS(6134), - [anon_sym_short] = ACTIONS(6134), - [anon_sym_LBRACK] = ACTIONS(6062), - [anon_sym_EQ] = ACTIONS(6064), - [anon_sym_QMARK] = ACTIONS(6062), - [anon_sym_STAR_EQ] = ACTIONS(6062), - [anon_sym_SLASH_EQ] = ACTIONS(6062), - [anon_sym_PERCENT_EQ] = ACTIONS(6062), - [anon_sym_PLUS_EQ] = ACTIONS(6062), - [anon_sym_DASH_EQ] = ACTIONS(6062), - [anon_sym_LT_LT_EQ] = ACTIONS(6062), - [anon_sym_GT_GT_EQ] = ACTIONS(6062), - [anon_sym_AMP_EQ] = ACTIONS(6062), - [anon_sym_CARET_EQ] = ACTIONS(6062), - [anon_sym_PIPE_EQ] = ACTIONS(6062), - [anon_sym_and_eq] = ACTIONS(6064), - [anon_sym_or_eq] = ACTIONS(6064), - [anon_sym_xor_eq] = ACTIONS(6064), - [anon_sym_LT_EQ_GT] = ACTIONS(6062), + [anon_sym_LBRACE] = ACTIONS(6064), + [anon_sym_RBRACE] = ACTIONS(6064), + [anon_sym_signed] = ACTIONS(6058), + [anon_sym_unsigned] = ACTIONS(6058), + [anon_sym_long] = ACTIONS(6058), + [anon_sym_short] = ACTIONS(6058), + [anon_sym_LBRACK] = ACTIONS(6064), + [anon_sym_RBRACK] = ACTIONS(6064), + [anon_sym_const] = ACTIONS(6066), + [anon_sym_constexpr] = ACTIONS(6064), + [anon_sym_volatile] = ACTIONS(6064), + [anon_sym_restrict] = ACTIONS(6064), + [anon_sym___restrict__] = ACTIONS(6064), + [anon_sym__Atomic] = ACTIONS(6064), + [anon_sym__Noreturn] = ACTIONS(6064), + [anon_sym_noreturn] = ACTIONS(6064), + [anon_sym_mutable] = ACTIONS(6064), + [anon_sym_constinit] = ACTIONS(6064), + [anon_sym_consteval] = ACTIONS(6064), + [anon_sym_COLON] = ACTIONS(6064), + [anon_sym_QMARK] = ACTIONS(6064), + [anon_sym_LT_EQ_GT] = ACTIONS(6064), [anon_sym_or] = ACTIONS(6064), [anon_sym_and] = ACTIONS(6064), [anon_sym_bitor] = ACTIONS(6064), [anon_sym_xor] = ACTIONS(6064), [anon_sym_bitand] = ACTIONS(6064), [anon_sym_not_eq] = ACTIONS(6064), - [anon_sym_DASH_DASH] = ACTIONS(6062), - [anon_sym_PLUS_PLUS] = ACTIONS(6062), - [anon_sym_DOT] = ACTIONS(6064), - [anon_sym_DOT_STAR] = ACTIONS(6062), - [anon_sym_DASH_GT] = ACTIONS(6062), + [anon_sym_DASH_DASH] = ACTIONS(6064), + [anon_sym_PLUS_PLUS] = ACTIONS(6064), + [anon_sym_DOT] = ACTIONS(6066), + [anon_sym_DOT_STAR] = ACTIONS(6064), + [anon_sym_DASH_GT] = ACTIONS(6064), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(6064), [anon_sym_decltype] = ACTIONS(6064), + [anon_sym_final] = ACTIONS(6064), + [anon_sym_override] = ACTIONS(6064), + [anon_sym_requires] = ACTIONS(6064), + [sym_semgrep_metavar] = ACTIONS(6064), }, - [2225] = { - [sym_string_literal] = STATE(4298), - [sym_template_argument_list] = STATE(6041), - [sym_raw_string_literal] = STATE(4298), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4837), - [anon_sym_LPAREN2] = ACTIONS(4829), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(6153), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_EQ] = ACTIONS(6156), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(6158), - [anon_sym_SLASH_EQ] = ACTIONS(6158), - [anon_sym_PERCENT_EQ] = ACTIONS(6158), - [anon_sym_PLUS_EQ] = ACTIONS(6158), - [anon_sym_DASH_EQ] = ACTIONS(6158), - [anon_sym_LT_LT_EQ] = ACTIONS(6158), - [anon_sym_GT_GT_EQ] = ACTIONS(6158), - [anon_sym_AMP_EQ] = ACTIONS(6158), - [anon_sym_CARET_EQ] = ACTIONS(6158), - [anon_sym_PIPE_EQ] = ACTIONS(6158), - [anon_sym_and_eq] = ACTIONS(6158), - [anon_sym_or_eq] = ACTIONS(6158), - [anon_sym_xor_eq] = ACTIONS(6158), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4829), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4829), - [anon_sym_not_eq] = ACTIONS(4829), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(6160), - [anon_sym_u_DQUOTE] = ACTIONS(6160), - [anon_sym_U_DQUOTE] = ACTIONS(6160), - [anon_sym_u8_DQUOTE] = ACTIONS(6160), - [anon_sym_DQUOTE] = ACTIONS(6160), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(6162), - [anon_sym_LR_DQUOTE] = ACTIONS(6162), - [anon_sym_uR_DQUOTE] = ACTIONS(6162), - [anon_sym_UR_DQUOTE] = ACTIONS(6162), - [anon_sym_u8R_DQUOTE] = ACTIONS(6162), - [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(4829), + [2179] = { + [sym_attribute_specifier] = STATE(2387), + [ts_builtin_sym_end] = ACTIONS(6068), + [sym_identifier] = ACTIONS(6070), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6068), + [anon_sym_COMMA] = ACTIONS(6068), + [anon_sym_RPAREN] = ACTIONS(6068), + [aux_sym_preproc_if_token2] = ACTIONS(6068), + [aux_sym_preproc_else_token1] = ACTIONS(6068), + [aux_sym_preproc_elif_token1] = ACTIONS(6070), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6068), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6068), + [anon_sym_LPAREN2] = ACTIONS(6068), + [anon_sym_DASH] = ACTIONS(6070), + [anon_sym_PLUS] = ACTIONS(6070), + [anon_sym_STAR] = ACTIONS(6070), + [anon_sym_SLASH] = ACTIONS(6070), + [anon_sym_PERCENT] = ACTIONS(6070), + [anon_sym_PIPE_PIPE] = ACTIONS(6068), + [anon_sym_AMP_AMP] = ACTIONS(6068), + [anon_sym_PIPE] = ACTIONS(6070), + [anon_sym_CARET] = ACTIONS(6070), + [anon_sym_AMP] = ACTIONS(6070), + [anon_sym_EQ_EQ] = ACTIONS(6068), + [anon_sym_BANG_EQ] = ACTIONS(6068), + [anon_sym_GT] = ACTIONS(6070), + [anon_sym_GT_EQ] = ACTIONS(6068), + [anon_sym_LT_EQ] = ACTIONS(6070), + [anon_sym_LT] = ACTIONS(6070), + [anon_sym_LT_LT] = ACTIONS(6070), + [anon_sym_GT_GT] = ACTIONS(6070), + [anon_sym_SEMI] = ACTIONS(6068), + [anon_sym___attribute__] = ACTIONS(5698), + [anon_sym_LBRACE] = ACTIONS(6068), + [anon_sym_RBRACE] = ACTIONS(6068), + [anon_sym_LBRACK] = ACTIONS(6068), + [anon_sym_RBRACK] = ACTIONS(6068), + [anon_sym_EQ] = ACTIONS(6070), + [anon_sym_COLON] = ACTIONS(6068), + [anon_sym_QMARK] = ACTIONS(6068), + [anon_sym_STAR_EQ] = ACTIONS(6068), + [anon_sym_SLASH_EQ] = ACTIONS(6068), + [anon_sym_PERCENT_EQ] = ACTIONS(6068), + [anon_sym_PLUS_EQ] = ACTIONS(6068), + [anon_sym_DASH_EQ] = ACTIONS(6068), + [anon_sym_LT_LT_EQ] = ACTIONS(6068), + [anon_sym_GT_GT_EQ] = ACTIONS(6068), + [anon_sym_AMP_EQ] = ACTIONS(6068), + [anon_sym_CARET_EQ] = ACTIONS(6068), + [anon_sym_PIPE_EQ] = ACTIONS(6068), + [anon_sym_and_eq] = ACTIONS(6070), + [anon_sym_or_eq] = ACTIONS(6070), + [anon_sym_xor_eq] = ACTIONS(6070), + [anon_sym_LT_EQ_GT] = ACTIONS(6068), + [anon_sym_or] = ACTIONS(6070), + [anon_sym_and] = ACTIONS(6070), + [anon_sym_bitor] = ACTIONS(6070), + [anon_sym_xor] = ACTIONS(6070), + [anon_sym_bitand] = ACTIONS(6070), + [anon_sym_not_eq] = ACTIONS(6070), + [anon_sym_DASH_DASH] = ACTIONS(6068), + [anon_sym_PLUS_PLUS] = ACTIONS(6068), + [anon_sym_DOT] = ACTIONS(6070), + [anon_sym_DOT_STAR] = ACTIONS(6068), + [anon_sym_DASH_GT] = ACTIONS(6068), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6070), + [anon_sym_decltype] = ACTIONS(6070), }, - [2226] = { - [sym_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [aux_sym_concatenated_string_repeat1] = STATE(2249), - [sym_identifier] = ACTIONS(6164), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5653), - [anon_sym_LPAREN2] = ACTIONS(5649), - [anon_sym_DASH] = ACTIONS(5653), - [anon_sym_PLUS] = ACTIONS(5653), - [anon_sym_STAR] = ACTIONS(5653), - [anon_sym_SLASH] = ACTIONS(5653), - [anon_sym_PERCENT] = ACTIONS(5653), - [anon_sym_PIPE_PIPE] = ACTIONS(5649), - [anon_sym_AMP_AMP] = ACTIONS(5649), - [anon_sym_PIPE] = ACTIONS(5653), - [anon_sym_CARET] = ACTIONS(5653), - [anon_sym_AMP] = ACTIONS(5653), - [anon_sym_EQ_EQ] = ACTIONS(5649), - [anon_sym_BANG_EQ] = ACTIONS(5649), - [anon_sym_GT] = ACTIONS(5653), - [anon_sym_GT_EQ] = ACTIONS(5649), - [anon_sym_LT_EQ] = ACTIONS(5653), - [anon_sym_LT] = ACTIONS(5653), - [anon_sym_LT_LT] = ACTIONS(5653), - [anon_sym_GT_GT] = ACTIONS(5653), - [anon_sym_LBRACK] = ACTIONS(5649), - [anon_sym_EQ] = ACTIONS(5653), - [anon_sym_QMARK] = ACTIONS(5649), - [anon_sym_STAR_EQ] = ACTIONS(5649), - [anon_sym_SLASH_EQ] = ACTIONS(5649), - [anon_sym_PERCENT_EQ] = ACTIONS(5649), - [anon_sym_PLUS_EQ] = ACTIONS(5649), - [anon_sym_DASH_EQ] = ACTIONS(5649), - [anon_sym_LT_LT_EQ] = ACTIONS(5649), - [anon_sym_GT_GT_EQ] = ACTIONS(5649), - [anon_sym_AMP_EQ] = ACTIONS(5649), - [anon_sym_CARET_EQ] = ACTIONS(5649), - [anon_sym_PIPE_EQ] = ACTIONS(5649), - [anon_sym_and_eq] = ACTIONS(5653), - [anon_sym_or_eq] = ACTIONS(5653), - [anon_sym_xor_eq] = ACTIONS(5653), - [anon_sym_LT_EQ_GT] = ACTIONS(5649), - [anon_sym_or] = ACTIONS(5653), - [anon_sym_and] = ACTIONS(5653), - [anon_sym_bitor] = ACTIONS(5653), - [anon_sym_xor] = ACTIONS(5653), - [anon_sym_bitand] = ACTIONS(5653), - [anon_sym_not_eq] = ACTIONS(5653), - [anon_sym_DASH_DASH] = ACTIONS(5649), - [anon_sym_PLUS_PLUS] = ACTIONS(5649), - [anon_sym_DOT] = ACTIONS(5653), - [anon_sym_DOT_STAR] = ACTIONS(5649), - [anon_sym_DASH_GT] = ACTIONS(5649), - [anon_sym_L_DQUOTE] = ACTIONS(6166), - [anon_sym_u_DQUOTE] = ACTIONS(6166), - [anon_sym_U_DQUOTE] = ACTIONS(6166), - [anon_sym_u8_DQUOTE] = ACTIONS(6166), - [anon_sym_DQUOTE] = ACTIONS(6166), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(6168), - [anon_sym_LR_DQUOTE] = ACTIONS(6168), - [anon_sym_uR_DQUOTE] = ACTIONS(6168), - [anon_sym_UR_DQUOTE] = ACTIONS(6168), - [anon_sym_u8R_DQUOTE] = ACTIONS(6168), - [sym_literal_suffix] = ACTIONS(5653), - [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(5649), + [2180] = { + [sym_attribute_specifier] = STATE(2389), + [ts_builtin_sym_end] = ACTIONS(6072), + [sym_identifier] = ACTIONS(6074), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6072), + [anon_sym_COMMA] = ACTIONS(6072), + [anon_sym_RPAREN] = ACTIONS(6072), + [aux_sym_preproc_if_token2] = ACTIONS(6072), + [aux_sym_preproc_else_token1] = ACTIONS(6072), + [aux_sym_preproc_elif_token1] = ACTIONS(6074), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6072), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6072), + [anon_sym_LPAREN2] = ACTIONS(6072), + [anon_sym_DASH] = ACTIONS(6074), + [anon_sym_PLUS] = ACTIONS(6074), + [anon_sym_STAR] = ACTIONS(6074), + [anon_sym_SLASH] = ACTIONS(6074), + [anon_sym_PERCENT] = ACTIONS(6074), + [anon_sym_PIPE_PIPE] = ACTIONS(6072), + [anon_sym_AMP_AMP] = ACTIONS(6072), + [anon_sym_PIPE] = ACTIONS(6074), + [anon_sym_CARET] = ACTIONS(6074), + [anon_sym_AMP] = ACTIONS(6074), + [anon_sym_EQ_EQ] = ACTIONS(6072), + [anon_sym_BANG_EQ] = ACTIONS(6072), + [anon_sym_GT] = ACTIONS(6074), + [anon_sym_GT_EQ] = ACTIONS(6072), + [anon_sym_LT_EQ] = ACTIONS(6074), + [anon_sym_LT] = ACTIONS(6074), + [anon_sym_LT_LT] = ACTIONS(6074), + [anon_sym_GT_GT] = ACTIONS(6074), + [anon_sym_SEMI] = ACTIONS(6072), + [anon_sym___attribute__] = ACTIONS(5698), + [anon_sym_LBRACE] = ACTIONS(6072), + [anon_sym_RBRACE] = ACTIONS(6072), + [anon_sym_LBRACK] = ACTIONS(6072), + [anon_sym_RBRACK] = ACTIONS(6072), + [anon_sym_EQ] = ACTIONS(6074), + [anon_sym_COLON] = ACTIONS(6072), + [anon_sym_QMARK] = ACTIONS(6072), + [anon_sym_STAR_EQ] = ACTIONS(6072), + [anon_sym_SLASH_EQ] = ACTIONS(6072), + [anon_sym_PERCENT_EQ] = ACTIONS(6072), + [anon_sym_PLUS_EQ] = ACTIONS(6072), + [anon_sym_DASH_EQ] = ACTIONS(6072), + [anon_sym_LT_LT_EQ] = ACTIONS(6072), + [anon_sym_GT_GT_EQ] = ACTIONS(6072), + [anon_sym_AMP_EQ] = ACTIONS(6072), + [anon_sym_CARET_EQ] = ACTIONS(6072), + [anon_sym_PIPE_EQ] = ACTIONS(6072), + [anon_sym_and_eq] = ACTIONS(6074), + [anon_sym_or_eq] = ACTIONS(6074), + [anon_sym_xor_eq] = ACTIONS(6074), + [anon_sym_LT_EQ_GT] = ACTIONS(6072), + [anon_sym_or] = ACTIONS(6074), + [anon_sym_and] = ACTIONS(6074), + [anon_sym_bitor] = ACTIONS(6074), + [anon_sym_xor] = ACTIONS(6074), + [anon_sym_bitand] = ACTIONS(6074), + [anon_sym_not_eq] = ACTIONS(6074), + [anon_sym_DASH_DASH] = ACTIONS(6072), + [anon_sym_PLUS_PLUS] = ACTIONS(6072), + [anon_sym_DOT] = ACTIONS(6074), + [anon_sym_DOT_STAR] = ACTIONS(6072), + [anon_sym_DASH_GT] = ACTIONS(6072), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6074), + [anon_sym_decltype] = ACTIONS(6074), }, - [2227] = { - [sym_string_literal] = STATE(2227), - [sym_raw_string_literal] = STATE(2227), - [aux_sym_concatenated_string_repeat1] = STATE(2227), - [sym_identifier] = ACTIONS(6170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5635), - [anon_sym_LPAREN2] = ACTIONS(5630), - [anon_sym_DASH] = ACTIONS(5635), - [anon_sym_PLUS] = ACTIONS(5635), - [anon_sym_STAR] = ACTIONS(5635), - [anon_sym_SLASH] = ACTIONS(5635), - [anon_sym_PERCENT] = ACTIONS(5635), - [anon_sym_PIPE_PIPE] = ACTIONS(5630), - [anon_sym_AMP_AMP] = ACTIONS(5630), - [anon_sym_PIPE] = ACTIONS(5635), - [anon_sym_CARET] = ACTIONS(5635), - [anon_sym_AMP] = ACTIONS(5635), - [anon_sym_EQ_EQ] = ACTIONS(5630), - [anon_sym_BANG_EQ] = ACTIONS(5630), - [anon_sym_GT] = ACTIONS(5635), - [anon_sym_GT_EQ] = ACTIONS(5630), - [anon_sym_LT_EQ] = ACTIONS(5635), - [anon_sym_LT] = ACTIONS(5635), - [anon_sym_LT_LT] = ACTIONS(5635), - [anon_sym_GT_GT] = ACTIONS(5635), - [anon_sym_LBRACK] = ACTIONS(5630), - [anon_sym_EQ] = ACTIONS(5635), - [anon_sym_QMARK] = ACTIONS(5630), - [anon_sym_STAR_EQ] = ACTIONS(5630), - [anon_sym_SLASH_EQ] = ACTIONS(5630), - [anon_sym_PERCENT_EQ] = ACTIONS(5630), - [anon_sym_PLUS_EQ] = ACTIONS(5630), - [anon_sym_DASH_EQ] = ACTIONS(5630), - [anon_sym_LT_LT_EQ] = ACTIONS(5630), - [anon_sym_GT_GT_EQ] = ACTIONS(5630), - [anon_sym_AMP_EQ] = ACTIONS(5630), - [anon_sym_CARET_EQ] = ACTIONS(5630), - [anon_sym_PIPE_EQ] = ACTIONS(5630), - [anon_sym_and_eq] = ACTIONS(5635), - [anon_sym_or_eq] = ACTIONS(5635), - [anon_sym_xor_eq] = ACTIONS(5635), - [anon_sym_LT_EQ_GT] = ACTIONS(5630), - [anon_sym_or] = ACTIONS(5635), - [anon_sym_and] = ACTIONS(5635), - [anon_sym_bitor] = ACTIONS(5635), - [anon_sym_xor] = ACTIONS(5635), - [anon_sym_bitand] = ACTIONS(5635), - [anon_sym_not_eq] = ACTIONS(5635), - [anon_sym_DASH_DASH] = ACTIONS(5630), - [anon_sym_PLUS_PLUS] = ACTIONS(5630), - [anon_sym_DOT] = ACTIONS(5635), - [anon_sym_DOT_STAR] = ACTIONS(5630), - [anon_sym_DASH_GT] = ACTIONS(5630), - [anon_sym_L_DQUOTE] = ACTIONS(6173), - [anon_sym_u_DQUOTE] = ACTIONS(6173), - [anon_sym_U_DQUOTE] = ACTIONS(6173), - [anon_sym_u8_DQUOTE] = ACTIONS(6173), - [anon_sym_DQUOTE] = ACTIONS(6173), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(6176), - [anon_sym_LR_DQUOTE] = ACTIONS(6176), - [anon_sym_uR_DQUOTE] = ACTIONS(6176), - [anon_sym_UR_DQUOTE] = ACTIONS(6176), - [anon_sym_u8R_DQUOTE] = ACTIONS(6176), - [sym_literal_suffix] = ACTIONS(5635), - [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(5630), + [2181] = { + [ts_builtin_sym_end] = ACTIONS(6076), + [sym_identifier] = ACTIONS(6078), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6076), + [anon_sym_COMMA] = ACTIONS(6076), + [anon_sym_RPAREN] = ACTIONS(6076), + [aux_sym_preproc_if_token2] = ACTIONS(6076), + [aux_sym_preproc_else_token1] = ACTIONS(6076), + [aux_sym_preproc_elif_token1] = ACTIONS(6078), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6076), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6076), + [anon_sym_LPAREN2] = ACTIONS(6076), + [anon_sym_DASH] = ACTIONS(6078), + [anon_sym_PLUS] = ACTIONS(6078), + [anon_sym_STAR] = ACTIONS(6078), + [anon_sym_SLASH] = ACTIONS(6078), + [anon_sym_PERCENT] = ACTIONS(6078), + [anon_sym_PIPE_PIPE] = ACTIONS(6076), + [anon_sym_AMP_AMP] = ACTIONS(6076), + [anon_sym_PIPE] = ACTIONS(6078), + [anon_sym_CARET] = ACTIONS(6078), + [anon_sym_AMP] = ACTIONS(6078), + [anon_sym_EQ_EQ] = ACTIONS(6076), + [anon_sym_BANG_EQ] = ACTIONS(6076), + [anon_sym_GT] = ACTIONS(6078), + [anon_sym_GT_EQ] = ACTIONS(6076), + [anon_sym_LT_EQ] = ACTIONS(6078), + [anon_sym_LT] = ACTIONS(6078), + [anon_sym_LT_LT] = ACTIONS(6078), + [anon_sym_GT_GT] = ACTIONS(6078), + [anon_sym_SEMI] = ACTIONS(6076), + [anon_sym___attribute__] = ACTIONS(6078), + [anon_sym_COLON_COLON] = ACTIONS(6076), + [anon_sym_LBRACE] = ACTIONS(6076), + [anon_sym_RBRACE] = ACTIONS(6076), + [anon_sym_LBRACK] = ACTIONS(6076), + [anon_sym_RBRACK] = ACTIONS(6076), + [anon_sym_EQ] = ACTIONS(6078), + [anon_sym_COLON] = ACTIONS(6078), + [anon_sym_QMARK] = ACTIONS(6076), + [anon_sym_STAR_EQ] = ACTIONS(6076), + [anon_sym_SLASH_EQ] = ACTIONS(6076), + [anon_sym_PERCENT_EQ] = ACTIONS(6076), + [anon_sym_PLUS_EQ] = ACTIONS(6076), + [anon_sym_DASH_EQ] = ACTIONS(6076), + [anon_sym_LT_LT_EQ] = ACTIONS(6076), + [anon_sym_GT_GT_EQ] = ACTIONS(6076), + [anon_sym_AMP_EQ] = ACTIONS(6076), + [anon_sym_CARET_EQ] = ACTIONS(6076), + [anon_sym_PIPE_EQ] = ACTIONS(6076), + [anon_sym_and_eq] = ACTIONS(6078), + [anon_sym_or_eq] = ACTIONS(6078), + [anon_sym_xor_eq] = ACTIONS(6078), + [anon_sym_LT_EQ_GT] = ACTIONS(6076), + [anon_sym_or] = ACTIONS(6078), + [anon_sym_and] = ACTIONS(6078), + [anon_sym_bitor] = ACTIONS(6078), + [anon_sym_xor] = ACTIONS(6078), + [anon_sym_bitand] = ACTIONS(6078), + [anon_sym_not_eq] = ACTIONS(6078), + [anon_sym_DASH_DASH] = ACTIONS(6076), + [anon_sym_PLUS_PLUS] = ACTIONS(6076), + [anon_sym_DOT] = ACTIONS(6078), + [anon_sym_DOT_STAR] = ACTIONS(6076), + [anon_sym_DASH_GT] = ACTIONS(6076), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6078), + [anon_sym_decltype] = ACTIONS(6078), }, - [2228] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2228), - [sym_identifier] = ACTIONS(5699), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5697), - [anon_sym_COMMA] = ACTIONS(5697), - [aux_sym_preproc_if_token2] = ACTIONS(5697), - [aux_sym_preproc_else_token1] = ACTIONS(5697), - [aux_sym_preproc_elif_token1] = ACTIONS(5699), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5697), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5697), - [anon_sym_LPAREN2] = ACTIONS(5697), - [anon_sym_DASH] = ACTIONS(5699), - [anon_sym_PLUS] = ACTIONS(5699), - [anon_sym_STAR] = ACTIONS(5699), - [anon_sym_SLASH] = ACTIONS(5699), - [anon_sym_PERCENT] = ACTIONS(5699), - [anon_sym_PIPE_PIPE] = ACTIONS(5697), - [anon_sym_AMP_AMP] = ACTIONS(5697), - [anon_sym_PIPE] = ACTIONS(5699), - [anon_sym_CARET] = ACTIONS(5699), - [anon_sym_AMP] = ACTIONS(5699), - [anon_sym_EQ_EQ] = ACTIONS(5697), - [anon_sym_BANG_EQ] = ACTIONS(5697), - [anon_sym_GT] = ACTIONS(5699), - [anon_sym_GT_EQ] = ACTIONS(5697), - [anon_sym_LT_EQ] = ACTIONS(5699), - [anon_sym_LT] = ACTIONS(5699), - [anon_sym_LT_LT] = ACTIONS(5699), - [anon_sym_GT_GT] = ACTIONS(5699), - [anon_sym___attribute__] = ACTIONS(5699), - [anon_sym_LBRACE] = ACTIONS(5697), - [anon_sym_signed] = ACTIONS(6179), - [anon_sym_unsigned] = ACTIONS(6179), - [anon_sym_long] = ACTIONS(6179), - [anon_sym_short] = ACTIONS(6179), - [anon_sym_LBRACK] = ACTIONS(5697), - [anon_sym_EQ] = ACTIONS(5699), - [anon_sym_QMARK] = ACTIONS(5697), - [anon_sym_STAR_EQ] = ACTIONS(5697), - [anon_sym_SLASH_EQ] = ACTIONS(5697), - [anon_sym_PERCENT_EQ] = ACTIONS(5697), - [anon_sym_PLUS_EQ] = ACTIONS(5697), - [anon_sym_DASH_EQ] = ACTIONS(5697), - [anon_sym_LT_LT_EQ] = ACTIONS(5697), - [anon_sym_GT_GT_EQ] = ACTIONS(5697), - [anon_sym_AMP_EQ] = ACTIONS(5697), - [anon_sym_CARET_EQ] = ACTIONS(5697), - [anon_sym_PIPE_EQ] = ACTIONS(5697), - [anon_sym_and_eq] = ACTIONS(5699), - [anon_sym_or_eq] = ACTIONS(5699), - [anon_sym_xor_eq] = ACTIONS(5699), - [anon_sym_LT_EQ_GT] = ACTIONS(5697), - [anon_sym_or] = ACTIONS(5699), - [anon_sym_and] = ACTIONS(5699), - [anon_sym_bitor] = ACTIONS(5699), - [anon_sym_xor] = ACTIONS(5699), - [anon_sym_bitand] = ACTIONS(5699), - [anon_sym_not_eq] = ACTIONS(5699), - [anon_sym_DASH_DASH] = ACTIONS(5697), - [anon_sym_PLUS_PLUS] = ACTIONS(5697), - [anon_sym_DOT] = ACTIONS(5699), - [anon_sym_DOT_STAR] = ACTIONS(5697), - [anon_sym_DASH_GT] = ACTIONS(5697), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5699), - [anon_sym_decltype] = ACTIONS(5699), + [2182] = { + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(6107), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(3324), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7571), + [sym_qualified_type_identifier] = STATE(4526), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5478), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_union] = ACTIONS(75), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1534), }, - [2229] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2228), - [sym_identifier] = ACTIONS(6034), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6032), - [anon_sym_COMMA] = ACTIONS(6032), - [aux_sym_preproc_if_token2] = ACTIONS(6032), - [aux_sym_preproc_else_token1] = ACTIONS(6032), - [aux_sym_preproc_elif_token1] = ACTIONS(6034), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6032), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6032), - [anon_sym_LPAREN2] = ACTIONS(6032), - [anon_sym_DASH] = ACTIONS(6034), - [anon_sym_PLUS] = ACTIONS(6034), - [anon_sym_STAR] = ACTIONS(6034), - [anon_sym_SLASH] = ACTIONS(6034), - [anon_sym_PERCENT] = ACTIONS(6034), - [anon_sym_PIPE_PIPE] = ACTIONS(6032), - [anon_sym_AMP_AMP] = ACTIONS(6032), - [anon_sym_PIPE] = ACTIONS(6034), - [anon_sym_CARET] = ACTIONS(6034), - [anon_sym_AMP] = ACTIONS(6034), - [anon_sym_EQ_EQ] = ACTIONS(6032), - [anon_sym_BANG_EQ] = ACTIONS(6032), - [anon_sym_GT] = ACTIONS(6034), - [anon_sym_GT_EQ] = ACTIONS(6032), - [anon_sym_LT_EQ] = ACTIONS(6034), - [anon_sym_LT] = ACTIONS(6034), - [anon_sym_LT_LT] = ACTIONS(6034), - [anon_sym_GT_GT] = ACTIONS(6034), - [anon_sym___attribute__] = ACTIONS(6034), - [anon_sym_LBRACE] = ACTIONS(6032), - [anon_sym_signed] = ACTIONS(6134), - [anon_sym_unsigned] = ACTIONS(6134), - [anon_sym_long] = ACTIONS(6134), - [anon_sym_short] = ACTIONS(6134), - [anon_sym_LBRACK] = ACTIONS(6032), - [anon_sym_EQ] = ACTIONS(6034), - [anon_sym_QMARK] = ACTIONS(6032), - [anon_sym_STAR_EQ] = ACTIONS(6032), - [anon_sym_SLASH_EQ] = ACTIONS(6032), - [anon_sym_PERCENT_EQ] = ACTIONS(6032), - [anon_sym_PLUS_EQ] = ACTIONS(6032), - [anon_sym_DASH_EQ] = ACTIONS(6032), - [anon_sym_LT_LT_EQ] = ACTIONS(6032), - [anon_sym_GT_GT_EQ] = ACTIONS(6032), - [anon_sym_AMP_EQ] = ACTIONS(6032), - [anon_sym_CARET_EQ] = ACTIONS(6032), - [anon_sym_PIPE_EQ] = ACTIONS(6032), - [anon_sym_and_eq] = ACTIONS(6034), - [anon_sym_or_eq] = ACTIONS(6034), - [anon_sym_xor_eq] = ACTIONS(6034), - [anon_sym_LT_EQ_GT] = ACTIONS(6032), - [anon_sym_or] = ACTIONS(6034), - [anon_sym_and] = ACTIONS(6034), - [anon_sym_bitor] = ACTIONS(6034), - [anon_sym_xor] = ACTIONS(6034), - [anon_sym_bitand] = ACTIONS(6034), - [anon_sym_not_eq] = ACTIONS(6034), - [anon_sym_DASH_DASH] = ACTIONS(6032), - [anon_sym_PLUS_PLUS] = ACTIONS(6032), - [anon_sym_DOT] = ACTIONS(6034), - [anon_sym_DOT_STAR] = ACTIONS(6032), - [anon_sym_DASH_GT] = ACTIONS(6032), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6034), - [anon_sym_decltype] = ACTIONS(6034), + [2183] = { + [sym_string_literal] = STATE(2203), + [sym_template_argument_list] = STATE(3476), + [sym_raw_string_literal] = STATE(2203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_RPAREN] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4765), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4773), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4773), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(5447), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_EQ] = ACTIONS(4773), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4765), + [anon_sym_SLASH_EQ] = ACTIONS(4765), + [anon_sym_PERCENT_EQ] = ACTIONS(4765), + [anon_sym_PLUS_EQ] = ACTIONS(4765), + [anon_sym_DASH_EQ] = ACTIONS(4765), + [anon_sym_LT_LT_EQ] = ACTIONS(4765), + [anon_sym_GT_GT_EQ] = ACTIONS(4765), + [anon_sym_AMP_EQ] = ACTIONS(4765), + [anon_sym_CARET_EQ] = ACTIONS(4765), + [anon_sym_PIPE_EQ] = ACTIONS(4765), + [anon_sym_and_eq] = ACTIONS(4765), + [anon_sym_or_eq] = ACTIONS(4765), + [anon_sym_xor_eq] = ACTIONS(4765), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4765), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4765), + [anon_sym_not_eq] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4773), + [anon_sym_L_DQUOTE] = ACTIONS(5413), + [anon_sym_u_DQUOTE] = ACTIONS(5413), + [anon_sym_U_DQUOTE] = ACTIONS(5413), + [anon_sym_u8_DQUOTE] = ACTIONS(5413), + [anon_sym_DQUOTE] = ACTIONS(5413), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5415), + [anon_sym_LR_DQUOTE] = ACTIONS(5415), + [anon_sym_uR_DQUOTE] = ACTIONS(5415), + [anon_sym_UR_DQUOTE] = ACTIONS(5415), + [anon_sym_u8R_DQUOTE] = ACTIONS(5415), + [anon_sym_DASH_GT_STAR] = ACTIONS(4765), }, - [2230] = { - [sym_identifier] = ACTIONS(3078), - [aux_sym_preproc_def_token1] = ACTIONS(3078), - [aux_sym_preproc_if_token1] = ACTIONS(3078), - [aux_sym_preproc_if_token2] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3078), - [sym_preproc_directive] = ACTIONS(3078), - [anon_sym_LPAREN2] = ACTIONS(3080), - [anon_sym_TILDE] = ACTIONS(3080), - [anon_sym_STAR] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym___extension__] = ACTIONS(3078), - [anon_sym_typedef] = ACTIONS(3078), - [anon_sym_extern] = ACTIONS(3078), - [anon_sym___attribute__] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3080), - [anon_sym___declspec] = ACTIONS(3078), - [anon_sym___based] = ACTIONS(3078), - [anon_sym_signed] = ACTIONS(3078), - [anon_sym_unsigned] = ACTIONS(3078), - [anon_sym_long] = ACTIONS(3078), - [anon_sym_short] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_static] = ACTIONS(3078), - [anon_sym_register] = ACTIONS(3078), - [anon_sym_inline] = ACTIONS(3078), - [anon_sym___inline] = ACTIONS(3078), - [anon_sym___inline__] = ACTIONS(3078), - [anon_sym___forceinline] = ACTIONS(3078), - [anon_sym_thread_local] = ACTIONS(3078), - [anon_sym___thread] = ACTIONS(3078), - [anon_sym_const] = ACTIONS(3078), - [anon_sym_constexpr] = ACTIONS(3078), - [anon_sym_volatile] = ACTIONS(3078), - [anon_sym_restrict] = ACTIONS(3078), - [anon_sym___restrict__] = ACTIONS(3078), - [anon_sym__Atomic] = ACTIONS(3078), - [anon_sym__Noreturn] = ACTIONS(3078), - [anon_sym_noreturn] = ACTIONS(3078), - [anon_sym_mutable] = ACTIONS(3078), - [anon_sym_constinit] = ACTIONS(3078), - [anon_sym_consteval] = ACTIONS(3078), - [sym_primitive_type] = ACTIONS(3078), - [anon_sym_enum] = ACTIONS(3078), - [anon_sym_class] = ACTIONS(3078), - [anon_sym_struct] = ACTIONS(3078), - [anon_sym_union] = ACTIONS(3078), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3078), - [anon_sym_decltype] = ACTIONS(3078), - [anon_sym_virtual] = ACTIONS(3078), - [anon_sym_alignas] = ACTIONS(3078), - [anon_sym_explicit] = ACTIONS(3078), - [anon_sym_typename] = ACTIONS(3078), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_operator] = ACTIONS(3078), - [anon_sym_friend] = ACTIONS(3078), - [anon_sym_public] = ACTIONS(3078), - [anon_sym_private] = ACTIONS(3078), - [anon_sym_protected] = ACTIONS(3078), - [anon_sym_using] = ACTIONS(3078), - [anon_sym_static_assert] = ACTIONS(3078), - [anon_sym_catch] = ACTIONS(3078), + [2184] = { + [sym_attribute_declaration] = STATE(2276), + [sym_parameter_list] = STATE(2318), + [aux_sym_attributed_declarator_repeat1] = STATE(2276), + [ts_builtin_sym_end] = ACTIONS(6080), + [sym_identifier] = ACTIONS(6082), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6080), + [anon_sym_COMMA] = ACTIONS(6080), + [anon_sym_RPAREN] = ACTIONS(6080), + [aux_sym_preproc_if_token2] = ACTIONS(6080), + [aux_sym_preproc_else_token1] = ACTIONS(6080), + [aux_sym_preproc_elif_token1] = ACTIONS(6082), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6080), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6080), + [anon_sym_LPAREN2] = ACTIONS(6042), + [anon_sym_DASH] = ACTIONS(6082), + [anon_sym_PLUS] = ACTIONS(6082), + [anon_sym_STAR] = ACTIONS(6082), + [anon_sym_SLASH] = ACTIONS(6082), + [anon_sym_PERCENT] = ACTIONS(6082), + [anon_sym_PIPE_PIPE] = ACTIONS(6080), + [anon_sym_AMP_AMP] = ACTIONS(6080), + [anon_sym_PIPE] = ACTIONS(6082), + [anon_sym_CARET] = ACTIONS(6082), + [anon_sym_AMP] = ACTIONS(6082), + [anon_sym_EQ_EQ] = ACTIONS(6080), + [anon_sym_BANG_EQ] = ACTIONS(6080), + [anon_sym_GT] = ACTIONS(6082), + [anon_sym_GT_EQ] = ACTIONS(6080), + [anon_sym_LT_EQ] = ACTIONS(6082), + [anon_sym_LT] = ACTIONS(6082), + [anon_sym_LT_LT] = ACTIONS(6082), + [anon_sym_GT_GT] = ACTIONS(6082), + [anon_sym_SEMI] = ACTIONS(6080), + [anon_sym___attribute__] = ACTIONS(6082), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6044), + [anon_sym_RBRACE] = ACTIONS(6080), + [anon_sym_LBRACK] = ACTIONS(6046), + [anon_sym_RBRACK] = ACTIONS(6080), + [anon_sym_EQ] = ACTIONS(6082), + [anon_sym_COLON] = ACTIONS(6080), + [anon_sym_QMARK] = ACTIONS(6080), + [anon_sym_STAR_EQ] = ACTIONS(6080), + [anon_sym_SLASH_EQ] = ACTIONS(6080), + [anon_sym_PERCENT_EQ] = ACTIONS(6080), + [anon_sym_PLUS_EQ] = ACTIONS(6080), + [anon_sym_DASH_EQ] = ACTIONS(6080), + [anon_sym_LT_LT_EQ] = ACTIONS(6080), + [anon_sym_GT_GT_EQ] = ACTIONS(6080), + [anon_sym_AMP_EQ] = ACTIONS(6080), + [anon_sym_CARET_EQ] = ACTIONS(6080), + [anon_sym_PIPE_EQ] = ACTIONS(6080), + [anon_sym_and_eq] = ACTIONS(6082), + [anon_sym_or_eq] = ACTIONS(6082), + [anon_sym_xor_eq] = ACTIONS(6082), + [anon_sym_LT_EQ_GT] = ACTIONS(6080), + [anon_sym_or] = ACTIONS(6082), + [anon_sym_and] = ACTIONS(6082), + [anon_sym_bitor] = ACTIONS(6082), + [anon_sym_xor] = ACTIONS(6082), + [anon_sym_bitand] = ACTIONS(6082), + [anon_sym_not_eq] = ACTIONS(6082), + [anon_sym_DASH_DASH] = ACTIONS(6080), + [anon_sym_PLUS_PLUS] = ACTIONS(6080), + [anon_sym_DOT] = ACTIONS(6082), + [anon_sym_DOT_STAR] = ACTIONS(6080), + [anon_sym_DASH_GT] = ACTIONS(6080), + [sym_comment] = ACTIONS(3), }, - [2231] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(5957), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5959), - [anon_sym_COMMA] = ACTIONS(5959), - [aux_sym_preproc_if_token2] = ACTIONS(5959), - [aux_sym_preproc_else_token1] = ACTIONS(5959), - [aux_sym_preproc_elif_token1] = ACTIONS(5957), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5959), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5959), - [anon_sym_LPAREN2] = ACTIONS(5959), - [anon_sym_DASH] = ACTIONS(5957), - [anon_sym_PLUS] = ACTIONS(5957), - [anon_sym_STAR] = ACTIONS(5957), - [anon_sym_SLASH] = ACTIONS(5957), - [anon_sym_PERCENT] = ACTIONS(5957), - [anon_sym_PIPE_PIPE] = ACTIONS(5959), - [anon_sym_AMP_AMP] = ACTIONS(5959), - [anon_sym_PIPE] = ACTIONS(5957), - [anon_sym_CARET] = ACTIONS(5957), - [anon_sym_AMP] = ACTIONS(5957), - [anon_sym_EQ_EQ] = ACTIONS(5959), - [anon_sym_BANG_EQ] = ACTIONS(5959), - [anon_sym_GT] = ACTIONS(5957), - [anon_sym_GT_EQ] = ACTIONS(5959), - [anon_sym_LT_EQ] = ACTIONS(5957), - [anon_sym_LT] = ACTIONS(5957), - [anon_sym_LT_LT] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5957), - [anon_sym___attribute__] = ACTIONS(5957), - [anon_sym_LBRACE] = ACTIONS(5959), - [anon_sym_signed] = ACTIONS(6182), - [anon_sym_unsigned] = ACTIONS(6182), - [anon_sym_long] = ACTIONS(6182), - [anon_sym_short] = ACTIONS(6182), - [anon_sym_LBRACK] = ACTIONS(5959), - [anon_sym_EQ] = ACTIONS(5957), - [anon_sym_QMARK] = ACTIONS(5959), - [anon_sym_STAR_EQ] = ACTIONS(5959), - [anon_sym_SLASH_EQ] = ACTIONS(5959), - [anon_sym_PERCENT_EQ] = ACTIONS(5959), - [anon_sym_PLUS_EQ] = ACTIONS(5959), - [anon_sym_DASH_EQ] = ACTIONS(5959), - [anon_sym_LT_LT_EQ] = ACTIONS(5959), - [anon_sym_GT_GT_EQ] = ACTIONS(5959), - [anon_sym_AMP_EQ] = ACTIONS(5959), - [anon_sym_CARET_EQ] = ACTIONS(5959), - [anon_sym_PIPE_EQ] = ACTIONS(5959), - [anon_sym_and_eq] = ACTIONS(5957), - [anon_sym_or_eq] = ACTIONS(5957), - [anon_sym_xor_eq] = ACTIONS(5957), - [anon_sym_LT_EQ_GT] = ACTIONS(5959), - [anon_sym_or] = ACTIONS(5957), - [anon_sym_and] = ACTIONS(5957), - [anon_sym_bitor] = ACTIONS(5957), - [anon_sym_xor] = ACTIONS(5957), - [anon_sym_bitand] = ACTIONS(5957), - [anon_sym_not_eq] = ACTIONS(5957), - [anon_sym_DASH_DASH] = ACTIONS(5959), - [anon_sym_PLUS_PLUS] = ACTIONS(5959), - [anon_sym_DOT] = ACTIONS(5957), - [anon_sym_DOT_STAR] = ACTIONS(5959), - [anon_sym_DASH_GT] = ACTIONS(5959), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5957), - [anon_sym_decltype] = ACTIONS(5957), + [2185] = { + [sym_attribute_specifier] = STATE(2322), + [ts_builtin_sym_end] = ACTIONS(6084), + [sym_identifier] = ACTIONS(6086), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6084), + [anon_sym_COMMA] = ACTIONS(6084), + [anon_sym_RPAREN] = ACTIONS(6084), + [aux_sym_preproc_if_token2] = ACTIONS(6084), + [aux_sym_preproc_else_token1] = ACTIONS(6084), + [aux_sym_preproc_elif_token1] = ACTIONS(6086), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6084), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6084), + [anon_sym_LPAREN2] = ACTIONS(6084), + [anon_sym_DASH] = ACTIONS(6086), + [anon_sym_PLUS] = ACTIONS(6086), + [anon_sym_STAR] = ACTIONS(6086), + [anon_sym_SLASH] = ACTIONS(6086), + [anon_sym_PERCENT] = ACTIONS(6086), + [anon_sym_PIPE_PIPE] = ACTIONS(6084), + [anon_sym_AMP_AMP] = ACTIONS(6084), + [anon_sym_PIPE] = ACTIONS(6086), + [anon_sym_CARET] = ACTIONS(6086), + [anon_sym_AMP] = ACTIONS(6086), + [anon_sym_EQ_EQ] = ACTIONS(6084), + [anon_sym_BANG_EQ] = ACTIONS(6084), + [anon_sym_GT] = ACTIONS(6086), + [anon_sym_GT_EQ] = ACTIONS(6084), + [anon_sym_LT_EQ] = ACTIONS(6086), + [anon_sym_LT] = ACTIONS(6086), + [anon_sym_LT_LT] = ACTIONS(6086), + [anon_sym_GT_GT] = ACTIONS(6086), + [anon_sym_SEMI] = ACTIONS(6084), + [anon_sym___attribute__] = ACTIONS(5698), + [anon_sym_LBRACE] = ACTIONS(6084), + [anon_sym_RBRACE] = ACTIONS(6084), + [anon_sym_LBRACK] = ACTIONS(6084), + [anon_sym_RBRACK] = ACTIONS(6084), + [anon_sym_EQ] = ACTIONS(6086), + [anon_sym_COLON] = ACTIONS(6084), + [anon_sym_QMARK] = ACTIONS(6084), + [anon_sym_STAR_EQ] = ACTIONS(6084), + [anon_sym_SLASH_EQ] = ACTIONS(6084), + [anon_sym_PERCENT_EQ] = ACTIONS(6084), + [anon_sym_PLUS_EQ] = ACTIONS(6084), + [anon_sym_DASH_EQ] = ACTIONS(6084), + [anon_sym_LT_LT_EQ] = ACTIONS(6084), + [anon_sym_GT_GT_EQ] = ACTIONS(6084), + [anon_sym_AMP_EQ] = ACTIONS(6084), + [anon_sym_CARET_EQ] = ACTIONS(6084), + [anon_sym_PIPE_EQ] = ACTIONS(6084), + [anon_sym_and_eq] = ACTIONS(6086), + [anon_sym_or_eq] = ACTIONS(6086), + [anon_sym_xor_eq] = ACTIONS(6086), + [anon_sym_LT_EQ_GT] = ACTIONS(6084), + [anon_sym_or] = ACTIONS(6086), + [anon_sym_and] = ACTIONS(6086), + [anon_sym_bitor] = ACTIONS(6086), + [anon_sym_xor] = ACTIONS(6086), + [anon_sym_bitand] = ACTIONS(6086), + [anon_sym_not_eq] = ACTIONS(6086), + [anon_sym_DASH_DASH] = ACTIONS(6084), + [anon_sym_PLUS_PLUS] = ACTIONS(6084), + [anon_sym_DOT] = ACTIONS(6086), + [anon_sym_DOT_STAR] = ACTIONS(6084), + [anon_sym_DASH_GT] = ACTIONS(6084), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6086), + [anon_sym_decltype] = ACTIONS(6086), }, - [2232] = { - [sym_template_argument_list] = STATE(2502), - [sym_identifier] = ACTIONS(5460), - [anon_sym_LPAREN2] = ACTIONS(5467), - [anon_sym_TILDE] = ACTIONS(5467), - [anon_sym_STAR] = ACTIONS(5467), - [anon_sym_PIPE_PIPE] = ACTIONS(5467), - [anon_sym_AMP_AMP] = ACTIONS(5467), - [anon_sym_AMP] = ACTIONS(5460), - [anon_sym_LT] = ACTIONS(6184), - [anon_sym___extension__] = ACTIONS(5460), - [anon_sym_extern] = ACTIONS(5460), - [anon_sym___attribute__] = ACTIONS(5460), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5467), - [anon_sym___declspec] = ACTIONS(5460), - [anon_sym___based] = ACTIONS(5460), - [anon_sym___cdecl] = ACTIONS(5460), - [anon_sym___clrcall] = ACTIONS(5460), - [anon_sym___stdcall] = ACTIONS(5460), - [anon_sym___fastcall] = ACTIONS(5460), - [anon_sym___thiscall] = ACTIONS(5460), - [anon_sym___vectorcall] = ACTIONS(5460), - [anon_sym_signed] = ACTIONS(5460), - [anon_sym_unsigned] = ACTIONS(5460), - [anon_sym_long] = ACTIONS(5460), - [anon_sym_short] = ACTIONS(5460), - [anon_sym_LBRACK] = ACTIONS(5460), - [anon_sym_static] = ACTIONS(5460), - [anon_sym_register] = ACTIONS(5460), - [anon_sym_inline] = ACTIONS(5460), - [anon_sym___inline] = ACTIONS(5460), - [anon_sym___inline__] = ACTIONS(5460), - [anon_sym___forceinline] = ACTIONS(5460), - [anon_sym_thread_local] = ACTIONS(5460), - [anon_sym___thread] = ACTIONS(5460), - [anon_sym_const] = ACTIONS(5460), - [anon_sym_constexpr] = ACTIONS(5460), - [anon_sym_volatile] = ACTIONS(5460), - [anon_sym_restrict] = ACTIONS(5460), - [anon_sym___restrict__] = ACTIONS(5460), - [anon_sym__Atomic] = ACTIONS(5460), - [anon_sym__Noreturn] = ACTIONS(5460), - [anon_sym_noreturn] = ACTIONS(5460), - [anon_sym_mutable] = ACTIONS(5460), - [anon_sym_constinit] = ACTIONS(5460), - [anon_sym_consteval] = ACTIONS(5460), - [sym_primitive_type] = ACTIONS(5460), - [anon_sym_enum] = ACTIONS(5460), - [anon_sym_class] = ACTIONS(5460), - [anon_sym_struct] = ACTIONS(5460), - [anon_sym_union] = ACTIONS(5460), - [anon_sym_or] = ACTIONS(5460), - [anon_sym_and] = ACTIONS(5460), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5460), - [anon_sym_decltype] = ACTIONS(5460), - [anon_sym_virtual] = ACTIONS(5460), - [anon_sym_alignas] = ACTIONS(5460), - [anon_sym_explicit] = ACTIONS(5460), - [anon_sym_typename] = ACTIONS(5460), - [anon_sym_template] = ACTIONS(5460), - [anon_sym_operator] = ACTIONS(5460), - [anon_sym_friend] = ACTIONS(5460), - [anon_sym_using] = ACTIONS(5460), - [anon_sym_concept] = ACTIONS(5460), + [2186] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2198), + [ts_builtin_sym_end] = ACTIONS(6088), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6088), + [anon_sym_COMMA] = ACTIONS(6088), + [anon_sym_RPAREN] = ACTIONS(6088), + [anon_sym_LPAREN2] = ACTIONS(6088), + [anon_sym_DASH] = ACTIONS(6090), + [anon_sym_PLUS] = ACTIONS(6090), + [anon_sym_STAR] = ACTIONS(6088), + [anon_sym_SLASH] = ACTIONS(6090), + [anon_sym_PERCENT] = ACTIONS(6088), + [anon_sym_PIPE_PIPE] = ACTIONS(6088), + [anon_sym_AMP_AMP] = ACTIONS(6088), + [anon_sym_PIPE] = ACTIONS(6090), + [anon_sym_CARET] = ACTIONS(6088), + [anon_sym_AMP] = ACTIONS(6090), + [anon_sym_EQ_EQ] = ACTIONS(6088), + [anon_sym_BANG_EQ] = ACTIONS(6088), + [anon_sym_GT] = ACTIONS(6090), + [anon_sym_GT_EQ] = ACTIONS(6088), + [anon_sym_LT_EQ] = ACTIONS(6090), + [anon_sym_LT] = ACTIONS(6090), + [anon_sym_LT_LT] = ACTIONS(6088), + [anon_sym_GT_GT] = ACTIONS(6088), + [anon_sym_SEMI] = ACTIONS(6088), + [anon_sym___extension__] = ACTIONS(6088), + [anon_sym___attribute__] = ACTIONS(6088), + [anon_sym_LBRACE] = ACTIONS(6088), + [anon_sym_RBRACE] = ACTIONS(6088), + [anon_sym_signed] = ACTIONS(6092), + [anon_sym_unsigned] = ACTIONS(6092), + [anon_sym_long] = ACTIONS(6092), + [anon_sym_short] = ACTIONS(6092), + [anon_sym_LBRACK] = ACTIONS(6088), + [anon_sym_RBRACK] = ACTIONS(6088), + [anon_sym_const] = ACTIONS(6090), + [anon_sym_constexpr] = ACTIONS(6088), + [anon_sym_volatile] = ACTIONS(6088), + [anon_sym_restrict] = ACTIONS(6088), + [anon_sym___restrict__] = ACTIONS(6088), + [anon_sym__Atomic] = ACTIONS(6088), + [anon_sym__Noreturn] = ACTIONS(6088), + [anon_sym_noreturn] = ACTIONS(6088), + [anon_sym_mutable] = ACTIONS(6088), + [anon_sym_constinit] = ACTIONS(6088), + [anon_sym_consteval] = ACTIONS(6088), + [anon_sym_COLON] = ACTIONS(6088), + [anon_sym_QMARK] = ACTIONS(6088), + [anon_sym_LT_EQ_GT] = ACTIONS(6088), + [anon_sym_or] = ACTIONS(6088), + [anon_sym_and] = ACTIONS(6088), + [anon_sym_bitor] = ACTIONS(6088), + [anon_sym_xor] = ACTIONS(6088), + [anon_sym_bitand] = ACTIONS(6088), + [anon_sym_not_eq] = ACTIONS(6088), + [anon_sym_DASH_DASH] = ACTIONS(6088), + [anon_sym_PLUS_PLUS] = ACTIONS(6088), + [anon_sym_DOT] = ACTIONS(6090), + [anon_sym_DOT_STAR] = ACTIONS(6088), + [anon_sym_DASH_GT] = ACTIONS(6088), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6088), + [anon_sym_decltype] = ACTIONS(6088), + [anon_sym_final] = ACTIONS(6088), + [anon_sym_override] = ACTIONS(6088), + [anon_sym_requires] = ACTIONS(6088), + [sym_semgrep_metavar] = ACTIONS(6088), }, - [2233] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2217), - [sym_identifier] = ACTIONS(6007), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6005), - [anon_sym_COMMA] = ACTIONS(6005), - [aux_sym_preproc_if_token2] = ACTIONS(6005), - [aux_sym_preproc_else_token1] = ACTIONS(6005), - [aux_sym_preproc_elif_token1] = ACTIONS(6007), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6005), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6005), - [anon_sym_LPAREN2] = ACTIONS(6005), - [anon_sym_DASH] = ACTIONS(6007), - [anon_sym_PLUS] = ACTIONS(6007), - [anon_sym_STAR] = ACTIONS(6007), - [anon_sym_SLASH] = ACTIONS(6007), - [anon_sym_PERCENT] = ACTIONS(6007), - [anon_sym_PIPE_PIPE] = ACTIONS(6005), - [anon_sym_AMP_AMP] = ACTIONS(6005), - [anon_sym_PIPE] = ACTIONS(6007), - [anon_sym_CARET] = ACTIONS(6007), - [anon_sym_AMP] = ACTIONS(6007), - [anon_sym_EQ_EQ] = ACTIONS(6005), - [anon_sym_BANG_EQ] = ACTIONS(6005), - [anon_sym_GT] = ACTIONS(6007), - [anon_sym_GT_EQ] = ACTIONS(6005), - [anon_sym_LT_EQ] = ACTIONS(6007), - [anon_sym_LT] = ACTIONS(6007), - [anon_sym_LT_LT] = ACTIONS(6007), - [anon_sym_GT_GT] = ACTIONS(6007), - [anon_sym___attribute__] = ACTIONS(6007), - [anon_sym_LBRACE] = ACTIONS(6005), - [anon_sym_signed] = ACTIONS(6186), - [anon_sym_unsigned] = ACTIONS(6186), - [anon_sym_long] = ACTIONS(6186), - [anon_sym_short] = ACTIONS(6186), - [anon_sym_LBRACK] = ACTIONS(6005), - [anon_sym_EQ] = ACTIONS(6007), - [anon_sym_QMARK] = ACTIONS(6005), - [anon_sym_STAR_EQ] = ACTIONS(6005), - [anon_sym_SLASH_EQ] = ACTIONS(6005), - [anon_sym_PERCENT_EQ] = ACTIONS(6005), - [anon_sym_PLUS_EQ] = ACTIONS(6005), - [anon_sym_DASH_EQ] = ACTIONS(6005), - [anon_sym_LT_LT_EQ] = ACTIONS(6005), - [anon_sym_GT_GT_EQ] = ACTIONS(6005), - [anon_sym_AMP_EQ] = ACTIONS(6005), - [anon_sym_CARET_EQ] = ACTIONS(6005), - [anon_sym_PIPE_EQ] = ACTIONS(6005), - [anon_sym_and_eq] = ACTIONS(6007), - [anon_sym_or_eq] = ACTIONS(6007), - [anon_sym_xor_eq] = ACTIONS(6007), - [anon_sym_LT_EQ_GT] = ACTIONS(6005), - [anon_sym_or] = ACTIONS(6007), - [anon_sym_and] = ACTIONS(6007), - [anon_sym_bitor] = ACTIONS(6007), - [anon_sym_xor] = ACTIONS(6007), - [anon_sym_bitand] = ACTIONS(6007), - [anon_sym_not_eq] = ACTIONS(6007), - [anon_sym_DASH_DASH] = ACTIONS(6005), - [anon_sym_PLUS_PLUS] = ACTIONS(6005), - [anon_sym_DOT] = ACTIONS(6007), - [anon_sym_DOT_STAR] = ACTIONS(6005), - [anon_sym_DASH_GT] = ACTIONS(6005), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6007), - [anon_sym_decltype] = ACTIONS(6007), + [2187] = { + [sym_string_literal] = STATE(2160), + [sym_template_argument_list] = STATE(2485), + [sym_raw_string_literal] = STATE(2160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4765), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4773), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4773), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(5450), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_SEMI] = ACTIONS(4765), + [anon_sym___attribute__] = ACTIONS(4765), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_EQ] = ACTIONS(4773), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4765), + [anon_sym_SLASH_EQ] = ACTIONS(4765), + [anon_sym_PERCENT_EQ] = ACTIONS(4765), + [anon_sym_PLUS_EQ] = ACTIONS(4765), + [anon_sym_DASH_EQ] = ACTIONS(4765), + [anon_sym_LT_LT_EQ] = ACTIONS(4765), + [anon_sym_GT_GT_EQ] = ACTIONS(4765), + [anon_sym_AMP_EQ] = ACTIONS(4765), + [anon_sym_CARET_EQ] = ACTIONS(4765), + [anon_sym_PIPE_EQ] = ACTIONS(4765), + [anon_sym_and_eq] = ACTIONS(4765), + [anon_sym_or_eq] = ACTIONS(4765), + [anon_sym_xor_eq] = ACTIONS(4765), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4765), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4765), + [anon_sym_not_eq] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(6012), + [anon_sym_u_DQUOTE] = ACTIONS(6012), + [anon_sym_U_DQUOTE] = ACTIONS(6012), + [anon_sym_u8_DQUOTE] = ACTIONS(6012), + [anon_sym_DQUOTE] = ACTIONS(6012), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6014), + [anon_sym_LR_DQUOTE] = ACTIONS(6014), + [anon_sym_uR_DQUOTE] = ACTIONS(6014), + [anon_sym_UR_DQUOTE] = ACTIONS(6014), + [anon_sym_u8R_DQUOTE] = ACTIONS(6014), }, - [2234] = { - [sym_identifier] = ACTIONS(3096), - [aux_sym_preproc_def_token1] = ACTIONS(3096), - [aux_sym_preproc_if_token1] = ACTIONS(3096), - [aux_sym_preproc_if_token2] = ACTIONS(3096), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3096), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3096), - [sym_preproc_directive] = ACTIONS(3096), - [anon_sym_LPAREN2] = ACTIONS(3094), - [anon_sym_TILDE] = ACTIONS(3094), - [anon_sym_STAR] = ACTIONS(3094), - [anon_sym_AMP_AMP] = ACTIONS(3094), - [anon_sym_AMP] = ACTIONS(3096), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_typedef] = ACTIONS(3096), - [anon_sym_extern] = ACTIONS(3096), - [anon_sym___attribute__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(3094), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3094), - [anon_sym___declspec] = ACTIONS(3096), - [anon_sym___based] = ACTIONS(3096), - [anon_sym_signed] = ACTIONS(3096), - [anon_sym_unsigned] = ACTIONS(3096), - [anon_sym_long] = ACTIONS(3096), - [anon_sym_short] = ACTIONS(3096), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_static] = ACTIONS(3096), - [anon_sym_register] = ACTIONS(3096), - [anon_sym_inline] = ACTIONS(3096), - [anon_sym___inline] = ACTIONS(3096), - [anon_sym___inline__] = ACTIONS(3096), - [anon_sym___forceinline] = ACTIONS(3096), - [anon_sym_thread_local] = ACTIONS(3096), - [anon_sym___thread] = ACTIONS(3096), - [anon_sym_const] = ACTIONS(3096), - [anon_sym_constexpr] = ACTIONS(3096), - [anon_sym_volatile] = ACTIONS(3096), - [anon_sym_restrict] = ACTIONS(3096), - [anon_sym___restrict__] = ACTIONS(3096), - [anon_sym__Atomic] = ACTIONS(3096), - [anon_sym__Noreturn] = ACTIONS(3096), - [anon_sym_noreturn] = ACTIONS(3096), - [anon_sym_mutable] = ACTIONS(3096), - [anon_sym_constinit] = ACTIONS(3096), - [anon_sym_consteval] = ACTIONS(3096), - [sym_primitive_type] = ACTIONS(3096), - [anon_sym_enum] = ACTIONS(3096), - [anon_sym_class] = ACTIONS(3096), - [anon_sym_struct] = ACTIONS(3096), - [anon_sym_union] = ACTIONS(3096), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3096), - [anon_sym_decltype] = ACTIONS(3096), - [anon_sym_virtual] = ACTIONS(3096), - [anon_sym_alignas] = ACTIONS(3096), - [anon_sym_explicit] = ACTIONS(3096), - [anon_sym_typename] = ACTIONS(3096), - [anon_sym_template] = ACTIONS(3096), - [anon_sym_operator] = ACTIONS(3096), - [anon_sym_friend] = ACTIONS(3096), - [anon_sym_public] = ACTIONS(3096), - [anon_sym_private] = ACTIONS(3096), - [anon_sym_protected] = ACTIONS(3096), - [anon_sym_using] = ACTIONS(3096), - [anon_sym_static_assert] = ACTIONS(3096), - [anon_sym_catch] = ACTIONS(3096), + [2188] = { + [sym_attribute_specifier] = STATE(2394), + [ts_builtin_sym_end] = ACTIONS(6094), + [sym_identifier] = ACTIONS(6096), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6094), + [anon_sym_COMMA] = ACTIONS(6094), + [anon_sym_RPAREN] = ACTIONS(6094), + [aux_sym_preproc_if_token2] = ACTIONS(6094), + [aux_sym_preproc_else_token1] = ACTIONS(6094), + [aux_sym_preproc_elif_token1] = ACTIONS(6096), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6094), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6094), + [anon_sym_LPAREN2] = ACTIONS(6094), + [anon_sym_DASH] = ACTIONS(6096), + [anon_sym_PLUS] = ACTIONS(6096), + [anon_sym_STAR] = ACTIONS(6096), + [anon_sym_SLASH] = ACTIONS(6096), + [anon_sym_PERCENT] = ACTIONS(6096), + [anon_sym_PIPE_PIPE] = ACTIONS(6094), + [anon_sym_AMP_AMP] = ACTIONS(6094), + [anon_sym_PIPE] = ACTIONS(6096), + [anon_sym_CARET] = ACTIONS(6096), + [anon_sym_AMP] = ACTIONS(6096), + [anon_sym_EQ_EQ] = ACTIONS(6094), + [anon_sym_BANG_EQ] = ACTIONS(6094), + [anon_sym_GT] = ACTIONS(6096), + [anon_sym_GT_EQ] = ACTIONS(6094), + [anon_sym_LT_EQ] = ACTIONS(6096), + [anon_sym_LT] = ACTIONS(6096), + [anon_sym_LT_LT] = ACTIONS(6096), + [anon_sym_GT_GT] = ACTIONS(6096), + [anon_sym_SEMI] = ACTIONS(6094), + [anon_sym___attribute__] = ACTIONS(5698), + [anon_sym_LBRACE] = ACTIONS(6094), + [anon_sym_RBRACE] = ACTIONS(6094), + [anon_sym_LBRACK] = ACTIONS(6094), + [anon_sym_RBRACK] = ACTIONS(6094), + [anon_sym_EQ] = ACTIONS(6096), + [anon_sym_COLON] = ACTIONS(6094), + [anon_sym_QMARK] = ACTIONS(6094), + [anon_sym_STAR_EQ] = ACTIONS(6094), + [anon_sym_SLASH_EQ] = ACTIONS(6094), + [anon_sym_PERCENT_EQ] = ACTIONS(6094), + [anon_sym_PLUS_EQ] = ACTIONS(6094), + [anon_sym_DASH_EQ] = ACTIONS(6094), + [anon_sym_LT_LT_EQ] = ACTIONS(6094), + [anon_sym_GT_GT_EQ] = ACTIONS(6094), + [anon_sym_AMP_EQ] = ACTIONS(6094), + [anon_sym_CARET_EQ] = ACTIONS(6094), + [anon_sym_PIPE_EQ] = ACTIONS(6094), + [anon_sym_and_eq] = ACTIONS(6096), + [anon_sym_or_eq] = ACTIONS(6096), + [anon_sym_xor_eq] = ACTIONS(6096), + [anon_sym_LT_EQ_GT] = ACTIONS(6094), + [anon_sym_or] = ACTIONS(6096), + [anon_sym_and] = ACTIONS(6096), + [anon_sym_bitor] = ACTIONS(6096), + [anon_sym_xor] = ACTIONS(6096), + [anon_sym_bitand] = ACTIONS(6096), + [anon_sym_not_eq] = ACTIONS(6096), + [anon_sym_DASH_DASH] = ACTIONS(6094), + [anon_sym_PLUS_PLUS] = ACTIONS(6094), + [anon_sym_DOT] = ACTIONS(6096), + [anon_sym_DOT_STAR] = ACTIONS(6094), + [anon_sym_DASH_GT] = ACTIONS(6094), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6096), + [anon_sym_decltype] = ACTIONS(6096), }, - [2235] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(6050), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6048), - [anon_sym_COMMA] = ACTIONS(6048), - [aux_sym_preproc_if_token2] = ACTIONS(6048), - [aux_sym_preproc_else_token1] = ACTIONS(6048), - [aux_sym_preproc_elif_token1] = ACTIONS(6050), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6048), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6048), - [anon_sym_LPAREN2] = ACTIONS(6048), - [anon_sym_DASH] = ACTIONS(6050), - [anon_sym_PLUS] = ACTIONS(6050), - [anon_sym_STAR] = ACTIONS(6050), - [anon_sym_SLASH] = ACTIONS(6050), - [anon_sym_PERCENT] = ACTIONS(6050), - [anon_sym_PIPE_PIPE] = ACTIONS(6048), - [anon_sym_AMP_AMP] = ACTIONS(6048), - [anon_sym_PIPE] = ACTIONS(6050), - [anon_sym_CARET] = ACTIONS(6050), - [anon_sym_AMP] = ACTIONS(6050), - [anon_sym_EQ_EQ] = ACTIONS(6048), - [anon_sym_BANG_EQ] = ACTIONS(6048), - [anon_sym_GT] = ACTIONS(6050), - [anon_sym_GT_EQ] = ACTIONS(6048), - [anon_sym_LT_EQ] = ACTIONS(6050), - [anon_sym_LT] = ACTIONS(6050), - [anon_sym_LT_LT] = ACTIONS(6050), - [anon_sym_GT_GT] = ACTIONS(6050), - [anon_sym___attribute__] = ACTIONS(6050), - [anon_sym_LBRACE] = ACTIONS(6048), - [anon_sym_signed] = ACTIONS(6188), - [anon_sym_unsigned] = ACTIONS(6188), - [anon_sym_long] = ACTIONS(6188), - [anon_sym_short] = ACTIONS(6188), - [anon_sym_LBRACK] = ACTIONS(6048), - [anon_sym_EQ] = ACTIONS(6050), - [anon_sym_QMARK] = ACTIONS(6048), - [anon_sym_STAR_EQ] = ACTIONS(6048), - [anon_sym_SLASH_EQ] = ACTIONS(6048), - [anon_sym_PERCENT_EQ] = ACTIONS(6048), - [anon_sym_PLUS_EQ] = ACTIONS(6048), - [anon_sym_DASH_EQ] = ACTIONS(6048), - [anon_sym_LT_LT_EQ] = ACTIONS(6048), - [anon_sym_GT_GT_EQ] = ACTIONS(6048), - [anon_sym_AMP_EQ] = ACTIONS(6048), - [anon_sym_CARET_EQ] = ACTIONS(6048), - [anon_sym_PIPE_EQ] = ACTIONS(6048), - [anon_sym_and_eq] = ACTIONS(6050), - [anon_sym_or_eq] = ACTIONS(6050), - [anon_sym_xor_eq] = ACTIONS(6050), - [anon_sym_LT_EQ_GT] = ACTIONS(6048), - [anon_sym_or] = ACTIONS(6050), - [anon_sym_and] = ACTIONS(6050), - [anon_sym_bitor] = ACTIONS(6050), - [anon_sym_xor] = ACTIONS(6050), - [anon_sym_bitand] = ACTIONS(6050), - [anon_sym_not_eq] = ACTIONS(6050), - [anon_sym_DASH_DASH] = ACTIONS(6048), - [anon_sym_PLUS_PLUS] = ACTIONS(6048), - [anon_sym_DOT] = ACTIONS(6050), - [anon_sym_DOT_STAR] = ACTIONS(6048), - [anon_sym_DASH_GT] = ACTIONS(6048), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6050), - [anon_sym_decltype] = ACTIONS(6050), + [2189] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2198), + [ts_builtin_sym_end] = ACTIONS(4771), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4771), + [anon_sym_COMMA] = ACTIONS(4771), + [anon_sym_RPAREN] = ACTIONS(4771), + [anon_sym_LPAREN2] = ACTIONS(4771), + [anon_sym_DASH] = ACTIONS(4763), + [anon_sym_PLUS] = ACTIONS(4763), + [anon_sym_STAR] = ACTIONS(4771), + [anon_sym_SLASH] = ACTIONS(4763), + [anon_sym_PERCENT] = ACTIONS(4771), + [anon_sym_PIPE_PIPE] = ACTIONS(4771), + [anon_sym_AMP_AMP] = ACTIONS(4771), + [anon_sym_PIPE] = ACTIONS(4763), + [anon_sym_CARET] = ACTIONS(4771), + [anon_sym_AMP] = ACTIONS(4763), + [anon_sym_EQ_EQ] = ACTIONS(4771), + [anon_sym_BANG_EQ] = ACTIONS(4771), + [anon_sym_GT] = ACTIONS(4763), + [anon_sym_GT_EQ] = ACTIONS(4771), + [anon_sym_LT_EQ] = ACTIONS(4763), + [anon_sym_LT] = ACTIONS(4763), + [anon_sym_LT_LT] = ACTIONS(4771), + [anon_sym_GT_GT] = ACTIONS(4771), + [anon_sym_SEMI] = ACTIONS(4771), + [anon_sym___extension__] = ACTIONS(4771), + [anon_sym___attribute__] = ACTIONS(4771), + [anon_sym_LBRACE] = ACTIONS(4771), + [anon_sym_RBRACE] = ACTIONS(4771), + [anon_sym_signed] = ACTIONS(6092), + [anon_sym_unsigned] = ACTIONS(6092), + [anon_sym_long] = ACTIONS(6092), + [anon_sym_short] = ACTIONS(6092), + [anon_sym_LBRACK] = ACTIONS(4771), + [anon_sym_RBRACK] = ACTIONS(4771), + [anon_sym_const] = ACTIONS(4763), + [anon_sym_constexpr] = ACTIONS(4771), + [anon_sym_volatile] = ACTIONS(4771), + [anon_sym_restrict] = ACTIONS(4771), + [anon_sym___restrict__] = ACTIONS(4771), + [anon_sym__Atomic] = ACTIONS(4771), + [anon_sym__Noreturn] = ACTIONS(4771), + [anon_sym_noreturn] = ACTIONS(4771), + [anon_sym_mutable] = ACTIONS(4771), + [anon_sym_constinit] = ACTIONS(4771), + [anon_sym_consteval] = ACTIONS(4771), + [anon_sym_COLON] = ACTIONS(4771), + [anon_sym_QMARK] = ACTIONS(4771), + [anon_sym_LT_EQ_GT] = ACTIONS(4771), + [anon_sym_or] = ACTIONS(4771), + [anon_sym_and] = ACTIONS(4771), + [anon_sym_bitor] = ACTIONS(4771), + [anon_sym_xor] = ACTIONS(4771), + [anon_sym_bitand] = ACTIONS(4771), + [anon_sym_not_eq] = ACTIONS(4771), + [anon_sym_DASH_DASH] = ACTIONS(4771), + [anon_sym_PLUS_PLUS] = ACTIONS(4771), + [anon_sym_DOT] = ACTIONS(4763), + [anon_sym_DOT_STAR] = ACTIONS(4771), + [anon_sym_DASH_GT] = ACTIONS(4771), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4771), + [anon_sym_decltype] = ACTIONS(4771), + [anon_sym_final] = ACTIONS(4771), + [anon_sym_override] = ACTIONS(4771), + [anon_sym_requires] = ACTIONS(4771), + [sym_semgrep_metavar] = ACTIONS(4771), }, - [2236] = { - [sym_string_literal] = STATE(2226), - [sym_template_argument_list] = STATE(3962), - [sym_raw_string_literal] = STATE(2226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4837), - [anon_sym_LPAREN2] = ACTIONS(4829), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(6190), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_EQ] = ACTIONS(4837), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4829), - [anon_sym_SLASH_EQ] = ACTIONS(4829), - [anon_sym_PERCENT_EQ] = ACTIONS(4829), - [anon_sym_PLUS_EQ] = ACTIONS(4829), - [anon_sym_DASH_EQ] = ACTIONS(4829), - [anon_sym_LT_LT_EQ] = ACTIONS(4829), - [anon_sym_GT_GT_EQ] = ACTIONS(4829), - [anon_sym_AMP_EQ] = ACTIONS(4829), - [anon_sym_CARET_EQ] = ACTIONS(4829), - [anon_sym_PIPE_EQ] = ACTIONS(4829), - [anon_sym_and_eq] = ACTIONS(4829), - [anon_sym_or_eq] = ACTIONS(4829), - [anon_sym_xor_eq] = ACTIONS(4829), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4829), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4829), - [anon_sym_not_eq] = ACTIONS(4829), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(6166), - [anon_sym_u_DQUOTE] = ACTIONS(6166), - [anon_sym_U_DQUOTE] = ACTIONS(6166), - [anon_sym_u8_DQUOTE] = ACTIONS(6166), - [anon_sym_DQUOTE] = ACTIONS(6166), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(6168), - [anon_sym_LR_DQUOTE] = ACTIONS(6168), - [anon_sym_uR_DQUOTE] = ACTIONS(6168), - [anon_sym_UR_DQUOTE] = ACTIONS(6168), - [anon_sym_u8R_DQUOTE] = ACTIONS(6168), - [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(4829), + [2190] = { + [sym_attribute_specifier] = STATE(2395), + [ts_builtin_sym_end] = ACTIONS(6098), + [sym_identifier] = ACTIONS(6100), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6098), + [anon_sym_COMMA] = ACTIONS(6098), + [anon_sym_RPAREN] = ACTIONS(6098), + [aux_sym_preproc_if_token2] = ACTIONS(6098), + [aux_sym_preproc_else_token1] = ACTIONS(6098), + [aux_sym_preproc_elif_token1] = ACTIONS(6100), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6098), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6098), + [anon_sym_LPAREN2] = ACTIONS(6098), + [anon_sym_DASH] = ACTIONS(6100), + [anon_sym_PLUS] = ACTIONS(6100), + [anon_sym_STAR] = ACTIONS(6100), + [anon_sym_SLASH] = ACTIONS(6100), + [anon_sym_PERCENT] = ACTIONS(6100), + [anon_sym_PIPE_PIPE] = ACTIONS(6098), + [anon_sym_AMP_AMP] = ACTIONS(6098), + [anon_sym_PIPE] = ACTIONS(6100), + [anon_sym_CARET] = ACTIONS(6100), + [anon_sym_AMP] = ACTIONS(6100), + [anon_sym_EQ_EQ] = ACTIONS(6098), + [anon_sym_BANG_EQ] = ACTIONS(6098), + [anon_sym_GT] = ACTIONS(6100), + [anon_sym_GT_EQ] = ACTIONS(6098), + [anon_sym_LT_EQ] = ACTIONS(6100), + [anon_sym_LT] = ACTIONS(6100), + [anon_sym_LT_LT] = ACTIONS(6100), + [anon_sym_GT_GT] = ACTIONS(6100), + [anon_sym_SEMI] = ACTIONS(6098), + [anon_sym___attribute__] = ACTIONS(5698), + [anon_sym_LBRACE] = ACTIONS(6098), + [anon_sym_RBRACE] = ACTIONS(6098), + [anon_sym_LBRACK] = ACTIONS(6098), + [anon_sym_RBRACK] = ACTIONS(6098), + [anon_sym_EQ] = ACTIONS(6100), + [anon_sym_COLON] = ACTIONS(6098), + [anon_sym_QMARK] = ACTIONS(6098), + [anon_sym_STAR_EQ] = ACTIONS(6098), + [anon_sym_SLASH_EQ] = ACTIONS(6098), + [anon_sym_PERCENT_EQ] = ACTIONS(6098), + [anon_sym_PLUS_EQ] = ACTIONS(6098), + [anon_sym_DASH_EQ] = ACTIONS(6098), + [anon_sym_LT_LT_EQ] = ACTIONS(6098), + [anon_sym_GT_GT_EQ] = ACTIONS(6098), + [anon_sym_AMP_EQ] = ACTIONS(6098), + [anon_sym_CARET_EQ] = ACTIONS(6098), + [anon_sym_PIPE_EQ] = ACTIONS(6098), + [anon_sym_and_eq] = ACTIONS(6100), + [anon_sym_or_eq] = ACTIONS(6100), + [anon_sym_xor_eq] = ACTIONS(6100), + [anon_sym_LT_EQ_GT] = ACTIONS(6098), + [anon_sym_or] = ACTIONS(6100), + [anon_sym_and] = ACTIONS(6100), + [anon_sym_bitor] = ACTIONS(6100), + [anon_sym_xor] = ACTIONS(6100), + [anon_sym_bitand] = ACTIONS(6100), + [anon_sym_not_eq] = ACTIONS(6100), + [anon_sym_DASH_DASH] = ACTIONS(6098), + [anon_sym_PLUS_PLUS] = ACTIONS(6098), + [anon_sym_DOT] = ACTIONS(6100), + [anon_sym_DOT_STAR] = ACTIONS(6098), + [anon_sym_DASH_GT] = ACTIONS(6098), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6100), + [anon_sym_decltype] = ACTIONS(6100), }, - [2237] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1920), - [sym_identifier] = ACTIONS(6019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6016), - [anon_sym_COMMA] = ACTIONS(6016), - [aux_sym_preproc_if_token2] = ACTIONS(6016), - [aux_sym_preproc_else_token1] = ACTIONS(6016), - [aux_sym_preproc_elif_token1] = ACTIONS(6019), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6016), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6016), - [anon_sym_LPAREN2] = ACTIONS(6016), - [anon_sym_DASH] = ACTIONS(6019), - [anon_sym_PLUS] = ACTIONS(6019), - [anon_sym_STAR] = ACTIONS(6019), - [anon_sym_SLASH] = ACTIONS(6019), - [anon_sym_PERCENT] = ACTIONS(6019), - [anon_sym_PIPE_PIPE] = ACTIONS(6016), - [anon_sym_AMP_AMP] = ACTIONS(6016), - [anon_sym_PIPE] = ACTIONS(6019), - [anon_sym_CARET] = ACTIONS(6019), - [anon_sym_AMP] = ACTIONS(6019), - [anon_sym_EQ_EQ] = ACTIONS(6016), - [anon_sym_BANG_EQ] = ACTIONS(6016), - [anon_sym_GT] = ACTIONS(6019), - [anon_sym_GT_EQ] = ACTIONS(6016), - [anon_sym_LT_EQ] = ACTIONS(6019), - [anon_sym_LT] = ACTIONS(6019), - [anon_sym_LT_LT] = ACTIONS(6019), - [anon_sym_GT_GT] = ACTIONS(6019), - [anon_sym_LBRACE] = ACTIONS(6016), - [anon_sym_signed] = ACTIONS(5734), - [anon_sym_unsigned] = ACTIONS(5734), - [anon_sym_long] = ACTIONS(5734), - [anon_sym_short] = ACTIONS(5734), - [anon_sym_LBRACK] = ACTIONS(6016), - [anon_sym_EQ] = ACTIONS(6019), - [sym_primitive_type] = ACTIONS(5699), - [anon_sym_QMARK] = ACTIONS(6016), - [anon_sym_STAR_EQ] = ACTIONS(6016), - [anon_sym_SLASH_EQ] = ACTIONS(6016), - [anon_sym_PERCENT_EQ] = ACTIONS(6016), - [anon_sym_PLUS_EQ] = ACTIONS(6016), - [anon_sym_DASH_EQ] = ACTIONS(6016), - [anon_sym_LT_LT_EQ] = ACTIONS(6016), - [anon_sym_GT_GT_EQ] = ACTIONS(6016), - [anon_sym_AMP_EQ] = ACTIONS(6016), - [anon_sym_CARET_EQ] = ACTIONS(6016), - [anon_sym_PIPE_EQ] = ACTIONS(6016), - [anon_sym_and_eq] = ACTIONS(6019), - [anon_sym_or_eq] = ACTIONS(6019), - [anon_sym_xor_eq] = ACTIONS(6019), - [anon_sym_LT_EQ_GT] = ACTIONS(6016), - [anon_sym_or] = ACTIONS(6019), - [anon_sym_and] = ACTIONS(6019), - [anon_sym_bitor] = ACTIONS(6019), - [anon_sym_xor] = ACTIONS(6019), - [anon_sym_bitand] = ACTIONS(6019), - [anon_sym_not_eq] = ACTIONS(6019), - [anon_sym_DASH_DASH] = ACTIONS(6016), - [anon_sym_PLUS_PLUS] = ACTIONS(6016), - [anon_sym_DOT] = ACTIONS(6019), - [anon_sym_DOT_STAR] = ACTIONS(6016), - [anon_sym_DASH_GT] = ACTIONS(6016), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6019), - [anon_sym_decltype] = ACTIONS(6019), + [2191] = { + [sym_attribute_specifier] = STATE(2328), + [ts_builtin_sym_end] = ACTIONS(6102), + [sym_identifier] = ACTIONS(6104), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6102), + [anon_sym_COMMA] = ACTIONS(6102), + [anon_sym_RPAREN] = ACTIONS(6102), + [aux_sym_preproc_if_token2] = ACTIONS(6102), + [aux_sym_preproc_else_token1] = ACTIONS(6102), + [aux_sym_preproc_elif_token1] = ACTIONS(6104), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6102), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6102), + [anon_sym_LPAREN2] = ACTIONS(6102), + [anon_sym_DASH] = ACTIONS(6104), + [anon_sym_PLUS] = ACTIONS(6104), + [anon_sym_STAR] = ACTIONS(6104), + [anon_sym_SLASH] = ACTIONS(6104), + [anon_sym_PERCENT] = ACTIONS(6104), + [anon_sym_PIPE_PIPE] = ACTIONS(6102), + [anon_sym_AMP_AMP] = ACTIONS(6102), + [anon_sym_PIPE] = ACTIONS(6104), + [anon_sym_CARET] = ACTIONS(6104), + [anon_sym_AMP] = ACTIONS(6104), + [anon_sym_EQ_EQ] = ACTIONS(6102), + [anon_sym_BANG_EQ] = ACTIONS(6102), + [anon_sym_GT] = ACTIONS(6104), + [anon_sym_GT_EQ] = ACTIONS(6102), + [anon_sym_LT_EQ] = ACTIONS(6104), + [anon_sym_LT] = ACTIONS(6104), + [anon_sym_LT_LT] = ACTIONS(6104), + [anon_sym_GT_GT] = ACTIONS(6104), + [anon_sym_SEMI] = ACTIONS(6102), + [anon_sym___attribute__] = ACTIONS(5698), + [anon_sym_LBRACE] = ACTIONS(6102), + [anon_sym_RBRACE] = ACTIONS(6102), + [anon_sym_LBRACK] = ACTIONS(6102), + [anon_sym_RBRACK] = ACTIONS(6102), + [anon_sym_EQ] = ACTIONS(6104), + [anon_sym_COLON] = ACTIONS(6102), + [anon_sym_QMARK] = ACTIONS(6102), + [anon_sym_STAR_EQ] = ACTIONS(6102), + [anon_sym_SLASH_EQ] = ACTIONS(6102), + [anon_sym_PERCENT_EQ] = ACTIONS(6102), + [anon_sym_PLUS_EQ] = ACTIONS(6102), + [anon_sym_DASH_EQ] = ACTIONS(6102), + [anon_sym_LT_LT_EQ] = ACTIONS(6102), + [anon_sym_GT_GT_EQ] = ACTIONS(6102), + [anon_sym_AMP_EQ] = ACTIONS(6102), + [anon_sym_CARET_EQ] = ACTIONS(6102), + [anon_sym_PIPE_EQ] = ACTIONS(6102), + [anon_sym_and_eq] = ACTIONS(6104), + [anon_sym_or_eq] = ACTIONS(6104), + [anon_sym_xor_eq] = ACTIONS(6104), + [anon_sym_LT_EQ_GT] = ACTIONS(6102), + [anon_sym_or] = ACTIONS(6104), + [anon_sym_and] = ACTIONS(6104), + [anon_sym_bitor] = ACTIONS(6104), + [anon_sym_xor] = ACTIONS(6104), + [anon_sym_bitand] = ACTIONS(6104), + [anon_sym_not_eq] = ACTIONS(6104), + [anon_sym_DASH_DASH] = ACTIONS(6102), + [anon_sym_PLUS_PLUS] = ACTIONS(6102), + [anon_sym_DOT] = ACTIONS(6104), + [anon_sym_DOT_STAR] = ACTIONS(6102), + [anon_sym_DASH_GT] = ACTIONS(6102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6104), + [anon_sym_decltype] = ACTIONS(6104), }, - [2238] = { - [sym_identifier] = ACTIONS(3101), - [aux_sym_preproc_def_token1] = ACTIONS(3101), - [aux_sym_preproc_if_token1] = ACTIONS(3101), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3101), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3101), - [sym_preproc_directive] = ACTIONS(3101), - [anon_sym_LPAREN2] = ACTIONS(3103), - [anon_sym_TILDE] = ACTIONS(3103), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_AMP_AMP] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym___extension__] = ACTIONS(3101), - [anon_sym_typedef] = ACTIONS(3101), - [anon_sym_extern] = ACTIONS(3101), - [anon_sym___attribute__] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(3103), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3103), - [anon_sym___declspec] = ACTIONS(3101), - [anon_sym___based] = ACTIONS(3101), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_signed] = ACTIONS(3101), - [anon_sym_unsigned] = ACTIONS(3101), - [anon_sym_long] = ACTIONS(3101), - [anon_sym_short] = ACTIONS(3101), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_static] = ACTIONS(3101), - [anon_sym_register] = ACTIONS(3101), - [anon_sym_inline] = ACTIONS(3101), - [anon_sym___inline] = ACTIONS(3101), - [anon_sym___inline__] = ACTIONS(3101), - [anon_sym___forceinline] = ACTIONS(3101), - [anon_sym_thread_local] = ACTIONS(3101), - [anon_sym___thread] = ACTIONS(3101), - [anon_sym_const] = ACTIONS(3101), - [anon_sym_constexpr] = ACTIONS(3101), - [anon_sym_volatile] = ACTIONS(3101), - [anon_sym_restrict] = ACTIONS(3101), - [anon_sym___restrict__] = ACTIONS(3101), - [anon_sym__Atomic] = ACTIONS(3101), - [anon_sym__Noreturn] = ACTIONS(3101), - [anon_sym_noreturn] = ACTIONS(3101), - [anon_sym_mutable] = ACTIONS(3101), - [anon_sym_constinit] = ACTIONS(3101), - [anon_sym_consteval] = ACTIONS(3101), - [sym_primitive_type] = ACTIONS(3101), - [anon_sym_enum] = ACTIONS(3101), - [anon_sym_class] = ACTIONS(3101), - [anon_sym_struct] = ACTIONS(3101), - [anon_sym_union] = ACTIONS(3101), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3101), - [anon_sym_decltype] = ACTIONS(3101), - [anon_sym_virtual] = ACTIONS(3101), - [anon_sym_alignas] = ACTIONS(3101), - [anon_sym_explicit] = ACTIONS(3101), - [anon_sym_typename] = ACTIONS(3101), - [anon_sym_template] = ACTIONS(3101), - [anon_sym_operator] = ACTIONS(3101), - [anon_sym_friend] = ACTIONS(3101), - [anon_sym_public] = ACTIONS(3101), - [anon_sym_private] = ACTIONS(3101), - [anon_sym_protected] = ACTIONS(3101), - [anon_sym_using] = ACTIONS(3101), - [anon_sym_static_assert] = ACTIONS(3101), - [anon_sym_catch] = ACTIONS(3101), + [2192] = { + [sym_identifier] = ACTIONS(2359), + [aux_sym_preproc_def_token1] = ACTIONS(2359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2357), + [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(2357), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_STAR] = ACTIONS(2357), + [anon_sym_AMP_AMP] = ACTIONS(2357), + [anon_sym_AMP] = ACTIONS(2359), + [anon_sym___extension__] = ACTIONS(2359), + [anon_sym_typedef] = ACTIONS(2359), + [anon_sym_extern] = ACTIONS(2359), + [anon_sym___attribute__] = ACTIONS(2359), + [anon_sym_COLON_COLON] = ACTIONS(2357), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2357), + [anon_sym___declspec] = ACTIONS(2359), + [anon_sym___based] = ACTIONS(2359), + [anon_sym_RBRACE] = ACTIONS(2357), + [anon_sym_signed] = ACTIONS(2359), + [anon_sym_unsigned] = ACTIONS(2359), + [anon_sym_long] = ACTIONS(2359), + [anon_sym_short] = ACTIONS(2359), + [anon_sym_LBRACK] = ACTIONS(2359), + [anon_sym_static] = ACTIONS(2359), + [anon_sym_register] = ACTIONS(2359), + [anon_sym_inline] = ACTIONS(2359), + [anon_sym___inline] = ACTIONS(2359), + [anon_sym___inline__] = ACTIONS(2359), + [anon_sym___forceinline] = ACTIONS(2359), + [anon_sym_thread_local] = ACTIONS(2359), + [anon_sym___thread] = ACTIONS(2359), + [anon_sym_const] = ACTIONS(2359), + [anon_sym_constexpr] = ACTIONS(2359), + [anon_sym_volatile] = ACTIONS(2359), + [anon_sym_restrict] = ACTIONS(2359), + [anon_sym___restrict__] = ACTIONS(2359), + [anon_sym__Atomic] = ACTIONS(2359), + [anon_sym__Noreturn] = ACTIONS(2359), + [anon_sym_noreturn] = ACTIONS(2359), + [anon_sym_mutable] = ACTIONS(2359), + [anon_sym_constinit] = ACTIONS(2359), + [anon_sym_consteval] = 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), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2359), + [anon_sym_decltype] = ACTIONS(2359), + [anon_sym_virtual] = ACTIONS(2359), + [anon_sym_alignas] = ACTIONS(2359), + [anon_sym_explicit] = ACTIONS(2359), + [anon_sym_typename] = ACTIONS(2359), + [anon_sym_template] = ACTIONS(2359), + [anon_sym_operator] = ACTIONS(2359), + [anon_sym_friend] = ACTIONS(2359), + [anon_sym_public] = ACTIONS(2359), + [anon_sym_private] = ACTIONS(2359), + [anon_sym_protected] = ACTIONS(2359), + [anon_sym_using] = ACTIONS(2359), + [anon_sym_static_assert] = ACTIONS(2359), + [anon_sym_catch] = ACTIONS(2359), + [sym_semgrep_metavar] = ACTIONS(2357), }, - [2239] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2228), - [sym_identifier] = ACTIONS(5998), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5996), - [anon_sym_COMMA] = ACTIONS(5996), - [aux_sym_preproc_if_token2] = ACTIONS(5996), - [aux_sym_preproc_else_token1] = ACTIONS(5996), - [aux_sym_preproc_elif_token1] = ACTIONS(5998), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5996), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5996), - [anon_sym_LPAREN2] = ACTIONS(5996), - [anon_sym_DASH] = ACTIONS(5998), - [anon_sym_PLUS] = ACTIONS(5998), - [anon_sym_STAR] = ACTIONS(5998), - [anon_sym_SLASH] = ACTIONS(5998), - [anon_sym_PERCENT] = ACTIONS(5998), - [anon_sym_PIPE_PIPE] = ACTIONS(5996), - [anon_sym_AMP_AMP] = ACTIONS(5996), - [anon_sym_PIPE] = ACTIONS(5998), - [anon_sym_CARET] = ACTIONS(5998), - [anon_sym_AMP] = ACTIONS(5998), - [anon_sym_EQ_EQ] = ACTIONS(5996), - [anon_sym_BANG_EQ] = ACTIONS(5996), - [anon_sym_GT] = ACTIONS(5998), - [anon_sym_GT_EQ] = ACTIONS(5996), - [anon_sym_LT_EQ] = ACTIONS(5998), - [anon_sym_LT] = ACTIONS(5998), - [anon_sym_LT_LT] = ACTIONS(5998), - [anon_sym_GT_GT] = ACTIONS(5998), - [anon_sym___attribute__] = ACTIONS(5998), - [anon_sym_LBRACE] = ACTIONS(5996), - [anon_sym_signed] = ACTIONS(6134), - [anon_sym_unsigned] = ACTIONS(6134), - [anon_sym_long] = ACTIONS(6134), - [anon_sym_short] = ACTIONS(6134), - [anon_sym_LBRACK] = ACTIONS(5996), - [anon_sym_EQ] = ACTIONS(5998), - [anon_sym_QMARK] = ACTIONS(5996), - [anon_sym_STAR_EQ] = ACTIONS(5996), - [anon_sym_SLASH_EQ] = ACTIONS(5996), - [anon_sym_PERCENT_EQ] = ACTIONS(5996), - [anon_sym_PLUS_EQ] = ACTIONS(5996), - [anon_sym_DASH_EQ] = ACTIONS(5996), - [anon_sym_LT_LT_EQ] = ACTIONS(5996), - [anon_sym_GT_GT_EQ] = ACTIONS(5996), - [anon_sym_AMP_EQ] = ACTIONS(5996), - [anon_sym_CARET_EQ] = ACTIONS(5996), - [anon_sym_PIPE_EQ] = ACTIONS(5996), - [anon_sym_and_eq] = ACTIONS(5998), - [anon_sym_or_eq] = ACTIONS(5998), - [anon_sym_xor_eq] = ACTIONS(5998), - [anon_sym_LT_EQ_GT] = ACTIONS(5996), - [anon_sym_or] = ACTIONS(5998), - [anon_sym_and] = ACTIONS(5998), - [anon_sym_bitor] = ACTIONS(5998), - [anon_sym_xor] = ACTIONS(5998), - [anon_sym_bitand] = ACTIONS(5998), - [anon_sym_not_eq] = ACTIONS(5998), - [anon_sym_DASH_DASH] = ACTIONS(5996), - [anon_sym_PLUS_PLUS] = ACTIONS(5996), - [anon_sym_DOT] = ACTIONS(5998), - [anon_sym_DOT_STAR] = ACTIONS(5996), - [anon_sym_DASH_GT] = ACTIONS(5996), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5998), - [anon_sym_decltype] = ACTIONS(5998), + [2193] = { + [sym_string_literal] = STATE(2193), + [sym_raw_string_literal] = STATE(2193), + [aux_sym_concatenated_string_repeat1] = STATE(2193), + [sym_identifier] = ACTIONS(6106), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5562), + [anon_sym_COMMA] = ACTIONS(5562), + [anon_sym_LPAREN2] = ACTIONS(5562), + [anon_sym_DASH] = ACTIONS(5567), + [anon_sym_PLUS] = ACTIONS(5567), + [anon_sym_STAR] = ACTIONS(5567), + [anon_sym_SLASH] = ACTIONS(5567), + [anon_sym_PERCENT] = ACTIONS(5567), + [anon_sym_PIPE_PIPE] = ACTIONS(5562), + [anon_sym_AMP_AMP] = ACTIONS(5562), + [anon_sym_PIPE] = ACTIONS(5567), + [anon_sym_CARET] = ACTIONS(5567), + [anon_sym_AMP] = ACTIONS(5567), + [anon_sym_EQ_EQ] = ACTIONS(5562), + [anon_sym_BANG_EQ] = ACTIONS(5562), + [anon_sym_GT] = ACTIONS(5567), + [anon_sym_GT_EQ] = ACTIONS(5562), + [anon_sym_LT_EQ] = ACTIONS(5567), + [anon_sym_LT] = ACTIONS(5567), + [anon_sym_LT_LT] = ACTIONS(5567), + [anon_sym_GT_GT] = ACTIONS(5567), + [anon_sym_SEMI] = ACTIONS(5562), + [anon_sym___attribute__] = ACTIONS(5567), + [anon_sym_LBRACK] = ACTIONS(5562), + [anon_sym_EQ] = ACTIONS(5567), + [anon_sym_QMARK] = ACTIONS(5562), + [anon_sym_STAR_EQ] = ACTIONS(5562), + [anon_sym_SLASH_EQ] = ACTIONS(5562), + [anon_sym_PERCENT_EQ] = ACTIONS(5562), + [anon_sym_PLUS_EQ] = ACTIONS(5562), + [anon_sym_DASH_EQ] = ACTIONS(5562), + [anon_sym_LT_LT_EQ] = ACTIONS(5562), + [anon_sym_GT_GT_EQ] = ACTIONS(5562), + [anon_sym_AMP_EQ] = ACTIONS(5562), + [anon_sym_CARET_EQ] = ACTIONS(5562), + [anon_sym_PIPE_EQ] = ACTIONS(5562), + [anon_sym_and_eq] = ACTIONS(5567), + [anon_sym_or_eq] = ACTIONS(5567), + [anon_sym_xor_eq] = ACTIONS(5567), + [anon_sym_LT_EQ_GT] = ACTIONS(5562), + [anon_sym_or] = ACTIONS(5567), + [anon_sym_and] = ACTIONS(5567), + [anon_sym_bitor] = ACTIONS(5567), + [anon_sym_xor] = ACTIONS(5567), + [anon_sym_bitand] = ACTIONS(5567), + [anon_sym_not_eq] = ACTIONS(5567), + [anon_sym_DASH_DASH] = ACTIONS(5562), + [anon_sym_PLUS_PLUS] = ACTIONS(5562), + [anon_sym_DOT] = ACTIONS(5567), + [anon_sym_DOT_STAR] = ACTIONS(5562), + [anon_sym_DASH_GT] = ACTIONS(5562), + [anon_sym_L_DQUOTE] = ACTIONS(6109), + [anon_sym_u_DQUOTE] = ACTIONS(6109), + [anon_sym_U_DQUOTE] = ACTIONS(6109), + [anon_sym_u8_DQUOTE] = ACTIONS(6109), + [anon_sym_DQUOTE] = ACTIONS(6109), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6112), + [anon_sym_LR_DQUOTE] = ACTIONS(6112), + [anon_sym_uR_DQUOTE] = ACTIONS(6112), + [anon_sym_UR_DQUOTE] = ACTIONS(6112), + [anon_sym_u8R_DQUOTE] = ACTIONS(6112), + [sym_literal_suffix] = ACTIONS(5567), }, - [2240] = { - [sym_string_literal] = STATE(2071), - [sym_raw_string_literal] = STATE(2071), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(4829), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym___attribute__] = ACTIONS(4837), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_EQ] = ACTIONS(4837), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(4829), - [anon_sym_SLASH_EQ] = ACTIONS(4829), - [anon_sym_PERCENT_EQ] = ACTIONS(4829), - [anon_sym_PLUS_EQ] = ACTIONS(4829), - [anon_sym_DASH_EQ] = ACTIONS(4829), - [anon_sym_LT_LT_EQ] = ACTIONS(4829), - [anon_sym_GT_GT_EQ] = ACTIONS(4829), - [anon_sym_AMP_EQ] = ACTIONS(4829), - [anon_sym_CARET_EQ] = ACTIONS(4829), - [anon_sym_PIPE_EQ] = ACTIONS(4829), - [anon_sym_and_eq] = ACTIONS(4837), - [anon_sym_or_eq] = ACTIONS(4837), - [anon_sym_xor_eq] = ACTIONS(4837), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4837), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4837), - [anon_sym_not_eq] = ACTIONS(4837), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(5972), - [anon_sym_u_DQUOTE] = ACTIONS(5972), - [anon_sym_U_DQUOTE] = ACTIONS(5972), - [anon_sym_u8_DQUOTE] = ACTIONS(5972), - [anon_sym_DQUOTE] = ACTIONS(5972), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5974), - [anon_sym_LR_DQUOTE] = ACTIONS(5974), - [anon_sym_uR_DQUOTE] = ACTIONS(5974), - [anon_sym_UR_DQUOTE] = ACTIONS(5974), - [anon_sym_u8R_DQUOTE] = ACTIONS(5974), - [sym_literal_suffix] = ACTIONS(5790), + [2194] = { + [sym_template_argument_list] = STATE(2048), + [aux_sym_sized_type_specifier_repeat1] = STATE(2477), + [ts_builtin_sym_end] = ACTIONS(4771), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4771), + [anon_sym_COMMA] = ACTIONS(4771), + [anon_sym_RPAREN] = ACTIONS(4771), + [anon_sym_LPAREN2] = ACTIONS(4771), + [anon_sym_DASH] = ACTIONS(4763), + [anon_sym_PLUS] = ACTIONS(4763), + [anon_sym_STAR] = ACTIONS(4763), + [anon_sym_SLASH] = ACTIONS(4763), + [anon_sym_PERCENT] = ACTIONS(4763), + [anon_sym_PIPE_PIPE] = ACTIONS(4771), + [anon_sym_AMP_AMP] = ACTIONS(4771), + [anon_sym_PIPE] = ACTIONS(4763), + [anon_sym_CARET] = ACTIONS(4763), + [anon_sym_AMP] = ACTIONS(4763), + [anon_sym_EQ_EQ] = ACTIONS(4771), + [anon_sym_BANG_EQ] = ACTIONS(4771), + [anon_sym_GT] = ACTIONS(4763), + [anon_sym_GT_EQ] = ACTIONS(4771), + [anon_sym_LT_EQ] = ACTIONS(4763), + [anon_sym_LT] = ACTIONS(6115), + [anon_sym_LT_LT] = ACTIONS(4763), + [anon_sym_GT_GT] = ACTIONS(4763), + [anon_sym_SEMI] = ACTIONS(4771), + [anon_sym___attribute__] = ACTIONS(4771), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(4771), + [anon_sym_RBRACE] = ACTIONS(4771), + [anon_sym_signed] = ACTIONS(6117), + [anon_sym_unsigned] = ACTIONS(6117), + [anon_sym_long] = ACTIONS(6117), + [anon_sym_short] = ACTIONS(6117), + [anon_sym_LBRACK] = ACTIONS(4771), + [anon_sym_RBRACK] = ACTIONS(4771), + [anon_sym_EQ] = ACTIONS(4763), + [anon_sym_COLON] = ACTIONS(4763), + [anon_sym_QMARK] = ACTIONS(4771), + [anon_sym_STAR_EQ] = ACTIONS(4771), + [anon_sym_SLASH_EQ] = ACTIONS(4771), + [anon_sym_PERCENT_EQ] = ACTIONS(4771), + [anon_sym_PLUS_EQ] = ACTIONS(4771), + [anon_sym_DASH_EQ] = ACTIONS(4771), + [anon_sym_LT_LT_EQ] = ACTIONS(4771), + [anon_sym_GT_GT_EQ] = ACTIONS(4771), + [anon_sym_AMP_EQ] = ACTIONS(4771), + [anon_sym_CARET_EQ] = ACTIONS(4771), + [anon_sym_PIPE_EQ] = ACTIONS(4771), + [anon_sym_and_eq] = ACTIONS(4771), + [anon_sym_or_eq] = ACTIONS(4771), + [anon_sym_xor_eq] = ACTIONS(4771), + [anon_sym_LT_EQ_GT] = ACTIONS(4771), + [anon_sym_or] = ACTIONS(4763), + [anon_sym_and] = ACTIONS(4763), + [anon_sym_bitor] = ACTIONS(4771), + [anon_sym_xor] = ACTIONS(4763), + [anon_sym_bitand] = ACTIONS(4771), + [anon_sym_not_eq] = ACTIONS(4771), + [anon_sym_DASH_DASH] = ACTIONS(4771), + [anon_sym_PLUS_PLUS] = ACTIONS(4771), + [anon_sym_DOT] = ACTIONS(4763), + [anon_sym_DOT_STAR] = ACTIONS(4771), + [anon_sym_DASH_GT] = ACTIONS(4771), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4771), + [anon_sym_decltype] = ACTIONS(4771), }, - [2241] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2222), - [ts_builtin_sym_end] = ACTIONS(6005), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6005), - [anon_sym_COMMA] = ACTIONS(6005), - [anon_sym_RPAREN] = ACTIONS(6005), - [anon_sym_LPAREN2] = ACTIONS(6005), - [anon_sym_DASH] = ACTIONS(6007), - [anon_sym_PLUS] = ACTIONS(6007), - [anon_sym_STAR] = ACTIONS(6007), - [anon_sym_SLASH] = ACTIONS(6007), - [anon_sym_PERCENT] = ACTIONS(6007), - [anon_sym_PIPE_PIPE] = ACTIONS(6005), - [anon_sym_AMP_AMP] = ACTIONS(6005), - [anon_sym_PIPE] = ACTIONS(6007), - [anon_sym_CARET] = ACTIONS(6007), - [anon_sym_AMP] = ACTIONS(6007), - [anon_sym_EQ_EQ] = ACTIONS(6005), - [anon_sym_BANG_EQ] = ACTIONS(6005), - [anon_sym_GT] = ACTIONS(6007), - [anon_sym_GT_EQ] = ACTIONS(6005), - [anon_sym_LT_EQ] = ACTIONS(6007), - [anon_sym_LT] = ACTIONS(6007), - [anon_sym_LT_LT] = ACTIONS(6007), - [anon_sym_GT_GT] = ACTIONS(6007), - [anon_sym_SEMI] = ACTIONS(6005), - [anon_sym___attribute__] = ACTIONS(6005), - [anon_sym_LBRACE] = ACTIONS(6005), - [anon_sym_RBRACE] = ACTIONS(6005), - [anon_sym_signed] = ACTIONS(6193), - [anon_sym_unsigned] = ACTIONS(6193), - [anon_sym_long] = ACTIONS(6193), - [anon_sym_short] = ACTIONS(6193), - [anon_sym_LBRACK] = ACTIONS(6005), - [anon_sym_RBRACK] = ACTIONS(6005), - [anon_sym_EQ] = ACTIONS(6007), - [anon_sym_COLON] = ACTIONS(6005), - [anon_sym_QMARK] = ACTIONS(6005), - [anon_sym_STAR_EQ] = ACTIONS(6005), - [anon_sym_SLASH_EQ] = ACTIONS(6005), - [anon_sym_PERCENT_EQ] = ACTIONS(6005), - [anon_sym_PLUS_EQ] = ACTIONS(6005), - [anon_sym_DASH_EQ] = ACTIONS(6005), - [anon_sym_LT_LT_EQ] = ACTIONS(6005), - [anon_sym_GT_GT_EQ] = ACTIONS(6005), - [anon_sym_AMP_EQ] = ACTIONS(6005), - [anon_sym_CARET_EQ] = ACTIONS(6005), - [anon_sym_PIPE_EQ] = ACTIONS(6005), - [anon_sym_and_eq] = ACTIONS(6005), - [anon_sym_or_eq] = ACTIONS(6005), - [anon_sym_xor_eq] = ACTIONS(6005), - [anon_sym_LT_EQ_GT] = ACTIONS(6005), - [anon_sym_or] = ACTIONS(6007), - [anon_sym_and] = ACTIONS(6007), - [anon_sym_bitor] = ACTIONS(6005), - [anon_sym_xor] = ACTIONS(6007), - [anon_sym_bitand] = ACTIONS(6005), - [anon_sym_not_eq] = ACTIONS(6005), - [anon_sym_DASH_DASH] = ACTIONS(6005), - [anon_sym_PLUS_PLUS] = ACTIONS(6005), - [anon_sym_DOT] = ACTIONS(6007), - [anon_sym_DOT_STAR] = ACTIONS(6005), - [anon_sym_DASH_GT] = ACTIONS(6005), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6005), - [anon_sym_decltype] = ACTIONS(6005), + [2195] = { + [sym_identifier] = ACTIONS(5374), + [anon_sym_LPAREN2] = ACTIONS(5381), + [anon_sym_TILDE] = ACTIONS(5381), + [anon_sym_STAR] = ACTIONS(5381), + [anon_sym_PIPE_PIPE] = ACTIONS(5381), + [anon_sym_AMP_AMP] = ACTIONS(5381), + [anon_sym_AMP] = ACTIONS(5374), + [anon_sym___extension__] = ACTIONS(5374), + [anon_sym_extern] = ACTIONS(5374), + [anon_sym___attribute__] = ACTIONS(5374), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5381), + [anon_sym___declspec] = ACTIONS(5374), + [anon_sym___based] = ACTIONS(5374), + [anon_sym___cdecl] = ACTIONS(5374), + [anon_sym___clrcall] = ACTIONS(5374), + [anon_sym___stdcall] = ACTIONS(5374), + [anon_sym___fastcall] = ACTIONS(5374), + [anon_sym___thiscall] = ACTIONS(5374), + [anon_sym___vectorcall] = ACTIONS(5374), + [anon_sym_LBRACE] = ACTIONS(5381), + [anon_sym_signed] = ACTIONS(5374), + [anon_sym_unsigned] = ACTIONS(5374), + [anon_sym_long] = ACTIONS(5374), + [anon_sym_short] = ACTIONS(5374), + [anon_sym_LBRACK] = ACTIONS(5374), + [anon_sym_static] = ACTIONS(5374), + [anon_sym_register] = ACTIONS(5374), + [anon_sym_inline] = ACTIONS(5374), + [anon_sym___inline] = ACTIONS(5374), + [anon_sym___inline__] = ACTIONS(5374), + [anon_sym___forceinline] = ACTIONS(5374), + [anon_sym_thread_local] = ACTIONS(5374), + [anon_sym___thread] = ACTIONS(5374), + [anon_sym_const] = ACTIONS(5374), + [anon_sym_constexpr] = ACTIONS(5374), + [anon_sym_volatile] = ACTIONS(5374), + [anon_sym_restrict] = ACTIONS(5374), + [anon_sym___restrict__] = ACTIONS(5374), + [anon_sym__Atomic] = ACTIONS(5374), + [anon_sym__Noreturn] = ACTIONS(5374), + [anon_sym_noreturn] = ACTIONS(5374), + [anon_sym_mutable] = ACTIONS(5374), + [anon_sym_constinit] = ACTIONS(5374), + [anon_sym_consteval] = ACTIONS(5374), + [sym_primitive_type] = ACTIONS(5374), + [anon_sym_enum] = ACTIONS(5374), + [anon_sym_class] = ACTIONS(5374), + [anon_sym_struct] = ACTIONS(5374), + [anon_sym_union] = ACTIONS(5374), + [anon_sym_COLON] = ACTIONS(5374), + [anon_sym_or] = ACTIONS(5374), + [anon_sym_and] = ACTIONS(5374), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5374), + [anon_sym_decltype] = ACTIONS(5374), + [anon_sym_final] = ACTIONS(5374), + [anon_sym_override] = ACTIONS(5374), + [anon_sym_virtual] = ACTIONS(5374), + [anon_sym_alignas] = ACTIONS(5374), + [anon_sym_explicit] = ACTIONS(5374), + [anon_sym_typename] = ACTIONS(5374), + [anon_sym_template] = ACTIONS(5374), + [anon_sym_operator] = ACTIONS(5374), + [anon_sym_friend] = ACTIONS(5374), + [anon_sym_using] = ACTIONS(5374), + [anon_sym_concept] = ACTIONS(5374), }, - [2242] = { - [sym_identifier] = ACTIONS(5683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5681), - [anon_sym_COMMA] = ACTIONS(5681), - [aux_sym_preproc_if_token2] = ACTIONS(5681), - [aux_sym_preproc_else_token1] = ACTIONS(5681), - [aux_sym_preproc_elif_token1] = ACTIONS(5681), - [anon_sym_LPAREN2] = ACTIONS(5681), - [anon_sym_DASH] = ACTIONS(5683), - [anon_sym_PLUS] = ACTIONS(5683), - [anon_sym_STAR] = ACTIONS(5683), - [anon_sym_SLASH] = ACTIONS(5683), - [anon_sym_PERCENT] = ACTIONS(5683), - [anon_sym_PIPE_PIPE] = ACTIONS(5681), - [anon_sym_AMP_AMP] = ACTIONS(5681), - [anon_sym_PIPE] = ACTIONS(5683), - [anon_sym_CARET] = ACTIONS(5683), - [anon_sym_AMP] = ACTIONS(5683), - [anon_sym_EQ_EQ] = ACTIONS(5681), - [anon_sym_BANG_EQ] = ACTIONS(5681), - [anon_sym_GT] = ACTIONS(5683), - [anon_sym_GT_EQ] = ACTIONS(5681), - [anon_sym_LT_EQ] = ACTIONS(5683), - [anon_sym_LT] = ACTIONS(5683), - [anon_sym_LT_LT] = ACTIONS(5683), - [anon_sym_GT_GT] = ACTIONS(5683), - [anon_sym_LBRACK] = ACTIONS(5681), - [anon_sym_EQ] = ACTIONS(5683), - [anon_sym_QMARK] = ACTIONS(5681), - [anon_sym_STAR_EQ] = ACTIONS(5681), - [anon_sym_SLASH_EQ] = ACTIONS(5681), - [anon_sym_PERCENT_EQ] = ACTIONS(5681), - [anon_sym_PLUS_EQ] = ACTIONS(5681), - [anon_sym_DASH_EQ] = ACTIONS(5681), - [anon_sym_LT_LT_EQ] = ACTIONS(5681), - [anon_sym_GT_GT_EQ] = ACTIONS(5681), - [anon_sym_AMP_EQ] = ACTIONS(5681), - [anon_sym_CARET_EQ] = ACTIONS(5681), - [anon_sym_PIPE_EQ] = ACTIONS(5681), - [anon_sym_and_eq] = ACTIONS(5683), - [anon_sym_or_eq] = ACTIONS(5683), - [anon_sym_xor_eq] = ACTIONS(5683), - [anon_sym_LT_EQ_GT] = ACTIONS(5681), - [anon_sym_or] = ACTIONS(5683), - [anon_sym_and] = ACTIONS(5683), - [anon_sym_bitor] = ACTIONS(5683), - [anon_sym_xor] = ACTIONS(5683), - [anon_sym_bitand] = ACTIONS(5683), - [anon_sym_not_eq] = ACTIONS(5683), - [anon_sym_DASH_DASH] = ACTIONS(5681), - [anon_sym_PLUS_PLUS] = ACTIONS(5681), - [anon_sym_DOT] = ACTIONS(5683), - [anon_sym_DOT_STAR] = ACTIONS(5681), - [anon_sym_DASH_GT] = ACTIONS(5681), - [anon_sym_L_DQUOTE] = ACTIONS(5681), - [anon_sym_u_DQUOTE] = ACTIONS(5681), - [anon_sym_U_DQUOTE] = ACTIONS(5681), - [anon_sym_u8_DQUOTE] = ACTIONS(5681), - [anon_sym_DQUOTE] = ACTIONS(5681), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5681), - [anon_sym_LR_DQUOTE] = ACTIONS(5681), - [anon_sym_uR_DQUOTE] = ACTIONS(5681), - [anon_sym_UR_DQUOTE] = ACTIONS(5681), - [anon_sym_u8R_DQUOTE] = ACTIONS(5681), - [sym_literal_suffix] = ACTIONS(5683), + [2196] = { + [sym_string_literal] = STATE(2729), + [sym_template_argument_list] = STATE(4089), + [sym_raw_string_literal] = STATE(2729), + [aux_sym_structured_binding_declarator_repeat1] = STATE(8518), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(6119), + [anon_sym_LPAREN2] = ACTIONS(4765), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4773), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4773), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(5946), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_RBRACK] = ACTIONS(6121), + [anon_sym_EQ] = ACTIONS(6124), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(6126), + [anon_sym_SLASH_EQ] = ACTIONS(6126), + [anon_sym_PERCENT_EQ] = ACTIONS(6126), + [anon_sym_PLUS_EQ] = ACTIONS(6126), + [anon_sym_DASH_EQ] = ACTIONS(6126), + [anon_sym_LT_LT_EQ] = ACTIONS(6126), + [anon_sym_GT_GT_EQ] = ACTIONS(6126), + [anon_sym_AMP_EQ] = ACTIONS(6126), + [anon_sym_CARET_EQ] = ACTIONS(6126), + [anon_sym_PIPE_EQ] = ACTIONS(6126), + [anon_sym_and_eq] = ACTIONS(6126), + [anon_sym_or_eq] = ACTIONS(6126), + [anon_sym_xor_eq] = ACTIONS(6126), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4765), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4765), + [anon_sym_not_eq] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), }, - [2243] = { - [sym_identifier] = ACTIONS(5675), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5673), - [anon_sym_COMMA] = ACTIONS(5673), - [aux_sym_preproc_if_token2] = ACTIONS(5673), - [aux_sym_preproc_else_token1] = ACTIONS(5673), - [aux_sym_preproc_elif_token1] = ACTIONS(5673), - [anon_sym_LPAREN2] = ACTIONS(5673), - [anon_sym_DASH] = ACTIONS(5675), - [anon_sym_PLUS] = ACTIONS(5675), - [anon_sym_STAR] = ACTIONS(5675), - [anon_sym_SLASH] = ACTIONS(5675), - [anon_sym_PERCENT] = ACTIONS(5675), - [anon_sym_PIPE_PIPE] = ACTIONS(5673), - [anon_sym_AMP_AMP] = ACTIONS(5673), - [anon_sym_PIPE] = ACTIONS(5675), - [anon_sym_CARET] = ACTIONS(5675), - [anon_sym_AMP] = ACTIONS(5675), - [anon_sym_EQ_EQ] = ACTIONS(5673), - [anon_sym_BANG_EQ] = ACTIONS(5673), - [anon_sym_GT] = ACTIONS(5675), - [anon_sym_GT_EQ] = ACTIONS(5673), - [anon_sym_LT_EQ] = ACTIONS(5675), - [anon_sym_LT] = ACTIONS(5675), - [anon_sym_LT_LT] = ACTIONS(5675), - [anon_sym_GT_GT] = ACTIONS(5675), - [anon_sym_LBRACK] = ACTIONS(5673), - [anon_sym_EQ] = ACTIONS(5675), - [anon_sym_QMARK] = ACTIONS(5673), - [anon_sym_STAR_EQ] = ACTIONS(5673), - [anon_sym_SLASH_EQ] = ACTIONS(5673), - [anon_sym_PERCENT_EQ] = ACTIONS(5673), - [anon_sym_PLUS_EQ] = ACTIONS(5673), - [anon_sym_DASH_EQ] = ACTIONS(5673), - [anon_sym_LT_LT_EQ] = ACTIONS(5673), - [anon_sym_GT_GT_EQ] = ACTIONS(5673), - [anon_sym_AMP_EQ] = ACTIONS(5673), - [anon_sym_CARET_EQ] = ACTIONS(5673), - [anon_sym_PIPE_EQ] = ACTIONS(5673), - [anon_sym_and_eq] = ACTIONS(5675), - [anon_sym_or_eq] = ACTIONS(5675), - [anon_sym_xor_eq] = ACTIONS(5675), - [anon_sym_LT_EQ_GT] = ACTIONS(5673), - [anon_sym_or] = ACTIONS(5675), - [anon_sym_and] = ACTIONS(5675), - [anon_sym_bitor] = ACTIONS(5675), - [anon_sym_xor] = ACTIONS(5675), - [anon_sym_bitand] = ACTIONS(5675), - [anon_sym_not_eq] = ACTIONS(5675), - [anon_sym_DASH_DASH] = ACTIONS(5673), - [anon_sym_PLUS_PLUS] = ACTIONS(5673), - [anon_sym_DOT] = ACTIONS(5675), - [anon_sym_DOT_STAR] = ACTIONS(5673), - [anon_sym_DASH_GT] = ACTIONS(5673), - [anon_sym_L_DQUOTE] = ACTIONS(5673), - [anon_sym_u_DQUOTE] = ACTIONS(5673), - [anon_sym_U_DQUOTE] = ACTIONS(5673), - [anon_sym_u8_DQUOTE] = ACTIONS(5673), - [anon_sym_DQUOTE] = ACTIONS(5673), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5673), - [anon_sym_LR_DQUOTE] = ACTIONS(5673), - [anon_sym_uR_DQUOTE] = ACTIONS(5673), - [anon_sym_UR_DQUOTE] = ACTIONS(5673), - [anon_sym_u8R_DQUOTE] = ACTIONS(5673), - [sym_literal_suffix] = ACTIONS(5675), + [2197] = { + [sym_identifier] = ACTIONS(5936), + [anon_sym_LPAREN2] = ACTIONS(5934), + [anon_sym_TILDE] = ACTIONS(5934), + [anon_sym_STAR] = ACTIONS(5934), + [anon_sym_PIPE_PIPE] = ACTIONS(5934), + [anon_sym_AMP_AMP] = ACTIONS(5934), + [anon_sym_AMP] = ACTIONS(5936), + [anon_sym___extension__] = ACTIONS(5936), + [anon_sym_extern] = ACTIONS(5936), + [anon_sym___attribute__] = ACTIONS(5936), + [anon_sym_COLON_COLON] = ACTIONS(5934), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5934), + [anon_sym___declspec] = ACTIONS(5936), + [anon_sym___based] = ACTIONS(5936), + [anon_sym___cdecl] = ACTIONS(5936), + [anon_sym___clrcall] = ACTIONS(5936), + [anon_sym___stdcall] = ACTIONS(5936), + [anon_sym___fastcall] = ACTIONS(5936), + [anon_sym___thiscall] = ACTIONS(5936), + [anon_sym___vectorcall] = ACTIONS(5936), + [anon_sym_LBRACE] = ACTIONS(5934), + [anon_sym_signed] = ACTIONS(5936), + [anon_sym_unsigned] = ACTIONS(5936), + [anon_sym_long] = ACTIONS(5936), + [anon_sym_short] = ACTIONS(5936), + [anon_sym_LBRACK] = ACTIONS(5936), + [anon_sym_static] = ACTIONS(5936), + [anon_sym_register] = ACTIONS(5936), + [anon_sym_inline] = ACTIONS(5936), + [anon_sym___inline] = ACTIONS(5936), + [anon_sym___inline__] = ACTIONS(5936), + [anon_sym___forceinline] = ACTIONS(5936), + [anon_sym_thread_local] = ACTIONS(5936), + [anon_sym___thread] = ACTIONS(5936), + [anon_sym_const] = ACTIONS(5936), + [anon_sym_constexpr] = ACTIONS(5936), + [anon_sym_volatile] = ACTIONS(5936), + [anon_sym_restrict] = ACTIONS(5936), + [anon_sym___restrict__] = ACTIONS(5936), + [anon_sym__Atomic] = ACTIONS(5936), + [anon_sym__Noreturn] = ACTIONS(5936), + [anon_sym_noreturn] = ACTIONS(5936), + [anon_sym_mutable] = ACTIONS(5936), + [anon_sym_constinit] = ACTIONS(5936), + [anon_sym_consteval] = ACTIONS(5936), + [sym_primitive_type] = ACTIONS(5936), + [anon_sym_enum] = ACTIONS(5936), + [anon_sym_class] = ACTIONS(5936), + [anon_sym_struct] = ACTIONS(5936), + [anon_sym_union] = ACTIONS(5936), + [anon_sym_COLON] = ACTIONS(5936), + [anon_sym_or] = ACTIONS(5936), + [anon_sym_and] = ACTIONS(5936), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5936), + [anon_sym_decltype] = ACTIONS(5936), + [anon_sym_final] = ACTIONS(5936), + [anon_sym_override] = ACTIONS(5936), + [anon_sym_virtual] = ACTIONS(5936), + [anon_sym_alignas] = ACTIONS(5936), + [anon_sym_explicit] = ACTIONS(5936), + [anon_sym_typename] = ACTIONS(5936), + [anon_sym_template] = ACTIONS(5936), + [anon_sym_operator] = ACTIONS(5936), + [anon_sym_friend] = ACTIONS(5936), + [anon_sym_using] = ACTIONS(5936), + [anon_sym_concept] = ACTIONS(5936), }, - [2244] = { - [sym_template_argument_list] = STATE(6753), - [aux_sym_sized_type_specifier_repeat1] = STATE(2530), - [sym_identifier] = ACTIONS(5957), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5959), - [anon_sym_COMMA] = ACTIONS(5959), - [aux_sym_preproc_if_token2] = ACTIONS(5959), - [aux_sym_preproc_else_token1] = ACTIONS(5959), - [aux_sym_preproc_elif_token1] = ACTIONS(5959), - [anon_sym_LPAREN2] = ACTIONS(5959), - [anon_sym_DASH] = ACTIONS(5957), - [anon_sym_PLUS] = ACTIONS(5957), - [anon_sym_STAR] = ACTIONS(5957), - [anon_sym_SLASH] = ACTIONS(5957), - [anon_sym_PERCENT] = ACTIONS(5957), - [anon_sym_PIPE_PIPE] = ACTIONS(5959), - [anon_sym_AMP_AMP] = ACTIONS(5959), - [anon_sym_PIPE] = ACTIONS(5957), - [anon_sym_CARET] = ACTIONS(5957), - [anon_sym_AMP] = ACTIONS(5957), - [anon_sym_EQ_EQ] = ACTIONS(5959), - [anon_sym_BANG_EQ] = ACTIONS(5959), - [anon_sym_GT] = ACTIONS(5957), - [anon_sym_GT_EQ] = ACTIONS(5959), - [anon_sym_LT_EQ] = ACTIONS(5957), - [anon_sym_LT] = ACTIONS(5957), - [anon_sym_LT_LT] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5957), - [anon_sym___attribute__] = ACTIONS(5957), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(5959), - [anon_sym_signed] = ACTIONS(6195), - [anon_sym_unsigned] = ACTIONS(6195), - [anon_sym_long] = ACTIONS(6195), - [anon_sym_short] = ACTIONS(6195), - [anon_sym_LBRACK] = ACTIONS(5959), - [anon_sym_EQ] = ACTIONS(5957), - [anon_sym_QMARK] = ACTIONS(5959), - [anon_sym_STAR_EQ] = ACTIONS(5959), - [anon_sym_SLASH_EQ] = ACTIONS(5959), - [anon_sym_PERCENT_EQ] = ACTIONS(5959), - [anon_sym_PLUS_EQ] = ACTIONS(5959), - [anon_sym_DASH_EQ] = ACTIONS(5959), - [anon_sym_LT_LT_EQ] = ACTIONS(5959), - [anon_sym_GT_GT_EQ] = ACTIONS(5959), - [anon_sym_AMP_EQ] = ACTIONS(5959), - [anon_sym_CARET_EQ] = ACTIONS(5959), - [anon_sym_PIPE_EQ] = ACTIONS(5959), - [anon_sym_and_eq] = ACTIONS(5957), - [anon_sym_or_eq] = ACTIONS(5957), - [anon_sym_xor_eq] = ACTIONS(5957), - [anon_sym_LT_EQ_GT] = ACTIONS(5959), - [anon_sym_or] = ACTIONS(5957), - [anon_sym_and] = ACTIONS(5957), - [anon_sym_bitor] = ACTIONS(5957), - [anon_sym_xor] = ACTIONS(5957), - [anon_sym_bitand] = ACTIONS(5957), - [anon_sym_not_eq] = ACTIONS(5957), - [anon_sym_DASH_DASH] = ACTIONS(5959), - [anon_sym_PLUS_PLUS] = ACTIONS(5959), - [anon_sym_DOT] = ACTIONS(5957), - [anon_sym_DOT_STAR] = ACTIONS(5959), - [anon_sym_DASH_GT] = ACTIONS(5959), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5957), - [anon_sym_decltype] = ACTIONS(5957), + [2198] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2051), + [ts_builtin_sym_end] = ACTIONS(6128), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6128), + [anon_sym_COMMA] = ACTIONS(6128), + [anon_sym_RPAREN] = ACTIONS(6128), + [anon_sym_LPAREN2] = ACTIONS(6128), + [anon_sym_DASH] = ACTIONS(6130), + [anon_sym_PLUS] = ACTIONS(6130), + [anon_sym_STAR] = ACTIONS(6128), + [anon_sym_SLASH] = ACTIONS(6130), + [anon_sym_PERCENT] = ACTIONS(6128), + [anon_sym_PIPE_PIPE] = ACTIONS(6128), + [anon_sym_AMP_AMP] = ACTIONS(6128), + [anon_sym_PIPE] = ACTIONS(6130), + [anon_sym_CARET] = ACTIONS(6128), + [anon_sym_AMP] = ACTIONS(6130), + [anon_sym_EQ_EQ] = ACTIONS(6128), + [anon_sym_BANG_EQ] = ACTIONS(6128), + [anon_sym_GT] = ACTIONS(6130), + [anon_sym_GT_EQ] = ACTIONS(6128), + [anon_sym_LT_EQ] = ACTIONS(6130), + [anon_sym_LT] = ACTIONS(6130), + [anon_sym_LT_LT] = ACTIONS(6128), + [anon_sym_GT_GT] = ACTIONS(6128), + [anon_sym_SEMI] = ACTIONS(6128), + [anon_sym___extension__] = ACTIONS(6128), + [anon_sym___attribute__] = ACTIONS(6128), + [anon_sym_LBRACE] = ACTIONS(6128), + [anon_sym_RBRACE] = ACTIONS(6128), + [anon_sym_signed] = ACTIONS(6058), + [anon_sym_unsigned] = ACTIONS(6058), + [anon_sym_long] = ACTIONS(6058), + [anon_sym_short] = ACTIONS(6058), + [anon_sym_LBRACK] = ACTIONS(6128), + [anon_sym_RBRACK] = ACTIONS(6128), + [anon_sym_const] = ACTIONS(6130), + [anon_sym_constexpr] = ACTIONS(6128), + [anon_sym_volatile] = ACTIONS(6128), + [anon_sym_restrict] = ACTIONS(6128), + [anon_sym___restrict__] = ACTIONS(6128), + [anon_sym__Atomic] = ACTIONS(6128), + [anon_sym__Noreturn] = ACTIONS(6128), + [anon_sym_noreturn] = ACTIONS(6128), + [anon_sym_mutable] = ACTIONS(6128), + [anon_sym_constinit] = ACTIONS(6128), + [anon_sym_consteval] = ACTIONS(6128), + [anon_sym_COLON] = ACTIONS(6128), + [anon_sym_QMARK] = ACTIONS(6128), + [anon_sym_LT_EQ_GT] = ACTIONS(6128), + [anon_sym_or] = ACTIONS(6128), + [anon_sym_and] = ACTIONS(6128), + [anon_sym_bitor] = ACTIONS(6128), + [anon_sym_xor] = ACTIONS(6128), + [anon_sym_bitand] = ACTIONS(6128), + [anon_sym_not_eq] = ACTIONS(6128), + [anon_sym_DASH_DASH] = ACTIONS(6128), + [anon_sym_PLUS_PLUS] = ACTIONS(6128), + [anon_sym_DOT] = ACTIONS(6130), + [anon_sym_DOT_STAR] = ACTIONS(6128), + [anon_sym_DASH_GT] = ACTIONS(6128), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6128), + [anon_sym_decltype] = ACTIONS(6128), + [anon_sym_final] = ACTIONS(6128), + [anon_sym_override] = ACTIONS(6128), + [anon_sym_requires] = ACTIONS(6128), + [sym_semgrep_metavar] = ACTIONS(6128), }, - [2245] = { - [sym_identifier] = ACTIONS(5671), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5669), - [anon_sym_COMMA] = ACTIONS(5669), - [aux_sym_preproc_if_token2] = ACTIONS(5669), - [aux_sym_preproc_else_token1] = ACTIONS(5669), - [aux_sym_preproc_elif_token1] = ACTIONS(5669), - [anon_sym_LPAREN2] = ACTIONS(5669), - [anon_sym_DASH] = ACTIONS(5671), - [anon_sym_PLUS] = ACTIONS(5671), - [anon_sym_STAR] = ACTIONS(5671), - [anon_sym_SLASH] = ACTIONS(5671), - [anon_sym_PERCENT] = ACTIONS(5671), - [anon_sym_PIPE_PIPE] = ACTIONS(5669), - [anon_sym_AMP_AMP] = ACTIONS(5669), - [anon_sym_PIPE] = ACTIONS(5671), - [anon_sym_CARET] = ACTIONS(5671), - [anon_sym_AMP] = ACTIONS(5671), - [anon_sym_EQ_EQ] = ACTIONS(5669), - [anon_sym_BANG_EQ] = ACTIONS(5669), - [anon_sym_GT] = ACTIONS(5671), - [anon_sym_GT_EQ] = ACTIONS(5669), - [anon_sym_LT_EQ] = ACTIONS(5671), - [anon_sym_LT] = ACTIONS(5671), - [anon_sym_LT_LT] = ACTIONS(5671), - [anon_sym_GT_GT] = ACTIONS(5671), - [anon_sym_LBRACK] = ACTIONS(5669), - [anon_sym_EQ] = ACTIONS(5671), - [anon_sym_QMARK] = ACTIONS(5669), - [anon_sym_STAR_EQ] = ACTIONS(5669), - [anon_sym_SLASH_EQ] = ACTIONS(5669), - [anon_sym_PERCENT_EQ] = ACTIONS(5669), - [anon_sym_PLUS_EQ] = ACTIONS(5669), - [anon_sym_DASH_EQ] = ACTIONS(5669), - [anon_sym_LT_LT_EQ] = ACTIONS(5669), - [anon_sym_GT_GT_EQ] = ACTIONS(5669), - [anon_sym_AMP_EQ] = ACTIONS(5669), - [anon_sym_CARET_EQ] = ACTIONS(5669), - [anon_sym_PIPE_EQ] = ACTIONS(5669), - [anon_sym_and_eq] = ACTIONS(5671), - [anon_sym_or_eq] = ACTIONS(5671), - [anon_sym_xor_eq] = ACTIONS(5671), - [anon_sym_LT_EQ_GT] = ACTIONS(5669), - [anon_sym_or] = ACTIONS(5671), - [anon_sym_and] = ACTIONS(5671), - [anon_sym_bitor] = ACTIONS(5671), - [anon_sym_xor] = ACTIONS(5671), - [anon_sym_bitand] = ACTIONS(5671), - [anon_sym_not_eq] = ACTIONS(5671), - [anon_sym_DASH_DASH] = ACTIONS(5669), - [anon_sym_PLUS_PLUS] = ACTIONS(5669), - [anon_sym_DOT] = ACTIONS(5671), - [anon_sym_DOT_STAR] = ACTIONS(5669), - [anon_sym_DASH_GT] = ACTIONS(5669), - [anon_sym_L_DQUOTE] = ACTIONS(5669), - [anon_sym_u_DQUOTE] = ACTIONS(5669), - [anon_sym_U_DQUOTE] = ACTIONS(5669), - [anon_sym_u8_DQUOTE] = ACTIONS(5669), - [anon_sym_DQUOTE] = ACTIONS(5669), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5669), - [anon_sym_LR_DQUOTE] = ACTIONS(5669), - [anon_sym_uR_DQUOTE] = ACTIONS(5669), - [anon_sym_UR_DQUOTE] = ACTIONS(5669), - [anon_sym_u8R_DQUOTE] = ACTIONS(5669), - [sym_literal_suffix] = ACTIONS(5671), + [2199] = { + [sym_string_literal] = STATE(2729), + [sym_template_argument_list] = STATE(4089), + [sym_raw_string_literal] = STATE(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4765), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4773), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4773), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(5946), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_SEMI] = ACTIONS(4765), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_EQ] = ACTIONS(4797), + [anon_sym_COLON] = ACTIONS(4852), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4801), + [anon_sym_SLASH_EQ] = ACTIONS(4801), + [anon_sym_PERCENT_EQ] = ACTIONS(4801), + [anon_sym_PLUS_EQ] = ACTIONS(4801), + [anon_sym_DASH_EQ] = ACTIONS(4801), + [anon_sym_LT_LT_EQ] = ACTIONS(4801), + [anon_sym_GT_GT_EQ] = ACTIONS(4801), + [anon_sym_AMP_EQ] = ACTIONS(4801), + [anon_sym_CARET_EQ] = ACTIONS(4801), + [anon_sym_PIPE_EQ] = ACTIONS(4801), + [anon_sym_and_eq] = ACTIONS(4801), + [anon_sym_or_eq] = ACTIONS(4801), + [anon_sym_xor_eq] = ACTIONS(4801), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4765), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4765), + [anon_sym_not_eq] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), }, - [2246] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2254), - [ts_builtin_sym_end] = ACTIONS(6032), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6032), - [anon_sym_COMMA] = ACTIONS(6032), - [anon_sym_RPAREN] = ACTIONS(6032), - [anon_sym_LPAREN2] = ACTIONS(6032), - [anon_sym_DASH] = ACTIONS(6034), - [anon_sym_PLUS] = ACTIONS(6034), - [anon_sym_STAR] = ACTIONS(6034), - [anon_sym_SLASH] = ACTIONS(6034), - [anon_sym_PERCENT] = ACTIONS(6034), - [anon_sym_PIPE_PIPE] = ACTIONS(6032), - [anon_sym_AMP_AMP] = ACTIONS(6032), - [anon_sym_PIPE] = ACTIONS(6034), - [anon_sym_CARET] = ACTIONS(6034), - [anon_sym_AMP] = ACTIONS(6034), - [anon_sym_EQ_EQ] = ACTIONS(6032), - [anon_sym_BANG_EQ] = ACTIONS(6032), - [anon_sym_GT] = ACTIONS(6034), - [anon_sym_GT_EQ] = ACTIONS(6032), - [anon_sym_LT_EQ] = ACTIONS(6034), - [anon_sym_LT] = ACTIONS(6034), - [anon_sym_LT_LT] = ACTIONS(6034), - [anon_sym_GT_GT] = ACTIONS(6034), - [anon_sym_SEMI] = ACTIONS(6032), - [anon_sym___attribute__] = ACTIONS(6032), - [anon_sym_LBRACE] = ACTIONS(6032), - [anon_sym_RBRACE] = ACTIONS(6032), - [anon_sym_signed] = ACTIONS(6138), - [anon_sym_unsigned] = ACTIONS(6138), - [anon_sym_long] = ACTIONS(6138), - [anon_sym_short] = ACTIONS(6138), - [anon_sym_LBRACK] = ACTIONS(6032), - [anon_sym_RBRACK] = ACTIONS(6032), - [anon_sym_EQ] = ACTIONS(6034), - [anon_sym_COLON] = ACTIONS(6032), - [anon_sym_QMARK] = ACTIONS(6032), - [anon_sym_STAR_EQ] = ACTIONS(6032), - [anon_sym_SLASH_EQ] = ACTIONS(6032), - [anon_sym_PERCENT_EQ] = ACTIONS(6032), - [anon_sym_PLUS_EQ] = ACTIONS(6032), - [anon_sym_DASH_EQ] = ACTIONS(6032), - [anon_sym_LT_LT_EQ] = ACTIONS(6032), - [anon_sym_GT_GT_EQ] = ACTIONS(6032), - [anon_sym_AMP_EQ] = ACTIONS(6032), - [anon_sym_CARET_EQ] = ACTIONS(6032), - [anon_sym_PIPE_EQ] = ACTIONS(6032), - [anon_sym_and_eq] = ACTIONS(6032), - [anon_sym_or_eq] = ACTIONS(6032), - [anon_sym_xor_eq] = ACTIONS(6032), - [anon_sym_LT_EQ_GT] = ACTIONS(6032), - [anon_sym_or] = ACTIONS(6034), - [anon_sym_and] = ACTIONS(6034), - [anon_sym_bitor] = ACTIONS(6032), - [anon_sym_xor] = ACTIONS(6034), - [anon_sym_bitand] = ACTIONS(6032), - [anon_sym_not_eq] = ACTIONS(6032), - [anon_sym_DASH_DASH] = ACTIONS(6032), - [anon_sym_PLUS_PLUS] = ACTIONS(6032), - [anon_sym_DOT] = ACTIONS(6034), - [anon_sym_DOT_STAR] = ACTIONS(6032), - [anon_sym_DASH_GT] = ACTIONS(6032), + [2200] = { + [sym_attribute_declaration] = STATE(2276), + [sym_parameter_list] = STATE(2318), + [aux_sym_attributed_declarator_repeat1] = STATE(2276), + [ts_builtin_sym_end] = ACTIONS(6132), + [sym_identifier] = ACTIONS(6134), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6132), + [anon_sym_COMMA] = ACTIONS(6132), + [anon_sym_RPAREN] = ACTIONS(6132), + [aux_sym_preproc_if_token2] = ACTIONS(6132), + [aux_sym_preproc_else_token1] = ACTIONS(6132), + [aux_sym_preproc_elif_token1] = ACTIONS(6134), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6132), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6132), + [anon_sym_LPAREN2] = ACTIONS(6042), + [anon_sym_DASH] = ACTIONS(6134), + [anon_sym_PLUS] = ACTIONS(6134), + [anon_sym_STAR] = ACTIONS(6134), + [anon_sym_SLASH] = ACTIONS(6134), + [anon_sym_PERCENT] = ACTIONS(6134), + [anon_sym_PIPE_PIPE] = ACTIONS(6132), + [anon_sym_AMP_AMP] = ACTIONS(6132), + [anon_sym_PIPE] = ACTIONS(6134), + [anon_sym_CARET] = ACTIONS(6134), + [anon_sym_AMP] = ACTIONS(6134), + [anon_sym_EQ_EQ] = ACTIONS(6132), + [anon_sym_BANG_EQ] = ACTIONS(6132), + [anon_sym_GT] = ACTIONS(6134), + [anon_sym_GT_EQ] = ACTIONS(6132), + [anon_sym_LT_EQ] = ACTIONS(6134), + [anon_sym_LT] = ACTIONS(6134), + [anon_sym_LT_LT] = ACTIONS(6134), + [anon_sym_GT_GT] = ACTIONS(6134), + [anon_sym_SEMI] = ACTIONS(6132), + [anon_sym___attribute__] = ACTIONS(6134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6044), + [anon_sym_RBRACE] = ACTIONS(6132), + [anon_sym_LBRACK] = ACTIONS(6046), + [anon_sym_RBRACK] = ACTIONS(6132), + [anon_sym_EQ] = ACTIONS(6134), + [anon_sym_COLON] = ACTIONS(6132), + [anon_sym_QMARK] = ACTIONS(6132), + [anon_sym_STAR_EQ] = ACTIONS(6132), + [anon_sym_SLASH_EQ] = ACTIONS(6132), + [anon_sym_PERCENT_EQ] = ACTIONS(6132), + [anon_sym_PLUS_EQ] = ACTIONS(6132), + [anon_sym_DASH_EQ] = ACTIONS(6132), + [anon_sym_LT_LT_EQ] = ACTIONS(6132), + [anon_sym_GT_GT_EQ] = ACTIONS(6132), + [anon_sym_AMP_EQ] = ACTIONS(6132), + [anon_sym_CARET_EQ] = ACTIONS(6132), + [anon_sym_PIPE_EQ] = ACTIONS(6132), + [anon_sym_and_eq] = ACTIONS(6134), + [anon_sym_or_eq] = ACTIONS(6134), + [anon_sym_xor_eq] = ACTIONS(6134), + [anon_sym_LT_EQ_GT] = ACTIONS(6132), + [anon_sym_or] = ACTIONS(6134), + [anon_sym_and] = ACTIONS(6134), + [anon_sym_bitor] = ACTIONS(6134), + [anon_sym_xor] = ACTIONS(6134), + [anon_sym_bitand] = ACTIONS(6134), + [anon_sym_not_eq] = ACTIONS(6134), + [anon_sym_DASH_DASH] = ACTIONS(6132), + [anon_sym_PLUS_PLUS] = ACTIONS(6132), + [anon_sym_DOT] = ACTIONS(6134), + [anon_sym_DOT_STAR] = ACTIONS(6132), + [anon_sym_DASH_GT] = ACTIONS(6132), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6032), - [anon_sym_decltype] = ACTIONS(6032), }, - [2247] = { - [sym_identifier] = ACTIONS(5679), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5677), - [anon_sym_COMMA] = ACTIONS(5677), - [aux_sym_preproc_if_token2] = ACTIONS(5677), - [aux_sym_preproc_else_token1] = ACTIONS(5677), - [aux_sym_preproc_elif_token1] = ACTIONS(5677), - [anon_sym_LPAREN2] = ACTIONS(5677), - [anon_sym_DASH] = ACTIONS(5679), - [anon_sym_PLUS] = ACTIONS(5679), - [anon_sym_STAR] = ACTIONS(5679), - [anon_sym_SLASH] = ACTIONS(5679), - [anon_sym_PERCENT] = ACTIONS(5679), - [anon_sym_PIPE_PIPE] = ACTIONS(5677), - [anon_sym_AMP_AMP] = ACTIONS(5677), - [anon_sym_PIPE] = ACTIONS(5679), - [anon_sym_CARET] = ACTIONS(5679), - [anon_sym_AMP] = ACTIONS(5679), - [anon_sym_EQ_EQ] = ACTIONS(5677), - [anon_sym_BANG_EQ] = ACTIONS(5677), - [anon_sym_GT] = ACTIONS(5679), - [anon_sym_GT_EQ] = ACTIONS(5677), - [anon_sym_LT_EQ] = ACTIONS(5679), - [anon_sym_LT] = ACTIONS(5679), - [anon_sym_LT_LT] = ACTIONS(5679), - [anon_sym_GT_GT] = ACTIONS(5679), - [anon_sym_LBRACK] = ACTIONS(5677), - [anon_sym_EQ] = ACTIONS(5679), - [anon_sym_QMARK] = ACTIONS(5677), - [anon_sym_STAR_EQ] = ACTIONS(5677), - [anon_sym_SLASH_EQ] = ACTIONS(5677), - [anon_sym_PERCENT_EQ] = ACTIONS(5677), - [anon_sym_PLUS_EQ] = ACTIONS(5677), - [anon_sym_DASH_EQ] = ACTIONS(5677), - [anon_sym_LT_LT_EQ] = ACTIONS(5677), - [anon_sym_GT_GT_EQ] = ACTIONS(5677), - [anon_sym_AMP_EQ] = ACTIONS(5677), - [anon_sym_CARET_EQ] = ACTIONS(5677), - [anon_sym_PIPE_EQ] = ACTIONS(5677), - [anon_sym_and_eq] = ACTIONS(5679), - [anon_sym_or_eq] = ACTIONS(5679), - [anon_sym_xor_eq] = ACTIONS(5679), - [anon_sym_LT_EQ_GT] = ACTIONS(5677), - [anon_sym_or] = ACTIONS(5679), - [anon_sym_and] = ACTIONS(5679), - [anon_sym_bitor] = ACTIONS(5679), - [anon_sym_xor] = ACTIONS(5679), - [anon_sym_bitand] = ACTIONS(5679), - [anon_sym_not_eq] = ACTIONS(5679), - [anon_sym_DASH_DASH] = ACTIONS(5677), - [anon_sym_PLUS_PLUS] = ACTIONS(5677), - [anon_sym_DOT] = ACTIONS(5679), - [anon_sym_DOT_STAR] = ACTIONS(5677), - [anon_sym_DASH_GT] = ACTIONS(5677), - [anon_sym_L_DQUOTE] = ACTIONS(5677), - [anon_sym_u_DQUOTE] = ACTIONS(5677), - [anon_sym_U_DQUOTE] = ACTIONS(5677), - [anon_sym_u8_DQUOTE] = ACTIONS(5677), - [anon_sym_DQUOTE] = ACTIONS(5677), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5677), - [anon_sym_LR_DQUOTE] = ACTIONS(5677), - [anon_sym_uR_DQUOTE] = ACTIONS(5677), - [anon_sym_UR_DQUOTE] = ACTIONS(5677), - [anon_sym_u8R_DQUOTE] = ACTIONS(5677), - [sym_literal_suffix] = ACTIONS(5679), + [2201] = { + [sym_string_literal] = STATE(2729), + [sym_template_argument_list] = STATE(4089), + [sym_raw_string_literal] = STATE(2729), + [aux_sym_structured_binding_declarator_repeat1] = STATE(8518), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(6136), + [anon_sym_LPAREN2] = ACTIONS(4765), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4773), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4773), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(5946), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_RBRACK] = ACTIONS(6121), + [anon_sym_EQ] = ACTIONS(6124), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(6126), + [anon_sym_SLASH_EQ] = ACTIONS(6126), + [anon_sym_PERCENT_EQ] = ACTIONS(6126), + [anon_sym_PLUS_EQ] = ACTIONS(6126), + [anon_sym_DASH_EQ] = ACTIONS(6126), + [anon_sym_LT_LT_EQ] = ACTIONS(6126), + [anon_sym_GT_GT_EQ] = ACTIONS(6126), + [anon_sym_AMP_EQ] = ACTIONS(6126), + [anon_sym_CARET_EQ] = ACTIONS(6126), + [anon_sym_PIPE_EQ] = ACTIONS(6126), + [anon_sym_and_eq] = ACTIONS(6126), + [anon_sym_or_eq] = ACTIONS(6126), + [anon_sym_xor_eq] = ACTIONS(6126), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4765), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4765), + [anon_sym_not_eq] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), }, - [2248] = { - [sym_template_argument_list] = STATE(2382), - [sym_identifier] = ACTIONS(6197), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4853), - [anon_sym_COMMA] = ACTIONS(4853), - [aux_sym_preproc_if_token2] = ACTIONS(4853), - [aux_sym_preproc_else_token1] = ACTIONS(4853), - [aux_sym_preproc_elif_token1] = ACTIONS(6197), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4853), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4853), - [anon_sym_LPAREN2] = ACTIONS(4853), - [anon_sym_DASH] = ACTIONS(6197), - [anon_sym_PLUS] = ACTIONS(6197), - [anon_sym_STAR] = ACTIONS(6197), - [anon_sym_SLASH] = ACTIONS(6197), - [anon_sym_PERCENT] = ACTIONS(6197), - [anon_sym_PIPE_PIPE] = ACTIONS(4853), - [anon_sym_AMP_AMP] = ACTIONS(4853), - [anon_sym_PIPE] = ACTIONS(6197), - [anon_sym_CARET] = ACTIONS(6197), - [anon_sym_AMP] = ACTIONS(6197), - [anon_sym_EQ_EQ] = ACTIONS(4853), - [anon_sym_BANG_EQ] = ACTIONS(4853), - [anon_sym_GT] = ACTIONS(6197), - [anon_sym_GT_EQ] = ACTIONS(4853), - [anon_sym_LT_EQ] = ACTIONS(6197), - [anon_sym_LT] = ACTIONS(6199), - [anon_sym_LT_LT] = ACTIONS(6197), - [anon_sym_GT_GT] = ACTIONS(6197), - [anon_sym___attribute__] = ACTIONS(6197), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_LBRACK] = ACTIONS(4853), - [anon_sym_EQ] = ACTIONS(6197), - [anon_sym_COLON] = ACTIONS(6197), - [anon_sym_QMARK] = ACTIONS(4853), - [anon_sym_STAR_EQ] = ACTIONS(4853), - [anon_sym_SLASH_EQ] = ACTIONS(4853), - [anon_sym_PERCENT_EQ] = ACTIONS(4853), - [anon_sym_PLUS_EQ] = ACTIONS(4853), - [anon_sym_DASH_EQ] = ACTIONS(4853), - [anon_sym_LT_LT_EQ] = ACTIONS(4853), - [anon_sym_GT_GT_EQ] = ACTIONS(4853), - [anon_sym_AMP_EQ] = ACTIONS(4853), - [anon_sym_CARET_EQ] = ACTIONS(4853), - [anon_sym_PIPE_EQ] = ACTIONS(4853), - [anon_sym_and_eq] = ACTIONS(6197), - [anon_sym_or_eq] = ACTIONS(6197), - [anon_sym_xor_eq] = ACTIONS(6197), - [anon_sym_LT_EQ_GT] = ACTIONS(4853), - [anon_sym_or] = ACTIONS(6197), - [anon_sym_and] = ACTIONS(6197), - [anon_sym_bitor] = ACTIONS(6197), - [anon_sym_xor] = ACTIONS(6197), - [anon_sym_bitand] = ACTIONS(6197), - [anon_sym_not_eq] = ACTIONS(6197), - [anon_sym_DASH_DASH] = ACTIONS(4853), - [anon_sym_PLUS_PLUS] = ACTIONS(4853), - [anon_sym_DOT] = ACTIONS(6197), - [anon_sym_DOT_STAR] = ACTIONS(4853), - [anon_sym_DASH_GT] = ACTIONS(4853), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6197), - [anon_sym_decltype] = ACTIONS(6197), - [anon_sym_final] = ACTIONS(6197), - [anon_sym_override] = ACTIONS(6197), + [2202] = { + [sym_identifier] = ACTIONS(3060), + [aux_sym_preproc_def_token1] = ACTIONS(3060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3062), + [aux_sym_preproc_if_token1] = ACTIONS(3060), + [aux_sym_preproc_if_token2] = ACTIONS(3060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3060), + [sym_preproc_directive] = ACTIONS(3060), + [anon_sym_LPAREN2] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3062), + [anon_sym_AMP_AMP] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym___extension__] = ACTIONS(3060), + [anon_sym_typedef] = ACTIONS(3060), + [anon_sym_extern] = ACTIONS(3060), + [anon_sym___attribute__] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3062), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3062), + [anon_sym___declspec] = ACTIONS(3060), + [anon_sym___based] = ACTIONS(3060), + [anon_sym_signed] = ACTIONS(3060), + [anon_sym_unsigned] = ACTIONS(3060), + [anon_sym_long] = ACTIONS(3060), + [anon_sym_short] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_register] = ACTIONS(3060), + [anon_sym_inline] = ACTIONS(3060), + [anon_sym___inline] = ACTIONS(3060), + [anon_sym___inline__] = ACTIONS(3060), + [anon_sym___forceinline] = ACTIONS(3060), + [anon_sym_thread_local] = ACTIONS(3060), + [anon_sym___thread] = ACTIONS(3060), + [anon_sym_const] = ACTIONS(3060), + [anon_sym_constexpr] = ACTIONS(3060), + [anon_sym_volatile] = ACTIONS(3060), + [anon_sym_restrict] = ACTIONS(3060), + [anon_sym___restrict__] = ACTIONS(3060), + [anon_sym__Atomic] = ACTIONS(3060), + [anon_sym__Noreturn] = ACTIONS(3060), + [anon_sym_noreturn] = ACTIONS(3060), + [anon_sym_mutable] = ACTIONS(3060), + [anon_sym_constinit] = ACTIONS(3060), + [anon_sym_consteval] = ACTIONS(3060), + [sym_primitive_type] = ACTIONS(3060), + [anon_sym_enum] = ACTIONS(3060), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3060), + [anon_sym_union] = ACTIONS(3060), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3060), + [anon_sym_decltype] = ACTIONS(3060), + [anon_sym_virtual] = ACTIONS(3060), + [anon_sym_alignas] = ACTIONS(3060), + [anon_sym_explicit] = ACTIONS(3060), + [anon_sym_typename] = ACTIONS(3060), + [anon_sym_template] = ACTIONS(3060), + [anon_sym_operator] = ACTIONS(3060), + [anon_sym_friend] = ACTIONS(3060), + [anon_sym_public] = ACTIONS(3060), + [anon_sym_private] = ACTIONS(3060), + [anon_sym_protected] = ACTIONS(3060), + [anon_sym_using] = ACTIONS(3060), + [anon_sym_static_assert] = ACTIONS(3060), + [anon_sym_catch] = ACTIONS(3060), + [sym_semgrep_metavar] = ACTIONS(3062), }, - [2249] = { - [sym_string_literal] = STATE(2227), - [sym_raw_string_literal] = STATE(2227), - [aux_sym_concatenated_string_repeat1] = STATE(2227), - [sym_identifier] = ACTIONS(6201), + [2203] = { + [sym_string_literal] = STATE(2221), + [sym_raw_string_literal] = STATE(2221), + [aux_sym_concatenated_string_repeat1] = STATE(2221), + [sym_identifier] = ACTIONS(6139), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5550), + [anon_sym_COMMA] = ACTIONS(5550), + [anon_sym_RPAREN] = ACTIONS(5550), + [anon_sym_LPAREN2] = ACTIONS(5550), + [anon_sym_DASH] = ACTIONS(5554), + [anon_sym_PLUS] = ACTIONS(5554), + [anon_sym_STAR] = ACTIONS(5554), + [anon_sym_SLASH] = ACTIONS(5554), + [anon_sym_PERCENT] = ACTIONS(5554), + [anon_sym_PIPE_PIPE] = ACTIONS(5550), + [anon_sym_AMP_AMP] = ACTIONS(5550), + [anon_sym_PIPE] = ACTIONS(5554), + [anon_sym_CARET] = ACTIONS(5554), + [anon_sym_AMP] = ACTIONS(5554), + [anon_sym_EQ_EQ] = ACTIONS(5550), + [anon_sym_BANG_EQ] = ACTIONS(5550), + [anon_sym_GT] = ACTIONS(5554), + [anon_sym_GT_EQ] = ACTIONS(5550), + [anon_sym_LT_EQ] = ACTIONS(5554), + [anon_sym_LT] = ACTIONS(5554), + [anon_sym_LT_LT] = ACTIONS(5554), + [anon_sym_GT_GT] = ACTIONS(5554), + [anon_sym_LBRACK] = ACTIONS(5550), + [anon_sym_EQ] = ACTIONS(5554), + [anon_sym_QMARK] = ACTIONS(5550), + [anon_sym_STAR_EQ] = ACTIONS(5550), + [anon_sym_SLASH_EQ] = ACTIONS(5550), + [anon_sym_PERCENT_EQ] = ACTIONS(5550), + [anon_sym_PLUS_EQ] = ACTIONS(5550), + [anon_sym_DASH_EQ] = ACTIONS(5550), + [anon_sym_LT_LT_EQ] = ACTIONS(5550), + [anon_sym_GT_GT_EQ] = ACTIONS(5550), + [anon_sym_AMP_EQ] = ACTIONS(5550), + [anon_sym_CARET_EQ] = ACTIONS(5550), + [anon_sym_PIPE_EQ] = ACTIONS(5550), + [anon_sym_and_eq] = ACTIONS(5554), + [anon_sym_or_eq] = ACTIONS(5554), + [anon_sym_xor_eq] = ACTIONS(5554), + [anon_sym_LT_EQ_GT] = ACTIONS(5550), + [anon_sym_or] = ACTIONS(5554), + [anon_sym_and] = ACTIONS(5554), + [anon_sym_bitor] = ACTIONS(5554), + [anon_sym_xor] = ACTIONS(5554), + [anon_sym_bitand] = ACTIONS(5554), + [anon_sym_not_eq] = ACTIONS(5554), + [anon_sym_DASH_DASH] = ACTIONS(5550), + [anon_sym_PLUS_PLUS] = ACTIONS(5550), + [anon_sym_DOT] = ACTIONS(5554), + [anon_sym_DOT_STAR] = ACTIONS(5550), + [anon_sym_DASH_GT] = ACTIONS(5554), + [anon_sym_L_DQUOTE] = ACTIONS(5413), + [anon_sym_u_DQUOTE] = ACTIONS(5413), + [anon_sym_U_DQUOTE] = ACTIONS(5413), + [anon_sym_u8_DQUOTE] = ACTIONS(5413), + [anon_sym_DQUOTE] = ACTIONS(5413), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5415), + [anon_sym_LR_DQUOTE] = ACTIONS(5415), + [anon_sym_uR_DQUOTE] = ACTIONS(5415), + [anon_sym_UR_DQUOTE] = ACTIONS(5415), + [anon_sym_u8R_DQUOTE] = ACTIONS(5415), + [anon_sym_DASH_GT_STAR] = ACTIONS(5550), + [sym_literal_suffix] = ACTIONS(5554), + }, + [2204] = { + [sym_string_literal] = STATE(2729), + [sym_template_argument_list] = STATE(4089), + [sym_raw_string_literal] = STATE(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4765), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4773), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4773), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(5946), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_SEMI] = ACTIONS(4765), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_EQ] = ACTIONS(4797), + [anon_sym_COLON] = ACTIONS(4824), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4801), + [anon_sym_SLASH_EQ] = ACTIONS(4801), + [anon_sym_PERCENT_EQ] = ACTIONS(4801), + [anon_sym_PLUS_EQ] = ACTIONS(4801), + [anon_sym_DASH_EQ] = ACTIONS(4801), + [anon_sym_LT_LT_EQ] = ACTIONS(4801), + [anon_sym_GT_GT_EQ] = ACTIONS(4801), + [anon_sym_AMP_EQ] = ACTIONS(4801), + [anon_sym_CARET_EQ] = ACTIONS(4801), + [anon_sym_PIPE_EQ] = ACTIONS(4801), + [anon_sym_and_eq] = ACTIONS(4801), + [anon_sym_or_eq] = ACTIONS(4801), + [anon_sym_xor_eq] = ACTIONS(4801), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4765), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4765), + [anon_sym_not_eq] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + }, + [2205] = { + [sym_attribute_declaration] = STATE(2276), + [sym_parameter_list] = STATE(2318), + [aux_sym_attributed_declarator_repeat1] = STATE(2276), + [ts_builtin_sym_end] = ACTIONS(6141), + [sym_identifier] = ACTIONS(6143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6141), + [anon_sym_COMMA] = ACTIONS(6141), + [anon_sym_RPAREN] = ACTIONS(6141), + [aux_sym_preproc_if_token2] = ACTIONS(6141), + [aux_sym_preproc_else_token1] = ACTIONS(6141), + [aux_sym_preproc_elif_token1] = ACTIONS(6143), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6141), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6141), + [anon_sym_LPAREN2] = ACTIONS(6042), + [anon_sym_DASH] = ACTIONS(6143), + [anon_sym_PLUS] = ACTIONS(6143), + [anon_sym_STAR] = ACTIONS(6143), + [anon_sym_SLASH] = ACTIONS(6143), + [anon_sym_PERCENT] = ACTIONS(6143), + [anon_sym_PIPE_PIPE] = ACTIONS(6141), + [anon_sym_AMP_AMP] = ACTIONS(6141), + [anon_sym_PIPE] = ACTIONS(6143), + [anon_sym_CARET] = ACTIONS(6143), + [anon_sym_AMP] = ACTIONS(6143), + [anon_sym_EQ_EQ] = ACTIONS(6141), + [anon_sym_BANG_EQ] = ACTIONS(6141), + [anon_sym_GT] = ACTIONS(6143), + [anon_sym_GT_EQ] = ACTIONS(6141), + [anon_sym_LT_EQ] = ACTIONS(6143), + [anon_sym_LT] = ACTIONS(6143), + [anon_sym_LT_LT] = ACTIONS(6143), + [anon_sym_GT_GT] = ACTIONS(6143), + [anon_sym_SEMI] = ACTIONS(6141), + [anon_sym___attribute__] = ACTIONS(6143), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6044), + [anon_sym_RBRACE] = ACTIONS(6141), + [anon_sym_LBRACK] = ACTIONS(6046), + [anon_sym_RBRACK] = ACTIONS(6141), + [anon_sym_EQ] = ACTIONS(6143), + [anon_sym_COLON] = ACTIONS(6141), + [anon_sym_QMARK] = ACTIONS(6141), + [anon_sym_STAR_EQ] = ACTIONS(6141), + [anon_sym_SLASH_EQ] = ACTIONS(6141), + [anon_sym_PERCENT_EQ] = ACTIONS(6141), + [anon_sym_PLUS_EQ] = ACTIONS(6141), + [anon_sym_DASH_EQ] = ACTIONS(6141), + [anon_sym_LT_LT_EQ] = ACTIONS(6141), + [anon_sym_GT_GT_EQ] = ACTIONS(6141), + [anon_sym_AMP_EQ] = ACTIONS(6141), + [anon_sym_CARET_EQ] = ACTIONS(6141), + [anon_sym_PIPE_EQ] = ACTIONS(6141), + [anon_sym_and_eq] = ACTIONS(6143), + [anon_sym_or_eq] = ACTIONS(6143), + [anon_sym_xor_eq] = ACTIONS(6143), + [anon_sym_LT_EQ_GT] = ACTIONS(6141), + [anon_sym_or] = ACTIONS(6143), + [anon_sym_and] = ACTIONS(6143), + [anon_sym_bitor] = ACTIONS(6143), + [anon_sym_xor] = ACTIONS(6143), + [anon_sym_bitand] = ACTIONS(6143), + [anon_sym_not_eq] = ACTIONS(6143), + [anon_sym_DASH_DASH] = ACTIONS(6141), + [anon_sym_PLUS_PLUS] = ACTIONS(6141), + [anon_sym_DOT] = ACTIONS(6143), + [anon_sym_DOT_STAR] = ACTIONS(6141), + [anon_sym_DASH_GT] = ACTIONS(6141), + [sym_comment] = ACTIONS(3), + }, + [2206] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2051), + [ts_builtin_sym_end] = ACTIONS(6145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6145), + [anon_sym_COMMA] = ACTIONS(6145), + [anon_sym_RPAREN] = ACTIONS(6145), + [anon_sym_LPAREN2] = ACTIONS(6145), + [anon_sym_DASH] = ACTIONS(6147), + [anon_sym_PLUS] = ACTIONS(6147), + [anon_sym_STAR] = ACTIONS(6145), + [anon_sym_SLASH] = ACTIONS(6147), + [anon_sym_PERCENT] = ACTIONS(6145), + [anon_sym_PIPE_PIPE] = ACTIONS(6145), + [anon_sym_AMP_AMP] = ACTIONS(6145), + [anon_sym_PIPE] = ACTIONS(6147), + [anon_sym_CARET] = ACTIONS(6145), + [anon_sym_AMP] = ACTIONS(6147), + [anon_sym_EQ_EQ] = ACTIONS(6145), + [anon_sym_BANG_EQ] = ACTIONS(6145), + [anon_sym_GT] = ACTIONS(6147), + [anon_sym_GT_EQ] = ACTIONS(6145), + [anon_sym_LT_EQ] = ACTIONS(6147), + [anon_sym_LT] = ACTIONS(6147), + [anon_sym_LT_LT] = ACTIONS(6145), + [anon_sym_GT_GT] = ACTIONS(6145), + [anon_sym_SEMI] = ACTIONS(6145), + [anon_sym___extension__] = ACTIONS(6145), + [anon_sym___attribute__] = ACTIONS(6145), + [anon_sym_LBRACE] = ACTIONS(6145), + [anon_sym_RBRACE] = ACTIONS(6145), + [anon_sym_signed] = ACTIONS(6058), + [anon_sym_unsigned] = ACTIONS(6058), + [anon_sym_long] = ACTIONS(6058), + [anon_sym_short] = ACTIONS(6058), + [anon_sym_LBRACK] = ACTIONS(6145), + [anon_sym_RBRACK] = ACTIONS(6145), + [anon_sym_const] = ACTIONS(6147), + [anon_sym_constexpr] = ACTIONS(6145), + [anon_sym_volatile] = ACTIONS(6145), + [anon_sym_restrict] = ACTIONS(6145), + [anon_sym___restrict__] = ACTIONS(6145), + [anon_sym__Atomic] = ACTIONS(6145), + [anon_sym__Noreturn] = ACTIONS(6145), + [anon_sym_noreturn] = ACTIONS(6145), + [anon_sym_mutable] = ACTIONS(6145), + [anon_sym_constinit] = ACTIONS(6145), + [anon_sym_consteval] = ACTIONS(6145), + [anon_sym_COLON] = ACTIONS(6145), + [anon_sym_QMARK] = ACTIONS(6145), + [anon_sym_LT_EQ_GT] = ACTIONS(6145), + [anon_sym_or] = ACTIONS(6145), + [anon_sym_and] = ACTIONS(6145), + [anon_sym_bitor] = ACTIONS(6145), + [anon_sym_xor] = ACTIONS(6145), + [anon_sym_bitand] = ACTIONS(6145), + [anon_sym_not_eq] = ACTIONS(6145), + [anon_sym_DASH_DASH] = ACTIONS(6145), + [anon_sym_PLUS_PLUS] = ACTIONS(6145), + [anon_sym_DOT] = ACTIONS(6147), + [anon_sym_DOT_STAR] = ACTIONS(6145), + [anon_sym_DASH_GT] = ACTIONS(6145), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6145), + [anon_sym_decltype] = ACTIONS(6145), + [anon_sym_final] = ACTIONS(6145), + [anon_sym_override] = ACTIONS(6145), + [anon_sym_requires] = ACTIONS(6145), + [sym_semgrep_metavar] = ACTIONS(6145), + }, + [2207] = { + [ts_builtin_sym_end] = ACTIONS(5666), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5666), + [anon_sym_COMMA] = ACTIONS(5666), + [anon_sym_RPAREN] = ACTIONS(5666), + [anon_sym_LPAREN2] = ACTIONS(5666), + [anon_sym_DASH] = ACTIONS(5668), + [anon_sym_PLUS] = ACTIONS(5668), + [anon_sym_STAR] = ACTIONS(5668), + [anon_sym_SLASH] = ACTIONS(5668), + [anon_sym_PERCENT] = ACTIONS(5668), + [anon_sym_PIPE_PIPE] = ACTIONS(5666), + [anon_sym_AMP_AMP] = ACTIONS(5666), + [anon_sym_PIPE] = ACTIONS(5668), + [anon_sym_CARET] = ACTIONS(5668), + [anon_sym_AMP] = ACTIONS(5668), + [anon_sym_EQ_EQ] = ACTIONS(5666), + [anon_sym_BANG_EQ] = ACTIONS(5666), + [anon_sym_GT] = ACTIONS(5668), + [anon_sym_GT_EQ] = ACTIONS(5666), + [anon_sym_LT_EQ] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5668), + [anon_sym_LT_LT] = ACTIONS(5668), + [anon_sym_GT_GT] = ACTIONS(5668), + [anon_sym_SEMI] = ACTIONS(5666), + [anon_sym_RBRACE] = ACTIONS(5666), + [anon_sym_LBRACK] = ACTIONS(5666), + [anon_sym_RBRACK] = ACTIONS(5666), + [anon_sym_EQ] = ACTIONS(5668), + [anon_sym_COLON] = ACTIONS(5666), + [anon_sym_QMARK] = ACTIONS(5666), + [anon_sym_STAR_EQ] = ACTIONS(5666), + [anon_sym_SLASH_EQ] = ACTIONS(5666), + [anon_sym_PERCENT_EQ] = ACTIONS(5666), + [anon_sym_PLUS_EQ] = ACTIONS(5666), + [anon_sym_DASH_EQ] = ACTIONS(5666), + [anon_sym_LT_LT_EQ] = ACTIONS(5666), + [anon_sym_GT_GT_EQ] = ACTIONS(5666), + [anon_sym_AMP_EQ] = ACTIONS(5666), + [anon_sym_CARET_EQ] = ACTIONS(5666), + [anon_sym_PIPE_EQ] = ACTIONS(5666), + [anon_sym_and_eq] = ACTIONS(5668), + [anon_sym_or_eq] = ACTIONS(5668), + [anon_sym_xor_eq] = ACTIONS(5668), + [anon_sym_LT_EQ_GT] = ACTIONS(5666), + [anon_sym_or] = ACTIONS(5668), + [anon_sym_and] = ACTIONS(5668), + [anon_sym_bitor] = ACTIONS(5668), + [anon_sym_xor] = ACTIONS(5668), + [anon_sym_bitand] = ACTIONS(5668), + [anon_sym_not_eq] = ACTIONS(5668), + [anon_sym_DASH_DASH] = ACTIONS(5666), + [anon_sym_PLUS_PLUS] = ACTIONS(5666), + [anon_sym_DOT] = ACTIONS(5668), + [anon_sym_DOT_STAR] = ACTIONS(5666), + [anon_sym_DASH_GT] = ACTIONS(5666), + [anon_sym_L_DQUOTE] = ACTIONS(5666), + [anon_sym_u_DQUOTE] = ACTIONS(5666), + [anon_sym_U_DQUOTE] = ACTIONS(5666), + [anon_sym_u8_DQUOTE] = ACTIONS(5666), + [anon_sym_DQUOTE] = ACTIONS(5666), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5666), + [anon_sym_LR_DQUOTE] = ACTIONS(5666), + [anon_sym_uR_DQUOTE] = ACTIONS(5666), + [anon_sym_UR_DQUOTE] = ACTIONS(5666), + [anon_sym_u8R_DQUOTE] = ACTIONS(5666), + [sym_literal_suffix] = ACTIONS(5668), + }, + [2208] = { + [ts_builtin_sym_end] = ACTIONS(5647), [anon_sym_DOT_DOT_DOT] = ACTIONS(5647), - [anon_sym_LPAREN2] = ACTIONS(5643), - [anon_sym_DASH] = ACTIONS(5647), - [anon_sym_PLUS] = ACTIONS(5647), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5647), - [anon_sym_PERCENT] = ACTIONS(5647), - [anon_sym_PIPE_PIPE] = ACTIONS(5643), - [anon_sym_AMP_AMP] = ACTIONS(5643), - [anon_sym_PIPE] = ACTIONS(5647), - [anon_sym_CARET] = ACTIONS(5647), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5643), - [anon_sym_BANG_EQ] = ACTIONS(5643), - [anon_sym_GT] = ACTIONS(5647), - [anon_sym_GT_EQ] = ACTIONS(5643), - [anon_sym_LT_EQ] = ACTIONS(5647), - [anon_sym_LT] = ACTIONS(5647), - [anon_sym_LT_LT] = ACTIONS(5647), - [anon_sym_GT_GT] = ACTIONS(5647), - [anon_sym_LBRACK] = ACTIONS(5643), - [anon_sym_EQ] = ACTIONS(5647), - [anon_sym_QMARK] = ACTIONS(5643), - [anon_sym_STAR_EQ] = ACTIONS(5643), - [anon_sym_SLASH_EQ] = ACTIONS(5643), - [anon_sym_PERCENT_EQ] = ACTIONS(5643), - [anon_sym_PLUS_EQ] = ACTIONS(5643), - [anon_sym_DASH_EQ] = ACTIONS(5643), - [anon_sym_LT_LT_EQ] = ACTIONS(5643), - [anon_sym_GT_GT_EQ] = ACTIONS(5643), - [anon_sym_AMP_EQ] = ACTIONS(5643), - [anon_sym_CARET_EQ] = ACTIONS(5643), - [anon_sym_PIPE_EQ] = ACTIONS(5643), - [anon_sym_and_eq] = ACTIONS(5647), - [anon_sym_or_eq] = ACTIONS(5647), - [anon_sym_xor_eq] = ACTIONS(5647), - [anon_sym_LT_EQ_GT] = ACTIONS(5643), - [anon_sym_or] = ACTIONS(5647), - [anon_sym_and] = ACTIONS(5647), - [anon_sym_bitor] = ACTIONS(5647), - [anon_sym_xor] = ACTIONS(5647), - [anon_sym_bitand] = ACTIONS(5647), - [anon_sym_not_eq] = ACTIONS(5647), - [anon_sym_DASH_DASH] = ACTIONS(5643), - [anon_sym_PLUS_PLUS] = ACTIONS(5643), - [anon_sym_DOT] = ACTIONS(5647), - [anon_sym_DOT_STAR] = ACTIONS(5643), - [anon_sym_DASH_GT] = ACTIONS(5643), - [anon_sym_L_DQUOTE] = ACTIONS(6166), - [anon_sym_u_DQUOTE] = ACTIONS(6166), - [anon_sym_U_DQUOTE] = ACTIONS(6166), - [anon_sym_u8_DQUOTE] = ACTIONS(6166), - [anon_sym_DQUOTE] = ACTIONS(6166), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(6168), - [anon_sym_LR_DQUOTE] = ACTIONS(6168), - [anon_sym_uR_DQUOTE] = ACTIONS(6168), - [anon_sym_UR_DQUOTE] = ACTIONS(6168), - [anon_sym_u8R_DQUOTE] = ACTIONS(6168), - [sym_literal_suffix] = ACTIONS(5647), - [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(5643), + [anon_sym_COMMA] = ACTIONS(5647), + [anon_sym_RPAREN] = ACTIONS(5647), + [anon_sym_LPAREN2] = ACTIONS(5647), + [anon_sym_DASH] = ACTIONS(5649), + [anon_sym_PLUS] = ACTIONS(5649), + [anon_sym_STAR] = ACTIONS(5649), + [anon_sym_SLASH] = ACTIONS(5649), + [anon_sym_PERCENT] = ACTIONS(5649), + [anon_sym_PIPE_PIPE] = ACTIONS(5647), + [anon_sym_AMP_AMP] = ACTIONS(5647), + [anon_sym_PIPE] = ACTIONS(5649), + [anon_sym_CARET] = ACTIONS(5649), + [anon_sym_AMP] = ACTIONS(5649), + [anon_sym_EQ_EQ] = ACTIONS(5647), + [anon_sym_BANG_EQ] = ACTIONS(5647), + [anon_sym_GT] = ACTIONS(5649), + [anon_sym_GT_EQ] = ACTIONS(5647), + [anon_sym_LT_EQ] = ACTIONS(5649), + [anon_sym_LT] = ACTIONS(5649), + [anon_sym_LT_LT] = ACTIONS(5649), + [anon_sym_GT_GT] = ACTIONS(5649), + [anon_sym_SEMI] = ACTIONS(5647), + [anon_sym_RBRACE] = ACTIONS(5647), + [anon_sym_LBRACK] = ACTIONS(5647), + [anon_sym_RBRACK] = ACTIONS(5647), + [anon_sym_EQ] = ACTIONS(5649), + [anon_sym_COLON] = ACTIONS(5647), + [anon_sym_QMARK] = ACTIONS(5647), + [anon_sym_STAR_EQ] = ACTIONS(5647), + [anon_sym_SLASH_EQ] = ACTIONS(5647), + [anon_sym_PERCENT_EQ] = ACTIONS(5647), + [anon_sym_PLUS_EQ] = ACTIONS(5647), + [anon_sym_DASH_EQ] = ACTIONS(5647), + [anon_sym_LT_LT_EQ] = ACTIONS(5647), + [anon_sym_GT_GT_EQ] = ACTIONS(5647), + [anon_sym_AMP_EQ] = ACTIONS(5647), + [anon_sym_CARET_EQ] = ACTIONS(5647), + [anon_sym_PIPE_EQ] = ACTIONS(5647), + [anon_sym_and_eq] = ACTIONS(5649), + [anon_sym_or_eq] = ACTIONS(5649), + [anon_sym_xor_eq] = ACTIONS(5649), + [anon_sym_LT_EQ_GT] = ACTIONS(5647), + [anon_sym_or] = ACTIONS(5649), + [anon_sym_and] = ACTIONS(5649), + [anon_sym_bitor] = ACTIONS(5649), + [anon_sym_xor] = ACTIONS(5649), + [anon_sym_bitand] = ACTIONS(5649), + [anon_sym_not_eq] = ACTIONS(5649), + [anon_sym_DASH_DASH] = ACTIONS(5647), + [anon_sym_PLUS_PLUS] = ACTIONS(5647), + [anon_sym_DOT] = ACTIONS(5649), + [anon_sym_DOT_STAR] = ACTIONS(5647), + [anon_sym_DASH_GT] = ACTIONS(5647), + [anon_sym_L_DQUOTE] = ACTIONS(5647), + [anon_sym_u_DQUOTE] = ACTIONS(5647), + [anon_sym_U_DQUOTE] = ACTIONS(5647), + [anon_sym_u8_DQUOTE] = ACTIONS(5647), + [anon_sym_DQUOTE] = ACTIONS(5647), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5647), + [anon_sym_LR_DQUOTE] = ACTIONS(5647), + [anon_sym_uR_DQUOTE] = ACTIONS(5647), + [anon_sym_UR_DQUOTE] = ACTIONS(5647), + [anon_sym_u8R_DQUOTE] = ACTIONS(5647), + [sym_literal_suffix] = ACTIONS(5649), }, - [2250] = { - [sym_string_literal] = STATE(2640), - [sym_template_argument_list] = STATE(5014), - [sym_raw_string_literal] = STATE(2640), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4829), - [anon_sym_LPAREN2] = ACTIONS(4829), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4837), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4837), - [anon_sym_LT] = ACTIONS(5764), - [anon_sym_LT_LT] = ACTIONS(4837), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(4853), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_EQ] = ACTIONS(6203), - [anon_sym_COLON] = ACTIONS(4837), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_STAR_EQ] = ACTIONS(6205), - [anon_sym_SLASH_EQ] = ACTIONS(6205), - [anon_sym_PERCENT_EQ] = ACTIONS(6205), - [anon_sym_PLUS_EQ] = ACTIONS(6205), - [anon_sym_DASH_EQ] = ACTIONS(6205), - [anon_sym_LT_LT_EQ] = ACTIONS(6205), - [anon_sym_GT_GT_EQ] = ACTIONS(6205), - [anon_sym_AMP_EQ] = ACTIONS(6205), - [anon_sym_CARET_EQ] = ACTIONS(6205), - [anon_sym_PIPE_EQ] = ACTIONS(6205), - [anon_sym_and_eq] = ACTIONS(6205), - [anon_sym_or_eq] = ACTIONS(6205), - [anon_sym_xor_eq] = ACTIONS(6205), - [anon_sym_LT_EQ_GT] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4837), - [anon_sym_bitor] = ACTIONS(4829), - [anon_sym_xor] = ACTIONS(4837), - [anon_sym_bitand] = ACTIONS(4829), - [anon_sym_not_eq] = ACTIONS(4829), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_DOT_STAR] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_L_DQUOTE] = ACTIONS(3796), - [anon_sym_u_DQUOTE] = ACTIONS(3796), - [anon_sym_U_DQUOTE] = ACTIONS(3796), - [anon_sym_u8_DQUOTE] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3804), - [anon_sym_LR_DQUOTE] = ACTIONS(3804), - [anon_sym_uR_DQUOTE] = ACTIONS(3804), - [anon_sym_UR_DQUOTE] = ACTIONS(3804), - [anon_sym_u8R_DQUOTE] = ACTIONS(3804), + [2209] = { + [sym_string_literal] = STATE(2523), + [sym_template_argument_list] = STATE(4074), + [sym_raw_string_literal] = STATE(2523), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_RPAREN] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4765), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4773), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4773), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(6149), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_EQ] = ACTIONS(4773), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4765), + [anon_sym_SLASH_EQ] = ACTIONS(4765), + [anon_sym_PERCENT_EQ] = ACTIONS(4765), + [anon_sym_PLUS_EQ] = ACTIONS(4765), + [anon_sym_DASH_EQ] = ACTIONS(4765), + [anon_sym_LT_LT_EQ] = ACTIONS(4765), + [anon_sym_GT_GT_EQ] = ACTIONS(4765), + [anon_sym_AMP_EQ] = ACTIONS(4765), + [anon_sym_CARET_EQ] = ACTIONS(4765), + [anon_sym_PIPE_EQ] = ACTIONS(4765), + [anon_sym_and_eq] = ACTIONS(6152), + [anon_sym_or_eq] = ACTIONS(6152), + [anon_sym_xor_eq] = ACTIONS(6152), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4765), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4765), + [anon_sym_not_eq] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4773), + [anon_sym_L_DQUOTE] = ACTIONS(4814), + [anon_sym_u_DQUOTE] = ACTIONS(4814), + [anon_sym_U_DQUOTE] = ACTIONS(4814), + [anon_sym_u8_DQUOTE] = ACTIONS(4814), + [anon_sym_DQUOTE] = ACTIONS(4814), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4816), + [anon_sym_LR_DQUOTE] = ACTIONS(4816), + [anon_sym_uR_DQUOTE] = ACTIONS(4816), + [anon_sym_UR_DQUOTE] = ACTIONS(4816), + [anon_sym_u8R_DQUOTE] = ACTIONS(4816), + [anon_sym_DASH_GT_STAR] = ACTIONS(4765), }, - [2251] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2219), - [ts_builtin_sym_end] = ACTIONS(6048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6048), - [anon_sym_COMMA] = ACTIONS(6048), - [anon_sym_RPAREN] = ACTIONS(6048), - [anon_sym_LPAREN2] = ACTIONS(6048), - [anon_sym_DASH] = ACTIONS(6050), - [anon_sym_PLUS] = ACTIONS(6050), - [anon_sym_STAR] = ACTIONS(6050), - [anon_sym_SLASH] = ACTIONS(6050), - [anon_sym_PERCENT] = ACTIONS(6050), - [anon_sym_PIPE_PIPE] = ACTIONS(6048), - [anon_sym_AMP_AMP] = ACTIONS(6048), - [anon_sym_PIPE] = ACTIONS(6050), - [anon_sym_CARET] = ACTIONS(6050), - [anon_sym_AMP] = ACTIONS(6050), - [anon_sym_EQ_EQ] = ACTIONS(6048), - [anon_sym_BANG_EQ] = ACTIONS(6048), - [anon_sym_GT] = ACTIONS(6050), - [anon_sym_GT_EQ] = ACTIONS(6048), - [anon_sym_LT_EQ] = ACTIONS(6050), - [anon_sym_LT] = ACTIONS(6050), - [anon_sym_LT_LT] = ACTIONS(6050), - [anon_sym_GT_GT] = ACTIONS(6050), - [anon_sym_SEMI] = ACTIONS(6048), - [anon_sym___attribute__] = ACTIONS(6048), - [anon_sym_LBRACE] = ACTIONS(6048), - [anon_sym_RBRACE] = ACTIONS(6048), - [anon_sym_signed] = ACTIONS(6207), - [anon_sym_unsigned] = ACTIONS(6207), - [anon_sym_long] = ACTIONS(6207), - [anon_sym_short] = ACTIONS(6207), - [anon_sym_LBRACK] = ACTIONS(6048), - [anon_sym_RBRACK] = ACTIONS(6048), - [anon_sym_EQ] = ACTIONS(6050), - [anon_sym_COLON] = ACTIONS(6048), - [anon_sym_QMARK] = ACTIONS(6048), - [anon_sym_STAR_EQ] = ACTIONS(6048), - [anon_sym_SLASH_EQ] = ACTIONS(6048), - [anon_sym_PERCENT_EQ] = ACTIONS(6048), - [anon_sym_PLUS_EQ] = ACTIONS(6048), - [anon_sym_DASH_EQ] = ACTIONS(6048), - [anon_sym_LT_LT_EQ] = ACTIONS(6048), - [anon_sym_GT_GT_EQ] = ACTIONS(6048), - [anon_sym_AMP_EQ] = ACTIONS(6048), - [anon_sym_CARET_EQ] = ACTIONS(6048), - [anon_sym_PIPE_EQ] = ACTIONS(6048), - [anon_sym_and_eq] = ACTIONS(6048), - [anon_sym_or_eq] = ACTIONS(6048), - [anon_sym_xor_eq] = ACTIONS(6048), - [anon_sym_LT_EQ_GT] = ACTIONS(6048), - [anon_sym_or] = ACTIONS(6050), - [anon_sym_and] = ACTIONS(6050), - [anon_sym_bitor] = ACTIONS(6048), - [anon_sym_xor] = ACTIONS(6050), - [anon_sym_bitand] = ACTIONS(6048), - [anon_sym_not_eq] = ACTIONS(6048), - [anon_sym_DASH_DASH] = ACTIONS(6048), - [anon_sym_PLUS_PLUS] = ACTIONS(6048), - [anon_sym_DOT] = ACTIONS(6050), - [anon_sym_DOT_STAR] = ACTIONS(6048), - [anon_sym_DASH_GT] = ACTIONS(6048), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6048), - [anon_sym_decltype] = ACTIONS(6048), + [2210] = { + [sym_template_argument_list] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2455), + [sym_identifier] = ACTIONS(6090), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6088), + [anon_sym_COMMA] = ACTIONS(6088), + [aux_sym_preproc_if_token2] = ACTIONS(6088), + [aux_sym_preproc_else_token1] = ACTIONS(6088), + [aux_sym_preproc_elif_token1] = ACTIONS(6090), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6088), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6088), + [anon_sym_LPAREN2] = ACTIONS(6088), + [anon_sym_DASH] = ACTIONS(6090), + [anon_sym_PLUS] = ACTIONS(6090), + [anon_sym_STAR] = ACTIONS(6090), + [anon_sym_SLASH] = ACTIONS(6090), + [anon_sym_PERCENT] = ACTIONS(6090), + [anon_sym_PIPE_PIPE] = ACTIONS(6088), + [anon_sym_AMP_AMP] = ACTIONS(6088), + [anon_sym_PIPE] = ACTIONS(6090), + [anon_sym_CARET] = ACTIONS(6090), + [anon_sym_AMP] = ACTIONS(6090), + [anon_sym_EQ_EQ] = ACTIONS(6088), + [anon_sym_BANG_EQ] = ACTIONS(6088), + [anon_sym_GT] = ACTIONS(6090), + [anon_sym_GT_EQ] = ACTIONS(6088), + [anon_sym_LT_EQ] = ACTIONS(6090), + [anon_sym_LT] = ACTIONS(6090), + [anon_sym_LT_LT] = ACTIONS(6090), + [anon_sym_GT_GT] = ACTIONS(6090), + [anon_sym___attribute__] = ACTIONS(6090), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(6088), + [anon_sym_signed] = ACTIONS(6154), + [anon_sym_unsigned] = ACTIONS(6154), + [anon_sym_long] = ACTIONS(6154), + [anon_sym_short] = ACTIONS(6154), + [anon_sym_LBRACK] = ACTIONS(6088), + [anon_sym_EQ] = ACTIONS(6090), + [anon_sym_QMARK] = ACTIONS(6088), + [anon_sym_STAR_EQ] = ACTIONS(6088), + [anon_sym_SLASH_EQ] = ACTIONS(6088), + [anon_sym_PERCENT_EQ] = ACTIONS(6088), + [anon_sym_PLUS_EQ] = ACTIONS(6088), + [anon_sym_DASH_EQ] = ACTIONS(6088), + [anon_sym_LT_LT_EQ] = ACTIONS(6088), + [anon_sym_GT_GT_EQ] = ACTIONS(6088), + [anon_sym_AMP_EQ] = ACTIONS(6088), + [anon_sym_CARET_EQ] = ACTIONS(6088), + [anon_sym_PIPE_EQ] = ACTIONS(6088), + [anon_sym_and_eq] = ACTIONS(6090), + [anon_sym_or_eq] = ACTIONS(6090), + [anon_sym_xor_eq] = ACTIONS(6090), + [anon_sym_LT_EQ_GT] = ACTIONS(6088), + [anon_sym_or] = ACTIONS(6090), + [anon_sym_and] = ACTIONS(6090), + [anon_sym_bitor] = ACTIONS(6090), + [anon_sym_xor] = ACTIONS(6090), + [anon_sym_bitand] = ACTIONS(6090), + [anon_sym_not_eq] = ACTIONS(6090), + [anon_sym_DASH_DASH] = ACTIONS(6088), + [anon_sym_PLUS_PLUS] = ACTIONS(6088), + [anon_sym_DOT] = ACTIONS(6090), + [anon_sym_DOT_STAR] = ACTIONS(6088), + [anon_sym_DASH_GT] = ACTIONS(6088), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6090), + [anon_sym_decltype] = ACTIONS(6090), }, - [2252] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2253), - [ts_builtin_sym_end] = ACTIONS(4835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4835), - [anon_sym_COMMA] = ACTIONS(4835), - [anon_sym_RPAREN] = ACTIONS(4835), - [anon_sym_LPAREN2] = ACTIONS(4835), - [anon_sym_DASH] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(4827), - [anon_sym_STAR] = ACTIONS(4827), - [anon_sym_SLASH] = ACTIONS(4827), - [anon_sym_PERCENT] = ACTIONS(4827), - [anon_sym_PIPE_PIPE] = ACTIONS(4835), - [anon_sym_AMP_AMP] = ACTIONS(4835), - [anon_sym_PIPE] = ACTIONS(4827), - [anon_sym_CARET] = ACTIONS(4827), - [anon_sym_AMP] = ACTIONS(4827), - [anon_sym_EQ_EQ] = ACTIONS(4835), - [anon_sym_BANG_EQ] = ACTIONS(4835), - [anon_sym_GT] = ACTIONS(4827), - [anon_sym_GT_EQ] = ACTIONS(4835), - [anon_sym_LT_EQ] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4827), - [anon_sym_LT_LT] = ACTIONS(4827), - [anon_sym_GT_GT] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(4835), - [anon_sym___attribute__] = ACTIONS(4835), - [anon_sym_LBRACE] = ACTIONS(4835), - [anon_sym_RBRACE] = ACTIONS(4835), - [anon_sym_signed] = ACTIONS(6147), - [anon_sym_unsigned] = ACTIONS(6147), - [anon_sym_long] = ACTIONS(6147), - [anon_sym_short] = ACTIONS(6147), - [anon_sym_LBRACK] = ACTIONS(4835), - [anon_sym_RBRACK] = ACTIONS(4835), - [anon_sym_EQ] = ACTIONS(4827), - [anon_sym_COLON] = ACTIONS(4835), - [anon_sym_QMARK] = ACTIONS(4835), - [anon_sym_STAR_EQ] = ACTIONS(4835), - [anon_sym_SLASH_EQ] = ACTIONS(4835), - [anon_sym_PERCENT_EQ] = ACTIONS(4835), - [anon_sym_PLUS_EQ] = ACTIONS(4835), - [anon_sym_DASH_EQ] = ACTIONS(4835), - [anon_sym_LT_LT_EQ] = ACTIONS(4835), - [anon_sym_GT_GT_EQ] = ACTIONS(4835), - [anon_sym_AMP_EQ] = ACTIONS(4835), - [anon_sym_CARET_EQ] = ACTIONS(4835), - [anon_sym_PIPE_EQ] = ACTIONS(4835), - [anon_sym_and_eq] = ACTIONS(4835), - [anon_sym_or_eq] = ACTIONS(4835), - [anon_sym_xor_eq] = ACTIONS(4835), - [anon_sym_LT_EQ_GT] = ACTIONS(4835), - [anon_sym_or] = ACTIONS(4827), - [anon_sym_and] = ACTIONS(4827), - [anon_sym_bitor] = ACTIONS(4835), - [anon_sym_xor] = ACTIONS(4827), - [anon_sym_bitand] = ACTIONS(4835), - [anon_sym_not_eq] = ACTIONS(4835), - [anon_sym_DASH_DASH] = ACTIONS(4835), - [anon_sym_PLUS_PLUS] = ACTIONS(4835), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_DOT_STAR] = ACTIONS(4835), - [anon_sym_DASH_GT] = ACTIONS(4835), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4835), - [anon_sym_decltype] = ACTIONS(4835), + [2211] = { + [ts_builtin_sym_end] = ACTIONS(5658), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5658), + [anon_sym_COMMA] = ACTIONS(5658), + [anon_sym_RPAREN] = ACTIONS(5658), + [anon_sym_LPAREN2] = ACTIONS(5658), + [anon_sym_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5660), + [anon_sym_STAR] = ACTIONS(5660), + [anon_sym_SLASH] = ACTIONS(5660), + [anon_sym_PERCENT] = ACTIONS(5660), + [anon_sym_PIPE_PIPE] = ACTIONS(5658), + [anon_sym_AMP_AMP] = ACTIONS(5658), + [anon_sym_PIPE] = ACTIONS(5660), + [anon_sym_CARET] = ACTIONS(5660), + [anon_sym_AMP] = ACTIONS(5660), + [anon_sym_EQ_EQ] = ACTIONS(5658), + [anon_sym_BANG_EQ] = ACTIONS(5658), + [anon_sym_GT] = ACTIONS(5660), + [anon_sym_GT_EQ] = ACTIONS(5658), + [anon_sym_LT_EQ] = ACTIONS(5660), + [anon_sym_LT] = ACTIONS(5660), + [anon_sym_LT_LT] = ACTIONS(5660), + [anon_sym_GT_GT] = ACTIONS(5660), + [anon_sym_SEMI] = ACTIONS(5658), + [anon_sym_RBRACE] = ACTIONS(5658), + [anon_sym_LBRACK] = ACTIONS(5658), + [anon_sym_RBRACK] = ACTIONS(5658), + [anon_sym_EQ] = ACTIONS(5660), + [anon_sym_COLON] = ACTIONS(5658), + [anon_sym_QMARK] = ACTIONS(5658), + [anon_sym_STAR_EQ] = ACTIONS(5658), + [anon_sym_SLASH_EQ] = ACTIONS(5658), + [anon_sym_PERCENT_EQ] = ACTIONS(5658), + [anon_sym_PLUS_EQ] = ACTIONS(5658), + [anon_sym_DASH_EQ] = ACTIONS(5658), + [anon_sym_LT_LT_EQ] = ACTIONS(5658), + [anon_sym_GT_GT_EQ] = ACTIONS(5658), + [anon_sym_AMP_EQ] = ACTIONS(5658), + [anon_sym_CARET_EQ] = ACTIONS(5658), + [anon_sym_PIPE_EQ] = ACTIONS(5658), + [anon_sym_and_eq] = ACTIONS(5660), + [anon_sym_or_eq] = ACTIONS(5660), + [anon_sym_xor_eq] = ACTIONS(5660), + [anon_sym_LT_EQ_GT] = ACTIONS(5658), + [anon_sym_or] = ACTIONS(5660), + [anon_sym_and] = ACTIONS(5660), + [anon_sym_bitor] = ACTIONS(5660), + [anon_sym_xor] = ACTIONS(5660), + [anon_sym_bitand] = ACTIONS(5660), + [anon_sym_not_eq] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5658), + [anon_sym_DOT] = ACTIONS(5660), + [anon_sym_DOT_STAR] = ACTIONS(5658), + [anon_sym_DASH_GT] = ACTIONS(5658), + [anon_sym_L_DQUOTE] = ACTIONS(5658), + [anon_sym_u_DQUOTE] = ACTIONS(5658), + [anon_sym_U_DQUOTE] = ACTIONS(5658), + [anon_sym_u8_DQUOTE] = ACTIONS(5658), + [anon_sym_DQUOTE] = ACTIONS(5658), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5658), + [anon_sym_LR_DQUOTE] = ACTIONS(5658), + [anon_sym_uR_DQUOTE] = ACTIONS(5658), + [anon_sym_UR_DQUOTE] = ACTIONS(5658), + [anon_sym_u8R_DQUOTE] = ACTIONS(5658), + [sym_literal_suffix] = ACTIONS(5660), }, - [2253] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2254), - [ts_builtin_sym_end] = ACTIONS(6062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6062), - [anon_sym_COMMA] = ACTIONS(6062), - [anon_sym_RPAREN] = ACTIONS(6062), - [anon_sym_LPAREN2] = ACTIONS(6062), - [anon_sym_DASH] = ACTIONS(6064), - [anon_sym_PLUS] = ACTIONS(6064), - [anon_sym_STAR] = ACTIONS(6064), - [anon_sym_SLASH] = ACTIONS(6064), - [anon_sym_PERCENT] = ACTIONS(6064), - [anon_sym_PIPE_PIPE] = ACTIONS(6062), - [anon_sym_AMP_AMP] = ACTIONS(6062), - [anon_sym_PIPE] = ACTIONS(6064), - [anon_sym_CARET] = ACTIONS(6064), - [anon_sym_AMP] = ACTIONS(6064), - [anon_sym_EQ_EQ] = ACTIONS(6062), - [anon_sym_BANG_EQ] = ACTIONS(6062), - [anon_sym_GT] = ACTIONS(6064), - [anon_sym_GT_EQ] = ACTIONS(6062), - [anon_sym_LT_EQ] = ACTIONS(6064), - [anon_sym_LT] = ACTIONS(6064), - [anon_sym_LT_LT] = ACTIONS(6064), - [anon_sym_GT_GT] = ACTIONS(6064), - [anon_sym_SEMI] = ACTIONS(6062), - [anon_sym___attribute__] = ACTIONS(6062), - [anon_sym_LBRACE] = ACTIONS(6062), - [anon_sym_RBRACE] = ACTIONS(6062), - [anon_sym_signed] = ACTIONS(6138), - [anon_sym_unsigned] = ACTIONS(6138), - [anon_sym_long] = ACTIONS(6138), - [anon_sym_short] = ACTIONS(6138), - [anon_sym_LBRACK] = ACTIONS(6062), - [anon_sym_RBRACK] = ACTIONS(6062), - [anon_sym_EQ] = ACTIONS(6064), - [anon_sym_COLON] = ACTIONS(6062), - [anon_sym_QMARK] = ACTIONS(6062), - [anon_sym_STAR_EQ] = ACTIONS(6062), - [anon_sym_SLASH_EQ] = ACTIONS(6062), - [anon_sym_PERCENT_EQ] = ACTIONS(6062), - [anon_sym_PLUS_EQ] = ACTIONS(6062), - [anon_sym_DASH_EQ] = ACTIONS(6062), - [anon_sym_LT_LT_EQ] = ACTIONS(6062), - [anon_sym_GT_GT_EQ] = ACTIONS(6062), - [anon_sym_AMP_EQ] = ACTIONS(6062), - [anon_sym_CARET_EQ] = ACTIONS(6062), - [anon_sym_PIPE_EQ] = ACTIONS(6062), - [anon_sym_and_eq] = ACTIONS(6062), - [anon_sym_or_eq] = ACTIONS(6062), - [anon_sym_xor_eq] = ACTIONS(6062), - [anon_sym_LT_EQ_GT] = ACTIONS(6062), - [anon_sym_or] = ACTIONS(6064), - [anon_sym_and] = ACTIONS(6064), - [anon_sym_bitor] = ACTIONS(6062), - [anon_sym_xor] = ACTIONS(6064), - [anon_sym_bitand] = ACTIONS(6062), - [anon_sym_not_eq] = ACTIONS(6062), - [anon_sym_DASH_DASH] = ACTIONS(6062), - [anon_sym_PLUS_PLUS] = ACTIONS(6062), - [anon_sym_DOT] = ACTIONS(6064), - [anon_sym_DOT_STAR] = ACTIONS(6062), - [anon_sym_DASH_GT] = ACTIONS(6062), + [2212] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2178), + [ts_builtin_sym_end] = ACTIONS(6156), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6156), + [anon_sym_COMMA] = ACTIONS(6156), + [anon_sym_RPAREN] = ACTIONS(6156), + [anon_sym_LPAREN2] = ACTIONS(6156), + [anon_sym_DASH] = ACTIONS(6158), + [anon_sym_PLUS] = ACTIONS(6158), + [anon_sym_STAR] = ACTIONS(6156), + [anon_sym_SLASH] = ACTIONS(6158), + [anon_sym_PERCENT] = ACTIONS(6156), + [anon_sym_PIPE_PIPE] = ACTIONS(6156), + [anon_sym_AMP_AMP] = ACTIONS(6156), + [anon_sym_PIPE] = ACTIONS(6158), + [anon_sym_CARET] = ACTIONS(6156), + [anon_sym_AMP] = ACTIONS(6158), + [anon_sym_EQ_EQ] = ACTIONS(6156), + [anon_sym_BANG_EQ] = ACTIONS(6156), + [anon_sym_GT] = ACTIONS(6158), + [anon_sym_GT_EQ] = ACTIONS(6156), + [anon_sym_LT_EQ] = ACTIONS(6158), + [anon_sym_LT] = ACTIONS(6158), + [anon_sym_LT_LT] = ACTIONS(6156), + [anon_sym_GT_GT] = ACTIONS(6156), + [anon_sym_SEMI] = ACTIONS(6156), + [anon_sym___extension__] = ACTIONS(6156), + [anon_sym___attribute__] = ACTIONS(6156), + [anon_sym_LBRACE] = ACTIONS(6156), + [anon_sym_RBRACE] = ACTIONS(6156), + [anon_sym_signed] = ACTIONS(6160), + [anon_sym_unsigned] = ACTIONS(6160), + [anon_sym_long] = ACTIONS(6160), + [anon_sym_short] = ACTIONS(6160), + [anon_sym_LBRACK] = ACTIONS(6156), + [anon_sym_RBRACK] = ACTIONS(6156), + [anon_sym_const] = ACTIONS(6158), + [anon_sym_constexpr] = ACTIONS(6156), + [anon_sym_volatile] = ACTIONS(6156), + [anon_sym_restrict] = ACTIONS(6156), + [anon_sym___restrict__] = ACTIONS(6156), + [anon_sym__Atomic] = ACTIONS(6156), + [anon_sym__Noreturn] = ACTIONS(6156), + [anon_sym_noreturn] = ACTIONS(6156), + [anon_sym_mutable] = ACTIONS(6156), + [anon_sym_constinit] = ACTIONS(6156), + [anon_sym_consteval] = ACTIONS(6156), + [anon_sym_COLON] = ACTIONS(6156), + [anon_sym_QMARK] = ACTIONS(6156), + [anon_sym_LT_EQ_GT] = ACTIONS(6156), + [anon_sym_or] = ACTIONS(6156), + [anon_sym_and] = ACTIONS(6156), + [anon_sym_bitor] = ACTIONS(6156), + [anon_sym_xor] = ACTIONS(6156), + [anon_sym_bitand] = ACTIONS(6156), + [anon_sym_not_eq] = ACTIONS(6156), + [anon_sym_DASH_DASH] = ACTIONS(6156), + [anon_sym_PLUS_PLUS] = ACTIONS(6156), + [anon_sym_DOT] = ACTIONS(6158), + [anon_sym_DOT_STAR] = ACTIONS(6156), + [anon_sym_DASH_GT] = ACTIONS(6156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6156), + [anon_sym_decltype] = ACTIONS(6156), + [anon_sym_final] = ACTIONS(6156), + [anon_sym_override] = ACTIONS(6156), + [anon_sym_requires] = ACTIONS(6156), + [sym_semgrep_metavar] = ACTIONS(6156), + }, + [2213] = { + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(6050), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(3324), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7571), + [sym_qualified_type_identifier] = STATE(4526), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5478), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_union] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6062), - [anon_sym_decltype] = ACTIONS(6062), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1534), }, - [2254] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2254), - [ts_builtin_sym_end] = ACTIONS(5697), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5697), - [anon_sym_COMMA] = ACTIONS(5697), - [anon_sym_RPAREN] = ACTIONS(5697), - [anon_sym_LPAREN2] = ACTIONS(5697), - [anon_sym_DASH] = ACTIONS(5699), - [anon_sym_PLUS] = ACTIONS(5699), - [anon_sym_STAR] = ACTIONS(5699), - [anon_sym_SLASH] = ACTIONS(5699), - [anon_sym_PERCENT] = ACTIONS(5699), - [anon_sym_PIPE_PIPE] = ACTIONS(5697), - [anon_sym_AMP_AMP] = ACTIONS(5697), - [anon_sym_PIPE] = ACTIONS(5699), - [anon_sym_CARET] = ACTIONS(5699), - [anon_sym_AMP] = ACTIONS(5699), - [anon_sym_EQ_EQ] = ACTIONS(5697), - [anon_sym_BANG_EQ] = ACTIONS(5697), - [anon_sym_GT] = ACTIONS(5699), - [anon_sym_GT_EQ] = ACTIONS(5697), - [anon_sym_LT_EQ] = ACTIONS(5699), - [anon_sym_LT] = ACTIONS(5699), - [anon_sym_LT_LT] = ACTIONS(5699), - [anon_sym_GT_GT] = ACTIONS(5699), - [anon_sym_SEMI] = ACTIONS(5697), - [anon_sym___attribute__] = ACTIONS(5697), - [anon_sym_LBRACE] = ACTIONS(5697), - [anon_sym_RBRACE] = ACTIONS(5697), - [anon_sym_signed] = ACTIONS(6209), - [anon_sym_unsigned] = ACTIONS(6209), - [anon_sym_long] = ACTIONS(6209), - [anon_sym_short] = ACTIONS(6209), - [anon_sym_LBRACK] = ACTIONS(5697), - [anon_sym_RBRACK] = ACTIONS(5697), - [anon_sym_EQ] = ACTIONS(5699), - [anon_sym_COLON] = ACTIONS(5697), - [anon_sym_QMARK] = ACTIONS(5697), - [anon_sym_STAR_EQ] = ACTIONS(5697), - [anon_sym_SLASH_EQ] = ACTIONS(5697), - [anon_sym_PERCENT_EQ] = ACTIONS(5697), - [anon_sym_PLUS_EQ] = ACTIONS(5697), - [anon_sym_DASH_EQ] = ACTIONS(5697), - [anon_sym_LT_LT_EQ] = ACTIONS(5697), - [anon_sym_GT_GT_EQ] = ACTIONS(5697), - [anon_sym_AMP_EQ] = ACTIONS(5697), - [anon_sym_CARET_EQ] = ACTIONS(5697), - [anon_sym_PIPE_EQ] = ACTIONS(5697), - [anon_sym_and_eq] = ACTIONS(5697), - [anon_sym_or_eq] = ACTIONS(5697), - [anon_sym_xor_eq] = ACTIONS(5697), - [anon_sym_LT_EQ_GT] = ACTIONS(5697), - [anon_sym_or] = ACTIONS(5699), - [anon_sym_and] = ACTIONS(5699), - [anon_sym_bitor] = ACTIONS(5697), - [anon_sym_xor] = ACTIONS(5699), - [anon_sym_bitand] = ACTIONS(5697), - [anon_sym_not_eq] = ACTIONS(5697), - [anon_sym_DASH_DASH] = ACTIONS(5697), - [anon_sym_PLUS_PLUS] = ACTIONS(5697), - [anon_sym_DOT] = ACTIONS(5699), - [anon_sym_DOT_STAR] = ACTIONS(5697), - [anon_sym_DASH_GT] = ACTIONS(5697), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5697), - [anon_sym_decltype] = ACTIONS(5697), + [2214] = { + [sym_identifier] = ACTIONS(3060), + [aux_sym_preproc_def_token1] = ACTIONS(3060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3062), + [aux_sym_preproc_if_token1] = ACTIONS(3060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3060), + [sym_preproc_directive] = ACTIONS(3060), + [anon_sym_LPAREN2] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3062), + [anon_sym_AMP_AMP] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym___extension__] = ACTIONS(3060), + [anon_sym_typedef] = ACTIONS(3060), + [anon_sym_extern] = ACTIONS(3060), + [anon_sym___attribute__] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3062), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3062), + [anon_sym___declspec] = ACTIONS(3060), + [anon_sym___based] = ACTIONS(3060), + [anon_sym_RBRACE] = ACTIONS(3062), + [anon_sym_signed] = ACTIONS(3060), + [anon_sym_unsigned] = ACTIONS(3060), + [anon_sym_long] = ACTIONS(3060), + [anon_sym_short] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_register] = ACTIONS(3060), + [anon_sym_inline] = ACTIONS(3060), + [anon_sym___inline] = ACTIONS(3060), + [anon_sym___inline__] = ACTIONS(3060), + [anon_sym___forceinline] = ACTIONS(3060), + [anon_sym_thread_local] = ACTIONS(3060), + [anon_sym___thread] = ACTIONS(3060), + [anon_sym_const] = ACTIONS(3060), + [anon_sym_constexpr] = ACTIONS(3060), + [anon_sym_volatile] = ACTIONS(3060), + [anon_sym_restrict] = ACTIONS(3060), + [anon_sym___restrict__] = ACTIONS(3060), + [anon_sym__Atomic] = ACTIONS(3060), + [anon_sym__Noreturn] = ACTIONS(3060), + [anon_sym_noreturn] = ACTIONS(3060), + [anon_sym_mutable] = ACTIONS(3060), + [anon_sym_constinit] = ACTIONS(3060), + [anon_sym_consteval] = ACTIONS(3060), + [sym_primitive_type] = ACTIONS(3060), + [anon_sym_enum] = ACTIONS(3060), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3060), + [anon_sym_union] = ACTIONS(3060), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3060), + [anon_sym_decltype] = ACTIONS(3060), + [anon_sym_virtual] = ACTIONS(3060), + [anon_sym_alignas] = ACTIONS(3060), + [anon_sym_explicit] = ACTIONS(3060), + [anon_sym_typename] = ACTIONS(3060), + [anon_sym_template] = ACTIONS(3060), + [anon_sym_operator] = ACTIONS(3060), + [anon_sym_friend] = ACTIONS(3060), + [anon_sym_public] = ACTIONS(3060), + [anon_sym_private] = ACTIONS(3060), + [anon_sym_protected] = ACTIONS(3060), + [anon_sym_using] = ACTIONS(3060), + [anon_sym_static_assert] = ACTIONS(3060), + [anon_sym_catch] = ACTIONS(3060), + [sym_semgrep_metavar] = ACTIONS(3062), }, - [2255] = { - [sym_identifier] = ACTIONS(3101), - [aux_sym_preproc_def_token1] = ACTIONS(3101), - [aux_sym_preproc_if_token1] = ACTIONS(3101), - [aux_sym_preproc_if_token2] = ACTIONS(3101), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3101), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3101), - [sym_preproc_directive] = ACTIONS(3101), - [anon_sym_LPAREN2] = ACTIONS(3103), - [anon_sym_TILDE] = ACTIONS(3103), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_AMP_AMP] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym___extension__] = ACTIONS(3101), - [anon_sym_typedef] = ACTIONS(3101), - [anon_sym_extern] = ACTIONS(3101), - [anon_sym___attribute__] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(3103), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3103), - [anon_sym___declspec] = ACTIONS(3101), - [anon_sym___based] = ACTIONS(3101), - [anon_sym_signed] = ACTIONS(3101), - [anon_sym_unsigned] = ACTIONS(3101), - [anon_sym_long] = ACTIONS(3101), - [anon_sym_short] = ACTIONS(3101), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_static] = ACTIONS(3101), - [anon_sym_register] = ACTIONS(3101), - [anon_sym_inline] = ACTIONS(3101), - [anon_sym___inline] = ACTIONS(3101), - [anon_sym___inline__] = ACTIONS(3101), - [anon_sym___forceinline] = ACTIONS(3101), - [anon_sym_thread_local] = ACTIONS(3101), - [anon_sym___thread] = ACTIONS(3101), - [anon_sym_const] = ACTIONS(3101), - [anon_sym_constexpr] = ACTIONS(3101), - [anon_sym_volatile] = ACTIONS(3101), - [anon_sym_restrict] = ACTIONS(3101), - [anon_sym___restrict__] = ACTIONS(3101), - [anon_sym__Atomic] = ACTIONS(3101), - [anon_sym__Noreturn] = ACTIONS(3101), - [anon_sym_noreturn] = ACTIONS(3101), - [anon_sym_mutable] = ACTIONS(3101), - [anon_sym_constinit] = ACTIONS(3101), - [anon_sym_consteval] = ACTIONS(3101), - [sym_primitive_type] = ACTIONS(3101), - [anon_sym_enum] = ACTIONS(3101), - [anon_sym_class] = ACTIONS(3101), - [anon_sym_struct] = ACTIONS(3101), - [anon_sym_union] = ACTIONS(3101), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3101), - [anon_sym_decltype] = ACTIONS(3101), - [anon_sym_virtual] = ACTIONS(3101), - [anon_sym_alignas] = ACTIONS(3101), - [anon_sym_explicit] = ACTIONS(3101), - [anon_sym_typename] = ACTIONS(3101), - [anon_sym_template] = ACTIONS(3101), - [anon_sym_operator] = ACTIONS(3101), - [anon_sym_friend] = ACTIONS(3101), - [anon_sym_public] = ACTIONS(3101), - [anon_sym_private] = ACTIONS(3101), - [anon_sym_protected] = ACTIONS(3101), - [anon_sym_using] = ACTIONS(3101), - [anon_sym_static_assert] = ACTIONS(3101), - [anon_sym_catch] = ACTIONS(3101), + [2215] = { + [sym_string_literal] = STATE(2729), + [sym_template_argument_list] = STATE(4089), + [sym_raw_string_literal] = STATE(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4765), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4773), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4773), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(5946), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_SEMI] = ACTIONS(4765), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_EQ] = ACTIONS(4797), + [anon_sym_COLON] = ACTIONS(6162), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4801), + [anon_sym_SLASH_EQ] = ACTIONS(4801), + [anon_sym_PERCENT_EQ] = ACTIONS(4801), + [anon_sym_PLUS_EQ] = ACTIONS(4801), + [anon_sym_DASH_EQ] = ACTIONS(4801), + [anon_sym_LT_LT_EQ] = ACTIONS(4801), + [anon_sym_GT_GT_EQ] = ACTIONS(4801), + [anon_sym_AMP_EQ] = ACTIONS(4801), + [anon_sym_CARET_EQ] = ACTIONS(4801), + [anon_sym_PIPE_EQ] = ACTIONS(4801), + [anon_sym_and_eq] = ACTIONS(4801), + [anon_sym_or_eq] = ACTIONS(4801), + [anon_sym_xor_eq] = ACTIONS(4801), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4765), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4765), + [anon_sym_not_eq] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), }, - [2256] = { - [sym_template_argument_list] = STATE(2502), - [sym_identifier] = ACTIONS(6197), - [anon_sym_LPAREN2] = ACTIONS(4853), - [anon_sym_TILDE] = ACTIONS(4853), - [anon_sym_STAR] = ACTIONS(4853), - [anon_sym_PIPE_PIPE] = ACTIONS(4853), - [anon_sym_AMP_AMP] = ACTIONS(4853), - [anon_sym_AMP] = ACTIONS(6197), - [anon_sym_LT] = ACTIONS(6184), - [anon_sym___extension__] = ACTIONS(6197), - [anon_sym_extern] = ACTIONS(6197), - [anon_sym___attribute__] = ACTIONS(6197), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4853), - [anon_sym___declspec] = ACTIONS(6197), - [anon_sym___based] = ACTIONS(6197), - [anon_sym___cdecl] = ACTIONS(6197), - [anon_sym___clrcall] = ACTIONS(6197), - [anon_sym___stdcall] = ACTIONS(6197), - [anon_sym___fastcall] = ACTIONS(6197), - [anon_sym___thiscall] = ACTIONS(6197), - [anon_sym___vectorcall] = ACTIONS(6197), - [anon_sym_signed] = ACTIONS(6197), - [anon_sym_unsigned] = ACTIONS(6197), - [anon_sym_long] = ACTIONS(6197), - [anon_sym_short] = ACTIONS(6197), - [anon_sym_LBRACK] = ACTIONS(6197), - [anon_sym_static] = ACTIONS(6197), - [anon_sym_register] = ACTIONS(6197), - [anon_sym_inline] = ACTIONS(6197), - [anon_sym___inline] = ACTIONS(6197), - [anon_sym___inline__] = ACTIONS(6197), - [anon_sym___forceinline] = ACTIONS(6197), - [anon_sym_thread_local] = ACTIONS(6197), - [anon_sym___thread] = ACTIONS(6197), - [anon_sym_const] = ACTIONS(6197), - [anon_sym_constexpr] = ACTIONS(6197), - [anon_sym_volatile] = ACTIONS(6197), - [anon_sym_restrict] = ACTIONS(6197), - [anon_sym___restrict__] = ACTIONS(6197), - [anon_sym__Atomic] = ACTIONS(6197), - [anon_sym__Noreturn] = ACTIONS(6197), - [anon_sym_noreturn] = ACTIONS(6197), - [anon_sym_mutable] = ACTIONS(6197), - [anon_sym_constinit] = ACTIONS(6197), - [anon_sym_consteval] = ACTIONS(6197), - [sym_primitive_type] = ACTIONS(6197), - [anon_sym_enum] = ACTIONS(6197), - [anon_sym_class] = ACTIONS(6197), - [anon_sym_struct] = ACTIONS(6197), - [anon_sym_union] = ACTIONS(6197), - [anon_sym_or] = ACTIONS(6197), - [anon_sym_and] = ACTIONS(6197), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6197), - [anon_sym_decltype] = ACTIONS(6197), - [anon_sym_virtual] = ACTIONS(6197), - [anon_sym_alignas] = ACTIONS(6197), - [anon_sym_explicit] = ACTIONS(6197), - [anon_sym_typename] = ACTIONS(6197), - [anon_sym_template] = ACTIONS(6197), - [anon_sym_operator] = ACTIONS(6197), - [anon_sym_friend] = ACTIONS(6197), - [anon_sym_using] = ACTIONS(6197), - [anon_sym_concept] = ACTIONS(6197), + [2216] = { + [sym_string_literal] = STATE(2216), + [sym_raw_string_literal] = STATE(2216), + [aux_sym_concatenated_string_repeat1] = STATE(2216), + [sym_identifier] = ACTIONS(6164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5562), + [anon_sym_COMMA] = ACTIONS(5562), + [anon_sym_RPAREN] = ACTIONS(5562), + [anon_sym_LPAREN2] = ACTIONS(5562), + [anon_sym_DASH] = ACTIONS(5567), + [anon_sym_PLUS] = ACTIONS(5567), + [anon_sym_STAR] = ACTIONS(5567), + [anon_sym_SLASH] = ACTIONS(5567), + [anon_sym_PERCENT] = ACTIONS(5567), + [anon_sym_PIPE_PIPE] = ACTIONS(5562), + [anon_sym_AMP_AMP] = ACTIONS(5562), + [anon_sym_PIPE] = ACTIONS(5567), + [anon_sym_CARET] = ACTIONS(5567), + [anon_sym_AMP] = ACTIONS(5567), + [anon_sym_EQ_EQ] = ACTIONS(5562), + [anon_sym_BANG_EQ] = ACTIONS(5562), + [anon_sym_GT] = ACTIONS(5567), + [anon_sym_GT_EQ] = ACTIONS(5562), + [anon_sym_LT_EQ] = ACTIONS(5567), + [anon_sym_LT] = ACTIONS(5567), + [anon_sym_LT_LT] = ACTIONS(5567), + [anon_sym_GT_GT] = ACTIONS(5567), + [anon_sym_LBRACK] = ACTIONS(5562), + [anon_sym_EQ] = ACTIONS(5567), + [anon_sym_QMARK] = ACTIONS(5562), + [anon_sym_STAR_EQ] = ACTIONS(5562), + [anon_sym_SLASH_EQ] = ACTIONS(5562), + [anon_sym_PERCENT_EQ] = ACTIONS(5562), + [anon_sym_PLUS_EQ] = ACTIONS(5562), + [anon_sym_DASH_EQ] = ACTIONS(5562), + [anon_sym_LT_LT_EQ] = ACTIONS(5562), + [anon_sym_GT_GT_EQ] = ACTIONS(5562), + [anon_sym_AMP_EQ] = ACTIONS(5562), + [anon_sym_CARET_EQ] = ACTIONS(5562), + [anon_sym_PIPE_EQ] = ACTIONS(5562), + [anon_sym_and_eq] = ACTIONS(5567), + [anon_sym_or_eq] = ACTIONS(5567), + [anon_sym_xor_eq] = ACTIONS(5567), + [anon_sym_LT_EQ_GT] = ACTIONS(5562), + [anon_sym_or] = ACTIONS(5567), + [anon_sym_and] = ACTIONS(5567), + [anon_sym_bitor] = ACTIONS(5567), + [anon_sym_xor] = ACTIONS(5567), + [anon_sym_bitand] = ACTIONS(5567), + [anon_sym_not_eq] = ACTIONS(5567), + [anon_sym_DASH_DASH] = ACTIONS(5562), + [anon_sym_PLUS_PLUS] = ACTIONS(5562), + [anon_sym_DOT] = ACTIONS(5567), + [anon_sym_DOT_STAR] = ACTIONS(5562), + [anon_sym_DASH_GT] = ACTIONS(5567), + [anon_sym_L_DQUOTE] = ACTIONS(6167), + [anon_sym_u_DQUOTE] = ACTIONS(6167), + [anon_sym_U_DQUOTE] = ACTIONS(6167), + [anon_sym_u8_DQUOTE] = ACTIONS(6167), + [anon_sym_DQUOTE] = ACTIONS(6167), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6170), + [anon_sym_LR_DQUOTE] = ACTIONS(6170), + [anon_sym_uR_DQUOTE] = ACTIONS(6170), + [anon_sym_UR_DQUOTE] = ACTIONS(6170), + [anon_sym_u8R_DQUOTE] = ACTIONS(6170), + [anon_sym_DASH_GT_STAR] = ACTIONS(5562), + [sym_literal_suffix] = ACTIONS(5567), }, - [2257] = { - [sym_identifier] = ACTIONS(3078), - [aux_sym_preproc_def_token1] = ACTIONS(3078), - [aux_sym_preproc_if_token1] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3078), - [sym_preproc_directive] = ACTIONS(3078), - [anon_sym_LPAREN2] = ACTIONS(3080), - [anon_sym_TILDE] = ACTIONS(3080), - [anon_sym_STAR] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym___extension__] = ACTIONS(3078), - [anon_sym_typedef] = ACTIONS(3078), - [anon_sym_extern] = ACTIONS(3078), - [anon_sym___attribute__] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3080), - [anon_sym___declspec] = ACTIONS(3078), - [anon_sym___based] = ACTIONS(3078), - [anon_sym_RBRACE] = ACTIONS(3080), - [anon_sym_signed] = ACTIONS(3078), - [anon_sym_unsigned] = ACTIONS(3078), - [anon_sym_long] = ACTIONS(3078), - [anon_sym_short] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_static] = ACTIONS(3078), - [anon_sym_register] = ACTIONS(3078), - [anon_sym_inline] = ACTIONS(3078), - [anon_sym___inline] = ACTIONS(3078), - [anon_sym___inline__] = ACTIONS(3078), - [anon_sym___forceinline] = ACTIONS(3078), - [anon_sym_thread_local] = ACTIONS(3078), - [anon_sym___thread] = ACTIONS(3078), - [anon_sym_const] = ACTIONS(3078), - [anon_sym_constexpr] = ACTIONS(3078), - [anon_sym_volatile] = ACTIONS(3078), - [anon_sym_restrict] = ACTIONS(3078), - [anon_sym___restrict__] = ACTIONS(3078), - [anon_sym__Atomic] = ACTIONS(3078), - [anon_sym__Noreturn] = ACTIONS(3078), - [anon_sym_noreturn] = ACTIONS(3078), - [anon_sym_mutable] = ACTIONS(3078), - [anon_sym_constinit] = ACTIONS(3078), - [anon_sym_consteval] = ACTIONS(3078), - [sym_primitive_type] = ACTIONS(3078), - [anon_sym_enum] = ACTIONS(3078), - [anon_sym_class] = ACTIONS(3078), - [anon_sym_struct] = ACTIONS(3078), - [anon_sym_union] = ACTIONS(3078), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3078), - [anon_sym_decltype] = ACTIONS(3078), - [anon_sym_virtual] = ACTIONS(3078), - [anon_sym_alignas] = ACTIONS(3078), - [anon_sym_explicit] = ACTIONS(3078), - [anon_sym_typename] = ACTIONS(3078), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_operator] = ACTIONS(3078), - [anon_sym_friend] = ACTIONS(3078), - [anon_sym_public] = ACTIONS(3078), - [anon_sym_private] = ACTIONS(3078), - [anon_sym_protected] = ACTIONS(3078), - [anon_sym_using] = ACTIONS(3078), - [anon_sym_static_assert] = ACTIONS(3078), - [anon_sym_catch] = ACTIONS(3078), + [2217] = { + [sym_template_argument_list] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2477), + [ts_builtin_sym_end] = ACTIONS(6088), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6088), + [anon_sym_COMMA] = ACTIONS(6088), + [anon_sym_RPAREN] = ACTIONS(6088), + [anon_sym_LPAREN2] = ACTIONS(6088), + [anon_sym_DASH] = ACTIONS(6090), + [anon_sym_PLUS] = ACTIONS(6090), + [anon_sym_STAR] = ACTIONS(6090), + [anon_sym_SLASH] = ACTIONS(6090), + [anon_sym_PERCENT] = ACTIONS(6090), + [anon_sym_PIPE_PIPE] = ACTIONS(6088), + [anon_sym_AMP_AMP] = ACTIONS(6088), + [anon_sym_PIPE] = ACTIONS(6090), + [anon_sym_CARET] = ACTIONS(6090), + [anon_sym_AMP] = ACTIONS(6090), + [anon_sym_EQ_EQ] = ACTIONS(6088), + [anon_sym_BANG_EQ] = ACTIONS(6088), + [anon_sym_GT] = ACTIONS(6090), + [anon_sym_GT_EQ] = ACTIONS(6088), + [anon_sym_LT_EQ] = ACTIONS(6090), + [anon_sym_LT] = ACTIONS(6090), + [anon_sym_LT_LT] = ACTIONS(6090), + [anon_sym_GT_GT] = ACTIONS(6090), + [anon_sym_SEMI] = ACTIONS(6088), + [anon_sym___attribute__] = ACTIONS(6088), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(6088), + [anon_sym_RBRACE] = ACTIONS(6088), + [anon_sym_signed] = ACTIONS(6117), + [anon_sym_unsigned] = ACTIONS(6117), + [anon_sym_long] = ACTIONS(6117), + [anon_sym_short] = ACTIONS(6117), + [anon_sym_LBRACK] = ACTIONS(6088), + [anon_sym_RBRACK] = ACTIONS(6088), + [anon_sym_EQ] = ACTIONS(6090), + [anon_sym_COLON] = ACTIONS(6090), + [anon_sym_QMARK] = ACTIONS(6088), + [anon_sym_STAR_EQ] = ACTIONS(6088), + [anon_sym_SLASH_EQ] = ACTIONS(6088), + [anon_sym_PERCENT_EQ] = ACTIONS(6088), + [anon_sym_PLUS_EQ] = ACTIONS(6088), + [anon_sym_DASH_EQ] = ACTIONS(6088), + [anon_sym_LT_LT_EQ] = ACTIONS(6088), + [anon_sym_GT_GT_EQ] = ACTIONS(6088), + [anon_sym_AMP_EQ] = ACTIONS(6088), + [anon_sym_CARET_EQ] = ACTIONS(6088), + [anon_sym_PIPE_EQ] = ACTIONS(6088), + [anon_sym_and_eq] = ACTIONS(6088), + [anon_sym_or_eq] = ACTIONS(6088), + [anon_sym_xor_eq] = ACTIONS(6088), + [anon_sym_LT_EQ_GT] = ACTIONS(6088), + [anon_sym_or] = ACTIONS(6090), + [anon_sym_and] = ACTIONS(6090), + [anon_sym_bitor] = ACTIONS(6088), + [anon_sym_xor] = ACTIONS(6090), + [anon_sym_bitand] = ACTIONS(6088), + [anon_sym_not_eq] = ACTIONS(6088), + [anon_sym_DASH_DASH] = ACTIONS(6088), + [anon_sym_PLUS_PLUS] = ACTIONS(6088), + [anon_sym_DOT] = ACTIONS(6090), + [anon_sym_DOT_STAR] = ACTIONS(6088), + [anon_sym_DASH_GT] = ACTIONS(6088), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6088), + [anon_sym_decltype] = ACTIONS(6088), }, - [2258] = { - [sym_template_argument_list] = STATE(2382), - [sym_identifier] = ACTIONS(5460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5467), - [anon_sym_COMMA] = ACTIONS(5467), - [aux_sym_preproc_if_token2] = ACTIONS(5467), - [aux_sym_preproc_else_token1] = ACTIONS(5467), - [aux_sym_preproc_elif_token1] = ACTIONS(5460), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5467), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5467), - [anon_sym_LPAREN2] = ACTIONS(5467), - [anon_sym_DASH] = ACTIONS(5460), - [anon_sym_PLUS] = ACTIONS(5460), - [anon_sym_STAR] = ACTIONS(5460), - [anon_sym_SLASH] = ACTIONS(5460), - [anon_sym_PERCENT] = ACTIONS(5460), - [anon_sym_PIPE_PIPE] = ACTIONS(5467), - [anon_sym_AMP_AMP] = ACTIONS(5467), - [anon_sym_PIPE] = ACTIONS(5460), - [anon_sym_CARET] = ACTIONS(5460), - [anon_sym_AMP] = ACTIONS(5460), - [anon_sym_EQ_EQ] = ACTIONS(5467), - [anon_sym_BANG_EQ] = ACTIONS(5467), - [anon_sym_GT] = ACTIONS(5460), - [anon_sym_GT_EQ] = ACTIONS(5467), - [anon_sym_LT_EQ] = ACTIONS(5460), - [anon_sym_LT] = ACTIONS(6212), - [anon_sym_LT_LT] = ACTIONS(5460), - [anon_sym_GT_GT] = ACTIONS(5460), - [anon_sym___attribute__] = ACTIONS(5460), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(5467), - [anon_sym_LBRACK] = ACTIONS(5467), - [anon_sym_EQ] = ACTIONS(5460), - [anon_sym_COLON] = ACTIONS(5460), - [anon_sym_QMARK] = ACTIONS(5467), - [anon_sym_STAR_EQ] = ACTIONS(5467), - [anon_sym_SLASH_EQ] = ACTIONS(5467), - [anon_sym_PERCENT_EQ] = ACTIONS(5467), - [anon_sym_PLUS_EQ] = ACTIONS(5467), - [anon_sym_DASH_EQ] = ACTIONS(5467), - [anon_sym_LT_LT_EQ] = ACTIONS(5467), - [anon_sym_GT_GT_EQ] = ACTIONS(5467), - [anon_sym_AMP_EQ] = ACTIONS(5467), - [anon_sym_CARET_EQ] = ACTIONS(5467), - [anon_sym_PIPE_EQ] = ACTIONS(5467), - [anon_sym_and_eq] = ACTIONS(5460), - [anon_sym_or_eq] = ACTIONS(5460), - [anon_sym_xor_eq] = ACTIONS(5460), - [anon_sym_LT_EQ_GT] = ACTIONS(5467), - [anon_sym_or] = ACTIONS(5460), - [anon_sym_and] = ACTIONS(5460), - [anon_sym_bitor] = ACTIONS(5460), - [anon_sym_xor] = ACTIONS(5460), - [anon_sym_bitand] = ACTIONS(5460), - [anon_sym_not_eq] = ACTIONS(5460), - [anon_sym_DASH_DASH] = ACTIONS(5467), - [anon_sym_PLUS_PLUS] = ACTIONS(5467), - [anon_sym_DOT] = ACTIONS(5460), - [anon_sym_DOT_STAR] = ACTIONS(5467), - [anon_sym_DASH_GT] = ACTIONS(5467), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5460), - [anon_sym_decltype] = ACTIONS(5460), - [anon_sym_final] = ACTIONS(5460), - [anon_sym_override] = ACTIONS(5460), + [2218] = { + [sym_identifier] = ACTIONS(2355), + [aux_sym_preproc_def_token1] = ACTIONS(2355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2353), + [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(2353), + [anon_sym_TILDE] = ACTIONS(2353), + [anon_sym_STAR] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(2353), + [anon_sym_AMP] = ACTIONS(2355), + [anon_sym___extension__] = ACTIONS(2355), + [anon_sym_typedef] = ACTIONS(2355), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym___attribute__] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(2353), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), + [anon_sym___declspec] = ACTIONS(2355), + [anon_sym___based] = ACTIONS(2355), + [anon_sym_signed] = ACTIONS(2355), + [anon_sym_unsigned] = ACTIONS(2355), + [anon_sym_long] = ACTIONS(2355), + [anon_sym_short] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_static] = ACTIONS(2355), + [anon_sym_register] = ACTIONS(2355), + [anon_sym_inline] = ACTIONS(2355), + [anon_sym___inline] = ACTIONS(2355), + [anon_sym___inline__] = ACTIONS(2355), + [anon_sym___forceinline] = ACTIONS(2355), + [anon_sym_thread_local] = ACTIONS(2355), + [anon_sym___thread] = ACTIONS(2355), + [anon_sym_const] = ACTIONS(2355), + [anon_sym_constexpr] = ACTIONS(2355), + [anon_sym_volatile] = ACTIONS(2355), + [anon_sym_restrict] = ACTIONS(2355), + [anon_sym___restrict__] = ACTIONS(2355), + [anon_sym__Atomic] = ACTIONS(2355), + [anon_sym__Noreturn] = ACTIONS(2355), + [anon_sym_noreturn] = ACTIONS(2355), + [anon_sym_mutable] = ACTIONS(2355), + [anon_sym_constinit] = ACTIONS(2355), + [anon_sym_consteval] = 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), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2355), + [anon_sym_decltype] = ACTIONS(2355), + [anon_sym_virtual] = ACTIONS(2355), + [anon_sym_alignas] = ACTIONS(2355), + [anon_sym_explicit] = ACTIONS(2355), + [anon_sym_typename] = ACTIONS(2355), + [anon_sym_template] = ACTIONS(2355), + [anon_sym_operator] = ACTIONS(2355), + [anon_sym_friend] = ACTIONS(2355), + [anon_sym_public] = ACTIONS(2355), + [anon_sym_private] = ACTIONS(2355), + [anon_sym_protected] = ACTIONS(2355), + [anon_sym_using] = ACTIONS(2355), + [anon_sym_static_assert] = ACTIONS(2355), + [anon_sym_catch] = ACTIONS(2355), + [sym_semgrep_metavar] = ACTIONS(2353), }, - [2259] = { - [sym_identifier] = ACTIONS(3096), - [aux_sym_preproc_def_token1] = ACTIONS(3096), - [aux_sym_preproc_if_token1] = ACTIONS(3096), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3096), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3096), - [sym_preproc_directive] = ACTIONS(3096), - [anon_sym_LPAREN2] = ACTIONS(3094), - [anon_sym_TILDE] = ACTIONS(3094), - [anon_sym_STAR] = ACTIONS(3094), - [anon_sym_AMP_AMP] = ACTIONS(3094), - [anon_sym_AMP] = ACTIONS(3096), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_typedef] = ACTIONS(3096), - [anon_sym_extern] = ACTIONS(3096), - [anon_sym___attribute__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(3094), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3094), - [anon_sym___declspec] = ACTIONS(3096), - [anon_sym___based] = ACTIONS(3096), - [anon_sym_RBRACE] = ACTIONS(3094), - [anon_sym_signed] = ACTIONS(3096), - [anon_sym_unsigned] = ACTIONS(3096), - [anon_sym_long] = ACTIONS(3096), - [anon_sym_short] = ACTIONS(3096), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_static] = ACTIONS(3096), - [anon_sym_register] = ACTIONS(3096), - [anon_sym_inline] = ACTIONS(3096), - [anon_sym___inline] = ACTIONS(3096), - [anon_sym___inline__] = ACTIONS(3096), - [anon_sym___forceinline] = ACTIONS(3096), - [anon_sym_thread_local] = ACTIONS(3096), - [anon_sym___thread] = ACTIONS(3096), - [anon_sym_const] = ACTIONS(3096), - [anon_sym_constexpr] = ACTIONS(3096), - [anon_sym_volatile] = ACTIONS(3096), - [anon_sym_restrict] = ACTIONS(3096), - [anon_sym___restrict__] = ACTIONS(3096), - [anon_sym__Atomic] = ACTIONS(3096), - [anon_sym__Noreturn] = ACTIONS(3096), - [anon_sym_noreturn] = ACTIONS(3096), - [anon_sym_mutable] = ACTIONS(3096), - [anon_sym_constinit] = ACTIONS(3096), - [anon_sym_consteval] = ACTIONS(3096), - [sym_primitive_type] = ACTIONS(3096), - [anon_sym_enum] = ACTIONS(3096), - [anon_sym_class] = ACTIONS(3096), - [anon_sym_struct] = ACTIONS(3096), - [anon_sym_union] = ACTIONS(3096), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3096), - [anon_sym_decltype] = ACTIONS(3096), - [anon_sym_virtual] = ACTIONS(3096), - [anon_sym_alignas] = ACTIONS(3096), - [anon_sym_explicit] = ACTIONS(3096), - [anon_sym_typename] = ACTIONS(3096), - [anon_sym_template] = ACTIONS(3096), - [anon_sym_operator] = ACTIONS(3096), - [anon_sym_friend] = ACTIONS(3096), - [anon_sym_public] = ACTIONS(3096), - [anon_sym_private] = ACTIONS(3096), - [anon_sym_protected] = ACTIONS(3096), - [anon_sym_using] = ACTIONS(3096), - [anon_sym_static_assert] = ACTIONS(3096), - [anon_sym_catch] = ACTIONS(3096), + [2219] = { + [sym_identifier] = ACTIONS(2359), + [aux_sym_preproc_def_token1] = ACTIONS(2359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2357), + [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(2357), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_STAR] = ACTIONS(2357), + [anon_sym_AMP_AMP] = ACTIONS(2357), + [anon_sym_AMP] = ACTIONS(2359), + [anon_sym___extension__] = ACTIONS(2359), + [anon_sym_typedef] = ACTIONS(2359), + [anon_sym_extern] = ACTIONS(2359), + [anon_sym___attribute__] = ACTIONS(2359), + [anon_sym_COLON_COLON] = ACTIONS(2357), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2357), + [anon_sym___declspec] = ACTIONS(2359), + [anon_sym___based] = ACTIONS(2359), + [anon_sym_signed] = ACTIONS(2359), + [anon_sym_unsigned] = ACTIONS(2359), + [anon_sym_long] = ACTIONS(2359), + [anon_sym_short] = ACTIONS(2359), + [anon_sym_LBRACK] = ACTIONS(2359), + [anon_sym_static] = ACTIONS(2359), + [anon_sym_register] = ACTIONS(2359), + [anon_sym_inline] = ACTIONS(2359), + [anon_sym___inline] = ACTIONS(2359), + [anon_sym___inline__] = ACTIONS(2359), + [anon_sym___forceinline] = ACTIONS(2359), + [anon_sym_thread_local] = ACTIONS(2359), + [anon_sym___thread] = ACTIONS(2359), + [anon_sym_const] = ACTIONS(2359), + [anon_sym_constexpr] = ACTIONS(2359), + [anon_sym_volatile] = ACTIONS(2359), + [anon_sym_restrict] = ACTIONS(2359), + [anon_sym___restrict__] = ACTIONS(2359), + [anon_sym__Atomic] = ACTIONS(2359), + [anon_sym__Noreturn] = ACTIONS(2359), + [anon_sym_noreturn] = ACTIONS(2359), + [anon_sym_mutable] = ACTIONS(2359), + [anon_sym_constinit] = ACTIONS(2359), + [anon_sym_consteval] = 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), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2359), + [anon_sym_decltype] = ACTIONS(2359), + [anon_sym_virtual] = ACTIONS(2359), + [anon_sym_alignas] = ACTIONS(2359), + [anon_sym_explicit] = ACTIONS(2359), + [anon_sym_typename] = ACTIONS(2359), + [anon_sym_template] = ACTIONS(2359), + [anon_sym_operator] = ACTIONS(2359), + [anon_sym_friend] = ACTIONS(2359), + [anon_sym_public] = ACTIONS(2359), + [anon_sym_private] = ACTIONS(2359), + [anon_sym_protected] = ACTIONS(2359), + [anon_sym_using] = ACTIONS(2359), + [anon_sym_static_assert] = ACTIONS(2359), + [anon_sym_catch] = ACTIONS(2359), + [sym_semgrep_metavar] = ACTIONS(2357), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3368), 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(3366), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [71] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3616), 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(3614), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [142] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2394), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6215), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6034), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6032), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [217] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3443), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3441), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [288] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2275), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6007), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6005), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [363] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3447), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3445), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [434] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2276), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6219), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6050), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6048), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [509] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3451), 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(3449), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [580] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3455), 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(3453), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [651] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3451), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3449), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [722] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5886), 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(5884), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [793] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3558), 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(3556), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [864] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3620), 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(3618), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [935] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3455), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3453), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [1006] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5930), 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(5928), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [1077] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2394), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6215), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5992), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5990), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [1152] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2394), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6215), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5998), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5996), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [1227] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3459), 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(3457), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [1298] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3463), 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(3461), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [1369] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5878), 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(5876), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [1440] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3467), 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(3465), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [1511] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3501), 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(3499), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [1582] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3352), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3350), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [1653] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3628), 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(3626), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [1724] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3229), 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(3227), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [1795] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3459), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3457), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [1866] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2448), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6221), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4827), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(4835), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [1941] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5951), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5949), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [2012] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6223), 1, - sym_identifier, - STATE(2361), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(4876), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4878), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5647), 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(5643), 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, - [2091] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6080), 1, - anon_sym___attribute__, - ACTIONS(6229), 1, - anon_sym_LBRACE, - ACTIONS(6231), 1, - anon_sym_COLON, - STATE(2573), 1, - sym_enum_base_clause, - STATE(2685), 1, - sym_enumerator_list, - STATE(2928), 1, - sym_attribute_specifier, - ACTIONS(6225), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6227), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [2174] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5886), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5884), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [2245] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3463), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3461), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [2316] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5930), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5928), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [2387] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5894), 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(5892), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [2458] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3467), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3465), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [2529] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6080), 1, - anon_sym___attribute__, - ACTIONS(6229), 1, - anon_sym_LBRACE, - ACTIONS(6231), 1, - anon_sym_COLON, - STATE(2575), 1, - sym_enum_base_clause, - STATE(2736), 1, - sym_enumerator_list, - STATE(2960), 1, - sym_attribute_specifier, - ACTIONS(6233), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6235), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [2612] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5874), 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(5872), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [2683] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5806), 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(5804), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [2754] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5683), 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_identifier, - sym_literal_suffix, - ACTIONS(5681), 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_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_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DASH_GT_STAR, - [2825] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3620), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3618), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [2896] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3352), 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(3350), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [2967] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3181), 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(3179), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [3038] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5854), 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(5852), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [3109] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3624), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3622), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [3180] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6114), 1, - anon_sym___attribute__, - ACTIONS(6241), 1, - anon_sym_LBRACE, - STATE(2458), 1, - sym_enumerator_list, - STATE(2609), 1, - sym_attribute_specifier, - ACTIONS(6239), 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(6237), 49, - ts_builtin_sym_end, - 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___extension__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [3259] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3364), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3362), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [3330] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5794), 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(5792), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [3401] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3364), 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(3362), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [3472] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5878), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5876), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [3543] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5944), 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(5942), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [3614] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3616), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3614), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [3685] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5882), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5880), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [3756] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5898), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5896), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [3827] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3374), 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(3372), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [3898] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3368), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3366), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [3969] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5915), 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(5913), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [4040] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3374), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3372), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [4111] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3378), 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(3376), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [4182] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6243), 1, - anon_sym_LT, - STATE(2596), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3016), 1, - sym_template_argument_list, - ACTIONS(6245), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4827), 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_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(4835), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [4263] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3181), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3179), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [4334] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3493), 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(3491), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [4405] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3497), 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(3495), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [4476] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3382), 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(3380), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [4547] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5675), 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_identifier, - sym_literal_suffix, - ACTIONS(5673), 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_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_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DASH_GT_STAR, - [4618] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5679), 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_identifier, - sym_literal_suffix, - ACTIONS(5677), 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_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_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DASH_GT_STAR, - [4689] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3386), 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(3384), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [4760] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3390), 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(3388), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [4831] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3394), 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(3392), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [4902] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3398), 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(3396), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [4973] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3497), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3495), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [5044] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5882), 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(5880), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [5115] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3501), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3499), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [5186] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5898), 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(5896), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [5257] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3628), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3626), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [5328] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3624), 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(3622), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [5399] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3378), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3376), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [5470] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3505), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3503), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [5541] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3505), 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(3503), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [5612] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3382), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [5683] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3646), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3644), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [5754] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3493), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3491), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [5825] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3141), 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(3139), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [5896] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3636), 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(3634), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [5967] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5794), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5792), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [6038] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5894), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5892), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [6109] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5940), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5938), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [6180] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5814), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5812), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [6251] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5822), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5820), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [6322] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5838), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5836), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [6393] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5858), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5856), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [6464] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5683), 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___attribute__, - 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_identifier, - sym_literal_suffix, - ACTIONS(5681), 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_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_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, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [6535] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5675), 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___attribute__, - 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_identifier, - sym_literal_suffix, - ACTIONS(5673), 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_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_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, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [6606] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5874), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5872), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [6677] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3513), 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(3511), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [6748] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5944), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5942), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [6819] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3513), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3511), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [6890] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5671), 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___attribute__, - 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_identifier, - sym_literal_suffix, - ACTIONS(5669), 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_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_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, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [6961] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5679), 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___attribute__, - 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_identifier, - sym_literal_suffix, - ACTIONS(5677), 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_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_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, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [7032] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5915), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5913), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [7103] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5940), 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(5938), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [7174] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5814), 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(5812), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [7245] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6247), 1, - sym_identifier, - STATE(2361), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(6250), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6253), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5635), 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(5630), 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, - [7324] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3517), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3515), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [7395] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5822), 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(5820), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [7466] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3632), 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(3630), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [7537] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5798), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5796), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [7608] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5802), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5800), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [7679] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5806), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5804), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [7750] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3443), 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(3441), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [7821] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5810), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5808), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [7892] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5818), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5816), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [7963] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5826), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5824), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [8034] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5830), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5828), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [8105] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5834), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5832), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [8176] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3517), 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(3515), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [8247] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5842), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5840), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [8318] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5846), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5844), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [8389] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5850), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5848), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [8460] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5850), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5848), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [8531] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5467), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - ACTIONS(5460), 32, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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, - anon_sym_final, - anon_sym_override, - [8604] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(5276), 1, - anon_sym_LPAREN2, - ACTIONS(6256), 1, - sym_identifier, - ACTIONS(6260), 1, - anon_sym_STAR, - ACTIONS(6262), 1, - anon_sym_AMP_AMP, - ACTIONS(6264), 1, - anon_sym_AMP, - ACTIONS(6266), 1, - anon_sym_LBRACK, - STATE(4027), 1, - sym_parameter_list, - STATE(6585), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7241), 1, - sym_scope_resolution, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(7557), 1, - sym_declarator, - STATE(7776), 1, - sym_abstract_declarator, - STATE(9737), 1, - sym_ms_based_modifier, - ACTIONS(3668), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3374), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(4146), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3666), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(6258), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_GT2, - STATE(7464), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(7634), 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, - ACTIONS(3664), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [8727] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6270), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6268), 32, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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, - anon_sym_final, - anon_sym_override, - [8798] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5525), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(5518), 32, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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, - anon_sym_final, - anon_sym_override, - [8869] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3640), 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(3638), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [8940] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5862), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5860), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [9011] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3386), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3384), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [9082] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3390), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3388), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [9153] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5864), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [9224] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5870), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5868), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [9295] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5870), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5868), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [9366] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3394), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3392), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [9437] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3632), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3630), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [9508] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5699), 1, - sym_primitive_type, - STATE(2407), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6272), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6019), 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___attribute__, - 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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6016), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [9585] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3191), 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(3189), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [9656] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2394), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6275), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5699), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5697), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [9731] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3447), 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(3445), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [9802] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5479), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(5477), 32, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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, - anon_sym_final, - anon_sym_override, - [9873] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3654), 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(3652), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [9944] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5483), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(5481), 32, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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, - anon_sym_final, - anon_sym_override, - [10015] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5502), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(5500), 32, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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, - anon_sym_final, - anon_sym_override, - [10086] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5498), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(5496), 32, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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, - anon_sym_final, - anon_sym_override, - [10157] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5509), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(5507), 32, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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, - anon_sym_final, - anon_sym_override, - [10228] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5513), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(5511), 32, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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, - anon_sym_final, - anon_sym_override, - [10299] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5458), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(5456), 32, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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, - anon_sym_final, - anon_sym_override, - [10370] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3398), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3396), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [10441] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6278), 1, - sym_identifier, - ACTIONS(6283), 1, - sym_primitive_type, - STATE(2392), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6281), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6026), 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___attribute__, - 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(6022), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [10520] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3483), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3481), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [10591] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2407), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6272), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5697), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - ACTIONS(5699), 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___attribute__, - 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, - [10666] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5905), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5903), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [10737] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6285), 1, - sym_identifier, - STATE(2288), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(4876), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4878), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5653), 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(5649), 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, - [10816] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5810), 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(5808), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [10887] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3263), 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(3261), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [10958] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5818), 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(5816), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [11029] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5826), 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(5824), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [11100] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3191), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3189), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [11171] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5798), 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(5796), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [11242] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5830), 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(5828), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [11313] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5909), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5907), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [11384] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3636), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3634), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [11455] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5834), 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(5832), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [11526] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5802), 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(5800), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [11597] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5905), 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(5903), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [11668] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3640), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3638), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [11739] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5842), 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(5840), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [11810] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3562), 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(3560), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [11881] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3483), 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(3481), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [11952] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6287), 1, - sym_literal_suffix, - STATE(2138), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(6102), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6104), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(4829), 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_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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(4837), 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, - [12031] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2337), 1, - anon_sym_LBRACE, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(6295), 1, - anon_sym_LBRACK, - ACTIONS(6297), 1, - sym_auto, - ACTIONS(6299), 1, - anon_sym_decltype, - STATE(2749), 1, - sym_decltype_auto, - STATE(2791), 1, - sym_new_declarator, - STATE(3150), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6293), 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(6289), 36, - ts_builtin_sym_end, - 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - [12118] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2337), 1, - anon_sym_LBRACE, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(6295), 1, - anon_sym_LBRACK, - ACTIONS(6297), 1, - sym_auto, - ACTIONS(6299), 1, - anon_sym_decltype, - STATE(2749), 1, - sym_decltype_auto, - STATE(2867), 1, - sym_new_declarator, - STATE(3246), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6303), 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(6301), 36, - ts_builtin_sym_end, - 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - [12205] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5846), 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(5844), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [12276] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5850), 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(5848), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [12347] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3558), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3556), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [12418] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5850), 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(5848), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [12489] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3229), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3227), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [12560] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3562), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3560), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [12631] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3435), 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(3433), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [12702] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6305), 1, - anon_sym_LT, - STATE(2553), 1, - sym_template_argument_list, - ACTIONS(5460), 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(5467), 42, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [12779] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3141), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3139), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [12850] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5854), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5852), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [12921] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6114), 1, - anon_sym___attribute__, - ACTIONS(6241), 1, - anon_sym_LBRACE, - STATE(2554), 1, - sym_enumerator_list, - STATE(2655), 1, - sym_attribute_specifier, - ACTIONS(6310), 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(6308), 49, - ts_builtin_sym_end, - 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___extension__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [13000] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2337), 1, - anon_sym_LBRACE, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(6295), 1, - anon_sym_LBRACK, - ACTIONS(6297), 1, - sym_auto, - ACTIONS(6299), 1, - anon_sym_decltype, - STATE(2749), 1, - sym_decltype_auto, - STATE(2873), 1, - sym_new_declarator, - STATE(3295), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6314), 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(6312), 36, - ts_builtin_sym_end, - 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - [13087] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3646), 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(3644), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [13158] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3654), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3652), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [13229] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3263), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3261), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [13300] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2337), 1, - anon_sym_LBRACE, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(6295), 1, - anon_sym_LBRACK, - ACTIONS(6297), 1, - sym_auto, - ACTIONS(6299), 1, - anon_sym_decltype, - STATE(2749), 1, - sym_decltype_auto, - STATE(2835), 1, - sym_new_declarator, - STATE(3164), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6318), 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(6316), 36, - ts_builtin_sym_end, - 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - [13387] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5951), 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(5949), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [13458] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5858), 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(5856), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [13529] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5909), 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(5907), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [13600] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2394), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6215), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6064), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6062), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [13675] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5671), 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_identifier, - sym_literal_suffix, - ACTIONS(5669), 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_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_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DASH_GT_STAR, - [13746] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6054), 1, - anon_sym_LT, - STATE(2553), 1, - sym_template_argument_list, - ACTIONS(6197), 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(4853), 42, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [13823] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5838), 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(5836), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [13894] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5862), 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(5860), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [13965] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3435), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3433), 57, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [14036] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 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(5864), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [14107] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5870), 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(5868), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [14178] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5870), 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(5868), 56, - 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___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [14249] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(4853), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - ACTIONS(6197), 32, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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, - anon_sym_final, - anon_sym_override, - [14322] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6114), 1, - anon_sym___attribute__, - STATE(2657), 1, - sym_attribute_specifier, - ACTIONS(6322), 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(6320), 50, - ts_builtin_sym_end, - 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___extension__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [14396] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2459), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6324), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5697), 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(5699), 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_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - 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, - [14470] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4853), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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, - ACTIONS(6197), 31, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - 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_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [14540] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6327), 1, - anon_sym_LT, - STATE(2639), 1, - sym_template_argument_list, - ACTIONS(4853), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - ACTIONS(6197), 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_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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, - anon_sym_final, - anon_sym_override, - [14616] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5460), 31, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - 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_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5467), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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, - [14686] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6329), 1, - anon_sym_LT, - STATE(2590), 1, - sym_template_argument_list, - ACTIONS(5460), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_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___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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(5467), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [14762] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6332), 1, - anon_sym_LT, - STATE(2639), 1, - sym_template_argument_list, - ACTIONS(5467), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - ACTIONS(5460), 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_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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, - anon_sym_final, - anon_sym_override, - [14838] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5699), 1, - sym_primitive_type, - STATE(2468), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6335), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6019), 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6016), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [14914] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6338), 1, - sym_identifier, - ACTIONS(6343), 1, - sym_primitive_type, - STATE(2465), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6341), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6026), 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(6022), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [14992] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6347), 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(6345), 55, - anon_sym_AMP, - anon_sym___extension__, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [15062] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2468), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6335), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5699), 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(5697), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [15136] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6351), 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(6349), 55, - anon_sym_AMP, - anon_sym___extension__, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [15206] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2470), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6353), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5699), 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___attribute__, - 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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5697), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [15280] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6358), 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(6356), 55, - anon_sym_AMP, - anon_sym___extension__, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [15350] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5671), 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(5669), 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_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_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DASH_GT_STAR, - [15420] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6362), 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(6360), 55, - anon_sym_AMP, - anon_sym___extension__, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [15490] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6114), 1, - anon_sym___attribute__, - STATE(2633), 1, - sym_attribute_specifier, - ACTIONS(6366), 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(6364), 50, - ts_builtin_sym_end, - 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___extension__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [15564] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6370), 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(6368), 55, - anon_sym_AMP, - anon_sym___extension__, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [15634] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6376), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6378), 1, - anon_sym_AMP_AMP, - ACTIONS(6380), 1, - anon_sym_or, - ACTIONS(6382), 1, - anon_sym_and, - ACTIONS(6374), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6372), 53, - anon_sym_AMP, - anon_sym___extension__, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [15712] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5467), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(5460), 55, - anon_sym_AMP, - anon_sym___extension__, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [15784] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6270), 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(6268), 55, - anon_sym_AMP, - anon_sym___extension__, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [15854] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(4827), 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(4835), 50, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [15926] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5683), 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(5681), 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_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_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DASH_GT_STAR, - [15996] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - STATE(2695), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6753), 1, - sym_template_argument_list, - ACTIONS(6384), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5957), 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(5959), 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___attribute__, - 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, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [16074] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5481), 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(5483), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [16144] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5500), 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(5502), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [16214] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5496), 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(5498), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [16284] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6114), 1, - anon_sym___attribute__, - STATE(2579), 1, - sym_attribute_specifier, - ACTIONS(6388), 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(6386), 50, - ts_builtin_sym_end, - 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___extension__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [16358] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6114), 1, - anon_sym___attribute__, - STATE(2584), 1, - sym_attribute_specifier, - ACTIONS(6392), 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(6390), 50, - ts_builtin_sym_end, - 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___extension__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [16432] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(4853), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(6197), 55, - anon_sym_AMP, - anon_sym___extension__, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [16504] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2289), 1, - anon_sym_LBRACE, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(6396), 1, - anon_sym_LBRACK, - ACTIONS(6398), 1, - sym_auto, - ACTIONS(6400), 1, - anon_sym_decltype, - STATE(2904), 1, - sym_decltype_auto, - STATE(2919), 1, - sym_new_declarator, - STATE(3345), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6293), 26, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - ACTIONS(6289), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [16590] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6406), 1, - sym_auto, - ACTIONS(6408), 1, - anon_sym_decltype, - STATE(2612), 1, - sym_decltype_auto, - ACTIONS(6404), 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(6402), 49, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [16666] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5507), 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(5509), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [16736] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2289), 1, - anon_sym_LBRACE, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(6396), 1, - anon_sym_LBRACK, - ACTIONS(6398), 1, - sym_auto, - ACTIONS(6400), 1, - anon_sym_decltype, - STATE(2904), 1, - sym_decltype_auto, - STATE(2914), 1, - sym_new_declarator, - STATE(3378), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6318), 26, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - ACTIONS(6316), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [16822] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5675), 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(5673), 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_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_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DASH_GT_STAR, - [16892] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5511), 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(5513), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [16962] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5456), 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(5458), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [17032] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2289), 1, - anon_sym_LBRACE, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(6396), 1, - anon_sym_LBRACK, - ACTIONS(6398), 1, - sym_auto, - ACTIONS(6400), 1, - anon_sym_decltype, - STATE(2904), 1, - sym_decltype_auto, - STATE(2953), 1, - sym_new_declarator, - STATE(3320), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6303), 26, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - ACTIONS(6301), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [17118] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2289), 1, - anon_sym_LBRACE, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(6396), 1, - anon_sym_LBRACK, - ACTIONS(6398), 1, - sym_auto, - ACTIONS(6400), 1, - anon_sym_decltype, - STATE(2896), 1, - sym_new_declarator, - STATE(2904), 1, - sym_decltype_auto, - STATE(3351), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6314), 26, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - ACTIONS(6312), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [17204] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6412), 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(6410), 55, - anon_sym_AMP, - anon_sym___extension__, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [17274] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6378), 1, - anon_sym_AMP_AMP, - ACTIONS(6382), 1, - anon_sym_and, - ACTIONS(6416), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6414), 54, - anon_sym_AMP, - anon_sym___extension__, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [17348] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6420), 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(6418), 55, - anon_sym_AMP, - anon_sym___extension__, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [17418] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5460), 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(5467), 50, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [17490] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5467), 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(5460), 55, - anon_sym_AMP, - anon_sym___extension__, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [17560] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5525), 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(5518), 55, - anon_sym_AMP, - anon_sym___extension__, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [17630] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6268), 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(6270), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [17700] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6114), 1, - anon_sym___attribute__, - STATE(2603), 1, - sym_attribute_specifier, - ACTIONS(6424), 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(6422), 50, - ts_builtin_sym_end, - 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___extension__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [17774] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6114), 1, - anon_sym___attribute__, - STATE(2608), 1, - sym_attribute_specifier, - ACTIONS(6428), 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(6426), 50, - ts_builtin_sym_end, - 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___extension__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [17848] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6114), 1, - anon_sym___attribute__, - STATE(2615), 1, - sym_attribute_specifier, - ACTIONS(6432), 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(6430), 50, - ts_builtin_sym_end, - 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___extension__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [17922] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6114), 1, - anon_sym___attribute__, - STATE(2617), 1, - sym_attribute_specifier, - ACTIONS(6436), 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(6434), 50, - ts_builtin_sym_end, - 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___extension__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [17996] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4853), 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(6197), 55, - anon_sym_AMP, - anon_sym___extension__, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [18066] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6197), 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(4853), 50, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [18138] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6438), 1, - anon_sym_LT, - STATE(2590), 1, - sym_template_argument_list, - ACTIONS(6197), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_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___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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(4853), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [18214] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2529), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6440), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5957), 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___attribute__, - 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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5959), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [18288] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5477), 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(5479), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [18358] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6130), 1, - anon_sym___attribute__, - ACTIONS(6442), 1, - anon_sym_LBRACE, - ACTIONS(6444), 1, - anon_sym_COLON, - STATE(2634), 1, - sym_enum_base_clause, - STATE(2688), 1, - sym_enumerator_list, - STATE(2839), 1, - sym_attribute_specifier, - ACTIONS(6233), 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(6235), 38, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [18440] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6446), 1, - sym_literal_suffix, - STATE(2226), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(6166), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6168), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(4829), 24, - anon_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, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(4837), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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, - [18518] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6197), 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(4853), 42, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [18590] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_COLON, - ACTIONS(6448), 1, - anon_sym___attribute__, - ACTIONS(6450), 1, - anon_sym_LBRACE, - STATE(3129), 1, - sym_field_declaration_list, - STATE(3570), 1, - sym_attribute_specifier, - STATE(8408), 1, - sym_virtual_specifier, - STATE(9272), 1, - sym_base_class_clause, - ACTIONS(6118), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(6076), 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(6078), 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, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [18676] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6114), 1, - anon_sym___attribute__, - STATE(2654), 1, - sym_attribute_specifier, - ACTIONS(6454), 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(6452), 50, - ts_builtin_sym_end, - 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___extension__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [18750] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5518), 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(5525), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [18820] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6114), 1, - anon_sym___attribute__, - STATE(2591), 1, - sym_attribute_specifier, - ACTIONS(6458), 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(6456), 50, - ts_builtin_sym_end, - 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___extension__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [18894] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6114), 1, - anon_sym___attribute__, - STATE(2636), 1, - sym_attribute_specifier, - ACTIONS(6462), 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(6460), 50, - ts_builtin_sym_end, - 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___extension__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [18968] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3080), 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(3078), 55, - anon_sym_AMP, - anon_sym___extension__, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [19038] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6466), 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(6464), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [19108] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3094), 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(3096), 55, - anon_sym_AMP, - anon_sym___extension__, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [19178] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6470), 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(6468), 55, - anon_sym_AMP, - anon_sym___extension__, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [19248] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6474), 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(6472), 55, - anon_sym_AMP, - anon_sym___extension__, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [19318] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5683), 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_identifier, - sym_literal_suffix, - ACTIONS(5681), 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_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_DOT_STAR, - 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, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [19388] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5675), 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_identifier, - sym_literal_suffix, - ACTIONS(5673), 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_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_DOT_STAR, - 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, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [19458] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5460), 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(5467), 42, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [19530] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2470), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6476), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6064), 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___attribute__, - 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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6062), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [19604] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2470), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6476), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6034), 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___attribute__, - 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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6032), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [19678] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2533), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6478), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6007), 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___attribute__, - 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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6005), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [19752] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2534), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6480), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6050), 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___attribute__, - 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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6048), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [19826] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2470), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6476), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5992), 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___attribute__, - 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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5990), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [19900] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2470), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6476), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5998), 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___attribute__, - 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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5996), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [19974] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5671), 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_identifier, - sym_literal_suffix, - ACTIONS(5669), 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_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_DOT_STAR, - 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, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [20044] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5679), 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_identifier, - sym_literal_suffix, - ACTIONS(5677), 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_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_DOT_STAR, - 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, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [20114] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5683), 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___attribute__, - 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(5681), 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_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_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, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [20184] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5675), 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___attribute__, - 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(5673), 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_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_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, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [20254] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(2459), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5699), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(6324), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6016), 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(6019), 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___attribute__, - 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, - [20330] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6484), 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(6482), 55, - anon_sym_AMP, - anon_sym___extension__, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [20400] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6130), 1, - anon_sym___attribute__, - ACTIONS(6442), 1, - anon_sym_LBRACE, - ACTIONS(6444), 1, - anon_sym_COLON, - STATE(2613), 1, - sym_enum_base_clause, - STATE(2720), 1, - sym_enumerator_list, - STATE(2820), 1, - sym_attribute_specifier, - ACTIONS(6225), 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(6227), 38, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [20482] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6486), 1, - sym_identifier, - ACTIONS(6490), 1, - sym_primitive_type, - STATE(2539), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6488), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6022), 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(6026), 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___attribute__, - 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, - [20560] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5671), 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___attribute__, - 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(5669), 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_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_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, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [20630] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5679), 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___attribute__, - 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(5677), 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_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_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, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [20700] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5479), 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(5477), 55, - anon_sym_AMP, - anon_sym___extension__, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [20770] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5483), 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(5481), 55, - anon_sym_AMP, - anon_sym___extension__, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [20840] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5502), 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(5500), 55, - anon_sym_AMP, - anon_sym___extension__, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [20910] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5498), 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(5496), 55, - anon_sym_AMP, - anon_sym___extension__, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [20980] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5509), 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(5507), 55, - anon_sym_AMP, - anon_sym___extension__, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [21050] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5513), 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(5511), 55, - anon_sym_AMP, - anon_sym___extension__, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [21120] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5458), 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(5456), 55, - anon_sym_AMP, - anon_sym___extension__, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [21190] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6268), 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(6270), 43, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [21260] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5518), 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(5525), 43, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [21330] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6114), 1, - anon_sym___attribute__, - STATE(2631), 1, - sym_attribute_specifier, - ACTIONS(6494), 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(6492), 50, - ts_builtin_sym_end, - 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___extension__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [21404] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 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(6496), 55, - anon_sym_AMP, - anon_sym___extension__, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [21474] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6502), 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(6500), 55, - anon_sym_AMP, - anon_sym___extension__, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [21544] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6506), 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(6504), 55, - anon_sym_AMP, - anon_sym___extension__, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [21614] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6510), 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(6508), 55, - anon_sym_AMP, - anon_sym___extension__, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [21684] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5679), 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(5677), 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_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_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DASH_GT_STAR, - [21754] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5467), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - ACTIONS(5460), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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, - anon_sym_final, - anon_sym_override, - [21825] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6486), 1, - sym_identifier, - ACTIONS(6490), 1, - sym_primitive_type, - STATE(2566), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6512), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6022), 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(6026), 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, - [21902] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2562), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6514), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5699), 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5697), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [21975] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2563), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6517), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5697), 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(5699), 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, - [22048] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6522), 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(6520), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [22117] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4827), 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(4835), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [22186] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(2563), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5699), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(6517), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6016), 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(6019), 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, - [22261] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6524), 1, - sym_identifier, - STATE(2567), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(6527), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6530), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5635), 17, - aux_sym_preproc_elif_token1, - 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(5630), 30, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_DOT_STAR, - anon_sym_DASH_GT, - [22338] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5479), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(5477), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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, - anon_sym_final, - anon_sym_override, - [22407] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5460), 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(5467), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [22476] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(5276), 1, - anon_sym_LPAREN2, - ACTIONS(6256), 1, - sym_identifier, - ACTIONS(6266), 1, - anon_sym_LBRACK, - ACTIONS(6533), 1, - anon_sym_STAR, - ACTIONS(6535), 1, - anon_sym_AMP_AMP, - ACTIONS(6537), 1, - anon_sym_AMP, - STATE(4696), 1, - sym_parameter_list, - STATE(6585), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7241), 1, - sym_scope_resolution, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(7557), 1, - sym_declarator, - STATE(8035), 1, - sym_abstract_declarator, - STATE(9737), 1, - sym_ms_based_modifier, - ACTIONS(3668), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(6258), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(3747), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(4146), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3666), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7464), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(7634), 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, - ACTIONS(3664), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [22597] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5483), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(5481), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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, - anon_sym_final, - anon_sym_override, - [22666] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5502), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(5500), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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, - anon_sym_final, - anon_sym_override, - [22735] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6080), 1, - anon_sym___attribute__, - ACTIONS(6229), 1, - anon_sym_LBRACE, - STATE(2664), 1, - sym_enumerator_list, - STATE(2882), 1, - sym_attribute_specifier, - ACTIONS(6239), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6237), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [22812] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5498), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(5496), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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, - anon_sym_final, - anon_sym_override, - [22881] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6080), 1, - anon_sym___attribute__, - ACTIONS(6229), 1, - anon_sym_LBRACE, - STATE(2701), 1, - sym_enumerator_list, - STATE(2903), 1, - sym_attribute_specifier, - ACTIONS(6310), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6308), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [22958] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - STATE(2819), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6753), 1, - sym_template_argument_list, - ACTIONS(6539), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5957), 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(5959), 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [23035] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6543), 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(6541), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [23104] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5509), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(5507), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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, - anon_sym_final, - anon_sym_override, - [23173] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6547), 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(6545), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [23242] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6239), 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(6237), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [23311] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5513), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(5511), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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, - anon_sym_final, - anon_sym_override, - [23380] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6551), 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(6549), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [23449] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6555), 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(6553), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [23518] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6559), 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(6557), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [23587] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6563), 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(6561), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [23656] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5458), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(5456), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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, - anon_sym_final, - anon_sym_override, - [23725] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6565), 1, - sym_identifier, - STATE(2567), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(3796), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3804), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5647), 17, - aux_sym_preproc_elif_token1, - 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(5643), 30, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_DOT_STAR, - anon_sym_DASH_GT, - [23802] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(2642), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5699), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(6567), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6016), 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_QMARK, - anon_sym_STAR_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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(6019), 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_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - 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, - [23877] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6197), 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(4853), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [23946] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5518), 30, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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(5525), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [24015] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6572), 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(6570), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [24084] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5683), 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(5681), 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_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_DOT_STAR, - 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, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [24153] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5675), 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(5673), 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_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_DOT_STAR, - 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, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [24222] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2562), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6574), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6064), 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6062), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [24295] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6576), 1, - anon_sym_LT, - STATE(2818), 1, - sym_template_argument_list, - ACTIONS(6197), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(4853), 30, - anon_sym_DOT_DOT_DOT, - 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, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [24370] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2562), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6574), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6034), 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6032), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [24443] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(4853), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - ACTIONS(6197), 30, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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, - [24514] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(4853), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - ACTIONS(6197), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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, - anon_sym_final, - anon_sym_override, - [24585] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6197), 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(4853), 43, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [24654] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2610), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6578), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6007), 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6005), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [24727] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2611), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6580), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6050), 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6048), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [24800] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6584), 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(6582), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [24869] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6588), 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(6586), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [24938] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6310), 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(6308), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [25007] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6592), 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(6590), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [25076] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6270), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6268), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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, - anon_sym_final, - anon_sym_override, - [25145] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5957), 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(5959), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [25214] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6596), 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(6594), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [25283] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6600), 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(6598), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [25352] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2562), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6574), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5992), 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5990), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [25425] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2562), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6574), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5998), 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5996), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [25498] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6604), 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(6602), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [25567] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6130), 1, - anon_sym___attribute__, - ACTIONS(6442), 1, - anon_sym_LBRACE, - STATE(2694), 1, - sym_enumerator_list, - STATE(2854), 1, - sym_attribute_specifier, - ACTIONS(6239), 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(6237), 39, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_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, - sym_auto, - anon_sym_decltype, - [25644] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 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(6606), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [25713] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6612), 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(6610), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [25782] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6136), 1, - sym_literal_suffix, - STATE(2409), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(4876), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4878), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(4837), 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(4829), 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, - [25859] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6616), 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(6614), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [25928] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_COLON, - ACTIONS(6618), 1, - anon_sym___attribute__, - ACTIONS(6620), 1, - anon_sym_LBRACE, - STATE(3398), 1, - sym_field_declaration_list, - STATE(3805), 1, - sym_attribute_specifier, - STATE(8258), 1, - sym_virtual_specifier, - STATE(9176), 1, - sym_base_class_clause, - ACTIONS(6118), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(6076), 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(6078), 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_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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [26013] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2594), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6622), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4827), 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(4835), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [26086] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6149), 1, - anon_sym___attribute__, - ACTIONS(6624), 1, - anon_sym_LBRACE, - ACTIONS(6626), 1, - anon_sym_COLON, - STATE(2801), 1, - sym_enum_base_clause, - STATE(2932), 1, - sym_enumerator_list, - STATE(3096), 1, - sym_attribute_specifier, - ACTIONS(6225), 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6227), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [26167] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5671), 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(5669), 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_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_DOT_STAR, - 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, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [26236] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6576), 1, - anon_sym_LT, - STATE(2818), 1, - sym_template_argument_list, - ACTIONS(5460), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(5467), 30, - anon_sym_DOT_DOT_DOT, - 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, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [26311] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6149), 1, - anon_sym___attribute__, - ACTIONS(6624), 1, - anon_sym_LBRACE, - ACTIONS(6626), 1, - anon_sym_COLON, - STATE(2803), 1, - sym_enum_base_clause, - STATE(2940), 1, - sym_enumerator_list, - STATE(3185), 1, - sym_attribute_specifier, - ACTIONS(6233), 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6235), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [26392] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5679), 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(5677), 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_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_DOT_STAR, - 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, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [26461] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6630), 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(6628), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [26530] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6632), 1, - sym_identifier, - ACTIONS(6636), 1, - sym_primitive_type, - STATE(2588), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6634), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6022), 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_QMARK, - anon_sym_STAR_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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(6026), 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_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - 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, - [26607] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6640), 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(6638), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [26676] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5683), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_literal_suffix, - ACTIONS(5681), 34, - anon_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, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DOT_DOT_DOT_GT, - [26745] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5675), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_literal_suffix, - ACTIONS(5673), 34, - anon_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, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DOT_DOT_DOT_GT, - [26814] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4827), 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(4835), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [26883] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6644), 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(6642), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [26952] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(5276), 1, - anon_sym_LPAREN2, - ACTIONS(6256), 1, - sym_identifier, - ACTIONS(6266), 1, - anon_sym_LBRACK, - ACTIONS(6646), 1, - anon_sym_STAR, - ACTIONS(6648), 1, - anon_sym_AMP_AMP, - ACTIONS(6650), 1, - anon_sym_AMP, - STATE(4268), 1, - sym_parameter_list, - STATE(6585), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7241), 1, - sym_scope_resolution, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(7557), 1, - sym_declarator, - STATE(7943), 1, - sym_abstract_declarator, - STATE(9737), 1, - sym_ms_based_modifier, - ACTIONS(3668), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(6258), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(3648), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(4146), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3666), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7464), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(7634), 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, - ACTIONS(3664), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [27073] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6654), 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(6652), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [27142] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6130), 1, - anon_sym___attribute__, - ACTIONS(6442), 1, - anon_sym_LBRACE, - STATE(2715), 1, - sym_enumerator_list, - STATE(2789), 1, - sym_attribute_specifier, - ACTIONS(6310), 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(6308), 39, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_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, - sym_auto, - anon_sym_decltype, - [27219] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5671), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_literal_suffix, - ACTIONS(5669), 34, - anon_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, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DOT_DOT_DOT_GT, - [27288] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6658), 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(6656), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [27357] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5460), 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(5467), 43, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [27426] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5679), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_literal_suffix, - ACTIONS(5677), 34, - anon_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, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DOT_DOT_DOT_GT, - [27495] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5525), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(5518), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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, - anon_sym_final, - anon_sym_override, - [27564] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6660), 1, - sym_identifier, - STATE(2587), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(3796), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3804), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5653), 17, - aux_sym_preproc_elif_token1, - 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(5649), 30, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_DOT_STAR, - anon_sym_DASH_GT, - [27641] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5460), 30, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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(5467), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [27712] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2642), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6567), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5697), 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_QMARK, - anon_sym_STAR_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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(5699), 31, - anon_sym_DASH, - anon_sym_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___attribute__, - 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, - [27785] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6664), 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(6662), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [27854] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6668), 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(6666), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [27923] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6268), 30, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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(6270), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [27992] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6672), 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(6670), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [28061] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6676), 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(6674), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [28130] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5477), 30, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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(5479), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [28199] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5481), 30, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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(5483), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [28268] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5500), 30, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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(5502), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [28337] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5496), 30, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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(5498), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [28406] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5507), 30, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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(5509), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [28475] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6680), 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(6678), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [28544] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6684), 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(6682), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [28613] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6688), 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(6686), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [28682] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6690), 1, - anon_sym_LT, - STATE(2695), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2879), 1, - sym_template_argument_list, - ACTIONS(6384), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4827), 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(4835), 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, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [28761] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6694), 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(6692), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [28830] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5511), 30, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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(5513), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [28899] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5456), 30, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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(5458), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [28968] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6698), 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(6696), 51, - ts_builtin_sym_end, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [29037] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2740), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6700), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5992), 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(5990), 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___attribute__, - 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, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [29109] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6702), 1, - sym_identifier, - ACTIONS(6706), 1, - sym_primitive_type, - STATE(2665), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6704), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6022), 25, - anon_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, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(6026), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - 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, - [29185] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5671), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(5669), 34, - anon_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, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DOT_DOT_DOT_GT, - [29253] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6080), 1, - anon_sym___attribute__, - STATE(2906), 1, - sym_attribute_specifier, - ACTIONS(6322), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6320), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [29325] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(2690), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5699), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(6708), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6016), 25, - anon_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, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(6019), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - 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, - [29399] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2740), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6700), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5998), 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(5996), 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___attribute__, - 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, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [29471] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6080), 1, - anon_sym___attribute__, - STATE(2909), 1, - sym_attribute_specifier, - ACTIONS(6458), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6456), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [29543] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6130), 1, - anon_sym___attribute__, - STATE(2827), 1, - sym_attribute_specifier, - ACTIONS(6424), 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(6422), 40, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [29615] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5683), 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_identifier, - sym_literal_suffix, - ACTIONS(5681), 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_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_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DASH_GT_STAR, - [29683] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5675), 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_identifier, - sym_literal_suffix, - ACTIONS(5673), 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_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_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DASH_GT_STAR, - [29751] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6632), 1, - sym_identifier, - ACTIONS(6636), 1, - sym_primitive_type, - STATE(2674), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6711), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6022), 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_QMARK, - anon_sym_STAR_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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(6026), 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, - [29827] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6197), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - 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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(4853), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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, - [29895] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6297), 1, - sym_auto, - ACTIONS(6299), 1, - anon_sym_decltype, - STATE(2749), 1, - sym_decltype_auto, - ACTIONS(6404), 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(6402), 39, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - [29969] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(2718), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5699), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(6713), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6016), 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_QMARK, - anon_sym_STAR_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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(6019), 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, - [30043] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6080), 1, - anon_sym___attribute__, - STATE(2927), 1, - sym_attribute_specifier, - ACTIONS(6388), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6386), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [30115] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_COLON, - ACTIONS(6716), 1, - anon_sym___attribute__, - ACTIONS(6718), 1, - anon_sym_LBRACE, - STATE(3532), 1, - sym_field_declaration_list, - STATE(3924), 1, - sym_attribute_specifier, - STATE(8234), 1, - sym_virtual_specifier, - STATE(9468), 1, - sym_base_class_clause, - ACTIONS(6118), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(6076), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(6078), 32, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [30199] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6080), 1, - anon_sym___attribute__, - STATE(2910), 1, - sym_attribute_specifier, - ACTIONS(6462), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6460), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [30271] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2387), 1, - anon_sym_LBRACE, - ACTIONS(6720), 1, - anon_sym_LPAREN2, - ACTIONS(6722), 1, - anon_sym_LBRACK, - ACTIONS(6724), 1, - sym_auto, - ACTIONS(6726), 1, - anon_sym_decltype, - STATE(3171), 1, - sym_new_declarator, - STATE(3214), 1, - sym_decltype_auto, - STATE(3694), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6318), 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_identifier, - ACTIONS(6316), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [30355] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6080), 1, - anon_sym___attribute__, - STATE(2958), 1, - sym_attribute_specifier, - ACTIONS(6424), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6422), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [30427] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5671), 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_identifier, - sym_literal_suffix, - ACTIONS(5669), 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_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_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DASH_GT_STAR, - [30495] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6130), 1, - anon_sym___attribute__, - STATE(2860), 1, - sym_attribute_specifier, - ACTIONS(6432), 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(6430), 40, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [30567] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6130), 1, - anon_sym___attribute__, - STATE(2865), 1, - sym_attribute_specifier, - ACTIONS(6436), 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(6434), 40, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [30639] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6130), 1, - anon_sym___attribute__, - STATE(2808), 1, - sym_attribute_specifier, - ACTIONS(6388), 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(6386), 40, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [30711] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5679), 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_identifier, - sym_literal_suffix, - ACTIONS(5677), 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_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_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DASH_GT_STAR, - [30779] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6080), 1, - anon_sym___attribute__, - STATE(2923), 1, - sym_attribute_specifier, - ACTIONS(6428), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6426), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [30851] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6080), 1, - anon_sym___attribute__, - STATE(2933), 1, - sym_attribute_specifier, - ACTIONS(6392), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6390), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [30923] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2740), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6700), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6064), 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(6062), 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___attribute__, - 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, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [30995] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6130), 1, - anon_sym___attribute__, - STATE(2788), 1, - sym_attribute_specifier, - ACTIONS(6454), 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(6452), 40, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [31067] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6690), 1, - anon_sym_LT, - STATE(2879), 1, - sym_template_argument_list, - ACTIONS(6197), 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(4853), 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___attribute__, - 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, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [31141] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2690), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6708), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5697), 25, - anon_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, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(5699), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - 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, - [31213] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6730), 1, - anon_sym_LPAREN2, - ACTIONS(6734), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6736), 1, - anon_sym_LBRACK, - STATE(2856), 1, - sym_parameter_list, - STATE(2831), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6732), 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(6728), 36, - ts_builtin_sym_end, - 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - [31291] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5460), 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_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - 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_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5467), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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, - [31359] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2687), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6738), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5957), 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(5959), 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___attribute__, - 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, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [31431] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6130), 1, - anon_sym___attribute__, - STATE(2792), 1, - sym_attribute_specifier, - ACTIONS(6322), 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(6320), 40, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [31503] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2740), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6700), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6034), 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(6032), 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___attribute__, - 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, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [31575] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2661), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6740), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6007), 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(6005), 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___attribute__, - 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, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [31647] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2666), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6742), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6050), 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(6048), 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___attribute__, - 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, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [31719] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5683), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(5681), 34, - anon_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, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DOT_DOT_DOT_GT, - [31787] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5675), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(5673), 34, - anon_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, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DOT_DOT_DOT_GT, - [31855] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2735), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6744), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6064), 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(6062), 43, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [31927] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6080), 1, - anon_sym___attribute__, - STATE(2915), 1, - sym_attribute_specifier, - ACTIONS(6494), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6492), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [31999] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6080), 1, - anon_sym___attribute__, - STATE(2886), 1, - sym_attribute_specifier, - ACTIONS(6432), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6430), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [32071] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6730), 1, - anon_sym_LPAREN2, - ACTIONS(6734), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6736), 1, - anon_sym_LBRACK, - STATE(2856), 1, - sym_parameter_list, - STATE(2831), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6748), 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(6746), 36, - ts_builtin_sym_end, - 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - [32149] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2735), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6744), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6034), 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(6032), 43, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [32221] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - STATE(2901), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6753), 1, - sym_template_argument_list, - ACTIONS(6750), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5957), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(5959), 34, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - 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, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [32297] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2709), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6752), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6050), 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(6048), 43, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [32369] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6754), 1, - anon_sym_LT, - STATE(2811), 1, - sym_template_argument_list, - ACTIONS(5460), 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_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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(5467), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [32443] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2735), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6744), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5992), 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(5990), 43, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [32515] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2735), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6744), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5998), 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(5996), 43, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [32587] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6757), 1, - anon_sym_LT, - STATE(2811), 1, - sym_template_argument_list, - ACTIONS(6197), 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_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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(4853), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [32661] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6130), 1, - anon_sym___attribute__, - STATE(2794), 1, - sym_attribute_specifier, - ACTIONS(6458), 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(6456), 40, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [32733] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6080), 1, - anon_sym___attribute__, - STATE(2891), 1, - sym_attribute_specifier, - ACTIONS(6436), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6434), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [32805] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5679), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(5677), 34, - anon_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, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DOT_DOT_DOT_GT, - [32873] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6080), 1, - anon_sym___attribute__, - STATE(2916), 1, - sym_attribute_specifier, - ACTIONS(6366), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6364), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [32945] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6130), 1, - anon_sym___attribute__, - STATE(2804), 1, - sym_attribute_specifier, - ACTIONS(6494), 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(6492), 40, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [33017] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2387), 1, - anon_sym_LBRACE, - ACTIONS(6720), 1, - anon_sym_LPAREN2, - ACTIONS(6722), 1, - anon_sym_LBRACK, - ACTIONS(6724), 1, - sym_auto, - ACTIONS(6726), 1, - anon_sym_decltype, - STATE(3214), 1, - sym_decltype_auto, - STATE(3267), 1, - sym_new_declarator, - STATE(3645), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6303), 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_identifier, - ACTIONS(6301), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [33101] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6130), 1, - anon_sym___attribute__, - STATE(2846), 1, - sym_attribute_specifier, - ACTIONS(6392), 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(6390), 40, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [33173] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2718), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6713), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5697), 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_QMARK, - anon_sym_STAR_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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(5699), 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, - [33245] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4853), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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, - ACTIONS(6197), 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_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - 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_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [33313] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6130), 1, - anon_sym___attribute__, - STATE(2852), 1, - sym_attribute_specifier, - ACTIONS(6428), 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(6426), 40, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [33385] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6730), 1, - anon_sym_LPAREN2, - ACTIONS(6734), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6736), 1, - anon_sym_LBRACK, - STATE(2856), 1, - sym_parameter_list, - STATE(2831), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6761), 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(6759), 36, - ts_builtin_sym_end, - 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - [33463] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6130), 1, - anon_sym___attribute__, - STATE(2797), 1, - sym_attribute_specifier, - ACTIONS(6462), 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(6460), 40, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [33535] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6130), 1, - anon_sym___attribute__, - STATE(2805), 1, - sym_attribute_specifier, - ACTIONS(6366), 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(6364), 40, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [33607] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5460), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - 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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5467), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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, - [33675] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(5276), 1, - anon_sym_LPAREN2, - ACTIONS(5278), 1, - anon_sym_STAR, - ACTIONS(5280), 1, - anon_sym_AMP_AMP, - ACTIONS(5282), 1, - anon_sym_AMP, - ACTIONS(5748), 1, - sym_identifier, - ACTIONS(6258), 1, - anon_sym_RPAREN, - ACTIONS(6266), 1, - anon_sym_LBRACK, - STATE(4268), 1, - sym_parameter_list, - STATE(6585), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7201), 1, - sym_scope_resolution, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(7557), 1, - sym_declarator, - STATE(7943), 1, - sym_abstract_declarator, - STATE(10059), 1, - sym_ms_based_modifier, - ACTIONS(3668), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3886), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(4046), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3666), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7464), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(7634), 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, - ACTIONS(3664), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [33795] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6763), 1, - anon_sym_LT, - STATE(2819), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2920), 1, - sym_template_argument_list, - ACTIONS(6539), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4827), 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(4835), 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_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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [33873] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2387), 1, - anon_sym_LBRACE, - ACTIONS(6720), 1, - anon_sym_LPAREN2, - ACTIONS(6722), 1, - anon_sym_LBRACK, - ACTIONS(6724), 1, - sym_auto, - ACTIONS(6726), 1, - anon_sym_decltype, - STATE(3214), 1, - sym_decltype_auto, - STATE(3289), 1, - sym_new_declarator, - STATE(3660), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6314), 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_identifier, - ACTIONS(6312), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [33957] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2700), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6765), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5957), 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(5959), 43, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [34029] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6767), 1, - anon_sym_LT, - STATE(2868), 1, - sym_template_argument_list, - ACTIONS(5460), 27, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_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_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(5467), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [34103] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6770), 1, - anon_sym_LT, - STATE(2879), 1, - sym_template_argument_list, - ACTIONS(5460), 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(5467), 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___attribute__, - 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, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [34177] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6775), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6773), 54, - anon_sym_AMP, - anon_sym___extension__, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [34245] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6730), 1, - anon_sym_LPAREN2, - ACTIONS(6734), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6736), 1, - anon_sym_LBRACK, - STATE(2856), 1, - sym_parameter_list, - STATE(2831), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6779), 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(6777), 36, - ts_builtin_sym_end, - 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - [34323] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6783), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6781), 54, - anon_sym_AMP, - anon_sym___extension__, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [34391] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6466), 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(6464), 41, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [34459] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2735), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6785), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5699), 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(5697), 43, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [34531] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6080), 1, - anon_sym___attribute__, - STATE(2902), 1, - sym_attribute_specifier, - ACTIONS(6454), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6452), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [34603] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2387), 1, - anon_sym_LBRACE, - ACTIONS(6720), 1, - anon_sym_LPAREN2, - ACTIONS(6722), 1, - anon_sym_LBRACK, - ACTIONS(6724), 1, - sym_auto, - ACTIONS(6726), 1, - anon_sym_decltype, - STATE(3145), 1, - sym_new_declarator, - STATE(3214), 1, - sym_decltype_auto, - STATE(3803), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6293), 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_identifier, - ACTIONS(6289), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [34687] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(4827), 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(4835), 40, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [34757] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_COLON, - ACTIONS(6788), 1, - anon_sym___attribute__, - ACTIONS(6790), 1, - anon_sym_LBRACE, - STATE(3117), 1, - sym_field_declaration_list, - STATE(3484), 1, - sym_attribute_specifier, - STATE(8515), 1, - sym_virtual_specifier, - STATE(9562), 1, - sym_base_class_clause, - ACTIONS(6118), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(6076), 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(6078), 39, - 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___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [34841] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2740), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6792), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5699), 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(5697), 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___attribute__, - 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, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [34913] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6797), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6795), 54, - anon_sym_AMP, - anon_sym___extension__, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [34981] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2708), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6799), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6007), 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(6005), 43, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [35053] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5481), 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___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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(5483), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [35120] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5456), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(5458), 31, - anon_sym_DOT_DOT_DOT, - 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, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [35187] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_COLON, - ACTIONS(6801), 1, - anon_sym___attribute__, - ACTIONS(6803), 1, - anon_sym_LBRACE, - STATE(3779), 1, - sym_field_declaration_list, - STATE(3963), 1, - sym_attribute_specifier, - STATE(8204), 1, - sym_virtual_specifier, - STATE(9174), 1, - sym_base_class_clause, - ACTIONS(6118), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(6076), 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(6078), 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, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [35270] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(2845), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5699), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(6805), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6016), 25, - anon_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, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(6019), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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, - [35343] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6810), 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(6808), 40, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - anon_sym_LBRACK_LBRACK, - 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_try, - [35410] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5679), 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(5677), 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_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_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DASH_GT_STAR, - [35477] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6604), 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(6602), 41, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [35544] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6676), 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(6674), 41, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [35611] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5460), 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___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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(5467), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [35680] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4827), 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(4835), 41, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [35747] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4827), 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(4835), 41, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [35814] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6630), 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(6628), 41, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [35881] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6672), 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(6670), 41, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [35948] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5460), 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(5467), 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___attribute__, - 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, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [36017] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6268), 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___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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(6270), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [36084] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5477), 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___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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(5479), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [36151] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5511), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(5513), 31, - anon_sym_DOT_DOT_DOT, - 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, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [36218] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(4827), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(4835), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [36287] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6812), 1, - anon_sym_LT, - STATE(2901), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3031), 1, - sym_template_argument_list, - ACTIONS(6750), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4827), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_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(4835), 33, - anon_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, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [36364] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5500), 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___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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(5502), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [36431] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5496), 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___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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(5498), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [36498] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5507), 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___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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(5509), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [36565] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6197), 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(4853), 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___attribute__, - 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, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [36634] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5511), 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___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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(5513), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [36701] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5456), 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___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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(5458), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [36768] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6398), 1, - sym_auto, - ACTIONS(6400), 1, - anon_sym_decltype, - STATE(2904), 1, - sym_decltype_auto, - ACTIONS(6404), 26, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - ACTIONS(6402), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [36841] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6814), 1, - sym_identifier, - ACTIONS(6818), 1, - sym_primitive_type, - STATE(2771), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6816), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6026), 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___attribute__, - 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(6022), 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, - [36916] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5460), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(5467), 30, - anon_sym_DOT_DOT_DOT, - 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, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [36985] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(2773), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5699), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(6820), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6019), 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___attribute__, - 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(6016), 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, - [37058] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6268), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(6270), 31, - anon_sym_DOT_DOT_DOT, - 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, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [37125] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2773), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6820), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5697), 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(5699), 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___attribute__, - 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, - [37196] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6543), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - 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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6541), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [37263] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6551), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - 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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6549), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [37330] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6823), 1, - anon_sym_LPAREN2, - ACTIONS(6825), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6827), 1, - anon_sym_LBRACK, - STATE(3108), 1, - sym_parameter_list, - STATE(2888), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6779), 26, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - ACTIONS(6777), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [37407] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6640), 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(6638), 41, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [37474] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6584), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - 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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6582), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [37541] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6823), 1, - anon_sym_LPAREN2, - ACTIONS(6825), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6827), 1, - anon_sym_LBRACK, - STATE(3108), 1, - sym_parameter_list, - STATE(2888), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6748), 26, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - ACTIONS(6746), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [37618] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5957), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - 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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5959), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [37685] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6833), 1, - anon_sym_LBRACK_LBRACK, - STATE(2781), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6831), 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(6829), 37, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - [37756] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6698), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - 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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6696), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [37823] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6836), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(6838), 31, - anon_sym_DOT_DOT_DOT, - 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, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [37890] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6840), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(6842), 31, - anon_sym_DOT_DOT_DOT, - 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, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [37957] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5683), 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(5681), 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_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_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DASH_GT_STAR, - [38024] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6680), 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(6678), 41, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [38091] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6466), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6464), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [38158] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6684), 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(6682), 41, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [38225] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6688), 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(6686), 41, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [38292] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6680), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - 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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6678), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [38359] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2337), 1, - anon_sym_LBRACE, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - STATE(3242), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6846), 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(6844), 37, - ts_builtin_sym_end, - 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - [38432] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6694), 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(6692), 41, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [38499] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6268), 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(6270), 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___attribute__, - 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, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [38566] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6572), 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(6570), 41, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [38633] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6197), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(4853), 30, - anon_sym_DOT_DOT_DOT, - 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, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [38702] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5675), 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(5673), 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_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_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DASH_GT_STAR, - [38769] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6658), 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(6656), 41, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [38836] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6522), 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(6520), 41, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [38903] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6850), 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(6848), 40, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - anon_sym_LBRACK_LBRACK, - 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_try, - [38970] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5507), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(5509), 31, - anon_sym_DOT_DOT_DOT, - 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, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [39037] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6149), 1, - anon_sym___attribute__, - ACTIONS(6624), 1, - anon_sym_LBRACE, - STATE(2943), 1, - sym_enumerator_list, - STATE(3195), 1, - sym_attribute_specifier, - ACTIONS(6239), 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6237), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [39112] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6823), 1, - anon_sym_LPAREN2, - ACTIONS(6825), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6827), 1, - anon_sym_LBRACK, - STATE(3108), 1, - sym_parameter_list, - STATE(2888), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6732), 26, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - ACTIONS(6728), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [39189] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6149), 1, - anon_sym___attribute__, - ACTIONS(6624), 1, - anon_sym_LBRACE, - STATE(2946), 1, - sym_enumerator_list, - STATE(3226), 1, - sym_attribute_specifier, - ACTIONS(6310), 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6308), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [39264] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6644), 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(6642), 41, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [39331] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6654), 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(6652), 41, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [39398] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6823), 1, - anon_sym_LPAREN2, - ACTIONS(6825), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6827), 1, - anon_sym_LBRACK, - STATE(3108), 1, - sym_parameter_list, - STATE(2888), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6761), 26, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - ACTIONS(6759), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [39475] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6543), 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(6541), 41, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [39542] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6547), 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(6545), 41, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [39609] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6852), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(6854), 31, - anon_sym_DOT_DOT_DOT, - 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, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [39676] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5460), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(5467), 31, - anon_sym_DOT_DOT_DOT, - 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, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [39743] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5518), 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___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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(5525), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [39810] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2687), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6738), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4827), 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(4835), 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, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [39881] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3215), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(3217), 31, - anon_sym_DOT_DOT_DOT, - 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, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [39948] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2866), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6856), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6064), 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(6062), 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [40019] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6448), 1, - anon_sym___attribute__, - ACTIONS(6858), 1, - anon_sym_LBRACE, - ACTIONS(6860), 1, - anon_sym_COLON, - STATE(3022), 1, - sym_enum_base_clause, - STATE(3127), 1, - sym_enumerator_list, - STATE(3567), 1, - sym_attribute_specifier, - ACTIONS(6225), 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(6227), 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, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [40098] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6864), 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(6862), 40, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - anon_sym_LBRACK_LBRACK, - 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_try, - [40165] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6868), 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(6866), 40, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - anon_sym_LBRACK_LBRACK, - 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_try, - [40232] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5518), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(5525), 31, - anon_sym_DOT_DOT_DOT, - 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, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [40299] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2866), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6856), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6034), 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(6032), 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [40370] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6239), 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(6237), 41, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [40437] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2836), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6870), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6007), 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(6005), 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [40508] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2837), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6872), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6050), 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(6048), 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [40579] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6584), 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(6582), 41, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [40646] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3207), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(3209), 31, - anon_sym_DOT_DOT_DOT, - 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, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [40713] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6874), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(6876), 31, - anon_sym_DOT_DOT_DOT, - 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, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [40780] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6448), 1, - anon_sym___attribute__, - ACTIONS(6858), 1, - anon_sym_LBRACE, - ACTIONS(6860), 1, - anon_sym_COLON, - STATE(3062), 1, - sym_enum_base_clause, - STATE(3221), 1, - sym_enumerator_list, - STATE(3582), 1, - sym_attribute_specifier, - ACTIONS(6233), 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(6235), 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, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [40859] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6588), 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(6586), 41, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [40926] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(4853), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - ACTIONS(6197), 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___attribute__, - anon_sym_EQ, - anon_sym_COLON, - 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, - [40995] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6551), 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(6549), 41, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [41062] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6878), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(6880), 31, - anon_sym_DOT_DOT_DOT, - 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, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [41129] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6734), 1, - anon_sym_LBRACK_LBRACK, - STATE(2781), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6884), 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(6882), 37, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - [41200] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6555), 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(6553), 41, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [41267] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6197), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(4853), 31, - anon_sym_DOT_DOT_DOT, - 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, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [41334] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5477), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5479), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [41401] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2337), 1, - anon_sym_LBRACE, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - STATE(3294), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6888), 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(6886), 37, - ts_builtin_sym_end, - 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - [41474] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2866), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6856), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5992), 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(5990), 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [41545] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2866), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6856), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5998), 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(5996), 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [41616] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5481), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5483), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [41683] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6310), 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(6308), 41, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [41750] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6592), 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(6590), 41, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [41817] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5500), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5502), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [41884] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6763), 1, - anon_sym_LT, - STATE(2920), 1, - sym_template_argument_list, - ACTIONS(6197), 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(4853), 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [41957] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - STATE(3045), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6753), 1, - sym_template_argument_list, - ACTIONS(6890), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5957), 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(5959), 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___attribute__, - 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_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [42032] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5496), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5498), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [42099] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2845), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6805), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5697), 25, - anon_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, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(5699), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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, - [42170] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6559), 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(6557), 41, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [42237] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5507), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5509), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [42304] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5467), 1, - anon_sym_LBRACE, - ACTIONS(5777), 1, - anon_sym_LT, - STATE(2898), 1, - sym_template_argument_list, - ACTIONS(5469), 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(5462), 37, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - [42379] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5511), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5513), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [42446] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5957), 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(5959), 41, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [42513] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6563), 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(6561), 41, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [42580] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6596), 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(6594), 41, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [42647] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6892), 1, - anon_sym_LT, - STATE(2920), 1, - sym_template_argument_list, - ACTIONS(5460), 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(5467), 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [42720] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6600), 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(6598), 41, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [42787] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5456), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5458), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [42854] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6897), 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(6895), 40, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - anon_sym_LBRACK_LBRACK, - 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_try, - [42921] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6698), 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(6696), 41, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [42988] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 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(6606), 41, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [43055] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2814), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6899), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5957), 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(5959), 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [43126] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6612), 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(6610), 41, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [43193] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2700), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6765), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4827), 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(4835), 42, - 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___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [43264] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5460), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5467), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [43333] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6268), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6270), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [43400] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6702), 1, - sym_identifier, - ACTIONS(6706), 1, - sym_primitive_type, - STATE(2746), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6901), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6022), 25, - anon_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, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(6026), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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, - [43475] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6616), 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(6614), 41, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [43542] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2866), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6903), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5699), 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(5697), 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [43613] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2337), 1, - anon_sym_LBRACE, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - STATE(3258), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6908), 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(6906), 37, - ts_builtin_sym_end, - 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - [43686] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5518), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5525), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [43753] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6664), 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(6662), 41, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [43820] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6668), 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(6666), 41, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [43887] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5671), 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(5669), 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_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_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DASH_GT_STAR, - [43954] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6912), 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(6910), 40, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - anon_sym_LBRACK_LBRACK, - 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_try, - [44021] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2337), 1, - anon_sym_LBRACE, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - STATE(3107), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6916), 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(6914), 37, - ts_builtin_sym_end, - 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - [44094] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6920), 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(6918), 40, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - anon_sym_LBRACK_LBRACK, - 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_try, - [44161] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5477), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(5479), 31, - anon_sym_DOT_DOT_DOT, - 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, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [44228] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5481), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(5483), 31, - anon_sym_DOT_DOT_DOT, - 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, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [44295] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5500), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(5502), 31, - anon_sym_DOT_DOT_DOT, - 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, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [44362] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5496), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(5498), 31, - anon_sym_DOT_DOT_DOT, - 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, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [44429] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5518), 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(5525), 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___attribute__, - 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, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [44496] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2956), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6922), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5957), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(5959), 34, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - 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, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [44566] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6672), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6670), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [44632] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6600), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6598), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [44698] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6676), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6674), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [44764] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6606), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [44830] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2893), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6924), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6007), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(6005), 34, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - 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, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [44900] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6612), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6610), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [44966] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6197), 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(4853), 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___attribute__, - 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_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [45032] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6825), 1, - anon_sym_LBRACK_LBRACK, - STATE(2929), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6884), 27, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_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, - ACTIONS(6882), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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, - [45102] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2856), 1, - anon_sym_LBRACE, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(6928), 1, - anon_sym_LBRACK, - ACTIONS(6930), 1, - sym_auto, - ACTIONS(6932), 1, - anon_sym_decltype, - STATE(3543), 1, - sym_new_declarator, - STATE(3554), 1, - sym_decltype_auto, - STATE(4195), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6314), 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(6312), 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, - [45184] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2890), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6934), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5699), 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(5697), 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, - [45254] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6616), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6614), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [45320] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2895), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6937), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6050), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(6048), 34, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - 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, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [45390] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2911), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6939), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5992), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(5990), 34, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - 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, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [45460] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(2890), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5699), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(6934), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6019), 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(6016), 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, - [45532] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2911), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6939), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5998), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(5996), 34, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - 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, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [45602] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2289), 1, - anon_sym_LBRACE, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - STATE(3459), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6916), 26, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - ACTIONS(6914), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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, - [45674] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6630), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6628), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [45740] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5525), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5527), 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(5520), 37, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - [45808] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6295), 1, - anon_sym_LBRACK, - STATE(3051), 1, - sym_new_declarator, - ACTIONS(6943), 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(6941), 38, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - [45878] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6945), 1, - anon_sym_LT, - STATE(3016), 1, - sym_template_argument_list, - ACTIONS(5460), 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_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5467), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [45950] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2911), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6939), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6034), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(6032), 34, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - 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, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [46020] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6684), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6682), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [46086] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6688), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6686), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [46152] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6604), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6602), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [46218] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6197), 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(4853), 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [46286] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6694), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6692), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [46352] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6197), 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___attribute__, - 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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(4853), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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, - [46418] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6812), 1, - anon_sym_LT, - STATE(3031), 1, - sym_template_argument_list, - ACTIONS(6197), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_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(4853), 36, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - 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, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_DOT_DOT_GT, - [46490] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6572), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6570), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [46556] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6658), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6656), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [46622] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2911), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6948), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5699), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(5697), 34, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - 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, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [46692] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6522), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6520), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [46758] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6640), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6638), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [46824] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2289), 1, - anon_sym_LBRACE, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - STATE(3350), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6888), 26, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - ACTIONS(6886), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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, - [46896] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6644), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6642), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [46962] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6654), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6652), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [47028] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4827), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(4835), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [47094] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6618), 1, - anon_sym___attribute__, - ACTIONS(6951), 1, - anon_sym_LBRACE, - ACTIONS(6953), 1, - anon_sym_COLON, - STATE(3296), 1, - sym_enum_base_clause, - STATE(3336), 1, - sym_enumerator_list, - STATE(3707), 1, - sym_attribute_specifier, - ACTIONS(6233), 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(6235), 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_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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [47172] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2289), 1, - anon_sym_LBRACE, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - STATE(3302), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6846), 26, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - ACTIONS(6844), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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, - [47244] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5518), 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(5525), 37, - 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [47310] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6955), 1, - anon_sym_LT, - STATE(3031), 1, - sym_template_argument_list, - ACTIONS(5460), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_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(5467), 36, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - 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, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_DOT_DOT_GT, - [47382] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5460), 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___attribute__, - 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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5467), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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, - [47448] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6596), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6594), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [47514] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6268), 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(6270), 37, - 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [47580] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6592), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6590), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [47646] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6149), 1, - anon_sym___attribute__, - STATE(3122), 1, - sym_attribute_specifier, - ACTIONS(6392), 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6390), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [47716] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6547), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6545), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [47782] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6239), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6237), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [47848] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6958), 1, - anon_sym_LBRACK_LBRACK, - STATE(2929), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6831), 27, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_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, - ACTIONS(6829), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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, - [47918] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6555), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6553), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [47984] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6149), 1, - anon_sym___attribute__, - STATE(3180), 1, - sym_attribute_specifier, - ACTIONS(6424), 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6422), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [48054] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6149), 1, - anon_sym___attribute__, - STATE(3193), 1, - sym_attribute_specifier, - ACTIONS(6428), 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6426), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [48124] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6559), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6557), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [48190] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6149), 1, - anon_sym___attribute__, - STATE(3205), 1, - sym_attribute_specifier, - ACTIONS(6432), 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6430), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [48260] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2856), 1, - anon_sym_LBRACE, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(6928), 1, - anon_sym_LBRACK, - ACTIONS(6930), 1, - sym_auto, - ACTIONS(6932), 1, - anon_sym_decltype, - STATE(3554), 1, - sym_decltype_auto, - STATE(3599), 1, - sym_new_declarator, - STATE(4153), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6303), 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(6301), 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, - [48342] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6149), 1, - anon_sym___attribute__, - STATE(3208), 1, - sym_attribute_specifier, - ACTIONS(6436), 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6434), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [48412] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5467), 1, - anon_sym_LBRACE, - ACTIONS(6961), 1, - anon_sym_LT, - STATE(3012), 1, - sym_template_argument_list, - ACTIONS(5469), 25, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_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_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, - ACTIONS(5462), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [48486] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6814), 1, - sym_identifier, - ACTIONS(6818), 1, - sym_primitive_type, - STATE(2894), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6964), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6026), 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(6022), 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, - [48560] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6563), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6561), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [48626] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6149), 1, - anon_sym___attribute__, - STATE(3224), 1, - sym_attribute_specifier, - ACTIONS(6454), 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6452), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [48696] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2856), 1, - anon_sym_LBRACE, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(6928), 1, - anon_sym_LBRACK, - ACTIONS(6930), 1, - sym_auto, - ACTIONS(6932), 1, - anon_sym_decltype, - STATE(3554), 1, - sym_decltype_auto, - STATE(3558), 1, - sym_new_declarator, - STATE(4090), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6293), 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(6289), 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, - [48778] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5683), 18, - aux_sym_preproc_elif_token1, - 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_identifier, - sym_literal_suffix, - ACTIONS(5681), 40, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_DOT_STAR, - 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_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [48844] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6149), 1, - anon_sym___attribute__, - STATE(3230), 1, - sym_attribute_specifier, - ACTIONS(6322), 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6320), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [48914] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6149), 1, - anon_sym___attribute__, - STATE(3231), 1, - sym_attribute_specifier, - ACTIONS(6458), 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6456), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [48984] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6149), 1, - anon_sym___attribute__, - STATE(3235), 1, - sym_attribute_specifier, - ACTIONS(6462), 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6460), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [49054] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6149), 1, - anon_sym___attribute__, - STATE(3247), 1, - sym_attribute_specifier, - ACTIONS(6494), 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6492), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [49124] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6149), 1, - anon_sym___attribute__, - STATE(3248), 1, - sym_attribute_specifier, - ACTIONS(6366), 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6364), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [49194] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5460), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5467), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [49260] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5671), 18, - aux_sym_preproc_elif_token1, - 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_identifier, - sym_literal_suffix, - ACTIONS(5669), 40, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_DOT_STAR, - 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_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [49326] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2814), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6899), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4827), 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(4835), 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_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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [49396] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6966), 1, - anon_sym_LT, - STATE(3045), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3241), 1, - sym_template_argument_list, - ACTIONS(6890), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4827), 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_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4835), 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, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [49472] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5460), 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(5467), 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___attribute__, - 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_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [49538] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2289), 1, - anon_sym_LBRACE, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - STATE(3446), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6908), 26, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - ACTIONS(6906), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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, - [49610] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6618), 1, - anon_sym___attribute__, - ACTIONS(6951), 1, - anon_sym_LBRACE, - ACTIONS(6953), 1, - anon_sym_COLON, - STATE(3249), 1, - sym_enum_base_clause, - STATE(3396), 1, - sym_enumerator_list, - STATE(3697), 1, - sym_attribute_specifier, - ACTIONS(6225), 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(6227), 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_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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [49688] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4827), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(4835), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [49754] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2911), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6939), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6064), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(6062), 34, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - 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, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [49824] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5679), 18, - aux_sym_preproc_elif_token1, - 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_identifier, - sym_literal_suffix, - ACTIONS(5677), 40, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_DOT_STAR, - 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_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [49890] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6588), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6586), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [49956] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5675), 18, - aux_sym_preproc_elif_token1, - 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_identifier, - sym_literal_suffix, - ACTIONS(5673), 40, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_DOT_STAR, - 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_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [50022] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6310), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6308), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [50088] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5460), 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(5467), 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [50156] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6664), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6662), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [50222] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6668), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6666), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [50288] = 11, + [2220] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5435), + [anon_sym_COMMA] = ACTIONS(5435), + [anon_sym_LPAREN2] = ACTIONS(5435), + [anon_sym_DASH] = ACTIONS(5440), + [anon_sym_PLUS] = ACTIONS(5440), + [anon_sym_STAR] = ACTIONS(5442), + [anon_sym_SLASH] = ACTIONS(5440), + [anon_sym_PERCENT] = ACTIONS(5440), + [anon_sym_PIPE_PIPE] = ACTIONS(5445), + [anon_sym_AMP_AMP] = ACTIONS(5435), + [anon_sym_PIPE] = ACTIONS(5440), + [anon_sym_CARET] = ACTIONS(5440), + [anon_sym_AMP] = ACTIONS(5442), + [anon_sym_EQ_EQ] = ACTIONS(5445), + [anon_sym_BANG_EQ] = ACTIONS(5445), + [anon_sym_GT] = ACTIONS(5440), + [anon_sym_GT_EQ] = ACTIONS(5440), + [anon_sym_LT_EQ] = ACTIONS(5440), + [anon_sym_LT] = ACTIONS(5440), + [anon_sym_LT_LT] = ACTIONS(5440), + [anon_sym_GT_GT] = ACTIONS(5440), + [anon_sym___extension__] = ACTIONS(5438), + [anon_sym_COLON_COLON] = ACTIONS(5438), + [anon_sym_LBRACE] = ACTIONS(5438), + [anon_sym_LBRACK] = ACTIONS(5435), + [anon_sym_EQ] = ACTIONS(5440), + [anon_sym_const] = ACTIONS(5433), + [anon_sym_constexpr] = ACTIONS(5438), + [anon_sym_volatile] = ACTIONS(5438), + [anon_sym_restrict] = ACTIONS(5438), + [anon_sym___restrict__] = ACTIONS(5438), + [anon_sym__Atomic] = ACTIONS(5438), + [anon_sym__Noreturn] = ACTIONS(5438), + [anon_sym_noreturn] = ACTIONS(5438), + [anon_sym_mutable] = ACTIONS(5438), + [anon_sym_constinit] = ACTIONS(5438), + [anon_sym_consteval] = ACTIONS(5438), + [anon_sym_QMARK] = ACTIONS(5445), + [anon_sym_STAR_EQ] = ACTIONS(5445), + [anon_sym_SLASH_EQ] = ACTIONS(5445), + [anon_sym_PERCENT_EQ] = ACTIONS(5445), + [anon_sym_PLUS_EQ] = ACTIONS(5445), + [anon_sym_DASH_EQ] = ACTIONS(5445), + [anon_sym_LT_LT_EQ] = ACTIONS(5445), + [anon_sym_GT_GT_EQ] = ACTIONS(5440), + [anon_sym_AMP_EQ] = ACTIONS(5445), + [anon_sym_CARET_EQ] = ACTIONS(5445), + [anon_sym_PIPE_EQ] = ACTIONS(5445), + [anon_sym_and_eq] = ACTIONS(5445), + [anon_sym_or_eq] = ACTIONS(5445), + [anon_sym_xor_eq] = ACTIONS(5445), + [anon_sym_LT_EQ_GT] = ACTIONS(5445), + [anon_sym_or] = ACTIONS(5440), + [anon_sym_and] = ACTIONS(5440), + [anon_sym_bitor] = ACTIONS(5445), + [anon_sym_xor] = ACTIONS(5440), + [anon_sym_bitand] = ACTIONS(5445), + [anon_sym_not_eq] = ACTIONS(5445), + [anon_sym_DASH_DASH] = ACTIONS(5445), + [anon_sym_PLUS_PLUS] = ACTIONS(5445), + [anon_sym_DOT] = ACTIONS(5440), + [anon_sym_DOT_STAR] = ACTIONS(5445), + [anon_sym_DASH_GT] = ACTIONS(5445), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5438), + [anon_sym_decltype] = ACTIONS(5438), + [anon_sym_GT2] = ACTIONS(5435), + }, + [2221] = { + [sym_string_literal] = STATE(2216), + [sym_raw_string_literal] = STATE(2216), + [aux_sym_concatenated_string_repeat1] = STATE(2216), + [sym_identifier] = ACTIONS(6173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5556), + [anon_sym_COMMA] = ACTIONS(5556), + [anon_sym_RPAREN] = ACTIONS(5556), + [anon_sym_LPAREN2] = ACTIONS(5556), + [anon_sym_DASH] = ACTIONS(5560), + [anon_sym_PLUS] = ACTIONS(5560), + [anon_sym_STAR] = ACTIONS(5560), + [anon_sym_SLASH] = ACTIONS(5560), + [anon_sym_PERCENT] = ACTIONS(5560), + [anon_sym_PIPE_PIPE] = ACTIONS(5556), + [anon_sym_AMP_AMP] = ACTIONS(5556), + [anon_sym_PIPE] = ACTIONS(5560), + [anon_sym_CARET] = ACTIONS(5560), + [anon_sym_AMP] = ACTIONS(5560), + [anon_sym_EQ_EQ] = ACTIONS(5556), + [anon_sym_BANG_EQ] = ACTIONS(5556), + [anon_sym_GT] = ACTIONS(5560), + [anon_sym_GT_EQ] = ACTIONS(5556), + [anon_sym_LT_EQ] = ACTIONS(5560), + [anon_sym_LT] = ACTIONS(5560), + [anon_sym_LT_LT] = ACTIONS(5560), + [anon_sym_GT_GT] = ACTIONS(5560), + [anon_sym_LBRACK] = ACTIONS(5556), + [anon_sym_EQ] = ACTIONS(5560), + [anon_sym_QMARK] = ACTIONS(5556), + [anon_sym_STAR_EQ] = ACTIONS(5556), + [anon_sym_SLASH_EQ] = ACTIONS(5556), + [anon_sym_PERCENT_EQ] = ACTIONS(5556), + [anon_sym_PLUS_EQ] = ACTIONS(5556), + [anon_sym_DASH_EQ] = ACTIONS(5556), + [anon_sym_LT_LT_EQ] = ACTIONS(5556), + [anon_sym_GT_GT_EQ] = ACTIONS(5556), + [anon_sym_AMP_EQ] = ACTIONS(5556), + [anon_sym_CARET_EQ] = ACTIONS(5556), + [anon_sym_PIPE_EQ] = ACTIONS(5556), + [anon_sym_and_eq] = ACTIONS(5560), + [anon_sym_or_eq] = ACTIONS(5560), + [anon_sym_xor_eq] = ACTIONS(5560), + [anon_sym_LT_EQ_GT] = ACTIONS(5556), + [anon_sym_or] = ACTIONS(5560), + [anon_sym_and] = ACTIONS(5560), + [anon_sym_bitor] = ACTIONS(5560), + [anon_sym_xor] = ACTIONS(5560), + [anon_sym_bitand] = ACTIONS(5560), + [anon_sym_not_eq] = ACTIONS(5560), + [anon_sym_DASH_DASH] = ACTIONS(5556), + [anon_sym_PLUS_PLUS] = ACTIONS(5556), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_DOT_STAR] = ACTIONS(5556), + [anon_sym_DASH_GT] = ACTIONS(5560), + [anon_sym_L_DQUOTE] = ACTIONS(5413), + [anon_sym_u_DQUOTE] = ACTIONS(5413), + [anon_sym_U_DQUOTE] = ACTIONS(5413), + [anon_sym_u8_DQUOTE] = ACTIONS(5413), + [anon_sym_DQUOTE] = ACTIONS(5413), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5415), + [anon_sym_LR_DQUOTE] = ACTIONS(5415), + [anon_sym_uR_DQUOTE] = ACTIONS(5415), + [anon_sym_UR_DQUOTE] = ACTIONS(5415), + [anon_sym_u8R_DQUOTE] = ACTIONS(5415), + [anon_sym_DASH_GT_STAR] = ACTIONS(5556), + [sym_literal_suffix] = ACTIONS(5560), + }, + [2222] = { + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(6202), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(3324), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7571), + [sym_qualified_type_identifier] = STATE(4526), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5478), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_union] = ACTIONS(75), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1534), + }, + [2223] = { + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(6182), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(3324), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7571), + [sym_qualified_type_identifier] = STATE(4526), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5478), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_union] = ACTIONS(75), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1534), + }, + [2224] = { + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(6052), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(3324), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7571), + [sym_qualified_type_identifier] = STATE(4526), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5478), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_union] = ACTIONS(75), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1534), + }, + [2225] = { + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(6066), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(3324), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7571), + [sym_qualified_type_identifier] = STATE(4526), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5478), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_union] = ACTIONS(75), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1534), + }, + [2226] = { + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(6076), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(3324), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7571), + [sym_qualified_type_identifier] = STATE(4526), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5478), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_union] = ACTIONS(75), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1534), + }, + [2227] = { + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(6088), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(3324), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7571), + [sym_qualified_type_identifier] = STATE(4526), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5478), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_union] = ACTIONS(75), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1534), + }, + [2228] = { + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(6100), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(3324), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7571), + [sym_qualified_type_identifier] = STATE(4526), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5478), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_union] = ACTIONS(75), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1534), + }, + [2229] = { + [sym_declaration_modifiers] = STATE(2334), + [sym_declaration_specifiers] = STATE(6110), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3136), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(3324), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7571), + [sym_qualified_type_identifier] = STATE(4526), + [aux_sym_declaration_specifiers_repeat1] = STATE(2334), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5478), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_union] = ACTIONS(75), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1534), + }, + [2230] = { + [sym_string_literal] = STATE(3581), + [sym_template_argument_list] = STATE(4089), + [sym_raw_string_literal] = STATE(3581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4765), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4773), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4773), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(5946), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_SEMI] = ACTIONS(4765), + [anon_sym___attribute__] = ACTIONS(4765), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_EQ] = ACTIONS(6175), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(6177), + [anon_sym_SLASH_EQ] = ACTIONS(6177), + [anon_sym_PERCENT_EQ] = ACTIONS(6177), + [anon_sym_PLUS_EQ] = ACTIONS(6177), + [anon_sym_DASH_EQ] = ACTIONS(6177), + [anon_sym_LT_LT_EQ] = ACTIONS(6177), + [anon_sym_GT_GT_EQ] = ACTIONS(6177), + [anon_sym_AMP_EQ] = ACTIONS(6177), + [anon_sym_CARET_EQ] = ACTIONS(6177), + [anon_sym_PIPE_EQ] = ACTIONS(6177), + [anon_sym_and_eq] = ACTIONS(6177), + [anon_sym_or_eq] = ACTIONS(6177), + [anon_sym_xor_eq] = ACTIONS(6177), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4765), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4765), + [anon_sym_not_eq] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(6179), + [anon_sym_u_DQUOTE] = ACTIONS(6179), + [anon_sym_U_DQUOTE] = ACTIONS(6179), + [anon_sym_u8_DQUOTE] = ACTIONS(6179), + [anon_sym_DQUOTE] = ACTIONS(6179), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6181), + [anon_sym_LR_DQUOTE] = ACTIONS(6181), + [anon_sym_uR_DQUOTE] = ACTIONS(6181), + [anon_sym_UR_DQUOTE] = ACTIONS(6181), + [anon_sym_u8R_DQUOTE] = ACTIONS(6181), + }, + [2231] = { + [ts_builtin_sym_end] = ACTIONS(5662), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5662), + [anon_sym_COMMA] = ACTIONS(5662), + [anon_sym_RPAREN] = ACTIONS(5662), + [anon_sym_LPAREN2] = ACTIONS(5662), + [anon_sym_DASH] = ACTIONS(5664), + [anon_sym_PLUS] = ACTIONS(5664), + [anon_sym_STAR] = ACTIONS(5664), + [anon_sym_SLASH] = ACTIONS(5664), + [anon_sym_PERCENT] = ACTIONS(5664), + [anon_sym_PIPE_PIPE] = ACTIONS(5662), + [anon_sym_AMP_AMP] = ACTIONS(5662), + [anon_sym_PIPE] = ACTIONS(5664), + [anon_sym_CARET] = ACTIONS(5664), + [anon_sym_AMP] = ACTIONS(5664), + [anon_sym_EQ_EQ] = ACTIONS(5662), + [anon_sym_BANG_EQ] = ACTIONS(5662), + [anon_sym_GT] = ACTIONS(5664), + [anon_sym_GT_EQ] = ACTIONS(5662), + [anon_sym_LT_EQ] = ACTIONS(5664), + [anon_sym_LT] = ACTIONS(5664), + [anon_sym_LT_LT] = ACTIONS(5664), + [anon_sym_GT_GT] = ACTIONS(5664), + [anon_sym_SEMI] = ACTIONS(5662), + [anon_sym_RBRACE] = ACTIONS(5662), + [anon_sym_LBRACK] = ACTIONS(5662), + [anon_sym_RBRACK] = ACTIONS(5662), + [anon_sym_EQ] = ACTIONS(5664), + [anon_sym_COLON] = ACTIONS(5662), + [anon_sym_QMARK] = ACTIONS(5662), + [anon_sym_STAR_EQ] = ACTIONS(5662), + [anon_sym_SLASH_EQ] = ACTIONS(5662), + [anon_sym_PERCENT_EQ] = ACTIONS(5662), + [anon_sym_PLUS_EQ] = ACTIONS(5662), + [anon_sym_DASH_EQ] = ACTIONS(5662), + [anon_sym_LT_LT_EQ] = ACTIONS(5662), + [anon_sym_GT_GT_EQ] = ACTIONS(5662), + [anon_sym_AMP_EQ] = ACTIONS(5662), + [anon_sym_CARET_EQ] = ACTIONS(5662), + [anon_sym_PIPE_EQ] = ACTIONS(5662), + [anon_sym_and_eq] = ACTIONS(5664), + [anon_sym_or_eq] = ACTIONS(5664), + [anon_sym_xor_eq] = ACTIONS(5664), + [anon_sym_LT_EQ_GT] = ACTIONS(5662), + [anon_sym_or] = ACTIONS(5664), + [anon_sym_and] = ACTIONS(5664), + [anon_sym_bitor] = ACTIONS(5664), + [anon_sym_xor] = ACTIONS(5664), + [anon_sym_bitand] = ACTIONS(5664), + [anon_sym_not_eq] = ACTIONS(5664), + [anon_sym_DASH_DASH] = ACTIONS(5662), + [anon_sym_PLUS_PLUS] = ACTIONS(5662), + [anon_sym_DOT] = ACTIONS(5664), + [anon_sym_DOT_STAR] = ACTIONS(5662), + [anon_sym_DASH_GT] = ACTIONS(5662), + [anon_sym_L_DQUOTE] = ACTIONS(5662), + [anon_sym_u_DQUOTE] = ACTIONS(5662), + [anon_sym_U_DQUOTE] = ACTIONS(5662), + [anon_sym_u8_DQUOTE] = ACTIONS(5662), + [anon_sym_DQUOTE] = ACTIONS(5662), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5662), + [anon_sym_LR_DQUOTE] = ACTIONS(5662), + [anon_sym_uR_DQUOTE] = ACTIONS(5662), + [anon_sym_UR_DQUOTE] = ACTIONS(5662), + [anon_sym_u8R_DQUOTE] = ACTIONS(5662), + [sym_literal_suffix] = ACTIONS(5664), + }, + [2232] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1891), + [ts_builtin_sym_end] = ACTIONS(5975), + [sym_identifier] = ACTIONS(5653), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5975), + [anon_sym_COMMA] = ACTIONS(5975), + [anon_sym_RPAREN] = ACTIONS(5975), + [anon_sym_LPAREN2] = ACTIONS(5975), + [anon_sym_DASH] = ACTIONS(5978), + [anon_sym_PLUS] = ACTIONS(5978), + [anon_sym_STAR] = ACTIONS(5978), + [anon_sym_SLASH] = ACTIONS(5978), + [anon_sym_PERCENT] = ACTIONS(5978), + [anon_sym_PIPE_PIPE] = ACTIONS(5975), + [anon_sym_AMP_AMP] = ACTIONS(5975), + [anon_sym_PIPE] = ACTIONS(5978), + [anon_sym_CARET] = ACTIONS(5978), + [anon_sym_AMP] = ACTIONS(5978), + [anon_sym_EQ_EQ] = ACTIONS(5975), + [anon_sym_BANG_EQ] = ACTIONS(5975), + [anon_sym_GT] = ACTIONS(5978), + [anon_sym_GT_EQ] = ACTIONS(5975), + [anon_sym_LT_EQ] = ACTIONS(5978), + [anon_sym_LT] = ACTIONS(5978), + [anon_sym_LT_LT] = ACTIONS(5978), + [anon_sym_GT_GT] = ACTIONS(5978), + [anon_sym_SEMI] = ACTIONS(5975), + [anon_sym___attribute__] = ACTIONS(5978), + [anon_sym_LBRACE] = ACTIONS(5975), + [anon_sym_RBRACE] = ACTIONS(5975), + [anon_sym_signed] = ACTIONS(5673), + [anon_sym_unsigned] = ACTIONS(5673), + [anon_sym_long] = ACTIONS(5673), + [anon_sym_short] = ACTIONS(5673), + [anon_sym_LBRACK] = ACTIONS(5975), + [anon_sym_RBRACK] = ACTIONS(5975), + [anon_sym_EQ] = ACTIONS(5978), + [sym_primitive_type] = ACTIONS(5653), + [anon_sym_COLON] = ACTIONS(5975), + [anon_sym_QMARK] = ACTIONS(5975), + [anon_sym_STAR_EQ] = ACTIONS(5975), + [anon_sym_SLASH_EQ] = ACTIONS(5975), + [anon_sym_PERCENT_EQ] = ACTIONS(5975), + [anon_sym_PLUS_EQ] = ACTIONS(5975), + [anon_sym_DASH_EQ] = ACTIONS(5975), + [anon_sym_LT_LT_EQ] = ACTIONS(5975), + [anon_sym_GT_GT_EQ] = ACTIONS(5975), + [anon_sym_AMP_EQ] = ACTIONS(5975), + [anon_sym_CARET_EQ] = ACTIONS(5975), + [anon_sym_PIPE_EQ] = ACTIONS(5975), + [anon_sym_and_eq] = ACTIONS(5978), + [anon_sym_or_eq] = ACTIONS(5978), + [anon_sym_xor_eq] = ACTIONS(5978), + [anon_sym_LT_EQ_GT] = ACTIONS(5975), + [anon_sym_or] = ACTIONS(5978), + [anon_sym_and] = ACTIONS(5978), + [anon_sym_bitor] = ACTIONS(5978), + [anon_sym_xor] = ACTIONS(5978), + [anon_sym_bitand] = ACTIONS(5978), + [anon_sym_not_eq] = ACTIONS(5978), + [anon_sym_DASH_DASH] = ACTIONS(5975), + [anon_sym_PLUS_PLUS] = ACTIONS(5975), + [anon_sym_DOT] = ACTIONS(5978), + [anon_sym_DOT_STAR] = ACTIONS(5975), + [anon_sym_DASH_GT] = ACTIONS(5975), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5978), + [anon_sym_decltype] = ACTIONS(5978), + }, + [2233] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2175), + [ts_builtin_sym_end] = ACTIONS(6183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6183), + [anon_sym_COMMA] = ACTIONS(6183), + [anon_sym_RPAREN] = ACTIONS(6183), + [anon_sym_LPAREN2] = ACTIONS(6183), + [anon_sym_DASH] = ACTIONS(6185), + [anon_sym_PLUS] = ACTIONS(6185), + [anon_sym_STAR] = ACTIONS(6183), + [anon_sym_SLASH] = ACTIONS(6185), + [anon_sym_PERCENT] = ACTIONS(6183), + [anon_sym_PIPE_PIPE] = ACTIONS(6183), + [anon_sym_AMP_AMP] = ACTIONS(6183), + [anon_sym_PIPE] = ACTIONS(6185), + [anon_sym_CARET] = ACTIONS(6183), + [anon_sym_AMP] = ACTIONS(6185), + [anon_sym_EQ_EQ] = ACTIONS(6183), + [anon_sym_BANG_EQ] = ACTIONS(6183), + [anon_sym_GT] = ACTIONS(6185), + [anon_sym_GT_EQ] = ACTIONS(6183), + [anon_sym_LT_EQ] = ACTIONS(6185), + [anon_sym_LT] = ACTIONS(6185), + [anon_sym_LT_LT] = ACTIONS(6183), + [anon_sym_GT_GT] = ACTIONS(6183), + [anon_sym_SEMI] = ACTIONS(6183), + [anon_sym___extension__] = ACTIONS(6183), + [anon_sym___attribute__] = ACTIONS(6183), + [anon_sym_LBRACE] = ACTIONS(6183), + [anon_sym_RBRACE] = ACTIONS(6183), + [anon_sym_signed] = ACTIONS(6187), + [anon_sym_unsigned] = ACTIONS(6187), + [anon_sym_long] = ACTIONS(6187), + [anon_sym_short] = ACTIONS(6187), + [anon_sym_LBRACK] = ACTIONS(6183), + [anon_sym_RBRACK] = ACTIONS(6183), + [anon_sym_const] = ACTIONS(6185), + [anon_sym_constexpr] = ACTIONS(6183), + [anon_sym_volatile] = ACTIONS(6183), + [anon_sym_restrict] = ACTIONS(6183), + [anon_sym___restrict__] = ACTIONS(6183), + [anon_sym__Atomic] = ACTIONS(6183), + [anon_sym__Noreturn] = ACTIONS(6183), + [anon_sym_noreturn] = ACTIONS(6183), + [anon_sym_mutable] = ACTIONS(6183), + [anon_sym_constinit] = ACTIONS(6183), + [anon_sym_consteval] = ACTIONS(6183), + [anon_sym_COLON] = ACTIONS(6183), + [anon_sym_QMARK] = ACTIONS(6183), + [anon_sym_LT_EQ_GT] = ACTIONS(6183), + [anon_sym_or] = ACTIONS(6183), + [anon_sym_and] = ACTIONS(6183), + [anon_sym_bitor] = ACTIONS(6183), + [anon_sym_xor] = ACTIONS(6183), + [anon_sym_bitand] = ACTIONS(6183), + [anon_sym_not_eq] = ACTIONS(6183), + [anon_sym_DASH_DASH] = ACTIONS(6183), + [anon_sym_PLUS_PLUS] = ACTIONS(6183), + [anon_sym_DOT] = ACTIONS(6185), + [anon_sym_DOT_STAR] = ACTIONS(6183), + [anon_sym_DASH_GT] = ACTIONS(6183), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6183), + [anon_sym_decltype] = ACTIONS(6183), + [anon_sym_final] = ACTIONS(6183), + [anon_sym_override] = ACTIONS(6183), + [anon_sym_requires] = ACTIONS(6183), + [sym_semgrep_metavar] = ACTIONS(6183), + }, + [2234] = { + [sym_decltype_auto] = STATE(2235), + [ts_builtin_sym_end] = ACTIONS(6189), + [sym_identifier] = ACTIONS(6191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6189), + [anon_sym_COMMA] = ACTIONS(6189), + [anon_sym_RPAREN] = ACTIONS(6189), + [aux_sym_preproc_if_token2] = ACTIONS(6189), + [aux_sym_preproc_else_token1] = ACTIONS(6189), + [aux_sym_preproc_elif_token1] = ACTIONS(6191), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6189), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6189), + [anon_sym_LPAREN2] = ACTIONS(6189), + [anon_sym_DASH] = ACTIONS(6191), + [anon_sym_PLUS] = ACTIONS(6191), + [anon_sym_STAR] = ACTIONS(6191), + [anon_sym_SLASH] = ACTIONS(6191), + [anon_sym_PERCENT] = ACTIONS(6191), + [anon_sym_PIPE_PIPE] = ACTIONS(6189), + [anon_sym_AMP_AMP] = ACTIONS(6189), + [anon_sym_PIPE] = ACTIONS(6191), + [anon_sym_CARET] = ACTIONS(6191), + [anon_sym_AMP] = ACTIONS(6191), + [anon_sym_EQ_EQ] = ACTIONS(6189), + [anon_sym_BANG_EQ] = ACTIONS(6189), + [anon_sym_GT] = ACTIONS(6191), + [anon_sym_GT_EQ] = ACTIONS(6189), + [anon_sym_LT_EQ] = ACTIONS(6191), + [anon_sym_LT] = ACTIONS(6191), + [anon_sym_LT_LT] = ACTIONS(6191), + [anon_sym_GT_GT] = ACTIONS(6191), + [anon_sym_SEMI] = ACTIONS(6189), + [anon_sym___attribute__] = ACTIONS(6191), + [anon_sym_LBRACE] = ACTIONS(6189), + [anon_sym_RBRACE] = ACTIONS(6189), + [anon_sym_LBRACK] = ACTIONS(6189), + [anon_sym_RBRACK] = ACTIONS(6189), + [anon_sym_EQ] = ACTIONS(6191), + [anon_sym_COLON] = ACTIONS(6189), + [anon_sym_QMARK] = ACTIONS(6189), + [anon_sym_STAR_EQ] = ACTIONS(6189), + [anon_sym_SLASH_EQ] = ACTIONS(6189), + [anon_sym_PERCENT_EQ] = ACTIONS(6189), + [anon_sym_PLUS_EQ] = ACTIONS(6189), + [anon_sym_DASH_EQ] = ACTIONS(6189), + [anon_sym_LT_LT_EQ] = ACTIONS(6189), + [anon_sym_GT_GT_EQ] = ACTIONS(6189), + [anon_sym_AMP_EQ] = ACTIONS(6189), + [anon_sym_CARET_EQ] = ACTIONS(6189), + [anon_sym_PIPE_EQ] = ACTIONS(6189), + [anon_sym_and_eq] = ACTIONS(6191), + [anon_sym_or_eq] = ACTIONS(6191), + [anon_sym_xor_eq] = ACTIONS(6191), + [anon_sym_LT_EQ_GT] = ACTIONS(6189), + [anon_sym_or] = ACTIONS(6191), + [anon_sym_and] = ACTIONS(6191), + [anon_sym_bitor] = ACTIONS(6191), + [anon_sym_xor] = ACTIONS(6191), + [anon_sym_bitand] = ACTIONS(6191), + [anon_sym_not_eq] = ACTIONS(6191), + [anon_sym_DASH_DASH] = ACTIONS(6189), + [anon_sym_PLUS_PLUS] = ACTIONS(6189), + [anon_sym_DOT] = ACTIONS(6191), + [anon_sym_DOT_STAR] = ACTIONS(6189), + [anon_sym_DASH_GT] = ACTIONS(6189), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5765), + [anon_sym_decltype] = ACTIONS(5767), + }, + [2235] = { + [ts_builtin_sym_end] = ACTIONS(6193), + [sym_identifier] = ACTIONS(6195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6193), + [anon_sym_COMMA] = ACTIONS(6193), + [anon_sym_RPAREN] = ACTIONS(6193), + [aux_sym_preproc_if_token2] = ACTIONS(6193), + [aux_sym_preproc_else_token1] = ACTIONS(6193), + [aux_sym_preproc_elif_token1] = ACTIONS(6195), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6193), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6193), + [anon_sym_LPAREN2] = ACTIONS(6193), + [anon_sym_DASH] = ACTIONS(6195), + [anon_sym_PLUS] = ACTIONS(6195), + [anon_sym_STAR] = ACTIONS(6195), + [anon_sym_SLASH] = ACTIONS(6195), + [anon_sym_PERCENT] = ACTIONS(6195), + [anon_sym_PIPE_PIPE] = ACTIONS(6193), + [anon_sym_AMP_AMP] = ACTIONS(6193), + [anon_sym_PIPE] = ACTIONS(6195), + [anon_sym_CARET] = ACTIONS(6195), + [anon_sym_AMP] = ACTIONS(6195), + [anon_sym_EQ_EQ] = ACTIONS(6193), + [anon_sym_BANG_EQ] = ACTIONS(6193), + [anon_sym_GT] = ACTIONS(6195), + [anon_sym_GT_EQ] = ACTIONS(6193), + [anon_sym_LT_EQ] = ACTIONS(6195), + [anon_sym_LT] = ACTIONS(6195), + [anon_sym_LT_LT] = ACTIONS(6195), + [anon_sym_GT_GT] = ACTIONS(6195), + [anon_sym_SEMI] = ACTIONS(6193), + [anon_sym___attribute__] = ACTIONS(6195), + [anon_sym_LBRACE] = ACTIONS(6193), + [anon_sym_RBRACE] = ACTIONS(6193), + [anon_sym_LBRACK] = ACTIONS(6193), + [anon_sym_RBRACK] = ACTIONS(6193), + [anon_sym_EQ] = ACTIONS(6195), + [anon_sym_COLON] = ACTIONS(6193), + [anon_sym_QMARK] = ACTIONS(6193), + [anon_sym_STAR_EQ] = ACTIONS(6193), + [anon_sym_SLASH_EQ] = ACTIONS(6193), + [anon_sym_PERCENT_EQ] = ACTIONS(6193), + [anon_sym_PLUS_EQ] = ACTIONS(6193), + [anon_sym_DASH_EQ] = ACTIONS(6193), + [anon_sym_LT_LT_EQ] = ACTIONS(6193), + [anon_sym_GT_GT_EQ] = ACTIONS(6193), + [anon_sym_AMP_EQ] = ACTIONS(6193), + [anon_sym_CARET_EQ] = ACTIONS(6193), + [anon_sym_PIPE_EQ] = ACTIONS(6193), + [anon_sym_and_eq] = ACTIONS(6195), + [anon_sym_or_eq] = ACTIONS(6195), + [anon_sym_xor_eq] = ACTIONS(6195), + [anon_sym_LT_EQ_GT] = ACTIONS(6193), + [anon_sym_or] = ACTIONS(6195), + [anon_sym_and] = ACTIONS(6195), + [anon_sym_bitor] = ACTIONS(6195), + [anon_sym_xor] = ACTIONS(6195), + [anon_sym_bitand] = ACTIONS(6195), + [anon_sym_not_eq] = ACTIONS(6195), + [anon_sym_DASH_DASH] = ACTIONS(6193), + [anon_sym_PLUS_PLUS] = ACTIONS(6193), + [anon_sym_DOT] = ACTIONS(6195), + [anon_sym_DOT_STAR] = ACTIONS(6193), + [anon_sym_DASH_GT] = ACTIONS(6193), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6195), + [anon_sym_decltype] = ACTIONS(6195), + }, + [2236] = { + [sym_identifier] = ACTIONS(5812), + [aux_sym_preproc_def_token1] = ACTIONS(5812), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5814), + [aux_sym_preproc_if_token1] = ACTIONS(5812), + [aux_sym_preproc_if_token2] = ACTIONS(5812), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5812), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5812), + [sym_preproc_directive] = ACTIONS(5812), + [anon_sym_LPAREN2] = ACTIONS(5814), + [anon_sym_TILDE] = ACTIONS(5814), + [anon_sym_STAR] = ACTIONS(5814), + [anon_sym_AMP_AMP] = ACTIONS(5814), + [anon_sym_AMP] = ACTIONS(5812), + [anon_sym___extension__] = ACTIONS(5812), + [anon_sym_typedef] = ACTIONS(5812), + [anon_sym_extern] = ACTIONS(5812), + [anon_sym___attribute__] = ACTIONS(5812), + [anon_sym_COLON_COLON] = ACTIONS(5814), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5814), + [anon_sym___declspec] = ACTIONS(5812), + [anon_sym___based] = ACTIONS(5812), + [anon_sym_signed] = ACTIONS(5812), + [anon_sym_unsigned] = ACTIONS(5812), + [anon_sym_long] = ACTIONS(5812), + [anon_sym_short] = ACTIONS(5812), + [anon_sym_LBRACK] = ACTIONS(5812), + [anon_sym_static] = ACTIONS(5812), + [anon_sym_register] = ACTIONS(5812), + [anon_sym_inline] = ACTIONS(5812), + [anon_sym___inline] = ACTIONS(5812), + [anon_sym___inline__] = ACTIONS(5812), + [anon_sym___forceinline] = ACTIONS(5812), + [anon_sym_thread_local] = ACTIONS(5812), + [anon_sym___thread] = ACTIONS(5812), + [anon_sym_const] = ACTIONS(5812), + [anon_sym_constexpr] = ACTIONS(5812), + [anon_sym_volatile] = ACTIONS(5812), + [anon_sym_restrict] = ACTIONS(5812), + [anon_sym___restrict__] = ACTIONS(5812), + [anon_sym__Atomic] = ACTIONS(5812), + [anon_sym__Noreturn] = ACTIONS(5812), + [anon_sym_noreturn] = ACTIONS(5812), + [anon_sym_mutable] = ACTIONS(5812), + [anon_sym_constinit] = ACTIONS(5812), + [anon_sym_consteval] = ACTIONS(5812), + [sym_primitive_type] = ACTIONS(5812), + [anon_sym_enum] = ACTIONS(5812), + [anon_sym_class] = ACTIONS(5812), + [anon_sym_struct] = ACTIONS(5812), + [anon_sym_union] = ACTIONS(5812), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5812), + [anon_sym_decltype] = ACTIONS(5812), + [anon_sym_virtual] = ACTIONS(5812), + [anon_sym_alignas] = ACTIONS(5812), + [anon_sym_explicit] = ACTIONS(5812), + [anon_sym_typename] = ACTIONS(5812), + [anon_sym_template] = ACTIONS(5812), + [anon_sym_operator] = ACTIONS(5812), + [anon_sym_friend] = ACTIONS(5812), + [anon_sym_public] = ACTIONS(5812), + [anon_sym_private] = ACTIONS(5812), + [anon_sym_protected] = ACTIONS(5812), + [anon_sym_using] = ACTIONS(5812), + [anon_sym_static_assert] = ACTIONS(5812), + [sym_semgrep_metavar] = ACTIONS(5814), + }, + [2237] = { + [sym_identifier] = ACTIONS(2191), + [aux_sym_preproc_def_token1] = ACTIONS(2191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2193), + [aux_sym_preproc_if_token1] = ACTIONS(2191), + [aux_sym_preproc_if_token2] = ACTIONS(2191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2191), + [sym_preproc_directive] = ACTIONS(2191), + [anon_sym_LPAREN2] = ACTIONS(2193), + [anon_sym_TILDE] = ACTIONS(2193), + [anon_sym_STAR] = ACTIONS(2193), + [anon_sym_AMP_AMP] = ACTIONS(2193), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym___extension__] = ACTIONS(2191), + [anon_sym_typedef] = ACTIONS(2191), + [anon_sym_extern] = ACTIONS(2191), + [anon_sym___attribute__] = ACTIONS(2191), + [anon_sym_COLON_COLON] = ACTIONS(2193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2193), + [anon_sym___declspec] = ACTIONS(2191), + [anon_sym___based] = ACTIONS(2191), + [anon_sym_signed] = ACTIONS(2191), + [anon_sym_unsigned] = ACTIONS(2191), + [anon_sym_long] = ACTIONS(2191), + [anon_sym_short] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_register] = ACTIONS(2191), + [anon_sym_inline] = ACTIONS(2191), + [anon_sym___inline] = ACTIONS(2191), + [anon_sym___inline__] = ACTIONS(2191), + [anon_sym___forceinline] = ACTIONS(2191), + [anon_sym_thread_local] = ACTIONS(2191), + [anon_sym___thread] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_constexpr] = ACTIONS(2191), + [anon_sym_volatile] = ACTIONS(2191), + [anon_sym_restrict] = ACTIONS(2191), + [anon_sym___restrict__] = ACTIONS(2191), + [anon_sym__Atomic] = ACTIONS(2191), + [anon_sym__Noreturn] = ACTIONS(2191), + [anon_sym_noreturn] = ACTIONS(2191), + [anon_sym_mutable] = ACTIONS(2191), + [anon_sym_constinit] = ACTIONS(2191), + [anon_sym_consteval] = ACTIONS(2191), + [sym_primitive_type] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_struct] = ACTIONS(2191), + [anon_sym_union] = ACTIONS(2191), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2191), + [anon_sym_decltype] = ACTIONS(2191), + [anon_sym_virtual] = ACTIONS(2191), + [anon_sym_alignas] = ACTIONS(2191), + [anon_sym_explicit] = ACTIONS(2191), + [anon_sym_typename] = ACTIONS(2191), + [anon_sym_template] = ACTIONS(2191), + [anon_sym_operator] = ACTIONS(2191), + [anon_sym_friend] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_private] = ACTIONS(2191), + [anon_sym_protected] = ACTIONS(2191), + [anon_sym_using] = ACTIONS(2191), + [anon_sym_static_assert] = ACTIONS(2191), + [sym_semgrep_metavar] = ACTIONS(2193), + }, + [2238] = { + [sym_identifier] = ACTIONS(5816), + [aux_sym_preproc_def_token1] = ACTIONS(5816), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5818), + [aux_sym_preproc_if_token1] = ACTIONS(5816), + [aux_sym_preproc_if_token2] = ACTIONS(5816), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5816), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5816), + [sym_preproc_directive] = ACTIONS(5816), + [anon_sym_LPAREN2] = ACTIONS(5818), + [anon_sym_TILDE] = ACTIONS(5818), + [anon_sym_STAR] = ACTIONS(5818), + [anon_sym_AMP_AMP] = ACTIONS(5818), + [anon_sym_AMP] = ACTIONS(5816), + [anon_sym___extension__] = ACTIONS(5816), + [anon_sym_typedef] = ACTIONS(5816), + [anon_sym_extern] = ACTIONS(5816), + [anon_sym___attribute__] = ACTIONS(5816), + [anon_sym_COLON_COLON] = ACTIONS(5818), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5818), + [anon_sym___declspec] = ACTIONS(5816), + [anon_sym___based] = ACTIONS(5816), + [anon_sym_signed] = ACTIONS(5816), + [anon_sym_unsigned] = ACTIONS(5816), + [anon_sym_long] = ACTIONS(5816), + [anon_sym_short] = ACTIONS(5816), + [anon_sym_LBRACK] = ACTIONS(5816), + [anon_sym_static] = ACTIONS(5816), + [anon_sym_register] = ACTIONS(5816), + [anon_sym_inline] = ACTIONS(5816), + [anon_sym___inline] = ACTIONS(5816), + [anon_sym___inline__] = ACTIONS(5816), + [anon_sym___forceinline] = ACTIONS(5816), + [anon_sym_thread_local] = ACTIONS(5816), + [anon_sym___thread] = ACTIONS(5816), + [anon_sym_const] = ACTIONS(5816), + [anon_sym_constexpr] = ACTIONS(5816), + [anon_sym_volatile] = ACTIONS(5816), + [anon_sym_restrict] = ACTIONS(5816), + [anon_sym___restrict__] = ACTIONS(5816), + [anon_sym__Atomic] = ACTIONS(5816), + [anon_sym__Noreturn] = ACTIONS(5816), + [anon_sym_noreturn] = ACTIONS(5816), + [anon_sym_mutable] = ACTIONS(5816), + [anon_sym_constinit] = ACTIONS(5816), + [anon_sym_consteval] = ACTIONS(5816), + [sym_primitive_type] = ACTIONS(5816), + [anon_sym_enum] = ACTIONS(5816), + [anon_sym_class] = ACTIONS(5816), + [anon_sym_struct] = ACTIONS(5816), + [anon_sym_union] = ACTIONS(5816), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5816), + [anon_sym_decltype] = ACTIONS(5816), + [anon_sym_virtual] = ACTIONS(5816), + [anon_sym_alignas] = ACTIONS(5816), + [anon_sym_explicit] = ACTIONS(5816), + [anon_sym_typename] = ACTIONS(5816), + [anon_sym_template] = ACTIONS(5816), + [anon_sym_operator] = ACTIONS(5816), + [anon_sym_friend] = ACTIONS(5816), + [anon_sym_public] = ACTIONS(5816), + [anon_sym_private] = ACTIONS(5816), + [anon_sym_protected] = ACTIONS(5816), + [anon_sym_using] = ACTIONS(5816), + [anon_sym_static_assert] = ACTIONS(5816), + [sym_semgrep_metavar] = ACTIONS(5818), + }, + [2239] = { + [sym_identifier] = ACTIONS(3442), + [aux_sym_preproc_def_token1] = ACTIONS(3442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3444), + [aux_sym_preproc_if_token1] = ACTIONS(3442), + [aux_sym_preproc_if_token2] = ACTIONS(3442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3442), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3442), + [sym_preproc_directive] = ACTIONS(3442), + [anon_sym_LPAREN2] = ACTIONS(3444), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3444), + [anon_sym_AMP_AMP] = ACTIONS(3444), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym___extension__] = ACTIONS(3442), + [anon_sym_typedef] = ACTIONS(3442), + [anon_sym_extern] = ACTIONS(3442), + [anon_sym___attribute__] = ACTIONS(3442), + [anon_sym_COLON_COLON] = ACTIONS(3444), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3444), + [anon_sym___declspec] = ACTIONS(3442), + [anon_sym___based] = ACTIONS(3442), + [anon_sym_signed] = ACTIONS(3442), + [anon_sym_unsigned] = ACTIONS(3442), + [anon_sym_long] = ACTIONS(3442), + [anon_sym_short] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_static] = ACTIONS(3442), + [anon_sym_register] = ACTIONS(3442), + [anon_sym_inline] = ACTIONS(3442), + [anon_sym___inline] = ACTIONS(3442), + [anon_sym___inline__] = ACTIONS(3442), + [anon_sym___forceinline] = ACTIONS(3442), + [anon_sym_thread_local] = ACTIONS(3442), + [anon_sym___thread] = ACTIONS(3442), + [anon_sym_const] = ACTIONS(3442), + [anon_sym_constexpr] = ACTIONS(3442), + [anon_sym_volatile] = ACTIONS(3442), + [anon_sym_restrict] = ACTIONS(3442), + [anon_sym___restrict__] = ACTIONS(3442), + [anon_sym__Atomic] = ACTIONS(3442), + [anon_sym__Noreturn] = ACTIONS(3442), + [anon_sym_noreturn] = ACTIONS(3442), + [anon_sym_mutable] = ACTIONS(3442), + [anon_sym_constinit] = ACTIONS(3442), + [anon_sym_consteval] = ACTIONS(3442), + [sym_primitive_type] = ACTIONS(3442), + [anon_sym_enum] = ACTIONS(3442), + [anon_sym_class] = ACTIONS(3442), + [anon_sym_struct] = ACTIONS(3442), + [anon_sym_union] = ACTIONS(3442), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3442), + [anon_sym_decltype] = ACTIONS(3442), + [anon_sym_virtual] = ACTIONS(3442), + [anon_sym_alignas] = ACTIONS(3442), + [anon_sym_explicit] = ACTIONS(3442), + [anon_sym_typename] = ACTIONS(3442), + [anon_sym_template] = ACTIONS(3442), + [anon_sym_operator] = ACTIONS(3442), + [anon_sym_friend] = ACTIONS(3442), + [anon_sym_public] = ACTIONS(3442), + [anon_sym_private] = ACTIONS(3442), + [anon_sym_protected] = ACTIONS(3442), + [anon_sym_using] = ACTIONS(3442), + [anon_sym_static_assert] = ACTIONS(3442), + [sym_semgrep_metavar] = ACTIONS(3444), + }, + [2240] = { + [sym_identifier] = ACTIONS(3451), + [aux_sym_preproc_def_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3453), + [aux_sym_preproc_if_token1] = ACTIONS(3451), + [aux_sym_preproc_if_token2] = ACTIONS(3451), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3451), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3451), + [sym_preproc_directive] = ACTIONS(3451), + [anon_sym_LPAREN2] = ACTIONS(3453), + [anon_sym_TILDE] = ACTIONS(3453), + [anon_sym_STAR] = ACTIONS(3453), + [anon_sym_AMP_AMP] = ACTIONS(3453), + [anon_sym_AMP] = ACTIONS(3451), + [anon_sym___extension__] = ACTIONS(3451), + [anon_sym_typedef] = ACTIONS(3451), + [anon_sym_extern] = ACTIONS(3451), + [anon_sym___attribute__] = ACTIONS(3451), + [anon_sym_COLON_COLON] = ACTIONS(3453), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3453), + [anon_sym___declspec] = ACTIONS(3451), + [anon_sym___based] = ACTIONS(3451), + [anon_sym_signed] = ACTIONS(3451), + [anon_sym_unsigned] = ACTIONS(3451), + [anon_sym_long] = ACTIONS(3451), + [anon_sym_short] = ACTIONS(3451), + [anon_sym_LBRACK] = ACTIONS(3451), + [anon_sym_static] = ACTIONS(3451), + [anon_sym_register] = ACTIONS(3451), + [anon_sym_inline] = ACTIONS(3451), + [anon_sym___inline] = ACTIONS(3451), + [anon_sym___inline__] = ACTIONS(3451), + [anon_sym___forceinline] = ACTIONS(3451), + [anon_sym_thread_local] = ACTIONS(3451), + [anon_sym___thread] = ACTIONS(3451), + [anon_sym_const] = ACTIONS(3451), + [anon_sym_constexpr] = ACTIONS(3451), + [anon_sym_volatile] = ACTIONS(3451), + [anon_sym_restrict] = ACTIONS(3451), + [anon_sym___restrict__] = ACTIONS(3451), + [anon_sym__Atomic] = ACTIONS(3451), + [anon_sym__Noreturn] = ACTIONS(3451), + [anon_sym_noreturn] = ACTIONS(3451), + [anon_sym_mutable] = ACTIONS(3451), + [anon_sym_constinit] = ACTIONS(3451), + [anon_sym_consteval] = ACTIONS(3451), + [sym_primitive_type] = ACTIONS(3451), + [anon_sym_enum] = ACTIONS(3451), + [anon_sym_class] = ACTIONS(3451), + [anon_sym_struct] = ACTIONS(3451), + [anon_sym_union] = ACTIONS(3451), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3451), + [anon_sym_decltype] = ACTIONS(3451), + [anon_sym_virtual] = ACTIONS(3451), + [anon_sym_alignas] = ACTIONS(3451), + [anon_sym_explicit] = ACTIONS(3451), + [anon_sym_typename] = ACTIONS(3451), + [anon_sym_template] = ACTIONS(3451), + [anon_sym_operator] = ACTIONS(3451), + [anon_sym_friend] = ACTIONS(3451), + [anon_sym_public] = ACTIONS(3451), + [anon_sym_private] = ACTIONS(3451), + [anon_sym_protected] = ACTIONS(3451), + [anon_sym_using] = ACTIONS(3451), + [anon_sym_static_assert] = ACTIONS(3451), + [sym_semgrep_metavar] = ACTIONS(3453), + }, + [2241] = { + [sym_identifier] = ACTIONS(3457), + [aux_sym_preproc_def_token1] = ACTIONS(3457), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3459), + [aux_sym_preproc_if_token1] = ACTIONS(3457), + [aux_sym_preproc_if_token2] = ACTIONS(3457), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3457), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3457), + [sym_preproc_directive] = ACTIONS(3457), + [anon_sym_LPAREN2] = ACTIONS(3459), + [anon_sym_TILDE] = ACTIONS(3459), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_AMP] = ACTIONS(3457), + [anon_sym___extension__] = ACTIONS(3457), + [anon_sym_typedef] = ACTIONS(3457), + [anon_sym_extern] = ACTIONS(3457), + [anon_sym___attribute__] = ACTIONS(3457), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3459), + [anon_sym___declspec] = ACTIONS(3457), + [anon_sym___based] = ACTIONS(3457), + [anon_sym_signed] = ACTIONS(3457), + [anon_sym_unsigned] = ACTIONS(3457), + [anon_sym_long] = ACTIONS(3457), + [anon_sym_short] = ACTIONS(3457), + [anon_sym_LBRACK] = ACTIONS(3457), + [anon_sym_static] = ACTIONS(3457), + [anon_sym_register] = ACTIONS(3457), + [anon_sym_inline] = ACTIONS(3457), + [anon_sym___inline] = ACTIONS(3457), + [anon_sym___inline__] = ACTIONS(3457), + [anon_sym___forceinline] = ACTIONS(3457), + [anon_sym_thread_local] = ACTIONS(3457), + [anon_sym___thread] = ACTIONS(3457), + [anon_sym_const] = ACTIONS(3457), + [anon_sym_constexpr] = ACTIONS(3457), + [anon_sym_volatile] = ACTIONS(3457), + [anon_sym_restrict] = ACTIONS(3457), + [anon_sym___restrict__] = ACTIONS(3457), + [anon_sym__Atomic] = ACTIONS(3457), + [anon_sym__Noreturn] = ACTIONS(3457), + [anon_sym_noreturn] = ACTIONS(3457), + [anon_sym_mutable] = ACTIONS(3457), + [anon_sym_constinit] = ACTIONS(3457), + [anon_sym_consteval] = ACTIONS(3457), + [sym_primitive_type] = ACTIONS(3457), + [anon_sym_enum] = ACTIONS(3457), + [anon_sym_class] = ACTIONS(3457), + [anon_sym_struct] = ACTIONS(3457), + [anon_sym_union] = ACTIONS(3457), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3457), + [anon_sym_decltype] = ACTIONS(3457), + [anon_sym_virtual] = ACTIONS(3457), + [anon_sym_alignas] = ACTIONS(3457), + [anon_sym_explicit] = ACTIONS(3457), + [anon_sym_typename] = ACTIONS(3457), + [anon_sym_template] = ACTIONS(3457), + [anon_sym_operator] = ACTIONS(3457), + [anon_sym_friend] = ACTIONS(3457), + [anon_sym_public] = ACTIONS(3457), + [anon_sym_private] = ACTIONS(3457), + [anon_sym_protected] = ACTIONS(3457), + [anon_sym_using] = ACTIONS(3457), + [anon_sym_static_assert] = ACTIONS(3457), + [sym_semgrep_metavar] = ACTIONS(3459), + }, + [2242] = { + [sym_identifier] = ACTIONS(3461), + [aux_sym_preproc_def_token1] = ACTIONS(3461), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3463), + [aux_sym_preproc_if_token1] = ACTIONS(3461), + [aux_sym_preproc_if_token2] = ACTIONS(3461), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3461), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3461), + [sym_preproc_directive] = ACTIONS(3461), + [anon_sym_LPAREN2] = ACTIONS(3463), + [anon_sym_TILDE] = ACTIONS(3463), + [anon_sym_STAR] = ACTIONS(3463), + [anon_sym_AMP_AMP] = ACTIONS(3463), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym___extension__] = ACTIONS(3461), + [anon_sym_typedef] = ACTIONS(3461), + [anon_sym_extern] = ACTIONS(3461), + [anon_sym___attribute__] = ACTIONS(3461), + [anon_sym_COLON_COLON] = ACTIONS(3463), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3463), + [anon_sym___declspec] = ACTIONS(3461), + [anon_sym___based] = ACTIONS(3461), + [anon_sym_signed] = ACTIONS(3461), + [anon_sym_unsigned] = ACTIONS(3461), + [anon_sym_long] = ACTIONS(3461), + [anon_sym_short] = ACTIONS(3461), + [anon_sym_LBRACK] = ACTIONS(3461), + [anon_sym_static] = ACTIONS(3461), + [anon_sym_register] = ACTIONS(3461), + [anon_sym_inline] = ACTIONS(3461), + [anon_sym___inline] = ACTIONS(3461), + [anon_sym___inline__] = ACTIONS(3461), + [anon_sym___forceinline] = ACTIONS(3461), + [anon_sym_thread_local] = ACTIONS(3461), + [anon_sym___thread] = ACTIONS(3461), + [anon_sym_const] = ACTIONS(3461), + [anon_sym_constexpr] = ACTIONS(3461), + [anon_sym_volatile] = ACTIONS(3461), + [anon_sym_restrict] = ACTIONS(3461), + [anon_sym___restrict__] = ACTIONS(3461), + [anon_sym__Atomic] = ACTIONS(3461), + [anon_sym__Noreturn] = ACTIONS(3461), + [anon_sym_noreturn] = ACTIONS(3461), + [anon_sym_mutable] = ACTIONS(3461), + [anon_sym_constinit] = ACTIONS(3461), + [anon_sym_consteval] = ACTIONS(3461), + [sym_primitive_type] = ACTIONS(3461), + [anon_sym_enum] = ACTIONS(3461), + [anon_sym_class] = ACTIONS(3461), + [anon_sym_struct] = ACTIONS(3461), + [anon_sym_union] = ACTIONS(3461), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3461), + [anon_sym_decltype] = ACTIONS(3461), + [anon_sym_virtual] = ACTIONS(3461), + [anon_sym_alignas] = ACTIONS(3461), + [anon_sym_explicit] = ACTIONS(3461), + [anon_sym_typename] = ACTIONS(3461), + [anon_sym_template] = ACTIONS(3461), + [anon_sym_operator] = ACTIONS(3461), + [anon_sym_friend] = ACTIONS(3461), + [anon_sym_public] = ACTIONS(3461), + [anon_sym_private] = ACTIONS(3461), + [anon_sym_protected] = ACTIONS(3461), + [anon_sym_using] = ACTIONS(3461), + [anon_sym_static_assert] = ACTIONS(3461), + [sym_semgrep_metavar] = ACTIONS(3463), + }, + [2243] = { + [sym_identifier] = ACTIONS(3465), + [aux_sym_preproc_def_token1] = ACTIONS(3465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3467), + [aux_sym_preproc_if_token1] = ACTIONS(3465), + [aux_sym_preproc_if_token2] = ACTIONS(3465), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3465), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3465), + [sym_preproc_directive] = ACTIONS(3465), + [anon_sym_LPAREN2] = ACTIONS(3467), + [anon_sym_TILDE] = ACTIONS(3467), + [anon_sym_STAR] = ACTIONS(3467), + [anon_sym_AMP_AMP] = ACTIONS(3467), + [anon_sym_AMP] = ACTIONS(3465), + [anon_sym___extension__] = ACTIONS(3465), + [anon_sym_typedef] = ACTIONS(3465), + [anon_sym_extern] = ACTIONS(3465), + [anon_sym___attribute__] = ACTIONS(3465), + [anon_sym_COLON_COLON] = ACTIONS(3467), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3467), + [anon_sym___declspec] = ACTIONS(3465), + [anon_sym___based] = ACTIONS(3465), + [anon_sym_signed] = ACTIONS(3465), + [anon_sym_unsigned] = ACTIONS(3465), + [anon_sym_long] = ACTIONS(3465), + [anon_sym_short] = ACTIONS(3465), + [anon_sym_LBRACK] = ACTIONS(3465), + [anon_sym_static] = ACTIONS(3465), + [anon_sym_register] = ACTIONS(3465), + [anon_sym_inline] = ACTIONS(3465), + [anon_sym___inline] = ACTIONS(3465), + [anon_sym___inline__] = ACTIONS(3465), + [anon_sym___forceinline] = ACTIONS(3465), + [anon_sym_thread_local] = ACTIONS(3465), + [anon_sym___thread] = ACTIONS(3465), + [anon_sym_const] = ACTIONS(3465), + [anon_sym_constexpr] = ACTIONS(3465), + [anon_sym_volatile] = ACTIONS(3465), + [anon_sym_restrict] = ACTIONS(3465), + [anon_sym___restrict__] = ACTIONS(3465), + [anon_sym__Atomic] = ACTIONS(3465), + [anon_sym__Noreturn] = ACTIONS(3465), + [anon_sym_noreturn] = ACTIONS(3465), + [anon_sym_mutable] = ACTIONS(3465), + [anon_sym_constinit] = ACTIONS(3465), + [anon_sym_consteval] = ACTIONS(3465), + [sym_primitive_type] = ACTIONS(3465), + [anon_sym_enum] = ACTIONS(3465), + [anon_sym_class] = ACTIONS(3465), + [anon_sym_struct] = ACTIONS(3465), + [anon_sym_union] = ACTIONS(3465), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3465), + [anon_sym_decltype] = ACTIONS(3465), + [anon_sym_virtual] = ACTIONS(3465), + [anon_sym_alignas] = ACTIONS(3465), + [anon_sym_explicit] = ACTIONS(3465), + [anon_sym_typename] = ACTIONS(3465), + [anon_sym_template] = ACTIONS(3465), + [anon_sym_operator] = ACTIONS(3465), + [anon_sym_friend] = ACTIONS(3465), + [anon_sym_public] = ACTIONS(3465), + [anon_sym_private] = ACTIONS(3465), + [anon_sym_protected] = ACTIONS(3465), + [anon_sym_using] = ACTIONS(3465), + [anon_sym_static_assert] = ACTIONS(3465), + [sym_semgrep_metavar] = ACTIONS(3467), + }, + [2244] = { + [sym_identifier] = ACTIONS(3631), + [aux_sym_preproc_def_token1] = ACTIONS(3631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3633), + [aux_sym_preproc_if_token1] = ACTIONS(3631), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3631), + [sym_preproc_directive] = ACTIONS(3631), + [anon_sym_LPAREN2] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_STAR] = ACTIONS(3633), + [anon_sym_AMP_AMP] = ACTIONS(3633), + [anon_sym_AMP] = ACTIONS(3631), + [anon_sym___extension__] = ACTIONS(3631), + [anon_sym_typedef] = ACTIONS(3631), + [anon_sym_extern] = ACTIONS(3631), + [anon_sym___attribute__] = ACTIONS(3631), + [anon_sym_COLON_COLON] = ACTIONS(3633), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3633), + [anon_sym___declspec] = ACTIONS(3631), + [anon_sym___based] = ACTIONS(3631), + [anon_sym_RBRACE] = ACTIONS(3633), + [anon_sym_signed] = ACTIONS(3631), + [anon_sym_unsigned] = ACTIONS(3631), + [anon_sym_long] = ACTIONS(3631), + [anon_sym_short] = ACTIONS(3631), + [anon_sym_LBRACK] = ACTIONS(3631), + [anon_sym_static] = ACTIONS(3631), + [anon_sym_register] = ACTIONS(3631), + [anon_sym_inline] = ACTIONS(3631), + [anon_sym___inline] = ACTIONS(3631), + [anon_sym___inline__] = ACTIONS(3631), + [anon_sym___forceinline] = ACTIONS(3631), + [anon_sym_thread_local] = ACTIONS(3631), + [anon_sym___thread] = ACTIONS(3631), + [anon_sym_const] = ACTIONS(3631), + [anon_sym_constexpr] = ACTIONS(3631), + [anon_sym_volatile] = ACTIONS(3631), + [anon_sym_restrict] = ACTIONS(3631), + [anon_sym___restrict__] = ACTIONS(3631), + [anon_sym__Atomic] = ACTIONS(3631), + [anon_sym__Noreturn] = ACTIONS(3631), + [anon_sym_noreturn] = ACTIONS(3631), + [anon_sym_mutable] = ACTIONS(3631), + [anon_sym_constinit] = ACTIONS(3631), + [anon_sym_consteval] = ACTIONS(3631), + [sym_primitive_type] = ACTIONS(3631), + [anon_sym_enum] = ACTIONS(3631), + [anon_sym_class] = ACTIONS(3631), + [anon_sym_struct] = ACTIONS(3631), + [anon_sym_union] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3631), + [anon_sym_decltype] = ACTIONS(3631), + [anon_sym_virtual] = ACTIONS(3631), + [anon_sym_alignas] = ACTIONS(3631), + [anon_sym_explicit] = ACTIONS(3631), + [anon_sym_typename] = ACTIONS(3631), + [anon_sym_template] = ACTIONS(3631), + [anon_sym_operator] = ACTIONS(3631), + [anon_sym_friend] = ACTIONS(3631), + [anon_sym_public] = ACTIONS(3631), + [anon_sym_private] = ACTIONS(3631), + [anon_sym_protected] = ACTIONS(3631), + [anon_sym_using] = ACTIONS(3631), + [anon_sym_static_assert] = ACTIONS(3631), + [sym_semgrep_metavar] = ACTIONS(3633), + }, + [2245] = { + [sym_identifier] = ACTIONS(5820), + [aux_sym_preproc_def_token1] = ACTIONS(5820), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5822), + [aux_sym_preproc_if_token1] = ACTIONS(5820), + [aux_sym_preproc_if_token2] = ACTIONS(5820), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5820), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5820), + [sym_preproc_directive] = ACTIONS(5820), + [anon_sym_LPAREN2] = ACTIONS(5822), + [anon_sym_TILDE] = ACTIONS(5822), + [anon_sym_STAR] = ACTIONS(5822), + [anon_sym_AMP_AMP] = ACTIONS(5822), + [anon_sym_AMP] = ACTIONS(5820), + [anon_sym___extension__] = ACTIONS(5820), + [anon_sym_typedef] = ACTIONS(5820), + [anon_sym_extern] = ACTIONS(5820), + [anon_sym___attribute__] = ACTIONS(5820), + [anon_sym_COLON_COLON] = ACTIONS(5822), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5822), + [anon_sym___declspec] = ACTIONS(5820), + [anon_sym___based] = ACTIONS(5820), + [anon_sym_signed] = ACTIONS(5820), + [anon_sym_unsigned] = ACTIONS(5820), + [anon_sym_long] = ACTIONS(5820), + [anon_sym_short] = ACTIONS(5820), + [anon_sym_LBRACK] = ACTIONS(5820), + [anon_sym_static] = ACTIONS(5820), + [anon_sym_register] = ACTIONS(5820), + [anon_sym_inline] = ACTIONS(5820), + [anon_sym___inline] = ACTIONS(5820), + [anon_sym___inline__] = ACTIONS(5820), + [anon_sym___forceinline] = ACTIONS(5820), + [anon_sym_thread_local] = ACTIONS(5820), + [anon_sym___thread] = ACTIONS(5820), + [anon_sym_const] = ACTIONS(5820), + [anon_sym_constexpr] = ACTIONS(5820), + [anon_sym_volatile] = ACTIONS(5820), + [anon_sym_restrict] = ACTIONS(5820), + [anon_sym___restrict__] = ACTIONS(5820), + [anon_sym__Atomic] = ACTIONS(5820), + [anon_sym__Noreturn] = ACTIONS(5820), + [anon_sym_noreturn] = ACTIONS(5820), + [anon_sym_mutable] = ACTIONS(5820), + [anon_sym_constinit] = ACTIONS(5820), + [anon_sym_consteval] = ACTIONS(5820), + [sym_primitive_type] = ACTIONS(5820), + [anon_sym_enum] = ACTIONS(5820), + [anon_sym_class] = ACTIONS(5820), + [anon_sym_struct] = ACTIONS(5820), + [anon_sym_union] = ACTIONS(5820), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5820), + [anon_sym_decltype] = ACTIONS(5820), + [anon_sym_virtual] = ACTIONS(5820), + [anon_sym_alignas] = ACTIONS(5820), + [anon_sym_explicit] = ACTIONS(5820), + [anon_sym_typename] = ACTIONS(5820), + [anon_sym_template] = ACTIONS(5820), + [anon_sym_operator] = ACTIONS(5820), + [anon_sym_friend] = ACTIONS(5820), + [anon_sym_public] = ACTIONS(5820), + [anon_sym_private] = ACTIONS(5820), + [anon_sym_protected] = ACTIONS(5820), + [anon_sym_using] = ACTIONS(5820), + [anon_sym_static_assert] = ACTIONS(5820), + [sym_semgrep_metavar] = ACTIONS(5822), + }, + [2246] = { + [sym_identifier] = ACTIONS(5824), + [aux_sym_preproc_def_token1] = ACTIONS(5824), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5826), + [aux_sym_preproc_if_token1] = ACTIONS(5824), + [aux_sym_preproc_if_token2] = ACTIONS(5824), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5824), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5824), + [sym_preproc_directive] = ACTIONS(5824), + [anon_sym_LPAREN2] = ACTIONS(5826), + [anon_sym_TILDE] = ACTIONS(5826), + [anon_sym_STAR] = ACTIONS(5826), + [anon_sym_AMP_AMP] = ACTIONS(5826), + [anon_sym_AMP] = ACTIONS(5824), + [anon_sym___extension__] = ACTIONS(5824), + [anon_sym_typedef] = ACTIONS(5824), + [anon_sym_extern] = ACTIONS(5824), + [anon_sym___attribute__] = ACTIONS(5824), + [anon_sym_COLON_COLON] = ACTIONS(5826), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5826), + [anon_sym___declspec] = ACTIONS(5824), + [anon_sym___based] = ACTIONS(5824), + [anon_sym_signed] = ACTIONS(5824), + [anon_sym_unsigned] = ACTIONS(5824), + [anon_sym_long] = ACTIONS(5824), + [anon_sym_short] = ACTIONS(5824), + [anon_sym_LBRACK] = ACTIONS(5824), + [anon_sym_static] = ACTIONS(5824), + [anon_sym_register] = ACTIONS(5824), + [anon_sym_inline] = ACTIONS(5824), + [anon_sym___inline] = ACTIONS(5824), + [anon_sym___inline__] = ACTIONS(5824), + [anon_sym___forceinline] = ACTIONS(5824), + [anon_sym_thread_local] = ACTIONS(5824), + [anon_sym___thread] = ACTIONS(5824), + [anon_sym_const] = ACTIONS(5824), + [anon_sym_constexpr] = ACTIONS(5824), + [anon_sym_volatile] = ACTIONS(5824), + [anon_sym_restrict] = ACTIONS(5824), + [anon_sym___restrict__] = ACTIONS(5824), + [anon_sym__Atomic] = ACTIONS(5824), + [anon_sym__Noreturn] = ACTIONS(5824), + [anon_sym_noreturn] = ACTIONS(5824), + [anon_sym_mutable] = ACTIONS(5824), + [anon_sym_constinit] = ACTIONS(5824), + [anon_sym_consteval] = ACTIONS(5824), + [sym_primitive_type] = ACTIONS(5824), + [anon_sym_enum] = ACTIONS(5824), + [anon_sym_class] = ACTIONS(5824), + [anon_sym_struct] = ACTIONS(5824), + [anon_sym_union] = ACTIONS(5824), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5824), + [anon_sym_decltype] = ACTIONS(5824), + [anon_sym_virtual] = ACTIONS(5824), + [anon_sym_alignas] = ACTIONS(5824), + [anon_sym_explicit] = ACTIONS(5824), + [anon_sym_typename] = ACTIONS(5824), + [anon_sym_template] = ACTIONS(5824), + [anon_sym_operator] = ACTIONS(5824), + [anon_sym_friend] = ACTIONS(5824), + [anon_sym_public] = ACTIONS(5824), + [anon_sym_private] = ACTIONS(5824), + [anon_sym_protected] = ACTIONS(5824), + [anon_sym_using] = ACTIONS(5824), + [anon_sym_static_assert] = ACTIONS(5824), + [sym_semgrep_metavar] = ACTIONS(5826), + }, + [2247] = { + [sym_identifier] = ACTIONS(5892), + [aux_sym_preproc_def_token1] = ACTIONS(5892), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5894), + [aux_sym_preproc_if_token1] = ACTIONS(5892), + [aux_sym_preproc_if_token2] = ACTIONS(5892), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5892), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5892), + [sym_preproc_directive] = ACTIONS(5892), + [anon_sym_LPAREN2] = ACTIONS(5894), + [anon_sym_TILDE] = ACTIONS(5894), + [anon_sym_STAR] = ACTIONS(5894), + [anon_sym_AMP_AMP] = ACTIONS(5894), + [anon_sym_AMP] = ACTIONS(5892), + [anon_sym___extension__] = ACTIONS(5892), + [anon_sym_typedef] = ACTIONS(5892), + [anon_sym_extern] = ACTIONS(5892), + [anon_sym___attribute__] = ACTIONS(5892), + [anon_sym_COLON_COLON] = ACTIONS(5894), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5894), + [anon_sym___declspec] = ACTIONS(5892), + [anon_sym___based] = ACTIONS(5892), + [anon_sym_signed] = ACTIONS(5892), + [anon_sym_unsigned] = ACTIONS(5892), + [anon_sym_long] = ACTIONS(5892), + [anon_sym_short] = ACTIONS(5892), + [anon_sym_LBRACK] = ACTIONS(5892), + [anon_sym_static] = ACTIONS(5892), + [anon_sym_register] = ACTIONS(5892), + [anon_sym_inline] = ACTIONS(5892), + [anon_sym___inline] = ACTIONS(5892), + [anon_sym___inline__] = ACTIONS(5892), + [anon_sym___forceinline] = ACTIONS(5892), + [anon_sym_thread_local] = ACTIONS(5892), + [anon_sym___thread] = ACTIONS(5892), + [anon_sym_const] = ACTIONS(5892), + [anon_sym_constexpr] = ACTIONS(5892), + [anon_sym_volatile] = ACTIONS(5892), + [anon_sym_restrict] = ACTIONS(5892), + [anon_sym___restrict__] = ACTIONS(5892), + [anon_sym__Atomic] = ACTIONS(5892), + [anon_sym__Noreturn] = ACTIONS(5892), + [anon_sym_noreturn] = ACTIONS(5892), + [anon_sym_mutable] = ACTIONS(5892), + [anon_sym_constinit] = ACTIONS(5892), + [anon_sym_consteval] = ACTIONS(5892), + [sym_primitive_type] = ACTIONS(5892), + [anon_sym_enum] = ACTIONS(5892), + [anon_sym_class] = ACTIONS(5892), + [anon_sym_struct] = ACTIONS(5892), + [anon_sym_union] = ACTIONS(5892), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5892), + [anon_sym_decltype] = ACTIONS(5892), + [anon_sym_virtual] = ACTIONS(5892), + [anon_sym_alignas] = ACTIONS(5892), + [anon_sym_explicit] = ACTIONS(5892), + [anon_sym_typename] = ACTIONS(5892), + [anon_sym_template] = ACTIONS(5892), + [anon_sym_operator] = ACTIONS(5892), + [anon_sym_friend] = ACTIONS(5892), + [anon_sym_public] = ACTIONS(5892), + [anon_sym_private] = ACTIONS(5892), + [anon_sym_protected] = ACTIONS(5892), + [anon_sym_using] = ACTIONS(5892), + [anon_sym_static_assert] = ACTIONS(5892), + [sym_semgrep_metavar] = ACTIONS(5894), + }, + [2248] = { + [sym_identifier] = ACTIONS(5836), + [aux_sym_preproc_def_token1] = ACTIONS(5836), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5838), + [aux_sym_preproc_if_token1] = ACTIONS(5836), + [aux_sym_preproc_if_token2] = ACTIONS(5836), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5836), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5836), + [sym_preproc_directive] = ACTIONS(5836), + [anon_sym_LPAREN2] = ACTIONS(5838), + [anon_sym_TILDE] = ACTIONS(5838), + [anon_sym_STAR] = ACTIONS(5838), + [anon_sym_AMP_AMP] = ACTIONS(5838), + [anon_sym_AMP] = ACTIONS(5836), + [anon_sym___extension__] = ACTIONS(5836), + [anon_sym_typedef] = ACTIONS(5836), + [anon_sym_extern] = ACTIONS(5836), + [anon_sym___attribute__] = ACTIONS(5836), + [anon_sym_COLON_COLON] = ACTIONS(5838), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5838), + [anon_sym___declspec] = ACTIONS(5836), + [anon_sym___based] = ACTIONS(5836), + [anon_sym_signed] = ACTIONS(5836), + [anon_sym_unsigned] = ACTIONS(5836), + [anon_sym_long] = ACTIONS(5836), + [anon_sym_short] = ACTIONS(5836), + [anon_sym_LBRACK] = ACTIONS(5836), + [anon_sym_static] = ACTIONS(5836), + [anon_sym_register] = ACTIONS(5836), + [anon_sym_inline] = ACTIONS(5836), + [anon_sym___inline] = ACTIONS(5836), + [anon_sym___inline__] = ACTIONS(5836), + [anon_sym___forceinline] = ACTIONS(5836), + [anon_sym_thread_local] = ACTIONS(5836), + [anon_sym___thread] = ACTIONS(5836), + [anon_sym_const] = ACTIONS(5836), + [anon_sym_constexpr] = ACTIONS(5836), + [anon_sym_volatile] = ACTIONS(5836), + [anon_sym_restrict] = ACTIONS(5836), + [anon_sym___restrict__] = ACTIONS(5836), + [anon_sym__Atomic] = ACTIONS(5836), + [anon_sym__Noreturn] = ACTIONS(5836), + [anon_sym_noreturn] = ACTIONS(5836), + [anon_sym_mutable] = ACTIONS(5836), + [anon_sym_constinit] = ACTIONS(5836), + [anon_sym_consteval] = ACTIONS(5836), + [sym_primitive_type] = ACTIONS(5836), + [anon_sym_enum] = ACTIONS(5836), + [anon_sym_class] = ACTIONS(5836), + [anon_sym_struct] = ACTIONS(5836), + [anon_sym_union] = ACTIONS(5836), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5836), + [anon_sym_decltype] = ACTIONS(5836), + [anon_sym_virtual] = ACTIONS(5836), + [anon_sym_alignas] = ACTIONS(5836), + [anon_sym_explicit] = ACTIONS(5836), + [anon_sym_typename] = ACTIONS(5836), + [anon_sym_template] = ACTIONS(5836), + [anon_sym_operator] = ACTIONS(5836), + [anon_sym_friend] = ACTIONS(5836), + [anon_sym_public] = ACTIONS(5836), + [anon_sym_private] = ACTIONS(5836), + [anon_sym_protected] = ACTIONS(5836), + [anon_sym_using] = ACTIONS(5836), + [anon_sym_static_assert] = ACTIONS(5836), + [sym_semgrep_metavar] = ACTIONS(5838), + }, + [2249] = { + [sym_identifier] = ACTIONS(5840), + [aux_sym_preproc_def_token1] = ACTIONS(5840), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5842), + [aux_sym_preproc_if_token1] = ACTIONS(5840), + [aux_sym_preproc_if_token2] = ACTIONS(5840), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5840), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5840), + [sym_preproc_directive] = ACTIONS(5840), + [anon_sym_LPAREN2] = ACTIONS(5842), + [anon_sym_TILDE] = ACTIONS(5842), + [anon_sym_STAR] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(5842), + [anon_sym_AMP] = ACTIONS(5840), + [anon_sym___extension__] = ACTIONS(5840), + [anon_sym_typedef] = ACTIONS(5840), + [anon_sym_extern] = ACTIONS(5840), + [anon_sym___attribute__] = ACTIONS(5840), + [anon_sym_COLON_COLON] = ACTIONS(5842), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5842), + [anon_sym___declspec] = ACTIONS(5840), + [anon_sym___based] = ACTIONS(5840), + [anon_sym_signed] = ACTIONS(5840), + [anon_sym_unsigned] = ACTIONS(5840), + [anon_sym_long] = ACTIONS(5840), + [anon_sym_short] = ACTIONS(5840), + [anon_sym_LBRACK] = ACTIONS(5840), + [anon_sym_static] = ACTIONS(5840), + [anon_sym_register] = ACTIONS(5840), + [anon_sym_inline] = ACTIONS(5840), + [anon_sym___inline] = ACTIONS(5840), + [anon_sym___inline__] = ACTIONS(5840), + [anon_sym___forceinline] = ACTIONS(5840), + [anon_sym_thread_local] = ACTIONS(5840), + [anon_sym___thread] = ACTIONS(5840), + [anon_sym_const] = ACTIONS(5840), + [anon_sym_constexpr] = ACTIONS(5840), + [anon_sym_volatile] = ACTIONS(5840), + [anon_sym_restrict] = ACTIONS(5840), + [anon_sym___restrict__] = ACTIONS(5840), + [anon_sym__Atomic] = ACTIONS(5840), + [anon_sym__Noreturn] = ACTIONS(5840), + [anon_sym_noreturn] = ACTIONS(5840), + [anon_sym_mutable] = ACTIONS(5840), + [anon_sym_constinit] = ACTIONS(5840), + [anon_sym_consteval] = ACTIONS(5840), + [sym_primitive_type] = ACTIONS(5840), + [anon_sym_enum] = ACTIONS(5840), + [anon_sym_class] = ACTIONS(5840), + [anon_sym_struct] = ACTIONS(5840), + [anon_sym_union] = ACTIONS(5840), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5840), + [anon_sym_decltype] = ACTIONS(5840), + [anon_sym_virtual] = ACTIONS(5840), + [anon_sym_alignas] = ACTIONS(5840), + [anon_sym_explicit] = ACTIONS(5840), + [anon_sym_typename] = ACTIONS(5840), + [anon_sym_template] = ACTIONS(5840), + [anon_sym_operator] = ACTIONS(5840), + [anon_sym_friend] = ACTIONS(5840), + [anon_sym_public] = ACTIONS(5840), + [anon_sym_private] = ACTIONS(5840), + [anon_sym_protected] = ACTIONS(5840), + [anon_sym_using] = ACTIONS(5840), + [anon_sym_static_assert] = ACTIONS(5840), + [sym_semgrep_metavar] = ACTIONS(5842), + }, + [2250] = { + [sym_identifier] = ACTIONS(5844), + [aux_sym_preproc_def_token1] = ACTIONS(5844), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5846), + [aux_sym_preproc_if_token1] = ACTIONS(5844), + [aux_sym_preproc_if_token2] = ACTIONS(5844), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5844), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5844), + [sym_preproc_directive] = ACTIONS(5844), + [anon_sym_LPAREN2] = ACTIONS(5846), + [anon_sym_TILDE] = ACTIONS(5846), + [anon_sym_STAR] = ACTIONS(5846), + [anon_sym_AMP_AMP] = ACTIONS(5846), + [anon_sym_AMP] = ACTIONS(5844), + [anon_sym___extension__] = ACTIONS(5844), + [anon_sym_typedef] = ACTIONS(5844), + [anon_sym_extern] = ACTIONS(5844), + [anon_sym___attribute__] = ACTIONS(5844), + [anon_sym_COLON_COLON] = ACTIONS(5846), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5846), + [anon_sym___declspec] = ACTIONS(5844), + [anon_sym___based] = ACTIONS(5844), + [anon_sym_signed] = ACTIONS(5844), + [anon_sym_unsigned] = ACTIONS(5844), + [anon_sym_long] = ACTIONS(5844), + [anon_sym_short] = ACTIONS(5844), + [anon_sym_LBRACK] = ACTIONS(5844), + [anon_sym_static] = ACTIONS(5844), + [anon_sym_register] = ACTIONS(5844), + [anon_sym_inline] = ACTIONS(5844), + [anon_sym___inline] = ACTIONS(5844), + [anon_sym___inline__] = ACTIONS(5844), + [anon_sym___forceinline] = ACTIONS(5844), + [anon_sym_thread_local] = ACTIONS(5844), + [anon_sym___thread] = ACTIONS(5844), + [anon_sym_const] = ACTIONS(5844), + [anon_sym_constexpr] = ACTIONS(5844), + [anon_sym_volatile] = ACTIONS(5844), + [anon_sym_restrict] = ACTIONS(5844), + [anon_sym___restrict__] = ACTIONS(5844), + [anon_sym__Atomic] = ACTIONS(5844), + [anon_sym__Noreturn] = ACTIONS(5844), + [anon_sym_noreturn] = ACTIONS(5844), + [anon_sym_mutable] = ACTIONS(5844), + [anon_sym_constinit] = ACTIONS(5844), + [anon_sym_consteval] = ACTIONS(5844), + [sym_primitive_type] = ACTIONS(5844), + [anon_sym_enum] = ACTIONS(5844), + [anon_sym_class] = ACTIONS(5844), + [anon_sym_struct] = ACTIONS(5844), + [anon_sym_union] = ACTIONS(5844), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5844), + [anon_sym_decltype] = ACTIONS(5844), + [anon_sym_virtual] = ACTIONS(5844), + [anon_sym_alignas] = ACTIONS(5844), + [anon_sym_explicit] = ACTIONS(5844), + [anon_sym_typename] = ACTIONS(5844), + [anon_sym_template] = ACTIONS(5844), + [anon_sym_operator] = ACTIONS(5844), + [anon_sym_friend] = ACTIONS(5844), + [anon_sym_public] = ACTIONS(5844), + [anon_sym_private] = ACTIONS(5844), + [anon_sym_protected] = ACTIONS(5844), + [anon_sym_using] = ACTIONS(5844), + [anon_sym_static_assert] = ACTIONS(5844), + [sym_semgrep_metavar] = ACTIONS(5846), + }, + [2251] = { + [sym_identifier] = ACTIONS(5848), + [aux_sym_preproc_def_token1] = ACTIONS(5848), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5850), + [aux_sym_preproc_if_token1] = ACTIONS(5848), + [aux_sym_preproc_if_token2] = ACTIONS(5848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5848), + [sym_preproc_directive] = ACTIONS(5848), + [anon_sym_LPAREN2] = ACTIONS(5850), + [anon_sym_TILDE] = ACTIONS(5850), + [anon_sym_STAR] = ACTIONS(5850), + [anon_sym_AMP_AMP] = ACTIONS(5850), + [anon_sym_AMP] = ACTIONS(5848), + [anon_sym___extension__] = ACTIONS(5848), + [anon_sym_typedef] = ACTIONS(5848), + [anon_sym_extern] = ACTIONS(5848), + [anon_sym___attribute__] = ACTIONS(5848), + [anon_sym_COLON_COLON] = ACTIONS(5850), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5850), + [anon_sym___declspec] = ACTIONS(5848), + [anon_sym___based] = ACTIONS(5848), + [anon_sym_signed] = ACTIONS(5848), + [anon_sym_unsigned] = ACTIONS(5848), + [anon_sym_long] = ACTIONS(5848), + [anon_sym_short] = ACTIONS(5848), + [anon_sym_LBRACK] = ACTIONS(5848), + [anon_sym_static] = ACTIONS(5848), + [anon_sym_register] = ACTIONS(5848), + [anon_sym_inline] = ACTIONS(5848), + [anon_sym___inline] = ACTIONS(5848), + [anon_sym___inline__] = ACTIONS(5848), + [anon_sym___forceinline] = ACTIONS(5848), + [anon_sym_thread_local] = ACTIONS(5848), + [anon_sym___thread] = ACTIONS(5848), + [anon_sym_const] = ACTIONS(5848), + [anon_sym_constexpr] = ACTIONS(5848), + [anon_sym_volatile] = ACTIONS(5848), + [anon_sym_restrict] = ACTIONS(5848), + [anon_sym___restrict__] = ACTIONS(5848), + [anon_sym__Atomic] = ACTIONS(5848), + [anon_sym__Noreturn] = ACTIONS(5848), + [anon_sym_noreturn] = ACTIONS(5848), + [anon_sym_mutable] = ACTIONS(5848), + [anon_sym_constinit] = ACTIONS(5848), + [anon_sym_consteval] = ACTIONS(5848), + [sym_primitive_type] = ACTIONS(5848), + [anon_sym_enum] = ACTIONS(5848), + [anon_sym_class] = ACTIONS(5848), + [anon_sym_struct] = ACTIONS(5848), + [anon_sym_union] = ACTIONS(5848), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5848), + [anon_sym_decltype] = ACTIONS(5848), + [anon_sym_virtual] = ACTIONS(5848), + [anon_sym_alignas] = ACTIONS(5848), + [anon_sym_explicit] = ACTIONS(5848), + [anon_sym_typename] = ACTIONS(5848), + [anon_sym_template] = ACTIONS(5848), + [anon_sym_operator] = ACTIONS(5848), + [anon_sym_friend] = ACTIONS(5848), + [anon_sym_public] = ACTIONS(5848), + [anon_sym_private] = ACTIONS(5848), + [anon_sym_protected] = ACTIONS(5848), + [anon_sym_using] = ACTIONS(5848), + [anon_sym_static_assert] = ACTIONS(5848), + [sym_semgrep_metavar] = ACTIONS(5850), + }, + [2252] = { + [sym_identifier] = ACTIONS(5852), + [aux_sym_preproc_def_token1] = ACTIONS(5852), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5854), + [aux_sym_preproc_if_token1] = ACTIONS(5852), + [aux_sym_preproc_if_token2] = ACTIONS(5852), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5852), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5852), + [sym_preproc_directive] = ACTIONS(5852), + [anon_sym_LPAREN2] = ACTIONS(5854), + [anon_sym_TILDE] = ACTIONS(5854), + [anon_sym_STAR] = ACTIONS(5854), + [anon_sym_AMP_AMP] = ACTIONS(5854), + [anon_sym_AMP] = ACTIONS(5852), + [anon_sym___extension__] = ACTIONS(5852), + [anon_sym_typedef] = ACTIONS(5852), + [anon_sym_extern] = ACTIONS(5852), + [anon_sym___attribute__] = ACTIONS(5852), + [anon_sym_COLON_COLON] = ACTIONS(5854), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5854), + [anon_sym___declspec] = ACTIONS(5852), + [anon_sym___based] = ACTIONS(5852), + [anon_sym_signed] = ACTIONS(5852), + [anon_sym_unsigned] = ACTIONS(5852), + [anon_sym_long] = ACTIONS(5852), + [anon_sym_short] = ACTIONS(5852), + [anon_sym_LBRACK] = ACTIONS(5852), + [anon_sym_static] = ACTIONS(5852), + [anon_sym_register] = ACTIONS(5852), + [anon_sym_inline] = ACTIONS(5852), + [anon_sym___inline] = ACTIONS(5852), + [anon_sym___inline__] = ACTIONS(5852), + [anon_sym___forceinline] = ACTIONS(5852), + [anon_sym_thread_local] = ACTIONS(5852), + [anon_sym___thread] = ACTIONS(5852), + [anon_sym_const] = ACTIONS(5852), + [anon_sym_constexpr] = ACTIONS(5852), + [anon_sym_volatile] = ACTIONS(5852), + [anon_sym_restrict] = ACTIONS(5852), + [anon_sym___restrict__] = ACTIONS(5852), + [anon_sym__Atomic] = ACTIONS(5852), + [anon_sym__Noreturn] = ACTIONS(5852), + [anon_sym_noreturn] = ACTIONS(5852), + [anon_sym_mutable] = ACTIONS(5852), + [anon_sym_constinit] = ACTIONS(5852), + [anon_sym_consteval] = ACTIONS(5852), + [sym_primitive_type] = ACTIONS(5852), + [anon_sym_enum] = ACTIONS(5852), + [anon_sym_class] = ACTIONS(5852), + [anon_sym_struct] = ACTIONS(5852), + [anon_sym_union] = ACTIONS(5852), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5852), + [anon_sym_decltype] = ACTIONS(5852), + [anon_sym_virtual] = ACTIONS(5852), + [anon_sym_alignas] = ACTIONS(5852), + [anon_sym_explicit] = ACTIONS(5852), + [anon_sym_typename] = ACTIONS(5852), + [anon_sym_template] = ACTIONS(5852), + [anon_sym_operator] = ACTIONS(5852), + [anon_sym_friend] = ACTIONS(5852), + [anon_sym_public] = ACTIONS(5852), + [anon_sym_private] = ACTIONS(5852), + [anon_sym_protected] = ACTIONS(5852), + [anon_sym_using] = ACTIONS(5852), + [anon_sym_static_assert] = ACTIONS(5852), + [sym_semgrep_metavar] = ACTIONS(5854), + }, + [2253] = { + [sym_identifier] = ACTIONS(3649), + [aux_sym_preproc_def_token1] = ACTIONS(3649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3651), + [aux_sym_preproc_if_token1] = ACTIONS(3649), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3649), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3649), + [sym_preproc_directive] = ACTIONS(3649), + [anon_sym_LPAREN2] = ACTIONS(3651), + [anon_sym_TILDE] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3651), + [anon_sym_AMP_AMP] = ACTIONS(3651), + [anon_sym_AMP] = ACTIONS(3649), + [anon_sym___extension__] = ACTIONS(3649), + [anon_sym_typedef] = ACTIONS(3649), + [anon_sym_extern] = ACTIONS(3649), + [anon_sym___attribute__] = ACTIONS(3649), + [anon_sym_COLON_COLON] = ACTIONS(3651), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3651), + [anon_sym___declspec] = ACTIONS(3649), + [anon_sym___based] = ACTIONS(3649), + [anon_sym_RBRACE] = ACTIONS(3651), + [anon_sym_signed] = ACTIONS(3649), + [anon_sym_unsigned] = ACTIONS(3649), + [anon_sym_long] = ACTIONS(3649), + [anon_sym_short] = ACTIONS(3649), + [anon_sym_LBRACK] = ACTIONS(3649), + [anon_sym_static] = ACTIONS(3649), + [anon_sym_register] = ACTIONS(3649), + [anon_sym_inline] = ACTIONS(3649), + [anon_sym___inline] = ACTIONS(3649), + [anon_sym___inline__] = ACTIONS(3649), + [anon_sym___forceinline] = ACTIONS(3649), + [anon_sym_thread_local] = ACTIONS(3649), + [anon_sym___thread] = ACTIONS(3649), + [anon_sym_const] = ACTIONS(3649), + [anon_sym_constexpr] = ACTIONS(3649), + [anon_sym_volatile] = ACTIONS(3649), + [anon_sym_restrict] = ACTIONS(3649), + [anon_sym___restrict__] = ACTIONS(3649), + [anon_sym__Atomic] = ACTIONS(3649), + [anon_sym__Noreturn] = ACTIONS(3649), + [anon_sym_noreturn] = ACTIONS(3649), + [anon_sym_mutable] = ACTIONS(3649), + [anon_sym_constinit] = ACTIONS(3649), + [anon_sym_consteval] = ACTIONS(3649), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_enum] = ACTIONS(3649), + [anon_sym_class] = ACTIONS(3649), + [anon_sym_struct] = ACTIONS(3649), + [anon_sym_union] = ACTIONS(3649), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3649), + [anon_sym_decltype] = ACTIONS(3649), + [anon_sym_virtual] = ACTIONS(3649), + [anon_sym_alignas] = ACTIONS(3649), + [anon_sym_explicit] = ACTIONS(3649), + [anon_sym_typename] = ACTIONS(3649), + [anon_sym_template] = ACTIONS(3649), + [anon_sym_operator] = ACTIONS(3649), + [anon_sym_friend] = ACTIONS(3649), + [anon_sym_public] = ACTIONS(3649), + [anon_sym_private] = ACTIONS(3649), + [anon_sym_protected] = ACTIONS(3649), + [anon_sym_using] = ACTIONS(3649), + [anon_sym_static_assert] = ACTIONS(3649), + [sym_semgrep_metavar] = ACTIONS(3651), + }, + [2254] = { + [sym_declaration_modifiers] = STATE(4088), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(4767), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(3324), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7546), + [sym_qualified_type_identifier] = STATE(3466), + [aux_sym_declaration_specifiers_repeat1] = STATE(4088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3644), + [sym_identifier] = ACTIONS(4310), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(4316), + [anon_sym_unsigned] = ACTIONS(4316), + [anon_sym_long] = ACTIONS(4316), + [anon_sym_short] = ACTIONS(4316), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(4318), + [anon_sym_enum] = ACTIONS(4320), + [anon_sym_class] = ACTIONS(4322), + [anon_sym_struct] = ACTIONS(4324), + [anon_sym_union] = ACTIONS(4326), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(4328), + [anon_sym_template] = ACTIONS(1534), + }, + [2255] = { + [sym_identifier] = ACTIONS(3668), + [aux_sym_preproc_def_token1] = ACTIONS(3668), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3670), + [aux_sym_preproc_if_token1] = ACTIONS(3668), + [aux_sym_preproc_if_token2] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3668), + [anon_sym_LPAREN2] = ACTIONS(3670), + [anon_sym_TILDE] = ACTIONS(3670), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_AMP_AMP] = ACTIONS(3670), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym___extension__] = ACTIONS(3668), + [anon_sym_typedef] = ACTIONS(3668), + [anon_sym_extern] = ACTIONS(3668), + [anon_sym___attribute__] = ACTIONS(3668), + [anon_sym_COLON_COLON] = ACTIONS(3670), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3670), + [anon_sym___declspec] = ACTIONS(3668), + [anon_sym___based] = ACTIONS(3668), + [anon_sym_signed] = ACTIONS(3668), + [anon_sym_unsigned] = ACTIONS(3668), + [anon_sym_long] = ACTIONS(3668), + [anon_sym_short] = ACTIONS(3668), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_static] = ACTIONS(3668), + [anon_sym_register] = ACTIONS(3668), + [anon_sym_inline] = ACTIONS(3668), + [anon_sym___inline] = ACTIONS(3668), + [anon_sym___inline__] = ACTIONS(3668), + [anon_sym___forceinline] = ACTIONS(3668), + [anon_sym_thread_local] = ACTIONS(3668), + [anon_sym___thread] = ACTIONS(3668), + [anon_sym_const] = ACTIONS(3668), + [anon_sym_constexpr] = ACTIONS(3668), + [anon_sym_volatile] = ACTIONS(3668), + [anon_sym_restrict] = ACTIONS(3668), + [anon_sym___restrict__] = ACTIONS(3668), + [anon_sym__Atomic] = ACTIONS(3668), + [anon_sym__Noreturn] = ACTIONS(3668), + [anon_sym_noreturn] = ACTIONS(3668), + [anon_sym_mutable] = ACTIONS(3668), + [anon_sym_constinit] = ACTIONS(3668), + [anon_sym_consteval] = ACTIONS(3668), + [sym_primitive_type] = ACTIONS(3668), + [anon_sym_enum] = ACTIONS(3668), + [anon_sym_class] = ACTIONS(3668), + [anon_sym_struct] = ACTIONS(3668), + [anon_sym_union] = ACTIONS(3668), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3668), + [anon_sym_decltype] = ACTIONS(3668), + [anon_sym_virtual] = ACTIONS(3668), + [anon_sym_alignas] = ACTIONS(3668), + [anon_sym_explicit] = ACTIONS(3668), + [anon_sym_typename] = ACTIONS(3668), + [anon_sym_template] = ACTIONS(3668), + [anon_sym_operator] = ACTIONS(3668), + [anon_sym_friend] = ACTIONS(3668), + [anon_sym_public] = ACTIONS(3668), + [anon_sym_private] = ACTIONS(3668), + [anon_sym_protected] = ACTIONS(3668), + [anon_sym_using] = ACTIONS(3668), + [anon_sym_static_assert] = ACTIONS(3668), + [sym_semgrep_metavar] = ACTIONS(3670), + }, + [2256] = { + [sym_identifier] = ACTIONS(5856), + [aux_sym_preproc_def_token1] = ACTIONS(5856), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5858), + [aux_sym_preproc_if_token1] = ACTIONS(5856), + [aux_sym_preproc_if_token2] = ACTIONS(5856), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5856), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5856), + [sym_preproc_directive] = ACTIONS(5856), + [anon_sym_LPAREN2] = ACTIONS(5858), + [anon_sym_TILDE] = ACTIONS(5858), + [anon_sym_STAR] = ACTIONS(5858), + [anon_sym_AMP_AMP] = ACTIONS(5858), + [anon_sym_AMP] = ACTIONS(5856), + [anon_sym___extension__] = ACTIONS(5856), + [anon_sym_typedef] = ACTIONS(5856), + [anon_sym_extern] = ACTIONS(5856), + [anon_sym___attribute__] = ACTIONS(5856), + [anon_sym_COLON_COLON] = ACTIONS(5858), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5858), + [anon_sym___declspec] = ACTIONS(5856), + [anon_sym___based] = ACTIONS(5856), + [anon_sym_signed] = ACTIONS(5856), + [anon_sym_unsigned] = ACTIONS(5856), + [anon_sym_long] = ACTIONS(5856), + [anon_sym_short] = ACTIONS(5856), + [anon_sym_LBRACK] = ACTIONS(5856), + [anon_sym_static] = ACTIONS(5856), + [anon_sym_register] = ACTIONS(5856), + [anon_sym_inline] = ACTIONS(5856), + [anon_sym___inline] = ACTIONS(5856), + [anon_sym___inline__] = ACTIONS(5856), + [anon_sym___forceinline] = ACTIONS(5856), + [anon_sym_thread_local] = ACTIONS(5856), + [anon_sym___thread] = ACTIONS(5856), + [anon_sym_const] = ACTIONS(5856), + [anon_sym_constexpr] = ACTIONS(5856), + [anon_sym_volatile] = ACTIONS(5856), + [anon_sym_restrict] = ACTIONS(5856), + [anon_sym___restrict__] = ACTIONS(5856), + [anon_sym__Atomic] = ACTIONS(5856), + [anon_sym__Noreturn] = ACTIONS(5856), + [anon_sym_noreturn] = ACTIONS(5856), + [anon_sym_mutable] = ACTIONS(5856), + [anon_sym_constinit] = ACTIONS(5856), + [anon_sym_consteval] = ACTIONS(5856), + [sym_primitive_type] = ACTIONS(5856), + [anon_sym_enum] = ACTIONS(5856), + [anon_sym_class] = ACTIONS(5856), + [anon_sym_struct] = ACTIONS(5856), + [anon_sym_union] = ACTIONS(5856), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5856), + [anon_sym_decltype] = ACTIONS(5856), + [anon_sym_virtual] = ACTIONS(5856), + [anon_sym_alignas] = ACTIONS(5856), + [anon_sym_explicit] = ACTIONS(5856), + [anon_sym_typename] = ACTIONS(5856), + [anon_sym_template] = ACTIONS(5856), + [anon_sym_operator] = ACTIONS(5856), + [anon_sym_friend] = ACTIONS(5856), + [anon_sym_public] = ACTIONS(5856), + [anon_sym_private] = ACTIONS(5856), + [anon_sym_protected] = ACTIONS(5856), + [anon_sym_using] = ACTIONS(5856), + [anon_sym_static_assert] = ACTIONS(5856), + [sym_semgrep_metavar] = ACTIONS(5858), + }, + [2257] = { + [sym_identifier] = ACTIONS(5860), + [aux_sym_preproc_def_token1] = ACTIONS(5860), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5862), + [aux_sym_preproc_if_token1] = ACTIONS(5860), + [aux_sym_preproc_if_token2] = ACTIONS(5860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5860), + [sym_preproc_directive] = ACTIONS(5860), + [anon_sym_LPAREN2] = ACTIONS(5862), + [anon_sym_TILDE] = ACTIONS(5862), + [anon_sym_STAR] = ACTIONS(5862), + [anon_sym_AMP_AMP] = ACTIONS(5862), + [anon_sym_AMP] = ACTIONS(5860), + [anon_sym___extension__] = ACTIONS(5860), + [anon_sym_typedef] = ACTIONS(5860), + [anon_sym_extern] = ACTIONS(5860), + [anon_sym___attribute__] = ACTIONS(5860), + [anon_sym_COLON_COLON] = ACTIONS(5862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5862), + [anon_sym___declspec] = ACTIONS(5860), + [anon_sym___based] = ACTIONS(5860), + [anon_sym_signed] = ACTIONS(5860), + [anon_sym_unsigned] = ACTIONS(5860), + [anon_sym_long] = ACTIONS(5860), + [anon_sym_short] = ACTIONS(5860), + [anon_sym_LBRACK] = ACTIONS(5860), + [anon_sym_static] = ACTIONS(5860), + [anon_sym_register] = ACTIONS(5860), + [anon_sym_inline] = ACTIONS(5860), + [anon_sym___inline] = ACTIONS(5860), + [anon_sym___inline__] = ACTIONS(5860), + [anon_sym___forceinline] = ACTIONS(5860), + [anon_sym_thread_local] = ACTIONS(5860), + [anon_sym___thread] = ACTIONS(5860), + [anon_sym_const] = ACTIONS(5860), + [anon_sym_constexpr] = ACTIONS(5860), + [anon_sym_volatile] = ACTIONS(5860), + [anon_sym_restrict] = ACTIONS(5860), + [anon_sym___restrict__] = ACTIONS(5860), + [anon_sym__Atomic] = ACTIONS(5860), + [anon_sym__Noreturn] = ACTIONS(5860), + [anon_sym_noreturn] = ACTIONS(5860), + [anon_sym_mutable] = ACTIONS(5860), + [anon_sym_constinit] = ACTIONS(5860), + [anon_sym_consteval] = ACTIONS(5860), + [sym_primitive_type] = ACTIONS(5860), + [anon_sym_enum] = ACTIONS(5860), + [anon_sym_class] = ACTIONS(5860), + [anon_sym_struct] = ACTIONS(5860), + [anon_sym_union] = ACTIONS(5860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5860), + [anon_sym_decltype] = ACTIONS(5860), + [anon_sym_virtual] = ACTIONS(5860), + [anon_sym_alignas] = ACTIONS(5860), + [anon_sym_explicit] = ACTIONS(5860), + [anon_sym_typename] = ACTIONS(5860), + [anon_sym_template] = ACTIONS(5860), + [anon_sym_operator] = ACTIONS(5860), + [anon_sym_friend] = ACTIONS(5860), + [anon_sym_public] = ACTIONS(5860), + [anon_sym_private] = ACTIONS(5860), + [anon_sym_protected] = ACTIONS(5860), + [anon_sym_using] = ACTIONS(5860), + [anon_sym_static_assert] = ACTIONS(5860), + [sym_semgrep_metavar] = ACTIONS(5862), + }, + [2258] = { + [sym_identifier] = ACTIONS(3672), + [aux_sym_preproc_def_token1] = ACTIONS(3672), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3674), + [aux_sym_preproc_if_token1] = ACTIONS(3672), + [aux_sym_preproc_if_token2] = ACTIONS(3672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3672), + [sym_preproc_directive] = ACTIONS(3672), + [anon_sym_LPAREN2] = ACTIONS(3674), + [anon_sym_TILDE] = ACTIONS(3674), + [anon_sym_STAR] = ACTIONS(3674), + [anon_sym_AMP_AMP] = ACTIONS(3674), + [anon_sym_AMP] = ACTIONS(3672), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3672), + [anon_sym_extern] = ACTIONS(3672), + [anon_sym___attribute__] = ACTIONS(3672), + [anon_sym_COLON_COLON] = ACTIONS(3674), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3674), + [anon_sym___declspec] = ACTIONS(3672), + [anon_sym___based] = ACTIONS(3672), + [anon_sym_signed] = ACTIONS(3672), + [anon_sym_unsigned] = ACTIONS(3672), + [anon_sym_long] = ACTIONS(3672), + [anon_sym_short] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_static] = ACTIONS(3672), + [anon_sym_register] = ACTIONS(3672), + [anon_sym_inline] = ACTIONS(3672), + [anon_sym___inline] = ACTIONS(3672), + [anon_sym___inline__] = ACTIONS(3672), + [anon_sym___forceinline] = ACTIONS(3672), + [anon_sym_thread_local] = ACTIONS(3672), + [anon_sym___thread] = ACTIONS(3672), + [anon_sym_const] = ACTIONS(3672), + [anon_sym_constexpr] = ACTIONS(3672), + [anon_sym_volatile] = ACTIONS(3672), + [anon_sym_restrict] = ACTIONS(3672), + [anon_sym___restrict__] = ACTIONS(3672), + [anon_sym__Atomic] = ACTIONS(3672), + [anon_sym__Noreturn] = ACTIONS(3672), + [anon_sym_noreturn] = ACTIONS(3672), + [anon_sym_mutable] = ACTIONS(3672), + [anon_sym_constinit] = ACTIONS(3672), + [anon_sym_consteval] = ACTIONS(3672), + [sym_primitive_type] = ACTIONS(3672), + [anon_sym_enum] = ACTIONS(3672), + [anon_sym_class] = ACTIONS(3672), + [anon_sym_struct] = ACTIONS(3672), + [anon_sym_union] = ACTIONS(3672), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3672), + [anon_sym_decltype] = ACTIONS(3672), + [anon_sym_virtual] = ACTIONS(3672), + [anon_sym_alignas] = ACTIONS(3672), + [anon_sym_explicit] = ACTIONS(3672), + [anon_sym_typename] = ACTIONS(3672), + [anon_sym_template] = ACTIONS(3672), + [anon_sym_operator] = ACTIONS(3672), + [anon_sym_friend] = ACTIONS(3672), + [anon_sym_public] = ACTIONS(3672), + [anon_sym_private] = ACTIONS(3672), + [anon_sym_protected] = ACTIONS(3672), + [anon_sym_using] = ACTIONS(3672), + [anon_sym_static_assert] = ACTIONS(3672), + [sym_semgrep_metavar] = ACTIONS(3674), + }, + [2259] = { + [sym_identifier] = ACTIONS(5864), + [aux_sym_preproc_def_token1] = ACTIONS(5864), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5866), + [aux_sym_preproc_if_token1] = ACTIONS(5864), + [aux_sym_preproc_if_token2] = ACTIONS(5864), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5864), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5864), + [sym_preproc_directive] = ACTIONS(5864), + [anon_sym_LPAREN2] = ACTIONS(5866), + [anon_sym_TILDE] = ACTIONS(5866), + [anon_sym_STAR] = ACTIONS(5866), + [anon_sym_AMP_AMP] = ACTIONS(5866), + [anon_sym_AMP] = ACTIONS(5864), + [anon_sym___extension__] = ACTIONS(5864), + [anon_sym_typedef] = ACTIONS(5864), + [anon_sym_extern] = ACTIONS(5864), + [anon_sym___attribute__] = ACTIONS(5864), + [anon_sym_COLON_COLON] = ACTIONS(5866), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5866), + [anon_sym___declspec] = ACTIONS(5864), + [anon_sym___based] = ACTIONS(5864), + [anon_sym_signed] = ACTIONS(5864), + [anon_sym_unsigned] = ACTIONS(5864), + [anon_sym_long] = ACTIONS(5864), + [anon_sym_short] = ACTIONS(5864), + [anon_sym_LBRACK] = ACTIONS(5864), + [anon_sym_static] = ACTIONS(5864), + [anon_sym_register] = ACTIONS(5864), + [anon_sym_inline] = ACTIONS(5864), + [anon_sym___inline] = ACTIONS(5864), + [anon_sym___inline__] = ACTIONS(5864), + [anon_sym___forceinline] = ACTIONS(5864), + [anon_sym_thread_local] = ACTIONS(5864), + [anon_sym___thread] = ACTIONS(5864), + [anon_sym_const] = ACTIONS(5864), + [anon_sym_constexpr] = ACTIONS(5864), + [anon_sym_volatile] = ACTIONS(5864), + [anon_sym_restrict] = ACTIONS(5864), + [anon_sym___restrict__] = ACTIONS(5864), + [anon_sym__Atomic] = ACTIONS(5864), + [anon_sym__Noreturn] = ACTIONS(5864), + [anon_sym_noreturn] = ACTIONS(5864), + [anon_sym_mutable] = ACTIONS(5864), + [anon_sym_constinit] = ACTIONS(5864), + [anon_sym_consteval] = ACTIONS(5864), + [sym_primitive_type] = ACTIONS(5864), + [anon_sym_enum] = ACTIONS(5864), + [anon_sym_class] = ACTIONS(5864), + [anon_sym_struct] = ACTIONS(5864), + [anon_sym_union] = ACTIONS(5864), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5864), + [anon_sym_decltype] = ACTIONS(5864), + [anon_sym_virtual] = ACTIONS(5864), + [anon_sym_alignas] = ACTIONS(5864), + [anon_sym_explicit] = ACTIONS(5864), + [anon_sym_typename] = ACTIONS(5864), + [anon_sym_template] = ACTIONS(5864), + [anon_sym_operator] = ACTIONS(5864), + [anon_sym_friend] = ACTIONS(5864), + [anon_sym_public] = ACTIONS(5864), + [anon_sym_private] = ACTIONS(5864), + [anon_sym_protected] = ACTIONS(5864), + [anon_sym_using] = ACTIONS(5864), + [anon_sym_static_assert] = ACTIONS(5864), + [sym_semgrep_metavar] = ACTIONS(5866), + }, + [2260] = { + [sym_identifier] = ACTIONS(5864), + [aux_sym_preproc_def_token1] = ACTIONS(5864), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5866), + [aux_sym_preproc_if_token1] = ACTIONS(5864), + [aux_sym_preproc_if_token2] = ACTIONS(5864), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5864), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5864), + [sym_preproc_directive] = ACTIONS(5864), + [anon_sym_LPAREN2] = ACTIONS(5866), + [anon_sym_TILDE] = ACTIONS(5866), + [anon_sym_STAR] = ACTIONS(5866), + [anon_sym_AMP_AMP] = ACTIONS(5866), + [anon_sym_AMP] = ACTIONS(5864), + [anon_sym___extension__] = ACTIONS(5864), + [anon_sym_typedef] = ACTIONS(5864), + [anon_sym_extern] = ACTIONS(5864), + [anon_sym___attribute__] = ACTIONS(5864), + [anon_sym_COLON_COLON] = ACTIONS(5866), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5866), + [anon_sym___declspec] = ACTIONS(5864), + [anon_sym___based] = ACTIONS(5864), + [anon_sym_signed] = ACTIONS(5864), + [anon_sym_unsigned] = ACTIONS(5864), + [anon_sym_long] = ACTIONS(5864), + [anon_sym_short] = ACTIONS(5864), + [anon_sym_LBRACK] = ACTIONS(5864), + [anon_sym_static] = ACTIONS(5864), + [anon_sym_register] = ACTIONS(5864), + [anon_sym_inline] = ACTIONS(5864), + [anon_sym___inline] = ACTIONS(5864), + [anon_sym___inline__] = ACTIONS(5864), + [anon_sym___forceinline] = ACTIONS(5864), + [anon_sym_thread_local] = ACTIONS(5864), + [anon_sym___thread] = ACTIONS(5864), + [anon_sym_const] = ACTIONS(5864), + [anon_sym_constexpr] = ACTIONS(5864), + [anon_sym_volatile] = ACTIONS(5864), + [anon_sym_restrict] = ACTIONS(5864), + [anon_sym___restrict__] = ACTIONS(5864), + [anon_sym__Atomic] = ACTIONS(5864), + [anon_sym__Noreturn] = ACTIONS(5864), + [anon_sym_noreturn] = ACTIONS(5864), + [anon_sym_mutable] = ACTIONS(5864), + [anon_sym_constinit] = ACTIONS(5864), + [anon_sym_consteval] = ACTIONS(5864), + [sym_primitive_type] = ACTIONS(5864), + [anon_sym_enum] = ACTIONS(5864), + [anon_sym_class] = ACTIONS(5864), + [anon_sym_struct] = ACTIONS(5864), + [anon_sym_union] = ACTIONS(5864), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5864), + [anon_sym_decltype] = ACTIONS(5864), + [anon_sym_virtual] = ACTIONS(5864), + [anon_sym_alignas] = ACTIONS(5864), + [anon_sym_explicit] = ACTIONS(5864), + [anon_sym_typename] = ACTIONS(5864), + [anon_sym_template] = ACTIONS(5864), + [anon_sym_operator] = ACTIONS(5864), + [anon_sym_friend] = ACTIONS(5864), + [anon_sym_public] = ACTIONS(5864), + [anon_sym_private] = ACTIONS(5864), + [anon_sym_protected] = ACTIONS(5864), + [anon_sym_using] = ACTIONS(5864), + [anon_sym_static_assert] = ACTIONS(5864), + [sym_semgrep_metavar] = ACTIONS(5866), + }, + [2261] = { + [sym_identifier] = ACTIONS(5868), + [aux_sym_preproc_def_token1] = ACTIONS(5868), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5870), + [aux_sym_preproc_if_token1] = ACTIONS(5868), + [aux_sym_preproc_if_token2] = ACTIONS(5868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5868), + [sym_preproc_directive] = ACTIONS(5868), + [anon_sym_LPAREN2] = ACTIONS(5870), + [anon_sym_TILDE] = ACTIONS(5870), + [anon_sym_STAR] = ACTIONS(5870), + [anon_sym_AMP_AMP] = ACTIONS(5870), + [anon_sym_AMP] = ACTIONS(5868), + [anon_sym___extension__] = ACTIONS(5868), + [anon_sym_typedef] = ACTIONS(5868), + [anon_sym_extern] = ACTIONS(5868), + [anon_sym___attribute__] = ACTIONS(5868), + [anon_sym_COLON_COLON] = ACTIONS(5870), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5870), + [anon_sym___declspec] = ACTIONS(5868), + [anon_sym___based] = ACTIONS(5868), + [anon_sym_signed] = ACTIONS(5868), + [anon_sym_unsigned] = ACTIONS(5868), + [anon_sym_long] = ACTIONS(5868), + [anon_sym_short] = ACTIONS(5868), + [anon_sym_LBRACK] = ACTIONS(5868), + [anon_sym_static] = ACTIONS(5868), + [anon_sym_register] = ACTIONS(5868), + [anon_sym_inline] = ACTIONS(5868), + [anon_sym___inline] = ACTIONS(5868), + [anon_sym___inline__] = ACTIONS(5868), + [anon_sym___forceinline] = ACTIONS(5868), + [anon_sym_thread_local] = ACTIONS(5868), + [anon_sym___thread] = ACTIONS(5868), + [anon_sym_const] = ACTIONS(5868), + [anon_sym_constexpr] = ACTIONS(5868), + [anon_sym_volatile] = ACTIONS(5868), + [anon_sym_restrict] = ACTIONS(5868), + [anon_sym___restrict__] = ACTIONS(5868), + [anon_sym__Atomic] = ACTIONS(5868), + [anon_sym__Noreturn] = ACTIONS(5868), + [anon_sym_noreturn] = ACTIONS(5868), + [anon_sym_mutable] = ACTIONS(5868), + [anon_sym_constinit] = ACTIONS(5868), + [anon_sym_consteval] = ACTIONS(5868), + [sym_primitive_type] = ACTIONS(5868), + [anon_sym_enum] = ACTIONS(5868), + [anon_sym_class] = ACTIONS(5868), + [anon_sym_struct] = ACTIONS(5868), + [anon_sym_union] = ACTIONS(5868), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5868), + [anon_sym_decltype] = ACTIONS(5868), + [anon_sym_virtual] = ACTIONS(5868), + [anon_sym_alignas] = ACTIONS(5868), + [anon_sym_explicit] = ACTIONS(5868), + [anon_sym_typename] = ACTIONS(5868), + [anon_sym_template] = ACTIONS(5868), + [anon_sym_operator] = ACTIONS(5868), + [anon_sym_friend] = ACTIONS(5868), + [anon_sym_public] = ACTIONS(5868), + [anon_sym_private] = ACTIONS(5868), + [anon_sym_protected] = ACTIONS(5868), + [anon_sym_using] = ACTIONS(5868), + [anon_sym_static_assert] = ACTIONS(5868), + [sym_semgrep_metavar] = ACTIONS(5870), + }, + [2262] = { + [sym_identifier] = ACTIONS(5872), + [aux_sym_preproc_def_token1] = ACTIONS(5872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5874), + [aux_sym_preproc_if_token1] = ACTIONS(5872), + [aux_sym_preproc_if_token2] = ACTIONS(5872), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5872), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5872), + [sym_preproc_directive] = ACTIONS(5872), + [anon_sym_LPAREN2] = ACTIONS(5874), + [anon_sym_TILDE] = ACTIONS(5874), + [anon_sym_STAR] = ACTIONS(5874), + [anon_sym_AMP_AMP] = ACTIONS(5874), + [anon_sym_AMP] = ACTIONS(5872), + [anon_sym___extension__] = ACTIONS(5872), + [anon_sym_typedef] = ACTIONS(5872), + [anon_sym_extern] = ACTIONS(5872), + [anon_sym___attribute__] = ACTIONS(5872), + [anon_sym_COLON_COLON] = ACTIONS(5874), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5874), + [anon_sym___declspec] = ACTIONS(5872), + [anon_sym___based] = ACTIONS(5872), + [anon_sym_signed] = ACTIONS(5872), + [anon_sym_unsigned] = ACTIONS(5872), + [anon_sym_long] = ACTIONS(5872), + [anon_sym_short] = ACTIONS(5872), + [anon_sym_LBRACK] = ACTIONS(5872), + [anon_sym_static] = ACTIONS(5872), + [anon_sym_register] = ACTIONS(5872), + [anon_sym_inline] = ACTIONS(5872), + [anon_sym___inline] = ACTIONS(5872), + [anon_sym___inline__] = ACTIONS(5872), + [anon_sym___forceinline] = ACTIONS(5872), + [anon_sym_thread_local] = ACTIONS(5872), + [anon_sym___thread] = ACTIONS(5872), + [anon_sym_const] = ACTIONS(5872), + [anon_sym_constexpr] = ACTIONS(5872), + [anon_sym_volatile] = ACTIONS(5872), + [anon_sym_restrict] = ACTIONS(5872), + [anon_sym___restrict__] = ACTIONS(5872), + [anon_sym__Atomic] = ACTIONS(5872), + [anon_sym__Noreturn] = ACTIONS(5872), + [anon_sym_noreturn] = ACTIONS(5872), + [anon_sym_mutable] = ACTIONS(5872), + [anon_sym_constinit] = ACTIONS(5872), + [anon_sym_consteval] = ACTIONS(5872), + [sym_primitive_type] = ACTIONS(5872), + [anon_sym_enum] = ACTIONS(5872), + [anon_sym_class] = ACTIONS(5872), + [anon_sym_struct] = ACTIONS(5872), + [anon_sym_union] = ACTIONS(5872), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5872), + [anon_sym_decltype] = ACTIONS(5872), + [anon_sym_virtual] = ACTIONS(5872), + [anon_sym_alignas] = ACTIONS(5872), + [anon_sym_explicit] = ACTIONS(5872), + [anon_sym_typename] = ACTIONS(5872), + [anon_sym_template] = ACTIONS(5872), + [anon_sym_operator] = ACTIONS(5872), + [anon_sym_friend] = ACTIONS(5872), + [anon_sym_public] = ACTIONS(5872), + [anon_sym_private] = ACTIONS(5872), + [anon_sym_protected] = ACTIONS(5872), + [anon_sym_using] = ACTIONS(5872), + [anon_sym_static_assert] = ACTIONS(5872), + [sym_semgrep_metavar] = ACTIONS(5874), + }, + [2263] = { + [sym_identifier] = ACTIONS(5880), + [aux_sym_preproc_def_token1] = ACTIONS(5880), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5882), + [aux_sym_preproc_if_token1] = ACTIONS(5880), + [aux_sym_preproc_if_token2] = ACTIONS(5880), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5880), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5880), + [sym_preproc_directive] = ACTIONS(5880), + [anon_sym_LPAREN2] = ACTIONS(5882), + [anon_sym_TILDE] = ACTIONS(5882), + [anon_sym_STAR] = ACTIONS(5882), + [anon_sym_AMP_AMP] = ACTIONS(5882), + [anon_sym_AMP] = ACTIONS(5880), + [anon_sym___extension__] = ACTIONS(5880), + [anon_sym_typedef] = ACTIONS(5880), + [anon_sym_extern] = ACTIONS(5880), + [anon_sym___attribute__] = ACTIONS(5880), + [anon_sym_COLON_COLON] = ACTIONS(5882), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5882), + [anon_sym___declspec] = ACTIONS(5880), + [anon_sym___based] = ACTIONS(5880), + [anon_sym_signed] = ACTIONS(5880), + [anon_sym_unsigned] = ACTIONS(5880), + [anon_sym_long] = ACTIONS(5880), + [anon_sym_short] = ACTIONS(5880), + [anon_sym_LBRACK] = ACTIONS(5880), + [anon_sym_static] = ACTIONS(5880), + [anon_sym_register] = ACTIONS(5880), + [anon_sym_inline] = ACTIONS(5880), + [anon_sym___inline] = ACTIONS(5880), + [anon_sym___inline__] = ACTIONS(5880), + [anon_sym___forceinline] = ACTIONS(5880), + [anon_sym_thread_local] = ACTIONS(5880), + [anon_sym___thread] = ACTIONS(5880), + [anon_sym_const] = ACTIONS(5880), + [anon_sym_constexpr] = ACTIONS(5880), + [anon_sym_volatile] = ACTIONS(5880), + [anon_sym_restrict] = ACTIONS(5880), + [anon_sym___restrict__] = ACTIONS(5880), + [anon_sym__Atomic] = ACTIONS(5880), + [anon_sym__Noreturn] = ACTIONS(5880), + [anon_sym_noreturn] = ACTIONS(5880), + [anon_sym_mutable] = ACTIONS(5880), + [anon_sym_constinit] = ACTIONS(5880), + [anon_sym_consteval] = ACTIONS(5880), + [sym_primitive_type] = ACTIONS(5880), + [anon_sym_enum] = ACTIONS(5880), + [anon_sym_class] = ACTIONS(5880), + [anon_sym_struct] = ACTIONS(5880), + [anon_sym_union] = ACTIONS(5880), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5880), + [anon_sym_decltype] = ACTIONS(5880), + [anon_sym_virtual] = ACTIONS(5880), + [anon_sym_alignas] = ACTIONS(5880), + [anon_sym_explicit] = ACTIONS(5880), + [anon_sym_typename] = ACTIONS(5880), + [anon_sym_template] = ACTIONS(5880), + [anon_sym_operator] = ACTIONS(5880), + [anon_sym_friend] = ACTIONS(5880), + [anon_sym_public] = ACTIONS(5880), + [anon_sym_private] = ACTIONS(5880), + [anon_sym_protected] = ACTIONS(5880), + [anon_sym_using] = ACTIONS(5880), + [anon_sym_static_assert] = ACTIONS(5880), + [sym_semgrep_metavar] = ACTIONS(5882), + }, + [2264] = { + [sym_identifier] = ACTIONS(5880), + [aux_sym_preproc_def_token1] = ACTIONS(5880), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5882), + [aux_sym_preproc_if_token1] = ACTIONS(5880), + [aux_sym_preproc_if_token2] = ACTIONS(5880), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5880), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5880), + [sym_preproc_directive] = ACTIONS(5880), + [anon_sym_LPAREN2] = ACTIONS(5882), + [anon_sym_TILDE] = ACTIONS(5882), + [anon_sym_STAR] = ACTIONS(5882), + [anon_sym_AMP_AMP] = ACTIONS(5882), + [anon_sym_AMP] = ACTIONS(5880), + [anon_sym___extension__] = ACTIONS(5880), + [anon_sym_typedef] = ACTIONS(5880), + [anon_sym_extern] = ACTIONS(5880), + [anon_sym___attribute__] = ACTIONS(5880), + [anon_sym_COLON_COLON] = ACTIONS(5882), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5882), + [anon_sym___declspec] = ACTIONS(5880), + [anon_sym___based] = ACTIONS(5880), + [anon_sym_signed] = ACTIONS(5880), + [anon_sym_unsigned] = ACTIONS(5880), + [anon_sym_long] = ACTIONS(5880), + [anon_sym_short] = ACTIONS(5880), + [anon_sym_LBRACK] = ACTIONS(5880), + [anon_sym_static] = ACTIONS(5880), + [anon_sym_register] = ACTIONS(5880), + [anon_sym_inline] = ACTIONS(5880), + [anon_sym___inline] = ACTIONS(5880), + [anon_sym___inline__] = ACTIONS(5880), + [anon_sym___forceinline] = ACTIONS(5880), + [anon_sym_thread_local] = ACTIONS(5880), + [anon_sym___thread] = ACTIONS(5880), + [anon_sym_const] = ACTIONS(5880), + [anon_sym_constexpr] = ACTIONS(5880), + [anon_sym_volatile] = ACTIONS(5880), + [anon_sym_restrict] = ACTIONS(5880), + [anon_sym___restrict__] = ACTIONS(5880), + [anon_sym__Atomic] = ACTIONS(5880), + [anon_sym__Noreturn] = ACTIONS(5880), + [anon_sym_noreturn] = ACTIONS(5880), + [anon_sym_mutable] = ACTIONS(5880), + [anon_sym_constinit] = ACTIONS(5880), + [anon_sym_consteval] = ACTIONS(5880), + [sym_primitive_type] = ACTIONS(5880), + [anon_sym_enum] = ACTIONS(5880), + [anon_sym_class] = ACTIONS(5880), + [anon_sym_struct] = ACTIONS(5880), + [anon_sym_union] = ACTIONS(5880), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5880), + [anon_sym_decltype] = ACTIONS(5880), + [anon_sym_virtual] = ACTIONS(5880), + [anon_sym_alignas] = ACTIONS(5880), + [anon_sym_explicit] = ACTIONS(5880), + [anon_sym_typename] = ACTIONS(5880), + [anon_sym_template] = ACTIONS(5880), + [anon_sym_operator] = ACTIONS(5880), + [anon_sym_friend] = ACTIONS(5880), + [anon_sym_public] = ACTIONS(5880), + [anon_sym_private] = ACTIONS(5880), + [anon_sym_protected] = ACTIONS(5880), + [anon_sym_using] = ACTIONS(5880), + [anon_sym_static_assert] = ACTIONS(5880), + [sym_semgrep_metavar] = ACTIONS(5882), + }, + [2265] = { + [sym_identifier] = ACTIONS(5900), + [aux_sym_preproc_def_token1] = ACTIONS(5900), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5902), + [aux_sym_preproc_if_token1] = ACTIONS(5900), + [aux_sym_preproc_if_token2] = ACTIONS(5900), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5900), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5900), + [sym_preproc_directive] = ACTIONS(5900), + [anon_sym_LPAREN2] = ACTIONS(5902), + [anon_sym_TILDE] = ACTIONS(5902), + [anon_sym_STAR] = ACTIONS(5902), + [anon_sym_AMP_AMP] = ACTIONS(5902), + [anon_sym_AMP] = ACTIONS(5900), + [anon_sym___extension__] = ACTIONS(5900), + [anon_sym_typedef] = ACTIONS(5900), + [anon_sym_extern] = ACTIONS(5900), + [anon_sym___attribute__] = ACTIONS(5900), + [anon_sym_COLON_COLON] = ACTIONS(5902), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5902), + [anon_sym___declspec] = ACTIONS(5900), + [anon_sym___based] = ACTIONS(5900), + [anon_sym_signed] = ACTIONS(5900), + [anon_sym_unsigned] = ACTIONS(5900), + [anon_sym_long] = ACTIONS(5900), + [anon_sym_short] = ACTIONS(5900), + [anon_sym_LBRACK] = ACTIONS(5900), + [anon_sym_static] = ACTIONS(5900), + [anon_sym_register] = ACTIONS(5900), + [anon_sym_inline] = ACTIONS(5900), + [anon_sym___inline] = ACTIONS(5900), + [anon_sym___inline__] = ACTIONS(5900), + [anon_sym___forceinline] = ACTIONS(5900), + [anon_sym_thread_local] = ACTIONS(5900), + [anon_sym___thread] = ACTIONS(5900), + [anon_sym_const] = ACTIONS(5900), + [anon_sym_constexpr] = ACTIONS(5900), + [anon_sym_volatile] = ACTIONS(5900), + [anon_sym_restrict] = ACTIONS(5900), + [anon_sym___restrict__] = ACTIONS(5900), + [anon_sym__Atomic] = ACTIONS(5900), + [anon_sym__Noreturn] = ACTIONS(5900), + [anon_sym_noreturn] = ACTIONS(5900), + [anon_sym_mutable] = ACTIONS(5900), + [anon_sym_constinit] = ACTIONS(5900), + [anon_sym_consteval] = ACTIONS(5900), + [sym_primitive_type] = ACTIONS(5900), + [anon_sym_enum] = ACTIONS(5900), + [anon_sym_class] = ACTIONS(5900), + [anon_sym_struct] = ACTIONS(5900), + [anon_sym_union] = ACTIONS(5900), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5900), + [anon_sym_decltype] = ACTIONS(5900), + [anon_sym_virtual] = ACTIONS(5900), + [anon_sym_alignas] = ACTIONS(5900), + [anon_sym_explicit] = ACTIONS(5900), + [anon_sym_typename] = ACTIONS(5900), + [anon_sym_template] = ACTIONS(5900), + [anon_sym_operator] = ACTIONS(5900), + [anon_sym_friend] = ACTIONS(5900), + [anon_sym_public] = ACTIONS(5900), + [anon_sym_private] = ACTIONS(5900), + [anon_sym_protected] = ACTIONS(5900), + [anon_sym_using] = ACTIONS(5900), + [anon_sym_static_assert] = ACTIONS(5900), + [sym_semgrep_metavar] = ACTIONS(5902), + }, + [2266] = { + [ts_builtin_sym_end] = ACTIONS(6197), + [sym_identifier] = ACTIONS(6199), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6197), + [anon_sym_COMMA] = ACTIONS(6197), + [anon_sym_RPAREN] = ACTIONS(6197), + [aux_sym_preproc_if_token2] = ACTIONS(6197), + [aux_sym_preproc_else_token1] = ACTIONS(6197), + [aux_sym_preproc_elif_token1] = ACTIONS(6199), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6197), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6197), + [anon_sym_LPAREN2] = ACTIONS(6197), + [anon_sym_DASH] = ACTIONS(6199), + [anon_sym_PLUS] = ACTIONS(6199), + [anon_sym_STAR] = ACTIONS(6199), + [anon_sym_SLASH] = ACTIONS(6199), + [anon_sym_PERCENT] = ACTIONS(6199), + [anon_sym_PIPE_PIPE] = ACTIONS(6197), + [anon_sym_AMP_AMP] = ACTIONS(6197), + [anon_sym_PIPE] = ACTIONS(6199), + [anon_sym_CARET] = ACTIONS(6199), + [anon_sym_AMP] = ACTIONS(6199), + [anon_sym_EQ_EQ] = ACTIONS(6197), + [anon_sym_BANG_EQ] = ACTIONS(6197), + [anon_sym_GT] = ACTIONS(6199), + [anon_sym_GT_EQ] = ACTIONS(6197), + [anon_sym_LT_EQ] = ACTIONS(6199), + [anon_sym_LT] = ACTIONS(6199), + [anon_sym_LT_LT] = ACTIONS(6199), + [anon_sym_GT_GT] = ACTIONS(6199), + [anon_sym_SEMI] = ACTIONS(6197), + [anon_sym___attribute__] = ACTIONS(6199), + [anon_sym_LBRACE] = ACTIONS(6197), + [anon_sym_RBRACE] = ACTIONS(6197), + [anon_sym_LBRACK] = ACTIONS(6197), + [anon_sym_RBRACK] = ACTIONS(6197), + [anon_sym_EQ] = ACTIONS(6199), + [anon_sym_COLON] = ACTIONS(6197), + [anon_sym_QMARK] = ACTIONS(6197), + [anon_sym_STAR_EQ] = ACTIONS(6197), + [anon_sym_SLASH_EQ] = ACTIONS(6197), + [anon_sym_PERCENT_EQ] = ACTIONS(6197), + [anon_sym_PLUS_EQ] = ACTIONS(6197), + [anon_sym_DASH_EQ] = ACTIONS(6197), + [anon_sym_LT_LT_EQ] = ACTIONS(6197), + [anon_sym_GT_GT_EQ] = ACTIONS(6197), + [anon_sym_AMP_EQ] = ACTIONS(6197), + [anon_sym_CARET_EQ] = ACTIONS(6197), + [anon_sym_PIPE_EQ] = ACTIONS(6197), + [anon_sym_and_eq] = ACTIONS(6199), + [anon_sym_or_eq] = ACTIONS(6199), + [anon_sym_xor_eq] = ACTIONS(6199), + [anon_sym_LT_EQ_GT] = ACTIONS(6197), + [anon_sym_or] = ACTIONS(6199), + [anon_sym_and] = ACTIONS(6199), + [anon_sym_bitor] = ACTIONS(6199), + [anon_sym_xor] = ACTIONS(6199), + [anon_sym_bitand] = ACTIONS(6199), + [anon_sym_not_eq] = ACTIONS(6199), + [anon_sym_DASH_DASH] = ACTIONS(6197), + [anon_sym_PLUS_PLUS] = ACTIONS(6197), + [anon_sym_DOT] = ACTIONS(6199), + [anon_sym_DOT_STAR] = ACTIONS(6197), + [anon_sym_DASH_GT] = ACTIONS(6197), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6199), + [anon_sym_decltype] = ACTIONS(6199), + }, + [2267] = { + [sym_string_literal] = STATE(2267), + [sym_raw_string_literal] = STATE(2267), + [aux_sym_concatenated_string_repeat1] = STATE(2267), + [sym_identifier] = ACTIONS(6201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5562), + [anon_sym_COMMA] = ACTIONS(5562), + [anon_sym_LPAREN2] = ACTIONS(5562), + [anon_sym_DASH] = ACTIONS(5567), + [anon_sym_PLUS] = ACTIONS(5567), + [anon_sym_STAR] = ACTIONS(5567), + [anon_sym_SLASH] = ACTIONS(5567), + [anon_sym_PERCENT] = ACTIONS(5567), + [anon_sym_PIPE_PIPE] = ACTIONS(5562), + [anon_sym_AMP_AMP] = ACTIONS(5562), + [anon_sym_PIPE] = ACTIONS(5567), + [anon_sym_CARET] = ACTIONS(5567), + [anon_sym_AMP] = ACTIONS(5567), + [anon_sym_EQ_EQ] = ACTIONS(5562), + [anon_sym_BANG_EQ] = ACTIONS(5562), + [anon_sym_GT] = ACTIONS(5567), + [anon_sym_GT_EQ] = ACTIONS(5567), + [anon_sym_LT_EQ] = ACTIONS(5567), + [anon_sym_LT] = ACTIONS(5567), + [anon_sym_LT_LT] = ACTIONS(5567), + [anon_sym_GT_GT] = ACTIONS(5567), + [anon_sym_LBRACK] = ACTIONS(5562), + [anon_sym_EQ] = ACTIONS(5567), + [anon_sym_QMARK] = ACTIONS(5562), + [anon_sym_STAR_EQ] = ACTIONS(5562), + [anon_sym_SLASH_EQ] = ACTIONS(5562), + [anon_sym_PERCENT_EQ] = ACTIONS(5562), + [anon_sym_PLUS_EQ] = ACTIONS(5562), + [anon_sym_DASH_EQ] = ACTIONS(5562), + [anon_sym_LT_LT_EQ] = ACTIONS(5562), + [anon_sym_GT_GT_EQ] = ACTIONS(5567), + [anon_sym_AMP_EQ] = ACTIONS(5562), + [anon_sym_CARET_EQ] = ACTIONS(5562), + [anon_sym_PIPE_EQ] = ACTIONS(5562), + [anon_sym_and_eq] = ACTIONS(5567), + [anon_sym_or_eq] = ACTIONS(5567), + [anon_sym_xor_eq] = ACTIONS(5567), + [anon_sym_LT_EQ_GT] = ACTIONS(5562), + [anon_sym_or] = ACTIONS(5567), + [anon_sym_and] = ACTIONS(5567), + [anon_sym_bitor] = ACTIONS(5567), + [anon_sym_xor] = ACTIONS(5567), + [anon_sym_bitand] = ACTIONS(5567), + [anon_sym_not_eq] = ACTIONS(5567), + [anon_sym_DASH_DASH] = ACTIONS(5562), + [anon_sym_PLUS_PLUS] = ACTIONS(5562), + [anon_sym_DOT] = ACTIONS(5567), + [anon_sym_DOT_STAR] = ACTIONS(5562), + [anon_sym_DASH_GT] = ACTIONS(5562), + [anon_sym_L_DQUOTE] = ACTIONS(6204), + [anon_sym_u_DQUOTE] = ACTIONS(6204), + [anon_sym_U_DQUOTE] = ACTIONS(6204), + [anon_sym_u8_DQUOTE] = ACTIONS(6204), + [anon_sym_DQUOTE] = ACTIONS(6204), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(5562), + [anon_sym_R_DQUOTE] = ACTIONS(6207), + [anon_sym_LR_DQUOTE] = ACTIONS(6207), + [anon_sym_uR_DQUOTE] = ACTIONS(6207), + [anon_sym_UR_DQUOTE] = ACTIONS(6207), + [anon_sym_u8R_DQUOTE] = ACTIONS(6207), + [sym_literal_suffix] = ACTIONS(5567), + }, + [2268] = { + [sym_identifier] = ACTIONS(3513), + [aux_sym_preproc_def_token1] = ACTIONS(3513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3515), + [aux_sym_preproc_if_token1] = ACTIONS(3513), + [aux_sym_preproc_if_token2] = ACTIONS(3513), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3513), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3513), + [sym_preproc_directive] = ACTIONS(3513), + [anon_sym_LPAREN2] = ACTIONS(3515), + [anon_sym_TILDE] = ACTIONS(3515), + [anon_sym_STAR] = ACTIONS(3515), + [anon_sym_AMP_AMP] = ACTIONS(3515), + [anon_sym_AMP] = ACTIONS(3513), + [anon_sym___extension__] = ACTIONS(3513), + [anon_sym_typedef] = ACTIONS(3513), + [anon_sym_extern] = ACTIONS(3513), + [anon_sym___attribute__] = ACTIONS(3513), + [anon_sym_COLON_COLON] = ACTIONS(3515), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3515), + [anon_sym___declspec] = ACTIONS(3513), + [anon_sym___based] = ACTIONS(3513), + [anon_sym_signed] = ACTIONS(3513), + [anon_sym_unsigned] = ACTIONS(3513), + [anon_sym_long] = ACTIONS(3513), + [anon_sym_short] = ACTIONS(3513), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_static] = ACTIONS(3513), + [anon_sym_register] = ACTIONS(3513), + [anon_sym_inline] = ACTIONS(3513), + [anon_sym___inline] = ACTIONS(3513), + [anon_sym___inline__] = ACTIONS(3513), + [anon_sym___forceinline] = ACTIONS(3513), + [anon_sym_thread_local] = ACTIONS(3513), + [anon_sym___thread] = ACTIONS(3513), + [anon_sym_const] = ACTIONS(3513), + [anon_sym_constexpr] = ACTIONS(3513), + [anon_sym_volatile] = ACTIONS(3513), + [anon_sym_restrict] = ACTIONS(3513), + [anon_sym___restrict__] = ACTIONS(3513), + [anon_sym__Atomic] = ACTIONS(3513), + [anon_sym__Noreturn] = ACTIONS(3513), + [anon_sym_noreturn] = ACTIONS(3513), + [anon_sym_mutable] = ACTIONS(3513), + [anon_sym_constinit] = ACTIONS(3513), + [anon_sym_consteval] = ACTIONS(3513), + [sym_primitive_type] = ACTIONS(3513), + [anon_sym_enum] = ACTIONS(3513), + [anon_sym_class] = ACTIONS(3513), + [anon_sym_struct] = ACTIONS(3513), + [anon_sym_union] = ACTIONS(3513), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3513), + [anon_sym_decltype] = ACTIONS(3513), + [anon_sym_virtual] = ACTIONS(3513), + [anon_sym_alignas] = ACTIONS(3513), + [anon_sym_explicit] = ACTIONS(3513), + [anon_sym_typename] = ACTIONS(3513), + [anon_sym_template] = ACTIONS(3513), + [anon_sym_operator] = ACTIONS(3513), + [anon_sym_friend] = ACTIONS(3513), + [anon_sym_public] = ACTIONS(3513), + [anon_sym_private] = ACTIONS(3513), + [anon_sym_protected] = ACTIONS(3513), + [anon_sym_using] = ACTIONS(3513), + [anon_sym_static_assert] = ACTIONS(3513), + [sym_semgrep_metavar] = ACTIONS(3515), + }, + [2269] = { + [ts_builtin_sym_end] = ACTIONS(4771), + [sym_identifier] = ACTIONS(4763), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4771), + [anon_sym_COMMA] = ACTIONS(4771), + [anon_sym_RPAREN] = ACTIONS(4771), + [aux_sym_preproc_if_token2] = ACTIONS(4771), + [aux_sym_preproc_else_token1] = ACTIONS(4771), + [aux_sym_preproc_elif_token1] = ACTIONS(4763), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4771), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4771), + [anon_sym_LPAREN2] = ACTIONS(4771), + [anon_sym_DASH] = ACTIONS(4763), + [anon_sym_PLUS] = ACTIONS(4763), + [anon_sym_STAR] = ACTIONS(4763), + [anon_sym_SLASH] = ACTIONS(4763), + [anon_sym_PERCENT] = ACTIONS(4763), + [anon_sym_PIPE_PIPE] = ACTIONS(4771), + [anon_sym_AMP_AMP] = ACTIONS(4771), + [anon_sym_PIPE] = ACTIONS(4763), + [anon_sym_CARET] = ACTIONS(4763), + [anon_sym_AMP] = ACTIONS(4763), + [anon_sym_EQ_EQ] = ACTIONS(4771), + [anon_sym_BANG_EQ] = ACTIONS(4771), + [anon_sym_GT] = ACTIONS(4763), + [anon_sym_GT_EQ] = ACTIONS(4771), + [anon_sym_LT_EQ] = ACTIONS(4763), + [anon_sym_LT] = ACTIONS(4763), + [anon_sym_LT_LT] = ACTIONS(4763), + [anon_sym_GT_GT] = ACTIONS(4763), + [anon_sym_SEMI] = ACTIONS(4771), + [anon_sym___attribute__] = ACTIONS(4763), + [anon_sym_LBRACE] = ACTIONS(4771), + [anon_sym_RBRACE] = ACTIONS(4771), + [anon_sym_LBRACK] = ACTIONS(4771), + [anon_sym_RBRACK] = ACTIONS(4771), + [anon_sym_EQ] = ACTIONS(4763), + [anon_sym_COLON] = ACTIONS(4771), + [anon_sym_QMARK] = ACTIONS(4771), + [anon_sym_STAR_EQ] = ACTIONS(4771), + [anon_sym_SLASH_EQ] = ACTIONS(4771), + [anon_sym_PERCENT_EQ] = ACTIONS(4771), + [anon_sym_PLUS_EQ] = ACTIONS(4771), + [anon_sym_DASH_EQ] = ACTIONS(4771), + [anon_sym_LT_LT_EQ] = ACTIONS(4771), + [anon_sym_GT_GT_EQ] = ACTIONS(4771), + [anon_sym_AMP_EQ] = ACTIONS(4771), + [anon_sym_CARET_EQ] = ACTIONS(4771), + [anon_sym_PIPE_EQ] = ACTIONS(4771), + [anon_sym_and_eq] = ACTIONS(4763), + [anon_sym_or_eq] = ACTIONS(4763), + [anon_sym_xor_eq] = ACTIONS(4763), + [anon_sym_LT_EQ_GT] = ACTIONS(4771), + [anon_sym_or] = ACTIONS(4763), + [anon_sym_and] = ACTIONS(4763), + [anon_sym_bitor] = ACTIONS(4763), + [anon_sym_xor] = ACTIONS(4763), + [anon_sym_bitand] = ACTIONS(4763), + [anon_sym_not_eq] = ACTIONS(4763), + [anon_sym_DASH_DASH] = ACTIONS(4771), + [anon_sym_PLUS_PLUS] = ACTIONS(4771), + [anon_sym_DOT] = ACTIONS(4763), + [anon_sym_DOT_STAR] = ACTIONS(4771), + [anon_sym_DASH_GT] = ACTIONS(4771), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4763), + [anon_sym_decltype] = ACTIONS(4763), + }, + [2270] = { + [sym_identifier] = ACTIONS(3684), + [aux_sym_preproc_def_token1] = ACTIONS(3684), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3686), + [aux_sym_preproc_if_token1] = ACTIONS(3684), + [aux_sym_preproc_if_token2] = ACTIONS(3684), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3684), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3684), + [sym_preproc_directive] = ACTIONS(3684), + [anon_sym_LPAREN2] = ACTIONS(3686), + [anon_sym_TILDE] = ACTIONS(3686), + [anon_sym_STAR] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3686), + [anon_sym_AMP] = ACTIONS(3684), + [anon_sym___extension__] = ACTIONS(3684), + [anon_sym_typedef] = ACTIONS(3684), + [anon_sym_extern] = ACTIONS(3684), + [anon_sym___attribute__] = ACTIONS(3684), + [anon_sym_COLON_COLON] = ACTIONS(3686), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3686), + [anon_sym___declspec] = ACTIONS(3684), + [anon_sym___based] = ACTIONS(3684), + [anon_sym_signed] = ACTIONS(3684), + [anon_sym_unsigned] = ACTIONS(3684), + [anon_sym_long] = ACTIONS(3684), + [anon_sym_short] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3684), + [anon_sym_static] = ACTIONS(3684), + [anon_sym_register] = ACTIONS(3684), + [anon_sym_inline] = ACTIONS(3684), + [anon_sym___inline] = ACTIONS(3684), + [anon_sym___inline__] = ACTIONS(3684), + [anon_sym___forceinline] = ACTIONS(3684), + [anon_sym_thread_local] = ACTIONS(3684), + [anon_sym___thread] = ACTIONS(3684), + [anon_sym_const] = ACTIONS(3684), + [anon_sym_constexpr] = ACTIONS(3684), + [anon_sym_volatile] = ACTIONS(3684), + [anon_sym_restrict] = ACTIONS(3684), + [anon_sym___restrict__] = ACTIONS(3684), + [anon_sym__Atomic] = ACTIONS(3684), + [anon_sym__Noreturn] = ACTIONS(3684), + [anon_sym_noreturn] = ACTIONS(3684), + [anon_sym_mutable] = ACTIONS(3684), + [anon_sym_constinit] = ACTIONS(3684), + [anon_sym_consteval] = ACTIONS(3684), + [sym_primitive_type] = ACTIONS(3684), + [anon_sym_enum] = ACTIONS(3684), + [anon_sym_class] = ACTIONS(3684), + [anon_sym_struct] = ACTIONS(3684), + [anon_sym_union] = ACTIONS(3684), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3684), + [anon_sym_decltype] = ACTIONS(3684), + [anon_sym_virtual] = ACTIONS(3684), + [anon_sym_alignas] = ACTIONS(3684), + [anon_sym_explicit] = ACTIONS(3684), + [anon_sym_typename] = ACTIONS(3684), + [anon_sym_template] = ACTIONS(3684), + [anon_sym_operator] = ACTIONS(3684), + [anon_sym_friend] = ACTIONS(3684), + [anon_sym_public] = ACTIONS(3684), + [anon_sym_private] = ACTIONS(3684), + [anon_sym_protected] = ACTIONS(3684), + [anon_sym_using] = ACTIONS(3684), + [anon_sym_static_assert] = ACTIONS(3684), + [sym_semgrep_metavar] = ACTIONS(3686), + }, + [2271] = { + [sym_identifier] = ACTIONS(3438), + [aux_sym_preproc_def_token1] = ACTIONS(3438), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3440), + [aux_sym_preproc_if_token1] = ACTIONS(3438), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3438), + [sym_preproc_directive] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3440), + [anon_sym_STAR] = ACTIONS(3440), + [anon_sym_AMP_AMP] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym___extension__] = ACTIONS(3438), + [anon_sym_typedef] = ACTIONS(3438), + [anon_sym_extern] = ACTIONS(3438), + [anon_sym___attribute__] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3440), + [anon_sym___declspec] = ACTIONS(3438), + [anon_sym___based] = ACTIONS(3438), + [anon_sym_RBRACE] = ACTIONS(3440), + [anon_sym_signed] = ACTIONS(3438), + [anon_sym_unsigned] = ACTIONS(3438), + [anon_sym_long] = ACTIONS(3438), + [anon_sym_short] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_static] = ACTIONS(3438), + [anon_sym_register] = ACTIONS(3438), + [anon_sym_inline] = ACTIONS(3438), + [anon_sym___inline] = ACTIONS(3438), + [anon_sym___inline__] = ACTIONS(3438), + [anon_sym___forceinline] = ACTIONS(3438), + [anon_sym_thread_local] = ACTIONS(3438), + [anon_sym___thread] = ACTIONS(3438), + [anon_sym_const] = ACTIONS(3438), + [anon_sym_constexpr] = ACTIONS(3438), + [anon_sym_volatile] = ACTIONS(3438), + [anon_sym_restrict] = ACTIONS(3438), + [anon_sym___restrict__] = ACTIONS(3438), + [anon_sym__Atomic] = ACTIONS(3438), + [anon_sym__Noreturn] = ACTIONS(3438), + [anon_sym_noreturn] = ACTIONS(3438), + [anon_sym_mutable] = ACTIONS(3438), + [anon_sym_constinit] = ACTIONS(3438), + [anon_sym_consteval] = ACTIONS(3438), + [sym_primitive_type] = ACTIONS(3438), + [anon_sym_enum] = ACTIONS(3438), + [anon_sym_class] = ACTIONS(3438), + [anon_sym_struct] = ACTIONS(3438), + [anon_sym_union] = ACTIONS(3438), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3438), + [anon_sym_decltype] = ACTIONS(3438), + [anon_sym_virtual] = ACTIONS(3438), + [anon_sym_alignas] = ACTIONS(3438), + [anon_sym_explicit] = ACTIONS(3438), + [anon_sym_typename] = ACTIONS(3438), + [anon_sym_template] = ACTIONS(3438), + [anon_sym_operator] = ACTIONS(3438), + [anon_sym_friend] = ACTIONS(3438), + [anon_sym_public] = ACTIONS(3438), + [anon_sym_private] = ACTIONS(3438), + [anon_sym_protected] = ACTIONS(3438), + [anon_sym_using] = ACTIONS(3438), + [anon_sym_static_assert] = ACTIONS(3438), + [sym_semgrep_metavar] = ACTIONS(3440), + }, + [2272] = { + [sym_identifier] = ACTIONS(5773), + [aux_sym_preproc_def_token1] = ACTIONS(5773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5775), + [aux_sym_preproc_if_token1] = ACTIONS(5773), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5773), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5773), + [sym_preproc_directive] = ACTIONS(5773), + [anon_sym_LPAREN2] = ACTIONS(5775), + [anon_sym_TILDE] = ACTIONS(5775), + [anon_sym_STAR] = ACTIONS(5775), + [anon_sym_AMP_AMP] = ACTIONS(5775), + [anon_sym_AMP] = ACTIONS(5773), + [anon_sym___extension__] = ACTIONS(5773), + [anon_sym_typedef] = ACTIONS(5773), + [anon_sym_extern] = ACTIONS(5773), + [anon_sym___attribute__] = ACTIONS(5773), + [anon_sym_COLON_COLON] = ACTIONS(5775), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5775), + [anon_sym___declspec] = ACTIONS(5773), + [anon_sym___based] = ACTIONS(5773), + [anon_sym_RBRACE] = ACTIONS(5775), + [anon_sym_signed] = ACTIONS(5773), + [anon_sym_unsigned] = ACTIONS(5773), + [anon_sym_long] = ACTIONS(5773), + [anon_sym_short] = ACTIONS(5773), + [anon_sym_LBRACK] = ACTIONS(5773), + [anon_sym_static] = ACTIONS(5773), + [anon_sym_register] = ACTIONS(5773), + [anon_sym_inline] = ACTIONS(5773), + [anon_sym___inline] = ACTIONS(5773), + [anon_sym___inline__] = ACTIONS(5773), + [anon_sym___forceinline] = ACTIONS(5773), + [anon_sym_thread_local] = ACTIONS(5773), + [anon_sym___thread] = ACTIONS(5773), + [anon_sym_const] = ACTIONS(5773), + [anon_sym_constexpr] = ACTIONS(5773), + [anon_sym_volatile] = ACTIONS(5773), + [anon_sym_restrict] = ACTIONS(5773), + [anon_sym___restrict__] = ACTIONS(5773), + [anon_sym__Atomic] = ACTIONS(5773), + [anon_sym__Noreturn] = ACTIONS(5773), + [anon_sym_noreturn] = ACTIONS(5773), + [anon_sym_mutable] = ACTIONS(5773), + [anon_sym_constinit] = ACTIONS(5773), + [anon_sym_consteval] = ACTIONS(5773), + [sym_primitive_type] = ACTIONS(5773), + [anon_sym_enum] = ACTIONS(5773), + [anon_sym_class] = ACTIONS(5773), + [anon_sym_struct] = ACTIONS(5773), + [anon_sym_union] = ACTIONS(5773), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5773), + [anon_sym_decltype] = ACTIONS(5773), + [anon_sym_virtual] = ACTIONS(5773), + [anon_sym_alignas] = ACTIONS(5773), + [anon_sym_explicit] = ACTIONS(5773), + [anon_sym_typename] = ACTIONS(5773), + [anon_sym_template] = ACTIONS(5773), + [anon_sym_operator] = ACTIONS(5773), + [anon_sym_friend] = ACTIONS(5773), + [anon_sym_public] = ACTIONS(5773), + [anon_sym_private] = ACTIONS(5773), + [anon_sym_protected] = ACTIONS(5773), + [anon_sym_using] = ACTIONS(5773), + [anon_sym_static_assert] = ACTIONS(5773), + [sym_semgrep_metavar] = ACTIONS(5775), + }, + [2273] = { + [sym_identifier] = ACTIONS(3525), + [aux_sym_preproc_def_token1] = ACTIONS(3525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3527), + [aux_sym_preproc_if_token1] = ACTIONS(3525), + [aux_sym_preproc_if_token2] = ACTIONS(3525), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3525), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3525), + [sym_preproc_directive] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(3527), + [anon_sym_TILDE] = ACTIONS(3527), + [anon_sym_STAR] = ACTIONS(3527), + [anon_sym_AMP_AMP] = ACTIONS(3527), + [anon_sym_AMP] = ACTIONS(3525), + [anon_sym___extension__] = ACTIONS(3525), + [anon_sym_typedef] = ACTIONS(3525), + [anon_sym_extern] = ACTIONS(3525), + [anon_sym___attribute__] = ACTIONS(3525), + [anon_sym_COLON_COLON] = ACTIONS(3527), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3527), + [anon_sym___declspec] = ACTIONS(3525), + [anon_sym___based] = ACTIONS(3525), + [anon_sym_signed] = ACTIONS(3525), + [anon_sym_unsigned] = ACTIONS(3525), + [anon_sym_long] = ACTIONS(3525), + [anon_sym_short] = ACTIONS(3525), + [anon_sym_LBRACK] = ACTIONS(3525), + [anon_sym_static] = ACTIONS(3525), + [anon_sym_register] = ACTIONS(3525), + [anon_sym_inline] = ACTIONS(3525), + [anon_sym___inline] = ACTIONS(3525), + [anon_sym___inline__] = ACTIONS(3525), + [anon_sym___forceinline] = ACTIONS(3525), + [anon_sym_thread_local] = ACTIONS(3525), + [anon_sym___thread] = ACTIONS(3525), + [anon_sym_const] = ACTIONS(3525), + [anon_sym_constexpr] = ACTIONS(3525), + [anon_sym_volatile] = ACTIONS(3525), + [anon_sym_restrict] = ACTIONS(3525), + [anon_sym___restrict__] = ACTIONS(3525), + [anon_sym__Atomic] = ACTIONS(3525), + [anon_sym__Noreturn] = ACTIONS(3525), + [anon_sym_noreturn] = ACTIONS(3525), + [anon_sym_mutable] = ACTIONS(3525), + [anon_sym_constinit] = ACTIONS(3525), + [anon_sym_consteval] = ACTIONS(3525), + [sym_primitive_type] = ACTIONS(3525), + [anon_sym_enum] = ACTIONS(3525), + [anon_sym_class] = ACTIONS(3525), + [anon_sym_struct] = ACTIONS(3525), + [anon_sym_union] = ACTIONS(3525), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3525), + [anon_sym_decltype] = ACTIONS(3525), + [anon_sym_virtual] = ACTIONS(3525), + [anon_sym_alignas] = ACTIONS(3525), + [anon_sym_explicit] = ACTIONS(3525), + [anon_sym_typename] = ACTIONS(3525), + [anon_sym_template] = ACTIONS(3525), + [anon_sym_operator] = ACTIONS(3525), + [anon_sym_friend] = ACTIONS(3525), + [anon_sym_public] = ACTIONS(3525), + [anon_sym_private] = ACTIONS(3525), + [anon_sym_protected] = ACTIONS(3525), + [anon_sym_using] = ACTIONS(3525), + [anon_sym_static_assert] = ACTIONS(3525), + [sym_semgrep_metavar] = ACTIONS(3527), + }, + [2274] = { + [sym_identifier] = ACTIONS(3529), + [aux_sym_preproc_def_token1] = ACTIONS(3529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3531), + [aux_sym_preproc_if_token1] = ACTIONS(3529), + [aux_sym_preproc_if_token2] = ACTIONS(3529), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3529), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3529), + [sym_preproc_directive] = ACTIONS(3529), + [anon_sym_LPAREN2] = ACTIONS(3531), + [anon_sym_TILDE] = ACTIONS(3531), + [anon_sym_STAR] = ACTIONS(3531), + [anon_sym_AMP_AMP] = ACTIONS(3531), + [anon_sym_AMP] = ACTIONS(3529), + [anon_sym___extension__] = ACTIONS(3529), + [anon_sym_typedef] = ACTIONS(3529), + [anon_sym_extern] = ACTIONS(3529), + [anon_sym___attribute__] = ACTIONS(3529), + [anon_sym_COLON_COLON] = ACTIONS(3531), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3531), + [anon_sym___declspec] = ACTIONS(3529), + [anon_sym___based] = ACTIONS(3529), + [anon_sym_signed] = ACTIONS(3529), + [anon_sym_unsigned] = ACTIONS(3529), + [anon_sym_long] = ACTIONS(3529), + [anon_sym_short] = ACTIONS(3529), + [anon_sym_LBRACK] = ACTIONS(3529), + [anon_sym_static] = ACTIONS(3529), + [anon_sym_register] = ACTIONS(3529), + [anon_sym_inline] = ACTIONS(3529), + [anon_sym___inline] = ACTIONS(3529), + [anon_sym___inline__] = ACTIONS(3529), + [anon_sym___forceinline] = ACTIONS(3529), + [anon_sym_thread_local] = ACTIONS(3529), + [anon_sym___thread] = ACTIONS(3529), + [anon_sym_const] = ACTIONS(3529), + [anon_sym_constexpr] = ACTIONS(3529), + [anon_sym_volatile] = ACTIONS(3529), + [anon_sym_restrict] = ACTIONS(3529), + [anon_sym___restrict__] = ACTIONS(3529), + [anon_sym__Atomic] = ACTIONS(3529), + [anon_sym__Noreturn] = ACTIONS(3529), + [anon_sym_noreturn] = ACTIONS(3529), + [anon_sym_mutable] = ACTIONS(3529), + [anon_sym_constinit] = ACTIONS(3529), + [anon_sym_consteval] = ACTIONS(3529), + [sym_primitive_type] = ACTIONS(3529), + [anon_sym_enum] = ACTIONS(3529), + [anon_sym_class] = ACTIONS(3529), + [anon_sym_struct] = ACTIONS(3529), + [anon_sym_union] = ACTIONS(3529), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3529), + [anon_sym_decltype] = ACTIONS(3529), + [anon_sym_virtual] = ACTIONS(3529), + [anon_sym_alignas] = ACTIONS(3529), + [anon_sym_explicit] = ACTIONS(3529), + [anon_sym_typename] = ACTIONS(3529), + [anon_sym_template] = ACTIONS(3529), + [anon_sym_operator] = ACTIONS(3529), + [anon_sym_friend] = ACTIONS(3529), + [anon_sym_public] = ACTIONS(3529), + [anon_sym_private] = ACTIONS(3529), + [anon_sym_protected] = ACTIONS(3529), + [anon_sym_using] = ACTIONS(3529), + [anon_sym_static_assert] = ACTIONS(3529), + [sym_semgrep_metavar] = ACTIONS(3531), + }, + [2275] = { + [sym_identifier] = ACTIONS(3533), + [aux_sym_preproc_def_token1] = ACTIONS(3533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3535), + [aux_sym_preproc_if_token1] = ACTIONS(3533), + [aux_sym_preproc_if_token2] = ACTIONS(3533), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3533), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3533), + [sym_preproc_directive] = ACTIONS(3533), + [anon_sym_LPAREN2] = ACTIONS(3535), + [anon_sym_TILDE] = ACTIONS(3535), + [anon_sym_STAR] = ACTIONS(3535), + [anon_sym_AMP_AMP] = ACTIONS(3535), + [anon_sym_AMP] = ACTIONS(3533), + [anon_sym___extension__] = ACTIONS(3533), + [anon_sym_typedef] = ACTIONS(3533), + [anon_sym_extern] = ACTIONS(3533), + [anon_sym___attribute__] = ACTIONS(3533), + [anon_sym_COLON_COLON] = ACTIONS(3535), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3535), + [anon_sym___declspec] = ACTIONS(3533), + [anon_sym___based] = ACTIONS(3533), + [anon_sym_signed] = ACTIONS(3533), + [anon_sym_unsigned] = ACTIONS(3533), + [anon_sym_long] = ACTIONS(3533), + [anon_sym_short] = ACTIONS(3533), + [anon_sym_LBRACK] = ACTIONS(3533), + [anon_sym_static] = ACTIONS(3533), + [anon_sym_register] = ACTIONS(3533), + [anon_sym_inline] = ACTIONS(3533), + [anon_sym___inline] = ACTIONS(3533), + [anon_sym___inline__] = ACTIONS(3533), + [anon_sym___forceinline] = ACTIONS(3533), + [anon_sym_thread_local] = ACTIONS(3533), + [anon_sym___thread] = ACTIONS(3533), + [anon_sym_const] = ACTIONS(3533), + [anon_sym_constexpr] = ACTIONS(3533), + [anon_sym_volatile] = ACTIONS(3533), + [anon_sym_restrict] = ACTIONS(3533), + [anon_sym___restrict__] = ACTIONS(3533), + [anon_sym__Atomic] = ACTIONS(3533), + [anon_sym__Noreturn] = ACTIONS(3533), + [anon_sym_noreturn] = ACTIONS(3533), + [anon_sym_mutable] = ACTIONS(3533), + [anon_sym_constinit] = ACTIONS(3533), + [anon_sym_consteval] = ACTIONS(3533), + [sym_primitive_type] = ACTIONS(3533), + [anon_sym_enum] = ACTIONS(3533), + [anon_sym_class] = ACTIONS(3533), + [anon_sym_struct] = ACTIONS(3533), + [anon_sym_union] = ACTIONS(3533), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3533), + [anon_sym_decltype] = ACTIONS(3533), + [anon_sym_virtual] = ACTIONS(3533), + [anon_sym_alignas] = ACTIONS(3533), + [anon_sym_explicit] = ACTIONS(3533), + [anon_sym_typename] = ACTIONS(3533), + [anon_sym_template] = ACTIONS(3533), + [anon_sym_operator] = ACTIONS(3533), + [anon_sym_friend] = ACTIONS(3533), + [anon_sym_public] = ACTIONS(3533), + [anon_sym_private] = ACTIONS(3533), + [anon_sym_protected] = ACTIONS(3533), + [anon_sym_using] = ACTIONS(3533), + [anon_sym_static_assert] = ACTIONS(3533), + [sym_semgrep_metavar] = ACTIONS(3535), + }, + [2276] = { + [sym_attribute_declaration] = STATE(2409), + [aux_sym_attributed_declarator_repeat1] = STATE(2409), + [ts_builtin_sym_end] = ACTIONS(6210), + [sym_identifier] = ACTIONS(6212), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6210), + [anon_sym_COMMA] = ACTIONS(6210), + [anon_sym_RPAREN] = ACTIONS(6210), + [aux_sym_preproc_if_token2] = ACTIONS(6210), + [aux_sym_preproc_else_token1] = ACTIONS(6210), + [aux_sym_preproc_elif_token1] = ACTIONS(6212), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6210), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6210), + [anon_sym_LPAREN2] = ACTIONS(6210), + [anon_sym_DASH] = ACTIONS(6212), + [anon_sym_PLUS] = ACTIONS(6212), + [anon_sym_STAR] = ACTIONS(6212), + [anon_sym_SLASH] = ACTIONS(6212), + [anon_sym_PERCENT] = ACTIONS(6212), + [anon_sym_PIPE_PIPE] = ACTIONS(6210), + [anon_sym_AMP_AMP] = ACTIONS(6210), + [anon_sym_PIPE] = ACTIONS(6212), + [anon_sym_CARET] = ACTIONS(6212), + [anon_sym_AMP] = ACTIONS(6212), + [anon_sym_EQ_EQ] = ACTIONS(6210), + [anon_sym_BANG_EQ] = ACTIONS(6210), + [anon_sym_GT] = ACTIONS(6212), + [anon_sym_GT_EQ] = ACTIONS(6210), + [anon_sym_LT_EQ] = ACTIONS(6212), + [anon_sym_LT] = ACTIONS(6212), + [anon_sym_LT_LT] = ACTIONS(6212), + [anon_sym_GT_GT] = ACTIONS(6212), + [anon_sym_SEMI] = ACTIONS(6210), + [anon_sym___attribute__] = ACTIONS(6212), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6044), + [anon_sym_RBRACE] = ACTIONS(6210), + [anon_sym_LBRACK] = ACTIONS(6212), + [anon_sym_RBRACK] = ACTIONS(6210), + [anon_sym_EQ] = ACTIONS(6212), + [anon_sym_COLON] = ACTIONS(6210), + [anon_sym_QMARK] = ACTIONS(6210), + [anon_sym_STAR_EQ] = ACTIONS(6210), + [anon_sym_SLASH_EQ] = ACTIONS(6210), + [anon_sym_PERCENT_EQ] = ACTIONS(6210), + [anon_sym_PLUS_EQ] = ACTIONS(6210), + [anon_sym_DASH_EQ] = ACTIONS(6210), + [anon_sym_LT_LT_EQ] = ACTIONS(6210), + [anon_sym_GT_GT_EQ] = ACTIONS(6210), + [anon_sym_AMP_EQ] = ACTIONS(6210), + [anon_sym_CARET_EQ] = ACTIONS(6210), + [anon_sym_PIPE_EQ] = ACTIONS(6210), + [anon_sym_and_eq] = ACTIONS(6212), + [anon_sym_or_eq] = ACTIONS(6212), + [anon_sym_xor_eq] = ACTIONS(6212), + [anon_sym_LT_EQ_GT] = ACTIONS(6210), + [anon_sym_or] = ACTIONS(6212), + [anon_sym_and] = ACTIONS(6212), + [anon_sym_bitor] = ACTIONS(6212), + [anon_sym_xor] = ACTIONS(6212), + [anon_sym_bitand] = ACTIONS(6212), + [anon_sym_not_eq] = ACTIONS(6212), + [anon_sym_DASH_DASH] = ACTIONS(6210), + [anon_sym_PLUS_PLUS] = ACTIONS(6210), + [anon_sym_DOT] = ACTIONS(6212), + [anon_sym_DOT_STAR] = ACTIONS(6210), + [anon_sym_DASH_GT] = ACTIONS(6210), + [sym_comment] = ACTIONS(3), + }, + [2277] = { + [ts_builtin_sym_end] = ACTIONS(4771), + [sym_identifier] = ACTIONS(4763), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4771), + [anon_sym_COMMA] = ACTIONS(4771), + [anon_sym_RPAREN] = ACTIONS(4771), + [aux_sym_preproc_if_token2] = ACTIONS(4771), + [aux_sym_preproc_else_token1] = ACTIONS(4771), + [aux_sym_preproc_elif_token1] = ACTIONS(4763), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4771), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4771), + [anon_sym_LPAREN2] = ACTIONS(4771), + [anon_sym_DASH] = ACTIONS(4763), + [anon_sym_PLUS] = ACTIONS(4763), + [anon_sym_STAR] = ACTIONS(4763), + [anon_sym_SLASH] = ACTIONS(4763), + [anon_sym_PERCENT] = ACTIONS(4763), + [anon_sym_PIPE_PIPE] = ACTIONS(4771), + [anon_sym_AMP_AMP] = ACTIONS(4771), + [anon_sym_PIPE] = ACTIONS(4763), + [anon_sym_CARET] = ACTIONS(4763), + [anon_sym_AMP] = ACTIONS(4763), + [anon_sym_EQ_EQ] = ACTIONS(4771), + [anon_sym_BANG_EQ] = ACTIONS(4771), + [anon_sym_GT] = ACTIONS(4763), + [anon_sym_GT_EQ] = ACTIONS(4771), + [anon_sym_LT_EQ] = ACTIONS(4763), + [anon_sym_LT] = ACTIONS(4763), + [anon_sym_LT_LT] = ACTIONS(4763), + [anon_sym_GT_GT] = ACTIONS(4763), + [anon_sym_SEMI] = ACTIONS(4771), + [anon_sym___attribute__] = ACTIONS(4763), + [anon_sym_LBRACE] = ACTIONS(4771), + [anon_sym_RBRACE] = ACTIONS(4771), + [anon_sym_LBRACK] = ACTIONS(4771), + [anon_sym_RBRACK] = ACTIONS(4771), + [anon_sym_EQ] = ACTIONS(4763), + [anon_sym_COLON] = ACTIONS(4771), + [anon_sym_QMARK] = ACTIONS(4771), + [anon_sym_STAR_EQ] = ACTIONS(4771), + [anon_sym_SLASH_EQ] = ACTIONS(4771), + [anon_sym_PERCENT_EQ] = ACTIONS(4771), + [anon_sym_PLUS_EQ] = ACTIONS(4771), + [anon_sym_DASH_EQ] = ACTIONS(4771), + [anon_sym_LT_LT_EQ] = ACTIONS(4771), + [anon_sym_GT_GT_EQ] = ACTIONS(4771), + [anon_sym_AMP_EQ] = ACTIONS(4771), + [anon_sym_CARET_EQ] = ACTIONS(4771), + [anon_sym_PIPE_EQ] = ACTIONS(4771), + [anon_sym_and_eq] = ACTIONS(4763), + [anon_sym_or_eq] = ACTIONS(4763), + [anon_sym_xor_eq] = ACTIONS(4763), + [anon_sym_LT_EQ_GT] = ACTIONS(4771), + [anon_sym_or] = ACTIONS(4763), + [anon_sym_and] = ACTIONS(4763), + [anon_sym_bitor] = ACTIONS(4763), + [anon_sym_xor] = ACTIONS(4763), + [anon_sym_bitand] = ACTIONS(4763), + [anon_sym_not_eq] = ACTIONS(4763), + [anon_sym_DASH_DASH] = ACTIONS(4771), + [anon_sym_PLUS_PLUS] = ACTIONS(4771), + [anon_sym_DOT] = ACTIONS(4763), + [anon_sym_DOT_STAR] = ACTIONS(4771), + [anon_sym_DASH_GT] = ACTIONS(4771), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4763), + [anon_sym_decltype] = ACTIONS(4763), + }, + [2278] = { + [sym_identifier] = ACTIONS(5888), + [aux_sym_preproc_def_token1] = ACTIONS(5888), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5890), + [aux_sym_preproc_if_token1] = ACTIONS(5888), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5888), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5888), + [sym_preproc_directive] = ACTIONS(5888), + [anon_sym_LPAREN2] = ACTIONS(5890), + [anon_sym_TILDE] = ACTIONS(5890), + [anon_sym_STAR] = ACTIONS(5890), + [anon_sym_AMP_AMP] = ACTIONS(5890), + [anon_sym_AMP] = ACTIONS(5888), + [anon_sym___extension__] = ACTIONS(5888), + [anon_sym_typedef] = ACTIONS(5888), + [anon_sym_extern] = ACTIONS(5888), + [anon_sym___attribute__] = ACTIONS(5888), + [anon_sym_COLON_COLON] = ACTIONS(5890), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5890), + [anon_sym___declspec] = ACTIONS(5888), + [anon_sym___based] = ACTIONS(5888), + [anon_sym_RBRACE] = ACTIONS(5890), + [anon_sym_signed] = ACTIONS(5888), + [anon_sym_unsigned] = ACTIONS(5888), + [anon_sym_long] = ACTIONS(5888), + [anon_sym_short] = ACTIONS(5888), + [anon_sym_LBRACK] = ACTIONS(5888), + [anon_sym_static] = ACTIONS(5888), + [anon_sym_register] = ACTIONS(5888), + [anon_sym_inline] = ACTIONS(5888), + [anon_sym___inline] = ACTIONS(5888), + [anon_sym___inline__] = ACTIONS(5888), + [anon_sym___forceinline] = ACTIONS(5888), + [anon_sym_thread_local] = ACTIONS(5888), + [anon_sym___thread] = ACTIONS(5888), + [anon_sym_const] = ACTIONS(5888), + [anon_sym_constexpr] = ACTIONS(5888), + [anon_sym_volatile] = ACTIONS(5888), + [anon_sym_restrict] = ACTIONS(5888), + [anon_sym___restrict__] = ACTIONS(5888), + [anon_sym__Atomic] = ACTIONS(5888), + [anon_sym__Noreturn] = ACTIONS(5888), + [anon_sym_noreturn] = ACTIONS(5888), + [anon_sym_mutable] = ACTIONS(5888), + [anon_sym_constinit] = ACTIONS(5888), + [anon_sym_consteval] = ACTIONS(5888), + [sym_primitive_type] = ACTIONS(5888), + [anon_sym_enum] = ACTIONS(5888), + [anon_sym_class] = ACTIONS(5888), + [anon_sym_struct] = ACTIONS(5888), + [anon_sym_union] = ACTIONS(5888), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5888), + [anon_sym_decltype] = ACTIONS(5888), + [anon_sym_virtual] = ACTIONS(5888), + [anon_sym_alignas] = ACTIONS(5888), + [anon_sym_explicit] = ACTIONS(5888), + [anon_sym_typename] = ACTIONS(5888), + [anon_sym_template] = ACTIONS(5888), + [anon_sym_operator] = ACTIONS(5888), + [anon_sym_friend] = ACTIONS(5888), + [anon_sym_public] = ACTIONS(5888), + [anon_sym_private] = ACTIONS(5888), + [anon_sym_protected] = ACTIONS(5888), + [anon_sym_using] = ACTIONS(5888), + [anon_sym_static_assert] = ACTIONS(5888), + [sym_semgrep_metavar] = ACTIONS(5890), + }, + [2279] = { + [sym_identifier] = ACTIONS(3541), + [aux_sym_preproc_def_token1] = ACTIONS(3541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3543), + [aux_sym_preproc_if_token1] = ACTIONS(3541), + [aux_sym_preproc_if_token2] = ACTIONS(3541), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3541), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3541), + [sym_preproc_directive] = ACTIONS(3541), + [anon_sym_LPAREN2] = ACTIONS(3543), + [anon_sym_TILDE] = ACTIONS(3543), + [anon_sym_STAR] = ACTIONS(3543), + [anon_sym_AMP_AMP] = ACTIONS(3543), + [anon_sym_AMP] = ACTIONS(3541), + [anon_sym___extension__] = ACTIONS(3541), + [anon_sym_typedef] = ACTIONS(3541), + [anon_sym_extern] = ACTIONS(3541), + [anon_sym___attribute__] = ACTIONS(3541), + [anon_sym_COLON_COLON] = ACTIONS(3543), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3543), + [anon_sym___declspec] = ACTIONS(3541), + [anon_sym___based] = ACTIONS(3541), + [anon_sym_signed] = ACTIONS(3541), + [anon_sym_unsigned] = ACTIONS(3541), + [anon_sym_long] = ACTIONS(3541), + [anon_sym_short] = ACTIONS(3541), + [anon_sym_LBRACK] = ACTIONS(3541), + [anon_sym_static] = ACTIONS(3541), + [anon_sym_register] = ACTIONS(3541), + [anon_sym_inline] = ACTIONS(3541), + [anon_sym___inline] = ACTIONS(3541), + [anon_sym___inline__] = ACTIONS(3541), + [anon_sym___forceinline] = ACTIONS(3541), + [anon_sym_thread_local] = ACTIONS(3541), + [anon_sym___thread] = ACTIONS(3541), + [anon_sym_const] = ACTIONS(3541), + [anon_sym_constexpr] = ACTIONS(3541), + [anon_sym_volatile] = ACTIONS(3541), + [anon_sym_restrict] = ACTIONS(3541), + [anon_sym___restrict__] = ACTIONS(3541), + [anon_sym__Atomic] = ACTIONS(3541), + [anon_sym__Noreturn] = ACTIONS(3541), + [anon_sym_noreturn] = ACTIONS(3541), + [anon_sym_mutable] = ACTIONS(3541), + [anon_sym_constinit] = ACTIONS(3541), + [anon_sym_consteval] = ACTIONS(3541), + [sym_primitive_type] = ACTIONS(3541), + [anon_sym_enum] = ACTIONS(3541), + [anon_sym_class] = ACTIONS(3541), + [anon_sym_struct] = ACTIONS(3541), + [anon_sym_union] = ACTIONS(3541), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3541), + [anon_sym_decltype] = ACTIONS(3541), + [anon_sym_virtual] = ACTIONS(3541), + [anon_sym_alignas] = ACTIONS(3541), + [anon_sym_explicit] = ACTIONS(3541), + [anon_sym_typename] = ACTIONS(3541), + [anon_sym_template] = ACTIONS(3541), + [anon_sym_operator] = ACTIONS(3541), + [anon_sym_friend] = ACTIONS(3541), + [anon_sym_public] = ACTIONS(3541), + [anon_sym_private] = ACTIONS(3541), + [anon_sym_protected] = ACTIONS(3541), + [anon_sym_using] = ACTIONS(3541), + [anon_sym_static_assert] = ACTIONS(3541), + [sym_semgrep_metavar] = ACTIONS(3543), + }, + [2280] = { + [sym_identifier] = ACTIONS(3545), + [aux_sym_preproc_def_token1] = ACTIONS(3545), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3547), + [aux_sym_preproc_if_token1] = ACTIONS(3545), + [aux_sym_preproc_if_token2] = ACTIONS(3545), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3545), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3545), + [sym_preproc_directive] = ACTIONS(3545), + [anon_sym_LPAREN2] = ACTIONS(3547), + [anon_sym_TILDE] = ACTIONS(3547), + [anon_sym_STAR] = ACTIONS(3547), + [anon_sym_AMP_AMP] = ACTIONS(3547), + [anon_sym_AMP] = ACTIONS(3545), + [anon_sym___extension__] = ACTIONS(3545), + [anon_sym_typedef] = ACTIONS(3545), + [anon_sym_extern] = ACTIONS(3545), + [anon_sym___attribute__] = ACTIONS(3545), + [anon_sym_COLON_COLON] = ACTIONS(3547), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3547), + [anon_sym___declspec] = ACTIONS(3545), + [anon_sym___based] = ACTIONS(3545), + [anon_sym_signed] = ACTIONS(3545), + [anon_sym_unsigned] = ACTIONS(3545), + [anon_sym_long] = ACTIONS(3545), + [anon_sym_short] = ACTIONS(3545), + [anon_sym_LBRACK] = ACTIONS(3545), + [anon_sym_static] = ACTIONS(3545), + [anon_sym_register] = ACTIONS(3545), + [anon_sym_inline] = ACTIONS(3545), + [anon_sym___inline] = ACTIONS(3545), + [anon_sym___inline__] = ACTIONS(3545), + [anon_sym___forceinline] = ACTIONS(3545), + [anon_sym_thread_local] = ACTIONS(3545), + [anon_sym___thread] = ACTIONS(3545), + [anon_sym_const] = ACTIONS(3545), + [anon_sym_constexpr] = ACTIONS(3545), + [anon_sym_volatile] = ACTIONS(3545), + [anon_sym_restrict] = ACTIONS(3545), + [anon_sym___restrict__] = ACTIONS(3545), + [anon_sym__Atomic] = ACTIONS(3545), + [anon_sym__Noreturn] = ACTIONS(3545), + [anon_sym_noreturn] = ACTIONS(3545), + [anon_sym_mutable] = ACTIONS(3545), + [anon_sym_constinit] = ACTIONS(3545), + [anon_sym_consteval] = ACTIONS(3545), + [sym_primitive_type] = ACTIONS(3545), + [anon_sym_enum] = ACTIONS(3545), + [anon_sym_class] = ACTIONS(3545), + [anon_sym_struct] = ACTIONS(3545), + [anon_sym_union] = ACTIONS(3545), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3545), + [anon_sym_decltype] = ACTIONS(3545), + [anon_sym_virtual] = ACTIONS(3545), + [anon_sym_alignas] = ACTIONS(3545), + [anon_sym_explicit] = ACTIONS(3545), + [anon_sym_typename] = ACTIONS(3545), + [anon_sym_template] = ACTIONS(3545), + [anon_sym_operator] = ACTIONS(3545), + [anon_sym_friend] = ACTIONS(3545), + [anon_sym_public] = ACTIONS(3545), + [anon_sym_private] = ACTIONS(3545), + [anon_sym_protected] = ACTIONS(3545), + [anon_sym_using] = ACTIONS(3545), + [anon_sym_static_assert] = ACTIONS(3545), + [sym_semgrep_metavar] = ACTIONS(3547), + }, + [2281] = { + [sym_identifier] = ACTIONS(3551), + [aux_sym_preproc_def_token1] = ACTIONS(3551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3553), + [aux_sym_preproc_if_token1] = ACTIONS(3551), + [aux_sym_preproc_if_token2] = ACTIONS(3551), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3551), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3551), + [sym_preproc_directive] = ACTIONS(3551), + [anon_sym_LPAREN2] = ACTIONS(3553), + [anon_sym_TILDE] = ACTIONS(3553), + [anon_sym_STAR] = ACTIONS(3553), + [anon_sym_AMP_AMP] = ACTIONS(3553), + [anon_sym_AMP] = ACTIONS(3551), + [anon_sym___extension__] = ACTIONS(3551), + [anon_sym_typedef] = ACTIONS(3551), + [anon_sym_extern] = ACTIONS(3551), + [anon_sym___attribute__] = ACTIONS(3551), + [anon_sym_COLON_COLON] = ACTIONS(3553), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3553), + [anon_sym___declspec] = ACTIONS(3551), + [anon_sym___based] = ACTIONS(3551), + [anon_sym_signed] = ACTIONS(3551), + [anon_sym_unsigned] = ACTIONS(3551), + [anon_sym_long] = ACTIONS(3551), + [anon_sym_short] = ACTIONS(3551), + [anon_sym_LBRACK] = ACTIONS(3551), + [anon_sym_static] = ACTIONS(3551), + [anon_sym_register] = ACTIONS(3551), + [anon_sym_inline] = ACTIONS(3551), + [anon_sym___inline] = ACTIONS(3551), + [anon_sym___inline__] = ACTIONS(3551), + [anon_sym___forceinline] = ACTIONS(3551), + [anon_sym_thread_local] = ACTIONS(3551), + [anon_sym___thread] = ACTIONS(3551), + [anon_sym_const] = ACTIONS(3551), + [anon_sym_constexpr] = ACTIONS(3551), + [anon_sym_volatile] = ACTIONS(3551), + [anon_sym_restrict] = ACTIONS(3551), + [anon_sym___restrict__] = ACTIONS(3551), + [anon_sym__Atomic] = ACTIONS(3551), + [anon_sym__Noreturn] = ACTIONS(3551), + [anon_sym_noreturn] = ACTIONS(3551), + [anon_sym_mutable] = ACTIONS(3551), + [anon_sym_constinit] = ACTIONS(3551), + [anon_sym_consteval] = ACTIONS(3551), + [sym_primitive_type] = ACTIONS(3551), + [anon_sym_enum] = ACTIONS(3551), + [anon_sym_class] = ACTIONS(3551), + [anon_sym_struct] = ACTIONS(3551), + [anon_sym_union] = ACTIONS(3551), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3551), + [anon_sym_decltype] = ACTIONS(3551), + [anon_sym_virtual] = ACTIONS(3551), + [anon_sym_alignas] = ACTIONS(3551), + [anon_sym_explicit] = ACTIONS(3551), + [anon_sym_typename] = ACTIONS(3551), + [anon_sym_template] = ACTIONS(3551), + [anon_sym_operator] = ACTIONS(3551), + [anon_sym_friend] = ACTIONS(3551), + [anon_sym_public] = ACTIONS(3551), + [anon_sym_private] = ACTIONS(3551), + [anon_sym_protected] = ACTIONS(3551), + [anon_sym_using] = ACTIONS(3551), + [anon_sym_static_assert] = ACTIONS(3551), + [sym_semgrep_metavar] = ACTIONS(3553), + }, + [2282] = { + [sym_identifier] = ACTIONS(3294), + [aux_sym_preproc_def_token1] = ACTIONS(3294), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3296), + [aux_sym_preproc_if_token1] = ACTIONS(3294), + [aux_sym_preproc_if_token2] = ACTIONS(3294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3294), + [sym_preproc_directive] = ACTIONS(3294), + [anon_sym_LPAREN2] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_AMP] = ACTIONS(3294), + [anon_sym___extension__] = ACTIONS(3294), + [anon_sym_typedef] = ACTIONS(3294), + [anon_sym_extern] = ACTIONS(3294), + [anon_sym___attribute__] = ACTIONS(3294), + [anon_sym_COLON_COLON] = ACTIONS(3296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3296), + [anon_sym___declspec] = ACTIONS(3294), + [anon_sym___based] = ACTIONS(3294), + [anon_sym_signed] = ACTIONS(3294), + [anon_sym_unsigned] = ACTIONS(3294), + [anon_sym_long] = ACTIONS(3294), + [anon_sym_short] = ACTIONS(3294), + [anon_sym_LBRACK] = ACTIONS(3294), + [anon_sym_static] = ACTIONS(3294), + [anon_sym_register] = ACTIONS(3294), + [anon_sym_inline] = ACTIONS(3294), + [anon_sym___inline] = ACTIONS(3294), + [anon_sym___inline__] = ACTIONS(3294), + [anon_sym___forceinline] = ACTIONS(3294), + [anon_sym_thread_local] = ACTIONS(3294), + [anon_sym___thread] = ACTIONS(3294), + [anon_sym_const] = ACTIONS(3294), + [anon_sym_constexpr] = ACTIONS(3294), + [anon_sym_volatile] = ACTIONS(3294), + [anon_sym_restrict] = ACTIONS(3294), + [anon_sym___restrict__] = ACTIONS(3294), + [anon_sym__Atomic] = ACTIONS(3294), + [anon_sym__Noreturn] = ACTIONS(3294), + [anon_sym_noreturn] = ACTIONS(3294), + [anon_sym_mutable] = ACTIONS(3294), + [anon_sym_constinit] = ACTIONS(3294), + [anon_sym_consteval] = ACTIONS(3294), + [sym_primitive_type] = ACTIONS(3294), + [anon_sym_enum] = ACTIONS(3294), + [anon_sym_class] = ACTIONS(3294), + [anon_sym_struct] = ACTIONS(3294), + [anon_sym_union] = ACTIONS(3294), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3294), + [anon_sym_decltype] = ACTIONS(3294), + [anon_sym_virtual] = ACTIONS(3294), + [anon_sym_alignas] = ACTIONS(3294), + [anon_sym_explicit] = ACTIONS(3294), + [anon_sym_typename] = ACTIONS(3294), + [anon_sym_template] = ACTIONS(3294), + [anon_sym_operator] = ACTIONS(3294), + [anon_sym_friend] = ACTIONS(3294), + [anon_sym_public] = ACTIONS(3294), + [anon_sym_private] = ACTIONS(3294), + [anon_sym_protected] = ACTIONS(3294), + [anon_sym_using] = ACTIONS(3294), + [anon_sym_static_assert] = ACTIONS(3294), + [sym_semgrep_metavar] = ACTIONS(3296), + }, + [2283] = { + [ts_builtin_sym_end] = ACTIONS(6214), + [sym_identifier] = ACTIONS(6216), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6214), + [anon_sym_COMMA] = ACTIONS(6214), + [anon_sym_RPAREN] = ACTIONS(6214), + [aux_sym_preproc_if_token2] = ACTIONS(6214), + [aux_sym_preproc_else_token1] = ACTIONS(6214), + [aux_sym_preproc_elif_token1] = ACTIONS(6216), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6214), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6214), + [anon_sym_LPAREN2] = ACTIONS(6214), + [anon_sym_DASH] = ACTIONS(6216), + [anon_sym_PLUS] = ACTIONS(6216), + [anon_sym_STAR] = ACTIONS(6216), + [anon_sym_SLASH] = ACTIONS(6216), + [anon_sym_PERCENT] = ACTIONS(6216), + [anon_sym_PIPE_PIPE] = ACTIONS(6214), + [anon_sym_AMP_AMP] = ACTIONS(6214), + [anon_sym_PIPE] = ACTIONS(6216), + [anon_sym_CARET] = ACTIONS(6216), + [anon_sym_AMP] = ACTIONS(6216), + [anon_sym_EQ_EQ] = ACTIONS(6214), + [anon_sym_BANG_EQ] = ACTIONS(6214), + [anon_sym_GT] = ACTIONS(6216), + [anon_sym_GT_EQ] = ACTIONS(6214), + [anon_sym_LT_EQ] = ACTIONS(6216), + [anon_sym_LT] = ACTIONS(6216), + [anon_sym_LT_LT] = ACTIONS(6216), + [anon_sym_GT_GT] = ACTIONS(6216), + [anon_sym_SEMI] = ACTIONS(6214), + [anon_sym___attribute__] = ACTIONS(6216), + [anon_sym_LBRACE] = ACTIONS(6214), + [anon_sym_RBRACE] = ACTIONS(6214), + [anon_sym_LBRACK] = ACTIONS(6214), + [anon_sym_RBRACK] = ACTIONS(6214), + [anon_sym_EQ] = ACTIONS(6216), + [anon_sym_COLON] = ACTIONS(6214), + [anon_sym_QMARK] = ACTIONS(6214), + [anon_sym_STAR_EQ] = ACTIONS(6214), + [anon_sym_SLASH_EQ] = ACTIONS(6214), + [anon_sym_PERCENT_EQ] = ACTIONS(6214), + [anon_sym_PLUS_EQ] = ACTIONS(6214), + [anon_sym_DASH_EQ] = ACTIONS(6214), + [anon_sym_LT_LT_EQ] = ACTIONS(6214), + [anon_sym_GT_GT_EQ] = ACTIONS(6214), + [anon_sym_AMP_EQ] = ACTIONS(6214), + [anon_sym_CARET_EQ] = ACTIONS(6214), + [anon_sym_PIPE_EQ] = ACTIONS(6214), + [anon_sym_and_eq] = ACTIONS(6216), + [anon_sym_or_eq] = ACTIONS(6216), + [anon_sym_xor_eq] = ACTIONS(6216), + [anon_sym_LT_EQ_GT] = ACTIONS(6214), + [anon_sym_or] = ACTIONS(6216), + [anon_sym_and] = ACTIONS(6216), + [anon_sym_bitor] = ACTIONS(6216), + [anon_sym_xor] = ACTIONS(6216), + [anon_sym_bitand] = ACTIONS(6216), + [anon_sym_not_eq] = ACTIONS(6216), + [anon_sym_DASH_DASH] = ACTIONS(6214), + [anon_sym_PLUS_PLUS] = ACTIONS(6214), + [anon_sym_DOT] = ACTIONS(6216), + [anon_sym_DOT_STAR] = ACTIONS(6214), + [anon_sym_DASH_GT] = ACTIONS(6214), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6216), + [anon_sym_decltype] = ACTIONS(6216), + }, + [2284] = { + [ts_builtin_sym_end] = ACTIONS(6218), + [sym_identifier] = ACTIONS(6220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6218), + [anon_sym_COMMA] = ACTIONS(6218), + [anon_sym_RPAREN] = ACTIONS(6218), + [aux_sym_preproc_if_token2] = ACTIONS(6218), + [aux_sym_preproc_else_token1] = ACTIONS(6218), + [aux_sym_preproc_elif_token1] = ACTIONS(6220), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6218), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6218), + [anon_sym_LPAREN2] = ACTIONS(6218), + [anon_sym_DASH] = ACTIONS(6220), + [anon_sym_PLUS] = ACTIONS(6220), + [anon_sym_STAR] = ACTIONS(6220), + [anon_sym_SLASH] = ACTIONS(6220), + [anon_sym_PERCENT] = ACTIONS(6220), + [anon_sym_PIPE_PIPE] = ACTIONS(6218), + [anon_sym_AMP_AMP] = ACTIONS(6218), + [anon_sym_PIPE] = ACTIONS(6220), + [anon_sym_CARET] = ACTIONS(6220), + [anon_sym_AMP] = ACTIONS(6220), + [anon_sym_EQ_EQ] = ACTIONS(6218), + [anon_sym_BANG_EQ] = ACTIONS(6218), + [anon_sym_GT] = ACTIONS(6220), + [anon_sym_GT_EQ] = ACTIONS(6218), + [anon_sym_LT_EQ] = ACTIONS(6220), + [anon_sym_LT] = ACTIONS(6220), + [anon_sym_LT_LT] = ACTIONS(6220), + [anon_sym_GT_GT] = ACTIONS(6220), + [anon_sym_SEMI] = ACTIONS(6218), + [anon_sym___attribute__] = ACTIONS(6220), + [anon_sym_LBRACE] = ACTIONS(6218), + [anon_sym_RBRACE] = ACTIONS(6218), + [anon_sym_LBRACK] = ACTIONS(6218), + [anon_sym_RBRACK] = ACTIONS(6218), + [anon_sym_EQ] = ACTIONS(6220), + [anon_sym_COLON] = ACTIONS(6218), + [anon_sym_QMARK] = ACTIONS(6218), + [anon_sym_STAR_EQ] = ACTIONS(6218), + [anon_sym_SLASH_EQ] = ACTIONS(6218), + [anon_sym_PERCENT_EQ] = ACTIONS(6218), + [anon_sym_PLUS_EQ] = ACTIONS(6218), + [anon_sym_DASH_EQ] = ACTIONS(6218), + [anon_sym_LT_LT_EQ] = ACTIONS(6218), + [anon_sym_GT_GT_EQ] = ACTIONS(6218), + [anon_sym_AMP_EQ] = ACTIONS(6218), + [anon_sym_CARET_EQ] = ACTIONS(6218), + [anon_sym_PIPE_EQ] = ACTIONS(6218), + [anon_sym_and_eq] = ACTIONS(6220), + [anon_sym_or_eq] = ACTIONS(6220), + [anon_sym_xor_eq] = ACTIONS(6220), + [anon_sym_LT_EQ_GT] = ACTIONS(6218), + [anon_sym_or] = ACTIONS(6220), + [anon_sym_and] = ACTIONS(6220), + [anon_sym_bitor] = ACTIONS(6220), + [anon_sym_xor] = ACTIONS(6220), + [anon_sym_bitand] = ACTIONS(6220), + [anon_sym_not_eq] = ACTIONS(6220), + [anon_sym_DASH_DASH] = ACTIONS(6218), + [anon_sym_PLUS_PLUS] = ACTIONS(6218), + [anon_sym_DOT] = ACTIONS(6220), + [anon_sym_DOT_STAR] = ACTIONS(6218), + [anon_sym_DASH_GT] = ACTIONS(6218), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6220), + [anon_sym_decltype] = ACTIONS(6220), + }, + [2285] = { + [sym_identifier] = ACTIONS(3302), + [aux_sym_preproc_def_token1] = ACTIONS(3302), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3304), + [aux_sym_preproc_if_token1] = ACTIONS(3302), + [aux_sym_preproc_if_token2] = ACTIONS(3302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3302), + [sym_preproc_directive] = ACTIONS(3302), + [anon_sym_LPAREN2] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3304), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_AMP_AMP] = ACTIONS(3304), + [anon_sym_AMP] = ACTIONS(3302), + [anon_sym___extension__] = ACTIONS(3302), + [anon_sym_typedef] = ACTIONS(3302), + [anon_sym_extern] = ACTIONS(3302), + [anon_sym___attribute__] = ACTIONS(3302), + [anon_sym_COLON_COLON] = ACTIONS(3304), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3304), + [anon_sym___declspec] = ACTIONS(3302), + [anon_sym___based] = ACTIONS(3302), + [anon_sym_signed] = ACTIONS(3302), + [anon_sym_unsigned] = ACTIONS(3302), + [anon_sym_long] = ACTIONS(3302), + [anon_sym_short] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_register] = ACTIONS(3302), + [anon_sym_inline] = ACTIONS(3302), + [anon_sym___inline] = ACTIONS(3302), + [anon_sym___inline__] = ACTIONS(3302), + [anon_sym___forceinline] = ACTIONS(3302), + [anon_sym_thread_local] = ACTIONS(3302), + [anon_sym___thread] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_constexpr] = ACTIONS(3302), + [anon_sym_volatile] = ACTIONS(3302), + [anon_sym_restrict] = ACTIONS(3302), + [anon_sym___restrict__] = ACTIONS(3302), + [anon_sym__Atomic] = ACTIONS(3302), + [anon_sym__Noreturn] = ACTIONS(3302), + [anon_sym_noreturn] = ACTIONS(3302), + [anon_sym_mutable] = ACTIONS(3302), + [anon_sym_constinit] = ACTIONS(3302), + [anon_sym_consteval] = ACTIONS(3302), + [sym_primitive_type] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_struct] = ACTIONS(3302), + [anon_sym_union] = ACTIONS(3302), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3302), + [anon_sym_decltype] = ACTIONS(3302), + [anon_sym_virtual] = ACTIONS(3302), + [anon_sym_alignas] = ACTIONS(3302), + [anon_sym_explicit] = ACTIONS(3302), + [anon_sym_typename] = ACTIONS(3302), + [anon_sym_template] = ACTIONS(3302), + [anon_sym_operator] = ACTIONS(3302), + [anon_sym_friend] = ACTIONS(3302), + [anon_sym_public] = ACTIONS(3302), + [anon_sym_private] = ACTIONS(3302), + [anon_sym_protected] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_static_assert] = ACTIONS(3302), + [sym_semgrep_metavar] = ACTIONS(3304), + }, + [2286] = { + [ts_builtin_sym_end] = ACTIONS(6222), + [sym_identifier] = ACTIONS(6224), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6222), + [anon_sym_COMMA] = ACTIONS(6222), + [anon_sym_RPAREN] = ACTIONS(6222), + [aux_sym_preproc_if_token2] = ACTIONS(6222), + [aux_sym_preproc_else_token1] = ACTIONS(6222), + [aux_sym_preproc_elif_token1] = ACTIONS(6224), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6222), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6222), + [anon_sym_LPAREN2] = ACTIONS(6222), + [anon_sym_DASH] = ACTIONS(6224), + [anon_sym_PLUS] = ACTIONS(6224), + [anon_sym_STAR] = ACTIONS(6224), + [anon_sym_SLASH] = ACTIONS(6224), + [anon_sym_PERCENT] = ACTIONS(6224), + [anon_sym_PIPE_PIPE] = ACTIONS(6222), + [anon_sym_AMP_AMP] = ACTIONS(6222), + [anon_sym_PIPE] = ACTIONS(6224), + [anon_sym_CARET] = ACTIONS(6224), + [anon_sym_AMP] = ACTIONS(6224), + [anon_sym_EQ_EQ] = ACTIONS(6222), + [anon_sym_BANG_EQ] = ACTIONS(6222), + [anon_sym_GT] = ACTIONS(6224), + [anon_sym_GT_EQ] = ACTIONS(6222), + [anon_sym_LT_EQ] = ACTIONS(6224), + [anon_sym_LT] = ACTIONS(6224), + [anon_sym_LT_LT] = ACTIONS(6224), + [anon_sym_GT_GT] = ACTIONS(6224), + [anon_sym_SEMI] = ACTIONS(6222), + [anon_sym___attribute__] = ACTIONS(6224), + [anon_sym_LBRACE] = ACTIONS(6222), + [anon_sym_RBRACE] = ACTIONS(6222), + [anon_sym_LBRACK] = ACTIONS(6222), + [anon_sym_RBRACK] = ACTIONS(6222), + [anon_sym_EQ] = ACTIONS(6224), + [anon_sym_COLON] = ACTIONS(6222), + [anon_sym_QMARK] = ACTIONS(6222), + [anon_sym_STAR_EQ] = ACTIONS(6222), + [anon_sym_SLASH_EQ] = ACTIONS(6222), + [anon_sym_PERCENT_EQ] = ACTIONS(6222), + [anon_sym_PLUS_EQ] = ACTIONS(6222), + [anon_sym_DASH_EQ] = ACTIONS(6222), + [anon_sym_LT_LT_EQ] = ACTIONS(6222), + [anon_sym_GT_GT_EQ] = ACTIONS(6222), + [anon_sym_AMP_EQ] = ACTIONS(6222), + [anon_sym_CARET_EQ] = ACTIONS(6222), + [anon_sym_PIPE_EQ] = ACTIONS(6222), + [anon_sym_and_eq] = ACTIONS(6224), + [anon_sym_or_eq] = ACTIONS(6224), + [anon_sym_xor_eq] = ACTIONS(6224), + [anon_sym_LT_EQ_GT] = ACTIONS(6222), + [anon_sym_or] = ACTIONS(6224), + [anon_sym_and] = ACTIONS(6224), + [anon_sym_bitor] = ACTIONS(6224), + [anon_sym_xor] = ACTIONS(6224), + [anon_sym_bitand] = ACTIONS(6224), + [anon_sym_not_eq] = ACTIONS(6224), + [anon_sym_DASH_DASH] = ACTIONS(6222), + [anon_sym_PLUS_PLUS] = ACTIONS(6222), + [anon_sym_DOT] = ACTIONS(6224), + [anon_sym_DOT_STAR] = ACTIONS(6222), + [anon_sym_DASH_GT] = ACTIONS(6222), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6224), + [anon_sym_decltype] = ACTIONS(6224), + }, + [2287] = { + [ts_builtin_sym_end] = ACTIONS(6226), + [sym_identifier] = ACTIONS(6228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6226), + [anon_sym_COMMA] = ACTIONS(6226), + [anon_sym_RPAREN] = ACTIONS(6226), + [aux_sym_preproc_if_token2] = ACTIONS(6226), + [aux_sym_preproc_else_token1] = ACTIONS(6226), + [aux_sym_preproc_elif_token1] = ACTIONS(6228), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6226), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6226), + [anon_sym_LPAREN2] = ACTIONS(6226), + [anon_sym_DASH] = ACTIONS(6228), + [anon_sym_PLUS] = ACTIONS(6228), + [anon_sym_STAR] = ACTIONS(6228), + [anon_sym_SLASH] = ACTIONS(6228), + [anon_sym_PERCENT] = ACTIONS(6228), + [anon_sym_PIPE_PIPE] = ACTIONS(6226), + [anon_sym_AMP_AMP] = ACTIONS(6226), + [anon_sym_PIPE] = ACTIONS(6228), + [anon_sym_CARET] = ACTIONS(6228), + [anon_sym_AMP] = ACTIONS(6228), + [anon_sym_EQ_EQ] = ACTIONS(6226), + [anon_sym_BANG_EQ] = ACTIONS(6226), + [anon_sym_GT] = ACTIONS(6228), + [anon_sym_GT_EQ] = ACTIONS(6226), + [anon_sym_LT_EQ] = ACTIONS(6228), + [anon_sym_LT] = ACTIONS(6228), + [anon_sym_LT_LT] = ACTIONS(6228), + [anon_sym_GT_GT] = ACTIONS(6228), + [anon_sym_SEMI] = ACTIONS(6226), + [anon_sym___attribute__] = ACTIONS(6228), + [anon_sym_LBRACE] = ACTIONS(6226), + [anon_sym_RBRACE] = ACTIONS(6226), + [anon_sym_LBRACK] = ACTIONS(6226), + [anon_sym_RBRACK] = ACTIONS(6226), + [anon_sym_EQ] = ACTIONS(6228), + [anon_sym_COLON] = ACTIONS(6226), + [anon_sym_QMARK] = ACTIONS(6226), + [anon_sym_STAR_EQ] = ACTIONS(6226), + [anon_sym_SLASH_EQ] = ACTIONS(6226), + [anon_sym_PERCENT_EQ] = ACTIONS(6226), + [anon_sym_PLUS_EQ] = ACTIONS(6226), + [anon_sym_DASH_EQ] = ACTIONS(6226), + [anon_sym_LT_LT_EQ] = ACTIONS(6226), + [anon_sym_GT_GT_EQ] = ACTIONS(6226), + [anon_sym_AMP_EQ] = ACTIONS(6226), + [anon_sym_CARET_EQ] = ACTIONS(6226), + [anon_sym_PIPE_EQ] = ACTIONS(6226), + [anon_sym_and_eq] = ACTIONS(6228), + [anon_sym_or_eq] = ACTIONS(6228), + [anon_sym_xor_eq] = ACTIONS(6228), + [anon_sym_LT_EQ_GT] = ACTIONS(6226), + [anon_sym_or] = ACTIONS(6228), + [anon_sym_and] = ACTIONS(6228), + [anon_sym_bitor] = ACTIONS(6228), + [anon_sym_xor] = ACTIONS(6228), + [anon_sym_bitand] = ACTIONS(6228), + [anon_sym_not_eq] = ACTIONS(6228), + [anon_sym_DASH_DASH] = ACTIONS(6226), + [anon_sym_PLUS_PLUS] = ACTIONS(6226), + [anon_sym_DOT] = ACTIONS(6228), + [anon_sym_DOT_STAR] = ACTIONS(6226), + [anon_sym_DASH_GT] = ACTIONS(6226), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6228), + [anon_sym_decltype] = ACTIONS(6228), + }, + [2288] = { + [sym_identifier] = ACTIONS(3302), + [aux_sym_preproc_def_token1] = ACTIONS(3302), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3304), + [aux_sym_preproc_if_token1] = ACTIONS(3302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3302), + [sym_preproc_directive] = ACTIONS(3302), + [anon_sym_LPAREN2] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3304), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_AMP_AMP] = ACTIONS(3304), + [anon_sym_AMP] = ACTIONS(3302), + [anon_sym___extension__] = ACTIONS(3302), + [anon_sym_typedef] = ACTIONS(3302), + [anon_sym_extern] = ACTIONS(3302), + [anon_sym___attribute__] = ACTIONS(3302), + [anon_sym_COLON_COLON] = ACTIONS(3304), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3304), + [anon_sym___declspec] = ACTIONS(3302), + [anon_sym___based] = ACTIONS(3302), + [anon_sym_RBRACE] = ACTIONS(3304), + [anon_sym_signed] = ACTIONS(3302), + [anon_sym_unsigned] = ACTIONS(3302), + [anon_sym_long] = ACTIONS(3302), + [anon_sym_short] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_register] = ACTIONS(3302), + [anon_sym_inline] = ACTIONS(3302), + [anon_sym___inline] = ACTIONS(3302), + [anon_sym___inline__] = ACTIONS(3302), + [anon_sym___forceinline] = ACTIONS(3302), + [anon_sym_thread_local] = ACTIONS(3302), + [anon_sym___thread] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_constexpr] = ACTIONS(3302), + [anon_sym_volatile] = ACTIONS(3302), + [anon_sym_restrict] = ACTIONS(3302), + [anon_sym___restrict__] = ACTIONS(3302), + [anon_sym__Atomic] = ACTIONS(3302), + [anon_sym__Noreturn] = ACTIONS(3302), + [anon_sym_noreturn] = ACTIONS(3302), + [anon_sym_mutable] = ACTIONS(3302), + [anon_sym_constinit] = ACTIONS(3302), + [anon_sym_consteval] = ACTIONS(3302), + [sym_primitive_type] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_struct] = ACTIONS(3302), + [anon_sym_union] = ACTIONS(3302), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3302), + [anon_sym_decltype] = ACTIONS(3302), + [anon_sym_virtual] = ACTIONS(3302), + [anon_sym_alignas] = ACTIONS(3302), + [anon_sym_explicit] = ACTIONS(3302), + [anon_sym_typename] = ACTIONS(3302), + [anon_sym_template] = ACTIONS(3302), + [anon_sym_operator] = ACTIONS(3302), + [anon_sym_friend] = ACTIONS(3302), + [anon_sym_public] = ACTIONS(3302), + [anon_sym_private] = ACTIONS(3302), + [anon_sym_protected] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_static_assert] = ACTIONS(3302), + [sym_semgrep_metavar] = ACTIONS(3304), + }, + [2289] = { + [sym_identifier] = ACTIONS(5777), + [aux_sym_preproc_def_token1] = ACTIONS(5777), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5779), + [aux_sym_preproc_if_token1] = ACTIONS(5777), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5777), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5777), + [sym_preproc_directive] = ACTIONS(5777), + [anon_sym_LPAREN2] = ACTIONS(5779), + [anon_sym_TILDE] = ACTIONS(5779), + [anon_sym_STAR] = ACTIONS(5779), + [anon_sym_AMP_AMP] = ACTIONS(5779), + [anon_sym_AMP] = ACTIONS(5777), + [anon_sym___extension__] = ACTIONS(5777), + [anon_sym_typedef] = ACTIONS(5777), + [anon_sym_extern] = ACTIONS(5777), + [anon_sym___attribute__] = ACTIONS(5777), + [anon_sym_COLON_COLON] = ACTIONS(5779), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5779), + [anon_sym___declspec] = ACTIONS(5777), + [anon_sym___based] = ACTIONS(5777), + [anon_sym_RBRACE] = ACTIONS(5779), + [anon_sym_signed] = ACTIONS(5777), + [anon_sym_unsigned] = ACTIONS(5777), + [anon_sym_long] = ACTIONS(5777), + [anon_sym_short] = ACTIONS(5777), + [anon_sym_LBRACK] = ACTIONS(5777), + [anon_sym_static] = ACTIONS(5777), + [anon_sym_register] = ACTIONS(5777), + [anon_sym_inline] = ACTIONS(5777), + [anon_sym___inline] = ACTIONS(5777), + [anon_sym___inline__] = ACTIONS(5777), + [anon_sym___forceinline] = ACTIONS(5777), + [anon_sym_thread_local] = ACTIONS(5777), + [anon_sym___thread] = ACTIONS(5777), + [anon_sym_const] = ACTIONS(5777), + [anon_sym_constexpr] = ACTIONS(5777), + [anon_sym_volatile] = ACTIONS(5777), + [anon_sym_restrict] = ACTIONS(5777), + [anon_sym___restrict__] = ACTIONS(5777), + [anon_sym__Atomic] = ACTIONS(5777), + [anon_sym__Noreturn] = ACTIONS(5777), + [anon_sym_noreturn] = ACTIONS(5777), + [anon_sym_mutable] = ACTIONS(5777), + [anon_sym_constinit] = ACTIONS(5777), + [anon_sym_consteval] = ACTIONS(5777), + [sym_primitive_type] = ACTIONS(5777), + [anon_sym_enum] = ACTIONS(5777), + [anon_sym_class] = ACTIONS(5777), + [anon_sym_struct] = ACTIONS(5777), + [anon_sym_union] = ACTIONS(5777), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5777), + [anon_sym_decltype] = ACTIONS(5777), + [anon_sym_virtual] = ACTIONS(5777), + [anon_sym_alignas] = ACTIONS(5777), + [anon_sym_explicit] = ACTIONS(5777), + [anon_sym_typename] = ACTIONS(5777), + [anon_sym_template] = ACTIONS(5777), + [anon_sym_operator] = ACTIONS(5777), + [anon_sym_friend] = ACTIONS(5777), + [anon_sym_public] = ACTIONS(5777), + [anon_sym_private] = ACTIONS(5777), + [anon_sym_protected] = ACTIONS(5777), + [anon_sym_using] = ACTIONS(5777), + [anon_sym_static_assert] = ACTIONS(5777), + [sym_semgrep_metavar] = ACTIONS(5779), + }, + [2290] = { + [sym_identifier] = ACTIONS(3613), + [aux_sym_preproc_def_token1] = ACTIONS(3613), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3615), + [aux_sym_preproc_if_token1] = ACTIONS(3613), + [aux_sym_preproc_if_token2] = ACTIONS(3613), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3613), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3613), + [sym_preproc_directive] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_TILDE] = ACTIONS(3615), + [anon_sym_STAR] = ACTIONS(3615), + [anon_sym_AMP_AMP] = ACTIONS(3615), + [anon_sym_AMP] = ACTIONS(3613), + [anon_sym___extension__] = ACTIONS(3613), + [anon_sym_typedef] = ACTIONS(3613), + [anon_sym_extern] = ACTIONS(3613), + [anon_sym___attribute__] = ACTIONS(3613), + [anon_sym_COLON_COLON] = ACTIONS(3615), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3615), + [anon_sym___declspec] = ACTIONS(3613), + [anon_sym___based] = ACTIONS(3613), + [anon_sym_signed] = ACTIONS(3613), + [anon_sym_unsigned] = ACTIONS(3613), + [anon_sym_long] = ACTIONS(3613), + [anon_sym_short] = ACTIONS(3613), + [anon_sym_LBRACK] = ACTIONS(3613), + [anon_sym_static] = ACTIONS(3613), + [anon_sym_register] = ACTIONS(3613), + [anon_sym_inline] = ACTIONS(3613), + [anon_sym___inline] = ACTIONS(3613), + [anon_sym___inline__] = ACTIONS(3613), + [anon_sym___forceinline] = ACTIONS(3613), + [anon_sym_thread_local] = ACTIONS(3613), + [anon_sym___thread] = ACTIONS(3613), + [anon_sym_const] = ACTIONS(3613), + [anon_sym_constexpr] = ACTIONS(3613), + [anon_sym_volatile] = ACTIONS(3613), + [anon_sym_restrict] = ACTIONS(3613), + [anon_sym___restrict__] = ACTIONS(3613), + [anon_sym__Atomic] = ACTIONS(3613), + [anon_sym__Noreturn] = ACTIONS(3613), + [anon_sym_noreturn] = ACTIONS(3613), + [anon_sym_mutable] = ACTIONS(3613), + [anon_sym_constinit] = ACTIONS(3613), + [anon_sym_consteval] = ACTIONS(3613), + [sym_primitive_type] = ACTIONS(3613), + [anon_sym_enum] = ACTIONS(3613), + [anon_sym_class] = ACTIONS(3613), + [anon_sym_struct] = ACTIONS(3613), + [anon_sym_union] = ACTIONS(3613), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3613), + [anon_sym_decltype] = ACTIONS(3613), + [anon_sym_virtual] = ACTIONS(3613), + [anon_sym_alignas] = ACTIONS(3613), + [anon_sym_explicit] = ACTIONS(3613), + [anon_sym_typename] = ACTIONS(3613), + [anon_sym_template] = ACTIONS(3613), + [anon_sym_operator] = ACTIONS(3613), + [anon_sym_friend] = ACTIONS(3613), + [anon_sym_public] = ACTIONS(3613), + [anon_sym_private] = ACTIONS(3613), + [anon_sym_protected] = ACTIONS(3613), + [anon_sym_using] = ACTIONS(3613), + [anon_sym_static_assert] = ACTIONS(3613), + [sym_semgrep_metavar] = ACTIONS(3615), + }, + [2291] = { + [sym_identifier] = ACTIONS(5781), + [aux_sym_preproc_def_token1] = ACTIONS(5781), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5783), + [aux_sym_preproc_if_token1] = ACTIONS(5781), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5781), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5781), + [sym_preproc_directive] = ACTIONS(5781), + [anon_sym_LPAREN2] = ACTIONS(5783), + [anon_sym_TILDE] = ACTIONS(5783), + [anon_sym_STAR] = ACTIONS(5783), + [anon_sym_AMP_AMP] = ACTIONS(5783), + [anon_sym_AMP] = ACTIONS(5781), + [anon_sym___extension__] = ACTIONS(5781), + [anon_sym_typedef] = ACTIONS(5781), + [anon_sym_extern] = ACTIONS(5781), + [anon_sym___attribute__] = ACTIONS(5781), + [anon_sym_COLON_COLON] = ACTIONS(5783), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5783), + [anon_sym___declspec] = ACTIONS(5781), + [anon_sym___based] = ACTIONS(5781), + [anon_sym_RBRACE] = ACTIONS(5783), + [anon_sym_signed] = ACTIONS(5781), + [anon_sym_unsigned] = ACTIONS(5781), + [anon_sym_long] = ACTIONS(5781), + [anon_sym_short] = ACTIONS(5781), + [anon_sym_LBRACK] = ACTIONS(5781), + [anon_sym_static] = ACTIONS(5781), + [anon_sym_register] = ACTIONS(5781), + [anon_sym_inline] = ACTIONS(5781), + [anon_sym___inline] = ACTIONS(5781), + [anon_sym___inline__] = ACTIONS(5781), + [anon_sym___forceinline] = ACTIONS(5781), + [anon_sym_thread_local] = ACTIONS(5781), + [anon_sym___thread] = ACTIONS(5781), + [anon_sym_const] = ACTIONS(5781), + [anon_sym_constexpr] = ACTIONS(5781), + [anon_sym_volatile] = ACTIONS(5781), + [anon_sym_restrict] = ACTIONS(5781), + [anon_sym___restrict__] = ACTIONS(5781), + [anon_sym__Atomic] = ACTIONS(5781), + [anon_sym__Noreturn] = ACTIONS(5781), + [anon_sym_noreturn] = ACTIONS(5781), + [anon_sym_mutable] = ACTIONS(5781), + [anon_sym_constinit] = ACTIONS(5781), + [anon_sym_consteval] = ACTIONS(5781), + [sym_primitive_type] = ACTIONS(5781), + [anon_sym_enum] = ACTIONS(5781), + [anon_sym_class] = ACTIONS(5781), + [anon_sym_struct] = ACTIONS(5781), + [anon_sym_union] = ACTIONS(5781), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5781), + [anon_sym_decltype] = ACTIONS(5781), + [anon_sym_virtual] = ACTIONS(5781), + [anon_sym_alignas] = ACTIONS(5781), + [anon_sym_explicit] = ACTIONS(5781), + [anon_sym_typename] = ACTIONS(5781), + [anon_sym_template] = ACTIONS(5781), + [anon_sym_operator] = ACTIONS(5781), + [anon_sym_friend] = ACTIONS(5781), + [anon_sym_public] = ACTIONS(5781), + [anon_sym_private] = ACTIONS(5781), + [anon_sym_protected] = ACTIONS(5781), + [anon_sym_using] = ACTIONS(5781), + [anon_sym_static_assert] = ACTIONS(5781), + [sym_semgrep_metavar] = ACTIONS(5783), + }, + [2292] = { + [sym_identifier] = ACTIONS(5785), + [aux_sym_preproc_def_token1] = ACTIONS(5785), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5787), + [aux_sym_preproc_if_token1] = ACTIONS(5785), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5785), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5785), + [sym_preproc_directive] = ACTIONS(5785), + [anon_sym_LPAREN2] = ACTIONS(5787), + [anon_sym_TILDE] = ACTIONS(5787), + [anon_sym_STAR] = ACTIONS(5787), + [anon_sym_AMP_AMP] = ACTIONS(5787), + [anon_sym_AMP] = ACTIONS(5785), + [anon_sym___extension__] = ACTIONS(5785), + [anon_sym_typedef] = ACTIONS(5785), + [anon_sym_extern] = ACTIONS(5785), + [anon_sym___attribute__] = ACTIONS(5785), + [anon_sym_COLON_COLON] = ACTIONS(5787), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5787), + [anon_sym___declspec] = ACTIONS(5785), + [anon_sym___based] = ACTIONS(5785), + [anon_sym_RBRACE] = ACTIONS(5787), + [anon_sym_signed] = ACTIONS(5785), + [anon_sym_unsigned] = ACTIONS(5785), + [anon_sym_long] = ACTIONS(5785), + [anon_sym_short] = ACTIONS(5785), + [anon_sym_LBRACK] = ACTIONS(5785), + [anon_sym_static] = ACTIONS(5785), + [anon_sym_register] = ACTIONS(5785), + [anon_sym_inline] = ACTIONS(5785), + [anon_sym___inline] = ACTIONS(5785), + [anon_sym___inline__] = ACTIONS(5785), + [anon_sym___forceinline] = ACTIONS(5785), + [anon_sym_thread_local] = ACTIONS(5785), + [anon_sym___thread] = ACTIONS(5785), + [anon_sym_const] = ACTIONS(5785), + [anon_sym_constexpr] = ACTIONS(5785), + [anon_sym_volatile] = ACTIONS(5785), + [anon_sym_restrict] = ACTIONS(5785), + [anon_sym___restrict__] = ACTIONS(5785), + [anon_sym__Atomic] = ACTIONS(5785), + [anon_sym__Noreturn] = ACTIONS(5785), + [anon_sym_noreturn] = ACTIONS(5785), + [anon_sym_mutable] = ACTIONS(5785), + [anon_sym_constinit] = ACTIONS(5785), + [anon_sym_consteval] = ACTIONS(5785), + [sym_primitive_type] = ACTIONS(5785), + [anon_sym_enum] = ACTIONS(5785), + [anon_sym_class] = ACTIONS(5785), + [anon_sym_struct] = ACTIONS(5785), + [anon_sym_union] = ACTIONS(5785), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5785), + [anon_sym_decltype] = ACTIONS(5785), + [anon_sym_virtual] = ACTIONS(5785), + [anon_sym_alignas] = ACTIONS(5785), + [anon_sym_explicit] = ACTIONS(5785), + [anon_sym_typename] = ACTIONS(5785), + [anon_sym_template] = ACTIONS(5785), + [anon_sym_operator] = ACTIONS(5785), + [anon_sym_friend] = ACTIONS(5785), + [anon_sym_public] = ACTIONS(5785), + [anon_sym_private] = ACTIONS(5785), + [anon_sym_protected] = ACTIONS(5785), + [anon_sym_using] = ACTIONS(5785), + [anon_sym_static_assert] = ACTIONS(5785), + [sym_semgrep_metavar] = ACTIONS(5787), + }, + [2293] = { + [sym_declaration_modifiers] = STATE(4088), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3187), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(3324), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7571), + [sym_qualified_type_identifier] = STATE(4526), + [aux_sym_declaration_specifiers_repeat1] = STATE(4088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5478), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_template] = ACTIONS(1534), + }, + [2294] = { + [sym_identifier] = ACTIONS(3619), + [aux_sym_preproc_def_token1] = ACTIONS(3619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3621), + [aux_sym_preproc_if_token1] = ACTIONS(3619), + [aux_sym_preproc_if_token2] = ACTIONS(3619), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3619), + [sym_preproc_directive] = ACTIONS(3619), + [anon_sym_LPAREN2] = ACTIONS(3621), + [anon_sym_TILDE] = ACTIONS(3621), + [anon_sym_STAR] = ACTIONS(3621), + [anon_sym_AMP_AMP] = ACTIONS(3621), + [anon_sym_AMP] = ACTIONS(3619), + [anon_sym___extension__] = ACTIONS(3619), + [anon_sym_typedef] = ACTIONS(3619), + [anon_sym_extern] = ACTIONS(3619), + [anon_sym___attribute__] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3621), + [anon_sym___declspec] = ACTIONS(3619), + [anon_sym___based] = ACTIONS(3619), + [anon_sym_signed] = ACTIONS(3619), + [anon_sym_unsigned] = ACTIONS(3619), + [anon_sym_long] = ACTIONS(3619), + [anon_sym_short] = ACTIONS(3619), + [anon_sym_LBRACK] = ACTIONS(3619), + [anon_sym_static] = ACTIONS(3619), + [anon_sym_register] = ACTIONS(3619), + [anon_sym_inline] = ACTIONS(3619), + [anon_sym___inline] = ACTIONS(3619), + [anon_sym___inline__] = ACTIONS(3619), + [anon_sym___forceinline] = ACTIONS(3619), + [anon_sym_thread_local] = ACTIONS(3619), + [anon_sym___thread] = ACTIONS(3619), + [anon_sym_const] = ACTIONS(3619), + [anon_sym_constexpr] = ACTIONS(3619), + [anon_sym_volatile] = ACTIONS(3619), + [anon_sym_restrict] = ACTIONS(3619), + [anon_sym___restrict__] = ACTIONS(3619), + [anon_sym__Atomic] = ACTIONS(3619), + [anon_sym__Noreturn] = ACTIONS(3619), + [anon_sym_noreturn] = ACTIONS(3619), + [anon_sym_mutable] = ACTIONS(3619), + [anon_sym_constinit] = ACTIONS(3619), + [anon_sym_consteval] = ACTIONS(3619), + [sym_primitive_type] = ACTIONS(3619), + [anon_sym_enum] = ACTIONS(3619), + [anon_sym_class] = ACTIONS(3619), + [anon_sym_struct] = ACTIONS(3619), + [anon_sym_union] = ACTIONS(3619), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3619), + [anon_sym_decltype] = ACTIONS(3619), + [anon_sym_virtual] = ACTIONS(3619), + [anon_sym_alignas] = ACTIONS(3619), + [anon_sym_explicit] = ACTIONS(3619), + [anon_sym_typename] = ACTIONS(3619), + [anon_sym_template] = ACTIONS(3619), + [anon_sym_operator] = ACTIONS(3619), + [anon_sym_friend] = ACTIONS(3619), + [anon_sym_public] = ACTIONS(3619), + [anon_sym_private] = ACTIONS(3619), + [anon_sym_protected] = ACTIONS(3619), + [anon_sym_using] = ACTIONS(3619), + [anon_sym_static_assert] = ACTIONS(3619), + [sym_semgrep_metavar] = ACTIONS(3621), + }, + [2295] = { + [sym_identifier] = ACTIONS(5789), + [aux_sym_preproc_def_token1] = ACTIONS(5789), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5791), + [aux_sym_preproc_if_token1] = ACTIONS(5789), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5789), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5789), + [sym_preproc_directive] = ACTIONS(5789), + [anon_sym_LPAREN2] = ACTIONS(5791), + [anon_sym_TILDE] = ACTIONS(5791), + [anon_sym_STAR] = ACTIONS(5791), + [anon_sym_AMP_AMP] = ACTIONS(5791), + [anon_sym_AMP] = ACTIONS(5789), + [anon_sym___extension__] = ACTIONS(5789), + [anon_sym_typedef] = ACTIONS(5789), + [anon_sym_extern] = ACTIONS(5789), + [anon_sym___attribute__] = ACTIONS(5789), + [anon_sym_COLON_COLON] = ACTIONS(5791), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5791), + [anon_sym___declspec] = ACTIONS(5789), + [anon_sym___based] = ACTIONS(5789), + [anon_sym_RBRACE] = ACTIONS(5791), + [anon_sym_signed] = ACTIONS(5789), + [anon_sym_unsigned] = ACTIONS(5789), + [anon_sym_long] = ACTIONS(5789), + [anon_sym_short] = ACTIONS(5789), + [anon_sym_LBRACK] = ACTIONS(5789), + [anon_sym_static] = ACTIONS(5789), + [anon_sym_register] = ACTIONS(5789), + [anon_sym_inline] = ACTIONS(5789), + [anon_sym___inline] = ACTIONS(5789), + [anon_sym___inline__] = ACTIONS(5789), + [anon_sym___forceinline] = ACTIONS(5789), + [anon_sym_thread_local] = ACTIONS(5789), + [anon_sym___thread] = ACTIONS(5789), + [anon_sym_const] = ACTIONS(5789), + [anon_sym_constexpr] = ACTIONS(5789), + [anon_sym_volatile] = ACTIONS(5789), + [anon_sym_restrict] = ACTIONS(5789), + [anon_sym___restrict__] = ACTIONS(5789), + [anon_sym__Atomic] = ACTIONS(5789), + [anon_sym__Noreturn] = ACTIONS(5789), + [anon_sym_noreturn] = ACTIONS(5789), + [anon_sym_mutable] = ACTIONS(5789), + [anon_sym_constinit] = ACTIONS(5789), + [anon_sym_consteval] = ACTIONS(5789), + [sym_primitive_type] = ACTIONS(5789), + [anon_sym_enum] = ACTIONS(5789), + [anon_sym_class] = ACTIONS(5789), + [anon_sym_struct] = ACTIONS(5789), + [anon_sym_union] = ACTIONS(5789), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5789), + [anon_sym_decltype] = ACTIONS(5789), + [anon_sym_virtual] = ACTIONS(5789), + [anon_sym_alignas] = ACTIONS(5789), + [anon_sym_explicit] = ACTIONS(5789), + [anon_sym_typename] = ACTIONS(5789), + [anon_sym_template] = ACTIONS(5789), + [anon_sym_operator] = ACTIONS(5789), + [anon_sym_friend] = ACTIONS(5789), + [anon_sym_public] = ACTIONS(5789), + [anon_sym_private] = ACTIONS(5789), + [anon_sym_protected] = ACTIONS(5789), + [anon_sym_using] = ACTIONS(5789), + [anon_sym_static_assert] = ACTIONS(5789), + [sym_semgrep_metavar] = ACTIONS(5791), + }, + [2296] = { + [sym_identifier] = ACTIONS(3396), + [aux_sym_preproc_def_token1] = ACTIONS(3396), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3398), + [aux_sym_preproc_if_token1] = ACTIONS(3396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3396), + [sym_preproc_directive] = ACTIONS(3396), + [anon_sym_LPAREN2] = ACTIONS(3398), + [anon_sym_TILDE] = ACTIONS(3398), + [anon_sym_STAR] = ACTIONS(3398), + [anon_sym_AMP_AMP] = ACTIONS(3398), + [anon_sym_AMP] = ACTIONS(3396), + [anon_sym___extension__] = ACTIONS(3396), + [anon_sym_typedef] = ACTIONS(3396), + [anon_sym_extern] = ACTIONS(3396), + [anon_sym___attribute__] = ACTIONS(3396), + [anon_sym_COLON_COLON] = ACTIONS(3398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3398), + [anon_sym___declspec] = ACTIONS(3396), + [anon_sym___based] = ACTIONS(3396), + [anon_sym_RBRACE] = ACTIONS(3398), + [anon_sym_signed] = ACTIONS(3396), + [anon_sym_unsigned] = ACTIONS(3396), + [anon_sym_long] = ACTIONS(3396), + [anon_sym_short] = ACTIONS(3396), + [anon_sym_LBRACK] = ACTIONS(3396), + [anon_sym_static] = ACTIONS(3396), + [anon_sym_register] = ACTIONS(3396), + [anon_sym_inline] = ACTIONS(3396), + [anon_sym___inline] = ACTIONS(3396), + [anon_sym___inline__] = ACTIONS(3396), + [anon_sym___forceinline] = ACTIONS(3396), + [anon_sym_thread_local] = ACTIONS(3396), + [anon_sym___thread] = ACTIONS(3396), + [anon_sym_const] = ACTIONS(3396), + [anon_sym_constexpr] = ACTIONS(3396), + [anon_sym_volatile] = ACTIONS(3396), + [anon_sym_restrict] = ACTIONS(3396), + [anon_sym___restrict__] = ACTIONS(3396), + [anon_sym__Atomic] = ACTIONS(3396), + [anon_sym__Noreturn] = ACTIONS(3396), + [anon_sym_noreturn] = ACTIONS(3396), + [anon_sym_mutable] = ACTIONS(3396), + [anon_sym_constinit] = ACTIONS(3396), + [anon_sym_consteval] = ACTIONS(3396), + [sym_primitive_type] = ACTIONS(3396), + [anon_sym_enum] = ACTIONS(3396), + [anon_sym_class] = ACTIONS(3396), + [anon_sym_struct] = ACTIONS(3396), + [anon_sym_union] = ACTIONS(3396), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3396), + [anon_sym_decltype] = ACTIONS(3396), + [anon_sym_virtual] = ACTIONS(3396), + [anon_sym_alignas] = ACTIONS(3396), + [anon_sym_explicit] = ACTIONS(3396), + [anon_sym_typename] = ACTIONS(3396), + [anon_sym_template] = ACTIONS(3396), + [anon_sym_operator] = ACTIONS(3396), + [anon_sym_friend] = ACTIONS(3396), + [anon_sym_public] = ACTIONS(3396), + [anon_sym_private] = ACTIONS(3396), + [anon_sym_protected] = ACTIONS(3396), + [anon_sym_using] = ACTIONS(3396), + [anon_sym_static_assert] = ACTIONS(3396), + [sym_semgrep_metavar] = ACTIONS(3398), + }, + [2297] = { + [sym_identifier] = ACTIONS(3623), + [aux_sym_preproc_def_token1] = ACTIONS(3623), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3625), + [aux_sym_preproc_if_token1] = ACTIONS(3623), + [aux_sym_preproc_if_token2] = ACTIONS(3623), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3623), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3623), + [sym_preproc_directive] = ACTIONS(3623), + [anon_sym_LPAREN2] = ACTIONS(3625), + [anon_sym_TILDE] = ACTIONS(3625), + [anon_sym_STAR] = ACTIONS(3625), + [anon_sym_AMP_AMP] = ACTIONS(3625), + [anon_sym_AMP] = ACTIONS(3623), + [anon_sym___extension__] = ACTIONS(3623), + [anon_sym_typedef] = ACTIONS(3623), + [anon_sym_extern] = ACTIONS(3623), + [anon_sym___attribute__] = ACTIONS(3623), + [anon_sym_COLON_COLON] = ACTIONS(3625), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3625), + [anon_sym___declspec] = ACTIONS(3623), + [anon_sym___based] = ACTIONS(3623), + [anon_sym_signed] = ACTIONS(3623), + [anon_sym_unsigned] = ACTIONS(3623), + [anon_sym_long] = ACTIONS(3623), + [anon_sym_short] = ACTIONS(3623), + [anon_sym_LBRACK] = ACTIONS(3623), + [anon_sym_static] = ACTIONS(3623), + [anon_sym_register] = ACTIONS(3623), + [anon_sym_inline] = ACTIONS(3623), + [anon_sym___inline] = ACTIONS(3623), + [anon_sym___inline__] = ACTIONS(3623), + [anon_sym___forceinline] = ACTIONS(3623), + [anon_sym_thread_local] = ACTIONS(3623), + [anon_sym___thread] = ACTIONS(3623), + [anon_sym_const] = ACTIONS(3623), + [anon_sym_constexpr] = ACTIONS(3623), + [anon_sym_volatile] = ACTIONS(3623), + [anon_sym_restrict] = ACTIONS(3623), + [anon_sym___restrict__] = ACTIONS(3623), + [anon_sym__Atomic] = ACTIONS(3623), + [anon_sym__Noreturn] = ACTIONS(3623), + [anon_sym_noreturn] = ACTIONS(3623), + [anon_sym_mutable] = ACTIONS(3623), + [anon_sym_constinit] = ACTIONS(3623), + [anon_sym_consteval] = ACTIONS(3623), + [sym_primitive_type] = ACTIONS(3623), + [anon_sym_enum] = ACTIONS(3623), + [anon_sym_class] = ACTIONS(3623), + [anon_sym_struct] = ACTIONS(3623), + [anon_sym_union] = ACTIONS(3623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3623), + [anon_sym_decltype] = ACTIONS(3623), + [anon_sym_virtual] = ACTIONS(3623), + [anon_sym_alignas] = ACTIONS(3623), + [anon_sym_explicit] = ACTIONS(3623), + [anon_sym_typename] = ACTIONS(3623), + [anon_sym_template] = ACTIONS(3623), + [anon_sym_operator] = ACTIONS(3623), + [anon_sym_friend] = ACTIONS(3623), + [anon_sym_public] = ACTIONS(3623), + [anon_sym_private] = ACTIONS(3623), + [anon_sym_protected] = ACTIONS(3623), + [anon_sym_using] = ACTIONS(3623), + [anon_sym_static_assert] = ACTIONS(3623), + [sym_semgrep_metavar] = ACTIONS(3625), + }, + [2298] = { + [sym_identifier] = ACTIONS(3396), + [aux_sym_preproc_def_token1] = ACTIONS(3396), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3398), + [aux_sym_preproc_if_token1] = ACTIONS(3396), + [aux_sym_preproc_if_token2] = ACTIONS(3396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3396), + [sym_preproc_directive] = ACTIONS(3396), + [anon_sym_LPAREN2] = ACTIONS(3398), + [anon_sym_TILDE] = ACTIONS(3398), + [anon_sym_STAR] = ACTIONS(3398), + [anon_sym_AMP_AMP] = ACTIONS(3398), + [anon_sym_AMP] = ACTIONS(3396), + [anon_sym___extension__] = ACTIONS(3396), + [anon_sym_typedef] = ACTIONS(3396), + [anon_sym_extern] = ACTIONS(3396), + [anon_sym___attribute__] = ACTIONS(3396), + [anon_sym_COLON_COLON] = ACTIONS(3398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3398), + [anon_sym___declspec] = ACTIONS(3396), + [anon_sym___based] = ACTIONS(3396), + [anon_sym_signed] = ACTIONS(3396), + [anon_sym_unsigned] = ACTIONS(3396), + [anon_sym_long] = ACTIONS(3396), + [anon_sym_short] = ACTIONS(3396), + [anon_sym_LBRACK] = ACTIONS(3396), + [anon_sym_static] = ACTIONS(3396), + [anon_sym_register] = ACTIONS(3396), + [anon_sym_inline] = ACTIONS(3396), + [anon_sym___inline] = ACTIONS(3396), + [anon_sym___inline__] = ACTIONS(3396), + [anon_sym___forceinline] = ACTIONS(3396), + [anon_sym_thread_local] = ACTIONS(3396), + [anon_sym___thread] = ACTIONS(3396), + [anon_sym_const] = ACTIONS(3396), + [anon_sym_constexpr] = ACTIONS(3396), + [anon_sym_volatile] = ACTIONS(3396), + [anon_sym_restrict] = ACTIONS(3396), + [anon_sym___restrict__] = ACTIONS(3396), + [anon_sym__Atomic] = ACTIONS(3396), + [anon_sym__Noreturn] = ACTIONS(3396), + [anon_sym_noreturn] = ACTIONS(3396), + [anon_sym_mutable] = ACTIONS(3396), + [anon_sym_constinit] = ACTIONS(3396), + [anon_sym_consteval] = ACTIONS(3396), + [sym_primitive_type] = ACTIONS(3396), + [anon_sym_enum] = ACTIONS(3396), + [anon_sym_class] = ACTIONS(3396), + [anon_sym_struct] = ACTIONS(3396), + [anon_sym_union] = ACTIONS(3396), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3396), + [anon_sym_decltype] = ACTIONS(3396), + [anon_sym_virtual] = ACTIONS(3396), + [anon_sym_alignas] = ACTIONS(3396), + [anon_sym_explicit] = ACTIONS(3396), + [anon_sym_typename] = ACTIONS(3396), + [anon_sym_template] = ACTIONS(3396), + [anon_sym_operator] = ACTIONS(3396), + [anon_sym_friend] = ACTIONS(3396), + [anon_sym_public] = ACTIONS(3396), + [anon_sym_private] = ACTIONS(3396), + [anon_sym_protected] = ACTIONS(3396), + [anon_sym_using] = ACTIONS(3396), + [anon_sym_static_assert] = ACTIONS(3396), + [sym_semgrep_metavar] = ACTIONS(3398), + }, + [2299] = { + [sym_identifier] = ACTIONS(3143), + [aux_sym_preproc_def_token1] = ACTIONS(3143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3145), + [aux_sym_preproc_if_token1] = ACTIONS(3143), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3143), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3143), + [sym_preproc_directive] = ACTIONS(3143), + [anon_sym_LPAREN2] = ACTIONS(3145), + [anon_sym_TILDE] = ACTIONS(3145), + [anon_sym_STAR] = ACTIONS(3145), + [anon_sym_AMP_AMP] = ACTIONS(3145), + [anon_sym_AMP] = ACTIONS(3143), + [anon_sym___extension__] = ACTIONS(3143), + [anon_sym_typedef] = ACTIONS(3143), + [anon_sym_extern] = ACTIONS(3143), + [anon_sym___attribute__] = ACTIONS(3143), + [anon_sym_COLON_COLON] = ACTIONS(3145), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3145), + [anon_sym___declspec] = ACTIONS(3143), + [anon_sym___based] = ACTIONS(3143), + [anon_sym_RBRACE] = ACTIONS(3145), + [anon_sym_signed] = ACTIONS(3143), + [anon_sym_unsigned] = ACTIONS(3143), + [anon_sym_long] = ACTIONS(3143), + [anon_sym_short] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(3143), + [anon_sym_static] = ACTIONS(3143), + [anon_sym_register] = ACTIONS(3143), + [anon_sym_inline] = ACTIONS(3143), + [anon_sym___inline] = ACTIONS(3143), + [anon_sym___inline__] = ACTIONS(3143), + [anon_sym___forceinline] = ACTIONS(3143), + [anon_sym_thread_local] = ACTIONS(3143), + [anon_sym___thread] = ACTIONS(3143), + [anon_sym_const] = ACTIONS(3143), + [anon_sym_constexpr] = ACTIONS(3143), + [anon_sym_volatile] = ACTIONS(3143), + [anon_sym_restrict] = ACTIONS(3143), + [anon_sym___restrict__] = ACTIONS(3143), + [anon_sym__Atomic] = ACTIONS(3143), + [anon_sym__Noreturn] = ACTIONS(3143), + [anon_sym_noreturn] = ACTIONS(3143), + [anon_sym_mutable] = ACTIONS(3143), + [anon_sym_constinit] = ACTIONS(3143), + [anon_sym_consteval] = ACTIONS(3143), + [sym_primitive_type] = ACTIONS(3143), + [anon_sym_enum] = ACTIONS(3143), + [anon_sym_class] = ACTIONS(3143), + [anon_sym_struct] = ACTIONS(3143), + [anon_sym_union] = ACTIONS(3143), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3143), + [anon_sym_decltype] = ACTIONS(3143), + [anon_sym_virtual] = ACTIONS(3143), + [anon_sym_alignas] = ACTIONS(3143), + [anon_sym_explicit] = ACTIONS(3143), + [anon_sym_typename] = ACTIONS(3143), + [anon_sym_template] = ACTIONS(3143), + [anon_sym_operator] = ACTIONS(3143), + [anon_sym_friend] = ACTIONS(3143), + [anon_sym_public] = ACTIONS(3143), + [anon_sym_private] = ACTIONS(3143), + [anon_sym_protected] = ACTIONS(3143), + [anon_sym_using] = ACTIONS(3143), + [anon_sym_static_assert] = ACTIONS(3143), + [sym_semgrep_metavar] = ACTIONS(3145), + }, + [2300] = { + [ts_builtin_sym_end] = ACTIONS(6230), + [sym_identifier] = ACTIONS(6232), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6230), + [anon_sym_COMMA] = ACTIONS(6230), + [anon_sym_RPAREN] = ACTIONS(6230), + [aux_sym_preproc_if_token2] = ACTIONS(6230), + [aux_sym_preproc_else_token1] = ACTIONS(6230), + [aux_sym_preproc_elif_token1] = ACTIONS(6232), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6230), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6230), + [anon_sym_LPAREN2] = ACTIONS(6230), + [anon_sym_DASH] = ACTIONS(6232), + [anon_sym_PLUS] = ACTIONS(6232), + [anon_sym_STAR] = ACTIONS(6232), + [anon_sym_SLASH] = ACTIONS(6232), + [anon_sym_PERCENT] = ACTIONS(6232), + [anon_sym_PIPE_PIPE] = ACTIONS(6230), + [anon_sym_AMP_AMP] = ACTIONS(6230), + [anon_sym_PIPE] = ACTIONS(6232), + [anon_sym_CARET] = ACTIONS(6232), + [anon_sym_AMP] = ACTIONS(6232), + [anon_sym_EQ_EQ] = ACTIONS(6230), + [anon_sym_BANG_EQ] = ACTIONS(6230), + [anon_sym_GT] = ACTIONS(6232), + [anon_sym_GT_EQ] = ACTIONS(6230), + [anon_sym_LT_EQ] = ACTIONS(6232), + [anon_sym_LT] = ACTIONS(6232), + [anon_sym_LT_LT] = ACTIONS(6232), + [anon_sym_GT_GT] = ACTIONS(6232), + [anon_sym_SEMI] = ACTIONS(6230), + [anon_sym___attribute__] = ACTIONS(6232), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6230), + [anon_sym_LBRACE] = ACTIONS(6230), + [anon_sym_RBRACE] = ACTIONS(6230), + [anon_sym_LBRACK] = ACTIONS(6232), + [anon_sym_RBRACK] = ACTIONS(6230), + [anon_sym_EQ] = ACTIONS(6232), + [anon_sym_COLON] = ACTIONS(6230), + [anon_sym_QMARK] = ACTIONS(6230), + [anon_sym_STAR_EQ] = ACTIONS(6230), + [anon_sym_SLASH_EQ] = ACTIONS(6230), + [anon_sym_PERCENT_EQ] = ACTIONS(6230), + [anon_sym_PLUS_EQ] = ACTIONS(6230), + [anon_sym_DASH_EQ] = ACTIONS(6230), + [anon_sym_LT_LT_EQ] = ACTIONS(6230), + [anon_sym_GT_GT_EQ] = ACTIONS(6230), + [anon_sym_AMP_EQ] = ACTIONS(6230), + [anon_sym_CARET_EQ] = ACTIONS(6230), + [anon_sym_PIPE_EQ] = ACTIONS(6230), + [anon_sym_and_eq] = ACTIONS(6232), + [anon_sym_or_eq] = ACTIONS(6232), + [anon_sym_xor_eq] = ACTIONS(6232), + [anon_sym_LT_EQ_GT] = ACTIONS(6230), + [anon_sym_or] = ACTIONS(6232), + [anon_sym_and] = ACTIONS(6232), + [anon_sym_bitor] = ACTIONS(6232), + [anon_sym_xor] = ACTIONS(6232), + [anon_sym_bitand] = ACTIONS(6232), + [anon_sym_not_eq] = ACTIONS(6232), + [anon_sym_DASH_DASH] = ACTIONS(6230), + [anon_sym_PLUS_PLUS] = ACTIONS(6230), + [anon_sym_DOT] = ACTIONS(6232), + [anon_sym_DOT_STAR] = ACTIONS(6230), + [anon_sym_DASH_GT] = ACTIONS(6230), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(6232), + }, + [2301] = { + [sym_identifier] = ACTIONS(3649), + [aux_sym_preproc_def_token1] = ACTIONS(3649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3651), + [aux_sym_preproc_if_token1] = ACTIONS(3649), + [aux_sym_preproc_if_token2] = ACTIONS(3649), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3649), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3649), + [sym_preproc_directive] = ACTIONS(3649), + [anon_sym_LPAREN2] = ACTIONS(3651), + [anon_sym_TILDE] = ACTIONS(3651), + [anon_sym_STAR] = ACTIONS(3651), + [anon_sym_AMP_AMP] = ACTIONS(3651), + [anon_sym_AMP] = ACTIONS(3649), + [anon_sym___extension__] = ACTIONS(3649), + [anon_sym_typedef] = ACTIONS(3649), + [anon_sym_extern] = ACTIONS(3649), + [anon_sym___attribute__] = ACTIONS(3649), + [anon_sym_COLON_COLON] = ACTIONS(3651), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3651), + [anon_sym___declspec] = ACTIONS(3649), + [anon_sym___based] = ACTIONS(3649), + [anon_sym_signed] = ACTIONS(3649), + [anon_sym_unsigned] = ACTIONS(3649), + [anon_sym_long] = ACTIONS(3649), + [anon_sym_short] = ACTIONS(3649), + [anon_sym_LBRACK] = ACTIONS(3649), + [anon_sym_static] = ACTIONS(3649), + [anon_sym_register] = ACTIONS(3649), + [anon_sym_inline] = ACTIONS(3649), + [anon_sym___inline] = ACTIONS(3649), + [anon_sym___inline__] = ACTIONS(3649), + [anon_sym___forceinline] = ACTIONS(3649), + [anon_sym_thread_local] = ACTIONS(3649), + [anon_sym___thread] = ACTIONS(3649), + [anon_sym_const] = ACTIONS(3649), + [anon_sym_constexpr] = ACTIONS(3649), + [anon_sym_volatile] = ACTIONS(3649), + [anon_sym_restrict] = ACTIONS(3649), + [anon_sym___restrict__] = ACTIONS(3649), + [anon_sym__Atomic] = ACTIONS(3649), + [anon_sym__Noreturn] = ACTIONS(3649), + [anon_sym_noreturn] = ACTIONS(3649), + [anon_sym_mutable] = ACTIONS(3649), + [anon_sym_constinit] = ACTIONS(3649), + [anon_sym_consteval] = ACTIONS(3649), + [sym_primitive_type] = ACTIONS(3649), + [anon_sym_enum] = ACTIONS(3649), + [anon_sym_class] = ACTIONS(3649), + [anon_sym_struct] = ACTIONS(3649), + [anon_sym_union] = ACTIONS(3649), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3649), + [anon_sym_decltype] = ACTIONS(3649), + [anon_sym_virtual] = ACTIONS(3649), + [anon_sym_alignas] = ACTIONS(3649), + [anon_sym_explicit] = ACTIONS(3649), + [anon_sym_typename] = ACTIONS(3649), + [anon_sym_template] = ACTIONS(3649), + [anon_sym_operator] = ACTIONS(3649), + [anon_sym_friend] = ACTIONS(3649), + [anon_sym_public] = ACTIONS(3649), + [anon_sym_private] = ACTIONS(3649), + [anon_sym_protected] = ACTIONS(3649), + [anon_sym_using] = ACTIONS(3649), + [anon_sym_static_assert] = ACTIONS(3649), + [sym_semgrep_metavar] = ACTIONS(3651), + }, + [2302] = { + [sym_identifier] = ACTIONS(3442), + [aux_sym_preproc_def_token1] = ACTIONS(3442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3444), + [aux_sym_preproc_if_token1] = ACTIONS(3442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3442), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3442), + [sym_preproc_directive] = ACTIONS(3442), + [anon_sym_LPAREN2] = ACTIONS(3444), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3444), + [anon_sym_AMP_AMP] = ACTIONS(3444), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym___extension__] = ACTIONS(3442), + [anon_sym_typedef] = ACTIONS(3442), + [anon_sym_extern] = ACTIONS(3442), + [anon_sym___attribute__] = ACTIONS(3442), + [anon_sym_COLON_COLON] = ACTIONS(3444), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3444), + [anon_sym___declspec] = ACTIONS(3442), + [anon_sym___based] = ACTIONS(3442), + [anon_sym_RBRACE] = ACTIONS(3444), + [anon_sym_signed] = ACTIONS(3442), + [anon_sym_unsigned] = ACTIONS(3442), + [anon_sym_long] = ACTIONS(3442), + [anon_sym_short] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_static] = ACTIONS(3442), + [anon_sym_register] = ACTIONS(3442), + [anon_sym_inline] = ACTIONS(3442), + [anon_sym___inline] = ACTIONS(3442), + [anon_sym___inline__] = ACTIONS(3442), + [anon_sym___forceinline] = ACTIONS(3442), + [anon_sym_thread_local] = ACTIONS(3442), + [anon_sym___thread] = ACTIONS(3442), + [anon_sym_const] = ACTIONS(3442), + [anon_sym_constexpr] = ACTIONS(3442), + [anon_sym_volatile] = ACTIONS(3442), + [anon_sym_restrict] = ACTIONS(3442), + [anon_sym___restrict__] = ACTIONS(3442), + [anon_sym__Atomic] = ACTIONS(3442), + [anon_sym__Noreturn] = ACTIONS(3442), + [anon_sym_noreturn] = ACTIONS(3442), + [anon_sym_mutable] = ACTIONS(3442), + [anon_sym_constinit] = ACTIONS(3442), + [anon_sym_consteval] = ACTIONS(3442), + [sym_primitive_type] = ACTIONS(3442), + [anon_sym_enum] = ACTIONS(3442), + [anon_sym_class] = ACTIONS(3442), + [anon_sym_struct] = ACTIONS(3442), + [anon_sym_union] = ACTIONS(3442), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3442), + [anon_sym_decltype] = ACTIONS(3442), + [anon_sym_virtual] = ACTIONS(3442), + [anon_sym_alignas] = ACTIONS(3442), + [anon_sym_explicit] = ACTIONS(3442), + [anon_sym_typename] = ACTIONS(3442), + [anon_sym_template] = ACTIONS(3442), + [anon_sym_operator] = ACTIONS(3442), + [anon_sym_friend] = ACTIONS(3442), + [anon_sym_public] = ACTIONS(3442), + [anon_sym_private] = ACTIONS(3442), + [anon_sym_protected] = ACTIONS(3442), + [anon_sym_using] = ACTIONS(3442), + [anon_sym_static_assert] = ACTIONS(3442), + [sym_semgrep_metavar] = ACTIONS(3444), + }, + [2303] = { + [sym_identifier] = ACTIONS(3657), + [aux_sym_preproc_def_token1] = ACTIONS(3657), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3659), + [aux_sym_preproc_if_token1] = ACTIONS(3657), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3657), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3657), + [sym_preproc_directive] = ACTIONS(3657), + [anon_sym_LPAREN2] = ACTIONS(3659), + [anon_sym_TILDE] = ACTIONS(3659), + [anon_sym_STAR] = ACTIONS(3659), + [anon_sym_AMP_AMP] = ACTIONS(3659), + [anon_sym_AMP] = ACTIONS(3657), + [anon_sym___extension__] = ACTIONS(3657), + [anon_sym_typedef] = ACTIONS(3657), + [anon_sym_extern] = ACTIONS(3657), + [anon_sym___attribute__] = ACTIONS(3657), + [anon_sym_COLON_COLON] = ACTIONS(3659), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3659), + [anon_sym___declspec] = ACTIONS(3657), + [anon_sym___based] = ACTIONS(3657), + [anon_sym_RBRACE] = ACTIONS(3659), + [anon_sym_signed] = ACTIONS(3657), + [anon_sym_unsigned] = ACTIONS(3657), + [anon_sym_long] = ACTIONS(3657), + [anon_sym_short] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_static] = ACTIONS(3657), + [anon_sym_register] = ACTIONS(3657), + [anon_sym_inline] = ACTIONS(3657), + [anon_sym___inline] = ACTIONS(3657), + [anon_sym___inline__] = ACTIONS(3657), + [anon_sym___forceinline] = ACTIONS(3657), + [anon_sym_thread_local] = ACTIONS(3657), + [anon_sym___thread] = ACTIONS(3657), + [anon_sym_const] = ACTIONS(3657), + [anon_sym_constexpr] = ACTIONS(3657), + [anon_sym_volatile] = ACTIONS(3657), + [anon_sym_restrict] = ACTIONS(3657), + [anon_sym___restrict__] = ACTIONS(3657), + [anon_sym__Atomic] = ACTIONS(3657), + [anon_sym__Noreturn] = ACTIONS(3657), + [anon_sym_noreturn] = ACTIONS(3657), + [anon_sym_mutable] = ACTIONS(3657), + [anon_sym_constinit] = ACTIONS(3657), + [anon_sym_consteval] = ACTIONS(3657), + [sym_primitive_type] = ACTIONS(3657), + [anon_sym_enum] = ACTIONS(3657), + [anon_sym_class] = ACTIONS(3657), + [anon_sym_struct] = ACTIONS(3657), + [anon_sym_union] = ACTIONS(3657), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3657), + [anon_sym_decltype] = ACTIONS(3657), + [anon_sym_virtual] = ACTIONS(3657), + [anon_sym_alignas] = ACTIONS(3657), + [anon_sym_explicit] = ACTIONS(3657), + [anon_sym_typename] = ACTIONS(3657), + [anon_sym_template] = ACTIONS(3657), + [anon_sym_operator] = ACTIONS(3657), + [anon_sym_friend] = ACTIONS(3657), + [anon_sym_public] = ACTIONS(3657), + [anon_sym_private] = ACTIONS(3657), + [anon_sym_protected] = ACTIONS(3657), + [anon_sym_using] = ACTIONS(3657), + [anon_sym_static_assert] = ACTIONS(3657), + [sym_semgrep_metavar] = ACTIONS(3659), + }, + [2304] = { + [sym_identifier] = ACTIONS(3392), + [aux_sym_preproc_def_token1] = ACTIONS(3392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3394), + [aux_sym_preproc_if_token1] = ACTIONS(3392), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3392), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3392), + [sym_preproc_directive] = ACTIONS(3392), + [anon_sym_LPAREN2] = ACTIONS(3394), + [anon_sym_TILDE] = ACTIONS(3394), + [anon_sym_STAR] = ACTIONS(3394), + [anon_sym_AMP_AMP] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3392), + [anon_sym___extension__] = ACTIONS(3392), + [anon_sym_typedef] = ACTIONS(3392), + [anon_sym_extern] = ACTIONS(3392), + [anon_sym___attribute__] = ACTIONS(3392), + [anon_sym_COLON_COLON] = ACTIONS(3394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3394), + [anon_sym___declspec] = ACTIONS(3392), + [anon_sym___based] = ACTIONS(3392), + [anon_sym_RBRACE] = ACTIONS(3394), + [anon_sym_signed] = ACTIONS(3392), + [anon_sym_unsigned] = ACTIONS(3392), + [anon_sym_long] = ACTIONS(3392), + [anon_sym_short] = ACTIONS(3392), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_static] = ACTIONS(3392), + [anon_sym_register] = ACTIONS(3392), + [anon_sym_inline] = ACTIONS(3392), + [anon_sym___inline] = ACTIONS(3392), + [anon_sym___inline__] = ACTIONS(3392), + [anon_sym___forceinline] = ACTIONS(3392), + [anon_sym_thread_local] = ACTIONS(3392), + [anon_sym___thread] = ACTIONS(3392), + [anon_sym_const] = ACTIONS(3392), + [anon_sym_constexpr] = ACTIONS(3392), + [anon_sym_volatile] = ACTIONS(3392), + [anon_sym_restrict] = ACTIONS(3392), + [anon_sym___restrict__] = ACTIONS(3392), + [anon_sym__Atomic] = ACTIONS(3392), + [anon_sym__Noreturn] = ACTIONS(3392), + [anon_sym_noreturn] = ACTIONS(3392), + [anon_sym_mutable] = ACTIONS(3392), + [anon_sym_constinit] = ACTIONS(3392), + [anon_sym_consteval] = ACTIONS(3392), + [sym_primitive_type] = ACTIONS(3392), + [anon_sym_enum] = ACTIONS(3392), + [anon_sym_class] = ACTIONS(3392), + [anon_sym_struct] = ACTIONS(3392), + [anon_sym_union] = ACTIONS(3392), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3392), + [anon_sym_decltype] = ACTIONS(3392), + [anon_sym_virtual] = ACTIONS(3392), + [anon_sym_alignas] = ACTIONS(3392), + [anon_sym_explicit] = ACTIONS(3392), + [anon_sym_typename] = ACTIONS(3392), + [anon_sym_template] = ACTIONS(3392), + [anon_sym_operator] = ACTIONS(3392), + [anon_sym_friend] = ACTIONS(3392), + [anon_sym_public] = ACTIONS(3392), + [anon_sym_private] = ACTIONS(3392), + [anon_sym_protected] = ACTIONS(3392), + [anon_sym_using] = ACTIONS(3392), + [anon_sym_static_assert] = ACTIONS(3392), + [sym_semgrep_metavar] = ACTIONS(3394), + }, + [2305] = { + [sym_identifier] = ACTIONS(3451), + [aux_sym_preproc_def_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3453), + [aux_sym_preproc_if_token1] = ACTIONS(3451), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3451), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3451), + [sym_preproc_directive] = ACTIONS(3451), + [anon_sym_LPAREN2] = ACTIONS(3453), + [anon_sym_TILDE] = ACTIONS(3453), + [anon_sym_STAR] = ACTIONS(3453), + [anon_sym_AMP_AMP] = ACTIONS(3453), + [anon_sym_AMP] = ACTIONS(3451), + [anon_sym___extension__] = ACTIONS(3451), + [anon_sym_typedef] = ACTIONS(3451), + [anon_sym_extern] = ACTIONS(3451), + [anon_sym___attribute__] = ACTIONS(3451), + [anon_sym_COLON_COLON] = ACTIONS(3453), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3453), + [anon_sym___declspec] = ACTIONS(3451), + [anon_sym___based] = ACTIONS(3451), + [anon_sym_RBRACE] = ACTIONS(3453), + [anon_sym_signed] = ACTIONS(3451), + [anon_sym_unsigned] = ACTIONS(3451), + [anon_sym_long] = ACTIONS(3451), + [anon_sym_short] = ACTIONS(3451), + [anon_sym_LBRACK] = ACTIONS(3451), + [anon_sym_static] = ACTIONS(3451), + [anon_sym_register] = ACTIONS(3451), + [anon_sym_inline] = ACTIONS(3451), + [anon_sym___inline] = ACTIONS(3451), + [anon_sym___inline__] = ACTIONS(3451), + [anon_sym___forceinline] = ACTIONS(3451), + [anon_sym_thread_local] = ACTIONS(3451), + [anon_sym___thread] = ACTIONS(3451), + [anon_sym_const] = ACTIONS(3451), + [anon_sym_constexpr] = ACTIONS(3451), + [anon_sym_volatile] = ACTIONS(3451), + [anon_sym_restrict] = ACTIONS(3451), + [anon_sym___restrict__] = ACTIONS(3451), + [anon_sym__Atomic] = ACTIONS(3451), + [anon_sym__Noreturn] = ACTIONS(3451), + [anon_sym_noreturn] = ACTIONS(3451), + [anon_sym_mutable] = ACTIONS(3451), + [anon_sym_constinit] = ACTIONS(3451), + [anon_sym_consteval] = ACTIONS(3451), + [sym_primitive_type] = ACTIONS(3451), + [anon_sym_enum] = ACTIONS(3451), + [anon_sym_class] = ACTIONS(3451), + [anon_sym_struct] = ACTIONS(3451), + [anon_sym_union] = ACTIONS(3451), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3451), + [anon_sym_decltype] = ACTIONS(3451), + [anon_sym_virtual] = ACTIONS(3451), + [anon_sym_alignas] = ACTIONS(3451), + [anon_sym_explicit] = ACTIONS(3451), + [anon_sym_typename] = ACTIONS(3451), + [anon_sym_template] = ACTIONS(3451), + [anon_sym_operator] = ACTIONS(3451), + [anon_sym_friend] = ACTIONS(3451), + [anon_sym_public] = ACTIONS(3451), + [anon_sym_private] = ACTIONS(3451), + [anon_sym_protected] = ACTIONS(3451), + [anon_sym_using] = ACTIONS(3451), + [anon_sym_static_assert] = ACTIONS(3451), + [sym_semgrep_metavar] = ACTIONS(3453), + }, + [2306] = { + [sym_identifier] = ACTIONS(3143), + [aux_sym_preproc_def_token1] = ACTIONS(3143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3145), + [aux_sym_preproc_if_token1] = ACTIONS(3143), + [aux_sym_preproc_if_token2] = ACTIONS(3143), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3143), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3143), + [sym_preproc_directive] = ACTIONS(3143), + [anon_sym_LPAREN2] = ACTIONS(3145), + [anon_sym_TILDE] = ACTIONS(3145), + [anon_sym_STAR] = ACTIONS(3145), + [anon_sym_AMP_AMP] = ACTIONS(3145), + [anon_sym_AMP] = ACTIONS(3143), + [anon_sym___extension__] = ACTIONS(3143), + [anon_sym_typedef] = ACTIONS(3143), + [anon_sym_extern] = ACTIONS(3143), + [anon_sym___attribute__] = ACTIONS(3143), + [anon_sym_COLON_COLON] = ACTIONS(3145), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3145), + [anon_sym___declspec] = ACTIONS(3143), + [anon_sym___based] = ACTIONS(3143), + [anon_sym_signed] = ACTIONS(3143), + [anon_sym_unsigned] = ACTIONS(3143), + [anon_sym_long] = ACTIONS(3143), + [anon_sym_short] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(3143), + [anon_sym_static] = ACTIONS(3143), + [anon_sym_register] = ACTIONS(3143), + [anon_sym_inline] = ACTIONS(3143), + [anon_sym___inline] = ACTIONS(3143), + [anon_sym___inline__] = ACTIONS(3143), + [anon_sym___forceinline] = ACTIONS(3143), + [anon_sym_thread_local] = ACTIONS(3143), + [anon_sym___thread] = ACTIONS(3143), + [anon_sym_const] = ACTIONS(3143), + [anon_sym_constexpr] = ACTIONS(3143), + [anon_sym_volatile] = ACTIONS(3143), + [anon_sym_restrict] = ACTIONS(3143), + [anon_sym___restrict__] = ACTIONS(3143), + [anon_sym__Atomic] = ACTIONS(3143), + [anon_sym__Noreturn] = ACTIONS(3143), + [anon_sym_noreturn] = ACTIONS(3143), + [anon_sym_mutable] = ACTIONS(3143), + [anon_sym_constinit] = ACTIONS(3143), + [anon_sym_consteval] = ACTIONS(3143), + [sym_primitive_type] = ACTIONS(3143), + [anon_sym_enum] = ACTIONS(3143), + [anon_sym_class] = ACTIONS(3143), + [anon_sym_struct] = ACTIONS(3143), + [anon_sym_union] = ACTIONS(3143), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3143), + [anon_sym_decltype] = ACTIONS(3143), + [anon_sym_virtual] = ACTIONS(3143), + [anon_sym_alignas] = ACTIONS(3143), + [anon_sym_explicit] = ACTIONS(3143), + [anon_sym_typename] = ACTIONS(3143), + [anon_sym_template] = ACTIONS(3143), + [anon_sym_operator] = ACTIONS(3143), + [anon_sym_friend] = ACTIONS(3143), + [anon_sym_public] = ACTIONS(3143), + [anon_sym_private] = ACTIONS(3143), + [anon_sym_protected] = ACTIONS(3143), + [anon_sym_using] = ACTIONS(3143), + [anon_sym_static_assert] = ACTIONS(3143), + [sym_semgrep_metavar] = ACTIONS(3145), + }, + [2307] = { + [sym_identifier] = ACTIONS(3457), + [aux_sym_preproc_def_token1] = ACTIONS(3457), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3459), + [aux_sym_preproc_if_token1] = ACTIONS(3457), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3457), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3457), + [sym_preproc_directive] = ACTIONS(3457), + [anon_sym_LPAREN2] = ACTIONS(3459), + [anon_sym_TILDE] = ACTIONS(3459), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_AMP] = ACTIONS(3457), + [anon_sym___extension__] = ACTIONS(3457), + [anon_sym_typedef] = ACTIONS(3457), + [anon_sym_extern] = ACTIONS(3457), + [anon_sym___attribute__] = ACTIONS(3457), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3459), + [anon_sym___declspec] = ACTIONS(3457), + [anon_sym___based] = ACTIONS(3457), + [anon_sym_RBRACE] = ACTIONS(3459), + [anon_sym_signed] = ACTIONS(3457), + [anon_sym_unsigned] = ACTIONS(3457), + [anon_sym_long] = ACTIONS(3457), + [anon_sym_short] = ACTIONS(3457), + [anon_sym_LBRACK] = ACTIONS(3457), + [anon_sym_static] = ACTIONS(3457), + [anon_sym_register] = ACTIONS(3457), + [anon_sym_inline] = ACTIONS(3457), + [anon_sym___inline] = ACTIONS(3457), + [anon_sym___inline__] = ACTIONS(3457), + [anon_sym___forceinline] = ACTIONS(3457), + [anon_sym_thread_local] = ACTIONS(3457), + [anon_sym___thread] = ACTIONS(3457), + [anon_sym_const] = ACTIONS(3457), + [anon_sym_constexpr] = ACTIONS(3457), + [anon_sym_volatile] = ACTIONS(3457), + [anon_sym_restrict] = ACTIONS(3457), + [anon_sym___restrict__] = ACTIONS(3457), + [anon_sym__Atomic] = ACTIONS(3457), + [anon_sym__Noreturn] = ACTIONS(3457), + [anon_sym_noreturn] = ACTIONS(3457), + [anon_sym_mutable] = ACTIONS(3457), + [anon_sym_constinit] = ACTIONS(3457), + [anon_sym_consteval] = ACTIONS(3457), + [sym_primitive_type] = ACTIONS(3457), + [anon_sym_enum] = ACTIONS(3457), + [anon_sym_class] = ACTIONS(3457), + [anon_sym_struct] = ACTIONS(3457), + [anon_sym_union] = ACTIONS(3457), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3457), + [anon_sym_decltype] = ACTIONS(3457), + [anon_sym_virtual] = ACTIONS(3457), + [anon_sym_alignas] = ACTIONS(3457), + [anon_sym_explicit] = ACTIONS(3457), + [anon_sym_typename] = ACTIONS(3457), + [anon_sym_template] = ACTIONS(3457), + [anon_sym_operator] = ACTIONS(3457), + [anon_sym_friend] = ACTIONS(3457), + [anon_sym_public] = ACTIONS(3457), + [anon_sym_private] = ACTIONS(3457), + [anon_sym_protected] = ACTIONS(3457), + [anon_sym_using] = ACTIONS(3457), + [anon_sym_static_assert] = ACTIONS(3457), + [sym_semgrep_metavar] = ACTIONS(3459), + }, + [2308] = { + [sym_identifier] = ACTIONS(3513), + [aux_sym_preproc_def_token1] = ACTIONS(3513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3515), + [aux_sym_preproc_if_token1] = ACTIONS(3513), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3513), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3513), + [sym_preproc_directive] = ACTIONS(3513), + [anon_sym_LPAREN2] = ACTIONS(3515), + [anon_sym_TILDE] = ACTIONS(3515), + [anon_sym_STAR] = ACTIONS(3515), + [anon_sym_AMP_AMP] = ACTIONS(3515), + [anon_sym_AMP] = ACTIONS(3513), + [anon_sym___extension__] = ACTIONS(3513), + [anon_sym_typedef] = ACTIONS(3513), + [anon_sym_extern] = ACTIONS(3513), + [anon_sym___attribute__] = ACTIONS(3513), + [anon_sym_COLON_COLON] = ACTIONS(3515), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3515), + [anon_sym___declspec] = ACTIONS(3513), + [anon_sym___based] = ACTIONS(3513), + [anon_sym_RBRACE] = ACTIONS(3515), + [anon_sym_signed] = ACTIONS(3513), + [anon_sym_unsigned] = ACTIONS(3513), + [anon_sym_long] = ACTIONS(3513), + [anon_sym_short] = ACTIONS(3513), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_static] = ACTIONS(3513), + [anon_sym_register] = ACTIONS(3513), + [anon_sym_inline] = ACTIONS(3513), + [anon_sym___inline] = ACTIONS(3513), + [anon_sym___inline__] = ACTIONS(3513), + [anon_sym___forceinline] = ACTIONS(3513), + [anon_sym_thread_local] = ACTIONS(3513), + [anon_sym___thread] = ACTIONS(3513), + [anon_sym_const] = ACTIONS(3513), + [anon_sym_constexpr] = ACTIONS(3513), + [anon_sym_volatile] = ACTIONS(3513), + [anon_sym_restrict] = ACTIONS(3513), + [anon_sym___restrict__] = ACTIONS(3513), + [anon_sym__Atomic] = ACTIONS(3513), + [anon_sym__Noreturn] = ACTIONS(3513), + [anon_sym_noreturn] = ACTIONS(3513), + [anon_sym_mutable] = ACTIONS(3513), + [anon_sym_constinit] = ACTIONS(3513), + [anon_sym_consteval] = ACTIONS(3513), + [sym_primitive_type] = ACTIONS(3513), + [anon_sym_enum] = ACTIONS(3513), + [anon_sym_class] = ACTIONS(3513), + [anon_sym_struct] = ACTIONS(3513), + [anon_sym_union] = ACTIONS(3513), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3513), + [anon_sym_decltype] = ACTIONS(3513), + [anon_sym_virtual] = ACTIONS(3513), + [anon_sym_alignas] = ACTIONS(3513), + [anon_sym_explicit] = ACTIONS(3513), + [anon_sym_typename] = ACTIONS(3513), + [anon_sym_template] = ACTIONS(3513), + [anon_sym_operator] = ACTIONS(3513), + [anon_sym_friend] = ACTIONS(3513), + [anon_sym_public] = ACTIONS(3513), + [anon_sym_private] = ACTIONS(3513), + [anon_sym_protected] = ACTIONS(3513), + [anon_sym_using] = ACTIONS(3513), + [anon_sym_static_assert] = ACTIONS(3513), + [sym_semgrep_metavar] = ACTIONS(3515), + }, + [2309] = { + [sym_identifier] = ACTIONS(5793), + [aux_sym_preproc_def_token1] = ACTIONS(5793), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5795), + [aux_sym_preproc_if_token1] = ACTIONS(5793), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5793), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5793), + [sym_preproc_directive] = ACTIONS(5793), + [anon_sym_LPAREN2] = ACTIONS(5795), + [anon_sym_TILDE] = ACTIONS(5795), + [anon_sym_STAR] = ACTIONS(5795), + [anon_sym_AMP_AMP] = ACTIONS(5795), + [anon_sym_AMP] = ACTIONS(5793), + [anon_sym___extension__] = ACTIONS(5793), + [anon_sym_typedef] = ACTIONS(5793), + [anon_sym_extern] = ACTIONS(5793), + [anon_sym___attribute__] = ACTIONS(5793), + [anon_sym_COLON_COLON] = ACTIONS(5795), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5795), + [anon_sym___declspec] = ACTIONS(5793), + [anon_sym___based] = ACTIONS(5793), + [anon_sym_RBRACE] = ACTIONS(5795), + [anon_sym_signed] = ACTIONS(5793), + [anon_sym_unsigned] = ACTIONS(5793), + [anon_sym_long] = ACTIONS(5793), + [anon_sym_short] = ACTIONS(5793), + [anon_sym_LBRACK] = ACTIONS(5793), + [anon_sym_static] = ACTIONS(5793), + [anon_sym_register] = ACTIONS(5793), + [anon_sym_inline] = ACTIONS(5793), + [anon_sym___inline] = ACTIONS(5793), + [anon_sym___inline__] = ACTIONS(5793), + [anon_sym___forceinline] = ACTIONS(5793), + [anon_sym_thread_local] = ACTIONS(5793), + [anon_sym___thread] = ACTIONS(5793), + [anon_sym_const] = ACTIONS(5793), + [anon_sym_constexpr] = ACTIONS(5793), + [anon_sym_volatile] = ACTIONS(5793), + [anon_sym_restrict] = ACTIONS(5793), + [anon_sym___restrict__] = ACTIONS(5793), + [anon_sym__Atomic] = ACTIONS(5793), + [anon_sym__Noreturn] = ACTIONS(5793), + [anon_sym_noreturn] = ACTIONS(5793), + [anon_sym_mutable] = ACTIONS(5793), + [anon_sym_constinit] = ACTIONS(5793), + [anon_sym_consteval] = ACTIONS(5793), + [sym_primitive_type] = ACTIONS(5793), + [anon_sym_enum] = ACTIONS(5793), + [anon_sym_class] = ACTIONS(5793), + [anon_sym_struct] = ACTIONS(5793), + [anon_sym_union] = ACTIONS(5793), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5793), + [anon_sym_decltype] = ACTIONS(5793), + [anon_sym_virtual] = ACTIONS(5793), + [anon_sym_alignas] = ACTIONS(5793), + [anon_sym_explicit] = ACTIONS(5793), + [anon_sym_typename] = ACTIONS(5793), + [anon_sym_template] = ACTIONS(5793), + [anon_sym_operator] = ACTIONS(5793), + [anon_sym_friend] = ACTIONS(5793), + [anon_sym_public] = ACTIONS(5793), + [anon_sym_private] = ACTIONS(5793), + [anon_sym_protected] = ACTIONS(5793), + [anon_sym_using] = ACTIONS(5793), + [anon_sym_static_assert] = ACTIONS(5793), + [sym_semgrep_metavar] = ACTIONS(5795), + }, + [2310] = { + [sym_identifier] = ACTIONS(3684), + [aux_sym_preproc_def_token1] = ACTIONS(3684), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3686), + [aux_sym_preproc_if_token1] = ACTIONS(3684), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3684), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3684), + [sym_preproc_directive] = ACTIONS(3684), + [anon_sym_LPAREN2] = ACTIONS(3686), + [anon_sym_TILDE] = ACTIONS(3686), + [anon_sym_STAR] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3686), + [anon_sym_AMP] = ACTIONS(3684), + [anon_sym___extension__] = ACTIONS(3684), + [anon_sym_typedef] = ACTIONS(3684), + [anon_sym_extern] = ACTIONS(3684), + [anon_sym___attribute__] = ACTIONS(3684), + [anon_sym_COLON_COLON] = ACTIONS(3686), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3686), + [anon_sym___declspec] = ACTIONS(3684), + [anon_sym___based] = ACTIONS(3684), + [anon_sym_RBRACE] = ACTIONS(3686), + [anon_sym_signed] = ACTIONS(3684), + [anon_sym_unsigned] = ACTIONS(3684), + [anon_sym_long] = ACTIONS(3684), + [anon_sym_short] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3684), + [anon_sym_static] = ACTIONS(3684), + [anon_sym_register] = ACTIONS(3684), + [anon_sym_inline] = ACTIONS(3684), + [anon_sym___inline] = ACTIONS(3684), + [anon_sym___inline__] = ACTIONS(3684), + [anon_sym___forceinline] = ACTIONS(3684), + [anon_sym_thread_local] = ACTIONS(3684), + [anon_sym___thread] = ACTIONS(3684), + [anon_sym_const] = ACTIONS(3684), + [anon_sym_constexpr] = ACTIONS(3684), + [anon_sym_volatile] = ACTIONS(3684), + [anon_sym_restrict] = ACTIONS(3684), + [anon_sym___restrict__] = ACTIONS(3684), + [anon_sym__Atomic] = ACTIONS(3684), + [anon_sym__Noreturn] = ACTIONS(3684), + [anon_sym_noreturn] = ACTIONS(3684), + [anon_sym_mutable] = ACTIONS(3684), + [anon_sym_constinit] = ACTIONS(3684), + [anon_sym_consteval] = ACTIONS(3684), + [sym_primitive_type] = ACTIONS(3684), + [anon_sym_enum] = ACTIONS(3684), + [anon_sym_class] = ACTIONS(3684), + [anon_sym_struct] = ACTIONS(3684), + [anon_sym_union] = ACTIONS(3684), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3684), + [anon_sym_decltype] = ACTIONS(3684), + [anon_sym_virtual] = ACTIONS(3684), + [anon_sym_alignas] = ACTIONS(3684), + [anon_sym_explicit] = ACTIONS(3684), + [anon_sym_typename] = ACTIONS(3684), + [anon_sym_template] = ACTIONS(3684), + [anon_sym_operator] = ACTIONS(3684), + [anon_sym_friend] = ACTIONS(3684), + [anon_sym_public] = ACTIONS(3684), + [anon_sym_private] = ACTIONS(3684), + [anon_sym_protected] = ACTIONS(3684), + [anon_sym_using] = ACTIONS(3684), + [anon_sym_static_assert] = ACTIONS(3684), + [sym_semgrep_metavar] = ACTIONS(3686), + }, + [2311] = { + [sym_identifier] = ACTIONS(3529), + [aux_sym_preproc_def_token1] = ACTIONS(3529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3531), + [aux_sym_preproc_if_token1] = ACTIONS(3529), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3529), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3529), + [sym_preproc_directive] = ACTIONS(3529), + [anon_sym_LPAREN2] = ACTIONS(3531), + [anon_sym_TILDE] = ACTIONS(3531), + [anon_sym_STAR] = ACTIONS(3531), + [anon_sym_AMP_AMP] = ACTIONS(3531), + [anon_sym_AMP] = ACTIONS(3529), + [anon_sym___extension__] = ACTIONS(3529), + [anon_sym_typedef] = ACTIONS(3529), + [anon_sym_extern] = ACTIONS(3529), + [anon_sym___attribute__] = ACTIONS(3529), + [anon_sym_COLON_COLON] = ACTIONS(3531), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3531), + [anon_sym___declspec] = ACTIONS(3529), + [anon_sym___based] = ACTIONS(3529), + [anon_sym_RBRACE] = ACTIONS(3531), + [anon_sym_signed] = ACTIONS(3529), + [anon_sym_unsigned] = ACTIONS(3529), + [anon_sym_long] = ACTIONS(3529), + [anon_sym_short] = ACTIONS(3529), + [anon_sym_LBRACK] = ACTIONS(3529), + [anon_sym_static] = ACTIONS(3529), + [anon_sym_register] = ACTIONS(3529), + [anon_sym_inline] = ACTIONS(3529), + [anon_sym___inline] = ACTIONS(3529), + [anon_sym___inline__] = ACTIONS(3529), + [anon_sym___forceinline] = ACTIONS(3529), + [anon_sym_thread_local] = ACTIONS(3529), + [anon_sym___thread] = ACTIONS(3529), + [anon_sym_const] = ACTIONS(3529), + [anon_sym_constexpr] = ACTIONS(3529), + [anon_sym_volatile] = ACTIONS(3529), + [anon_sym_restrict] = ACTIONS(3529), + [anon_sym___restrict__] = ACTIONS(3529), + [anon_sym__Atomic] = ACTIONS(3529), + [anon_sym__Noreturn] = ACTIONS(3529), + [anon_sym_noreturn] = ACTIONS(3529), + [anon_sym_mutable] = ACTIONS(3529), + [anon_sym_constinit] = ACTIONS(3529), + [anon_sym_consteval] = ACTIONS(3529), + [sym_primitive_type] = ACTIONS(3529), + [anon_sym_enum] = ACTIONS(3529), + [anon_sym_class] = ACTIONS(3529), + [anon_sym_struct] = ACTIONS(3529), + [anon_sym_union] = ACTIONS(3529), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3529), + [anon_sym_decltype] = ACTIONS(3529), + [anon_sym_virtual] = ACTIONS(3529), + [anon_sym_alignas] = ACTIONS(3529), + [anon_sym_explicit] = ACTIONS(3529), + [anon_sym_typename] = ACTIONS(3529), + [anon_sym_template] = ACTIONS(3529), + [anon_sym_operator] = ACTIONS(3529), + [anon_sym_friend] = ACTIONS(3529), + [anon_sym_public] = ACTIONS(3529), + [anon_sym_private] = ACTIONS(3529), + [anon_sym_protected] = ACTIONS(3529), + [anon_sym_using] = ACTIONS(3529), + [anon_sym_static_assert] = ACTIONS(3529), + [sym_semgrep_metavar] = ACTIONS(3531), + }, + [2312] = { + [sym_identifier] = ACTIONS(5797), + [aux_sym_preproc_def_token1] = ACTIONS(5797), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5799), + [aux_sym_preproc_if_token1] = ACTIONS(5797), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5797), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5797), + [sym_preproc_directive] = ACTIONS(5797), + [anon_sym_LPAREN2] = ACTIONS(5799), + [anon_sym_TILDE] = ACTIONS(5799), + [anon_sym_STAR] = ACTIONS(5799), + [anon_sym_AMP_AMP] = ACTIONS(5799), + [anon_sym_AMP] = ACTIONS(5797), + [anon_sym___extension__] = ACTIONS(5797), + [anon_sym_typedef] = ACTIONS(5797), + [anon_sym_extern] = ACTIONS(5797), + [anon_sym___attribute__] = ACTIONS(5797), + [anon_sym_COLON_COLON] = ACTIONS(5799), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5799), + [anon_sym___declspec] = ACTIONS(5797), + [anon_sym___based] = ACTIONS(5797), + [anon_sym_RBRACE] = ACTIONS(5799), + [anon_sym_signed] = ACTIONS(5797), + [anon_sym_unsigned] = ACTIONS(5797), + [anon_sym_long] = ACTIONS(5797), + [anon_sym_short] = ACTIONS(5797), + [anon_sym_LBRACK] = ACTIONS(5797), + [anon_sym_static] = ACTIONS(5797), + [anon_sym_register] = ACTIONS(5797), + [anon_sym_inline] = ACTIONS(5797), + [anon_sym___inline] = ACTIONS(5797), + [anon_sym___inline__] = ACTIONS(5797), + [anon_sym___forceinline] = ACTIONS(5797), + [anon_sym_thread_local] = ACTIONS(5797), + [anon_sym___thread] = ACTIONS(5797), + [anon_sym_const] = ACTIONS(5797), + [anon_sym_constexpr] = ACTIONS(5797), + [anon_sym_volatile] = ACTIONS(5797), + [anon_sym_restrict] = ACTIONS(5797), + [anon_sym___restrict__] = ACTIONS(5797), + [anon_sym__Atomic] = ACTIONS(5797), + [anon_sym__Noreturn] = ACTIONS(5797), + [anon_sym_noreturn] = ACTIONS(5797), + [anon_sym_mutable] = ACTIONS(5797), + [anon_sym_constinit] = ACTIONS(5797), + [anon_sym_consteval] = ACTIONS(5797), + [sym_primitive_type] = ACTIONS(5797), + [anon_sym_enum] = ACTIONS(5797), + [anon_sym_class] = ACTIONS(5797), + [anon_sym_struct] = ACTIONS(5797), + [anon_sym_union] = ACTIONS(5797), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5797), + [anon_sym_decltype] = ACTIONS(5797), + [anon_sym_virtual] = ACTIONS(5797), + [anon_sym_alignas] = ACTIONS(5797), + [anon_sym_explicit] = ACTIONS(5797), + [anon_sym_typename] = ACTIONS(5797), + [anon_sym_template] = ACTIONS(5797), + [anon_sym_operator] = ACTIONS(5797), + [anon_sym_friend] = ACTIONS(5797), + [anon_sym_public] = ACTIONS(5797), + [anon_sym_private] = ACTIONS(5797), + [anon_sym_protected] = ACTIONS(5797), + [anon_sym_using] = ACTIONS(5797), + [anon_sym_static_assert] = ACTIONS(5797), + [sym_semgrep_metavar] = ACTIONS(5799), + }, + [2313] = { + [sym_identifier] = ACTIONS(3461), + [aux_sym_preproc_def_token1] = ACTIONS(3461), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3463), + [aux_sym_preproc_if_token1] = ACTIONS(3461), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3461), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3461), + [sym_preproc_directive] = ACTIONS(3461), + [anon_sym_LPAREN2] = ACTIONS(3463), + [anon_sym_TILDE] = ACTIONS(3463), + [anon_sym_STAR] = ACTIONS(3463), + [anon_sym_AMP_AMP] = ACTIONS(3463), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym___extension__] = ACTIONS(3461), + [anon_sym_typedef] = ACTIONS(3461), + [anon_sym_extern] = ACTIONS(3461), + [anon_sym___attribute__] = ACTIONS(3461), + [anon_sym_COLON_COLON] = ACTIONS(3463), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3463), + [anon_sym___declspec] = ACTIONS(3461), + [anon_sym___based] = ACTIONS(3461), + [anon_sym_RBRACE] = ACTIONS(3463), + [anon_sym_signed] = ACTIONS(3461), + [anon_sym_unsigned] = ACTIONS(3461), + [anon_sym_long] = ACTIONS(3461), + [anon_sym_short] = ACTIONS(3461), + [anon_sym_LBRACK] = ACTIONS(3461), + [anon_sym_static] = ACTIONS(3461), + [anon_sym_register] = ACTIONS(3461), + [anon_sym_inline] = ACTIONS(3461), + [anon_sym___inline] = ACTIONS(3461), + [anon_sym___inline__] = ACTIONS(3461), + [anon_sym___forceinline] = ACTIONS(3461), + [anon_sym_thread_local] = ACTIONS(3461), + [anon_sym___thread] = ACTIONS(3461), + [anon_sym_const] = ACTIONS(3461), + [anon_sym_constexpr] = ACTIONS(3461), + [anon_sym_volatile] = ACTIONS(3461), + [anon_sym_restrict] = ACTIONS(3461), + [anon_sym___restrict__] = ACTIONS(3461), + [anon_sym__Atomic] = ACTIONS(3461), + [anon_sym__Noreturn] = ACTIONS(3461), + [anon_sym_noreturn] = ACTIONS(3461), + [anon_sym_mutable] = ACTIONS(3461), + [anon_sym_constinit] = ACTIONS(3461), + [anon_sym_consteval] = ACTIONS(3461), + [sym_primitive_type] = ACTIONS(3461), + [anon_sym_enum] = ACTIONS(3461), + [anon_sym_class] = ACTIONS(3461), + [anon_sym_struct] = ACTIONS(3461), + [anon_sym_union] = ACTIONS(3461), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3461), + [anon_sym_decltype] = ACTIONS(3461), + [anon_sym_virtual] = ACTIONS(3461), + [anon_sym_alignas] = ACTIONS(3461), + [anon_sym_explicit] = ACTIONS(3461), + [anon_sym_typename] = ACTIONS(3461), + [anon_sym_template] = ACTIONS(3461), + [anon_sym_operator] = ACTIONS(3461), + [anon_sym_friend] = ACTIONS(3461), + [anon_sym_public] = ACTIONS(3461), + [anon_sym_private] = ACTIONS(3461), + [anon_sym_protected] = ACTIONS(3461), + [anon_sym_using] = ACTIONS(3461), + [anon_sym_static_assert] = ACTIONS(3461), + [sym_semgrep_metavar] = ACTIONS(3463), + }, + [2314] = { + [sym_identifier] = ACTIONS(5801), + [aux_sym_preproc_def_token1] = ACTIONS(5801), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5803), + [aux_sym_preproc_if_token1] = ACTIONS(5801), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5801), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5801), + [sym_preproc_directive] = ACTIONS(5801), + [anon_sym_LPAREN2] = ACTIONS(5803), + [anon_sym_TILDE] = ACTIONS(5803), + [anon_sym_STAR] = ACTIONS(5803), + [anon_sym_AMP_AMP] = ACTIONS(5803), + [anon_sym_AMP] = ACTIONS(5801), + [anon_sym___extension__] = ACTIONS(5801), + [anon_sym_typedef] = ACTIONS(5801), + [anon_sym_extern] = ACTIONS(5801), + [anon_sym___attribute__] = ACTIONS(5801), + [anon_sym_COLON_COLON] = ACTIONS(5803), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5803), + [anon_sym___declspec] = ACTIONS(5801), + [anon_sym___based] = ACTIONS(5801), + [anon_sym_RBRACE] = ACTIONS(5803), + [anon_sym_signed] = ACTIONS(5801), + [anon_sym_unsigned] = ACTIONS(5801), + [anon_sym_long] = ACTIONS(5801), + [anon_sym_short] = ACTIONS(5801), + [anon_sym_LBRACK] = ACTIONS(5801), + [anon_sym_static] = ACTIONS(5801), + [anon_sym_register] = ACTIONS(5801), + [anon_sym_inline] = ACTIONS(5801), + [anon_sym___inline] = ACTIONS(5801), + [anon_sym___inline__] = ACTIONS(5801), + [anon_sym___forceinline] = ACTIONS(5801), + [anon_sym_thread_local] = ACTIONS(5801), + [anon_sym___thread] = ACTIONS(5801), + [anon_sym_const] = ACTIONS(5801), + [anon_sym_constexpr] = ACTIONS(5801), + [anon_sym_volatile] = ACTIONS(5801), + [anon_sym_restrict] = ACTIONS(5801), + [anon_sym___restrict__] = ACTIONS(5801), + [anon_sym__Atomic] = ACTIONS(5801), + [anon_sym__Noreturn] = ACTIONS(5801), + [anon_sym_noreturn] = ACTIONS(5801), + [anon_sym_mutable] = ACTIONS(5801), + [anon_sym_constinit] = ACTIONS(5801), + [anon_sym_consteval] = ACTIONS(5801), + [sym_primitive_type] = ACTIONS(5801), + [anon_sym_enum] = ACTIONS(5801), + [anon_sym_class] = ACTIONS(5801), + [anon_sym_struct] = ACTIONS(5801), + [anon_sym_union] = ACTIONS(5801), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5801), + [anon_sym_decltype] = ACTIONS(5801), + [anon_sym_virtual] = ACTIONS(5801), + [anon_sym_alignas] = ACTIONS(5801), + [anon_sym_explicit] = ACTIONS(5801), + [anon_sym_typename] = ACTIONS(5801), + [anon_sym_template] = ACTIONS(5801), + [anon_sym_operator] = ACTIONS(5801), + [anon_sym_friend] = ACTIONS(5801), + [anon_sym_public] = ACTIONS(5801), + [anon_sym_private] = ACTIONS(5801), + [anon_sym_protected] = ACTIONS(5801), + [anon_sym_using] = ACTIONS(5801), + [anon_sym_static_assert] = ACTIONS(5801), + [sym_semgrep_metavar] = ACTIONS(5803), + }, + [2315] = { + [sym_identifier] = ACTIONS(3533), + [aux_sym_preproc_def_token1] = ACTIONS(3533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3535), + [aux_sym_preproc_if_token1] = ACTIONS(3533), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3533), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3533), + [sym_preproc_directive] = ACTIONS(3533), + [anon_sym_LPAREN2] = ACTIONS(3535), + [anon_sym_TILDE] = ACTIONS(3535), + [anon_sym_STAR] = ACTIONS(3535), + [anon_sym_AMP_AMP] = ACTIONS(3535), + [anon_sym_AMP] = ACTIONS(3533), + [anon_sym___extension__] = ACTIONS(3533), + [anon_sym_typedef] = ACTIONS(3533), + [anon_sym_extern] = ACTIONS(3533), + [anon_sym___attribute__] = ACTIONS(3533), + [anon_sym_COLON_COLON] = ACTIONS(3535), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3535), + [anon_sym___declspec] = ACTIONS(3533), + [anon_sym___based] = ACTIONS(3533), + [anon_sym_RBRACE] = ACTIONS(3535), + [anon_sym_signed] = ACTIONS(3533), + [anon_sym_unsigned] = ACTIONS(3533), + [anon_sym_long] = ACTIONS(3533), + [anon_sym_short] = ACTIONS(3533), + [anon_sym_LBRACK] = ACTIONS(3533), + [anon_sym_static] = ACTIONS(3533), + [anon_sym_register] = ACTIONS(3533), + [anon_sym_inline] = ACTIONS(3533), + [anon_sym___inline] = ACTIONS(3533), + [anon_sym___inline__] = ACTIONS(3533), + [anon_sym___forceinline] = ACTIONS(3533), + [anon_sym_thread_local] = ACTIONS(3533), + [anon_sym___thread] = ACTIONS(3533), + [anon_sym_const] = ACTIONS(3533), + [anon_sym_constexpr] = ACTIONS(3533), + [anon_sym_volatile] = ACTIONS(3533), + [anon_sym_restrict] = ACTIONS(3533), + [anon_sym___restrict__] = ACTIONS(3533), + [anon_sym__Atomic] = ACTIONS(3533), + [anon_sym__Noreturn] = ACTIONS(3533), + [anon_sym_noreturn] = ACTIONS(3533), + [anon_sym_mutable] = ACTIONS(3533), + [anon_sym_constinit] = ACTIONS(3533), + [anon_sym_consteval] = ACTIONS(3533), + [sym_primitive_type] = ACTIONS(3533), + [anon_sym_enum] = ACTIONS(3533), + [anon_sym_class] = ACTIONS(3533), + [anon_sym_struct] = ACTIONS(3533), + [anon_sym_union] = ACTIONS(3533), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3533), + [anon_sym_decltype] = ACTIONS(3533), + [anon_sym_virtual] = ACTIONS(3533), + [anon_sym_alignas] = ACTIONS(3533), + [anon_sym_explicit] = ACTIONS(3533), + [anon_sym_typename] = ACTIONS(3533), + [anon_sym_template] = ACTIONS(3533), + [anon_sym_operator] = ACTIONS(3533), + [anon_sym_friend] = ACTIONS(3533), + [anon_sym_public] = ACTIONS(3533), + [anon_sym_private] = ACTIONS(3533), + [anon_sym_protected] = ACTIONS(3533), + [anon_sym_using] = ACTIONS(3533), + [anon_sym_static_assert] = ACTIONS(3533), + [sym_semgrep_metavar] = ACTIONS(3535), + }, + [2316] = { + [sym_identifier] = ACTIONS(3465), + [aux_sym_preproc_def_token1] = ACTIONS(3465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3467), + [aux_sym_preproc_if_token1] = ACTIONS(3465), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3465), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3465), + [sym_preproc_directive] = ACTIONS(3465), + [anon_sym_LPAREN2] = ACTIONS(3467), + [anon_sym_TILDE] = ACTIONS(3467), + [anon_sym_STAR] = ACTIONS(3467), + [anon_sym_AMP_AMP] = ACTIONS(3467), + [anon_sym_AMP] = ACTIONS(3465), + [anon_sym___extension__] = ACTIONS(3465), + [anon_sym_typedef] = ACTIONS(3465), + [anon_sym_extern] = ACTIONS(3465), + [anon_sym___attribute__] = ACTIONS(3465), + [anon_sym_COLON_COLON] = ACTIONS(3467), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3467), + [anon_sym___declspec] = ACTIONS(3465), + [anon_sym___based] = ACTIONS(3465), + [anon_sym_RBRACE] = ACTIONS(3467), + [anon_sym_signed] = ACTIONS(3465), + [anon_sym_unsigned] = ACTIONS(3465), + [anon_sym_long] = ACTIONS(3465), + [anon_sym_short] = ACTIONS(3465), + [anon_sym_LBRACK] = ACTIONS(3465), + [anon_sym_static] = ACTIONS(3465), + [anon_sym_register] = ACTIONS(3465), + [anon_sym_inline] = ACTIONS(3465), + [anon_sym___inline] = ACTIONS(3465), + [anon_sym___inline__] = ACTIONS(3465), + [anon_sym___forceinline] = ACTIONS(3465), + [anon_sym_thread_local] = ACTIONS(3465), + [anon_sym___thread] = ACTIONS(3465), + [anon_sym_const] = ACTIONS(3465), + [anon_sym_constexpr] = ACTIONS(3465), + [anon_sym_volatile] = ACTIONS(3465), + [anon_sym_restrict] = ACTIONS(3465), + [anon_sym___restrict__] = ACTIONS(3465), + [anon_sym__Atomic] = ACTIONS(3465), + [anon_sym__Noreturn] = ACTIONS(3465), + [anon_sym_noreturn] = ACTIONS(3465), + [anon_sym_mutable] = ACTIONS(3465), + [anon_sym_constinit] = ACTIONS(3465), + [anon_sym_consteval] = ACTIONS(3465), + [sym_primitive_type] = ACTIONS(3465), + [anon_sym_enum] = ACTIONS(3465), + [anon_sym_class] = ACTIONS(3465), + [anon_sym_struct] = ACTIONS(3465), + [anon_sym_union] = ACTIONS(3465), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3465), + [anon_sym_decltype] = ACTIONS(3465), + [anon_sym_virtual] = ACTIONS(3465), + [anon_sym_alignas] = ACTIONS(3465), + [anon_sym_explicit] = ACTIONS(3465), + [anon_sym_typename] = ACTIONS(3465), + [anon_sym_template] = ACTIONS(3465), + [anon_sym_operator] = ACTIONS(3465), + [anon_sym_friend] = ACTIONS(3465), + [anon_sym_public] = ACTIONS(3465), + [anon_sym_private] = ACTIONS(3465), + [anon_sym_protected] = ACTIONS(3465), + [anon_sym_using] = ACTIONS(3465), + [anon_sym_static_assert] = ACTIONS(3465), + [sym_semgrep_metavar] = ACTIONS(3467), + }, + [2317] = { + [sym_identifier] = ACTIONS(3294), + [aux_sym_preproc_def_token1] = ACTIONS(3294), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3296), + [aux_sym_preproc_if_token1] = ACTIONS(3294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3294), + [sym_preproc_directive] = ACTIONS(3294), + [anon_sym_LPAREN2] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_AMP] = ACTIONS(3294), + [anon_sym___extension__] = ACTIONS(3294), + [anon_sym_typedef] = ACTIONS(3294), + [anon_sym_extern] = ACTIONS(3294), + [anon_sym___attribute__] = ACTIONS(3294), + [anon_sym_COLON_COLON] = ACTIONS(3296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3296), + [anon_sym___declspec] = ACTIONS(3294), + [anon_sym___based] = ACTIONS(3294), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_signed] = ACTIONS(3294), + [anon_sym_unsigned] = ACTIONS(3294), + [anon_sym_long] = ACTIONS(3294), + [anon_sym_short] = ACTIONS(3294), + [anon_sym_LBRACK] = ACTIONS(3294), + [anon_sym_static] = ACTIONS(3294), + [anon_sym_register] = ACTIONS(3294), + [anon_sym_inline] = ACTIONS(3294), + [anon_sym___inline] = ACTIONS(3294), + [anon_sym___inline__] = ACTIONS(3294), + [anon_sym___forceinline] = ACTIONS(3294), + [anon_sym_thread_local] = ACTIONS(3294), + [anon_sym___thread] = ACTIONS(3294), + [anon_sym_const] = ACTIONS(3294), + [anon_sym_constexpr] = ACTIONS(3294), + [anon_sym_volatile] = ACTIONS(3294), + [anon_sym_restrict] = ACTIONS(3294), + [anon_sym___restrict__] = ACTIONS(3294), + [anon_sym__Atomic] = ACTIONS(3294), + [anon_sym__Noreturn] = ACTIONS(3294), + [anon_sym_noreturn] = ACTIONS(3294), + [anon_sym_mutable] = ACTIONS(3294), + [anon_sym_constinit] = ACTIONS(3294), + [anon_sym_consteval] = ACTIONS(3294), + [sym_primitive_type] = ACTIONS(3294), + [anon_sym_enum] = ACTIONS(3294), + [anon_sym_class] = ACTIONS(3294), + [anon_sym_struct] = ACTIONS(3294), + [anon_sym_union] = ACTIONS(3294), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3294), + [anon_sym_decltype] = ACTIONS(3294), + [anon_sym_virtual] = ACTIONS(3294), + [anon_sym_alignas] = ACTIONS(3294), + [anon_sym_explicit] = ACTIONS(3294), + [anon_sym_typename] = ACTIONS(3294), + [anon_sym_template] = ACTIONS(3294), + [anon_sym_operator] = ACTIONS(3294), + [anon_sym_friend] = ACTIONS(3294), + [anon_sym_public] = ACTIONS(3294), + [anon_sym_private] = ACTIONS(3294), + [anon_sym_protected] = ACTIONS(3294), + [anon_sym_using] = ACTIONS(3294), + [anon_sym_static_assert] = ACTIONS(3294), + [sym_semgrep_metavar] = ACTIONS(3296), + }, + [2318] = { + [ts_builtin_sym_end] = ACTIONS(6234), + [sym_identifier] = ACTIONS(6236), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6234), + [anon_sym_COMMA] = ACTIONS(6234), + [anon_sym_RPAREN] = ACTIONS(6234), + [aux_sym_preproc_if_token2] = ACTIONS(6234), + [aux_sym_preproc_else_token1] = ACTIONS(6234), + [aux_sym_preproc_elif_token1] = ACTIONS(6236), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6234), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6234), + [anon_sym_LPAREN2] = ACTIONS(6234), + [anon_sym_DASH] = ACTIONS(6236), + [anon_sym_PLUS] = ACTIONS(6236), + [anon_sym_STAR] = ACTIONS(6236), + [anon_sym_SLASH] = ACTIONS(6236), + [anon_sym_PERCENT] = ACTIONS(6236), + [anon_sym_PIPE_PIPE] = ACTIONS(6234), + [anon_sym_AMP_AMP] = ACTIONS(6234), + [anon_sym_PIPE] = ACTIONS(6236), + [anon_sym_CARET] = ACTIONS(6236), + [anon_sym_AMP] = ACTIONS(6236), + [anon_sym_EQ_EQ] = ACTIONS(6234), + [anon_sym_BANG_EQ] = ACTIONS(6234), + [anon_sym_GT] = ACTIONS(6236), + [anon_sym_GT_EQ] = ACTIONS(6234), + [anon_sym_LT_EQ] = ACTIONS(6236), + [anon_sym_LT] = ACTIONS(6236), + [anon_sym_LT_LT] = ACTIONS(6236), + [anon_sym_GT_GT] = ACTIONS(6236), + [anon_sym_SEMI] = ACTIONS(6234), + [anon_sym___attribute__] = ACTIONS(6236), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6234), + [anon_sym_LBRACE] = ACTIONS(6234), + [anon_sym_RBRACE] = ACTIONS(6234), + [anon_sym_LBRACK] = ACTIONS(6236), + [anon_sym_RBRACK] = ACTIONS(6234), + [anon_sym_EQ] = ACTIONS(6236), + [anon_sym_COLON] = ACTIONS(6234), + [anon_sym_QMARK] = ACTIONS(6234), + [anon_sym_STAR_EQ] = ACTIONS(6234), + [anon_sym_SLASH_EQ] = ACTIONS(6234), + [anon_sym_PERCENT_EQ] = ACTIONS(6234), + [anon_sym_PLUS_EQ] = ACTIONS(6234), + [anon_sym_DASH_EQ] = ACTIONS(6234), + [anon_sym_LT_LT_EQ] = ACTIONS(6234), + [anon_sym_GT_GT_EQ] = ACTIONS(6234), + [anon_sym_AMP_EQ] = ACTIONS(6234), + [anon_sym_CARET_EQ] = ACTIONS(6234), + [anon_sym_PIPE_EQ] = ACTIONS(6234), + [anon_sym_and_eq] = ACTIONS(6236), + [anon_sym_or_eq] = ACTIONS(6236), + [anon_sym_xor_eq] = ACTIONS(6236), + [anon_sym_LT_EQ_GT] = ACTIONS(6234), + [anon_sym_or] = ACTIONS(6236), + [anon_sym_and] = ACTIONS(6236), + [anon_sym_bitor] = ACTIONS(6236), + [anon_sym_xor] = ACTIONS(6236), + [anon_sym_bitand] = ACTIONS(6236), + [anon_sym_not_eq] = ACTIONS(6236), + [anon_sym_DASH_DASH] = ACTIONS(6234), + [anon_sym_PLUS_PLUS] = ACTIONS(6234), + [anon_sym_DOT] = ACTIONS(6236), + [anon_sym_DOT_STAR] = ACTIONS(6234), + [anon_sym_DASH_GT] = ACTIONS(6234), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(6236), + }, + [2319] = { + [sym_identifier] = ACTIONS(3541), + [aux_sym_preproc_def_token1] = ACTIONS(3541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3543), + [aux_sym_preproc_if_token1] = ACTIONS(3541), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3541), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3541), + [sym_preproc_directive] = ACTIONS(3541), + [anon_sym_LPAREN2] = ACTIONS(3543), + [anon_sym_TILDE] = ACTIONS(3543), + [anon_sym_STAR] = ACTIONS(3543), + [anon_sym_AMP_AMP] = ACTIONS(3543), + [anon_sym_AMP] = ACTIONS(3541), + [anon_sym___extension__] = ACTIONS(3541), + [anon_sym_typedef] = ACTIONS(3541), + [anon_sym_extern] = ACTIONS(3541), + [anon_sym___attribute__] = ACTIONS(3541), + [anon_sym_COLON_COLON] = ACTIONS(3543), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3543), + [anon_sym___declspec] = ACTIONS(3541), + [anon_sym___based] = ACTIONS(3541), + [anon_sym_RBRACE] = ACTIONS(3543), + [anon_sym_signed] = ACTIONS(3541), + [anon_sym_unsigned] = ACTIONS(3541), + [anon_sym_long] = ACTIONS(3541), + [anon_sym_short] = ACTIONS(3541), + [anon_sym_LBRACK] = ACTIONS(3541), + [anon_sym_static] = ACTIONS(3541), + [anon_sym_register] = ACTIONS(3541), + [anon_sym_inline] = ACTIONS(3541), + [anon_sym___inline] = ACTIONS(3541), + [anon_sym___inline__] = ACTIONS(3541), + [anon_sym___forceinline] = ACTIONS(3541), + [anon_sym_thread_local] = ACTIONS(3541), + [anon_sym___thread] = ACTIONS(3541), + [anon_sym_const] = ACTIONS(3541), + [anon_sym_constexpr] = ACTIONS(3541), + [anon_sym_volatile] = ACTIONS(3541), + [anon_sym_restrict] = ACTIONS(3541), + [anon_sym___restrict__] = ACTIONS(3541), + [anon_sym__Atomic] = ACTIONS(3541), + [anon_sym__Noreturn] = ACTIONS(3541), + [anon_sym_noreturn] = ACTIONS(3541), + [anon_sym_mutable] = ACTIONS(3541), + [anon_sym_constinit] = ACTIONS(3541), + [anon_sym_consteval] = ACTIONS(3541), + [sym_primitive_type] = ACTIONS(3541), + [anon_sym_enum] = ACTIONS(3541), + [anon_sym_class] = ACTIONS(3541), + [anon_sym_struct] = ACTIONS(3541), + [anon_sym_union] = ACTIONS(3541), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3541), + [anon_sym_decltype] = ACTIONS(3541), + [anon_sym_virtual] = ACTIONS(3541), + [anon_sym_alignas] = ACTIONS(3541), + [anon_sym_explicit] = ACTIONS(3541), + [anon_sym_typename] = ACTIONS(3541), + [anon_sym_template] = ACTIONS(3541), + [anon_sym_operator] = ACTIONS(3541), + [anon_sym_friend] = ACTIONS(3541), + [anon_sym_public] = ACTIONS(3541), + [anon_sym_private] = ACTIONS(3541), + [anon_sym_protected] = ACTIONS(3541), + [anon_sym_using] = ACTIONS(3541), + [anon_sym_static_assert] = ACTIONS(3541), + [sym_semgrep_metavar] = ACTIONS(3543), + }, + [2320] = { + [sym_identifier] = ACTIONS(3410), + [aux_sym_preproc_def_token1] = ACTIONS(3410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3412), + [aux_sym_preproc_if_token1] = ACTIONS(3410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3410), + [sym_preproc_directive] = ACTIONS(3410), + [anon_sym_LPAREN2] = ACTIONS(3412), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_AMP] = ACTIONS(3410), + [anon_sym___extension__] = ACTIONS(3410), + [anon_sym_typedef] = ACTIONS(3410), + [anon_sym_extern] = ACTIONS(3410), + [anon_sym___attribute__] = ACTIONS(3410), + [anon_sym_COLON_COLON] = ACTIONS(3412), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3412), + [anon_sym___declspec] = ACTIONS(3410), + [anon_sym___based] = ACTIONS(3410), + [anon_sym_RBRACE] = ACTIONS(3412), + [anon_sym_signed] = ACTIONS(3410), + [anon_sym_unsigned] = ACTIONS(3410), + [anon_sym_long] = ACTIONS(3410), + [anon_sym_short] = ACTIONS(3410), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_static] = ACTIONS(3410), + [anon_sym_register] = ACTIONS(3410), + [anon_sym_inline] = ACTIONS(3410), + [anon_sym___inline] = ACTIONS(3410), + [anon_sym___inline__] = ACTIONS(3410), + [anon_sym___forceinline] = ACTIONS(3410), + [anon_sym_thread_local] = ACTIONS(3410), + [anon_sym___thread] = ACTIONS(3410), + [anon_sym_const] = ACTIONS(3410), + [anon_sym_constexpr] = ACTIONS(3410), + [anon_sym_volatile] = ACTIONS(3410), + [anon_sym_restrict] = ACTIONS(3410), + [anon_sym___restrict__] = ACTIONS(3410), + [anon_sym__Atomic] = ACTIONS(3410), + [anon_sym__Noreturn] = ACTIONS(3410), + [anon_sym_noreturn] = ACTIONS(3410), + [anon_sym_mutable] = ACTIONS(3410), + [anon_sym_constinit] = ACTIONS(3410), + [anon_sym_consteval] = ACTIONS(3410), + [sym_primitive_type] = ACTIONS(3410), + [anon_sym_enum] = ACTIONS(3410), + [anon_sym_class] = ACTIONS(3410), + [anon_sym_struct] = ACTIONS(3410), + [anon_sym_union] = ACTIONS(3410), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3410), + [anon_sym_decltype] = ACTIONS(3410), + [anon_sym_virtual] = ACTIONS(3410), + [anon_sym_alignas] = ACTIONS(3410), + [anon_sym_explicit] = ACTIONS(3410), + [anon_sym_typename] = ACTIONS(3410), + [anon_sym_template] = ACTIONS(3410), + [anon_sym_operator] = ACTIONS(3410), + [anon_sym_friend] = ACTIONS(3410), + [anon_sym_public] = ACTIONS(3410), + [anon_sym_private] = ACTIONS(3410), + [anon_sym_protected] = ACTIONS(3410), + [anon_sym_using] = ACTIONS(3410), + [anon_sym_static_assert] = ACTIONS(3410), + [sym_semgrep_metavar] = ACTIONS(3412), + }, + [2321] = { + [ts_builtin_sym_end] = ACTIONS(6238), + [sym_identifier] = ACTIONS(6240), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6238), + [anon_sym_COMMA] = ACTIONS(6238), + [anon_sym_RPAREN] = ACTIONS(6238), + [aux_sym_preproc_if_token2] = ACTIONS(6238), + [aux_sym_preproc_else_token1] = ACTIONS(6238), + [aux_sym_preproc_elif_token1] = ACTIONS(6240), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6238), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6238), + [anon_sym_LPAREN2] = ACTIONS(6238), + [anon_sym_DASH] = ACTIONS(6240), + [anon_sym_PLUS] = ACTIONS(6240), + [anon_sym_STAR] = ACTIONS(6240), + [anon_sym_SLASH] = ACTIONS(6240), + [anon_sym_PERCENT] = ACTIONS(6240), + [anon_sym_PIPE_PIPE] = ACTIONS(6238), + [anon_sym_AMP_AMP] = ACTIONS(6238), + [anon_sym_PIPE] = ACTIONS(6240), + [anon_sym_CARET] = ACTIONS(6240), + [anon_sym_AMP] = ACTIONS(6240), + [anon_sym_EQ_EQ] = ACTIONS(6238), + [anon_sym_BANG_EQ] = ACTIONS(6238), + [anon_sym_GT] = ACTIONS(6240), + [anon_sym_GT_EQ] = ACTIONS(6238), + [anon_sym_LT_EQ] = ACTIONS(6240), + [anon_sym_LT] = ACTIONS(6240), + [anon_sym_LT_LT] = ACTIONS(6240), + [anon_sym_GT_GT] = ACTIONS(6240), + [anon_sym_SEMI] = ACTIONS(6238), + [anon_sym___attribute__] = ACTIONS(6240), + [anon_sym_LBRACE] = ACTIONS(6238), + [anon_sym_RBRACE] = ACTIONS(6238), + [anon_sym_LBRACK] = ACTIONS(6238), + [anon_sym_RBRACK] = ACTIONS(6238), + [anon_sym_EQ] = ACTIONS(6240), + [anon_sym_COLON] = ACTIONS(6238), + [anon_sym_QMARK] = ACTIONS(6238), + [anon_sym_STAR_EQ] = ACTIONS(6238), + [anon_sym_SLASH_EQ] = ACTIONS(6238), + [anon_sym_PERCENT_EQ] = ACTIONS(6238), + [anon_sym_PLUS_EQ] = ACTIONS(6238), + [anon_sym_DASH_EQ] = ACTIONS(6238), + [anon_sym_LT_LT_EQ] = ACTIONS(6238), + [anon_sym_GT_GT_EQ] = ACTIONS(6238), + [anon_sym_AMP_EQ] = ACTIONS(6238), + [anon_sym_CARET_EQ] = ACTIONS(6238), + [anon_sym_PIPE_EQ] = ACTIONS(6238), + [anon_sym_and_eq] = ACTIONS(6240), + [anon_sym_or_eq] = ACTIONS(6240), + [anon_sym_xor_eq] = ACTIONS(6240), + [anon_sym_LT_EQ_GT] = ACTIONS(6238), + [anon_sym_or] = ACTIONS(6240), + [anon_sym_and] = ACTIONS(6240), + [anon_sym_bitor] = ACTIONS(6240), + [anon_sym_xor] = ACTIONS(6240), + [anon_sym_bitand] = ACTIONS(6240), + [anon_sym_not_eq] = ACTIONS(6240), + [anon_sym_DASH_DASH] = ACTIONS(6238), + [anon_sym_PLUS_PLUS] = ACTIONS(6238), + [anon_sym_DOT] = ACTIONS(6240), + [anon_sym_DOT_STAR] = ACTIONS(6238), + [anon_sym_DASH_GT] = ACTIONS(6238), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6240), + [anon_sym_decltype] = ACTIONS(6240), + }, + [2322] = { + [ts_builtin_sym_end] = ACTIONS(6242), + [sym_identifier] = ACTIONS(6244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6242), + [anon_sym_COMMA] = ACTIONS(6242), + [anon_sym_RPAREN] = ACTIONS(6242), + [aux_sym_preproc_if_token2] = ACTIONS(6242), + [aux_sym_preproc_else_token1] = ACTIONS(6242), + [aux_sym_preproc_elif_token1] = ACTIONS(6244), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6242), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6242), + [anon_sym_LPAREN2] = ACTIONS(6242), + [anon_sym_DASH] = ACTIONS(6244), + [anon_sym_PLUS] = ACTIONS(6244), + [anon_sym_STAR] = ACTIONS(6244), + [anon_sym_SLASH] = ACTIONS(6244), + [anon_sym_PERCENT] = ACTIONS(6244), + [anon_sym_PIPE_PIPE] = ACTIONS(6242), + [anon_sym_AMP_AMP] = ACTIONS(6242), + [anon_sym_PIPE] = ACTIONS(6244), + [anon_sym_CARET] = ACTIONS(6244), + [anon_sym_AMP] = ACTIONS(6244), + [anon_sym_EQ_EQ] = ACTIONS(6242), + [anon_sym_BANG_EQ] = ACTIONS(6242), + [anon_sym_GT] = ACTIONS(6244), + [anon_sym_GT_EQ] = ACTIONS(6242), + [anon_sym_LT_EQ] = ACTIONS(6244), + [anon_sym_LT] = ACTIONS(6244), + [anon_sym_LT_LT] = ACTIONS(6244), + [anon_sym_GT_GT] = ACTIONS(6244), + [anon_sym_SEMI] = ACTIONS(6242), + [anon_sym___attribute__] = ACTIONS(6244), + [anon_sym_LBRACE] = ACTIONS(6242), + [anon_sym_RBRACE] = ACTIONS(6242), + [anon_sym_LBRACK] = ACTIONS(6242), + [anon_sym_RBRACK] = ACTIONS(6242), + [anon_sym_EQ] = ACTIONS(6244), + [anon_sym_COLON] = ACTIONS(6242), + [anon_sym_QMARK] = ACTIONS(6242), + [anon_sym_STAR_EQ] = ACTIONS(6242), + [anon_sym_SLASH_EQ] = ACTIONS(6242), + [anon_sym_PERCENT_EQ] = ACTIONS(6242), + [anon_sym_PLUS_EQ] = ACTIONS(6242), + [anon_sym_DASH_EQ] = ACTIONS(6242), + [anon_sym_LT_LT_EQ] = ACTIONS(6242), + [anon_sym_GT_GT_EQ] = ACTIONS(6242), + [anon_sym_AMP_EQ] = ACTIONS(6242), + [anon_sym_CARET_EQ] = ACTIONS(6242), + [anon_sym_PIPE_EQ] = ACTIONS(6242), + [anon_sym_and_eq] = ACTIONS(6244), + [anon_sym_or_eq] = ACTIONS(6244), + [anon_sym_xor_eq] = ACTIONS(6244), + [anon_sym_LT_EQ_GT] = ACTIONS(6242), + [anon_sym_or] = ACTIONS(6244), + [anon_sym_and] = ACTIONS(6244), + [anon_sym_bitor] = ACTIONS(6244), + [anon_sym_xor] = ACTIONS(6244), + [anon_sym_bitand] = ACTIONS(6244), + [anon_sym_not_eq] = ACTIONS(6244), + [anon_sym_DASH_DASH] = ACTIONS(6242), + [anon_sym_PLUS_PLUS] = ACTIONS(6242), + [anon_sym_DOT] = ACTIONS(6244), + [anon_sym_DOT_STAR] = ACTIONS(6242), + [anon_sym_DASH_GT] = ACTIONS(6242), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6244), + [anon_sym_decltype] = ACTIONS(6244), + }, + [2323] = { + [ts_builtin_sym_end] = ACTIONS(5981), + [sym_identifier] = ACTIONS(5983), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5981), + [anon_sym_COMMA] = ACTIONS(5981), + [anon_sym_RPAREN] = ACTIONS(5981), + [aux_sym_preproc_if_token2] = ACTIONS(5981), + [aux_sym_preproc_else_token1] = ACTIONS(5981), + [aux_sym_preproc_elif_token1] = ACTIONS(5983), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5981), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5981), + [anon_sym_LPAREN2] = ACTIONS(5981), + [anon_sym_DASH] = ACTIONS(5983), + [anon_sym_PLUS] = ACTIONS(5983), + [anon_sym_STAR] = ACTIONS(5983), + [anon_sym_SLASH] = ACTIONS(5983), + [anon_sym_PERCENT] = ACTIONS(5983), + [anon_sym_PIPE_PIPE] = ACTIONS(5981), + [anon_sym_AMP_AMP] = ACTIONS(5981), + [anon_sym_PIPE] = ACTIONS(5983), + [anon_sym_CARET] = ACTIONS(5983), + [anon_sym_AMP] = ACTIONS(5983), + [anon_sym_EQ_EQ] = ACTIONS(5981), + [anon_sym_BANG_EQ] = ACTIONS(5981), + [anon_sym_GT] = ACTIONS(5983), + [anon_sym_GT_EQ] = ACTIONS(5981), + [anon_sym_LT_EQ] = ACTIONS(5983), + [anon_sym_LT] = ACTIONS(5983), + [anon_sym_LT_LT] = ACTIONS(5983), + [anon_sym_GT_GT] = ACTIONS(5983), + [anon_sym_SEMI] = ACTIONS(5981), + [anon_sym___attribute__] = ACTIONS(5983), + [anon_sym_LBRACE] = ACTIONS(5981), + [anon_sym_RBRACE] = ACTIONS(5981), + [anon_sym_LBRACK] = ACTIONS(5981), + [anon_sym_RBRACK] = ACTIONS(5981), + [anon_sym_EQ] = ACTIONS(5983), + [anon_sym_COLON] = ACTIONS(5981), + [anon_sym_QMARK] = ACTIONS(5981), + [anon_sym_STAR_EQ] = ACTIONS(5981), + [anon_sym_SLASH_EQ] = ACTIONS(5981), + [anon_sym_PERCENT_EQ] = ACTIONS(5981), + [anon_sym_PLUS_EQ] = ACTIONS(5981), + [anon_sym_DASH_EQ] = ACTIONS(5981), + [anon_sym_LT_LT_EQ] = ACTIONS(5981), + [anon_sym_GT_GT_EQ] = ACTIONS(5981), + [anon_sym_AMP_EQ] = ACTIONS(5981), + [anon_sym_CARET_EQ] = ACTIONS(5981), + [anon_sym_PIPE_EQ] = ACTIONS(5981), + [anon_sym_and_eq] = ACTIONS(5983), + [anon_sym_or_eq] = ACTIONS(5983), + [anon_sym_xor_eq] = ACTIONS(5983), + [anon_sym_LT_EQ_GT] = ACTIONS(5981), + [anon_sym_or] = ACTIONS(5983), + [anon_sym_and] = ACTIONS(5983), + [anon_sym_bitor] = ACTIONS(5983), + [anon_sym_xor] = ACTIONS(5983), + [anon_sym_bitand] = ACTIONS(5983), + [anon_sym_not_eq] = ACTIONS(5983), + [anon_sym_DASH_DASH] = ACTIONS(5981), + [anon_sym_PLUS_PLUS] = ACTIONS(5981), + [anon_sym_DOT] = ACTIONS(5983), + [anon_sym_DOT_STAR] = ACTIONS(5981), + [anon_sym_DASH_GT] = ACTIONS(5981), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5983), + [anon_sym_decltype] = ACTIONS(5983), + }, + [2324] = { + [sym_identifier] = ACTIONS(5896), + [aux_sym_preproc_def_token1] = ACTIONS(5896), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5898), + [aux_sym_preproc_if_token1] = ACTIONS(5896), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5896), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5896), + [sym_preproc_directive] = ACTIONS(5896), + [anon_sym_LPAREN2] = ACTIONS(5898), + [anon_sym_TILDE] = ACTIONS(5898), + [anon_sym_STAR] = ACTIONS(5898), + [anon_sym_AMP_AMP] = ACTIONS(5898), + [anon_sym_AMP] = ACTIONS(5896), + [anon_sym___extension__] = ACTIONS(5896), + [anon_sym_typedef] = ACTIONS(5896), + [anon_sym_extern] = ACTIONS(5896), + [anon_sym___attribute__] = ACTIONS(5896), + [anon_sym_COLON_COLON] = ACTIONS(5898), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5898), + [anon_sym___declspec] = ACTIONS(5896), + [anon_sym___based] = ACTIONS(5896), + [anon_sym_RBRACE] = ACTIONS(5898), + [anon_sym_signed] = ACTIONS(5896), + [anon_sym_unsigned] = ACTIONS(5896), + [anon_sym_long] = ACTIONS(5896), + [anon_sym_short] = ACTIONS(5896), + [anon_sym_LBRACK] = ACTIONS(5896), + [anon_sym_static] = ACTIONS(5896), + [anon_sym_register] = ACTIONS(5896), + [anon_sym_inline] = ACTIONS(5896), + [anon_sym___inline] = ACTIONS(5896), + [anon_sym___inline__] = ACTIONS(5896), + [anon_sym___forceinline] = ACTIONS(5896), + [anon_sym_thread_local] = ACTIONS(5896), + [anon_sym___thread] = ACTIONS(5896), + [anon_sym_const] = ACTIONS(5896), + [anon_sym_constexpr] = ACTIONS(5896), + [anon_sym_volatile] = ACTIONS(5896), + [anon_sym_restrict] = ACTIONS(5896), + [anon_sym___restrict__] = ACTIONS(5896), + [anon_sym__Atomic] = ACTIONS(5896), + [anon_sym__Noreturn] = ACTIONS(5896), + [anon_sym_noreturn] = ACTIONS(5896), + [anon_sym_mutable] = ACTIONS(5896), + [anon_sym_constinit] = ACTIONS(5896), + [anon_sym_consteval] = ACTIONS(5896), + [sym_primitive_type] = ACTIONS(5896), + [anon_sym_enum] = ACTIONS(5896), + [anon_sym_class] = ACTIONS(5896), + [anon_sym_struct] = ACTIONS(5896), + [anon_sym_union] = ACTIONS(5896), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5896), + [anon_sym_decltype] = ACTIONS(5896), + [anon_sym_virtual] = ACTIONS(5896), + [anon_sym_alignas] = ACTIONS(5896), + [anon_sym_explicit] = ACTIONS(5896), + [anon_sym_typename] = ACTIONS(5896), + [anon_sym_template] = ACTIONS(5896), + [anon_sym_operator] = ACTIONS(5896), + [anon_sym_friend] = ACTIONS(5896), + [anon_sym_public] = ACTIONS(5896), + [anon_sym_private] = ACTIONS(5896), + [anon_sym_protected] = ACTIONS(5896), + [anon_sym_using] = ACTIONS(5896), + [anon_sym_static_assert] = ACTIONS(5896), + [sym_semgrep_metavar] = ACTIONS(5898), + }, + [2325] = { + [sym_identifier] = ACTIONS(3545), + [aux_sym_preproc_def_token1] = ACTIONS(3545), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3547), + [aux_sym_preproc_if_token1] = ACTIONS(3545), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3545), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3545), + [sym_preproc_directive] = ACTIONS(3545), + [anon_sym_LPAREN2] = ACTIONS(3547), + [anon_sym_TILDE] = ACTIONS(3547), + [anon_sym_STAR] = ACTIONS(3547), + [anon_sym_AMP_AMP] = ACTIONS(3547), + [anon_sym_AMP] = ACTIONS(3545), + [anon_sym___extension__] = ACTIONS(3545), + [anon_sym_typedef] = ACTIONS(3545), + [anon_sym_extern] = ACTIONS(3545), + [anon_sym___attribute__] = ACTIONS(3545), + [anon_sym_COLON_COLON] = ACTIONS(3547), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3547), + [anon_sym___declspec] = ACTIONS(3545), + [anon_sym___based] = ACTIONS(3545), + [anon_sym_RBRACE] = ACTIONS(3547), + [anon_sym_signed] = ACTIONS(3545), + [anon_sym_unsigned] = ACTIONS(3545), + [anon_sym_long] = ACTIONS(3545), + [anon_sym_short] = ACTIONS(3545), + [anon_sym_LBRACK] = ACTIONS(3545), + [anon_sym_static] = ACTIONS(3545), + [anon_sym_register] = ACTIONS(3545), + [anon_sym_inline] = ACTIONS(3545), + [anon_sym___inline] = ACTIONS(3545), + [anon_sym___inline__] = ACTIONS(3545), + [anon_sym___forceinline] = ACTIONS(3545), + [anon_sym_thread_local] = ACTIONS(3545), + [anon_sym___thread] = ACTIONS(3545), + [anon_sym_const] = ACTIONS(3545), + [anon_sym_constexpr] = ACTIONS(3545), + [anon_sym_volatile] = ACTIONS(3545), + [anon_sym_restrict] = ACTIONS(3545), + [anon_sym___restrict__] = ACTIONS(3545), + [anon_sym__Atomic] = ACTIONS(3545), + [anon_sym__Noreturn] = ACTIONS(3545), + [anon_sym_noreturn] = ACTIONS(3545), + [anon_sym_mutable] = ACTIONS(3545), + [anon_sym_constinit] = ACTIONS(3545), + [anon_sym_consteval] = ACTIONS(3545), + [sym_primitive_type] = ACTIONS(3545), + [anon_sym_enum] = ACTIONS(3545), + [anon_sym_class] = ACTIONS(3545), + [anon_sym_struct] = ACTIONS(3545), + [anon_sym_union] = ACTIONS(3545), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3545), + [anon_sym_decltype] = ACTIONS(3545), + [anon_sym_virtual] = ACTIONS(3545), + [anon_sym_alignas] = ACTIONS(3545), + [anon_sym_explicit] = ACTIONS(3545), + [anon_sym_typename] = ACTIONS(3545), + [anon_sym_template] = ACTIONS(3545), + [anon_sym_operator] = ACTIONS(3545), + [anon_sym_friend] = ACTIONS(3545), + [anon_sym_public] = ACTIONS(3545), + [anon_sym_private] = ACTIONS(3545), + [anon_sym_protected] = ACTIONS(3545), + [anon_sym_using] = ACTIONS(3545), + [anon_sym_static_assert] = ACTIONS(3545), + [sym_semgrep_metavar] = ACTIONS(3547), + }, + [2326] = { + [ts_builtin_sym_end] = ACTIONS(6246), + [sym_identifier] = ACTIONS(6248), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6246), + [anon_sym_COMMA] = ACTIONS(6246), + [anon_sym_RPAREN] = ACTIONS(6246), + [aux_sym_preproc_if_token2] = ACTIONS(6246), + [aux_sym_preproc_else_token1] = ACTIONS(6246), + [aux_sym_preproc_elif_token1] = ACTIONS(6248), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6246), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6246), + [anon_sym_LPAREN2] = ACTIONS(6246), + [anon_sym_DASH] = ACTIONS(6248), + [anon_sym_PLUS] = ACTIONS(6248), + [anon_sym_STAR] = ACTIONS(6248), + [anon_sym_SLASH] = ACTIONS(6248), + [anon_sym_PERCENT] = ACTIONS(6248), + [anon_sym_PIPE_PIPE] = ACTIONS(6246), + [anon_sym_AMP_AMP] = ACTIONS(6246), + [anon_sym_PIPE] = ACTIONS(6248), + [anon_sym_CARET] = ACTIONS(6248), + [anon_sym_AMP] = ACTIONS(6248), + [anon_sym_EQ_EQ] = ACTIONS(6246), + [anon_sym_BANG_EQ] = ACTIONS(6246), + [anon_sym_GT] = ACTIONS(6248), + [anon_sym_GT_EQ] = ACTIONS(6246), + [anon_sym_LT_EQ] = ACTIONS(6248), + [anon_sym_LT] = ACTIONS(6248), + [anon_sym_LT_LT] = ACTIONS(6248), + [anon_sym_GT_GT] = ACTIONS(6248), + [anon_sym_SEMI] = ACTIONS(6246), + [anon_sym___attribute__] = ACTIONS(6248), + [anon_sym_LBRACE] = ACTIONS(6246), + [anon_sym_RBRACE] = ACTIONS(6246), + [anon_sym_LBRACK] = ACTIONS(6246), + [anon_sym_RBRACK] = ACTIONS(6246), + [anon_sym_EQ] = ACTIONS(6248), + [anon_sym_COLON] = ACTIONS(6246), + [anon_sym_QMARK] = ACTIONS(6246), + [anon_sym_STAR_EQ] = ACTIONS(6246), + [anon_sym_SLASH_EQ] = ACTIONS(6246), + [anon_sym_PERCENT_EQ] = ACTIONS(6246), + [anon_sym_PLUS_EQ] = ACTIONS(6246), + [anon_sym_DASH_EQ] = ACTIONS(6246), + [anon_sym_LT_LT_EQ] = ACTIONS(6246), + [anon_sym_GT_GT_EQ] = ACTIONS(6246), + [anon_sym_AMP_EQ] = ACTIONS(6246), + [anon_sym_CARET_EQ] = ACTIONS(6246), + [anon_sym_PIPE_EQ] = ACTIONS(6246), + [anon_sym_and_eq] = ACTIONS(6248), + [anon_sym_or_eq] = ACTIONS(6248), + [anon_sym_xor_eq] = ACTIONS(6248), + [anon_sym_LT_EQ_GT] = ACTIONS(6246), + [anon_sym_or] = ACTIONS(6248), + [anon_sym_and] = ACTIONS(6248), + [anon_sym_bitor] = ACTIONS(6248), + [anon_sym_xor] = ACTIONS(6248), + [anon_sym_bitand] = ACTIONS(6248), + [anon_sym_not_eq] = ACTIONS(6248), + [anon_sym_DASH_DASH] = ACTIONS(6246), + [anon_sym_PLUS_PLUS] = ACTIONS(6246), + [anon_sym_DOT] = ACTIONS(6248), + [anon_sym_DOT_STAR] = ACTIONS(6246), + [anon_sym_DASH_GT] = ACTIONS(6246), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6248), + [anon_sym_decltype] = ACTIONS(6248), + }, + [2327] = { + [ts_builtin_sym_end] = ACTIONS(6250), + [sym_identifier] = ACTIONS(6252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6250), + [anon_sym_COMMA] = ACTIONS(6250), + [anon_sym_RPAREN] = ACTIONS(6250), + [aux_sym_preproc_if_token2] = ACTIONS(6250), + [aux_sym_preproc_else_token1] = ACTIONS(6250), + [aux_sym_preproc_elif_token1] = ACTIONS(6252), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6250), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6250), + [anon_sym_LPAREN2] = ACTIONS(6250), + [anon_sym_DASH] = ACTIONS(6252), + [anon_sym_PLUS] = ACTIONS(6252), + [anon_sym_STAR] = ACTIONS(6252), + [anon_sym_SLASH] = ACTIONS(6252), + [anon_sym_PERCENT] = ACTIONS(6252), + [anon_sym_PIPE_PIPE] = ACTIONS(6250), + [anon_sym_AMP_AMP] = ACTIONS(6250), + [anon_sym_PIPE] = ACTIONS(6252), + [anon_sym_CARET] = ACTIONS(6252), + [anon_sym_AMP] = ACTIONS(6252), + [anon_sym_EQ_EQ] = ACTIONS(6250), + [anon_sym_BANG_EQ] = ACTIONS(6250), + [anon_sym_GT] = ACTIONS(6252), + [anon_sym_GT_EQ] = ACTIONS(6250), + [anon_sym_LT_EQ] = ACTIONS(6252), + [anon_sym_LT] = ACTIONS(6252), + [anon_sym_LT_LT] = ACTIONS(6252), + [anon_sym_GT_GT] = ACTIONS(6252), + [anon_sym_SEMI] = ACTIONS(6250), + [anon_sym___attribute__] = ACTIONS(6252), + [anon_sym_LBRACE] = ACTIONS(6250), + [anon_sym_RBRACE] = ACTIONS(6250), + [anon_sym_LBRACK] = ACTIONS(6250), + [anon_sym_RBRACK] = ACTIONS(6250), + [anon_sym_EQ] = ACTIONS(6252), + [anon_sym_COLON] = ACTIONS(6250), + [anon_sym_QMARK] = ACTIONS(6250), + [anon_sym_STAR_EQ] = ACTIONS(6250), + [anon_sym_SLASH_EQ] = ACTIONS(6250), + [anon_sym_PERCENT_EQ] = ACTIONS(6250), + [anon_sym_PLUS_EQ] = ACTIONS(6250), + [anon_sym_DASH_EQ] = ACTIONS(6250), + [anon_sym_LT_LT_EQ] = ACTIONS(6250), + [anon_sym_GT_GT_EQ] = ACTIONS(6250), + [anon_sym_AMP_EQ] = ACTIONS(6250), + [anon_sym_CARET_EQ] = ACTIONS(6250), + [anon_sym_PIPE_EQ] = ACTIONS(6250), + [anon_sym_and_eq] = ACTIONS(6252), + [anon_sym_or_eq] = ACTIONS(6252), + [anon_sym_xor_eq] = ACTIONS(6252), + [anon_sym_LT_EQ_GT] = ACTIONS(6250), + [anon_sym_or] = ACTIONS(6252), + [anon_sym_and] = ACTIONS(6252), + [anon_sym_bitor] = ACTIONS(6252), + [anon_sym_xor] = ACTIONS(6252), + [anon_sym_bitand] = ACTIONS(6252), + [anon_sym_not_eq] = ACTIONS(6252), + [anon_sym_DASH_DASH] = ACTIONS(6250), + [anon_sym_PLUS_PLUS] = ACTIONS(6250), + [anon_sym_DOT] = ACTIONS(6252), + [anon_sym_DOT_STAR] = ACTIONS(6250), + [anon_sym_DASH_GT] = ACTIONS(6250), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6252), + [anon_sym_decltype] = ACTIONS(6252), + }, + [2328] = { + [ts_builtin_sym_end] = ACTIONS(6254), + [sym_identifier] = ACTIONS(6256), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6254), + [anon_sym_COMMA] = ACTIONS(6254), + [anon_sym_RPAREN] = ACTIONS(6254), + [aux_sym_preproc_if_token2] = ACTIONS(6254), + [aux_sym_preproc_else_token1] = ACTIONS(6254), + [aux_sym_preproc_elif_token1] = ACTIONS(6256), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6254), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6254), + [anon_sym_LPAREN2] = ACTIONS(6254), + [anon_sym_DASH] = ACTIONS(6256), + [anon_sym_PLUS] = ACTIONS(6256), + [anon_sym_STAR] = ACTIONS(6256), + [anon_sym_SLASH] = ACTIONS(6256), + [anon_sym_PERCENT] = ACTIONS(6256), + [anon_sym_PIPE_PIPE] = ACTIONS(6254), + [anon_sym_AMP_AMP] = ACTIONS(6254), + [anon_sym_PIPE] = ACTIONS(6256), + [anon_sym_CARET] = ACTIONS(6256), + [anon_sym_AMP] = ACTIONS(6256), + [anon_sym_EQ_EQ] = ACTIONS(6254), + [anon_sym_BANG_EQ] = ACTIONS(6254), + [anon_sym_GT] = ACTIONS(6256), + [anon_sym_GT_EQ] = ACTIONS(6254), + [anon_sym_LT_EQ] = ACTIONS(6256), + [anon_sym_LT] = ACTIONS(6256), + [anon_sym_LT_LT] = ACTIONS(6256), + [anon_sym_GT_GT] = ACTIONS(6256), + [anon_sym_SEMI] = ACTIONS(6254), + [anon_sym___attribute__] = ACTIONS(6256), + [anon_sym_LBRACE] = ACTIONS(6254), + [anon_sym_RBRACE] = ACTIONS(6254), + [anon_sym_LBRACK] = ACTIONS(6254), + [anon_sym_RBRACK] = ACTIONS(6254), + [anon_sym_EQ] = ACTIONS(6256), + [anon_sym_COLON] = ACTIONS(6254), + [anon_sym_QMARK] = ACTIONS(6254), + [anon_sym_STAR_EQ] = ACTIONS(6254), + [anon_sym_SLASH_EQ] = ACTIONS(6254), + [anon_sym_PERCENT_EQ] = ACTIONS(6254), + [anon_sym_PLUS_EQ] = ACTIONS(6254), + [anon_sym_DASH_EQ] = ACTIONS(6254), + [anon_sym_LT_LT_EQ] = ACTIONS(6254), + [anon_sym_GT_GT_EQ] = ACTIONS(6254), + [anon_sym_AMP_EQ] = ACTIONS(6254), + [anon_sym_CARET_EQ] = ACTIONS(6254), + [anon_sym_PIPE_EQ] = ACTIONS(6254), + [anon_sym_and_eq] = ACTIONS(6256), + [anon_sym_or_eq] = ACTIONS(6256), + [anon_sym_xor_eq] = ACTIONS(6256), + [anon_sym_LT_EQ_GT] = ACTIONS(6254), + [anon_sym_or] = ACTIONS(6256), + [anon_sym_and] = ACTIONS(6256), + [anon_sym_bitor] = ACTIONS(6256), + [anon_sym_xor] = ACTIONS(6256), + [anon_sym_bitand] = ACTIONS(6256), + [anon_sym_not_eq] = ACTIONS(6256), + [anon_sym_DASH_DASH] = ACTIONS(6254), + [anon_sym_PLUS_PLUS] = ACTIONS(6254), + [anon_sym_DOT] = ACTIONS(6256), + [anon_sym_DOT_STAR] = ACTIONS(6254), + [anon_sym_DASH_GT] = ACTIONS(6254), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6256), + [anon_sym_decltype] = ACTIONS(6256), + }, + [2329] = { + [ts_builtin_sym_end] = ACTIONS(6258), + [sym_identifier] = ACTIONS(6260), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6258), + [anon_sym_COMMA] = ACTIONS(6258), + [anon_sym_RPAREN] = ACTIONS(6258), + [aux_sym_preproc_if_token2] = ACTIONS(6258), + [aux_sym_preproc_else_token1] = ACTIONS(6258), + [aux_sym_preproc_elif_token1] = ACTIONS(6260), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6258), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6258), + [anon_sym_LPAREN2] = ACTIONS(6258), + [anon_sym_DASH] = ACTIONS(6260), + [anon_sym_PLUS] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(6260), + [anon_sym_SLASH] = ACTIONS(6260), + [anon_sym_PERCENT] = ACTIONS(6260), + [anon_sym_PIPE_PIPE] = ACTIONS(6258), + [anon_sym_AMP_AMP] = ACTIONS(6258), + [anon_sym_PIPE] = ACTIONS(6260), + [anon_sym_CARET] = ACTIONS(6260), + [anon_sym_AMP] = ACTIONS(6260), + [anon_sym_EQ_EQ] = ACTIONS(6258), + [anon_sym_BANG_EQ] = ACTIONS(6258), + [anon_sym_GT] = ACTIONS(6260), + [anon_sym_GT_EQ] = ACTIONS(6258), + [anon_sym_LT_EQ] = ACTIONS(6260), + [anon_sym_LT] = ACTIONS(6260), + [anon_sym_LT_LT] = ACTIONS(6260), + [anon_sym_GT_GT] = ACTIONS(6260), + [anon_sym_SEMI] = ACTIONS(6258), + [anon_sym___attribute__] = ACTIONS(6260), + [anon_sym_LBRACE] = ACTIONS(6258), + [anon_sym_RBRACE] = ACTIONS(6258), + [anon_sym_LBRACK] = ACTIONS(6258), + [anon_sym_RBRACK] = ACTIONS(6258), + [anon_sym_EQ] = ACTIONS(6260), + [anon_sym_COLON] = ACTIONS(6258), + [anon_sym_QMARK] = ACTIONS(6258), + [anon_sym_STAR_EQ] = ACTIONS(6258), + [anon_sym_SLASH_EQ] = ACTIONS(6258), + [anon_sym_PERCENT_EQ] = ACTIONS(6258), + [anon_sym_PLUS_EQ] = ACTIONS(6258), + [anon_sym_DASH_EQ] = ACTIONS(6258), + [anon_sym_LT_LT_EQ] = ACTIONS(6258), + [anon_sym_GT_GT_EQ] = ACTIONS(6258), + [anon_sym_AMP_EQ] = ACTIONS(6258), + [anon_sym_CARET_EQ] = ACTIONS(6258), + [anon_sym_PIPE_EQ] = ACTIONS(6258), + [anon_sym_and_eq] = ACTIONS(6260), + [anon_sym_or_eq] = ACTIONS(6260), + [anon_sym_xor_eq] = ACTIONS(6260), + [anon_sym_LT_EQ_GT] = ACTIONS(6258), + [anon_sym_or] = ACTIONS(6260), + [anon_sym_and] = ACTIONS(6260), + [anon_sym_bitor] = ACTIONS(6260), + [anon_sym_xor] = ACTIONS(6260), + [anon_sym_bitand] = ACTIONS(6260), + [anon_sym_not_eq] = ACTIONS(6260), + [anon_sym_DASH_DASH] = ACTIONS(6258), + [anon_sym_PLUS_PLUS] = ACTIONS(6258), + [anon_sym_DOT] = ACTIONS(6260), + [anon_sym_DOT_STAR] = ACTIONS(6258), + [anon_sym_DASH_GT] = ACTIONS(6258), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6260), + [anon_sym_decltype] = ACTIONS(6260), + }, + [2330] = { + [sym_identifier] = ACTIONS(3551), + [aux_sym_preproc_def_token1] = ACTIONS(3551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3553), + [aux_sym_preproc_if_token1] = ACTIONS(3551), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3551), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3551), + [sym_preproc_directive] = ACTIONS(3551), + [anon_sym_LPAREN2] = ACTIONS(3553), + [anon_sym_TILDE] = ACTIONS(3553), + [anon_sym_STAR] = ACTIONS(3553), + [anon_sym_AMP_AMP] = ACTIONS(3553), + [anon_sym_AMP] = ACTIONS(3551), + [anon_sym___extension__] = ACTIONS(3551), + [anon_sym_typedef] = ACTIONS(3551), + [anon_sym_extern] = ACTIONS(3551), + [anon_sym___attribute__] = ACTIONS(3551), + [anon_sym_COLON_COLON] = ACTIONS(3553), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3553), + [anon_sym___declspec] = ACTIONS(3551), + [anon_sym___based] = ACTIONS(3551), + [anon_sym_RBRACE] = ACTIONS(3553), + [anon_sym_signed] = ACTIONS(3551), + [anon_sym_unsigned] = ACTIONS(3551), + [anon_sym_long] = ACTIONS(3551), + [anon_sym_short] = ACTIONS(3551), + [anon_sym_LBRACK] = ACTIONS(3551), + [anon_sym_static] = ACTIONS(3551), + [anon_sym_register] = ACTIONS(3551), + [anon_sym_inline] = ACTIONS(3551), + [anon_sym___inline] = ACTIONS(3551), + [anon_sym___inline__] = ACTIONS(3551), + [anon_sym___forceinline] = ACTIONS(3551), + [anon_sym_thread_local] = ACTIONS(3551), + [anon_sym___thread] = ACTIONS(3551), + [anon_sym_const] = ACTIONS(3551), + [anon_sym_constexpr] = ACTIONS(3551), + [anon_sym_volatile] = ACTIONS(3551), + [anon_sym_restrict] = ACTIONS(3551), + [anon_sym___restrict__] = ACTIONS(3551), + [anon_sym__Atomic] = ACTIONS(3551), + [anon_sym__Noreturn] = ACTIONS(3551), + [anon_sym_noreturn] = ACTIONS(3551), + [anon_sym_mutable] = ACTIONS(3551), + [anon_sym_constinit] = ACTIONS(3551), + [anon_sym_consteval] = ACTIONS(3551), + [sym_primitive_type] = ACTIONS(3551), + [anon_sym_enum] = ACTIONS(3551), + [anon_sym_class] = ACTIONS(3551), + [anon_sym_struct] = ACTIONS(3551), + [anon_sym_union] = ACTIONS(3551), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3551), + [anon_sym_decltype] = ACTIONS(3551), + [anon_sym_virtual] = ACTIONS(3551), + [anon_sym_alignas] = ACTIONS(3551), + [anon_sym_explicit] = ACTIONS(3551), + [anon_sym_typename] = ACTIONS(3551), + [anon_sym_template] = ACTIONS(3551), + [anon_sym_operator] = ACTIONS(3551), + [anon_sym_friend] = ACTIONS(3551), + [anon_sym_public] = ACTIONS(3551), + [anon_sym_private] = ACTIONS(3551), + [anon_sym_protected] = ACTIONS(3551), + [anon_sym_using] = ACTIONS(3551), + [anon_sym_static_assert] = ACTIONS(3551), + [sym_semgrep_metavar] = ACTIONS(3553), + }, + [2331] = { + [sym_identifier] = ACTIONS(3434), + [aux_sym_preproc_def_token1] = ACTIONS(3434), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3436), + [aux_sym_preproc_if_token1] = ACTIONS(3434), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3434), + [sym_preproc_directive] = ACTIONS(3434), + [anon_sym_LPAREN2] = ACTIONS(3436), + [anon_sym_TILDE] = ACTIONS(3436), + [anon_sym_STAR] = ACTIONS(3436), + [anon_sym_AMP_AMP] = ACTIONS(3436), + [anon_sym_AMP] = ACTIONS(3434), + [anon_sym___extension__] = ACTIONS(3434), + [anon_sym_typedef] = ACTIONS(3434), + [anon_sym_extern] = ACTIONS(3434), + [anon_sym___attribute__] = ACTIONS(3434), + [anon_sym_COLON_COLON] = ACTIONS(3436), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3436), + [anon_sym___declspec] = ACTIONS(3434), + [anon_sym___based] = ACTIONS(3434), + [anon_sym_RBRACE] = ACTIONS(3436), + [anon_sym_signed] = ACTIONS(3434), + [anon_sym_unsigned] = ACTIONS(3434), + [anon_sym_long] = ACTIONS(3434), + [anon_sym_short] = ACTIONS(3434), + [anon_sym_LBRACK] = ACTIONS(3434), + [anon_sym_static] = ACTIONS(3434), + [anon_sym_register] = ACTIONS(3434), + [anon_sym_inline] = ACTIONS(3434), + [anon_sym___inline] = ACTIONS(3434), + [anon_sym___inline__] = ACTIONS(3434), + [anon_sym___forceinline] = ACTIONS(3434), + [anon_sym_thread_local] = ACTIONS(3434), + [anon_sym___thread] = ACTIONS(3434), + [anon_sym_const] = ACTIONS(3434), + [anon_sym_constexpr] = ACTIONS(3434), + [anon_sym_volatile] = ACTIONS(3434), + [anon_sym_restrict] = ACTIONS(3434), + [anon_sym___restrict__] = ACTIONS(3434), + [anon_sym__Atomic] = ACTIONS(3434), + [anon_sym__Noreturn] = ACTIONS(3434), + [anon_sym_noreturn] = ACTIONS(3434), + [anon_sym_mutable] = ACTIONS(3434), + [anon_sym_constinit] = ACTIONS(3434), + [anon_sym_consteval] = ACTIONS(3434), + [sym_primitive_type] = ACTIONS(3434), + [anon_sym_enum] = ACTIONS(3434), + [anon_sym_class] = ACTIONS(3434), + [anon_sym_struct] = ACTIONS(3434), + [anon_sym_union] = ACTIONS(3434), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3434), + [anon_sym_decltype] = ACTIONS(3434), + [anon_sym_virtual] = ACTIONS(3434), + [anon_sym_alignas] = ACTIONS(3434), + [anon_sym_explicit] = ACTIONS(3434), + [anon_sym_typename] = ACTIONS(3434), + [anon_sym_template] = ACTIONS(3434), + [anon_sym_operator] = ACTIONS(3434), + [anon_sym_friend] = ACTIONS(3434), + [anon_sym_public] = ACTIONS(3434), + [anon_sym_private] = ACTIONS(3434), + [anon_sym_protected] = ACTIONS(3434), + [anon_sym_using] = ACTIONS(3434), + [anon_sym_static_assert] = ACTIONS(3434), + [sym_semgrep_metavar] = ACTIONS(3436), + }, + [2332] = { + [ts_builtin_sym_end] = ACTIONS(6262), + [sym_identifier] = ACTIONS(6264), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6262), + [anon_sym_COMMA] = ACTIONS(6262), + [anon_sym_RPAREN] = ACTIONS(6262), + [aux_sym_preproc_if_token2] = ACTIONS(6262), + [aux_sym_preproc_else_token1] = ACTIONS(6262), + [aux_sym_preproc_elif_token1] = ACTIONS(6264), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6262), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6262), + [anon_sym_LPAREN2] = ACTIONS(6262), + [anon_sym_DASH] = ACTIONS(6264), + [anon_sym_PLUS] = ACTIONS(6264), + [anon_sym_STAR] = ACTIONS(6264), + [anon_sym_SLASH] = ACTIONS(6264), + [anon_sym_PERCENT] = ACTIONS(6264), + [anon_sym_PIPE_PIPE] = ACTIONS(6262), + [anon_sym_AMP_AMP] = ACTIONS(6262), + [anon_sym_PIPE] = ACTIONS(6264), + [anon_sym_CARET] = ACTIONS(6264), + [anon_sym_AMP] = ACTIONS(6264), + [anon_sym_EQ_EQ] = ACTIONS(6262), + [anon_sym_BANG_EQ] = ACTIONS(6262), + [anon_sym_GT] = ACTIONS(6264), + [anon_sym_GT_EQ] = ACTIONS(6262), + [anon_sym_LT_EQ] = ACTIONS(6264), + [anon_sym_LT] = ACTIONS(6264), + [anon_sym_LT_LT] = ACTIONS(6264), + [anon_sym_GT_GT] = ACTIONS(6264), + [anon_sym_SEMI] = ACTIONS(6262), + [anon_sym___attribute__] = ACTIONS(6264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6262), + [anon_sym_LBRACE] = ACTIONS(6262), + [anon_sym_RBRACE] = ACTIONS(6262), + [anon_sym_LBRACK] = ACTIONS(6264), + [anon_sym_RBRACK] = ACTIONS(6262), + [anon_sym_EQ] = ACTIONS(6264), + [anon_sym_COLON] = ACTIONS(6262), + [anon_sym_QMARK] = ACTIONS(6262), + [anon_sym_STAR_EQ] = ACTIONS(6262), + [anon_sym_SLASH_EQ] = ACTIONS(6262), + [anon_sym_PERCENT_EQ] = ACTIONS(6262), + [anon_sym_PLUS_EQ] = ACTIONS(6262), + [anon_sym_DASH_EQ] = ACTIONS(6262), + [anon_sym_LT_LT_EQ] = ACTIONS(6262), + [anon_sym_GT_GT_EQ] = ACTIONS(6262), + [anon_sym_AMP_EQ] = ACTIONS(6262), + [anon_sym_CARET_EQ] = ACTIONS(6262), + [anon_sym_PIPE_EQ] = ACTIONS(6262), + [anon_sym_and_eq] = ACTIONS(6264), + [anon_sym_or_eq] = ACTIONS(6264), + [anon_sym_xor_eq] = ACTIONS(6264), + [anon_sym_LT_EQ_GT] = ACTIONS(6262), + [anon_sym_or] = ACTIONS(6264), + [anon_sym_and] = ACTIONS(6264), + [anon_sym_bitor] = ACTIONS(6264), + [anon_sym_xor] = ACTIONS(6264), + [anon_sym_bitand] = ACTIONS(6264), + [anon_sym_not_eq] = ACTIONS(6264), + [anon_sym_DASH_DASH] = ACTIONS(6262), + [anon_sym_PLUS_PLUS] = ACTIONS(6262), + [anon_sym_DOT] = ACTIONS(6264), + [anon_sym_DOT_STAR] = ACTIONS(6262), + [anon_sym_DASH_GT] = ACTIONS(6262), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(6264), + }, + [2333] = { + [sym_identifier] = ACTIONS(5737), + [aux_sym_preproc_def_token1] = ACTIONS(5737), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5739), + [aux_sym_preproc_if_token1] = ACTIONS(5737), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5737), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5737), + [sym_preproc_directive] = ACTIONS(5737), + [anon_sym_LPAREN2] = ACTIONS(5739), + [anon_sym_TILDE] = ACTIONS(5739), + [anon_sym_STAR] = ACTIONS(5739), + [anon_sym_AMP_AMP] = ACTIONS(5739), + [anon_sym_AMP] = ACTIONS(5737), + [anon_sym___extension__] = ACTIONS(5737), + [anon_sym_typedef] = ACTIONS(5737), + [anon_sym_extern] = ACTIONS(5737), + [anon_sym___attribute__] = ACTIONS(5737), + [anon_sym_COLON_COLON] = ACTIONS(5739), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5739), + [anon_sym___declspec] = ACTIONS(5737), + [anon_sym___based] = ACTIONS(5737), + [anon_sym_RBRACE] = ACTIONS(5739), + [anon_sym_signed] = ACTIONS(5737), + [anon_sym_unsigned] = ACTIONS(5737), + [anon_sym_long] = ACTIONS(5737), + [anon_sym_short] = ACTIONS(5737), + [anon_sym_LBRACK] = ACTIONS(5737), + [anon_sym_static] = ACTIONS(5737), + [anon_sym_register] = ACTIONS(5737), + [anon_sym_inline] = ACTIONS(5737), + [anon_sym___inline] = ACTIONS(5737), + [anon_sym___inline__] = ACTIONS(5737), + [anon_sym___forceinline] = ACTIONS(5737), + [anon_sym_thread_local] = ACTIONS(5737), + [anon_sym___thread] = ACTIONS(5737), + [anon_sym_const] = ACTIONS(5737), + [anon_sym_constexpr] = ACTIONS(5737), + [anon_sym_volatile] = ACTIONS(5737), + [anon_sym_restrict] = ACTIONS(5737), + [anon_sym___restrict__] = ACTIONS(5737), + [anon_sym__Atomic] = ACTIONS(5737), + [anon_sym__Noreturn] = ACTIONS(5737), + [anon_sym_noreturn] = ACTIONS(5737), + [anon_sym_mutable] = ACTIONS(5737), + [anon_sym_constinit] = ACTIONS(5737), + [anon_sym_consteval] = ACTIONS(5737), + [sym_primitive_type] = ACTIONS(5737), + [anon_sym_enum] = ACTIONS(5737), + [anon_sym_class] = ACTIONS(5737), + [anon_sym_struct] = ACTIONS(5737), + [anon_sym_union] = ACTIONS(5737), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5737), + [anon_sym_decltype] = ACTIONS(5737), + [anon_sym_virtual] = ACTIONS(5737), + [anon_sym_alignas] = ACTIONS(5737), + [anon_sym_explicit] = ACTIONS(5737), + [anon_sym_typename] = ACTIONS(5737), + [anon_sym_template] = ACTIONS(5737), + [anon_sym_operator] = ACTIONS(5737), + [anon_sym_friend] = ACTIONS(5737), + [anon_sym_public] = ACTIONS(5737), + [anon_sym_private] = ACTIONS(5737), + [anon_sym_protected] = ACTIONS(5737), + [anon_sym_using] = ACTIONS(5737), + [anon_sym_static_assert] = ACTIONS(5737), + [sym_semgrep_metavar] = ACTIONS(5739), + }, + [2334] = { + [sym_declaration_modifiers] = STATE(4088), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3187), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(3324), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7571), + [sym_qualified_type_identifier] = STATE(4526), + [aux_sym_declaration_specifiers_repeat1] = STATE(4088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5478), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_union] = ACTIONS(75), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1534), + }, + [2335] = { + [sym_identifier] = ACTIONS(5812), + [aux_sym_preproc_def_token1] = ACTIONS(5812), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5814), + [aux_sym_preproc_if_token1] = ACTIONS(5812), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5812), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5812), + [sym_preproc_directive] = ACTIONS(5812), + [anon_sym_LPAREN2] = ACTIONS(5814), + [anon_sym_TILDE] = ACTIONS(5814), + [anon_sym_STAR] = ACTIONS(5814), + [anon_sym_AMP_AMP] = ACTIONS(5814), + [anon_sym_AMP] = ACTIONS(5812), + [anon_sym___extension__] = ACTIONS(5812), + [anon_sym_typedef] = ACTIONS(5812), + [anon_sym_extern] = ACTIONS(5812), + [anon_sym___attribute__] = ACTIONS(5812), + [anon_sym_COLON_COLON] = ACTIONS(5814), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5814), + [anon_sym___declspec] = ACTIONS(5812), + [anon_sym___based] = ACTIONS(5812), + [anon_sym_RBRACE] = ACTIONS(5814), + [anon_sym_signed] = ACTIONS(5812), + [anon_sym_unsigned] = ACTIONS(5812), + [anon_sym_long] = ACTIONS(5812), + [anon_sym_short] = ACTIONS(5812), + [anon_sym_LBRACK] = ACTIONS(5812), + [anon_sym_static] = ACTIONS(5812), + [anon_sym_register] = ACTIONS(5812), + [anon_sym_inline] = ACTIONS(5812), + [anon_sym___inline] = ACTIONS(5812), + [anon_sym___inline__] = ACTIONS(5812), + [anon_sym___forceinline] = ACTIONS(5812), + [anon_sym_thread_local] = ACTIONS(5812), + [anon_sym___thread] = ACTIONS(5812), + [anon_sym_const] = ACTIONS(5812), + [anon_sym_constexpr] = ACTIONS(5812), + [anon_sym_volatile] = ACTIONS(5812), + [anon_sym_restrict] = ACTIONS(5812), + [anon_sym___restrict__] = ACTIONS(5812), + [anon_sym__Atomic] = ACTIONS(5812), + [anon_sym__Noreturn] = ACTIONS(5812), + [anon_sym_noreturn] = ACTIONS(5812), + [anon_sym_mutable] = ACTIONS(5812), + [anon_sym_constinit] = ACTIONS(5812), + [anon_sym_consteval] = ACTIONS(5812), + [sym_primitive_type] = ACTIONS(5812), + [anon_sym_enum] = ACTIONS(5812), + [anon_sym_class] = ACTIONS(5812), + [anon_sym_struct] = ACTIONS(5812), + [anon_sym_union] = ACTIONS(5812), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5812), + [anon_sym_decltype] = ACTIONS(5812), + [anon_sym_virtual] = ACTIONS(5812), + [anon_sym_alignas] = ACTIONS(5812), + [anon_sym_explicit] = ACTIONS(5812), + [anon_sym_typename] = ACTIONS(5812), + [anon_sym_template] = ACTIONS(5812), + [anon_sym_operator] = ACTIONS(5812), + [anon_sym_friend] = ACTIONS(5812), + [anon_sym_public] = ACTIONS(5812), + [anon_sym_private] = ACTIONS(5812), + [anon_sym_protected] = ACTIONS(5812), + [anon_sym_using] = ACTIONS(5812), + [anon_sym_static_assert] = ACTIONS(5812), + [sym_semgrep_metavar] = ACTIONS(5814), + }, + [2336] = { + [sym_identifier] = ACTIONS(5816), + [aux_sym_preproc_def_token1] = ACTIONS(5816), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5818), + [aux_sym_preproc_if_token1] = ACTIONS(5816), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5816), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5816), + [sym_preproc_directive] = ACTIONS(5816), + [anon_sym_LPAREN2] = ACTIONS(5818), + [anon_sym_TILDE] = ACTIONS(5818), + [anon_sym_STAR] = ACTIONS(5818), + [anon_sym_AMP_AMP] = ACTIONS(5818), + [anon_sym_AMP] = ACTIONS(5816), + [anon_sym___extension__] = ACTIONS(5816), + [anon_sym_typedef] = ACTIONS(5816), + [anon_sym_extern] = ACTIONS(5816), + [anon_sym___attribute__] = ACTIONS(5816), + [anon_sym_COLON_COLON] = ACTIONS(5818), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5818), + [anon_sym___declspec] = ACTIONS(5816), + [anon_sym___based] = ACTIONS(5816), + [anon_sym_RBRACE] = ACTIONS(5818), + [anon_sym_signed] = ACTIONS(5816), + [anon_sym_unsigned] = ACTIONS(5816), + [anon_sym_long] = ACTIONS(5816), + [anon_sym_short] = ACTIONS(5816), + [anon_sym_LBRACK] = ACTIONS(5816), + [anon_sym_static] = ACTIONS(5816), + [anon_sym_register] = ACTIONS(5816), + [anon_sym_inline] = ACTIONS(5816), + [anon_sym___inline] = ACTIONS(5816), + [anon_sym___inline__] = ACTIONS(5816), + [anon_sym___forceinline] = ACTIONS(5816), + [anon_sym_thread_local] = ACTIONS(5816), + [anon_sym___thread] = ACTIONS(5816), + [anon_sym_const] = ACTIONS(5816), + [anon_sym_constexpr] = ACTIONS(5816), + [anon_sym_volatile] = ACTIONS(5816), + [anon_sym_restrict] = ACTIONS(5816), + [anon_sym___restrict__] = ACTIONS(5816), + [anon_sym__Atomic] = ACTIONS(5816), + [anon_sym__Noreturn] = ACTIONS(5816), + [anon_sym_noreturn] = ACTIONS(5816), + [anon_sym_mutable] = ACTIONS(5816), + [anon_sym_constinit] = ACTIONS(5816), + [anon_sym_consteval] = ACTIONS(5816), + [sym_primitive_type] = ACTIONS(5816), + [anon_sym_enum] = ACTIONS(5816), + [anon_sym_class] = ACTIONS(5816), + [anon_sym_struct] = ACTIONS(5816), + [anon_sym_union] = ACTIONS(5816), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5816), + [anon_sym_decltype] = ACTIONS(5816), + [anon_sym_virtual] = ACTIONS(5816), + [anon_sym_alignas] = ACTIONS(5816), + [anon_sym_explicit] = ACTIONS(5816), + [anon_sym_typename] = ACTIONS(5816), + [anon_sym_template] = ACTIONS(5816), + [anon_sym_operator] = ACTIONS(5816), + [anon_sym_friend] = ACTIONS(5816), + [anon_sym_public] = ACTIONS(5816), + [anon_sym_private] = ACTIONS(5816), + [anon_sym_protected] = ACTIONS(5816), + [anon_sym_using] = ACTIONS(5816), + [anon_sym_static_assert] = ACTIONS(5816), + [sym_semgrep_metavar] = ACTIONS(5818), + }, + [2337] = { + [sym_identifier] = ACTIONS(5904), + [aux_sym_preproc_def_token1] = ACTIONS(5904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5906), + [aux_sym_preproc_if_token1] = ACTIONS(5904), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5904), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5904), + [sym_preproc_directive] = ACTIONS(5904), + [anon_sym_LPAREN2] = ACTIONS(5906), + [anon_sym_TILDE] = ACTIONS(5906), + [anon_sym_STAR] = ACTIONS(5906), + [anon_sym_AMP_AMP] = ACTIONS(5906), + [anon_sym_AMP] = ACTIONS(5904), + [anon_sym___extension__] = ACTIONS(5904), + [anon_sym_typedef] = ACTIONS(5904), + [anon_sym_extern] = ACTIONS(5904), + [anon_sym___attribute__] = ACTIONS(5904), + [anon_sym_COLON_COLON] = ACTIONS(5906), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5906), + [anon_sym___declspec] = ACTIONS(5904), + [anon_sym___based] = ACTIONS(5904), + [anon_sym_RBRACE] = ACTIONS(5906), + [anon_sym_signed] = ACTIONS(5904), + [anon_sym_unsigned] = ACTIONS(5904), + [anon_sym_long] = ACTIONS(5904), + [anon_sym_short] = ACTIONS(5904), + [anon_sym_LBRACK] = ACTIONS(5904), + [anon_sym_static] = ACTIONS(5904), + [anon_sym_register] = ACTIONS(5904), + [anon_sym_inline] = ACTIONS(5904), + [anon_sym___inline] = ACTIONS(5904), + [anon_sym___inline__] = ACTIONS(5904), + [anon_sym___forceinline] = ACTIONS(5904), + [anon_sym_thread_local] = ACTIONS(5904), + [anon_sym___thread] = ACTIONS(5904), + [anon_sym_const] = ACTIONS(5904), + [anon_sym_constexpr] = ACTIONS(5904), + [anon_sym_volatile] = ACTIONS(5904), + [anon_sym_restrict] = ACTIONS(5904), + [anon_sym___restrict__] = ACTIONS(5904), + [anon_sym__Atomic] = ACTIONS(5904), + [anon_sym__Noreturn] = ACTIONS(5904), + [anon_sym_noreturn] = ACTIONS(5904), + [anon_sym_mutable] = ACTIONS(5904), + [anon_sym_constinit] = ACTIONS(5904), + [anon_sym_consteval] = ACTIONS(5904), + [sym_primitive_type] = ACTIONS(5904), + [anon_sym_enum] = ACTIONS(5904), + [anon_sym_class] = ACTIONS(5904), + [anon_sym_struct] = ACTIONS(5904), + [anon_sym_union] = ACTIONS(5904), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5904), + [anon_sym_decltype] = ACTIONS(5904), + [anon_sym_virtual] = ACTIONS(5904), + [anon_sym_alignas] = ACTIONS(5904), + [anon_sym_explicit] = ACTIONS(5904), + [anon_sym_typename] = ACTIONS(5904), + [anon_sym_template] = ACTIONS(5904), + [anon_sym_operator] = ACTIONS(5904), + [anon_sym_friend] = ACTIONS(5904), + [anon_sym_public] = ACTIONS(5904), + [anon_sym_private] = ACTIONS(5904), + [anon_sym_protected] = ACTIONS(5904), + [anon_sym_using] = ACTIONS(5904), + [anon_sym_static_assert] = ACTIONS(5904), + [sym_semgrep_metavar] = ACTIONS(5906), + }, + [2338] = { + [sym_identifier] = ACTIONS(5820), + [aux_sym_preproc_def_token1] = ACTIONS(5820), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5822), + [aux_sym_preproc_if_token1] = ACTIONS(5820), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5820), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5820), + [sym_preproc_directive] = ACTIONS(5820), + [anon_sym_LPAREN2] = ACTIONS(5822), + [anon_sym_TILDE] = ACTIONS(5822), + [anon_sym_STAR] = ACTIONS(5822), + [anon_sym_AMP_AMP] = ACTIONS(5822), + [anon_sym_AMP] = ACTIONS(5820), + [anon_sym___extension__] = ACTIONS(5820), + [anon_sym_typedef] = ACTIONS(5820), + [anon_sym_extern] = ACTIONS(5820), + [anon_sym___attribute__] = ACTIONS(5820), + [anon_sym_COLON_COLON] = ACTIONS(5822), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5822), + [anon_sym___declspec] = ACTIONS(5820), + [anon_sym___based] = ACTIONS(5820), + [anon_sym_RBRACE] = ACTIONS(5822), + [anon_sym_signed] = ACTIONS(5820), + [anon_sym_unsigned] = ACTIONS(5820), + [anon_sym_long] = ACTIONS(5820), + [anon_sym_short] = ACTIONS(5820), + [anon_sym_LBRACK] = ACTIONS(5820), + [anon_sym_static] = ACTIONS(5820), + [anon_sym_register] = ACTIONS(5820), + [anon_sym_inline] = ACTIONS(5820), + [anon_sym___inline] = ACTIONS(5820), + [anon_sym___inline__] = ACTIONS(5820), + [anon_sym___forceinline] = ACTIONS(5820), + [anon_sym_thread_local] = ACTIONS(5820), + [anon_sym___thread] = ACTIONS(5820), + [anon_sym_const] = ACTIONS(5820), + [anon_sym_constexpr] = ACTIONS(5820), + [anon_sym_volatile] = ACTIONS(5820), + [anon_sym_restrict] = ACTIONS(5820), + [anon_sym___restrict__] = ACTIONS(5820), + [anon_sym__Atomic] = ACTIONS(5820), + [anon_sym__Noreturn] = ACTIONS(5820), + [anon_sym_noreturn] = ACTIONS(5820), + [anon_sym_mutable] = ACTIONS(5820), + [anon_sym_constinit] = ACTIONS(5820), + [anon_sym_consteval] = ACTIONS(5820), + [sym_primitive_type] = ACTIONS(5820), + [anon_sym_enum] = ACTIONS(5820), + [anon_sym_class] = ACTIONS(5820), + [anon_sym_struct] = ACTIONS(5820), + [anon_sym_union] = ACTIONS(5820), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5820), + [anon_sym_decltype] = ACTIONS(5820), + [anon_sym_virtual] = ACTIONS(5820), + [anon_sym_alignas] = ACTIONS(5820), + [anon_sym_explicit] = ACTIONS(5820), + [anon_sym_typename] = ACTIONS(5820), + [anon_sym_template] = ACTIONS(5820), + [anon_sym_operator] = ACTIONS(5820), + [anon_sym_friend] = ACTIONS(5820), + [anon_sym_public] = ACTIONS(5820), + [anon_sym_private] = ACTIONS(5820), + [anon_sym_protected] = ACTIONS(5820), + [anon_sym_using] = ACTIONS(5820), + [anon_sym_static_assert] = ACTIONS(5820), + [sym_semgrep_metavar] = ACTIONS(5822), + }, + [2339] = { + [sym_identifier] = ACTIONS(5824), + [aux_sym_preproc_def_token1] = ACTIONS(5824), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5826), + [aux_sym_preproc_if_token1] = ACTIONS(5824), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5824), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5824), + [sym_preproc_directive] = ACTIONS(5824), + [anon_sym_LPAREN2] = ACTIONS(5826), + [anon_sym_TILDE] = ACTIONS(5826), + [anon_sym_STAR] = ACTIONS(5826), + [anon_sym_AMP_AMP] = ACTIONS(5826), + [anon_sym_AMP] = ACTIONS(5824), + [anon_sym___extension__] = ACTIONS(5824), + [anon_sym_typedef] = ACTIONS(5824), + [anon_sym_extern] = ACTIONS(5824), + [anon_sym___attribute__] = ACTIONS(5824), + [anon_sym_COLON_COLON] = ACTIONS(5826), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5826), + [anon_sym___declspec] = ACTIONS(5824), + [anon_sym___based] = ACTIONS(5824), + [anon_sym_RBRACE] = ACTIONS(5826), + [anon_sym_signed] = ACTIONS(5824), + [anon_sym_unsigned] = ACTIONS(5824), + [anon_sym_long] = ACTIONS(5824), + [anon_sym_short] = ACTIONS(5824), + [anon_sym_LBRACK] = ACTIONS(5824), + [anon_sym_static] = ACTIONS(5824), + [anon_sym_register] = ACTIONS(5824), + [anon_sym_inline] = ACTIONS(5824), + [anon_sym___inline] = ACTIONS(5824), + [anon_sym___inline__] = ACTIONS(5824), + [anon_sym___forceinline] = ACTIONS(5824), + [anon_sym_thread_local] = ACTIONS(5824), + [anon_sym___thread] = ACTIONS(5824), + [anon_sym_const] = ACTIONS(5824), + [anon_sym_constexpr] = ACTIONS(5824), + [anon_sym_volatile] = ACTIONS(5824), + [anon_sym_restrict] = ACTIONS(5824), + [anon_sym___restrict__] = ACTIONS(5824), + [anon_sym__Atomic] = ACTIONS(5824), + [anon_sym__Noreturn] = ACTIONS(5824), + [anon_sym_noreturn] = ACTIONS(5824), + [anon_sym_mutable] = ACTIONS(5824), + [anon_sym_constinit] = ACTIONS(5824), + [anon_sym_consteval] = ACTIONS(5824), + [sym_primitive_type] = ACTIONS(5824), + [anon_sym_enum] = ACTIONS(5824), + [anon_sym_class] = ACTIONS(5824), + [anon_sym_struct] = ACTIONS(5824), + [anon_sym_union] = ACTIONS(5824), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5824), + [anon_sym_decltype] = ACTIONS(5824), + [anon_sym_virtual] = ACTIONS(5824), + [anon_sym_alignas] = ACTIONS(5824), + [anon_sym_explicit] = ACTIONS(5824), + [anon_sym_typename] = ACTIONS(5824), + [anon_sym_template] = ACTIONS(5824), + [anon_sym_operator] = ACTIONS(5824), + [anon_sym_friend] = ACTIONS(5824), + [anon_sym_public] = ACTIONS(5824), + [anon_sym_private] = ACTIONS(5824), + [anon_sym_protected] = ACTIONS(5824), + [anon_sym_using] = ACTIONS(5824), + [anon_sym_static_assert] = ACTIONS(5824), + [sym_semgrep_metavar] = ACTIONS(5826), + }, + [2340] = { + [sym_identifier] = ACTIONS(5836), + [aux_sym_preproc_def_token1] = ACTIONS(5836), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5838), + [aux_sym_preproc_if_token1] = ACTIONS(5836), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5836), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5836), + [sym_preproc_directive] = ACTIONS(5836), + [anon_sym_LPAREN2] = ACTIONS(5838), + [anon_sym_TILDE] = ACTIONS(5838), + [anon_sym_STAR] = ACTIONS(5838), + [anon_sym_AMP_AMP] = ACTIONS(5838), + [anon_sym_AMP] = ACTIONS(5836), + [anon_sym___extension__] = ACTIONS(5836), + [anon_sym_typedef] = ACTIONS(5836), + [anon_sym_extern] = ACTIONS(5836), + [anon_sym___attribute__] = ACTIONS(5836), + [anon_sym_COLON_COLON] = ACTIONS(5838), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5838), + [anon_sym___declspec] = ACTIONS(5836), + [anon_sym___based] = ACTIONS(5836), + [anon_sym_RBRACE] = ACTIONS(5838), + [anon_sym_signed] = ACTIONS(5836), + [anon_sym_unsigned] = ACTIONS(5836), + [anon_sym_long] = ACTIONS(5836), + [anon_sym_short] = ACTIONS(5836), + [anon_sym_LBRACK] = ACTIONS(5836), + [anon_sym_static] = ACTIONS(5836), + [anon_sym_register] = ACTIONS(5836), + [anon_sym_inline] = ACTIONS(5836), + [anon_sym___inline] = ACTIONS(5836), + [anon_sym___inline__] = ACTIONS(5836), + [anon_sym___forceinline] = ACTIONS(5836), + [anon_sym_thread_local] = ACTIONS(5836), + [anon_sym___thread] = ACTIONS(5836), + [anon_sym_const] = ACTIONS(5836), + [anon_sym_constexpr] = ACTIONS(5836), + [anon_sym_volatile] = ACTIONS(5836), + [anon_sym_restrict] = ACTIONS(5836), + [anon_sym___restrict__] = ACTIONS(5836), + [anon_sym__Atomic] = ACTIONS(5836), + [anon_sym__Noreturn] = ACTIONS(5836), + [anon_sym_noreturn] = ACTIONS(5836), + [anon_sym_mutable] = ACTIONS(5836), + [anon_sym_constinit] = ACTIONS(5836), + [anon_sym_consteval] = ACTIONS(5836), + [sym_primitive_type] = ACTIONS(5836), + [anon_sym_enum] = ACTIONS(5836), + [anon_sym_class] = ACTIONS(5836), + [anon_sym_struct] = ACTIONS(5836), + [anon_sym_union] = ACTIONS(5836), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5836), + [anon_sym_decltype] = ACTIONS(5836), + [anon_sym_virtual] = ACTIONS(5836), + [anon_sym_alignas] = ACTIONS(5836), + [anon_sym_explicit] = ACTIONS(5836), + [anon_sym_typename] = ACTIONS(5836), + [anon_sym_template] = ACTIONS(5836), + [anon_sym_operator] = ACTIONS(5836), + [anon_sym_friend] = ACTIONS(5836), + [anon_sym_public] = ACTIONS(5836), + [anon_sym_private] = ACTIONS(5836), + [anon_sym_protected] = ACTIONS(5836), + [anon_sym_using] = ACTIONS(5836), + [anon_sym_static_assert] = ACTIONS(5836), + [sym_semgrep_metavar] = ACTIONS(5838), + }, + [2341] = { + [sym_identifier] = ACTIONS(5840), + [aux_sym_preproc_def_token1] = ACTIONS(5840), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5842), + [aux_sym_preproc_if_token1] = ACTIONS(5840), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5840), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5840), + [sym_preproc_directive] = ACTIONS(5840), + [anon_sym_LPAREN2] = ACTIONS(5842), + [anon_sym_TILDE] = ACTIONS(5842), + [anon_sym_STAR] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(5842), + [anon_sym_AMP] = ACTIONS(5840), + [anon_sym___extension__] = ACTIONS(5840), + [anon_sym_typedef] = ACTIONS(5840), + [anon_sym_extern] = ACTIONS(5840), + [anon_sym___attribute__] = ACTIONS(5840), + [anon_sym_COLON_COLON] = ACTIONS(5842), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5842), + [anon_sym___declspec] = ACTIONS(5840), + [anon_sym___based] = ACTIONS(5840), + [anon_sym_RBRACE] = ACTIONS(5842), + [anon_sym_signed] = ACTIONS(5840), + [anon_sym_unsigned] = ACTIONS(5840), + [anon_sym_long] = ACTIONS(5840), + [anon_sym_short] = ACTIONS(5840), + [anon_sym_LBRACK] = ACTIONS(5840), + [anon_sym_static] = ACTIONS(5840), + [anon_sym_register] = ACTIONS(5840), + [anon_sym_inline] = ACTIONS(5840), + [anon_sym___inline] = ACTIONS(5840), + [anon_sym___inline__] = ACTIONS(5840), + [anon_sym___forceinline] = ACTIONS(5840), + [anon_sym_thread_local] = ACTIONS(5840), + [anon_sym___thread] = ACTIONS(5840), + [anon_sym_const] = ACTIONS(5840), + [anon_sym_constexpr] = ACTIONS(5840), + [anon_sym_volatile] = ACTIONS(5840), + [anon_sym_restrict] = ACTIONS(5840), + [anon_sym___restrict__] = ACTIONS(5840), + [anon_sym__Atomic] = ACTIONS(5840), + [anon_sym__Noreturn] = ACTIONS(5840), + [anon_sym_noreturn] = ACTIONS(5840), + [anon_sym_mutable] = ACTIONS(5840), + [anon_sym_constinit] = ACTIONS(5840), + [anon_sym_consteval] = ACTIONS(5840), + [sym_primitive_type] = ACTIONS(5840), + [anon_sym_enum] = ACTIONS(5840), + [anon_sym_class] = ACTIONS(5840), + [anon_sym_struct] = ACTIONS(5840), + [anon_sym_union] = ACTIONS(5840), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5840), + [anon_sym_decltype] = ACTIONS(5840), + [anon_sym_virtual] = ACTIONS(5840), + [anon_sym_alignas] = ACTIONS(5840), + [anon_sym_explicit] = ACTIONS(5840), + [anon_sym_typename] = ACTIONS(5840), + [anon_sym_template] = ACTIONS(5840), + [anon_sym_operator] = ACTIONS(5840), + [anon_sym_friend] = ACTIONS(5840), + [anon_sym_public] = ACTIONS(5840), + [anon_sym_private] = ACTIONS(5840), + [anon_sym_protected] = ACTIONS(5840), + [anon_sym_using] = ACTIONS(5840), + [anon_sym_static_assert] = ACTIONS(5840), + [sym_semgrep_metavar] = ACTIONS(5842), + }, + [2342] = { + [sym_identifier] = ACTIONS(5844), + [aux_sym_preproc_def_token1] = ACTIONS(5844), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5846), + [aux_sym_preproc_if_token1] = ACTIONS(5844), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5844), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5844), + [sym_preproc_directive] = ACTIONS(5844), + [anon_sym_LPAREN2] = ACTIONS(5846), + [anon_sym_TILDE] = ACTIONS(5846), + [anon_sym_STAR] = ACTIONS(5846), + [anon_sym_AMP_AMP] = ACTIONS(5846), + [anon_sym_AMP] = ACTIONS(5844), + [anon_sym___extension__] = ACTIONS(5844), + [anon_sym_typedef] = ACTIONS(5844), + [anon_sym_extern] = ACTIONS(5844), + [anon_sym___attribute__] = ACTIONS(5844), + [anon_sym_COLON_COLON] = ACTIONS(5846), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5846), + [anon_sym___declspec] = ACTIONS(5844), + [anon_sym___based] = ACTIONS(5844), + [anon_sym_RBRACE] = ACTIONS(5846), + [anon_sym_signed] = ACTIONS(5844), + [anon_sym_unsigned] = ACTIONS(5844), + [anon_sym_long] = ACTIONS(5844), + [anon_sym_short] = ACTIONS(5844), + [anon_sym_LBRACK] = ACTIONS(5844), + [anon_sym_static] = ACTIONS(5844), + [anon_sym_register] = ACTIONS(5844), + [anon_sym_inline] = ACTIONS(5844), + [anon_sym___inline] = ACTIONS(5844), + [anon_sym___inline__] = ACTIONS(5844), + [anon_sym___forceinline] = ACTIONS(5844), + [anon_sym_thread_local] = ACTIONS(5844), + [anon_sym___thread] = ACTIONS(5844), + [anon_sym_const] = ACTIONS(5844), + [anon_sym_constexpr] = ACTIONS(5844), + [anon_sym_volatile] = ACTIONS(5844), + [anon_sym_restrict] = ACTIONS(5844), + [anon_sym___restrict__] = ACTIONS(5844), + [anon_sym__Atomic] = ACTIONS(5844), + [anon_sym__Noreturn] = ACTIONS(5844), + [anon_sym_noreturn] = ACTIONS(5844), + [anon_sym_mutable] = ACTIONS(5844), + [anon_sym_constinit] = ACTIONS(5844), + [anon_sym_consteval] = ACTIONS(5844), + [sym_primitive_type] = ACTIONS(5844), + [anon_sym_enum] = ACTIONS(5844), + [anon_sym_class] = ACTIONS(5844), + [anon_sym_struct] = ACTIONS(5844), + [anon_sym_union] = ACTIONS(5844), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5844), + [anon_sym_decltype] = ACTIONS(5844), + [anon_sym_virtual] = ACTIONS(5844), + [anon_sym_alignas] = ACTIONS(5844), + [anon_sym_explicit] = ACTIONS(5844), + [anon_sym_typename] = ACTIONS(5844), + [anon_sym_template] = ACTIONS(5844), + [anon_sym_operator] = ACTIONS(5844), + [anon_sym_friend] = ACTIONS(5844), + [anon_sym_public] = ACTIONS(5844), + [anon_sym_private] = ACTIONS(5844), + [anon_sym_protected] = ACTIONS(5844), + [anon_sym_using] = ACTIONS(5844), + [anon_sym_static_assert] = ACTIONS(5844), + [sym_semgrep_metavar] = ACTIONS(5846), + }, + [2343] = { + [sym_identifier] = ACTIONS(5848), + [aux_sym_preproc_def_token1] = ACTIONS(5848), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5850), + [aux_sym_preproc_if_token1] = ACTIONS(5848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5848), + [sym_preproc_directive] = ACTIONS(5848), + [anon_sym_LPAREN2] = ACTIONS(5850), + [anon_sym_TILDE] = ACTIONS(5850), + [anon_sym_STAR] = ACTIONS(5850), + [anon_sym_AMP_AMP] = ACTIONS(5850), + [anon_sym_AMP] = ACTIONS(5848), + [anon_sym___extension__] = ACTIONS(5848), + [anon_sym_typedef] = ACTIONS(5848), + [anon_sym_extern] = ACTIONS(5848), + [anon_sym___attribute__] = ACTIONS(5848), + [anon_sym_COLON_COLON] = ACTIONS(5850), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5850), + [anon_sym___declspec] = ACTIONS(5848), + [anon_sym___based] = ACTIONS(5848), + [anon_sym_RBRACE] = ACTIONS(5850), + [anon_sym_signed] = ACTIONS(5848), + [anon_sym_unsigned] = ACTIONS(5848), + [anon_sym_long] = ACTIONS(5848), + [anon_sym_short] = ACTIONS(5848), + [anon_sym_LBRACK] = ACTIONS(5848), + [anon_sym_static] = ACTIONS(5848), + [anon_sym_register] = ACTIONS(5848), + [anon_sym_inline] = ACTIONS(5848), + [anon_sym___inline] = ACTIONS(5848), + [anon_sym___inline__] = ACTIONS(5848), + [anon_sym___forceinline] = ACTIONS(5848), + [anon_sym_thread_local] = ACTIONS(5848), + [anon_sym___thread] = ACTIONS(5848), + [anon_sym_const] = ACTIONS(5848), + [anon_sym_constexpr] = ACTIONS(5848), + [anon_sym_volatile] = ACTIONS(5848), + [anon_sym_restrict] = ACTIONS(5848), + [anon_sym___restrict__] = ACTIONS(5848), + [anon_sym__Atomic] = ACTIONS(5848), + [anon_sym__Noreturn] = ACTIONS(5848), + [anon_sym_noreturn] = ACTIONS(5848), + [anon_sym_mutable] = ACTIONS(5848), + [anon_sym_constinit] = ACTIONS(5848), + [anon_sym_consteval] = ACTIONS(5848), + [sym_primitive_type] = ACTIONS(5848), + [anon_sym_enum] = ACTIONS(5848), + [anon_sym_class] = ACTIONS(5848), + [anon_sym_struct] = ACTIONS(5848), + [anon_sym_union] = ACTIONS(5848), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5848), + [anon_sym_decltype] = ACTIONS(5848), + [anon_sym_virtual] = ACTIONS(5848), + [anon_sym_alignas] = ACTIONS(5848), + [anon_sym_explicit] = ACTIONS(5848), + [anon_sym_typename] = ACTIONS(5848), + [anon_sym_template] = ACTIONS(5848), + [anon_sym_operator] = ACTIONS(5848), + [anon_sym_friend] = ACTIONS(5848), + [anon_sym_public] = ACTIONS(5848), + [anon_sym_private] = ACTIONS(5848), + [anon_sym_protected] = ACTIONS(5848), + [anon_sym_using] = ACTIONS(5848), + [anon_sym_static_assert] = ACTIONS(5848), + [sym_semgrep_metavar] = ACTIONS(5850), + }, + [2344] = { + [sym_identifier] = ACTIONS(5852), + [aux_sym_preproc_def_token1] = ACTIONS(5852), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5854), + [aux_sym_preproc_if_token1] = ACTIONS(5852), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5852), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5852), + [sym_preproc_directive] = ACTIONS(5852), + [anon_sym_LPAREN2] = ACTIONS(5854), + [anon_sym_TILDE] = ACTIONS(5854), + [anon_sym_STAR] = ACTIONS(5854), + [anon_sym_AMP_AMP] = ACTIONS(5854), + [anon_sym_AMP] = ACTIONS(5852), + [anon_sym___extension__] = ACTIONS(5852), + [anon_sym_typedef] = ACTIONS(5852), + [anon_sym_extern] = ACTIONS(5852), + [anon_sym___attribute__] = ACTIONS(5852), + [anon_sym_COLON_COLON] = ACTIONS(5854), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5854), + [anon_sym___declspec] = ACTIONS(5852), + [anon_sym___based] = ACTIONS(5852), + [anon_sym_RBRACE] = ACTIONS(5854), + [anon_sym_signed] = ACTIONS(5852), + [anon_sym_unsigned] = ACTIONS(5852), + [anon_sym_long] = ACTIONS(5852), + [anon_sym_short] = ACTIONS(5852), + [anon_sym_LBRACK] = ACTIONS(5852), + [anon_sym_static] = ACTIONS(5852), + [anon_sym_register] = ACTIONS(5852), + [anon_sym_inline] = ACTIONS(5852), + [anon_sym___inline] = ACTIONS(5852), + [anon_sym___inline__] = ACTIONS(5852), + [anon_sym___forceinline] = ACTIONS(5852), + [anon_sym_thread_local] = ACTIONS(5852), + [anon_sym___thread] = ACTIONS(5852), + [anon_sym_const] = ACTIONS(5852), + [anon_sym_constexpr] = ACTIONS(5852), + [anon_sym_volatile] = ACTIONS(5852), + [anon_sym_restrict] = ACTIONS(5852), + [anon_sym___restrict__] = ACTIONS(5852), + [anon_sym__Atomic] = ACTIONS(5852), + [anon_sym__Noreturn] = ACTIONS(5852), + [anon_sym_noreturn] = ACTIONS(5852), + [anon_sym_mutable] = ACTIONS(5852), + [anon_sym_constinit] = ACTIONS(5852), + [anon_sym_consteval] = ACTIONS(5852), + [sym_primitive_type] = ACTIONS(5852), + [anon_sym_enum] = ACTIONS(5852), + [anon_sym_class] = ACTIONS(5852), + [anon_sym_struct] = ACTIONS(5852), + [anon_sym_union] = ACTIONS(5852), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5852), + [anon_sym_decltype] = ACTIONS(5852), + [anon_sym_virtual] = ACTIONS(5852), + [anon_sym_alignas] = ACTIONS(5852), + [anon_sym_explicit] = ACTIONS(5852), + [anon_sym_typename] = ACTIONS(5852), + [anon_sym_template] = ACTIONS(5852), + [anon_sym_operator] = ACTIONS(5852), + [anon_sym_friend] = ACTIONS(5852), + [anon_sym_public] = ACTIONS(5852), + [anon_sym_private] = ACTIONS(5852), + [anon_sym_protected] = ACTIONS(5852), + [anon_sym_using] = ACTIONS(5852), + [anon_sym_static_assert] = ACTIONS(5852), + [sym_semgrep_metavar] = ACTIONS(5854), + }, + [2345] = { + [sym_identifier] = ACTIONS(3087), + [aux_sym_preproc_def_token1] = ACTIONS(3087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [aux_sym_preproc_if_token1] = ACTIONS(3087), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3087), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3087), + [sym_preproc_directive] = ACTIONS(3087), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_TILDE] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_typedef] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3089), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3089), + [anon_sym___declspec] = ACTIONS(3087), + [anon_sym___based] = ACTIONS(3087), + [anon_sym_RBRACE] = ACTIONS(3089), + [anon_sym_signed] = ACTIONS(3087), + [anon_sym_unsigned] = ACTIONS(3087), + [anon_sym_long] = ACTIONS(3087), + [anon_sym_short] = ACTIONS(3087), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_register] = ACTIONS(3087), + [anon_sym_inline] = ACTIONS(3087), + [anon_sym___inline] = ACTIONS(3087), + [anon_sym___inline__] = ACTIONS(3087), + [anon_sym___forceinline] = ACTIONS(3087), + [anon_sym_thread_local] = ACTIONS(3087), + [anon_sym___thread] = ACTIONS(3087), + [anon_sym_const] = ACTIONS(3087), + [anon_sym_constexpr] = ACTIONS(3087), + [anon_sym_volatile] = ACTIONS(3087), + [anon_sym_restrict] = ACTIONS(3087), + [anon_sym___restrict__] = ACTIONS(3087), + [anon_sym__Atomic] = ACTIONS(3087), + [anon_sym__Noreturn] = ACTIONS(3087), + [anon_sym_noreturn] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [sym_primitive_type] = ACTIONS(3087), + [anon_sym_enum] = ACTIONS(3087), + [anon_sym_class] = ACTIONS(3087), + [anon_sym_struct] = ACTIONS(3087), + [anon_sym_union] = ACTIONS(3087), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym_explicit] = ACTIONS(3087), + [anon_sym_typename] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [anon_sym_friend] = ACTIONS(3087), + [anon_sym_public] = ACTIONS(3087), + [anon_sym_private] = ACTIONS(3087), + [anon_sym_protected] = ACTIONS(3087), + [anon_sym_using] = ACTIONS(3087), + [anon_sym_static_assert] = ACTIONS(3087), + [sym_semgrep_metavar] = ACTIONS(3089), + }, + [2346] = { + [sym_identifier] = ACTIONS(5856), + [aux_sym_preproc_def_token1] = ACTIONS(5856), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5858), + [aux_sym_preproc_if_token1] = ACTIONS(5856), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5856), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5856), + [sym_preproc_directive] = ACTIONS(5856), + [anon_sym_LPAREN2] = ACTIONS(5858), + [anon_sym_TILDE] = ACTIONS(5858), + [anon_sym_STAR] = ACTIONS(5858), + [anon_sym_AMP_AMP] = ACTIONS(5858), + [anon_sym_AMP] = ACTIONS(5856), + [anon_sym___extension__] = ACTIONS(5856), + [anon_sym_typedef] = ACTIONS(5856), + [anon_sym_extern] = ACTIONS(5856), + [anon_sym___attribute__] = ACTIONS(5856), + [anon_sym_COLON_COLON] = ACTIONS(5858), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5858), + [anon_sym___declspec] = ACTIONS(5856), + [anon_sym___based] = ACTIONS(5856), + [anon_sym_RBRACE] = ACTIONS(5858), + [anon_sym_signed] = ACTIONS(5856), + [anon_sym_unsigned] = ACTIONS(5856), + [anon_sym_long] = ACTIONS(5856), + [anon_sym_short] = ACTIONS(5856), + [anon_sym_LBRACK] = ACTIONS(5856), + [anon_sym_static] = ACTIONS(5856), + [anon_sym_register] = ACTIONS(5856), + [anon_sym_inline] = ACTIONS(5856), + [anon_sym___inline] = ACTIONS(5856), + [anon_sym___inline__] = ACTIONS(5856), + [anon_sym___forceinline] = ACTIONS(5856), + [anon_sym_thread_local] = ACTIONS(5856), + [anon_sym___thread] = ACTIONS(5856), + [anon_sym_const] = ACTIONS(5856), + [anon_sym_constexpr] = ACTIONS(5856), + [anon_sym_volatile] = ACTIONS(5856), + [anon_sym_restrict] = ACTIONS(5856), + [anon_sym___restrict__] = ACTIONS(5856), + [anon_sym__Atomic] = ACTIONS(5856), + [anon_sym__Noreturn] = ACTIONS(5856), + [anon_sym_noreturn] = ACTIONS(5856), + [anon_sym_mutable] = ACTIONS(5856), + [anon_sym_constinit] = ACTIONS(5856), + [anon_sym_consteval] = ACTIONS(5856), + [sym_primitive_type] = ACTIONS(5856), + [anon_sym_enum] = ACTIONS(5856), + [anon_sym_class] = ACTIONS(5856), + [anon_sym_struct] = ACTIONS(5856), + [anon_sym_union] = ACTIONS(5856), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5856), + [anon_sym_decltype] = ACTIONS(5856), + [anon_sym_virtual] = ACTIONS(5856), + [anon_sym_alignas] = ACTIONS(5856), + [anon_sym_explicit] = ACTIONS(5856), + [anon_sym_typename] = ACTIONS(5856), + [anon_sym_template] = ACTIONS(5856), + [anon_sym_operator] = ACTIONS(5856), + [anon_sym_friend] = ACTIONS(5856), + [anon_sym_public] = ACTIONS(5856), + [anon_sym_private] = ACTIONS(5856), + [anon_sym_protected] = ACTIONS(5856), + [anon_sym_using] = ACTIONS(5856), + [anon_sym_static_assert] = ACTIONS(5856), + [sym_semgrep_metavar] = ACTIONS(5858), + }, + [2347] = { + [sym_identifier] = ACTIONS(5769), + [aux_sym_preproc_def_token1] = ACTIONS(5769), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5771), + [aux_sym_preproc_if_token1] = ACTIONS(5769), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5769), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5769), + [sym_preproc_directive] = ACTIONS(5769), + [anon_sym_LPAREN2] = ACTIONS(5771), + [anon_sym_TILDE] = ACTIONS(5771), + [anon_sym_STAR] = ACTIONS(5771), + [anon_sym_AMP_AMP] = ACTIONS(5771), + [anon_sym_AMP] = ACTIONS(5769), + [anon_sym___extension__] = ACTIONS(5769), + [anon_sym_typedef] = ACTIONS(5769), + [anon_sym_extern] = ACTIONS(5769), + [anon_sym___attribute__] = ACTIONS(5769), + [anon_sym_COLON_COLON] = ACTIONS(5771), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5771), + [anon_sym___declspec] = ACTIONS(5769), + [anon_sym___based] = ACTIONS(5769), + [anon_sym_RBRACE] = ACTIONS(5771), + [anon_sym_signed] = ACTIONS(5769), + [anon_sym_unsigned] = ACTIONS(5769), + [anon_sym_long] = ACTIONS(5769), + [anon_sym_short] = ACTIONS(5769), + [anon_sym_LBRACK] = ACTIONS(5769), + [anon_sym_static] = ACTIONS(5769), + [anon_sym_register] = ACTIONS(5769), + [anon_sym_inline] = ACTIONS(5769), + [anon_sym___inline] = ACTIONS(5769), + [anon_sym___inline__] = ACTIONS(5769), + [anon_sym___forceinline] = ACTIONS(5769), + [anon_sym_thread_local] = ACTIONS(5769), + [anon_sym___thread] = ACTIONS(5769), + [anon_sym_const] = ACTIONS(5769), + [anon_sym_constexpr] = ACTIONS(5769), + [anon_sym_volatile] = ACTIONS(5769), + [anon_sym_restrict] = ACTIONS(5769), + [anon_sym___restrict__] = ACTIONS(5769), + [anon_sym__Atomic] = ACTIONS(5769), + [anon_sym__Noreturn] = ACTIONS(5769), + [anon_sym_noreturn] = ACTIONS(5769), + [anon_sym_mutable] = ACTIONS(5769), + [anon_sym_constinit] = ACTIONS(5769), + [anon_sym_consteval] = ACTIONS(5769), + [sym_primitive_type] = ACTIONS(5769), + [anon_sym_enum] = ACTIONS(5769), + [anon_sym_class] = ACTIONS(5769), + [anon_sym_struct] = ACTIONS(5769), + [anon_sym_union] = ACTIONS(5769), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5769), + [anon_sym_decltype] = ACTIONS(5769), + [anon_sym_virtual] = ACTIONS(5769), + [anon_sym_alignas] = ACTIONS(5769), + [anon_sym_explicit] = ACTIONS(5769), + [anon_sym_typename] = ACTIONS(5769), + [anon_sym_template] = ACTIONS(5769), + [anon_sym_operator] = ACTIONS(5769), + [anon_sym_friend] = ACTIONS(5769), + [anon_sym_public] = ACTIONS(5769), + [anon_sym_private] = ACTIONS(5769), + [anon_sym_protected] = ACTIONS(5769), + [anon_sym_using] = ACTIONS(5769), + [anon_sym_static_assert] = ACTIONS(5769), + [sym_semgrep_metavar] = ACTIONS(5771), + }, + [2348] = { + [sym_identifier] = ACTIONS(5860), + [aux_sym_preproc_def_token1] = ACTIONS(5860), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5862), + [aux_sym_preproc_if_token1] = ACTIONS(5860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5860), + [sym_preproc_directive] = ACTIONS(5860), + [anon_sym_LPAREN2] = ACTIONS(5862), + [anon_sym_TILDE] = ACTIONS(5862), + [anon_sym_STAR] = ACTIONS(5862), + [anon_sym_AMP_AMP] = ACTIONS(5862), + [anon_sym_AMP] = ACTIONS(5860), + [anon_sym___extension__] = ACTIONS(5860), + [anon_sym_typedef] = ACTIONS(5860), + [anon_sym_extern] = ACTIONS(5860), + [anon_sym___attribute__] = ACTIONS(5860), + [anon_sym_COLON_COLON] = ACTIONS(5862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5862), + [anon_sym___declspec] = ACTIONS(5860), + [anon_sym___based] = ACTIONS(5860), + [anon_sym_RBRACE] = ACTIONS(5862), + [anon_sym_signed] = ACTIONS(5860), + [anon_sym_unsigned] = ACTIONS(5860), + [anon_sym_long] = ACTIONS(5860), + [anon_sym_short] = ACTIONS(5860), + [anon_sym_LBRACK] = ACTIONS(5860), + [anon_sym_static] = ACTIONS(5860), + [anon_sym_register] = ACTIONS(5860), + [anon_sym_inline] = ACTIONS(5860), + [anon_sym___inline] = ACTIONS(5860), + [anon_sym___inline__] = ACTIONS(5860), + [anon_sym___forceinline] = ACTIONS(5860), + [anon_sym_thread_local] = ACTIONS(5860), + [anon_sym___thread] = ACTIONS(5860), + [anon_sym_const] = ACTIONS(5860), + [anon_sym_constexpr] = ACTIONS(5860), + [anon_sym_volatile] = ACTIONS(5860), + [anon_sym_restrict] = ACTIONS(5860), + [anon_sym___restrict__] = ACTIONS(5860), + [anon_sym__Atomic] = ACTIONS(5860), + [anon_sym__Noreturn] = ACTIONS(5860), + [anon_sym_noreturn] = ACTIONS(5860), + [anon_sym_mutable] = ACTIONS(5860), + [anon_sym_constinit] = ACTIONS(5860), + [anon_sym_consteval] = ACTIONS(5860), + [sym_primitive_type] = ACTIONS(5860), + [anon_sym_enum] = ACTIONS(5860), + [anon_sym_class] = ACTIONS(5860), + [anon_sym_struct] = ACTIONS(5860), + [anon_sym_union] = ACTIONS(5860), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5860), + [anon_sym_decltype] = ACTIONS(5860), + [anon_sym_virtual] = ACTIONS(5860), + [anon_sym_alignas] = ACTIONS(5860), + [anon_sym_explicit] = ACTIONS(5860), + [anon_sym_typename] = ACTIONS(5860), + [anon_sym_template] = ACTIONS(5860), + [anon_sym_operator] = ACTIONS(5860), + [anon_sym_friend] = ACTIONS(5860), + [anon_sym_public] = ACTIONS(5860), + [anon_sym_private] = ACTIONS(5860), + [anon_sym_protected] = ACTIONS(5860), + [anon_sym_using] = ACTIONS(5860), + [anon_sym_static_assert] = ACTIONS(5860), + [sym_semgrep_metavar] = ACTIONS(5862), + }, + [2349] = { + [sym_identifier] = ACTIONS(5864), + [aux_sym_preproc_def_token1] = ACTIONS(5864), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5866), + [aux_sym_preproc_if_token1] = ACTIONS(5864), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5864), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5864), + [sym_preproc_directive] = ACTIONS(5864), + [anon_sym_LPAREN2] = ACTIONS(5866), + [anon_sym_TILDE] = ACTIONS(5866), + [anon_sym_STAR] = ACTIONS(5866), + [anon_sym_AMP_AMP] = ACTIONS(5866), + [anon_sym_AMP] = ACTIONS(5864), + [anon_sym___extension__] = ACTIONS(5864), + [anon_sym_typedef] = ACTIONS(5864), + [anon_sym_extern] = ACTIONS(5864), + [anon_sym___attribute__] = ACTIONS(5864), + [anon_sym_COLON_COLON] = ACTIONS(5866), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5866), + [anon_sym___declspec] = ACTIONS(5864), + [anon_sym___based] = ACTIONS(5864), + [anon_sym_RBRACE] = ACTIONS(5866), + [anon_sym_signed] = ACTIONS(5864), + [anon_sym_unsigned] = ACTIONS(5864), + [anon_sym_long] = ACTIONS(5864), + [anon_sym_short] = ACTIONS(5864), + [anon_sym_LBRACK] = ACTIONS(5864), + [anon_sym_static] = ACTIONS(5864), + [anon_sym_register] = ACTIONS(5864), + [anon_sym_inline] = ACTIONS(5864), + [anon_sym___inline] = ACTIONS(5864), + [anon_sym___inline__] = ACTIONS(5864), + [anon_sym___forceinline] = ACTIONS(5864), + [anon_sym_thread_local] = ACTIONS(5864), + [anon_sym___thread] = ACTIONS(5864), + [anon_sym_const] = ACTIONS(5864), + [anon_sym_constexpr] = ACTIONS(5864), + [anon_sym_volatile] = ACTIONS(5864), + [anon_sym_restrict] = ACTIONS(5864), + [anon_sym___restrict__] = ACTIONS(5864), + [anon_sym__Atomic] = ACTIONS(5864), + [anon_sym__Noreturn] = ACTIONS(5864), + [anon_sym_noreturn] = ACTIONS(5864), + [anon_sym_mutable] = ACTIONS(5864), + [anon_sym_constinit] = ACTIONS(5864), + [anon_sym_consteval] = ACTIONS(5864), + [sym_primitive_type] = ACTIONS(5864), + [anon_sym_enum] = ACTIONS(5864), + [anon_sym_class] = ACTIONS(5864), + [anon_sym_struct] = ACTIONS(5864), + [anon_sym_union] = ACTIONS(5864), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5864), + [anon_sym_decltype] = ACTIONS(5864), + [anon_sym_virtual] = ACTIONS(5864), + [anon_sym_alignas] = ACTIONS(5864), + [anon_sym_explicit] = ACTIONS(5864), + [anon_sym_typename] = ACTIONS(5864), + [anon_sym_template] = ACTIONS(5864), + [anon_sym_operator] = ACTIONS(5864), + [anon_sym_friend] = ACTIONS(5864), + [anon_sym_public] = ACTIONS(5864), + [anon_sym_private] = ACTIONS(5864), + [anon_sym_protected] = ACTIONS(5864), + [anon_sym_using] = ACTIONS(5864), + [anon_sym_static_assert] = ACTIONS(5864), + [sym_semgrep_metavar] = ACTIONS(5866), + }, + [2350] = { + [sym_identifier] = ACTIONS(5864), + [aux_sym_preproc_def_token1] = ACTIONS(5864), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5866), + [aux_sym_preproc_if_token1] = ACTIONS(5864), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5864), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5864), + [sym_preproc_directive] = ACTIONS(5864), + [anon_sym_LPAREN2] = ACTIONS(5866), + [anon_sym_TILDE] = ACTIONS(5866), + [anon_sym_STAR] = ACTIONS(5866), + [anon_sym_AMP_AMP] = ACTIONS(5866), + [anon_sym_AMP] = ACTIONS(5864), + [anon_sym___extension__] = ACTIONS(5864), + [anon_sym_typedef] = ACTIONS(5864), + [anon_sym_extern] = ACTIONS(5864), + [anon_sym___attribute__] = ACTIONS(5864), + [anon_sym_COLON_COLON] = ACTIONS(5866), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5866), + [anon_sym___declspec] = ACTIONS(5864), + [anon_sym___based] = ACTIONS(5864), + [anon_sym_RBRACE] = ACTIONS(5866), + [anon_sym_signed] = ACTIONS(5864), + [anon_sym_unsigned] = ACTIONS(5864), + [anon_sym_long] = ACTIONS(5864), + [anon_sym_short] = ACTIONS(5864), + [anon_sym_LBRACK] = ACTIONS(5864), + [anon_sym_static] = ACTIONS(5864), + [anon_sym_register] = ACTIONS(5864), + [anon_sym_inline] = ACTIONS(5864), + [anon_sym___inline] = ACTIONS(5864), + [anon_sym___inline__] = ACTIONS(5864), + [anon_sym___forceinline] = ACTIONS(5864), + [anon_sym_thread_local] = ACTIONS(5864), + [anon_sym___thread] = ACTIONS(5864), + [anon_sym_const] = ACTIONS(5864), + [anon_sym_constexpr] = ACTIONS(5864), + [anon_sym_volatile] = ACTIONS(5864), + [anon_sym_restrict] = ACTIONS(5864), + [anon_sym___restrict__] = ACTIONS(5864), + [anon_sym__Atomic] = ACTIONS(5864), + [anon_sym__Noreturn] = ACTIONS(5864), + [anon_sym_noreturn] = ACTIONS(5864), + [anon_sym_mutable] = ACTIONS(5864), + [anon_sym_constinit] = ACTIONS(5864), + [anon_sym_consteval] = ACTIONS(5864), + [sym_primitive_type] = ACTIONS(5864), + [anon_sym_enum] = ACTIONS(5864), + [anon_sym_class] = ACTIONS(5864), + [anon_sym_struct] = ACTIONS(5864), + [anon_sym_union] = ACTIONS(5864), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5864), + [anon_sym_decltype] = ACTIONS(5864), + [anon_sym_virtual] = ACTIONS(5864), + [anon_sym_alignas] = ACTIONS(5864), + [anon_sym_explicit] = ACTIONS(5864), + [anon_sym_typename] = ACTIONS(5864), + [anon_sym_template] = ACTIONS(5864), + [anon_sym_operator] = ACTIONS(5864), + [anon_sym_friend] = ACTIONS(5864), + [anon_sym_public] = ACTIONS(5864), + [anon_sym_private] = ACTIONS(5864), + [anon_sym_protected] = ACTIONS(5864), + [anon_sym_using] = ACTIONS(5864), + [anon_sym_static_assert] = ACTIONS(5864), + [sym_semgrep_metavar] = ACTIONS(5866), + }, + [2351] = { + [sym_identifier] = ACTIONS(5868), + [aux_sym_preproc_def_token1] = ACTIONS(5868), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5870), + [aux_sym_preproc_if_token1] = ACTIONS(5868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5868), + [sym_preproc_directive] = ACTIONS(5868), + [anon_sym_LPAREN2] = ACTIONS(5870), + [anon_sym_TILDE] = ACTIONS(5870), + [anon_sym_STAR] = ACTIONS(5870), + [anon_sym_AMP_AMP] = ACTIONS(5870), + [anon_sym_AMP] = ACTIONS(5868), + [anon_sym___extension__] = ACTIONS(5868), + [anon_sym_typedef] = ACTIONS(5868), + [anon_sym_extern] = ACTIONS(5868), + [anon_sym___attribute__] = ACTIONS(5868), + [anon_sym_COLON_COLON] = ACTIONS(5870), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5870), + [anon_sym___declspec] = ACTIONS(5868), + [anon_sym___based] = ACTIONS(5868), + [anon_sym_RBRACE] = ACTIONS(5870), + [anon_sym_signed] = ACTIONS(5868), + [anon_sym_unsigned] = ACTIONS(5868), + [anon_sym_long] = ACTIONS(5868), + [anon_sym_short] = ACTIONS(5868), + [anon_sym_LBRACK] = ACTIONS(5868), + [anon_sym_static] = ACTIONS(5868), + [anon_sym_register] = ACTIONS(5868), + [anon_sym_inline] = ACTIONS(5868), + [anon_sym___inline] = ACTIONS(5868), + [anon_sym___inline__] = ACTIONS(5868), + [anon_sym___forceinline] = ACTIONS(5868), + [anon_sym_thread_local] = ACTIONS(5868), + [anon_sym___thread] = ACTIONS(5868), + [anon_sym_const] = ACTIONS(5868), + [anon_sym_constexpr] = ACTIONS(5868), + [anon_sym_volatile] = ACTIONS(5868), + [anon_sym_restrict] = ACTIONS(5868), + [anon_sym___restrict__] = ACTIONS(5868), + [anon_sym__Atomic] = ACTIONS(5868), + [anon_sym__Noreturn] = ACTIONS(5868), + [anon_sym_noreturn] = ACTIONS(5868), + [anon_sym_mutable] = ACTIONS(5868), + [anon_sym_constinit] = ACTIONS(5868), + [anon_sym_consteval] = ACTIONS(5868), + [sym_primitive_type] = ACTIONS(5868), + [anon_sym_enum] = ACTIONS(5868), + [anon_sym_class] = ACTIONS(5868), + [anon_sym_struct] = ACTIONS(5868), + [anon_sym_union] = ACTIONS(5868), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5868), + [anon_sym_decltype] = ACTIONS(5868), + [anon_sym_virtual] = ACTIONS(5868), + [anon_sym_alignas] = ACTIONS(5868), + [anon_sym_explicit] = ACTIONS(5868), + [anon_sym_typename] = ACTIONS(5868), + [anon_sym_template] = ACTIONS(5868), + [anon_sym_operator] = ACTIONS(5868), + [anon_sym_friend] = ACTIONS(5868), + [anon_sym_public] = ACTIONS(5868), + [anon_sym_private] = ACTIONS(5868), + [anon_sym_protected] = ACTIONS(5868), + [anon_sym_using] = ACTIONS(5868), + [anon_sym_static_assert] = ACTIONS(5868), + [sym_semgrep_metavar] = ACTIONS(5870), + }, + [2352] = { + [sym_identifier] = ACTIONS(5872), + [aux_sym_preproc_def_token1] = ACTIONS(5872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5874), + [aux_sym_preproc_if_token1] = ACTIONS(5872), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5872), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5872), + [sym_preproc_directive] = ACTIONS(5872), + [anon_sym_LPAREN2] = ACTIONS(5874), + [anon_sym_TILDE] = ACTIONS(5874), + [anon_sym_STAR] = ACTIONS(5874), + [anon_sym_AMP_AMP] = ACTIONS(5874), + [anon_sym_AMP] = ACTIONS(5872), + [anon_sym___extension__] = ACTIONS(5872), + [anon_sym_typedef] = ACTIONS(5872), + [anon_sym_extern] = ACTIONS(5872), + [anon_sym___attribute__] = ACTIONS(5872), + [anon_sym_COLON_COLON] = ACTIONS(5874), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5874), + [anon_sym___declspec] = ACTIONS(5872), + [anon_sym___based] = ACTIONS(5872), + [anon_sym_RBRACE] = ACTIONS(5874), + [anon_sym_signed] = ACTIONS(5872), + [anon_sym_unsigned] = ACTIONS(5872), + [anon_sym_long] = ACTIONS(5872), + [anon_sym_short] = ACTIONS(5872), + [anon_sym_LBRACK] = ACTIONS(5872), + [anon_sym_static] = ACTIONS(5872), + [anon_sym_register] = ACTIONS(5872), + [anon_sym_inline] = ACTIONS(5872), + [anon_sym___inline] = ACTIONS(5872), + [anon_sym___inline__] = ACTIONS(5872), + [anon_sym___forceinline] = ACTIONS(5872), + [anon_sym_thread_local] = ACTIONS(5872), + [anon_sym___thread] = ACTIONS(5872), + [anon_sym_const] = ACTIONS(5872), + [anon_sym_constexpr] = ACTIONS(5872), + [anon_sym_volatile] = ACTIONS(5872), + [anon_sym_restrict] = ACTIONS(5872), + [anon_sym___restrict__] = ACTIONS(5872), + [anon_sym__Atomic] = ACTIONS(5872), + [anon_sym__Noreturn] = ACTIONS(5872), + [anon_sym_noreturn] = ACTIONS(5872), + [anon_sym_mutable] = ACTIONS(5872), + [anon_sym_constinit] = ACTIONS(5872), + [anon_sym_consteval] = ACTIONS(5872), + [sym_primitive_type] = ACTIONS(5872), + [anon_sym_enum] = ACTIONS(5872), + [anon_sym_class] = ACTIONS(5872), + [anon_sym_struct] = ACTIONS(5872), + [anon_sym_union] = ACTIONS(5872), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5872), + [anon_sym_decltype] = ACTIONS(5872), + [anon_sym_virtual] = ACTIONS(5872), + [anon_sym_alignas] = ACTIONS(5872), + [anon_sym_explicit] = ACTIONS(5872), + [anon_sym_typename] = ACTIONS(5872), + [anon_sym_template] = ACTIONS(5872), + [anon_sym_operator] = ACTIONS(5872), + [anon_sym_friend] = ACTIONS(5872), + [anon_sym_public] = ACTIONS(5872), + [anon_sym_private] = ACTIONS(5872), + [anon_sym_protected] = ACTIONS(5872), + [anon_sym_using] = ACTIONS(5872), + [anon_sym_static_assert] = ACTIONS(5872), + [sym_semgrep_metavar] = ACTIONS(5874), + }, + [2353] = { + [sym_identifier] = ACTIONS(3189), + [aux_sym_preproc_def_token1] = ACTIONS(3189), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), + [aux_sym_preproc_if_token1] = ACTIONS(3189), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3189), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3189), + [sym_preproc_directive] = ACTIONS(3189), + [anon_sym_LPAREN2] = ACTIONS(3191), + [anon_sym_TILDE] = ACTIONS(3191), + [anon_sym_STAR] = ACTIONS(3191), + [anon_sym_AMP_AMP] = ACTIONS(3191), + [anon_sym_AMP] = ACTIONS(3189), + [anon_sym___extension__] = ACTIONS(3189), + [anon_sym_typedef] = ACTIONS(3189), + [anon_sym_extern] = ACTIONS(3189), + [anon_sym___attribute__] = ACTIONS(3189), + [anon_sym_COLON_COLON] = ACTIONS(3191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3191), + [anon_sym___declspec] = ACTIONS(3189), + [anon_sym___based] = ACTIONS(3189), + [anon_sym_RBRACE] = ACTIONS(3191), + [anon_sym_signed] = ACTIONS(3189), + [anon_sym_unsigned] = ACTIONS(3189), + [anon_sym_long] = ACTIONS(3189), + [anon_sym_short] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_static] = ACTIONS(3189), + [anon_sym_register] = ACTIONS(3189), + [anon_sym_inline] = ACTIONS(3189), + [anon_sym___inline] = ACTIONS(3189), + [anon_sym___inline__] = ACTIONS(3189), + [anon_sym___forceinline] = ACTIONS(3189), + [anon_sym_thread_local] = ACTIONS(3189), + [anon_sym___thread] = ACTIONS(3189), + [anon_sym_const] = ACTIONS(3189), + [anon_sym_constexpr] = ACTIONS(3189), + [anon_sym_volatile] = ACTIONS(3189), + [anon_sym_restrict] = ACTIONS(3189), + [anon_sym___restrict__] = ACTIONS(3189), + [anon_sym__Atomic] = ACTIONS(3189), + [anon_sym__Noreturn] = ACTIONS(3189), + [anon_sym_noreturn] = ACTIONS(3189), + [anon_sym_mutable] = ACTIONS(3189), + [anon_sym_constinit] = ACTIONS(3189), + [anon_sym_consteval] = ACTIONS(3189), + [sym_primitive_type] = ACTIONS(3189), + [anon_sym_enum] = ACTIONS(3189), + [anon_sym_class] = ACTIONS(3189), + [anon_sym_struct] = ACTIONS(3189), + [anon_sym_union] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3189), + [anon_sym_decltype] = ACTIONS(3189), + [anon_sym_virtual] = ACTIONS(3189), + [anon_sym_alignas] = ACTIONS(3189), + [anon_sym_explicit] = ACTIONS(3189), + [anon_sym_typename] = ACTIONS(3189), + [anon_sym_template] = ACTIONS(3189), + [anon_sym_operator] = ACTIONS(3189), + [anon_sym_friend] = ACTIONS(3189), + [anon_sym_public] = ACTIONS(3189), + [anon_sym_private] = ACTIONS(3189), + [anon_sym_protected] = ACTIONS(3189), + [anon_sym_using] = ACTIONS(3189), + [anon_sym_static_assert] = ACTIONS(3189), + [sym_semgrep_metavar] = ACTIONS(3191), + }, + [2354] = { + [ts_builtin_sym_end] = ACTIONS(6266), + [sym_identifier] = ACTIONS(6268), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6266), + [anon_sym_COMMA] = ACTIONS(6266), + [anon_sym_RPAREN] = ACTIONS(6266), + [aux_sym_preproc_if_token2] = ACTIONS(6266), + [aux_sym_preproc_else_token1] = ACTIONS(6266), + [aux_sym_preproc_elif_token1] = ACTIONS(6268), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6266), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6266), + [anon_sym_LPAREN2] = ACTIONS(6266), + [anon_sym_DASH] = ACTIONS(6268), + [anon_sym_PLUS] = ACTIONS(6268), + [anon_sym_STAR] = ACTIONS(6268), + [anon_sym_SLASH] = ACTIONS(6268), + [anon_sym_PERCENT] = ACTIONS(6268), + [anon_sym_PIPE_PIPE] = ACTIONS(6266), + [anon_sym_AMP_AMP] = ACTIONS(6266), + [anon_sym_PIPE] = ACTIONS(6268), + [anon_sym_CARET] = ACTIONS(6268), + [anon_sym_AMP] = ACTIONS(6268), + [anon_sym_EQ_EQ] = ACTIONS(6266), + [anon_sym_BANG_EQ] = ACTIONS(6266), + [anon_sym_GT] = ACTIONS(6268), + [anon_sym_GT_EQ] = ACTIONS(6266), + [anon_sym_LT_EQ] = ACTIONS(6268), + [anon_sym_LT] = ACTIONS(6268), + [anon_sym_LT_LT] = ACTIONS(6268), + [anon_sym_GT_GT] = ACTIONS(6268), + [anon_sym_SEMI] = ACTIONS(6266), + [anon_sym___attribute__] = ACTIONS(6268), + [anon_sym_LBRACE] = ACTIONS(6266), + [anon_sym_RBRACE] = ACTIONS(6266), + [anon_sym_LBRACK] = ACTIONS(6266), + [anon_sym_RBRACK] = ACTIONS(6266), + [anon_sym_EQ] = ACTIONS(6268), + [anon_sym_COLON] = ACTIONS(6266), + [anon_sym_QMARK] = ACTIONS(6266), + [anon_sym_STAR_EQ] = ACTIONS(6266), + [anon_sym_SLASH_EQ] = ACTIONS(6266), + [anon_sym_PERCENT_EQ] = ACTIONS(6266), + [anon_sym_PLUS_EQ] = ACTIONS(6266), + [anon_sym_DASH_EQ] = ACTIONS(6266), + [anon_sym_LT_LT_EQ] = ACTIONS(6266), + [anon_sym_GT_GT_EQ] = ACTIONS(6266), + [anon_sym_AMP_EQ] = ACTIONS(6266), + [anon_sym_CARET_EQ] = ACTIONS(6266), + [anon_sym_PIPE_EQ] = ACTIONS(6266), + [anon_sym_and_eq] = ACTIONS(6268), + [anon_sym_or_eq] = ACTIONS(6268), + [anon_sym_xor_eq] = ACTIONS(6268), + [anon_sym_LT_EQ_GT] = ACTIONS(6266), + [anon_sym_or] = ACTIONS(6268), + [anon_sym_and] = ACTIONS(6268), + [anon_sym_bitor] = ACTIONS(6268), + [anon_sym_xor] = ACTIONS(6268), + [anon_sym_bitand] = ACTIONS(6268), + [anon_sym_not_eq] = ACTIONS(6268), + [anon_sym_DASH_DASH] = ACTIONS(6266), + [anon_sym_PLUS_PLUS] = ACTIONS(6266), + [anon_sym_DOT] = ACTIONS(6268), + [anon_sym_DOT_STAR] = ACTIONS(6266), + [anon_sym_DASH_GT] = ACTIONS(6266), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6268), + [anon_sym_decltype] = ACTIONS(6268), + }, + [2355] = { + [ts_builtin_sym_end] = ACTIONS(6270), + [sym_identifier] = ACTIONS(6272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6270), + [anon_sym_COMMA] = ACTIONS(6270), + [anon_sym_RPAREN] = ACTIONS(6270), + [aux_sym_preproc_if_token2] = ACTIONS(6270), + [aux_sym_preproc_else_token1] = ACTIONS(6270), + [aux_sym_preproc_elif_token1] = ACTIONS(6272), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6270), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6270), + [anon_sym_LPAREN2] = ACTIONS(6270), + [anon_sym_DASH] = ACTIONS(6272), + [anon_sym_PLUS] = ACTIONS(6272), + [anon_sym_STAR] = ACTIONS(6272), + [anon_sym_SLASH] = ACTIONS(6272), + [anon_sym_PERCENT] = ACTIONS(6272), + [anon_sym_PIPE_PIPE] = ACTIONS(6270), + [anon_sym_AMP_AMP] = ACTIONS(6270), + [anon_sym_PIPE] = ACTIONS(6272), + [anon_sym_CARET] = ACTIONS(6272), + [anon_sym_AMP] = ACTIONS(6272), + [anon_sym_EQ_EQ] = ACTIONS(6270), + [anon_sym_BANG_EQ] = ACTIONS(6270), + [anon_sym_GT] = ACTIONS(6272), + [anon_sym_GT_EQ] = ACTIONS(6270), + [anon_sym_LT_EQ] = ACTIONS(6272), + [anon_sym_LT] = ACTIONS(6272), + [anon_sym_LT_LT] = ACTIONS(6272), + [anon_sym_GT_GT] = ACTIONS(6272), + [anon_sym_SEMI] = ACTIONS(6270), + [anon_sym___attribute__] = ACTIONS(6272), + [anon_sym_LBRACE] = ACTIONS(6270), + [anon_sym_RBRACE] = ACTIONS(6270), + [anon_sym_LBRACK] = ACTIONS(6270), + [anon_sym_RBRACK] = ACTIONS(6270), + [anon_sym_EQ] = ACTIONS(6272), + [anon_sym_COLON] = ACTIONS(6270), + [anon_sym_QMARK] = ACTIONS(6270), + [anon_sym_STAR_EQ] = ACTIONS(6270), + [anon_sym_SLASH_EQ] = ACTIONS(6270), + [anon_sym_PERCENT_EQ] = ACTIONS(6270), + [anon_sym_PLUS_EQ] = ACTIONS(6270), + [anon_sym_DASH_EQ] = ACTIONS(6270), + [anon_sym_LT_LT_EQ] = ACTIONS(6270), + [anon_sym_GT_GT_EQ] = ACTIONS(6270), + [anon_sym_AMP_EQ] = ACTIONS(6270), + [anon_sym_CARET_EQ] = ACTIONS(6270), + [anon_sym_PIPE_EQ] = ACTIONS(6270), + [anon_sym_and_eq] = ACTIONS(6272), + [anon_sym_or_eq] = ACTIONS(6272), + [anon_sym_xor_eq] = ACTIONS(6272), + [anon_sym_LT_EQ_GT] = ACTIONS(6270), + [anon_sym_or] = ACTIONS(6272), + [anon_sym_and] = ACTIONS(6272), + [anon_sym_bitor] = ACTIONS(6272), + [anon_sym_xor] = ACTIONS(6272), + [anon_sym_bitand] = ACTIONS(6272), + [anon_sym_not_eq] = ACTIONS(6272), + [anon_sym_DASH_DASH] = ACTIONS(6270), + [anon_sym_PLUS_PLUS] = ACTIONS(6270), + [anon_sym_DOT] = ACTIONS(6272), + [anon_sym_DOT_STAR] = ACTIONS(6270), + [anon_sym_DASH_GT] = ACTIONS(6270), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6272), + [anon_sym_decltype] = ACTIONS(6272), + }, + [2356] = { + [ts_builtin_sym_end] = ACTIONS(5987), + [sym_identifier] = ACTIONS(5989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5987), + [anon_sym_COMMA] = ACTIONS(5987), + [anon_sym_RPAREN] = ACTIONS(5987), + [aux_sym_preproc_if_token2] = ACTIONS(5987), + [aux_sym_preproc_else_token1] = ACTIONS(5987), + [aux_sym_preproc_elif_token1] = ACTIONS(5989), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5987), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5987), + [anon_sym_LPAREN2] = ACTIONS(5987), + [anon_sym_DASH] = ACTIONS(5989), + [anon_sym_PLUS] = ACTIONS(5989), + [anon_sym_STAR] = ACTIONS(5989), + [anon_sym_SLASH] = ACTIONS(5989), + [anon_sym_PERCENT] = ACTIONS(5989), + [anon_sym_PIPE_PIPE] = ACTIONS(5987), + [anon_sym_AMP_AMP] = ACTIONS(5987), + [anon_sym_PIPE] = ACTIONS(5989), + [anon_sym_CARET] = ACTIONS(5989), + [anon_sym_AMP] = ACTIONS(5989), + [anon_sym_EQ_EQ] = ACTIONS(5987), + [anon_sym_BANG_EQ] = ACTIONS(5987), + [anon_sym_GT] = ACTIONS(5989), + [anon_sym_GT_EQ] = ACTIONS(5987), + [anon_sym_LT_EQ] = ACTIONS(5989), + [anon_sym_LT] = ACTIONS(5989), + [anon_sym_LT_LT] = ACTIONS(5989), + [anon_sym_GT_GT] = ACTIONS(5989), + [anon_sym_SEMI] = ACTIONS(5987), + [anon_sym___attribute__] = ACTIONS(5989), + [anon_sym_LBRACE] = ACTIONS(5987), + [anon_sym_RBRACE] = ACTIONS(5987), + [anon_sym_LBRACK] = ACTIONS(5987), + [anon_sym_RBRACK] = ACTIONS(5987), + [anon_sym_EQ] = ACTIONS(5989), + [anon_sym_COLON] = ACTIONS(5987), + [anon_sym_QMARK] = ACTIONS(5987), + [anon_sym_STAR_EQ] = ACTIONS(5987), + [anon_sym_SLASH_EQ] = ACTIONS(5987), + [anon_sym_PERCENT_EQ] = ACTIONS(5987), + [anon_sym_PLUS_EQ] = ACTIONS(5987), + [anon_sym_DASH_EQ] = ACTIONS(5987), + [anon_sym_LT_LT_EQ] = ACTIONS(5987), + [anon_sym_GT_GT_EQ] = ACTIONS(5987), + [anon_sym_AMP_EQ] = ACTIONS(5987), + [anon_sym_CARET_EQ] = ACTIONS(5987), + [anon_sym_PIPE_EQ] = ACTIONS(5987), + [anon_sym_and_eq] = ACTIONS(5989), + [anon_sym_or_eq] = ACTIONS(5989), + [anon_sym_xor_eq] = ACTIONS(5989), + [anon_sym_LT_EQ_GT] = ACTIONS(5987), + [anon_sym_or] = ACTIONS(5989), + [anon_sym_and] = ACTIONS(5989), + [anon_sym_bitor] = ACTIONS(5989), + [anon_sym_xor] = ACTIONS(5989), + [anon_sym_bitand] = ACTIONS(5989), + [anon_sym_not_eq] = ACTIONS(5989), + [anon_sym_DASH_DASH] = ACTIONS(5987), + [anon_sym_PLUS_PLUS] = ACTIONS(5987), + [anon_sym_DOT] = ACTIONS(5989), + [anon_sym_DOT_STAR] = ACTIONS(5987), + [anon_sym_DASH_GT] = ACTIONS(5987), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5989), + [anon_sym_decltype] = ACTIONS(5989), + }, + [2357] = { + [sym_identifier] = ACTIONS(3380), + [aux_sym_preproc_def_token1] = ACTIONS(3380), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3382), + [aux_sym_preproc_if_token1] = ACTIONS(3380), + [aux_sym_preproc_if_token2] = ACTIONS(3380), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3380), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3380), + [sym_preproc_directive] = ACTIONS(3380), + [anon_sym_LPAREN2] = ACTIONS(3382), + [anon_sym_TILDE] = ACTIONS(3382), + [anon_sym_STAR] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_AMP] = ACTIONS(3380), + [anon_sym___extension__] = ACTIONS(3380), + [anon_sym_typedef] = ACTIONS(3380), + [anon_sym_extern] = ACTIONS(3380), + [anon_sym___attribute__] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3382), + [anon_sym___declspec] = ACTIONS(3380), + [anon_sym___based] = ACTIONS(3380), + [anon_sym_signed] = ACTIONS(3380), + [anon_sym_unsigned] = ACTIONS(3380), + [anon_sym_long] = ACTIONS(3380), + [anon_sym_short] = ACTIONS(3380), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_static] = ACTIONS(3380), + [anon_sym_register] = ACTIONS(3380), + [anon_sym_inline] = ACTIONS(3380), + [anon_sym___inline] = ACTIONS(3380), + [anon_sym___inline__] = ACTIONS(3380), + [anon_sym___forceinline] = ACTIONS(3380), + [anon_sym_thread_local] = ACTIONS(3380), + [anon_sym___thread] = ACTIONS(3380), + [anon_sym_const] = ACTIONS(3380), + [anon_sym_constexpr] = ACTIONS(3380), + [anon_sym_volatile] = ACTIONS(3380), + [anon_sym_restrict] = ACTIONS(3380), + [anon_sym___restrict__] = ACTIONS(3380), + [anon_sym__Atomic] = ACTIONS(3380), + [anon_sym__Noreturn] = ACTIONS(3380), + [anon_sym_noreturn] = ACTIONS(3380), + [anon_sym_mutable] = ACTIONS(3380), + [anon_sym_constinit] = ACTIONS(3380), + [anon_sym_consteval] = ACTIONS(3380), + [sym_primitive_type] = ACTIONS(3380), + [anon_sym_enum] = ACTIONS(3380), + [anon_sym_class] = ACTIONS(3380), + [anon_sym_struct] = ACTIONS(3380), + [anon_sym_union] = ACTIONS(3380), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3380), + [anon_sym_decltype] = ACTIONS(3380), + [anon_sym_virtual] = ACTIONS(3380), + [anon_sym_alignas] = ACTIONS(3380), + [anon_sym_explicit] = ACTIONS(3380), + [anon_sym_typename] = ACTIONS(3380), + [anon_sym_template] = ACTIONS(3380), + [anon_sym_operator] = ACTIONS(3380), + [anon_sym_friend] = ACTIONS(3380), + [anon_sym_public] = ACTIONS(3380), + [anon_sym_private] = ACTIONS(3380), + [anon_sym_protected] = ACTIONS(3380), + [anon_sym_using] = ACTIONS(3380), + [anon_sym_static_assert] = ACTIONS(3380), + [sym_semgrep_metavar] = ACTIONS(3382), + }, + [2358] = { + [sym_identifier] = ACTIONS(3189), + [aux_sym_preproc_def_token1] = ACTIONS(3189), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), + [aux_sym_preproc_if_token1] = ACTIONS(3189), + [aux_sym_preproc_if_token2] = ACTIONS(3189), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3189), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3189), + [sym_preproc_directive] = ACTIONS(3189), + [anon_sym_LPAREN2] = ACTIONS(3191), + [anon_sym_TILDE] = ACTIONS(3191), + [anon_sym_STAR] = ACTIONS(3191), + [anon_sym_AMP_AMP] = ACTIONS(3191), + [anon_sym_AMP] = ACTIONS(3189), + [anon_sym___extension__] = ACTIONS(3189), + [anon_sym_typedef] = ACTIONS(3189), + [anon_sym_extern] = ACTIONS(3189), + [anon_sym___attribute__] = ACTIONS(3189), + [anon_sym_COLON_COLON] = ACTIONS(3191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3191), + [anon_sym___declspec] = ACTIONS(3189), + [anon_sym___based] = ACTIONS(3189), + [anon_sym_signed] = ACTIONS(3189), + [anon_sym_unsigned] = ACTIONS(3189), + [anon_sym_long] = ACTIONS(3189), + [anon_sym_short] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_static] = ACTIONS(3189), + [anon_sym_register] = ACTIONS(3189), + [anon_sym_inline] = ACTIONS(3189), + [anon_sym___inline] = ACTIONS(3189), + [anon_sym___inline__] = ACTIONS(3189), + [anon_sym___forceinline] = ACTIONS(3189), + [anon_sym_thread_local] = ACTIONS(3189), + [anon_sym___thread] = ACTIONS(3189), + [anon_sym_const] = ACTIONS(3189), + [anon_sym_constexpr] = ACTIONS(3189), + [anon_sym_volatile] = ACTIONS(3189), + [anon_sym_restrict] = ACTIONS(3189), + [anon_sym___restrict__] = ACTIONS(3189), + [anon_sym__Atomic] = ACTIONS(3189), + [anon_sym__Noreturn] = ACTIONS(3189), + [anon_sym_noreturn] = ACTIONS(3189), + [anon_sym_mutable] = ACTIONS(3189), + [anon_sym_constinit] = ACTIONS(3189), + [anon_sym_consteval] = ACTIONS(3189), + [sym_primitive_type] = ACTIONS(3189), + [anon_sym_enum] = ACTIONS(3189), + [anon_sym_class] = ACTIONS(3189), + [anon_sym_struct] = ACTIONS(3189), + [anon_sym_union] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3189), + [anon_sym_decltype] = ACTIONS(3189), + [anon_sym_virtual] = ACTIONS(3189), + [anon_sym_alignas] = ACTIONS(3189), + [anon_sym_explicit] = ACTIONS(3189), + [anon_sym_typename] = ACTIONS(3189), + [anon_sym_template] = ACTIONS(3189), + [anon_sym_operator] = ACTIONS(3189), + [anon_sym_friend] = ACTIONS(3189), + [anon_sym_public] = ACTIONS(3189), + [anon_sym_private] = ACTIONS(3189), + [anon_sym_protected] = ACTIONS(3189), + [anon_sym_using] = ACTIONS(3189), + [anon_sym_static_assert] = ACTIONS(3189), + [sym_semgrep_metavar] = ACTIONS(3191), + }, + [2359] = { + [ts_builtin_sym_end] = ACTIONS(6088), + [sym_identifier] = ACTIONS(6090), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6088), + [anon_sym_COMMA] = ACTIONS(6088), + [anon_sym_RPAREN] = ACTIONS(6088), + [aux_sym_preproc_if_token2] = ACTIONS(6088), + [aux_sym_preproc_else_token1] = ACTIONS(6088), + [aux_sym_preproc_elif_token1] = ACTIONS(6090), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6088), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6088), + [anon_sym_LPAREN2] = ACTIONS(6088), + [anon_sym_DASH] = ACTIONS(6090), + [anon_sym_PLUS] = ACTIONS(6090), + [anon_sym_STAR] = ACTIONS(6090), + [anon_sym_SLASH] = ACTIONS(6090), + [anon_sym_PERCENT] = ACTIONS(6090), + [anon_sym_PIPE_PIPE] = ACTIONS(6088), + [anon_sym_AMP_AMP] = ACTIONS(6088), + [anon_sym_PIPE] = ACTIONS(6090), + [anon_sym_CARET] = ACTIONS(6090), + [anon_sym_AMP] = ACTIONS(6090), + [anon_sym_EQ_EQ] = ACTIONS(6088), + [anon_sym_BANG_EQ] = ACTIONS(6088), + [anon_sym_GT] = ACTIONS(6090), + [anon_sym_GT_EQ] = ACTIONS(6088), + [anon_sym_LT_EQ] = ACTIONS(6090), + [anon_sym_LT] = ACTIONS(6090), + [anon_sym_LT_LT] = ACTIONS(6090), + [anon_sym_GT_GT] = ACTIONS(6090), + [anon_sym_SEMI] = ACTIONS(6088), + [anon_sym___attribute__] = ACTIONS(6090), + [anon_sym_LBRACE] = ACTIONS(6088), + [anon_sym_RBRACE] = ACTIONS(6088), + [anon_sym_LBRACK] = ACTIONS(6088), + [anon_sym_RBRACK] = ACTIONS(6088), + [anon_sym_EQ] = ACTIONS(6090), + [anon_sym_COLON] = ACTIONS(6088), + [anon_sym_QMARK] = ACTIONS(6088), + [anon_sym_STAR_EQ] = ACTIONS(6088), + [anon_sym_SLASH_EQ] = ACTIONS(6088), + [anon_sym_PERCENT_EQ] = ACTIONS(6088), + [anon_sym_PLUS_EQ] = ACTIONS(6088), + [anon_sym_DASH_EQ] = ACTIONS(6088), + [anon_sym_LT_LT_EQ] = ACTIONS(6088), + [anon_sym_GT_GT_EQ] = ACTIONS(6088), + [anon_sym_AMP_EQ] = ACTIONS(6088), + [anon_sym_CARET_EQ] = ACTIONS(6088), + [anon_sym_PIPE_EQ] = ACTIONS(6088), + [anon_sym_and_eq] = ACTIONS(6090), + [anon_sym_or_eq] = ACTIONS(6090), + [anon_sym_xor_eq] = ACTIONS(6090), + [anon_sym_LT_EQ_GT] = ACTIONS(6088), + [anon_sym_or] = ACTIONS(6090), + [anon_sym_and] = ACTIONS(6090), + [anon_sym_bitor] = ACTIONS(6090), + [anon_sym_xor] = ACTIONS(6090), + [anon_sym_bitand] = ACTIONS(6090), + [anon_sym_not_eq] = ACTIONS(6090), + [anon_sym_DASH_DASH] = ACTIONS(6088), + [anon_sym_PLUS_PLUS] = ACTIONS(6088), + [anon_sym_DOT] = ACTIONS(6090), + [anon_sym_DOT_STAR] = ACTIONS(6088), + [anon_sym_DASH_GT] = ACTIONS(6088), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6090), + [anon_sym_decltype] = ACTIONS(6090), + }, + [2360] = { + [ts_builtin_sym_end] = ACTIONS(6274), + [sym_identifier] = ACTIONS(6276), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6274), + [anon_sym_COMMA] = ACTIONS(6274), + [anon_sym_RPAREN] = ACTIONS(6274), + [aux_sym_preproc_if_token2] = ACTIONS(6274), + [aux_sym_preproc_else_token1] = ACTIONS(6274), + [aux_sym_preproc_elif_token1] = ACTIONS(6276), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6274), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6274), + [anon_sym_LPAREN2] = ACTIONS(6274), + [anon_sym_DASH] = ACTIONS(6276), + [anon_sym_PLUS] = ACTIONS(6276), + [anon_sym_STAR] = ACTIONS(6276), + [anon_sym_SLASH] = ACTIONS(6276), + [anon_sym_PERCENT] = ACTIONS(6276), + [anon_sym_PIPE_PIPE] = ACTIONS(6274), + [anon_sym_AMP_AMP] = ACTIONS(6274), + [anon_sym_PIPE] = ACTIONS(6276), + [anon_sym_CARET] = ACTIONS(6276), + [anon_sym_AMP] = ACTIONS(6276), + [anon_sym_EQ_EQ] = ACTIONS(6274), + [anon_sym_BANG_EQ] = ACTIONS(6274), + [anon_sym_GT] = ACTIONS(6276), + [anon_sym_GT_EQ] = ACTIONS(6274), + [anon_sym_LT_EQ] = ACTIONS(6276), + [anon_sym_LT] = ACTIONS(6276), + [anon_sym_LT_LT] = ACTIONS(6276), + [anon_sym_GT_GT] = ACTIONS(6276), + [anon_sym_SEMI] = ACTIONS(6274), + [anon_sym___attribute__] = ACTIONS(6276), + [anon_sym_LBRACE] = ACTIONS(6274), + [anon_sym_RBRACE] = ACTIONS(6274), + [anon_sym_LBRACK] = ACTIONS(6274), + [anon_sym_RBRACK] = ACTIONS(6274), + [anon_sym_EQ] = ACTIONS(6276), + [anon_sym_COLON] = ACTIONS(6274), + [anon_sym_QMARK] = ACTIONS(6274), + [anon_sym_STAR_EQ] = ACTIONS(6274), + [anon_sym_SLASH_EQ] = ACTIONS(6274), + [anon_sym_PERCENT_EQ] = ACTIONS(6274), + [anon_sym_PLUS_EQ] = ACTIONS(6274), + [anon_sym_DASH_EQ] = ACTIONS(6274), + [anon_sym_LT_LT_EQ] = ACTIONS(6274), + [anon_sym_GT_GT_EQ] = ACTIONS(6274), + [anon_sym_AMP_EQ] = ACTIONS(6274), + [anon_sym_CARET_EQ] = ACTIONS(6274), + [anon_sym_PIPE_EQ] = ACTIONS(6274), + [anon_sym_and_eq] = ACTIONS(6276), + [anon_sym_or_eq] = ACTIONS(6276), + [anon_sym_xor_eq] = ACTIONS(6276), + [anon_sym_LT_EQ_GT] = ACTIONS(6274), + [anon_sym_or] = ACTIONS(6276), + [anon_sym_and] = ACTIONS(6276), + [anon_sym_bitor] = ACTIONS(6276), + [anon_sym_xor] = ACTIONS(6276), + [anon_sym_bitand] = ACTIONS(6276), + [anon_sym_not_eq] = ACTIONS(6276), + [anon_sym_DASH_DASH] = ACTIONS(6274), + [anon_sym_PLUS_PLUS] = ACTIONS(6274), + [anon_sym_DOT] = ACTIONS(6276), + [anon_sym_DOT_STAR] = ACTIONS(6274), + [anon_sym_DASH_GT] = ACTIONS(6274), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6276), + [anon_sym_decltype] = ACTIONS(6276), + }, + [2361] = { + [sym_identifier] = ACTIONS(5769), + [aux_sym_preproc_def_token1] = ACTIONS(5769), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5771), + [aux_sym_preproc_if_token1] = ACTIONS(5769), + [aux_sym_preproc_if_token2] = ACTIONS(5769), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5769), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5769), + [sym_preproc_directive] = ACTIONS(5769), + [anon_sym_LPAREN2] = ACTIONS(5771), + [anon_sym_TILDE] = ACTIONS(5771), + [anon_sym_STAR] = ACTIONS(5771), + [anon_sym_AMP_AMP] = ACTIONS(5771), + [anon_sym_AMP] = ACTIONS(5769), + [anon_sym___extension__] = ACTIONS(5769), + [anon_sym_typedef] = ACTIONS(5769), + [anon_sym_extern] = ACTIONS(5769), + [anon_sym___attribute__] = ACTIONS(5769), + [anon_sym_COLON_COLON] = ACTIONS(5771), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5771), + [anon_sym___declspec] = ACTIONS(5769), + [anon_sym___based] = ACTIONS(5769), + [anon_sym_signed] = ACTIONS(5769), + [anon_sym_unsigned] = ACTIONS(5769), + [anon_sym_long] = ACTIONS(5769), + [anon_sym_short] = ACTIONS(5769), + [anon_sym_LBRACK] = ACTIONS(5769), + [anon_sym_static] = ACTIONS(5769), + [anon_sym_register] = ACTIONS(5769), + [anon_sym_inline] = ACTIONS(5769), + [anon_sym___inline] = ACTIONS(5769), + [anon_sym___inline__] = ACTIONS(5769), + [anon_sym___forceinline] = ACTIONS(5769), + [anon_sym_thread_local] = ACTIONS(5769), + [anon_sym___thread] = ACTIONS(5769), + [anon_sym_const] = ACTIONS(5769), + [anon_sym_constexpr] = ACTIONS(5769), + [anon_sym_volatile] = ACTIONS(5769), + [anon_sym_restrict] = ACTIONS(5769), + [anon_sym___restrict__] = ACTIONS(5769), + [anon_sym__Atomic] = ACTIONS(5769), + [anon_sym__Noreturn] = ACTIONS(5769), + [anon_sym_noreturn] = ACTIONS(5769), + [anon_sym_mutable] = ACTIONS(5769), + [anon_sym_constinit] = ACTIONS(5769), + [anon_sym_consteval] = ACTIONS(5769), + [sym_primitive_type] = ACTIONS(5769), + [anon_sym_enum] = ACTIONS(5769), + [anon_sym_class] = ACTIONS(5769), + [anon_sym_struct] = ACTIONS(5769), + [anon_sym_union] = ACTIONS(5769), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5769), + [anon_sym_decltype] = ACTIONS(5769), + [anon_sym_virtual] = ACTIONS(5769), + [anon_sym_alignas] = ACTIONS(5769), + [anon_sym_explicit] = ACTIONS(5769), + [anon_sym_typename] = ACTIONS(5769), + [anon_sym_template] = ACTIONS(5769), + [anon_sym_operator] = ACTIONS(5769), + [anon_sym_friend] = ACTIONS(5769), + [anon_sym_public] = ACTIONS(5769), + [anon_sym_private] = ACTIONS(5769), + [anon_sym_protected] = ACTIONS(5769), + [anon_sym_using] = ACTIONS(5769), + [anon_sym_static_assert] = ACTIONS(5769), + [sym_semgrep_metavar] = ACTIONS(5771), + }, + [2362] = { + [sym_identifier] = ACTIONS(5884), + [aux_sym_preproc_def_token1] = ACTIONS(5884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5886), + [aux_sym_preproc_if_token1] = ACTIONS(5884), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5884), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5884), + [sym_preproc_directive] = ACTIONS(5884), + [anon_sym_LPAREN2] = ACTIONS(5886), + [anon_sym_TILDE] = ACTIONS(5886), + [anon_sym_STAR] = ACTIONS(5886), + [anon_sym_AMP_AMP] = ACTIONS(5886), + [anon_sym_AMP] = ACTIONS(5884), + [anon_sym___extension__] = ACTIONS(5884), + [anon_sym_typedef] = ACTIONS(5884), + [anon_sym_extern] = ACTIONS(5884), + [anon_sym___attribute__] = ACTIONS(5884), + [anon_sym_COLON_COLON] = ACTIONS(5886), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5886), + [anon_sym___declspec] = ACTIONS(5884), + [anon_sym___based] = ACTIONS(5884), + [anon_sym_RBRACE] = ACTIONS(5886), + [anon_sym_signed] = ACTIONS(5884), + [anon_sym_unsigned] = ACTIONS(5884), + [anon_sym_long] = ACTIONS(5884), + [anon_sym_short] = ACTIONS(5884), + [anon_sym_LBRACK] = ACTIONS(5884), + [anon_sym_static] = ACTIONS(5884), + [anon_sym_register] = ACTIONS(5884), + [anon_sym_inline] = ACTIONS(5884), + [anon_sym___inline] = ACTIONS(5884), + [anon_sym___inline__] = ACTIONS(5884), + [anon_sym___forceinline] = ACTIONS(5884), + [anon_sym_thread_local] = ACTIONS(5884), + [anon_sym___thread] = ACTIONS(5884), + [anon_sym_const] = ACTIONS(5884), + [anon_sym_constexpr] = ACTIONS(5884), + [anon_sym_volatile] = ACTIONS(5884), + [anon_sym_restrict] = ACTIONS(5884), + [anon_sym___restrict__] = ACTIONS(5884), + [anon_sym__Atomic] = ACTIONS(5884), + [anon_sym__Noreturn] = ACTIONS(5884), + [anon_sym_noreturn] = ACTIONS(5884), + [anon_sym_mutable] = ACTIONS(5884), + [anon_sym_constinit] = ACTIONS(5884), + [anon_sym_consteval] = ACTIONS(5884), + [sym_primitive_type] = ACTIONS(5884), + [anon_sym_enum] = ACTIONS(5884), + [anon_sym_class] = ACTIONS(5884), + [anon_sym_struct] = ACTIONS(5884), + [anon_sym_union] = ACTIONS(5884), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5884), + [anon_sym_decltype] = ACTIONS(5884), + [anon_sym_virtual] = ACTIONS(5884), + [anon_sym_alignas] = ACTIONS(5884), + [anon_sym_explicit] = ACTIONS(5884), + [anon_sym_typename] = ACTIONS(5884), + [anon_sym_template] = ACTIONS(5884), + [anon_sym_operator] = ACTIONS(5884), + [anon_sym_friend] = ACTIONS(5884), + [anon_sym_public] = ACTIONS(5884), + [anon_sym_private] = ACTIONS(5884), + [anon_sym_protected] = ACTIONS(5884), + [anon_sym_using] = ACTIONS(5884), + [anon_sym_static_assert] = ACTIONS(5884), + [sym_semgrep_metavar] = ACTIONS(5886), + }, + [2363] = { + [ts_builtin_sym_end] = ACTIONS(6278), + [sym_identifier] = ACTIONS(6280), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6278), + [anon_sym_COMMA] = ACTIONS(6278), + [anon_sym_RPAREN] = ACTIONS(6278), + [aux_sym_preproc_if_token2] = ACTIONS(6278), + [aux_sym_preproc_else_token1] = ACTIONS(6278), + [aux_sym_preproc_elif_token1] = ACTIONS(6280), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6278), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6278), + [anon_sym_LPAREN2] = ACTIONS(6278), + [anon_sym_DASH] = ACTIONS(6280), + [anon_sym_PLUS] = ACTIONS(6280), + [anon_sym_STAR] = ACTIONS(6280), + [anon_sym_SLASH] = ACTIONS(6280), + [anon_sym_PERCENT] = ACTIONS(6280), + [anon_sym_PIPE_PIPE] = ACTIONS(6278), + [anon_sym_AMP_AMP] = ACTIONS(6278), + [anon_sym_PIPE] = ACTIONS(6280), + [anon_sym_CARET] = ACTIONS(6280), + [anon_sym_AMP] = ACTIONS(6280), + [anon_sym_EQ_EQ] = ACTIONS(6278), + [anon_sym_BANG_EQ] = ACTIONS(6278), + [anon_sym_GT] = ACTIONS(6280), + [anon_sym_GT_EQ] = ACTIONS(6278), + [anon_sym_LT_EQ] = ACTIONS(6280), + [anon_sym_LT] = ACTIONS(6280), + [anon_sym_LT_LT] = ACTIONS(6280), + [anon_sym_GT_GT] = ACTIONS(6280), + [anon_sym_SEMI] = ACTIONS(6278), + [anon_sym___attribute__] = ACTIONS(6280), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6278), + [anon_sym_LBRACE] = ACTIONS(6278), + [anon_sym_RBRACE] = ACTIONS(6278), + [anon_sym_LBRACK] = ACTIONS(6280), + [anon_sym_RBRACK] = ACTIONS(6278), + [anon_sym_EQ] = ACTIONS(6280), + [anon_sym_COLON] = ACTIONS(6278), + [anon_sym_QMARK] = ACTIONS(6278), + [anon_sym_STAR_EQ] = ACTIONS(6278), + [anon_sym_SLASH_EQ] = ACTIONS(6278), + [anon_sym_PERCENT_EQ] = ACTIONS(6278), + [anon_sym_PLUS_EQ] = ACTIONS(6278), + [anon_sym_DASH_EQ] = ACTIONS(6278), + [anon_sym_LT_LT_EQ] = ACTIONS(6278), + [anon_sym_GT_GT_EQ] = ACTIONS(6278), + [anon_sym_AMP_EQ] = ACTIONS(6278), + [anon_sym_CARET_EQ] = ACTIONS(6278), + [anon_sym_PIPE_EQ] = ACTIONS(6278), + [anon_sym_and_eq] = ACTIONS(6280), + [anon_sym_or_eq] = ACTIONS(6280), + [anon_sym_xor_eq] = ACTIONS(6280), + [anon_sym_LT_EQ_GT] = ACTIONS(6278), + [anon_sym_or] = ACTIONS(6280), + [anon_sym_and] = ACTIONS(6280), + [anon_sym_bitor] = ACTIONS(6280), + [anon_sym_xor] = ACTIONS(6280), + [anon_sym_bitand] = ACTIONS(6280), + [anon_sym_not_eq] = ACTIONS(6280), + [anon_sym_DASH_DASH] = ACTIONS(6278), + [anon_sym_PLUS_PLUS] = ACTIONS(6278), + [anon_sym_DOT] = ACTIONS(6280), + [anon_sym_DOT_STAR] = ACTIONS(6278), + [anon_sym_DASH_GT] = ACTIONS(6278), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(6280), + }, + [2364] = { + [sym_identifier] = ACTIONS(3087), + [aux_sym_preproc_def_token1] = ACTIONS(3087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), + [aux_sym_preproc_if_token1] = ACTIONS(3087), + [aux_sym_preproc_if_token2] = ACTIONS(3087), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3087), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3087), + [sym_preproc_directive] = ACTIONS(3087), + [anon_sym_LPAREN2] = ACTIONS(3089), + [anon_sym_TILDE] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym___extension__] = ACTIONS(3087), + [anon_sym_typedef] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym___attribute__] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3089), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3089), + [anon_sym___declspec] = ACTIONS(3087), + [anon_sym___based] = ACTIONS(3087), + [anon_sym_signed] = ACTIONS(3087), + [anon_sym_unsigned] = ACTIONS(3087), + [anon_sym_long] = ACTIONS(3087), + [anon_sym_short] = ACTIONS(3087), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_register] = ACTIONS(3087), + [anon_sym_inline] = ACTIONS(3087), + [anon_sym___inline] = ACTIONS(3087), + [anon_sym___inline__] = ACTIONS(3087), + [anon_sym___forceinline] = ACTIONS(3087), + [anon_sym_thread_local] = ACTIONS(3087), + [anon_sym___thread] = ACTIONS(3087), + [anon_sym_const] = ACTIONS(3087), + [anon_sym_constexpr] = ACTIONS(3087), + [anon_sym_volatile] = ACTIONS(3087), + [anon_sym_restrict] = ACTIONS(3087), + [anon_sym___restrict__] = ACTIONS(3087), + [anon_sym__Atomic] = ACTIONS(3087), + [anon_sym__Noreturn] = ACTIONS(3087), + [anon_sym_noreturn] = ACTIONS(3087), + [anon_sym_mutable] = ACTIONS(3087), + [anon_sym_constinit] = ACTIONS(3087), + [anon_sym_consteval] = ACTIONS(3087), + [sym_primitive_type] = ACTIONS(3087), + [anon_sym_enum] = ACTIONS(3087), + [anon_sym_class] = ACTIONS(3087), + [anon_sym_struct] = ACTIONS(3087), + [anon_sym_union] = ACTIONS(3087), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_virtual] = ACTIONS(3087), + [anon_sym_alignas] = ACTIONS(3087), + [anon_sym_explicit] = ACTIONS(3087), + [anon_sym_typename] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [anon_sym_friend] = ACTIONS(3087), + [anon_sym_public] = ACTIONS(3087), + [anon_sym_private] = ACTIONS(3087), + [anon_sym_protected] = ACTIONS(3087), + [anon_sym_using] = ACTIONS(3087), + [anon_sym_static_assert] = ACTIONS(3087), + [sym_semgrep_metavar] = ACTIONS(3089), + }, + [2365] = { + [ts_builtin_sym_end] = ACTIONS(6282), + [sym_identifier] = ACTIONS(6284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6282), + [anon_sym_COMMA] = ACTIONS(6282), + [anon_sym_RPAREN] = ACTIONS(6282), + [aux_sym_preproc_if_token2] = ACTIONS(6282), + [aux_sym_preproc_else_token1] = ACTIONS(6282), + [aux_sym_preproc_elif_token1] = ACTIONS(6284), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6282), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6282), + [anon_sym_LPAREN2] = ACTIONS(6282), + [anon_sym_DASH] = ACTIONS(6284), + [anon_sym_PLUS] = ACTIONS(6284), + [anon_sym_STAR] = ACTIONS(6284), + [anon_sym_SLASH] = ACTIONS(6284), + [anon_sym_PERCENT] = ACTIONS(6284), + [anon_sym_PIPE_PIPE] = ACTIONS(6282), + [anon_sym_AMP_AMP] = ACTIONS(6282), + [anon_sym_PIPE] = ACTIONS(6284), + [anon_sym_CARET] = ACTIONS(6284), + [anon_sym_AMP] = ACTIONS(6284), + [anon_sym_EQ_EQ] = ACTIONS(6282), + [anon_sym_BANG_EQ] = ACTIONS(6282), + [anon_sym_GT] = ACTIONS(6284), + [anon_sym_GT_EQ] = ACTIONS(6282), + [anon_sym_LT_EQ] = ACTIONS(6284), + [anon_sym_LT] = ACTIONS(6284), + [anon_sym_LT_LT] = ACTIONS(6284), + [anon_sym_GT_GT] = ACTIONS(6284), + [anon_sym_SEMI] = ACTIONS(6282), + [anon_sym___attribute__] = ACTIONS(6284), + [anon_sym_LBRACE] = ACTIONS(6282), + [anon_sym_RBRACE] = ACTIONS(6282), + [anon_sym_LBRACK] = ACTIONS(6282), + [anon_sym_RBRACK] = ACTIONS(6282), + [anon_sym_EQ] = ACTIONS(6284), + [anon_sym_COLON] = ACTIONS(6282), + [anon_sym_QMARK] = ACTIONS(6282), + [anon_sym_STAR_EQ] = ACTIONS(6282), + [anon_sym_SLASH_EQ] = ACTIONS(6282), + [anon_sym_PERCENT_EQ] = ACTIONS(6282), + [anon_sym_PLUS_EQ] = ACTIONS(6282), + [anon_sym_DASH_EQ] = ACTIONS(6282), + [anon_sym_LT_LT_EQ] = ACTIONS(6282), + [anon_sym_GT_GT_EQ] = ACTIONS(6282), + [anon_sym_AMP_EQ] = ACTIONS(6282), + [anon_sym_CARET_EQ] = ACTIONS(6282), + [anon_sym_PIPE_EQ] = ACTIONS(6282), + [anon_sym_and_eq] = ACTIONS(6284), + [anon_sym_or_eq] = ACTIONS(6284), + [anon_sym_xor_eq] = ACTIONS(6284), + [anon_sym_LT_EQ_GT] = ACTIONS(6282), + [anon_sym_or] = ACTIONS(6284), + [anon_sym_and] = ACTIONS(6284), + [anon_sym_bitor] = ACTIONS(6284), + [anon_sym_xor] = ACTIONS(6284), + [anon_sym_bitand] = ACTIONS(6284), + [anon_sym_not_eq] = ACTIONS(6284), + [anon_sym_DASH_DASH] = ACTIONS(6282), + [anon_sym_PLUS_PLUS] = ACTIONS(6282), + [anon_sym_DOT] = ACTIONS(6284), + [anon_sym_DOT_STAR] = ACTIONS(6282), + [anon_sym_DASH_GT] = ACTIONS(6282), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6284), + [anon_sym_decltype] = ACTIONS(6284), + }, + [2366] = { + [ts_builtin_sym_end] = ACTIONS(6286), + [sym_identifier] = ACTIONS(6288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6286), + [anon_sym_COMMA] = ACTIONS(6286), + [anon_sym_RPAREN] = ACTIONS(6286), + [aux_sym_preproc_if_token2] = ACTIONS(6286), + [aux_sym_preproc_else_token1] = ACTIONS(6286), + [aux_sym_preproc_elif_token1] = ACTIONS(6288), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6286), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6286), + [anon_sym_LPAREN2] = ACTIONS(6286), + [anon_sym_DASH] = ACTIONS(6288), + [anon_sym_PLUS] = ACTIONS(6288), + [anon_sym_STAR] = ACTIONS(6288), + [anon_sym_SLASH] = ACTIONS(6288), + [anon_sym_PERCENT] = ACTIONS(6288), + [anon_sym_PIPE_PIPE] = ACTIONS(6286), + [anon_sym_AMP_AMP] = ACTIONS(6286), + [anon_sym_PIPE] = ACTIONS(6288), + [anon_sym_CARET] = ACTIONS(6288), + [anon_sym_AMP] = ACTIONS(6288), + [anon_sym_EQ_EQ] = ACTIONS(6286), + [anon_sym_BANG_EQ] = ACTIONS(6286), + [anon_sym_GT] = ACTIONS(6288), + [anon_sym_GT_EQ] = ACTIONS(6286), + [anon_sym_LT_EQ] = ACTIONS(6288), + [anon_sym_LT] = ACTIONS(6288), + [anon_sym_LT_LT] = ACTIONS(6288), + [anon_sym_GT_GT] = ACTIONS(6288), + [anon_sym_SEMI] = ACTIONS(6286), + [anon_sym___attribute__] = ACTIONS(6288), + [anon_sym_LBRACE] = ACTIONS(6286), + [anon_sym_RBRACE] = ACTIONS(6286), + [anon_sym_LBRACK] = ACTIONS(6286), + [anon_sym_RBRACK] = ACTIONS(6286), + [anon_sym_EQ] = ACTIONS(6288), + [anon_sym_COLON] = ACTIONS(6286), + [anon_sym_QMARK] = ACTIONS(6286), + [anon_sym_STAR_EQ] = ACTIONS(6286), + [anon_sym_SLASH_EQ] = ACTIONS(6286), + [anon_sym_PERCENT_EQ] = ACTIONS(6286), + [anon_sym_PLUS_EQ] = ACTIONS(6286), + [anon_sym_DASH_EQ] = ACTIONS(6286), + [anon_sym_LT_LT_EQ] = ACTIONS(6286), + [anon_sym_GT_GT_EQ] = ACTIONS(6286), + [anon_sym_AMP_EQ] = ACTIONS(6286), + [anon_sym_CARET_EQ] = ACTIONS(6286), + [anon_sym_PIPE_EQ] = ACTIONS(6286), + [anon_sym_and_eq] = ACTIONS(6288), + [anon_sym_or_eq] = ACTIONS(6288), + [anon_sym_xor_eq] = ACTIONS(6288), + [anon_sym_LT_EQ_GT] = ACTIONS(6286), + [anon_sym_or] = ACTIONS(6288), + [anon_sym_and] = ACTIONS(6288), + [anon_sym_bitor] = ACTIONS(6288), + [anon_sym_xor] = ACTIONS(6288), + [anon_sym_bitand] = ACTIONS(6288), + [anon_sym_not_eq] = ACTIONS(6288), + [anon_sym_DASH_DASH] = ACTIONS(6286), + [anon_sym_PLUS_PLUS] = ACTIONS(6286), + [anon_sym_DOT] = ACTIONS(6288), + [anon_sym_DOT_STAR] = ACTIONS(6286), + [anon_sym_DASH_GT] = ACTIONS(6286), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6288), + [anon_sym_decltype] = ACTIONS(6288), + }, + [2367] = { + [ts_builtin_sym_end] = ACTIONS(6290), + [sym_identifier] = ACTIONS(6292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6290), + [anon_sym_COMMA] = ACTIONS(6290), + [anon_sym_RPAREN] = ACTIONS(6290), + [aux_sym_preproc_if_token2] = ACTIONS(6290), + [aux_sym_preproc_else_token1] = ACTIONS(6290), + [aux_sym_preproc_elif_token1] = ACTIONS(6292), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6290), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6290), + [anon_sym_LPAREN2] = ACTIONS(6290), + [anon_sym_DASH] = ACTIONS(6292), + [anon_sym_PLUS] = ACTIONS(6292), + [anon_sym_STAR] = ACTIONS(6292), + [anon_sym_SLASH] = ACTIONS(6292), + [anon_sym_PERCENT] = ACTIONS(6292), + [anon_sym_PIPE_PIPE] = ACTIONS(6290), + [anon_sym_AMP_AMP] = ACTIONS(6290), + [anon_sym_PIPE] = ACTIONS(6292), + [anon_sym_CARET] = ACTIONS(6292), + [anon_sym_AMP] = ACTIONS(6292), + [anon_sym_EQ_EQ] = ACTIONS(6290), + [anon_sym_BANG_EQ] = ACTIONS(6290), + [anon_sym_GT] = ACTIONS(6292), + [anon_sym_GT_EQ] = ACTIONS(6290), + [anon_sym_LT_EQ] = ACTIONS(6292), + [anon_sym_LT] = ACTIONS(6292), + [anon_sym_LT_LT] = ACTIONS(6292), + [anon_sym_GT_GT] = ACTIONS(6292), + [anon_sym_SEMI] = ACTIONS(6290), + [anon_sym___attribute__] = ACTIONS(6292), + [anon_sym_LBRACE] = ACTIONS(6290), + [anon_sym_RBRACE] = ACTIONS(6290), + [anon_sym_LBRACK] = ACTIONS(6290), + [anon_sym_RBRACK] = ACTIONS(6290), + [anon_sym_EQ] = ACTIONS(6292), + [anon_sym_COLON] = ACTIONS(6290), + [anon_sym_QMARK] = ACTIONS(6290), + [anon_sym_STAR_EQ] = ACTIONS(6290), + [anon_sym_SLASH_EQ] = ACTIONS(6290), + [anon_sym_PERCENT_EQ] = ACTIONS(6290), + [anon_sym_PLUS_EQ] = ACTIONS(6290), + [anon_sym_DASH_EQ] = ACTIONS(6290), + [anon_sym_LT_LT_EQ] = ACTIONS(6290), + [anon_sym_GT_GT_EQ] = ACTIONS(6290), + [anon_sym_AMP_EQ] = ACTIONS(6290), + [anon_sym_CARET_EQ] = ACTIONS(6290), + [anon_sym_PIPE_EQ] = ACTIONS(6290), + [anon_sym_and_eq] = ACTIONS(6292), + [anon_sym_or_eq] = ACTIONS(6292), + [anon_sym_xor_eq] = ACTIONS(6292), + [anon_sym_LT_EQ_GT] = ACTIONS(6290), + [anon_sym_or] = ACTIONS(6292), + [anon_sym_and] = ACTIONS(6292), + [anon_sym_bitor] = ACTIONS(6292), + [anon_sym_xor] = ACTIONS(6292), + [anon_sym_bitand] = ACTIONS(6292), + [anon_sym_not_eq] = ACTIONS(6292), + [anon_sym_DASH_DASH] = ACTIONS(6290), + [anon_sym_PLUS_PLUS] = ACTIONS(6290), + [anon_sym_DOT] = ACTIONS(6292), + [anon_sym_DOT_STAR] = ACTIONS(6290), + [anon_sym_DASH_GT] = ACTIONS(6290), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6292), + [anon_sym_decltype] = ACTIONS(6292), + }, + [2368] = { + [sym_identifier] = ACTIONS(3609), + [aux_sym_preproc_def_token1] = ACTIONS(3609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3611), + [aux_sym_preproc_if_token1] = ACTIONS(3609), + [aux_sym_preproc_if_token2] = ACTIONS(3609), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3609), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3609), + [sym_preproc_directive] = ACTIONS(3609), + [anon_sym_LPAREN2] = ACTIONS(3611), + [anon_sym_TILDE] = ACTIONS(3611), + [anon_sym_STAR] = ACTIONS(3611), + [anon_sym_AMP_AMP] = ACTIONS(3611), + [anon_sym_AMP] = ACTIONS(3609), + [anon_sym___extension__] = ACTIONS(3609), + [anon_sym_typedef] = ACTIONS(3609), + [anon_sym_extern] = ACTIONS(3609), + [anon_sym___attribute__] = ACTIONS(3609), + [anon_sym_COLON_COLON] = ACTIONS(3611), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3611), + [anon_sym___declspec] = ACTIONS(3609), + [anon_sym___based] = ACTIONS(3609), + [anon_sym_signed] = ACTIONS(3609), + [anon_sym_unsigned] = ACTIONS(3609), + [anon_sym_long] = ACTIONS(3609), + [anon_sym_short] = ACTIONS(3609), + [anon_sym_LBRACK] = ACTIONS(3609), + [anon_sym_static] = ACTIONS(3609), + [anon_sym_register] = ACTIONS(3609), + [anon_sym_inline] = ACTIONS(3609), + [anon_sym___inline] = ACTIONS(3609), + [anon_sym___inline__] = ACTIONS(3609), + [anon_sym___forceinline] = ACTIONS(3609), + [anon_sym_thread_local] = ACTIONS(3609), + [anon_sym___thread] = ACTIONS(3609), + [anon_sym_const] = ACTIONS(3609), + [anon_sym_constexpr] = ACTIONS(3609), + [anon_sym_volatile] = ACTIONS(3609), + [anon_sym_restrict] = ACTIONS(3609), + [anon_sym___restrict__] = ACTIONS(3609), + [anon_sym__Atomic] = ACTIONS(3609), + [anon_sym__Noreturn] = ACTIONS(3609), + [anon_sym_noreturn] = ACTIONS(3609), + [anon_sym_mutable] = ACTIONS(3609), + [anon_sym_constinit] = ACTIONS(3609), + [anon_sym_consteval] = ACTIONS(3609), + [sym_primitive_type] = ACTIONS(3609), + [anon_sym_enum] = ACTIONS(3609), + [anon_sym_class] = ACTIONS(3609), + [anon_sym_struct] = ACTIONS(3609), + [anon_sym_union] = ACTIONS(3609), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3609), + [anon_sym_decltype] = ACTIONS(3609), + [anon_sym_virtual] = ACTIONS(3609), + [anon_sym_alignas] = ACTIONS(3609), + [anon_sym_explicit] = ACTIONS(3609), + [anon_sym_typename] = ACTIONS(3609), + [anon_sym_template] = ACTIONS(3609), + [anon_sym_operator] = ACTIONS(3609), + [anon_sym_friend] = ACTIONS(3609), + [anon_sym_public] = ACTIONS(3609), + [anon_sym_private] = ACTIONS(3609), + [anon_sym_protected] = ACTIONS(3609), + [anon_sym_using] = ACTIONS(3609), + [anon_sym_static_assert] = ACTIONS(3609), + [sym_semgrep_metavar] = ACTIONS(3611), + }, + [2369] = { + [ts_builtin_sym_end] = ACTIONS(6294), + [sym_identifier] = ACTIONS(6296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6294), + [anon_sym_COMMA] = ACTIONS(6294), + [anon_sym_RPAREN] = ACTIONS(6294), + [aux_sym_preproc_if_token2] = ACTIONS(6294), + [aux_sym_preproc_else_token1] = ACTIONS(6294), + [aux_sym_preproc_elif_token1] = ACTIONS(6296), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6294), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6294), + [anon_sym_LPAREN2] = ACTIONS(6294), + [anon_sym_DASH] = ACTIONS(6296), + [anon_sym_PLUS] = ACTIONS(6296), + [anon_sym_STAR] = ACTIONS(6296), + [anon_sym_SLASH] = ACTIONS(6296), + [anon_sym_PERCENT] = ACTIONS(6296), + [anon_sym_PIPE_PIPE] = ACTIONS(6294), + [anon_sym_AMP_AMP] = ACTIONS(6294), + [anon_sym_PIPE] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(6296), + [anon_sym_AMP] = ACTIONS(6296), + [anon_sym_EQ_EQ] = ACTIONS(6294), + [anon_sym_BANG_EQ] = ACTIONS(6294), + [anon_sym_GT] = ACTIONS(6296), + [anon_sym_GT_EQ] = ACTIONS(6294), + [anon_sym_LT_EQ] = ACTIONS(6296), + [anon_sym_LT] = ACTIONS(6296), + [anon_sym_LT_LT] = ACTIONS(6296), + [anon_sym_GT_GT] = ACTIONS(6296), + [anon_sym_SEMI] = ACTIONS(6294), + [anon_sym___attribute__] = ACTIONS(6296), + [anon_sym_LBRACE] = ACTIONS(6294), + [anon_sym_RBRACE] = ACTIONS(6294), + [anon_sym_LBRACK] = ACTIONS(6294), + [anon_sym_RBRACK] = ACTIONS(6294), + [anon_sym_EQ] = ACTIONS(6296), + [anon_sym_COLON] = ACTIONS(6294), + [anon_sym_QMARK] = ACTIONS(6294), + [anon_sym_STAR_EQ] = ACTIONS(6294), + [anon_sym_SLASH_EQ] = ACTIONS(6294), + [anon_sym_PERCENT_EQ] = ACTIONS(6294), + [anon_sym_PLUS_EQ] = ACTIONS(6294), + [anon_sym_DASH_EQ] = ACTIONS(6294), + [anon_sym_LT_LT_EQ] = ACTIONS(6294), + [anon_sym_GT_GT_EQ] = ACTIONS(6294), + [anon_sym_AMP_EQ] = ACTIONS(6294), + [anon_sym_CARET_EQ] = ACTIONS(6294), + [anon_sym_PIPE_EQ] = ACTIONS(6294), + [anon_sym_and_eq] = ACTIONS(6296), + [anon_sym_or_eq] = ACTIONS(6296), + [anon_sym_xor_eq] = ACTIONS(6296), + [anon_sym_LT_EQ_GT] = ACTIONS(6294), + [anon_sym_or] = ACTIONS(6296), + [anon_sym_and] = ACTIONS(6296), + [anon_sym_bitor] = ACTIONS(6296), + [anon_sym_xor] = ACTIONS(6296), + [anon_sym_bitand] = ACTIONS(6296), + [anon_sym_not_eq] = ACTIONS(6296), + [anon_sym_DASH_DASH] = ACTIONS(6294), + [anon_sym_PLUS_PLUS] = ACTIONS(6294), + [anon_sym_DOT] = ACTIONS(6296), + [anon_sym_DOT_STAR] = ACTIONS(6294), + [anon_sym_DASH_GT] = ACTIONS(6294), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6296), + [anon_sym_decltype] = ACTIONS(6296), + }, + [2370] = { + [sym_identifier] = ACTIONS(3219), + [aux_sym_preproc_def_token1] = ACTIONS(3219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3221), + [aux_sym_preproc_if_token1] = ACTIONS(3219), + [aux_sym_preproc_if_token2] = ACTIONS(3219), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3219), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3219), + [sym_preproc_directive] = ACTIONS(3219), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3221), + [anon_sym_STAR] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_AMP] = ACTIONS(3219), + [anon_sym___extension__] = ACTIONS(3219), + [anon_sym_typedef] = ACTIONS(3219), + [anon_sym_extern] = ACTIONS(3219), + [anon_sym___attribute__] = ACTIONS(3219), + [anon_sym_COLON_COLON] = ACTIONS(3221), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3221), + [anon_sym___declspec] = ACTIONS(3219), + [anon_sym___based] = ACTIONS(3219), + [anon_sym_signed] = ACTIONS(3219), + [anon_sym_unsigned] = ACTIONS(3219), + [anon_sym_long] = ACTIONS(3219), + [anon_sym_short] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_register] = ACTIONS(3219), + [anon_sym_inline] = ACTIONS(3219), + [anon_sym___inline] = ACTIONS(3219), + [anon_sym___inline__] = ACTIONS(3219), + [anon_sym___forceinline] = ACTIONS(3219), + [anon_sym_thread_local] = ACTIONS(3219), + [anon_sym___thread] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_constexpr] = ACTIONS(3219), + [anon_sym_volatile] = ACTIONS(3219), + [anon_sym_restrict] = ACTIONS(3219), + [anon_sym___restrict__] = ACTIONS(3219), + [anon_sym__Atomic] = ACTIONS(3219), + [anon_sym__Noreturn] = ACTIONS(3219), + [anon_sym_noreturn] = ACTIONS(3219), + [anon_sym_mutable] = ACTIONS(3219), + [anon_sym_constinit] = ACTIONS(3219), + [anon_sym_consteval] = ACTIONS(3219), + [sym_primitive_type] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_struct] = ACTIONS(3219), + [anon_sym_union] = ACTIONS(3219), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3219), + [anon_sym_decltype] = ACTIONS(3219), + [anon_sym_virtual] = ACTIONS(3219), + [anon_sym_alignas] = ACTIONS(3219), + [anon_sym_explicit] = ACTIONS(3219), + [anon_sym_typename] = ACTIONS(3219), + [anon_sym_template] = ACTIONS(3219), + [anon_sym_operator] = ACTIONS(3219), + [anon_sym_friend] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_static_assert] = ACTIONS(3219), + [sym_semgrep_metavar] = ACTIONS(3221), + }, + [2371] = { + [sym_identifier] = ACTIONS(5880), + [aux_sym_preproc_def_token1] = ACTIONS(5880), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5882), + [aux_sym_preproc_if_token1] = ACTIONS(5880), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5880), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5880), + [sym_preproc_directive] = ACTIONS(5880), + [anon_sym_LPAREN2] = ACTIONS(5882), + [anon_sym_TILDE] = ACTIONS(5882), + [anon_sym_STAR] = ACTIONS(5882), + [anon_sym_AMP_AMP] = ACTIONS(5882), + [anon_sym_AMP] = ACTIONS(5880), + [anon_sym___extension__] = ACTIONS(5880), + [anon_sym_typedef] = ACTIONS(5880), + [anon_sym_extern] = ACTIONS(5880), + [anon_sym___attribute__] = ACTIONS(5880), + [anon_sym_COLON_COLON] = ACTIONS(5882), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5882), + [anon_sym___declspec] = ACTIONS(5880), + [anon_sym___based] = ACTIONS(5880), + [anon_sym_RBRACE] = ACTIONS(5882), + [anon_sym_signed] = ACTIONS(5880), + [anon_sym_unsigned] = ACTIONS(5880), + [anon_sym_long] = ACTIONS(5880), + [anon_sym_short] = ACTIONS(5880), + [anon_sym_LBRACK] = ACTIONS(5880), + [anon_sym_static] = ACTIONS(5880), + [anon_sym_register] = ACTIONS(5880), + [anon_sym_inline] = ACTIONS(5880), + [anon_sym___inline] = ACTIONS(5880), + [anon_sym___inline__] = ACTIONS(5880), + [anon_sym___forceinline] = ACTIONS(5880), + [anon_sym_thread_local] = ACTIONS(5880), + [anon_sym___thread] = ACTIONS(5880), + [anon_sym_const] = ACTIONS(5880), + [anon_sym_constexpr] = ACTIONS(5880), + [anon_sym_volatile] = ACTIONS(5880), + [anon_sym_restrict] = ACTIONS(5880), + [anon_sym___restrict__] = ACTIONS(5880), + [anon_sym__Atomic] = ACTIONS(5880), + [anon_sym__Noreturn] = ACTIONS(5880), + [anon_sym_noreturn] = ACTIONS(5880), + [anon_sym_mutable] = ACTIONS(5880), + [anon_sym_constinit] = ACTIONS(5880), + [anon_sym_consteval] = ACTIONS(5880), + [sym_primitive_type] = ACTIONS(5880), + [anon_sym_enum] = ACTIONS(5880), + [anon_sym_class] = ACTIONS(5880), + [anon_sym_struct] = ACTIONS(5880), + [anon_sym_union] = ACTIONS(5880), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5880), + [anon_sym_decltype] = ACTIONS(5880), + [anon_sym_virtual] = ACTIONS(5880), + [anon_sym_alignas] = ACTIONS(5880), + [anon_sym_explicit] = ACTIONS(5880), + [anon_sym_typename] = ACTIONS(5880), + [anon_sym_template] = ACTIONS(5880), + [anon_sym_operator] = ACTIONS(5880), + [anon_sym_friend] = ACTIONS(5880), + [anon_sym_public] = ACTIONS(5880), + [anon_sym_private] = ACTIONS(5880), + [anon_sym_protected] = ACTIONS(5880), + [anon_sym_using] = ACTIONS(5880), + [anon_sym_static_assert] = ACTIONS(5880), + [sym_semgrep_metavar] = ACTIONS(5882), + }, + [2372] = { + [sym_identifier] = ACTIONS(5880), + [aux_sym_preproc_def_token1] = ACTIONS(5880), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5882), + [aux_sym_preproc_if_token1] = ACTIONS(5880), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5880), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5880), + [sym_preproc_directive] = ACTIONS(5880), + [anon_sym_LPAREN2] = ACTIONS(5882), + [anon_sym_TILDE] = ACTIONS(5882), + [anon_sym_STAR] = ACTIONS(5882), + [anon_sym_AMP_AMP] = ACTIONS(5882), + [anon_sym_AMP] = ACTIONS(5880), + [anon_sym___extension__] = ACTIONS(5880), + [anon_sym_typedef] = ACTIONS(5880), + [anon_sym_extern] = ACTIONS(5880), + [anon_sym___attribute__] = ACTIONS(5880), + [anon_sym_COLON_COLON] = ACTIONS(5882), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5882), + [anon_sym___declspec] = ACTIONS(5880), + [anon_sym___based] = ACTIONS(5880), + [anon_sym_RBRACE] = ACTIONS(5882), + [anon_sym_signed] = ACTIONS(5880), + [anon_sym_unsigned] = ACTIONS(5880), + [anon_sym_long] = ACTIONS(5880), + [anon_sym_short] = ACTIONS(5880), + [anon_sym_LBRACK] = ACTIONS(5880), + [anon_sym_static] = ACTIONS(5880), + [anon_sym_register] = ACTIONS(5880), + [anon_sym_inline] = ACTIONS(5880), + [anon_sym___inline] = ACTIONS(5880), + [anon_sym___inline__] = ACTIONS(5880), + [anon_sym___forceinline] = ACTIONS(5880), + [anon_sym_thread_local] = ACTIONS(5880), + [anon_sym___thread] = ACTIONS(5880), + [anon_sym_const] = ACTIONS(5880), + [anon_sym_constexpr] = ACTIONS(5880), + [anon_sym_volatile] = ACTIONS(5880), + [anon_sym_restrict] = ACTIONS(5880), + [anon_sym___restrict__] = ACTIONS(5880), + [anon_sym__Atomic] = ACTIONS(5880), + [anon_sym__Noreturn] = ACTIONS(5880), + [anon_sym_noreturn] = ACTIONS(5880), + [anon_sym_mutable] = ACTIONS(5880), + [anon_sym_constinit] = ACTIONS(5880), + [anon_sym_consteval] = ACTIONS(5880), + [sym_primitive_type] = ACTIONS(5880), + [anon_sym_enum] = ACTIONS(5880), + [anon_sym_class] = ACTIONS(5880), + [anon_sym_struct] = ACTIONS(5880), + [anon_sym_union] = ACTIONS(5880), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5880), + [anon_sym_decltype] = ACTIONS(5880), + [anon_sym_virtual] = ACTIONS(5880), + [anon_sym_alignas] = ACTIONS(5880), + [anon_sym_explicit] = ACTIONS(5880), + [anon_sym_typename] = ACTIONS(5880), + [anon_sym_template] = ACTIONS(5880), + [anon_sym_operator] = ACTIONS(5880), + [anon_sym_friend] = ACTIONS(5880), + [anon_sym_public] = ACTIONS(5880), + [anon_sym_private] = ACTIONS(5880), + [anon_sym_protected] = ACTIONS(5880), + [anon_sym_using] = ACTIONS(5880), + [anon_sym_static_assert] = ACTIONS(5880), + [sym_semgrep_metavar] = ACTIONS(5882), + }, + [2373] = { + [ts_builtin_sym_end] = ACTIONS(6298), + [sym_identifier] = ACTIONS(6300), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6298), + [anon_sym_COMMA] = ACTIONS(6298), + [anon_sym_RPAREN] = ACTIONS(6298), + [aux_sym_preproc_if_token2] = ACTIONS(6298), + [aux_sym_preproc_else_token1] = ACTIONS(6298), + [aux_sym_preproc_elif_token1] = ACTIONS(6300), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6298), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6298), + [anon_sym_LPAREN2] = ACTIONS(6298), + [anon_sym_DASH] = ACTIONS(6300), + [anon_sym_PLUS] = ACTIONS(6300), + [anon_sym_STAR] = ACTIONS(6300), + [anon_sym_SLASH] = ACTIONS(6300), + [anon_sym_PERCENT] = ACTIONS(6300), + [anon_sym_PIPE_PIPE] = ACTIONS(6298), + [anon_sym_AMP_AMP] = ACTIONS(6298), + [anon_sym_PIPE] = ACTIONS(6300), + [anon_sym_CARET] = ACTIONS(6300), + [anon_sym_AMP] = ACTIONS(6300), + [anon_sym_EQ_EQ] = ACTIONS(6298), + [anon_sym_BANG_EQ] = ACTIONS(6298), + [anon_sym_GT] = ACTIONS(6300), + [anon_sym_GT_EQ] = ACTIONS(6298), + [anon_sym_LT_EQ] = ACTIONS(6300), + [anon_sym_LT] = ACTIONS(6300), + [anon_sym_LT_LT] = ACTIONS(6300), + [anon_sym_GT_GT] = ACTIONS(6300), + [anon_sym_SEMI] = ACTIONS(6298), + [anon_sym___attribute__] = ACTIONS(6300), + [anon_sym_LBRACE] = ACTIONS(6298), + [anon_sym_RBRACE] = ACTIONS(6298), + [anon_sym_LBRACK] = ACTIONS(6298), + [anon_sym_RBRACK] = ACTIONS(6298), + [anon_sym_EQ] = ACTIONS(6300), + [anon_sym_COLON] = ACTIONS(6298), + [anon_sym_QMARK] = ACTIONS(6298), + [anon_sym_STAR_EQ] = ACTIONS(6298), + [anon_sym_SLASH_EQ] = ACTIONS(6298), + [anon_sym_PERCENT_EQ] = ACTIONS(6298), + [anon_sym_PLUS_EQ] = ACTIONS(6298), + [anon_sym_DASH_EQ] = ACTIONS(6298), + [anon_sym_LT_LT_EQ] = ACTIONS(6298), + [anon_sym_GT_GT_EQ] = ACTIONS(6298), + [anon_sym_AMP_EQ] = ACTIONS(6298), + [anon_sym_CARET_EQ] = ACTIONS(6298), + [anon_sym_PIPE_EQ] = ACTIONS(6298), + [anon_sym_and_eq] = ACTIONS(6300), + [anon_sym_or_eq] = ACTIONS(6300), + [anon_sym_xor_eq] = ACTIONS(6300), + [anon_sym_LT_EQ_GT] = ACTIONS(6298), + [anon_sym_or] = ACTIONS(6300), + [anon_sym_and] = ACTIONS(6300), + [anon_sym_bitor] = ACTIONS(6300), + [anon_sym_xor] = ACTIONS(6300), + [anon_sym_bitand] = ACTIONS(6300), + [anon_sym_not_eq] = ACTIONS(6300), + [anon_sym_DASH_DASH] = ACTIONS(6298), + [anon_sym_PLUS_PLUS] = ACTIONS(6298), + [anon_sym_DOT] = ACTIONS(6300), + [anon_sym_DOT_STAR] = ACTIONS(6298), + [anon_sym_DASH_GT] = ACTIONS(6298), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6300), + [anon_sym_decltype] = ACTIONS(6300), + }, + [2374] = { + [sym_identifier] = ACTIONS(3223), + [aux_sym_preproc_def_token1] = ACTIONS(3223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3225), + [aux_sym_preproc_if_token1] = ACTIONS(3223), + [aux_sym_preproc_if_token2] = ACTIONS(3223), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3223), + [sym_preproc_directive] = ACTIONS(3223), + [anon_sym_LPAREN2] = ACTIONS(3225), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_STAR] = ACTIONS(3225), + [anon_sym_AMP_AMP] = ACTIONS(3225), + [anon_sym_AMP] = ACTIONS(3223), + [anon_sym___extension__] = ACTIONS(3223), + [anon_sym_typedef] = ACTIONS(3223), + [anon_sym_extern] = ACTIONS(3223), + [anon_sym___attribute__] = ACTIONS(3223), + [anon_sym_COLON_COLON] = ACTIONS(3225), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3225), + [anon_sym___declspec] = ACTIONS(3223), + [anon_sym___based] = ACTIONS(3223), + [anon_sym_signed] = ACTIONS(3223), + [anon_sym_unsigned] = ACTIONS(3223), + [anon_sym_long] = ACTIONS(3223), + [anon_sym_short] = ACTIONS(3223), + [anon_sym_LBRACK] = ACTIONS(3223), + [anon_sym_static] = ACTIONS(3223), + [anon_sym_register] = ACTIONS(3223), + [anon_sym_inline] = ACTIONS(3223), + [anon_sym___inline] = ACTIONS(3223), + [anon_sym___inline__] = ACTIONS(3223), + [anon_sym___forceinline] = ACTIONS(3223), + [anon_sym_thread_local] = ACTIONS(3223), + [anon_sym___thread] = ACTIONS(3223), + [anon_sym_const] = ACTIONS(3223), + [anon_sym_constexpr] = ACTIONS(3223), + [anon_sym_volatile] = ACTIONS(3223), + [anon_sym_restrict] = ACTIONS(3223), + [anon_sym___restrict__] = ACTIONS(3223), + [anon_sym__Atomic] = ACTIONS(3223), + [anon_sym__Noreturn] = ACTIONS(3223), + [anon_sym_noreturn] = ACTIONS(3223), + [anon_sym_mutable] = ACTIONS(3223), + [anon_sym_constinit] = ACTIONS(3223), + [anon_sym_consteval] = ACTIONS(3223), + [sym_primitive_type] = ACTIONS(3223), + [anon_sym_enum] = ACTIONS(3223), + [anon_sym_class] = ACTIONS(3223), + [anon_sym_struct] = ACTIONS(3223), + [anon_sym_union] = ACTIONS(3223), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3223), + [anon_sym_decltype] = ACTIONS(3223), + [anon_sym_virtual] = ACTIONS(3223), + [anon_sym_alignas] = ACTIONS(3223), + [anon_sym_explicit] = ACTIONS(3223), + [anon_sym_typename] = ACTIONS(3223), + [anon_sym_template] = ACTIONS(3223), + [anon_sym_operator] = ACTIONS(3223), + [anon_sym_friend] = ACTIONS(3223), + [anon_sym_public] = ACTIONS(3223), + [anon_sym_private] = ACTIONS(3223), + [anon_sym_protected] = ACTIONS(3223), + [anon_sym_using] = ACTIONS(3223), + [anon_sym_static_assert] = ACTIONS(3223), + [sym_semgrep_metavar] = ACTIONS(3225), + }, + [2375] = { + [sym_identifier] = ACTIONS(3380), + [aux_sym_preproc_def_token1] = ACTIONS(3380), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3382), + [aux_sym_preproc_if_token1] = ACTIONS(3380), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3380), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3380), + [sym_preproc_directive] = ACTIONS(3380), + [anon_sym_LPAREN2] = ACTIONS(3382), + [anon_sym_TILDE] = ACTIONS(3382), + [anon_sym_STAR] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_AMP] = ACTIONS(3380), + [anon_sym___extension__] = ACTIONS(3380), + [anon_sym_typedef] = ACTIONS(3380), + [anon_sym_extern] = ACTIONS(3380), + [anon_sym___attribute__] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3382), + [anon_sym___declspec] = ACTIONS(3380), + [anon_sym___based] = ACTIONS(3380), + [anon_sym_RBRACE] = ACTIONS(3382), + [anon_sym_signed] = ACTIONS(3380), + [anon_sym_unsigned] = ACTIONS(3380), + [anon_sym_long] = ACTIONS(3380), + [anon_sym_short] = ACTIONS(3380), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_static] = ACTIONS(3380), + [anon_sym_register] = ACTIONS(3380), + [anon_sym_inline] = ACTIONS(3380), + [anon_sym___inline] = ACTIONS(3380), + [anon_sym___inline__] = ACTIONS(3380), + [anon_sym___forceinline] = ACTIONS(3380), + [anon_sym_thread_local] = ACTIONS(3380), + [anon_sym___thread] = ACTIONS(3380), + [anon_sym_const] = ACTIONS(3380), + [anon_sym_constexpr] = ACTIONS(3380), + [anon_sym_volatile] = ACTIONS(3380), + [anon_sym_restrict] = ACTIONS(3380), + [anon_sym___restrict__] = ACTIONS(3380), + [anon_sym__Atomic] = ACTIONS(3380), + [anon_sym__Noreturn] = ACTIONS(3380), + [anon_sym_noreturn] = ACTIONS(3380), + [anon_sym_mutable] = ACTIONS(3380), + [anon_sym_constinit] = ACTIONS(3380), + [anon_sym_consteval] = ACTIONS(3380), + [sym_primitive_type] = ACTIONS(3380), + [anon_sym_enum] = ACTIONS(3380), + [anon_sym_class] = ACTIONS(3380), + [anon_sym_struct] = ACTIONS(3380), + [anon_sym_union] = ACTIONS(3380), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3380), + [anon_sym_decltype] = ACTIONS(3380), + [anon_sym_virtual] = ACTIONS(3380), + [anon_sym_alignas] = ACTIONS(3380), + [anon_sym_explicit] = ACTIONS(3380), + [anon_sym_typename] = ACTIONS(3380), + [anon_sym_template] = ACTIONS(3380), + [anon_sym_operator] = ACTIONS(3380), + [anon_sym_friend] = ACTIONS(3380), + [anon_sym_public] = ACTIONS(3380), + [anon_sym_private] = ACTIONS(3380), + [anon_sym_protected] = ACTIONS(3380), + [anon_sym_using] = ACTIONS(3380), + [anon_sym_static_assert] = ACTIONS(3380), + [sym_semgrep_metavar] = ACTIONS(3382), + }, + [2376] = { + [sym_identifier] = ACTIONS(5884), + [aux_sym_preproc_def_token1] = ACTIONS(5884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5886), + [aux_sym_preproc_if_token1] = ACTIONS(5884), + [aux_sym_preproc_if_token2] = ACTIONS(5884), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5884), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5884), + [sym_preproc_directive] = ACTIONS(5884), + [anon_sym_LPAREN2] = ACTIONS(5886), + [anon_sym_TILDE] = ACTIONS(5886), + [anon_sym_STAR] = ACTIONS(5886), + [anon_sym_AMP_AMP] = ACTIONS(5886), + [anon_sym_AMP] = ACTIONS(5884), + [anon_sym___extension__] = ACTIONS(5884), + [anon_sym_typedef] = ACTIONS(5884), + [anon_sym_extern] = ACTIONS(5884), + [anon_sym___attribute__] = ACTIONS(5884), + [anon_sym_COLON_COLON] = ACTIONS(5886), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5886), + [anon_sym___declspec] = ACTIONS(5884), + [anon_sym___based] = ACTIONS(5884), + [anon_sym_signed] = ACTIONS(5884), + [anon_sym_unsigned] = ACTIONS(5884), + [anon_sym_long] = ACTIONS(5884), + [anon_sym_short] = ACTIONS(5884), + [anon_sym_LBRACK] = ACTIONS(5884), + [anon_sym_static] = ACTIONS(5884), + [anon_sym_register] = ACTIONS(5884), + [anon_sym_inline] = ACTIONS(5884), + [anon_sym___inline] = ACTIONS(5884), + [anon_sym___inline__] = ACTIONS(5884), + [anon_sym___forceinline] = ACTIONS(5884), + [anon_sym_thread_local] = ACTIONS(5884), + [anon_sym___thread] = ACTIONS(5884), + [anon_sym_const] = ACTIONS(5884), + [anon_sym_constexpr] = ACTIONS(5884), + [anon_sym_volatile] = ACTIONS(5884), + [anon_sym_restrict] = ACTIONS(5884), + [anon_sym___restrict__] = ACTIONS(5884), + [anon_sym__Atomic] = ACTIONS(5884), + [anon_sym__Noreturn] = ACTIONS(5884), + [anon_sym_noreturn] = ACTIONS(5884), + [anon_sym_mutable] = ACTIONS(5884), + [anon_sym_constinit] = ACTIONS(5884), + [anon_sym_consteval] = ACTIONS(5884), + [sym_primitive_type] = ACTIONS(5884), + [anon_sym_enum] = ACTIONS(5884), + [anon_sym_class] = ACTIONS(5884), + [anon_sym_struct] = ACTIONS(5884), + [anon_sym_union] = ACTIONS(5884), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5884), + [anon_sym_decltype] = ACTIONS(5884), + [anon_sym_virtual] = ACTIONS(5884), + [anon_sym_alignas] = ACTIONS(5884), + [anon_sym_explicit] = ACTIONS(5884), + [anon_sym_typename] = ACTIONS(5884), + [anon_sym_template] = ACTIONS(5884), + [anon_sym_operator] = ACTIONS(5884), + [anon_sym_friend] = ACTIONS(5884), + [anon_sym_public] = ACTIONS(5884), + [anon_sym_private] = ACTIONS(5884), + [anon_sym_protected] = ACTIONS(5884), + [anon_sym_using] = ACTIONS(5884), + [anon_sym_static_assert] = ACTIONS(5884), + [sym_semgrep_metavar] = ACTIONS(5886), + }, + [2377] = { + [sym_identifier] = ACTIONS(5888), + [aux_sym_preproc_def_token1] = ACTIONS(5888), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5890), + [aux_sym_preproc_if_token1] = ACTIONS(5888), + [aux_sym_preproc_if_token2] = ACTIONS(5888), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5888), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5888), + [sym_preproc_directive] = ACTIONS(5888), + [anon_sym_LPAREN2] = ACTIONS(5890), + [anon_sym_TILDE] = ACTIONS(5890), + [anon_sym_STAR] = ACTIONS(5890), + [anon_sym_AMP_AMP] = ACTIONS(5890), + [anon_sym_AMP] = ACTIONS(5888), + [anon_sym___extension__] = ACTIONS(5888), + [anon_sym_typedef] = ACTIONS(5888), + [anon_sym_extern] = ACTIONS(5888), + [anon_sym___attribute__] = ACTIONS(5888), + [anon_sym_COLON_COLON] = ACTIONS(5890), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5890), + [anon_sym___declspec] = ACTIONS(5888), + [anon_sym___based] = ACTIONS(5888), + [anon_sym_signed] = ACTIONS(5888), + [anon_sym_unsigned] = ACTIONS(5888), + [anon_sym_long] = ACTIONS(5888), + [anon_sym_short] = ACTIONS(5888), + [anon_sym_LBRACK] = ACTIONS(5888), + [anon_sym_static] = ACTIONS(5888), + [anon_sym_register] = ACTIONS(5888), + [anon_sym_inline] = ACTIONS(5888), + [anon_sym___inline] = ACTIONS(5888), + [anon_sym___inline__] = ACTIONS(5888), + [anon_sym___forceinline] = ACTIONS(5888), + [anon_sym_thread_local] = ACTIONS(5888), + [anon_sym___thread] = ACTIONS(5888), + [anon_sym_const] = ACTIONS(5888), + [anon_sym_constexpr] = ACTIONS(5888), + [anon_sym_volatile] = ACTIONS(5888), + [anon_sym_restrict] = ACTIONS(5888), + [anon_sym___restrict__] = ACTIONS(5888), + [anon_sym__Atomic] = ACTIONS(5888), + [anon_sym__Noreturn] = ACTIONS(5888), + [anon_sym_noreturn] = ACTIONS(5888), + [anon_sym_mutable] = ACTIONS(5888), + [anon_sym_constinit] = ACTIONS(5888), + [anon_sym_consteval] = ACTIONS(5888), + [sym_primitive_type] = ACTIONS(5888), + [anon_sym_enum] = ACTIONS(5888), + [anon_sym_class] = ACTIONS(5888), + [anon_sym_struct] = ACTIONS(5888), + [anon_sym_union] = ACTIONS(5888), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5888), + [anon_sym_decltype] = ACTIONS(5888), + [anon_sym_virtual] = ACTIONS(5888), + [anon_sym_alignas] = ACTIONS(5888), + [anon_sym_explicit] = ACTIONS(5888), + [anon_sym_typename] = ACTIONS(5888), + [anon_sym_template] = ACTIONS(5888), + [anon_sym_operator] = ACTIONS(5888), + [anon_sym_friend] = ACTIONS(5888), + [anon_sym_public] = ACTIONS(5888), + [anon_sym_private] = ACTIONS(5888), + [anon_sym_protected] = ACTIONS(5888), + [anon_sym_using] = ACTIONS(5888), + [anon_sym_static_assert] = ACTIONS(5888), + [sym_semgrep_metavar] = ACTIONS(5890), + }, + [2378] = { + [sym_string_literal] = STATE(2407), + [sym_raw_string_literal] = STATE(2407), + [aux_sym_concatenated_string_repeat1] = STATE(2407), + [sym_identifier] = ACTIONS(6302), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5550), + [anon_sym_COMMA] = ACTIONS(5550), + [anon_sym_LPAREN2] = ACTIONS(5550), + [anon_sym_DASH] = ACTIONS(5554), + [anon_sym_PLUS] = ACTIONS(5554), + [anon_sym_STAR] = ACTIONS(5554), + [anon_sym_SLASH] = ACTIONS(5554), + [anon_sym_PERCENT] = ACTIONS(5554), + [anon_sym_PIPE_PIPE] = ACTIONS(5550), + [anon_sym_AMP_AMP] = ACTIONS(5550), + [anon_sym_PIPE] = ACTIONS(5554), + [anon_sym_CARET] = ACTIONS(5554), + [anon_sym_AMP] = ACTIONS(5554), + [anon_sym_EQ_EQ] = ACTIONS(5550), + [anon_sym_BANG_EQ] = ACTIONS(5550), + [anon_sym_GT] = ACTIONS(5554), + [anon_sym_GT_EQ] = ACTIONS(5554), + [anon_sym_LT_EQ] = ACTIONS(5554), + [anon_sym_LT] = ACTIONS(5554), + [anon_sym_LT_LT] = ACTIONS(5554), + [anon_sym_GT_GT] = ACTIONS(5554), + [anon_sym_LBRACK] = ACTIONS(5550), + [anon_sym_EQ] = ACTIONS(5554), + [anon_sym_QMARK] = ACTIONS(5550), + [anon_sym_STAR_EQ] = ACTIONS(5550), + [anon_sym_SLASH_EQ] = ACTIONS(5550), + [anon_sym_PERCENT_EQ] = ACTIONS(5550), + [anon_sym_PLUS_EQ] = ACTIONS(5550), + [anon_sym_DASH_EQ] = ACTIONS(5550), + [anon_sym_LT_LT_EQ] = ACTIONS(5550), + [anon_sym_GT_GT_EQ] = ACTIONS(5554), + [anon_sym_AMP_EQ] = ACTIONS(5550), + [anon_sym_CARET_EQ] = ACTIONS(5550), + [anon_sym_PIPE_EQ] = ACTIONS(5550), + [anon_sym_and_eq] = ACTIONS(5554), + [anon_sym_or_eq] = ACTIONS(5554), + [anon_sym_xor_eq] = ACTIONS(5554), + [anon_sym_LT_EQ_GT] = ACTIONS(5550), + [anon_sym_or] = ACTIONS(5554), + [anon_sym_and] = ACTIONS(5554), + [anon_sym_bitor] = ACTIONS(5554), + [anon_sym_xor] = ACTIONS(5554), + [anon_sym_bitand] = ACTIONS(5554), + [anon_sym_not_eq] = ACTIONS(5554), + [anon_sym_DASH_DASH] = ACTIONS(5550), + [anon_sym_PLUS_PLUS] = ACTIONS(5550), + [anon_sym_DOT] = ACTIONS(5554), + [anon_sym_DOT_STAR] = ACTIONS(5550), + [anon_sym_DASH_GT] = ACTIONS(5550), + [anon_sym_L_DQUOTE] = ACTIONS(6304), + [anon_sym_u_DQUOTE] = ACTIONS(6304), + [anon_sym_U_DQUOTE] = ACTIONS(6304), + [anon_sym_u8_DQUOTE] = ACTIONS(6304), + [anon_sym_DQUOTE] = ACTIONS(6304), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(5550), + [anon_sym_R_DQUOTE] = ACTIONS(6306), + [anon_sym_LR_DQUOTE] = ACTIONS(6306), + [anon_sym_uR_DQUOTE] = ACTIONS(6306), + [anon_sym_UR_DQUOTE] = ACTIONS(6306), + [anon_sym_u8R_DQUOTE] = ACTIONS(6306), + [sym_literal_suffix] = ACTIONS(5554), + }, + [2379] = { + [ts_builtin_sym_end] = ACTIONS(6308), + [sym_identifier] = ACTIONS(6310), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6308), + [anon_sym_COMMA] = ACTIONS(6308), + [anon_sym_RPAREN] = ACTIONS(6308), + [aux_sym_preproc_if_token2] = ACTIONS(6308), + [aux_sym_preproc_else_token1] = ACTIONS(6308), + [aux_sym_preproc_elif_token1] = ACTIONS(6310), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6308), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6308), + [anon_sym_LPAREN2] = ACTIONS(6308), + [anon_sym_DASH] = ACTIONS(6310), + [anon_sym_PLUS] = ACTIONS(6310), + [anon_sym_STAR] = ACTIONS(6310), + [anon_sym_SLASH] = ACTIONS(6310), + [anon_sym_PERCENT] = ACTIONS(6310), + [anon_sym_PIPE_PIPE] = ACTIONS(6308), + [anon_sym_AMP_AMP] = ACTIONS(6308), + [anon_sym_PIPE] = ACTIONS(6310), + [anon_sym_CARET] = ACTIONS(6310), + [anon_sym_AMP] = ACTIONS(6310), + [anon_sym_EQ_EQ] = ACTIONS(6308), + [anon_sym_BANG_EQ] = ACTIONS(6308), + [anon_sym_GT] = ACTIONS(6310), + [anon_sym_GT_EQ] = ACTIONS(6308), + [anon_sym_LT_EQ] = ACTIONS(6310), + [anon_sym_LT] = ACTIONS(6310), + [anon_sym_LT_LT] = ACTIONS(6310), + [anon_sym_GT_GT] = ACTIONS(6310), + [anon_sym_SEMI] = ACTIONS(6308), + [anon_sym___attribute__] = ACTIONS(6310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6308), + [anon_sym_LBRACE] = ACTIONS(6308), + [anon_sym_RBRACE] = ACTIONS(6308), + [anon_sym_LBRACK] = ACTIONS(6310), + [anon_sym_RBRACK] = ACTIONS(6308), + [anon_sym_EQ] = ACTIONS(6310), + [anon_sym_COLON] = ACTIONS(6308), + [anon_sym_QMARK] = ACTIONS(6308), + [anon_sym_STAR_EQ] = ACTIONS(6308), + [anon_sym_SLASH_EQ] = ACTIONS(6308), + [anon_sym_PERCENT_EQ] = ACTIONS(6308), + [anon_sym_PLUS_EQ] = ACTIONS(6308), + [anon_sym_DASH_EQ] = ACTIONS(6308), + [anon_sym_LT_LT_EQ] = ACTIONS(6308), + [anon_sym_GT_GT_EQ] = ACTIONS(6308), + [anon_sym_AMP_EQ] = ACTIONS(6308), + [anon_sym_CARET_EQ] = ACTIONS(6308), + [anon_sym_PIPE_EQ] = ACTIONS(6308), + [anon_sym_and_eq] = ACTIONS(6310), + [anon_sym_or_eq] = ACTIONS(6310), + [anon_sym_xor_eq] = ACTIONS(6310), + [anon_sym_LT_EQ_GT] = ACTIONS(6308), + [anon_sym_or] = ACTIONS(6310), + [anon_sym_and] = ACTIONS(6310), + [anon_sym_bitor] = ACTIONS(6310), + [anon_sym_xor] = ACTIONS(6310), + [anon_sym_bitand] = ACTIONS(6310), + [anon_sym_not_eq] = ACTIONS(6310), + [anon_sym_DASH_DASH] = ACTIONS(6308), + [anon_sym_PLUS_PLUS] = ACTIONS(6308), + [anon_sym_DOT] = ACTIONS(6310), + [anon_sym_DOT_STAR] = ACTIONS(6308), + [anon_sym_DASH_GT] = ACTIONS(6308), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(6310), + }, + [2380] = { + [sym_identifier] = ACTIONS(5896), + [aux_sym_preproc_def_token1] = ACTIONS(5896), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5898), + [aux_sym_preproc_if_token1] = ACTIONS(5896), + [aux_sym_preproc_if_token2] = ACTIONS(5896), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5896), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5896), + [sym_preproc_directive] = ACTIONS(5896), + [anon_sym_LPAREN2] = ACTIONS(5898), + [anon_sym_TILDE] = ACTIONS(5898), + [anon_sym_STAR] = ACTIONS(5898), + [anon_sym_AMP_AMP] = ACTIONS(5898), + [anon_sym_AMP] = ACTIONS(5896), + [anon_sym___extension__] = ACTIONS(5896), + [anon_sym_typedef] = ACTIONS(5896), + [anon_sym_extern] = ACTIONS(5896), + [anon_sym___attribute__] = ACTIONS(5896), + [anon_sym_COLON_COLON] = ACTIONS(5898), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5898), + [anon_sym___declspec] = ACTIONS(5896), + [anon_sym___based] = ACTIONS(5896), + [anon_sym_signed] = ACTIONS(5896), + [anon_sym_unsigned] = ACTIONS(5896), + [anon_sym_long] = ACTIONS(5896), + [anon_sym_short] = ACTIONS(5896), + [anon_sym_LBRACK] = ACTIONS(5896), + [anon_sym_static] = ACTIONS(5896), + [anon_sym_register] = ACTIONS(5896), + [anon_sym_inline] = ACTIONS(5896), + [anon_sym___inline] = ACTIONS(5896), + [anon_sym___inline__] = ACTIONS(5896), + [anon_sym___forceinline] = ACTIONS(5896), + [anon_sym_thread_local] = ACTIONS(5896), + [anon_sym___thread] = ACTIONS(5896), + [anon_sym_const] = ACTIONS(5896), + [anon_sym_constexpr] = ACTIONS(5896), + [anon_sym_volatile] = ACTIONS(5896), + [anon_sym_restrict] = ACTIONS(5896), + [anon_sym___restrict__] = ACTIONS(5896), + [anon_sym__Atomic] = ACTIONS(5896), + [anon_sym__Noreturn] = ACTIONS(5896), + [anon_sym_noreturn] = ACTIONS(5896), + [anon_sym_mutable] = ACTIONS(5896), + [anon_sym_constinit] = ACTIONS(5896), + [anon_sym_consteval] = ACTIONS(5896), + [sym_primitive_type] = ACTIONS(5896), + [anon_sym_enum] = ACTIONS(5896), + [anon_sym_class] = ACTIONS(5896), + [anon_sym_struct] = ACTIONS(5896), + [anon_sym_union] = ACTIONS(5896), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5896), + [anon_sym_decltype] = ACTIONS(5896), + [anon_sym_virtual] = ACTIONS(5896), + [anon_sym_alignas] = ACTIONS(5896), + [anon_sym_explicit] = ACTIONS(5896), + [anon_sym_typename] = ACTIONS(5896), + [anon_sym_template] = ACTIONS(5896), + [anon_sym_operator] = ACTIONS(5896), + [anon_sym_friend] = ACTIONS(5896), + [anon_sym_public] = ACTIONS(5896), + [anon_sym_private] = ACTIONS(5896), + [anon_sym_protected] = ACTIONS(5896), + [anon_sym_using] = ACTIONS(5896), + [anon_sym_static_assert] = ACTIONS(5896), + [sym_semgrep_metavar] = ACTIONS(5898), + }, + [2381] = { + [ts_builtin_sym_end] = ACTIONS(6312), + [sym_identifier] = ACTIONS(6314), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6312), + [anon_sym_COMMA] = ACTIONS(6312), + [anon_sym_RPAREN] = ACTIONS(6312), + [aux_sym_preproc_if_token2] = ACTIONS(6312), + [aux_sym_preproc_else_token1] = ACTIONS(6312), + [aux_sym_preproc_elif_token1] = ACTIONS(6314), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6312), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6312), + [anon_sym_LPAREN2] = ACTIONS(6312), + [anon_sym_DASH] = ACTIONS(6314), + [anon_sym_PLUS] = ACTIONS(6314), + [anon_sym_STAR] = ACTIONS(6314), + [anon_sym_SLASH] = ACTIONS(6314), + [anon_sym_PERCENT] = ACTIONS(6314), + [anon_sym_PIPE_PIPE] = ACTIONS(6312), + [anon_sym_AMP_AMP] = ACTIONS(6312), + [anon_sym_PIPE] = ACTIONS(6314), + [anon_sym_CARET] = ACTIONS(6314), + [anon_sym_AMP] = ACTIONS(6314), + [anon_sym_EQ_EQ] = ACTIONS(6312), + [anon_sym_BANG_EQ] = ACTIONS(6312), + [anon_sym_GT] = ACTIONS(6314), + [anon_sym_GT_EQ] = ACTIONS(6312), + [anon_sym_LT_EQ] = ACTIONS(6314), + [anon_sym_LT] = ACTIONS(6314), + [anon_sym_LT_LT] = ACTIONS(6314), + [anon_sym_GT_GT] = ACTIONS(6314), + [anon_sym_SEMI] = ACTIONS(6312), + [anon_sym___attribute__] = ACTIONS(6314), + [anon_sym_LBRACE] = ACTIONS(6312), + [anon_sym_RBRACE] = ACTIONS(6312), + [anon_sym_LBRACK] = ACTIONS(6312), + [anon_sym_RBRACK] = ACTIONS(6312), + [anon_sym_EQ] = ACTIONS(6314), + [anon_sym_COLON] = ACTIONS(6312), + [anon_sym_QMARK] = ACTIONS(6312), + [anon_sym_STAR_EQ] = ACTIONS(6312), + [anon_sym_SLASH_EQ] = ACTIONS(6312), + [anon_sym_PERCENT_EQ] = ACTIONS(6312), + [anon_sym_PLUS_EQ] = ACTIONS(6312), + [anon_sym_DASH_EQ] = ACTIONS(6312), + [anon_sym_LT_LT_EQ] = ACTIONS(6312), + [anon_sym_GT_GT_EQ] = ACTIONS(6312), + [anon_sym_AMP_EQ] = ACTIONS(6312), + [anon_sym_CARET_EQ] = ACTIONS(6312), + [anon_sym_PIPE_EQ] = ACTIONS(6312), + [anon_sym_and_eq] = ACTIONS(6314), + [anon_sym_or_eq] = ACTIONS(6314), + [anon_sym_xor_eq] = ACTIONS(6314), + [anon_sym_LT_EQ_GT] = ACTIONS(6312), + [anon_sym_or] = ACTIONS(6314), + [anon_sym_and] = ACTIONS(6314), + [anon_sym_bitor] = ACTIONS(6314), + [anon_sym_xor] = ACTIONS(6314), + [anon_sym_bitand] = ACTIONS(6314), + [anon_sym_not_eq] = ACTIONS(6314), + [anon_sym_DASH_DASH] = ACTIONS(6312), + [anon_sym_PLUS_PLUS] = ACTIONS(6312), + [anon_sym_DOT] = ACTIONS(6314), + [anon_sym_DOT_STAR] = ACTIONS(6312), + [anon_sym_DASH_GT] = ACTIONS(6312), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6314), + [anon_sym_decltype] = ACTIONS(6314), + }, + [2382] = { + [ts_builtin_sym_end] = ACTIONS(6316), + [sym_identifier] = ACTIONS(6318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6316), + [anon_sym_COMMA] = ACTIONS(6316), + [anon_sym_RPAREN] = ACTIONS(6316), + [aux_sym_preproc_if_token2] = ACTIONS(6316), + [aux_sym_preproc_else_token1] = ACTIONS(6316), + [aux_sym_preproc_elif_token1] = ACTIONS(6318), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6316), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6316), + [anon_sym_LPAREN2] = ACTIONS(6316), + [anon_sym_DASH] = ACTIONS(6318), + [anon_sym_PLUS] = ACTIONS(6318), + [anon_sym_STAR] = ACTIONS(6318), + [anon_sym_SLASH] = ACTIONS(6318), + [anon_sym_PERCENT] = ACTIONS(6318), + [anon_sym_PIPE_PIPE] = ACTIONS(6316), + [anon_sym_AMP_AMP] = ACTIONS(6316), + [anon_sym_PIPE] = ACTIONS(6318), + [anon_sym_CARET] = ACTIONS(6318), + [anon_sym_AMP] = ACTIONS(6318), + [anon_sym_EQ_EQ] = ACTIONS(6316), + [anon_sym_BANG_EQ] = ACTIONS(6316), + [anon_sym_GT] = ACTIONS(6318), + [anon_sym_GT_EQ] = ACTIONS(6316), + [anon_sym_LT_EQ] = ACTIONS(6318), + [anon_sym_LT] = ACTIONS(6318), + [anon_sym_LT_LT] = ACTIONS(6318), + [anon_sym_GT_GT] = ACTIONS(6318), + [anon_sym_SEMI] = ACTIONS(6316), + [anon_sym___attribute__] = ACTIONS(6318), + [anon_sym_LBRACE] = ACTIONS(6316), + [anon_sym_RBRACE] = ACTIONS(6316), + [anon_sym_LBRACK] = ACTIONS(6316), + [anon_sym_RBRACK] = ACTIONS(6316), + [anon_sym_EQ] = ACTIONS(6318), + [anon_sym_COLON] = ACTIONS(6316), + [anon_sym_QMARK] = ACTIONS(6316), + [anon_sym_STAR_EQ] = ACTIONS(6316), + [anon_sym_SLASH_EQ] = ACTIONS(6316), + [anon_sym_PERCENT_EQ] = ACTIONS(6316), + [anon_sym_PLUS_EQ] = ACTIONS(6316), + [anon_sym_DASH_EQ] = ACTIONS(6316), + [anon_sym_LT_LT_EQ] = ACTIONS(6316), + [anon_sym_GT_GT_EQ] = ACTIONS(6316), + [anon_sym_AMP_EQ] = ACTIONS(6316), + [anon_sym_CARET_EQ] = ACTIONS(6316), + [anon_sym_PIPE_EQ] = ACTIONS(6316), + [anon_sym_and_eq] = ACTIONS(6318), + [anon_sym_or_eq] = ACTIONS(6318), + [anon_sym_xor_eq] = ACTIONS(6318), + [anon_sym_LT_EQ_GT] = ACTIONS(6316), + [anon_sym_or] = ACTIONS(6318), + [anon_sym_and] = ACTIONS(6318), + [anon_sym_bitor] = ACTIONS(6318), + [anon_sym_xor] = ACTIONS(6318), + [anon_sym_bitand] = ACTIONS(6318), + [anon_sym_not_eq] = ACTIONS(6318), + [anon_sym_DASH_DASH] = ACTIONS(6316), + [anon_sym_PLUS_PLUS] = ACTIONS(6316), + [anon_sym_DOT] = ACTIONS(6318), + [anon_sym_DOT_STAR] = ACTIONS(6316), + [anon_sym_DASH_GT] = ACTIONS(6316), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6318), + [anon_sym_decltype] = ACTIONS(6318), + }, + [2383] = { + [ts_builtin_sym_end] = ACTIONS(6320), + [sym_identifier] = ACTIONS(6322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6320), + [anon_sym_COMMA] = ACTIONS(6320), + [anon_sym_RPAREN] = ACTIONS(6320), + [aux_sym_preproc_if_token2] = ACTIONS(6320), + [aux_sym_preproc_else_token1] = ACTIONS(6320), + [aux_sym_preproc_elif_token1] = ACTIONS(6322), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6320), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6320), + [anon_sym_LPAREN2] = ACTIONS(6320), + [anon_sym_DASH] = ACTIONS(6322), + [anon_sym_PLUS] = ACTIONS(6322), + [anon_sym_STAR] = ACTIONS(6322), + [anon_sym_SLASH] = ACTIONS(6322), + [anon_sym_PERCENT] = ACTIONS(6322), + [anon_sym_PIPE_PIPE] = ACTIONS(6320), + [anon_sym_AMP_AMP] = ACTIONS(6320), + [anon_sym_PIPE] = ACTIONS(6322), + [anon_sym_CARET] = ACTIONS(6322), + [anon_sym_AMP] = ACTIONS(6322), + [anon_sym_EQ_EQ] = ACTIONS(6320), + [anon_sym_BANG_EQ] = ACTIONS(6320), + [anon_sym_GT] = ACTIONS(6322), + [anon_sym_GT_EQ] = ACTIONS(6320), + [anon_sym_LT_EQ] = ACTIONS(6322), + [anon_sym_LT] = ACTIONS(6322), + [anon_sym_LT_LT] = ACTIONS(6322), + [anon_sym_GT_GT] = ACTIONS(6322), + [anon_sym_SEMI] = ACTIONS(6320), + [anon_sym___attribute__] = ACTIONS(6322), + [anon_sym_LBRACE] = ACTIONS(6320), + [anon_sym_RBRACE] = ACTIONS(6320), + [anon_sym_LBRACK] = ACTIONS(6320), + [anon_sym_RBRACK] = ACTIONS(6320), + [anon_sym_EQ] = ACTIONS(6322), + [anon_sym_COLON] = ACTIONS(6320), + [anon_sym_QMARK] = ACTIONS(6320), + [anon_sym_STAR_EQ] = ACTIONS(6320), + [anon_sym_SLASH_EQ] = ACTIONS(6320), + [anon_sym_PERCENT_EQ] = ACTIONS(6320), + [anon_sym_PLUS_EQ] = ACTIONS(6320), + [anon_sym_DASH_EQ] = ACTIONS(6320), + [anon_sym_LT_LT_EQ] = ACTIONS(6320), + [anon_sym_GT_GT_EQ] = ACTIONS(6320), + [anon_sym_AMP_EQ] = ACTIONS(6320), + [anon_sym_CARET_EQ] = ACTIONS(6320), + [anon_sym_PIPE_EQ] = ACTIONS(6320), + [anon_sym_and_eq] = ACTIONS(6322), + [anon_sym_or_eq] = ACTIONS(6322), + [anon_sym_xor_eq] = ACTIONS(6322), + [anon_sym_LT_EQ_GT] = ACTIONS(6320), + [anon_sym_or] = ACTIONS(6322), + [anon_sym_and] = ACTIONS(6322), + [anon_sym_bitor] = ACTIONS(6322), + [anon_sym_xor] = ACTIONS(6322), + [anon_sym_bitand] = ACTIONS(6322), + [anon_sym_not_eq] = ACTIONS(6322), + [anon_sym_DASH_DASH] = ACTIONS(6320), + [anon_sym_PLUS_PLUS] = ACTIONS(6320), + [anon_sym_DOT] = ACTIONS(6322), + [anon_sym_DOT_STAR] = ACTIONS(6320), + [anon_sym_DASH_GT] = ACTIONS(6320), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6322), + [anon_sym_decltype] = ACTIONS(6322), + }, + [2384] = { + [sym_identifier] = ACTIONS(5904), + [aux_sym_preproc_def_token1] = ACTIONS(5904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5906), + [aux_sym_preproc_if_token1] = ACTIONS(5904), + [aux_sym_preproc_if_token2] = ACTIONS(5904), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5904), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5904), + [sym_preproc_directive] = ACTIONS(5904), + [anon_sym_LPAREN2] = ACTIONS(5906), + [anon_sym_TILDE] = ACTIONS(5906), + [anon_sym_STAR] = ACTIONS(5906), + [anon_sym_AMP_AMP] = ACTIONS(5906), + [anon_sym_AMP] = ACTIONS(5904), + [anon_sym___extension__] = ACTIONS(5904), + [anon_sym_typedef] = ACTIONS(5904), + [anon_sym_extern] = ACTIONS(5904), + [anon_sym___attribute__] = ACTIONS(5904), + [anon_sym_COLON_COLON] = ACTIONS(5906), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5906), + [anon_sym___declspec] = ACTIONS(5904), + [anon_sym___based] = ACTIONS(5904), + [anon_sym_signed] = ACTIONS(5904), + [anon_sym_unsigned] = ACTIONS(5904), + [anon_sym_long] = ACTIONS(5904), + [anon_sym_short] = ACTIONS(5904), + [anon_sym_LBRACK] = ACTIONS(5904), + [anon_sym_static] = ACTIONS(5904), + [anon_sym_register] = ACTIONS(5904), + [anon_sym_inline] = ACTIONS(5904), + [anon_sym___inline] = ACTIONS(5904), + [anon_sym___inline__] = ACTIONS(5904), + [anon_sym___forceinline] = ACTIONS(5904), + [anon_sym_thread_local] = ACTIONS(5904), + [anon_sym___thread] = ACTIONS(5904), + [anon_sym_const] = ACTIONS(5904), + [anon_sym_constexpr] = ACTIONS(5904), + [anon_sym_volatile] = ACTIONS(5904), + [anon_sym_restrict] = ACTIONS(5904), + [anon_sym___restrict__] = ACTIONS(5904), + [anon_sym__Atomic] = ACTIONS(5904), + [anon_sym__Noreturn] = ACTIONS(5904), + [anon_sym_noreturn] = ACTIONS(5904), + [anon_sym_mutable] = ACTIONS(5904), + [anon_sym_constinit] = ACTIONS(5904), + [anon_sym_consteval] = ACTIONS(5904), + [sym_primitive_type] = ACTIONS(5904), + [anon_sym_enum] = ACTIONS(5904), + [anon_sym_class] = ACTIONS(5904), + [anon_sym_struct] = ACTIONS(5904), + [anon_sym_union] = ACTIONS(5904), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5904), + [anon_sym_decltype] = ACTIONS(5904), + [anon_sym_virtual] = ACTIONS(5904), + [anon_sym_alignas] = ACTIONS(5904), + [anon_sym_explicit] = ACTIONS(5904), + [anon_sym_typename] = ACTIONS(5904), + [anon_sym_template] = ACTIONS(5904), + [anon_sym_operator] = ACTIONS(5904), + [anon_sym_friend] = ACTIONS(5904), + [anon_sym_public] = ACTIONS(5904), + [anon_sym_private] = ACTIONS(5904), + [anon_sym_protected] = ACTIONS(5904), + [anon_sym_using] = ACTIONS(5904), + [anon_sym_static_assert] = ACTIONS(5904), + [sym_semgrep_metavar] = ACTIONS(5906), + }, + [2385] = { + [ts_builtin_sym_end] = ACTIONS(6324), + [sym_identifier] = ACTIONS(6326), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6324), + [anon_sym_COMMA] = ACTIONS(6324), + [anon_sym_RPAREN] = ACTIONS(6324), + [aux_sym_preproc_if_token2] = ACTIONS(6324), + [aux_sym_preproc_else_token1] = ACTIONS(6324), + [aux_sym_preproc_elif_token1] = ACTIONS(6326), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6324), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6324), + [anon_sym_LPAREN2] = ACTIONS(6324), + [anon_sym_DASH] = ACTIONS(6326), + [anon_sym_PLUS] = ACTIONS(6326), + [anon_sym_STAR] = ACTIONS(6326), + [anon_sym_SLASH] = ACTIONS(6326), + [anon_sym_PERCENT] = ACTIONS(6326), + [anon_sym_PIPE_PIPE] = ACTIONS(6324), + [anon_sym_AMP_AMP] = ACTIONS(6324), + [anon_sym_PIPE] = ACTIONS(6326), + [anon_sym_CARET] = ACTIONS(6326), + [anon_sym_AMP] = ACTIONS(6326), + [anon_sym_EQ_EQ] = ACTIONS(6324), + [anon_sym_BANG_EQ] = ACTIONS(6324), + [anon_sym_GT] = ACTIONS(6326), + [anon_sym_GT_EQ] = ACTIONS(6324), + [anon_sym_LT_EQ] = ACTIONS(6326), + [anon_sym_LT] = ACTIONS(6326), + [anon_sym_LT_LT] = ACTIONS(6326), + [anon_sym_GT_GT] = ACTIONS(6326), + [anon_sym_SEMI] = ACTIONS(6324), + [anon_sym___attribute__] = ACTIONS(6326), + [anon_sym_LBRACE] = ACTIONS(6324), + [anon_sym_RBRACE] = ACTIONS(6324), + [anon_sym_LBRACK] = ACTIONS(6324), + [anon_sym_RBRACK] = ACTIONS(6324), + [anon_sym_EQ] = ACTIONS(6326), + [anon_sym_COLON] = ACTIONS(6324), + [anon_sym_QMARK] = ACTIONS(6324), + [anon_sym_STAR_EQ] = ACTIONS(6324), + [anon_sym_SLASH_EQ] = ACTIONS(6324), + [anon_sym_PERCENT_EQ] = ACTIONS(6324), + [anon_sym_PLUS_EQ] = ACTIONS(6324), + [anon_sym_DASH_EQ] = ACTIONS(6324), + [anon_sym_LT_LT_EQ] = ACTIONS(6324), + [anon_sym_GT_GT_EQ] = ACTIONS(6324), + [anon_sym_AMP_EQ] = ACTIONS(6324), + [anon_sym_CARET_EQ] = ACTIONS(6324), + [anon_sym_PIPE_EQ] = ACTIONS(6324), + [anon_sym_and_eq] = ACTIONS(6326), + [anon_sym_or_eq] = ACTIONS(6326), + [anon_sym_xor_eq] = ACTIONS(6326), + [anon_sym_LT_EQ_GT] = ACTIONS(6324), + [anon_sym_or] = ACTIONS(6326), + [anon_sym_and] = ACTIONS(6326), + [anon_sym_bitor] = ACTIONS(6326), + [anon_sym_xor] = ACTIONS(6326), + [anon_sym_bitand] = ACTIONS(6326), + [anon_sym_not_eq] = ACTIONS(6326), + [anon_sym_DASH_DASH] = ACTIONS(6324), + [anon_sym_PLUS_PLUS] = ACTIONS(6324), + [anon_sym_DOT] = ACTIONS(6326), + [anon_sym_DOT_STAR] = ACTIONS(6324), + [anon_sym_DASH_GT] = ACTIONS(6324), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6326), + [anon_sym_decltype] = ACTIONS(6326), + }, + [2386] = { + [sym_identifier] = ACTIONS(5908), + [aux_sym_preproc_def_token1] = ACTIONS(5908), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5910), + [aux_sym_preproc_if_token1] = ACTIONS(5908), + [aux_sym_preproc_if_token2] = ACTIONS(5908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5908), + [sym_preproc_directive] = ACTIONS(5908), + [anon_sym_LPAREN2] = ACTIONS(5910), + [anon_sym_TILDE] = ACTIONS(5910), + [anon_sym_STAR] = ACTIONS(5910), + [anon_sym_AMP_AMP] = ACTIONS(5910), + [anon_sym_AMP] = ACTIONS(5908), + [anon_sym___extension__] = ACTIONS(5908), + [anon_sym_typedef] = ACTIONS(5908), + [anon_sym_extern] = ACTIONS(5908), + [anon_sym___attribute__] = ACTIONS(5908), + [anon_sym_COLON_COLON] = ACTIONS(5910), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5910), + [anon_sym___declspec] = ACTIONS(5908), + [anon_sym___based] = ACTIONS(5908), + [anon_sym_signed] = ACTIONS(5908), + [anon_sym_unsigned] = ACTIONS(5908), + [anon_sym_long] = ACTIONS(5908), + [anon_sym_short] = ACTIONS(5908), + [anon_sym_LBRACK] = ACTIONS(5908), + [anon_sym_static] = ACTIONS(5908), + [anon_sym_register] = ACTIONS(5908), + [anon_sym_inline] = ACTIONS(5908), + [anon_sym___inline] = ACTIONS(5908), + [anon_sym___inline__] = ACTIONS(5908), + [anon_sym___forceinline] = ACTIONS(5908), + [anon_sym_thread_local] = ACTIONS(5908), + [anon_sym___thread] = ACTIONS(5908), + [anon_sym_const] = ACTIONS(5908), + [anon_sym_constexpr] = ACTIONS(5908), + [anon_sym_volatile] = ACTIONS(5908), + [anon_sym_restrict] = ACTIONS(5908), + [anon_sym___restrict__] = ACTIONS(5908), + [anon_sym__Atomic] = ACTIONS(5908), + [anon_sym__Noreturn] = ACTIONS(5908), + [anon_sym_noreturn] = ACTIONS(5908), + [anon_sym_mutable] = ACTIONS(5908), + [anon_sym_constinit] = ACTIONS(5908), + [anon_sym_consteval] = ACTIONS(5908), + [sym_primitive_type] = ACTIONS(5908), + [anon_sym_enum] = ACTIONS(5908), + [anon_sym_class] = ACTIONS(5908), + [anon_sym_struct] = ACTIONS(5908), + [anon_sym_union] = ACTIONS(5908), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5908), + [anon_sym_decltype] = ACTIONS(5908), + [anon_sym_virtual] = ACTIONS(5908), + [anon_sym_alignas] = ACTIONS(5908), + [anon_sym_explicit] = ACTIONS(5908), + [anon_sym_typename] = ACTIONS(5908), + [anon_sym_template] = ACTIONS(5908), + [anon_sym_operator] = ACTIONS(5908), + [anon_sym_friend] = ACTIONS(5908), + [anon_sym_public] = ACTIONS(5908), + [anon_sym_private] = ACTIONS(5908), + [anon_sym_protected] = ACTIONS(5908), + [anon_sym_using] = ACTIONS(5908), + [anon_sym_static_assert] = ACTIONS(5908), + [sym_semgrep_metavar] = ACTIONS(5910), + }, + [2387] = { + [ts_builtin_sym_end] = ACTIONS(6328), + [sym_identifier] = ACTIONS(6330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6328), + [anon_sym_COMMA] = ACTIONS(6328), + [anon_sym_RPAREN] = ACTIONS(6328), + [aux_sym_preproc_if_token2] = ACTIONS(6328), + [aux_sym_preproc_else_token1] = ACTIONS(6328), + [aux_sym_preproc_elif_token1] = ACTIONS(6330), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6328), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6328), + [anon_sym_LPAREN2] = ACTIONS(6328), + [anon_sym_DASH] = ACTIONS(6330), + [anon_sym_PLUS] = ACTIONS(6330), + [anon_sym_STAR] = ACTIONS(6330), + [anon_sym_SLASH] = ACTIONS(6330), + [anon_sym_PERCENT] = ACTIONS(6330), + [anon_sym_PIPE_PIPE] = ACTIONS(6328), + [anon_sym_AMP_AMP] = ACTIONS(6328), + [anon_sym_PIPE] = ACTIONS(6330), + [anon_sym_CARET] = ACTIONS(6330), + [anon_sym_AMP] = ACTIONS(6330), + [anon_sym_EQ_EQ] = ACTIONS(6328), + [anon_sym_BANG_EQ] = ACTIONS(6328), + [anon_sym_GT] = ACTIONS(6330), + [anon_sym_GT_EQ] = ACTIONS(6328), + [anon_sym_LT_EQ] = ACTIONS(6330), + [anon_sym_LT] = ACTIONS(6330), + [anon_sym_LT_LT] = ACTIONS(6330), + [anon_sym_GT_GT] = ACTIONS(6330), + [anon_sym_SEMI] = ACTIONS(6328), + [anon_sym___attribute__] = ACTIONS(6330), + [anon_sym_LBRACE] = ACTIONS(6328), + [anon_sym_RBRACE] = ACTIONS(6328), + [anon_sym_LBRACK] = ACTIONS(6328), + [anon_sym_RBRACK] = ACTIONS(6328), + [anon_sym_EQ] = ACTIONS(6330), + [anon_sym_COLON] = ACTIONS(6328), + [anon_sym_QMARK] = ACTIONS(6328), + [anon_sym_STAR_EQ] = ACTIONS(6328), + [anon_sym_SLASH_EQ] = ACTIONS(6328), + [anon_sym_PERCENT_EQ] = ACTIONS(6328), + [anon_sym_PLUS_EQ] = ACTIONS(6328), + [anon_sym_DASH_EQ] = ACTIONS(6328), + [anon_sym_LT_LT_EQ] = ACTIONS(6328), + [anon_sym_GT_GT_EQ] = ACTIONS(6328), + [anon_sym_AMP_EQ] = ACTIONS(6328), + [anon_sym_CARET_EQ] = ACTIONS(6328), + [anon_sym_PIPE_EQ] = ACTIONS(6328), + [anon_sym_and_eq] = ACTIONS(6330), + [anon_sym_or_eq] = ACTIONS(6330), + [anon_sym_xor_eq] = ACTIONS(6330), + [anon_sym_LT_EQ_GT] = ACTIONS(6328), + [anon_sym_or] = ACTIONS(6330), + [anon_sym_and] = ACTIONS(6330), + [anon_sym_bitor] = ACTIONS(6330), + [anon_sym_xor] = ACTIONS(6330), + [anon_sym_bitand] = ACTIONS(6330), + [anon_sym_not_eq] = ACTIONS(6330), + [anon_sym_DASH_DASH] = ACTIONS(6328), + [anon_sym_PLUS_PLUS] = ACTIONS(6328), + [anon_sym_DOT] = ACTIONS(6330), + [anon_sym_DOT_STAR] = ACTIONS(6328), + [anon_sym_DASH_GT] = ACTIONS(6328), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6330), + [anon_sym_decltype] = ACTIONS(6330), + }, + [2388] = { + [sym_identifier] = ACTIONS(5832), + [aux_sym_preproc_def_token1] = ACTIONS(5832), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5834), + [aux_sym_preproc_if_token1] = ACTIONS(5832), + [aux_sym_preproc_if_token2] = ACTIONS(5832), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5832), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5832), + [sym_preproc_directive] = ACTIONS(5832), + [anon_sym_LPAREN2] = ACTIONS(5834), + [anon_sym_TILDE] = ACTIONS(5834), + [anon_sym_STAR] = ACTIONS(5834), + [anon_sym_AMP_AMP] = ACTIONS(5834), + [anon_sym_AMP] = ACTIONS(5832), + [anon_sym___extension__] = ACTIONS(5832), + [anon_sym_typedef] = ACTIONS(5832), + [anon_sym_extern] = ACTIONS(5832), + [anon_sym___attribute__] = ACTIONS(5832), + [anon_sym_COLON_COLON] = ACTIONS(5834), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5834), + [anon_sym___declspec] = ACTIONS(5832), + [anon_sym___based] = ACTIONS(5832), + [anon_sym_signed] = ACTIONS(5832), + [anon_sym_unsigned] = ACTIONS(5832), + [anon_sym_long] = ACTIONS(5832), + [anon_sym_short] = ACTIONS(5832), + [anon_sym_LBRACK] = ACTIONS(5832), + [anon_sym_static] = ACTIONS(5832), + [anon_sym_register] = ACTIONS(5832), + [anon_sym_inline] = ACTIONS(5832), + [anon_sym___inline] = ACTIONS(5832), + [anon_sym___inline__] = ACTIONS(5832), + [anon_sym___forceinline] = ACTIONS(5832), + [anon_sym_thread_local] = ACTIONS(5832), + [anon_sym___thread] = ACTIONS(5832), + [anon_sym_const] = ACTIONS(5832), + [anon_sym_constexpr] = ACTIONS(5832), + [anon_sym_volatile] = ACTIONS(5832), + [anon_sym_restrict] = ACTIONS(5832), + [anon_sym___restrict__] = ACTIONS(5832), + [anon_sym__Atomic] = ACTIONS(5832), + [anon_sym__Noreturn] = ACTIONS(5832), + [anon_sym_noreturn] = ACTIONS(5832), + [anon_sym_mutable] = ACTIONS(5832), + [anon_sym_constinit] = ACTIONS(5832), + [anon_sym_consteval] = ACTIONS(5832), + [sym_primitive_type] = ACTIONS(5832), + [anon_sym_enum] = ACTIONS(5832), + [anon_sym_class] = ACTIONS(5832), + [anon_sym_struct] = ACTIONS(5832), + [anon_sym_union] = ACTIONS(5832), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5832), + [anon_sym_decltype] = ACTIONS(5832), + [anon_sym_virtual] = ACTIONS(5832), + [anon_sym_alignas] = ACTIONS(5832), + [anon_sym_explicit] = ACTIONS(5832), + [anon_sym_typename] = ACTIONS(5832), + [anon_sym_template] = ACTIONS(5832), + [anon_sym_operator] = ACTIONS(5832), + [anon_sym_friend] = ACTIONS(5832), + [anon_sym_public] = ACTIONS(5832), + [anon_sym_private] = ACTIONS(5832), + [anon_sym_protected] = ACTIONS(5832), + [anon_sym_using] = ACTIONS(5832), + [anon_sym_static_assert] = ACTIONS(5832), + [sym_semgrep_metavar] = ACTIONS(5834), + }, + [2389] = { + [ts_builtin_sym_end] = ACTIONS(6332), + [sym_identifier] = ACTIONS(6334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6332), + [anon_sym_COMMA] = ACTIONS(6332), + [anon_sym_RPAREN] = ACTIONS(6332), + [aux_sym_preproc_if_token2] = ACTIONS(6332), + [aux_sym_preproc_else_token1] = ACTIONS(6332), + [aux_sym_preproc_elif_token1] = ACTIONS(6334), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6332), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6332), + [anon_sym_LPAREN2] = ACTIONS(6332), + [anon_sym_DASH] = ACTIONS(6334), + [anon_sym_PLUS] = ACTIONS(6334), + [anon_sym_STAR] = ACTIONS(6334), + [anon_sym_SLASH] = ACTIONS(6334), + [anon_sym_PERCENT] = ACTIONS(6334), + [anon_sym_PIPE_PIPE] = ACTIONS(6332), + [anon_sym_AMP_AMP] = ACTIONS(6332), + [anon_sym_PIPE] = ACTIONS(6334), + [anon_sym_CARET] = ACTIONS(6334), + [anon_sym_AMP] = ACTIONS(6334), + [anon_sym_EQ_EQ] = ACTIONS(6332), + [anon_sym_BANG_EQ] = ACTIONS(6332), + [anon_sym_GT] = ACTIONS(6334), + [anon_sym_GT_EQ] = ACTIONS(6332), + [anon_sym_LT_EQ] = ACTIONS(6334), + [anon_sym_LT] = ACTIONS(6334), + [anon_sym_LT_LT] = ACTIONS(6334), + [anon_sym_GT_GT] = ACTIONS(6334), + [anon_sym_SEMI] = ACTIONS(6332), + [anon_sym___attribute__] = ACTIONS(6334), + [anon_sym_LBRACE] = ACTIONS(6332), + [anon_sym_RBRACE] = ACTIONS(6332), + [anon_sym_LBRACK] = ACTIONS(6332), + [anon_sym_RBRACK] = ACTIONS(6332), + [anon_sym_EQ] = ACTIONS(6334), + [anon_sym_COLON] = ACTIONS(6332), + [anon_sym_QMARK] = ACTIONS(6332), + [anon_sym_STAR_EQ] = ACTIONS(6332), + [anon_sym_SLASH_EQ] = ACTIONS(6332), + [anon_sym_PERCENT_EQ] = ACTIONS(6332), + [anon_sym_PLUS_EQ] = ACTIONS(6332), + [anon_sym_DASH_EQ] = ACTIONS(6332), + [anon_sym_LT_LT_EQ] = ACTIONS(6332), + [anon_sym_GT_GT_EQ] = ACTIONS(6332), + [anon_sym_AMP_EQ] = ACTIONS(6332), + [anon_sym_CARET_EQ] = ACTIONS(6332), + [anon_sym_PIPE_EQ] = ACTIONS(6332), + [anon_sym_and_eq] = ACTIONS(6334), + [anon_sym_or_eq] = ACTIONS(6334), + [anon_sym_xor_eq] = ACTIONS(6334), + [anon_sym_LT_EQ_GT] = ACTIONS(6332), + [anon_sym_or] = ACTIONS(6334), + [anon_sym_and] = ACTIONS(6334), + [anon_sym_bitor] = ACTIONS(6334), + [anon_sym_xor] = ACTIONS(6334), + [anon_sym_bitand] = ACTIONS(6334), + [anon_sym_not_eq] = ACTIONS(6334), + [anon_sym_DASH_DASH] = ACTIONS(6332), + [anon_sym_PLUS_PLUS] = ACTIONS(6332), + [anon_sym_DOT] = ACTIONS(6334), + [anon_sym_DOT_STAR] = ACTIONS(6332), + [anon_sym_DASH_GT] = ACTIONS(6332), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6334), + [anon_sym_decltype] = ACTIONS(6334), + }, + [2390] = { + [ts_builtin_sym_end] = ACTIONS(6336), + [sym_identifier] = ACTIONS(6338), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6336), + [anon_sym_COMMA] = ACTIONS(6336), + [anon_sym_RPAREN] = ACTIONS(6336), + [aux_sym_preproc_if_token2] = ACTIONS(6336), + [aux_sym_preproc_else_token1] = ACTIONS(6336), + [aux_sym_preproc_elif_token1] = ACTIONS(6338), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6336), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6336), + [anon_sym_LPAREN2] = ACTIONS(6336), + [anon_sym_DASH] = ACTIONS(6338), + [anon_sym_PLUS] = ACTIONS(6338), + [anon_sym_STAR] = ACTIONS(6338), + [anon_sym_SLASH] = ACTIONS(6338), + [anon_sym_PERCENT] = ACTIONS(6338), + [anon_sym_PIPE_PIPE] = ACTIONS(6336), + [anon_sym_AMP_AMP] = ACTIONS(6336), + [anon_sym_PIPE] = ACTIONS(6338), + [anon_sym_CARET] = ACTIONS(6338), + [anon_sym_AMP] = ACTIONS(6338), + [anon_sym_EQ_EQ] = ACTIONS(6336), + [anon_sym_BANG_EQ] = ACTIONS(6336), + [anon_sym_GT] = ACTIONS(6338), + [anon_sym_GT_EQ] = ACTIONS(6336), + [anon_sym_LT_EQ] = ACTIONS(6338), + [anon_sym_LT] = ACTIONS(6338), + [anon_sym_LT_LT] = ACTIONS(6338), + [anon_sym_GT_GT] = ACTIONS(6338), + [anon_sym_SEMI] = ACTIONS(6336), + [anon_sym___attribute__] = ACTIONS(6338), + [anon_sym_LBRACE] = ACTIONS(6336), + [anon_sym_RBRACE] = ACTIONS(6336), + [anon_sym_LBRACK] = ACTIONS(6336), + [anon_sym_RBRACK] = ACTIONS(6336), + [anon_sym_EQ] = ACTIONS(6338), + [anon_sym_COLON] = ACTIONS(6336), + [anon_sym_QMARK] = ACTIONS(6336), + [anon_sym_STAR_EQ] = ACTIONS(6336), + [anon_sym_SLASH_EQ] = ACTIONS(6336), + [anon_sym_PERCENT_EQ] = ACTIONS(6336), + [anon_sym_PLUS_EQ] = ACTIONS(6336), + [anon_sym_DASH_EQ] = ACTIONS(6336), + [anon_sym_LT_LT_EQ] = ACTIONS(6336), + [anon_sym_GT_GT_EQ] = ACTIONS(6336), + [anon_sym_AMP_EQ] = ACTIONS(6336), + [anon_sym_CARET_EQ] = ACTIONS(6336), + [anon_sym_PIPE_EQ] = ACTIONS(6336), + [anon_sym_and_eq] = ACTIONS(6338), + [anon_sym_or_eq] = ACTIONS(6338), + [anon_sym_xor_eq] = ACTIONS(6338), + [anon_sym_LT_EQ_GT] = ACTIONS(6336), + [anon_sym_or] = ACTIONS(6338), + [anon_sym_and] = ACTIONS(6338), + [anon_sym_bitor] = ACTIONS(6338), + [anon_sym_xor] = ACTIONS(6338), + [anon_sym_bitand] = ACTIONS(6338), + [anon_sym_not_eq] = ACTIONS(6338), + [anon_sym_DASH_DASH] = ACTIONS(6336), + [anon_sym_PLUS_PLUS] = ACTIONS(6336), + [anon_sym_DOT] = ACTIONS(6338), + [anon_sym_DOT_STAR] = ACTIONS(6336), + [anon_sym_DASH_GT] = ACTIONS(6336), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6338), + [anon_sym_decltype] = ACTIONS(6338), + }, + [2391] = { + [sym_identifier] = ACTIONS(3503), + [aux_sym_preproc_def_token1] = ACTIONS(3503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3505), + [aux_sym_preproc_if_token1] = ACTIONS(3503), + [aux_sym_preproc_if_token2] = ACTIONS(3503), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3503), + [sym_preproc_directive] = ACTIONS(3503), + [anon_sym_LPAREN2] = ACTIONS(3505), + [anon_sym_TILDE] = ACTIONS(3505), + [anon_sym_STAR] = ACTIONS(3505), + [anon_sym_AMP_AMP] = ACTIONS(3505), + [anon_sym_AMP] = ACTIONS(3503), + [anon_sym___extension__] = ACTIONS(3503), + [anon_sym_typedef] = ACTIONS(3503), + [anon_sym_extern] = ACTIONS(3503), + [anon_sym___attribute__] = ACTIONS(3503), + [anon_sym_COLON_COLON] = ACTIONS(3505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3505), + [anon_sym___declspec] = ACTIONS(3503), + [anon_sym___based] = ACTIONS(3503), + [anon_sym_signed] = ACTIONS(3503), + [anon_sym_unsigned] = ACTIONS(3503), + [anon_sym_long] = ACTIONS(3503), + [anon_sym_short] = ACTIONS(3503), + [anon_sym_LBRACK] = ACTIONS(3503), + [anon_sym_static] = ACTIONS(3503), + [anon_sym_register] = ACTIONS(3503), + [anon_sym_inline] = ACTIONS(3503), + [anon_sym___inline] = ACTIONS(3503), + [anon_sym___inline__] = ACTIONS(3503), + [anon_sym___forceinline] = ACTIONS(3503), + [anon_sym_thread_local] = ACTIONS(3503), + [anon_sym___thread] = ACTIONS(3503), + [anon_sym_const] = ACTIONS(3503), + [anon_sym_constexpr] = ACTIONS(3503), + [anon_sym_volatile] = ACTIONS(3503), + [anon_sym_restrict] = ACTIONS(3503), + [anon_sym___restrict__] = ACTIONS(3503), + [anon_sym__Atomic] = ACTIONS(3503), + [anon_sym__Noreturn] = ACTIONS(3503), + [anon_sym_noreturn] = ACTIONS(3503), + [anon_sym_mutable] = ACTIONS(3503), + [anon_sym_constinit] = ACTIONS(3503), + [anon_sym_consteval] = ACTIONS(3503), + [sym_primitive_type] = ACTIONS(3503), + [anon_sym_enum] = ACTIONS(3503), + [anon_sym_class] = ACTIONS(3503), + [anon_sym_struct] = ACTIONS(3503), + [anon_sym_union] = ACTIONS(3503), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3503), + [anon_sym_decltype] = ACTIONS(3503), + [anon_sym_virtual] = ACTIONS(3503), + [anon_sym_alignas] = ACTIONS(3503), + [anon_sym_explicit] = ACTIONS(3503), + [anon_sym_typename] = ACTIONS(3503), + [anon_sym_template] = ACTIONS(3503), + [anon_sym_operator] = ACTIONS(3503), + [anon_sym_friend] = ACTIONS(3503), + [anon_sym_public] = ACTIONS(3503), + [anon_sym_private] = ACTIONS(3503), + [anon_sym_protected] = ACTIONS(3503), + [anon_sym_using] = ACTIONS(3503), + [anon_sym_static_assert] = ACTIONS(3503), + [sym_semgrep_metavar] = ACTIONS(3505), + }, + [2392] = { + [sym_identifier] = ACTIONS(3577), + [aux_sym_preproc_def_token1] = ACTIONS(3577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3579), + [aux_sym_preproc_if_token1] = ACTIONS(3577), + [aux_sym_preproc_if_token2] = ACTIONS(3577), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3577), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3577), + [sym_preproc_directive] = ACTIONS(3577), + [anon_sym_LPAREN2] = ACTIONS(3579), + [anon_sym_TILDE] = ACTIONS(3579), + [anon_sym_STAR] = ACTIONS(3579), + [anon_sym_AMP_AMP] = ACTIONS(3579), + [anon_sym_AMP] = ACTIONS(3577), + [anon_sym___extension__] = ACTIONS(3577), + [anon_sym_typedef] = ACTIONS(3577), + [anon_sym_extern] = ACTIONS(3577), + [anon_sym___attribute__] = ACTIONS(3577), + [anon_sym_COLON_COLON] = ACTIONS(3579), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3579), + [anon_sym___declspec] = ACTIONS(3577), + [anon_sym___based] = ACTIONS(3577), + [anon_sym_signed] = ACTIONS(3577), + [anon_sym_unsigned] = ACTIONS(3577), + [anon_sym_long] = ACTIONS(3577), + [anon_sym_short] = ACTIONS(3577), + [anon_sym_LBRACK] = ACTIONS(3577), + [anon_sym_static] = ACTIONS(3577), + [anon_sym_register] = ACTIONS(3577), + [anon_sym_inline] = ACTIONS(3577), + [anon_sym___inline] = ACTIONS(3577), + [anon_sym___inline__] = ACTIONS(3577), + [anon_sym___forceinline] = ACTIONS(3577), + [anon_sym_thread_local] = ACTIONS(3577), + [anon_sym___thread] = ACTIONS(3577), + [anon_sym_const] = ACTIONS(3577), + [anon_sym_constexpr] = ACTIONS(3577), + [anon_sym_volatile] = ACTIONS(3577), + [anon_sym_restrict] = ACTIONS(3577), + [anon_sym___restrict__] = ACTIONS(3577), + [anon_sym__Atomic] = ACTIONS(3577), + [anon_sym__Noreturn] = ACTIONS(3577), + [anon_sym_noreturn] = ACTIONS(3577), + [anon_sym_mutable] = ACTIONS(3577), + [anon_sym_constinit] = ACTIONS(3577), + [anon_sym_consteval] = ACTIONS(3577), + [sym_primitive_type] = ACTIONS(3577), + [anon_sym_enum] = ACTIONS(3577), + [anon_sym_class] = ACTIONS(3577), + [anon_sym_struct] = ACTIONS(3577), + [anon_sym_union] = ACTIONS(3577), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3577), + [anon_sym_decltype] = ACTIONS(3577), + [anon_sym_virtual] = ACTIONS(3577), + [anon_sym_alignas] = ACTIONS(3577), + [anon_sym_explicit] = ACTIONS(3577), + [anon_sym_typename] = ACTIONS(3577), + [anon_sym_template] = ACTIONS(3577), + [anon_sym_operator] = ACTIONS(3577), + [anon_sym_friend] = ACTIONS(3577), + [anon_sym_public] = ACTIONS(3577), + [anon_sym_private] = ACTIONS(3577), + [anon_sym_protected] = ACTIONS(3577), + [anon_sym_using] = ACTIONS(3577), + [anon_sym_static_assert] = ACTIONS(3577), + [sym_semgrep_metavar] = ACTIONS(3579), + }, + [2393] = { + [sym_identifier] = ACTIONS(3581), + [aux_sym_preproc_def_token1] = ACTIONS(3581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3583), + [aux_sym_preproc_if_token1] = ACTIONS(3581), + [aux_sym_preproc_if_token2] = ACTIONS(3581), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3581), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3581), + [sym_preproc_directive] = ACTIONS(3581), + [anon_sym_LPAREN2] = ACTIONS(3583), + [anon_sym_TILDE] = ACTIONS(3583), + [anon_sym_STAR] = ACTIONS(3583), + [anon_sym_AMP_AMP] = ACTIONS(3583), + [anon_sym_AMP] = ACTIONS(3581), + [anon_sym___extension__] = ACTIONS(3581), + [anon_sym_typedef] = ACTIONS(3581), + [anon_sym_extern] = ACTIONS(3581), + [anon_sym___attribute__] = ACTIONS(3581), + [anon_sym_COLON_COLON] = ACTIONS(3583), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3583), + [anon_sym___declspec] = ACTIONS(3581), + [anon_sym___based] = ACTIONS(3581), + [anon_sym_signed] = ACTIONS(3581), + [anon_sym_unsigned] = ACTIONS(3581), + [anon_sym_long] = ACTIONS(3581), + [anon_sym_short] = ACTIONS(3581), + [anon_sym_LBRACK] = ACTIONS(3581), + [anon_sym_static] = ACTIONS(3581), + [anon_sym_register] = ACTIONS(3581), + [anon_sym_inline] = ACTIONS(3581), + [anon_sym___inline] = ACTIONS(3581), + [anon_sym___inline__] = ACTIONS(3581), + [anon_sym___forceinline] = ACTIONS(3581), + [anon_sym_thread_local] = ACTIONS(3581), + [anon_sym___thread] = ACTIONS(3581), + [anon_sym_const] = ACTIONS(3581), + [anon_sym_constexpr] = ACTIONS(3581), + [anon_sym_volatile] = ACTIONS(3581), + [anon_sym_restrict] = ACTIONS(3581), + [anon_sym___restrict__] = ACTIONS(3581), + [anon_sym__Atomic] = ACTIONS(3581), + [anon_sym__Noreturn] = ACTIONS(3581), + [anon_sym_noreturn] = ACTIONS(3581), + [anon_sym_mutable] = ACTIONS(3581), + [anon_sym_constinit] = ACTIONS(3581), + [anon_sym_consteval] = ACTIONS(3581), + [sym_primitive_type] = ACTIONS(3581), + [anon_sym_enum] = ACTIONS(3581), + [anon_sym_class] = ACTIONS(3581), + [anon_sym_struct] = ACTIONS(3581), + [anon_sym_union] = ACTIONS(3581), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3581), + [anon_sym_decltype] = ACTIONS(3581), + [anon_sym_virtual] = ACTIONS(3581), + [anon_sym_alignas] = ACTIONS(3581), + [anon_sym_explicit] = ACTIONS(3581), + [anon_sym_typename] = ACTIONS(3581), + [anon_sym_template] = ACTIONS(3581), + [anon_sym_operator] = ACTIONS(3581), + [anon_sym_friend] = ACTIONS(3581), + [anon_sym_public] = ACTIONS(3581), + [anon_sym_private] = ACTIONS(3581), + [anon_sym_protected] = ACTIONS(3581), + [anon_sym_using] = ACTIONS(3581), + [anon_sym_static_assert] = ACTIONS(3581), + [sym_semgrep_metavar] = ACTIONS(3583), + }, + [2394] = { + [ts_builtin_sym_end] = ACTIONS(6340), + [sym_identifier] = ACTIONS(6342), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6340), + [anon_sym_COMMA] = ACTIONS(6340), + [anon_sym_RPAREN] = ACTIONS(6340), + [aux_sym_preproc_if_token2] = ACTIONS(6340), + [aux_sym_preproc_else_token1] = ACTIONS(6340), + [aux_sym_preproc_elif_token1] = ACTIONS(6342), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6340), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6340), + [anon_sym_LPAREN2] = ACTIONS(6340), + [anon_sym_DASH] = ACTIONS(6342), + [anon_sym_PLUS] = ACTIONS(6342), + [anon_sym_STAR] = ACTIONS(6342), + [anon_sym_SLASH] = ACTIONS(6342), + [anon_sym_PERCENT] = ACTIONS(6342), + [anon_sym_PIPE_PIPE] = ACTIONS(6340), + [anon_sym_AMP_AMP] = ACTIONS(6340), + [anon_sym_PIPE] = ACTIONS(6342), + [anon_sym_CARET] = ACTIONS(6342), + [anon_sym_AMP] = ACTIONS(6342), + [anon_sym_EQ_EQ] = ACTIONS(6340), + [anon_sym_BANG_EQ] = ACTIONS(6340), + [anon_sym_GT] = ACTIONS(6342), + [anon_sym_GT_EQ] = ACTIONS(6340), + [anon_sym_LT_EQ] = ACTIONS(6342), + [anon_sym_LT] = ACTIONS(6342), + [anon_sym_LT_LT] = ACTIONS(6342), + [anon_sym_GT_GT] = ACTIONS(6342), + [anon_sym_SEMI] = ACTIONS(6340), + [anon_sym___attribute__] = ACTIONS(6342), + [anon_sym_LBRACE] = ACTIONS(6340), + [anon_sym_RBRACE] = ACTIONS(6340), + [anon_sym_LBRACK] = ACTIONS(6340), + [anon_sym_RBRACK] = ACTIONS(6340), + [anon_sym_EQ] = ACTIONS(6342), + [anon_sym_COLON] = ACTIONS(6340), + [anon_sym_QMARK] = ACTIONS(6340), + [anon_sym_STAR_EQ] = ACTIONS(6340), + [anon_sym_SLASH_EQ] = ACTIONS(6340), + [anon_sym_PERCENT_EQ] = ACTIONS(6340), + [anon_sym_PLUS_EQ] = ACTIONS(6340), + [anon_sym_DASH_EQ] = ACTIONS(6340), + [anon_sym_LT_LT_EQ] = ACTIONS(6340), + [anon_sym_GT_GT_EQ] = ACTIONS(6340), + [anon_sym_AMP_EQ] = ACTIONS(6340), + [anon_sym_CARET_EQ] = ACTIONS(6340), + [anon_sym_PIPE_EQ] = ACTIONS(6340), + [anon_sym_and_eq] = ACTIONS(6342), + [anon_sym_or_eq] = ACTIONS(6342), + [anon_sym_xor_eq] = ACTIONS(6342), + [anon_sym_LT_EQ_GT] = ACTIONS(6340), + [anon_sym_or] = ACTIONS(6342), + [anon_sym_and] = ACTIONS(6342), + [anon_sym_bitor] = ACTIONS(6342), + [anon_sym_xor] = ACTIONS(6342), + [anon_sym_bitand] = ACTIONS(6342), + [anon_sym_not_eq] = ACTIONS(6342), + [anon_sym_DASH_DASH] = ACTIONS(6340), + [anon_sym_PLUS_PLUS] = ACTIONS(6340), + [anon_sym_DOT] = ACTIONS(6342), + [anon_sym_DOT_STAR] = ACTIONS(6340), + [anon_sym_DASH_GT] = ACTIONS(6340), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6342), + [anon_sym_decltype] = ACTIONS(6342), + }, + [2395] = { + [ts_builtin_sym_end] = ACTIONS(6344), + [sym_identifier] = ACTIONS(6346), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6344), + [anon_sym_COMMA] = ACTIONS(6344), + [anon_sym_RPAREN] = ACTIONS(6344), + [aux_sym_preproc_if_token2] = ACTIONS(6344), + [aux_sym_preproc_else_token1] = ACTIONS(6344), + [aux_sym_preproc_elif_token1] = ACTIONS(6346), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6344), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6344), + [anon_sym_LPAREN2] = ACTIONS(6344), + [anon_sym_DASH] = ACTIONS(6346), + [anon_sym_PLUS] = ACTIONS(6346), + [anon_sym_STAR] = ACTIONS(6346), + [anon_sym_SLASH] = ACTIONS(6346), + [anon_sym_PERCENT] = ACTIONS(6346), + [anon_sym_PIPE_PIPE] = ACTIONS(6344), + [anon_sym_AMP_AMP] = ACTIONS(6344), + [anon_sym_PIPE] = ACTIONS(6346), + [anon_sym_CARET] = ACTIONS(6346), + [anon_sym_AMP] = ACTIONS(6346), + [anon_sym_EQ_EQ] = ACTIONS(6344), + [anon_sym_BANG_EQ] = ACTIONS(6344), + [anon_sym_GT] = ACTIONS(6346), + [anon_sym_GT_EQ] = ACTIONS(6344), + [anon_sym_LT_EQ] = ACTIONS(6346), + [anon_sym_LT] = ACTIONS(6346), + [anon_sym_LT_LT] = ACTIONS(6346), + [anon_sym_GT_GT] = ACTIONS(6346), + [anon_sym_SEMI] = ACTIONS(6344), + [anon_sym___attribute__] = ACTIONS(6346), + [anon_sym_LBRACE] = ACTIONS(6344), + [anon_sym_RBRACE] = ACTIONS(6344), + [anon_sym_LBRACK] = ACTIONS(6344), + [anon_sym_RBRACK] = ACTIONS(6344), + [anon_sym_EQ] = ACTIONS(6346), + [anon_sym_COLON] = ACTIONS(6344), + [anon_sym_QMARK] = ACTIONS(6344), + [anon_sym_STAR_EQ] = ACTIONS(6344), + [anon_sym_SLASH_EQ] = ACTIONS(6344), + [anon_sym_PERCENT_EQ] = ACTIONS(6344), + [anon_sym_PLUS_EQ] = ACTIONS(6344), + [anon_sym_DASH_EQ] = ACTIONS(6344), + [anon_sym_LT_LT_EQ] = ACTIONS(6344), + [anon_sym_GT_GT_EQ] = ACTIONS(6344), + [anon_sym_AMP_EQ] = ACTIONS(6344), + [anon_sym_CARET_EQ] = ACTIONS(6344), + [anon_sym_PIPE_EQ] = ACTIONS(6344), + [anon_sym_and_eq] = ACTIONS(6346), + [anon_sym_or_eq] = ACTIONS(6346), + [anon_sym_xor_eq] = ACTIONS(6346), + [anon_sym_LT_EQ_GT] = ACTIONS(6344), + [anon_sym_or] = ACTIONS(6346), + [anon_sym_and] = ACTIONS(6346), + [anon_sym_bitor] = ACTIONS(6346), + [anon_sym_xor] = ACTIONS(6346), + [anon_sym_bitand] = ACTIONS(6346), + [anon_sym_not_eq] = ACTIONS(6346), + [anon_sym_DASH_DASH] = ACTIONS(6344), + [anon_sym_PLUS_PLUS] = ACTIONS(6344), + [anon_sym_DOT] = ACTIONS(6346), + [anon_sym_DOT_STAR] = ACTIONS(6344), + [anon_sym_DASH_GT] = ACTIONS(6344), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6346), + [anon_sym_decltype] = ACTIONS(6346), + }, + [2396] = { + [sym_string_literal] = STATE(3858), + [sym_template_argument_list] = STATE(5271), + [sym_raw_string_literal] = STATE(3858), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4765), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4773), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4773), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4773), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(5465), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_EQ] = ACTIONS(5470), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(5472), + [anon_sym_SLASH_EQ] = ACTIONS(5472), + [anon_sym_PERCENT_EQ] = ACTIONS(5472), + [anon_sym_PLUS_EQ] = ACTIONS(5472), + [anon_sym_DASH_EQ] = ACTIONS(5472), + [anon_sym_LT_LT_EQ] = ACTIONS(5472), + [anon_sym_GT_GT_EQ] = ACTIONS(5470), + [anon_sym_AMP_EQ] = ACTIONS(5472), + [anon_sym_CARET_EQ] = ACTIONS(5472), + [anon_sym_PIPE_EQ] = ACTIONS(5472), + [anon_sym_and_eq] = ACTIONS(5472), + [anon_sym_or_eq] = ACTIONS(5472), + [anon_sym_xor_eq] = ACTIONS(5472), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4765), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4765), + [anon_sym_not_eq] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(5474), + [anon_sym_u_DQUOTE] = ACTIONS(5474), + [anon_sym_U_DQUOTE] = ACTIONS(5474), + [anon_sym_u8_DQUOTE] = ACTIONS(5474), + [anon_sym_DQUOTE] = ACTIONS(5474), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(4765), + [anon_sym_R_DQUOTE] = ACTIONS(5476), + [anon_sym_LR_DQUOTE] = ACTIONS(5476), + [anon_sym_uR_DQUOTE] = ACTIONS(5476), + [anon_sym_UR_DQUOTE] = ACTIONS(5476), + [anon_sym_u8R_DQUOTE] = ACTIONS(5476), + }, + [2397] = { + [sym_identifier] = ACTIONS(3587), + [aux_sym_preproc_def_token1] = ACTIONS(3587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3589), + [aux_sym_preproc_if_token1] = ACTIONS(3587), + [aux_sym_preproc_if_token2] = ACTIONS(3587), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3587), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3587), + [sym_preproc_directive] = ACTIONS(3587), + [anon_sym_LPAREN2] = ACTIONS(3589), + [anon_sym_TILDE] = ACTIONS(3589), + [anon_sym_STAR] = ACTIONS(3589), + [anon_sym_AMP_AMP] = ACTIONS(3589), + [anon_sym_AMP] = ACTIONS(3587), + [anon_sym___extension__] = ACTIONS(3587), + [anon_sym_typedef] = ACTIONS(3587), + [anon_sym_extern] = ACTIONS(3587), + [anon_sym___attribute__] = ACTIONS(3587), + [anon_sym_COLON_COLON] = ACTIONS(3589), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3589), + [anon_sym___declspec] = ACTIONS(3587), + [anon_sym___based] = ACTIONS(3587), + [anon_sym_signed] = ACTIONS(3587), + [anon_sym_unsigned] = ACTIONS(3587), + [anon_sym_long] = ACTIONS(3587), + [anon_sym_short] = ACTIONS(3587), + [anon_sym_LBRACK] = ACTIONS(3587), + [anon_sym_static] = ACTIONS(3587), + [anon_sym_register] = ACTIONS(3587), + [anon_sym_inline] = ACTIONS(3587), + [anon_sym___inline] = ACTIONS(3587), + [anon_sym___inline__] = ACTIONS(3587), + [anon_sym___forceinline] = ACTIONS(3587), + [anon_sym_thread_local] = ACTIONS(3587), + [anon_sym___thread] = ACTIONS(3587), + [anon_sym_const] = ACTIONS(3587), + [anon_sym_constexpr] = ACTIONS(3587), + [anon_sym_volatile] = ACTIONS(3587), + [anon_sym_restrict] = ACTIONS(3587), + [anon_sym___restrict__] = ACTIONS(3587), + [anon_sym__Atomic] = ACTIONS(3587), + [anon_sym__Noreturn] = ACTIONS(3587), + [anon_sym_noreturn] = ACTIONS(3587), + [anon_sym_mutable] = ACTIONS(3587), + [anon_sym_constinit] = ACTIONS(3587), + [anon_sym_consteval] = ACTIONS(3587), + [sym_primitive_type] = ACTIONS(3587), + [anon_sym_enum] = ACTIONS(3587), + [anon_sym_class] = ACTIONS(3587), + [anon_sym_struct] = ACTIONS(3587), + [anon_sym_union] = ACTIONS(3587), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3587), + [anon_sym_decltype] = ACTIONS(3587), + [anon_sym_virtual] = ACTIONS(3587), + [anon_sym_alignas] = ACTIONS(3587), + [anon_sym_explicit] = ACTIONS(3587), + [anon_sym_typename] = ACTIONS(3587), + [anon_sym_template] = ACTIONS(3587), + [anon_sym_operator] = ACTIONS(3587), + [anon_sym_friend] = ACTIONS(3587), + [anon_sym_public] = ACTIONS(3587), + [anon_sym_private] = ACTIONS(3587), + [anon_sym_protected] = ACTIONS(3587), + [anon_sym_using] = ACTIONS(3587), + [anon_sym_static_assert] = ACTIONS(3587), + [sym_semgrep_metavar] = ACTIONS(3589), + }, + [2398] = { + [sym_identifier] = ACTIONS(3668), + [aux_sym_preproc_def_token1] = ACTIONS(3668), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3670), + [aux_sym_preproc_if_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3668), + [anon_sym_LPAREN2] = ACTIONS(3670), + [anon_sym_TILDE] = ACTIONS(3670), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_AMP_AMP] = ACTIONS(3670), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym___extension__] = ACTIONS(3668), + [anon_sym_typedef] = ACTIONS(3668), + [anon_sym_extern] = ACTIONS(3668), + [anon_sym___attribute__] = ACTIONS(3668), + [anon_sym_COLON_COLON] = ACTIONS(3670), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3670), + [anon_sym___declspec] = ACTIONS(3668), + [anon_sym___based] = ACTIONS(3668), + [anon_sym_RBRACE] = ACTIONS(3670), + [anon_sym_signed] = ACTIONS(3668), + [anon_sym_unsigned] = ACTIONS(3668), + [anon_sym_long] = ACTIONS(3668), + [anon_sym_short] = ACTIONS(3668), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_static] = ACTIONS(3668), + [anon_sym_register] = ACTIONS(3668), + [anon_sym_inline] = ACTIONS(3668), + [anon_sym___inline] = ACTIONS(3668), + [anon_sym___inline__] = ACTIONS(3668), + [anon_sym___forceinline] = ACTIONS(3668), + [anon_sym_thread_local] = ACTIONS(3668), + [anon_sym___thread] = ACTIONS(3668), + [anon_sym_const] = ACTIONS(3668), + [anon_sym_constexpr] = ACTIONS(3668), + [anon_sym_volatile] = ACTIONS(3668), + [anon_sym_restrict] = ACTIONS(3668), + [anon_sym___restrict__] = ACTIONS(3668), + [anon_sym__Atomic] = ACTIONS(3668), + [anon_sym__Noreturn] = ACTIONS(3668), + [anon_sym_noreturn] = ACTIONS(3668), + [anon_sym_mutable] = ACTIONS(3668), + [anon_sym_constinit] = ACTIONS(3668), + [anon_sym_consteval] = ACTIONS(3668), + [sym_primitive_type] = ACTIONS(3668), + [anon_sym_enum] = ACTIONS(3668), + [anon_sym_class] = ACTIONS(3668), + [anon_sym_struct] = ACTIONS(3668), + [anon_sym_union] = ACTIONS(3668), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3668), + [anon_sym_decltype] = ACTIONS(3668), + [anon_sym_virtual] = ACTIONS(3668), + [anon_sym_alignas] = ACTIONS(3668), + [anon_sym_explicit] = ACTIONS(3668), + [anon_sym_typename] = ACTIONS(3668), + [anon_sym_template] = ACTIONS(3668), + [anon_sym_operator] = ACTIONS(3668), + [anon_sym_friend] = ACTIONS(3668), + [anon_sym_public] = ACTIONS(3668), + [anon_sym_private] = ACTIONS(3668), + [anon_sym_protected] = ACTIONS(3668), + [anon_sym_using] = ACTIONS(3668), + [anon_sym_static_assert] = ACTIONS(3668), + [sym_semgrep_metavar] = ACTIONS(3670), + }, + [2399] = { + [sym_identifier] = ACTIONS(5892), + [aux_sym_preproc_def_token1] = ACTIONS(5892), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5894), + [aux_sym_preproc_if_token1] = ACTIONS(5892), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5892), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5892), + [sym_preproc_directive] = ACTIONS(5892), + [anon_sym_LPAREN2] = ACTIONS(5894), + [anon_sym_TILDE] = ACTIONS(5894), + [anon_sym_STAR] = ACTIONS(5894), + [anon_sym_AMP_AMP] = ACTIONS(5894), + [anon_sym_AMP] = ACTIONS(5892), + [anon_sym___extension__] = ACTIONS(5892), + [anon_sym_typedef] = ACTIONS(5892), + [anon_sym_extern] = ACTIONS(5892), + [anon_sym___attribute__] = ACTIONS(5892), + [anon_sym_COLON_COLON] = ACTIONS(5894), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5894), + [anon_sym___declspec] = ACTIONS(5892), + [anon_sym___based] = ACTIONS(5892), + [anon_sym_RBRACE] = ACTIONS(5894), + [anon_sym_signed] = ACTIONS(5892), + [anon_sym_unsigned] = ACTIONS(5892), + [anon_sym_long] = ACTIONS(5892), + [anon_sym_short] = ACTIONS(5892), + [anon_sym_LBRACK] = ACTIONS(5892), + [anon_sym_static] = ACTIONS(5892), + [anon_sym_register] = ACTIONS(5892), + [anon_sym_inline] = ACTIONS(5892), + [anon_sym___inline] = ACTIONS(5892), + [anon_sym___inline__] = ACTIONS(5892), + [anon_sym___forceinline] = ACTIONS(5892), + [anon_sym_thread_local] = ACTIONS(5892), + [anon_sym___thread] = ACTIONS(5892), + [anon_sym_const] = ACTIONS(5892), + [anon_sym_constexpr] = ACTIONS(5892), + [anon_sym_volatile] = ACTIONS(5892), + [anon_sym_restrict] = ACTIONS(5892), + [anon_sym___restrict__] = ACTIONS(5892), + [anon_sym__Atomic] = ACTIONS(5892), + [anon_sym__Noreturn] = ACTIONS(5892), + [anon_sym_noreturn] = ACTIONS(5892), + [anon_sym_mutable] = ACTIONS(5892), + [anon_sym_constinit] = ACTIONS(5892), + [anon_sym_consteval] = ACTIONS(5892), + [sym_primitive_type] = ACTIONS(5892), + [anon_sym_enum] = ACTIONS(5892), + [anon_sym_class] = ACTIONS(5892), + [anon_sym_struct] = ACTIONS(5892), + [anon_sym_union] = ACTIONS(5892), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5892), + [anon_sym_decltype] = ACTIONS(5892), + [anon_sym_virtual] = ACTIONS(5892), + [anon_sym_alignas] = ACTIONS(5892), + [anon_sym_explicit] = ACTIONS(5892), + [anon_sym_typename] = ACTIONS(5892), + [anon_sym_template] = ACTIONS(5892), + [anon_sym_operator] = ACTIONS(5892), + [anon_sym_friend] = ACTIONS(5892), + [anon_sym_public] = ACTIONS(5892), + [anon_sym_private] = ACTIONS(5892), + [anon_sym_protected] = ACTIONS(5892), + [anon_sym_using] = ACTIONS(5892), + [anon_sym_static_assert] = ACTIONS(5892), + [sym_semgrep_metavar] = ACTIONS(5894), + }, + [2400] = { + [sym_identifier] = ACTIONS(3593), + [aux_sym_preproc_def_token1] = ACTIONS(3593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3595), + [aux_sym_preproc_if_token1] = ACTIONS(3593), + [aux_sym_preproc_if_token2] = ACTIONS(3593), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3593), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3593), + [sym_preproc_directive] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(3595), + [anon_sym_STAR] = ACTIONS(3595), + [anon_sym_AMP_AMP] = ACTIONS(3595), + [anon_sym_AMP] = ACTIONS(3593), + [anon_sym___extension__] = ACTIONS(3593), + [anon_sym_typedef] = ACTIONS(3593), + [anon_sym_extern] = ACTIONS(3593), + [anon_sym___attribute__] = ACTIONS(3593), + [anon_sym_COLON_COLON] = ACTIONS(3595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3595), + [anon_sym___declspec] = ACTIONS(3593), + [anon_sym___based] = ACTIONS(3593), + [anon_sym_signed] = ACTIONS(3593), + [anon_sym_unsigned] = ACTIONS(3593), + [anon_sym_long] = ACTIONS(3593), + [anon_sym_short] = ACTIONS(3593), + [anon_sym_LBRACK] = ACTIONS(3593), + [anon_sym_static] = ACTIONS(3593), + [anon_sym_register] = ACTIONS(3593), + [anon_sym_inline] = ACTIONS(3593), + [anon_sym___inline] = ACTIONS(3593), + [anon_sym___inline__] = ACTIONS(3593), + [anon_sym___forceinline] = ACTIONS(3593), + [anon_sym_thread_local] = ACTIONS(3593), + [anon_sym___thread] = ACTIONS(3593), + [anon_sym_const] = ACTIONS(3593), + [anon_sym_constexpr] = ACTIONS(3593), + [anon_sym_volatile] = ACTIONS(3593), + [anon_sym_restrict] = ACTIONS(3593), + [anon_sym___restrict__] = ACTIONS(3593), + [anon_sym__Atomic] = ACTIONS(3593), + [anon_sym__Noreturn] = ACTIONS(3593), + [anon_sym_noreturn] = ACTIONS(3593), + [anon_sym_mutable] = ACTIONS(3593), + [anon_sym_constinit] = ACTIONS(3593), + [anon_sym_consteval] = ACTIONS(3593), + [sym_primitive_type] = ACTIONS(3593), + [anon_sym_enum] = ACTIONS(3593), + [anon_sym_class] = ACTIONS(3593), + [anon_sym_struct] = ACTIONS(3593), + [anon_sym_union] = ACTIONS(3593), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3593), + [anon_sym_decltype] = ACTIONS(3593), + [anon_sym_virtual] = ACTIONS(3593), + [anon_sym_alignas] = ACTIONS(3593), + [anon_sym_explicit] = ACTIONS(3593), + [anon_sym_typename] = ACTIONS(3593), + [anon_sym_template] = ACTIONS(3593), + [anon_sym_operator] = ACTIONS(3593), + [anon_sym_friend] = ACTIONS(3593), + [anon_sym_public] = ACTIONS(3593), + [anon_sym_private] = ACTIONS(3593), + [anon_sym_protected] = ACTIONS(3593), + [anon_sym_using] = ACTIONS(3593), + [anon_sym_static_assert] = ACTIONS(3593), + [sym_semgrep_metavar] = ACTIONS(3595), + }, + [2401] = { + [sym_identifier] = ACTIONS(3672), + [aux_sym_preproc_def_token1] = ACTIONS(3672), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3674), + [aux_sym_preproc_if_token1] = ACTIONS(3672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3672), + [sym_preproc_directive] = ACTIONS(3672), + [anon_sym_LPAREN2] = ACTIONS(3674), + [anon_sym_TILDE] = ACTIONS(3674), + [anon_sym_STAR] = ACTIONS(3674), + [anon_sym_AMP_AMP] = ACTIONS(3674), + [anon_sym_AMP] = ACTIONS(3672), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3672), + [anon_sym_extern] = ACTIONS(3672), + [anon_sym___attribute__] = ACTIONS(3672), + [anon_sym_COLON_COLON] = ACTIONS(3674), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3674), + [anon_sym___declspec] = ACTIONS(3672), + [anon_sym___based] = ACTIONS(3672), + [anon_sym_RBRACE] = ACTIONS(3674), + [anon_sym_signed] = ACTIONS(3672), + [anon_sym_unsigned] = ACTIONS(3672), + [anon_sym_long] = ACTIONS(3672), + [anon_sym_short] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_static] = ACTIONS(3672), + [anon_sym_register] = ACTIONS(3672), + [anon_sym_inline] = ACTIONS(3672), + [anon_sym___inline] = ACTIONS(3672), + [anon_sym___inline__] = ACTIONS(3672), + [anon_sym___forceinline] = ACTIONS(3672), + [anon_sym_thread_local] = ACTIONS(3672), + [anon_sym___thread] = ACTIONS(3672), + [anon_sym_const] = ACTIONS(3672), + [anon_sym_constexpr] = ACTIONS(3672), + [anon_sym_volatile] = ACTIONS(3672), + [anon_sym_restrict] = ACTIONS(3672), + [anon_sym___restrict__] = ACTIONS(3672), + [anon_sym__Atomic] = ACTIONS(3672), + [anon_sym__Noreturn] = ACTIONS(3672), + [anon_sym_noreturn] = ACTIONS(3672), + [anon_sym_mutable] = ACTIONS(3672), + [anon_sym_constinit] = ACTIONS(3672), + [anon_sym_consteval] = ACTIONS(3672), + [sym_primitive_type] = ACTIONS(3672), + [anon_sym_enum] = ACTIONS(3672), + [anon_sym_class] = ACTIONS(3672), + [anon_sym_struct] = ACTIONS(3672), + [anon_sym_union] = ACTIONS(3672), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3672), + [anon_sym_decltype] = ACTIONS(3672), + [anon_sym_virtual] = ACTIONS(3672), + [anon_sym_alignas] = ACTIONS(3672), + [anon_sym_explicit] = ACTIONS(3672), + [anon_sym_typename] = ACTIONS(3672), + [anon_sym_template] = ACTIONS(3672), + [anon_sym_operator] = ACTIONS(3672), + [anon_sym_friend] = ACTIONS(3672), + [anon_sym_public] = ACTIONS(3672), + [anon_sym_private] = ACTIONS(3672), + [anon_sym_protected] = ACTIONS(3672), + [anon_sym_using] = ACTIONS(3672), + [anon_sym_static_assert] = ACTIONS(3672), + [sym_semgrep_metavar] = ACTIONS(3674), + }, + [2402] = { + [sym_identifier] = ACTIONS(5900), + [aux_sym_preproc_def_token1] = ACTIONS(5900), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5902), + [aux_sym_preproc_if_token1] = ACTIONS(5900), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5900), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5900), + [sym_preproc_directive] = ACTIONS(5900), + [anon_sym_LPAREN2] = ACTIONS(5902), + [anon_sym_TILDE] = ACTIONS(5902), + [anon_sym_STAR] = ACTIONS(5902), + [anon_sym_AMP_AMP] = ACTIONS(5902), + [anon_sym_AMP] = ACTIONS(5900), + [anon_sym___extension__] = ACTIONS(5900), + [anon_sym_typedef] = ACTIONS(5900), + [anon_sym_extern] = ACTIONS(5900), + [anon_sym___attribute__] = ACTIONS(5900), + [anon_sym_COLON_COLON] = ACTIONS(5902), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5902), + [anon_sym___declspec] = ACTIONS(5900), + [anon_sym___based] = ACTIONS(5900), + [anon_sym_RBRACE] = ACTIONS(5902), + [anon_sym_signed] = ACTIONS(5900), + [anon_sym_unsigned] = ACTIONS(5900), + [anon_sym_long] = ACTIONS(5900), + [anon_sym_short] = ACTIONS(5900), + [anon_sym_LBRACK] = ACTIONS(5900), + [anon_sym_static] = ACTIONS(5900), + [anon_sym_register] = ACTIONS(5900), + [anon_sym_inline] = ACTIONS(5900), + [anon_sym___inline] = ACTIONS(5900), + [anon_sym___inline__] = ACTIONS(5900), + [anon_sym___forceinline] = ACTIONS(5900), + [anon_sym_thread_local] = ACTIONS(5900), + [anon_sym___thread] = ACTIONS(5900), + [anon_sym_const] = ACTIONS(5900), + [anon_sym_constexpr] = ACTIONS(5900), + [anon_sym_volatile] = ACTIONS(5900), + [anon_sym_restrict] = ACTIONS(5900), + [anon_sym___restrict__] = ACTIONS(5900), + [anon_sym__Atomic] = ACTIONS(5900), + [anon_sym__Noreturn] = ACTIONS(5900), + [anon_sym_noreturn] = ACTIONS(5900), + [anon_sym_mutable] = ACTIONS(5900), + [anon_sym_constinit] = ACTIONS(5900), + [anon_sym_consteval] = ACTIONS(5900), + [sym_primitive_type] = ACTIONS(5900), + [anon_sym_enum] = ACTIONS(5900), + [anon_sym_class] = ACTIONS(5900), + [anon_sym_struct] = ACTIONS(5900), + [anon_sym_union] = ACTIONS(5900), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5900), + [anon_sym_decltype] = ACTIONS(5900), + [anon_sym_virtual] = ACTIONS(5900), + [anon_sym_alignas] = ACTIONS(5900), + [anon_sym_explicit] = ACTIONS(5900), + [anon_sym_typename] = ACTIONS(5900), + [anon_sym_template] = ACTIONS(5900), + [anon_sym_operator] = ACTIONS(5900), + [anon_sym_friend] = ACTIONS(5900), + [anon_sym_public] = ACTIONS(5900), + [anon_sym_private] = ACTIONS(5900), + [anon_sym_protected] = ACTIONS(5900), + [anon_sym_using] = ACTIONS(5900), + [anon_sym_static_assert] = ACTIONS(5900), + [sym_semgrep_metavar] = ACTIONS(5902), + }, + [2403] = { + [sym_identifier] = ACTIONS(3631), + [aux_sym_preproc_def_token1] = ACTIONS(3631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3633), + [aux_sym_preproc_if_token1] = ACTIONS(3631), + [aux_sym_preproc_if_token2] = ACTIONS(3631), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3631), + [sym_preproc_directive] = ACTIONS(3631), + [anon_sym_LPAREN2] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_STAR] = ACTIONS(3633), + [anon_sym_AMP_AMP] = ACTIONS(3633), + [anon_sym_AMP] = ACTIONS(3631), + [anon_sym___extension__] = ACTIONS(3631), + [anon_sym_typedef] = ACTIONS(3631), + [anon_sym_extern] = ACTIONS(3631), + [anon_sym___attribute__] = ACTIONS(3631), + [anon_sym_COLON_COLON] = ACTIONS(3633), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3633), + [anon_sym___declspec] = ACTIONS(3631), + [anon_sym___based] = ACTIONS(3631), + [anon_sym_signed] = ACTIONS(3631), + [anon_sym_unsigned] = ACTIONS(3631), + [anon_sym_long] = ACTIONS(3631), + [anon_sym_short] = ACTIONS(3631), + [anon_sym_LBRACK] = ACTIONS(3631), + [anon_sym_static] = ACTIONS(3631), + [anon_sym_register] = ACTIONS(3631), + [anon_sym_inline] = ACTIONS(3631), + [anon_sym___inline] = ACTIONS(3631), + [anon_sym___inline__] = ACTIONS(3631), + [anon_sym___forceinline] = ACTIONS(3631), + [anon_sym_thread_local] = ACTIONS(3631), + [anon_sym___thread] = ACTIONS(3631), + [anon_sym_const] = ACTIONS(3631), + [anon_sym_constexpr] = ACTIONS(3631), + [anon_sym_volatile] = ACTIONS(3631), + [anon_sym_restrict] = ACTIONS(3631), + [anon_sym___restrict__] = ACTIONS(3631), + [anon_sym__Atomic] = ACTIONS(3631), + [anon_sym__Noreturn] = ACTIONS(3631), + [anon_sym_noreturn] = ACTIONS(3631), + [anon_sym_mutable] = ACTIONS(3631), + [anon_sym_constinit] = ACTIONS(3631), + [anon_sym_consteval] = ACTIONS(3631), + [sym_primitive_type] = ACTIONS(3631), + [anon_sym_enum] = ACTIONS(3631), + [anon_sym_class] = ACTIONS(3631), + [anon_sym_struct] = ACTIONS(3631), + [anon_sym_union] = ACTIONS(3631), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3631), + [anon_sym_decltype] = ACTIONS(3631), + [anon_sym_virtual] = ACTIONS(3631), + [anon_sym_alignas] = ACTIONS(3631), + [anon_sym_explicit] = ACTIONS(3631), + [anon_sym_typename] = ACTIONS(3631), + [anon_sym_template] = ACTIONS(3631), + [anon_sym_operator] = ACTIONS(3631), + [anon_sym_friend] = ACTIONS(3631), + [anon_sym_public] = ACTIONS(3631), + [anon_sym_private] = ACTIONS(3631), + [anon_sym_protected] = ACTIONS(3631), + [anon_sym_using] = ACTIONS(3631), + [anon_sym_static_assert] = ACTIONS(3631), + [sym_semgrep_metavar] = ACTIONS(3633), + }, + [2404] = { + [ts_builtin_sym_end] = ACTIONS(6348), + [sym_identifier] = ACTIONS(6350), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6348), + [anon_sym_COMMA] = ACTIONS(6348), + [anon_sym_RPAREN] = ACTIONS(6348), + [aux_sym_preproc_if_token2] = ACTIONS(6348), + [aux_sym_preproc_else_token1] = ACTIONS(6348), + [aux_sym_preproc_elif_token1] = ACTIONS(6350), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6348), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6348), + [anon_sym_LPAREN2] = ACTIONS(6348), + [anon_sym_DASH] = ACTIONS(6350), + [anon_sym_PLUS] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(6350), + [anon_sym_SLASH] = ACTIONS(6350), + [anon_sym_PERCENT] = ACTIONS(6350), + [anon_sym_PIPE_PIPE] = ACTIONS(6348), + [anon_sym_AMP_AMP] = ACTIONS(6348), + [anon_sym_PIPE] = ACTIONS(6350), + [anon_sym_CARET] = ACTIONS(6350), + [anon_sym_AMP] = ACTIONS(6350), + [anon_sym_EQ_EQ] = ACTIONS(6348), + [anon_sym_BANG_EQ] = ACTIONS(6348), + [anon_sym_GT] = ACTIONS(6350), + [anon_sym_GT_EQ] = ACTIONS(6348), + [anon_sym_LT_EQ] = ACTIONS(6350), + [anon_sym_LT] = ACTIONS(6350), + [anon_sym_LT_LT] = ACTIONS(6350), + [anon_sym_GT_GT] = ACTIONS(6350), + [anon_sym_SEMI] = ACTIONS(6348), + [anon_sym___attribute__] = ACTIONS(6350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6348), + [anon_sym_LBRACE] = ACTIONS(6348), + [anon_sym_RBRACE] = ACTIONS(6348), + [anon_sym_LBRACK] = ACTIONS(6350), + [anon_sym_RBRACK] = ACTIONS(6348), + [anon_sym_EQ] = ACTIONS(6350), + [anon_sym_COLON] = ACTIONS(6348), + [anon_sym_QMARK] = ACTIONS(6348), + [anon_sym_STAR_EQ] = ACTIONS(6348), + [anon_sym_SLASH_EQ] = ACTIONS(6348), + [anon_sym_PERCENT_EQ] = ACTIONS(6348), + [anon_sym_PLUS_EQ] = ACTIONS(6348), + [anon_sym_DASH_EQ] = ACTIONS(6348), + [anon_sym_LT_LT_EQ] = ACTIONS(6348), + [anon_sym_GT_GT_EQ] = ACTIONS(6348), + [anon_sym_AMP_EQ] = ACTIONS(6348), + [anon_sym_CARET_EQ] = ACTIONS(6348), + [anon_sym_PIPE_EQ] = ACTIONS(6348), + [anon_sym_and_eq] = ACTIONS(6350), + [anon_sym_or_eq] = ACTIONS(6350), + [anon_sym_xor_eq] = ACTIONS(6350), + [anon_sym_LT_EQ_GT] = ACTIONS(6348), + [anon_sym_or] = ACTIONS(6350), + [anon_sym_and] = ACTIONS(6350), + [anon_sym_bitor] = ACTIONS(6350), + [anon_sym_xor] = ACTIONS(6350), + [anon_sym_bitand] = ACTIONS(6350), + [anon_sym_not_eq] = ACTIONS(6350), + [anon_sym_DASH_DASH] = ACTIONS(6348), + [anon_sym_PLUS_PLUS] = ACTIONS(6348), + [anon_sym_DOT] = ACTIONS(6350), + [anon_sym_DOT_STAR] = ACTIONS(6348), + [anon_sym_DASH_GT] = ACTIONS(6348), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(6350), + }, + [2405] = { + [ts_builtin_sym_end] = ACTIONS(6352), + [sym_identifier] = ACTIONS(6354), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6352), + [anon_sym_COMMA] = ACTIONS(6352), + [anon_sym_RPAREN] = ACTIONS(6352), + [aux_sym_preproc_if_token2] = ACTIONS(6352), + [aux_sym_preproc_else_token1] = ACTIONS(6352), + [aux_sym_preproc_elif_token1] = ACTIONS(6354), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6352), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6352), + [anon_sym_LPAREN2] = ACTIONS(6352), + [anon_sym_DASH] = ACTIONS(6354), + [anon_sym_PLUS] = ACTIONS(6354), + [anon_sym_STAR] = ACTIONS(6354), + [anon_sym_SLASH] = ACTIONS(6354), + [anon_sym_PERCENT] = ACTIONS(6354), + [anon_sym_PIPE_PIPE] = ACTIONS(6352), + [anon_sym_AMP_AMP] = ACTIONS(6352), + [anon_sym_PIPE] = ACTIONS(6354), + [anon_sym_CARET] = ACTIONS(6354), + [anon_sym_AMP] = ACTIONS(6354), + [anon_sym_EQ_EQ] = ACTIONS(6352), + [anon_sym_BANG_EQ] = ACTIONS(6352), + [anon_sym_GT] = ACTIONS(6354), + [anon_sym_GT_EQ] = ACTIONS(6352), + [anon_sym_LT_EQ] = ACTIONS(6354), + [anon_sym_LT] = ACTIONS(6354), + [anon_sym_LT_LT] = ACTIONS(6354), + [anon_sym_GT_GT] = ACTIONS(6354), + [anon_sym_SEMI] = ACTIONS(6352), + [anon_sym___attribute__] = ACTIONS(6354), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6352), + [anon_sym_LBRACE] = ACTIONS(6352), + [anon_sym_RBRACE] = ACTIONS(6352), + [anon_sym_LBRACK] = ACTIONS(6354), + [anon_sym_RBRACK] = ACTIONS(6352), + [anon_sym_EQ] = ACTIONS(6354), + [anon_sym_COLON] = ACTIONS(6352), + [anon_sym_QMARK] = ACTIONS(6352), + [anon_sym_STAR_EQ] = ACTIONS(6352), + [anon_sym_SLASH_EQ] = ACTIONS(6352), + [anon_sym_PERCENT_EQ] = ACTIONS(6352), + [anon_sym_PLUS_EQ] = ACTIONS(6352), + [anon_sym_DASH_EQ] = ACTIONS(6352), + [anon_sym_LT_LT_EQ] = ACTIONS(6352), + [anon_sym_GT_GT_EQ] = ACTIONS(6352), + [anon_sym_AMP_EQ] = ACTIONS(6352), + [anon_sym_CARET_EQ] = ACTIONS(6352), + [anon_sym_PIPE_EQ] = ACTIONS(6352), + [anon_sym_and_eq] = ACTIONS(6354), + [anon_sym_or_eq] = ACTIONS(6354), + [anon_sym_xor_eq] = ACTIONS(6354), + [anon_sym_LT_EQ_GT] = ACTIONS(6352), + [anon_sym_or] = ACTIONS(6354), + [anon_sym_and] = ACTIONS(6354), + [anon_sym_bitor] = ACTIONS(6354), + [anon_sym_xor] = ACTIONS(6354), + [anon_sym_bitand] = ACTIONS(6354), + [anon_sym_not_eq] = ACTIONS(6354), + [anon_sym_DASH_DASH] = ACTIONS(6352), + [anon_sym_PLUS_PLUS] = ACTIONS(6352), + [anon_sym_DOT] = ACTIONS(6354), + [anon_sym_DOT_STAR] = ACTIONS(6352), + [anon_sym_DASH_GT] = ACTIONS(6352), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(6354), + }, + [2406] = { + [sym_identifier] = ACTIONS(3657), + [aux_sym_preproc_def_token1] = ACTIONS(3657), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3659), + [aux_sym_preproc_if_token1] = ACTIONS(3657), + [aux_sym_preproc_if_token2] = ACTIONS(3657), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3657), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3657), + [sym_preproc_directive] = ACTIONS(3657), + [anon_sym_LPAREN2] = ACTIONS(3659), + [anon_sym_TILDE] = ACTIONS(3659), + [anon_sym_STAR] = ACTIONS(3659), + [anon_sym_AMP_AMP] = ACTIONS(3659), + [anon_sym_AMP] = ACTIONS(3657), + [anon_sym___extension__] = ACTIONS(3657), + [anon_sym_typedef] = ACTIONS(3657), + [anon_sym_extern] = ACTIONS(3657), + [anon_sym___attribute__] = ACTIONS(3657), + [anon_sym_COLON_COLON] = ACTIONS(3659), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3659), + [anon_sym___declspec] = ACTIONS(3657), + [anon_sym___based] = ACTIONS(3657), + [anon_sym_signed] = ACTIONS(3657), + [anon_sym_unsigned] = ACTIONS(3657), + [anon_sym_long] = ACTIONS(3657), + [anon_sym_short] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_static] = ACTIONS(3657), + [anon_sym_register] = ACTIONS(3657), + [anon_sym_inline] = ACTIONS(3657), + [anon_sym___inline] = ACTIONS(3657), + [anon_sym___inline__] = ACTIONS(3657), + [anon_sym___forceinline] = ACTIONS(3657), + [anon_sym_thread_local] = ACTIONS(3657), + [anon_sym___thread] = ACTIONS(3657), + [anon_sym_const] = ACTIONS(3657), + [anon_sym_constexpr] = ACTIONS(3657), + [anon_sym_volatile] = ACTIONS(3657), + [anon_sym_restrict] = ACTIONS(3657), + [anon_sym___restrict__] = ACTIONS(3657), + [anon_sym__Atomic] = ACTIONS(3657), + [anon_sym__Noreturn] = ACTIONS(3657), + [anon_sym_noreturn] = ACTIONS(3657), + [anon_sym_mutable] = ACTIONS(3657), + [anon_sym_constinit] = ACTIONS(3657), + [anon_sym_consteval] = ACTIONS(3657), + [sym_primitive_type] = ACTIONS(3657), + [anon_sym_enum] = ACTIONS(3657), + [anon_sym_class] = ACTIONS(3657), + [anon_sym_struct] = ACTIONS(3657), + [anon_sym_union] = ACTIONS(3657), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3657), + [anon_sym_decltype] = ACTIONS(3657), + [anon_sym_virtual] = ACTIONS(3657), + [anon_sym_alignas] = ACTIONS(3657), + [anon_sym_explicit] = ACTIONS(3657), + [anon_sym_typename] = ACTIONS(3657), + [anon_sym_template] = ACTIONS(3657), + [anon_sym_operator] = ACTIONS(3657), + [anon_sym_friend] = ACTIONS(3657), + [anon_sym_public] = ACTIONS(3657), + [anon_sym_private] = ACTIONS(3657), + [anon_sym_protected] = ACTIONS(3657), + [anon_sym_using] = ACTIONS(3657), + [anon_sym_static_assert] = ACTIONS(3657), + [sym_semgrep_metavar] = ACTIONS(3659), + }, + [2407] = { + [sym_string_literal] = STATE(2267), + [sym_raw_string_literal] = STATE(2267), + [aux_sym_concatenated_string_repeat1] = STATE(2267), + [sym_identifier] = ACTIONS(6356), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5556), + [anon_sym_COMMA] = ACTIONS(5556), + [anon_sym_LPAREN2] = ACTIONS(5556), + [anon_sym_DASH] = ACTIONS(5560), + [anon_sym_PLUS] = ACTIONS(5560), + [anon_sym_STAR] = ACTIONS(5560), + [anon_sym_SLASH] = ACTIONS(5560), + [anon_sym_PERCENT] = ACTIONS(5560), + [anon_sym_PIPE_PIPE] = ACTIONS(5556), + [anon_sym_AMP_AMP] = ACTIONS(5556), + [anon_sym_PIPE] = ACTIONS(5560), + [anon_sym_CARET] = ACTIONS(5560), + [anon_sym_AMP] = ACTIONS(5560), + [anon_sym_EQ_EQ] = ACTIONS(5556), + [anon_sym_BANG_EQ] = ACTIONS(5556), + [anon_sym_GT] = ACTIONS(5560), + [anon_sym_GT_EQ] = ACTIONS(5560), + [anon_sym_LT_EQ] = ACTIONS(5560), + [anon_sym_LT] = ACTIONS(5560), + [anon_sym_LT_LT] = ACTIONS(5560), + [anon_sym_GT_GT] = ACTIONS(5560), + [anon_sym_LBRACK] = ACTIONS(5556), + [anon_sym_EQ] = ACTIONS(5560), + [anon_sym_QMARK] = ACTIONS(5556), + [anon_sym_STAR_EQ] = ACTIONS(5556), + [anon_sym_SLASH_EQ] = ACTIONS(5556), + [anon_sym_PERCENT_EQ] = ACTIONS(5556), + [anon_sym_PLUS_EQ] = ACTIONS(5556), + [anon_sym_DASH_EQ] = ACTIONS(5556), + [anon_sym_LT_LT_EQ] = ACTIONS(5556), + [anon_sym_GT_GT_EQ] = ACTIONS(5560), + [anon_sym_AMP_EQ] = ACTIONS(5556), + [anon_sym_CARET_EQ] = ACTIONS(5556), + [anon_sym_PIPE_EQ] = ACTIONS(5556), + [anon_sym_and_eq] = ACTIONS(5560), + [anon_sym_or_eq] = ACTIONS(5560), + [anon_sym_xor_eq] = ACTIONS(5560), + [anon_sym_LT_EQ_GT] = ACTIONS(5556), + [anon_sym_or] = ACTIONS(5560), + [anon_sym_and] = ACTIONS(5560), + [anon_sym_bitor] = ACTIONS(5560), + [anon_sym_xor] = ACTIONS(5560), + [anon_sym_bitand] = ACTIONS(5560), + [anon_sym_not_eq] = ACTIONS(5560), + [anon_sym_DASH_DASH] = ACTIONS(5556), + [anon_sym_PLUS_PLUS] = ACTIONS(5556), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_DOT_STAR] = ACTIONS(5556), + [anon_sym_DASH_GT] = ACTIONS(5556), + [anon_sym_L_DQUOTE] = ACTIONS(6304), + [anon_sym_u_DQUOTE] = ACTIONS(6304), + [anon_sym_U_DQUOTE] = ACTIONS(6304), + [anon_sym_u8_DQUOTE] = ACTIONS(6304), + [anon_sym_DQUOTE] = ACTIONS(6304), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(5556), + [anon_sym_R_DQUOTE] = ACTIONS(6306), + [anon_sym_LR_DQUOTE] = ACTIONS(6306), + [anon_sym_uR_DQUOTE] = ACTIONS(6306), + [anon_sym_UR_DQUOTE] = ACTIONS(6306), + [anon_sym_u8R_DQUOTE] = ACTIONS(6306), + [sym_literal_suffix] = ACTIONS(5560), + }, + [2408] = { + [sym_identifier] = ACTIONS(3581), + [aux_sym_preproc_def_token1] = ACTIONS(3581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3583), + [aux_sym_preproc_if_token1] = ACTIONS(3581), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3581), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3581), + [sym_preproc_directive] = ACTIONS(3581), + [anon_sym_LPAREN2] = ACTIONS(3583), + [anon_sym_TILDE] = ACTIONS(3583), + [anon_sym_STAR] = ACTIONS(3583), + [anon_sym_AMP_AMP] = ACTIONS(3583), + [anon_sym_AMP] = ACTIONS(3581), + [anon_sym___extension__] = ACTIONS(3581), + [anon_sym_typedef] = ACTIONS(3581), + [anon_sym_extern] = ACTIONS(3581), + [anon_sym___attribute__] = ACTIONS(3581), + [anon_sym_COLON_COLON] = ACTIONS(3583), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3583), + [anon_sym___declspec] = ACTIONS(3581), + [anon_sym___based] = ACTIONS(3581), + [anon_sym_RBRACE] = ACTIONS(3583), + [anon_sym_signed] = ACTIONS(3581), + [anon_sym_unsigned] = ACTIONS(3581), + [anon_sym_long] = ACTIONS(3581), + [anon_sym_short] = ACTIONS(3581), + [anon_sym_LBRACK] = ACTIONS(3581), + [anon_sym_static] = ACTIONS(3581), + [anon_sym_register] = ACTIONS(3581), + [anon_sym_inline] = ACTIONS(3581), + [anon_sym___inline] = ACTIONS(3581), + [anon_sym___inline__] = ACTIONS(3581), + [anon_sym___forceinline] = ACTIONS(3581), + [anon_sym_thread_local] = ACTIONS(3581), + [anon_sym___thread] = ACTIONS(3581), + [anon_sym_const] = ACTIONS(3581), + [anon_sym_constexpr] = ACTIONS(3581), + [anon_sym_volatile] = ACTIONS(3581), + [anon_sym_restrict] = ACTIONS(3581), + [anon_sym___restrict__] = ACTIONS(3581), + [anon_sym__Atomic] = ACTIONS(3581), + [anon_sym__Noreturn] = ACTIONS(3581), + [anon_sym_noreturn] = ACTIONS(3581), + [anon_sym_mutable] = ACTIONS(3581), + [anon_sym_constinit] = ACTIONS(3581), + [anon_sym_consteval] = ACTIONS(3581), + [sym_primitive_type] = ACTIONS(3581), + [anon_sym_enum] = ACTIONS(3581), + [anon_sym_class] = ACTIONS(3581), + [anon_sym_struct] = ACTIONS(3581), + [anon_sym_union] = ACTIONS(3581), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3581), + [anon_sym_decltype] = ACTIONS(3581), + [anon_sym_virtual] = ACTIONS(3581), + [anon_sym_alignas] = ACTIONS(3581), + [anon_sym_explicit] = ACTIONS(3581), + [anon_sym_typename] = ACTIONS(3581), + [anon_sym_template] = ACTIONS(3581), + [anon_sym_operator] = ACTIONS(3581), + [anon_sym_friend] = ACTIONS(3581), + [anon_sym_public] = ACTIONS(3581), + [anon_sym_private] = ACTIONS(3581), + [anon_sym_protected] = ACTIONS(3581), + [anon_sym_using] = ACTIONS(3581), + [anon_sym_static_assert] = ACTIONS(3581), + [sym_semgrep_metavar] = ACTIONS(3583), + }, + [2409] = { + [sym_attribute_declaration] = STATE(2409), + [aux_sym_attributed_declarator_repeat1] = STATE(2409), + [ts_builtin_sym_end] = ACTIONS(6358), + [sym_identifier] = ACTIONS(6360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6358), + [anon_sym_COMMA] = ACTIONS(6358), + [anon_sym_RPAREN] = ACTIONS(6358), + [aux_sym_preproc_if_token2] = ACTIONS(6358), + [aux_sym_preproc_else_token1] = ACTIONS(6358), + [aux_sym_preproc_elif_token1] = ACTIONS(6360), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6358), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6358), + [anon_sym_LPAREN2] = ACTIONS(6358), + [anon_sym_DASH] = ACTIONS(6360), + [anon_sym_PLUS] = ACTIONS(6360), + [anon_sym_STAR] = ACTIONS(6360), + [anon_sym_SLASH] = ACTIONS(6360), + [anon_sym_PERCENT] = ACTIONS(6360), + [anon_sym_PIPE_PIPE] = ACTIONS(6358), + [anon_sym_AMP_AMP] = ACTIONS(6358), + [anon_sym_PIPE] = ACTIONS(6360), + [anon_sym_CARET] = ACTIONS(6360), + [anon_sym_AMP] = ACTIONS(6360), + [anon_sym_EQ_EQ] = ACTIONS(6358), + [anon_sym_BANG_EQ] = ACTIONS(6358), + [anon_sym_GT] = ACTIONS(6360), + [anon_sym_GT_EQ] = ACTIONS(6358), + [anon_sym_LT_EQ] = ACTIONS(6360), + [anon_sym_LT] = ACTIONS(6360), + [anon_sym_LT_LT] = ACTIONS(6360), + [anon_sym_GT_GT] = ACTIONS(6360), + [anon_sym_SEMI] = ACTIONS(6358), + [anon_sym___attribute__] = ACTIONS(6360), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6362), + [anon_sym_RBRACE] = ACTIONS(6358), + [anon_sym_LBRACK] = ACTIONS(6360), + [anon_sym_RBRACK] = ACTIONS(6358), + [anon_sym_EQ] = ACTIONS(6360), + [anon_sym_COLON] = ACTIONS(6358), + [anon_sym_QMARK] = ACTIONS(6358), + [anon_sym_STAR_EQ] = ACTIONS(6358), + [anon_sym_SLASH_EQ] = ACTIONS(6358), + [anon_sym_PERCENT_EQ] = ACTIONS(6358), + [anon_sym_PLUS_EQ] = ACTIONS(6358), + [anon_sym_DASH_EQ] = ACTIONS(6358), + [anon_sym_LT_LT_EQ] = ACTIONS(6358), + [anon_sym_GT_GT_EQ] = ACTIONS(6358), + [anon_sym_AMP_EQ] = ACTIONS(6358), + [anon_sym_CARET_EQ] = ACTIONS(6358), + [anon_sym_PIPE_EQ] = ACTIONS(6358), + [anon_sym_and_eq] = ACTIONS(6360), + [anon_sym_or_eq] = ACTIONS(6360), + [anon_sym_xor_eq] = ACTIONS(6360), + [anon_sym_LT_EQ_GT] = ACTIONS(6358), + [anon_sym_or] = ACTIONS(6360), + [anon_sym_and] = ACTIONS(6360), + [anon_sym_bitor] = ACTIONS(6360), + [anon_sym_xor] = ACTIONS(6360), + [anon_sym_bitand] = ACTIONS(6360), + [anon_sym_not_eq] = ACTIONS(6360), + [anon_sym_DASH_DASH] = ACTIONS(6358), + [anon_sym_PLUS_PLUS] = ACTIONS(6358), + [anon_sym_DOT] = ACTIONS(6360), + [anon_sym_DOT_STAR] = ACTIONS(6358), + [anon_sym_DASH_GT] = ACTIONS(6358), + [sym_comment] = ACTIONS(3), + }, + [2410] = { + [sym_attribute_specifier] = STATE(2687), + [sym_field_declaration_list] = STATE(2640), + [sym_virtual_specifier] = STATE(7926), + [sym_base_class_clause] = STATE(8741), + [ts_builtin_sym_end] = ACTIONS(5694), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5694), + [anon_sym_COMMA] = ACTIONS(5694), + [anon_sym_RPAREN] = ACTIONS(5694), + [anon_sym_LPAREN2] = ACTIONS(5694), + [anon_sym_DASH] = ACTIONS(5696), + [anon_sym_PLUS] = ACTIONS(5696), + [anon_sym_STAR] = ACTIONS(5694), + [anon_sym_SLASH] = ACTIONS(5696), + [anon_sym_PERCENT] = ACTIONS(5694), + [anon_sym_PIPE_PIPE] = ACTIONS(5694), + [anon_sym_AMP_AMP] = ACTIONS(5694), + [anon_sym_PIPE] = ACTIONS(5696), + [anon_sym_CARET] = ACTIONS(5694), + [anon_sym_AMP] = ACTIONS(5696), + [anon_sym_EQ_EQ] = ACTIONS(5694), + [anon_sym_BANG_EQ] = ACTIONS(5694), + [anon_sym_GT] = ACTIONS(5696), + [anon_sym_GT_EQ] = ACTIONS(5694), + [anon_sym_LT_EQ] = ACTIONS(5696), + [anon_sym_LT] = ACTIONS(5696), + [anon_sym_LT_LT] = ACTIONS(5694), + [anon_sym_GT_GT] = ACTIONS(5694), + [anon_sym_SEMI] = ACTIONS(5694), + [anon_sym___extension__] = ACTIONS(5694), + [anon_sym___attribute__] = ACTIONS(6365), + [anon_sym_LBRACE] = ACTIONS(6367), + [anon_sym_RBRACE] = ACTIONS(5694), + [anon_sym_LBRACK] = ACTIONS(5694), + [anon_sym_RBRACK] = ACTIONS(5694), + [anon_sym_const] = ACTIONS(5696), + [anon_sym_constexpr] = ACTIONS(5694), + [anon_sym_volatile] = ACTIONS(5694), + [anon_sym_restrict] = ACTIONS(5694), + [anon_sym___restrict__] = ACTIONS(5694), + [anon_sym__Atomic] = ACTIONS(5694), + [anon_sym__Noreturn] = ACTIONS(5694), + [anon_sym_noreturn] = ACTIONS(5694), + [anon_sym_mutable] = ACTIONS(5694), + [anon_sym_constinit] = ACTIONS(5694), + [anon_sym_consteval] = ACTIONS(5694), + [anon_sym_COLON] = ACTIONS(5702), + [anon_sym_QMARK] = ACTIONS(5694), + [anon_sym_LT_EQ_GT] = ACTIONS(5694), + [anon_sym_or] = ACTIONS(5694), + [anon_sym_and] = ACTIONS(5694), + [anon_sym_bitor] = ACTIONS(5694), + [anon_sym_xor] = ACTIONS(5694), + [anon_sym_bitand] = ACTIONS(5694), + [anon_sym_not_eq] = ACTIONS(5694), + [anon_sym_DASH_DASH] = ACTIONS(5694), + [anon_sym_PLUS_PLUS] = ACTIONS(5694), + [anon_sym_DOT] = ACTIONS(5696), + [anon_sym_DOT_STAR] = ACTIONS(5694), + [anon_sym_DASH_GT] = ACTIONS(5694), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5694), + [anon_sym_decltype] = ACTIONS(5694), + [anon_sym_final] = ACTIONS(6369), + [anon_sym_override] = ACTIONS(6369), + [anon_sym_requires] = ACTIONS(5694), + [sym_semgrep_metavar] = ACTIONS(5694), + }, + [2411] = { + [sym_argument_list] = STATE(2647), + [sym_initializer_list] = STATE(2647), + [ts_builtin_sym_end] = ACTIONS(6371), + [sym_identifier] = ACTIONS(6373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6371), + [anon_sym_COMMA] = ACTIONS(6371), + [anon_sym_RPAREN] = ACTIONS(6371), + [aux_sym_preproc_if_token2] = ACTIONS(6371), + [aux_sym_preproc_else_token1] = ACTIONS(6371), + [aux_sym_preproc_elif_token1] = ACTIONS(6373), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6371), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6371), + [anon_sym_LPAREN2] = ACTIONS(5761), + [anon_sym_DASH] = ACTIONS(6373), + [anon_sym_PLUS] = ACTIONS(6373), + [anon_sym_STAR] = ACTIONS(6373), + [anon_sym_SLASH] = ACTIONS(6373), + [anon_sym_PERCENT] = ACTIONS(6373), + [anon_sym_PIPE_PIPE] = ACTIONS(6371), + [anon_sym_AMP_AMP] = ACTIONS(6371), + [anon_sym_PIPE] = ACTIONS(6373), + [anon_sym_CARET] = ACTIONS(6373), + [anon_sym_AMP] = ACTIONS(6373), + [anon_sym_EQ_EQ] = ACTIONS(6371), + [anon_sym_BANG_EQ] = ACTIONS(6371), + [anon_sym_GT] = ACTIONS(6373), + [anon_sym_GT_EQ] = ACTIONS(6371), + [anon_sym_LT_EQ] = ACTIONS(6373), + [anon_sym_LT] = ACTIONS(6373), + [anon_sym_LT_LT] = ACTIONS(6373), + [anon_sym_GT_GT] = ACTIONS(6373), + [anon_sym_SEMI] = ACTIONS(6371), + [anon_sym___attribute__] = ACTIONS(6373), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_RBRACE] = ACTIONS(6371), + [anon_sym_LBRACK] = ACTIONS(6371), + [anon_sym_RBRACK] = ACTIONS(6371), + [anon_sym_EQ] = ACTIONS(6373), + [anon_sym_COLON] = ACTIONS(6371), + [anon_sym_QMARK] = ACTIONS(6371), + [anon_sym_STAR_EQ] = ACTIONS(6371), + [anon_sym_SLASH_EQ] = ACTIONS(6371), + [anon_sym_PERCENT_EQ] = ACTIONS(6371), + [anon_sym_PLUS_EQ] = ACTIONS(6371), + [anon_sym_DASH_EQ] = ACTIONS(6371), + [anon_sym_LT_LT_EQ] = ACTIONS(6371), + [anon_sym_GT_GT_EQ] = ACTIONS(6371), + [anon_sym_AMP_EQ] = ACTIONS(6371), + [anon_sym_CARET_EQ] = ACTIONS(6371), + [anon_sym_PIPE_EQ] = ACTIONS(6371), + [anon_sym_and_eq] = ACTIONS(6373), + [anon_sym_or_eq] = ACTIONS(6373), + [anon_sym_xor_eq] = ACTIONS(6373), + [anon_sym_LT_EQ_GT] = ACTIONS(6371), + [anon_sym_or] = ACTIONS(6373), + [anon_sym_and] = ACTIONS(6373), + [anon_sym_bitor] = ACTIONS(6373), + [anon_sym_xor] = ACTIONS(6373), + [anon_sym_bitand] = ACTIONS(6373), + [anon_sym_not_eq] = ACTIONS(6373), + [anon_sym_DASH_DASH] = ACTIONS(6371), + [anon_sym_PLUS_PLUS] = ACTIONS(6371), + [anon_sym_DOT] = ACTIONS(6373), + [anon_sym_DOT_STAR] = ACTIONS(6371), + [anon_sym_DASH_GT] = ACTIONS(6371), + [sym_comment] = ACTIONS(3), + }, + [2412] = { + [sym_declaration_modifiers] = STATE(4088), + [sym_attribute_specifier] = STATE(4038), + [sym_attribute_declaration] = STATE(4038), + [sym_ms_declspec_modifier] = STATE(4038), + [sym_storage_class_specifier] = STATE(4038), + [sym_type_qualifier] = STATE(4038), + [sym_type_specifier] = STATE(3187), + [sym_sized_type_specifier] = STATE(3531), + [sym_enum_specifier] = STATE(3531), + [sym_struct_specifier] = STATE(3531), + [sym_union_specifier] = STATE(3531), + [sym_placeholder_type_specifier] = STATE(3531), + [sym_decltype_auto] = STATE(3570), + [sym_decltype] = STATE(3324), + [sym_class_specifier] = STATE(3531), + [sym_virtual] = STATE(4038), + [sym_alignas_specifier] = STATE(4038), + [sym_dependent_type] = STATE(3531), + [sym_template_type] = STATE(3324), + [sym_dependent_type_identifier] = STATE(9605), + [sym_scope_resolution] = STATE(7569), + [sym_qualified_type_identifier] = STATE(4526), + [aux_sym_declaration_specifiers_repeat1] = STATE(4088), + [aux_sym_sized_type_specifier_repeat1] = STATE(3609), + [sym_identifier] = ACTIONS(5453), + [anon_sym___extension__] = ACTIONS(65), + [anon_sym_extern] = ACTIONS(61), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2103), + [anon_sym___declspec] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(57), + [anon_sym_unsigned] = ACTIONS(57), + [anon_sym_long] = ACTIONS(57), + [anon_sym_short] = ACTIONS(57), + [anon_sym_static] = ACTIONS(61), + [anon_sym_register] = ACTIONS(61), + [anon_sym_inline] = ACTIONS(61), + [anon_sym___inline] = ACTIONS(61), + [anon_sym___inline__] = ACTIONS(61), + [anon_sym___forceinline] = ACTIONS(61), + [anon_sym_thread_local] = ACTIONS(61), + [anon_sym___thread] = ACTIONS(61), + [anon_sym_const] = ACTIONS(65), + [anon_sym_constexpr] = ACTIONS(65), + [anon_sym_volatile] = ACTIONS(65), + [anon_sym_restrict] = ACTIONS(65), + [anon_sym___restrict__] = ACTIONS(65), + [anon_sym__Atomic] = ACTIONS(65), + [anon_sym__Noreturn] = ACTIONS(65), + [anon_sym_noreturn] = ACTIONS(65), + [anon_sym_mutable] = ACTIONS(65), + [anon_sym_constinit] = ACTIONS(65), + [anon_sym_consteval] = ACTIONS(65), + [sym_primitive_type] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(2119), + [anon_sym_class] = ACTIONS(2121), + [anon_sym_struct] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2125), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(121), + [anon_sym_decltype] = ACTIONS(123), + [anon_sym_virtual] = ACTIONS(125), + [anon_sym_alignas] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2127), + [anon_sym_template] = ACTIONS(1534), + }, + [2413] = { + [sym_identifier] = ACTIONS(3392), + [aux_sym_preproc_def_token1] = ACTIONS(3392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3394), + [aux_sym_preproc_if_token1] = ACTIONS(3392), + [aux_sym_preproc_if_token2] = ACTIONS(3392), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3392), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3392), + [sym_preproc_directive] = ACTIONS(3392), + [anon_sym_LPAREN2] = ACTIONS(3394), + [anon_sym_TILDE] = ACTIONS(3394), + [anon_sym_STAR] = ACTIONS(3394), + [anon_sym_AMP_AMP] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3392), + [anon_sym___extension__] = ACTIONS(3392), + [anon_sym_typedef] = ACTIONS(3392), + [anon_sym_extern] = ACTIONS(3392), + [anon_sym___attribute__] = ACTIONS(3392), + [anon_sym_COLON_COLON] = ACTIONS(3394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3394), + [anon_sym___declspec] = ACTIONS(3392), + [anon_sym___based] = ACTIONS(3392), + [anon_sym_signed] = ACTIONS(3392), + [anon_sym_unsigned] = ACTIONS(3392), + [anon_sym_long] = ACTIONS(3392), + [anon_sym_short] = ACTIONS(3392), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_static] = ACTIONS(3392), + [anon_sym_register] = ACTIONS(3392), + [anon_sym_inline] = ACTIONS(3392), + [anon_sym___inline] = ACTIONS(3392), + [anon_sym___inline__] = ACTIONS(3392), + [anon_sym___forceinline] = ACTIONS(3392), + [anon_sym_thread_local] = ACTIONS(3392), + [anon_sym___thread] = ACTIONS(3392), + [anon_sym_const] = ACTIONS(3392), + [anon_sym_constexpr] = ACTIONS(3392), + [anon_sym_volatile] = ACTIONS(3392), + [anon_sym_restrict] = ACTIONS(3392), + [anon_sym___restrict__] = ACTIONS(3392), + [anon_sym__Atomic] = ACTIONS(3392), + [anon_sym__Noreturn] = ACTIONS(3392), + [anon_sym_noreturn] = ACTIONS(3392), + [anon_sym_mutable] = ACTIONS(3392), + [anon_sym_constinit] = ACTIONS(3392), + [anon_sym_consteval] = ACTIONS(3392), + [sym_primitive_type] = ACTIONS(3392), + [anon_sym_enum] = ACTIONS(3392), + [anon_sym_class] = ACTIONS(3392), + [anon_sym_struct] = ACTIONS(3392), + [anon_sym_union] = ACTIONS(3392), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3392), + [anon_sym_decltype] = ACTIONS(3392), + [anon_sym_virtual] = ACTIONS(3392), + [anon_sym_alignas] = ACTIONS(3392), + [anon_sym_explicit] = ACTIONS(3392), + [anon_sym_typename] = ACTIONS(3392), + [anon_sym_template] = ACTIONS(3392), + [anon_sym_operator] = ACTIONS(3392), + [anon_sym_friend] = ACTIONS(3392), + [anon_sym_public] = ACTIONS(3392), + [anon_sym_private] = ACTIONS(3392), + [anon_sym_protected] = ACTIONS(3392), + [anon_sym_using] = ACTIONS(3392), + [anon_sym_static_assert] = ACTIONS(3392), + [sym_semgrep_metavar] = ACTIONS(3394), + }, + [2414] = { + [sym_identifier] = ACTIONS(3410), + [aux_sym_preproc_def_token1] = ACTIONS(3410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3412), + [aux_sym_preproc_if_token1] = ACTIONS(3410), + [aux_sym_preproc_if_token2] = ACTIONS(3410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3410), + [sym_preproc_directive] = ACTIONS(3410), + [anon_sym_LPAREN2] = ACTIONS(3412), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_AMP] = ACTIONS(3410), + [anon_sym___extension__] = ACTIONS(3410), + [anon_sym_typedef] = ACTIONS(3410), + [anon_sym_extern] = ACTIONS(3410), + [anon_sym___attribute__] = ACTIONS(3410), + [anon_sym_COLON_COLON] = ACTIONS(3412), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3412), + [anon_sym___declspec] = ACTIONS(3410), + [anon_sym___based] = ACTIONS(3410), + [anon_sym_signed] = ACTIONS(3410), + [anon_sym_unsigned] = ACTIONS(3410), + [anon_sym_long] = ACTIONS(3410), + [anon_sym_short] = ACTIONS(3410), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_static] = ACTIONS(3410), + [anon_sym_register] = ACTIONS(3410), + [anon_sym_inline] = ACTIONS(3410), + [anon_sym___inline] = ACTIONS(3410), + [anon_sym___inline__] = ACTIONS(3410), + [anon_sym___forceinline] = ACTIONS(3410), + [anon_sym_thread_local] = ACTIONS(3410), + [anon_sym___thread] = ACTIONS(3410), + [anon_sym_const] = ACTIONS(3410), + [anon_sym_constexpr] = ACTIONS(3410), + [anon_sym_volatile] = ACTIONS(3410), + [anon_sym_restrict] = ACTIONS(3410), + [anon_sym___restrict__] = ACTIONS(3410), + [anon_sym__Atomic] = ACTIONS(3410), + [anon_sym__Noreturn] = ACTIONS(3410), + [anon_sym_noreturn] = ACTIONS(3410), + [anon_sym_mutable] = ACTIONS(3410), + [anon_sym_constinit] = ACTIONS(3410), + [anon_sym_consteval] = ACTIONS(3410), + [sym_primitive_type] = ACTIONS(3410), + [anon_sym_enum] = ACTIONS(3410), + [anon_sym_class] = ACTIONS(3410), + [anon_sym_struct] = ACTIONS(3410), + [anon_sym_union] = ACTIONS(3410), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3410), + [anon_sym_decltype] = ACTIONS(3410), + [anon_sym_virtual] = ACTIONS(3410), + [anon_sym_alignas] = ACTIONS(3410), + [anon_sym_explicit] = ACTIONS(3410), + [anon_sym_typename] = ACTIONS(3410), + [anon_sym_template] = ACTIONS(3410), + [anon_sym_operator] = ACTIONS(3410), + [anon_sym_friend] = ACTIONS(3410), + [anon_sym_public] = ACTIONS(3410), + [anon_sym_private] = ACTIONS(3410), + [anon_sym_protected] = ACTIONS(3410), + [anon_sym_using] = ACTIONS(3410), + [anon_sym_static_assert] = ACTIONS(3410), + [sym_semgrep_metavar] = ACTIONS(3412), + }, + [2415] = { + [sym_identifier] = ACTIONS(3609), + [aux_sym_preproc_def_token1] = ACTIONS(3609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3611), + [aux_sym_preproc_if_token1] = ACTIONS(3609), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3609), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3609), + [sym_preproc_directive] = ACTIONS(3609), + [anon_sym_LPAREN2] = ACTIONS(3611), + [anon_sym_TILDE] = ACTIONS(3611), + [anon_sym_STAR] = ACTIONS(3611), + [anon_sym_AMP_AMP] = ACTIONS(3611), + [anon_sym_AMP] = ACTIONS(3609), + [anon_sym___extension__] = ACTIONS(3609), + [anon_sym_typedef] = ACTIONS(3609), + [anon_sym_extern] = ACTIONS(3609), + [anon_sym___attribute__] = ACTIONS(3609), + [anon_sym_COLON_COLON] = ACTIONS(3611), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3611), + [anon_sym___declspec] = ACTIONS(3609), + [anon_sym___based] = ACTIONS(3609), + [anon_sym_RBRACE] = ACTIONS(3611), + [anon_sym_signed] = ACTIONS(3609), + [anon_sym_unsigned] = ACTIONS(3609), + [anon_sym_long] = ACTIONS(3609), + [anon_sym_short] = ACTIONS(3609), + [anon_sym_LBRACK] = ACTIONS(3609), + [anon_sym_static] = ACTIONS(3609), + [anon_sym_register] = ACTIONS(3609), + [anon_sym_inline] = ACTIONS(3609), + [anon_sym___inline] = ACTIONS(3609), + [anon_sym___inline__] = ACTIONS(3609), + [anon_sym___forceinline] = ACTIONS(3609), + [anon_sym_thread_local] = ACTIONS(3609), + [anon_sym___thread] = ACTIONS(3609), + [anon_sym_const] = ACTIONS(3609), + [anon_sym_constexpr] = ACTIONS(3609), + [anon_sym_volatile] = ACTIONS(3609), + [anon_sym_restrict] = ACTIONS(3609), + [anon_sym___restrict__] = ACTIONS(3609), + [anon_sym__Atomic] = ACTIONS(3609), + [anon_sym__Noreturn] = ACTIONS(3609), + [anon_sym_noreturn] = ACTIONS(3609), + [anon_sym_mutable] = ACTIONS(3609), + [anon_sym_constinit] = ACTIONS(3609), + [anon_sym_consteval] = ACTIONS(3609), + [sym_primitive_type] = ACTIONS(3609), + [anon_sym_enum] = ACTIONS(3609), + [anon_sym_class] = ACTIONS(3609), + [anon_sym_struct] = ACTIONS(3609), + [anon_sym_union] = ACTIONS(3609), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3609), + [anon_sym_decltype] = ACTIONS(3609), + [anon_sym_virtual] = ACTIONS(3609), + [anon_sym_alignas] = ACTIONS(3609), + [anon_sym_explicit] = ACTIONS(3609), + [anon_sym_typename] = ACTIONS(3609), + [anon_sym_template] = ACTIONS(3609), + [anon_sym_operator] = ACTIONS(3609), + [anon_sym_friend] = ACTIONS(3609), + [anon_sym_public] = ACTIONS(3609), + [anon_sym_private] = ACTIONS(3609), + [anon_sym_protected] = ACTIONS(3609), + [anon_sym_using] = ACTIONS(3609), + [anon_sym_static_assert] = ACTIONS(3609), + [sym_semgrep_metavar] = ACTIONS(3611), + }, + [2416] = { + [sym_identifier] = ACTIONS(3613), + [aux_sym_preproc_def_token1] = ACTIONS(3613), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3615), + [aux_sym_preproc_if_token1] = ACTIONS(3613), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3613), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3613), + [sym_preproc_directive] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_TILDE] = ACTIONS(3615), + [anon_sym_STAR] = ACTIONS(3615), + [anon_sym_AMP_AMP] = ACTIONS(3615), + [anon_sym_AMP] = ACTIONS(3613), + [anon_sym___extension__] = ACTIONS(3613), + [anon_sym_typedef] = ACTIONS(3613), + [anon_sym_extern] = ACTIONS(3613), + [anon_sym___attribute__] = ACTIONS(3613), + [anon_sym_COLON_COLON] = ACTIONS(3615), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3615), + [anon_sym___declspec] = ACTIONS(3613), + [anon_sym___based] = ACTIONS(3613), + [anon_sym_RBRACE] = ACTIONS(3615), + [anon_sym_signed] = ACTIONS(3613), + [anon_sym_unsigned] = ACTIONS(3613), + [anon_sym_long] = ACTIONS(3613), + [anon_sym_short] = ACTIONS(3613), + [anon_sym_LBRACK] = ACTIONS(3613), + [anon_sym_static] = ACTIONS(3613), + [anon_sym_register] = ACTIONS(3613), + [anon_sym_inline] = ACTIONS(3613), + [anon_sym___inline] = ACTIONS(3613), + [anon_sym___inline__] = ACTIONS(3613), + [anon_sym___forceinline] = ACTIONS(3613), + [anon_sym_thread_local] = ACTIONS(3613), + [anon_sym___thread] = ACTIONS(3613), + [anon_sym_const] = ACTIONS(3613), + [anon_sym_constexpr] = ACTIONS(3613), + [anon_sym_volatile] = ACTIONS(3613), + [anon_sym_restrict] = ACTIONS(3613), + [anon_sym___restrict__] = ACTIONS(3613), + [anon_sym__Atomic] = ACTIONS(3613), + [anon_sym__Noreturn] = ACTIONS(3613), + [anon_sym_noreturn] = ACTIONS(3613), + [anon_sym_mutable] = ACTIONS(3613), + [anon_sym_constinit] = ACTIONS(3613), + [anon_sym_consteval] = ACTIONS(3613), + [sym_primitive_type] = ACTIONS(3613), + [anon_sym_enum] = ACTIONS(3613), + [anon_sym_class] = ACTIONS(3613), + [anon_sym_struct] = ACTIONS(3613), + [anon_sym_union] = ACTIONS(3613), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3613), + [anon_sym_decltype] = ACTIONS(3613), + [anon_sym_virtual] = ACTIONS(3613), + [anon_sym_alignas] = ACTIONS(3613), + [anon_sym_explicit] = ACTIONS(3613), + [anon_sym_typename] = ACTIONS(3613), + [anon_sym_template] = ACTIONS(3613), + [anon_sym_operator] = ACTIONS(3613), + [anon_sym_friend] = ACTIONS(3613), + [anon_sym_public] = ACTIONS(3613), + [anon_sym_private] = ACTIONS(3613), + [anon_sym_protected] = ACTIONS(3613), + [anon_sym_using] = ACTIONS(3613), + [anon_sym_static_assert] = ACTIONS(3613), + [sym_semgrep_metavar] = ACTIONS(3615), + }, + [2417] = { + [sym_identifier] = ACTIONS(5908), + [aux_sym_preproc_def_token1] = ACTIONS(5908), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5910), + [aux_sym_preproc_if_token1] = ACTIONS(5908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5908), + [sym_preproc_directive] = ACTIONS(5908), + [anon_sym_LPAREN2] = ACTIONS(5910), + [anon_sym_TILDE] = ACTIONS(5910), + [anon_sym_STAR] = ACTIONS(5910), + [anon_sym_AMP_AMP] = ACTIONS(5910), + [anon_sym_AMP] = ACTIONS(5908), + [anon_sym___extension__] = ACTIONS(5908), + [anon_sym_typedef] = ACTIONS(5908), + [anon_sym_extern] = ACTIONS(5908), + [anon_sym___attribute__] = ACTIONS(5908), + [anon_sym_COLON_COLON] = ACTIONS(5910), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5910), + [anon_sym___declspec] = ACTIONS(5908), + [anon_sym___based] = ACTIONS(5908), + [anon_sym_RBRACE] = ACTIONS(5910), + [anon_sym_signed] = ACTIONS(5908), + [anon_sym_unsigned] = ACTIONS(5908), + [anon_sym_long] = ACTIONS(5908), + [anon_sym_short] = ACTIONS(5908), + [anon_sym_LBRACK] = ACTIONS(5908), + [anon_sym_static] = ACTIONS(5908), + [anon_sym_register] = ACTIONS(5908), + [anon_sym_inline] = ACTIONS(5908), + [anon_sym___inline] = ACTIONS(5908), + [anon_sym___inline__] = ACTIONS(5908), + [anon_sym___forceinline] = ACTIONS(5908), + [anon_sym_thread_local] = ACTIONS(5908), + [anon_sym___thread] = ACTIONS(5908), + [anon_sym_const] = ACTIONS(5908), + [anon_sym_constexpr] = ACTIONS(5908), + [anon_sym_volatile] = ACTIONS(5908), + [anon_sym_restrict] = ACTIONS(5908), + [anon_sym___restrict__] = ACTIONS(5908), + [anon_sym__Atomic] = ACTIONS(5908), + [anon_sym__Noreturn] = ACTIONS(5908), + [anon_sym_noreturn] = ACTIONS(5908), + [anon_sym_mutable] = ACTIONS(5908), + [anon_sym_constinit] = ACTIONS(5908), + [anon_sym_consteval] = ACTIONS(5908), + [sym_primitive_type] = ACTIONS(5908), + [anon_sym_enum] = ACTIONS(5908), + [anon_sym_class] = ACTIONS(5908), + [anon_sym_struct] = ACTIONS(5908), + [anon_sym_union] = ACTIONS(5908), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5908), + [anon_sym_decltype] = ACTIONS(5908), + [anon_sym_virtual] = ACTIONS(5908), + [anon_sym_alignas] = ACTIONS(5908), + [anon_sym_explicit] = ACTIONS(5908), + [anon_sym_typename] = ACTIONS(5908), + [anon_sym_template] = ACTIONS(5908), + [anon_sym_operator] = ACTIONS(5908), + [anon_sym_friend] = ACTIONS(5908), + [anon_sym_public] = ACTIONS(5908), + [anon_sym_private] = ACTIONS(5908), + [anon_sym_protected] = ACTIONS(5908), + [anon_sym_using] = ACTIONS(5908), + [anon_sym_static_assert] = ACTIONS(5908), + [sym_semgrep_metavar] = ACTIONS(5910), + }, + [2418] = { + [sym_identifier] = ACTIONS(3428), + [aux_sym_preproc_def_token1] = ACTIONS(3428), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3430), + [aux_sym_preproc_if_token1] = ACTIONS(3428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3428), + [sym_preproc_directive] = ACTIONS(3428), + [anon_sym_LPAREN2] = ACTIONS(3430), + [anon_sym_TILDE] = ACTIONS(3430), + [anon_sym_STAR] = ACTIONS(3430), + [anon_sym_AMP_AMP] = ACTIONS(3430), + [anon_sym_AMP] = ACTIONS(3428), + [anon_sym___extension__] = ACTIONS(3428), + [anon_sym_typedef] = ACTIONS(3428), + [anon_sym_extern] = ACTIONS(3428), + [anon_sym___attribute__] = ACTIONS(3428), + [anon_sym_COLON_COLON] = ACTIONS(3430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3430), + [anon_sym___declspec] = ACTIONS(3428), + [anon_sym___based] = ACTIONS(3428), + [anon_sym_RBRACE] = ACTIONS(3430), + [anon_sym_signed] = ACTIONS(3428), + [anon_sym_unsigned] = ACTIONS(3428), + [anon_sym_long] = ACTIONS(3428), + [anon_sym_short] = ACTIONS(3428), + [anon_sym_LBRACK] = ACTIONS(3428), + [anon_sym_static] = ACTIONS(3428), + [anon_sym_register] = ACTIONS(3428), + [anon_sym_inline] = ACTIONS(3428), + [anon_sym___inline] = ACTIONS(3428), + [anon_sym___inline__] = ACTIONS(3428), + [anon_sym___forceinline] = ACTIONS(3428), + [anon_sym_thread_local] = ACTIONS(3428), + [anon_sym___thread] = ACTIONS(3428), + [anon_sym_const] = ACTIONS(3428), + [anon_sym_constexpr] = ACTIONS(3428), + [anon_sym_volatile] = ACTIONS(3428), + [anon_sym_restrict] = ACTIONS(3428), + [anon_sym___restrict__] = ACTIONS(3428), + [anon_sym__Atomic] = ACTIONS(3428), + [anon_sym__Noreturn] = ACTIONS(3428), + [anon_sym_noreturn] = ACTIONS(3428), + [anon_sym_mutable] = ACTIONS(3428), + [anon_sym_constinit] = ACTIONS(3428), + [anon_sym_consteval] = ACTIONS(3428), + [sym_primitive_type] = ACTIONS(3428), + [anon_sym_enum] = ACTIONS(3428), + [anon_sym_class] = ACTIONS(3428), + [anon_sym_struct] = ACTIONS(3428), + [anon_sym_union] = ACTIONS(3428), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3428), + [anon_sym_decltype] = ACTIONS(3428), + [anon_sym_virtual] = ACTIONS(3428), + [anon_sym_alignas] = ACTIONS(3428), + [anon_sym_explicit] = ACTIONS(3428), + [anon_sym_typename] = ACTIONS(3428), + [anon_sym_template] = ACTIONS(3428), + [anon_sym_operator] = ACTIONS(3428), + [anon_sym_friend] = ACTIONS(3428), + [anon_sym_public] = ACTIONS(3428), + [anon_sym_private] = ACTIONS(3428), + [anon_sym_protected] = ACTIONS(3428), + [anon_sym_using] = ACTIONS(3428), + [anon_sym_static_assert] = ACTIONS(3428), + [sym_semgrep_metavar] = ACTIONS(3430), + }, + [2419] = { + [sym_identifier] = ACTIONS(3428), + [aux_sym_preproc_def_token1] = ACTIONS(3428), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3430), + [aux_sym_preproc_if_token1] = ACTIONS(3428), + [aux_sym_preproc_if_token2] = ACTIONS(3428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3428), + [sym_preproc_directive] = ACTIONS(3428), + [anon_sym_LPAREN2] = ACTIONS(3430), + [anon_sym_TILDE] = ACTIONS(3430), + [anon_sym_STAR] = ACTIONS(3430), + [anon_sym_AMP_AMP] = ACTIONS(3430), + [anon_sym_AMP] = ACTIONS(3428), + [anon_sym___extension__] = ACTIONS(3428), + [anon_sym_typedef] = ACTIONS(3428), + [anon_sym_extern] = ACTIONS(3428), + [anon_sym___attribute__] = ACTIONS(3428), + [anon_sym_COLON_COLON] = ACTIONS(3430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3430), + [anon_sym___declspec] = ACTIONS(3428), + [anon_sym___based] = ACTIONS(3428), + [anon_sym_signed] = ACTIONS(3428), + [anon_sym_unsigned] = ACTIONS(3428), + [anon_sym_long] = ACTIONS(3428), + [anon_sym_short] = ACTIONS(3428), + [anon_sym_LBRACK] = ACTIONS(3428), + [anon_sym_static] = ACTIONS(3428), + [anon_sym_register] = ACTIONS(3428), + [anon_sym_inline] = ACTIONS(3428), + [anon_sym___inline] = ACTIONS(3428), + [anon_sym___inline__] = ACTIONS(3428), + [anon_sym___forceinline] = ACTIONS(3428), + [anon_sym_thread_local] = ACTIONS(3428), + [anon_sym___thread] = ACTIONS(3428), + [anon_sym_const] = ACTIONS(3428), + [anon_sym_constexpr] = ACTIONS(3428), + [anon_sym_volatile] = ACTIONS(3428), + [anon_sym_restrict] = ACTIONS(3428), + [anon_sym___restrict__] = ACTIONS(3428), + [anon_sym__Atomic] = ACTIONS(3428), + [anon_sym__Noreturn] = ACTIONS(3428), + [anon_sym_noreturn] = ACTIONS(3428), + [anon_sym_mutable] = ACTIONS(3428), + [anon_sym_constinit] = ACTIONS(3428), + [anon_sym_consteval] = ACTIONS(3428), + [sym_primitive_type] = ACTIONS(3428), + [anon_sym_enum] = ACTIONS(3428), + [anon_sym_class] = ACTIONS(3428), + [anon_sym_struct] = ACTIONS(3428), + [anon_sym_union] = ACTIONS(3428), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3428), + [anon_sym_decltype] = ACTIONS(3428), + [anon_sym_virtual] = ACTIONS(3428), + [anon_sym_alignas] = ACTIONS(3428), + [anon_sym_explicit] = ACTIONS(3428), + [anon_sym_typename] = ACTIONS(3428), + [anon_sym_template] = ACTIONS(3428), + [anon_sym_operator] = ACTIONS(3428), + [anon_sym_friend] = ACTIONS(3428), + [anon_sym_public] = ACTIONS(3428), + [anon_sym_private] = ACTIONS(3428), + [anon_sym_protected] = ACTIONS(3428), + [anon_sym_using] = ACTIONS(3428), + [anon_sym_static_assert] = ACTIONS(3428), + [sym_semgrep_metavar] = ACTIONS(3430), + }, + [2420] = { + [ts_builtin_sym_end] = ACTIONS(6018), + [sym_identifier] = ACTIONS(6016), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6018), + [anon_sym_COMMA] = ACTIONS(6018), + [anon_sym_RPAREN] = ACTIONS(6018), + [aux_sym_preproc_if_token2] = ACTIONS(6018), + [aux_sym_preproc_else_token1] = ACTIONS(6018), + [aux_sym_preproc_elif_token1] = ACTIONS(6016), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6018), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6018), + [anon_sym_LPAREN2] = ACTIONS(6018), + [anon_sym_DASH] = ACTIONS(6016), + [anon_sym_PLUS] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(6016), + [anon_sym_SLASH] = ACTIONS(6016), + [anon_sym_PERCENT] = ACTIONS(6016), + [anon_sym_PIPE_PIPE] = ACTIONS(6018), + [anon_sym_AMP_AMP] = ACTIONS(6018), + [anon_sym_PIPE] = ACTIONS(6016), + [anon_sym_CARET] = ACTIONS(6016), + [anon_sym_AMP] = ACTIONS(6016), + [anon_sym_EQ_EQ] = ACTIONS(6018), + [anon_sym_BANG_EQ] = ACTIONS(6018), + [anon_sym_GT] = ACTIONS(6016), + [anon_sym_GT_EQ] = ACTIONS(6018), + [anon_sym_LT_EQ] = ACTIONS(6016), + [anon_sym_LT] = ACTIONS(6016), + [anon_sym_LT_LT] = ACTIONS(6016), + [anon_sym_GT_GT] = ACTIONS(6016), + [anon_sym_SEMI] = ACTIONS(6018), + [anon_sym___attribute__] = ACTIONS(6016), + [anon_sym_LBRACE] = ACTIONS(6018), + [anon_sym_RBRACE] = ACTIONS(6018), + [anon_sym_LBRACK] = ACTIONS(6018), + [anon_sym_RBRACK] = ACTIONS(6018), + [anon_sym_EQ] = ACTIONS(6016), + [anon_sym_COLON] = ACTIONS(6018), + [anon_sym_QMARK] = ACTIONS(6018), + [anon_sym_STAR_EQ] = ACTIONS(6018), + [anon_sym_SLASH_EQ] = ACTIONS(6018), + [anon_sym_PERCENT_EQ] = ACTIONS(6018), + [anon_sym_PLUS_EQ] = ACTIONS(6018), + [anon_sym_DASH_EQ] = ACTIONS(6018), + [anon_sym_LT_LT_EQ] = ACTIONS(6018), + [anon_sym_GT_GT_EQ] = ACTIONS(6018), + [anon_sym_AMP_EQ] = ACTIONS(6018), + [anon_sym_CARET_EQ] = ACTIONS(6018), + [anon_sym_PIPE_EQ] = ACTIONS(6018), + [anon_sym_and_eq] = ACTIONS(6016), + [anon_sym_or_eq] = ACTIONS(6016), + [anon_sym_xor_eq] = ACTIONS(6016), + [anon_sym_LT_EQ_GT] = ACTIONS(6018), + [anon_sym_or] = ACTIONS(6016), + [anon_sym_and] = ACTIONS(6016), + [anon_sym_bitor] = ACTIONS(6016), + [anon_sym_xor] = ACTIONS(6016), + [anon_sym_bitand] = ACTIONS(6016), + [anon_sym_not_eq] = ACTIONS(6016), + [anon_sym_DASH_DASH] = ACTIONS(6018), + [anon_sym_PLUS_PLUS] = ACTIONS(6018), + [anon_sym_DOT] = ACTIONS(6016), + [anon_sym_DOT_STAR] = ACTIONS(6018), + [anon_sym_DASH_GT] = ACTIONS(6018), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6016), + [anon_sym_decltype] = ACTIONS(6016), + }, + [2421] = { + [sym_argument_list] = STATE(2665), + [sym_initializer_list] = STATE(2665), + [ts_builtin_sym_end] = ACTIONS(6375), + [sym_identifier] = ACTIONS(6377), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6375), + [anon_sym_COMMA] = ACTIONS(6375), + [anon_sym_RPAREN] = ACTIONS(6375), + [aux_sym_preproc_if_token2] = ACTIONS(6375), + [aux_sym_preproc_else_token1] = ACTIONS(6375), + [aux_sym_preproc_elif_token1] = ACTIONS(6377), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6375), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6375), + [anon_sym_LPAREN2] = ACTIONS(5761), + [anon_sym_DASH] = ACTIONS(6377), + [anon_sym_PLUS] = ACTIONS(6377), + [anon_sym_STAR] = ACTIONS(6377), + [anon_sym_SLASH] = ACTIONS(6377), + [anon_sym_PERCENT] = ACTIONS(6377), + [anon_sym_PIPE_PIPE] = ACTIONS(6375), + [anon_sym_AMP_AMP] = ACTIONS(6375), + [anon_sym_PIPE] = ACTIONS(6377), + [anon_sym_CARET] = ACTIONS(6377), + [anon_sym_AMP] = ACTIONS(6377), + [anon_sym_EQ_EQ] = ACTIONS(6375), + [anon_sym_BANG_EQ] = ACTIONS(6375), + [anon_sym_GT] = ACTIONS(6377), + [anon_sym_GT_EQ] = ACTIONS(6375), + [anon_sym_LT_EQ] = ACTIONS(6377), + [anon_sym_LT] = ACTIONS(6377), + [anon_sym_LT_LT] = ACTIONS(6377), + [anon_sym_GT_GT] = ACTIONS(6377), + [anon_sym_SEMI] = ACTIONS(6375), + [anon_sym___attribute__] = ACTIONS(6377), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_RBRACE] = ACTIONS(6375), + [anon_sym_LBRACK] = ACTIONS(6375), + [anon_sym_RBRACK] = ACTIONS(6375), + [anon_sym_EQ] = ACTIONS(6377), + [anon_sym_COLON] = ACTIONS(6375), + [anon_sym_QMARK] = ACTIONS(6375), + [anon_sym_STAR_EQ] = ACTIONS(6375), + [anon_sym_SLASH_EQ] = ACTIONS(6375), + [anon_sym_PERCENT_EQ] = ACTIONS(6375), + [anon_sym_PLUS_EQ] = ACTIONS(6375), + [anon_sym_DASH_EQ] = ACTIONS(6375), + [anon_sym_LT_LT_EQ] = ACTIONS(6375), + [anon_sym_GT_GT_EQ] = ACTIONS(6375), + [anon_sym_AMP_EQ] = ACTIONS(6375), + [anon_sym_CARET_EQ] = ACTIONS(6375), + [anon_sym_PIPE_EQ] = ACTIONS(6375), + [anon_sym_and_eq] = ACTIONS(6377), + [anon_sym_or_eq] = ACTIONS(6377), + [anon_sym_xor_eq] = ACTIONS(6377), + [anon_sym_LT_EQ_GT] = ACTIONS(6375), + [anon_sym_or] = ACTIONS(6377), + [anon_sym_and] = ACTIONS(6377), + [anon_sym_bitor] = ACTIONS(6377), + [anon_sym_xor] = ACTIONS(6377), + [anon_sym_bitand] = ACTIONS(6377), + [anon_sym_not_eq] = ACTIONS(6377), + [anon_sym_DASH_DASH] = ACTIONS(6375), + [anon_sym_PLUS_PLUS] = ACTIONS(6375), + [anon_sym_DOT] = ACTIONS(6377), + [anon_sym_DOT_STAR] = ACTIONS(6375), + [anon_sym_DASH_GT] = ACTIONS(6375), + [sym_comment] = ACTIONS(3), + }, + [2422] = { + [sym_identifier] = ACTIONS(3623), + [aux_sym_preproc_def_token1] = ACTIONS(3623), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3625), + [aux_sym_preproc_if_token1] = ACTIONS(3623), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3623), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3623), + [sym_preproc_directive] = ACTIONS(3623), + [anon_sym_LPAREN2] = ACTIONS(3625), + [anon_sym_TILDE] = ACTIONS(3625), + [anon_sym_STAR] = ACTIONS(3625), + [anon_sym_AMP_AMP] = ACTIONS(3625), + [anon_sym_AMP] = ACTIONS(3623), + [anon_sym___extension__] = ACTIONS(3623), + [anon_sym_typedef] = ACTIONS(3623), + [anon_sym_extern] = ACTIONS(3623), + [anon_sym___attribute__] = ACTIONS(3623), + [anon_sym_COLON_COLON] = ACTIONS(3625), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3625), + [anon_sym___declspec] = ACTIONS(3623), + [anon_sym___based] = ACTIONS(3623), + [anon_sym_RBRACE] = ACTIONS(3625), + [anon_sym_signed] = ACTIONS(3623), + [anon_sym_unsigned] = ACTIONS(3623), + [anon_sym_long] = ACTIONS(3623), + [anon_sym_short] = ACTIONS(3623), + [anon_sym_LBRACK] = ACTIONS(3623), + [anon_sym_static] = ACTIONS(3623), + [anon_sym_register] = ACTIONS(3623), + [anon_sym_inline] = ACTIONS(3623), + [anon_sym___inline] = ACTIONS(3623), + [anon_sym___inline__] = ACTIONS(3623), + [anon_sym___forceinline] = ACTIONS(3623), + [anon_sym_thread_local] = ACTIONS(3623), + [anon_sym___thread] = ACTIONS(3623), + [anon_sym_const] = ACTIONS(3623), + [anon_sym_constexpr] = ACTIONS(3623), + [anon_sym_volatile] = ACTIONS(3623), + [anon_sym_restrict] = ACTIONS(3623), + [anon_sym___restrict__] = ACTIONS(3623), + [anon_sym__Atomic] = ACTIONS(3623), + [anon_sym__Noreturn] = ACTIONS(3623), + [anon_sym_noreturn] = ACTIONS(3623), + [anon_sym_mutable] = ACTIONS(3623), + [anon_sym_constinit] = ACTIONS(3623), + [anon_sym_consteval] = ACTIONS(3623), + [sym_primitive_type] = ACTIONS(3623), + [anon_sym_enum] = ACTIONS(3623), + [anon_sym_class] = ACTIONS(3623), + [anon_sym_struct] = ACTIONS(3623), + [anon_sym_union] = ACTIONS(3623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3623), + [anon_sym_decltype] = ACTIONS(3623), + [anon_sym_virtual] = ACTIONS(3623), + [anon_sym_alignas] = ACTIONS(3623), + [anon_sym_explicit] = ACTIONS(3623), + [anon_sym_typename] = ACTIONS(3623), + [anon_sym_template] = ACTIONS(3623), + [anon_sym_operator] = ACTIONS(3623), + [anon_sym_friend] = ACTIONS(3623), + [anon_sym_public] = ACTIONS(3623), + [anon_sym_private] = ACTIONS(3623), + [anon_sym_protected] = ACTIONS(3623), + [anon_sym_using] = ACTIONS(3623), + [anon_sym_static_assert] = ACTIONS(3623), + [sym_semgrep_metavar] = ACTIONS(3625), + }, + [2423] = { + [sym_identifier] = ACTIONS(3219), + [aux_sym_preproc_def_token1] = ACTIONS(3219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3221), + [aux_sym_preproc_if_token1] = ACTIONS(3219), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3219), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3219), + [sym_preproc_directive] = ACTIONS(3219), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3221), + [anon_sym_STAR] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_AMP] = ACTIONS(3219), + [anon_sym___extension__] = ACTIONS(3219), + [anon_sym_typedef] = ACTIONS(3219), + [anon_sym_extern] = ACTIONS(3219), + [anon_sym___attribute__] = ACTIONS(3219), + [anon_sym_COLON_COLON] = ACTIONS(3221), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3221), + [anon_sym___declspec] = ACTIONS(3219), + [anon_sym___based] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3221), + [anon_sym_signed] = ACTIONS(3219), + [anon_sym_unsigned] = ACTIONS(3219), + [anon_sym_long] = ACTIONS(3219), + [anon_sym_short] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_register] = ACTIONS(3219), + [anon_sym_inline] = ACTIONS(3219), + [anon_sym___inline] = ACTIONS(3219), + [anon_sym___inline__] = ACTIONS(3219), + [anon_sym___forceinline] = ACTIONS(3219), + [anon_sym_thread_local] = ACTIONS(3219), + [anon_sym___thread] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_constexpr] = ACTIONS(3219), + [anon_sym_volatile] = ACTIONS(3219), + [anon_sym_restrict] = ACTIONS(3219), + [anon_sym___restrict__] = ACTIONS(3219), + [anon_sym__Atomic] = ACTIONS(3219), + [anon_sym__Noreturn] = ACTIONS(3219), + [anon_sym_noreturn] = ACTIONS(3219), + [anon_sym_mutable] = ACTIONS(3219), + [anon_sym_constinit] = ACTIONS(3219), + [anon_sym_consteval] = ACTIONS(3219), + [sym_primitive_type] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_struct] = ACTIONS(3219), + [anon_sym_union] = ACTIONS(3219), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3219), + [anon_sym_decltype] = ACTIONS(3219), + [anon_sym_virtual] = ACTIONS(3219), + [anon_sym_alignas] = ACTIONS(3219), + [anon_sym_explicit] = ACTIONS(3219), + [anon_sym_typename] = ACTIONS(3219), + [anon_sym_template] = ACTIONS(3219), + [anon_sym_operator] = ACTIONS(3219), + [anon_sym_friend] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_static_assert] = ACTIONS(3219), + [sym_semgrep_metavar] = ACTIONS(3221), + }, + [2424] = { + [sym_identifier] = ACTIONS(3525), + [aux_sym_preproc_def_token1] = ACTIONS(3525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3527), + [aux_sym_preproc_if_token1] = ACTIONS(3525), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3525), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3525), + [sym_preproc_directive] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(3527), + [anon_sym_TILDE] = ACTIONS(3527), + [anon_sym_STAR] = ACTIONS(3527), + [anon_sym_AMP_AMP] = ACTIONS(3527), + [anon_sym_AMP] = ACTIONS(3525), + [anon_sym___extension__] = ACTIONS(3525), + [anon_sym_typedef] = ACTIONS(3525), + [anon_sym_extern] = ACTIONS(3525), + [anon_sym___attribute__] = ACTIONS(3525), + [anon_sym_COLON_COLON] = ACTIONS(3527), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3527), + [anon_sym___declspec] = ACTIONS(3525), + [anon_sym___based] = ACTIONS(3525), + [anon_sym_RBRACE] = ACTIONS(3527), + [anon_sym_signed] = ACTIONS(3525), + [anon_sym_unsigned] = ACTIONS(3525), + [anon_sym_long] = ACTIONS(3525), + [anon_sym_short] = ACTIONS(3525), + [anon_sym_LBRACK] = ACTIONS(3525), + [anon_sym_static] = ACTIONS(3525), + [anon_sym_register] = ACTIONS(3525), + [anon_sym_inline] = ACTIONS(3525), + [anon_sym___inline] = ACTIONS(3525), + [anon_sym___inline__] = ACTIONS(3525), + [anon_sym___forceinline] = ACTIONS(3525), + [anon_sym_thread_local] = ACTIONS(3525), + [anon_sym___thread] = ACTIONS(3525), + [anon_sym_const] = ACTIONS(3525), + [anon_sym_constexpr] = ACTIONS(3525), + [anon_sym_volatile] = ACTIONS(3525), + [anon_sym_restrict] = ACTIONS(3525), + [anon_sym___restrict__] = ACTIONS(3525), + [anon_sym__Atomic] = ACTIONS(3525), + [anon_sym__Noreturn] = ACTIONS(3525), + [anon_sym_noreturn] = ACTIONS(3525), + [anon_sym_mutable] = ACTIONS(3525), + [anon_sym_constinit] = ACTIONS(3525), + [anon_sym_consteval] = ACTIONS(3525), + [sym_primitive_type] = ACTIONS(3525), + [anon_sym_enum] = ACTIONS(3525), + [anon_sym_class] = ACTIONS(3525), + [anon_sym_struct] = ACTIONS(3525), + [anon_sym_union] = ACTIONS(3525), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3525), + [anon_sym_decltype] = ACTIONS(3525), + [anon_sym_virtual] = ACTIONS(3525), + [anon_sym_alignas] = ACTIONS(3525), + [anon_sym_explicit] = ACTIONS(3525), + [anon_sym_typename] = ACTIONS(3525), + [anon_sym_template] = ACTIONS(3525), + [anon_sym_operator] = ACTIONS(3525), + [anon_sym_friend] = ACTIONS(3525), + [anon_sym_public] = ACTIONS(3525), + [anon_sym_private] = ACTIONS(3525), + [anon_sym_protected] = ACTIONS(3525), + [anon_sym_using] = ACTIONS(3525), + [anon_sym_static_assert] = ACTIONS(3525), + [sym_semgrep_metavar] = ACTIONS(3527), + }, + [2425] = { + [sym_identifier] = ACTIONS(5773), + [aux_sym_preproc_def_token1] = ACTIONS(5773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5775), + [aux_sym_preproc_if_token1] = ACTIONS(5773), + [aux_sym_preproc_if_token2] = ACTIONS(5773), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5773), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5773), + [sym_preproc_directive] = ACTIONS(5773), + [anon_sym_LPAREN2] = ACTIONS(5775), + [anon_sym_TILDE] = ACTIONS(5775), + [anon_sym_STAR] = ACTIONS(5775), + [anon_sym_AMP_AMP] = ACTIONS(5775), + [anon_sym_AMP] = ACTIONS(5773), + [anon_sym___extension__] = ACTIONS(5773), + [anon_sym_typedef] = ACTIONS(5773), + [anon_sym_extern] = ACTIONS(5773), + [anon_sym___attribute__] = ACTIONS(5773), + [anon_sym_COLON_COLON] = ACTIONS(5775), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5775), + [anon_sym___declspec] = ACTIONS(5773), + [anon_sym___based] = ACTIONS(5773), + [anon_sym_signed] = ACTIONS(5773), + [anon_sym_unsigned] = ACTIONS(5773), + [anon_sym_long] = ACTIONS(5773), + [anon_sym_short] = ACTIONS(5773), + [anon_sym_LBRACK] = ACTIONS(5773), + [anon_sym_static] = ACTIONS(5773), + [anon_sym_register] = ACTIONS(5773), + [anon_sym_inline] = ACTIONS(5773), + [anon_sym___inline] = ACTIONS(5773), + [anon_sym___inline__] = ACTIONS(5773), + [anon_sym___forceinline] = ACTIONS(5773), + [anon_sym_thread_local] = ACTIONS(5773), + [anon_sym___thread] = ACTIONS(5773), + [anon_sym_const] = ACTIONS(5773), + [anon_sym_constexpr] = ACTIONS(5773), + [anon_sym_volatile] = ACTIONS(5773), + [anon_sym_restrict] = ACTIONS(5773), + [anon_sym___restrict__] = ACTIONS(5773), + [anon_sym__Atomic] = ACTIONS(5773), + [anon_sym__Noreturn] = ACTIONS(5773), + [anon_sym_noreturn] = ACTIONS(5773), + [anon_sym_mutable] = ACTIONS(5773), + [anon_sym_constinit] = ACTIONS(5773), + [anon_sym_consteval] = ACTIONS(5773), + [sym_primitive_type] = ACTIONS(5773), + [anon_sym_enum] = ACTIONS(5773), + [anon_sym_class] = ACTIONS(5773), + [anon_sym_struct] = ACTIONS(5773), + [anon_sym_union] = ACTIONS(5773), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5773), + [anon_sym_decltype] = ACTIONS(5773), + [anon_sym_virtual] = ACTIONS(5773), + [anon_sym_alignas] = ACTIONS(5773), + [anon_sym_explicit] = ACTIONS(5773), + [anon_sym_typename] = ACTIONS(5773), + [anon_sym_template] = ACTIONS(5773), + [anon_sym_operator] = ACTIONS(5773), + [anon_sym_friend] = ACTIONS(5773), + [anon_sym_public] = ACTIONS(5773), + [anon_sym_private] = ACTIONS(5773), + [anon_sym_protected] = ACTIONS(5773), + [anon_sym_using] = ACTIONS(5773), + [anon_sym_static_assert] = ACTIONS(5773), + [sym_semgrep_metavar] = ACTIONS(5775), + }, + [2426] = { + [sym_identifier] = ACTIONS(3503), + [aux_sym_preproc_def_token1] = ACTIONS(3503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3505), + [aux_sym_preproc_if_token1] = ACTIONS(3503), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3503), + [sym_preproc_directive] = ACTIONS(3503), + [anon_sym_LPAREN2] = ACTIONS(3505), + [anon_sym_TILDE] = ACTIONS(3505), + [anon_sym_STAR] = ACTIONS(3505), + [anon_sym_AMP_AMP] = ACTIONS(3505), + [anon_sym_AMP] = ACTIONS(3503), + [anon_sym___extension__] = ACTIONS(3503), + [anon_sym_typedef] = ACTIONS(3503), + [anon_sym_extern] = ACTIONS(3503), + [anon_sym___attribute__] = ACTIONS(3503), + [anon_sym_COLON_COLON] = ACTIONS(3505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3505), + [anon_sym___declspec] = ACTIONS(3503), + [anon_sym___based] = ACTIONS(3503), + [anon_sym_RBRACE] = ACTIONS(3505), + [anon_sym_signed] = ACTIONS(3503), + [anon_sym_unsigned] = ACTIONS(3503), + [anon_sym_long] = ACTIONS(3503), + [anon_sym_short] = ACTIONS(3503), + [anon_sym_LBRACK] = ACTIONS(3503), + [anon_sym_static] = ACTIONS(3503), + [anon_sym_register] = ACTIONS(3503), + [anon_sym_inline] = ACTIONS(3503), + [anon_sym___inline] = ACTIONS(3503), + [anon_sym___inline__] = ACTIONS(3503), + [anon_sym___forceinline] = ACTIONS(3503), + [anon_sym_thread_local] = ACTIONS(3503), + [anon_sym___thread] = ACTIONS(3503), + [anon_sym_const] = ACTIONS(3503), + [anon_sym_constexpr] = ACTIONS(3503), + [anon_sym_volatile] = ACTIONS(3503), + [anon_sym_restrict] = ACTIONS(3503), + [anon_sym___restrict__] = ACTIONS(3503), + [anon_sym__Atomic] = ACTIONS(3503), + [anon_sym__Noreturn] = ACTIONS(3503), + [anon_sym_noreturn] = ACTIONS(3503), + [anon_sym_mutable] = ACTIONS(3503), + [anon_sym_constinit] = ACTIONS(3503), + [anon_sym_consteval] = ACTIONS(3503), + [sym_primitive_type] = ACTIONS(3503), + [anon_sym_enum] = ACTIONS(3503), + [anon_sym_class] = ACTIONS(3503), + [anon_sym_struct] = ACTIONS(3503), + [anon_sym_union] = ACTIONS(3503), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3503), + [anon_sym_decltype] = ACTIONS(3503), + [anon_sym_virtual] = ACTIONS(3503), + [anon_sym_alignas] = ACTIONS(3503), + [anon_sym_explicit] = ACTIONS(3503), + [anon_sym_typename] = ACTIONS(3503), + [anon_sym_template] = ACTIONS(3503), + [anon_sym_operator] = ACTIONS(3503), + [anon_sym_friend] = ACTIONS(3503), + [anon_sym_public] = ACTIONS(3503), + [anon_sym_private] = ACTIONS(3503), + [anon_sym_protected] = ACTIONS(3503), + [anon_sym_using] = ACTIONS(3503), + [anon_sym_static_assert] = ACTIONS(3503), + [sym_semgrep_metavar] = ACTIONS(3505), + }, + [2427] = { + [sym_identifier] = ACTIONS(3577), + [aux_sym_preproc_def_token1] = ACTIONS(3577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3579), + [aux_sym_preproc_if_token1] = ACTIONS(3577), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3577), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3577), + [sym_preproc_directive] = ACTIONS(3577), + [anon_sym_LPAREN2] = ACTIONS(3579), + [anon_sym_TILDE] = ACTIONS(3579), + [anon_sym_STAR] = ACTIONS(3579), + [anon_sym_AMP_AMP] = ACTIONS(3579), + [anon_sym_AMP] = ACTIONS(3577), + [anon_sym___extension__] = ACTIONS(3577), + [anon_sym_typedef] = ACTIONS(3577), + [anon_sym_extern] = ACTIONS(3577), + [anon_sym___attribute__] = ACTIONS(3577), + [anon_sym_COLON_COLON] = ACTIONS(3579), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3579), + [anon_sym___declspec] = ACTIONS(3577), + [anon_sym___based] = ACTIONS(3577), + [anon_sym_RBRACE] = ACTIONS(3579), + [anon_sym_signed] = ACTIONS(3577), + [anon_sym_unsigned] = ACTIONS(3577), + [anon_sym_long] = ACTIONS(3577), + [anon_sym_short] = ACTIONS(3577), + [anon_sym_LBRACK] = ACTIONS(3577), + [anon_sym_static] = ACTIONS(3577), + [anon_sym_register] = ACTIONS(3577), + [anon_sym_inline] = ACTIONS(3577), + [anon_sym___inline] = ACTIONS(3577), + [anon_sym___inline__] = ACTIONS(3577), + [anon_sym___forceinline] = ACTIONS(3577), + [anon_sym_thread_local] = ACTIONS(3577), + [anon_sym___thread] = ACTIONS(3577), + [anon_sym_const] = ACTIONS(3577), + [anon_sym_constexpr] = ACTIONS(3577), + [anon_sym_volatile] = ACTIONS(3577), + [anon_sym_restrict] = ACTIONS(3577), + [anon_sym___restrict__] = ACTIONS(3577), + [anon_sym__Atomic] = ACTIONS(3577), + [anon_sym__Noreturn] = ACTIONS(3577), + [anon_sym_noreturn] = ACTIONS(3577), + [anon_sym_mutable] = ACTIONS(3577), + [anon_sym_constinit] = ACTIONS(3577), + [anon_sym_consteval] = ACTIONS(3577), + [sym_primitive_type] = ACTIONS(3577), + [anon_sym_enum] = ACTIONS(3577), + [anon_sym_class] = ACTIONS(3577), + [anon_sym_struct] = ACTIONS(3577), + [anon_sym_union] = ACTIONS(3577), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3577), + [anon_sym_decltype] = ACTIONS(3577), + [anon_sym_virtual] = ACTIONS(3577), + [anon_sym_alignas] = ACTIONS(3577), + [anon_sym_explicit] = ACTIONS(3577), + [anon_sym_typename] = ACTIONS(3577), + [anon_sym_template] = ACTIONS(3577), + [anon_sym_operator] = ACTIONS(3577), + [anon_sym_friend] = ACTIONS(3577), + [anon_sym_public] = ACTIONS(3577), + [anon_sym_private] = ACTIONS(3577), + [anon_sym_protected] = ACTIONS(3577), + [anon_sym_using] = ACTIONS(3577), + [anon_sym_static_assert] = ACTIONS(3577), + [sym_semgrep_metavar] = ACTIONS(3579), + }, + [2428] = { + [sym_template_argument_list] = STATE(2048), + [aux_sym_sized_type_specifier_repeat1] = STATE(2455), + [sym_identifier] = ACTIONS(4763), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4771), + [anon_sym_COMMA] = ACTIONS(4771), + [aux_sym_preproc_if_token2] = ACTIONS(4771), + [aux_sym_preproc_else_token1] = ACTIONS(4771), + [aux_sym_preproc_elif_token1] = ACTIONS(4763), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4771), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4771), + [anon_sym_LPAREN2] = ACTIONS(4771), + [anon_sym_DASH] = ACTIONS(4763), + [anon_sym_PLUS] = ACTIONS(4763), + [anon_sym_STAR] = ACTIONS(4763), + [anon_sym_SLASH] = ACTIONS(4763), + [anon_sym_PERCENT] = ACTIONS(4763), + [anon_sym_PIPE_PIPE] = ACTIONS(4771), + [anon_sym_AMP_AMP] = ACTIONS(4771), + [anon_sym_PIPE] = ACTIONS(4763), + [anon_sym_CARET] = ACTIONS(4763), + [anon_sym_AMP] = ACTIONS(4763), + [anon_sym_EQ_EQ] = ACTIONS(4771), + [anon_sym_BANG_EQ] = ACTIONS(4771), + [anon_sym_GT] = ACTIONS(4763), + [anon_sym_GT_EQ] = ACTIONS(4771), + [anon_sym_LT_EQ] = ACTIONS(4763), + [anon_sym_LT] = ACTIONS(6379), + [anon_sym_LT_LT] = ACTIONS(4763), + [anon_sym_GT_GT] = ACTIONS(4763), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(4771), + [anon_sym_signed] = ACTIONS(6154), + [anon_sym_unsigned] = ACTIONS(6154), + [anon_sym_long] = ACTIONS(6154), + [anon_sym_short] = ACTIONS(6154), + [anon_sym_LBRACK] = ACTIONS(4771), + [anon_sym_EQ] = ACTIONS(4763), + [anon_sym_QMARK] = ACTIONS(4771), + [anon_sym_STAR_EQ] = ACTIONS(4771), + [anon_sym_SLASH_EQ] = ACTIONS(4771), + [anon_sym_PERCENT_EQ] = ACTIONS(4771), + [anon_sym_PLUS_EQ] = ACTIONS(4771), + [anon_sym_DASH_EQ] = ACTIONS(4771), + [anon_sym_LT_LT_EQ] = ACTIONS(4771), + [anon_sym_GT_GT_EQ] = ACTIONS(4771), + [anon_sym_AMP_EQ] = ACTIONS(4771), + [anon_sym_CARET_EQ] = ACTIONS(4771), + [anon_sym_PIPE_EQ] = ACTIONS(4771), + [anon_sym_and_eq] = ACTIONS(4763), + [anon_sym_or_eq] = ACTIONS(4763), + [anon_sym_xor_eq] = ACTIONS(4763), + [anon_sym_LT_EQ_GT] = ACTIONS(4771), + [anon_sym_or] = ACTIONS(4763), + [anon_sym_and] = ACTIONS(4763), + [anon_sym_bitor] = ACTIONS(4763), + [anon_sym_xor] = ACTIONS(4763), + [anon_sym_bitand] = ACTIONS(4763), + [anon_sym_not_eq] = ACTIONS(4763), + [anon_sym_DASH_DASH] = ACTIONS(4771), + [anon_sym_PLUS_PLUS] = ACTIONS(4771), + [anon_sym_DOT] = ACTIONS(4763), + [anon_sym_DOT_STAR] = ACTIONS(4771), + [anon_sym_DASH_GT] = ACTIONS(4771), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4763), + [anon_sym_decltype] = ACTIONS(4763), + }, + [2429] = { + [sym_identifier] = ACTIONS(5777), + [aux_sym_preproc_def_token1] = ACTIONS(5777), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5779), + [aux_sym_preproc_if_token1] = ACTIONS(5777), + [aux_sym_preproc_if_token2] = ACTIONS(5777), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5777), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5777), + [sym_preproc_directive] = ACTIONS(5777), + [anon_sym_LPAREN2] = ACTIONS(5779), + [anon_sym_TILDE] = ACTIONS(5779), + [anon_sym_STAR] = ACTIONS(5779), + [anon_sym_AMP_AMP] = ACTIONS(5779), + [anon_sym_AMP] = ACTIONS(5777), + [anon_sym___extension__] = ACTIONS(5777), + [anon_sym_typedef] = ACTIONS(5777), + [anon_sym_extern] = ACTIONS(5777), + [anon_sym___attribute__] = ACTIONS(5777), + [anon_sym_COLON_COLON] = ACTIONS(5779), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5779), + [anon_sym___declspec] = ACTIONS(5777), + [anon_sym___based] = ACTIONS(5777), + [anon_sym_signed] = ACTIONS(5777), + [anon_sym_unsigned] = ACTIONS(5777), + [anon_sym_long] = ACTIONS(5777), + [anon_sym_short] = ACTIONS(5777), + [anon_sym_LBRACK] = ACTIONS(5777), + [anon_sym_static] = ACTIONS(5777), + [anon_sym_register] = ACTIONS(5777), + [anon_sym_inline] = ACTIONS(5777), + [anon_sym___inline] = ACTIONS(5777), + [anon_sym___inline__] = ACTIONS(5777), + [anon_sym___forceinline] = ACTIONS(5777), + [anon_sym_thread_local] = ACTIONS(5777), + [anon_sym___thread] = ACTIONS(5777), + [anon_sym_const] = ACTIONS(5777), + [anon_sym_constexpr] = ACTIONS(5777), + [anon_sym_volatile] = ACTIONS(5777), + [anon_sym_restrict] = ACTIONS(5777), + [anon_sym___restrict__] = ACTIONS(5777), + [anon_sym__Atomic] = ACTIONS(5777), + [anon_sym__Noreturn] = ACTIONS(5777), + [anon_sym_noreturn] = ACTIONS(5777), + [anon_sym_mutable] = ACTIONS(5777), + [anon_sym_constinit] = ACTIONS(5777), + [anon_sym_consteval] = ACTIONS(5777), + [sym_primitive_type] = ACTIONS(5777), + [anon_sym_enum] = ACTIONS(5777), + [anon_sym_class] = ACTIONS(5777), + [anon_sym_struct] = ACTIONS(5777), + [anon_sym_union] = ACTIONS(5777), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5777), + [anon_sym_decltype] = ACTIONS(5777), + [anon_sym_virtual] = ACTIONS(5777), + [anon_sym_alignas] = ACTIONS(5777), + [anon_sym_explicit] = ACTIONS(5777), + [anon_sym_typename] = ACTIONS(5777), + [anon_sym_template] = ACTIONS(5777), + [anon_sym_operator] = ACTIONS(5777), + [anon_sym_friend] = ACTIONS(5777), + [anon_sym_public] = ACTIONS(5777), + [anon_sym_private] = ACTIONS(5777), + [anon_sym_protected] = ACTIONS(5777), + [anon_sym_using] = ACTIONS(5777), + [anon_sym_static_assert] = ACTIONS(5777), + [sym_semgrep_metavar] = ACTIONS(5779), + }, + [2430] = { + [sym_identifier] = ACTIONS(3619), + [aux_sym_preproc_def_token1] = ACTIONS(3619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3621), + [aux_sym_preproc_if_token1] = ACTIONS(3619), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3619), + [sym_preproc_directive] = ACTIONS(3619), + [anon_sym_LPAREN2] = ACTIONS(3621), + [anon_sym_TILDE] = ACTIONS(3621), + [anon_sym_STAR] = ACTIONS(3621), + [anon_sym_AMP_AMP] = ACTIONS(3621), + [anon_sym_AMP] = ACTIONS(3619), + [anon_sym___extension__] = ACTIONS(3619), + [anon_sym_typedef] = ACTIONS(3619), + [anon_sym_extern] = ACTIONS(3619), + [anon_sym___attribute__] = ACTIONS(3619), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3621), + [anon_sym___declspec] = ACTIONS(3619), + [anon_sym___based] = ACTIONS(3619), + [anon_sym_RBRACE] = ACTIONS(3621), + [anon_sym_signed] = ACTIONS(3619), + [anon_sym_unsigned] = ACTIONS(3619), + [anon_sym_long] = ACTIONS(3619), + [anon_sym_short] = ACTIONS(3619), + [anon_sym_LBRACK] = ACTIONS(3619), + [anon_sym_static] = ACTIONS(3619), + [anon_sym_register] = ACTIONS(3619), + [anon_sym_inline] = ACTIONS(3619), + [anon_sym___inline] = ACTIONS(3619), + [anon_sym___inline__] = ACTIONS(3619), + [anon_sym___forceinline] = ACTIONS(3619), + [anon_sym_thread_local] = ACTIONS(3619), + [anon_sym___thread] = ACTIONS(3619), + [anon_sym_const] = ACTIONS(3619), + [anon_sym_constexpr] = ACTIONS(3619), + [anon_sym_volatile] = ACTIONS(3619), + [anon_sym_restrict] = ACTIONS(3619), + [anon_sym___restrict__] = ACTIONS(3619), + [anon_sym__Atomic] = ACTIONS(3619), + [anon_sym__Noreturn] = ACTIONS(3619), + [anon_sym_noreturn] = ACTIONS(3619), + [anon_sym_mutable] = ACTIONS(3619), + [anon_sym_constinit] = ACTIONS(3619), + [anon_sym_consteval] = ACTIONS(3619), + [sym_primitive_type] = ACTIONS(3619), + [anon_sym_enum] = ACTIONS(3619), + [anon_sym_class] = ACTIONS(3619), + [anon_sym_struct] = ACTIONS(3619), + [anon_sym_union] = ACTIONS(3619), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3619), + [anon_sym_decltype] = ACTIONS(3619), + [anon_sym_virtual] = ACTIONS(3619), + [anon_sym_alignas] = ACTIONS(3619), + [anon_sym_explicit] = ACTIONS(3619), + [anon_sym_typename] = ACTIONS(3619), + [anon_sym_template] = ACTIONS(3619), + [anon_sym_operator] = ACTIONS(3619), + [anon_sym_friend] = ACTIONS(3619), + [anon_sym_public] = ACTIONS(3619), + [anon_sym_private] = ACTIONS(3619), + [anon_sym_protected] = ACTIONS(3619), + [anon_sym_using] = ACTIONS(3619), + [anon_sym_static_assert] = ACTIONS(3619), + [sym_semgrep_metavar] = ACTIONS(3621), + }, + [2431] = { + [sym_identifier] = ACTIONS(5781), + [aux_sym_preproc_def_token1] = ACTIONS(5781), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5783), + [aux_sym_preproc_if_token1] = ACTIONS(5781), + [aux_sym_preproc_if_token2] = ACTIONS(5781), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5781), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5781), + [sym_preproc_directive] = ACTIONS(5781), + [anon_sym_LPAREN2] = ACTIONS(5783), + [anon_sym_TILDE] = ACTIONS(5783), + [anon_sym_STAR] = ACTIONS(5783), + [anon_sym_AMP_AMP] = ACTIONS(5783), + [anon_sym_AMP] = ACTIONS(5781), + [anon_sym___extension__] = ACTIONS(5781), + [anon_sym_typedef] = ACTIONS(5781), + [anon_sym_extern] = ACTIONS(5781), + [anon_sym___attribute__] = ACTIONS(5781), + [anon_sym_COLON_COLON] = ACTIONS(5783), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5783), + [anon_sym___declspec] = ACTIONS(5781), + [anon_sym___based] = ACTIONS(5781), + [anon_sym_signed] = ACTIONS(5781), + [anon_sym_unsigned] = ACTIONS(5781), + [anon_sym_long] = ACTIONS(5781), + [anon_sym_short] = ACTIONS(5781), + [anon_sym_LBRACK] = ACTIONS(5781), + [anon_sym_static] = ACTIONS(5781), + [anon_sym_register] = ACTIONS(5781), + [anon_sym_inline] = ACTIONS(5781), + [anon_sym___inline] = ACTIONS(5781), + [anon_sym___inline__] = ACTIONS(5781), + [anon_sym___forceinline] = ACTIONS(5781), + [anon_sym_thread_local] = ACTIONS(5781), + [anon_sym___thread] = ACTIONS(5781), + [anon_sym_const] = ACTIONS(5781), + [anon_sym_constexpr] = ACTIONS(5781), + [anon_sym_volatile] = ACTIONS(5781), + [anon_sym_restrict] = ACTIONS(5781), + [anon_sym___restrict__] = ACTIONS(5781), + [anon_sym__Atomic] = ACTIONS(5781), + [anon_sym__Noreturn] = ACTIONS(5781), + [anon_sym_noreturn] = ACTIONS(5781), + [anon_sym_mutable] = ACTIONS(5781), + [anon_sym_constinit] = ACTIONS(5781), + [anon_sym_consteval] = ACTIONS(5781), + [sym_primitive_type] = ACTIONS(5781), + [anon_sym_enum] = ACTIONS(5781), + [anon_sym_class] = ACTIONS(5781), + [anon_sym_struct] = ACTIONS(5781), + [anon_sym_union] = ACTIONS(5781), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5781), + [anon_sym_decltype] = ACTIONS(5781), + [anon_sym_virtual] = ACTIONS(5781), + [anon_sym_alignas] = ACTIONS(5781), + [anon_sym_explicit] = ACTIONS(5781), + [anon_sym_typename] = ACTIONS(5781), + [anon_sym_template] = ACTIONS(5781), + [anon_sym_operator] = ACTIONS(5781), + [anon_sym_friend] = ACTIONS(5781), + [anon_sym_public] = ACTIONS(5781), + [anon_sym_private] = ACTIONS(5781), + [anon_sym_protected] = ACTIONS(5781), + [anon_sym_using] = ACTIONS(5781), + [anon_sym_static_assert] = ACTIONS(5781), + [sym_semgrep_metavar] = ACTIONS(5783), + }, + [2432] = { + [sym_identifier] = ACTIONS(5785), + [aux_sym_preproc_def_token1] = ACTIONS(5785), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5787), + [aux_sym_preproc_if_token1] = ACTIONS(5785), + [aux_sym_preproc_if_token2] = ACTIONS(5785), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5785), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5785), + [sym_preproc_directive] = ACTIONS(5785), + [anon_sym_LPAREN2] = ACTIONS(5787), + [anon_sym_TILDE] = ACTIONS(5787), + [anon_sym_STAR] = ACTIONS(5787), + [anon_sym_AMP_AMP] = ACTIONS(5787), + [anon_sym_AMP] = ACTIONS(5785), + [anon_sym___extension__] = ACTIONS(5785), + [anon_sym_typedef] = ACTIONS(5785), + [anon_sym_extern] = ACTIONS(5785), + [anon_sym___attribute__] = ACTIONS(5785), + [anon_sym_COLON_COLON] = ACTIONS(5787), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5787), + [anon_sym___declspec] = ACTIONS(5785), + [anon_sym___based] = ACTIONS(5785), + [anon_sym_signed] = ACTIONS(5785), + [anon_sym_unsigned] = ACTIONS(5785), + [anon_sym_long] = ACTIONS(5785), + [anon_sym_short] = ACTIONS(5785), + [anon_sym_LBRACK] = ACTIONS(5785), + [anon_sym_static] = ACTIONS(5785), + [anon_sym_register] = ACTIONS(5785), + [anon_sym_inline] = ACTIONS(5785), + [anon_sym___inline] = ACTIONS(5785), + [anon_sym___inline__] = ACTIONS(5785), + [anon_sym___forceinline] = ACTIONS(5785), + [anon_sym_thread_local] = ACTIONS(5785), + [anon_sym___thread] = ACTIONS(5785), + [anon_sym_const] = ACTIONS(5785), + [anon_sym_constexpr] = ACTIONS(5785), + [anon_sym_volatile] = ACTIONS(5785), + [anon_sym_restrict] = ACTIONS(5785), + [anon_sym___restrict__] = ACTIONS(5785), + [anon_sym__Atomic] = ACTIONS(5785), + [anon_sym__Noreturn] = ACTIONS(5785), + [anon_sym_noreturn] = ACTIONS(5785), + [anon_sym_mutable] = ACTIONS(5785), + [anon_sym_constinit] = ACTIONS(5785), + [anon_sym_consteval] = ACTIONS(5785), + [sym_primitive_type] = ACTIONS(5785), + [anon_sym_enum] = ACTIONS(5785), + [anon_sym_class] = ACTIONS(5785), + [anon_sym_struct] = ACTIONS(5785), + [anon_sym_union] = ACTIONS(5785), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5785), + [anon_sym_decltype] = ACTIONS(5785), + [anon_sym_virtual] = ACTIONS(5785), + [anon_sym_alignas] = ACTIONS(5785), + [anon_sym_explicit] = ACTIONS(5785), + [anon_sym_typename] = ACTIONS(5785), + [anon_sym_template] = ACTIONS(5785), + [anon_sym_operator] = ACTIONS(5785), + [anon_sym_friend] = ACTIONS(5785), + [anon_sym_public] = ACTIONS(5785), + [anon_sym_private] = ACTIONS(5785), + [anon_sym_protected] = ACTIONS(5785), + [anon_sym_using] = ACTIONS(5785), + [anon_sym_static_assert] = ACTIONS(5785), + [sym_semgrep_metavar] = ACTIONS(5787), + }, + [2433] = { + [sym_string_literal] = STATE(2378), + [sym_template_argument_list] = STATE(3547), + [sym_raw_string_literal] = STATE(2378), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4765), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4773), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4773), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4773), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(6381), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_EQ] = ACTIONS(4773), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4765), + [anon_sym_SLASH_EQ] = ACTIONS(4765), + [anon_sym_PERCENT_EQ] = ACTIONS(4765), + [anon_sym_PLUS_EQ] = ACTIONS(4765), + [anon_sym_DASH_EQ] = ACTIONS(4765), + [anon_sym_LT_LT_EQ] = ACTIONS(4765), + [anon_sym_GT_GT_EQ] = ACTIONS(4773), + [anon_sym_AMP_EQ] = ACTIONS(4765), + [anon_sym_CARET_EQ] = ACTIONS(4765), + [anon_sym_PIPE_EQ] = ACTIONS(4765), + [anon_sym_and_eq] = ACTIONS(4765), + [anon_sym_or_eq] = ACTIONS(4765), + [anon_sym_xor_eq] = ACTIONS(4765), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4765), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4765), + [anon_sym_not_eq] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(6304), + [anon_sym_u_DQUOTE] = ACTIONS(6304), + [anon_sym_U_DQUOTE] = ACTIONS(6304), + [anon_sym_u8_DQUOTE] = ACTIONS(6304), + [anon_sym_DQUOTE] = ACTIONS(6304), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(4765), + [anon_sym_R_DQUOTE] = ACTIONS(6306), + [anon_sym_LR_DQUOTE] = ACTIONS(6306), + [anon_sym_uR_DQUOTE] = ACTIONS(6306), + [anon_sym_UR_DQUOTE] = ACTIONS(6306), + [anon_sym_u8R_DQUOTE] = ACTIONS(6306), + }, + [2434] = { + [sym_identifier] = ACTIONS(5789), + [aux_sym_preproc_def_token1] = ACTIONS(5789), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5791), + [aux_sym_preproc_if_token1] = ACTIONS(5789), + [aux_sym_preproc_if_token2] = ACTIONS(5789), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5789), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5789), + [sym_preproc_directive] = ACTIONS(5789), + [anon_sym_LPAREN2] = ACTIONS(5791), + [anon_sym_TILDE] = ACTIONS(5791), + [anon_sym_STAR] = ACTIONS(5791), + [anon_sym_AMP_AMP] = ACTIONS(5791), + [anon_sym_AMP] = ACTIONS(5789), + [anon_sym___extension__] = ACTIONS(5789), + [anon_sym_typedef] = ACTIONS(5789), + [anon_sym_extern] = ACTIONS(5789), + [anon_sym___attribute__] = ACTIONS(5789), + [anon_sym_COLON_COLON] = ACTIONS(5791), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5791), + [anon_sym___declspec] = ACTIONS(5789), + [anon_sym___based] = ACTIONS(5789), + [anon_sym_signed] = ACTIONS(5789), + [anon_sym_unsigned] = ACTIONS(5789), + [anon_sym_long] = ACTIONS(5789), + [anon_sym_short] = ACTIONS(5789), + [anon_sym_LBRACK] = ACTIONS(5789), + [anon_sym_static] = ACTIONS(5789), + [anon_sym_register] = ACTIONS(5789), + [anon_sym_inline] = ACTIONS(5789), + [anon_sym___inline] = ACTIONS(5789), + [anon_sym___inline__] = ACTIONS(5789), + [anon_sym___forceinline] = ACTIONS(5789), + [anon_sym_thread_local] = ACTIONS(5789), + [anon_sym___thread] = ACTIONS(5789), + [anon_sym_const] = ACTIONS(5789), + [anon_sym_constexpr] = ACTIONS(5789), + [anon_sym_volatile] = ACTIONS(5789), + [anon_sym_restrict] = ACTIONS(5789), + [anon_sym___restrict__] = ACTIONS(5789), + [anon_sym__Atomic] = ACTIONS(5789), + [anon_sym__Noreturn] = ACTIONS(5789), + [anon_sym_noreturn] = ACTIONS(5789), + [anon_sym_mutable] = ACTIONS(5789), + [anon_sym_constinit] = ACTIONS(5789), + [anon_sym_consteval] = ACTIONS(5789), + [sym_primitive_type] = ACTIONS(5789), + [anon_sym_enum] = ACTIONS(5789), + [anon_sym_class] = ACTIONS(5789), + [anon_sym_struct] = ACTIONS(5789), + [anon_sym_union] = ACTIONS(5789), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5789), + [anon_sym_decltype] = ACTIONS(5789), + [anon_sym_virtual] = ACTIONS(5789), + [anon_sym_alignas] = ACTIONS(5789), + [anon_sym_explicit] = ACTIONS(5789), + [anon_sym_typename] = ACTIONS(5789), + [anon_sym_template] = ACTIONS(5789), + [anon_sym_operator] = ACTIONS(5789), + [anon_sym_friend] = ACTIONS(5789), + [anon_sym_public] = ACTIONS(5789), + [anon_sym_private] = ACTIONS(5789), + [anon_sym_protected] = ACTIONS(5789), + [anon_sym_using] = ACTIONS(5789), + [anon_sym_static_assert] = ACTIONS(5789), + [sym_semgrep_metavar] = ACTIONS(5791), + }, + [2435] = { + [sym_argument_list] = STATE(2575), + [sym_initializer_list] = STATE(2575), + [ts_builtin_sym_end] = ACTIONS(6384), + [sym_identifier] = ACTIONS(6386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6384), + [anon_sym_COMMA] = ACTIONS(6384), + [anon_sym_RPAREN] = ACTIONS(6384), + [aux_sym_preproc_if_token2] = ACTIONS(6384), + [aux_sym_preproc_else_token1] = ACTIONS(6384), + [aux_sym_preproc_elif_token1] = ACTIONS(6386), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6384), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6384), + [anon_sym_LPAREN2] = ACTIONS(5761), + [anon_sym_DASH] = ACTIONS(6386), + [anon_sym_PLUS] = ACTIONS(6386), + [anon_sym_STAR] = ACTIONS(6386), + [anon_sym_SLASH] = ACTIONS(6386), + [anon_sym_PERCENT] = ACTIONS(6386), + [anon_sym_PIPE_PIPE] = ACTIONS(6384), + [anon_sym_AMP_AMP] = ACTIONS(6384), + [anon_sym_PIPE] = ACTIONS(6386), + [anon_sym_CARET] = ACTIONS(6386), + [anon_sym_AMP] = ACTIONS(6386), + [anon_sym_EQ_EQ] = ACTIONS(6384), + [anon_sym_BANG_EQ] = ACTIONS(6384), + [anon_sym_GT] = ACTIONS(6386), + [anon_sym_GT_EQ] = ACTIONS(6384), + [anon_sym_LT_EQ] = ACTIONS(6386), + [anon_sym_LT] = ACTIONS(6386), + [anon_sym_LT_LT] = ACTIONS(6386), + [anon_sym_GT_GT] = ACTIONS(6386), + [anon_sym_SEMI] = ACTIONS(6384), + [anon_sym___attribute__] = ACTIONS(6386), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_RBRACE] = ACTIONS(6384), + [anon_sym_LBRACK] = ACTIONS(6384), + [anon_sym_RBRACK] = ACTIONS(6384), + [anon_sym_EQ] = ACTIONS(6386), + [anon_sym_COLON] = ACTIONS(6384), + [anon_sym_QMARK] = ACTIONS(6384), + [anon_sym_STAR_EQ] = ACTIONS(6384), + [anon_sym_SLASH_EQ] = ACTIONS(6384), + [anon_sym_PERCENT_EQ] = ACTIONS(6384), + [anon_sym_PLUS_EQ] = ACTIONS(6384), + [anon_sym_DASH_EQ] = ACTIONS(6384), + [anon_sym_LT_LT_EQ] = ACTIONS(6384), + [anon_sym_GT_GT_EQ] = ACTIONS(6384), + [anon_sym_AMP_EQ] = ACTIONS(6384), + [anon_sym_CARET_EQ] = ACTIONS(6384), + [anon_sym_PIPE_EQ] = ACTIONS(6384), + [anon_sym_and_eq] = ACTIONS(6386), + [anon_sym_or_eq] = ACTIONS(6386), + [anon_sym_xor_eq] = ACTIONS(6386), + [anon_sym_LT_EQ_GT] = ACTIONS(6384), + [anon_sym_or] = ACTIONS(6386), + [anon_sym_and] = ACTIONS(6386), + [anon_sym_bitor] = ACTIONS(6386), + [anon_sym_xor] = ACTIONS(6386), + [anon_sym_bitand] = ACTIONS(6386), + [anon_sym_not_eq] = ACTIONS(6386), + [anon_sym_DASH_DASH] = ACTIONS(6384), + [anon_sym_PLUS_PLUS] = ACTIONS(6384), + [anon_sym_DOT] = ACTIONS(6386), + [anon_sym_DOT_STAR] = ACTIONS(6384), + [anon_sym_DASH_GT] = ACTIONS(6384), + [sym_comment] = ACTIONS(3), + }, + [2436] = { + [sym_identifier] = ACTIONS(5793), + [aux_sym_preproc_def_token1] = ACTIONS(5793), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5795), + [aux_sym_preproc_if_token1] = ACTIONS(5793), + [aux_sym_preproc_if_token2] = ACTIONS(5793), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5793), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5793), + [sym_preproc_directive] = ACTIONS(5793), + [anon_sym_LPAREN2] = ACTIONS(5795), + [anon_sym_TILDE] = ACTIONS(5795), + [anon_sym_STAR] = ACTIONS(5795), + [anon_sym_AMP_AMP] = ACTIONS(5795), + [anon_sym_AMP] = ACTIONS(5793), + [anon_sym___extension__] = ACTIONS(5793), + [anon_sym_typedef] = ACTIONS(5793), + [anon_sym_extern] = ACTIONS(5793), + [anon_sym___attribute__] = ACTIONS(5793), + [anon_sym_COLON_COLON] = ACTIONS(5795), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5795), + [anon_sym___declspec] = ACTIONS(5793), + [anon_sym___based] = ACTIONS(5793), + [anon_sym_signed] = ACTIONS(5793), + [anon_sym_unsigned] = ACTIONS(5793), + [anon_sym_long] = ACTIONS(5793), + [anon_sym_short] = ACTIONS(5793), + [anon_sym_LBRACK] = ACTIONS(5793), + [anon_sym_static] = ACTIONS(5793), + [anon_sym_register] = ACTIONS(5793), + [anon_sym_inline] = ACTIONS(5793), + [anon_sym___inline] = ACTIONS(5793), + [anon_sym___inline__] = ACTIONS(5793), + [anon_sym___forceinline] = ACTIONS(5793), + [anon_sym_thread_local] = ACTIONS(5793), + [anon_sym___thread] = ACTIONS(5793), + [anon_sym_const] = ACTIONS(5793), + [anon_sym_constexpr] = ACTIONS(5793), + [anon_sym_volatile] = ACTIONS(5793), + [anon_sym_restrict] = ACTIONS(5793), + [anon_sym___restrict__] = ACTIONS(5793), + [anon_sym__Atomic] = ACTIONS(5793), + [anon_sym__Noreturn] = ACTIONS(5793), + [anon_sym_noreturn] = ACTIONS(5793), + [anon_sym_mutable] = ACTIONS(5793), + [anon_sym_constinit] = ACTIONS(5793), + [anon_sym_consteval] = ACTIONS(5793), + [sym_primitive_type] = ACTIONS(5793), + [anon_sym_enum] = ACTIONS(5793), + [anon_sym_class] = ACTIONS(5793), + [anon_sym_struct] = ACTIONS(5793), + [anon_sym_union] = ACTIONS(5793), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5793), + [anon_sym_decltype] = ACTIONS(5793), + [anon_sym_virtual] = ACTIONS(5793), + [anon_sym_alignas] = ACTIONS(5793), + [anon_sym_explicit] = ACTIONS(5793), + [anon_sym_typename] = ACTIONS(5793), + [anon_sym_template] = ACTIONS(5793), + [anon_sym_operator] = ACTIONS(5793), + [anon_sym_friend] = ACTIONS(5793), + [anon_sym_public] = ACTIONS(5793), + [anon_sym_private] = ACTIONS(5793), + [anon_sym_protected] = ACTIONS(5793), + [anon_sym_using] = ACTIONS(5793), + [anon_sym_static_assert] = ACTIONS(5793), + [sym_semgrep_metavar] = ACTIONS(5795), + }, + [2437] = { + [sym_identifier] = ACTIONS(5797), + [aux_sym_preproc_def_token1] = ACTIONS(5797), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5799), + [aux_sym_preproc_if_token1] = ACTIONS(5797), + [aux_sym_preproc_if_token2] = ACTIONS(5797), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5797), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5797), + [sym_preproc_directive] = ACTIONS(5797), + [anon_sym_LPAREN2] = ACTIONS(5799), + [anon_sym_TILDE] = ACTIONS(5799), + [anon_sym_STAR] = ACTIONS(5799), + [anon_sym_AMP_AMP] = ACTIONS(5799), + [anon_sym_AMP] = ACTIONS(5797), + [anon_sym___extension__] = ACTIONS(5797), + [anon_sym_typedef] = ACTIONS(5797), + [anon_sym_extern] = ACTIONS(5797), + [anon_sym___attribute__] = ACTIONS(5797), + [anon_sym_COLON_COLON] = ACTIONS(5799), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5799), + [anon_sym___declspec] = ACTIONS(5797), + [anon_sym___based] = ACTIONS(5797), + [anon_sym_signed] = ACTIONS(5797), + [anon_sym_unsigned] = ACTIONS(5797), + [anon_sym_long] = ACTIONS(5797), + [anon_sym_short] = ACTIONS(5797), + [anon_sym_LBRACK] = ACTIONS(5797), + [anon_sym_static] = ACTIONS(5797), + [anon_sym_register] = ACTIONS(5797), + [anon_sym_inline] = ACTIONS(5797), + [anon_sym___inline] = ACTIONS(5797), + [anon_sym___inline__] = ACTIONS(5797), + [anon_sym___forceinline] = ACTIONS(5797), + [anon_sym_thread_local] = ACTIONS(5797), + [anon_sym___thread] = ACTIONS(5797), + [anon_sym_const] = ACTIONS(5797), + [anon_sym_constexpr] = ACTIONS(5797), + [anon_sym_volatile] = ACTIONS(5797), + [anon_sym_restrict] = ACTIONS(5797), + [anon_sym___restrict__] = ACTIONS(5797), + [anon_sym__Atomic] = ACTIONS(5797), + [anon_sym__Noreturn] = ACTIONS(5797), + [anon_sym_noreturn] = ACTIONS(5797), + [anon_sym_mutable] = ACTIONS(5797), + [anon_sym_constinit] = ACTIONS(5797), + [anon_sym_consteval] = ACTIONS(5797), + [sym_primitive_type] = ACTIONS(5797), + [anon_sym_enum] = ACTIONS(5797), + [anon_sym_class] = ACTIONS(5797), + [anon_sym_struct] = ACTIONS(5797), + [anon_sym_union] = ACTIONS(5797), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5797), + [anon_sym_decltype] = ACTIONS(5797), + [anon_sym_virtual] = ACTIONS(5797), + [anon_sym_alignas] = ACTIONS(5797), + [anon_sym_explicit] = ACTIONS(5797), + [anon_sym_typename] = ACTIONS(5797), + [anon_sym_template] = ACTIONS(5797), + [anon_sym_operator] = ACTIONS(5797), + [anon_sym_friend] = ACTIONS(5797), + [anon_sym_public] = ACTIONS(5797), + [anon_sym_private] = ACTIONS(5797), + [anon_sym_protected] = ACTIONS(5797), + [anon_sym_using] = ACTIONS(5797), + [anon_sym_static_assert] = ACTIONS(5797), + [sym_semgrep_metavar] = ACTIONS(5799), + }, + [2438] = { + [sym_identifier] = ACTIONS(5801), + [aux_sym_preproc_def_token1] = ACTIONS(5801), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5803), + [aux_sym_preproc_if_token1] = ACTIONS(5801), + [aux_sym_preproc_if_token2] = ACTIONS(5801), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5801), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5801), + [sym_preproc_directive] = ACTIONS(5801), + [anon_sym_LPAREN2] = ACTIONS(5803), + [anon_sym_TILDE] = ACTIONS(5803), + [anon_sym_STAR] = ACTIONS(5803), + [anon_sym_AMP_AMP] = ACTIONS(5803), + [anon_sym_AMP] = ACTIONS(5801), + [anon_sym___extension__] = ACTIONS(5801), + [anon_sym_typedef] = ACTIONS(5801), + [anon_sym_extern] = ACTIONS(5801), + [anon_sym___attribute__] = ACTIONS(5801), + [anon_sym_COLON_COLON] = ACTIONS(5803), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5803), + [anon_sym___declspec] = ACTIONS(5801), + [anon_sym___based] = ACTIONS(5801), + [anon_sym_signed] = ACTIONS(5801), + [anon_sym_unsigned] = ACTIONS(5801), + [anon_sym_long] = ACTIONS(5801), + [anon_sym_short] = ACTIONS(5801), + [anon_sym_LBRACK] = ACTIONS(5801), + [anon_sym_static] = ACTIONS(5801), + [anon_sym_register] = ACTIONS(5801), + [anon_sym_inline] = ACTIONS(5801), + [anon_sym___inline] = ACTIONS(5801), + [anon_sym___inline__] = ACTIONS(5801), + [anon_sym___forceinline] = ACTIONS(5801), + [anon_sym_thread_local] = ACTIONS(5801), + [anon_sym___thread] = ACTIONS(5801), + [anon_sym_const] = ACTIONS(5801), + [anon_sym_constexpr] = ACTIONS(5801), + [anon_sym_volatile] = ACTIONS(5801), + [anon_sym_restrict] = ACTIONS(5801), + [anon_sym___restrict__] = ACTIONS(5801), + [anon_sym__Atomic] = ACTIONS(5801), + [anon_sym__Noreturn] = ACTIONS(5801), + [anon_sym_noreturn] = ACTIONS(5801), + [anon_sym_mutable] = ACTIONS(5801), + [anon_sym_constinit] = ACTIONS(5801), + [anon_sym_consteval] = ACTIONS(5801), + [sym_primitive_type] = ACTIONS(5801), + [anon_sym_enum] = ACTIONS(5801), + [anon_sym_class] = ACTIONS(5801), + [anon_sym_struct] = ACTIONS(5801), + [anon_sym_union] = ACTIONS(5801), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5801), + [anon_sym_decltype] = ACTIONS(5801), + [anon_sym_virtual] = ACTIONS(5801), + [anon_sym_alignas] = ACTIONS(5801), + [anon_sym_explicit] = ACTIONS(5801), + [anon_sym_typename] = ACTIONS(5801), + [anon_sym_template] = ACTIONS(5801), + [anon_sym_operator] = ACTIONS(5801), + [anon_sym_friend] = ACTIONS(5801), + [anon_sym_public] = ACTIONS(5801), + [anon_sym_private] = ACTIONS(5801), + [anon_sym_protected] = ACTIONS(5801), + [anon_sym_using] = ACTIONS(5801), + [anon_sym_static_assert] = ACTIONS(5801), + [sym_semgrep_metavar] = ACTIONS(5803), + }, + [2439] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2442), + [sym_identifier] = ACTIONS(6388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5965), + [anon_sym_COMMA] = ACTIONS(5965), + [aux_sym_preproc_if_token2] = ACTIONS(5965), + [aux_sym_preproc_else_token1] = ACTIONS(5965), + [aux_sym_preproc_elif_token1] = ACTIONS(5969), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5965), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5965), + [anon_sym_LPAREN2] = ACTIONS(5965), + [anon_sym_DASH] = ACTIONS(5969), + [anon_sym_PLUS] = ACTIONS(5969), + [anon_sym_STAR] = ACTIONS(5969), + [anon_sym_SLASH] = ACTIONS(5969), + [anon_sym_PERCENT] = ACTIONS(5969), + [anon_sym_PIPE_PIPE] = ACTIONS(5965), + [anon_sym_AMP_AMP] = ACTIONS(5965), + [anon_sym_PIPE] = ACTIONS(5969), + [anon_sym_CARET] = ACTIONS(5969), + [anon_sym_AMP] = ACTIONS(5969), + [anon_sym_EQ_EQ] = ACTIONS(5965), + [anon_sym_BANG_EQ] = ACTIONS(5965), + [anon_sym_GT] = ACTIONS(5969), + [anon_sym_GT_EQ] = ACTIONS(5965), + [anon_sym_LT_EQ] = ACTIONS(5969), + [anon_sym_LT] = ACTIONS(5969), + [anon_sym_LT_LT] = ACTIONS(5969), + [anon_sym_GT_GT] = ACTIONS(5969), + [anon_sym___attribute__] = ACTIONS(5969), + [anon_sym_LBRACE] = ACTIONS(5965), + [anon_sym_signed] = ACTIONS(6391), + [anon_sym_unsigned] = ACTIONS(6391), + [anon_sym_long] = ACTIONS(6391), + [anon_sym_short] = ACTIONS(6391), + [anon_sym_LBRACK] = ACTIONS(5965), + [anon_sym_EQ] = ACTIONS(5969), + [sym_primitive_type] = ACTIONS(6393), + [anon_sym_QMARK] = ACTIONS(5965), + [anon_sym_STAR_EQ] = ACTIONS(5965), + [anon_sym_SLASH_EQ] = ACTIONS(5965), + [anon_sym_PERCENT_EQ] = ACTIONS(5965), + [anon_sym_PLUS_EQ] = ACTIONS(5965), + [anon_sym_DASH_EQ] = ACTIONS(5965), + [anon_sym_LT_LT_EQ] = ACTIONS(5965), + [anon_sym_GT_GT_EQ] = ACTIONS(5965), + [anon_sym_AMP_EQ] = ACTIONS(5965), + [anon_sym_CARET_EQ] = ACTIONS(5965), + [anon_sym_PIPE_EQ] = ACTIONS(5965), + [anon_sym_and_eq] = ACTIONS(5969), + [anon_sym_or_eq] = ACTIONS(5969), + [anon_sym_xor_eq] = ACTIONS(5969), + [anon_sym_LT_EQ_GT] = ACTIONS(5965), + [anon_sym_or] = ACTIONS(5969), + [anon_sym_and] = ACTIONS(5969), + [anon_sym_bitor] = ACTIONS(5969), + [anon_sym_xor] = ACTIONS(5969), + [anon_sym_bitand] = ACTIONS(5969), + [anon_sym_not_eq] = ACTIONS(5969), + [anon_sym_DASH_DASH] = ACTIONS(5965), + [anon_sym_PLUS_PLUS] = ACTIONS(5965), + [anon_sym_DOT] = ACTIONS(5969), + [anon_sym_DOT_STAR] = ACTIONS(5965), + [anon_sym_DASH_GT] = ACTIONS(5965), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5969), + [anon_sym_decltype] = ACTIONS(5969), + }, + [2440] = { + [sym_identifier] = ACTIONS(3223), + [aux_sym_preproc_def_token1] = ACTIONS(3223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3225), + [aux_sym_preproc_if_token1] = ACTIONS(3223), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3223), + [sym_preproc_directive] = ACTIONS(3223), + [anon_sym_LPAREN2] = ACTIONS(3225), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_STAR] = ACTIONS(3225), + [anon_sym_AMP_AMP] = ACTIONS(3225), + [anon_sym_AMP] = ACTIONS(3223), + [anon_sym___extension__] = ACTIONS(3223), + [anon_sym_typedef] = ACTIONS(3223), + [anon_sym_extern] = ACTIONS(3223), + [anon_sym___attribute__] = ACTIONS(3223), + [anon_sym_COLON_COLON] = ACTIONS(3225), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3225), + [anon_sym___declspec] = ACTIONS(3223), + [anon_sym___based] = ACTIONS(3223), + [anon_sym_RBRACE] = ACTIONS(3225), + [anon_sym_signed] = ACTIONS(3223), + [anon_sym_unsigned] = ACTIONS(3223), + [anon_sym_long] = ACTIONS(3223), + [anon_sym_short] = ACTIONS(3223), + [anon_sym_LBRACK] = ACTIONS(3223), + [anon_sym_static] = ACTIONS(3223), + [anon_sym_register] = ACTIONS(3223), + [anon_sym_inline] = ACTIONS(3223), + [anon_sym___inline] = ACTIONS(3223), + [anon_sym___inline__] = ACTIONS(3223), + [anon_sym___forceinline] = ACTIONS(3223), + [anon_sym_thread_local] = ACTIONS(3223), + [anon_sym___thread] = ACTIONS(3223), + [anon_sym_const] = ACTIONS(3223), + [anon_sym_constexpr] = ACTIONS(3223), + [anon_sym_volatile] = ACTIONS(3223), + [anon_sym_restrict] = ACTIONS(3223), + [anon_sym___restrict__] = ACTIONS(3223), + [anon_sym__Atomic] = ACTIONS(3223), + [anon_sym__Noreturn] = ACTIONS(3223), + [anon_sym_noreturn] = ACTIONS(3223), + [anon_sym_mutable] = ACTIONS(3223), + [anon_sym_constinit] = ACTIONS(3223), + [anon_sym_consteval] = ACTIONS(3223), + [sym_primitive_type] = ACTIONS(3223), + [anon_sym_enum] = ACTIONS(3223), + [anon_sym_class] = ACTIONS(3223), + [anon_sym_struct] = ACTIONS(3223), + [anon_sym_union] = ACTIONS(3223), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3223), + [anon_sym_decltype] = ACTIONS(3223), + [anon_sym_virtual] = ACTIONS(3223), + [anon_sym_alignas] = ACTIONS(3223), + [anon_sym_explicit] = ACTIONS(3223), + [anon_sym_typename] = ACTIONS(3223), + [anon_sym_template] = ACTIONS(3223), + [anon_sym_operator] = ACTIONS(3223), + [anon_sym_friend] = ACTIONS(3223), + [anon_sym_public] = ACTIONS(3223), + [anon_sym_private] = ACTIONS(3223), + [anon_sym_protected] = ACTIONS(3223), + [anon_sym_using] = ACTIONS(3223), + [anon_sym_static_assert] = ACTIONS(3223), + [sym_semgrep_metavar] = ACTIONS(3225), + }, + [2441] = { + [sym_identifier] = ACTIONS(3434), + [aux_sym_preproc_def_token1] = ACTIONS(3434), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3436), + [aux_sym_preproc_if_token1] = ACTIONS(3434), + [aux_sym_preproc_if_token2] = ACTIONS(3434), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3434), + [sym_preproc_directive] = ACTIONS(3434), + [anon_sym_LPAREN2] = ACTIONS(3436), + [anon_sym_TILDE] = ACTIONS(3436), + [anon_sym_STAR] = ACTIONS(3436), + [anon_sym_AMP_AMP] = ACTIONS(3436), + [anon_sym_AMP] = ACTIONS(3434), + [anon_sym___extension__] = ACTIONS(3434), + [anon_sym_typedef] = ACTIONS(3434), + [anon_sym_extern] = ACTIONS(3434), + [anon_sym___attribute__] = ACTIONS(3434), + [anon_sym_COLON_COLON] = ACTIONS(3436), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3436), + [anon_sym___declspec] = ACTIONS(3434), + [anon_sym___based] = ACTIONS(3434), + [anon_sym_signed] = ACTIONS(3434), + [anon_sym_unsigned] = ACTIONS(3434), + [anon_sym_long] = ACTIONS(3434), + [anon_sym_short] = ACTIONS(3434), + [anon_sym_LBRACK] = ACTIONS(3434), + [anon_sym_static] = ACTIONS(3434), + [anon_sym_register] = ACTIONS(3434), + [anon_sym_inline] = ACTIONS(3434), + [anon_sym___inline] = ACTIONS(3434), + [anon_sym___inline__] = ACTIONS(3434), + [anon_sym___forceinline] = ACTIONS(3434), + [anon_sym_thread_local] = ACTIONS(3434), + [anon_sym___thread] = ACTIONS(3434), + [anon_sym_const] = ACTIONS(3434), + [anon_sym_constexpr] = ACTIONS(3434), + [anon_sym_volatile] = ACTIONS(3434), + [anon_sym_restrict] = ACTIONS(3434), + [anon_sym___restrict__] = ACTIONS(3434), + [anon_sym__Atomic] = ACTIONS(3434), + [anon_sym__Noreturn] = ACTIONS(3434), + [anon_sym_noreturn] = ACTIONS(3434), + [anon_sym_mutable] = ACTIONS(3434), + [anon_sym_constinit] = ACTIONS(3434), + [anon_sym_consteval] = ACTIONS(3434), + [sym_primitive_type] = ACTIONS(3434), + [anon_sym_enum] = ACTIONS(3434), + [anon_sym_class] = ACTIONS(3434), + [anon_sym_struct] = ACTIONS(3434), + [anon_sym_union] = ACTIONS(3434), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3434), + [anon_sym_decltype] = ACTIONS(3434), + [anon_sym_virtual] = ACTIONS(3434), + [anon_sym_alignas] = ACTIONS(3434), + [anon_sym_explicit] = ACTIONS(3434), + [anon_sym_typename] = ACTIONS(3434), + [anon_sym_template] = ACTIONS(3434), + [anon_sym_operator] = ACTIONS(3434), + [anon_sym_friend] = ACTIONS(3434), + [anon_sym_public] = ACTIONS(3434), + [anon_sym_private] = ACTIONS(3434), + [anon_sym_protected] = ACTIONS(3434), + [anon_sym_using] = ACTIONS(3434), + [anon_sym_static_assert] = ACTIONS(3434), + [sym_semgrep_metavar] = ACTIONS(3436), + }, + [2442] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1891), + [sym_identifier] = ACTIONS(5978), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5975), + [anon_sym_COMMA] = ACTIONS(5975), + [aux_sym_preproc_if_token2] = ACTIONS(5975), + [aux_sym_preproc_else_token1] = ACTIONS(5975), + [aux_sym_preproc_elif_token1] = ACTIONS(5978), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5975), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5975), + [anon_sym_LPAREN2] = ACTIONS(5975), + [anon_sym_DASH] = ACTIONS(5978), + [anon_sym_PLUS] = ACTIONS(5978), + [anon_sym_STAR] = ACTIONS(5978), + [anon_sym_SLASH] = ACTIONS(5978), + [anon_sym_PERCENT] = ACTIONS(5978), + [anon_sym_PIPE_PIPE] = ACTIONS(5975), + [anon_sym_AMP_AMP] = ACTIONS(5975), + [anon_sym_PIPE] = ACTIONS(5978), + [anon_sym_CARET] = ACTIONS(5978), + [anon_sym_AMP] = ACTIONS(5978), + [anon_sym_EQ_EQ] = ACTIONS(5975), + [anon_sym_BANG_EQ] = ACTIONS(5975), + [anon_sym_GT] = ACTIONS(5978), + [anon_sym_GT_EQ] = ACTIONS(5975), + [anon_sym_LT_EQ] = ACTIONS(5978), + [anon_sym_LT] = ACTIONS(5978), + [anon_sym_LT_LT] = ACTIONS(5978), + [anon_sym_GT_GT] = ACTIONS(5978), + [anon_sym___attribute__] = ACTIONS(5978), + [anon_sym_LBRACE] = ACTIONS(5975), + [anon_sym_signed] = ACTIONS(5673), + [anon_sym_unsigned] = ACTIONS(5673), + [anon_sym_long] = ACTIONS(5673), + [anon_sym_short] = ACTIONS(5673), + [anon_sym_LBRACK] = ACTIONS(5975), + [anon_sym_EQ] = ACTIONS(5978), + [sym_primitive_type] = ACTIONS(5653), + [anon_sym_QMARK] = ACTIONS(5975), + [anon_sym_STAR_EQ] = ACTIONS(5975), + [anon_sym_SLASH_EQ] = ACTIONS(5975), + [anon_sym_PERCENT_EQ] = ACTIONS(5975), + [anon_sym_PLUS_EQ] = ACTIONS(5975), + [anon_sym_DASH_EQ] = ACTIONS(5975), + [anon_sym_LT_LT_EQ] = ACTIONS(5975), + [anon_sym_GT_GT_EQ] = ACTIONS(5975), + [anon_sym_AMP_EQ] = ACTIONS(5975), + [anon_sym_CARET_EQ] = ACTIONS(5975), + [anon_sym_PIPE_EQ] = ACTIONS(5975), + [anon_sym_and_eq] = ACTIONS(5978), + [anon_sym_or_eq] = ACTIONS(5978), + [anon_sym_xor_eq] = ACTIONS(5978), + [anon_sym_LT_EQ_GT] = ACTIONS(5975), + [anon_sym_or] = ACTIONS(5978), + [anon_sym_and] = ACTIONS(5978), + [anon_sym_bitor] = ACTIONS(5978), + [anon_sym_xor] = ACTIONS(5978), + [anon_sym_bitand] = ACTIONS(5978), + [anon_sym_not_eq] = ACTIONS(5978), + [anon_sym_DASH_DASH] = ACTIONS(5975), + [anon_sym_PLUS_PLUS] = ACTIONS(5975), + [anon_sym_DOT] = ACTIONS(5978), + [anon_sym_DOT_STAR] = ACTIONS(5975), + [anon_sym_DASH_GT] = ACTIONS(5975), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5978), + [anon_sym_decltype] = ACTIONS(5978), + }, + [2443] = { + [sym_identifier] = ACTIONS(5832), + [aux_sym_preproc_def_token1] = ACTIONS(5832), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5834), + [aux_sym_preproc_if_token1] = ACTIONS(5832), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5832), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5832), + [sym_preproc_directive] = ACTIONS(5832), + [anon_sym_LPAREN2] = ACTIONS(5834), + [anon_sym_TILDE] = ACTIONS(5834), + [anon_sym_STAR] = ACTIONS(5834), + [anon_sym_AMP_AMP] = ACTIONS(5834), + [anon_sym_AMP] = ACTIONS(5832), + [anon_sym___extension__] = ACTIONS(5832), + [anon_sym_typedef] = ACTIONS(5832), + [anon_sym_extern] = ACTIONS(5832), + [anon_sym___attribute__] = ACTIONS(5832), + [anon_sym_COLON_COLON] = ACTIONS(5834), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5834), + [anon_sym___declspec] = ACTIONS(5832), + [anon_sym___based] = ACTIONS(5832), + [anon_sym_RBRACE] = ACTIONS(5834), + [anon_sym_signed] = ACTIONS(5832), + [anon_sym_unsigned] = ACTIONS(5832), + [anon_sym_long] = ACTIONS(5832), + [anon_sym_short] = ACTIONS(5832), + [anon_sym_LBRACK] = ACTIONS(5832), + [anon_sym_static] = ACTIONS(5832), + [anon_sym_register] = ACTIONS(5832), + [anon_sym_inline] = ACTIONS(5832), + [anon_sym___inline] = ACTIONS(5832), + [anon_sym___inline__] = ACTIONS(5832), + [anon_sym___forceinline] = ACTIONS(5832), + [anon_sym_thread_local] = ACTIONS(5832), + [anon_sym___thread] = ACTIONS(5832), + [anon_sym_const] = ACTIONS(5832), + [anon_sym_constexpr] = ACTIONS(5832), + [anon_sym_volatile] = ACTIONS(5832), + [anon_sym_restrict] = ACTIONS(5832), + [anon_sym___restrict__] = ACTIONS(5832), + [anon_sym__Atomic] = ACTIONS(5832), + [anon_sym__Noreturn] = ACTIONS(5832), + [anon_sym_noreturn] = ACTIONS(5832), + [anon_sym_mutable] = ACTIONS(5832), + [anon_sym_constinit] = ACTIONS(5832), + [anon_sym_consteval] = ACTIONS(5832), + [sym_primitive_type] = ACTIONS(5832), + [anon_sym_enum] = ACTIONS(5832), + [anon_sym_class] = ACTIONS(5832), + [anon_sym_struct] = ACTIONS(5832), + [anon_sym_union] = ACTIONS(5832), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5832), + [anon_sym_decltype] = ACTIONS(5832), + [anon_sym_virtual] = ACTIONS(5832), + [anon_sym_alignas] = ACTIONS(5832), + [anon_sym_explicit] = ACTIONS(5832), + [anon_sym_typename] = ACTIONS(5832), + [anon_sym_template] = ACTIONS(5832), + [anon_sym_operator] = ACTIONS(5832), + [anon_sym_friend] = ACTIONS(5832), + [anon_sym_public] = ACTIONS(5832), + [anon_sym_private] = ACTIONS(5832), + [anon_sym_protected] = ACTIONS(5832), + [anon_sym_using] = ACTIONS(5832), + [anon_sym_static_assert] = ACTIONS(5832), + [sym_semgrep_metavar] = ACTIONS(5834), + }, + [2444] = { + [sym_identifier] = ACTIONS(3587), + [aux_sym_preproc_def_token1] = ACTIONS(3587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3589), + [aux_sym_preproc_if_token1] = ACTIONS(3587), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3587), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3587), + [sym_preproc_directive] = ACTIONS(3587), + [anon_sym_LPAREN2] = ACTIONS(3589), + [anon_sym_TILDE] = ACTIONS(3589), + [anon_sym_STAR] = ACTIONS(3589), + [anon_sym_AMP_AMP] = ACTIONS(3589), + [anon_sym_AMP] = ACTIONS(3587), + [anon_sym___extension__] = ACTIONS(3587), + [anon_sym_typedef] = ACTIONS(3587), + [anon_sym_extern] = ACTIONS(3587), + [anon_sym___attribute__] = ACTIONS(3587), + [anon_sym_COLON_COLON] = ACTIONS(3589), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3589), + [anon_sym___declspec] = ACTIONS(3587), + [anon_sym___based] = ACTIONS(3587), + [anon_sym_RBRACE] = ACTIONS(3589), + [anon_sym_signed] = ACTIONS(3587), + [anon_sym_unsigned] = ACTIONS(3587), + [anon_sym_long] = ACTIONS(3587), + [anon_sym_short] = ACTIONS(3587), + [anon_sym_LBRACK] = ACTIONS(3587), + [anon_sym_static] = ACTIONS(3587), + [anon_sym_register] = ACTIONS(3587), + [anon_sym_inline] = ACTIONS(3587), + [anon_sym___inline] = ACTIONS(3587), + [anon_sym___inline__] = ACTIONS(3587), + [anon_sym___forceinline] = ACTIONS(3587), + [anon_sym_thread_local] = ACTIONS(3587), + [anon_sym___thread] = ACTIONS(3587), + [anon_sym_const] = ACTIONS(3587), + [anon_sym_constexpr] = ACTIONS(3587), + [anon_sym_volatile] = ACTIONS(3587), + [anon_sym_restrict] = ACTIONS(3587), + [anon_sym___restrict__] = ACTIONS(3587), + [anon_sym__Atomic] = ACTIONS(3587), + [anon_sym__Noreturn] = ACTIONS(3587), + [anon_sym_noreturn] = ACTIONS(3587), + [anon_sym_mutable] = ACTIONS(3587), + [anon_sym_constinit] = ACTIONS(3587), + [anon_sym_consteval] = ACTIONS(3587), + [sym_primitive_type] = ACTIONS(3587), + [anon_sym_enum] = ACTIONS(3587), + [anon_sym_class] = ACTIONS(3587), + [anon_sym_struct] = ACTIONS(3587), + [anon_sym_union] = ACTIONS(3587), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3587), + [anon_sym_decltype] = ACTIONS(3587), + [anon_sym_virtual] = ACTIONS(3587), + [anon_sym_alignas] = ACTIONS(3587), + [anon_sym_explicit] = ACTIONS(3587), + [anon_sym_typename] = ACTIONS(3587), + [anon_sym_template] = ACTIONS(3587), + [anon_sym_operator] = ACTIONS(3587), + [anon_sym_friend] = ACTIONS(3587), + [anon_sym_public] = ACTIONS(3587), + [anon_sym_private] = ACTIONS(3587), + [anon_sym_protected] = ACTIONS(3587), + [anon_sym_using] = ACTIONS(3587), + [anon_sym_static_assert] = ACTIONS(3587), + [sym_semgrep_metavar] = ACTIONS(3589), + }, + [2445] = { + [sym_identifier] = ACTIONS(3593), + [aux_sym_preproc_def_token1] = ACTIONS(3593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3595), + [aux_sym_preproc_if_token1] = ACTIONS(3593), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3593), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3593), + [sym_preproc_directive] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(3595), + [anon_sym_STAR] = ACTIONS(3595), + [anon_sym_AMP_AMP] = ACTIONS(3595), + [anon_sym_AMP] = ACTIONS(3593), + [anon_sym___extension__] = ACTIONS(3593), + [anon_sym_typedef] = ACTIONS(3593), + [anon_sym_extern] = ACTIONS(3593), + [anon_sym___attribute__] = ACTIONS(3593), + [anon_sym_COLON_COLON] = ACTIONS(3595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3595), + [anon_sym___declspec] = ACTIONS(3593), + [anon_sym___based] = ACTIONS(3593), + [anon_sym_RBRACE] = ACTIONS(3595), + [anon_sym_signed] = ACTIONS(3593), + [anon_sym_unsigned] = ACTIONS(3593), + [anon_sym_long] = ACTIONS(3593), + [anon_sym_short] = ACTIONS(3593), + [anon_sym_LBRACK] = ACTIONS(3593), + [anon_sym_static] = ACTIONS(3593), + [anon_sym_register] = ACTIONS(3593), + [anon_sym_inline] = ACTIONS(3593), + [anon_sym___inline] = ACTIONS(3593), + [anon_sym___inline__] = ACTIONS(3593), + [anon_sym___forceinline] = ACTIONS(3593), + [anon_sym_thread_local] = ACTIONS(3593), + [anon_sym___thread] = ACTIONS(3593), + [anon_sym_const] = ACTIONS(3593), + [anon_sym_constexpr] = ACTIONS(3593), + [anon_sym_volatile] = ACTIONS(3593), + [anon_sym_restrict] = ACTIONS(3593), + [anon_sym___restrict__] = ACTIONS(3593), + [anon_sym__Atomic] = ACTIONS(3593), + [anon_sym__Noreturn] = ACTIONS(3593), + [anon_sym_noreturn] = ACTIONS(3593), + [anon_sym_mutable] = ACTIONS(3593), + [anon_sym_constinit] = ACTIONS(3593), + [anon_sym_consteval] = ACTIONS(3593), + [sym_primitive_type] = ACTIONS(3593), + [anon_sym_enum] = ACTIONS(3593), + [anon_sym_class] = ACTIONS(3593), + [anon_sym_struct] = ACTIONS(3593), + [anon_sym_union] = ACTIONS(3593), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3593), + [anon_sym_decltype] = ACTIONS(3593), + [anon_sym_virtual] = ACTIONS(3593), + [anon_sym_alignas] = ACTIONS(3593), + [anon_sym_explicit] = ACTIONS(3593), + [anon_sym_typename] = ACTIONS(3593), + [anon_sym_template] = ACTIONS(3593), + [anon_sym_operator] = ACTIONS(3593), + [anon_sym_friend] = ACTIONS(3593), + [anon_sym_public] = ACTIONS(3593), + [anon_sym_private] = ACTIONS(3593), + [anon_sym_protected] = ACTIONS(3593), + [anon_sym_using] = ACTIONS(3593), + [anon_sym_static_assert] = ACTIONS(3593), + [sym_semgrep_metavar] = ACTIONS(3595), + }, + [2446] = { + [sym_identifier] = ACTIONS(3438), + [aux_sym_preproc_def_token1] = ACTIONS(3438), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3440), + [aux_sym_preproc_if_token1] = ACTIONS(3438), + [aux_sym_preproc_if_token2] = ACTIONS(3438), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3438), + [sym_preproc_directive] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3440), + [anon_sym_STAR] = ACTIONS(3440), + [anon_sym_AMP_AMP] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym___extension__] = ACTIONS(3438), + [anon_sym_typedef] = ACTIONS(3438), + [anon_sym_extern] = ACTIONS(3438), + [anon_sym___attribute__] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3440), + [anon_sym___declspec] = ACTIONS(3438), + [anon_sym___based] = ACTIONS(3438), + [anon_sym_signed] = ACTIONS(3438), + [anon_sym_unsigned] = ACTIONS(3438), + [anon_sym_long] = ACTIONS(3438), + [anon_sym_short] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_static] = ACTIONS(3438), + [anon_sym_register] = ACTIONS(3438), + [anon_sym_inline] = ACTIONS(3438), + [anon_sym___inline] = ACTIONS(3438), + [anon_sym___inline__] = ACTIONS(3438), + [anon_sym___forceinline] = ACTIONS(3438), + [anon_sym_thread_local] = ACTIONS(3438), + [anon_sym___thread] = ACTIONS(3438), + [anon_sym_const] = ACTIONS(3438), + [anon_sym_constexpr] = ACTIONS(3438), + [anon_sym_volatile] = ACTIONS(3438), + [anon_sym_restrict] = ACTIONS(3438), + [anon_sym___restrict__] = ACTIONS(3438), + [anon_sym__Atomic] = ACTIONS(3438), + [anon_sym__Noreturn] = ACTIONS(3438), + [anon_sym_noreturn] = ACTIONS(3438), + [anon_sym_mutable] = ACTIONS(3438), + [anon_sym_constinit] = ACTIONS(3438), + [anon_sym_consteval] = ACTIONS(3438), + [sym_primitive_type] = ACTIONS(3438), + [anon_sym_enum] = ACTIONS(3438), + [anon_sym_class] = ACTIONS(3438), + [anon_sym_struct] = ACTIONS(3438), + [anon_sym_union] = ACTIONS(3438), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3438), + [anon_sym_decltype] = ACTIONS(3438), + [anon_sym_virtual] = ACTIONS(3438), + [anon_sym_alignas] = ACTIONS(3438), + [anon_sym_explicit] = ACTIONS(3438), + [anon_sym_typename] = ACTIONS(3438), + [anon_sym_template] = ACTIONS(3438), + [anon_sym_operator] = ACTIONS(3438), + [anon_sym_friend] = ACTIONS(3438), + [anon_sym_public] = ACTIONS(3438), + [anon_sym_private] = ACTIONS(3438), + [anon_sym_protected] = ACTIONS(3438), + [anon_sym_using] = ACTIONS(3438), + [anon_sym_static_assert] = ACTIONS(3438), + [sym_semgrep_metavar] = ACTIONS(3440), + }, + [2447] = { + [sym_identifier] = ACTIONS(5737), + [aux_sym_preproc_def_token1] = ACTIONS(5737), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5739), + [aux_sym_preproc_if_token1] = ACTIONS(5737), + [aux_sym_preproc_if_token2] = ACTIONS(5737), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5737), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5737), + [sym_preproc_directive] = ACTIONS(5737), + [anon_sym_LPAREN2] = ACTIONS(5739), + [anon_sym_TILDE] = ACTIONS(5739), + [anon_sym_STAR] = ACTIONS(5739), + [anon_sym_AMP_AMP] = ACTIONS(5739), + [anon_sym_AMP] = ACTIONS(5737), + [anon_sym___extension__] = ACTIONS(5737), + [anon_sym_typedef] = ACTIONS(5737), + [anon_sym_extern] = ACTIONS(5737), + [anon_sym___attribute__] = ACTIONS(5737), + [anon_sym_COLON_COLON] = ACTIONS(5739), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5739), + [anon_sym___declspec] = ACTIONS(5737), + [anon_sym___based] = ACTIONS(5737), + [anon_sym_signed] = ACTIONS(5737), + [anon_sym_unsigned] = ACTIONS(5737), + [anon_sym_long] = ACTIONS(5737), + [anon_sym_short] = ACTIONS(5737), + [anon_sym_LBRACK] = ACTIONS(5737), + [anon_sym_static] = ACTIONS(5737), + [anon_sym_register] = ACTIONS(5737), + [anon_sym_inline] = ACTIONS(5737), + [anon_sym___inline] = ACTIONS(5737), + [anon_sym___inline__] = ACTIONS(5737), + [anon_sym___forceinline] = ACTIONS(5737), + [anon_sym_thread_local] = ACTIONS(5737), + [anon_sym___thread] = ACTIONS(5737), + [anon_sym_const] = ACTIONS(5737), + [anon_sym_constexpr] = ACTIONS(5737), + [anon_sym_volatile] = ACTIONS(5737), + [anon_sym_restrict] = ACTIONS(5737), + [anon_sym___restrict__] = ACTIONS(5737), + [anon_sym__Atomic] = ACTIONS(5737), + [anon_sym__Noreturn] = ACTIONS(5737), + [anon_sym_noreturn] = ACTIONS(5737), + [anon_sym_mutable] = ACTIONS(5737), + [anon_sym_constinit] = ACTIONS(5737), + [anon_sym_consteval] = ACTIONS(5737), + [sym_primitive_type] = ACTIONS(5737), + [anon_sym_enum] = ACTIONS(5737), + [anon_sym_class] = ACTIONS(5737), + [anon_sym_struct] = ACTIONS(5737), + [anon_sym_union] = ACTIONS(5737), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5737), + [anon_sym_decltype] = ACTIONS(5737), + [anon_sym_virtual] = ACTIONS(5737), + [anon_sym_alignas] = ACTIONS(5737), + [anon_sym_explicit] = ACTIONS(5737), + [anon_sym_typename] = ACTIONS(5737), + [anon_sym_template] = ACTIONS(5737), + [anon_sym_operator] = ACTIONS(5737), + [anon_sym_friend] = ACTIONS(5737), + [anon_sym_public] = ACTIONS(5737), + [anon_sym_private] = ACTIONS(5737), + [anon_sym_protected] = ACTIONS(5737), + [anon_sym_using] = ACTIONS(5737), + [anon_sym_static_assert] = ACTIONS(5737), + [sym_semgrep_metavar] = ACTIONS(5739), + }, + [2448] = { + [sym_string_literal] = STATE(2729), + [sym_template_argument_list] = STATE(4089), + [sym_raw_string_literal] = STATE(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4765), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4773), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4773), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(5946), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_RBRACK] = ACTIONS(4765), + [anon_sym_EQ] = ACTIONS(6124), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(6126), + [anon_sym_SLASH_EQ] = ACTIONS(6126), + [anon_sym_PERCENT_EQ] = ACTIONS(6126), + [anon_sym_PLUS_EQ] = ACTIONS(6126), + [anon_sym_DASH_EQ] = ACTIONS(6126), + [anon_sym_LT_LT_EQ] = ACTIONS(6126), + [anon_sym_GT_GT_EQ] = ACTIONS(6126), + [anon_sym_AMP_EQ] = ACTIONS(6126), + [anon_sym_CARET_EQ] = ACTIONS(6126), + [anon_sym_PIPE_EQ] = ACTIONS(6126), + [anon_sym_and_eq] = ACTIONS(6126), + [anon_sym_or_eq] = ACTIONS(6126), + [anon_sym_xor_eq] = ACTIONS(6126), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4765), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4765), + [anon_sym_not_eq] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + }, + [2449] = { + [sym_argument_list] = STATE(2535), + [sym_initializer_list] = STATE(2535), + [ts_builtin_sym_end] = ACTIONS(6395), + [sym_identifier] = ACTIONS(6397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6395), + [anon_sym_COMMA] = ACTIONS(6395), + [anon_sym_RPAREN] = ACTIONS(6395), + [aux_sym_preproc_if_token2] = ACTIONS(6395), + [aux_sym_preproc_else_token1] = ACTIONS(6395), + [aux_sym_preproc_elif_token1] = ACTIONS(6397), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6395), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6395), + [anon_sym_LPAREN2] = ACTIONS(5761), + [anon_sym_DASH] = ACTIONS(6397), + [anon_sym_PLUS] = ACTIONS(6397), + [anon_sym_STAR] = ACTIONS(6397), + [anon_sym_SLASH] = ACTIONS(6397), + [anon_sym_PERCENT] = ACTIONS(6397), + [anon_sym_PIPE_PIPE] = ACTIONS(6395), + [anon_sym_AMP_AMP] = ACTIONS(6395), + [anon_sym_PIPE] = ACTIONS(6397), + [anon_sym_CARET] = ACTIONS(6397), + [anon_sym_AMP] = ACTIONS(6397), + [anon_sym_EQ_EQ] = ACTIONS(6395), + [anon_sym_BANG_EQ] = ACTIONS(6395), + [anon_sym_GT] = ACTIONS(6397), + [anon_sym_GT_EQ] = ACTIONS(6395), + [anon_sym_LT_EQ] = ACTIONS(6397), + [anon_sym_LT] = ACTIONS(6397), + [anon_sym_LT_LT] = ACTIONS(6397), + [anon_sym_GT_GT] = ACTIONS(6397), + [anon_sym_SEMI] = ACTIONS(6395), + [anon_sym___attribute__] = ACTIONS(6397), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_RBRACE] = ACTIONS(6395), + [anon_sym_LBRACK] = ACTIONS(6395), + [anon_sym_RBRACK] = ACTIONS(6395), + [anon_sym_EQ] = ACTIONS(6397), + [anon_sym_COLON] = ACTIONS(6395), + [anon_sym_QMARK] = ACTIONS(6395), + [anon_sym_STAR_EQ] = ACTIONS(6395), + [anon_sym_SLASH_EQ] = ACTIONS(6395), + [anon_sym_PERCENT_EQ] = ACTIONS(6395), + [anon_sym_PLUS_EQ] = ACTIONS(6395), + [anon_sym_DASH_EQ] = ACTIONS(6395), + [anon_sym_LT_LT_EQ] = ACTIONS(6395), + [anon_sym_GT_GT_EQ] = ACTIONS(6395), + [anon_sym_AMP_EQ] = ACTIONS(6395), + [anon_sym_CARET_EQ] = ACTIONS(6395), + [anon_sym_PIPE_EQ] = ACTIONS(6395), + [anon_sym_and_eq] = ACTIONS(6397), + [anon_sym_or_eq] = ACTIONS(6397), + [anon_sym_xor_eq] = ACTIONS(6397), + [anon_sym_LT_EQ_GT] = ACTIONS(6395), + [anon_sym_or] = ACTIONS(6397), + [anon_sym_and] = ACTIONS(6397), + [anon_sym_bitor] = ACTIONS(6397), + [anon_sym_xor] = ACTIONS(6397), + [anon_sym_bitand] = ACTIONS(6397), + [anon_sym_not_eq] = ACTIONS(6397), + [anon_sym_DASH_DASH] = ACTIONS(6395), + [anon_sym_PLUS_PLUS] = ACTIONS(6395), + [anon_sym_DOT] = ACTIONS(6397), + [anon_sym_DOT_STAR] = ACTIONS(6395), + [anon_sym_DASH_GT] = ACTIONS(6395), + [sym_comment] = ACTIONS(3), + }, + [2450] = { + [ts_builtin_sym_end] = ACTIONS(6399), + [sym_identifier] = ACTIONS(6401), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6399), + [anon_sym_COMMA] = ACTIONS(6399), + [anon_sym_RPAREN] = ACTIONS(6399), + [aux_sym_preproc_if_token2] = ACTIONS(6399), + [aux_sym_preproc_else_token1] = ACTIONS(6399), + [aux_sym_preproc_elif_token1] = ACTIONS(6401), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6399), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6399), + [anon_sym_LPAREN2] = ACTIONS(6399), + [anon_sym_DASH] = ACTIONS(6401), + [anon_sym_PLUS] = ACTIONS(6401), + [anon_sym_STAR] = ACTIONS(6401), + [anon_sym_SLASH] = ACTIONS(6401), + [anon_sym_PERCENT] = ACTIONS(6401), + [anon_sym_PIPE_PIPE] = ACTIONS(6399), + [anon_sym_AMP_AMP] = ACTIONS(6399), + [anon_sym_PIPE] = ACTIONS(6401), + [anon_sym_CARET] = ACTIONS(6401), + [anon_sym_AMP] = ACTIONS(6401), + [anon_sym_EQ_EQ] = ACTIONS(6399), + [anon_sym_BANG_EQ] = ACTIONS(6399), + [anon_sym_GT] = ACTIONS(6401), + [anon_sym_GT_EQ] = ACTIONS(6399), + [anon_sym_LT_EQ] = ACTIONS(6401), + [anon_sym_LT] = ACTIONS(6401), + [anon_sym_LT_LT] = ACTIONS(6401), + [anon_sym_GT_GT] = ACTIONS(6401), + [anon_sym_SEMI] = ACTIONS(6399), + [anon_sym___attribute__] = ACTIONS(6401), + [anon_sym_LBRACE] = ACTIONS(6399), + [anon_sym_RBRACE] = ACTIONS(6399), + [anon_sym_LBRACK] = ACTIONS(6399), + [anon_sym_RBRACK] = ACTIONS(6399), + [anon_sym_EQ] = ACTIONS(6401), + [anon_sym_COLON] = ACTIONS(6399), + [anon_sym_QMARK] = ACTIONS(6399), + [anon_sym_STAR_EQ] = ACTIONS(6399), + [anon_sym_SLASH_EQ] = ACTIONS(6399), + [anon_sym_PERCENT_EQ] = ACTIONS(6399), + [anon_sym_PLUS_EQ] = ACTIONS(6399), + [anon_sym_DASH_EQ] = ACTIONS(6399), + [anon_sym_LT_LT_EQ] = ACTIONS(6399), + [anon_sym_GT_GT_EQ] = ACTIONS(6399), + [anon_sym_AMP_EQ] = ACTIONS(6399), + [anon_sym_CARET_EQ] = ACTIONS(6399), + [anon_sym_PIPE_EQ] = ACTIONS(6399), + [anon_sym_and_eq] = ACTIONS(6401), + [anon_sym_or_eq] = ACTIONS(6401), + [anon_sym_xor_eq] = ACTIONS(6401), + [anon_sym_LT_EQ_GT] = ACTIONS(6399), + [anon_sym_or] = ACTIONS(6401), + [anon_sym_and] = ACTIONS(6401), + [anon_sym_bitor] = ACTIONS(6401), + [anon_sym_xor] = ACTIONS(6401), + [anon_sym_bitand] = ACTIONS(6401), + [anon_sym_not_eq] = ACTIONS(6401), + [anon_sym_DASH_DASH] = ACTIONS(6399), + [anon_sym_PLUS_PLUS] = ACTIONS(6399), + [anon_sym_DOT] = ACTIONS(6401), + [anon_sym_DOT_STAR] = ACTIONS(6399), + [anon_sym_DASH_GT] = ACTIONS(6399), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6401), + [anon_sym_decltype] = ACTIONS(6401), + }, + [2451] = { + [sym_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [aux_sym_concatenated_string_repeat1] = STATE(2464), + [sym_identifier] = ACTIONS(6403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5554), + [anon_sym_LPAREN2] = ACTIONS(5550), + [anon_sym_DASH] = ACTIONS(5554), + [anon_sym_PLUS] = ACTIONS(5554), + [anon_sym_STAR] = ACTIONS(5554), + [anon_sym_SLASH] = ACTIONS(5554), + [anon_sym_PERCENT] = ACTIONS(5554), + [anon_sym_PIPE_PIPE] = ACTIONS(5550), + [anon_sym_AMP_AMP] = ACTIONS(5550), + [anon_sym_PIPE] = ACTIONS(5554), + [anon_sym_CARET] = ACTIONS(5554), + [anon_sym_AMP] = ACTIONS(5554), + [anon_sym_EQ_EQ] = ACTIONS(5550), + [anon_sym_BANG_EQ] = ACTIONS(5550), + [anon_sym_GT] = ACTIONS(5554), + [anon_sym_GT_EQ] = ACTIONS(5550), + [anon_sym_LT_EQ] = ACTIONS(5554), + [anon_sym_LT] = ACTIONS(5554), + [anon_sym_LT_LT] = ACTIONS(5554), + [anon_sym_GT_GT] = ACTIONS(5554), + [anon_sym_LBRACK] = ACTIONS(5550), + [anon_sym_EQ] = ACTIONS(5554), + [anon_sym_QMARK] = ACTIONS(5550), + [anon_sym_STAR_EQ] = ACTIONS(5550), + [anon_sym_SLASH_EQ] = ACTIONS(5550), + [anon_sym_PERCENT_EQ] = ACTIONS(5550), + [anon_sym_PLUS_EQ] = ACTIONS(5550), + [anon_sym_DASH_EQ] = ACTIONS(5550), + [anon_sym_LT_LT_EQ] = ACTIONS(5550), + [anon_sym_GT_GT_EQ] = ACTIONS(5550), + [anon_sym_AMP_EQ] = ACTIONS(5550), + [anon_sym_CARET_EQ] = ACTIONS(5550), + [anon_sym_PIPE_EQ] = ACTIONS(5550), + [anon_sym_and_eq] = ACTIONS(5554), + [anon_sym_or_eq] = ACTIONS(5554), + [anon_sym_xor_eq] = ACTIONS(5554), + [anon_sym_LT_EQ_GT] = ACTIONS(5550), + [anon_sym_or] = ACTIONS(5554), + [anon_sym_and] = ACTIONS(5554), + [anon_sym_bitor] = ACTIONS(5554), + [anon_sym_xor] = ACTIONS(5554), + [anon_sym_bitand] = ACTIONS(5554), + [anon_sym_not_eq] = ACTIONS(5554), + [anon_sym_DASH_DASH] = ACTIONS(5550), + [anon_sym_PLUS_PLUS] = ACTIONS(5550), + [anon_sym_DOT] = ACTIONS(5554), + [anon_sym_DOT_STAR] = ACTIONS(5550), + [anon_sym_DASH_GT] = ACTIONS(5550), + [anon_sym_L_DQUOTE] = ACTIONS(6405), + [anon_sym_u_DQUOTE] = ACTIONS(6405), + [anon_sym_U_DQUOTE] = ACTIONS(6405), + [anon_sym_u8_DQUOTE] = ACTIONS(6405), + [anon_sym_DQUOTE] = ACTIONS(6405), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6407), + [anon_sym_LR_DQUOTE] = ACTIONS(6407), + [anon_sym_uR_DQUOTE] = ACTIONS(6407), + [anon_sym_UR_DQUOTE] = ACTIONS(6407), + [anon_sym_u8R_DQUOTE] = ACTIONS(6407), + [sym_literal_suffix] = ACTIONS(5554), + [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(5550), + }, + [2452] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2475), + [ts_builtin_sym_end] = ACTIONS(6156), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6156), + [anon_sym_COMMA] = ACTIONS(6156), + [anon_sym_RPAREN] = ACTIONS(6156), + [anon_sym_LPAREN2] = ACTIONS(6156), + [anon_sym_DASH] = ACTIONS(6158), + [anon_sym_PLUS] = ACTIONS(6158), + [anon_sym_STAR] = ACTIONS(6158), + [anon_sym_SLASH] = ACTIONS(6158), + [anon_sym_PERCENT] = ACTIONS(6158), + [anon_sym_PIPE_PIPE] = ACTIONS(6156), + [anon_sym_AMP_AMP] = ACTIONS(6156), + [anon_sym_PIPE] = ACTIONS(6158), + [anon_sym_CARET] = ACTIONS(6158), + [anon_sym_AMP] = ACTIONS(6158), + [anon_sym_EQ_EQ] = ACTIONS(6156), + [anon_sym_BANG_EQ] = ACTIONS(6156), + [anon_sym_GT] = ACTIONS(6158), + [anon_sym_GT_EQ] = ACTIONS(6156), + [anon_sym_LT_EQ] = ACTIONS(6158), + [anon_sym_LT] = ACTIONS(6158), + [anon_sym_LT_LT] = ACTIONS(6158), + [anon_sym_GT_GT] = ACTIONS(6158), + [anon_sym_SEMI] = ACTIONS(6156), + [anon_sym___attribute__] = ACTIONS(6156), + [anon_sym_LBRACE] = ACTIONS(6156), + [anon_sym_RBRACE] = ACTIONS(6156), + [anon_sym_signed] = ACTIONS(6409), + [anon_sym_unsigned] = ACTIONS(6409), + [anon_sym_long] = ACTIONS(6409), + [anon_sym_short] = ACTIONS(6409), + [anon_sym_LBRACK] = ACTIONS(6156), + [anon_sym_RBRACK] = ACTIONS(6156), + [anon_sym_EQ] = ACTIONS(6158), + [anon_sym_COLON] = ACTIONS(6156), + [anon_sym_QMARK] = ACTIONS(6156), + [anon_sym_STAR_EQ] = ACTIONS(6156), + [anon_sym_SLASH_EQ] = ACTIONS(6156), + [anon_sym_PERCENT_EQ] = ACTIONS(6156), + [anon_sym_PLUS_EQ] = ACTIONS(6156), + [anon_sym_DASH_EQ] = ACTIONS(6156), + [anon_sym_LT_LT_EQ] = ACTIONS(6156), + [anon_sym_GT_GT_EQ] = ACTIONS(6156), + [anon_sym_AMP_EQ] = ACTIONS(6156), + [anon_sym_CARET_EQ] = ACTIONS(6156), + [anon_sym_PIPE_EQ] = ACTIONS(6156), + [anon_sym_and_eq] = ACTIONS(6156), + [anon_sym_or_eq] = ACTIONS(6156), + [anon_sym_xor_eq] = ACTIONS(6156), + [anon_sym_LT_EQ_GT] = ACTIONS(6156), + [anon_sym_or] = ACTIONS(6158), + [anon_sym_and] = ACTIONS(6158), + [anon_sym_bitor] = ACTIONS(6156), + [anon_sym_xor] = ACTIONS(6158), + [anon_sym_bitand] = ACTIONS(6156), + [anon_sym_not_eq] = ACTIONS(6156), + [anon_sym_DASH_DASH] = ACTIONS(6156), + [anon_sym_PLUS_PLUS] = ACTIONS(6156), + [anon_sym_DOT] = ACTIONS(6158), + [anon_sym_DOT_STAR] = ACTIONS(6156), + [anon_sym_DASH_GT] = ACTIONS(6156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6156), + [anon_sym_decltype] = ACTIONS(6156), + }, + [2453] = { + [sym_attribute_specifier] = STATE(3010), + [sym_field_declaration_list] = STATE(2878), + [sym_virtual_specifier] = STATE(7933), + [sym_base_class_clause] = STATE(8796), + [sym_identifier] = ACTIONS(5696), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5694), + [anon_sym_COMMA] = ACTIONS(5694), + [aux_sym_preproc_if_token2] = ACTIONS(5694), + [aux_sym_preproc_else_token1] = ACTIONS(5694), + [aux_sym_preproc_elif_token1] = ACTIONS(5694), + [anon_sym_LPAREN2] = ACTIONS(5694), + [anon_sym_DASH] = ACTIONS(5696), + [anon_sym_PLUS] = ACTIONS(5696), + [anon_sym_STAR] = ACTIONS(5696), + [anon_sym_SLASH] = ACTIONS(5696), + [anon_sym_PERCENT] = ACTIONS(5696), + [anon_sym_PIPE_PIPE] = ACTIONS(5694), + [anon_sym_AMP_AMP] = ACTIONS(5694), + [anon_sym_PIPE] = ACTIONS(5696), + [anon_sym_CARET] = ACTIONS(5696), + [anon_sym_AMP] = ACTIONS(5696), + [anon_sym_EQ_EQ] = ACTIONS(5694), + [anon_sym_BANG_EQ] = ACTIONS(5694), + [anon_sym_GT] = ACTIONS(5696), + [anon_sym_GT_EQ] = ACTIONS(5694), + [anon_sym_LT_EQ] = ACTIONS(5696), + [anon_sym_LT] = ACTIONS(5696), + [anon_sym_LT_LT] = ACTIONS(5696), + [anon_sym_GT_GT] = ACTIONS(5696), + [anon_sym___attribute__] = ACTIONS(6411), + [anon_sym_LBRACE] = ACTIONS(6413), + [anon_sym_LBRACK] = ACTIONS(5694), + [anon_sym_EQ] = ACTIONS(5696), + [anon_sym_COLON] = ACTIONS(5702), + [anon_sym_QMARK] = ACTIONS(5694), + [anon_sym_STAR_EQ] = ACTIONS(5694), + [anon_sym_SLASH_EQ] = ACTIONS(5694), + [anon_sym_PERCENT_EQ] = ACTIONS(5694), + [anon_sym_PLUS_EQ] = ACTIONS(5694), + [anon_sym_DASH_EQ] = ACTIONS(5694), + [anon_sym_LT_LT_EQ] = ACTIONS(5694), + [anon_sym_GT_GT_EQ] = ACTIONS(5694), + [anon_sym_AMP_EQ] = ACTIONS(5694), + [anon_sym_CARET_EQ] = ACTIONS(5694), + [anon_sym_PIPE_EQ] = ACTIONS(5694), + [anon_sym_and_eq] = ACTIONS(5696), + [anon_sym_or_eq] = ACTIONS(5696), + [anon_sym_xor_eq] = ACTIONS(5696), + [anon_sym_LT_EQ_GT] = ACTIONS(5694), + [anon_sym_or] = ACTIONS(5696), + [anon_sym_and] = ACTIONS(5696), + [anon_sym_bitor] = ACTIONS(5696), + [anon_sym_xor] = ACTIONS(5696), + [anon_sym_bitand] = ACTIONS(5696), + [anon_sym_not_eq] = ACTIONS(5696), + [anon_sym_DASH_DASH] = ACTIONS(5694), + [anon_sym_PLUS_PLUS] = ACTIONS(5694), + [anon_sym_DOT] = ACTIONS(5696), + [anon_sym_DOT_STAR] = ACTIONS(5694), + [anon_sym_DASH_GT] = ACTIONS(5694), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5696), + [anon_sym_decltype] = ACTIONS(5696), + [anon_sym_final] = ACTIONS(5704), + [anon_sym_override] = ACTIONS(5704), + }, + [2454] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(6130), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6128), + [anon_sym_COMMA] = ACTIONS(6128), + [aux_sym_preproc_if_token2] = ACTIONS(6128), + [aux_sym_preproc_else_token1] = ACTIONS(6128), + [aux_sym_preproc_elif_token1] = ACTIONS(6130), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6128), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6128), + [anon_sym_LPAREN2] = ACTIONS(6128), + [anon_sym_DASH] = ACTIONS(6130), + [anon_sym_PLUS] = ACTIONS(6130), + [anon_sym_STAR] = ACTIONS(6130), + [anon_sym_SLASH] = ACTIONS(6130), + [anon_sym_PERCENT] = ACTIONS(6130), + [anon_sym_PIPE_PIPE] = ACTIONS(6128), + [anon_sym_AMP_AMP] = ACTIONS(6128), + [anon_sym_PIPE] = ACTIONS(6130), + [anon_sym_CARET] = ACTIONS(6130), + [anon_sym_AMP] = ACTIONS(6130), + [anon_sym_EQ_EQ] = ACTIONS(6128), + [anon_sym_BANG_EQ] = ACTIONS(6128), + [anon_sym_GT] = ACTIONS(6130), + [anon_sym_GT_EQ] = ACTIONS(6128), + [anon_sym_LT_EQ] = ACTIONS(6130), + [anon_sym_LT] = ACTIONS(6130), + [anon_sym_LT_LT] = ACTIONS(6130), + [anon_sym_GT_GT] = ACTIONS(6130), + [anon_sym___attribute__] = ACTIONS(6130), + [anon_sym_LBRACE] = ACTIONS(6128), + [anon_sym_signed] = ACTIONS(6415), + [anon_sym_unsigned] = ACTIONS(6415), + [anon_sym_long] = ACTIONS(6415), + [anon_sym_short] = ACTIONS(6415), + [anon_sym_LBRACK] = ACTIONS(6128), + [anon_sym_EQ] = ACTIONS(6130), + [anon_sym_QMARK] = ACTIONS(6128), + [anon_sym_STAR_EQ] = ACTIONS(6128), + [anon_sym_SLASH_EQ] = ACTIONS(6128), + [anon_sym_PERCENT_EQ] = ACTIONS(6128), + [anon_sym_PLUS_EQ] = ACTIONS(6128), + [anon_sym_DASH_EQ] = ACTIONS(6128), + [anon_sym_LT_LT_EQ] = ACTIONS(6128), + [anon_sym_GT_GT_EQ] = ACTIONS(6128), + [anon_sym_AMP_EQ] = ACTIONS(6128), + [anon_sym_CARET_EQ] = ACTIONS(6128), + [anon_sym_PIPE_EQ] = ACTIONS(6128), + [anon_sym_and_eq] = ACTIONS(6130), + [anon_sym_or_eq] = ACTIONS(6130), + [anon_sym_xor_eq] = ACTIONS(6130), + [anon_sym_LT_EQ_GT] = ACTIONS(6128), + [anon_sym_or] = ACTIONS(6130), + [anon_sym_and] = ACTIONS(6130), + [anon_sym_bitor] = ACTIONS(6130), + [anon_sym_xor] = ACTIONS(6130), + [anon_sym_bitand] = ACTIONS(6130), + [anon_sym_not_eq] = ACTIONS(6130), + [anon_sym_DASH_DASH] = ACTIONS(6128), + [anon_sym_PLUS_PLUS] = ACTIONS(6128), + [anon_sym_DOT] = ACTIONS(6130), + [anon_sym_DOT_STAR] = ACTIONS(6128), + [anon_sym_DASH_GT] = ACTIONS(6128), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6130), + [anon_sym_decltype] = ACTIONS(6130), + }, + [2455] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(6147), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6145), + [anon_sym_COMMA] = ACTIONS(6145), + [aux_sym_preproc_if_token2] = ACTIONS(6145), + [aux_sym_preproc_else_token1] = ACTIONS(6145), + [aux_sym_preproc_elif_token1] = ACTIONS(6147), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6145), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6145), + [anon_sym_LPAREN2] = ACTIONS(6145), + [anon_sym_DASH] = ACTIONS(6147), + [anon_sym_PLUS] = ACTIONS(6147), + [anon_sym_STAR] = ACTIONS(6147), + [anon_sym_SLASH] = ACTIONS(6147), + [anon_sym_PERCENT] = ACTIONS(6147), + [anon_sym_PIPE_PIPE] = ACTIONS(6145), + [anon_sym_AMP_AMP] = ACTIONS(6145), + [anon_sym_PIPE] = ACTIONS(6147), + [anon_sym_CARET] = ACTIONS(6147), + [anon_sym_AMP] = ACTIONS(6147), + [anon_sym_EQ_EQ] = ACTIONS(6145), + [anon_sym_BANG_EQ] = ACTIONS(6145), + [anon_sym_GT] = ACTIONS(6147), + [anon_sym_GT_EQ] = ACTIONS(6145), + [anon_sym_LT_EQ] = ACTIONS(6147), + [anon_sym_LT] = ACTIONS(6147), + [anon_sym_LT_LT] = ACTIONS(6147), + [anon_sym_GT_GT] = ACTIONS(6147), + [anon_sym___attribute__] = ACTIONS(6147), + [anon_sym_LBRACE] = ACTIONS(6145), + [anon_sym_signed] = ACTIONS(6415), + [anon_sym_unsigned] = ACTIONS(6415), + [anon_sym_long] = ACTIONS(6415), + [anon_sym_short] = ACTIONS(6415), + [anon_sym_LBRACK] = ACTIONS(6145), + [anon_sym_EQ] = ACTIONS(6147), + [anon_sym_QMARK] = ACTIONS(6145), + [anon_sym_STAR_EQ] = ACTIONS(6145), + [anon_sym_SLASH_EQ] = ACTIONS(6145), + [anon_sym_PERCENT_EQ] = ACTIONS(6145), + [anon_sym_PLUS_EQ] = ACTIONS(6145), + [anon_sym_DASH_EQ] = ACTIONS(6145), + [anon_sym_LT_LT_EQ] = ACTIONS(6145), + [anon_sym_GT_GT_EQ] = ACTIONS(6145), + [anon_sym_AMP_EQ] = ACTIONS(6145), + [anon_sym_CARET_EQ] = ACTIONS(6145), + [anon_sym_PIPE_EQ] = ACTIONS(6145), + [anon_sym_and_eq] = ACTIONS(6147), + [anon_sym_or_eq] = ACTIONS(6147), + [anon_sym_xor_eq] = ACTIONS(6147), + [anon_sym_LT_EQ_GT] = ACTIONS(6145), + [anon_sym_or] = ACTIONS(6147), + [anon_sym_and] = ACTIONS(6147), + [anon_sym_bitor] = ACTIONS(6147), + [anon_sym_xor] = ACTIONS(6147), + [anon_sym_bitand] = ACTIONS(6147), + [anon_sym_not_eq] = ACTIONS(6147), + [anon_sym_DASH_DASH] = ACTIONS(6145), + [anon_sym_PLUS_PLUS] = ACTIONS(6145), + [anon_sym_DOT] = ACTIONS(6147), + [anon_sym_DOT_STAR] = ACTIONS(6145), + [anon_sym_DASH_GT] = ACTIONS(6145), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6147), + [anon_sym_decltype] = ACTIONS(6147), + }, + [2456] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1891), + [ts_builtin_sym_end] = ACTIONS(6128), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6128), + [anon_sym_COMMA] = ACTIONS(6128), + [anon_sym_RPAREN] = ACTIONS(6128), + [anon_sym_LPAREN2] = ACTIONS(6128), + [anon_sym_DASH] = ACTIONS(6130), + [anon_sym_PLUS] = ACTIONS(6130), + [anon_sym_STAR] = ACTIONS(6130), + [anon_sym_SLASH] = ACTIONS(6130), + [anon_sym_PERCENT] = ACTIONS(6130), + [anon_sym_PIPE_PIPE] = ACTIONS(6128), + [anon_sym_AMP_AMP] = ACTIONS(6128), + [anon_sym_PIPE] = ACTIONS(6130), + [anon_sym_CARET] = ACTIONS(6130), + [anon_sym_AMP] = ACTIONS(6130), + [anon_sym_EQ_EQ] = ACTIONS(6128), + [anon_sym_BANG_EQ] = ACTIONS(6128), + [anon_sym_GT] = ACTIONS(6130), + [anon_sym_GT_EQ] = ACTIONS(6128), + [anon_sym_LT_EQ] = ACTIONS(6130), + [anon_sym_LT] = ACTIONS(6130), + [anon_sym_LT_LT] = ACTIONS(6130), + [anon_sym_GT_GT] = ACTIONS(6130), + [anon_sym_SEMI] = ACTIONS(6128), + [anon_sym___attribute__] = ACTIONS(6128), + [anon_sym_LBRACE] = ACTIONS(6128), + [anon_sym_RBRACE] = ACTIONS(6128), + [anon_sym_signed] = ACTIONS(6417), + [anon_sym_unsigned] = ACTIONS(6417), + [anon_sym_long] = ACTIONS(6417), + [anon_sym_short] = ACTIONS(6417), + [anon_sym_LBRACK] = ACTIONS(6128), + [anon_sym_RBRACK] = ACTIONS(6128), + [anon_sym_EQ] = ACTIONS(6130), + [anon_sym_COLON] = ACTIONS(6128), + [anon_sym_QMARK] = ACTIONS(6128), + [anon_sym_STAR_EQ] = ACTIONS(6128), + [anon_sym_SLASH_EQ] = ACTIONS(6128), + [anon_sym_PERCENT_EQ] = ACTIONS(6128), + [anon_sym_PLUS_EQ] = ACTIONS(6128), + [anon_sym_DASH_EQ] = ACTIONS(6128), + [anon_sym_LT_LT_EQ] = ACTIONS(6128), + [anon_sym_GT_GT_EQ] = ACTIONS(6128), + [anon_sym_AMP_EQ] = ACTIONS(6128), + [anon_sym_CARET_EQ] = ACTIONS(6128), + [anon_sym_PIPE_EQ] = ACTIONS(6128), + [anon_sym_and_eq] = ACTIONS(6128), + [anon_sym_or_eq] = ACTIONS(6128), + [anon_sym_xor_eq] = ACTIONS(6128), + [anon_sym_LT_EQ_GT] = ACTIONS(6128), + [anon_sym_or] = ACTIONS(6130), + [anon_sym_and] = ACTIONS(6130), + [anon_sym_bitor] = ACTIONS(6128), + [anon_sym_xor] = ACTIONS(6130), + [anon_sym_bitand] = ACTIONS(6128), + [anon_sym_not_eq] = ACTIONS(6128), + [anon_sym_DASH_DASH] = ACTIONS(6128), + [anon_sym_PLUS_PLUS] = ACTIONS(6128), + [anon_sym_DOT] = ACTIONS(6130), + [anon_sym_DOT_STAR] = ACTIONS(6128), + [anon_sym_DASH_GT] = ACTIONS(6128), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6128), + [anon_sym_decltype] = ACTIONS(6128), + }, + [2457] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2461), + [sym_identifier] = ACTIONS(6185), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6183), + [anon_sym_COMMA] = ACTIONS(6183), + [aux_sym_preproc_if_token2] = ACTIONS(6183), + [aux_sym_preproc_else_token1] = ACTIONS(6183), + [aux_sym_preproc_elif_token1] = ACTIONS(6185), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6183), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6183), + [anon_sym_LPAREN2] = ACTIONS(6183), + [anon_sym_DASH] = ACTIONS(6185), + [anon_sym_PLUS] = ACTIONS(6185), + [anon_sym_STAR] = ACTIONS(6185), + [anon_sym_SLASH] = ACTIONS(6185), + [anon_sym_PERCENT] = ACTIONS(6185), + [anon_sym_PIPE_PIPE] = ACTIONS(6183), + [anon_sym_AMP_AMP] = ACTIONS(6183), + [anon_sym_PIPE] = ACTIONS(6185), + [anon_sym_CARET] = ACTIONS(6185), + [anon_sym_AMP] = ACTIONS(6185), + [anon_sym_EQ_EQ] = ACTIONS(6183), + [anon_sym_BANG_EQ] = ACTIONS(6183), + [anon_sym_GT] = ACTIONS(6185), + [anon_sym_GT_EQ] = ACTIONS(6183), + [anon_sym_LT_EQ] = ACTIONS(6185), + [anon_sym_LT] = ACTIONS(6185), + [anon_sym_LT_LT] = ACTIONS(6185), + [anon_sym_GT_GT] = ACTIONS(6185), + [anon_sym___attribute__] = ACTIONS(6185), + [anon_sym_LBRACE] = ACTIONS(6183), + [anon_sym_signed] = ACTIONS(6419), + [anon_sym_unsigned] = ACTIONS(6419), + [anon_sym_long] = ACTIONS(6419), + [anon_sym_short] = ACTIONS(6419), + [anon_sym_LBRACK] = ACTIONS(6183), + [anon_sym_EQ] = ACTIONS(6185), + [anon_sym_QMARK] = ACTIONS(6183), + [anon_sym_STAR_EQ] = ACTIONS(6183), + [anon_sym_SLASH_EQ] = ACTIONS(6183), + [anon_sym_PERCENT_EQ] = ACTIONS(6183), + [anon_sym_PLUS_EQ] = ACTIONS(6183), + [anon_sym_DASH_EQ] = ACTIONS(6183), + [anon_sym_LT_LT_EQ] = ACTIONS(6183), + [anon_sym_GT_GT_EQ] = ACTIONS(6183), + [anon_sym_AMP_EQ] = ACTIONS(6183), + [anon_sym_CARET_EQ] = ACTIONS(6183), + [anon_sym_PIPE_EQ] = ACTIONS(6183), + [anon_sym_and_eq] = ACTIONS(6185), + [anon_sym_or_eq] = ACTIONS(6185), + [anon_sym_xor_eq] = ACTIONS(6185), + [anon_sym_LT_EQ_GT] = ACTIONS(6183), + [anon_sym_or] = ACTIONS(6185), + [anon_sym_and] = ACTIONS(6185), + [anon_sym_bitor] = ACTIONS(6185), + [anon_sym_xor] = ACTIONS(6185), + [anon_sym_bitand] = ACTIONS(6185), + [anon_sym_not_eq] = ACTIONS(6185), + [anon_sym_DASH_DASH] = ACTIONS(6183), + [anon_sym_PLUS_PLUS] = ACTIONS(6183), + [anon_sym_DOT] = ACTIONS(6185), + [anon_sym_DOT_STAR] = ACTIONS(6183), + [anon_sym_DASH_GT] = ACTIONS(6183), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6185), + [anon_sym_decltype] = ACTIONS(6185), + }, + [2458] = { + [sym_identifier] = ACTIONS(5664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5662), + [anon_sym_COMMA] = ACTIONS(5662), + [aux_sym_preproc_if_token2] = ACTIONS(5662), + [aux_sym_preproc_else_token1] = ACTIONS(5662), + [aux_sym_preproc_elif_token1] = ACTIONS(5662), + [anon_sym_LPAREN2] = ACTIONS(5662), + [anon_sym_DASH] = ACTIONS(5664), + [anon_sym_PLUS] = ACTIONS(5664), + [anon_sym_STAR] = ACTIONS(5664), + [anon_sym_SLASH] = ACTIONS(5664), + [anon_sym_PERCENT] = ACTIONS(5664), + [anon_sym_PIPE_PIPE] = ACTIONS(5662), + [anon_sym_AMP_AMP] = ACTIONS(5662), + [anon_sym_PIPE] = ACTIONS(5664), + [anon_sym_CARET] = ACTIONS(5664), + [anon_sym_AMP] = ACTIONS(5664), + [anon_sym_EQ_EQ] = ACTIONS(5662), + [anon_sym_BANG_EQ] = ACTIONS(5662), + [anon_sym_GT] = ACTIONS(5664), + [anon_sym_GT_EQ] = ACTIONS(5662), + [anon_sym_LT_EQ] = ACTIONS(5664), + [anon_sym_LT] = ACTIONS(5664), + [anon_sym_LT_LT] = ACTIONS(5664), + [anon_sym_GT_GT] = ACTIONS(5664), + [anon_sym_LBRACK] = ACTIONS(5662), + [anon_sym_EQ] = ACTIONS(5664), + [anon_sym_QMARK] = ACTIONS(5662), + [anon_sym_STAR_EQ] = ACTIONS(5662), + [anon_sym_SLASH_EQ] = ACTIONS(5662), + [anon_sym_PERCENT_EQ] = ACTIONS(5662), + [anon_sym_PLUS_EQ] = ACTIONS(5662), + [anon_sym_DASH_EQ] = ACTIONS(5662), + [anon_sym_LT_LT_EQ] = ACTIONS(5662), + [anon_sym_GT_GT_EQ] = ACTIONS(5662), + [anon_sym_AMP_EQ] = ACTIONS(5662), + [anon_sym_CARET_EQ] = ACTIONS(5662), + [anon_sym_PIPE_EQ] = ACTIONS(5662), + [anon_sym_and_eq] = ACTIONS(5664), + [anon_sym_or_eq] = ACTIONS(5664), + [anon_sym_xor_eq] = ACTIONS(5664), + [anon_sym_LT_EQ_GT] = ACTIONS(5662), + [anon_sym_or] = ACTIONS(5664), + [anon_sym_and] = ACTIONS(5664), + [anon_sym_bitor] = ACTIONS(5664), + [anon_sym_xor] = ACTIONS(5664), + [anon_sym_bitand] = ACTIONS(5664), + [anon_sym_not_eq] = ACTIONS(5664), + [anon_sym_DASH_DASH] = ACTIONS(5662), + [anon_sym_PLUS_PLUS] = ACTIONS(5662), + [anon_sym_DOT] = ACTIONS(5664), + [anon_sym_DOT_STAR] = ACTIONS(5662), + [anon_sym_DASH_GT] = ACTIONS(5662), + [anon_sym_L_DQUOTE] = ACTIONS(5662), + [anon_sym_u_DQUOTE] = ACTIONS(5662), + [anon_sym_U_DQUOTE] = ACTIONS(5662), + [anon_sym_u8_DQUOTE] = ACTIONS(5662), + [anon_sym_DQUOTE] = ACTIONS(5662), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5662), + [anon_sym_LR_DQUOTE] = ACTIONS(5662), + [anon_sym_uR_DQUOTE] = ACTIONS(5662), + [anon_sym_UR_DQUOTE] = ACTIONS(5662), + [anon_sym_u8R_DQUOTE] = ACTIONS(5662), + [sym_literal_suffix] = ACTIONS(5664), + }, + [2459] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2462), + [sym_identifier] = ACTIONS(6158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6156), + [anon_sym_COMMA] = ACTIONS(6156), + [aux_sym_preproc_if_token2] = ACTIONS(6156), + [aux_sym_preproc_else_token1] = ACTIONS(6156), + [aux_sym_preproc_elif_token1] = ACTIONS(6158), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6156), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6156), + [anon_sym_LPAREN2] = ACTIONS(6156), + [anon_sym_DASH] = ACTIONS(6158), + [anon_sym_PLUS] = ACTIONS(6158), + [anon_sym_STAR] = ACTIONS(6158), + [anon_sym_SLASH] = ACTIONS(6158), + [anon_sym_PERCENT] = ACTIONS(6158), + [anon_sym_PIPE_PIPE] = ACTIONS(6156), + [anon_sym_AMP_AMP] = ACTIONS(6156), + [anon_sym_PIPE] = ACTIONS(6158), + [anon_sym_CARET] = ACTIONS(6158), + [anon_sym_AMP] = ACTIONS(6158), + [anon_sym_EQ_EQ] = ACTIONS(6156), + [anon_sym_BANG_EQ] = ACTIONS(6156), + [anon_sym_GT] = ACTIONS(6158), + [anon_sym_GT_EQ] = ACTIONS(6156), + [anon_sym_LT_EQ] = ACTIONS(6158), + [anon_sym_LT] = ACTIONS(6158), + [anon_sym_LT_LT] = ACTIONS(6158), + [anon_sym_GT_GT] = ACTIONS(6158), + [anon_sym___attribute__] = ACTIONS(6158), + [anon_sym_LBRACE] = ACTIONS(6156), + [anon_sym_signed] = ACTIONS(6421), + [anon_sym_unsigned] = ACTIONS(6421), + [anon_sym_long] = ACTIONS(6421), + [anon_sym_short] = ACTIONS(6421), + [anon_sym_LBRACK] = ACTIONS(6156), + [anon_sym_EQ] = ACTIONS(6158), + [anon_sym_QMARK] = ACTIONS(6156), + [anon_sym_STAR_EQ] = ACTIONS(6156), + [anon_sym_SLASH_EQ] = ACTIONS(6156), + [anon_sym_PERCENT_EQ] = ACTIONS(6156), + [anon_sym_PLUS_EQ] = ACTIONS(6156), + [anon_sym_DASH_EQ] = ACTIONS(6156), + [anon_sym_LT_LT_EQ] = ACTIONS(6156), + [anon_sym_GT_GT_EQ] = ACTIONS(6156), + [anon_sym_AMP_EQ] = ACTIONS(6156), + [anon_sym_CARET_EQ] = ACTIONS(6156), + [anon_sym_PIPE_EQ] = ACTIONS(6156), + [anon_sym_and_eq] = ACTIONS(6158), + [anon_sym_or_eq] = ACTIONS(6158), + [anon_sym_xor_eq] = ACTIONS(6158), + [anon_sym_LT_EQ_GT] = ACTIONS(6156), + [anon_sym_or] = ACTIONS(6158), + [anon_sym_and] = ACTIONS(6158), + [anon_sym_bitor] = ACTIONS(6158), + [anon_sym_xor] = ACTIONS(6158), + [anon_sym_bitand] = ACTIONS(6158), + [anon_sym_not_eq] = ACTIONS(6158), + [anon_sym_DASH_DASH] = ACTIONS(6156), + [anon_sym_PLUS_PLUS] = ACTIONS(6156), + [anon_sym_DOT] = ACTIONS(6158), + [anon_sym_DOT_STAR] = ACTIONS(6156), + [anon_sym_DASH_GT] = ACTIONS(6156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6158), + [anon_sym_decltype] = ACTIONS(6158), + }, + [2460] = { + [sym_identifier] = ACTIONS(5649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5647), + [anon_sym_COMMA] = ACTIONS(5647), + [aux_sym_preproc_if_token2] = ACTIONS(5647), + [aux_sym_preproc_else_token1] = ACTIONS(5647), + [aux_sym_preproc_elif_token1] = ACTIONS(5647), + [anon_sym_LPAREN2] = ACTIONS(5647), + [anon_sym_DASH] = ACTIONS(5649), + [anon_sym_PLUS] = ACTIONS(5649), + [anon_sym_STAR] = ACTIONS(5649), + [anon_sym_SLASH] = ACTIONS(5649), + [anon_sym_PERCENT] = ACTIONS(5649), + [anon_sym_PIPE_PIPE] = ACTIONS(5647), + [anon_sym_AMP_AMP] = ACTIONS(5647), + [anon_sym_PIPE] = ACTIONS(5649), + [anon_sym_CARET] = ACTIONS(5649), + [anon_sym_AMP] = ACTIONS(5649), + [anon_sym_EQ_EQ] = ACTIONS(5647), + [anon_sym_BANG_EQ] = ACTIONS(5647), + [anon_sym_GT] = ACTIONS(5649), + [anon_sym_GT_EQ] = ACTIONS(5647), + [anon_sym_LT_EQ] = ACTIONS(5649), + [anon_sym_LT] = ACTIONS(5649), + [anon_sym_LT_LT] = ACTIONS(5649), + [anon_sym_GT_GT] = ACTIONS(5649), + [anon_sym_LBRACK] = ACTIONS(5647), + [anon_sym_EQ] = ACTIONS(5649), + [anon_sym_QMARK] = ACTIONS(5647), + [anon_sym_STAR_EQ] = ACTIONS(5647), + [anon_sym_SLASH_EQ] = ACTIONS(5647), + [anon_sym_PERCENT_EQ] = ACTIONS(5647), + [anon_sym_PLUS_EQ] = ACTIONS(5647), + [anon_sym_DASH_EQ] = ACTIONS(5647), + [anon_sym_LT_LT_EQ] = ACTIONS(5647), + [anon_sym_GT_GT_EQ] = ACTIONS(5647), + [anon_sym_AMP_EQ] = ACTIONS(5647), + [anon_sym_CARET_EQ] = ACTIONS(5647), + [anon_sym_PIPE_EQ] = ACTIONS(5647), + [anon_sym_and_eq] = ACTIONS(5649), + [anon_sym_or_eq] = ACTIONS(5649), + [anon_sym_xor_eq] = ACTIONS(5649), + [anon_sym_LT_EQ_GT] = ACTIONS(5647), + [anon_sym_or] = ACTIONS(5649), + [anon_sym_and] = ACTIONS(5649), + [anon_sym_bitor] = ACTIONS(5649), + [anon_sym_xor] = ACTIONS(5649), + [anon_sym_bitand] = ACTIONS(5649), + [anon_sym_not_eq] = ACTIONS(5649), + [anon_sym_DASH_DASH] = ACTIONS(5647), + [anon_sym_PLUS_PLUS] = ACTIONS(5647), + [anon_sym_DOT] = ACTIONS(5649), + [anon_sym_DOT_STAR] = ACTIONS(5647), + [anon_sym_DASH_GT] = ACTIONS(5647), + [anon_sym_L_DQUOTE] = ACTIONS(5647), + [anon_sym_u_DQUOTE] = ACTIONS(5647), + [anon_sym_U_DQUOTE] = ACTIONS(5647), + [anon_sym_u8_DQUOTE] = ACTIONS(5647), + [anon_sym_DQUOTE] = ACTIONS(5647), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5647), + [anon_sym_LR_DQUOTE] = ACTIONS(5647), + [anon_sym_uR_DQUOTE] = ACTIONS(5647), + [anon_sym_UR_DQUOTE] = ACTIONS(5647), + [anon_sym_u8R_DQUOTE] = ACTIONS(5647), + [sym_literal_suffix] = ACTIONS(5649), + }, + [2461] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(6056), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6054), + [anon_sym_COMMA] = ACTIONS(6054), + [aux_sym_preproc_if_token2] = ACTIONS(6054), + [aux_sym_preproc_else_token1] = ACTIONS(6054), + [aux_sym_preproc_elif_token1] = ACTIONS(6056), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6054), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6054), + [anon_sym_LPAREN2] = ACTIONS(6054), + [anon_sym_DASH] = ACTIONS(6056), + [anon_sym_PLUS] = ACTIONS(6056), + [anon_sym_STAR] = ACTIONS(6056), + [anon_sym_SLASH] = ACTIONS(6056), + [anon_sym_PERCENT] = ACTIONS(6056), + [anon_sym_PIPE_PIPE] = ACTIONS(6054), + [anon_sym_AMP_AMP] = ACTIONS(6054), + [anon_sym_PIPE] = ACTIONS(6056), + [anon_sym_CARET] = ACTIONS(6056), + [anon_sym_AMP] = ACTIONS(6056), + [anon_sym_EQ_EQ] = ACTIONS(6054), + [anon_sym_BANG_EQ] = ACTIONS(6054), + [anon_sym_GT] = ACTIONS(6056), + [anon_sym_GT_EQ] = ACTIONS(6054), + [anon_sym_LT_EQ] = ACTIONS(6056), + [anon_sym_LT] = ACTIONS(6056), + [anon_sym_LT_LT] = ACTIONS(6056), + [anon_sym_GT_GT] = ACTIONS(6056), + [anon_sym___attribute__] = ACTIONS(6056), + [anon_sym_LBRACE] = ACTIONS(6054), + [anon_sym_signed] = ACTIONS(6415), + [anon_sym_unsigned] = ACTIONS(6415), + [anon_sym_long] = ACTIONS(6415), + [anon_sym_short] = ACTIONS(6415), + [anon_sym_LBRACK] = ACTIONS(6054), + [anon_sym_EQ] = ACTIONS(6056), + [anon_sym_QMARK] = ACTIONS(6054), + [anon_sym_STAR_EQ] = ACTIONS(6054), + [anon_sym_SLASH_EQ] = ACTIONS(6054), + [anon_sym_PERCENT_EQ] = ACTIONS(6054), + [anon_sym_PLUS_EQ] = ACTIONS(6054), + [anon_sym_DASH_EQ] = ACTIONS(6054), + [anon_sym_LT_LT_EQ] = ACTIONS(6054), + [anon_sym_GT_GT_EQ] = ACTIONS(6054), + [anon_sym_AMP_EQ] = ACTIONS(6054), + [anon_sym_CARET_EQ] = ACTIONS(6054), + [anon_sym_PIPE_EQ] = ACTIONS(6054), + [anon_sym_and_eq] = ACTIONS(6056), + [anon_sym_or_eq] = ACTIONS(6056), + [anon_sym_xor_eq] = ACTIONS(6056), + [anon_sym_LT_EQ_GT] = ACTIONS(6054), + [anon_sym_or] = ACTIONS(6056), + [anon_sym_and] = ACTIONS(6056), + [anon_sym_bitor] = ACTIONS(6056), + [anon_sym_xor] = ACTIONS(6056), + [anon_sym_bitand] = ACTIONS(6056), + [anon_sym_not_eq] = ACTIONS(6056), + [anon_sym_DASH_DASH] = ACTIONS(6054), + [anon_sym_PLUS_PLUS] = ACTIONS(6054), + [anon_sym_DOT] = ACTIONS(6056), + [anon_sym_DOT_STAR] = ACTIONS(6054), + [anon_sym_DASH_GT] = ACTIONS(6054), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6056), + [anon_sym_decltype] = ACTIONS(6056), + }, + [2462] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(6066), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6064), + [anon_sym_COMMA] = ACTIONS(6064), + [aux_sym_preproc_if_token2] = ACTIONS(6064), + [aux_sym_preproc_else_token1] = ACTIONS(6064), + [aux_sym_preproc_elif_token1] = ACTIONS(6066), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6064), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6064), + [anon_sym_LPAREN2] = ACTIONS(6064), + [anon_sym_DASH] = ACTIONS(6066), + [anon_sym_PLUS] = ACTIONS(6066), + [anon_sym_STAR] = ACTIONS(6066), + [anon_sym_SLASH] = ACTIONS(6066), + [anon_sym_PERCENT] = ACTIONS(6066), + [anon_sym_PIPE_PIPE] = ACTIONS(6064), + [anon_sym_AMP_AMP] = ACTIONS(6064), + [anon_sym_PIPE] = ACTIONS(6066), + [anon_sym_CARET] = ACTIONS(6066), + [anon_sym_AMP] = ACTIONS(6066), + [anon_sym_EQ_EQ] = ACTIONS(6064), + [anon_sym_BANG_EQ] = ACTIONS(6064), + [anon_sym_GT] = ACTIONS(6066), + [anon_sym_GT_EQ] = ACTIONS(6064), + [anon_sym_LT_EQ] = ACTIONS(6066), + [anon_sym_LT] = ACTIONS(6066), + [anon_sym_LT_LT] = ACTIONS(6066), + [anon_sym_GT_GT] = ACTIONS(6066), + [anon_sym___attribute__] = ACTIONS(6066), + [anon_sym_LBRACE] = ACTIONS(6064), + [anon_sym_signed] = ACTIONS(6415), + [anon_sym_unsigned] = ACTIONS(6415), + [anon_sym_long] = ACTIONS(6415), + [anon_sym_short] = ACTIONS(6415), + [anon_sym_LBRACK] = ACTIONS(6064), + [anon_sym_EQ] = ACTIONS(6066), + [anon_sym_QMARK] = ACTIONS(6064), + [anon_sym_STAR_EQ] = ACTIONS(6064), + [anon_sym_SLASH_EQ] = ACTIONS(6064), + [anon_sym_PERCENT_EQ] = ACTIONS(6064), + [anon_sym_PLUS_EQ] = ACTIONS(6064), + [anon_sym_DASH_EQ] = ACTIONS(6064), + [anon_sym_LT_LT_EQ] = ACTIONS(6064), + [anon_sym_GT_GT_EQ] = ACTIONS(6064), + [anon_sym_AMP_EQ] = ACTIONS(6064), + [anon_sym_CARET_EQ] = ACTIONS(6064), + [anon_sym_PIPE_EQ] = ACTIONS(6064), + [anon_sym_and_eq] = ACTIONS(6066), + [anon_sym_or_eq] = ACTIONS(6066), + [anon_sym_xor_eq] = ACTIONS(6066), + [anon_sym_LT_EQ_GT] = ACTIONS(6064), + [anon_sym_or] = ACTIONS(6066), + [anon_sym_and] = ACTIONS(6066), + [anon_sym_bitor] = ACTIONS(6066), + [anon_sym_xor] = ACTIONS(6066), + [anon_sym_bitand] = ACTIONS(6066), + [anon_sym_not_eq] = ACTIONS(6066), + [anon_sym_DASH_DASH] = ACTIONS(6064), + [anon_sym_PLUS_PLUS] = ACTIONS(6064), + [anon_sym_DOT] = ACTIONS(6066), + [anon_sym_DOT_STAR] = ACTIONS(6064), + [anon_sym_DASH_GT] = ACTIONS(6064), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6066), + [anon_sym_decltype] = ACTIONS(6066), + }, + [2463] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2454), + [sym_identifier] = ACTIONS(6090), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6088), + [anon_sym_COMMA] = ACTIONS(6088), + [aux_sym_preproc_if_token2] = ACTIONS(6088), + [aux_sym_preproc_else_token1] = ACTIONS(6088), + [aux_sym_preproc_elif_token1] = ACTIONS(6090), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6088), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6088), + [anon_sym_LPAREN2] = ACTIONS(6088), + [anon_sym_DASH] = ACTIONS(6090), + [anon_sym_PLUS] = ACTIONS(6090), + [anon_sym_STAR] = ACTIONS(6090), + [anon_sym_SLASH] = ACTIONS(6090), + [anon_sym_PERCENT] = ACTIONS(6090), + [anon_sym_PIPE_PIPE] = ACTIONS(6088), + [anon_sym_AMP_AMP] = ACTIONS(6088), + [anon_sym_PIPE] = ACTIONS(6090), + [anon_sym_CARET] = ACTIONS(6090), + [anon_sym_AMP] = ACTIONS(6090), + [anon_sym_EQ_EQ] = ACTIONS(6088), + [anon_sym_BANG_EQ] = ACTIONS(6088), + [anon_sym_GT] = ACTIONS(6090), + [anon_sym_GT_EQ] = ACTIONS(6088), + [anon_sym_LT_EQ] = ACTIONS(6090), + [anon_sym_LT] = ACTIONS(6090), + [anon_sym_LT_LT] = ACTIONS(6090), + [anon_sym_GT_GT] = ACTIONS(6090), + [anon_sym___attribute__] = ACTIONS(6090), + [anon_sym_LBRACE] = ACTIONS(6088), + [anon_sym_signed] = ACTIONS(6423), + [anon_sym_unsigned] = ACTIONS(6423), + [anon_sym_long] = ACTIONS(6423), + [anon_sym_short] = ACTIONS(6423), + [anon_sym_LBRACK] = ACTIONS(6088), + [anon_sym_EQ] = ACTIONS(6090), + [anon_sym_QMARK] = ACTIONS(6088), + [anon_sym_STAR_EQ] = ACTIONS(6088), + [anon_sym_SLASH_EQ] = ACTIONS(6088), + [anon_sym_PERCENT_EQ] = ACTIONS(6088), + [anon_sym_PLUS_EQ] = ACTIONS(6088), + [anon_sym_DASH_EQ] = ACTIONS(6088), + [anon_sym_LT_LT_EQ] = ACTIONS(6088), + [anon_sym_GT_GT_EQ] = ACTIONS(6088), + [anon_sym_AMP_EQ] = ACTIONS(6088), + [anon_sym_CARET_EQ] = ACTIONS(6088), + [anon_sym_PIPE_EQ] = ACTIONS(6088), + [anon_sym_and_eq] = ACTIONS(6090), + [anon_sym_or_eq] = ACTIONS(6090), + [anon_sym_xor_eq] = ACTIONS(6090), + [anon_sym_LT_EQ_GT] = ACTIONS(6088), + [anon_sym_or] = ACTIONS(6090), + [anon_sym_and] = ACTIONS(6090), + [anon_sym_bitor] = ACTIONS(6090), + [anon_sym_xor] = ACTIONS(6090), + [anon_sym_bitand] = ACTIONS(6090), + [anon_sym_not_eq] = ACTIONS(6090), + [anon_sym_DASH_DASH] = ACTIONS(6088), + [anon_sym_PLUS_PLUS] = ACTIONS(6088), + [anon_sym_DOT] = ACTIONS(6090), + [anon_sym_DOT_STAR] = ACTIONS(6088), + [anon_sym_DASH_GT] = ACTIONS(6088), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6090), + [anon_sym_decltype] = ACTIONS(6090), + }, + [2464] = { + [sym_string_literal] = STATE(2479), + [sym_raw_string_literal] = STATE(2479), + [aux_sym_concatenated_string_repeat1] = STATE(2479), + [sym_identifier] = ACTIONS(6425), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5560), + [anon_sym_LPAREN2] = ACTIONS(5556), + [anon_sym_DASH] = ACTIONS(5560), + [anon_sym_PLUS] = ACTIONS(5560), + [anon_sym_STAR] = ACTIONS(5560), + [anon_sym_SLASH] = ACTIONS(5560), + [anon_sym_PERCENT] = ACTIONS(5560), + [anon_sym_PIPE_PIPE] = ACTIONS(5556), + [anon_sym_AMP_AMP] = ACTIONS(5556), + [anon_sym_PIPE] = ACTIONS(5560), + [anon_sym_CARET] = ACTIONS(5560), + [anon_sym_AMP] = ACTIONS(5560), + [anon_sym_EQ_EQ] = ACTIONS(5556), + [anon_sym_BANG_EQ] = ACTIONS(5556), + [anon_sym_GT] = ACTIONS(5560), + [anon_sym_GT_EQ] = ACTIONS(5556), + [anon_sym_LT_EQ] = ACTIONS(5560), + [anon_sym_LT] = ACTIONS(5560), + [anon_sym_LT_LT] = ACTIONS(5560), + [anon_sym_GT_GT] = ACTIONS(5560), + [anon_sym_LBRACK] = ACTIONS(5556), + [anon_sym_EQ] = ACTIONS(5560), + [anon_sym_QMARK] = ACTIONS(5556), + [anon_sym_STAR_EQ] = ACTIONS(5556), + [anon_sym_SLASH_EQ] = ACTIONS(5556), + [anon_sym_PERCENT_EQ] = ACTIONS(5556), + [anon_sym_PLUS_EQ] = ACTIONS(5556), + [anon_sym_DASH_EQ] = ACTIONS(5556), + [anon_sym_LT_LT_EQ] = ACTIONS(5556), + [anon_sym_GT_GT_EQ] = ACTIONS(5556), + [anon_sym_AMP_EQ] = ACTIONS(5556), + [anon_sym_CARET_EQ] = ACTIONS(5556), + [anon_sym_PIPE_EQ] = ACTIONS(5556), + [anon_sym_and_eq] = ACTIONS(5560), + [anon_sym_or_eq] = ACTIONS(5560), + [anon_sym_xor_eq] = ACTIONS(5560), + [anon_sym_LT_EQ_GT] = ACTIONS(5556), + [anon_sym_or] = ACTIONS(5560), + [anon_sym_and] = ACTIONS(5560), + [anon_sym_bitor] = ACTIONS(5560), + [anon_sym_xor] = ACTIONS(5560), + [anon_sym_bitand] = ACTIONS(5560), + [anon_sym_not_eq] = ACTIONS(5560), + [anon_sym_DASH_DASH] = ACTIONS(5556), + [anon_sym_PLUS_PLUS] = ACTIONS(5556), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_DOT_STAR] = ACTIONS(5556), + [anon_sym_DASH_GT] = ACTIONS(5556), + [anon_sym_L_DQUOTE] = ACTIONS(6405), + [anon_sym_u_DQUOTE] = ACTIONS(6405), + [anon_sym_U_DQUOTE] = ACTIONS(6405), + [anon_sym_u8_DQUOTE] = ACTIONS(6405), + [anon_sym_DQUOTE] = ACTIONS(6405), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6407), + [anon_sym_LR_DQUOTE] = ACTIONS(6407), + [anon_sym_uR_DQUOTE] = ACTIONS(6407), + [anon_sym_UR_DQUOTE] = ACTIONS(6407), + [anon_sym_u8R_DQUOTE] = ACTIONS(6407), + [sym_literal_suffix] = ACTIONS(5560), + [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(5556), + }, + [2465] = { + [sym_template_argument_list] = STATE(1833), + [sym_identifier] = ACTIONS(5374), + [anon_sym_LPAREN2] = ACTIONS(5381), + [anon_sym_TILDE] = ACTIONS(5381), + [anon_sym_STAR] = ACTIONS(5381), + [anon_sym_PIPE_PIPE] = ACTIONS(5381), + [anon_sym_AMP_AMP] = ACTIONS(5381), + [anon_sym_AMP] = ACTIONS(5374), + [anon_sym_LT] = ACTIONS(6427), + [anon_sym___extension__] = ACTIONS(5374), + [anon_sym_extern] = ACTIONS(5374), + [anon_sym___attribute__] = ACTIONS(5374), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5381), + [anon_sym___declspec] = ACTIONS(5374), + [anon_sym___based] = ACTIONS(5374), + [anon_sym___cdecl] = ACTIONS(5374), + [anon_sym___clrcall] = ACTIONS(5374), + [anon_sym___stdcall] = ACTIONS(5374), + [anon_sym___fastcall] = ACTIONS(5374), + [anon_sym___thiscall] = ACTIONS(5374), + [anon_sym___vectorcall] = ACTIONS(5374), + [anon_sym_signed] = ACTIONS(5374), + [anon_sym_unsigned] = ACTIONS(5374), + [anon_sym_long] = ACTIONS(5374), + [anon_sym_short] = ACTIONS(5374), + [anon_sym_LBRACK] = ACTIONS(5374), + [anon_sym_static] = ACTIONS(5374), + [anon_sym_register] = ACTIONS(5374), + [anon_sym_inline] = ACTIONS(5374), + [anon_sym___inline] = ACTIONS(5374), + [anon_sym___inline__] = ACTIONS(5374), + [anon_sym___forceinline] = ACTIONS(5374), + [anon_sym_thread_local] = ACTIONS(5374), + [anon_sym___thread] = ACTIONS(5374), + [anon_sym_const] = ACTIONS(5374), + [anon_sym_constexpr] = ACTIONS(5374), + [anon_sym_volatile] = ACTIONS(5374), + [anon_sym_restrict] = ACTIONS(5374), + [anon_sym___restrict__] = ACTIONS(5374), + [anon_sym__Atomic] = ACTIONS(5374), + [anon_sym__Noreturn] = ACTIONS(5374), + [anon_sym_noreturn] = ACTIONS(5374), + [anon_sym_mutable] = ACTIONS(5374), + [anon_sym_constinit] = ACTIONS(5374), + [anon_sym_consteval] = ACTIONS(5374), + [sym_primitive_type] = ACTIONS(5374), + [anon_sym_enum] = ACTIONS(5374), + [anon_sym_class] = ACTIONS(5374), + [anon_sym_struct] = ACTIONS(5374), + [anon_sym_union] = ACTIONS(5374), + [anon_sym_or] = ACTIONS(5374), + [anon_sym_and] = ACTIONS(5374), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5374), + [anon_sym_decltype] = ACTIONS(5374), + [anon_sym_virtual] = ACTIONS(5374), + [anon_sym_alignas] = ACTIONS(5374), + [anon_sym_explicit] = ACTIONS(5374), + [anon_sym_typename] = ACTIONS(5374), + [anon_sym_template] = ACTIONS(5374), + [anon_sym_operator] = ACTIONS(5374), + [anon_sym_friend] = ACTIONS(5374), + [anon_sym_using] = ACTIONS(5374), + [anon_sym_concept] = ACTIONS(5374), + }, + [2466] = { + [sym_template_argument_list] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2624), + [sym_identifier] = ACTIONS(6090), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6088), + [anon_sym_COMMA] = ACTIONS(6088), + [aux_sym_preproc_if_token2] = ACTIONS(6088), + [aux_sym_preproc_else_token1] = ACTIONS(6088), + [aux_sym_preproc_elif_token1] = ACTIONS(6088), + [anon_sym_LPAREN2] = ACTIONS(6088), + [anon_sym_DASH] = ACTIONS(6090), + [anon_sym_PLUS] = ACTIONS(6090), + [anon_sym_STAR] = ACTIONS(6090), + [anon_sym_SLASH] = ACTIONS(6090), + [anon_sym_PERCENT] = ACTIONS(6090), + [anon_sym_PIPE_PIPE] = ACTIONS(6088), + [anon_sym_AMP_AMP] = ACTIONS(6088), + [anon_sym_PIPE] = ACTIONS(6090), + [anon_sym_CARET] = ACTIONS(6090), + [anon_sym_AMP] = ACTIONS(6090), + [anon_sym_EQ_EQ] = ACTIONS(6088), + [anon_sym_BANG_EQ] = ACTIONS(6088), + [anon_sym_GT] = ACTIONS(6090), + [anon_sym_GT_EQ] = ACTIONS(6088), + [anon_sym_LT_EQ] = ACTIONS(6090), + [anon_sym_LT] = ACTIONS(6090), + [anon_sym_LT_LT] = ACTIONS(6090), + [anon_sym_GT_GT] = ACTIONS(6090), + [anon_sym___attribute__] = ACTIONS(6090), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(6088), + [anon_sym_signed] = ACTIONS(6429), + [anon_sym_unsigned] = ACTIONS(6429), + [anon_sym_long] = ACTIONS(6429), + [anon_sym_short] = ACTIONS(6429), + [anon_sym_LBRACK] = ACTIONS(6088), + [anon_sym_EQ] = ACTIONS(6090), + [anon_sym_QMARK] = ACTIONS(6088), + [anon_sym_STAR_EQ] = ACTIONS(6088), + [anon_sym_SLASH_EQ] = ACTIONS(6088), + [anon_sym_PERCENT_EQ] = ACTIONS(6088), + [anon_sym_PLUS_EQ] = ACTIONS(6088), + [anon_sym_DASH_EQ] = ACTIONS(6088), + [anon_sym_LT_LT_EQ] = ACTIONS(6088), + [anon_sym_GT_GT_EQ] = ACTIONS(6088), + [anon_sym_AMP_EQ] = ACTIONS(6088), + [anon_sym_CARET_EQ] = ACTIONS(6088), + [anon_sym_PIPE_EQ] = ACTIONS(6088), + [anon_sym_and_eq] = ACTIONS(6090), + [anon_sym_or_eq] = ACTIONS(6090), + [anon_sym_xor_eq] = ACTIONS(6090), + [anon_sym_LT_EQ_GT] = ACTIONS(6088), + [anon_sym_or] = ACTIONS(6090), + [anon_sym_and] = ACTIONS(6090), + [anon_sym_bitor] = ACTIONS(6090), + [anon_sym_xor] = ACTIONS(6090), + [anon_sym_bitand] = ACTIONS(6090), + [anon_sym_not_eq] = ACTIONS(6090), + [anon_sym_DASH_DASH] = ACTIONS(6088), + [anon_sym_PLUS_PLUS] = ACTIONS(6088), + [anon_sym_DOT] = ACTIONS(6090), + [anon_sym_DOT_STAR] = ACTIONS(6088), + [anon_sym_DASH_GT] = ACTIONS(6088), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6090), + [anon_sym_decltype] = ACTIONS(6090), + }, + [2467] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2474), + [ts_builtin_sym_end] = ACTIONS(6183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6183), + [anon_sym_COMMA] = ACTIONS(6183), + [anon_sym_RPAREN] = ACTIONS(6183), + [anon_sym_LPAREN2] = ACTIONS(6183), + [anon_sym_DASH] = ACTIONS(6185), + [anon_sym_PLUS] = ACTIONS(6185), + [anon_sym_STAR] = ACTIONS(6185), + [anon_sym_SLASH] = ACTIONS(6185), + [anon_sym_PERCENT] = ACTIONS(6185), + [anon_sym_PIPE_PIPE] = ACTIONS(6183), + [anon_sym_AMP_AMP] = ACTIONS(6183), + [anon_sym_PIPE] = ACTIONS(6185), + [anon_sym_CARET] = ACTIONS(6185), + [anon_sym_AMP] = ACTIONS(6185), + [anon_sym_EQ_EQ] = ACTIONS(6183), + [anon_sym_BANG_EQ] = ACTIONS(6183), + [anon_sym_GT] = ACTIONS(6185), + [anon_sym_GT_EQ] = ACTIONS(6183), + [anon_sym_LT_EQ] = ACTIONS(6185), + [anon_sym_LT] = ACTIONS(6185), + [anon_sym_LT_LT] = ACTIONS(6185), + [anon_sym_GT_GT] = ACTIONS(6185), + [anon_sym_SEMI] = ACTIONS(6183), + [anon_sym___attribute__] = ACTIONS(6183), + [anon_sym_LBRACE] = ACTIONS(6183), + [anon_sym_RBRACE] = ACTIONS(6183), + [anon_sym_signed] = ACTIONS(6431), + [anon_sym_unsigned] = ACTIONS(6431), + [anon_sym_long] = ACTIONS(6431), + [anon_sym_short] = ACTIONS(6431), + [anon_sym_LBRACK] = ACTIONS(6183), + [anon_sym_RBRACK] = ACTIONS(6183), + [anon_sym_EQ] = ACTIONS(6185), + [anon_sym_COLON] = ACTIONS(6183), + [anon_sym_QMARK] = ACTIONS(6183), + [anon_sym_STAR_EQ] = ACTIONS(6183), + [anon_sym_SLASH_EQ] = ACTIONS(6183), + [anon_sym_PERCENT_EQ] = ACTIONS(6183), + [anon_sym_PLUS_EQ] = ACTIONS(6183), + [anon_sym_DASH_EQ] = ACTIONS(6183), + [anon_sym_LT_LT_EQ] = ACTIONS(6183), + [anon_sym_GT_GT_EQ] = ACTIONS(6183), + [anon_sym_AMP_EQ] = ACTIONS(6183), + [anon_sym_CARET_EQ] = ACTIONS(6183), + [anon_sym_PIPE_EQ] = ACTIONS(6183), + [anon_sym_and_eq] = ACTIONS(6183), + [anon_sym_or_eq] = ACTIONS(6183), + [anon_sym_xor_eq] = ACTIONS(6183), + [anon_sym_LT_EQ_GT] = ACTIONS(6183), + [anon_sym_or] = ACTIONS(6185), + [anon_sym_and] = ACTIONS(6185), + [anon_sym_bitor] = ACTIONS(6183), + [anon_sym_xor] = ACTIONS(6185), + [anon_sym_bitand] = ACTIONS(6183), + [anon_sym_not_eq] = ACTIONS(6183), + [anon_sym_DASH_DASH] = ACTIONS(6183), + [anon_sym_PLUS_PLUS] = ACTIONS(6183), + [anon_sym_DOT] = ACTIONS(6185), + [anon_sym_DOT_STAR] = ACTIONS(6183), + [anon_sym_DASH_GT] = ACTIONS(6183), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6183), + [anon_sym_decltype] = ACTIONS(6183), + }, + [2468] = { + [sym_string_literal] = STATE(4109), + [sym_template_argument_list] = STATE(5538), + [sym_raw_string_literal] = STATE(4109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4773), + [anon_sym_LPAREN2] = ACTIONS(4765), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4773), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4773), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(6433), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_EQ] = ACTIONS(6436), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(6438), + [anon_sym_SLASH_EQ] = ACTIONS(6438), + [anon_sym_PERCENT_EQ] = ACTIONS(6438), + [anon_sym_PLUS_EQ] = ACTIONS(6438), + [anon_sym_DASH_EQ] = ACTIONS(6438), + [anon_sym_LT_LT_EQ] = ACTIONS(6438), + [anon_sym_GT_GT_EQ] = ACTIONS(6438), + [anon_sym_AMP_EQ] = ACTIONS(6438), + [anon_sym_CARET_EQ] = ACTIONS(6438), + [anon_sym_PIPE_EQ] = ACTIONS(6438), + [anon_sym_and_eq] = ACTIONS(6438), + [anon_sym_or_eq] = ACTIONS(6438), + [anon_sym_xor_eq] = ACTIONS(6438), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4765), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4765), + [anon_sym_not_eq] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(6440), + [anon_sym_u_DQUOTE] = ACTIONS(6440), + [anon_sym_U_DQUOTE] = ACTIONS(6440), + [anon_sym_u8_DQUOTE] = ACTIONS(6440), + [anon_sym_DQUOTE] = ACTIONS(6440), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6442), + [anon_sym_LR_DQUOTE] = ACTIONS(6442), + [anon_sym_uR_DQUOTE] = ACTIONS(6442), + [anon_sym_UR_DQUOTE] = ACTIONS(6442), + [anon_sym_u8R_DQUOTE] = ACTIONS(6442), + [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(4765), + }, + [2469] = { + [sym_string_literal] = STATE(2203), + [sym_raw_string_literal] = STATE(2203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_RPAREN] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4765), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4773), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4773), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(4773), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_EQ] = ACTIONS(4773), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4765), + [anon_sym_SLASH_EQ] = ACTIONS(4765), + [anon_sym_PERCENT_EQ] = ACTIONS(4765), + [anon_sym_PLUS_EQ] = ACTIONS(4765), + [anon_sym_DASH_EQ] = ACTIONS(4765), + [anon_sym_LT_LT_EQ] = ACTIONS(4765), + [anon_sym_GT_GT_EQ] = ACTIONS(4765), + [anon_sym_AMP_EQ] = ACTIONS(4765), + [anon_sym_CARET_EQ] = ACTIONS(4765), + [anon_sym_PIPE_EQ] = ACTIONS(4765), + [anon_sym_and_eq] = ACTIONS(4773), + [anon_sym_or_eq] = ACTIONS(4773), + [anon_sym_xor_eq] = ACTIONS(4773), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4773), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4773), + [anon_sym_not_eq] = ACTIONS(4773), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4773), + [anon_sym_L_DQUOTE] = ACTIONS(5413), + [anon_sym_u_DQUOTE] = ACTIONS(5413), + [anon_sym_U_DQUOTE] = ACTIONS(5413), + [anon_sym_u8_DQUOTE] = ACTIONS(5413), + [anon_sym_DQUOTE] = ACTIONS(5413), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5415), + [anon_sym_LR_DQUOTE] = ACTIONS(5415), + [anon_sym_uR_DQUOTE] = ACTIONS(5415), + [anon_sym_UR_DQUOTE] = ACTIONS(5415), + [anon_sym_u8R_DQUOTE] = ACTIONS(5415), + [anon_sym_DASH_GT_STAR] = ACTIONS(4765), + [sym_literal_suffix] = ACTIONS(6444), + }, + [2470] = { + [sym_identifier] = ACTIONS(5668), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5666), + [anon_sym_COMMA] = ACTIONS(5666), + [aux_sym_preproc_if_token2] = ACTIONS(5666), + [aux_sym_preproc_else_token1] = ACTIONS(5666), + [aux_sym_preproc_elif_token1] = ACTIONS(5666), + [anon_sym_LPAREN2] = ACTIONS(5666), + [anon_sym_DASH] = ACTIONS(5668), + [anon_sym_PLUS] = ACTIONS(5668), + [anon_sym_STAR] = ACTIONS(5668), + [anon_sym_SLASH] = ACTIONS(5668), + [anon_sym_PERCENT] = ACTIONS(5668), + [anon_sym_PIPE_PIPE] = ACTIONS(5666), + [anon_sym_AMP_AMP] = ACTIONS(5666), + [anon_sym_PIPE] = ACTIONS(5668), + [anon_sym_CARET] = ACTIONS(5668), + [anon_sym_AMP] = ACTIONS(5668), + [anon_sym_EQ_EQ] = ACTIONS(5666), + [anon_sym_BANG_EQ] = ACTIONS(5666), + [anon_sym_GT] = ACTIONS(5668), + [anon_sym_GT_EQ] = ACTIONS(5666), + [anon_sym_LT_EQ] = ACTIONS(5668), + [anon_sym_LT] = ACTIONS(5668), + [anon_sym_LT_LT] = ACTIONS(5668), + [anon_sym_GT_GT] = ACTIONS(5668), + [anon_sym_LBRACK] = ACTIONS(5666), + [anon_sym_EQ] = ACTIONS(5668), + [anon_sym_QMARK] = ACTIONS(5666), + [anon_sym_STAR_EQ] = ACTIONS(5666), + [anon_sym_SLASH_EQ] = ACTIONS(5666), + [anon_sym_PERCENT_EQ] = ACTIONS(5666), + [anon_sym_PLUS_EQ] = ACTIONS(5666), + [anon_sym_DASH_EQ] = ACTIONS(5666), + [anon_sym_LT_LT_EQ] = ACTIONS(5666), + [anon_sym_GT_GT_EQ] = ACTIONS(5666), + [anon_sym_AMP_EQ] = ACTIONS(5666), + [anon_sym_CARET_EQ] = ACTIONS(5666), + [anon_sym_PIPE_EQ] = ACTIONS(5666), + [anon_sym_and_eq] = ACTIONS(5668), + [anon_sym_or_eq] = ACTIONS(5668), + [anon_sym_xor_eq] = ACTIONS(5668), + [anon_sym_LT_EQ_GT] = ACTIONS(5666), + [anon_sym_or] = ACTIONS(5668), + [anon_sym_and] = ACTIONS(5668), + [anon_sym_bitor] = ACTIONS(5668), + [anon_sym_xor] = ACTIONS(5668), + [anon_sym_bitand] = ACTIONS(5668), + [anon_sym_not_eq] = ACTIONS(5668), + [anon_sym_DASH_DASH] = ACTIONS(5666), + [anon_sym_PLUS_PLUS] = ACTIONS(5666), + [anon_sym_DOT] = ACTIONS(5668), + [anon_sym_DOT_STAR] = ACTIONS(5666), + [anon_sym_DASH_GT] = ACTIONS(5666), + [anon_sym_L_DQUOTE] = ACTIONS(5666), + [anon_sym_u_DQUOTE] = ACTIONS(5666), + [anon_sym_U_DQUOTE] = ACTIONS(5666), + [anon_sym_u8_DQUOTE] = ACTIONS(5666), + [anon_sym_DQUOTE] = ACTIONS(5666), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5666), + [anon_sym_LR_DQUOTE] = ACTIONS(5666), + [anon_sym_uR_DQUOTE] = ACTIONS(5666), + [anon_sym_UR_DQUOTE] = ACTIONS(5666), + [anon_sym_u8R_DQUOTE] = ACTIONS(5666), + [sym_literal_suffix] = ACTIONS(5668), + }, + [2471] = { + [sym_template_argument_list] = STATE(2048), + [sym_identifier] = ACTIONS(5938), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4789), + [anon_sym_COMMA] = ACTIONS(4789), + [aux_sym_preproc_if_token2] = ACTIONS(4789), + [aux_sym_preproc_else_token1] = ACTIONS(4789), + [aux_sym_preproc_elif_token1] = ACTIONS(5938), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4789), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4789), + [anon_sym_LPAREN2] = ACTIONS(4789), + [anon_sym_DASH] = ACTIONS(5938), + [anon_sym_PLUS] = ACTIONS(5938), + [anon_sym_STAR] = ACTIONS(5938), + [anon_sym_SLASH] = ACTIONS(5938), + [anon_sym_PERCENT] = ACTIONS(5938), + [anon_sym_PIPE_PIPE] = ACTIONS(4789), + [anon_sym_AMP_AMP] = ACTIONS(4789), + [anon_sym_PIPE] = ACTIONS(5938), + [anon_sym_CARET] = ACTIONS(5938), + [anon_sym_AMP] = ACTIONS(5938), + [anon_sym_EQ_EQ] = ACTIONS(4789), + [anon_sym_BANG_EQ] = ACTIONS(4789), + [anon_sym_GT] = ACTIONS(5938), + [anon_sym_GT_EQ] = ACTIONS(4789), + [anon_sym_LT_EQ] = ACTIONS(5938), + [anon_sym_LT] = ACTIONS(6379), + [anon_sym_LT_LT] = ACTIONS(5938), + [anon_sym_GT_GT] = ACTIONS(5938), + [anon_sym___attribute__] = ACTIONS(5938), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_LBRACK] = ACTIONS(4789), + [anon_sym_EQ] = ACTIONS(5938), + [anon_sym_COLON] = ACTIONS(5938), + [anon_sym_QMARK] = ACTIONS(4789), + [anon_sym_STAR_EQ] = ACTIONS(4789), + [anon_sym_SLASH_EQ] = ACTIONS(4789), + [anon_sym_PERCENT_EQ] = ACTIONS(4789), + [anon_sym_PLUS_EQ] = ACTIONS(4789), + [anon_sym_DASH_EQ] = ACTIONS(4789), + [anon_sym_LT_LT_EQ] = ACTIONS(4789), + [anon_sym_GT_GT_EQ] = ACTIONS(4789), + [anon_sym_AMP_EQ] = ACTIONS(4789), + [anon_sym_CARET_EQ] = ACTIONS(4789), + [anon_sym_PIPE_EQ] = ACTIONS(4789), + [anon_sym_and_eq] = ACTIONS(5938), + [anon_sym_or_eq] = ACTIONS(5938), + [anon_sym_xor_eq] = ACTIONS(5938), + [anon_sym_LT_EQ_GT] = ACTIONS(4789), + [anon_sym_or] = ACTIONS(5938), + [anon_sym_and] = ACTIONS(5938), + [anon_sym_bitor] = ACTIONS(5938), + [anon_sym_xor] = ACTIONS(5938), + [anon_sym_bitand] = ACTIONS(5938), + [anon_sym_not_eq] = ACTIONS(5938), + [anon_sym_DASH_DASH] = ACTIONS(4789), + [anon_sym_PLUS_PLUS] = ACTIONS(4789), + [anon_sym_DOT] = ACTIONS(5938), + [anon_sym_DOT_STAR] = ACTIONS(4789), + [anon_sym_DASH_GT] = ACTIONS(4789), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5938), + [anon_sym_decltype] = ACTIONS(5938), + [anon_sym_final] = ACTIONS(5938), + [anon_sym_override] = ACTIONS(5938), + }, + [2472] = { + [sym_template_argument_list] = STATE(1833), + [sym_identifier] = ACTIONS(5938), + [anon_sym_LPAREN2] = ACTIONS(4789), + [anon_sym_TILDE] = ACTIONS(4789), + [anon_sym_STAR] = ACTIONS(4789), + [anon_sym_PIPE_PIPE] = ACTIONS(4789), + [anon_sym_AMP_AMP] = ACTIONS(4789), + [anon_sym_AMP] = ACTIONS(5938), + [anon_sym_LT] = ACTIONS(6427), + [anon_sym___extension__] = ACTIONS(5938), + [anon_sym_extern] = ACTIONS(5938), + [anon_sym___attribute__] = ACTIONS(5938), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4789), + [anon_sym___declspec] = ACTIONS(5938), + [anon_sym___based] = ACTIONS(5938), + [anon_sym___cdecl] = ACTIONS(5938), + [anon_sym___clrcall] = ACTIONS(5938), + [anon_sym___stdcall] = ACTIONS(5938), + [anon_sym___fastcall] = ACTIONS(5938), + [anon_sym___thiscall] = ACTIONS(5938), + [anon_sym___vectorcall] = ACTIONS(5938), + [anon_sym_signed] = ACTIONS(5938), + [anon_sym_unsigned] = ACTIONS(5938), + [anon_sym_long] = ACTIONS(5938), + [anon_sym_short] = ACTIONS(5938), + [anon_sym_LBRACK] = ACTIONS(5938), + [anon_sym_static] = ACTIONS(5938), + [anon_sym_register] = ACTIONS(5938), + [anon_sym_inline] = ACTIONS(5938), + [anon_sym___inline] = ACTIONS(5938), + [anon_sym___inline__] = ACTIONS(5938), + [anon_sym___forceinline] = ACTIONS(5938), + [anon_sym_thread_local] = ACTIONS(5938), + [anon_sym___thread] = ACTIONS(5938), + [anon_sym_const] = ACTIONS(5938), + [anon_sym_constexpr] = ACTIONS(5938), + [anon_sym_volatile] = ACTIONS(5938), + [anon_sym_restrict] = ACTIONS(5938), + [anon_sym___restrict__] = ACTIONS(5938), + [anon_sym__Atomic] = ACTIONS(5938), + [anon_sym__Noreturn] = ACTIONS(5938), + [anon_sym_noreturn] = ACTIONS(5938), + [anon_sym_mutable] = ACTIONS(5938), + [anon_sym_constinit] = ACTIONS(5938), + [anon_sym_consteval] = ACTIONS(5938), + [sym_primitive_type] = ACTIONS(5938), + [anon_sym_enum] = ACTIONS(5938), + [anon_sym_class] = ACTIONS(5938), + [anon_sym_struct] = ACTIONS(5938), + [anon_sym_union] = ACTIONS(5938), + [anon_sym_or] = ACTIONS(5938), + [anon_sym_and] = ACTIONS(5938), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5938), + [anon_sym_decltype] = ACTIONS(5938), + [anon_sym_virtual] = ACTIONS(5938), + [anon_sym_alignas] = ACTIONS(5938), + [anon_sym_explicit] = ACTIONS(5938), + [anon_sym_typename] = ACTIONS(5938), + [anon_sym_template] = ACTIONS(5938), + [anon_sym_operator] = ACTIONS(5938), + [anon_sym_friend] = ACTIONS(5938), + [anon_sym_using] = ACTIONS(5938), + [anon_sym_concept] = ACTIONS(5938), + }, + [2473] = { + [sym_template_argument_list] = STATE(2048), + [sym_identifier] = ACTIONS(5374), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5381), + [anon_sym_COMMA] = ACTIONS(5381), + [aux_sym_preproc_if_token2] = ACTIONS(5381), + [aux_sym_preproc_else_token1] = ACTIONS(5381), + [aux_sym_preproc_elif_token1] = ACTIONS(5374), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5381), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5381), + [anon_sym_LPAREN2] = ACTIONS(5381), + [anon_sym_DASH] = ACTIONS(5374), + [anon_sym_PLUS] = ACTIONS(5374), + [anon_sym_STAR] = ACTIONS(5374), + [anon_sym_SLASH] = ACTIONS(5374), + [anon_sym_PERCENT] = ACTIONS(5374), + [anon_sym_PIPE_PIPE] = ACTIONS(5381), + [anon_sym_AMP_AMP] = ACTIONS(5381), + [anon_sym_PIPE] = ACTIONS(5374), + [anon_sym_CARET] = ACTIONS(5374), + [anon_sym_AMP] = ACTIONS(5374), + [anon_sym_EQ_EQ] = ACTIONS(5381), + [anon_sym_BANG_EQ] = ACTIONS(5381), + [anon_sym_GT] = ACTIONS(5374), + [anon_sym_GT_EQ] = ACTIONS(5381), + [anon_sym_LT_EQ] = ACTIONS(5374), + [anon_sym_LT] = ACTIONS(6446), + [anon_sym_LT_LT] = ACTIONS(5374), + [anon_sym_GT_GT] = ACTIONS(5374), + [anon_sym___attribute__] = ACTIONS(5374), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(5381), + [anon_sym_LBRACK] = ACTIONS(5381), + [anon_sym_EQ] = ACTIONS(5374), + [anon_sym_COLON] = ACTIONS(5374), + [anon_sym_QMARK] = ACTIONS(5381), + [anon_sym_STAR_EQ] = ACTIONS(5381), + [anon_sym_SLASH_EQ] = ACTIONS(5381), + [anon_sym_PERCENT_EQ] = ACTIONS(5381), + [anon_sym_PLUS_EQ] = ACTIONS(5381), + [anon_sym_DASH_EQ] = ACTIONS(5381), + [anon_sym_LT_LT_EQ] = ACTIONS(5381), + [anon_sym_GT_GT_EQ] = ACTIONS(5381), + [anon_sym_AMP_EQ] = ACTIONS(5381), + [anon_sym_CARET_EQ] = ACTIONS(5381), + [anon_sym_PIPE_EQ] = ACTIONS(5381), + [anon_sym_and_eq] = ACTIONS(5374), + [anon_sym_or_eq] = ACTIONS(5374), + [anon_sym_xor_eq] = ACTIONS(5374), + [anon_sym_LT_EQ_GT] = ACTIONS(5381), + [anon_sym_or] = ACTIONS(5374), + [anon_sym_and] = ACTIONS(5374), + [anon_sym_bitor] = ACTIONS(5374), + [anon_sym_xor] = ACTIONS(5374), + [anon_sym_bitand] = ACTIONS(5374), + [anon_sym_not_eq] = ACTIONS(5374), + [anon_sym_DASH_DASH] = ACTIONS(5381), + [anon_sym_PLUS_PLUS] = ACTIONS(5381), + [anon_sym_DOT] = ACTIONS(5374), + [anon_sym_DOT_STAR] = ACTIONS(5381), + [anon_sym_DASH_GT] = ACTIONS(5381), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5374), + [anon_sym_decltype] = ACTIONS(5374), + [anon_sym_final] = ACTIONS(5374), + [anon_sym_override] = ACTIONS(5374), + }, + [2474] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1891), + [ts_builtin_sym_end] = ACTIONS(6054), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6054), + [anon_sym_COMMA] = ACTIONS(6054), + [anon_sym_RPAREN] = ACTIONS(6054), + [anon_sym_LPAREN2] = ACTIONS(6054), + [anon_sym_DASH] = ACTIONS(6056), + [anon_sym_PLUS] = ACTIONS(6056), + [anon_sym_STAR] = ACTIONS(6056), + [anon_sym_SLASH] = ACTIONS(6056), + [anon_sym_PERCENT] = ACTIONS(6056), + [anon_sym_PIPE_PIPE] = ACTIONS(6054), + [anon_sym_AMP_AMP] = ACTIONS(6054), + [anon_sym_PIPE] = ACTIONS(6056), + [anon_sym_CARET] = ACTIONS(6056), + [anon_sym_AMP] = ACTIONS(6056), + [anon_sym_EQ_EQ] = ACTIONS(6054), + [anon_sym_BANG_EQ] = ACTIONS(6054), + [anon_sym_GT] = ACTIONS(6056), + [anon_sym_GT_EQ] = ACTIONS(6054), + [anon_sym_LT_EQ] = ACTIONS(6056), + [anon_sym_LT] = ACTIONS(6056), + [anon_sym_LT_LT] = ACTIONS(6056), + [anon_sym_GT_GT] = ACTIONS(6056), + [anon_sym_SEMI] = ACTIONS(6054), + [anon_sym___attribute__] = ACTIONS(6054), + [anon_sym_LBRACE] = ACTIONS(6054), + [anon_sym_RBRACE] = ACTIONS(6054), + [anon_sym_signed] = ACTIONS(6417), + [anon_sym_unsigned] = ACTIONS(6417), + [anon_sym_long] = ACTIONS(6417), + [anon_sym_short] = ACTIONS(6417), + [anon_sym_LBRACK] = ACTIONS(6054), + [anon_sym_RBRACK] = ACTIONS(6054), + [anon_sym_EQ] = ACTIONS(6056), + [anon_sym_COLON] = ACTIONS(6054), + [anon_sym_QMARK] = ACTIONS(6054), + [anon_sym_STAR_EQ] = ACTIONS(6054), + [anon_sym_SLASH_EQ] = ACTIONS(6054), + [anon_sym_PERCENT_EQ] = ACTIONS(6054), + [anon_sym_PLUS_EQ] = ACTIONS(6054), + [anon_sym_DASH_EQ] = ACTIONS(6054), + [anon_sym_LT_LT_EQ] = ACTIONS(6054), + [anon_sym_GT_GT_EQ] = ACTIONS(6054), + [anon_sym_AMP_EQ] = ACTIONS(6054), + [anon_sym_CARET_EQ] = ACTIONS(6054), + [anon_sym_PIPE_EQ] = ACTIONS(6054), + [anon_sym_and_eq] = ACTIONS(6054), + [anon_sym_or_eq] = ACTIONS(6054), + [anon_sym_xor_eq] = ACTIONS(6054), + [anon_sym_LT_EQ_GT] = ACTIONS(6054), + [anon_sym_or] = ACTIONS(6056), + [anon_sym_and] = ACTIONS(6056), + [anon_sym_bitor] = ACTIONS(6054), + [anon_sym_xor] = ACTIONS(6056), + [anon_sym_bitand] = ACTIONS(6054), + [anon_sym_not_eq] = ACTIONS(6054), + [anon_sym_DASH_DASH] = ACTIONS(6054), + [anon_sym_PLUS_PLUS] = ACTIONS(6054), + [anon_sym_DOT] = ACTIONS(6056), + [anon_sym_DOT_STAR] = ACTIONS(6054), + [anon_sym_DASH_GT] = ACTIONS(6054), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6054), + [anon_sym_decltype] = ACTIONS(6054), + }, + [2475] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1891), + [ts_builtin_sym_end] = ACTIONS(6064), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6064), + [anon_sym_COMMA] = ACTIONS(6064), + [anon_sym_RPAREN] = ACTIONS(6064), + [anon_sym_LPAREN2] = ACTIONS(6064), + [anon_sym_DASH] = ACTIONS(6066), + [anon_sym_PLUS] = ACTIONS(6066), + [anon_sym_STAR] = ACTIONS(6066), + [anon_sym_SLASH] = ACTIONS(6066), + [anon_sym_PERCENT] = ACTIONS(6066), + [anon_sym_PIPE_PIPE] = ACTIONS(6064), + [anon_sym_AMP_AMP] = ACTIONS(6064), + [anon_sym_PIPE] = ACTIONS(6066), + [anon_sym_CARET] = ACTIONS(6066), + [anon_sym_AMP] = ACTIONS(6066), + [anon_sym_EQ_EQ] = ACTIONS(6064), + [anon_sym_BANG_EQ] = ACTIONS(6064), + [anon_sym_GT] = ACTIONS(6066), + [anon_sym_GT_EQ] = ACTIONS(6064), + [anon_sym_LT_EQ] = ACTIONS(6066), + [anon_sym_LT] = ACTIONS(6066), + [anon_sym_LT_LT] = ACTIONS(6066), + [anon_sym_GT_GT] = ACTIONS(6066), + [anon_sym_SEMI] = ACTIONS(6064), + [anon_sym___attribute__] = ACTIONS(6064), + [anon_sym_LBRACE] = ACTIONS(6064), + [anon_sym_RBRACE] = ACTIONS(6064), + [anon_sym_signed] = ACTIONS(6417), + [anon_sym_unsigned] = ACTIONS(6417), + [anon_sym_long] = ACTIONS(6417), + [anon_sym_short] = ACTIONS(6417), + [anon_sym_LBRACK] = ACTIONS(6064), + [anon_sym_RBRACK] = ACTIONS(6064), + [anon_sym_EQ] = ACTIONS(6066), + [anon_sym_COLON] = ACTIONS(6064), + [anon_sym_QMARK] = ACTIONS(6064), + [anon_sym_STAR_EQ] = ACTIONS(6064), + [anon_sym_SLASH_EQ] = ACTIONS(6064), + [anon_sym_PERCENT_EQ] = ACTIONS(6064), + [anon_sym_PLUS_EQ] = ACTIONS(6064), + [anon_sym_DASH_EQ] = ACTIONS(6064), + [anon_sym_LT_LT_EQ] = ACTIONS(6064), + [anon_sym_GT_GT_EQ] = ACTIONS(6064), + [anon_sym_AMP_EQ] = ACTIONS(6064), + [anon_sym_CARET_EQ] = ACTIONS(6064), + [anon_sym_PIPE_EQ] = ACTIONS(6064), + [anon_sym_and_eq] = ACTIONS(6064), + [anon_sym_or_eq] = ACTIONS(6064), + [anon_sym_xor_eq] = ACTIONS(6064), + [anon_sym_LT_EQ_GT] = ACTIONS(6064), + [anon_sym_or] = ACTIONS(6066), + [anon_sym_and] = ACTIONS(6066), + [anon_sym_bitor] = ACTIONS(6064), + [anon_sym_xor] = ACTIONS(6066), + [anon_sym_bitand] = ACTIONS(6064), + [anon_sym_not_eq] = ACTIONS(6064), + [anon_sym_DASH_DASH] = ACTIONS(6064), + [anon_sym_PLUS_PLUS] = ACTIONS(6064), + [anon_sym_DOT] = ACTIONS(6066), + [anon_sym_DOT_STAR] = ACTIONS(6064), + [anon_sym_DASH_GT] = ACTIONS(6064), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6064), + [anon_sym_decltype] = ACTIONS(6064), + }, + [2476] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(5653), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5651), + [anon_sym_COMMA] = ACTIONS(5651), + [aux_sym_preproc_if_token2] = ACTIONS(5651), + [aux_sym_preproc_else_token1] = ACTIONS(5651), + [aux_sym_preproc_elif_token1] = ACTIONS(5653), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5651), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5651), + [anon_sym_LPAREN2] = ACTIONS(5651), + [anon_sym_DASH] = ACTIONS(5653), + [anon_sym_PLUS] = ACTIONS(5653), + [anon_sym_STAR] = ACTIONS(5653), + [anon_sym_SLASH] = ACTIONS(5653), + [anon_sym_PERCENT] = ACTIONS(5653), + [anon_sym_PIPE_PIPE] = ACTIONS(5651), + [anon_sym_AMP_AMP] = ACTIONS(5651), + [anon_sym_PIPE] = ACTIONS(5653), + [anon_sym_CARET] = ACTIONS(5653), + [anon_sym_AMP] = ACTIONS(5653), + [anon_sym_EQ_EQ] = ACTIONS(5651), + [anon_sym_BANG_EQ] = ACTIONS(5651), + [anon_sym_GT] = ACTIONS(5653), + [anon_sym_GT_EQ] = ACTIONS(5651), + [anon_sym_LT_EQ] = ACTIONS(5653), + [anon_sym_LT] = ACTIONS(5653), + [anon_sym_LT_LT] = ACTIONS(5653), + [anon_sym_GT_GT] = ACTIONS(5653), + [anon_sym___attribute__] = ACTIONS(5653), + [anon_sym_LBRACE] = ACTIONS(5651), + [anon_sym_signed] = ACTIONS(6449), + [anon_sym_unsigned] = ACTIONS(6449), + [anon_sym_long] = ACTIONS(6449), + [anon_sym_short] = ACTIONS(6449), + [anon_sym_LBRACK] = ACTIONS(5651), + [anon_sym_EQ] = ACTIONS(5653), + [anon_sym_QMARK] = ACTIONS(5651), + [anon_sym_STAR_EQ] = ACTIONS(5651), + [anon_sym_SLASH_EQ] = ACTIONS(5651), + [anon_sym_PERCENT_EQ] = ACTIONS(5651), + [anon_sym_PLUS_EQ] = ACTIONS(5651), + [anon_sym_DASH_EQ] = ACTIONS(5651), + [anon_sym_LT_LT_EQ] = ACTIONS(5651), + [anon_sym_GT_GT_EQ] = ACTIONS(5651), + [anon_sym_AMP_EQ] = ACTIONS(5651), + [anon_sym_CARET_EQ] = ACTIONS(5651), + [anon_sym_PIPE_EQ] = ACTIONS(5651), + [anon_sym_and_eq] = ACTIONS(5653), + [anon_sym_or_eq] = ACTIONS(5653), + [anon_sym_xor_eq] = ACTIONS(5653), + [anon_sym_LT_EQ_GT] = ACTIONS(5651), + [anon_sym_or] = ACTIONS(5653), + [anon_sym_and] = ACTIONS(5653), + [anon_sym_bitor] = ACTIONS(5653), + [anon_sym_xor] = ACTIONS(5653), + [anon_sym_bitand] = ACTIONS(5653), + [anon_sym_not_eq] = ACTIONS(5653), + [anon_sym_DASH_DASH] = ACTIONS(5651), + [anon_sym_PLUS_PLUS] = ACTIONS(5651), + [anon_sym_DOT] = ACTIONS(5653), + [anon_sym_DOT_STAR] = ACTIONS(5651), + [anon_sym_DASH_GT] = ACTIONS(5651), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5653), + [anon_sym_decltype] = ACTIONS(5653), + }, + [2477] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1891), + [ts_builtin_sym_end] = ACTIONS(6145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6145), + [anon_sym_COMMA] = ACTIONS(6145), + [anon_sym_RPAREN] = ACTIONS(6145), + [anon_sym_LPAREN2] = ACTIONS(6145), + [anon_sym_DASH] = ACTIONS(6147), + [anon_sym_PLUS] = ACTIONS(6147), + [anon_sym_STAR] = ACTIONS(6147), + [anon_sym_SLASH] = ACTIONS(6147), + [anon_sym_PERCENT] = ACTIONS(6147), + [anon_sym_PIPE_PIPE] = ACTIONS(6145), + [anon_sym_AMP_AMP] = ACTIONS(6145), + [anon_sym_PIPE] = ACTIONS(6147), + [anon_sym_CARET] = ACTIONS(6147), + [anon_sym_AMP] = ACTIONS(6147), + [anon_sym_EQ_EQ] = ACTIONS(6145), + [anon_sym_BANG_EQ] = ACTIONS(6145), + [anon_sym_GT] = ACTIONS(6147), + [anon_sym_GT_EQ] = ACTIONS(6145), + [anon_sym_LT_EQ] = ACTIONS(6147), + [anon_sym_LT] = ACTIONS(6147), + [anon_sym_LT_LT] = ACTIONS(6147), + [anon_sym_GT_GT] = ACTIONS(6147), + [anon_sym_SEMI] = ACTIONS(6145), + [anon_sym___attribute__] = ACTIONS(6145), + [anon_sym_LBRACE] = ACTIONS(6145), + [anon_sym_RBRACE] = ACTIONS(6145), + [anon_sym_signed] = ACTIONS(6417), + [anon_sym_unsigned] = ACTIONS(6417), + [anon_sym_long] = ACTIONS(6417), + [anon_sym_short] = ACTIONS(6417), + [anon_sym_LBRACK] = ACTIONS(6145), + [anon_sym_RBRACK] = ACTIONS(6145), + [anon_sym_EQ] = ACTIONS(6147), + [anon_sym_COLON] = ACTIONS(6145), + [anon_sym_QMARK] = ACTIONS(6145), + [anon_sym_STAR_EQ] = ACTIONS(6145), + [anon_sym_SLASH_EQ] = ACTIONS(6145), + [anon_sym_PERCENT_EQ] = ACTIONS(6145), + [anon_sym_PLUS_EQ] = ACTIONS(6145), + [anon_sym_DASH_EQ] = ACTIONS(6145), + [anon_sym_LT_LT_EQ] = ACTIONS(6145), + [anon_sym_GT_GT_EQ] = ACTIONS(6145), + [anon_sym_AMP_EQ] = ACTIONS(6145), + [anon_sym_CARET_EQ] = ACTIONS(6145), + [anon_sym_PIPE_EQ] = ACTIONS(6145), + [anon_sym_and_eq] = ACTIONS(6145), + [anon_sym_or_eq] = ACTIONS(6145), + [anon_sym_xor_eq] = ACTIONS(6145), + [anon_sym_LT_EQ_GT] = ACTIONS(6145), + [anon_sym_or] = ACTIONS(6147), + [anon_sym_and] = ACTIONS(6147), + [anon_sym_bitor] = ACTIONS(6145), + [anon_sym_xor] = ACTIONS(6147), + [anon_sym_bitand] = ACTIONS(6145), + [anon_sym_not_eq] = ACTIONS(6145), + [anon_sym_DASH_DASH] = ACTIONS(6145), + [anon_sym_PLUS_PLUS] = ACTIONS(6145), + [anon_sym_DOT] = ACTIONS(6147), + [anon_sym_DOT_STAR] = ACTIONS(6145), + [anon_sym_DASH_GT] = ACTIONS(6145), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6145), + [anon_sym_decltype] = ACTIONS(6145), + }, + [2478] = { + [sym_new_declarator] = STATE(2501), + [ts_builtin_sym_end] = ACTIONS(6452), + [sym_identifier] = ACTIONS(6454), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6452), + [anon_sym_COMMA] = ACTIONS(6452), + [anon_sym_RPAREN] = ACTIONS(6452), + [aux_sym_preproc_if_token2] = ACTIONS(6452), + [aux_sym_preproc_else_token1] = ACTIONS(6452), + [aux_sym_preproc_elif_token1] = ACTIONS(6454), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6452), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6452), + [anon_sym_LPAREN2] = ACTIONS(6452), + [anon_sym_DASH] = ACTIONS(6454), + [anon_sym_PLUS] = ACTIONS(6454), + [anon_sym_STAR] = ACTIONS(6454), + [anon_sym_SLASH] = ACTIONS(6454), + [anon_sym_PERCENT] = ACTIONS(6454), + [anon_sym_PIPE_PIPE] = ACTIONS(6452), + [anon_sym_AMP_AMP] = ACTIONS(6452), + [anon_sym_PIPE] = ACTIONS(6454), + [anon_sym_CARET] = ACTIONS(6454), + [anon_sym_AMP] = ACTIONS(6454), + [anon_sym_EQ_EQ] = ACTIONS(6452), + [anon_sym_BANG_EQ] = ACTIONS(6452), + [anon_sym_GT] = ACTIONS(6454), + [anon_sym_GT_EQ] = ACTIONS(6452), + [anon_sym_LT_EQ] = ACTIONS(6454), + [anon_sym_LT] = ACTIONS(6454), + [anon_sym_LT_LT] = ACTIONS(6454), + [anon_sym_GT_GT] = ACTIONS(6454), + [anon_sym_SEMI] = ACTIONS(6452), + [anon_sym___attribute__] = ACTIONS(6454), + [anon_sym_LBRACE] = ACTIONS(6452), + [anon_sym_RBRACE] = ACTIONS(6452), + [anon_sym_LBRACK] = ACTIONS(5763), + [anon_sym_RBRACK] = ACTIONS(6452), + [anon_sym_EQ] = ACTIONS(6454), + [anon_sym_COLON] = ACTIONS(6452), + [anon_sym_QMARK] = ACTIONS(6452), + [anon_sym_STAR_EQ] = ACTIONS(6452), + [anon_sym_SLASH_EQ] = ACTIONS(6452), + [anon_sym_PERCENT_EQ] = ACTIONS(6452), + [anon_sym_PLUS_EQ] = ACTIONS(6452), + [anon_sym_DASH_EQ] = ACTIONS(6452), + [anon_sym_LT_LT_EQ] = ACTIONS(6452), + [anon_sym_GT_GT_EQ] = ACTIONS(6452), + [anon_sym_AMP_EQ] = ACTIONS(6452), + [anon_sym_CARET_EQ] = ACTIONS(6452), + [anon_sym_PIPE_EQ] = ACTIONS(6452), + [anon_sym_and_eq] = ACTIONS(6454), + [anon_sym_or_eq] = ACTIONS(6454), + [anon_sym_xor_eq] = ACTIONS(6454), + [anon_sym_LT_EQ_GT] = ACTIONS(6452), + [anon_sym_or] = ACTIONS(6454), + [anon_sym_and] = ACTIONS(6454), + [anon_sym_bitor] = ACTIONS(6454), + [anon_sym_xor] = ACTIONS(6454), + [anon_sym_bitand] = ACTIONS(6454), + [anon_sym_not_eq] = ACTIONS(6454), + [anon_sym_DASH_DASH] = ACTIONS(6452), + [anon_sym_PLUS_PLUS] = ACTIONS(6452), + [anon_sym_DOT] = ACTIONS(6454), + [anon_sym_DOT_STAR] = ACTIONS(6452), + [anon_sym_DASH_GT] = ACTIONS(6452), + [sym_comment] = ACTIONS(3), + }, + [2479] = { + [sym_string_literal] = STATE(2479), + [sym_raw_string_literal] = STATE(2479), + [aux_sym_concatenated_string_repeat1] = STATE(2479), + [sym_identifier] = ACTIONS(6456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5567), + [anon_sym_LPAREN2] = ACTIONS(5562), + [anon_sym_DASH] = ACTIONS(5567), + [anon_sym_PLUS] = ACTIONS(5567), + [anon_sym_STAR] = ACTIONS(5567), + [anon_sym_SLASH] = ACTIONS(5567), + [anon_sym_PERCENT] = ACTIONS(5567), + [anon_sym_PIPE_PIPE] = ACTIONS(5562), + [anon_sym_AMP_AMP] = ACTIONS(5562), + [anon_sym_PIPE] = ACTIONS(5567), + [anon_sym_CARET] = ACTIONS(5567), + [anon_sym_AMP] = ACTIONS(5567), + [anon_sym_EQ_EQ] = ACTIONS(5562), + [anon_sym_BANG_EQ] = ACTIONS(5562), + [anon_sym_GT] = ACTIONS(5567), + [anon_sym_GT_EQ] = ACTIONS(5562), + [anon_sym_LT_EQ] = ACTIONS(5567), + [anon_sym_LT] = ACTIONS(5567), + [anon_sym_LT_LT] = ACTIONS(5567), + [anon_sym_GT_GT] = ACTIONS(5567), + [anon_sym_LBRACK] = ACTIONS(5562), + [anon_sym_EQ] = ACTIONS(5567), + [anon_sym_QMARK] = ACTIONS(5562), + [anon_sym_STAR_EQ] = ACTIONS(5562), + [anon_sym_SLASH_EQ] = ACTIONS(5562), + [anon_sym_PERCENT_EQ] = ACTIONS(5562), + [anon_sym_PLUS_EQ] = ACTIONS(5562), + [anon_sym_DASH_EQ] = ACTIONS(5562), + [anon_sym_LT_LT_EQ] = ACTIONS(5562), + [anon_sym_GT_GT_EQ] = ACTIONS(5562), + [anon_sym_AMP_EQ] = ACTIONS(5562), + [anon_sym_CARET_EQ] = ACTIONS(5562), + [anon_sym_PIPE_EQ] = ACTIONS(5562), + [anon_sym_and_eq] = ACTIONS(5567), + [anon_sym_or_eq] = ACTIONS(5567), + [anon_sym_xor_eq] = ACTIONS(5567), + [anon_sym_LT_EQ_GT] = ACTIONS(5562), + [anon_sym_or] = ACTIONS(5567), + [anon_sym_and] = ACTIONS(5567), + [anon_sym_bitor] = ACTIONS(5567), + [anon_sym_xor] = ACTIONS(5567), + [anon_sym_bitand] = ACTIONS(5567), + [anon_sym_not_eq] = ACTIONS(5567), + [anon_sym_DASH_DASH] = ACTIONS(5562), + [anon_sym_PLUS_PLUS] = ACTIONS(5562), + [anon_sym_DOT] = ACTIONS(5567), + [anon_sym_DOT_STAR] = ACTIONS(5562), + [anon_sym_DASH_GT] = ACTIONS(5562), + [anon_sym_L_DQUOTE] = ACTIONS(6459), + [anon_sym_u_DQUOTE] = ACTIONS(6459), + [anon_sym_U_DQUOTE] = ACTIONS(6459), + [anon_sym_u8_DQUOTE] = ACTIONS(6459), + [anon_sym_DQUOTE] = ACTIONS(6459), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6462), + [anon_sym_LR_DQUOTE] = ACTIONS(6462), + [anon_sym_uR_DQUOTE] = ACTIONS(6462), + [anon_sym_UR_DQUOTE] = ACTIONS(6462), + [anon_sym_u8R_DQUOTE] = ACTIONS(6462), + [sym_literal_suffix] = ACTIONS(5567), + [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(5562), + }, + [2480] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2456), + [ts_builtin_sym_end] = ACTIONS(6088), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6088), + [anon_sym_COMMA] = ACTIONS(6088), + [anon_sym_RPAREN] = ACTIONS(6088), + [anon_sym_LPAREN2] = ACTIONS(6088), + [anon_sym_DASH] = ACTIONS(6090), + [anon_sym_PLUS] = ACTIONS(6090), + [anon_sym_STAR] = ACTIONS(6090), + [anon_sym_SLASH] = ACTIONS(6090), + [anon_sym_PERCENT] = ACTIONS(6090), + [anon_sym_PIPE_PIPE] = ACTIONS(6088), + [anon_sym_AMP_AMP] = ACTIONS(6088), + [anon_sym_PIPE] = ACTIONS(6090), + [anon_sym_CARET] = ACTIONS(6090), + [anon_sym_AMP] = ACTIONS(6090), + [anon_sym_EQ_EQ] = ACTIONS(6088), + [anon_sym_BANG_EQ] = ACTIONS(6088), + [anon_sym_GT] = ACTIONS(6090), + [anon_sym_GT_EQ] = ACTIONS(6088), + [anon_sym_LT_EQ] = ACTIONS(6090), + [anon_sym_LT] = ACTIONS(6090), + [anon_sym_LT_LT] = ACTIONS(6090), + [anon_sym_GT_GT] = ACTIONS(6090), + [anon_sym_SEMI] = ACTIONS(6088), + [anon_sym___attribute__] = ACTIONS(6088), + [anon_sym_LBRACE] = ACTIONS(6088), + [anon_sym_RBRACE] = ACTIONS(6088), + [anon_sym_signed] = ACTIONS(6465), + [anon_sym_unsigned] = ACTIONS(6465), + [anon_sym_long] = ACTIONS(6465), + [anon_sym_short] = ACTIONS(6465), + [anon_sym_LBRACK] = ACTIONS(6088), + [anon_sym_RBRACK] = ACTIONS(6088), + [anon_sym_EQ] = ACTIONS(6090), + [anon_sym_COLON] = ACTIONS(6088), + [anon_sym_QMARK] = ACTIONS(6088), + [anon_sym_STAR_EQ] = ACTIONS(6088), + [anon_sym_SLASH_EQ] = ACTIONS(6088), + [anon_sym_PERCENT_EQ] = ACTIONS(6088), + [anon_sym_PLUS_EQ] = ACTIONS(6088), + [anon_sym_DASH_EQ] = ACTIONS(6088), + [anon_sym_LT_LT_EQ] = ACTIONS(6088), + [anon_sym_GT_GT_EQ] = ACTIONS(6088), + [anon_sym_AMP_EQ] = ACTIONS(6088), + [anon_sym_CARET_EQ] = ACTIONS(6088), + [anon_sym_PIPE_EQ] = ACTIONS(6088), + [anon_sym_and_eq] = ACTIONS(6088), + [anon_sym_or_eq] = ACTIONS(6088), + [anon_sym_xor_eq] = ACTIONS(6088), + [anon_sym_LT_EQ_GT] = ACTIONS(6088), + [anon_sym_or] = ACTIONS(6090), + [anon_sym_and] = ACTIONS(6090), + [anon_sym_bitor] = ACTIONS(6088), + [anon_sym_xor] = ACTIONS(6090), + [anon_sym_bitand] = ACTIONS(6088), + [anon_sym_not_eq] = ACTIONS(6088), + [anon_sym_DASH_DASH] = ACTIONS(6088), + [anon_sym_PLUS_PLUS] = ACTIONS(6088), + [anon_sym_DOT] = ACTIONS(6090), + [anon_sym_DOT_STAR] = ACTIONS(6088), + [anon_sym_DASH_GT] = ACTIONS(6088), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6088), + [anon_sym_decltype] = ACTIONS(6088), + }, + [2481] = { + [sym_string_literal] = STATE(2451), + [sym_template_argument_list] = STATE(3881), + [sym_raw_string_literal] = STATE(2451), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4773), + [anon_sym_LPAREN2] = ACTIONS(4765), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4773), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4773), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(6467), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_EQ] = ACTIONS(4773), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4765), + [anon_sym_SLASH_EQ] = ACTIONS(4765), + [anon_sym_PERCENT_EQ] = ACTIONS(4765), + [anon_sym_PLUS_EQ] = ACTIONS(4765), + [anon_sym_DASH_EQ] = ACTIONS(4765), + [anon_sym_LT_LT_EQ] = ACTIONS(4765), + [anon_sym_GT_GT_EQ] = ACTIONS(4765), + [anon_sym_AMP_EQ] = ACTIONS(4765), + [anon_sym_CARET_EQ] = ACTIONS(4765), + [anon_sym_PIPE_EQ] = ACTIONS(4765), + [anon_sym_and_eq] = ACTIONS(4765), + [anon_sym_or_eq] = ACTIONS(4765), + [anon_sym_xor_eq] = ACTIONS(4765), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4765), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4765), + [anon_sym_not_eq] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(6405), + [anon_sym_u_DQUOTE] = ACTIONS(6405), + [anon_sym_U_DQUOTE] = ACTIONS(6405), + [anon_sym_u8_DQUOTE] = ACTIONS(6405), + [anon_sym_DQUOTE] = ACTIONS(6405), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6407), + [anon_sym_LR_DQUOTE] = ACTIONS(6407), + [anon_sym_uR_DQUOTE] = ACTIONS(6407), + [anon_sym_UR_DQUOTE] = ACTIONS(6407), + [anon_sym_u8R_DQUOTE] = ACTIONS(6407), + [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(4765), + }, + [2482] = { + [sym_string_literal] = STATE(2160), + [sym_raw_string_literal] = STATE(2160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_COMMA] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4765), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4773), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4773), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(4773), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_SEMI] = ACTIONS(4765), + [anon_sym___attribute__] = ACTIONS(4773), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_EQ] = ACTIONS(4773), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(4765), + [anon_sym_SLASH_EQ] = ACTIONS(4765), + [anon_sym_PERCENT_EQ] = ACTIONS(4765), + [anon_sym_PLUS_EQ] = ACTIONS(4765), + [anon_sym_DASH_EQ] = ACTIONS(4765), + [anon_sym_LT_LT_EQ] = ACTIONS(4765), + [anon_sym_GT_GT_EQ] = ACTIONS(4765), + [anon_sym_AMP_EQ] = ACTIONS(4765), + [anon_sym_CARET_EQ] = ACTIONS(4765), + [anon_sym_PIPE_EQ] = ACTIONS(4765), + [anon_sym_and_eq] = ACTIONS(4773), + [anon_sym_or_eq] = ACTIONS(4773), + [anon_sym_xor_eq] = ACTIONS(4773), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4773), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4773), + [anon_sym_not_eq] = ACTIONS(4773), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(6012), + [anon_sym_u_DQUOTE] = ACTIONS(6012), + [anon_sym_U_DQUOTE] = ACTIONS(6012), + [anon_sym_u8_DQUOTE] = ACTIONS(6012), + [anon_sym_DQUOTE] = ACTIONS(6012), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6014), + [anon_sym_LR_DQUOTE] = ACTIONS(6014), + [anon_sym_uR_DQUOTE] = ACTIONS(6014), + [anon_sym_UR_DQUOTE] = ACTIONS(6014), + [anon_sym_u8R_DQUOTE] = ACTIONS(6014), + [sym_literal_suffix] = ACTIONS(5929), + }, + [2483] = { + [sym_identifier] = ACTIONS(5660), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5658), + [anon_sym_COMMA] = ACTIONS(5658), + [aux_sym_preproc_if_token2] = ACTIONS(5658), + [aux_sym_preproc_else_token1] = ACTIONS(5658), + [aux_sym_preproc_elif_token1] = ACTIONS(5658), + [anon_sym_LPAREN2] = ACTIONS(5658), + [anon_sym_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5660), + [anon_sym_STAR] = ACTIONS(5660), + [anon_sym_SLASH] = ACTIONS(5660), + [anon_sym_PERCENT] = ACTIONS(5660), + [anon_sym_PIPE_PIPE] = ACTIONS(5658), + [anon_sym_AMP_AMP] = ACTIONS(5658), + [anon_sym_PIPE] = ACTIONS(5660), + [anon_sym_CARET] = ACTIONS(5660), + [anon_sym_AMP] = ACTIONS(5660), + [anon_sym_EQ_EQ] = ACTIONS(5658), + [anon_sym_BANG_EQ] = ACTIONS(5658), + [anon_sym_GT] = ACTIONS(5660), + [anon_sym_GT_EQ] = ACTIONS(5658), + [anon_sym_LT_EQ] = ACTIONS(5660), + [anon_sym_LT] = ACTIONS(5660), + [anon_sym_LT_LT] = ACTIONS(5660), + [anon_sym_GT_GT] = ACTIONS(5660), + [anon_sym_LBRACK] = ACTIONS(5658), + [anon_sym_EQ] = ACTIONS(5660), + [anon_sym_QMARK] = ACTIONS(5658), + [anon_sym_STAR_EQ] = ACTIONS(5658), + [anon_sym_SLASH_EQ] = ACTIONS(5658), + [anon_sym_PERCENT_EQ] = ACTIONS(5658), + [anon_sym_PLUS_EQ] = ACTIONS(5658), + [anon_sym_DASH_EQ] = ACTIONS(5658), + [anon_sym_LT_LT_EQ] = ACTIONS(5658), + [anon_sym_GT_GT_EQ] = ACTIONS(5658), + [anon_sym_AMP_EQ] = ACTIONS(5658), + [anon_sym_CARET_EQ] = ACTIONS(5658), + [anon_sym_PIPE_EQ] = ACTIONS(5658), + [anon_sym_and_eq] = ACTIONS(5660), + [anon_sym_or_eq] = ACTIONS(5660), + [anon_sym_xor_eq] = ACTIONS(5660), + [anon_sym_LT_EQ_GT] = ACTIONS(5658), + [anon_sym_or] = ACTIONS(5660), + [anon_sym_and] = ACTIONS(5660), + [anon_sym_bitor] = ACTIONS(5660), + [anon_sym_xor] = ACTIONS(5660), + [anon_sym_bitand] = ACTIONS(5660), + [anon_sym_not_eq] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5658), + [anon_sym_DOT] = ACTIONS(5660), + [anon_sym_DOT_STAR] = ACTIONS(5658), + [anon_sym_DASH_GT] = ACTIONS(5658), + [anon_sym_L_DQUOTE] = ACTIONS(5658), + [anon_sym_u_DQUOTE] = ACTIONS(5658), + [anon_sym_U_DQUOTE] = ACTIONS(5658), + [anon_sym_u8_DQUOTE] = ACTIONS(5658), + [anon_sym_DQUOTE] = ACTIONS(5658), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5658), + [anon_sym_LR_DQUOTE] = ACTIONS(5658), + [anon_sym_uR_DQUOTE] = ACTIONS(5658), + [anon_sym_UR_DQUOTE] = ACTIONS(5658), + [anon_sym_u8R_DQUOTE] = ACTIONS(5658), + [sym_literal_suffix] = ACTIONS(5660), + }, + [2484] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2456), + [ts_builtin_sym_end] = ACTIONS(4771), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4771), + [anon_sym_COMMA] = ACTIONS(4771), + [anon_sym_RPAREN] = ACTIONS(4771), + [anon_sym_LPAREN2] = ACTIONS(4771), + [anon_sym_DASH] = ACTIONS(4763), + [anon_sym_PLUS] = ACTIONS(4763), + [anon_sym_STAR] = ACTIONS(4763), + [anon_sym_SLASH] = ACTIONS(4763), + [anon_sym_PERCENT] = ACTIONS(4763), + [anon_sym_PIPE_PIPE] = ACTIONS(4771), + [anon_sym_AMP_AMP] = ACTIONS(4771), + [anon_sym_PIPE] = ACTIONS(4763), + [anon_sym_CARET] = ACTIONS(4763), + [anon_sym_AMP] = ACTIONS(4763), + [anon_sym_EQ_EQ] = ACTIONS(4771), + [anon_sym_BANG_EQ] = ACTIONS(4771), + [anon_sym_GT] = ACTIONS(4763), + [anon_sym_GT_EQ] = ACTIONS(4771), + [anon_sym_LT_EQ] = ACTIONS(4763), + [anon_sym_LT] = ACTIONS(4763), + [anon_sym_LT_LT] = ACTIONS(4763), + [anon_sym_GT_GT] = ACTIONS(4763), + [anon_sym_SEMI] = ACTIONS(4771), + [anon_sym___attribute__] = ACTIONS(4771), + [anon_sym_LBRACE] = ACTIONS(4771), + [anon_sym_RBRACE] = ACTIONS(4771), + [anon_sym_signed] = ACTIONS(6465), + [anon_sym_unsigned] = ACTIONS(6465), + [anon_sym_long] = ACTIONS(6465), + [anon_sym_short] = ACTIONS(6465), + [anon_sym_LBRACK] = ACTIONS(4771), + [anon_sym_RBRACK] = ACTIONS(4771), + [anon_sym_EQ] = ACTIONS(4763), + [anon_sym_COLON] = ACTIONS(4771), + [anon_sym_QMARK] = ACTIONS(4771), + [anon_sym_STAR_EQ] = ACTIONS(4771), + [anon_sym_SLASH_EQ] = ACTIONS(4771), + [anon_sym_PERCENT_EQ] = ACTIONS(4771), + [anon_sym_PLUS_EQ] = ACTIONS(4771), + [anon_sym_DASH_EQ] = ACTIONS(4771), + [anon_sym_LT_LT_EQ] = ACTIONS(4771), + [anon_sym_GT_GT_EQ] = ACTIONS(4771), + [anon_sym_AMP_EQ] = ACTIONS(4771), + [anon_sym_CARET_EQ] = ACTIONS(4771), + [anon_sym_PIPE_EQ] = ACTIONS(4771), + [anon_sym_and_eq] = ACTIONS(4771), + [anon_sym_or_eq] = ACTIONS(4771), + [anon_sym_xor_eq] = ACTIONS(4771), + [anon_sym_LT_EQ_GT] = ACTIONS(4771), + [anon_sym_or] = ACTIONS(4763), + [anon_sym_and] = ACTIONS(4763), + [anon_sym_bitor] = ACTIONS(4771), + [anon_sym_xor] = ACTIONS(4763), + [anon_sym_bitand] = ACTIONS(4771), + [anon_sym_not_eq] = ACTIONS(4771), + [anon_sym_DASH_DASH] = ACTIONS(4771), + [anon_sym_PLUS_PLUS] = ACTIONS(4771), + [anon_sym_DOT] = ACTIONS(4763), + [anon_sym_DOT_STAR] = ACTIONS(4771), + [anon_sym_DASH_GT] = ACTIONS(4771), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4771), + [anon_sym_decltype] = ACTIONS(4771), + }, + [2485] = { + [ts_builtin_sym_end] = ACTIONS(5445), + [sym_identifier] = ACTIONS(5440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5445), + [anon_sym_COMMA] = ACTIONS(5445), + [anon_sym_RPAREN] = ACTIONS(5445), + [aux_sym_preproc_if_token2] = ACTIONS(5445), + [aux_sym_preproc_else_token1] = ACTIONS(5445), + [aux_sym_preproc_elif_token1] = ACTIONS(5440), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5445), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5445), + [anon_sym_LPAREN2] = ACTIONS(5445), + [anon_sym_DASH] = ACTIONS(5440), + [anon_sym_PLUS] = ACTIONS(5440), + [anon_sym_STAR] = ACTIONS(5440), + [anon_sym_SLASH] = ACTIONS(5440), + [anon_sym_PERCENT] = ACTIONS(5440), + [anon_sym_PIPE_PIPE] = ACTIONS(5445), + [anon_sym_AMP_AMP] = ACTIONS(5445), + [anon_sym_PIPE] = ACTIONS(5440), + [anon_sym_CARET] = ACTIONS(5440), + [anon_sym_AMP] = ACTIONS(5440), + [anon_sym_EQ_EQ] = ACTIONS(5445), + [anon_sym_BANG_EQ] = ACTIONS(5445), + [anon_sym_GT] = ACTIONS(5440), + [anon_sym_GT_EQ] = ACTIONS(5445), + [anon_sym_LT_EQ] = ACTIONS(5440), + [anon_sym_LT] = ACTIONS(5440), + [anon_sym_LT_LT] = ACTIONS(5440), + [anon_sym_GT_GT] = ACTIONS(5440), + [anon_sym_SEMI] = ACTIONS(5445), + [anon_sym___attribute__] = ACTIONS(5440), + [anon_sym_COLON_COLON] = ACTIONS(5438), + [anon_sym_LBRACE] = ACTIONS(5438), + [anon_sym_RBRACE] = ACTIONS(5445), + [anon_sym_LBRACK] = ACTIONS(5445), + [anon_sym_RBRACK] = ACTIONS(5445), + [anon_sym_EQ] = ACTIONS(5440), + [anon_sym_COLON] = ACTIONS(5440), + [anon_sym_QMARK] = ACTIONS(5445), + [anon_sym_STAR_EQ] = ACTIONS(5445), + [anon_sym_SLASH_EQ] = ACTIONS(5445), + [anon_sym_PERCENT_EQ] = ACTIONS(5445), + [anon_sym_PLUS_EQ] = ACTIONS(5445), + [anon_sym_DASH_EQ] = ACTIONS(5445), + [anon_sym_LT_LT_EQ] = ACTIONS(5445), + [anon_sym_GT_GT_EQ] = ACTIONS(5445), + [anon_sym_AMP_EQ] = ACTIONS(5445), + [anon_sym_CARET_EQ] = ACTIONS(5445), + [anon_sym_PIPE_EQ] = ACTIONS(5445), + [anon_sym_and_eq] = ACTIONS(5440), + [anon_sym_or_eq] = ACTIONS(5440), + [anon_sym_xor_eq] = ACTIONS(5440), + [anon_sym_LT_EQ_GT] = ACTIONS(5445), + [anon_sym_or] = ACTIONS(5440), + [anon_sym_and] = ACTIONS(5440), + [anon_sym_bitor] = ACTIONS(5440), + [anon_sym_xor] = ACTIONS(5440), + [anon_sym_bitand] = ACTIONS(5440), + [anon_sym_not_eq] = ACTIONS(5440), + [anon_sym_DASH_DASH] = ACTIONS(5445), + [anon_sym_PLUS_PLUS] = ACTIONS(5445), + [anon_sym_DOT] = ACTIONS(5440), + [anon_sym_DOT_STAR] = ACTIONS(5445), + [anon_sym_DASH_GT] = ACTIONS(5445), + [sym_comment] = ACTIONS(3), + }, + [2486] = { + [sym_string_literal] = STATE(2729), + [sym_template_argument_list] = STATE(4089), + [sym_raw_string_literal] = STATE(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), + [anon_sym_LPAREN2] = ACTIONS(4765), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4773), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4765), + [anon_sym_AMP_AMP] = ACTIONS(4765), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4773), + [anon_sym_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4765), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(5946), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_COLON_COLON] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(4789), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_EQ] = ACTIONS(6470), + [anon_sym_COLON] = ACTIONS(4773), + [anon_sym_QMARK] = ACTIONS(4765), + [anon_sym_STAR_EQ] = ACTIONS(6472), + [anon_sym_SLASH_EQ] = ACTIONS(6472), + [anon_sym_PERCENT_EQ] = ACTIONS(6472), + [anon_sym_PLUS_EQ] = ACTIONS(6472), + [anon_sym_DASH_EQ] = ACTIONS(6472), + [anon_sym_LT_LT_EQ] = ACTIONS(6472), + [anon_sym_GT_GT_EQ] = ACTIONS(6472), + [anon_sym_AMP_EQ] = ACTIONS(6472), + [anon_sym_CARET_EQ] = ACTIONS(6472), + [anon_sym_PIPE_EQ] = ACTIONS(6472), + [anon_sym_and_eq] = ACTIONS(6472), + [anon_sym_or_eq] = ACTIONS(6472), + [anon_sym_xor_eq] = ACTIONS(6472), + [anon_sym_LT_EQ_GT] = ACTIONS(4765), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4765), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4765), + [anon_sym_not_eq] = ACTIONS(4765), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_PLUS_PLUS] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DOT_STAR] = ACTIONS(4765), + [anon_sym_DASH_GT] = ACTIONS(4765), + [anon_sym_L_DQUOTE] = ACTIONS(3907), + [anon_sym_u_DQUOTE] = ACTIONS(3907), + [anon_sym_U_DQUOTE] = ACTIONS(3907), + [anon_sym_u8_DQUOTE] = ACTIONS(3907), + [anon_sym_DQUOTE] = ACTIONS(3907), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2856), 1, - anon_sym_LBRACE, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(6928), 1, - anon_sym_LBRACK, - ACTIONS(6930), 1, - sym_auto, - ACTIONS(6932), 1, - anon_sym_decltype, - STATE(3554), 1, - sym_decltype_auto, - STATE(3580), 1, - sym_new_declarator, - STATE(4121), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6318), 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(6316), 30, + ACTIONS(5400), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_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, @@ -364387,25 +321575,13 @@ 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, - [50370] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6149), 1, - anon_sym___attribute__, - STATE(3093), 1, - sym_attribute_specifier, - ACTIONS(6388), 27, + anon_sym_DASH_GT, + ACTIONS(5398), 32, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -364419,7 +321595,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, + anon_sym_COLON, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -364433,41 +321611,12 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6386), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [50440] = 3, + anon_sym_final, + anon_sym_override, + [71] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 26, - aux_sym_preproc_elif_token1, + ACTIONS(5664), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -364481,6 +321630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -364493,21 +321643,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5502), 31, + sym_literal_suffix, + ACTIONS(5662), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_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_SEMI, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -364525,74 +321671,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [50505] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5460), 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(5467), 43, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [50572] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 26, - aux_sym_preproc_elif_token1, + ACTIONS(5668), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -364606,6 +321698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -364618,21 +321711,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5498), 31, + sym_literal_suffix, + ACTIONS(5666), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_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_SEMI, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -364650,47 +321739,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [50637] = 4, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6972), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6970), 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(6968), 37, - ts_builtin_sym_end, + ACTIONS(5419), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_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___attribute__, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -364702,38 +321779,13 @@ 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, - [50704] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2949), 1, - anon_sym_LBRACE, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(6976), 1, - anon_sym_LBRACK, - ACTIONS(6978), 1, - sym_auto, - ACTIONS(6980), 1, - anon_sym_decltype, - STATE(3667), 1, - sym_new_declarator, - STATE(3689), 1, - sym_decltype_auto, - STATE(4244), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6314), 20, + ACTIONS(5417), 32, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -364743,24 +321795,47 @@ 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___attribute__, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_COLON, + 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(6312), 28, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [284] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5396), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_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, @@ -364768,27 +321843,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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_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, - anon_sym_GT2, - [50785] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(4827), 27, + ACTIONS(5394), 32, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -364802,7 +321867,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, + anon_sym_COLON, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -364816,18 +321883,25 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(4835), 29, + anon_sym_final, + anon_sym_override, + [355] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5404), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_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, @@ -364846,17 +321920,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [50852] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2983), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6982), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5998), 16, + ACTIONS(5402), 32, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -364870,148 +321935,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5996), 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___attribute__, - 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_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [50921] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6268), 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_EQ, anon_sym_COLON, - anon_sym_DOT, - ACTIONS(6270), 44, - 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___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_DOT, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [50986] = 3, + [426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6986), 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(6984), 39, - ts_builtin_sym_end, + ACTIONS(5427), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_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___attribute__, + 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, @@ -365023,27 +321983,13 @@ 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, - [51051] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6966), 1, - anon_sym_LT, - STATE(3241), 1, - sym_template_argument_list, - ACTIONS(6197), 16, + ACTIONS(5425), 32, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -365054,91 +322000,46 @@ 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___attribute__, anon_sym_EQ, anon_sym_COLON, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4853), 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___attribute__, - 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_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_DOT, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_DASH_GT_STAR, - [51122] = 3, + [497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6990), 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(6988), 39, - ts_builtin_sym_end, + ACTIONS(5423), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_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___attribute__, + 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, @@ -365150,27 +322051,13 @@ 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, - [51187] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6724), 1, - sym_auto, - ACTIONS(6726), 1, - anon_sym_decltype, - STATE(3214), 1, - sym_decltype_auto, - ACTIONS(6404), 25, + ACTIONS(5421), 32, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -365184,7 +322071,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, + anon_sym_COLON, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -365196,18 +322085,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6402), 29, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [568] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5431), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_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, @@ -365226,13 +322124,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [51258] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5460), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(5429), 32, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -365246,53 +322139,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5467), 36, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - 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_or, + anon_sym_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, + anon_sym_DOT, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_DOT_DOT_DOT_GT, - [51325] = 3, + [639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6994), 18, + ACTIONS(5649), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -365306,16 +322174,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, 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(6992), 39, - ts_builtin_sym_end, + sym_identifier, + sym_literal_suffix, + ACTIONS(5647), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -365323,12 +322198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym___attribute__, - 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, @@ -365340,22 +322210,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_DOT_STAR, anon_sym_DASH_GT, - [51390] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [710] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6268), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(5660), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -365369,22 +322242,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, - anon_sym_COLON, + 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(6270), 37, + sym_identifier, + sym_literal_suffix, + ACTIONS(5658), 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_GT_EQ, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -365397,39 +322278,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_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_DOT_DOT_GT, - [51455] = 9, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6998), 17, + ACTIONS(5649), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -365444,23 +322311,30 @@ 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, - ACTIONS(6996), 33, - ts_builtin_sym_end, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + sym_literal_suffix, + ACTIONS(5647), 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___attribute__, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -365472,110 +322346,43 @@ 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, - [51532] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7016), 1, - anon_sym_AMP_AMP, - ACTIONS(7028), 1, - anon_sym_GT_EQ, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7034), 1, anon_sym_LT_EQ_GT, - ACTIONS(7036), 1, - anon_sym_or, - ACTIONS(7038), 1, - anon_sym_and, - ACTIONS(7040), 1, - anon_sym_not_eq, - ACTIONS(7044), 1, - anon_sym_DOT, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7010), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7018), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(7020), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7022), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(7024), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7030), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7042), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7046), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7012), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7026), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7006), 6, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - sym_identifier, - ACTIONS(7008), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [51641] = 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DASH_GT_STAR, + [852] = 7, ACTIONS(3), 1, sym_comment, - STATE(2983), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7048), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5699), 16, + ACTIONS(6474), 1, + sym_identifier, + STATE(2499), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(6477), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6480), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5567), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -365590,9 +322397,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_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5697), 36, + sym_literal_suffix, + ACTIONS(5562), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -365602,8 +322416,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -365617,22 +322429,15 @@ 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, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [51710] = 3, + [931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6543), 28, + ACTIONS(6485), 28, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -365647,6 +322452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -365659,22 +322465,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6541), 29, + ACTIONS(6483), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_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_LBRACK_LBRACK, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -365691,10 +322501,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [51775] = 3, + [1002] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6551), 28, + ACTIONS(6489), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -365721,22 +322532,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6549), 29, + ACTIONS(6487), 36, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_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, @@ -365753,26 +322569,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [51840] = 10, + [1073] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7055), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7053), 17, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(6115), 1, + anon_sym_LT, + STATE(2048), 1, + sym_template_argument_list, + ACTIONS(5938), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -365783,18 +322589,20 @@ 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, - ACTIONS(7051), 31, + anon_sym_DOT, + ACTIONS(4789), 42, ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -365802,7 +322610,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -365822,231 +322632,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [51919] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7044), 1, - anon_sym_DOT, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7046), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7057), 25, - aux_sym_preproc_elif_token1, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [1150] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6365), 1, + anon_sym___attribute__, + ACTIONS(6491), 1, + anon_sym_LBRACE, + STATE(2555), 1, + sym_enumerator_list, + STATE(2671), 1, + sym_attribute_specifier, + ACTIONS(5989), 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_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, - sym_identifier, - ACTIONS(7059), 25, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5987), 49, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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, - [51996] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7016), 1, - anon_sym_AMP_AMP, - ACTIONS(7028), 1, - anon_sym_GT_EQ, - ACTIONS(7032), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(7034), 1, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(7036), 1, anon_sym_or, - ACTIONS(7038), 1, anon_sym_and, - ACTIONS(7040), 1, - anon_sym_not_eq, - ACTIONS(7044), 1, - anon_sym_DOT, - ACTIONS(7063), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7067), 1, - anon_sym_QMARK, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7010), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7018), 2, - anon_sym_PIPE, anon_sym_bitor, - ACTIONS(7020), 2, - anon_sym_CARET, anon_sym_xor, - ACTIONS(7022), 2, - anon_sym_AMP, anon_sym_bitand, - ACTIONS(7024), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7030), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7042), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7046), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7012), 3, - anon_sym_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [1229] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6365), 1, + anon_sym___attribute__, + ACTIONS(6491), 1, + anon_sym_LBRACE, + STATE(2543), 1, + sym_enumerator_list, + STATE(2730), 1, + sym_attribute_specifier, + ACTIONS(5983), 10, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7026), 3, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7061), 6, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - sym_identifier, - ACTIONS(7065), 15, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5981), 49, + ts_builtin_sym_end, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [52109] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6394), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7016), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(7028), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(7032), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(7034), 1, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(7038), 1, + anon_sym_or, anon_sym_and, - ACTIONS(7040), 1, - anon_sym_not_eq, - ACTIONS(7044), 1, - anon_sym_DOT, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7010), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7018), 2, - anon_sym_PIPE, anon_sym_bitor, - ACTIONS(7020), 2, - anon_sym_CARET, anon_sym_xor, - ACTIONS(7022), 2, - anon_sym_AMP, anon_sym_bitand, - ACTIONS(7024), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7030), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7042), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7046), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7012), 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [1308] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6495), 28, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7026), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7053), 7, - aux_sym_preproc_elif_token1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_LBRACK, 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_identifier, - ACTIONS(7051), 18, + ACTIONS(6493), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_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_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -366058,75 +322847,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [52214] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7028), 1, - anon_sym_GT_EQ, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7034), 1, anon_sym_LT_EQ_GT, - ACTIONS(7040), 1, - anon_sym_not_eq, - ACTIONS(7044), 1, - anon_sym_DOT, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7010), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7018), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(7020), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7022), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(7024), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7030), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7042), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7046), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7012), 3, + [1379] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5660), 27, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7026), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7053), 8, - aux_sym_preproc_elif_token1, + 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_identifier, - ACTIONS(7051), 19, + sym_literal_suffix, + ACTIONS(5658), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, + anon_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, @@ -366138,74 +322905,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [52315] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7028), 1, - anon_sym_GT_EQ, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7034), 1, anon_sym_LT_EQ_GT, - ACTIONS(7040), 1, - anon_sym_not_eq, - ACTIONS(7044), 1, - anon_sym_DOT, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7010), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7020), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7022), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(7024), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7030), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7042), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7046), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7012), 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DASH_GT_STAR, + [1450] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6497), 1, + sym_identifier, + STATE(2499), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(4814), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(4816), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5560), 23, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7026), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7053), 10, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, + 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, - sym_identifier, - ACTIONS(7051), 19, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(5556), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, + anon_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, @@ -366217,73 +322987,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [52414] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7028), 1, - anon_sym_GT_EQ, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7034), 1, anon_sym_LT_EQ_GT, - ACTIONS(7040), 1, - anon_sym_not_eq, - ACTIONS(7044), 1, - anon_sym_DOT, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7010), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7022), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(7024), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7030), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7042), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7046), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7012), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7026), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7053), 12, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - 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, - sym_identifier, - ACTIONS(7051), 19, + anon_sym_DASH_GT_STAR, + [1529] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6499), 1, + sym_literal_suffix, + STATE(2378), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(6304), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6306), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4765), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + 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, @@ -366291,58 +323028,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, - [52511] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7028), 1, - anon_sym_GT_EQ, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7034), 1, anon_sym_LT_EQ_GT, - ACTIONS(7040), 1, - anon_sym_not_eq, - ACTIONS(7044), 1, - anon_sym_DOT, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7010), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7024), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7030), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7042), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7046), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7012), 3, + anon_sym_GT2, + ACTIONS(4773), 26, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7026), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7053), 14, - aux_sym_preproc_elif_token1, 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, @@ -366351,69 +323062,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_xor, anon_sym_bitand, - sym_identifier, - ACTIONS(7051), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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, - [52606] = 16, + anon_sym_not_eq, + anon_sym_DOT, + [1608] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7028), 1, - anon_sym_GT_EQ, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7034), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7044), 1, - anon_sym_DOT, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7010), 2, + STATE(2454), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6423), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4763), 28, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7030), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7042), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7046), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7012), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7026), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7053), 15, - aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_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, @@ -366424,18 +323099,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(7051), 21, + sym_auto, + anon_sym_decltype, + ACTIONS(4771), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_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, @@ -366447,68 +323129,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [52697] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7034), 1, anon_sym_LT_EQ_GT, - ACTIONS(7044), 1, - anon_sym_DOT, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7010), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7030), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7042), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7046), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7012), 3, + [1683] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(6501), 1, + anon_sym_LT, + STATE(2048), 1, + sym_template_argument_list, + ACTIONS(5374), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7053), 18, - aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_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_COLON, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(7051), 22, + anon_sym_DOT, + ACTIONS(5381), 42, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, + anon_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___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -366520,10 +323190,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [52784] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [1760] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 28, + ACTIONS(4346), 28, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -366538,6 +323224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -366550,22 +323237,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6582), 29, + ACTIONS(4348), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_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_LBRACK_LBRACK, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -366582,10 +323273,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [52849] = 3, + [1831] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 19, + ACTIONS(6508), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6506), 28, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -366599,17 +323293,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_LBRACK, 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(7069), 38, + sym_identifier, + ACTIONS(6504), 34, ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -366617,8 +323323,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_COLON, @@ -366633,38 +323337,16 @@ 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, - [52914] = 11, + [1904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2949), 1, - anon_sym_LBRACE, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(6976), 1, - anon_sym_LBRACK, - ACTIONS(6978), 1, - sym_auto, - ACTIONS(6980), 1, - anon_sym_decltype, - STATE(3646), 1, - sym_new_declarator, - STATE(3689), 1, - sym_decltype_auto, - STATE(4214), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6293), 20, + ACTIONS(6512), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -366674,24 +323356,44 @@ 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___attribute__, 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(6289), 28, + sym_identifier, + ACTIONS(6510), 36, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_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, @@ -366699,25 +323401,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_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [52995] = 3, + [1975] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5957), 28, + ACTIONS(5698), 1, + anon_sym___attribute__, + ACTIONS(5985), 1, + anon_sym_LBRACE, + ACTIONS(6518), 1, + anon_sym_COLON, + STATE(2128), 1, + sym_enum_base_clause, + STATE(2166), 1, + sym_enumerator_list, + STATE(2323), 1, + sym_attribute_specifier, + ACTIONS(6514), 28, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -366731,7 +323440,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -366746,19 +323454,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5959), 29, + ACTIONS(6516), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_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, @@ -366776,50 +323484,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [53060] = 10, + [2058] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7044), 1, - anon_sym_DOT, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7042), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7046), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7051), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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, - ACTIONS(7053), 25, + ACTIONS(5698), 1, + anon_sym___attribute__, + ACTIONS(5985), 1, + anon_sym_LBRACE, + ACTIONS(6518), 1, + anon_sym_COLON, + STATE(2131), 1, + sym_enum_base_clause, + STATE(2174), 1, + sym_enumerator_list, + STATE(2356), 1, + sym_attribute_specifier, + ACTIONS(6520), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -366844,11 +323524,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - [53139] = 3, + sym_auto, + anon_sym_decltype, + ACTIONS(6522), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_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, + [2141] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6698), 28, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(6524), 1, + anon_sym_LT, + STATE(2624), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2690), 1, + sym_template_argument_list, + ACTIONS(6429), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4763), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -366859,10 +323585,8 @@ 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___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -366877,7 +323601,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6696), 29, + ACTIONS(4771), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -366907,10 +323631,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [53204] = 3, + [2222] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7075), 19, + ACTIONS(4342), 28, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -366924,17 +323649,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_LBRACK, 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(7073), 38, + sym_identifier, + ACTIONS(4344), 35, ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -366942,7 +323679,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, anon_sym_RBRACK, @@ -366958,21 +323694,15 @@ 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, - [53269] = 3, + [2293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 27, + ACTIONS(5664), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -366997,23 +323727,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, + anon_sym_DASH_GT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6464), 30, + sym_literal_suffix, + ACTIONS(5662), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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, @@ -367030,80 +323756,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [53334] = 25, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DASH_GT_STAR, + [2364] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7016), 1, - anon_sym_AMP_AMP, - ACTIONS(7028), 1, - anon_sym_GT_EQ, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7034), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7036), 1, - anon_sym_or, - ACTIONS(7038), 1, - anon_sym_and, - ACTIONS(7040), 1, - anon_sym_not_eq, - ACTIONS(7044), 1, - anon_sym_DOT, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7010), 2, + ACTIONS(5668), 27, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7018), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(7020), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7022), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(7024), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7030), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7042), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7046), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7012), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7026), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7077), 6, - aux_sym_preproc_elif_token1, + 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_identifier, - ACTIONS(7079), 17, + sym_literal_suffix, + ACTIONS(5666), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, + anon_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, @@ -367115,82 +323820,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [53443] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7016), 1, - anon_sym_AMP_AMP, - ACTIONS(7028), 1, - anon_sym_GT_EQ, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7034), 1, anon_sym_LT_EQ_GT, - ACTIONS(7036), 1, - anon_sym_or, - ACTIONS(7038), 1, - anon_sym_and, - ACTIONS(7040), 1, - anon_sym_not_eq, - ACTIONS(7044), 1, - anon_sym_DOT, - ACTIONS(7063), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7067), 1, - anon_sym_QMARK, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7010), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7018), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(7020), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7022), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(7024), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7030), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7042), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7046), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7012), 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DASH_GT_STAR, + [2435] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6526), 1, + sym_identifier, + ACTIONS(6531), 1, + sym_primitive_type, + STATE(2522), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6529), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5969), 27, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7026), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7081), 6, - aux_sym_preproc_elif_token1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - sym_identifier, - ACTIONS(7083), 15, + 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(5965), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, + anon_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, @@ -367201,79 +323902,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [53556] = 25, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [2514] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(6394), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5218), 1, anon_sym_LPAREN2, - ACTIONS(7014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7016), 1, + ACTIONS(6533), 1, + sym_identifier, + ACTIONS(6537), 1, + anon_sym_STAR, + ACTIONS(6539), 1, anon_sym_AMP_AMP, - ACTIONS(7028), 1, - anon_sym_GT_EQ, - ACTIONS(7032), 1, + ACTIONS(6541), 1, + anon_sym_AMP, + ACTIONS(6543), 1, anon_sym_LBRACK, - ACTIONS(7034), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7036), 1, - anon_sym_or, - ACTIONS(7038), 1, - anon_sym_and, - ACTIONS(7040), 1, - anon_sym_not_eq, - ACTIONS(7044), 1, - anon_sym_DOT, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7010), 2, + STATE(3879), 1, + sym_parameter_list, + STATE(5969), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6740), 1, + sym_scope_resolution, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7349), 1, + sym_declarator, + STATE(7466), 1, + sym_abstract_declarator, + STATE(9168), 1, + sym_ms_based_modifier, + ACTIONS(3698), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3177), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(3875), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3696), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(6535), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(7305), 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [2637] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5653), 1, + sym_primitive_type, + STATE(2524), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5978), 28, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7018), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(7020), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7022), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(7024), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7030), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7042), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7046), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7012), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7026), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7085), 6, - aux_sym_preproc_elif_token1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, 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_identifier, - ACTIONS(7087), 17, + sym_auto, + anon_sym_decltype, + ACTIONS(5975), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, + anon_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, @@ -367285,10 +324067,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [53665] = 3, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [2714] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6680), 28, + ACTIONS(6548), 1, + sym_identifier, + STATE(2507), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(4814), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(4816), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5554), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367302,11 +324107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -367314,22 +324115,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6678), 29, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(5550), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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, @@ -367346,38 +324143,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [53730] = 10, + anon_sym_DASH_GT_STAR, + [2793] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7044), 1, - anon_sym_DOT, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7042), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7046), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7091), 23, + STATE(2524), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6545), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5651), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, + anon_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, @@ -367390,8 +324180,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7089), 25, - aux_sym_preproc_elif_token1, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5653), 29, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367405,7 +324198,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, + sym_primitive_type, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -367415,83 +324210,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - [53809] = 27, + sym_auto, + anon_sym_decltype, + [2868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7016), 1, - anon_sym_AMP_AMP, - ACTIONS(7028), 1, - anon_sym_GT_EQ, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7034), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7036), 1, - anon_sym_or, - ACTIONS(7038), 1, - anon_sym_and, - ACTIONS(7040), 1, - anon_sym_not_eq, - ACTIONS(7044), 1, - anon_sym_DOT, - ACTIONS(7063), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7067), 1, - anon_sym_QMARK, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7010), 2, + ACTIONS(6552), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7018), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(7020), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7022), 2, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + 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, - ACTIONS(7024), 2, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6550), 36, + ts_builtin_sym_end, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7030), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7042), 2, + 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, - ACTIONS(7046), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7012), 3, + [2939] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6556), 27, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7026), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7093), 6, - aux_sym_preproc_elif_token1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, 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_identifier, - ACTIONS(7095), 15, + ACTIONS(6554), 36, + ts_builtin_sym_end, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_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, @@ -367502,13 +324345,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [53922] = 4, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [3010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6197), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(6560), 28, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367522,22 +324368,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_COLON, + 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(4853), 36, + sym_identifier, + ACTIONS(6558), 35, + ts_builtin_sym_end, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -367549,57 +324413,49 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_DOT_DOT_GT, - [53989] = 4, + [3081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6197), 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(4853), 43, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5419), 7, 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_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5417), 55, + anon_sym_AMP, anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACE, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -367610,31 +324466,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [54056] = 4, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [3151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5525), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5527), 26, + ACTIONS(6564), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -367649,6 +324503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -367661,9 +324516,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5520), 29, + ACTIONS(6562), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -367674,7 +324531,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, @@ -367691,18 +324552,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [54123] = 5, + [3221] = 3, ACTIONS(3), 1, sym_comment, - STATE(2956), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6922), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4827), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6568), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367716,20 +324570,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, 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(4835), 33, + sym_identifier, + ACTIONS(6566), 35, + ts_builtin_sym_end, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_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_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -367741,51 +324614,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_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [54192] = 10, + [3291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7044), 1, + ACTIONS(6572), 27, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + 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, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7042), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7046), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7099), 23, + sym_identifier, + ACTIONS(6570), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_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, @@ -367798,47 +324682,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7097), 25, - aux_sym_preproc_elif_token1, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [3361] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(4789), 20, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(5938), 41, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_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___extension__, + anon_sym___attribute__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + 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, - [54271] = 8, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [3433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7101), 1, - anon_sym_LPAREN2, - ACTIONS(7103), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7105), 1, - anon_sym_LBRACK, - STATE(3574), 1, - sym_parameter_list, - STATE(3162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6779), 25, + ACTIONS(6576), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367852,6 +324772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -367864,17 +324785,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6777), 26, + ACTIONS(6574), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_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, @@ -367891,10 +324821,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [54346] = 3, + [3503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5518), 27, + ACTIONS(6580), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367908,6 +324839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -367920,23 +324852,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5525), 30, + ACTIONS(6578), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_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_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -367953,16 +324888,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [54411] = 6, + [3573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7107), 1, - anon_sym_LT, - STATE(3241), 1, - sym_template_argument_list, - ACTIONS(5460), 16, + ACTIONS(6584), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367973,25 +324903,42 @@ 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___attribute__, anon_sym_EQ, - anon_sym_COLON, + 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(5467), 38, + sym_identifier, + ACTIONS(6582), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - 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, @@ -368004,40 +324951,26 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [54482] = 10, + anon_sym_DASH_GT, + [3643] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7055), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7112), 17, + ACTIONS(5985), 1, + anon_sym_LBRACE, + ACTIONS(6586), 1, + anon_sym___attribute__, + ACTIONS(6588), 1, + anon_sym_COLON, + STATE(2128), 1, + sym_enum_base_clause, + STATE(2166), 1, + sym_enumerator_list, + STATE(2323), 1, + sym_attribute_specifier, + ACTIONS(6514), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368055,19 +324988,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(7110), 31, + anon_sym_DOT, + ACTIONS(6516), 38, ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_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___attribute__, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -368087,33 +325022,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [54561] = 7, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [3725] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6788), 1, + ACTIONS(6365), 1, anon_sym___attribute__, - ACTIONS(7114), 1, - anon_sym_LBRACE, - STATE(3142), 1, - sym_enumerator_list, - STATE(3489), 1, + STATE(2738), 1, sym_attribute_specifier, - ACTIONS(6239), 12, + ACTIONS(6052), 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(6237), 41, + ACTIONS(6050), 50, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -368122,9 +325059,15 @@ 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___extension__, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -368135,6 +325078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -368151,16 +325095,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [54634] = 5, + sym_semgrep_metavar, + [3799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7120), 1, - anon_sym_LT, - STATE(2898), 1, - sym_template_argument_list, - ACTIONS(7118), 17, + ACTIONS(5427), 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(5425), 55, + anon_sym_AMP, + anon_sym___extension__, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [3869] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5423), 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(5421), 55, + anon_sym_AMP, + anon_sym___extension__, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [3939] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5993), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368171,18 +325246,31 @@ 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___attribute__, 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(7116), 38, + sym_identifier, + ACTIONS(5991), 35, ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -368190,7 +325278,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -368206,21 +325293,15 @@ 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, - [54703] = 3, + [4009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5507), 26, + ACTIONS(6592), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -368235,6 +325316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -368247,9 +325329,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5509), 31, + ACTIONS(6590), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -368260,9 +325344,11 @@ 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_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -368279,18 +325365,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [54768] = 7, + [4079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6448), 1, - anon_sym___attribute__, - ACTIONS(6858), 1, - anon_sym_LBRACE, - STATE(3227), 1, - sym_enumerator_list, - STATE(3584), 1, - sym_attribute_specifier, - ACTIONS(6239), 19, + ACTIONS(6596), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368304,23 +325383,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, 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(6237), 34, + sym_identifier, + ACTIONS(6594), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_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, @@ -368332,176 +325427,242 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [54841] = 3, + anon_sym_DASH_GT, + [4149] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4382), 19, + ACTIONS(6365), 1, + anon_sym___attribute__, + STATE(2678), 1, + sym_attribute_specifier, + ACTIONS(6062), 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_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(4384), 38, + ACTIONS(6060), 50, ts_builtin_sym_end, 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___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym___extension__, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_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, - [54906] = 9, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [4223] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + STATE(2663), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5653), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(6598), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5975), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7000), 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, anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7057), 17, + anon_sym_GT2, + ACTIONS(5978), 35, anon_sym_DASH, anon_sym_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___extension__, + anon_sym___attribute__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - ACTIONS(7059), 33, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [4299] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6365), 1, + anon_sym___attribute__, + STATE(2691), 1, + sym_attribute_specifier, + ACTIONS(6070), 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(6068), 50, ts_builtin_sym_end, 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___attribute__, + anon_sym___extension__, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [54983] = 7, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [4373] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6788), 1, + ACTIONS(6365), 1, anon_sym___attribute__, - ACTIONS(7114), 1, - anon_sym_LBRACE, - STATE(3153), 1, - sym_enumerator_list, - STATE(3495), 1, + STATE(2693), 1, sym_attribute_specifier, - ACTIONS(6310), 12, + ACTIONS(6074), 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(6308), 41, + ACTIONS(6072), 50, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -368510,9 +325671,15 @@ 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___extension__, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -368523,6 +325690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -368539,29 +325707,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [55056] = 11, + sym_semgrep_metavar, + [4447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2949), 1, - anon_sym_LBRACE, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(6976), 1, - anon_sym_LBRACK, - ACTIONS(6978), 1, - sym_auto, - ACTIONS(6980), 1, - anon_sym_decltype, - STATE(3665), 1, - sym_new_declarator, - STATE(3689), 1, - sym_decltype_auto, - STATE(4236), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6303), 20, + ACTIONS(6603), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368571,24 +325723,43 @@ 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___attribute__, 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(6301), 28, + sym_identifier, + ACTIONS(6601), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_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, @@ -368596,41 +325767,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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_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, - anon_sym_GT2, - [55137] = 10, + [4517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7055), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7089), 17, + ACTIONS(5579), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368644,24 +325794,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, 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, - ACTIONS(7091), 31, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(5581), 35, ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_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___attribute__, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -368673,40 +325838,88 @@ 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, - [55216] = 11, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [4587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6394), 1, + ACTIONS(6078), 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(6076), 51, + ts_builtin_sym_end, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7032), 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_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(7044), 1, - anon_sym_DOT, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7042), 2, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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, - ACTIONS(7046), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7012), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7053), 22, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [4657] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6607), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -368715,6 +325928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -368725,19 +325939,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(7051), 23, + ACTIONS(6605), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_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, @@ -368750,34 +325973,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - [55297] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7044), 1, - anon_sym_DOT, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7010), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7042), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7046), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7012), 3, + [4727] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6611), 27, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7053), 20, - aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -368786,6 +325995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -368796,19 +326006,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(7051), 23, + ACTIONS(6609), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_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, @@ -368821,79 +326040,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - [55380] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7016), 1, - anon_sym_AMP_AMP, - ACTIONS(7028), 1, - anon_sym_GT_EQ, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7034), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7036), 1, - anon_sym_or, - ACTIONS(7038), 1, - anon_sym_and, - ACTIONS(7040), 1, - anon_sym_not_eq, - ACTIONS(7044), 1, - anon_sym_DOT, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7010), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7018), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(7020), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7022), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(7024), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7030), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7042), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7046), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7012), 3, + [4797] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6615), 27, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7026), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7123), 6, - aux_sym_preproc_elif_token1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, 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_identifier, - ACTIONS(7125), 17, + ACTIONS(6613), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_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, @@ -368905,11 +326106,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [55489] = 3, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [4867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5518), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(6619), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368923,23 +326129,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, - anon_sym_COLON, + 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(5525), 37, + sym_identifier, + ACTIONS(6617), 35, + ts_builtin_sym_end, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_COLON_COLON, - 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, @@ -368951,166 +326173,101 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_DOT_DOT_GT, - [55554] = 3, + [4937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 13, + ACTIONS(6623), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_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_GT_GT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(5479), 44, - 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___extension__, + anon_sym_GT_GT, anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [55619] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5481), 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(5483), 44, + sym_identifier, + ACTIONS(6621), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - 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___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + 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_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [55684] = 3, + [5007] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 13, + ACTIONS(6365), 1, + anon_sym___attribute__, + STATE(2714), 1, + sym_attribute_specifier, + ACTIONS(6096), 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(5502), 44, + ACTIONS(6094), 50, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -369119,12 +326276,15 @@ 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___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -369135,6 +326295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -369151,214 +326312,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [55749] = 3, + sym_semgrep_metavar, + [5081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 13, + ACTIONS(6627), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_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___attribute__, + 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(5498), 44, + sym_identifier, + ACTIONS(6625), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - 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___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + 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_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [55814] = 3, + [5151] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5507), 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(5509), 44, + STATE(2557), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6629), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5651), 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, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [55879] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5511), 13, + anon_sym_DASH_GT_STAR, + ACTIONS(5653), 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_GT_GT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(5513), 44, - 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___extension__, + anon_sym_GT_GT, anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_DOT, anon_sym_DASH_GT, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [55944] = 3, + [5225] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5456), 13, + ACTIONS(6365), 1, + anon_sym___attribute__, + STATE(2716), 1, + sym_attribute_specifier, + ACTIONS(6100), 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(5458), 44, + ACTIONS(6098), 50, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -369367,12 +326481,15 @@ 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___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -369383,6 +326500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -369399,58 +326517,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [56009] = 3, + sym_semgrep_metavar, + [5299] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5518), 13, + ACTIONS(5985), 1, + anon_sym_LBRACE, + ACTIONS(6586), 1, + anon_sym___attribute__, + ACTIONS(6588), 1, + anon_sym_COLON, + STATE(2131), 1, + sym_enum_base_clause, + STATE(2174), 1, + sym_enumerator_list, + STATE(2356), 1, + sym_attribute_specifier, + ACTIONS(6520), 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_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5525), 44, + ACTIONS(6522), 38, + ts_builtin_sym_end, 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___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + 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_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -369459,21 +326592,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [56074] = 5, + [5381] = 3, ACTIONS(3), 1, sym_comment, - STATE(2983), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6982), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6064), 16, + ACTIONS(5664), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369488,9 +326610,19 @@ 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, anon_sym_DASH_GT, - ACTIONS(6062), 36, + sym_literal_suffix, + ACTIONS(5662), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -369500,8 +326632,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -369515,22 +326645,92 @@ 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_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DASH_GT_STAR, + [5451] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5381), 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(5374), 55, + anon_sym_AMP, + anon_sym___extension__, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [56143] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [5521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4378), 19, + ACTIONS(6634), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369544,17 +326744,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, + anon_sym___attribute__, 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(4380), 38, + sym_identifier, + ACTIONS(6632), 35, ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -369562,9 +326773,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -369578,21 +326788,16 @@ 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, - [56208] = 3, + [5591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5460), 20, + ACTIONS(6638), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369602,28 +326807,42 @@ 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___attribute__, 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(5467), 37, + sym_identifier, + ACTIONS(6636), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym___attribute__, - 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, @@ -369632,36 +326851,19 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [56273] = 5, + [5661] = 3, ACTIONS(3), 1, sym_comment, - STATE(3040), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7127), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5957), 16, + ACTIONS(5668), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369676,9 +326878,19 @@ 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, anon_sym_DASH_GT, - ACTIONS(5959), 36, + sym_literal_suffix, + ACTIONS(5666), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -369688,8 +326900,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -369703,35 +326913,25 @@ 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, - 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_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, anon_sym_DASH_GT_STAR, - [56342] = 9, + [5731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 1, - anon_sym___attribute__, - ACTIONS(7129), 1, - anon_sym_LBRACE, - ACTIONS(7131), 1, - anon_sym_COLON, - STATE(3370), 1, - sym_enum_base_clause, - STATE(3531), 1, - sym_enumerator_list, - STATE(3916), 1, - sym_attribute_specifier, - ACTIONS(6225), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6642), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369745,19 +326945,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, 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(6227), 32, + sym_identifier, + ACTIONS(6640), 35, + ts_builtin_sym_end, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_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, @@ -369769,71 +326989,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_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [56419] = 5, + [5801] = 3, ACTIONS(3), 1, sym_comment, - STATE(2983), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6982), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6034), 16, + ACTIONS(5936), 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_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(6032), 36, + ACTIONS(5934), 51, + ts_builtin_sym_end, 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___extension__, anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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, @@ -369844,24 +327054,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [56488] = 8, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [5871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7101), 1, - anon_sym_LPAREN2, - ACTIONS(7103), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7105), 1, - anon_sym_LBRACK, - STATE(3574), 1, - sym_parameter_list, - STATE(3162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6732), 25, + ACTIONS(2191), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369875,6 +327079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -369887,17 +327092,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6728), 26, + ACTIONS(2193), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_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, @@ -369914,10 +327128,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [56563] = 3, + [5941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6197), 20, + ACTIONS(4773), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369927,28 +327142,42 @@ 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___attribute__, 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(4853), 37, + sym_identifier, + ACTIONS(4765), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym___attribute__, - 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, @@ -369957,45 +327186,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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [56628] = 10, + [6011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7055), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7097), 17, + ACTIONS(6646), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370009,24 +327213,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, 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, - ACTIONS(7099), 31, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6644), 35, ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_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___attribute__, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -370038,17 +327257,15 @@ 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, - [56707] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [6081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5511), 26, + ACTIONS(2189), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -370063,6 +327280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -370075,9 +327293,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5513), 31, + ACTIONS(2187), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -370088,9 +327308,11 @@ 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_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -370107,21 +327329,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [56772] = 8, + [6151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7101), 1, - anon_sym_LPAREN2, - ACTIONS(7103), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7105), 1, - anon_sym_LBRACK, - STATE(3574), 1, - sym_parameter_list, - STATE(3162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6761), 25, + ACTIONS(4773), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370135,6 +327347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -370147,17 +327360,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6759), 26, + ACTIONS(4765), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_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, @@ -370174,101 +327396,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [56847] = 3, + [6221] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7135), 18, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(4771), 20, + 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(4763), 41, anon_sym_DASH, anon_sym_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___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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, - ACTIONS(7133), 39, - ts_builtin_sym_end, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [6293] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6648), 1, + sym_identifier, + ACTIONS(6652), 1, + sym_primitive_type, + STATE(2544), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6650), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5965), 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_SEMI, - anon_sym___attribute__, + anon_sym_LT_LT, 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_DOT_STAR, anon_sym_DASH_GT, - [56912] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5477), 20, - anon_sym_DOT_DOT_DOT, + anon_sym_GT2, + ACTIONS(5969), 35, anon_sym_DASH, anon_sym_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___extension__, + anon_sym___attribute__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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, - ACTIONS(5479), 37, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [6371] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(6524), 1, + anon_sym_LT, + STATE(2690), 1, + sym_template_argument_list, + ACTIONS(4789), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -370282,26 +327569,46 @@ 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, + ACTIONS(5938), 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_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_COLON, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_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, + anon_sym_DOT, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_DOT_DOT_DOT_GT, - [56977] = 3, + [6447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5456), 26, + ACTIONS(6656), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -370316,6 +327623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -370328,9 +327636,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5458), 31, + ACTIONS(6654), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -370341,9 +327651,11 @@ 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_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -370360,11 +327672,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [57042] = 3, + [6517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5481), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(6660), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370378,23 +327690,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, - anon_sym_COLON, + 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(5483), 37, + sym_identifier, + ACTIONS(6658), 35, + ts_builtin_sym_end, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_COLON_COLON, - 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, @@ -370406,26 +327734,18 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_DOT_DOT_GT, - [57107] = 3, + [6587] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7139), 19, + ACTIONS(6662), 1, + anon_sym_LPAREN2, + ACTIONS(2191), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370439,27 +327759,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, + anon_sym___attribute__, 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(7137), 38, + sym_identifier, + ACTIONS(2193), 34, ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, 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___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -370473,22 +327802,15 @@ 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, - [57172] = 3, + [6659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(5649), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370503,21 +327825,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, + 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(5502), 37, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(5647), 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___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -370530,55 +327859,42 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_DOT_DOT_GT, - [57237] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DASH_GT_STAR, + [6729] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_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(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(6664), 1, 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(5498), 37, + STATE(2690), 1, + sym_template_argument_list, + ACTIONS(5381), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -370592,27 +327908,12 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_DOT_DOT_GT, - [57302] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5507), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(5374), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370623,42 +327924,82 @@ 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___attribute__, anon_sym_EQ, anon_sym_COLON, + 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, + anon_sym_final, + anon_sym_override, + [6805] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(4763), 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(5509), 37, + ACTIONS(4771), 50, + ts_builtin_sym_end, + 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___extension__, anon_sym___attribute__, - anon_sym_COLON_COLON, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -370669,58 +328010,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_DOT_DOT_DOT_GT, - [57367] = 3, + anon_sym_requires, + sym_semgrep_metavar, + [6877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5511), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(4789), 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(5938), 55, + anon_sym_AMP, + anon_sym___extension__, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [6947] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5938), 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_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, - ACTIONS(5513), 37, + ACTIONS(4789), 50, + ts_builtin_sym_end, + 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___extension__, anon_sym___attribute__, - anon_sym_COLON_COLON, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -370731,12 +328145,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_DOT_DOT_DOT_GT, - [57432] = 3, + anon_sym_requires, + sym_semgrep_metavar, + [7019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5456), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(5603), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370750,23 +328165,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, - anon_sym_COLON, + 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(5458), 37, + sym_identifier, + ACTIONS(5605), 35, + ts_builtin_sym_end, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_COLON_COLON, - 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, @@ -370778,42 +328209,16 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_DOT_DOT_GT, - [57497] = 10, + [7089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7055), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7143), 17, + ACTIONS(5633), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370827,24 +328232,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, 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, - ACTIONS(7141), 31, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(5635), 35, ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_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___attribute__, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -370856,25 +328276,16 @@ 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, - [57576] = 7, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [7159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6448), 1, - anon_sym___attribute__, - ACTIONS(6858), 1, - anon_sym_LBRACE, - STATE(3292), 1, - sym_enumerator_list, - STATE(3593), 1, - sym_attribute_specifier, - ACTIONS(6310), 19, + ACTIONS(4306), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370888,23 +328299,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, 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(6308), 34, + sym_identifier, + ACTIONS(4302), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_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, @@ -370916,23 +328343,15 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [57649] = 3, + anon_sym_DASH_GT, + [7229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 27, + ACTIONS(5660), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370946,6 +328365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -370957,22 +328377,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, + sym_literal_suffix, + ACTIONS(5658), 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_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_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, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [7299] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6667), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5479), 30, + ACTIONS(6671), 1, + sym_primitive_type, + STATE(2602), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6669), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5965), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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, @@ -370990,11 +328456,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + ACTIONS(5969), 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___attribute__, + 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, - [57714] = 3, + sym_auto, + anon_sym_decltype, + [7377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5481), 27, + ACTIONS(2355), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371008,6 +328504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -371020,23 +328517,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5483), 30, + ACTIONS(2353), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_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_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -371053,16 +328553,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [57779] = 6, + [7447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7145), 1, - anon_sym_LT, - STATE(3269), 1, - sym_template_argument_list, - ACTIONS(6197), 25, + ACTIONS(6675), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -371074,8 +328568,10 @@ 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___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -371088,9 +328584,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4853), 29, + ACTIONS(6673), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -371101,7 +328599,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, @@ -371118,17 +328620,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [57850] = 5, + [7517] = 3, ACTIONS(3), 1, sym_comment, - STATE(3085), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7147), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6007), 16, + ACTIONS(5625), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371142,22 +328638,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, 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(6005), 36, + sym_identifier, + ACTIONS(5627), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - 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, @@ -371170,22 +328683,15 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [57919] = 3, + anon_sym_DASH_GT, + [7587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 27, + ACTIONS(5383), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371199,6 +328705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -371211,23 +328718,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5502), 30, + ACTIONS(5376), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_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_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -371244,10 +328754,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [57984] = 3, + [7657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 27, + ACTIONS(5629), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371261,6 +328772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -371273,23 +328785,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5498), 30, + ACTIONS(5631), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_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_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -371306,72 +328821,285 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [58049] = 3, + [7727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5507), 27, + ACTIONS(5433), 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_LT_EQ, anon_sym_LT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(5438), 51, + ts_builtin_sym_end, + 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_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_DOT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [7797] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2353), 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(2355), 55, + anon_sym_AMP, + anon_sym___extension__, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [7867] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6681), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6683), 1, + anon_sym_AMP_AMP, + ACTIONS(6685), 1, + anon_sym_or, + ACTIONS(6687), 1, + anon_sym_and, + ACTIONS(6679), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(6677), 53, + anon_sym_AMP, + anon_sym___extension__, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5509), 30, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [7945] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6365), 1, + anon_sym___attribute__, + STATE(2677), 1, + sym_attribute_specifier, + ACTIONS(6086), 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(6084), 50, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + 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_COLON_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_DOT_STAR, anon_sym_DASH_GT, - [58114] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [8019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5511), 27, + ACTIONS(5680), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371385,6 +329113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -371397,23 +329126,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5513), 30, + ACTIONS(3211), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_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_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -371430,57 +329162,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [58179] = 5, + [8089] = 5, ACTIONS(3), 1, sym_comment, - STATE(2972), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7149), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6050), 16, + ACTIONS(6365), 1, + anon_sym___attribute__, + STATE(2723), 1, + sym_attribute_specifier, + ACTIONS(6104), 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(6048), 36, + ACTIONS(6102), 50, + ts_builtin_sym_end, 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___attribute__, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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, @@ -371491,68 +329224,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [58248] = 9, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [8163] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 1, + ACTIONS(6365), 1, anon_sym___attribute__, - ACTIONS(7129), 1, - anon_sym_LBRACE, - ACTIONS(7131), 1, - anon_sym_COLON, - STATE(3423), 1, - sym_enum_base_clause, - STATE(3535), 1, - sym_enumerator_list, - STATE(3820), 1, + STATE(2692), 1, sym_attribute_specifier, - ACTIONS(6233), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6022), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(6235), 32, + ACTIONS(6020), 50, + ts_builtin_sym_end, + 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___extension__, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -371561,12 +329296,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [58325] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [8237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5481), 26, - aux_sym_preproc_elif_token1, + ACTIONS(5660), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371591,22 +329328,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(5483), 31, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(5658), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_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, @@ -371623,35 +329356,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [58390] = 9, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DASH_GT_STAR, + [8307] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6394), 1, + ACTIONS(2357), 7, anon_sym_LPAREN2, - ACTIONS(7032), 1, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2359), 55, + anon_sym_AMP, + anon_sym___extension__, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - ACTIONS(7044), 1, - anon_sym_DOT, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7046), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6996), 25, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [8377] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(2557), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5653), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(6629), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5975), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, + anon_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, @@ -371666,8 +329473,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6998), 25, - aux_sym_preproc_elif_token1, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + ACTIONS(5978), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371681,6 +329489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -371691,11 +329500,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - sym_identifier, - [58467] = 3, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [8453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5456), 27, + ACTIONS(6691), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371709,6 +329522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -371721,23 +329535,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5458), 30, + ACTIONS(6689), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_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_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -371754,21 +329571,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [58532] = 8, + [8523] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7101), 1, - anon_sym_LPAREN2, - ACTIONS(7103), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7105), 1, - anon_sym_LBRACK, - STATE(3574), 1, - sym_parameter_list, - STATE(3162), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6748), 25, + ACTIONS(5702), 1, + anon_sym_COLON, + ACTIONS(6693), 1, + anon_sym___attribute__, + ACTIONS(6695), 1, + anon_sym_LBRACE, + STATE(3019), 1, + sym_field_declaration_list, + STATE(3301), 1, + sym_attribute_specifier, + STATE(7876), 1, + sym_virtual_specifier, + STATE(8749), 1, + sym_base_class_clause, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5696), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371783,28 +329606,22 @@ 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, - sym_identifier, - ACTIONS(6746), 26, + anon_sym_DASH_GT, + ACTIONS(5694), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, + anon_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, @@ -371816,15 +329633,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_DOT_STAR, - anon_sym_DASH_GT, - [58607] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [8609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 26, + ACTIONS(6699), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -371839,6 +329664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -371851,9 +329677,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5479), 31, + ACTIONS(6697), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -371864,9 +329692,11 @@ 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_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -371883,12 +329713,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [58672] = 4, + [8679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5460), 27, + ACTIONS(6703), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371902,6 +329731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -371914,22 +329744,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5467), 29, + ACTIONS(6701), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_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_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -371946,10 +329780,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [58739] = 3, + [8749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6268), 27, + ACTIONS(5621), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371963,6 +329798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -371975,23 +329811,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6270), 30, + ACTIONS(5623), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_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_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -372008,14 +329847,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [58804] = 5, + [8819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6396), 1, - anon_sym_LBRACK, - STATE(3109), 1, - sym_new_declarator, - ACTIONS(6943), 26, + ACTIONS(5591), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -372030,6 +329865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -372042,9 +329878,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6941), 29, + ACTIONS(5593), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -372055,7 +329893,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, @@ -372072,50 +329914,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [58873] = 10, + [8889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7044), 1, - anon_sym_DOT, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7042), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7046), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7141), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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, - ACTIONS(7143), 25, + ACTIONS(6707), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -372130,6 +329932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -372140,38 +329943,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - sym_identifier, - [58952] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7044), 1, anon_sym_DOT, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7042), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7046), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7110), 23, + sym_identifier, + ACTIONS(6705), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_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, @@ -372184,42 +329977,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7112), 25, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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, - sym_identifier, - [59031] = 6, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [8959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7151), 1, - anon_sym_LT, - STATE(3269), 1, - sym_template_argument_list, - ACTIONS(5460), 25, + ACTIONS(5599), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -372231,8 +329996,10 @@ 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___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -372245,9 +330012,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5467), 29, + ACTIONS(5601), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -372258,7 +330027,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, @@ -372275,28 +330048,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [59102] = 5, + [9029] = 3, ACTIONS(3), 1, sym_comment, - STATE(3084), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7154), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5699), 21, + ACTIONS(2359), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute__, - sym_primitive_type, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -372305,9 +330079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5697), 31, + ACTIONS(2357), 35, ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, @@ -372317,39 +330089,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - 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_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [59171] = 5, + [9099] = 3, ACTIONS(3), 1, sym_comment, - STATE(2983), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6982), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5992), 16, + ACTIONS(6711), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -372363,22 +330133,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, 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(5990), 36, + sym_identifier, + ACTIONS(6709), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - 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, @@ -372391,39 +330178,15 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [59240] = 11, + anon_sym_DASH_GT, + [9169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2949), 1, - anon_sym_LBRACE, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(6976), 1, - anon_sym_LBRACK, - ACTIONS(6978), 1, - sym_auto, - ACTIONS(6980), 1, - anon_sym_decltype, - STATE(3649), 1, - sym_new_declarator, - STATE(3689), 1, - sym_decltype_auto, - STATE(4223), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6318), 20, + ACTIONS(5617), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -372433,24 +330196,43 @@ 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___attribute__, 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(6316), 28, + sym_identifier, + ACTIONS(5619), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_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, @@ -372458,58 +330240,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_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [59321] = 13, + [9239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7044), 1, - anon_sym_DOT, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7010), 2, + ACTIONS(6715), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7030), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7042), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7046), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7012), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7053), 18, - aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -372520,19 +330278,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(7051), 23, + ACTIONS(6713), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_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, @@ -372545,73 +330312,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - [59406] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6788), 1, - anon_sym___attribute__, - STATE(3498), 1, - sym_attribute_specifier, - ACTIONS(6462), 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(6460), 42, - 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___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [59474] = 3, + [9309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6360), 18, + ACTIONS(6719), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -372625,16 +330334,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, 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(6362), 38, + sym_identifier, + ACTIONS(6717), 35, ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -372642,7 +330363,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -372658,21 +330378,16 @@ 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, - [59538] = 3, + [9379] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7159), 18, + ACTIONS(6723), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -372686,16 +330401,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, 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(7157), 38, + sym_identifier, + ACTIONS(6721), 35, ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -372703,7 +330430,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -372719,21 +330445,16 @@ 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, - [59602] = 3, + [9449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6508), 18, + ACTIONS(6719), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -372747,16 +330468,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, 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(6510), 38, + sym_identifier, + ACTIONS(6717), 35, ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -372764,7 +330497,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -372780,82 +330512,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, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [59666] = 3, + [9519] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7163), 18, + ACTIONS(6725), 1, + sym_auto, + ACTIONS(6727), 1, + anon_sym_decltype, + STATE(2694), 1, + sym_decltype_auto, + ACTIONS(6191), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(7161), 38, + ACTIONS(6189), 49, ts_builtin_sym_end, 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___extension__, anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_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, - [59730] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [9595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6547), 27, + ACTIONS(6506), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -372869,6 +330605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -372881,22 +330618,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6545), 29, + ACTIONS(6504), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_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_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -372913,13 +330654,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [59794] = 4, + [9665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5525), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5527), 20, + ACTIONS(6731), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -372933,17 +330672,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, + anon_sym___attribute__, anon_sym_EQ, - anon_sym_COLON, + 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(5520), 34, + sym_identifier, + ACTIONS(6729), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -372951,8 +330701,10 @@ 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, @@ -372964,21 +330716,16 @@ 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, - [59860] = 3, + [9735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5460), 27, + ACTIONS(6735), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -372992,6 +330739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -373004,22 +330752,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5467), 29, + ACTIONS(6733), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_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_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -373036,10 +330788,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [59924] = 3, + [9805] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6239), 27, + STATE(2654), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6737), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6130), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373053,6 +330812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -373067,7 +330827,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6237), 29, + ACTIONS(6128), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -373097,96 +330857,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [59988] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7061), 1, - anon_sym_EQ, - ACTIONS(7165), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7171), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7173), 1, - anon_sym_AMP_AMP, - ACTIONS(7175), 1, - anon_sym_PIPE, - ACTIONS(7179), 1, - anon_sym_AMP, - ACTIONS(7185), 1, - anon_sym_GT_EQ, - ACTIONS(7189), 1, - anon_sym_QMARK, - ACTIONS(7191), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7193), 1, - anon_sym_or, - ACTIONS(7195), 1, - anon_sym_and, - ACTIONS(7197), 1, - anon_sym_bitor, - ACTIONS(7199), 1, - anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7055), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7167), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7177), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7187), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7169), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7181), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7183), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7065), 19, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [60102] = 3, + [9879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2183), 18, + ACTIONS(6741), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373200,16 +330875,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, 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(2185), 38, + sym_identifier, + ACTIONS(6739), 35, ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -373217,7 +330904,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -373233,21 +330919,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_DOT_STAR, anon_sym_DASH_GT, - [60166] = 3, + [9949] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5746), 18, + STATE(2654), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6737), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6147), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373261,28 +330948,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, 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(3187), 38, - ts_builtin_sym_end, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6145), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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___attribute__, - 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, @@ -373294,25 +330988,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, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [60230] = 5, + [10023] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6448), 1, - anon_sym___attribute__, - STATE(3566), 1, - sym_attribute_specifier, - ACTIONS(6388), 19, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + STATE(1833), 1, + sym_template_argument_list, + STATE(2759), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6743), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6090), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373332,7 +331027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6386), 35, + ACTIONS(6088), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -373342,6 +331037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -373368,14 +331064,17 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [60298] = 5, + [10101] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6448), 1, - anon_sym___attribute__, - STATE(3569), 1, - sym_attribute_specifier, - ACTIONS(6392), 19, + STATE(2632), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6745), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6185), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373389,16 +331088,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, 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(6390), 35, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6183), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -373418,23 +331128,16 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [60366] = 3, + anon_sym_DASH_GT, + [10175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6482), 18, + ACTIONS(6749), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373448,16 +331151,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, 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(6484), 38, + sym_identifier, + ACTIONS(6747), 35, ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -373465,7 +331180,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -373481,21 +331195,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_DOT_STAR, anon_sym_DASH_GT, - [60430] = 3, + [10245] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7203), 18, + STATE(2635), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6751), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6158), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373509,28 +331224,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, 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(7201), 38, - ts_builtin_sym_end, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6156), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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___attribute__, - 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, @@ -373542,42 +331264,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_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [60494] = 5, + [10319] = 5, ACTIONS(3), 1, sym_comment, - STATE(1852), 1, - sym_string_literal, - ACTIONS(7209), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(7207), 6, + ACTIONS(6683), 1, + anon_sym_AMP_AMP, + ACTIONS(6687), 1, + anon_sym_and, + ACTIONS(6755), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(7205), 44, + ACTIONS(6753), 54, anon_sym_AMP, anon_sym___extension__, 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_signed, anon_sym_unsigned, anon_sym_long, @@ -373591,96 +331309,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [60562] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3078), 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(3080), 38, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - [60626] = 3, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [10393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7213), 18, + ACTIONS(6759), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373694,16 +331356,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, 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(7211), 38, + sym_identifier, + ACTIONS(6757), 35, ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -373711,7 +331385,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -373727,21 +331400,16 @@ 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, - [60690] = 3, + [10463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7217), 18, + ACTIONS(6763), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373755,16 +331423,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, 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(7215), 38, + sym_identifier, + ACTIONS(6761), 35, ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -373772,7 +331452,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -373788,22 +331467,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_DOT_STAR, anon_sym_DASH_GT, - [60754] = 3, + [10533] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6897), 27, - aux_sym_preproc_elif_token1, + STATE(2654), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6737), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6056), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373817,7 +331496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -373830,20 +331509,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6895), 29, + sym_auto, + anon_sym_decltype, + ACTIONS(6054), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -373860,10 +331541,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [60818] = 3, + [10607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7135), 26, + ACTIONS(6767), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -373878,6 +331559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -373890,9 +331572,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7133), 30, + ACTIONS(6765), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -373903,8 +331587,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, @@ -373921,10 +331608,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [60882] = 3, + [10677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7221), 18, + ACTIONS(6771), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373938,16 +331626,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, 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(7219), 38, + sym_identifier, + ACTIONS(6769), 35, ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -373955,7 +331655,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -373971,22 +331670,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_DOT_STAR, anon_sym_DASH_GT, - [60946] = 3, + [10747] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4382), 27, - aux_sym_preproc_elif_token1, + STATE(2654), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6737), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6066), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374000,7 +331699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -374013,20 +331712,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4384), 29, + sym_auto, + anon_sym_decltype, + ACTIONS(6064), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -374043,10 +331744,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [61010] = 3, + [10821] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7225), 18, + STATE(2622), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6773), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6090), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374060,28 +331768,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, 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(7223), 38, - ts_builtin_sym_end, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6088), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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___attribute__, - 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, @@ -374093,52 +331808,49 @@ 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, - [61074] = 5, + [10895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6788), 1, - anon_sym___attribute__, - STATE(3486), 1, - sym_attribute_specifier, - ACTIONS(6424), 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(6422), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5431), 7, 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_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5429), 55, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -374149,109 +331861,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [61142] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [10965] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7229), 18, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5374), 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_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_const, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(7227), 38, + ACTIONS(5381), 50, ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - [61206] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6788), 1, - anon_sym___attribute__, - STATE(3488), 1, - sym_attribute_specifier, - ACTIONS(6428), 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(6426), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -374259,10 +331910,16 @@ 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___extension__, + anon_sym___attribute__, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -374289,12 +331946,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [61274] = 3, + sym_semgrep_metavar, + [11037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6555), 27, + ACTIONS(6777), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374308,6 +331966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -374320,22 +331979,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6553), 29, + ACTIONS(6775), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_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_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -374352,29 +332015,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [61338] = 5, + [11107] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6788), 1, + ACTIONS(6365), 1, anon_sym___attribute__, - STATE(3491), 1, + STATE(2683), 1, sym_attribute_specifier, - ACTIONS(6432), 12, + ACTIONS(6032), 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(6430), 42, + ACTIONS(6030), 50, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -374383,73 +332046,15 @@ 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___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [61406] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6788), 1, - anon_sym___attribute__, - STATE(3492), 1, - sym_attribute_specifier, - ACTIONS(6436), 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(6434), 42, - 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_GT_GT, + anon_sym_SEMI, anon_sym___extension__, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -374460,6 +332065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -374476,12 +332082,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [61474] = 3, + sym_semgrep_metavar, + [11181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7233), 18, + ACTIONS(6781), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374495,16 +332102,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, 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(7231), 38, + sym_identifier, + ACTIONS(6779), 35, ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -374512,7 +332131,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -374528,56 +332146,39 @@ 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, - [61538] = 3, + [11251] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7061), 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(7065), 38, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6783), 1, + sym_literal_suffix, + STATE(2451), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(6405), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6407), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4765), 24, anon_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___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -374589,38 +332190,13 @@ 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, - [61602] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3007), 1, - anon_sym_LBRACE, - ACTIONS(7235), 1, - anon_sym_LPAREN2, - ACTIONS(7237), 1, - anon_sym_LBRACK, - ACTIONS(7239), 1, - sym_auto, - ACTIONS(7241), 1, - anon_sym_decltype, - STATE(3818), 1, - sym_new_declarator, - STATE(3858), 1, - sym_decltype_auto, - STATE(4411), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6303), 19, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(4773), 25, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -374636,43 +332212,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, - ACTIONS(6301), 28, - 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_or, + anon_sym_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, - anon_sym_DOT_DOT_DOT_GT, - [61682] = 3, + anon_sym_DOT, + [11329] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6559), 27, + ACTIONS(5664), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374682,11 +332235,13 @@ 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, @@ -374698,21 +332253,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6557), 29, + sym_literal_suffix, + ACTIONS(5662), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_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, @@ -374721,7 +332270,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, @@ -374730,10 +332278,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [61746] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [11399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7245), 18, + ACTIONS(5668), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374743,32 +332302,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_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(7243), 38, - ts_builtin_sym_end, + sym_identifier, + sym_literal_suffix, + ACTIONS(5666), 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___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -374776,42 +332337,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_DOT_STAR, anon_sym_DASH_GT, - [61810] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [11469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 27, + ACTIONS(6076), 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_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(6078), 41, anon_sym_DASH, anon_sym_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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -374822,40 +332420,81 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6561), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [11539] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(4789), 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_LBRACE, + anon_sym_LBRACK_LBRACK, + ACTIONS(5938), 55, + anon_sym_AMP, + anon_sym___extension__, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, 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, - [61874] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [11611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 27, + ACTIONS(6787), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -374870,7 +332509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -374883,9 +332522,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7069), 29, + ACTIONS(6785), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -374896,7 +332537,11 @@ 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_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -374913,14 +332558,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [61938] = 5, + [11681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6448), 1, - anon_sym___attribute__, - STATE(3581), 1, - sym_attribute_specifier, - ACTIONS(6424), 19, + ACTIONS(6791), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374934,24 +332576,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, 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(6422), 35, + sym_identifier, + ACTIONS(6789), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_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_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -374963,27 +332620,16 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [62006] = 5, + anon_sym_DASH_GT, + [11751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6448), 1, - anon_sym___attribute__, - STATE(3583), 1, - sym_attribute_specifier, - ACTIONS(6428), 19, + ACTIONS(5607), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374997,24 +332643,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, 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(6426), 35, + sym_identifier, + ACTIONS(5609), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_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_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -375026,73 +332687,63 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [62074] = 9, + anon_sym_DASH_GT, + [11821] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6801), 1, + ACTIONS(6365), 1, anon_sym___attribute__, - ACTIONS(7247), 1, - anon_sym_LBRACE, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(3514), 1, - sym_enum_base_clause, - STATE(3612), 1, - sym_enumerator_list, - STATE(3988), 1, + STATE(2697), 1, sym_attribute_specifier, - ACTIONS(6233), 16, + ACTIONS(6036), 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(6235), 34, + ACTIONS(6034), 50, + ts_builtin_sym_end, 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___extension__, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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, @@ -375103,17 +332754,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [62150] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [11895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6448), 1, - anon_sym___attribute__, - STATE(3586), 1, - sym_attribute_specifier, - ACTIONS(6432), 19, + ACTIONS(5637), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375127,24 +332779,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, 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(6430), 35, + sym_identifier, + ACTIONS(5639), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_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_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -375156,27 +332823,16 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [62218] = 5, + anon_sym_DASH_GT, + [11965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6448), 1, - anon_sym___attribute__, - STATE(3587), 1, - sym_attribute_specifier, - ACTIONS(6436), 19, + ACTIONS(5611), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375190,24 +332846,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, 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(6434), 35, + sym_identifier, + ACTIONS(5613), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_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_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -375219,86 +332890,89 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [62286] = 5, + anon_sym_DASH_GT, + [12035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6448), 1, - anon_sym___attribute__, - STATE(3601), 1, - sym_attribute_specifier, - ACTIONS(6366), 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(6364), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5400), 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_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5398), 55, + anon_sym_AMP, + anon_sym___extension__, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, 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_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [62354] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [12105] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7253), 18, + STATE(2654), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6793), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5653), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375312,28 +332986,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, 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(7251), 38, - ts_builtin_sym_end, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5651), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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___attribute__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -375345,42 +333026,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, - [62418] = 5, + [12179] = 3, ACTIONS(3), 1, sym_comment, - STATE(1854), 1, - sym_string_literal, - ACTIONS(7209), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(7207), 6, + ACTIONS(5396), 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(7205), 44, + ACTIONS(5394), 55, anon_sym_AMP, anon_sym___extension__, 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_signed, anon_sym_unsigned, anon_sym_long, @@ -375410,6 +333084,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_class, anon_sym_struct, anon_sym_union, + anon_sym_or, + anon_sym_and, sym_identifier, sym_auto, anon_sym_decltype, @@ -375419,10 +333095,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typename, anon_sym_template, anon_sym_operator, - [62486] = 3, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [12249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7257), 18, + ACTIONS(5649), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375432,32 +333111,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_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(7255), 38, - ts_builtin_sym_end, + sym_identifier, + sym_literal_suffix, + ACTIONS(5647), 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___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -375465,27 +333146,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_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [62550] = 4, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [12319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6197), 17, + ACTIONS(5660), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375495,99 +333178,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_COLON, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4853), 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___attribute__, - 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_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [62616] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3007), 1, - anon_sym_LBRACE, - ACTIONS(7235), 1, - anon_sym_LPAREN2, - ACTIONS(7237), 1, - anon_sym_LBRACK, - ACTIONS(7239), 1, - sym_auto, - ACTIONS(7241), 1, - anon_sym_decltype, - STATE(3858), 1, - sym_decltype_auto, - STATE(3907), 1, - sym_new_declarator, - STATE(4528), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6314), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(6312), 28, + sym_identifier, + sym_literal_suffix, + ACTIONS(5658), 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_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -375595,27 +333213,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_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [62696] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [12389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4378), 27, - aux_sym_preproc_elif_token1, + ACTIONS(5664), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375629,7 +333249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -375641,21 +333261,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(4380), 29, + sym_literal_suffix, + ACTIONS(5662), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -375672,12 +333289,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [62760] = 4, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [12459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5790), 1, - sym_literal_suffix, - ACTIONS(4837), 24, + ACTIONS(5668), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375691,6 +333316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -375702,11 +333328,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4829), 31, - ts_builtin_sym_end, + sym_literal_suffix, + ACTIONS(5666), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -375714,10 +333339,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -375734,41 +333356,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [62826] = 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [12529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6788), 1, - anon_sym___attribute__, - STATE(3494), 1, - sym_attribute_specifier, - ACTIONS(6454), 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(6452), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5404), 7, 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_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5402), 55, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -375779,89 +333414,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [62894] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [12599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6197), 12, + ACTIONS(5641), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_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___attribute__, + 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(4853), 44, + sym_identifier, + ACTIONS(5643), 35, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + 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_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [62958] = 3, + [12669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6368), 18, + ACTIONS(5595), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375875,16 +333518,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, 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(6370), 38, + sym_identifier, + ACTIONS(5597), 35, ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -375892,7 +333547,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -375908,38 +333562,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_DOT_STAR, anon_sym_DASH_GT, - [63022] = 5, + [12739] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6788), 1, - anon_sym___attribute__, - STATE(3496), 1, - sym_attribute_specifier, - ACTIONS(6322), 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(6320), 42, + STATE(2663), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6598), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5651), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -375951,9 +333589,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym___extension__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(5653), 37, + 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___extension__, + anon_sym___attribute__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -375964,28 +333622,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + sym_primitive_type, anon_sym_or, anon_sym_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, + anon_sym_DOT, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [63090] = 3, + [12813] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6664), 27, + ACTIONS(6798), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375999,6 +333654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -376011,65 +333667,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6662), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [63154] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6468), 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(6470), 38, + ACTIONS(6796), 35, ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -376077,7 +333683,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -376093,28 +333698,16 @@ 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, - [63218] = 6, + [12883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2387), 1, - anon_sym_LBRACE, - ACTIONS(6720), 1, - anon_sym_LPAREN2, - STATE(3643), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6846), 25, + ACTIONS(6802), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -376128,6 +333721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -376140,61 +333734,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6844), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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, - [63288] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7261), 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(7259), 38, + ACTIONS(6800), 35, ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -376202,7 +333750,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -376218,21 +333765,16 @@ 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, - [63352] = 3, + [12953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7265), 18, + ACTIONS(6806), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -376246,16 +333788,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, 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(7263), 38, + sym_identifier, + ACTIONS(6804), 35, ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -376263,7 +333817,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -376279,21 +333832,15 @@ 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, - [63416] = 3, + [13023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7269), 18, + ACTIONS(5649), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -376307,16 +333854,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, 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(7267), 38, - ts_builtin_sym_end, + sym_literal_suffix, + ACTIONS(5647), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -376324,11 +333877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -376340,40 +333889,44 @@ 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, - [63480] = 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [13093] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6788), 1, + ACTIONS(6365), 1, anon_sym___attribute__, - STATE(3497), 1, + STATE(2705), 1, sym_attribute_specifier, - ACTIONS(6458), 12, + ACTIONS(6026), 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(6456), 42, + ACTIONS(6024), 50, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -376382,10 +333935,15 @@ 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___extension__, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -376396,6 +333954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -376412,108 +333971,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [63548] = 3, + sym_semgrep_metavar, + [13167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7273), 18, + ACTIONS(5374), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(7271), 38, + ACTIONS(5381), 51, ts_builtin_sym_end, 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___extension__, anon_sym___attribute__, + 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_DOT_STAR, - anon_sym_DASH_GT, - [63612] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1853), 1, - sym_string_literal, - ACTIONS(7209), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(7207), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(7205), 44, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -376524,61 +334020,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - 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_LT_EQ_GT, + anon_sym_or, + anon_sym_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, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [63680] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [13236] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7279), 1, - anon_sym_LT, - STATE(2974), 1, - sym_template_argument_list, - ACTIONS(7277), 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(7275), 37, - ts_builtin_sym_end, + ACTIONS(5431), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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___attribute__, - anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -376590,103 +334068,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_DOT_STAR, anon_sym_DASH_GT, - [63748] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6788), 1, - anon_sym___attribute__, - STATE(3500), 1, - sym_attribute_specifier, - ACTIONS(6494), 12, + ACTIONS(5429), 31, anon_sym_DASH, anon_sym_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_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(6492), 42, - 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___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_COLON, + 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_DOT, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [63816] = 5, + [13305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6788), 1, - anon_sym___attribute__, - STATE(3501), 1, - sym_attribute_specifier, - ACTIONS(6366), 12, + ACTIONS(6322), 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(6364), 42, + ACTIONS(6320), 51, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -376695,10 +334132,16 @@ 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___extension__, + anon_sym___attribute__, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -376709,6 +334152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -376725,12 +334169,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [63884] = 3, + sym_semgrep_metavar, + [13374] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7277), 18, + ACTIONS(5702), 1, + anon_sym_COLON, + ACTIONS(6808), 1, + anon_sym___attribute__, + ACTIONS(6810), 1, + anon_sym_LBRACE, + STATE(3195), 1, + sym_field_declaration_list, + STATE(3381), 1, + sym_attribute_specifier, + STATE(7869), 1, + sym_virtual_specifier, + STATE(9020), 1, + sym_base_class_clause, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5696), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -376740,32 +334201,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(7275), 38, - ts_builtin_sym_end, + ACTIONS(5694), 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___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -376773,7 +334228,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, @@ -376788,38 +334242,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [63948] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [13459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6668), 27, + ACTIONS(4763), 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_const, + anon_sym_DOT, + ACTIONS(4771), 51, + ts_builtin_sym_end, + 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_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_DOT, - sym_identifier, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - ACTIONS(6666), 29, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [13528] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(4789), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -376849,15 +334346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [64012] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7282), 1, - anon_sym_LT, - STATE(3363), 1, - sym_template_argument_list, - ACTIONS(7277), 25, - aux_sym_preproc_elif_token1, + ACTIONS(5938), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -376868,9 +334357,12 @@ 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___attribute__, anon_sym_EQ, + anon_sym_COLON, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -376882,75 +334374,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7275), 29, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [13599] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6284), 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(6282), 51, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + 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___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_DOT_STAR, anon_sym_DASH_GT, - [64080] = 5, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [13668] = 3, ACTIONS(3), 1, sym_comment, - STATE(1856), 1, - sym_string_literal, - ACTIONS(7209), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(7207), 6, + ACTIONS(6240), 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(6238), 51, + ts_builtin_sym_end, + 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(7205), 44, - anon_sym_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___extension__, - anon_sym_extern, anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -376961,184 +334491,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - 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_LT_EQ_GT, + anon_sym_or, + anon_sym_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, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [64148] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [13737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7287), 18, + ACTIONS(6244), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(7285), 38, + ACTIONS(6242), 51, ts_builtin_sym_end, 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___extension__, anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_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, - [64212] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [13806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4827), 27, + ACTIONS(6326), 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_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_const, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(4835), 29, + ACTIONS(6324), 51, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + 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___extension__, + anon_sym___attribute__, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_DOT_STAR, anon_sym_DASH_GT, - [64276] = 9, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [13875] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6801), 1, - anon_sym___attribute__, - ACTIONS(7247), 1, - anon_sym_LBRACE, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(3508), 1, - sym_enum_base_clause, - STATE(3766), 1, - sym_enumerator_list, - STATE(4208), 1, - sym_attribute_specifier, - ACTIONS(6225), 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(6227), 34, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5381), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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, @@ -377152,27 +334673,11 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [64352] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7103), 1, - anon_sym_LBRACK_LBRACK, - STATE(3253), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6884), 26, + anon_sym_DASH_GT, + ACTIONS(5374), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -377186,8 +334691,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, + anon_sym___attribute__, anon_sym_EQ, + anon_sym_COLON, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -377199,7 +334705,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6882), 27, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [13946] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5934), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -377211,6 +334724,9 @@ 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -377227,18 +334743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [64420] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7289), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7291), 1, - anon_sym_AMP_AMP, - ACTIONS(7293), 1, - anon_sym_or, - ACTIONS(7295), 1, - anon_sym_and, - ACTIONS(6372), 16, + ACTIONS(5936), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -377252,172 +334757,252 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6374), 36, - ts_builtin_sym_end, - 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_SEMI, anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_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_or, + anon_sym_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, - [64492] = 3, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [14015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 18, + ACTIONS(6288), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(7297), 38, + ACTIONS(6286), 51, ts_builtin_sym_end, 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___extension__, anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_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, - [64556] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [14084] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5218), 1, + anon_sym_LPAREN2, + ACTIONS(6533), 1, + sym_identifier, + ACTIONS(6543), 1, + anon_sym_LBRACK, + ACTIONS(6812), 1, + anon_sym_STAR, + ACTIONS(6814), 1, + anon_sym_AMP_AMP, + ACTIONS(6816), 1, + anon_sym_AMP, + STATE(4398), 1, + sym_parameter_list, + STATE(5969), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6740), 1, + sym_scope_resolution, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7349), 1, + sym_declarator, + STATE(7657), 1, + sym_abstract_declarator, + STATE(9168), 1, + sym_ms_based_modifier, + ACTIONS(3698), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(6535), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(3478), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(3875), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3696), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(7305), 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [14205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7303), 18, + ACTIONS(6292), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(7301), 38, + ACTIONS(6290), 51, ts_builtin_sym_end, 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___extension__, anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_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, - [64620] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [14274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5460), 19, + ACTIONS(5664), 27, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -377433,21 +335018,26 @@ 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(5467), 37, + sym_identifier, + sym_literal_suffix, + ACTIONS(5662), 34, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -377459,29 +335049,27 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, anon_sym_DOT_DOT_DOT_GT, - [64684] = 4, + [14343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5783), 1, - sym_literal_suffix, - ACTIONS(4837), 26, - aux_sym_preproc_elif_token1, + ACTIONS(5668), 27, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -377507,13 +335095,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4829), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + sym_literal_suffix, + ACTIONS(5666), 34, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -377537,72 +335120,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [64750] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DOT_DOT_DOT_GT, + [14412] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4837), 18, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(6818), 1, + anon_sym_LT, + STATE(2785), 1, + sym_template_argument_list, + ACTIONS(5374), 28, anon_sym_DASH, anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(5381), 30, + anon_sym_DOT_DOT_DOT, + 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, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [14487] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6260), 10, + 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_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_const, anon_sym_DOT, - ACTIONS(4829), 38, + ACTIONS(6258), 51, ts_builtin_sym_end, 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___extension__, anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_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, - [64814] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [14556] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7305), 27, - aux_sym_preproc_elif_token1, + STATE(2622), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6773), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4763), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -377628,20 +335302,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(7307), 29, + sym_auto, + anon_sym_decltype, + ACTIONS(4771), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_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, @@ -377659,45 +335334,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [64878] = 3, + [14629] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7311), 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(7309), 38, - ts_builtin_sym_end, + STATE(2689), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6820), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5651), 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_SEMI, - anon_sym___attribute__, - 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, @@ -377705,32 +335361,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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_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, - [64942] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2387), 1, - anon_sym_LBRACE, - ACTIONS(6720), 1, - anon_sym_LPAREN2, - STATE(3653), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6888), 25, + anon_sym_GT2, + ACTIONS(5653), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -377740,11 +335380,15 @@ 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___attribute__, anon_sym_EQ, + sym_primitive_type, + anon_sym_GT_GT_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -377756,17 +335400,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6886), 27, + sym_auto, + anon_sym_decltype, + [14702] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5438), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_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, @@ -377784,11 +335436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [65012] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6850), 27, - aux_sym_preproc_elif_token1, + ACTIONS(5433), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -377802,8 +335450,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, + anon_sym___attribute__, anon_sym_EQ, + anon_sym_COLON, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -377815,197 +335464,245 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6848), 29, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [14771] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6330), 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(6328), 51, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + 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_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_DOT_STAR, anon_sym_DASH_GT, - [65076] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [14840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7315), 18, + ACTIONS(6272), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(7313), 38, + ACTIONS(6270), 51, ts_builtin_sym_end, 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___extension__, anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_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, - [65140] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [14909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7075), 27, - aux_sym_preproc_elif_token1, + ACTIONS(6334), 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_LBRACK, - 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_const, anon_sym_DOT, - sym_identifier, - ACTIONS(7073), 29, + ACTIONS(6332), 51, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + 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_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_DOT_STAR, anon_sym_DASH_GT, - [65204] = 5, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [14978] = 3, ACTIONS(3), 1, sym_comment, - STATE(1855), 1, - sym_string_literal, - ACTIONS(7209), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(7207), 6, + ACTIONS(6195), 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(6193), 51, + ts_builtin_sym_end, + 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(7205), 44, - anon_sym_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___extension__, - anon_sym_extern, anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, + anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -378016,228 +335713,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [65272] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7173), 1, - anon_sym_AMP_AMP, - ACTIONS(7175), 1, - anon_sym_PIPE, - ACTIONS(7179), 1, - anon_sym_AMP, - ACTIONS(7185), 1, - anon_sym_GT_EQ, - ACTIONS(7191), 1, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(7195), 1, + anon_sym_or, anon_sym_and, - ACTIONS(7197), 1, anon_sym_bitor, - ACTIONS(7199), 1, + anon_sym_xor, anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7053), 2, - anon_sym_EQ, - anon_sym_or, - ACTIONS(7055), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7167), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [15047] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6338), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7177), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7187), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7169), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7181), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7183), 3, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 22, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6336), 51, ts_builtin_sym_end, 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___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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, - [65378] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7175), 1, - anon_sym_PIPE, - ACTIONS(7179), 1, - anon_sym_AMP, - ACTIONS(7185), 1, - anon_sym_GT_EQ, - ACTIONS(7191), 1, anon_sym_LT_EQ_GT, - ACTIONS(7197), 1, - anon_sym_bitor, - ACTIONS(7199), 1, - anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7055), 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(7167), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [15116] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5938), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7177), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7187), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7053), 3, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(7169), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7181), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7183), 3, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 23, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4789), 51, ts_builtin_sym_end, 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___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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, - [65480] = 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_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [15185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6268), 17, + ACTIONS(6296), 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_COLON, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6270), 39, + ACTIONS(6294), 51, + ts_builtin_sym_end, 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___extension__, anon_sym___attribute__, - anon_sym_COLON_COLON, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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, @@ -378248,43 +335923,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_DASH_GT_STAR, - [65544] = 3, + anon_sym_requires, + sym_semgrep_metavar, + [15254] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6672), 27, + ACTIONS(6248), 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_const, + anon_sym_DOT, + ACTIONS(6246), 51, + ts_builtin_sym_end, + 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_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_DOT, - sym_identifier, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - ACTIONS(6670), 29, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [15323] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5396), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -378296,6 +336011,7 @@ 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_QMARK, @@ -378314,10 +336030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [65608] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6588), 27, + ACTIONS(5394), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378331,7 +336044,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, + anon_sym_COLON, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -378345,18 +336060,30 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6586), 29, + anon_sym_final, + anon_sym_override, + [15392] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6823), 1, + sym_identifier, + ACTIONS(6827), 1, + sym_primitive_type, + STATE(2743), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6825), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5965), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_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, @@ -378366,7 +336093,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, @@ -378375,10 +336101,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [65672] = 3, + anon_sym_GT2, + ACTIONS(5969), 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_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + 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, + [15469] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7257), 18, + ACTIONS(6444), 1, + sym_literal_suffix, + STATE(2523), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(4814), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(4816), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4773), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378395,10 +336169,13 @@ static const uint16_t ts_small_parse_table[] = { 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, - ACTIONS(7255), 38, - ts_builtin_sym_end, + anon_sym_DASH_GT, + ACTIONS(4765), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -378408,12 +336185,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___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -378425,148 +336197,161 @@ 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, - [65736] = 3, + anon_sym_DASH_GT_STAR, + [15546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7319), 18, + ACTIONS(6090), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(7317), 38, + ACTIONS(6088), 51, ts_builtin_sym_end, 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___extension__, anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_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, - [65800] = 26, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [15615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(4789), 21, anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7006), 1, - anon_sym_EQ, - ACTIONS(7171), 1, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(7173), 1, anon_sym_AMP_AMP, - ACTIONS(7175), 1, - anon_sym_PIPE, - ACTIONS(7179), 1, - anon_sym_AMP, - ACTIONS(7185), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(7191), 1, + 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, - ACTIONS(7193), 1, - anon_sym_or, - ACTIONS(7195), 1, - anon_sym_and, - ACTIONS(7197), 1, - anon_sym_bitor, - ACTIONS(7199), 1, - anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7055), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7167), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(5938), 40, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7177), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7187), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7169), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7181), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7183), 3, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7008), 21, - ts_builtin_sym_end, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_final, + anon_sym_override, + [15684] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5400), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_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, @@ -378578,14 +336363,12 @@ 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, - [65910] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6197), 19, - anon_sym_DOT_DOT_DOT, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5398), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378599,38 +336382,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, + anon_sym_COLON, + 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, + anon_sym_final, + anon_sym_override, + [15753] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6276), 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(4853), 37, + ACTIONS(6274), 51, + ts_builtin_sym_end, + 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___extension__, anon_sym___attribute__, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -378641,11 +336464,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_DOT_DOT_DOT_GT, - [65974] = 3, + anon_sym_requires, + sym_semgrep_metavar, + [15822] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6310), 27, + ACTIONS(6411), 1, + anon_sym___attribute__, + ACTIONS(6829), 1, + anon_sym_LBRACE, + ACTIONS(6831), 1, + anon_sym_COLON, + STATE(2830), 1, + sym_enum_base_clause, + STATE(2867), 1, + sym_enumerator_list, + STATE(3007), 1, + sym_attribute_specifier, + ACTIONS(6514), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378673,7 +336509,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6308), 29, + ACTIONS(6516), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -378685,7 +336521,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, @@ -378703,10 +336538,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [66038] = 3, + [15903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7323), 18, + ACTIONS(5649), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378716,32 +336551,33 @@ 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(7321), 38, - ts_builtin_sym_end, + sym_literal_suffix, + ACTIONS(5647), 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___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -378749,58 +336585,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_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [66102] = 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [15972] = 3, ACTIONS(3), 1, sym_comment, - STATE(3040), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7127), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4827), 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(4835), 35, + ACTIONS(5423), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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, @@ -378815,81 +336634,60 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [66170] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7179), 1, - anon_sym_AMP, - ACTIONS(7185), 1, - anon_sym_GT_EQ, - ACTIONS(7191), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7199), 1, - anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7055), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7167), 2, + ACTIONS(5421), 31, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7177), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7187), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7169), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7181), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7183), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7053), 4, - anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, + anon_sym_COLON, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, - ACTIONS(7051), 24, - ts_builtin_sym_end, + 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, + [16041] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5404), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, 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_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -378901,14 +336699,12 @@ 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, - [66268] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7327), 18, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5402), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378922,54 +336718,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, + anon_sym_COLON, + 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, + anon_sym_final, + anon_sym_override, + [16110] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5989), 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(7325), 38, + ACTIONS(5987), 51, ts_builtin_sym_end, 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___extension__, anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_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, - [66332] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [16179] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6676), 27, + ACTIONS(6411), 1, + anon_sym___attribute__, + ACTIONS(6829), 1, + anon_sym_LBRACE, + ACTIONS(6831), 1, + anon_sym_COLON, + STATE(2822), 1, + sym_enum_base_clause, + STATE(2883), 1, + sym_enumerator_list, + STATE(3013), 1, + sym_attribute_specifier, + ACTIONS(6520), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378997,7 +336845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6674), 29, + ACTIONS(6522), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -379009,7 +336857,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, @@ -379027,10 +336874,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [66396] = 3, + [16260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5890), 18, + ACTIONS(5660), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -379040,32 +336887,33 @@ 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(5888), 38, - ts_builtin_sym_end, + sym_literal_suffix, + ACTIONS(5658), 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___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -379073,25 +336921,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_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [66460] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [16329] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6472), 18, + ACTIONS(5427), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5425), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -379105,136 +336988,322 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, + anon_sym_COLON, + 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, + anon_sym_final, + anon_sym_override, + [16398] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6342), 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(6474), 38, + ACTIONS(6340), 51, ts_builtin_sym_end, 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___extension__, anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_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, - [66524] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [16467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6596), 27, + ACTIONS(6300), 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_const, + anon_sym_DOT, + ACTIONS(6298), 51, + ts_builtin_sym_end, + 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_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_DOT, - sym_identifier, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - ACTIONS(6594), 29, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [16536] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6346), 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(6344), 51, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + 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___extension__, + anon_sym___attribute__, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_DOT_STAR, anon_sym_DASH_GT, - [66588] = 5, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [16605] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(6818), 1, + anon_sym_LT, + STATE(2785), 1, + sym_template_argument_list, + ACTIONS(5938), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(4789), 30, + anon_sym_DOT_DOT_DOT, + 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, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [16680] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7329), 1, - anon_sym_LT, - STATE(3012), 1, - sym_template_argument_list, - ACTIONS(7118), 25, + ACTIONS(6833), 1, + sym_identifier, + STATE(2736), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(3907), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3911), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5560), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_LT, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -379242,41 +337311,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(7116), 29, + sym_literal_suffix, + ACTIONS(5556), 30, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + 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, - [66656] = 3, + [16757] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6600), 27, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(6835), 1, + anon_sym_LT, + STATE(2759), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2794), 1, + sym_template_argument_list, + ACTIONS(6743), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4763), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -379287,29 +337370,18 @@ 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_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(6598), 29, + anon_sym_DASH_GT, + ACTIONS(4771), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -379329,16 +337401,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, - [66720] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [16836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6912), 27, - aux_sym_preproc_elif_token1, + ACTIONS(5649), 27, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -379352,7 +337432,6 @@ 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_and_eq, anon_sym_or_eq, @@ -379365,20 +337444,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6910), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + sym_literal_suffix, + ACTIONS(5647), 34, anon_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, @@ -379395,10 +337469,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [66784] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DOT_DOT_DOT_GT, + [16905] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5469), 19, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + STATE(1833), 1, + sym_template_argument_list, + STATE(2811), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6837), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6090), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -379408,31 +337504,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(5462), 37, + ACTIONS(6088), 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_LBRACK_LBRACK, + anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -379440,7 +337533,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, @@ -379455,175 +337547,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_try, - [66848] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [16982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7334), 18, + ACTIONS(6016), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(7332), 38, + ACTIONS(6018), 51, ts_builtin_sym_end, 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___extension__, anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_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, - [66912] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [17051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7338), 18, + ACTIONS(6256), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(7336), 38, + ACTIONS(6254), 51, ts_builtin_sym_end, 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___extension__, anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_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, - [66976] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3007), 1, - anon_sym_LBRACE, - ACTIONS(7235), 1, - anon_sym_LPAREN2, - ACTIONS(7237), 1, - anon_sym_LBRACK, - ACTIONS(7239), 1, sym_auto, - ACTIONS(7241), 1, anon_sym_decltype, - STATE(3858), 1, - sym_decltype_auto, - STATE(3889), 1, - sym_new_declarator, - STATE(4409), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6293), 19, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [17120] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5419), 30, anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(6289), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_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, @@ -379635,22 +337711,12 @@ 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, - anon_sym_DOT_DOT_DOT_GT, - [67056] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7342), 18, + ACTIONS(5417), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -379664,179 +337730,161 @@ 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, - ACTIONS(7340), 38, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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___attribute__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_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_or, + anon_sym_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, - [67120] = 3, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [17189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4837), 18, + ACTIONS(6216), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(4829), 38, + ACTIONS(6214), 51, ts_builtin_sym_end, 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___extension__, anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_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, - [67184] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [17258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 27, + ACTIONS(6220), 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_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_const, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6606), 29, + ACTIONS(6218), 51, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + 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___extension__, + anon_sym___attribute__, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_DOT_STAR, anon_sym_DASH_GT, - [67248] = 4, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [17327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7344), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6970), 27, - aux_sym_preproc_elif_token1, + ACTIONS(5660), 27, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -379850,7 +337898,6 @@ 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_and_eq, anon_sym_or_eq, @@ -379863,19 +337910,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6968), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + sym_literal_suffix, + ACTIONS(5658), 34, anon_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, @@ -379892,88 +337935,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [67314] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DOT_DOT_DOT_GT, + [17396] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6612), 27, + ACTIONS(6252), 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_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_const, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6610), 29, + ACTIONS(6250), 51, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + 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___extension__, + anon_sym___attribute__, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_DOT_STAR, anon_sym_DASH_GT, - [67378] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [17465] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6640), 27, + ACTIONS(6839), 1, + sym_identifier, + STATE(2718), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(3907), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3911), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5554), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_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, @@ -379981,257 +338050,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6638), 29, + sym_literal_suffix, + ACTIONS(5550), 30, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + 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_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, - [67442] = 3, + [17542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7348), 18, + ACTIONS(6401), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(7346), 38, + ACTIONS(6399), 51, ts_builtin_sym_end, 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___extension__, anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_DOT_STAR, - anon_sym_DASH_GT, - [67506] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6616), 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6614), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [67570] = 19, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [17611] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5218), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6533), 1, + sym_identifier, + ACTIONS(6543), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7179), 1, - anon_sym_AMP, - ACTIONS(7185), 1, - anon_sym_GT_EQ, - ACTIONS(7191), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7199), 1, - anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7055), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7167), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7187), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7169), 3, + ACTIONS(6841), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7181), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7183), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7053), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(7051), 24, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, + ACTIONS(6843), 1, + anon_sym_AMP_AMP, + ACTIONS(6845), 1, + anon_sym_AMP, + STATE(4330), 1, + sym_parameter_list, + STATE(5969), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6740), 1, + sym_scope_resolution, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7349), 1, + sym_declarator, + STATE(7675), 1, + sym_abstract_declarator, + STATE(9168), 1, + sym_ms_based_modifier, + ACTIONS(3698), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(6535), 2, 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, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_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, - [67666] = 3, + STATE(3327), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(3875), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3696), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(7305), 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [17732] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5460), 12, + ACTIONS(6224), 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(5467), 44, + ACTIONS(6222), 51, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -380240,11 +338267,16 @@ 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___extension__, anon_sym___attribute__, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -380272,212 +338304,237 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [67730] = 3, + sym_semgrep_metavar, + [17801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6592), 27, + ACTIONS(6199), 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_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_const, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6590), 29, + ACTIONS(6197), 51, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + 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___extension__, + anon_sym___attribute__, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_DOT_STAR, anon_sym_DASH_GT, - [67794] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [17870] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6920), 27, - aux_sym_preproc_elif_token1, + ACTIONS(6228), 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_LBRACK, - 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_const, anon_sym_DOT, - sym_identifier, - ACTIONS(6918), 29, + ACTIONS(6226), 51, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + 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_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_DOT_STAR, anon_sym_DASH_GT, - [67858] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [17939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6630), 27, + ACTIONS(6268), 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_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_const, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6628), 29, + ACTIONS(6266), 51, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + 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___extension__, + anon_sym___attribute__, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_DOT_STAR, anon_sym_DASH_GT, - [67922] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [18008] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6604), 27, + ACTIONS(6847), 1, + sym_identifier, + STATE(2736), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(6850), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6853), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5567), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_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, @@ -380485,86 +338542,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6602), 29, + sym_literal_suffix, + ACTIONS(5562), 30, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + 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_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, - [67986] = 4, + [18085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5460), 17, + ACTIONS(6314), 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_COLON, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5467), 38, + ACTIONS(6312), 51, + ts_builtin_sym_end, 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___extension__, anon_sym___attribute__, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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, @@ -380575,138 +338633,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_DASH_GT_STAR, - [68052] = 3, + anon_sym_requires, + sym_semgrep_metavar, + [18154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6496), 18, + ACTIONS(6318), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(6498), 38, + ACTIONS(6316), 51, ts_builtin_sym_end, 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___extension__, anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_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, - [68116] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [18223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3096), 18, + ACTIONS(5983), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(3094), 38, + ACTIONS(5981), 51, ts_builtin_sym_end, 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___extension__, anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_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, - [68180] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [18292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7139), 27, - aux_sym_preproc_elif_token1, + ACTIONS(5664), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -380716,12 +338785,13 @@ 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_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -380732,21 +338802,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(7137), 29, + sym_literal_suffix, + ACTIONS(5662), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_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, @@ -380754,7 +338819,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, @@ -380763,97 +338827,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [68244] = 26, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [18361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7173), 1, - anon_sym_AMP_AMP, - ACTIONS(7175), 1, - anon_sym_PIPE, - ACTIONS(7179), 1, - anon_sym_AMP, - ACTIONS(7185), 1, - anon_sym_GT_EQ, - ACTIONS(7191), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7193), 1, - anon_sym_or, - ACTIONS(7195), 1, - anon_sym_and, - ACTIONS(7197), 1, - anon_sym_bitor, - ACTIONS(7199), 1, - anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7055), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7167), 2, + ACTIONS(4763), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7177), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7187), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7169), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7181), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7183), 3, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7125), 21, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4771), 51, ts_builtin_sym_end, 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___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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, - [68354] = 4, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [18430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6197), 26, - aux_sym_preproc_elif_token1, + ACTIONS(5668), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -380863,11 +338917,13 @@ 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, @@ -380878,20 +338934,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(4853), 29, + sym_literal_suffix, + ACTIONS(5666), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_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, @@ -380900,7 +338951,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, @@ -380909,43 +338959,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [68420] = 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [18499] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6448), 1, - anon_sym___attribute__, - STATE(3592), 1, - sym_attribute_specifier, - ACTIONS(6454), 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(6452), 35, + STATE(2689), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5653), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(6820), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5975), 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_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -380955,27 +339000,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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [68488] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4827), 27, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(5978), 29, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -380985,11 +339019,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___attribute__, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -381000,104 +339037,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(4835), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [68552] = 3, + [18574] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7352), 18, + STATE(2663), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6856), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6147), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(7350), 38, - ts_builtin_sym_end, + ACTIONS(6145), 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_SEMI, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym___attribute__, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_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, - [68616] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [18646] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6684), 27, + ACTIONS(2371), 1, + anon_sym_LBRACE, + ACTIONS(6858), 1, + anon_sym_LPAREN2, + ACTIONS(6860), 1, + anon_sym_LBRACK, + ACTIONS(6862), 1, + sym_auto, + ACTIONS(6864), 1, + anon_sym_decltype, + STATE(3004), 1, + sym_decltype_auto, + STATE(3079), 1, + sym_new_declarator, + STATE(3410), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5878), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -381123,22 +339152,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6682), 29, + ACTIONS(5876), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_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, @@ -381155,45 +339179,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [68680] = 3, + [18730] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7356), 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(7354), 38, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(2746), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6866), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5651), 25, anon_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___attribute__, - 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, @@ -381205,21 +339209,14 @@ 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, - [68744] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6688), 27, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(5653), 30, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -381233,7 +339230,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, + sym_primitive_type, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -381247,7 +339246,10 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6686), 29, + [18802] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4789), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -381261,6 +339263,7 @@ 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, @@ -381277,14 +339280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [68808] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6448), 1, - anon_sym___attribute__, - STATE(3594), 1, - sym_attribute_specifier, - ACTIONS(6322), 19, + ACTIONS(5938), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -381298,52 +339294,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6320), 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_or, + anon_sym_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_DOT, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [68876] = 3, + anon_sym_final, + anon_sym_override, + [18870] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7360), 18, + STATE(2749), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6869), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6090), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -381362,8 +339340,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7358), 38, - ts_builtin_sym_end, + anon_sym_DASH_GT, + ACTIONS(6088), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -381373,12 +339351,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___attribute__, - 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, @@ -381400,11 +339375,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [68940] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [18942] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 18, + STATE(2557), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6871), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6130), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -381423,8 +339407,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(2191), 38, - ts_builtin_sym_end, + anon_sym_DASH_GT, + ACTIONS(6128), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -381434,12 +339418,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___attribute__, - 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, @@ -381461,72 +339442,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [69004] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [19014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6694), 27, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(6875), 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(6873), 54, anon_sym_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___extension__, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6692), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [69068] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [19082] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6572), 27, + ACTIONS(2371), 1, + anon_sym_LBRACE, + ACTIONS(6858), 1, + anon_sym_LPAREN2, + ACTIONS(6860), 1, + anon_sym_LBRACK, + ACTIONS(6862), 1, + sym_auto, + ACTIONS(6864), 1, + anon_sym_decltype, + STATE(3004), 1, + sym_decltype_auto, + STATE(3084), 1, + sym_new_declarator, + STATE(3425), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5807), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -381552,22 +339556,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6570), 29, + ACTIONS(5805), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_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, @@ -381584,37 +339583,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [69132] = 5, + [19166] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6448), 1, - anon_sym___attribute__, - STATE(3595), 1, - sym_attribute_specifier, - ACTIONS(6458), 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(6456), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(2746), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5653), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(6866), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5975), 25, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -381634,27 +339616,14 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [69200] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6448), 1, - anon_sym___attribute__, - STATE(3596), 1, - sym_attribute_specifier, - ACTIONS(6462), 19, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(5978), 28, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -381668,52 +339637,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6460), 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_or, + anon_sym_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_DOT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [69268] = 3, + [19240] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7305), 25, + ACTIONS(5649), 24, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -381728,9 +339669,6 @@ 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, @@ -381738,9 +339676,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, sym_literal_suffix, - ACTIONS(7307), 31, - ts_builtin_sym_end, + ACTIONS(5647), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -381750,11 +339689,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, @@ -381770,11 +339705,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [69332] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DASH_GT_STAR, + [19308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6658), 27, + ACTIONS(5664), 24, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -381789,9 +339734,6 @@ 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, @@ -381799,22 +339741,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, + anon_sym_DASH_GT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6656), 29, + sym_literal_suffix, + ACTIONS(5662), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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, @@ -381831,19 +339770,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [69396] = 7, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DASH_GT_STAR, + [19376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5467), 1, - anon_sym_LBRACE, - ACTIONS(7362), 1, - anon_sym_LT, - STATE(3361), 1, - sym_template_argument_list, - ACTIONS(5469), 24, + ACTIONS(5668), 24, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -381854,12 +339795,10 @@ 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -381867,13 +339806,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, + anon_sym_DASH_GT, sym_identifier, - ACTIONS(5462), 28, + sym_literal_suffix, + ACTIONS(5666), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -381896,45 +339835,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [69468] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DASH_GT_STAR, + [19444] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7245), 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(7243), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6877), 1, + sym_identifier, + ACTIONS(6881), 1, + sym_primitive_type, + STATE(2752), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6879), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5965), 25, anon_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, @@ -381946,22 +339880,14 @@ 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, - anon_sym_try, - [69532] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6522), 27, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(5969), 28, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -381975,6 +339901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -381986,109 +339913,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6520), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [69596] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7077), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7173), 1, - anon_sym_AMP_AMP, - ACTIONS(7175), 1, - anon_sym_PIPE, - ACTIONS(7179), 1, - anon_sym_AMP, - ACTIONS(7185), 1, - anon_sym_GT_EQ, - ACTIONS(7191), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7193), 1, - anon_sym_or, - ACTIONS(7195), 1, - anon_sym_and, - ACTIONS(7197), 1, - anon_sym_bitor, - ACTIONS(7199), 1, - anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7055), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7167), 2, + sym_auto, + anon_sym_decltype, + [19520] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(6883), 1, + anon_sym_LT, + STATE(2794), 1, + sym_template_argument_list, + ACTIONS(5374), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7177), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7187), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7169), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7181), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7183), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7079), 21, - ts_builtin_sym_end, + 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(5381), 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -382103,65 +339971,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [69706] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7185), 1, - anon_sym_GT_EQ, - ACTIONS(7191), 1, anon_sym_LT_EQ_GT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7055), 2, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7167), 2, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [19594] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5660), 24, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7187), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7169), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7181), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7183), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7053), 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, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - ACTIONS(7051), 25, - ts_builtin_sym_end, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + sym_literal_suffix, + ACTIONS(5658), 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_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + 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, @@ -382173,15 +340033,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_bitor, - anon_sym_bitand, - [69798] = 3, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DASH_GT_STAR, + [19662] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5518), 17, + STATE(2557), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6871), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6147), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382196,10 +340073,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(5525), 39, + ACTIONS(6145), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -382210,7 +340089,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym___attribute__, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -382224,11 +340102,11 @@ 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_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -382236,13 +340114,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_DASH_GT_STAR, - [69862] = 3, + [19734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7367), 18, + ACTIONS(5660), 26, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382257,27 +340134,25 @@ 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(7365), 38, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + sym_literal_suffix, + ACTIONS(5658), 34, anon_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___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -382289,21 +340164,39 @@ 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, - [69926] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DOT_DOT_DOT_GT, + [19802] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5469), 18, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(6886), 1, + anon_sym_LT, + STATE(2811), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2862), 1, + sym_template_argument_list, + ACTIONS(6837), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4763), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382313,32 +340206,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(5462), 38, - ts_builtin_sym_end, + ACTIONS(4771), 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___attribute__, - 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, @@ -382346,7 +340233,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, @@ -382361,13 +340247,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [69990] = 4, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [19880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5460), 26, - aux_sym_preproc_elif_token1, + ACTIONS(5374), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382381,6 +340267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -382393,20 +340280,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5467), 29, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(5381), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_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, @@ -382423,11 +340315,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [70056] = 3, + [19948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6268), 26, - aux_sym_preproc_elif_token1, + ACTIONS(5668), 26, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382452,21 +340344,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6270), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + sym_literal_suffix, + ACTIONS(5666), 34, anon_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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -382484,10 +340369,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [70120] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DOT_DOT_DOT_GT, + [20016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7371), 18, + ACTIONS(5664), 26, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382502,27 +340399,25 @@ 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(7369), 38, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + sym_literal_suffix, + ACTIONS(5662), 34, anon_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___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -382534,21 +340429,268 @@ 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, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DOT_DOT_DOT_GT, + [20084] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5218), 1, + anon_sym_LPAREN2, + ACTIONS(5220), 1, + anon_sym_STAR, + ACTIONS(5222), 1, + anon_sym_AMP_AMP, + ACTIONS(5224), 1, + anon_sym_AMP, + ACTIONS(5741), 1, + sym_identifier, + ACTIONS(6535), 1, + anon_sym_RPAREN, + ACTIONS(6543), 1, + anon_sym_LBRACK, + STATE(4330), 1, + sym_parameter_list, + STATE(5969), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6786), 1, + sym_scope_resolution, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7440), 1, + sym_declarator, + STATE(7675), 1, + sym_abstract_declarator, + STATE(9481), 1, + sym_ms_based_modifier, + ACTIONS(3698), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3532), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(3706), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3696), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(7305), 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [20204] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2663), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6856), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6056), 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(6054), 43, + 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___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [20276] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2663), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6856), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6130), 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(6128), 43, + 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___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_DOT_STAR, anon_sym_DASH_GT, - [70184] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [20348] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6644), 27, + ACTIONS(2371), 1, + anon_sym_LBRACE, + ACTIONS(6858), 1, + anon_sym_LPAREN2, + ACTIONS(6860), 1, + anon_sym_LBRACK, + ACTIONS(6862), 1, + sym_auto, + ACTIONS(6864), 1, + anon_sym_decltype, + STATE(3004), 1, + sym_decltype_auto, + STATE(3090), 1, + sym_new_declarator, + STATE(3437), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5759), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382574,22 +340716,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6642), 29, + ACTIONS(5757), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_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, @@ -382606,10 +340743,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [70248] = 3, + [20432] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6654), 27, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + STATE(1833), 1, + sym_template_argument_list, + STATE(2881), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6888), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6090), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382624,31 +340773,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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6652), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(6088), 34, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -382662,67 +340798,217 @@ 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, - [70312] = 7, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [20508] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, + STATE(2767), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6890), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6090), 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(6088), 43, + 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___extension__, anon_sym___attribute__, - ACTIONS(6951), 1, anon_sym_LBRACE, - STATE(3353), 1, - sym_enumerator_list, - STATE(3710), 1, - sym_attribute_specifier, - ACTIONS(6239), 20, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [20580] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2663), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6856), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6066), 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(6064), 43, + 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___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [20652] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5702), 1, + anon_sym_COLON, + ACTIONS(6892), 1, + anon_sym___attribute__, + ACTIONS(6894), 1, + anon_sym_LBRACE, + STATE(3114), 1, + sym_field_declaration_list, + STATE(3266), 1, + sym_attribute_specifier, + STATE(8051), 1, + sym_virtual_specifier, + STATE(8792), 1, + sym_base_class_clause, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5696), 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(6237), 32, + ACTIONS(5694), 39, 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___extension__, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -382732,10 +341018,12 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [70384] = 3, + anon_sym_requires, + [20736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6410), 18, + ACTIONS(5649), 26, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382750,27 +341038,25 @@ 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(6412), 38, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + sym_literal_suffix, + ACTIONS(5647), 34, anon_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___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -382782,21 +341068,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, - [70448] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DOT_DOT_DOT_GT, + [20804] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6345), 18, + STATE(2780), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6896), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6185), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382815,8 +341113,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6347), 38, - ts_builtin_sym_end, + anon_sym_DASH_GT, + ACTIONS(6183), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -382826,12 +341124,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___attribute__, - 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, @@ -382853,12 +341148,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [70512] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [20876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6810), 27, - aux_sym_preproc_elif_token1, + ACTIONS(6900), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(6898), 54, + anon_sym_AMP, + anon_sym___extension__, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + 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_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [20944] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2783), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6902), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6158), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382872,33 +341240,25 @@ 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_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, - ACTIONS(6808), 29, + anon_sym_DASH_GT, + ACTIONS(6156), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_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___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -382910,20 +341270,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_DOT_STAR, - anon_sym_DASH_GT, - [70576] = 5, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [21016] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7373), 1, - anon_sym_LBRACK_LBRACK, - STATE(3253), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6831), 26, + ACTIONS(2371), 1, + anon_sym_LBRACE, + ACTIONS(6858), 1, + anon_sym_LPAREN2, + ACTIONS(6860), 1, + anon_sym_LBRACK, + ACTIONS(6862), 1, + sym_auto, + ACTIONS(6864), 1, + anon_sym_decltype, + STATE(3004), 1, + sym_decltype_auto, + STATE(3075), 1, + sym_new_declarator, + STATE(3400), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5830), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382937,7 +341317,6 @@ 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_and_eq, anon_sym_or_eq, @@ -382950,13 +341329,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6829), 27, + ACTIONS(5828), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -382978,135 +341356,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [70644] = 4, + [21100] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7376), 1, - anon_sym_LPAREN2, - ACTIONS(2183), 18, + STATE(2766), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6904), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6185), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(2185), 37, - ts_builtin_sym_end, + ACTIONS(6183), 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_SEMI, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym___attribute__, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_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, - [70710] = 5, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [21172] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7291), 1, - anon_sym_AMP_AMP, - ACTIONS(7295), 1, - anon_sym_and, - ACTIONS(6414), 17, + STATE(2771), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6906), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6158), 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_or, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(6416), 37, - ts_builtin_sym_end, + ACTIONS(6156), 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_SEMI, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym___attribute__, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_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, - [70778] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [21244] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6418), 18, + STATE(2557), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6871), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6056), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -383125,8 +341519,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6420), 38, - ts_builtin_sym_end, + anon_sym_DASH_GT, + ACTIONS(6054), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -383136,12 +341530,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___attribute__, - 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, @@ -383163,74 +341554,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [70842] = 5, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [21316] = 6, ACTIONS(3), 1, sym_comment, - STATE(3257), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7378), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5699), 20, - aux_sym_preproc_elif_token1, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(6835), 1, + anon_sym_LT, + STATE(2794), 1, + sym_template_argument_list, + ACTIONS(5938), 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, - sym_primitive_type, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + 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, - ACTIONS(5697), 31, - ts_builtin_sym_end, + anon_sym_DASH_GT, + ACTIONS(4789), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - 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___attribute__, 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_DOT_STAR, - anon_sym_DASH_GT, - [70910] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [21390] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7383), 18, + ACTIONS(5702), 1, + anon_sym_COLON, + ACTIONS(6908), 1, + anon_sym___attribute__, + ACTIONS(6910), 1, + anon_sym_LBRACE, + STATE(3316), 1, + sym_field_declaration_list, + STATE(3686), 1, + sym_attribute_specifier, + STATE(7841), 1, + sym_virtual_specifier, + STATE(8662), 1, + sym_base_class_clause, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5696), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -383249,23 +341665,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7381), 38, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5694), 32, anon_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___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -383288,10 +341695,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [70974] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [21474] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6500), 18, + STATE(2557), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6871), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6066), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -383310,8 +341727,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6502), 38, - ts_builtin_sym_end, + anon_sym_DASH_GT, + ACTIONS(6064), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -383321,12 +341738,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___attribute__, - 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, @@ -383348,11 +341762,534 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [71038] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [21546] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6914), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(6912), 54, + anon_sym_AMP, + anon_sym___extension__, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + 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_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [21614] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(5438), 31, + anon_sym_DOT_DOT_DOT, + 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, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [21681] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5425), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(5427), 31, + anon_sym_DOT_DOT_DOT, + 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, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [21748] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5421), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(5423), 31, + anon_sym_DOT_DOT_DOT, + 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, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [21815] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5938), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(4789), 30, + anon_sym_DOT_DOT_DOT, + 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, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [21884] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5429), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(5431), 31, + anon_sym_DOT_DOT_DOT, + 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, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [21951] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5374), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(5381), 31, + anon_sym_DOT_DOT_DOT, + 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, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [22018] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6916), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(6918), 31, + anon_sym_DOT_DOT_DOT, + 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, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [22085] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7387), 18, + STATE(2689), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6920), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6056), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -383362,32 +342299,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_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7385), 38, - ts_builtin_sym_end, + ACTIONS(6054), 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___attribute__, - 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, @@ -383395,7 +342328,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, @@ -383410,79 +342342,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [71102] = 28, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [22156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7081), 1, - anon_sym_EQ, - ACTIONS(7165), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7171), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7173), 1, - anon_sym_AMP_AMP, - ACTIONS(7175), 1, - anon_sym_PIPE, - ACTIONS(7179), 1, - anon_sym_AMP, - ACTIONS(7185), 1, - anon_sym_GT_EQ, - ACTIONS(7189), 1, - anon_sym_QMARK, - ACTIONS(7191), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7193), 1, - anon_sym_or, - ACTIONS(7195), 1, - anon_sym_and, - ACTIONS(7197), 1, - anon_sym_bitor, - ACTIONS(7199), 1, - anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7055), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7167), 2, + ACTIONS(5936), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7177), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7187), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7169), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7181), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7183), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7083), 19, - ts_builtin_sym_end, + 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(5934), 39, + 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___attribute__, + 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, @@ -383496,10 +342397,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [71216] = 3, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [22223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7391), 18, + ACTIONS(5433), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -383514,12 +342427,13 @@ 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(7389), 38, - ts_builtin_sym_end, + anon_sym_DASH_GT, + ACTIONS(5438), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -383529,12 +342443,10 @@ 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___attribute__, - anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -383556,12 +342468,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [71280] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [22290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 27, - aux_sym_preproc_elif_token1, + ACTIONS(5660), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -383575,11 +342490,7 @@ 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -383587,21 +342498,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6862), 29, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(5658), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_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, @@ -383617,11 +342526,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [71344] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DASH_GT_STAR, + [22357] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4261), 18, + STATE(2689), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6920), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6066), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -383631,32 +342557,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_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4259), 38, - ts_builtin_sym_end, + ACTIONS(6064), 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___attribute__, - 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, @@ -383664,7 +342586,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, @@ -383679,10 +342600,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [71408] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [22428] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6970), 18, + STATE(2827), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6922), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6090), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -383692,32 +342623,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_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6968), 38, - ts_builtin_sym_end, + ACTIONS(6088), 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___attribute__, - 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, @@ -383725,7 +342652,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, @@ -383740,10 +342666,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [71472] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [22499] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5417), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(5419), 31, + anon_sym_DOT_DOT_DOT, + 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, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [22566] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6349), 18, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + STATE(1833), 1, + sym_template_argument_list, + STATE(2904), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6924), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6090), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -383758,12 +342762,9 @@ 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(6351), 38, - ts_builtin_sym_end, + anon_sym_DASH_GT, + ACTIONS(6088), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -383773,12 +342774,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___attribute__, - 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, @@ -383790,28 +342788,101 @@ 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_or, + anon_sym_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, - [71536] = 6, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [22641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2387), 1, - anon_sym_LBRACE, - ACTIONS(6720), 1, + ACTIONS(3185), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(3187), 31, + anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, - STATE(3671), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6908), 25, + 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, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [22708] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(6926), 1, + anon_sym_LT, + STATE(2881), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2930), 1, + sym_template_argument_list, + ACTIONS(6888), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4763), 18, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -383822,32 +342893,21 @@ 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_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, - ACTIONS(6906), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(4771), 33, + anon_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, @@ -383860,102 +342920,94 @@ 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, - [71606] = 28, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [22785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7093), 1, - anon_sym_EQ, - ACTIONS(7165), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7171), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7173), 1, - anon_sym_AMP_AMP, - ACTIONS(7175), 1, - anon_sym_PIPE, - ACTIONS(7179), 1, - anon_sym_AMP, - ACTIONS(7185), 1, - anon_sym_GT_EQ, - ACTIONS(7189), 1, - anon_sym_QMARK, - ACTIONS(7191), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7193), 1, - anon_sym_or, - ACTIONS(7195), 1, - anon_sym_and, - ACTIONS(7197), 1, - anon_sym_bitor, - ACTIONS(7199), 1, - anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7055), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7167), 2, + ACTIONS(6928), 28, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7177), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7187), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7169), 3, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(6930), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7181), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7183), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7095), 19, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [71720] = 3, + 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, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [22852] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5518), 26, - aux_sym_preproc_elif_token1, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(6886), 1, + anon_sym_LT, + STATE(2862), 1, + sym_template_argument_list, + ACTIONS(5938), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -383965,36 +343017,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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + 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, - sym_identifier, - ACTIONS(5525), 30, + ACTIONS(4789), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_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___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -384003,19 +343046,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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_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, - [71784] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [22925] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6356), 18, + STATE(2749), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6869), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4763), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -384034,8 +343094,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6358), 38, - ts_builtin_sym_end, + anon_sym_DASH_GT, + ACTIONS(4771), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -384045,12 +343105,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___attribute__, - 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, @@ -384072,11 +343128,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [71848] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [22996] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 17, + ACTIONS(5702), 1, + anon_sym_COLON, + ACTIONS(6932), 1, + anon_sym___attribute__, + ACTIONS(6934), 1, + anon_sym_LBRACE, + STATE(3321), 1, + sym_field_declaration_list, + STATE(3920), 1, + sym_attribute_specifier, + STATE(8127), 1, + sym_virtual_specifier, + STATE(9010), 1, + sym_base_class_clause, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5696), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -384091,10 +343166,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(5479), 39, + ACTIONS(5694), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -384104,9 +343178,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -384131,31 +343202,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_DASH_GT_STAR, - [71912] = 3, + [23079] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5481), 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(5483), 39, + STATE(2806), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6936), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5651), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -384165,8 +343223,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -384181,24 +343237,108 @@ 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_DOT_STAR, + anon_sym_DASH_GT_STAR, + ACTIONS(5653), 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___attribute__, + 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [71976] = 3, + [23150] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6939), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(6941), 31, + anon_sym_DOT_DOT_DOT, + 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, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [23217] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 17, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5938), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -384214,9 +343354,12 @@ static const uint16_t ts_small_parse_table[] = { 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(5502), 39, + ACTIONS(4789), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -384227,7 +343370,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym___attribute__, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -384241,11 +343383,11 @@ 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_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -384256,10 +343398,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_DASH_GT_STAR, - [72040] = 3, + [23286] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3181), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(3183), 31, + anon_sym_DOT_DOT_DOT, + 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, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [23353] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5394), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(5396), 31, + anon_sym_DOT_DOT_DOT, + 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, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [23420] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 17, + STATE(2689), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6920), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6147), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -384269,26 +343546,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_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5498), 39, + ACTIONS(6145), 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___attribute__, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -384298,29 +343575,103 @@ 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_or, - anon_sym_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, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [72104] = 3, + anon_sym_GT2, + [23491] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5398), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(5400), 31, + anon_sym_DOT_DOT_DOT, + 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, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [23558] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5507), 17, + ACTIONS(6693), 1, + anon_sym___attribute__, + ACTIONS(6943), 1, + anon_sym_LBRACE, + ACTIONS(6945), 1, + anon_sym_COLON, + STATE(2964), 1, + sym_enum_base_clause, + STATE(2993), 1, + sym_enumerator_list, + STATE(3236), 1, + sym_attribute_specifier, + ACTIONS(6520), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -384335,10 +343686,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(5509), 39, + ACTIONS(6522), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -384348,9 +343701,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -384363,11 +343713,11 @@ 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_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -384375,13 +343725,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_DASH_GT_STAR, - [72168] = 3, + [23637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5511), 17, + ACTIONS(5649), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -384396,10 +343744,16 @@ 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_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5513), 39, + sym_literal_suffix, + ACTIONS(5647), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -384409,9 +343763,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -384425,25 +343776,31 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, anon_sym_DASH_GT_STAR, - [72232] = 3, + [23704] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6868), 27, - aux_sym_preproc_elif_token1, + STATE(2792), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6947), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6185), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -384453,37 +343810,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_and_eq, - anon_sym_or_eq, - anon_sym_xor_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, - sym_identifier, - ACTIONS(6866), 29, + ACTIONS(6183), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_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___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -384491,19 +343839,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_DOT_STAR, anon_sym_DASH_GT, - [72296] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [23775] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5456), 17, + STATE(2796), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6949), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6158), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -384513,26 +343876,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_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5458), 39, + ACTIONS(6156), 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___attribute__, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -384542,81 +343905,133 @@ 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_or, - anon_sym_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, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [72360] = 16, + anon_sym_GT2, + [23846] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5374), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(5381), 30, + anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, - ACTIONS(7000), 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(7002), 1, - anon_sym_DOT, - ACTIONS(7185), 1, - anon_sym_GT_EQ, - ACTIONS(7191), 1, - anon_sym_LT_EQ_GT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7055), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7167), 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, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [23915] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5381), 1, + anon_sym_LBRACE, + ACTIONS(5931), 1, + anon_sym_LT, + STATE(2485), 1, + sym_template_argument_list, + ACTIONS(5383), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7187), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7169), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7183), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7053), 7, 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, - ACTIONS(7051), 28, + anon_sym_DOT, + ACTIONS(5376), 37, ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_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___attribute__, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -384632,13 +344047,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [72450] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [23990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 18, + ACTIONS(5664), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -384655,10 +344075,14 @@ static const uint16_t ts_small_parse_table[] = { 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, - ACTIONS(7393), 38, - ts_builtin_sym_end, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(5662), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -384668,12 +344092,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___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -384685,72 +344104,60 @@ 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, - [72514] = 14, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DASH_GT_STAR, + [24057] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7191), 1, - anon_sym_LT_EQ_GT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7055), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7167), 2, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5374), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7187), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7169), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7053), 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_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(7051), 29, - ts_builtin_sym_end, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5381), 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_RBRACE, - anon_sym_RBRACK, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -384765,99 +344172,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - [72600] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6788), 1, - anon_sym___attribute__, - STATE(3479), 1, - sym_attribute_specifier, - ACTIONS(6388), 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(6386), 42, - 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___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [72668] = 12, + anon_sym_DASH_GT_STAR, + [24126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5936), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(5934), 31, + anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, - ACTIONS(7000), 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(7002), 1, - anon_sym_DOT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7055), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7167), 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, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [24193] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6411), 1, + anon_sym___attribute__, + ACTIONS(6829), 1, + anon_sym_LBRACE, + STATE(2841), 1, + sym_enumerator_list, + STATE(3029), 1, + sym_attribute_specifier, + ACTIONS(5989), 27, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7169), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7053), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -384867,22 +344274,32 @@ 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, - ACTIONS(7051), 30, - ts_builtin_sym_end, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5987), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_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, @@ -384894,80 +344311,15 @@ 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, - [72750] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6788), 1, - anon_sym___attribute__, - STATE(3483), 1, - sym_attribute_specifier, - ACTIONS(6392), 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(6390), 42, - 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___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [72818] = 3, + [24268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7399), 18, + ACTIONS(5668), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -384984,10 +344336,14 @@ static const uint16_t ts_small_parse_table[] = { 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, - ACTIONS(7397), 38, - ts_builtin_sym_end, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(5666), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -384997,12 +344353,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___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -385014,43 +344365,169 @@ 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, - [72882] = 11, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DASH_GT_STAR, + [24335] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6951), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(6953), 31, + anon_sym_DOT_DOT_DOT, + 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, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [24402] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6955), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(6957), 31, + anon_sym_DOT_DOT_DOT, + 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, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [24469] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7055), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7169), 3, + ACTIONS(6959), 1, + sym_identifier, + ACTIONS(6963), 1, + sym_primitive_type, + STATE(2833), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6961), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5969), 25, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7053), 14, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -385059,23 +344536,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - ACTIONS(7051), 30, - ts_builtin_sym_end, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + ACTIONS(5965), 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_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -385087,66 +344571,53 @@ 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, - [72962] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7055), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7167), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [24544] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2689), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6920), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6130), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7187), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7169), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7053), 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_or, anon_sym_and, anon_sym_xor, - ACTIONS(7051), 30, - ts_builtin_sym_end, + anon_sym_DOT, + ACTIONS(6128), 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___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -385154,7 +344625,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, @@ -385165,28 +344635,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [73046] = 11, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [24615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3007), 1, - anon_sym_LBRACE, - ACTIONS(7235), 1, - anon_sym_LPAREN2, - ACTIONS(7237), 1, - anon_sym_LBRACK, - ACTIONS(7239), 1, - sym_auto, - ACTIONS(7241), 1, + ACTIONS(5938), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, anon_sym_decltype, - STATE(3816), 1, - sym_new_declarator, - STATE(3858), 1, - sym_decltype_auto, - STATE(4445), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6318), 19, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(4789), 31, anon_sym_DOT_DOT_DOT, + 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, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [24682] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(6965), 1, + anon_sym_LT, + STATE(2862), 1, + sym_template_argument_list, + ACTIONS(5374), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -385196,21 +344725,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_COLON, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6316), 28, + ACTIONS(5381), 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_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -385218,7 +344754,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, @@ -385233,18 +344768,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [73126] = 6, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [24755] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2387), 1, + ACTIONS(6411), 1, + anon_sym___attribute__, + ACTIONS(6829), 1, anon_sym_LBRACE, - ACTIONS(6720), 1, - anon_sym_LPAREN2, - STATE(3672), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6916), 25, + STATE(2886), 1, + sym_enumerator_list, + STATE(3015), 1, + sym_attribute_specifier, + ACTIONS(5983), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -385270,12 +344810,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6914), 27, + sym_auto, + anon_sym_decltype, + ACTIONS(5981), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -385298,10 +344841,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [73196] = 3, + [24830] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7403), 18, + ACTIONS(6693), 1, + anon_sym___attribute__, + ACTIONS(6943), 1, + anon_sym_LBRACE, + ACTIONS(6945), 1, + anon_sym_COLON, + STATE(2915), 1, + sym_enum_base_clause, + STATE(2989), 1, + sym_enumerator_list, + STATE(3206), 1, + sym_attribute_specifier, + ACTIONS(6514), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -385320,8 +344875,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7401), 38, - ts_builtin_sym_end, + anon_sym_DASH_GT, + ACTIONS(6516), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -385331,12 +344886,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___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -385358,11 +344908,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [73260] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [24909] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5402), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(5404), 31, + anon_sym_DOT_DOT_DOT, + 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, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [24976] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7407), 18, + STATE(2806), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5653), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(6936), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5978), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -385376,13 +345002,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, 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, - ACTIONS(7405), 38, - ts_builtin_sym_end, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + ACTIONS(5975), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -385392,12 +345024,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___attribute__, - 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, @@ -385409,168 +345037,98 @@ 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, - [73324] = 5, + anon_sym_DASH_GT_STAR, + [25049] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6448), 1, - anon_sym___attribute__, - STATE(3600), 1, - sym_attribute_specifier, - ACTIONS(6494), 19, + STATE(2767), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6890), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4763), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6492), 35, + ACTIONS(4771), 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___extension__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_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, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [73392] = 26, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [25120] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(2658), 1, + anon_sym_LBRACE, + ACTIONS(6968), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6970), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7085), 1, - anon_sym_EQ, - ACTIONS(7171), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7173), 1, - anon_sym_AMP_AMP, - ACTIONS(7175), 1, - anon_sym_PIPE, - ACTIONS(7179), 1, - anon_sym_AMP, - ACTIONS(7185), 1, - anon_sym_GT_EQ, - ACTIONS(7191), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7193), 1, - anon_sym_or, - ACTIONS(7195), 1, - anon_sym_and, - ACTIONS(7197), 1, - anon_sym_bitor, - ACTIONS(7199), 1, - anon_sym_bitand, - STATE(3181), 1, + ACTIONS(6972), 1, + sym_auto, + ACTIONS(6974), 1, + anon_sym_decltype, + STATE(3218), 1, + sym_new_declarator, + STATE(3282), 1, + sym_decltype_auto, + STATE(3721), 2, sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7055), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7167), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7177), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7187), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7169), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7181), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7183), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7087), 21, - ts_builtin_sym_end, - 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, - [73502] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7411), 18, + sym_initializer_list, + ACTIONS(5878), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -385589,23 +345147,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7409), 38, - ts_builtin_sym_end, + anon_sym_DASH_GT, + ACTIONS(5876), 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___attribute__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -385627,11 +345178,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [73566] = 3, + anon_sym_DASH_GT_STAR, + [25202] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7415), 18, + ACTIONS(6411), 1, + anon_sym___attribute__, + STATE(3032), 1, + sym_attribute_specifier, + ACTIONS(6074), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -385646,27 +345201,33 @@ 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(7413), 38, - ts_builtin_sym_end, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6072), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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___attribute__, - 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, @@ -385678,29 +345239,27 @@ 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, - [73630] = 7, + [25272] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, + ACTIONS(6808), 1, anon_sym___attribute__, - ACTIONS(6951), 1, + ACTIONS(6976), 1, anon_sym_LBRACE, - STATE(3457), 1, + ACTIONS(6978), 1, + anon_sym_COLON, + STATE(3040), 1, + sym_enum_base_clause, + STATE(3139), 1, sym_enumerator_list, - STATE(3734), 1, + STATE(3435), 1, sym_attribute_specifier, - ACTIONS(6310), 20, + ACTIONS(6520), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -385721,7 +345280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6308), 32, + ACTIONS(6522), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -385754,150 +345313,145 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [73702] = 3, + [25350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6504), 18, + ACTIONS(5398), 12, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_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_const, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(6506), 38, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5400), 46, 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_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, anon_sym___attribute__, - anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_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, - [73766] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + anon_sym_DOT_DOT_DOT_GT, + [25416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7419), 18, + ACTIONS(5402), 12, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_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_const, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(7417), 38, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5404), 46, 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_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, anon_sym___attribute__, - anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_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, - [73830] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + anon_sym_DOT_DOT_DOT_GT, + [25482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7348), 26, + ACTIONS(5660), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_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, @@ -385906,109 +345460,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7346), 29, + sym_literal_suffix, + ACTIONS(5658), 40, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + 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, - [73893] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6720), 1, - anon_sym_LPAREN2, - ACTIONS(7423), 1, - anon_sym_LBRACK, - ACTIONS(7427), 1, - anon_sym_DOT, - STATE(3608), 1, - sym_argument_list, - STATE(3651), 1, - sym_subscript_argument_list, - ACTIONS(7425), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7429), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7421), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7053), 21, - 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_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, - sym_identifier, - ACTIONS(7051), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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, - [73972] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [25548] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5469), 26, - aux_sym_preproc_elif_token1, + ACTIONS(6411), 1, + anon_sym___attribute__, + STATE(3037), 1, + sym_attribute_specifier, + ACTIONS(6096), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -386034,19 +345535,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5462), 29, + sym_auto, + anon_sym_decltype, + ACTIONS(6094), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_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, @@ -386064,11 +345567,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [74035] = 3, + [25618] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7367), 26, - aux_sym_preproc_elif_token1, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5938), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -386078,35 +345582,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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + 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, - sym_identifier, - ACTIONS(7365), 29, + ACTIONS(4789), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -386115,20 +345612,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_DOT_STAR, anon_sym_DASH_GT, - [74098] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [25686] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7233), 26, - aux_sym_preproc_elif_token1, + ACTIONS(6411), 1, + anon_sym___attribute__, + STATE(3038), 1, + sym_attribute_specifier, + ACTIONS(6100), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -386154,19 +345664,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7231), 29, + sym_auto, + anon_sym_decltype, + ACTIONS(6098), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_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, @@ -386184,11 +345696,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [74161] = 3, + [25756] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7338), 26, - aux_sym_preproc_elif_token1, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5374), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -386198,35 +345711,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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + 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, - sym_identifier, - ACTIONS(7336), 29, + ACTIONS(5381), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -386235,19 +345741,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_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [74224] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [25824] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5481), 25, + ACTIONS(5938), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -386262,32 +345778,25 @@ 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, - sym_identifier, - ACTIONS(5483), 30, + anon_sym_DASH_GT, + ACTIONS(4789), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -386299,19 +345808,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, - [74287] = 5, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [25890] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, - anon_sym___attribute__, - STATE(3742), 1, - sym_attribute_specifier, - ACTIONS(6366), 20, + STATE(2746), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6056), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -386321,25 +345844,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_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6364), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6054), 34, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -386349,6 +345870,7 @@ 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, @@ -386365,11 +345887,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [74354] = 3, + anon_sym_DOT_DOT_DOT_GT, + [25960] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6994), 26, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5381), 1, + anon_sym_LBRACE, + ACTIONS(6982), 1, + anon_sym_LT, + STATE(2485), 1, + sym_template_argument_list, + ACTIONS(5383), 25, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -386381,7 +345911,6 @@ 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, @@ -386396,7 +345925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6992), 29, + ACTIONS(5376), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -386426,75 +345955,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [74417] = 23, + [26034] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, + STATE(2848), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6985), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5651), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7423), 1, - anon_sym_LBRACK, - ACTIONS(7427), 1, - anon_sym_DOT, - ACTIONS(7433), 1, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7445), 1, - anon_sym_GT_EQ, - ACTIONS(7449), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7451), 1, - anon_sym_and, - ACTIONS(7453), 1, - anon_sym_not_eq, - STATE(3608), 1, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5653), 40, + anon_sym_AMP, + anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [26104] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2658), 1, + anon_sym_LBRACE, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(6970), 1, + anon_sym_LBRACK, + ACTIONS(6972), 1, + sym_auto, + ACTIONS(6974), 1, + anon_sym_decltype, + STATE(3239), 1, + sym_new_declarator, + STATE(3282), 1, + sym_decltype_auto, + STATE(3743), 2, sym_argument_list, - STATE(3651), 1, - sym_subscript_argument_list, - ACTIONS(7425), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7429), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7431), 2, + sym_initializer_list, + ACTIONS(5807), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7435), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(7437), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7439), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(7441), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7421), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7443), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7053), 6, + 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, - sym_identifier, - ACTIONS(7051), 17, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5805), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + 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, @@ -386506,14 +346080,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [74520] = 5, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, + [26186] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, - anon_sym___attribute__, - STATE(3696), 1, - sym_attribute_specifier, - ACTIONS(6388), 20, + STATE(2827), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6922), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4763), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -386534,7 +346122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6386), 33, + ACTIONS(4771), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -386568,73 +346156,55 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [74587] = 21, + [26256] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, + ACTIONS(2658), 1, + anon_sym_LBRACE, + ACTIONS(6968), 1, anon_sym_LPAREN2, - ACTIONS(7423), 1, + ACTIONS(6970), 1, anon_sym_LBRACK, - ACTIONS(7427), 1, - anon_sym_DOT, - ACTIONS(7445), 1, - anon_sym_GT_EQ, - ACTIONS(7449), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7453), 1, - anon_sym_not_eq, - STATE(3608), 1, + ACTIONS(6972), 1, + sym_auto, + ACTIONS(6974), 1, + anon_sym_decltype, + STATE(3282), 1, + sym_decltype_auto, + STATE(3303), 1, + sym_new_declarator, + STATE(3918), 2, sym_argument_list, - STATE(3651), 1, - sym_subscript_argument_list, - ACTIONS(7425), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7429), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7431), 2, + sym_initializer_list, + ACTIONS(5830), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7435), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(7437), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7439), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(7441), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7421), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7443), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7053), 7, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - sym_identifier, - ACTIONS(7051), 18, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5828), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + 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, @@ -386646,14 +346216,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [74686] = 5, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, + [26338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, - anon_sym___attribute__, - STATE(3699), 1, - sym_attribute_specifier, - ACTIONS(6392), 20, + ACTIONS(5936), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -386669,12 +346246,13 @@ 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(6390), 33, + ACTIONS(5934), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -386682,6 +346260,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -386707,73 +346287,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [74753] = 20, + [26404] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, + ACTIONS(2658), 1, + anon_sym_LBRACE, + ACTIONS(6968), 1, anon_sym_LPAREN2, - ACTIONS(7423), 1, + ACTIONS(6970), 1, anon_sym_LBRACK, - ACTIONS(7427), 1, - anon_sym_DOT, - ACTIONS(7445), 1, - anon_sym_GT_EQ, - ACTIONS(7449), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7453), 1, - anon_sym_not_eq, - STATE(3608), 1, + ACTIONS(6972), 1, + sym_auto, + ACTIONS(6974), 1, + anon_sym_decltype, + STATE(3256), 1, + sym_new_declarator, + STATE(3282), 1, + sym_decltype_auto, + STATE(3758), 2, sym_argument_list, - STATE(3651), 1, - sym_subscript_argument_list, - ACTIONS(7425), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7429), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7431), 2, + sym_initializer_list, + ACTIONS(5759), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7437), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7439), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(7441), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7421), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7443), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7053), 9, - anon_sym_PIPE, + 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, - sym_identifier, - ACTIONS(7051), 18, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5757), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + 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, @@ -386785,11 +346350,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [74850] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, + [26486] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7319), 26, - aux_sym_preproc_elif_token1, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(6988), 1, + anon_sym_LT, + STATE(2930), 1, + sym_template_argument_list, + ACTIONS(5374), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -386800,34 +346382,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, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + 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, - ACTIONS(7317), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(5381), 36, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -386840,21 +346411,39 @@ 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, - [74913] = 6, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_DOT_DOT_GT, + [26558] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, + ACTIONS(4784), 1, anon_sym_COLON_COLON, - ACTIONS(7455), 1, + ACTIONS(6991), 1, anon_sym_LT, - STATE(3521), 1, + STATE(2904), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3062), 1, sym_template_argument_list, - ACTIONS(5460), 24, + ACTIONS(6924), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4763), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -386868,29 +346457,19 @@ 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, - sym_identifier, - ACTIONS(5467), 28, + anon_sym_DASH_GT, + ACTIONS(4771), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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, @@ -386904,142 +346483,215 @@ 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, - [74982] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [26634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5890), 26, - aux_sym_preproc_elif_token1, + ACTIONS(5425), 12, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - 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(5427), 46, + 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_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_DOT, - sym_identifier, - ACTIONS(5888), 29, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + anon_sym_DOT_DOT_DOT_GT, + [26700] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5421), 12, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + 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(5423), 46, + 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___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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, - [75045] = 10, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + anon_sym_DOT_DOT_DOT_GT, + [26766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, - anon_sym_LPAREN2, - ACTIONS(7423), 1, - anon_sym_LBRACK, - ACTIONS(7427), 1, - anon_sym_DOT, - STATE(3608), 1, - sym_argument_list, - STATE(3651), 1, - sym_subscript_argument_list, - ACTIONS(7425), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7429), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7110), 22, + ACTIONS(5429), 12, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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, - ACTIONS(7112), 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_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(5431), 46, + 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_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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, - sym_identifier, - [75122] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + anon_sym_DOT_DOT_DOT_GT, + [26832] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2183), 26, - aux_sym_preproc_elif_token1, + ACTIONS(6411), 1, + anon_sym___attribute__, + STATE(3006), 1, + sym_attribute_specifier, + ACTIONS(6086), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -387065,19 +346717,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(2185), 29, + sym_auto, + anon_sym_decltype, + ACTIONS(6084), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_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, @@ -387095,11 +346749,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [75185] = 3, + [26902] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7352), 26, - aux_sym_preproc_elif_token1, + ACTIONS(6411), 1, + anon_sym___attribute__, + STATE(3009), 1, + sym_attribute_specifier, + ACTIONS(6104), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -387125,19 +346782,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7350), 29, + sym_auto, + anon_sym_decltype, + ACTIONS(6102), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_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, @@ -387155,10 +346814,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [75248] = 3, + [26972] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5417), 12, + anon_sym_DOT_DOT_DOT, + 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(5419), 46, + 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___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + anon_sym_DOT_DOT_DOT_GT, + [27038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6543), 19, + ACTIONS(5433), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -387168,27 +346890,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_COLON, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6541), 36, + ACTIONS(5438), 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___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -387198,7 +346921,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, @@ -387212,31 +346934,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [75311] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [27104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7371), 26, + ACTIONS(5664), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_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, @@ -387245,58 +346961,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7369), 29, + sym_literal_suffix, + ACTIONS(5662), 40, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + 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, - [75374] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [27170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7419), 26, + ACTIONS(5668), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_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, @@ -387305,41 +347024,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7417), 29, + sym_literal_suffix, + ACTIONS(5666), 40, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + 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, - [75437] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [27236] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7213), 26, - aux_sym_preproc_elif_token1, + STATE(2746), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6130), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -387354,30 +347092,19 @@ 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, - sym_identifier, - ACTIONS(7211), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(6128), 34, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -387390,15 +347117,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_DOT_STAR, anon_sym_DASH_GT, - [75500] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [27306] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 25, + ACTIONS(6411), 1, + anon_sym___attribute__, + STATE(3012), 1, + sym_attribute_specifier, + ACTIONS(6022), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -387424,7 +347164,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5502), 30, + sym_auto, + anon_sym_decltype, + ACTIONS(6020), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -387436,7 +347178,6 @@ 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_QMARK, @@ -387455,74 +347196,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [75563] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7458), 1, - sym_auto, - ACTIONS(7460), 1, - anon_sym_decltype, - STATE(3478), 1, - sym_decltype_auto, - ACTIONS(6404), 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(6402), 40, - 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___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [75632] = 3, + [27376] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6368), 26, - aux_sym_preproc_elif_token1, + ACTIONS(6411), 1, + anon_sym___attribute__, + STATE(3014), 1, + sym_attribute_specifier, + ACTIONS(6026), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -387548,19 +347229,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6370), 29, + sym_auto, + anon_sym_decltype, + ACTIONS(6024), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_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, @@ -387578,10 +347261,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [75695] = 3, + [27446] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6551), 19, + STATE(2865), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6993), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6090), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -387600,11 +347291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6549), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6088), 34, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -387635,14 +347322,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [75758] = 3, + anon_sym_DOT_DOT_DOT_GT, + [27516] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6468), 26, - aux_sym_preproc_elif_token1, + STATE(2746), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6066), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -387657,30 +347352,19 @@ 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, - sym_identifier, - ACTIONS(6470), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(6064), 34, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -387693,23 +347377,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_DOT_STAR, anon_sym_DASH_GT, - [75821] = 7, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [27586] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7462), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7464), 1, - anon_sym_AMP_AMP, - ACTIONS(7466), 1, - anon_sym_or, - ACTIONS(7468), 1, - anon_sym_and, - ACTIONS(6372), 24, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7001), 1, + anon_sym_DOT, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6995), 25, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -387728,24 +347426,26 @@ static const uint16_t ts_small_parse_table[] = { 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, - ACTIONS(6374), 27, + ACTIONS(6997), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_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, @@ -387760,52 +347460,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [75892] = 3, + [27664] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7061), 26, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7001), 1, anon_sym_DOT, - sym_identifier, - ACTIONS(7065), 29, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7007), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_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, @@ -387818,14 +347504,7 @@ 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_DOT_STAR, - anon_sym_DASH_GT, - [75955] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6472), 26, + ACTIONS(7005), 25, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -387850,22 +347529,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(6474), 29, + [27744] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7001), 1, + anon_sym_DOT, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7013), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_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, @@ -387878,58 +347574,21 @@ 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_DOT_STAR, - anon_sym_DASH_GT, - [76018] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6720), 1, - anon_sym_LPAREN2, - ACTIONS(7423), 1, - anon_sym_LBRACK, - ACTIONS(7427), 1, - anon_sym_DOT, - ACTIONS(7445), 1, - anon_sym_GT_EQ, - ACTIONS(7449), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7453), 1, - anon_sym_not_eq, - STATE(3608), 1, - sym_argument_list, - STATE(3651), 1, - sym_subscript_argument_list, - ACTIONS(7425), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7429), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7431), 2, + ACTIONS(7011), 25, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7439), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(7441), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7421), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7443), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7053), 11, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -387938,34 +347597,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, sym_identifier, - ACTIONS(7051), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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, - [76113] = 5, + [27824] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6722), 1, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, anon_sym_LBRACK, - STATE(3469), 1, - sym_new_declarator, - ACTIONS(6943), 25, + ACTIONS(7001), 1, + anon_sym_DOT, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7015), 25, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -387989,21 +347641,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(6941), 28, + ACTIONS(7017), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, 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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -388018,72 +347669,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [76180] = 18, + [27902] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7423), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7427), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(7445), 1, - anon_sym_GT_EQ, - ACTIONS(7449), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7453), 1, - anon_sym_not_eq, - STATE(3608), 1, + STATE(2617), 1, sym_argument_list, - STATE(3651), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7425), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7429), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7431), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7441), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7421), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7443), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7053), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - 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, - sym_identifier, - ACTIONS(7051), 18, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7021), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, 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, @@ -388095,47 +347712,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [76273] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6720), 1, - anon_sym_LPAREN2, - ACTIONS(7423), 1, - anon_sym_LBRACK, - ACTIONS(7427), 1, - anon_sym_DOT, - ACTIONS(7445), 1, - anon_sym_GT_EQ, - ACTIONS(7449), 1, anon_sym_LT_EQ_GT, - STATE(3608), 1, - sym_argument_list, - STATE(3651), 1, - sym_subscript_argument_list, - ACTIONS(7425), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7429), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7431), 2, + ACTIONS(7019), 25, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7421), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7443), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7053), 14, anon_sym_PIPE, anon_sym_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, @@ -388147,16 +347739,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, sym_identifier, - ACTIONS(7051), 20, + [27982] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7001), 1, + anon_sym_DOT, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7025), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, 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, @@ -388168,44 +347782,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [76362] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6720), 1, - anon_sym_LPAREN2, - ACTIONS(7423), 1, - anon_sym_LBRACK, - ACTIONS(7427), 1, - anon_sym_DOT, - ACTIONS(7449), 1, anon_sym_LT_EQ_GT, - STATE(3608), 1, - sym_argument_list, - STATE(3651), 1, - sym_subscript_argument_list, - ACTIONS(7425), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7429), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7431), 2, + ACTIONS(7023), 25, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7421), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7053), 17, anon_sym_PIPE, anon_sym_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, @@ -388217,36 +347809,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, sym_identifier, - ACTIONS(7051), 21, + [28062] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5649), 18, + aux_sym_preproc_elif_token1, + 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_identifier, + sym_literal_suffix, + ACTIONS(5647), 40, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + 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, - [76447] = 5, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + 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_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [28128] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, + ACTIONS(6808), 1, anon_sym___attribute__, - STATE(3733), 1, + ACTIONS(6976), 1, + anon_sym_LBRACE, + ACTIONS(6978), 1, + anon_sym_COLON, + STATE(2994), 1, + sym_enum_base_clause, + STATE(3181), 1, + sym_enumerator_list, + STATE(3358), 1, sym_attribute_specifier, - ACTIONS(6454), 20, + ACTIONS(6514), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -388267,7 +347908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6452), 33, + ACTIONS(6516), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -388275,7 +347916,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, @@ -388301,11 +347941,14 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [76514] = 3, + [28206] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6504), 26, - aux_sym_preproc_elif_token1, + ACTIONS(6411), 1, + anon_sym___attribute__, + STATE(3018), 1, + sym_attribute_specifier, + ACTIONS(6032), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -388331,19 +347974,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6506), 29, + sym_auto, + anon_sym_decltype, + ACTIONS(6030), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_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, @@ -388361,11 +348006,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [76577] = 3, + [28276] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6508), 26, - aux_sym_preproc_elif_token1, + ACTIONS(6411), 1, + anon_sym___attribute__, + STATE(3020), 1, + sym_attribute_specifier, + ACTIONS(6036), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -388391,19 +348039,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6510), 29, + sym_auto, + anon_sym_decltype, + ACTIONS(6034), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_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, @@ -388421,12 +348071,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [76640] = 4, + [28346] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, + ACTIONS(4784), 1, anon_sym_COLON_COLON, - ACTIONS(4827), 19, + ACTIONS(6926), 1, + anon_sym_LT, + STATE(2930), 1, + sym_template_argument_list, + ACTIONS(5938), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -388437,25 +348092,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_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4835), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4789), 36, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -388479,17 +348131,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [76705] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_DOT_DOT_GT, + [28418] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, - anon_sym___attribute__, - STATE(3737), 1, - sym_attribute_specifier, - ACTIONS(6458), 20, + STATE(2746), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6147), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -388499,25 +348158,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_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6456), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6145), 34, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -388527,6 +348184,7 @@ 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, @@ -388543,12 +348201,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [76772] = 3, + anon_sym_DOT_DOT_DOT_GT, + [28488] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 26, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7001), 1, + anon_sym_DOT, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7029), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + 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, + ACTIONS(7027), 25, aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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, + sym_identifier, + [28568] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6411), 1, + anon_sym___attribute__, + STATE(3028), 1, + sym_attribute_specifier, + ACTIONS(6052), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -388574,19 +348305,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7393), 29, + sym_auto, + anon_sym_decltype, + ACTIONS(6050), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_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, @@ -388604,10 +348337,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [76835] = 3, + [28638] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 19, + ACTIONS(5374), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -388627,7 +348360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6582), 36, + ACTIONS(5381), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -388640,6 +348373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -388663,11 +348397,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_DASH_GT_STAR, - [76898] = 3, + [28704] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 25, + STATE(2846), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7031), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6185), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -388682,30 +348426,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, - sym_identifier, - ACTIONS(5498), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(6183), 34, anon_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___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -388719,16 +348451,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_DOT_STAR, anon_sym_DASH_GT, - [76961] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [28774] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5746), 26, - aux_sym_preproc_elif_token1, + ACTIONS(6411), 1, + anon_sym___attribute__, + STATE(3030), 1, + sym_attribute_specifier, + ACTIONS(6062), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -388754,19 +348498,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(3187), 29, + sym_auto, + anon_sym_decltype, + ACTIONS(6060), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_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, @@ -388784,11 +348530,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [77024] = 3, + [28844] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7273), 26, - aux_sym_preproc_elif_token1, + STATE(2869), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7033), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6158), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -388803,30 +348556,19 @@ 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, - sym_identifier, - ACTIONS(7271), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(6156), 34, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -388839,16 +348581,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_DOT_STAR, anon_sym_DASH_GT, - [77087] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [28914] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7163), 26, - aux_sym_preproc_elif_token1, + ACTIONS(6411), 1, + anon_sym___attribute__, + STATE(3031), 1, + sym_attribute_specifier, + ACTIONS(6070), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -388874,19 +348628,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7161), 29, + sym_auto, + anon_sym_decltype, + ACTIONS(6068), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_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, @@ -388904,41 +348660,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [77150] = 12, + [28984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, + ACTIONS(5394), 12, + anon_sym_DOT_DOT_DOT, + 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(5396), 46, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7423), 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_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(7427), 1, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + anon_sym_DOT_DOT_DOT_GT, + [29050] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7001), 1, anon_sym_DOT, - STATE(3608), 1, + STATE(2617), 1, sym_argument_list, - STATE(3651), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7425), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7429), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7431), 2, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7035), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7421), 3, + ACTIONS(7039), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7037), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7053), 19, + ACTIONS(7019), 18, + aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_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, @@ -388950,12 +348771,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, sym_identifier, - ACTIONS(7051), 22, + ACTIONS(7021), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -388973,10 +348795,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - [77231] = 3, + [29135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 12, + ACTIONS(5394), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -388988,8 +348810,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(6582), 43, + ACTIONS(5396), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -389003,6 +348826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym___extension__, anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_constexpr, @@ -389033,71 +348857,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [77294] = 3, + [29200] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7203), 26, - aux_sym_preproc_elif_token1, + ACTIONS(6892), 1, + anon_sym___attribute__, + ACTIONS(7041), 1, + anon_sym_LBRACE, + STATE(2982), 1, + sym_enumerator_list, + STATE(3251), 1, + sym_attribute_specifier, + ACTIONS(5983), 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_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_const, anon_sym_DOT, - sym_identifier, - ACTIONS(7201), 29, + ACTIONS(5981), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + 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___extension__, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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, - [77357] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [29273] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7411), 26, - aux_sym_preproc_elif_token1, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7019), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -389112,31 +348957,23 @@ 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, - sym_identifier, - ACTIONS(7409), 29, + ACTIONS(7021), 31, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, + 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_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -389148,16 +348985,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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [77420] = 3, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [29352] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7415), 26, - aux_sym_preproc_elif_token1, + STATE(2961), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7047), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6185), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -389172,30 +349017,20 @@ 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, - sym_identifier, - ACTIONS(7413), 29, + anon_sym_DASH_GT, + ACTIONS(6183), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -389209,14 +349044,26 @@ 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, - [77483] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [29421] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7407), 26, + ACTIONS(7049), 1, + anon_sym_LT, + STATE(2525), 1, + sym_template_argument_list, + ACTIONS(6576), 25, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -389228,7 +349075,6 @@ 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, @@ -389242,75 +349088,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(7405), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, - [77546] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6618), 1, - anon_sym___attribute__, - STATE(3736), 1, - sym_attribute_specifier, - ACTIONS(6322), 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(6320), 33, + sym_identifier, + ACTIONS(6574), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, 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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -389318,27 +349111,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_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [77613] = 3, + [29490] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5957), 19, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6995), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -389356,21 +349154,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5959), 36, + ACTIONS(6997), 33, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_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___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -389391,46 +349188,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [77676] = 13, + [29567] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, + ACTIONS(7052), 1, anon_sym_LPAREN2, - ACTIONS(7423), 1, + ACTIONS(7054), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7056), 1, anon_sym_LBRACK, - ACTIONS(7427), 1, - anon_sym_DOT, - STATE(3608), 1, - sym_argument_list, - STATE(3651), 1, - sym_subscript_argument_list, - ACTIONS(7425), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7429), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7431), 2, + STATE(3276), 1, + sym_parameter_list, + STATE(3082), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6143), 25, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7421), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7053), 17, anon_sym_PIPE, anon_sym_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, @@ -389441,8 +349226,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(7051), 22, + ACTIONS(6141), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -389465,11 +349251,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - [77759] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [29642] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4837), 26, - aux_sym_preproc_elif_token1, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(4763), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -389495,19 +349286,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4829), 29, + sym_auto, + anon_sym_decltype, + ACTIONS(4771), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_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, @@ -389525,11 +349318,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [77822] = 3, + [29709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7229), 26, - aux_sym_preproc_elif_token1, + ACTIONS(4344), 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_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(4342), 43, + anon_sym_AMP, + anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_requires, + [29774] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2932), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7058), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6158), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -389544,30 +349405,20 @@ 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, - sym_identifier, - ACTIONS(7227), 29, + anon_sym_DASH_GT, + ACTIONS(6156), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -389581,15 +349432,35 @@ 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, - [77885] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [29843] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7311), 26, - aux_sym_preproc_elif_token1, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7015), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -389604,31 +349475,23 @@ 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, - sym_identifier, - ACTIONS(7309), 29, + ACTIONS(7017), 33, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, + 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_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -389640,15 +349503,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_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + [29920] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7001), 1, + anon_sym_DOT, + ACTIONS(7064), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7066), 1, + anon_sym_AMP_AMP, + ACTIONS(7078), 1, + anon_sym_GT_EQ, + ACTIONS(7080), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7082), 1, + anon_sym_or, + ACTIONS(7084), 1, + anon_sym_and, + ACTIONS(7086), 1, + anon_sym_not_eq, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [77948] = 3, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7035), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7039), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7068), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(7070), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7072), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(7074), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7037), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7076), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7060), 6, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(7062), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [30029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5957), 12, + ACTIONS(5398), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -389660,8 +349611,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(5959), 43, + ACTIONS(5400), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -389675,6 +349627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym___extension__, anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_constexpr, @@ -389705,27 +349658,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [78011] = 11, + [30094] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3053), 1, - anon_sym_LBRACE, - ACTIONS(7470), 1, - anon_sym_LPAREN2, - ACTIONS(7472), 1, - anon_sym_LBRACK, - ACTIONS(7474), 1, - sym_auto, - ACTIONS(7476), 1, - anon_sym_decltype, - STATE(4105), 1, - sym_new_declarator, - STATE(4147), 1, - sym_decltype_auto, - STATE(4544), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6293), 16, + STATE(2806), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7088), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6147), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -389742,15 +349685,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6289), 30, + ACTIONS(6145), 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___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -389772,53 +349719,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [78090] = 4, + [30163] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5525), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5527), 25, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7001), 1, + anon_sym_DOT, + ACTIONS(7064), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7066), 1, + anon_sym_AMP_AMP, + ACTIONS(7078), 1, + anon_sym_GT_EQ, + ACTIONS(7080), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7082), 1, + anon_sym_or, + ACTIONS(7084), 1, + anon_sym_and, + ACTIONS(7086), 1, + anon_sym_not_eq, + ACTIONS(7092), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7096), 1, + anon_sym_QMARK, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7035), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(7039), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7068), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(7070), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(7072), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(7074), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7037), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7076), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7090), 6, + aux_sym_preproc_elif_token1, 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_identifier, - ACTIONS(5520), 28, - anon_sym_DOT_DOT_DOT, + ACTIONS(7094), 15, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -389829,16 +349808,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [30276] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6578), 27, + ts_builtin_sym_end, + 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_DOT_STAR, anon_sym_DASH_GT, - [78155] = 3, + ACTIONS(6580), 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___attribute__, + 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, + [30341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 26, - aux_sym_preproc_elif_token1, + ACTIONS(5417), 20, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -389853,30 +349889,21 @@ 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_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, - ACTIONS(2191), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(5419), 37, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -389889,16 +349916,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_DOT_STAR, anon_sym_DASH_GT, - [78218] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_DOT_DOT_GT, + [30406] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6986), 26, - aux_sym_preproc_elif_token1, + ACTIONS(7052), 1, + anon_sym_LPAREN2, + ACTIONS(7054), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7056), 1, + anon_sym_LBRACK, + STATE(3276), 1, + sym_parameter_list, + STATE(3082), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6082), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -389924,20 +349972,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6984), 29, + ACTIONS(6080), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, + aux_sym_preproc_elif_token1, 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, @@ -389954,10 +349999,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [78281] = 3, + [30481] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6698), 19, + ACTIONS(7102), 1, + anon_sym_LT, + STATE(2485), 1, + sym_template_argument_list, + ACTIONS(7100), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -389968,7 +350017,6 @@ 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, @@ -389976,8 +350024,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6696), 36, + ACTIONS(7098), 38, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -389987,9 +350035,12 @@ 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___attribute__, - 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, @@ -390011,28 +350062,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [78344] = 3, + anon_sym_DASH_GT, + [30550] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6698), 12, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7001), 1, + anon_sym_DOT, + ACTIONS(7064), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7066), 1, + anon_sym_AMP_AMP, + ACTIONS(7078), 1, + anon_sym_GT_EQ, + ACTIONS(7080), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7082), 1, + anon_sym_or, + ACTIONS(7084), 1, + anon_sym_and, + ACTIONS(7086), 1, + anon_sym_not_eq, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7035), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(7039), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7068), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(7070), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7072), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(7074), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7037), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7076), 3, 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(6696), 43, + ACTIONS(7105), 6, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(7107), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [30659] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6621), 27, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -390041,44 +350163,67 @@ 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___extension__, - anon_sym___attribute__, + 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_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6623), 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___attribute__, + 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_DOT, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [78407] = 3, + anon_sym_typename, + anon_sym_template, + [30724] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7221), 26, - aux_sym_preproc_elif_token1, + ACTIONS(7052), 1, + anon_sym_LPAREN2, + ACTIONS(7054), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7056), 1, + anon_sym_LBRACK, + STATE(3276), 1, + sym_parameter_list, + STATE(3082), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6040), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -390104,20 +350249,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7219), 29, + ACTIONS(6038), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, + aux_sym_preproc_elif_token1, 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, @@ -390134,11 +350276,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [78470] = 3, + [30799] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4837), 26, - aux_sym_preproc_elif_token1, + ACTIONS(6908), 1, + anon_sym___attribute__, + ACTIONS(7109), 1, + anon_sym_LBRACE, + ACTIONS(7111), 1, + anon_sym_COLON, + STATE(3200), 1, + sym_enum_base_clause, + STATE(3314), 1, + sym_enumerator_list, + STATE(3679), 1, + sym_attribute_specifier, + ACTIONS(6514), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -390153,24 +350307,11 @@ 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, - sym_identifier, - ACTIONS(4829), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(6516), 32, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -390189,107 +350330,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_DOT_STAR, - anon_sym_DASH_GT, - [78533] = 34, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7480), 1, - anon_sym_COMMA, - ACTIONS(7482), 1, - anon_sym_RPAREN, - ACTIONS(7488), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7490), 1, - anon_sym_AMP_AMP, - ACTIONS(7492), 1, - anon_sym_PIPE, - ACTIONS(7496), 1, - anon_sym_AMP, - ACTIONS(7502), 1, - anon_sym_GT_EQ, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7508), 1, - anon_sym_EQ, - ACTIONS(7510), 1, - anon_sym_QMARK, - ACTIONS(7516), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7518), 1, - anon_sym_or, - ACTIONS(7520), 1, - anon_sym_and, - ACTIONS(7522), 1, anon_sym_bitor, - ACTIONS(7524), 1, anon_sym_bitand, - ACTIONS(7530), 1, - anon_sym_DOT_STAR, - ACTIONS(7532), 1, - anon_sym_DASH_GT_STAR, - STATE(1354), 1, - sym_binary_fold_operator, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - STATE(9905), 1, - sym_fold_operator, - ACTIONS(7484), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7494), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7504), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7526), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7528), 2, - anon_sym_DOT, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7486), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7498), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7500), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7514), 3, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(7512), 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, - [78658] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [30876] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7257), 26, - aux_sym_preproc_elif_token1, + ACTIONS(6862), 1, + sym_auto, + ACTIONS(6864), 1, + anon_sym_decltype, + STATE(3004), 1, + sym_decltype_auto, + ACTIONS(6191), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -390315,19 +350379,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7255), 29, + ACTIONS(6189), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_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, @@ -390345,19 +350409,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [78721] = 7, + [30947] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 1, + ACTIONS(6693), 1, anon_sym___attribute__, - ACTIONS(7129), 1, + ACTIONS(6943), 1, anon_sym_LBRACE, - STATE(3536), 1, + STATE(2998), 1, sym_enumerator_list, - STATE(3832), 1, + STATE(3272), 1, sym_attribute_specifier, - ACTIONS(6239), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(5983), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -390376,7 +350439,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6237), 32, + anon_sym_DASH_GT, + ACTIONS(5981), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -390405,14 +350472,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [78792] = 3, + anon_sym_DASH_GT_STAR, + [31020] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5511), 25, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(7113), 1, + anon_sym_LT, + STATE(3062), 1, + sym_template_argument_list, + ACTIONS(5374), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -390423,34 +350495,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, - 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_COLON, anon_sym_DOT, - sym_identifier, - ACTIONS(5513), 30, + anon_sym_DASH_GT, + ACTIONS(5381), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -390465,15 +350526,27 @@ 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, - [78855] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [31091] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7303), 26, - aux_sym_preproc_elif_token1, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5374), 20, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -390488,30 +350561,20 @@ 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_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, - ACTIONS(7301), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(5381), 36, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -390524,143 +350587,56 @@ 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, - [78918] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_DOT_DOT_GT, + [31158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4261), 26, - aux_sym_preproc_elif_token1, + ACTIONS(5425), 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_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_const, + anon_sym_COLON, anon_sym_DOT, - sym_identifier, - ACTIONS(4259), 29, + ACTIONS(5427), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + 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_DOT_STAR, - anon_sym_DASH_GT, - [78981] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, anon_sym_COLON_COLON, - ACTIONS(5276), 1, - anon_sym_LPAREN2, - ACTIONS(6256), 1, - sym_identifier, - ACTIONS(6260), 1, - anon_sym_STAR, - ACTIONS(6262), 1, - anon_sym_AMP_AMP, - ACTIONS(6264), 1, - anon_sym_AMP, - ACTIONS(6266), 1, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(4027), 1, - sym_parameter_list, - STATE(7241), 1, - sym_scope_resolution, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(7552), 1, - sym_declarator, - STATE(7782), 1, - sym_abstract_declarator, - STATE(9737), 1, - sym_ms_based_modifier, - STATE(6505), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(7534), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_GT2, - STATE(7464), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(7634), 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, - ACTIONS(3664), 12, - anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -390671,198 +350647,278 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [79088] = 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_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [31223] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7536), 1, - anon_sym_LPAREN2, - ACTIONS(7538), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7540), 1, - anon_sym_LBRACK, - STATE(3897), 1, - sym_parameter_list, - STATE(3507), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6779), 19, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5938), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, + anon_sym_COLON, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6777), 30, + ACTIONS(4789), 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___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_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, - [79161] = 5, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [31290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5721), 4, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(5723), 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(4829), 19, + ACTIONS(4348), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + 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_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_DASH_GT, - ACTIONS(4837), 22, - aux_sym_preproc_elif_token1, + anon_sym_GT2, + ACTIONS(4346), 43, + anon_sym_AMP, + anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_requires, + [31355] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5421), 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(5423), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_DOT, - sym_identifier, - [79228] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [31420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7403), 26, - aux_sym_preproc_elif_token1, + ACTIONS(5429), 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_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_const, + anon_sym_COLON, anon_sym_DOT, - sym_identifier, - ACTIONS(7401), 29, + ACTIONS(5431), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + 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___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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, - [79291] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [31485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 26, - aux_sym_preproc_elif_token1, + ACTIONS(5425), 20, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -390877,30 +350933,21 @@ 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_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, - ACTIONS(7297), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(5427), 37, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -390913,15 +350960,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, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [79354] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_DOT_DOT_GT, + [31550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 12, + ACTIONS(5402), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -390933,8 +350991,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(6464), 43, + ACTIONS(5404), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -390947,6 +351006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_LT, anon_sym___extension__, + anon_sym___attribute__, anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, @@ -390978,228 +351038,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [79417] = 3, + [31615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 19, + ACTIONS(5433), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, + anon_sym_COLON, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6464), 36, + ACTIONS(5438), 44, 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___extension__, + anon_sym___attribute__, anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_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, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [79480] = 34, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7480), 1, - anon_sym_COMMA, - ACTIONS(7488), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7490), 1, - anon_sym_AMP_AMP, - ACTIONS(7492), 1, - anon_sym_PIPE, - ACTIONS(7496), 1, - anon_sym_AMP, - ACTIONS(7502), 1, - anon_sym_GT_EQ, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7508), 1, - anon_sym_EQ, - ACTIONS(7510), 1, - anon_sym_QMARK, - ACTIONS(7516), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7518), 1, - anon_sym_or, - ACTIONS(7520), 1, - anon_sym_and, - ACTIONS(7522), 1, - anon_sym_bitor, - ACTIONS(7524), 1, - anon_sym_bitand, - ACTIONS(7530), 1, - anon_sym_DOT_STAR, - ACTIONS(7532), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(7542), 1, - anon_sym_RPAREN, - STATE(1354), 1, - sym_binary_fold_operator, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - STATE(9905), 1, - sym_fold_operator, - ACTIONS(7484), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7494), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7504), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7526), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7486), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7498), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7500), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7514), 3, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(7512), 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, - [79605] = 25, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [31680] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7423), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7427), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(7433), 1, + ACTIONS(7064), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7066), 1, anon_sym_AMP_AMP, - ACTIONS(7445), 1, + ACTIONS(7078), 1, anon_sym_GT_EQ, - ACTIONS(7449), 1, + ACTIONS(7080), 1, anon_sym_LT_EQ_GT, - ACTIONS(7451), 1, + ACTIONS(7082), 1, + anon_sym_or, + ACTIONS(7084), 1, anon_sym_and, - ACTIONS(7453), 1, + ACTIONS(7086), 1, anon_sym_not_eq, - ACTIONS(7544), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7546), 1, - anon_sym_or, - STATE(3608), 1, + STATE(2617), 1, sym_argument_list, - STATE(3651), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7425), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7429), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7431), 2, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7035), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7435), 2, + ACTIONS(7039), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7068), 2, anon_sym_PIPE, anon_sym_bitor, - ACTIONS(7437), 2, + ACTIONS(7070), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7439), 2, + ACTIONS(7072), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(7441), 2, + ACTIONS(7074), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7421), 3, + ACTIONS(7037), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7443), 3, + ACTIONS(7076), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7077), 5, + ACTIONS(7116), 6, + aux_sym_preproc_elif_token1, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, sym_identifier, - ACTIONS(7079), 16, + ACTIONS(7118), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -391211,11 +351184,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [79712] = 3, + [31789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7159), 26, - aux_sym_preproc_elif_token1, + ACTIONS(6240), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -391229,6 +351201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -391241,19 +351214,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7157), 29, + sym_auto, + anon_sym_decltype, + ACTIONS(6238), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_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, @@ -391271,11 +351246,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [79775] = 3, + [31854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6197), 26, - aux_sym_preproc_elif_token1, + ACTIONS(5421), 20, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -391290,30 +351265,21 @@ 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_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, - ACTIONS(4853), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(5423), 37, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -391326,16 +351292,27 @@ 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, - [79838] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_DOT_DOT_GT, + [31919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6410), 26, - aux_sym_preproc_elif_token1, + ACTIONS(5429), 20, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -391350,30 +351327,21 @@ 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_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, - ACTIONS(6412), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(5431), 37, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -391386,76 +351354,27 @@ 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, - [79901] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7548), 27, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, + sym_auto, anon_sym_decltype, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(5150), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_COLON_COLON, - 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, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [79964] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_DOT_DOT_GT, + [31984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6970), 26, - aux_sym_preproc_elif_token1, + ACTIONS(5433), 20, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -391470,30 +351389,21 @@ 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_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, - ACTIONS(6968), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(5438), 37, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -391506,26 +351416,29 @@ 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, - [80027] = 8, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_DOT_DOT_GT, + [32049] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7536), 1, - anon_sym_LPAREN2, - ACTIONS(7538), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7540), 1, - anon_sym_LBRACK, - STATE(3897), 1, - sym_parameter_list, - STATE(3507), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6732), 19, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5938), 20, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -391540,20 +351453,21 @@ 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(6728), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4789), 36, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -391575,12 +351489,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [80100] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_DOT_DOT_GT, + [32116] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6418), 26, - aux_sym_preproc_elif_token1, + STATE(2806), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7088), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6066), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -391595,30 +351520,20 @@ 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, - sym_identifier, - ACTIONS(6420), 29, + anon_sym_DASH_GT, + ACTIONS(6064), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -391632,99 +351547,33 @@ 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_DOT_STAR, - anon_sym_DASH_GT, - [80163] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6720), 1, - anon_sym_LPAREN2, - ACTIONS(7423), 1, - anon_sym_LBRACK, - ACTIONS(7427), 1, - anon_sym_DOT, - ACTIONS(7433), 1, - anon_sym_AMP_AMP, - ACTIONS(7445), 1, - anon_sym_GT_EQ, - ACTIONS(7449), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7451), 1, + anon_sym_or, anon_sym_and, - ACTIONS(7453), 1, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7544), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7546), 1, - anon_sym_or, - ACTIONS(7550), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_QMARK, - STATE(3608), 1, - sym_argument_list, - STATE(3651), 1, - sym_subscript_argument_list, - ACTIONS(7425), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7429), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7431), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7435), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(7437), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7439), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(7441), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7421), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7443), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7081), 5, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - sym_identifier, - ACTIONS(7083), 14, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [80274] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [32185] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7245), 26, - aux_sym_preproc_elif_token1, + ACTIONS(7052), 1, + anon_sym_LPAREN2, + ACTIONS(7054), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7056), 1, + anon_sym_LBRACK, + STATE(3276), 1, + sym_parameter_list, + STATE(3082), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6134), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -391750,20 +351599,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7243), 29, + ACTIONS(6132), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, + aux_sym_preproc_elif_token1, 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, @@ -391780,10 +351626,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [80337] = 3, + [32260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5507), 25, + ACTIONS(6314), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -391797,6 +351643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -391809,7 +351656,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5509), 30, + sym_auto, + anon_sym_decltype, + ACTIONS(6312), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -391821,7 +351670,6 @@ 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_QMARK, @@ -391840,16 +351688,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [80400] = 3, + [32325] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7356), 26, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7001), 1, + anon_sym_DOT, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7037), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7019), 22, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -391868,22 +351733,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(7354), 29, + ACTIONS(7021), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_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, @@ -391896,210 +351758,34 @@ 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_DOT_STAR, - anon_sym_DASH_GT, - [80463] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6618), 1, - anon_sym___attribute__, - STATE(3706), 1, - sym_attribute_specifier, - ACTIONS(6424), 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(6422), 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_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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [80530] = 9, + [32406] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7423), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7427), 1, + ACTIONS(7001), 1, anon_sym_DOT, - STATE(3608), 1, + STATE(2617), 1, sym_argument_list, - STATE(3651), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7429), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6996), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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, + ACTIONS(7009), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6998), 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, - sym_identifier, - [80605] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6618), 1, - anon_sym___attribute__, - STATE(3709), 1, - sym_attribute_specifier, - ACTIONS(6428), 20, + ACTIONS(7035), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7037), 3, 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(6426), 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_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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [80672] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6349), 26, + ACTIONS(7019), 20, aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -392118,22 +351804,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(6351), 29, + ACTIONS(7021), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_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, @@ -392146,18 +351829,11 @@ 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_DOT_STAR, - anon_sym_DASH_GT, - [80735] = 5, + [32489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, - anon_sym___attribute__, - STATE(3713), 1, - sym_attribute_specifier, - ACTIONS(6432), 20, + ACTIONS(5398), 20, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -392167,25 +351843,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_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6430), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5400), 37, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -392195,6 +351871,7 @@ 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, @@ -392211,12 +351888,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [80802] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_DOT_DOT_GT, + [32554] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6356), 26, - aux_sym_preproc_elif_token1, + ACTIONS(5394), 20, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -392231,30 +351910,21 @@ 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_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, - ACTIONS(6358), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(5396), 37, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -392267,19 +351937,43 @@ 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, - [80865] = 5, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_DOT_DOT_GT, + [32619] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, - anon_sym___attribute__, - STATE(3714), 1, - sym_attribute_specifier, - ACTIONS(6436), 20, + ACTIONS(2931), 1, + anon_sym_LBRACE, + ACTIONS(7120), 1, + anon_sym_LPAREN2, + ACTIONS(7122), 1, + anon_sym_LBRACK, + ACTIONS(7124), 1, + sym_auto, + ACTIONS(7126), 1, + anon_sym_decltype, + STATE(3352), 1, + sym_decltype_auto, + STATE(3411), 1, + sym_new_declarator, + STATE(4113), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5759), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -392300,16 +351994,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6434), 33, + ACTIONS(5757), 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, anon_sym_SLASH_EQ, @@ -392331,80 +352022,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [80932] = 25, + [32700] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7423), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7427), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(7433), 1, + ACTIONS(7064), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7066), 1, anon_sym_AMP_AMP, - ACTIONS(7445), 1, + ACTIONS(7078), 1, anon_sym_GT_EQ, - ACTIONS(7449), 1, + ACTIONS(7080), 1, anon_sym_LT_EQ_GT, - ACTIONS(7451), 1, + ACTIONS(7082), 1, + anon_sym_or, + ACTIONS(7084), 1, anon_sym_and, - ACTIONS(7453), 1, + ACTIONS(7086), 1, anon_sym_not_eq, - ACTIONS(7544), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7546), 1, - anon_sym_or, - STATE(3608), 1, + STATE(2617), 1, sym_argument_list, - STATE(3651), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7425), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7429), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7431), 2, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7035), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7435), 2, + ACTIONS(7039), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7068), 2, anon_sym_PIPE, anon_sym_bitor, - ACTIONS(7437), 2, + ACTIONS(7070), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7439), 2, + ACTIONS(7072), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(7441), 2, + ACTIONS(7074), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7421), 3, + ACTIONS(7037), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7443), 3, + ACTIONS(7076), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7085), 5, + ACTIONS(7128), 6, + aux_sym_preproc_elif_token1, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, sym_identifier, - ACTIONS(7087), 16, + ACTIONS(7130), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -392416,131 +352107,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [81039] = 3, + [32809] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6680), 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(6678), 43, - 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___extension__, - anon_sym___attribute__, + ACTIONS(2931), 1, anon_sym_LBRACE, + ACTIONS(7120), 1, + anon_sym_LPAREN2, + ACTIONS(7122), 1, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, + ACTIONS(7124), 1, sym_auto, + ACTIONS(7126), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [81102] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7554), 27, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(7556), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_COLON_COLON, - 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, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [81165] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7334), 26, - aux_sym_preproc_elif_token1, + STATE(3352), 1, + sym_decltype_auto, + STATE(3371), 1, + sym_new_declarator, + STATE(4064), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5878), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -392550,36 +352137,24 @@ 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_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, - sym_identifier, - ACTIONS(7332), 29, + ACTIONS(5876), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, @@ -392587,89 +352162,73 @@ 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, - [81228] = 27, + anon_sym_GT2, + [32890] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7423), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7427), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(7433), 1, - anon_sym_AMP_AMP, - ACTIONS(7445), 1, - anon_sym_GT_EQ, - ACTIONS(7449), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7451), 1, - anon_sym_and, - ACTIONS(7453), 1, - anon_sym_not_eq, - ACTIONS(7544), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7546), 1, - anon_sym_or, - ACTIONS(7550), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_QMARK, - STATE(3608), 1, + STATE(2617), 1, sym_argument_list, - STATE(3651), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7425), 2, + ACTIONS(7009), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7429), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7431), 2, + ACTIONS(7023), 17, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7435), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(7437), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7439), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(7441), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7421), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7443), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7093), 5, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - sym_identifier, - ACTIONS(7095), 14, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7025), 31, + ts_builtin_sym_end, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + 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___attribute__, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -392680,11 +352239,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [81339] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [32969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7342), 26, - aux_sym_preproc_elif_token1, + ACTIONS(5936), 20, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -392699,30 +352265,21 @@ 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_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, - ACTIONS(7340), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(5934), 37, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -392735,16 +352292,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, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [81402] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_DOT_DOT_GT, + [33034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6360), 26, - aux_sym_preproc_elif_token1, + ACTIONS(6248), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -392758,6 +352325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -392770,19 +352338,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6362), 29, + sym_auto, + anon_sym_decltype, + ACTIONS(6246), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_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, @@ -392800,21 +352370,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [81465] = 8, + [33099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7536), 1, - anon_sym_LPAREN2, - ACTIONS(7538), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7540), 1, - anon_sym_LBRACK, - STATE(3897), 1, - sym_parameter_list, - STATE(3507), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6748), 19, + ACTIONS(5938), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -392824,25 +352383,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_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6746), 30, + ACTIONS(4789), 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___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -392850,7 +352413,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, @@ -392864,15 +352426,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [81538] = 5, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [33164] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, - anon_sym___attribute__, - STATE(3738), 1, - sym_attribute_specifier, - ACTIONS(6462), 20, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7027), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -392882,27 +352461,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_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(6460), 33, + ACTIONS(7029), 31, + ts_builtin_sym_end, 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_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -392910,6 +352490,7 @@ 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, @@ -392920,58 +352501,82 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [81605] = 3, + [33243] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(7269), 26, - aux_sym_preproc_elif_token1, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7001), 1, + anon_sym_DOT, + ACTIONS(7064), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7066), 1, + anon_sym_AMP_AMP, + ACTIONS(7078), 1, + anon_sym_GT_EQ, + ACTIONS(7080), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7082), 1, + anon_sym_or, + ACTIONS(7084), 1, + anon_sym_and, + ACTIONS(7086), 1, + anon_sym_not_eq, + ACTIONS(7092), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7096), 1, + anon_sym_QMARK, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7035), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(7039), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7068), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(7070), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(7072), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(7074), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7037), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7076), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(6691), 6, + aux_sym_preproc_elif_token1, 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_identifier, - ACTIONS(7267), 29, - anon_sym_DOT_DOT_DOT, + ACTIONS(6689), 15, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_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, @@ -392982,42 +352587,82 @@ 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, - [81668] = 10, + [33356] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7423), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7427), 1, + ACTIONS(7001), 1, anon_sym_DOT, - STATE(3608), 1, + ACTIONS(7064), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7066), 1, + anon_sym_AMP_AMP, + ACTIONS(7078), 1, + anon_sym_GT_EQ, + ACTIONS(7080), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7082), 1, + anon_sym_or, + ACTIONS(7084), 1, + anon_sym_and, + ACTIONS(7086), 1, + anon_sym_not_eq, + ACTIONS(7092), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7096), 1, + anon_sym_QMARK, + STATE(2617), 1, sym_argument_list, - STATE(3651), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7425), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7429), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7051), 22, - anon_sym_DOT_DOT_DOT, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7035), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7039), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7068), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(7070), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7072), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(7074), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7037), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7076), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7132), 6, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(7134), 15, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -393028,76 +352673,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [33469] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6632), 27, + ts_builtin_sym_end, + 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, - ACTIONS(7053), 24, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6634), 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_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___attribute__, + 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, - [81745] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + [33534] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(6482), 26, - aux_sym_preproc_elif_token1, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7001), 1, + anon_sym_DOT, + ACTIONS(7066), 1, + anon_sym_AMP_AMP, + ACTIONS(7078), 1, + anon_sym_GT_EQ, + ACTIONS(7080), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7084), 1, + anon_sym_and, + ACTIONS(7086), 1, + anon_sym_not_eq, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7035), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(7039), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7068), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(7070), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(7072), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(7074), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7037), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7076), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7019), 7, + aux_sym_preproc_elif_token1, 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_identifier, - ACTIONS(6484), 29, + ACTIONS(7021), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_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, @@ -393109,16 +352817,17 @@ 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, - [81808] = 3, + [33639] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7253), 26, - aux_sym_preproc_elif_token1, + STATE(2963), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7136), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6090), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -393133,30 +352842,20 @@ 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, - sym_identifier, - ACTIONS(7251), 29, + anon_sym_DASH_GT, + ACTIONS(6088), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -393170,91 +352869,88 @@ 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, - [81871] = 34, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [33708] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7480), 1, - anon_sym_COMMA, - ACTIONS(7488), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7490), 1, - anon_sym_AMP_AMP, - ACTIONS(7492), 1, - anon_sym_PIPE, - ACTIONS(7496), 1, - anon_sym_AMP, - ACTIONS(7502), 1, - anon_sym_GT_EQ, - ACTIONS(7506), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7508), 1, - anon_sym_EQ, - ACTIONS(7510), 1, - anon_sym_QMARK, - ACTIONS(7516), 1, + ACTIONS(7001), 1, + anon_sym_DOT, + ACTIONS(7078), 1, + anon_sym_GT_EQ, + ACTIONS(7080), 1, anon_sym_LT_EQ_GT, - ACTIONS(7518), 1, - anon_sym_or, - ACTIONS(7520), 1, - anon_sym_and, - ACTIONS(7522), 1, - anon_sym_bitor, - ACTIONS(7524), 1, - anon_sym_bitand, - ACTIONS(7530), 1, - anon_sym_DOT_STAR, - ACTIONS(7532), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(7558), 1, - anon_sym_RPAREN, - STATE(1354), 1, - sym_binary_fold_operator, - STATE(4031), 1, + ACTIONS(7086), 1, + anon_sym_not_eq, + STATE(2617), 1, sym_argument_list, - STATE(4032), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(9905), 1, - sym_fold_operator, - ACTIONS(7484), 2, + ACTIONS(7003), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7035), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7494), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7504), 2, + ACTIONS(7039), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7526), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7486), 3, + ACTIONS(7068), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(7070), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7072), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(7074), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7037), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7498), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7500), 3, + ACTIONS(7076), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7514), 3, + ACTIONS(7019), 8, + aux_sym_preproc_elif_token1, + anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - ACTIONS(7512), 10, + anon_sym_or, + anon_sym_and, + sym_identifier, + ACTIONS(7021), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -393265,24 +352961,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [81996] = 3, + [33809] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(7277), 26, - aux_sym_preproc_elif_token1, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7001), 1, + anon_sym_DOT, + ACTIONS(7078), 1, + anon_sym_GT_EQ, + ACTIONS(7080), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7086), 1, + anon_sym_not_eq, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7035), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7039), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7070), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7072), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(7074), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7037), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7076), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7019), 10, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -393290,25 +353019,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(7275), 29, + ACTIONS(7021), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_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, @@ -393320,29 +353040,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [33908] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7001), 1, + anon_sym_DOT, + ACTIONS(7078), 1, + anon_sym_GT_EQ, + ACTIONS(7080), 1, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(7086), 1, + anon_sym_not_eq, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [82059] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7387), 26, - aux_sym_preproc_elif_token1, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7035), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7039), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7072), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(7074), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7037), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7076), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7019), 12, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -393351,24 +353097,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(7385), 29, + ACTIONS(7021), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_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, @@ -393380,52 +353118,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [34005] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7001), 1, + anon_sym_DOT, + ACTIONS(7078), 1, + anon_sym_GT_EQ, + ACTIONS(7080), 1, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(7086), 1, + anon_sym_not_eq, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [82122] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6930), 1, - sym_auto, - ACTIONS(6932), 1, - anon_sym_decltype, - STATE(3554), 1, - sym_decltype_auto, - ACTIONS(6404), 19, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7035), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7039), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7074), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7037), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7076), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7019), 14, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, 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_DOT, - anon_sym_DASH_GT, - ACTIONS(6402), 33, + anon_sym_bitand, + sym_identifier, + ACTIONS(7021), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, 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, @@ -393437,130 +353195,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_DOT_STAR, - anon_sym_DASH_GT_STAR, - [82191] = 34, + [34100] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7480), 1, - anon_sym_COMMA, - ACTIONS(7488), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7490), 1, - anon_sym_AMP_AMP, - ACTIONS(7492), 1, - anon_sym_PIPE, - ACTIONS(7496), 1, - anon_sym_AMP, - ACTIONS(7502), 1, - anon_sym_GT_EQ, - ACTIONS(7506), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7508), 1, - anon_sym_EQ, - ACTIONS(7510), 1, - anon_sym_QMARK, - ACTIONS(7516), 1, + ACTIONS(7001), 1, + anon_sym_DOT, + ACTIONS(7078), 1, + anon_sym_GT_EQ, + ACTIONS(7080), 1, anon_sym_LT_EQ_GT, - ACTIONS(7518), 1, - anon_sym_or, - ACTIONS(7520), 1, - anon_sym_and, - ACTIONS(7522), 1, - anon_sym_bitor, - ACTIONS(7524), 1, - anon_sym_bitand, - ACTIONS(7530), 1, - anon_sym_DOT_STAR, - ACTIONS(7532), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(7560), 1, - anon_sym_RPAREN, - STATE(1354), 1, - sym_binary_fold_operator, - STATE(4031), 1, + STATE(2617), 1, sym_argument_list, - STATE(4032), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(9905), 1, - sym_fold_operator, - ACTIONS(7484), 2, + ACTIONS(7003), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7035), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7494), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7504), 2, + ACTIONS(7039), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7526), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7486), 3, + ACTIONS(7037), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7498), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7500), 3, + ACTIONS(7076), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7514), 3, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(7512), 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, - [82316] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7562), 1, - anon_sym_LT, - STATE(3521), 1, - sym_template_argument_list, - ACTIONS(6197), 24, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(7019), 15, + aux_sym_preproc_elif_token1, 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_and_eq, anon_sym_or_eq, @@ -393571,21 +353247,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(4853), 28, + ACTIONS(7021), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, 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, @@ -393597,52 +353270,63 @@ 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, - [82385] = 11, + [34191] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3053), 1, - anon_sym_LBRACE, - ACTIONS(7470), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7472), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7474), 1, - sym_auto, - ACTIONS(7476), 1, - anon_sym_decltype, - STATE(4054), 1, - sym_new_declarator, - STATE(4147), 1, - sym_decltype_auto, - STATE(4548), 2, + ACTIONS(7001), 1, + anon_sym_DOT, + ACTIONS(7080), 1, + anon_sym_LT_EQ_GT, + STATE(2617), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(6314), 16, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7035), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7039), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7037), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7019), 18, + aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_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(6312), 30, + 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, + sym_identifier, + ACTIONS(7021), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -393659,22 +353343,10 @@ 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, - [82464] = 3, + [34278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5460), 26, - aux_sym_preproc_elif_token1, + ACTIONS(6268), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -393688,6 +353360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -393700,19 +353373,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5467), 29, + sym_auto, + anon_sym_decltype, + ACTIONS(6266), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_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, @@ -393730,84 +353405,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [82527] = 8, + [34343] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7536), 1, - anon_sym_LPAREN2, - ACTIONS(7538), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7540), 1, - anon_sym_LBRACK, - STATE(3897), 1, - sym_parameter_list, - STATE(3507), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6761), 19, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5374), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, + anon_sym_COLON, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6759), 30, + ACTIONS(5381), 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___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_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, - [82600] = 7, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [34410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 1, - anon_sym___attribute__, - ACTIONS(7129), 1, - anon_sym_LBRACE, - STATE(3542), 1, - sym_enumerator_list, - STATE(3863), 1, - sym_attribute_specifier, - ACTIONS(6310), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(5374), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -393817,23 +353481,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_xor, anon_sym_DOT, - ACTIONS(6308), 32, + ACTIONS(5381), 37, + 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___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -393841,7 +353511,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, @@ -393858,12 +353527,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [82671] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [34475] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7391), 26, - aux_sym_preproc_elif_token1, + STATE(2806), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7088), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6056), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -393878,30 +353555,20 @@ 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, - sym_identifier, - ACTIONS(7389), 29, + anon_sym_DASH_GT, + ACTIONS(6054), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -393915,164 +353582,91 @@ 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, - [82734] = 25, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [34544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, + ACTIONS(6617), 27, + ts_builtin_sym_end, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7423), 1, - anon_sym_LBRACK, - ACTIONS(7427), 1, - anon_sym_DOT, - ACTIONS(7433), 1, - anon_sym_AMP_AMP, - ACTIONS(7445), 1, - anon_sym_GT_EQ, - ACTIONS(7449), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7451), 1, - anon_sym_and, - ACTIONS(7453), 1, - anon_sym_not_eq, - ACTIONS(7544), 1, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(7546), 1, - anon_sym_or, - STATE(3608), 1, - sym_argument_list, - STATE(3651), 1, - sym_subscript_argument_list, - ACTIONS(7425), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7429), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7431), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7435), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(7437), 2, + anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7439), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(7441), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7447), 2, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7421), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7443), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7006), 5, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - sym_identifier, - ACTIONS(7008), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [82841] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6720), 1, - anon_sym_LPAREN2, - ACTIONS(7423), 1, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(7427), 1, - anon_sym_DOT, - STATE(3608), 1, - sym_argument_list, - STATE(3651), 1, - sym_subscript_argument_list, - ACTIONS(7425), 2, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7429), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7091), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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, - ACTIONS(7089), 24, + ACTIONS(6619), 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_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___attribute__, + 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, - [82918] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + [34609] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7287), 26, - aux_sym_preproc_elif_token1, + STATE(2806), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7088), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6130), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -394087,30 +353681,20 @@ 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, - sym_identifier, - ACTIONS(7285), 29, + anon_sym_DASH_GT, + ACTIONS(6128), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -394124,22 +353708,30 @@ 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, - [82981] = 7, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [34678] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5467), 1, + ACTIONS(6693), 1, + anon_sym___attribute__, + ACTIONS(6943), 1, anon_sym_LBRACE, - ACTIONS(7564), 1, - anon_sym_LT, - STATE(3094), 1, - sym_template_argument_list, - ACTIONS(5469), 18, + STATE(2990), 1, + sym_enumerator_list, + STATE(3229), 1, + sym_attribute_specifier, + ACTIONS(5989), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -394150,26 +353742,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(5462), 33, + anon_sym_DASH_GT, + ACTIONS(5987), 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_LBRACK_LBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -394191,13 +353783,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [83052] = 4, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [34751] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(4827), 12, + ACTIONS(6892), 1, + anon_sym___attribute__, + ACTIONS(7041), 1, + anon_sym_LBRACE, + STATE(2986), 1, + sym_enumerator_list, + STATE(3211), 1, + sym_attribute_specifier, + ACTIONS(5989), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -394210,7 +353810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4835), 42, + ACTIONS(5987), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -394223,7 +353823,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_LT, anon_sym___extension__, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, @@ -394253,10 +353852,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [83117] = 3, + [34824] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6543), 12, + ACTIONS(5936), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -394268,8 +353867,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(6541), 43, + ACTIONS(5934), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -394283,6 +353883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym___extension__, anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_constexpr, @@ -394313,11 +353914,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [83180] = 3, + [34889] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7261), 26, - aux_sym_preproc_elif_token1, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(6991), 1, + anon_sym_LT, + STATE(3062), 1, + sym_template_argument_list, + ACTIONS(5938), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -394328,34 +353934,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_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_COLON, anon_sym_DOT, - sym_identifier, - ACTIONS(7259), 29, + anon_sym_DASH_GT, + ACTIONS(4789), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -394369,31 +353965,32 @@ 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, - [83243] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, - anon_sym_LBRACE, - ACTIONS(7470), 1, - anon_sym_LPAREN2, - ACTIONS(7472), 1, - anon_sym_LBRACK, - ACTIONS(7474), 1, sym_auto, - ACTIONS(7476), 1, anon_sym_decltype, - STATE(4037), 1, - sym_new_declarator, - STATE(4147), 1, - sym_decltype_auto, - STATE(4610), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6303), 16, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [34960] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2865), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6993), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4763), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -394408,17 +354005,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, - anon_sym_DASH_GT, - ACTIONS(6301), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4771), 33, + anon_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, @@ -394430,22 +354029,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_or, - anon_sym_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, - [83322] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [35029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7315), 26, - aux_sym_preproc_elif_token1, + ACTIONS(6090), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -394459,6 +354060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -394471,19 +354073,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7313), 29, + sym_auto, + anon_sym_decltype, + ACTIONS(6088), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_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, @@ -394501,10 +354105,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [83385] = 3, + [35094] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6197), 16, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7005), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -394519,22 +354139,23 @@ 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(4853), 39, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7007), 31, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_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___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -394546,26 +354167,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_or, - anon_sym_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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [83448] = 3, + [35173] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6990), 26, - aux_sym_preproc_elif_token1, + ACTIONS(2931), 1, + anon_sym_LBRACE, + ACTIONS(7120), 1, + anon_sym_LPAREN2, + ACTIONS(7122), 1, + anon_sym_LBRACK, + ACTIONS(7124), 1, + sym_auto, + ACTIONS(7126), 1, + anon_sym_decltype, + STATE(3352), 1, + sym_decltype_auto, + STATE(3445), 1, + sym_new_declarator, + STATE(4029), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5830), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -394575,36 +354204,24 @@ 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_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, - sym_identifier, - ACTIONS(6988), 29, + ACTIONS(5828), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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, @@ -394612,20 +354229,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_DOT_STAR, anon_sym_DASH_GT, - [83511] = 3, + anon_sym_GT2, + [35254] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7265), 26, - aux_sym_preproc_elif_token1, + ACTIONS(6284), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -394639,6 +354261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -394651,19 +354274,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7263), 29, + sym_auto, + anon_sym_decltype, + ACTIONS(6282), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_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, @@ -394681,10 +354306,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [83574] = 3, + [35319] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5460), 16, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7011), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -394699,22 +354340,23 @@ 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(5467), 39, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7013), 31, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_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___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -394726,25 +354368,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, + [35398] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2931), 1, + anon_sym_LBRACE, + ACTIONS(7120), 1, + anon_sym_LPAREN2, + ACTIONS(7122), 1, + anon_sym_LBRACK, + ACTIONS(7124), 1, + sym_auto, + ACTIONS(7126), 1, + anon_sym_decltype, + STATE(3352), 1, + sym_decltype_auto, + STATE(3388), 1, + sym_new_declarator, + STATE(4100), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5807), 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_bitor, anon_sym_xor, + anon_sym_DOT, + ACTIONS(5805), 28, + 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_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [83637] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [35479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6551), 12, + ACTIONS(5417), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -394756,8 +354460,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(6549), 43, + ACTIONS(5419), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -394771,6 +354476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym___extension__, anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_constexpr, @@ -394801,77 +354507,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [83700] = 25, + [35544] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, - anon_sym_LPAREN2, - ACTIONS(7423), 1, - anon_sym_LBRACK, - ACTIONS(7427), 1, - anon_sym_DOT, - ACTIONS(7433), 1, - anon_sym_AMP_AMP, - ACTIONS(7445), 1, - anon_sym_GT_EQ, - ACTIONS(7449), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7451), 1, - anon_sym_and, - ACTIONS(7453), 1, - anon_sym_not_eq, - ACTIONS(7544), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7546), 1, - anon_sym_or, - STATE(3608), 1, - sym_argument_list, - STATE(3651), 1, - sym_subscript_argument_list, - ACTIONS(7425), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7429), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7431), 2, + ACTIONS(6908), 1, + anon_sym___attribute__, + ACTIONS(7109), 1, + anon_sym_LBRACE, + ACTIONS(7111), 1, + anon_sym_COLON, + STATE(3125), 1, + sym_enum_base_clause, + STATE(3280), 1, + sym_enumerator_list, + STATE(3632), 1, + sym_attribute_specifier, + ACTIONS(6520), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7435), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(7437), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7439), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(7441), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7421), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7443), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7123), 5, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - sym_identifier, - ACTIONS(7125), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6522), 32, + anon_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, @@ -394883,13 +354561,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [83807] = 4, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [35621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7567), 1, - anon_sym_LPAREN2, - ACTIONS(2183), 26, - aux_sym_preproc_elif_token1, + ACTIONS(6078), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -394915,18 +354604,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(2185), 28, + sym_auto, + anon_sym_decltype, + ACTIONS(6076), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, + anon_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, @@ -394944,36 +354637,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [83872] = 10, + [35686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, - anon_sym_LPAREN2, - ACTIONS(7423), 1, - anon_sym_LBRACK, - ACTIONS(7427), 1, - anon_sym_DOT, - STATE(3608), 1, - sym_argument_list, - STATE(3651), 1, - sym_subscript_argument_list, - ACTIONS(7425), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7429), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7141), 22, + ACTIONS(5402), 20, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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(5404), 37, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -394985,36 +354683,26 @@ 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, - ACTIONS(7143), 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_LT_EQ_GT, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - sym_identifier, - [83949] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_DOT_DOT_GT, + [35751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5456), 25, + ACTIONS(6715), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -395028,33 +354716,27 @@ 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_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, - ACTIONS(5458), 30, + ACTIONS(6713), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -395066,20 +354748,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, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [84012] = 5, + anon_sym_try, + [35815] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7464), 1, - anon_sym_AMP_AMP, - ACTIONS(7468), 1, - anon_sym_and, - ACTIONS(6414), 25, - aux_sym_preproc_elif_token1, + ACTIONS(7138), 1, + anon_sym_LT, + STATE(2525), 1, + sym_template_argument_list, + ACTIONS(6576), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -395090,33 +354778,29 @@ 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, - anon_sym_bitor, + anon_sym_and, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6416), 28, + ACTIONS(6574), 37, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_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___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -395128,311 +354812,277 @@ 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, - [84079] = 27, + [35883] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, - anon_sym_LPAREN2, - ACTIONS(7423), 1, - anon_sym_LBRACK, - ACTIONS(7427), 1, + ACTIONS(6892), 1, + anon_sym___attribute__, + STATE(3207), 1, + sym_attribute_specifier, + ACTIONS(6052), 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(7433), 1, + ACTIONS(6050), 42, + 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, - ACTIONS(7445), 1, - anon_sym_GT_EQ, - ACTIONS(7449), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(7451), 1, + anon_sym_or, anon_sym_and, - ACTIONS(7453), 1, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7544), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7546), 1, - anon_sym_or, - ACTIONS(7550), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_QMARK, - STATE(3608), 1, - sym_argument_list, - STATE(3651), 1, - sym_subscript_argument_list, - ACTIONS(7425), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7429), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7431), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7435), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(7437), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7439), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(7441), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7421), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7443), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7061), 5, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - sym_identifier, - ACTIONS(7065), 14, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [84190] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [35951] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7257), 26, - aux_sym_preproc_elif_token1, + ACTIONS(6892), 1, + anon_sym___attribute__, + STATE(3216), 1, + sym_attribute_specifier, + ACTIONS(6062), 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_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_const, anon_sym_DOT, - sym_identifier, - ACTIONS(7255), 29, + ACTIONS(6060), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + 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___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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, - [84253] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [36019] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7383), 26, - aux_sym_preproc_elif_token1, + ACTIONS(6892), 1, + anon_sym___attribute__, + STATE(3217), 1, + sym_attribute_specifier, + ACTIONS(6070), 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_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_const, anon_sym_DOT, - sym_identifier, - ACTIONS(7381), 29, + ACTIONS(6068), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + 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___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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, - [84316] = 34, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [36087] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7478), 1, + ACTIONS(6892), 1, + anon_sym___attribute__, + STATE(3219), 1, + sym_attribute_specifier, + ACTIONS(6074), 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(6072), 42, anon_sym_DOT_DOT_DOT, - ACTIONS(7480), 1, anon_sym_COMMA, - ACTIONS(7488), 1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(7490), 1, anon_sym_AMP_AMP, - ACTIONS(7492), 1, - anon_sym_PIPE, - ACTIONS(7496), 1, - anon_sym_AMP, - ACTIONS(7502), 1, - anon_sym_GT_EQ, - ACTIONS(7506), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(7508), 1, - anon_sym_EQ, - ACTIONS(7510), 1, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - ACTIONS(7516), 1, anon_sym_LT_EQ_GT, - ACTIONS(7518), 1, anon_sym_or, - ACTIONS(7520), 1, anon_sym_and, - ACTIONS(7522), 1, anon_sym_bitor, - ACTIONS(7524), 1, - anon_sym_bitand, - ACTIONS(7530), 1, - anon_sym_DOT_STAR, - ACTIONS(7532), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(7569), 1, - anon_sym_RPAREN, - STATE(1354), 1, - sym_binary_fold_operator, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - STATE(9905), 1, - sym_fold_operator, - ACTIONS(7484), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7494), 2, - anon_sym_CARET, anon_sym_xor, - ACTIONS(7504), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7526), 2, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7528), 2, - anon_sym_DOT, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7486), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7498), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7500), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7514), 3, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(7512), 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, - [84441] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [36155] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7323), 26, - aux_sym_preproc_elif_token1, + ACTIONS(6693), 1, + anon_sym___attribute__, + STATE(3233), 1, + sym_attribute_specifier, + ACTIONS(6022), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -395447,30 +355097,22 @@ 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, - sym_identifier, - ACTIONS(7321), 29, + anon_sym_DASH_GT, + ACTIONS(6020), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_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, @@ -395483,92 +355125,167 @@ 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, - [84504] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [36223] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7399), 26, - aux_sym_preproc_elif_token1, + ACTIONS(6892), 1, + anon_sym___attribute__, + STATE(3224), 1, + sym_attribute_specifier, + ACTIONS(6096), 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6094), 42, + 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___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [36291] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6892), 1, + anon_sym___attribute__, + STATE(3225), 1, + sym_attribute_specifier, + ACTIONS(6100), 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_identifier, - ACTIONS(7397), 29, + ACTIONS(6098), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + 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___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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, - [84567] = 11, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [36359] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3053), 1, + ACTIONS(2989), 1, anon_sym_LBRACE, - ACTIONS(7470), 1, + ACTIONS(7141), 1, anon_sym_LPAREN2, - ACTIONS(7472), 1, + ACTIONS(7143), 1, anon_sym_LBRACK, - ACTIONS(7474), 1, + ACTIONS(7145), 1, sym_auto, - ACTIONS(7476), 1, + ACTIONS(7147), 1, anon_sym_decltype, - STATE(3986), 1, + STATE(3649), 1, sym_new_declarator, - STATE(4147), 1, + STATE(3650), 1, sym_decltype_auto, - STATE(4634), 2, + STATE(4118), 2, sym_argument_list, sym_initializer_list, - ACTIONS(6318), 16, + ACTIONS(5807), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -395583,12 +355300,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(6316), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5805), 28, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -395605,21 +355321,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_or, - anon_sym_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, - [84646] = 3, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [36439] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6680), 19, + ACTIONS(6693), 1, + anon_sym___attribute__, + STATE(3260), 1, + sym_attribute_specifier, + ACTIONS(6026), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -395639,7 +355360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6678), 36, + ACTIONS(6024), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -395649,7 +355370,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -395676,11 +355396,14 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [84709] = 3, + [36507] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6496), 26, - aux_sym_preproc_elif_token1, + ACTIONS(6693), 1, + anon_sym___attribute__, + STATE(3245), 1, + sym_attribute_specifier, + ACTIONS(6096), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -395695,30 +355418,22 @@ 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, - sym_identifier, - ACTIONS(6498), 29, + anon_sym_DASH_GT, + ACTIONS(6094), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_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, @@ -395731,131 +355446,92 @@ 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, - [84772] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6720), 1, - anon_sym_LPAREN2, - ACTIONS(7423), 1, - anon_sym_LBRACK, - ACTIONS(7427), 1, - anon_sym_DOT, - STATE(3608), 1, - sym_argument_list, - STATE(3651), 1, - sym_subscript_argument_list, - ACTIONS(7425), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7429), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7099), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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, - ACTIONS(7097), 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_LT_EQ_GT, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - sym_identifier, - [84849] = 9, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [36575] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7423), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7427), 1, + ACTIONS(7043), 1, anon_sym_DOT, - STATE(3608), 1, + ACTIONS(7090), 1, + anon_sym_EQ, + ACTIONS(7092), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7153), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7155), 1, + anon_sym_AMP_AMP, + ACTIONS(7157), 1, + anon_sym_PIPE, + ACTIONS(7161), 1, + anon_sym_AMP, + ACTIONS(7167), 1, + anon_sym_GT_EQ, + ACTIONS(7171), 1, + anon_sym_QMARK, + ACTIONS(7173), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7175), 1, + anon_sym_or, + ACTIONS(7177), 1, + anon_sym_and, + ACTIONS(7179), 1, + anon_sym_bitor, + ACTIONS(7181), 1, + anon_sym_bitand, + STATE(2617), 1, sym_argument_list, - STATE(3651), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7429), 2, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7057), 24, + ACTIONS(7149), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7159), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7169), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7151), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7163), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7165), 3, 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, - sym_identifier, - ACTIONS(7059), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(7094), 19, + ts_builtin_sym_end, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -395866,14 +355542,14 @@ 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, - [84924] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [36689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6500), 26, - aux_sym_preproc_elif_token1, + ACTIONS(5374), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -395888,31 +355564,21 @@ 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, - sym_identifier, - ACTIONS(6502), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(5381), 37, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -395924,23 +355590,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, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [84987] = 7, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_DOT_DOT_GT, + [36753] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5467), 1, - anon_sym_LBRACE, - ACTIONS(5740), 1, - anon_sym_LT, - STATE(3578), 1, - sym_template_argument_list, - ACTIONS(5469), 19, + ACTIONS(6693), 1, + anon_sym___attribute__, + STATE(3306), 1, + sym_attribute_specifier, + ACTIONS(6052), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -395951,16 +355624,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_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5462), 32, + ACTIONS(6050), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -395970,7 +355643,8 @@ 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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -395992,15 +355666,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [85058] = 5, + [36821] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, + ACTIONS(6808), 1, anon_sym___attribute__, - STATE(3741), 1, + ACTIONS(6976), 1, + anon_sym_LBRACE, + STATE(3148), 1, + sym_enumerator_list, + STATE(3505), 1, sym_attribute_specifier, - ACTIONS(6494), 20, + ACTIONS(5983), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -396021,7 +355701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6492), 33, + ACTIONS(5981), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -396029,7 +355709,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, @@ -396055,10 +355734,12 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [85125] = 3, + [36893] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3078), 26, + ACTIONS(5929), 1, + sym_literal_suffix, + ACTIONS(4773), 26, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -396085,7 +355766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(3080), 29, + ACTIONS(4765), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -396115,11 +355796,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [85188] = 3, + [36959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7217), 26, - aux_sym_preproc_elif_token1, + ACTIONS(6199), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -396145,19 +355825,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7215), 29, + sym_auto, + anon_sym_decltype, + ACTIONS(6197), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_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, @@ -396175,11 +355857,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [85251] = 3, + [37023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3096), 26, - aux_sym_preproc_elif_token1, + ACTIONS(4763), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -396205,19 +355886,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(3094), 29, + sym_auto, + anon_sym_decltype, + ACTIONS(4771), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_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, @@ -396235,10 +355918,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [85314] = 3, + [37087] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 25, + ACTIONS(6693), 1, + anon_sym___attribute__, + STATE(3241), 1, + sym_attribute_specifier, + ACTIONS(6062), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -396253,30 +355940,21 @@ 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, - sym_identifier, - ACTIONS(5479), 30, + anon_sym_DASH_GT, + ACTIONS(6060), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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, @@ -396290,16 +355968,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_DOT_STAR, - anon_sym_DASH_GT, - [85377] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [37155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7225), 26, - aux_sym_preproc_elif_token1, + ACTIONS(4763), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -396325,19 +356010,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7223), 29, + sym_auto, + anon_sym_decltype, + ACTIONS(4771), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_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, @@ -396355,87 +356042,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [85440] = 34, + [37219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7480), 1, - anon_sym_COMMA, - ACTIONS(7488), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7490), 1, - anon_sym_AMP_AMP, - ACTIONS(7492), 1, - anon_sym_PIPE, - ACTIONS(7496), 1, - anon_sym_AMP, - ACTIONS(7502), 1, - anon_sym_GT_EQ, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7508), 1, - anon_sym_EQ, - ACTIONS(7510), 1, - anon_sym_QMARK, - ACTIONS(7516), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7518), 1, - anon_sym_or, - ACTIONS(7520), 1, - anon_sym_and, - ACTIONS(7522), 1, - anon_sym_bitor, - ACTIONS(7524), 1, - anon_sym_bitand, - ACTIONS(7530), 1, - anon_sym_DOT_STAR, - ACTIONS(7532), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(7571), 1, - anon_sym_RPAREN, - STATE(1354), 1, - sym_binary_fold_operator, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - STATE(9905), 1, - sym_fold_operator, - ACTIONS(7484), 2, + ACTIONS(6216), 27, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7494), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7504), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7526), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7486), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7498), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7500), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7514), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - ACTIONS(7512), 10, + 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(6214), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_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, @@ -396446,11 +356098,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [85565] = 3, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [37283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 26, - aux_sym_preproc_elif_token1, + ACTIONS(6220), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -396476,19 +356132,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7325), 29, + sym_auto, + anon_sym_decltype, + ACTIONS(6218), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_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, @@ -396506,11 +356164,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [85628] = 3, + [37347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7360), 26, - aux_sym_preproc_elif_token1, + ACTIONS(6224), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -396536,19 +356193,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7358), 29, + sym_auto, + anon_sym_decltype, + ACTIONS(6222), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_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, @@ -396566,11 +356225,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [85691] = 3, + [37411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6345), 26, - aux_sym_preproc_elif_token1, + ACTIONS(6228), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -396596,19 +356254,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6347), 29, + sym_auto, + anon_sym_decltype, + ACTIONS(6226), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_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, @@ -396626,12 +356286,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [85754] = 4, + [37475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(4827), 20, + ACTIONS(6195), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -396641,25 +356299,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_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(4835), 33, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6193), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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, @@ -396669,33 +356338,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_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [85818] = 5, + [37539] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4368), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(7573), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(4346), 20, - anon_sym_BANG, + ACTIONS(6693), 1, + anon_sym___attribute__, + STATE(3320), 1, + sym_attribute_specifier, + ACTIONS(6100), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -396710,19 +356369,24 @@ static const uint16_t ts_small_parse_table[] = { 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_DOT, anon_sym_DASH_GT, - ACTIONS(4344), 31, + ACTIONS(6098), 35, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_TILDE, + anon_sym_RPAREN, + anon_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, @@ -396736,21 +356400,20 @@ static const uint16_t ts_small_parse_table[] = { 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_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [85884] = 3, + [37607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7135), 25, + ACTIONS(6244), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -396776,7 +356439,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7133), 29, + sym_auto, + anon_sym_decltype, + ACTIONS(6242), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -396806,14 +356471,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [85946] = 5, + [37671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7575), 1, - anon_sym_LT, - STATE(3626), 1, - sym_template_argument_list, - ACTIONS(7277), 24, + ACTIONS(5983), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -396824,6 +356485,7 @@ 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, @@ -396838,7 +356500,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7275), 28, + sym_auto, + anon_sym_decltype, + ACTIONS(5981), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -396850,6 +356514,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, @@ -396867,12 +356532,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [86012] = 4, + [37735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5953), 1, - sym_literal_suffix, - ACTIONS(4837), 25, + ACTIONS(6252), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -396898,7 +356561,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4829), 28, + sym_auto, + anon_sym_decltype, + ACTIONS(6250), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -396910,6 +356575,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, @@ -396927,541 +356593,254 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [86076] = 3, + [37799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6640), 12, + ACTIONS(6256), 27, 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(6638), 42, - 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___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [86138] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4827), 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_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4835), 42, - 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___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_DOT, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [86200] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6664), 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(6662), 42, + ACTIONS(6254), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - 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___extension__, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [86262] = 3, + [37863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6668), 12, + ACTIONS(6260), 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_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(6666), 42, - 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___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_DOT, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [86324] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6672), 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(6670), 42, + ACTIONS(6258), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - 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___extension__, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [86386] = 3, + [37927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6676), 12, + ACTIONS(5417), 26, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_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_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(6674), 42, - 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___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [86448] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6604), 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(6602), 42, + sym_identifier, + ACTIONS(5419), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - 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___extension__, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [86510] = 3, + [37991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6547), 12, + ACTIONS(6272), 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_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(6545), 42, - 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___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_DOT, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [86572] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6239), 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(6237), 42, + ACTIONS(6270), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - 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___extension__, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [86634] = 3, + [38055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 19, + ACTIONS(5989), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -397475,26 +356854,34 @@ 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_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(5479), 35, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5987), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -397506,1213 +356893,1183 @@ 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, - [86696] = 3, + [38119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6555), 12, + ACTIONS(6276), 27, 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(6553), 42, - 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___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [86758] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6559), 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_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(6557), 42, - 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___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_DOT, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [86820] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6563), 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(6561), 42, + ACTIONS(6274), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - 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___extension__, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [86882] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5754), 1, - anon_sym___attribute__, - ACTIONS(5756), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5758), 1, - anon_sym___declspec, - ACTIONS(5760), 1, - anon_sym_virtual, - ACTIONS(5762), 1, - anon_sym_alignas, - ACTIONS(7582), 1, - sym_auto, - ACTIONS(7584), 1, - anon_sym_decltype, - STATE(4854), 1, - sym_decltype_auto, - STATE(3945), 2, - sym_declaration_modifiers, - aux_sym_declaration_specifiers_repeat1, - ACTIONS(7578), 6, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - STATE(5060), 7, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - ACTIONS(5752), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(7580), 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, - ACTIONS(5750), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [86968] = 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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [38183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6588), 12, + ACTIONS(6401), 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_const, + 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(6586), 42, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6399), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - 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___extension__, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [87030] = 3, + [38247] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6310), 12, + ACTIONS(6693), 1, + anon_sym___attribute__, + STATE(3277), 1, + sym_attribute_specifier, + ACTIONS(6070), 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(6308), 42, + anon_sym_DASH_GT, + ACTIONS(6068), 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___extension__, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_or, - anon_sym_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, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [87092] = 3, + anon_sym_DASH_GT_STAR, + [38315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6596), 12, + ACTIONS(6288), 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_const, + 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(6594), 42, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6286), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - 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___extension__, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [87154] = 3, + [38379] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6600), 12, + ACTIONS(6292), 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_const, + 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(6598), 42, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6290), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - 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___extension__, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [87216] = 3, + [38443] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 12, + ACTIONS(6693), 1, + anon_sym___attribute__, + STATE(3215), 1, + sym_attribute_specifier, + ACTIONS(6032), 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(6606), 42, + anon_sym_DASH_GT, + ACTIONS(6030), 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___extension__, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_or, - anon_sym_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, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [87278] = 3, + anon_sym_DASH_GT_STAR, + [38511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6612), 12, + ACTIONS(6296), 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_const, + 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(6610), 42, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6294), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - 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___extension__, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [87340] = 3, + [38575] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6616), 12, + ACTIONS(6693), 1, + anon_sym___attribute__, + STATE(3222), 1, + sym_attribute_specifier, + ACTIONS(6036), 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(6614), 42, + anon_sym_DASH_GT, + ACTIONS(6034), 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___extension__, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_or, - anon_sym_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, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [87402] = 3, + anon_sym_DASH_GT_STAR, + [38643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6630), 12, + ACTIONS(5394), 26, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_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_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(6628), 42, + sym_identifier, + ACTIONS(5396), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - 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___extension__, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [38707] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5398), 26, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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_identifier, + ACTIONS(5400), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_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_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [87464] = 3, + [38771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6684), 12, + ACTIONS(5402), 26, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_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_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(6682), 42, + sym_identifier, + ACTIONS(5404), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - 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___extension__, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [38835] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5929), 1, + sym_literal_suffix, + ACTIONS(4773), 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(4765), 31, + ts_builtin_sym_end, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [87526] = 3, + [38901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6688), 12, + ACTIONS(6300), 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_const, + 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(6686), 42, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6298), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - 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___extension__, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [87588] = 3, + [38965] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6694), 12, + ACTIONS(6693), 1, + anon_sym___attribute__, + STATE(3208), 1, + sym_attribute_specifier, + ACTIONS(6074), 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(6692), 42, + anon_sym_DASH_GT, + ACTIONS(6072), 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___extension__, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_or, - anon_sym_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, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [87650] = 3, + anon_sym_DASH_GT_STAR, + [39033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6572), 12, + ACTIONS(6318), 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_const, + 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(6570), 42, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6316), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - 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___extension__, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [87712] = 3, + [39097] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6658), 12, + ACTIONS(6322), 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_const, + 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(6656), 42, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6320), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - 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___extension__, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [87774] = 3, + [39161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6522), 12, + ACTIONS(6326), 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_const, + 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(6520), 42, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6324), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - 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___extension__, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [87836] = 3, + [39225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6644), 12, + ACTIONS(6330), 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_const, + 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(6642), 42, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6328), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - 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___extension__, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [87898] = 3, + [39289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6654), 12, + ACTIONS(6334), 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_const, + 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(6652), 42, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6332), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - 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___extension__, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [87960] = 3, + [39353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4382), 26, + ACTIONS(6338), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -398726,7 +358083,6 @@ 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_and_eq, anon_sym_or_eq, @@ -398739,7 +358095,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4384), 28, + sym_auto, + anon_sym_decltype, + ACTIONS(6336), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -398751,7 +358109,8 @@ 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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -398768,10 +358127,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [88022] = 3, + [39417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4378), 26, + ACTIONS(5425), 26, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -398785,7 +358145,6 @@ 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_and_eq, anon_sym_or_eq, @@ -398798,19 +358157,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4380), 28, + ACTIONS(5427), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -398827,12 +358188,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [88084] = 4, + [39481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7586), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6970), 26, + ACTIONS(5421), 26, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -398846,7 +358206,6 @@ 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_and_eq, anon_sym_or_eq, @@ -398859,18 +358218,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6968), 27, + ACTIONS(5423), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_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, @@ -398887,10 +358249,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [88148] = 3, + [39545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7305), 26, + ACTIONS(5429), 26, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -398916,13 +358279,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(7307), 28, + ACTIONS(5431), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -398930,6 +358293,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, @@ -398946,18 +358310,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [88210] = 7, + [39609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5467), 1, - anon_sym_LBRACE, - ACTIONS(5767), 1, - anon_sym_LT, - STATE(3686), 1, - sym_template_argument_list, - ACTIONS(5469), 18, + ACTIONS(6342), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -398968,24 +358324,36 @@ 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_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(5462), 32, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6340), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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, @@ -398998,26 +358366,15 @@ 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, - [88280] = 5, + anon_sym_DASH_GT, + [39673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7538), 1, - anon_sym_LBRACK_LBRACK, - STATE(3572), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6884), 20, + ACTIONS(6346), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -399031,23 +358388,34 @@ 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_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(6882), 31, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6344), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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, @@ -399059,29 +358427,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, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [88346] = 7, + anon_sym_DASH_GT, + [39737] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1827), 1, + sym_string_literal, + ACTIONS(7187), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(7185), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(7183), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + 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_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [39805] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6801), 1, + ACTIONS(6808), 1, anon_sym___attribute__, - ACTIONS(7247), 1, + ACTIONS(6976), 1, anon_sym_LBRACE, - STATE(3615), 1, + STATE(3150), 1, sym_enumerator_list, - STATE(3991), 1, + STATE(3420), 1, sym_attribute_specifier, - ACTIONS(6239), 16, + ACTIONS(5989), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -399091,23 +358516,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(6237), 34, + ACTIONS(5987), 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, @@ -399116,27 +358543,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_or, - anon_sym_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, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [88416] = 3, + anon_sym_GT2, + [39877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6592), 12, + ACTIONS(5374), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -399149,7 +358576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(6590), 42, + ACTIONS(5381), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -399162,6 +358589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_LT, anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_constexpr, @@ -399174,6 +358602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -399192,49 +358621,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [88478] = 8, + [39941] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7588), 1, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7128), 1, + anon_sym_EQ, + ACTIONS(7153), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7155), 1, + anon_sym_AMP_AMP, + ACTIONS(7157), 1, + anon_sym_PIPE, + ACTIONS(7161), 1, + anon_sym_AMP, + ACTIONS(7167), 1, + anon_sym_GT_EQ, + ACTIONS(7173), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7175), 1, + anon_sym_or, + ACTIONS(7177), 1, + anon_sym_and, + ACTIONS(7179), 1, + anon_sym_bitor, + ACTIONS(7181), 1, + anon_sym_bitand, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7149), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7159), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7169), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7151), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7163), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7165), 3, + anon_sym_GT, + anon_sym_LT_EQ, anon_sym_LT, - STATE(4106), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6753), 1, - sym_template_argument_list, - ACTIONS(7590), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5957), 5, + ACTIONS(7130), 21, + ts_builtin_sym_end, + 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, + [40051] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7189), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7191), 1, + anon_sym_AMP_AMP, + ACTIONS(7193), 1, + anon_sym_or, + ACTIONS(7195), 1, + anon_sym_and, + ACTIONS(6677), 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_xor, + anon_sym_DOT, + ACTIONS(6679), 36, + ts_builtin_sym_end, + 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_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, + anon_sym_RBRACK, anon_sym_COLON, - ACTIONS(5959), 41, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, + [40123] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5934), 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(5936), 42, + anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -399245,21 +358815,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_GT2, + anon_sym_template, + anon_sym_operator, anon_sym_try, anon_sym_requires, - [88550] = 3, + [40187] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 26, + ACTIONS(6693), 1, + anon_sym___attribute__, + STATE(3286), 1, + sym_attribute_specifier, + ACTIONS(6086), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -399273,32 +358852,24 @@ 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_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, - ACTIONS(7069), 28, + anon_sym_DASH_GT, + ACTIONS(6084), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -399310,17 +358881,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_DOT_STAR, - anon_sym_DASH_GT, - [88612] = 4, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [40255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6197), 25, + ACTIONS(6016), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -399346,7 +358923,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4853), 28, + sym_auto, + anon_sym_decltype, + ACTIONS(6018), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -399358,6 +358937,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, @@ -399375,49 +358955,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [88676] = 8, + [40319] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7592), 1, - anon_sym_LT, - STATE(4106), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4370), 1, - sym_template_argument_list, - ACTIONS(7590), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4827), 5, + ACTIONS(6693), 1, + anon_sym___attribute__, + STATE(3296), 1, + sym_attribute_specifier, + ACTIONS(6104), 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(6102), 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___inline, - anon_sym_const, - anon_sym_COLON, - ACTIONS(4835), 41, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [40387] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5381), 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_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + ACTIONS(5374), 44, + anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -399428,56 +359065,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + sym_primitive_type, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [88748] = 7, + [40451] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6801), 1, - anon_sym___attribute__, - ACTIONS(7247), 1, - anon_sym_LBRACE, - STATE(3629), 1, - sym_enumerator_list, - STATE(4009), 1, - sym_attribute_specifier, - ACTIONS(6310), 16, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7116), 1, + anon_sym_EQ, + ACTIONS(7153), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7155), 1, + anon_sym_AMP_AMP, + ACTIONS(7157), 1, + anon_sym_PIPE, + ACTIONS(7161), 1, + anon_sym_AMP, + ACTIONS(7167), 1, + anon_sym_GT_EQ, + ACTIONS(7173), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7175), 1, + anon_sym_or, + ACTIONS(7177), 1, + anon_sym_and, + ACTIONS(7179), 1, + anon_sym_bitor, + ACTIONS(7181), 1, + anon_sym_bitand, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7149), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7159), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7169), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7151), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7163), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7165), 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(6308), 34, + ACTIONS(7118), 21, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_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, @@ -399489,23 +359160,14 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [88818] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [40561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5481), 19, + ACTIONS(7197), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -399519,26 +359181,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_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(5483), 35, + sym_identifier, + sym_literal_suffix, + ACTIONS(7199), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -399550,21 +359219,15 @@ 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, - [88880] = 3, + [40625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 19, + ACTIONS(5417), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -399578,26 +359241,24 @@ 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_COLON, anon_sym_DOT, - ACTIONS(5502), 35, + anon_sym_DASH_GT, + ACTIONS(5419), 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___attribute__, 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, @@ -399609,21 +359270,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_or, + anon_sym_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, - [88942] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [40689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 19, + ACTIONS(5394), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -399637,26 +359302,24 @@ 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_COLON, anon_sym_DOT, - ACTIONS(5498), 35, + anon_sym_DASH_GT, + ACTIONS(5396), 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___attribute__, 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, @@ -399668,23 +359331,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_or, + anon_sym_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, - [89004] = 4, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [40753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5460), 25, + ACTIONS(5398), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -399699,29 +359364,22 @@ 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_COLON, anon_sym_DOT, - sym_identifier, - ACTIONS(5467), 28, + anon_sym_DASH_GT, + ACTIONS(5400), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -399735,14 +359393,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, - [89068] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [40817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6268), 25, + ACTIONS(5402), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -399757,30 +359425,22 @@ 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_COLON, anon_sym_DOT, - sym_identifier, - ACTIONS(6270), 29, + anon_sym_DASH_GT, + ACTIONS(5404), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -399794,14 +359454,31 @@ 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, - [89130] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [40881] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7139), 26, + STATE(2963), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7136), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4763), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -399815,32 +359492,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_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, - ACTIONS(7137), 28, + anon_sym_DASH_GT, + ACTIONS(4771), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -399853,14 +359519,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_DOT_STAR, - anon_sym_DASH_GT, - [89192] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [40949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5518), 25, + ACTIONS(5421), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -399875,30 +359549,22 @@ 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_COLON, anon_sym_DOT, - sym_identifier, - ACTIONS(5525), 29, + anon_sym_DASH_GT, + ACTIONS(5423), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -399912,14 +359578,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, - [89254] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [41013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7075), 26, + ACTIONS(5429), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -399933,32 +359609,24 @@ 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_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_COLON, anon_sym_DOT, - sym_identifier, - ACTIONS(7073), 28, + anon_sym_DASH_GT, + ACTIONS(5431), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -399971,52 +359639,67 @@ 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, - [89316] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [41077] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4827), 12, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5374), 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_const, + anon_sym_EQ, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(4835), 42, + anon_sym_DASH_GT, + ACTIONS(5381), 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_LT_LT, - anon_sym___extension__, + anon_sym_GT_EQ, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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, @@ -400027,50 +359710,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [89378] = 5, + anon_sym_DASH_GT_STAR, + [41143] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 1, - anon_sym___attribute__, - STATE(3913), 1, - sym_attribute_specifier, - ACTIONS(6388), 19, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6691), 1, + anon_sym_EQ, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7092), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7153), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7155), 1, + anon_sym_AMP_AMP, + ACTIONS(7157), 1, + anon_sym_PIPE, + ACTIONS(7161), 1, + anon_sym_AMP, + ACTIONS(7167), 1, + anon_sym_GT_EQ, + ACTIONS(7171), 1, + anon_sym_QMARK, + ACTIONS(7173), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7175), 1, + anon_sym_or, + ACTIONS(7177), 1, + anon_sym_and, + ACTIONS(7179), 1, + anon_sym_bitor, + ACTIONS(7181), 1, + anon_sym_bitand, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7149), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7159), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7169), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7151), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7163), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7165), 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, - ACTIONS(6386), 33, - anon_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(6689), 19, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -400084,25 +359801,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [89444] = 5, + [41257] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 1, - anon_sym___attribute__, - STATE(3923), 1, - sym_attribute_specifier, - ACTIONS(6392), 19, + ACTIONS(2989), 1, + anon_sym_LBRACE, + ACTIONS(7141), 1, + anon_sym_LPAREN2, + ACTIONS(7143), 1, + anon_sym_LBRACK, + ACTIONS(7145), 1, + sym_auto, + ACTIONS(7147), 1, + anon_sym_decltype, + STATE(3565), 1, + sym_new_declarator, + STATE(3650), 1, + sym_decltype_auto, + STATE(4193), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5759), 19, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -400122,15 +359841,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6390), 33, - anon_sym_LPAREN2, + ACTIONS(5757), 28, 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, @@ -400153,13 +359869,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_DOT_DOT_DOT_GT, - [89510] = 3, + [41337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5507), 19, + ACTIONS(5936), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -400173,26 +359887,24 @@ 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_COLON, anon_sym_DOT, - ACTIONS(5509), 35, + anon_sym_DASH_GT, + ACTIONS(5934), 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___attribute__, 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, @@ -400204,21 +359916,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_or, + anon_sym_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, - [89572] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [41401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5511), 19, + ACTIONS(5433), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -400232,26 +359948,24 @@ 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_COLON, anon_sym_DOT, - ACTIONS(5513), 35, + anon_sym_DASH_GT, + ACTIONS(5438), 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___attribute__, 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, @@ -400263,26 +359977,47 @@ 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_or, + anon_sym_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, - [89634] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [41465] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5456), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7151), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7019), 14, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -400291,26 +360026,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(5458), 35, + ACTIONS(7021), 30, + ts_builtin_sym_end, 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_GT_EQ, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -400329,47 +360061,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + [41545] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7155), 1, + anon_sym_AMP_AMP, + ACTIONS(7157), 1, + anon_sym_PIPE, + ACTIONS(7161), 1, + anon_sym_AMP, + ACTIONS(7167), 1, + anon_sym_GT_EQ, + ACTIONS(7173), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7177), 1, + anon_sym_and, + ACTIONS(7179), 1, + anon_sym_bitor, + ACTIONS(7181), 1, + anon_sym_bitand, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7009), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7019), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [89696] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7600), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(7598), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(7596), 20, - anon_sym_BANG, + ACTIONS(7149), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(7159), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + anon_sym_xor, + ACTIONS(7169), 2, 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(7594), 31, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(7151), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7163), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(7165), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7021), 22, + ts_builtin_sym_end, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -400383,53 +360143,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_compl, + [41651] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7157), 1, + anon_sym_PIPE, + ACTIONS(7161), 1, + anon_sym_AMP, + ACTIONS(7167), 1, + anon_sym_GT_EQ, + ACTIONS(7173), 1, anon_sym_LT_EQ_GT, + ACTIONS(7179), 1, anon_sym_bitor, + ACTIONS(7181), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7009), 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, - [89762] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6716), 1, - anon_sym___attribute__, - STATE(3819), 1, - sym_attribute_specifier, - ACTIONS(6424), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7149), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(7159), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + anon_sym_xor, + ACTIONS(7169), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7019), 3, anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6422), 33, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(7151), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7163), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_not_eq, + ACTIONS(7165), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7021), 23, + ts_builtin_sym_end, + 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, @@ -400444,53 +360223,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + [41753] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7161), 1, + anon_sym_AMP, + ACTIONS(7167), 1, + anon_sym_GT_EQ, + ACTIONS(7173), 1, anon_sym_LT_EQ_GT, - anon_sym_bitor, + ACTIONS(7181), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7009), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [89828] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6716), 1, - anon_sym___attribute__, - STATE(3831), 1, - sym_attribute_specifier, - ACTIONS(6428), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(7149), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7159), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7169), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7151), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7163), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7165), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7019), 4, + anon_sym_PIPE, anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6426), 33, - anon_sym_LPAREN2, + ACTIONS(7021), 24, + ts_builtin_sym_end, + 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_LBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -400505,53 +360300,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, + [41851] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7161), 1, + anon_sym_AMP, + ACTIONS(7167), 1, + anon_sym_GT_EQ, + ACTIONS(7173), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7181), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7009), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [89894] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6716), 1, - anon_sym___attribute__, - STATE(3837), 1, - sym_attribute_specifier, - ACTIONS(6432), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(7149), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7169), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7151), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7163), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7165), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7019), 6, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(6430), 33, - anon_sym_LPAREN2, + ACTIONS(7021), 24, + ts_builtin_sym_end, + 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_LBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -400566,53 +360377,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, + [41947] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7167), 1, + anon_sym_GT_EQ, + ACTIONS(7173), 1, + anon_sym_LT_EQ_GT, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7009), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [89960] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6716), 1, - anon_sym___attribute__, - STATE(3840), 1, - sym_attribute_specifier, - ACTIONS(6436), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(7149), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7169), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7151), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7163), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7165), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7019), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(6434), 33, - anon_sym_LPAREN2, + ACTIONS(7021), 25, + ts_builtin_sym_end, + 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_LBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -400627,60 +360451,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, - anon_sym_not_eq, + [42039] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7167), 1, + anon_sym_GT_EQ, + ACTIONS(7173), 1, + anon_sym_LT_EQ_GT, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7009), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [90026] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6912), 26, + ACTIONS(7149), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7169), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7151), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7165), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, + ACTIONS(7019), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, 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_identifier, - ACTIONS(6910), 28, + ACTIONS(7021), 28, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + 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_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -400692,47 +360521,67 @@ 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, + anon_sym_bitand, + anon_sym_not_eq, + [42129] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7173), 1, anon_sym_LT_EQ_GT, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7009), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [90088] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6716), 1, - anon_sym___attribute__, - STATE(3860), 1, - sym_attribute_specifier, - ACTIONS(6454), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(7149), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7169), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7151), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7019), 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_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(6452), 33, - anon_sym_LPAREN2, + ACTIONS(7021), 29, + ts_builtin_sym_end, + 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_LBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -400747,31 +360596,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + [42215] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7009), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [90154] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6716), 1, - anon_sym___attribute__, - STATE(3868), 1, - sym_attribute_specifier, - ACTIONS(6322), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(7149), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7151), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7019), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -400784,16 +360638,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(6320), 33, - anon_sym_LPAREN2, + ACTIONS(7021), 30, + ts_builtin_sym_end, + 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_LBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -400812,50 +360669,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + [42297] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7009), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [90220] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7608), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(7606), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(7604), 20, - anon_sym_BANG, + ACTIONS(7149), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7169), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7151), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7019), 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_not, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DASH_GT, - ACTIONS(7602), 31, + ACTIONS(7021), 30, + ts_builtin_sym_end, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_TILDE, + 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, @@ -400869,26 +360736,145 @@ static const uint16_t ts_small_parse_table[] = { 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, - [90286] = 5, + [42381] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 1, + STATE(1831), 1, + sym_string_literal, + ACTIONS(7187), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(7185), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(7183), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - STATE(3870), 1, - sym_attribute_specifier, - ACTIONS(6458), 19, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + 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_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [42449] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5419), 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(5417), 42, + anon_sym_AMP, + anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [42513] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2371), 1, + anon_sym_LBRACE, + ACTIONS(6858), 1, + anon_sym_LPAREN2, + STATE(3424), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6373), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -400903,18 +360889,28 @@ 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(6456), 33, - anon_sym_LPAREN2, + sym_identifier, + ACTIONS(6371), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, 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, @@ -400927,29 +360923,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_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [90352] = 5, + [42583] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 1, - anon_sym___attribute__, - STATE(3881), 1, - sym_attribute_specifier, - ACTIONS(6462), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5938), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -400964,17 +360948,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_COLON, anon_sym_DOT, - ACTIONS(6460), 33, + anon_sym_DASH_GT, + ACTIONS(4789), 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___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -400988,24 +360975,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_or, + anon_sym_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, sym_auto, anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [90418] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [42649] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6640), 19, + ACTIONS(7201), 1, + anon_sym_LT, + STATE(2485), 1, + sym_template_argument_list, + ACTIONS(7100), 25, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -401016,26 +361009,33 @@ 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_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(6638), 35, + sym_identifier, + ACTIONS(7098), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_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, @@ -401048,23 +361048,15 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [90480] = 3, + anon_sym_DASH_GT, + [42717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4827), 19, + ACTIONS(7197), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -401079,12 +361071,19 @@ 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, - anon_sym_DASH_GT, - ACTIONS(4835), 35, + sym_literal_suffix, + ACTIONS(7199), 31, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -401094,8 +361093,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, @@ -401107,28 +361109,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_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [90542] = 5, + anon_sym_DASH_GT, + [42781] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 1, - anon_sym___attribute__, - STATE(3902), 1, - sym_attribute_specifier, - ACTIONS(6494), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(2371), 1, + anon_sym_LBRACE, + ACTIONS(6858), 1, + anon_sym_LPAREN2, + STATE(3436), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6377), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -401143,18 +361139,28 @@ 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(6492), 33, - anon_sym_LPAREN2, + sym_identifier, + ACTIONS(6375), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, 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, @@ -401167,31 +361173,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, anon_sym_DOT_STAR, anon_sym_DASH_GT, + [42851] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1829), 1, + sym_string_literal, + ACTIONS(7187), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(7185), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(7183), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + 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_DOT_DOT_GT, - [90608] = 6, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [42919] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2856), 1, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5381), 1, anon_sym_LBRACE, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - STATE(3984), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6916), 19, + ACTIONS(7204), 1, + anon_sym_LT, + STATE(3178), 1, + sym_template_argument_list, + ACTIONS(5383), 24, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -401202,19 +361263,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_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(6914), 31, + sym_identifier, + ACTIONS(5376), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -401232,21 +361301,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, - [90676] = 3, + anon_sym_DASH_GT, + [42991] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4827), 19, + ACTIONS(7054), 1, + anon_sym_LBRACK_LBRACK, + STATE(3112), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6212), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -401260,24 +361328,31 @@ 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_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(4835), 35, + sym_identifier, + ACTIONS(6210), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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, @@ -401289,29 +361364,85 @@ 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, + [43059] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1828), 1, + sym_string_literal, + ACTIONS(7187), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(7185), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(7183), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [90738] = 5, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [43127] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4376), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(7610), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(4372), 20, - anon_sym_BANG, + ACTIONS(2371), 1, + anon_sym_LBRACE, + ACTIONS(6858), 1, + anon_sym_LPAREN2, + STATE(3457), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6386), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -401326,19 +361457,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_not, + 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_DASH_GT, - ACTIONS(4370), 31, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6384), 27, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_TILDE, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, 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, @@ -401349,59 +361491,224 @@ 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_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, - [90804] = 15, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [43197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5754), 1, + ACTIONS(5396), 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(5394), 42, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(5756), 1, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [43261] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5400), 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, - ACTIONS(5758), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5398), 42, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - ACTIONS(5760), 1, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, - ACTIONS(5762), 1, anon_sym_alignas, - ACTIONS(7582), 1, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [43325] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5404), 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(5402), 42, + anon_sym_AMP, + anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, sym_auto, - ACTIONS(7584), 1, anon_sym_decltype, - STATE(4854), 1, - sym_decltype_auto, - STATE(3883), 2, - sym_declaration_modifiers, - aux_sym_declaration_specifiers_repeat1, - ACTIONS(7612), 6, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [43389] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1830), 1, + sym_string_literal, + ACTIONS(7187), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(7185), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(7183), 44, anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - STATE(5060), 7, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - ACTIONS(5752), 9, - anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -401410,19 +361717,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(7614), 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, - ACTIONS(5750), 12, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -401434,10 +361728,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [90890] = 3, + 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_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [43457] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6664), 19, + ACTIONS(5438), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(5440), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -401451,13 +361762,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_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6662), 35, + ACTIONS(5445), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -401467,8 +361779,9 @@ 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_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -401490,13 +361803,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [90952] = 3, + anon_sym_DASH_GT, + [43523] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6668), 19, + ACTIONS(2371), 1, + anon_sym_LBRACE, + ACTIONS(6858), 1, + anon_sym_LPAREN2, + STATE(3459), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6397), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -401511,22 +361829,28 @@ 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, - anon_sym_DASH_GT, - ACTIONS(6666), 35, + sym_identifier, + ACTIONS(6395), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, 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, @@ -401539,82 +361863,260 @@ 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, + [43593] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5427), 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(5425), 42, + anon_sym_AMP, + anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [91014] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [43657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6672), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5423), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + 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(5421), 42, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [43721] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5431), 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(5429), 42, + anon_sym_AMP, + anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6670), 35, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [43785] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(4789), 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_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5938), 42, + anon_sym_AMP, + anon_sym___extension__, + 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_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_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [91076] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [43851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6676), 19, + ACTIONS(5383), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -401628,13 +362130,13 @@ 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(6674), 35, + ACTIONS(5376), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -401644,8 +362146,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_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -401667,110 +362172,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [91138] = 5, + anon_sym_DASH_GT, + anon_sym_try, + [43915] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4861), 1, - anon_sym_EQ, - ACTIONS(4865), 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(4837), 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_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4829), 23, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5761), 1, anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7060), 1, + anon_sym_EQ, + ACTIONS(7153), 1, anon_sym_PIPE_PIPE, + ACTIONS(7155), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(7157), 1, + anon_sym_PIPE, + ACTIONS(7161), 1, + anon_sym_AMP, + ACTIONS(7167), 1, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, + ACTIONS(7173), 1, anon_sym_LT_EQ_GT, + ACTIONS(7175), 1, + anon_sym_or, + ACTIONS(7177), 1, + anon_sym_and, + ACTIONS(7179), 1, anon_sym_bitor, + ACTIONS(7181), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7009), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [91204] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6978), 1, - sym_auto, - ACTIONS(6980), 1, - anon_sym_decltype, - STATE(3689), 1, - sym_decltype_auto, - ACTIONS(6404), 20, + ACTIONS(7149), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7159), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7169), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7151), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7163), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7165), 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_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6402), 31, + ACTIONS(7062), 21, + ts_builtin_sym_end, 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_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -401778,62 +362251,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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [91272] = 7, + [44025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5790), 1, - sym_literal_suffix, - STATE(2640), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(3796), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3804), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(4837), 15, + ACTIONS(5938), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_GT_GT, + anon_sym_const, anon_sym_DOT, - ACTIONS(4829), 26, - ts_builtin_sym_end, + ACTIONS(4789), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -401842,24 +362285,106 @@ 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___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_DOT_STAR, anon_sym_DASH_GT, - [91342] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [44089] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4789), 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(5938), 42, + anon_sym_AMP, + anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [44153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6604), 19, + ACTIONS(5938), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -401878,19 +362403,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6602), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4789), 37, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -401912,120 +362435,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [91404] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_DOT_DOT_GT, + [44217] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7622), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(7620), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(7618), 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(7616), 31, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5381), 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_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, - [91470] = 3, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5374), 42, + anon_sym_AMP, + anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [44283] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6543), 20, + ACTIONS(6892), 1, + anon_sym___attribute__, + STATE(3310), 1, + sym_attribute_specifier, + ACTIONS(6086), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(6541), 34, + ACTIONS(6084), 42, 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___attribute__, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -402034,57 +362562,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [91532] = 3, + anon_sym_requires, + [44351] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6551), 20, + ACTIONS(6892), 1, + anon_sym___attribute__, + STATE(3319), 1, + sym_attribute_specifier, + ACTIONS(6104), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(6549), 34, + ACTIONS(6102), 42, 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___attribute__, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -402093,18 +362625,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [91594] = 6, + anon_sym_requires, + [44419] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2856), 1, + ACTIONS(6932), 1, + anon_sym___attribute__, + ACTIONS(7207), 1, anon_sym_LBRACE, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - STATE(4152), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6846), 19, + ACTIONS(7209), 1, + anon_sym_COLON, + STATE(3265), 1, + sym_enum_base_clause, + STATE(3391), 1, + sym_enumerator_list, + STATE(3914), 1, + sym_attribute_specifier, + ACTIONS(6514), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -402119,15 +362659,13 @@ 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(6844), 31, + ACTIONS(6516), 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, @@ -402145,82 +362683,27 @@ 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, - [91662] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7624), 1, - anon_sym_LT, - STATE(3361), 1, - sym_template_argument_list, - ACTIONS(7118), 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_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_identifier, - ACTIONS(7116), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [91728] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [44495] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6592), 19, + ACTIONS(7191), 1, + anon_sym_AMP_AMP, + ACTIONS(7195), 1, + anon_sym_and, + ACTIONS(6753), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -402236,22 +362719,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, - anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6590), 35, + ACTIONS(6755), 37, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_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_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -402273,133 +362758,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [91790] = 3, + anon_sym_DASH_GT, + [44563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 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(6582), 34, + ACTIONS(5381), 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___attribute__, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, + anon_sym_EQ, anon_sym_GT2, - [91852] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7633), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(7631), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(7629), 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, + ACTIONS(5374), 42, anon_sym_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___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DASH_GT, - ACTIONS(7627), 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, - [91918] = 3, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [44627] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5957), 20, + ACTIONS(2989), 1, + anon_sym_LBRACE, + ACTIONS(7141), 1, + anon_sym_LPAREN2, + ACTIONS(7143), 1, + anon_sym_LBRACK, + ACTIONS(7145), 1, + sym_auto, + ACTIONS(7147), 1, + anon_sym_decltype, + STATE(3650), 1, + sym_decltype_auto, + STATE(3703), 1, + sym_new_declarator, + STATE(4200), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5830), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -402409,28 +362851,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_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5959), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(5828), 28, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -402438,6 +362873,7 @@ 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, @@ -402452,59 +362888,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [91980] = 3, + anon_sym_DOT_DOT_DOT_GT, + [44707] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6698), 20, + ACTIONS(6892), 1, + anon_sym___attribute__, + STATE(3230), 1, + sym_attribute_specifier, + ACTIONS(6022), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(6696), 34, + ACTIONS(6020), 42, 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___attribute__, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -402513,102 +362948,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [92042] = 3, + anon_sym_requires, + [44775] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 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, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(6464), 34, + ACTIONS(7092), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(7132), 1, + anon_sym_EQ, + ACTIONS(7153), 1, anon_sym_PIPE_PIPE, + ACTIONS(7155), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(7157), 1, + anon_sym_PIPE, + ACTIONS(7161), 1, + anon_sym_AMP, + ACTIONS(7167), 1, + anon_sym_GT_EQ, + ACTIONS(7171), 1, anon_sym_QMARK, - anon_sym_STAR_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(7173), 1, anon_sym_LT_EQ_GT, + ACTIONS(7175), 1, + anon_sym_or, + ACTIONS(7177), 1, + anon_sym_and, + ACTIONS(7179), 1, anon_sym_bitor, + ACTIONS(7181), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7009), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [92104] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6547), 19, + ACTIONS(7149), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7159), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7169), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7151), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7163), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7165), 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(6545), 35, - anon_sym_DOT_DOT_DOT, + ACTIONS(7134), 19, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RPAREN, - anon_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_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -402622,79 +363038,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [92166] = 3, + [44889] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6239), 19, + ACTIONS(6892), 1, + anon_sym___attribute__, + STATE(3249), 1, + sym_attribute_specifier, + ACTIONS(6026), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6237), 35, + ACTIONS(6024), 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___extension__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_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, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [92228] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [44957] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6555), 19, + ACTIONS(2989), 1, + anon_sym_LBRACE, + ACTIONS(7141), 1, + anon_sym_LPAREN2, + ACTIONS(7143), 1, + anon_sym_LBRACK, + ACTIONS(7145), 1, + sym_auto, + ACTIONS(7147), 1, + anon_sym_decltype, + STATE(3650), 1, + sym_decltype_auto, + STATE(3664), 1, + sym_new_declarator, + STATE(4233), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5878), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -402713,19 +363141,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6553), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(5876), 28, 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, @@ -402747,13 +363168,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [92290] = 3, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [45037] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6559), 19, + ACTIONS(6932), 1, + anon_sym___attribute__, + ACTIONS(7207), 1, + anon_sym_LBRACE, + ACTIONS(7209), 1, + anon_sym_COLON, + STATE(3278), 1, + sym_enum_base_clause, + STATE(3421), 1, + sym_enumerator_list, + STATE(3771), 1, + sym_attribute_specifier, + ACTIONS(6520), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -402768,12 +363200,9 @@ 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(6557), 35, + ACTIONS(6522), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -402783,7 +363212,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, @@ -402796,11 +363224,11 @@ 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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -402809,10 +363237,15 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [92352] = 3, + [45113] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 19, + ACTIONS(7211), 1, + anon_sym_LBRACK_LBRACK, + STATE(3112), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6360), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -402826,24 +363259,31 @@ 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_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(6561), 35, + sym_identifier, + ACTIONS(6358), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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, @@ -402855,56 +363295,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_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [92414] = 5, + anon_sym_DASH_GT, + [45181] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7641), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(7639), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(7637), 20, - anon_sym_BANG, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7105), 1, + anon_sym_EQ, + ACTIONS(7153), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7155), 1, + anon_sym_AMP_AMP, + ACTIONS(7157), 1, + anon_sym_PIPE, + ACTIONS(7161), 1, + anon_sym_AMP, + ACTIONS(7167), 1, + anon_sym_GT_EQ, + ACTIONS(7173), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7175), 1, + anon_sym_or, + ACTIONS(7177), 1, + anon_sym_and, + ACTIONS(7179), 1, + anon_sym_bitor, + ACTIONS(7181), 1, + anon_sym_bitand, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7149), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7159), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7169), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7151), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7163), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7165), 3, 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(7635), 31, + ACTIONS(7107), 21, + ts_builtin_sym_end, + anon_sym_DOT_DOT_DOT, 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_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, @@ -402918,128 +363384,120 @@ static const uint16_t ts_small_parse_table[] = { 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, - [92480] = 5, + [45291] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7643), 1, - anon_sym_LBRACK_LBRACK, - STATE(3572), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6831), 20, + ACTIONS(6892), 1, + anon_sym___attribute__, + STATE(3269), 1, + sym_attribute_specifier, + ACTIONS(6032), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6829), 31, + ACTIONS(6030), 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___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_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, - [92546] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [45359] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6680), 20, + ACTIONS(6892), 1, + anon_sym___attribute__, + STATE(3271), 1, + sym_attribute_specifier, + ACTIONS(6036), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(6678), 34, + ACTIONS(6034), 42, 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___attribute__, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -403048,11 +363506,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [92608] = 3, + anon_sym_requires, + [45427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6897), 26, + ACTIONS(5425), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -403066,32 +363527,24 @@ 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_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_COLON, anon_sym_DOT, - sym_identifier, - ACTIONS(6895), 28, + anon_sym_DASH_GT, + ACTIONS(5427), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -403104,47 +363557,94 @@ 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, - [92670] = 5, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [45491] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(7652), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(7650), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(7648), 20, - anon_sym_BANG, + ACTIONS(6858), 1, + anon_sym_LPAREN2, + ACTIONS(7214), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7220), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7222), 1, + anon_sym_AMP_AMP, + ACTIONS(7234), 1, + anon_sym_GT_EQ, + ACTIONS(7238), 1, + anon_sym_LBRACK, + ACTIONS(7240), 1, + anon_sym_QMARK, + ACTIONS(7242), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7244), 1, + anon_sym_or, + ACTIONS(7246), 1, + anon_sym_and, + ACTIONS(7248), 1, + anon_sym_not_eq, + ACTIONS(7252), 1, + anon_sym_DOT, + STATE(3335), 1, + sym_argument_list, + STATE(3340), 1, + sym_subscript_argument_list, + ACTIONS(7216), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(7224), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(7226), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(7228), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(7230), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7236), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7250), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7254), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7218), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7232), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7090), 5, anon_sym_EQ, - anon_sym_not, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DASH_GT, - ACTIONS(7646), 31, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(7094), 14, 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, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -403155,92 +363655,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_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, - [92736] = 7, + [45602] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5783), 1, - sym_literal_suffix, - STATE(2640), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(3796), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3804), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(4837), 17, - aux_sym_preproc_elif_token1, + ACTIONS(6858), 1, + anon_sym_LPAREN2, + ACTIONS(7220), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7222), 1, + anon_sym_AMP_AMP, + ACTIONS(7234), 1, + anon_sym_GT_EQ, + ACTIONS(7238), 1, + anon_sym_LBRACK, + ACTIONS(7242), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7244), 1, + anon_sym_or, + ACTIONS(7246), 1, + anon_sym_and, + ACTIONS(7248), 1, + anon_sym_not_eq, + ACTIONS(7252), 1, + anon_sym_DOT, + STATE(3335), 1, + sym_argument_list, + STATE(3340), 1, + sym_subscript_argument_list, + ACTIONS(7216), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(7224), 2, 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, + ACTIONS(7226), 2, + anon_sym_CARET, anon_sym_xor, + ACTIONS(7228), 2, + anon_sym_AMP, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(4829), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(7230), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(7236), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + ACTIONS(7250), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7254), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [92806] = 5, + ACTIONS(7218), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7232), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7128), 5, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(7130), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [45709] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7660), 1, + ACTIONS(7262), 1, anon_sym_DQUOTE_DQUOTE, - ACTIONS(7658), 2, + ACTIONS(7260), 2, anon_sym_delete, anon_sym_new, - ACTIONS(7656), 20, + ACTIONS(7258), 20, anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, @@ -403261,7 +363766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DASH_GT, - ACTIONS(7654), 31, + ACTIONS(7256), 32, anon_sym_COMMA, anon_sym_TILDE, anon_sym_PIPE_PIPE, @@ -403293,13 +363798,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT_STAR, anon_sym_LPAREN_RPAREN, anon_sym_LBRACK_RBRACK, - [92872] = 4, + sym_semgrep_metavar, + [45776] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5525), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5527), 20, + ACTIONS(6858), 1, + anon_sym_LPAREN2, + ACTIONS(7238), 1, + anon_sym_LBRACK, + ACTIONS(7252), 1, + anon_sym_DOT, + STATE(3335), 1, + sym_argument_list, + STATE(3340), 1, + sym_subscript_argument_list, + ACTIONS(7254), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7015), 24, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -403313,24 +363829,28 @@ 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5520), 32, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(7017), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, 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, @@ -403342,97 +363862,186 @@ 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, - [92936] = 8, + [45851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7662), 1, - anon_sym_LPAREN2, - ACTIONS(7664), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7666), 1, - anon_sym_LBRACK, - STATE(3983), 1, - sym_parameter_list, - STATE(3611), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6748), 20, + ACTIONS(7264), 27, anon_sym_DASH, anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(7266), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_COLON_COLON, + 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, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [45914] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7268), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7270), 1, + anon_sym_COMMA, + ACTIONS(7272), 1, + anon_sym_RPAREN, + ACTIONS(7278), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7280), 1, + anon_sym_AMP_AMP, + ACTIONS(7282), 1, anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(7286), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(7292), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7298), 1, anon_sym_EQ, - anon_sym_GT_GT_EQ, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7306), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7308), 1, anon_sym_or, + ACTIONS(7310), 1, anon_sym_and, + ACTIONS(7312), 1, + anon_sym_bitor, + ACTIONS(7314), 1, + anon_sym_bitand, + ACTIONS(7320), 1, + anon_sym_DOT_STAR, + ACTIONS(7322), 1, + anon_sym_DASH_GT_STAR, + STATE(1329), 1, + sym_binary_fold_operator, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + STATE(9281), 1, + sym_fold_operator, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7284), 2, + anon_sym_CARET, anon_sym_xor, + ACTIONS(7294), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7316), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7318), 2, anon_sym_DOT, - ACTIONS(6746), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DASH_GT, + ACTIONS(7276), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7288), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, + anon_sym_not_eq, + ACTIONS(7290), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7304), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(7302), 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, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_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, - anon_sym_GT2, - [93008] = 6, + [46039] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2856), 1, - anon_sym_LBRACE, - ACTIONS(6926), 1, + ACTIONS(6858), 1, anon_sym_LPAREN2, - STATE(4194), 2, + ACTIONS(7238), 1, + anon_sym_LBRACK, + ACTIONS(7252), 1, + anon_sym_DOT, + STATE(3335), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(6888), 19, - anon_sym_DASH, - anon_sym_PLUS, + STATE(3340), 1, + sym_subscript_argument_list, + ACTIONS(7250), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7254), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7218), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7019), 21, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -403442,21 +364051,27 @@ 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_DOT, - anon_sym_DASH_GT, - ACTIONS(6886), 31, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(7021), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, 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, @@ -403468,80 +364083,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_DOT_STAR, - anon_sym_DASH_GT_STAR, - [93076] = 3, + [46118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6588), 19, + ACTIONS(6090), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6586), 35, + ACTIONS(6088), 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___extension__, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_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, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [93138] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [46181] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6310), 19, + ACTIONS(6908), 1, + anon_sym___attribute__, + ACTIONS(7109), 1, + anon_sym_LBRACE, + STATE(3246), 1, + sym_enumerator_list, + STATE(3663), 1, + sym_attribute_specifier, + ACTIONS(5989), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -403560,18 +364175,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6308), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5987), 32, anon_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, @@ -403594,13 +364204,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [93200] = 3, + anon_sym_DOT_DOT_DOT_GT, + [46252] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6596), 19, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(4763), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -403620,7 +364233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6594), 35, + ACTIONS(4771), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -403656,10 +364269,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [93262] = 3, + [46317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6600), 19, + ACTIONS(6268), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -403679,7 +364292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6598), 35, + ACTIONS(6266), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -403689,6 +364302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -403715,10 +364329,16 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [93324] = 3, + [46380] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 19, + ACTIONS(7330), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(7328), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(7326), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -403733,24 +364353,19 @@ static const uint16_t ts_small_parse_table[] = { 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_DOT, anon_sym_DASH_GT, - ACTIONS(6606), 35, - anon_sym_DOT_DOT_DOT, + ACTIONS(7324), 32, 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, @@ -403764,20 +364379,28 @@ static const uint16_t ts_small_parse_table[] = { 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_DOT_STAR, - sym_auto, - anon_sym_decltype, + anon_sym_co_await, anon_sym_DASH_GT_STAR, - [93386] = 3, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + sym_semgrep_metavar, + [46447] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6612), 19, + ACTIONS(7338), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(7336), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(7334), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -403792,24 +364415,19 @@ static const uint16_t ts_small_parse_table[] = { 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_DOT, anon_sym_DASH_GT, - ACTIONS(6610), 35, - anon_sym_DOT_DOT_DOT, + ACTIONS(7332), 32, 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, @@ -403823,20 +364441,113 @@ static const uint16_t ts_small_parse_table[] = { 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, + sym_semgrep_metavar, + [46514] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7268), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7270), 1, + anon_sym_COMMA, + ACTIONS(7278), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7280), 1, + anon_sym_AMP_AMP, + ACTIONS(7282), 1, + anon_sym_PIPE, + ACTIONS(7286), 1, + anon_sym_AMP, + ACTIONS(7292), 1, + anon_sym_GT_EQ, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7298), 1, + anon_sym_EQ, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7306), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7308), 1, + anon_sym_or, + ACTIONS(7310), 1, + anon_sym_and, + ACTIONS(7312), 1, + anon_sym_bitor, + ACTIONS(7314), 1, + anon_sym_bitand, + ACTIONS(7320), 1, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, + ACTIONS(7322), 1, anon_sym_DASH_GT_STAR, - [93448] = 3, + ACTIONS(7340), 1, + anon_sym_RPAREN, + STATE(1329), 1, + sym_binary_fold_operator, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + STATE(9281), 1, + sym_fold_operator, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7284), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7294), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7316), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7276), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7288), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7290), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7304), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(7302), 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, + [46639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6616), 19, + ACTIONS(6248), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -403856,7 +364567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6614), 35, + ACTIONS(6246), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -403866,6 +364577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -403892,10 +364604,21 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [93510] = 3, + [46702] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6630), 19, + ACTIONS(7342), 1, + anon_sym_LPAREN2, + ACTIONS(7344), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7346), 1, + anon_sym_LBRACK, + STATE(3635), 1, + sym_parameter_list, + STATE(3212), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6082), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -403915,18 +364638,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6628), 35, + ACTIONS(6080), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -403948,18 +364668,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [93572] = 3, + [46775] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 26, + ACTIONS(6858), 1, + anon_sym_LPAREN2, + ACTIONS(7238), 1, + anon_sym_LBRACK, + ACTIONS(7252), 1, + anon_sym_DOT, + STATE(3335), 1, + sym_argument_list, + STATE(3340), 1, + sym_subscript_argument_list, + ACTIONS(7216), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7250), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7254), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7218), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7019), 19, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -403968,7 +364704,6 @@ 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_and_eq, anon_sym_or_eq, @@ -403979,21 +364714,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(6862), 28, + ACTIONS(7021), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_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, @@ -404006,84 +364738,87 @@ 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_DOT_STAR, - anon_sym_DASH_GT, - [93634] = 3, + [46856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6868), 26, + ACTIONS(6284), 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_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_const, anon_sym_DOT, - sym_identifier, - ACTIONS(6866), 28, + ACTIONS(6282), 43, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, + anon_sym_STAR, + 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_LBRACK, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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, - [93696] = 8, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [46919] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7662), 1, + ACTIONS(3036), 1, + anon_sym_LBRACE, + ACTIONS(7348), 1, anon_sym_LPAREN2, - ACTIONS(7664), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7666), 1, + ACTIONS(7350), 1, anon_sym_LBRACK, - STATE(3983), 1, - sym_parameter_list, - STATE(3611), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6779), 20, + ACTIONS(7352), 1, + sym_auto, + ACTIONS(7354), 1, + anon_sym_decltype, + STATE(3762), 1, + sym_new_declarator, + STATE(3869), 1, + sym_decltype_auto, + STATE(4263), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5878), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -404093,24 +364828,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_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(6777), 28, + anon_sym_DASH_GT, + ACTIONS(5876), 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, @@ -404118,25 +364851,114 @@ 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_or, + anon_sym_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, + anon_sym_DASH_GT_STAR, + [46998] = 15, + 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(5753), 1, + anon_sym_virtual, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7360), 1, + sym_auto, + ACTIONS(7362), 1, + anon_sym_decltype, + STATE(3704), 1, + sym_decltype_auto, + STATE(3323), 2, + sym_declaration_modifiers, + aux_sym_declaration_specifiers_repeat1, + ACTIONS(7356), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + STATE(4535), 7, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + ACTIONS(5745), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(7358), 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_EQ, anon_sym_GT2, - [93768] = 3, + ACTIONS(5743), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [47085] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6684), 19, + ACTIONS(3036), 1, + anon_sym_LBRACE, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7350), 1, + anon_sym_LBRACK, + ACTIONS(7352), 1, + sym_auto, + ACTIONS(7354), 1, + anon_sym_decltype, + STATE(3798), 1, + sym_new_declarator, + STATE(3869), 1, + sym_decltype_auto, + STATE(4372), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5807), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -404151,23 +364973,17 @@ 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(6682), 35, + ACTIONS(5805), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -404179,54 +364995,75 @@ 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_or, + anon_sym_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, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [93830] = 3, + [47164] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6688), 19, + ACTIONS(6858), 1, + anon_sym_LPAREN2, + ACTIONS(7238), 1, + anon_sym_LBRACK, + ACTIONS(7252), 1, + anon_sym_DOT, + STATE(3335), 1, + sym_argument_list, + STATE(3340), 1, + sym_subscript_argument_list, + ACTIONS(7216), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7236), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7250), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7254), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7218), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7019), 17, anon_sym_PIPE, anon_sym_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_DOT, - anon_sym_DASH_GT, - ACTIONS(6686), 35, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(7021), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, 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, @@ -404238,23 +365075,15 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [93892] = 3, + [47247] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6694), 19, + ACTIONS(6808), 1, + anon_sym___attribute__, + STATE(3415), 1, + sym_attribute_specifier, + ACTIONS(6052), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -404264,26 +365093,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(6692), 35, + ACTIONS(6050), 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_QMARK, @@ -404293,7 +365121,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, @@ -404307,44 +365134,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [93954] = 3, + anon_sym_GT2, + [47314] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6572), 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, + ACTIONS(6858), 1, + anon_sym_LPAREN2, + ACTIONS(7238), 1, + anon_sym_LBRACK, + ACTIONS(7252), 1, anon_sym_DOT, + STATE(3335), 1, + sym_argument_list, + STATE(3340), 1, + sym_subscript_argument_list, + ACTIONS(7250), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7254), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6570), 35, + ACTIONS(7021), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, 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, @@ -404356,23 +365179,36 @@ 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, + ACTIONS(7019), 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_LT_EQ_GT, + anon_sym_or, + anon_sym_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, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [94016] = 3, + sym_identifier, + [47391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6658), 19, + ACTIONS(6078), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -404392,7 +365228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6656), 35, + ACTIONS(6076), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -404402,6 +365238,7 @@ 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_QMARK, @@ -404428,10 +365265,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [94078] = 3, + [47454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6522), 19, + ACTIONS(6314), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -404451,7 +365288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6520), 35, + ACTIONS(6312), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -404461,6 +365298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -404487,48 +365325,36 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [94140] = 8, + [47517] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7662), 1, + ACTIONS(6858), 1, anon_sym_LPAREN2, - ACTIONS(7664), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7666), 1, + ACTIONS(7238), 1, anon_sym_LBRACK, - STATE(3983), 1, - sym_parameter_list, - STATE(3611), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6732), 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, + ACTIONS(7252), 1, anon_sym_DOT, - ACTIONS(6728), 28, + STATE(3335), 1, + sym_argument_list, + STATE(3340), 1, + sym_subscript_argument_list, + ACTIONS(7250), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7254), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7025), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, 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, @@ -404536,32 +365362,46 @@ 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, + ACTIONS(7023), 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_LT_EQ_GT, + anon_sym_or, + anon_sym_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, - anon_sym_GT2, - [94212] = 6, + sym_identifier, + [47594] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2856), 1, - anon_sym_LBRACE, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - STATE(4097), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6908), 19, + ACTIONS(7370), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(7368), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(7366), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -404576,22 +365416,19 @@ static const uint16_t ts_small_parse_table[] = { 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_DOT, anon_sym_DASH_GT, - ACTIONS(6906), 31, - anon_sym_DOT_DOT_DOT, + ACTIONS(7364), 32, anon_sym_COMMA, - anon_sym_RPAREN, + 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_LBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -404605,18 +365442,33 @@ static const uint16_t ts_small_parse_table[] = { 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_DOT_STAR, + anon_sym_co_await, anon_sym_DASH_GT_STAR, - [94280] = 3, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + sym_semgrep_metavar, + [47661] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6644), 19, + ACTIONS(7342), 1, + anon_sym_LPAREN2, + ACTIONS(7344), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7346), 1, + anon_sym_LBRACK, + STATE(3635), 1, + sym_parameter_list, + STATE(3212), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6040), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -404636,18 +365488,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6642), 35, + ACTIONS(6038), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -404669,13 +365518,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [94342] = 3, + [47734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6654), 19, + ACTIONS(6284), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -404695,7 +365542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6652), 35, + ACTIONS(6282), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -404705,6 +365552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -404731,113 +365579,77 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [94404] = 8, + [47797] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(7662), 1, + ACTIONS(6858), 1, anon_sym_LPAREN2, - ACTIONS(7664), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7666), 1, + ACTIONS(7220), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7222), 1, + anon_sym_AMP_AMP, + ACTIONS(7234), 1, + anon_sym_GT_EQ, + ACTIONS(7238), 1, anon_sym_LBRACK, - STATE(3983), 1, - sym_parameter_list, - STATE(3611), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6761), 20, + ACTIONS(7242), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7244), 1, + anon_sym_or, + ACTIONS(7246), 1, + anon_sym_and, + ACTIONS(7248), 1, + anon_sym_not_eq, + ACTIONS(7252), 1, + anon_sym_DOT, + STATE(3335), 1, + sym_argument_list, + STATE(3340), 1, + sym_subscript_argument_list, + ACTIONS(7216), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(7224), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(7226), 2, anon_sym_CARET, - anon_sym_AMP, - 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(6759), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(7228), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(7230), 2, 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, + ACTIONS(7236), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7250), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7254), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [94476] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6850), 26, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(7218), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7232), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, + ACTIONS(7116), 5, 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_identifier, - ACTIONS(6848), 28, + ACTIONS(7118), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_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, @@ -404849,15 +365661,14 @@ 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, - [94538] = 3, + [47904] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6920), 26, + ACTIONS(6808), 1, + anon_sym___attribute__, + STATE(3423), 1, + sym_attribute_specifier, + ACTIONS(6062), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -404867,36 +365678,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_and_eq, - anon_sym_or_eq, - anon_sym_xor_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, - sym_identifier, - ACTIONS(6918), 28, + ACTIONS(6060), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -404904,19 +365706,44 @@ 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, - [94600] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [47971] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6810), 26, + ACTIONS(3036), 1, + anon_sym_LBRACE, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7350), 1, + anon_sym_LBRACK, + ACTIONS(7352), 1, + sym_auto, + ACTIONS(7354), 1, + anon_sym_decltype, + STATE(3810), 1, + sym_new_declarator, + STATE(3869), 1, + sym_decltype_auto, + STATE(4341), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5759), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -404930,32 +365757,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_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, - ACTIONS(6808), 28, + anon_sym_DASH_GT, + ACTIONS(5757), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -404968,19 +365781,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, - [94662] = 5, + anon_sym_DASH_GT_STAR, + [48050] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 1, + ACTIONS(6808), 1, anon_sym___attribute__, - STATE(3903), 1, + STATE(3481), 1, sym_attribute_specifier, - ACTIONS(6366), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6096), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -404990,22 +365808,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(6364), 33, + ACTIONS(6094), 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_QMARK, @@ -405015,7 +365836,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, @@ -405032,15 +365852,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [94728] = 5, + anon_sym_GT2, + [48117] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7668), 1, - anon_sym_LT, - STATE(3578), 1, - sym_template_argument_list, - ACTIONS(7118), 19, + ACTIONS(4340), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(7372), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(4336), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -405051,27 +365873,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_LBRACK, anon_sym_EQ, + anon_sym_not, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7116), 32, - anon_sym_DOT_DOT_DOT, + ACTIONS(4334), 32, 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_LBRACK_LBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -405085,57 +365903,92 @@ static const uint16_t ts_small_parse_table[] = { 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_DOT_STAR, + anon_sym_co_await, anon_sym_DASH_GT_STAR, - [94793] = 3, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + sym_semgrep_metavar, + [48184] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(7257), 25, + ACTIONS(6858), 1, + anon_sym_LPAREN2, + ACTIONS(7214), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7220), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7222), 1, + anon_sym_AMP_AMP, + ACTIONS(7234), 1, + anon_sym_GT_EQ, + ACTIONS(7238), 1, + anon_sym_LBRACK, + ACTIONS(7240), 1, + anon_sym_QMARK, + ACTIONS(7242), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7244), 1, + anon_sym_or, + ACTIONS(7246), 1, + anon_sym_and, + ACTIONS(7248), 1, + anon_sym_not_eq, + ACTIONS(7252), 1, + anon_sym_DOT, + STATE(3335), 1, + sym_argument_list, + STATE(3340), 1, + sym_subscript_argument_list, + ACTIONS(7216), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(7224), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(7226), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(7228), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(7230), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7236), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7250), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7254), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7218), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7232), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(6691), 5, 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_identifier, - ACTIONS(7255), 28, - anon_sym_DOT_DOT_DOT, + ACTIONS(6689), 14, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_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, @@ -405146,15 +365999,23 @@ 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, - [94854] = 3, + [48295] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7356), 25, + ACTIONS(6858), 1, + anon_sym_LPAREN2, + ACTIONS(7238), 1, + anon_sym_LBRACK, + ACTIONS(7252), 1, + anon_sym_DOT, + STATE(3335), 1, + sym_argument_list, + STATE(3340), 1, + sym_subscript_argument_list, + ACTIONS(7254), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6995), 24, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -405178,21 +366039,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(7354), 28, + ACTIONS(6997), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_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, @@ -405207,51 +366065,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [94915] = 9, + [48370] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, + ACTIONS(6858), 1, anon_sym_LPAREN2, - ACTIONS(7506), 1, + ACTIONS(7222), 1, + anon_sym_AMP_AMP, + ACTIONS(7234), 1, + anon_sym_GT_EQ, + ACTIONS(7238), 1, anon_sym_LBRACK, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - STATE(4031), 1, + ACTIONS(7242), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7246), 1, + anon_sym_and, + ACTIONS(7248), 1, + anon_sym_not_eq, + ACTIONS(7252), 1, + anon_sym_DOT, + STATE(3335), 1, sym_argument_list, - STATE(4032), 1, + STATE(3340), 1, sym_subscript_argument_list, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7057), 17, + ACTIONS(7216), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(7224), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(7226), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(7228), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(7230), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7236), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7250), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7254), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7218), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7232), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7019), 6, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(7059), 29, + sym_identifier, + ACTIONS(7021), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, 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, @@ -405263,54 +366145,73 @@ 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, + [48473] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6858), 1, + anon_sym_LPAREN2, + ACTIONS(7234), 1, + anon_sym_GT_EQ, + ACTIONS(7238), 1, + anon_sym_LBRACK, + ACTIONS(7242), 1, anon_sym_LT_EQ_GT, + ACTIONS(7248), 1, + anon_sym_not_eq, + ACTIONS(7252), 1, + anon_sym_DOT, + STATE(3335), 1, + sym_argument_list, + STATE(3340), 1, + sym_subscript_argument_list, + ACTIONS(7216), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7224), 2, + anon_sym_PIPE, anon_sym_bitor, + ACTIONS(7226), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7228), 2, + anon_sym_AMP, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(7230), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7236), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7250), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT_STAR, - [94988] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7664), 1, - anon_sym_LBRACK_LBRACK, - STATE(3781), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6884), 21, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(7254), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7218), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7232), 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_LBRACK, + ACTIONS(7019), 7, 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_xor, - anon_sym_DOT, - ACTIONS(6882), 29, + sym_identifier, + ACTIONS(7021), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, 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, @@ -405318,29 +366219,18 @@ 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, - anon_sym_GT2, - [95053] = 5, + [48572] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6801), 1, + ACTIONS(6808), 1, anon_sym___attribute__, - STATE(4008), 1, + STATE(3356), 1, sym_attribute_specifier, - ACTIONS(6454), 16, + ACTIONS(6086), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -405350,23 +366240,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(6452), 35, + ACTIONS(6084), 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_QMARK, @@ -405376,40 +366268,73 @@ 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_or, - anon_sym_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, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [95118] = 3, + anon_sym_GT2, + [48639] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(7203), 25, + ACTIONS(6858), 1, + anon_sym_LPAREN2, + ACTIONS(7234), 1, + anon_sym_GT_EQ, + ACTIONS(7238), 1, + anon_sym_LBRACK, + ACTIONS(7242), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7248), 1, + anon_sym_not_eq, + ACTIONS(7252), 1, + anon_sym_DOT, + STATE(3335), 1, + sym_argument_list, + STATE(3340), 1, + sym_subscript_argument_list, + ACTIONS(7216), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7226), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7228), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(7230), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7236), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7250), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7254), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7218), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7232), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7019), 9, + anon_sym_PIPE, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -405417,24 +366342,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(7201), 28, + ACTIONS(7021), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_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, @@ -405446,28 +366362,114 @@ 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, + [48736] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7374), 27, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(5068), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [95179] = 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, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [48799] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(6197), 25, + ACTIONS(6858), 1, + anon_sym_LPAREN2, + ACTIONS(7234), 1, + anon_sym_GT_EQ, + ACTIONS(7238), 1, + anon_sym_LBRACK, + ACTIONS(7242), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7248), 1, + anon_sym_not_eq, + ACTIONS(7252), 1, + anon_sym_DOT, + STATE(3335), 1, + sym_argument_list, + STATE(3340), 1, + sym_subscript_argument_list, + ACTIONS(7216), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7228), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(7230), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7236), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7250), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7254), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7218), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7232), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7019), 11, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -405476,23 +366478,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(4853), 28, + ACTIONS(7021), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_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, @@ -405504,19 +366498,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_DOT_STAR, - anon_sym_DASH_GT, - [95240] = 5, + [48894] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6801), 1, - anon_sym___attribute__, - STATE(4011), 1, - sym_attribute_specifier, - ACTIONS(6322), 16, + ACTIONS(6972), 1, + sym_auto, + ACTIONS(6974), 1, + anon_sym_decltype, + STATE(3282), 1, + sym_decltype_auto, + ACTIONS(6191), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -405531,9 +366522,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(6320), 35, + ACTIONS(6189), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -405556,94 +366550,63 @@ 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_or, - anon_sym_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, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [95305] = 3, + [48963] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7229), 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_identifier, - ACTIONS(7227), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(6858), 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_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, + ACTIONS(7234), 1, + anon_sym_GT_EQ, + ACTIONS(7238), 1, + anon_sym_LBRACK, + ACTIONS(7242), 1, anon_sym_LT_EQ_GT, + ACTIONS(7248), 1, + anon_sym_not_eq, + ACTIONS(7252), 1, + anon_sym_DOT, + STATE(3335), 1, + sym_argument_list, + STATE(3340), 1, + sym_subscript_argument_list, + ACTIONS(7216), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7230), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7236), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7250), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7254), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [95366] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7261), 25, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(7218), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7232), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7019), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -405653,22 +366616,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_xor, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(7259), 28, + ACTIONS(7021), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_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, @@ -405680,19 +366636,14 @@ 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, - [95427] = 5, + [49056] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6801), 1, + ACTIONS(6808), 1, anon_sym___attribute__, - STATE(4012), 1, + STATE(3489), 1, sym_attribute_specifier, - ACTIONS(6458), 16, + ACTIONS(6100), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -405702,23 +366653,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(6456), 35, + ACTIONS(6098), 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_QMARK, @@ -405728,31 +366681,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_or, - anon_sym_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, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [95492] = 5, + anon_sym_GT2, + [49123] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6801), 1, + ACTIONS(6808), 1, anon_sym___attribute__, - STATE(4013), 1, + STATE(3377), 1, sym_attribute_specifier, - ACTIONS(6462), 16, + ACTIONS(6104), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -405762,23 +366715,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(6460), 35, + ACTIONS(6102), 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_QMARK, @@ -405788,40 +366743,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_or, - anon_sym_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, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [95557] = 3, + anon_sym_GT2, + [49190] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7334), 25, + ACTIONS(6858), 1, + anon_sym_LPAREN2, + ACTIONS(7234), 1, + anon_sym_GT_EQ, + ACTIONS(7238), 1, + anon_sym_LBRACK, + ACTIONS(7242), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7252), 1, + anon_sym_DOT, + STATE(3335), 1, + sym_argument_list, + STATE(3340), 1, + sym_subscript_argument_list, + ACTIONS(7216), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7236), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7250), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7254), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7218), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7232), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7019), 14, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -405832,21 +366811,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(7332), 28, + ACTIONS(7021), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_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, @@ -405858,53 +366833,36 @@ 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, + [49279] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6858), 1, + anon_sym_LPAREN2, + ACTIONS(7238), 1, + anon_sym_LBRACK, + ACTIONS(7252), 1, + anon_sym_DOT, + STATE(3335), 1, + sym_argument_list, + STATE(3340), 1, + sym_subscript_argument_list, + ACTIONS(7250), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7254), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [95618] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7342), 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_identifier, - ACTIONS(7340), 28, + ACTIONS(7013), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_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, @@ -405917,14 +366875,7 @@ 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_DOT_STAR, - anon_sym_DASH_GT, - [95679] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7387), 25, + ACTIONS(7011), 24, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -405948,20 +366899,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(7385), 28, + [49356] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6808), 1, + anon_sym___attribute__, + STATE(3432), 1, + sym_attribute_specifier, + ACTIONS(6022), 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(6020), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_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, @@ -405970,19 +366945,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_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [95740] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [49423] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3078), 25, + ACTIONS(6860), 1, + anon_sym_LBRACK, + STATE(3290), 1, + sym_new_declarator, + ACTIONS(6454), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -406008,7 +366995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(3080), 28, + ACTIONS(6452), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -406020,7 +367007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -406037,10 +367024,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [95801] = 3, + [49490] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3096), 25, + ACTIONS(7342), 1, + anon_sym_LPAREN2, + ACTIONS(7344), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7346), 1, + anon_sym_LBRACK, + STATE(3635), 1, + sym_parameter_list, + STATE(3212), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6143), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -406055,30 +367053,20 @@ 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, - sym_identifier, - ACTIONS(3094), 28, + anon_sym_DASH_GT, + ACTIONS(6141), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + 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, @@ -406090,15 +367078,27 @@ 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, - [95862] = 3, + anon_sym_DASH_GT_STAR, + [49563] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7391), 25, + ACTIONS(4332), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(7376), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(4314), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -406113,31 +367113,19 @@ 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_not, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(7389), 28, - anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + ACTIONS(4312), 32, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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_LBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -406148,53 +367136,92 @@ 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_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_DOT_STAR, - anon_sym_DASH_GT, - [95923] = 3, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + sym_semgrep_metavar, + [49630] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6986), 25, + ACTIONS(6858), 1, + anon_sym_LPAREN2, + ACTIONS(7220), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7222), 1, + anon_sym_AMP_AMP, + ACTIONS(7234), 1, + anon_sym_GT_EQ, + ACTIONS(7238), 1, + anon_sym_LBRACK, + ACTIONS(7242), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7244), 1, + anon_sym_or, + ACTIONS(7246), 1, + anon_sym_and, + ACTIONS(7248), 1, + anon_sym_not_eq, + ACTIONS(7252), 1, + anon_sym_DOT, + STATE(3335), 1, + sym_argument_list, + STATE(3340), 1, + sym_subscript_argument_list, + ACTIONS(7216), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(7224), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(7226), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(7228), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(7230), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7236), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7250), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7254), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7218), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7232), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7060), 5, 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_identifier, - ACTIONS(6984), 28, + ACTIONS(7062), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_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, @@ -406206,15 +367233,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_DOT_STAR, - anon_sym_DASH_GT, - [95984] = 3, + [49737] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5460), 25, + ACTIONS(7384), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(7382), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(7380), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -406229,31 +367257,19 @@ 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_not, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(5467), 28, - anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + ACTIONS(7378), 32, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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_LBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -406264,54 +367280,95 @@ 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_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_DOT_STAR, - anon_sym_DASH_GT, - [96045] = 3, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + sym_semgrep_metavar, + [49804] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(7287), 25, + ACTIONS(6858), 1, + anon_sym_LPAREN2, + ACTIONS(7214), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7220), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7222), 1, + anon_sym_AMP_AMP, + ACTIONS(7234), 1, + anon_sym_GT_EQ, + ACTIONS(7238), 1, + anon_sym_LBRACK, + ACTIONS(7240), 1, + anon_sym_QMARK, + ACTIONS(7242), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7244), 1, + anon_sym_or, + ACTIONS(7246), 1, + anon_sym_and, + ACTIONS(7248), 1, + anon_sym_not_eq, + ACTIONS(7252), 1, + anon_sym_DOT, + STATE(3335), 1, + sym_argument_list, + STATE(3340), 1, + sym_subscript_argument_list, + ACTIONS(7216), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(7224), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(7226), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(7228), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(7230), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7236), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7250), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7254), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7218), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7232), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7132), 5, 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_identifier, - ACTIONS(7285), 28, - anon_sym_DOT_DOT_DOT, + ACTIONS(7134), 14, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_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, @@ -406322,19 +367379,14 @@ 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, - [96106] = 5, + [49915] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6801), 1, + ACTIONS(6808), 1, anon_sym___attribute__, - STATE(4019), 1, + STATE(3444), 1, sym_attribute_specifier, - ACTIONS(6494), 16, + ACTIONS(6070), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -406344,23 +367396,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(6492), 35, + ACTIONS(6068), 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_QMARK, @@ -406370,59 +367424,94 @@ 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_or, - anon_sym_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, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [96171] = 5, + anon_sym_GT2, + [49982] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6801), 1, - anon_sym___attribute__, - STATE(4020), 1, - sym_attribute_specifier, - ACTIONS(6366), 16, + ACTIONS(6858), 1, + anon_sym_LPAREN2, + ACTIONS(7220), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7222), 1, + anon_sym_AMP_AMP, + ACTIONS(7234), 1, + anon_sym_GT_EQ, + ACTIONS(7238), 1, + anon_sym_LBRACK, + ACTIONS(7242), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7244), 1, + anon_sym_or, + ACTIONS(7246), 1, + anon_sym_and, + ACTIONS(7248), 1, + anon_sym_not_eq, + ACTIONS(7252), 1, + anon_sym_DOT, + STATE(3335), 1, + sym_argument_list, + STATE(3340), 1, + sym_subscript_argument_list, + ACTIONS(7216), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(7224), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(7226), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(7228), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(7230), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7236), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7250), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7254), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7218), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7232), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7105), 5, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6364), 35, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(7107), 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_LBRACE, - anon_sym_LBRACK, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -406434,62 +367523,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [50089] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7268), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7270), 1, + anon_sym_COMMA, + ACTIONS(7278), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7280), 1, + anon_sym_AMP_AMP, + ACTIONS(7282), 1, + anon_sym_PIPE, + ACTIONS(7286), 1, + anon_sym_AMP, + ACTIONS(7292), 1, + anon_sym_GT_EQ, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7298), 1, + anon_sym_EQ, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7306), 1, anon_sym_LT_EQ_GT, + ACTIONS(7308), 1, anon_sym_or, + ACTIONS(7310), 1, anon_sym_and, + ACTIONS(7312), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(7314), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(7320), 1, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, + ACTIONS(7322), 1, anon_sym_DASH_GT_STAR, - [96236] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7338), 25, + ACTIONS(7386), 1, + anon_sym_RPAREN, + STATE(1329), 1, + sym_binary_fold_operator, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + STATE(9281), 1, + sym_fold_operator, + ACTIONS(7274), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7284), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7294), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7316), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7276), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7288), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7290), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(7304), 3, 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, - ACTIONS(7336), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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(7302), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -406500,18 +367614,10 @@ 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, - [96297] = 4, + [50214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(4827), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(5938), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -406526,19 +367632,22 @@ 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(4835), 33, + anon_sym_DASH_GT, + ACTIONS(4789), 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___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -406550,24 +367659,110 @@ 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_or, + anon_sym_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, sym_auto, anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [96360] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [50277] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5218), 1, + anon_sym_LPAREN2, + ACTIONS(6533), 1, + sym_identifier, + ACTIONS(6537), 1, + anon_sym_STAR, + ACTIONS(6539), 1, + anon_sym_AMP_AMP, + ACTIONS(6541), 1, + anon_sym_AMP, + ACTIONS(6543), 1, + anon_sym_LBRACK, + STATE(3879), 1, + sym_parameter_list, + STATE(6740), 1, + sym_scope_resolution, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7389), 1, + sym_declarator, + STATE(7459), 1, + sym_abstract_declarator, + STATE(9168), 1, + sym_ms_based_modifier, + STATE(5923), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(7388), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(7305), 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [50384] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7213), 25, + ACTIONS(5438), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(5440), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -406593,7 +367788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7211), 28, + ACTIONS(5445), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -406622,10 +367817,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [96421] = 3, + [50449] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7319), 25, + ACTIONS(7390), 1, + anon_sym_AMP_AMP, + ACTIONS(7392), 1, + anon_sym_and, + ACTIONS(6753), 25, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -406644,22 +367844,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - ACTIONS(7317), 28, + ACTIONS(6755), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -406680,17 +367879,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [96482] = 6, + [50516] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7239), 1, - sym_auto, - ACTIONS(7241), 1, - anon_sym_decltype, - STATE(3858), 1, - sym_decltype_auto, - ACTIONS(6404), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6808), 1, + anon_sym___attribute__, + STATE(3448), 1, + sym_attribute_specifier, + ACTIONS(6074), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -406700,22 +367896,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(6402), 31, + ACTIONS(6072), 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_QMARK, @@ -406725,7 +367924,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, @@ -406740,13 +367938,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [96549] = 4, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [50583] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7673), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6970), 19, + ACTIONS(6808), 1, + anon_sym___attribute__, + STATE(3483), 1, + sym_attribute_specifier, + ACTIONS(6026), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -406756,17 +367958,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(6968), 33, + ACTIONS(6024), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -406774,10 +367977,8 @@ 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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -406785,7 +367986,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, @@ -406800,68 +368000,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [96612] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [50650] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6990), 25, + ACTIONS(7394), 1, + sym_auto, + ACTIONS(7396), 1, + anon_sym_decltype, + STATE(3304), 1, + sym_decltype_auto, + ACTIONS(6191), 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_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_const, anon_sym_DOT, - sym_identifier, - ACTIONS(6988), 28, + ACTIONS(6189), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, + anon_sym_STAR, + 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___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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, - [96673] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [50719] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6994), 25, + ACTIONS(3036), 1, + anon_sym_LBRACE, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7350), 1, + anon_sym_LBRACK, + ACTIONS(7352), 1, + sym_auto, + ACTIONS(7354), 1, + anon_sym_decltype, + STATE(3720), 1, + sym_new_declarator, + STATE(3869), 1, + sym_decltype_auto, + STATE(4342), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5830), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -406876,30 +368101,17 @@ 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, - sym_identifier, - ACTIONS(6992), 28, + anon_sym_DASH_GT, + ACTIONS(5828), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + 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, @@ -406912,53 +368124,97 @@ 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, - [96734] = 3, + anon_sym_DASH_GT_STAR, + [50798] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(7352), 25, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7268), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7270), 1, + anon_sym_COMMA, + ACTIONS(7278), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7280), 1, + anon_sym_AMP_AMP, + ACTIONS(7282), 1, + anon_sym_PIPE, + ACTIONS(7286), 1, + anon_sym_AMP, + ACTIONS(7292), 1, + anon_sym_GT_EQ, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7298), 1, + anon_sym_EQ, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7306), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7308), 1, + anon_sym_or, + ACTIONS(7310), 1, + anon_sym_and, + ACTIONS(7312), 1, + anon_sym_bitor, + ACTIONS(7314), 1, + anon_sym_bitand, + ACTIONS(7320), 1, + anon_sym_DOT_STAR, + ACTIONS(7322), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(7398), 1, + anon_sym_RPAREN, + STATE(1329), 1, + sym_binary_fold_operator, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + STATE(9281), 1, + sym_fold_operator, + ACTIONS(7274), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7284), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7294), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7316), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7276), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7288), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7290), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(7304), 3, 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, - ACTIONS(7350), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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(7302), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -406969,15 +368225,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_DOT_STAR, - anon_sym_DASH_GT, - [96795] = 3, + [50923] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7348), 25, + ACTIONS(7406), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(7404), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(7402), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -406992,31 +368249,125 @@ static const uint16_t ts_small_parse_table[] = { 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(7400), 32, + 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_or, - anon_sym_and, + anon_sym_compl, + anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(7346), 28, + 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, + sym_semgrep_metavar, + [50990] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7268), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7270), 1, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + ACTIONS(7278), 1, anon_sym_PIPE_PIPE, + ACTIONS(7280), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(7282), 1, + anon_sym_PIPE, + ACTIONS(7286), 1, + anon_sym_AMP, + ACTIONS(7292), 1, anon_sym_GT_EQ, + ACTIONS(7296), 1, anon_sym_LBRACK, + ACTIONS(7298), 1, + anon_sym_EQ, + ACTIONS(7300), 1, anon_sym_QMARK, + ACTIONS(7306), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7308), 1, + anon_sym_or, + ACTIONS(7310), 1, + anon_sym_and, + ACTIONS(7312), 1, + anon_sym_bitor, + ACTIONS(7314), 1, + anon_sym_bitand, + ACTIONS(7320), 1, + anon_sym_DOT_STAR, + ACTIONS(7322), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(7408), 1, + anon_sym_RPAREN, + STATE(1329), 1, + sym_binary_fold_operator, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + STATE(9281), 1, + sym_fold_operator, + ACTIONS(7274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7284), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7294), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7316), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7276), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7288), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7290), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7304), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(7302), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -407027,16 +368378,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [51115] = 15, + 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(5753), 1, + anon_sym_virtual, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7360), 1, + sym_auto, + ACTIONS(7362), 1, + anon_sym_decltype, + STATE(3704), 1, + sym_decltype_auto, + STATE(3378), 2, + sym_declaration_modifiers, + aux_sym_declaration_specifiers_repeat1, + ACTIONS(7410), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + STATE(4535), 7, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + ACTIONS(5745), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(7412), 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_EQ, + anon_sym_GT2, + ACTIONS(5743), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [51202] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6240), 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(6238), 43, + 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___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_DOT_STAR, anon_sym_DASH_GT, - [96856] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [51265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6543), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6240), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -407055,7 +368532,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6541), 34, + anon_sym_DASH_GT, + ACTIONS(6238), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -407086,76 +368567,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [96917] = 7, + anon_sym_DASH_GT_STAR, + [51328] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7675), 1, - sym_identifier, - STATE(3642), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(7678), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(7681), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5635), 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, + ACTIONS(6858), 1, + anon_sym_LPAREN2, + ACTIONS(7238), 1, + anon_sym_LBRACK, + ACTIONS(7252), 1, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5630), 23, + STATE(3335), 1, + sym_argument_list, + STATE(3340), 1, + sym_subscript_argument_list, + ACTIONS(7250), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7254), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7007), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, - [96986] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7367), 25, + ACTIONS(7005), 24, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -407179,21 +368636,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(7365), 28, + [51405] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5381), 1, + anon_sym_LBRACE, + ACTIONS(5388), 1, + anon_sym_LT, + STATE(3089), 1, + sym_template_argument_list, + ACTIONS(5383), 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(5376), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_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_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -407205,16 +368690,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, - [97047] = 3, + [51476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6551), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(5374), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -407229,11 +368719,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(6549), 34, + anon_sym_DASH_GT, + ACTIONS(5381), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -407243,6 +368734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -407254,24 +368746,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_or, + anon_sym_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, sym_auto, anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [97108] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [51539] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7371), 25, + ACTIONS(7390), 1, + anon_sym_AMP_AMP, + ACTIONS(7392), 1, + anon_sym_and, + ACTIONS(7414), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7416), 1, + anon_sym_or, + ACTIONS(6677), 24, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -407289,23 +368791,20 @@ static const uint16_t ts_small_parse_table[] = { 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, - ACTIONS(7369), 28, + ACTIONS(6679), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -407326,17 +368825,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [97169] = 6, + [51610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2949), 1, - anon_sym_LBRACE, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - STATE(4235), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6846), 20, + ACTIONS(6090), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -407346,24 +368838,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_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6844), 29, + anon_sym_DASH_GT, + ACTIONS(6088), 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___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -407372,6 +368868,7 @@ 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, @@ -407385,16 +368882,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [97236] = 5, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [51673] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7684), 1, - anon_sym_LT, - STATE(3094), 1, - sym_template_argument_list, - ACTIONS(7118), 18, + ACTIONS(6808), 1, + anon_sym___attribute__, + STATE(3332), 1, + sym_attribute_specifier, + ACTIONS(6032), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -407404,16 +368902,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(7116), 33, + ACTIONS(6030), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -407421,10 +368921,8 @@ 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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -407432,7 +368930,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, @@ -407447,97 +368944,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [97301] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, + sym_auto, anon_sym_decltype, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(5276), 1, - anon_sym_LPAREN2, - ACTIONS(6256), 1, - sym_identifier, - ACTIONS(6266), 1, - anon_sym_LBRACK, - ACTIONS(6646), 1, - anon_sym_STAR, - ACTIONS(6648), 1, - anon_sym_AMP_AMP, - ACTIONS(6650), 1, - anon_sym_AMP, - STATE(4268), 1, - sym_parameter_list, - STATE(7241), 1, - sym_scope_resolution, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(7552), 1, - sym_declarator, - STATE(7895), 1, - sym_abstract_declarator, - STATE(9737), 1, - sym_ms_based_modifier, - ACTIONS(7534), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6505), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7464), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(7634), 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, - ACTIONS(3664), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [97406] = 6, + anon_sym_GT2, + [51740] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2949), 1, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5381), 1, anon_sym_LBRACE, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - STATE(4243), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6888), 20, + ACTIONS(5734), 1, + anon_sym_LT, + STATE(3252), 1, + sym_template_argument_list, + ACTIONS(5383), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -407547,25 +368968,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(6886), 29, + anon_sym_DASH_GT, + ACTIONS(5376), 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, @@ -407573,6 +368996,7 @@ 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, @@ -407586,12 +369010,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [97473] = 3, + anon_sym_DASH_GT_STAR, + [51811] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7233), 25, + ACTIONS(7342), 1, + anon_sym_LPAREN2, + ACTIONS(7344), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7346), 1, + anon_sym_LBRACK, + STATE(3635), 1, + sym_parameter_list, + STATE(3212), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6134), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -407606,30 +369040,20 @@ 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, - sym_identifier, - ACTIONS(7231), 28, + anon_sym_DASH_GT, + ACTIONS(6132), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + 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, @@ -407641,118 +369065,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_DOT_STAR, - anon_sym_DASH_GT, - [97534] = 3, + anon_sym_DASH_GT_STAR, + [51884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7323), 25, + ACTIONS(6314), 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_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_const, anon_sym_DOT, - sym_identifier, - ACTIONS(7321), 28, + ACTIONS(6312), 43, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, + anon_sym_STAR, + 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___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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, - [97595] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [51947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6248), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(6582), 34, + ACTIONS(6246), 43, + 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___extension__, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -407761,11 +369192,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [97656] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [52010] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7411), 25, + ACTIONS(6908), 1, + anon_sym___attribute__, + ACTIONS(7109), 1, + anon_sym_LBRACE, + STATE(3243), 1, + sym_enumerator_list, + STATE(3667), 1, + sym_attribute_specifier, + ACTIONS(5983), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -407780,23 +369223,11 @@ 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, - sym_identifier, - ACTIONS(7409), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(5981), 32, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -407815,140 +369246,58 @@ 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, - [97717] = 26, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [52081] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - anon_sym_EQ, - ACTIONS(7691), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7693), 1, - anon_sym_AMP_AMP, - ACTIONS(7695), 1, - anon_sym_PIPE, - ACTIONS(7699), 1, - anon_sym_AMP, - ACTIONS(7705), 1, - anon_sym_GT_EQ, - ACTIONS(7709), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7711), 1, - anon_sym_or, - ACTIONS(7713), 1, - anon_sym_and, - ACTIONS(7715), 1, - anon_sym_bitor, - ACTIONS(7717), 1, - anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7055), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7687), 2, + ACTIONS(6808), 1, + anon_sym___attribute__, + STATE(3348), 1, + sym_attribute_specifier, + ACTIONS(6036), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7697), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7707), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7689), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7701), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7703), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7125), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [97824] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7055), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7053), 14, - 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_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(7051), 27, + anon_sym_DOT, + ACTIONS(6034), 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_SEMI, - anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -407956,7 +369305,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, @@ -407967,55 +369315,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [97901] = 12, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [52148] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(6858), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7238), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7252), 1, anon_sym_DOT, - STATE(3181), 1, + STATE(3335), 1, sym_argument_list, - STATE(3186), 1, + STATE(3340), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7055), 2, + ACTIONS(7250), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7687), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7689), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7053), 12, - anon_sym_PIPE, - anon_sym_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(7051), 27, + ACTIONS(7254), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7029), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, 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___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -408027,211 +369363,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, - [97980] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7055), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7687), 2, + ACTIONS(7027), 24, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7707), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7053), 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_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(7051), 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___attribute__, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - [98061] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7006), 1, - anon_sym_EQ, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7516), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - ACTIONS(7723), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7725), 1, - anon_sym_AMP_AMP, - ACTIONS(7727), 1, - anon_sym_PIPE, - ACTIONS(7731), 1, - anon_sym_AMP, - ACTIONS(7737), 1, - anon_sym_GT_EQ, - ACTIONS(7741), 1, anon_sym_or, - ACTIONS(7743), 1, anon_sym_and, - ACTIONS(7745), 1, anon_sym_bitor, - ACTIONS(7747), 1, - anon_sym_bitand, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - ACTIONS(7526), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7719), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7729), 2, - anon_sym_CARET, anon_sym_xor, - ACTIONS(7739), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7721), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7733), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7735), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7008), 18, - 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_DASH_GT_STAR, - [98168] = 3, + sym_identifier, + [52225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5957), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6268), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(5959), 34, + ACTIONS(6266), 43, + 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___extension__, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -408240,42 +369445,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [98229] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [52288] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7415), 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, + ACTIONS(5718), 4, 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_identifier, - ACTIONS(7413), 28, + ACTIONS(5720), 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(4765), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -408284,26 +369483,13 @@ static const uint16_t ts_small_parse_table[] = { 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, - [98290] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6698), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(4773), 22, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -408317,63 +369503,52 @@ 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_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6696), 34, + sym_identifier, + [52355] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6858), 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___attribute__, - anon_sym_LBRACE, + ACTIONS(7238), 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_GT_GT_EQ, - 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(7242), 1, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(7252), 1, + anon_sym_DOT, + STATE(3335), 1, + sym_argument_list, + STATE(3340), 1, + sym_subscript_argument_list, + ACTIONS(7216), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7236), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7250), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7254), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [98351] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7403), 25, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(7218), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7019), 17, anon_sym_PIPE, anon_sym_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, @@ -408384,21 +369559,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(7401), 28, + ACTIONS(7021), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_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, @@ -408410,15 +369582,10 @@ 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, - [98412] = 3, + [52440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7360), 25, + ACTIONS(5983), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -408433,29 +369600,22 @@ 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, - sym_identifier, - ACTIONS(7358), 28, + anon_sym_DASH_GT, + ACTIONS(5981), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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, @@ -408468,60 +369628,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_DOT_STAR, - anon_sym_DASH_GT, - [98473] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [52502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6318), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(6464), 34, + ACTIONS(6316), 42, + 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_COLON_COLON, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -408530,18 +369696,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [98534] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [52564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2949), 1, - anon_sym_LBRACE, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - STATE(4254), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6908), 20, + ACTIONS(6334), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -408551,24 +369713,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(6906), 29, + anon_sym_DASH_GT, + ACTIONS(6332), 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, @@ -408577,6 +369742,7 @@ 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, @@ -408590,28 +369756,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [98601] = 10, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [52626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - ACTIONS(7526), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7143), 17, + ACTIONS(6338), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -408629,15 +369780,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(7141), 27, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6336), 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, @@ -408656,18 +369812,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [98676] = 6, + [52688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2949), 1, - anon_sym_LBRACE, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - STATE(4256), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6916), 20, + ACTIONS(6016), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -408677,24 +369831,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(6914), 29, + anon_sym_DASH_GT, + ACTIONS(6018), 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, @@ -408703,6 +369860,7 @@ 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, @@ -408716,71 +369874,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [98743] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [52750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 25, + ACTIONS(6322), 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_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_const, anon_sym_DOT, - sym_identifier, - ACTIONS(7393), 28, + ACTIONS(6320), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, + anon_sym_STAR, + 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___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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, - [98804] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [52812] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6680), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(7344), 1, + anon_sym_LBRACK_LBRACK, + STATE(3223), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6212), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -408794,21 +369958,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(6678), 34, + anon_sym_DASH_GT, + ACTIONS(6210), 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___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -408830,14 +369996,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [98865] = 3, + anon_sym_DASH_GT_STAR, + [52878] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7159), 25, + ACTIONS(7418), 1, + anon_sym_LT, + STATE(3178), 1, + sym_template_argument_list, + ACTIONS(7100), 24, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -408848,7 +370015,6 @@ 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, @@ -408863,7 +370029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7157), 28, + ACTIONS(7098), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -408892,10 +370058,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [98926] = 3, + [52944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7383), 25, + ACTIONS(6288), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -408910,29 +370076,22 @@ 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, - sym_identifier, - ACTIONS(7381), 28, + anon_sym_DASH_GT, + ACTIONS(6286), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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, @@ -408945,15 +370104,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_DOT_STAR, - anon_sym_DASH_GT, - [98987] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [53006] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7217), 25, + ACTIONS(6292), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -408968,29 +370135,22 @@ 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, - sym_identifier, - ACTIONS(7215), 28, + anon_sym_DASH_GT, + ACTIONS(6290), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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, @@ -409003,131 +370163,148 @@ 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, - [99048] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [53068] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7419), 25, + ACTIONS(6326), 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_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_const, anon_sym_DOT, - sym_identifier, - ACTIONS(7417), 28, + ACTIONS(6324), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, + anon_sym_STAR, + 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___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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, - [99109] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [53130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7225), 25, + ACTIONS(6330), 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_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_const, anon_sym_DOT, - sym_identifier, - ACTIONS(7223), 28, + ACTIONS(6328), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, + anon_sym_STAR, + 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___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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, - [99170] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [53192] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 25, + ACTIONS(2658), 1, + anon_sym_LBRACE, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + STATE(3757), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6377), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -409142,24 +370319,15 @@ 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, - sym_identifier, - ACTIONS(7325), 28, + anon_sym_DASH_GT, + ACTIONS(6375), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -409177,60 +370345,64 @@ 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, - [99231] = 3, + anon_sym_DASH_GT_STAR, + [53260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6640), 20, + ACTIONS(6334), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(6638), 33, + ACTIONS(6332), 42, 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___extension__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -409239,56 +370411,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [99292] = 3, + anon_sym_requires, + [53322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4827), 20, + ACTIONS(6338), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(4835), 33, + ACTIONS(6336), 42, 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___extension__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -409297,15 +370470,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [99353] = 5, + anon_sym_requires, + [53384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6928), 1, - anon_sym_LBRACK, - STATE(3855), 1, - sym_new_declarator, - ACTIONS(6943), 19, + ACTIONS(4763), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -409325,7 +370497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6941), 32, + ACTIONS(4771), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -409336,6 +370508,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -409357,11 +370530,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [99418] = 3, + [53446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7221), 25, + ACTIONS(6296), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -409376,29 +370551,22 @@ 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, - sym_identifier, - ACTIONS(7219), 28, + anon_sym_DASH_GT, + ACTIONS(6294), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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, @@ -409411,31 +370579,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_DOT_STAR, - anon_sym_DASH_GT, - [99479] = 10, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [53508] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - ACTIONS(7526), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7112), 17, + ACTIONS(7421), 1, + anon_sym_LBRACK_LBRACK, + STATE(3223), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6360), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -409449,14 +370614,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_or, anon_sym_and, anon_sym_xor, - ACTIONS(7110), 27, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6358), 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, @@ -409480,56 +370649,57 @@ static const uint16_t ts_small_parse_table[] = { 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, - [99554] = 3, + [53574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6664), 20, + ACTIONS(6342), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(6662), 33, + ACTIONS(6340), 42, 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___extension__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -409538,56 +370708,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [99615] = 3, + anon_sym_requires, + [53636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6668), 20, + ACTIONS(6346), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(6666), 33, + ACTIONS(6344), 42, 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___extension__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -409596,11 +370767,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [99676] = 3, + anon_sym_requires, + [53698] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6672), 20, + ACTIONS(7424), 1, + anon_sym_LPAREN2, + ACTIONS(7426), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7428), 1, + anon_sym_LBRACK, + STATE(3874), 1, + sym_parameter_list, + STATE(3433), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6143), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -409621,16 +370806,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6670), 33, + ACTIONS(6141), 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, anon_sym_SLASH_EQ, @@ -409652,13 +370834,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [99737] = 3, + [53770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6676), 20, + ACTIONS(6268), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -409679,7 +370859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6674), 33, + ACTIONS(6266), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -409687,6 +370867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -409713,10 +370894,12 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [99798] = 3, + [53832] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7163), 25, + ACTIONS(6028), 1, + sym_literal_suffix, + ACTIONS(4773), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -409742,7 +370925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7161), 28, + ACTIONS(4765), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -409771,13 +370954,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [99859] = 4, + [53896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5525), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5527), 19, + ACTIONS(6322), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -409797,7 +370977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5520), 32, + ACTIONS(6320), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -409807,6 +370987,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, @@ -409829,70 +371010,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [99922] = 4, + [53958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7749), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6970), 20, + ACTIONS(6272), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6968), 32, + ACTIONS(6270), 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_LBRACK_LBRACK, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_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, - [99985] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [54020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7269), 25, + ACTIONS(6090), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -409902,34 +371085,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_and_eq, - anon_sym_or_eq, - anon_sym_xor_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, - sym_identifier, - ACTIONS(7267), 28, + ACTIONS(6088), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -409938,64 +371114,70 @@ 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, - [100046] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [54082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6604), 20, + ACTIONS(5989), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(6602), 33, + ACTIONS(5987), 42, 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___extension__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -410004,15 +371186,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [100107] = 5, + anon_sym_requires, + [54144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7751), 1, - anon_sym_LT, - STATE(1828), 1, - sym_template_argument_list, - ACTIONS(7118), 18, + ACTIONS(6272), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -410023,26 +371204,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, - ACTIONS(7116), 33, + anon_sym_DASH_GT, + ACTIONS(6270), 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, @@ -410064,28 +371246,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [100172] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [54206] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5469), 25, + ACTIONS(5929), 1, + sym_literal_suffix, + STATE(2729), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(3907), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3911), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4773), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_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, @@ -410094,104 +371287,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5462), 28, + ACTIONS(4765), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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, - [100233] = 28, + [54276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7093), 1, - anon_sym_EQ, - ACTIONS(7478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7510), 1, - anon_sym_QMARK, - ACTIONS(7516), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - ACTIONS(7723), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7725), 1, - anon_sym_AMP_AMP, - ACTIONS(7727), 1, - anon_sym_PIPE, - ACTIONS(7731), 1, - anon_sym_AMP, - ACTIONS(7737), 1, - anon_sym_GT_EQ, - ACTIONS(7741), 1, - anon_sym_or, - ACTIONS(7743), 1, - anon_sym_and, - ACTIONS(7745), 1, - anon_sym_bitor, - ACTIONS(7747), 1, - anon_sym_bitand, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - ACTIONS(7526), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7719), 2, + ACTIONS(4763), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7729), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7739), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7721), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7733), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7735), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7095), 16, + 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(4771), 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, @@ -410205,76 +371361,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_DASH_GT_STAR, - [100344] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7061), 1, - anon_sym_EQ, - ACTIONS(7478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7510), 1, - anon_sym_QMARK, - ACTIONS(7516), 1, anon_sym_LT_EQ_GT, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - ACTIONS(7723), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7725), 1, - anon_sym_AMP_AMP, - ACTIONS(7727), 1, - anon_sym_PIPE, - ACTIONS(7731), 1, - anon_sym_AMP, - ACTIONS(7737), 1, - anon_sym_GT_EQ, - ACTIONS(7741), 1, - anon_sym_or, - ACTIONS(7743), 1, - anon_sym_and, - ACTIONS(7745), 1, anon_sym_bitor, - ACTIONS(7747), 1, anon_sym_bitand, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - ACTIONS(7526), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7719), 2, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [54338] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5989), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7729), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7739), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7721), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7733), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7735), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7065), 16, + 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(5987), 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, @@ -410288,11 +371420,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_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, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [100455] = 3, + [54400] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 25, + ACTIONS(7424), 1, + anon_sym_LPAREN2, + ACTIONS(7426), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7428), 1, + anon_sym_LBRACK, + STATE(3874), 1, + sym_parameter_list, + STATE(3433), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6082), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -410302,35 +371454,24 @@ 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_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, - sym_identifier, - ACTIONS(7297), 28, + ACTIONS(6080), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, @@ -410338,36 +371479,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_DOT_STAR, anon_sym_DASH_GT, - [100516] = 3, + anon_sym_GT2, + [54472] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7277), 25, + ACTIONS(5929), 1, + sym_literal_suffix, + STATE(2729), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(3907), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3911), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4773), 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -410375,40 +371530,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(7275), 28, + ACTIONS(4765), 26, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + 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, - [100577] = 3, + [54542] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6547), 20, + ACTIONS(2658), 1, + anon_sym_LBRACE, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + STATE(3779), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6386), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -410418,26 +371577,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(6545), 33, + anon_sym_DASH_GT, + ACTIONS(6384), 31, 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_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -410446,6 +371604,7 @@ 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, @@ -410459,14 +371618,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [54610] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4763), 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(4771), 42, + 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___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_DOT_STAR, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [100638] = 3, + anon_sym_requires, + [54672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6239), 20, + ACTIONS(6326), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -410476,25 +371691,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(6237), 33, + anon_sym_DASH_GT, + ACTIONS(6324), 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, @@ -410504,6 +371720,7 @@ 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, @@ -410517,14 +371734,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [100699] = 3, + anon_sym_DASH_GT_STAR, + [54734] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6555), 20, + ACTIONS(7424), 1, + anon_sym_LPAREN2, + ACTIONS(7426), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7428), 1, + anon_sym_LBRACK, + STATE(3874), 1, + sym_parameter_list, + STATE(3433), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6040), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -410545,16 +371772,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6553), 33, + ACTIONS(6038), 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, anon_sym_SLASH_EQ, @@ -410576,13 +371800,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [100760] = 3, + [54806] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6559), 20, + ACTIONS(6908), 1, + anon_sym___attribute__, + STATE(3552), 1, + sym_attribute_specifier, + ACTIONS(6062), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -410592,25 +371819,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_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6557), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6060), 33, anon_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, @@ -410620,6 +371844,7 @@ 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, @@ -410636,11 +371861,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [100821] = 3, + anon_sym_DOT_DOT_DOT_GT, + [54872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7265), 25, + ACTIONS(6284), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -410650,34 +371875,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_and_eq, - anon_sym_or_eq, - anon_sym_xor_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, - sym_identifier, - ACTIONS(7263), 28, + ACTIONS(6282), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -410686,77 +371904,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_DOT_STAR, anon_sym_DASH_GT, - [100882] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7756), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(7754), 47, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - [100943] = 3, + anon_sym_GT2, + [54934] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7245), 25, + ACTIONS(6342), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -410771,29 +371939,22 @@ 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, - sym_identifier, - ACTIONS(7243), 28, + anon_sym_DASH_GT, + ACTIONS(6340), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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, @@ -410806,26 +371967,27 @@ 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, - [101004] = 8, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [54996] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7758), 1, - anon_sym_LPAREN2, - ACTIONS(7760), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7762), 1, - anon_sym_LBRACK, - STATE(4325), 1, - sym_parameter_list, - STATE(3876), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6748), 19, + ACTIONS(6908), 1, + anon_sym___attribute__, + STATE(3566), 1, + sym_attribute_specifier, + ACTIONS(6096), 19, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -410845,12 +372007,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6746), 28, + ACTIONS(6094), 33, + anon_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, @@ -410873,11 +372038,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_DOT_DOT_DOT_GT, - [101075] = 3, + [55062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6368), 25, + ACTIONS(6216), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -410892,29 +372059,22 @@ 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, - sym_identifier, - ACTIONS(6370), 28, + anon_sym_DASH_GT, + ACTIONS(6214), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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, @@ -410927,15 +372087,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_DOT_STAR, - anon_sym_DASH_GT, - [101136] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [55124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6468), 25, + ACTIONS(6240), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -410945,34 +372113,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_and_eq, - anon_sym_or_eq, - anon_sym_xor_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, - sym_identifier, - ACTIONS(6470), 28, + ACTIONS(6238), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -410981,64 +372142,70 @@ 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, - [101197] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [55186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6588), 20, + ACTIONS(6276), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(6586), 33, + ACTIONS(6274), 42, 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___extension__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -411047,11 +372214,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [101258] = 3, + anon_sym_requires, + [55248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6310), 20, + ACTIONS(6220), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -411061,25 +372231,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(6308), 33, + anon_sym_DASH_GT, + ACTIONS(6218), 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, @@ -411089,6 +372260,7 @@ 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, @@ -411102,76 +372274,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [101319] = 7, + anon_sym_DASH_GT_STAR, + [55310] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7764), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7766), 1, - anon_sym_AMP_AMP, - ACTIONS(7768), 1, - anon_sym_or, - ACTIONS(7770), 1, - anon_sym_and, - ACTIONS(6372), 23, + ACTIONS(6401), 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_const, anon_sym_DOT, - sym_identifier, - ACTIONS(6374), 26, + ACTIONS(6399), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, + anon_sym_STAR, + 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___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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, - [101388] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [55372] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6596), 20, + ACTIONS(5438), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(5440), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -411181,27 +372352,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(6594), 33, + anon_sym_DASH_GT, + ACTIONS(5445), 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, @@ -411209,6 +372381,7 @@ 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, @@ -411222,14 +372395,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [101449] = 3, + anon_sym_DASH_GT_STAR, + [55436] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6600), 20, + ACTIONS(7197), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -411239,26 +372409,35 @@ 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(6598), 33, + sym_identifier, + sym_literal_suffix, + ACTIONS(7199), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, 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, @@ -411267,27 +372446,19 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [101510] = 3, + [55498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6472), 25, + ACTIONS(6232), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -411301,6 +372472,7 @@ 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_and_eq, anon_sym_or_eq, @@ -411313,7 +372485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6474), 28, + ACTIONS(6230), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -411325,7 +372497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -411342,10 +372514,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [101571] = 3, + [55560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 20, + ACTIONS(6078), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -411366,7 +372538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6606), 33, + ACTIONS(6076), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -411374,6 +372546,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -411400,10 +372573,17 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [101632] = 3, + [55622] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6612), 20, + ACTIONS(2658), 1, + anon_sym_LBRACE, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + STATE(3786), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6397), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -411413,26 +372593,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(6610), 33, + anon_sym_DASH_GT, + ACTIONS(6395), 31, 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_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -411441,6 +372620,7 @@ 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, @@ -411454,14 +372634,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [101693] = 3, + anon_sym_DASH_GT_STAR, + [55690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6616), 20, + ACTIONS(6248), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -411482,7 +372659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6614), 33, + ACTIONS(6246), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -411490,6 +372667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -411516,121 +372694,112 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [101754] = 11, + [55752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - ACTIONS(7526), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7721), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7053), 14, + ACTIONS(6016), 12, 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_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(7051), 27, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6018), 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___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [101831] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [55814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6630), 20, + ACTIONS(6288), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(6628), 33, + ACTIONS(6286), 42, 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___extension__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -411639,19 +372808,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [101892] = 7, + anon_sym_requires, + [55876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5467), 1, - anon_sym_LBRACE, - ACTIONS(5900), 1, - anon_sym_LT, - STATE(3841), 1, - sym_template_argument_list, - ACTIONS(5469), 19, + ACTIONS(6276), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -411661,24 +372825,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(5462), 30, + anon_sym_DASH_GT, + ACTIONS(6274), 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, @@ -411687,6 +372854,7 @@ 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, @@ -411700,28 +372868,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [101961] = 10, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [55938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - ACTIONS(7526), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7053), 17, + ACTIONS(6224), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -411739,15 +372892,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(7051), 27, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6222), 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, @@ -411766,71 +372924,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [102036] = 24, + [56000] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7516), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - ACTIONS(7725), 1, - anon_sym_AMP_AMP, - ACTIONS(7727), 1, - anon_sym_PIPE, - ACTIONS(7731), 1, - anon_sym_AMP, - ACTIONS(7737), 1, - anon_sym_GT_EQ, - ACTIONS(7743), 1, - anon_sym_and, - ACTIONS(7745), 1, - anon_sym_bitor, - ACTIONS(7747), 1, - anon_sym_bitand, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - ACTIONS(7053), 2, - anon_sym_EQ, - anon_sym_or, - ACTIONS(7526), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7719), 2, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(4763), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7729), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7739), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7721), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7733), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7735), 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(7051), 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, + anon_sym_DOT, + ACTIONS(4771), 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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -411838,76 +372973,58 @@ 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_DASH_GT_STAR, - [102139] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7516), 1, anon_sym_LT_EQ_GT, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - ACTIONS(7727), 1, - anon_sym_PIPE, - ACTIONS(7731), 1, - anon_sym_AMP, - ACTIONS(7737), 1, - anon_sym_GT_EQ, - ACTIONS(7745), 1, anon_sym_bitor, - ACTIONS(7747), 1, anon_sym_bitand, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - ACTIONS(7526), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7528), 2, - anon_sym_DOT, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7719), 2, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [56064] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6228), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7729), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7739), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7053), 3, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(7721), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7733), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7735), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 20, + 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(6226), 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, @@ -411922,11 +373039,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_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, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [102238] = 3, + [56126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6482), 25, + ACTIONS(4346), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -411940,6 +373066,7 @@ 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_and_eq, anon_sym_or_eq, @@ -411952,7 +373079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6484), 28, + ACTIONS(4348), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -411964,7 +373091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -411981,14 +373108,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [102299] = 5, + [56188] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6801), 1, + ACTIONS(6932), 1, anon_sym___attribute__, - STATE(4207), 1, + ACTIONS(7207), 1, + anon_sym_LBRACE, + STATE(3428), 1, + sym_enumerator_list, + STATE(3777), 1, sym_attribute_specifier, - ACTIONS(6388), 16, + ACTIONS(5983), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -412005,7 +373136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6386), 35, + ACTIONS(5981), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -412015,7 +373146,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, @@ -412041,139 +373171,100 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [102364] = 20, + [56258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7516), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - ACTIONS(7731), 1, - anon_sym_AMP, - ACTIONS(7737), 1, - anon_sym_GT_EQ, - ACTIONS(7747), 1, - anon_sym_bitand, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - ACTIONS(7526), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7719), 2, + ACTIONS(6260), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7729), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7739), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7721), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7733), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7735), 3, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7053), 4, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(7051), 21, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6258), 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_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_DASH_GT_STAR, - [102459] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7506), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(7516), 1, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - ACTIONS(7731), 1, - anon_sym_AMP, - ACTIONS(7737), 1, - anon_sym_GT_EQ, - ACTIONS(7747), 1, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - ACTIONS(7526), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7528), 2, - anon_sym_DOT, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7719), 2, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [56320] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6300), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7739), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7721), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7733), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7735), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7053), 6, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(7051), 21, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6298), 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, @@ -412188,63 +373279,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_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, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [102552] = 17, + [56382] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7516), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - ACTIONS(7737), 1, - anon_sym_GT_EQ, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - ACTIONS(7526), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7719), 2, + ACTIONS(6908), 1, + anon_sym___attribute__, + STATE(3657), 1, + sym_attribute_specifier, + ACTIONS(6070), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7739), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7721), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7733), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7735), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7053), 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, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(7051), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_DOT, + ACTIONS(6068), 33, + anon_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, @@ -412259,56 +373339,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, - anon_sym_DASH_GT_STAR, - [102641] = 5, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [56448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6801), 1, - anon_sym___attribute__, - STATE(3961), 1, - sym_attribute_specifier, - ACTIONS(6392), 16, + ACTIONS(6292), 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(6390), 35, + ACTIONS(6290), 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___extension__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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, @@ -412319,13 +373402,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [102706] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [56510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6496), 25, + ACTIONS(6485), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -412339,6 +373426,7 @@ 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_and_eq, anon_sym_or_eq, @@ -412351,7 +373439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6498), 28, + ACTIONS(6483), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -412363,7 +373451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -412380,128 +373468,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [102767] = 16, + [56572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7516), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - ACTIONS(7737), 1, - anon_sym_GT_EQ, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - ACTIONS(7526), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7719), 2, + ACTIONS(6296), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7739), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7721), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7735), 3, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7053), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(7051), 25, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6294), 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_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [102854] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7516), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - ACTIONS(7526), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7528), 2, - anon_sym_DOT, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7719), 2, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [56634] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6401), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7739), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7721), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7053), 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_or, anon_sym_and, anon_sym_xor, - ACTIONS(7051), 26, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6399), 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, @@ -412516,14 +373576,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_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, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [102937] = 3, + [56696] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6500), 25, + ACTIONS(6908), 1, + anon_sym___attribute__, + STATE(3534), 1, + sym_attribute_specifier, + ACTIONS(6074), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -412538,29 +373609,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, - sym_identifier, - ACTIONS(6502), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(6072), 33, anon_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, @@ -412573,73 +373633,24 @@ 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, - [102998] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6504), 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_LT_EQ_GT, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6506), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [103059] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [56762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6508), 25, + ACTIONS(4342), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -412653,6 +373664,7 @@ 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_and_eq, anon_sym_or_eq, @@ -412665,7 +373677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6510), 28, + ACTIONS(4344), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -412677,7 +373689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -412694,10 +373706,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [103120] = 3, + [56824] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6684), 20, + ACTIONS(6314), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -412718,7 +373730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6682), 33, + ACTIONS(6312), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -412726,6 +373738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -412752,10 +373765,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [103181] = 3, + [56886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6688), 20, + ACTIONS(6236), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -412765,99 +373778,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_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6686), 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_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_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_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, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [103242] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - ACTIONS(7526), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7528), 2, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7719), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7721), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7053), 12, - anon_sym_PIPE, - anon_sym_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(7051), 27, + sym_identifier, + ACTIONS(6234), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_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, @@ -412869,18 +373819,15 @@ 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_GT_STAR, - [103321] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [56948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6694), 20, + ACTIONS(6330), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -412890,25 +373837,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(6692), 33, + anon_sym_DASH_GT, + ACTIONS(6328), 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, @@ -412918,6 +373866,7 @@ 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, @@ -412931,14 +373880,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [103382] = 3, + anon_sym_DASH_GT_STAR, + [57010] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6572), 20, + ACTIONS(6932), 1, + anon_sym___attribute__, + ACTIONS(7207), 1, + anon_sym_LBRACE, + STATE(3449), 1, + sym_enumerator_list, + STATE(3812), 1, + sym_attribute_specifier, + ACTIONS(5989), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -412948,26 +373904,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_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(6570), 33, + anon_sym_DASH_GT, + ACTIONS(5987), 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_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -412976,27 +373929,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_or, + anon_sym_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, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [103443] = 3, + anon_sym_DASH_GT_STAR, + [57080] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6658), 20, + ACTIONS(6908), 1, + anon_sym___attribute__, + STATE(3576), 1, + sym_attribute_specifier, + ACTIONS(6100), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -413006,25 +373964,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_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6656), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6098), 33, anon_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, @@ -413034,6 +373989,7 @@ 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, @@ -413050,11 +374006,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [103504] = 3, + anon_sym_DOT_DOT_DOT_GT, + [57146] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6522), 20, + ACTIONS(6908), 1, + anon_sym___attribute__, + STATE(3556), 1, + sym_attribute_specifier, + ACTIONS(6052), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -413064,25 +374025,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_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6520), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6050), 33, anon_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, @@ -413092,6 +374050,7 @@ 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, @@ -413108,56 +374067,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [103565] = 13, + anon_sym_DOT_DOT_DOT_GT, + [57212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - ACTIONS(7526), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7719), 2, + ACTIONS(6495), 26, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7739), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7721), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7053), 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_LBRACK, 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, - ACTIONS(7051), 27, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6493), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_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, @@ -413169,18 +374122,15 @@ 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_GT_STAR, - [103646] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [57274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6644), 20, + ACTIONS(6195), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -413190,25 +374140,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(6642), 33, + anon_sym_DASH_GT, + ACTIONS(6193), 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, @@ -413218,6 +374169,7 @@ 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, @@ -413231,14 +374183,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [103707] = 3, + anon_sym_DASH_GT_STAR, + [57336] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6654), 20, + ACTIONS(6310), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -413248,27 +374199,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_LBRACK, 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(6652), 33, + sym_identifier, + ACTIONS(6308), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, 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, @@ -413276,27 +374236,19 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [103768] = 3, + [57398] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6410), 25, + ACTIONS(6280), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -413310,6 +374262,7 @@ 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_and_eq, anon_sym_or_eq, @@ -413322,7 +374275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6412), 28, + ACTIONS(6278), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -413334,7 +374287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -413351,14 +374304,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [103829] = 5, + [57460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7668), 1, - anon_sym_LT, - STATE(1918), 1, - sym_template_argument_list, - ACTIONS(7118), 19, + ACTIONS(6252), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -413369,16 +374318,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_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7116), 32, + ACTIONS(6250), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -413388,7 +374337,8 @@ 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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -413410,71 +374360,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [103894] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5773), 4, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(5775), 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(4829), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(4837), 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_LT_EQ, - anon_sym_LT, - anon_sym_LT_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, - sym_identifier, - [103959] = 3, + [57522] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6345), 25, + ACTIONS(6244), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -413489,29 +374381,22 @@ 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, - sym_identifier, - ACTIONS(6347), 28, + anon_sym_DASH_GT, + ACTIONS(6242), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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, @@ -413524,95 +374409,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_DOT_STAR, - anon_sym_DASH_GT, - [104020] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, + sym_auto, anon_sym_decltype, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(5276), 1, - anon_sym_LPAREN2, - ACTIONS(6256), 1, - sym_identifier, - ACTIONS(6266), 1, - anon_sym_LBRACK, - ACTIONS(6533), 1, - anon_sym_STAR, - ACTIONS(6535), 1, - anon_sym_AMP_AMP, - ACTIONS(6537), 1, - anon_sym_AMP, - STATE(4696), 1, - sym_parameter_list, - STATE(7241), 1, - sym_scope_resolution, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(7552), 1, - sym_declarator, - STATE(8018), 1, - sym_abstract_declarator, - STATE(9737), 1, - sym_ms_based_modifier, - ACTIONS(7534), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(6505), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7464), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(7634), 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, - ACTIONS(3664), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [104125] = 3, + anon_sym_DASH_GT_STAR, + [57584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6418), 25, + ACTIONS(6560), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -413626,6 +374439,7 @@ 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_and_eq, anon_sym_or_eq, @@ -413638,7 +374452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6420), 28, + ACTIONS(6558), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -413650,7 +374464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -413667,10 +374481,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [104186] = 3, + [57646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6349), 25, + ACTIONS(6350), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -413684,6 +374498,7 @@ 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_and_eq, anon_sym_or_eq, @@ -413696,7 +374511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6351), 28, + ACTIONS(6348), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -413708,7 +374523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -413725,10 +374540,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [104247] = 3, + [57708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6356), 25, + ACTIONS(6354), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -413742,6 +374557,7 @@ 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_and_eq, anon_sym_or_eq, @@ -413754,7 +374570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6358), 28, + ACTIONS(6352), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -413766,7 +374582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -413783,26 +374599,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [104308] = 10, + [57770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - ACTIONS(7526), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7089), 17, + ACTIONS(6489), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -413817,18 +374617,31 @@ 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, - ACTIONS(7091), 27, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6487), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_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, @@ -413840,18 +374653,15 @@ 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_GT_STAR, - [104383] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [57832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6360), 25, + ACTIONS(6264), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -413865,6 +374675,7 @@ 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_and_eq, anon_sym_or_eq, @@ -413877,7 +374688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6362), 28, + ACTIONS(6262), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -413889,7 +374700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -413906,81 +374717,192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [104444] = 3, + [57894] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6970), 25, + ACTIONS(6199), 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6197), 42, + 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___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [57956] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4763), 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_identifier, - ACTIONS(6968), 28, + ACTIONS(4771), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, + anon_sym_STAR, + 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___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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, - [104505] = 9, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [58018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, + ACTIONS(6300), 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(6298), 42, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7506), 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___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(7671), 1, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_DOT_STAR, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - ACTIONS(7528), 2, - anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6998), 17, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [58080] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6908), 1, + anon_sym___attribute__, + STATE(3678), 1, + sym_attribute_specifier, + ACTIONS(6086), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -413998,15 +374920,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6996), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_DOT, + ACTIONS(6084), 33, + anon_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, @@ -414027,27 +374950,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT_STAR, - [104578] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7671), 1, anon_sym_DOT_STAR, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - ACTIONS(7526), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7528), 2, - anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7097), 17, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [58146] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6256), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -414065,15 +374976,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(7099), 27, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6254), 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, @@ -414092,116 +375008,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [104653] = 5, + [58208] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7766), 1, - anon_sym_AMP_AMP, - ACTIONS(7770), 1, - anon_sym_and, - ACTIONS(6414), 24, + ACTIONS(6216), 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6214), 42, + 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___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [58270] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6220), 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_identifier, - ACTIONS(6416), 27, + ACTIONS(6218), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, + anon_sym_STAR, + 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___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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, - [104718] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [58332] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6592), 20, + ACTIONS(6224), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(6590), 33, + ACTIONS(6222), 42, 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___extension__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -414210,74 +375187,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [104779] = 8, + anon_sym_requires, + [58394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7758), 1, - anon_sym_LPAREN2, - ACTIONS(7760), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7762), 1, - anon_sym_LBRACK, - STATE(4325), 1, - sym_parameter_list, - STATE(3876), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6779), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6228), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(6777), 28, + ACTIONS(6226), 42, + 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___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_or, + anon_sym_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, - anon_sym_DOT_DOT_DOT_GT, - [104850] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [58456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4827), 20, + ACTIONS(6260), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -414287,25 +375263,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(4835), 33, + anon_sym_DASH_GT, + ACTIONS(6258), 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, @@ -414315,6 +375292,7 @@ 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, @@ -414328,14 +375306,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [104911] = 3, + anon_sym_DASH_GT_STAR, + [58518] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5890), 25, + ACTIONS(6908), 1, + anon_sym___attribute__, + STATE(3685), 1, + sym_attribute_specifier, + ACTIONS(6104), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -414350,29 +375332,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, - sym_identifier, - ACTIONS(5888), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(6102), 33, anon_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, @@ -414385,78 +375356,60 @@ 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, - [104972] = 26, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [58584] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(2658), 1, + anon_sym_LBRACE, + ACTIONS(6968), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7006), 1, - anon_sym_EQ, - ACTIONS(7691), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7693), 1, - anon_sym_AMP_AMP, - ACTIONS(7695), 1, - anon_sym_PIPE, - ACTIONS(7699), 1, - anon_sym_AMP, - ACTIONS(7705), 1, - anon_sym_GT_EQ, - ACTIONS(7709), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7711), 1, - anon_sym_or, - ACTIONS(7713), 1, - anon_sym_and, - ACTIONS(7715), 1, - anon_sym_bitor, - ACTIONS(7717), 1, - anon_sym_bitand, - STATE(3181), 1, + STATE(3742), 2, sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7055), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7687), 2, + sym_initializer_list, + ACTIONS(6373), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7697), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7707), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7701), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7703), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7008), 18, + 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(6371), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, + 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, @@ -414471,52 +375424,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [105079] = 8, + anon_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, + [58652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7588), 1, + ACTIONS(6195), 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(4040), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6753), 1, - sym_template_argument_list, - ACTIONS(4855), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5959), 12, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6193), 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_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5957), 33, - anon_sym_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -414527,185 +375473,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [105150] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7123), 1, - anon_sym_EQ, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7516), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - ACTIONS(7723), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7725), 1, - anon_sym_AMP_AMP, - ACTIONS(7727), 1, - anon_sym_PIPE, - ACTIONS(7731), 1, - anon_sym_AMP, - ACTIONS(7737), 1, - anon_sym_GT_EQ, - ACTIONS(7741), 1, - anon_sym_or, - ACTIONS(7743), 1, - anon_sym_and, - ACTIONS(7745), 1, - anon_sym_bitor, - ACTIONS(7747), 1, - anon_sym_bitand, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - ACTIONS(7526), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7719), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7729), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7739), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7721), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7733), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7735), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7125), 18, - 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_DASH_GT_STAR, - [105257] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7061), 1, - anon_sym_EQ, - ACTIONS(7165), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7691), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7693), 1, - anon_sym_AMP_AMP, - ACTIONS(7695), 1, - anon_sym_PIPE, - ACTIONS(7699), 1, - anon_sym_AMP, - ACTIONS(7705), 1, - anon_sym_GT_EQ, - ACTIONS(7709), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7711), 1, - anon_sym_or, - ACTIONS(7713), 1, - anon_sym_and, - ACTIONS(7715), 1, - anon_sym_bitor, - ACTIONS(7717), 1, - anon_sym_bitand, - ACTIONS(7772), 1, anon_sym_QMARK, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7055), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7687), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7697), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7707), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7689), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7701), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7703), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7065), 16, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [105368] = 5, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [58714] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6801), 1, - anon_sym___attribute__, - STATE(3987), 1, - sym_attribute_specifier, - ACTIONS(6424), 16, + ACTIONS(7124), 1, + sym_auto, + ACTIONS(7126), 1, + anon_sym_decltype, + STATE(3352), 1, + sym_decltype_auto, + ACTIONS(6191), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -414715,23 +375510,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(6422), 35, + ACTIONS(6189), 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, @@ -414741,31 +375538,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_or, - anon_sym_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, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [105433] = 5, + anon_sym_DASH_GT, + anon_sym_GT2, + [58782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6801), 1, - anon_sym___attribute__, - STATE(3990), 1, - sym_attribute_specifier, - ACTIONS(6428), 16, + ACTIONS(6318), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -414780,9 +375571,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(6426), 35, + ACTIONS(6316), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -414805,11 +375599,11 @@ 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_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -414818,10 +375612,12 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [105498] = 3, + [58844] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2183), 25, + ACTIONS(7430), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6506), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -414835,6 +375631,7 @@ 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_and_eq, anon_sym_or_eq, @@ -414847,7 +375644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(2185), 28, + ACTIONS(6504), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -414859,7 +375656,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -414876,71 +375672,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [105559] = 24, + [58908] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7693), 1, - anon_sym_AMP_AMP, - ACTIONS(7695), 1, - anon_sym_PIPE, - ACTIONS(7699), 1, - anon_sym_AMP, - ACTIONS(7705), 1, - anon_sym_GT_EQ, - ACTIONS(7709), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7713), 1, - anon_sym_and, - ACTIONS(7715), 1, - anon_sym_bitor, - ACTIONS(7717), 1, - anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7053), 2, - anon_sym_EQ, - anon_sym_or, - ACTIONS(7055), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7687), 2, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5381), 1, + anon_sym_LBRACE, + ACTIONS(5809), 1, + anon_sym_LT, + STATE(3476), 1, + sym_template_argument_list, + ACTIONS(5383), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7697), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7707), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7701), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7703), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7051), 19, + 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(5376), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym___attribute__, + 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, @@ -414955,69 +375727,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [105662] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7695), 1, - anon_sym_PIPE, - ACTIONS(7699), 1, - anon_sym_AMP, - ACTIONS(7705), 1, - anon_sym_GT_EQ, - ACTIONS(7709), 1, anon_sym_LT_EQ_GT, - ACTIONS(7715), 1, anon_sym_bitor, - ACTIONS(7717), 1, anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7055), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7687), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [58978] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6199), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7697), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7707), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7053), 3, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(7689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7701), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7703), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 20, + 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(6197), 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_SEMI, - anon_sym___attribute__, + 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, @@ -415032,140 +375784,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [105761] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7699), 1, - anon_sym_AMP, - ACTIONS(7705), 1, - anon_sym_GT_EQ, - ACTIONS(7709), 1, anon_sym_LT_EQ_GT, - ACTIONS(7717), 1, + anon_sym_bitor, anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7055), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7687), 2, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [59040] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6244), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7697), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7707), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7689), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7701), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7703), 3, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7053), 4, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(7051), 21, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6242), 42, 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___attribute__, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_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, - [105856] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7699), 1, - anon_sym_AMP, - ACTIONS(7705), 1, - anon_sym_GT_EQ, - ACTIONS(7709), 1, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(7717), 1, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7055), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7687), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [59102] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7432), 1, + anon_sym_LT, + STATE(3439), 1, + sym_template_argument_list, + ACTIONS(6576), 24, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7707), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7701), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7703), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7053), 6, 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - ACTIONS(7051), 21, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6574), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + 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, @@ -415177,66 +375909,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_bitor, - [105949] = 17, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [59168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5983), 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(5981), 42, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7000), 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___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7705), 1, - anon_sym_GT_EQ, - ACTIONS(7709), 1, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7055), 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(7687), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [59230] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6908), 1, + anon_sym___attribute__, + STATE(3606), 1, + sym_attribute_specifier, + ACTIONS(6022), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7707), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7701), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7703), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7053), 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, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(7051), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_DOT, + ACTIONS(6020), 33, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + 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, @@ -415251,62 +376023,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, - [106038] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7705), 1, - anon_sym_GT_EQ, - ACTIONS(7709), 1, - anon_sym_LT_EQ_GT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7055), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7687), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [59296] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6908), 1, + anon_sym___attribute__, + STATE(3555), 1, + sym_attribute_specifier, + ACTIONS(6026), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7707), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7703), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7053), 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, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(7051), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_DOT, + ACTIONS(6024), 33, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -415321,61 +376084,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [106125] = 14, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [59362] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(7424), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7426), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7428), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7709), 1, - anon_sym_LT_EQ_GT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7055), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7687), 2, + STATE(3874), 1, + sym_parameter_list, + STATE(3433), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6134), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7707), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7053), 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_or, anon_sym_and, anon_sym_xor, - ACTIONS(7051), 26, + anon_sym_DOT, + ACTIONS(6132), 28, 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___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -415383,82 +376144,57 @@ 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_bitor, - anon_sym_bitand, - anon_sym_not_eq, - [106208] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7077), 1, - anon_sym_EQ, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7516), 1, anon_sym_LT_EQ_GT, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - ACTIONS(7723), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7725), 1, - anon_sym_AMP_AMP, - ACTIONS(7727), 1, - anon_sym_PIPE, - ACTIONS(7731), 1, - anon_sym_AMP, - ACTIONS(7737), 1, - anon_sym_GT_EQ, - ACTIONS(7741), 1, - anon_sym_or, - ACTIONS(7743), 1, - anon_sym_and, - ACTIONS(7745), 1, anon_sym_bitor, - ACTIONS(7747), 1, anon_sym_bitand, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - ACTIONS(7526), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7528), 2, - anon_sym_DOT, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7719), 2, + anon_sym_GT2, + [59434] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6908), 1, + anon_sym___attribute__, + STATE(3571), 1, + sym_attribute_specifier, + ACTIONS(6032), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7729), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7739), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7721), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7733), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7735), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7079), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6030), 33, + anon_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, @@ -415473,74 +376209,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_DASH_GT_STAR, - [106315] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7077), 1, - anon_sym_EQ, - ACTIONS(7691), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7693), 1, - anon_sym_AMP_AMP, - ACTIONS(7695), 1, - anon_sym_PIPE, - ACTIONS(7699), 1, - anon_sym_AMP, - ACTIONS(7705), 1, - anon_sym_GT_EQ, - ACTIONS(7709), 1, anon_sym_LT_EQ_GT, - ACTIONS(7711), 1, - anon_sym_or, - ACTIONS(7713), 1, - anon_sym_and, - ACTIONS(7715), 1, anon_sym_bitor, - ACTIONS(7717), 1, anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7055), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7687), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [59500] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6908), 1, + anon_sym___attribute__, + STATE(3592), 1, + sym_attribute_specifier, + ACTIONS(6036), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7697), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7707), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7701), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7703), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7079), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6034), 33, + anon_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, @@ -415555,217 +376270,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [106422] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7081), 1, - anon_sym_EQ, - ACTIONS(7165), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7691), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7693), 1, - anon_sym_AMP_AMP, - ACTIONS(7695), 1, - anon_sym_PIPE, - ACTIONS(7699), 1, - anon_sym_AMP, - ACTIONS(7705), 1, - anon_sym_GT_EQ, - ACTIONS(7709), 1, anon_sym_LT_EQ_GT, - ACTIONS(7711), 1, - anon_sym_or, - ACTIONS(7713), 1, - anon_sym_and, - ACTIONS(7715), 1, anon_sym_bitor, - ACTIONS(7717), 1, anon_sym_bitand, - ACTIONS(7772), 1, - anon_sym_QMARK, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7055), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7687), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [59566] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6252), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7697), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7707), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7689), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7701), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7703), 3, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7083), 16, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6250), 42, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [106533] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7085), 1, - anon_sym_EQ, - ACTIONS(7691), 1, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(7693), 1, anon_sym_AMP_AMP, - ACTIONS(7695), 1, - anon_sym_PIPE, - ACTIONS(7699), 1, - anon_sym_AMP, - ACTIONS(7705), 1, - anon_sym_GT_EQ, - ACTIONS(7709), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(7711), 1, anon_sym_or, - ACTIONS(7713), 1, anon_sym_and, - ACTIONS(7715), 1, anon_sym_bitor, - ACTIONS(7717), 1, + anon_sym_xor, anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7055), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7687), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7697), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7707), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7689), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7701), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7703), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7087), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [106640] = 5, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [59628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6801), 1, - anon_sym___attribute__, - STATE(3995), 1, - sym_attribute_specifier, - ACTIONS(6432), 16, + ACTIONS(6256), 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(6430), 35, + ACTIONS(6254), 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___extension__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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, @@ -415776,17 +376392,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [106705] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [59690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6801), 1, - anon_sym___attribute__, - STATE(3996), 1, - sym_attribute_specifier, - ACTIONS(6436), 16, + ACTIONS(6346), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -415801,9 +376417,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(6434), 35, + ACTIONS(6344), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -415826,11 +376445,11 @@ 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_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -415839,15 +376458,14 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [106770] = 5, + [59752] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7774), 1, - anon_sym_LBRACK_LBRACK, - STATE(3781), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6831), 21, + ACTIONS(6932), 1, + anon_sym___attribute__, + STATE(3781), 1, + sym_attribute_specifier, + ACTIONS(6032), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -415857,26 +376475,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_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(6829), 29, + anon_sym_DASH_GT, + ACTIONS(6030), 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, @@ -415884,120 +376501,227 @@ 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_or, + anon_sym_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, - anon_sym_GT2, - [106835] = 28, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [59817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7093), 1, - anon_sym_EQ, - ACTIONS(7165), 1, + ACTIONS(4789), 13, anon_sym_DOT_DOT_DOT, - ACTIONS(7691), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_PIPE_PIPE, - ACTIONS(7693), 1, anon_sym_AMP_AMP, - ACTIONS(7695), 1, - anon_sym_PIPE, - ACTIONS(7699), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + ACTIONS(5938), 40, anon_sym_AMP, - ACTIONS(7705), 1, - anon_sym_GT_EQ, - ACTIONS(7709), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7711), 1, + anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_or, - ACTIONS(7713), 1, anon_sym_and, - ACTIONS(7715), 1, - anon_sym_bitor, - ACTIONS(7717), 1, - anon_sym_bitand, - ACTIONS(7772), 1, - anon_sym_QMARK, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7055), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7687), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7697), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7707), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7689), 3, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [59878] = 12, + 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(5753), 1, + anon_sym_virtual, + ACTIONS(5755), 1, + anon_sym_alignas, + STATE(3467), 2, + sym_declaration_modifiers, + aux_sym_declaration_specifiers_repeat1, + ACTIONS(7435), 7, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + STATE(4535), 7, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + ACTIONS(5745), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(7437), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7701), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7703), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7095), 16, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5743), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [59957] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(4771), 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_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4763), 40, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [106946] = 8, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [60020] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7758), 1, + ACTIONS(6968), 1, anon_sym_LPAREN2, - ACTIONS(7760), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7762), 1, + ACTIONS(7296), 1, anon_sym_LBRACK, - STATE(4325), 1, - sym_parameter_list, - STATE(3876), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6732), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + ACTIONS(7316), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7027), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -416015,8 +376739,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(6728), 28, + ACTIONS(7029), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -416040,15 +376766,11 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_DOT_DOT_DOT_GT, - [107017] = 3, + anon_sym_DASH_GT_STAR, + [60095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4837), 25, + ACTIONS(5599), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -416074,7 +376796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4829), 28, + ACTIONS(5601), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -416103,126 +376825,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [107078] = 3, + [60156] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(7311), 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_identifier, - ACTIONS(7309), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5218), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(6533), 1, + sym_identifier, + ACTIONS(6543), 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_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, - [107139] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2193), 25, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(6841), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(6843), 1, + anon_sym_AMP_AMP, + ACTIONS(6845), 1, anon_sym_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_identifier, - ACTIONS(2191), 28, - anon_sym_DOT_DOT_DOT, + STATE(4330), 1, + sym_parameter_list, + STATE(6740), 1, + sym_scope_resolution, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7389), 1, + sym_declarator, + STATE(7690), 1, + sym_abstract_declarator, + STATE(9168), 1, + sym_ms_based_modifier, + ACTIONS(7388), 2, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [107200] = 3, + anon_sym_RPAREN, + STATE(5923), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(7305), 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [60261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4837), 25, + ACTIONS(5617), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -416248,7 +376934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4829), 28, + ACTIONS(5619), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -416277,73 +376963,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [107261] = 28, + [60322] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, + ACTIONS(6968), 1, anon_sym_LPAREN2, - ACTIONS(7081), 1, + ACTIONS(7132), 1, anon_sym_EQ, - ACTIONS(7478), 1, + ACTIONS(7268), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7506), 1, + ACTIONS(7296), 1, anon_sym_LBRACK, - ACTIONS(7510), 1, + ACTIONS(7300), 1, anon_sym_QMARK, - ACTIONS(7516), 1, + ACTIONS(7306), 1, anon_sym_LT_EQ_GT, - ACTIONS(7671), 1, + ACTIONS(7439), 1, anon_sym_DOT_STAR, - ACTIONS(7723), 1, + ACTIONS(7445), 1, anon_sym_PIPE_PIPE, - ACTIONS(7725), 1, + ACTIONS(7447), 1, anon_sym_AMP_AMP, - ACTIONS(7727), 1, + ACTIONS(7449), 1, anon_sym_PIPE, - ACTIONS(7731), 1, + ACTIONS(7453), 1, anon_sym_AMP, - ACTIONS(7737), 1, + ACTIONS(7459), 1, anon_sym_GT_EQ, - ACTIONS(7741), 1, + ACTIONS(7463), 1, anon_sym_or, - ACTIONS(7743), 1, + ACTIONS(7465), 1, anon_sym_and, - ACTIONS(7745), 1, + ACTIONS(7467), 1, anon_sym_bitor, - ACTIONS(7747), 1, + ACTIONS(7469), 1, anon_sym_bitand, - STATE(4031), 1, + STATE(3819), 1, sym_argument_list, - STATE(4032), 1, + STATE(3820), 1, sym_subscript_argument_list, - ACTIONS(7526), 2, + ACTIONS(7316), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7528), 2, + ACTIONS(7318), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7719), 2, + ACTIONS(7441), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7729), 2, + ACTIONS(7451), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7739), 2, + ACTIONS(7461), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7721), 3, + ACTIONS(7443), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7733), 3, + ACTIONS(7455), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7735), 3, + ACTIONS(7457), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7083), 16, + ACTIONS(7134), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_STAR_EQ, @@ -416360,10 +377046,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_DASH_GT_STAR, - [107372] = 3, + [60433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7315), 25, + ACTIONS(6090), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -416378,29 +377065,19 @@ 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, - sym_identifier, - ACTIONS(7313), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(6088), 34, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -416413,15 +377090,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, - [107433] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [60494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7257), 25, + ACTIONS(6288), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -416431,34 +377117,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_and_eq, - anon_sym_or_eq, - anon_sym_xor_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, - sym_identifier, - ACTIONS(7255), 28, + ACTIONS(6286), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_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, @@ -416467,21 +377145,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_DOT_STAR, anon_sym_DASH_GT, - [107494] = 4, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [60555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7777), 1, - anon_sym_LPAREN2, - ACTIONS(2183), 25, + ACTIONS(6292), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -416491,33 +377175,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_and_eq, - anon_sym_or_eq, - anon_sym_xor_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, - sym_identifier, - ACTIONS(2185), 27, + ACTIONS(6290), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_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, @@ -416526,92 +377203,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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [107557] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7779), 1, - sym_identifier, - STATE(3802), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(3842), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3850), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5653), 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(5649), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [107626] = 8, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [60616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7758), 1, - anon_sym_LPAREN2, - ACTIONS(7760), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7762), 1, - anon_sym_LBRACK, - STATE(4325), 1, - sym_parameter_list, - STATE(3876), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6761), 19, + ACTIONS(6314), 19, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -416631,12 +377243,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6759), 28, + ACTIONS(6312), 34, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -416659,92 +377275,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_DOT_DOT_DOT_GT, - [107697] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7085), 1, - anon_sym_EQ, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7516), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - ACTIONS(7723), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7725), 1, - anon_sym_AMP_AMP, - ACTIONS(7727), 1, - anon_sym_PIPE, - ACTIONS(7731), 1, - anon_sym_AMP, - ACTIONS(7737), 1, - anon_sym_GT_EQ, - ACTIONS(7741), 1, - anon_sym_or, - ACTIONS(7743), 1, - anon_sym_and, - ACTIONS(7745), 1, - anon_sym_bitor, - ACTIONS(7747), 1, - anon_sym_bitand, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - ACTIONS(7526), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7719), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7729), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7739), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7721), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7733), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7735), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7087), 18, - 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_DASH_GT_STAR, - [107804] = 3, + [60677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4261), 25, + ACTIONS(5607), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -416770,7 +377307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4259), 28, + ACTIONS(5609), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -416799,10 +377336,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [107865] = 3, + [60738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7407), 25, + ACTIONS(6719), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -416828,7 +377365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7405), 28, + ACTIONS(6717), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -416857,10 +377394,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [107926] = 3, + [60799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7253), 25, + ACTIONS(5637), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -416886,7 +377423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7251), 28, + ACTIONS(5639), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -416915,10 +377452,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [107987] = 3, + [60860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7303), 25, + ACTIONS(5611), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -416944,7 +377481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7301), 28, + ACTIONS(5613), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -416973,10 +377510,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [108048] = 3, + [60921] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5746), 25, + ACTIONS(6932), 1, + anon_sym___attribute__, + STATE(3913), 1, + sym_attribute_specifier, + ACTIONS(6086), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -416991,29 +377532,19 @@ 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, - sym_identifier, - ACTIONS(3187), 28, + anon_sym_DASH_GT, + ACTIONS(6084), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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, @@ -417027,80 +377558,26 @@ 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, - [108109] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7781), 1, - anon_sym___attribute__, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - STATE(4827), 1, - sym_field_declaration_list, - STATE(4977), 1, - sym_attribute_specifier, - STATE(8498), 1, - sym_virtual_specifier, - STATE(9637), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(6078), 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(6076), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [108186] = 3, + anon_sym_DASH_GT_STAR, + [60986] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7061), 25, + ACTIONS(6932), 1, + anon_sym___attribute__, + STATE(3919), 1, + sym_attribute_specifier, + ACTIONS(6104), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -417115,29 +377592,19 @@ 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, - sym_identifier, - ACTIONS(7065), 28, + anon_sym_DASH_GT, + ACTIONS(6102), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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, @@ -417151,76 +377618,22 @@ 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_DOT_STAR, - anon_sym_DASH_GT, - [108247] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7787), 1, - sym_identifier, - STATE(3642), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(3842), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3850), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5647), 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(5643), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [108316] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [61051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7273), 25, + ACTIONS(6731), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -417246,7 +377659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7271), 28, + ACTIONS(6729), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -417275,10 +377688,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [108377] = 3, + [61112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7399), 25, + ACTIONS(5993), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -417304,7 +377717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7397), 28, + ACTIONS(5991), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -417333,10 +377746,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [108438] = 3, + [61173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 20, + ACTIONS(5641), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -417346,26 +377759,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_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(6561), 33, + sym_identifier, + ACTIONS(5643), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, 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, @@ -417374,29 +377795,19 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [108499] = 4, + [61234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5790), 1, - sym_literal_suffix, - ACTIONS(4837), 25, + ACTIONS(5595), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -417410,7 +377821,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -417422,16 +377832,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4829), 26, + sym_identifier, + ACTIONS(5597), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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_STAR_EQ, @@ -417449,170 +377862,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [108561] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7797), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7801), 1, - anon_sym_DOT, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - ACTIONS(7789), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7793), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7799), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7803), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7791), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7053), 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_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(7051), 23, - 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_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_GT2, - [108643] = 12, + [61295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(7473), 6, anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7801), 1, - anon_sym_DOT, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - ACTIONS(7789), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7799), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7803), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7791), 3, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7053), 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_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(7051), 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_QMARK, - anon_sym_STAR_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_GT2, - [108721] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5518), 1, - anon_sym_const, - ACTIONS(5529), 1, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(7471), 47, anon_sym_AMP, - ACTIONS(5522), 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(5527), 10, - 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(5525), 15, anon_sym___extension__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -417623,316 +377903,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5520), 18, - 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_or, - anon_sym_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, - [108789] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7801), 1, - anon_sym_DOT, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - ACTIONS(7789), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7793), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7799), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7803), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7791), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7053), 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_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(7051), 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_QMARK, - anon_sym_STAR_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_GT2, - [108869] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6810), 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(6808), 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, - [108929] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7530), 1, - anon_sym_DOT_STAR, - ACTIONS(7805), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7807), 1, - anon_sym_RPAREN, - ACTIONS(7817), 1, - anon_sym_PIPE, - ACTIONS(7819), 1, - anon_sym_CARET, - ACTIONS(7821), 1, - anon_sym_AMP, - ACTIONS(7827), 1, - anon_sym_GT_EQ, - ACTIONS(7831), 1, - anon_sym_EQ, - ACTIONS(7833), 1, - anon_sym_QMARK, - ACTIONS(7835), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7837), 1, - anon_sym_bitor, - ACTIONS(7839), 1, - anon_sym_xor, - ACTIONS(7841), 1, - anon_sym_bitand, - STATE(1354), 1, - sym_binary_fold_operator, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - STATE(9905), 1, - sym_fold_operator, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7809), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7813), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7815), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7829), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7843), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7823), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7825), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7532), 12, - 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_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_GT_STAR, - [109043] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7801), 1, - anon_sym_DOT, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - ACTIONS(7799), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7803), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7089), 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, - ACTIONS(7091), 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_QMARK, - anon_sym_STAR_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_GT2, - [109117] = 8, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [61356] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7845), 1, - anon_sym_LT, - STATE(2089), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2518), 1, - sym_template_argument_list, - ACTIONS(5490), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4827), 9, + ACTIONS(7475), 1, + sym_identifier, + STATE(3372), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(3982), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3990), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5554), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -417940,13 +377949,21 @@ 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(4835), 35, - ts_builtin_sym_end, + sym_literal_suffix, + ACTIONS(5550), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -417958,31 +377975,17 @@ 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___attribute__, - 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_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [109187] = 3, + [61425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4827), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6660), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -417997,18 +378000,29 @@ 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(4835), 33, + sym_identifier, + ACTIONS(6658), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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, @@ -418021,32 +378035,15 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [109247] = 6, + [61486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3007), 1, - anon_sym_LBRACE, - ACTIONS(7235), 1, - anon_sym_LPAREN2, - STATE(4522), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6888), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(5579), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -418061,11 +378058,24 @@ 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(6886), 29, + sym_identifier, + ACTIONS(5581), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -418083,35 +378093,15 @@ 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, - anon_sym_DOT_DOT_DOT_GT, - [109313] = 9, + [61547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7801), 1, - anon_sym_DOT, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - ACTIONS(7803), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6998), 19, + ACTIONS(6296), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -418131,13 +378121,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6996), 26, + anon_sym_DOT, + ACTIONS(6294), 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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -418157,19 +378151,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [109385] = 6, + [61608] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3007), 1, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5381), 1, anon_sym_LBRACE, - ACTIONS(7235), 1, - anon_sym_LPAREN2, - STATE(4428), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6908), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(5949), 1, + anon_sym_LT, + STATE(3547), 1, + sym_template_argument_list, + ACTIONS(5383), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -418179,21 +378177,24 @@ 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(6906), 29, + ACTIONS(5376), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -418202,7 +378203,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, @@ -418217,12 +378217,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [109451] = 3, + anon_sym_GT2, + [61677] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6588), 19, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7090), 1, + anon_sym_EQ, + ACTIONS(7092), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7481), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7483), 1, + anon_sym_AMP_AMP, + ACTIONS(7485), 1, + anon_sym_PIPE, + ACTIONS(7489), 1, + anon_sym_AMP, + ACTIONS(7495), 1, + anon_sym_GT_EQ, + ACTIONS(7499), 1, + anon_sym_QMARK, + ACTIONS(7501), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7503), 1, + anon_sym_or, + ACTIONS(7505), 1, + anon_sym_and, + ACTIONS(7507), 1, + anon_sym_bitor, + ACTIONS(7509), 1, + anon_sym_bitand, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7477), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7487), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7497), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7479), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7491), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7493), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7094), 16, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [61788] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7511), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6506), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -418236,20 +378320,24 @@ 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(6586), 33, + ACTIONS(6504), 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_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -418272,14 +378360,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [109511] = 3, + [61851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6310), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6195), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -418289,22 +378373,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(6308), 33, + ACTIONS(6193), 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_QMARK, @@ -418314,7 +378401,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, @@ -418331,80 +378417,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [109571] = 30, + anon_sym_GT2, + [61912] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7506), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7530), 1, - anon_sym_DOT_STAR, - ACTIONS(7805), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7817), 1, - anon_sym_PIPE, - ACTIONS(7819), 1, - anon_sym_CARET, - ACTIONS(7821), 1, - anon_sym_AMP, - ACTIONS(7827), 1, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7495), 1, anon_sym_GT_EQ, - ACTIONS(7831), 1, - anon_sym_EQ, - ACTIONS(7833), 1, - anon_sym_QMARK, - ACTIONS(7835), 1, + ACTIONS(7501), 1, anon_sym_LT_EQ_GT, - ACTIONS(7837), 1, - anon_sym_bitor, - ACTIONS(7839), 1, - anon_sym_xor, - ACTIONS(7841), 1, - anon_sym_bitand, - ACTIONS(7847), 1, - anon_sym_RPAREN, - STATE(1354), 1, - sym_binary_fold_operator, - STATE(4031), 1, + STATE(2617), 1, sym_argument_list, - STATE(4032), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(9905), 1, - sym_fold_operator, - ACTIONS(7528), 2, - anon_sym_DOT, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7809), 2, + ACTIONS(7477), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7813), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7815), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7829), 2, + ACTIONS(7497), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7843), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7811), 3, + ACTIONS(7479), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7823), 3, + ACTIONS(7491), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7825), 3, + ACTIONS(7493), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7532), 12, + ACTIONS(7019), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7021), 22, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -418415,40 +378485,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_GT_STAR, - [109685] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + [62001] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 16, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7485), 1, + anon_sym_PIPE, + ACTIONS(7489), 1, + anon_sym_AMP, + ACTIONS(7495), 1, + anon_sym_GT_EQ, + ACTIONS(7501), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7507), 1, + anon_sym_bitor, + ACTIONS(7509), 1, + anon_sym_bitand, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7477), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7487), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7497), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7019), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(7479), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7491), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7493), 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(6582), 36, + ACTIONS(7021), 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___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -418460,40 +378564,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_or, - anon_sym_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, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [109745] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1753), 1, - sym_fold_operator, - ACTIONS(2183), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2185), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_QMARK, 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, - ACTIONS(7831), 17, + [62100] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6719), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -418508,16 +378585,31 @@ 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, - ACTIONS(7532), 21, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6717), 28, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_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, @@ -418528,16 +378620,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [109811] = 3, + anon_sym_DASH_GT, + [62161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6664), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6244), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -418547,22 +378638,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(6662), 33, + ACTIONS(6242), 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_QMARK, @@ -418572,7 +378666,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, @@ -418589,12 +378682,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [109871] = 3, + anon_sym_GT2, + [62222] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6668), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(7513), 1, + anon_sym_LPAREN2, + ACTIONS(2191), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -418609,18 +378703,28 @@ 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(6666), 33, - anon_sym_LPAREN2, + sym_identifier, + ACTIONS(2193), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, 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, @@ -418633,25 +378737,15 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [109931] = 3, + [62285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6672), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(5983), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -418661,22 +378755,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(6670), 33, + ACTIONS(5981), 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_QMARK, @@ -418686,7 +378783,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, @@ -418703,15 +378799,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [109991] = 5, + anon_sym_GT2, + [62346] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7751), 1, - anon_sym_LT, - STATE(1837), 1, - sym_template_argument_list, - ACTIONS(7118), 17, + ACTIONS(6199), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -418721,25 +378813,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(7116), 33, + ACTIONS(6197), 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_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -418748,7 +378841,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, @@ -418763,14 +378855,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [110055] = 5, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [62407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7849), 1, - anon_sym_LT, - STATE(1964), 1, - sym_template_argument_list, - ACTIONS(7118), 18, + ACTIONS(6723), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -418781,18 +378872,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_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(7116), 32, + sym_identifier, + ACTIONS(6721), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -418811,49 +378911,65 @@ 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, - [110119] = 3, + anon_sym_DASH_GT, + [62468] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6676), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7495), 1, + anon_sym_GT_EQ, + ACTIONS(7501), 1, + anon_sym_LT_EQ_GT, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7477), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7497), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7479), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7493), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7019), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(6674), 33, - anon_sym_LPAREN2, + ACTIONS(7021), 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_LBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -418868,63 +378984,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [110179] = 10, + [62555] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7043), 1, anon_sym_DOT, - STATE(4226), 1, + ACTIONS(7501), 1, + anon_sym_LT_EQ_GT, + STATE(2617), 1, sym_argument_list, - STATE(4227), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7799), 2, + ACTIONS(7009), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7803), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7143), 19, + ACTIONS(7477), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7497), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7479), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7019), 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_or, anon_sym_and, anon_sym_xor, - ACTIONS(7141), 24, + ACTIONS(7021), 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_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -418932,22 +379046,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_and_eq, anon_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, - [110253] = 3, + [62638] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6596), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(4306), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -418962,18 +379074,29 @@ 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(6594), 33, + sym_identifier, + ACTIONS(4302), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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, @@ -418986,52 +379109,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_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [110313] = 3, + [62699] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6600), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7105), 1, + anon_sym_EQ, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7306), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + ACTIONS(7445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7447), 1, + anon_sym_AMP_AMP, + ACTIONS(7449), 1, + anon_sym_PIPE, + ACTIONS(7453), 1, + anon_sym_AMP, + ACTIONS(7459), 1, + anon_sym_GT_EQ, + ACTIONS(7463), 1, + anon_sym_or, + ACTIONS(7465), 1, + anon_sym_and, + ACTIONS(7467), 1, + anon_sym_bitor, + ACTIONS(7469), 1, + anon_sym_bitand, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + ACTIONS(7316), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7441), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7451), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7461), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7443), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7455), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7457), 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, - ACTIONS(6598), 33, - anon_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(7107), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -419046,28 +379194,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [110373] = 6, + anon_sym_DASH_GT_STAR, + [62806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5488), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5935), 1, - anon_sym_LBRACK, - ACTIONS(5932), 2, - anon_sym_RPAREN, - anon_sym_LPAREN2, - ACTIONS(4837), 19, + ACTIONS(6675), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -419082,19 +379213,30 @@ 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, - anon_sym_DASH_GT, - ACTIONS(4829), 29, + sym_identifier, + ACTIONS(6673), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_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, @@ -419106,37 +379248,15 @@ 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, - [110439] = 10, + anon_sym_DASH_GT, + [62867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7801), 1, - anon_sym_DOT, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - ACTIONS(7799), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7803), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7112), 19, + ACTIONS(6300), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -419156,13 +379276,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(7110), 24, + anon_sym_DOT, + ACTIONS(6298), 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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -419180,11 +379304,17 @@ static const uint16_t ts_small_parse_table[] = { 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, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [110513] = 3, + [62928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6698), 16, + ACTIONS(6763), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -419199,20 +379329,29 @@ 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, - anon_sym_DASH_GT, - ACTIONS(6696), 36, + sym_identifier, + ACTIONS(6761), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -419226,23 +379365,72 @@ 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, + [62989] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6076), 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(6078), 40, + anon_sym_AMP, + anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [110573] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [63050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6798), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -419257,18 +379445,29 @@ 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(6606), 33, + sym_identifier, + ACTIONS(6796), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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, @@ -419281,25 +379480,15 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [110633] = 3, + [63111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6612), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(4763), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -419309,22 +379498,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(6610), 33, + ACTIONS(4771), 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_QMARK, @@ -419334,7 +379526,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, @@ -419351,11 +379542,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [110693] = 3, + anon_sym_GT2, + [63172] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6970), 19, + ACTIONS(2931), 1, + anon_sym_LBRACE, + ACTIONS(7120), 1, + anon_sym_LPAREN2, + STATE(4112), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6377), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -419365,28 +379563,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_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6968), 33, + ACTIONS(6375), 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_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, @@ -419394,7 +379589,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, @@ -419409,72 +379603,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [110753] = 7, + anon_sym_GT2, + [63239] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5467), 1, - anon_sym_LBRACE, - ACTIONS(7852), 1, - anon_sym_LT, - STATE(3962), 1, - sym_template_argument_list, - ACTIONS(5469), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(7515), 1, + sym_identifier, + STATE(3397), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(3982), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3990), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5560), 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_LT, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5462), 30, + sym_literal_suffix, + ACTIONS(5556), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, + anon_sym_STAR, + 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_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, - anon_sym_DOT_DOT_DOT_GT, - [110821] = 3, + [63308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6616), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6512), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -419489,18 +379684,29 @@ 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(6614), 33, + sym_identifier, + ACTIONS(6510), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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, @@ -419513,27 +379719,161 @@ 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, + [63369] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6691), 1, + anon_sym_EQ, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7268), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7306), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + ACTIONS(7445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7447), 1, + anon_sym_AMP_AMP, + ACTIONS(7449), 1, + anon_sym_PIPE, + ACTIONS(7453), 1, + anon_sym_AMP, + ACTIONS(7459), 1, + anon_sym_GT_EQ, + ACTIONS(7463), 1, + anon_sym_or, + ACTIONS(7465), 1, + anon_sym_and, + ACTIONS(7467), 1, anon_sym_bitor, + ACTIONS(7469), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + ACTIONS(7316), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(7318), 2, + anon_sym_DOT, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [110881] = 4, + ACTIONS(7441), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7451), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7461), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7443), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7455), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7457), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6689), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_DASH_GT_STAR, + [63480] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5525), 2, + ACTIONS(4784), 1, anon_sym_COLON_COLON, + ACTIONS(7517), 1, + anon_sym_LT, + STATE(1833), 1, + sym_template_argument_list, + STATE(3945), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6090), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(7519), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6088), 41, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, anon_sym_LBRACE, - ACTIONS(5527), 20, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [63551] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6252), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -419554,7 +379894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5520), 30, + ACTIONS(6250), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -419562,6 +379902,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, @@ -419584,12 +379925,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [110943] = 3, + [63612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6630), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6256), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -419599,22 +379941,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(6628), 33, + ACTIONS(6254), 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_QMARK, @@ -419624,7 +379969,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, @@ -419641,95 +379985,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [111003] = 25, + anon_sym_GT2, + [63673] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7797), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7801), 1, - anon_sym_DOT, - ACTIONS(7855), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7857), 1, - anon_sym_AMP_AMP, - ACTIONS(7859), 1, - anon_sym_PIPE, - ACTIONS(7863), 1, + ACTIONS(5747), 1, + anon_sym___attribute__, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5753), 1, + anon_sym_virtual, + ACTIONS(5755), 1, + anon_sym_alignas, + STATE(3467), 2, + sym_declaration_modifiers, + aux_sym_declaration_specifiers_repeat1, + ACTIONS(7521), 7, anon_sym_AMP, - ACTIONS(7869), 1, - anon_sym_or, - ACTIONS(7871), 1, - anon_sym_and, - ACTIONS(7873), 1, - anon_sym_bitor, - ACTIONS(7875), 1, - anon_sym_bitand, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - ACTIONS(7123), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(7789), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7793), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7799), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7803), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7861), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7791), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7865), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7867), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7125), 16, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + STATE(4535), 7, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + ACTIONS(5745), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(7523), 11, 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + 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_EQ, anon_sym_GT2, - [111107] = 5, + ACTIONS(5743), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [63752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7877), 1, - anon_sym_LBRACK_LBRACK, - STATE(3844), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6831), 20, + ACTIONS(6284), 19, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -419744,19 +380071,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(6829), 29, + ACTIONS(6282), 34, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -419779,127 +380108,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_DOT_DOT_DOT_GT, - [111171] = 25, + [63813] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7797), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7801), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(7855), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7857), 1, - anon_sym_AMP_AMP, - ACTIONS(7859), 1, - anon_sym_PIPE, - ACTIONS(7863), 1, + ACTIONS(7489), 1, anon_sym_AMP, - ACTIONS(7869), 1, - anon_sym_or, - ACTIONS(7871), 1, - anon_sym_and, - ACTIONS(7873), 1, - anon_sym_bitor, - ACTIONS(7875), 1, + ACTIONS(7495), 1, + anon_sym_GT_EQ, + ACTIONS(7501), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7509), 1, anon_sym_bitand, - STATE(4226), 1, + STATE(2617), 1, sym_argument_list, - STATE(4227), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7077), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(7789), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7793), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7799), 2, + ACTIONS(7009), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7803), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7861), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7791), 3, + ACTIONS(7477), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7497), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7479), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7865), 3, + ACTIONS(7491), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7867), 4, + ACTIONS(7493), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7079), 16, - 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_GT2, - [111275] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7305), 26, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(7019), 6, anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, 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(7307), 26, + ACTIONS(7021), 21, 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___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -419911,28 +380181,14 @@ 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, - [111335] = 9, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + [63906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7801), 1, - anon_sym_DOT, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - ACTIONS(7803), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7057), 19, + ACTIONS(6260), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -419952,13 +380208,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(7059), 26, + anon_sym_DOT, + ACTIONS(6258), 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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -419978,11 +380238,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [111407] = 3, + [63967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6912), 20, + ACTIONS(6556), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -419996,24 +380260,31 @@ 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_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(6910), 32, + sym_identifier, + ACTIONS(6554), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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, @@ -420025,90 +380296,56 @@ 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, - [111467] = 30, + anon_sym_DASH_GT, + [64028] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7530), 1, - anon_sym_DOT_STAR, - ACTIONS(7805), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7817), 1, + ACTIONS(7525), 1, + anon_sym_AMP_AMP, + ACTIONS(7527), 1, + anon_sym_and, + ACTIONS(6753), 24, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(7819), 1, anon_sym_CARET, - ACTIONS(7821), 1, anon_sym_AMP, - ACTIONS(7827), 1, - anon_sym_GT_EQ, - ACTIONS(7831), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(7833), 1, - anon_sym_QMARK, - ACTIONS(7835), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7837), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, anon_sym_bitor, - ACTIONS(7839), 1, anon_sym_xor, - ACTIONS(7841), 1, anon_sym_bitand, - ACTIONS(7880), 1, - anon_sym_RPAREN, - STATE(1354), 1, - sym_binary_fold_operator, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - STATE(9905), 1, - sym_fold_operator, - ACTIONS(7528), 2, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7809), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7813), 2, + sym_identifier, + ACTIONS(6755), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7815), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7829), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7843), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7823), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7825), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7532), 12, - anon_sym_COMMA, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -420119,96 +380356,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_GT_STAR, - [111581] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7797), 1, anon_sym_LT_EQ_GT, - ACTIONS(7801), 1, - anon_sym_DOT, - ACTIONS(7855), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7857), 1, - anon_sym_AMP_AMP, - ACTIONS(7859), 1, - anon_sym_PIPE, - ACTIONS(7863), 1, - anon_sym_AMP, - ACTIONS(7869), 1, - anon_sym_or, - ACTIONS(7871), 1, - anon_sym_and, - ACTIONS(7873), 1, - anon_sym_bitor, - ACTIONS(7875), 1, - anon_sym_bitand, - ACTIONS(7882), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7884), 1, - anon_sym_QMARK, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - ACTIONS(7081), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(7789), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7793), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7799), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7803), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7861), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7791), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7865), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7867), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7083), 14, - 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_GT2, - [111689] = 5, + [64093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7886), 1, - anon_sym_LT, - STATE(4160), 1, - sym_template_argument_list, - ACTIONS(7277), 18, + ACTIONS(6592), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -420219,18 +380375,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_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(7275), 32, + sym_identifier, + ACTIONS(6590), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -420249,28 +380414,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, - [111753] = 5, + anon_sym_DASH_GT, + [64154] = 6, ACTIONS(3), 1, sym_comment, - STATE(3852), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7889), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5697), 13, + ACTIONS(7360), 1, + sym_auto, + ACTIONS(7362), 1, + anon_sym_decltype, + STATE(3704), 1, + sym_decltype_auto, + ACTIONS(6189), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -420284,7 +380442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5699), 34, + ACTIONS(6191), 37, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -420311,87 +380469,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, sym_identifier, - sym_auto, - anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, anon_sym_template, anon_sym_operator, - [111817] = 30, + anon_sym_try, + anon_sym_requires, + [64221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7530), 1, - anon_sym_DOT_STAR, - ACTIONS(7805), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7817), 1, + ACTIONS(6619), 25, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(7819), 1, anon_sym_CARET, - ACTIONS(7821), 1, anon_sym_AMP, - ACTIONS(7827), 1, - anon_sym_GT_EQ, - ACTIONS(7831), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(7833), 1, - anon_sym_QMARK, - ACTIONS(7835), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7837), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7839), 1, anon_sym_xor, - ACTIONS(7841), 1, anon_sym_bitand, - ACTIONS(7892), 1, - anon_sym_RPAREN, - STATE(1354), 1, - sym_binary_fold_operator, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - STATE(9905), 1, - sym_fold_operator, - ACTIONS(7528), 2, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7809), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7813), 2, + sym_identifier, + ACTIONS(6617), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7815), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7829), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7843), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7823), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7825), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7532), 12, - anon_sym_COMMA, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -420402,72 +380533,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_GT_STAR, - [111931] = 25, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [64282] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(7529), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(7531), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7533), 1, anon_sym_LBRACK, - ACTIONS(7797), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7801), 1, - anon_sym_DOT, - ACTIONS(7855), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7857), 1, - anon_sym_AMP_AMP, - ACTIONS(7859), 1, + STATE(4010), 1, + sym_parameter_list, + STATE(3653), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6134), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(7863), 1, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(7869), 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, - ACTIONS(7871), 1, anon_sym_and, - ACTIONS(7873), 1, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6132), 28, + 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, - ACTIONS(7875), 1, anon_sym_bitand, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - ACTIONS(7085), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(7789), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7793), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7799), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7803), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7861), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7791), 3, + anon_sym_DOT_DOT_DOT_GT, + [64353] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2931), 1, + anon_sym_LBRACE, + ACTIONS(7120), 1, + anon_sym_LPAREN2, + STATE(3949), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6386), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7865), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7867), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7087), 16, + 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(6384), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -420481,11 +380653,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_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, anon_sym_GT2, - [112035] = 3, + [64420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7135), 19, + ACTIONS(5680), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -420500,22 +380680,29 @@ 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, - anon_sym_DASH_GT, - ACTIONS(7133), 33, + sym_identifier, + ACTIONS(3211), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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, @@ -420528,21 +380715,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_DOT_STAR, - anon_sym_DASH_GT_STAR, - [112095] = 3, + anon_sym_DASH_GT, + [64481] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7245), 20, + ACTIONS(6932), 1, + anon_sym___attribute__, + STATE(3770), 1, + sym_attribute_specifier, + ACTIONS(6022), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -420556,14 +380741,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_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7243), 32, + ACTIONS(6020), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -420573,7 +380754,8 @@ 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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -420585,90 +380767,56 @@ 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_or, + anon_sym_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, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [112155] = 30, + [64546] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7530), 1, - anon_sym_DOT_STAR, - ACTIONS(7805), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7817), 1, + ACTIONS(6932), 1, + anon_sym___attribute__, + STATE(3776), 1, + sym_attribute_specifier, + ACTIONS(6026), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(7819), 1, anon_sym_CARET, - ACTIONS(7821), 1, anon_sym_AMP, - ACTIONS(7827), 1, - anon_sym_GT_EQ, - ACTIONS(7831), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(7833), 1, - anon_sym_QMARK, - ACTIONS(7835), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7837), 1, - anon_sym_bitor, - ACTIONS(7839), 1, - anon_sym_xor, - ACTIONS(7841), 1, - anon_sym_bitand, - ACTIONS(7894), 1, - anon_sym_RPAREN, - STATE(1354), 1, - sym_binary_fold_operator, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - STATE(9905), 1, - sym_fold_operator, - ACTIONS(7528), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7809), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7813), 2, + ACTIONS(6024), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7815), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7829), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7843), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7823), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7825), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7532), 12, - anon_sym_COMMA, + 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, @@ -420679,12 +380827,27 @@ 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, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [112269] = 3, + [64611] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6604), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(7535), 1, + anon_sym_LT, + STATE(1914), 1, + sym_template_argument_list, + ACTIONS(7100), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -420695,23 +380858,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(6602), 33, + anon_sym_DASH_GT, + ACTIONS(7098), 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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -420733,16 +380899,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [112329] = 4, + anon_sym_DASH_GT_STAR, + [64676] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6136), 1, - sym_literal_suffix, - ACTIONS(4837), 25, + ACTIONS(6932), 1, + anon_sym___attribute__, + STATE(3785), 1, + sym_attribute_specifier, + ACTIONS(6036), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -420757,18 +380922,9 @@ 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, anon_sym_DASH_GT, - ACTIONS(4829), 26, + ACTIONS(6034), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -420778,6 +380934,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, @@ -420791,15 +380948,27 @@ 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, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [112391] = 3, + [64741] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6684), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(7538), 1, + anon_sym_LBRACK_LBRACK, + STATE(3394), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6360), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -420809,24 +380978,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(6682), 33, + ACTIONS(6358), 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_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -420834,7 +381005,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, @@ -420849,14 +381019,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [112451] = 3, + anon_sym_GT2, + [64806] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4827), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + ACTIONS(7316), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7005), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -420874,16 +381057,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(4835), 33, - anon_sym_LPAREN2, + ACTIONS(7007), 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_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -420902,81 +381084,27 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [112511] = 9, + anon_sym_DASH_GT_STAR, + [64881] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(7896), 1, + ACTIONS(6968), 1, anon_sym_LPAREN2, - STATE(3134), 1, - sym_argument_list, - STATE(4131), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5212), 1, - sym_initializer_list, - ACTIONS(7899), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4835), 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(4827), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(7296), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [112583] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6688), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + ACTIONS(7316), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7011), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -420994,16 +381122,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(6686), 33, - anon_sym_LPAREN2, + ACTIONS(7013), 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_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -421022,117 +381149,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [112643] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7903), 1, - anon_sym_AMP_AMP, - ACTIONS(7905), 1, - anon_sym_AMP, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(7911), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7914), 1, - anon_sym_LBRACK, - ACTIONS(7916), 1, - anon_sym_const, - ACTIONS(7920), 1, - anon_sym_DASH_GT, - ACTIONS(7922), 1, - anon_sym_noexcept, - ACTIONS(7924), 1, - anon_sym_throw, - ACTIONS(7926), 1, - anon_sym_requires, - STATE(5990), 1, - sym_function_attributes_start, - STATE(6288), 1, - sym_ref_qualifier, - STATE(6684), 1, - sym_function_exception_specification, - STATE(7066), 1, - sym_trailing_return_type, - STATE(7143), 1, - sym_function_attributes_end, - STATE(7264), 1, - sym_function_postfix, - STATE(7270), 1, - sym_requires_clause, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(6118), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5288), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5823), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, - sym_noexcept, - sym_throw_specifier, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(7901), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_try, - ACTIONS(7907), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [112753] = 7, + anon_sym_DASH_GT_STAR, + [64956] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7928), 1, + ACTIONS(7541), 1, sym_identifier, - STATE(3872), 3, + STATE(3397), 3, sym_string_literal, sym_raw_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(6072), 5, + ACTIONS(7544), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(6074), 5, + ACTIONS(7547), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(5653), 17, + ACTIONS(5567), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -421141,7 +381180,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -421150,9 +381188,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(5649), 21, + ACTIONS(5562), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -421164,7 +381205,6 @@ 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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -421172,18 +381212,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [112821] = 3, + [65025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5671), 16, + ACTIONS(6596), 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, @@ -421191,117 +381240,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5669), 36, - ts_builtin_sym_end, + sym_identifier, + ACTIONS(6594), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - 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_DOT_STAR, - 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_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [112881] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7506), 1, anon_sym_LBRACK, - ACTIONS(7530), 1, - anon_sym_DOT_STAR, - ACTIONS(7805), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7817), 1, - anon_sym_PIPE, - ACTIONS(7819), 1, - anon_sym_CARET, - ACTIONS(7821), 1, - anon_sym_AMP, - ACTIONS(7827), 1, - anon_sym_GT_EQ, - ACTIONS(7831), 1, - anon_sym_EQ, - ACTIONS(7833), 1, anon_sym_QMARK, - ACTIONS(7835), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7837), 1, - anon_sym_bitor, - ACTIONS(7839), 1, - anon_sym_xor, - ACTIONS(7841), 1, - anon_sym_bitand, - ACTIONS(7930), 1, - anon_sym_RPAREN, - STATE(1354), 1, - sym_binary_fold_operator, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - STATE(9905), 1, - sym_fold_operator, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7809), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7813), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7815), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7829), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7843), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7823), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7825), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7532), 12, - anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -421312,12 +381265,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_GT_STAR, - [112995] = 3, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [65086] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6694), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6691), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -421332,18 +381288,29 @@ 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(6692), 33, + sym_identifier, + ACTIONS(6689), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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, @@ -421356,82 +381323,15 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [113055] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5683), 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(5681), 36, - ts_builtin_sym_end, - 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_DOT_STAR, 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_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [113115] = 3, + [65147] = 3, ACTIONS(3), 1, - sym_comment, - ACTIONS(6572), 19, - anon_sym_DOT_DOT_DOT, + sym_comment, + ACTIONS(6699), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -421446,18 +381346,29 @@ 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(6570), 33, + sym_identifier, + ACTIONS(6697), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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, @@ -421470,93 +381381,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_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [113175] = 30, + [65208] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, + ACTIONS(6968), 1, anon_sym_LPAREN2, - ACTIONS(7506), 1, + ACTIONS(7116), 1, + anon_sym_EQ, + ACTIONS(7296), 1, anon_sym_LBRACK, - ACTIONS(7530), 1, + ACTIONS(7306), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7439), 1, anon_sym_DOT_STAR, - ACTIONS(7805), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7817), 1, + ACTIONS(7445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7447), 1, + anon_sym_AMP_AMP, + ACTIONS(7449), 1, anon_sym_PIPE, - ACTIONS(7819), 1, - anon_sym_CARET, - ACTIONS(7821), 1, + ACTIONS(7453), 1, anon_sym_AMP, - ACTIONS(7827), 1, + ACTIONS(7459), 1, anon_sym_GT_EQ, - ACTIONS(7831), 1, - anon_sym_EQ, - ACTIONS(7833), 1, - anon_sym_QMARK, - ACTIONS(7835), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7837), 1, + ACTIONS(7463), 1, + anon_sym_or, + ACTIONS(7465), 1, + anon_sym_and, + ACTIONS(7467), 1, anon_sym_bitor, - ACTIONS(7839), 1, - anon_sym_xor, - ACTIONS(7841), 1, + ACTIONS(7469), 1, anon_sym_bitand, - ACTIONS(7932), 1, - anon_sym_RPAREN, - STATE(1354), 1, - sym_binary_fold_operator, - STATE(4031), 1, + STATE(3819), 1, sym_argument_list, - STATE(4032), 1, + STATE(3820), 1, sym_subscript_argument_list, - STATE(9905), 1, - sym_fold_operator, - ACTIONS(7528), 2, + ACTIONS(7316), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7318), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7809), 2, + ACTIONS(7441), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7813), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7815), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7829), 2, + ACTIONS(7451), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7461), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7843), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7811), 3, + ACTIONS(7443), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7823), 3, + ACTIONS(7455), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7825), 3, + ACTIONS(7457), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7532), 12, + ACTIONS(7118), 18, + 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, @@ -421567,38 +381463,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_DASH_GT_STAR, - [113289] = 7, + [65315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7934), 1, - sym_identifier, - STATE(3878), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(6072), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6074), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5647), 17, + ACTIONS(6707), 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___attribute__, + 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, @@ -421606,39 +381495,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5643), 21, + sym_identifier, + ACTIONS(6705), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - 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, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, - [113357] = 6, + [65376] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7474), 1, - sym_auto, - ACTIONS(7476), 1, - anon_sym_decltype, - STATE(4147), 1, - sym_decltype_auto, - ACTIONS(6404), 16, + ACTIONS(7535), 1, + anon_sym_LT, + STATE(3252), 1, + sym_template_argument_list, + ACTIONS(7100), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -421649,13 +381543,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_LBRACK, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6402), 33, + ACTIONS(7098), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -421665,8 +381562,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, @@ -421678,151 +381574,60 @@ 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_or, - anon_sym_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, - [113423] = 7, + [65441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7936), 1, - sym_identifier, - ACTIONS(7941), 1, - sym_primitive_type, - STATE(3905), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7939), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6022), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(6611), 25, + anon_sym_DASH, + anon_sym_PLUS, 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(6026), 32, - anon_sym_AMP, - anon_sym___extension__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [113491] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7530), 1, - anon_sym_DOT_STAR, - ACTIONS(7805), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7817), 1, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(7819), 1, anon_sym_CARET, - ACTIONS(7821), 1, anon_sym_AMP, - ACTIONS(7827), 1, - anon_sym_GT_EQ, - ACTIONS(7831), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(7833), 1, - anon_sym_QMARK, - ACTIONS(7835), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7837), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7839), 1, anon_sym_xor, - ACTIONS(7841), 1, anon_sym_bitand, - ACTIONS(7943), 1, - anon_sym_RPAREN, - STATE(1354), 1, - sym_binary_fold_operator, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - STATE(9905), 1, - sym_fold_operator, - ACTIONS(7528), 2, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7809), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7813), 2, + sym_identifier, + ACTIONS(6609), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7815), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7829), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7843), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7823), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7825), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7532), 12, - anon_sym_COMMA, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -421833,17 +381638,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_GT_STAR, - [113605] = 5, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [65502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7760), 1, - anon_sym_LBRACK_LBRACK, - STATE(3844), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6884), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(6615), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -421857,19 +381660,31 @@ 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_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(6882), 29, + sym_identifier, + ACTIONS(6613), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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, @@ -421881,91 +381696,58 @@ 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, - anon_sym_DOT_DOT_DOT_GT, - [113669] = 30, + [65563] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, + ACTIONS(6968), 1, anon_sym_LPAREN2, - ACTIONS(7506), 1, + ACTIONS(7296), 1, anon_sym_LBRACK, - ACTIONS(7530), 1, + ACTIONS(7439), 1, anon_sym_DOT_STAR, - ACTIONS(7805), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7817), 1, - anon_sym_PIPE, - ACTIONS(7819), 1, - anon_sym_CARET, - ACTIONS(7821), 1, - anon_sym_AMP, - ACTIONS(7827), 1, - anon_sym_GT_EQ, - ACTIONS(7831), 1, - anon_sym_EQ, - ACTIONS(7833), 1, - anon_sym_QMARK, - ACTIONS(7835), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7837), 1, - anon_sym_bitor, - ACTIONS(7839), 1, - anon_sym_xor, - ACTIONS(7841), 1, - anon_sym_bitand, - ACTIONS(7945), 1, - anon_sym_RPAREN, - STATE(1354), 1, - sym_binary_fold_operator, - STATE(4031), 1, + STATE(3819), 1, sym_argument_list, - STATE(4032), 1, + STATE(3820), 1, sym_subscript_argument_list, - STATE(9905), 1, - sym_fold_operator, - ACTIONS(7528), 2, + ACTIONS(7316), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7318), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7809), 2, + ACTIONS(7023), 17, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7813), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7815), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7829), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7843), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7811), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7823), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7825), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7532), 12, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7025), 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, @@ -421976,38 +381758,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_GT_STAR, - [113783] = 7, + [65638] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7947), 1, - sym_identifier, - STATE(3878), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(7950), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(7953), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5635), 17, + ACTIONS(6735), 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___attribute__, + 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, @@ -422015,33 +381794,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5630), 21, + sym_identifier, + ACTIONS(6733), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - 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, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, - [113851] = 3, + [65699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5469), 20, + ACTIONS(4763), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -422051,28 +381837,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, - anon_sym_DASH_GT, - ACTIONS(5462), 32, + ACTIONS(4771), 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_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -422080,7 +381865,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, @@ -422094,80 +381878,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [113911] = 30, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [65760] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7530), 1, - anon_sym_DOT_STAR, - ACTIONS(7805), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7817), 1, + ACTIONS(6781), 25, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(7819), 1, anon_sym_CARET, - ACTIONS(7821), 1, anon_sym_AMP, - ACTIONS(7827), 1, - anon_sym_GT_EQ, - ACTIONS(7831), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(7833), 1, - anon_sym_QMARK, - ACTIONS(7835), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7837), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7839), 1, anon_sym_xor, - ACTIONS(7841), 1, anon_sym_bitand, - ACTIONS(7956), 1, - anon_sym_RPAREN, - STATE(1354), 1, - sym_binary_fold_operator, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - STATE(9905), 1, - sym_fold_operator, - ACTIONS(7528), 2, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7809), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7813), 2, + sym_identifier, + ACTIONS(6779), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7815), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7829), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7843), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7823), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7825), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7532), 12, - anon_sym_COMMA, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -422178,12 +381935,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_GT_STAR, - [114025] = 3, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [65821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6658), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6741), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -422198,18 +381958,29 @@ 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(6656), 33, + sym_identifier, + ACTIONS(6739), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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, @@ -422222,243 +381993,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_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [114085] = 30, + [65882] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, + ACTIONS(2931), 1, + anon_sym_LBRACE, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7530), 1, - anon_sym_DOT_STAR, - ACTIONS(7805), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7817), 1, + STATE(3954), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6397), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(7819), 1, anon_sym_CARET, - ACTIONS(7821), 1, anon_sym_AMP, - ACTIONS(7827), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(7831), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(7833), 1, - anon_sym_QMARK, - ACTIONS(7835), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7837), 1, - anon_sym_bitor, - ACTIONS(7839), 1, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, anon_sym_xor, - ACTIONS(7841), 1, - anon_sym_bitand, - ACTIONS(7958), 1, - anon_sym_RPAREN, - STATE(1354), 1, - sym_binary_fold_operator, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - STATE(9905), 1, - sym_fold_operator, - ACTIONS(7528), 2, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7809), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7813), 2, + ACTIONS(6395), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7815), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7829), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7843), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7823), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7825), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7532), 12, - anon_sym_COMMA, + 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_DASH_GT_STAR, - [114199] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5754), 1, - anon_sym___attribute__, - ACTIONS(5756), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5758), 1, - anon_sym___declspec, - ACTIONS(5760), 1, - anon_sym_virtual, - ACTIONS(5762), 1, - anon_sym_alignas, - STATE(3958), 2, - sym_declaration_modifiers, - aux_sym_declaration_specifiers_repeat1, - ACTIONS(7960), 7, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - STATE(5060), 7, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - ACTIONS(5752), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(7962), 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, anon_sym_GT2, - ACTIONS(5750), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [114277] = 30, + [65949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7530), 1, - anon_sym_DOT_STAR, - ACTIONS(7805), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7817), 1, + ACTIONS(6580), 25, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(7819), 1, anon_sym_CARET, - ACTIONS(7821), 1, anon_sym_AMP, - ACTIONS(7827), 1, - anon_sym_GT_EQ, - ACTIONS(7831), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(7833), 1, - anon_sym_QMARK, - ACTIONS(7835), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7837), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7839), 1, anon_sym_xor, - ACTIONS(7841), 1, anon_sym_bitand, - ACTIONS(7964), 1, - anon_sym_RPAREN, - STATE(1354), 1, - sym_binary_fold_operator, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - STATE(9905), 1, - sym_fold_operator, - ACTIONS(7528), 2, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7809), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7813), 2, + sym_identifier, + ACTIONS(6578), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7815), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7829), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7843), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7823), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7825), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7532), 12, - anon_sym_COMMA, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -422469,152 +382112,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_GT_STAR, - [114391] = 7, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [66010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - STATE(2089), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6753), 1, - sym_template_argument_list, - ACTIONS(5490), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5957), 10, + ACTIONS(6749), 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_COLON, + 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(5959), 35, - ts_builtin_sym_end, + sym_identifier, + ACTIONS(6747), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - 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___attribute__, - 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_or, - anon_sym_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, - sym_auto, - anon_sym_decltype, - [114459] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(5276), 1, - anon_sym_LPAREN2, - ACTIONS(5278), 1, - anon_sym_STAR, - ACTIONS(5280), 1, - anon_sym_AMP_AMP, - ACTIONS(5282), 1, - anon_sym_AMP, - ACTIONS(5748), 1, - sym_identifier, - ACTIONS(6266), 1, - anon_sym_LBRACK, - ACTIONS(7534), 1, - anon_sym_RPAREN, - STATE(4268), 1, - sym_parameter_list, - STATE(7201), 1, - sym_scope_resolution, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(7552), 1, - sym_declarator, - STATE(7895), 1, - sym_abstract_declarator, - STATE(10059), 1, - sym_ms_based_modifier, - STATE(6505), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7464), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(7634), 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, - ACTIONS(3664), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [114563] = 3, + [66071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6522), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6715), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -422629,18 +382193,29 @@ 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(6520), 33, + sym_identifier, + ACTIONS(6713), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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, @@ -422653,24 +382228,15 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [114623] = 3, + [66132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7139), 20, + ACTIONS(6318), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -422680,28 +382246,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, - anon_sym_DASH_GT, - ACTIONS(7137), 32, + ACTIONS(6316), 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_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -422709,7 +382274,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, @@ -422723,19 +382287,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [114683] = 6, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [66193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3007), 1, - anon_sym_LBRACE, - ACTIONS(7235), 1, - anon_sym_LPAREN2, - STATE(4408), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6846), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6777), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -422750,11 +382309,24 @@ 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(6844), 29, + sym_identifier, + ACTIONS(6775), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -422772,29 +382344,190 @@ 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, + [66254] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7128), 1, + anon_sym_EQ, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7306), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + ACTIONS(7445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7447), 1, + anon_sym_AMP_AMP, + ACTIONS(7449), 1, + anon_sym_PIPE, + ACTIONS(7453), 1, + anon_sym_AMP, + ACTIONS(7459), 1, + anon_sym_GT_EQ, + ACTIONS(7463), 1, + anon_sym_or, + ACTIONS(7465), 1, + anon_sym_and, + ACTIONS(7467), 1, + anon_sym_bitor, + ACTIONS(7469), 1, + anon_sym_bitand, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + ACTIONS(7316), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7441), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7451), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7461), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7443), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7455), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7457), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7130), 18, + 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_DASH_GT_STAR, + [66361] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7128), 1, + anon_sym_EQ, + ACTIONS(7481), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7483), 1, + anon_sym_AMP_AMP, + ACTIONS(7485), 1, + anon_sym_PIPE, + ACTIONS(7489), 1, + anon_sym_AMP, + ACTIONS(7495), 1, + anon_sym_GT_EQ, + ACTIONS(7501), 1, anon_sym_LT_EQ_GT, + ACTIONS(7503), 1, + anon_sym_or, + ACTIONS(7505), 1, + anon_sym_and, + ACTIONS(7507), 1, anon_sym_bitor, + ACTIONS(7509), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7009), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [114749] = 6, + ACTIONS(7477), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7487), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7497), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7479), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7491), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7493), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7130), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [66468] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5488), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5935), 1, - anon_sym_LBRACK, - ACTIONS(5932), 2, - anon_sym_RPAREN, + ACTIONS(6968), 1, anon_sym_LPAREN2, - ACTIONS(4837), 19, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7015), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -422812,11 +382545,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4829), 29, + ACTIONS(7017), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -422842,16 +382574,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [114815] = 5, + [66541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6976), 1, - anon_sym_LBRACK, - STATE(4072), 1, - sym_new_declarator, - ACTIONS(6943), 20, + ACTIONS(6322), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -422872,7 +382599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6941), 30, + ACTIONS(6320), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -422881,6 +382608,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -422902,17 +382630,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [114879] = 6, + [66602] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5488), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5932), 1, - anon_sym_LPAREN2, - ACTIONS(5935), 1, - anon_sym_LBRACK, - ACTIONS(4837), 18, + ACTIONS(6932), 1, + anon_sym___attribute__, + STATE(3811), 1, + sym_attribute_specifier, + ACTIONS(6052), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -422927,20 +382655,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, - ACTIONS(4829), 31, + anon_sym_DASH_GT, + ACTIONS(6050), 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, @@ -422952,27 +382680,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_or, + anon_sym_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, - [114945] = 6, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [66667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5488), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5932), 1, - anon_sym_LPAREN2, - ACTIONS(5935), 1, - anon_sym_LBRACK, - ACTIONS(4837), 18, + ACTIONS(6638), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -422987,20 +382711,30 @@ 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(4829), 31, + sym_identifier, + ACTIONS(6636), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_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_STAR_EQ, anon_sym_SLASH_EQ, @@ -423012,25 +382746,15 @@ 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, - [115011] = 5, + [66728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7966), 1, - anon_sym_LT, - STATE(1836), 1, - sym_template_argument_list, - ACTIONS(7118), 18, + ACTIONS(6326), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -423040,25 +382764,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, - anon_sym_DASH_GT, - ACTIONS(7116), 32, + ACTIONS(6324), 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_QMARK, anon_sym_STAR_EQ, @@ -423067,7 +382792,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, @@ -423081,118 +382805,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [115075] = 27, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [66789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7797), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7801), 1, - anon_sym_DOT, - ACTIONS(7855), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7857), 1, - anon_sym_AMP_AMP, - ACTIONS(7859), 1, - anon_sym_PIPE, - ACTIONS(7863), 1, - anon_sym_AMP, - ACTIONS(7869), 1, - anon_sym_or, - ACTIONS(7871), 1, - anon_sym_and, - ACTIONS(7873), 1, - anon_sym_bitor, - ACTIONS(7875), 1, - anon_sym_bitand, - ACTIONS(7882), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7884), 1, - anon_sym_QMARK, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - ACTIONS(7093), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(7789), 2, + ACTIONS(6787), 25, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7793), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7799), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7803), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7861), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7791), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7865), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7867), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7095), 14, - 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_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_GT2, - [115183] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_COLON, - ACTIONS(7969), 1, - anon_sym___attribute__, - ACTIONS(7971), 1, - anon_sym_LBRACE, - STATE(4795), 1, - sym_field_declaration_list, - STATE(5078), 1, - sym_attribute_specifier, - STATE(8298), 1, - sym_virtual_specifier, - STATE(9368), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(6076), 19, - aux_sym_preproc_elif_token1, - 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, @@ -423201,37 +382838,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6078), 24, + ACTIONS(6785), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, - [115259] = 3, + [66850] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6897), 20, + ACTIONS(6791), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -423245,24 +382884,31 @@ 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_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(6895), 32, + sym_identifier, + ACTIONS(6789), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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, @@ -423274,88 +382920,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_DOT_STAR, - anon_sym_DASH_GT_STAR, - [115319] = 8, + anon_sym_DASH_GT, + [66911] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7973), 1, - anon_sym_LT, - STATE(4040), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4683), 1, - sym_template_argument_list, - ACTIONS(4855), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4835), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5761), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4827), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(6999), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [115389] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7305), 26, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(7043), 1, + anon_sym_DOT, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7479), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7019), 14, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -423365,29 +382960,19 @@ 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, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(7307), 26, + ACTIONS(7021), 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_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -423399,20 +382984,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, + [66988] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7009), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7045), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [115449] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5890), 19, + anon_sym_DASH_GT, + ACTIONS(7477), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7479), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7019), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -423421,24 +383026,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(5888), 33, + ACTIONS(7021), 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_GT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -423457,14 +383058,14 @@ static const uint16_t ts_small_parse_table[] = { 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, - [115509] = 3, + [67067] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4382), 20, + ACTIONS(6932), 1, + anon_sym___attribute__, + STATE(3813), 1, + sym_attribute_specifier, + ACTIONS(6062), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -423478,14 +383079,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_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4384), 32, + ACTIONS(6060), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -423495,7 +383092,8 @@ 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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -423507,22 +383105,27 @@ 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_or, + anon_sym_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, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [115569] = 3, + [67132] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6644), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6932), 1, + anon_sym___attribute__, + STATE(3815), 1, + sym_attribute_specifier, + ACTIONS(6070), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -423537,11 +383140,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(6642), 33, + anon_sym_DASH_GT, + ACTIONS(6068), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -423561,25 +383165,27 @@ 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_or, + anon_sym_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, sym_auto, anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [115629] = 3, + anon_sym_DASH_GT_STAR, + [67197] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6654), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6932), 1, + anon_sym___attribute__, + STATE(3817), 1, + sym_attribute_specifier, + ACTIONS(6074), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -423594,11 +383200,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(6652), 33, + anon_sym_DASH_GT, + ACTIONS(6072), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -423618,85 +383225,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_LT_EQ_GT, + anon_sym_or, + anon_sym_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, sym_auto, anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [115689] = 25, + anon_sym_DASH_GT_STAR, + [67262] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7797), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7801), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(7855), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7857), 1, - anon_sym_AMP_AMP, - ACTIONS(7859), 1, - anon_sym_PIPE, - ACTIONS(7863), 1, - anon_sym_AMP, - ACTIONS(7869), 1, - anon_sym_or, - ACTIONS(7871), 1, - anon_sym_and, - ACTIONS(7873), 1, - anon_sym_bitor, - ACTIONS(7875), 1, - anon_sym_bitand, - STATE(4226), 1, + STATE(2617), 1, sym_argument_list, - STATE(4227), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7006), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(7789), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7793), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7799), 2, + ACTIONS(7009), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7803), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7861), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7791), 3, + ACTIONS(7477), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7497), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7479), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7865), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7867), 4, + ACTIONS(7019), 10, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7008), 16, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7021), 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___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -423704,77 +383295,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_GT2, - [115793] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5699), 1, - sym_primitive_type, - STATE(3852), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7889), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6016), 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(6019), 33, - anon_sym_AMP, - anon_sym___extension__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [115859] = 3, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [67343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6543), 16, + ACTIONS(6272), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -423784,24 +383319,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(6541), 36, + ACTIONS(6270), 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___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -423811,35 +383347,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_or, - anon_sym_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, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [115919] = 6, + anon_sym_GT2, + [67404] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3007), 1, - anon_sym_LBRACE, - ACTIONS(7235), 1, - anon_sym_LPAREN2, - STATE(4435), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6916), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(7426), 1, + anon_sym_LBRACK_LBRACK, + STATE(3394), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6212), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -423849,22 +383382,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(6914), 29, + ACTIONS(6210), 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_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -423872,7 +383409,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, @@ -423887,42 +383423,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [115985] = 3, + anon_sym_GT2, + [67469] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6850), 20, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7483), 1, + anon_sym_AMP_AMP, + ACTIONS(7485), 1, + anon_sym_PIPE, + ACTIONS(7489), 1, + anon_sym_AMP, + ACTIONS(7495), 1, + anon_sym_GT_EQ, + ACTIONS(7501), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7505), 1, + anon_sym_and, + ACTIONS(7507), 1, + anon_sym_bitor, + ACTIONS(7509), 1, + anon_sym_bitand, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7019), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7477), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7487), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7497), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7479), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7491), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7493), 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_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6848), 32, + ACTIONS(7021), 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_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -423937,19 +383503,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_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, - [116045] = 3, + [67572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6592), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(5989), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -423959,22 +383516,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(6590), 33, + ACTIONS(5987), 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_QMARK, @@ -423984,7 +383544,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, @@ -424001,11 +383560,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [116105] = 3, + anon_sym_GT2, + [67633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6920), 20, + ACTIONS(6802), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -424019,24 +383578,31 @@ 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_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(6918), 32, + sym_identifier, + ACTIONS(6800), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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, @@ -424048,21 +383614,15 @@ 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, - [116165] = 3, + anon_sym_DASH_GT, + [67694] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6680), 16, + ACTIONS(6806), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -424077,20 +383637,29 @@ 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, - anon_sym_DASH_GT, - ACTIONS(6678), 36, + sym_identifier, + ACTIONS(6804), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -424104,22 +383673,14 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [116225] = 3, + anon_sym_DASH_GT, + [67755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5957), 16, + ACTIONS(6623), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -424134,20 +383695,29 @@ 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, - anon_sym_DASH_GT, - ACTIONS(5959), 36, + sym_identifier, + ACTIONS(6621), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -424161,23 +383731,14 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [116285] = 3, + anon_sym_DASH_GT, + [67816] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6547), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6552), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -424192,18 +383753,29 @@ 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(6545), 33, + sym_identifier, + ACTIONS(6550), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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, @@ -424216,153 +383788,54 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [116345] = 6, + [67877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7592), 1, - anon_sym_LT, - STATE(4370), 1, - sym_template_argument_list, - ACTIONS(6197), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym_COLON, - ACTIONS(4853), 44, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(2191), 25, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [116411] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7530), 1, - anon_sym_DOT_STAR, - ACTIONS(7805), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7817), 1, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(7819), 1, anon_sym_CARET, - ACTIONS(7821), 1, anon_sym_AMP, - ACTIONS(7827), 1, - anon_sym_GT_EQ, - ACTIONS(7831), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(7833), 1, - anon_sym_QMARK, - ACTIONS(7835), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7837), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7839), 1, anon_sym_xor, - ACTIONS(7841), 1, anon_sym_bitand, - ACTIONS(7975), 1, - anon_sym_RPAREN, - STATE(1354), 1, - sym_binary_fold_operator, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - STATE(9905), 1, - sym_fold_operator, - ACTIONS(7528), 2, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7809), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7813), 2, + sym_identifier, + ACTIONS(2193), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7815), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7829), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7843), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7823), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7825), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7532), 12, - anon_sym_COMMA, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -424373,12 +383846,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_GT_STAR, - [116525] = 3, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [67938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6239), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6603), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -424393,18 +383869,29 @@ 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(6237), 33, + sym_identifier, + ACTIONS(6601), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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, @@ -424417,24 +383904,15 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [116585] = 3, + [67999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4378), 20, + ACTIONS(6759), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -424448,24 +383926,31 @@ 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_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(4380), 32, + sym_identifier, + ACTIONS(6757), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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, @@ -424477,102 +383962,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_DOT_STAR, - anon_sym_DASH_GT_STAR, - [116645] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7592), 1, - anon_sym_LT, - STATE(4370), 1, - sym_template_argument_list, - ACTIONS(5460), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym_COLON, - ACTIONS(5467), 44, - 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___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [116711] = 7, + anon_sym_DASH_GT, + [68060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - STATE(4297), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6753), 1, - sym_template_argument_list, - ACTIONS(7977), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5957), 20, - aux_sym_preproc_elif_token1, + ACTIONS(6767), 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___attribute__, + 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, @@ -424581,38 +383996,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5959), 25, + ACTIONS(6765), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, - [116779] = 3, + [68121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6551), 16, + ACTIONS(6330), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -424622,24 +384038,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(6549), 36, + ACTIONS(6328), 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___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -424649,27 +384066,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_or, - anon_sym_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, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [116839] = 3, + anon_sym_GT2, + [68182] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 16, + ACTIONS(2931), 1, + anon_sym_LBRACE, + ACTIONS(7120), 1, + anon_sym_LPAREN2, + STATE(4099), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6373), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -424679,25 +384103,24 @@ 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(6464), 36, + ACTIONS(6371), 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_COLON_COLON, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -424706,28 +384129,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_or, - anon_sym_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, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [116899] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [68249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6555), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6771), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -424742,18 +384162,29 @@ 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(6553), 33, + sym_identifier, + ACTIONS(6769), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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, @@ -424766,25 +384197,15 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [116959] = 3, + [68310] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6559), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(4773), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -424799,18 +384220,29 @@ 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(6557), 33, + sym_identifier, + ACTIONS(4765), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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, @@ -424823,25 +384255,15 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [117019] = 3, + [68371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6334), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -424851,22 +384273,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(6561), 33, + ACTIONS(6332), 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_QMARK, @@ -424876,7 +384301,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, @@ -424893,13 +384317,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [117079] = 4, + anon_sym_GT2, + [68432] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7979), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6970), 20, + ACTIONS(6932), 1, + anon_sym___attribute__, + STATE(3828), 1, + sym_attribute_specifier, + ACTIONS(6096), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -424913,14 +384339,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_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6968), 31, + ACTIONS(6094), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -424930,6 +384352,8 @@ 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, anon_sym_SLASH_EQ, @@ -424941,21 +384365,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_or, + anon_sym_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, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [117141] = 3, + [68497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6970), 20, + ACTIONS(6338), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -424965,28 +384391,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, - anon_sym_DASH_GT, - ACTIONS(6968), 32, + ACTIONS(6336), 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_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -424994,7 +384419,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, @@ -425008,11 +384432,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [117201] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [68558] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7075), 20, + ACTIONS(6932), 1, + anon_sym___attribute__, + STATE(3829), 1, + sym_attribute_specifier, + ACTIONS(6100), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -425026,14 +384457,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_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7073), 32, + ACTIONS(6098), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -425043,7 +384470,8 @@ 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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -425055,21 +384483,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_or, + anon_sym_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, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [117261] = 3, + [68623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 20, + ACTIONS(6646), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -425083,24 +384513,31 @@ 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_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(6862), 32, + sym_identifier, + ACTIONS(6644), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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, @@ -425112,37 +384549,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_DOT_STAR, - anon_sym_DASH_GT_STAR, - [117321] = 10, + anon_sym_DASH_GT, + [68684] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(5747), 1, + anon_sym___attribute__, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + STATE(3617), 1, + sym_attribute_specifier, + STATE(4440), 1, + sym_field_declaration_list, + STATE(8057), 1, + sym_virtual_specifier, + STATE(8866), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5694), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7795), 1, + 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(5696), 32, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(7801), 1, - anon_sym_DOT, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - ACTIONS(7799), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7803), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7097), 19, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [68761] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6016), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -425162,13 +384643,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(7099), 24, + anon_sym_DOT, + ACTIONS(6018), 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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -425186,92 +384671,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [117395] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7797), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7801), 1, - anon_sym_DOT, - ACTIONS(7855), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7857), 1, - anon_sym_AMP_AMP, - ACTIONS(7859), 1, - anon_sym_PIPE, - ACTIONS(7863), 1, - anon_sym_AMP, - ACTIONS(7869), 1, - anon_sym_or, - ACTIONS(7871), 1, - anon_sym_and, - ACTIONS(7873), 1, - anon_sym_bitor, - ACTIONS(7875), 1, - anon_sym_bitand, - ACTIONS(7882), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7884), 1, - anon_sym_QMARK, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - ACTIONS(7061), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(7789), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7793), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7799), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7803), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7861), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7791), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7865), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7867), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7065), 14, - 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [117503] = 3, + [68822] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7303), 19, + ACTIONS(6970), 1, + anon_sym_LBRACK, + STATE(3673), 1, + sym_new_declarator, + ACTIONS(6454), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -425285,24 +384699,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(7301), 33, + anon_sym_DASH_GT, + ACTIONS(6452), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -425324,30 +384737,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [117563] = 6, + anon_sym_DASH_GT_STAR, + [68887] = 3, ACTIONS(3), 1, sym_comment, - STATE(3084), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5699), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(7154), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6019), 18, + ACTIONS(5603), 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___attribute__, + 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, @@ -425355,48 +384766,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_auto, - anon_sym_decltype, - ACTIONS(6016), 27, - ts_builtin_sym_end, + sym_identifier, + ACTIONS(5605), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - 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_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [117629] = 3, + [68948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5679), 16, + ACTIONS(6656), 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, @@ -425404,117 +384824,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5677), 36, - ts_builtin_sym_end, + sym_identifier, + ACTIONS(6654), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - 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_DOT_STAR, - 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_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [117689] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7506), 1, anon_sym_LBRACK, - ACTIONS(7530), 1, - anon_sym_DOT_STAR, - ACTIONS(7805), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7817), 1, - anon_sym_PIPE, - ACTIONS(7819), 1, - anon_sym_CARET, - ACTIONS(7821), 1, - anon_sym_AMP, - ACTIONS(7827), 1, - anon_sym_GT_EQ, - ACTIONS(7831), 1, - anon_sym_EQ, - ACTIONS(7833), 1, anon_sym_QMARK, - ACTIONS(7835), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7837), 1, - anon_sym_bitor, - ACTIONS(7839), 1, - anon_sym_xor, - ACTIONS(7841), 1, - anon_sym_bitand, - ACTIONS(7981), 1, - anon_sym_RPAREN, - STATE(1354), 1, - sym_binary_fold_operator, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - STATE(9905), 1, - sym_fold_operator, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7809), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7813), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7815), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7829), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7843), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7823), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7825), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7532), 12, - anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -425525,11 +384849,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_GT_STAR, - [117803] = 3, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [69009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6868), 20, + ACTIONS(6216), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -425539,28 +384867,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, - anon_sym_DASH_GT, - ACTIONS(6866), 32, + ACTIONS(6214), 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_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -425568,7 +384895,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, @@ -425582,36 +384908,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [117863] = 7, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [69070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5953), 1, - sym_literal_suffix, - STATE(3792), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(3842), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3850), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(4837), 16, + ACTIONS(6584), 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, @@ -425620,35 +384941,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4829), 23, + ACTIONS(6582), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, - [117931] = 3, + [69131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6640), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6634), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -425663,18 +384988,29 @@ 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(6638), 33, + sym_identifier, + ACTIONS(6632), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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, @@ -425687,24 +385023,15 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [117991] = 3, + [69192] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5890), 20, + ACTIONS(6711), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -425718,24 +385045,31 @@ 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_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(5888), 32, + sym_identifier, + ACTIONS(6709), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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, @@ -425747,64 +385081,53 @@ 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, - [118051] = 11, + anon_sym_DASH_GT, + [69253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7801), 1, - anon_sym_DOT, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - ACTIONS(7799), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7803), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7791), 3, + ACTIONS(5633), 25, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7053), 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_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, - ACTIONS(7051), 24, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(5635), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_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, @@ -425812,37 +385135,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_GT2, - [118127] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7801), 1, - anon_sym_DOT, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - ACTIONS(7799), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7803), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7053), 19, + [69314] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7525), 1, + anon_sym_AMP_AMP, + ACTIONS(7527), 1, + anon_sym_and, + ACTIONS(7554), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7556), 1, + anon_sym_or, + ACTIONS(6677), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -425852,104 +385165,31 @@ 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, - ACTIONS(7051), 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_QMARK, - anon_sym_STAR_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_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [118201] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7797), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7801), 1, anon_sym_DOT, - ACTIONS(7857), 1, - anon_sym_AMP_AMP, - ACTIONS(7859), 1, - anon_sym_PIPE, - ACTIONS(7863), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_and, - ACTIONS(7873), 1, - anon_sym_bitor, - ACTIONS(7875), 1, - anon_sym_bitand, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - ACTIONS(7789), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7793), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7799), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7803), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7861), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7053), 3, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - ACTIONS(7791), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7865), 3, + sym_identifier, + ACTIONS(6679), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7867), 4, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7051), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -425957,112 +385197,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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_GT2, - [118301] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7797), 1, anon_sym_LT_EQ_GT, - ACTIONS(7801), 1, - anon_sym_DOT, - ACTIONS(7859), 1, - anon_sym_PIPE, - ACTIONS(7863), 1, - anon_sym_AMP, - ACTIONS(7873), 1, - anon_sym_bitor, - ACTIONS(7875), 1, - anon_sym_bitand, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - ACTIONS(7789), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7793), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7799), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7803), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7861), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7791), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7865), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7053), 4, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(7867), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7051), 18, - 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_GT2, - [118397] = 7, + [69383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7983), 1, - sym_identifier, - ACTIONS(7987), 1, - sym_primitive_type, - STATE(3932), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7985), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6026), 18, + ACTIONS(6703), 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___attribute__, + 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, @@ -426070,40 +385234,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_auto, - anon_sym_decltype, - ACTIONS(6022), 27, - ts_builtin_sym_end, + sym_identifier, + ACTIONS(6701), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - 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_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [118465] = 3, + [69444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 20, + ACTIONS(6220), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -426113,28 +385277,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, - anon_sym_DASH_GT, - ACTIONS(7069), 32, + ACTIONS(6218), 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_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -426142,7 +385305,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, @@ -426156,24 +385318,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [118525] = 12, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [69505] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4771), 11, + 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_COLON, + anon_sym_GT2, + ACTIONS(4763), 42, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_try, + anon_sym_requires, + [69566] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5754), 1, + ACTIONS(7568), 1, anon_sym___attribute__, - ACTIONS(5756), 1, + ACTIONS(7571), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5758), 1, + ACTIONS(7574), 1, anon_sym___declspec, - ACTIONS(5760), 1, + ACTIONS(7577), 1, anon_sym_virtual, - ACTIONS(5762), 1, + ACTIONS(7580), 1, anon_sym_alignas, - STATE(3958), 2, + STATE(3467), 2, sym_declaration_modifiers, aux_sym_declaration_specifiers_repeat1, - ACTIONS(7989), 7, + ACTIONS(7558), 7, anon_sym_AMP, anon_sym___based, anon_sym_LBRACK, @@ -426181,7 +385404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - STATE(5060), 7, + STATE(4535), 7, sym_attribute_specifier, sym_attribute_declaration, sym_ms_declspec_modifier, @@ -426189,7 +385412,7 @@ static const uint16_t ts_small_parse_table[] = { sym_type_qualifier, sym_virtual, sym_alignas_specifier, - ACTIONS(5752), 9, + ACTIONS(7565), 9, anon_sym_extern, anon_sym_static, anon_sym_register, @@ -426199,7 +385422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(7991), 10, + ACTIONS(7560), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -426207,10 +385430,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_EQ, anon_sym_GT2, - ACTIONS(5750), 12, + ACTIONS(7562), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -426223,12 +385447,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [118603] = 4, + [69645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(4827), 16, + ACTIONS(6268), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -426243,18 +385466,18 @@ 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(4835), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6266), 34, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -426268,246 +385491,41 @@ 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_or, - anon_sym_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, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [118665] = 19, + anon_sym_DOT_DOT_DOT_GT, + [69706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7797), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7801), 1, - anon_sym_DOT, - ACTIONS(7863), 1, - anon_sym_AMP, - ACTIONS(7875), 1, - anon_sym_bitand, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - ACTIONS(7789), 2, + ACTIONS(6607), 25, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7793), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7799), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7803), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7861), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7791), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7865), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7867), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7053), 5, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(7051), 19, - 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_bitor, - anon_sym_GT2, - [118757] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7797), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7801), 1, - anon_sym_DOT, - ACTIONS(7863), 1, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(7875), 1, - anon_sym_bitand, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - ACTIONS(7789), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7793), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7799), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7803), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7791), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7865), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7867), 4, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7053), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(7051), 19, - 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_bitor, - anon_sym_GT2, - [118847] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7797), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7801), 1, - anon_sym_DOT, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - ACTIONS(7789), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7793), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7799), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7803), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7791), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7865), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7867), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7053), 8, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(7051), 20, - 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_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_GT2, - [118933] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5675), 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, @@ -426515,115 +385533,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5673), 36, - ts_builtin_sym_end, + sym_identifier, + ACTIONS(6605), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - 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, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [118993] = 30, + [69767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7165), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7171), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7173), 1, - anon_sym_AMP_AMP, - ACTIONS(7175), 1, - anon_sym_PIPE, - ACTIONS(7179), 1, - anon_sym_AMP, - ACTIONS(7185), 1, - anon_sym_GT_EQ, - ACTIONS(7189), 1, - anon_sym_QMARK, - ACTIONS(7191), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7193), 1, - anon_sym_or, - ACTIONS(7195), 1, - anon_sym_and, - ACTIONS(7197), 1, - anon_sym_bitor, - ACTIONS(7199), 1, - anon_sym_bitand, - ACTIONS(7560), 1, - anon_sym_RPAREN, - ACTIONS(7993), 1, - anon_sym_COMMA, - ACTIONS(7995), 1, - anon_sym_EQ, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7055), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7167), 2, + ACTIONS(6627), 25, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7177), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7187), 2, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7169), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7181), 3, + 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_identifier, + ACTIONS(6625), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7183), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7514), 13, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -426634,117 +385616,73 @@ 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, - [119107] = 28, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [69828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7903), 1, - anon_sym_AMP_AMP, - ACTIONS(7905), 1, + ACTIONS(6224), 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, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(7911), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7914), 1, - anon_sym_LBRACK, - ACTIONS(7916), 1, - anon_sym_const, - ACTIONS(7920), 1, - anon_sym_DASH_GT, - ACTIONS(7922), 1, - anon_sym_noexcept, - ACTIONS(7924), 1, - anon_sym_throw, - ACTIONS(8000), 1, - anon_sym_requires, - STATE(6052), 1, - sym_function_attributes_start, - STATE(6278), 1, - sym_ref_qualifier, - STATE(6643), 1, - sym_function_exception_specification, - STATE(6972), 1, - sym_trailing_return_type, - STATE(7157), 1, - sym_function_attributes_end, - STATE(7264), 1, - sym_function_postfix, - STATE(7270), 1, - sym_requires_clause, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7997), 2, - anon_sym_final, - anon_sym_override, - STATE(5288), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5823), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, - sym_noexcept, - sym_throw_specifier, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(7901), 9, + 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(6222), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_try, - ACTIONS(7907), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [119217] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4861), 1, - anon_sym_EQ, - ACTIONS(5488), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5932), 1, - anon_sym_LPAREN2, - ACTIONS(5935), 1, anon_sym_LBRACK, - ACTIONS(4865), 13, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, 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(4837), 17, + anon_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, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [69889] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5625), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -426758,33 +385696,54 @@ static const uint16_t ts_small_parse_table[] = { 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(4829), 18, + sym_identifier, + ACTIONS(5627), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_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_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, - [119287] = 3, + [69950] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7303), 20, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(4763), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -426798,24 +385757,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, - anon_sym_DASH_GT, - ACTIONS(7301), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4771), 33, anon_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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -426837,80 +385792,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [119347] = 30, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [70013] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, + ACTIONS(7529), 1, anon_sym_LPAREN2, - ACTIONS(7506), 1, + ACTIONS(7531), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7533), 1, anon_sym_LBRACK, - ACTIONS(7530), 1, - anon_sym_DOT_STAR, - ACTIONS(7805), 1, + STATE(4010), 1, + sym_parameter_list, + STATE(3653), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6040), 19, anon_sym_DOT_DOT_DOT, - ACTIONS(7817), 1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(7819), 1, anon_sym_CARET, - ACTIONS(7821), 1, anon_sym_AMP, - ACTIONS(7827), 1, - anon_sym_GT_EQ, - ACTIONS(7831), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(7833), 1, - anon_sym_QMARK, - ACTIONS(7835), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7837), 1, - anon_sym_bitor, - ACTIONS(7839), 1, + anon_sym_or, + anon_sym_and, anon_sym_xor, - ACTIONS(7841), 1, - anon_sym_bitand, - ACTIONS(8003), 1, - anon_sym_RPAREN, - STATE(1354), 1, - sym_binary_fold_operator, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - STATE(9905), 1, - sym_fold_operator, - ACTIONS(7528), 2, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7809), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7813), 2, + ACTIONS(6038), 28, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7815), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7829), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7843), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7811), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7823), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7825), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7532), 12, - anon_sym_COMMA, + anon_sym_GT_EQ, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -426921,15 +385847,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_GT_STAR, - [119461] = 5, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, + anon_sym_DOT_DOT_DOT_GT, + [70084] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7849), 1, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(7517), 1, anon_sym_LT, - STATE(3686), 1, + STATE(1833), 1, sym_template_argument_list, - ACTIONS(7118), 18, + STATE(3723), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4791), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6088), 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_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6090), 33, + anon_sym_AMP, + anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [70155] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5438), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(5440), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -426940,6 +385939,7 @@ 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, @@ -426948,7 +385948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7116), 32, + ACTIONS(5445), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -426981,58 +385981,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [119525] = 15, + [70218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7797), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7801), 1, - anon_sym_DOT, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - ACTIONS(7789), 2, + ACTIONS(6228), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7793), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7799), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7803), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7791), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7867), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7053), 8, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + 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(7051), 23, + anon_sym_DOT, + ACTIONS(6226), 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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -427046,64 +386028,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_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, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [119609] = 12, + [70279] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(8015), 1, - anon_sym___attribute__, - ACTIONS(8018), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8021), 1, - anon_sym___declspec, - ACTIONS(8024), 1, - anon_sym_virtual, - ACTIONS(8027), 1, - anon_sym_alignas, - STATE(3958), 2, - sym_declaration_modifiers, - aux_sym_declaration_specifiers_repeat1, - ACTIONS(8005), 7, - anon_sym_AMP, + ACTIONS(51), 1, anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, + ACTIONS(1534), 1, anon_sym_template, + ACTIONS(2257), 1, anon_sym_operator, - STATE(5060), 7, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - ACTIONS(8012), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(8007), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3253), 1, anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5218), 1, + anon_sym_LPAREN2, + ACTIONS(6533), 1, + sym_identifier, + ACTIONS(6543), 1, + anon_sym_LBRACK, + ACTIONS(6812), 1, anon_sym_STAR, + ACTIONS(6814), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_EQ, + ACTIONS(6816), 1, + anon_sym_AMP, + STATE(4398), 1, + sym_parameter_list, + STATE(6740), 1, + sym_scope_resolution, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7389), 1, + sym_declarator, + STATE(7679), 1, + sym_abstract_declarator, + STATE(9168), 1, + sym_ms_based_modifier, + ACTIONS(7388), 2, + anon_sym_COMMA, anon_sym_GT2, - ACTIONS(8009), 12, + STATE(5923), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(7305), 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, + ACTIONS(3694), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -427116,66 +386119,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [119687] = 3, + [70384] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4382), 21, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7090), 1, + anon_sym_EQ, + ACTIONS(7268), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7300), 1, + anon_sym_QMARK, + ACTIONS(7306), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + ACTIONS(7445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7447), 1, + anon_sym_AMP_AMP, + ACTIONS(7449), 1, + anon_sym_PIPE, + ACTIONS(7453), 1, + anon_sym_AMP, + ACTIONS(7459), 1, + anon_sym_GT_EQ, + ACTIONS(7463), 1, + anon_sym_or, + ACTIONS(7465), 1, + anon_sym_and, + ACTIONS(7467), 1, + anon_sym_bitor, + ACTIONS(7469), 1, + anon_sym_bitand, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + ACTIONS(7316), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7441), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7451), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7461), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7443), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7455), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7457), 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_LBRACK, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4384), 30, - anon_sym_DOT_DOT_DOT, + ACTIONS(7094), 16, 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_LBRACK, - anon_sym_QMARK, + anon_sym_RPAREN, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_DASH_GT_STAR, + [70495] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7060), 1, + anon_sym_EQ, + ACTIONS(7481), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7483), 1, + anon_sym_AMP_AMP, + ACTIONS(7485), 1, + anon_sym_PIPE, + ACTIONS(7489), 1, + anon_sym_AMP, + ACTIONS(7495), 1, + anon_sym_GT_EQ, + ACTIONS(7501), 1, anon_sym_LT_EQ_GT, + ACTIONS(7503), 1, + anon_sym_or, + ACTIONS(7505), 1, + anon_sym_and, + ACTIONS(7507), 1, anon_sym_bitor, + ACTIONS(7509), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7009), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [119746] = 3, + ACTIONS(7477), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7487), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7497), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7479), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7491), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7493), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7062), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [70602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6555), 16, + ACTIONS(6342), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -427185,23 +386296,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(6553), 35, + ACTIONS(6340), 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_QMARK, @@ -427211,27 +386324,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_or, - anon_sym_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, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [119805] = 3, + anon_sym_GT2, + [70663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6559), 16, + ACTIONS(2355), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -427246,19 +386359,29 @@ 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, - anon_sym_DASH_GT, - ACTIONS(6557), 35, + sym_identifier, + ACTIONS(2353), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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, @@ -427272,26 +386395,14 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [119864] = 4, + anon_sym_DASH_GT, + [70724] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5525), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5527), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6276), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -427301,22 +386412,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(5520), 30, + ACTIONS(6274), 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_QMARK, anon_sym_STAR_EQ, @@ -427325,7 +386440,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, @@ -427340,11 +386454,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [119925] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [70785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 16, + ACTIONS(2359), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -427359,19 +386475,29 @@ 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, - anon_sym_DASH_GT, - ACTIONS(6561), 35, + sym_identifier, + ACTIONS(2357), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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, @@ -427385,85 +386511,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, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [119984] = 28, + anon_sym_DASH_GT, + [70846] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(7061), 1, - anon_sym_EQ, - ACTIONS(7235), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(8030), 1, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7092), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8036), 1, + ACTIONS(7132), 1, + anon_sym_EQ, + ACTIONS(7481), 1, anon_sym_PIPE_PIPE, - ACTIONS(8038), 1, + ACTIONS(7483), 1, anon_sym_AMP_AMP, - ACTIONS(8040), 1, + ACTIONS(7485), 1, anon_sym_PIPE, - ACTIONS(8044), 1, + ACTIONS(7489), 1, anon_sym_AMP, - ACTIONS(8050), 1, + ACTIONS(7495), 1, anon_sym_GT_EQ, - ACTIONS(8054), 1, - anon_sym_LBRACK, - ACTIONS(8056), 1, + ACTIONS(7499), 1, anon_sym_QMARK, - ACTIONS(8058), 1, + ACTIONS(7501), 1, anon_sym_LT_EQ_GT, - ACTIONS(8060), 1, + ACTIONS(7503), 1, anon_sym_or, - ACTIONS(8062), 1, + ACTIONS(7505), 1, anon_sym_and, - ACTIONS(8064), 1, + ACTIONS(7507), 1, anon_sym_bitor, - ACTIONS(8066), 1, + ACTIONS(7509), 1, anon_sym_bitand, - ACTIONS(8070), 1, - anon_sym_DOT, - STATE(4413), 1, + STATE(2617), 1, sym_argument_list, - STATE(4493), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8032), 2, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7477), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8042), 2, + ACTIONS(7487), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8052), 2, + ACTIONS(7497), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8068), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8072), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8034), 3, + ACTIONS(7479), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(8046), 3, + ACTIONS(7491), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8048), 3, + ACTIONS(7493), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7065), 14, + ACTIONS(7134), 16, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -427477,11 +386598,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_DOT_DOT_DOT_GT, - [120093] = 3, + [70957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7159), 19, + ACTIONS(2189), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -427496,15 +386616,23 @@ 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, - anon_sym_DASH_GT, - ACTIONS(7157), 32, + sym_identifier, + ACTIONS(2187), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -427523,21 +386651,15 @@ 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, - [120152] = 3, + anon_sym_DASH_GT, + [71018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7203), 19, + ACTIONS(4773), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -427552,15 +386674,23 @@ 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, - anon_sym_DASH_GT, - ACTIONS(7201), 32, + sym_identifier, + ACTIONS(4765), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -427579,120 +386709,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_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, - [120211] = 5, + anon_sym_DASH_GT, + [71079] = 3, ACTIONS(3), 1, sym_comment, - STATE(4056), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5957), 4, + ACTIONS(5629), 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_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(8074), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5959), 42, + 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_identifier, + ACTIONS(5631), 28, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [120274] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7235), 1, - anon_sym_LPAREN2, - ACTIONS(8054), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - ACTIONS(8070), 1, - anon_sym_DOT, - STATE(4413), 1, - sym_argument_list, - STATE(4493), 1, - sym_subscript_argument_list, - ACTIONS(8068), 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_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, - ACTIONS(8072), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8034), 3, + [71140] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6346), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7053), 15, - anon_sym_DOT_DOT_DOT, - 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_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(7051), 24, + anon_sym_DOT, + ACTIONS(6344), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -427700,7 +386813,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, @@ -427711,27 +386823,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT_DOT_DOT_GT, - [120349] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7235), 1, - anon_sym_LPAREN2, - ACTIONS(8054), 1, - anon_sym_LBRACK, - ACTIONS(8070), 1, - anon_sym_DOT, - STATE(4413), 1, - sym_argument_list, - STATE(4493), 1, - sym_subscript_argument_list, - ACTIONS(8068), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8072), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7053), 18, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [71201] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6078), 19, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -427750,12 +386852,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(7051), 24, + anon_sym_DOT, + ACTIONS(6076), 34, + anon_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, @@ -427774,69 +386881,80 @@ static const uint16_t ts_small_parse_table[] = { 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, + sym_auto, + anon_sym_decltype, anon_sym_DOT_DOT_DOT_GT, - [120422] = 24, + [71262] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(8038), 1, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7105), 1, + anon_sym_EQ, + ACTIONS(7481), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7483), 1, anon_sym_AMP_AMP, - ACTIONS(8040), 1, + ACTIONS(7485), 1, anon_sym_PIPE, - ACTIONS(8044), 1, + ACTIONS(7489), 1, anon_sym_AMP, - ACTIONS(8050), 1, + ACTIONS(7495), 1, anon_sym_GT_EQ, - ACTIONS(8054), 1, - anon_sym_LBRACK, - ACTIONS(8058), 1, + ACTIONS(7501), 1, anon_sym_LT_EQ_GT, - ACTIONS(8062), 1, + ACTIONS(7503), 1, + anon_sym_or, + ACTIONS(7505), 1, anon_sym_and, - ACTIONS(8064), 1, + ACTIONS(7507), 1, anon_sym_bitor, - ACTIONS(8066), 1, + ACTIONS(7509), 1, anon_sym_bitand, - ACTIONS(8070), 1, - anon_sym_DOT, - STATE(4413), 1, + STATE(2617), 1, sym_argument_list, - STATE(4493), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8032), 2, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7477), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8042), 2, + ACTIONS(7487), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8052), 2, + ACTIONS(7497), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8068), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8072), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7053), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_EQ, - anon_sym_or, - ACTIONS(8034), 3, + ACTIONS(7479), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(8046), 3, + ACTIONS(7491), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8048), 3, + ACTIONS(7493), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 16, - anon_sym_PIPE_PIPE, + ACTIONS(7107), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -427851,67 +386969,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_DOT_DOT_DOT_GT, - [120523] = 22, + [71369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, - anon_sym_LPAREN2, - ACTIONS(8040), 1, - anon_sym_PIPE, - ACTIONS(8044), 1, - anon_sym_AMP, - ACTIONS(8050), 1, - anon_sym_GT_EQ, - ACTIONS(8054), 1, - anon_sym_LBRACK, - ACTIONS(8058), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8064), 1, - anon_sym_bitor, - ACTIONS(8066), 1, - anon_sym_bitand, - ACTIONS(8070), 1, - anon_sym_DOT, - STATE(4413), 1, - sym_argument_list, - STATE(4493), 1, - sym_subscript_argument_list, - ACTIONS(8032), 2, + ACTIONS(6506), 25, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8042), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8052), 2, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8068), 2, + 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_identifier, + ACTIONS(6504), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_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, + [71430] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5915), 4, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(5917), 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(4765), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_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_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8072), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8034), 3, + ACTIONS(4773), 21, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(8046), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8048), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7053), 4, + anon_sym_LT_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, + sym_identifier, + [71495] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7145), 1, + sym_auto, + ACTIONS(7147), 1, + anon_sym_decltype, + STATE(3650), 1, + sym_decltype_auto, + ACTIONS(6191), 19, anon_sym_DOT_DOT_DOT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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, - ACTIONS(7051), 17, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6189), 31, + anon_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, @@ -427926,64 +387139,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_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, anon_sym_DOT_DOT_DOT_GT, - [120620] = 20, + [71562] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(8044), 1, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7116), 1, + anon_sym_EQ, + ACTIONS(7481), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7483), 1, + anon_sym_AMP_AMP, + ACTIONS(7485), 1, + anon_sym_PIPE, + ACTIONS(7489), 1, anon_sym_AMP, - ACTIONS(8050), 1, + ACTIONS(7495), 1, anon_sym_GT_EQ, - ACTIONS(8054), 1, - anon_sym_LBRACK, - ACTIONS(8058), 1, + ACTIONS(7501), 1, anon_sym_LT_EQ_GT, - ACTIONS(8066), 1, + ACTIONS(7503), 1, + anon_sym_or, + ACTIONS(7505), 1, + anon_sym_and, + ACTIONS(7507), 1, + anon_sym_bitor, + ACTIONS(7509), 1, anon_sym_bitand, - ACTIONS(8070), 1, - anon_sym_DOT, - STATE(4413), 1, + STATE(2617), 1, sym_argument_list, - STATE(4493), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8032), 2, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7477), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8042), 2, + ACTIONS(7487), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8052), 2, + ACTIONS(7497), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8068), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8072), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8034), 3, + anon_sym_GT_GT, + ACTIONS(7479), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(8046), 3, + ACTIONS(7491), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8048), 3, + ACTIONS(7493), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7053), 5, + ACTIONS(7118), 18, anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(7051), 18, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -427998,64 +387229,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_bitor, - anon_sym_DOT_DOT_DOT_GT, - [120713] = 19, + [71669] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, - anon_sym_LPAREN2, - ACTIONS(8044), 1, - anon_sym_AMP, - ACTIONS(8050), 1, - anon_sym_GT_EQ, - ACTIONS(8054), 1, - anon_sym_LBRACK, - ACTIONS(8058), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8066), 1, - anon_sym_bitand, - ACTIONS(8070), 1, - anon_sym_DOT, - STATE(4413), 1, - sym_argument_list, - STATE(4493), 1, - sym_subscript_argument_list, - ACTIONS(8032), 2, + ACTIONS(7583), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6506), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8052), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8068), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8072), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8034), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(8046), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8048), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7053), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(7051), 18, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6504), 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, @@ -428070,61 +387280,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_DOT_DOT_DOT_GT, - [120804] = 17, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [71732] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, + ACTIONS(6968), 1, anon_sym_LPAREN2, - ACTIONS(8050), 1, - anon_sym_GT_EQ, - ACTIONS(8054), 1, + ACTIONS(7296), 1, anon_sym_LBRACK, - ACTIONS(8058), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8070), 1, - anon_sym_DOT, - STATE(4413), 1, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + STATE(3819), 1, sym_argument_list, - STATE(4493), 1, + STATE(3820), 1, sym_subscript_argument_list, - ACTIONS(8032), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8052), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8068), 2, + ACTIONS(7316), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8072), 2, - anon_sym_DOT_STAR, + ACTIONS(7318), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8034), 3, + ACTIONS(7443), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(8046), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8048), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7053), 8, - anon_sym_DOT_DOT_DOT, + ACTIONS(7019), 14, + 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_or, anon_sym_and, anon_sym_xor, - ACTIONS(7051), 19, + ACTIONS(7021), 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, @@ -428139,60 +387349,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, - anon_sym_DOT_DOT_DOT_GT, - [120891] = 16, + anon_sym_not_eq, + anon_sym_DASH_GT_STAR, + [71809] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, + ACTIONS(6968), 1, anon_sym_LPAREN2, - ACTIONS(8050), 1, - anon_sym_GT_EQ, - ACTIONS(8054), 1, + ACTIONS(7296), 1, anon_sym_LBRACK, - ACTIONS(8058), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8070), 1, - anon_sym_DOT, - STATE(4413), 1, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + STATE(3819), 1, sym_argument_list, - STATE(4493), 1, + STATE(3820), 1, sym_subscript_argument_list, - ACTIONS(8032), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8052), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8068), 2, + ACTIONS(7316), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8072), 2, - anon_sym_DOT_STAR, + ACTIONS(7318), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8034), 3, + ACTIONS(7019), 17, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(8048), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7053), 8, - anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_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(7051), 22, + ACTIONS(7021), 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, @@ -428207,59 +387414,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_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_DOT_DOT_GT, - [120976] = 14, + anon_sym_DASH_GT_STAR, + [71884] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, + ACTIONS(6968), 1, anon_sym_LPAREN2, - ACTIONS(8054), 1, + ACTIONS(7296), 1, anon_sym_LBRACK, - ACTIONS(8058), 1, + ACTIONS(7306), 1, anon_sym_LT_EQ_GT, - ACTIONS(8070), 1, - anon_sym_DOT, - STATE(4413), 1, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + ACTIONS(7447), 1, + anon_sym_AMP_AMP, + ACTIONS(7449), 1, + anon_sym_PIPE, + ACTIONS(7453), 1, + anon_sym_AMP, + ACTIONS(7459), 1, + anon_sym_GT_EQ, + ACTIONS(7465), 1, + anon_sym_and, + ACTIONS(7467), 1, + anon_sym_bitor, + ACTIONS(7469), 1, + anon_sym_bitand, + STATE(3819), 1, sym_argument_list, - STATE(4493), 1, + STATE(3820), 1, sym_subscript_argument_list, - ACTIONS(8032), 2, + ACTIONS(7019), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(7316), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7441), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8052), 2, + ACTIONS(7451), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7461), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8068), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8072), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8034), 3, + ACTIONS(7443), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7053), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7455), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7457), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(7051), 23, + ACTIONS(7021), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -428274,38 +387497,16 @@ static const uint16_t ts_small_parse_table[] = { 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_DOT_DOT_GT, - [121057] = 12, + anon_sym_DASH_GT_STAR, + [71987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, - anon_sym_LPAREN2, - ACTIONS(8054), 1, - anon_sym_LBRACK, - ACTIONS(8070), 1, - anon_sym_DOT, - STATE(4413), 1, - sym_argument_list, - STATE(4493), 1, - sym_subscript_argument_list, - ACTIONS(8032), 2, + ACTIONS(6564), 25, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8068), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8072), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8034), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7053), 13, - anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -428315,15 +387516,30 @@ 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, - ACTIONS(7051), 24, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6562), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_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, @@ -428335,61 +387551,73 @@ 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_DOT_DOT_DOT_GT, - [121134] = 13, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [72048] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, + ACTIONS(6968), 1, anon_sym_LPAREN2, - ACTIONS(8054), 1, + ACTIONS(7296), 1, anon_sym_LBRACK, - ACTIONS(8070), 1, - anon_sym_DOT, - STATE(4413), 1, + ACTIONS(7306), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + ACTIONS(7449), 1, + anon_sym_PIPE, + ACTIONS(7453), 1, + anon_sym_AMP, + ACTIONS(7459), 1, + anon_sym_GT_EQ, + ACTIONS(7467), 1, + anon_sym_bitor, + ACTIONS(7469), 1, + anon_sym_bitand, + STATE(3819), 1, sym_argument_list, - STATE(4493), 1, + STATE(3820), 1, sym_subscript_argument_list, - ACTIONS(8032), 2, + ACTIONS(7316), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7441), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8052), 2, + ACTIONS(7451), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7461), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8068), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8072), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8034), 3, + ACTIONS(7019), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(7443), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7053), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7455), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7457), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(7051), 24, + ACTIONS(7021), 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, @@ -428404,19 +387632,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_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_DOT_DOT_GT, - [121213] = 5, + anon_sym_DASH_GT_STAR, + [72147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8076), 1, - anon_sym_LT, - STATE(2088), 1, - sym_template_argument_list, - ACTIONS(7118), 19, + ACTIONS(6568), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -428426,24 +387646,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_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(7116), 30, + sym_identifier, + ACTIONS(6566), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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, @@ -428452,65 +387682,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, anon_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, - anon_sym_GT2, - [121276] = 10, + [72208] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(8054), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8070), 1, + ACTIONS(7043), 1, anon_sym_DOT, - STATE(4413), 1, + ACTIONS(7489), 1, + anon_sym_AMP, + ACTIONS(7495), 1, + anon_sym_GT_EQ, + ACTIONS(7501), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7509), 1, + anon_sym_bitand, + STATE(2617), 1, sym_argument_list, - STATE(4493), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8068), 2, + ACTIONS(7009), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8072), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7097), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(7477), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7487), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7497), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7479), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7491), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7493), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7019), 4, + anon_sym_PIPE, anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - ACTIONS(7099), 24, + ACTIONS(7021), 21, + 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___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -428525,113 +387765,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_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_DOT_DOT_GT, - [121349] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4056), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4827), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(8074), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4835), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [121412] = 10, + [72303] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, + ACTIONS(6968), 1, anon_sym_LPAREN2, - ACTIONS(8054), 1, + ACTIONS(7296), 1, anon_sym_LBRACK, - ACTIONS(8070), 1, - anon_sym_DOT, - STATE(4413), 1, + ACTIONS(7306), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + ACTIONS(7453), 1, + anon_sym_AMP, + ACTIONS(7459), 1, + anon_sym_GT_EQ, + ACTIONS(7469), 1, + anon_sym_bitand, + STATE(3819), 1, sym_argument_list, - STATE(4493), 1, + STATE(3820), 1, sym_subscript_argument_list, - ACTIONS(8068), 2, + ACTIONS(7316), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8072), 2, - anon_sym_DOT_STAR, + ACTIONS(7318), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7089), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(7441), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7451), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7461), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7443), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7455), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7457), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7019), 4, + anon_sym_PIPE, anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - ACTIONS(7091), 24, + ACTIONS(7021), 21, + 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, @@ -428646,15 +387839,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_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_DOT_DOT_GT, - [121485] = 3, + anon_sym_DASH_GT_STAR, + [72398] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6897), 21, + ACTIONS(6401), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -428669,14 +387859,13 @@ 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_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6895), 30, + ACTIONS(6399), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -428684,7 +387873,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -428706,41 +387896,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [121544] = 3, + [72459] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7217), 19, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7306), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + ACTIONS(7453), 1, + anon_sym_AMP, + ACTIONS(7459), 1, + anon_sym_GT_EQ, + ACTIONS(7469), 1, + anon_sym_bitand, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + ACTIONS(7316), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7441), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7461), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7443), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7455), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7457), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7019), 6, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7215), 32, + ACTIONS(7021), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -428755,18 +387971,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_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, - [121603] = 3, + [72552] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6368), 19, + ACTIONS(7585), 1, + anon_sym_LT, + STATE(1796), 1, + sym_template_argument_list, + ACTIONS(7100), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -428777,26 +387991,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, - anon_sym_DASH_GT, - ACTIONS(6370), 32, + ACTIONS(7098), 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_LBRACK, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -428818,18 +388032,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [121662] = 6, + anon_sym_DASH_GT, + [72617] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3053), 1, - anon_sym_LBRACE, - ACTIONS(7470), 1, - anon_sym_LPAREN2, - STATE(4618), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6888), 16, + ACTIONS(7585), 1, + anon_sym_LT, + STATE(3089), 1, + sym_template_argument_list, + ACTIONS(7100), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -428840,22 +388051,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, - anon_sym_DASH_GT, - ACTIONS(6886), 31, + ACTIONS(7098), 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_LBRACK, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -428867,49 +388082,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_or, - anon_sym_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, - [121727] = 3, + anon_sym_DASH_GT, + [72682] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6588), 16, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7306), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + ACTIONS(7459), 1, + anon_sym_GT_EQ, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + ACTIONS(7316), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7441), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7461), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7443), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7455), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7457), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7019), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6586), 35, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7021), 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, @@ -428921,51 +388159,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_or, - anon_sym_and, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, 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, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [121786] = 3, + [72771] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6310), 16, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7306), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + ACTIONS(7459), 1, + anon_sym_GT_EQ, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + ACTIONS(7316), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7441), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7461), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7443), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7457), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7019), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6308), 35, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7021), 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_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -428977,53 +388229,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_or, - anon_sym_and, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, 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, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [121845] = 3, + [72858] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6468), 19, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7306), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + ACTIONS(7316), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7441), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7461), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7443), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7019), 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_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6470), 32, + ACTIONS(7021), 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, @@ -429038,23 +388301,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_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, - [121904] = 3, + [72941] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6596), 16, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + ACTIONS(7316), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7441), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7443), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7019), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -429064,20 +388341,18 @@ 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(6594), 35, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7021), 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, @@ -429089,51 +388364,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_or, - anon_sym_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, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [121963] = 3, + [73020] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6600), 16, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7060), 1, + anon_sym_EQ, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7306), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + ACTIONS(7445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7447), 1, + anon_sym_AMP_AMP, + ACTIONS(7449), 1, + anon_sym_PIPE, + ACTIONS(7453), 1, + anon_sym_AMP, + ACTIONS(7459), 1, + anon_sym_GT_EQ, + ACTIONS(7463), 1, + anon_sym_or, + ACTIONS(7465), 1, + anon_sym_and, + ACTIONS(7467), 1, + anon_sym_bitor, + ACTIONS(7469), 1, + anon_sym_bitand, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + ACTIONS(7316), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7441), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7451), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7461), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7443), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7455), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7457), 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(6598), 35, + ACTIONS(7062), 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_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -429145,53 +388449,59 @@ 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, - sym_auto, - anon_sym_decltype, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_DASH_GT_STAR, - [122022] = 3, + [73127] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(7225), 19, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + ACTIONS(7316), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7441), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7461), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7443), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7019), 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_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7223), 32, + ACTIONS(7021), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -429210,14 +388520,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [122081] = 3, + [73208] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7229), 19, + ACTIONS(7529), 1, + anon_sym_LPAREN2, + ACTIONS(7531), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7533), 1, + anon_sym_LBRACK, + STATE(4010), 1, + sym_parameter_list, + STATE(3653), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6143), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -429236,18 +388555,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7227), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(6141), 28, 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, @@ -429269,11 +388582,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [122140] = 3, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [73279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 16, + ACTIONS(6576), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -429288,19 +388602,29 @@ 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, - anon_sym_DASH_GT, - ACTIONS(6606), 35, + sym_identifier, + ACTIONS(6574), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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, @@ -429314,22 +388638,15 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [122199] = 3, + anon_sym_DASH_GT, + [73340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6612), 16, + ACTIONS(6240), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -429344,18 +388661,18 @@ 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(6610), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6238), 34, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -429369,23 +388686,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_or, - anon_sym_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, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [122258] = 3, + anon_sym_DOT_DOT_DOT_GT, + [73401] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6616), 16, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6995), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -429400,20 +388731,18 @@ 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(6614), 35, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(6997), 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, anon_sym_SLASH_EQ, @@ -429425,23 +388754,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_or, - anon_sym_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, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [122317] = 3, + [73474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6630), 16, + ACTIONS(5621), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -429456,19 +388782,29 @@ 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, - anon_sym_DASH_GT, - ACTIONS(6628), 35, + sym_identifier, + ACTIONS(5623), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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, @@ -429482,109 +388818,15 @@ 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, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [122376] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7235), 1, - anon_sym_LPAREN2, - ACTIONS(8036), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8038), 1, - anon_sym_AMP_AMP, - ACTIONS(8040), 1, - anon_sym_PIPE, - ACTIONS(8044), 1, - anon_sym_AMP, - ACTIONS(8050), 1, - anon_sym_GT_EQ, - ACTIONS(8054), 1, - anon_sym_LBRACK, - ACTIONS(8058), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8060), 1, - anon_sym_or, - ACTIONS(8062), 1, - anon_sym_and, - ACTIONS(8064), 1, - anon_sym_bitor, - ACTIONS(8066), 1, - anon_sym_bitand, - ACTIONS(8070), 1, - anon_sym_DOT, - STATE(4413), 1, - sym_argument_list, - STATE(4493), 1, - sym_subscript_argument_list, - ACTIONS(7077), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_EQ, - ACTIONS(8032), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8042), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8052), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8068), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8072), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8034), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(8046), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8048), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7079), 15, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_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_DOT_DOT_GT, - [122481] = 7, + [73535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8079), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8081), 1, - anon_sym_AMP_AMP, - ACTIONS(8083), 1, - anon_sym_or, - ACTIONS(8085), 1, - anon_sym_and, - ACTIONS(6372), 17, + ACTIONS(6248), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -429599,17 +388841,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, - anon_sym_DASH_GT, - ACTIONS(6374), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6246), 34, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -429632,11 +388876,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [122548] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [73596] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4837), 19, + ACTIONS(5591), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -429651,15 +388898,23 @@ 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, - anon_sym_DASH_GT, - ACTIONS(4829), 32, + sym_identifier, + ACTIONS(5593), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -429668,94 +388923,27 @@ static const uint16_t ts_small_parse_table[] = { 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, - [122607] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7081), 1, - anon_sym_EQ, - ACTIONS(7235), 1, - anon_sym_LPAREN2, - ACTIONS(8030), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8036), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8038), 1, - anon_sym_AMP_AMP, - ACTIONS(8040), 1, - anon_sym_PIPE, - ACTIONS(8044), 1, - anon_sym_AMP, - ACTIONS(8050), 1, - anon_sym_GT_EQ, - ACTIONS(8054), 1, - anon_sym_LBRACK, - ACTIONS(8056), 1, - anon_sym_QMARK, - ACTIONS(8058), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8060), 1, - anon_sym_or, - ACTIONS(8062), 1, - anon_sym_and, - ACTIONS(8064), 1, - anon_sym_bitor, - ACTIONS(8066), 1, - anon_sym_bitand, - ACTIONS(8070), 1, - anon_sym_DOT, - STATE(4413), 1, - sym_argument_list, - STATE(4493), 1, - sym_subscript_argument_list, - ACTIONS(8032), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8042), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8052), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8068), 2, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, - ACTIONS(8072), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8034), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(8046), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8048), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7083), 14, + [73657] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4797), 1, + anon_sym_EQ, + ACTIONS(4801), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -429769,11 +388957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_DOT_DOT_DOT_GT, - [122716] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4378), 21, + ACTIONS(4773), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -429783,40 +388967,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_LBRACK, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4380), 30, + ACTIONS(4765), 22, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + 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_LBRACK, + 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -429825,11 +388998,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [122775] = 3, + [73722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4261), 19, + ACTIONS(6572), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -429844,15 +389016,23 @@ 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, - anon_sym_DASH_GT, - ACTIONS(4259), 32, + sym_identifier, + ACTIONS(6570), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -429871,21 +389051,15 @@ 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, - [122834] = 3, + anon_sym_DASH_GT, + [73783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 21, + ACTIONS(5383), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -429895,27 +389069,35 @@ 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_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(6862), 30, + sym_identifier, + ACTIONS(5376), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -429923,25 +389105,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_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [122893] = 3, + [73844] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6868), 21, + ACTIONS(7529), 1, + anon_sym_LPAREN2, + ACTIONS(7531), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7533), 1, + anon_sym_LBRACK, + STATE(4010), 1, + sym_parameter_list, + STATE(3653), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6082), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -429951,27 +389139,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_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6866), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(6080), 28, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -429979,6 +389161,7 @@ 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, @@ -429993,72 +389176,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [122952] = 26, + anon_sym_DOT_DOT_DOT_GT, + [73915] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(8036), 1, + ACTIONS(6691), 1, + anon_sym_EQ, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7092), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7481), 1, anon_sym_PIPE_PIPE, - ACTIONS(8038), 1, + ACTIONS(7483), 1, anon_sym_AMP_AMP, - ACTIONS(8040), 1, + ACTIONS(7485), 1, anon_sym_PIPE, - ACTIONS(8044), 1, + ACTIONS(7489), 1, anon_sym_AMP, - ACTIONS(8050), 1, + ACTIONS(7495), 1, anon_sym_GT_EQ, - ACTIONS(8054), 1, - anon_sym_LBRACK, - ACTIONS(8058), 1, + ACTIONS(7499), 1, + anon_sym_QMARK, + ACTIONS(7501), 1, anon_sym_LT_EQ_GT, - ACTIONS(8060), 1, + ACTIONS(7503), 1, anon_sym_or, - ACTIONS(8062), 1, + ACTIONS(7505), 1, anon_sym_and, - ACTIONS(8064), 1, + ACTIONS(7507), 1, anon_sym_bitor, - ACTIONS(8066), 1, + ACTIONS(7509), 1, anon_sym_bitand, - ACTIONS(8070), 1, - anon_sym_DOT, - STATE(4413), 1, + STATE(2617), 1, sym_argument_list, - STATE(4493), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7085), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_EQ, - ACTIONS(8032), 2, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7477), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8042), 2, + ACTIONS(7487), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8052), 2, + ACTIONS(7497), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8068), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8072), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8034), 3, + ACTIONS(7479), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(8046), 3, + ACTIONS(7491), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8048), 3, + ACTIONS(7493), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7087), 15, - anon_sym_QMARK, + ACTIONS(6689), 16, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -430072,69 +389260,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_DOT_DOT_DOT_GT, - [123057] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4128), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6007), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(8087), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6005), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [123120] = 3, + [74026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6684), 16, + ACTIONS(6642), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -430149,19 +389278,29 @@ 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, - anon_sym_DASH_GT, - ACTIONS(6682), 35, + sym_identifier, + ACTIONS(6640), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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, @@ -430175,22 +389314,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_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [123179] = 3, + anon_sym_DASH_GT, + [74087] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6688), 16, + ACTIONS(7588), 1, + anon_sym_LT, + STATE(3749), 1, + sym_template_argument_list, + ACTIONS(6576), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -430201,13 +389336,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, anon_sym_DASH_GT, - ACTIONS(6686), 35, + ACTIONS(6574), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -430217,7 +389354,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, @@ -430230,137 +389366,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_or, - anon_sym_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, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [123238] = 5, + [74151] = 11, ACTIONS(3), 1, sym_comment, - STATE(4132), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6050), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(8089), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6048), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(5702), 1, + anon_sym_COLON, + ACTIONS(7591), 1, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, + ACTIONS(7593), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, + STATE(4446), 1, + sym_field_declaration_list, + STATE(4652), 1, + sym_attribute_specifier, + STATE(7909), 1, + sym_virtual_specifier, + STATE(9063), 1, + sym_base_class_clause, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [123301] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6694), 16, + ACTIONS(5696), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_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(6692), 35, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5694), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + 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_LT_LT, + anon_sym_GT_GT, 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, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [123360] = 3, + anon_sym_DASH_GT, + [74227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6572), 16, + ACTIONS(6078), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -430377,7 +389462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6570), 35, + ACTIONS(6076), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -430387,6 +389472,7 @@ 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_QMARK, @@ -430413,10 +389499,147 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [123419] = 3, + [74287] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4771), 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(4763), 39, + anon_sym_AMP, + anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [74347] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5218), 1, + anon_sym_LPAREN2, + ACTIONS(5220), 1, + anon_sym_STAR, + ACTIONS(5222), 1, + anon_sym_AMP_AMP, + ACTIONS(5224), 1, + anon_sym_AMP, + ACTIONS(5741), 1, + sym_identifier, + ACTIONS(6543), 1, + anon_sym_LBRACK, + ACTIONS(7388), 1, + anon_sym_RPAREN, + STATE(4330), 1, + sym_parameter_list, + STATE(6786), 1, + sym_scope_resolution, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7434), 1, + sym_declarator, + STATE(7690), 1, + sym_abstract_declarator, + STATE(9481), 1, + sym_ms_based_modifier, + STATE(5923), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(7305), 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [74451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6658), 16, + ACTIONS(6016), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -430431,12 +389654,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(6656), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6018), 33, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -430456,23 +389678,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_or, - anon_sym_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, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [123478] = 3, + anon_sym_DOT_DOT_DOT_GT, + [74511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6522), 16, + ACTIONS(6334), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -430487,12 +389711,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(6520), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6332), 33, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -430512,28 +389735,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_or, - anon_sym_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, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [123537] = 5, + anon_sym_DOT_DOT_DOT_GT, + [74571] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7237), 1, - anon_sym_LBRACK, - STATE(4340), 1, - sym_new_declarator, - ACTIONS(6943), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(7595), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6506), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -430547,19 +389768,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(6941), 30, + anon_sym_DASH_GT, + ACTIONS(6504), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -430581,93 +389806,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [123600] = 28, + anon_sym_DASH_GT_STAR, + [74633] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(7093), 1, - anon_sym_EQ, - ACTIONS(7235), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(8030), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8036), 1, + ACTIONS(7601), 1, anon_sym_PIPE_PIPE, - ACTIONS(8038), 1, + ACTIONS(7603), 1, anon_sym_AMP_AMP, - ACTIONS(8040), 1, + ACTIONS(7605), 1, anon_sym_PIPE, - ACTIONS(8044), 1, + ACTIONS(7609), 1, anon_sym_AMP, - ACTIONS(8050), 1, - anon_sym_GT_EQ, - ACTIONS(8054), 1, + ACTIONS(7617), 1, anon_sym_LBRACK, - ACTIONS(8056), 1, - anon_sym_QMARK, - ACTIONS(8058), 1, + ACTIONS(7619), 1, anon_sym_LT_EQ_GT, - ACTIONS(8060), 1, + ACTIONS(7621), 1, anon_sym_or, - ACTIONS(8062), 1, + ACTIONS(7623), 1, anon_sym_and, - ACTIONS(8064), 1, + ACTIONS(7625), 1, anon_sym_bitor, - ACTIONS(8066), 1, + ACTIONS(7627), 1, anon_sym_bitand, - ACTIONS(8070), 1, + ACTIONS(7631), 1, anon_sym_DOT, - STATE(4413), 1, + STATE(4059), 1, sym_argument_list, - STATE(4493), 1, + STATE(4060), 1, sym_subscript_argument_list, - ACTIONS(8032), 2, + ACTIONS(7060), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(7597), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8042), 2, + ACTIONS(7607), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8052), 2, + ACTIONS(7615), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8068), 2, + ACTIONS(7629), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8072), 2, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8034), 3, + ACTIONS(7599), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(8046), 3, + ACTIONS(7611), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8048), 3, + ACTIONS(7613), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7095), 14, + ACTIONS(7062), 16, + 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_GT_GT_EQ, anon_sym_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_DOT_DOT_GT, - [123709] = 3, + anon_sym_GT2, + [74737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6850), 21, + ACTIONS(6338), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -430677,27 +389900,24 @@ 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(6848), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6336), 33, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -430705,6 +389925,7 @@ 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, @@ -430719,16 +389940,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [74797] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6340), 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, - [123768] = 3, + ACTIONS(6342), 39, + anon_sym_AMP, + anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [74857] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6920), 21, + ACTIONS(7120), 1, + anon_sym_LPAREN2, + ACTIONS(7617), 1, + anon_sym_LBRACK, + ACTIONS(7619), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7631), 1, + anon_sym_DOT, + STATE(4059), 1, + sym_argument_list, + STATE(4060), 1, + sym_subscript_argument_list, + ACTIONS(7597), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7629), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7633), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7599), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7019), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -430736,24 +390039,18 @@ 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, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(6918), 30, + ACTIONS(7021), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -430767,48 +390064,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_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, anon_sym_GT2, - [123827] = 3, + [74939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6644), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(6312), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + 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(6314), 39, + anon_sym_AMP, + anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [74999] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6316), 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(6318), 39, + anon_sym_AMP, + anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [75059] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7320), 1, + anon_sym_DOT_STAR, + ACTIONS(7635), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7637), 1, + anon_sym_RPAREN, + ACTIONS(7647), 1, anon_sym_PIPE, + ACTIONS(7649), 1, anon_sym_CARET, + ACTIONS(7651), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7657), 1, + anon_sym_GT_EQ, + ACTIONS(7661), 1, anon_sym_EQ, + ACTIONS(7663), 1, + anon_sym_QMARK, + ACTIONS(7665), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7667), 1, + anon_sym_bitor, + ACTIONS(7669), 1, + anon_sym_xor, + ACTIONS(7671), 1, + anon_sym_bitand, + STATE(1329), 1, + sym_binary_fold_operator, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + STATE(9281), 1, + sym_fold_operator, + ACTIONS(7318), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6642), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(7639), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7643), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7645), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7659), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7673), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7641), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7653), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_not_eq, + ACTIONS(7655), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7322), 12, + anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -430819,23 +390265,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_or, - anon_sym_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, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [123886] = 3, + [75173] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6654), 16, + ACTIONS(7675), 1, + anon_sym_LT, + STATE(1795), 1, + sym_template_argument_list, + ACTIONS(7100), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -430846,13 +390284,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, anon_sym_DASH_GT, - ACTIONS(6652), 35, + ACTIONS(7098), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -430862,7 +390302,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, @@ -430875,140 +390314,270 @@ 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_or, - anon_sym_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, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [123945] = 3, + [75237] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6810), 21, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7320), 1, + anon_sym_DOT_STAR, + ACTIONS(7635), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7647), 1, anon_sym_PIPE, + ACTIONS(7649), 1, anon_sym_CARET, + ACTIONS(7651), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(7657), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, + ACTIONS(7661), 1, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, + ACTIONS(7663), 1, + anon_sym_QMARK, + ACTIONS(7665), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7667), 1, + anon_sym_bitor, + ACTIONS(7669), 1, anon_sym_xor, + ACTIONS(7671), 1, + anon_sym_bitand, + ACTIONS(7678), 1, + anon_sym_RPAREN, + STATE(1329), 1, + sym_binary_fold_operator, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + STATE(9281), 1, + sym_fold_operator, + ACTIONS(7318), 2, anon_sym_DOT, - ACTIONS(6808), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_DASH_GT, + ACTIONS(7639), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7643), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7645), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7659), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7673), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7641), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7653), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, - anon_sym_QMARK, + anon_sym_not_eq, + ACTIONS(7655), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7322), 12, + 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_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_DASH_GT_STAR, + [75351] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7320), 1, + anon_sym_DOT_STAR, + ACTIONS(7635), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7647), 1, + anon_sym_PIPE, + ACTIONS(7649), 1, + anon_sym_CARET, + ACTIONS(7651), 1, + anon_sym_AMP, + ACTIONS(7657), 1, + anon_sym_GT_EQ, + ACTIONS(7661), 1, + anon_sym_EQ, + ACTIONS(7663), 1, + anon_sym_QMARK, + ACTIONS(7665), 1, anon_sym_LT_EQ_GT, + ACTIONS(7667), 1, anon_sym_bitor, + ACTIONS(7669), 1, + anon_sym_xor, + ACTIONS(7671), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(7680), 1, + anon_sym_RPAREN, + STATE(1329), 1, + sym_binary_fold_operator, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + STATE(9281), 1, + sym_fold_operator, + ACTIONS(7318), 2, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_GT2, - [124004] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5699), 1, - sym_primitive_type, - STATE(3084), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7154), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6019), 20, - aux_sym_preproc_elif_token1, + ACTIONS(7639), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7643), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7645), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7659), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7673), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7641), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(7653), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7655), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - 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(6016), 25, + ACTIONS(7322), 12, + 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_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_GT_STAR, + [75465] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6320), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + 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(6322), 39, + anon_sym_AMP, + anon_sym___extension__, + 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_DOT_STAR, - anon_sym_DASH_GT, - [124069] = 4, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [75525] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6287), 1, - sym_literal_suffix, - ACTIONS(4829), 24, + ACTIONS(5438), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(5440), 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(5445), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -431027,43 +390596,22 @@ 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, - anon_sym_GT2, - ACTIONS(4837), 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_LT_EQ_GT, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - [124130] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [75587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 19, + ACTIONS(6240), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -431078,12 +390626,9 @@ 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(7325), 32, + ACTIONS(6238), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -431093,6 +390638,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -431105,21 +390652,29 @@ 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_or, + anon_sym_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, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [124189] = 3, + [75647] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7334), 19, + ACTIONS(5409), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5995), 1, + anon_sym_LPAREN2, + ACTIONS(5998), 1, + anon_sym_LBRACK, + ACTIONS(4773), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -431138,18 +390693,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7332), 32, + ACTIONS(4765), 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_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -431171,22 +390724,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [124248] = 7, + anon_sym_DASH_GT, + [75713] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8091), 1, - sym_identifier, - ACTIONS(8096), 1, - sym_primitive_type, - STATE(4022), 1, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + STATE(1833), 1, + sym_template_argument_list, + STATE(3972), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8094), 4, + ACTIONS(7682), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6026), 19, + ACTIONS(6090), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -431204,9 +390757,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, + sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6022), 25, + ACTIONS(6088), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -431232,77 +390786,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [124315] = 28, + [75781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7903), 1, - anon_sym_AMP_AMP, - ACTIONS(7905), 1, - anon_sym_AMP, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(7914), 1, - anon_sym_LBRACK, - ACTIONS(7916), 1, - anon_sym_const, - ACTIONS(7922), 1, - anon_sym_noexcept, - ACTIONS(7924), 1, - anon_sym_throw, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8100), 1, - anon_sym_DASH_GT, - ACTIONS(8104), 1, - anon_sym_requires, - STATE(6145), 1, - sym_function_attributes_start, - STATE(6293), 1, - sym_ref_qualifier, - STATE(6705), 1, - sym_function_exception_specification, - STATE(7249), 1, - sym_function_attributes_end, - STATE(7395), 1, - sym_trailing_return_type, - STATE(7422), 1, - sym_requires_clause, - STATE(7505), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8102), 2, - anon_sym_final, - anon_sym_override, - STATE(5288), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5823), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, - sym_noexcept, - sym_throw_specifier, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(7901), 8, + ACTIONS(6344), 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, - anon_sym_try, - ACTIONS(7907), 11, + ACTIONS(6346), 39, + anon_sym_AMP, anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -431313,10 +390830,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [124424] = 3, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [75841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7407), 19, + ACTIONS(6326), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -431335,17 +390866,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7405), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6324), 33, anon_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, @@ -431368,39 +390896,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [124483] = 7, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [75901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8106), 1, - sym_identifier, - STATE(4029), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(8109), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(8112), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5635), 18, + ACTIONS(5649), 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_or, anon_sym_and, anon_sym_bitor, @@ -431409,9 +390920,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(5630), 19, + ACTIONS(5647), 36, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -431420,19 +390933,34 @@ 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_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [124550] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [75961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7342), 19, + ACTIONS(6314), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -431447,12 +390975,9 @@ 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(7340), 32, + ACTIONS(6312), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -431462,6 +390987,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -431474,77 +391001,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, - [124609] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7257), 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(7255), 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_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [124668] = 3, + [76021] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7323), 19, + ACTIONS(6276), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -431563,17 +391037,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7321), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6274), 33, anon_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, @@ -431596,11 +391067,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [124727] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [76081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5890), 19, + ACTIONS(6318), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -431619,17 +391094,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5888), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6316), 33, anon_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, @@ -431652,36 +391124,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [124786] = 9, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [76141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3053), 1, - anon_sym_LBRACE, - ACTIONS(8115), 1, - anon_sym_LPAREN2, - STATE(4043), 1, - sym_argument_list, - STATE(4131), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4605), 1, - sym_initializer_list, - ACTIONS(7899), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4835), 9, + ACTIONS(6226), 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(4827), 33, + anon_sym_GT2, + ACTIONS(6228), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -431708,114 +391172,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, anon_sym_template, anon_sym_operator, - [124857] = 28, + anon_sym_try, + anon_sym_requires, + [76201] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7903), 1, - anon_sym_AMP_AMP, - ACTIONS(7905), 1, - anon_sym_AMP, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(7914), 1, - anon_sym_LBRACK, - ACTIONS(7916), 1, - anon_sym_const, - ACTIONS(7922), 1, - anon_sym_noexcept, - ACTIONS(7924), 1, - anon_sym_throw, - ACTIONS(8098), 1, + ACTIONS(5409), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8100), 1, - anon_sym_DASH_GT, - ACTIONS(8121), 1, - anon_sym_requires, - STATE(6158), 1, - sym_function_attributes_start, - STATE(6296), 1, - sym_ref_qualifier, - STATE(6722), 1, - sym_function_exception_specification, - STATE(7247), 1, - sym_function_attributes_end, - STATE(7353), 1, - sym_trailing_return_type, - STATE(7422), 1, - sym_requires_clause, - STATE(7505), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8118), 2, - anon_sym_final, - anon_sym_override, - STATE(5288), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5823), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, - sym_noexcept, - sym_throw_specifier, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(7901), 8, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5995), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - ACTIONS(7907), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [124966] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6068), 1, - anon_sym_EQ, - ACTIONS(6070), 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(4837), 17, + ACTIONS(5998), 1, + anon_sym_LBRACK, + ACTIONS(4773), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -431829,68 +391208,21 @@ 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, - ACTIONS(4829), 20, + ACTIONS(4765), 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_GT_EQ, anon_sym_SEMI, - anon_sym___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - [125029] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, - anon_sym_LBRACE, - ACTIONS(7470), 1, - anon_sym_LPAREN2, - STATE(4551), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6908), 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(6906), 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_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -431902,21 +391234,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_or, - anon_sym_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, - [125094] = 3, + anon_sym_DASH_GT, + [76267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6472), 19, + ACTIONS(6248), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -431931,12 +391263,9 @@ 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(6474), 32, + ACTIONS(6246), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -431946,6 +391275,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -431958,83 +391289,52 @@ 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_or, + anon_sym_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, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [125153] = 24, + [76327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, + ACTIONS(6266), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3706), 1, anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8124), 1, - sym_identifier, - ACTIONS(8126), 1, anon_sym_STAR, - ACTIONS(8128), 1, anon_sym_AMP_AMP, - ACTIONS(8130), 1, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6268), 39, anon_sym_AMP, - ACTIONS(8132), 1, - anon_sym_LBRACK, - STATE(6585), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7205), 1, - sym_scope_resolution, - STATE(7498), 1, - sym_declarator, - STATE(9949), 1, - sym_ms_based_modifier, - ACTIONS(3668), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4136), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5192), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(3666), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - ACTIONS(3664), 12, anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -432046,17 +391346,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [125254] = 5, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [76387] = 3, ACTIONS(3), 1, sym_comment, - STATE(4133), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8134), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6032), 13, + ACTIONS(6238), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -432070,7 +391376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(6034), 33, + ACTIONS(6240), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -432097,135 +391403,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, anon_sym_template, anon_sym_operator, - [125317] = 3, + anon_sym_try, + anon_sym_requires, + [76447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7311), 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(7309), 32, + ACTIONS(6336), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_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, - [125376] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8124), 1, - sym_identifier, - ACTIONS(8126), 1, anon_sym_STAR, - ACTIONS(8128), 1, anon_sym_AMP_AMP, - ACTIONS(8130), 1, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6338), 39, anon_sym_AMP, - ACTIONS(8132), 1, - anon_sym_LBRACK, - STATE(6585), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7205), 1, - sym_scope_resolution, - STATE(7489), 1, - sym_declarator, - STATE(9949), 1, - sym_ms_based_modifier, - ACTIONS(3668), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4048), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5162), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(3666), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - ACTIONS(3664), 12, anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -432237,66 +391460,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [125477] = 3, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [76507] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7257), 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, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5381), 1, + anon_sym_LBRACE, + ACTIONS(7684), 1, 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(7255), 32, + STATE(3881), 1, + sym_template_argument_list, + ACTIONS(5383), 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, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_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, - [125536] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7315), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -432307,7 +391496,6 @@ 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, @@ -432315,11 +391503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7313), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5376), 30, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -432348,360 +391532,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [125595] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_AMP_AMP, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3708), 1, - anon_sym_STAR, - ACTIONS(3710), 1, - anon_sym_AMP, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(5748), 1, - sym_identifier, - ACTIONS(8132), 1, - anon_sym_LBRACK, - STATE(6585), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7201), 1, - sym_scope_resolution, - STATE(7587), 1, - sym_declarator, - STATE(10059), 1, - sym_ms_based_modifier, - ACTIONS(3668), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5114), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6323), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3666), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - ACTIONS(3664), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [125696] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_AMP_AMP, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3708), 1, - anon_sym_STAR, - ACTIONS(3710), 1, - anon_sym_AMP, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(5748), 1, - sym_identifier, - ACTIONS(8132), 1, - anon_sym_LBRACK, - STATE(6585), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7201), 1, - sym_scope_resolution, - STATE(7552), 1, - sym_declarator, - STATE(10059), 1, - sym_ms_based_modifier, - ACTIONS(3668), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5179), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6323), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3666), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - ACTIONS(3664), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [125797] = 3, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [76575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5469), 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(5462), 32, + ACTIONS(6270), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_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, - [125856] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8124), 1, - sym_identifier, - ACTIONS(8126), 1, anon_sym_STAR, - ACTIONS(8128), 1, anon_sym_AMP_AMP, - ACTIONS(8130), 1, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6272), 39, anon_sym_AMP, - ACTIONS(8132), 1, - anon_sym_LBRACK, - STATE(6585), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7205), 1, - sym_scope_resolution, - STATE(7513), 1, - sym_declarator, - STATE(9949), 1, - sym_ms_based_modifier, - ACTIONS(3668), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5194), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6323), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3666), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - ACTIONS(3664), 12, anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [125957] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_AMP_AMP, - ACTIONS(51), 1, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3708), 1, - anon_sym_STAR, - ACTIONS(3710), 1, - anon_sym_AMP, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(5748), 1, - sym_identifier, - ACTIONS(8132), 1, anon_sym_LBRACK, - STATE(6585), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7201), 1, - sym_scope_resolution, - STATE(7557), 1, - sym_declarator, - STATE(10059), 1, - sym_ms_based_modifier, - ACTIONS(3668), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4046), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5102), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(3666), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - ACTIONS(3664), 12, - anon_sym___extension__, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -432713,10 +391578,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [126058] = 3, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [76635] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 19, + ACTIONS(2989), 1, + anon_sym_LBRACE, + ACTIONS(7141), 1, + anon_sym_LPAREN2, + STATE(4132), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6397), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -432733,14 +391619,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2191), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6395), 29, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -432768,72 +391649,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [126117] = 8, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [76701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(8136), 1, - anon_sym_LT, - STATE(4459), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4972), 1, - sym_template_argument_list, - ACTIONS(8138), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4827), 18, - aux_sym_preproc_elif_token1, + ACTIONS(6342), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(4835), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(6340), 33, anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_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, - [126186] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [76761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6994), 19, + ACTIONS(6288), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -432852,17 +391731,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6992), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6286), 33, anon_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, @@ -432885,11 +391761,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [126245] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [76821] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6482), 19, + ACTIONS(7120), 1, + anon_sym_LPAREN2, + ACTIONS(7617), 1, + anon_sym_LBRACK, + ACTIONS(7631), 1, + anon_sym_DOT, + STATE(4059), 1, + sym_argument_list, + STATE(4060), 1, + sym_subscript_argument_list, + ACTIONS(7629), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7633), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7027), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -432899,27 +391794,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_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6484), 32, + ACTIONS(7029), 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, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -432927,7 +391818,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, @@ -432938,21 +391828,11 @@ static const uint16_t ts_small_parse_table[] = { 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, - [126304] = 6, + anon_sym_GT2, + [76895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3053), 1, - anon_sym_LBRACE, - ACTIONS(7470), 1, - anon_sym_LPAREN2, - STATE(4626), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6916), 16, + ACTIONS(5383), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -432966,19 +391846,24 @@ 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(6914), 31, + ACTIONS(5376), 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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -432990,27 +391875,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_or, - anon_sym_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, - [126369] = 6, + [76955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(8140), 1, - anon_sym_LT, - STATE(4397), 1, - sym_template_argument_list, - ACTIONS(5467), 12, + ACTIONS(6197), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -433019,11 +391898,12 @@ static const uint16_t ts_small_parse_table[] = { 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(5460), 36, + ACTIONS(6199), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -433050,7 +391930,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, @@ -433060,131 +391941,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [126434] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4103), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6064), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(8142), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6062), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [126497] = 6, + [77015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(8140), 1, - anon_sym_LT, - STATE(4397), 1, - sym_template_argument_list, - ACTIONS(4853), 12, + ACTIONS(6292), 19, 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_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6197), 36, - anon_sym_AMP, - anon_sym___extension__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_alignas, - anon_sym_template, - anon_sym_operator, - [126562] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8076), 1, - anon_sym_LT, - STATE(3841), 1, - sym_template_argument_list, - ACTIONS(7118), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -433194,24 +391957,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_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7116), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6290), 33, anon_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, @@ -433220,6 +391982,7 @@ 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, @@ -433234,11 +391997,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [126625] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [77075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7348), 19, + ACTIONS(6642), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -433252,23 +392017,24 @@ 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(7346), 32, + ACTIONS(6640), 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_LBRACK, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -433290,11 +392056,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [126684] = 3, + anon_sym_DASH_GT, + [77135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7387), 19, + ACTIONS(7197), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -433309,12 +392075,19 @@ 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, anon_sym_DASH_GT, - ACTIONS(7385), 32, + sym_literal_suffix, + ACTIONS(7199), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -433336,21 +392109,161 @@ 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, + [77195] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7320), 1, + anon_sym_DOT_STAR, + ACTIONS(7635), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7647), 1, + anon_sym_PIPE, + ACTIONS(7649), 1, + anon_sym_CARET, + ACTIONS(7651), 1, + anon_sym_AMP, + ACTIONS(7657), 1, + anon_sym_GT_EQ, + ACTIONS(7661), 1, + anon_sym_EQ, + ACTIONS(7663), 1, + anon_sym_QMARK, + ACTIONS(7665), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7667), 1, + anon_sym_bitor, + ACTIONS(7669), 1, + anon_sym_xor, + ACTIONS(7671), 1, + anon_sym_bitand, + ACTIONS(7687), 1, + anon_sym_RPAREN, + STATE(1329), 1, + sym_binary_fold_operator, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + STATE(9281), 1, + sym_fold_operator, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7639), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7643), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7645), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7659), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7673), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7641), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7653), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7655), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7322), 12, + 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_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_GT_STAR, + [77309] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7689), 1, + sym_identifier, + STATE(3662), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(6179), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6181), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5560), 17, + 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___attribute__, + 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(5556), 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_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [126743] = 3, + anon_sym_DASH_GT, + [77377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7391), 19, + ACTIONS(6346), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -433369,17 +392282,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7389), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6344), 33, anon_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, @@ -433402,176 +392312,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [126802] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(5748), 1, - sym_identifier, - ACTIONS(8132), 1, - anon_sym_LBRACK, - ACTIONS(8144), 1, - anon_sym_STAR, - ACTIONS(8146), 1, - anon_sym_AMP_AMP, - ACTIONS(8148), 1, - anon_sym_AMP, - STATE(6585), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7180), 1, - sym_scope_resolution, - STATE(7962), 1, - sym_declarator, - STATE(9814), 1, - sym_ms_based_modifier, - ACTIONS(3668), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4150), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5117), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(3666), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - ACTIONS(3664), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [126903] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, + anon_sym_DASH_GT, + sym_auto, anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8132), 1, - anon_sym_LBRACK, - ACTIONS(8150), 1, - sym_identifier, - ACTIONS(8152), 1, - anon_sym_STAR, - ACTIONS(8154), 1, - anon_sym_AMP_AMP, - ACTIONS(8156), 1, - anon_sym_AMP, - STATE(6585), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7202), 1, - sym_scope_resolution, - STATE(7552), 1, - sym_declarator, - STATE(10671), 1, - sym_ms_based_modifier, - ACTIONS(3668), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4066), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5115), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(3666), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - ACTIONS(3664), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [127004] = 7, + anon_sym_DOT_DOT_DOT_GT, + [77437] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7983), 1, - sym_identifier, - ACTIONS(7987), 1, - sym_primitive_type, - STATE(4092), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8158), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6026), 17, + ACTIONS(6028), 1, + sym_literal_suffix, + STATE(3345), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(3982), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3990), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4773), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -433587,13 +392352,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_auto, - anon_sym_decltype, - ACTIONS(6022), 27, - ts_builtin_sym_end, + sym_identifier, + ACTIONS(4765), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -433605,22 +392370,30 @@ 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_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [127071] = 3, + [77505] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5746), 19, + ACTIONS(7120), 1, + anon_sym_LPAREN2, + ACTIONS(7617), 1, + anon_sym_LBRACK, + ACTIONS(7631), 1, + anon_sym_DOT, + STATE(4059), 1, + sym_argument_list, + STATE(4060), 1, + sym_subscript_argument_list, + ACTIONS(7633), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6995), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -433630,27 +392403,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_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3187), 32, + ACTIONS(6997), 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, @@ -433658,7 +392427,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, @@ -433671,74 +392439,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [127130] = 24, + anon_sym_GT2, + [77577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, + ACTIONS(6250), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3706), 1, anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8132), 1, - anon_sym_LBRACK, - ACTIONS(8150), 1, - sym_identifier, - ACTIONS(8152), 1, anon_sym_STAR, - ACTIONS(8154), 1, anon_sym_AMP_AMP, - ACTIONS(8156), 1, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6252), 39, anon_sym_AMP, - STATE(6585), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7202), 1, - sym_scope_resolution, - STATE(7587), 1, - sym_declarator, - STATE(10671), 1, - sym_ms_based_modifier, - ACTIONS(3668), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5146), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6323), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3666), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - ACTIONS(3664), 12, anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -433750,10 +392484,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [127231] = 3, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [77637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3078), 19, + ACTIONS(6199), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -433772,17 +392520,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3080), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6197), 33, anon_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, @@ -433805,15 +392550,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [127290] = 5, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [77697] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7751), 1, + ACTIONS(7691), 1, + sym_identifier, + STATE(3575), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(6179), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6181), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5554), 17, + 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, - STATE(1840), 1, - sym_template_argument_list, - ACTIONS(7118), 17, + anon_sym___attribute__, + 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(5550), 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_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [77765] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6715), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -433824,14 +392629,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, - ACTIONS(7116), 32, + anon_sym_DASH_GT, + ACTIONS(6713), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -433841,7 +392649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -433862,12 +392670,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [77825] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7120), 1, + anon_sym_LPAREN2, + ACTIONS(7601), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7603), 1, + anon_sym_AMP_AMP, + ACTIONS(7605), 1, + anon_sym_PIPE, + ACTIONS(7609), 1, + anon_sym_AMP, + ACTIONS(7617), 1, + anon_sym_LBRACK, + ACTIONS(7619), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7621), 1, + anon_sym_or, + ACTIONS(7623), 1, + anon_sym_and, + ACTIONS(7625), 1, + anon_sym_bitor, + ACTIONS(7627), 1, + anon_sym_bitand, + ACTIONS(7631), 1, + anon_sym_DOT, + ACTIONS(7693), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7695), 1, + anon_sym_QMARK, + STATE(4059), 1, + sym_argument_list, + STATE(4060), 1, + sym_subscript_argument_list, + ACTIONS(7132), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(7597), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7607), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7629), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [127353] = 3, + ACTIONS(7599), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7611), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7613), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7134), 14, + 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_GT2, + [77933] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7303), 19, + ACTIONS(5929), 1, + sym_literal_suffix, + ACTIONS(4773), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -433881,22 +392772,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, 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(7301), 32, + ACTIONS(4765), 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, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, + [77995] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4763), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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(4771), 33, + anon_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, @@ -433919,11 +392864,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [78055] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7320), 1, + anon_sym_DOT_STAR, + ACTIONS(7635), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7647), 1, + anon_sym_PIPE, + ACTIONS(7649), 1, + anon_sym_CARET, + ACTIONS(7651), 1, + anon_sym_AMP, + ACTIONS(7657), 1, + anon_sym_GT_EQ, + ACTIONS(7661), 1, + anon_sym_EQ, + ACTIONS(7663), 1, + anon_sym_QMARK, + ACTIONS(7665), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7667), 1, + anon_sym_bitor, + ACTIONS(7669), 1, + anon_sym_xor, + ACTIONS(7671), 1, + anon_sym_bitand, + ACTIONS(7697), 1, + anon_sym_RPAREN, + STATE(1329), 1, + sym_binary_fold_operator, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + STATE(9281), 1, + sym_fold_operator, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7639), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7643), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7645), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7659), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7673), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7641), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7653), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7655), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7322), 12, + 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_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_DASH_GT_STAR, - [127412] = 3, + [78169] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6360), 19, + ACTIONS(7122), 1, + anon_sym_LBRACK, + STATE(3846), 1, + sym_new_declarator, + ACTIONS(6454), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -433933,27 +392969,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, - anon_sym_DASH_GT, - ACTIONS(6362), 32, + ACTIONS(6452), 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_LBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -433961,7 +392996,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, @@ -433975,45 +393009,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [127471] = 11, + anon_sym_DASH_GT, + anon_sym_GT2, + [78233] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5488), 1, - anon_sym_SEMI, - ACTIONS(7973), 1, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7092), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7153), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7155), 1, + anon_sym_AMP_AMP, + ACTIONS(7157), 1, + anon_sym_PIPE, + ACTIONS(7161), 1, + anon_sym_AMP, + ACTIONS(7167), 1, + anon_sym_GT_EQ, + ACTIONS(7171), 1, + anon_sym_QMARK, + ACTIONS(7173), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7175), 1, + anon_sym_or, + ACTIONS(7177), 1, + anon_sym_and, + ACTIONS(7179), 1, + anon_sym_bitor, + ACTIONS(7181), 1, + anon_sym_bitand, + ACTIONS(7398), 1, + anon_sym_RPAREN, + ACTIONS(7699), 1, + anon_sym_COMMA, + ACTIONS(7701), 1, + anon_sym_EQ, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7149), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7159), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7169), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7151), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7163), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7165), 3, + anon_sym_GT, + anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(8160), 1, + ACTIONS(7304), 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, + [78347] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7296), 1, anon_sym_LBRACK, - STATE(4040), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5073), 1, - sym_template_argument_list, - ACTIONS(4850), 3, + ACTIONS(7320), 1, + anon_sym_DOT_STAR, + ACTIONS(7635), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7647), 1, + anon_sym_PIPE, + ACTIONS(7649), 1, + anon_sym_CARET, + ACTIONS(7651), 1, + anon_sym_AMP, + ACTIONS(7657), 1, + anon_sym_GT_EQ, + ACTIONS(7661), 1, + anon_sym_EQ, + ACTIONS(7663), 1, + anon_sym_QMARK, + ACTIONS(7665), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7667), 1, + anon_sym_bitor, + ACTIONS(7669), 1, + anon_sym_xor, + ACTIONS(7671), 1, + anon_sym_bitand, + ACTIONS(7703), 1, anon_sym_RPAREN, + STATE(1329), 1, + sym_binary_fold_operator, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + STATE(9281), 1, + sym_fold_operator, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7639), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7643), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7645), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7659), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7673), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7641), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7653), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7655), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7322), 12, + 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_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_GT_STAR, + [78461] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3899), 1, + anon_sym_LBRACE, + ACTIONS(7705), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(4855), 4, + STATE(2615), 1, + sym_argument_list, + STATE(3935), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4384), 1, + sym_initializer_list, + ACTIONS(7708), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(4835), 6, + ACTIONS(4771), 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(4827), 32, + ACTIONS(4763), 33, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -434040,40 +393242,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [127546] = 3, + [78533] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(7135), 20, + ACTIONS(7120), 1, + anon_sym_LPAREN2, + ACTIONS(7601), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7603), 1, + anon_sym_AMP_AMP, + ACTIONS(7605), 1, + anon_sym_PIPE, + ACTIONS(7609), 1, + anon_sym_AMP, + ACTIONS(7617), 1, + anon_sym_LBRACK, + ACTIONS(7619), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7621), 1, + anon_sym_or, + ACTIONS(7623), 1, + anon_sym_and, + ACTIONS(7625), 1, + anon_sym_bitor, + ACTIONS(7627), 1, + anon_sym_bitand, + ACTIONS(7631), 1, + anon_sym_DOT, + STATE(4059), 1, + sym_argument_list, + STATE(4060), 1, + sym_subscript_argument_list, + ACTIONS(7116), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(7597), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7607), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7629), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7633), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7599), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7611), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7613), 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_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(7133), 31, + ACTIONS(7118), 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, @@ -434087,19 +393320,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_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, anon_sym_GT2, - [127605] = 3, + [78637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7221), 19, + ACTIONS(6296), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -434118,17 +393344,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7219), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6294), 33, anon_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, @@ -434151,127 +393374,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [127664] = 24, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [78697] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(6256), 1, - sym_identifier, - ACTIONS(8132), 1, - anon_sym_LBRACK, - ACTIONS(8163), 1, - anon_sym_STAR, - ACTIONS(8165), 1, + ACTIONS(7601), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7603), 1, anon_sym_AMP_AMP, - ACTIONS(8167), 1, + ACTIONS(7605), 1, + anon_sym_PIPE, + ACTIONS(7609), 1, anon_sym_AMP, - STATE(6585), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7241), 1, - sym_scope_resolution, - STATE(7552), 1, - sym_declarator, - STATE(9737), 1, - sym_ms_based_modifier, - ACTIONS(3668), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4076), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5189), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(3666), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - ACTIONS(3664), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [127765] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4827), 16, + ACTIONS(7617), 1, + anon_sym_LBRACK, + ACTIONS(7619), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7621), 1, + anon_sym_or, + ACTIONS(7623), 1, + anon_sym_and, + ACTIONS(7625), 1, + anon_sym_bitor, + ACTIONS(7627), 1, + anon_sym_bitand, + ACTIONS(7631), 1, + anon_sym_DOT, + ACTIONS(7693), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7695), 1, + anon_sym_QMARK, + STATE(4059), 1, + sym_argument_list, + STATE(4060), 1, + sym_subscript_argument_list, + ACTIONS(7090), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(7597), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7607), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7629), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7633), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7599), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7611), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7613), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7094), 14, + 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_GT2, + [78805] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(7710), 1, + anon_sym_LT, + STATE(2206), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2593), 1, + sym_template_argument_list, + ACTIONS(5411), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4763), 9, + 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_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_COLON, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4835), 35, + ACTIONS(4771), 35, + ts_builtin_sym_end, 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___attribute__, 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_or, anon_sym_and, @@ -434282,75 +393518,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [127824] = 24, + [78875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, + ACTIONS(6242), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3706), 1, anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(6256), 1, - sym_identifier, - ACTIONS(8132), 1, - anon_sym_LBRACK, - ACTIONS(8163), 1, anon_sym_STAR, - ACTIONS(8165), 1, anon_sym_AMP_AMP, - ACTIONS(8167), 1, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6244), 39, anon_sym_AMP, - STATE(6585), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7241), 1, - sym_scope_resolution, - STATE(7587), 1, - sym_declarator, - STATE(9737), 1, - sym_ms_based_modifier, - ACTIONS(3668), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5132), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6323), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3666), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - ACTIONS(3664), 12, anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -434362,10 +393565,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [127925] = 3, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [78935] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7287), 19, + ACTIONS(7120), 1, + anon_sym_LPAREN2, + ACTIONS(7617), 1, + anon_sym_LBRACK, + ACTIONS(7631), 1, + anon_sym_DOT, + STATE(4059), 1, + sym_argument_list, + STATE(4060), 1, + sym_subscript_argument_list, + ACTIONS(7629), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7633), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7005), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -434375,27 +393607,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_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7285), 32, + ACTIONS(7007), 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, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -434403,7 +393631,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, @@ -434414,72 +393641,69 @@ static const uint16_t ts_small_parse_table[] = { 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, - [127984] = 3, + anon_sym_GT2, + [79009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7338), 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(7336), 32, + ACTIONS(5981), 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_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5983), 39, + anon_sym_AMP, + anon_sym___extension__, + 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_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, - [128043] = 4, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [79069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8169), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6970), 21, + ACTIONS(4763), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -434489,26 +393713,24 @@ 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(6968), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4771), 33, anon_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, @@ -434516,6 +393738,7 @@ 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, @@ -434530,100 +393753,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [128104] = 4, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [79129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8171), 1, + ACTIONS(6088), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2183), 19, - anon_sym_DASH, - anon_sym_PLUS, + 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_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2185), 31, + anon_sym_GT2, + ACTIONS(6090), 39, + anon_sym_AMP, + anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [79189] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6222), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, 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(6224), 39, + anon_sym_AMP, + anon_sym___extension__, + 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_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, - [128165] = 5, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [79249] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(7120), 1, - anon_sym_LT, - STATE(2046), 1, - sym_template_argument_list, - ACTIONS(7118), 17, + anon_sym_LPAREN2, + ACTIONS(7617), 1, + anon_sym_LBRACK, + ACTIONS(7631), 1, + anon_sym_DOT, + STATE(4059), 1, + sym_argument_list, + STATE(4060), 1, + sym_subscript_argument_list, + ACTIONS(7597), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7629), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7633), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7599), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7019), 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_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(7116), 32, + ACTIONS(7021), 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, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -434631,7 +393925,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, @@ -434642,14 +393935,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_GT2, + [79327] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7120), 1, + anon_sym_LPAREN2, + ACTIONS(7617), 1, + anon_sym_LBRACK, + ACTIONS(7631), 1, + anon_sym_DOT, + STATE(4059), 1, + sym_argument_list, + STATE(4060), 1, + sym_subscript_argument_list, + ACTIONS(7629), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [128228] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7061), 19, + ACTIONS(7011), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -434659,27 +393965,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_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7065), 32, + ACTIONS(7013), 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, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -434687,7 +393989,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, @@ -434698,14 +393999,11 @@ static const uint16_t ts_small_parse_table[] = { 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, - [128287] = 3, + anon_sym_GT2, + [79401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2183), 19, + ACTIONS(6310), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -434719,13 +394017,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(2185), 32, + ACTIONS(6308), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -434735,7 +394034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -434758,10 +394057,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [128346] = 3, + [79461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6640), 16, + ACTIONS(6280), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -434775,10 +394074,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(6638), 35, + ACTIONS(6278), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -434788,8 +394091,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, @@ -434801,90 +394103,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_or, - anon_sym_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, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [128405] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8173), 1, - sym_identifier, - STATE(4029), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(5544), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(5546), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5647), 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, - sym_literal_suffix, - ACTIONS(5643), 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_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [128472] = 5, + [79521] = 3, ACTIONS(3), 1, sym_comment, - STATE(4133), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8134), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5990), 13, + ACTIONS(6282), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -434898,7 +394131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5992), 33, + ACTIONS(6284), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -434925,229 +394158,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, anon_sym_template, anon_sym_operator, - [128535] = 5, + anon_sym_try, + anon_sym_requires, + [79581] = 3, ACTIONS(3), 1, sym_comment, - STATE(4133), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8134), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5996), 13, + ACTIONS(6272), 19, 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(5998), 33, - anon_sym_AMP, - anon_sym___extension__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [128598] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(5748), 1, - sym_identifier, - ACTIONS(8132), 1, - anon_sym_LBRACK, - ACTIONS(8144), 1, - anon_sym_STAR, - ACTIONS(8146), 1, - anon_sym_AMP_AMP, - ACTIONS(8148), 1, - anon_sym_AMP, - STATE(6585), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7180), 1, - sym_scope_resolution, - STATE(7979), 1, - sym_declarator, - STATE(9814), 1, - sym_ms_based_modifier, - ACTIONS(3668), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4089), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5101), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(3666), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - ACTIONS(3664), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [128699] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(5748), 1, - sym_identifier, - ACTIONS(8132), 1, - anon_sym_LBRACK, - ACTIONS(8144), 1, - anon_sym_STAR, - ACTIONS(8146), 1, - anon_sym_AMP_AMP, - ACTIONS(8148), 1, - anon_sym_AMP, - STATE(6585), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7180), 1, - sym_scope_resolution, - STATE(7950), 1, - sym_declarator, - STATE(9814), 1, - sym_ms_based_modifier, - ACTIONS(3668), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5158), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6323), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3666), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - ACTIONS(3664), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [128800] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7273), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -435166,17 +394194,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7271), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6270), 33, anon_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, @@ -435199,40 +394224,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [128859] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [79641] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4827), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7320), 1, + anon_sym_DOT_STAR, + ACTIONS(7635), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7647), 1, anon_sym_PIPE, + ACTIONS(7649), 1, anon_sym_CARET, + ACTIONS(7651), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7657), 1, + anon_sym_GT_EQ, + ACTIONS(7661), 1, anon_sym_EQ, + ACTIONS(7663), 1, + anon_sym_QMARK, + ACTIONS(7665), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7667), 1, + anon_sym_bitor, + ACTIONS(7669), 1, + anon_sym_xor, + ACTIONS(7671), 1, + anon_sym_bitand, + ACTIONS(7712), 1, + anon_sym_RPAREN, + STATE(1329), 1, + sym_binary_fold_operator, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + STATE(9281), 1, + sym_fold_operator, + ACTIONS(7318), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4835), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(7639), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7643), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7645), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7659), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7673), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7641), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7653), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_not_eq, + ACTIONS(7655), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7322), 12, + anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -435243,82 +394311,129 @@ 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, + [79755] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6254), 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(6256), 39, + anon_sym_AMP, + anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [128918] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [79815] = 7, ACTIONS(3), 1, sym_comment, - STATE(3257), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5699), 2, - sym_primitive_type, + ACTIONS(7714), 1, sym_identifier, - ACTIONS(7378), 4, + ACTIONS(7719), 1, + sym_primitive_type, + STATE(3637), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7717), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6019), 17, - 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_auto, - anon_sym_decltype, - ACTIONS(6016), 27, - ts_builtin_sym_end, + ACTIONS(5965), 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_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_EQ, + anon_sym_GT2, + ACTIONS(5969), 32, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, 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_DOT_STAR, - anon_sym_DASH_GT, - [128983] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [79883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6496), 19, + ACTIONS(6560), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -435332,13 +394447,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(6498), 32, + ACTIONS(6558), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -435348,7 +394464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -435371,96 +394487,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [129042] = 3, + [79943] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6500), 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(6502), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7120), 1, anon_sym_LPAREN2, + ACTIONS(7601), 1, anon_sym_PIPE_PIPE, + ACTIONS(7603), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(7605), 1, + anon_sym_PIPE, + ACTIONS(7609), 1, + anon_sym_AMP, + ACTIONS(7617), 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_GT_GT_EQ, - 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(7619), 1, anon_sym_LT_EQ_GT, + ACTIONS(7621), 1, + anon_sym_or, + ACTIONS(7623), 1, + anon_sym_and, + ACTIONS(7625), 1, anon_sym_bitor, + ACTIONS(7627), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(7631), 1, + anon_sym_DOT, + STATE(4059), 1, + sym_argument_list, + STATE(4060), 1, + sym_subscript_argument_list, + ACTIONS(7105), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(7597), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7607), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7629), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7633), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [129101] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7245), 19, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(7599), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7611), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7613), 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_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7243), 32, + ACTIONS(7107), 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, @@ -435468,55 +394559,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_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_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, - [129160] = 3, + anon_sym_GT2, + [80047] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(7163), 19, + ACTIONS(7120), 1, + anon_sym_LPAREN2, + ACTIONS(7617), 1, + anon_sym_LBRACK, + ACTIONS(7631), 1, + anon_sym_DOT, + STATE(4059), 1, + sym_argument_list, + STATE(4060), 1, + sym_subscript_argument_list, + ACTIONS(7597), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7629), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7633), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7599), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7019), 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_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7161), 32, + ACTIONS(7021), 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, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -435524,7 +394622,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, @@ -435535,14 +394632,11 @@ static const uint16_t ts_small_parse_table[] = { 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, - [129219] = 3, + anon_sym_GT2, + [80127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7383), 19, + ACTIONS(6232), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -435556,13 +394650,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(7381), 32, + ACTIONS(6230), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -435572,7 +394667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -435595,97 +394690,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [129278] = 3, + [80187] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4837), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7320), 1, + anon_sym_DOT_STAR, + ACTIONS(7635), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7647), 1, anon_sym_PIPE, + ACTIONS(7649), 1, anon_sym_CARET, + ACTIONS(7651), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7657), 1, + anon_sym_GT_EQ, + ACTIONS(7661), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, + ACTIONS(7663), 1, + anon_sym_QMARK, + ACTIONS(7665), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7667), 1, + anon_sym_bitor, + ACTIONS(7669), 1, anon_sym_xor, + ACTIONS(7671), 1, + anon_sym_bitand, + ACTIONS(7721), 1, + anon_sym_RPAREN, + STATE(1329), 1, + sym_binary_fold_operator, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + STATE(9281), 1, + sym_fold_operator, + ACTIONS(7318), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4829), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(7639), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7643), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7645), 2, 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_and, + ACTIONS(7659), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7673), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [129337] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7213), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(7641), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7653), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7655), 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(7211), 32, - anon_sym_DOT_DOT_DOT, + ACTIONS(7322), 12, anon_sym_COMMA, - anon_sym_RPAREN, - anon_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, @@ -435696,21 +394773,11 @@ 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, - [129396] = 3, + [80301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7253), 19, + ACTIONS(6350), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -435724,13 +394791,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(7251), 32, + ACTIONS(6348), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -435740,7 +394808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -435763,10 +394831,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [129455] = 3, + [80361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3096), 19, + ACTIONS(5993), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -435780,23 +394848,24 @@ 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(3094), 32, + ACTIONS(5991), 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_LBRACK, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -435817,106 +394886,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [129514] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7235), 1, - anon_sym_LPAREN2, - ACTIONS(8054), 1, - anon_sym_LBRACK, - ACTIONS(8070), 1, - anon_sym_DOT, - STATE(4413), 1, - sym_argument_list, - STATE(4493), 1, - sym_subscript_argument_list, - ACTIONS(8072), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6998), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(6996), 26, - 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_DOT_DOT_GT, - [129585] = 5, + [80421] = 3, ACTIONS(3), 1, sym_comment, - STATE(4103), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5699), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(8175), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5697), 42, + ACTIONS(6258), 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(6260), 39, + anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -435927,26 +394932,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, anon_sym_asm, anon_sym___asm__, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_GT2, + anon_sym_template, + anon_sym_operator, anon_sym_try, anon_sym_requires, - [129648] = 5, + [80481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8178), 1, - anon_sym_LT, - STATE(4342), 1, - sym_template_argument_list, - ACTIONS(7277), 19, + ACTIONS(6300), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -435956,24 +394959,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_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7275), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6298), 33, anon_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, @@ -435982,6 +394984,7 @@ 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, @@ -435996,18 +394999,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [129711] = 6, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [80541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3053), 1, - anon_sym_LBRACE, - ACTIONS(7470), 1, - anon_sym_LPAREN2, - STATE(4609), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6846), 16, + ACTIONS(6354), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -436021,19 +395019,24 @@ 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(6844), 31, + ACTIONS(6352), 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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -436045,166 +395048,151 @@ 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_or, - anon_sym_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, - [129776] = 5, + [80601] = 7, ACTIONS(3), 1, sym_comment, - STATE(4103), 1, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + STATE(1833), 1, + sym_template_argument_list, + STATE(2206), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6034), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(8142), 4, + ACTIONS(5411), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6032), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [129839] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7269), 19, + ACTIONS(6090), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_COLON, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7267), 32, + ACTIONS(6088), 35, + ts_builtin_sym_end, 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___attribute__, + 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_or, + anon_sym_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, - [129898] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [80669] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7277), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7320), 1, + anon_sym_DOT_STAR, + ACTIONS(7635), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7647), 1, anon_sym_PIPE, + ACTIONS(7649), 1, anon_sym_CARET, + ACTIONS(7651), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7657), 1, + anon_sym_GT_EQ, + ACTIONS(7661), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, + ACTIONS(7663), 1, + anon_sym_QMARK, + ACTIONS(7665), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7667), 1, + anon_sym_bitor, + ACTIONS(7669), 1, anon_sym_xor, + ACTIONS(7671), 1, + anon_sym_bitand, + ACTIONS(7723), 1, + anon_sym_RPAREN, + STATE(1329), 1, + sym_binary_fold_operator, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + STATE(9281), 1, + sym_fold_operator, + ACTIONS(7318), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7275), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(7639), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7643), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7645), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7659), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7673), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7641), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7653), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_not_eq, + ACTIONS(7655), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7322), 12, + anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -436215,21 +395203,12 @@ 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, - [129957] = 3, + [80783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6504), 19, + ACTIONS(6216), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -436248,17 +395227,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6506), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6214), 33, anon_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, @@ -436281,11 +395257,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [130016] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [80843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6508), 19, + ACTIONS(6220), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -436304,17 +395284,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6510), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6218), 33, anon_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, @@ -436337,11 +395314,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [130075] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [80903] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6664), 16, + ACTIONS(7725), 1, + anon_sym_LBRACK_LBRACK, + STATE(3624), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6360), 20, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -436355,21 +395341,19 @@ 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(6662), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6358), 29, anon_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, @@ -436381,23 +395365,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_or, - anon_sym_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, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [130134] = 3, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [80967] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6668), 16, + ACTIONS(7728), 1, + anon_sym_LT, + STATE(3476), 1, + sym_template_argument_list, + ACTIONS(7100), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -436408,13 +395395,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, anon_sym_DASH_GT, - ACTIONS(6666), 35, + ACTIONS(7098), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -436424,7 +395413,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, @@ -436437,53 +395425,121 @@ 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_or, - anon_sym_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, + [81031] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6246), 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(6248), 39, + anon_sym_AMP, + anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [130193] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [81091] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7233), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(7120), 1, + anon_sym_LPAREN2, + ACTIONS(7617), 1, + anon_sym_LBRACK, + ACTIONS(7631), 1, + anon_sym_DOT, + STATE(4059), 1, + sym_argument_list, + STATE(4060), 1, + sym_subscript_argument_list, + ACTIONS(7629), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7633), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7599), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7019), 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_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7231), 32, + ACTIONS(7021), 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, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -436491,7 +395547,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, @@ -436502,14 +395557,11 @@ static const uint16_t ts_small_parse_table[] = { 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, - [130252] = 3, + anon_sym_GT2, + [81167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6970), 19, + ACTIONS(6495), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -436523,13 +395575,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(6968), 32, + ACTIONS(6493), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -436539,7 +395592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -436562,72 +395615,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [130311] = 24, + [81227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(6274), 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, - ACTIONS(51), 1, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6276), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym___based, - ACTIONS(1538), 1, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, anon_sym_template, - ACTIONS(2259), 1, anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, + anon_sym_try, + anon_sym_requires, + [81287] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6399), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3706), 1, anon_sym_TILDE, - ACTIONS(3708), 1, anon_sym_STAR, - ACTIONS(3710), 1, - anon_sym_AMP, - ACTIONS(3716), 1, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_COLON_COLON, - ACTIONS(5748), 1, - sym_identifier, - ACTIONS(8132), 1, - anon_sym_LBRACK, - STATE(6585), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7201), 1, - sym_scope_resolution, - STATE(7552), 1, - sym_declarator, - STATE(10059), 1, - sym_ms_based_modifier, - ACTIONS(3668), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4045), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5179), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(3666), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - ACTIONS(3664), 12, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6401), 39, + anon_sym_AMP, anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -436639,10 +395716,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [130412] = 3, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [81347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 21, + ACTIONS(6224), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -436652,27 +395743,24 @@ 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(7069), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6222), 33, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -436680,6 +395768,7 @@ 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, @@ -436694,11 +395783,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [130471] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [81407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6672), 16, + ACTIONS(5989), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -436713,12 +395805,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(6670), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5987), 33, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -436738,23 +395829,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_or, - anon_sym_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, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [130530] = 3, + anon_sym_DOT_DOT_DOT_GT, + [81467] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7265), 19, + ACTIONS(5409), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5998), 1, + anon_sym_LBRACK, + ACTIONS(5995), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(4773), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -436774,17 +395873,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7263), 32, + ACTIONS(4765), 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, @@ -436807,17 +395903,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [130589] = 3, + [81533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7307), 24, + ACTIONS(6228), 19, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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(6226), 33, anon_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, @@ -436826,47 +395942,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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(7305), 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_LT_EQ_GT, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - [130648] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [81593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6676), 16, + ACTIONS(6236), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -436880,10 +395977,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(6674), 35, + ACTIONS(6234), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -436893,8 +395994,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, @@ -436906,23 +396006,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_or, - anon_sym_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, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [130707] = 3, + [81653] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 19, + STATE(1302), 1, + sym_fold_operator, + ACTIONS(2191), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2193), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_QMARK, + 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, + ACTIONS(7661), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -436940,20 +396055,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7297), 32, - anon_sym_DOT_DOT_DOT, + ACTIONS(7322), 21, anon_sym_COMMA, - anon_sym_RPAREN, - anon_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, @@ -436964,84 +396072,139 @@ 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, - [130766] = 10, + [81719] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5653), 1, + sym_primitive_type, + STATE(2848), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6985), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5975), 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(5978), 33, + anon_sym_AMP, + anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [81785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, - anon_sym_LPAREN2, - ACTIONS(8054), 1, - anon_sym_LBRACK, - ACTIONS(8070), 1, - anon_sym_DOT, - STATE(4413), 1, - sym_argument_list, - STATE(4493), 1, - sym_subscript_argument_list, - ACTIONS(8068), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8072), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7143), 18, + ACTIONS(6298), 13, anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_RPAREN, + 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_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(7141), 24, - 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_DOT_DOT_DOT_GT, - [130839] = 3, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6300), 39, + anon_sym_AMP, + anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [81845] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7360), 19, + ACTIONS(5409), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5998), 1, + anon_sym_LBRACK, + ACTIONS(5995), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(4773), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -437061,17 +396224,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7358), 32, + ACTIONS(4765), 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, @@ -437094,36 +396254,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [130898] = 3, + [81911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6592), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6590), 47, + ACTIONS(6286), 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(6288), 39, + anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -437134,26 +396298,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_DASH_GT, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_GT2, + anon_sym_template, + anon_sym_operator, anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - sym_semgrep_metavar, - [130957] = 3, + [81971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6590), 7, + ACTIONS(6332), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -437161,17 +396325,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(6592), 44, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6334), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -437192,41 +396355,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + anon_sym_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, anon_sym_template, anon_sym_operator, - [131016] = 10, + anon_sym_try, + anon_sym_requires, + [82031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, - anon_sym_LPAREN2, - ACTIONS(8054), 1, - anon_sym_LBRACK, - ACTIONS(8070), 1, - anon_sym_DOT, - STATE(4413), 1, - sym_argument_list, - STATE(4493), 1, - sym_subscript_argument_list, - ACTIONS(8068), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8072), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7112), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(6506), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -437240,16 +396385,24 @@ 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, - ACTIONS(7110), 24, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6504), 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, @@ -437268,11 +396421,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT_DOT_DOT_GT, - [131089] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [82091] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7319), 19, + ACTIONS(7120), 1, + anon_sym_LPAREN2, + ACTIONS(7617), 1, + anon_sym_LBRACK, + ACTIONS(7631), 1, + anon_sym_DOT, + STATE(4059), 1, + sym_argument_list, + STATE(4060), 1, + sym_subscript_argument_list, + ACTIONS(7629), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7633), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7019), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -437282,27 +396454,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_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7317), 32, + ACTIONS(7021), 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, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -437310,7 +396478,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, @@ -437321,46 +396488,48 @@ static const uint16_t ts_small_parse_table[] = { 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, - [131148] = 5, + anon_sym_GT2, + [82165] = 7, ACTIONS(3), 1, sym_comment, - STATE(4103), 1, + ACTIONS(7731), 1, + sym_identifier, + ACTIONS(7735), 1, + sym_primitive_type, + STATE(3696), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5992), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(8142), 4, + ACTIONS(7733), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5990), 42, + ACTIONS(5965), 10, 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, + ACTIONS(5969), 35, + anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -437371,7 +396540,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, anon_sym_asm, anon_sym___asm__, sym_auto, @@ -437380,73 +396548,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [131211] = 26, + [82233] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(8036), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8038), 1, + ACTIONS(7603), 1, anon_sym_AMP_AMP, - ACTIONS(8040), 1, + ACTIONS(7605), 1, anon_sym_PIPE, - ACTIONS(8044), 1, + ACTIONS(7609), 1, anon_sym_AMP, - ACTIONS(8050), 1, - anon_sym_GT_EQ, - ACTIONS(8054), 1, + ACTIONS(7617), 1, anon_sym_LBRACK, - ACTIONS(8058), 1, + ACTIONS(7619), 1, anon_sym_LT_EQ_GT, - ACTIONS(8060), 1, - anon_sym_or, - ACTIONS(8062), 1, + ACTIONS(7623), 1, anon_sym_and, - ACTIONS(8064), 1, + ACTIONS(7625), 1, anon_sym_bitor, - ACTIONS(8066), 1, + ACTIONS(7627), 1, anon_sym_bitand, - ACTIONS(8070), 1, + ACTIONS(7631), 1, anon_sym_DOT, - STATE(4413), 1, + STATE(4059), 1, sym_argument_list, - STATE(4493), 1, + STATE(4060), 1, sym_subscript_argument_list, - ACTIONS(7123), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_EQ, - ACTIONS(8032), 2, + ACTIONS(7597), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8042), 2, + ACTIONS(7607), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8052), 2, + ACTIONS(7615), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8068), 2, + ACTIONS(7629), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8072), 2, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8034), 3, + ACTIONS(7019), 3, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + ACTIONS(7599), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(8046), 3, + ACTIONS(7611), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8048), 3, + ACTIONS(7613), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7125), 15, + ACTIONS(7021), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -437454,32 +396620,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_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_DOT_DOT_DOT_GT, - [131316] = 9, + anon_sym_GT2, + [82333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, - anon_sym_LPAREN2, - ACTIONS(8054), 1, - anon_sym_LBRACK, - ACTIONS(8070), 1, - anon_sym_DOT, - STATE(4413), 1, - sym_argument_list, - STATE(4493), 1, - sym_subscript_argument_list, - ACTIONS(8072), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7057), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(7197), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -437493,16 +396644,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, 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, - ACTIONS(7059), 26, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(7199), 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_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -437514,143 +396679,73 @@ 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, + [82393] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6444), 1, + sym_literal_suffix, + ACTIONS(4773), 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_LT_EQ_GT, + anon_sym_or, + anon_sym_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_DOT_DOT_GT, - [131387] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4133), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8134), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6062), 13, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4765), 26, 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(6064), 33, - anon_sym_AMP, - anon_sym___extension__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [131450] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4103), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5998), 4, - anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(8142), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5996), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [131513] = 5, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, + [82455] = 3, ACTIONS(3), 1, sym_comment, - STATE(4133), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8181), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5697), 13, + ACTIONS(6328), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -437664,7 +396759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5699), 33, + ACTIONS(6330), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -437691,74 +396786,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, anon_sym_template, anon_sym_operator, - [131576] = 4, + anon_sym_try, + anon_sym_requires, + [82515] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8184), 1, - anon_sym_namespace, - ACTIONS(7207), 6, + ACTIONS(2989), 1, + anon_sym_LBRACE, + ACTIONS(7141), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + STATE(4128), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6386), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(7205), 44, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + 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(6384), 29, + 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [131637] = 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, + anon_sym_DOT_DOT_DOT_GT, + [82581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7139), 21, + ACTIONS(6195), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -437768,27 +396873,24 @@ 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(7137), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6193), 33, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -437796,6 +396898,7 @@ 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, @@ -437810,165 +396913,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [131696] = 24, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [82641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, + ACTIONS(5664), 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(5662), 36, + ts_builtin_sym_end, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8124), 1, - sym_identifier, - ACTIONS(8126), 1, anon_sym_STAR, - ACTIONS(8128), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(8130), 1, - anon_sym_AMP, - ACTIONS(8132), 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_RBRACE, anon_sym_LBRACK, - STATE(6585), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7205), 1, - sym_scope_resolution, - STATE(7489), 1, - sym_declarator, - STATE(9949), 1, - sym_ms_based_modifier, - ACTIONS(3668), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5162), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6323), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3666), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - ACTIONS(3664), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [131797] = 24, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + 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_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [82701] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, + ACTIONS(6968), 1, anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8132), 1, + ACTIONS(7296), 1, anon_sym_LBRACK, - ACTIONS(8150), 1, - sym_identifier, - ACTIONS(8152), 1, - anon_sym_STAR, - ACTIONS(8154), 1, - anon_sym_AMP_AMP, - ACTIONS(8156), 1, + ACTIONS(7320), 1, + anon_sym_DOT_STAR, + ACTIONS(7635), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7647), 1, + anon_sym_PIPE, + ACTIONS(7649), 1, + anon_sym_CARET, + ACTIONS(7651), 1, anon_sym_AMP, - STATE(6585), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7202), 1, - sym_scope_resolution, - STATE(7557), 1, - sym_declarator, - STATE(10671), 1, - sym_ms_based_modifier, - ACTIONS(3668), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4141), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5106), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(3666), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - ACTIONS(3664), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [131898] = 3, + ACTIONS(7657), 1, + anon_sym_GT_EQ, + ACTIONS(7661), 1, + anon_sym_EQ, + ACTIONS(7663), 1, + anon_sym_QMARK, + ACTIONS(7665), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7667), 1, + anon_sym_bitor, + ACTIONS(7669), 1, + anon_sym_xor, + ACTIONS(7671), 1, + anon_sym_bitand, + ACTIONS(7737), 1, + anon_sym_RPAREN, + STATE(1329), 1, + sym_binary_fold_operator, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + STATE(9281), 1, + sym_fold_operator, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7639), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7643), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7645), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7659), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7673), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7641), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7653), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7655), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7322), 12, + 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_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_GT_STAR, + [82815] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 19, + ACTIONS(7531), 1, + anon_sym_LBRACK_LBRACK, + STATE(3624), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6212), 20, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -437982,23 +397080,19 @@ 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(7393), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6210), 29, anon_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, @@ -438020,75 +397114,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [131957] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8186), 1, - anon_sym_namespace, - ACTIONS(7207), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(7205), 44, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [132018] = 5, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [82879] = 3, ACTIONS(3), 1, sym_comment, - STATE(4131), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7899), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5959), 13, + ACTIONS(5987), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -438102,7 +397133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5957), 33, + ACTIONS(5989), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -438129,171 +397160,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, anon_sym_template, anon_sym_operator, - [132081] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8132), 1, - anon_sym_LBRACK, - ACTIONS(8150), 1, - sym_identifier, - ACTIONS(8152), 1, - anon_sym_STAR, - ACTIONS(8154), 1, - anon_sym_AMP_AMP, - ACTIONS(8156), 1, - anon_sym_AMP, - STATE(6585), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7202), 1, - sym_scope_resolution, - STATE(7552), 1, - sym_declarator, - STATE(10671), 1, - sym_ms_based_modifier, - ACTIONS(3668), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5115), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6323), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3666), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - ACTIONS(3664), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [132182] = 24, + anon_sym_try, + anon_sym_requires, + [82939] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, + ACTIONS(4784), 1, anon_sym_COLON_COLON, - ACTIONS(6256), 1, - sym_identifier, - ACTIONS(8132), 1, - anon_sym_LBRACK, - ACTIONS(8163), 1, - anon_sym_STAR, - ACTIONS(8165), 1, - anon_sym_AMP_AMP, - ACTIONS(8167), 1, - anon_sym_AMP, - STATE(6585), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7241), 1, - sym_scope_resolution, - STATE(7557), 1, - sym_declarator, - STATE(9737), 1, - sym_ms_based_modifier, - ACTIONS(3668), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4146), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5110), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(3666), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - ACTIONS(3664), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [132283] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7352), 19, + ACTIONS(4763), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -438308,105 +397193,130 @@ 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(4771), 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, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [83001] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7120), 1, + anon_sym_LPAREN2, + ACTIONS(7601), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7603), 1, + anon_sym_AMP_AMP, + ACTIONS(7605), 1, + anon_sym_PIPE, + ACTIONS(7609), 1, + anon_sym_AMP, + ACTIONS(7617), 1, + anon_sym_LBRACK, + ACTIONS(7619), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7621), 1, + anon_sym_or, + ACTIONS(7623), 1, + anon_sym_and, + ACTIONS(7625), 1, + anon_sym_bitor, + ACTIONS(7627), 1, + anon_sym_bitand, + ACTIONS(7631), 1, anon_sym_DOT, + ACTIONS(7693), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7695), 1, + anon_sym_QMARK, + STATE(4059), 1, + sym_argument_list, + STATE(4060), 1, + sym_subscript_argument_list, + ACTIONS(6691), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(7597), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7607), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7629), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7633), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7350), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(7599), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7611), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7613), 4, + anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6689), 14, + 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_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_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, - [132342] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8188), 1, - anon_sym_namespace, - ACTIONS(7207), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(7205), 44, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [132403] = 3, + anon_sym_GT2, + [83109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7356), 19, + ACTIONS(6330), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -438425,17 +397335,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7354), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6328), 33, anon_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, @@ -438458,88 +397365,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [132462] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, + anon_sym_DASH_GT, + sym_auto, anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(6256), 1, - sym_identifier, - ACTIONS(8132), 1, - anon_sym_LBRACK, - ACTIONS(8163), 1, - anon_sym_STAR, - ACTIONS(8165), 1, - anon_sym_AMP_AMP, - ACTIONS(8167), 1, - anon_sym_AMP, - STATE(6585), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7241), 1, - sym_scope_resolution, - STATE(7552), 1, - sym_declarator, - STATE(9737), 1, - sym_ms_based_modifier, - ACTIONS(3668), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5189), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6323), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3666), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - ACTIONS(3664), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [132563] = 3, + anon_sym_DOT_DOT_DOT_GT, + [83169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6604), 16, + ACTIONS(6268), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -438556,7 +397389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6602), 35, + ACTIONS(6266), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -438566,6 +397399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -438592,29 +397426,30 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [132622] = 4, + [83229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8190), 1, - anon_sym_namespace, - ACTIONS(7207), 6, + ACTIONS(6290), 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(7205), 44, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6292), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -438635,24 +397470,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + anon_sym_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, anon_sym_template, anon_sym_operator, - [132683] = 3, + anon_sym_try, + anon_sym_requires, + [83289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6592), 16, + ACTIONS(6485), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -438666,10 +397500,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(6590), 35, + ACTIONS(6483), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -438679,8 +397517,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, @@ -438692,130 +397529,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_or, - anon_sym_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, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [132742] = 24, + [83349] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(5748), 1, - sym_identifier, - ACTIONS(8132), 1, - anon_sym_LBRACK, - ACTIONS(8144), 1, - anon_sym_STAR, - ACTIONS(8146), 1, - anon_sym_AMP_AMP, - ACTIONS(8148), 1, + ACTIONS(7605), 1, + anon_sym_PIPE, + ACTIONS(7609), 1, anon_sym_AMP, - STATE(6585), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7180), 1, - sym_scope_resolution, - STATE(7979), 1, - sym_declarator, - STATE(9814), 1, - sym_ms_based_modifier, - ACTIONS(3668), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5101), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6323), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3666), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - ACTIONS(3664), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [132843] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7075), 21, + ACTIONS(7617), 1, + anon_sym_LBRACK, + ACTIONS(7619), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7625), 1, + anon_sym_bitor, + ACTIONS(7627), 1, + anon_sym_bitand, + ACTIONS(7631), 1, + anon_sym_DOT, + STATE(4059), 1, + sym_argument_list, + STATE(4060), 1, + sym_subscript_argument_list, + ACTIONS(7597), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(7607), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, + anon_sym_xor, + ACTIONS(7615), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, + ACTIONS(7629), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7633), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7599), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7611), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7019), 4, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(7073), 30, + ACTIONS(7613), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7021), 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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -438829,19 +397614,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, + anon_sym_GT2, + [83445] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7739), 1, + sym_identifier, + STATE(3662), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(7742), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(7745), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5567), 17, + 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___attribute__, + 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(5562), 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_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [132902] = 3, + [83513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7367), 19, + ACTIONS(6322), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -438860,17 +397699,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7365), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6320), 33, anon_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, @@ -438893,11 +397729,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [132961] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [83573] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7371), 19, + ACTIONS(2989), 1, + anon_sym_LBRACE, + ACTIONS(7141), 1, + anon_sym_LPAREN2, + STATE(4190), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6377), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -438916,12 +397763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7369), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(6375), 29, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -438949,11 +397791,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [83639] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_const, + ACTIONS(5442), 1, + anon_sym_AMP, + ACTIONS(5435), 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(5440), 10, + 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(5438), 15, + anon_sym___extension__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + ACTIONS(5445), 18, + 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_or, + anon_sym_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, + [83707] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7320), 1, + anon_sym_DOT_STAR, + ACTIONS(7635), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7647), 1, + anon_sym_PIPE, + ACTIONS(7649), 1, + anon_sym_CARET, + ACTIONS(7651), 1, + anon_sym_AMP, + ACTIONS(7657), 1, + anon_sym_GT_EQ, + ACTIONS(7661), 1, + anon_sym_EQ, + ACTIONS(7663), 1, + anon_sym_QMARK, + ACTIONS(7665), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7667), 1, + anon_sym_bitor, + ACTIONS(7669), 1, + anon_sym_xor, + ACTIONS(7671), 1, + anon_sym_bitand, + ACTIONS(7748), 1, + anon_sym_RPAREN, + STATE(1329), 1, + sym_binary_fold_operator, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + STATE(9281), 1, + sym_fold_operator, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7639), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7643), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7645), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7659), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7673), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7641), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7653), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7655), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7322), 12, + 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_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_DASH_GT_STAR, - [133020] = 3, + [83821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6410), 19, + ACTIONS(6401), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -438972,17 +397961,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6412), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6399), 33, anon_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, @@ -439005,11 +397991,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [83881] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7320), 1, + anon_sym_DOT_STAR, + ACTIONS(7635), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7647), 1, + anon_sym_PIPE, + ACTIONS(7649), 1, + anon_sym_CARET, + ACTIONS(7651), 1, + anon_sym_AMP, + ACTIONS(7657), 1, + anon_sym_GT_EQ, + ACTIONS(7661), 1, + anon_sym_EQ, + ACTIONS(7663), 1, + anon_sym_QMARK, + ACTIONS(7665), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7667), 1, + anon_sym_bitor, + ACTIONS(7669), 1, + anon_sym_xor, + ACTIONS(7671), 1, + anon_sym_bitand, + ACTIONS(7750), 1, + anon_sym_RPAREN, + STATE(1329), 1, + sym_binary_fold_operator, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + STATE(9281), 1, + sym_fold_operator, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7639), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7643), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7645), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7659), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7673), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7641), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7653), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7655), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7322), 12, + 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_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_DASH_GT_STAR, - [133079] = 3, + [83995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6345), 19, + ACTIONS(5993), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -439023,13 +398096,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(6347), 32, + ACTIONS(5991), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -439039,7 +398113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -439062,42 +398136,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [133138] = 5, + [84055] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(8081), 1, - anon_sym_AMP_AMP, - ACTIONS(8085), 1, - anon_sym_and, - ACTIONS(6414), 18, + ACTIONS(7120), 1, + anon_sym_LPAREN2, + ACTIONS(7617), 1, + anon_sym_LBRACK, + ACTIONS(7619), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7631), 1, + anon_sym_DOT, + STATE(4059), 1, + sym_argument_list, + STATE(4060), 1, + sym_subscript_argument_list, + ACTIONS(7597), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7629), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7633), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7599), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7613), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7019), 8, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, 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(6416), 31, + ACTIONS(7021), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -439105,25 +398195,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_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_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, - [133201] = 3, + anon_sym_GT2, + [84139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6418), 19, + ACTIONS(6090), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -439138,12 +398223,9 @@ 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(6420), 32, + ACTIONS(6088), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -439153,6 +398235,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -439165,25 +398249,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_or, + anon_sym_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, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [133260] = 4, + [84199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6014), 3, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(4837), 19, + ACTIONS(4346), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -439197,13 +398279,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(4829), 29, + ACTIONS(4348), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -439213,7 +398296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -439225,6 +398308,9 @@ 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, @@ -439233,67 +398319,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [133321] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8192), 1, - anon_sym_typedef, - ACTIONS(3658), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3656), 44, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [133382] = 3, + [84259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6986), 19, + ACTIONS(6489), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -439313,7 +398342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6984), 32, + ACTIONS(6487), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -439323,6 +398352,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, @@ -439346,17 +398376,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [133441] = 5, + [84319] = 25, ACTIONS(3), 1, sym_comment, - STATE(4086), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8194), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6005), 13, + ACTIONS(7120), 1, + anon_sym_LPAREN2, + ACTIONS(7601), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7603), 1, + anon_sym_AMP_AMP, + ACTIONS(7605), 1, + anon_sym_PIPE, + ACTIONS(7609), 1, + anon_sym_AMP, + ACTIONS(7617), 1, + anon_sym_LBRACK, + ACTIONS(7619), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7621), 1, + anon_sym_or, + ACTIONS(7623), 1, + anon_sym_and, + ACTIONS(7625), 1, + anon_sym_bitor, + ACTIONS(7627), 1, + anon_sym_bitand, + ACTIONS(7631), 1, + anon_sym_DOT, + STATE(4059), 1, + sym_argument_list, + STATE(4060), 1, + sym_subscript_argument_list, + ACTIONS(7128), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(7597), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7607), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7629), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7633), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7599), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7611), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7613), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7130), 16, + 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_GT2, + [84423] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6294), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -439370,7 +398472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(6007), 33, + ACTIONS(6296), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -439397,48 +398499,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, anon_sym_template, anon_sym_operator, - [133504] = 3, + anon_sym_try, + anon_sym_requires, + [84483] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7261), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7320), 1, + anon_sym_DOT_STAR, + ACTIONS(7635), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7647), 1, anon_sym_PIPE, + ACTIONS(7649), 1, anon_sym_CARET, + ACTIONS(7651), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7657), 1, + anon_sym_GT_EQ, + ACTIONS(7661), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, + ACTIONS(7663), 1, + anon_sym_QMARK, + ACTIONS(7665), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7667), 1, + anon_sym_bitor, + ACTIONS(7669), 1, anon_sym_xor, + ACTIONS(7671), 1, + anon_sym_bitand, + ACTIONS(7752), 1, + anon_sym_RPAREN, + STATE(1329), 1, + sym_binary_fold_operator, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + STATE(9281), 1, + sym_fold_operator, + ACTIONS(7318), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7259), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(7639), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7643), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7645), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7659), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7673), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7641), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7653), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_not_eq, + ACTIONS(7655), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7322), 12, + anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -439449,21 +398595,15 @@ 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, - [133563] = 3, + [84597] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7419), 19, + ACTIONS(7728), 1, + anon_sym_LT, + STATE(2039), 1, + sym_template_argument_list, + ACTIONS(7100), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -439474,7 +398614,6 @@ 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, @@ -439483,7 +398622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7417), 32, + ACTIONS(7098), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -439516,23 +398655,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [133622] = 9, + [84661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(8196), 1, - anon_sym_DOT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(8198), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6998), 17, + ACTIONS(6244), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -439550,14 +398677,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6996), 27, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, + ACTIONS(6242), 33, + anon_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, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -439578,26 +398707,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [133693] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(8196), 1, - anon_sym_DOT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7055), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8198), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7143), 17, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [84721] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5983), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -439615,14 +398734,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(7141), 25, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, + ACTIONS(5981), 33, + anon_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, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -439641,26 +398762,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [133766] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(8196), 1, - anon_sym_DOT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7055), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8198), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7112), 17, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [84781] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6264), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -439674,18 +398786,24 @@ 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, - ACTIONS(7110), 25, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6262), 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_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -439704,71 +398822,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [133839] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7123), 1, - anon_sym_EQ, - ACTIONS(8196), 1, - anon_sym_DOT, - ACTIONS(8204), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8206), 1, - anon_sym_AMP_AMP, - ACTIONS(8208), 1, - anon_sym_PIPE, - ACTIONS(8212), 1, - anon_sym_AMP, - ACTIONS(8218), 1, - anon_sym_GT_EQ, - ACTIONS(8222), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8224), 1, - anon_sym_or, - ACTIONS(8226), 1, - anon_sym_and, - ACTIONS(8228), 1, - anon_sym_bitor, - ACTIONS(8230), 1, - anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7055), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8198), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8200), 2, + anon_sym_DASH_GT_STAR, + [84841] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6284), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8210), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8220), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8202), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(8214), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8216), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7125), 16, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6282), 36, anon_sym_DOT_DOT_DOT, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -439780,26 +398870,29 @@ 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, - [133944] = 9, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [84901] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(8196), 1, - anon_sym_DOT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(8198), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7057), 17, + ACTIONS(7352), 1, + sym_auto, + ACTIONS(7354), 1, + anon_sym_decltype, + STATE(3869), 1, + sym_decltype_auto, + ACTIONS(6191), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -439814,17 +398907,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, - ACTIONS(7059), 27, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6189), 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_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -439836,81 +398932,29 @@ 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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [134015] = 26, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [84967] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(4797), 1, + anon_sym_EQ, + ACTIONS(5409), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5995), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(5998), 1, anon_sym_LBRACK, - ACTIONS(7006), 1, - anon_sym_EQ, - ACTIONS(8196), 1, - anon_sym_DOT, - ACTIONS(8204), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8206), 1, - anon_sym_AMP_AMP, - ACTIONS(8208), 1, - anon_sym_PIPE, - ACTIONS(8212), 1, - anon_sym_AMP, - ACTIONS(8218), 1, - anon_sym_GT_EQ, - ACTIONS(8222), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8224), 1, - anon_sym_or, - ACTIONS(8226), 1, - anon_sym_and, - ACTIONS(8228), 1, - anon_sym_bitor, - ACTIONS(8230), 1, - anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7055), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8198), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8200), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8210), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8220), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8202), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(8214), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8216), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7008), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(4801), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -439924,74 +398968,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [134120] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7061), 1, - anon_sym_EQ, - ACTIONS(7165), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8196), 1, + ACTIONS(4773), 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_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(8204), 1, + ACTIONS(4765), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_PIPE_PIPE, - ACTIONS(8206), 1, anon_sym_AMP_AMP, - ACTIONS(8208), 1, - anon_sym_PIPE, - ACTIONS(8212), 1, - anon_sym_AMP, - ACTIONS(8218), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(8222), 1, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(8224), 1, - anon_sym_or, - ACTIONS(8226), 1, - anon_sym_and, - ACTIONS(8228), 1, anon_sym_bitor, - ACTIONS(8230), 1, anon_sym_bitand, - ACTIONS(8232), 1, - anon_sym_QMARK, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7055), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8198), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8200), 2, + [85037] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6252), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8210), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8220), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8202), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(8214), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8216), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7065), 14, - 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(6250), 33, + anon_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, @@ -440005,32 +399051,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [134229] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(8196), 1, - anon_sym_DOT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7055), 2, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8198), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8202), 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [85097] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6256), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7053), 14, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -440043,14 +399084,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(7051), 25, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, + ACTIONS(6254), 33, + anon_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, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -440069,26 +399112,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [134304] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(8196), 1, - anon_sym_DOT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7055), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8198), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7053), 17, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [85157] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6260), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -440106,14 +399141,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(7051), 25, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, + ACTIONS(6258), 33, + anon_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, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -440132,69 +399169,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [134377] = 24, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [85217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(6214), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(8196), 1, - anon_sym_DOT, - ACTIONS(8206), 1, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(8208), 1, - anon_sym_PIPE, - ACTIONS(8212), 1, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6216), 39, anon_sym_AMP, - ACTIONS(8218), 1, - anon_sym_GT_EQ, - ACTIONS(8222), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8226), 1, - anon_sym_and, - ACTIONS(8228), 1, - anon_sym_bitor, - ACTIONS(8230), 1, - anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7053), 2, + anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [85277] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6218), 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_or, - ACTIONS(7055), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8198), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8200), 2, + anon_sym_GT2, + ACTIONS(6220), 39, + anon_sym_AMP, + anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [85337] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6506), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8210), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8220), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8202), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(8214), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8216), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 17, + 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(6504), 33, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_COLON, + 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, @@ -440209,67 +399339,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [134478] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(8196), 1, - anon_sym_DOT, - ACTIONS(8208), 1, - anon_sym_PIPE, - ACTIONS(8212), 1, - anon_sym_AMP, - ACTIONS(8218), 1, - anon_sym_GT_EQ, - ACTIONS(8222), 1, anon_sym_LT_EQ_GT, - ACTIONS(8228), 1, anon_sym_bitor, - ACTIONS(8230), 1, anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7055), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8198), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8200), 2, + [85397] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4342), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8210), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8220), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7053), 3, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(8202), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(8214), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8216), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 18, + 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), 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_COLON, + 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, @@ -440284,64 +399396,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [134575] = 20, + anon_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, + [85457] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(8196), 1, - anon_sym_DOT, - ACTIONS(8212), 1, + ACTIONS(7609), 1, anon_sym_AMP, - ACTIONS(8218), 1, - anon_sym_GT_EQ, - ACTIONS(8222), 1, + ACTIONS(7617), 1, + anon_sym_LBRACK, + ACTIONS(7619), 1, anon_sym_LT_EQ_GT, - ACTIONS(8230), 1, + ACTIONS(7627), 1, anon_sym_bitand, - STATE(3181), 1, + ACTIONS(7631), 1, + anon_sym_DOT, + STATE(4059), 1, sym_argument_list, - STATE(3186), 1, + STATE(4060), 1, sym_subscript_argument_list, - ACTIONS(7055), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8198), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8200), 2, + ACTIONS(7597), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8210), 2, + ACTIONS(7607), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8220), 2, + ACTIONS(7615), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8202), 3, + ACTIONS(7629), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7633), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7599), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(8214), 3, + ACTIONS(7611), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8216), 3, + ACTIONS(7613), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7053), 4, + ACTIONS(7019), 5, anon_sym_PIPE, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - ACTIONS(7051), 19, + ACTIONS(7021), 19, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -440349,7 +399469,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, @@ -440357,63 +399476,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_bitor, - [134668] = 19, + anon_sym_GT2, + [85549] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(8196), 1, - anon_sym_DOT, - ACTIONS(8212), 1, + ACTIONS(7609), 1, anon_sym_AMP, - ACTIONS(8218), 1, - anon_sym_GT_EQ, - ACTIONS(8222), 1, + ACTIONS(7617), 1, + anon_sym_LBRACK, + ACTIONS(7619), 1, anon_sym_LT_EQ_GT, - ACTIONS(8230), 1, + ACTIONS(7627), 1, anon_sym_bitand, - STATE(3181), 1, + ACTIONS(7631), 1, + anon_sym_DOT, + STATE(4059), 1, sym_argument_list, - STATE(3186), 1, + STATE(4060), 1, sym_subscript_argument_list, - ACTIONS(7055), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8198), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8200), 2, + ACTIONS(7597), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8220), 2, + ACTIONS(7615), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8202), 3, + ACTIONS(7629), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7633), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7599), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(8214), 3, + ACTIONS(7611), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8216), 3, + ACTIONS(7613), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7053), 6, + ACTIONS(7019), 7, anon_sym_PIPE, anon_sym_CARET, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(7051), 19, + ACTIONS(7021), 19, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -440421,7 +399541,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, @@ -440429,61 +399548,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_bitor, - [134759] = 17, + anon_sym_GT2, + [85639] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(6968), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7296), 1, anon_sym_LBRACK, - ACTIONS(8196), 1, - anon_sym_DOT, - ACTIONS(8218), 1, + ACTIONS(7320), 1, + anon_sym_DOT_STAR, + ACTIONS(7635), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7647), 1, + anon_sym_PIPE, + ACTIONS(7649), 1, + anon_sym_CARET, + ACTIONS(7651), 1, + anon_sym_AMP, + ACTIONS(7657), 1, anon_sym_GT_EQ, - ACTIONS(8222), 1, + ACTIONS(7661), 1, + anon_sym_EQ, + ACTIONS(7663), 1, + anon_sym_QMARK, + ACTIONS(7665), 1, anon_sym_LT_EQ_GT, - STATE(3181), 1, + ACTIONS(7667), 1, + anon_sym_bitor, + ACTIONS(7669), 1, + anon_sym_xor, + ACTIONS(7671), 1, + anon_sym_bitand, + ACTIONS(7754), 1, + anon_sym_RPAREN, + STATE(1329), 1, + sym_binary_fold_operator, + STATE(3819), 1, sym_argument_list, - STATE(3186), 1, + STATE(3820), 1, sym_subscript_argument_list, - ACTIONS(7055), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8198), 2, - anon_sym_DOT_STAR, + STATE(9281), 1, + sym_fold_operator, + ACTIONS(7318), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8200), 2, + ACTIONS(7639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8220), 2, + ACTIONS(7643), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7645), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7659), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8202), 3, + ACTIONS(7673), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7641), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(8214), 3, + ACTIONS(7653), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8216), 3, + ACTIONS(7655), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7053), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(7051), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(7322), 12, + anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -440494,63 +399632,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_bitor, - anon_sym_bitand, - [134846] = 16, + anon_sym_DASH_GT_STAR, + [85753] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7617), 1, anon_sym_LBRACK, - ACTIONS(8196), 1, - anon_sym_DOT, - ACTIONS(8218), 1, - anon_sym_GT_EQ, - ACTIONS(8222), 1, + ACTIONS(7619), 1, anon_sym_LT_EQ_GT, - STATE(3181), 1, + ACTIONS(7631), 1, + anon_sym_DOT, + STATE(4059), 1, sym_argument_list, - STATE(3186), 1, + STATE(4060), 1, sym_subscript_argument_list, - ACTIONS(7055), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8198), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8200), 2, + ACTIONS(7597), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8220), 2, + ACTIONS(7615), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8202), 3, + ACTIONS(7629), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7633), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7599), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(8216), 3, + ACTIONS(7611), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7613), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7053), 7, + ACTIONS(7019), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(7051), 23, + ACTIONS(7021), 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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -440558,7 +399694,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, @@ -440567,121 +399702,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor_eq, anon_sym_bitor, anon_sym_bitand, - anon_sym_not_eq, - [134931] = 14, + anon_sym_GT2, + [85839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(8196), 1, - anon_sym_DOT, - ACTIONS(8222), 1, - anon_sym_LT_EQ_GT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7055), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8198), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8200), 2, + ACTIONS(5668), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8220), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8202), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7053), 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_bitor, anon_sym_xor, - ACTIONS(7051), 24, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(5666), 36, + ts_builtin_sym_end, 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - [135012] = 12, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + 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_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [85899] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(2848), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5653), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(6985), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5975), 10, + 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, + ACTIONS(5978), 35, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_try, + anon_sym_requires, + [85965] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7617), 1, anon_sym_LBRACK, - ACTIONS(8196), 1, + ACTIONS(7631), 1, anon_sym_DOT, - STATE(3181), 1, + STATE(4059), 1, sym_argument_list, - STATE(3186), 1, + STATE(4060), 1, sym_subscript_argument_list, - ACTIONS(7055), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8198), 2, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8200), 2, + ACTIONS(7015), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8202), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7053), 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_or, anon_sym_and, anon_sym_xor, - ACTIONS(7051), 25, + ACTIONS(7017), 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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -440689,7 +399870,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, @@ -440700,54 +399880,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [135089] = 13, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_GT2, + [86037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(6324), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7000), 1, + 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(6326), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(8196), 1, - anon_sym_DOT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7055), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8198), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8200), 2, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [86097] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6642), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8220), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8202), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7053), 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_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(7051), 25, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6640), 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_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -440766,26 +399993,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [135168] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(8196), 1, - anon_sym_DOT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7055), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8198), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7089), 17, + anon_sym_DASH_GT_STAR, + [86157] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7585), 1, + anon_sym_LT, + STATE(1800), 1, + sym_template_argument_list, + ACTIONS(7100), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -440796,21 +400015,25 @@ 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, - ACTIONS(7091), 25, + anon_sym_DOT, + ACTIONS(7098), 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_COLON, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -440829,127 +400052,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [135241] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [86221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6990), 19, + ACTIONS(5660), 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(6988), 32, + sym_literal_suffix, + ACTIONS(5658), 36, + ts_builtin_sym_end, 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_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, - [135300] = 26, + 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_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [86281] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7617), 1, anon_sym_LBRACK, - ACTIONS(7077), 1, - anon_sym_EQ, - ACTIONS(8196), 1, + ACTIONS(7631), 1, anon_sym_DOT, - ACTIONS(8204), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8206), 1, - anon_sym_AMP_AMP, - ACTIONS(8208), 1, - anon_sym_PIPE, - ACTIONS(8212), 1, - anon_sym_AMP, - ACTIONS(8218), 1, - anon_sym_GT_EQ, - ACTIONS(8222), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8224), 1, - anon_sym_or, - ACTIONS(8226), 1, - anon_sym_and, - ACTIONS(8228), 1, - anon_sym_bitor, - ACTIONS(8230), 1, - anon_sym_bitand, - STATE(3181), 1, + STATE(4059), 1, sym_argument_list, - STATE(3186), 1, + STATE(4060), 1, sym_subscript_argument_list, - ACTIONS(7055), 2, + ACTIONS(7629), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8198), 2, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8200), 2, + ACTIONS(7023), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8210), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8220), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8202), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(8214), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8216), 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(7079), 16, + 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(7025), 24, anon_sym_DOT_DOT_DOT, - anon_sym_COLON, + 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, @@ -440957,159 +400166,54 @@ 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, - [135405] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7081), 1, - anon_sym_EQ, - ACTIONS(7165), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8196), 1, - anon_sym_DOT, - ACTIONS(8204), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8206), 1, - anon_sym_AMP_AMP, - ACTIONS(8208), 1, - anon_sym_PIPE, - ACTIONS(8212), 1, - anon_sym_AMP, - ACTIONS(8218), 1, - anon_sym_GT_EQ, - ACTIONS(8222), 1, anon_sym_LT_EQ_GT, - ACTIONS(8224), 1, - anon_sym_or, - ACTIONS(8226), 1, - anon_sym_and, - ACTIONS(8228), 1, anon_sym_bitor, - ACTIONS(8230), 1, anon_sym_bitand, - ACTIONS(8232), 1, - anon_sym_QMARK, - STATE(3181), 1, + anon_sym_not_eq, + anon_sym_GT2, + [86355] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2989), 1, + anon_sym_LBRACE, + ACTIONS(7141), 1, + anon_sym_LPAREN2, + STATE(4224), 2, sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7055), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8198), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8200), 2, + sym_initializer_list, + ACTIONS(6373), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8210), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8220), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8202), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(8214), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8216), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7083), 14, - 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, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [135514] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7085), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(8196), 1, - anon_sym_DOT, - ACTIONS(8204), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8206), 1, - anon_sym_AMP_AMP, - ACTIONS(8208), 1, - anon_sym_PIPE, - ACTIONS(8212), 1, - anon_sym_AMP, - ACTIONS(8218), 1, - anon_sym_GT_EQ, - ACTIONS(8222), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8224), 1, anon_sym_or, - ACTIONS(8226), 1, anon_sym_and, - ACTIONS(8228), 1, - anon_sym_bitor, - ACTIONS(8230), 1, - anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7055), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8198), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8200), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8210), 2, - anon_sym_CARET, anon_sym_xor, - ACTIONS(8220), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8202), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(8214), 3, + anon_sym_DOT, + ACTIONS(6371), 29, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8216), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7087), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -441124,74 +400228,241 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [135619] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7093), 1, - anon_sym_EQ, - ACTIONS(7165), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8196), 1, - anon_sym_DOT, - ACTIONS(8204), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8206), 1, - anon_sym_AMP_AMP, - ACTIONS(8208), 1, - anon_sym_PIPE, - ACTIONS(8212), 1, - anon_sym_AMP, - ACTIONS(8218), 1, - anon_sym_GT_EQ, - ACTIONS(8222), 1, anon_sym_LT_EQ_GT, - ACTIONS(8224), 1, - anon_sym_or, - ACTIONS(8226), 1, - anon_sym_and, - ACTIONS(8228), 1, anon_sym_bitor, - ACTIONS(8230), 1, anon_sym_bitand, - ACTIONS(8232), 1, - anon_sym_QMARK, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7055), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8198), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8200), 2, + anon_sym_DOT_DOT_DOT_GT, + [86421] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6193), 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(6195), 39, + anon_sym_AMP, + anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [86481] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7756), 1, + anon_sym_typedef, + ACTIONS(3702), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3700), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + 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_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [86542] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_AMP_AMP, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3255), 1, + anon_sym_STAR, + ACTIONS(3257), 1, + anon_sym_AMP, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5741), 1, + sym_identifier, + ACTIONS(7758), 1, + anon_sym_LBRACK, + STATE(5969), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6786), 1, + sym_scope_resolution, + STATE(7434), 1, + sym_declarator, + STATE(9481), 1, + sym_ms_based_modifier, + ACTIONS(3698), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4716), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(5778), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3696), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [86643] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6568), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8210), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8220), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8202), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(8214), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8216), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7095), 14, - 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, + anon_sym_DASH_GT, + ACTIONS(6566), 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, @@ -441205,10 +400476,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [135728] = 3, + anon_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, + [86702] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(6533), 1, + sym_identifier, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7760), 1, + anon_sym_STAR, + ACTIONS(7762), 1, + anon_sym_AMP_AMP, + ACTIONS(7764), 1, + anon_sym_AMP, + STATE(5969), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6740), 1, + sym_scope_resolution, + STATE(7135), 1, + sym_declarator, + STATE(9783), 1, + sym_ms_based_modifier, + ACTIONS(3698), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3718), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4753), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(3696), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [86803] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6349), 19, + ACTIONS(6512), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -441228,7 +400584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6351), 32, + ACTIONS(6510), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -441261,10 +400617,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [135787] = 3, + [86862] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6356), 19, + ACTIONS(6576), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -441284,7 +400640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6358), 32, + ACTIONS(6574), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -441317,67 +400673,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [135846] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8234), 1, - anon_sym_typedef, - ACTIONS(3658), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3656), 44, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [135907] = 3, + [86921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6912), 21, + ACTIONS(5599), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -441387,27 +400686,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(6910), 30, + anon_sym_DASH_GT, + ACTIONS(5601), 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_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -441415,6 +400714,7 @@ 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, @@ -441428,28 +400728,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [135966] = 10, + anon_sym_DASH_GT_STAR, + [86980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(8196), 1, - anon_sym_DOT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7055), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8198), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7097), 17, + ACTIONS(5617), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -441467,14 +400750,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(7099), 25, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5619), 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_COLON, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -441493,70 +400781,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [136039] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [87039] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, + ACTIONS(7766), 1, + sym_identifier, + STATE(3792), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(5474), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5476), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5560), 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, + sym_literal_suffix, + ACTIONS(5556), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(8036), 1, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(8038), 1, anon_sym_AMP_AMP, - ACTIONS(8040), 1, + 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [87106] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_AMP_AMP, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3255), 1, + anon_sym_STAR, + ACTIONS(3257), 1, + anon_sym_AMP, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5741), 1, + sym_identifier, + ACTIONS(7758), 1, + anon_sym_LBRACK, + STATE(5969), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6786), 1, + sym_scope_resolution, + STATE(7440), 1, + sym_declarator, + STATE(9481), 1, + sym_ms_based_modifier, + ACTIONS(3698), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3706), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4726), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(3696), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [87207] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7141), 1, + anon_sym_LPAREN2, + ACTIONS(7772), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7774), 1, + anon_sym_AMP_AMP, + ACTIONS(7776), 1, anon_sym_PIPE, - ACTIONS(8044), 1, + ACTIONS(7780), 1, anon_sym_AMP, - ACTIONS(8050), 1, + ACTIONS(7786), 1, anon_sym_GT_EQ, - ACTIONS(8054), 1, + ACTIONS(7790), 1, anon_sym_LBRACK, - ACTIONS(8058), 1, + ACTIONS(7792), 1, anon_sym_LT_EQ_GT, - ACTIONS(8060), 1, + ACTIONS(7794), 1, anon_sym_or, - ACTIONS(8062), 1, + ACTIONS(7796), 1, anon_sym_and, - ACTIONS(8064), 1, + ACTIONS(7798), 1, anon_sym_bitor, - ACTIONS(8066), 1, + ACTIONS(7800), 1, anon_sym_bitand, - ACTIONS(8070), 1, + ACTIONS(7804), 1, anon_sym_DOT, - STATE(4413), 1, + STATE(4143), 1, sym_argument_list, - STATE(4493), 1, + STATE(4144), 1, sym_subscript_argument_list, - ACTIONS(7006), 2, + ACTIONS(7060), 2, anon_sym_DOT_DOT_DOT, anon_sym_EQ, - ACTIONS(8032), 2, + ACTIONS(7768), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8042), 2, + ACTIONS(7778), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8052), 2, + ACTIONS(7788), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8068), 2, + ACTIONS(7802), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8072), 2, + ACTIONS(7806), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8034), 3, + ACTIONS(7770), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(8046), 3, + ACTIONS(7782), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8048), 3, + ACTIONS(7784), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7008), 15, + ACTIONS(7062), 15, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -441572,10 +401001,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_DOT_DOT_DOT_GT, - [136144] = 3, + [87312] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_AMP_AMP, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3255), 1, + anon_sym_STAR, + ACTIONS(3257), 1, + anon_sym_AMP, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5741), 1, + sym_identifier, + ACTIONS(7758), 1, + anon_sym_LBRACK, + STATE(5969), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6786), 1, + sym_scope_resolution, + STATE(7465), 1, + sym_declarator, + STATE(9481), 1, + sym_ms_based_modifier, + ACTIONS(3698), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4769), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(5778), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3696), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [87413] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7808), 1, + anon_sym_namespace, + ACTIONS(7185), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(7183), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + 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_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [87474] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(6533), 1, + sym_identifier, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7760), 1, + anon_sym_STAR, + ACTIONS(7762), 1, + anon_sym_AMP_AMP, + ACTIONS(7764), 1, + anon_sym_AMP, + STATE(5969), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6740), 1, + sym_scope_resolution, + STATE(7186), 1, + sym_declarator, + STATE(9783), 1, + sym_ms_based_modifier, + ACTIONS(3698), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4772), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(5778), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3696), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [87575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7411), 19, + ACTIONS(6735), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -441595,7 +401235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7409), 32, + ACTIONS(6733), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -441628,10 +401268,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [136203] = 3, + [87634] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7415), 19, + ACTIONS(3036), 1, + anon_sym_LBRACE, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + STATE(4371), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6373), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -441646,16 +401293,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(7413), 32, + ACTIONS(6371), 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, @@ -441673,88 +401316,165 @@ 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_or, + anon_sym_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, - [136262] = 7, + [87699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8236), 1, - sym_identifier, - STATE(4085), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(5544), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(5546), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5653), 18, + ACTIONS(6741), 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_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5649), 19, + anon_sym_DASH_GT, + ACTIONS(6739), 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_LT_LT, + 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, + [87758] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7132), 1, + anon_sym_EQ, + ACTIONS(7141), 1, + anon_sym_LPAREN2, + ACTIONS(7772), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7774), 1, + anon_sym_AMP_AMP, + ACTIONS(7776), 1, + anon_sym_PIPE, + ACTIONS(7780), 1, + anon_sym_AMP, + ACTIONS(7786), 1, + anon_sym_GT_EQ, + ACTIONS(7790), 1, + anon_sym_LBRACK, + ACTIONS(7792), 1, anon_sym_LT_EQ_GT, + ACTIONS(7794), 1, + anon_sym_or, + ACTIONS(7796), 1, + anon_sym_and, + ACTIONS(7798), 1, + anon_sym_bitor, + ACTIONS(7800), 1, + anon_sym_bitand, + ACTIONS(7804), 1, + anon_sym_DOT, + ACTIONS(7810), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7812), 1, + anon_sym_QMARK, + STATE(4143), 1, + sym_argument_list, + STATE(4144), 1, + sym_subscript_argument_list, + ACTIONS(7768), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7778), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7788), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7802), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7806), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [136329] = 5, + ACTIONS(7770), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7782), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7784), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7134), 14, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_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_DOT_DOT_GT, + [87867] = 5, ACTIONS(3), 1, sym_comment, - STATE(4087), 1, + STATE(3833), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8238), 4, + ACTIONS(7814), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6048), 13, + ACTIONS(6145), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -441768,7 +401488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(6050), 33, + ACTIONS(6147), 33, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -441802,10 +401522,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [136392] = 3, + [87930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7403), 19, + ACTIONS(6749), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -441825,7 +401545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7401), 32, + ACTIONS(6747), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -441858,86 +401578,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [136451] = 4, + [87989] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, - anon_sym_typedef, - ACTIONS(3658), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(4784), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3656), 44, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(7816), 1, + anon_sym_LT, + STATE(3723), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4119), 1, + sym_template_argument_list, + ACTIONS(4791), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [136512] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8242), 1, - anon_sym_typedef, - ACTIONS(3658), 6, + ACTIONS(4771), 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_LBRACK_LBRACK, - ACTIONS(3656), 44, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4763), 33, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -441958,166 +401632,328 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, anon_sym_template, anon_sym_operator, - [136573] = 4, + [88058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8244), 1, - anon_sym_namespace, - ACTIONS(7207), 6, + ACTIONS(7199), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, 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(7205), 44, + 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(7197), 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___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + 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, + [88117] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5629), 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(5631), 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_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [136634] = 4, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, + [88176] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8246), 1, - anon_sym_typedef, - ACTIONS(3658), 6, + ACTIONS(7141), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(7772), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7774), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3656), 44, + ACTIONS(7776), 1, + anon_sym_PIPE, + ACTIONS(7780), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + ACTIONS(7786), 1, + anon_sym_GT_EQ, + ACTIONS(7790), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [136695] = 4, + ACTIONS(7792), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7794), 1, + anon_sym_or, + ACTIONS(7796), 1, + anon_sym_and, + ACTIONS(7798), 1, + anon_sym_bitor, + ACTIONS(7800), 1, + anon_sym_bitand, + ACTIONS(7804), 1, + anon_sym_DOT, + STATE(4143), 1, + sym_argument_list, + STATE(4144), 1, + sym_subscript_argument_list, + ACTIONS(7105), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_EQ, + ACTIONS(7768), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7778), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7788), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7802), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7806), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7770), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7782), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7784), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7107), 15, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_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_DOT_DOT_GT, + [88281] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8248), 1, - anon_sym_typedef, - ACTIONS(3658), 6, + ACTIONS(7818), 1, + anon_sym_LT, + STATE(3547), 1, + sym_template_argument_list, + ACTIONS(7100), 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(7098), 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_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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [88344] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, anon_sym_LPAREN2, + ACTIONS(3253), 1, anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(6533), 1, + sym_identifier, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7821), 1, anon_sym_STAR, + ACTIONS(7823), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3656), 44, + ACTIONS(7825), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(5969), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6704), 1, + sym_scope_resolution, + STATE(7163), 1, + sym_declarator, + STATE(9963), 1, + sym_ms_based_modifier, + ACTIONS(3698), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3870), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4723), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(3696), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -442129,43 +401965,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [136756] = 4, + [88445] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8250), 1, - anon_sym_typedef, - ACTIONS(3658), 6, + STATE(3833), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7814), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6054), 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(3656), 44, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6056), 33, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -442186,43 +402016,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, anon_sym_template, anon_sym_operator, - [136817] = 4, + [88508] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8252), 1, - anon_sym_typedef, - ACTIONS(3658), 6, + STATE(3833), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7814), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6064), 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(3656), 44, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6066), 33, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -442243,52 +402074,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, anon_sym_template, anon_sym_operator, - [136878] = 4, + [88571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8254), 1, - anon_sym_typedef, - ACTIONS(3658), 6, + ACTIONS(6777), 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(6775), 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, + [88630] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, anon_sym_LPAREN2, + ACTIONS(3253), 1, anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7827), 1, + sym_identifier, + ACTIONS(7829), 1, anon_sym_STAR, + ACTIONS(7831), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3656), 44, + ACTIONS(7833), 1, anon_sym_AMP, + STATE(5969), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6710), 1, + sym_scope_resolution, + STATE(7434), 1, + sym_declarator, + STATE(9538), 1, + sym_ms_based_modifier, + ACTIONS(3698), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3741), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4755), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(3696), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -442300,24 +402214,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [136939] = 3, + [88731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6547), 16, + ACTIONS(6781), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -442332,9 +402232,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(6545), 35, + ACTIONS(6779), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -442344,7 +402247,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, @@ -442357,23 +402259,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_or, - anon_sym_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, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [136998] = 3, + [88790] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6239), 16, + ACTIONS(6495), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -442383,25 +402283,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, - anon_sym_DASH_GT, - ACTIONS(6237), 35, + ACTIONS(6493), 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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -442409,27 +402311,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_or, - anon_sym_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, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [137057] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [88849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7399), 19, + ACTIONS(6715), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -442449,7 +402349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7397), 32, + ACTIONS(6713), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -442482,10 +402382,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [137116] = 3, + [88908] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6360), 20, + ACTIONS(7143), 1, + anon_sym_LBRACK, + STATE(4070), 1, + sym_new_declarator, + ACTIONS(6454), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -442495,26 +402400,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_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6362), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6452), 30, 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_LBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -442522,6 +402424,7 @@ 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, @@ -442536,75 +402439,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [137174] = 27, + anon_sym_DOT_DOT_DOT_GT, + [88971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7081), 1, + ACTIONS(4773), 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, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - ACTIONS(7805), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4765), 32, anon_sym_DOT_DOT_DOT, - ACTIONS(7833), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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(7835), 1, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(8264), 1, + 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, + [89030] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7090), 1, + anon_sym_EQ, + ACTIONS(7141), 1, + anon_sym_LPAREN2, + ACTIONS(7772), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7774), 1, + anon_sym_AMP_AMP, + ACTIONS(7776), 1, anon_sym_PIPE, - ACTIONS(8266), 1, - anon_sym_CARET, - ACTIONS(8268), 1, + ACTIONS(7780), 1, anon_sym_AMP, - ACTIONS(8274), 1, + ACTIONS(7786), 1, anon_sym_GT_EQ, - ACTIONS(8278), 1, + ACTIONS(7790), 1, + anon_sym_LBRACK, + ACTIONS(7792), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7794), 1, + anon_sym_or, + ACTIONS(7796), 1, + anon_sym_and, + ACTIONS(7798), 1, anon_sym_bitor, - ACTIONS(8280), 1, - anon_sym_xor, - ACTIONS(8282), 1, + ACTIONS(7800), 1, anon_sym_bitand, - STATE(4031), 1, + ACTIONS(7804), 1, + anon_sym_DOT, + ACTIONS(7810), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7812), 1, + anon_sym_QMARK, + STATE(4143), 1, sym_argument_list, - STATE(4032), 1, + STATE(4144), 1, sym_subscript_argument_list, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7843), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8256), 2, + ACTIONS(7768), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8260), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8262), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8276), 2, + ACTIONS(7778), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7788), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8258), 3, + ACTIONS(7802), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7806), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7770), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(8270), 3, + ACTIONS(7782), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8272), 3, + ACTIONS(7784), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7083), 13, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7094), 14, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -442615,39 +402573,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_GT_STAR, - [137280] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_DOT_DOT_DOT_GT, + [89139] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym_COLON, - ACTIONS(5479), 45, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7827), 1, + sym_identifier, + ACTIONS(7829), 1, anon_sym_STAR, - anon_sym_PIPE_PIPE, + ACTIONS(7831), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7833), 1, + anon_sym_AMP, + STATE(5969), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6710), 1, + sym_scope_resolution, + STATE(7465), 1, + sym_declarator, + STATE(9538), 1, + sym_ms_based_modifier, + ACTIONS(3698), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4741), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(5778), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3696), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -442658,23 +402654,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [137338] = 3, + [89240] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7061), 20, + ACTIONS(6787), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -442684,25 +402667,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(7065), 30, + anon_sym_DASH_GT, + ACTIONS(6785), 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, @@ -442711,6 +402695,7 @@ 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, @@ -442724,12 +402709,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [137396] = 3, + anon_sym_DASH_GT_STAR, + [89299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7273), 20, + ACTIONS(6791), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -442739,25 +402723,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(7271), 30, + anon_sym_DASH_GT, + ACTIONS(6789), 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, @@ -442766,6 +402751,7 @@ 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, @@ -442779,12 +402765,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [137454] = 3, + anon_sym_DASH_GT_STAR, + [89358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6496), 20, + ACTIONS(6646), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -442794,25 +402779,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(6498), 30, + anon_sym_DASH_GT, + ACTIONS(6644), 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, @@ -442821,6 +402807,7 @@ 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, @@ -442834,12 +402821,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [137512] = 3, + anon_sym_DASH_GT_STAR, + [89417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6500), 20, + ACTIONS(5607), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -442849,25 +402835,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(6502), 30, + anon_sym_DASH_GT, + ACTIONS(5609), 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, @@ -442876,6 +402863,7 @@ 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, @@ -442889,12 +402877,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [137570] = 3, + anon_sym_DASH_GT_STAR, + [89476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7399), 20, + ACTIONS(5637), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -442904,25 +402891,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(7397), 30, + anon_sym_DASH_GT, + ACTIONS(5639), 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, @@ -442931,6 +402919,7 @@ 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, @@ -442944,12 +402933,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [137628] = 3, + anon_sym_DASH_GT_STAR, + [89535] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6504), 20, + ACTIONS(7835), 1, + anon_sym_AMP_AMP, + ACTIONS(7837), 1, + anon_sym_and, + ACTIONS(6753), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -442959,25 +402951,80 @@ 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_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6755), 31, + 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_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, + [89598] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5611), 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, - ACTIONS(6506), 30, + anon_sym_DASH_GT, + ACTIONS(5613), 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, @@ -442986,6 +403033,7 @@ 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, @@ -442999,12 +403047,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [137686] = 3, + anon_sym_DASH_GT_STAR, + [89657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6508), 20, + ACTIONS(6552), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -443014,25 +403061,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(6510), 30, + anon_sym_DASH_GT, + ACTIONS(6550), 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, @@ -443041,6 +403089,7 @@ 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, @@ -443054,73 +403103,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [137744] = 25, + anon_sym_DASH_GT_STAR, + [89716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7085), 1, + ACTIONS(6798), 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, - ACTIONS(7506), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6796), 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, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - ACTIONS(7835), 1, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(8264), 1, + 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, + [89775] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7585), 1, + anon_sym_LT, + STATE(1807), 1, + sym_template_argument_list, + ACTIONS(7100), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(8266), 1, anon_sym_CARET, - ACTIONS(8268), 1, anon_sym_AMP, - ACTIONS(8274), 1, + 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(7098), 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, - ACTIONS(8278), 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_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, - ACTIONS(8280), 1, - anon_sym_xor, - ACTIONS(8282), 1, anon_sym_bitand, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7843), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8256), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [89838] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6556), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8260), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8262), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8276), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8258), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(8270), 3, + anon_sym_PIPE, + anon_sym_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(6554), 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, - ACTIONS(8272), 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [89897] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5641), 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, - ACTIONS(7087), 15, + 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(5643), 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, @@ -443132,11 +403319,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, - [137846] = 3, + [89956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7265), 20, + ACTIONS(5595), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -443146,25 +403343,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(7263), 30, + anon_sym_DASH_GT, + ACTIONS(5597), 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, @@ -443173,6 +403371,7 @@ 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, @@ -443186,20 +403385,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [137904] = 3, + anon_sym_DASH_GT_STAR, + [90015] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5741), 1, + sym_identifier, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7839), 1, + anon_sym_STAR, + ACTIONS(7841), 1, + anon_sym_AMP_AMP, + ACTIONS(7843), 1, + anon_sym_AMP, + STATE(5969), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6747), 1, + sym_scope_resolution, + STATE(7644), 1, + sym_declarator, + STATE(9230), 1, + sym_ms_based_modifier, + ACTIONS(3698), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3877), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4729), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(3696), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [90116] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5671), 17, + ACTIONS(6499), 1, + sym_literal_suffix, + ACTIONS(4765), 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_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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(4773), 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, @@ -443207,46 +403520,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5669), 33, + [90177] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6802), 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(6800), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + 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, + [90236] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6806), 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(6804), 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, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [137962] = 3, + anon_sym_DASH_GT_STAR, + [90295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 20, + ACTIONS(6603), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -443256,25 +403645,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(7297), 30, + anon_sym_DASH_GT, + ACTIONS(6601), 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, @@ -443283,6 +403673,7 @@ 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, @@ -443296,12 +403687,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [138020] = 3, + anon_sym_DASH_GT_STAR, + [90354] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(6533), 1, + sym_identifier, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7821), 1, + anon_sym_STAR, + ACTIONS(7823), 1, + anon_sym_AMP_AMP, + ACTIONS(7825), 1, + anon_sym_AMP, + STATE(5969), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6704), 1, + sym_scope_resolution, + STATE(7200), 1, + sym_declarator, + STATE(9963), 1, + sym_ms_based_modifier, + ACTIONS(3698), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3764), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4720), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(3696), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [90455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7257), 20, + ACTIONS(5603), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -443311,25 +403778,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(7255), 30, + anon_sym_DASH_GT, + ACTIONS(5605), 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, @@ -443338,6 +403806,7 @@ 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, @@ -443351,12 +403820,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [138078] = 3, + anon_sym_DASH_GT_STAR, + [90514] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7319), 20, + ACTIONS(3036), 1, + anon_sym_LBRACE, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + STATE(4343), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6377), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -443366,25 +403841,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_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(7317), 30, + anon_sym_DASH_GT, + ACTIONS(6375), 31, 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_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -443393,25 +403865,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_or, + anon_sym_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, - anon_sym_GT2, - [138136] = 3, + anon_sym_DASH_GT_STAR, + [90579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7257), 20, + ACTIONS(5633), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -443421,25 +403893,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(7255), 30, + anon_sym_DASH_GT, + ACTIONS(5635), 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, @@ -443448,6 +403921,7 @@ 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, @@ -443461,12 +403935,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [138194] = 3, + anon_sym_DASH_GT_STAR, + [90638] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(6533), 1, + sym_identifier, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7821), 1, + anon_sym_STAR, + ACTIONS(7823), 1, + anon_sym_AMP_AMP, + ACTIONS(7825), 1, + anon_sym_AMP, + STATE(5969), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6704), 1, + sym_scope_resolution, + STATE(7175), 1, + sym_declarator, + STATE(9963), 1, + sym_ms_based_modifier, + ACTIONS(3698), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4750), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(5778), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3696), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [90739] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7323), 20, + ACTIONS(7835), 1, + anon_sym_AMP_AMP, + ACTIONS(7837), 1, + anon_sym_and, + ACTIONS(7845), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7847), 1, + anon_sym_or, + ACTIONS(6677), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -443476,25 +404034,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_or, - anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7321), 30, + anon_sym_DASH_GT, + ACTIONS(6679), 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_QMARK, anon_sym_STAR_EQ, @@ -443503,6 +404058,7 @@ 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, @@ -443516,193 +404072,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [138252] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8291), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(8287), 4, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(8289), 5, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_explicit, - anon_sym_operator, - ACTIONS(8294), 11, - 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_typename, - ACTIONS(8284), 28, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - [138316] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5754), 1, - anon_sym___attribute__, - ACTIONS(5756), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5758), 1, - anon_sym___declspec, - ACTIONS(5760), 1, - anon_sym_virtual, - ACTIONS(5762), 1, - anon_sym_alignas, - ACTIONS(7582), 1, - sym_auto, - ACTIONS(7584), 1, - anon_sym_decltype, - ACTIONS(8296), 1, - anon_sym_SEMI, - STATE(4854), 1, - sym_decltype_auto, - STATE(3883), 2, - sym_declaration_modifiers, - aux_sym_declaration_specifiers_repeat1, - ACTIONS(7614), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(7612), 6, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - STATE(5060), 7, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - ACTIONS(5752), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(5750), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [138400] = 3, + anon_sym_DASH_GT_STAR, + [90806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5679), 17, + ACTIONS(2189), 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_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5677), 33, + anon_sym_DASH_GT, + ACTIONS(2187), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + 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_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, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [138458] = 3, + anon_sym_DASH_GT_STAR, + [90865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7352), 20, + ACTIONS(6759), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -443712,25 +404142,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(7350), 30, + anon_sym_DASH_GT, + ACTIONS(6757), 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, @@ -443739,6 +404170,7 @@ 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, @@ -443752,177 +404184,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [138516] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5481), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym_COLON, - ACTIONS(5483), 45, - 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___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [138574] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5500), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym_COLON, - ACTIONS(5502), 45, - 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___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [138632] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5496), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym_COLON, - ACTIONS(5498), 45, - 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___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [138690] = 3, + anon_sym_DASH_GT_STAR, + [90924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7367), 20, + ACTIONS(6767), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -443932,25 +404198,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(7365), 30, + anon_sym_DASH_GT, + ACTIONS(6765), 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, @@ -443959,6 +404226,7 @@ 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, @@ -443972,12 +404240,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [138748] = 3, + anon_sym_DASH_GT_STAR, + [90983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7371), 20, + ACTIONS(6771), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -443987,25 +404254,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(7369), 30, + anon_sym_DASH_GT, + ACTIONS(6769), 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, @@ -444014,6 +404282,7 @@ 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, @@ -444027,71 +404296,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [138806] = 7, + anon_sym_DASH_GT_STAR, + [91042] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8298), 1, - sym_identifier, - STATE(4237), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(8301), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(8304), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5635), 17, - anon_sym_DOT_DOT_DOT, + ACTIONS(6272), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5630), 19, + anon_sym_DASH_GT, + ACTIONS(6270), 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_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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [138872] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [91101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6345), 20, + ACTIONS(5989), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -444101,25 +404366,24 @@ 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(6347), 30, + anon_sym_DASH_GT, + ACTIONS(5987), 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, @@ -444128,108 +404392,89 @@ static const uint16_t ts_small_parse_table[] = { 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [138930] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5540), 2, - anon_sym_EQ, anon_sym_GT_GT_EQ, - ACTIONS(5542), 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(4829), 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_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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(4837), 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_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - [138992] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [91160] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(8309), 6, + ACTIONS(33), 1, + anon_sym_AMP_AMP, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, anon_sym_LPAREN2, + ACTIONS(3253), 1, anon_sym_TILDE, + ACTIONS(3255), 1, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(8307), 44, + ACTIONS(3257), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5741), 1, + sym_identifier, + ACTIONS(7758), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(5969), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6786), 1, + sym_scope_resolution, + STATE(7434), 1, + sym_declarator, + STATE(9481), 1, + sym_ms_based_modifier, + ACTIONS(3698), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3716), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4716), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(3696), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -444241,24 +404486,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [139050] = 3, + [91261] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6349), 20, + ACTIONS(7102), 1, + anon_sym_LT, + STATE(2106), 1, + sym_template_argument_list, + ACTIONS(7100), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -444268,25 +404503,24 @@ 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(6351), 30, + ACTIONS(7098), 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, @@ -444295,6 +404529,7 @@ 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, @@ -444309,11 +404544,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [139108] = 3, + [91324] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6356), 20, + ACTIONS(4773), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -444323,25 +404557,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(6358), 30, + anon_sym_DASH_GT, + ACTIONS(4765), 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, @@ -444350,6 +404585,7 @@ 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, @@ -444363,12 +404599,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [139166] = 3, + anon_sym_DASH_GT_STAR, + [91383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7411), 20, + ACTIONS(6310), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -444383,13 +404618,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_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7409), 30, + ACTIONS(6308), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -444397,7 +404633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -444420,10 +404656,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [139224] = 3, + [91442] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7415), 20, + ACTIONS(6276), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -444433,25 +404669,24 @@ 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(7413), 30, + anon_sym_DASH_GT, + ACTIONS(6274), 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, @@ -444460,25 +404695,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_or, + anon_sym_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, - anon_sym_GT2, - [139282] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [91501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7403), 20, + ACTIONS(6401), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -444488,25 +404725,24 @@ 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(7401), 30, + anon_sym_DASH_GT, + ACTIONS(6399), 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, @@ -444515,92 +404751,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_or, + anon_sym_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, - anon_sym_GT2, - [139340] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_COLON, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(8311), 1, - anon_sym_LBRACE, - STATE(4690), 1, - sym_field_declaration_list, - STATE(4746), 1, - sym_attribute_specifier, - STATE(8266), 1, - sym_virtual_specifier, - STATE(9219), 1, - sym_base_class_clause, - ACTIONS(6118), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(6076), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6078), 37, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [139414] = 5, + anon_sym_DASH_GT_STAR, + [91560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7472), 1, - anon_sym_LBRACK, - STATE(4439), 1, - sym_new_declarator, - ACTIONS(6943), 16, + ACTIONS(6280), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -444610,24 +404781,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, - anon_sym_DASH_GT, - ACTIONS(6941), 32, + ACTIONS(6278), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -444635,84 +404809,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_or, - anon_sym_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, - [139476] = 7, + anon_sym_DASH_GT, + anon_sym_GT2, + [91619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8313), 1, - sym_identifier, - STATE(4237), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(6160), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6162), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5647), 17, - anon_sym_DOT_DOT_DOT, + ACTIONS(6656), 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_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5643), 19, + anon_sym_DASH_GT, + ACTIONS(6654), 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_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, - anon_sym_DOT_DOT_DOT_GT, - [139542] = 3, + anon_sym_DASH_GT_STAR, + [91678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7159), 20, + ACTIONS(6288), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -444722,25 +404893,24 @@ 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(7157), 30, + anon_sym_DASH_GT, + ACTIONS(6286), 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, @@ -444749,254 +404919,114 @@ 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, - anon_sym_GT2, - [139600] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5507), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym_COLON, - ACTIONS(5509), 45, - 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___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [139658] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5511), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym_COLON, - ACTIONS(5513), 45, - 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___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [139716] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5456), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym_COLON, - ACTIONS(5458), 45, - 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___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, + anon_sym_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, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [139774] = 27, + anon_sym_DASH_GT_STAR, + [91737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7093), 1, - anon_sym_EQ, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - ACTIONS(7805), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7833), 1, - anon_sym_QMARK, - ACTIONS(7835), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8264), 1, + ACTIONS(6292), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(8266), 1, anon_sym_CARET, - ACTIONS(8268), 1, anon_sym_AMP, - ACTIONS(8274), 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(6290), 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, - ACTIONS(8278), 1, + 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, - ACTIONS(8280), 1, anon_sym_xor, - ACTIONS(8282), 1, anon_sym_bitand, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7843), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8256), 2, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [91796] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6572), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8260), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8262), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8276), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8258), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(8270), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8272), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7095), 13, + 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(6570), 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, @@ -445007,11 +405037,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, - [139880] = 3, + [91855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7383), 20, + ACTIONS(6232), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -445026,13 +405066,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_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7381), 30, + ACTIONS(6230), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -445040,7 +405081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -445063,67 +405104,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [139938] = 5, + [91914] = 3, ACTIONS(3), 1, sym_comment, - STATE(4131), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7899), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4835), 12, + ACTIONS(5579), 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(5581), 32, 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, - anon_sym_GT2, - ACTIONS(4827), 33, + 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, + [91973] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6296), 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___extension__, - 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(6294), 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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, + anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [140000] = 3, + anon_sym_DASH_GT_STAR, + [92032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7217), 20, + ACTIONS(6584), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -445133,25 +405229,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(7215), 30, + anon_sym_DASH_GT, + ACTIONS(6582), 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, @@ -445160,6 +405257,7 @@ 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, @@ -445173,12 +405271,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [140058] = 3, + anon_sym_DASH_GT_STAR, + [92091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7225), 20, + ACTIONS(6711), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -445188,25 +405285,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(7223), 30, + anon_sym_DASH_GT, + ACTIONS(6709), 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, @@ -445215,6 +405313,7 @@ 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, @@ -445228,64 +405327,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [140116] = 16, + anon_sym_DASH_GT_STAR, + [92150] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5754), 1, - anon_sym___attribute__, - ACTIONS(5756), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5758), 1, - anon_sym___declspec, - ACTIONS(5760), 1, - anon_sym_virtual, - ACTIONS(5762), 1, - anon_sym_alignas, - ACTIONS(7582), 1, - sym_auto, - ACTIONS(7584), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(8315), 1, - anon_sym_SEMI, - STATE(4854), 1, - sym_decltype_auto, - STATE(3883), 2, - sym_declaration_modifiers, - aux_sym_declaration_specifiers_repeat1, - ACTIONS(7614), 5, + ACTIONS(3251), 1, anon_sym_LPAREN2, + ACTIONS(3253), 1, anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(6533), 1, + sym_identifier, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7849), 1, anon_sym_STAR, + ACTIONS(7851), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(7612), 6, + ACTIONS(7853), 1, anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - STATE(5060), 7, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, + STATE(5969), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6740), 1, + sym_scope_resolution, + STATE(7389), 1, + sym_declarator, + STATE(9168), 1, + sym_ms_based_modifier, + ACTIONS(3698), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3794), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4725), 2, sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - ACTIONS(5752), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(5750), 12, + aux_sym_type_definition_type_repeat1, + ACTIONS(3696), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -445298,10 +405405,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [140200] = 3, + [92251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 20, + ACTIONS(4306), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -445311,25 +405418,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(7325), 30, + anon_sym_DASH_GT, + ACTIONS(4302), 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, @@ -445338,6 +405446,7 @@ 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, @@ -445351,12 +405460,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [140258] = 3, + anon_sym_DASH_GT_STAR, + [92310] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7221), 20, + ACTIONS(2359), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -445366,25 +405474,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(7219), 30, + anon_sym_DASH_GT, + ACTIONS(2357), 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, @@ -445393,6 +405502,7 @@ 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, @@ -445406,12 +405516,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [140316] = 3, + anon_sym_DASH_GT_STAR, + [92369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7163), 20, + ACTIONS(6703), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -445421,25 +405530,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(7161), 30, + anon_sym_DASH_GT, + ACTIONS(6701), 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, @@ -445448,6 +405558,7 @@ 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, @@ -445461,38 +405572,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [140374] = 7, + anon_sym_DASH_GT_STAR, + [92428] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5790), 1, - sym_literal_suffix, - STATE(3865), 2, + ACTIONS(7855), 1, + sym_identifier, + STATE(3792), 3, sym_string_literal, sym_raw_string_literal, - ACTIONS(6072), 5, + aux_sym_concatenated_string_repeat1, + ACTIONS(7858), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(6074), 5, + ACTIONS(7861), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(4837), 16, + ACTIONS(5567), 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___attribute__, + anon_sym_GT_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -445500,7 +405612,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4829), 21, + sym_literal_suffix, + ACTIONS(5562), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -445511,10 +405624,7 @@ 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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -445522,132 +405632,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [140440] = 6, + anon_sym_GT2, + [92495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(8317), 1, - anon_sym_LT, - STATE(4417), 1, - sym_template_argument_list, - ACTIONS(5460), 22, - aux_sym_preproc_elif_token1, + ACTIONS(6723), 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___attribute__, - anon_sym_COLON, + 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5467), 25, + anon_sym_DASH_GT, + ACTIONS(6721), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + 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_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, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [140504] = 27, + anon_sym_DASH_GT_STAR, + [92554] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, anon_sym_LPAREN2, - ACTIONS(7061), 1, - anon_sym_EQ, - ACTIONS(7506), 1, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(6533), 1, + sym_identifier, + ACTIONS(7758), 1, anon_sym_LBRACK, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - ACTIONS(7805), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7833), 1, - anon_sym_QMARK, - ACTIONS(7835), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8264), 1, - anon_sym_PIPE, - ACTIONS(8266), 1, - anon_sym_CARET, - ACTIONS(8268), 1, + ACTIONS(7849), 1, + anon_sym_STAR, + ACTIONS(7851), 1, + anon_sym_AMP_AMP, + ACTIONS(7853), 1, anon_sym_AMP, - ACTIONS(8274), 1, - anon_sym_GT_EQ, - ACTIONS(8278), 1, - anon_sym_bitor, - ACTIONS(8280), 1, - anon_sym_xor, - ACTIONS(8282), 1, - anon_sym_bitand, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7843), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8256), 2, + STATE(5969), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6740), 1, + sym_scope_resolution, + STATE(7353), 1, + sym_declarator, + STATE(9168), 1, + sym_ms_based_modifier, + ACTIONS(3698), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4732), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(5778), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3696), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [92655] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6763), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8260), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8262), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8276), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8258), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(8270), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8272), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7065), 13, + 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(6761), 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, @@ -445658,70 +405811,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_DOT_STAR, anon_sym_DASH_GT_STAR, - [140610] = 7, + [92714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - STATE(4646), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6753), 1, - sym_template_argument_list, - ACTIONS(8320), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5957), 19, + ACTIONS(6300), 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___attribute__, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5959), 24, + anon_sym_DASH_GT, + ACTIONS(6298), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + 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_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_DOT_STAR, - anon_sym_DASH_GT, - [140676] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [92773] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6970), 20, + ACTIONS(7864), 1, + anon_sym_LT, + STATE(4049), 1, + sym_template_argument_list, + ACTIONS(6576), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -445733,7 +405897,6 @@ 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, @@ -445742,7 +405905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6968), 30, + ACTIONS(6574), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -445773,375 +405936,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [140734] = 28, + [92836] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7903), 1, - anon_sym_AMP_AMP, - ACTIONS(7905), 1, + ACTIONS(3036), 1, + anon_sym_LBRACE, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + STATE(4247), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6386), 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, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(7911), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7914), 1, - anon_sym_LBRACK, - ACTIONS(7916), 1, - anon_sym_const, - ACTIONS(7922), 1, - anon_sym_noexcept, - ACTIONS(7924), 1, - anon_sym_throw, - ACTIONS(8000), 1, - anon_sym_requires, - ACTIONS(8325), 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, - STATE(6245), 1, - sym_function_attributes_start, - STATE(6328), 1, - sym_ref_qualifier, - STATE(6746), 1, - sym_function_exception_specification, - STATE(6972), 1, - sym_trailing_return_type, - STATE(7119), 1, - sym_function_attributes_end, - STATE(7264), 1, - sym_function_postfix, - STATE(7270), 1, - sym_requires_clause, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(7997), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8322), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5288), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5823), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, - sym_noexcept, - sym_throw_specifier, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(7901), 7, + ACTIONS(6384), 31, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - ACTIONS(7907), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [140842] = 28, + 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_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + [92901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7903), 1, - anon_sym_AMP_AMP, - ACTIONS(7905), 1, + ACTIONS(6634), 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(7909), 1, - anon_sym___attribute__, - ACTIONS(7914), 1, - anon_sym_LBRACK, - ACTIONS(7916), 1, - anon_sym_const, - ACTIONS(7922), 1, - anon_sym_noexcept, - ACTIONS(7924), 1, - anon_sym_throw, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8327), 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(8329), 1, - anon_sym_requires, - STATE(6272), 1, - sym_function_attributes_start, - STATE(6353), 1, - sym_ref_qualifier, - STATE(6729), 1, - sym_function_exception_specification, - STATE(7281), 1, - sym_function_attributes_end, - STATE(7422), 1, - sym_requires_clause, - STATE(7505), 1, - sym_function_postfix, - STATE(7507), 1, - sym_trailing_return_type, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8102), 2, - anon_sym_final, - anon_sym_override, - STATE(5288), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5823), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, - sym_noexcept, - sym_throw_specifier, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(7901), 7, + ACTIONS(6632), 32, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - sym_semgrep_metavar, - ACTIONS(7907), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [140950] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4518), 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(4520), 44, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [141008] = 28, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, + [92960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7903), 1, - anon_sym_AMP_AMP, - ACTIONS(7905), 1, + ACTIONS(6592), 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(7911), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7914), 1, - anon_sym_LBRACK, - ACTIONS(7916), 1, - anon_sym_const, - ACTIONS(7922), 1, - anon_sym_noexcept, - ACTIONS(7924), 1, - anon_sym_throw, - ACTIONS(7926), 1, - anon_sym_requires, - ACTIONS(8331), 1, - anon_sym___attribute__, - ACTIONS(8334), 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, - STATE(6242), 1, - sym_function_attributes_start, - STATE(6317), 1, - sym_ref_qualifier, - STATE(6737), 1, - sym_function_exception_specification, - STATE(7066), 1, - sym_trailing_return_type, - STATE(7190), 1, - sym_function_attributes_end, - STATE(7264), 1, - sym_function_postfix, - STATE(7270), 1, - sym_requires_clause, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(6118), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5288), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5823), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, - sym_noexcept, - sym_throw_specifier, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(7901), 7, + ACTIONS(6590), 32, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - ACTIONS(7907), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [141116] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5754), 1, - anon_sym___attribute__, - ACTIONS(5756), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5758), 1, - anon_sym___declspec, - ACTIONS(5760), 1, - anon_sym_virtual, - ACTIONS(5762), 1, - anon_sym_alignas, - ACTIONS(7582), 1, - sym_auto, - ACTIONS(7584), 1, - anon_sym_decltype, - ACTIONS(8336), 1, - anon_sym_SEMI, - STATE(4854), 1, - sym_decltype_auto, - STATE(3883), 2, - sym_declaration_modifiers, - aux_sym_declaration_specifiers_repeat1, - ACTIONS(7614), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(7612), 6, - anon_sym_AMP, - anon_sym___based, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - STATE(5060), 7, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - ACTIONS(5752), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(5750), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [141200] = 4, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, + [93019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6446), 1, - sym_literal_suffix, - ACTIONS(4829), 24, + ACTIONS(6596), 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(6594), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -446160,14 +406152,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, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(4837), 25, - anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT_STAR, + [93078] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6560), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -446177,51 +406176,171 @@ 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(6558), 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_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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_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, + anon_sym_GT2, + [93137] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6607), 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_bitor, anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6605), 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_DOT, - [141260] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [93196] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3658), 6, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, anon_sym_LPAREN2, + ACTIONS(3253), 1, anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5741), 1, + sym_identifier, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7839), 1, anon_sym_STAR, + ACTIONS(7841), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3656), 44, + ACTIONS(7843), 1, anon_sym_AMP, + STATE(5969), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6747), 1, + sym_scope_resolution, + STATE(7647), 1, + sym_declarator, + STATE(9230), 1, + sym_ms_based_modifier, + ACTIONS(3698), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3809), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4703), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(3696), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -446233,25 +406352,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [141318] = 3, + [93297] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7139), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -446265,20 +406369,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(7137), 30, + anon_sym_DASH_GT, + ACTIONS(6609), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -446300,12 +406407,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [141376] = 3, + anon_sym_DASH_GT_STAR, + [93356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7307), 24, + ACTIONS(6615), 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(6613), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -446324,14 +406453,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, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(7305), 26, - anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT_STAR, + [93415] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6627), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -446346,138 +406482,22 @@ 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, - sym_literal_suffix, - [141434] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5460), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym_COLON, - ACTIONS(5467), 44, + anon_sym_DASH_GT, + ACTIONS(6625), 32, + 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, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [141494] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7006), 1, - anon_sym_EQ, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - ACTIONS(7835), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8264), 1, - anon_sym_PIPE, - ACTIONS(8266), 1, - anon_sym_CARET, - ACTIONS(8268), 1, - anon_sym_AMP, - ACTIONS(8274), 1, - anon_sym_GT_EQ, - ACTIONS(8278), 1, - anon_sym_bitor, - ACTIONS(8280), 1, - anon_sym_xor, - ACTIONS(8282), 1, - anon_sym_bitand, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7843), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8256), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8260), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8262), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8276), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8258), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(8270), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8272), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7008), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -446489,16 +406509,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, - [141596] = 5, + [93474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8338), 1, - anon_sym_LT, - STATE(4500), 1, - sym_template_argument_list, - ACTIONS(7277), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(6638), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -446509,6 +406534,7 @@ 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, @@ -446516,7 +406542,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7275), 30, + anon_sym_DASH_GT, + ACTIONS(6636), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -446545,40 +406575,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [141658] = 3, + anon_sym_DASH_GT_STAR, + [93533] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6268), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym_COLON, - ACTIONS(6270), 45, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5741), 1, + sym_identifier, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7839), 1, anon_sym_STAR, - anon_sym_PIPE_PIPE, + ACTIONS(7841), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7843), 1, + anon_sym_AMP, + STATE(5969), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6747), 1, + sym_scope_resolution, + STATE(7598), 1, + sym_declarator, + STATE(9230), 1, + sym_ms_based_modifier, + ACTIONS(3698), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4740), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(5778), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3696), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -446589,81 +406653,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [141716] = 6, + [93634] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5699), 1, - sym_primitive_type, - STATE(3257), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7378), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6019), 19, - aux_sym_preproc_elif_token1, + ACTIONS(3036), 1, + anon_sym_LBRACE, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + STATE(4273), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6397), 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(6395), 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_LT_EQ_GT, anon_sym_or, anon_sym_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, + [93699] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6318), 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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6016), 25, + anon_sym_DASH_GT, + ACTIONS(6316), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + 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_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_DOT_STAR, - anon_sym_DASH_GT, - [141780] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [93758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7253), 20, + ACTIONS(6322), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -446673,25 +406781,24 @@ 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(7251), 30, + anon_sym_DASH_GT, + ACTIONS(6320), 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, @@ -446700,25 +406807,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_or, + anon_sym_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, - anon_sym_GT2, - [141838] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [93817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5890), 20, + ACTIONS(6326), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -446728,25 +406837,24 @@ 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(5888), 30, + anon_sym_DASH_GT, + ACTIONS(6324), 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, @@ -446755,93 +406863,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_or, + anon_sym_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, - anon_sym_GT2, - [141896] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5754), 1, - anon_sym___attribute__, - ACTIONS(5756), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5758), 1, - anon_sym___declspec, - ACTIONS(5760), 1, - anon_sym_virtual, - ACTIONS(5762), 1, - anon_sym_alignas, - ACTIONS(7582), 1, sym_auto, - ACTIONS(7584), 1, anon_sym_decltype, - ACTIONS(8341), 1, - anon_sym_SEMI, - STATE(4854), 1, - sym_decltype_auto, - STATE(3883), 2, - sym_declaration_modifiers, - aux_sym_declaration_specifiers_repeat1, - ACTIONS(7614), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(7612), 6, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - STATE(5060), 7, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - ACTIONS(5752), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(5750), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [141980] = 3, + anon_sym_DASH_GT_STAR, + [93876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7261), 20, + ACTIONS(6675), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -446851,25 +406893,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(7259), 30, + anon_sym_DASH_GT, + ACTIONS(6673), 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, @@ -446878,6 +406921,7 @@ 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, @@ -446891,13 +406935,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [142038] = 3, + anon_sym_DASH_GT_STAR, + [93935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6912), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(6330), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -446911,20 +406953,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(6910), 30, + anon_sym_DASH_GT, + ACTIONS(6328), 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_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -446936,22 +406979,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_or, + anon_sym_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, - anon_sym_DOT_DOT_DOT_GT, - [142096] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [93994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7348), 20, + ACTIONS(6350), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -446966,13 +407010,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_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7346), 30, + ACTIONS(6348), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -446980,7 +407025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -447003,26 +407048,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [142154] = 10, + [94053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - ACTIONS(7528), 2, + ACTIONS(6334), 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(7843), 2, + ACTIONS(6332), 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, - ACTIONS(7089), 14, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [94112] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6338), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -447037,15 +407122,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(7091), 27, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6336), 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, @@ -447064,12 +407154,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [142226] = 3, + [94171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(6719), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -447083,20 +407177,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(7069), 30, + anon_sym_DASH_GT, + ACTIONS(6717), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -447118,70 +407215,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [142284] = 6, + anon_sym_DASH_GT_STAR, + [94230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(8343), 1, - anon_sym_LT, - STATE(4417), 1, - sym_template_argument_list, - ACTIONS(6197), 22, - aux_sym_preproc_elif_token1, + ACTIONS(6731), 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___attribute__, - anon_sym_COLON, + 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(4853), 25, + anon_sym_DASH_GT, + ACTIONS(6729), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + 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_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, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [142348] = 3, + anon_sym_DASH_GT_STAR, + [94289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7356), 20, + ACTIONS(6354), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -447196,13 +407290,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_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7354), 30, + ACTIONS(6352), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -447210,7 +407305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -447233,10 +407328,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [142406] = 3, + [94348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3078), 20, + ACTIONS(5625), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -447246,25 +407341,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(3080), 30, + anon_sym_DASH_GT, + ACTIONS(5627), 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, @@ -447273,6 +407369,7 @@ 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, @@ -447286,69 +407383,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [142464] = 5, + anon_sym_DASH_GT_STAR, + [94407] = 10, ACTIONS(3), 1, sym_comment, - STATE(4367), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6064), 20, - aux_sym_preproc_elif_token1, + ACTIONS(7141), 1, + anon_sym_LPAREN2, + ACTIONS(7790), 1, + anon_sym_LBRACK, + ACTIONS(7804), 1, + anon_sym_DOT, + STATE(4143), 1, + sym_argument_list, + STATE(4144), 1, + sym_subscript_argument_list, + ACTIONS(7802), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7806), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7027), 18, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, + ACTIONS(7029), 24, + 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_DOT_DOT_DOT_GT, + [94480] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6264), 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_LBRACK, + anon_sym_EQ, + 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(6062), 25, + ACTIONS(6262), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - 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_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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_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, - [142526] = 3, + anon_sym_GT2, + [94539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7269), 20, + ACTIONS(6691), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -447358,25 +407516,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(7267), 30, + anon_sym_DASH_GT, + ACTIONS(6689), 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, @@ -447385,6 +407544,7 @@ 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, @@ -447398,36 +407558,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [142584] = 12, + anon_sym_DASH_GT_STAR, + [94598] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8007), 1, + STATE(3935), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7708), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6088), 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(8353), 1, - anon_sym___attribute__, - ACTIONS(8356), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8359), 1, - anon_sym___declspec, - ACTIONS(8362), 1, - anon_sym_virtual, - ACTIONS(8365), 1, - anon_sym_alignas, - STATE(4294), 2, - sym_declaration_modifiers, - aux_sym_declaration_specifiers_repeat1, - STATE(4269), 7, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - ACTIONS(8350), 9, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6090), 33, + anon_sym_AMP, + anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -447436,8 +407599,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(8347), 12, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -447449,25 +407610,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(8005), 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_virtual, + anon_sym_alignas, anon_sym_template, - [142660] = 3, + anon_sym_operator, + [94661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6990), 20, + ACTIONS(6199), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -447477,25 +407630,24 @@ 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(6988), 30, + anon_sym_DASH_GT, + ACTIONS(6197), 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, @@ -447504,25 +407656,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_or, + anon_sym_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, - anon_sym_GT2, - [142718] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [94720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2183), 20, + ACTIONS(6342), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -447532,25 +407686,80 @@ 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(6340), 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, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [94779] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6346), 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(2185), 30, + anon_sym_DASH_GT, + ACTIONS(6344), 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, @@ -447559,141 +407768,164 @@ 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_or, + anon_sym_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, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [94838] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7869), 1, + anon_sym_AMP_AMP, + ACTIONS(7871), 1, + anon_sym_AMP, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(7877), 1, + anon_sym_LBRACK, + ACTIONS(7881), 1, anon_sym_DASH_GT, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(7890), 1, + anon_sym_requires, + STATE(5613), 1, + sym_function_attributes_start, + STATE(5783), 1, + sym_ref_qualifier, + STATE(6223), 1, + sym_function_exception_specification, + STATE(6799), 1, + sym_function_attributes_end, + STATE(6957), 1, + sym_trailing_return_type, + STATE(7021), 1, + sym_requires_clause, + STATE(7100), 1, + sym_function_postfix, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7883), 2, + anon_sym_final, + anon_sym_override, + STATE(4940), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5641), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(7867), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT2, - [142776] = 5, + anon_sym_try, + ACTIONS(7873), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [94947] = 3, ACTIONS(3), 1, sym_comment, - STATE(4367), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6034), 20, - aux_sym_preproc_elif_token1, + ACTIONS(4763), 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___attribute__, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6032), 25, + anon_sym_DASH_GT, + ACTIONS(4771), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + 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_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, - [142838] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8368), 1, - sym_identifier, - STATE(4248), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(6160), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6162), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5653), 17, - anon_sym_DOT_DOT_DOT, - 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(5649), 19, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [142904] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [95006] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7245), 20, + ACTIONS(2191), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -447703,25 +407935,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(7243), 30, + anon_sym_DASH_GT, + ACTIONS(2193), 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, @@ -447730,6 +407963,7 @@ 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, @@ -447743,55 +407977,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [142962] = 16, + anon_sym_DASH_GT_STAR, + [95065] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5754), 1, - anon_sym___attribute__, - ACTIONS(5756), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5758), 1, - anon_sym___declspec, - ACTIONS(5760), 1, - anon_sym_virtual, - ACTIONS(5762), 1, - anon_sym_alignas, - ACTIONS(7582), 1, - sym_auto, - ACTIONS(7584), 1, - anon_sym_decltype, - ACTIONS(8370), 1, - anon_sym_SEMI, - STATE(4854), 1, - sym_decltype_auto, - STATE(3883), 2, - sym_declaration_modifiers, - aux_sym_declaration_specifiers_repeat1, - ACTIONS(7614), 5, + STATE(3833), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7893), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5651), 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(7612), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5653), 33, anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - STATE(5060), 7, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - ACTIONS(5752), 9, - anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -447800,8 +408018,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(5750), 12, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -447813,124 +408029,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [143046] = 5, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [95128] = 3, ACTIONS(3), 1, sym_comment, - STATE(4317), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8372), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6007), 20, - aux_sym_preproc_elif_token1, + ACTIONS(2355), 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___attribute__, + 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6005), 25, + anon_sym_DASH_GT, + ACTIONS(2353), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + 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_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, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [143108] = 5, + anon_sym_DASH_GT_STAR, + [95187] = 9, ACTIONS(3), 1, sym_comment, - STATE(4318), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8374), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6050), 20, - aux_sym_preproc_elif_token1, - 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___attribute__, - 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(6048), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(7141), 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_LBRACE, + ACTIONS(7790), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(7804), 1, + anon_sym_DOT, + STATE(4143), 1, + sym_argument_list, + STATE(4144), 1, + sym_subscript_argument_list, + ACTIONS(7806), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [143170] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7277), 20, + ACTIONS(6995), 18, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -447940,26 +408119,20 @@ 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(7275), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(6997), 26, 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -447967,6 +408140,7 @@ 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, @@ -447979,13 +408153,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [143228] = 3, + anon_sym_DOT_DOT_DOT_GT, + [95258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3096), 20, + ACTIONS(4763), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -447995,25 +408167,24 @@ 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(3094), 30, + anon_sym_DASH_GT, + ACTIONS(4771), 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, @@ -448022,25 +408193,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_or, + anon_sym_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, - anon_sym_GT2, - [143286] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [95317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7203), 20, + ACTIONS(6619), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -448050,25 +408223,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(7201), 30, + anon_sym_DASH_GT, + ACTIONS(6617), 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, @@ -448077,6 +408251,7 @@ 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, @@ -448090,12 +408265,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [143344] = 3, + anon_sym_DASH_GT_STAR, + [95376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7229), 20, + ACTIONS(6485), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -448110,13 +408284,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_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7227), 30, + ACTIONS(6483), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -448124,7 +408299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -448147,69 +408322,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [143402] = 7, + [95435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8376), 1, - sym_identifier, - ACTIONS(8381), 1, - sym_primitive_type, - STATE(4280), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8379), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6026), 18, - aux_sym_preproc_elif_token1, + ACTIONS(5680), 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_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_auto, - anon_sym_decltype, - ACTIONS(6022), 25, + anon_sym_DASH_GT, + ACTIONS(3211), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + 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_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, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [143468] = 3, + anon_sym_DASH_GT_STAR, + [95494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7303), 20, + ACTIONS(6216), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -448219,25 +408391,24 @@ 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(7301), 30, + anon_sym_DASH_GT, + ACTIONS(6214), 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, @@ -448246,93 +408417,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_or, + anon_sym_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, - anon_sym_GT2, - [143526] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5754), 1, - anon_sym___attribute__, - ACTIONS(5756), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5758), 1, - anon_sym___declspec, - ACTIONS(5760), 1, - anon_sym_virtual, - ACTIONS(5762), 1, - anon_sym_alignas, - ACTIONS(7582), 1, sym_auto, - ACTIONS(7584), 1, anon_sym_decltype, - ACTIONS(8383), 1, - anon_sym_SEMI, - STATE(4854), 1, - sym_decltype_auto, - STATE(3883), 2, - sym_declaration_modifiers, - aux_sym_declaration_specifiers_repeat1, - ACTIONS(7614), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(7612), 6, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - STATE(5060), 7, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - ACTIONS(5752), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(5750), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [143610] = 3, + anon_sym_DASH_GT_STAR, + [95553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5746), 20, + ACTIONS(6220), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -448342,25 +408447,24 @@ 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(3187), 30, + anon_sym_DASH_GT, + ACTIONS(6218), 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, @@ -448369,25 +408473,44 @@ 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_or, + anon_sym_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, - anon_sym_GT2, - [143668] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [95612] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7342), 20, + ACTIONS(7141), 1, + anon_sym_LPAREN2, + ACTIONS(7790), 1, + anon_sym_LBRACK, + ACTIONS(7804), 1, + anon_sym_DOT, + STATE(4143), 1, + sym_argument_list, + STATE(4144), 1, + sym_subscript_argument_list, + ACTIONS(7802), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7806), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7005), 18, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -448397,26 +408520,20 @@ 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(7340), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(7007), 24, 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -448424,6 +408541,7 @@ 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, @@ -448434,15 +408552,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT_DOT_DOT_GT, + [95685] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7141), 1, + anon_sym_LPAREN2, + ACTIONS(7790), 1, + anon_sym_LBRACK, + ACTIONS(7804), 1, + anon_sym_DOT, + STATE(4143), 1, + sym_argument_list, + STATE(4144), 1, + sym_subscript_argument_list, + ACTIONS(7802), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7806), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [143726] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7387), 20, + ACTIONS(7011), 18, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -448452,26 +408583,20 @@ 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(7385), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(7013), 24, 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -448479,6 +408604,7 @@ 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, @@ -448489,15 +408615,68 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_GT2, - [143784] = 3, + anon_sym_DOT_DOT_DOT_GT, + [95758] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7896), 1, + anon_sym_typedef, + ACTIONS(3702), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3700), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + 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_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [95819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7391), 20, + ACTIONS(6224), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -448507,25 +408686,24 @@ 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(7389), 30, + anon_sym_DASH_GT, + ACTIONS(6222), 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, @@ -448534,25 +408712,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_or, + anon_sym_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, - anon_sym_GT2, - [143842] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [95878] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7287), 20, + ACTIONS(6489), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -448573,7 +408753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7285), 30, + ACTIONS(6487), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -448581,6 +408761,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, @@ -448604,10 +408785,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [143900] = 3, + [95937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7338), 20, + ACTIONS(6228), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -448617,25 +408798,24 @@ 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(7336), 30, + anon_sym_DASH_GT, + ACTIONS(6226), 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, @@ -448644,25 +408824,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_or, + anon_sym_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, - anon_sym_GT2, - [143958] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [95996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7213), 20, + ACTIONS(6506), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -448672,25 +408854,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(7211), 30, + anon_sym_DASH_GT, + ACTIONS(6504), 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, @@ -448699,6 +408882,7 @@ 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, @@ -448712,19 +408896,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [144016] = 5, + anon_sym_DASH_GT_STAR, + [96055] = 8, ACTIONS(3), 1, sym_comment, - STATE(4367), 1, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(7898), 1, + anon_sym_LT, + STATE(3972), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8345), 4, + STATE(4126), 1, + sym_template_argument_list, + ACTIONS(7682), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5992), 20, + ACTIONS(4763), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -448733,8 +408922,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -448745,7 +408932,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5990), 25, + ACTIONS(4771), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -448771,135 +408958,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [144078] = 5, + [96124] = 26, ACTIONS(3), 1, sym_comment, - STATE(4367), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5998), 20, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(7141), 1, + anon_sym_LPAREN2, + ACTIONS(7772), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7774), 1, + anon_sym_AMP_AMP, + ACTIONS(7776), 1, anon_sym_PIPE, + ACTIONS(7780), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, + ACTIONS(7786), 1, + anon_sym_GT_EQ, + ACTIONS(7790), 1, + anon_sym_LBRACK, + ACTIONS(7792), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7794), 1, anon_sym_or, + ACTIONS(7796), 1, anon_sym_and, + ACTIONS(7798), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(7800), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(7804), 1, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5996), 25, + STATE(4143), 1, + sym_argument_list, + STATE(4144), 1, + sym_subscript_argument_list, + ACTIONS(7128), 2, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_EQ, + ACTIONS(7768), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7778), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(7788), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + ACTIONS(7802), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7806), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [144140] = 16, + ACTIONS(7770), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7782), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7784), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7130), 15, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_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_DOT_DOT_GT, + [96229] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5754), 1, - anon_sym___attribute__, - ACTIONS(5756), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5758), 1, - anon_sym___declspec, - ACTIONS(5760), 1, - anon_sym_virtual, - ACTIONS(5762), 1, - anon_sym_alignas, - ACTIONS(7582), 1, - sym_auto, - ACTIONS(7584), 1, - anon_sym_decltype, - ACTIONS(8385), 1, - anon_sym_SEMI, - STATE(4854), 1, - sym_decltype_auto, - STATE(3883), 2, - sym_declaration_modifiers, - aux_sym_declaration_specifiers_repeat1, - ACTIONS(7614), 5, + ACTIONS(7141), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(7612), 6, - anon_sym_AMP, - anon_sym___based, + ACTIONS(7790), 1, anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - STATE(5060), 7, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - ACTIONS(5752), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(5750), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [144224] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6368), 20, + ACTIONS(7804), 1, + anon_sym_DOT, + STATE(4143), 1, + sym_argument_list, + STATE(4144), 1, + sym_subscript_argument_list, + ACTIONS(7806), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7015), 18, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -448909,26 +409064,20 @@ 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(6370), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(7017), 26, 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -448936,6 +409085,7 @@ 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, @@ -448948,21 +409098,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [144282] = 7, + anon_sym_DOT_DOT_DOT_GT, + [96300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8387), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8389), 1, - anon_sym_AMP_AMP, - ACTIONS(8391), 1, - anon_sym_or, - ACTIONS(8393), 1, - anon_sym_and, - ACTIONS(6372), 18, + ACTIONS(6719), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -448972,21 +409112,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(6374), 28, + anon_sym_DASH_GT, + ACTIONS(6717), 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, @@ -448995,6 +409140,7 @@ 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, @@ -449008,78 +409154,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [144348] = 28, + anon_sym_DASH_GT_STAR, + [96359] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7903), 1, + ACTIONS(7900), 1, + anon_sym_namespace, + ACTIONS(7185), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7905), 1, - anon_sym_AMP, - ACTIONS(7911), 1, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(7914), 1, + ACTIONS(7183), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - ACTIONS(7916), 1, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, - ACTIONS(7922), 1, - anon_sym_noexcept, - ACTIONS(7924), 1, - anon_sym_throw, - ACTIONS(8000), 1, - anon_sym_requires, - ACTIONS(8331), 1, - anon_sym___attribute__, - ACTIONS(8334), 1, - anon_sym_DASH_GT, - STATE(6269), 1, - sym_function_attributes_start, - STATE(6314), 1, - sym_ref_qualifier, - STATE(6725), 1, - sym_function_exception_specification, - STATE(6972), 1, - sym_trailing_return_type, - STATE(7206), 1, - sym_function_attributes_end, - STATE(7264), 1, - sym_function_postfix, - STATE(7270), 1, - sym_requires_clause, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7997), 2, - anon_sym_final, - anon_sym_override, - STATE(5288), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5823), 2, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + 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_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [96420] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(6533), 1, + sym_identifier, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7760), 1, + anon_sym_STAR, + ACTIONS(7762), 1, + anon_sym_AMP_AMP, + ACTIONS(7764), 1, + anon_sym_AMP, + STATE(5969), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6740), 1, + sym_scope_resolution, + STATE(7135), 1, + sym_declarator, + STATE(9783), 1, + sym_ms_based_modifier, + ACTIONS(3698), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4753), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, - sym_noexcept, - sym_throw_specifier, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(7901), 7, - anon_sym_COMMA, + STATE(5778), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3696), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [96521] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - ACTIONS(7907), 11, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7827), 1, + sym_identifier, + ACTIONS(7829), 1, + anon_sym_STAR, + ACTIONS(7831), 1, + anon_sym_AMP_AMP, + ACTIONS(7833), 1, + anon_sym_AMP, + STATE(5969), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6710), 1, + sym_scope_resolution, + STATE(7440), 1, + sym_declarator, + STATE(9538), 1, + sym_ms_based_modifier, + ACTIONS(3698), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3865), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4759), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(3696), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -449090,15 +409366,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [144456] = 5, + [96622] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8395), 1, - anon_sym_LT, - STATE(3962), 1, - sym_template_argument_list, - ACTIONS(7118), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(6660), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -449109,6 +409380,7 @@ 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, @@ -449116,7 +409388,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7116), 30, + anon_sym_DASH_GT, + ACTIONS(6658), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -449145,15 +409421,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [144518] = 4, + anon_sym_DASH_GT_STAR, + [96681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8398), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6970), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(6623), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -449167,19 +409439,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(6968), 29, + anon_sym_DASH_GT, + ACTIONS(6621), 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, @@ -449201,40 +409477,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [144578] = 3, + anon_sym_DASH_GT_STAR, + [96740] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6897), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(7902), 1, + sym_identifier, + STATE(3713), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(5474), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5476), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5554), 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_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6895), 30, + sym_literal_suffix, + ACTIONS(5550), 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_GT_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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [96807] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3732), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7904), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6156), 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(6158), 33, + anon_sym_AMP, + anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [96870] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7141), 1, + anon_sym_LPAREN2, + ACTIONS(7772), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7774), 1, + anon_sym_AMP_AMP, + ACTIONS(7776), 1, + anon_sym_PIPE, + ACTIONS(7780), 1, + anon_sym_AMP, + ACTIONS(7786), 1, + anon_sym_GT_EQ, + ACTIONS(7790), 1, + anon_sym_LBRACK, + ACTIONS(7792), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7794), 1, + anon_sym_or, + ACTIONS(7796), 1, + anon_sym_and, + ACTIONS(7798), 1, + anon_sym_bitor, + ACTIONS(7800), 1, + anon_sym_bitand, + ACTIONS(7804), 1, + anon_sym_DOT, + STATE(4143), 1, + sym_argument_list, + STATE(4144), 1, + sym_subscript_argument_list, + ACTIONS(7116), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_EQ, + ACTIONS(7768), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7778), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7788), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7802), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7806), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7770), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7782), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7784), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7118), 15, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -449249,59 +409674,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_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, anon_sym_DOT_DOT_DOT_GT, - [144636] = 11, + [96975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7843), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8258), 3, + ACTIONS(4346), 21, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7053), 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_LBRACK, anon_sym_EQ, - ACTIONS(7051), 27, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4348), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -449309,29 +409716,151 @@ 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, + anon_sym_GT2, + [97034] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7906), 1, + sym_identifier, + ACTIONS(7911), 1, + sym_primitive_type, + STATE(3864), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7909), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5969), 19, + aux_sym_preproc_elif_token1, + 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___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [144710] = 5, + anon_sym_DOT, + sym_auto, + anon_sym_decltype, + ACTIONS(5965), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [97101] = 4, ACTIONS(3), 1, sym_comment, - STATE(4292), 1, + ACTIONS(7913), 1, + anon_sym_namespace, + ACTIONS(7185), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(7183), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + 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_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [97162] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5653), 1, + sym_primitive_type, + STATE(1877), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8400), 4, + ACTIONS(5655), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5957), 20, + ACTIONS(5978), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -449352,7 +409881,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5959), 25, + ACTIONS(5975), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -449378,10 +409907,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [144772] = 3, + [97227] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7827), 1, + sym_identifier, + ACTIONS(7829), 1, + anon_sym_STAR, + ACTIONS(7831), 1, + anon_sym_AMP_AMP, + ACTIONS(7833), 1, + anon_sym_AMP, + STATE(5969), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6710), 1, + sym_scope_resolution, + STATE(7434), 1, + sym_declarator, + STATE(9538), 1, + sym_ms_based_modifier, + ACTIONS(3698), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4755), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(5778), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3696), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [97328] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(6533), 1, + sym_identifier, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7849), 1, + anon_sym_STAR, + ACTIONS(7851), 1, + anon_sym_AMP_AMP, + ACTIONS(7853), 1, + anon_sym_AMP, + STATE(5969), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6740), 1, + sym_scope_resolution, + STATE(7349), 1, + sym_declarator, + STATE(9168), 1, + sym_ms_based_modifier, + ACTIONS(3698), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3875), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4714), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(3696), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [97429] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7915), 1, + anon_sym_namespace, + ACTIONS(7185), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(7183), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + 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_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [97490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7233), 20, + ACTIONS(6580), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -449391,25 +410131,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(7231), 30, + anon_sym_DASH_GT, + ACTIONS(6578), 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, @@ -449418,6 +410159,7 @@ 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, @@ -449431,28 +410173,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [144830] = 10, + anon_sym_DASH_GT_STAR, + [97549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7843), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7053), 14, + ACTIONS(6195), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -449467,15 +410192,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(7051), 27, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6193), 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, @@ -449494,87 +410224,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [144902] = 24, + [97608] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, anon_sym_LPAREN2, - ACTIONS(7053), 1, - anon_sym_EQ, - ACTIONS(7506), 1, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(6533), 1, + sym_identifier, + ACTIONS(7758), 1, anon_sym_LBRACK, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - ACTIONS(7835), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8264), 1, - anon_sym_PIPE, - ACTIONS(8266), 1, - anon_sym_CARET, - ACTIONS(8268), 1, - anon_sym_AMP, - ACTIONS(8274), 1, - anon_sym_GT_EQ, - ACTIONS(8278), 1, - anon_sym_bitor, - ACTIONS(8280), 1, - anon_sym_xor, - ACTIONS(8282), 1, - anon_sym_bitand, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7843), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8256), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8262), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8276), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8258), 3, + ACTIONS(7821), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(8270), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8272), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7051), 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_or, - anon_sym_DASH_GT_STAR, - [145002] = 3, + ACTIONS(7823), 1, + anon_sym_AMP_AMP, + ACTIONS(7825), 1, + anon_sym_AMP, + STATE(5969), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6704), 1, + sym_scope_resolution, + STATE(7200), 1, + sym_declarator, + STATE(9963), 1, + sym_ms_based_modifier, + ACTIONS(3698), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4720), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(5778), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3696), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [97709] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6410), 20, + ACTIONS(7917), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6506), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -449589,13 +410327,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_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6412), 30, + ACTIONS(6504), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -449603,7 +410342,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -449626,14 +410364,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [145060] = 5, + [97770] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8389), 1, + ACTIONS(7919), 1, + anon_sym_namespace, + ACTIONS(7185), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(8393), 1, - anon_sym_and, - ACTIONS(6414), 19, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(7183), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + 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_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [97831] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5383), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -449643,23 +410434,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(6416), 29, + anon_sym_DASH_GT, + ACTIONS(5376), 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, @@ -449668,6 +410462,7 @@ 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, @@ -449681,12 +410476,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [145122] = 3, + anon_sym_DASH_GT_STAR, + [97890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6418), 20, + ACTIONS(6236), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -449701,13 +410495,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_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6420), 30, + ACTIONS(6234), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -449715,7 +410510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -449738,255 +410533,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [145180] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7053), 1, - anon_sym_EQ, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - ACTIONS(7835), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8264), 1, - anon_sym_PIPE, - ACTIONS(8266), 1, - anon_sym_CARET, - ACTIONS(8268), 1, - anon_sym_AMP, - ACTIONS(8274), 1, - anon_sym_GT_EQ, - ACTIONS(8278), 1, - anon_sym_bitor, - ACTIONS(8280), 1, - anon_sym_xor, - ACTIONS(8282), 1, - anon_sym_bitand, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7843), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8256), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8276), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8258), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(8270), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8272), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7051), 19, - 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_or, - anon_sym_and, - anon_sym_DASH_GT_STAR, - [145278] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - ACTIONS(7835), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8266), 1, - anon_sym_CARET, - ACTIONS(8268), 1, - anon_sym_AMP, - ACTIONS(8274), 1, - anon_sym_GT_EQ, - ACTIONS(8280), 1, - anon_sym_xor, - ACTIONS(8282), 1, - anon_sym_bitand, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - ACTIONS(7053), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7843), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8256), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8276), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8258), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(8270), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8272), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7051), 20, - 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_DASH_GT_STAR, - [145372] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - ACTIONS(7835), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8268), 1, - anon_sym_AMP, - ACTIONS(8274), 1, - anon_sym_GT_EQ, - ACTIONS(8282), 1, - anon_sym_bitand, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7843), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8256), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8276), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7053), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(8258), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(8270), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8272), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7051), 21, - 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_DASH_GT_STAR, - [145462] = 3, + [97949] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(8404), 6, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, anon_sym_LPAREN2, + ACTIONS(3253), 1, anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(6533), 1, + sym_identifier, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7849), 1, anon_sym_STAR, + ACTIONS(7851), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(8402), 44, + ACTIONS(7853), 1, anon_sym_AMP, + STATE(5969), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6740), 1, + sym_scope_resolution, + STATE(7389), 1, + sym_declarator, + STATE(9168), 1, + sym_ms_based_modifier, + ACTIONS(3698), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4725), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(5778), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3696), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -449998,73 +410610,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - 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_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [145520] = 17, + [98050] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, + ACTIONS(6691), 1, + anon_sym_EQ, + ACTIONS(7141), 1, anon_sym_LPAREN2, - ACTIONS(7506), 1, + ACTIONS(7772), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7774), 1, + anon_sym_AMP_AMP, + ACTIONS(7776), 1, + anon_sym_PIPE, + ACTIONS(7780), 1, + anon_sym_AMP, + ACTIONS(7786), 1, + anon_sym_GT_EQ, + ACTIONS(7790), 1, anon_sym_LBRACK, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - ACTIONS(7835), 1, + ACTIONS(7792), 1, anon_sym_LT_EQ_GT, - ACTIONS(8274), 1, - anon_sym_GT_EQ, - STATE(4031), 1, + ACTIONS(7794), 1, + anon_sym_or, + ACTIONS(7796), 1, + anon_sym_and, + ACTIONS(7798), 1, + anon_sym_bitor, + ACTIONS(7800), 1, + anon_sym_bitand, + ACTIONS(7804), 1, + anon_sym_DOT, + ACTIONS(7810), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7812), 1, + anon_sym_QMARK, + STATE(4143), 1, sym_argument_list, - STATE(4032), 1, + STATE(4144), 1, sym_subscript_argument_list, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7843), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8256), 2, + ACTIONS(7768), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8276), 2, + ACTIONS(7778), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7788), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8258), 3, + ACTIONS(7802), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7806), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7770), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(8270), 3, + ACTIONS(7782), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8272), 3, + ACTIONS(7784), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7053), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(7051), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, + ACTIONS(6689), 14, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -450075,55 +410687,76 @@ 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_DASH_GT_STAR, - [145606] = 9, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_DOT_DOT_DOT_GT, + [98159] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7781), 1, - anon_sym___attribute__, - ACTIONS(8406), 1, - anon_sym_LBRACE, - ACTIONS(8408), 1, - anon_sym_COLON, - STATE(4564), 1, - sym_enum_base_clause, - STATE(4779), 1, - sym_enumerator_list, - STATE(4891), 1, - sym_attribute_specifier, - ACTIONS(6227), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, anon_sym_LPAREN2, + ACTIONS(3253), 1, anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5741), 1, + sym_identifier, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7839), 1, anon_sym_STAR, + ACTIONS(7841), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6225), 32, + ACTIONS(7843), 1, anon_sym_AMP, + STATE(5969), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6747), 1, + sym_scope_resolution, + STATE(7647), 1, + sym_declarator, + STATE(9230), 1, + sym_ms_based_modifier, + ACTIONS(3698), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4703), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(5778), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3696), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -450135,18 +410768,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [145676] = 3, + [98260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7135), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(4342), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -450156,24 +410781,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(7133), 31, + ACTIONS(4344), 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_LBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -450181,7 +410809,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, @@ -450196,51 +410823,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [145734] = 9, + anon_sym_GT2, + [98319] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(7781), 1, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7869), 1, + anon_sym_AMP_AMP, + ACTIONS(7871), 1, + anon_sym_AMP, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(8406), 1, - anon_sym_LBRACE, - ACTIONS(8408), 1, - anon_sym_COLON, - STATE(4603), 1, - sym_enum_base_clause, - STATE(4760), 1, - sym_enumerator_list, - STATE(4870), 1, + ACTIONS(7877), 1, + anon_sym_LBRACK, + ACTIONS(7881), 1, + anon_sym_DASH_GT, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(7923), 1, + anon_sym_requires, + STATE(5598), 1, + sym_function_attributes_start, + STATE(5800), 1, + sym_ref_qualifier, + STATE(6239), 1, + sym_function_exception_specification, + STATE(6801), 1, + sym_function_attributes_end, + STATE(6920), 1, + sym_trailing_return_type, + STATE(7021), 1, + sym_requires_clause, + STATE(7100), 1, + sym_function_postfix, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(4940), 2, sym_attribute_specifier, - ACTIONS(6235), 12, - anon_sym_DOT_DOT_DOT, + aux_sym_type_definition_repeat1, + STATE(5641), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(7867), 8, 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(6233), 32, - anon_sym_AMP, + anon_sym_try, + ACTIONS(7873), 11, anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -450251,46 +410905,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [145804] = 3, + [98428] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6986), 20, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(7141), 1, + anon_sym_LPAREN2, + ACTIONS(7790), 1, + anon_sym_LBRACK, + ACTIONS(7804), 1, + anon_sym_DOT, + STATE(4143), 1, + sym_argument_list, + STATE(4144), 1, + sym_subscript_argument_list, + ACTIONS(7802), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7806), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7770), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7019), 15, + anon_sym_DOT_DOT_DOT, + 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_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(6984), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(7021), 24, 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -450298,6 +410957,7 @@ 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, @@ -450308,19 +410968,15 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_GT2, - [145862] = 5, + anon_sym_DOT_DOT_DOT_GT, + [98503] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8410), 1, - anon_sym_LT, - STATE(2974), 1, - sym_template_argument_list, - ACTIONS(7277), 17, + ACTIONS(5438), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(5440), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -450331,6 +410987,7 @@ 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, @@ -450338,8 +410995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7275), 31, - anon_sym_DOT_DOT_DOT, + ACTIONS(5445), 30, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -450347,7 +411003,6 @@ 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, @@ -450370,10 +411025,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [145924] = 3, + anon_sym_DOT_DOT_DOT_GT, + [98564] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 20, + ACTIONS(7141), 1, + anon_sym_LPAREN2, + ACTIONS(7790), 1, + anon_sym_LBRACK, + ACTIONS(7804), 1, + anon_sym_DOT, + STATE(4143), 1, + sym_argument_list, + STATE(4144), 1, + sym_subscript_argument_list, + ACTIONS(7802), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7806), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7019), 18, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -450388,20 +411060,16 @@ 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(6862), 30, - anon_sym_LPAREN2, + ACTIONS(7021), 24, 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, @@ -450420,43 +411088,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT_DOT_DOT_GT, + [98637] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7141), 1, + anon_sym_LPAREN2, + ACTIONS(7774), 1, + anon_sym_AMP_AMP, + ACTIONS(7776), 1, + anon_sym_PIPE, + ACTIONS(7780), 1, + anon_sym_AMP, + ACTIONS(7786), 1, + anon_sym_GT_EQ, + ACTIONS(7790), 1, + anon_sym_LBRACK, + ACTIONS(7792), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7796), 1, + anon_sym_and, + ACTIONS(7798), 1, + anon_sym_bitor, + ACTIONS(7800), 1, + anon_sym_bitand, + ACTIONS(7804), 1, + anon_sym_DOT, + STATE(4143), 1, + sym_argument_list, + STATE(4144), 1, + sym_subscript_argument_list, + ACTIONS(7768), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7778), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7788), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7802), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7806), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, + ACTIONS(7019), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_EQ, + anon_sym_or, + ACTIONS(7770), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7782), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7784), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7021), 16, + 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_DOT_DOT_GT, - [145982] = 3, + [98738] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6868), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_LPAREN2, + ACTIONS(7776), 1, + anon_sym_PIPE, + ACTIONS(7780), 1, + anon_sym_AMP, + ACTIONS(7786), 1, + anon_sym_GT_EQ, + ACTIONS(7790), 1, + anon_sym_LBRACK, + ACTIONS(7792), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7798), 1, + anon_sym_bitor, + ACTIONS(7800), 1, + anon_sym_bitand, + ACTIONS(7804), 1, + anon_sym_DOT, + STATE(4143), 1, + sym_argument_list, + STATE(4144), 1, + sym_subscript_argument_list, + ACTIONS(7768), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7778), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7788), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7802), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7806), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7770), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7782), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7784), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, + ACTIONS(7019), 4, + anon_sym_DOT_DOT_DOT, anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6866), 30, - anon_sym_LPAREN2, + ACTIONS(7021), 17, 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, @@ -450471,48 +411240,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_DOT_DOT_DOT_GT, + [98835] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7141), 1, + anon_sym_LPAREN2, + ACTIONS(7780), 1, + anon_sym_AMP, + ACTIONS(7786), 1, + anon_sym_GT_EQ, + ACTIONS(7790), 1, + anon_sym_LBRACK, + ACTIONS(7792), 1, anon_sym_LT_EQ_GT, - anon_sym_bitor, + ACTIONS(7800), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(7804), 1, + anon_sym_DOT, + STATE(4143), 1, + sym_argument_list, + STATE(4144), 1, + sym_subscript_argument_list, + ACTIONS(7768), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7778), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7788), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7802), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7806), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [146040] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7395), 20, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(7770), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7782), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7784), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7019), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(7393), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(7021), 18, 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, @@ -450520,151 +411305,71 @@ 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, - anon_sym_GT2, - [146098] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7903), 1, - anon_sym_AMP_AMP, - ACTIONS(7905), 1, - anon_sym_AMP, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(7914), 1, - anon_sym_LBRACK, - ACTIONS(7916), 1, - anon_sym_const, - ACTIONS(7922), 1, - anon_sym_noexcept, - ACTIONS(7924), 1, - anon_sym_throw, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8327), 1, - anon_sym_DASH_GT, - ACTIONS(8413), 1, - anon_sym_requires, - STATE(6262), 1, - sym_function_attributes_start, - STATE(6333), 1, - sym_ref_qualifier, - STATE(6754), 1, - sym_function_exception_specification, - STATE(7260), 1, - sym_function_attributes_end, - STATE(7422), 1, - sym_requires_clause, - STATE(7457), 1, - sym_trailing_return_type, - STATE(7505), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8118), 2, - anon_sym_final, - anon_sym_override, - STATE(5288), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5823), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, - sym_noexcept, - sym_throw_specifier, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(7901), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - sym_semgrep_metavar, - ACTIONS(7907), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [146206] = 16, + anon_sym_DOT_DOT_DOT_GT, + [98928] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, + ACTIONS(7141), 1, anon_sym_LPAREN2, - ACTIONS(7506), 1, + ACTIONS(7780), 1, + anon_sym_AMP, + ACTIONS(7786), 1, + anon_sym_GT_EQ, + ACTIONS(7790), 1, anon_sym_LBRACK, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - ACTIONS(7835), 1, + ACTIONS(7792), 1, anon_sym_LT_EQ_GT, - ACTIONS(8274), 1, - anon_sym_GT_EQ, - STATE(4031), 1, + ACTIONS(7800), 1, + anon_sym_bitand, + ACTIONS(7804), 1, + anon_sym_DOT, + STATE(4143), 1, sym_argument_list, - STATE(4032), 1, + STATE(4144), 1, sym_subscript_argument_list, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7843), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8256), 2, + ACTIONS(7768), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8276), 2, + ACTIONS(7788), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8258), 3, + ACTIONS(7802), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7806), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7770), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(8272), 3, + ACTIONS(7782), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7784), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7053), 4, + ACTIONS(7019), 7, + anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ, - ACTIONS(7051), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7021), 18, 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, @@ -450676,45 +411381,64 @@ 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [146290] = 3, + anon_sym_DOT_DOT_DOT_GT, + [99019] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6850), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_LPAREN2, + ACTIONS(7786), 1, + anon_sym_GT_EQ, + ACTIONS(7790), 1, + anon_sym_LBRACK, + ACTIONS(7792), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7804), 1, + anon_sym_DOT, + STATE(4143), 1, + sym_argument_list, + STATE(4144), 1, + sym_subscript_argument_list, + ACTIONS(7768), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7788), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7802), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7806), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7770), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7782), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7784), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, + ACTIONS(7019), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(6848), 30, - anon_sym_LPAREN2, + ACTIONS(7021), 19, 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, @@ -450729,47 +411453,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_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, anon_sym_DOT_DOT_DOT_GT, - [146348] = 3, + [99106] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6920), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_LPAREN2, + ACTIONS(7786), 1, + anon_sym_GT_EQ, + ACTIONS(7790), 1, + anon_sym_LBRACK, + ACTIONS(7792), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7804), 1, + anon_sym_DOT, + STATE(4143), 1, + sym_argument_list, + STATE(4144), 1, + sym_subscript_argument_list, + ACTIONS(7768), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7788), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7802), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7806), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7770), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7784), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, + ACTIONS(7019), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(6918), 30, - anon_sym_LPAREN2, + ACTIONS(7021), 22, 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, @@ -450784,47 +411521,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_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, anon_sym_DOT_DOT_DOT_GT, - [146406] = 14, + [99191] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, + ACTIONS(7141), 1, anon_sym_LPAREN2, - ACTIONS(7506), 1, + ACTIONS(7790), 1, anon_sym_LBRACK, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - ACTIONS(7835), 1, + ACTIONS(7792), 1, anon_sym_LT_EQ_GT, - STATE(4031), 1, + ACTIONS(7804), 1, + anon_sym_DOT, + STATE(4143), 1, sym_argument_list, - STATE(4032), 1, + STATE(4144), 1, sym_subscript_argument_list, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7843), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8256), 2, + ACTIONS(7768), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8276), 2, + ACTIONS(7788), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8258), 3, + ACTIONS(7802), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7806), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7770), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7053), 7, + ACTIONS(7019), 11, + anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -450832,10 +411565,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_EQ, - ACTIONS(7051), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7021), 23, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -450852,46 +411585,59 @@ 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [146486] = 3, + anon_sym_DOT_DOT_DOT_GT, + [99272] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7419), 20, + ACTIONS(7141), 1, + anon_sym_LPAREN2, + ACTIONS(7790), 1, + anon_sym_LBRACK, + ACTIONS(7804), 1, + anon_sym_DOT, + STATE(4143), 1, + sym_argument_list, + STATE(4144), 1, + sym_subscript_argument_list, + ACTIONS(7768), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7802), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7806), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7770), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7019), 13, + anon_sym_DOT_DOT_DOT, 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(7417), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(7021), 24, 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -450899,6 +411645,7 @@ 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, @@ -450909,44 +411656,54 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_GT2, - [146544] = 3, + anon_sym_DOT_DOT_DOT_GT, + [99349] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4837), 20, + ACTIONS(7141), 1, + anon_sym_LPAREN2, + ACTIONS(7790), 1, + anon_sym_LBRACK, + ACTIONS(7804), 1, + anon_sym_DOT, + STATE(4143), 1, + sym_argument_list, + STATE(4144), 1, + sym_subscript_argument_list, + ACTIONS(7768), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7788), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7802), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7806), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7770), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7019), 11, + anon_sym_DOT_DOT_DOT, 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(4829), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(7021), 24, 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -450954,6 +411711,7 @@ 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, @@ -450964,15 +411722,15 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_GT2, - [146602] = 3, + anon_sym_DOT_DOT_DOT_GT, + [99428] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5469), 20, + ACTIONS(7818), 1, + anon_sym_LT, + STATE(2220), 1, + sym_template_argument_list, + ACTIONS(7100), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -450984,7 +411742,6 @@ 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, @@ -450993,7 +411750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5462), 30, + ACTIONS(7098), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -451024,39 +411781,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [146660] = 3, + [99491] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7311), 20, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7001), 1, + anon_sym_DOT, + ACTIONS(7128), 1, + anon_sym_EQ, + ACTIONS(7929), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7931), 1, + anon_sym_AMP_AMP, + ACTIONS(7933), 1, + anon_sym_PIPE, + ACTIONS(7937), 1, + anon_sym_AMP, + ACTIONS(7943), 1, + anon_sym_GT_EQ, + ACTIONS(7947), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7949), 1, + anon_sym_or, + ACTIONS(7951), 1, + anon_sym_and, + ACTIONS(7953), 1, + anon_sym_bitor, + ACTIONS(7955), 1, + anon_sym_bitand, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7925), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7935), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7945), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7927), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7939), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7941), 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_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(7309), 30, + ACTIONS(7130), 16, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + 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, + [99596] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7001), 1, + anon_sym_DOT, + ACTIONS(7116), 1, + anon_sym_EQ, + ACTIONS(7929), 1, anon_sym_PIPE_PIPE, + ACTIONS(7931), 1, anon_sym_AMP_AMP, + ACTIONS(7933), 1, + anon_sym_PIPE, + ACTIONS(7937), 1, + anon_sym_AMP, + ACTIONS(7943), 1, + anon_sym_GT_EQ, + ACTIONS(7947), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7949), 1, + anon_sym_or, + ACTIONS(7951), 1, + anon_sym_and, + ACTIONS(7953), 1, + anon_sym_bitor, + ACTIONS(7955), 1, + anon_sym_bitand, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7925), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7935), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7945), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7927), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7939), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_not_eq, + ACTIONS(7941), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7118), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -451064,48 +411932,120 @@ 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, + [99701] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6691), 1, + anon_sym_EQ, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7001), 1, + anon_sym_DOT, + ACTIONS(7092), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7929), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7931), 1, + anon_sym_AMP_AMP, + ACTIONS(7933), 1, + anon_sym_PIPE, + ACTIONS(7937), 1, + anon_sym_AMP, + ACTIONS(7943), 1, + anon_sym_GT_EQ, + ACTIONS(7947), 1, anon_sym_LT_EQ_GT, + ACTIONS(7949), 1, + anon_sym_or, + ACTIONS(7951), 1, + anon_sym_and, + ACTIONS(7953), 1, anon_sym_bitor, + ACTIONS(7955), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(7957), 1, + anon_sym_QMARK, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [146718] = 12, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7925), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7935), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7945), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7927), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7939), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7941), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6689), 14, + 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, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [99810] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7506), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - STATE(4031), 1, + ACTIONS(7001), 1, + anon_sym_DOT, + STATE(2617), 1, sym_argument_list, - STATE(4032), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7528), 2, - anon_sym_DOT, + ACTIONS(7003), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7843), 2, + ACTIONS(7009), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8256), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8258), 3, + ACTIONS(7927), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7053), 9, + ACTIONS(7019), 14, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -451115,15 +412055,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(7051), 27, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7021), 25, 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, @@ -451135,46 +412077,151 @@ 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_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [146794] = 3, + [99885] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6810), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7001), 1, + anon_sym_DOT, + ACTIONS(7931), 1, + anon_sym_AMP_AMP, + ACTIONS(7933), 1, + anon_sym_PIPE, + ACTIONS(7937), 1, + anon_sym_AMP, + ACTIONS(7943), 1, + anon_sym_GT_EQ, + ACTIONS(7947), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7951), 1, + anon_sym_and, + ACTIONS(7953), 1, + anon_sym_bitor, + ACTIONS(7955), 1, + anon_sym_bitand, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7019), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(7925), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7935), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7945), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7927), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7939), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7941), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + ACTIONS(7021), 17, + 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, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [99986] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7001), 1, + anon_sym_DOT, + ACTIONS(7933), 1, + anon_sym_PIPE, + ACTIONS(7937), 1, + anon_sym_AMP, + ACTIONS(7943), 1, + anon_sym_GT_EQ, + ACTIONS(7947), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7953), 1, + anon_sym_bitor, + ACTIONS(7955), 1, + anon_sym_bitand, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7925), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7935), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7945), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, + ACTIONS(7019), 3, anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6808), 30, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(7927), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7939), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_not_eq, + ACTIONS(7941), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7021), 18, + 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, @@ -451189,48 +412236,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + [100083] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7001), 1, + anon_sym_DOT, + ACTIONS(7937), 1, + anon_sym_AMP, + ACTIONS(7943), 1, + anon_sym_GT_EQ, + ACTIONS(7947), 1, anon_sym_LT_EQ_GT, - anon_sym_bitor, + ACTIONS(7955), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [146852] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2193), 20, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7925), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7935), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7945), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7927), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7939), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7941), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7019), 4, + anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(2191), 30, + ACTIONS(7021), 19, 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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -451238,120 +412301,140 @@ 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, - anon_sym_GT2, - [146910] = 14, + [100176] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8426), 1, - anon_sym___attribute__, - ACTIONS(8429), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8432), 1, - anon_sym___declspec, - ACTIONS(8435), 1, - anon_sym_virtual, - ACTIONS(8438), 1, - anon_sym_alignas, - ACTIONS(8441), 1, - anon_sym_explicit, - STATE(4359), 2, - sym_constructor_specifiers, - aux_sym_operator_cast_definition_repeat1, - STATE(5655), 2, - sym_declaration_modifiers, - sym_explicit_function_specifier, - ACTIONS(8418), 5, + ACTIONS(5761), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7001), 1, + anon_sym_DOT, + ACTIONS(7937), 1, + anon_sym_AMP, + ACTIONS(7943), 1, + anon_sym_GT_EQ, + ACTIONS(7947), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7955), 1, + anon_sym_bitand, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7925), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7945), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7927), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7939), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7941), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7019), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7021), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(8416), 7, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - STATE(5060), 7, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - ACTIONS(8423), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(8420), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [146990] = 3, + 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, + [100267] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4837), 20, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7001), 1, + anon_sym_DOT, + ACTIONS(7943), 1, + anon_sym_GT_EQ, + ACTIONS(7947), 1, + anon_sym_LT_EQ_GT, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7925), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7945), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7927), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7939), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7941), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7019), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(4829), 30, + ACTIONS(7021), 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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -451359,67 +412442,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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [147048] = 13, + [100354] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7506), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - STATE(4031), 1, + ACTIONS(7001), 1, + anon_sym_DOT, + ACTIONS(7943), 1, + anon_sym_GT_EQ, + ACTIONS(7947), 1, + anon_sym_LT_EQ_GT, + STATE(2617), 1, sym_argument_list, - STATE(4032), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7528), 2, - anon_sym_DOT, + ACTIONS(7003), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7843), 2, + ACTIONS(7009), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8256), 2, + ACTIONS(7925), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8276), 2, + ACTIONS(7945), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8258), 3, + ACTIONS(7927), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7053), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7941), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + ACTIONS(7019), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, - ACTIONS(7051), 27, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7021), 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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -451431,54 +412514,62 @@ 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [147126] = 9, + [100439] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7506), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - STATE(4031), 1, + ACTIONS(7001), 1, + anon_sym_DOT, + ACTIONS(7947), 1, + anon_sym_LT_EQ_GT, + STATE(2617), 1, sym_argument_list, - STATE(4032), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7528), 2, - anon_sym_DOT, + ACTIONS(7003), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6998), 14, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7925), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7945), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7927), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7019), 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, - ACTIONS(6996), 29, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(7021), 24, 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, @@ -451490,49 +412581,59 @@ 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT_STAR, - [147196] = 3, + [100520] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6994), 20, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7001), 1, + anon_sym_DOT, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7925), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7927), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7019), 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_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(6992), 30, + ACTIONS(7021), 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_LBRACK, + anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -451540,6 +412641,7 @@ 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, @@ -451550,100 +412652,54 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_GT2, - [147254] = 4, + [100597] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6197), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym_COLON, - ACTIONS(4853), 44, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5761), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [147314] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7315), 20, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7001), 1, + anon_sym_DOT, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7925), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7945), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7927), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7019), 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_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(7313), 30, + ACTIONS(7021), 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_LBRACK, + anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -451651,6 +412707,7 @@ 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, @@ -451661,45 +412718,71 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_GT2, - [147372] = 4, + [100676] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8444), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(2183), 20, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7001), 1, + anon_sym_DOT, + ACTIONS(7060), 1, + anon_sym_EQ, + ACTIONS(7929), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7931), 1, + anon_sym_AMP_AMP, + ACTIONS(7933), 1, + anon_sym_PIPE, + ACTIONS(7937), 1, + anon_sym_AMP, + ACTIONS(7943), 1, + anon_sym_GT_EQ, + ACTIONS(7947), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7949), 1, + anon_sym_or, + ACTIONS(7951), 1, + anon_sym_and, + ACTIONS(7953), 1, + anon_sym_bitor, + ACTIONS(7955), 1, + anon_sym_bitand, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7925), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7935), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7945), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7927), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7939), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7941), 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_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(2185), 29, + ACTIONS(7062), 16, 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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -451707,113 +412790,277 @@ 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, + [100781] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7001), 1, + anon_sym_DOT, + ACTIONS(7092), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7132), 1, + anon_sym_EQ, + ACTIONS(7929), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7931), 1, + anon_sym_AMP_AMP, + ACTIONS(7933), 1, + anon_sym_PIPE, + ACTIONS(7937), 1, + anon_sym_AMP, + ACTIONS(7943), 1, + anon_sym_GT_EQ, + ACTIONS(7947), 1, anon_sym_LT_EQ_GT, + ACTIONS(7949), 1, + anon_sym_or, + ACTIONS(7951), 1, + anon_sym_and, + ACTIONS(7953), 1, anon_sym_bitor, + ACTIONS(7955), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(7957), 1, + anon_sym_QMARK, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [147432] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4367), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8446), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5699), 20, - aux_sym_preproc_elif_token1, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7925), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7935), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7945), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7927), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(7939), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7941), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, + ACTIONS(7134), 14, + 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, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [100890] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7001), 1, + anon_sym_DOT, + ACTIONS(7105), 1, + anon_sym_EQ, + ACTIONS(7929), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7931), 1, + anon_sym_AMP_AMP, + ACTIONS(7933), 1, + anon_sym_PIPE, + ACTIONS(7937), 1, + anon_sym_AMP, + ACTIONS(7943), 1, + anon_sym_GT_EQ, + ACTIONS(7947), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7949), 1, anon_sym_or, + ACTIONS(7951), 1, anon_sym_and, + ACTIONS(7953), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(7955), 1, anon_sym_bitand, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7925), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7935), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7945), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7927), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7939), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5697), 25, + ACTIONS(7941), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7107), 16, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + 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, + [100995] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7001), 1, + anon_sym_DOT, + ACTIONS(7090), 1, + anon_sym_EQ, + ACTIONS(7092), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7929), 1, anon_sym_PIPE_PIPE, + ACTIONS(7931), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(7933), 1, + anon_sym_PIPE, + ACTIONS(7937), 1, + anon_sym_AMP, + ACTIONS(7943), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(7947), 1, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(7949), 1, + anon_sym_or, + ACTIONS(7951), 1, + anon_sym_and, + ACTIONS(7953), 1, + anon_sym_bitor, + ACTIONS(7955), 1, + anon_sym_bitand, + ACTIONS(7957), 1, + anon_sym_QMARK, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [147494] = 10, + ACTIONS(7009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7925), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7935), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7945), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7927), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7939), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7941), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7094), 14, + 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, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [101104] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7973), 1, - anon_sym_LT, - ACTIONS(8451), 1, - anon_sym_EQ, - STATE(4040), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4683), 1, - sym_template_argument_list, - ACTIONS(8449), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(4855), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4835), 6, - anon_sym_DOT_DOT_DOT, + ACTIONS(7959), 1, + anon_sym_typedef, + ACTIONS(3702), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4827), 33, + ACTIONS(3700), 44, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -451834,17 +413081,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + 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_alignas, + anon_sym_explicit, + anon_sym_typename, anon_sym_template, anon_sym_operator, - [147566] = 3, + [101165] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4378), 20, + ACTIONS(7141), 1, + anon_sym_LPAREN2, + ACTIONS(7790), 1, + anon_sym_LBRACK, + ACTIONS(7804), 1, + anon_sym_DOT, + STATE(4143), 1, + sym_argument_list, + STATE(4144), 1, + sym_subscript_argument_list, + ACTIONS(7802), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7806), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7023), 18, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -451859,20 +413129,16 @@ 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(4380), 30, - anon_sym_LPAREN2, + ACTIONS(7025), 24, 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, @@ -451891,131 +413157,39 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DOT_DOT_DOT_GT, - [147624] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5518), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym_COLON, - ACTIONS(5525), 45, - 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___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [147682] = 25, + [101238] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7077), 1, - anon_sym_EQ, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - ACTIONS(7835), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8264), 1, - anon_sym_PIPE, - ACTIONS(8266), 1, - anon_sym_CARET, - ACTIONS(8268), 1, - anon_sym_AMP, - ACTIONS(8274), 1, - anon_sym_GT_EQ, - ACTIONS(8278), 1, - anon_sym_bitor, - ACTIONS(8280), 1, - anon_sym_xor, - ACTIONS(8282), 1, - anon_sym_bitand, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7843), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8256), 2, + ACTIONS(6016), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8260), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8262), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8276), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8258), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(8270), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8272), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7079), 15, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6018), 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, @@ -452027,11 +413201,23 @@ 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, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [147784] = 3, + [101297] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6468), 20, + ACTIONS(6244), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -452041,25 +413227,24 @@ 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(6470), 30, + anon_sym_DASH_GT, + ACTIONS(6242), 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, @@ -452068,254 +413253,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_or, + anon_sym_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, - anon_sym_GT2, - [147842] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [101356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5683), 17, + ACTIONS(5983), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5681), 33, + anon_sym_DASH_GT, + ACTIONS(5981), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + 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_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_DOT_STAR, - 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_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [147900] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5754), 1, - anon_sym___attribute__, - ACTIONS(5756), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5758), 1, - anon_sym___declspec, - ACTIONS(5760), 1, - anon_sym_virtual, - ACTIONS(5762), 1, - anon_sym_alignas, - ACTIONS(7582), 1, sym_auto, - ACTIONS(7584), 1, anon_sym_decltype, - ACTIONS(8453), 1, - anon_sym_SEMI, - STATE(4854), 1, - sym_decltype_auto, - STATE(3883), 2, - sym_declaration_modifiers, - aux_sym_declaration_specifiers_repeat1, - ACTIONS(7614), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(7612), 6, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - STATE(5060), 7, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - ACTIONS(5752), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(5750), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [147984] = 11, + anon_sym_DASH_GT_STAR, + [101415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, - anon_sym_COLON, - ACTIONS(8455), 1, - anon_sym___attribute__, - ACTIONS(8457), 1, - anon_sym_LBRACE, - STATE(5012), 1, - sym_field_declaration_list, - STATE(5230), 1, - sym_attribute_specifier, - STATE(8313), 1, - sym_virtual_specifier, - STATE(9463), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(6076), 18, + ACTIONS(5993), 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_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6078), 23, + anon_sym_DASH_GT, + ACTIONS(5991), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + 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_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, - [148058] = 16, + anon_sym_DASH_GT_STAR, + [101474] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5754), 1, - anon_sym___attribute__, - ACTIONS(5756), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5758), 1, - anon_sym___declspec, - ACTIONS(5760), 1, - anon_sym_virtual, - ACTIONS(5762), 1, - anon_sym_alignas, - ACTIONS(7582), 1, - sym_auto, - ACTIONS(7584), 1, - anon_sym_decltype, - ACTIONS(8459), 1, - anon_sym_SEMI, - STATE(4854), 1, - sym_decltype_auto, - STATE(3883), 2, - sym_declaration_modifiers, - aux_sym_declaration_specifiers_repeat1, - ACTIONS(7614), 5, + ACTIONS(3036), 1, + anon_sym_LBRACE, + ACTIONS(7961), 1, anon_sym_LPAREN2, + STATE(3852), 1, + sym_argument_list, + STATE(3935), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4369), 1, + sym_initializer_list, + ACTIONS(7708), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4771), 9, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(7612), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(4763), 33, anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - STATE(5060), 7, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - ACTIONS(5752), 9, - anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -452324,8 +413426,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(5750), 12, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -452337,26 +413437,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [148142] = 10, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [101545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7843), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7143), 14, + ACTIONS(6252), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -452371,15 +413462,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(7141), 27, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6250), 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, @@ -452398,82 +413494,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [148214] = 3, + [101604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5675), 17, + ACTIONS(6699), 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_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5673), 33, + anon_sym_DASH_GT, + ACTIONS(6697), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + 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_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, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [148272] = 10, + anon_sym_DASH_GT_STAR, + [101663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7843), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7112), 14, + ACTIONS(6256), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -452488,15 +413574,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(7110), 27, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6254), 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, @@ -452515,66 +413606,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [148344] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4380), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4378), 44, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [148402] = 3, + anon_sym_DASH_GT_STAR, + [101722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4261), 20, + ACTIONS(6260), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -452584,25 +413625,24 @@ 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(4259), 30, + anon_sym_DASH_GT, + ACTIONS(6258), 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, @@ -452611,25 +413651,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_or, + anon_sym_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, - anon_sym_GT2, - [148460] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [101781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7407), 20, + ACTIONS(5621), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -452639,25 +413681,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(7405), 30, + anon_sym_DASH_GT, + ACTIONS(5623), 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, @@ -452666,6 +413709,7 @@ 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, @@ -452679,13 +413723,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [148518] = 3, + anon_sym_DASH_GT_STAR, + [101840] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4382), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(6175), 1, + anon_sym_EQ, + ACTIONS(6177), 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(4773), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -452699,34 +413757,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(4384), 30, + ACTIONS(4765), 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_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_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -452735,14 +413782,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [148576] = 4, + [101903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5525), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5527), 16, + ACTIONS(5591), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -452757,9 +413800,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(5520), 32, + ACTIONS(5593), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -452781,82 +413827,51 @@ 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_or, - anon_sym_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, - [148636] = 25, + [101962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7123), 1, - anon_sym_EQ, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - ACTIONS(7835), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8264), 1, - anon_sym_PIPE, - ACTIONS(8266), 1, - anon_sym_CARET, - ACTIONS(8268), 1, - anon_sym_AMP, - ACTIONS(8274), 1, - anon_sym_GT_EQ, - ACTIONS(8278), 1, - anon_sym_bitor, - ACTIONS(8280), 1, - anon_sym_xor, - ACTIONS(8282), 1, - anon_sym_bitand, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7843), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8256), 2, + ACTIONS(6707), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8260), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8262), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8276), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8258), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(8270), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8272), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7125), 15, + 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(6705), 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, @@ -452868,24 +413883,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, - [148738] = 9, + [102021] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, - anon_sym_LPAREN2, - ACTIONS(7506), 1, - anon_sym_LBRACK, - ACTIONS(7671), 1, - anon_sym_DOT_STAR, - STATE(4031), 1, - sym_argument_list, - STATE(4032), 1, - sym_subscript_argument_list, - ACTIONS(7528), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7057), 14, + ACTIONS(6642), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -452900,15 +413912,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(7059), 29, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6640), 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, @@ -452920,20 +413939,136 @@ 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_or, - anon_sym_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, - [148808] = 3, + [102080] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3731), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7964), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6183), 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(6185), 33, + anon_sym_AMP, + anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [102143] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7966), 1, + anon_sym_typedef, + ACTIONS(3702), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3700), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + 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_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [102204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6472), 20, + ACTIONS(6564), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -452943,25 +414078,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(6474), 30, + anon_sym_DASH_GT, + ACTIONS(6562), 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, @@ -452970,6 +414106,7 @@ 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, @@ -452983,78 +414120,288 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [148866] = 28, + anon_sym_DASH_GT_STAR, + [102263] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7903), 1, + ACTIONS(7968), 1, + anon_sym_typedef, + ACTIONS(3702), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7905), 1, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3700), 44, anon_sym_AMP, - ACTIONS(7909), 1, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(7911), 1, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + 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_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [102324] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7970), 1, + anon_sym_typedef, + ACTIONS(3702), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(7914), 1, + ACTIONS(3700), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - ACTIONS(7916), 1, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, - ACTIONS(7922), 1, - anon_sym_noexcept, - ACTIONS(7924), 1, - anon_sym_throw, - ACTIONS(7926), 1, - anon_sym_requires, - ACTIONS(8325), 1, - anon_sym_DASH_GT, - STATE(6179), 1, - sym_function_attributes_start, - STATE(6337), 1, - sym_ref_qualifier, - STATE(6745), 1, - sym_function_exception_specification, - STATE(7066), 1, - sym_trailing_return_type, - STATE(7145), 1, - sym_function_attributes_end, - STATE(7264), 1, - sym_function_postfix, - STATE(7270), 1, - sym_requires_clause, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(6118), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8322), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5288), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5823), 2, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + 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_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [102385] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(6533), 1, + sym_identifier, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7760), 1, + anon_sym_STAR, + ACTIONS(7762), 1, + anon_sym_AMP_AMP, + ACTIONS(7764), 1, + anon_sym_AMP, + STATE(5969), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6740), 1, + sym_scope_resolution, + STATE(7137), 1, + sym_declarator, + STATE(9783), 1, + sym_ms_based_modifier, + ACTIONS(3698), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3854), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4709), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, - sym_noexcept, - sym_throw_specifier, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(7901), 7, - anon_sym_COMMA, + ACTIONS(3696), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [102486] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7972), 1, + anon_sym_typedef, + ACTIONS(3702), 6, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - ACTIONS(7907), 11, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3700), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + 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_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [102547] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7974), 1, + anon_sym_typedef, + ACTIONS(3702), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3700), 44, + anon_sym_AMP, anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -453065,17 +414412,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [148974] = 3, + 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_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [102608] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7207), 6, + ACTIONS(7976), 1, + anon_sym_typedef, + ACTIONS(3702), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(7205), 44, + ACTIONS(3700), 44, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -453120,11 +414483,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typename, anon_sym_template, anon_sym_operator, - [149032] = 3, + [102669] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7075), 20, + STATE(3833), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7814), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6128), 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(6130), 33, + anon_sym_AMP, + anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [102732] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7978), 1, + anon_sym_LPAREN2, + ACTIONS(2191), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453138,20 +414560,22 @@ 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(7073), 30, - anon_sym_LPAREN2, + anon_sym_DASH_GT, + ACTIONS(2193), 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_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -453173,12 +414597,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [149090] = 3, + anon_sym_DASH_GT_STAR, + [102793] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7360), 20, + ACTIONS(6152), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(4773), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453188,26 +414615,78 @@ 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(7358), 30, + anon_sym_DASH_GT, + ACTIONS(4765), 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, + [102854] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6310), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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(6308), 30, + anon_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, @@ -453215,6 +414694,7 @@ 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, @@ -453229,11 +414709,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [149148] = 3, + anon_sym_DOT_DOT_DOT_GT, + [102912] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6482), 20, + ACTIONS(5633), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453254,7 +414734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6484), 30, + ACTIONS(5635), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -453285,17 +414765,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [149206] = 3, + [102970] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7673), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7980), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7984), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7982), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7019), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(7021), 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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_GT_STAR, + [103048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4384), 6, + ACTIONS(4344), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4382), 44, + ACTIONS(4342), 44, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -453340,10 +414885,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typename, anon_sym_template, anon_sym_operator, - [149264] = 3, + [103106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7334), 20, + ACTIONS(6232), 20, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453353,26 +414899,24 @@ 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(7332), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6230), 30, 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, @@ -453380,6 +414924,7 @@ 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, @@ -453394,32 +414939,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [149322] = 3, + anon_sym_DOT_DOT_DOT_GT, + [103164] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5458), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(7816), 1, + anon_sym_LT, + ACTIONS(7986), 1, + anon_sym_LBRACK, + STATE(3723), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4664), 1, + sym_template_argument_list, + ACTIONS(4786), 3, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4791), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4771), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, 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(5456), 36, + ACTIONS(4763), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -453439,21 +414995,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, 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_alignas, anon_sym_template, anon_sym_operator, - [149379] = 3, + [103236] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6508), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6759), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453463,22 +415015,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(6510), 30, + ACTIONS(6757), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -453487,7 +415042,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, @@ -453502,41 +415056,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [149436] = 3, + anon_sym_GT2, + [103294] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5525), 13, - anon_sym_DOT_DOT_DOT, + STATE(2848), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6147), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(7989), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6145), 41, 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(5518), 36, - anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_static, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -453547,33 +415103,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - sym_identifier, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [149493] = 8, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [103356] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, + ACTIONS(4784), 1, anon_sym_COLON_COLON, - ACTIONS(8461), 1, + ACTIONS(7898), 1, anon_sym_LT, - STATE(4737), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5191), 1, + STATE(4126), 1, sym_template_argument_list, - ACTIONS(8463), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4827), 17, + ACTIONS(5938), 22, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -453581,6 +415132,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -453591,12 +415144,15 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(4835), 24, + anon_sym_final, + anon_sym_override, + ACTIONS(4789), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -453616,10 +415172,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [149560] = 3, + [103420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 18, + ACTIONS(4306), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453629,25 +415185,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(5479), 31, + ACTIONS(4302), 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_LBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -453655,7 +415212,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, @@ -453670,11 +415226,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [149617] = 3, + anon_sym_GT2, + [103478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7419), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6675), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453684,22 +415240,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(7417), 30, + ACTIONS(6673), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -453708,7 +415267,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, @@ -453723,231 +415281,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [149674] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(4853), 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_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_GT2, - ACTIONS(6197), 36, - anon_sym_AMP, - anon_sym___extension__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_alignas, - anon_sym_template, - anon_sym_operator, - [149733] = 3, + [103536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5502), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(6656), 20, + anon_sym_DASH, + anon_sym_PLUS, 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(5500), 36, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_alignas, - anon_sym_template, - anon_sym_operator, - [149790] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7973), 1, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - STATE(4683), 1, - sym_template_argument_list, - ACTIONS(5467), 12, + 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(6654), 30, 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(5460), 34, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [149853] = 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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, + anon_sym_GT2, + [103594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4853), 13, + ACTIONS(4773), 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(4765), 30, 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_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_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - ACTIONS(6197), 36, - anon_sym_AMP, - anon_sym___extension__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_alignas, - anon_sym_template, - anon_sym_operator, - [149910] = 3, + [103652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7305), 23, + ACTIONS(5625), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453957,30 +415405,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_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(7307), 26, + ACTIONS(5627), 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_QMARK, anon_sym_STAR_EQ, @@ -453989,20 +415432,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_DOT_STAR, - anon_sym_DASH_GT_STAR, - [149967] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [103710] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7399), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(5579), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -454012,22 +415460,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(7397), 30, + ACTIONS(5581), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -454036,7 +415487,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, @@ -454051,12 +415501,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [150024] = 3, + anon_sym_GT2, + [103768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7315), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6646), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -454066,22 +415515,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(7313), 30, + ACTIONS(6644), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -454090,7 +415542,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, @@ -454105,12 +415556,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [150081] = 3, + anon_sym_GT2, + [103826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7367), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6584), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -454120,22 +415570,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(7365), 30, + ACTIONS(6582), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -454144,7 +415597,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, @@ -454159,12 +415611,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [150138] = 3, + anon_sym_GT2, + [103884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7273), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6711), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -454174,22 +415625,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(7271), 30, + ACTIONS(6709), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -454198,7 +415652,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, @@ -454213,30 +415666,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [150195] = 8, + anon_sym_GT2, + [103942] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6691), 1, + anon_sym_EQ, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + ACTIONS(7635), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7663), 1, + anon_sym_QMARK, + ACTIONS(7665), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7995), 1, + anon_sym_PIPE, + ACTIONS(7997), 1, + anon_sym_CARET, + ACTIONS(7999), 1, + anon_sym_AMP, + ACTIONS(8005), 1, + anon_sym_GT_EQ, + ACTIONS(8007), 1, + anon_sym_bitor, + ACTIONS(8009), 1, + anon_sym_xor, + ACTIONS(8011), 1, + anon_sym_bitand, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7673), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7980), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7984), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7991), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7993), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7982), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8001), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8003), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6689), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_GT_STAR, + [104048] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, + ACTIONS(4784), 1, anon_sym_COLON_COLON, - ACTIONS(8140), 1, + ACTIONS(7816), 1, anon_sym_LT, - ACTIONS(8451), 1, - anon_sym_EQ, - STATE(4397), 1, + STATE(4119), 1, sym_template_argument_list, - ACTIONS(8449), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(4853), 7, + ACTIONS(5381), 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_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(6197), 36, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5374), 36, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -454273,11 +415804,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [150262] = 3, + [104112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7371), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6703), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -454287,22 +415817,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(7369), 30, + ACTIONS(6701), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -454311,7 +415844,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, @@ -454326,12 +415858,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [150319] = 3, + anon_sym_GT2, + [104170] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7159), 19, + ACTIONS(8013), 1, + anon_sym_LBRACK, + STATE(4189), 1, + sym_new_declarator, + ACTIONS(6454), 18, + aux_sym_preproc_elif_token1, + 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___attribute__, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6452), 30, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [104232] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2189), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -454341,22 +415929,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(7157), 30, + ACTIONS(2187), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -454365,7 +415956,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, @@ -454380,12 +415970,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [150376] = 3, + anon_sym_GT2, + [104290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7257), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(4773), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -454395,22 +415984,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(7255), 30, + ACTIONS(4765), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -454419,7 +416011,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, @@ -454434,12 +416025,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [150433] = 3, + anon_sym_GT2, + [104348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7061), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6607), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -454449,22 +416039,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(7065), 30, + ACTIONS(6605), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -454473,7 +416066,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, @@ -454488,12 +416080,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [150490] = 3, + anon_sym_GT2, + [104406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7203), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6627), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -454503,22 +416094,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(7201), 30, + ACTIONS(6625), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -454527,7 +416121,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, @@ -454542,12 +416135,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + anon_sym_GT2, + [104464] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8015), 1, + sym_identifier, + STATE(3964), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(8018), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(8021), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5567), 17, + anon_sym_DOT_DOT_DOT, + 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(5562), 19, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [150547] = 3, + [104530] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7229), 19, + ACTIONS(5929), 1, + sym_literal_suffix, + STATE(3581), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(6179), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6181), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4773), 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___attribute__, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(4765), 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_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [104596] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6798), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -454557,22 +416267,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(7227), 30, + ACTIONS(6796), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -454581,7 +416294,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, @@ -454596,11 +416308,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [150604] = 3, + anon_sym_GT2, + [104654] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5518), 23, + STATE(3980), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8024), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6130), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -454611,7 +416330,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___attribute__, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -454622,9 +416340,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5525), 26, + ACTIONS(6128), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -454642,7 +416358,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -454651,91 +416366,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [150661] = 3, + [104716] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5509), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6968), 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_LBRACE, + ACTIONS(7060), 1, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5507), 36, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(7296), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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_alignas, - anon_sym_template, - anon_sym_operator, - [150718] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6345), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + ACTIONS(7665), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7995), 1, anon_sym_PIPE, + ACTIONS(7997), 1, anon_sym_CARET, + ACTIONS(7999), 1, anon_sym_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, + ACTIONS(8005), 1, + anon_sym_GT_EQ, + ACTIONS(8007), 1, + anon_sym_bitor, + ACTIONS(8009), 1, anon_sym_xor, + ACTIONS(8011), 1, + anon_sym_bitand, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + ACTIONS(7318), 2, anon_sym_DOT, - ACTIONS(6347), 30, - anon_sym_LPAREN2, + anon_sym_DASH_GT, + ACTIONS(7673), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7980), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7984), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7991), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7993), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7982), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8001), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_not_eq, + ACTIONS(8003), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7062), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -454747,23 +416442,11 @@ 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, - anon_sym_DOT_DOT_DOT_GT, - [150775] = 3, + anon_sym_DASH_GT_STAR, + [104818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7352), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6576), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -454773,22 +416456,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(7350), 30, + ACTIONS(6574), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -454797,7 +416483,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, @@ -454812,31 +416497,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [150832] = 3, + anon_sym_GT2, + [104876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5513), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8028), 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(5511), 36, + ACTIONS(8026), 44, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -454857,77 +416539,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, + 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_alignas, + anon_sym_explicit, + anon_sym_typename, anon_sym_template, anon_sym_operator, - [150889] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6156), 1, - anon_sym_EQ, - ACTIONS(6158), 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(4829), 17, - anon_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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(4837), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - [150950] = 3, + [104934] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2183), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(5629), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -454937,22 +416566,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(2185), 30, + ACTIONS(5631), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -454961,7 +416593,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, @@ -454976,96 +416607,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [151007] = 3, + anon_sym_GT2, + [104992] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6970), 19, - anon_sym_DOT_DOT_DOT, + STATE(3980), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8024), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6147), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_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___attribute__, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6968), 30, - anon_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_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [151064] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(6406), 1, + anon_sym_DOT, + sym_identifier, sym_auto, - ACTIONS(6408), 1, anon_sym_decltype, - ACTIONS(8465), 1, - anon_sym_LPAREN2, - ACTIONS(8467), 1, - anon_sym_LBRACK, - STATE(2612), 1, - sym_decltype_auto, - STATE(4856), 1, - sym_new_declarator, - STATE(5236), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6318), 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(6316), 31, - ts_builtin_sym_end, + ACTIONS(6145), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -455076,57 +416657,84 @@ 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___attribute__, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, + 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_DOT_STAR, anon_sym_DASH_GT, - [151137] = 3, + [105054] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5498), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(7869), 1, + anon_sym_AMP_AMP, + ACTIONS(7871), 1, + anon_sym_AMP, + ACTIONS(7877), 1, + anon_sym_LBRACK, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8032), 1, + anon_sym___attribute__, + ACTIONS(8035), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8038), 1, + anon_sym_const, + ACTIONS(8040), 1, + anon_sym_DASH_GT, + ACTIONS(8042), 1, + anon_sym_requires, + STATE(5708), 1, + sym_function_attributes_start, + STATE(5856), 1, + sym_ref_qualifier, + STATE(6253), 1, + sym_function_exception_specification, + STATE(6677), 1, + sym_function_attributes_end, + STATE(6751), 1, + sym_trailing_return_type, + STATE(6851), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4937), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5586), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(7867), 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(5496), 36, - anon_sym_AMP, + anon_sym_COLON, + anon_sym_try, + ACTIONS(8030), 11, anon_sym___extension__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -455137,34 +416745,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, 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_alignas, - anon_sym_template, - anon_sym_operator, - [151194] = 6, + [105162] = 10, ACTIONS(3), 1, sym_comment, - STATE(1753), 1, - sym_fold_operator, - ACTIONS(2183), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2185), 8, - anon_sym_DOT_DOT_DOT, - anon_sym_RPAREN, + ACTIONS(6968), 1, anon_sym_LPAREN2, + ACTIONS(7296), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7673), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 14, + ACTIONS(7005), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -455179,13 +416779,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(7532), 24, + ACTIONS(7007), 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, @@ -455196,126 +416799,136 @@ 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_DOT_STAR, anon_sym_DASH_GT_STAR, - [151257] = 3, + [105234] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7383), 19, - anon_sym_DOT_DOT_DOT, + STATE(3991), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8044), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6185), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_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___attribute__, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(7381), 30, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6183), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_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, - anon_sym_DOT_DOT_DOT_GT, - [151314] = 3, + [105296] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5481), 18, + STATE(3992), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8046), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6158), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_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___attribute__, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5483), 31, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6156), 25, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + 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_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_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, - [151371] = 3, + [105358] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6360), 19, + ACTIONS(8048), 1, + anon_sym_LT, + STATE(4232), 1, + sym_template_argument_list, + ACTIONS(6576), 18, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -455327,7 +416940,6 @@ 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, @@ -455335,7 +416947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6362), 30, + ACTIONS(6574), 30, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -455366,67 +416978,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [151428] = 3, + [105420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7265), 19, + ACTIONS(6018), 13, anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(7263), 30, + 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_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6016), 37, + anon_sym_AMP, + anon_sym___extension__, + 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_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, - anon_sym_DOT_DOT_DOT_GT, - [151485] = 4, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_alignas, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [105478] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8469), 1, + ACTIONS(6968), 1, anon_sym_LPAREN2, - ACTIONS(2183), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7673), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7011), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -455441,17 +417067,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(2185), 29, + ACTIONS(7013), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -455463,77 +417087,75 @@ 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_or, + anon_sym_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, - anon_sym_DOT_DOT_DOT_GT, - [151544] = 3, + anon_sym_DASH_GT_STAR, + [105550] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 18, + STATE(3980), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8051), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5653), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_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___attribute__, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5502), 31, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5651), 25, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_DOT_STAR, anon_sym_DASH_GT, - [151601] = 3, + [105612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7303), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6556), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -455543,22 +417165,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(7301), 30, + ACTIONS(6554), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -455567,7 +417192,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, @@ -455582,11 +417206,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [151658] = 3, + anon_sym_GT2, + [105670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7217), 19, + ACTIONS(4346), 20, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -455601,19 +417225,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(7215), 30, + ACTIONS(4348), 30, anon_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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -455637,11 +417262,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [151715] = 3, + [105728] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7225), 19, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(7816), 1, + anon_sym_LT, + STATE(4119), 1, + sym_template_argument_list, + ACTIONS(4789), 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_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5938), 36, + anon_sym_AMP, + anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_alignas, + anon_sym_template, + anon_sym_operator, + [105792] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2848), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6056), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(7989), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6054), 41, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [105854] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5680), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -455651,22 +417390,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(7223), 30, + ACTIONS(3211), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -455675,7 +417417,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, @@ -455690,11 +417431,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [151772] = 3, + anon_sym_GT2, + [105912] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 18, + ACTIONS(8054), 1, + anon_sym_AMP_AMP, + ACTIONS(8056), 1, + anon_sym_and, + ACTIONS(6753), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -455704,25 +417449,24 @@ 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(5498), 31, + ACTIONS(6755), 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_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -455730,7 +417474,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, @@ -455745,10 +417488,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [151829] = 3, + anon_sym_GT2, + [105974] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5469), 19, + ACTIONS(8058), 1, + anon_sym_LT, + STATE(3881), 1, + sym_template_argument_list, + ACTIONS(7100), 18, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -455760,7 +417508,6 @@ 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, @@ -455768,7 +417515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5462), 30, + ACTIONS(7098), 30, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -455799,10 +417546,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [151886] = 3, + [106036] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3984), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6185), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(8061), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6183), 41, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [106098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7135), 16, + ACTIONS(5383), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -455812,24 +417616,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(7133), 33, + ACTIONS(5376), 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_QMARK, anon_sym_STAR_EQ, @@ -455838,31 +417643,90 @@ 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_or, - anon_sym_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, - [151943] = 6, + anon_sym_DASH_GT, + anon_sym_GT2, + [106156] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7845), 1, - anon_sym_LT, - STATE(2518), 1, - sym_template_argument_list, - ACTIONS(6197), 9, + STATE(3998), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6158), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(8063), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6156), 41, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [106218] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3980), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8024), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6056), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -455870,13 +417734,25 @@ 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___attribute__, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4853), 37, - ts_builtin_sym_end, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6054), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -455888,49 +417764,26 @@ 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___attribute__, 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_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [152006] = 11, + [106280] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(6406), 1, - sym_auto, - ACTIONS(6408), 1, - anon_sym_decltype, - ACTIONS(8465), 1, - anon_sym_LPAREN2, - ACTIONS(8467), 1, - anon_sym_LBRACK, - STATE(2612), 1, - sym_decltype_auto, - STATE(4848), 1, - sym_new_declarator, - STATE(5207), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6314), 9, + STATE(3980), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8024), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6066), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -455939,12 +417792,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6312), 31, - ts_builtin_sym_end, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6064), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -455955,54 +417821,141 @@ 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___attribute__, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, + 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_DOT_STAR, anon_sym_DASH_GT, - [152079] = 3, + [106342] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7245), 19, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(7816), 1, + anon_sym_LT, + ACTIONS(8067), 1, + anon_sym_EQ, + STATE(3723), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4119), 1, + sym_template_argument_list, + ACTIONS(8065), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(4791), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4771), 6, anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + ACTIONS(4763), 33, + anon_sym_AMP, + anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [106414] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7128), 1, + anon_sym_EQ, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + ACTIONS(7665), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7995), 1, anon_sym_PIPE, + ACTIONS(7997), 1, anon_sym_CARET, + ACTIONS(7999), 1, anon_sym_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, + ACTIONS(8005), 1, + anon_sym_GT_EQ, + ACTIONS(8007), 1, + anon_sym_bitor, + ACTIONS(8009), 1, anon_sym_xor, + ACTIONS(8011), 1, + anon_sym_bitand, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + ACTIONS(7318), 2, anon_sym_DOT, - ACTIONS(7243), 30, - anon_sym_LPAREN2, + anon_sym_DASH_GT, + ACTIONS(7673), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7980), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7984), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7991), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7993), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7982), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8001), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_not_eq, + ACTIONS(8003), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7130), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -456014,23 +417967,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_GT_STAR, + [106516] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3967), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8069), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6090), 20, + aux_sym_preproc_elif_token1, + 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___attribute__, + 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(6088), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [152136] = 3, + [106578] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7015), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456045,18 +418056,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(7393), 30, - anon_sym_LPAREN2, + ACTIONS(7017), 29, + 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, @@ -456068,53 +418076,109 @@ 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_or, + anon_sym_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, - anon_sym_DOT_DOT_DOT_GT, - [152193] = 4, + anon_sym_DASH_GT_STAR, + [106648] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5467), 12, - anon_sym_DOT_DOT_DOT, + STATE(4017), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6090), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(8071), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6088), 41, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, + anon_sym___declspec, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, anon_sym_GT2, - ACTIONS(5460), 36, + anon_sym_try, + anon_sym_requires, + [106710] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2848), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6066), 4, anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(7989), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6064), 41, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_static, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -456125,21 +418189,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - sym_identifier, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [152252] = 3, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [106772] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(5607), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456149,22 +418213,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(7297), 30, + ACTIONS(5609), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -456173,7 +418240,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, @@ -456188,12 +418254,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [152309] = 3, + anon_sym_GT2, + [106830] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7261), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(5747), 1, + anon_sym___attribute__, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5753), 1, + anon_sym_virtual, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7360), 1, + sym_auto, + ACTIONS(7362), 1, + anon_sym_decltype, + ACTIONS(8073), 1, + anon_sym_SEMI, + STATE(3704), 1, + sym_decltype_auto, + STATE(3323), 2, + sym_declaration_modifiers, + aux_sym_declaration_specifiers_repeat1, + ACTIONS(7358), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + ACTIONS(7356), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + STATE(4535), 7, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + ACTIONS(5745), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(5743), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [106914] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6719), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456203,22 +418336,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(7259), 30, + ACTIONS(6717), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -456227,7 +418363,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, @@ -456242,12 +418377,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [152366] = 3, + anon_sym_GT2, + [106972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(2191), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456257,22 +418391,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(7325), 30, + ACTIONS(2193), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -456281,7 +418418,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, @@ -456296,12 +418432,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [152423] = 3, + anon_sym_GT2, + [107030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7334), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(5611), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456311,22 +418446,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(7332), 30, + ACTIONS(5613), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -456335,7 +418473,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, @@ -456350,12 +418487,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [152480] = 3, + anon_sym_GT2, + [107088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6990), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(2355), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456365,22 +418501,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(6988), 30, + ACTIONS(2353), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -456389,7 +418528,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, @@ -456404,46 +418542,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [152537] = 6, + anon_sym_GT2, + [107146] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7973), 1, - anon_sym_LT, - STATE(4683), 1, - sym_template_argument_list, - ACTIONS(4853), 12, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7132), 1, + anon_sym_EQ, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + ACTIONS(7635), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7663), 1, + anon_sym_QMARK, + ACTIONS(7665), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7995), 1, + anon_sym_PIPE, + ACTIONS(7997), 1, + anon_sym_CARET, + ACTIONS(7999), 1, + anon_sym_AMP, + ACTIONS(8005), 1, + anon_sym_GT_EQ, + ACTIONS(8007), 1, + anon_sym_bitor, + ACTIONS(8009), 1, + anon_sym_xor, + ACTIONS(8011), 1, + anon_sym_bitand, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7673), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7980), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7984), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7991), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7993), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7982), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8001), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8003), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7134), 13, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_GT_STAR, + [107252] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7869), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7871), 1, + anon_sym_AMP, + ACTIONS(7877), 1, + anon_sym_LBRACK, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8032), 1, + anon_sym___attribute__, + ACTIONS(8035), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(8038), 1, + anon_sym_const, + ACTIONS(8040), 1, + anon_sym_DASH_GT, + ACTIONS(8078), 1, + anon_sym_requires, + STATE(5702), 1, + sym_function_attributes_start, + STATE(5862), 1, + sym_ref_qualifier, + STATE(6261), 1, + sym_function_exception_specification, + STATE(6692), 1, + sym_function_attributes_end, + STATE(6763), 1, + sym_trailing_return_type, + STATE(6851), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8075), 2, + anon_sym_final, + anon_sym_override, + STATE(4937), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5586), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(7867), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6197), 34, - anon_sym_AMP, + anon_sym_COLON, + anon_sym_try, + ACTIONS(8030), 11, anon_sym___extension__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -456454,274 +418702,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [152600] = 3, + [107360] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7342), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(5702), 1, + anon_sym_COLON, + ACTIONS(8081), 1, + anon_sym___attribute__, + ACTIONS(8083), 1, + anon_sym_LBRACE, + STATE(4623), 1, + sym_field_declaration_list, + STATE(4784), 1, + sym_attribute_specifier, + STATE(7922), 1, + sym_virtual_specifier, + STATE(8712), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5696), 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_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(7340), 30, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5694), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, + anon_sym_STAR, + 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_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, - anon_sym_DOT_DOT_DOT_GT, - [152657] = 3, + [107434] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7356), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(5470), 2, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(7354), 30, - anon_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_GT_GT_EQ, + ACTIONS(5472), 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_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_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, - anon_sym_DOT_DOT_DOT_GT, - [152714] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(6406), 1, - sym_auto, - ACTIONS(6408), 1, - anon_sym_decltype, - ACTIONS(8465), 1, - anon_sym_LPAREN2, - ACTIONS(8467), 1, - anon_sym_LBRACK, - STATE(2612), 1, - sym_decltype_auto, - STATE(4914), 1, - sym_new_declarator, - STATE(5217), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6303), 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(6301), 31, - ts_builtin_sym_end, + ACTIONS(4765), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_LPAREN2, 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___attribute__, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, + 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_DOT_STAR, anon_sym_DASH_GT, - [152787] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4458), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8471), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6064), 19, - aux_sym_preproc_elif_token1, + anon_sym_GT2, + ACTIONS(4773), 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_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(6062), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - 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, + [107496] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5702), 1, + anon_sym_COLON, + ACTIONS(7550), 1, anon_sym_LBRACE, + ACTIONS(7875), 1, + anon_sym___attribute__, + STATE(3617), 1, + sym_attribute_specifier, + STATE(4474), 1, + sym_field_declaration_list, + STATE(8159), 1, + sym_virtual_specifier, + STATE(9053), 1, + sym_base_class_clause, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5696), 4, + anon_sym_AMP, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [152848] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5483), 13, - anon_sym_DOT_DOT_DOT, + anon_sym___inline, + anon_sym_const, + ACTIONS(5694), 37, 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(5481), 36, - anon_sym_AMP, anon_sym___extension__, 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___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -456732,20 +418876,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - sym_identifier, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [152905] = 3, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [107570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3078), 19, + ACTIONS(6236), 20, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -456760,19 +418903,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(3080), 30, + ACTIONS(6234), 30, anon_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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -456796,11 +418940,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [152962] = 3, + [107628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7387), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(2359), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456810,22 +418953,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(7385), 30, + ACTIONS(2357), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -456834,7 +418980,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, @@ -456849,27 +418994,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [153019] = 5, + anon_sym_GT2, + [107686] = 3, ACTIONS(3), 1, sym_comment, - STATE(4458), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8473), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5699), 19, - aux_sym_preproc_elif_token1, + ACTIONS(7199), 24, + anon_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, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(7197), 26, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_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, @@ -456877,46 +419049,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5697), 25, + sym_literal_suffix, + [107744] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6564), 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(6562), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, + anon_sym_STAR_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_DOT_STAR, anon_sym_DASH_GT, - [153080] = 5, + anon_sym_GT2, + [107802] = 6, ACTIONS(3), 1, sym_comment, - STATE(4458), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8471), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6034), 19, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(8085), 1, + anon_sym_LT, + STATE(4126), 1, + sym_template_argument_list, + ACTIONS(5374), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -456925,7 +419123,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -456936,7 +419135,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6032), 25, + anon_sym_final, + anon_sym_override, + ACTIONS(5381), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -456962,16 +419163,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [153141] = 3, + [107866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7391), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(8090), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(8088), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + 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_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [107924] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7673), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7982), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7019), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -456981,18 +419253,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(7389), 30, - anon_sym_LPAREN2, + ACTIONS(7021), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -457004,52 +419273,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_or, + anon_sym_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, - anon_sym_DOT_DOT_DOT_GT, - [153198] = 3, + anon_sym_DASH_GT_STAR, + [107998] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5467), 13, - anon_sym_DOT_DOT_DOT, + STATE(2848), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6130), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(7989), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6128), 41, 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(5460), 36, - anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_static, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -457060,133 +419327,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - sym_identifier, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [153255] = 5, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [108060] = 3, ACTIONS(3), 1, sym_comment, - STATE(4474), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8476), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6007), 19, - aux_sym_preproc_elif_token1, + ACTIONS(6506), 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_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6005), 25, + ACTIONS(6504), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, + anon_sym_STAR_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_DOT_STAR, anon_sym_DASH_GT, - [153316] = 5, + anon_sym_GT2, + [108118] = 10, ACTIONS(3), 1, sym_comment, - STATE(4475), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8478), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6050), 19, - aux_sym_preproc_elif_token1, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7673), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7019), 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_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(6048), 25, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(7021), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - 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, - [153377] = 3, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_GT_STAR, + [108190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6468), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6691), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457196,22 +419468,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(6470), 30, + ACTIONS(6689), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -457220,7 +419495,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, @@ -457235,254 +419509,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [153434] = 3, + anon_sym_GT2, + [108248] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 23, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7105), 1, + anon_sym_EQ, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + ACTIONS(7665), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7995), 1, anon_sym_PIPE, + ACTIONS(7997), 1, + anon_sym_CARET, + ACTIONS(7999), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, + ACTIONS(8005), 1, + anon_sym_GT_EQ, + ACTIONS(8007), 1, anon_sym_bitor, + ACTIONS(8009), 1, anon_sym_xor, + ACTIONS(8011), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + ACTIONS(7318), 2, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5479), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_DASH_GT, + ACTIONS(7673), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [153491] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5481), 23, - aux_sym_preproc_elif_token1, + ACTIONS(7980), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7984), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7991), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7993), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7982), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(8001), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8003), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - 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, - ACTIONS(5483), 26, + ACTIONS(7107), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + 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_DASH_GT_STAR, + [108350] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6968), 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_COLON_COLON, - anon_sym_LBRACE, + ACTIONS(7019), 1, + anon_sym_EQ, + ACTIONS(7296), 1, anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + ACTIONS(7665), 1, anon_sym_LT_EQ_GT, + ACTIONS(7995), 1, + anon_sym_PIPE, + ACTIONS(7997), 1, + anon_sym_CARET, + ACTIONS(7999), 1, + anon_sym_AMP, + ACTIONS(8005), 1, + anon_sym_GT_EQ, + ACTIONS(8007), 1, + anon_sym_bitor, + ACTIONS(8009), 1, + anon_sym_xor, + ACTIONS(8011), 1, + anon_sym_bitand, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7673), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [153548] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5500), 23, - aux_sym_preproc_elif_token1, + ACTIONS(7980), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7984), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7993), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7982), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(8001), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8003), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - 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, - ACTIONS(5502), 26, + ACTIONS(7021), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [153605] = 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_or, + anon_sym_DASH_GT_STAR, + [108450] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 23, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7019), 1, + anon_sym_EQ, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + ACTIONS(7665), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7995), 1, anon_sym_PIPE, + ACTIONS(7997), 1, + anon_sym_CARET, + ACTIONS(7999), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, + ACTIONS(8005), 1, + anon_sym_GT_EQ, + ACTIONS(8007), 1, anon_sym_bitor, + ACTIONS(8009), 1, anon_sym_xor, + ACTIONS(8011), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + ACTIONS(7318), 2, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5498), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_DASH_GT, + ACTIONS(7673), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [153662] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3096), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(7980), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7984), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7982), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(8001), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8003), 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, - ACTIONS(3094), 30, - anon_sym_LPAREN2, + ACTIONS(7021), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -457494,23 +419735,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, - anon_sym_DOT_DOT_DOT_GT, - [153719] = 3, + anon_sym_or, + anon_sym_and, + anon_sym_DASH_GT_STAR, + [108548] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5507), 23, - aux_sym_preproc_elif_token1, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + STATE(1833), 1, + sym_template_argument_list, + STATE(4296), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8092), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6090), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -457520,7 +419762,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___attribute__, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -457531,15 +419772,12 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5509), 26, + ACTIONS(6088), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -457551,7 +419789,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -457560,119 +419797,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [153776] = 3, + [108614] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5511), 23, - aux_sym_preproc_elif_token1, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + ACTIONS(7665), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7997), 1, + anon_sym_CARET, + ACTIONS(7999), 1, + anon_sym_AMP, + ACTIONS(8005), 1, + anon_sym_GT_EQ, + ACTIONS(8009), 1, + anon_sym_xor, + ACTIONS(8011), 1, + anon_sym_bitand, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + ACTIONS(7019), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7673), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7980), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7984), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7982), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(8001), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8003), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - 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, - ACTIONS(5513), 26, + ACTIONS(7021), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [153833] = 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_DASH_GT_STAR, + [108708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5456), 23, - aux_sym_preproc_elif_token1, + ACTIONS(6580), 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___attribute__, - anon_sym_COLON, + 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5458), 26, + ACTIONS(6578), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - 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_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_DOT_STAR, anon_sym_DASH_GT, - [153890] = 3, + anon_sym_GT2, + [108766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4261), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6660), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457682,22 +419938,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(4259), 30, + ACTIONS(6658), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -457706,7 +419965,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, @@ -457721,123 +419979,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [153947] = 5, + anon_sym_GT2, + [108824] = 3, ACTIONS(3), 1, sym_comment, - STATE(4458), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8471), 4, + ACTIONS(7185), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(7183), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5992), 19, - aux_sym_preproc_elif_token1, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + 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_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [108882] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6699), 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_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5990), 25, + ACTIONS(6697), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, + anon_sym_STAR_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_DOT_STAR, anon_sym_DASH_GT, - [154008] = 5, + anon_sym_GT2, + [108940] = 3, ACTIONS(3), 1, sym_comment, - STATE(4458), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8471), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5998), 19, - aux_sym_preproc_elif_token1, + ACTIONS(6781), 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_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5996), 25, + ACTIONS(6779), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, + anon_sym_STAR_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_DOT_STAR, anon_sym_DASH_GT, - [154069] = 3, + anon_sym_GT2, + [108998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7221), 19, + ACTIONS(6560), 20, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -457852,19 +420163,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(7219), 30, + ACTIONS(6558), 30, anon_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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -457888,37 +420200,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [154126] = 3, + [109056] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(7287), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7116), 1, + anon_sym_EQ, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + ACTIONS(7665), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7995), 1, anon_sym_PIPE, + ACTIONS(7997), 1, anon_sym_CARET, + ACTIONS(7999), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(8005), 1, + anon_sym_GT_EQ, + ACTIONS(8007), 1, + anon_sym_bitor, + ACTIONS(8009), 1, + anon_sym_xor, + ACTIONS(8011), 1, + anon_sym_bitand, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7673), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7980), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7984), 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(7285), 30, - anon_sym_LPAREN2, + ACTIONS(7991), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7993), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7982), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8001), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_not_eq, + ACTIONS(8003), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7118), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -457930,23 +420276,11 @@ 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, - anon_sym_DOT_DOT_DOT_GT, - [154183] = 3, + anon_sym_DASH_GT_STAR, + [109158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7338), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6512), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457956,22 +420290,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(7336), 30, + ACTIONS(6510), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -457980,7 +420317,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, @@ -457995,12 +420331,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [154240] = 3, + anon_sym_GT2, + [109216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7407), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6603), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458010,22 +420345,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(7405), 30, + ACTIONS(6601), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -458034,7 +420372,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, @@ -458049,12 +420386,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [154297] = 3, + anon_sym_GT2, + [109274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7163), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(5591), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458064,22 +420400,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(7161), 30, + ACTIONS(5593), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -458088,7 +420427,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, @@ -458103,12 +420441,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [154354] = 3, + anon_sym_GT2, + [109332] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7213), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6707), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458118,22 +420455,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(7211), 30, + ACTIONS(6705), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -458142,7 +420482,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, @@ -458157,65 +420496,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [154411] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5671), 18, - 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___attribute__, - 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_literal_suffix, - ACTIONS(5669), 31, - 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_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - 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_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [154468] = 3, + anon_sym_GT2, + [109390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6472), 19, + ACTIONS(6354), 20, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -458230,19 +420515,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(6474), 30, + ACTIONS(6352), 30, anon_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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -458266,87 +420552,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [154525] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5699), 1, - sym_primitive_type, - STATE(4509), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8480), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6019), 19, - 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___attribute__, - 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(6016), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [154588] = 3, + [109448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5479), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4424), 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(5477), 36, + ACTIONS(4426), 44, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -458367,21 +420593,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, + 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_alignas, + anon_sym_explicit, + anon_sym_typename, anon_sym_template, anon_sym_operator, - [154645] = 3, + [109506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6496), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(5993), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458391,22 +420620,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(6498), 30, + ACTIONS(5991), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -458415,7 +420647,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, @@ -458430,37 +420661,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [154702] = 3, + anon_sym_GT2, + [109564] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3656), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(3658), 45, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8101), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(8097), 4, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(8099), 5, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_explicit, + anon_sym_operator, + ACTIONS(8104), 11, + 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_typename, + ACTIONS(8094), 28, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_static, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -458471,24 +420715,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, + sym_identifier, + anon_sym_decltype, anon_sym_virtual, anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - sym_semgrep_metavar, - [154759] = 3, + anon_sym_template, + [109628] = 16, + 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(5753), 1, + anon_sym_virtual, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7360), 1, + sym_auto, + ACTIONS(7362), 1, + anon_sym_decltype, + ACTIONS(8106), 1, + anon_sym_SEMI, + STATE(3704), 1, + sym_decltype_auto, + STATE(3323), 2, + sym_declaration_modifiers, + aux_sym_declaration_specifiers_repeat1, + ACTIONS(7358), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + ACTIONS(7356), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + STATE(4535), 7, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + ACTIONS(5745), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(5743), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [109712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4837), 19, + ACTIONS(6495), 20, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -458503,19 +420806,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(4829), 30, + ACTIONS(6493), 30, anon_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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -458539,45 +420843,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [154816] = 4, + [109770] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(6136), 1, - sym_literal_suffix, - ACTIONS(4837), 22, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + ACTIONS(7665), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7999), 1, + anon_sym_AMP, + ACTIONS(8005), 1, + anon_sym_GT_EQ, + ACTIONS(8011), 1, + anon_sym_bitand, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7673), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7980), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7984), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7019), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(7982), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(8001), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8003), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(7021), 21, + 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_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_DASH_GT_STAR, + [109860] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + ACTIONS(7665), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8005), 1, + anon_sym_GT_EQ, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + ACTIONS(7318), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4829), 26, + ACTIONS(7673), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7980), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7984), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7982), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8001), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8003), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7019), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(7021), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -458589,16 +420977,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_DOT_STAR, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_DASH_GT_STAR, - [154875] = 3, + [109946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7360), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6572), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458608,22 +420996,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(7358), 30, + ACTIONS(6570), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -458632,7 +421023,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, @@ -458647,93 +421037,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [154932] = 4, + anon_sym_GT2, + [110004] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5460), 23, - aux_sym_preproc_elif_token1, + ACTIONS(6124), 1, + anon_sym_EQ, + ACTIONS(6126), 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(4773), 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___attribute__, - anon_sym_COLON, + anon_sym_LT_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, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5467), 25, + ACTIONS(4765), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - 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_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_DOT_STAR, anon_sym_DASH_GT, - [154991] = 3, + [110066] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7311), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + ACTIONS(7665), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8005), 1, + anon_sym_GT_EQ, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7673), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7980), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7984), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7982), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(8003), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7019), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, + ACTIONS(7021), 25, + 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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_DOT, - ACTIONS(7309), 30, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_GT_STAR, + [110150] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6968), 1, anon_sym_LPAREN2, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + ACTIONS(7665), 1, + anon_sym_LT_EQ_GT, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7673), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7980), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7984), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7982), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7019), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(7021), 26, + 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, @@ -458745,23 +421222,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_or, + anon_sym_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, - anon_sym_DOT_DOT_DOT_GT, - [155048] = 3, + anon_sym_DASH_GT_STAR, + [110230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7323), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6552), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458771,22 +421242,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(7321), 30, + ACTIONS(6550), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -458795,7 +421269,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, @@ -458810,17 +421283,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [155105] = 3, + anon_sym_GT2, + [110288] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6410), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(5747), 1, + anon_sym___attribute__, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5753), 1, + anon_sym_virtual, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7360), 1, + sym_auto, + ACTIONS(7362), 1, + anon_sym_decltype, + ACTIONS(8108), 1, + anon_sym_SEMI, + STATE(3704), 1, + sym_decltype_auto, + STATE(3323), 2, + sym_declaration_modifiers, + aux_sym_declaration_specifiers_repeat1, + ACTIONS(7358), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + ACTIONS(7356), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + STATE(4535), 7, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + ACTIONS(5745), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(5743), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [110372] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7673), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7980), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7982), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7019), 9, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -458830,18 +421388,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(6412), 30, - anon_sym_LPAREN2, + ACTIONS(7021), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -458853,23 +421408,18 @@ 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_or, + anon_sym_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, - anon_sym_DOT_DOT_DOT_GT, - [155162] = 3, + anon_sym_DASH_GT_STAR, + [110448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6349), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6634), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458879,22 +421429,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(6351), 30, + ACTIONS(6632), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -458903,7 +421456,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, @@ -458918,12 +421470,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [155219] = 3, + anon_sym_GT2, + [110506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6356), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(5599), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458933,22 +421484,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(6358), 30, + ACTIONS(5601), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -458957,7 +421511,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, @@ -458972,12 +421525,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [155276] = 3, + anon_sym_GT2, + [110564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6482), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(5617), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458987,22 +421539,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(6484), 30, + ACTIONS(5619), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -459011,7 +421566,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, @@ -459026,32 +421580,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [155333] = 3, + anon_sym_GT2, + [110622] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6270), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5747), 1, + anon_sym___attribute__, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5753), 1, + anon_sym_virtual, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7360), 1, + sym_auto, + ACTIONS(7362), 1, + anon_sym_decltype, + ACTIONS(8110), 1, + anon_sym_SEMI, + STATE(3704), 1, + sym_decltype_auto, + STATE(3323), 2, + sym_declaration_modifiers, + aux_sym_declaration_specifiers_repeat1, + ACTIONS(7358), 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(6268), 36, + ACTIONS(7356), 6, anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + STATE(4535), 7, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + ACTIONS(5745), 9, + anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -459060,6 +421636,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + ACTIONS(5743), 12, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -459071,75 +421649,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, 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_alignas, - anon_sym_template, - anon_sym_operator, - [155390] = 3, + [110706] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6268), 23, - aux_sym_preproc_elif_token1, - 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___attribute__, - 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, - ACTIONS(6270), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(8112), 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_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [155447] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6986), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(2191), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -459149,22 +421664,24 @@ 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(6984), 30, - anon_sym_LPAREN2, + ACTIONS(2193), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -459173,7 +421690,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, @@ -459188,21 +421704,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [155504] = 3, + anon_sym_GT2, + [110766] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6197), 4, + STATE(4017), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4763), 4, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, - ACTIONS(4853), 45, + ACTIONS(8071), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4771), 41, 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___extension__, @@ -459229,9 +421751,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, anon_sym_asm, anon_sym___asm__, sym_auto, @@ -459243,68 +421762,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [155561] = 7, + [110828] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8483), 1, - sym_identifier, - ACTIONS(8488), 1, - sym_primitive_type, - STATE(4484), 1, + STATE(3935), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8486), 4, + ACTIONS(7708), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6026), 18, - 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___attribute__, - 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(6022), 24, + ACTIONS(4771), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + 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_LBRACE, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4763), 33, + anon_sym_AMP, + anon_sym___extension__, + 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_DOT_STAR, - anon_sym_DASH_GT, - [155626] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [110890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5507), 18, + ACTIONS(6719), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -459314,25 +421832,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(5509), 31, + ACTIONS(6717), 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_LBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -459340,7 +421859,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, @@ -459355,65 +421873,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [155683] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5679), 18, - 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___attribute__, - 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_literal_suffix, - ACTIONS(5677), 31, - 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_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - 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_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [155740] = 3, + anon_sym_GT2, + [110948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6731), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -459423,22 +421887,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(2191), 30, + ACTIONS(6729), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -459447,7 +421914,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, @@ -459462,12 +421928,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [155797] = 3, + anon_sym_GT2, + [111006] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7319), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6735), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -459477,22 +421942,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(7317), 30, + ACTIONS(6733), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -459501,7 +421969,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, @@ -459516,11 +421983,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [155854] = 3, + anon_sym_GT2, + [111064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5511), 18, + ACTIONS(6623), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -459530,25 +421997,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(5513), 31, + ACTIONS(6621), 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_LBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -459556,7 +422024,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, @@ -459571,128 +422038,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [155911] = 11, + anon_sym_GT2, + [111122] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(6406), 1, - sym_auto, - ACTIONS(6408), 1, - anon_sym_decltype, - ACTIONS(8465), 1, - anon_sym_LPAREN2, - ACTIONS(8467), 1, + ACTIONS(7350), 1, anon_sym_LBRACK, - STATE(2612), 1, - sym_decltype_auto, - STATE(4841), 1, + STATE(4136), 1, sym_new_declarator, - STATE(5235), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6293), 9, + ACTIONS(6454), 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_DOT, - ACTIONS(6289), 31, - ts_builtin_sym_end, - 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - [155984] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4509), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8480), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5699), 20, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - sym_primitive_type, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5697), 24, + anon_sym_DASH_GT, + ACTIONS(6452), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + 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_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_DOT_STAR, - anon_sym_DASH_GT, - [156045] = 3, + anon_sym_DASH_GT_STAR, + [111184] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5456), 18, + ACTIONS(6741), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -459702,25 +422109,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(5458), 31, + ACTIONS(6739), 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_LBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -459728,7 +422136,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, @@ -459743,36 +422150,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [156102] = 3, + anon_sym_GT2, + [111242] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5460), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(5467), 45, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5747), 1, + anon_sym___attribute__, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5753), 1, + anon_sym_virtual, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7360), 1, + sym_auto, + ACTIONS(7362), 1, + anon_sym_decltype, + ACTIONS(8114), 1, + anon_sym_SEMI, + STATE(3704), 1, + sym_decltype_auto, + STATE(3323), 2, + sym_declaration_modifiers, + aux_sym_declaration_specifiers_repeat1, + ACTIONS(7358), 5, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, + anon_sym_COLON_COLON, + ACTIONS(7356), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + STATE(4535), 7, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + ACTIONS(5745), 9, anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_static, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + ACTIONS(5743), 12, + anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -459783,25 +422219,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [156159] = 3, + [111326] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6500), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6715), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -459811,22 +422232,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(6502), 30, + ACTIONS(6713), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -459835,7 +422259,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, @@ -459850,12 +422273,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [156216] = 3, + anon_sym_GT2, + [111384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6504), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6767), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -459865,22 +422287,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(6506), 30, + ACTIONS(6765), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -459889,7 +422314,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, @@ -459904,67 +422328,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [156273] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6197), 23, - aux_sym_preproc_elif_token1, - 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___attribute__, - 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, - ACTIONS(4853), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [156332] = 3, + anon_sym_GT2, + [111442] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6368), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6771), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -459974,22 +422342,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(6370), 30, + ACTIONS(6769), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -459998,7 +422369,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, @@ -460013,73 +422383,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [156389] = 3, + anon_sym_GT2, + [111500] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5683), 18, - 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(8126), 1, anon_sym___attribute__, - 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_literal_suffix, - ACTIONS(5681), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8129), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8132), 1, + anon_sym___declspec, + ACTIONS(8135), 1, + anon_sym_virtual, + ACTIONS(8138), 1, + anon_sym_alignas, + ACTIONS(8141), 1, + anon_sym_explicit, + STATE(4069), 2, + sym_constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(4979), 2, + sym_declaration_modifiers, + sym_explicit_function_specifier, + ACTIONS(8118), 5, 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, + ACTIONS(8116), 7, + anon_sym_AMP, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - 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_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [156446] = 7, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + STATE(4535), 7, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + ACTIONS(8123), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(8120), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [111580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8490), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8492), 1, - anon_sym_AMP_AMP, - ACTIONS(8494), 1, - anon_sym_or, - ACTIONS(8496), 1, - anon_sym_and, - ACTIONS(6372), 17, + ACTIONS(6489), 19, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -460095,13 +422469,18 @@ 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(6374), 28, + ACTIONS(6487), 31, anon_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, @@ -460126,66 +422505,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [156511] = 5, + [111638] = 3, ACTIONS(3), 1, sym_comment, - STATE(4454), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8498), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4827), 19, - aux_sym_preproc_elif_token1, + ACTIONS(5603), 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_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(4835), 25, + ACTIONS(5605), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, + anon_sym_STAR_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_DOT_STAR, anon_sym_DASH_GT, - [156572] = 3, + anon_sym_GT2, + [111696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5675), 18, + ACTIONS(5664), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -460194,7 +422572,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -460204,9 +422581,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_identifier, sym_literal_suffix, - ACTIONS(5673), 31, + ACTIONS(5662), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -460218,7 +422598,6 @@ 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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -460236,23 +422615,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [156629] = 9, + [111754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7969), 1, - anon_sym___attribute__, - ACTIONS(8500), 1, - anon_sym_LBRACE, - ACTIONS(8502), 1, - anon_sym_COLON, - STATE(4680), 1, - sym_enum_base_clause, - STATE(4793), 1, - sym_enumerator_list, - STATE(5072), 1, - sym_attribute_specifier, - ACTIONS(6225), 19, - aux_sym_preproc_elif_token1, + ACTIONS(5668), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -460269,15 +422635,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6227), 24, + sym_literal_suffix, + ACTIONS(5666), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -460296,11 +422660,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [156698] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [111812] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7269), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(5438), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(5440), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -460315,11 +422691,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(7267), 30, + anon_sym_DASH_GT, + ACTIONS(5445), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -460338,22 +422715,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_or, + anon_sym_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, - anon_sym_DOT_DOT_DOT_GT, - [156755] = 3, + anon_sym_DASH_GT_STAR, + [111872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7411), 19, + ACTIONS(4342), 20, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -460368,19 +422744,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(7409), 30, + ACTIONS(4344), 30, anon_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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -460404,15 +422781,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [156812] = 5, + [111930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8492), 1, - anon_sym_AMP_AMP, - ACTIONS(8496), 1, - anon_sym_and, - ACTIONS(6414), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(6723), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -460422,20 +422794,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(6416), 29, + ACTIONS(6721), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -460444,7 +422821,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, @@ -460459,12 +422835,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [156873] = 3, + anon_sym_GT2, + [111988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4837), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6763), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -460474,22 +422849,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(4829), 30, + ACTIONS(6761), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -460498,7 +422876,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, @@ -460513,12 +422890,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [156930] = 3, + anon_sym_GT2, + [112046] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6418), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6749), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -460528,22 +422904,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(6420), 30, + ACTIONS(6747), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -460552,7 +422931,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, @@ -460567,12 +422945,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [156987] = 3, + anon_sym_GT2, + [112104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7277), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6592), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -460582,22 +422959,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(7275), 30, + ACTIONS(6590), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -460606,7 +422986,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, @@ -460621,12 +423000,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [157044] = 3, + anon_sym_GT2, + [112162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7257), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6596), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -460636,22 +423014,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(7255), 30, + ACTIONS(6594), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -460660,7 +423041,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, @@ -460675,92 +423055,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [157101] = 3, + anon_sym_GT2, + [112220] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(7415), 19, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7090), 1, + anon_sym_EQ, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + ACTIONS(7635), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7663), 1, + anon_sym_QMARK, + ACTIONS(7665), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7995), 1, + anon_sym_PIPE, + ACTIONS(7997), 1, + anon_sym_CARET, + ACTIONS(7999), 1, + anon_sym_AMP, + ACTIONS(8005), 1, + anon_sym_GT_EQ, + ACTIONS(8007), 1, + anon_sym_bitor, + ACTIONS(8009), 1, + anon_sym_xor, + ACTIONS(8011), 1, + anon_sym_bitand, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7673), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7980), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7984), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7991), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7993), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7982), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(8001), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8003), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7094), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_GT_STAR, + [112326] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5649), 17, + 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_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, - ACTIONS(7413), 30, + sym_identifier, + sym_literal_suffix, + ACTIONS(5647), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, + anon_sym_STAR, + 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_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, - anon_sym_DOT_DOT_DOT_GT, - [157158] = 7, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [112384] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6287), 1, - sym_literal_suffix, - STATE(4196), 2, + ACTIONS(8144), 1, + sym_identifier, + STATE(3964), 3, sym_string_literal, sym_raw_string_literal, - ACTIONS(5544), 5, + aux_sym_concatenated_string_repeat1, + ACTIONS(6440), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(5546), 5, + ACTIONS(6442), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(4837), 17, + ACTIONS(5560), 17, + anon_sym_DOT_DOT_DOT, 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, @@ -460768,9 +423228,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4829), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + sym_literal_suffix, + ACTIONS(5556), 19, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -460779,7 +423238,9 @@ 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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -460787,12 +423248,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [157223] = 3, + anon_sym_DOT_DOT_DOT_GT, + [112450] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7233), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -460802,22 +423262,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(7231), 30, + ACTIONS(6609), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -460826,7 +423289,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, @@ -460841,24 +423303,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [157280] = 9, + anon_sym_GT2, + [112508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7969), 1, - anon_sym___attribute__, - ACTIONS(8500), 1, - anon_sym_LBRACE, - ACTIONS(8502), 1, - anon_sym_COLON, - STATE(4684), 1, - sym_enum_base_clause, - STATE(4804), 1, - sym_enumerator_list, - STATE(5011), 1, - sym_attribute_specifier, - ACTIONS(6233), 19, - aux_sym_preproc_elif_token1, + ACTIONS(5660), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -460875,15 +423324,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6235), 24, + sym_literal_suffix, + ACTIONS(5658), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -460902,11 +423349,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [157349] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [112566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6994), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6615), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -460916,22 +423372,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(6992), 30, + ACTIONS(6613), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -460940,7 +423399,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, @@ -460955,12 +423413,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [157406] = 3, + anon_sym_GT2, + [112624] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5746), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6638), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -460970,22 +423427,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(3187), 30, + ACTIONS(6636), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -460994,7 +423454,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, @@ -461009,65 +423468,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [157463] = 3, + anon_sym_GT2, + [112682] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5890), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(7560), 1, + anon_sym_COLON_COLON, + ACTIONS(8152), 1, + anon_sym___attribute__, + ACTIONS(8155), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8158), 1, + anon_sym___declspec, + ACTIONS(8161), 1, + anon_sym_virtual, + ACTIONS(8164), 1, + anon_sym_alignas, + STATE(4088), 2, + sym_declaration_modifiers, + aux_sym_declaration_specifiers_repeat1, + STATE(4038), 7, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + ACTIONS(8149), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(8146), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(7558), 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, + [112758] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5438), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(5440), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_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___attribute__, + 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, - ACTIONS(5888), 30, + sym_identifier, + ACTIONS(5445), 29, + ts_builtin_sym_end, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + 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_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_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, - anon_sym_DOT_DOT_DOT_GT, - [157520] = 3, + [112818] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7403), 19, + ACTIONS(8167), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6506), 20, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -461082,19 +423609,19 @@ 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(7401), 30, + ACTIONS(6504), 29, anon_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, @@ -461118,68 +423645,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [157577] = 6, + [112878] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(8504), 1, - anon_sym_LT, - STATE(2518), 1, - sym_template_argument_list, - ACTIONS(5460), 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_COLON, - anon_sym_DOT, - ACTIONS(5467), 37, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8054), 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___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, + ACTIONS(8056), 1, anon_sym_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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [157640] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7348), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(8169), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8171), 1, + anon_sym_or, + ACTIONS(6677), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -461189,22 +423666,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_or, - anon_sym_and, + anon_sym_GT_GT_EQ, anon_sym_xor, anon_sym_DOT, - ACTIONS(7346), 30, + ACTIONS(6679), 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_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -461213,7 +423689,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, @@ -461228,67 +423703,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [157697] = 5, + anon_sym_GT2, + [112944] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6203), 1, - anon_sym_EQ, - ACTIONS(6205), 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(4837), 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_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4829), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(5747), 1, + anon_sym___attribute__, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5753), 1, + anon_sym_virtual, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7360), 1, + sym_auto, + ACTIONS(7362), 1, + anon_sym_decltype, + ACTIONS(8173), 1, + anon_sym_SEMI, + STATE(3704), 1, + sym_decltype_auto, + STATE(3323), 2, + sym_declaration_modifiers, + aux_sym_declaration_specifiers_repeat1, + ACTIONS(7358), 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_GT_EQ, + anon_sym_COLON_COLON, + ACTIONS(7356), 6, + anon_sym_AMP, + anon_sym___based, anon_sym_LBRACK, - 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_DOT_STAR, - anon_sym_DASH_GT, - [157758] = 3, + sym_identifier, + anon_sym_template, + anon_sym_operator, + STATE(4535), 7, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + ACTIONS(5745), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(5743), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [113028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7253), 19, + ACTIONS(6485), 20, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -461303,19 +423790,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(7251), 30, + ACTIONS(6483), 30, anon_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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -461339,127 +423827,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [157815] = 11, + [113086] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3778), 1, - anon_sym_LBRACE, - ACTIONS(8507), 1, - anon_sym_LPAREN2, - ACTIONS(8509), 1, - anon_sym_LBRACK, - ACTIONS(8511), 1, + ACTIONS(5747), 1, + anon_sym___attribute__, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5753), 1, + anon_sym_virtual, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7360), 1, sym_auto, - ACTIONS(8513), 1, + ACTIONS(7362), 1, anon_sym_decltype, - STATE(5056), 1, + ACTIONS(8175), 1, + anon_sym_SEMI, + STATE(3704), 1, sym_decltype_auto, - STATE(5087), 1, - sym_new_declarator, - STATE(5369), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6303), 17, - aux_sym_preproc_elif_token1, - 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_identifier, - ACTIONS(6301), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + STATE(3323), 2, + sym_declaration_modifiers, + aux_sym_declaration_specifiers_repeat1, + ACTIONS(7358), 5, + 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [157887] = 6, + anon_sym_COLON_COLON, + ACTIONS(7356), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + STATE(4535), 7, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + ACTIONS(5745), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(5743), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [113170] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5699), 1, - sym_primitive_type, - STATE(4560), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8515), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6019), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(5747), 1, + anon_sym___attribute__, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5753), 1, + anon_sym_virtual, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7360), 1, + sym_auto, + ACTIONS(7362), 1, + anon_sym_decltype, + ACTIONS(8177), 1, + anon_sym_SEMI, + STATE(3704), 1, + sym_decltype_auto, + STATE(3323), 2, + sym_declaration_modifiers, + aux_sym_declaration_specifiers_repeat1, + ACTIONS(7358), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + ACTIONS(7356), 6, 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, + anon_sym___based, + anon_sym_LBRACK, sym_identifier, + anon_sym_template, + anon_sym_operator, + STATE(4535), 7, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + ACTIONS(5745), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(5743), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [113254] = 16, + 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(5753), 1, + anon_sym_virtual, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7360), 1, sym_auto, + ACTIONS(7362), 1, anon_sym_decltype, - ACTIONS(6016), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(8179), 1, + anon_sym_SEMI, + STATE(3704), 1, + sym_decltype_auto, + STATE(3323), 2, + sym_declaration_modifiers, + aux_sym_declaration_specifiers_repeat1, + ACTIONS(7358), 5, 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_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(7356), 6, + anon_sym_AMP, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [157949] = 3, + sym_identifier, + anon_sym_template, + anon_sym_operator, + STATE(4535), 7, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + ACTIONS(5745), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(5743), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [113338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7265), 16, + ACTIONS(6777), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -461469,23 +424044,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(7263), 32, + ACTIONS(6775), 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_QMARK, anon_sym_STAR_EQ, @@ -461494,25 +424071,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_or, - anon_sym_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, - [158005] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [113396] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6349), 16, + ACTIONS(6568), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -461522,23 +424099,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(6351), 32, + ACTIONS(6566), 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_QMARK, anon_sym_STAR_EQ, @@ -461547,25 +424126,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_or, - anon_sym_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, - [158061] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [113454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7273), 16, + ACTIONS(6787), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -461575,23 +424154,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(7271), 32, + ACTIONS(6785), 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_QMARK, anon_sym_STAR_EQ, @@ -461600,25 +424181,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_or, - anon_sym_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, - [158117] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [113512] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7419), 16, + ACTIONS(6791), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -461628,23 +424209,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(7417), 32, + ACTIONS(6789), 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_QMARK, anon_sym_STAR_EQ, @@ -461653,25 +424236,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_or, - anon_sym_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, - [158173] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [113570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7225), 16, + ACTIONS(6350), 20, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -461685,20 +424269,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, - anon_sym_DASH_GT, - ACTIONS(7223), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6348), 30, anon_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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -461710,76 +424294,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_or, - anon_sym_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, - [158229] = 5, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [113628] = 3, ACTIONS(3), 1, sym_comment, - STATE(4577), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8518), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5957), 19, + ACTIONS(6619), 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___attribute__, + 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5959), 24, + ACTIONS(6617), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, + anon_sym_STAR_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_DOT_STAR, anon_sym_DASH_GT, - [158289] = 3, + anon_sym_GT2, + [113686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7415), 16, + ACTIONS(5637), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -461789,23 +424374,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(7413), 32, + ACTIONS(5639), 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_QMARK, anon_sym_STAR_EQ, @@ -461814,45 +424401,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_or, - anon_sym_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, - [158345] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [113744] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7387), 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(7385), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6783), 1, + sym_literal_suffix, + ACTIONS(4765), 24, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -461872,20 +424441,13 @@ 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, - [158401] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6356), 16, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(4773), 25, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -461900,45 +424462,21 @@ 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(6358), 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_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [158457] = 3, + anon_sym_DOT, + [113804] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7383), 16, + ACTIONS(6280), 20, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -461952,20 +424490,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, - anon_sym_DASH_GT, - ACTIONS(7381), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6278), 30, anon_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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -461977,21 +424515,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_or, - anon_sym_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, - [158513] = 3, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [113862] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6410), 16, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7673), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7023), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -462006,19 +424561,15 @@ 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(6412), 32, + ACTIONS(7025), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -462037,14 +424588,12 @@ static const uint16_t ts_small_parse_table[] = { 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, - [158569] = 3, + [113934] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6360), 16, + ACTIONS(6264), 20, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -462058,20 +424607,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, - anon_sym_DASH_GT, - ACTIONS(6362), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6262), 30, anon_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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -462083,21 +424632,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_or, - anon_sym_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, - [158625] = 3, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [113992] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7338), 16, + ACTIONS(6642), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -462107,23 +424657,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(7336), 32, + ACTIONS(6640), 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_QMARK, anon_sym_STAR_EQ, @@ -462132,43 +424684,44 @@ 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_or, - anon_sym_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, - [158681] = 11, + anon_sym_DASH_GT, + anon_sym_GT2, + [114050] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3778), 1, - anon_sym_LBRACE, - ACTIONS(8507), 1, - anon_sym_LPAREN2, - ACTIONS(8509), 1, - anon_sym_LBRACK, - ACTIONS(8511), 1, - sym_auto, - ACTIONS(8513), 1, - anon_sym_decltype, - STATE(5056), 1, - sym_decltype_auto, - STATE(5070), 1, - sym_new_declarator, - STATE(5410), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6318), 17, - aux_sym_preproc_elif_token1, + ACTIONS(8181), 1, + sym_identifier, + STATE(4083), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(6440), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6442), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5554), 17, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -462184,14 +424737,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6316), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + sym_literal_suffix, + ACTIONS(5550), 19, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -462202,16 +424750,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [158753] = 3, + anon_sym_DOT_DOT_DOT_GT, + [114116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7163), 16, + ACTIONS(5641), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -462221,23 +424771,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(7161), 32, + ACTIONS(5643), 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_QMARK, anon_sym_STAR_EQ, @@ -462246,25 +424798,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_or, - anon_sym_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, - [158809] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [114174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7213), 16, + ACTIONS(5595), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -462274,23 +424826,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(7211), 32, + ACTIONS(5597), 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_QMARK, anon_sym_STAR_EQ, @@ -462299,25 +424853,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_or, - anon_sym_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, - [158865] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [114232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7391), 16, + ACTIONS(6802), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -462327,23 +424881,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(7389), 32, + ACTIONS(6800), 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_QMARK, anon_sym_STAR_EQ, @@ -462352,25 +424908,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_or, - anon_sym_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, - [158921] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [114290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6482), 16, + ACTIONS(6806), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -462380,23 +424936,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(6484), 32, + ACTIONS(6804), 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_QMARK, anon_sym_STAR_EQ, @@ -462405,80 +424963,141 @@ 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_or, - anon_sym_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, - [158977] = 5, + anon_sym_DASH_GT, + anon_sym_GT2, + [114348] = 3, ACTIONS(3), 1, sym_comment, - STATE(4560), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8515), 4, + ACTIONS(4348), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4346), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5699), 19, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + 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_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [114406] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(7296), 1, + anon_sym_LBRACK, + ACTIONS(7439), 1, + anon_sym_DOT_STAR, + STATE(3819), 1, + sym_argument_list, + STATE(3820), 1, + sym_subscript_argument_list, + ACTIONS(7318), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6995), 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, - 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, - ACTIONS(5697), 24, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(6997), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - 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_DOT_STAR, - anon_sym_DASH_GT, - [159037] = 3, + anon_sym_DASH_GT_STAR, + [114476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3096), 16, + ACTIONS(5621), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -462488,23 +425107,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(3094), 32, + ACTIONS(5623), 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_QMARK, anon_sym_STAR_EQ, @@ -462513,25 +425134,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_or, - anon_sym_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, - [159093] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [114534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7319), 16, + ACTIONS(6675), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -462546,12 +425168,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(7317), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6673), 30, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -462570,86 +425191,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_or, - anon_sym_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, - [159149] = 7, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [114591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6446), 1, - sym_literal_suffix, - STATE(4298), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(6160), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6162), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(4837), 16, + ACTIONS(6791), 19, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_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, - ACTIONS(4829), 19, + ACTIONS(6789), 30, anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_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, anon_sym_DOT_DOT_DOT_GT, - [159213] = 7, + [114648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7781), 1, - anon_sym___attribute__, - ACTIONS(8406), 1, - anon_sym_LBRACE, - STATE(4776), 1, - sym_enumerator_list, - STATE(4887), 1, - sym_attribute_specifier, - ACTIONS(6237), 12, + ACTIONS(5438), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -462660,12 +425271,14 @@ 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(6239), 32, + ACTIONS(5433), 36, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -462688,79 +425301,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [159277] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7781), 1, - anon_sym___attribute__, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(8520), 1, - anon_sym_SEMI, - STATE(4827), 1, - sym_field_declaration_list, - STATE(4977), 1, - sym_attribute_specifier, - STATE(8498), 1, - sym_virtual_specifier, - STATE(9637), 1, - sym_base_class_clause, - ACTIONS(6086), 2, anon_sym_final, anon_sym_override, - ACTIONS(6078), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6076), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, anon_sym_virtual, anon_sym_alignas, anon_sym_template, anon_sym_operator, - [159351] = 3, + [114705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4837), 16, + ACTIONS(6777), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -462775,12 +425330,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(4829), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6775), 30, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -462799,21 +425353,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_or, - anon_sym_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, - [159407] = 3, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [114762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7311), 16, + ACTIONS(6623), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -462828,12 +425384,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(7309), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6621), 30, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -462852,38 +425407,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_or, - anon_sym_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, - [159463] = 11, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [114819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3778), 1, - anon_sym_LBRACE, - ACTIONS(8507), 1, - anon_sym_LPAREN2, - ACTIONS(8509), 1, - anon_sym_LBRACK, - ACTIONS(8511), 1, - sym_auto, - ACTIONS(8513), 1, - anon_sym_decltype, - STATE(5056), 1, - sym_decltype_auto, - STATE(5079), 1, - sym_new_declarator, - STATE(5387), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6293), 17, + ACTIONS(5936), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -462893,6 +425432,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -462901,13 +425442,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6289), 22, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(5934), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -462918,128 +425464,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [159535] = 3, + [114876] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 16, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5938), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_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(2191), 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___attribute__, + anon_sym_COLON, anon_sym_or, anon_sym_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, - [159591] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7403), 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(7401), 32, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(4789), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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, - [159647] = 6, + anon_sym_DASH_GT, + [114935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(8522), 1, - anon_sym_LT, - STATE(4657), 1, - sym_template_argument_list, - ACTIONS(5460), 20, + ACTIONS(6603), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -463048,8 +425540,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym___attribute__, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -463058,11 +425550,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5467), 25, + ACTIONS(6601), 31, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -463078,109 +425570,40 @@ 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_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [159709] = 12, + [114992] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7781), 1, - anon_sym___attribute__, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(8525), 1, - anon_sym_SEMI, - STATE(4827), 1, - sym_field_declaration_list, - STATE(4977), 1, - sym_attribute_specifier, - STATE(8498), 1, - sym_virtual_specifier, - STATE(9637), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(6078), 6, + ACTIONS(8028), 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_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6076), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [159783] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7781), 1, - anon_sym___attribute__, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(8527), 1, anon_sym_SEMI, - STATE(4827), 1, - sym_field_declaration_list, - STATE(4977), 1, - sym_attribute_specifier, - STATE(8498), 1, - sym_virtual_specifier, - STATE(9637), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(6078), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(6076), 32, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(8026), 36, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -463200,73 +425623,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [159857] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6496), 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(6498), 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, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [159913] = 3, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [115049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5671), 17, + ACTIONS(5433), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -463276,6 +425650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___attribute__, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -463283,10 +425658,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5669), 31, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(5438), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -463298,7 +425681,8 @@ 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_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -463306,20 +425690,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, 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_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [159969] = 3, + [115106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 16, + ACTIONS(5637), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -463334,12 +425709,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(7393), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5639), 30, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -463358,76 +425732,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_or, - anon_sym_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, - [160025] = 5, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [115163] = 3, ACTIONS(3), 1, sym_comment, - STATE(4592), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8529), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6064), 19, + ACTIONS(6656), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, + 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6062), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(6654), 30, anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_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, - [160085] = 3, + anon_sym_DOT_DOT_DOT_GT, + [115220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6368), 16, + ACTIONS(5579), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -463442,12 +425817,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(6370), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5581), 30, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -463466,21 +425840,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_or, - anon_sym_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, - [160141] = 3, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [115277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6500), 16, + ACTIONS(6781), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -463495,12 +425871,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(6502), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6779), 30, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -463519,139 +425894,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_or, - anon_sym_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, - [160197] = 3, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [115334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5683), 17, + ACTIONS(6719), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, + 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, - sym_literal_suffix, - ACTIONS(5681), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6717), 30, anon_sym_LPAREN2, - anon_sym_STAR, - 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, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_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, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [160253] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7781), 1, - anon_sym___attribute__, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(8531), 1, - anon_sym_SEMI, - STATE(4827), 1, - sym_field_declaration_list, - STATE(4977), 1, - sym_attribute_specifier, - STATE(8498), 1, - sym_virtual_specifier, - STATE(9637), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(6078), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6076), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [160327] = 4, + anon_sym_DOT_DOT_DOT_GT, + [115391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8533), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6414), 16, + ACTIONS(6584), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -463666,14 +425979,14 @@ 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(6416), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6582), 30, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -463689,20 +426002,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_or, 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, - [160385] = 3, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [115448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7352), 16, + ACTIONS(6564), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -463717,12 +426033,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(7350), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6562), 30, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -463741,21 +426056,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_or, - anon_sym_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, - [160441] = 3, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [115505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 16, + ACTIONS(6506), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -463770,12 +426087,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(7325), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6504), 30, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -463794,31 +426110,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_or, - anon_sym_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, - [160497] = 3, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [115562] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6197), 22, - aux_sym_preproc_elif_token1, + ACTIONS(6444), 1, + sym_literal_suffix, + ACTIONS(4773), 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___attribute__, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -463826,42 +426149,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(4853), 26, + anon_sym_DASH_GT, + ACTIONS(4765), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + 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_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_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, - [160553] = 3, + anon_sym_DASH_GT_STAR, + [115621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3078), 16, + ACTIONS(6489), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -463878,7 +426197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3080), 32, + ACTIONS(6487), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -463888,6 +426207,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, @@ -463911,10 +426231,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [160609] = 3, + [115678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7356), 16, + ACTIONS(5607), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -463929,12 +426250,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(7354), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5609), 30, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -463953,74 +426273,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_or, - anon_sym_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, - [160665] = 3, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [115735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5671), 19, + ACTIONS(6711), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_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_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5669), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6709), 30, anon_sym_LPAREN2, - anon_sym_STAR, - 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_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, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [160721] = 3, + anon_sym_DOT_DOT_DOT_GT, + [115792] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7203), 16, + ACTIONS(8183), 1, + anon_sym_AMP_AMP, + ACTIONS(8185), 1, + anon_sym_and, + ACTIONS(6753), 18, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -464035,15 +426362,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_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7201), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6755), 29, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -464059,21 +426383,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_or, - anon_sym_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, - [160777] = 3, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [115853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7399), 16, + ACTIONS(5611), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -464088,12 +426414,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(7397), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5613), 30, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -464112,370 +426437,239 @@ 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_or, - anon_sym_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, - [160833] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7781), 1, - anon_sym___attribute__, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(8535), 1, - anon_sym_SEMI, - STATE(4827), 1, - sym_field_declaration_list, - STATE(4977), 1, - sym_attribute_specifier, - STATE(8498), 1, - sym_virtual_specifier, - STATE(9637), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(6078), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6076), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [160907] = 5, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [115910] = 3, ACTIONS(3), 1, sym_comment, - STATE(4592), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8537), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5699), 19, + ACTIONS(4773), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, + 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5697), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(4765), 30, anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_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, - [160967] = 12, + anon_sym_DOT_DOT_DOT_GT, + [115967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7781), 1, - anon_sym___attribute__, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(8540), 1, - anon_sym_SEMI, - STATE(4827), 1, - sym_field_declaration_list, - STATE(4977), 1, - sym_attribute_specifier, - STATE(8498), 1, - sym_virtual_specifier, - STATE(9637), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(6078), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(6646), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6076), 32, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [161041] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7781), 1, - anon_sym___attribute__, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(8542), 1, - anon_sym_SEMI, - STATE(4827), 1, - sym_field_declaration_list, - STATE(4977), 1, - sym_attribute_specifier, - STATE(8498), 1, - sym_virtual_specifier, - STATE(9637), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(6078), 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, + ACTIONS(6644), 30, 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(6076), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, + 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [161115] = 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, + anon_sym_DOT_DOT_DOT_GT, + [116024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5675), 19, + ACTIONS(6719), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_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_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5673), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6717), 30, anon_sym_LPAREN2, - anon_sym_STAR, - 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_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, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [161171] = 5, + anon_sym_DOT_DOT_DOT_GT, + [116081] = 3, ACTIONS(3), 1, sym_comment, - STATE(4592), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8529), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5998), 19, + ACTIONS(6731), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, + 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5996), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(6729), 30, anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_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, - [161231] = 3, + anon_sym_DOT_DOT_DOT_GT, + [116138] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6418), 16, + ACTIONS(6703), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -464490,12 +426684,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(6420), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6701), 30, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -464514,21 +426707,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_or, - anon_sym_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, - [161287] = 3, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [116195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2183), 16, + ACTIONS(2189), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -464543,12 +426738,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(2185), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2187), 30, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -464567,21 +426761,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_or, - anon_sym_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, - [161343] = 3, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [116252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7334), 16, + ACTIONS(6723), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -464596,12 +426792,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(7332), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6721), 30, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -464620,204 +426815,130 @@ 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_or, - anon_sym_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, - [161399] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(8544), 1, - anon_sym_LBRACE, - STATE(4659), 1, - sym_enumerator_list, - STATE(4785), 1, - sym_attribute_specifier, - ACTIONS(6239), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6237), 40, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [161463] = 9, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [116309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6114), 1, - anon_sym___attribute__, - ACTIONS(6241), 1, - anon_sym_LBRACE, - ACTIONS(8546), 1, - anon_sym_COLON, - STATE(2304), 1, - sym_enum_base_clause, - STATE(2505), 1, - sym_enumerator_list, - STATE(2580), 1, - sym_attribute_specifier, - ACTIONS(6225), 9, + ACTIONS(6763), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_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(6227), 33, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6761), 30, anon_sym_LPAREN2, - anon_sym_STAR, - 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_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_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, - sym_auto, - anon_sym_decltype, - [161531] = 9, + anon_sym_DOT_DOT_DOT_GT, + [116366] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6114), 1, - anon_sym___attribute__, - ACTIONS(6241), 1, - anon_sym_LBRACE, - ACTIONS(8546), 1, - anon_sym_COLON, - STATE(2439), 1, - sym_enum_base_clause, - STATE(2517), 1, - sym_enumerator_list, - STATE(2604), 1, - sym_attribute_specifier, - ACTIONS(6233), 9, + ACTIONS(4773), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_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(6235), 33, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4765), 30, anon_sym_LPAREN2, - anon_sym_STAR, - 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_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_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, - sym_auto, - anon_sym_decltype, - [161599] = 7, + anon_sym_DOT_DOT_DOT_GT, + [116423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7781), 1, - anon_sym___attribute__, - ACTIONS(8406), 1, - anon_sym_LBRACE, - STATE(4798), 1, - sym_enumerator_list, - STATE(4919), 1, - sym_attribute_specifier, - ACTIONS(6308), 12, + ACTIONS(8090), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -464828,12 +426949,14 @@ 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(6310), 32, + ACTIONS(8088), 36, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -464856,17 +426979,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, 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_alignas, + anon_sym_explicit, anon_sym_template, anon_sym_operator, - [161663] = 3, + [116480] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7342), 16, + ACTIONS(6512), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -464881,12 +427008,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(7340), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6510), 30, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -464905,21 +427031,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_or, - anon_sym_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, - [161719] = 3, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [116537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7315), 16, + ACTIONS(6592), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -464934,12 +427062,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(7313), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6590), 30, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -464958,21 +427085,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_or, - anon_sym_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, - [161775] = 3, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [116594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7229), 16, + ACTIONS(5993), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -464987,12 +427116,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(7227), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5991), 30, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -465011,22 +427139,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_or, - anon_sym_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, - [161831] = 3, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [116651] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5460), 22, - aux_sym_preproc_elif_token1, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(8187), 1, + anon_sym_LT, + STATE(2593), 1, + sym_template_argument_list, + ACTIONS(5374), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -465034,27 +427168,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_COLON, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5467), 26, + ACTIONS(5381), 37, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -465066,19 +427186,33 @@ 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___attribute__, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_COLON, + 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_DOT_STAR, anon_sym_DASH_GT, - [161887] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [116714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7061), 16, + ACTIONS(6580), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -465093,12 +427227,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(7065), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6578), 30, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -465117,21 +427250,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_or, - anon_sym_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, - [161943] = 3, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [116771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7367), 16, + ACTIONS(6660), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -465146,12 +427281,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(7365), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6658), 30, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -465170,21 +427304,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_or, - anon_sym_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, - [161999] = 3, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [116828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7371), 16, + ACTIONS(6596), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -465199,12 +427335,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(7369), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6594), 30, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -465223,21 +427358,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_or, - anon_sym_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, - [162055] = 3, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [116885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7221), 16, + ACTIONS(5383), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -465252,12 +427389,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(7219), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5376), 30, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -465276,85 +427412,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_or, - anon_sym_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, - [162111] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7781), 1, - anon_sym___attribute__, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(8548), 1, - anon_sym_SEMI, - STATE(4827), 1, - sym_field_declaration_list, - STATE(4977), 1, - sym_attribute_specifier, - STATE(8498), 1, - sym_virtual_specifier, - STATE(9637), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(6078), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6076), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [162185] = 4, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [116942] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8550), 1, + ACTIONS(8190), 1, anon_sym_LPAREN2, - ACTIONS(2183), 16, + ACTIONS(2191), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -465369,12 +427445,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(2185), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2193), 29, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -465392,199 +427467,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_or, - anon_sym_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, - [162243] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7781), 1, - anon_sym___attribute__, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(8552), 1, - anon_sym_SEMI, - STATE(4827), 1, - sym_field_declaration_list, - STATE(4977), 1, - sym_attribute_specifier, - STATE(8498), 1, - sym_virtual_specifier, - STATE(9637), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(6078), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6076), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [162317] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5677), 3, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(5679), 45, - anon_sym___extension__, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_typename, - anon_sym_template, - [162373] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(8544), 1, - anon_sym_LBRACE, - STATE(4714), 1, - sym_enumerator_list, - STATE(4777), 1, - sym_attribute_specifier, - ACTIONS(6310), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6308), 40, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [162437] = 5, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [117001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8533), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8554), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6372), 16, + ACTIONS(6607), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -465599,13 +427498,14 @@ 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(6374), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6605), 30, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -465621,19 +427521,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_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, - [162497] = 3, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [117058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7411), 16, + ACTIONS(6611), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -465648,12 +427552,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(7409), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6609), 30, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -465672,76 +427575,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_or, - anon_sym_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, - [162553] = 5, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [117115] = 3, ACTIONS(3), 1, sym_comment, - STATE(4645), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8556), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6007), 19, + ACTIONS(6615), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, + 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6005), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(6613), 30, anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_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, - [162613] = 3, + anon_sym_DOT_DOT_DOT_GT, + [117172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6345), 16, + ACTIONS(6627), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -465756,12 +427660,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(6347), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6625), 30, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -465780,76 +427683,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_or, - anon_sym_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, - [162669] = 5, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [117229] = 3, ACTIONS(3), 1, sym_comment, - STATE(4596), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8558), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6050), 19, + ACTIONS(6638), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, + 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6048), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(6636), 30, anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_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, - [162729] = 3, + anon_sym_DOT_DOT_DOT_GT, + [117286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7159), 16, + ACTIONS(6619), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -465864,12 +427768,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(7157), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6617), 30, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -465888,21 +427791,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_or, - anon_sym_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, - [162785] = 3, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [117343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5746), 16, + ACTIONS(6642), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -465917,12 +427822,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(3187), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6640), 30, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -465941,27 +427845,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_or, - anon_sym_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, - [162841] = 6, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [117400] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(8560), 1, - anon_sym_LT, - STATE(4658), 1, - sym_template_argument_list, - ACTIONS(6197), 21, + STATE(3967), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8069), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4763), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -465969,8 +427876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym___attribute__, - anon_sym_COLON, + anon_sym_LT, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -465981,14 +427887,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(4853), 24, + ACTIONS(4771), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -466008,66 +427913,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [162903] = 6, + [117461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(8562), 1, - anon_sym_LT, - STATE(4658), 1, - sym_template_argument_list, - ACTIONS(5460), 21, + ACTIONS(2355), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym___attribute__, - anon_sym_COLON, + 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5467), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(2353), 30, anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_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, - [162965] = 3, + anon_sym_DOT_DOT_DOT_GT, + [117518] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(7816), 1, + anon_sym_LT, + ACTIONS(8067), 1, + anon_sym_EQ, + STATE(4119), 1, + sym_template_argument_list, + ACTIONS(8065), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(4789), 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(5938), 36, + anon_sym_AMP, + anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_alignas, + anon_sym_template, + anon_sym_operator, + [117585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7217), 16, + ACTIONS(5633), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -466082,12 +428045,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(7215), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5635), 30, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -466106,135 +428068,210 @@ 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_or, - anon_sym_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, - [163021] = 11, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [117642] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3778), 1, - anon_sym_LBRACE, - ACTIONS(8507), 1, - anon_sym_LPAREN2, - ACTIONS(8509), 1, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(7869), 1, + anon_sym_AMP_AMP, + ACTIONS(7871), 1, + anon_sym_AMP, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(7877), 1, anon_sym_LBRACK, - ACTIONS(8511), 1, - sym_auto, - ACTIONS(8513), 1, - anon_sym_decltype, - STATE(5028), 1, - sym_new_declarator, - STATE(5056), 1, - sym_decltype_auto, - STATE(5326), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6314), 17, - aux_sym_preproc_elif_token1, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8192), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8198), 1, + anon_sym_DASH_GT, + ACTIONS(8200), 1, + anon_sym_requires, + STATE(5770), 1, + sym_function_attributes_start, + STATE(5900), 1, + sym_ref_qualifier, + STATE(6305), 1, + sym_function_exception_specification, + STATE(6696), 1, + sym_function_attributes_end, + STATE(6767), 1, + sym_trailing_return_type, + STATE(6851), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(8075), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8195), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4940), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5641), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(7867), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + ACTIONS(7873), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [117749] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6568), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_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, - sym_identifier, - ACTIONS(6312), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(6566), 30, + anon_sym_LPAREN2, 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_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, - [163093] = 3, + anon_sym_DOT_DOT_DOT_GT, + [117806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5675), 17, + ACTIONS(6576), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, + 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, - sym_literal_suffix, - ACTIONS(5673), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6574), 30, anon_sym_LPAREN2, - anon_sym_STAR, - 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, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_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, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [163149] = 3, + anon_sym_DOT_DOT_DOT_GT, + [117863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6468), 16, + ACTIONS(2359), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -466249,12 +428286,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(6470), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2357), 30, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -466273,32 +428309,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_or, - anon_sym_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, - [163205] = 7, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [117920] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8565), 1, - sym_identifier, - ACTIONS(8570), 1, - sym_primitive_type, - STATE(4541), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8568), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6026), 17, + ACTIONS(7591), 1, + anon_sym___attribute__, + ACTIONS(8203), 1, + anon_sym_LBRACE, + ACTIONS(8205), 1, + anon_sym_COLON, + STATE(4401), 1, + sym_enum_base_clause, + STATE(4444), 1, + sym_enumerator_list, + STATE(4660), 1, + sym_attribute_specifier, + ACTIONS(6514), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -466314,14 +428353,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, + sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6022), 24, + ACTIONS(6516), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -466333,7 +428374,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -466341,123 +428381,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [163269] = 3, + [117989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5683), 19, + ACTIONS(4306), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_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_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5681), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4302), 30, anon_sym_LPAREN2, - anon_sym_STAR, - 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_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, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [163325] = 3, + anon_sym_DOT_DOT_DOT_GT, + [118046] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7869), 1, + anon_sym_AMP_AMP, + ACTIONS(7871), 1, + anon_sym_AMP, + ACTIONS(7877), 1, + anon_sym_LBRACK, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8035), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8038), 1, + anon_sym_const, + ACTIONS(8078), 1, + anon_sym_requires, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8209), 1, + anon_sym_DASH_GT, + STATE(5755), 1, + sym_function_attributes_start, + STATE(5915), 1, + sym_ref_qualifier, + STATE(6296), 1, + sym_function_exception_specification, + STATE(6763), 1, + sym_trailing_return_type, + STATE(6851), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(6860), 1, + sym_function_attributes_end, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8075), 2, + anon_sym_final, + anon_sym_override, + STATE(4937), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5586), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(7867), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + ACTIONS(8030), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [118153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5679), 17, + ACTIONS(5625), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, + 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, - sym_literal_suffix, - ACTIONS(5677), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5627), 30, anon_sym_LPAREN2, - anon_sym_STAR, - 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, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - 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_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [163381] = 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_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, + anon_sym_DOT_DOT_DOT_GT, + [118210] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, + ACTIONS(4784), 1, anon_sym_COLON_COLON, - ACTIONS(8572), 1, + ACTIONS(7710), 1, anon_sym_LT, - STATE(4657), 1, + STATE(2593), 1, sym_template_argument_list, - ACTIONS(6197), 20, - aux_sym_preproc_elif_token1, + ACTIONS(5938), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -466465,25 +428585,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym___attribute__, 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, - ACTIONS(4853), 25, + ACTIONS(4789), 37, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -466495,18 +428603,33 @@ 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___attribute__, 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_DOT_STAR, anon_sym_DASH_GT, - [163443] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [118273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 16, + ACTIONS(5641), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -466521,12 +428644,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(7297), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5643), 30, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -466545,74 +428667,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_or, - anon_sym_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, - [163499] = 3, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [118330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7348), 16, + ACTIONS(5680), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_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___attribute__, + 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(7346), 32, + sym_identifier, + ACTIONS(3211), 31, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + 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_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - [163555] = 3, + anon_sym_DASH_GT, + [118387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6472), 16, + ACTIONS(5629), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -466627,12 +428752,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(6474), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5631), 30, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -466651,21 +428775,181 @@ 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_or, - anon_sym_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, - [163611] = 3, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [118444] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(7869), 1, + anon_sym_AMP_AMP, + ACTIONS(7871), 1, + anon_sym_AMP, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(7877), 1, + anon_sym_LBRACK, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8192), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8211), 1, + anon_sym_DASH_GT, + ACTIONS(8213), 1, + anon_sym_requires, + STATE(5764), 1, + sym_function_attributes_start, + STATE(5879), 1, + sym_ref_qualifier, + STATE(6284), 1, + sym_function_exception_specification, + STATE(6713), 1, + sym_trailing_return_type, + STATE(6851), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(6874), 1, + sym_function_attributes_end, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4940), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5641), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(7867), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(7873), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [118551] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(7869), 1, + anon_sym_AMP_AMP, + ACTIONS(7871), 1, + anon_sym_AMP, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(7877), 1, + anon_sym_LBRACK, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8192), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8198), 1, + anon_sym_DASH_GT, + ACTIONS(8213), 1, + anon_sym_requires, + STATE(5766), 1, + sym_function_attributes_start, + STATE(5876), 1, + sym_ref_qualifier, + STATE(6299), 1, + sym_function_exception_specification, + STATE(6688), 1, + sym_function_attributes_end, + STATE(6713), 1, + sym_trailing_return_type, + STATE(6851), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8195), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4940), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5641), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(7867), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + ACTIONS(7873), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [118658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7287), 16, + ACTIONS(5595), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -466680,12 +428964,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(7285), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5597), 30, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -466704,31 +428987,178 @@ 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_or, - anon_sym_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, - [163667] = 3, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [118715] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(7517), 1, + anon_sym_LT, + STATE(1833), 1, + sym_template_argument_list, + ACTIONS(5374), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym_COLON, + ACTIONS(5381), 41, + 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, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_try, + anon_sym_requires, + [118778] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(7869), 1, + anon_sym_AMP_AMP, + ACTIONS(7871), 1, + anon_sym_AMP, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(7877), 1, + anon_sym_LBRACK, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8192), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8200), 1, + anon_sym_requires, + ACTIONS(8211), 1, + anon_sym_DASH_GT, + STATE(5767), 1, + sym_function_attributes_start, + STATE(5882), 1, + sym_ref_qualifier, + STATE(6272), 1, + sym_function_exception_specification, + STATE(6767), 1, + sym_trailing_return_type, + STATE(6851), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(6887), 1, + sym_function_attributes_end, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8075), 2, + anon_sym_final, + anon_sym_override, + STATE(4940), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5641), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(7867), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(7873), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [118885] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5679), 19, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(8215), 1, + anon_sym_LT, + STATE(4296), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4393), 1, + sym_template_argument_list, + ACTIONS(8092), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4763), 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, @@ -466737,10 +429167,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(5677), 29, + sym_auto, + anon_sym_decltype, + ACTIONS(4771), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -466749,7 +429183,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_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -466757,74 +429194,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, 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, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [163723] = 3, + [118952] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6504), 16, + ACTIONS(6489), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_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___attribute__, + 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(6506), 32, + sym_identifier, + ACTIONS(6487), 31, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + 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_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - [163779] = 3, + anon_sym_DASH_GT, + [119009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6508), 16, + ACTIONS(6802), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -466839,12 +429267,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(6510), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6800), 30, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -466863,101 +429290,145 @@ 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_or, - anon_sym_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, - [163835] = 3, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [119066] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4261), 16, + ACTIONS(8217), 1, + sym_identifier, + ACTIONS(8222), 1, + sym_primitive_type, + STATE(4194), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8220), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5969), 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___attribute__, + 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(4259), 32, + sym_auto, + anon_sym_decltype, + ACTIONS(5965), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, + anon_sym_STAR, + 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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, - [163891] = 3, + anon_sym_DASH_GT, + [119131] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5669), 3, - anon_sym_COLON_COLON, + ACTIONS(7869), 1, + anon_sym_AMP_AMP, + ACTIONS(7871), 1, + anon_sym_AMP, + ACTIONS(7877), 1, + anon_sym_LBRACK, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8035), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(8038), 1, + anon_sym_const, + ACTIONS(8078), 1, + anon_sym_requires, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8224), 1, + anon_sym_DASH_GT, + STATE(5762), 1, + sym_function_attributes_start, + STATE(5878), 1, + sym_ref_qualifier, + STATE(6281), 1, + sym_function_exception_specification, + STATE(6726), 1, + sym_function_attributes_end, + STATE(6763), 1, + sym_trailing_return_type, + STATE(6851), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(8075), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8195), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4937), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5586), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(7867), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(5671), 45, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(8030), 11, anon_sym___extension__, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -466968,22 +429439,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - 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_alignas, - anon_sym_typename, - anon_sym_template, - [163947] = 3, + [119238] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7233), 16, + ACTIONS(6806), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -466998,65 +429458,11 @@ 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(7231), 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, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [164003] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7407), 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(7405), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6804), 30, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -467075,28 +429481,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_or, - anon_sym_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, - [164059] = 5, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [119295] = 6, ACTIONS(3), 1, sym_comment, - STATE(4592), 1, + ACTIONS(5653), 1, + sym_primitive_type, + STATE(4195), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8529), 4, + ACTIONS(8226), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5992), 19, + ACTIONS(5978), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -467116,7 +429525,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5990), 24, + ACTIONS(5975), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -467141,17 +429550,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [164119] = 5, + [119358] = 5, ACTIONS(3), 1, sym_comment, - STATE(4592), 1, + STATE(4195), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8529), 4, + ACTIONS(8226), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6034), 19, + ACTIONS(5653), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -467161,6 +429570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___attribute__, + sym_primitive_type, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -467171,7 +429581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6032), 24, + ACTIONS(5651), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -467196,10 +429606,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [164179] = 3, + [119419] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6482), 9, + ACTIONS(7591), 1, + anon_sym___attribute__, + ACTIONS(8203), 1, + anon_sym_LBRACE, + ACTIONS(8205), 1, + anon_sym_COLON, + STATE(4390), 1, + sym_enum_base_clause, + STATE(4459), 1, + sym_enumerator_list, + STATE(4655), 1, + sym_attribute_specifier, + ACTIONS(6520), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -467208,12 +429631,23 @@ static const uint16_t ts_small_parse_table[] = { 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(6484), 38, - ts_builtin_sym_end, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6522), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -467225,113 +429659,82 @@ 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___attribute__, - 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_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [164234] = 3, + [119488] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4853), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(7869), 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(6197), 34, + ACTIONS(7871), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(7877), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8035), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8038), 1, anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [164289] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, + ACTIONS(8042), 1, + anon_sym_requires, + ACTIONS(8207), 1, anon_sym___attribute__, - STATE(4764), 1, + ACTIONS(8209), 1, + anon_sym_DASH_GT, + STATE(5752), 1, + sym_function_attributes_start, + STATE(5913), 1, + sym_ref_qualifier, + STATE(6275), 1, + sym_function_exception_specification, + STATE(6751), 1, + sym_trailing_return_type, + STATE(6850), 1, + sym_function_attributes_end, + STATE(6851), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4937), 2, sym_attribute_specifier, - ACTIONS(6366), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6364), 41, - anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_type_definition_repeat1, + STATE(5586), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(7867), 6, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + anon_sym_COLON, + anon_sym_try, + ACTIONS(8030), 11, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -467342,392 +429745,446 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [164348] = 3, + [119595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5483), 13, + ACTIONS(6691), 19, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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(5481), 34, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6689), 30, + anon_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, + anon_sym_DOT_DOT_DOT_GT, + [119652] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6771), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - 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(6769), 30, + anon_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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [164403] = 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, + anon_sym_DOT_DOT_DOT_GT, + [119709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5502), 13, + ACTIONS(6699), 19, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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(6697), 30, + anon_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, + anon_sym_DOT_DOT_DOT_GT, + [119766] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6436), 1, + anon_sym_EQ, + ACTIONS(6438), 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(4765), 17, 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(5500), 34, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [164458] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5498), 13, + 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(4773), 18, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, + anon_sym_DASH, + anon_sym_PLUS, 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(5496), 34, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [164513] = 9, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + [119827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8455), 1, - anon_sym___attribute__, - ACTIONS(8574), 1, - anon_sym_LBRACE, - ACTIONS(8576), 1, - anon_sym_COLON, - STATE(4895), 1, - sym_enum_base_clause, - STATE(5041), 1, - sym_enumerator_list, - STATE(5198), 1, - sym_attribute_specifier, - ACTIONS(6233), 18, + ACTIONS(5621), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6235), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(5623), 30, anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_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, - [164580] = 3, + anon_sym_DOT_DOT_DOT_GT, + [119884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6504), 9, + ACTIONS(5591), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_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(6506), 38, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5593), 30, anon_sym_LPAREN2, - anon_sym_STAR, - 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___attribute__, - 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_or, - anon_sym_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [164635] = 3, + anon_sym_DOT_DOT_DOT_GT, + [119941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6508), 9, + ACTIONS(6707), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_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(6510), 38, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6705), 30, anon_sym_LPAREN2, - anon_sym_STAR, - 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___attribute__, - 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_or, - anon_sym_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [164690] = 3, + anon_sym_DOT_DOT_DOT_GT, + [119998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6472), 9, + ACTIONS(6603), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_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(6474), 38, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6601), 30, anon_sym_LPAREN2, - anon_sym_STAR, - 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___attribute__, - 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_or, - anon_sym_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [164745] = 3, + anon_sym_DOT_DOT_DOT_GT, + [120055] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5518), 21, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5374), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -467749,7 +430206,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5525), 26, + anon_sym_final, + anon_sym_override, + ACTIONS(5381), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -467767,7 +430226,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -467776,10 +430234,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [164800] = 3, + [120114] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5518), 22, + ACTIONS(6749), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -467789,7 +430248,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___attribute__, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -467798,16 +430256,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5525), 25, + ACTIONS(6747), 31, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -467819,80 +430276,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, + 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_DOT_STAR, anon_sym_DASH_GT, - [164855] = 5, + [120171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - STATE(4811), 1, - sym_attribute_specifier, - ACTIONS(6322), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6320), 41, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [164914] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4722), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8578), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5992), 18, + ACTIONS(5417), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -467901,6 +430301,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -467911,12 +430313,15 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5990), 24, + anon_sym_final, + anon_sym_override, + ACTIONS(5419), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -467928,6 +430333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -467936,66 +430342,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [164973] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - STATE(4769), 1, - sym_attribute_specifier, - ACTIONS(6454), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6452), 41, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [165032] = 4, + [120228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5460), 21, + ACTIONS(5394), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -468017,7 +430367,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5467), 25, + anon_sym_final, + anon_sym_override, + ACTIONS(5396), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -468035,6 +430387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -468043,10 +430396,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [165089] = 3, + [120285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6500), 9, + ACTIONS(5398), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -468055,12 +430409,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, + 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, - ACTIONS(6502), 38, - ts_builtin_sym_end, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(5400), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -468072,33 +430441,19 @@ 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___attribute__, + 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, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [165144] = 3, + [120342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6268), 21, + ACTIONS(5402), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -468120,7 +430475,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6270), 26, + anon_sym_final, + anon_sym_override, + ACTIONS(5404), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -468147,10 +430504,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [165199] = 3, + [120399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6368), 9, + ACTIONS(5425), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -468159,12 +430517,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, + 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, - ACTIONS(6370), 38, - ts_builtin_sym_end, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(5427), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -468176,174 +430549,103 @@ 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___attribute__, + 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, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [165254] = 15, + [120456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7582), 1, - sym_auto, - ACTIONS(7584), 1, - anon_sym_decltype, - ACTIONS(8584), 1, - anon_sym___attribute__, - ACTIONS(8586), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8588), 1, - anon_sym___declspec, - ACTIONS(8590), 1, - anon_sym_virtual, - ACTIONS(8592), 1, - anon_sym_alignas, - STATE(4854), 1, - sym_decltype_auto, - STATE(5021), 2, - sym_declaration_modifiers, - aux_sym_declaration_specifiers_repeat1, - ACTIONS(7612), 4, + ACTIONS(5421), 23, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___based, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + 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, - anon_sym_operator, - ACTIONS(7614), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - STATE(6247), 7, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - ACTIONS(8582), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(8580), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [165333] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4382), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(4384), 43, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(5423), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, + 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_COLON, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - sym_semgrep_metavar, - [165388] = 7, + [120513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - STATE(2704), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6753), 1, - sym_template_argument_list, - ACTIONS(5538), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5957), 11, + ACTIONS(5429), 23, + aux_sym_preproc_elif_token1, 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___attribute__, + 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, - ACTIONS(5959), 29, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(5431), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -468352,29 +430654,34 @@ 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___attribute__, + anon_sym_GT_GT, + anon_sym_COLON_COLON, 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_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [165451] = 3, + [120570] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6270), 13, + ACTIONS(5747), 1, + anon_sym___attribute__, + ACTIONS(8229), 1, + anon_sym_LBRACE, + ACTIONS(8231), 1, + anon_sym_COLON, + STATE(3597), 1, + sym_attribute_specifier, + STATE(4351), 1, + sym_enum_base_clause, + STATE(4450), 1, + sym_enumerator_list, + ACTIONS(6516), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -468382,17 +430689,14 @@ 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(6268), 34, + ACTIONS(6514), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -468415,7 +430719,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, sym_identifier, sym_auto, anon_sym_decltype, @@ -468423,212 +430726,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [165506] = 5, + [120639] = 3, ACTIONS(3), 1, sym_comment, - STATE(4670), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8594), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5697), 20, + ACTIONS(5599), 19, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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(5601), 30, + anon_sym_LPAREN2, 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_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, - anon_sym_GT2, - ACTIONS(5699), 22, + anon_sym_DOT_DOT_DOT_GT, + [120696] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5617), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_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___attribute__, - sym_primitive_type, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, + anon_sym_DOT, + ACTIONS(5619), 30, + anon_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_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - [165565] = 15, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [120753] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7582), 1, - sym_auto, - ACTIONS(7584), 1, - anon_sym_decltype, - ACTIONS(8584), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(8586), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8588), 1, - anon_sym___declspec, - ACTIONS(8590), 1, - anon_sym_virtual, - ACTIONS(8592), 1, - anon_sym_alignas, - STATE(4854), 1, - sym_decltype_auto, - STATE(5089), 2, - sym_declaration_modifiers, - aux_sym_declaration_specifiers_repeat1, - ACTIONS(7578), 4, - anon_sym_AMP, - anon_sym___based, - sym_identifier, - anon_sym_operator, - ACTIONS(7580), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - STATE(6247), 7, + ACTIONS(8229), 1, + anon_sym_LBRACE, + ACTIONS(8231), 1, + anon_sym_COLON, + STATE(3654), 1, sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - ACTIONS(8582), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(8580), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [165644] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8597), 1, - sym_auto, - ACTIONS(8599), 1, - anon_sym_decltype, - STATE(4763), 1, - sym_decltype_auto, - ACTIONS(6404), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6402), 40, + STATE(4322), 1, + sym_enum_base_clause, + STATE(4492), 1, + sym_enumerator_list, + ACTIONS(6522), 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___extension__, - anon_sym_extern, - anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [165705] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7973), 1, - anon_sym_LT, - ACTIONS(8160), 1, - anon_sym_LBRACK, - STATE(4040), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5466), 1, - sym_template_argument_list, - ACTIONS(4850), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(4835), 4, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - ACTIONS(4855), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4827), 32, + ACTIONS(6520), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -468655,145 +430894,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [165774] = 3, + [120822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6468), 9, + ACTIONS(5603), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_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(6470), 38, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5605), 30, anon_sym_LPAREN2, - anon_sym_STAR, - 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___attribute__, - 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_or, - anon_sym_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [165829] = 6, + anon_sym_DOT_DOT_DOT_GT, + [120879] = 7, ACTIONS(3), 1, sym_comment, - STATE(4670), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5699), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(8594), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6016), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8183), 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, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(6019), 20, + ACTIONS(8185), 1, + anon_sym_and, + ACTIONS(8233), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8235), 1, + anon_sym_or, + ACTIONS(6677), 17, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_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___attribute__, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, + anon_sym_EQ, anon_sym_xor, + anon_sym_DOT, + ACTIONS(6679), 28, + anon_sym_LPAREN2, + 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_DOT, - sym_auto, - anon_sym_decltype, - [165890] = 5, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [120944] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - STATE(4792), 1, - sym_attribute_specifier, - ACTIONS(6458), 4, + ACTIONS(7869), 1, + anon_sym_AMP_AMP, + ACTIONS(7871), 1, anon_sym_AMP, + ACTIONS(7877), 1, anon_sym_LBRACK, - anon_sym___inline, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8035), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8038), 1, anon_sym_const, - ACTIONS(6456), 41, + ACTIONS(8042), 1, + anon_sym_requires, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8224), 1, + anon_sym_DASH_GT, + STATE(5761), 1, + sym_function_attributes_start, + STATE(5880), 1, + sym_ref_qualifier, + STATE(6289), 1, + sym_function_exception_specification, + STATE(6712), 1, + sym_function_attributes_end, + STATE(6751), 1, + sym_trailing_return_type, + STATE(6851), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8195), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4937), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5586), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(7867), 6, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + anon_sym_COLON, + ACTIONS(8030), 11, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -468804,29 +431085,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [165949] = 5, + [121051] = 3, ACTIONS(3), 1, sym_comment, - STATE(4733), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8601), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4827), 18, + ACTIONS(5664), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -468835,6 +431097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -468843,14 +431106,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(4835), 24, + sym_literal_suffix, + ACTIONS(5662), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -468862,7 +431121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -468870,74 +431129,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [166008] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - STATE(4810), 1, - sym_attribute_specifier, - ACTIONS(6424), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6422), 41, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [166067] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [121108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5671), 18, + ACTIONS(5668), 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___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -468945,8 +431159,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, + sym_identifier, sym_literal_suffix, - ACTIONS(5669), 29, + ACTIONS(5666), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -468957,7 +431172,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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -468970,82 +431188,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - anon_sym_GT2, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [166122] = 7, + [121165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7969), 1, - anon_sym___attribute__, - ACTIONS(8500), 1, - anon_sym_LBRACE, - STATE(4806), 1, - sym_enumerator_list, - STATE(5026), 1, - sym_attribute_specifier, - ACTIONS(6239), 19, - aux_sym_preproc_elif_token1, + ACTIONS(6787), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6237), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(6785), 30, anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_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, - [166185] = 3, + anon_sym_DOT_DOT_DOT_GT, + [121222] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5679), 18, + ACTIONS(5649), 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___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -469053,8 +431267,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, + sym_identifier, sym_literal_suffix, - ACTIONS(5677), 29, + ACTIONS(5647), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -469065,7 +431280,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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -469078,16 +431296,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - anon_sym_GT2, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [166240] = 3, + [121279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6360), 9, + ACTIONS(5660), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -469096,12 +431313,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6362), 38, - ts_builtin_sym_end, + sym_identifier, + sym_literal_suffix, + ACTIONS(5658), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -469114,92 +431338,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym___attribute__, - 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_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [166295] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5525), 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(5518), 34, - anon_sym_AMP, - anon_sym___extension__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [166350] = 7, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [121336] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7969), 1, - anon_sym___attribute__, - ACTIONS(8500), 1, - anon_sym_LBRACE, - STATE(4813), 1, - sym_enumerator_list, - STATE(5042), 1, - sym_attribute_specifier, - ACTIONS(6310), 19, + ACTIONS(6711), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -469209,6 +431368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -469217,11 +431377,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6308), 24, + ACTIONS(6709), 31, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -469237,1507 +431397,810 @@ 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_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [166413] = 9, + [121393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8455), 1, - anon_sym___attribute__, - ACTIONS(8574), 1, - anon_sym_LBRACE, - ACTIONS(8576), 1, - anon_sym_COLON, - STATE(4877), 1, - sym_enum_base_clause, - STATE(5009), 1, - sym_enumerator_list, - STATE(5216), 1, - sym_attribute_specifier, - ACTIONS(6225), 18, + ACTIONS(6634), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6227), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(6632), 30, anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_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, - [166480] = 3, + anon_sym_DOT_DOT_DOT_GT, + [121450] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4378), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(4380), 43, + ACTIONS(6735), 19, 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___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - sym_semgrep_metavar, - [166535] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6466), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym_COLON, - ACTIONS(6464), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [166590] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - STATE(4766), 1, - sym_attribute_specifier, - ACTIONS(6428), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6426), 41, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [166649] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - STATE(4830), 1, - sym_attribute_specifier, - ACTIONS(6392), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6390), 41, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [166708] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - STATE(4755), 1, - sym_attribute_specifier, - ACTIONS(6432), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6430), 41, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [166767] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - STATE(4783), 1, - sym_attribute_specifier, - ACTIONS(6436), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6434), 41, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [166826] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - STATE(4761), 1, - sym_attribute_specifier, - ACTIONS(6462), 4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6460), 41, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, + 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___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [166885] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5467), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6733), 30, 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(5460), 34, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [166942] = 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, + anon_sym_DOT_DOT_DOT_GT, + [121507] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5467), 13, + ACTIONS(6759), 19, 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(5460), 34, - anon_sym_AMP, - anon_sym___extension__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [166997] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5477), 21, - aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym_COLON, + 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5479), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(6757), 30, anon_sym_LPAREN2, - anon_sym_STAR, - 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_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, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [167052] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7903), 1, - anon_sym_AMP_AMP, - ACTIONS(7905), 1, - anon_sym_AMP, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(7914), 1, - anon_sym_LBRACK, - ACTIONS(7916), 1, - anon_sym_const, - ACTIONS(7922), 1, - anon_sym_noexcept, - ACTIONS(7924), 1, - anon_sym_throw, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8603), 1, - anon_sym_DASH_GT, - ACTIONS(8605), 1, - anon_sym_requires, - STATE(6345), 1, - sym_function_attributes_start, - STATE(6605), 1, - sym_ref_qualifier, - STATE(6808), 1, - sym_function_exception_specification, - STATE(7422), 1, - sym_requires_clause, - STATE(7505), 1, - sym_function_postfix, - STATE(7597), 1, - sym_function_attributes_end, - STATE(7728), 1, - sym_trailing_return_type, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8102), 2, - anon_sym_final, - anon_sym_override, - STATE(5288), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5823), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, - sym_noexcept, - sym_throw_specifier, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(7901), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - ACTIONS(7907), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [167157] = 28, + anon_sym_DOT_DOT_DOT_GT, + [121564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7903), 1, - anon_sym_AMP_AMP, - ACTIONS(7905), 1, - anon_sym_AMP, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(7914), 1, - anon_sym_LBRACK, - ACTIONS(7916), 1, - anon_sym_const, - ACTIONS(7922), 1, - anon_sym_noexcept, - ACTIONS(7924), 1, - anon_sym_throw, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8603), 1, - anon_sym_DASH_GT, - ACTIONS(8607), 1, - anon_sym_requires, - STATE(6355), 1, - sym_function_attributes_start, - STATE(6607), 1, - sym_ref_qualifier, - STATE(6817), 1, - sym_function_exception_specification, - STATE(7422), 1, - sym_requires_clause, - STATE(7505), 1, - sym_function_postfix, - STATE(7594), 1, - sym_function_attributes_end, - STATE(7736), 1, - sym_trailing_return_type, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8118), 2, - anon_sym_final, - anon_sym_override, - STATE(5288), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5823), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, - sym_noexcept, - sym_throw_specifier, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(7901), 4, + ACTIONS(6798), 19, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - ACTIONS(7907), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [167262] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5481), 21, - aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym_COLON, + 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5483), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(6796), 30, anon_sym_LPAREN2, - anon_sym_STAR, - 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_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, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [167317] = 3, + anon_sym_DOT_DOT_DOT_GT, + [121621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 21, - aux_sym_preproc_elif_token1, + ACTIONS(6552), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym_COLON, + 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5502), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(6550), 30, anon_sym_LPAREN2, - anon_sym_STAR, - 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_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, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [167372] = 3, + anon_sym_DOT_DOT_DOT_GT, + [121678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 21, - aux_sym_preproc_elif_token1, + ACTIONS(6741), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym_COLON, + 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5498), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(6739), 30, anon_sym_LPAREN2, - anon_sym_STAR, - 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_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, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [167427] = 3, + anon_sym_DOT_DOT_DOT_GT, + [121735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5507), 21, - aux_sym_preproc_elif_token1, + ACTIONS(6556), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym_COLON, + 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5509), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(6554), 30, anon_sym_LPAREN2, - anon_sym_STAR, - 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_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, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [167482] = 3, + anon_sym_DOT_DOT_DOT_GT, + [121792] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5511), 21, - aux_sym_preproc_elif_token1, + ACTIONS(6767), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym_COLON, + 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5513), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(6765), 30, anon_sym_LPAREN2, - anon_sym_STAR, - 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_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, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [167537] = 3, + anon_sym_DOT_DOT_DOT_GT, + [121849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5456), 21, - aux_sym_preproc_elif_token1, + ACTIONS(2191), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym_COLON, + 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5458), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(2193), 30, anon_sym_LPAREN2, - anon_sym_STAR, - 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_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, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [167592] = 3, + anon_sym_DOT_DOT_DOT_GT, + [121906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3096), 9, + ACTIONS(6749), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_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(3094), 38, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6747), 30, anon_sym_LPAREN2, - anon_sym_STAR, - 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___attribute__, - 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_or, - anon_sym_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [167647] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5509), 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(5507), 34, - anon_sym_AMP, - anon_sym___extension__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [167702] = 3, + anon_sym_DOT_DOT_DOT_GT, + [121963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5513), 13, + ACTIONS(6715), 19, 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(5511), 34, - anon_sym_AMP, - anon_sym___extension__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [167757] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6418), 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_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(6420), 38, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6713), 30, anon_sym_LPAREN2, - anon_sym_STAR, - 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___attribute__, - 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_or, - anon_sym_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [167812] = 3, + anon_sym_DOT_DOT_DOT_GT, + [122020] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3078), 9, + STATE(1302), 1, + sym_fold_operator, + ACTIONS(2191), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2193), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7661), 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_DOT, - ACTIONS(3080), 38, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(7322), 24, 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___attribute__, - 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_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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_DASH_DASH, - anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [167867] = 3, + anon_sym_DASH_GT_STAR, + [122083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5458), 13, + ACTIONS(6572), 19, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, + anon_sym_DASH, + anon_sym_PLUS, 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(5456), 34, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [167922] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8610), 1, - sym_identifier, - ACTIONS(8614), 1, - sym_primitive_type, - STATE(4675), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8612), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6022), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + 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(6570), 30, anon_sym_LPAREN2, - anon_sym_STAR, - 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_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, - anon_sym_GT2, - ACTIONS(6026), 20, + anon_sym_DOT_DOT_DOT_GT, + [122140] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6472), 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(4773), 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___attribute__, 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, - [167985] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(4853), 1, - anon_sym_SEMI, - ACTIONS(7973), 1, - anon_sym_LT, - STATE(4040), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4683), 1, - sym_template_argument_list, - ACTIONS(4855), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4835), 5, + ACTIONS(4765), 18, + anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(4827), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [168052] = 3, + 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_DOT_STAR, + anon_sym_DASH_GT, + [122201] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5671), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(6499), 1, + sym_literal_suffix, + STATE(3858), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(5474), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5476), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4773), 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, @@ -470745,9 +432208,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5669), 29, + ACTIONS(4765), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -470756,9 +432219,7 @@ 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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -470766,33 +432227,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, 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_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DOT_DOT_DOT_GT, - [168107] = 4, + anon_sym_GT2, + [122266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5460), 22, + ACTIONS(7197), 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___attribute__, - anon_sym_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -470800,61 +432253,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5467), 24, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(7199), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + 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_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, - [168164] = 5, + anon_sym_DASH_GT_STAR, + [122323] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - STATE(4748), 1, - sym_attribute_specifier, - ACTIONS(6494), 4, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(7517), 1, + anon_sym_LT, + STATE(1833), 1, + sym_template_argument_list, + ACTIONS(5938), 5, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, - ACTIONS(6492), 41, + anon_sym_COLON, + ACTIONS(4789), 41, + 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, anon_sym_SEMI, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym___declspec, anon_sym_LBRACE, - anon_sym_EQ, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -470872,251 +432329,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, + anon_sym_or, + anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [168223] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6268), 22, - 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___attribute__, - 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, - ACTIONS(6270), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [168278] = 3, + [122386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5679), 18, + ACTIONS(5680), 19, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, 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_identifier, - sym_literal_suffix, - ACTIONS(5677), 29, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - 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_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DOT_DOT_DOT_GT, - [168333] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5683), 18, - anon_sym_DOT_DOT_DOT, - 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_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_literal_suffix, - ACTIONS(5681), 29, + ACTIONS(3211), 30, anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_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, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DOT_DOT_DOT_GT, - [168388] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5675), 18, - anon_sym_DOT_DOT_DOT, - 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_identifier, - sym_literal_suffix, - ACTIONS(5673), 29, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, 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_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, anon_sym_DOT_DOT_DOT_GT, - [168443] = 3, + [122443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5479), 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(5647), 3, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5477), 34, - anon_sym_AMP, + ACTIONS(5649), 45, anon_sym___extension__, 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -471136,46 +432434,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, + 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_alignas, + anon_sym_typename, anon_sym_template, - anon_sym_operator, - [168498] = 4, + [122499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(4827), 5, + ACTIONS(6656), 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_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym_COLON, - ACTIONS(4835), 41, + 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(6654), 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, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [122555] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(7517), 1, + anon_sym_LT, + STATE(3723), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4119), 1, + sym_template_argument_list, + ACTIONS(4791), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4771), 7, + 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, + ACTIONS(4763), 33, + anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -471186,80 +432550,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [168555] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5683), 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, - sym_literal_suffix, - ACTIONS(5681), 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_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - 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, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [168610] = 5, + anon_sym_template, + anon_sym_operator, + [122621] = 3, ACTIONS(3), 1, sym_comment, - STATE(4722), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8616), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5699), 18, + ACTIONS(4773), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -471268,6 +432570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -471276,14 +432579,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5697), 24, + ACTIONS(4765), 30, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -471295,18 +432599,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, + 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_DOT_STAR, anon_sym_DASH_GT, - [168669] = 3, + [122677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 22, + ACTIONS(6777), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -471316,7 +432624,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___attribute__, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -471325,16 +432632,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5479), 25, + ACTIONS(6775), 30, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -471346,19 +432652,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + 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_DOT_STAR, anon_sym_DASH_GT, - [168724] = 3, + [122733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5481), 22, + ACTIONS(6781), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -471368,7 +432677,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___attribute__, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -471377,16 +432685,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5483), 25, + ACTIONS(6779), 30, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -471398,19 +432705,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + 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_DOT_STAR, anon_sym_DASH_GT, - [168779] = 3, + [122789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 22, + ACTIONS(6675), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -471420,7 +432730,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___attribute__, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -471429,54 +432738,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5502), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [168834] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6410), 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(6412), 38, + ACTIONS(6673), 30, ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -471489,32 +432759,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym___attribute__, - 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_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [168889] = 3, + [122845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 22, + ACTIONS(6646), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -471524,7 +432783,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___attribute__, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -471533,16 +432791,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5498), 25, + ACTIONS(6644), 30, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -471554,19 +432811,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + 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_DOT_STAR, anon_sym_DASH_GT, - [168944] = 3, + [122901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5507), 22, + ACTIONS(6699), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -471576,7 +432836,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___attribute__, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -471585,16 +432844,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5509), 25, + ACTIONS(6697), 30, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -471606,19 +432864,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + 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_DOT_STAR, anon_sym_DASH_GT, - [168999] = 3, + [122957] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5511), 22, + ACTIONS(6365), 1, + anon_sym___attribute__, + ACTIONS(6491), 1, + anon_sym_LBRACE, + ACTIONS(8237), 1, + anon_sym_COLON, + STATE(2504), 1, + sym_enum_base_clause, + STATE(2668), 1, + sym_enumerator_list, + STATE(2739), 1, + sym_attribute_specifier, + ACTIONS(6514), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -471627,26 +432899,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - 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, - ACTIONS(5513), 25, + ACTIONS(6516), 33, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -471658,265 +432916,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_SEMI, + 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_DOT_STAR, - anon_sym_DASH_GT, - [169054] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5456), 22, - 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___attribute__, - 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, - ACTIONS(5458), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [169109] = 4, + sym_auto, + anon_sym_decltype, + [123025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6197), 21, - aux_sym_preproc_elif_token1, + ACTIONS(6735), 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___attribute__, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(4853), 25, + anon_sym_DASH_GT, + ACTIONS(6733), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + 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_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, - [169166] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4722), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8578), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5998), 18, - 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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5996), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [169225] = 5, + anon_sym_DASH_GT_STAR, + [123081] = 3, ACTIONS(3), 1, sym_comment, - STATE(4722), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8578), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6064), 18, + ACTIONS(5579), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6062), 24, + anon_sym_DASH_GT, + ACTIONS(5581), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + 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_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_DOT_STAR, - anon_sym_DASH_GT, - [169284] = 3, + anon_sym_DASH_GT_STAR, + [123137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6345), 9, + ACTIONS(5603), 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(6347), 38, - ts_builtin_sym_end, + anon_sym_DASH_GT, + ACTIONS(5605), 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___attribute__, - 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_or, anon_sym_and, @@ -471927,127 +433092,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [169339] = 3, + anon_sym_DASH_GT_STAR, + [123193] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5675), 18, + ACTIONS(8239), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8241), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6677), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_EQ, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5673), 29, + anon_sym_DASH_GT, + ACTIONS(6679), 28, 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_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_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - 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, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [169394] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(4853), 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_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6197), 34, - anon_sym_AMP, - anon_sym___extension__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [169451] = 5, + anon_sym_DASH_GT_STAR, + [123253] = 3, ACTIONS(3), 1, sym_comment, - STATE(4722), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8578), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6034), 18, + ACTIONS(6802), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -472056,6 +433161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -472064,14 +433170,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6032), 24, + ACTIONS(6800), 30, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -472083,79 +433190,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, + 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_DOT_STAR, anon_sym_DASH_GT, - [169510] = 5, + [123309] = 4, ACTIONS(3), 1, sym_comment, - STATE(4660), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8619), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6007), 18, + ACTIONS(8243), 1, + anon_sym_LPAREN2, + ACTIONS(2191), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6005), 24, + anon_sym_DASH_GT, + ACTIONS(2193), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - 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_DOT_STAR, - anon_sym_DASH_GT, - [169569] = 5, + anon_sym_DASH_GT_STAR, + [123367] = 3, ACTIONS(3), 1, sym_comment, - STATE(4732), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8621), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6050), 18, + ACTIONS(6627), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -472164,6 +433268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -472172,14 +433277,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6048), 24, + ACTIONS(6625), 30, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -472191,51 +433297,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, + 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_DOT_STAR, anon_sym_DASH_GT, - [169628] = 3, + [123423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6496), 9, + ACTIONS(6741), 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(6498), 38, - ts_builtin_sym_end, + anon_sym_DASH_GT, + ACTIONS(6739), 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___attribute__, - 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_or, anon_sym_and, @@ -472246,48 +433360,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [169683] = 3, + anon_sym_DASH_GT_STAR, + [123479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6349), 9, + ACTIONS(5607), 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(6351), 38, - ts_builtin_sym_end, + anon_sym_DASH_GT, + ACTIONS(5609), 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___attribute__, - 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_or, anon_sym_and, @@ -472298,17 +433413,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [169738] = 4, + anon_sym_DASH_GT_STAR, + [123535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6197), 22, + ACTIONS(2189), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -472318,7 +433428,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___attribute__, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -472327,16 +433436,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(4853), 24, + ACTIONS(2187), 30, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -472348,51 +433456,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, + 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_DOT_STAR, anon_sym_DASH_GT, - [169795] = 3, + [123591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6356), 9, + ACTIONS(4773), 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(6358), 38, - ts_builtin_sym_end, + anon_sym_DASH_GT, + ACTIONS(4765), 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___attribute__, - 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_or, anon_sym_and, @@ -472403,73 +433519,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [169850] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - STATE(4770), 1, - sym_attribute_specifier, - ACTIONS(6388), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6386), 41, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [169909] = 5, + anon_sym_DASH_GT_STAR, + [123647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7969), 1, - anon_sym___attribute__, - STATE(5010), 1, - sym_attribute_specifier, - ACTIONS(6424), 19, + ACTIONS(6703), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -472479,6 +433533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -472487,11 +433542,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6422), 25, + ACTIONS(6701), 30, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -472507,267 +433562,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [169967] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6563), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6561), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [170021] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - STATE(5054), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6753), 1, - sym_template_argument_list, - ACTIONS(8623), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5957), 10, - anon_sym_DOT_DOT_DOT, - 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(5959), 29, - anon_sym_LPAREN2, - anon_sym_STAR, - 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [170083] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6644), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6642), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [170137] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6698), 4, - anon_sym_AMP, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6696), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_RBRACK, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [170191] = 11, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [123703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, - anon_sym_COLON, - ACTIONS(8625), 1, - anon_sym___attribute__, - ACTIONS(8627), 1, - anon_sym_LBRACE, - STATE(5464), 1, - sym_field_declaration_list, - STATE(5755), 1, - sym_attribute_specifier, - STATE(8307), 1, - sym_virtual_specifier, - STATE(9256), 1, - sym_base_class_clause, - ACTIONS(6118), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(6076), 10, - anon_sym_DOT_DOT_DOT, + ACTIONS(6646), 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(6078), 27, + anon_sym_DASH_GT, + ACTIONS(6644), 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_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, @@ -472778,82 +433625,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [170261] = 3, + anon_sym_DASH_GT_STAR, + [123759] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4827), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(4835), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(5747), 1, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, + ACTIONS(7550), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(7552), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, + ACTIONS(8245), 1, + anon_sym_SEMI, + STATE(3617), 1, + sym_attribute_specifier, + STATE(4440), 1, + sym_field_declaration_list, + STATE(8057), 1, + sym_virtual_specifier, + STATE(8866), 1, + sym_base_class_clause, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [170315] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7781), 1, - anon_sym___attribute__, - STATE(4867), 1, - sym_attribute_specifier, - ACTIONS(6422), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5694), 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_EQ, - anon_sym_GT2, - ACTIONS(6424), 32, + ACTIONS(5696), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -472886,174 +433688,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [170373] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6606), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [170427] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6680), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6678), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [170481] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6612), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6610), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [170535] = 6, + [123833] = 3, ACTIONS(3), 1, sym_comment, - STATE(4758), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5699), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(8629), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6019), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6656), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -473070,9 +433709,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_auto, - anon_sym_decltype, - ACTIONS(6016), 20, + sym_identifier, + ACTIONS(6654), 30, + ts_builtin_sym_end, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -473084,102 +433730,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, + 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_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [170595] = 6, + [123889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7582), 1, - sym_auto, - ACTIONS(7584), 1, - anon_sym_decltype, - STATE(4854), 1, - sym_decltype_auto, - ACTIONS(6402), 12, + ACTIONS(6580), 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(6578), 32, 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(6404), 31, - anon_sym_AMP, - anon_sym___extension__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [170655] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4758), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8629), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5697), 20, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(5699), 21, - anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT_STAR, + [123945] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6741), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -473189,7 +433808,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___attribute__, - sym_primitive_type, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -473198,442 +433816,422 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - [170713] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6310), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6308), 42, + ACTIONS(6739), 30, + ts_builtin_sym_end, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, + 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___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [170767] = 5, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [124001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7781), 1, - anon_sym___attribute__, - STATE(4917), 1, - sym_attribute_specifier, - ACTIONS(6452), 12, + ACTIONS(6584), 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(6582), 32, 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, - anon_sym_GT2, - ACTIONS(6454), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, + 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [170825] = 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_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + [124057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6658), 4, + ACTIONS(6634), 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_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6656), 42, + 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(6632), 32, + 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, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [170879] = 3, + 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, + [124113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6522), 4, + ACTIONS(6707), 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_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6520), 42, + 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(6705), 32, + 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, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [170933] = 3, + 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, + [124169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6604), 4, + ACTIONS(6749), 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_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6602), 42, + 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(6747), 32, + 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, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [170987] = 3, + 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, + [124225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6654), 4, + ACTIONS(6592), 18, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6652), 42, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6590), 30, + ts_builtin_sym_end, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, + 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___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [171041] = 3, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [124281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6543), 4, + ACTIONS(6638), 18, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6541), 42, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6636), 30, + ts_builtin_sym_end, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, + 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___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [171095] = 3, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [124337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6596), 4, + ACTIONS(6596), 18, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6594), 42, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6594), 30, + ts_builtin_sym_end, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, + 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___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [171149] = 6, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [124393] = 3, ACTIONS(3), 1, sym_comment, - STATE(4824), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5699), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(8632), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6019), 19, + ACTIONS(5938), 22, + aux_sym_preproc_elif_token1, 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___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -473641,11 +434239,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, + sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6016), 20, + anon_sym_final, + anon_sym_override, + ACTIONS(4789), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -473654,264 +434259,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_LBRACE, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [171209] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7781), 1, - anon_sym___attribute__, - STATE(4874), 1, - sym_attribute_specifier, - ACTIONS(6364), 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(6366), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [171267] = 3, + [124449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6684), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6682), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(6711), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [171321] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6547), 4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6545), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, + 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___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [171375] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5959), 13, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6709), 32, 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(5957), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [171429] = 8, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, + [124505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(8635), 1, - anon_sym_LT, - STATE(2704), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3039), 1, - sym_template_argument_list, - ACTIONS(5538), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4827), 10, + ACTIONS(2355), 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_EQ, anon_sym_DOT, - ACTIONS(4835), 28, + anon_sym_DASH_GT, + ACTIONS(2353), 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_LT_LT, - anon_sym_LBRACE, + 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, @@ -473922,123 +434376,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [171493] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6239), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6237), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [171547] = 5, + anon_sym_DASH_GT_STAR, + [124561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7969), 1, - anon_sym___attribute__, - STATE(5071), 1, - sym_attribute_specifier, - ACTIONS(6388), 19, - aux_sym_preproc_elif_token1, + ACTIONS(5633), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6386), 25, + anon_sym_DASH_GT, + ACTIONS(5635), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + 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_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_DOT_STAR, - anon_sym_DASH_GT, - [171605] = 5, + anon_sym_DASH_GT_STAR, + [124617] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7969), 1, - anon_sym___attribute__, - STATE(5076), 1, - sym_attribute_specifier, - ACTIONS(6392), 19, - aux_sym_preproc_elif_token1, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(8215), 1, + anon_sym_LT, + STATE(4393), 1, + sym_template_argument_list, + ACTIONS(5938), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -474046,7 +434447,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -474057,13 +434459,14 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6390), 25, + anon_sym_final, + anon_sym_override, + ACTIONS(4789), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -474083,27 +434486,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [171663] = 5, + [124679] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7781), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - STATE(4937), 1, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(8247), 1, + anon_sym_SEMI, + STATE(3617), 1, sym_attribute_specifier, - ACTIONS(6320), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(4440), 1, + sym_field_declaration_list, + STATE(8057), 1, + sym_virtual_specifier, + STATE(8866), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5694), 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_EQ, - anon_sym_GT2, - ACTIONS(6322), 32, + ACTIONS(5696), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -474136,181 +434548,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [171721] = 3, + [124753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6688), 4, + ACTIONS(6615), 18, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6686), 42, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6613), 30, + ts_builtin_sym_end, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, + 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___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [171775] = 10, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [124809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7973), 1, - anon_sym_LT, - ACTIONS(8637), 1, - anon_sym_LBRACK, - STATE(4040), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5689), 1, - sym_template_argument_list, - ACTIONS(4850), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(4835), 4, - anon_sym_DOT_DOT_DOT, + ACTIONS(6703), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - ACTIONS(4855), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4827), 31, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_operator, - [171843] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7781), 1, - anon_sym___attribute__, - STATE(4886), 1, - sym_attribute_specifier, - ACTIONS(6426), 12, + 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(6701), 32, 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, - anon_sym_GT2, - ACTIONS(6428), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, + 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [171901] = 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_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + [124865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5683), 17, - anon_sym_DOT_DOT_DOT, + ACTIONS(5664), 19, 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, @@ -474318,8 +434675,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, + sym_identifier, sym_literal_suffix, - ACTIONS(5681), 29, + ACTIONS(5662), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -474328,9 +434688,7 @@ 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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -474343,26 +434701,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, + anon_sym_GT2, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - anon_sym_DOT_DOT_DOT_GT, - [171955] = 3, + [124921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5460), 20, - aux_sym_preproc_elif_token1, + ACTIONS(6723), 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___attribute__, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6721), 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, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [124977] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5668), 19, + 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, @@ -474371,15 +434782,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5467), 26, + sym_literal_suffix, + ACTIONS(5666), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -474388,141 +434794,94 @@ 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_LBRACE, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [172009] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [125033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6664), 4, + ACTIONS(5591), 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_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6662), 42, + 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(5593), 32, + 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, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [172063] = 3, + 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, + [125089] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6616), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6614), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(6365), 1, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, + ACTIONS(6491), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(8237), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [172117] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3824), 1, - anon_sym_LBRACE, - ACTIONS(8639), 1, - anon_sym_LPAREN2, - ACTIONS(8641), 1, - anon_sym_LBRACK, - ACTIONS(8643), 1, - sym_auto, - ACTIONS(8645), 1, - anon_sym_decltype, - STATE(5257), 1, - sym_decltype_auto, - STATE(5278), 1, - sym_new_declarator, - STATE(5557), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6293), 16, + STATE(2503), 1, + sym_enum_base_clause, + STATE(2537), 1, + sym_enumerator_list, + STATE(2710), 1, + sym_attribute_specifier, + ACTIONS(6520), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -474531,20 +434890,13 @@ static const uint16_t ts_small_parse_table[] = { 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_identifier, - ACTIONS(6289), 21, + ACTIONS(6522), 33, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -474555,92 +434907,122 @@ 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_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_DOT_STAR, anon_sym_DASH_GT, - [172187] = 3, + sym_auto, + anon_sym_decltype, + [125157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6600), 4, + ACTIONS(6763), 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_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6598), 42, + 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(6761), 32, + 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, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, + 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, + [125213] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5747), 1, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, + ACTIONS(7550), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(7552), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, + ACTIONS(8249), 1, + anon_sym_SEMI, + STATE(3617), 1, + sym_attribute_specifier, + STATE(4440), 1, + sym_field_declaration_list, + STATE(8057), 1, + sym_virtual_specifier, + STATE(8866), 1, + sym_base_class_clause, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [172241] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6668), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6666), 42, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5694), 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, + ACTIONS(5696), 32, + anon_sym_AMP, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -474651,23 +435033,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [172295] = 3, + anon_sym_template, + anon_sym_operator, + [125287] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5679), 17, - anon_sym_DOT_DOT_DOT, + STATE(4301), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8251), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6130), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -474676,6 +435059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -474683,8 +435067,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5677), 29, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6128), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -474696,6 +435087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -474703,38 +435095,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, 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_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DOT_DOT_DOT_GT, - [172349] = 11, + [125347] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3824), 1, - anon_sym_LBRACE, - ACTIONS(8639), 1, - anon_sym_LPAREN2, - ACTIONS(8641), 1, - anon_sym_LBRACK, - ACTIONS(8643), 1, - sym_auto, - ACTIONS(8645), 1, - anon_sym_decltype, - STATE(5215), 1, - sym_new_declarator, - STATE(5257), 1, - sym_decltype_auto, - STATE(5564), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6318), 16, + STATE(4301), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8251), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6147), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -474743,6 +435114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -474751,12 +435123,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6316), 21, + sym_auto, + anon_sym_decltype, + ACTIONS(6145), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -474767,33 +435142,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [172419] = 5, + [125407] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7781), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - STATE(4865), 1, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(8253), 1, + anon_sym_SEMI, + STATE(3617), 1, sym_attribute_specifier, - ACTIONS(6386), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(4440), 1, + sym_field_declaration_list, + STATE(8057), 1, + sym_virtual_specifier, + STATE(8866), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5694), 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_EQ, - anon_sym_GT2, - ACTIONS(6388), 32, + ACTIONS(5696), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -474826,62 +435212,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [172477] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6676), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6674), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [172531] = 3, + [125481] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5675), 17, - anon_sym_DOT_DOT_DOT, + STATE(4302), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8255), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6185), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -474890,6 +435231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -474897,8 +435239,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5673), 29, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6183), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -474910,6 +435259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -474917,77 +435267,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, 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_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DOT_DOT_DOT_GT, - [172585] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6572), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6570), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [172639] = 5, + [125541] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7969), 1, - anon_sym___attribute__, - STATE(5024), 1, - sym_attribute_specifier, - ACTIONS(6428), 19, - aux_sym_preproc_elif_token1, + STATE(4303), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8257), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6158), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -474996,6 +435286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -475006,13 +435297,12 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6426), 25, + ACTIONS(6156), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -475032,35 +435322,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [172697] = 3, + [125601] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4827), 4, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(7869), 1, + anon_sym_AMP_AMP, + ACTIONS(7871), 1, anon_sym_AMP, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(7877), 1, anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(4835), 42, - anon_sym_COMMA, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8192), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8259), 1, + anon_sym_DASH_GT, + ACTIONS(8261), 1, + anon_sym_requires, + STATE(5806), 1, + sym_function_attributes_start, + STATE(6001), 1, + sym_ref_qualifier, + STATE(6320), 1, + sym_function_exception_specification, + STATE(6851), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(6930), 1, + sym_function_attributes_end, + STATE(7188), 1, + sym_trailing_return_type, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8075), 2, + anon_sym_final, + anon_sym_override, + STATE(4940), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5641), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(7867), 5, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + anon_sym_try, + ACTIONS(7873), 11, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -475071,27 +435400,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [172751] = 5, + [125707] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7969), 1, - anon_sym___attribute__, - STATE(5032), 1, - sym_attribute_specifier, - ACTIONS(6432), 19, - aux_sym_preproc_elif_token1, + STATE(4301), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8264), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5653), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -475100,6 +435419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -475110,13 +435430,12 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6430), 25, + ACTIONS(5651), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -475136,15 +435455,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [172809] = 5, + [125767] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7969), 1, - anon_sym___attribute__, - STATE(5034), 1, - sym_attribute_specifier, - ACTIONS(6436), 19, - aux_sym_preproc_elif_token1, + STATE(4301), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8251), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6056), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -475153,6 +435474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -475163,13 +435485,12 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6434), 25, + ACTIONS(6054), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -475189,179 +435510,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [172867] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7781), 1, - anon_sym___attribute__, - STATE(4962), 1, - sym_attribute_specifier, - ACTIONS(6390), 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(6392), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [172925] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7781), 1, - anon_sym___attribute__, - STATE(4859), 1, - sym_attribute_specifier, - ACTIONS(6492), 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(6494), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [172983] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5957), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(5959), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [173037] = 7, + [125827] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8647), 1, - sym_identifier, - ACTIONS(8651), 1, - sym_primitive_type, - STATE(4756), 1, + STATE(4301), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8649), 4, + ACTIONS(8251), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6026), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6066), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -475378,9 +435537,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, + sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6022), 20, + ACTIONS(6064), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -475400,28 +435565,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [173099] = 11, + [125887] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3824), 1, - anon_sym_LBRACE, - ACTIONS(8639), 1, - anon_sym_LPAREN2, - ACTIONS(8641), 1, - anon_sym_LBRACK, - ACTIONS(8643), 1, - sym_auto, - ACTIONS(8645), 1, - anon_sym_decltype, - STATE(5243), 1, - sym_new_declarator, - STATE(5257), 1, - sym_decltype_auto, - STATE(5574), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6303), 16, + STATE(4295), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8267), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6090), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -475430,6 +435584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -475438,12 +435593,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6301), 21, + sym_auto, + anon_sym_decltype, + ACTIONS(6088), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -475454,16 +435612,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [173169] = 3, + [125947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5460), 21, + ACTIONS(5374), 22, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -475485,12 +435646,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - ACTIONS(5467), 25, + ACTIONS(5381), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -475511,27 +435673,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [173223] = 11, + [126003] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3824), 1, + ACTIONS(3899), 1, anon_sym_LBRACE, - ACTIONS(8639), 1, - anon_sym_LPAREN2, - ACTIONS(8641), 1, + ACTIONS(8013), 1, anon_sym_LBRACK, - ACTIONS(8643), 1, + ACTIONS(8269), 1, + anon_sym_LPAREN2, + ACTIONS(8271), 1, sym_auto, - ACTIONS(8645), 1, + ACTIONS(8273), 1, anon_sym_decltype, - STATE(5253), 1, + STATE(4486), 1, sym_new_declarator, - STATE(5257), 1, + STATE(4667), 1, sym_decltype_auto, - STATE(5712), 2, + STATE(4254), 2, sym_argument_list, sym_initializer_list, - ACTIONS(6314), 16, + ACTIONS(5830), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -475548,12 +435711,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6312), 21, + ACTIONS(5828), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -475570,14 +435734,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [173293] = 5, + [126075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7969), 1, - anon_sym___attribute__, - STATE(5040), 1, - sym_attribute_specifier, - ACTIONS(6454), 19, + ACTIONS(4306), 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(4302), 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, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [126131] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6584), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -475587,6 +435800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -475595,11 +435809,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6452), 25, + ACTIONS(6582), 30, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -475615,73 +435829,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, + 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_DOT_STAR, anon_sym_DASH_GT, - [173351] = 3, + [126187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6640), 4, + ACTIONS(2191), 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_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6638), 42, + 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(2193), 32, + 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, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [173405] = 5, + 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, + [126243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7969), 1, - anon_sym___attribute__, - STATE(5044), 1, - sym_attribute_specifier, - ACTIONS(6322), 19, + ACTIONS(6787), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -475691,6 +435906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -475699,11 +435915,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6320), 25, + ACTIONS(6785), 30, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -475719,22 +435935,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, + 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_DOT_STAR, anon_sym_DASH_GT, - [173463] = 5, + [126299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7969), 1, - anon_sym___attribute__, - STATE(5045), 1, - sym_attribute_specifier, - ACTIONS(6458), 19, + ACTIONS(6759), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -475744,6 +435959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -475752,11 +435968,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6456), 25, + ACTIONS(6757), 30, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -475772,31 +435988,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, + 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_DOT_STAR, anon_sym_DASH_GT, - [173521] = 5, + [126355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7969), 1, - anon_sym___attribute__, - STATE(5048), 1, - sym_attribute_specifier, - ACTIONS(6462), 19, - aux_sym_preproc_elif_token1, + ACTIONS(6675), 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(6673), 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, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [126411] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5649), 19, 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, @@ -475805,15 +436074,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6460), 25, + sym_literal_suffix, + ACTIONS(5647), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -475822,10 +436086,7 @@ 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_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -475833,10 +436094,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [173579] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [126467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6197), 20, + ACTIONS(6791), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -475855,11 +436127,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(4853), 26, + ACTIONS(6789), 30, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -475875,8 +436147,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -475884,86 +436158,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [173633] = 3, + [126523] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6588), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, + ACTIONS(65), 1, anon_sym_const, - ACTIONS(6586), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7869), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(7871), 1, + anon_sym_AMP, + ACTIONS(7875), 1, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, + ACTIONS(7877), 1, + anon_sym_LBRACK, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8275), 1, + anon_sym_DASH_GT, + ACTIONS(8277), 1, + anon_sym_requires, + STATE(5808), 1, + sym_function_attributes_start, + STATE(5957), 1, + sym_ref_qualifier, + STATE(6337), 1, + sym_function_exception_specification, + STATE(7012), 1, + sym_function_attributes_end, + STATE(7021), 1, + sym_requires_clause, + STATE(7100), 1, + sym_function_postfix, + STATE(7129), 1, + sym_trailing_return_type, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, anon_sym_asm, anon_sym___asm__, - sym_auto, - anon_sym_decltype, + ACTIONS(7883), 2, anon_sym_final, anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [173687] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6694), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6692), 42, + STATE(4940), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5641), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(7867), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + ACTIONS(7873), 11, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -475974,47 +436236,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [173741] = 3, + [126629] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6630), 4, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(7869), 1, + anon_sym_AMP_AMP, + ACTIONS(7871), 1, anon_sym_AMP, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(7877), 1, anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6628), 42, - anon_sym_COMMA, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8192), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8259), 1, + anon_sym_DASH_GT, + ACTIONS(8280), 1, + anon_sym_requires, + STATE(5793), 1, + sym_function_attributes_start, + STATE(6021), 1, + sym_ref_qualifier, + STATE(6327), 1, + sym_function_exception_specification, + STATE(6851), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(6917), 1, + sym_function_attributes_end, + STATE(7115), 1, + sym_trailing_return_type, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4940), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5641), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(7867), 5, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + anon_sym_try, + ACTIONS(7873), 11, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -476025,79 +436314,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [173795] = 5, + [126735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7969), 1, - anon_sym___attribute__, - STATE(5052), 1, - sym_attribute_specifier, - ACTIONS(6494), 19, - aux_sym_preproc_elif_token1, + ACTIONS(5625), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6492), 25, + anon_sym_DASH_GT, + ACTIONS(5627), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + 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_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_DOT_STAR, - anon_sym_DASH_GT, - [173853] = 5, + anon_sym_DASH_GT_STAR, + [126791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7969), 1, - anon_sym___attribute__, - STATE(5053), 1, - sym_attribute_specifier, - ACTIONS(6366), 19, + ACTIONS(4306), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -476107,6 +436380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -476115,11 +436389,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6364), 25, + ACTIONS(4302), 30, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -476135,130 +436409,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [173911] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7781), 1, - anon_sym___attribute__, - STATE(4861), 1, - sym_attribute_specifier, - ACTIONS(6456), 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(6458), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [173969] = 5, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [126847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7781), 1, - anon_sym___attribute__, - STATE(4970), 1, - sym_attribute_specifier, - ACTIONS(6460), 12, + ACTIONS(6592), 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(6590), 32, 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, - anon_sym_GT2, - ACTIONS(6462), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, + 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [174027] = 6, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, + [126903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(8653), 1, - anon_sym_LT, - STATE(4972), 1, - sym_template_argument_list, - ACTIONS(5460), 18, + ACTIONS(2191), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -476267,6 +436485,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -476275,11 +436495,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5467), 25, + ACTIONS(2193), 30, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -476295,27 +436515,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, + 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_DOT_STAR, anon_sym_DASH_GT, - [174087] = 3, + [126959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5671), 17, - anon_sym_DOT_DOT_DOT, + ACTIONS(5660), 19, 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, @@ -476323,8 +436547,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, + sym_identifier, sym_literal_suffix, - ACTIONS(5669), 29, + ACTIONS(5658), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -476333,9 +436560,7 @@ 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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -476348,43 +436573,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, + anon_sym_GT2, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - anon_sym_DOT_DOT_DOT_GT, - [174141] = 9, + [127015] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5462), 1, - anon_sym_SEMI, - ACTIONS(5471), 1, - anon_sym_LBRACK, - ACTIONS(7973), 1, - anon_sym_LT, - STATE(5073), 1, - sym_template_argument_list, - ACTIONS(5464), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(5467), 6, + ACTIONS(5747), 1, + anon_sym___attribute__, + ACTIONS(8229), 1, + anon_sym_LBRACE, + STATE(3546), 1, + sym_attribute_specifier, + STATE(4484), 1, + sym_enumerator_list, + ACTIONS(5987), 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(5460), 32, + anon_sym_GT2, + ACTIONS(5989), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -476411,16 +436636,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [174207] = 6, + [127079] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2189), 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(2187), 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, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [127135] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, + ACTIONS(4784), 1, anon_sym_COLON_COLON, - ACTIONS(8656), 1, + ACTIONS(8282), 1, anon_sym_LT, - STATE(4839), 1, + STATE(4393), 1, sym_template_argument_list, - ACTIONS(6197), 19, + ACTIONS(5374), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -476440,7 +436718,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(4853), 24, + anon_sym_final, + anon_sym_override, + ACTIONS(5381), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -476465,61 +436745,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [174267] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6551), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6549), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [174321] = 3, + [127197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6197), 21, + ACTIONS(6607), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -476537,16 +436767,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(4853), 25, + ACTIONS(6605), 30, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -476558,8 +436787,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -476567,74 +436798,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [174375] = 7, + [127253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8610), 1, - sym_identifier, - ACTIONS(8614), 1, - sym_primitive_type, - STATE(4767), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8658), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6026), 19, + ACTIONS(6607), 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_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6605), 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, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [127309] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5629), 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_auto, - anon_sym_decltype, - ACTIONS(6022), 20, + anon_sym_DASH_GT, + ACTIONS(5631), 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_LT_LT, - anon_sym_LBRACE, + 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, - anon_sym_GT2, - [174437] = 5, + anon_sym_DASH_GT_STAR, + [127365] = 3, ACTIONS(3), 1, sym_comment, - STATE(4824), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8632), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5697), 20, + ACTIONS(6611), 18, + aux_sym_preproc_elif_token1, + 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___attribute__, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6609), 30, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -476643,176 +436943,141 @@ 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_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(5699), 21, + [127421] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2359), 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, - sym_primitive_type, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2357), 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_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - [174495] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [127477] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, + ACTIONS(65), 1, anon_sym_const, - ACTIONS(6582), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [174549] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6555), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6553), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(7869), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(7871), 1, + anon_sym_AMP, + ACTIONS(7875), 1, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, + ACTIONS(7877), 1, + anon_sym_LBRACK, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8275), 1, + anon_sym_DASH_GT, + ACTIONS(8285), 1, + anon_sym_requires, + STATE(5814), 1, + sym_function_attributes_start, + STATE(6011), 1, + sym_ref_qualifier, + STATE(6341), 1, + sym_function_exception_specification, + STATE(7021), 1, + sym_requires_clause, + STATE(7061), 1, + sym_function_attributes_end, + STATE(7100), 1, + sym_function_postfix, + STATE(7126), 1, + sym_trailing_return_type, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, anon_sym_asm, anon_sym___asm__, - sym_auto, - anon_sym_decltype, + ACTIONS(7921), 2, anon_sym_final, anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [174603] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7781), 1, - anon_sym___attribute__, - STATE(4950), 1, + STATE(4940), 2, sym_attribute_specifier, - ACTIONS(6430), 12, - anon_sym_DOT_DOT_DOT, + aux_sym_type_definition_repeat1, + STATE(5641), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(7867), 5, 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(6432), 32, - anon_sym_AMP, + anon_sym_LBRACE, + ACTIONS(7873), 11, anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -476823,34 +437088,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [174661] = 5, + [127583] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7781), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - STATE(4954), 1, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(8287), 1, + anon_sym_SEMI, + STATE(3617), 1, sym_attribute_specifier, - ACTIONS(6434), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(4440), 1, + sym_field_declaration_list, + STATE(8057), 1, + sym_virtual_specifier, + STATE(8866), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5694), 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_EQ, - anon_sym_GT2, - ACTIONS(6436), 32, + ACTIONS(5696), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -476883,589 +437150,382 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [174719] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8662), 1, - anon_sym_RPAREN, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(8642), 1, - sym_type_descriptor, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [174817] = 3, + [127657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6559), 4, + ACTIONS(6611), 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_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6557), 42, + 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(6609), 32, + 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, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [174871] = 6, + 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, + [127713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(8666), 1, - anon_sym_LT, - STATE(4839), 1, - sym_template_argument_list, - ACTIONS(5460), 19, + ACTIONS(6615), 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___attribute__, - anon_sym_COLON, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6613), 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, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [127769] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6627), 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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5467), 24, + anon_sym_DASH_GT, + ACTIONS(6625), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + 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_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_DOT_STAR, - anon_sym_DASH_GT, - [174931] = 3, + anon_sym_DASH_GT_STAR, + [127825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6672), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6670), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(6638), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [174985] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6520), 12, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6636), 32, 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, - anon_sym_GT2, - ACTIONS(6522), 33, - anon_sym_AMP, - anon_sym___extension__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [175038] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(4342), 1, - sym_identifier, - ACTIONS(4350), 1, - sym_primitive_type, - ACTIONS(4354), 1, - anon_sym_class, - ACTIONS(4356), 1, - anon_sym_struct, - ACTIONS(4358), 1, - anon_sym_union, - ACTIONS(4360), 1, - sym_auto, - ACTIONS(4362), 1, - anon_sym_decltype, - ACTIONS(8671), 1, - anon_sym_enum, - ACTIONS(8673), 1, - anon_sym_typename, - STATE(4751), 1, - sym_qualified_type_identifier, - STATE(4805), 1, - sym_decltype_auto, - STATE(5204), 1, - sym_type_specifier, - STATE(5721), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7293), 1, - sym_type_descriptor, - STATE(7904), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(4720), 2, - sym_decltype, - sym_template_type, - STATE(5084), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(8669), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4794), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [175133] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - ACTIONS(8677), 1, - anon_sym_enum, - ACTIONS(8679), 1, - anon_sym_typename, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(5526), 1, - sym_type_specifier, - STATE(6241), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7472), 1, - sym_type_descriptor, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5022), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(8675), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [175228] = 3, + 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, + [127881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6638), 12, + ACTIONS(5664), 17, + 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___attribute__, + 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(5662), 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_EQ, - anon_sym_GT2, - ACTIONS(6640), 33, - anon_sym_AMP, - anon_sym___extension__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [175281] = 3, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + 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_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [127937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4835), 12, + ACTIONS(5668), 17, + 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___attribute__, + 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(5666), 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_EQ, - anon_sym_GT2, - ACTIONS(4827), 33, - anon_sym_AMP, - anon_sym___extension__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [175334] = 11, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + 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_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [127993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, - anon_sym_COLON, - ACTIONS(7781), 1, - anon_sym___attribute__, - ACTIONS(7783), 1, - anon_sym_LBRACE, - STATE(4827), 1, - sym_field_declaration_list, - STATE(4977), 1, - sym_attribute_specifier, - STATE(8498), 1, - sym_virtual_specifier, - STATE(9637), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(6078), 6, + ACTIONS(5617), 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(5619), 32, 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, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(6076), 30, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_operator, - [175403] = 3, + 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, + [128049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5518), 20, + ACTIONS(6723), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -477475,7 +437535,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___attribute__, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -477484,14 +437543,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5525), 25, + ACTIONS(6721), 30, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -477503,21 +437563,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + 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_DOT_STAR, anon_sym_DASH_GT, - [175456] = 4, + [128105] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(4827), 19, + ACTIONS(3899), 1, + anon_sym_LBRACE, + ACTIONS(8013), 1, + anon_sym_LBRACK, + ACTIONS(8269), 1, + anon_sym_LPAREN2, + ACTIONS(8271), 1, + sym_auto, + ACTIONS(8273), 1, + anon_sym_decltype, + STATE(4454), 1, + sym_new_declarator, + STATE(4667), 1, + sym_decltype_auto, + STATE(4272), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5878), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -477535,16 +437612,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(4835), 25, + ACTIONS(5876), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -477555,56 +437629,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [175511] = 6, + [128177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(8465), 1, - anon_sym_LPAREN2, - STATE(5283), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6846), 9, + ACTIONS(6806), 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(6844), 32, - ts_builtin_sym_end, + anon_sym_DASH_GT, + ACTIONS(6804), 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, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [128233] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6699), 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(6697), 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_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, + [128289] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6802), 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___attribute__, - anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6800), 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_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, @@ -477615,17 +437793,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [128345] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6623), 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, - [175570] = 6, + ACTIONS(6621), 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, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [128401] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(8511), 1, + ACTIONS(3899), 1, + anon_sym_LBRACE, + ACTIONS(8013), 1, + anon_sym_LBRACK, + ACTIONS(8269), 1, + anon_sym_LPAREN2, + ACTIONS(8271), 1, sym_auto, - ACTIONS(8513), 1, + ACTIONS(8273), 1, anon_sym_decltype, - STATE(5056), 1, + STATE(4445), 1, + sym_new_declarator, + STATE(4667), 1, sym_decltype_auto, - ACTIONS(6404), 17, + STATE(4314), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5807), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -477643,14 +437885,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6402), 25, + ACTIONS(5805), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -477661,20 +437902,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [175629] = 4, + [128473] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6197), 20, + ACTIONS(8241), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6753), 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(6755), 30, + 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_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_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, + [128531] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5649), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -477684,7 +437975,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___attribute__, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -477692,15 +437982,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(4853), 24, + sym_literal_suffix, + ACTIONS(5647), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -477712,7 +437997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -477720,11 +438005,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [175684] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [128587] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6543), 20, - aux_sym_preproc_elif_token1, + ACTIONS(5747), 1, + anon_sym___attribute__, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(8289), 1, + anon_sym_SEMI, + STATE(3617), 1, + sym_attribute_specifier, + STATE(4440), 1, + sym_field_declaration_list, + STATE(8057), 1, + sym_virtual_specifier, + STATE(8866), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5694), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5696), 32, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [128661] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5660), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -477741,16 +438097,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6541), 25, + sym_literal_suffix, + ACTIONS(5658), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -477762,7 +438112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -477770,12 +438120,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [175737] = 4, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [128717] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6759), 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(6757), 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, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [128773] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4853), 1, + ACTIONS(5747), 1, + anon_sym___attribute__, + ACTIONS(8229), 1, anon_sym_LBRACE, - ACTIONS(4835), 11, + STATE(3630), 1, + sym_attribute_specifier, + STATE(4489), 1, + sym_enumerator_list, + ACTIONS(5981), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -477787,11 +438206,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_EQ, - ACTIONS(4827), 33, + anon_sym_GT2, + ACTIONS(5983), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -477821,10 +438240,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [175792] = 3, + [128837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6551), 20, + ACTIONS(6767), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -477843,11 +438262,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6549), 25, + ACTIONS(6765), 30, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -477863,96 +438282,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, + 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_DOT_STAR, anon_sym_DASH_GT, - [175845] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8681), 1, - sym_identifier, - ACTIONS(8685), 1, - sym_primitive_type, - ACTIONS(8687), 1, - anon_sym_enum, - ACTIONS(8689), 1, - anon_sym_class, - ACTIONS(8691), 1, - anon_sym_struct, - ACTIONS(8693), 1, - anon_sym_union, - ACTIONS(8695), 1, - sym_auto, - ACTIONS(8697), 1, - anon_sym_decltype, - ACTIONS(8699), 1, - anon_sym_typename, - STATE(6770), 1, - sym_type_specifier, - STATE(6831), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6839), 1, - sym_decltype_auto, - STATE(6856), 1, - sym_qualified_type_identifier, - STATE(7300), 1, - sym_type_definition_type, - STATE(7942), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(5085), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6816), 2, - sym_decltype, - sym_template_type, - ACTIONS(8683), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6854), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [175940] = 6, + [128893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(8465), 1, - anon_sym_LPAREN2, - STATE(5265), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6916), 9, + ACTIONS(6763), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -477961,12 +438306,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6914), 32, + sym_identifier, + ACTIONS(6761), 30, ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -477978,13 +438336,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym___attribute__, 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_DOT_STAR, + anon_sym_DASH_GT, + [128949] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6777), 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(6775), 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, @@ -477994,133 +438398,241 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [175999] = 3, + anon_sym_DASH_GT_STAR, + [129005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 20, - aux_sym_preproc_elif_token1, + ACTIONS(6781), 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___attribute__, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6779), 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, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [129061] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6767), 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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6582), 25, + anon_sym_DASH_GT, + ACTIONS(6765), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + 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, + [129117] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6619), 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_LBRACE, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6617), 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, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [176052] = 24, + anon_sym_DASH_GT_STAR, + [129173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3289), 1, - anon_sym_class, - ACTIONS(3291), 1, - anon_sym_struct, - ACTIONS(3293), 1, - anon_sym_union, - ACTIONS(3317), 1, - sym_auto, - ACTIONS(3319), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8701), 1, - sym_identifier, - ACTIONS(8705), 1, - sym_primitive_type, - ACTIONS(8707), 1, - anon_sym_enum, - ACTIONS(8709), 1, - anon_sym_typename, - STATE(3472), 1, - sym_decltype_auto, - STATE(3523), 1, - sym_qualified_type_identifier, - STATE(6110), 1, - sym_type_specifier, - STATE(6354), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7472), 1, - sym_type_descriptor, - STATE(7876), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(3429), 2, - sym_decltype, - sym_template_type, - STATE(5017), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(8703), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3473), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [176147] = 3, + ACTIONS(6771), 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(6769), 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, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [129229] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5957), 20, - aux_sym_preproc_elif_token1, + ACTIONS(6783), 1, + sym_literal_suffix, + STATE(4109), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(6440), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6442), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4773), 16, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -478129,7 +438641,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -478137,16 +438648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5959), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(4765), 19, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -478158,7 +438660,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -478166,10 +438667,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [176200] = 3, + anon_sym_DOT_DOT_DOT_GT, + [129293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6698), 20, + ACTIONS(6771), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -478188,11 +438690,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6696), 25, + ACTIONS(6769), 30, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -478208,86 +438710,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, + 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_DOT_STAR, anon_sym_DASH_GT, - [176253] = 4, + [129349] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(4835), 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_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4827), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(5747), 1, anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [176308] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6602), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(8291), 1, + anon_sym_SEMI, + STATE(3617), 1, + sym_attribute_specifier, + STATE(4440), 1, + sym_field_declaration_list, + STATE(8057), 1, + sym_virtual_specifier, + STATE(8866), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5694), 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_EQ, - anon_sym_GT2, - ACTIONS(6604), 33, + ACTIONS(5696), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -478317,98 +438783,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [176361] = 3, + [129423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 19, - aux_sym_preproc_elif_token1, + ACTIONS(5680), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6464), 26, + anon_sym_DASH_GT, + ACTIONS(3211), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + 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_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, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [176414] = 6, + anon_sym_DASH_GT_STAR, + [129479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(8465), 1, - anon_sym_LPAREN2, - STATE(5262), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6888), 9, + ACTIONS(5611), 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(6886), 32, - ts_builtin_sym_end, + anon_sym_DASH_GT, + ACTIONS(5613), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_LPAREN2, 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___attribute__, - 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, @@ -478419,11 +438888,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [176473] = 3, + anon_sym_DASH_GT_STAR, + [129535] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6680), 20, + ACTIONS(3899), 1, + anon_sym_LBRACE, + ACTIONS(8013), 1, + anon_sym_LBRACK, + ACTIONS(8269), 1, + anon_sym_LPAREN2, + ACTIONS(8271), 1, + sym_auto, + ACTIONS(8273), 1, + anon_sym_decltype, + STATE(4494), 1, + sym_new_declarator, + STATE(4667), 1, + sym_decltype_auto, + STATE(4379), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5759), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -478433,7 +438919,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -478442,16 +438927,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6678), 25, + ACTIONS(5757), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -478462,85 +438944,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [176526] = 3, + [129607] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6628), 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(6630), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(5747), 1, anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [176579] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6642), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(8293), 1, + anon_sym_SEMI, + STATE(3617), 1, + sym_attribute_specifier, + STATE(4440), 1, + sym_field_declaration_list, + STATE(8057), 1, + sym_virtual_specifier, + STATE(8866), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5694), 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_EQ, - anon_sym_GT2, - ACTIONS(6644), 33, + ACTIONS(5696), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -478570,146 +439012,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [176632] = 6, + [129681] = 3, ACTIONS(3), 1, sym_comment, - STATE(4875), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5699), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(8711), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6019), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(6691), 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_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(6016), 20, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [176691] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6570), 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(6572), 33, - anon_sym_AMP, - anon_sym___extension__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [176744] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(8635), 1, - anon_sym_LT, - STATE(3039), 1, - sym_template_argument_list, - ACTIONS(6197), 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_GT_GT, - anon_sym_COLON, anon_sym_DOT, - ACTIONS(4853), 31, + anon_sym_DASH_GT, + ACTIONS(6689), 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_LT_LT, - anon_sym___attribute__, - anon_sym_LBRACE, + 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, @@ -478720,257 +439064,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [176803] = 3, + anon_sym_DASH_GT_STAR, + [129737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6541), 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, + ACTIONS(5658), 3, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6543), 33, - anon_sym_AMP, + anon_sym_LBRACE, + ACTIONS(5660), 45, anon_sym___extension__, 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [176856] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9919), 1, - sym_type_descriptor, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [176951] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6545), 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(6547), 33, - anon_sym_AMP, - anon_sym___extension__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [177004] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6582), 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(6584), 33, - anon_sym_AMP, - anon_sym___extension__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [177057] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6586), 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(6588), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -478990,282 +439106,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [177110] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(10109), 1, - sym_type_descriptor, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [177205] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, anon_sym_enum, - ACTIONS(2225), 1, anon_sym_class, - ACTIONS(2227), 1, anon_sym_struct, - ACTIONS(2229), 1, anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9980), 1, - sym_type_descriptor, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [177300] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6308), 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(6310), 33, - anon_sym_AMP, - anon_sym___extension__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, sym_identifier, sym_auto, anon_sym_decltype, anon_sym_virtual, anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [177353] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9851), 1, - sym_type_descriptor, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [177448] = 4, + anon_sym_template, + [129793] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5460), 20, + ACTIONS(6691), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -479275,7 +439132,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___attribute__, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -479284,14 +439140,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5467), 24, + ACTIONS(6689), 30, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -479303,85 +439160,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, + 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_DOT_STAR, anon_sym_DASH_GT, - [177503] = 3, + [129849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4835), 12, + ACTIONS(6660), 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(6658), 32, 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, - anon_sym_GT2, - ACTIONS(4827), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [177556] = 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_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + [129905] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6652), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5747), 1, + anon_sym___attribute__, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(8295), 1, + anon_sym_SEMI, + STATE(3617), 1, + sym_attribute_specifier, + STATE(4440), 1, + sym_field_declaration_list, + STATE(8057), 1, + sym_virtual_specifier, + STATE(8866), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5694), 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_EQ, - anon_sym_GT2, - ACTIONS(6654), 33, + ACTIONS(5696), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -479411,141 +439286,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [177609] = 5, + [129979] = 3, ACTIONS(3), 1, sym_comment, - STATE(4875), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8711), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5697), 20, - anon_sym_LPAREN2, + ACTIONS(6787), 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(6785), 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_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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(5699), 20, - anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT_STAR, + [130035] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6791), 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, - sym_primitive_type, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6789), 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_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - [177666] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(10177), 1, - sym_type_descriptor, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [177761] = 7, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [130091] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8455), 1, - anon_sym___attribute__, - ACTIONS(8574), 1, - anon_sym_LBRACE, - STATE(5047), 1, - sym_enumerator_list, - STATE(5203), 1, - sym_attribute_specifier, - ACTIONS(6239), 18, + ACTIONS(8297), 1, + anon_sym_LPAREN2, + ACTIONS(2191), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -479554,6 +439407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -479562,15 +439416,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6237), 23, + ACTIONS(2193), 29, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -479581,159 +439435,75 @@ 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_DOT_STAR, anon_sym_DASH_GT, - [177822] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(10623), 1, - sym_type_descriptor, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [177917] = 24, + [130149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9679), 1, - sym_type_descriptor, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [178012] = 3, + ACTIONS(5637), 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(5639), 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, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [130205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6268), 20, + ACTIONS(6707), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -479743,7 +439513,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___attribute__, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -479752,14 +439521,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6270), 25, + ACTIONS(6705), 30, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -479771,19 +439541,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + 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_DOT_STAR, anon_sym_DASH_GT, - [178065] = 3, + [130261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 19, + ACTIONS(6735), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -479793,6 +439565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -479801,11 +439574,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5479), 26, + ACTIONS(6733), 30, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -479821,666 +439594,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + 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_DOT_STAR, anon_sym_DASH_GT, - [178118] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9646), 1, - sym_type_descriptor, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [178213] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(10546), 1, - sym_type_descriptor, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [178308] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9721), 1, - sym_type_descriptor, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [178403] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9923), 1, - sym_type_descriptor, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [178498] = 3, + [130317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6594), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(5599), 16, + anon_sym_DASH, + anon_sym_PLUS, 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(6596), 33, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [178551] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6598), 12, + 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(5601), 32, 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, - anon_sym_GT2, - ACTIONS(6600), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [178604] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(10558), 1, - sym_type_descriptor, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [178699] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9955), 1, - sym_type_descriptor, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [178794] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9379), 1, - sym_type_descriptor, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [178889] = 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_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + [130373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6237), 12, + ACTIONS(6603), 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(6601), 32, 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, - anon_sym_GT2, - ACTIONS(6239), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [178942] = 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_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + [130429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5481), 19, + ACTIONS(6806), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -480490,6 +439724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -480498,11 +439733,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5483), 26, + ACTIONS(6804), 30, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -480518,244 +439753,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + 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_DOT_STAR, anon_sym_DASH_GT, - [178995] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(10281), 1, - sym_type_descriptor, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [179090] = 24, + [130485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(10449), 1, - sym_type_descriptor, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [179185] = 7, + ACTIONS(5641), 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(5643), 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, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [130541] = 3, ACTIONS(3), 1, - sym_comment, - ACTIONS(8455), 1, - anon_sym___attribute__, - ACTIONS(8574), 1, - anon_sym_LBRACE, - STATE(5066), 1, - sym_enumerator_list, - STATE(5224), 1, - sym_attribute_specifier, - ACTIONS(6310), 18, + sym_comment, + ACTIONS(5595), 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(5597), 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, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [130597] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5621), 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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6308), 23, + anon_sym_DASH_GT, + ACTIONS(5623), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + 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_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, - [179246] = 3, + anon_sym_DASH_GT_STAR, + [130653] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6678), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(7517), 1, + anon_sym_LT, + STATE(1833), 1, + sym_template_argument_list, + STATE(3945), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4763), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(7519), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4771), 36, 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(6680), 33, - anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_static, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -480766,17 +439973,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [179299] = 3, + anon_sym_try, + anon_sym_requires, + [130719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 19, + ACTIONS(6660), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -480786,6 +439994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -480794,11 +440003,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5502), 26, + ACTIONS(6658), 30, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -480814,1085 +440023,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + 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_DOT_STAR, anon_sym_DASH_GT, - [179352] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9864), 1, - sym_type_descriptor, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [179447] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9975), 1, - sym_type_descriptor, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [179542] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(10016), 1, - sym_type_descriptor, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [179637] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(10310), 1, - sym_type_descriptor, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [179732] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(10473), 1, - sym_type_descriptor, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [179827] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(4342), 1, - sym_identifier, - ACTIONS(4350), 1, - sym_primitive_type, - ACTIONS(4354), 1, - anon_sym_class, - ACTIONS(4356), 1, - anon_sym_struct, - ACTIONS(4358), 1, - anon_sym_union, - ACTIONS(4360), 1, - sym_auto, - ACTIONS(4362), 1, - anon_sym_decltype, - ACTIONS(8716), 1, - anon_sym_enum, - ACTIONS(8718), 1, - anon_sym_typename, - STATE(4751), 1, - sym_qualified_type_identifier, - STATE(4805), 1, - sym_decltype_auto, - STATE(5401), 1, - sym_type_specifier, - STATE(5493), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7293), 1, - sym_type_descriptor, - STATE(7904), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(4720), 2, - sym_decltype, - sym_template_type, - STATE(5086), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(8714), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4794), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [179922] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8720), 1, - sym_identifier, - ACTIONS(8724), 1, - sym_primitive_type, - ACTIONS(8726), 1, - anon_sym_enum, - ACTIONS(8728), 1, - anon_sym_class, - ACTIONS(8730), 1, - anon_sym_struct, - ACTIONS(8732), 1, - anon_sym_union, - ACTIONS(8734), 1, - sym_auto, - ACTIONS(8736), 1, - anon_sym_decltype, - ACTIONS(8738), 1, - anon_sym_typename, - STATE(5457), 1, - sym_type_specifier, - STATE(6148), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6554), 1, - sym_qualified_type_identifier, - STATE(6688), 1, - sym_decltype_auto, - STATE(7472), 1, - sym_type_descriptor, - STATE(7920), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(5023), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6516), 2, - sym_decltype, - sym_template_type, - ACTIONS(8722), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6689), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [180017] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(10507), 1, - sym_type_descriptor, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [180112] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(10080), 1, - sym_type_descriptor, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [180207] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9720), 1, - sym_type_descriptor, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [180302] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(10044), 1, - sym_type_descriptor, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [180397] = 24, + [130775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9832), 1, - sym_type_descriptor, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [180492] = 24, + ACTIONS(6596), 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(6594), 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, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [130831] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, + ACTIONS(4784), 1, anon_sym_COLON_COLON, - ACTIONS(8660), 1, + ACTIONS(5374), 22, + 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___attribute__, + 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, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9765), 1, - sym_type_descriptor, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [180587] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, sym_auto, - ACTIONS(2255), 1, anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9727), 1, - sym_type_descriptor, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [180682] = 24, + anon_sym_final, + anon_sym_override, + ACTIONS(5381), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [130888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9781), 1, - sym_type_descriptor, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [180777] = 3, + ACTIONS(5425), 22, + 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___attribute__, + 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, + ACTIONS(5427), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [130943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5507), 19, - aux_sym_preproc_elif_token1, + ACTIONS(5421), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -481901,6 +440204,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -481911,13 +440216,14 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5509), 26, + anon_sym_final, + anon_sym_override, + ACTIONS(5423), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -481938,17 +440244,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [180830] = 6, + [130998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(8465), 1, - anon_sym_LPAREN2, - STATE(5222), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6908), 9, + ACTIONS(5637), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -481958,11 +440257,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(6906), 32, + ACTIONS(5639), 38, ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -481975,6 +440275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -481991,394 +440292,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [180889] = 24, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [131053] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, + ACTIONS(7591), 1, + anon_sym___attribute__, + ACTIONS(8203), 1, + anon_sym_LBRACE, + STATE(4485), 1, + sym_enumerator_list, + STATE(4644), 1, + sym_attribute_specifier, + ACTIONS(5989), 19, + aux_sym_preproc_elif_token1, + 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_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9876), 1, - sym_type_descriptor, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [180984] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, sym_auto, - ACTIONS(2255), 1, anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(9995), 1, - sym_type_descriptor, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [181079] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6682), 12, + ACTIONS(5987), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, 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_EQ, - anon_sym_GT2, - ACTIONS(6684), 33, - anon_sym_AMP, - anon_sym___extension__, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [181132] = 24, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [131116] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, + ACTIONS(3899), 1, + anon_sym_LBRACE, + ACTIONS(6725), 1, sym_auto, - ACTIONS(2255), 1, + ACTIONS(6727), 1, anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, + ACTIONS(8013), 1, + anon_sym_LBRACK, + ACTIONS(8299), 1, + anon_sym_LPAREN2, + STATE(2694), 1, sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(10214), 1, - sym_type_descriptor, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [181227] = 3, + STATE(4710), 1, + sym_new_declarator, + STATE(4379), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5759), 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(5757), 29, + ts_builtin_sym_end, + 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___attribute__, + 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, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [131187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6686), 12, + ACTIONS(5625), 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(5627), 38, + ts_builtin_sym_end, 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_EQ, - anon_sym_GT2, - ACTIONS(6688), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [181280] = 24, + 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [131242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, + ACTIONS(5433), 22, + 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___attribute__, + 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, - ACTIONS(2255), 1, anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, + anon_sym_final, + anon_sym_override, + ACTIONS(5438), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(10304), 1, - sym_type_descriptor, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [181375] = 3, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [131297] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 20, + ACTIONS(5429), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -482399,7 +440540,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5479), 25, + anon_sym_final, + anon_sym_override, + ACTIONS(5431), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -482425,172 +440568,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [181428] = 24, + [131352] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, + ACTIONS(3899), 1, + anon_sym_LBRACE, + ACTIONS(6725), 1, sym_auto, - ACTIONS(2255), 1, + ACTIONS(6727), 1, anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, + ACTIONS(8013), 1, + anon_sym_LBRACK, + ACTIONS(8299), 1, + anon_sym_LPAREN2, + STATE(2694), 1, sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9706), 1, - sym_type_descriptor, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [181523] = 24, + STATE(4722), 1, + sym_new_declarator, + STATE(4314), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5807), 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(5805), 29, + ts_builtin_sym_end, + 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___attribute__, + 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, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [131423] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, + ACTIONS(4784), 1, anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, + ACTIONS(7517), 1, + anon_sym_LT, + ACTIONS(7986), 1, + anon_sym_LBRACK, + STATE(3723), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(10077), 1, - sym_type_descriptor, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [181618] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6549), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(4932), 1, + sym_template_argument_list, + ACTIONS(4786), 2, anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4771), 4, 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(6551), 33, + ACTIONS(4791), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4763), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -482617,81 +440687,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [181671] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(10270), 1, - sym_type_descriptor, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [181766] = 3, + [131492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5481), 20, + ACTIONS(5611), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -482700,24 +440699,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - 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, - ACTIONS(5483), 25, + ACTIONS(5613), 38, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -482729,76 +440716,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, + anon_sym_SEMI, + anon_sym___attribute__, 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_DOT_STAR, anon_sym_DASH_GT, - [181819] = 24, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [131547] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9854), 1, - sym_type_descriptor, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7869), 1, + anon_sym_AMP_AMP, + ACTIONS(7871), 1, + anon_sym_AMP, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(7877), 1, + anon_sym_LBRACK, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8301), 1, + anon_sym_DASH_GT, + ACTIONS(8303), 1, + anon_sym_requires, + STATE(5838), 1, + sym_function_attributes_start, + STATE(6122), 1, + sym_ref_qualifier, + STATE(6352), 1, + sym_function_exception_specification, + STATE(7021), 1, + sym_requires_clause, + STATE(7100), 1, + sym_function_postfix, + STATE(7219), 1, + sym_function_attributes_end, + STATE(7335), 1, + sym_trailing_return_type, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(4940), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5641), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(7867), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + ACTIONS(7873), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -482809,10 +440816,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [181914] = 3, + [131652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 20, + ACTIONS(2355), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -482821,24 +440828,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - 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, - ACTIONS(5502), 25, + ACTIONS(2353), 38, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -482850,19 +440845,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, + anon_sym_SEMI, + anon_sym___attribute__, 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_DOT_STAR, anon_sym_DASH_GT, - [181967] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [131707] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 20, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5938), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -482883,7 +440894,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5498), 25, + anon_sym_final, + anon_sym_override, + ACTIONS(4789), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -482900,7 +440913,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -482909,10 +440921,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [182020] = 3, + [131764] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5507), 20, + ACTIONS(7591), 1, + anon_sym___attribute__, + ACTIONS(8203), 1, + anon_sym_LBRACE, + STATE(4462), 1, + sym_enumerator_list, + STATE(4665), 1, + sym_attribute_specifier, + ACTIONS(5983), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -482921,8 +440942,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -482933,12 +440952,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5509), 25, + ACTIONS(5981), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -482950,8 +440970,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -482959,94 +440977,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [182073] = 24, + [131827] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(4784), 1, anon_sym_COLON_COLON, - ACTIONS(8681), 1, - sym_identifier, - ACTIONS(8685), 1, - sym_primitive_type, - ACTIONS(8687), 1, - anon_sym_enum, - ACTIONS(8689), 1, - anon_sym_class, - ACTIONS(8691), 1, - anon_sym_struct, - ACTIONS(8693), 1, - anon_sym_union, - ACTIONS(8695), 1, - sym_auto, - ACTIONS(8697), 1, - anon_sym_decltype, - ACTIONS(8699), 1, - anon_sym_typename, - STATE(6770), 1, - sym_type_specifier, - STATE(6831), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6839), 1, - sym_decltype_auto, - STATE(6856), 1, - sym_qualified_type_identifier, - STATE(7271), 1, - sym_type_definition_type, - STATE(7942), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(5085), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6816), 2, - sym_decltype, - sym_template_type, - ACTIONS(8683), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6854), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [182168] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6590), 12, + ACTIONS(7517), 1, + anon_sym_LT, + STATE(4119), 1, + sym_template_argument_list, + ACTIONS(4789), 8, 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(6592), 33, + anon_sym_LBRACE, + ACTIONS(5938), 36, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -483073,88 +441022,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, 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_alignas, anon_sym_template, anon_sym_operator, - [182221] = 24, + [131888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8681), 1, - sym_identifier, - ACTIONS(8685), 1, - sym_primitive_type, - ACTIONS(8687), 1, - anon_sym_enum, - ACTIONS(8689), 1, - anon_sym_class, - ACTIONS(8691), 1, - anon_sym_struct, - ACTIONS(8693), 1, - anon_sym_union, - ACTIONS(8695), 1, - sym_auto, - ACTIONS(8697), 1, - anon_sym_decltype, - ACTIONS(8699), 1, - anon_sym_typename, - STATE(6770), 1, - sym_type_specifier, - STATE(6831), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6839), 1, - sym_decltype_auto, - STATE(6856), 1, - sym_qualified_type_identifier, - STATE(7277), 1, - sym_type_definition_type, - STATE(7942), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(5085), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6816), 2, - sym_decltype, - sym_template_type, - ACTIONS(8683), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6854), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [182316] = 3, + ACTIONS(5633), 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(5635), 38, + ts_builtin_sym_end, + 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___attribute__, + 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [131943] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5511), 20, + ACTIONS(3899), 1, + anon_sym_LBRACE, + ACTIONS(6725), 1, + sym_auto, + ACTIONS(6727), 1, + anon_sym_decltype, + ACTIONS(8013), 1, + anon_sym_LBRACK, + ACTIONS(8299), 1, + anon_sym_LPAREN2, + STATE(2694), 1, + sym_decltype_auto, + STATE(4734), 1, + sym_new_declarator, + STATE(4272), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5878), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -483163,24 +441113,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_DOT, + ACTIONS(5876), 29, + ts_builtin_sym_end, + 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___attribute__, - anon_sym_COLON, + 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, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [132014] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5617), 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5513), 25, + ACTIONS(5619), 38, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -483192,19 +441173,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, + anon_sym_SEMI, + anon_sym___attribute__, 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_DOT_STAR, anon_sym_DASH_GT, - [182369] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [132069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5456), 20, + ACTIONS(5629), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -483213,24 +441208,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - 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, - ACTIONS(5458), 25, + ACTIONS(5631), 38, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -483242,32 +441225,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, + anon_sym_SEMI, + anon_sym___attribute__, 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_DOT_STAR, anon_sym_DASH_GT, - [182422] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [132124] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6696), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(4789), 1, + anon_sym_SEMI, + ACTIONS(7517), 1, + anon_sym_LT, + STATE(3723), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4119), 1, + sym_template_argument_list, + ACTIONS(4791), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4771), 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_EQ, - anon_sym_GT2, - ACTIONS(6698), 33, + ACTIONS(4763), 33, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -483301,39 +441306,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [182475] = 3, + [132191] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6692), 12, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7869), 1, + anon_sym_AMP_AMP, + ACTIONS(7871), 1, + anon_sym_AMP, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(7877), 1, + anon_sym_LBRACK, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8301), 1, + anon_sym_DASH_GT, + ACTIONS(8305), 1, + anon_sym_requires, + STATE(5839), 1, + sym_function_attributes_start, + STATE(6136), 1, + sym_ref_qualifier, + STATE(6349), 1, + sym_function_exception_specification, + STATE(7021), 1, + sym_requires_clause, + STATE(7100), 1, + sym_function_postfix, + STATE(7138), 1, + sym_function_attributes_end, + STATE(7312), 1, + sym_trailing_return_type, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7883), 2, + anon_sym_final, + anon_sym_override, + STATE(4940), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5641), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(7867), 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_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, anon_sym_GT2, - ACTIONS(6694), 33, - anon_sym_AMP, + ACTIONS(7873), 11, anon_sym___extension__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -483344,18 +441383,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [182528] = 3, + [132296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5511), 19, - aux_sym_preproc_elif_token1, + ACTIONS(5599), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -483364,23 +441395,12 @@ static const uint16_t ts_small_parse_table[] = { 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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5513), 26, + ACTIONS(5601), 38, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -483392,78 +441412,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, + anon_sym_SEMI, + anon_sym___attribute__, 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_DOT_STAR, anon_sym_DASH_GT, - [182581] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [132351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6464), 12, + ACTIONS(5607), 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(5609), 38, + ts_builtin_sym_end, 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_EQ, - anon_sym_GT2, - ACTIONS(6466), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [182634] = 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [132406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5456), 19, - aux_sym_preproc_elif_token1, + ACTIONS(5660), 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, @@ -483471,16 +441508,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5458), 26, + sym_literal_suffix, + ACTIONS(5658), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -483489,11 +441520,7 @@ 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_COLON, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -483501,13 +441528,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [182687] = 4, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [132461] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5460), 19, - aux_sym_preproc_elif_token1, + STATE(4295), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8267), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4763), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -483526,13 +441568,12 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5467), 25, + ACTIONS(4771), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -483552,819 +441593,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [182742] = 3, + [132520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6662), 12, + ACTIONS(5660), 18, 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(6664), 33, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___extension__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [182795] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8681), 1, - sym_identifier, - ACTIONS(8685), 1, - sym_primitive_type, - ACTIONS(8687), 1, - anon_sym_enum, - ACTIONS(8689), 1, - anon_sym_class, - ACTIONS(8691), 1, - anon_sym_struct, - ACTIONS(8693), 1, - anon_sym_union, - ACTIONS(8695), 1, - sym_auto, - ACTIONS(8697), 1, - anon_sym_decltype, - ACTIONS(8699), 1, - anon_sym_typename, - STATE(6770), 1, - sym_type_specifier, - STATE(6831), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6839), 1, - sym_decltype_auto, - STATE(6856), 1, - sym_qualified_type_identifier, - STATE(7285), 1, - sym_type_definition_type, - STATE(7942), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(5085), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6816), 2, - sym_decltype, - sym_template_type, - ACTIONS(8683), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6854), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [182890] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8681), 1, - sym_identifier, - ACTIONS(8685), 1, - sym_primitive_type, - ACTIONS(8687), 1, - anon_sym_enum, - ACTIONS(8689), 1, - anon_sym_class, - ACTIONS(8691), 1, - anon_sym_struct, - ACTIONS(8693), 1, - anon_sym_union, - ACTIONS(8695), 1, - sym_auto, - ACTIONS(8697), 1, - anon_sym_decltype, - ACTIONS(8699), 1, - anon_sym_typename, - STATE(6770), 1, - sym_type_specifier, - STATE(6831), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6839), 1, - sym_decltype_auto, - STATE(6856), 1, - sym_qualified_type_identifier, - STATE(7286), 1, - sym_type_definition_type, - STATE(7942), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(5085), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6816), 2, - sym_decltype, - sym_template_type, - ACTIONS(8683), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6854), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [182985] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8681), 1, - sym_identifier, - ACTIONS(8685), 1, - sym_primitive_type, - ACTIONS(8687), 1, - anon_sym_enum, - ACTIONS(8689), 1, - anon_sym_class, - ACTIONS(8691), 1, - anon_sym_struct, - ACTIONS(8693), 1, - anon_sym_union, - ACTIONS(8695), 1, - sym_auto, - ACTIONS(8697), 1, - anon_sym_decltype, - ACTIONS(8699), 1, - anon_sym_typename, - STATE(6770), 1, - sym_type_specifier, - STATE(6831), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6839), 1, - sym_decltype_auto, - STATE(6856), 1, - sym_qualified_type_identifier, - STATE(7291), 1, - sym_type_definition_type, - STATE(7942), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(5085), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6816), 2, - sym_decltype, - sym_template_type, - ACTIONS(8683), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6854), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [183080] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8681), 1, - sym_identifier, - ACTIONS(8685), 1, - sym_primitive_type, - ACTIONS(8687), 1, - anon_sym_enum, - ACTIONS(8689), 1, - anon_sym_class, - ACTIONS(8691), 1, - anon_sym_struct, - ACTIONS(8693), 1, - anon_sym_union, - ACTIONS(8695), 1, - sym_auto, - ACTIONS(8697), 1, - anon_sym_decltype, - ACTIONS(8699), 1, - anon_sym_typename, - STATE(6770), 1, - sym_type_specifier, - STATE(6831), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6839), 1, - sym_decltype_auto, - STATE(6856), 1, - sym_qualified_type_identifier, - STATE(7292), 1, - sym_type_definition_type, - STATE(7942), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(5085), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6816), 2, - sym_decltype, - sym_template_type, - ACTIONS(8683), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6854), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [183175] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8681), 1, - sym_identifier, - ACTIONS(8685), 1, - sym_primitive_type, - ACTIONS(8687), 1, - anon_sym_enum, - ACTIONS(8689), 1, - anon_sym_class, - ACTIONS(8691), 1, - anon_sym_struct, - ACTIONS(8693), 1, - anon_sym_union, - ACTIONS(8695), 1, - sym_auto, - ACTIONS(8697), 1, - anon_sym_decltype, - ACTIONS(8699), 1, - anon_sym_typename, - STATE(6770), 1, - sym_type_specifier, - STATE(6831), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6839), 1, - sym_decltype_auto, - STATE(6856), 1, - sym_qualified_type_identifier, - STATE(7299), 1, - sym_type_definition_type, - STATE(7942), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(5085), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6816), 2, - sym_decltype, - sym_template_type, - ACTIONS(8683), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6854), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [183270] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8681), 1, + 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_identifier, - ACTIONS(8685), 1, - sym_primitive_type, - ACTIONS(8687), 1, - anon_sym_enum, - ACTIONS(8689), 1, - anon_sym_class, - ACTIONS(8691), 1, - anon_sym_struct, - ACTIONS(8693), 1, - anon_sym_union, - ACTIONS(8695), 1, - sym_auto, - ACTIONS(8697), 1, - anon_sym_decltype, - ACTIONS(8699), 1, - anon_sym_typename, - STATE(6770), 1, - sym_type_specifier, - STATE(6831), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6839), 1, - sym_decltype_auto, - STATE(6856), 1, - sym_qualified_type_identifier, - STATE(7341), 1, - sym_type_definition_type, - STATE(7942), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(5085), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6816), 2, - sym_decltype, - sym_template_type, - ACTIONS(8683), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6854), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [183365] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6606), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + sym_literal_suffix, + ACTIONS(5658), 29, 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_EQ, - anon_sym_GT2, - ACTIONS(6608), 33, - anon_sym_AMP, - anon_sym___extension__, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [183418] = 3, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + 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_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DOT_DOT_DOT_GT, + [132575] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6610), 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, + ACTIONS(4784), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6612), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(5409), 1, + anon_sym_SEMI, + ACTIONS(7517), 1, + anon_sym_LT, + ACTIONS(7986), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [183471] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8681), 1, - sym_identifier, - ACTIONS(8685), 1, - sym_primitive_type, - ACTIONS(8687), 1, - anon_sym_enum, - ACTIONS(8689), 1, - anon_sym_class, - ACTIONS(8691), 1, - anon_sym_struct, - ACTIONS(8693), 1, - anon_sym_union, - ACTIONS(8695), 1, - sym_auto, - ACTIONS(8697), 1, - anon_sym_decltype, - ACTIONS(8699), 1, - anon_sym_typename, - STATE(6770), 1, - sym_type_specifier, - STATE(6831), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6839), 1, - sym_decltype_auto, - STATE(6856), 1, - sym_qualified_type_identifier, - STATE(7302), 1, - sym_type_definition_type, - STATE(7942), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(5085), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6816), 2, - sym_decltype, - sym_template_type, - ACTIONS(8683), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6854), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [183566] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8681), 1, - sym_identifier, - ACTIONS(8685), 1, - sym_primitive_type, - ACTIONS(8687), 1, - anon_sym_enum, - ACTIONS(8689), 1, - anon_sym_class, - ACTIONS(8691), 1, - anon_sym_struct, - ACTIONS(8693), 1, - anon_sym_union, - ACTIONS(8695), 1, - sym_auto, - ACTIONS(8697), 1, - anon_sym_decltype, - ACTIONS(8699), 1, - anon_sym_typename, - STATE(6770), 1, - sym_type_specifier, - STATE(6831), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6839), 1, - sym_decltype_auto, - STATE(6856), 1, - sym_qualified_type_identifier, - STATE(7304), 1, - sym_type_definition_type, - STATE(7942), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(5085), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6816), 2, - sym_decltype, - sym_template_type, - ACTIONS(8683), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6854), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [183661] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8681), 1, - sym_identifier, - ACTIONS(8685), 1, - sym_primitive_type, - ACTIONS(8687), 1, - anon_sym_enum, - ACTIONS(8689), 1, - anon_sym_class, - ACTIONS(8691), 1, - anon_sym_struct, - ACTIONS(8693), 1, - anon_sym_union, - ACTIONS(8695), 1, - sym_auto, - ACTIONS(8697), 1, - anon_sym_decltype, - ACTIONS(8699), 1, - anon_sym_typename, - STATE(6770), 1, - sym_type_specifier, - STATE(6831), 1, + STATE(3723), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6839), 1, - sym_decltype_auto, - STATE(6856), 1, - sym_qualified_type_identifier, - STATE(7307), 1, - sym_type_definition_type, - STATE(7942), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(5085), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6816), 2, - sym_decltype, - sym_template_type, - ACTIONS(8683), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6854), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [183756] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6614), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(4664), 1, + sym_template_argument_list, + ACTIONS(4786), 2, 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(6616), 33, + ACTIONS(4771), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(4791), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4763), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -484391,494 +441705,845 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [183809] = 24, + [132646] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8681), 1, + ACTIONS(8081), 1, + anon_sym___attribute__, + ACTIONS(8308), 1, + anon_sym_LBRACE, + ACTIONS(8310), 1, + anon_sym_COLON, + STATE(4502), 1, + sym_enum_base_clause, + STATE(4628), 1, + sym_enumerator_list, + STATE(4792), 1, + sym_attribute_specifier, + ACTIONS(6514), 18, + 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_identifier, - ACTIONS(8685), 1, - sym_primitive_type, - ACTIONS(8687), 1, - anon_sym_enum, - ACTIONS(8689), 1, - anon_sym_class, - ACTIONS(8691), 1, - anon_sym_struct, - ACTIONS(8693), 1, - anon_sym_union, - ACTIONS(8695), 1, sym_auto, - ACTIONS(8697), 1, anon_sym_decltype, - ACTIONS(8699), 1, - anon_sym_typename, - STATE(6770), 1, - sym_type_specifier, - STATE(6831), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6839), 1, - sym_decltype_auto, - STATE(6856), 1, - sym_qualified_type_identifier, - STATE(7308), 1, - sym_type_definition_type, - STATE(7942), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(5085), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6816), 2, - sym_decltype, - sym_template_type, - ACTIONS(8683), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6854), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [183904] = 24, + ACTIONS(6516), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [132713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8681), 1, - sym_identifier, - ACTIONS(8685), 1, - sym_primitive_type, - ACTIONS(8687), 1, - anon_sym_enum, - ACTIONS(8689), 1, - anon_sym_class, - ACTIONS(8691), 1, - anon_sym_struct, - ACTIONS(8693), 1, - anon_sym_union, - ACTIONS(8695), 1, + ACTIONS(2359), 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(2357), 38, + ts_builtin_sym_end, + 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___attribute__, + 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [132768] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3899), 1, + anon_sym_LBRACE, + ACTIONS(6725), 1, sym_auto, - ACTIONS(8697), 1, + ACTIONS(6727), 1, anon_sym_decltype, - ACTIONS(8699), 1, - anon_sym_typename, - STATE(6770), 1, - sym_type_specifier, - STATE(6831), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6839), 1, + ACTIONS(8013), 1, + anon_sym_LBRACK, + ACTIONS(8299), 1, + anon_sym_LPAREN2, + STATE(2694), 1, sym_decltype_auto, - STATE(6856), 1, - sym_qualified_type_identifier, - STATE(7311), 1, - sym_type_definition_type, - STATE(7942), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(5085), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6816), 2, - sym_decltype, - sym_template_type, - ACTIONS(8683), 4, + STATE(4728), 1, + sym_new_declarator, + STATE(4254), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5830), 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(5828), 29, + ts_builtin_sym_end, + 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___attribute__, + 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, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [132839] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + STATE(1833), 1, + sym_template_argument_list, + STATE(2744), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5468), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(6854), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [183999] = 24, + ACTIONS(6090), 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(6088), 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___attribute__, + 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_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [132902] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8681), 1, + ACTIONS(8081), 1, + anon_sym___attribute__, + ACTIONS(8308), 1, + anon_sym_LBRACE, + ACTIONS(8310), 1, + anon_sym_COLON, + STATE(4584), 1, + sym_enum_base_clause, + STATE(4680), 1, + sym_enumerator_list, + STATE(4821), 1, + sym_attribute_specifier, + ACTIONS(6520), 18, + 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_identifier, - ACTIONS(8685), 1, - sym_primitive_type, - ACTIONS(8687), 1, - anon_sym_enum, - ACTIONS(8689), 1, - anon_sym_class, - ACTIONS(8691), 1, - anon_sym_struct, - ACTIONS(8693), 1, - anon_sym_union, - ACTIONS(8695), 1, sym_auto, - ACTIONS(8697), 1, anon_sym_decltype, - ACTIONS(8699), 1, - anon_sym_typename, - STATE(6770), 1, - sym_type_specifier, - STATE(6831), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6839), 1, - sym_decltype_auto, - STATE(6856), 1, - sym_qualified_type_identifier, - STATE(7312), 1, - sym_type_definition_type, - STATE(7942), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(5085), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6816), 2, - sym_decltype, - sym_template_type, - ACTIONS(8683), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6854), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [184094] = 3, + ACTIONS(6522), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [132969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6666), 12, + ACTIONS(5641), 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(5643), 38, + ts_builtin_sym_end, 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_EQ, - anon_sym_GT2, - ACTIONS(6668), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [184147] = 24, + 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [133024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8681), 1, + ACTIONS(5664), 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, + sym_literal_suffix, + ACTIONS(5662), 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_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + 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, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [133079] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5936), 22, + 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___attribute__, + 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, - ACTIONS(8685), 1, - sym_primitive_type, - ACTIONS(8687), 1, - anon_sym_enum, - ACTIONS(8689), 1, - anon_sym_class, - ACTIONS(8691), 1, - anon_sym_struct, - ACTIONS(8693), 1, - anon_sym_union, - ACTIONS(8695), 1, sym_auto, - ACTIONS(8697), 1, anon_sym_decltype, - ACTIONS(8699), 1, - anon_sym_typename, - STATE(6770), 1, - sym_type_specifier, - STATE(6831), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6839), 1, - sym_decltype_auto, - STATE(6856), 1, - sym_qualified_type_identifier, - STATE(7315), 1, - sym_type_definition_type, - STATE(7942), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(5085), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6816), 2, - sym_decltype, - sym_template_type, - ACTIONS(8683), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6854), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [184242] = 3, + anon_sym_final, + anon_sym_override, + ACTIONS(5934), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [133134] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6553), 12, + ACTIONS(5591), 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(5593), 38, + ts_builtin_sym_end, 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_EQ, + anon_sym___attribute__, + 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [133189] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5664), 18, + anon_sym_DOT_DOT_DOT, + 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_identifier, + sym_literal_suffix, + ACTIONS(5662), 29, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + 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_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DOT_DOT_DOT_GT, + [133244] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5649), 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, + sym_literal_suffix, + ACTIONS(5647), 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_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + 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, - ACTIONS(6555), 33, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [133299] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5595), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5597), 38, + ts_builtin_sym_end, + 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___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [184295] = 24, + 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [133354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8681), 1, + ACTIONS(5668), 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, + sym_literal_suffix, + ACTIONS(5666), 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_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + 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, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [133409] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5668), 18, + anon_sym_DOT_DOT_DOT, + 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_identifier, - ACTIONS(8685), 1, - sym_primitive_type, - ACTIONS(8687), 1, - anon_sym_enum, - ACTIONS(8689), 1, - anon_sym_class, - ACTIONS(8691), 1, - anon_sym_struct, - ACTIONS(8693), 1, - anon_sym_union, - ACTIONS(8695), 1, - sym_auto, - ACTIONS(8697), 1, - anon_sym_decltype, - ACTIONS(8699), 1, - anon_sym_typename, - STATE(6770), 1, - sym_type_specifier, - STATE(6831), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6839), 1, - sym_decltype_auto, - STATE(6856), 1, - sym_qualified_type_identifier, - STATE(7316), 1, - sym_type_definition_type, - STATE(7942), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(5085), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6816), 2, - sym_decltype, - sym_template_type, - ACTIONS(8683), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6854), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [184390] = 3, + sym_literal_suffix, + ACTIONS(5666), 29, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + 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_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DOT_DOT_DOT_GT, + [133464] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6557), 12, + ACTIONS(5621), 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(5623), 38, + ts_builtin_sym_end, 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___attribute__, + 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [133519] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8229), 1, + anon_sym_LBRACE, + STATE(3630), 1, + sym_attribute_specifier, + STATE(4477), 1, + sym_enumerator_list, + ACTIONS(5983), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(5981), 39, + anon_sym_COMMA, + anon_sym_RPAREN, + 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(6559), 33, - anon_sym_AMP, anon_sym___extension__, 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___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -484889,287 +442554,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [184443] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8681), 1, - sym_identifier, - ACTIONS(8685), 1, - sym_primitive_type, - ACTIONS(8687), 1, - anon_sym_enum, - ACTIONS(8689), 1, - anon_sym_class, - ACTIONS(8691), 1, - anon_sym_struct, - ACTIONS(8693), 1, - anon_sym_union, - ACTIONS(8695), 1, - sym_auto, - ACTIONS(8697), 1, - anon_sym_decltype, - ACTIONS(8699), 1, - anon_sym_typename, - STATE(6770), 1, - sym_type_specifier, - STATE(6831), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6839), 1, - sym_decltype_auto, - STATE(6856), 1, - sym_qualified_type_identifier, - STATE(7317), 1, - sym_type_definition_type, - STATE(7942), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(5085), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6816), 2, - sym_decltype, - sym_template_type, - ACTIONS(8683), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6854), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [184538] = 24, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [133582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8681), 1, - sym_identifier, - ACTIONS(8685), 1, - sym_primitive_type, - ACTIONS(8687), 1, - anon_sym_enum, - ACTIONS(8689), 1, - anon_sym_class, - ACTIONS(8691), 1, - anon_sym_struct, - ACTIONS(8693), 1, - anon_sym_union, - ACTIONS(8695), 1, - sym_auto, - ACTIONS(8697), 1, - anon_sym_decltype, - ACTIONS(8699), 1, - anon_sym_typename, - STATE(6770), 1, - sym_type_specifier, - STATE(6831), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6839), 1, - sym_decltype_auto, - STATE(6856), 1, - sym_qualified_type_identifier, - STATE(7318), 1, - sym_type_definition_type, - STATE(7942), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(5085), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6816), 2, - sym_decltype, - sym_template_type, - ACTIONS(8683), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6854), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [184633] = 24, + ACTIONS(5579), 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(5581), 38, + ts_builtin_sym_end, + 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___attribute__, + 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [133637] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8681), 1, - sym_identifier, - ACTIONS(8685), 1, - sym_primitive_type, - ACTIONS(8687), 1, - anon_sym_enum, - ACTIONS(8689), 1, - anon_sym_class, - ACTIONS(8691), 1, - anon_sym_struct, - ACTIONS(8693), 1, - anon_sym_union, - ACTIONS(8695), 1, - sym_auto, - ACTIONS(8697), 1, - anon_sym_decltype, - ACTIONS(8699), 1, - anon_sym_typename, - STATE(6770), 1, - sym_type_specifier, - STATE(6831), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6839), 1, - sym_decltype_auto, - STATE(6856), 1, - sym_qualified_type_identifier, - STATE(7319), 1, - sym_type_definition_type, - STATE(7942), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(5085), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6816), 2, - sym_decltype, - sym_template_type, - ACTIONS(8683), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6854), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8229), 1, + anon_sym_LBRACE, + STATE(3546), 1, + sym_attribute_specifier, + STATE(4480), 1, + sym_enumerator_list, + ACTIONS(5989), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [184728] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8681), 1, - sym_identifier, - ACTIONS(8685), 1, - sym_primitive_type, - ACTIONS(8687), 1, - anon_sym_enum, - ACTIONS(8689), 1, - anon_sym_class, - ACTIONS(8691), 1, - anon_sym_struct, - ACTIONS(8693), 1, - anon_sym_union, - ACTIONS(8695), 1, - sym_auto, - ACTIONS(8697), 1, - anon_sym_decltype, - ACTIONS(8699), 1, - anon_sym_typename, - STATE(6770), 1, - sym_type_specifier, - STATE(6831), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6839), 1, - sym_decltype_auto, - STATE(6856), 1, - sym_qualified_type_identifier, - STATE(7320), 1, - sym_type_definition_type, - STATE(7942), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(5085), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6816), 2, - sym_decltype, - sym_template_type, - ACTIONS(8683), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6854), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, + ACTIONS(5987), 39, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_const, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -485180,153 +442662,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [184823] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8681), 1, - sym_identifier, - ACTIONS(8685), 1, - sym_primitive_type, - ACTIONS(8687), 1, - anon_sym_enum, - ACTIONS(8689), 1, - anon_sym_class, - ACTIONS(8691), 1, - anon_sym_struct, - ACTIONS(8693), 1, - anon_sym_union, - ACTIONS(8695), 1, + anon_sym_asm, + anon_sym___asm__, sym_auto, - ACTIONS(8697), 1, anon_sym_decltype, - ACTIONS(8699), 1, - anon_sym_typename, - STATE(6770), 1, - sym_type_specifier, - STATE(6831), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6839), 1, - sym_decltype_auto, - STATE(6856), 1, - sym_qualified_type_identifier, - STATE(7322), 1, - sym_type_definition_type, - STATE(7942), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(5085), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6816), 2, - sym_decltype, - sym_template_type, - ACTIONS(8683), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6854), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [184918] = 24, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [133700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8681), 1, - sym_identifier, - ACTIONS(8685), 1, - sym_primitive_type, - ACTIONS(8687), 1, - anon_sym_enum, - ACTIONS(8689), 1, - anon_sym_class, - ACTIONS(8691), 1, - anon_sym_struct, - ACTIONS(8693), 1, - anon_sym_union, - ACTIONS(8695), 1, - sym_auto, - ACTIONS(8697), 1, - anon_sym_decltype, - ACTIONS(8699), 1, - anon_sym_typename, - STATE(6770), 1, - sym_type_specifier, - STATE(6831), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6839), 1, - sym_decltype_auto, - STATE(6856), 1, - sym_qualified_type_identifier, - STATE(7323), 1, - sym_type_definition_type, - STATE(7942), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(5085), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6816), 2, - sym_decltype, - sym_template_type, - ACTIONS(8683), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6854), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [185013] = 3, + ACTIONS(5603), 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(5605), 38, + ts_builtin_sym_end, + 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___attribute__, + 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [133755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6268), 19, - aux_sym_preproc_elif_token1, + ACTIONS(5417), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -485335,6 +442737,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -485345,13 +442749,14 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6270), 26, + anon_sym_final, + anon_sym_override, + ACTIONS(5419), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -485372,132 +442777,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [185066] = 3, + [133810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6656), 12, + ACTIONS(5394), 22, + 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___attribute__, + 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, + ACTIONS(5396), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, 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_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6658), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [185119] = 24, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [133865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, + ACTIONS(5398), 22, + 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___attribute__, + 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, - ACTIONS(2255), 1, anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, + anon_sym_final, + anon_sym_override, + ACTIONS(5400), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(10182), 1, - sym_type_descriptor, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [185214] = 3, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [133920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5518), 19, - aux_sym_preproc_elif_token1, + ACTIONS(5402), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -485506,6 +442893,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -485516,13 +442905,14 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5525), 26, + anon_sym_final, + anon_sym_override, + ACTIONS(5404), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -485543,66 +442933,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [185267] = 24, + [133975] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, + ACTIONS(4784), 1, anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(10206), 1, - sym_type_descriptor, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, + ACTIONS(7517), 1, + anon_sym_LT, + STATE(4119), 1, + sym_template_argument_list, + ACTIONS(5381), 8, + 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, + ACTIONS(5374), 36, + anon_sym_AMP, anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -485614,21 +442978,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [185362] = 7, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [134036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8647), 1, - sym_identifier, - ACTIONS(8651), 1, - sym_primitive_type, - STATE(4860), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8740), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6026), 18, + ACTIONS(5649), 18, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -485645,9 +443008,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_auto, - anon_sym_decltype, - ACTIONS(6022), 20, + sym_identifier, + sym_literal_suffix, + ACTIONS(5647), 29, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -485659,7 +443022,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -485667,15 +443029,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, 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_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, anon_sym_DOT_DOT_DOT_GT, - [185423] = 5, + [134091] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(4853), 1, - anon_sym_LBRACE, - ACTIONS(4835), 10, + ACTIONS(5747), 1, + anon_sym___attribute__, + STATE(3659), 1, + sym_attribute_specifier, + ACTIONS(6030), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -485684,13 +443056,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_EQ, - ACTIONS(4827), 33, + anon_sym_GT2, + ACTIONS(6032), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -485720,30 +443093,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [185480] = 6, + [134149] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(8742), 1, - anon_sym_LT, - STATE(3039), 1, - sym_template_argument_list, - ACTIONS(5460), 11, + ACTIONS(5702), 1, + anon_sym_COLON, + ACTIONS(8312), 1, + anon_sym___attribute__, + ACTIONS(8314), 1, + anon_sym_LBRACE, + STATE(4938), 1, + sym_field_declaration_list, + STATE(5228), 1, + sym_attribute_specifier, + STATE(8097), 1, + sym_virtual_specifier, + STATE(8936), 1, + sym_base_class_clause, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5696), 10, + anon_sym_DOT_DOT_DOT, 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_GT_GT, - anon_sym_COLON, + anon_sym_LT, anon_sym_DOT, - ACTIONS(5467), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5694), 27, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -485752,9 +443133,9 @@ 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___attribute__, - anon_sym_LBRACE, + anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -485770,13 +443151,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [185539] = 3, + anon_sym_DOT_DOT_DOT_GT, + [134219] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6561), 12, + ACTIONS(5747), 1, + anon_sym___attribute__, + STATE(3641), 1, + sym_attribute_specifier, + ACTIONS(6072), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -485789,11 +443172,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_GT2, - ACTIONS(6563), 33, + ACTIONS(6074), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -485823,152 +443205,280 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [185592] = 24, + [134277] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(4342), 1, + ACTIONS(7591), 1, + anon_sym___attribute__, + STATE(4654), 1, + sym_attribute_specifier, + ACTIONS(6022), 19, + aux_sym_preproc_elif_token1, + 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_identifier, - ACTIONS(4350), 1, - sym_primitive_type, - ACTIONS(4354), 1, - anon_sym_class, - ACTIONS(4356), 1, - anon_sym_struct, - ACTIONS(4358), 1, - anon_sym_union, - ACTIONS(4360), 1, sym_auto, - ACTIONS(4362), 1, anon_sym_decltype, - ACTIONS(8716), 1, - anon_sym_enum, - ACTIONS(8747), 1, - anon_sym_typename, - STATE(4751), 1, - sym_qualified_type_identifier, - STATE(4805), 1, - sym_decltype_auto, - STATE(5307), 1, - sym_type_specifier, - STATE(5790), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7293), 1, - sym_type_descriptor, - STATE(7904), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(4720), 2, - sym_decltype, - sym_template_type, - STATE(5077), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(8745), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4794), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [185687] = 24, + ACTIONS(6020), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [134335] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7591), 1, + anon_sym___attribute__, + STATE(4700), 1, + sym_attribute_specifier, + ACTIONS(6026), 19, + aux_sym_preproc_elif_token1, + 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_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6024), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [134393] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3899), 1, + anon_sym_LBRACE, + ACTIONS(8269), 1, + anon_sym_LPAREN2, + STATE(4270), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6386), 17, + aux_sym_preproc_elif_token1, + 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_identifier, + ACTIONS(6384), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR, + 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [134453] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7591), 1, + anon_sym___attribute__, + STATE(4674), 1, + sym_attribute_specifier, + ACTIONS(6032), 19, + aux_sym_preproc_elif_token1, + 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_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6030), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [134511] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8681), 1, + ACTIONS(7591), 1, + anon_sym___attribute__, + STATE(4683), 1, + sym_attribute_specifier, + ACTIONS(6036), 19, + aux_sym_preproc_elif_token1, + 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_identifier, - ACTIONS(8685), 1, - sym_primitive_type, - ACTIONS(8687), 1, - anon_sym_enum, - ACTIONS(8689), 1, - anon_sym_class, - ACTIONS(8691), 1, - anon_sym_struct, - ACTIONS(8693), 1, - anon_sym_union, - ACTIONS(8695), 1, sym_auto, - ACTIONS(8697), 1, anon_sym_decltype, - ACTIONS(8699), 1, - anon_sym_typename, - STATE(6770), 1, - sym_type_specifier, - STATE(6831), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6839), 1, - sym_decltype_auto, - STATE(6856), 1, - sym_qualified_type_identifier, - STATE(7279), 1, - sym_type_definition_type, - STATE(7942), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(5085), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6816), 2, - sym_decltype, - sym_template_type, - ACTIONS(8683), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6854), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [185782] = 3, + ACTIONS(6034), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [134569] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6670), 12, + ACTIONS(5747), 1, + anon_sym___attribute__, + STATE(3564), 1, + sym_attribute_specifier, + ACTIONS(6020), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -485981,11 +443491,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_GT2, - ACTIONS(6672), 33, + ACTIONS(6022), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -486015,10 +443524,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [185835] = 3, + [134627] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5649), 17, + anon_sym_DOT_DOT_DOT, + 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(5647), 29, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + 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_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DOT_DOT_DOT_GT, + [134681] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6674), 12, + ACTIONS(5747), 1, + anon_sym___attribute__, + STATE(3629), 1, + sym_attribute_specifier, + ACTIONS(6024), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -486031,11 +443595,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_GT2, - ACTIONS(6676), 33, + ACTIONS(6026), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -486065,1132 +443628,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [185888] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(10256), 1, - sym_type_descriptor, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [185983] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(10261), 1, - sym_type_descriptor, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [186078] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(10279), 1, - sym_type_descriptor, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [186173] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(10284), 1, - sym_type_descriptor, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [186268] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(10301), 1, - sym_type_descriptor, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [186363] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(10306), 1, - sym_type_descriptor, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [186458] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(10319), 1, - sym_type_descriptor, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [186553] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(10324), 1, - sym_type_descriptor, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [186648] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(10336), 1, - sym_type_descriptor, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [186743] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(10341), 1, - sym_type_descriptor, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [186838] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(10353), 1, - sym_type_descriptor, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [186933] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(10358), 1, - sym_type_descriptor, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [187028] = 24, + [134739] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, + ACTIONS(3964), 1, + anon_sym_LBRACE, + ACTIONS(8316), 1, + anon_sym_LPAREN2, + ACTIONS(8318), 1, + anon_sym_LBRACK, + ACTIONS(8320), 1, sym_auto, - ACTIONS(2255), 1, + ACTIONS(8322), 1, anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, + STATE(4802), 1, sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(10370), 1, - sym_type_descriptor, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [187123] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, + STATE(4805), 1, + sym_new_declarator, + STATE(5145), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5807), 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_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(10375), 1, - sym_type_descriptor, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [187218] = 24, + ACTIONS(5805), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_STAR, + 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [134809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(10384), 1, - sym_type_descriptor, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [187313] = 24, + ACTIONS(5660), 17, + anon_sym_DOT_DOT_DOT, + 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(5658), 29, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + 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_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DOT_DOT_DOT_GT, + [134863] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(10388), 1, - sym_type_descriptor, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, + ACTIONS(7869), 1, + anon_sym_AMP_AMP, + ACTIONS(7871), 1, + anon_sym_AMP, + ACTIONS(7877), 1, + anon_sym_LBRACK, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8038), 1, + anon_sym_const, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8326), 1, + anon_sym_DASH_GT, + ACTIONS(8328), 1, + anon_sym_requires, + STATE(5898), 1, + sym_function_attributes_start, + STATE(6234), 1, + sym_ref_qualifier, + STATE(6357), 1, + sym_function_exception_specification, + STATE(7021), 1, + sym_requires_clause, + STATE(7100), 1, + sym_function_postfix, + STATE(7257), 1, + sym_function_attributes_end, + STATE(7417), 1, + sym_trailing_return_type, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(4937), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5586), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(7867), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + sym_semgrep_metavar, + ACTIONS(8030), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -487201,24 +443814,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [187408] = 8, + [134967] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(8749), 1, - anon_sym_LT, - STATE(5054), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5099), 1, - sym_template_argument_list, - ACTIONS(8623), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4827), 9, - anon_sym_DOT_DOT_DOT, + ACTIONS(3899), 1, + anon_sym_LBRACE, + ACTIONS(8269), 1, + anon_sym_LPAREN2, + STATE(4260), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6377), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -487226,9 +443833,22 @@ static const uint16_t ts_small_parse_table[] = { 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(4835), 28, - anon_sym_LPAREN2, + sym_identifier, + ACTIONS(6375), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -487239,439 +443859,242 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, 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_DOT_STAR, + anon_sym_DASH_GT, + [135027] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5668), 17, + anon_sym_DOT_DOT_DOT, + 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(5666), 29, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, 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_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, anon_sym_DOT_DOT_DOT_GT, - [187471] = 24, + [135081] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, + ACTIONS(3964), 1, + anon_sym_LBRACE, + ACTIONS(8316), 1, + anon_sym_LPAREN2, + ACTIONS(8318), 1, + anon_sym_LBRACK, + ACTIONS(8320), 1, sym_auto, - ACTIONS(2255), 1, + ACTIONS(8322), 1, anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, + STATE(4779), 1, + sym_new_declarator, + STATE(4802), 1, sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(10397), 1, - sym_type_descriptor, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [187566] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, + STATE(5149), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5759), 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_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(10400), 1, - sym_type_descriptor, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [187661] = 24, + ACTIONS(5757), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_STAR, + 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [135151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, + ACTIONS(5938), 21, + 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___attribute__, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(10409), 1, - sym_type_descriptor, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [187756] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, sym_auto, - ACTIONS(2255), 1, anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(10411), 1, - sym_type_descriptor, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [187851] = 24, + anon_sym_final, + anon_sym_override, + ACTIONS(4789), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [135205] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7293), 1, - sym_type_descriptor, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, + ACTIONS(7869), 1, + anon_sym_AMP_AMP, + ACTIONS(7871), 1, + anon_sym_AMP, + ACTIONS(7877), 1, + anon_sym_LBRACK, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8038), 1, anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [187946] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(6255), 1, - sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9689), 1, - sym_type_descriptor, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(5043), 2, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8326), 1, + anon_sym_DASH_GT, + ACTIONS(8330), 1, + anon_sym_requires, + STATE(5917), 1, + sym_function_attributes_start, + STATE(6247), 1, + sym_ref_qualifier, + STATE(6362), 1, + sym_function_exception_specification, + STATE(7021), 1, + sym_requires_clause, + STATE(7100), 1, + sym_function_postfix, + STATE(7307), 1, + sym_function_attributes_end, + STATE(7450), 1, + sym_trailing_return_type, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7883), 2, + anon_sym_final, + anon_sym_override, + STATE(4937), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5586), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(7867), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + sym_semgrep_metavar, + ACTIONS(8030), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -487682,10 +444105,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [188041] = 3, + [135309] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 19, + ACTIONS(7591), 1, + anon_sym___attribute__, + STATE(4643), 1, + sym_attribute_specifier, + ACTIONS(6052), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -487705,7 +444132,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5498), 26, + ACTIONS(6050), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -487723,7 +444150,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -487732,14 +444158,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [188094] = 5, + [135367] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8455), 1, - anon_sym___attribute__, - STATE(5227), 1, - sym_attribute_specifier, - ACTIONS(6458), 18, + ACTIONS(8333), 1, + sym_identifier, + ACTIONS(8337), 1, + sym_primitive_type, + STATE(4495), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8335), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5969), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -487748,6 +444182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -487755,15 +444190,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6456), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(5965), 20, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -487783,66 +444212,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [188150] = 3, + anon_sym_DOT_DOT_DOT_GT, + [135429] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7207), 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, + ACTIONS(4784), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(7205), 33, - anon_sym_AMP, - anon_sym___extension__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [188202] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(5031), 1, + STATE(1833), 1, + sym_template_argument_list, + STATE(4696), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8751), 4, + ACTIONS(8339), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6050), 10, + ACTIONS(6090), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -487853,7 +444238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(6048), 29, + ACTIONS(6088), 29, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -487883,14 +444268,15 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DOT_DOT_DOT_GT, - [188258] = 5, + [135491] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8455), 1, + ACTIONS(7591), 1, anon_sym___attribute__, - STATE(5202), 1, + STATE(4646), 1, sym_attribute_specifier, - ACTIONS(6428), 18, + ACTIONS(6062), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -487909,12 +444295,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6426), 24, + ACTIONS(6060), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -487934,10 +444321,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [188314] = 3, + [135549] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6588), 19, + ACTIONS(7591), 1, + anon_sym___attribute__, + STATE(4647), 1, + sym_attribute_specifier, + ACTIONS(6070), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -487957,7 +444348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6586), 25, + ACTIONS(6068), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -487983,10 +444374,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [188366] = 3, + [135607] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6310), 19, + ACTIONS(7591), 1, + anon_sym___attribute__, + STATE(4648), 1, + sym_attribute_specifier, + ACTIONS(6074), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -488006,7 +444401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6308), 25, + ACTIONS(6072), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -488032,14 +444427,286 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [188418] = 5, + [135665] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5747), 1, + anon_sym___attribute__, + STATE(3608), 1, + sym_attribute_specifier, + ACTIONS(6102), 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(6104), 32, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [135723] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(7517), 1, + anon_sym_LT, + ACTIONS(8341), 1, + anon_sym_LBRACK, + STATE(3723), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4954), 1, + sym_template_argument_list, + ACTIONS(4786), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4771), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + ACTIONS(4791), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4763), 31, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_operator, + [135791] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(8343), 1, + anon_sym_LT, + STATE(2744), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2925), 1, + sym_template_argument_list, + ACTIONS(5468), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4763), 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_GT_GT, + anon_sym_DOT, + ACTIONS(4771), 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_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_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [135855] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5664), 17, + anon_sym_DOT_DOT_DOT, + 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(5662), 29, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + 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_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DOT_DOT_DOT_GT, + [135909] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7875), 1, + anon_sym___attribute__, + STATE(3608), 1, + sym_attribute_specifier, + ACTIONS(6104), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(6102), 40, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [135967] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8455), 1, + ACTIONS(7591), 1, anon_sym___attribute__, - STATE(5205), 1, + STATE(4659), 1, sym_attribute_specifier, - ACTIONS(6432), 18, + ACTIONS(6086), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -488058,12 +444725,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6430), 24, + ACTIONS(6084), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -488083,14 +444751,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [188474] = 5, + [136025] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7875), 1, + anon_sym___attribute__, + STATE(3564), 1, + sym_attribute_specifier, + ACTIONS(6022), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(6020), 40, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [136083] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7875), 1, + anon_sym___attribute__, + STATE(3629), 1, + sym_attribute_specifier, + ACTIONS(6026), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(6024), 40, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [136141] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8455), 1, + ACTIONS(7591), 1, anon_sym___attribute__, - STATE(5206), 1, + STATE(4642), 1, sym_attribute_specifier, - ACTIONS(6436), 18, + ACTIONS(6104), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -488109,12 +444884,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6434), 24, + ACTIONS(6102), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -488134,137 +444910,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [188530] = 4, + [136199] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5525), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5527), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(7875), 1, + anon_sym___attribute__, + STATE(3659), 1, + sym_attribute_specifier, + ACTIONS(6032), 4, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(5520), 32, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(6030), 40, 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - [188584] = 3, + anon_sym___extension__, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [136257] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6197), 19, - 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(7875), 1, anon_sym___attribute__, - 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(4853), 25, - anon_sym_DOT_DOT_DOT, + STATE(3675), 1, + sym_attribute_specifier, + ACTIONS(6036), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(6034), 40, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + 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___extension__, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [188636] = 3, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [136315] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4384), 11, - anon_sym_DOT_DOT_DOT, + ACTIONS(7875), 1, + anon_sym___attribute__, + STATE(3541), 1, + sym_attribute_specifier, + ACTIONS(6052), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(6050), 40, 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_SEMI, + anon_sym___extension__, + anon_sym_extern, anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, anon_sym_GT2, - ACTIONS(4382), 33, + anon_sym_try, + anon_sym_requires, + [136373] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7875), 1, + anon_sym___attribute__, + STATE(3698), 1, + sym_attribute_specifier, + ACTIONS(6062), 4, anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(6060), 40, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_static, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -488275,72 +445111,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, + anon_sym_asm, + anon_sym___asm__, + sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [188688] = 23, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [136431] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3289), 1, - anon_sym_class, - ACTIONS(3291), 1, - anon_sym_struct, - ACTIONS(3293), 1, - anon_sym_union, - ACTIONS(3317), 1, - sym_auto, - ACTIONS(3319), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8701), 1, - sym_identifier, - ACTIONS(8705), 1, - sym_primitive_type, - ACTIONS(8707), 1, - anon_sym_enum, - ACTIONS(8709), 1, - anon_sym_typename, - STATE(3472), 1, - sym_decltype_auto, - STATE(3523), 1, - sym_qualified_type_identifier, - STATE(6109), 1, - sym_type_specifier, - STATE(6354), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7876), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(3429), 2, - sym_decltype, - sym_template_type, - STATE(6587), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(8703), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3473), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, + ACTIONS(7875), 1, + anon_sym___attribute__, + STATE(3648), 1, + sym_attribute_specifier, + ACTIONS(6070), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, + ACTIONS(6068), 40, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -488351,38 +445164,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [188780] = 3, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [136489] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3658), 11, - anon_sym_DOT_DOT_DOT, + ACTIONS(7875), 1, + anon_sym___attribute__, + STATE(3641), 1, + sym_attribute_specifier, + ACTIONS(6074), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(6072), 40, 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_SEMI, + anon_sym___extension__, + anon_sym_extern, anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, anon_sym_GT2, - ACTIONS(3656), 33, + anon_sym_try, + anon_sym_requires, + [136547] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7875), 1, + anon_sym___attribute__, + STATE(3538), 1, + sym_attribute_specifier, + ACTIONS(6096), 4, anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(6094), 40, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_static, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -488393,70 +445270,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, + anon_sym_asm, + anon_sym___asm__, + sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [188832] = 6, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [136605] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(8749), 1, - anon_sym_LT, - STATE(5099), 1, - sym_template_argument_list, - ACTIONS(6197), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(7875), 1, + anon_sym___attribute__, + STATE(3551), 1, + sym_attribute_specifier, + ACTIONS(6100), 4, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(4853), 31, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(6098), 40, + 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___attribute__, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, 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_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_DOT_DOT_DOT_GT, - [188890] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [136663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4827), 19, - aux_sym_preproc_elif_token1, + ACTIONS(5374), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -488465,6 +445346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -488475,13 +445357,14 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(4835), 25, + anon_sym_final, + anon_sym_override, + ACTIONS(5381), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -488495,49 +445378,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [188942] = 12, + [136717] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8584), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(8586), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8588), 1, - anon_sym___declspec, - ACTIONS(8590), 1, - anon_sym_virtual, - ACTIONS(8592), 1, - anon_sym_alignas, - STATE(5061), 2, - sym_declaration_modifiers, - aux_sym_declaration_specifiers_repeat1, - ACTIONS(7960), 4, - anon_sym_AMP, - anon_sym___based, - sym_identifier, - anon_sym_operator, - ACTIONS(7962), 5, + STATE(3595), 1, + sym_attribute_specifier, + ACTIONS(6084), 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, - STATE(6247), 7, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - ACTIONS(8582), 9, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6086), 32, + anon_sym_AMP, + anon_sym___extension__, anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -488546,8 +445420,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(8580), 12, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -488559,64 +445431,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [189012] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, + sym_identifier, sym_auto, - ACTIONS(2255), 1, anon_sym_decltype, - ACTIONS(3716), 1, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [136775] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5747), 1, + anon_sym___attribute__, + STATE(3538), 1, + sym_attribute_specifier, + ACTIONS(6094), 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(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - ACTIONS(8677), 1, - anon_sym_enum, - ACTIONS(8679), 1, - anon_sym_typename, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(5529), 1, - sym_type_specifier, - STATE(6241), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(2479), 2, - sym_decltype, - sym_template_type, - STATE(6587), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(8675), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6096), 32, + anon_sym_AMP, anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -488628,79 +445484,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [189104] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8720), 1, sym_identifier, - ACTIONS(8724), 1, - sym_primitive_type, - ACTIONS(8726), 1, - anon_sym_enum, - ACTIONS(8728), 1, - anon_sym_class, - ACTIONS(8730), 1, - anon_sym_struct, - ACTIONS(8732), 1, - anon_sym_union, - ACTIONS(8734), 1, sym_auto, - ACTIONS(8736), 1, anon_sym_decltype, - ACTIONS(8738), 1, - anon_sym_typename, - STATE(5445), 1, - sym_type_specifier, - STATE(6148), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6554), 1, - sym_qualified_type_identifier, - STATE(6688), 1, - sym_decltype_auto, - STATE(7920), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(6516), 2, - sym_decltype, - sym_template_type, - STATE(6587), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(8722), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6689), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(2213), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [189196] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [136833] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6596), 19, + ACTIONS(7591), 1, + anon_sym___attribute__, + STATE(4675), 1, + sym_attribute_specifier, + ACTIONS(6096), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -488720,7 +445518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6594), 25, + ACTIONS(6094), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -488746,10 +445544,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [189248] = 3, + [136891] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5460), 19, + ACTIONS(3899), 1, + anon_sym_LBRACE, + ACTIONS(8269), 1, + anon_sym_LPAREN2, + STATE(4310), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6373), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -488767,16 +445572,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5467), 25, + ACTIONS(6371), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -488787,18 +445589,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, 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_DOT_STAR, anon_sym_DASH_GT, - [189300] = 3, + [136951] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6600), 19, + ACTIONS(7591), 1, + anon_sym___attribute__, + STATE(4677), 1, + sym_attribute_specifier, + ACTIONS(6100), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -488818,7 +445625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6598), 25, + ACTIONS(6098), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -488844,67 +445651,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [189352] = 3, + [137009] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6664), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8347), 1, + anon_sym_RPAREN, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(8194), 1, + sym_type_descriptor, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [137107] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5747), 1, + anon_sym___attribute__, + STATE(3698), 1, + sym_attribute_specifier, + ACTIONS(6060), 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(6062), 32, 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, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6662), 25, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [137165] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5747), 1, + anon_sym___attribute__, + STATE(3675), 1, + sym_attribute_specifier, + ACTIONS(6034), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + 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_LBRACE, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6036), 32, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + 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_DOT_STAR, - anon_sym_DASH_GT, - [189404] = 6, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [137223] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3778), 1, + ACTIONS(3964), 1, anon_sym_LBRACE, - ACTIONS(8507), 1, + ACTIONS(8316), 1, anon_sym_LPAREN2, - STATE(5357), 2, + ACTIONS(8318), 1, + anon_sym_LBRACK, + ACTIONS(8320), 1, + sym_auto, + ACTIONS(8322), 1, + anon_sym_decltype, + STATE(4793), 1, + sym_new_declarator, + STATE(4802), 1, + sym_decltype_auto, + STATE(5124), 2, sym_argument_list, sym_initializer_list, - ACTIONS(6916), 17, - aux_sym_preproc_elif_token1, + ACTIONS(5830), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -488921,13 +445867,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6914), 23, + ACTIONS(5828), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -488938,168 +445883,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [189462] = 5, + [137293] = 5, ACTIONS(3), 1, sym_comment, - STATE(5064), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8753), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5992), 10, + ACTIONS(5747), 1, + anon_sym___attribute__, + STATE(3541), 1, + sym_attribute_specifier, + ACTIONS(6050), 12, anon_sym_DOT_DOT_DOT, - 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(5990), 29, + 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___attribute__, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6052), 32, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, 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_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [189518] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [137351] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 19, - aux_sym_preproc_elif_token1, - 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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6606), 25, + ACTIONS(5747), 1, + anon_sym___attribute__, + STATE(3551), 1, + sym_attribute_specifier, + ACTIONS(6098), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [189570] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(5064), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8753), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5998), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6100), 32, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(5996), 29, - anon_sym_LPAREN2, - anon_sym_STAR, - 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___attribute__, - anon_sym_LBRACE, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, 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_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [189626] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [137409] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6612), 19, + ACTIONS(3899), 1, + anon_sym_LBRACE, + ACTIONS(8269), 1, + anon_sym_LPAREN2, + STATE(4308), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6397), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -489117,16 +446023,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6610), 25, + ACTIONS(6395), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -489137,19 +446040,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, 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_DOT_STAR, anon_sym_DASH_GT, - [189678] = 3, + [137469] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6668), 19, - aux_sym_preproc_elif_token1, + STATE(4497), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5653), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(8363), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5978), 19, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -489158,6 +446072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -489165,16 +446080,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6666), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(5975), 20, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -489194,36 +446102,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [189730] = 3, + anon_sym_DOT_DOT_DOT_GT, + [137529] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6616), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(5747), 1, + anon_sym___attribute__, + STATE(3648), 1, + sym_attribute_specifier, + ACTIONS(6068), 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(6070), 32, 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, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6614), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [137587] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4497), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8363), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5651), 20, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -489243,11 +446186,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [189782] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6672), 19, - aux_sym_preproc_elif_token1, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(5653), 21, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -489256,6 +446197,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, + sym_primitive_type, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -489266,14 +446209,49 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6670), 25, + [137645] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3964), 1, + anon_sym_LBRACE, + ACTIONS(8316), 1, + anon_sym_LPAREN2, + ACTIONS(8318), 1, + anon_sym_LBRACK, + ACTIONS(8320), 1, + sym_auto, + ACTIONS(8322), 1, + anon_sym_decltype, + STATE(4785), 1, + sym_new_declarator, + STATE(4802), 1, + sym_decltype_auto, + STATE(5139), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5878), 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_identifier, + ACTIONS(5876), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, + aux_sym_preproc_elif_token1, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -489284,19 +446262,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [189834] = 3, + [137715] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6630), 19, - aux_sym_preproc_elif_token1, + ACTIONS(7875), 1, + anon_sym___attribute__, + STATE(3595), 1, + sym_attribute_specifier, + ACTIONS(6086), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(6084), 40, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [137773] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(9757), 1, + sym_type_descriptor, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [137868] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(4789), 1, + anon_sym_LBRACE, + ACTIONS(4771), 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_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(4763), 33, + anon_sym_AMP, + anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [137925] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8081), 1, + anon_sym___attribute__, + ACTIONS(8308), 1, + anon_sym_LBRACE, + STATE(4688), 1, + sym_enumerator_list, + STATE(4776), 1, + sym_attribute_specifier, + ACTIONS(5983), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -489315,13 +446474,12 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6628), 25, + ACTIONS(5981), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -489333,7 +446491,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -489341,10 +446498,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [189886] = 3, + [137986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6676), 19, + ACTIONS(6284), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -489354,6 +446511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -489364,7 +446522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6674), 25, + ACTIONS(6282), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -489390,37 +446548,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [189938] = 3, + [138039] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7756), 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, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, + anon_sym_decltype, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(7754), 33, - anon_sym_AMP, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(9788), 1, + sym_type_descriptor, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, anon_sym___extension__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -489432,68 +446619,507 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [138134] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5768), 1, + sym_type_specifier, + STATE(7055), 1, + sym_type_descriptor, + STATE(7523), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4657), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [138229] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(9868), 1, + sym_type_descriptor, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [138324] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, anon_sym_template, - anon_sym_operator, - [189990] = 5, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9076), 1, + sym_type_descriptor, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [138419] = 24, ACTIONS(3), 1, sym_comment, - STATE(5062), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8755), 4, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9399), 1, + sym_type_descriptor, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5957), 10, - anon_sym_DOT_DOT_DOT, - 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(5959), 29, - anon_sym_LPAREN2, - anon_sym_STAR, - 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [138514] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, sym_auto, + ACTIONS(2253), 1, anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [190046] = 3, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9418), 1, + sym_type_descriptor, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [138609] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(9654), 1, + sym_type_descriptor, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [138704] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(9690), 1, + sym_type_descriptor, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [138799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6684), 19, + ACTIONS(6078), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -489513,7 +447139,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6682), 25, + ACTIONS(6076), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -489531,6 +447157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -489539,14 +447166,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [190098] = 5, + [138852] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(8455), 1, - anon_sym___attribute__, - STATE(5223), 1, - sym_attribute_specifier, - ACTIONS(6454), 18, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(9748), 1, + sym_type_descriptor, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [138947] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(9741), 1, + sym_type_descriptor, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [139042] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9208), 1, + sym_type_descriptor, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [139137] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6240), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -489555,6 +447392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -489565,12 +447403,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6452), 24, + ACTIONS(6238), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -489590,104 +447429,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [190154] = 3, + [139190] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6688), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9487), 1, + sym_type_descriptor, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [139285] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7473), 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(7471), 33, 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, + anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, sym_identifier, - sym_auto, anon_sym_decltype, - ACTIONS(6686), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [190206] = 23, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [139338] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2223), 1, - anon_sym_enum, - ACTIONS(2225), 1, - anon_sym_class, - ACTIONS(2227), 1, - anon_sym_struct, - ACTIONS(2229), 1, - anon_sym_union, - ACTIONS(2253), 1, + ACTIONS(2251), 1, sym_auto, - ACTIONS(2255), 1, + ACTIONS(2253), 1, anon_sym_decltype, - ACTIONS(2257), 1, - anon_sym_typename, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8660), 1, + ACTIONS(8345), 1, sym_identifier, - ACTIONS(8664), 1, + ACTIONS(8351), 1, sym_primitive_type, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, sym_decltype_auto, - STATE(6204), 1, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, sym_type_specifier, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, + STATE(7523), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9521), 1, + sym_type_descriptor, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(2479), 2, + STATE(2580), 2, sym_decltype, sym_template_type, - STATE(6587), 2, + STATE(4689), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - ACTIONS(2217), 4, + ACTIONS(8349), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2630), 7, + STATE(2673), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -489695,7 +447608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - ACTIONS(2213), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -489708,36 +447621,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [190298] = 3, + [139433] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6694), 19, - aux_sym_preproc_elif_token1, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(8343), 1, + anon_sym_LT, + STATE(2925), 1, + sym_template_argument_list, + ACTIONS(5938), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_GT_GT, + anon_sym_COLON, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6692), 25, + ACTIONS(4789), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -489746,115 +447653,149 @@ 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___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [190350] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6572), 19, - aux_sym_preproc_elif_token1, - 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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6570), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [190402] = 23, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [139492] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3287), 1, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8366), 1, + sym_identifier, + ACTIONS(8370), 1, + sym_primitive_type, + ACTIONS(8372), 1, anon_sym_enum, - ACTIONS(3289), 1, + ACTIONS(8374), 1, anon_sym_class, - ACTIONS(3291), 1, + ACTIONS(8376), 1, anon_sym_struct, - ACTIONS(3293), 1, + ACTIONS(8378), 1, anon_sym_union, - ACTIONS(3317), 1, + ACTIONS(8380), 1, sym_auto, - ACTIONS(3319), 1, + ACTIONS(8382), 1, anon_sym_decltype, - ACTIONS(3321), 1, + ACTIONS(8384), 1, anon_sym_typename, - ACTIONS(3716), 1, + STATE(3466), 1, + sym_qualified_type_identifier, + STATE(4990), 1, + sym_decltype_auto, + STATE(6302), 1, + sym_type_specifier, + STATE(6304), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6891), 1, + sym_type_definition_type, + STATE(7572), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2572), 2, + sym_decltype, + sym_template_type, + STATE(4666), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8368), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4991), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [139587] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, + anon_sym_decltype, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8701), 1, + ACTIONS(8345), 1, sym_identifier, - ACTIONS(8705), 1, + ACTIONS(8351), 1, sym_primitive_type, - STATE(3472), 1, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, sym_decltype_auto, - STATE(3523), 1, + STATE(2741), 1, sym_qualified_type_identifier, - STATE(6306), 1, + STATE(5799), 1, sym_type_specifier, - STATE(6532), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7876), 1, + STATE(7523), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9339), 1, + sym_type_descriptor, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(3429), 2, + STATE(2580), 2, sym_decltype, sym_template_type, - STATE(6587), 2, + STATE(4689), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - ACTIONS(3283), 4, + ACTIONS(8349), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3473), 7, + STATE(2673), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -489862,7 +447803,7 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - ACTIONS(2213), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -489875,110 +447816,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [190494] = 5, + [139682] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(8455), 1, - anon_sym___attribute__, - STATE(5226), 1, - sym_attribute_specifier, - ACTIONS(6322), 18, - 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(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8366), 1, sym_identifier, + ACTIONS(8370), 1, + sym_primitive_type, + ACTIONS(8372), 1, + anon_sym_enum, + ACTIONS(8374), 1, + anon_sym_class, + ACTIONS(8376), 1, + anon_sym_struct, + ACTIONS(8378), 1, + anon_sym_union, + ACTIONS(8380), 1, sym_auto, + ACTIONS(8382), 1, anon_sym_decltype, - ACTIONS(6320), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [190550] = 3, + ACTIONS(8384), 1, + anon_sym_typename, + STATE(3466), 1, + sym_qualified_type_identifier, + STATE(4990), 1, + sym_decltype_auto, + STATE(6302), 1, + sym_type_specifier, + STATE(6304), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6903), 1, + sym_type_definition_type, + STATE(7572), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2572), 2, + sym_decltype, + sym_template_type, + STATE(4666), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8368), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4991), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [139777] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6658), 19, - aux_sym_preproc_elif_token1, - 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(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(9999), 1, + sym_type_descriptor, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [139872] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, sym_auto, + ACTIONS(2253), 1, anon_sym_decltype, - ACTIONS(6656), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [190602] = 3, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9225), 1, + sym_type_descriptor, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [139967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6590), 11, + ACTIONS(4771), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -489986,11 +448040,12 @@ 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_EQ, anon_sym_GT2, - ACTIONS(6592), 33, + ACTIONS(4763), 33, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -490018,265 +448073,622 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constinit, anon_sym_consteval, sym_identifier, + sym_auto, anon_sym_decltype, anon_sym_virtual, anon_sym_alignas, - anon_sym_explicit, anon_sym_template, anon_sym_operator, - [190654] = 5, + [140020] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(8455), 1, + ACTIONS(7869), 1, + anon_sym_AMP_AMP, + ACTIONS(7871), 1, + anon_sym_AMP, + ACTIONS(7877), 1, + anon_sym_LBRACK, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8035), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8038), 1, + anon_sym_const, + ACTIONS(8207), 1, anon_sym___attribute__, - STATE(5197), 1, + ACTIONS(8386), 1, + anon_sym_DASH_GT, + ACTIONS(8388), 1, + anon_sym_requires, + STATE(6004), 1, + sym_function_attributes_start, + STATE(6252), 1, + sym_ref_qualifier, + STATE(6433), 1, + sym_function_exception_specification, + STATE(6851), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7281), 1, + sym_function_attributes_end, + STATE(7407), 1, + sym_trailing_return_type, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7867), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4937), 2, sym_attribute_specifier, - ACTIONS(6424), 18, - 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_identifier, + aux_sym_type_definition_repeat1, + STATE(5586), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(8030), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [140123] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8380), 1, sym_auto, + ACTIONS(8390), 1, + sym_identifier, + ACTIONS(8394), 1, + sym_primitive_type, + ACTIONS(8396), 1, + anon_sym_enum, + ACTIONS(8398), 1, + anon_sym_class, + ACTIONS(8400), 1, + anon_sym_struct, + ACTIONS(8402), 1, + anon_sym_union, + ACTIONS(8404), 1, anon_sym_decltype, - ACTIONS(6422), 24, + ACTIONS(8406), 1, + anon_sym_typename, + STATE(3466), 1, + sym_qualified_type_identifier, + STATE(4990), 1, + sym_decltype_auto, + STATE(5100), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5686), 1, + sym_type_specifier, + STATE(6867), 1, + sym_type_descriptor, + STATE(7551), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(3324), 2, + sym_decltype, + sym_template_type, + STATE(4663), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8392), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4991), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [140218] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5385), 1, + anon_sym_LBRACK, + ACTIONS(7816), 1, + anon_sym_LT, + STATE(4664), 1, + sym_template_argument_list, + ACTIONS(5378), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(5381), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [190710] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6522), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(5374), 32, 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, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6520), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [190762] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [140281] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6644), 19, - aux_sym_preproc_elif_token1, - 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(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9424), 1, + sym_type_descriptor, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [140376] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8366), 1, sym_identifier, + ACTIONS(8370), 1, + sym_primitive_type, + ACTIONS(8372), 1, + anon_sym_enum, + ACTIONS(8374), 1, + anon_sym_class, + ACTIONS(8376), 1, + anon_sym_struct, + ACTIONS(8378), 1, + anon_sym_union, + ACTIONS(8380), 1, sym_auto, + ACTIONS(8382), 1, anon_sym_decltype, - ACTIONS(6642), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [190814] = 3, + ACTIONS(8384), 1, + anon_sym_typename, + STATE(3466), 1, + sym_qualified_type_identifier, + STATE(4990), 1, + sym_decltype_auto, + STATE(6302), 1, + sym_type_specifier, + STATE(6304), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6894), 1, + sym_type_definition_type, + STATE(7572), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2572), 2, + sym_decltype, + sym_template_type, + STATE(4666), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8368), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4991), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [140471] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6654), 19, - aux_sym_preproc_elif_token1, - 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(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9133), 1, + sym_type_descriptor, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [140566] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, sym_auto, + ACTIONS(2253), 1, anon_sym_decltype, - ACTIONS(6652), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [190866] = 5, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5910), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9169), 1, + sym_type_descriptor, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4692), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [140661] = 24, ACTIONS(3), 1, sym_comment, - STATE(5064), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8753), 4, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(9792), 1, + sym_type_descriptor, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6034), 10, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [140756] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4424), 12, anon_sym_DOT_DOT_DOT, - 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(6032), 29, + 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_EQ, + anon_sym_GT2, + ACTIONS(4426), 33, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___declspec, + anon_sym___based, 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [190922] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [140809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6592), 19, + ACTIONS(6248), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -490286,6 +448698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -490296,7 +448709,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6590), 25, + ACTIONS(6246), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -490322,211 +448735,294 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [190974] = 3, + [140862] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6604), 19, - aux_sym_preproc_elif_token1, - 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_identifier, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, sym_auto, + ACTIONS(2253), 1, anon_sym_decltype, - ACTIONS(6602), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [191026] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8467), 1, - anon_sym_LBRACK, - STATE(5116), 1, - sym_new_declarator, - ACTIONS(6943), 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(6941), 33, - ts_builtin_sym_end, - 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - [191082] = 6, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(10032), 1, + sym_type_descriptor, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [140957] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, + anon_sym_decltype, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8757), 1, - anon_sym_LT, - STATE(5191), 1, - sym_template_argument_list, - ACTIONS(5460), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, + ACTIONS(8345), 1, sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5910), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9217), 1, + sym_type_descriptor, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4692), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [141052] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, sym_auto, + ACTIONS(2253), 1, anon_sym_decltype, - ACTIONS(5467), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [191140] = 3, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9140), 1, + sym_type_descriptor, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [141147] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5460), 19, - 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___attribute__, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, sym_auto, + ACTIONS(2253), 1, anon_sym_decltype, - ACTIONS(5467), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [191192] = 3, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(9803), 1, + sym_type_descriptor, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [141242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 11, + ACTIONS(7185), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -490534,11 +449030,12 @@ 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_EQ, anon_sym_GT2, - ACTIONS(4520), 33, + ACTIONS(7183), 33, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -490572,43 +449069,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_explicit, anon_sym_template, anon_sym_operator, - [191244] = 12, + [141295] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(8766), 1, - anon_sym___attribute__, - ACTIONS(8769), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8772), 1, - anon_sym___declspec, - ACTIONS(8775), 1, - anon_sym_virtual, - ACTIONS(8778), 1, - anon_sym_alignas, - STATE(5061), 2, - sym_declaration_modifiers, - aux_sym_declaration_specifiers_repeat1, - ACTIONS(8005), 4, - anon_sym_AMP, - anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, sym_identifier, - anon_sym_operator, - ACTIONS(8007), 5, - anon_sym_DOT_DOT_DOT, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9136), 1, + sym_type_descriptor, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [141390] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(6867), 1, + sym_type_descriptor, + STATE(7523), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [141485] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5747), 1, + anon_sym___attribute__, + ACTIONS(8229), 1, + anon_sym_LBRACE, + ACTIONS(8408), 1, + anon_sym_COLON, + STATE(3597), 1, + sym_attribute_specifier, + STATE(4351), 1, + sym_enum_base_clause, + STATE(4450), 1, + sym_enumerator_list, + ACTIONS(6516), 7, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - STATE(6247), 7, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - ACTIONS(8763), 9, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(6514), 32, + anon_sym_AMP, + anon_sym___extension__, anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -490617,8 +449249,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(8760), 12, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -490630,77 +449260,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [191314] = 5, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [141550] = 24, ACTIONS(3), 1, sym_comment, - STATE(5064), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8380), 1, + sym_auto, + ACTIONS(8394), 1, + sym_primitive_type, + ACTIONS(8404), 1, + anon_sym_decltype, + ACTIONS(8410), 1, + sym_identifier, + ACTIONS(8412), 1, + anon_sym_enum, + ACTIONS(8414), 1, + anon_sym_class, + ACTIONS(8416), 1, + anon_sym_struct, + ACTIONS(8418), 1, + anon_sym_union, + ACTIONS(8420), 1, + anon_sym_typename, + STATE(3466), 1, + sym_qualified_type_identifier, + STATE(4886), 1, + sym_type_specifier, + STATE(4990), 1, + sym_decltype_auto, + STATE(5100), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8753), 4, + STATE(6867), 1, + sym_type_descriptor, + STATE(7521), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(3324), 2, + sym_decltype, + sym_template_type, + STATE(4697), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8392), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6064), 10, - anon_sym_DOT_DOT_DOT, - 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(6062), 29, - anon_sym_LPAREN2, - anon_sym_STAR, - 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, + STATE(4991), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [141645] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, sym_auto, + ACTIONS(2253), 1, anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [191370] = 3, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9237), 1, + sym_type_descriptor, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [141740] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8404), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5747), 1, + anon_sym___attribute__, + ACTIONS(8229), 1, + anon_sym_LBRACE, + ACTIONS(8408), 1, + anon_sym_COLON, + STATE(3654), 1, + sym_attribute_specifier, + STATE(4322), 1, + sym_enum_base_clause, + STATE(4492), 1, + sym_enumerator_list, + ACTIONS(6522), 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_EQ, - anon_sym_GT2, - ACTIONS(8402), 33, + ACTIONS(6520), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -490724,24 +449459,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constinit, anon_sym_consteval, sym_identifier, + sym_auto, anon_sym_decltype, anon_sym_virtual, anon_sym_alignas, - anon_sym_explicit, anon_sym_template, anon_sym_operator, - [191422] = 5, + [141805] = 3, ACTIONS(3), 1, sym_comment, - STATE(5064), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8781), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5699), 10, - anon_sym_DOT_DOT_DOT, + ACTIONS(6314), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -490750,53 +449478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(5697), 29, - anon_sym_LPAREN2, - anon_sym_STAR, - 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [191478] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8455), 1, anon_sym___attribute__, - STATE(5214), 1, - sym_attribute_specifier, - ACTIONS(6388), 18, - 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, @@ -490807,12 +449489,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6386), 24, + ACTIONS(6312), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -490832,14 +449515,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [191534] = 5, + [141858] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8455), 1, - anon_sym___attribute__, - STATE(5233), 1, - sym_attribute_specifier, - ACTIONS(6494), 18, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(4763), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -490858,12 +449540,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6492), 24, + ACTIONS(4771), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -490883,65 +449566,437 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [191590] = 5, + [141913] = 24, ACTIONS(3), 1, sym_comment, - STATE(5029), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8366), 1, + sym_identifier, + ACTIONS(8370), 1, + sym_primitive_type, + ACTIONS(8372), 1, + anon_sym_enum, + ACTIONS(8374), 1, + anon_sym_class, + ACTIONS(8376), 1, + anon_sym_struct, + ACTIONS(8378), 1, + anon_sym_union, + ACTIONS(8380), 1, + sym_auto, + ACTIONS(8382), 1, + anon_sym_decltype, + ACTIONS(8384), 1, + anon_sym_typename, + STATE(3466), 1, + sym_qualified_type_identifier, + STATE(4990), 1, + sym_decltype_auto, + STATE(6302), 1, + sym_type_specifier, + STATE(6304), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8784), 4, + STATE(6848), 1, + sym_type_definition_type, + STATE(7572), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2572), 2, + sym_decltype, + sym_template_type, + STATE(4666), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8368), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6007), 10, - anon_sym_DOT_DOT_DOT, - 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(6005), 29, - anon_sym_LPAREN2, - anon_sym_STAR, - 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, + STATE(4991), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [142008] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, sym_auto, + ACTIONS(2253), 1, anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [191646] = 5, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9262), 1, + sym_type_descriptor, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [142103] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8366), 1, + sym_identifier, + ACTIONS(8370), 1, + sym_primitive_type, + ACTIONS(8372), 1, + anon_sym_enum, + ACTIONS(8374), 1, + anon_sym_class, + ACTIONS(8376), 1, + anon_sym_struct, + ACTIONS(8378), 1, + anon_sym_union, + ACTIONS(8380), 1, + sym_auto, + ACTIONS(8382), 1, + anon_sym_decltype, + ACTIONS(8384), 1, + anon_sym_typename, + STATE(3466), 1, + sym_qualified_type_identifier, + STATE(4990), 1, + sym_decltype_auto, + STATE(6302), 1, + sym_type_specifier, + STATE(6304), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6857), 1, + sym_type_definition_type, + STATE(7572), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2572), 2, + sym_decltype, + sym_template_type, + STATE(4666), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8368), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4991), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [142198] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9182), 1, + sym_type_descriptor, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [142293] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8366), 1, + sym_identifier, + ACTIONS(8370), 1, + sym_primitive_type, + ACTIONS(8372), 1, + anon_sym_enum, + ACTIONS(8374), 1, + anon_sym_class, + ACTIONS(8376), 1, + anon_sym_struct, + ACTIONS(8378), 1, + anon_sym_union, + ACTIONS(8380), 1, + sym_auto, + ACTIONS(8382), 1, + anon_sym_decltype, + ACTIONS(8384), 1, + anon_sym_typename, + STATE(3466), 1, + sym_qualified_type_identifier, + STATE(4990), 1, + sym_decltype_auto, + STATE(6302), 1, + sym_type_specifier, + STATE(6304), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6896), 1, + sym_type_definition_type, + STATE(7572), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2572), 2, + sym_decltype, + sym_template_type, + STATE(4666), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8368), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4991), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [142388] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8366), 1, + sym_identifier, + ACTIONS(8370), 1, + sym_primitive_type, + ACTIONS(8372), 1, + anon_sym_enum, + ACTIONS(8374), 1, + anon_sym_class, + ACTIONS(8376), 1, + anon_sym_struct, + ACTIONS(8378), 1, + anon_sym_union, + ACTIONS(8380), 1, + sym_auto, + ACTIONS(8382), 1, + anon_sym_decltype, + ACTIONS(8384), 1, + anon_sym_typename, + STATE(3466), 1, + sym_qualified_type_identifier, + STATE(4990), 1, + sym_decltype_auto, + STATE(6302), 1, + sym_type_specifier, + STATE(6304), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6900), 1, + sym_type_definition_type, + STATE(7572), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2572), 2, + sym_decltype, + sym_template_type, + STATE(4666), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8368), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4991), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [142483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8455), 1, - anon_sym___attribute__, - STATE(5234), 1, - sym_attribute_specifier, - ACTIONS(6366), 18, + ACTIONS(6268), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -490950,6 +450005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -490960,12 +450016,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6364), 24, + ACTIONS(6266), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -490985,113 +450042,375 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [191702] = 5, + [142536] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(8455), 1, - anon_sym___attribute__, - STATE(5228), 1, - sym_attribute_specifier, - ACTIONS(6392), 18, - 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(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8366), 1, sym_identifier, + ACTIONS(8370), 1, + sym_primitive_type, + ACTIONS(8372), 1, + anon_sym_enum, + ACTIONS(8374), 1, + anon_sym_class, + ACTIONS(8376), 1, + anon_sym_struct, + ACTIONS(8378), 1, + anon_sym_union, + ACTIONS(8380), 1, sym_auto, + ACTIONS(8382), 1, anon_sym_decltype, - ACTIONS(6390), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [191758] = 6, + ACTIONS(8384), 1, + anon_sym_typename, + STATE(3466), 1, + sym_qualified_type_identifier, + STATE(4990), 1, + sym_decltype_auto, + STATE(6302), 1, + sym_type_specifier, + STATE(6304), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6819), 1, + sym_type_definition_type, + STATE(7572), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2572), 2, + sym_decltype, + sym_template_type, + STATE(4666), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8368), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4991), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [142631] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3778), 1, - anon_sym_LBRACE, - ACTIONS(8507), 1, - anon_sym_LPAREN2, - STATE(5319), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6888), 17, - aux_sym_preproc_elif_token1, - 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(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8366), 1, sym_identifier, - ACTIONS(6886), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8370), 1, + sym_primitive_type, + ACTIONS(8372), 1, + anon_sym_enum, + ACTIONS(8374), 1, + anon_sym_class, + ACTIONS(8376), 1, + anon_sym_struct, + ACTIONS(8378), 1, + anon_sym_union, + ACTIONS(8380), 1, + sym_auto, + ACTIONS(8382), 1, + anon_sym_decltype, + ACTIONS(8384), 1, + anon_sym_typename, + STATE(3466), 1, + sym_qualified_type_identifier, + STATE(4990), 1, + sym_decltype_auto, + STATE(6302), 1, + sym_type_specifier, + STATE(6304), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6820), 1, + sym_type_definition_type, + STATE(7572), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2572), 2, + sym_decltype, + sym_template_type, + STATE(4666), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8368), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4991), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [142726] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9427), 1, + sym_type_descriptor, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [142821] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7869), 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(7871), 1, + anon_sym_AMP, + ACTIONS(7877), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8035), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8038), 1, + anon_sym_const, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8386), 1, anon_sym_DASH_GT, - [191816] = 3, + ACTIONS(8422), 1, + anon_sym_requires, + STATE(5972), 1, + sym_function_attributes_start, + STATE(6254), 1, + sym_ref_qualifier, + STATE(6404), 1, + sym_function_exception_specification, + STATE(6851), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7246), 1, + sym_function_attributes_end, + STATE(7404), 1, + sym_trailing_return_type, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7867), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8075), 2, + anon_sym_final, + anon_sym_override, + STATE(4937), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5586), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(8030), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [142924] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8366), 1, + sym_identifier, + ACTIONS(8370), 1, + sym_primitive_type, + ACTIONS(8372), 1, + anon_sym_enum, + ACTIONS(8374), 1, + anon_sym_class, + ACTIONS(8376), 1, + anon_sym_struct, + ACTIONS(8378), 1, + anon_sym_union, + ACTIONS(8380), 1, + sym_auto, + ACTIONS(8382), 1, + anon_sym_decltype, + ACTIONS(8384), 1, + anon_sym_typename, + STATE(3466), 1, + sym_qualified_type_identifier, + STATE(4990), 1, + sym_decltype_auto, + STATE(6302), 1, + sym_type_specifier, + STATE(6304), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6824), 1, + sym_type_definition_type, + STATE(7572), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2572), 2, + sym_decltype, + sym_template_type, + STATE(4666), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8368), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4991), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [143019] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6547), 19, + ACTIONS(8271), 1, + sym_auto, + ACTIONS(8273), 1, + anon_sym_decltype, + STATE(4667), 1, + sym_decltype_auto, + ACTIONS(6191), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -491109,9 +450428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6545), 25, + ACTIONS(6189), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -491137,89 +450454,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [191868] = 3, + [143078] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6239), 19, - aux_sym_preproc_elif_token1, - 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(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8366), 1, sym_identifier, + ACTIONS(8370), 1, + sym_primitive_type, + ACTIONS(8372), 1, + anon_sym_enum, + ACTIONS(8374), 1, + anon_sym_class, + ACTIONS(8376), 1, + anon_sym_struct, + ACTIONS(8378), 1, + anon_sym_union, + ACTIONS(8380), 1, sym_auto, + ACTIONS(8382), 1, anon_sym_decltype, - ACTIONS(6237), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8384), 1, + anon_sym_typename, + STATE(3466), 1, + sym_qualified_type_identifier, + STATE(4990), 1, + sym_decltype_auto, + STATE(6302), 1, + sym_type_specifier, + STATE(6304), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6825), 1, + sym_type_definition_type, + STATE(7572), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2572), 2, + sym_decltype, + sym_template_type, + STATE(4666), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8368), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4991), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [143173] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7869), 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_LBRACE, + ACTIONS(7871), 1, + anon_sym_AMP, + ACTIONS(7877), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8038), 1, + anon_sym_const, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8277), 1, + anon_sym_requires, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8425), 1, anon_sym_DASH_GT, - [191920] = 6, + STATE(5958), 1, + sym_function_attributes_start, + STATE(6264), 1, + sym_ref_qualifier, + STATE(6376), 1, + sym_function_exception_specification, + STATE(7021), 1, + sym_requires_clause, + STATE(7100), 1, + sym_function_postfix, + STATE(7129), 1, + sym_trailing_return_type, + STATE(7370), 1, + sym_function_attributes_end, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7867), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7883), 2, + anon_sym_final, + anon_sym_override, + STATE(4937), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5586), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(8030), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [143276] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5520), 1, - anon_sym_SEMI, - ACTIONS(5529), 1, - anon_sym_LBRACK, - ACTIONS(5522), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(5525), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - anon_sym_EQ, - ACTIONS(5518), 32, - anon_sym_AMP, + ACTIONS(8366), 1, + sym_identifier, + ACTIONS(8370), 1, + sym_primitive_type, + ACTIONS(8372), 1, + anon_sym_enum, + ACTIONS(8374), 1, + anon_sym_class, + ACTIONS(8376), 1, + anon_sym_struct, + ACTIONS(8378), 1, + anon_sym_union, + ACTIONS(8380), 1, + sym_auto, + ACTIONS(8382), 1, + anon_sym_decltype, + ACTIONS(8384), 1, + anon_sym_typename, + STATE(3466), 1, + sym_qualified_type_identifier, + STATE(4990), 1, + sym_decltype_auto, + STATE(6302), 1, + sym_type_specifier, + STATE(6304), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6828), 1, + sym_type_definition_type, + STATE(7572), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2572), 2, + sym_decltype, + sym_template_type, + STATE(4666), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8368), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4991), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -491231,209 +450671,554 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [143371] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8366), 1, sym_identifier, + ACTIONS(8370), 1, + sym_primitive_type, + ACTIONS(8372), 1, + anon_sym_enum, + ACTIONS(8374), 1, + anon_sym_class, + ACTIONS(8376), 1, + anon_sym_struct, + ACTIONS(8378), 1, + anon_sym_union, + ACTIONS(8380), 1, sym_auto, + ACTIONS(8382), 1, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, + ACTIONS(8384), 1, + anon_sym_typename, + STATE(3466), 1, + sym_qualified_type_identifier, + STATE(4990), 1, + sym_decltype_auto, + STATE(6302), 1, + sym_type_specifier, + STATE(6304), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6829), 1, + sym_type_definition_type, + STATE(7572), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2572), 2, + sym_decltype, + sym_template_type, + STATE(4666), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8368), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4991), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [143466] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, anon_sym_template, - anon_sym_operator, - [191978] = 3, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8380), 1, + sym_auto, + ACTIONS(8394), 1, + sym_primitive_type, + ACTIONS(8404), 1, + anon_sym_decltype, + ACTIONS(8410), 1, + sym_identifier, + ACTIONS(8412), 1, + anon_sym_enum, + ACTIONS(8414), 1, + anon_sym_class, + ACTIONS(8416), 1, + anon_sym_struct, + ACTIONS(8418), 1, + anon_sym_union, + ACTIONS(8420), 1, + anon_sym_typename, + STATE(3466), 1, + sym_qualified_type_identifier, + STATE(4990), 1, + sym_decltype_auto, + STATE(5100), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5160), 1, + sym_type_specifier, + STATE(6867), 1, + sym_type_descriptor, + STATE(7521), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(3324), 2, + sym_decltype, + sym_template_type, + STATE(4650), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8392), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4991), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [143561] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6640), 19, - aux_sym_preproc_elif_token1, - 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(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8366), 1, sym_identifier, + ACTIONS(8370), 1, + sym_primitive_type, + ACTIONS(8372), 1, + anon_sym_enum, + ACTIONS(8374), 1, + anon_sym_class, + ACTIONS(8376), 1, + anon_sym_struct, + ACTIONS(8378), 1, + anon_sym_union, + ACTIONS(8380), 1, sym_auto, + ACTIONS(8382), 1, anon_sym_decltype, - ACTIONS(6638), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [192030] = 3, + ACTIONS(8384), 1, + anon_sym_typename, + STATE(3466), 1, + sym_qualified_type_identifier, + STATE(4990), 1, + sym_decltype_auto, + STATE(6302), 1, + sym_type_specifier, + STATE(6304), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6833), 1, + sym_type_definition_type, + STATE(7572), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2572), 2, + sym_decltype, + sym_template_type, + STATE(4666), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8368), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4991), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [143656] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6555), 19, - aux_sym_preproc_elif_token1, - 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(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8366), 1, sym_identifier, + ACTIONS(8370), 1, + sym_primitive_type, + ACTIONS(8372), 1, + anon_sym_enum, + ACTIONS(8374), 1, + anon_sym_class, + ACTIONS(8376), 1, + anon_sym_struct, + ACTIONS(8378), 1, + anon_sym_union, + ACTIONS(8380), 1, sym_auto, + ACTIONS(8382), 1, anon_sym_decltype, - ACTIONS(6553), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [192082] = 3, + ACTIONS(8384), 1, + anon_sym_typename, + STATE(3466), 1, + sym_qualified_type_identifier, + STATE(4990), 1, + sym_decltype_auto, + STATE(6302), 1, + sym_type_specifier, + STATE(6304), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6834), 1, + sym_type_definition_type, + STATE(7572), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2572), 2, + sym_decltype, + sym_template_type, + STATE(4666), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8368), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4991), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [143751] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6559), 19, - aux_sym_preproc_elif_token1, - 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(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8366), 1, sym_identifier, + ACTIONS(8370), 1, + sym_primitive_type, + ACTIONS(8372), 1, + anon_sym_enum, + ACTIONS(8374), 1, + anon_sym_class, + ACTIONS(8376), 1, + anon_sym_struct, + ACTIONS(8378), 1, + anon_sym_union, + ACTIONS(8380), 1, sym_auto, + ACTIONS(8382), 1, anon_sym_decltype, - ACTIONS(6557), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [192134] = 23, + ACTIONS(8384), 1, + anon_sym_typename, + STATE(3466), 1, + sym_qualified_type_identifier, + STATE(4990), 1, + sym_decltype_auto, + STATE(6302), 1, + sym_type_specifier, + STATE(6304), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6811), 1, + sym_type_definition_type, + STATE(7572), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2572), 2, + sym_decltype, + sym_template_type, + STATE(4666), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8368), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4991), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [143846] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(4342), 1, + ACTIONS(8366), 1, sym_identifier, - ACTIONS(4350), 1, + ACTIONS(8370), 1, sym_primitive_type, - ACTIONS(4354), 1, + ACTIONS(8372), 1, + anon_sym_enum, + ACTIONS(8374), 1, anon_sym_class, - ACTIONS(4356), 1, + ACTIONS(8376), 1, anon_sym_struct, - ACTIONS(4358), 1, + ACTIONS(8378), 1, anon_sym_union, - ACTIONS(4360), 1, + ACTIONS(8380), 1, + sym_auto, + ACTIONS(8382), 1, + anon_sym_decltype, + ACTIONS(8384), 1, + anon_sym_typename, + STATE(3466), 1, + sym_qualified_type_identifier, + STATE(4990), 1, + sym_decltype_auto, + STATE(6302), 1, + sym_type_specifier, + STATE(6304), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6839), 1, + sym_type_definition_type, + STATE(7572), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2572), 2, + sym_decltype, + sym_template_type, + STATE(4666), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8368), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4991), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [143941] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, sym_auto, - ACTIONS(4362), 1, + ACTIONS(2253), 1, anon_sym_decltype, - ACTIONS(8716), 1, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, anon_sym_enum, - ACTIONS(8747), 1, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9525), 1, + sym_type_descriptor, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [144036] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8366), 1, + sym_identifier, + ACTIONS(8370), 1, + sym_primitive_type, + ACTIONS(8372), 1, + anon_sym_enum, + ACTIONS(8374), 1, + anon_sym_class, + ACTIONS(8376), 1, + anon_sym_struct, + ACTIONS(8378), 1, + anon_sym_union, + ACTIONS(8380), 1, + sym_auto, + ACTIONS(8382), 1, + anon_sym_decltype, + ACTIONS(8384), 1, anon_sym_typename, - STATE(4751), 1, + STATE(3466), 1, sym_qualified_type_identifier, - STATE(4805), 1, + STATE(4990), 1, sym_decltype_auto, - STATE(5252), 1, + STATE(6302), 1, sym_type_specifier, - STATE(5790), 1, + STATE(6304), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7904), 1, + STATE(6840), 1, + sym_type_definition_type, + STATE(7572), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(4720), 2, + STATE(2572), 2, sym_decltype, sym_template_type, - STATE(6587), 2, + STATE(4666), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - ACTIONS(8745), 4, + ACTIONS(8368), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4794), 7, + STATE(4991), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -491441,7 +451226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - ACTIONS(2213), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -491454,138 +451239,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [192226] = 3, + [144131] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 19, - aux_sym_preproc_elif_token1, - 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(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8366), 1, sym_identifier, + ACTIONS(8370), 1, + sym_primitive_type, + ACTIONS(8372), 1, + anon_sym_enum, + ACTIONS(8374), 1, + anon_sym_class, + ACTIONS(8376), 1, + anon_sym_struct, + ACTIONS(8378), 1, + anon_sym_union, + ACTIONS(8380), 1, sym_auto, + ACTIONS(8382), 1, anon_sym_decltype, - ACTIONS(6561), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [192278] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3778), 1, - anon_sym_LBRACE, - ACTIONS(8507), 1, - anon_sym_LPAREN2, - STATE(5325), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6846), 17, - aux_sym_preproc_elif_token1, - 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_identifier, - ACTIONS(6844), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [192336] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8309), 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_EQ, - anon_sym_GT2, - ACTIONS(8307), 33, - anon_sym_AMP, + ACTIONS(8384), 1, + anon_sym_typename, + STATE(3466), 1, + sym_qualified_type_identifier, + STATE(4990), 1, + sym_decltype_auto, + STATE(6302), 1, + sym_type_specifier, + STATE(6304), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6841), 1, + sym_type_definition_type, + STATE(7572), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2572), 2, + sym_decltype, + sym_template_type, + STATE(4666), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8368), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4991), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, anon_sym___extension__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -491597,221 +451310,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [192388] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4827), 19, - aux_sym_preproc_elif_token1, - 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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(4835), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [192440] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6788), 1, - anon_sym___attribute__, - ACTIONS(7114), 1, - anon_sym_LBRACE, - ACTIONS(8786), 1, - anon_sym_COLON, - STATE(3019), 1, - sym_enum_base_clause, - STATE(3115), 1, - sym_enumerator_list, - STATE(3480), 1, - sym_attribute_specifier, - ACTIONS(6225), 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(6227), 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_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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [192504] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6788), 1, - anon_sym___attribute__, - ACTIONS(7114), 1, - anon_sym_LBRACE, - ACTIONS(8786), 1, - anon_sym_COLON, - STATE(3025), 1, - sym_enum_base_clause, - STATE(3139), 1, - sym_enumerator_list, - STATE(3487), 1, - sym_attribute_specifier, - ACTIONS(6233), 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(6235), 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_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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [192568] = 23, + [144226] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(4342), 1, + ACTIONS(8366), 1, sym_identifier, - ACTIONS(4350), 1, + ACTIONS(8370), 1, sym_primitive_type, - ACTIONS(4354), 1, + ACTIONS(8372), 1, + anon_sym_enum, + ACTIONS(8374), 1, anon_sym_class, - ACTIONS(4356), 1, + ACTIONS(8376), 1, anon_sym_struct, - ACTIONS(4358), 1, + ACTIONS(8378), 1, anon_sym_union, - ACTIONS(4360), 1, + ACTIONS(8380), 1, sym_auto, - ACTIONS(4362), 1, + ACTIONS(8382), 1, anon_sym_decltype, - ACTIONS(8671), 1, - anon_sym_enum, - ACTIONS(8673), 1, + ACTIONS(8384), 1, anon_sym_typename, - STATE(4751), 1, + STATE(3466), 1, sym_qualified_type_identifier, - STATE(4805), 1, + STATE(4990), 1, sym_decltype_auto, - STATE(5264), 1, + STATE(6302), 1, sym_type_specifier, - STATE(5721), 1, + STATE(6304), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7904), 1, + STATE(6843), 1, + sym_type_definition_type, + STATE(7572), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(4720), 2, + STATE(2572), 2, sym_decltype, sym_template_type, - STATE(6587), 2, + STATE(4666), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - ACTIONS(8669), 4, + ACTIONS(8368), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4794), 7, + STATE(4991), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -491819,7 +451368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - ACTIONS(2213), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -491832,55 +451381,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [192660] = 23, + [144321] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8681), 1, + ACTIONS(8366), 1, sym_identifier, - ACTIONS(8685), 1, + ACTIONS(8370), 1, sym_primitive_type, - ACTIONS(8687), 1, + ACTIONS(8372), 1, anon_sym_enum, - ACTIONS(8689), 1, + ACTIONS(8374), 1, anon_sym_class, - ACTIONS(8691), 1, + ACTIONS(8376), 1, anon_sym_struct, - ACTIONS(8693), 1, + ACTIONS(8378), 1, anon_sym_union, - ACTIONS(8695), 1, + ACTIONS(8380), 1, sym_auto, - ACTIONS(8697), 1, + ACTIONS(8382), 1, anon_sym_decltype, - ACTIONS(8699), 1, + ACTIONS(8384), 1, anon_sym_typename, - STATE(6766), 1, + STATE(3466), 1, + sym_qualified_type_identifier, + STATE(4990), 1, + sym_decltype_auto, + STATE(6302), 1, sym_type_specifier, - STATE(6831), 1, + STATE(6304), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6839), 1, - sym_decltype_auto, - STATE(6856), 1, - sym_qualified_type_identifier, - STATE(7942), 1, + STATE(6845), 1, + sym_type_definition_type, + STATE(7572), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(6587), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6816), 2, + STATE(2572), 2, sym_decltype, sym_template_type, - ACTIONS(8683), 4, + STATE(4666), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8368), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(6854), 7, + STATE(4991), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -491888,7 +451439,7 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - ACTIONS(2213), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -491901,55 +451452,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [192752] = 23, + [144416] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(4342), 1, + ACTIONS(8427), 1, sym_identifier, - ACTIONS(4350), 1, + ACTIONS(8431), 1, sym_primitive_type, - ACTIONS(4354), 1, + ACTIONS(8433), 1, + anon_sym_enum, + ACTIONS(8435), 1, anon_sym_class, - ACTIONS(4356), 1, + ACTIONS(8437), 1, anon_sym_struct, - ACTIONS(4358), 1, + ACTIONS(8439), 1, anon_sym_union, - ACTIONS(4360), 1, + ACTIONS(8441), 1, sym_auto, - ACTIONS(4362), 1, + ACTIONS(8443), 1, anon_sym_decltype, - ACTIONS(8716), 1, - anon_sym_enum, - ACTIONS(8718), 1, + ACTIONS(8445), 1, anon_sym_typename, - STATE(4751), 1, - sym_qualified_type_identifier, - STATE(4805), 1, - sym_decltype_auto, - STATE(5421), 1, + STATE(4919), 1, sym_type_specifier, - STATE(5493), 1, + STATE(5516), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7904), 1, + STATE(6085), 1, + sym_qualified_type_identifier, + STATE(6135), 1, + sym_decltype_auto, + STATE(7055), 1, + sym_type_descriptor, + STATE(7539), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(4720), 2, - sym_decltype, - sym_template_type, - STATE(6587), 2, + STATE(4691), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - ACTIONS(8714), 4, + STATE(5963), 2, + sym_decltype, + sym_template_type, + ACTIONS(8429), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4794), 7, + STATE(6205), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -491957,7 +451510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - ACTIONS(2213), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -491970,156 +451523,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [192844] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3778), 1, - anon_sym_LBRACE, - ACTIONS(8507), 1, - anon_sym_LPAREN2, - STATE(5407), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6908), 17, - aux_sym_preproc_elif_token1, - 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_identifier, - ACTIONS(6906), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [192902] = 6, + [144511] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8788), 1, - anon_sym_LT, - STATE(5099), 1, - sym_template_argument_list, - ACTIONS(5460), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(5467), 31, - anon_sym_LPAREN2, - anon_sym_STAR, - 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, + ACTIONS(3328), 1, + anon_sym_enum, + ACTIONS(3330), 1, + anon_sym_class, + ACTIONS(3332), 1, + anon_sym_struct, + ACTIONS(3334), 1, + anon_sym_union, + ACTIONS(3358), 1, sym_auto, + ACTIONS(3360), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_DOT_DOT_GT, - [192960] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8584), 1, - anon_sym___attribute__, - ACTIONS(8586), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8588), 1, - anon_sym___declspec, - ACTIONS(8590), 1, - anon_sym_virtual, - ACTIONS(8592), 1, - anon_sym_alignas, - STATE(5061), 2, - sym_declaration_modifiers, - aux_sym_declaration_specifiers_repeat1, - ACTIONS(7989), 4, - anon_sym_AMP, - anon_sym___based, + ACTIONS(3362), 1, + anon_sym_typename, + ACTIONS(8447), 1, sym_identifier, - anon_sym_operator, - ACTIONS(7991), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - STATE(6247), 7, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, + ACTIONS(8449), 1, + sym_primitive_type, + STATE(2573), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3240), 1, + sym_qualified_type_identifier, + STATE(3292), 1, + sym_decltype_auto, + STATE(5601), 1, + sym_type_specifier, + STATE(7055), 1, + sym_type_descriptor, + STATE(7558), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2572), 2, + sym_decltype, + sym_template_type, + STATE(4645), 2, sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - ACTIONS(8582), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(8580), 12, + aux_sym_type_definition_type_repeat1, + ACTIONS(3324), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3293), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -492132,10 +451594,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [193030] = 3, + [144606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4380), 11, + ACTIONS(3702), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -492143,11 +451605,12 @@ 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_EQ, anon_sym_GT2, - ACTIONS(4378), 33, + ACTIONS(3700), 33, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -492181,589 +451644,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_explicit, anon_sym_template, anon_sym_operator, - [193082] = 5, + [144659] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(8455), 1, - anon_sym___attribute__, - STATE(5229), 1, - sym_attribute_specifier, - ACTIONS(6462), 18, - 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_identifier, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, sym_auto, + ACTIONS(2253), 1, anon_sym_decltype, - ACTIONS(6460), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [193138] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5525), 2, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5527), 17, - aux_sym_preproc_elif_token1, - 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(8345), 1, sym_identifier, - ACTIONS(5520), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [193191] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8643), 1, - sym_auto, - ACTIONS(8645), 1, - anon_sym_decltype, - STATE(5257), 1, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, sym_decltype_auto, - ACTIONS(6404), 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_identifier, - ACTIONS(6402), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [193248] = 3, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9532), 1, + sym_type_descriptor, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [144754] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 18, - 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_identifier, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, sym_auto, + ACTIONS(2253), 1, anon_sym_decltype, - ACTIONS(5479), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [193299] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(8791), 1, - anon_sym_LT, - STATE(5244), 1, - sym_template_argument_list, - ACTIONS(5460), 16, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_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, - ACTIONS(5467), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [193356] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8509), 1, - anon_sym_LBRACK, - STATE(5239), 1, - sym_new_declarator, - ACTIONS(6943), 17, - aux_sym_preproc_elif_token1, - 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_identifier, - ACTIONS(6941), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [193411] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7089), 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(7091), 26, - ts_builtin_sym_end, - 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___attribute__, - 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, - [193476] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7143), 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(7141), 26, - ts_builtin_sym_end, - 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___attribute__, - 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, - [193541] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5518), 11, - anon_sym_DOT_DOT_DOT, - 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(5525), 32, - anon_sym_LPAREN2, - anon_sym_STAR, - 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___attribute__, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_DOT_DOT_GT, - [193592] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7044), 1, - anon_sym_DOT, - ACTIONS(8800), 1, - anon_sym_SLASH, - ACTIONS(8802), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8804), 1, - anon_sym_AMP_AMP, - ACTIONS(8808), 1, - anon_sym_CARET, - ACTIONS(8816), 1, - anon_sym_GT_EQ, - ACTIONS(8820), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8822), 1, - anon_sym_or, - ACTIONS(8824), 1, - anon_sym_and, - ACTIONS(8826), 1, - anon_sym_xor, - ACTIONS(8828), 1, - anon_sym_not_eq, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7006), 2, - aux_sym_preproc_elif_token1, + ACTIONS(8345), 1, sym_identifier, - ACTIONS(7046), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8796), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8798), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8806), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(8810), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8812), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8818), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8830), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8814), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7008), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_QMARK, - [193691] = 20, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5910), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9557), 1, + sym_type_descriptor, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4692), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [144849] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(5748), 1, + ACTIONS(8345), 1, sym_identifier, - ACTIONS(8132), 1, - anon_sym_LBRACK, - ACTIONS(8144), 1, - anon_sym_STAR, - ACTIONS(8146), 1, - anon_sym_AMP_AMP, - ACTIONS(8148), 1, - anon_sym_AMP, - STATE(7180), 1, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, sym_scope_resolution, - STATE(7950), 1, - sym_declarator, - STATE(9814), 1, - sym_ms_based_modifier, - STATE(6505), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(9982), 3, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(9685), 1, + sym_type_descriptor, + STATE(2580), 2, sym_decltype, sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - ACTIONS(3664), 12, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -492776,59 +451857,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [193776] = 20, + [144944] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_AMP_AMP, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3708), 1, - anon_sym_STAR, - ACTIONS(3710), 1, - anon_sym_AMP, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(5748), 1, + ACTIONS(8366), 1, sym_identifier, - ACTIONS(8132), 1, - anon_sym_LBRACK, - STATE(7201), 1, + ACTIONS(8370), 1, + sym_primitive_type, + ACTIONS(8372), 1, + anon_sym_enum, + ACTIONS(8374), 1, + anon_sym_class, + ACTIONS(8376), 1, + anon_sym_struct, + ACTIONS(8378), 1, + anon_sym_union, + ACTIONS(8380), 1, + sym_auto, + ACTIONS(8382), 1, + anon_sym_decltype, + ACTIONS(8384), 1, + anon_sym_typename, + STATE(3466), 1, + sym_qualified_type_identifier, + STATE(4990), 1, + sym_decltype_auto, + STATE(6302), 1, + sym_type_specifier, + STATE(6304), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6826), 1, + sym_type_definition_type, + STATE(7572), 1, sym_scope_resolution, - STATE(7552), 1, - sym_declarator, - STATE(10059), 1, - sym_ms_based_modifier, - STATE(6505), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(9982), 3, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2572), 2, sym_decltype, sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - ACTIONS(3664), 12, + STATE(4666), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8368), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4991), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -492841,10 +451928,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [193861] = 3, + [145039] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5481), 18, + ACTIONS(8081), 1, + anon_sym___attribute__, + ACTIONS(8308), 1, + anon_sym_LBRACE, + STATE(4662), 1, + sym_enumerator_list, + STATE(4782), 1, + sym_attribute_specifier, + ACTIONS(5989), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -492863,7 +451958,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5483), 25, + ACTIONS(5987), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -492880,8 +451975,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -492889,22 +451982,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [193912] = 3, + [145100] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5511), 11, + ACTIONS(4789), 1, + anon_sym_LBRACE, + ACTIONS(4771), 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_EQ, + ACTIONS(4763), 33, + anon_sym_AMP, + anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [145155] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(9811), 1, + sym_type_descriptor, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [145250] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8380), 1, + sym_auto, + ACTIONS(8394), 1, + sym_primitive_type, + ACTIONS(8404), 1, + anon_sym_decltype, + ACTIONS(8410), 1, + sym_identifier, + ACTIONS(8412), 1, + anon_sym_enum, + ACTIONS(8414), 1, + anon_sym_class, + ACTIONS(8416), 1, + anon_sym_struct, + ACTIONS(8418), 1, + anon_sym_union, + ACTIONS(8420), 1, + anon_sym_typename, + STATE(3466), 1, + sym_qualified_type_identifier, + STATE(4879), 1, + sym_type_specifier, + STATE(4990), 1, + sym_decltype_auto, + STATE(5100), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6867), 1, + sym_type_descriptor, + STATE(7521), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(3324), 2, + sym_decltype, + sym_template_type, + STATE(4673), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8392), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4991), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [145345] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(8451), 1, + anon_sym_LT, + STATE(2925), 1, + sym_template_argument_list, + ACTIONS(5374), 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_COLON, anon_sym_DOT, - ACTIONS(5513), 32, + ACTIONS(5381), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -492913,11 +452207,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___attribute__, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -492936,11 +452227,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_DOT_DOT_DOT_GT, - [193963] = 3, + anon_sym_GT2, + [145404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6543), 19, + ACTIONS(6090), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -492960,12 +452252,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6541), 24, + ACTIONS(6088), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -492985,59 +452278,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [194014] = 20, + [145457] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, + ACTIONS(2221), 1, + anon_sym_enum, + ACTIONS(2223), 1, + anon_sym_class, + ACTIONS(2225), 1, + anon_sym_struct, + ACTIONS(2227), 1, + anon_sym_union, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, + ACTIONS(2255), 1, + anon_sym_typename, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8132), 1, - anon_sym_LBRACK, - ACTIONS(8150), 1, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8454), 1, sym_identifier, - ACTIONS(8152), 1, - anon_sym_STAR, - ACTIONS(8154), 1, - anon_sym_AMP_AMP, - ACTIONS(8156), 1, - anon_sym_AMP, - STATE(7202), 1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5692), 1, + sym_type_specifier, + STATE(5792), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7055), 1, + sym_type_descriptor, + STATE(7524), 1, sym_scope_resolution, - STATE(7552), 1, - sym_declarator, - STATE(10671), 1, - sym_ms_based_modifier, - STATE(6505), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(9982), 3, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2580), 2, sym_decltype, sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - ACTIONS(3664), 12, + STATE(4636), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(2215), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -493050,218 +452349,349 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [194099] = 10, + [145552] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7044), 1, - anon_sym_DOT, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7046), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8830), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7143), 16, - aux_sym_preproc_elif_token1, - 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, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, sym_identifier, - ACTIONS(7141), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - [194164] = 3, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9545), 1, + sym_type_descriptor, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [145647] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6551), 19, - 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___attribute__, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, sym_auto, + ACTIONS(2253), 1, anon_sym_decltype, - ACTIONS(6549), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [194215] = 11, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9571), 1, + sym_type_descriptor, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [145742] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4061), 1, - anon_sym_LBRACE, - ACTIONS(7458), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, sym_auto, - ACTIONS(7460), 1, + ACTIONS(2253), 1, anon_sym_decltype, - ACTIONS(8832), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_LBRACK, - STATE(3478), 1, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, sym_decltype_auto, - STATE(5606), 1, - sym_new_declarator, - STATE(6140), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6318), 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(6316), 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_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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [194282] = 20, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5415), 1, + sym_type_specifier, + STATE(7055), 1, + sym_type_descriptor, + STATE(7523), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4686), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [145837] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6256), 1, + ACTIONS(8345), 1, sym_identifier, - ACTIONS(8132), 1, - anon_sym_LBRACK, - ACTIONS(8163), 1, - anon_sym_STAR, - ACTIONS(8165), 1, - anon_sym_AMP_AMP, - ACTIONS(8167), 1, - anon_sym_AMP, - STATE(7241), 1, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, sym_scope_resolution, - STATE(7552), 1, - sym_declarator, - STATE(9737), 1, - sym_ms_based_modifier, - STATE(6505), 2, + STATE(9492), 1, + sym_type_descriptor, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4689), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(9982), 3, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [145932] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(9698), 1, + sym_type_descriptor, + STATE(2580), 2, sym_decltype, sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - ACTIONS(3664), 12, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -493274,237 +452704,278 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [194367] = 29, + [146027] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7044), 1, - anon_sym_DOT, - ACTIONS(8800), 1, - anon_sym_SLASH, - ACTIONS(8802), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8804), 1, - anon_sym_AMP_AMP, - ACTIONS(8808), 1, - anon_sym_CARET, - ACTIONS(8816), 1, - anon_sym_GT_EQ, - ACTIONS(8820), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8822), 1, - anon_sym_or, - ACTIONS(8824), 1, - anon_sym_and, - ACTIONS(8826), 1, - anon_sym_xor, - ACTIONS(8828), 1, - anon_sym_not_eq, - ACTIONS(8836), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8838), 1, - anon_sym_QMARK, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7046), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7061), 2, - aux_sym_preproc_elif_token1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, sym_identifier, - ACTIONS(8796), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8798), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8806), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(8810), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8812), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8818), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8830), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8814), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7065), 5, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [194470] = 3, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5910), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(9703), 1, + sym_type_descriptor, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4692), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [146122] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7403), 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(7401), 34, - ts_builtin_sym_end, - 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - [194521] = 11, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9568), 1, + sym_type_descriptor, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [146217] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4061), 1, - anon_sym_LBRACE, - ACTIONS(7458), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, sym_auto, - ACTIONS(7460), 1, + ACTIONS(2253), 1, anon_sym_decltype, - ACTIONS(8832), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_LBRACK, - STATE(3478), 1, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, sym_decltype_auto, - STATE(5596), 1, - sym_new_declarator, - STATE(6166), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6293), 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(6289), 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_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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [194588] = 20, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(9719), 1, + sym_type_descriptor, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [146312] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_AMP_AMP, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3708), 1, - anon_sym_STAR, - ACTIONS(3710), 1, - anon_sym_AMP, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(5748), 1, + ACTIONS(8345), 1, sym_identifier, - ACTIONS(8132), 1, - anon_sym_LBRACK, - STATE(7201), 1, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5910), 1, + sym_type_specifier, + STATE(7523), 1, sym_scope_resolution, - STATE(7536), 1, - sym_declarator, - STATE(10059), 1, - sym_ms_based_modifier, - STATE(6505), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(9982), 3, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(9724), 1, + sym_type_descriptor, + STATE(2580), 2, sym_decltype, sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - ACTIONS(3664), 12, + STATE(4692), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -493517,59 +452988,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [194673] = 20, + [146407] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8132), 1, - anon_sym_LBRACK, - ACTIONS(8150), 1, + ACTIONS(8345), 1, sym_identifier, - ACTIONS(8152), 1, - anon_sym_STAR, - ACTIONS(8154), 1, - anon_sym_AMP_AMP, - ACTIONS(8156), 1, - anon_sym_AMP, - STATE(7202), 1, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, sym_scope_resolution, - STATE(7587), 1, - sym_declarator, - STATE(10671), 1, - sym_ms_based_modifier, - STATE(6505), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(9982), 3, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(9739), 1, + sym_type_descriptor, + STATE(2580), 2, sym_decltype, sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - ACTIONS(3664), 12, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -493582,107 +453059,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [194758] = 3, + [146502] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7135), 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(7133), 34, - ts_builtin_sym_end, - 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - [194809] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(5748), 1, + ACTIONS(8345), 1, sym_identifier, - ACTIONS(8132), 1, - anon_sym_LBRACK, - ACTIONS(8144), 1, - anon_sym_STAR, - ACTIONS(8146), 1, - anon_sym_AMP_AMP, - ACTIONS(8148), 1, - anon_sym_AMP, - STATE(7180), 1, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5910), 1, + sym_type_specifier, + STATE(7523), 1, sym_scope_resolution, - STATE(7979), 1, - sym_declarator, - STATE(9814), 1, - sym_ms_based_modifier, - STATE(6505), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(9982), 3, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(9744), 1, + sym_type_descriptor, + STATE(2580), 2, sym_decltype, sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - ACTIONS(3664), 12, + STATE(4692), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -493695,337 +453130,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [194894] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7044), 1, - anon_sym_DOT, - ACTIONS(8800), 1, - anon_sym_SLASH, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7046), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8798), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8830), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7053), 15, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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, - sym_identifier, - ACTIONS(7051), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_QMARK, - anon_sym_LT_EQ_GT, - [194963] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7044), 1, - anon_sym_DOT, - ACTIONS(8800), 1, - anon_sym_SLASH, - ACTIONS(8804), 1, - anon_sym_AMP_AMP, - ACTIONS(8808), 1, - anon_sym_CARET, - ACTIONS(8816), 1, - anon_sym_GT_EQ, - ACTIONS(8820), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8824), 1, - anon_sym_and, - ACTIONS(8826), 1, - anon_sym_xor, - ACTIONS(8828), 1, - anon_sym_not_eq, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7046), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8796), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8798), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8806), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(8810), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8812), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8818), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8830), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7053), 3, - aux_sym_preproc_elif_token1, - anon_sym_or, - sym_identifier, - ACTIONS(8814), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7051), 8, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, - [195058] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7044), 1, - anon_sym_DOT, - ACTIONS(8800), 1, - anon_sym_SLASH, - ACTIONS(8808), 1, - anon_sym_CARET, - ACTIONS(8816), 1, - anon_sym_GT_EQ, - ACTIONS(8820), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8826), 1, - anon_sym_xor, - ACTIONS(8828), 1, - anon_sym_not_eq, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7046), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8796), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8798), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8806), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(8810), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8812), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8818), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8830), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8814), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7053), 4, - aux_sym_preproc_elif_token1, - anon_sym_or, - anon_sym_and, - sym_identifier, - ACTIONS(7051), 9, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - [195149] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7044), 1, - anon_sym_DOT, - ACTIONS(8800), 1, - anon_sym_SLASH, - ACTIONS(8808), 1, - anon_sym_CARET, - ACTIONS(8816), 1, - anon_sym_GT_EQ, - ACTIONS(8820), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8826), 1, - anon_sym_xor, - ACTIONS(8828), 1, - anon_sym_not_eq, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7046), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8796), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8798), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8810), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8812), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8818), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8830), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8814), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7053), 6, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - sym_identifier, - ACTIONS(7051), 9, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - [195238] = 20, + [146597] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7044), 1, - anon_sym_DOT, - ACTIONS(8800), 1, - anon_sym_SLASH, - ACTIONS(8816), 1, - anon_sym_GT_EQ, - ACTIONS(8820), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8828), 1, - anon_sym_not_eq, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7046), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8796), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8798), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8810), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8812), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8818), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8830), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8814), 3, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(8456), 1, anon_sym_LT, - ACTIONS(7053), 7, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - sym_identifier, - ACTIONS(7051), 10, + STATE(4696), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4738), 1, + sym_template_argument_list, + ACTIONS(8339), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4763), 9, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_QMARK, - [195323] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6584), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -494033,24 +453155,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - 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(6582), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(4771), 28, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -494066,510 +453172,362 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [195374] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7044), 1, - anon_sym_DOT, - ACTIONS(8800), 1, - anon_sym_SLASH, - ACTIONS(8816), 1, - anon_sym_GT_EQ, - ACTIONS(8820), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8828), 1, - anon_sym_not_eq, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7046), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8796), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8798), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8812), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8818), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8830), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8814), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7053), 9, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - sym_identifier, - ACTIONS(7051), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_QMARK, - [195457] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7044), 1, - anon_sym_DOT, - ACTIONS(8800), 1, - anon_sym_SLASH, - ACTIONS(8816), 1, - anon_sym_GT_EQ, - ACTIONS(8820), 1, - anon_sym_LT_EQ_GT, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7046), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8796), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8798), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8818), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8830), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8814), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7053), 10, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - sym_identifier, - ACTIONS(7051), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - [195536] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7044), 1, - anon_sym_DOT, - ACTIONS(8800), 1, - anon_sym_SLASH, - ACTIONS(8820), 1, - anon_sym_LT_EQ_GT, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7046), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8796), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8798), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8818), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8830), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7051), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_QMARK, - ACTIONS(7053), 13, - aux_sym_preproc_elif_token1, - 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, - sym_identifier, - [195611] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7044), 1, - anon_sym_DOT, - ACTIONS(8800), 1, - anon_sym_SLASH, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7046), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8796), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8798), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8830), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7053), 13, - aux_sym_preproc_elif_token1, - 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, - sym_identifier, - ACTIONS(7051), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_QMARK, - anon_sym_LT_EQ_GT, - [195682] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [146660] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 18, - 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_identifier, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, sym_auto, + ACTIONS(2253), 1, anon_sym_decltype, - ACTIONS(5502), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - 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, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [195733] = 3, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5910), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(9762), 1, + sym_type_descriptor, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4692), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [146755] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5957), 19, - 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___attribute__, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, sym_auto, + ACTIONS(2253), 1, anon_sym_decltype, - ACTIONS(5959), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [195784] = 14, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(9774), 1, + sym_type_descriptor, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [146850] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7044), 1, - anon_sym_DOT, - ACTIONS(8800), 1, - anon_sym_SLASH, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7046), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8796), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8798), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8818), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8830), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7053), 13, - aux_sym_preproc_elif_token1, - 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, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, sym_identifier, - ACTIONS(7051), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_QMARK, - anon_sym_LT_EQ_GT, - [195857] = 3, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5910), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(9779), 1, + sym_type_descriptor, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4692), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [146945] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6698), 19, - 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___attribute__, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, sym_auto, + ACTIONS(2253), 1, anon_sym_decltype, - ACTIONS(6696), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [195908] = 20, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(9791), 1, + sym_type_descriptor, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [147040] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6256), 1, + ACTIONS(8345), 1, sym_identifier, - ACTIONS(8132), 1, - anon_sym_LBRACK, - ACTIONS(8163), 1, - anon_sym_STAR, - ACTIONS(8165), 1, - anon_sym_AMP_AMP, - ACTIONS(8167), 1, - anon_sym_AMP, - STATE(7241), 1, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5910), 1, + sym_type_specifier, + STATE(7523), 1, sym_scope_resolution, - STATE(7536), 1, - sym_declarator, - STATE(9737), 1, - sym_ms_based_modifier, - STATE(6505), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(9982), 3, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(9796), 1, + sym_type_descriptor, + STATE(2580), 2, sym_decltype, sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - ACTIONS(3664), 12, + STATE(4692), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -494582,106 +453540,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [195993] = 3, + [147135] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5481), 11, - anon_sym_DOT_DOT_DOT, - 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(5483), 32, - anon_sym_LPAREN2, - anon_sym_STAR, - 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___attribute__, - anon_sym_COLON_COLON, - 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_DOT_STAR, - anon_sym_DASH_GT, + ACTIONS(121), 1, sym_auto, + ACTIONS(123), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_DOT_DOT_GT, - [196044] = 17, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(4318), 1, + sym_primitive_type, + ACTIONS(8458), 1, + sym_identifier, + ACTIONS(8460), 1, + anon_sym_enum, + ACTIONS(8462), 1, + anon_sym_class, + ACTIONS(8464), 1, + anon_sym_struct, + ACTIONS(8466), 1, + anon_sym_union, + ACTIONS(8468), 1, + anon_sym_typename, + STATE(3466), 1, + sym_qualified_type_identifier, + STATE(3570), 1, + sym_decltype_auto, + STATE(3644), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4881), 1, + sym_type_specifier, + STATE(6867), 1, + sym_type_descriptor, + STATE(7528), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(3324), 2, + sym_decltype, + sym_template_type, + STATE(4695), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(4316), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3531), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [147230] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(7916), 1, - anon_sym_const, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8597), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, sym_auto, - ACTIONS(8599), 1, + ACTIONS(2253), 1, anon_sym_decltype, - ACTIONS(8842), 1, - anon_sym___declspec, - ACTIONS(8844), 1, - anon_sym___inline, - ACTIONS(8846), 1, - anon_sym_virtual, - ACTIONS(8848), 1, - anon_sym_alignas, - STATE(4763), 1, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, sym_decltype_auto, - ACTIONS(7612), 2, - anon_sym_AMP, - anon_sym_LBRACK, - STATE(5447), 2, - sym_declaration_modifiers, - aux_sym_declaration_specifiers_repeat1, - ACTIONS(7614), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - STATE(6411), 7, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(9808), 1, + sym_type_descriptor, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4689), 2, sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - ACTIONS(8840), 8, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(7907), 11, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -494692,629 +453682,553 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [196123] = 3, + [147325] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 18, - 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_identifier, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, sym_auto, + ACTIONS(2253), 1, anon_sym_decltype, - ACTIONS(6464), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - 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, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [196174] = 3, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5910), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(9813), 1, + sym_type_descriptor, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4692), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [147420] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 11, - anon_sym_DOT_DOT_DOT, - 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(5502), 32, - anon_sym_LPAREN2, - anon_sym_STAR, - 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___attribute__, - anon_sym_COLON_COLON, - 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_DOT_STAR, - anon_sym_DASH_GT, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, sym_auto, + ACTIONS(2253), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_DOT_DOT_GT, - [196225] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7044), 1, - anon_sym_DOT, - ACTIONS(8800), 1, - anon_sym_SLASH, - ACTIONS(8802), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8804), 1, - anon_sym_AMP_AMP, - ACTIONS(8808), 1, - anon_sym_CARET, - ACTIONS(8816), 1, - anon_sym_GT_EQ, - ACTIONS(8820), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8822), 1, - anon_sym_or, - ACTIONS(8824), 1, - anon_sym_and, - ACTIONS(8826), 1, - anon_sym_xor, - ACTIONS(8828), 1, - anon_sym_not_eq, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7046), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7123), 2, - aux_sym_preproc_elif_token1, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, sym_identifier, - ACTIONS(8796), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8798), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8806), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(8810), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8812), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8818), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8830), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8814), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7125), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_QMARK, - [196324] = 11, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(9822), 1, + sym_type_descriptor, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [147515] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4061), 1, - anon_sym_LBRACE, - ACTIONS(7458), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, sym_auto, - ACTIONS(7460), 1, + ACTIONS(2253), 1, anon_sym_decltype, - ACTIONS(8832), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_LBRACK, - STATE(3478), 1, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, sym_decltype_auto, - STATE(5631), 1, - sym_new_declarator, - STATE(6124), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6314), 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(6312), 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_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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [196391] = 3, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5910), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(9826), 1, + sym_type_descriptor, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4692), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [147610] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 11, - anon_sym_DOT_DOT_DOT, - 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(5702), 1, anon_sym_COLON, - anon_sym_DOT, - ACTIONS(5498), 32, - anon_sym_LPAREN2, - anon_sym_STAR, - 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, + ACTIONS(5747), 1, anon_sym___attribute__, - anon_sym_COLON_COLON, + ACTIONS(7550), 1, 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, + STATE(3617), 1, + sym_attribute_specifier, + STATE(4440), 1, + sym_field_declaration_list, + STATE(8057), 1, + sym_virtual_specifier, + STATE(8866), 1, + sym_base_class_clause, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - anon_sym_DOT_DOT_DOT_GT, - [196442] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(5062), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8755), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4827), 10, + ACTIONS(5694), 6, anon_sym_DOT_DOT_DOT, - 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(4835), 28, anon_sym_LPAREN2, anon_sym_STAR, - 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_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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [196497] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6680), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(5696), 30, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6678), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [196548] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_operator, + [147679] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 18, - 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_identifier, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, sym_auto, + ACTIONS(2253), 1, anon_sym_decltype, - ACTIONS(5498), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - 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, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [196599] = 3, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5799), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(9674), 1, + sym_type_descriptor, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [147774] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5507), 18, - 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_identifier, + ACTIONS(121), 1, sym_auto, + ACTIONS(123), 1, anon_sym_decltype, - ACTIONS(5509), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - 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, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [196650] = 3, + ACTIONS(4310), 1, + sym_identifier, + ACTIONS(4318), 1, + sym_primitive_type, + ACTIONS(4320), 1, + anon_sym_enum, + ACTIONS(4322), 1, + anon_sym_class, + ACTIONS(4324), 1, + anon_sym_struct, + ACTIONS(4326), 1, + anon_sym_union, + ACTIONS(4328), 1, + anon_sym_typename, + STATE(3466), 1, + sym_qualified_type_identifier, + STATE(3570), 1, + sym_decltype_auto, + STATE(3644), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5199), 1, + sym_type_specifier, + STATE(6867), 1, + sym_type_descriptor, + STATE(7546), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(3324), 2, + sym_decltype, + sym_template_type, + STATE(4690), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(4316), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3531), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [147869] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5507), 11, - anon_sym_DOT_DOT_DOT, - 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(5509), 32, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(7869), 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___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + ACTIONS(7871), 1, + anon_sym_AMP, + ACTIONS(7877), 1, 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_DOT_STAR, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8038), 1, + anon_sym_const, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8285), 1, + anon_sym_requires, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8425), 1, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, + STATE(6023), 1, + sym_function_attributes_start, + STATE(6257), 1, + sym_ref_qualifier, + STATE(6365), 1, + sym_function_exception_specification, + STATE(7021), 1, + sym_requires_clause, + STATE(7100), 1, + sym_function_postfix, + STATE(7126), 1, + sym_trailing_return_type, + STATE(7357), 1, + sym_function_attributes_end, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7867), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7921), 2, anon_sym_final, anon_sym_override, - anon_sym_DOT_DOT_DOT_GT, - [196701] = 11, + STATE(4937), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5586), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(8030), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [147972] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4061), 1, - anon_sym_LBRACE, - ACTIONS(7458), 1, + ACTIONS(121), 1, sym_auto, - ACTIONS(7460), 1, + ACTIONS(123), 1, anon_sym_decltype, - ACTIONS(8832), 1, - anon_sym_LPAREN2, - ACTIONS(8834), 1, - anon_sym_LBRACK, - STATE(3478), 1, - sym_decltype_auto, - STATE(5618), 1, - sym_new_declarator, - STATE(6162), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6303), 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(6301), 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_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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [196768] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8132), 1, - anon_sym_LBRACK, - ACTIONS(8150), 1, + ACTIONS(4318), 1, + sym_primitive_type, + ACTIONS(8458), 1, sym_identifier, - ACTIONS(8152), 1, - anon_sym_STAR, - ACTIONS(8154), 1, - anon_sym_AMP_AMP, - ACTIONS(8156), 1, - anon_sym_AMP, - STATE(7202), 1, + ACTIONS(8460), 1, + anon_sym_enum, + ACTIONS(8462), 1, + anon_sym_class, + ACTIONS(8464), 1, + anon_sym_struct, + ACTIONS(8466), 1, + anon_sym_union, + ACTIONS(8468), 1, + anon_sym_typename, + STATE(3466), 1, + sym_qualified_type_identifier, + STATE(3570), 1, + sym_decltype_auto, + STATE(3644), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5161), 1, + sym_type_specifier, + STATE(6867), 1, + sym_type_descriptor, + STATE(7528), 1, sym_scope_resolution, - STATE(7536), 1, - sym_declarator, - STATE(10671), 1, - sym_ms_based_modifier, - STATE(6505), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(9982), 3, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(3324), 2, sym_decltype, sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - ACTIONS(3664), 12, + STATE(4653), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(4316), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3531), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -495327,10 +454241,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [196853] = 3, + [148067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5511), 18, + ACTIONS(6252), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -495349,12 +454264,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5513), 25, + ACTIONS(6250), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -495366,7 +454282,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -495375,23 +454290,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [196904] = 9, + [148119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7044), 1, - anon_sym_DOT, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7046), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7057), 16, + ACTIONS(6199), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -495407,14 +454309,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(7059), 20, + sym_auto, + anon_sym_decltype, + ACTIONS(6197), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -495425,14 +454331,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [196967] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [148171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5456), 18, + ACTIONS(4763), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -495451,12 +454362,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5458), 25, + ACTIONS(4771), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -495468,7 +454380,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -495477,12 +454388,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [197018] = 4, + [148223] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5460), 11, + STATE(4497), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8470), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6056), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -495492,9 +454408,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_COLON, anon_sym_DOT, - ACTIONS(5467), 31, + ACTIONS(6054), 29, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -495523,85 +454438,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_DOT_DOT_DOT_GT, - [197071] = 10, + [148279] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7112), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8229), 1, + anon_sym_LBRACE, + ACTIONS(8472), 1, + anon_sym_COLON, + STATE(3654), 1, + sym_attribute_specifier, + STATE(4432), 1, + sym_enum_base_clause, + STATE(4476), 1, + sym_enumerator_list, + ACTIONS(6520), 4, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7110), 26, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(6522), 34, 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___attribute__, - 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, - [197136] = 10, + anon_sym___extension__, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_try, + anon_sym_requires, + [148343] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7044), 1, - anon_sym_DOT, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7046), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8830), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7053), 16, - aux_sym_preproc_elif_token1, + ACTIONS(8081), 1, + anon_sym___attribute__, + STATE(4791), 1, + sym_attribute_specifier, + ACTIONS(6032), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -495616,59 +454516,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - sym_identifier, - ACTIONS(7051), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - [197201] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(8850), 1, - anon_sym_LT, - STATE(5244), 1, - sym_template_argument_list, - ACTIONS(6197), 16, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_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, - ACTIONS(4853), 24, + sym_auto, + anon_sym_decltype, + ACTIONS(6030), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -495680,213 +454537,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [197258] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8625), 1, - anon_sym___attribute__, - ACTIONS(8852), 1, anon_sym_LBRACE, - ACTIONS(8854), 1, - anon_sym_COLON, - STATE(5318), 1, - sym_enum_base_clause, - STATE(5444), 1, - sym_enumerator_list, - STATE(5730), 1, - sym_attribute_specifier, - ACTIONS(6225), 10, - anon_sym_DOT_DOT_DOT, - 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(6227), 27, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_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_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [197321] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7044), 1, - anon_sym_DOT, - ACTIONS(8800), 1, - anon_sym_SLASH, - ACTIONS(8802), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8804), 1, - anon_sym_AMP_AMP, - ACTIONS(8808), 1, - anon_sym_CARET, - ACTIONS(8816), 1, - anon_sym_GT_EQ, - ACTIONS(8820), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8822), 1, - anon_sym_or, - ACTIONS(8824), 1, - anon_sym_and, - ACTIONS(8826), 1, - anon_sym_xor, - ACTIONS(8828), 1, - anon_sym_not_eq, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7046), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7077), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(8796), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8798), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8806), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(8810), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8812), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8818), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8830), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8814), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7079), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_QMARK, - [197420] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(5276), 1, - anon_sym_LPAREN2, - ACTIONS(6256), 1, - sym_identifier, - ACTIONS(6260), 1, - anon_sym_STAR, - ACTIONS(6262), 1, - anon_sym_AMP_AMP, - ACTIONS(6264), 1, - anon_sym_AMP, - ACTIONS(6266), 1, - anon_sym_LBRACK, - ACTIONS(8856), 1, - anon_sym_DOT_DOT_DOT, - STATE(4027), 1, - sym_parameter_list, - STATE(7241), 1, - sym_scope_resolution, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(7566), 1, - sym_declarator, - STATE(7789), 1, - sym_abstract_declarator, - STATE(8812), 1, - sym_variadic_declarator, - STATE(9737), 1, - sym_ms_based_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(8858), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_GT2, - STATE(7464), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(7634), 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, - [197515] = 3, + [148399] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6268), 11, + STATE(4497), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8470), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6130), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -495896,9 +454565,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_COLON, anon_sym_DOT, - ACTIONS(6270), 32, + ACTIONS(6128), 29, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -495911,7 +454579,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute__, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -495928,240 +454595,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_DOT_DOT_DOT_GT, - [197566] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(5748), 1, - sym_identifier, - ACTIONS(8132), 1, - anon_sym_LBRACK, - ACTIONS(8144), 1, - anon_sym_STAR, - ACTIONS(8146), 1, - anon_sym_AMP_AMP, - ACTIONS(8148), 1, - anon_sym_AMP, - STATE(7180), 1, - sym_scope_resolution, - STATE(7969), 1, - sym_declarator, - STATE(9814), 1, - sym_ms_based_modifier, - STATE(6505), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - ACTIONS(3664), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [197651] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7044), 1, - anon_sym_DOT, - ACTIONS(8800), 1, - anon_sym_SLASH, - ACTIONS(8802), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8804), 1, - anon_sym_AMP_AMP, - ACTIONS(8808), 1, - anon_sym_CARET, - ACTIONS(8816), 1, - anon_sym_GT_EQ, - ACTIONS(8820), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8822), 1, - anon_sym_or, - ACTIONS(8824), 1, - anon_sym_and, - ACTIONS(8826), 1, - anon_sym_xor, - ACTIONS(8828), 1, - anon_sym_not_eq, - ACTIONS(8836), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8838), 1, - anon_sym_QMARK, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7046), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7081), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(8796), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8798), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8806), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(8810), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8812), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8818), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8830), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8814), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7083), 5, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [197754] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7044), 1, - anon_sym_DOT, - ACTIONS(8800), 1, - anon_sym_SLASH, - ACTIONS(8802), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8804), 1, - anon_sym_AMP_AMP, - ACTIONS(8808), 1, - anon_sym_CARET, - ACTIONS(8816), 1, - anon_sym_GT_EQ, - ACTIONS(8820), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8822), 1, - anon_sym_or, - ACTIONS(8824), 1, - anon_sym_and, - ACTIONS(8826), 1, - anon_sym_xor, - ACTIONS(8828), 1, - anon_sym_not_eq, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7046), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7085), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(8796), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8798), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8806), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(8810), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8812), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8818), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8830), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8814), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7087), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_QMARK, - [197853] = 10, + [148455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7044), 1, - anon_sym_DOT, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7046), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8830), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7112), 16, + ACTIONS(6016), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -496177,14 +454615,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(7110), 18, + sym_auto, + anon_sym_decltype, + ACTIONS(6018), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -496195,77 +454637,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - [197918] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8124), 1, - sym_identifier, - ACTIONS(8126), 1, - anon_sym_STAR, - ACTIONS(8128), 1, - anon_sym_AMP_AMP, - ACTIONS(8130), 1, - anon_sym_AMP, - ACTIONS(8132), 1, - anon_sym_LBRACK, - STATE(7205), 1, - sym_scope_resolution, - STATE(7513), 1, - sym_declarator, - STATE(9949), 1, - sym_ms_based_modifier, - STATE(6505), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - ACTIONS(3664), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [198003] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [148507] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 11, + STATE(4497), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8470), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6066), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -496275,9 +454665,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_COLON, anon_sym_DOT, - ACTIONS(5479), 32, + ACTIONS(6064), 29, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -496290,7 +454679,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute__, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -496307,14 +454695,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_DOT_DOT_DOT_GT, - [198054] = 3, + [148563] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 17, - aux_sym_preproc_elif_token1, + ACTIONS(8081), 1, + anon_sym___attribute__, + STATE(4799), 1, + sym_attribute_specifier, + ACTIONS(6104), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -496331,13 +454720,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5479), 26, + sym_auto, + anon_sym_decltype, + ACTIONS(6102), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -496349,7 +454739,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -496358,11 +454747,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [198105] = 3, + [148619] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5481), 17, - aux_sym_preproc_elif_token1, + ACTIONS(8081), 1, + anon_sym___attribute__, + STATE(4823), 1, + sym_attribute_specifier, + ACTIONS(6026), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -496379,13 +454771,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5483), 26, + sym_auto, + anon_sym_decltype, + ACTIONS(6024), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -496397,7 +454790,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -496406,60 +454798,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [198156] = 3, + [148675] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5456), 11, - anon_sym_DOT_DOT_DOT, - 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(5458), 32, - anon_sym_LPAREN2, - anon_sym_STAR, - 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, + ACTIONS(8081), 1, anon_sym___attribute__, - anon_sym_COLON_COLON, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_DOT_DOT_GT, - [198207] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5460), 18, + STATE(4824), 1, + sym_attribute_specifier, + ACTIONS(6100), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -496478,7 +454824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5467), 24, + ACTIONS(6098), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -496503,58 +454849,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [198260] = 3, + [148731] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 17, - aux_sym_preproc_elif_token1, - 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_identifier, - ACTIONS(5502), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(5761), 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_COLON_COLON, - anon_sym_LBRACE, + ACTIONS(6999), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(7001), 1, + anon_sym_DOT, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [198311] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5496), 17, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7019), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -496570,16 +454884,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(5498), 26, + ACTIONS(7021), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -496590,108 +454902,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [198362] = 29, + [148797] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6394), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7032), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7044), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(8800), 1, - anon_sym_SLASH, - ACTIONS(8802), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8804), 1, - anon_sym_AMP_AMP, - ACTIONS(8808), 1, - anon_sym_CARET, - ACTIONS(8816), 1, - anon_sym_GT_EQ, - ACTIONS(8820), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8822), 1, - anon_sym_or, - ACTIONS(8824), 1, - anon_sym_and, - ACTIONS(8826), 1, - anon_sym_xor, - ACTIONS(8828), 1, - anon_sym_not_eq, - ACTIONS(8836), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8838), 1, - anon_sym_QMARK, - STATE(3445), 1, + STATE(2617), 1, sym_argument_list, - STATE(3448), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7046), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7093), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7023), 16, aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(8796), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8798), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8806), 2, + anon_sym_SLASH, anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(8810), 2, anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8812), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8818), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8830), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8814), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7095), 5, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(7025), 19, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [198465] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7225), 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(7223), 34, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -496702,29 +454958,13 @@ 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - [198516] = 3, + [148863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5507), 17, + ACTIONS(6216), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -496742,7 +454982,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5509), 26, + sym_auto, + anon_sym_decltype, + ACTIONS(6214), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -496760,7 +455002,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -496769,10 +455010,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [198567] = 3, + [148915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5511), 17, + ACTIONS(6220), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -496790,7 +455031,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5513), 26, + sym_auto, + anon_sym_decltype, + ACTIONS(6218), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -496808,7 +455051,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -496817,10 +455059,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [198618] = 3, + [148967] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6268), 18, + ACTIONS(8081), 1, + anon_sym___attribute__, + STATE(4777), 1, + sym_attribute_specifier, + ACTIONS(6086), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -496839,7 +455085,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6270), 25, + ACTIONS(6084), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -496856,73 +455102,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [198669] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8625), 1, - anon_sym___attribute__, - ACTIONS(8852), 1, anon_sym_LBRACE, - ACTIONS(8854), 1, - anon_sym_COLON, - STATE(5388), 1, - sym_enum_base_clause, - STATE(5449), 1, - sym_enumerator_list, - STATE(5773), 1, - sym_attribute_specifier, - ACTIONS(6233), 10, - anon_sym_DOT_DOT_DOT, - 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(6235), 27, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_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_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [198732] = 3, + [149023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5456), 17, + ACTIONS(6224), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -496940,7 +455131,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5458), 26, + sym_auto, + anon_sym_decltype, + ACTIONS(6222), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -496958,7 +455151,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -496967,175 +455159,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [198783] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(7916), 1, - anon_sym_const, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8597), 1, - sym_auto, - ACTIONS(8599), 1, - anon_sym_decltype, - ACTIONS(8842), 1, - anon_sym___declspec, - ACTIONS(8844), 1, - anon_sym___inline, - ACTIONS(8846), 1, - anon_sym_virtual, - ACTIONS(8848), 1, - anon_sym_alignas, - STATE(4763), 1, - sym_decltype_auto, - ACTIONS(7578), 2, - anon_sym_AMP, - anon_sym_LBRACK, - STATE(5461), 2, - sym_declaration_modifiers, - aux_sym_declaration_specifiers_repeat1, - ACTIONS(7580), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - STATE(6411), 7, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - ACTIONS(8840), 8, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(7907), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [198862] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7057), 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(7059), 28, - ts_builtin_sym_end, - 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___attribute__, - 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, - [198925] = 20, + [149075] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_AMP_AMP, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, + ACTIONS(2221), 1, + anon_sym_enum, + ACTIONS(2223), 1, + anon_sym_class, + ACTIONS(2225), 1, + anon_sym_struct, + ACTIONS(2227), 1, + anon_sym_union, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3708), 1, - anon_sym_STAR, - ACTIONS(3710), 1, - anon_sym_AMP, - ACTIONS(3716), 1, + ACTIONS(2255), 1, + anon_sym_typename, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(5748), 1, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8454), 1, sym_identifier, - ACTIONS(8132), 1, - anon_sym_LBRACK, - STATE(7201), 1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5662), 1, + sym_type_specifier, + STATE(5792), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7524), 1, sym_scope_resolution, - STATE(7587), 1, - sym_declarator, - STATE(10059), 1, - sym_ms_based_modifier, - STATE(6505), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(9982), 3, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2580), 2, sym_decltype, sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - ACTIONS(3664), 12, + STATE(5846), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(2215), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -497148,12 +455228,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [199010] = 4, + [149167] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(4827), 18, + ACTIONS(8081), 1, + anon_sym___attribute__, + STATE(4806), 1, + sym_attribute_specifier, + ACTIONS(6036), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -497172,7 +455254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(4835), 24, + ACTIONS(6034), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -497197,98 +455279,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [199063] = 27, + [149223] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(5276), 1, - anon_sym_LPAREN2, - ACTIONS(6256), 1, - sym_identifier, - ACTIONS(6266), 1, - anon_sym_LBRACK, - ACTIONS(6646), 1, - anon_sym_STAR, - ACTIONS(8856), 1, + STATE(4624), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8476), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6090), 10, anon_sym_DOT_DOT_DOT, - ACTIONS(8862), 1, - anon_sym_AMP_AMP, - ACTIONS(8864), 1, - anon_sym_AMP, - ACTIONS(8866), 1, - anon_sym_EQ, - STATE(4268), 1, - sym_parameter_list, - STATE(7241), 1, - sym_scope_resolution, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(7817), 1, - sym_declarator, - STATE(8050), 1, - sym_abstract_declarator, - STATE(8140), 1, - sym_abstract_reference_declarator, - STATE(9737), 1, - sym_ms_based_modifier, - ACTIONS(8860), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(8777), 2, - sym_variadic_declarator, - sym_variadic_reference_declarator, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7464), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(7634), 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, - [199162] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7053), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -497297,11 +455299,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 26, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_DOT, + ACTIONS(6088), 29, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -497312,10 +455312,9 @@ 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___attribute__, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -497324,23 +455323,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [199227] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7044), 1, - anon_sym_DOT, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7046), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6998), 16, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [149279] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4763), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -497356,14 +455349,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(6996), 20, + sym_auto, + anon_sym_decltype, + ACTIONS(4771), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -497374,91 +455371,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [199290] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7044), 1, - anon_sym_DOT, - ACTIONS(8800), 1, - anon_sym_SLASH, - ACTIONS(8802), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8804), 1, - anon_sym_AMP_AMP, - ACTIONS(8808), 1, - anon_sym_CARET, - ACTIONS(8816), 1, - anon_sym_GT_EQ, - ACTIONS(8820), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8822), 1, - anon_sym_or, - ACTIONS(8824), 1, - anon_sym_and, - ACTIONS(8826), 1, - anon_sym_xor, - ACTIONS(8828), 1, - anon_sym_not_eq, - ACTIONS(8836), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8838), 1, - anon_sym_QMARK, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7046), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8796), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8798), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8806), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(8810), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8812), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8818), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8830), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8868), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(8814), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(8870), 5, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [199393] = 4, + [149331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6197), 11, - anon_sym_DOT_DOT_DOT, + ACTIONS(6228), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -497467,58 +455392,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(4853), 31, - anon_sym_LPAREN2, - anon_sym_STAR, - 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_DOT, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_DOT_DOT_GT, - [199446] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5746), 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(3187), 34, - ts_builtin_sym_end, + ACTIONS(6226), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -497530,55 +455420,45 @@ 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___attribute__, 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_DOT_STAR, anon_sym_DASH_GT, - [199497] = 9, + [149383] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6998), 8, + ACTIONS(6892), 1, + anon_sym___attribute__, + ACTIONS(7041), 1, + anon_sym_LBRACE, + ACTIONS(8478), 1, + anon_sym_COLON, + STATE(2892), 1, + sym_enum_base_clause, + STATE(3109), 1, + sym_enumerator_list, + STATE(3312), 1, + sym_attribute_specifier, + ACTIONS(6514), 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(6996), 28, - ts_builtin_sym_end, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6516), 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, @@ -497586,13 +455466,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___attribute__, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -497603,26 +455478,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [199560] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7044), 1, - anon_sym_DOT, - STATE(3445), 1, - sym_argument_list, - STATE(3448), 1, - sym_subscript_argument_list, - ACTIONS(7046), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8830), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7089), 16, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [149447] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6256), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -497638,14 +455502,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(7091), 18, + sym_auto, + anon_sym_decltype, + ACTIONS(6254), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -497656,77 +455524,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - [199625] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(6256), 1, - sym_identifier, - ACTIONS(8132), 1, - anon_sym_LBRACK, - ACTIONS(8163), 1, - anon_sym_STAR, - ACTIONS(8165), 1, - anon_sym_AMP_AMP, - ACTIONS(8167), 1, - anon_sym_AMP, - STATE(7241), 1, - sym_scope_resolution, - STATE(7587), 1, - sym_declarator, - STATE(9737), 1, - sym_ms_based_modifier, - STATE(6505), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - ACTIONS(3664), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [199710] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [149499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7319), 9, + ACTIONS(6318), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -497735,12 +455545,23 @@ static const uint16_t ts_small_parse_table[] = { 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(7317), 34, - ts_builtin_sym_end, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6316), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -497752,29 +455573,19 @@ 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___attribute__, 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_DOT_STAR, anon_sym_DASH_GT, - [199761] = 3, + [149551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5518), 18, + ACTIONS(6322), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -497793,12 +455604,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5525), 25, + ACTIONS(6320), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -497810,7 +455622,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -497819,196 +455630,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [199812] = 20, + [149603] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8124), 1, - sym_identifier, - ACTIONS(8126), 1, - anon_sym_STAR, - ACTIONS(8128), 1, - anon_sym_AMP_AMP, - ACTIONS(8130), 1, - anon_sym_AMP, - ACTIONS(8132), 1, - anon_sym_LBRACK, - STATE(7205), 1, - sym_scope_resolution, - STATE(7489), 1, - sym_declarator, - STATE(9949), 1, - sym_ms_based_modifier, - STATE(6505), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - ACTIONS(3664), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [199897] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, + ACTIONS(3328), 1, + anon_sym_enum, + ACTIONS(3330), 1, + anon_sym_class, + ACTIONS(3332), 1, + anon_sym_struct, + ACTIONS(3334), 1, + anon_sym_union, + ACTIONS(3358), 1, + sym_auto, + ACTIONS(3360), 1, anon_sym_decltype, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(5276), 1, - anon_sym_LPAREN2, - ACTIONS(6256), 1, + ACTIONS(3362), 1, + anon_sym_typename, + ACTIONS(8447), 1, sym_identifier, - ACTIONS(6266), 1, - anon_sym_LBRACK, - ACTIONS(6533), 1, - anon_sym_STAR, - ACTIONS(8856), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8862), 1, - anon_sym_AMP_AMP, - ACTIONS(8864), 1, - anon_sym_AMP, - ACTIONS(8872), 1, - anon_sym_EQ, - STATE(4696), 1, - sym_parameter_list, - STATE(7241), 1, + ACTIONS(8449), 1, + sym_primitive_type, + STATE(2573), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3240), 1, + sym_qualified_type_identifier, + STATE(3292), 1, + sym_decltype_auto, + STATE(5604), 1, + sym_type_specifier, + STATE(7558), 1, sym_scope_resolution, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(7823), 1, - sym_declarator, - STATE(8052), 1, - sym_abstract_declarator, - STATE(8163), 1, - sym_abstract_reference_declarator, - STATE(9737), 1, - sym_ms_based_modifier, - ACTIONS(8860), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(8777), 2, - sym_variadic_declarator, - sym_variadic_reference_declarator, - STATE(9982), 3, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2572), 2, sym_decltype, sym_template_type, - sym_dependent_type_identifier, - STATE(7464), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(7634), 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, - [199996] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8124), 1, - sym_identifier, - ACTIONS(8126), 1, - anon_sym_STAR, - ACTIONS(8128), 1, - anon_sym_AMP_AMP, - ACTIONS(8130), 1, - anon_sym_AMP, - ACTIONS(8132), 1, - anon_sym_LBRACK, - STATE(7205), 1, - sym_scope_resolution, - STATE(7452), 1, - sym_declarator, - STATE(9949), 1, - sym_ms_based_modifier, - STATE(6505), 2, + STATE(5846), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - ACTIONS(3664), 12, + ACTIONS(3324), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3293), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -498021,80 +455699,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [200081] = 26, + [149695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, - anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, - anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8878), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8882), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7095), 6, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - [200177] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7265), 9, + ACTIONS(6326), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -498103,12 +455712,23 @@ static const uint16_t ts_small_parse_table[] = { 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(7263), 33, - ts_builtin_sym_end, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6324), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -498120,28 +455740,19 @@ 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___attribute__, - anon_sym_RBRACE, + anon_sym_LBRACE, 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_DOT_STAR, anon_sym_DASH_GT, - [200227] = 3, + [149747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6588), 18, + ACTIONS(6330), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -498160,12 +455771,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6586), 24, + ACTIONS(6328), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -498185,10 +455797,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [200277] = 3, + [149799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6310), 18, + ACTIONS(6334), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -498207,12 +455820,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6308), 24, + ACTIONS(6332), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -498232,12 +455846,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [200327] = 4, + [149851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5460), 17, + ACTIONS(6338), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -498255,7 +455867,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5467), 24, + sym_auto, + anon_sym_decltype, + ACTIONS(6336), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -498273,6 +455887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -498280,75 +455895,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [200379] = 21, + [149903] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7053), 1, - anon_sym_PIPE, - ACTIONS(8880), 1, - anon_sym_SLASH, - ACTIONS(8890), 1, - anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8906), 1, - anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8878), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8888), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7051), 13, - ts_builtin_sym_end, - 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_or, - anon_sym_and, - anon_sym_bitor, - [200465] = 3, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8380), 1, + sym_auto, + ACTIONS(8394), 1, + sym_primitive_type, + ACTIONS(8404), 1, + anon_sym_decltype, + ACTIONS(8410), 1, + sym_identifier, + ACTIONS(8412), 1, + anon_sym_enum, + ACTIONS(8414), 1, + anon_sym_class, + ACTIONS(8416), 1, + anon_sym_struct, + ACTIONS(8418), 1, + anon_sym_union, + ACTIONS(8420), 1, + anon_sym_typename, + STATE(3466), 1, + sym_qualified_type_identifier, + STATE(4990), 1, + sym_decltype_auto, + STATE(5100), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5183), 1, + sym_type_specifier, + STATE(7521), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(3324), 2, + sym_decltype, + sym_template_type, + STATE(5846), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8392), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4991), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [149995] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7311), 9, + ACTIONS(3899), 1, + anon_sym_LBRACE, + ACTIONS(6725), 1, + sym_auto, + ACTIONS(6727), 1, + anon_sym_decltype, + ACTIONS(8013), 1, + anon_sym_LBRACK, + ACTIONS(8269), 1, + anon_sym_LPAREN2, + STATE(2694), 1, + sym_decltype_auto, + STATE(4445), 1, + sym_new_declarator, + STATE(4314), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5807), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -498358,12 +455994,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7309), 33, - ts_builtin_sym_end, + ACTIONS(5805), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -498374,10 +456007,6 @@ 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___attribute__, - anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -498392,57 +456021,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [200515] = 3, + [150063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6596), 18, - 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_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6594), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, + ACTIONS(6260), 19, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [200565] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6600), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -498461,12 +456044,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6598), 24, + ACTIONS(6258), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -498486,44 +456070,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [200615] = 17, + [150115] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(7916), 1, - anon_sym_const, - ACTIONS(8597), 1, + ACTIONS(121), 1, sym_auto, - ACTIONS(8599), 1, + ACTIONS(123), 1, anon_sym_decltype, - ACTIONS(8910), 1, - anon_sym_LPAREN2, - ACTIONS(8912), 1, - anon_sym_STAR, - ACTIONS(8914), 1, - anon_sym_AMP_AMP, - ACTIONS(8916), 1, - anon_sym_AMP, - ACTIONS(8918), 1, - anon_sym_LBRACK, - STATE(4267), 1, - sym_parameter_list, - STATE(4763), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(4318), 1, + sym_primitive_type, + ACTIONS(8458), 1, + sym_identifier, + ACTIONS(8460), 1, + anon_sym_enum, + ACTIONS(8462), 1, + anon_sym_class, + ACTIONS(8464), 1, + anon_sym_struct, + ACTIONS(8466), 1, + anon_sym_union, + ACTIONS(8468), 1, + anon_sym_typename, + STATE(3466), 1, + sym_qualified_type_identifier, + STATE(3570), 1, sym_decltype_auto, - STATE(7280), 1, - sym_function_declarator_seq, - STATE(7350), 1, - sym_abstract_declarator, - STATE(5521), 2, + STATE(3644), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5162), 1, + sym_type_specifier, + STATE(7528), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(3324), 2, + sym_decltype, + sym_template_type, + STATE(5846), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(7278), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7907), 11, + ACTIONS(4316), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3531), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -498534,23 +456139,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(8908), 12, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [200693] = 3, + [150207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6612), 18, + ACTIONS(6272), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -498569,12 +456162,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6610), 24, + ACTIONS(6270), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -498594,10 +456188,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [200743] = 3, + [150259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6616), 18, + ACTIONS(5989), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -498616,12 +456211,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6614), 24, + ACTIONS(5987), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -498641,10 +456237,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [200793] = 3, + [150311] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7415), 9, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(8456), 1, + anon_sym_LT, + STATE(4738), 1, + sym_template_argument_list, + ACTIONS(5938), 10, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -498652,13 +456255,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(7413), 33, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4789), 31, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -498670,12 +456269,9 @@ 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___attribute__, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -498688,129 +456284,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [200843] = 26, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_DOT_DOT_GT, + [150369] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, - anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, - anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8878), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8882), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7065), 6, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - [200939] = 5, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5769), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(5846), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [150461] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(8920), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8922), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6372), 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(6374), 29, - ts_builtin_sym_end, - 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, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, + ACTIONS(3899), 1, + anon_sym_LBRACE, + ACTIONS(6725), 1, + sym_auto, + ACTIONS(6727), 1, + anon_sym_decltype, + ACTIONS(8013), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - 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, - [200993] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7348), 9, + ACTIONS(8269), 1, + anon_sym_LPAREN2, + STATE(2694), 1, + sym_decltype_auto, + STATE(4494), 1, + sym_new_declarator, + STATE(4379), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5759), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -498820,12 +456388,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7346), 33, - ts_builtin_sym_end, + ACTIONS(5757), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -498836,10 +456401,6 @@ 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___attribute__, - anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -498854,10 +456415,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [201043] = 3, + [150529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6630), 18, + ACTIONS(6244), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -498876,12 +456438,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6628), 24, + ACTIONS(6242), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -498901,10 +456464,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [201093] = 3, + [150581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7315), 9, + ACTIONS(5983), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -498913,12 +456477,23 @@ static const uint16_t ts_small_parse_table[] = { 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(7313), 33, - ts_builtin_sym_end, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5981), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -498930,29 +456505,35 @@ 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___attribute__, - anon_sym_RBRACE, + anon_sym_LBRACE, 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_DOT_STAR, anon_sym_DASH_GT, - [201143] = 3, + [150633] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5460), 10, - anon_sym_DOT_DOT_DOT, + ACTIONS(3899), 1, + anon_sym_LBRACE, + ACTIONS(6725), 1, + sym_auto, + ACTIONS(6727), 1, + anon_sym_decltype, + ACTIONS(8013), 1, + anon_sym_LBRACK, + ACTIONS(8269), 1, + anon_sym_LPAREN2, + STATE(2694), 1, + sym_decltype_auto, + STATE(4486), 1, + sym_new_declarator, + STATE(4254), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5830), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -498962,8 +456543,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(5467), 32, - anon_sym_LPAREN2, + ACTIONS(5828), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -498974,9 +456556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -498990,15 +456570,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_DOT_DOT_GT, - [201193] = 3, + [150701] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6547), 18, + ACTIONS(8081), 1, + anon_sym___attribute__, + STATE(4790), 1, + sym_attribute_specifier, + ACTIONS(6096), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -499017,7 +456596,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6545), 24, + ACTIONS(6094), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -499042,17 +456621,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [201243] = 6, + [150757] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3824), 1, - anon_sym_LBRACE, - ACTIONS(8639), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8380), 1, + sym_auto, + ACTIONS(8390), 1, + sym_identifier, + ACTIONS(8394), 1, + sym_primitive_type, + ACTIONS(8396), 1, + anon_sym_enum, + ACTIONS(8398), 1, + anon_sym_class, + ACTIONS(8400), 1, + anon_sym_struct, + ACTIONS(8402), 1, + anon_sym_union, + ACTIONS(8404), 1, + anon_sym_decltype, + ACTIONS(8406), 1, + anon_sym_typename, + STATE(3466), 1, + sym_qualified_type_identifier, + STATE(4990), 1, + sym_decltype_auto, + STATE(5100), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5687), 1, + sym_type_specifier, + STATE(7551), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(3324), 2, + sym_decltype, + sym_template_type, + STATE(5846), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8392), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4991), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [150849] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5442), 1, + anon_sym_LBRACK, + ACTIONS(5445), 1, + anon_sym_SEMI, + ACTIONS(5435), 3, + anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(5576), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6888), 16, + anon_sym_LBRACK_LBRACK, + ACTIONS(5438), 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(5433), 32, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [150907] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6401), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -499069,12 +456763,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6886), 22, + sym_auto, + anon_sym_decltype, + ACTIONS(6399), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -499085,6 +456783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -499092,10 +456791,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [201299] = 3, + [150959] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8366), 1, + sym_identifier, + ACTIONS(8370), 1, + sym_primitive_type, + ACTIONS(8372), 1, + anon_sym_enum, + ACTIONS(8374), 1, + anon_sym_class, + ACTIONS(8376), 1, + anon_sym_struct, + ACTIONS(8378), 1, + anon_sym_union, + ACTIONS(8380), 1, + sym_auto, + ACTIONS(8382), 1, + anon_sym_decltype, + ACTIONS(8384), 1, + anon_sym_typename, + STATE(3466), 1, + sym_qualified_type_identifier, + STATE(4990), 1, + sym_decltype_auto, + STATE(6295), 1, + sym_type_specifier, + STATE(6304), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7572), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2572), 2, + sym_decltype, + sym_template_type, + STATE(5846), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8368), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4991), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [151051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6239), 18, + ACTIONS(6195), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -499114,12 +456883,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6237), 24, + ACTIONS(6193), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -499139,10 +456909,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [201349] = 3, + [151103] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7371), 9, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7001), 1, + anon_sym_DOT, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6995), 16, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -499151,13 +456935,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(7369), 33, - ts_builtin_sym_end, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(6997), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -499168,28 +456959,32 @@ 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - [201399] = 3, + [151167] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7352), 9, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7001), 1, + anon_sym_DOT, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7005), 16, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -499198,13 +456993,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(7350), 33, - ts_builtin_sym_end, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(7007), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -499215,46 +457017,30 @@ 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - [201449] = 11, + [151233] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4120), 1, - anon_sym_LBRACE, - ACTIONS(8924), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(8926), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8928), 1, - sym_auto, - ACTIONS(8930), 1, - anon_sym_decltype, - STATE(5791), 1, - sym_new_declarator, - STATE(5856), 1, - sym_decltype_auto, - STATE(6209), 2, + ACTIONS(7001), 1, + anon_sym_DOT, + STATE(2617), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(6303), 10, - anon_sym_DOT_DOT_DOT, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7011), 16, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -499263,8 +457049,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(6301), 23, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(7013), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -499275,23 +457073,27 @@ static const uint16_t ts_small_parse_table[] = { 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [201515] = 3, + [151299] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4827), 18, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7001), 1, + anon_sym_DOT, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7015), 16, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -499306,17 +457108,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(4835), 24, + ACTIONS(7017), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -499327,18 +457126,16 @@ static const uint16_t ts_small_parse_table[] = { 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_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [201565] = 3, + [151363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7419), 9, + ACTIONS(6288), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -499347,12 +457144,23 @@ static const uint16_t ts_small_parse_table[] = { 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(7417), 33, - ts_builtin_sym_end, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6286), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -499364,28 +457172,88 @@ 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___attribute__, - anon_sym_RBRACE, + anon_sym_LBRACE, 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_DOT_STAR, anon_sym_DASH_GT, - [201615] = 3, + [151415] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8380), 1, + sym_auto, + ACTIONS(8394), 1, + sym_primitive_type, + ACTIONS(8404), 1, + anon_sym_decltype, + ACTIONS(8410), 1, + sym_identifier, + ACTIONS(8412), 1, + anon_sym_enum, + ACTIONS(8414), 1, + anon_sym_class, + ACTIONS(8416), 1, + anon_sym_struct, + ACTIONS(8418), 1, + anon_sym_union, + ACTIONS(8420), 1, + anon_sym_typename, + STATE(3466), 1, + sym_qualified_type_identifier, + STATE(4880), 1, + sym_type_specifier, + STATE(4990), 1, + sym_decltype_auto, + STATE(5100), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7521), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(3324), 2, + sym_decltype, + sym_template_type, + STATE(5846), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8392), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4991), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [151507] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7383), 9, + ACTIONS(6292), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -499394,12 +457262,23 @@ static const uint16_t ts_small_parse_table[] = { 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(7381), 33, - ts_builtin_sym_end, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6290), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -499411,28 +457290,19 @@ 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___attribute__, - anon_sym_RBRACE, + anon_sym_LBRACE, 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_DOT_STAR, anon_sym_DASH_GT, - [201665] = 3, + [151559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6684), 18, + ACTIONS(6342), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -499451,12 +457321,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6682), 24, + ACTIONS(6340), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -499476,10 +457347,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [201715] = 3, + [151611] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8229), 1, + anon_sym_LBRACE, + ACTIONS(8472), 1, + anon_sym_COLON, + STATE(3597), 1, + sym_attribute_specifier, + STATE(4430), 1, + sym_enum_base_clause, + STATE(4472), 1, + sym_enumerator_list, + ACTIONS(6514), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(6516), 34, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_try, + anon_sym_requires, + [151675] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6688), 18, + ACTIONS(6346), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -499498,12 +457425,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6686), 24, + ACTIONS(6344), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -499523,10 +457451,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [201765] = 3, + [151727] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6555), 18, + STATE(4621), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8480), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6185), 10, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -499535,22 +457471,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_DOT, + ACTIONS(6183), 29, + anon_sym_LPAREN2, + anon_sym_STAR, + 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___attribute__, + 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_DOT, - sym_identifier, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - ACTIONS(6553), 24, + anon_sym_DOT_DOT_DOT_GT, + [151783] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4626), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8482), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6158), 10, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + 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(6156), 29, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -499562,18 +457535,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, 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_DOT_STAR, anon_sym_DASH_GT, - [201815] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [151839] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6694), 18, + ACTIONS(8081), 1, + anon_sym___attribute__, + STATE(4820), 1, + sym_attribute_specifier, + ACTIONS(6052), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -499592,7 +457579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6692), 24, + ACTIONS(6050), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -499617,10 +457604,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [201865] = 3, + [151895] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6572), 18, + ACTIONS(8081), 1, + anon_sym___attribute__, + STATE(4816), 1, + sym_attribute_specifier, + ACTIONS(6022), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -499639,7 +457630,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6570), 24, + ACTIONS(6020), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -499664,34 +457655,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [201915] = 3, + [151951] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6559), 18, + ACTIONS(6892), 1, + anon_sym___attribute__, + ACTIONS(7041), 1, + anon_sym_LBRACE, + ACTIONS(8478), 1, + anon_sym_COLON, + STATE(2965), 1, + sym_enum_base_clause, + STATE(2981), 1, + sym_enumerator_list, + STATE(3232), 1, + sym_attribute_specifier, + ACTIONS(6520), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_GT_GT, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6557), 24, + ACTIONS(6522), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -499700,21 +457693,28 @@ 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_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_DOT_STAR, anon_sym_DASH_GT, - [201965] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [152015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6658), 18, + ACTIONS(6296), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -499733,12 +457733,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6656), 24, + ACTIONS(6294), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -499758,10 +457759,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [202015] = 3, + [152067] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2221), 1, + anon_sym_enum, + ACTIONS(2223), 1, + anon_sym_class, + ACTIONS(2225), 1, + anon_sym_struct, + ACTIONS(2227), 1, + anon_sym_union, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, + anon_sym_decltype, + ACTIONS(2255), 1, + anon_sym_typename, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8454), 1, + sym_identifier, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5792), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5857), 1, + sym_type_specifier, + STATE(7524), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(5846), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(2215), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [152159] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(3328), 1, + anon_sym_enum, + ACTIONS(3330), 1, + anon_sym_class, + ACTIONS(3332), 1, + anon_sym_struct, + ACTIONS(3334), 1, + anon_sym_union, + ACTIONS(3358), 1, + sym_auto, + ACTIONS(3360), 1, + anon_sym_decltype, + ACTIONS(3362), 1, + anon_sym_typename, + ACTIONS(8447), 1, + sym_identifier, + ACTIONS(8449), 1, + sym_primitive_type, + STATE(2573), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3240), 1, + sym_qualified_type_identifier, + STATE(3292), 1, + sym_decltype_auto, + STATE(5818), 1, + sym_type_specifier, + STATE(7558), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2572), 2, + sym_decltype, + sym_template_type, + STATE(5846), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(3324), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3293), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [152251] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5423), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(5846), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [152343] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 18, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(8484), 1, + anon_sym_LT, + STATE(4738), 1, + sym_template_argument_list, + ACTIONS(5374), 10, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -499769,23 +457984,9 @@ static const uint16_t ts_small_parse_table[] = { 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_COLON, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6561), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(5381), 31, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -499797,18 +457998,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, 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_DOT_STAR, anon_sym_DASH_GT, - [202065] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_DOT_DOT_GT, + [152401] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6522), 18, + ACTIONS(8081), 1, + anon_sym___attribute__, + STATE(4814), 1, + sym_attribute_specifier, + ACTIONS(6062), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -499827,7 +458044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6520), 24, + ACTIONS(6060), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -499852,78 +458069,287 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [202115] = 24, + [152457] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(8880), 1, - anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, - anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8878), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8882), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7008), 8, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - [202207] = 3, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5795), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(5846), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [152549] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(121), 1, + sym_auto, + ACTIONS(123), 1, + anon_sym_decltype, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(4310), 1, + sym_identifier, + ACTIONS(4318), 1, + sym_primitive_type, + ACTIONS(4320), 1, + anon_sym_enum, + ACTIONS(4322), 1, + anon_sym_class, + ACTIONS(4324), 1, + anon_sym_struct, + ACTIONS(4326), 1, + anon_sym_union, + ACTIONS(4328), 1, + anon_sym_typename, + STATE(3466), 1, + sym_qualified_type_identifier, + STATE(3570), 1, + sym_decltype_auto, + STATE(3644), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5306), 1, + sym_type_specifier, + STATE(7546), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(3324), 2, + sym_decltype, + sym_template_type, + STATE(5846), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(4316), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3531), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [152641] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8427), 1, + sym_identifier, + ACTIONS(8431), 1, + sym_primitive_type, + ACTIONS(8433), 1, + anon_sym_enum, + ACTIONS(8435), 1, + anon_sym_class, + ACTIONS(8437), 1, + anon_sym_struct, + ACTIONS(8439), 1, + anon_sym_union, + ACTIONS(8441), 1, + sym_auto, + ACTIONS(8443), 1, + anon_sym_decltype, + ACTIONS(8445), 1, + anon_sym_typename, + STATE(4920), 1, + sym_type_specifier, + STATE(5516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6085), 1, + sym_qualified_type_identifier, + STATE(6135), 1, + sym_decltype_auto, + STATE(7539), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(5846), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(5963), 2, + sym_decltype, + sym_template_type, + ACTIONS(8429), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6205), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [152733] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8345), 1, + sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5912), 1, + sym_type_specifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2580), 2, + sym_decltype, + sym_template_type, + STATE(5846), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [152825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6644), 18, + ACTIONS(6300), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -499942,12 +458368,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6642), 24, + ACTIONS(6298), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -499967,10 +458394,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [202257] = 3, + [152877] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6654), 18, + ACTIONS(8081), 1, + anon_sym___attribute__, + STATE(4798), 1, + sym_attribute_specifier, + ACTIONS(6070), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -499989,7 +458420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6652), 24, + ACTIONS(6068), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -500014,10 +458445,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [202307] = 3, + [152933] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(121), 1, + sym_auto, + ACTIONS(123), 1, + anon_sym_decltype, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(4318), 1, + sym_primitive_type, + ACTIONS(8458), 1, + sym_identifier, + ACTIONS(8460), 1, + anon_sym_enum, + ACTIONS(8462), 1, + anon_sym_class, + ACTIONS(8464), 1, + anon_sym_struct, + ACTIONS(8466), 1, + anon_sym_union, + ACTIONS(8468), 1, + anon_sym_typename, + STATE(3466), 1, + sym_qualified_type_identifier, + STATE(3570), 1, + sym_decltype_auto, + STATE(3644), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4882), 1, + sym_type_specifier, + STATE(7528), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(3324), 2, + sym_decltype, + sym_template_type, + STATE(5846), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(4316), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3531), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [153025] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7273), 9, + STATE(4497), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8470), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6147), 10, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -500027,11 +458535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7271), 33, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6145), 29, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -500043,12 +458547,9 @@ 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___attribute__, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -500061,10 +458562,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [202357] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [153081] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8380), 1, + sym_auto, + ACTIONS(8394), 1, + sym_primitive_type, + ACTIONS(8404), 1, + anon_sym_decltype, + ACTIONS(8410), 1, + sym_identifier, + ACTIONS(8412), 1, + anon_sym_enum, + ACTIONS(8414), 1, + anon_sym_class, + ACTIONS(8416), 1, + anon_sym_struct, + ACTIONS(8418), 1, + anon_sym_union, + ACTIONS(8420), 1, + anon_sym_typename, + STATE(3466), 1, + sym_qualified_type_identifier, + STATE(4887), 1, + sym_type_specifier, + STATE(4990), 1, + sym_decltype_auto, + STATE(5100), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7521), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(3324), 2, + sym_decltype, + sym_template_type, + STATE(5846), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8392), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4991), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [153173] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 9, + ACTIONS(3899), 1, + anon_sym_LBRACE, + ACTIONS(6725), 1, + sym_auto, + ACTIONS(6727), 1, + anon_sym_decltype, + ACTIONS(8013), 1, + anon_sym_LBRACK, + ACTIONS(8269), 1, + anon_sym_LPAREN2, + STATE(2694), 1, + sym_decltype_auto, + STATE(4454), 1, + sym_new_declarator, + STATE(4272), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5878), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -500074,12 +458664,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7297), 33, - ts_builtin_sym_end, + ACTIONS(5876), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -500090,10 +458677,6 @@ 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___attribute__, - anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -500108,144 +458691,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [202407] = 20, + [153241] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7053), 1, - anon_sym_PIPE, - ACTIONS(8880), 1, - anon_sym_SLASH, - ACTIONS(8890), 1, - anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8906), 1, - anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8081), 1, + anon_sym___attribute__, + STATE(4809), 1, + sym_attribute_specifier, + ACTIONS(6074), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 15, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, - [202491] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(8874), 1, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6072), 24, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, - anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, - anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8878), 2, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7083), 6, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - [202587] = 3, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [153297] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7135), 17, + ACTIONS(6276), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -500263,7 +458763,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7133), 25, + sym_auto, + anon_sym_decltype, + ACTIONS(6274), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -500289,10 +458791,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [202637] = 3, + [153349] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7001), 1, + anon_sym_DOT, + ACTIONS(8491), 1, + anon_sym_SLASH, + ACTIONS(8493), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8495), 1, + anon_sym_AMP_AMP, + ACTIONS(8499), 1, + anon_sym_CARET, + ACTIONS(8507), 1, + anon_sym_GT_EQ, + ACTIONS(8511), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8513), 1, + anon_sym_or, + ACTIONS(8515), 1, + anon_sym_and, + ACTIONS(8517), 1, + anon_sym_xor, + ACTIONS(8519), 1, + anon_sym_not_eq, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7105), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8487), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8489), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8497), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8501), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8503), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8509), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8505), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7107), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_QMARK, + [153448] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7163), 9, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6995), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -500301,13 +458888,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(7161), 33, + ACTIONS(6997), 28, ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -500321,9 +458906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -500334,39 +458917,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [202687] = 4, + [153511] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5783), 1, - sym_literal_suffix, - ACTIONS(4837), 17, - aux_sym_preproc_elif_token1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5741), 1, + sym_identifier, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7839), 1, + anon_sym_STAR, + ACTIONS(7841), 1, + anon_sym_AMP_AMP, + ACTIONS(7843), 1, + anon_sym_AMP, + STATE(6747), 1, + sym_scope_resolution, + STATE(7598), 1, + sym_declarator, + STATE(9230), 1, + sym_ms_based_modifier, + STATE(5923), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [153596] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4238), 1, + anon_sym_LBRACE, + ACTIONS(7394), 1, + sym_auto, + ACTIONS(7396), 1, + anon_sym_decltype, + ACTIONS(8521), 1, + anon_sym_LPAREN2, + ACTIONS(8523), 1, + anon_sym_LBRACK, + STATE(3304), 1, + sym_decltype_auto, + STATE(5168), 1, + sym_new_declarator, + STATE(5634), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5807), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_GT_GT, anon_sym_DOT, - sym_identifier, - ACTIONS(4829), 24, + ACTIONS(5805), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -500374,21 +459024,24 @@ 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_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_DOT_STAR, anon_sym_DASH_GT, - [202739] = 3, + anon_sym_GT2, + [153663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6268), 17, - aux_sym_preproc_elif_token1, + ACTIONS(6314), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -500397,6 +459050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -500405,13 +459059,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6270), 25, + sym_auto, + anon_sym_decltype, + ACTIONS(6312), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -500423,7 +459078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -500431,61 +459086,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [202789] = 6, + [153714] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3824), 1, - anon_sym_LBRACE, - ACTIONS(8639), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - STATE(5582), 2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7001), 1, + anon_sym_DOT, + ACTIONS(8491), 1, + anon_sym_SLASH, + ACTIONS(8495), 1, + anon_sym_AMP_AMP, + ACTIONS(8499), 1, + anon_sym_CARET, + ACTIONS(8507), 1, + anon_sym_GT_EQ, + ACTIONS(8511), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8515), 1, + anon_sym_and, + ACTIONS(8517), 1, + anon_sym_xor, + ACTIONS(8519), 1, + anon_sym_not_eq, + STATE(2617), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(6908), 16, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8487), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(8489), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8497), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8501), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8503), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8509), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7019), 3, + aux_sym_preproc_elif_token1, + anon_sym_or, + sym_identifier, + ACTIONS(8505), 3, 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_identifier, - ACTIONS(6906), 22, + ACTIONS(7021), 8, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_STAR, - anon_sym_PERCENT, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [202845] = 3, + [153809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5518), 17, - aux_sym_preproc_elif_token1, + ACTIONS(6240), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -500494,6 +459168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -500502,13 +459177,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5525), 25, + sym_auto, + anon_sym_decltype, + ACTIONS(6238), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -500520,7 +459196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -500528,13 +459204,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [202895] = 4, + [153860] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8922), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6414), 9, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7023), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -500543,16 +459232,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(6416), 31, + ACTIONS(7025), 26, ts_builtin_sym_end, 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, @@ -500562,54 +459250,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym___attribute__, 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_DOT_STAR, - anon_sym_DASH_GT, - [202947] = 8, + [153925] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5471), 1, - anon_sym_LBRACK, - ACTIONS(7973), 1, - anon_sym_LT, - STATE(5466), 1, - sym_template_argument_list, - ACTIONS(5464), 2, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(5467), 4, + ACTIONS(3253), 1, anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(6533), 1, + sym_identifier, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7760), 1, anon_sym_STAR, + ACTIONS(7762), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - ACTIONS(5460), 32, + ACTIONS(7764), 1, anon_sym_AMP, + STATE(6740), 1, + sym_scope_resolution, + STATE(7135), 1, + sym_declarator, + STATE(9783), 1, + sym_ms_based_modifier, + STATE(5923), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -500621,17 +459324,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [203007] = 3, + [154010] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 9, + ACTIONS(3899), 1, + anon_sym_LBRACE, + ACTIONS(8299), 1, + anon_sym_LPAREN2, + STATE(4308), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6397), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -500641,12 +459344,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7325), 33, + ACTIONS(6395), 30, ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -500661,8 +459363,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -500675,10 +459375,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [203057] = 3, + [154067] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5218), 1, + anon_sym_LPAREN2, + ACTIONS(6533), 1, + sym_identifier, + ACTIONS(6543), 1, + anon_sym_LBRACK, + ACTIONS(6841), 1, + anon_sym_STAR, + ACTIONS(8525), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8529), 1, + anon_sym_AMP_AMP, + ACTIONS(8531), 1, + anon_sym_AMP, + ACTIONS(8533), 1, + anon_sym_EQ, + STATE(4330), 1, + sym_parameter_list, + STATE(6740), 1, + sym_scope_resolution, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7510), 1, + sym_declarator, + STATE(7771), 1, + sym_abstract_declarator, + STATE(7829), 1, + sym_abstract_reference_declarator, + STATE(9168), 1, + sym_ms_based_modifier, + ACTIONS(8527), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(8295), 2, + sym_variadic_declarator, + sym_variadic_reference_declarator, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7113), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(7305), 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, + [154166] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7213), 9, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7019), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -500687,13 +459475,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(7211), 33, + ACTIONS(7021), 26, ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -500707,9 +459493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -500718,78 +459502,34 @@ static const uint16_t ts_small_parse_table[] = { 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, - [203107] = 17, + [154231] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(8880), 1, + ACTIONS(8491), 1, anon_sym_SLASH, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7053), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8489), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7051), 19, - ts_builtin_sym_end, - 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_SEMI, - anon_sym_RBRACE, - 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, - [203185] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7305), 16, + ACTIONS(7019), 15, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, @@ -500801,16 +459541,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(7307), 26, - ts_builtin_sym_end, + sym_identifier, + ACTIONS(7021), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -500819,21 +459557,90 @@ 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_DOT_STAR, - anon_sym_DASH_GT, - [203235] = 3, + [154300] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(6533), 1, + sym_identifier, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7849), 1, + anon_sym_STAR, + ACTIONS(7851), 1, + anon_sym_AMP_AMP, + ACTIONS(7853), 1, + anon_sym_AMP, + STATE(6740), 1, + sym_scope_resolution, + STATE(7389), 1, + sym_declarator, + STATE(9168), 1, + sym_ms_based_modifier, + STATE(5923), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [154385] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4837), 9, + ACTIONS(8312), 1, + anon_sym___attribute__, + ACTIONS(8535), 1, + anon_sym_LBRACE, + ACTIONS(8537), 1, + anon_sym_COLON, + STATE(4848), 1, + sym_enum_base_clause, + STATE(4922), 1, + sym_enumerator_list, + STATE(5209), 1, + sym_attribute_specifier, + ACTIONS(6520), 10, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -500843,11 +459650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(4829), 33, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6522), 27, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -500859,12 +459662,7 @@ 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___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -500877,44 +459675,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [203285] = 17, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [154448] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(7916), 1, - anon_sym_const, - ACTIONS(8597), 1, - sym_auto, - ACTIONS(8599), 1, + ACTIONS(33), 1, + anon_sym_AMP_AMP, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(8910), 1, + ACTIONS(3251), 1, anon_sym_LPAREN2, - ACTIONS(8918), 1, - anon_sym_LBRACK, - ACTIONS(8934), 1, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3255), 1, anon_sym_STAR, - ACTIONS(8936), 1, - anon_sym_AMP_AMP, - ACTIONS(8938), 1, + ACTIONS(3257), 1, anon_sym_AMP, - STATE(3952), 1, - sym_parameter_list, - STATE(4763), 1, - sym_decltype_auto, - STATE(7280), 1, - sym_function_declarator_seq, - STATE(7396), 1, - sym_abstract_declarator, - STATE(5629), 2, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5741), 1, + sym_identifier, + ACTIONS(7758), 1, + anon_sym_LBRACK, + STATE(6786), 1, + sym_scope_resolution, + STATE(7465), 1, + sym_declarator, + STATE(9481), 1, + sym_ms_based_modifier, + STATE(5923), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(7278), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7907), 11, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -500925,76 +459743,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(8932), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [203363] = 6, + [154533] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3824), 1, - anon_sym_LBRACE, - ACTIONS(8639), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - STATE(5583), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6916), 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_identifier, - ACTIONS(6914), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_STAR, - 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, + ACTIONS(6999), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(7001), 1, + anon_sym_DOT, + ACTIONS(8491), 1, + anon_sym_SLASH, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [203419] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6592), 18, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8487), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(8489), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7019), 13, + aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, @@ -501006,19 +459783,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6590), 24, + ACTIONS(7021), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -501027,18 +459799,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [203469] = 3, + [154604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5460), 18, + ACTIONS(6619), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -501055,14 +459822,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5467), 24, + ACTIONS(6617), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -501074,124 +459840,237 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, 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_DOT_STAR, anon_sym_DASH_GT, - [203519] = 15, + [154655] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(8880), 1, + ACTIONS(8491), 1, anon_sym_SLASH, - ACTIONS(8902), 1, + ACTIONS(8493), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8495), 1, + anon_sym_AMP_AMP, + ACTIONS(8499), 1, + anon_sym_CARET, + ACTIONS(8507), 1, + anon_sym_GT_EQ, + ACTIONS(8511), 1, anon_sym_LT_EQ_GT, - STATE(3181), 1, + ACTIONS(8513), 1, + anon_sym_or, + ACTIONS(8515), 1, + anon_sym_and, + ACTIONS(8517), 1, + anon_sym_xor, + ACTIONS(8519), 1, + anon_sym_not_eq, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(7116), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8487), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8489), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7053), 5, + ACTIONS(8497), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8501), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8503), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8509), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8505), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 20, - ts_builtin_sym_end, + ACTIONS(7118), 7, 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_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [203593] = 3, + [154754] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(6604), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(6533), 1, + sym_identifier, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7821), 1, + anon_sym_STAR, + ACTIONS(7823), 1, + anon_sym_AMP_AMP, + ACTIONS(7825), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + STATE(6704), 1, + sym_scope_resolution, + STATE(7175), 1, + sym_declarator, + STATE(9963), 1, + sym_ms_based_modifier, + STATE(5923), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [154839] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7001), 1, + anon_sym_DOT, + ACTIONS(8491), 1, + anon_sym_SLASH, + ACTIONS(8493), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8495), 1, + anon_sym_AMP_AMP, + ACTIONS(8499), 1, + anon_sym_CARET, + ACTIONS(8507), 1, + anon_sym_GT_EQ, + ACTIONS(8511), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8513), 1, anon_sym_or, + ACTIONS(8515), 1, anon_sym_and, - anon_sym_bitor, + ACTIONS(8517), 1, anon_sym_xor, - anon_sym_bitand, + ACTIONS(8519), 1, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6602), 24, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, + ACTIONS(8541), 1, + anon_sym_QMARK, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(6691), 2, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + sym_identifier, + ACTIONS(7003), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8487), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8489), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(8497), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8501), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8503), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(8509), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [203643] = 3, + ACTIONS(8505), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6689), 5, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [154942] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7356), 9, + ACTIONS(3899), 1, + anon_sym_LBRACE, + ACTIONS(8299), 1, + anon_sym_LPAREN2, + STATE(4270), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6386), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -501201,12 +460080,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7354), 33, + ACTIONS(6384), 30, ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -501221,8 +460099,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -501235,67 +460111,264 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [203693] = 13, + [154999] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(6533), 1, + sym_identifier, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7821), 1, + anon_sym_STAR, + ACTIONS(7823), 1, + anon_sym_AMP_AMP, + ACTIONS(7825), 1, + anon_sym_AMP, + STATE(6704), 1, + sym_scope_resolution, + STATE(7200), 1, + sym_declarator, + STATE(9963), 1, + sym_ms_based_modifier, + STATE(5923), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [155084] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(8880), 1, + ACTIONS(8491), 1, anon_sym_SLASH, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8487), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8489), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7053), 5, + ACTIONS(8509), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7019), 13, + aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 23, - ts_builtin_sym_end, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(7021), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, 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, - [203763] = 3, + [155157] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(6533), 1, + sym_identifier, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7849), 1, + anon_sym_STAR, + ACTIONS(7851), 1, + anon_sym_AMP_AMP, + ACTIONS(7853), 1, + anon_sym_AMP, + STATE(6740), 1, + sym_scope_resolution, + STATE(7353), 1, + sym_declarator, + STATE(9168), 1, + sym_ms_based_modifier, + STATE(5923), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [155242] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_AMP_AMP, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3255), 1, + anon_sym_STAR, + ACTIONS(3257), 1, + anon_sym_AMP, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5741), 1, + sym_identifier, + ACTIONS(7758), 1, + anon_sym_LBRACK, + STATE(6786), 1, + sym_scope_resolution, + STATE(7434), 1, + sym_declarator, + STATE(9481), 1, + sym_ms_based_modifier, + STATE(5923), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [155327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 9, + ACTIONS(6268), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -501304,12 +460377,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(2191), 33, - ts_builtin_sym_end, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6266), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -501321,30 +460405,25 @@ 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___attribute__, - anon_sym_RBRACE, + anon_sym_LBRACE, 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_DOT_STAR, anon_sym_DASH_GT, - [203813] = 4, + [155378] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8940), 1, + ACTIONS(3899), 1, + anon_sym_LBRACE, + ACTIONS(8299), 1, anon_sym_LPAREN2, - ACTIONS(2183), 9, + STATE(4310), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6373), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -501354,7 +460433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(2185), 32, + ACTIONS(6371), 30, ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, @@ -501373,8 +460452,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -501387,184 +460464,349 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [203865] = 3, + [155435] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(7411), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5741), 1, + sym_identifier, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7839), 1, + anon_sym_STAR, + ACTIONS(7841), 1, + anon_sym_AMP_AMP, + ACTIONS(7843), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(7409), 33, - ts_builtin_sym_end, + STATE(6747), 1, + sym_scope_resolution, + STATE(7647), 1, + sym_declarator, + STATE(9230), 1, + sym_ms_based_modifier, + STATE(5923), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [155520] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5218), 1, + anon_sym_LPAREN2, + ACTIONS(6533), 1, + sym_identifier, + ACTIONS(6543), 1, + anon_sym_LBRACK, + ACTIONS(6812), 1, + anon_sym_STAR, + ACTIONS(8525), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8529), 1, + anon_sym_AMP_AMP, + ACTIONS(8531), 1, + anon_sym_AMP, + ACTIONS(8543), 1, + anon_sym_EQ, + STATE(4398), 1, + sym_parameter_list, + STATE(6740), 1, + sym_scope_resolution, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7478), 1, + sym_declarator, + STATE(7761), 1, + sym_abstract_declarator, + STATE(7807), 1, + sym_abstract_reference_declarator, + STATE(9168), 1, + sym_ms_based_modifier, + ACTIONS(8527), 2, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_GT2, + STATE(8295), 2, + sym_variadic_declarator, + sym_variadic_reference_declarator, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7113), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(7305), 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, + [155619] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(61), 1, + anon_sym___inline, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8547), 1, + anon_sym___declspec, + ACTIONS(8549), 1, + sym_auto, + ACTIONS(8551), 1, + anon_sym_decltype, + ACTIONS(8553), 1, + anon_sym_virtual, + ACTIONS(8555), 1, + anon_sym_alignas, + STATE(3704), 1, + sym_decltype_auto, + ACTIONS(7356), 2, + anon_sym_AMP, + anon_sym_LBRACK, + STATE(4949), 2, + sym_declaration_modifiers, + aux_sym_declaration_specifiers_repeat1, + ACTIONS(7358), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, + STATE(4038), 7, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + ACTIONS(8545), 8, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(7873), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [155698] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(6533), 1, + sym_identifier, + ACTIONS(7758), 1, 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_DOT_STAR, - anon_sym_DASH_GT, - [203915] = 22, + ACTIONS(7849), 1, + anon_sym_STAR, + ACTIONS(7851), 1, + anon_sym_AMP_AMP, + ACTIONS(7853), 1, + anon_sym_AMP, + STATE(6740), 1, + sym_scope_resolution, + STATE(7355), 1, + sym_declarator, + STATE(9168), 1, + sym_ms_based_modifier, + STATE(5923), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [155783] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(8880), 1, + ACTIONS(8491), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, - anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8499), 1, + anon_sym_CARET, + ACTIONS(8507), 1, anon_sym_GT_EQ, - ACTIONS(8902), 1, + ACTIONS(8511), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - STATE(3181), 1, + ACTIONS(8517), 1, + anon_sym_xor, + ACTIONS(8519), 1, + anon_sym_not_eq, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8487), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8489), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8888), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8497), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8501), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8503), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8509), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8505), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 12, - ts_builtin_sym_end, + ACTIONS(7019), 4, + aux_sym_preproc_elif_token1, + anon_sym_or, + anon_sym_and, + sym_identifier, + ACTIONS(7021), 9, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - [204003] = 17, + [155874] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7916), 1, - anon_sym_const, - ACTIONS(8597), 1, - sym_auto, - ACTIONS(8599), 1, - anon_sym_decltype, - ACTIONS(8910), 1, - anon_sym_LPAREN2, - ACTIONS(8912), 1, - anon_sym_STAR, - ACTIONS(8914), 1, - anon_sym_AMP_AMP, - ACTIONS(8916), 1, - anon_sym_AMP, - ACTIONS(8918), 1, - anon_sym_LBRACK, - STATE(4267), 1, - sym_parameter_list, - STATE(4763), 1, - sym_decltype_auto, - STATE(7280), 1, - sym_function_declarator_seq, - STATE(7376), 1, - sym_abstract_declarator, - STATE(5523), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(7278), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7907), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(8932), 12, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + ACTIONS(3899), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [204081] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7217), 9, + ACTIONS(8299), 1, + anon_sym_LPAREN2, + STATE(4260), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6377), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -501574,12 +460816,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7215), 33, + ACTIONS(6375), 30, ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -501594,8 +460835,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -501608,10 +460847,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [204131] = 3, + [155931] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7001), 1, + anon_sym_DOT, + ACTIONS(8491), 1, + anon_sym_SLASH, + ACTIONS(8493), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8495), 1, + anon_sym_AMP_AMP, + ACTIONS(8499), 1, + anon_sym_CARET, + ACTIONS(8507), 1, + anon_sym_GT_EQ, + ACTIONS(8511), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8513), 1, + anon_sym_or, + ACTIONS(8515), 1, + anon_sym_and, + ACTIONS(8517), 1, + anon_sym_xor, + ACTIONS(8519), 1, + anon_sym_not_eq, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8541), 1, + anon_sym_QMARK, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7090), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8487), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8489), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8497), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8501), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8503), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8509), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8505), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7094), 5, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [156034] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2183), 9, + ACTIONS(8312), 1, + anon_sym___attribute__, + ACTIONS(8535), 1, + anon_sym_LBRACE, + ACTIONS(8537), 1, + anon_sym_COLON, + STATE(4835), 1, + sym_enum_base_clause, + STATE(4934), 1, + sym_enumerator_list, + STATE(5357), 1, + sym_attribute_specifier, + ACTIONS(6514), 10, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -501621,11 +460947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(2185), 33, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6516), 27, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -501637,12 +460959,7 @@ 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___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -501655,10 +460972,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [204181] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [156097] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 9, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7005), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -501667,13 +461003,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(7393), 33, + ACTIONS(7007), 26, ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -501687,9 +461021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -501698,31 +461030,10 @@ static const uint16_t ts_small_parse_table[] = { 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, - [204231] = 11, + [156162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4120), 1, - anon_sym_LBRACE, - ACTIONS(8924), 1, - anon_sym_LPAREN2, - ACTIONS(8926), 1, - anon_sym_LBRACK, - ACTIONS(8928), 1, - sym_auto, - ACTIONS(8930), 1, - anon_sym_decltype, - STATE(5765), 1, - sym_new_declarator, - STATE(5856), 1, - sym_decltype_auto, - STATE(6194), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6293), 10, + ACTIONS(5433), 11, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -501732,8 +461043,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(6289), 23, + ACTIONS(5438), 32, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -501744,6 +461057,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -501756,13 +461073,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_DOT_DOT_DOT_GT, - [204297] = 4, + [156213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5790), 1, - sym_literal_suffix, - ACTIONS(4837), 15, + ACTIONS(6580), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -501778,11 +461098,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4829), 26, - ts_builtin_sym_end, + sym_identifier, + ACTIONS(6578), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -501794,8 +461117,6 @@ 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, @@ -501805,172 +461126,349 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [204349] = 24, + [156264] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5741), 1, + sym_identifier, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7839), 1, + anon_sym_STAR, + ACTIONS(7841), 1, + anon_sym_AMP_AMP, + ACTIONS(7843), 1, + anon_sym_AMP, + STATE(6747), 1, + sym_scope_resolution, + STATE(7623), 1, + sym_declarator, + STATE(9230), 1, + sym_ms_based_modifier, + STATE(5923), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [156349] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7827), 1, + sym_identifier, + ACTIONS(7829), 1, + anon_sym_STAR, + ACTIONS(7831), 1, + anon_sym_AMP_AMP, + ACTIONS(7833), 1, + anon_sym_AMP, + STATE(6710), 1, + sym_scope_resolution, + STATE(7437), 1, + sym_declarator, + STATE(9538), 1, + sym_ms_based_modifier, + STATE(5923), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [156434] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(8880), 1, + ACTIONS(8491), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, - anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8493), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8495), 1, + anon_sym_AMP_AMP, + ACTIONS(8499), 1, + anon_sym_CARET, + ACTIONS(8507), 1, anon_sym_GT_EQ, - ACTIONS(8902), 1, + ACTIONS(8511), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - STATE(3181), 1, + ACTIONS(8513), 1, + anon_sym_or, + ACTIONS(8515), 1, + anon_sym_and, + ACTIONS(8517), 1, + anon_sym_xor, + ACTIONS(8519), 1, + anon_sym_not_eq, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8541), 1, + anon_sym_QMARK, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8487), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8489), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8497), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8501), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8503), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8509), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8557), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(8505), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7125), 8, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, + ACTIONS(8559), 5, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - [204441] = 3, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [156537] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4261), 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(4259), 33, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5761), 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___attribute__, - anon_sym_RBRACE, + ACTIONS(6999), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(7001), 1, + anon_sym_DOT, + ACTIONS(8491), 1, + anon_sym_SLASH, + ACTIONS(8507), 1, + anon_sym_GT_EQ, + ACTIONS(8511), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, + ACTIONS(8519), 1, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [204491] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7203), 9, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8487), 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(7201), 33, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8489), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(8501), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8503), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(8509), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + ACTIONS(8505), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7019), 7, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, anon_sym_or, anon_sym_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, - [204541] = 3, + sym_identifier, + ACTIONS(7021), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_QMARK, + [156622] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5218), 1, + anon_sym_LPAREN2, + ACTIONS(6533), 1, + sym_identifier, + ACTIONS(6537), 1, + anon_sym_STAR, + ACTIONS(6539), 1, + anon_sym_AMP_AMP, + ACTIONS(6541), 1, + anon_sym_AMP, + ACTIONS(6543), 1, + anon_sym_LBRACK, + ACTIONS(8525), 1, + anon_sym_DOT_DOT_DOT, + STATE(3879), 1, + sym_parameter_list, + STATE(6740), 1, + sym_scope_resolution, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7350), 1, + sym_declarator, + STATE(7406), 1, + sym_abstract_declarator, + STATE(8560), 1, + sym_variadic_declarator, + STATE(9168), 1, + sym_ms_based_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(8561), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(7305), 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, + [156717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7387), 9, + ACTIONS(6078), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -501979,12 +461477,22 @@ static const uint16_t ts_small_parse_table[] = { 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(7385), 33, - ts_builtin_sym_end, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6076), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -501996,31 +461504,19 @@ 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___attribute__, - anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACE, 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_DOT_STAR, anon_sym_DASH_GT, - [204591] = 4, + [156768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6197), 17, - aux_sym_preproc_elif_token1, + ACTIONS(6090), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -502029,6 +461525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -502037,13 +461534,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4853), 24, + sym_auto, + anon_sym_decltype, + ACTIONS(6088), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -502055,6 +461553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -502062,10 +461561,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [204643] = 3, + [156819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7391), 9, + ACTIONS(6248), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -502074,12 +461573,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(7389), 33, - ts_builtin_sym_end, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6246), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -502091,28 +461601,20 @@ 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___attribute__, - anon_sym_RBRACE, + anon_sym_LBRACE, 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_DOT_STAR, anon_sym_DASH_GT, - [204693] = 3, + [156870] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6640), 18, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(4763), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -502131,7 +461633,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6638), 24, + ACTIONS(4771), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -502156,38 +461658,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [204743] = 11, + [156923] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4120), 1, - anon_sym_LBRACE, - ACTIONS(8924), 1, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7001), 1, + anon_sym_DOT, + ACTIONS(8491), 1, + anon_sym_SLASH, + ACTIONS(8507), 1, + anon_sym_GT_EQ, + ACTIONS(8511), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8519), 1, + anon_sym_not_eq, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8487), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8489), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8503), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8509), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8505), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7019), 9, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + sym_identifier, + ACTIONS(7021), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_QMARK, + [157006] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, anon_sym_LPAREN2, - ACTIONS(8926), 1, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(6533), 1, + sym_identifier, + ACTIONS(7758), 1, anon_sym_LBRACK, - ACTIONS(8928), 1, + ACTIONS(7821), 1, + anon_sym_STAR, + ACTIONS(7823), 1, + anon_sym_AMP_AMP, + ACTIONS(7825), 1, + anon_sym_AMP, + STATE(6704), 1, + sym_scope_resolution, + STATE(7130), 1, + sym_declarator, + STATE(9963), 1, + sym_ms_based_modifier, + STATE(5923), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [157091] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4238), 1, + anon_sym_LBRACE, + ACTIONS(7394), 1, sym_auto, - ACTIONS(8930), 1, + ACTIONS(7396), 1, anon_sym_decltype, - STATE(5817), 1, - sym_new_declarator, - STATE(5856), 1, + ACTIONS(8521), 1, + anon_sym_LPAREN2, + ACTIONS(8523), 1, + anon_sym_LBRACK, + STATE(3304), 1, sym_decltype_auto, - STATE(6225), 2, + STATE(4975), 1, + sym_new_declarator, + STATE(5590), 2, sym_argument_list, sym_initializer_list, - ACTIONS(6314), 10, - anon_sym_DOT_DOT_DOT, + ACTIONS(5830), 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(6312), 23, + ACTIONS(5828), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -502195,9 +461829,7 @@ 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -502210,18 +461842,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [204809] = 6, + anon_sym_GT2, + [157158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3824), 1, - anon_sym_LBRACE, - ACTIONS(8639), 1, - anon_sym_LPAREN2, - STATE(5573), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6846), 16, + ACTIONS(6284), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -502230,6 +461855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -502238,12 +461864,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6844), 22, + sym_auto, + anon_sym_decltype, + ACTIONS(6282), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -502254,6 +461883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -502261,165 +461891,304 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [204865] = 14, + [157209] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(6533), 1, + sym_identifier, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7760), 1, + anon_sym_STAR, + ACTIONS(7762), 1, + anon_sym_AMP_AMP, + ACTIONS(7764), 1, + anon_sym_AMP, + STATE(6740), 1, + sym_scope_resolution, + STATE(7186), 1, + sym_declarator, + STATE(9783), 1, + sym_ms_based_modifier, + STATE(5923), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [157294] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(8880), 1, + ACTIONS(8491), 1, anon_sym_SLASH, - STATE(3181), 1, + ACTIONS(8507), 1, + anon_sym_GT_EQ, + ACTIONS(8511), 1, + anon_sym_LT_EQ_GT, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8487), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8489), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8898), 2, + ACTIONS(8509), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7053), 5, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8505), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 21, - ts_builtin_sym_end, + ACTIONS(7019), 10, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(7021), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, 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_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, - [204937] = 3, + [157373] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(7338), 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(7336), 33, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7827), 1, + sym_identifier, + ACTIONS(7829), 1, anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(7831), 1, + anon_sym_AMP_AMP, + ACTIONS(7833), 1, + anon_sym_AMP, + STATE(6710), 1, + sym_scope_resolution, + STATE(7465), 1, + sym_declarator, + STATE(9538), 1, + sym_ms_based_modifier, + STATE(5923), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [157458] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7001), 1, + anon_sym_DOT, + ACTIONS(8491), 1, + anon_sym_SLASH, + ACTIONS(8493), 1, anon_sym_PIPE_PIPE, + ACTIONS(8495), 1, anon_sym_AMP_AMP, + ACTIONS(8499), 1, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(8507), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(8511), 1, anon_sym_LT_EQ_GT, + ACTIONS(8513), 1, anon_sym_or, + ACTIONS(8515), 1, anon_sym_and, - anon_sym_bitor, + ACTIONS(8517), 1, anon_sym_xor, - anon_sym_bitand, + ACTIONS(8519), 1, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [204987] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7399), 9, + ACTIONS(7128), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8487), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(8489), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8497), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8501), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8503), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8509), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8505), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(7397), 33, - ts_builtin_sym_end, + ACTIONS(7130), 7, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_QMARK, + [157557] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 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___attribute__, - anon_sym_RBRACE, + ACTIONS(6999), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(7001), 1, + anon_sym_DOT, + ACTIONS(8491), 1, + anon_sym_SLASH, + ACTIONS(8511), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [205037] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4827), 18, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8487), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(8489), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8509), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7019), 13, + aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, @@ -502431,39 +462200,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(4835), 24, + ACTIONS(7021), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [205087] = 3, + [157632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7367), 9, + ACTIONS(6623), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -502472,59 +462228,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(7365), 33, - ts_builtin_sym_end, - 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - [205137] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7334), 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(7332), 33, - ts_builtin_sym_end, + sym_identifier, + ACTIONS(6621), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -502536,143 +462254,164 @@ 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___attribute__, - 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_DOT_STAR, anon_sym_DASH_GT, - [205187] = 18, + [157683] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7827), 1, + sym_identifier, + ACTIONS(7829), 1, + anon_sym_STAR, + ACTIONS(7831), 1, + anon_sym_AMP_AMP, + ACTIONS(7833), 1, + anon_sym_AMP, + STATE(6710), 1, + sym_scope_resolution, + STATE(7434), 1, + sym_declarator, + STATE(9538), 1, + sym_ms_based_modifier, + STATE(5923), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [157768] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(8880), 1, + ACTIONS(8491), 1, anon_sym_SLASH, - ACTIONS(8896), 1, + ACTIONS(8499), 1, + anon_sym_CARET, + ACTIONS(8507), 1, anon_sym_GT_EQ, - ACTIONS(8902), 1, + ACTIONS(8511), 1, anon_sym_LT_EQ_GT, - STATE(3181), 1, + ACTIONS(8517), 1, + anon_sym_xor, + ACTIONS(8519), 1, + anon_sym_not_eq, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7053), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8487), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8489), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8501), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8503), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8509), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8505), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 16, - ts_builtin_sym_end, + ACTIONS(7019), 6, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + sym_identifier, + ACTIONS(7021), 9, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - [205267] = 9, + [157857] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7781), 1, - anon_sym___attribute__, - ACTIONS(8406), 1, - anon_sym_LBRACE, - ACTIONS(8942), 1, - anon_sym_COLON, - STATE(4564), 1, - sym_enum_base_clause, - STATE(4779), 1, - sym_enumerator_list, - STATE(4891), 1, - sym_attribute_specifier, - ACTIONS(6227), 6, - anon_sym_DOT_DOT_DOT, + ACTIONS(5761), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(6225), 30, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_operator, - [205329] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7342), 9, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7015), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -502681,13 +462420,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(7340), 33, + ACTIONS(7017), 28, ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -502701,9 +462438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -502714,64 +462449,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [205379] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7916), 1, - anon_sym_const, - ACTIONS(8946), 2, - anon_sym_AMP, - anon_sym_LBRACK, - STATE(5840), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5841), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6894), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7907), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(8944), 22, - anon_sym_DOT_DOT_DOT, - 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_COLON, - anon_sym_asm, - anon_sym___asm__, - 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, - sym_semgrep_metavar, - [205439] = 3, + [157920] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6197), 10, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5374), 11, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -502781,8 +462464,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(4853), 32, + ACTIONS(5381), 31, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -502797,7 +462481,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -502815,25 +462498,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_DOT_DOT_DOT_GT, - [205489] = 3, + [157973] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7061), 9, + ACTIONS(4238), 1, + anon_sym_LBRACE, + ACTIONS(7394), 1, + sym_auto, + ACTIONS(7396), 1, + anon_sym_decltype, + ACTIONS(8521), 1, + anon_sym_LPAREN2, + ACTIONS(8523), 1, + anon_sym_LBRACK, + STATE(3304), 1, + sym_decltype_auto, + STATE(4963), 1, + sym_new_declarator, + STATE(5622), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5759), 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(7065), 33, - ts_builtin_sym_end, + ACTIONS(5757), 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, @@ -502841,15 +462540,7 @@ 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___attribute__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -502862,90 +462553,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [205539] = 3, + anon_sym_GT2, + [158040] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(7305), 18, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7001), 1, + anon_sym_DOT, + ACTIONS(8491), 1, + anon_sym_SLASH, + ACTIONS(8493), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8495), 1, + anon_sym_AMP_AMP, + ACTIONS(8499), 1, + anon_sym_CARET, + ACTIONS(8507), 1, + anon_sym_GT_EQ, + ACTIONS(8511), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8513), 1, + anon_sym_or, + ACTIONS(8515), 1, + anon_sym_and, + ACTIONS(8517), 1, + anon_sym_xor, + ACTIONS(8519), 1, + anon_sym_not_eq, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8541), 1, + anon_sym_QMARK, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7003), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7132), 2, aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8487), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(8489), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8497), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8501), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8503), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8509), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8505), 3, 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_identifier, - sym_literal_suffix, - ACTIONS(7307), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(7134), 5, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [205589] = 12, + [158143] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(8880), 1, + ACTIONS(8491), 1, anon_sym_SLASH, - STATE(3181), 1, + ACTIONS(8493), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8495), 1, + anon_sym_AMP_AMP, + ACTIONS(8499), 1, + anon_sym_CARET, + ACTIONS(8507), 1, + anon_sym_GT_EQ, + ACTIONS(8511), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8513), 1, + anon_sym_or, + ACTIONS(8515), 1, + anon_sym_and, + ACTIONS(8517), 1, + anon_sym_xor, + ACTIONS(8519), 1, + anon_sym_not_eq, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(7060), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8878), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7053), 7, + ACTIONS(8487), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8489), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8497), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8501), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8503), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8509), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8505), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 23, - ts_builtin_sym_end, + ACTIONS(7062), 7, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_QMARK, + [158242] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5936), 11, + anon_sym_DOT_DOT_DOT, + 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(5934), 32, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -502954,9 +462727,10 @@ 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_RBRACK, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -502965,80 +462739,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [205657] = 4, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_DOT_DOT_GT, + [158293] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8948), 1, - anon_sym_typedef, - ACTIONS(3658), 2, - anon_sym_COLON_COLON, + ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3656), 39, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, + ACTIONS(61), 1, anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + ACTIONS(65), 1, anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8547), 1, + anon_sym___declspec, + ACTIONS(8549), 1, sym_auto, + ACTIONS(8551), 1, anon_sym_decltype, + ACTIONS(8553), 1, anon_sym_virtual, + ACTIONS(8555), 1, anon_sym_alignas, - anon_sym_typename, - anon_sym_template, - [205709] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8950), 1, - anon_sym_typedef, - ACTIONS(3658), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3656), 39, - anon_sym___extension__, + STATE(3704), 1, + sym_decltype_auto, + ACTIONS(7410), 2, + anon_sym_AMP, + anon_sym_LBRACK, + STATE(4926), 2, + sym_declaration_modifiers, + aux_sym_declaration_specifiers_repeat1, + ACTIONS(7412), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + STATE(4038), 7, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + ACTIONS(8545), 8, anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_static, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, + ACTIONS(7873), 11, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -503049,39 +462810,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - 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_alignas, - anon_sym_typename, - anon_sym_template, - [205761] = 11, + [158372] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4120), 1, - anon_sym_LBRACE, - ACTIONS(8924), 1, - anon_sym_LPAREN2, - ACTIONS(8926), 1, - anon_sym_LBRACK, - ACTIONS(8928), 1, - sym_auto, - ACTIONS(8930), 1, - anon_sym_decltype, - STATE(5774), 1, - sym_new_declarator, - STATE(5856), 1, - sym_decltype_auto, - STATE(6258), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6318), 10, + STATE(4624), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8476), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4763), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -503092,7 +462831,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(6316), 23, + ACTIONS(4771), 28, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -503103,6 +462843,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -503115,79 +462857,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_DOT_DOT_DOT_GT, - [205827] = 3, + [158427] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(6664), 18, - 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_identifier, - sym_auto, + ACTIONS(33), 1, + anon_sym_AMP_AMP, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(6662), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(3251), 1, anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3255), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [205877] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8952), 1, - anon_sym_typedef, - ACTIONS(3658), 2, + ACTIONS(3257), 1, + anon_sym_AMP, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3656), 39, + ACTIONS(5741), 1, + sym_identifier, + ACTIONS(7758), 1, + anon_sym_LBRACK, + STATE(6786), 1, + sym_scope_resolution, + STATE(7437), 1, + sym_declarator, + STATE(9481), 1, + sym_ms_based_modifier, + STATE(5923), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -503199,22 +462925,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - 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_alignas, - anon_sym_typename, - anon_sym_template, - [205929] = 3, + [158512] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6668), 18, + ACTIONS(6634), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -503231,14 +462946,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6666), 24, + ACTIONS(6632), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -503250,18 +462964,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, 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_DOT_STAR, anon_sym_DASH_GT, - [205979] = 3, + [158563] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6672), 18, + ACTIONS(8320), 1, + sym_auto, + ACTIONS(8322), 1, + anon_sym_decltype, + STATE(4802), 1, + sym_decltype_auto, + ACTIONS(6191), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -503278,9 +462999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6670), 24, + ACTIONS(6189), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -503305,103 +463024,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [206029] = 24, + [158620] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(6533), 1, + sym_identifier, + ACTIONS(7758), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(8880), 1, - anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, - anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(7760), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8882), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(7762), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7087), 8, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - [206121] = 3, + ACTIONS(7764), 1, + anon_sym_AMP, + STATE(6740), 1, + sym_scope_resolution, + STATE(7155), 1, + sym_declarator, + STATE(9783), 1, + sym_ms_based_modifier, + STATE(5923), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [158705] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6676), 18, + ACTIONS(4238), 1, + anon_sym_LBRACE, + ACTIONS(7394), 1, + sym_auto, + ACTIONS(7396), 1, + anon_sym_decltype, + ACTIONS(8521), 1, + anon_sym_LPAREN2, + ACTIONS(8523), 1, + anon_sym_LBRACK, + STATE(3304), 1, + sym_decltype_auto, + STATE(5105), 1, + sym_new_declarator, + STATE(5628), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5878), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_GT_GT, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6674), 24, + ACTIONS(5876), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -503409,21 +463131,40 @@ 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_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_DOT_STAR, anon_sym_DASH_GT, - [206171] = 3, + anon_sym_GT2, + [158772] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7159), 9, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7011), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -503432,13 +463173,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(7157), 33, + ACTIONS(7013), 26, ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -503452,9 +463191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -503463,81 +463200,57 @@ static const uint16_t ts_small_parse_table[] = { 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, - [206221] = 23, + [158837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(8880), 1, + ACTIONS(7197), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8886), 1, anon_sym_PIPE, - ACTIONS(8890), 1, anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8878), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8884), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 10, + 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(7199), 26, ts_builtin_sym_end, 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_or, - [206311] = 3, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [158887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7233), 9, + ACTIONS(6401), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -503546,12 +463259,22 @@ static const uint16_t ts_small_parse_table[] = { 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(7231), 33, - ts_builtin_sym_end, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6399), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -503563,28 +463286,18 @@ 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___attribute__, - anon_sym_RBRACE, + anon_sym_LBRACE, 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_DOT_STAR, anon_sym_DASH_GT, - [206361] = 3, + [158937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7407), 9, + ACTIONS(6244), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -503593,12 +463306,22 @@ static const uint16_t ts_small_parse_table[] = { 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(7405), 33, - ts_builtin_sym_end, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6242), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -503610,47 +463333,37 @@ 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___attribute__, - anon_sym_RBRACE, + anon_sym_LBRACE, 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_DOT_STAR, anon_sym_DASH_GT, - [206411] = 9, + [158987] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7781), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(8406), 1, + ACTIONS(8229), 1, anon_sym_LBRACE, - ACTIONS(8942), 1, + ACTIONS(8563), 1, anon_sym_COLON, - STATE(4603), 1, + STATE(3654), 1, + sym_attribute_specifier, + STATE(4322), 1, sym_enum_base_clause, - STATE(4760), 1, + STATE(4492), 1, sym_enumerator_list, - STATE(4870), 1, - sym_attribute_specifier, - ACTIONS(6235), 6, + ACTIONS(6522), 6, anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(6233), 30, + ACTIONS(6520), 30, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -503681,44 +463394,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_virtual, anon_sym_alignas, anon_sym_operator, - [206473] = 17, + [159049] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7916), 1, - anon_sym_const, - ACTIONS(8597), 1, - sym_auto, - ACTIONS(8599), 1, - anon_sym_decltype, - ACTIONS(8910), 1, + ACTIONS(3964), 1, + anon_sym_LBRACE, + ACTIONS(8316), 1, anon_sym_LPAREN2, - ACTIONS(8918), 1, + STATE(5154), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6397), 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_identifier, + ACTIONS(6395), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_STAR, + 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [159105] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5385), 1, anon_sym_LBRACK, - ACTIONS(8934), 1, + ACTIONS(7517), 1, + anon_sym_LT, + STATE(4932), 1, + sym_template_argument_list, + ACTIONS(5378), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(5381), 4, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(8936), 1, anon_sym_AMP_AMP, - ACTIONS(8938), 1, + anon_sym_SEMI, + ACTIONS(5374), 32, anon_sym_AMP, - STATE(3952), 1, - sym_parameter_list, - STATE(4763), 1, - sym_decltype_auto, - STATE(7280), 1, - sym_function_declarator_seq, - STATE(7385), 1, - sym_abstract_declarator, - STATE(5560), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(7278), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7907), 11, anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -503729,23 +463489,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(8908), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [206551] = 3, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [159165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7229), 9, + ACTIONS(6224), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -503754,12 +463508,22 @@ static const uint16_t ts_small_parse_table[] = { 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(7227), 33, - ts_builtin_sym_end, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6222), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -503771,96 +463535,174 @@ 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___attribute__, - anon_sym_RBRACE, + anon_sym_LBRACE, 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_DOT_STAR, + anon_sym_DASH_GT, + [159215] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6322), 18, + 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_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6320), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [206601] = 24, + [159265] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(4250), 1, + anon_sym_LBRACE, + ACTIONS(8565), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(8567), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(8880), 1, + ACTIONS(8569), 1, + sym_auto, + ACTIONS(8571), 1, + anon_sym_decltype, + STATE(5220), 1, + sym_new_declarator, + STATE(5358), 1, + sym_decltype_auto, + STATE(5698), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5830), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8886), 1, anon_sym_PIPE, - ACTIONS(8890), 1, anon_sym_AMP, - ACTIONS(8896), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5828), 23, + anon_sym_STAR, + 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(8902), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8906), 1, + anon_sym_xor, anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [159331] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6260), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + 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_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6258), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7079), 8, - ts_builtin_sym_end, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - [206693] = 3, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [159381] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7221), 9, + ACTIONS(3964), 1, + anon_sym_LBRACE, + ACTIONS(8316), 1, + anon_sym_LPAREN2, + STATE(5148), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6377), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -503869,13 +463711,20 @@ static const uint16_t ts_small_parse_table[] = { 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(7219), 33, - ts_builtin_sym_end, + sym_identifier, + ACTIONS(6375), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -503886,28 +463735,23 @@ 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___attribute__, - 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_DOT_STAR, anon_sym_DASH_GT, - [206743] = 3, + [159437] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7287), 9, + ACTIONS(8573), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8575), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6677), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -503917,7 +463761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7285), 33, + ACTIONS(6679), 29, ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, @@ -503925,8 +463769,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -503941,8 +463783,6 @@ 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, @@ -503951,10 +463791,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [206793] = 3, + [159491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 18, + ACTIONS(7197), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -503971,14 +463812,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6606), 24, + sym_literal_suffix, + ACTIONS(7199), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -503990,7 +463831,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -503998,11 +463838,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [206843] = 3, + [159541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7348), 17, - aux_sym_preproc_elif_token1, + ACTIONS(6288), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -504019,13 +463858,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7346), 24, + sym_auto, + anon_sym_decltype, + ACTIONS(6286), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -504037,6 +463877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -504044,21 +463885,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [206892] = 3, + [159591] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3141), 2, + ACTIONS(4784), 1, anon_sym_COLON_COLON, + ACTIONS(5376), 1, + anon_sym_SEMI, + ACTIONS(5385), 1, + anon_sym_LBRACK, + ACTIONS(7517), 1, + anon_sym_LT, + STATE(4664), 1, + sym_template_argument_list, + ACTIONS(5378), 2, + anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - ACTIONS(3139), 39, + ACTIONS(5381), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(5374), 32, + anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___based, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -504078,45 +463931,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - 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_alignas, - anon_sym_typename, anon_sym_template, - [206941] = 12, + anon_sym_operator, + [159653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, - anon_sym_LPAREN2, - ACTIONS(7423), 1, - anon_sym_LBRACK, - ACTIONS(7427), 1, - anon_sym_DOT, - ACTIONS(8956), 1, - anon_sym_SLASH, - STATE(3608), 1, - sym_argument_list, - STATE(3651), 1, - sym_subscript_argument_list, - ACTIONS(7429), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8954), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8958), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7053), 14, + ACTIONS(6342), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, @@ -504128,13 +463956,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(7051), 15, + sym_auto, + anon_sym_decltype, + ACTIONS(6340), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -504143,13 +463977,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - [207008] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [159703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7163), 17, - aux_sym_preproc_elif_token1, + ACTIONS(6292), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -504166,13 +464005,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7161), 24, + sym_auto, + anon_sym_decltype, + ACTIONS(6290), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -504184,6 +464024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -504191,11 +464032,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [207057] = 3, + [159753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7407), 17, - aux_sym_preproc_elif_token1, + ACTIONS(5983), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -504212,13 +464052,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7405), 24, + sym_auto, + anon_sym_decltype, + ACTIONS(5981), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -504230,6 +464071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -504237,61 +464079,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [207106] = 7, + [159803] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8625), 1, - anon_sym___attribute__, - ACTIONS(8852), 1, + ACTIONS(3964), 1, anon_sym_LBRACE, - STATE(5451), 1, - sym_enumerator_list, - STATE(5784), 1, - sym_attribute_specifier, - ACTIONS(6239), 10, - anon_sym_DOT_DOT_DOT, - 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(6237), 27, + ACTIONS(8316), 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_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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [207163] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7411), 17, - aux_sym_preproc_elif_token1, + STATE(5144), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6373), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -504308,14 +464106,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7409), 24, + ACTIONS(6371), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, + aux_sym_preproc_elif_token1, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -504333,16 +464129,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [207212] = 6, + [159859] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(8960), 1, - anon_sym_LT, - STATE(5459), 1, - sym_template_argument_list, - ACTIONS(5460), 15, + ACTIONS(4250), 1, + anon_sym_LBRACE, + ACTIONS(8565), 1, + anon_sym_LPAREN2, + ACTIONS(8567), 1, + anon_sym_LBRACK, + ACTIONS(8569), 1, + sym_auto, + ACTIONS(8571), 1, + anon_sym_decltype, + STATE(5312), 1, + sym_new_declarator, + STATE(5358), 1, + sym_decltype_auto, + STATE(5660), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5759), 10, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -504350,21 +464158,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LT, anon_sym_DOT, - sym_identifier, - ACTIONS(5467), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + ACTIONS(5757), 23, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -504375,90 +464171,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [207267] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6720), 1, - anon_sym_LPAREN2, - ACTIONS(7085), 1, - sym_identifier, - ACTIONS(7423), 1, - anon_sym_LBRACK, - ACTIONS(7427), 1, - anon_sym_DOT, - ACTIONS(8956), 1, - anon_sym_SLASH, - ACTIONS(8965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8967), 1, - anon_sym_AMP_AMP, - ACTIONS(8971), 1, - anon_sym_CARET, - ACTIONS(8979), 1, - anon_sym_GT_EQ, - ACTIONS(8983), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8985), 1, anon_sym_or, - ACTIONS(8987), 1, anon_sym_and, - ACTIONS(8989), 1, + anon_sym_bitor, anon_sym_xor, - ACTIONS(8991), 1, + anon_sym_bitand, anon_sym_not_eq, - STATE(3608), 1, - sym_argument_list, - STATE(3651), 1, - sym_subscript_argument_list, - ACTIONS(7429), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8954), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8958), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8963), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8969), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(8973), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8975), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8981), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8977), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7087), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_QMARK, - [207364] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [159925] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8995), 2, + ACTIONS(8577), 1, + anon_sym_typedef, + ACTIONS(3702), 2, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(8993), 39, + ACTIONS(3700), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -504498,11 +464232,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_typename, anon_sym_template, - [207413] = 3, + [159977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7225), 17, - aux_sym_preproc_elif_token1, + ACTIONS(6220), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -504519,13 +464252,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7223), 24, + sym_auto, + anon_sym_decltype, + ACTIONS(6218), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -504537,6 +464271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -504544,10 +464279,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [207462] = 3, + [160027] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3096), 17, + ACTIONS(5929), 1, + sym_literal_suffix, + ACTIONS(4773), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -504565,7 +464302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(3094), 24, + ACTIONS(4765), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -504590,11 +464327,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [207511] = 3, + [160079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7367), 17, - aux_sym_preproc_elif_token1, + ACTIONS(6330), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -504611,13 +464347,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7365), 24, + sym_auto, + anon_sym_decltype, + ACTIONS(6328), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -504629,6 +464366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -504636,11 +464374,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [207560] = 3, + [160129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7415), 17, - aux_sym_preproc_elif_token1, + ACTIONS(6256), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -504657,13 +464394,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7413), 24, + sym_auto, + anon_sym_decltype, + ACTIONS(6254), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -504675,6 +464413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -504682,26 +464421,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [207609] = 10, + [160179] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, + ACTIONS(4250), 1, + anon_sym_LBRACE, + ACTIONS(8565), 1, anon_sym_LPAREN2, - ACTIONS(7423), 1, + ACTIONS(8567), 1, anon_sym_LBRACK, - ACTIONS(7427), 1, - anon_sym_DOT, - STATE(3608), 1, + ACTIONS(8569), 1, + sym_auto, + ACTIONS(8571), 1, + anon_sym_decltype, + STATE(5273), 1, + sym_new_declarator, + STATE(5358), 1, + sym_decltype_auto, + STATE(5712), 2, sym_argument_list, - STATE(3651), 1, - sym_subscript_argument_list, - ACTIONS(7429), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8958), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7143), 15, + sym_initializer_list, + ACTIONS(5878), 10, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -504710,19 +464451,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_DOT, + ACTIONS(5876), 23, + anon_sym_STAR, + 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_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, - sym_identifier, - ACTIONS(7141), 17, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [160245] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5374), 10, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + 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(5381), 32, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -504733,13 +464502,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, - [207672] = 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_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_DOT_DOT_GT, + [160295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7203), 17, - aux_sym_preproc_elif_token1, + ACTIONS(6195), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -504756,13 +464543,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7201), 24, + sym_auto, + anon_sym_decltype, + ACTIONS(6193), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -504774,6 +464562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -504781,11 +464570,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [207721] = 3, + [160345] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7229), 17, - aux_sym_preproc_elif_token1, + ACTIONS(4250), 1, + anon_sym_LBRACE, + ACTIONS(8565), 1, + anon_sym_LPAREN2, + ACTIONS(8567), 1, + anon_sym_LBRACK, + ACTIONS(8569), 1, + sym_auto, + ACTIONS(8571), 1, + anon_sym_decltype, + STATE(5295), 1, + sym_new_declarator, + STATE(5358), 1, + sym_decltype_auto, + STATE(5740), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5807), 10, + anon_sym_DOT_DOT_DOT, + 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(5805), 23, + anon_sym_STAR, + 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_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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [160411] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6199), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -504802,13 +464645,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7227), 24, + sym_auto, + anon_sym_decltype, + ACTIONS(6197), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -504820,6 +464664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -504827,16 +464672,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [207770] = 6, + [160461] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(8997), 1, - anon_sym_LT, - STATE(5459), 1, - sym_template_argument_list, - ACTIONS(6197), 15, + ACTIONS(3964), 1, + anon_sym_LBRACE, + ACTIONS(8316), 1, + anon_sym_LPAREN2, + STATE(5152), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6386), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -504844,6 +464690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -504852,13 +464699,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4853), 23, + ACTIONS(6384), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -504876,11 +464722,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [207825] = 3, + [160517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6349), 17, - aux_sym_preproc_elif_token1, + ACTIONS(6296), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -504897,13 +464742,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6351), 24, + sym_auto, + anon_sym_decltype, + ACTIONS(6294), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -504915,17 +464761,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [160567] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8575), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6753), 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(6755), 31, + ts_builtin_sym_end, + 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_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___attribute__, + 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_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, - [207874] = 3, + [160619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 16, + ACTIONS(6252), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -504942,7 +464837,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5479), 25, + sym_auto, + anon_sym_decltype, + ACTIONS(6250), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -504959,7 +464856,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -504968,57 +464864,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [207923] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3191), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3189), 39, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_typename, - anon_sym_template, - [207972] = 3, + [160669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6410), 17, - aux_sym_preproc_elif_token1, + ACTIONS(6334), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -505035,13 +464884,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6412), 24, + sym_auto, + anon_sym_decltype, + ACTIONS(6332), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -505053,6 +464903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -505060,13 +464911,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [208021] = 4, + [160719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8999), 1, - anon_sym_LPAREN2, - ACTIONS(2183), 17, - aux_sym_preproc_elif_token1, + ACTIONS(6300), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -505083,13 +464931,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(2185), 23, + sym_auto, + anon_sym_decltype, + ACTIONS(6298), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -505100,6 +464950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -505107,21 +464958,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [208072] = 3, + [160769] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3229), 2, - anon_sym_COLON_COLON, + ACTIONS(5747), 1, + anon_sym___attribute__, + ACTIONS(8229), 1, + anon_sym_LBRACE, + ACTIONS(8563), 1, + anon_sym_COLON, + STATE(3597), 1, + sym_attribute_specifier, + STATE(4351), 1, + sym_enum_base_clause, + STATE(4450), 1, + sym_enumerator_list, + ACTIONS(6516), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3227), 39, + ACTIONS(6514), 30, + anon_sym_AMP, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___based, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -505141,95 +465005,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - 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_alignas, - anon_sym_typename, - anon_sym_template, - [208121] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6720), 1, - anon_sym_LPAREN2, - ACTIONS(7081), 1, - sym_identifier, - ACTIONS(7423), 1, - anon_sym_LBRACK, - ACTIONS(7427), 1, - anon_sym_DOT, - ACTIONS(8956), 1, - anon_sym_SLASH, - ACTIONS(8965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8967), 1, - anon_sym_AMP_AMP, - ACTIONS(8971), 1, - anon_sym_CARET, - ACTIONS(8979), 1, - anon_sym_GT_EQ, - ACTIONS(8983), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8985), 1, - anon_sym_or, - ACTIONS(8987), 1, - anon_sym_and, - ACTIONS(8989), 1, - anon_sym_xor, - ACTIONS(8991), 1, - anon_sym_not_eq, - ACTIONS(9001), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9003), 1, - anon_sym_QMARK, - STATE(3608), 1, - sym_argument_list, - STATE(3651), 1, - sym_subscript_argument_list, - ACTIONS(7429), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8954), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8958), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8963), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8969), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(8973), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8975), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8981), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8977), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7083), 4, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [208222] = 3, + anon_sym_operator, + [160831] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7403), 17, - aux_sym_preproc_elif_token1, + ACTIONS(5929), 1, + sym_literal_suffix, + ACTIONS(4773), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -505245,14 +465032,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(7401), 24, + ACTIONS(4765), 26, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -505264,21 +465048,21 @@ 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_DOT_STAR, anon_sym_DASH_GT, - [208271] = 5, + [160883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8641), 1, - anon_sym_LBRACK, - STATE(5458), 1, - sym_new_declarator, - ACTIONS(6943), 16, + ACTIONS(6016), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -505295,7 +465079,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6941), 23, + sym_auto, + anon_sym_decltype, + ACTIONS(6018), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -505313,17 +465099,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [208324] = 3, + [160933] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5746), 17, - aux_sym_preproc_elif_token1, + ACTIONS(6326), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -505340,13 +465126,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(3187), 24, + sym_auto, + anon_sym_decltype, + ACTIONS(6324), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -505358,6 +465145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -505365,26 +465153,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [208373] = 10, + [160983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, - anon_sym_LPAREN2, - ACTIONS(7423), 1, - anon_sym_LBRACK, - ACTIONS(7427), 1, - anon_sym_DOT, - STATE(3608), 1, - sym_argument_list, - STATE(3651), 1, - sym_subscript_argument_list, - ACTIONS(7429), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8958), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7112), 15, + ACTIONS(6228), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -505399,13 +465171,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(7110), 17, + sym_auto, + anon_sym_decltype, + ACTIONS(6226), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -505416,13 +465192,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - [208436] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [161033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7061), 17, - aux_sym_preproc_elif_token1, + ACTIONS(6272), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -505439,13 +465220,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7065), 24, + sym_auto, + anon_sym_decltype, + ACTIONS(6270), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -505457,6 +465239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -505464,11 +465247,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [208485] = 3, + [161083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7334), 17, - aux_sym_preproc_elif_token1, + ACTIONS(6338), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -505485,13 +465267,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7332), 24, + sym_auto, + anon_sym_decltype, + ACTIONS(6336), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -505503,6 +465286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -505510,11 +465294,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [208534] = 3, + [161133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7342), 17, - aux_sym_preproc_elif_token1, + ACTIONS(6216), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -505531,13 +465314,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7340), 24, + sym_auto, + anon_sym_decltype, + ACTIONS(6214), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -505549,6 +465333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -505556,11 +465341,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [208583] = 3, + [161183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2183), 17, - aux_sym_preproc_elif_token1, + ACTIONS(4763), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -505577,13 +465361,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(2185), 24, + sym_auto, + anon_sym_decltype, + ACTIONS(4771), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -505595,6 +465380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -505602,11 +465388,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [208632] = 3, + [161233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7387), 17, - aux_sym_preproc_elif_token1, + ACTIONS(6318), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -505623,13 +465408,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7385), 24, + sym_auto, + anon_sym_decltype, + ACTIONS(6316), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -505641,6 +465427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -505648,11 +465435,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [208681] = 3, + [161283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7391), 17, - aux_sym_preproc_elif_token1, + ACTIONS(5989), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -505669,13 +465455,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7389), 24, + sym_auto, + anon_sym_decltype, + ACTIONS(5987), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -505687,6 +465474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -505694,73 +465482,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [208730] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(9005), 1, - sym_identifier, - ACTIONS(9007), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9009), 1, - anon_sym_LPAREN2, - ACTIONS(9011), 1, - anon_sym_STAR, - ACTIONS(9013), 1, - anon_sym_AMP_AMP, - ACTIONS(9015), 1, - anon_sym_AMP, - STATE(6796), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7590), 1, - sym_field_declarator, - STATE(10022), 1, - sym_ms_based_modifier, - ACTIONS(9021), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5396), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6308), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(7715), 2, - sym_operator_name, - sym_semgrep_ellipsis, - ACTIONS(9019), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(7771), 7, - 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, - ACTIONS(9017), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [208811] = 3, + [161333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7287), 17, - aux_sym_preproc_elif_token1, + ACTIONS(4763), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -505777,13 +465502,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7285), 24, + sym_auto, + anon_sym_decltype, + ACTIONS(4771), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -505795,6 +465521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -505802,11 +465529,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [208860] = 3, + [161383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7338), 17, - aux_sym_preproc_elif_token1, + ACTIONS(6276), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -505823,13 +465549,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7336), 24, + sym_auto, + anon_sym_decltype, + ACTIONS(6274), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -505841,6 +465568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -505848,11 +465576,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [208909] = 3, + [161433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7213), 17, - aux_sym_preproc_elif_token1, + ACTIONS(6346), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -505869,13 +465596,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7211), 24, + sym_auto, + anon_sym_decltype, + ACTIONS(6344), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -505887,6 +465615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -505894,56 +465623,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [208958] = 3, + [161483] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4261), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(8579), 1, + anon_sym_typedef, + ACTIONS(3702), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3700), 39, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + 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_alignas, + anon_sym_typename, + anon_sym_template, + [161535] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7019), 1, anon_sym_PIPE, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(8585), 1, + anon_sym_SLASH, + ACTIONS(8587), 1, anon_sym_AMP, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8599), 1, + anon_sym_bitand, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8583), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8589), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + ACTIONS(7021), 14, + ts_builtin_sym_end, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + 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, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(4259), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + [161618] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(8585), 1, + anon_sym_SLASH, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7019), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7021), 20, + ts_builtin_sym_end, + 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_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_DOT_STAR, - anon_sym_DASH_GT, - [209007] = 3, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [161689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3078), 17, + ACTIONS(3141), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3139), 39, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + 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_alignas, + anon_sym_typename, + anon_sym_template, + [161738] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5603), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -505961,7 +465858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(3080), 24, + ACTIONS(5605), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -505986,10 +465883,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [209056] = 3, + [161787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7356), 17, + ACTIONS(5633), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -506007,7 +465904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7354), 24, + ACTIONS(5635), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -506032,10 +465929,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [209105] = 3, + [161836] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5481), 16, + ACTIONS(8601), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8603), 1, + anon_sym_AMP_AMP, + ACTIONS(8605), 1, + anon_sym_or, + ACTIONS(8607), 1, + anon_sym_and, + ACTIONS(6677), 15, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -506044,33 +465950,28 @@ static const uint16_t ts_small_parse_table[] = { 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_identifier, - ACTIONS(5483), 25, + ACTIONS(6679), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, 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_COLON, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -506078,10 +465979,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [209154] = 3, + [161893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 16, + ACTIONS(5625), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -506098,12 +466000,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5498), 25, + ACTIONS(5627), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -506115,8 +466018,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -506124,10 +466025,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [209203] = 3, + [161942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7217), 17, + ACTIONS(5629), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -506145,7 +466046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7215), 24, + ACTIONS(5631), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -506170,52 +466071,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [209252] = 13, + [161991] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, + ACTIONS(6858), 1, anon_sym_LPAREN2, - ACTIONS(7423), 1, + ACTIONS(7116), 1, + sym_identifier, + ACTIONS(7238), 1, anon_sym_LBRACK, - ACTIONS(7427), 1, + ACTIONS(7252), 1, anon_sym_DOT, - ACTIONS(8956), 1, + ACTIONS(8613), 1, anon_sym_SLASH, - STATE(3608), 1, + ACTIONS(8615), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8617), 1, + anon_sym_AMP_AMP, + ACTIONS(8621), 1, + anon_sym_CARET, + ACTIONS(8629), 1, + anon_sym_GT_EQ, + ACTIONS(8633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8635), 1, + anon_sym_or, + ACTIONS(8637), 1, + anon_sym_and, + ACTIONS(8639), 1, + anon_sym_xor, + ACTIONS(8641), 1, + anon_sym_not_eq, + STATE(3335), 1, sym_argument_list, - STATE(3651), 1, + STATE(3340), 1, sym_subscript_argument_list, - ACTIONS(7429), 2, + ACTIONS(7254), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8954), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8958), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8963), 2, + ACTIONS(8609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7053), 12, + ACTIONS(8611), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8619), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8623), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8625), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8631), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8643), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8627), 3, 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, - sym_identifier, - ACTIONS(7051), 15, + ACTIONS(7118), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_sym_QMARK, + [162088] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8312), 1, + anon_sym___attribute__, + ACTIONS(8535), 1, + anon_sym_LBRACE, + STATE(4927), 1, + sym_enumerator_list, + STATE(5267), 1, + sym_attribute_specifier, + ACTIONS(5983), 10, + anon_sym_DOT_DOT_DOT, + 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(5981), 27, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -506224,82 +466175,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - [209321] = 27, + anon_sym_or, + anon_sym_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, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [162145] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, - anon_sym_LPAREN2, - ACTIONS(7077), 1, + ACTIONS(6691), 1, sym_identifier, - ACTIONS(7423), 1, + ACTIONS(6858), 1, + anon_sym_LPAREN2, + ACTIONS(7238), 1, anon_sym_LBRACK, - ACTIONS(7427), 1, + ACTIONS(7252), 1, anon_sym_DOT, - ACTIONS(8956), 1, + ACTIONS(8613), 1, anon_sym_SLASH, - ACTIONS(8965), 1, + ACTIONS(8615), 1, anon_sym_PIPE_PIPE, - ACTIONS(8967), 1, + ACTIONS(8617), 1, anon_sym_AMP_AMP, - ACTIONS(8971), 1, + ACTIONS(8621), 1, anon_sym_CARET, - ACTIONS(8979), 1, + ACTIONS(8629), 1, anon_sym_GT_EQ, - ACTIONS(8983), 1, + ACTIONS(8633), 1, anon_sym_LT_EQ_GT, - ACTIONS(8985), 1, + ACTIONS(8635), 1, anon_sym_or, - ACTIONS(8987), 1, + ACTIONS(8637), 1, anon_sym_and, - ACTIONS(8989), 1, + ACTIONS(8639), 1, anon_sym_xor, - ACTIONS(8991), 1, + ACTIONS(8641), 1, anon_sym_not_eq, - STATE(3608), 1, + ACTIONS(8645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8647), 1, + anon_sym_QMARK, + STATE(3335), 1, sym_argument_list, - STATE(3651), 1, + STATE(3340), 1, sym_subscript_argument_list, - ACTIONS(7429), 2, + ACTIONS(7254), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8954), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8958), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8963), 2, + ACTIONS(8609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8969), 2, + ACTIONS(8611), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8619), 2, anon_sym_PIPE, anon_sym_bitor, - ACTIONS(8973), 2, + ACTIONS(8623), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(8975), 2, + ACTIONS(8625), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8981), 2, + ACTIONS(8631), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8977), 3, + ACTIONS(8643), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8627), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7079), 6, - anon_sym_DOT_DOT_DOT, + ACTIONS(6689), 4, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_QMARK, - [209418] = 3, + [162246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6356), 17, + ACTIONS(5621), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -506317,7 +466284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6358), 24, + ACTIONS(5623), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -506342,10 +466309,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [209467] = 3, + [162295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6368), 17, + ACTIONS(5591), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -506363,7 +466330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6370), 24, + ACTIONS(5593), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -506388,320 +466355,423 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [209516] = 3, + [162344] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6468), 17, - aux_sym_preproc_elif_token1, + ACTIONS(6858), 1, + anon_sym_LPAREN2, + ACTIONS(7238), 1, + anon_sym_LBRACK, + ACTIONS(7252), 1, + anon_sym_DOT, + ACTIONS(8613), 1, + anon_sym_SLASH, + ACTIONS(8617), 1, + anon_sym_AMP_AMP, + ACTIONS(8621), 1, + anon_sym_CARET, + ACTIONS(8629), 1, + anon_sym_GT_EQ, + ACTIONS(8633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8637), 1, + anon_sym_and, + ACTIONS(8639), 1, + anon_sym_xor, + ACTIONS(8641), 1, + anon_sym_not_eq, + STATE(3335), 1, + sym_argument_list, + STATE(3340), 1, + sym_subscript_argument_list, + ACTIONS(7019), 2, + anon_sym_or, + sym_identifier, + ACTIONS(7254), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8609), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(8611), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8619), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8623), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8625), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8631), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8643), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8627), 3, 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_identifier, - ACTIONS(6470), 24, + ACTIONS(7021), 7, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + [162437] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6858), 1, anon_sym_LPAREN2, + ACTIONS(7238), 1, + anon_sym_LBRACK, + ACTIONS(7252), 1, + anon_sym_DOT, + ACTIONS(8613), 1, + anon_sym_SLASH, + ACTIONS(8621), 1, + anon_sym_CARET, + ACTIONS(8629), 1, + anon_sym_GT_EQ, + ACTIONS(8633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8639), 1, + anon_sym_xor, + ACTIONS(8641), 1, + anon_sym_not_eq, + STATE(3335), 1, + sym_argument_list, + STATE(3340), 1, + sym_subscript_argument_list, + ACTIONS(7254), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8609), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8611), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(8619), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8623), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8625), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(8631), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + ACTIONS(8643), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [209565] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9023), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9025), 1, - anon_sym_AMP_AMP, - ACTIONS(9027), 1, + ACTIONS(7019), 3, anon_sym_or, - ACTIONS(9029), 1, anon_sym_and, - ACTIONS(6372), 15, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + sym_identifier, + ACTIONS(8627), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6374), 22, + ACTIONS(7021), 8, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + [162526] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6858), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(7238), 1, + anon_sym_LBRACK, + ACTIONS(7252), 1, + anon_sym_DOT, + ACTIONS(8613), 1, + anon_sym_SLASH, + ACTIONS(8621), 1, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(8629), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(8633), 1, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(8639), 1, + anon_sym_xor, + ACTIONS(8641), 1, + anon_sym_not_eq, + STATE(3335), 1, + sym_argument_list, + STATE(3340), 1, + sym_subscript_argument_list, + ACTIONS(7254), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [209622] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4837), 17, - aux_sym_preproc_elif_token1, + ACTIONS(8609), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(8611), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8623), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8625), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8631), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8643), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8627), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + ACTIONS(7019), 5, + anon_sym_PIPE, anon_sym_or, anon_sym_and, anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(4829), 24, + ACTIONS(7021), 8, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + aux_sym_preproc_elif_token1, 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_QMARK, + [162613] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6858), 1, + anon_sym_LPAREN2, + ACTIONS(7238), 1, + anon_sym_LBRACK, + ACTIONS(7252), 1, + anon_sym_DOT, + ACTIONS(8613), 1, + anon_sym_SLASH, + ACTIONS(8629), 1, + anon_sym_GT_EQ, + ACTIONS(8633), 1, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(8641), 1, + anon_sym_not_eq, + STATE(3335), 1, + sym_argument_list, + STATE(3340), 1, + sym_subscript_argument_list, + ACTIONS(7254), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [209671] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7311), 17, - aux_sym_preproc_elif_token1, + ACTIONS(8609), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(8611), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8623), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8625), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8631), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8643), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8627), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + ACTIONS(7019), 6, + anon_sym_PIPE, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(7309), 24, + ACTIONS(7021), 9, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + aux_sym_preproc_elif_token1, 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [209720] = 29, + [162696] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, + ACTIONS(6858), 1, anon_sym_LPAREN2, - ACTIONS(7093), 1, - sym_identifier, - ACTIONS(7423), 1, + ACTIONS(7238), 1, anon_sym_LBRACK, - ACTIONS(7427), 1, + ACTIONS(7252), 1, anon_sym_DOT, - ACTIONS(8956), 1, + ACTIONS(8613), 1, anon_sym_SLASH, - ACTIONS(8965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8967), 1, - anon_sym_AMP_AMP, - ACTIONS(8971), 1, - anon_sym_CARET, - ACTIONS(8979), 1, + ACTIONS(8629), 1, anon_sym_GT_EQ, - ACTIONS(8983), 1, + ACTIONS(8633), 1, anon_sym_LT_EQ_GT, - ACTIONS(8985), 1, - anon_sym_or, - ACTIONS(8987), 1, - anon_sym_and, - ACTIONS(8989), 1, - anon_sym_xor, - ACTIONS(8991), 1, + ACTIONS(8641), 1, anon_sym_not_eq, - ACTIONS(9001), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9003), 1, - anon_sym_QMARK, - STATE(3608), 1, + STATE(3335), 1, sym_argument_list, - STATE(3651), 1, + STATE(3340), 1, sym_subscript_argument_list, - ACTIONS(7429), 2, + ACTIONS(7254), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8954), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8958), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8963), 2, + ACTIONS(8609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8969), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(8973), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8975), 2, + ACTIONS(8611), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8625), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8981), 2, + ACTIONS(8631), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8977), 3, + ACTIONS(8643), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8627), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7095), 4, + ACTIONS(7019), 8, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + sym_identifier, + ACTIONS(7021), 9, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [209821] = 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_QMARK, + [162777] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6472), 17, - aux_sym_preproc_elif_token1, + ACTIONS(6858), 1, + anon_sym_LPAREN2, + ACTIONS(7238), 1, + anon_sym_LBRACK, + ACTIONS(7252), 1, + anon_sym_DOT, + ACTIONS(8613), 1, + anon_sym_SLASH, + ACTIONS(8629), 1, + anon_sym_GT_EQ, + ACTIONS(8633), 1, + anon_sym_LT_EQ_GT, + STATE(3335), 1, + sym_argument_list, + STATE(3340), 1, + sym_subscript_argument_list, + ACTIONS(7254), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8609), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8611), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8631), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8643), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8627), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + ACTIONS(7019), 9, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(6474), 24, + ACTIONS(7021), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + aux_sym_preproc_elif_token1, 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_QMARK, + [162854] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6858), 1, + anon_sym_LPAREN2, + ACTIONS(7238), 1, + anon_sym_LBRACK, + ACTIONS(7252), 1, + anon_sym_DOT, + ACTIONS(8613), 1, + anon_sym_SLASH, + ACTIONS(8633), 1, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(3335), 1, + sym_argument_list, + STATE(3340), 1, + sym_subscript_argument_list, + ACTIONS(7254), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [209870] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7233), 17, - aux_sym_preproc_elif_token1, + ACTIONS(8609), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(8611), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8631), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8643), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7019), 12, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, @@ -506713,37 +466783,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(7231), 24, + ACTIONS(7021), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + aux_sym_preproc_elif_token1, 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [209919] = 3, + [162927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7371), 17, + ACTIONS(5599), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -506761,7 +466818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7369), 24, + ACTIONS(5601), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -506786,10 +466843,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [209968] = 3, + [162976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 17, + ACTIONS(5617), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -506807,7 +466864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(2191), 24, + ACTIONS(5619), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -506832,10 +466889,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [210017] = 3, + [163025] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5511), 16, + ACTIONS(8312), 1, + anon_sym___attribute__, + ACTIONS(8535), 1, + anon_sym_LBRACE, + STATE(4918), 1, + sym_enumerator_list, + STATE(5322), 1, + sym_attribute_specifier, + ACTIONS(5989), 10, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -506844,20 +466910,8 @@ static const uint16_t ts_small_parse_table[] = { 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_identifier, - ACTIONS(5513), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(5987), 27, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -506869,72 +466923,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, - 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_DOT_STAR, anon_sym_DASH_GT, - [210066] = 7, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [163082] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9031), 1, - sym_identifier, - ACTIONS(9035), 1, - sym_primitive_type, - STATE(5414), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9033), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6022), 5, + ACTIONS(6858), 1, anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(7060), 1, + sym_identifier, + ACTIONS(7238), 1, + anon_sym_LBRACK, + ACTIONS(7252), 1, + anon_sym_DOT, + ACTIONS(8613), 1, + anon_sym_SLASH, + ACTIONS(8615), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8617), 1, anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(6026), 29, + ACTIONS(8621), 1, + anon_sym_CARET, + ACTIONS(8629), 1, + anon_sym_GT_EQ, + ACTIONS(8633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8635), 1, + anon_sym_or, + ACTIONS(8637), 1, + anon_sym_and, + ACTIONS(8639), 1, + anon_sym_xor, + ACTIONS(8641), 1, + anon_sym_not_eq, + STATE(3335), 1, + sym_argument_list, + STATE(3340), 1, + sym_subscript_argument_list, + ACTIONS(7254), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8609), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8611), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8619), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8623), 2, anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - [210123] = 4, + anon_sym_bitand, + ACTIONS(8625), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8631), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8643), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8627), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7062), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_QMARK, + [163179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5525), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5527), 16, + ACTIONS(5607), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -506951,12 +467030,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5520), 23, + ACTIONS(5609), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -506975,10 +467055,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [210174] = 3, + [163228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6418), 17, + ACTIONS(5637), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -506996,7 +467076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6420), 24, + ACTIONS(5639), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -507021,10 +467101,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [210223] = 3, + [163277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6482), 17, + ACTIONS(5611), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -507042,7 +467122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6484), 24, + ACTIONS(5613), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -507067,217 +467147,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [210272] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(9007), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9009), 1, - anon_sym_LPAREN2, - ACTIONS(9037), 1, - sym_identifier, - ACTIONS(9039), 1, - anon_sym_STAR, - ACTIONS(9041), 1, - anon_sym_AMP_AMP, - ACTIONS(9043), 1, - anon_sym_AMP, - STATE(6796), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7978), 1, - sym_field_declarator, - STATE(10129), 1, - sym_ms_based_modifier, - ACTIONS(9021), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5382), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6310), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(8114), 2, - sym_operator_name, - sym_semgrep_ellipsis, - ACTIONS(9019), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(7771), 7, - 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, - ACTIONS(9017), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [210353] = 27, + [163326] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, + ACTIONS(6858), 1, anon_sym_LPAREN2, - ACTIONS(7006), 1, + ACTIONS(7132), 1, sym_identifier, - ACTIONS(7423), 1, + ACTIONS(7238), 1, anon_sym_LBRACK, - ACTIONS(7427), 1, + ACTIONS(7252), 1, anon_sym_DOT, - ACTIONS(8956), 1, + ACTIONS(8613), 1, anon_sym_SLASH, - ACTIONS(8965), 1, + ACTIONS(8615), 1, anon_sym_PIPE_PIPE, - ACTIONS(8967), 1, + ACTIONS(8617), 1, anon_sym_AMP_AMP, - ACTIONS(8971), 1, + ACTIONS(8621), 1, anon_sym_CARET, - ACTIONS(8979), 1, + ACTIONS(8629), 1, anon_sym_GT_EQ, - ACTIONS(8983), 1, + ACTIONS(8633), 1, anon_sym_LT_EQ_GT, - ACTIONS(8985), 1, + ACTIONS(8635), 1, anon_sym_or, - ACTIONS(8987), 1, + ACTIONS(8637), 1, anon_sym_and, - ACTIONS(8989), 1, + ACTIONS(8639), 1, anon_sym_xor, - ACTIONS(8991), 1, + ACTIONS(8641), 1, anon_sym_not_eq, - STATE(3608), 1, + ACTIONS(8645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8647), 1, + anon_sym_QMARK, + STATE(3335), 1, sym_argument_list, - STATE(3651), 1, + STATE(3340), 1, sym_subscript_argument_list, - ACTIONS(7429), 2, + ACTIONS(7254), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8954), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8958), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8963), 2, + ACTIONS(8609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8969), 2, + ACTIONS(8611), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8619), 2, anon_sym_PIPE, anon_sym_bitor, - ACTIONS(8973), 2, + ACTIONS(8623), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(8975), 2, + ACTIONS(8625), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8981), 2, + ACTIONS(8631), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8977), 3, + ACTIONS(8643), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8627), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7008), 6, - anon_sym_DOT_DOT_DOT, + ACTIONS(7134), 4, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_QMARK, - [210450] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(9007), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9009), 1, - anon_sym_LPAREN2, - ACTIONS(9037), 1, - sym_identifier, - ACTIONS(9039), 1, - anon_sym_STAR, - ACTIONS(9041), 1, - anon_sym_AMP_AMP, - ACTIONS(9043), 1, - anon_sym_AMP, - STATE(6796), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7987), 1, - sym_field_declarator, - STATE(10129), 1, - sym_ms_based_modifier, - ACTIONS(9021), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5436), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6303), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(8114), 2, - sym_operator_name, - sym_semgrep_ellipsis, - ACTIONS(9019), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(7771), 7, - 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, - ACTIONS(9017), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [210531] = 9, + [163427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, - anon_sym_LPAREN2, - ACTIONS(7423), 1, - anon_sym_LBRACK, - ACTIONS(7427), 1, - anon_sym_DOT, - STATE(3608), 1, - sym_argument_list, - STATE(3651), 1, - sym_subscript_argument_list, - ACTIONS(7429), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6998), 15, + ACTIONS(5641), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -507292,13 +467238,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(6996), 19, + ACTIONS(5643), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -507309,60 +467258,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [210592] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5467), 8, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(5460), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_operator, - [210641] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [163476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6197), 17, + ACTIONS(5595), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -507380,7 +467286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4853), 24, + ACTIONS(5597), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -507405,118 +467311,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [210690] = 19, + [163525] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(9007), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9009), 1, + ACTIONS(6858), 1, anon_sym_LPAREN2, - ACTIONS(9037), 1, + ACTIONS(7105), 1, sym_identifier, - ACTIONS(9039), 1, - anon_sym_STAR, - ACTIONS(9041), 1, + ACTIONS(7238), 1, + anon_sym_LBRACK, + ACTIONS(7252), 1, + anon_sym_DOT, + ACTIONS(8613), 1, + anon_sym_SLASH, + ACTIONS(8615), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8617), 1, anon_sym_AMP_AMP, - ACTIONS(9043), 1, - anon_sym_AMP, - STATE(6796), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7964), 1, - sym_field_declarator, - STATE(10129), 1, - sym_ms_based_modifier, - ACTIONS(9021), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(6292), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6721), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(8114), 2, - sym_operator_name, - sym_semgrep_ellipsis, - ACTIONS(9019), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(7771), 7, - 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, - ACTIONS(9017), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [210771] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6508), 17, - aux_sym_preproc_elif_token1, + ACTIONS(8621), 1, + anon_sym_CARET, + ACTIONS(8629), 1, + anon_sym_GT_EQ, + ACTIONS(8633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8635), 1, + anon_sym_or, + ACTIONS(8637), 1, + anon_sym_and, + ACTIONS(8639), 1, + anon_sym_xor, + ACTIONS(8641), 1, + anon_sym_not_eq, + STATE(3335), 1, + sym_argument_list, + STATE(3340), 1, + sym_subscript_argument_list, + ACTIONS(7254), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8609), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(8611), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8619), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8623), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8625), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8631), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8643), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8627), 3, 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_identifier, - ACTIONS(6510), 24, + ACTIONS(7107), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, + anon_sym_QMARK, + [163622] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6858), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(7090), 1, + sym_identifier, + ACTIONS(7238), 1, + anon_sym_LBRACK, + ACTIONS(7252), 1, + anon_sym_DOT, + ACTIONS(8613), 1, + anon_sym_SLASH, + ACTIONS(8615), 1, anon_sym_PIPE_PIPE, + ACTIONS(8617), 1, anon_sym_AMP_AMP, + ACTIONS(8621), 1, anon_sym_CARET, + ACTIONS(8629), 1, + anon_sym_GT_EQ, + ACTIONS(8633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8635), 1, + anon_sym_or, + ACTIONS(8637), 1, + anon_sym_and, + ACTIONS(8639), 1, + anon_sym_xor, + ACTIONS(8641), 1, + anon_sym_not_eq, + ACTIONS(8645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8647), 1, + anon_sym_QMARK, + STATE(3335), 1, + sym_argument_list, + STATE(3340), 1, + sym_subscript_argument_list, + ACTIONS(7254), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8609), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8611), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8619), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8623), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8625), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(8631), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + ACTIONS(8643), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [210820] = 3, + ACTIONS(8627), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7094), 4, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [163723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7159), 17, + ACTIONS(5579), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -507534,7 +467474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7157), 24, + ACTIONS(5581), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -507559,134 +467499,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [210869] = 8, + [163772] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5469), 1, - anon_sym_LBRACK, - ACTIONS(7973), 1, - anon_sym_LT, - STATE(5689), 1, - sym_template_argument_list, - ACTIONS(5464), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(5467), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - ACTIONS(5460), 31, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, + ACTIONS(51), 1, anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, + ACTIONS(2257), 1, anon_sym_operator, - [210928] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8649), 1, + sym_identifier, + ACTIONS(8651), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9045), 1, - anon_sym_COMMA, - ACTIONS(9051), 1, - anon_sym_SLASH, - ACTIONS(9057), 1, - anon_sym_PIPE, - ACTIONS(9061), 1, - anon_sym_AMP, - ACTIONS(9067), 1, - anon_sym_GT_EQ, - ACTIONS(9071), 1, - anon_sym_SEMI, - ACTIONS(9073), 1, - anon_sym___attribute__, - ACTIONS(9075), 1, - anon_sym_QMARK, - ACTIONS(9077), 1, - anon_sym_LT_EQ_GT, - ACTIONS(9079), 1, - anon_sym_bitor, - ACTIONS(9081), 1, - anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - STATE(8157), 1, - aux_sym_field_declaration_repeat1, - STATE(10275), 1, - sym_attribute_specifier, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9047), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9049), 2, + ACTIONS(8653), 1, + anon_sym_LPAREN2, + ACTIONS(8655), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9053), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9055), 2, + ACTIONS(8657), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9059), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(9069), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9063), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9065), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [211031] = 3, + ACTIONS(8659), 1, + anon_sym_AMP, + STATE(5969), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7214), 1, + sym_field_declarator, + STATE(9402), 1, + sym_ms_based_modifier, + ACTIONS(3698), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4883), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5779), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(7368), 2, + sym_operator_name, + sym_semgrep_ellipsis, + ACTIONS(3696), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7399), 7, + 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [163853] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7273), 17, + ACTIONS(8603), 1, + anon_sym_AMP_AMP, + ACTIONS(8607), 1, + anon_sym_and, + ACTIONS(6753), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -507697,14 +467579,13 @@ static const uint16_t ts_small_parse_table[] = { 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_identifier, - ACTIONS(7271), 24, + ACTIONS(6755), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -507715,48 +467596,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [211080] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8625), 1, - anon_sym___attribute__, - ACTIONS(8852), 1, - anon_sym_LBRACE, - STATE(5443), 1, - sym_enumerator_list, - STATE(5808), 1, - sym_attribute_specifier, - ACTIONS(6310), 10, - anon_sym_DOT_DOT_DOT, - 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(6308), 27, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -507766,23 +467605,14 @@ 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_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [211137] = 3, + [163906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4853), 8, + ACTIONS(5381), 8, anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_STAR, @@ -507791,7 +467621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(6197), 33, + ACTIONS(5374), 33, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -507825,208 +467655,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_virtual, anon_sym_alignas, anon_sym_operator, - [211186] = 29, + [163955] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7423), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7427), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8868), 1, - sym_identifier, - ACTIONS(8956), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8967), 1, - anon_sym_AMP_AMP, - ACTIONS(8971), 1, - anon_sym_CARET, - ACTIONS(8979), 1, + ACTIONS(8587), 1, + anon_sym_AMP, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8983), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8985), 1, - anon_sym_or, - ACTIONS(8987), 1, - anon_sym_and, - ACTIONS(8989), 1, - anon_sym_xor, - ACTIONS(8991), 1, - anon_sym_not_eq, - ACTIONS(9001), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9003), 1, - anon_sym_QMARK, - STATE(3608), 1, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + STATE(2617), 1, sym_argument_list, - STATE(3651), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7429), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8954), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8958), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8963), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8969), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(8973), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8975), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8981), 2, + ACTIONS(8583), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8595), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8977), 3, + ACTIONS(8661), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8589), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(8870), 4, + ACTIONS(7062), 7, + ts_builtin_sym_end, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [211287] = 30, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + [164046] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3191), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3189), 39, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + 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_alignas, + anon_sym_typename, + anon_sym_template, + [164095] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9045), 1, - anon_sym_COMMA, - ACTIONS(9051), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(9057), 1, - anon_sym_PIPE, - ACTIONS(9061), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(9067), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(9073), 1, - anon_sym___attribute__, - ACTIONS(9075), 1, - anon_sym_QMARK, - ACTIONS(9077), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(9079), 1, - anon_sym_bitor, - ACTIONS(9081), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9083), 1, - anon_sym_SEMI, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8134), 1, - aux_sym_field_declaration_repeat1, - STATE(9651), 1, - sym_attribute_specifier, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9047), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9049), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9053), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9055), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9059), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9069), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9063), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9065), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [211390] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6720), 1, - anon_sym_LPAREN2, - ACTIONS(7423), 1, - anon_sym_LBRACK, - ACTIONS(7427), 1, - anon_sym_DOT, - STATE(3608), 1, - sym_argument_list, - STATE(3651), 1, - sym_subscript_argument_list, - ACTIONS(7429), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8958), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7053), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8591), 3, 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, - sym_identifier, - ACTIONS(7051), 17, + ACTIONS(7118), 7, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_STAR, - 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_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - [211453] = 3, + [164186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7265), 17, + ACTIONS(2355), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -508044,7 +467856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7263), 24, + ACTIONS(2353), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -508069,10 +467881,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [211502] = 3, + [164235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 17, + ACTIONS(2359), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -508090,7 +467902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7325), 24, + ACTIONS(2357), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -508115,11 +467927,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [211551] = 3, + [164284] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5460), 17, - aux_sym_preproc_elif_token1, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, + anon_sym_SLASH, + ACTIONS(8587), 1, + anon_sym_AMP, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8583), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8589), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8591), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7134), 5, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + [164379] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5438), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(5440), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -508136,13 +468019,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5467), 24, + ACTIONS(5445), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -508161,48 +468043,423 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [211600] = 19, + [164430] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3089), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3087), 39, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + 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_alignas, + anon_sym_typename, + anon_sym_template, + [164479] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3611), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3609), 39, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + 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_alignas, + anon_sym_typename, + anon_sym_template, + [164528] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3221), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3219), 39, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + 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_alignas, + anon_sym_typename, + anon_sym_template, + [164577] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(8585), 1, + anon_sym_SLASH, + ACTIONS(8587), 1, + anon_sym_AMP, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8583), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8589), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8591), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7107), 7, + ts_builtin_sym_end, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + [164668] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3225), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3223), 39, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + 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_alignas, + anon_sym_typename, + anon_sym_template, + [164717] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(2259), 1, + ACTIONS(2257), 1, anon_sym_operator, - ACTIONS(9005), 1, + ACTIONS(4043), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8653), 1, + anon_sym_LPAREN2, + ACTIONS(8673), 1, sym_identifier, - ACTIONS(9007), 1, + ACTIONS(8675), 1, + anon_sym_STAR, + ACTIONS(8677), 1, + anon_sym_AMP_AMP, + ACTIONS(8679), 1, + anon_sym_AMP, + STATE(5969), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7596), 1, + sym_field_declarator, + STATE(9923), 1, + sym_ms_based_modifier, + ACTIONS(3698), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4875), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5798), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(7742), 2, + sym_operator_name, + sym_semgrep_ellipsis, + ACTIONS(3696), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7399), 7, + 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [164798] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(4043), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9009), 1, + ACTIONS(8653), 1, anon_sym_LPAREN2, - ACTIONS(9011), 1, + ACTIONS(8673), 1, + sym_identifier, + ACTIONS(8675), 1, anon_sym_STAR, - ACTIONS(9013), 1, + ACTIONS(8677), 1, anon_sym_AMP_AMP, - ACTIONS(9015), 1, + ACTIONS(8679), 1, anon_sym_AMP, - STATE(6796), 1, + STATE(5969), 1, sym_ms_unaligned_ptr_modifier, - STATE(7564), 1, + STATE(7616), 1, sym_field_declarator, - STATE(10022), 1, + STATE(9923), 1, sym_ms_based_modifier, - ACTIONS(9021), 2, + ACTIONS(3698), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(6298), 2, + STATE(5778), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5817), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(6721), 2, + STATE(7742), 2, + sym_operator_name, + sym_semgrep_ellipsis, + ACTIONS(3696), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7399), 7, + 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [164879] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(4043), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8653), 1, + anon_sym_LPAREN2, + ACTIONS(8673), 1, + sym_identifier, + ACTIONS(8675), 1, + anon_sym_STAR, + ACTIONS(8677), 1, + anon_sym_AMP_AMP, + ACTIONS(8679), 1, + anon_sym_AMP, + STATE(5969), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7616), 1, + sym_field_declarator, + STATE(9923), 1, + sym_ms_based_modifier, + ACTIONS(3698), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4877), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(7715), 2, + STATE(5817), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(7742), 2, sym_operator_name, sym_semgrep_ellipsis, - ACTIONS(9019), 3, + ACTIONS(3696), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(7771), 7, + STATE(7399), 7, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -508210,7 +468467,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_field_declarator, sym_reference_field_declarator, sym_template_method, - ACTIONS(9017), 12, + ACTIONS(3694), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -508223,299 +468480,615 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [211681] = 27, + [164960] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(4043), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8653), 1, anon_sym_LPAREN2, - ACTIONS(7123), 1, + ACTIONS(8673), 1, sym_identifier, - ACTIONS(7423), 1, + ACTIONS(8675), 1, + anon_sym_STAR, + ACTIONS(8677), 1, + anon_sym_AMP_AMP, + ACTIONS(8679), 1, + anon_sym_AMP, + STATE(5969), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7589), 1, + sym_field_declarator, + STATE(9923), 1, + sym_ms_based_modifier, + ACTIONS(3698), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5778), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5784), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(7742), 2, + sym_operator_name, + sym_semgrep_ellipsis, + ACTIONS(3696), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7399), 7, + 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [165041] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7427), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8956), 1, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8681), 1, + anon_sym_COMMA, + ACTIONS(8687), 1, anon_sym_SLASH, - ACTIONS(8965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8967), 1, - anon_sym_AMP_AMP, - ACTIONS(8971), 1, - anon_sym_CARET, - ACTIONS(8979), 1, + ACTIONS(8693), 1, + anon_sym_PIPE, + ACTIONS(8697), 1, + anon_sym_AMP, + ACTIONS(8703), 1, anon_sym_GT_EQ, - ACTIONS(8983), 1, + ACTIONS(8707), 1, + anon_sym_SEMI, + ACTIONS(8709), 1, + anon_sym_QMARK, + ACTIONS(8711), 1, anon_sym_LT_EQ_GT, - ACTIONS(8985), 1, - anon_sym_or, - ACTIONS(8987), 1, - anon_sym_and, - ACTIONS(8989), 1, - anon_sym_xor, - ACTIONS(8991), 1, - anon_sym_not_eq, - STATE(3608), 1, + ACTIONS(8713), 1, + anon_sym_bitor, + ACTIONS(8715), 1, + anon_sym_bitand, + STATE(2617), 1, sym_argument_list, - STATE(3651), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7429), 2, + STATE(7827), 1, + aux_sym_field_declaration_repeat1, + STATE(9639), 1, + sym_attribute_specifier, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8954), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8958), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8963), 2, + ACTIONS(8683), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8969), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(8973), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8975), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8981), 2, + ACTIONS(8685), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8689), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8691), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8695), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8977), 3, + ACTIONS(8699), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8701), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7125), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_QMARK, - [211778] = 23, + [165144] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, + ACTIONS(8038), 1, + anon_sym_const, + ACTIONS(8719), 1, + anon_sym_LPAREN2, + ACTIONS(8721), 1, + anon_sym_STAR, + ACTIONS(8723), 1, + anon_sym_AMP_AMP, + ACTIONS(8725), 1, + anon_sym_AMP, + ACTIONS(8727), 1, + anon_sym_LBRACK, + ACTIONS(8729), 1, + sym_auto, + ACTIONS(8731), 1, anon_sym_decltype, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(5276), 1, + STATE(4006), 1, + sym_parameter_list, + STATE(5004), 1, + sym_decltype_auto, + STATE(6893), 1, + sym_function_declarator_seq, + STATE(7036), 1, + sym_abstract_declarator, + STATE(5308), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6892), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8030), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(8717), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [165221] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8038), 1, + anon_sym_const, + ACTIONS(8719), 1, anon_sym_LPAREN2, - ACTIONS(6256), 1, - sym_identifier, - ACTIONS(6260), 1, + ACTIONS(8721), 1, anon_sym_STAR, - ACTIONS(6262), 1, + ACTIONS(8723), 1, anon_sym_AMP_AMP, - ACTIONS(6264), 1, + ACTIONS(8725), 1, anon_sym_AMP, - ACTIONS(6266), 1, + ACTIONS(8727), 1, anon_sym_LBRACK, - STATE(4027), 1, + ACTIONS(8729), 1, + sym_auto, + ACTIONS(8731), 1, + anon_sym_decltype, + STATE(4006), 1, sym_parameter_list, - STATE(7241), 1, - sym_scope_resolution, - STATE(7450), 1, + STATE(5004), 1, + sym_decltype_auto, + STATE(6893), 1, sym_function_declarator_seq, - STATE(7566), 1, - sym_declarator, - STATE(7789), 1, + STATE(7042), 1, sym_abstract_declarator, - STATE(9737), 1, - sym_ms_based_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(8858), 4, + STATE(5314), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6892), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8030), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(8733), 11, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - STATE(7464), 5, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [165298] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(8549), 1, + sym_auto, + ACTIONS(8551), 1, + anon_sym_decltype, + ACTIONS(8719), 1, + anon_sym_LPAREN2, + ACTIONS(8727), 1, + anon_sym_LBRACK, + ACTIONS(8735), 1, + anon_sym_STAR, + ACTIONS(8737), 1, + anon_sym_AMP_AMP, + ACTIONS(8739), 1, + anon_sym_AMP, + STATE(3704), 1, + sym_decltype_auto, + STATE(4171), 1, + sym_parameter_list, + STATE(6893), 1, + sym_function_declarator_seq, + STATE(7069), 1, + sym_abstract_declarator, + STATE(5337), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6892), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - STATE(7634), 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, - [211867] = 5, + ACTIONS(7873), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(8717), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [165375] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(9025), 1, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(8549), 1, + sym_auto, + ACTIONS(8551), 1, + anon_sym_decltype, + ACTIONS(8719), 1, + anon_sym_LPAREN2, + ACTIONS(8727), 1, + anon_sym_LBRACK, + ACTIONS(8735), 1, + anon_sym_STAR, + ACTIONS(8737), 1, anon_sym_AMP_AMP, - ACTIONS(9029), 1, - anon_sym_and, - ACTIONS(6414), 16, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(8739), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, + STATE(3704), 1, + sym_decltype_auto, + STATE(4171), 1, + sym_parameter_list, + STATE(6893), 1, + sym_function_declarator_seq, + STATE(7080), 1, + sym_abstract_declarator, + STATE(5354), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6892), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7873), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(8733), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [165452] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(8649), 1, sym_identifier, - ACTIONS(6416), 23, + ACTIONS(8651), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(8653), 1, anon_sym_LPAREN2, + ACTIONS(8655), 1, 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [211920] = 29, + ACTIONS(8657), 1, + anon_sym_AMP_AMP, + ACTIONS(8659), 1, + anon_sym_AMP, + STATE(5969), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7213), 1, + sym_field_declarator, + STATE(9402), 1, + sym_ms_based_modifier, + ACTIONS(3698), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5778), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5781), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(7368), 2, + sym_operator_name, + sym_semgrep_ellipsis, + ACTIONS(3696), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7399), 7, + 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [165533] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(8649), 1, + sym_identifier, + ACTIONS(8651), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8653), 1, + anon_sym_LPAREN2, + ACTIONS(8655), 1, + anon_sym_STAR, + ACTIONS(8657), 1, + anon_sym_AMP_AMP, + ACTIONS(8659), 1, + anon_sym_AMP, + STATE(5969), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7213), 1, + sym_field_declarator, + STATE(9402), 1, + sym_ms_based_modifier, + ACTIONS(3698), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4892), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5781), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(7368), 2, + sym_operator_name, + sym_semgrep_ellipsis, + ACTIONS(3696), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7399), 7, + 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [165614] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7061), 1, - sym_identifier, - ACTIONS(7423), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7427), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8956), 1, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8681), 1, + anon_sym_COMMA, + ACTIONS(8687), 1, anon_sym_SLASH, - ACTIONS(8965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8967), 1, - anon_sym_AMP_AMP, - ACTIONS(8971), 1, - anon_sym_CARET, - ACTIONS(8979), 1, + ACTIONS(8693), 1, + anon_sym_PIPE, + ACTIONS(8697), 1, + anon_sym_AMP, + ACTIONS(8703), 1, anon_sym_GT_EQ, - ACTIONS(8983), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8985), 1, - anon_sym_or, - ACTIONS(8987), 1, - anon_sym_and, - ACTIONS(8989), 1, - anon_sym_xor, - ACTIONS(8991), 1, - anon_sym_not_eq, - ACTIONS(9001), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9003), 1, + ACTIONS(8709), 1, anon_sym_QMARK, - STATE(3608), 1, + ACTIONS(8711), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8713), 1, + anon_sym_bitor, + ACTIONS(8715), 1, + anon_sym_bitand, + ACTIONS(8741), 1, + anon_sym_SEMI, + STATE(2617), 1, sym_argument_list, - STATE(3651), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7429), 2, + STATE(7787), 1, + aux_sym_field_declaration_repeat1, + STATE(9367), 1, + sym_attribute_specifier, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8954), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8958), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8963), 2, + ACTIONS(8683), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8969), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(8973), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8975), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8981), 2, + ACTIONS(8685), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8689), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8691), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8695), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8977), 3, + ACTIONS(8699), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8701), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7065), 4, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [212021] = 17, + [165717] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7916), 1, + ACTIONS(8038), 1, anon_sym_const, - ACTIONS(8597), 1, - sym_auto, - ACTIONS(8599), 1, - anon_sym_decltype, - ACTIONS(8910), 1, + ACTIONS(8719), 1, anon_sym_LPAREN2, - ACTIONS(8918), 1, + ACTIONS(8727), 1, anon_sym_LBRACK, - ACTIONS(9085), 1, + ACTIONS(8729), 1, + sym_auto, + ACTIONS(8731), 1, + anon_sym_decltype, + ACTIONS(8743), 1, anon_sym_STAR, - ACTIONS(9087), 1, + ACTIONS(8745), 1, anon_sym_AMP_AMP, - ACTIONS(9089), 1, + ACTIONS(8747), 1, anon_sym_AMP, - STATE(4322), 1, + STATE(4192), 1, sym_parameter_list, - STATE(4763), 1, + STATE(5004), 1, sym_decltype_auto, - STATE(7280), 1, + STATE(6893), 1, sym_function_declarator_seq, - STATE(7435), 1, + STATE(7081), 1, sym_abstract_declarator, - STATE(5741), 2, + STATE(5212), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(7278), 5, + STATE(6892), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7907), 11, + ACTIONS(8030), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -508527,88 +469100,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(8908), 11, + ACTIONS(8717), 11, anon_sym_COMMA, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [212098] = 3, + [165794] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6345), 17, - aux_sym_preproc_elif_token1, - 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_identifier, - ACTIONS(6347), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(8038), 1, + anon_sym_const, + ACTIONS(8719), 1, anon_sym_LPAREN2, + ACTIONS(8727), 1, + anon_sym_LBRACK, + ACTIONS(8729), 1, + sym_auto, + ACTIONS(8731), 1, + anon_sym_decltype, + ACTIONS(8743), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8745), 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_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [212147] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3119), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3117), 39, + ACTIONS(8747), 1, + anon_sym_AMP, + STATE(4192), 1, + sym_parameter_list, + STATE(5004), 1, + sym_decltype_auto, + STATE(6893), 1, + sym_function_declarator_seq, + STATE(7087), 1, + sym_abstract_declarator, + STATE(5217), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6892), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8030), 11, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -508619,277 +469160,350 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - 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_alignas, - anon_sym_typename, - anon_sym_template, - [212196] = 9, + ACTIONS(8733), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [165871] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7423), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7427), 1, + ACTIONS(7043), 1, anon_sym_DOT, - STATE(3608), 1, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8681), 1, + anon_sym_COMMA, + ACTIONS(8687), 1, + anon_sym_SLASH, + ACTIONS(8693), 1, + anon_sym_PIPE, + ACTIONS(8697), 1, + anon_sym_AMP, + ACTIONS(8703), 1, + anon_sym_GT_EQ, + ACTIONS(8709), 1, + anon_sym_QMARK, + ACTIONS(8711), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8713), 1, + anon_sym_bitor, + ACTIONS(8715), 1, + anon_sym_bitand, + ACTIONS(8749), 1, + anon_sym_SEMI, + STATE(2617), 1, sym_argument_list, - STATE(3651), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7429), 2, + STATE(7811), 1, + aux_sym_field_declaration_repeat1, + STATE(9129), 1, + sym_attribute_specifier, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7057), 15, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8683), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(7059), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(8685), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8689), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8691), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8695), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8699), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8701), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [165974] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, + anon_sym_SLASH, + ACTIONS(8587), 1, + anon_sym_AMP, + ACTIONS(8593), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [212257] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7419), 17, - aux_sym_preproc_elif_token1, + ACTIONS(8581), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(7417), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8589), 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [212306] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7315), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_not_eq, + ACTIONS(8591), 3, 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_identifier, - ACTIONS(7313), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(7094), 5, + ts_builtin_sym_end, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + [166069] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6858), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(7238), 1, + anon_sym_LBRACK, + ACTIONS(7252), 1, + anon_sym_DOT, + ACTIONS(8557), 1, + sym_identifier, + ACTIONS(8613), 1, + anon_sym_SLASH, + ACTIONS(8615), 1, anon_sym_PIPE_PIPE, + ACTIONS(8617), 1, anon_sym_AMP_AMP, + ACTIONS(8621), 1, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(8629), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(8633), 1, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [212355] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7383), 17, - aux_sym_preproc_elif_token1, - 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(8635), 1, anon_sym_or, + ACTIONS(8637), 1, anon_sym_and, - anon_sym_bitor, + ACTIONS(8639), 1, anon_sym_xor, - anon_sym_bitand, + ACTIONS(8641), 1, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(7381), 24, + ACTIONS(8645), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, + ACTIONS(8647), 1, + anon_sym_QMARK, + STATE(3335), 1, + sym_argument_list, + STATE(3340), 1, + sym_subscript_argument_list, + ACTIONS(7254), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8609), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8611), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(8619), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8623), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8625), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(8631), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + ACTIONS(8643), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [212404] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7399), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8627), 3, 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_identifier, - ACTIONS(7397), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(8559), 4, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, + [166170] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(8585), 1, + anon_sym_SLASH, + ACTIONS(8587), 1, + anon_sym_AMP, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8589), 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_not_eq, + ACTIONS(8591), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7130), 7, + ts_builtin_sym_end, + 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_DOT_STAR, - anon_sym_DASH_GT, - [212453] = 3, + [166261] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3493), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3491), 39, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(8649), 1, + sym_identifier, + ACTIONS(8651), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8653), 1, + anon_sym_LPAREN2, + ACTIONS(8655), 1, + anon_sym_STAR, + ACTIONS(8657), 1, + anon_sym_AMP_AMP, + ACTIONS(8659), 1, + anon_sym_AMP, + STATE(5969), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7195), 1, + sym_field_declarator, + STATE(9402), 1, + sym_ms_based_modifier, + ACTIONS(3698), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5778), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5794), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(7368), 2, + sym_operator_name, + sym_semgrep_ellipsis, + ACTIONS(3696), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7399), 7, + 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, + ACTIONS(3694), 12, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -508901,115 +469515,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - 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_alignas, - anon_sym_typename, - anon_sym_template, - [212502] = 3, + [166342] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8681), 1, + anon_sym_COMMA, + ACTIONS(8687), 1, anon_sym_SLASH, + ACTIONS(8693), 1, anon_sym_PIPE, + ACTIONS(8697), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(8703), 1, + anon_sym_GT_EQ, + ACTIONS(8709), 1, + anon_sym_QMARK, + ACTIONS(8711), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8713), 1, + anon_sym_bitor, + ACTIONS(8715), 1, + anon_sym_bitand, + ACTIONS(8751), 1, + anon_sym_SEMI, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + STATE(7834), 1, + aux_sym_field_declaration_repeat1, + STATE(9146), 1, + sym_attribute_specifier, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8683), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8685), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8689), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(8691), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(8695), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, + ACTIONS(8705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8699), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, + ACTIONS(8701), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [166445] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, anon_sym_DOT, - sym_identifier, - ACTIONS(7297), 24, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, + ACTIONS(8585), 1, + anon_sym_SLASH, + ACTIONS(8587), 1, + anon_sym_AMP, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_not_eq, + ACTIONS(8591), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6689), 5, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + [166540] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6858), 1, + anon_sym_LPAREN2, + ACTIONS(7238), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(7252), 1, + anon_sym_DOT, + STATE(3335), 1, + sym_argument_list, + STATE(3340), 1, + sym_subscript_argument_list, + ACTIONS(7254), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [212551] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3513), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3511), 39, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_alignas, - anon_sym_typename, - anon_sym_template, - [212600] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7319), 17, - aux_sym_preproc_elif_token1, + ACTIONS(6995), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -509024,16 +469688,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(7317), 24, + ACTIONS(6997), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, + aux_sym_preproc_elif_token1, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -509044,17 +469705,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [212649] = 3, + [166601] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5507), 16, + ACTIONS(6858), 1, + anon_sym_LPAREN2, + ACTIONS(7238), 1, + anon_sym_LBRACK, + ACTIONS(7252), 1, + anon_sym_DOT, + STATE(3335), 1, + sym_argument_list, + STATE(3340), 1, + sym_subscript_argument_list, + ACTIONS(7254), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8643), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7005), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -509069,15 +469743,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(5509), 25, + ACTIONS(7007), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -509088,68 +469760,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [212698] = 6, + [166664] = 10, ACTIONS(3), 1, sym_comment, - STATE(3852), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5699), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(7889), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6016), 5, + ACTIONS(6858), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(6019), 29, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, + ACTIONS(7238), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - [212753] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5456), 16, + ACTIONS(7252), 1, + anon_sym_DOT, + STATE(3335), 1, + sym_argument_list, + STATE(3340), 1, + sym_subscript_argument_list, + ACTIONS(7254), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8643), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7011), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -509164,15 +469796,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(5458), 25, + ACTIONS(7013), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -509183,81 +469813,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [212802] = 19, + [166727] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(9005), 1, - sym_identifier, - ACTIONS(9007), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9009), 1, + ACTIONS(6858), 1, anon_sym_LPAREN2, - ACTIONS(9011), 1, - anon_sym_STAR, - ACTIONS(9013), 1, + ACTIONS(7128), 1, + sym_identifier, + ACTIONS(7238), 1, + anon_sym_LBRACK, + ACTIONS(7252), 1, + anon_sym_DOT, + ACTIONS(8613), 1, + anon_sym_SLASH, + ACTIONS(8615), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8617), 1, anon_sym_AMP_AMP, - ACTIONS(9015), 1, + ACTIONS(8621), 1, + anon_sym_CARET, + ACTIONS(8629), 1, + anon_sym_GT_EQ, + ACTIONS(8633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8635), 1, + anon_sym_or, + ACTIONS(8637), 1, + anon_sym_and, + ACTIONS(8639), 1, + anon_sym_xor, + ACTIONS(8641), 1, + anon_sym_not_eq, + STATE(3335), 1, + sym_argument_list, + STATE(3340), 1, + sym_subscript_argument_list, + ACTIONS(7254), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8609), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8611), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8619), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8623), 2, anon_sym_AMP, - STATE(6796), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7537), 1, - sym_field_declarator, - STATE(10022), 1, - sym_ms_based_modifier, - ACTIONS(9021), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(6295), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6721), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7715), 2, - sym_operator_name, - sym_semgrep_ellipsis, - ACTIONS(9019), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(7771), 7, - 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, - ACTIONS(9017), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [212883] = 3, + anon_sym_bitand, + ACTIONS(8625), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8631), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8643), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8627), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7130), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_QMARK, + [166824] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 16, + ACTIONS(6858), 1, + anon_sym_LPAREN2, + ACTIONS(7238), 1, + anon_sym_LBRACK, + ACTIONS(7252), 1, + anon_sym_DOT, + STATE(3335), 1, + sym_argument_list, + STATE(3340), 1, + sym_subscript_argument_list, + ACTIONS(7254), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7015), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -509272,15 +469916,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(5502), 25, + ACTIONS(7017), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -509291,20 +469933,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [212932] = 3, + [166885] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6360), 17, - aux_sym_preproc_elif_token1, + ACTIONS(6858), 1, + anon_sym_LPAREN2, + ACTIONS(7238), 1, + anon_sym_LBRACK, + ACTIONS(7252), 1, + anon_sym_DOT, + STATE(3335), 1, + sym_argument_list, + STATE(3340), 1, + sym_subscript_argument_list, + ACTIONS(7254), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8643), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7019), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -509319,16 +469971,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(6362), 24, + ACTIONS(7021), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, + aux_sym_preproc_elif_token1, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -509339,33 +469988,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [212981] = 10, + [166948] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, + ACTIONS(6858), 1, anon_sym_LPAREN2, - ACTIONS(7423), 1, + ACTIONS(7238), 1, anon_sym_LBRACK, - ACTIONS(7427), 1, + ACTIONS(7252), 1, anon_sym_DOT, - STATE(3608), 1, + STATE(3335), 1, sym_argument_list, - STATE(3651), 1, + STATE(3340), 1, sym_subscript_argument_list, - ACTIONS(7429), 2, + ACTIONS(7254), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8958), 2, + ACTIONS(8643), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7089), 15, + ACTIONS(7023), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -509381,7 +470025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, sym_identifier, - ACTIONS(7091), 17, + ACTIONS(7025), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -509399,11 +470043,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT_EQ_GT, - [213044] = 3, + [167011] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 17, - aux_sym_preproc_elif_token1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5218), 1, + anon_sym_LPAREN2, + ACTIONS(6533), 1, + sym_identifier, + ACTIONS(6537), 1, + anon_sym_STAR, + ACTIONS(6539), 1, + anon_sym_AMP_AMP, + ACTIONS(6541), 1, + anon_sym_AMP, + ACTIONS(6543), 1, + anon_sym_LBRACK, + STATE(3879), 1, + sym_parameter_list, + STATE(6740), 1, + sym_scope_resolution, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7350), 1, + sym_declarator, + STATE(7406), 1, + sym_abstract_declarator, + STATE(9168), 1, + sym_ms_based_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(8561), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(7305), 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, + [167100] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8318), 1, + anon_sym_LBRACK, + STATE(4935), 1, + sym_new_declarator, + ACTIONS(6454), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -509420,13 +470133,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7393), 24, + ACTIONS(6452), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -509438,51 +470150,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [213093] = 17, + [167153] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7916), 1, - anon_sym_const, - ACTIONS(8597), 1, - sym_auto, - ACTIONS(8599), 1, - anon_sym_decltype, - ACTIONS(8910), 1, - anon_sym_LPAREN2, - ACTIONS(8918), 1, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, anon_sym_LBRACK, - ACTIONS(9085), 1, - anon_sym_STAR, - ACTIONS(9087), 1, - anon_sym_AMP_AMP, - ACTIONS(9089), 1, - anon_sym_AMP, - STATE(4322), 1, - sym_parameter_list, - STATE(4763), 1, - sym_decltype_auto, - STATE(7280), 1, - sym_function_declarator_seq, - STATE(7443), 1, - sym_abstract_declarator, - STATE(5746), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(7278), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7907), 11, + ACTIONS(7517), 1, + anon_sym_LT, + STATE(4954), 1, + sym_template_argument_list, + ACTIONS(5378), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(5381), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + ACTIONS(5374), 31, + anon_sym_AMP, anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -509493,99 +470202,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(8932), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [213170] = 30, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_operator, + [167212] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(6858), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7238), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7252), 1, anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9045), 1, - anon_sym_COMMA, - ACTIONS(9051), 1, + ACTIONS(8613), 1, anon_sym_SLASH, - ACTIONS(9057), 1, - anon_sym_PIPE, - ACTIONS(9061), 1, - anon_sym_AMP, - ACTIONS(9067), 1, - anon_sym_GT_EQ, - ACTIONS(9073), 1, - anon_sym___attribute__, - ACTIONS(9075), 1, - anon_sym_QMARK, - ACTIONS(9077), 1, - anon_sym_LT_EQ_GT, - ACTIONS(9079), 1, - anon_sym_bitor, - ACTIONS(9081), 1, - anon_sym_bitand, - ACTIONS(9091), 1, - anon_sym_SEMI, - STATE(3181), 1, + STATE(3335), 1, sym_argument_list, - STATE(3186), 1, + STATE(3340), 1, sym_subscript_argument_list, - STATE(8152), 1, - aux_sym_field_declaration_repeat1, - STATE(10046), 1, - sym_attribute_specifier, - ACTIONS(7004), 2, + ACTIONS(7254), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9047), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9049), 2, + ACTIONS(8611), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9053), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9055), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9059), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(9069), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9063), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9065), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [213273] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6496), 17, - aux_sym_preproc_elif_token1, + ACTIONS(8643), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7019), 14, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, @@ -509597,18 +470246,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(6498), 24, + ACTIONS(7021), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + aux_sym_preproc_elif_token1, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -509617,21 +470261,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [213322] = 3, + [167279] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6500), 17, - aux_sym_preproc_elif_token1, + ACTIONS(6858), 1, + anon_sym_LPAREN2, + ACTIONS(7238), 1, + anon_sym_LBRACK, + ACTIONS(7252), 1, + anon_sym_DOT, + ACTIONS(8613), 1, + anon_sym_SLASH, + STATE(3335), 1, + sym_argument_list, + STATE(3340), 1, + sym_subscript_argument_list, + ACTIONS(7254), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8609), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(8611), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8643), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7019), 12, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, @@ -509643,18 +470302,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(6502), 24, + ACTIONS(7021), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + aux_sym_preproc_elif_token1, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -509663,94 +470317,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [213371] = 30, + [167348] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(6858), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7238), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7252), 1, anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9045), 1, - anon_sym_COMMA, - ACTIONS(9051), 1, + ACTIONS(8613), 1, anon_sym_SLASH, - ACTIONS(9057), 1, - anon_sym_PIPE, - ACTIONS(9061), 1, - anon_sym_AMP, - ACTIONS(9067), 1, - anon_sym_GT_EQ, - ACTIONS(9073), 1, - anon_sym___attribute__, - ACTIONS(9075), 1, - anon_sym_QMARK, - ACTIONS(9077), 1, - anon_sym_LT_EQ_GT, - ACTIONS(9079), 1, - anon_sym_bitor, - ACTIONS(9081), 1, - anon_sym_bitand, - ACTIONS(9093), 1, - anon_sym_SEMI, - STATE(3181), 1, + STATE(3335), 1, sym_argument_list, - STATE(3186), 1, + STATE(3340), 1, sym_subscript_argument_list, - STATE(8126), 1, - aux_sym_field_declaration_repeat1, - STATE(10394), 1, - sym_attribute_specifier, - ACTIONS(7004), 2, + ACTIONS(7254), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9047), 2, + ACTIONS(8609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9049), 2, + ACTIONS(8611), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9053), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9055), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9059), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(9069), 2, + ACTIONS(8631), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9063), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9065), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [213474] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7352), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(8643), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7019), 12, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, @@ -509762,542 +470361,774 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(7350), 24, + ACTIONS(7021), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + aux_sym_preproc_elif_token1, 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_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [213523] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(9005), 1, - sym_identifier, - ACTIONS(9007), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9009), 1, - anon_sym_LPAREN2, - ACTIONS(9011), 1, - anon_sym_STAR, - ACTIONS(9013), 1, - anon_sym_AMP_AMP, - ACTIONS(9015), 1, - anon_sym_AMP, - STATE(6796), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7564), 1, - sym_field_declarator, - STATE(10022), 1, - sym_ms_based_modifier, - ACTIONS(9021), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5416), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6298), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(7715), 2, - sym_operator_name, - sym_semgrep_ellipsis, - ACTIONS(9019), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(7771), 7, - 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, - ACTIONS(9017), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [213604] = 25, + [167419] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7423), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7427), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8956), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8967), 1, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8583), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7019), 7, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7021), 22, + ts_builtin_sym_end, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(8971), 1, anon_sym_CARET, - ACTIONS(8979), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(8983), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(8987), 1, + anon_sym_or, anon_sym_and, - ACTIONS(8989), 1, + anon_sym_bitor, anon_sym_xor, - ACTIONS(8991), 1, + anon_sym_bitand, anon_sym_not_eq, - STATE(3608), 1, + [167486] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(8585), 1, + anon_sym_SLASH, + ACTIONS(8587), 1, + anon_sym_AMP, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + STATE(2617), 1, sym_argument_list, - STATE(3651), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7053), 2, - anon_sym_or, - sym_identifier, - ACTIONS(7429), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8954), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8958), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8963), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8969), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(8973), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8975), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8981), 2, + ACTIONS(8583), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8595), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8977), 3, + ACTIONS(8663), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8589), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 7, + ACTIONS(7021), 9, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, - [213697] = 23, + anon_sym_or, + [167575] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7423), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7427), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8956), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8971), 1, - anon_sym_CARET, - ACTIONS(8979), 1, + ACTIONS(8587), 1, + anon_sym_AMP, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8983), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8989), 1, - anon_sym_xor, - ACTIONS(8991), 1, - anon_sym_not_eq, - STATE(3608), 1, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + STATE(2617), 1, sym_argument_list, - STATE(3651), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7429), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8954), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8958), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8963), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8969), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(8973), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8975), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8981), 2, + ACTIONS(8583), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8595), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7053), 3, - anon_sym_or, - anon_sym_and, - sym_identifier, - ACTIONS(8977), 3, + ACTIONS(8667), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8589), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 8, + ACTIONS(7021), 11, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, - [213786] = 22, + anon_sym_or, + anon_sym_and, + [167662] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7423), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7427), 1, + ACTIONS(7019), 1, + anon_sym_PIPE, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8956), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8971), 1, - anon_sym_CARET, - ACTIONS(8979), 1, + ACTIONS(8587), 1, + anon_sym_AMP, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8983), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8989), 1, - anon_sym_xor, - ACTIONS(8991), 1, - anon_sym_not_eq, - STATE(3608), 1, + ACTIONS(8599), 1, + anon_sym_bitand, + STATE(2617), 1, sym_argument_list, - STATE(3651), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7429), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8954), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8958), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8963), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8973), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8975), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8981), 2, + ACTIONS(8583), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8595), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8977), 3, + ACTIONS(8667), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8589), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7053), 5, - anon_sym_PIPE, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - sym_identifier, - ACTIONS(7051), 8, + ACTIONS(7021), 12, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, - [213873] = 20, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + [167747] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7423), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7427), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8956), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8979), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8983), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8991), 1, - anon_sym_not_eq, - STATE(3608), 1, + STATE(2617), 1, sym_argument_list, - STATE(3651), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7429), 2, + ACTIONS(7019), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8954), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8958), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8963), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8973), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8975), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8981), 2, + ACTIONS(8583), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8595), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8977), 3, + ACTIONS(8589), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7053), 6, - anon_sym_PIPE, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - sym_identifier, - ACTIONS(7051), 9, + ACTIONS(7021), 15, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, - [213956] = 19, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + [167826] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7423), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7427), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8956), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8979), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8983), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8991), 1, - anon_sym_not_eq, - STATE(3608), 1, + STATE(2617), 1, sym_argument_list, - STATE(3651), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7429), 2, + ACTIONS(7019), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8954), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8958), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8963), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8975), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8981), 2, + ACTIONS(8583), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8595), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8977), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7053), 8, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - sym_identifier, - ACTIONS(7051), 9, + ACTIONS(7021), 18, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, - [214037] = 17, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [167903] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7423), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7427), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8956), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8979), 1, - anon_sym_GT_EQ, - ACTIONS(8983), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - STATE(3608), 1, + STATE(2617), 1, sym_argument_list, - STATE(3651), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7429), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8954), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8958), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8963), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8981), 2, + ACTIONS(8583), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8595), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8977), 3, + ACTIONS(7019), 5, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7053), 9, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(7051), 11, + ACTIONS(7021), 19, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + 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_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, - [214114] = 15, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [167976] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7423), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7427), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8956), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8983), 1, - anon_sym_LT_EQ_GT, - STATE(3608), 1, + STATE(2617), 1, sym_argument_list, - STATE(3651), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7429), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8954), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8958), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8963), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8981), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7051), 12, + ACTIONS(8583), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7019), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7021), 22, + ts_builtin_sym_end, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + 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, - ACTIONS(7053), 12, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [168045] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8755), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(8753), 39, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + 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_alignas, + anon_sym_typename, + anon_sym_template, + [168094] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(7816), 1, + anon_sym_LT, + STATE(1833), 1, + sym_template_argument_list, + ACTIONS(5374), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_COLON, + ACTIONS(5381), 33, + 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___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [168148] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8312), 1, + anon_sym___attribute__, + STATE(5334), 1, + sym_attribute_specifier, + ACTIONS(6096), 10, + anon_sym_DOT_DOT_DOT, + 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(6094), 28, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_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, - sym_identifier, - [214187] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [168200] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7221), 17, - aux_sym_preproc_elif_token1, + ACTIONS(3694), 1, + anon_sym_const, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(8757), 1, + anon_sym_STAR, + ACTIONS(8759), 1, + anon_sym_AMP_AMP, + ACTIONS(8761), 1, + anon_sym_AMP, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(8767), 1, + sym_auto, + ACTIONS(8769), 1, + anon_sym_decltype, + STATE(3830), 1, + sym_parameter_list, + STATE(6204), 1, + sym_decltype_auto, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7190), 1, + sym_abstract_declarator, + STATE(5458), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8717), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + ACTIONS(8763), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [168276] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3694), 1, + anon_sym_const, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(8757), 1, + anon_sym_STAR, + ACTIONS(8759), 1, + anon_sym_AMP_AMP, + ACTIONS(8761), 1, + anon_sym_AMP, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(8767), 1, + sym_auto, + ACTIONS(8769), 1, + anon_sym_decltype, + STATE(3830), 1, + sym_parameter_list, + STATE(6204), 1, + sym_decltype_auto, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7211), 1, + sym_abstract_declarator, + STATE(5464), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8733), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + ACTIONS(8763), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [168352] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8312), 1, + anon_sym___attribute__, + STATE(5335), 1, + sym_attribute_specifier, + ACTIONS(6100), 10, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -510306,21 +471137,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_DOT, + ACTIONS(6098), 28, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_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_DOT, - sym_identifier, - ACTIONS(7219), 24, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [168404] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8312), 1, + anon_sym___attribute__, + STATE(5319), 1, + sym_attribute_specifier, + ACTIONS(6052), 10, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + 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(6050), 28, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -510332,64 +471197,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + 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_DOT_STAR, anon_sym_DASH_GT, - [214236] = 19, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [168456] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(9007), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9009), 1, + ACTIONS(8771), 1, + sym_auto, + ACTIONS(8773), 1, + anon_sym_decltype, + STATE(5004), 1, + sym_decltype_auto, + ACTIONS(6189), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(9037), 1, - sym_identifier, - ACTIONS(9039), 1, anon_sym_STAR, - ACTIONS(9041), 1, anon_sym_AMP_AMP, - ACTIONS(9043), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(6191), 28, anon_sym_AMP, - STATE(6796), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7978), 1, - sym_field_declarator, - STATE(10129), 1, - sym_ms_based_modifier, - ACTIONS(9021), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(6310), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6721), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(8114), 2, - sym_operator_name, - sym_semgrep_ellipsis, - ACTIONS(9019), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(7771), 7, - 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, - ACTIONS(9017), 12, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -510401,11 +471254,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [214317] = 3, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [168510] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6504), 17, - aux_sym_preproc_elif_token1, + ACTIONS(8312), 1, + anon_sym___attribute__, + STATE(5207), 1, + sym_attribute_specifier, + ACTIONS(6022), 10, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -510414,21 +471279,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_DOT, + ACTIONS(6020), 28, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_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_DOT, - sym_identifier, - ACTIONS(6506), 24, - anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [168562] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(7517), 1, + anon_sym_LT, + STATE(1833), 1, + sym_template_argument_list, + STATE(5585), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6090), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_COLON, + ACTIONS(8775), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6088), 28, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [168620] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(61), 1, + anon_sym___inline, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8547), 1, + anon_sym___declspec, + ACTIONS(8553), 1, + anon_sym_virtual, + ACTIONS(8555), 1, + anon_sym_alignas, + ACTIONS(7521), 2, + anon_sym_AMP, + anon_sym_LBRACK, + STATE(4929), 2, + sym_declaration_modifiers, + aux_sym_declaration_specifiers_repeat1, + ACTIONS(7523), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + STATE(4038), 7, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + ACTIONS(8545), 8, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(7873), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [168690] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8312), 1, + anon_sym___attribute__, + STATE(5326), 1, + sym_attribute_specifier, + ACTIONS(6062), 10, + anon_sym_DOT_DOT_DOT, + 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(6060), 28, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -510440,44 +471445,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + 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_DOT_STAR, anon_sym_DASH_GT, - [214366] = 14, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [168742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, - anon_sym_LPAREN2, - ACTIONS(7423), 1, - anon_sym_LBRACK, - ACTIONS(7427), 1, - anon_sym_DOT, - ACTIONS(8956), 1, - anon_sym_SLASH, - STATE(3608), 1, - sym_argument_list, - STATE(3651), 1, - sym_subscript_argument_list, - ACTIONS(7429), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8954), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8958), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8963), 2, + ACTIONS(7197), 17, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8981), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7053), 12, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, @@ -510489,29 +471480,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(7051), 13, + sym_literal_suffix, + ACTIONS(7199), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_QMARK, anon_sym_LT_EQ_GT, - [214437] = 5, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [168790] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(8625), 1, + ACTIONS(8146), 1, + anon_sym_const, + ACTIONS(8149), 1, + anon_sym___inline, + ACTIONS(8783), 1, anon_sym___attribute__, - STATE(5811), 1, + ACTIONS(8786), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8789), 1, + anon_sym___declspec, + ACTIONS(8792), 1, + anon_sym_virtual, + ACTIONS(8795), 1, + anon_sym_alignas, + ACTIONS(7558), 2, + anon_sym_AMP, + anon_sym_LBRACK, + STATE(4929), 2, + sym_declaration_modifiers, + aux_sym_declaration_specifiers_repeat1, + ACTIONS(7560), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + STATE(4038), 7, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + ACTIONS(8780), 8, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(8777), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [168860] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8312), 1, + anon_sym___attribute__, + STATE(5327), 1, sym_attribute_specifier, - ACTIONS(6462), 10, + ACTIONS(6070), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -510522,7 +471581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(6460), 28, + ACTIONS(6068), 28, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -510551,12 +471610,15 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DOT_DOT_DOT_GT, - [214489] = 4, + [168912] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5460), 16, + ACTIONS(8312), 1, + anon_sym___attribute__, + STATE(5330), 1, + sym_attribute_specifier, + ACTIONS(6074), 10, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -510565,20 +471627,8 @@ static const uint16_t ts_small_parse_table[] = { 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_identifier, - ACTIONS(5467), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(6072), 28, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -510590,66 +471640,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [214539] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6268), 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_identifier, - ACTIONS(6270), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_COLON, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [214587] = 5, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [168964] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9095), 1, + ACTIONS(5442), 1, + anon_sym_LBRACK, + ACTIONS(5435), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(5438), 5, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + ACTIONS(5433), 32, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [169016] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8798), 1, anon_sym_RPAREN, - STATE(3403), 1, + STATE(3121), 1, sym_fold_operator, - ACTIONS(7831), 13, + ACTIONS(7661), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -510663,7 +471725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(7532), 25, + ACTIONS(7322), 25, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -510689,14 +471751,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [214639] = 5, + [169068] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8625), 1, + ACTIONS(8312), 1, anon_sym___attribute__, - STATE(5816), 1, + STATE(5265), 1, sym_attribute_specifier, - ACTIONS(6494), 10, + ACTIONS(6026), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -510707,7 +471769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(6492), 28, + ACTIONS(6024), 28, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -510736,14 +471798,59 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DOT_DOT_DOT_GT, - [214691] = 5, + [169120] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6489), 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_identifier, + ACTIONS(6487), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [169168] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8625), 1, + ACTIONS(8312), 1, anon_sym___attribute__, - STATE(5783), 1, + STATE(5208), 1, sym_attribute_specifier, - ACTIONS(6428), 10, + ACTIONS(6104), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -510754,7 +471861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(6426), 28, + ACTIONS(6102), 28, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -510783,54 +471890,24 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DOT_DOT_DOT_GT, - [214743] = 17, + [169220] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, - anon_sym_LPAREN2, - ACTIONS(9097), 1, - anon_sym_STAR, - ACTIONS(9099), 1, - anon_sym_AMP_AMP, - ACTIONS(9101), 1, + ACTIONS(8038), 1, + anon_sym_const, + ACTIONS(8802), 2, anon_sym_AMP, - ACTIONS(9105), 1, anon_sym_LBRACK, - ACTIONS(9107), 1, - anon_sym_const, - ACTIONS(9109), 1, - sym_auto, - ACTIONS(9111), 1, - anon_sym_decltype, - STATE(4035), 1, - sym_parameter_list, - STATE(6672), 1, - sym_decltype_auto, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(7573), 1, - sym_abstract_declarator, - STATE(5887), 2, + STATE(5609), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5643), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(7464), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8932), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - ACTIONS(9103), 11, + STATE(6654), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8030), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -510842,14 +471919,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [214819] = 5, + ACTIONS(8800), 20, + 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_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + sym_semgrep_metavar, + [169278] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8625), 1, + ACTIONS(8312), 1, anon_sym___attribute__, - STATE(5810), 1, + STATE(5342), 1, sym_attribute_specifier, - ACTIONS(6458), 10, + ACTIONS(6032), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -510860,7 +471958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(6456), 28, + ACTIONS(6030), 28, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -510889,52 +471987,134 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DOT_DOT_DOT_GT, - [214871] = 14, + [169330] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(8312), 1, anon_sym___attribute__, - ACTIONS(7916), 1, + STATE(5356), 1, + sym_attribute_specifier, + ACTIONS(6036), 10, + anon_sym_DOT_DOT_DOT, + 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(6034), 28, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_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_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [169382] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, anon_sym_const, - ACTIONS(8098), 1, + ACTIONS(8802), 2, + anon_sym_AMP, + anon_sym_LBRACK, + STATE(5618), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5619), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6679), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7873), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(8800), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - ACTIONS(8842), 1, - anon_sym___declspec, - ACTIONS(8844), 1, - anon_sym___inline, - ACTIONS(8846), 1, - anon_sym_virtual, - ACTIONS(8848), 1, - anon_sym_alignas, - ACTIONS(7960), 2, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + 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, + [169440] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(7816), 1, + anon_sym_LT, + STATE(1833), 1, + sym_template_argument_list, + STATE(3945), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4763), 3, anon_sym_AMP, anon_sym_LBRACK, - STATE(5463), 2, - sym_declaration_modifiers, - aux_sym_declaration_specifiers_repeat1, - ACTIONS(7962), 3, + anon_sym_const, + ACTIONS(7519), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4771), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - STATE(6411), 7, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - ACTIONS(8840), 8, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(7907), 11, + anon_sym_SEMI, anon_sym___extension__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -510945,12 +472125,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [214941] = 4, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [169498] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, + ACTIONS(4784), 1, anon_sym_COLON_COLON, - ACTIONS(6197), 16, + ACTIONS(7816), 1, + anon_sym_LT, + STATE(1833), 1, + sym_template_argument_list, + ACTIONS(5938), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_COLON, + ACTIONS(4789), 33, + 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___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [169552] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, + anon_sym_SLASH, + ACTIONS(8587), 1, + anon_sym_AMP, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8804), 1, + anon_sym_COMMA, + ACTIONS(8806), 1, + anon_sym_SEMI, + ACTIONS(8808), 1, + anon_sym_RBRACE, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + STATE(8476), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8583), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8589), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8591), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [169652] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6028), 1, + sym_literal_suffix, + ACTIONS(4773), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -510967,7 +472275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4853), 23, + ACTIONS(4765), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -510991,14 +472299,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [214991] = 5, + [169702] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8625), 1, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(7816), 1, + anon_sym_LT, + STATE(1833), 1, + sym_template_argument_list, + STATE(5585), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4763), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_COLON, + ACTIONS(8775), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4771), 28, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, - STATE(5806), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [169760] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8312), 1, + anon_sym___attribute__, + STATE(5309), 1, sym_attribute_specifier, - ACTIONS(6454), 10, + ACTIONS(6086), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -511009,7 +472367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(6452), 28, + ACTIONS(6084), 28, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -511038,19 +472396,20 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DOT_DOT_DOT_GT, - [215043] = 4, + [169812] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4853), 1, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(4789), 1, anon_sym_SEMI, - ACTIONS(4835), 6, + ACTIONS(4771), 5, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4827), 33, + ACTIONS(4763), 33, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -511084,83 +472443,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [215093] = 5, + [169864] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8625), 1, - anon_sym___attribute__, - STATE(5809), 1, - sym_attribute_specifier, - ACTIONS(6322), 10, - anon_sym_DOT_DOT_DOT, - 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(6320), 28, + ACTIONS(4789), 1, + anon_sym_SEMI, + ACTIONS(4771), 6, 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_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4763), 33, + anon_sym_AMP, + anon_sym___extension__, + 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_or, - anon_sym_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, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [215145] = 6, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [169914] = 14, ACTIONS(3), 1, sym_comment, - STATE(5468), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5699), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(9113), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6016), 12, - anon_sym_DOT_DOT_DOT, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(61), 1, + anon_sym___inline, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8547), 1, + anon_sym___declspec, + ACTIONS(8553), 1, + anon_sym_virtual, + ACTIONS(8555), 1, + anon_sym_alignas, + ACTIONS(7435), 2, + anon_sym_AMP, + anon_sym_LBRACK, + STATE(4929), 2, + sym_declaration_modifiers, + aux_sym_declaration_specifiers_repeat1, + ACTIONS(7437), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + STATE(4038), 7, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + ACTIONS(8545), 8, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(7873), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [169984] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6340), 9, 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_COLON, - anon_sym_GT2, - ACTIONS(6019), 21, + ACTIONS(6342), 30, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -511172,41 +472579,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - sym_semgrep_metavar, - [215199] = 4, + [170031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5953), 1, - sym_literal_suffix, - ACTIONS(4837), 16, + ACTIONS(5607), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_GT_GT, anon_sym_DOT, - sym_identifier, - ACTIONS(4829), 23, + ACTIONS(5609), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -511215,35 +472615,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_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_DOT_STAR, anon_sym_DASH_GT, - [215249] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [170078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8625), 1, - anon_sym___attribute__, - STATE(5818), 1, - sym_attribute_specifier, - ACTIONS(6366), 10, - anon_sym_DOT_DOT_DOT, + ACTIONS(5637), 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(6364), 28, + ACTIONS(5639), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -511252,10 +472659,7 @@ 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_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -511269,28 +472673,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [215301] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [170125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8625), 1, - anon_sym___attribute__, - STATE(5754), 1, - sym_attribute_specifier, - ACTIONS(6392), 10, - anon_sym_DOT_DOT_DOT, + ACTIONS(5611), 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(6390), 28, + ACTIONS(5613), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -511299,10 +472703,7 @@ 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_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -511316,18 +472717,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [170172] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5440), 1, + anon_sym_LBRACK, + ACTIONS(5435), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(5438), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + ACTIONS(5433), 31, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [215353] = 5, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_operator, + [170223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8625), 1, - anon_sym___attribute__, - STATE(5768), 1, - sym_attribute_specifier, - ACTIONS(6424), 10, - anon_sym_DOT_DOT_DOT, + ACTIONS(5603), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -511336,8 +472779,20 @@ static const uint16_t ts_small_parse_table[] = { 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(6422), 28, + sym_identifier, + ACTIONS(5605), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -511349,86 +472804,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - 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_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [215405] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5550), 1, - anon_sym_LPAREN2, - ACTIONS(9097), 1, - anon_sym_STAR, - ACTIONS(9099), 1, - anon_sym_AMP_AMP, - ACTIONS(9101), 1, - anon_sym_AMP, - ACTIONS(9105), 1, - anon_sym_LBRACK, - ACTIONS(9107), 1, - anon_sym_const, - ACTIONS(9109), 1, - sym_auto, - ACTIONS(9111), 1, - anon_sym_decltype, - STATE(4035), 1, - sym_parameter_list, - STATE(6672), 1, - sym_decltype_auto, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(7535), 1, - sym_abstract_declarator, - STATE(6086), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(7464), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8908), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - ACTIONS(9103), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [215481] = 3, + [170270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7135), 16, + ACTIONS(5633), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -511445,7 +472831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7133), 24, + ACTIONS(5635), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -511462,7 +472848,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -511470,10 +472855,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [215529] = 3, + [170317] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5518), 16, + ACTIONS(8810), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8812), 1, + anon_sym_AMP_AMP, + ACTIONS(8814), 1, + anon_sym_or, + ACTIONS(8816), 1, + anon_sym_and, + ACTIONS(6677), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -511482,15 +472875,13 @@ static const uint16_t ts_small_parse_table[] = { 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_identifier, - ACTIONS(5525), 24, + ACTIONS(6679), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -511499,15 +472890,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_STAR, 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_COLON, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -511515,25 +472903,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [215577] = 5, + [170372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8625), 1, - anon_sym___attribute__, - STATE(5725), 1, - sym_attribute_specifier, - ACTIONS(6388), 10, - anon_sym_DOT_DOT_DOT, + ACTIONS(5641), 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(6386), 28, + ACTIONS(5643), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -511542,10 +472929,7 @@ 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_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -511559,187 +472943,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [215629] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(7916), 1, - anon_sym_const, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8842), 1, - anon_sym___declspec, - ACTIONS(8844), 1, - anon_sym___inline, - ACTIONS(8846), 1, - anon_sym_virtual, - ACTIONS(8848), 1, - anon_sym_alignas, - ACTIONS(7989), 2, - anon_sym_AMP, - anon_sym_LBRACK, - STATE(5463), 2, - sym_declaration_modifiers, - aux_sym_declaration_specifiers_repeat1, - ACTIONS(7991), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - STATE(6411), 7, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - ACTIONS(8840), 8, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(7907), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [215699] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [170419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(4853), 1, - anon_sym_SEMI, - ACTIONS(4835), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(4827), 33, + ACTIONS(5625), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___extension__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + 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_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [215751] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9122), 1, - anon_sym___attribute__, - ACTIONS(9125), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9128), 1, - anon_sym___declspec, - ACTIONS(9131), 1, - anon_sym___inline, - ACTIONS(9134), 1, - anon_sym_const, - ACTIONS(9137), 1, - anon_sym_virtual, - ACTIONS(9140), 1, - anon_sym_alignas, - ACTIONS(8005), 2, - anon_sym_AMP, - anon_sym_LBRACK, - STATE(5463), 2, - sym_declaration_modifiers, - aux_sym_declaration_specifiers_repeat1, - ACTIONS(8007), 3, + ACTIONS(5627), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - STATE(6411), 7, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - ACTIONS(9119), 8, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(9116), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [215821] = 5, + 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [170466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8625), 1, - anon_sym___attribute__, - STATE(5799), 1, - sym_attribute_specifier, - ACTIONS(6432), 10, - anon_sym_DOT_DOT_DOT, + ACTIONS(5595), 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(6430), 28, + ACTIONS(5597), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -511748,10 +473017,7 @@ 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_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -511765,131 +473031,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [215873] = 29, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [170513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(5629), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8886), 1, anon_sym_PIPE, - ACTIONS(8890), 1, anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8906), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(9143), 1, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(5631), 23, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(9145), 1, - anon_sym_SEMI, - ACTIONS(9147), 1, - anon_sym_RBRACE, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - STATE(8994), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8878), 2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [215973] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5529), 1, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, - ACTIONS(5522), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(5525), 5, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - ACTIONS(5518), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [216025] = 3, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [170560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7305), 17, + ACTIONS(6619), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -511906,8 +473099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(7307), 23, + ACTIONS(6617), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -511931,73 +473123,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [216073] = 5, + [170607] = 6, ACTIONS(3), 1, sym_comment, - STATE(5468), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9113), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5697), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(4238), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT2, - ACTIONS(5699), 23, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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, - sym_semgrep_metavar, - [216125] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8625), 1, - anon_sym___attribute__, - STATE(5713), 1, - sym_attribute_specifier, - ACTIONS(6436), 10, - anon_sym_DOT_DOT_DOT, + ACTIONS(8521), 1, + anon_sym_LPAREN2, + STATE(5632), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6397), 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(6434), 28, - anon_sym_LPAREN2, + ACTIONS(6395), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -512005,10 +473155,7 @@ 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_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -512022,154 +473169,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [216177] = 28, + anon_sym_GT2, + [170660] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8818), 1, + anon_sym_COMMA, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8844), 1, + anon_sym_RBRACK, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8852), 1, anon_sym_bitand, - ACTIONS(9145), 1, - anon_sym_SEMI, - ACTIONS(9149), 1, - anon_sym_COMMA, - ACTIONS(9152), 1, - anon_sym_RBRACE, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + STATE(8454), 1, + aux_sym_lambda_capture_specifier_repeat1, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [216274] = 28, + [170757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7993), 1, - anon_sym_COMMA, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(5621), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8886), 1, anon_sym_PIPE, - ACTIONS(8890), 1, anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8906), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(9154), 1, - anon_sym_RPAREN, - ACTIONS(9156), 1, - anon_sym_SEMI, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8878), 2, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(5623), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [216371] = 4, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [170804] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(4827), 10, - anon_sym_DOT_DOT_DOT, + ACTIONS(5591), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -512178,8 +473295,20 @@ static const uint16_t ts_small_parse_table[] = { 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(4835), 28, + sym_identifier, + ACTIONS(5593), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -512191,79 +473320,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - 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_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [216420] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(4835), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(4827), 33, - anon_sym_AMP, - anon_sym___extension__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [216469] = 6, + [170851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8928), 1, - sym_auto, - ACTIONS(8930), 1, - anon_sym_decltype, - STATE(5856), 1, - sym_decltype_auto, - ACTIONS(6404), 10, - anon_sym_DOT_DOT_DOT, + ACTIONS(5599), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -512272,8 +473339,20 @@ static const uint16_t ts_small_parse_table[] = { 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(6402), 26, + sym_identifier, + ACTIONS(5601), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -512285,26 +473364,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - 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_DOT_STAR, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [216522] = 3, + [170898] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6543), 10, - anon_sym_DOT_DOT_DOT, + ACTIONS(5617), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -512313,8 +473383,20 @@ static const uint16_t ts_small_parse_table[] = { 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(6541), 29, + sym_identifier, + ACTIONS(5619), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -512326,39 +473408,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - 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_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [216569] = 3, + [170945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6551), 10, - anon_sym_DOT_DOT_DOT, + ACTIONS(5579), 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(6549), 29, + ACTIONS(5581), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -512367,11 +473441,7 @@ 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___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -512385,14 +473455,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [216616] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [170992] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 10, - anon_sym_DOT_DOT_DOT, + ACTIONS(5607), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -512401,8 +473471,20 @@ static const uint16_t ts_small_parse_table[] = { 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(6582), 29, + sym_identifier, + ACTIONS(5609), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -512414,29 +473496,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - 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_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [216663] = 3, + [171039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5957), 10, - anon_sym_DOT_DOT_DOT, + ACTIONS(5637), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -512445,8 +473515,20 @@ static const uint16_t ts_small_parse_table[] = { 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(5959), 29, + sym_identifier, + ACTIONS(5639), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -512458,29 +473540,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - 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_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [216710] = 3, + [171086] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6698), 10, - anon_sym_DOT_DOT_DOT, + ACTIONS(5611), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -512489,8 +473559,20 @@ static const uint16_t ts_small_parse_table[] = { 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(6696), 29, + sym_identifier, + ACTIONS(5613), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -512502,29 +473584,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - 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_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [216757] = 3, + [171133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 10, - anon_sym_DOT_DOT_DOT, + ACTIONS(5641), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -512533,8 +473603,20 @@ static const uint16_t ts_small_parse_table[] = { 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(6464), 29, + sym_identifier, + ACTIONS(5643), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -512546,40 +473628,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [171180] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5595), 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_identifier, + ACTIONS(5597), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [216804] = 3, + [171227] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6680), 10, - anon_sym_DOT_DOT_DOT, + ACTIONS(4238), 1, + anon_sym_LBRACE, + ACTIONS(8521), 1, + anon_sym_LPAREN2, + STATE(5633), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6373), 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(6678), 29, - anon_sym_LPAREN2, + ACTIONS(6371), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -512587,11 +473711,7 @@ 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___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -512605,13 +473725,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [216851] = 3, + anon_sym_GT2, + [171280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2183), 16, + ACTIONS(5579), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -512628,7 +473746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(2185), 23, + ACTIONS(5581), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -512652,170 +473770,300 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [216898] = 28, + [171327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7801), 1, - anon_sym_DOT, - ACTIONS(9158), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(9166), 1, + ACTIONS(5621), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(9172), 1, anon_sym_PIPE, - ACTIONS(9176), 1, anon_sym_AMP, - ACTIONS(9182), 1, - anon_sym_LT_LT, - ACTIONS(9184), 1, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_GT_GT, - ACTIONS(9186), 1, + anon_sym_DOT, + ACTIONS(5623), 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_QMARK, - ACTIONS(9188), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(9192), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(9196), 1, - anon_sym_GT2, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - STATE(8643), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [171374] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5591), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 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(5593), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9170), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9174), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(9180), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [216995] = 28, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [171421] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(8097), 6, anon_sym_LPAREN2, - ACTIONS(7000), 1, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(8099), 33, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [171468] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8856), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(8854), 33, + anon_sym_AMP, + anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [171515] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8812), 1, + anon_sym_AMP_AMP, + ACTIONS(8816), 1, + anon_sym_and, + ACTIONS(6753), 15, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8886), 1, anon_sym_PIPE, - ACTIONS(8890), 1, anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, anon_sym_bitor, - ACTIONS(8906), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(9198), 1, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6755), 22, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(9201), 1, - anon_sym_SEMI, - ACTIONS(9203), 1, - anon_sym_RBRACE, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8878), 2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [217092] = 5, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [171566] = 6, ACTIONS(3), 1, sym_comment, - STATE(5485), 1, + STATE(4983), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(9205), 4, + ACTIONS(5653), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(8858), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5697), 12, - anon_sym_DOT_DOT_DOT, + ACTIONS(5975), 9, 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_COLON, + ACTIONS(5978), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [171619] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4983), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8858), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5651), 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, - anon_sym_GT2, - ACTIONS(5699), 22, + ACTIONS(5653), 25, anon_sym_AMP, anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -512828,6 +474076,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constinit, anon_sym_consteval, sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, @@ -512835,11 +474085,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - sym_semgrep_metavar, - [217143] = 3, + [171670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6197), 16, + ACTIONS(2191), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -512856,7 +474105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4853), 23, + ACTIONS(2193), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -512880,32 +474129,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [217190] = 3, + [171717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5460), 16, + ACTIONS(2359), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_GT_GT, anon_sym_DOT, - sym_identifier, - ACTIONS(5467), 23, + ACTIONS(2357), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -512914,155 +474155,116 @@ 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_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_DOT_STAR, anon_sym_DASH_GT, - [217237] = 26, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [171764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(6240), 10, anon_sym_DOT_DOT_DOT, - ACTIONS(9051), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(9057), 1, anon_sym_PIPE, - ACTIONS(9061), 1, anon_sym_AMP, - ACTIONS(9067), 1, - anon_sym_GT_EQ, - ACTIONS(9075), 1, - anon_sym_QMARK, - ACTIONS(9077), 1, - anon_sym_LT_EQ_GT, - ACTIONS(9079), 1, - anon_sym_bitor, - ACTIONS(9081), 1, - anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9047), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9049), 2, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(6238), 29, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9053), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9055), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9059), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(9069), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9063), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9065), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9208), 3, - anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute__, - [217330] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, - anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, - anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, anon_sym_QMARK, - ACTIONS(8902), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8906), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(9212), 1, - anon_sym_RPAREN, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [171811] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2355), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + 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_identifier, + ACTIONS(2353), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9210), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(8892), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [217425] = 3, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [171858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3078), 16, + ACTIONS(2359), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -513079,7 +474281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(3080), 23, + ACTIONS(2357), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -513093,32 +474295,134 @@ 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_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [217472] = 6, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [171905] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, + anon_sym_SLASH, + ACTIONS(8587), 1, + anon_sym_AMP, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8861), 1, + anon_sym_COMMA, + ACTIONS(8863), 1, + anon_sym_RPAREN, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + STATE(8283), 1, + aux_sym_argument_list_repeat1, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8583), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8589), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8591), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [172002] = 3, ACTIONS(3), 1, sym_comment, - STATE(5494), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5699), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(9214), 4, + ACTIONS(6197), 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(6199), 30, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6016), 11, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [172049] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4771), 9, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -513127,11 +474431,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_GT2, - ACTIONS(6019), 21, + ACTIONS(4763), 30, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_const, anon_sym_constexpr, @@ -513144,16 +474452,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [217525] = 3, + [172096] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3096), 16, + ACTIONS(6248), 10, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -513162,20 +474475,8 @@ static const uint16_t ts_small_parse_table[] = { 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_identifier, - ACTIONS(3094), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(6246), 29, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -513187,30 +474488,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + 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_DOT_STAR, anon_sym_DASH_GT, - [217572] = 7, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [172143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9031), 1, - sym_identifier, - ACTIONS(9035), 1, - sym_primitive_type, - STATE(5491), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9217), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6022), 11, + ACTIONS(6214), 9, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -513219,55 +474519,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_GT2, - ACTIONS(6026), 21, + ACTIONS(6216), 30, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [217627] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(5494), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9214), 4, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5697), 11, - 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_COLON, - anon_sym_GT2, - ACTIONS(5699), 23, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, anon_sym_LBRACK, anon_sym_const, anon_sym_constexpr, @@ -513281,6 +474541,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constinit, anon_sym_consteval, sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, @@ -513288,20 +474550,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [217678] = 6, + [172190] = 3, ACTIONS(3), 1, sym_comment, - STATE(5498), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5699), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(9219), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6016), 9, + ACTIONS(6218), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -513311,10 +474563,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - ACTIONS(6019), 23, + ACTIONS(6220), 30, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_const, anon_sym_constexpr, @@ -513327,98 +474584,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + sym_primitive_type, anon_sym_asm, anon_sym___asm__, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [217731] = 28, + [172237] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8687), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8693), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8697), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8703), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8711), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8713), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8715), 1, anon_sym_bitand, - ACTIONS(9222), 1, - anon_sym_COMMA, - ACTIONS(9224), 1, - anon_sym_RPAREN, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8596), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8683), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8685), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8689), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8691), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8695), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8699), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8701), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [217828] = 7, + ACTIONS(7130), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + [172326] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9031), 1, - sym_identifier, - ACTIONS(9035), 1, - sym_primitive_type, - STATE(5495), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9226), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6022), 9, + ACTIONS(6222), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -513428,10 +474672,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - ACTIONS(6026), 23, + ACTIONS(6224), 30, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_const, anon_sym_constexpr, @@ -513444,25 +474693,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + sym_primitive_type, anon_sym_asm, anon_sym___asm__, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [217883] = 5, + [172373] = 3, ACTIONS(3), 1, sym_comment, - STATE(5498), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9219), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5697), 9, + ACTIONS(6226), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -513472,10 +474716,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - ACTIONS(5699), 25, + ACTIONS(6228), 30, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_const, anon_sym_constexpr, @@ -513498,989 +474747,601 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [217934] = 26, + [172420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(6078), 10, anon_sym_DOT_DOT_DOT, - ACTIONS(9051), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(9057), 1, anon_sym_PIPE, - ACTIONS(9061), 1, anon_sym_AMP, - ACTIONS(9067), 1, - anon_sym_GT_EQ, - ACTIONS(9075), 1, - anon_sym_QMARK, - ACTIONS(9077), 1, - anon_sym_LT_EQ_GT, - ACTIONS(9079), 1, - anon_sym_bitor, - ACTIONS(9081), 1, - anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9047), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9049), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9053), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9055), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9059), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(9069), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9063), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9065), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9228), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [218027] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, anon_sym_DOT, - ACTIONS(9051), 1, - anon_sym_SLASH, - ACTIONS(9057), 1, - anon_sym_PIPE, - ACTIONS(9061), 1, - anon_sym_AMP, - ACTIONS(9067), 1, - anon_sym_GT_EQ, - ACTIONS(9077), 1, - anon_sym_LT_EQ_GT, - ACTIONS(9079), 1, - anon_sym_bitor, - ACTIONS(9081), 1, - anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9047), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9049), 2, + ACTIONS(6076), 29, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9053), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9055), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9059), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(9069), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9063), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9065), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7008), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - [218116] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(9051), 1, - anon_sym_SLASH, - ACTIONS(9057), 1, - anon_sym_PIPE, - ACTIONS(9061), 1, - anon_sym_AMP, - ACTIONS(9067), 1, anon_sym_GT_EQ, - ACTIONS(9077), 1, - anon_sym_LT_EQ_GT, - ACTIONS(9079), 1, - anon_sym_bitor, - ACTIONS(9081), 1, - anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9047), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9049), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9053), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9055), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9059), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(9069), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9063), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9065), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7125), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - [218205] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9051), 1, - anon_sym_SLASH, - ACTIONS(9057), 1, - anon_sym_PIPE, - ACTIONS(9061), 1, - anon_sym_AMP, - ACTIONS(9067), 1, - anon_sym_GT_EQ, - ACTIONS(9075), 1, anon_sym_QMARK, - ACTIONS(9077), 1, anon_sym_LT_EQ_GT, - ACTIONS(9079), 1, - anon_sym_bitor, - ACTIONS(9081), 1, - anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9047), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9049), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9053), 2, - anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9055), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9059), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(9069), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7065), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - ACTIONS(9063), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(9065), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [218298] = 28, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [172467] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9230), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8861), 1, anon_sym_COMMA, - ACTIONS(9232), 1, + ACTIONS(8865), 1, anon_sym_RPAREN, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8885), 1, + STATE(8274), 1, aux_sym_argument_list_repeat1, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [218395] = 28, + [172564] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9234), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8867), 1, anon_sym_COMMA, - ACTIONS(9236), 1, + ACTIONS(8869), 1, anon_sym_RBRACE, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8971), 1, + STATE(8281), 1, aux_sym_initializer_list_repeat1, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [218492] = 12, + [172661] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9051), 1, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, anon_sym_SLASH, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9049), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7053), 7, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, + ACTIONS(8587), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7051), 20, - 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, + ACTIONS(8593), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, + ACTIONS(8599), 1, anon_sym_bitand, - anon_sym_not_eq, - [218557] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(9051), 1, - anon_sym_SLASH, - ACTIONS(9057), 1, + ACTIONS(8665), 1, anon_sym_PIPE, - ACTIONS(9061), 1, - anon_sym_AMP, - ACTIONS(9067), 1, - anon_sym_GT_EQ, - ACTIONS(9077), 1, - anon_sym_LT_EQ_GT, - ACTIONS(9079), 1, + ACTIONS(8669), 1, anon_sym_bitor, - ACTIONS(9081), 1, - anon_sym_bitand, - STATE(3181), 1, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8808), 1, + anon_sym_RBRACE, + ACTIONS(8871), 1, + anon_sym_COMMA, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + STATE(8476), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9047), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9049), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9055), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9059), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(9069), 2, + ACTIONS(8595), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9063), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9065), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7051), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, anon_sym_or, - [218644] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(9051), 1, - anon_sym_SLASH, - ACTIONS(9057), 1, - anon_sym_PIPE, - ACTIONS(9061), 1, - anon_sym_AMP, - ACTIONS(9067), 1, - anon_sym_GT_EQ, - ACTIONS(9077), 1, - anon_sym_LT_EQ_GT, - ACTIONS(9079), 1, - anon_sym_bitor, - ACTIONS(9081), 1, - anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9047), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9049), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9059), 2, + ACTIONS(8663), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9069), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9063), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9065), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 9, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - [218729] = 28, + [172758] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(7617), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7631), 1, anon_sym_DOT, - ACTIONS(9158), 1, + ACTIONS(8873), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(9166), 1, + ACTIONS(8881), 1, anon_sym_SLASH, - ACTIONS(9172), 1, + ACTIONS(8887), 1, anon_sym_PIPE, - ACTIONS(9176), 1, + ACTIONS(8891), 1, anon_sym_AMP, - ACTIONS(9182), 1, + ACTIONS(8897), 1, anon_sym_LT_LT, - ACTIONS(9184), 1, + ACTIONS(8899), 1, anon_sym_GT_GT, - ACTIONS(9186), 1, + ACTIONS(8901), 1, anon_sym_QMARK, - ACTIONS(9188), 1, + ACTIONS(8903), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, + ACTIONS(8905), 1, anon_sym_bitor, - ACTIONS(9192), 1, + ACTIONS(8907), 1, anon_sym_bitand, - ACTIONS(9238), 1, + ACTIONS(8911), 1, anon_sym_GT2, - STATE(4226), 1, + STATE(4059), 1, sym_argument_list, - STATE(4227), 1, + STATE(4060), 1, sym_subscript_argument_list, - STATE(9083), 1, + STATE(8311), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + ACTIONS(8877), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + ACTIONS(8879), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, + ACTIONS(8883), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9170), 2, + ACTIONS(8885), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9174), 2, + ACTIONS(8889), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9194), 2, + ACTIONS(8909), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, + ACTIONS(8893), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9180), 4, + ACTIONS(8895), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [218826] = 21, + [172855] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(7053), 1, - anon_sym_PIPE, - ACTIONS(9051), 1, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(9061), 1, + ACTIONS(8830), 1, + anon_sym_PIPE, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(9067), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(9077), 1, + ACTIONS(8846), 1, + anon_sym_QMARK, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(9081), 1, + ACTIONS(8850), 1, + anon_sym_bitor, + ACTIONS(8852), 1, anon_sym_bitand, - STATE(3181), 1, + ACTIONS(8913), 1, + anon_sym_COMMA, + ACTIONS(8915), 1, + anon_sym_RBRACK, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + STATE(8393), 1, + aux_sym_subscript_argument_list_repeat1, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9047), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9049), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9059), 2, + ACTIONS(8826), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8828), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9069), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9063), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9065), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 10, - anon_sym_DOT_DOT_DOT, + [172952] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6193), 9, anon_sym_COMMA, - anon_sym_PIPE_PIPE, + 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(6195), 30, + anon_sym_AMP, + anon_sym___extension__, anon_sym___attribute__, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - [218909] = 20, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [172999] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(7053), 1, - anon_sym_PIPE, - ACTIONS(9051), 1, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(9061), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(9067), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(9077), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(9081), 1, + ACTIONS(8599), 1, anon_sym_bitand, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8861), 1, + anon_sym_COMMA, + ACTIONS(8917), 1, + anon_sym_RPAREN, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + STATE(8451), 1, + aux_sym_argument_list_repeat1, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9047), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9049), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9069), 2, + ACTIONS(8595), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9063), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9065), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7051), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, anon_sym_or, + ACTIONS(8663), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(8667), 2, + anon_sym_CARET, anon_sym_xor, - [218990] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(9051), 1, - anon_sym_SLASH, - ACTIONS(9067), 1, - anon_sym_GT_EQ, - ACTIONS(9077), 1, - anon_sym_LT_EQ_GT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7053), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9047), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9049), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9069), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9063), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9065), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - [219067] = 17, + [173096] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5218), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6533), 1, + sym_identifier, + ACTIONS(6543), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(9051), 1, - anon_sym_SLASH, - ACTIONS(9067), 1, - anon_sym_GT_EQ, - ACTIONS(9077), 1, - anon_sym_LT_EQ_GT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7053), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9047), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9049), 2, + ACTIONS(6812), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9069), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9065), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7051), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, + ACTIONS(6814), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [219142] = 15, + ACTIONS(6816), 1, + anon_sym_AMP, + STATE(4398), 1, + sym_parameter_list, + STATE(6740), 1, + sym_scope_resolution, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7350), 1, + sym_declarator, + STATE(7658), 1, + sym_abstract_declarator, + STATE(9168), 1, + sym_ms_based_modifier, + ACTIONS(8561), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(7305), 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, + [173183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(9051), 1, - anon_sym_SLASH, - ACTIONS(9077), 1, - anon_sym_LT_EQ_GT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9047), 2, + ACTIONS(6623), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9049), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9069), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7053), 5, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 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_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [219213] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, anon_sym_DOT, - ACTIONS(9051), 1, - anon_sym_SLASH, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9047), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9049), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7053), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7051), 20, + sym_identifier, + ACTIONS(6621), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -514489,132 +475350,110 @@ 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___attribute__, + 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, - [219280] = 28, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [173230] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9240), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8919), 1, anon_sym_COMMA, - ACTIONS(9242), 1, - anon_sym_RBRACK, - STATE(3181), 1, + ACTIONS(8921), 1, + anon_sym_RPAREN, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8682), 1, - aux_sym_subscript_argument_list_repeat1, - ACTIONS(7004), 2, + STATE(8578), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [219377] = 14, + [173327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(9051), 1, - anon_sym_SLASH, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9047), 2, + ACTIONS(5599), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9049), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9069), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7053), 5, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 18, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5601), 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_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_LT_LT, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -514623,240 +475462,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [219446] = 28, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [173374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(5617), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8886), 1, anon_sym_PIPE, - ACTIONS(8890), 1, anon_sym_AMP, - ACTIONS(8896), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - ACTIONS(9230), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5619), 28, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(9244), 1, - anon_sym_RPAREN, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - STATE(8786), 1, - aux_sym_argument_list_repeat1, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8878), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [219543] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(5276), 1, - anon_sym_LPAREN2, - ACTIONS(6256), 1, - sym_identifier, - ACTIONS(6266), 1, - anon_sym_LBRACK, - ACTIONS(6533), 1, - anon_sym_STAR, - ACTIONS(6535), 1, - anon_sym_AMP_AMP, - ACTIONS(6537), 1, - anon_sym_AMP, - STATE(4696), 1, - sym_parameter_list, - STATE(7241), 1, - sym_scope_resolution, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(7566), 1, - sym_declarator, - STATE(8037), 1, - sym_abstract_declarator, - STATE(9737), 1, - sym_ms_based_modifier, - ACTIONS(8858), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7464), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(7634), 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, - [219630] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, + anon_sym_LT_LT, anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, - anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, - anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, anon_sym_QMARK, - ACTIONS(8902), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - ACTIONS(9222), 1, - anon_sym_COMMA, - ACTIONS(9246), 1, - anon_sym_RPAREN, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - STATE(8556), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8878), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8882), 2, - anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [219727] = 14, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [173421] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7916), 1, - anon_sym_const, - ACTIONS(8910), 1, + ACTIONS(6238), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(8912), 1, anon_sym_STAR, - ACTIONS(8914), 1, anon_sym_AMP_AMP, - ACTIONS(8916), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(6240), 30, anon_sym_AMP, - ACTIONS(8918), 1, - anon_sym_LBRACK, - STATE(4267), 1, - sym_parameter_list, - STATE(7280), 1, - sym_function_declarator_seq, - STATE(7368), 1, - sym_abstract_declarator, - STATE(5522), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(7278), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7907), 11, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -514867,51 +475548,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(6258), 12, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, + sym_primitive_type, anon_sym_asm, anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [219796] = 14, + [173468] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7916), 1, - anon_sym_const, - ACTIONS(8910), 1, + ACTIONS(6242), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(8912), 1, anon_sym_STAR, - ACTIONS(8914), 1, anon_sym_AMP_AMP, - ACTIONS(8916), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(6244), 30, anon_sym_AMP, - ACTIONS(8918), 1, - anon_sym_LBRACK, - STATE(4267), 1, - sym_parameter_list, - STATE(7280), 1, - sym_function_declarator_seq, - STATE(7374), 1, - sym_abstract_declarator, - STATE(5687), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(7278), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7907), 11, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -514922,51 +475592,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(9248), 12, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, + sym_primitive_type, anon_sym_asm, anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [219865] = 14, + [173515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7916), 1, - anon_sym_const, - ACTIONS(8910), 1, + ACTIONS(5981), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(8912), 1, anon_sym_STAR, - ACTIONS(8914), 1, anon_sym_AMP_AMP, - ACTIONS(8916), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5983), 30, anon_sym_AMP, - ACTIONS(8918), 1, - anon_sym_LBRACK, - STATE(4267), 1, - sym_parameter_list, - STATE(7280), 1, - sym_function_declarator_seq, - STATE(7379), 1, - sym_abstract_declarator, - STATE(5687), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(7278), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7907), 11, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -514977,51 +475636,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(7534), 12, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, + sym_primitive_type, anon_sym_asm, anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [219934] = 14, + [173562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7916), 1, - anon_sym_const, - ACTIONS(8910), 1, + ACTIONS(6246), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(8912), 1, anon_sym_STAR, - ACTIONS(8914), 1, anon_sym_AMP_AMP, - ACTIONS(8916), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(6248), 30, anon_sym_AMP, - ACTIONS(8918), 1, - anon_sym_LBRACK, - STATE(4267), 1, - sym_parameter_list, - STATE(7280), 1, - sym_function_declarator_seq, - STATE(7380), 1, - sym_abstract_declarator, - STATE(5687), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(7278), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7907), 11, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -515032,199 +475680,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(9250), 12, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, + sym_primitive_type, anon_sym_asm, anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [220003] = 24, + [173609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(6250), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(9051), 1, - anon_sym_SLASH, - ACTIONS(9057), 1, - anon_sym_PIPE, - ACTIONS(9061), 1, - anon_sym_AMP, - ACTIONS(9067), 1, - anon_sym_GT_EQ, - ACTIONS(9077), 1, - anon_sym_LT_EQ_GT, - ACTIONS(9079), 1, - anon_sym_bitor, - ACTIONS(9081), 1, - anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9047), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9049), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9053), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9055), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9059), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(9069), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9063), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9065), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7079), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(6252), 30, + anon_sym_AMP, + anon_sym___extension__, anon_sym___attribute__, - anon_sym_QMARK, - [220092] = 26, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [173656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(6254), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9051), 1, - anon_sym_SLASH, - ACTIONS(9057), 1, - anon_sym_PIPE, - ACTIONS(9061), 1, - anon_sym_AMP, - ACTIONS(9067), 1, - anon_sym_GT_EQ, - ACTIONS(9075), 1, - anon_sym_QMARK, - ACTIONS(9077), 1, - anon_sym_LT_EQ_GT, - ACTIONS(9079), 1, - anon_sym_bitor, - ACTIONS(9081), 1, - anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9047), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9049), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9053), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9055), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9059), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(9069), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7083), 3, - anon_sym_COMMA, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(6256), 30, + anon_sym_AMP, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(9063), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9065), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [220185] = 17, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [173703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(6258), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(6406), 1, - sym_auto, - ACTIONS(6408), 1, - anon_sym_decltype, - ACTIONS(9105), 1, - anon_sym_LBRACK, - ACTIONS(9107), 1, - anon_sym_const, - ACTIONS(9252), 1, anon_sym_STAR, - ACTIONS(9254), 1, anon_sym_AMP_AMP, - ACTIONS(9256), 1, - anon_sym_AMP, - STATE(2612), 1, - sym_decltype_auto, - STATE(4347), 1, - sym_parameter_list, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(7668), 1, - sym_abstract_declarator, - STATE(6142), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(7464), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8908), 9, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - ACTIONS(9103), 11, + ACTIONS(6260), 30, + anon_sym_AMP, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -515235,663 +475812,502 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [220260] = 24, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [173750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(9051), 1, + ACTIONS(6634), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(9057), 1, anon_sym_PIPE, - ACTIONS(9061), 1, anon_sym_AMP, - ACTIONS(9067), 1, - anon_sym_GT_EQ, - ACTIONS(9077), 1, - anon_sym_LT_EQ_GT, - ACTIONS(9079), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(9081), 1, + anon_sym_xor, anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9047), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9049), 2, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6632), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9053), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9055), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9059), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(9069), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9063), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9065), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7087), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - [220349] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, - anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, - anon_sym_AMP, - ACTIONS(8896), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(8902), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - ACTIONS(9240), 1, - anon_sym_COMMA, - ACTIONS(9258), 1, - anon_sym_RBRACK, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - STATE(8935), 1, - aux_sym_subscript_argument_list_repeat1, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [173797] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6268), 10, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(6266), 29, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + 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, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [220446] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5550), 1, - anon_sym_LPAREN2, - ACTIONS(6406), 1, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, - ACTIONS(6408), 1, anon_sym_decltype, - ACTIONS(9105), 1, - anon_sym_LBRACK, - ACTIONS(9107), 1, - anon_sym_const, - ACTIONS(9252), 1, - anon_sym_STAR, - ACTIONS(9254), 1, - anon_sym_AMP_AMP, - ACTIONS(9256), 1, - anon_sym_AMP, - STATE(2612), 1, - sym_decltype_auto, - STATE(4347), 1, - sym_parameter_list, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(7683), 1, - sym_abstract_declarator, - STATE(6151), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(7464), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8932), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - ACTIONS(9103), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [220521] = 28, + anon_sym_DOT_DOT_DOT_GT, + [173844] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9230), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8861), 1, anon_sym_COMMA, - ACTIONS(9260), 1, + ACTIONS(8923), 1, anon_sym_RPAREN, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(9097), 1, + STATE(8339), 1, aux_sym_argument_list_repeat1, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [220618] = 28, + [173941] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9262), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8925), 1, anon_sym_COMMA, - ACTIONS(9264), 1, + ACTIONS(8927), 1, anon_sym_RBRACE, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(9102), 1, + STATE(8342), 1, aux_sym_initializer_list_repeat1, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8595), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [220715] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9051), 1, - anon_sym_SLASH, - ACTIONS(9057), 1, - anon_sym_PIPE, - ACTIONS(9061), 1, - anon_sym_AMP, - ACTIONS(9067), 1, - anon_sym_GT_EQ, - ACTIONS(9075), 1, - anon_sym_QMARK, - ACTIONS(9077), 1, - anon_sym_LT_EQ_GT, - ACTIONS(9079), 1, - anon_sym_bitor, - ACTIONS(9081), 1, - anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9047), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9049), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9053), 2, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9055), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9059), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9069), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7095), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - ACTIONS(9063), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9065), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [220808] = 28, + [174038] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(7617), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7631), 1, anon_sym_DOT, - ACTIONS(9158), 1, + ACTIONS(8873), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(9166), 1, + ACTIONS(8881), 1, anon_sym_SLASH, - ACTIONS(9172), 1, + ACTIONS(8887), 1, anon_sym_PIPE, - ACTIONS(9176), 1, + ACTIONS(8891), 1, anon_sym_AMP, - ACTIONS(9182), 1, + ACTIONS(8897), 1, anon_sym_LT_LT, - ACTIONS(9184), 1, + ACTIONS(8899), 1, anon_sym_GT_GT, - ACTIONS(9186), 1, + ACTIONS(8901), 1, anon_sym_QMARK, - ACTIONS(9188), 1, + ACTIONS(8903), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, + ACTIONS(8905), 1, anon_sym_bitor, - ACTIONS(9192), 1, + ACTIONS(8907), 1, anon_sym_bitand, - ACTIONS(9266), 1, + ACTIONS(8929), 1, anon_sym_GT2, - STATE(4226), 1, + STATE(4059), 1, sym_argument_list, - STATE(4227), 1, + STATE(4060), 1, sym_subscript_argument_list, - STATE(9121), 1, + STATE(8361), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + ACTIONS(8877), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + ACTIONS(8879), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, + ACTIONS(8883), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9170), 2, + ACTIONS(8885), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9174), 2, + ACTIONS(8889), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9194), 2, + ACTIONS(8909), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, + ACTIONS(8893), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9180), 4, + ACTIONS(8895), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [220905] = 28, + [174135] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8852), 1, anon_sym_bitand, - ACTIONS(9240), 1, + ACTIONS(8913), 1, anon_sym_COMMA, - ACTIONS(9268), 1, + ACTIONS(8931), 1, anon_sym_RBRACK, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(9131), 1, + STATE(8386), 1, aux_sym_subscript_argument_list_repeat1, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [221002] = 28, + [174232] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9230), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8861), 1, anon_sym_COMMA, - ACTIONS(9270), 1, + ACTIONS(8933), 1, anon_sym_RPAREN, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8983), 1, + STATE(8405), 1, aux_sym_argument_list_repeat1, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [221099] = 23, + [174329] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2259), 1, + ACTIONS(2257), 1, anon_sym_operator, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3706), 1, + ACTIONS(3253), 1, anon_sym_TILDE, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(5276), 1, + ACTIONS(5218), 1, anon_sym_LPAREN2, - ACTIONS(6256), 1, + ACTIONS(6533), 1, sym_identifier, - ACTIONS(6266), 1, + ACTIONS(6543), 1, anon_sym_LBRACK, - ACTIONS(6646), 1, + ACTIONS(6841), 1, anon_sym_STAR, - ACTIONS(6648), 1, + ACTIONS(6843), 1, anon_sym_AMP_AMP, - ACTIONS(6650), 1, + ACTIONS(6845), 1, anon_sym_AMP, - STATE(4268), 1, + STATE(4330), 1, sym_parameter_list, - STATE(7241), 1, + STATE(6740), 1, sym_scope_resolution, - STATE(7450), 1, + STATE(7023), 1, sym_function_declarator_seq, - STATE(7566), 1, + STATE(7350), 1, sym_declarator, - STATE(7930), 1, + STATE(7676), 1, sym_abstract_declarator, - STATE(9737), 1, + STATE(9168), 1, sym_ms_based_modifier, - ACTIONS(8858), 2, + ACTIONS(8561), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(9982), 3, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7464), 5, + STATE(7113), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - STATE(7634), 11, + STATE(7305), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -515903,234 +476319,520 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [221186] = 3, + [174416] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4837), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(8937), 1, + anon_sym_LPAREN2, + ACTIONS(8939), 5, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(8935), 33, 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, + anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, sym_identifier, - ACTIONS(4829), 23, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [174465] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, + anon_sym_SLASH, + ACTIONS(8587), 1, + anon_sym_AMP, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8919), 1, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + ACTIONS(8941), 1, + anon_sym_RPAREN, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + STATE(8468), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_not_eq, + ACTIONS(8591), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [174562] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6266), 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(6268), 30, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [221233] = 3, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [174609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7311), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(6270), 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(6272), 30, 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, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, sym_identifier, - ACTIONS(7309), 23, - anon_sym_DOT_DOT_DOT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [174656] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5987), 9, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, - 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_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5989), 30, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [221280] = 28, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [174703] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6088), 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(6090), 30, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [174750] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6274), 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(6276), 30, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [174797] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6399), 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(6401), 30, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [174844] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6282), 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(6284), 30, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [174891] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(7699), 1, + anon_sym_COMMA, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9222), 1, - anon_sym_COMMA, - ACTIONS(9272), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8943), 1, anon_sym_RPAREN, - STATE(3181), 1, + ACTIONS(8945), 1, + anon_sym_SEMI, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(9133), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [221377] = 3, + [174988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 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_identifier, - ACTIONS(2191), 23, - anon_sym_DOT_DOT_DOT, + ACTIONS(6286), 9, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [221424] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4853), 8, - anon_sym_DOT_DOT_DOT, 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(6197), 31, + ACTIONS(6288), 30, anon_sym_AMP, anon_sym___extension__, - anon_sym_extern, anon_sym___attribute__, - anon_sym___declspec, anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -516142,133 +476844,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_operator, - [221471] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [175035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7315), 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_identifier, - ACTIONS(7313), 23, - anon_sym_DOT_DOT_DOT, + ACTIONS(6290), 9, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [221518] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9274), 1, - anon_sym_LPAREN2, - ACTIONS(2183), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(6292), 30, 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_identifier, - ACTIONS(2185), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_STAR, - 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___extension__, + anon_sym___attribute__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [221567] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7916), 1, anon_sym_const, - ACTIONS(8910), 1, - anon_sym_LPAREN2, - ACTIONS(8918), 1, - anon_sym_LBRACK, - ACTIONS(8934), 1, - anon_sym_STAR, - ACTIONS(8936), 1, - anon_sym_AMP_AMP, - ACTIONS(8938), 1, - anon_sym_AMP, - STATE(3952), 1, - sym_parameter_list, - STATE(7280), 1, - sym_function_declarator_seq, - STATE(7388), 1, - sym_abstract_declarator, - STATE(5609), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(7278), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7907), 11, - anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -516279,134 +476888,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(6258), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [221636] = 3, + [175082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4261), 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_identifier, - ACTIONS(4259), 23, - anon_sym_DOT_DOT_DOT, + ACTIONS(6294), 9, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [221683] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7407), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(6296), 30, 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_identifier, - ACTIONS(7405), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - 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___extension__, + anon_sym___attribute__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [221730] = 3, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [175129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5467), 8, - anon_sym_DOT_DOT_DOT, + ACTIONS(6298), 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(5460), 31, + ACTIONS(6300), 30, anon_sym_AMP, anon_sym___extension__, - anon_sym_extern, anon_sym___attribute__, - anon_sym___declspec, anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -516418,493 +476976,366 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_operator, - [221777] = 28, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [175176] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9230), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8861), 1, anon_sym_COMMA, - ACTIONS(9276), 1, + ACTIONS(8947), 1, anon_sym_RPAREN, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8861), 1, + STATE(8192), 1, aux_sym_argument_list_repeat1, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [221874] = 28, + [175273] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9278), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8949), 1, anon_sym_COMMA, - ACTIONS(9280), 1, + ACTIONS(8951), 1, anon_sym_RBRACE, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8865), 1, + STATE(8193), 1, aux_sym_initializer_list_repeat1, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [221971] = 28, + [175370] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(7617), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7631), 1, anon_sym_DOT, - ACTIONS(9158), 1, + ACTIONS(8873), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(9166), 1, + ACTIONS(8881), 1, anon_sym_SLASH, - ACTIONS(9172), 1, + ACTIONS(8887), 1, anon_sym_PIPE, - ACTIONS(9176), 1, + ACTIONS(8891), 1, anon_sym_AMP, - ACTIONS(9182), 1, + ACTIONS(8897), 1, anon_sym_LT_LT, - ACTIONS(9184), 1, + ACTIONS(8899), 1, anon_sym_GT_GT, - ACTIONS(9186), 1, + ACTIONS(8901), 1, anon_sym_QMARK, - ACTIONS(9188), 1, + ACTIONS(8903), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, + ACTIONS(8905), 1, anon_sym_bitor, - ACTIONS(9192), 1, + ACTIONS(8907), 1, anon_sym_bitand, - ACTIONS(9282), 1, + ACTIONS(8953), 1, anon_sym_GT2, - STATE(4226), 1, + STATE(4059), 1, sym_argument_list, - STATE(4227), 1, + STATE(4060), 1, sym_subscript_argument_list, - STATE(8893), 1, + STATE(8244), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + ACTIONS(8877), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + ACTIONS(8879), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, + ACTIONS(8883), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9170), 2, + ACTIONS(8885), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9174), 2, + ACTIONS(8889), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9194), 2, + ACTIONS(8909), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, + ACTIONS(8893), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9180), 4, + ACTIONS(8895), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [222068] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5746), 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_identifier, - ACTIONS(3187), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [222115] = 28, + [175467] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8852), 1, anon_sym_bitand, - ACTIONS(9240), 1, + ACTIONS(8913), 1, anon_sym_COMMA, - ACTIONS(9284), 1, + ACTIONS(8955), 1, anon_sym_RBRACK, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8921), 1, + STATE(8254), 1, aux_sym_subscript_argument_list_repeat1, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [222212] = 28, + [175564] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9230), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8861), 1, anon_sym_COMMA, - ACTIONS(9286), 1, + ACTIONS(8957), 1, anon_sym_RPAREN, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8978), 1, + STATE(8297), 1, aux_sym_argument_list_repeat1, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [222309] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6368), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8591), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6370), 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_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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [222356] = 3, + [175661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6468), 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(6470), 28, + ACTIONS(6090), 10, 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [222403] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7061), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -516913,20 +477344,8 @@ static const uint16_t ts_small_parse_table[] = { 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_identifier, - ACTIONS(7065), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(6088), 29, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -516938,202 +477357,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [222450] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7273), 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_identifier, - ACTIONS(7271), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [222497] = 28, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [175708] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9222), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8919), 1, anon_sym_COMMA, - ACTIONS(9288), 1, + ACTIONS(8959), 1, anon_sym_RPAREN, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(9065), 1, + STATE(8429), 1, aux_sym_generic_expression_repeat1, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [222594] = 3, + [175805] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7399), 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_identifier, - ACTIONS(7397), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(4771), 5, 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_LBRACK_LBRACK, + ACTIONS(4763), 33, + anon_sym_AMP, + anon_sym___extension__, + 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_DOT_STAR, - anon_sym_DASH_GT, - [222641] = 14, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [175854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7916), 1, - anon_sym_const, - ACTIONS(8910), 1, + ACTIONS(6312), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(8918), 1, - anon_sym_LBRACK, - ACTIONS(8934), 1, anon_sym_STAR, - ACTIONS(8936), 1, anon_sym_AMP_AMP, - ACTIONS(8938), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(6314), 30, anon_sym_AMP, - STATE(3952), 1, - sym_parameter_list, - STATE(7280), 1, - sym_function_declarator_seq, - STATE(7393), 1, - sym_abstract_declarator, - STATE(5687), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(7278), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7907), 11, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -517144,1173 +477523,837 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(9248), 12, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [175901] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6316), 9, 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_COLON, + ACTIONS(6318), 30, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [222710] = 27, + [175948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7993), 1, + ACTIONS(6320), 9, anon_sym_COMMA, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, - anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, - anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8878), 2, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8882), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9201), 2, - anon_sym_RPAREN, anon_sym_SEMI, - ACTIONS(8892), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [222805] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7265), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(6322), 30, 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_identifier, - ACTIONS(7263), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - 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___extension__, + anon_sym___attribute__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [222852] = 3, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [175995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6472), 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(6474), 28, - anon_sym_DOT_DOT_DOT, + ACTIONS(6324), 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(6326), 30, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, 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_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [222899] = 3, + [176042] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 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_identifier, - ACTIONS(7297), 23, - anon_sym_DOT_DOT_DOT, + ACTIONS(6328), 9, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, - 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_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(6330), 30, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [222946] = 3, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [176089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7319), 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_identifier, - ACTIONS(7317), 23, - anon_sym_DOT_DOT_DOT, + ACTIONS(6332), 9, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, - 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_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(6334), 30, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [222993] = 3, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [176136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6482), 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(6484), 28, - anon_sym_DOT_DOT_DOT, + ACTIONS(6336), 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(6338), 30, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, 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_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [223040] = 28, + [176183] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9230), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8806), 1, + anon_sym_SEMI, + ACTIONS(8961), 1, anon_sym_COMMA, - ACTIONS(9290), 1, - anon_sym_RPAREN, - STATE(3181), 1, + ACTIONS(8964), 1, + anon_sym_RBRACE, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8803), 1, - aux_sym_argument_list_repeat1, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [223137] = 28, + [176280] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9292), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8966), 1, anon_sym_COMMA, - ACTIONS(9294), 1, + ACTIONS(8969), 1, + anon_sym_SEMI, + ACTIONS(8971), 1, anon_sym_RBRACE, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8805), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [223234] = 28, + [176377] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9158), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(9166), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(9172), 1, - anon_sym_PIPE, - ACTIONS(9176), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(9182), 1, - anon_sym_LT_LT, - ACTIONS(9184), 1, - anon_sym_GT_GT, - ACTIONS(9186), 1, - anon_sym_QMARK, - ACTIONS(9188), 1, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, - anon_sym_bitor, - ACTIONS(9192), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9296), 1, - anon_sym_GT2, - STATE(4226), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8861), 1, + anon_sym_COMMA, + ACTIONS(8973), 1, + anon_sym_RPAREN, + STATE(2617), 1, sym_argument_list, - STATE(4227), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8809), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, + STATE(8251), 1, + aux_sym_argument_list_repeat1, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9170), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9174), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9180), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [223331] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7352), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8591), 3, 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_identifier, - ACTIONS(7350), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [223378] = 28, + [176474] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9240), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8975), 1, anon_sym_COMMA, - ACTIONS(9298), 1, - anon_sym_RBRACK, - STATE(3181), 1, + ACTIONS(8977), 1, + anon_sym_RBRACE, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8816), 1, - aux_sym_subscript_argument_list_repeat1, - ACTIONS(7004), 2, + STATE(8253), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [223475] = 28, + [176571] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7617), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7631), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8873), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8875), 1, + anon_sym_COMMA, + ACTIONS(8881), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8887), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8891), 1, anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8897), 1, + anon_sym_LT_LT, + ACTIONS(8899), 1, + anon_sym_GT_GT, + ACTIONS(8901), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8903), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8905), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8907), 1, anon_sym_bitand, - ACTIONS(9230), 1, - anon_sym_COMMA, - ACTIONS(9300), 1, - anon_sym_RPAREN, - STATE(3181), 1, + ACTIONS(8979), 1, + anon_sym_GT2, + STATE(4059), 1, sym_argument_list, - STATE(3186), 1, + STATE(4060), 1, sym_subscript_argument_list, - STATE(8819), 1, - aux_sym_argument_list_repeat1, - ACTIONS(7004), 2, + STATE(8258), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8877), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8879), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8883), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8885), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8889), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8909), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8893), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [223572] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7367), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8895), 4, 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_identifier, - ACTIONS(7365), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [223619] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7371), 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_identifier, - ACTIONS(7369), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [223666] = 28, + [176668] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8852), 1, anon_sym_bitand, - ACTIONS(9222), 1, + ACTIONS(8913), 1, anon_sym_COMMA, - ACTIONS(9302), 1, - anon_sym_RPAREN, - STATE(3181), 1, + ACTIONS(8981), 1, + anon_sym_RBRACK, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8829), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(7004), 2, + STATE(8265), 1, + aux_sym_subscript_argument_list_repeat1, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [223763] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7411), 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_identifier, - ACTIONS(7409), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [223810] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9304), 1, - anon_sym_AMP_AMP, - ACTIONS(9306), 1, - anon_sym_and, - ACTIONS(6414), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6416), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [223861] = 28, + [176765] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9230), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8861), 1, anon_sym_COMMA, - ACTIONS(9308), 1, + ACTIONS(8983), 1, anon_sym_RPAREN, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(9036), 1, + STATE(8271), 1, aux_sym_argument_list_repeat1, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [223958] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7403), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8591), 3, 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_identifier, - ACTIONS(7401), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [224005] = 28, + [176862] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9310), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8919), 1, anon_sym_COMMA, - ACTIONS(9312), 1, - anon_sym_RBRACK, - STATE(3181), 1, + ACTIONS(8985), 1, + anon_sym_RPAREN, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8959), 1, - aux_sym_lambda_capture_specifier_repeat1, - ACTIONS(7004), 2, + STATE(8279), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [224102] = 3, + [176959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7159), 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_identifier, - ACTIONS(7157), 23, + ACTIONS(6284), 10, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [224149] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7383), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -518319,20 +478362,8 @@ static const uint16_t ts_small_parse_table[] = { 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_identifier, - ACTIONS(7381), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(6282), 29, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -518344,2298 +478375,2230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [224196] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7217), 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_identifier, - ACTIONS(7215), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [224243] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [177006] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7225), 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_identifier, - ACTIONS(7223), 23, - anon_sym_DOT_DOT_DOT, + ACTIONS(6344), 9, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, - 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_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(6346), 30, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [224290] = 28, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [177053] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9230), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8861), 1, anon_sym_COMMA, - ACTIONS(9314), 1, + ACTIONS(8987), 1, anon_sym_RPAREN, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8941), 1, + STATE(8366), 1, aux_sym_argument_list_repeat1, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [224387] = 28, + [177150] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9316), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8989), 1, anon_sym_COMMA, - ACTIONS(9318), 1, + ACTIONS(8991), 1, anon_sym_RBRACE, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8942), 1, + STATE(8368), 1, aux_sym_initializer_list_repeat1, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [224484] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7327), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8591), 3, 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_identifier, - ACTIONS(7325), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [224531] = 28, + [177247] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(7617), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7631), 1, anon_sym_DOT, - ACTIONS(9158), 1, + ACTIONS(8873), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(9166), 1, + ACTIONS(8881), 1, anon_sym_SLASH, - ACTIONS(9172), 1, + ACTIONS(8887), 1, anon_sym_PIPE, - ACTIONS(9176), 1, + ACTIONS(8891), 1, anon_sym_AMP, - ACTIONS(9182), 1, + ACTIONS(8897), 1, anon_sym_LT_LT, - ACTIONS(9184), 1, + ACTIONS(8899), 1, anon_sym_GT_GT, - ACTIONS(9186), 1, + ACTIONS(8901), 1, anon_sym_QMARK, - ACTIONS(9188), 1, + ACTIONS(8903), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, + ACTIONS(8905), 1, anon_sym_bitor, - ACTIONS(9192), 1, + ACTIONS(8907), 1, anon_sym_bitand, - ACTIONS(9320), 1, + ACTIONS(8993), 1, anon_sym_GT2, - STATE(4226), 1, + STATE(4059), 1, sym_argument_list, - STATE(4227), 1, + STATE(4060), 1, sym_subscript_argument_list, - STATE(8949), 1, + STATE(8371), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + ACTIONS(8877), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + ACTIONS(8879), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, + ACTIONS(8883), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9170), 2, + ACTIONS(8885), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9174), 2, + ACTIONS(8889), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9194), 2, + ACTIONS(8909), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, + ACTIONS(8893), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9180), 4, + ACTIONS(8895), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [224628] = 28, + [177344] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9240), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8861), 1, anon_sym_COMMA, - ACTIONS(9322), 1, - anon_sym_RBRACK, - STATE(3181), 1, + ACTIONS(8995), 1, + anon_sym_RPAREN, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8957), 1, - aux_sym_subscript_argument_list_repeat1, - ACTIONS(7004), 2, + STATE(8387), 1, + aux_sym_argument_list_repeat1, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [224725] = 28, + [177441] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9310), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8919), 1, anon_sym_COMMA, - ACTIONS(9324), 1, - anon_sym_RBRACK, - STATE(3181), 1, + ACTIONS(8997), 1, + anon_sym_RPAREN, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(9069), 1, - aux_sym_lambda_capture_specifier_repeat1, - ACTIONS(7004), 2, + STATE(8399), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [224822] = 28, + [177538] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8687), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8693), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8697), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8703), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8709), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8711), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8713), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8715), 1, anon_sym_bitand, - ACTIONS(9230), 1, - anon_sym_COMMA, - ACTIONS(9326), 1, - anon_sym_RPAREN, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8964), 1, - aux_sym_argument_list_repeat1, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8683), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8685), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8689), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8691), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8695), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8699), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8701), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [224919] = 3, + ACTIONS(8999), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [177631] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(7221), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(7120), 1, + anon_sym_LPAREN2, + ACTIONS(7617), 1, + anon_sym_LBRACK, + ACTIONS(7631), 1, + anon_sym_DOT, + ACTIONS(8873), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8875), 1, + anon_sym_COMMA, + ACTIONS(8881), 1, anon_sym_SLASH, + ACTIONS(8887), 1, anon_sym_PIPE, + ACTIONS(8891), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, + ACTIONS(8897), 1, + anon_sym_LT_LT, + ACTIONS(8899), 1, + anon_sym_GT_GT, + ACTIONS(8901), 1, + anon_sym_QMARK, + ACTIONS(8903), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8905), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(8907), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(7219), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + ACTIONS(9001), 1, + anon_sym_GT2, + STATE(4059), 1, + sym_argument_list, + STATE(4060), 1, + sym_subscript_argument_list, + STATE(8288), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7633), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8877), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8879), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8883), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8885), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8889), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8909), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8893), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8895), 4, + anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [224966] = 28, + anon_sym_LT_EQ, + anon_sym_LT, + [177728] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8880), 1, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9310), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8861), 1, anon_sym_COMMA, - ACTIONS(9328), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9330), 1, - anon_sym_RBRACK, - STATE(3181), 1, + ACTIONS(9003), 1, + anon_sym_RPAREN, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8959), 1, - aux_sym_lambda_capture_specifier_repeat1, - ACTIONS(7004), 2, + STATE(8491), 1, + aux_sym_argument_list_repeat1, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [225063] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7163), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8591), 3, 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_identifier, - ACTIONS(7161), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [225110] = 28, + [177825] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9222), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9005), 1, anon_sym_COMMA, - ACTIONS(9332), 1, - anon_sym_RPAREN, - STATE(3181), 1, + ACTIONS(9007), 1, + anon_sym_RBRACE, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8976), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(7004), 2, + STATE(8492), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [225207] = 6, + [177922] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4061), 1, - anon_sym_LBRACE, - ACTIONS(8832), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - STATE(6161), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6846), 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, + ACTIONS(7617), 1, + anon_sym_LBRACK, + ACTIONS(7631), 1, anon_sym_DOT, - ACTIONS(6844), 24, + ACTIONS(8873), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8875), 1, 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, + ACTIONS(8881), 1, + anon_sym_SLASH, + ACTIONS(8887), 1, + anon_sym_PIPE, + ACTIONS(8891), 1, + anon_sym_AMP, + ACTIONS(8897), 1, anon_sym_LT_LT, - anon_sym_LBRACK, + ACTIONS(8899), 1, + anon_sym_GT_GT, + ACTIONS(8901), 1, anon_sym_QMARK, + ACTIONS(8903), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(8905), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(8907), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(9009), 1, + anon_sym_GT2, + STATE(4059), 1, + sym_argument_list, + STATE(4060), 1, + sym_subscript_argument_list, + STATE(8497), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [225260] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6496), 11, + ACTIONS(8877), 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(6498), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(8879), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8883), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8885), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8889), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8909), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8893), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(8895), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [178019] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, + anon_sym_SLASH, + ACTIONS(8587), 1, + anon_sym_AMP, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, + ACTIONS(8599), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9013), 1, + anon_sym_RPAREN, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [225307] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6500), 11, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 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(6502), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(9011), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(8589), 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_or, - anon_sym_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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [225354] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6504), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8591), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, + [178114] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(6506), 28, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, + anon_sym_SLASH, + ACTIONS(8587), 1, + anon_sym_AMP, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8861), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(9015), 1, + anon_sym_RPAREN, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + STATE(8504), 1, + aux_sym_argument_list_repeat1, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8589), 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_or, - anon_sym_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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [225401] = 28, + ACTIONS(8591), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [178211] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9230), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8919), 1, anon_sym_COMMA, - ACTIONS(9334), 1, + ACTIONS(9017), 1, anon_sym_RPAREN, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(9084), 1, - aux_sym_argument_list_repeat1, - ACTIONS(7004), 2, + STATE(8511), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [225498] = 28, + [178308] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9336), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8861), 1, anon_sym_COMMA, - ACTIONS(9338), 1, - anon_sym_RBRACE, - STATE(3181), 1, + ACTIONS(9019), 1, + anon_sym_RPAREN, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(9086), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(7004), 2, + STATE(8579), 1, + aux_sym_argument_list_repeat1, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [225595] = 3, + [178405] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6508), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(8587), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(8593), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6510), 28, - anon_sym_DOT_DOT_DOT, + ACTIONS(8597), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9021), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(9023), 1, + anon_sym_RBRACE, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + STATE(8580), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8589), 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_or, - anon_sym_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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [225642] = 28, + ACTIONS(8591), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [178502] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(7617), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7631), 1, anon_sym_DOT, - ACTIONS(9158), 1, + ACTIONS(8873), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(9166), 1, + ACTIONS(8881), 1, anon_sym_SLASH, - ACTIONS(9172), 1, + ACTIONS(8887), 1, anon_sym_PIPE, - ACTIONS(9176), 1, + ACTIONS(8891), 1, anon_sym_AMP, - ACTIONS(9182), 1, + ACTIONS(8897), 1, anon_sym_LT_LT, - ACTIONS(9184), 1, + ACTIONS(8899), 1, anon_sym_GT_GT, - ACTIONS(9186), 1, + ACTIONS(8901), 1, anon_sym_QMARK, - ACTIONS(9188), 1, + ACTIONS(8903), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, + ACTIONS(8905), 1, anon_sym_bitor, - ACTIONS(9192), 1, + ACTIONS(8907), 1, anon_sym_bitand, - ACTIONS(9340), 1, + ACTIONS(9025), 1, anon_sym_GT2, - STATE(4226), 1, + STATE(4059), 1, sym_argument_list, - STATE(4227), 1, + STATE(4060), 1, sym_subscript_argument_list, - STATE(9093), 1, + STATE(8588), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + ACTIONS(8877), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + ACTIONS(8879), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, + ACTIONS(8883), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9170), 2, + ACTIONS(8885), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9174), 2, + ACTIONS(8889), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9194), 2, + ACTIONS(8909), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, + ACTIONS(8893), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9180), 4, + ACTIONS(8895), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [225739] = 28, + [178599] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9230), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8861), 1, anon_sym_COMMA, - ACTIONS(9342), 1, + ACTIONS(9027), 1, anon_sym_RPAREN, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(9103), 1, + STATE(8601), 1, aux_sym_argument_list_repeat1, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [225836] = 28, + [178696] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9222), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8919), 1, anon_sym_COMMA, - ACTIONS(9344), 1, + ACTIONS(9029), 1, anon_sym_RPAREN, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(9112), 1, + STATE(8613), 1, aux_sym_generic_expression_repeat1, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [225933] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4061), 1, - anon_sym_LBRACE, - ACTIONS(8832), 1, - anon_sym_LPAREN2, - STATE(6121), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6888), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8591), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6886), 24, - 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_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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [225986] = 28, + [178793] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9230), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8861), 1, anon_sym_COMMA, - ACTIONS(9346), 1, + ACTIONS(9031), 1, anon_sym_RPAREN, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8736), 1, + STATE(8302), 1, aux_sym_argument_list_repeat1, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [226083] = 28, + [178890] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9348), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9033), 1, anon_sym_COMMA, - ACTIONS(9350), 1, + ACTIONS(9035), 1, anon_sym_RBRACE, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8778), 1, + STATE(8362), 1, aux_sym_initializer_list_repeat1, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [226180] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7916), 1, - anon_sym_const, - ACTIONS(8910), 1, - anon_sym_LPAREN2, - ACTIONS(8918), 1, - anon_sym_LBRACK, - ACTIONS(8934), 1, - anon_sym_STAR, - ACTIONS(8936), 1, - anon_sym_AMP_AMP, - ACTIONS(8938), 1, - anon_sym_AMP, - STATE(3952), 1, - sym_parameter_list, - STATE(7280), 1, - sym_function_declarator_seq, - STATE(7406), 1, - sym_abstract_declarator, - STATE(5687), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(7278), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7907), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(7534), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [226249] = 28, + [178987] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(7617), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7631), 1, anon_sym_DOT, - ACTIONS(9158), 1, + ACTIONS(8873), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(9166), 1, + ACTIONS(8881), 1, anon_sym_SLASH, - ACTIONS(9172), 1, + ACTIONS(8887), 1, anon_sym_PIPE, - ACTIONS(9176), 1, + ACTIONS(8891), 1, anon_sym_AMP, - ACTIONS(9182), 1, + ACTIONS(8897), 1, anon_sym_LT_LT, - ACTIONS(9184), 1, + ACTIONS(8899), 1, anon_sym_GT_GT, - ACTIONS(9186), 1, + ACTIONS(8901), 1, anon_sym_QMARK, - ACTIONS(9188), 1, + ACTIONS(8903), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, + ACTIONS(8905), 1, anon_sym_bitor, - ACTIONS(9192), 1, + ACTIONS(8907), 1, anon_sym_bitand, - ACTIONS(9352), 1, + ACTIONS(9037), 1, anon_sym_GT2, - STATE(4226), 1, + STATE(4059), 1, sym_argument_list, - STATE(4227), 1, + STATE(4060), 1, sym_subscript_argument_list, - STATE(8835), 1, + STATE(8423), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + ACTIONS(8877), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + ACTIONS(8879), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, + ACTIONS(8883), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9170), 2, + ACTIONS(8885), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9174), 2, + ACTIONS(8889), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9194), 2, + ACTIONS(8909), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, + ACTIONS(8893), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9180), 4, + ACTIONS(8895), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [226346] = 28, + [179084] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9230), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8861), 1, anon_sym_COMMA, - ACTIONS(9354), 1, + ACTIONS(9039), 1, anon_sym_RPAREN, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8934), 1, + STATE(8558), 1, aux_sym_argument_list_repeat1, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [226443] = 28, + [179181] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9222), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8919), 1, anon_sym_COMMA, - ACTIONS(9356), 1, + ACTIONS(9041), 1, anon_sym_RPAREN, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(9115), 1, + STATE(8239), 1, aux_sym_generic_expression_repeat1, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [226540] = 28, + [179278] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9230), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8861), 1, anon_sym_COMMA, - ACTIONS(9358), 1, + ACTIONS(9043), 1, anon_sym_RPAREN, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8851), 1, + STATE(8261), 1, aux_sym_argument_list_repeat1, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [226637] = 28, + [179375] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9360), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9045), 1, anon_sym_COMMA, - ACTIONS(9362), 1, + ACTIONS(9047), 1, anon_sym_RBRACE, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8889), 1, + STATE(8268), 1, aux_sym_initializer_list_repeat1, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [226734] = 28, + [179472] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(7617), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7631), 1, anon_sym_DOT, - ACTIONS(9158), 1, + ACTIONS(8873), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(9166), 1, + ACTIONS(8881), 1, anon_sym_SLASH, - ACTIONS(9172), 1, + ACTIONS(8887), 1, anon_sym_PIPE, - ACTIONS(9176), 1, + ACTIONS(8891), 1, anon_sym_AMP, - ACTIONS(9182), 1, + ACTIONS(8897), 1, anon_sym_LT_LT, - ACTIONS(9184), 1, + ACTIONS(8899), 1, anon_sym_GT_GT, - ACTIONS(9186), 1, + ACTIONS(8901), 1, anon_sym_QMARK, - ACTIONS(9188), 1, + ACTIONS(8903), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, + ACTIONS(8905), 1, anon_sym_bitor, - ACTIONS(9192), 1, + ACTIONS(8907), 1, anon_sym_bitand, - ACTIONS(9364), 1, + ACTIONS(9049), 1, anon_sym_GT2, - STATE(4226), 1, + STATE(4059), 1, sym_argument_list, - STATE(4227), 1, + STATE(4060), 1, sym_subscript_argument_list, - STATE(9000), 1, + STATE(8289), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + ACTIONS(8877), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + ACTIONS(8879), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, + ACTIONS(8883), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9170), 2, + ACTIONS(8885), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9174), 2, + ACTIONS(8889), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9194), 2, + ACTIONS(8909), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, + ACTIONS(8893), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9180), 4, + ACTIONS(8895), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [226831] = 28, + [179569] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9230), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8861), 1, anon_sym_COMMA, - ACTIONS(9366), 1, + ACTIONS(9051), 1, anon_sym_RPAREN, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(9064), 1, + STATE(8310), 1, aux_sym_argument_list_repeat1, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [226928] = 28, + [179666] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9222), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8919), 1, anon_sym_COMMA, - ACTIONS(9368), 1, + ACTIONS(9053), 1, anon_sym_RPAREN, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8554), 1, + STATE(8357), 1, aux_sym_generic_expression_repeat1, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [227025] = 6, + [179763] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4061), 1, - anon_sym_LBRACE, - ACTIONS(8832), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - STATE(6163), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6908), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(8587), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(8593), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6906), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(8597), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8861), 1, anon_sym_COMMA, + ACTIONS(9055), 1, + anon_sym_RPAREN, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + STATE(8568), 1, + aux_sym_argument_list_repeat1, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(8591), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [179860] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7120), 1, + anon_sym_LPAREN2, + ACTIONS(7617), 1, anon_sym_LBRACK, + ACTIONS(7631), 1, + anon_sym_DOT, + ACTIONS(8873), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8875), 1, + anon_sym_COMMA, + ACTIONS(8881), 1, + anon_sym_SLASH, + ACTIONS(8887), 1, + anon_sym_PIPE, + ACTIONS(8891), 1, + anon_sym_AMP, + ACTIONS(8897), 1, + anon_sym_LT_LT, + ACTIONS(8899), 1, + anon_sym_GT_GT, + ACTIONS(8901), 1, anon_sym_QMARK, + ACTIONS(8903), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(8905), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(8907), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(9057), 1, + anon_sym_GT2, + STATE(4059), 1, + sym_argument_list, + STATE(4060), 1, + sym_subscript_argument_list, + STATE(8574), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [227078] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6410), 11, + ACTIONS(8877), 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(6412), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(8879), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8883), 2, 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, + ACTIONS(8885), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(8889), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(8909), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [227125] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6345), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8893), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8895), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, + [179957] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(6347), 28, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, + anon_sym_SLASH, + ACTIONS(8587), 1, + anon_sym_AMP, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8861), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(9059), 1, + anon_sym_RPAREN, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + STATE(8600), 1, + aux_sym_argument_list_repeat1, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8589), 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_or, - anon_sym_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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [227172] = 3, + ACTIONS(8591), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [180054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6418), 11, + ACTIONS(4773), 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6420), 28, + sym_identifier, + ACTIONS(4765), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -520644,42 +480607,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_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_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [227219] = 3, + [180101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6349), 11, + ACTIONS(6646), 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6351), 28, + sym_identifier, + ACTIONS(6644), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -520688,279 +480651,181 @@ 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_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_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [227266] = 3, + [180148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6356), 11, + ACTIONS(2189), 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_DOT, - ACTIONS(6358), 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_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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [227313] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, anon_sym_DOT, - ACTIONS(8874), 1, + sym_identifier, + ACTIONS(2187), 23, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, - anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, - anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - ACTIONS(9230), 1, anon_sym_COMMA, - ACTIONS(9370), 1, - anon_sym_RPAREN, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - STATE(8911), 1, - aux_sym_argument_list_repeat1, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8878), 2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [227410] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, - anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, - anon_sym_AMP, - ACTIONS(8896), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(8902), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - ACTIONS(9372), 1, - anon_sym_COMMA, - ACTIONS(9374), 1, - anon_sym_RBRACE, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - STATE(8918), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8878), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8882), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [227507] = 28, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [180195] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(7617), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7631), 1, anon_sym_DOT, - ACTIONS(9158), 1, + ACTIONS(8873), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(9166), 1, + ACTIONS(8881), 1, anon_sym_SLASH, - ACTIONS(9172), 1, + ACTIONS(8887), 1, anon_sym_PIPE, - ACTIONS(9176), 1, + ACTIONS(8891), 1, anon_sym_AMP, - ACTIONS(9182), 1, + ACTIONS(8897), 1, anon_sym_LT_LT, - ACTIONS(9184), 1, + ACTIONS(8899), 1, anon_sym_GT_GT, - ACTIONS(9186), 1, + ACTIONS(8901), 1, anon_sym_QMARK, - ACTIONS(9188), 1, + ACTIONS(8903), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, + ACTIONS(8905), 1, anon_sym_bitor, - ACTIONS(9192), 1, + ACTIONS(8907), 1, anon_sym_bitand, - ACTIONS(9376), 1, + ACTIONS(9061), 1, anon_sym_GT2, - STATE(4226), 1, + STATE(4059), 1, sym_argument_list, - STATE(4227), 1, + STATE(4060), 1, sym_subscript_argument_list, - STATE(8977), 1, + STATE(8233), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + ACTIONS(8877), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + ACTIONS(8879), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, + ACTIONS(8883), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9170), 2, + ACTIONS(8885), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9174), 2, + ACTIONS(8889), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9194), 2, + ACTIONS(8909), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, + ACTIONS(8893), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9180), 4, + ACTIONS(8895), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [227604] = 3, + [180292] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9063), 1, + sym_identifier, + ACTIONS(9067), 1, + sym_primitive_type, + STATE(4982), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9065), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5965), 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(5969), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [180347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7356), 16, + ACTIONS(6660), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -520977,7 +480842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7354), 23, + ACTIONS(6658), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -521001,210 +480866,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [227651] = 28, + [180394] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7617), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7631), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8873), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8875), 1, + anon_sym_COMMA, + ACTIONS(8881), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8887), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8891), 1, anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8897), 1, + anon_sym_LT_LT, + ACTIONS(8899), 1, + anon_sym_GT_GT, + ACTIONS(8901), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8903), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8905), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8907), 1, anon_sym_bitand, - ACTIONS(9230), 1, - anon_sym_COMMA, - ACTIONS(9378), 1, - anon_sym_RPAREN, - STATE(3181), 1, + ACTIONS(9069), 1, + anon_sym_GT2, + STATE(4059), 1, sym_argument_list, - STATE(3186), 1, + STATE(4060), 1, sym_subscript_argument_list, - STATE(9009), 1, - aux_sym_argument_list_repeat1, - ACTIONS(7004), 2, + STATE(8318), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8877), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8879), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8883), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8885), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8889), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8909), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8893), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8895), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [227748] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7916), 1, - anon_sym_const, - ACTIONS(8910), 1, - anon_sym_LPAREN2, - ACTIONS(8918), 1, - anon_sym_LBRACK, - ACTIONS(8934), 1, - anon_sym_STAR, - ACTIONS(8936), 1, - anon_sym_AMP_AMP, - ACTIONS(8938), 1, - anon_sym_AMP, - STATE(3952), 1, - sym_parameter_list, - STATE(7280), 1, - sym_function_declarator_seq, - STATE(7354), 1, - sym_abstract_declarator, - STATE(5687), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(7278), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7907), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(9250), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [227817] = 28, + [180491] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8818), 1, + anon_sym_COMMA, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8852), 1, anon_sym_bitand, - ACTIONS(9222), 1, - anon_sym_COMMA, - ACTIONS(9380), 1, - anon_sym_RPAREN, - STATE(3181), 1, + ACTIONS(9071), 1, + anon_sym_RBRACK, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(9029), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(7004), 2, + STATE(8186), 1, + aux_sym_lambda_capture_specifier_repeat1, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8838), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [180588] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9073), 1, + anon_sym_LPAREN2, + ACTIONS(2191), 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, - [227914] = 6, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(2193), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_STAR, + 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [180637] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4061), 1, + ACTIONS(4238), 1, anon_sym_LBRACE, - ACTIONS(8832), 1, + ACTIONS(8521), 1, anon_sym_LPAREN2, - STATE(6114), 2, + STATE(5654), 2, sym_argument_list, sym_initializer_list, - ACTIONS(6916), 11, + ACTIONS(6377), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -521216,7 +481071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6914), 24, + ACTIONS(6375), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -521241,355 +481096,330 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [227967] = 28, + [180690] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7617), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7631), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8873), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8875), 1, + anon_sym_COMMA, + ACTIONS(8881), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8887), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8891), 1, anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8897), 1, + anon_sym_LT_LT, + ACTIONS(8899), 1, + anon_sym_GT_GT, + ACTIONS(8901), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8903), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8905), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8907), 1, anon_sym_bitand, - ACTIONS(9230), 1, - anon_sym_COMMA, - ACTIONS(9382), 1, - anon_sym_RPAREN, - STATE(3181), 1, + ACTIONS(9075), 1, + anon_sym_GT2, + STATE(4059), 1, sym_argument_list, - STATE(3186), 1, + STATE(4060), 1, sym_subscript_argument_list, - STATE(8609), 1, - aux_sym_argument_list_repeat1, - ACTIONS(7004), 2, + STATE(8388), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8877), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8879), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8883), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8885), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8889), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [228064] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, - anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, - anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - ACTIONS(9384), 1, - anon_sym_COMMA, - ACTIONS(9386), 1, - anon_sym_RBRACE, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - STATE(8612), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8909), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8893), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8895), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [180787] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2355), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 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(2353), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [228161] = 28, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [180834] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(7617), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7631), 1, anon_sym_DOT, - ACTIONS(9158), 1, + ACTIONS(8873), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(9166), 1, + ACTIONS(8881), 1, anon_sym_SLASH, - ACTIONS(9172), 1, + ACTIONS(8887), 1, anon_sym_PIPE, - ACTIONS(9176), 1, + ACTIONS(8891), 1, anon_sym_AMP, - ACTIONS(9182), 1, + ACTIONS(8897), 1, anon_sym_LT_LT, - ACTIONS(9184), 1, + ACTIONS(8899), 1, anon_sym_GT_GT, - ACTIONS(9186), 1, + ACTIONS(8901), 1, anon_sym_QMARK, - ACTIONS(9188), 1, + ACTIONS(8903), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, + ACTIONS(8905), 1, anon_sym_bitor, - ACTIONS(9192), 1, + ACTIONS(8907), 1, anon_sym_bitand, - ACTIONS(9388), 1, + ACTIONS(9077), 1, anon_sym_GT2, - STATE(4226), 1, + STATE(4059), 1, sym_argument_list, - STATE(4227), 1, + STATE(4060), 1, sym_subscript_argument_list, - STATE(8616), 1, + STATE(8430), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + ACTIONS(8877), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + ACTIONS(8879), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, + ACTIONS(8883), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9170), 2, + ACTIONS(8885), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9174), 2, + ACTIONS(8889), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9194), 2, + ACTIONS(8909), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, + ACTIONS(8893), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9180), 4, + ACTIONS(8895), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [228258] = 28, + [180931] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9230), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8919), 1, anon_sym_COMMA, - ACTIONS(9390), 1, + ACTIONS(9079), 1, anon_sym_RPAREN, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8633), 1, - aux_sym_argument_list_repeat1, - ACTIONS(7004), 2, + STATE(8322), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [228355] = 28, + [181028] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7617), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7631), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8873), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8875), 1, + anon_sym_COMMA, + ACTIONS(8881), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8887), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8891), 1, anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8897), 1, + anon_sym_LT_LT, + ACTIONS(8899), 1, + anon_sym_GT_GT, + ACTIONS(8901), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8903), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8905), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8907), 1, anon_sym_bitand, - ACTIONS(9222), 1, - anon_sym_COMMA, - ACTIONS(9392), 1, - anon_sym_RPAREN, - STATE(3181), 1, + ACTIONS(9081), 1, + anon_sym_GT2, + STATE(4059), 1, sym_argument_list, - STATE(3186), 1, + STATE(4060), 1, sym_subscript_argument_list, - STATE(8646), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(7004), 2, + STATE(8456), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8877), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8879), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8883), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8885), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8889), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8909), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8893), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8895), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [228452] = 3, + [181125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7203), 16, + ACTIONS(4306), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -521606,7 +481436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7201), 23, + ACTIONS(4302), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -521630,10 +481460,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [228499] = 3, + [181172] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7120), 1, + anon_sym_LPAREN2, + ACTIONS(7617), 1, + anon_sym_LBRACK, + ACTIONS(7631), 1, + anon_sym_DOT, + ACTIONS(8873), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8875), 1, + anon_sym_COMMA, + ACTIONS(8881), 1, + anon_sym_SLASH, + ACTIONS(8887), 1, + anon_sym_PIPE, + ACTIONS(8891), 1, + anon_sym_AMP, + ACTIONS(8897), 1, + anon_sym_LT_LT, + ACTIONS(8899), 1, + anon_sym_GT_GT, + ACTIONS(8901), 1, + anon_sym_QMARK, + ACTIONS(8903), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8905), 1, + anon_sym_bitor, + ACTIONS(8907), 1, + anon_sym_bitand, + ACTIONS(9083), 1, + anon_sym_GT2, + STATE(4059), 1, + sym_argument_list, + STATE(4060), 1, + sym_subscript_argument_list, + STATE(8516), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7633), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8877), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8879), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8883), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8885), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8889), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8909), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8893), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8895), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [181269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7229), 16, + ACTIONS(6675), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -521650,7 +481549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7227), 23, + ACTIONS(6673), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -521674,399 +481573,489 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [228546] = 28, + [181316] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7617), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7631), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8873), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8875), 1, + anon_sym_COMMA, + ACTIONS(8881), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8887), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8891), 1, anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8897), 1, + anon_sym_LT_LT, + ACTIONS(8899), 1, + anon_sym_GT_GT, + ACTIONS(8901), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8903), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8905), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8907), 1, anon_sym_bitand, - ACTIONS(9230), 1, - anon_sym_COMMA, - ACTIONS(9394), 1, - anon_sym_RPAREN, - STATE(3181), 1, + ACTIONS(9085), 1, + anon_sym_GT2, + STATE(4059), 1, sym_argument_list, - STATE(3186), 1, + STATE(4060), 1, sym_subscript_argument_list, - STATE(8798), 1, - aux_sym_argument_list_repeat1, - ACTIONS(7004), 2, + STATE(8531), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8877), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8879), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8883), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8885), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8889), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8909), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8893), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8895), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [228643] = 28, + [181413] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7617), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7631), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8873), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8875), 1, + anon_sym_COMMA, + ACTIONS(8881), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8887), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8891), 1, anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8897), 1, + anon_sym_LT_LT, + ACTIONS(8899), 1, + anon_sym_GT_GT, + ACTIONS(8901), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8903), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8905), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8907), 1, anon_sym_bitand, - ACTIONS(9396), 1, - anon_sym_COMMA, - ACTIONS(9398), 1, - anon_sym_RBRACE, - STATE(3181), 1, + ACTIONS(9087), 1, + anon_sym_GT2, + STATE(4059), 1, sym_argument_list, - STATE(3186), 1, + STATE(4060), 1, sym_subscript_argument_list, - STATE(8800), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(7004), 2, + STATE(8563), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8877), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8879), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8883), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8885), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8889), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8909), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8893), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8895), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [228740] = 28, + [181510] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(7617), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7631), 1, anon_sym_DOT, - ACTIONS(9158), 1, + ACTIONS(8873), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(9166), 1, + ACTIONS(8881), 1, anon_sym_SLASH, - ACTIONS(9172), 1, + ACTIONS(8887), 1, anon_sym_PIPE, - ACTIONS(9176), 1, + ACTIONS(8891), 1, anon_sym_AMP, - ACTIONS(9182), 1, + ACTIONS(8897), 1, anon_sym_LT_LT, - ACTIONS(9184), 1, + ACTIONS(8899), 1, anon_sym_GT_GT, - ACTIONS(9186), 1, + ACTIONS(8901), 1, anon_sym_QMARK, - ACTIONS(9188), 1, + ACTIONS(8903), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, + ACTIONS(8905), 1, anon_sym_bitor, - ACTIONS(9192), 1, + ACTIONS(8907), 1, anon_sym_bitand, - ACTIONS(9400), 1, + ACTIONS(9089), 1, anon_sym_GT2, - STATE(4226), 1, + STATE(4059), 1, sym_argument_list, - STATE(4227), 1, + STATE(4060), 1, sym_subscript_argument_list, - STATE(8813), 1, + STATE(8581), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + ACTIONS(8877), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + ACTIONS(8879), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, + ACTIONS(8883), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9170), 2, + ACTIONS(8885), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9174), 2, + ACTIONS(8889), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9194), 2, + ACTIONS(8909), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, + ACTIONS(8893), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9180), 4, + ACTIONS(8895), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [228837] = 28, + [181607] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7617), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7631), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8873), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8875), 1, + anon_sym_COMMA, + ACTIONS(8881), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8887), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8891), 1, anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8897), 1, + anon_sym_LT_LT, + ACTIONS(8899), 1, + anon_sym_GT_GT, + ACTIONS(8901), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8903), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8905), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8907), 1, anon_sym_bitand, - ACTIONS(9230), 1, - anon_sym_COMMA, - ACTIONS(9402), 1, - anon_sym_RPAREN, - STATE(3181), 1, + ACTIONS(9091), 1, + anon_sym_GT2, + STATE(4059), 1, sym_argument_list, - STATE(3186), 1, + STATE(4060), 1, sym_subscript_argument_list, - STATE(8830), 1, - aux_sym_argument_list_repeat1, - ACTIONS(7004), 2, + STATE(8603), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8877), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8879), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8883), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8885), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8889), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8909), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8893), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8895), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [228934] = 28, + [181704] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7617), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7631), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8873), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8875), 1, + anon_sym_COMMA, + ACTIONS(8881), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8887), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8891), 1, anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8897), 1, + anon_sym_LT_LT, + ACTIONS(8899), 1, + anon_sym_GT_GT, + ACTIONS(8901), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8903), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8905), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8907), 1, anon_sym_bitand, - ACTIONS(9222), 1, - anon_sym_COMMA, - ACTIONS(9404), 1, - anon_sym_RPAREN, - STATE(3181), 1, + ACTIONS(9093), 1, + anon_sym_GT2, + STATE(4059), 1, sym_argument_list, - STATE(3186), 1, + STATE(4060), 1, sym_subscript_argument_list, - STATE(8848), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(7004), 2, + STATE(8626), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8877), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8879), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8883), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8885), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8889), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8909), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8893), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8895), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [229031] = 3, + [181801] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(7334), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(7120), 1, + anon_sym_LPAREN2, + ACTIONS(7617), 1, + anon_sym_LBRACK, + ACTIONS(7631), 1, + anon_sym_DOT, + ACTIONS(8873), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8875), 1, + anon_sym_COMMA, + ACTIONS(8881), 1, anon_sym_SLASH, + ACTIONS(8887), 1, anon_sym_PIPE, + ACTIONS(8891), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, + ACTIONS(8897), 1, + anon_sym_LT_LT, + ACTIONS(8899), 1, + anon_sym_GT_GT, + ACTIONS(8901), 1, + anon_sym_QMARK, + ACTIONS(8903), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8905), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(8907), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(7332), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + ACTIONS(9095), 1, + anon_sym_GT2, + STATE(4059), 1, + sym_argument_list, + STATE(4060), 1, + sym_subscript_argument_list, + STATE(8639), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7633), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8877), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8879), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8883), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8885), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8889), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8909), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8893), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8895), 4, + anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [181898] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(8687), 1, + anon_sym_SLASH, + ACTIONS(8693), 1, + anon_sym_PIPE, + ACTIONS(8697), 1, + anon_sym_AMP, + ACTIONS(8703), 1, + anon_sym_GT_EQ, + ACTIONS(8711), 1, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(8713), 1, + anon_sym_bitor, + ACTIONS(8715), 1, + anon_sym_bitand, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [229078] = 3, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8683), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8685), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8689), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8691), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8695), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8699), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8701), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7118), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + [181987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7342), 16, + ACTIONS(5680), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -522083,7 +482072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7340), 23, + ACTIONS(3211), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -522107,54 +482096,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [229125] = 3, + [182034] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7387), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8687), 1, anon_sym_SLASH, + ACTIONS(8693), 1, anon_sym_PIPE, + ACTIONS(8697), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, + ACTIONS(8703), 1, + anon_sym_GT_EQ, + ACTIONS(8709), 1, + anon_sym_QMARK, + ACTIONS(8711), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8713), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(8715), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(7385), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8683), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8685), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8689), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8691), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8695), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(8705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [229172] = 3, + ACTIONS(6689), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + ACTIONS(8699), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8701), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [182127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7391), 16, + ACTIONS(6691), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -522171,7 +482183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7389), 23, + ACTIONS(6689), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -522195,10 +482207,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [229219] = 3, + [182174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7287), 16, + ACTIONS(6699), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -522215,7 +482227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7285), 23, + ACTIONS(6697), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -522239,10 +482251,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [229266] = 3, + [182221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7338), 16, + ACTIONS(6707), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -522259,7 +482271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7336), 23, + ACTIONS(6705), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -522283,104 +482295,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [229313] = 28, + [182268] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9230), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8861), 1, anon_sym_COMMA, - ACTIONS(9406), 1, + ACTIONS(9097), 1, anon_sym_RPAREN, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8924), 1, + STATE(8307), 1, aux_sym_argument_list_repeat1, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [229410] = 3, + [182365] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7213), 16, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(8687), 1, + anon_sym_SLASH, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8685), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7019), 7, 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_identifier, - ACTIONS(7211), 23, + ACTIONS(7021), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -522389,2001 +482407,1578 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [229457] = 28, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [182430] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9158), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(9166), 1, + ACTIONS(8687), 1, anon_sym_SLASH, - ACTIONS(9172), 1, + ACTIONS(8693), 1, anon_sym_PIPE, - ACTIONS(9176), 1, + ACTIONS(8697), 1, anon_sym_AMP, - ACTIONS(9182), 1, - anon_sym_LT_LT, - ACTIONS(9184), 1, - anon_sym_GT_GT, - ACTIONS(9186), 1, - anon_sym_QMARK, - ACTIONS(9188), 1, + ACTIONS(8703), 1, + anon_sym_GT_EQ, + ACTIONS(8711), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, + ACTIONS(8713), 1, anon_sym_bitor, - ACTIONS(9192), 1, + ACTIONS(8715), 1, anon_sym_bitand, - ACTIONS(9408), 1, - anon_sym_GT2, - STATE(4226), 1, + STATE(2617), 1, sym_argument_list, - STATE(4227), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8938), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8683), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + ACTIONS(8685), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9170), 2, + ACTIONS(8691), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9174), 2, + ACTIONS(8695), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, + ACTIONS(8705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8699), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9180), 4, + ACTIONS(8701), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [229554] = 28, + ACTIONS(7021), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_or, + [182517] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8687), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8693), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8697), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8703), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8711), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8713), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8715), 1, anon_sym_bitand, - ACTIONS(9230), 1, - anon_sym_COMMA, - ACTIONS(9410), 1, - anon_sym_RPAREN, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8954), 1, - aux_sym_argument_list_repeat1, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8683), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8685), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8695), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8699), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [229651] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6360), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8701), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6362), 28, + ACTIONS(7021), 9, 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_SEMI, + anon_sym___attribute__, 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [229698] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8287), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(8289), 33, - anon_sym_AMP, - anon_sym___extension__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [229745] = 28, + [182602] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7019), 1, + anon_sym_PIPE, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9158), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(9166), 1, + ACTIONS(8687), 1, anon_sym_SLASH, - ACTIONS(9172), 1, - anon_sym_PIPE, - ACTIONS(9176), 1, + ACTIONS(8697), 1, anon_sym_AMP, - ACTIONS(9182), 1, - anon_sym_LT_LT, - ACTIONS(9184), 1, - anon_sym_GT_GT, - ACTIONS(9186), 1, - anon_sym_QMARK, - ACTIONS(9188), 1, + ACTIONS(8703), 1, + anon_sym_GT_EQ, + ACTIONS(8711), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, - anon_sym_bitor, - ACTIONS(9192), 1, + ACTIONS(8715), 1, anon_sym_bitand, - ACTIONS(9412), 1, - anon_sym_GT2, - STATE(4226), 1, + STATE(2617), 1, sym_argument_list, - STATE(4227), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(9037), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8683), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + ACTIONS(8685), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9170), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9174), 2, + ACTIONS(8695), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, + ACTIONS(8705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8699), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9180), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [229842] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3078), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8701), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3080), 28, + ACTIONS(7021), 10, 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_SEMI, + anon_sym___attribute__, 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [229889] = 28, + [182685] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7019), 1, + anon_sym_PIPE, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9158), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(9166), 1, + ACTIONS(8687), 1, anon_sym_SLASH, - ACTIONS(9172), 1, - anon_sym_PIPE, - ACTIONS(9176), 1, + ACTIONS(8697), 1, anon_sym_AMP, - ACTIONS(9182), 1, - anon_sym_LT_LT, - ACTIONS(9184), 1, - anon_sym_GT_GT, - ACTIONS(9186), 1, - anon_sym_QMARK, - ACTIONS(9188), 1, + ACTIONS(8703), 1, + anon_sym_GT_EQ, + ACTIONS(8711), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, - anon_sym_bitor, - ACTIONS(9192), 1, + ACTIONS(8715), 1, anon_sym_bitand, - ACTIONS(9414), 1, - anon_sym_GT2, - STATE(4226), 1, + STATE(2617), 1, sym_argument_list, - STATE(4227), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(9101), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8683), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + ACTIONS(8685), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9170), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9174), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, + ACTIONS(8705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8699), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9180), 4, + ACTIONS(8701), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [229986] = 28, + ACTIONS(7021), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + [182766] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9158), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(9166), 1, + ACTIONS(8687), 1, anon_sym_SLASH, - ACTIONS(9172), 1, - anon_sym_PIPE, - ACTIONS(9176), 1, - anon_sym_AMP, - ACTIONS(9182), 1, - anon_sym_LT_LT, - ACTIONS(9184), 1, - anon_sym_GT_GT, - ACTIONS(9186), 1, - anon_sym_QMARK, - ACTIONS(9188), 1, + ACTIONS(8703), 1, + anon_sym_GT_EQ, + ACTIONS(8711), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, - anon_sym_bitor, - ACTIONS(9192), 1, - anon_sym_bitand, - ACTIONS(9416), 1, - anon_sym_GT2, - STATE(4226), 1, + STATE(2617), 1, sym_argument_list, - STATE(4227), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8557), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, + ACTIONS(7019), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8683), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + ACTIONS(8685), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9170), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9174), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, + ACTIONS(8705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8699), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9180), 4, + ACTIONS(8701), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [230083] = 28, + ACTIONS(7021), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + [182843] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9158), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(9166), 1, + ACTIONS(8687), 1, anon_sym_SLASH, - ACTIONS(9172), 1, - anon_sym_PIPE, - ACTIONS(9176), 1, - anon_sym_AMP, - ACTIONS(9182), 1, - anon_sym_LT_LT, - ACTIONS(9184), 1, - anon_sym_GT_GT, - ACTIONS(9186), 1, - anon_sym_QMARK, - ACTIONS(9188), 1, + ACTIONS(8703), 1, + anon_sym_GT_EQ, + ACTIONS(8711), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, - anon_sym_bitor, - ACTIONS(9192), 1, - anon_sym_bitand, - ACTIONS(9418), 1, - anon_sym_GT2, - STATE(4226), 1, + STATE(2617), 1, sym_argument_list, - STATE(4227), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8571), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, + ACTIONS(7019), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8683), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + ACTIONS(8685), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, + ACTIONS(8705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8701), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7021), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9170), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9174), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(9180), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [230180] = 28, + [182918] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9158), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(9166), 1, + ACTIONS(8687), 1, anon_sym_SLASH, - ACTIONS(9172), 1, - anon_sym_PIPE, - ACTIONS(9176), 1, - anon_sym_AMP, - ACTIONS(9182), 1, - anon_sym_LT_LT, - ACTIONS(9184), 1, - anon_sym_GT_GT, - ACTIONS(9186), 1, - anon_sym_QMARK, - ACTIONS(9188), 1, + ACTIONS(8711), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, - anon_sym_bitor, - ACTIONS(9192), 1, - anon_sym_bitand, - ACTIONS(9420), 1, - anon_sym_GT2, - STATE(4226), 1, + STATE(2617), 1, sym_argument_list, - STATE(4227), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8582), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8683), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + ACTIONS(8685), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, + ACTIONS(8705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7019), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7021), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9170), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9174), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9180), 4, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [230277] = 28, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [182989] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9158), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(9166), 1, + ACTIONS(8687), 1, anon_sym_SLASH, - ACTIONS(9172), 1, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8683), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8685), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7019), 5, anon_sym_PIPE, - ACTIONS(9176), 1, anon_sym_AMP, - ACTIONS(9182), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7021), 20, + 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, - ACTIONS(9184), 1, anon_sym_GT_GT, - ACTIONS(9186), 1, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, - ACTIONS(9188), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(9192), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(9422), 1, - anon_sym_GT2, - STATE(4226), 1, + anon_sym_not_eq, + [183056] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(8687), 1, + anon_sym_SLASH, + STATE(2617), 1, sym_argument_list, - STATE(4227), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8600), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8683), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + ACTIONS(8685), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, + ACTIONS(8705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7019), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7021), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9170), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9174), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9180), 4, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [230374] = 28, + anon_sym_SEMI, + anon_sym___attribute__, + 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, + [183125] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9158), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, + ACTIONS(7699), 1, anon_sym_COMMA, - ACTIONS(9166), 1, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(9172), 1, - anon_sym_PIPE, - ACTIONS(9176), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(9182), 1, - anon_sym_LT_LT, - ACTIONS(9184), 1, - anon_sym_GT_GT, - ACTIONS(9186), 1, - anon_sym_QMARK, - ACTIONS(9188), 1, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, - anon_sym_bitor, - ACTIONS(9192), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9424), 1, - anon_sym_GT2, - STATE(4226), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + STATE(2617), 1, sym_argument_list, - STATE(4227), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8617), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9170), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9174), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, + ACTIONS(8969), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9180), 4, + ACTIONS(8591), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [230471] = 28, + [183220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7801), 1, - anon_sym_DOT, - ACTIONS(9158), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(9166), 1, + ACTIONS(6735), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(9172), 1, anon_sym_PIPE, - ACTIONS(9176), 1, anon_sym_AMP, - ACTIONS(9182), 1, + 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_identifier, + ACTIONS(6733), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + 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(9184), 1, anon_sym_GT_GT, - ACTIONS(9186), 1, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(9188), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, - anon_sym_bitor, - ACTIONS(9192), 1, - anon_sym_bitand, - ACTIONS(9426), 1, - anon_sym_GT2, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - STATE(8629), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + [183267] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6741), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + 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_identifier, + ACTIONS(6739), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9170), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9174), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9180), 4, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [230568] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7801), 1, - anon_sym_DOT, - ACTIONS(9158), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(9166), 1, - anon_sym_SLASH, - ACTIONS(9172), 1, - anon_sym_PIPE, - ACTIONS(9176), 1, - anon_sym_AMP, - ACTIONS(9182), 1, anon_sym_LT_LT, - ACTIONS(9184), 1, anon_sym_GT_GT, - ACTIONS(9186), 1, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(9188), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, - anon_sym_bitor, - ACTIONS(9192), 1, - anon_sym_bitand, - ACTIONS(9428), 1, - anon_sym_GT2, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - STATE(8638), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + [183314] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6749), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + 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_identifier, + ACTIONS(6747), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9170), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9174), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9180), 4, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [230665] = 28, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [183361] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9158), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(9166), 1, + ACTIONS(8687), 1, anon_sym_SLASH, - ACTIONS(9172), 1, + ACTIONS(8693), 1, anon_sym_PIPE, - ACTIONS(9176), 1, + ACTIONS(8697), 1, anon_sym_AMP, - ACTIONS(9182), 1, - anon_sym_LT_LT, - ACTIONS(9184), 1, - anon_sym_GT_GT, - ACTIONS(9186), 1, + ACTIONS(8703), 1, + anon_sym_GT_EQ, + ACTIONS(8709), 1, anon_sym_QMARK, - ACTIONS(9188), 1, + ACTIONS(8711), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, + ACTIONS(8713), 1, anon_sym_bitor, - ACTIONS(9192), 1, + ACTIONS(8715), 1, anon_sym_bitand, - ACTIONS(9430), 1, - anon_sym_GT2, - STATE(4226), 1, + STATE(2617), 1, sym_argument_list, - STATE(4227), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8648), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8683), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + ACTIONS(8685), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, + ACTIONS(8689), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9170), 2, + ACTIONS(8691), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9174), 2, + ACTIONS(8695), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, + ACTIONS(8705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8699), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9180), 4, + ACTIONS(8701), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [230762] = 28, + ACTIONS(9099), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [183454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7801), 1, - anon_sym_DOT, - ACTIONS(9158), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(9166), 1, + ACTIONS(6777), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(9172), 1, anon_sym_PIPE, - ACTIONS(9176), 1, anon_sym_AMP, - ACTIONS(9182), 1, - anon_sym_LT_LT, - ACTIONS(9184), 1, - anon_sym_GT_GT, - ACTIONS(9186), 1, - anon_sym_QMARK, - ACTIONS(9188), 1, - anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(9192), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(9432), 1, - anon_sym_GT2, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - STATE(8657), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9162), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9164), 2, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6775), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9170), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9174), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9180), 4, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [230859] = 28, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [183501] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9158), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(9166), 1, + ACTIONS(8687), 1, anon_sym_SLASH, - ACTIONS(9172), 1, + ACTIONS(8693), 1, anon_sym_PIPE, - ACTIONS(9176), 1, + ACTIONS(8697), 1, anon_sym_AMP, - ACTIONS(9182), 1, - anon_sym_LT_LT, - ACTIONS(9184), 1, - anon_sym_GT_GT, - ACTIONS(9186), 1, - anon_sym_QMARK, - ACTIONS(9188), 1, + ACTIONS(8703), 1, + anon_sym_GT_EQ, + ACTIONS(8711), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, + ACTIONS(8713), 1, anon_sym_bitor, - ACTIONS(9192), 1, + ACTIONS(8715), 1, anon_sym_bitand, - ACTIONS(9434), 1, - anon_sym_GT2, - STATE(4226), 1, + STATE(2617), 1, sym_argument_list, - STATE(4227), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8666), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8683), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + ACTIONS(8685), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, + ACTIONS(8689), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9170), 2, + ACTIONS(8691), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9174), 2, + ACTIONS(8695), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, + ACTIONS(8705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8699), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9180), 4, + ACTIONS(8701), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [230956] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7801), 1, - anon_sym_DOT, - ACTIONS(9158), 1, + ACTIONS(7062), 5, anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, anon_sym_COMMA, - ACTIONS(9166), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + [183590] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6787), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(9172), 1, anon_sym_PIPE, - ACTIONS(9176), 1, anon_sym_AMP, - ACTIONS(9182), 1, - anon_sym_LT_LT, - ACTIONS(9184), 1, - anon_sym_GT_GT, - ACTIONS(9186), 1, - anon_sym_QMARK, - ACTIONS(9188), 1, - anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(9192), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(9436), 1, - anon_sym_GT2, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - STATE(8672), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9162), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9164), 2, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6785), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9170), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9174), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9180), 4, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [231053] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7801), 1, - anon_sym_DOT, - ACTIONS(9158), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(9166), 1, - anon_sym_SLASH, - ACTIONS(9172), 1, - anon_sym_PIPE, - ACTIONS(9176), 1, - anon_sym_AMP, - ACTIONS(9182), 1, anon_sym_LT_LT, - ACTIONS(9184), 1, anon_sym_GT_GT, - ACTIONS(9186), 1, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(9188), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, - anon_sym_bitor, - ACTIONS(9192), 1, - anon_sym_bitand, - ACTIONS(9438), 1, - anon_sym_GT2, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - STATE(8677), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + [183637] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6791), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + 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_identifier, + ACTIONS(6789), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9170), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9174), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9180), 4, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [231150] = 28, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [183684] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9158), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(9166), 1, + ACTIONS(8687), 1, anon_sym_SLASH, - ACTIONS(9172), 1, + ACTIONS(8693), 1, anon_sym_PIPE, - ACTIONS(9176), 1, + ACTIONS(8697), 1, anon_sym_AMP, - ACTIONS(9182), 1, - anon_sym_LT_LT, - ACTIONS(9184), 1, - anon_sym_GT_GT, - ACTIONS(9186), 1, + ACTIONS(8703), 1, + anon_sym_GT_EQ, + ACTIONS(8709), 1, anon_sym_QMARK, - ACTIONS(9188), 1, + ACTIONS(8711), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, + ACTIONS(8713), 1, anon_sym_bitor, - ACTIONS(9192), 1, + ACTIONS(8715), 1, anon_sym_bitand, - ACTIONS(9440), 1, - anon_sym_GT2, - STATE(4226), 1, + STATE(2617), 1, sym_argument_list, - STATE(4227), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8684), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8683), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + ACTIONS(8685), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, + ACTIONS(8689), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9170), 2, + ACTIONS(8691), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9174), 2, + ACTIONS(8695), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, + ACTIONS(8705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7134), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + ACTIONS(8699), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9180), 4, + ACTIONS(8701), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [231247] = 28, + [183777] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9158), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(9166), 1, + ACTIONS(8687), 1, anon_sym_SLASH, - ACTIONS(9172), 1, + ACTIONS(8693), 1, anon_sym_PIPE, - ACTIONS(9176), 1, + ACTIONS(8697), 1, anon_sym_AMP, - ACTIONS(9182), 1, - anon_sym_LT_LT, - ACTIONS(9184), 1, - anon_sym_GT_GT, - ACTIONS(9186), 1, - anon_sym_QMARK, - ACTIONS(9188), 1, + ACTIONS(8703), 1, + anon_sym_GT_EQ, + ACTIONS(8711), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, + ACTIONS(8713), 1, anon_sym_bitor, - ACTIONS(9192), 1, + ACTIONS(8715), 1, anon_sym_bitand, - ACTIONS(9442), 1, - anon_sym_GT2, - STATE(4226), 1, + STATE(2617), 1, sym_argument_list, - STATE(4227), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8691), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8683), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + ACTIONS(8685), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, + ACTIONS(8689), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9170), 2, + ACTIONS(8691), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9174), 2, + ACTIONS(8695), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, + ACTIONS(8705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8699), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9180), 4, + ACTIONS(8701), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [231344] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7801), 1, - anon_sym_DOT, - ACTIONS(9158), 1, + ACTIONS(7107), 5, anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, anon_sym_COMMA, - ACTIONS(9166), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + [183866] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6802), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(9172), 1, anon_sym_PIPE, - ACTIONS(9176), 1, anon_sym_AMP, - ACTIONS(9182), 1, - anon_sym_LT_LT, - ACTIONS(9184), 1, - anon_sym_GT_GT, - ACTIONS(9186), 1, - anon_sym_QMARK, - ACTIONS(9188), 1, - anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(9192), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(9444), 1, - anon_sym_GT2, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - STATE(8696), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9162), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9164), 2, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6800), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9170), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9174), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9180), 4, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [231441] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7801), 1, - anon_sym_DOT, - ACTIONS(9158), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(9166), 1, - anon_sym_SLASH, - ACTIONS(9172), 1, - anon_sym_PIPE, - ACTIONS(9176), 1, - anon_sym_AMP, - ACTIONS(9182), 1, anon_sym_LT_LT, - ACTIONS(9184), 1, anon_sym_GT_GT, - ACTIONS(9186), 1, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(9188), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, - anon_sym_bitor, - ACTIONS(9192), 1, - anon_sym_bitand, - ACTIONS(9446), 1, - anon_sym_GT2, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - STATE(8702), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + [183913] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6806), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + 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_identifier, + ACTIONS(6804), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9170), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9174), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9180), 4, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [231538] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9450), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(9448), 33, - anon_sym_AMP, - anon_sym___extension__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [231585] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7801), 1, - anon_sym_DOT, - ACTIONS(9158), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(9166), 1, - anon_sym_SLASH, - ACTIONS(9172), 1, - anon_sym_PIPE, - ACTIONS(9176), 1, - anon_sym_AMP, - ACTIONS(9182), 1, anon_sym_LT_LT, - ACTIONS(9184), 1, anon_sym_GT_GT, - ACTIONS(9186), 1, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(9188), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, - anon_sym_bitor, - ACTIONS(9192), 1, - anon_sym_bitand, - ACTIONS(9452), 1, - anon_sym_GT2, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - STATE(8708), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + [183960] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6603), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + 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_identifier, + ACTIONS(6601), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9170), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9174), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9180), 4, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [231682] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7801), 1, - anon_sym_DOT, - ACTIONS(9158), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(9166), 1, - anon_sym_SLASH, - ACTIONS(9172), 1, - anon_sym_PIPE, - ACTIONS(9176), 1, - anon_sym_AMP, - ACTIONS(9182), 1, anon_sym_LT_LT, - ACTIONS(9184), 1, anon_sym_GT_GT, - ACTIONS(9186), 1, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(9188), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, - anon_sym_bitor, - ACTIONS(9192), 1, - anon_sym_bitand, - ACTIONS(9454), 1, - anon_sym_GT2, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - STATE(8715), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + [184007] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6759), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + 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_identifier, + ACTIONS(6757), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9170), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9174), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9180), 4, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [231779] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7801), 1, - anon_sym_DOT, - ACTIONS(9158), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(9166), 1, - anon_sym_SLASH, - ACTIONS(9172), 1, - anon_sym_PIPE, - ACTIONS(9176), 1, - anon_sym_AMP, - ACTIONS(9182), 1, anon_sym_LT_LT, - ACTIONS(9184), 1, anon_sym_GT_GT, - ACTIONS(9186), 1, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(9188), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, - anon_sym_bitor, - ACTIONS(9192), 1, - anon_sym_bitand, - ACTIONS(9456), 1, - anon_sym_GT2, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - STATE(8721), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + [184054] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6656), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + 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_identifier, + ACTIONS(6654), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9170), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9174), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9180), 4, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [231876] = 28, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [184101] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9158), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(9166), 1, + ACTIONS(8687), 1, anon_sym_SLASH, - ACTIONS(9172), 1, + ACTIONS(8693), 1, anon_sym_PIPE, - ACTIONS(9176), 1, + ACTIONS(8697), 1, anon_sym_AMP, - ACTIONS(9182), 1, - anon_sym_LT_LT, - ACTIONS(9184), 1, - anon_sym_GT_GT, - ACTIONS(9186), 1, + ACTIONS(8703), 1, + anon_sym_GT_EQ, + ACTIONS(8709), 1, anon_sym_QMARK, - ACTIONS(9188), 1, + ACTIONS(8711), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, + ACTIONS(8713), 1, anon_sym_bitor, - ACTIONS(9192), 1, + ACTIONS(8715), 1, anon_sym_bitand, - ACTIONS(9458), 1, - anon_sym_GT2, - STATE(4226), 1, + STATE(2617), 1, sym_argument_list, - STATE(4227), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8727), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8683), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + ACTIONS(8685), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, + ACTIONS(8689), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9170), 2, + ACTIONS(8691), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9174), 2, + ACTIONS(8695), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, + ACTIONS(8705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7094), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + ACTIONS(8699), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9180), 4, + ACTIONS(8701), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [231973] = 28, + [184194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7801), 1, - anon_sym_DOT, - ACTIONS(9158), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(9166), 1, + ACTIONS(6584), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(9172), 1, anon_sym_PIPE, - ACTIONS(9176), 1, anon_sym_AMP, - ACTIONS(9182), 1, + 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_identifier, + ACTIONS(6582), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + 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(9184), 1, anon_sym_GT_GT, - ACTIONS(9186), 1, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(9188), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, - anon_sym_bitor, - ACTIONS(9192), 1, - anon_sym_bitand, - ACTIONS(9460), 1, - anon_sym_GT2, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - STATE(8733), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + [184241] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6711), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + 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_identifier, + ACTIONS(6709), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9170), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9174), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9180), 4, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [232070] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7801), 1, - anon_sym_DOT, - ACTIONS(9158), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(9166), 1, - anon_sym_SLASH, - ACTIONS(9172), 1, - anon_sym_PIPE, - ACTIONS(9176), 1, - anon_sym_AMP, - ACTIONS(9182), 1, anon_sym_LT_LT, - ACTIONS(9184), 1, anon_sym_GT_GT, - ACTIONS(9186), 1, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(9188), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, - anon_sym_bitor, - ACTIONS(9192), 1, - anon_sym_bitand, - ACTIONS(9462), 1, - anon_sym_GT2, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - STATE(8739), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + [184288] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6703), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + 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_identifier, + ACTIONS(6701), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9170), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9174), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9180), 4, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [232167] = 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [184335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3096), 11, + ACTIONS(6314), 10, + anon_sym_DOT_DOT_DOT, 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(3094), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6312), 29, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -524392,7 +483987,11 @@ 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___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -524406,452 +484005,504 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [232214] = 28, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [184382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7801), 1, - anon_sym_DOT, - ACTIONS(9158), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(9166), 1, + ACTIONS(6607), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(9172), 1, anon_sym_PIPE, - ACTIONS(9176), 1, anon_sym_AMP, - ACTIONS(9182), 1, + 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_identifier, + ACTIONS(6605), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + 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(9184), 1, anon_sym_GT_GT, - ACTIONS(9186), 1, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(9188), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, - anon_sym_bitor, - ACTIONS(9192), 1, - anon_sym_bitand, - ACTIONS(9464), 1, - anon_sym_GT2, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - STATE(8747), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + [184429] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6627), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + 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_identifier, + ACTIONS(6625), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9170), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9174), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9180), 4, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [232311] = 28, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [184476] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(8038), 1, + anon_sym_const, + ACTIONS(8719), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(8727), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, - anon_sym_DOT, - ACTIONS(9158), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, + ACTIONS(8729), 1, + sym_auto, + ACTIONS(8731), 1, + anon_sym_decltype, + ACTIONS(9101), 1, + anon_sym_STAR, + ACTIONS(9103), 1, + anon_sym_AMP_AMP, + ACTIONS(9105), 1, + anon_sym_AMP, + STATE(4177), 1, + sym_parameter_list, + STATE(5004), 1, + sym_decltype_auto, + STATE(6893), 1, + sym_function_declarator_seq, + STATE(7227), 1, + sym_abstract_declarator, + STATE(5617), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6892), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8717), 9, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8030), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [184551] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(8549), 1, + sym_auto, + ACTIONS(8551), 1, + anon_sym_decltype, + ACTIONS(8719), 1, + anon_sym_LPAREN2, + ACTIONS(8727), 1, + anon_sym_LBRACK, + ACTIONS(9107), 1, + anon_sym_STAR, + ACTIONS(9109), 1, + anon_sym_AMP_AMP, + ACTIONS(9111), 1, + anon_sym_AMP, + STATE(3704), 1, + sym_decltype_auto, + STATE(4187), 1, + sym_parameter_list, + STATE(6893), 1, + sym_function_declarator_seq, + STATE(7288), 1, + sym_abstract_declarator, + STATE(5623), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6892), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8717), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(7873), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [184626] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(8549), 1, + sym_auto, + ACTIONS(8551), 1, + anon_sym_decltype, + ACTIONS(8719), 1, + anon_sym_LPAREN2, + ACTIONS(8727), 1, + anon_sym_LBRACK, + ACTIONS(9107), 1, + anon_sym_STAR, + ACTIONS(9109), 1, + anon_sym_AMP_AMP, + ACTIONS(9111), 1, + anon_sym_AMP, + STATE(3704), 1, + sym_decltype_auto, + STATE(4187), 1, + sym_parameter_list, + STATE(6893), 1, + sym_function_declarator_seq, + STATE(7298), 1, + sym_abstract_declarator, + STATE(5625), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6892), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8733), 9, anon_sym_COMMA, - ACTIONS(9166), 1, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(7873), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [184701] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6580), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(9172), 1, anon_sym_PIPE, - ACTIONS(9176), 1, anon_sym_AMP, - ACTIONS(9182), 1, - anon_sym_LT_LT, - ACTIONS(9184), 1, - anon_sym_GT_GT, - ACTIONS(9186), 1, - anon_sym_QMARK, - ACTIONS(9188), 1, - anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(9192), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(9466), 1, - anon_sym_GT2, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - STATE(8753), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9162), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9164), 2, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6578), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9170), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9174), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9180), 4, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [232408] = 28, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [184748] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7801), 1, - anon_sym_DOT, - ACTIONS(9158), 1, + ACTIONS(8569), 1, + sym_auto, + ACTIONS(8571), 1, + anon_sym_decltype, + STATE(5358), 1, + sym_decltype_auto, + ACTIONS(6191), 10, anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(9166), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(9172), 1, anon_sym_PIPE, - ACTIONS(9176), 1, anon_sym_AMP, - ACTIONS(9182), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(6189), 26, + anon_sym_LPAREN2, + anon_sym_STAR, + 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(9184), 1, anon_sym_GT_GT, - ACTIONS(9186), 1, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(9188), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, - anon_sym_bitor, - ACTIONS(9192), 1, - anon_sym_bitand, - ACTIONS(9468), 1, - anon_sym_GT2, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - STATE(8758), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9162), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9168), 2, - anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9170), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9174), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(9194), 2, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9180), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [232505] = 28, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [184801] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9158), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9160), 1, + ACTIONS(8818), 1, anon_sym_COMMA, - ACTIONS(9166), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(9172), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(9176), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(9182), 1, - anon_sym_LT_LT, - ACTIONS(9184), 1, - anon_sym_GT_GT, - ACTIONS(9186), 1, + ACTIONS(8840), 1, + anon_sym_GT_EQ, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(9188), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(9192), 1, + ACTIONS(8852), 1, anon_sym_bitand, - ACTIONS(9470), 1, - anon_sym_GT2, - STATE(4226), 1, + ACTIONS(9113), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9115), 1, + anon_sym_RBRACK, + STATE(2617), 1, sym_argument_list, - STATE(4227), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8764), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7803), 2, + STATE(8454), 1, + aux_sym_lambda_capture_specifier_repeat1, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9170), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9174), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, + ACTIONS(8842), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9180), 4, + ACTIONS(8838), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [232602] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_const, - ACTIONS(5727), 2, - anon_sym_AMP, - anon_sym_LBRACK, - STATE(5687), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(9472), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(5729), 23, - 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___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - 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, - sym_semgrep_metavar, - [232655] = 28, + [184898] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8852), 1, anon_sym_bitand, - ACTIONS(9230), 1, + ACTIONS(8913), 1, anon_sym_COMMA, - ACTIONS(9478), 1, - anon_sym_RPAREN, - STATE(3181), 1, + ACTIONS(9117), 1, + anon_sym_RBRACK, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - STATE(8849), 1, - aux_sym_argument_list_repeat1, - ACTIONS(7004), 2, + STATE(8650), 1, + aux_sym_subscript_argument_list_repeat1, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [232752] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5527), 1, - anon_sym_LBRACK, - ACTIONS(5522), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(5525), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - ACTIONS(5518), 31, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_operator, - [232803] = 3, + [184995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6368), 16, + ACTIONS(6781), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -524868,7 +484519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6370), 23, + ACTIONS(6779), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -524892,32 +484543,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [232850] = 3, + [185042] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6468), 16, + ACTIONS(4238), 1, + anon_sym_LBRACE, + ACTIONS(8521), 1, + anon_sym_LPAREN2, + STATE(5621), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6386), 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(6384), 24, + 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_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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [185095] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5603), 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, - sym_identifier, - ACTIONS(6470), 23, + ACTIONS(5605), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -524926,68 +484616,72 @@ 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_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_DOT_STAR, anon_sym_DASH_GT, - [232897] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [185142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, - anon_sym_AMP_AMP, - ACTIONS(9306), 1, - anon_sym_and, - ACTIONS(9480), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9482), 1, - anon_sym_or, - ACTIONS(6372), 14, + ACTIONS(5633), 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_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_GT_GT, anon_sym_DOT, - sym_identifier, - ACTIONS(6374), 21, + ACTIONS(5635), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, 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_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_DOT_STAR, anon_sym_DASH_GT, - [232952] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [185189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6472), 16, + ACTIONS(6767), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -525004,7 +484698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6474), 23, + ACTIONS(6765), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -525028,57 +484722,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [232999] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(5485), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5699), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(9205), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6016), 12, - 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_COLON, - anon_sym_GT2, - ACTIONS(6019), 20, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - sym_semgrep_metavar, - [233052] = 3, + [185236] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6482), 16, + ACTIONS(6771), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -525095,7 +484742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6484), 23, + ACTIONS(6769), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -525119,10 +484766,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [233099] = 3, + [185283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7348), 16, + ACTIONS(6723), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -525139,7 +484786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7346), 23, + ACTIONS(6721), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -525163,79 +484810,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [233146] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, - anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, - anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - ACTIONS(9147), 1, - anon_sym_RBRACE, - ACTIONS(9484), 1, - anon_sym_COMMA, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - STATE(8994), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8878), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8882), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [233243] = 3, + [185330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6496), 16, + ACTIONS(6763), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -525252,7 +484830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6498), 23, + ACTIONS(6761), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -525276,10 +484854,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [233290] = 3, + [185377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6500), 16, + ACTIONS(6592), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -525296,7 +484874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6502), 23, + ACTIONS(6590), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -525320,10 +484898,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [233337] = 3, + [185424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6504), 16, + ACTIONS(6596), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -525340,7 +484918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6506), 23, + ACTIONS(6594), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -525364,10 +484942,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [233384] = 3, + [185471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6508), 16, + ACTIONS(6611), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -525384,7 +484962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6510), 23, + ACTIONS(6609), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -525408,10 +484986,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [233431] = 3, + [185518] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7233), 16, + ACTIONS(6615), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -525428,7 +485006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7231), 23, + ACTIONS(6613), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -525452,32 +485030,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [233478] = 3, + [185565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6410), 16, + ACTIONS(5625), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_GT_GT, anon_sym_DOT, - sym_identifier, - ACTIONS(6412), 23, + ACTIONS(5627), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -525486,20 +485056,28 @@ 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_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_DOT_STAR, anon_sym_DASH_GT, - [233525] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [185612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6345), 16, + ACTIONS(6638), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -525516,7 +485094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6347), 23, + ACTIONS(6636), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -525540,10 +485118,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [233572] = 3, + [185659] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6418), 16, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(4763), 10, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -525552,20 +485133,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_DOT, + ACTIONS(4771), 28, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_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_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [185708] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5629), 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, - sym_identifier, - ACTIONS(6420), 23, + ACTIONS(5631), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -525574,152 +485189,1063 @@ 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_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_DOT_STAR, anon_sym_DASH_GT, - [233619] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [185755] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6349), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(8038), 1, + anon_sym_const, + ACTIONS(8719), 1, + anon_sym_LPAREN2, + ACTIONS(8727), 1, + anon_sym_LBRACK, + ACTIONS(8729), 1, + sym_auto, + ACTIONS(8731), 1, + anon_sym_decltype, + ACTIONS(9101), 1, + anon_sym_STAR, + ACTIONS(9103), 1, + anon_sym_AMP_AMP, + ACTIONS(9105), 1, + anon_sym_AMP, + STATE(4177), 1, + sym_parameter_list, + STATE(5004), 1, + sym_decltype_auto, + STATE(6893), 1, + sym_function_declarator_seq, + STATE(7256), 1, + sym_abstract_declarator, + STATE(5592), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6892), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8733), 9, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8030), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [185830] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7120), 1, + anon_sym_LPAREN2, + ACTIONS(7617), 1, + anon_sym_LBRACK, + ACTIONS(7631), 1, + anon_sym_DOT, + ACTIONS(8881), 1, anon_sym_SLASH, + ACTIONS(8897), 1, + anon_sym_LT_LT, + ACTIONS(8899), 1, + anon_sym_GT_GT, + ACTIONS(8903), 1, + anon_sym_LT_EQ_GT, + STATE(4059), 1, + sym_argument_list, + STATE(4060), 1, + sym_subscript_argument_list, + ACTIONS(7019), 2, anon_sym_PIPE, anon_sym_AMP, + ACTIONS(7633), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8877), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8879), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8909), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8895), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + ACTIONS(7021), 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_DOT, + anon_sym_GT2, + [185904] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9121), 1, + anon_sym_LPAREN2, + ACTIONS(9123), 1, + anon_sym_STAR, + STATE(2184), 1, + sym_type_declarator, + STATE(6285), 1, + sym_ms_unaligned_ptr_modifier, + STATE(9248), 1, + sym_ms_based_modifier, + ACTIONS(9127), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6017), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6097), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(9125), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(2300), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9119), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, sym_identifier, - ACTIONS(6351), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [185972] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9121), 1, + anon_sym_LPAREN2, + ACTIONS(9123), 1, + anon_sym_STAR, + STATE(2200), 1, + sym_type_declarator, + STATE(6285), 1, + sym_ms_unaligned_ptr_modifier, + STATE(9248), 1, + sym_ms_based_modifier, + ACTIONS(9127), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5349), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6031), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(9125), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(2300), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9119), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [186040] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8824), 1, + anon_sym_SLASH, + ACTIONS(8830), 1, + anon_sym_PIPE, + ACTIONS(8834), 1, + anon_sym_AMP, + ACTIONS(8840), 1, + anon_sym_GT_EQ, + ACTIONS(8846), 1, + anon_sym_QMARK, + ACTIONS(8848), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8850), 1, + anon_sym_bitor, + ACTIONS(8852), 1, + anon_sym_bitand, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8820), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8828), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8832), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8842), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9129), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8838), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [186132] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7699), 1, + anon_sym_COMMA, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, + anon_sym_SLASH, + ACTIONS(8587), 1, + anon_sym_AMP, + ACTIONS(8593), 1, anon_sym_GT_EQ, + ACTIONS(8597), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9131), 1, + anon_sym_SEMI, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8583), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8595), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(8661), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8589), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8591), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [186226] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7120), 1, + anon_sym_LPAREN2, + ACTIONS(7617), 1, anon_sym_LBRACK, + ACTIONS(7631), 1, + anon_sym_DOT, + ACTIONS(8873), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8881), 1, + anon_sym_SLASH, + ACTIONS(8887), 1, + anon_sym_PIPE, + ACTIONS(8891), 1, + anon_sym_AMP, + ACTIONS(8897), 1, + anon_sym_LT_LT, + ACTIONS(8899), 1, + anon_sym_GT_GT, + ACTIONS(8901), 1, anon_sym_QMARK, + ACTIONS(8903), 1, anon_sym_LT_EQ_GT, + ACTIONS(8905), 1, + anon_sym_bitor, + ACTIONS(8907), 1, + anon_sym_bitand, + STATE(4059), 1, + sym_argument_list, + STATE(4060), 1, + sym_subscript_argument_list, + ACTIONS(7633), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8877), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8879), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8883), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8885), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8889), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8909), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9133), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(8893), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8895), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [186318] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7120), 1, + anon_sym_LPAREN2, + ACTIONS(7617), 1, + anon_sym_LBRACK, + ACTIONS(7631), 1, + anon_sym_DOT, + ACTIONS(8881), 1, + anon_sym_SLASH, + ACTIONS(8887), 1, + anon_sym_PIPE, + ACTIONS(8891), 1, + anon_sym_AMP, + ACTIONS(8897), 1, + anon_sym_LT_LT, + ACTIONS(8899), 1, + anon_sym_GT_GT, + ACTIONS(8903), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8905), 1, + anon_sym_bitor, + ACTIONS(8907), 1, + anon_sym_bitand, + STATE(4059), 1, + sym_argument_list, + STATE(4060), 1, + sym_subscript_argument_list, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [233666] = 3, + ACTIONS(8877), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8879), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8885), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8889), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8909), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8893), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8895), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7021), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_GT2, + [186404] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6356), 16, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7699), 1, + anon_sym_COMMA, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, + anon_sym_SLASH, + ACTIONS(8587), 1, + anon_sym_AMP, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9135), 1, + anon_sym_SEMI, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8583), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8589), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8591), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [186498] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9139), 1, + anon_sym_LPAREN2, + ACTIONS(9141), 1, + anon_sym_STAR, + STATE(3387), 1, + sym_type_declarator, + STATE(6285), 1, + sym_ms_unaligned_ptr_modifier, + STATE(9294), 1, + sym_ms_based_modifier, + ACTIONS(9127), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5201), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6036), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(9125), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(3942), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9137), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [186566] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9145), 1, + anon_sym_LPAREN2, + ACTIONS(9147), 1, + anon_sym_STAR, + STATE(3168), 1, + sym_type_declarator, + STATE(6285), 1, + sym_ms_unaligned_ptr_modifier, + STATE(9304), 1, + sym_ms_based_modifier, + ACTIONS(9127), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5221), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6028), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(9125), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(3613), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9143), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [186634] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7120), 1, + anon_sym_LPAREN2, + ACTIONS(7617), 1, + anon_sym_LBRACK, + ACTIONS(7631), 1, + anon_sym_DOT, + ACTIONS(8881), 1, anon_sym_SLASH, + ACTIONS(8887), 1, anon_sym_PIPE, + ACTIONS(8891), 1, anon_sym_AMP, + ACTIONS(8897), 1, + anon_sym_LT_LT, + ACTIONS(8899), 1, + anon_sym_GT_GT, + ACTIONS(8903), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8905), 1, + anon_sym_bitor, + ACTIONS(8907), 1, + anon_sym_bitand, + STATE(4059), 1, + sym_argument_list, + STATE(4060), 1, + sym_subscript_argument_list, + ACTIONS(7633), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8877), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8879), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8889), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8909), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8893), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8895), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + ACTIONS(7021), 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, + [186718] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7699), 1, + anon_sym_COMMA, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, + anon_sym_SLASH, + ACTIONS(8587), 1, + anon_sym_AMP, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9149), 1, + anon_sym_RPAREN, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8583), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, + ACTIONS(8589), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - anon_sym_DOT, + ACTIONS(8591), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [186812] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9153), 1, + anon_sym_LPAREN2, + ACTIONS(9155), 1, + anon_sym_STAR, + STATE(3237), 1, + sym_type_declarator, + STATE(6285), 1, + sym_ms_unaligned_ptr_modifier, + STATE(9637), 1, + sym_ms_based_modifier, + ACTIONS(9127), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6030), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6097), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(9125), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(3783), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9151), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, sym_identifier, - ACTIONS(6358), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [186880] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7699), 1, + anon_sym_COMMA, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, + anon_sym_SLASH, + ACTIONS(8587), 1, + anon_sym_AMP, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9157), 1, + anon_sym_RPAREN, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_not_eq, + ACTIONS(8591), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [186974] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7699), 1, + anon_sym_COMMA, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, + anon_sym_SLASH, + ACTIONS(8587), 1, + anon_sym_AMP, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9159), 1, + anon_sym_SEMI, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [233713] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7395), 16, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(7393), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_not_eq, + ACTIONS(8591), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [187068] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(8549), 1, + sym_auto, + ACTIONS(8551), 1, + anon_sym_decltype, + ACTIONS(8719), 1, + anon_sym_LPAREN2, + ACTIONS(8727), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [233760] = 3, + ACTIONS(9161), 1, + anon_sym_STAR, + ACTIONS(9163), 1, + anon_sym_AMP_AMP, + ACTIONS(9165), 1, + anon_sym_AMP, + STATE(3704), 1, + sym_decltype_auto, + STATE(4300), 1, + sym_parameter_list, + STATE(6893), 1, + sym_function_declarator_seq, + STATE(7323), 1, + sym_abstract_declarator, + STATE(5676), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6892), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8717), 8, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7873), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [187142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6360), 16, + ACTIONS(6252), 10, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -525728,20 +486254,8 @@ static const uint16_t ts_small_parse_table[] = { 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_identifier, - ACTIONS(6362), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(6250), 28, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -525753,84 +486267,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [233807] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7419), 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_identifier, - ACTIONS(7417), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [233854] = 4, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [187188] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(9488), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9139), 1, anon_sym_LPAREN2, - ACTIONS(9490), 5, - anon_sym_TILDE, + ACTIONS(9141), 1, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(9486), 33, - anon_sym_AMP, + STATE(3515), 1, + sym_type_declarator, + STATE(6285), 1, + sym_ms_unaligned_ptr_modifier, + STATE(9294), 1, + sym_ms_based_modifier, + ACTIONS(9127), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6013), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6097), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(9125), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(3942), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9137), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(65), 12, anon_sym___extension__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -525842,17 +486338,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [187256] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9139), 1, + anon_sym_LPAREN2, + ACTIONS(9141), 1, + anon_sym_STAR, + STATE(3515), 1, + sym_type_declarator, + STATE(6285), 1, + sym_ms_unaligned_ptr_modifier, + STATE(9294), 1, + sym_ms_based_modifier, + ACTIONS(9127), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5264), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6013), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(9125), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(3942), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9137), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, sym_identifier, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [233903] = 3, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [187324] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7415), 16, + ACTIONS(5929), 1, + sym_literal_suffix, + ACTIONS(4773), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -525861,6 +486406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -525868,13 +486414,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(7413), 23, + ACTIONS(4765), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -525886,6 +486428,7 @@ 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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -525893,264 +486436,320 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [233950] = 3, + [187372] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6616), 10, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7699), 1, + anon_sym_COMMA, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(8585), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(8587), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(6614), 28, - anon_sym_LPAREN2, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9167), 1, + anon_sym_SEMI, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8583), 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(8595), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + ACTIONS(8661), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(8663), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(8667), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, + ACTIONS(8589), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [233996] = 18, + ACTIONS(8591), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [187466] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9166), 1, + ACTIONS(7699), 1, + anon_sym_COMMA, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(9182), 1, - anon_sym_LT_LT, - ACTIONS(9184), 1, - anon_sym_GT_GT, - ACTIONS(9188), 1, + ACTIONS(8587), 1, + anon_sym_AMP, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - STATE(4226), 1, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9169), 1, + anon_sym_SEMI, + STATE(2617), 1, sym_argument_list, - STATE(4227), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7053), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(7803), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9180), 4, + ACTIONS(8591), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 12, - 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_bitand, - anon_sym_GT2, - [234072] = 17, + [187560] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(7617), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7631), 1, anon_sym_DOT, - ACTIONS(9166), 1, + ACTIONS(8873), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8881), 1, anon_sym_SLASH, - ACTIONS(9182), 1, + ACTIONS(8887), 1, + anon_sym_PIPE, + ACTIONS(8891), 1, + anon_sym_AMP, + ACTIONS(8897), 1, anon_sym_LT_LT, - ACTIONS(9184), 1, + ACTIONS(8899), 1, anon_sym_GT_GT, - ACTIONS(9188), 1, + ACTIONS(8901), 1, + anon_sym_QMARK, + ACTIONS(8903), 1, anon_sym_LT_EQ_GT, - STATE(4226), 1, + ACTIONS(8905), 1, + anon_sym_bitor, + ACTIONS(8907), 1, + anon_sym_bitand, + STATE(4059), 1, sym_argument_list, - STATE(4227), 1, + STATE(4060), 1, sym_subscript_argument_list, - ACTIONS(7053), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(7803), 2, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + ACTIONS(8877), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + ACTIONS(8879), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9194), 2, + ACTIONS(8883), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8885), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8889), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8909), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9180), 4, + ACTIONS(9171), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(8893), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8895), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 15, + [187652] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6272), 10, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + 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(6270), 28, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_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, - [234146] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7801), 1, - anon_sym_DOT, - ACTIONS(9166), 1, - anon_sym_SLASH, - ACTIONS(9182), 1, - anon_sym_LT_LT, - ACTIONS(9184), 1, - anon_sym_GT_GT, - ACTIONS(9188), 1, - anon_sym_LT_EQ_GT, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - ACTIONS(7803), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [187698] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6256), 10, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7053), 6, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_DOT, + ACTIONS(6254), 28, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_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, - [234218] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7801), 1, - anon_sym_DOT, - ACTIONS(9166), 1, - anon_sym_SLASH, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - ACTIONS(7803), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [187744] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5989), 10, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7053), 7, + 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(7051), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_DOT, + ACTIONS(5987), 28, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -526159,53 +486758,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [234284] = 15, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [187790] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(7617), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7631), 1, anon_sym_DOT, - ACTIONS(9166), 1, - anon_sym_SLASH, - ACTIONS(9182), 1, - anon_sym_LT_LT, - ACTIONS(9184), 1, - anon_sym_GT_GT, - STATE(4226), 1, + STATE(4059), 1, sym_argument_list, - STATE(4227), 1, + STATE(4060), 1, sym_subscript_argument_list, - ACTIONS(7803), 2, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9194), 2, + ACTIONS(8909), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7053), 6, + ACTIONS(7023), 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, - ACTIONS(7051), 16, + anon_sym_GT_GT, + ACTIONS(7025), 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_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -526215,50 +486815,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_GT2, - [234354] = 14, + [187850] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9494), 1, + ACTIONS(8038), 1, + anon_sym_const, + ACTIONS(8719), 1, anon_sym_LPAREN2, - ACTIONS(9496), 1, + ACTIONS(8727), 1, + anon_sym_LBRACK, + ACTIONS(8743), 1, anon_sym_STAR, - STATE(2779), 1, - sym_type_declarator, - STATE(6761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(10238), 1, - sym_ms_based_modifier, - ACTIONS(9502), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5861), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6454), 2, + ACTIONS(8745), 1, + anon_sym_AMP_AMP, + ACTIONS(8747), 1, + anon_sym_AMP, + STATE(4192), 1, + sym_parameter_list, + STATE(6893), 1, + sym_function_declarator_seq, + STATE(7083), 1, + sym_abstract_declarator, + STATE(5216), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - ACTIONS(9500), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(3196), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9492), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(9498), 12, + STATE(6892), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6535), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8030), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -526269,78 +486869,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [234422] = 3, + [187918] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6592), 10, - anon_sym_DOT_DOT_DOT, - 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(6590), 28, + ACTIONS(8038), 1, + anon_sym_const, + ACTIONS(8719), 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_LBRACE, + ACTIONS(8727), 1, 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [234468] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9031), 1, - sym_identifier, - ACTIONS(9035), 1, - sym_primitive_type, - STATE(5864), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9504), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6022), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(8743), 1, anon_sym_STAR, + ACTIONS(8745), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(6026), 22, + ACTIONS(8747), 1, anon_sym_AMP, + STATE(4192), 1, + sym_parameter_list, + STATE(6893), 1, + sym_function_declarator_seq, + STATE(7085), 1, + sym_abstract_declarator, + STATE(5575), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6892), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8030), 11, anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -526351,33 +486911,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + ACTIONS(9173), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - sym_auto, - anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [234522] = 4, + [187986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5525), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5527), 11, + ACTIONS(7197), 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___attribute__, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5520), 25, + sym_literal_suffix, + ACTIONS(7199), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -526388,25 +486955,21 @@ 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_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_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [234570] = 3, + [188032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6640), 10, + ACTIONS(6300), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -526417,7 +486980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(6638), 28, + ACTIONS(6298), 28, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -526446,50 +487009,117 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DOT_DOT_DOT_GT, - [234616] = 14, + [188078] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9494), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(9496), 1, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7699), 1, + anon_sym_COMMA, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, + anon_sym_SLASH, + ACTIONS(8587), 1, + anon_sym_AMP, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9175), 1, + anon_sym_RPAREN, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8583), 2, anon_sym_STAR, - STATE(2776), 1, - sym_type_declarator, - STATE(6761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(10238), 1, - sym_ms_based_modifier, - ACTIONS(9502), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5849), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6443), 2, + anon_sym_PERCENT, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8589), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8591), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [188172] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8038), 1, + anon_sym_const, + ACTIONS(8719), 1, + anon_sym_LPAREN2, + ACTIONS(8727), 1, + anon_sym_LBRACK, + ACTIONS(8743), 1, + anon_sym_STAR, + ACTIONS(8745), 1, + anon_sym_AMP_AMP, + ACTIONS(8747), 1, + anon_sym_AMP, + STATE(4192), 1, + sym_parameter_list, + STATE(6893), 1, + sym_function_declarator_seq, + STATE(7088), 1, + sym_abstract_declarator, + STATE(5575), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - ACTIONS(9500), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(3196), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9492), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(9498), 12, + STATE(6892), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7388), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8030), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -526500,149 +487130,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [234684] = 3, + [188240] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6547), 10, - anon_sym_DOT_DOT_DOT, - 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(6545), 28, + ACTIONS(8038), 1, + anon_sym_const, + ACTIONS(8719), 1, anon_sym_LPAREN2, + ACTIONS(8727), 1, + anon_sym_LBRACK, + ACTIONS(8743), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8745), 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(8747), 1, + anon_sym_AMP, + STATE(4192), 1, + sym_parameter_list, + STATE(6893), 1, + sym_function_declarator_seq, + STATE(7089), 1, + sym_abstract_declarator, + STATE(5575), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6892), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8030), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(9177), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [188308] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [234730] = 27, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5218), 1, + anon_sym_LPAREN2, + ACTIONS(5220), 1, + anon_sym_STAR, + ACTIONS(5222), 1, + anon_sym_AMP_AMP, + ACTIONS(5224), 1, + anon_sym_AMP, + ACTIONS(5741), 1, + sym_identifier, + ACTIONS(6543), 1, + anon_sym_LBRACK, + ACTIONS(8561), 1, + anon_sym_RPAREN, + STATE(4330), 1, + sym_parameter_list, + STATE(6786), 1, + sym_scope_resolution, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7451), 1, + sym_declarator, + STATE(7676), 1, + sym_abstract_declarator, + STATE(9481), 1, + sym_ms_based_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(7305), 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, + [188394] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7617), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7631), 1, anon_sym_DOT, - ACTIONS(7993), 1, - anon_sym_COMMA, - ACTIONS(8874), 1, + ACTIONS(8873), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8881), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8887), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8891), 1, anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8897), 1, + anon_sym_LT_LT, + ACTIONS(8899), 1, + anon_sym_GT_GT, + ACTIONS(8901), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8903), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8905), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8907), 1, anon_sym_bitand, - ACTIONS(9506), 1, - anon_sym_RPAREN, - STATE(3181), 1, + STATE(4059), 1, sym_argument_list, - STATE(3186), 1, + STATE(4060), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8877), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8879), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8883), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8885), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8889), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8909), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9179), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(8893), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8895), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [234824] = 10, + [188486] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(4250), 1, + anon_sym_LBRACE, + ACTIONS(8565), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7801), 1, - anon_sym_DOT, - STATE(4226), 1, + STATE(5737), 2, sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - ACTIONS(7803), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7089), 10, + sym_initializer_list, + ACTIONS(6373), 10, + anon_sym_DOT_DOT_DOT, 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(7091), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_DOT, + ACTIONS(6371), 24, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -526650,7 +487342,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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -526659,49 +487354,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [234884] = 14, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [188538] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9510), 1, + ACTIONS(9145), 1, anon_sym_LPAREN2, - ACTIONS(9512), 1, + ACTIONS(9147), 1, anon_sym_STAR, - STATE(2732), 1, + STATE(3132), 1, sym_type_declarator, - STATE(6761), 1, + STATE(6285), 1, sym_ms_unaligned_ptr_modifier, - STATE(10464), 1, + STATE(9304), 1, sym_ms_based_modifier, - ACTIONS(9502), 2, + ACTIONS(9127), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(6491), 2, + STATE(5988), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(6678), 2, + STATE(6097), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(9500), 3, + ACTIONS(9125), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(2872), 5, + STATE(3613), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9508), 6, + ACTIONS(9143), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(9498), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -526714,65 +487413,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [234952] = 14, + [188606] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9516), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(9518), 1, + ACTIONS(7617), 1, + anon_sym_LBRACK, + ACTIONS(7631), 1, + anon_sym_DOT, + ACTIONS(8881), 1, + anon_sym_SLASH, + ACTIONS(8887), 1, + anon_sym_PIPE, + ACTIONS(8891), 1, + anon_sym_AMP, + ACTIONS(8897), 1, + anon_sym_LT_LT, + ACTIONS(8899), 1, + anon_sym_GT_GT, + ACTIONS(8903), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8905), 1, + anon_sym_bitor, + ACTIONS(8907), 1, + anon_sym_bitand, + STATE(4059), 1, + sym_argument_list, + STATE(4060), 1, + sym_subscript_argument_list, + ACTIONS(7633), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8877), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8879), 2, anon_sym_STAR, - STATE(3076), 1, - sym_type_declarator, - STATE(6761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(10195), 1, - sym_ms_based_modifier, - ACTIONS(9502), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5866), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6425), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(9500), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(3534), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9514), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(9498), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [235020] = 3, + anon_sym_PERCENT, + ACTIONS(8883), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8885), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8889), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8909), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8893), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7107), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(8895), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [188694] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7120), 1, + anon_sym_LPAREN2, + ACTIONS(7617), 1, + anon_sym_LBRACK, + ACTIONS(7631), 1, + anon_sym_DOT, + ACTIONS(8873), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8881), 1, + anon_sym_SLASH, + ACTIONS(8887), 1, + anon_sym_PIPE, + ACTIONS(8891), 1, + anon_sym_AMP, + ACTIONS(8897), 1, + anon_sym_LT_LT, + ACTIONS(8899), 1, + anon_sym_GT_GT, + ACTIONS(8901), 1, + anon_sym_QMARK, + ACTIONS(8903), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8905), 1, + anon_sym_bitor, + ACTIONS(8907), 1, + anon_sym_bitand, + STATE(4059), 1, + sym_argument_list, + STATE(4060), 1, + sym_subscript_argument_list, + ACTIONS(7134), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(7633), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8877), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8879), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8883), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8885), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8889), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8909), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8893), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8895), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [188786] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6239), 10, - anon_sym_DOT_DOT_DOT, + ACTIONS(5409), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5995), 1, + anon_sym_LPAREN2, + ACTIONS(5998), 1, + anon_sym_LBRACK, + ACTIONS(4773), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -526782,8 +487562,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(6237), 28, - anon_sym_LPAREN2, + ACTIONS(4765), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -526794,8 +487575,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -526808,13 +487589,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [235066] = 3, + [188838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4827), 10, + ACTIONS(6016), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -526825,7 +487603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(4835), 28, + ACTIONS(6018), 28, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -526854,115 +487632,48 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DOT_DOT_DOT_GT, - [235112] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7993), 1, - anon_sym_COMMA, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, - anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, - anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - ACTIONS(9520), 1, - anon_sym_RPAREN, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8878), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8882), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [235206] = 14, + [188884] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9510), 1, + ACTIONS(9145), 1, anon_sym_LPAREN2, - ACTIONS(9512), 1, + ACTIONS(9147), 1, anon_sym_STAR, - STATE(2732), 1, + STATE(3197), 1, sym_type_declarator, - STATE(6761), 1, + STATE(6285), 1, sym_ms_unaligned_ptr_modifier, - STATE(10464), 1, + STATE(9304), 1, sym_ms_based_modifier, - ACTIONS(9502), 2, + ACTIONS(9127), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5854), 2, + STATE(5301), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6491), 2, + STATE(5950), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - ACTIONS(9500), 3, + ACTIONS(9125), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(2872), 5, + STATE(3613), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9508), 6, + ACTIONS(9143), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(9498), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -526975,10 +487686,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [235274] = 3, + [188952] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7699), 1, + anon_sym_COMMA, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, + anon_sym_SLASH, + ACTIONS(8587), 1, + anon_sym_AMP, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9181), 1, + anon_sym_SEMI, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8583), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8589), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8591), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [189046] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6555), 10, + ACTIONS(6260), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -526989,7 +487767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(6553), 28, + ACTIONS(6258), 28, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -527018,158 +487796,347 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DOT_DOT_DOT_GT, - [235320] = 27, + [189092] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(7993), 1, + ACTIONS(7699), 1, anon_sym_COMMA, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9522), 1, - anon_sym_RPAREN, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9183), 1, + anon_sym_SEMI, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [235414] = 3, + [189186] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7305), 17, + ACTIONS(8523), 1, + anon_sym_LBRACK, + STATE(5505), 1, + sym_new_declarator, + ACTIONS(6454), 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___attribute__, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6452), 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_CARET, + 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_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(7307), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [189236] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7019), 1, + anon_sym_PIPE, + ACTIONS(7120), 1, anon_sym_LPAREN2, + ACTIONS(7617), 1, + anon_sym_LBRACK, + ACTIONS(7631), 1, + anon_sym_DOT, + ACTIONS(8881), 1, + anon_sym_SLASH, + ACTIONS(8891), 1, + anon_sym_AMP, + ACTIONS(8897), 1, + anon_sym_LT_LT, + ACTIONS(8899), 1, + anon_sym_GT_GT, + ACTIONS(8903), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8907), 1, + anon_sym_bitand, + STATE(4059), 1, + sym_argument_list, + STATE(4060), 1, + sym_subscript_argument_list, + ACTIONS(7633), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8877), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8879), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(8889), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8909), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8893), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8895), 4, + anon_sym_GT, anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7021), 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, + [189318] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7019), 1, + anon_sym_PIPE, + ACTIONS(7120), 1, + anon_sym_LPAREN2, + ACTIONS(7617), 1, + anon_sym_LBRACK, + ACTIONS(7631), 1, + anon_sym_DOT, + ACTIONS(8881), 1, + anon_sym_SLASH, + ACTIONS(8891), 1, + anon_sym_AMP, + ACTIONS(8897), 1, anon_sym_LT_LT, + ACTIONS(8899), 1, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(8903), 1, anon_sym_LT_EQ_GT, + ACTIONS(8907), 1, + anon_sym_bitand, + STATE(4059), 1, + sym_argument_list, + STATE(4060), 1, + sym_subscript_argument_list, + ACTIONS(7633), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8877), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8879), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8909), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(8893), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8895), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7021), 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, + [189398] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, + anon_sym_SLASH, + ACTIONS(8587), 1, + anon_sym_AMP, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [235460] = 14, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8583), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9179), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(8589), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8591), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [189490] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9526), 1, + ACTIONS(9187), 1, anon_sym_LPAREN2, - ACTIONS(9528), 1, + ACTIONS(9189), 1, anon_sym_STAR, - STATE(3375), 1, - sym_type_declarator, - STATE(6761), 1, + STATE(6285), 1, sym_ms_unaligned_ptr_modifier, - STATE(10196), 1, + STATE(7054), 1, + sym_type_declarator, + STATE(9630), 1, sym_ms_based_modifier, - ACTIONS(9502), 2, + ACTIONS(9127), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(6463), 2, + STATE(5951), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(6678), 2, + STATE(6097), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(9500), 3, + ACTIONS(9125), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(3848), 5, + STATE(7297), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9524), 6, + ACTIONS(9185), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(9498), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -527182,48 +488149,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [235528] = 14, + [189558] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9526), 1, + ACTIONS(9187), 1, anon_sym_LPAREN2, - ACTIONS(9528), 1, + ACTIONS(9189), 1, anon_sym_STAR, - STATE(3375), 1, - sym_type_declarator, - STATE(6761), 1, + STATE(6285), 1, sym_ms_unaligned_ptr_modifier, - STATE(10196), 1, + STATE(7054), 1, + sym_type_declarator, + STATE(9630), 1, sym_ms_based_modifier, - ACTIONS(9502), 2, + ACTIONS(9127), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5826), 2, + STATE(5302), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6463), 2, + STATE(5951), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - ACTIONS(9500), 3, + ACTIONS(9125), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(3848), 5, + STATE(7297), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9524), 6, + ACTIONS(9185), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(9498), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -527236,95 +488203,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [235596] = 5, + [189626] = 14, ACTIONS(3), 1, sym_comment, - STATE(5739), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9530), 4, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9187), 1, + anon_sym_LPAREN2, + ACTIONS(9189), 1, + anon_sym_STAR, + STATE(6285), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7101), 1, + sym_type_declarator, + STATE(9630), 1, + sym_ms_based_modifier, + ACTIONS(9127), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5234), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5941), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(9125), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7297), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9185), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5697), 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(5699), 24, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, sym_primitive_type, - anon_sym_asm, - anon_sym___asm__, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [235646] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7916), 1, - anon_sym_const, - ACTIONS(8910), 1, - anon_sym_LPAREN2, - ACTIONS(8918), 1, - anon_sym_LBRACK, - ACTIONS(9085), 1, - anon_sym_STAR, - ACTIONS(9087), 1, - anon_sym_AMP_AMP, - ACTIONS(9089), 1, - anon_sym_AMP, - STATE(4322), 1, - sym_parameter_list, - STATE(7280), 1, - sym_function_declarator_seq, - STATE(7438), 1, - sym_abstract_declarator, - STATE(5743), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(7278), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6258), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7907), 11, + ACTIONS(65), 12, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -527335,38 +488257,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [235714] = 14, + [189694] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7916), 1, - anon_sym_const, - ACTIONS(8910), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9193), 1, anon_sym_LPAREN2, - ACTIONS(8918), 1, - anon_sym_LBRACK, - ACTIONS(9085), 1, + ACTIONS(9195), 1, anon_sym_STAR, - ACTIONS(9087), 1, - anon_sym_AMP_AMP, - ACTIONS(9089), 1, - anon_sym_AMP, - STATE(4322), 1, - sym_parameter_list, - STATE(7280), 1, - sym_function_declarator_seq, - STATE(7442), 1, - sym_abstract_declarator, - STATE(5687), 2, + STATE(2897), 1, + sym_type_declarator, + STATE(6285), 1, + sym_ms_unaligned_ptr_modifier, + STATE(9631), 1, + sym_ms_based_modifier, + ACTIONS(9127), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6026), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(7278), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7907), 11, + STATE(6097), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(9125), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(3254), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9191), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(65), 12, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -527377,232 +488311,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(9248), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [235782] = 24, + [189762] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9166), 1, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(9172), 1, - anon_sym_PIPE, - ACTIONS(9176), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(9182), 1, - anon_sym_LT_LT, - ACTIONS(9184), 1, - anon_sym_GT_GT, - ACTIONS(9188), 1, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, - anon_sym_bitor, - ACTIONS(9192), 1, + ACTIONS(8599), 1, anon_sym_bitand, - STATE(4226), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + STATE(2617), 1, sym_argument_list, - STATE(4227), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7803), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9170), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9174), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, + ACTIONS(9011), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7079), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(9180), 4, + ACTIONS(8591), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [235870] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7916), 1, - anon_sym_const, - ACTIONS(8910), 1, - anon_sym_LPAREN2, - ACTIONS(8918), 1, - anon_sym_LBRACK, - ACTIONS(9085), 1, - anon_sym_STAR, - ACTIONS(9087), 1, - anon_sym_AMP_AMP, - ACTIONS(9089), 1, - anon_sym_AMP, - STATE(4322), 1, - sym_parameter_list, - STATE(7280), 1, - sym_function_declarator_seq, - STATE(7449), 1, - sym_abstract_declarator, - STATE(5687), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(7278), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7534), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7907), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [235938] = 14, + [189854] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9535), 1, + ACTIONS(9193), 1, anon_sym_LPAREN2, - ACTIONS(9537), 1, + ACTIONS(9195), 1, anon_sym_STAR, - STATE(6761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7569), 1, + STATE(2897), 1, sym_type_declarator, - STATE(10673), 1, - sym_ms_based_modifier, - ACTIONS(9502), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(6444), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6678), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(9500), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(7629), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9533), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(9498), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [236006] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9535), 1, - anon_sym_LPAREN2, - ACTIONS(9537), 1, - anon_sym_STAR, - STATE(6761), 1, + STATE(6285), 1, sym_ms_unaligned_ptr_modifier, - STATE(7569), 1, - sym_type_declarator, - STATE(10673), 1, + STATE(9631), 1, sym_ms_based_modifier, - ACTIONS(9502), 2, + ACTIONS(9127), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5747), 2, + STATE(5359), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6444), 2, + STATE(6026), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - ACTIONS(9500), 3, + ACTIONS(9125), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(7629), 5, + STATE(3254), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9533), 6, + ACTIONS(9191), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(9498), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -527615,102 +488431,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [236074] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7916), 1, - anon_sym_const, - ACTIONS(8910), 1, - anon_sym_LPAREN2, - ACTIONS(8918), 1, - anon_sym_LBRACK, - ACTIONS(9085), 1, - anon_sym_STAR, - ACTIONS(9087), 1, - anon_sym_AMP_AMP, - ACTIONS(9089), 1, - anon_sym_AMP, - STATE(4322), 1, - sym_parameter_list, - STATE(7280), 1, - sym_function_declarator_seq, - STATE(7451), 1, - sym_abstract_declarator, - STATE(5687), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(7278), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7907), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(9250), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [236142] = 14, + [189922] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9535), 1, + ACTIONS(9121), 1, anon_sym_LPAREN2, - ACTIONS(9537), 1, + ACTIONS(9197), 1, anon_sym_STAR, - STATE(6761), 1, + STATE(6285), 1, sym_ms_unaligned_ptr_modifier, - STATE(7542), 1, + STATE(7364), 1, sym_type_declarator, - STATE(10673), 1, + STATE(9517), 1, sym_ms_based_modifier, - ACTIONS(9502), 2, + ACTIONS(9127), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(6446), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6678), 2, + STATE(5260), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(9500), 3, + STATE(6040), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(9125), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(7629), 5, + STATE(2300), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9533), 6, + ACTIONS(9119), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(9498), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -527723,723 +488485,288 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [236210] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(8544), 1, - anon_sym_LBRACE, - ACTIONS(9539), 1, - anon_sym_COLON, - STATE(4600), 1, - sym_enum_base_clause, - STATE(4688), 1, - sym_enumerator_list, - STATE(4773), 1, - sym_attribute_specifier, - ACTIONS(6225), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6227), 28, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - [236268] = 26, + [189990] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9158), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9166), 1, - anon_sym_SLASH, - ACTIONS(9172), 1, - anon_sym_PIPE, - ACTIONS(9176), 1, - anon_sym_AMP, - ACTIONS(9182), 1, - anon_sym_LT_LT, - ACTIONS(9184), 1, - anon_sym_GT_GT, - ACTIONS(9186), 1, - anon_sym_QMARK, - ACTIONS(9188), 1, - anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, - anon_sym_bitor, - ACTIONS(9192), 1, - anon_sym_bitand, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - ACTIONS(7083), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(7803), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9162), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9168), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9170), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9174), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9180), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [236360] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7801), 1, - anon_sym_DOT, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - ACTIONS(7803), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6998), 10, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(8585), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(8587), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(8593), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - ACTIONS(6996), 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, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, + ACTIONS(8599), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_GT2, - [236418] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7801), 1, - anon_sym_DOT, - ACTIONS(9158), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9166), 1, - anon_sym_SLASH, - ACTIONS(9172), 1, + ACTIONS(8665), 1, anon_sym_PIPE, - ACTIONS(9176), 1, - anon_sym_AMP, - ACTIONS(9182), 1, - anon_sym_LT_LT, - ACTIONS(9184), 1, - anon_sym_GT_GT, - ACTIONS(9186), 1, - anon_sym_QMARK, - ACTIONS(9188), 1, - anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, + ACTIONS(8669), 1, anon_sym_bitor, - ACTIONS(9192), 1, - anon_sym_bitand, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - ACTIONS(7803), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9162), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9168), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9170), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9174), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9541), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(9178), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9180), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [236510] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7993), 1, - anon_sym_COMMA, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, - anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, - anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8671), 1, anon_sym_QMARK, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - ACTIONS(9543), 1, - anon_sym_SEMI, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8595), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [236604] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7993), 1, - anon_sym_COMMA, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, - anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, - anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - ACTIONS(9545), 1, - anon_sym_SEMI, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8878), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [236698] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6559), 10, - anon_sym_DOT_DOT_DOT, - 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(6557), 28, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(9199), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(8589), 3, 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_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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [236744] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6563), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(6561), 28, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [236790] = 27, + [190082] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8852), 1, anon_sym_bitand, - ACTIONS(9547), 1, - anon_sym_COMMA, - ACTIONS(9549), 1, - anon_sym_RPAREN, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, - [236884] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(8544), 1, - anon_sym_LBRACE, - ACTIONS(9539), 1, - anon_sym_COLON, - STATE(4616), 1, - sym_enum_base_clause, - STATE(4661), 1, - sym_enumerator_list, - STATE(4759), 1, - sym_attribute_specifier, - ACTIONS(6233), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6235), 28, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - [236942] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9535), 1, - anon_sym_LPAREN2, - ACTIONS(9537), 1, - anon_sym_STAR, - STATE(6761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7604), 1, - sym_type_declarator, - STATE(10673), 1, - sym_ms_based_modifier, - ACTIONS(9502), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5744), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6442), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(9500), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(7629), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9533), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(9498), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [237010] = 24, + anon_sym_LT, + ACTIONS(7118), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [190170] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9166), 1, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(9172), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(9176), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(9182), 1, - anon_sym_LT_LT, - ACTIONS(9184), 1, - anon_sym_GT_GT, - ACTIONS(9188), 1, + ACTIONS(8840), 1, + anon_sym_GT_EQ, + ACTIONS(8846), 1, + anon_sym_QMARK, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(9192), 1, + ACTIONS(8852), 1, anon_sym_bitand, - STATE(4226), 1, + STATE(2617), 1, sym_argument_list, - STATE(4227), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7803), 2, + ACTIONS(6689), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9170), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9174), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, + ACTIONS(8842), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7087), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(9180), 4, + ACTIONS(8838), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [237098] = 10, + [190262] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7043), 1, anon_sym_DOT, - STATE(4226), 1, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, + anon_sym_SLASH, + ACTIONS(8587), 1, + anon_sym_AMP, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9201), 1, + anon_sym_COMMA, + ACTIONS(9203), 1, + anon_sym_RPAREN, + STATE(2617), 1, sym_argument_list, - STATE(4227), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7803), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9194), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7143), 10, + ACTIONS(8581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8583), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8589), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8591), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [190356] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9205), 1, + anon_sym_COLON, + ACTIONS(2189), 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, - ACTIONS(7141), 19, + anon_sym_DOT, + ACTIONS(2187), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -528447,7 +488774,12 @@ 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, @@ -528456,160 +488788,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [237158] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(5276), 1, - anon_sym_LPAREN2, - ACTIONS(5278), 1, - anon_sym_STAR, - ACTIONS(5280), 1, - anon_sym_AMP_AMP, - ACTIONS(5282), 1, - anon_sym_AMP, - ACTIONS(5748), 1, - sym_identifier, - ACTIONS(6266), 1, - anon_sym_LBRACK, - ACTIONS(8858), 1, - anon_sym_RPAREN, - STATE(4268), 1, - sym_parameter_list, - STATE(7201), 1, - sym_scope_resolution, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(7566), 1, - sym_declarator, - STATE(7930), 1, - sym_abstract_declarator, - STATE(10059), 1, - sym_ms_based_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7464), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(7634), 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, - [237244] = 27, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [190404] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7617), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7631), 1, anon_sym_DOT, - ACTIONS(7993), 1, - anon_sym_COMMA, - ACTIONS(8874), 1, + ACTIONS(8873), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8881), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8887), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8891), 1, anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8897), 1, + anon_sym_LT_LT, + ACTIONS(8899), 1, + anon_sym_GT_GT, + ACTIONS(8901), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8903), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8905), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8907), 1, anon_sym_bitand, - ACTIONS(9551), 1, - anon_sym_RPAREN, - STATE(3181), 1, + STATE(4059), 1, sym_argument_list, - STATE(3186), 1, + STATE(4060), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(6689), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8877), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8879), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8883), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8885), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8889), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8909), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8893), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8895), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [237338] = 10, + [190496] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(7617), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7631), 1, anon_sym_DOT, - STATE(4226), 1, + ACTIONS(8881), 1, + anon_sym_SLASH, + STATE(4059), 1, sym_argument_list, - STATE(4227), 1, + STATE(4060), 1, sym_subscript_argument_list, - ACTIONS(7803), 2, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9194), 2, + ACTIONS(8879), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8909), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7112), 10, + ACTIONS(7019), 9, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, @@ -528617,11 +488892,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - ACTIONS(7110), 19, + ACTIONS(7021), 17, 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, @@ -528637,96 +488910,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_GT2, - [237398] = 26, + [190560] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9158), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9166), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(9172), 1, - anon_sym_PIPE, - ACTIONS(9176), 1, - anon_sym_AMP, - ACTIONS(9182), 1, - anon_sym_LT_LT, - ACTIONS(9184), 1, - anon_sym_GT_GT, - ACTIONS(9186), 1, - anon_sym_QMARK, - ACTIONS(9188), 1, - anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, - anon_sym_bitor, - ACTIONS(9192), 1, - anon_sym_bitand, - STATE(4226), 1, + STATE(2617), 1, sym_argument_list, - STATE(4227), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7803), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9168), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9170), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9174), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(9194), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9553), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(9178), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9180), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [237490] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4120), 1, - anon_sym_LBRACE, - ACTIONS(8924), 1, - anon_sym_LPAREN2, - STATE(6202), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6846), 10, - anon_sym_DOT_DOT_DOT, + ACTIONS(8822), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7019), 7, 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(6844), 24, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(7021), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -528735,7 +488953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -528744,466 +488962,458 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_DOT_DOT_DOT_GT, - [237542] = 27, + [190624] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(7993), 1, - anon_sym_COMMA, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8852), 1, anon_sym_bitand, - ACTIONS(9555), 1, - anon_sym_RPAREN, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [237636] = 27, + ACTIONS(7021), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_or, + [190710] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(7993), 1, - anon_sym_COMMA, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8852), 1, anon_sym_bitand, - ACTIONS(9557), 1, - anon_sym_RPAREN, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [237730] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6588), 10, + ACTIONS(7021), 8, anon_sym_DOT_DOT_DOT, - 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(6586), 28, - 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_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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [237776] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9510), 1, - anon_sym_LPAREN2, - ACTIONS(9512), 1, - anon_sym_STAR, - STATE(2703), 1, - sym_type_declarator, - STATE(6761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(10464), 1, - sym_ms_based_modifier, - ACTIONS(9502), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5728), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6428), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(9500), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(2872), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9508), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(9498), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [237844] = 24, + [190794] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7019), 1, + anon_sym_PIPE, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9166), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(9172), 1, - anon_sym_PIPE, - ACTIONS(9176), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(9182), 1, - anon_sym_LT_LT, - ACTIONS(9184), 1, - anon_sym_GT_GT, - ACTIONS(9188), 1, + ACTIONS(8840), 1, + anon_sym_GT_EQ, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, - anon_sym_bitor, - ACTIONS(9192), 1, + ACTIONS(8852), 1, anon_sym_bitand, - STATE(4226), 1, + STATE(2617), 1, sym_argument_list, - STATE(4227), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7803), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9170), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9174), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, + ACTIONS(8842), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7125), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(9180), 4, + ACTIONS(8838), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [237932] = 9, + ACTIONS(7021), 9, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + [190876] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7019), 1, + anon_sym_PIPE, + ACTIONS(7043), 1, anon_sym_DOT, - STATE(4226), 1, + ACTIONS(8824), 1, + anon_sym_SLASH, + ACTIONS(8834), 1, + anon_sym_AMP, + ACTIONS(8840), 1, + anon_sym_GT_EQ, + ACTIONS(8848), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8852), 1, + anon_sym_bitand, + STATE(2617), 1, sym_argument_list, - STATE(4227), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7803), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7057), 10, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8822), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8842), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8836), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8838), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - ACTIONS(7059), 21, + ACTIONS(7021), 11, 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_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_GT2, - [237990] = 4, + [190956] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5790), 1, - sym_literal_suffix, - ACTIONS(4837), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(8824), 1, anon_sym_SLASH, + ACTIONS(8840), 1, + anon_sym_GT_EQ, + ACTIONS(8848), 1, + anon_sym_LT_EQ_GT, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7019), 2, anon_sym_PIPE, anon_sym_AMP, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8820), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8822), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8842), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8836), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, + ACTIONS(7021), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + 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, - anon_sym_DOT, - ACTIONS(4829), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + [191032] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(8824), 1, + anon_sym_SLASH, + ACTIONS(8840), 1, + anon_sym_GT_EQ, + ACTIONS(8848), 1, + anon_sym_LT_EQ_GT, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7019), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8820), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8842), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8838), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7021), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACK, + 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, + [191106] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(8824), 1, + anon_sym_SLASH, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [238038] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6310), 10, - anon_sym_DOT_DOT_DOT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(8822), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8842), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7019), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(6308), 28, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(7021), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [238084] = 6, + [191176] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4120), 1, - anon_sym_LBRACE, - ACTIONS(8924), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - STATE(6208), 2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(8824), 1, + anon_sym_SLASH, + STATE(2617), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(6888), 10, - anon_sym_DOT_DOT_DOT, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(8822), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7019), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(6886), 24, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(7021), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -529212,7 +489422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -529221,110 +489431,118 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_DOT_DOT_DOT_GT, - [238136] = 27, + [191242] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7617), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7631), 1, anon_sym_DOT, - ACTIONS(7993), 1, - anon_sym_COMMA, - ACTIONS(8874), 1, + ACTIONS(8873), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8881), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8887), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8891), 1, anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8897), 1, + anon_sym_LT_LT, + ACTIONS(8899), 1, + anon_sym_GT_GT, + ACTIONS(8901), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8903), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8905), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8907), 1, anon_sym_bitand, - ACTIONS(9559), 1, - anon_sym_RPAREN, - STATE(3181), 1, + STATE(4059), 1, sym_argument_list, - STATE(3186), 1, + STATE(4060), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7094), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8877), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8879), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8883), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8885), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8889), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8909), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8893), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8895), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [238230] = 5, + [191334] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(8834), 1, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, anon_sym_LBRACK, - STATE(6027), 1, - sym_new_declarator, - ACTIONS(6943), 11, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(8824), 1, + anon_sym_SLASH, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(8822), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8842), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7019), 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(6941), 25, + ACTIONS(7021), 17, 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_GT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -529333,187 +489551,114 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_GT2, - [238280] = 27, + [191402] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(7993), 1, - anon_sym_COMMA, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9561), 1, - anon_sym_SEMI, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8878), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8882), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [238374] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7993), 1, - anon_sym_COMMA, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, - anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8665), 1, anon_sym_PIPE, - ACTIONS(8890), 1, - anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8669), 1, anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - ACTIONS(9563), 1, - anon_sym_SEMI, - STATE(3181), 1, + ACTIONS(8671), 1, + anon_sym_QMARK, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8964), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [238468] = 14, + [191494] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9567), 1, + ACTIONS(9121), 1, anon_sym_LPAREN2, - ACTIONS(9569), 1, + ACTIONS(9197), 1, anon_sym_STAR, - STATE(3591), 1, - sym_type_declarator, - STATE(6761), 1, + STATE(6285), 1, sym_ms_unaligned_ptr_modifier, - STATE(10608), 1, + STATE(7344), 1, + sym_type_declarator, + STATE(9517), 1, sym_ms_based_modifier, - ACTIONS(9502), 2, + ACTIONS(9127), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(6499), 2, + STATE(5946), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(6678), 2, + STATE(6097), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(9500), 3, + ACTIONS(9125), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(4191), 5, + STATE(2300), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9565), 6, + ACTIONS(9119), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(9498), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -529526,48 +489671,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [238536] = 14, + [191562] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9567), 1, + ACTIONS(9121), 1, anon_sym_LPAREN2, - ACTIONS(9569), 1, + ACTIONS(9197), 1, anon_sym_STAR, - STATE(3591), 1, - sym_type_declarator, - STATE(6761), 1, + STATE(6285), 1, sym_ms_unaligned_ptr_modifier, - STATE(10608), 1, + STATE(7344), 1, + sym_type_declarator, + STATE(9517), 1, sym_ms_based_modifier, - ACTIONS(9502), 2, + ACTIONS(9127), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5782), 2, + STATE(5269), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6499), 2, + STATE(5946), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - ACTIONS(9500), 3, + ACTIONS(9125), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(4191), 5, + STATE(2300), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9565), 6, + ACTIONS(9119), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(9498), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -529580,545 +489725,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [238604] = 8, + [191630] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7588), 1, - anon_sym_LT, - STATE(6248), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6753), 1, - sym_template_argument_list, - ACTIONS(5957), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(9571), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5959), 28, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5761), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + ACTIONS(6999), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [238660] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9567), 1, - anon_sym_LPAREN2, - ACTIONS(9569), 1, - anon_sym_STAR, - STATE(3598), 1, - sym_type_declarator, - STATE(6761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(10608), 1, - sym_ms_based_modifier, - ACTIONS(9502), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(6501), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6678), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(9500), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(4191), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9565), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(9498), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [238728] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6596), 10, - anon_sym_DOT_DOT_DOT, - 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(7043), 1, anon_sym_DOT, - ACTIONS(6594), 28, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [238774] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6600), 10, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(8585), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(8587), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(6598), 28, - anon_sym_LPAREN2, - anon_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(8593), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, + ACTIONS(8599), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [238820] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7801), 1, - anon_sym_DOT, - ACTIONS(9158), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9166), 1, - anon_sym_SLASH, - ACTIONS(9172), 1, + ACTIONS(8665), 1, anon_sym_PIPE, - ACTIONS(9176), 1, - anon_sym_AMP, - ACTIONS(9182), 1, - anon_sym_LT_LT, - ACTIONS(9184), 1, - anon_sym_GT_GT, - ACTIONS(9186), 1, - anon_sym_QMARK, - ACTIONS(9188), 1, - anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, + ACTIONS(8669), 1, anon_sym_bitor, - ACTIONS(9192), 1, - anon_sym_bitand, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - ACTIONS(7095), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(7803), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9162), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9168), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9170), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9174), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9180), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [238912] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9526), 1, - anon_sym_LPAREN2, - ACTIONS(9528), 1, - anon_sym_STAR, - STATE(3408), 1, - sym_type_declarator, - STATE(6761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(10196), 1, - sym_ms_based_modifier, - ACTIONS(9502), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5737), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6482), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(9500), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(3848), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9524), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(9498), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [238980] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7993), 1, - anon_sym_COMMA, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, - anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, - anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8671), 1, anon_sym_QMARK, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - ACTIONS(9573), 1, - anon_sym_SEMI, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8595), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [239074] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7993), 1, - anon_sym_COMMA, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, - anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, - anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - ACTIONS(9575), 1, - anon_sym_SEMI, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8878), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8971), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [239168] = 27, + [191722] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(7993), 1, - anon_sym_COMMA, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8852), 1, anon_sym_bitand, - ACTIONS(9577), 1, - anon_sym_SEMI, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(9207), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [239262] = 7, + [191814] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(9031), 1, - sym_identifier, - ACTIONS(9035), 1, - sym_primitive_type, - STATE(5807), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9579), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6022), 11, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9139), 1, anon_sym_LPAREN2, + ACTIONS(9141), 1, 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_GT2, - ACTIONS(6026), 20, - anon_sym_AMP, + STATE(3525), 1, + sym_type_declarator, + STATE(6285), 1, + sym_ms_unaligned_ptr_modifier, + STATE(9294), 1, + sym_ms_based_modifier, + ACTIONS(9127), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5948), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6097), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(9125), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(3942), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9137), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(65), 12, anon_sym___extension__, - anon_sym_LBRACK, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -530130,23 +489911,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [239316] = 6, + [191882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4120), 1, - anon_sym_LBRACE, - ACTIONS(8924), 1, - anon_sym_LPAREN2, - STATE(6273), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6908), 10, + ACTIONS(6276), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -530157,7 +489925,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(6906), 24, + ACTIONS(6274), 28, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -530168,6 +489937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -530181,144 +489951,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_DOT_DOT_DOT_GT, - [239368] = 26, + [191928] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8852), 1, anon_sym_bitand, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9581), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(8892), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [239460] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7993), 1, - anon_sym_COMMA, - ACTIONS(8874), 1, + ACTIONS(7062), 4, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, - anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, - anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - ACTIONS(9583), 1, - anon_sym_SEMI, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8878), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8882), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [239554] = 3, + [192016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6664), 10, + ACTIONS(6401), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -530329,7 +490032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(6662), 28, + ACTIONS(6399), 28, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -530358,48 +490061,114 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DOT_DOT_DOT_GT, - [239600] = 14, + [192062] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8824), 1, + anon_sym_SLASH, + ACTIONS(8830), 1, + anon_sym_PIPE, + ACTIONS(8834), 1, + anon_sym_AMP, + ACTIONS(8840), 1, + anon_sym_GT_EQ, + ACTIONS(8846), 1, + anon_sym_QMARK, + ACTIONS(8848), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8850), 1, + anon_sym_bitor, + ACTIONS(8852), 1, + anon_sym_bitand, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7134), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8820), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8822), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8826), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8828), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8832), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8842), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8836), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8838), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [192154] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9567), 1, + ACTIONS(9121), 1, anon_sym_LPAREN2, - ACTIONS(9569), 1, + ACTIONS(9197), 1, anon_sym_STAR, - STATE(3579), 1, - sym_type_declarator, - STATE(6761), 1, + STATE(6285), 1, sym_ms_unaligned_ptr_modifier, - STATE(10608), 1, + STATE(7342), 1, + sym_type_declarator, + STATE(9517), 1, sym_ms_based_modifier, - ACTIONS(9502), 2, + ACTIONS(9127), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5779), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6493), 2, + STATE(5952), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - ACTIONS(9500), 3, + STATE(6097), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(9125), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(4191), 5, + STATE(2300), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9565), 6, + ACTIONS(9119), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(9498), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -530412,28 +490181,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [239668] = 6, + [192222] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5488), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5932), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(5935), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(4837), 9, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(8824), 1, + anon_sym_SLASH, + ACTIONS(8830), 1, + anon_sym_PIPE, + ACTIONS(8834), 1, + anon_sym_AMP, + ACTIONS(8840), 1, + anon_sym_GT_EQ, + ACTIONS(8848), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8850), 1, + anon_sym_bitor, + ACTIONS(8852), 1, + anon_sym_bitand, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8820), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8822), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8826), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8828), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8832), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8842), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8836), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8838), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7107), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [192310] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5438), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(5440), 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(4829), 26, + ACTIONS(5445), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -530441,11 +490274,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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -530458,77 +490288,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [239720] = 27, + anon_sym_GT2, + [192358] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(7993), 1, - anon_sym_COMMA, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8852), 1, anon_sym_bitand, - ACTIONS(9145), 1, - anon_sym_SEMI, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(7094), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [239814] = 3, + [192450] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 10, + ACTIONS(4250), 1, + anon_sym_LBRACE, + ACTIONS(8565), 1, + anon_sym_LPAREN2, + STATE(5659), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6377), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -530539,8 +490376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(6606), 28, - anon_sym_LPAREN2, + ACTIONS(6375), 24, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -530551,7 +490387,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -530565,162 +490400,282 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_DOT_DOT_DOT_GT, - [239860] = 3, + [192502] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6612), 10, - anon_sym_DOT_DOT_DOT, - 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(6610), 28, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9187), 1, anon_sym_LPAREN2, + ACTIONS(9209), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [239906] = 21, + STATE(6285), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7252), 1, + sym_type_declarator, + STATE(9315), 1, + sym_ms_based_modifier, + ACTIONS(9127), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5964), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6097), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(9125), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7297), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9185), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [192570] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9187), 1, anon_sym_LPAREN2, - ACTIONS(7053), 1, - anon_sym_PIPE, - ACTIONS(7795), 1, + ACTIONS(9209), 1, + anon_sym_STAR, + STATE(6285), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7252), 1, + sym_type_declarator, + STATE(9315), 1, + sym_ms_based_modifier, + ACTIONS(9127), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5276), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5964), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(9125), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7297), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9185), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [192638] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9187), 1, + anon_sym_LPAREN2, + ACTIONS(9209), 1, + anon_sym_STAR, + STATE(6285), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7273), 1, + sym_type_declarator, + STATE(9315), 1, + sym_ms_based_modifier, + ACTIONS(9127), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5967), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6097), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(9125), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7297), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9185), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [192706] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9166), 1, + ACTIONS(7699), 1, + anon_sym_COMMA, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(9176), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(9182), 1, - anon_sym_LT_LT, - ACTIONS(9184), 1, - anon_sym_GT_GT, - ACTIONS(9188), 1, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(9192), 1, + ACTIONS(8599), 1, anon_sym_bitand, - STATE(4226), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9211), 1, + anon_sym_SEMI, + STATE(2617), 1, sym_argument_list, - STATE(4227), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7803), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9174), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9180), 4, + ACTIONS(8591), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 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, - [239988] = 20, + [192800] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(7053), 1, - anon_sym_PIPE, - ACTIONS(7795), 1, + ACTIONS(7617), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7631), 1, anon_sym_DOT, - ACTIONS(9166), 1, + ACTIONS(8881), 1, anon_sym_SLASH, - ACTIONS(9176), 1, - anon_sym_AMP, - ACTIONS(9182), 1, + ACTIONS(8897), 1, anon_sym_LT_LT, - ACTIONS(9184), 1, + ACTIONS(8899), 1, anon_sym_GT_GT, - ACTIONS(9188), 1, + ACTIONS(8903), 1, anon_sym_LT_EQ_GT, - ACTIONS(9192), 1, - anon_sym_bitand, - STATE(4226), 1, + STATE(4059), 1, sym_argument_list, - STATE(4227), 1, + STATE(4060), 1, sym_subscript_argument_list, - ACTIONS(7803), 2, + ACTIONS(7019), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + ACTIONS(8877), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + ACTIONS(8879), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9194), 2, + ACTIONS(8909), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, + ACTIONS(8893), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9180), 4, + ACTIONS(8895), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 11, + ACTIONS(7021), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -530731,118 +490686,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, anon_sym_GT2, - [240068] = 3, + [192876] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6630), 10, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7699), 1, + anon_sym_COMMA, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(8585), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(8587), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(6628), 28, - anon_sym_LPAREN2, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9213), 1, + anon_sym_RPAREN, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8583), 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(8595), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + ACTIONS(8661), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(8663), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(8667), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, + ACTIONS(8589), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [240114] = 24, + ACTIONS(8591), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [192970] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9166), 1, + ACTIONS(7699), 1, + anon_sym_COMMA, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(9172), 1, - anon_sym_PIPE, - ACTIONS(9176), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(9182), 1, - anon_sym_LT_LT, - ACTIONS(9184), 1, - anon_sym_GT_GT, - ACTIONS(9188), 1, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, - anon_sym_bitor, - ACTIONS(9192), 1, + ACTIONS(8599), 1, anon_sym_bitand, - STATE(4226), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9215), 1, + anon_sym_RPAREN, + STATE(2617), 1, sym_argument_list, - STATE(4227), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7803), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9170), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9174), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7008), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(9180), 4, + ACTIONS(8591), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [240202] = 3, + [193064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6668), 10, + ACTIONS(6216), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -530853,7 +490836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(6666), 28, + ACTIONS(6214), 28, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -530882,121 +490865,250 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DOT_DOT_DOT_GT, - [240248] = 3, + [193110] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6672), 10, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7699), 1, + anon_sym_COMMA, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(8585), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(8587), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(6670), 28, - anon_sym_LPAREN2, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9217), 1, + anon_sym_SEMI, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8589), 3, 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_not_eq, + ACTIONS(8591), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [193204] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, + anon_sym_SLASH, + ACTIONS(8587), 1, + anon_sym_AMP, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, + ACTIONS(8599), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9219), 1, + anon_sym_COMMA, + ACTIONS(9221), 1, + anon_sym_RPAREN, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [240294] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6684), 10, - anon_sym_DOT_DOT_DOT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 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(6682), 28, - anon_sym_LPAREN2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8591), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [193298] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7699), 1, + anon_sym_COMMA, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, + anon_sym_SLASH, + ACTIONS(8587), 1, + anon_sym_AMP, + ACTIONS(8593), 1, anon_sym_GT_EQ, + ACTIONS(8597), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9223), 1, + anon_sym_SEMI, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8583), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8595), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + ACTIONS(8661), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(8663), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(8667), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, + ACTIONS(8589), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [240340] = 6, + ACTIONS(8591), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [193392] = 14, ACTIONS(3), 1, sym_comment, - STATE(5848), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5699), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(9585), 4, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9121), 1, + anon_sym_LPAREN2, + ACTIONS(9225), 1, + anon_sym_STAR, + STATE(6285), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7664), 1, + sym_type_declarator, + STATE(9695), 1, + sym_ms_based_modifier, + ACTIONS(9127), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5289), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5934), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(9125), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(2300), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9119), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6016), 11, - 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_COLON, - anon_sym_GT2, - ACTIONS(6019), 20, - anon_sym_AMP, + sym_primitive_type, + sym_identifier, + ACTIONS(65), 12, anon_sym___extension__, - anon_sym_LBRACK, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -531008,16 +491120,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [240392] = 3, + [193460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6688), 10, + ACTIONS(6220), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -531028,7 +491134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(6686), 28, + ACTIONS(6218), 28, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -531057,163 +491163,117 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DOT_DOT_DOT_GT, - [240438] = 3, + [193506] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6694), 10, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(8585), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(8587), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(6692), 28, - anon_sym_LPAREN2, - anon_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(8593), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, + ACTIONS(8599), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9227), 1, + anon_sym_COMMA, + ACTIONS(9229), 1, + anon_sym_RPAREN, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [240484] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6572), 10, - anon_sym_DOT_DOT_DOT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 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(6570), 28, - anon_sym_LPAREN2, + ACTIONS(8583), 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(8595), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + ACTIONS(8661), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(8663), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(8667), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, + ACTIONS(8589), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [240530] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6658), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(6656), 28, + [193600] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7120), 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_LBRACE, + ACTIONS(7617), 1, 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(7631), 1, + anon_sym_DOT, + ACTIONS(8881), 1, + anon_sym_SLASH, + STATE(4059), 1, + sym_argument_list, + STATE(4060), 1, + sym_subscript_argument_list, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [240576] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6522), 10, - anon_sym_DOT_DOT_DOT, + ACTIONS(8877), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(8879), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8909), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7019), 7, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(6520), 28, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_GT_GT, + ACTIONS(7021), 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_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -531222,55 +491282,49 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [240622] = 14, + anon_sym_GT2, + [193666] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9535), 1, + ACTIONS(9121), 1, anon_sym_LPAREN2, - ACTIONS(9588), 1, + ACTIONS(9225), 1, anon_sym_STAR, - STATE(6761), 1, + STATE(6285), 1, sym_ms_unaligned_ptr_modifier, - STATE(7764), 1, + STATE(7692), 1, sym_type_declarator, - STATE(9810), 1, + STATE(9695), 1, sym_ms_based_modifier, - ACTIONS(9502), 2, + ACTIONS(9127), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(6484), 2, + STATE(5937), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(6678), 2, + STATE(6097), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(9500), 3, + ACTIONS(9125), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(7629), 5, + STATE(2300), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9533), 6, + ACTIONS(9119), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(9498), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -531283,48 +491337,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [240690] = 14, + [193734] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9535), 1, + ACTIONS(9121), 1, anon_sym_LPAREN2, - ACTIONS(9588), 1, + ACTIONS(9225), 1, anon_sym_STAR, - STATE(6761), 1, + STATE(6285), 1, sym_ms_unaligned_ptr_modifier, - STATE(7764), 1, + STATE(7692), 1, sym_type_declarator, - STATE(9810), 1, + STATE(9695), 1, sym_ms_based_modifier, - ACTIONS(9502), 2, + ACTIONS(9127), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5815), 2, + STATE(5293), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6484), 2, + STATE(5937), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - ACTIONS(9500), 3, + ACTIONS(9125), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(7629), 5, + STATE(2300), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9533), 6, + ACTIONS(9119), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(9498), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -531337,48 +491391,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [240758] = 14, + [193802] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, + anon_sym_SLASH, + ACTIONS(8587), 1, + anon_sym_AMP, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8583), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9133), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(8589), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8591), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [193894] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7699), 1, + anon_sym_COMMA, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, + anon_sym_SLASH, + ACTIONS(8587), 1, + anon_sym_AMP, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9231), 1, + anon_sym_RPAREN, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8583), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8589), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8591), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [193988] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9535), 1, + ACTIONS(9121), 1, anon_sym_LPAREN2, - ACTIONS(9588), 1, + ACTIONS(9225), 1, anon_sym_STAR, - STATE(6761), 1, + STATE(6285), 1, sym_ms_unaligned_ptr_modifier, - STATE(7762), 1, + STATE(7674), 1, sym_type_declarator, - STATE(9810), 1, + STATE(9695), 1, sym_ms_based_modifier, - ACTIONS(9502), 2, + ACTIONS(9127), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(6485), 2, + STATE(5938), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(6678), 2, + STATE(6097), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(9500), 3, + ACTIONS(9125), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(7629), 5, + STATE(2300), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9533), 6, + ACTIONS(9119), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(9498), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -531391,99 +491578,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [240826] = 3, + [194056] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6644), 10, - anon_sym_DOT_DOT_DOT, - 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(6642), 28, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9153), 1, anon_sym_LPAREN2, + ACTIONS(9155), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - 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_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [240872] = 6, + STATE(3315), 1, + sym_type_declarator, + STATE(6285), 1, + sym_ms_unaligned_ptr_modifier, + STATE(9637), 1, + sym_ms_based_modifier, + ACTIONS(9127), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5333), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5971), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(9125), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(3783), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9151), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [194124] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4120), 1, + ACTIONS(4250), 1, anon_sym_LBRACE, - ACTIONS(8924), 1, + ACTIONS(8565), 1, anon_sym_LPAREN2, - STATE(6175), 2, + STATE(5670), 2, sym_argument_list, sym_initializer_list, - ACTIONS(6916), 10, - anon_sym_DOT_DOT_DOT, - 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(6914), 24, - anon_sym_STAR, - 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_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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [240924] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6654), 10, + ACTIONS(6386), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -531494,8 +491653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(6652), 28, - anon_sym_LPAREN2, + ACTIONS(6384), 24, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -531506,7 +491664,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -531520,213 +491677,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_DOT_DOT_DOT_GT, - [240970] = 27, + [194176] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(7993), 1, - anon_sym_COMMA, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9590), 1, - anon_sym_SEMI, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8559), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [241064] = 27, + [194268] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7617), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7631), 1, anon_sym_DOT, - ACTIONS(7993), 1, - anon_sym_COMMA, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8881), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, - anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - ACTIONS(9592), 1, - anon_sym_SEMI, - STATE(3181), 1, + ACTIONS(8897), 1, + anon_sym_LT_LT, + ACTIONS(8899), 1, + anon_sym_GT_GT, + STATE(4059), 1, sym_argument_list, - STATE(3186), 1, + STATE(4060), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8877), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8879), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8909), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7019), 6, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7021), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, anon_sym_EQ_EQ, anon_sym_BANG_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, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [241158] = 26, + anon_sym_GT2, + [194338] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9158), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9166), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(9172), 1, - anon_sym_PIPE, - ACTIONS(9176), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(9182), 1, - anon_sym_LT_LT, - ACTIONS(9184), 1, - anon_sym_GT_GT, - ACTIONS(9186), 1, - anon_sym_QMARK, - ACTIONS(9188), 1, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, - anon_sym_bitor, - ACTIONS(9192), 1, + ACTIONS(8599), 1, anon_sym_bitand, - STATE(4226), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + STATE(2617), 1, sym_argument_list, - STATE(4227), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7065), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(7803), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9170), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9174), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, + ACTIONS(9233), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9180), 4, + ACTIONS(8591), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [241250] = 3, + [194430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6676), 10, + ACTIONS(6199), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -531737,7 +491879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(6674), 28, + ACTIONS(6197), 28, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -531766,323 +491908,115 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DOT_DOT_DOT_GT, - [241296] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7916), 1, - anon_sym_const, - ACTIONS(8946), 2, - anon_sym_AMP, - anon_sym_LBRACK, - STATE(5687), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(7907), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(8944), 22, - anon_sym_DOT_DOT_DOT, - 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_COLON, - anon_sym_asm, - anon_sym___asm__, - 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, - sym_semgrep_metavar, - [241348] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9510), 1, - anon_sym_LPAREN2, - ACTIONS(9594), 1, - anon_sym_STAR, - STATE(6761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7813), 1, - sym_type_declarator, - STATE(10178), 1, - sym_ms_based_modifier, - ACTIONS(9502), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5827), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6464), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(9500), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(2872), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9508), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(9498), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [241416] = 27, + [194476] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9596), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9235), 1, anon_sym_COMMA, - ACTIONS(9598), 1, + ACTIONS(9237), 1, anon_sym_RPAREN, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [241510] = 14, + [194570] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9526), 1, + ACTIONS(9145), 1, anon_sym_LPAREN2, - ACTIONS(9528), 1, + ACTIONS(9147), 1, anon_sym_STAR, - STATE(3388), 1, + STATE(3168), 1, sym_type_declarator, - STATE(6761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(10196), 1, - sym_ms_based_modifier, - ACTIONS(9502), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(6483), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6678), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(9500), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(3848), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9524), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(9498), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [241578] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9510), 1, - anon_sym_LPAREN2, - ACTIONS(9594), 1, - anon_sym_STAR, - STATE(6761), 1, + STATE(6285), 1, sym_ms_unaligned_ptr_modifier, - STATE(7834), 1, - sym_type_declarator, - STATE(10178), 1, + STATE(9304), 1, sym_ms_based_modifier, - ACTIONS(9502), 2, + ACTIONS(9127), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(6518), 2, + STATE(6028), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(6678), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(9500), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(2872), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9508), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(9498), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [241646] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9510), 1, - anon_sym_LPAREN2, - ACTIONS(9594), 1, - anon_sym_STAR, - STATE(6761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7834), 1, - sym_type_declarator, - STATE(10178), 1, - sym_ms_based_modifier, - ACTIONS(9502), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5829), 2, + STATE(6097), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6518), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(9500), 3, + ACTIONS(9125), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(2872), 5, + STATE(3613), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9508), 6, + ACTIONS(9143), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(9498), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -532095,48 +492029,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [241714] = 14, + [194638] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9510), 1, + ACTIONS(9187), 1, anon_sym_LPAREN2, - ACTIONS(9594), 1, + ACTIONS(9189), 1, anon_sym_STAR, - STATE(6761), 1, + STATE(6285), 1, sym_ms_unaligned_ptr_modifier, - STATE(7838), 1, + STATE(7065), 1, sym_type_declarator, - STATE(10178), 1, + STATE(9630), 1, sym_ms_based_modifier, - ACTIONS(9502), 2, + ACTIONS(9127), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(6468), 2, + STATE(5974), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(6678), 2, + STATE(6097), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(9500), 3, + ACTIONS(9125), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(2872), 5, + STATE(7297), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9508), 6, + ACTIONS(9185), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(9498), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -532149,292 +492083,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [241782] = 27, + [194706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7993), 1, - anon_sym_COMMA, - ACTIONS(8874), 1, + ACTIONS(6224), 10, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8886), 1, anon_sym_PIPE, - ACTIONS(8890), 1, anon_sym_AMP, - ACTIONS(8896), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(6222), 28, + anon_sym_LPAREN2, + anon_sym_STAR, + 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(8900), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(8902), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8906), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(9600), 1, - anon_sym_SEMI, - STATE(3181), 1, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [194752] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7120), 1, + anon_sym_LPAREN2, + ACTIONS(7617), 1, + anon_sym_LBRACK, + ACTIONS(7631), 1, + anon_sym_DOT, + STATE(4059), 1, sym_argument_list, - STATE(3186), 1, + STATE(4060), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8909), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(7019), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 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, + ACTIONS(7021), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, 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, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [241876] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9535), 1, - anon_sym_LPAREN2, - ACTIONS(9588), 1, - anon_sym_STAR, - STATE(6761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7784), 1, - sym_type_declarator, - STATE(9810), 1, - sym_ms_based_modifier, - ACTIONS(9502), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5813), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6480), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(9500), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(7629), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9533), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(9498), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [241944] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9510), 1, - anon_sym_LPAREN2, - ACTIONS(9602), 1, - anon_sym_STAR, - STATE(6761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7869), 1, - sym_type_declarator, - STATE(10254), 1, - sym_ms_based_modifier, - ACTIONS(9502), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5834), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6474), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(9500), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(2872), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9508), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(9498), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [242012] = 27, + anon_sym_GT2, + [194812] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9604), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9239), 1, anon_sym_COMMA, - ACTIONS(9606), 1, + ACTIONS(9241), 1, anon_sym_RPAREN, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [242106] = 14, + [194906] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9510), 1, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(8549), 1, + sym_auto, + ACTIONS(8551), 1, + anon_sym_decltype, + ACTIONS(8719), 1, anon_sym_LPAREN2, - ACTIONS(9602), 1, + ACTIONS(8727), 1, + anon_sym_LBRACK, + ACTIONS(9161), 1, anon_sym_STAR, - STATE(6761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7851), 1, - sym_type_declarator, - STATE(10254), 1, - sym_ms_based_modifier, - ACTIONS(9502), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(6475), 2, + ACTIONS(9163), 1, + anon_sym_AMP_AMP, + ACTIONS(9165), 1, + anon_sym_AMP, + STATE(3704), 1, + sym_decltype_auto, + STATE(4300), 1, + sym_parameter_list, + STATE(6893), 1, + sym_function_declarator_seq, + STATE(7334), 1, + sym_abstract_declarator, + STATE(5749), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(6678), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(9500), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(2872), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9508), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(9498), 12, + STATE(6892), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8733), 8, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7873), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -532445,50 +492300,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [242174] = 14, + [194980] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9510), 1, + ACTIONS(8038), 1, + anon_sym_const, + ACTIONS(8719), 1, anon_sym_LPAREN2, - ACTIONS(9602), 1, + ACTIONS(8721), 1, anon_sym_STAR, - STATE(6761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7851), 1, - sym_type_declarator, - STATE(10254), 1, - sym_ms_based_modifier, - ACTIONS(9502), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5836), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6475), 2, + ACTIONS(8723), 1, + anon_sym_AMP_AMP, + ACTIONS(8725), 1, + anon_sym_AMP, + ACTIONS(8727), 1, + anon_sym_LBRACK, + STATE(4006), 1, + sym_parameter_list, + STATE(6893), 1, + sym_function_declarator_seq, + STATE(7038), 1, + sym_abstract_declarator, + STATE(5313), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - ACTIONS(9500), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(2872), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9508), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(9498), 12, + STATE(6892), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6535), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8030), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -532499,50 +492354,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [242242] = 14, + [195048] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9510), 1, + ACTIONS(8038), 1, + anon_sym_const, + ACTIONS(8719), 1, anon_sym_LPAREN2, - ACTIONS(9602), 1, + ACTIONS(8721), 1, anon_sym_STAR, - STATE(6761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7855), 1, - sym_type_declarator, - STATE(10254), 1, - sym_ms_based_modifier, - ACTIONS(9502), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(6477), 2, + ACTIONS(8723), 1, + anon_sym_AMP_AMP, + ACTIONS(8725), 1, + anon_sym_AMP, + ACTIONS(8727), 1, + anon_sym_LBRACK, + STATE(4006), 1, + sym_parameter_list, + STATE(6893), 1, + sym_function_declarator_seq, + STATE(7041), 1, + sym_abstract_declarator, + STATE(5575), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(6678), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(9500), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(2872), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9508), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(9498), 12, + STATE(6892), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8030), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -532553,228 +492396,282 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [242310] = 26, + ACTIONS(9173), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [195116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(6244), 10, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8886), 1, anon_sym_PIPE, - ACTIONS(8890), 1, anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8878), 2, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(6242), 28, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9210), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(8892), 3, 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_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, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [242402] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [195162] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7617), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7631), 1, anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8881), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8887), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8891), 1, anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8897), 1, + anon_sym_LT_LT, + ACTIONS(8899), 1, + anon_sym_GT_GT, + ACTIONS(8903), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8905), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8907), 1, anon_sym_bitand, - STATE(3181), 1, + STATE(4059), 1, sym_argument_list, - STATE(3186), 1, + STATE(4060), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8877), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8879), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8883), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8885), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8889), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9553), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(8892), 3, + ACTIONS(8909), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8893), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(7118), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(8895), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [242494] = 27, + [195250] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9608), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9243), 1, anon_sym_COMMA, - ACTIONS(9610), 1, + ACTIONS(9245), 1, anon_sym_RPAREN, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [242588] = 5, + [195344] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9616), 1, - anon_sym___attribute__, - STATE(5840), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(9614), 3, + ACTIONS(4250), 1, + anon_sym_LBRACE, + ACTIONS(8565), 1, + anon_sym_LPAREN2, + STATE(5656), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6397), 10, + anon_sym_DOT_DOT_DOT, + 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(6395), 24, + anon_sym_STAR, + 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_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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [195396] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8038), 1, anon_sym_const, - ACTIONS(9612), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8719), 1, anon_sym_LPAREN2, + ACTIONS(8721), 1, + anon_sym_STAR, + ACTIONS(8723), 1, anon_sym_AMP_AMP, + ACTIONS(8725), 1, + anon_sym_AMP, + ACTIONS(8727), 1, + anon_sym_LBRACK, + STATE(4006), 1, + sym_parameter_list, + STATE(6893), 1, + sym_function_declarator_seq, + STATE(7044), 1, + sym_abstract_declarator, + STATE(5575), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6892), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7388), 11, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8030), 11, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -532785,30 +492682,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - 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, - sym_semgrep_metavar, - [242638] = 6, + [195464] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7916), 1, + ACTIONS(8038), 1, anon_sym_const, - ACTIONS(9621), 2, + ACTIONS(8719), 1, + anon_sym_LPAREN2, + ACTIONS(8721), 1, + anon_sym_STAR, + ACTIONS(8723), 1, + anon_sym_AMP_AMP, + ACTIONS(8725), 1, anon_sym_AMP, + ACTIONS(8727), 1, anon_sym_LBRACK, - STATE(5687), 2, + STATE(4006), 1, + sym_parameter_list, + STATE(6893), 1, + sym_function_declarator_seq, + STATE(7047), 1, + sym_abstract_declarator, + STATE(5575), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - ACTIONS(7907), 11, + STATE(6892), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8030), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -532820,570 +492724,611 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(9619), 22, - anon_sym_DOT_DOT_DOT, + ACTIONS(9177), 11, 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_COLON, - anon_sym_asm, - anon_sym___asm__, - 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, - sym_semgrep_metavar, - [242690] = 26, + [195532] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9623), 2, + ACTIONS(9247), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(8892), 3, + anon_sym_RPAREN, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [242782] = 27, + [195624] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9249), 1, + anon_sym_COMMA, + ACTIONS(9251), 1, + anon_sym_RPAREN, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8583), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8589), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8591), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [195718] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, + anon_sym_SLASH, + ACTIONS(8587), 1, + anon_sym_AMP, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9625), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9253), 1, anon_sym_COMMA, - ACTIONS(9627), 1, + ACTIONS(9255), 1, anon_sym_RPAREN, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8589), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8591), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [195812] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, + anon_sym_SLASH, + ACTIONS(8587), 1, + anon_sym_AMP, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9257), 1, + anon_sym_COMMA, + ACTIONS(9259), 1, + anon_sym_RPAREN, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8583), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8595), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8661), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [195906] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6318), 10, + anon_sym_DOT_DOT_DOT, + 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, - [242876] = 27, + anon_sym_DOT, + ACTIONS(6316), 28, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_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_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [195952] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(7699), 1, + anon_sym_COMMA, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9629), 1, - anon_sym_COMMA, - ACTIONS(9631), 1, - anon_sym_RPAREN, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9261), 1, + anon_sym_SEMI, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [242970] = 26, + [196046] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8852), 1, anon_sym_bitand, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9541), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(8892), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [243062] = 27, + ACTIONS(7130), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [196134] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(6322), 10, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8886), 1, anon_sym_PIPE, - ACTIONS(8890), 1, anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - ACTIONS(9633), 1, - anon_sym_COMMA, - ACTIONS(9635), 1, - anon_sym_RPAREN, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8878), 2, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(6320), 28, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, 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_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, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [243156] = 27, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [196180] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(7699), 1, + anon_sym_COMMA, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9637), 1, - anon_sym_COMMA, - ACTIONS(9639), 1, - anon_sym_RPAREN, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9263), 1, + anon_sym_SEMI, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [243250] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(5848), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9585), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5697), 11, - 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_COLON, - anon_sym_GT2, - ACTIONS(5699), 22, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - 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, - [243300] = 14, + [196274] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9494), 1, + ACTIONS(9187), 1, anon_sym_LPAREN2, - ACTIONS(9496), 1, + ACTIONS(9209), 1, anon_sym_STAR, - STATE(2802), 1, - sym_type_declarator, - STATE(6761), 1, + STATE(6285), 1, sym_ms_unaligned_ptr_modifier, - STATE(10238), 1, + STATE(7248), 1, + sym_type_declarator, + STATE(9315), 1, sym_ms_based_modifier, - ACTIONS(9502), 2, + ACTIONS(9127), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(6507), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6678), 2, + STATE(5274), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(9500), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(3196), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9492), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(9498), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [243368] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9643), 1, - anon_sym_LPAREN2, - ACTIONS(9645), 1, - anon_sym_STAR, - STATE(3758), 1, - sym_type_declarator, - STATE(6761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(9921), 1, - sym_ms_based_modifier, - ACTIONS(9502), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(6460), 2, + STATE(5962), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(6678), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(9500), 3, + ACTIONS(9125), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(4285), 5, + STATE(7297), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9641), 6, + ACTIONS(9185), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(9498), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -533396,235 +493341,422 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [243436] = 14, + [196342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9643), 1, + ACTIONS(6228), 10, + anon_sym_DOT_DOT_DOT, + 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(6226), 28, anon_sym_LPAREN2, - ACTIONS(9645), 1, anon_sym_STAR, - STATE(3758), 1, - sym_type_declarator, - STATE(6761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(9921), 1, - sym_ms_based_modifier, - ACTIONS(9502), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5857), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6460), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(9500), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(4285), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9641), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(9498), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [243504] = 27, + 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_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_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [196388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(6326), 10, + anon_sym_DOT_DOT_DOT, + 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(6324), 28, anon_sym_LPAREN2, - ACTIONS(7000), 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_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(8874), 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_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [196434] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6330), 10, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8886), 1, anon_sym_PIPE, - ACTIONS(8890), 1, anon_sym_AMP, - ACTIONS(8896), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(6328), 28, + anon_sym_LPAREN2, + anon_sym_STAR, + 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(8900), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(8902), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8906), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(9647), 1, - anon_sym_COMMA, - ACTIONS(9649), 1, - anon_sym_RPAREN, - STATE(3181), 1, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [196480] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7120), 1, + anon_sym_LPAREN2, + ACTIONS(7617), 1, + anon_sym_LBRACK, + ACTIONS(7631), 1, + anon_sym_DOT, + STATE(4059), 1, sym_argument_list, - STATE(3186), 1, + STATE(4060), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(6995), 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(6997), 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, - ACTIONS(8876), 2, + anon_sym_GT2, + [196538] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6288), 10, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(6286), 28, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + 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_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [196584] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6334), 10, + anon_sym_DOT_DOT_DOT, + 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(6332), 28, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_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, - ACTIONS(8894), 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [196630] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6338), 10, + anon_sym_DOT_DOT_DOT, + 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, - [243598] = 26, + anon_sym_DOT, + ACTIONS(6336), 28, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_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_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [196676] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(7699), 1, + anon_sym_COMMA, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8806), 1, + anon_sym_SEMI, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9651), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [243690] = 14, + [196770] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9510), 1, + ACTIONS(9153), 1, anon_sym_LPAREN2, - ACTIONS(9512), 1, + ACTIONS(9155), 1, anon_sym_STAR, - STATE(2691), 1, + STATE(3226), 1, sym_type_declarator, - STATE(6761), 1, + STATE(6285), 1, sym_ms_unaligned_ptr_modifier, - STATE(10464), 1, + STATE(9637), 1, sym_ms_based_modifier, - ACTIONS(9502), 2, + ACTIONS(9127), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(6438), 2, + STATE(5932), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(6678), 2, + STATE(6097), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(9500), 3, + ACTIONS(9125), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(2872), 5, + STATE(3783), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9508), 6, + ACTIONS(9151), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(9498), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -533637,77 +493769,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [243758] = 27, + [196838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(7993), 1, - anon_sym_COMMA, - ACTIONS(8874), 1, + ACTIONS(6342), 10, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8886), 1, anon_sym_PIPE, - ACTIONS(8890), 1, anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - ACTIONS(9653), 1, - anon_sym_SEMI, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8878), 2, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(6340), 28, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, 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_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, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [243852] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [196884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6604), 10, + ACTIONS(6346), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -533718,7 +493826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(6602), 28, + ACTIONS(6344), 28, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -533747,48 +493855,156 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DOT_DOT_DOT_GT, - [243898] = 14, + [196930] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(8719), 1, + anon_sym_LPAREN2, + ACTIONS(8727), 1, + anon_sym_LBRACK, + ACTIONS(8735), 1, + anon_sym_STAR, + ACTIONS(8737), 1, + anon_sym_AMP_AMP, + ACTIONS(8739), 1, + anon_sym_AMP, + STATE(4171), 1, + sym_parameter_list, + STATE(6893), 1, + sym_function_declarator_seq, + STATE(7075), 1, + sym_abstract_declarator, + STATE(5348), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6892), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6535), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7873), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [196998] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(8719), 1, + anon_sym_LPAREN2, + ACTIONS(8727), 1, + anon_sym_LBRACK, + ACTIONS(8735), 1, + anon_sym_STAR, + ACTIONS(8737), 1, + anon_sym_AMP_AMP, + ACTIONS(8739), 1, + anon_sym_AMP, + STATE(4171), 1, + sym_parameter_list, + STATE(6893), 1, + sym_function_declarator_seq, + STATE(7079), 1, + sym_abstract_declarator, + STATE(5379), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6892), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7873), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(9173), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [197066] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9643), 1, + ACTIONS(9153), 1, anon_sym_LPAREN2, - ACTIONS(9645), 1, + ACTIONS(9155), 1, anon_sym_STAR, - STATE(3783), 1, + STATE(3226), 1, sym_type_declarator, - STATE(6761), 1, + STATE(6285), 1, sym_ms_unaligned_ptr_modifier, - STATE(9921), 1, + STATE(9637), 1, sym_ms_based_modifier, - ACTIONS(9502), 2, + ACTIONS(9127), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(6465), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6678), 2, + STATE(5196), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(9500), 3, + STATE(5932), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(9125), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(4285), 5, + STATE(3783), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9641), 6, + ACTIONS(9151), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(9498), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -533801,90 +494017,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [243966] = 26, + [197134] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7617), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7631), 1, anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8881), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8887), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8891), 1, anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8897), 1, + anon_sym_LT_LT, + ACTIONS(8899), 1, + anon_sym_GT_GT, + ACTIONS(8903), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8905), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8907), 1, anon_sym_bitand, - STATE(3181), 1, + STATE(4059), 1, sym_argument_list, - STATE(3186), 1, + STATE(4060), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8877), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8879), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8883), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8885), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8889), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9655), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(8892), 3, + ACTIONS(8909), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8893), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(7062), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(8895), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [244058] = 4, + [197222] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9657), 1, - anon_sym_COLON, - ACTIONS(2193), 9, + ACTIONS(7120), 1, + anon_sym_LPAREN2, + ACTIONS(7617), 1, + anon_sym_LBRACK, + ACTIONS(7631), 1, + anon_sym_DOT, + STATE(4059), 1, + sym_argument_list, + STATE(4060), 1, + sym_subscript_argument_list, + ACTIONS(7633), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8909), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7005), 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(7007), 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_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, + [197282] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7120), 1, + anon_sym_LPAREN2, + ACTIONS(7617), 1, + anon_sym_LBRACK, + ACTIONS(7631), 1, anon_sym_DOT, - ACTIONS(2191), 28, + STATE(4059), 1, + sym_argument_list, + STATE(4060), 1, + sym_subscript_argument_list, + ACTIONS(7633), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8909), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7011), 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(7013), 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_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, + [197342] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6292), 10, + anon_sym_DOT_DOT_DOT, + 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(6290), 28, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -533896,8 +494207,7 @@ 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_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -533911,288 +494221,343 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [244106] = 26, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [197388] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(7617), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7631), 1, anon_sym_DOT, - ACTIONS(9158), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9166), 1, + ACTIONS(8881), 1, anon_sym_SLASH, - ACTIONS(9172), 1, + ACTIONS(8887), 1, anon_sym_PIPE, - ACTIONS(9176), 1, + ACTIONS(8891), 1, anon_sym_AMP, - ACTIONS(9182), 1, + ACTIONS(8897), 1, anon_sym_LT_LT, - ACTIONS(9184), 1, + ACTIONS(8899), 1, anon_sym_GT_GT, - ACTIONS(9186), 1, - anon_sym_QMARK, - ACTIONS(9188), 1, + ACTIONS(8903), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, + ACTIONS(8905), 1, anon_sym_bitor, - ACTIONS(9192), 1, + ACTIONS(8907), 1, anon_sym_bitand, - STATE(4226), 1, + STATE(4059), 1, sym_argument_list, - STATE(4227), 1, + STATE(4060), 1, sym_subscript_argument_list, - ACTIONS(7803), 2, + ACTIONS(7633), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + ACTIONS(8877), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + ACTIONS(8879), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9168), 2, + ACTIONS(8883), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9170), 2, + ACTIONS(8885), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9174), 2, + ACTIONS(8889), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9194), 2, + ACTIONS(8909), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9659), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(9178), 3, + ACTIONS(8893), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9180), 4, + ACTIONS(7130), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(8895), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [244198] = 14, + [197476] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9494), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(9496), 1, + ACTIONS(7617), 1, + anon_sym_LBRACK, + ACTIONS(7631), 1, + anon_sym_DOT, + STATE(4059), 1, + sym_argument_list, + STATE(4060), 1, + sym_subscript_argument_list, + ACTIONS(7633), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7015), 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(7017), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, - STATE(2776), 1, - sym_type_declarator, - STATE(6761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(10238), 1, - sym_ms_based_modifier, - ACTIONS(9502), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(6443), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6678), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(9500), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(3196), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9492), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(9498), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [244266] = 27, + 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, + [197534] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(7993), 1, + ACTIONS(7699), 1, anon_sym_COMMA, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9661), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9265), 1, anon_sym_SEMI, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [197628] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4763), 10, + anon_sym_DOT_DOT_DOT, + 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, - [244360] = 27, + anon_sym_DOT, + ACTIONS(4771), 28, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_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_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [197674] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(7993), 1, + ACTIONS(7699), 1, anon_sym_COMMA, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9663), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9267), 1, anon_sym_SEMI, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [244454] = 6, + [197768] = 14, ACTIONS(3), 1, sym_comment, - STATE(5739), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5699), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(9530), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6016), 9, - anon_sym_COMMA, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(8719), 1, anon_sym_LPAREN2, + ACTIONS(8727), 1, + anon_sym_LBRACK, + ACTIONS(8735), 1, anon_sym_STAR, + ACTIONS(8737), 1, anon_sym_AMP_AMP, + ACTIONS(8739), 1, + anon_sym_AMP, + STATE(4171), 1, + sym_parameter_list, + STATE(6893), 1, + sym_function_declarator_seq, + STATE(7086), 1, + sym_abstract_declarator, + STATE(5379), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6892), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7388), 11, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - ACTIONS(6019), 22, - anon_sym_AMP, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7873), 11, anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -534203,56 +494568,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [244506] = 14, + [197836] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9643), 1, + ACTIONS(9121), 1, anon_sym_LPAREN2, - ACTIONS(9645), 1, + ACTIONS(9123), 1, anon_sym_STAR, - STATE(3703), 1, + STATE(2205), 1, sym_type_declarator, - STATE(6761), 1, + STATE(6285), 1, sym_ms_unaligned_ptr_modifier, - STATE(9921), 1, + STATE(9248), 1, sym_ms_based_modifier, - ACTIONS(9502), 2, + ACTIONS(9127), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5850), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6453), 2, + STATE(5991), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - ACTIONS(9500), 3, + STATE(6097), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(9125), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(4285), 5, + STATE(2300), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9641), 6, + ACTIONS(9119), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(9498), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -534265,48 +494622,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [244574] = 14, + [197904] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9516), 1, + ACTIONS(9121), 1, anon_sym_LPAREN2, - ACTIONS(9518), 1, + ACTIONS(9123), 1, anon_sym_STAR, - STATE(3015), 1, + STATE(2205), 1, sym_type_declarator, - STATE(6761), 1, + STATE(6285), 1, sym_ms_unaligned_ptr_modifier, - STATE(10195), 1, + STATE(9248), 1, sym_ms_based_modifier, - ACTIONS(9502), 2, + ACTIONS(9127), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(6430), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(6678), 2, + STATE(5185), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(9500), 3, + STATE(5991), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(9125), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(3534), 5, + STATE(2300), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9514), 6, + ACTIONS(9119), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(9498), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -534319,48 +494676,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [244642] = 14, + [197972] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7699), 1, + anon_sym_COMMA, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, + anon_sym_SLASH, + ACTIONS(8587), 1, + anon_sym_AMP, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(8945), 1, + anon_sym_SEMI, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8583), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8589), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8591), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [198066] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9516), 1, + ACTIONS(9193), 1, anon_sym_LPAREN2, - ACTIONS(9518), 1, + ACTIONS(9195), 1, anon_sym_STAR, - STATE(3015), 1, + STATE(2933), 1, sym_type_declarator, - STATE(6761), 1, + STATE(6285), 1, sym_ms_unaligned_ptr_modifier, - STATE(10195), 1, + STATE(9631), 1, sym_ms_based_modifier, - ACTIONS(9502), 2, + ACTIONS(9127), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5869), 2, + STATE(5237), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6430), 2, + STATE(5947), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - ACTIONS(9500), 3, + ACTIONS(9125), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(3534), 5, + STATE(3254), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9514), 6, + ACTIONS(9191), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(9498), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -534373,116 +494797,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [244710] = 26, + [198134] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(7699), 1, + anon_sym_COMMA, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9269), 1, + anon_sym_SEMI, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9665), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [244802] = 14, + [198228] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9516), 1, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(8719), 1, anon_sym_LPAREN2, - ACTIONS(9518), 1, + ACTIONS(8727), 1, + anon_sym_LBRACK, + ACTIONS(8735), 1, anon_sym_STAR, - STATE(3046), 1, - sym_type_declarator, - STATE(6761), 1, - sym_ms_unaligned_ptr_modifier, - STATE(10195), 1, - sym_ms_based_modifier, - ACTIONS(9502), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(6431), 2, + ACTIONS(8737), 1, + anon_sym_AMP_AMP, + ACTIONS(8739), 1, + anon_sym_AMP, + STATE(4171), 1, + sym_parameter_list, + STATE(6893), 1, + sym_function_declarator_seq, + STATE(7090), 1, + sym_abstract_declarator, + STATE(5379), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(6678), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(9500), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(3534), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9514), 6, + STATE(6892), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7873), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(9177), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [198296] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(7517), 1, + anon_sym_LT, + STATE(1833), 1, + sym_template_argument_list, + STATE(5735), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6090), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(9271), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(9498), 12, + ACTIONS(6088), 28, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_const, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -534493,49 +494959,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [244870] = 12, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [198352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, - anon_sym_LPAREN2, - ACTIONS(7795), 1, - anon_sym_LBRACK, - ACTIONS(7801), 1, - anon_sym_DOT, - ACTIONS(9166), 1, + ACTIONS(6296), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - ACTIONS(7803), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9164), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(6294), 28, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9194), 2, + 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_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(7053), 9, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [198398] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5983), 10, + anon_sym_DOT_DOT_DOT, 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(7051), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_DOT, + ACTIONS(5981), 28, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -534544,40 +495045,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [244934] = 10, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [198444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(6195), 10, + anon_sym_DOT_DOT_DOT, + 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(6193), 28, anon_sym_LPAREN2, - ACTIONS(7795), 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_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(7801), 1, - anon_sym_DOT, - STATE(4226), 1, - sym_argument_list, - STATE(4227), 1, - sym_subscript_argument_list, - ACTIONS(7803), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9194), 2, + 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(7053), 10, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [198490] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9193), 1, + anon_sym_LPAREN2, + ACTIONS(9195), 1, + anon_sym_STAR, + STATE(2908), 1, + sym_type_declarator, + STATE(6285), 1, + sym_ms_unaligned_ptr_modifier, + STATE(9631), 1, + sym_ms_based_modifier, + ACTIONS(9127), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5984), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6097), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(9125), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(3254), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9191), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [198558] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4763), 10, + anon_sym_DOT_DOT_DOT, 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(7051), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_DOT, + ACTIONS(4771), 28, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -534585,7 +495172,11 @@ 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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -534594,402 +495185,471 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [244994] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_DOT_DOT_GT, + [198604] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(7699), 1, + anon_sym_COMMA, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9273), 1, + anon_sym_RPAREN, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9152), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [245086] = 26, + [198698] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7617), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7631), 1, anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8881), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8897), 1, + anon_sym_LT_LT, + ACTIONS(8899), 1, + anon_sym_GT_GT, + ACTIONS(8903), 1, + anon_sym_LT_EQ_GT, + STATE(4059), 1, + sym_argument_list, + STATE(4060), 1, + sym_subscript_argument_list, + ACTIONS(7633), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8877), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8879), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8909), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7019), 6, anon_sym_PIPE, - ACTIONS(8890), 1, anon_sym_AMP, - ACTIONS(8896), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(8900), 1, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7021), 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, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8906), 1, + anon_sym_xor, anon_sym_bitand, - STATE(3181), 1, + anon_sym_not_eq, + anon_sym_GT2, + [198770] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, + anon_sym_SLASH, + ACTIONS(8587), 1, + anon_sym_AMP, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9275), 1, + anon_sym_RPAREN, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9203), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [245178] = 23, + [198861] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(9166), 1, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9281), 1, anon_sym_SLASH, - ACTIONS(9172), 1, + ACTIONS(9287), 1, anon_sym_PIPE, - ACTIONS(9176), 1, + ACTIONS(9291), 1, anon_sym_AMP, - ACTIONS(9182), 1, - anon_sym_LT_LT, - ACTIONS(9184), 1, - anon_sym_GT_GT, - ACTIONS(9188), 1, + ACTIONS(9297), 1, + anon_sym_GT_EQ, + ACTIONS(9301), 1, + anon_sym_COLON, + ACTIONS(9303), 1, + anon_sym_QMARK, + ACTIONS(9305), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, + ACTIONS(9307), 1, anon_sym_bitor, - ACTIONS(9192), 1, + ACTIONS(9309), 1, anon_sym_bitand, - STATE(4226), 1, + STATE(2617), 1, sym_argument_list, - STATE(4227), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7803), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + ACTIONS(9279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9170), 2, + ACTIONS(9283), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9285), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9174), 2, + ACTIONS(9289), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, + ACTIONS(9299), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9293), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9180), 4, + ACTIONS(9295), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, - anon_sym_or, - anon_sym_GT2, - [245264] = 27, + [198952] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(7993), 1, - anon_sym_COMMA, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9667), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9311), 1, anon_sym_SEMI, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [245358] = 26, + [199043] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8852), 1, anon_sym_bitand, - STATE(3181), 1, + ACTIONS(9313), 1, + anon_sym_RBRACK, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8870), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(8876), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [245450] = 22, + [199134] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7795), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7801), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9166), 1, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(9172), 1, - anon_sym_PIPE, - ACTIONS(9176), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(9182), 1, - anon_sym_LT_LT, - ACTIONS(9184), 1, - anon_sym_GT_GT, - ACTIONS(9188), 1, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(9190), 1, - anon_sym_bitor, - ACTIONS(9192), 1, + ACTIONS(8599), 1, anon_sym_bitand, - STATE(4226), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9315), 1, + anon_sym_RBRACE, + STATE(2617), 1, sym_argument_list, - STATE(4227), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7803), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9162), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9164), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9174), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9194), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9178), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9180), 4, + ACTIONS(8591), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 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, - [245534] = 3, + [199225] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4827), 10, - anon_sym_DOT_DOT_DOT, + ACTIONS(9317), 1, + anon_sym_COMMA, + ACTIONS(9320), 1, + anon_sym_RPAREN, + STATE(8595), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(2191), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -534999,7 +495659,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(4835), 28, + ACTIONS(2193), 25, + anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -535011,7 +495672,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -535025,561 +495685,668 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_DOT_DOT_GT, - [245580] = 27, + [199276] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5228), 1, + anon_sym_RBRACK, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(7993), 1, - anon_sym_COMMA, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8852), 1, anon_sym_bitand, - ACTIONS(9669), 1, - anon_sym_SEMI, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [245674] = 26, + [199367] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5122), 1, + anon_sym_RBRACK, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8880), 1, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8852), 1, anon_sym_bitand, - ACTIONS(9328), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9671), 1, - anon_sym_RBRACK, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [245765] = 26, + [199458] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5142), 1, + anon_sym_RBRACK, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8852), 1, anon_sym_bitand, - ACTIONS(9673), 1, - anon_sym_RPAREN, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8842), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8836), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8838), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [199549] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, + anon_sym_SLASH, + ACTIONS(8587), 1, + anon_sym_AMP, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9323), 1, + anon_sym_SEMI, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8583), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8595), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8661), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [245856] = 26, + [199640] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(9281), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(9287), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(9291), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(9297), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(9303), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(9305), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(9307), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(9309), 1, anon_sym_bitand, - ACTIONS(9675), 1, - anon_sym_RPAREN, - STATE(3181), 1, + ACTIONS(9325), 1, + anon_sym_COLON, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(9277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(9279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(9283), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(9285), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(9289), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(9299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(9293), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(9295), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [245947] = 26, + [199731] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(7235), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(8054), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8070), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9677), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9683), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(9689), 1, - anon_sym_PIPE, - ACTIONS(9693), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(9699), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(9703), 1, - anon_sym_QMARK, - ACTIONS(9705), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(9707), 1, - anon_sym_bitor, - ACTIONS(9709), 1, + ACTIONS(8599), 1, anon_sym_bitand, - STATE(4413), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9327), 1, + anon_sym_SEMI, + STATE(2617), 1, sym_argument_list, - STATE(4493), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8072), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9679), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9681), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9685), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9687), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9691), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9701), 2, + ACTIONS(8589), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8591), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [199822] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, + anon_sym_SLASH, + ACTIONS(8587), 1, + anon_sym_AMP, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9329), 1, + anon_sym_SEMI, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8583), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8595), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9711), 2, + ACTIONS(8661), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8589), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8591), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [199913] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, + anon_sym_SLASH, + ACTIONS(8587), 1, + anon_sym_AMP, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9331), 1, + anon_sym_SEMI, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9695), 3, + ACTIONS(8581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8583), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9697), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [246038] = 26, + [200004] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(7141), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7790), 1, anon_sym_LBRACK, - ACTIONS(8196), 1, + ACTIONS(7804), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(9333), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9717), 1, + ACTIONS(9339), 1, anon_sym_SLASH, - ACTIONS(9723), 1, + ACTIONS(9345), 1, anon_sym_PIPE, - ACTIONS(9727), 1, + ACTIONS(9349), 1, anon_sym_AMP, - ACTIONS(9733), 1, + ACTIONS(9355), 1, anon_sym_GT_EQ, - ACTIONS(9737), 1, - anon_sym_COLON, - ACTIONS(9739), 1, + ACTIONS(9359), 1, anon_sym_QMARK, - ACTIONS(9741), 1, + ACTIONS(9361), 1, anon_sym_LT_EQ_GT, - ACTIONS(9743), 1, + ACTIONS(9363), 1, anon_sym_bitor, - ACTIONS(9745), 1, + ACTIONS(9365), 1, anon_sym_bitand, - STATE(3181), 1, + ACTIONS(9369), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4143), 1, sym_argument_list, - STATE(3186), 1, + STATE(4144), 1, sym_subscript_argument_list, - ACTIONS(8198), 2, + ACTIONS(7806), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9713), 2, + ACTIONS(9335), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9715), 2, + ACTIONS(9337), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9719), 2, + ACTIONS(9341), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9721), 2, + ACTIONS(9343), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9725), 2, + ACTIONS(9347), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9735), 2, + ACTIONS(9357), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9729), 3, + ACTIONS(9367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9351), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9731), 3, + ACTIONS(9353), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [246129] = 26, + [200095] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5182), 1, + anon_sym_RBRACK, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8852), 1, anon_sym_bitand, - ACTIONS(9747), 1, - anon_sym_SEMI, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [246220] = 14, + [200186] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, - anon_sym_LPAREN2, - ACTIONS(9097), 1, - anon_sym_STAR, - ACTIONS(9099), 1, - anon_sym_AMP_AMP, - ACTIONS(9101), 1, - anon_sym_AMP, - ACTIONS(9105), 1, - anon_sym_LBRACK, - ACTIONS(9107), 1, + ACTIONS(9374), 1, anon_sym_const, - STATE(4035), 1, - sym_parameter_list, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(7520), 1, - sym_abstract_declarator, - STATE(6350), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(7464), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7534), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - ACTIONS(9103), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [246287] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5550), 1, - anon_sym_LPAREN2, - ACTIONS(9097), 1, - anon_sym_STAR, - ACTIONS(9099), 1, - anon_sym_AMP_AMP, - ACTIONS(9101), 1, + ACTIONS(5725), 2, anon_sym_AMP, - ACTIONS(9105), 1, anon_sym_LBRACK, - ACTIONS(9107), 1, - anon_sym_const, - STATE(4035), 1, - sym_parameter_list, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(7524), 1, - sym_abstract_declarator, - STATE(6350), 2, + STATE(5379), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(7464), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9250), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - ACTIONS(9103), 11, + ACTIONS(9371), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -535591,7282 +496358,7829 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [246354] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9749), 1, - sym_identifier, - ACTIONS(9753), 1, - sym_primitive_type, - STATE(5452), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9751), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6022), 10, + ACTIONS(5727), 21, + 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___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6026), 20, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, + anon_sym_asm, + anon_sym___asm__, + 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, - [246407] = 26, + [200237] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9755), 1, - ts_builtin_sym_end, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9377), 1, + anon_sym_RPAREN, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [246498] = 26, + [200328] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9757), 1, - anon_sym_SEMI, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9379), 1, + anon_sym_RPAREN, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [246589] = 26, + [200419] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(9281), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(9287), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(9291), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(9297), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(9303), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(9305), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(9307), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(9309), 1, anon_sym_bitand, - ACTIONS(9759), 1, - anon_sym_RBRACK, - STATE(3181), 1, + ACTIONS(9381), 1, + anon_sym_COLON, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(9277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(9279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(9283), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(9285), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(9289), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(9299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(9293), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(9295), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [246680] = 26, + [200510] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9761), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9383), 1, anon_sym_SEMI, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [246771] = 26, + [200601] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5152), 1, + ACTIONS(5172), 1, anon_sym_RBRACK, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8852), 1, anon_sym_bitand, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [246862] = 26, + [200692] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(8054), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8070), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9677), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9683), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(9689), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(9693), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(9699), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(9703), 1, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(9705), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(9707), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(9709), 1, + ACTIONS(8852), 1, anon_sym_bitand, - ACTIONS(9763), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(4413), 1, + ACTIONS(9113), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9385), 1, + anon_sym_RBRACK, + STATE(2617), 1, sym_argument_list, - STATE(4493), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8072), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9679), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9681), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9685), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9687), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9691), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9701), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9711), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9695), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9697), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [246953] = 26, + [200783] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5312), 1, - anon_sym_RBRACK, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9387), 1, + anon_sym_SEMI, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [247044] = 26, + [200874] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8852), 1, anon_sym_bitand, - ACTIONS(9765), 1, - anon_sym_RPAREN, - STATE(3181), 1, + ACTIONS(9389), 1, + anon_sym_RBRACK, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [247135] = 12, + [200965] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, + ACTIONS(5186), 1, + anon_sym_RBRACK, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(8054), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8070), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9683), 1, - anon_sym_SLASH, - STATE(4413), 1, - sym_argument_list, - STATE(4493), 1, - sym_subscript_argument_list, - ACTIONS(8072), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9681), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9711), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7053), 8, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(8824), 1, + anon_sym_SLASH, + ACTIONS(8830), 1, anon_sym_PIPE, + ACTIONS(8834), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7051), 17, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(8840), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(8846), 1, anon_sym_QMARK, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(8850), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(8852), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT_DOT_DOT_GT, - [247198] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7235), 1, - anon_sym_LPAREN2, - ACTIONS(8054), 1, - anon_sym_LBRACK, - ACTIONS(8070), 1, - anon_sym_DOT, - STATE(4413), 1, + STATE(2617), 1, sym_argument_list, - STATE(4493), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8072), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9711), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7053), 9, - anon_sym_DOT_DOT_DOT, + ACTIONS(8820), 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(7051), 19, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8828), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8832), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, + ACTIONS(8836), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - anon_sym_DOT_DOT_DOT_GT, - [247257] = 24, + ACTIONS(8838), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [201056] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7053), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7235), 1, + ACTIONS(5232), 1, + anon_sym_RBRACK, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(8054), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8070), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9683), 1, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(9689), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(9693), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(9699), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(9705), 1, + ACTIONS(8846), 1, + anon_sym_QMARK, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(9707), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(9709), 1, + ACTIONS(8852), 1, anon_sym_bitand, - STATE(4413), 1, + STATE(2617), 1, sym_argument_list, - STATE(4493), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8072), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9679), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9681), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9687), 2, + ACTIONS(8826), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9691), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9701), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9711), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9695), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9697), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 4, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, - anon_sym_or, - anon_sym_DOT_DOT_DOT_GT, - [247344] = 23, + [201147] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7053), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7235), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(8054), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8070), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9683), 1, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(9689), 1, - anon_sym_PIPE, - ACTIONS(9693), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(9699), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(9705), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(9707), 1, - anon_sym_bitor, - ACTIONS(9709), 1, + ACTIONS(8599), 1, anon_sym_bitand, - STATE(4413), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9391), 1, + anon_sym_SEMI, + STATE(2617), 1, sym_argument_list, - STATE(4493), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8072), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9679), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9681), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9691), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9701), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9711), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9695), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9697), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 6, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_DOT_DOT_DOT_GT, - [247429] = 26, + [201238] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5082), 1, + anon_sym_RBRACK, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8196), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9717), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(9723), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(9727), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(9733), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(9739), 1, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(9741), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(9743), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(9745), 1, + ACTIONS(8852), 1, anon_sym_bitand, - ACTIONS(9767), 1, - anon_sym_COLON, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8198), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9713), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9715), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9719), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9721), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9725), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9735), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9729), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9731), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [247520] = 26, + [201329] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5098), 1, + anon_sym_RBRACK, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8852), 1, anon_sym_bitand, - ACTIONS(9769), 1, - anon_sym_RPAREN, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [247611] = 21, + [201420] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, + ACTIONS(5102), 1, + anon_sym_RBRACK, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(8054), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8070), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9683), 1, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(9693), 1, + ACTIONS(8830), 1, + anon_sym_PIPE, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(9699), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(9705), 1, + ACTIONS(8846), 1, + anon_sym_QMARK, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(9709), 1, + ACTIONS(8850), 1, + anon_sym_bitor, + ACTIONS(8852), 1, anon_sym_bitand, - STATE(4413), 1, + STATE(2617), 1, sym_argument_list, - STATE(4493), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7053), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - ACTIONS(8072), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9679), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9681), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9691), 2, + ACTIONS(8826), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8828), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9701), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9711), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9695), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9697), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 7, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_DOT_DOT_DOT_GT, - [247692] = 20, + [201511] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(8054), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8070), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9683), 1, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(9693), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(9699), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(9705), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(9709), 1, + ACTIONS(8599), 1, anon_sym_bitand, - STATE(4413), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9393), 1, + anon_sym_RPAREN, + STATE(2617), 1, sym_argument_list, - STATE(4493), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7053), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - ACTIONS(8072), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9679), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9681), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9701), 2, + ACTIONS(8595), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9711), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9695), 3, + ACTIONS(8661), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9697), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 9, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_QMARK, + [201602] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7197), 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_DOT_DOT_DOT_GT, - [247771] = 26, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(7199), 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_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [201647] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(9395), 1, + anon_sym_LT, + STATE(5731), 1, + sym_template_argument_list, + STATE(5735), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4763), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(9271), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4771), 27, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [201702] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(9281), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(9287), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(9291), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(9297), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(9303), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(9305), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(9307), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(9309), 1, anon_sym_bitand, - ACTIONS(9771), 1, - anon_sym_RPAREN, - STATE(3181), 1, + ACTIONS(9397), 1, + anon_sym_COLON, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(9277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(9279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(9283), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(9285), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(9289), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(9299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(9293), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(9295), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [247862] = 26, + [201793] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9773), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9399), 1, anon_sym_SEMI, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [247953] = 26, + [201884] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9775), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9401), 1, anon_sym_SEMI, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [248044] = 26, + [201975] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9777), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9403), 1, anon_sym_SEMI, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [248135] = 26, + [202066] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, + ACTIONS(7141), 1, anon_sym_LPAREN2, - ACTIONS(8054), 1, + ACTIONS(7790), 1, anon_sym_LBRACK, - ACTIONS(8070), 1, + ACTIONS(7804), 1, anon_sym_DOT, - ACTIONS(9677), 1, + ACTIONS(9333), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9683), 1, + ACTIONS(9339), 1, anon_sym_SLASH, - ACTIONS(9689), 1, + ACTIONS(9345), 1, anon_sym_PIPE, - ACTIONS(9693), 1, + ACTIONS(9349), 1, anon_sym_AMP, - ACTIONS(9699), 1, + ACTIONS(9355), 1, anon_sym_GT_EQ, - ACTIONS(9703), 1, + ACTIONS(9359), 1, anon_sym_QMARK, - ACTIONS(9705), 1, + ACTIONS(9361), 1, anon_sym_LT_EQ_GT, - ACTIONS(9707), 1, + ACTIONS(9363), 1, anon_sym_bitor, - ACTIONS(9709), 1, + ACTIONS(9365), 1, anon_sym_bitand, - ACTIONS(9779), 1, + ACTIONS(9405), 1, anon_sym_DOT_DOT_DOT_GT, - STATE(4413), 1, + STATE(4143), 1, sym_argument_list, - STATE(4493), 1, + STATE(4144), 1, sym_subscript_argument_list, - ACTIONS(8072), 2, + ACTIONS(7806), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9679), 2, + ACTIONS(9335), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9681), 2, + ACTIONS(9337), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9685), 2, + ACTIONS(9341), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9687), 2, + ACTIONS(9343), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9691), 2, + ACTIONS(9347), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9701), 2, + ACTIONS(9357), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9711), 2, + ACTIONS(9367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9695), 3, + ACTIONS(9351), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9697), 3, + ACTIONS(9353), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [248226] = 18, + [202157] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(8054), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8070), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9683), 1, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(9699), 1, + ACTIONS(8587), 1, + anon_sym_AMP, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(9705), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - STATE(4413), 1, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9407), 1, + anon_sym_RPAREN, + STATE(2617), 1, sym_argument_list, - STATE(4493), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8072), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9679), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9681), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9701), 2, + ACTIONS(8595), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9711), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7053), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(9695), 3, + ACTIONS(8661), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9697), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 10, - 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_bitand, - anon_sym_DOT_DOT_DOT_GT, - [248301] = 17, + [202248] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(8054), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8070), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(9683), 1, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9281), 1, anon_sym_SLASH, - ACTIONS(9699), 1, + ACTIONS(9287), 1, + anon_sym_PIPE, + ACTIONS(9291), 1, + anon_sym_AMP, + ACTIONS(9297), 1, anon_sym_GT_EQ, - ACTIONS(9705), 1, + ACTIONS(9303), 1, + anon_sym_QMARK, + ACTIONS(9305), 1, anon_sym_LT_EQ_GT, - STATE(4413), 1, + ACTIONS(9307), 1, + anon_sym_bitor, + ACTIONS(9309), 1, + anon_sym_bitand, + ACTIONS(9409), 1, + anon_sym_COLON, + STATE(2617), 1, sym_argument_list, - STATE(4493), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8072), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9679), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9681), 2, + ACTIONS(9279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9701), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9711), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7053), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(9697), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7051), 13, + ACTIONS(9283), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9285), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9289), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(9299), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9293), 3, 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_DOT_DOT_DOT_GT, - [248374] = 15, + ACTIONS(9295), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [202339] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(8054), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8070), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9683), 1, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(9705), 1, + ACTIONS(8587), 1, + anon_sym_AMP, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - STATE(4413), 1, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9411), 1, + anon_sym_SEMI, + STATE(2617), 1, sym_argument_list, - STATE(4493), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8072), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9679), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9681), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9701), 2, + ACTIONS(8595), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9711), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7053), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7051), 14, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_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_DOT_DOT_DOT_GT, - [248443] = 26, + ACTIONS(8591), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [202430] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9781), 1, - anon_sym_RPAREN, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9413), 1, + anon_sym_SEMI, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [248534] = 26, + [202521] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8852), 1, anon_sym_bitand, - ACTIONS(9783), 1, - anon_sym_RPAREN, - STATE(3181), 1, + ACTIONS(9415), 1, + anon_sym_RBRACK, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [248625] = 13, + [202612] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(8054), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8070), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9683), 1, - anon_sym_SLASH, - STATE(4413), 1, - sym_argument_list, - STATE(4493), 1, - sym_subscript_argument_list, - ACTIONS(8072), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9679), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9681), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9711), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7053), 6, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, + ACTIONS(8585), 1, + anon_sym_SLASH, + ACTIONS(8587), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7051), 17, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(8593), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, + ACTIONS(8599), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT_DOT_DOT_GT, - [248690] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7235), 1, - anon_sym_LPAREN2, - ACTIONS(8054), 1, - anon_sym_LBRACK, - ACTIONS(8070), 1, - anon_sym_DOT, - ACTIONS(9683), 1, - anon_sym_SLASH, - STATE(4413), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9417), 1, + anon_sym_SEMI, + STATE(2617), 1, sym_argument_list, - STATE(4493), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8072), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9679), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9681), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9701), 2, + ACTIONS(8595), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9711), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7053), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7051), 15, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_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_DOT_DOT_DOT_GT, - [248757] = 26, + ACTIONS(8591), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [202703] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5174), 1, + anon_sym_RBRACK, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8196), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9717), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(9723), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(9727), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(9733), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(9739), 1, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(9741), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(9743), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(9745), 1, + ACTIONS(8852), 1, anon_sym_bitand, - ACTIONS(9785), 1, - anon_sym_COLON, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8198), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9713), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9715), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9719), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9721), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9725), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9735), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9729), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9731), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [248848] = 26, + [202794] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5084), 1, + anon_sym_RBRACK, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8852), 1, anon_sym_bitand, - ACTIONS(9787), 1, - anon_sym_SEMI, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [248939] = 26, + [202885] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6016), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6018), 34, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + sym_semgrep_metavar, + [202930] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4983), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6056), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(9419), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6054), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [202979] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4983), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6066), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(9419), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6064), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [203028] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(9395), 1, + anon_sym_LT, + STATE(5731), 1, + sym_template_argument_list, + ACTIONS(5938), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(4789), 31, + 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___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [203079] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(9395), 1, + anon_sym_LT, + STATE(5731), 1, + sym_template_argument_list, + ACTIONS(5374), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(5381), 31, + 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___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [203130] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3694), 1, + anon_sym_const, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(6725), 1, + sym_auto, + ACTIONS(6727), 1, + anon_sym_decltype, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(9421), 1, + anon_sym_STAR, + ACTIONS(9423), 1, + anon_sym_AMP_AMP, + ACTIONS(9425), 1, + anon_sym_AMP, + STATE(2694), 1, + sym_decltype_auto, + STATE(4315), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7392), 1, + sym_abstract_declarator, + STATE(5772), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8717), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8763), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [203203] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9789), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9427), 1, anon_sym_RPAREN, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [249030] = 26, + [203294] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(9281), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(9287), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(9291), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(9297), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(9303), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(9305), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(9307), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(9309), 1, anon_sym_bitand, - ACTIONS(9791), 1, - anon_sym_SEMI, - STATE(3181), 1, + ACTIONS(9429), 1, + anon_sym_COLON, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(9277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(9279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(9283), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(9285), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(9289), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(9299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(9293), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(9295), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [249121] = 26, + [203385] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(5418), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9431), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5651), 10, + 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, + ACTIONS(5653), 22, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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, + [203434] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9793), 1, - anon_sym_RBRACK, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9434), 1, + anon_sym_SEMI, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [249212] = 26, + [203525] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9795), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9436), 1, anon_sym_SEMI, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [249303] = 26, + [203616] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 1, - anon_sym_RBRACK, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9438), 1, + anon_sym_SEMI, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [249394] = 26, + [203707] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5166), 1, - anon_sym_RBRACK, - ACTIONS(6291), 1, + ACTIONS(7141), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7790), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7804), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(9333), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(9339), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(9345), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(9349), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(9355), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(9359), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(9361), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(9363), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(9365), 1, anon_sym_bitand, - STATE(3181), 1, + ACTIONS(9440), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4143), 1, sym_argument_list, - STATE(3186), 1, + STATE(4144), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7806), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(9335), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(9337), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(9341), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(9343), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(9347), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(9357), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(9367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9351), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(9353), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [249485] = 10, + [203798] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, + ACTIONS(3694), 1, + anon_sym_const, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(8054), 1, + ACTIONS(6725), 1, + sym_auto, + ACTIONS(6727), 1, + anon_sym_decltype, + ACTIONS(8765), 1, anon_sym_LBRACK, - ACTIONS(8070), 1, - anon_sym_DOT, - STATE(4413), 1, - sym_argument_list, - STATE(4493), 1, - sym_subscript_argument_list, - ACTIONS(8072), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9711), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7089), 9, - anon_sym_DOT_DOT_DOT, - 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(7091), 19, + ACTIONS(9421), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(9423), 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_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_DOT_DOT_DOT_GT, - [249544] = 26, + ACTIONS(9425), 1, + anon_sym_AMP, + STATE(2694), 1, + sym_decltype_auto, + STATE(4315), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7418), 1, + sym_abstract_declarator, + STATE(5775), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8733), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8763), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [203871] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9797), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9442), 1, anon_sym_RPAREN, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [249635] = 26, + [203962] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8196), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9717), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(9723), 1, - anon_sym_PIPE, - ACTIONS(9727), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(9733), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(9739), 1, - anon_sym_QMARK, - ACTIONS(9741), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(9743), 1, - anon_sym_bitor, - ACTIONS(9745), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9799), 1, - anon_sym_COLON, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9444), 1, + anon_sym_RPAREN, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8198), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9713), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9715), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9719), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9721), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9725), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9735), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9729), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9731), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [249726] = 26, + [204053] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(9281), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(9287), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(9291), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(9297), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(9303), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(9305), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(9307), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(9309), 1, anon_sym_bitand, - ACTIONS(9801), 1, - anon_sym_SEMI, - STATE(3181), 1, + ACTIONS(9446), 1, + anon_sym_COLON, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(9277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(9279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(9283), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(9285), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(9289), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(9299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(9293), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(9295), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [249817] = 26, + [204144] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9803), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9448), 1, anon_sym_SEMI, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [249908] = 26, + [204235] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9805), 1, - anon_sym_SEMI, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9450), 1, + anon_sym_RPAREN, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [249999] = 26, + [204326] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(8054), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8070), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9677), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9683), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(9689), 1, - anon_sym_PIPE, - ACTIONS(9693), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(9699), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(9703), 1, - anon_sym_QMARK, - ACTIONS(9705), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(9707), 1, - anon_sym_bitor, - ACTIONS(9709), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9807), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(4413), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9452), 1, + anon_sym_SEMI, + STATE(2617), 1, sym_argument_list, - STATE(4493), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8072), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9679), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9681), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9685), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9687), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9691), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9701), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9711), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9695), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9697), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [250090] = 26, + [204417] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8196), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9717), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(9723), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(9727), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(9733), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(9739), 1, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(9741), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(9743), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(9745), 1, + ACTIONS(8852), 1, anon_sym_bitand, - ACTIONS(9809), 1, - anon_sym_COLON, - STATE(3181), 1, + ACTIONS(9454), 1, + anon_sym_RBRACK, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8198), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9713), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9715), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9719), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9721), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9725), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9735), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9729), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9731), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [250181] = 26, + [204508] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9811), 1, - anon_sym_RPAREN, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9456), 1, + anon_sym_SEMI, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [250272] = 26, + [204599] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5078), 1, + anon_sym_RBRACK, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8852), 1, anon_sym_bitand, - ACTIONS(9813), 1, - anon_sym_RPAREN, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [250363] = 26, + [204690] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5154), 1, + anon_sym_RBRACK, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8852), 1, anon_sym_bitand, - ACTIONS(9815), 1, - anon_sym_SEMI, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [250454] = 26, + [204781] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5164), 1, + anon_sym_RBRACK, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8852), 1, anon_sym_bitand, - ACTIONS(9817), 1, - anon_sym_SEMI, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [250545] = 26, + [204872] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(9281), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(9287), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(9291), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(9297), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(9303), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(9305), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(9307), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(9309), 1, anon_sym_bitand, - ACTIONS(9819), 1, - anon_sym_SEMI, - STATE(3181), 1, + ACTIONS(9458), 1, + anon_sym_COLON, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(9277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(9279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(9283), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(9285), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(9289), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(9299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(9293), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(9295), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [250636] = 26, + [204963] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9821), 1, - anon_sym_RPAREN, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9460), 1, + anon_sym_SEMI, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8595), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [250727] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7077), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7235), 1, - anon_sym_LPAREN2, - ACTIONS(8054), 1, - anon_sym_LBRACK, - ACTIONS(8070), 1, - anon_sym_DOT, - ACTIONS(9683), 1, - anon_sym_SLASH, - ACTIONS(9689), 1, - anon_sym_PIPE, - ACTIONS(9693), 1, - anon_sym_AMP, - ACTIONS(9699), 1, - anon_sym_GT_EQ, - ACTIONS(9705), 1, - anon_sym_LT_EQ_GT, - ACTIONS(9707), 1, - anon_sym_bitor, - ACTIONS(9709), 1, - anon_sym_bitand, - STATE(4413), 1, - sym_argument_list, - STATE(4493), 1, - sym_subscript_argument_list, - ACTIONS(7079), 2, - anon_sym_QMARK, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(8072), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9679), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9681), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9685), 2, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9687), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9691), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9701), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9711), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9695), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9697), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [250816] = 26, + [205054] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(8054), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8070), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9677), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9683), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(9689), 1, - anon_sym_PIPE, - ACTIONS(9693), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(9699), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(9703), 1, - anon_sym_QMARK, - ACTIONS(9705), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(9707), 1, - anon_sym_bitor, - ACTIONS(9709), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9823), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(4413), 1, - sym_argument_list, - STATE(4493), 1, - sym_subscript_argument_list, - ACTIONS(8072), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9679), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9681), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9685), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9687), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9691), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(9701), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9711), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9695), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9697), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [250907] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(8196), 1, - anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9717), 1, - anon_sym_SLASH, - ACTIONS(9723), 1, + ACTIONS(8665), 1, anon_sym_PIPE, - ACTIONS(9727), 1, - anon_sym_AMP, - ACTIONS(9733), 1, - anon_sym_GT_EQ, - ACTIONS(9739), 1, - anon_sym_QMARK, - ACTIONS(9741), 1, - anon_sym_LT_EQ_GT, - ACTIONS(9743), 1, + ACTIONS(8669), 1, anon_sym_bitor, - ACTIONS(9745), 1, - anon_sym_bitand, - ACTIONS(9825), 1, - anon_sym_COLON, - STATE(3181), 1, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9462), 1, + anon_sym_SEMI, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8198), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9713), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9715), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9719), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9721), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9725), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9735), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9729), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9731), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [250998] = 26, + [205145] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9827), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9464), 1, anon_sym_SEMI, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [251089] = 26, + [205236] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(7141), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7790), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7804), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(9333), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(9339), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(9345), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(9349), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(9355), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(9359), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(9361), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(9363), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(9365), 1, anon_sym_bitand, - ACTIONS(9829), 1, - anon_sym_RPAREN, - STATE(3181), 1, + ACTIONS(9466), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4143), 1, sym_argument_list, - STATE(3186), 1, + STATE(4144), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7806), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(9335), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(9337), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(9341), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(9343), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(9347), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(9357), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(9367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9351), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(9353), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [251180] = 26, + [205327] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5208), 1, + anon_sym_RBRACK, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8852), 1, anon_sym_bitand, - ACTIONS(9831), 1, - anon_sym_SEMI, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [251271] = 26, + [205418] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + STATE(5574), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6090), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(9468), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6088), 29, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7000), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [205467] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8852), 1, anon_sym_bitand, - ACTIONS(9833), 1, + ACTIONS(9470), 1, anon_sym_RBRACK, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [251362] = 26, + [205558] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9835), 1, - anon_sym_SEMI, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9472), 1, + anon_sym_RPAREN, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [251453] = 26, + [205649] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5156), 1, - anon_sym_RBRACK, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(9281), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(9287), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(9291), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(9297), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(9303), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(9305), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(9307), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(9309), 1, anon_sym_bitand, - STATE(3181), 1, + ACTIONS(9474), 1, + anon_sym_COLON, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(9277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(9279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(9283), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(9285), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(9289), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(9299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(9293), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(9295), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [251544] = 26, + [205740] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5176), 1, - anon_sym_RBRACK, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9476), 1, + anon_sym_SEMI, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [251635] = 26, + [205831] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9837), 1, - anon_sym_RPAREN, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9478), 1, + anon_sym_SEMI, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [251726] = 26, + [205922] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8852), 1, anon_sym_bitand, - ACTIONS(9839), 1, - anon_sym_RPAREN, - STATE(3181), 1, + ACTIONS(9480), 1, + anon_sym_RBRACK, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [251817] = 26, + [206013] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9841), 1, - anon_sym_RPAREN, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9482), 1, + anon_sym_SEMI, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [251908] = 26, + [206104] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, + ACTIONS(5094), 1, + anon_sym_RBRACK, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(8054), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8070), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9677), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9683), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(9689), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(9693), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(9699), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(9703), 1, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(9705), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(9707), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(9709), 1, + ACTIONS(8852), 1, anon_sym_bitand, - ACTIONS(9843), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(4413), 1, + STATE(2617), 1, sym_argument_list, - STATE(4493), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8072), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9679), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9681), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9685), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9687), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9691), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9701), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9711), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9695), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9697), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [251999] = 26, + [206195] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5308), 1, + ACTIONS(5126), 1, anon_sym_RBRACK, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8852), 1, anon_sym_bitand, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [252090] = 26, + [206286] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(9281), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(9287), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(9291), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(9297), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(9303), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(9305), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(9307), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(9309), 1, anon_sym_bitand, - ACTIONS(9845), 1, - anon_sym_COMMA, - STATE(3181), 1, + ACTIONS(9484), 1, + anon_sym_COLON, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(9277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(9279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(9283), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(9285), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(9289), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(9299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(9293), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(9295), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [252181] = 26, + [206377] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9847), 1, - anon_sym_RPAREN, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9486), 1, + anon_sym_SEMI, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [252272] = 26, + [206468] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8196), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9717), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(9723), 1, - anon_sym_PIPE, - ACTIONS(9727), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(9733), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(9739), 1, - anon_sym_QMARK, - ACTIONS(9741), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(9743), 1, - anon_sym_bitor, - ACTIONS(9745), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9849), 1, - anon_sym_COLON, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9488), 1, + anon_sym_SEMI, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8198), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9713), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9715), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9719), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9721), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9725), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9735), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9729), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9731), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [252363] = 26, + [206559] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9851), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9490), 1, anon_sym_SEMI, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [252454] = 26, + [206650] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(7141), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7790), 1, anon_sym_LBRACK, - ACTIONS(8196), 1, + ACTIONS(7804), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(9333), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9717), 1, + ACTIONS(9339), 1, anon_sym_SLASH, - ACTIONS(9723), 1, + ACTIONS(9345), 1, anon_sym_PIPE, - ACTIONS(9727), 1, + ACTIONS(9349), 1, anon_sym_AMP, - ACTIONS(9733), 1, + ACTIONS(9355), 1, anon_sym_GT_EQ, - ACTIONS(9739), 1, + ACTIONS(9359), 1, anon_sym_QMARK, - ACTIONS(9741), 1, + ACTIONS(9361), 1, anon_sym_LT_EQ_GT, - ACTIONS(9743), 1, + ACTIONS(9363), 1, anon_sym_bitor, - ACTIONS(9745), 1, + ACTIONS(9365), 1, anon_sym_bitand, - ACTIONS(9853), 1, - anon_sym_COLON, - STATE(3181), 1, + ACTIONS(9492), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4143), 1, sym_argument_list, - STATE(3186), 1, + STATE(4144), 1, sym_subscript_argument_list, - ACTIONS(8198), 2, + ACTIONS(7806), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9713), 2, + ACTIONS(9335), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9715), 2, + ACTIONS(9337), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9719), 2, + ACTIONS(9341), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9721), 2, + ACTIONS(9343), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9725), 2, + ACTIONS(9347), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9735), 2, + ACTIONS(9357), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9729), 3, + ACTIONS(9367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9351), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9731), 3, + ACTIONS(9353), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [252545] = 26, + [206741] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9855), 1, - anon_sym_SEMI, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9494), 1, + anon_sym_COMMA, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [252636] = 26, + [206832] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3694), 1, + anon_sym_const, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(8757), 1, + anon_sym_STAR, + ACTIONS(8759), 1, + anon_sym_AMP_AMP, + ACTIONS(8761), 1, + anon_sym_AMP, + ACTIONS(8765), 1, + anon_sym_LBRACK, + STATE(3830), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7207), 1, + sym_abstract_declarator, + STATE(5463), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6535), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + ACTIONS(8763), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [206899] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3694), 1, + anon_sym_const, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(8757), 1, + anon_sym_STAR, + ACTIONS(8759), 1, + anon_sym_AMP_AMP, + ACTIONS(8761), 1, + anon_sym_AMP, + ACTIONS(8765), 1, + anon_sym_LBRACK, + STATE(3830), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7210), 1, + sym_abstract_declarator, + STATE(6022), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9173), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + ACTIONS(8763), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [206966] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9857), 1, - anon_sym_RBRACK, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9496), 1, + anon_sym_RPAREN, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [252727] = 26, + [207057] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9859), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9498), 1, anon_sym_SEMI, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [252818] = 26, + [207148] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5252), 1, - anon_sym_RBRACK, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(9281), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(9287), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(9291), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(9297), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(9303), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(9305), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(9307), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(9309), 1, anon_sym_bitand, - STATE(3181), 1, + ACTIONS(9500), 1, + anon_sym_COLON, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(9277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(9279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(9283), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(9285), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(9289), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(9299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(9293), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(9295), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [252909] = 26, + [207239] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5192), 1, - anon_sym_RBRACK, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9502), 1, + anon_sym_SEMI, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [253000] = 26, + [207330] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3694), 1, + anon_sym_const, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(8757), 1, + anon_sym_STAR, + ACTIONS(8759), 1, + anon_sym_AMP_AMP, + ACTIONS(8761), 1, + anon_sym_AMP, + ACTIONS(8765), 1, + anon_sym_LBRACK, + STATE(3830), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7216), 1, + sym_abstract_declarator, + STATE(6022), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7388), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + ACTIONS(8763), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [207397] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3694), 1, + anon_sym_const, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(8757), 1, + anon_sym_STAR, + ACTIONS(8759), 1, + anon_sym_AMP_AMP, + ACTIONS(8761), 1, + anon_sym_AMP, + ACTIONS(8765), 1, + anon_sym_LBRACK, + STATE(3830), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7217), 1, + sym_abstract_declarator, + STATE(6022), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9177), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + ACTIONS(8763), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [207464] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9861), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9504), 1, anon_sym_SEMI, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [253091] = 26, + [207555] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5226), 1, - anon_sym_RBRACK, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8852), 1, anon_sym_bitand, - STATE(3181), 1, + ACTIONS(9506), 1, + anon_sym_RBRACK, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [253182] = 26, + [207646] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 1, - anon_sym_RBRACK, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9508), 1, + anon_sym_SEMI, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [253273] = 26, + [207737] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, + ACTIONS(5198), 1, + anon_sym_RBRACK, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(8054), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8070), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9677), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9683), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(9689), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(9693), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(9699), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(9703), 1, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(9705), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(9707), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(9709), 1, + ACTIONS(8852), 1, anon_sym_bitand, - ACTIONS(9863), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(4413), 1, + STATE(2617), 1, sym_argument_list, - STATE(4493), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8072), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9679), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9681), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9685), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9687), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9691), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9701), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9711), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9695), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9697), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [253364] = 26, + [207828] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7083), 1, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(7235), 1, + ACTIONS(5206), 1, + anon_sym_RBRACK, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(8054), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8070), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9677), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9683), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(9689), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(9693), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(9699), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(9703), 1, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(9705), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(9707), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(9709), 1, + ACTIONS(8852), 1, anon_sym_bitand, - STATE(4413), 1, + STATE(2617), 1, sym_argument_list, - STATE(4493), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8072), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9679), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9681), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9685), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9687), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9691), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9701), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9711), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9695), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9697), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [253455] = 26, + [207919] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5092), 1, + anon_sym_RBRACK, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8852), 1, anon_sym_bitand, - ACTIONS(9865), 1, - anon_sym_RPAREN, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [253546] = 26, + [208010] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(7141), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7790), 1, anon_sym_LBRACK, - ACTIONS(8196), 1, + ACTIONS(7804), 1, anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9717), 1, - anon_sym_SLASH, - ACTIONS(9723), 1, - anon_sym_PIPE, - ACTIONS(9727), 1, - anon_sym_AMP, - ACTIONS(9733), 1, - anon_sym_GT_EQ, - ACTIONS(9739), 1, - anon_sym_QMARK, - ACTIONS(9741), 1, - anon_sym_LT_EQ_GT, - ACTIONS(9743), 1, - anon_sym_bitor, - ACTIONS(9745), 1, - anon_sym_bitand, - ACTIONS(9867), 1, - anon_sym_COLON, - STATE(3181), 1, + STATE(4143), 1, sym_argument_list, - STATE(3186), 1, + STATE(4144), 1, sym_subscript_argument_list, - ACTIONS(8198), 2, + ACTIONS(7806), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9713), 2, + ACTIONS(6995), 9, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9715), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6997), 21, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9719), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9721), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9725), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(9735), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9729), 3, 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(9731), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [253637] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_DOT_DOT_GT, + [208067] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(7141), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7790), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7804), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(9333), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(9339), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(9345), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(9349), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(9355), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(9359), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(9361), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(9363), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(9365), 1, anon_sym_bitand, - ACTIONS(9869), 1, - anon_sym_SEMI, - STATE(3181), 1, + ACTIONS(9510), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4143), 1, sym_argument_list, - STATE(3186), 1, + STATE(4144), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7806), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(9335), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(9337), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(9341), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(9343), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(9347), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(9357), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(9367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9351), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(9353), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [253728] = 26, + [208158] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5262), 1, - anon_sym_RBRACK, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9512), 1, + anon_sym_RPAREN, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [253819] = 26, + [208249] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(9281), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(9287), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(9291), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(9297), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(9303), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(9305), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(9307), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(9309), 1, anon_sym_bitand, - ACTIONS(9871), 1, - anon_sym_SEMI, - STATE(3181), 1, + ACTIONS(9514), 1, + anon_sym_COLON, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(9277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(9279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(9283), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(9285), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(9289), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(9299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(9293), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(9295), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [253910] = 26, + [208340] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9873), 1, - anon_sym_RBRACK, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9516), 1, + anon_sym_SEMI, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [254001] = 26, + [208431] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9875), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9518), 1, anon_sym_SEMI, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [254092] = 26, + [208522] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8852), 1, anon_sym_bitand, - ACTIONS(9877), 1, - anon_sym_SEMI, - STATE(3181), 1, + ACTIONS(9520), 1, + anon_sym_RBRACK, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [254183] = 26, + [208613] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9879), 1, - anon_sym_RBRACK, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9522), 1, + anon_sym_SEMI, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [254274] = 26, + [208704] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_RBRACK, - ACTIONS(6291), 1, + STATE(5412), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6158), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(9524), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6156), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [208753] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9526), 1, + anon_sym_RPAREN, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [254365] = 26, + [208844] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5258), 1, - anon_sym_RBRACK, - ACTIONS(6291), 1, + ACTIONS(7141), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7790), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7804), 1, anon_sym_DOT, - ACTIONS(8874), 1, + STATE(4143), 1, + sym_argument_list, + STATE(4144), 1, + sym_subscript_argument_list, + ACTIONS(7806), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7005), 9, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8886), 1, anon_sym_PIPE, - ACTIONS(8890), 1, anon_sym_AMP, - ACTIONS(8896), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7007), 19, + anon_sym_STAR, + 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(8900), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(8902), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8906), 1, + anon_sym_xor, anon_sym_bitand, - STATE(3181), 1, + anon_sym_not_eq, + anon_sym_DOT_DOT_DOT_GT, + [208903] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7141), 1, + anon_sym_LPAREN2, + ACTIONS(7790), 1, + anon_sym_LBRACK, + ACTIONS(7804), 1, + anon_sym_DOT, + STATE(4143), 1, sym_argument_list, - STATE(3186), 1, + STATE(4144), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7806), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(9367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(7011), 9, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7013), 19, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [254456] = 26, + anon_sym_DOT_DOT_DOT_GT, + [208962] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, + ACTIONS(7128), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, anon_sym_LPAREN2, - ACTIONS(8054), 1, + ACTIONS(7790), 1, anon_sym_LBRACK, - ACTIONS(8070), 1, + ACTIONS(7804), 1, anon_sym_DOT, - ACTIONS(9677), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9683), 1, + ACTIONS(9339), 1, anon_sym_SLASH, - ACTIONS(9689), 1, + ACTIONS(9345), 1, anon_sym_PIPE, - ACTIONS(9693), 1, + ACTIONS(9349), 1, anon_sym_AMP, - ACTIONS(9699), 1, + ACTIONS(9355), 1, anon_sym_GT_EQ, - ACTIONS(9703), 1, - anon_sym_QMARK, - ACTIONS(9705), 1, + ACTIONS(9361), 1, anon_sym_LT_EQ_GT, - ACTIONS(9707), 1, + ACTIONS(9363), 1, anon_sym_bitor, - ACTIONS(9709), 1, + ACTIONS(9365), 1, anon_sym_bitand, - ACTIONS(9881), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(4413), 1, + STATE(4143), 1, sym_argument_list, - STATE(4493), 1, + STATE(4144), 1, sym_subscript_argument_list, - ACTIONS(8072), 2, + ACTIONS(7130), 2, + anon_sym_QMARK, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(7806), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9679), 2, + ACTIONS(9335), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9681), 2, + ACTIONS(9337), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9685), 2, + ACTIONS(9341), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9687), 2, + ACTIONS(9343), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9691), 2, + ACTIONS(9347), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9701), 2, + ACTIONS(9357), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9711), 2, + ACTIONS(9367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9695), 3, + ACTIONS(9351), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9697), 3, + ACTIONS(9353), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [254547] = 26, + [209051] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(7141), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7790), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7804), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(9333), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(9339), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(9345), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(9349), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(9355), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(9359), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(9361), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(9363), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(9365), 1, anon_sym_bitand, - ACTIONS(9883), 1, - anon_sym_SEMI, - STATE(3181), 1, + ACTIONS(9528), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4143), 1, sym_argument_list, - STATE(3186), 1, + STATE(4144), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7806), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(9335), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(9337), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(9341), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(9343), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(9347), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(9357), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(9367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9351), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(9353), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [254638] = 25, + [209142] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7235), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(8054), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8070), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9683), 1, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(9689), 1, - anon_sym_PIPE, - ACTIONS(9693), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(9699), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(9705), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(9707), 1, - anon_sym_bitor, - ACTIONS(9709), 1, + ACTIONS(8599), 1, anon_sym_bitand, - STATE(4413), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9530), 1, + anon_sym_RPAREN, + STATE(2617), 1, sym_argument_list, - STATE(4493), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7087), 2, - anon_sym_QMARK, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(8072), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9679), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9681), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9685), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9687), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9691), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9701), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9711), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9695), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9697), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [254727] = 26, + [209233] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5188), 1, - anon_sym_RBRACK, - ACTIONS(6291), 1, + ACTIONS(7141), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7790), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7804), 1, anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, - anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, - anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - STATE(3181), 1, + STATE(4143), 1, sym_argument_list, - STATE(3186), 1, + STATE(4144), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7806), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(7015), 9, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7017), 21, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [254818] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_DOT_DOT_GT, + [209290] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9885), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9532), 1, anon_sym_RPAREN, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [254909] = 26, + [209381] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8196), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9717), 1, + ACTIONS(9281), 1, anon_sym_SLASH, - ACTIONS(9723), 1, + ACTIONS(9287), 1, anon_sym_PIPE, - ACTIONS(9727), 1, + ACTIONS(9291), 1, anon_sym_AMP, - ACTIONS(9733), 1, + ACTIONS(9297), 1, anon_sym_GT_EQ, - ACTIONS(9739), 1, + ACTIONS(9303), 1, anon_sym_QMARK, - ACTIONS(9741), 1, + ACTIONS(9305), 1, anon_sym_LT_EQ_GT, - ACTIONS(9743), 1, + ACTIONS(9307), 1, anon_sym_bitor, - ACTIONS(9745), 1, + ACTIONS(9309), 1, anon_sym_bitand, - ACTIONS(9887), 1, + ACTIONS(9534), 1, anon_sym_COLON, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8198), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9713), 2, + ACTIONS(9277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9715), 2, + ACTIONS(9279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9719), 2, + ACTIONS(9283), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9721), 2, + ACTIONS(9285), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9725), 2, + ACTIONS(9289), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9735), 2, + ACTIONS(9299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9729), 3, + ACTIONS(9293), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9731), 3, + ACTIONS(9295), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [255000] = 26, + [209472] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9889), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9536), 1, anon_sym_SEMI, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [255091] = 26, + [209563] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9891), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9538), 1, anon_sym_SEMI, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [255182] = 26, + [209654] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8852), 1, anon_sym_bitand, - ACTIONS(9893), 1, + ACTIONS(9540), 1, anon_sym_RBRACK, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [255273] = 26, + [209745] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9895), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9542), 1, anon_sym_SEMI, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [255364] = 24, + [209836] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7903), 1, - anon_sym_AMP_AMP, - ACTIONS(7905), 1, - anon_sym_AMP, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(7920), 1, - anon_sym_DASH_GT, - ACTIONS(7922), 1, - anon_sym_noexcept, - ACTIONS(7924), 1, - anon_sym_throw, - ACTIONS(7926), 1, - anon_sym_requires, - ACTIONS(9899), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9902), 1, - anon_sym_LBRACK, - STATE(6277), 1, - sym_ref_qualifier, - STATE(6636), 1, - sym_function_exception_specification, - STATE(6966), 1, - sym_trailing_return_type, - STATE(7142), 1, - sym_function_attributes_end, - STATE(7270), 1, - sym_requires_clause, - STATE(7298), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(6118), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, - sym_noexcept, - sym_throw_specifier, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(9897), 9, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5761), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_try, - [255451] = 26, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, + anon_sym_SLASH, + ACTIONS(8587), 1, + anon_sym_AMP, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9544), 1, + anon_sym_RPAREN, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8583), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8589), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8591), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [209927] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, + ACTIONS(7141), 1, anon_sym_LPAREN2, - ACTIONS(8054), 1, + ACTIONS(7790), 1, anon_sym_LBRACK, - ACTIONS(8070), 1, + ACTIONS(7804), 1, anon_sym_DOT, - ACTIONS(9677), 1, + ACTIONS(9333), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9683), 1, + ACTIONS(9339), 1, anon_sym_SLASH, - ACTIONS(9689), 1, + ACTIONS(9345), 1, anon_sym_PIPE, - ACTIONS(9693), 1, + ACTIONS(9349), 1, anon_sym_AMP, - ACTIONS(9699), 1, + ACTIONS(9355), 1, anon_sym_GT_EQ, - ACTIONS(9703), 1, + ACTIONS(9359), 1, anon_sym_QMARK, - ACTIONS(9705), 1, + ACTIONS(9361), 1, anon_sym_LT_EQ_GT, - ACTIONS(9707), 1, + ACTIONS(9363), 1, anon_sym_bitor, - ACTIONS(9709), 1, + ACTIONS(9365), 1, anon_sym_bitand, - ACTIONS(9904), 1, + ACTIONS(9546), 1, anon_sym_DOT_DOT_DOT_GT, - STATE(4413), 1, + STATE(4143), 1, sym_argument_list, - STATE(4493), 1, + STATE(4144), 1, sym_subscript_argument_list, - ACTIONS(8072), 2, + ACTIONS(7806), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9679), 2, + ACTIONS(9335), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9681), 2, + ACTIONS(9337), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9685), 2, + ACTIONS(9341), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9687), 2, + ACTIONS(9343), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9691), 2, + ACTIONS(9347), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9701), 2, + ACTIONS(9357), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9711), 2, + ACTIONS(9367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9695), 3, + ACTIONS(9351), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9697), 3, + ACTIONS(9353), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [255542] = 26, + [210018] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5184), 1, - anon_sym_RBRACK, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9548), 1, + anon_sym_RPAREN, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [255633] = 26, + [210109] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5206), 1, - anon_sym_RBRACK, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(9281), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(9287), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(9291), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(9297), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(9303), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(9305), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(9307), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(9309), 1, anon_sym_bitand, - STATE(3181), 1, + ACTIONS(9550), 1, + anon_sym_COLON, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(9277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(9279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(9283), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(9285), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(9289), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(9299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(9293), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(9295), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [255724] = 26, + [210200] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9906), 1, - anon_sym_RPAREN, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9552), 1, + anon_sym_SEMI, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [255815] = 3, + [210291] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7305), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + ACTIONS(6999), 1, + anon_sym_LBRACK, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(8587), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(8593), 1, 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, + ACTIONS(8597), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8599), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(7307), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9554), 1, + anon_sym_SEMI, + STATE(2617), 1, + sym_argument_list, + STATE(2620), 1, + sym_subscript_argument_list, + ACTIONS(7045), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8589), 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [255860] = 26, + anon_sym_not_eq, + ACTIONS(8591), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [210382] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8196), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9717), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(9723), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(9727), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(9733), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(9739), 1, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(9741), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(9743), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(9745), 1, + ACTIONS(8852), 1, anon_sym_bitand, - ACTIONS(9908), 1, - anon_sym_COLON, - STATE(3181), 1, + ACTIONS(9556), 1, + anon_sym_RBRACK, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8198), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9713), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9715), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9719), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9721), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9725), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9735), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9729), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9731), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [255951] = 26, + [210473] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9910), 1, - anon_sym_RBRACK, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9558), 1, + anon_sym_SEMI, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [256042] = 26, + [210564] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, + ACTIONS(7116), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, anon_sym_LPAREN2, - ACTIONS(8054), 1, + ACTIONS(7790), 1, anon_sym_LBRACK, - ACTIONS(8070), 1, + ACTIONS(7804), 1, anon_sym_DOT, - ACTIONS(9677), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9683), 1, + ACTIONS(9339), 1, anon_sym_SLASH, - ACTIONS(9689), 1, + ACTIONS(9345), 1, anon_sym_PIPE, - ACTIONS(9693), 1, + ACTIONS(9349), 1, anon_sym_AMP, - ACTIONS(9699), 1, + ACTIONS(9355), 1, anon_sym_GT_EQ, - ACTIONS(9703), 1, - anon_sym_QMARK, - ACTIONS(9705), 1, + ACTIONS(9361), 1, anon_sym_LT_EQ_GT, - ACTIONS(9707), 1, + ACTIONS(9363), 1, anon_sym_bitor, - ACTIONS(9709), 1, + ACTIONS(9365), 1, anon_sym_bitand, - ACTIONS(9912), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(4413), 1, + STATE(4143), 1, sym_argument_list, - STATE(4493), 1, + STATE(4144), 1, sym_subscript_argument_list, - ACTIONS(8072), 2, + ACTIONS(7118), 2, + anon_sym_QMARK, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(7806), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9679), 2, + ACTIONS(9335), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9681), 2, + ACTIONS(9337), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9685), 2, + ACTIONS(9341), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9687), 2, + ACTIONS(9343), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9691), 2, + ACTIONS(9347), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9701), 2, + ACTIONS(9357), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9711), 2, + ACTIONS(9367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9695), 3, + ACTIONS(9351), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9697), 3, + ACTIONS(9353), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [256133] = 26, + [210653] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(7141), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7790), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7804), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(9333), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(9339), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(9345), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(9349), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(9355), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(9359), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(9361), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(9363), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(9365), 1, anon_sym_bitand, - ACTIONS(9914), 1, - anon_sym_RPAREN, - STATE(3181), 1, + ACTIONS(9560), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4143), 1, sym_argument_list, - STATE(3186), 1, + STATE(4144), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7806), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(9335), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(9337), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(9341), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(9343), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(9347), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(9357), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(9367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9351), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(9353), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [256224] = 26, + [210744] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9916), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9562), 1, anon_sym_RPAREN, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [256315] = 26, + [210835] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8196), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9717), 1, + ACTIONS(9281), 1, anon_sym_SLASH, - ACTIONS(9723), 1, + ACTIONS(9287), 1, anon_sym_PIPE, - ACTIONS(9727), 1, + ACTIONS(9291), 1, anon_sym_AMP, - ACTIONS(9733), 1, + ACTIONS(9297), 1, anon_sym_GT_EQ, - ACTIONS(9739), 1, + ACTIONS(9303), 1, anon_sym_QMARK, - ACTIONS(9741), 1, + ACTIONS(9305), 1, anon_sym_LT_EQ_GT, - ACTIONS(9743), 1, + ACTIONS(9307), 1, anon_sym_bitor, - ACTIONS(9745), 1, + ACTIONS(9309), 1, anon_sym_bitand, - ACTIONS(9918), 1, + ACTIONS(9564), 1, anon_sym_COLON, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8198), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9713), 2, + ACTIONS(9277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9715), 2, + ACTIONS(9279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9719), 2, + ACTIONS(9283), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9721), 2, + ACTIONS(9285), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9725), 2, + ACTIONS(9289), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9735), 2, + ACTIONS(9299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9729), 3, + ACTIONS(9293), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9731), 3, + ACTIONS(9295), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [256406] = 9, + [210926] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, - anon_sym_LPAREN2, - ACTIONS(8054), 1, - anon_sym_LBRACK, - ACTIONS(8070), 1, - anon_sym_DOT, - STATE(4413), 1, - sym_argument_list, - STATE(4493), 1, - sym_subscript_argument_list, - ACTIONS(8072), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6998), 9, - anon_sym_DOT_DOT_DOT, + ACTIONS(6489), 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(6996), 21, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6487), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -542874,9 +504188,9 @@ 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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -542887,278 +504201,228 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_DOT_DOT_GT, - [256463] = 26, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [210971] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8852), 1, anon_sym_bitand, - ACTIONS(9920), 1, + ACTIONS(9566), 1, anon_sym_RBRACK, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [256554] = 26, + [211062] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9922), 1, - anon_sym_SEMI, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9568), 1, + anon_sym_RPAREN, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [256645] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7588), 1, - anon_sym_LT, - STATE(2089), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6753), 1, - sym_template_argument_list, - ACTIONS(5957), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(5490), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5959), 26, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [256700] = 26, + [211153] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(9281), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(9287), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(9291), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(9297), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(9303), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(9305), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(9307), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(9309), 1, anon_sym_bitand, - ACTIONS(9924), 1, - anon_sym_RPAREN, - STATE(3181), 1, + ACTIONS(9570), 1, + anon_sym_COLON, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(9277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(9279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(9283), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(9285), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(9289), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(9299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(9293), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(9295), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [256791] = 8, + [211244] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(9926), 1, - anon_sym_LT, - STATE(6189), 1, - sym_template_argument_list, - STATE(6248), 1, + STATE(5411), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(4827), 2, + ACTIONS(6185), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(9571), 4, + ACTIONS(9572), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(4835), 27, + ACTIONS(6183), 29, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -543170,727 +504434,717 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [256846] = 26, + [211293] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9928), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9574), 1, anon_sym_RPAREN, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [256937] = 26, + [211384] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5114), 1, + anon_sym_RBRACK, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8196), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9717), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(9723), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(9727), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(9733), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(9739), 1, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(9741), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(9743), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(9745), 1, + ACTIONS(8852), 1, anon_sym_bitand, - ACTIONS(9930), 1, - anon_sym_COLON, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8198), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9713), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9715), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9719), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9721), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9725), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9735), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9729), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9731), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [257028] = 26, + [211475] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(9281), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(9287), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(9291), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(9297), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(9303), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(9305), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(9307), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(9309), 1, anon_sym_bitand, - ACTIONS(9932), 1, - anon_sym_RBRACK, - STATE(3181), 1, + ACTIONS(9576), 1, + anon_sym_COLON, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(9277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(9279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(9283), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(9285), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(9289), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(9299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(9293), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [257119] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8926), 1, - anon_sym_LBRACK, - STATE(6141), 1, - sym_new_declarator, - ACTIONS(6943), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(9295), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(6941), 25, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [257168] = 26, + [211566] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7095), 1, + ACTIONS(6689), 1, anon_sym_DOT_DOT_DOT_GT, - ACTIONS(7235), 1, + ACTIONS(7141), 1, anon_sym_LPAREN2, - ACTIONS(8054), 1, + ACTIONS(7790), 1, anon_sym_LBRACK, - ACTIONS(8070), 1, + ACTIONS(7804), 1, anon_sym_DOT, - ACTIONS(9677), 1, + ACTIONS(9333), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9683), 1, + ACTIONS(9339), 1, anon_sym_SLASH, - ACTIONS(9689), 1, + ACTIONS(9345), 1, anon_sym_PIPE, - ACTIONS(9693), 1, + ACTIONS(9349), 1, anon_sym_AMP, - ACTIONS(9699), 1, + ACTIONS(9355), 1, anon_sym_GT_EQ, - ACTIONS(9703), 1, + ACTIONS(9359), 1, anon_sym_QMARK, - ACTIONS(9705), 1, + ACTIONS(9361), 1, anon_sym_LT_EQ_GT, - ACTIONS(9707), 1, + ACTIONS(9363), 1, anon_sym_bitor, - ACTIONS(9709), 1, + ACTIONS(9365), 1, anon_sym_bitand, - STATE(4413), 1, + STATE(4143), 1, sym_argument_list, - STATE(4493), 1, + STATE(4144), 1, sym_subscript_argument_list, - ACTIONS(8072), 2, + ACTIONS(7806), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9679), 2, + ACTIONS(9335), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9681), 2, + ACTIONS(9337), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9685), 2, + ACTIONS(9341), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9687), 2, + ACTIONS(9343), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9691), 2, + ACTIONS(9347), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9701), 2, + ACTIONS(9357), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9711), 2, + ACTIONS(9367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9695), 3, + ACTIONS(9351), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9697), 3, + ACTIONS(9353), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [257259] = 26, + [211657] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9934), 1, - anon_sym_SEMI, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9578), 1, + anon_sym_RPAREN, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [257350] = 26, + [211748] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(9281), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(9287), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(9291), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(9297), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(9303), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(9305), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(9307), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(9309), 1, anon_sym_bitand, - ACTIONS(9936), 1, - anon_sym_RPAREN, - STATE(3181), 1, + ACTIONS(9580), 1, + anon_sym_COLON, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(9277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(9279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(9283), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(9285), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(9289), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(9299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(9293), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(9295), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [257441] = 26, + [211839] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9582), 1, + sym_identifier, + ACTIONS(9586), 1, + sym_primitive_type, + STATE(5534), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9584), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5965), 10, + 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, + ACTIONS(5969), 20, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [211892] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8196), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9717), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(9723), 1, - anon_sym_PIPE, - ACTIONS(9727), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(9733), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(9739), 1, - anon_sym_QMARK, - ACTIONS(9741), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(9743), 1, - anon_sym_bitor, - ACTIONS(9745), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9938), 1, - anon_sym_COLON, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9013), 1, + anon_sym_RPAREN, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8198), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9713), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9715), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9719), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9721), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9725), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9735), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9729), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9731), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [257532] = 26, + [211983] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5260), 1, - anon_sym_RBRACK, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9588), 1, + anon_sym_RPAREN, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [257623] = 26, + [212074] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8196), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9717), 1, + ACTIONS(9281), 1, anon_sym_SLASH, - ACTIONS(9723), 1, + ACTIONS(9287), 1, anon_sym_PIPE, - ACTIONS(9727), 1, + ACTIONS(9291), 1, anon_sym_AMP, - ACTIONS(9733), 1, + ACTIONS(9297), 1, anon_sym_GT_EQ, - ACTIONS(9739), 1, + ACTIONS(9303), 1, anon_sym_QMARK, - ACTIONS(9741), 1, + ACTIONS(9305), 1, anon_sym_LT_EQ_GT, - ACTIONS(9743), 1, + ACTIONS(9307), 1, anon_sym_bitor, - ACTIONS(9745), 1, + ACTIONS(9309), 1, anon_sym_bitand, - ACTIONS(9940), 1, + ACTIONS(9590), 1, anon_sym_COLON, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8198), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9713), 2, + ACTIONS(9277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9715), 2, + ACTIONS(9279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9719), 2, + ACTIONS(9283), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9721), 2, + ACTIONS(9285), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9725), 2, + ACTIONS(9289), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9735), 2, + ACTIONS(9299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9729), 3, + ACTIONS(9293), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9731), 3, + ACTIONS(9295), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [257714] = 26, + [212165] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(7141), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7790), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7804), 1, anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(9339), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, - anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - ACTIONS(9942), 1, - anon_sym_SEMI, - STATE(3181), 1, + STATE(4143), 1, sym_argument_list, - STATE(3186), 1, + STATE(4144), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7806), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(9337), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(7019), 8, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8882), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7021), 17, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [257805] = 10, + anon_sym_DOT_DOT_DOT_GT, + [212228] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, + ACTIONS(7141), 1, anon_sym_LPAREN2, - ACTIONS(8054), 1, + ACTIONS(7790), 1, anon_sym_LBRACK, - ACTIONS(8070), 1, + ACTIONS(7804), 1, anon_sym_DOT, - STATE(4413), 1, + STATE(4143), 1, sym_argument_list, - STATE(4493), 1, + STATE(4144), 1, sym_subscript_argument_list, - ACTIONS(8072), 2, + ACTIONS(7806), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9711), 2, + ACTIONS(9367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7143), 9, + ACTIONS(7019), 9, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -543900,7 +505154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7141), 19, + ACTIONS(7021), 19, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -543920,490 +505174,507 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT_DOT_DOT_GT, - [257864] = 26, + [212287] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(7019), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7790), 1, anon_sym_LBRACK, - ACTIONS(8196), 1, + ACTIONS(7804), 1, anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9717), 1, + ACTIONS(9339), 1, anon_sym_SLASH, - ACTIONS(9723), 1, + ACTIONS(9345), 1, anon_sym_PIPE, - ACTIONS(9727), 1, + ACTIONS(9349), 1, anon_sym_AMP, - ACTIONS(9733), 1, + ACTIONS(9355), 1, anon_sym_GT_EQ, - ACTIONS(9739), 1, - anon_sym_QMARK, - ACTIONS(9741), 1, + ACTIONS(9361), 1, anon_sym_LT_EQ_GT, - ACTIONS(9743), 1, + ACTIONS(9363), 1, anon_sym_bitor, - ACTIONS(9745), 1, + ACTIONS(9365), 1, anon_sym_bitand, - ACTIONS(9944), 1, - anon_sym_COLON, - STATE(3181), 1, + STATE(4143), 1, sym_argument_list, - STATE(3186), 1, + STATE(4144), 1, sym_subscript_argument_list, - ACTIONS(8198), 2, + ACTIONS(7806), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9713), 2, + ACTIONS(9335), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9715), 2, + ACTIONS(9337), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9719), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9721), 2, + ACTIONS(9343), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9725), 2, + ACTIONS(9347), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9735), 2, + ACTIONS(9357), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9729), 3, + ACTIONS(9367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9351), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9731), 3, + ACTIONS(9353), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [257955] = 26, + ACTIONS(7021), 4, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_DOT_DOT_DOT_GT, + [212374] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(7019), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7790), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7804), 1, anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(9339), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(9345), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(9349), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(9355), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(9361), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(9363), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(9365), 1, anon_sym_bitand, - ACTIONS(9946), 1, - anon_sym_SEMI, - STATE(3181), 1, + STATE(4143), 1, sym_argument_list, - STATE(3186), 1, + STATE(4144), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7806), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(9335), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(9337), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(9347), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(9357), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(9367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9351), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(9353), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [258046] = 26, + ACTIONS(7021), 6, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_DOT_DOT_DOT_GT, + [212459] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(7141), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7790), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7804), 1, anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(9339), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(9349), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(9355), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(9361), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(9365), 1, anon_sym_bitand, - ACTIONS(9948), 1, - anon_sym_RPAREN, - STATE(3181), 1, + STATE(4143), 1, sym_argument_list, - STATE(3186), 1, + STATE(4144), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7019), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + ACTIONS(7806), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(9335), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(9337), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(9347), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(9357), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(9367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9351), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(9353), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [258137] = 26, + ACTIONS(7021), 7, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_DOT_DOT_DOT_GT, + [212540] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(7141), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7790), 1, anon_sym_LBRACK, - ACTIONS(8196), 1, + ACTIONS(7804), 1, anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9717), 1, + ACTIONS(9339), 1, anon_sym_SLASH, - ACTIONS(9723), 1, - anon_sym_PIPE, - ACTIONS(9727), 1, + ACTIONS(9349), 1, anon_sym_AMP, - ACTIONS(9733), 1, + ACTIONS(9355), 1, anon_sym_GT_EQ, - ACTIONS(9739), 1, - anon_sym_QMARK, - ACTIONS(9741), 1, + ACTIONS(9361), 1, anon_sym_LT_EQ_GT, - ACTIONS(9743), 1, - anon_sym_bitor, - ACTIONS(9745), 1, + ACTIONS(9365), 1, anon_sym_bitand, - ACTIONS(9950), 1, - anon_sym_COLON, - STATE(3181), 1, + STATE(4143), 1, sym_argument_list, - STATE(3186), 1, + STATE(4144), 1, sym_subscript_argument_list, - ACTIONS(8198), 2, + ACTIONS(7019), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + ACTIONS(7806), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9713), 2, + ACTIONS(9335), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9715), 2, + ACTIONS(9337), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9719), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9721), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9725), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(9735), 2, + ACTIONS(9357), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9729), 3, + ACTIONS(9367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9351), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9731), 3, + ACTIONS(9353), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [258228] = 26, + ACTIONS(7021), 9, + 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_DOT_DOT_DOT_GT, + [212619] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(7141), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7790), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7804), 1, anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(9339), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, - anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(9355), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(9361), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - ACTIONS(9952), 1, - anon_sym_SEMI, - STATE(3181), 1, + STATE(4143), 1, sym_argument_list, - STATE(3186), 1, + STATE(4144), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7806), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(9335), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(9337), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(9357), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(9367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7019), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(9351), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(9353), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [258319] = 26, + ACTIONS(7021), 10, + 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_bitand, + anon_sym_DOT_DOT_DOT_GT, + [212694] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(7141), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7790), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7804), 1, anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(9339), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, - anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(9355), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(9361), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - ACTIONS(9954), 1, - anon_sym_SEMI, - STATE(3181), 1, + STATE(4143), 1, sym_argument_list, - STATE(3186), 1, + STATE(4144), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7806), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(9335), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(9337), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(9357), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7019), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(9353), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7021), 13, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, 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, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [258410] = 26, + anon_sym_DOT_DOT_DOT_GT, + [212767] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(7141), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7790), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7804), 1, anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(9339), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, - anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(9361), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - ACTIONS(9956), 1, - anon_sym_RPAREN, - STATE(3181), 1, + STATE(4143), 1, sym_argument_list, - STATE(3186), 1, + STATE(4144), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7806), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(9335), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(9337), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(9357), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7019), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7021), 14, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT_GT, + [212836] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(7517), 1, anon_sym_LT, - [258501] = 3, + STATE(1833), 1, + sym_template_argument_list, + STATE(2206), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6090), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(5411), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6088), 26, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [212891] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(7135), 11, + ACTIONS(7141), 1, + anon_sym_LPAREN2, + ACTIONS(7790), 1, + anon_sym_LBRACK, + ACTIONS(7804), 1, + anon_sym_DOT, + ACTIONS(9339), 1, + anon_sym_SLASH, + STATE(4143), 1, + sym_argument_list, + STATE(4144), 1, + sym_subscript_argument_list, + ACTIONS(7806), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9335), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(9337), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7019), 6, + anon_sym_DOT_DOT_DOT, 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(7133), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(7021), 17, 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_GT_GT, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -544412,226 +505683,255 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_GT2, - [258546] = 26, + anon_sym_DOT_DOT_DOT_GT, + [212956] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, + ACTIONS(7141), 1, anon_sym_LPAREN2, - ACTIONS(8054), 1, + ACTIONS(7790), 1, anon_sym_LBRACK, - ACTIONS(8070), 1, + ACTIONS(7804), 1, anon_sym_DOT, - ACTIONS(9677), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9683), 1, + ACTIONS(9339), 1, anon_sym_SLASH, - ACTIONS(9689), 1, - anon_sym_PIPE, - ACTIONS(9693), 1, - anon_sym_AMP, - ACTIONS(9699), 1, - anon_sym_GT_EQ, - ACTIONS(9703), 1, - anon_sym_QMARK, - ACTIONS(9705), 1, - anon_sym_LT_EQ_GT, - ACTIONS(9707), 1, - anon_sym_bitor, - ACTIONS(9709), 1, - anon_sym_bitand, - ACTIONS(9958), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(4413), 1, + STATE(4143), 1, sym_argument_list, - STATE(4493), 1, + STATE(4144), 1, sym_subscript_argument_list, - ACTIONS(8072), 2, + ACTIONS(7806), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9679), 2, + ACTIONS(9335), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9681), 2, + ACTIONS(9337), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9685), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9687), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9691), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(9701), 2, + ACTIONS(9357), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9711), 2, + ACTIONS(9367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9695), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9697), 3, + ACTIONS(7019), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [258637] = 26, + ACTIONS(7021), 15, + 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_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_DOT_DOT_DOT_GT, + [213023] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9960), 1, - anon_sym_RPAREN, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9592), 1, + anon_sym_SEMI, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [258728] = 26, + [213114] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9962), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9594), 1, anon_sym_SEMI, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [258819] = 10, + [213205] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(5418), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5653), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(9431), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5975), 10, + 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, + ACTIONS(5978), 20, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [213256] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, + ACTIONS(7141), 1, anon_sym_LPAREN2, - ACTIONS(8054), 1, + ACTIONS(7790), 1, anon_sym_LBRACK, - ACTIONS(8070), 1, + ACTIONS(7804), 1, anon_sym_DOT, - STATE(4413), 1, + STATE(4143), 1, sym_argument_list, - STATE(4493), 1, + STATE(4144), 1, sym_subscript_argument_list, - ACTIONS(8072), 2, + ACTIONS(7806), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9711), 2, + ACTIONS(9367), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7112), 9, + ACTIONS(7023), 9, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -544641,7 +505941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7110), 19, + ACTIONS(7025), 19, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -544661,598 +505961,606 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT_DOT_DOT_GT, - [258878] = 26, + [213315] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, - anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8229), 1, + anon_sym_LBRACE, + ACTIONS(9596), 1, + anon_sym_COLON, + STATE(3597), 1, + sym_attribute_specifier, + STATE(4430), 1, + sym_enum_base_clause, + STATE(4472), 1, + sym_enumerator_list, + ACTIONS(6514), 3, anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - ACTIONS(9964), 1, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6516), 28, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8878), 2, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8882), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [258969] = 26, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [213372] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, - anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8229), 1, + anon_sym_LBRACE, + ACTIONS(9596), 1, + anon_sym_COLON, + STATE(3654), 1, + sym_attribute_specifier, + STATE(4432), 1, + sym_enum_base_clause, + STATE(4476), 1, + sym_enumerator_list, + ACTIONS(6520), 3, anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - ACTIONS(9966), 1, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6522), 28, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [213429] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5438), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(5440), 10, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5445), 25, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 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_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, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [259060] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [213476] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5216), 1, - anon_sym_RBRACK, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9598), 1, + anon_sym_RPAREN, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [259151] = 26, + [213567] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(7060), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7790), 1, anon_sym_LBRACK, - ACTIONS(8196), 1, + ACTIONS(7804), 1, anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9717), 1, + ACTIONS(9339), 1, anon_sym_SLASH, - ACTIONS(9723), 1, + ACTIONS(9345), 1, anon_sym_PIPE, - ACTIONS(9727), 1, + ACTIONS(9349), 1, anon_sym_AMP, - ACTIONS(9733), 1, + ACTIONS(9355), 1, anon_sym_GT_EQ, - ACTIONS(9739), 1, - anon_sym_QMARK, - ACTIONS(9741), 1, + ACTIONS(9361), 1, anon_sym_LT_EQ_GT, - ACTIONS(9743), 1, + ACTIONS(9363), 1, anon_sym_bitor, - ACTIONS(9745), 1, + ACTIONS(9365), 1, anon_sym_bitand, - ACTIONS(9968), 1, - anon_sym_COLON, - STATE(3181), 1, + STATE(4143), 1, sym_argument_list, - STATE(3186), 1, + STATE(4144), 1, sym_subscript_argument_list, - ACTIONS(8198), 2, + ACTIONS(7062), 2, + anon_sym_QMARK, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(7806), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9713), 2, + ACTIONS(9335), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9715), 2, + ACTIONS(9337), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9719), 2, + ACTIONS(9341), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9721), 2, + ACTIONS(9343), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9725), 2, + ACTIONS(9347), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9735), 2, + ACTIONS(9357), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9729), 3, + ACTIONS(9367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9351), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9731), 3, + ACTIONS(9353), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [259242] = 26, + [213656] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(7134), 1, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(7141), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7790), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7804), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(9333), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(9339), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(9345), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(9349), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(9355), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(9359), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(9361), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(9363), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(9365), 1, anon_sym_bitand, - ACTIONS(9970), 1, - anon_sym_SEMI, - STATE(3181), 1, + STATE(4143), 1, sym_argument_list, - STATE(3186), 1, + STATE(4144), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7806), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(9335), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(9337), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(9341), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(9343), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(9347), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(9357), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(9367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9351), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(9353), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [259333] = 26, + [213747] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(7105), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7141), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7790), 1, anon_sym_LBRACK, - ACTIONS(8196), 1, + ACTIONS(7804), 1, anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9717), 1, + ACTIONS(9339), 1, anon_sym_SLASH, - ACTIONS(9723), 1, + ACTIONS(9345), 1, anon_sym_PIPE, - ACTIONS(9727), 1, + ACTIONS(9349), 1, anon_sym_AMP, - ACTIONS(9733), 1, + ACTIONS(9355), 1, anon_sym_GT_EQ, - ACTIONS(9739), 1, - anon_sym_QMARK, - ACTIONS(9741), 1, + ACTIONS(9361), 1, anon_sym_LT_EQ_GT, - ACTIONS(9743), 1, + ACTIONS(9363), 1, anon_sym_bitor, - ACTIONS(9745), 1, + ACTIONS(9365), 1, anon_sym_bitand, - ACTIONS(9972), 1, - anon_sym_COLON, - STATE(3181), 1, + STATE(4143), 1, sym_argument_list, - STATE(3186), 1, + STATE(4144), 1, sym_subscript_argument_list, - ACTIONS(8198), 2, + ACTIONS(7107), 2, + anon_sym_QMARK, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(7806), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9713), 2, + ACTIONS(9335), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9715), 2, + ACTIONS(9337), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9719), 2, + ACTIONS(9341), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9721), 2, + ACTIONS(9343), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9725), 2, + ACTIONS(9347), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9735), 2, + ACTIONS(9357), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9729), 3, + ACTIONS(9367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9351), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9731), 3, + ACTIONS(9353), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [259424] = 26, + [213836] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9974), 1, - anon_sym_SEMI, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9600), 1, + anon_sym_RPAREN, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [259515] = 26, + [213927] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(9976), 1, - anon_sym_RBRACK, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9602), 1, + ts_builtin_sym_end, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [259606] = 26, + [214018] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(7141), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7790), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7804), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(9333), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(9339), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(9345), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(9349), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(9355), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(9359), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(9361), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(9363), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(9365), 1, anon_sym_bitand, - ACTIONS(9978), 1, - anon_sym_SEMI, - STATE(3181), 1, + ACTIONS(9604), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4143), 1, sym_argument_list, - STATE(3186), 1, + STATE(4144), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7806), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(9335), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(9337), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(9341), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(9343), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(9347), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(9357), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(9367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9351), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(9353), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [259697] = 4, + [214109] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5525), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5527), 10, + ACTIONS(8567), 1, + anon_sym_LBRACK, + STATE(5616), 1, + sym_new_declarator, + ACTIONS(6454), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -545263,7 +506571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(5520), 25, + ACTIONS(6452), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -545275,7 +506583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -545289,467 +506597,406 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [259744] = 26, + [214158] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5294), 1, - anon_sym_RBRACK, - ACTIONS(6291), 1, + ACTIONS(7094), 1, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(7141), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7790), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7804), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(9333), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(9339), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(9345), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(9349), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(9355), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(9359), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(9361), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(9363), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(9365), 1, anon_sym_bitand, - STATE(3181), 1, + STATE(4143), 1, sym_argument_list, - STATE(3186), 1, + STATE(4144), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7806), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(9335), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(9337), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(9341), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(9343), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(9347), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(9357), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(9367), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9351), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(9353), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [259835] = 26, + [214249] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5086), 1, + anon_sym_RBRACK, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8824), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(8830), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8834), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8840), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(8846), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(8850), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8852), 1, anon_sym_bitand, - ACTIONS(9980), 1, - anon_sym_SEMI, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8828), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8832), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(8842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8836), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8838), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [259926] = 26, + [214340] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(9281), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(9287), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(9291), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(9297), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(9303), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(9305), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(9307), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(9309), 1, anon_sym_bitand, - ACTIONS(9982), 1, - anon_sym_RBRACK, - STATE(3181), 1, + ACTIONS(9606), 1, + anon_sym_COLON, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(9277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(9279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(9283), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(9285), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(9289), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(9299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(9293), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(9295), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [260017] = 26, + [214431] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(6499), 1, + sym_literal_suffix, + ACTIONS(4773), 17, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8886), 1, anon_sym_PIPE, - ACTIONS(8890), 1, anon_sym_AMP, - ACTIONS(8896), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8906), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(9984), 1, - anon_sym_RBRACE, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8878), 2, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(4765), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [260108] = 25, + 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [214478] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7235), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(8054), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8070), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(9683), 1, + ACTIONS(9281), 1, anon_sym_SLASH, - ACTIONS(9689), 1, + ACTIONS(9287), 1, anon_sym_PIPE, - ACTIONS(9693), 1, + ACTIONS(9291), 1, anon_sym_AMP, - ACTIONS(9699), 1, + ACTIONS(9297), 1, anon_sym_GT_EQ, - ACTIONS(9705), 1, + ACTIONS(9305), 1, anon_sym_LT_EQ_GT, - ACTIONS(9707), 1, + ACTIONS(9307), 1, anon_sym_bitor, - ACTIONS(9709), 1, + ACTIONS(9309), 1, anon_sym_bitand, - STATE(4413), 1, + STATE(2617), 1, sym_argument_list, - STATE(4493), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7125), 2, - anon_sym_QMARK, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(8072), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9679), 2, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9681), 2, + ACTIONS(9279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9685), 2, + ACTIONS(9283), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9687), 2, + ACTIONS(9285), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9691), 2, + ACTIONS(9289), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9701), 2, + ACTIONS(9299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9711), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9695), 3, + ACTIONS(7118), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(9293), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9697), 3, + ACTIONS(9295), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [260197] = 26, + [214565] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, - anon_sym_RBRACK, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6689), 1, + anon_sym_COLON, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(9281), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(9287), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(9291), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(9297), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + ACTIONS(9303), 1, anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(9305), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(9307), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(9309), 1, anon_sym_bitand, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(9277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(9279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(9283), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(9285), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(9289), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(9299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(9293), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(9295), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [260288] = 9, + [214656] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(8054), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8070), 1, + ACTIONS(7001), 1, anon_sym_DOT, - STATE(4413), 1, + ACTIONS(9281), 1, + anon_sym_SLASH, + STATE(2617), 1, sym_argument_list, - STATE(4493), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8072), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7057), 9, - anon_sym_DOT_DOT_DOT, - 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(7059), 21, - anon_sym_STAR, - 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_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, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_DOT_DOT_GT, - [260345] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9986), 1, - anon_sym_COMMA, - ACTIONS(9989), 1, - anon_sym_RPAREN, - STATE(8864), 1, - aux_sym_parameter_list_repeat1, - ACTIONS(2183), 9, + ACTIONS(9279), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7019), 7, 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(2185), 25, + ACTIONS(7021), 18, 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, @@ -545758,7 +507005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -545767,691 +507014,449 @@ static const uint16_t ts_small_parse_table[] = { 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, - [260396] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6287), 1, - sym_literal_suffix, - ACTIONS(4837), 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(4829), 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_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [260443] = 26, + [214719] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5234), 1, - anon_sym_RBRACK, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(9281), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(9287), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(9291), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(9297), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(9305), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(9307), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(9309), 1, anon_sym_bitand, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(9277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(9279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(9285), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(9289), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(9299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(9293), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(9295), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [260534] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7903), 1, - anon_sym_AMP_AMP, - ACTIONS(7905), 1, - anon_sym_AMP, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(7920), 1, - anon_sym_DASH_GT, - ACTIONS(7922), 1, - anon_sym_noexcept, - ACTIONS(7924), 1, - anon_sym_throw, - ACTIONS(9899), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9902), 1, - anon_sym_LBRACK, - ACTIONS(9995), 1, - anon_sym_requires, - STATE(6284), 1, - sym_ref_qualifier, - STATE(6676), 1, - sym_function_exception_specification, - STATE(7031), 1, - sym_trailing_return_type, - STATE(7139), 1, - sym_function_attributes_end, - STATE(7270), 1, - sym_requires_clause, - STATE(7298), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9992), 2, - anon_sym_final, - anon_sym_override, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, - sym_noexcept, - sym_throw_specifier, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(9897), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(7021), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, anon_sym_COLON, - anon_sym_GT2, - anon_sym_try, - [260621] = 26, + anon_sym_QMARK, + anon_sym_or, + [214804] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5238), 1, - anon_sym_RBRACK, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(9281), 1, anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(9287), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(9291), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(9297), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(9305), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + ACTIONS(9307), 1, anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(9309), 1, anon_sym_bitand, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(9277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(9279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(9289), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(9299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(9293), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(9295), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [260712] = 26, + ACTIONS(7021), 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, + [214887] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_RBRACK, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, - anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(7019), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(9281), 1, + anon_sym_SLASH, + ACTIONS(9291), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(9297), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(9305), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(9309), 1, anon_sym_bitand, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(9277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(9279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(9289), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(9299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(9293), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(9295), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [260803] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(9926), 1, - anon_sym_LT, - STATE(6189), 1, - sym_template_argument_list, - ACTIONS(6197), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(4853), 31, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(7021), 8, + anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [260854] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(9926), 1, - anon_sym_LT, - STATE(6189), 1, - sym_template_argument_list, - ACTIONS(5460), 3, - anon_sym_AMP, - anon_sym_const, anon_sym_COLON, - ACTIONS(5467), 31, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_QMARK, anon_sym_or, anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [260905] = 26, + anon_sym_bitor, + [214968] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, - anon_sym_SLASH, - ACTIONS(8886), 1, + ACTIONS(7019), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(9281), 1, + anon_sym_SLASH, + ACTIONS(9291), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(9297), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(9305), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(9309), 1, anon_sym_bitand, - ACTIONS(9998), 1, - anon_sym_SEMI, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(9277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(9279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, + ACTIONS(9299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(9293), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(9295), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [260996] = 25, + ACTIONS(7021), 10, + 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, + [215047] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7006), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7235), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(8054), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8070), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(9683), 1, + ACTIONS(9281), 1, anon_sym_SLASH, - ACTIONS(9689), 1, - anon_sym_PIPE, - ACTIONS(9693), 1, - anon_sym_AMP, - ACTIONS(9699), 1, + ACTIONS(9297), 1, anon_sym_GT_EQ, - ACTIONS(9705), 1, + ACTIONS(9305), 1, anon_sym_LT_EQ_GT, - ACTIONS(9707), 1, - anon_sym_bitor, - ACTIONS(9709), 1, - anon_sym_bitand, - STATE(4413), 1, + STATE(2617), 1, sym_argument_list, - STATE(4493), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7008), 2, - anon_sym_QMARK, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(8072), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9679), 2, + ACTIONS(7019), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(8474), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9681), 2, + ACTIONS(9279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9685), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9687), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9691), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(9701), 2, + ACTIONS(9299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9711), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9695), 3, + ACTIONS(9293), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9697), 3, + ACTIONS(9295), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [261085] = 24, + ACTIONS(7021), 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, + [215122] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8196), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(9717), 1, + ACTIONS(9281), 1, anon_sym_SLASH, - ACTIONS(9723), 1, - anon_sym_PIPE, - ACTIONS(9727), 1, - anon_sym_AMP, - ACTIONS(9733), 1, + ACTIONS(9297), 1, anon_sym_GT_EQ, - ACTIONS(9741), 1, + ACTIONS(9305), 1, anon_sym_LT_EQ_GT, - ACTIONS(9743), 1, - anon_sym_bitor, - ACTIONS(9745), 1, - anon_sym_bitand, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8198), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(7019), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9713), 2, + ACTIONS(9277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9715), 2, + ACTIONS(9279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9719), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9721), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9725), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(9735), 2, + ACTIONS(9299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7008), 3, + ACTIONS(9295), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7021), 14, anon_sym_DOT_DOT_DOT, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(9729), 3, + 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, - ACTIONS(9731), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [261172] = 26, + [215195] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7065), 1, - anon_sym_COLON, - ACTIONS(8196), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9717), 1, + ACTIONS(9281), 1, anon_sym_SLASH, - ACTIONS(9723), 1, - anon_sym_PIPE, - ACTIONS(9727), 1, - anon_sym_AMP, - ACTIONS(9733), 1, - anon_sym_GT_EQ, - ACTIONS(9739), 1, - anon_sym_QMARK, - ACTIONS(9741), 1, + ACTIONS(9305), 1, anon_sym_LT_EQ_GT, - ACTIONS(9743), 1, - anon_sym_bitor, - ACTIONS(9745), 1, - anon_sym_bitand, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8198), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9713), 2, + ACTIONS(9277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9715), 2, + ACTIONS(9279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9719), 2, + ACTIONS(9299), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7019), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7021), 15, + anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9721), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9725), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(9735), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9729), 3, 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, - ACTIONS(9731), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [261263] = 12, + [215264] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8196), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(9717), 1, + ACTIONS(9281), 1, anon_sym_SLASH, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8198), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9715), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7053), 7, + ACTIONS(9277), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(9279), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7019), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 18, + ACTIONS(7021), 18, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -546470,46 +507475,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [261326] = 10, + [215329] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8196), 1, + ACTIONS(7001), 1, anon_sym_DOT, - STATE(3181), 1, + ACTIONS(9281), 1, + anon_sym_SLASH, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8198), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7053), 8, + ACTIONS(9277), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(9279), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9299), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7019), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 20, + ACTIONS(7021), 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, @@ -546519,1323 +507528,1557 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [261385] = 23, + [215396] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8196), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(9717), 1, + ACTIONS(9281), 1, anon_sym_SLASH, - ACTIONS(9723), 1, + ACTIONS(9287), 1, anon_sym_PIPE, - ACTIONS(9727), 1, + ACTIONS(9291), 1, anon_sym_AMP, - ACTIONS(9733), 1, + ACTIONS(9297), 1, anon_sym_GT_EQ, - ACTIONS(9741), 1, + ACTIONS(9305), 1, anon_sym_LT_EQ_GT, - ACTIONS(9743), 1, + ACTIONS(9307), 1, anon_sym_bitor, - ACTIONS(9745), 1, + ACTIONS(9309), 1, anon_sym_bitand, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8198), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9713), 2, + ACTIONS(9277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9715), 2, + ACTIONS(9279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9721), 2, + ACTIONS(9283), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9285), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9725), 2, + ACTIONS(9289), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9735), 2, + ACTIONS(9299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9729), 3, + ACTIONS(7062), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(9293), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9731), 3, + ACTIONS(9295), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_or, - [261470] = 22, + [215483] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8196), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(9717), 1, + ACTIONS(7134), 1, + anon_sym_COLON, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9281), 1, anon_sym_SLASH, - ACTIONS(9723), 1, + ACTIONS(9287), 1, anon_sym_PIPE, - ACTIONS(9727), 1, + ACTIONS(9291), 1, anon_sym_AMP, - ACTIONS(9733), 1, + ACTIONS(9297), 1, anon_sym_GT_EQ, - ACTIONS(9741), 1, + ACTIONS(9303), 1, + anon_sym_QMARK, + ACTIONS(9305), 1, anon_sym_LT_EQ_GT, - ACTIONS(9743), 1, + ACTIONS(9307), 1, anon_sym_bitor, - ACTIONS(9745), 1, + ACTIONS(9309), 1, anon_sym_bitand, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8198), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9713), 2, + ACTIONS(9277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9715), 2, + ACTIONS(9279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9725), 2, + ACTIONS(9283), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9285), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9289), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9735), 2, + ACTIONS(9299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9729), 3, + ACTIONS(9293), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9731), 3, + ACTIONS(9295), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 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, - [261553] = 21, + [215574] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7053), 1, - anon_sym_PIPE, - ACTIONS(8196), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(9717), 1, + ACTIONS(9281), 1, anon_sym_SLASH, - ACTIONS(9727), 1, + ACTIONS(9287), 1, + anon_sym_PIPE, + ACTIONS(9291), 1, anon_sym_AMP, - ACTIONS(9733), 1, + ACTIONS(9297), 1, anon_sym_GT_EQ, - ACTIONS(9741), 1, + ACTIONS(9305), 1, anon_sym_LT_EQ_GT, - ACTIONS(9745), 1, + ACTIONS(9307), 1, + anon_sym_bitor, + ACTIONS(9309), 1, anon_sym_bitand, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8198), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9713), 2, + ACTIONS(9277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9715), 2, + ACTIONS(9279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9725), 2, + ACTIONS(9283), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9285), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9289), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9735), 2, + ACTIONS(9299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9729), 3, + ACTIONS(7107), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(9293), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9731), 3, + ACTIONS(9295), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 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, - [261634] = 20, + [215661] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7053), 1, - anon_sym_PIPE, - ACTIONS(8196), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(9717), 1, + ACTIONS(7094), 1, + anon_sym_COLON, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9281), 1, anon_sym_SLASH, - ACTIONS(9727), 1, + ACTIONS(9287), 1, + anon_sym_PIPE, + ACTIONS(9291), 1, anon_sym_AMP, - ACTIONS(9733), 1, + ACTIONS(9297), 1, anon_sym_GT_EQ, - ACTIONS(9741), 1, + ACTIONS(9303), 1, + anon_sym_QMARK, + ACTIONS(9305), 1, anon_sym_LT_EQ_GT, - ACTIONS(9745), 1, + ACTIONS(9307), 1, + anon_sym_bitor, + ACTIONS(9309), 1, anon_sym_bitand, - STATE(3181), 1, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8198), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9713), 2, + ACTIONS(9277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9715), 2, + ACTIONS(9279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9735), 2, + ACTIONS(9283), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9285), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9289), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9729), 3, + ACTIONS(9293), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9731), 3, + ACTIONS(9295), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 10, - 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, - [261713] = 18, + [215752] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8196), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(9717), 1, + ACTIONS(9281), 1, anon_sym_SLASH, - ACTIONS(9733), 1, + ACTIONS(9287), 1, + anon_sym_PIPE, + ACTIONS(9291), 1, + anon_sym_AMP, + ACTIONS(9297), 1, anon_sym_GT_EQ, - ACTIONS(9741), 1, + ACTIONS(9305), 1, anon_sym_LT_EQ_GT, - STATE(3181), 1, + ACTIONS(9307), 1, + anon_sym_bitor, + ACTIONS(9309), 1, + anon_sym_bitand, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7053), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(8198), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9713), 2, + ACTIONS(9277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9715), 2, + ACTIONS(9279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9735), 2, + ACTIONS(9283), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9285), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9289), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9729), 3, + ACTIONS(7130), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(9293), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9731), 3, + ACTIONS(9295), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7051), 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, - [261788] = 17, + [215839] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8196), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(9717), 1, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9281), 1, anon_sym_SLASH, - ACTIONS(9733), 1, + ACTIONS(9287), 1, + anon_sym_PIPE, + ACTIONS(9291), 1, + anon_sym_AMP, + ACTIONS(9297), 1, anon_sym_GT_EQ, - ACTIONS(9741), 1, + ACTIONS(9303), 1, + anon_sym_QMARK, + ACTIONS(9305), 1, anon_sym_LT_EQ_GT, - STATE(3181), 1, + ACTIONS(9307), 1, + anon_sym_bitor, + ACTIONS(9309), 1, + anon_sym_bitand, + ACTIONS(9608), 1, + anon_sym_COLON, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7053), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(8198), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9713), 2, + ACTIONS(9277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9715), 2, + ACTIONS(9279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9735), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9731), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7051), 14, - anon_sym_DOT_DOT_DOT, + ACTIONS(9283), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9285), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9289), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(9299), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9293), 3, 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, - [261861] = 15, + ACTIONS(9295), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [215930] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8196), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9717), 1, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(9741), 1, + ACTIONS(8587), 1, + anon_sym_AMP, + ACTIONS(8593), 1, + anon_sym_GT_EQ, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - STATE(3181), 1, + ACTIONS(8599), 1, + anon_sym_bitand, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9610), 1, + anon_sym_SEMI, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8198), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9713), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9715), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9735), 2, + ACTIONS(8595), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7053), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7051), 15, - anon_sym_DOT_DOT_DOT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8663), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8667), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8589), 3, 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, - [261930] = 13, + ACTIONS(8591), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [216021] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5178), 1, + anon_sym_RBRACK, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8196), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9717), 1, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8824), 1, anon_sym_SLASH, - STATE(3181), 1, + ACTIONS(8830), 1, + anon_sym_PIPE, + ACTIONS(8834), 1, + anon_sym_AMP, + ACTIONS(8840), 1, + anon_sym_GT_EQ, + ACTIONS(8846), 1, + anon_sym_QMARK, + ACTIONS(8848), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8850), 1, + anon_sym_bitor, + ACTIONS(8852), 1, + anon_sym_bitand, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8198), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9713), 2, + ACTIONS(8820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9715), 2, + ACTIONS(8822), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7053), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7051), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(8826), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8828), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8832), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(8842), 2, 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, + ACTIONS(8836), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - [261995] = 14, + ACTIONS(8838), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [216112] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8196), 1, + ACTIONS(7001), 1, anon_sym_DOT, - ACTIONS(9717), 1, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9281), 1, anon_sym_SLASH, - STATE(3181), 1, + ACTIONS(9287), 1, + anon_sym_PIPE, + ACTIONS(9291), 1, + anon_sym_AMP, + ACTIONS(9297), 1, + anon_sym_GT_EQ, + ACTIONS(9303), 1, + anon_sym_QMARK, + ACTIONS(9305), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9307), 1, + anon_sym_bitor, + ACTIONS(9309), 1, + anon_sym_bitand, + ACTIONS(9612), 1, + anon_sym_COLON, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8198), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9713), 2, + ACTIONS(9277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9715), 2, + ACTIONS(9279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9735), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7053), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7051), 16, - anon_sym_DOT_DOT_DOT, + ACTIONS(9283), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9285), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9289), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(9299), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9293), 3, 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, - [262062] = 10, + ACTIONS(9295), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [216203] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8196), 1, + ACTIONS(7001), 1, anon_sym_DOT, - STATE(3181), 1, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9281), 1, + anon_sym_SLASH, + ACTIONS(9287), 1, + anon_sym_PIPE, + ACTIONS(9291), 1, + anon_sym_AMP, + ACTIONS(9297), 1, + anon_sym_GT_EQ, + ACTIONS(9303), 1, + anon_sym_QMARK, + ACTIONS(9305), 1, + anon_sym_LT_EQ_GT, + ACTIONS(9307), 1, + anon_sym_bitor, + ACTIONS(9309), 1, + anon_sym_bitand, + ACTIONS(9614), 1, + anon_sym_COLON, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8198), 2, + ACTIONS(7003), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7089), 8, + ACTIONS(9277), 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(7091), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(9279), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(9283), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9285), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9289), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(9299), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(9293), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9295), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [216294] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(5574), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4763), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(9468), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4771), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [216343] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4983), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6130), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(9419), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6128), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [216392] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9619), 1, + anon_sym_const, + ACTIONS(5725), 2, + anon_sym_AMP, + anon_sym_LBRACK, + STATE(5575), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(9616), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(5727), 21, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_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, - [262121] = 24, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + sym_semgrep_metavar, + [216443] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8196), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9717), 1, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(9723), 1, - anon_sym_PIPE, - ACTIONS(9727), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(9733), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(9741), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(9743), 1, - anon_sym_bitor, - ACTIONS(9745), 1, + ACTIONS(8599), 1, anon_sym_bitand, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9622), 1, + anon_sym_COMMA, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8198), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9713), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9715), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9719), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9721), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9725), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9735), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7079), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(9729), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9731), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [262208] = 26, + [216534] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7083), 1, - anon_sym_COLON, - ACTIONS(8196), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9717), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(9723), 1, - anon_sym_PIPE, - ACTIONS(9727), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(9733), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(9739), 1, - anon_sym_QMARK, - ACTIONS(9741), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(9743), 1, - anon_sym_bitor, - ACTIONS(9745), 1, + ACTIONS(8599), 1, anon_sym_bitand, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9624), 1, + anon_sym_COMMA, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8198), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9713), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9715), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9719), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9721), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9725), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9735), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9729), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9731), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [262299] = 24, + [216625] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8196), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(9717), 1, + ACTIONS(8539), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(9723), 1, - anon_sym_PIPE, - ACTIONS(9727), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(9733), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(9741), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(9743), 1, - anon_sym_bitor, - ACTIONS(9745), 1, + ACTIONS(8599), 1, anon_sym_bitand, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9626), 1, + anon_sym_COMMA, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8198), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9713), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9715), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9719), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9721), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9725), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9735), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7087), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(9729), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9731), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [262386] = 26, + [216716] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7095), 1, - anon_sym_COLON, - ACTIONS(8196), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9717), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(9723), 1, - anon_sym_PIPE, - ACTIONS(9727), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(9733), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(9739), 1, - anon_sym_QMARK, - ACTIONS(9741), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(9743), 1, - anon_sym_bitor, - ACTIONS(9745), 1, + ACTIONS(8599), 1, anon_sym_bitand, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9628), 1, + anon_sym_COMMA, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8198), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9713), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9715), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9719), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9721), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9725), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9735), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9729), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9731), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [262477] = 26, + [216807] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5256), 1, - anon_sym_RBRACK, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9630), 1, + anon_sym_COMMA, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [262568] = 26, + [216898] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(8196), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9717), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(9723), 1, - anon_sym_PIPE, - ACTIONS(9727), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(9733), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(9739), 1, - anon_sym_QMARK, - ACTIONS(9741), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(9743), 1, - anon_sym_bitor, - ACTIONS(9745), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(10000), 1, - anon_sym_COLON, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9632), 1, + anon_sym_COMMA, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(8198), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9713), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9715), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9719), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9721), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9725), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9735), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9729), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9731), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [262659] = 26, + [216989] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5194), 1, - anon_sym_RBRACK, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9634), 1, + anon_sym_COMMA, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [262750] = 26, + [217080] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(10002), 1, - anon_sym_SEMI, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9636), 1, + anon_sym_COMMA, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [262841] = 26, + [217171] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(10004), 1, - anon_sym_SEMI, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + ACTIONS(9638), 1, + anon_sym_COMMA, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [262932] = 26, + [217262] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, + STATE(4983), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6147), 3, + anon_sym_AMP, anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, - anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + anon_sym_const, + ACTIONS(9419), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6145), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [217311] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8038), 1, + anon_sym_const, + ACTIONS(8802), 2, anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - ACTIONS(10006), 1, + anon_sym_LBRACK, + STATE(5575), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8030), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(8800), 20, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, anon_sym_SEMI, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + sym_semgrep_metavar, + [217361] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6592), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 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(6590), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [263023] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7235), 1, - anon_sym_LPAREN2, - ACTIONS(8054), 1, + anon_sym_LT_LT, anon_sym_LBRACK, - ACTIONS(8070), 1, - anon_sym_DOT, - ACTIONS(9677), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9683), 1, - anon_sym_SLASH, - ACTIONS(9689), 1, - anon_sym_PIPE, - ACTIONS(9693), 1, - anon_sym_AMP, - ACTIONS(9699), 1, - anon_sym_GT_EQ, - ACTIONS(9703), 1, anon_sym_QMARK, - ACTIONS(9705), 1, anon_sym_LT_EQ_GT, - ACTIONS(9707), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(9709), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(10008), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(4413), 1, - sym_argument_list, - STATE(4493), 1, - sym_subscript_argument_list, - ACTIONS(8072), 2, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9679), 2, + anon_sym_GT2, + [217405] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6596), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9681), 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(6594), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9685), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9687), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9691), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(9701), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9711), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9695), 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(9697), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [263114] = 14, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [217449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, - anon_sym_LPAREN2, - ACTIONS(9097), 1, - anon_sym_STAR, - ACTIONS(9099), 1, - anon_sym_AMP_AMP, - ACTIONS(9101), 1, + ACTIONS(6560), 3, anon_sym_AMP, - ACTIONS(9105), 1, anon_sym_LBRACK, - ACTIONS(9107), 1, anon_sym_const, - STATE(4035), 1, - sym_parameter_list, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(7553), 1, - sym_abstract_declarator, - STATE(5886), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(7464), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6258), 10, + ACTIONS(6558), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - ACTIONS(9103), 11, - anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -547846,33 +509089,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [263181] = 9, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + 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, + sym_semgrep_metavar, + [217493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(8196), 1, - anon_sym_DOT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(8198), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6998), 8, + ACTIONS(6699), 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(6996), 22, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6697), 25, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -547880,10 +509127,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_COLON, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -547894,48 +509139,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [263238] = 14, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [217537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(7197), 17, + anon_sym_DOT_DOT_DOT, + 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(7199), 19, anon_sym_LPAREN2, - ACTIONS(9097), 1, anon_sym_STAR, - ACTIONS(9099), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(9101), 1, - anon_sym_AMP, - ACTIONS(9105), 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_LBRACK, - ACTIONS(9107), 1, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [217581] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8038), 1, anon_sym_const, - STATE(4035), 1, + ACTIONS(8719), 1, + anon_sym_LPAREN2, + ACTIONS(8727), 1, + anon_sym_LBRACK, + ACTIONS(9101), 1, + anon_sym_STAR, + ACTIONS(9103), 1, + anon_sym_AMP_AMP, + ACTIONS(9105), 1, + anon_sym_AMP, + STATE(4177), 1, sym_parameter_list, - STATE(7450), 1, + STATE(6893), 1, sym_function_declarator_seq, - STATE(7568), 1, + STATE(7296), 1, sym_abstract_declarator, - STATE(6350), 2, + STATE(5575), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(7464), 5, + STATE(6892), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(9248), 10, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9177), 9, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - ACTIONS(9103), 11, + ACTIONS(8030), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -547947,36 +509235,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [263305] = 10, + [217647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(8196), 1, - anon_sym_DOT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(8198), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7143), 8, + ACTIONS(6607), 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(7141), 20, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6605), 25, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -547984,10 +509261,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_COLON, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -547996,36 +509271,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [263364] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(8196), 1, - anon_sym_DOT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(8198), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7112), 8, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [217691] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6611), 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(7110), 20, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6609), 25, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -548033,10 +509302,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_COLON, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -548045,96 +509312,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [263423] = 24, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [217735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(8196), 1, - anon_sym_DOT, - ACTIONS(9717), 1, + ACTIONS(6615), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(9723), 1, anon_sym_PIPE, - ACTIONS(9727), 1, anon_sym_AMP, - ACTIONS(9733), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(9741), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6613), 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_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(9743), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(9745), 1, + anon_sym_xor, anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(8198), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9713), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [217779] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6627), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9715), 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(6625), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9719), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9721), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9725), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(9735), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7125), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(9729), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9731), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [263510] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, + anon_sym_LT_LT, anon_sym_LBRACK, - ACTIONS(8196), 1, - anon_sym_DOT, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(8198), 2, + 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_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7057), 8, + anon_sym_GT2, + [217823] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6638), 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(7059), 22, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6636), 25, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -548142,10 +509425,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_COLON, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -548156,1050 +509437,1086 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [263567] = 26, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [217867] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7869), 1, + anon_sym_AMP_AMP, + ACTIONS(7871), 1, + anon_sym_AMP, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(7881), 1, + anon_sym_DASH_GT, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(7923), 1, + anon_sym_requires, + ACTIONS(9642), 1, + anon_sym_LBRACK, + STATE(5790), 1, + sym_ref_qualifier, + STATE(6214), 1, + sym_function_exception_specification, + STATE(6800), 1, + sym_function_attributes_end, + STATE(6985), 1, + sym_trailing_return_type, + STATE(7021), 1, + sym_requires_clause, + STATE(7068), 1, + sym_function_postfix, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [217953] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(8038), 1, + anon_sym_const, + ACTIONS(8719), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(8727), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(9101), 1, + anon_sym_STAR, + ACTIONS(9103), 1, + anon_sym_AMP_AMP, + ACTIONS(9105), 1, + anon_sym_AMP, + STATE(4177), 1, + sym_parameter_list, + STATE(6893), 1, + sym_function_declarator_seq, + STATE(7266), 1, + sym_abstract_declarator, + STATE(5575), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6892), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7388), 9, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8030), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [218019] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6783), 1, + sym_literal_suffix, + ACTIONS(4773), 16, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8886), 1, anon_sym_PIPE, - ACTIONS(8890), 1, anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8906), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(10010), 1, - anon_sym_RBRACK, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8878), 2, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(4765), 19, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [263658] = 26, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [218065] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(3694), 1, + anon_sym_const, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7394), 1, + sym_auto, + ACTIONS(7396), 1, + anon_sym_decltype, + ACTIONS(8765), 1, anon_sym_LBRACK, - ACTIONS(8196), 1, - anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(9644), 1, + anon_sym_STAR, + ACTIONS(9646), 1, + anon_sym_AMP_AMP, + ACTIONS(9648), 1, + anon_sym_AMP, + STATE(3304), 1, + sym_decltype_auto, + STATE(4408), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7500), 1, + sym_abstract_declarator, + STATE(5787), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8717), 6, anon_sym_DOT_DOT_DOT, - ACTIONS(9717), 1, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8763), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [218137] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6603), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(9723), 1, anon_sym_PIPE, - ACTIONS(9727), 1, anon_sym_AMP, - ACTIONS(9733), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(9739), 1, - anon_sym_QMARK, - ACTIONS(9741), 1, - anon_sym_LT_EQ_GT, - ACTIONS(9743), 1, - anon_sym_bitor, - ACTIONS(9745), 1, - anon_sym_bitand, - ACTIONS(10012), 1, - anon_sym_COLON, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(8198), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9713), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9715), 2, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6601), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9719), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9721), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9725), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(9735), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9729), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9731), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [263749] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, + anon_sym_LT_LT, anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, - anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, - anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, anon_sym_QMARK, - ACTIONS(8902), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8906), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(9212), 1, - anon_sym_RPAREN, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [218181] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6619), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 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(6617), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [263840] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [218225] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(3694), 1, + anon_sym_const, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(7394), 1, + sym_auto, + ACTIONS(7396), 1, + anon_sym_decltype, + ACTIONS(8765), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(9644), 1, + anon_sym_STAR, + ACTIONS(9646), 1, + anon_sym_AMP_AMP, + ACTIONS(9648), 1, + anon_sym_AMP, + STATE(3304), 1, + sym_decltype_auto, + STATE(4408), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7491), 1, + sym_abstract_declarator, + STATE(5789), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8733), 6, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8763), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [218297] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5680), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8886), 1, anon_sym_PIPE, - ACTIONS(8890), 1, anon_sym_AMP, - ACTIONS(8896), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - ACTIONS(10014), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(3211), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8878), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [263931] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, + anon_sym_LT_LT, anon_sym_LBRACK, - ACTIONS(8196), 1, - anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9717), 1, - anon_sym_SLASH, - ACTIONS(9723), 1, - anon_sym_PIPE, - ACTIONS(9727), 1, - anon_sym_AMP, - ACTIONS(9733), 1, - anon_sym_GT_EQ, - ACTIONS(9739), 1, anon_sym_QMARK, - ACTIONS(9741), 1, anon_sym_LT_EQ_GT, - ACTIONS(9743), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(9745), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(10016), 1, - anon_sym_COLON, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(8198), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9713), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9715), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9719), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9721), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [218341] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6495), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6493), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9725), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(9735), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9729), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9731), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [264022] = 26, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + 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, + sym_semgrep_metavar, + [218385] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(6999), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, + ACTIONS(7043), 1, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(8539), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(8585), 1, anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8587), 1, anon_sym_AMP, - ACTIONS(8896), 1, + ACTIONS(8593), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, + ACTIONS(8597), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, + ACTIONS(8599), 1, anon_sym_bitand, - ACTIONS(10018), 1, - anon_sym_COMMA, - STATE(3181), 1, + ACTIONS(8665), 1, + anon_sym_PIPE, + ACTIONS(8669), 1, + anon_sym_bitor, + ACTIONS(8671), 1, + anon_sym_QMARK, + STATE(2617), 1, sym_argument_list, - STATE(3186), 1, + STATE(2620), 1, sym_subscript_argument_list, - ACTIONS(7004), 2, + ACTIONS(7045), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8794), 2, + ACTIONS(8474), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + ACTIONS(8581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(8583), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, + ACTIONS(8595), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(8663), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, + ACTIONS(8667), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, + ACTIONS(8589), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8894), 3, + ACTIONS(8591), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [264113] = 26, + [218473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + ACTIONS(6580), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8886), 1, anon_sym_PIPE, - ACTIONS(8890), 1, anon_sym_AMP, - ACTIONS(8896), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - ACTIONS(10020), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6578), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8878), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [264204] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, + anon_sym_LT_LT, anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, - anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, - anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, anon_sym_QMARK, - ACTIONS(8902), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - ACTIONS(10022), 1, - anon_sym_COMMA, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8878), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8882), 2, - anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8884), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8888), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [264295] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [218517] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(9654), 1, + anon_sym___attribute__, + STATE(5609), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(9652), 3, + anon_sym_AMP, anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, + anon_sym_const, + ACTIONS(9650), 30, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + sym_semgrep_metavar, + [218565] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6623), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8886), 1, anon_sym_PIPE, - ACTIONS(8890), 1, anon_sym_AMP, - ACTIONS(8896), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - ACTIONS(10024), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6621), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8878), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [264386] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, + anon_sym_LT_LT, anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, - anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, - anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, anon_sym_QMARK, - ACTIONS(8902), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8906), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(10026), 1, - anon_sym_COMMA, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [218609] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6634), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8882), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [264477] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(8874), 1, + ACTIONS(6632), 25, anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, - anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, - anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - ACTIONS(10028), 1, anon_sym_COMMA, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8878), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [264568] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, + anon_sym_LT_LT, anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, - anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, - anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, anon_sym_QMARK, - ACTIONS(8902), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8906), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(10030), 1, - anon_sym_COMMA, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [218653] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6735), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 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(6733), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [264659] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, + anon_sym_LT_LT, anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, - anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, - anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, anon_sym_QMARK, - ACTIONS(8902), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8906), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(10032), 1, - anon_sym_COMMA, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [218697] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7869), 1, + anon_sym_AMP_AMP, + ACTIONS(7871), 1, + anon_sym_AMP, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(7881), 1, + anon_sym_DASH_GT, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9660), 1, + anon_sym_requires, + STATE(5791), 1, + sym_ref_qualifier, + STATE(6222), 1, + sym_function_exception_specification, + STATE(6810), 1, + sym_function_attributes_end, + STATE(6947), 1, + sym_trailing_return_type, + STATE(7021), 1, + sym_requires_clause, + STATE(7068), 1, + sym_function_postfix, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9657), 2, + anon_sym_final, + anon_sym_override, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [218783] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2191), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 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(2193), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [264750] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, + anon_sym_LT_LT, anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, - anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, - anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, anon_sym_QMARK, - ACTIONS(8902), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8906), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(10034), 1, - anon_sym_COMMA, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [218827] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6485), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6483), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + 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, + sym_semgrep_metavar, + [218871] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6489), 10, + anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8878), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(6487), 26, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8882), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [264841] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(7000), 1, - anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, - anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, - anon_sym_AMP, - ACTIONS(8896), 1, anon_sym_GT_EQ, - ACTIONS(8900), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(8902), 1, anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8906), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(10036), 1, - anon_sym_COMMA, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8878), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [218915] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8038), 1, + anon_sym_const, + ACTIONS(8719), 1, + anon_sym_LPAREN2, + ACTIONS(8727), 1, + anon_sym_LBRACK, + ACTIONS(9101), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8882), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(9103), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [264932] = 26, + ACTIONS(9105), 1, + anon_sym_AMP, + STATE(4177), 1, + sym_parameter_list, + STATE(6893), 1, + sym_function_declarator_seq, + STATE(7243), 1, + sym_abstract_declarator, + STATE(5575), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6892), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9173), 9, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8030), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [218981] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, - anon_sym_LPAREN2, - ACTIONS(8054), 1, + ACTIONS(9663), 1, + anon_sym___attribute__, + STATE(5618), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(9652), 3, + anon_sym_AMP, anon_sym_LBRACK, - ACTIONS(8070), 1, - anon_sym_DOT, - ACTIONS(9677), 1, + anon_sym_const, + ACTIONS(9650), 30, anon_sym_DOT_DOT_DOT, - ACTIONS(9683), 1, - anon_sym_SLASH, - ACTIONS(9689), 1, - anon_sym_PIPE, - ACTIONS(9693), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + 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, + [219029] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(9668), 2, anon_sym_AMP, - ACTIONS(9699), 1, - anon_sym_GT_EQ, - ACTIONS(9703), 1, - anon_sym_QMARK, - ACTIONS(9705), 1, - anon_sym_LT_EQ_GT, - ACTIONS(9707), 1, - anon_sym_bitor, - ACTIONS(9709), 1, - anon_sym_bitand, - ACTIONS(10038), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(4413), 1, - sym_argument_list, - STATE(4493), 1, - sym_subscript_argument_list, - ACTIONS(8072), 2, - anon_sym_DOT_STAR, + anon_sym_LBRACK, + STATE(5379), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(7873), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(9666), 20, + anon_sym_DOT_DOT_DOT, + 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_asm, + anon_sym___asm__, anon_sym_DASH_GT, - ACTIONS(9679), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9681), 2, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [219079] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5702), 1, + anon_sym_COLON, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(9670), 1, + anon_sym_LBRACE, + STATE(5017), 1, + sym_attribute_specifier, + STATE(5804), 1, + sym_field_declaration_list, + STATE(8126), 1, + sym_virtual_specifier, + STATE(9003), 1, + sym_base_class_clause, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5696), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5694), 24, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9685), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9687), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9691), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(9701), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9711), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9695), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9697), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [265023] = 3, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [219139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7287), 11, + ACTIONS(6656), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -549211,7 +510528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(7285), 25, + ACTIONS(6654), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -549237,10 +510554,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [265067] = 3, + [219183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7311), 11, + ACTIONS(6806), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -549252,7 +510569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(7309), 25, + ACTIONS(6804), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -549278,50 +510595,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [265111] = 17, + [219227] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(8719), 1, anon_sym_LPAREN2, - ACTIONS(7458), 1, - sym_auto, - ACTIONS(7460), 1, - anon_sym_decltype, - ACTIONS(9105), 1, + ACTIONS(8727), 1, anon_sym_LBRACK, ACTIONS(9107), 1, - anon_sym_const, - ACTIONS(10040), 1, anon_sym_STAR, - ACTIONS(10042), 1, + ACTIONS(9109), 1, anon_sym_AMP_AMP, - ACTIONS(10044), 1, + ACTIONS(9111), 1, anon_sym_AMP, - STATE(3478), 1, - sym_decltype_auto, - STATE(4697), 1, + STATE(4187), 1, sym_parameter_list, - STATE(7450), 1, + STATE(6893), 1, sym_function_declarator_seq, - STATE(7858), 1, + STATE(7295), 1, sym_abstract_declarator, - STATE(6301), 2, + STATE(5379), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(7464), 5, + STATE(6892), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8932), 6, - anon_sym_DOT_DOT_DOT, + ACTIONS(9173), 9, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - ACTIONS(9103), 11, + ACTIONS(7873), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -549333,50 +510647,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [265183] = 17, + [219293] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(8719), 1, anon_sym_LPAREN2, - ACTIONS(7458), 1, - sym_auto, - ACTIONS(7460), 1, - anon_sym_decltype, - ACTIONS(9105), 1, + ACTIONS(8727), 1, anon_sym_LBRACK, ACTIONS(9107), 1, + anon_sym_STAR, + ACTIONS(9109), 1, + anon_sym_AMP_AMP, + ACTIONS(9111), 1, + anon_sym_AMP, + STATE(4187), 1, + sym_parameter_list, + STATE(6893), 1, + sym_function_declarator_seq, + STATE(7303), 1, + sym_abstract_declarator, + STATE(5379), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6892), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7388), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(7873), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [219359] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, anon_sym_const, - ACTIONS(10040), 1, + ACTIONS(8719), 1, + anon_sym_LPAREN2, + ACTIONS(8727), 1, + anon_sym_LBRACK, + ACTIONS(9107), 1, anon_sym_STAR, - ACTIONS(10042), 1, + ACTIONS(9109), 1, anon_sym_AMP_AMP, - ACTIONS(10044), 1, + ACTIONS(9111), 1, anon_sym_AMP, - STATE(3478), 1, - sym_decltype_auto, - STATE(4697), 1, + STATE(4187), 1, sym_parameter_list, - STATE(7450), 1, + STATE(6893), 1, sym_function_declarator_seq, - STATE(7852), 1, + STATE(7304), 1, sym_abstract_declarator, - STATE(6299), 2, + STATE(5379), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(7464), 5, + STATE(6892), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8908), 6, - anon_sym_DOT_DOT_DOT, + ACTIONS(9177), 9, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - ACTIONS(9103), 11, + ACTIONS(7873), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -549388,10 +510751,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [265255] = 3, + [219425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4261), 11, + ACTIONS(4773), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -549403,7 +510766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4259), 25, + ACTIONS(4765), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -549429,55 +510792,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [265299] = 7, + [219469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7983), 1, - sym_identifier, - ACTIONS(7987), 1, - sym_primitive_type, - STATE(5452), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9751), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6022), 9, + ACTIONS(6646), 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(6644), 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_SEMI, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(6026), 20, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [265351] = 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [219513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5746), 11, + ACTIONS(6741), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -549489,7 +510848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3187), 25, + ACTIONS(6739), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -549515,10 +510874,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [265395] = 3, + [219557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7217), 11, + ACTIONS(6691), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -549530,7 +510889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(7215), 25, + ACTIONS(6689), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -549556,10 +510915,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [265439] = 3, + [219601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 11, + ACTIONS(6707), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -549571,7 +510930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2191), 25, + ACTIONS(6705), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -549597,99 +510956,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [265483] = 3, + [219645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7075), 3, + ACTIONS(6759), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(7073), 33, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6757), 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_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, + 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_DOT_STAR, 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, - sym_semgrep_metavar, - [265527] = 8, + [219689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(10046), 1, + ACTIONS(6584), 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, - STATE(2089), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2518), 1, - sym_template_argument_list, - ACTIONS(4827), 3, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6582), 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_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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [219733] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6787), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(5490), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4835), 25, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6785), 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_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [265581] = 4, + 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [219777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10048), 1, + ACTIONS(6791), 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(6789), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(2183), 11, + anon_sym_STAR, + 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [219821] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6711), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -549701,9 +511135,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2185), 24, + ACTIONS(6709), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -549726,10 +511161,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [265627] = 3, + [219865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7265), 11, + ACTIONS(2189), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -549741,7 +511176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(7263), 25, + ACTIONS(2187), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -549767,10 +511202,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [265671] = 3, + [219909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7225), 11, + ACTIONS(6767), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -549782,7 +511217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(7223), 25, + ACTIONS(6765), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -549808,10 +511243,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [265715] = 3, + [219953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7411), 11, + ACTIONS(6660), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -549823,7 +511258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(7409), 25, + ACTIONS(6658), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -549849,10 +511284,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [265759] = 3, + [219997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 11, + ACTIONS(6771), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -549864,7 +511299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(7325), 25, + ACTIONS(6769), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -549890,10 +511325,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [265803] = 3, + [220041] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7334), 11, + ACTIONS(9672), 1, + anon_sym_LPAREN2, + ACTIONS(2191), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -549905,10 +511342,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(7332), 25, + ACTIONS(2193), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -549931,10 +511367,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [265847] = 3, + [220087] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(8802), 2, + anon_sym_AMP, + anon_sym_LBRACK, + STATE(5379), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(7873), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(8800), 20, + anon_sym_DOT_DOT_DOT, + 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_asm, + anon_sym___asm__, + 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, + [220137] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7415), 11, + ACTIONS(9674), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9676), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6677), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -549946,14 +511432,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(7413), 25, + ACTIONS(6679), 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, @@ -549961,8 +511445,6 @@ 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, @@ -549972,10 +511454,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [265891] = 3, + [220185] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7403), 11, + ACTIONS(8038), 1, + anon_sym_const, + ACTIONS(9668), 2, + anon_sym_AMP, + anon_sym_LBRACK, + STATE(5575), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8030), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(9666), 20, + 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_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + sym_semgrep_metavar, + [220235] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4306), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -549987,7 +511513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(7401), 25, + ACTIONS(4302), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -550013,73 +511539,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [265935] = 25, + [220279] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, + ACTIONS(8038), 1, + anon_sym_const, + ACTIONS(8719), 1, anon_sym_LPAREN2, - ACTIONS(7000), 1, + ACTIONS(8727), 1, anon_sym_LBRACK, - ACTIONS(7002), 1, - anon_sym_DOT, - ACTIONS(8874), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8880), 1, - anon_sym_SLASH, - ACTIONS(8886), 1, - anon_sym_PIPE, - ACTIONS(8890), 1, - anon_sym_AMP, - ACTIONS(8896), 1, - anon_sym_GT_EQ, - ACTIONS(8900), 1, - anon_sym_QMARK, - ACTIONS(8902), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8904), 1, - anon_sym_bitor, - ACTIONS(8906), 1, - anon_sym_bitand, - STATE(3181), 1, - sym_argument_list, - STATE(3186), 1, - sym_subscript_argument_list, - ACTIONS(7004), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8794), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8878), 2, + ACTIONS(9101), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8882), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8884), 2, + ACTIONS(9103), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8888), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8892), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8894), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [266023] = 3, + ACTIONS(9105), 1, + anon_sym_AMP, + STATE(4177), 1, + sym_parameter_list, + STATE(6893), 1, + sym_function_declarator_seq, + STATE(7254), 1, + sym_abstract_declarator, + STATE(5599), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6892), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6535), 9, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8030), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [220345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7342), 11, + ACTIONS(6675), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -550091,7 +511606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(7340), 25, + ACTIONS(6673), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -550117,10 +511632,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [266067] = 3, + [220389] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 11, + ACTIONS(9676), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6753), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -550132,14 +511650,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(7393), 25, + ACTIONS(6755), 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, @@ -550148,7 +511665,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, - anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, @@ -550158,10 +511674,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [266111] = 3, + [220435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7352), 11, + ACTIONS(6703), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -550173,7 +511689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(7350), 25, + ACTIONS(6701), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -550199,10 +511715,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [266155] = 3, + [220479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7356), 11, + ACTIONS(6723), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -550214,7 +511730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(7354), 25, + ACTIONS(6721), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -550240,10 +511756,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [266199] = 3, + [220523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7387), 11, + ACTIONS(6763), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -550255,7 +511771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(7385), 25, + ACTIONS(6761), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -550281,10 +511797,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [266243] = 3, + [220567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7391), 11, + ACTIONS(6777), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -550296,7 +511812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(7389), 25, + ACTIONS(6775), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -550322,10 +511838,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [266287] = 3, + [220611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7221), 11, + ACTIONS(6749), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -550337,7 +511853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(7219), 25, + ACTIONS(6747), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -550363,10 +511879,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [266331] = 3, + [220655] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7399), 11, + ACTIONS(6781), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -550378,7 +511894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(7397), 25, + ACTIONS(6779), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -550404,10 +511920,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [266375] = 3, + [220699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4837), 11, + ACTIONS(6802), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -550419,7 +511935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4829), 25, + ACTIONS(6800), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -550445,24 +511961,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [266419] = 3, + [220743] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7163), 11, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(8719), 1, + anon_sym_LPAREN2, + ACTIONS(8727), 1, + anon_sym_LBRACK, + ACTIONS(9107), 1, + anon_sym_STAR, + ACTIONS(9109), 1, + anon_sym_AMP_AMP, + ACTIONS(9111), 1, + anon_sym_AMP, + STATE(4187), 1, + sym_parameter_list, + STATE(6893), 1, + sym_function_declarator_seq, + STATE(7292), 1, + sym_abstract_declarator, + STATE(5624), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6892), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6535), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(7873), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [220809] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6584), 10, + anon_sym_DOT_DOT_DOT, 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(7161), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6582), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -550471,7 +512036,9 @@ 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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -550485,48 +512052,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [266463] = 14, + anon_sym_DOT_DOT_DOT_GT, + [220852] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(8719), 1, anon_sym_LPAREN2, - ACTIONS(9105), 1, + ACTIONS(8727), 1, anon_sym_LBRACK, - ACTIONS(9107), 1, - anon_sym_const, - ACTIONS(9252), 1, + ACTIONS(9161), 1, anon_sym_STAR, - ACTIONS(9254), 1, + ACTIONS(9163), 1, anon_sym_AMP_AMP, - ACTIONS(9256), 1, + ACTIONS(9165), 1, anon_sym_AMP, - STATE(4347), 1, + STATE(4300), 1, sym_parameter_list, - STATE(7450), 1, + STATE(6893), 1, sym_function_declarator_seq, - STATE(7675), 1, + STATE(7330), 1, sym_abstract_declarator, - STATE(6150), 2, + STATE(5663), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(7464), 5, + STATE(6892), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6258), 9, - anon_sym_COMMA, + ACTIONS(6535), 8, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_COLON, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - sym_semgrep_metavar, - ACTIONS(9103), 11, + ACTIONS(7873), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -550538,25 +512104,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [266529] = 3, + [220917] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7315), 11, + ACTIONS(9678), 1, + anon_sym_LPAREN2, + ACTIONS(2191), 10, + anon_sym_DOT_DOT_DOT, 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(7313), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(2193), 24, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -550564,7 +512128,9 @@ 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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -550578,25 +512144,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [266573] = 3, + anon_sym_DOT_DOT_DOT_GT, + [220962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7213), 11, + ACTIONS(6802), 10, + anon_sym_DOT_DOT_DOT, 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(7211), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6800), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -550605,7 +512168,9 @@ 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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -550619,25 +512184,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [266617] = 3, + anon_sym_DOT_DOT_DOT_GT, + [221005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 11, + ACTIONS(6806), 10, + anon_sym_DOT_DOT_DOT, 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(7297), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6804), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -550646,7 +512208,9 @@ 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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -550660,11 +512224,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [266661] = 3, + anon_sym_DOT_DOT_DOT_GT, + [221048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7135), 10, + ACTIONS(6603), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -550675,7 +512239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7133), 26, + ACTIONS(6601), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -550687,7 +512251,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -550702,47 +512265,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [266705] = 14, + [221091] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(9105), 1, + ACTIONS(6725), 1, + sym_auto, + ACTIONS(6727), 1, + anon_sym_decltype, + ACTIONS(8765), 1, anon_sym_LBRACK, - ACTIONS(9107), 1, + ACTIONS(9680), 1, + anon_sym_STAR, + ACTIONS(9682), 1, + anon_sym_AMP_AMP, + ACTIONS(9684), 1, + anon_sym_AMP, + ACTIONS(9688), 1, anon_sym_const, - ACTIONS(9252), 1, + STATE(2694), 1, + sym_decltype_auto, + STATE(4458), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7570), 1, + sym_abstract_declarator, + STATE(5819), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8733), 5, + anon_sym_RPAREN, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9686), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [221162] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(8719), 1, + anon_sym_LPAREN2, + ACTIONS(8727), 1, + anon_sym_LBRACK, + ACTIONS(9161), 1, anon_sym_STAR, - ACTIONS(9254), 1, + ACTIONS(9163), 1, anon_sym_AMP_AMP, - ACTIONS(9256), 1, + ACTIONS(9165), 1, anon_sym_AMP, - STATE(4347), 1, + STATE(4300), 1, sym_parameter_list, - STATE(7450), 1, + STATE(6893), 1, sym_function_declarator_seq, - STATE(7642), 1, + STATE(7339), 1, sym_abstract_declarator, - STATE(6350), 2, + STATE(5379), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(7464), 5, + STATE(6892), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(9248), 9, - anon_sym_COMMA, + ACTIONS(7388), 8, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_COLON, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - sym_semgrep_metavar, - ACTIONS(9103), 11, + ACTIONS(7873), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -550754,168 +512370,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [266771] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7305), 17, - anon_sym_DOT_DOT_DOT, - 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(7307), 19, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [266815] = 3, + [221227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7348), 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(7346), 25, + ACTIONS(3702), 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_COLON_COLON, + 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_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_EQ, anon_sym_GT2, - [266859] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7903), 1, - anon_sym_AMP_AMP, - ACTIONS(7905), 1, + ACTIONS(3700), 22, anon_sym_AMP, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(7922), 1, - anon_sym_noexcept, - ACTIONS(7924), 1, - anon_sym_throw, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8100), 1, - anon_sym_DASH_GT, - ACTIONS(8104), 1, - anon_sym_requires, - ACTIONS(9902), 1, - anon_sym_LBRACK, - STATE(6291), 1, - sym_ref_qualifier, - STATE(6715), 1, - sym_function_exception_specification, - STATE(7243), 1, - sym_function_attributes_end, - STATE(7346), 1, - sym_trailing_return_type, - STATE(7422), 1, - sym_requires_clause, - STATE(7479), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8102), 2, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, - sym_noexcept, - sym_throw_specifier, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(9897), 8, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [221270] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(5418), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6056), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(9690), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6054), 28, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [266945] = 3, + anon_sym_requires, + [221317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7319), 11, + ACTIONS(6759), 10, + anon_sym_DOT_DOT_DOT, 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(7317), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6757), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -550924,7 +512475,9 @@ 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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -550938,13 +512491,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [266989] = 4, + anon_sym_DOT_DOT_DOT_GT, + [221360] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6446), 1, - sym_literal_suffix, - ACTIONS(4837), 16, + ACTIONS(6767), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -550954,14 +512505,8 @@ static const uint16_t ts_small_parse_table[] = { 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(4829), 19, + ACTIONS(6765), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -550976,74 +512521,32 @@ 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_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [267035] = 7, + [221403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9749), 1, - sym_identifier, - ACTIONS(9753), 1, - sym_primitive_type, - STATE(5694), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10050), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6022), 10, - 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, - ACTIONS(6026), 19, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [267087] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7407), 11, + ACTIONS(6771), 10, + anon_sym_DOT_DOT_DOT, 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(7405), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6769), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -551052,7 +512555,9 @@ 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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -551066,129 +512571,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [267131] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5550), 1, - anon_sym_LPAREN2, - ACTIONS(9105), 1, - anon_sym_LBRACK, - ACTIONS(9107), 1, - anon_sym_const, - ACTIONS(9252), 1, - anon_sym_STAR, - ACTIONS(9254), 1, - anon_sym_AMP_AMP, - ACTIONS(9256), 1, - anon_sym_AMP, - STATE(4347), 1, - sym_parameter_list, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(7610), 1, - sym_abstract_declarator, - STATE(6350), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(7464), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7534), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - ACTIONS(9103), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [267197] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5550), 1, - anon_sym_LPAREN2, - ACTIONS(9105), 1, - anon_sym_LBRACK, - ACTIONS(9107), 1, - anon_sym_const, - ACTIONS(9252), 1, - anon_sym_STAR, - ACTIONS(9254), 1, - anon_sym_AMP_AMP, - ACTIONS(9256), 1, - anon_sym_AMP, - STATE(4347), 1, - sym_parameter_list, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(7611), 1, - sym_abstract_declarator, - STATE(6350), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(7464), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9250), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - ACTIONS(9103), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [267263] = 3, + anon_sym_DOT_DOT_DOT_GT, + [221446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7159), 11, + ACTIONS(6691), 10, + anon_sym_DOT_DOT_DOT, 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(7157), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6689), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -551197,7 +512595,9 @@ 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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -551211,25 +512611,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [267307] = 3, + anon_sym_DOT_DOT_DOT_GT, + [221489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7203), 11, + ACTIONS(6656), 10, + anon_sym_DOT_DOT_DOT, 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(7201), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6654), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -551238,7 +512635,9 @@ 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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -551252,25 +512651,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT_GT, + [221532] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(5418), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6066), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(9690), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6064), 28, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [267351] = 3, + anon_sym_try, + anon_sym_requires, + [221579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7229), 11, + ACTIONS(5579), 10, + anon_sym_DOT_DOT_DOT, 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(7227), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5581), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -551279,7 +512717,9 @@ 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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -551293,25 +512733,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [267395] = 3, + anon_sym_DOT_DOT_DOT_GT, + [221622] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 3, + ACTIONS(5425), 3, anon_sym_AMP, - anon_sym_LBRACK, anon_sym_const, - ACTIONS(7069), 33, - anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + ACTIONS(5427), 32, 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___extension__, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON_COLON, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -551323,36 +512765,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, + anon_sym_or, + anon_sym_and, + 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, - sym_semgrep_metavar, - [267439] = 3, + [221665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2183), 11, + ACTIONS(6711), 10, + anon_sym_DOT_DOT_DOT, 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(2185), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6709), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -551361,7 +512797,9 @@ 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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -551375,25 +512813,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [267483] = 3, + anon_sym_DOT_DOT_DOT_GT, + [221708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7061), 11, + ACTIONS(4773), 10, + anon_sym_DOT_DOT_DOT, 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(7065), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4765), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -551402,7 +512837,9 @@ 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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -551416,87 +512853,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [267527] = 24, + anon_sym_DOT_DOT_DOT_GT, + [221751] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7903), 1, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(8719), 1, + anon_sym_LPAREN2, + ACTIONS(8727), 1, + anon_sym_LBRACK, + ACTIONS(9161), 1, + anon_sym_STAR, + ACTIONS(9163), 1, anon_sym_AMP_AMP, - ACTIONS(7905), 1, + ACTIONS(9165), 1, anon_sym_AMP, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(7922), 1, - anon_sym_noexcept, - ACTIONS(7924), 1, - anon_sym_throw, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8100), 1, - anon_sym_DASH_GT, - ACTIONS(9902), 1, - anon_sym_LBRACK, - ACTIONS(10055), 1, - anon_sym_requires, - STATE(6305), 1, - sym_ref_qualifier, - STATE(6719), 1, - sym_function_exception_specification, - STATE(7250), 1, - sym_function_attributes_end, - STATE(7391), 1, - sym_trailing_return_type, - STATE(7422), 1, - sym_requires_clause, - STATE(7479), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10052), 2, - anon_sym_final, - anon_sym_override, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, - sym_noexcept, - sym_throw_specifier, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(9897), 8, - anon_sym_COMMA, + STATE(4300), 1, + sym_parameter_list, + STATE(6893), 1, + sym_function_declarator_seq, + STATE(7332), 1, + sym_abstract_declarator, + STATE(5379), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6892), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9173), 8, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, + anon_sym_final, + anon_sym_override, anon_sym_try, - [267613] = 3, + anon_sym_requires, + ACTIONS(7873), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [221816] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7419), 11, + ACTIONS(6703), 10, + anon_sym_DOT_DOT_DOT, 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(7417), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6701), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -551505,7 +512928,9 @@ 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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -551519,41 +512944,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [267657] = 5, + anon_sym_DOT_DOT_DOT_GT, + [221859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10058), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(10060), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6372), 11, + ACTIONS(6723), 10, + anon_sym_DOT_DOT_DOT, 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(6374), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6721), 25, anon_sym_LPAREN2, anon_sym_STAR, 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_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, @@ -551562,25 +512984,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [267705] = 3, + anon_sym_DOT_DOT_DOT_GT, + [221902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7367), 11, + ACTIONS(6763), 10, + anon_sym_DOT_DOT_DOT, 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(7365), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6761), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -551589,7 +513008,9 @@ 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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -551603,25 +513024,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [267749] = 3, + anon_sym_DOT_DOT_DOT_GT, + [221945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7371), 11, + ACTIONS(6646), 10, + anon_sym_DOT_DOT_DOT, 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(7369), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6644), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -551630,7 +513048,9 @@ 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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -551644,25 +513064,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [267793] = 3, + anon_sym_DOT_DOT_DOT_GT, + [221988] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(9692), 1, + anon_sym_LBRACE, + ACTIONS(9694), 1, + anon_sym_COLON, + STATE(5013), 1, + sym_attribute_specifier, + STATE(5776), 1, + sym_enum_base_clause, + STATE(5802), 1, + sym_enumerator_list, + ACTIONS(6514), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6516), 26, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [222043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7383), 11, + ACTIONS(5603), 10, + anon_sym_DOT_DOT_DOT, 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(7381), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5605), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -551671,7 +513134,9 @@ 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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -551685,40 +513150,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [267837] = 4, + anon_sym_DOT_DOT_DOT_GT, + [222086] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10060), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6414), 11, + ACTIONS(6592), 10, + anon_sym_DOT_DOT_DOT, 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(6416), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6590), 25, anon_sym_LPAREN2, anon_sym_STAR, 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, + anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, @@ -551727,25 +513190,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [267883] = 3, + anon_sym_DOT_DOT_DOT_GT, + [222129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7233), 11, + ACTIONS(6596), 10, + anon_sym_DOT_DOT_DOT, 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(7231), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6594), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -551754,7 +513214,9 @@ 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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -551768,25 +513230,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [267927] = 3, + anon_sym_DOT_DOT_DOT_GT, + [222172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7273), 11, + ACTIONS(2189), 10, + anon_sym_DOT_DOT_DOT, 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(7271), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(2187), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -551795,7 +513254,9 @@ 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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -551809,26 +513270,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [267971] = 3, + anon_sym_DOT_DOT_DOT_GT, + [222215] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7139), 3, - anon_sym_AMP, - anon_sym_LBRACK, + ACTIONS(8038), 1, anon_sym_const, - ACTIONS(7137), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8719), 1, anon_sym_LPAREN2, + ACTIONS(8727), 1, + anon_sym_LBRACK, + ACTIONS(8729), 1, + sym_auto, + ACTIONS(8731), 1, + anon_sym_decltype, + ACTIONS(9696), 1, + anon_sym_STAR, + ACTIONS(9698), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, + ACTIONS(9700), 1, + anon_sym_AMP, + STATE(4560), 1, + sym_parameter_list, + STATE(5004), 1, + sym_decltype_auto, + STATE(6893), 1, + sym_function_declarator_seq, + STATE(7527), 1, + sym_abstract_declarator, + STATE(5849), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8717), 5, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6892), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8030), 11, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -551839,121 +513325,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [222286] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8038), 1, + anon_sym_const, + ACTIONS(8719), 1, + anon_sym_LPAREN2, + ACTIONS(8727), 1, + anon_sym_LBRACK, + ACTIONS(8729), 1, + sym_auto, + ACTIONS(8731), 1, + anon_sym_decltype, + ACTIONS(9696), 1, + anon_sym_STAR, + ACTIONS(9698), 1, + anon_sym_AMP_AMP, + ACTIONS(9700), 1, + anon_sym_AMP, + STATE(4560), 1, + sym_parameter_list, + STATE(5004), 1, + sym_decltype_auto, + STATE(6893), 1, + sym_function_declarator_seq, + STATE(7533), 1, + sym_abstract_declarator, + STATE(5851), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8733), 5, + anon_sym_LBRACK_LBRACK, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - 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, - sym_semgrep_metavar, - [268015] = 3, + STATE(6892), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8030), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [222357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7338), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(5398), 3, 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(7336), 25, - anon_sym_DOT_DOT_DOT, + anon_sym_const, + anon_sym_COLON, + ACTIONS(5400), 32, 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_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [268059] = 3, + anon_sym_try, + anon_sym_requires, + [222400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(5402), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(2191), 25, + anon_sym_const, + anon_sym_COLON, + ACTIONS(5404), 32, + 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___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [268102] = 5, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [222443] = 3, ACTIONS(3), 1, sym_comment, - STATE(6213), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5957), 2, + ACTIONS(5429), 3, anon_sym_AMP, anon_sym_const, - ACTIONS(10062), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5959), 28, + anon_sym_COLON, + ACTIONS(5431), 32, 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___extension__, anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, @@ -551967,6 +513490,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_or, + anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, @@ -551974,72 +513499,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [268149] = 3, + [222486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6360), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(5421), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(6362), 25, + anon_sym_const, + anon_sym_COLON, + ACTIONS(5423), 32, + 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___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [268192] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [222529] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4384), 6, - anon_sym_DOT_DOT_DOT, + ACTIONS(5455), 1, anon_sym_LPAREN2, + ACTIONS(6725), 1, + sym_auto, + ACTIONS(6727), 1, + anon_sym_decltype, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(9680), 1, anon_sym_STAR, + ACTIONS(9682), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(4382), 29, + ACTIONS(9684), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + ACTIONS(9688), 1, anon_sym_const, + STATE(2694), 1, + sym_decltype_auto, + STATE(4458), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7538), 1, + sym_abstract_declarator, + STATE(5866), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8717), 5, + anon_sym_RPAREN, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9686), 11, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -552050,14 +513593,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_operator, - [268235] = 3, + [222600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6500), 10, + ACTIONS(6607), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -552068,7 +513607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(6502), 25, + ACTIONS(6605), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -552094,10 +513633,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [268278] = 3, + [222643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7399), 10, + ACTIONS(6611), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -552108,7 +513647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7397), 25, + ACTIONS(6609), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -552134,10 +513673,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [268321] = 3, + [222686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7217), 10, + ACTIONS(6615), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -552148,7 +513687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7215), 25, + ACTIONS(6613), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -552174,10 +513713,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [268364] = 3, + [222729] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(9692), 1, + anon_sym_LBRACE, + ACTIONS(9694), 1, + anon_sym_COLON, + STATE(5030), 1, + sym_attribute_specifier, + STATE(5777), 1, + sym_enum_base_clause, + STATE(5807), 1, + sym_enumerator_list, + ACTIONS(6520), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6522), 26, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [222784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7225), 10, + ACTIONS(6627), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -552188,7 +513773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7223), 25, + ACTIONS(6625), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -552214,10 +513799,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [268407] = 3, + [222827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7352), 10, + ACTIONS(6699), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -552228,7 +513813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7350), 25, + ACTIONS(6697), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -552254,151 +513839,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [268450] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8404), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(8402), 29, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_operator, - [268493] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7903), 1, - anon_sym_AMP_AMP, - ACTIONS(7905), 1, - anon_sym_AMP, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(7922), 1, - anon_sym_noexcept, - ACTIONS(7924), 1, - anon_sym_throw, - ACTIONS(7926), 1, - anon_sym_requires, - ACTIONS(8325), 1, - anon_sym_DASH_GT, - ACTIONS(9899), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9902), 1, - anon_sym_LBRACK, - STATE(6329), 1, - sym_ref_qualifier, - STATE(6738), 1, - sym_function_exception_specification, - STATE(6966), 1, - sym_trailing_return_type, - STATE(7114), 1, - sym_function_attributes_end, - STATE(7270), 1, - sym_requires_clause, - STATE(7298), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(6118), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(10064), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, - sym_noexcept, - sym_throw_specifier, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(9897), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [268578] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3658), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3656), 29, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_operator, - [268621] = 3, + [222870] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7311), 10, + ACTIONS(6638), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -552409,7 +513853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7309), 25, + ACTIONS(6636), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -552435,10 +513879,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [268664] = 3, + [222913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6349), 10, + ACTIONS(2191), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -552449,7 +513893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(6351), 25, + ACTIONS(2193), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -552475,10 +513919,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [268707] = 3, + [222956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6356), 10, + ACTIONS(5633), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -552489,7 +513933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(6358), 25, + ACTIONS(5635), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -552515,10 +513959,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [268750] = 3, + [222999] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7869), 1, + anon_sym_AMP_AMP, + ACTIONS(7871), 1, + anon_sym_AMP, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8040), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9702), 1, + anon_sym___attribute__, + ACTIONS(9705), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9711), 1, + anon_sym_requires, + STATE(5852), 1, + sym_ref_qualifier, + STATE(6256), 1, + sym_function_exception_specification, + STATE(6693), 1, + sym_function_attributes_end, + STATE(6734), 1, + sym_trailing_return_type, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9708), 2, + anon_sym_final, + anon_sym_override, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [223084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7419), 10, + ACTIONS(5599), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -552529,7 +514034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7417), 25, + ACTIONS(5601), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -552555,10 +514060,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [268793] = 3, + [223127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7356), 10, + ACTIONS(5595), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -552569,7 +514074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7354), 25, + ACTIONS(5597), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -552595,24 +514100,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [268836] = 3, + [223170] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6268), 3, + STATE(5418), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6130), 2, anon_sym_AMP, anon_sym_const, - anon_sym_COLON, - ACTIONS(6270), 32, + ACTIONS(9690), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6128), 28, 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___extension__, anon_sym___attribute__, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, @@ -552626,8 +514135,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_or, - anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, @@ -552635,10 +514142,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [268879] = 3, + [223217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 10, + ACTIONS(2355), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -552649,7 +514156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7325), 25, + ACTIONS(2353), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -552675,10 +514182,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [268922] = 3, + [223260] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7334), 10, + ACTIONS(9714), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9716), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6677), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -552689,12 +514202,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7332), 25, + ACTIONS(6679), 21, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -552704,8 +514215,6 @@ 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, @@ -552715,24 +514224,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [268965] = 3, + [223307] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5518), 3, + ACTIONS(7869), 1, + anon_sym_AMP_AMP, + ACTIONS(7871), 1, anon_sym_AMP, - anon_sym_const, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8040), 1, + anon_sym_DASH_GT, + ACTIONS(8042), 1, + anon_sym_requires, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9702), 1, + anon_sym___attribute__, + ACTIONS(9705), 1, + anon_sym_LBRACK_LBRACK, + STATE(5853), 1, + sym_ref_qualifier, + STATE(6260), 1, + sym_function_exception_specification, + STATE(6683), 1, + sym_function_attributes_end, + STATE(6760), 1, + sym_trailing_return_type, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - ACTIONS(5525), 32, + anon_sym_try, + [223392] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(5665), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6185), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(9718), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6183), 28, 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___extension__, anon_sym___attribute__, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, @@ -552746,8 +514320,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_or, - anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, @@ -552755,61 +514327,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [269008] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7342), 10, - anon_sym_DOT_DOT_DOT, - 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(7340), 25, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [269051] = 4, + [223439] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5460), 3, + STATE(5671), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6158), 2, anon_sym_AMP, anon_sym_const, - anon_sym_COLON, - ACTIONS(5467), 31, + ACTIONS(9720), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6156), 28, 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___extension__, @@ -552827,8 +514362,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_or, - anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, @@ -552836,10 +514369,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [269096] = 3, + [223486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6504), 10, + ACTIONS(6735), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -552850,7 +514383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(6506), 25, + ACTIONS(6733), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -552876,10 +514409,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [269139] = 3, + [223529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7061), 10, + ACTIONS(6741), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -552890,7 +514423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7065), 25, + ACTIONS(6739), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -552916,10 +514449,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [269182] = 3, + [223572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7273), 10, + ACTIONS(4306), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -552930,7 +514463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7271), 25, + ACTIONS(4302), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -552956,12 +514489,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [269225] = 4, + [223615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10067), 1, - anon_sym_LPAREN2, - ACTIONS(2183), 10, + ACTIONS(6675), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -552972,7 +514503,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(2185), 24, + ACTIONS(6673), 25, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -552997,10 +514529,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [269270] = 3, + [223658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6508), 10, + ACTIONS(5625), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -553011,7 +514543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(6510), 25, + ACTIONS(5627), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -553037,413 +514569,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [269313] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(8544), 1, - anon_sym_LBRACE, - ACTIONS(10069), 1, - anon_sym_COLON, - STATE(4616), 1, - sym_enum_base_clause, - STATE(4661), 1, - sym_enumerator_list, - STATE(4759), 1, - sym_attribute_specifier, - ACTIONS(6233), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6235), 26, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [269368] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5477), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(5479), 32, - 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___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [269411] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5481), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(5483), 32, - 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___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [269454] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5500), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(5502), 32, - 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___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [269497] = 3, + [223701] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(5498), 32, - 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___extension__, - anon_sym___attribute__, + ACTIONS(4784), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [269540] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7367), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(9722), 1, anon_sym_LT, - anon_sym_DOT, - ACTIONS(7365), 25, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [269583] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8309), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(8307), 29, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_operator, - [269626] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5550), 1, - anon_sym_LPAREN2, - ACTIONS(5552), 1, - anon_sym_STAR, - ACTIONS(5554), 1, - anon_sym_AMP_AMP, - ACTIONS(5556), 1, - anon_sym_AMP, - ACTIONS(6406), 1, - sym_auto, - ACTIONS(6408), 1, - anon_sym_decltype, - ACTIONS(9105), 1, - anon_sym_LBRACK, - ACTIONS(9107), 1, - anon_sym_const, - STATE(2612), 1, - sym_decltype_auto, - STATE(4268), 1, - sym_parameter_list, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(7921), 1, - sym_abstract_declarator, - STATE(6326), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(8932), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - sym_semgrep_metavar, - STATE(7464), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9103), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [269697] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5507), 3, + STATE(2206), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2593), 1, + sym_template_argument_list, + ACTIONS(4763), 3, anon_sym_AMP, anon_sym_const, anon_sym_COLON, - ACTIONS(5509), 32, - 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___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [269740] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(6206), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10071), 4, + ACTIONS(5411), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5697), 11, - anon_sym_DOT_DOT_DOT, + ACTIONS(4771), 24, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_GT2, - ACTIONS(5699), 19, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -553454,15 +514609,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - sym_identifier, sym_auto, anon_sym_decltype, - sym_semgrep_metavar, - [269787] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [223754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6496), 10, + ACTIONS(6623), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -553473,7 +514628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(6498), 25, + ACTIONS(6621), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -553499,10 +514654,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [269830] = 3, + [223797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7411), 10, + ACTIONS(5621), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -553513,7 +514668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7409), 25, + ACTIONS(5623), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -553539,10 +514694,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [269873] = 3, + [223840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7371), 10, + ACTIONS(2359), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -553553,7 +514708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7369), 25, + ACTIONS(2357), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -553579,10 +514734,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [269916] = 3, + [223883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7387), 10, + ACTIONS(6749), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -553593,7 +514748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7385), 25, + ACTIONS(6747), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -553619,14 +514774,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [269959] = 3, + [223926] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5511), 3, + ACTIONS(3700), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, + ACTIONS(3702), 32, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, - ACTIONS(5513), 32, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + sym_semgrep_metavar, + [223969] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5938), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(4789), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -553636,7 +514833,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, @@ -553659,10 +514855,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [270002] = 3, + [224014] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7391), 10, + ACTIONS(5702), 1, + anon_sym_COLON, + ACTIONS(9724), 1, + anon_sym___attribute__, + ACTIONS(9726), 1, + anon_sym_LBRACE, + STATE(5874), 1, + sym_field_declaration_list, + STATE(6080), 1, + sym_attribute_specifier, + STATE(7889), 1, + sym_virtual_specifier, + STATE(8896), 1, + sym_base_class_clause, + ACTIONS(5696), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5694), 24, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [224073] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9728), 1, + anon_sym_SEMI, + ACTIONS(2189), 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(2187), 25, + 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_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_DOT_STAR, + anon_sym_DASH_GT, + [224118] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6660), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -553673,7 +514958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7389), 25, + ACTIONS(6658), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -553699,24 +514984,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [270045] = 5, + [224161] = 4, ACTIONS(3), 1, sym_comment, - STATE(6266), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6064), 2, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5374), 3, anon_sym_AMP, anon_sym_const, - ACTIONS(10074), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6062), 28, + anon_sym_COLON, + ACTIONS(5381), 31, 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___extension__, @@ -553734,6 +515016,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_or, + anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, @@ -553741,64 +515025,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [270092] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4380), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(4378), 29, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_operator, - [270135] = 3, + [224206] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5456), 3, + STATE(5705), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6090), 2, anon_sym_AMP, anon_sym_const, - anon_sym_COLON, - ACTIONS(5458), 32, + ACTIONS(9730), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6088), 28, 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___extension__, anon_sym___attribute__, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, @@ -553812,8 +515060,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_or, - anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, @@ -553821,10 +515067,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [270178] = 3, + [224253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7348), 10, + ACTIONS(5591), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -553835,7 +515081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7346), 25, + ACTIONS(5593), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -553861,50 +515107,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [270221] = 3, + [224296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6410), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(5936), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(6412), 25, + anon_sym_const, + anon_sym_COLON, + ACTIONS(5934), 32, + 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___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [270264] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [224339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7221), 10, + ACTIONS(6619), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -553915,7 +515161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7219), 25, + ACTIONS(6617), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -553941,10 +515187,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [270307] = 3, + [224382] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(5438), 32, + 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___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [224425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7287), 10, + ACTIONS(6777), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -553955,7 +515241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7285), 25, + ACTIONS(6775), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -553981,10 +515267,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [270350] = 3, + [224468] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7338), 10, + ACTIONS(6580), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -553995,7 +515281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7336), 25, + ACTIONS(6578), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -554021,10 +515307,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [270393] = 3, + [224511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7233), 10, + ACTIONS(6781), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -554035,7 +515321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7231), 25, + ACTIONS(6779), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -554061,33 +515347,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [270436] = 9, + [224554] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(8544), 1, - anon_sym_LBRACE, - ACTIONS(10076), 1, - anon_sym_COLON, - STATE(4600), 1, - sym_enum_base_clause, - STATE(4688), 1, - sym_enumerator_list, - STATE(4773), 1, - sym_attribute_specifier, - ACTIONS(6225), 3, + STATE(5418), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6147), 2, anon_sym_AMP, - anon_sym_LBRACK, anon_sym_const, - ACTIONS(6227), 26, + ACTIONS(9690), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6145), 28, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -554099,42 +515382,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [270491] = 9, + [224601] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(8544), 1, - anon_sym_LBRACE, - ACTIONS(10076), 1, - anon_sym_COLON, - STATE(4616), 1, - sym_enum_base_clause, - STATE(4661), 1, - sym_enumerator_list, - STATE(4759), 1, - sym_attribute_specifier, - ACTIONS(6233), 3, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(7517), 1, + anon_sym_LT, + STATE(1833), 1, + sym_template_argument_list, + STATE(2744), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6090), 2, anon_sym_AMP, - anon_sym_LBRACK, anon_sym_const, - ACTIONS(6235), 26, + ACTIONS(5468), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6088), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -554145,18 +515428,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [270546] = 3, + [224654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6345), 10, + ACTIONS(6787), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -554167,7 +515448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(6347), 25, + ACTIONS(6785), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -554193,10 +515474,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [270589] = 3, + [224697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7415), 10, + ACTIONS(5629), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -554207,7 +515488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7413), 25, + ACTIONS(5631), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -554233,32 +515514,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [270632] = 3, + [224740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7756), 6, - anon_sym_DOT_DOT_DOT, + ACTIONS(5417), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(5419), 32, + 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, - ACTIONS(7754), 29, - anon_sym_AMP, anon_sym___extension__, - anon_sym_extern, anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -554269,14 +515545,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_operator, - [270675] = 3, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [224783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7403), 10, + ACTIONS(6791), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -554287,7 +515568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7401), 25, + ACTIONS(6789), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -554313,13 +515594,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [270718] = 4, + [224826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10078), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6414), 10, + ACTIONS(6634), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -554330,11 +515608,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(6416), 23, + ACTIONS(6632), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -554345,6 +515624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, + anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, @@ -554354,10 +515634,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [270763] = 3, + [224869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6368), 10, + ACTIONS(5607), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -554368,7 +515648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(6370), 25, + ACTIONS(5609), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -554394,53 +515674,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [270806] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(10046), 1, - anon_sym_LT, - STATE(2518), 1, - sym_template_argument_list, - ACTIONS(5460), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(5467), 29, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [270855] = 3, + [224912] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7163), 10, + ACTIONS(5637), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -554451,7 +515688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7161), 25, + ACTIONS(5639), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -554477,10 +515714,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [270898] = 3, + [224955] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6468), 10, + ACTIONS(9716), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6753), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -554491,12 +515731,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(6470), 25, + ACTIONS(6755), 23, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -554507,7 +515746,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, - anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, @@ -554517,10 +515755,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [270941] = 3, + [225000] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5394), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(5396), 32, + 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___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [225043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2183), 10, + ACTIONS(5680), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -554531,7 +515809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(2185), 25, + ACTIONS(3211), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -554557,10 +515835,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [270984] = 3, + [225086] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6418), 10, + ACTIONS(6707), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -554571,7 +515849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(6420), 25, + ACTIONS(6705), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -554597,16 +515875,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [271027] = 5, + [225129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10078), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(10080), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6372), 10, + ACTIONS(5611), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -554617,10 +515889,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(6374), 21, + ACTIONS(5613), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -554630,6 +515904,8 @@ 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, @@ -554639,10 +515915,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [271074] = 3, + [225172] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_const, + ACTIONS(8719), 1, + anon_sym_LPAREN2, + ACTIONS(8727), 1, + anon_sym_LBRACK, + ACTIONS(9161), 1, + anon_sym_STAR, + ACTIONS(9163), 1, + anon_sym_AMP_AMP, + ACTIONS(9165), 1, + anon_sym_AMP, + STATE(4300), 1, + sym_parameter_list, + STATE(6893), 1, + sym_function_declarator_seq, + STATE(7340), 1, + sym_abstract_declarator, + STATE(5379), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(6892), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9177), 8, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7873), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [225237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4261), 10, + ACTIONS(5641), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -554653,7 +515980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(4259), 25, + ACTIONS(5643), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -554679,10 +516006,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [271117] = 3, + [225280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7407), 10, + ACTIONS(5617), 10, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_PLUS, @@ -554693,7 +516020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7405), 25, + ACTIONS(5619), 25, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -554719,56 +516046,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT_GT, - [271160] = 3, + [225323] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6590), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(7869), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(6592), 29, + ACTIONS(7871), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8042), 1, + anon_sym_requires, + ACTIONS(8207), 1, anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_operator, - [271203] = 4, + ACTIONS(8209), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9705), 1, + anon_sym_LBRACK_LBRACK, + STATE(5916), 1, + sym_ref_qualifier, + STATE(6303), 1, + sym_function_exception_specification, + STATE(6760), 1, + sym_trailing_return_type, + STATE(6852), 1, + sym_requires_clause, + STATE(6895), 1, + sym_function_attributes_end, + STATE(6904), 1, + sym_function_postfix, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [225407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6197), 3, + ACTIONS(5938), 2, anon_sym_AMP, anon_sym_const, - anon_sym_COLON, - ACTIONS(4853), 31, + ACTIONS(4789), 32, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -554791,6 +516135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, anon_sym_or, anon_sym_and, sym_auto, @@ -554800,74 +516145,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [271248] = 3, + [225449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6472), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(5374), 2, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(6474), 25, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [271291] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7983), 1, - sym_identifier, - ACTIONS(7987), 1, - sym_primitive_type, - STATE(5694), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10050), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6022), 9, + anon_sym_const, + ACTIONS(5381), 32, 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___extension__, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(6026), 19, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_const, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -554878,102 +516174,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - sym_semgrep_metavar, - [271342] = 24, + [225491] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7903), 1, + ACTIONS(7869), 1, anon_sym_AMP_AMP, - ACTIONS(7905), 1, + ACTIONS(7871), 1, anon_sym_AMP, - ACTIONS(7922), 1, + ACTIONS(7886), 1, anon_sym_noexcept, - ACTIONS(7924), 1, + ACTIONS(7888), 1, anon_sym_throw, - ACTIONS(7926), 1, - anon_sym_requires, - ACTIONS(8334), 1, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8209), 1, anon_sym_DASH_GT, - ACTIONS(9899), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9902), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10082), 1, - anon_sym___attribute__, - STATE(6357), 1, + ACTIONS(9705), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9711), 1, + anon_sym_requires, + STATE(5927), 1, sym_ref_qualifier, - STATE(6733), 1, + STATE(6288), 1, sym_function_exception_specification, - STATE(6966), 1, + STATE(6734), 1, sym_trailing_return_type, - STATE(7213), 1, - sym_function_attributes_end, - STATE(7270), 1, + STATE(6852), 1, sym_requires_clause, - STATE(7298), 1, + STATE(6865), 1, + sym_function_attributes_end, + STATE(6904), 1, sym_function_postfix, - STATE(8073), 1, + STATE(7773), 1, sym_gnu_asm_expression, - ACTIONS(6118), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7918), 2, + ACTIONS(7879), 2, anon_sym_asm, anon_sym___asm__, - STATE(6828), 2, + ACTIONS(9708), 2, + anon_sym_final, + anon_sym_override, + STATE(6438), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, + STATE(6619), 2, sym_noexcept, sym_throw_specifier, - STATE(7215), 2, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(9897), 7, - anon_sym_COMMA, + ACTIONS(9640), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [271427] = 9, + [225575] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(8544), 1, - anon_sym_LBRACE, - ACTIONS(10069), 1, - anon_sym_COLON, - STATE(4600), 1, - sym_enum_base_clause, - STATE(4688), 1, - sym_enumerator_list, - STATE(4773), 1, - sym_attribute_specifier, - ACTIONS(6225), 3, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(9732), 1, + anon_sym_LT, + STATE(2925), 1, + sym_template_argument_list, + ACTIONS(5938), 3, anon_sym_AMP, - anon_sym_LBRACK, anon_sym_const, - ACTIONS(6227), 26, + anon_sym_COLON, + ACTIONS(4789), 28, + 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, - anon_sym_SEMI, anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -554984,180 +516278,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_or, + anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [271482] = 3, + [225623] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6482), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(9732), 1, anon_sym_LT, - anon_sym_DOT, - ACTIONS(6484), 25, + STATE(2925), 1, + sym_template_argument_list, + ACTIONS(5374), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(5381), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [271525] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7903), 1, - anon_sym_AMP_AMP, - ACTIONS(7905), 1, - anon_sym_AMP, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(7922), 1, - anon_sym_noexcept, - ACTIONS(7924), 1, - anon_sym_throw, - ACTIONS(8325), 1, - anon_sym_DASH_GT, - ACTIONS(9899), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9902), 1, - anon_sym_LBRACK, - ACTIONS(9995), 1, - anon_sym_requires, - STATE(6356), 1, - sym_ref_qualifier, - STATE(6747), 1, - sym_function_exception_specification, - STATE(7031), 1, - sym_trailing_return_type, - STATE(7130), 1, - sym_function_attributes_end, - STATE(7270), 1, - sym_requires_clause, - STATE(7298), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(9992), 2, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - ACTIONS(10064), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, - sym_noexcept, - sym_throw_specifier, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(9897), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [271610] = 3, + anon_sym_GT2, + anon_sym_requires, + [225671] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7159), 10, + ACTIONS(121), 1, + sym_auto, + ACTIONS(123), 1, + anon_sym_decltype, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2119), 1, + anon_sym_enum, + ACTIONS(2121), 1, + anon_sym_class, + ACTIONS(2123), 1, + anon_sym_struct, + ACTIONS(2125), 1, + anon_sym_union, + ACTIONS(2127), 1, + anon_sym_typename, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(3267), 1, + sym_primitive_type, + ACTIONS(9734), 1, + sym_identifier, + ACTIONS(9736), 1, anon_sym_DOT_DOT_DOT, - 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(7157), 25, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [271653] = 3, + ACTIONS(9740), 1, + anon_sym_EQ, + STATE(3385), 1, + sym_type_specifier, + STATE(3570), 1, + sym_decltype_auto, + STATE(3609), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4526), 1, + sym_qualified_type_identifier, + STATE(7569), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + ACTIONS(9738), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(3324), 2, + sym_decltype, + sym_template_type, + ACTIONS(57), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3531), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [225755] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 6, - anon_sym_DOT_DOT_DOT, + ACTIONS(9724), 1, + anon_sym___attribute__, + ACTIONS(9742), 1, + anon_sym_LBRACE, + ACTIONS(9744), 1, + anon_sym_COLON, + STATE(5867), 1, + sym_enum_base_clause, + STATE(5890), 1, + sym_enumerator_list, + STATE(6176), 1, + sym_attribute_specifier, + ACTIONS(6520), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6522), 26, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(4520), 29, - anon_sym_AMP, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -555168,24 +516426,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_operator, - [271696] = 5, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [225809] = 5, ACTIONS(3), 1, sym_comment, - STATE(6266), 1, + STATE(5705), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6034), 2, + ACTIONS(4763), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(10074), 4, + ACTIONS(9730), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6032), 28, + ACTIONS(4771), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -555193,7 +516454,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, @@ -555214,71 +516474,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [271743] = 3, + [225855] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7203), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(7869), 1, + anon_sym_AMP_AMP, + ACTIONS(7871), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(7201), 25, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8042), 1, + anon_sym_requires, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8224), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9705), 1, + anon_sym_LBRACK_LBRACK, + STATE(5902), 1, + sym_ref_qualifier, + STATE(6271), 1, + sym_function_exception_specification, + STATE(6716), 1, + sym_function_attributes_end, + STATE(6760), 1, + sym_trailing_return_type, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9746), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 6, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [225939] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7869), 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_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_DOT_STAR, + ACTIONS(7871), 1, + anon_sym_AMP, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8224), 1, anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [271786] = 5, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9705), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9711), 1, + anon_sym_requires, + STATE(5897), 1, + sym_ref_qualifier, + STATE(6282), 1, + sym_function_exception_specification, + STATE(6727), 1, + sym_function_attributes_end, + STATE(6734), 1, + sym_trailing_return_type, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(9708), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9746), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [226023] = 6, ACTIONS(3), 1, sym_comment, - STATE(6254), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6007), 2, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(9722), 1, + anon_sym_LT, + STATE(2593), 1, + sym_template_argument_list, + ACTIONS(5938), 3, anon_sym_AMP, anon_sym_const, - ACTIONS(10085), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6005), 28, + anon_sym_COLON, + ACTIONS(4789), 28, 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___extension__, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -555289,38 +516629,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_or, + anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [271833] = 5, + [226071] = 24, ACTIONS(3), 1, sym_comment, - STATE(6256), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6050), 2, + ACTIONS(7869), 1, + anon_sym_AMP_AMP, + ACTIONS(7871), 1, + anon_sym_AMP, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8211), 1, + anon_sym_DASH_GT, + ACTIONS(8213), 1, + anon_sym_requires, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9749), 1, + anon_sym_LBRACK_LBRACK, + STATE(5881), 1, + sym_ref_qualifier, + STATE(6286), 1, + sym_function_exception_specification, + STATE(6717), 1, + sym_trailing_return_type, + STATE(6852), 1, + sym_requires_clause, + STATE(6875), 1, + sym_function_attributes_end, + STATE(6904), 1, + sym_function_postfix, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [226155] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(9722), 1, + anon_sym_LT, + STATE(2593), 1, + sym_template_argument_list, + ACTIONS(5374), 3, anon_sym_AMP, anon_sym_const, - ACTIONS(10087), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6048), 28, + anon_sym_COLON, + ACTIONS(5381), 28, 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___extension__, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -555331,119 +516731,339 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_or, + anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [271880] = 4, + [226203] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(10089), 1, + ACTIONS(7869), 1, + anon_sym_AMP_AMP, + ACTIONS(7871), 1, + anon_sym_AMP, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8198), 1, + anon_sym_DASH_GT, + ACTIONS(8213), 1, + anon_sym_requires, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9749), 1, + anon_sym_LBRACK_LBRACK, + STATE(5922), 1, + sym_ref_qualifier, + STATE(6276), 1, + sym_function_exception_specification, + STATE(6689), 1, + sym_function_attributes_end, + STATE(6717), 1, + sym_trailing_return_type, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9746), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_SEMI, - ACTIONS(2193), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [226287] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7869), 1, + anon_sym_AMP_AMP, + ACTIONS(7871), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(2191), 25, - anon_sym_DOT_DOT_DOT, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8211), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9752), 1, + anon_sym_requires, + STATE(5883), 1, + sym_ref_qualifier, + STATE(6273), 1, + sym_function_exception_specification, + STATE(6769), 1, + sym_trailing_return_type, + STATE(6852), 1, + sym_requires_clause, + STATE(6888), 1, + sym_function_attributes_end, + STATE(6904), 1, + sym_function_postfix, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9708), 2, + anon_sym_final, + anon_sym_override, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [226371] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5455), 1, anon_sym_LPAREN2, + ACTIONS(6725), 1, + sym_auto, + ACTIONS(6727), 1, + anon_sym_decltype, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(9688), 1, + anon_sym_const, + ACTIONS(9755), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(9757), 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(9759), 1, + anon_sym_AMP, + STATE(2694), 1, + sym_decltype_auto, + STATE(4564), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7593), 1, + sym_abstract_declarator, + STATE(5886), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8717), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9686), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [226441] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(6725), 1, + sym_auto, + ACTIONS(6727), 1, + anon_sym_decltype, + ACTIONS(8765), 1, 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_DOT_STAR, - anon_sym_DASH_GT, - [271925] = 3, + ACTIONS(9688), 1, + anon_sym_const, + ACTIONS(9755), 1, + anon_sym_STAR, + ACTIONS(9757), 1, + anon_sym_AMP_AMP, + ACTIONS(9759), 1, + anon_sym_AMP, + STATE(2694), 1, + sym_decltype_auto, + STATE(4564), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7636), 1, + sym_abstract_declarator, + STATE(5888), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8733), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9686), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [226511] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7229), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(7869), 1, + anon_sym_AMP_AMP, + ACTIONS(7871), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(7227), 25, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8198), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9752), 1, + anon_sym_requires, + STATE(5928), 1, + sym_ref_qualifier, + STATE(6300), 1, + sym_function_exception_specification, + STATE(6697), 1, + sym_function_attributes_end, + STATE(6769), 1, + sym_trailing_return_type, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(9708), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9746), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 6, + 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_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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [271968] = 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [226595] = 14, ACTIONS(3), 1, sym_comment, - STATE(6266), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5992), 2, - anon_sym_AMP, + ACTIONS(3694), 1, anon_sym_const, - ACTIONS(10074), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5990), 28, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5455), 1, anon_sym_LPAREN2, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(9421), 1, anon_sym_STAR, + ACTIONS(9423), 1, anon_sym_AMP_AMP, + ACTIONS(9425), 1, + anon_sym_AMP, + STATE(4315), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7397), 1, + sym_abstract_declarator, + STATE(5774), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6535), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8763), 11, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -555454,56 +517074,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [272015] = 17, + [226659] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(3694), 1, + anon_sym_const, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(5552), 1, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(9421), 1, anon_sym_STAR, - ACTIONS(5554), 1, + ACTIONS(9423), 1, anon_sym_AMP_AMP, - ACTIONS(5556), 1, + ACTIONS(9425), 1, anon_sym_AMP, - ACTIONS(6406), 1, - sym_auto, - ACTIONS(6408), 1, - anon_sym_decltype, - ACTIONS(9105), 1, - anon_sym_LBRACK, - ACTIONS(9107), 1, - anon_sym_const, - STATE(2612), 1, - sym_decltype_auto, - STATE(4268), 1, + STATE(4315), 1, sym_parameter_list, - STATE(7450), 1, + STATE(7023), 1, sym_function_declarator_seq, - STATE(7900), 1, + STATE(7411), 1, sym_abstract_declarator, - STATE(6351), 2, + STATE(6022), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - ACTIONS(8908), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - sym_semgrep_metavar, - STATE(7464), 5, + STATE(7113), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(9103), 11, + ACTIONS(9173), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8763), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -555515,20 +517124,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [272086] = 5, + [226723] = 9, ACTIONS(3), 1, sym_comment, - STATE(6266), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5998), 2, + ACTIONS(9724), 1, + anon_sym___attribute__, + ACTIONS(9742), 1, + anon_sym_LBRACE, + ACTIONS(9744), 1, + anon_sym_COLON, + STATE(5836), 1, + sym_enum_base_clause, + STATE(5873), 1, + sym_enumerator_list, + STATE(6063), 1, + sym_attribute_specifier, + ACTIONS(6514), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(10074), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5996), 28, + ACTIONS(6516), 26, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -555536,8 +517150,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, @@ -555557,115 +517169,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [272133] = 3, + [226777] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7265), 10, - anon_sym_DOT_DOT_DOT, - 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(7263), 25, + ACTIONS(3694), 1, + anon_sym_const, + ACTIONS(5455), 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, + ACTIONS(8765), 1, 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [272176] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7299), 10, - anon_sym_DOT_DOT_DOT, - 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(7297), 25, - anon_sym_LPAREN2, + ACTIONS(9421), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(9423), 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_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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [272219] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7588), 1, - anon_sym_LT, - STATE(2704), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6753), 1, - sym_template_argument_list, - ACTIONS(5957), 2, + ACTIONS(9425), 1, anon_sym_AMP, - anon_sym_const, - ACTIONS(5538), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5959), 25, - anon_sym_DOT_DOT_DOT, + STATE(4315), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7394), 1, + sym_abstract_declarator, + STATE(6022), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7388), 7, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym___attribute__, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8763), 11, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -555676,219 +517219,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [272272] = 3, + [226841] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5746), 10, - anon_sym_DOT_DOT_DOT, - 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(3187), 25, + ACTIONS(3694), 1, + anon_sym_const, + ACTIONS(5455), 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, + ACTIONS(8765), 1, 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [272315] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7315), 10, - anon_sym_DOT_DOT_DOT, - 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(7313), 25, - anon_sym_LPAREN2, + ACTIONS(9421), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [272358] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7903), 1, + ACTIONS(9423), 1, anon_sym_AMP_AMP, - ACTIONS(7905), 1, + ACTIONS(9425), 1, anon_sym_AMP, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(7922), 1, - anon_sym_noexcept, - ACTIONS(7924), 1, - anon_sym_throw, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8327), 1, - anon_sym_DASH_GT, - ACTIONS(9902), 1, - anon_sym_LBRACK, - ACTIONS(10091), 1, - anon_sym_requires, - STATE(6324), 1, - sym_ref_qualifier, - STATE(6757), 1, - sym_function_exception_specification, - STATE(7325), 1, - sym_function_attributes_end, - STATE(7422), 1, - sym_requires_clause, - STATE(7479), 1, - sym_function_postfix, - STATE(7490), 1, - sym_trailing_return_type, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10052), 2, - anon_sym_final, - anon_sym_override, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, - sym_noexcept, - sym_throw_specifier, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(9897), 7, + STATE(4315), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7395), 1, + sym_abstract_declarator, + STATE(6022), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9177), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_COLON, - sym_semgrep_metavar, - [272443] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7319), 10, - anon_sym_DOT_DOT_DOT, - 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(7317), 25, - anon_sym_LPAREN2, - anon_sym_STAR, - 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_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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [272486] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7207), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(7205), 29, - anon_sym_AMP, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8763), 11, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -555899,42 +517269,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_operator, - [272529] = 11, + [226905] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, - anon_sym_COLON, - ACTIONS(10094), 1, + ACTIONS(8207), 1, anon_sym___attribute__, - ACTIONS(10096), 1, + ACTIONS(9692), 1, anon_sym_LBRACE, - STATE(6374), 1, - sym_field_declaration_list, - STATE(6593), 1, + STATE(5033), 1, sym_attribute_specifier, - STATE(8279), 1, - sym_virtual_specifier, - STATE(9259), 1, - sym_base_class_clause, - ACTIONS(6076), 2, + STATE(5809), 1, + sym_enumerator_list, + ACTIONS(5983), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(6118), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(6078), 24, + ACTIONS(5981), 27, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -555946,35 +517303,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, - anon_sym_GT2, + anon_sym_final, + anon_sym_override, anon_sym_try, anon_sym_requires, - [272588] = 5, + [226955] = 7, ACTIONS(3), 1, sym_comment, - STATE(6266), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5699), 2, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(9692), 1, + anon_sym_LBRACE, + STATE(5050), 1, + sym_attribute_specifier, + STATE(5812), 1, + sym_enumerator_list, + ACTIONS(5989), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(10098), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5697), 28, + ACTIONS(5987), 27, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -555986,224 +517346,262 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [272635] = 3, + [227005] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4837), 10, + STATE(5969), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(9768), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5778), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(9765), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(9763), 7, anon_sym_DOT_DOT_DOT, - 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(4829), 25, 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_COLON_COLON, 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [272678] = 3, + ACTIONS(9761), 18, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [227054] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3078), 10, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(8649), 1, + sym_identifier, + ACTIONS(8651), 1, anon_sym_DOT_DOT_DOT, - 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(3080), 25, + ACTIONS(8653), 1, anon_sym_LPAREN2, + ACTIONS(8655), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8657), 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_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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [272721] = 24, + ACTIONS(8659), 1, + anon_sym_AMP, + STATE(7213), 1, + sym_field_declarator, + STATE(9402), 1, + sym_ms_based_modifier, + STATE(5923), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(7368), 2, + sym_operator_name, + sym_semgrep_ellipsis, + STATE(7399), 7, + 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [227119] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(7903), 1, - anon_sym_AMP_AMP, - ACTIONS(7905), 1, - anon_sym_AMP, - ACTIONS(7922), 1, - anon_sym_noexcept, - ACTIONS(7924), 1, - anon_sym_throw, - ACTIONS(8334), 1, - anon_sym_DASH_GT, - ACTIONS(9899), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9902), 1, - anon_sym_LBRACK, - ACTIONS(9995), 1, - anon_sym_requires, - ACTIONS(10082), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5747), 1, anon_sym___attribute__, - STATE(6322), 1, - sym_ref_qualifier, - STATE(6743), 1, - sym_function_exception_specification, - STATE(7031), 1, - sym_trailing_return_type, - STATE(7220), 1, - sym_function_attributes_end, - STATE(7270), 1, - sym_requires_clause, - STATE(7298), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9992), 2, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(9736), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9740), 1, + anon_sym_EQ, + ACTIONS(9771), 1, + sym_identifier, + STATE(3094), 1, + sym_template_type, + STATE(3098), 1, + sym_qualified_type_identifier, + STATE(3453), 1, + sym_class_name, + STATE(3687), 1, + sym_class_declaration, + STATE(3688), 1, + sym_class_declaration_item, + STATE(4465), 1, + sym_field_declaration_list, + STATE(6503), 1, + sym_ms_declspec_modifier, + STATE(7569), 1, + sym_scope_resolution, + STATE(8160), 1, + sym_virtual_specifier, + STATE(9057), 1, + sym_base_class_clause, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, + ACTIONS(9738), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(6504), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, - sym_noexcept, - sym_throw_specifier, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(9897), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [272806] = 3, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6249), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [227210] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 10, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(8649), 1, + sym_identifier, + ACTIONS(8651), 1, anon_sym_DOT_DOT_DOT, - 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(7393), 25, + ACTIONS(8653), 1, anon_sym_LPAREN2, + ACTIONS(8655), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8657), 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_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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [272849] = 6, + ACTIONS(8659), 1, + anon_sym_AMP, + STATE(7195), 1, + sym_field_declarator, + STATE(9402), 1, + sym_ms_based_modifier, + STATE(5923), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(7368), 2, + sym_operator_name, + sym_semgrep_ellipsis, + STATE(7399), 7, + 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [227275] = 17, ACTIONS(3), 1, sym_comment, - STATE(6206), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5699), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(10071), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6016), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3694), 1, + anon_sym_const, + ACTIONS(5455), 1, anon_sym_LPAREN2, + ACTIONS(7394), 1, + sym_auto, + ACTIONS(7396), 1, + anon_sym_decltype, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(9773), 1, anon_sym_STAR, + ACTIONS(9775), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_GT2, - ACTIONS(6019), 17, + ACTIONS(9777), 1, anon_sym_AMP, + STATE(3304), 1, + sym_decltype_auto, + STATE(4398), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7695), 1, + sym_abstract_declarator, + STATE(5975), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8717), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8763), 11, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -556214,131 +517612,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - sym_semgrep_metavar, - [272898] = 24, + [227344] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7903), 1, - anon_sym_AMP_AMP, - ACTIONS(7905), 1, - anon_sym_AMP, - ACTIONS(7909), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(7922), 1, + ACTIONS(7881), 1, + anon_sym_DASH_GT, + ACTIONS(7886), 1, anon_sym_noexcept, - ACTIONS(7924), 1, + ACTIONS(7888), 1, anon_sym_throw, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8327), 1, - anon_sym_DASH_GT, - ACTIONS(8329), 1, - anon_sym_requires, - ACTIONS(9902), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(6313), 1, - sym_ref_qualifier, - STATE(6748), 1, + ACTIONS(9660), 1, + anon_sym_requires, + STATE(6222), 1, sym_function_exception_specification, - STATE(7268), 1, + STATE(6810), 1, sym_function_attributes_end, - STATE(7422), 1, + STATE(6947), 1, + sym_trailing_return_type, + STATE(7021), 1, sym_requires_clause, - STATE(7479), 1, + STATE(7068), 1, sym_function_postfix, - STATE(7481), 1, - sym_trailing_return_type, - STATE(8073), 1, + STATE(7721), 1, sym_gnu_asm_expression, - ACTIONS(7918), 2, + ACTIONS(7879), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(8102), 2, + ACTIONS(9657), 2, anon_sym_final, anon_sym_override, - STATE(6828), 2, + STATE(6443), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, + STATE(6619), 2, sym_noexcept, sym_throw_specifier, - STATE(7282), 2, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(9897), 7, + ACTIONS(9640), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_COLON, - sym_semgrep_metavar, - [272983] = 3, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [227421] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7383), 10, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(4043), 1, anon_sym_DOT_DOT_DOT, - 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(7381), 25, + ACTIONS(8653), 1, anon_sym_LPAREN2, + ACTIONS(8673), 1, + sym_identifier, + ACTIONS(8675), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8677), 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_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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [273026] = 6, + ACTIONS(8679), 1, + anon_sym_AMP, + STATE(7587), 1, + sym_field_declarator, + STATE(9923), 1, + sym_ms_based_modifier, + STATE(5923), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(7742), 2, + sym_operator_name, + sym_semgrep_ellipsis, + STATE(7399), 7, + 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [227486] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, + ACTIONS(4784), 1, anon_sym_COLON_COLON, - ACTIONS(10046), 1, + ACTIONS(9779), 1, anon_sym_LT, - STATE(2518), 1, + STATE(2593), 1, sym_template_argument_list, - ACTIONS(6197), 3, + ACTIONS(5374), 3, anon_sym_AMP, anon_sym_const, anon_sym_COLON, - ACTIONS(4853), 29, - anon_sym_COMMA, + ACTIONS(5381), 27, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, anon_sym_LBRACE, @@ -556361,228 +517759,341 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, sym_semgrep_metavar, - [273075] = 3, + [227533] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3096), 10, - anon_sym_DOT_DOT_DOT, - 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(3094), 25, + ACTIONS(3694), 1, + anon_sym_const, + ACTIONS(5455), 1, anon_sym_LPAREN2, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(9644), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(9646), 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_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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [273118] = 3, + ACTIONS(9648), 1, + anon_sym_AMP, + STATE(4408), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7501), 1, + sym_abstract_declarator, + STATE(5788), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6535), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8763), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [227596] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7213), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(3694), 1, + anon_sym_const, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(9644), 1, + anon_sym_STAR, + ACTIONS(9646), 1, + anon_sym_AMP_AMP, + ACTIONS(9648), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(7211), 25, + STATE(4408), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7505), 1, + sym_abstract_declarator, + STATE(6022), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9173), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8763), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [227659] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3694), 1, + anon_sym_const, + ACTIONS(5455), 1, anon_sym_LPAREN2, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(9644), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(9646), 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(9648), 1, + anon_sym_AMP, + STATE(4408), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7470), 1, + sym_abstract_declarator, + STATE(6022), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7388), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8763), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [227722] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3694), 1, + anon_sym_const, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(8765), 1, 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT_GT, - [273161] = 21, + ACTIONS(9644), 1, + anon_sym_STAR, + ACTIONS(9646), 1, + anon_sym_AMP_AMP, + ACTIONS(9648), 1, + anon_sym_AMP, + STATE(4408), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7473), 1, + sym_abstract_declarator, + STATE(6022), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9177), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8763), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [227785] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(7920), 1, + ACTIONS(7881), 1, anon_sym_DASH_GT, - ACTIONS(7922), 1, + ACTIONS(7886), 1, anon_sym_noexcept, - ACTIONS(7924), 1, + ACTIONS(7888), 1, anon_sym_throw, - ACTIONS(7926), 1, + ACTIONS(7923), 1, anon_sym_requires, - ACTIONS(10103), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10106), 1, + ACTIONS(9783), 1, anon_sym_LBRACK, - STATE(6522), 1, + STATE(6226), 1, sym_function_exception_specification, - STATE(7033), 1, - sym_trailing_return_type, - STATE(7173), 1, + STATE(6806), 1, sym_function_attributes_end, - STATE(7270), 1, + STATE(6946), 1, + sym_trailing_return_type, + STATE(7021), 1, sym_requires_clause, - STATE(7338), 1, + STATE(7073), 1, sym_function_postfix, - STATE(8073), 1, + STATE(7721), 1, sym_gnu_asm_expression, - ACTIONS(6118), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7918), 2, + ACTIONS(7879), 2, anon_sym_asm, anon_sym___asm__, - STATE(6828), 2, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6443), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, + STATE(6619), 2, sym_noexcept, sym_throw_specifier, - STATE(7215), 2, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10101), 9, + ACTIONS(9781), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [273239] = 21, + [227862] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(7920), 1, + ACTIONS(7881), 1, anon_sym_DASH_GT, - ACTIONS(7922), 1, + ACTIONS(7886), 1, anon_sym_noexcept, - ACTIONS(7924), 1, + ACTIONS(7888), 1, anon_sym_throw, - ACTIONS(9899), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9902), 1, + ACTIONS(9783), 1, anon_sym_LBRACK, - ACTIONS(9995), 1, + ACTIONS(9788), 1, anon_sym_requires, - STATE(6676), 1, + STATE(6237), 1, sym_function_exception_specification, - STATE(7031), 1, - sym_trailing_return_type, - STATE(7139), 1, + STATE(6807), 1, sym_function_attributes_end, - STATE(7270), 1, + STATE(6993), 1, + sym_trailing_return_type, + STATE(7021), 1, sym_requires_clause, - STATE(7298), 1, + STATE(7073), 1, sym_function_postfix, - STATE(8073), 1, + STATE(7721), 1, sym_gnu_asm_expression, - ACTIONS(7918), 2, + ACTIONS(7879), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9992), 2, + ACTIONS(9785), 2, anon_sym_final, anon_sym_override, - STATE(6828), 2, + STATE(6443), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, + STATE(6619), 2, sym_noexcept, sym_throw_specifier, - STATE(7215), 2, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(9897), 9, + ACTIONS(9781), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [273317] = 9, + [227939] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10094), 1, - anon_sym___attribute__, - ACTIONS(10108), 1, - anon_sym_LBRACE, - ACTIONS(10110), 1, - anon_sym_COLON, - STATE(6325), 1, - sym_enum_base_clause, - STATE(6379), 1, - sym_enumerator_list, - STATE(6666), 1, - sym_attribute_specifier, - ACTIONS(6233), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6235), 26, - anon_sym_COMMA, + ACTIONS(5967), 1, + sym_identifier, + ACTIONS(5973), 1, + sym_primitive_type, + STATE(5815), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9791), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5965), 7, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, + sym_semgrep_metavar, + ACTIONS(5969), 19, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -556597,27 +518108,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [273371] = 3, + [227988] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7869), 1, + anon_sym_AMP_AMP, + ACTIONS(7871), 1, + anon_sym_AMP, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8259), 1, + anon_sym_DASH_GT, + ACTIONS(8280), 1, + anon_sym_requires, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9749), 1, + anon_sym_LBRACK_LBRACK, + STATE(6009), 1, + sym_ref_qualifier, + STATE(6322), 1, + sym_function_exception_specification, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + STATE(6906), 1, + sym_function_attributes_end, + STATE(7220), 1, + sym_trailing_return_type, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [228071] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5460), 2, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(8649), 1, + sym_identifier, + ACTIONS(8651), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8653), 1, + anon_sym_LPAREN2, + ACTIONS(8655), 1, + anon_sym_STAR, + ACTIONS(8657), 1, + anon_sym_AMP_AMP, + ACTIONS(8659), 1, anon_sym_AMP, + STATE(7180), 1, + sym_field_declarator, + STATE(9402), 1, + sym_ms_based_modifier, + STATE(5923), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(7368), 2, + sym_operator_name, + sym_semgrep_ellipsis, + STATE(7399), 7, + 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, + ACTIONS(3694), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [228136] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3694), 1, anon_sym_const, - ACTIONS(5467), 32, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(5457), 1, + anon_sym_STAR, + ACTIONS(5459), 1, + anon_sym_AMP_AMP, + ACTIONS(5461), 1, + anon_sym_AMP, + ACTIONS(6725), 1, + sym_auto, + ACTIONS(6727), 1, + anon_sym_decltype, + ACTIONS(8765), 1, + anon_sym_LBRACK, + STATE(2694), 1, + sym_decltype_auto, + STATE(4330), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7703), 1, + sym_abstract_declarator, + STATE(6038), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8733), 3, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_SEMI, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8763), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [228205] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8207), 1, + anon_sym___attribute__, + STATE(5012), 1, + sym_attribute_specifier, + ACTIONS(6086), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6084), 28, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, - anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -556630,102 +518302,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constinit, anon_sym_consteval, anon_sym_COLON, - anon_sym_or, - anon_sym_and, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [273413] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - anon_sym_enum, - ACTIONS(71), 1, - anon_sym_class, - ACTIONS(73), 1, - anon_sym_struct, - ACTIONS(75), 1, - anon_sym_union, - ACTIONS(121), 1, - sym_auto, - ACTIONS(123), 1, - anon_sym_decltype, - ACTIONS(131), 1, - anon_sym_typename, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(3720), 1, - sym_primitive_type, - ACTIONS(10112), 1, - sym_identifier, - ACTIONS(10114), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10118), 1, - anon_sym_EQ, - STATE(3874), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4757), 1, - sym_type_specifier, - STATE(4836), 1, - sym_decltype_auto, - STATE(4837), 1, - sym_qualified_type_identifier, - STATE(7881), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - ACTIONS(10116), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(4853), 2, - sym_decltype, - sym_template_type, - ACTIONS(57), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4873), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [273497] = 9, + [228250] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10094), 1, + ACTIONS(8207), 1, anon_sym___attribute__, - ACTIONS(10108), 1, - anon_sym_LBRACE, - ACTIONS(10110), 1, - anon_sym_COLON, - STATE(6331), 1, - sym_enum_base_clause, - STATE(6373), 1, - sym_enumerator_list, - STATE(6552), 1, + STATE(5016), 1, sym_attribute_specifier, - ACTIONS(6225), 2, + ACTIONS(6104), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(6227), 26, + ACTIONS(6102), 28, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -556737,40 +518341,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [273551] = 7, + [228295] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(8610), 1, - sym_identifier, - ACTIONS(8614), 1, - sym_primitive_type, - STATE(5452), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9751), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6022), 8, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(4043), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8653), 1, anon_sym_LPAREN2, + ACTIONS(8673), 1, + sym_identifier, + ACTIONS(8675), 1, anon_sym_STAR, + ACTIONS(8677), 1, anon_sym_AMP_AMP, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_GT2, - ACTIONS(6026), 19, + ACTIONS(8679), 1, anon_sym_AMP, + STATE(7616), 1, + sym_field_declarator, + STATE(9923), 1, + sym_ms_based_modifier, + STATE(5923), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(7742), 2, + sym_operator_name, + sym_semgrep_ellipsis, + STATE(7399), 7, + 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, + ACTIONS(3694), 12, anon_sym___extension__, - anon_sym___attribute__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -556782,86 +518400,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [228360] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3694), 1, + anon_sym_const, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(5457), 1, + anon_sym_STAR, + ACTIONS(5459), 1, + anon_sym_AMP_AMP, + ACTIONS(5461), 1, + anon_sym_AMP, + ACTIONS(6725), 1, sym_auto, + ACTIONS(6727), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [273601] = 21, + ACTIONS(8765), 1, + anon_sym_LBRACK, + STATE(2694), 1, + sym_decltype_auto, + STATE(4330), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7686), 1, + sym_abstract_declarator, + STATE(5986), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(8717), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8763), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [228429] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(7920), 1, + ACTIONS(7881), 1, anon_sym_DASH_GT, - ACTIONS(7922), 1, + ACTIONS(7886), 1, anon_sym_noexcept, - ACTIONS(7924), 1, + ACTIONS(7888), 1, anon_sym_throw, - ACTIONS(10103), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10106), 1, - anon_sym_LBRACK, - ACTIONS(10123), 1, + ACTIONS(7923), 1, anon_sym_requires, - STATE(6683), 1, + ACTIONS(9642), 1, + anon_sym_LBRACK, + STATE(6214), 1, sym_function_exception_specification, - STATE(6953), 1, - sym_trailing_return_type, - STATE(7090), 1, + STATE(6800), 1, sym_function_attributes_end, - STATE(7270), 1, + STATE(6985), 1, + sym_trailing_return_type, + STATE(7021), 1, sym_requires_clause, - STATE(7338), 1, + STATE(7068), 1, sym_function_postfix, - STATE(8073), 1, + STATE(7721), 1, sym_gnu_asm_expression, - ACTIONS(7918), 2, + ACTIONS(7879), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10120), 2, + ACTIONS(7921), 2, anon_sym_final, anon_sym_override, - STATE(6828), 2, + STATE(6443), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, + STATE(6619), 2, sym_noexcept, sym_throw_specifier, - STATE(7215), 2, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10101), 9, + ACTIONS(9640), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [273679] = 3, + [228506] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6197), 2, + ACTIONS(8207), 1, + anon_sym___attribute__, + STATE(5029), 1, + sym_attribute_specifier, + ACTIONS(6022), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(4853), 32, + ACTIONS(6020), 28, 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___extension__, - anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -556874,38 +518540,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constinit, anon_sym_consteval, anon_sym_COLON, - anon_sym_or, - anon_sym_and, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [273721] = 5, + [228551] = 5, ACTIONS(3), 1, sym_comment, - STATE(6213), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4827), 2, + ACTIONS(8207), 1, + anon_sym___attribute__, + STATE(5032), 1, + sym_attribute_specifier, + ACTIONS(6026), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(10062), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4835), 27, + ACTIONS(6024), 28, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -556917,127 +518579,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [273767] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(6287), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10126), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5697), 10, - 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_COLON, - anon_sym_GT2, - ACTIONS(5699), 19, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, - sym_semgrep_metavar, - [273813] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(7920), 1, - anon_sym_DASH_GT, - ACTIONS(7922), 1, - anon_sym_noexcept, - ACTIONS(7924), 1, - anon_sym_throw, - ACTIONS(7926), 1, - anon_sym_requires, - ACTIONS(9899), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9902), 1, - anon_sym_LBRACK, - STATE(6636), 1, - sym_function_exception_specification, - STATE(6966), 1, - sym_trailing_return_type, - STATE(7142), 1, - sym_function_attributes_end, - STATE(7270), 1, - sym_requires_clause, - STATE(7298), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(6118), 2, anon_sym_final, anon_sym_override, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, - sym_noexcept, - sym_throw_specifier, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(9897), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT2, anon_sym_try, - [273891] = 6, + anon_sym_requires, + [228596] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, + ACTIONS(4784), 1, anon_sym_COLON_COLON, - ACTIONS(10129), 1, + ACTIONS(9779), 1, anon_sym_LT, - STATE(3039), 1, + STATE(2593), 1, sym_template_argument_list, - ACTIONS(6197), 3, + ACTIONS(5938), 3, anon_sym_AMP, anon_sym_const, anon_sym_COLON, - ACTIONS(4853), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4789), 27, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PIPE_PIPE, @@ -557062,32 +518627,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [273939] = 6, + sym_semgrep_metavar, + [228643] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(10129), 1, - anon_sym_LT, - STATE(3039), 1, - sym_template_argument_list, - ACTIONS(5460), 3, + ACTIONS(8207), 1, + anon_sym___attribute__, + STATE(5037), 1, + sym_attribute_specifier, + ACTIONS(6032), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - anon_sym_COLON, - ACTIONS(5467), 28, - anon_sym_DOT_DOT_DOT, + ACTIONS(6030), 28, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -557098,110 +518660,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_or, - anon_sym_and, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [273987] = 21, + [228688] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(8207), 1, anon_sym___attribute__, - ACTIONS(7922), 1, - anon_sym_noexcept, - ACTIONS(7924), 1, - anon_sym_throw, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8100), 1, - anon_sym_DASH_GT, - ACTIONS(8104), 1, - anon_sym_requires, - ACTIONS(10106), 1, - anon_sym_LBRACK, - STATE(6713), 1, - sym_function_exception_specification, - STATE(7248), 1, - sym_function_attributes_end, - STATE(7381), 1, - sym_trailing_return_type, - STATE(7422), 1, - sym_requires_clause, - STATE(7444), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8102), 2, - anon_sym_final, - anon_sym_override, - STATE(6828), 2, + STATE(5038), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, - sym_noexcept, - sym_throw_specifier, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10101), 8, + ACTIONS(6036), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6034), 28, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [274064] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(9007), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9009), 1, anon_sym_LPAREN2, - ACTIONS(9037), 1, - sym_identifier, - ACTIONS(9039), 1, anon_sym_STAR, - ACTIONS(9041), 1, anon_sym_AMP_AMP, - ACTIONS(9043), 1, - anon_sym_AMP, - STATE(7980), 1, - sym_field_declarator, - STATE(10129), 1, - sym_ms_based_modifier, - STATE(6872), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(8114), 2, - sym_operator_name, - sym_semgrep_ellipsis, - STATE(7771), 7, - 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, - ACTIONS(9017), 12, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_const, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -557212,90 +518700,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [274129] = 21, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [228733] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(7869), 1, + anon_sym_AMP_AMP, + ACTIONS(7871), 1, + anon_sym_AMP, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(7922), 1, + ACTIONS(7886), 1, anon_sym_noexcept, - ACTIONS(7924), 1, + ACTIONS(7888), 1, anon_sym_throw, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8100), 1, + ACTIONS(8259), 1, anon_sym_DASH_GT, - ACTIONS(8104), 1, - anon_sym_requires, - ACTIONS(9902), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(6715), 1, + ACTIONS(9749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9793), 1, + anon_sym_requires, + STATE(6025), 1, + sym_ref_qualifier, + STATE(6323), 1, sym_function_exception_specification, - STATE(7243), 1, - sym_function_attributes_end, - STATE(7346), 1, - sym_trailing_return_type, - STATE(7422), 1, + STATE(6852), 1, sym_requires_clause, - STATE(7479), 1, + STATE(6904), 1, sym_function_postfix, - STATE(8073), 1, + STATE(6915), 1, + sym_function_attributes_end, + STATE(7191), 1, + sym_trailing_return_type, + STATE(7721), 1, sym_gnu_asm_expression, - ACTIONS(7918), 2, + ACTIONS(7879), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(8102), 2, + ACTIONS(9708), 2, anon_sym_final, anon_sym_override, - STATE(6828), 2, + STATE(6443), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, + STATE(6619), 2, sym_noexcept, sym_throw_specifier, - STATE(7282), 2, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(9897), 8, - anon_sym_COMMA, + ACTIONS(9640), 5, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, anon_sym_try, - [274206] = 6, + [228816] = 5, ACTIONS(3), 1, sym_comment, - STATE(6287), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5699), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(10126), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6016), 10, - anon_sym_DOT_DOT_DOT, + ACTIONS(8207), 1, + anon_sym___attribute__, + STATE(5049), 1, + sym_attribute_specifier, + ACTIONS(6052), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6050), 28, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_GT2, - ACTIONS(6019), 16, - anon_sym_AMP, anon_sym___extension__, - anon_sym_const, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -557306,204 +518799,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, - sym_semgrep_metavar, - [274253] = 15, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [228861] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(9005), 1, - sym_identifier, - ACTIONS(9007), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9009), 1, - anon_sym_LPAREN2, - ACTIONS(9011), 1, - anon_sym_STAR, - ACTIONS(9013), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7869), 1, anon_sym_AMP_AMP, - ACTIONS(9015), 1, + ACTIONS(7871), 1, anon_sym_AMP, - STATE(7521), 1, - sym_field_declarator, - STATE(10022), 1, - sym_ms_based_modifier, - STATE(6872), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(7715), 2, - sym_operator_name, - sym_semgrep_ellipsis, - STATE(7771), 7, - 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, - ACTIONS(9017), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [274318] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(7922), 1, + ACTIONS(7886), 1, anon_sym_noexcept, - ACTIONS(7924), 1, + ACTIONS(7888), 1, anon_sym_throw, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8100), 1, + ACTIONS(8275), 1, anon_sym_DASH_GT, - ACTIONS(9902), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10055), 1, + ACTIONS(9796), 1, anon_sym_requires, - STATE(6719), 1, + STATE(5940), 1, + sym_ref_qualifier, + STATE(6328), 1, sym_function_exception_specification, - STATE(7250), 1, - sym_function_attributes_end, - STATE(7391), 1, - sym_trailing_return_type, - STATE(7422), 1, + STATE(7021), 1, sym_requires_clause, - STATE(7479), 1, + STATE(7068), 1, sym_function_postfix, - STATE(8073), 1, + STATE(7091), 1, + sym_function_attributes_end, + STATE(7171), 1, + sym_trailing_return_type, + STATE(7721), 1, sym_gnu_asm_expression, - ACTIONS(7918), 2, + ACTIONS(7879), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10052), 2, + ACTIONS(9657), 2, anon_sym_final, anon_sym_override, - STATE(6828), 2, + STATE(6443), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, + STATE(6619), 2, sym_noexcept, sym_throw_specifier, - STATE(7282), 2, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(9897), 8, + ACTIONS(9640), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [274395] = 14, + [228944] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, - anon_sym_LPAREN2, - ACTIONS(9105), 1, + ACTIONS(8207), 1, + anon_sym___attribute__, + STATE(5051), 1, + sym_attribute_specifier, + ACTIONS(6062), 3, + anon_sym_AMP, anon_sym_LBRACK, - ACTIONS(9107), 1, anon_sym_const, - ACTIONS(10040), 1, - anon_sym_STAR, - ACTIONS(10042), 1, - anon_sym_AMP_AMP, - ACTIONS(10044), 1, - anon_sym_AMP, - STATE(4697), 1, - sym_parameter_list, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(7854), 1, - sym_abstract_declarator, - STATE(6300), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(7464), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6258), 6, - anon_sym_DOT_DOT_DOT, + ACTIONS(6060), 28, anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(9103), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [274458] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(9005), 1, - sym_identifier, - ACTIONS(9007), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9009), 1, anon_sym_LPAREN2, - ACTIONS(9011), 1, anon_sym_STAR, - ACTIONS(9013), 1, anon_sym_AMP_AMP, - ACTIONS(9015), 1, - anon_sym_AMP, - STATE(7537), 1, - sym_field_declarator, - STATE(10022), 1, - sym_ms_based_modifier, - STATE(6872), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(7715), 2, - sym_operator_name, - sym_semgrep_ellipsis, - STATE(7771), 7, - 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, - ACTIONS(9017), 12, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_const, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -557514,94 +518898,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [274523] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5550), 1, - anon_sym_LPAREN2, - ACTIONS(9105), 1, - anon_sym_LBRACK, - ACTIONS(9107), 1, - anon_sym_const, - ACTIONS(10040), 1, - anon_sym_STAR, - ACTIONS(10042), 1, - anon_sym_AMP_AMP, - ACTIONS(10044), 1, - anon_sym_AMP, - STATE(4697), 1, - sym_parameter_list, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(7857), 1, - sym_abstract_declarator, - STATE(6350), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(7464), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9248), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_try, anon_sym_requires, - ACTIONS(9103), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [274586] = 14, + [228989] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, - anon_sym_LPAREN2, - ACTIONS(9105), 1, + ACTIONS(8207), 1, + anon_sym___attribute__, + STATE(5052), 1, + sym_attribute_specifier, + ACTIONS(6070), 3, + anon_sym_AMP, anon_sym_LBRACK, - ACTIONS(9107), 1, anon_sym_const, - ACTIONS(10040), 1, + ACTIONS(6068), 28, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(10042), 1, anon_sym_AMP_AMP, - ACTIONS(10044), 1, - anon_sym_AMP, - STATE(4697), 1, - sym_parameter_list, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(7859), 1, - sym_abstract_declarator, - STATE(6350), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(7464), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7534), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(9103), 11, + anon_sym_SEMI, anon_sym___extension__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -557612,82 +518938,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [274649] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5550), 1, - anon_sym_LPAREN2, - ACTIONS(9105), 1, - anon_sym_LBRACK, - ACTIONS(9107), 1, - anon_sym_const, - ACTIONS(10040), 1, - anon_sym_STAR, - ACTIONS(10042), 1, - anon_sym_AMP_AMP, - ACTIONS(10044), 1, - anon_sym_AMP, - STATE(4697), 1, - sym_parameter_list, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(7860), 1, - sym_abstract_declarator, - STATE(6350), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(7464), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9250), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_try, anon_sym_requires, - ACTIONS(9103), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [274712] = 8, + [229034] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(10129), 1, - anon_sym_LT, - STATE(2704), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3039), 1, - sym_template_argument_list, - ACTIONS(4827), 2, + ACTIONS(8207), 1, + anon_sym___attribute__, + STATE(5053), 1, + sym_attribute_specifier, + ACTIONS(6074), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(5538), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4835), 23, - anon_sym_DOT_DOT_DOT, + ACTIONS(6072), 28, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -557698,52 +518978,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [274763] = 15, + [229079] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(9007), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9009), 1, + ACTIONS(8207), 1, + anon_sym___attribute__, + STATE(4950), 1, + sym_attribute_specifier, + ACTIONS(6096), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6094), 28, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(9037), 1, - sym_identifier, - ACTIONS(9039), 1, anon_sym_STAR, - ACTIONS(9041), 1, anon_sym_AMP_AMP, - ACTIONS(9043), 1, - anon_sym_AMP, - STATE(7978), 1, - sym_field_declarator, - STATE(10129), 1, - sym_ms_based_modifier, - STATE(6872), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(8114), 2, - sym_operator_name, - sym_semgrep_ellipsis, - STATE(7771), 7, - 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, - ACTIONS(9017), 12, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_const, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -557754,167 +519018,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [274828] = 28, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [229124] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10114), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10118), 1, - anon_sym_EQ, - ACTIONS(10131), 1, - sym_identifier, - ACTIONS(10133), 1, + ACTIONS(8207), 1, anon_sym___attribute__, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, - anon_sym___declspec, - ACTIONS(10139), 1, - anon_sym_alignas, - STATE(3800), 1, - sym_class_name, - STATE(4401), 1, - sym_template_type, - STATE(4404), 1, - sym_qualified_type_identifier, - STATE(4797), 1, - sym_field_declaration_list, - STATE(4942), 1, - sym_class_declaration, - STATE(4958), 1, - sym_class_declaration_item, - STATE(6970), 1, - sym_ms_declspec_modifier, - STATE(7879), 1, - sym_scope_resolution, - STATE(8316), 1, - sym_virtual_specifier, - STATE(9487), 1, - sym_base_class_clause, - ACTIONS(6086), 2, + STATE(5064), 1, + sym_attribute_specifier, + ACTIONS(6100), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6098), 28, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - ACTIONS(10116), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(7020), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6712), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym_class_declaration_repeat1, - [274919] = 21, + anon_sym_try, + anon_sym_requires, + [229169] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7869), 1, + anon_sym_AMP_AMP, + ACTIONS(7871), 1, + anon_sym_AMP, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(7922), 1, + ACTIONS(7886), 1, anon_sym_noexcept, - ACTIONS(7924), 1, + ACTIONS(7888), 1, anon_sym_throw, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8100), 1, + ACTIONS(8275), 1, anon_sym_DASH_GT, - ACTIONS(10106), 1, - anon_sym_LBRACK, - ACTIONS(10144), 1, + ACTIONS(8285), 1, anon_sym_requires, - STATE(6699), 1, + ACTIONS(9642), 1, + anon_sym_LBRACK, + STATE(5980), 1, + sym_ref_qualifier, + STATE(6330), 1, sym_function_exception_specification, - STATE(7251), 1, - sym_function_attributes_end, - STATE(7408), 1, - sym_trailing_return_type, - STATE(7422), 1, + STATE(7021), 1, sym_requires_clause, - STATE(7444), 1, + STATE(7062), 1, + sym_function_attributes_end, + STATE(7068), 1, sym_function_postfix, - STATE(8073), 1, + STATE(7161), 1, + sym_trailing_return_type, + STATE(7721), 1, sym_gnu_asm_expression, - ACTIONS(7918), 2, + ACTIONS(7879), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10141), 2, + ACTIONS(7921), 2, anon_sym_final, anon_sym_override, - STATE(6828), 2, + STATE(6443), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, + STATE(6619), 2, sym_noexcept, sym_throw_specifier, - STATE(7282), 2, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10101), 8, + ACTIONS(9640), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [274996] = 17, + [229252] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + STATE(2051), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5653), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(5940), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5975), 7, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7458), 1, - sym_auto, - ACTIONS(7460), 1, - anon_sym_decltype, - ACTIONS(9105), 1, - anon_sym_LBRACK, - ACTIONS(9107), 1, - anon_sym_const, - ACTIONS(10147), 1, anon_sym_STAR, - ACTIONS(10149), 1, anon_sym_AMP_AMP, - ACTIONS(10151), 1, + anon_sym_LBRACE, + anon_sym_LBRACK, + sym_semgrep_metavar, + ACTIONS(5978), 19, anon_sym_AMP, - STATE(3478), 1, - sym_decltype_auto, - STATE(4696), 1, - sym_parameter_list, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(8011), 1, - sym_abstract_declarator, - STATE(6432), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(8932), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(7464), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9103), 11, anon_sym___extension__, + anon_sym___attribute__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -557925,35 +519162,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [275065] = 7, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [229299] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7983), 1, - sym_identifier, - ACTIONS(7987), 1, - sym_primitive_type, - STATE(6271), 1, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(9732), 1, + anon_sym_LT, + STATE(2744), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(10153), 4, + STATE(2925), 1, + sym_template_argument_list, + ACTIONS(4763), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5468), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6022), 9, + ACTIONS(4771), 23, + 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_COLON, - ACTIONS(6026), 17, - anon_sym_AMP, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_const, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -557966,37 +519206,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, sym_auto, anon_sym_decltype, - sym_semgrep_metavar, - [275114] = 15, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [229350] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(2259), 1, + ACTIONS(2257), 1, anon_sym_operator, - ACTIONS(9005), 1, - sym_identifier, - ACTIONS(9007), 1, + ACTIONS(4043), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9009), 1, + ACTIONS(8653), 1, anon_sym_LPAREN2, - ACTIONS(9011), 1, + ACTIONS(8673), 1, + sym_identifier, + ACTIONS(8675), 1, anon_sym_STAR, - ACTIONS(9013), 1, + ACTIONS(8677), 1, anon_sym_AMP_AMP, - ACTIONS(9015), 1, + ACTIONS(8679), 1, anon_sym_AMP, - STATE(7564), 1, + STATE(7589), 1, sym_field_declarator, - STATE(10022), 1, + STATE(9923), 1, sym_ms_based_modifier, - STATE(6872), 2, + STATE(5923), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(7715), 2, + STATE(7742), 2, sym_operator_name, sym_semgrep_ellipsis, - STATE(7771), 7, + STATE(7399), 7, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -558004,7 +519247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_field_declarator, sym_reference_field_declarator, sym_template_method, - ACTIONS(9017), 12, + ACTIONS(3694), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -558017,47 +519260,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [275179] = 17, + [229415] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(3694), 1, + anon_sym_const, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(7458), 1, + ACTIONS(7394), 1, sym_auto, - ACTIONS(7460), 1, + ACTIONS(7396), 1, anon_sym_decltype, - ACTIONS(9105), 1, + ACTIONS(8765), 1, anon_sym_LBRACK, - ACTIONS(9107), 1, - anon_sym_const, - ACTIONS(10147), 1, + ACTIONS(9773), 1, anon_sym_STAR, - ACTIONS(10149), 1, + ACTIONS(9775), 1, anon_sym_AMP_AMP, - ACTIONS(10151), 1, + ACTIONS(9777), 1, anon_sym_AMP, - STATE(3478), 1, + STATE(3304), 1, sym_decltype_auto, - STATE(4696), 1, + STATE(4398), 1, sym_parameter_list, - STATE(7450), 1, + STATE(7023), 1, sym_function_declarator_seq, - STATE(8020), 1, + STATE(7656), 1, sym_abstract_declarator, - STATE(6508), 2, + STATE(6027), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - ACTIONS(8908), 3, + ACTIONS(8733), 3, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_GT2, - STATE(7464), 5, + STATE(7113), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(9103), 11, + ACTIONS(8763), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -558069,46 +519312,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [275248] = 15, + [229484] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(9007), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9009), 1, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(9037), 1, - sym_identifier, - ACTIONS(9039), 1, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(9680), 1, anon_sym_STAR, - ACTIONS(9041), 1, + ACTIONS(9682), 1, anon_sym_AMP_AMP, - ACTIONS(9043), 1, + ACTIONS(9684), 1, anon_sym_AMP, - STATE(7964), 1, - sym_field_declarator, - STATE(10129), 1, - sym_ms_based_modifier, - STATE(6872), 2, + ACTIONS(9688), 1, + anon_sym_const, + STATE(4458), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7519), 1, + sym_abstract_declarator, + STATE(6335), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(8114), 2, - sym_operator_name, - sym_semgrep_ellipsis, - STATE(7771), 7, - 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, - ACTIONS(9017), 12, + ACTIONS(9177), 5, + anon_sym_RPAREN, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9686), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -558119,56 +519360,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [275313] = 23, + [229546] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3317), 1, - sym_auto, - ACTIONS(3319), 1, - anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8705), 1, - sym_primitive_type, - ACTIONS(10155), 1, - sym_identifier, - ACTIONS(10157), 1, + ACTIONS(8299), 1, anon_sym_LPAREN2, - ACTIONS(10161), 1, + ACTIONS(9799), 1, + sym_identifier, + ACTIONS(9803), 1, + sym_primitive_type, + ACTIONS(9805), 1, anon_sym_enum, - ACTIONS(10163), 1, + ACTIONS(9807), 1, anon_sym_class, - ACTIONS(10165), 1, + ACTIONS(9809), 1, anon_sym_struct, - ACTIONS(10167), 1, + ACTIONS(9811), 1, anon_sym_union, - ACTIONS(10169), 1, + ACTIONS(9813), 1, + sym_auto, + ACTIONS(9815), 1, + anon_sym_decltype, + ACTIONS(9817), 1, anon_sym_typename, - STATE(3472), 1, - sym_decltype_auto, - STATE(3523), 1, - sym_qualified_type_identifier, - STATE(4823), 1, + STATE(3862), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5113), 1, + STATE(4306), 1, sym_type_specifier, - STATE(6509), 1, + STATE(4619), 1, + sym_decltype_auto, + STATE(4620), 1, + sym_qualified_type_identifier, + STATE(5990), 1, sym_argument_list, - STATE(7878), 1, + STATE(7541), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(3429), 2, + STATE(4549), 2, sym_decltype, sym_template_type, - ACTIONS(10159), 4, + ACTIONS(9801), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3473), 7, + STATE(4639), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -558176,56 +519417,56 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [275393] = 23, + [229626] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10157), 1, + ACTIONS(8299), 1, anon_sym_LPAREN2, - ACTIONS(10171), 1, + ACTIONS(9799), 1, sym_identifier, - ACTIONS(10175), 1, + ACTIONS(9803), 1, sym_primitive_type, - ACTIONS(10177), 1, + ACTIONS(9805), 1, anon_sym_enum, - ACTIONS(10179), 1, + ACTIONS(9807), 1, anon_sym_class, - ACTIONS(10181), 1, + ACTIONS(9809), 1, anon_sym_struct, - ACTIONS(10183), 1, + ACTIONS(9811), 1, anon_sym_union, - ACTIONS(10185), 1, + ACTIONS(9813), 1, sym_auto, - ACTIONS(10187), 1, + ACTIONS(9815), 1, anon_sym_decltype, - ACTIONS(10189), 1, + ACTIONS(9817), 1, anon_sym_typename, - STATE(2087), 1, + STATE(3862), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2444), 1, + STATE(4340), 1, sym_type_specifier, - STATE(2753), 1, - sym_qualified_type_identifier, - STATE(2777), 1, + STATE(4619), 1, sym_decltype_auto, - STATE(6426), 1, + STATE(4620), 1, + sym_qualified_type_identifier, + STATE(5983), 1, sym_argument_list, - STATE(7919), 1, + STATE(7541), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(2738), 2, + STATE(4549), 2, sym_decltype, sym_template_type, - ACTIONS(10173), 4, + ACTIONS(9801), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2752), 7, + STATE(4639), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -558233,214 +519474,56 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [275473] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(7922), 1, - anon_sym_noexcept, - ACTIONS(7924), 1, - anon_sym_throw, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8327), 1, - anon_sym_DASH_GT, - ACTIONS(8329), 1, - anon_sym_requires, - ACTIONS(10106), 1, - anon_sym_LBRACK, - STATE(6751), 1, - sym_function_exception_specification, - STATE(7252), 1, - sym_function_attributes_end, - STATE(7422), 1, - sym_requires_clause, - STATE(7444), 1, - sym_function_postfix, - STATE(7445), 1, - sym_trailing_return_type, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8102), 2, - anon_sym_final, - anon_sym_override, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, - sym_noexcept, - sym_throw_specifier, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10101), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - sym_semgrep_metavar, - [275549] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7922), 1, - anon_sym_noexcept, - ACTIONS(7924), 1, - anon_sym_throw, - ACTIONS(8334), 1, - anon_sym_DASH_GT, - ACTIONS(9899), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9902), 1, - anon_sym_LBRACK, - ACTIONS(9995), 1, - anon_sym_requires, - ACTIONS(10082), 1, - anon_sym___attribute__, - STATE(6743), 1, - sym_function_exception_specification, - STATE(7031), 1, - sym_trailing_return_type, - STATE(7220), 1, - sym_function_attributes_end, - STATE(7270), 1, - sym_requires_clause, - STATE(7298), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9992), 2, - anon_sym_final, - anon_sym_override, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, - sym_noexcept, - sym_throw_specifier, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(9897), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [275625] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5550), 1, - anon_sym_LPAREN2, - ACTIONS(5552), 1, - anon_sym_STAR, - ACTIONS(5554), 1, - anon_sym_AMP_AMP, - ACTIONS(5556), 1, - anon_sym_AMP, - ACTIONS(9105), 1, - anon_sym_LBRACK, - ACTIONS(9107), 1, - anon_sym_const, - STATE(4268), 1, - sym_parameter_list, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(7895), 1, - sym_abstract_declarator, - STATE(6350), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(7534), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - sym_semgrep_metavar, - STATE(7464), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9103), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [275687] = 23, + [229706] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10157), 1, + ACTIONS(8299), 1, anon_sym_LPAREN2, - ACTIONS(10191), 1, + ACTIONS(9819), 1, sym_identifier, - ACTIONS(10195), 1, + ACTIONS(9823), 1, sym_primitive_type, - ACTIONS(10197), 1, + ACTIONS(9825), 1, anon_sym_enum, - ACTIONS(10199), 1, + ACTIONS(9827), 1, anon_sym_class, - ACTIONS(10201), 1, + ACTIONS(9829), 1, anon_sym_struct, - ACTIONS(10203), 1, + ACTIONS(9831), 1, anon_sym_union, - ACTIONS(10205), 1, + ACTIONS(9833), 1, sym_auto, - ACTIONS(10207), 1, + ACTIONS(9835), 1, anon_sym_decltype, - ACTIONS(10209), 1, + ACTIONS(9837), 1, anon_sym_typename, - STATE(4974), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5268), 1, + STATE(1994), 1, sym_type_specifier, - STATE(5723), 1, + STATE(2159), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2266), 1, sym_decltype_auto, - STATE(5878), 1, + STATE(2277), 1, sym_qualified_type_identifier, - STATE(6457), 1, + STATE(5998), 1, sym_argument_list, - STATE(7944), 1, + STATE(7557), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(5472), 2, + STATE(2172), 2, sym_decltype, sym_template_type, - ACTIONS(10193), 4, + ACTIONS(9821), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5731), 7, + STATE(2269), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -558448,159 +519531,113 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [275767] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7922), 1, - anon_sym_noexcept, - ACTIONS(7924), 1, - anon_sym_throw, - ACTIONS(7926), 1, - anon_sym_requires, - ACTIONS(8334), 1, - anon_sym_DASH_GT, - ACTIONS(9899), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9902), 1, - anon_sym_LBRACK, - ACTIONS(10082), 1, - anon_sym___attribute__, - STATE(6733), 1, - sym_function_exception_specification, - STATE(6966), 1, - sym_trailing_return_type, - STATE(7213), 1, - sym_function_attributes_end, - STATE(7270), 1, - sym_requires_clause, - STATE(7298), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(6118), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, - sym_noexcept, - sym_throw_specifier, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(9897), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [275843] = 14, + [229786] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8299), 1, anon_sym_LPAREN2, - ACTIONS(5552), 1, - anon_sym_STAR, - ACTIONS(5554), 1, - anon_sym_AMP_AMP, - ACTIONS(5556), 1, - anon_sym_AMP, - ACTIONS(9105), 1, - anon_sym_LBRACK, - ACTIONS(9107), 1, - anon_sym_const, - STATE(4268), 1, - sym_parameter_list, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(7943), 1, - sym_abstract_declarator, - STATE(6315), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(6258), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - sym_semgrep_metavar, - STATE(7464), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9103), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [275905] = 23, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(9839), 1, + sym_identifier, + ACTIONS(9841), 1, + anon_sym_enum, + ACTIONS(9843), 1, + anon_sym_class, + ACTIONS(9845), 1, + anon_sym_struct, + ACTIONS(9847), 1, + anon_sym_union, + ACTIONS(9849), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(4404), 1, + sym_type_specifier, + STATE(6019), 1, + sym_argument_list, + STATE(7516), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2580), 2, + sym_decltype, + sym_template_type, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [229866] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10157), 1, + ACTIONS(8299), 1, anon_sym_LPAREN2, - ACTIONS(10211), 1, + ACTIONS(9851), 1, sym_identifier, - ACTIONS(10215), 1, + ACTIONS(9855), 1, sym_primitive_type, - ACTIONS(10217), 1, + ACTIONS(9857), 1, anon_sym_enum, - ACTIONS(10219), 1, + ACTIONS(9859), 1, anon_sym_class, - ACTIONS(10221), 1, + ACTIONS(9861), 1, anon_sym_struct, - ACTIONS(10223), 1, + ACTIONS(9863), 1, anon_sym_union, - ACTIONS(10225), 1, + ACTIONS(9865), 1, sym_auto, - ACTIONS(10227), 1, + ACTIONS(9867), 1, anon_sym_decltype, - ACTIONS(10229), 1, + ACTIONS(9869), 1, anon_sym_typename, - STATE(2864), 1, + STATE(4191), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3200), 1, + STATE(4491), 1, sym_type_specifier, - STATE(3861), 1, - sym_qualified_type_identifier, - STATE(3937), 1, + STATE(4804), 1, sym_decltype_auto, - STATE(6445), 1, + STATE(4822), 1, + sym_qualified_type_identifier, + STATE(5944), 1, sym_argument_list, - STATE(7917), 1, + STATE(7545), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(3632), 2, + STATE(4748), 2, sym_decltype, sym_template_type, - ACTIONS(10213), 4, + ACTIONS(9853), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3815), 7, + STATE(4819), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -558608,56 +519645,56 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [275985] = 23, + [229946] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10157), 1, + ACTIONS(8299), 1, anon_sym_LPAREN2, - ACTIONS(10191), 1, + ACTIONS(9851), 1, sym_identifier, - ACTIONS(10195), 1, + ACTIONS(9855), 1, sym_primitive_type, - ACTIONS(10197), 1, + ACTIONS(9857), 1, anon_sym_enum, - ACTIONS(10199), 1, + ACTIONS(9859), 1, anon_sym_class, - ACTIONS(10201), 1, + ACTIONS(9861), 1, anon_sym_struct, - ACTIONS(10203), 1, + ACTIONS(9863), 1, anon_sym_union, - ACTIONS(10205), 1, + ACTIONS(9865), 1, sym_auto, - ACTIONS(10207), 1, + ACTIONS(9867), 1, anon_sym_decltype, - ACTIONS(10209), 1, + ACTIONS(9869), 1, anon_sym_typename, - STATE(4974), 1, + STATE(4191), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5295), 1, + STATE(4498), 1, sym_type_specifier, - STATE(5723), 1, + STATE(4804), 1, sym_decltype_auto, - STATE(5878), 1, + STATE(4822), 1, sym_qualified_type_identifier, - STATE(6459), 1, + STATE(5977), 1, sym_argument_list, - STATE(7944), 1, + STATE(7545), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(5472), 2, + STATE(4748), 2, sym_decltype, sym_template_type, - ACTIONS(10193), 4, + ACTIONS(9853), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5731), 7, + STATE(4819), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -558665,56 +519702,56 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [276065] = 23, + [230026] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10157), 1, + ACTIONS(8299), 1, anon_sym_LPAREN2, - ACTIONS(10231), 1, + ACTIONS(9871), 1, sym_identifier, - ACTIONS(10235), 1, + ACTIONS(9875), 1, sym_primitive_type, - ACTIONS(10237), 1, + ACTIONS(9877), 1, anon_sym_enum, - ACTIONS(10239), 1, + ACTIONS(9879), 1, anon_sym_class, - ACTIONS(10241), 1, + ACTIONS(9881), 1, anon_sym_struct, - ACTIONS(10243), 1, + ACTIONS(9883), 1, anon_sym_union, - ACTIONS(10245), 1, + ACTIONS(9885), 1, sym_auto, - ACTIONS(10247), 1, + ACTIONS(9887), 1, anon_sym_decltype, - ACTIONS(10249), 1, + ACTIONS(9889), 1, anon_sym_typename, - STATE(2466), 1, + STATE(2826), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2737), 1, + STATE(3135), 1, sym_type_specifier, - STATE(3160), 1, - sym_qualified_type_identifier, - STATE(3206), 1, + STATE(3827), 1, sym_decltype_auto, - STATE(6451), 1, + STATE(3836), 1, + sym_qualified_type_identifier, + STATE(6029), 1, sym_argument_list, - STATE(7910), 1, + STATE(7542), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(2971), 2, + STATE(3655), 2, sym_decltype, sym_template_type, - ACTIONS(10233), 4, + ACTIONS(9873), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3222), 7, + STATE(3831), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -558722,451 +519759,113 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [276145] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7922), 1, - anon_sym_noexcept, - ACTIONS(7924), 1, - anon_sym_throw, - ACTIONS(8334), 1, - anon_sym_DASH_GT, - ACTIONS(10103), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10106), 1, - anon_sym_LBRACK, - ACTIONS(10123), 1, - anon_sym_requires, - ACTIONS(10251), 1, - anon_sym___attribute__, - STATE(6744), 1, - sym_function_exception_specification, - STATE(6953), 1, - sym_trailing_return_type, - STATE(7226), 1, - sym_function_attributes_end, - STATE(7270), 1, - sym_requires_clause, - STATE(7338), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10120), 2, - anon_sym_final, - anon_sym_override, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, - sym_noexcept, - sym_throw_specifier, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10101), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [276221] = 7, + [230106] = 23, ACTIONS(3), 1, sym_comment, - STATE(6585), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(10261), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(6323), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(10258), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(10256), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK, - ACTIONS(10254), 18, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_decltype, + ACTIONS(1534), 1, anon_sym_template, - anon_sym_operator, - [276269] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(7922), 1, - anon_sym_noexcept, - ACTIONS(7924), 1, - anon_sym_throw, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8327), 1, - anon_sym_DASH_GT, - ACTIONS(10106), 1, - anon_sym_LBRACK, - ACTIONS(10264), 1, - anon_sym_requires, - STATE(6749), 1, - sym_function_exception_specification, - STATE(7303), 1, - sym_function_attributes_end, - STATE(7422), 1, - sym_requires_clause, - STATE(7444), 1, - sym_function_postfix, - STATE(7454), 1, - sym_trailing_return_type, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10141), 2, - anon_sym_final, - anon_sym_override, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, - sym_noexcept, - sym_throw_specifier, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10101), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - sym_semgrep_metavar, - [276345] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10094), 1, - anon_sym___attribute__, - ACTIONS(10108), 1, - anon_sym_LBRACE, - STATE(6384), 1, - sym_enumerator_list, - STATE(6691), 1, - sym_attribute_specifier, - ACTIONS(6310), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6308), 26, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8299), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(9833), 1, sym_auto, + ACTIONS(9835), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [276393] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5550), 1, - anon_sym_LPAREN2, - ACTIONS(5552), 1, - anon_sym_STAR, - ACTIONS(5554), 1, - anon_sym_AMP_AMP, - ACTIONS(5556), 1, - anon_sym_AMP, - ACTIONS(9105), 1, - anon_sym_LBRACK, - ACTIONS(9107), 1, - anon_sym_const, - STATE(4268), 1, - sym_parameter_list, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(7894), 1, - sym_abstract_declarator, - STATE(6350), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(9250), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - sym_semgrep_metavar, - STATE(7464), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9103), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [276455] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_COLON, - ACTIONS(10267), 1, - anon_sym___attribute__, - ACTIONS(10269), 1, - anon_sym_LBRACE, - STATE(6797), 1, - sym_field_declaration_list, - STATE(6846), 1, - sym_attribute_specifier, - STATE(8489), 1, - sym_virtual_specifier, - STATE(9513), 1, - sym_base_class_clause, - ACTIONS(6078), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(6076), 21, - anon_sym___extension__, - anon_sym___based, + ACTIONS(9891), 1, + sym_identifier, + ACTIONS(9895), 1, + sym_primitive_type, + ACTIONS(9897), 1, + anon_sym_enum, + ACTIONS(9899), 1, + anon_sym_class, + ACTIONS(9901), 1, + anon_sym_struct, + ACTIONS(9903), 1, + anon_sym_union, + ACTIONS(9905), 1, + anon_sym_typename, + STATE(1977), 1, + sym_type_specifier, + STATE(2266), 1, + sym_decltype_auto, + STATE(2277), 1, + sym_qualified_type_identifier, + STATE(2439), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5942), 1, + sym_argument_list, + STATE(7549), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2172), 2, + sym_decltype, + sym_template_type, + ACTIONS(9893), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [276511] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(7922), 1, - anon_sym_noexcept, - ACTIONS(7924), 1, - anon_sym_throw, - ACTIONS(8325), 1, - anon_sym_DASH_GT, - ACTIONS(9899), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9902), 1, - anon_sym_LBRACK, - ACTIONS(9995), 1, - anon_sym_requires, - STATE(6747), 1, - sym_function_exception_specification, - STATE(7031), 1, - sym_trailing_return_type, - STATE(7130), 1, - sym_function_attributes_end, - STATE(7270), 1, - sym_requires_clause, - STATE(7298), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(9992), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(10064), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, - sym_noexcept, - sym_throw_specifier, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(9897), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [276587] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(7922), 1, - anon_sym_noexcept, - ACTIONS(7924), 1, - anon_sym_throw, - ACTIONS(7926), 1, - anon_sym_requires, - ACTIONS(8325), 1, - anon_sym_DASH_GT, - ACTIONS(10103), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10106), 1, - anon_sym_LBRACK, - STATE(6742), 1, - sym_function_exception_specification, - STATE(7033), 1, - sym_trailing_return_type, - STATE(7098), 1, - sym_function_attributes_end, - STATE(7270), 1, - sym_requires_clause, - STATE(7338), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(6118), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(10271), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, - sym_noexcept, - sym_throw_specifier, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10101), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [276663] = 23, + STATE(2269), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [230186] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3317), 1, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8299), 1, + anon_sym_LPAREN2, + ACTIONS(9833), 1, sym_auto, - ACTIONS(3319), 1, + ACTIONS(9835), 1, anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8705), 1, - sym_primitive_type, - ACTIONS(10155), 1, + ACTIONS(9891), 1, sym_identifier, - ACTIONS(10157), 1, - anon_sym_LPAREN2, - ACTIONS(10161), 1, + ACTIONS(9895), 1, + sym_primitive_type, + ACTIONS(9897), 1, anon_sym_enum, - ACTIONS(10163), 1, + ACTIONS(9899), 1, anon_sym_class, - ACTIONS(10165), 1, + ACTIONS(9901), 1, anon_sym_struct, - ACTIONS(10167), 1, + ACTIONS(9903), 1, anon_sym_union, - ACTIONS(10169), 1, + ACTIONS(9905), 1, anon_sym_typename, - STATE(3472), 1, + STATE(1994), 1, + sym_type_specifier, + STATE(2266), 1, sym_decltype_auto, - STATE(3523), 1, + STATE(2277), 1, sym_qualified_type_identifier, - STATE(4823), 1, + STATE(2439), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5109), 1, - sym_type_specifier, - STATE(6513), 1, + STATE(5943), 1, sym_argument_list, - STATE(7878), 1, + STATE(7549), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(3429), 2, + STATE(2172), 2, sym_decltype, sym_template_type, - ACTIONS(10159), 4, + ACTIONS(9893), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3473), 7, + STATE(2269), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -559174,97 +519873,56 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [276743] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10094), 1, - anon_sym___attribute__, - ACTIONS(10108), 1, - anon_sym_LBRACE, - STATE(6380), 1, - sym_enumerator_list, - STATE(6673), 1, - sym_attribute_specifier, - ACTIONS(6239), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6237), 26, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [276791] = 23, + [230266] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10157), 1, + ACTIONS(8299), 1, anon_sym_LPAREN2, - ACTIONS(10274), 1, + ACTIONS(9907), 1, sym_identifier, - ACTIONS(10278), 1, + ACTIONS(9911), 1, sym_primitive_type, - ACTIONS(10280), 1, + ACTIONS(9913), 1, anon_sym_enum, - ACTIONS(10282), 1, + ACTIONS(9915), 1, anon_sym_class, - ACTIONS(10284), 1, + ACTIONS(9917), 1, anon_sym_struct, - ACTIONS(10286), 1, + ACTIONS(9919), 1, anon_sym_union, - ACTIONS(10288), 1, + ACTIONS(9921), 1, sym_auto, - ACTIONS(10290), 1, + ACTIONS(9923), 1, anon_sym_decltype, - ACTIONS(10292), 1, + ACTIONS(9925), 1, anon_sym_typename, - STATE(4630), 1, + STATE(2520), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4784), 1, + STATE(2777), 1, sym_type_specifier, - STATE(5220), 1, - sym_qualified_type_identifier, - STATE(5276), 1, + STATE(2996), 1, sym_decltype_auto, - STATE(6429), 1, + STATE(2999), 1, + sym_qualified_type_identifier, + STATE(5995), 1, sym_argument_list, - STATE(7884), 1, + STATE(7547), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(5180), 2, + STATE(2898), 2, sym_decltype, sym_template_type, - ACTIONS(10276), 4, + ACTIONS(9909), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5282), 7, + STATE(2997), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -559272,111 +519930,56 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [276871] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(7922), 1, - anon_sym_noexcept, - ACTIONS(7924), 1, - anon_sym_throw, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8327), 1, - anon_sym_DASH_GT, - ACTIONS(9902), 1, - anon_sym_LBRACK, - ACTIONS(10091), 1, - anon_sym_requires, - STATE(6757), 1, - sym_function_exception_specification, - STATE(7325), 1, - sym_function_attributes_end, - STATE(7422), 1, - sym_requires_clause, - STATE(7479), 1, - sym_function_postfix, - STATE(7490), 1, - sym_trailing_return_type, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10052), 2, - anon_sym_final, - anon_sym_override, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, - sym_noexcept, - sym_throw_specifier, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(9897), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - sym_semgrep_metavar, - [276947] = 23, + [230346] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10157), 1, + ACTIONS(8299), 1, anon_sym_LPAREN2, - ACTIONS(10274), 1, + ACTIONS(9907), 1, sym_identifier, - ACTIONS(10278), 1, + ACTIONS(9911), 1, sym_primitive_type, - ACTIONS(10280), 1, + ACTIONS(9913), 1, anon_sym_enum, - ACTIONS(10282), 1, + ACTIONS(9915), 1, anon_sym_class, - ACTIONS(10284), 1, + ACTIONS(9917), 1, anon_sym_struct, - ACTIONS(10286), 1, + ACTIONS(9919), 1, anon_sym_union, - ACTIONS(10288), 1, + ACTIONS(9921), 1, sym_auto, - ACTIONS(10290), 1, + ACTIONS(9923), 1, anon_sym_decltype, - ACTIONS(10292), 1, + ACTIONS(9925), 1, anon_sym_typename, - STATE(4630), 1, + STATE(2520), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4788), 1, + STATE(2745), 1, sym_type_specifier, - STATE(5220), 1, - sym_qualified_type_identifier, - STATE(5276), 1, + STATE(2996), 1, sym_decltype_auto, - STATE(6433), 1, + STATE(2999), 1, + sym_qualified_type_identifier, + STATE(5996), 1, sym_argument_list, - STATE(7884), 1, + STATE(7547), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(5180), 2, + STATE(2898), 2, sym_decltype, sym_template_type, - ACTIONS(10276), 4, + ACTIONS(9909), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5282), 7, + STATE(2997), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -559384,56 +519987,56 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [277027] = 23, + [230426] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10157), 1, + ACTIONS(8299), 1, anon_sym_LPAREN2, - ACTIONS(10171), 1, + ACTIONS(9927), 1, sym_identifier, - ACTIONS(10175), 1, + ACTIONS(9931), 1, sym_primitive_type, - ACTIONS(10177), 1, + ACTIONS(9933), 1, anon_sym_enum, - ACTIONS(10179), 1, + ACTIONS(9935), 1, anon_sym_class, - ACTIONS(10181), 1, + ACTIONS(9937), 1, anon_sym_struct, - ACTIONS(10183), 1, + ACTIONS(9939), 1, anon_sym_union, - ACTIONS(10185), 1, + ACTIONS(9941), 1, sym_auto, - ACTIONS(10187), 1, + ACTIONS(9943), 1, anon_sym_decltype, - ACTIONS(10189), 1, + ACTIONS(9945), 1, anon_sym_typename, - STATE(2087), 1, + STATE(2587), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2427), 1, + STATE(2851), 1, sym_type_specifier, - STATE(2753), 1, + STATE(3235), 1, sym_qualified_type_identifier, - STATE(2777), 1, + STATE(3309), 1, sym_decltype_auto, - STATE(6424), 1, + STATE(5966), 1, sym_argument_list, - STATE(7919), 1, + STATE(7544), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(2738), 2, + STATE(3126), 2, sym_decltype, sym_template_type, - ACTIONS(10173), 4, + ACTIONS(9929), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2752), 7, + STATE(3221), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -559441,168 +520044,113 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [277107] = 23, + [230506] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10157), 1, + ACTIONS(8299), 1, anon_sym_LPAREN2, - ACTIONS(10294), 1, + ACTIONS(9927), 1, sym_identifier, - ACTIONS(10298), 1, + ACTIONS(9931), 1, sym_primitive_type, - ACTIONS(10300), 1, + ACTIONS(9933), 1, anon_sym_enum, - ACTIONS(10302), 1, + ACTIONS(9935), 1, anon_sym_class, - ACTIONS(10304), 1, + ACTIONS(9937), 1, anon_sym_struct, - ACTIONS(10306), 1, + ACTIONS(9939), 1, anon_sym_union, - ACTIONS(10308), 1, + ACTIONS(9941), 1, sym_auto, - ACTIONS(10310), 1, + ACTIONS(9943), 1, anon_sym_decltype, - ACTIONS(10312), 1, + ACTIONS(9945), 1, anon_sym_typename, - STATE(2561), 1, + STATE(2587), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2964), 1, + STATE(2835), 1, sym_type_specifier, - STATE(3540), 1, - sym_decltype_auto, - STATE(3544), 1, + STATE(3235), 1, sym_qualified_type_identifier, - STATE(6512), 1, + STATE(3309), 1, + sym_decltype_auto, + STATE(5994), 1, sym_argument_list, - STATE(7915), 1, + STATE(7544), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(3339), 2, + STATE(3126), 2, sym_decltype, sym_template_type, - ACTIONS(10296), 4, + ACTIONS(9929), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3541), 7, + STATE(3221), 7, sym_sized_type_specifier, sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [277187] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(7922), 1, - anon_sym_noexcept, - ACTIONS(7924), 1, - anon_sym_throw, - ACTIONS(7926), 1, - anon_sym_requires, - ACTIONS(8325), 1, - anon_sym_DASH_GT, - ACTIONS(9899), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9902), 1, - anon_sym_LBRACK, - STATE(6738), 1, - sym_function_exception_specification, - STATE(6966), 1, - sym_trailing_return_type, - STATE(7114), 1, - sym_function_attributes_end, - STATE(7270), 1, - sym_requires_clause, - STATE(7298), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(6118), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(10064), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, - sym_noexcept, - sym_throw_specifier, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(9897), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [277263] = 23, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [230586] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, + anon_sym_decltype, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10157), 1, + ACTIONS(8299), 1, anon_sym_LPAREN2, - ACTIONS(10314), 1, - sym_identifier, - ACTIONS(10318), 1, + ACTIONS(8351), 1, sym_primitive_type, - ACTIONS(10320), 1, + ACTIONS(9839), 1, + sym_identifier, + ACTIONS(9841), 1, anon_sym_enum, - ACTIONS(10322), 1, + ACTIONS(9843), 1, anon_sym_class, - ACTIONS(10324), 1, + ACTIONS(9845), 1, anon_sym_struct, - ACTIONS(10326), 1, + ACTIONS(9847), 1, anon_sym_union, - ACTIONS(10328), 1, - sym_auto, - ACTIONS(10330), 1, - anon_sym_decltype, - ACTIONS(10332), 1, + ACTIONS(9849), 1, anon_sym_typename, - STATE(2671), 1, + STATE(2110), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3086), 1, - sym_type_specifier, - STATE(3676), 1, + STATE(2733), 1, sym_decltype_auto, - STATE(3759), 1, + STATE(2741), 1, sym_qualified_type_identifier, - STATE(6479), 1, + STATE(4661), 1, + sym_type_specifier, + STATE(5954), 1, sym_argument_list, - STATE(7873), 1, + STATE(7516), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(3467), 2, + STATE(2580), 2, sym_decltype, sym_template_type, - ACTIONS(10316), 4, + ACTIONS(8349), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3677), 7, + STATE(2673), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -559610,56 +520158,56 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [277343] = 23, + [230666] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2253), 1, + ACTIONS(2251), 1, sym_auto, - ACTIONS(2255), 1, + ACTIONS(2253), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8664), 1, - sym_primitive_type, - ACTIONS(10157), 1, + ACTIONS(8299), 1, anon_sym_LPAREN2, - ACTIONS(10334), 1, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(9839), 1, sym_identifier, - ACTIONS(10338), 1, + ACTIONS(9841), 1, anon_sym_enum, - ACTIONS(10340), 1, + ACTIONS(9843), 1, anon_sym_class, - ACTIONS(10342), 1, + ACTIONS(9845), 1, anon_sym_struct, - ACTIONS(10344), 1, + ACTIONS(9847), 1, anon_sym_union, - ACTIONS(10346), 1, + ACTIONS(9849), 1, anon_sym_typename, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(4064), 1, + STATE(2110), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4508), 1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(4698), 1, sym_type_specifier, - STATE(6504), 1, + STATE(5956), 1, sym_argument_list, - STATE(7902), 1, + STATE(7516), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(2479), 2, + STATE(2580), 2, sym_decltype, sym_template_type, - ACTIONS(10336), 4, + ACTIONS(8349), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2630), 7, + STATE(2673), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -559667,56 +520215,56 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [277423] = 23, + [230746] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10157), 1, + ACTIONS(8299), 1, anon_sym_LPAREN2, - ACTIONS(10314), 1, + ACTIONS(9947), 1, sym_identifier, - ACTIONS(10318), 1, + ACTIONS(9951), 1, sym_primitive_type, - ACTIONS(10320), 1, + ACTIONS(9953), 1, anon_sym_enum, - ACTIONS(10322), 1, + ACTIONS(9955), 1, anon_sym_class, - ACTIONS(10324), 1, + ACTIONS(9957), 1, anon_sym_struct, - ACTIONS(10326), 1, + ACTIONS(9959), 1, anon_sym_union, - ACTIONS(10328), 1, + ACTIONS(9961), 1, sym_auto, - ACTIONS(10330), 1, + ACTIONS(9963), 1, anon_sym_decltype, - ACTIONS(10332), 1, + ACTIONS(9965), 1, anon_sym_typename, - STATE(2671), 1, + STATE(2756), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2998), 1, + STATE(3106), 1, sym_type_specifier, - STATE(3676), 1, + STATE(3580), 1, sym_decltype_auto, - STATE(3759), 1, + STATE(3598), 1, sym_qualified_type_identifier, - STATE(6476), 1, + STATE(5959), 1, sym_argument_list, - STATE(7873), 1, + STATE(7552), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(3467), 2, + STATE(3473), 2, sym_decltype, sym_template_type, - ACTIONS(10316), 4, + ACTIONS(9949), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3677), 7, + STATE(3585), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -559724,63 +520272,21 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [277503] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10348), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(7071), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(7069), 27, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [277545] = 9, + [230826] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6114), 1, + ACTIONS(9724), 1, anon_sym___attribute__, - ACTIONS(6241), 1, + ACTIONS(9742), 1, anon_sym_LBRACE, - ACTIONS(10351), 1, - anon_sym_COLON, - STATE(2304), 1, - sym_enum_base_clause, - STATE(2505), 1, + STATE(5891), 1, sym_enumerator_list, - STATE(2580), 1, + STATE(6193), 1, sym_attribute_specifier, - ACTIONS(6225), 2, + ACTIONS(5983), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6227), 24, + ACTIONS(5981), 26, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -559789,6 +520295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym___extension__, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -559803,115 +520310,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - sym_semgrep_metavar, - [277597] = 23, + [230874] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10157), 1, + ACTIONS(8299), 1, anon_sym_LPAREN2, - ACTIONS(10171), 1, + ACTIONS(9947), 1, sym_identifier, - ACTIONS(10175), 1, + ACTIONS(9951), 1, sym_primitive_type, - ACTIONS(10177), 1, + ACTIONS(9953), 1, anon_sym_enum, - ACTIONS(10179), 1, + ACTIONS(9955), 1, anon_sym_class, - ACTIONS(10181), 1, + ACTIONS(9957), 1, anon_sym_struct, - ACTIONS(10183), 1, + ACTIONS(9959), 1, anon_sym_union, - ACTIONS(10185), 1, + ACTIONS(9961), 1, sym_auto, - ACTIONS(10187), 1, + ACTIONS(9963), 1, anon_sym_decltype, - ACTIONS(10355), 1, + ACTIONS(9965), 1, anon_sym_typename, - STATE(2180), 1, + STATE(2756), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2444), 1, + STATE(3110), 1, sym_type_specifier, - STATE(2753), 1, - sym_qualified_type_identifier, - STATE(2777), 1, + STATE(3580), 1, sym_decltype_auto, - STATE(6418), 1, - sym_argument_list, - STATE(7919), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(2738), 2, - sym_decltype, - sym_template_type, - ACTIONS(10353), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2752), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [277677] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8664), 1, - sym_primitive_type, - ACTIONS(10157), 1, - anon_sym_LPAREN2, - ACTIONS(10334), 1, - sym_identifier, - ACTIONS(10338), 1, - anon_sym_enum, - ACTIONS(10340), 1, - anon_sym_class, - ACTIONS(10342), 1, - anon_sym_struct, - ACTIONS(10344), 1, - anon_sym_union, - ACTIONS(10346), 1, - anon_sym_typename, - STATE(2565), 1, + STATE(3598), 1, sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(4064), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4425), 1, - sym_type_specifier, - STATE(6473), 1, + STATE(6012), 1, sym_argument_list, - STATE(7902), 1, + STATE(7552), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(2479), 2, + STATE(3473), 2, sym_decltype, sym_template_type, - ACTIONS(10336), 4, + ACTIONS(9949), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2630), 7, + STATE(3585), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -559919,89 +520370,146 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [277757] = 24, + [230954] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7903), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7869), 1, anon_sym_AMP_AMP, - ACTIONS(7905), 1, + ACTIONS(7871), 1, anon_sym_AMP, - ACTIONS(7909), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(7922), 1, + ACTIONS(7886), 1, anon_sym_noexcept, - ACTIONS(7924), 1, + ACTIONS(7888), 1, anon_sym_throw, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8603), 1, + ACTIONS(8301), 1, anon_sym_DASH_GT, - ACTIONS(8605), 1, + ACTIONS(8303), 1, anon_sym_requires, - ACTIONS(9902), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(6606), 1, + STATE(6127), 1, sym_ref_qualifier, - STATE(6809), 1, + STATE(6354), 1, sym_function_exception_specification, - STATE(7422), 1, + STATE(7021), 1, sym_requires_clause, - STATE(7479), 1, + STATE(7068), 1, sym_function_postfix, - STATE(7599), 1, + STATE(7225), 1, sym_function_attributes_end, - STATE(7730), 1, + STATE(7338), 1, sym_trailing_return_type, - STATE(8073), 1, + STATE(7721), 1, sym_gnu_asm_expression, - ACTIONS(7918), 2, + ACTIONS(7879), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(8102), 2, + ACTIONS(7921), 2, anon_sym_final, anon_sym_override, - STATE(6828), 2, + STATE(6443), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, + STATE(6619), 2, sym_noexcept, sym_throw_specifier, - STATE(7282), 2, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(9897), 4, + ACTIONS(9640), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_GT2, - [277839] = 9, + [231036] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6114), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7869), 1, + anon_sym_AMP_AMP, + ACTIONS(7871), 1, + anon_sym_AMP, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(6241), 1, - anon_sym_LBRACE, - ACTIONS(10351), 1, - anon_sym_COLON, - STATE(2439), 1, - sym_enum_base_clause, - STATE(2517), 1, - sym_enumerator_list, - STATE(2604), 1, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8301), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9967), 1, + anon_sym_requires, + STATE(6138), 1, + sym_ref_qualifier, + STATE(6350), 1, + sym_function_exception_specification, + STATE(7021), 1, + sym_requires_clause, + STATE(7068), 1, + sym_function_postfix, + STATE(7144), 1, + sym_function_attributes_end, + STATE(7313), 1, + sym_trailing_return_type, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9657), 2, + anon_sym_final, + anon_sym_override, + STATE(6443), 2, sym_attribute_specifier, - ACTIONS(6233), 2, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [231118] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(9779), 1, + anon_sym_LT, + STATE(2206), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2593), 1, + sym_template_argument_list, + ACTIONS(4763), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6235), 24, - anon_sym_COMMA, + ACTIONS(5411), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4771), 22, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym___extension__, anon_sym_LBRACK, anon_sym_constexpr, @@ -560020,56 +520528,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, sym_semgrep_metavar, - [277891] = 23, + [231168] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(9680), 1, + anon_sym_STAR, + ACTIONS(9682), 1, + anon_sym_AMP_AMP, + ACTIONS(9684), 1, + anon_sym_AMP, + ACTIONS(9688), 1, + anon_sym_const, + STATE(4458), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7518), 1, + sym_abstract_declarator, + STATE(6335), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(7388), 5, + anon_sym_RPAREN, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9686), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [231230] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8664), 1, - sym_primitive_type, - ACTIONS(10157), 1, + ACTIONS(8299), 1, anon_sym_LPAREN2, - ACTIONS(10334), 1, + ACTIONS(9970), 1, sym_identifier, - ACTIONS(10338), 1, + ACTIONS(9974), 1, + sym_primitive_type, + ACTIONS(9976), 1, anon_sym_enum, - ACTIONS(10340), 1, + ACTIONS(9978), 1, anon_sym_class, - ACTIONS(10342), 1, + ACTIONS(9980), 1, anon_sym_struct, - ACTIONS(10344), 1, + ACTIONS(9982), 1, anon_sym_union, - ACTIONS(10359), 1, + ACTIONS(9984), 1, + sym_auto, + ACTIONS(9986), 1, + anon_sym_decltype, + ACTIONS(9988), 1, anon_sym_typename, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(3943), 1, + STATE(4460), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4508), 1, + STATE(4783), 1, sym_type_specifier, - STATE(6488), 1, + STATE(5299), 1, + sym_decltype_auto, + STATE(5360), 1, + sym_qualified_type_identifier, + STATE(5973), 1, sym_argument_list, - STATE(7902), 1, + STATE(7574), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(2479), 2, + STATE(5181), 2, sym_decltype, sym_template_type, - ACTIONS(10357), 4, + ACTIONS(9972), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2630), 7, + STATE(5346), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -560077,56 +520633,139 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [277971] = 23, + [231310] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2253), 1, + ACTIONS(9990), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(6485), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6483), 27, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [231352] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute__, + ACTIONS(5702), 1, + anon_sym_COLON, + ACTIONS(9670), 1, + anon_sym_LBRACE, + STATE(5017), 1, + sym_attribute_specifier, + STATE(6312), 1, + sym_field_declaration_list, + STATE(8028), 1, + sym_virtual_specifier, + STATE(8722), 1, + sym_base_class_clause, + ACTIONS(5694), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5696), 21, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + sym_identifier, sym_auto, - ACTIONS(2255), 1, anon_sym_decltype, - ACTIONS(3716), 1, + [231408] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8664), 1, - sym_primitive_type, - ACTIONS(10157), 1, + ACTIONS(8299), 1, anon_sym_LPAREN2, - ACTIONS(10334), 1, + ACTIONS(9970), 1, sym_identifier, - ACTIONS(10338), 1, + ACTIONS(9974), 1, + sym_primitive_type, + ACTIONS(9976), 1, anon_sym_enum, - ACTIONS(10340), 1, + ACTIONS(9978), 1, anon_sym_class, - ACTIONS(10342), 1, + ACTIONS(9980), 1, anon_sym_struct, - ACTIONS(10344), 1, + ACTIONS(9982), 1, anon_sym_union, - ACTIONS(10359), 1, + ACTIONS(9984), 1, + sym_auto, + ACTIONS(9986), 1, + anon_sym_decltype, + ACTIONS(9988), 1, anon_sym_typename, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(3943), 1, + STATE(4460), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4425), 1, + STATE(4800), 1, sym_type_specifier, - STATE(6490), 1, + STATE(5299), 1, + sym_decltype_auto, + STATE(5360), 1, + sym_qualified_type_identifier, + STATE(5979), 1, sym_argument_list, - STATE(7902), 1, + STATE(7574), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(2479), 2, + STATE(5181), 2, sym_decltype, sym_template_type, - ACTIONS(10357), 4, + ACTIONS(9972), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2630), 7, + STATE(5346), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -560134,74 +520773,85 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [278051] = 23, + [231488] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(10157), 1, + STATE(5846), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(5727), 3, anon_sym_LPAREN2, - ACTIONS(10211), 1, - sym_identifier, - ACTIONS(10215), 1, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(9374), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(5725), 15, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, sym_primitive_type, - ACTIONS(10217), 1, anon_sym_enum, - ACTIONS(10219), 1, anon_sym_class, - ACTIONS(10221), 1, anon_sym_struct, - ACTIONS(10223), 1, anon_sym_union, - ACTIONS(10225), 1, + sym_identifier, sym_auto, - ACTIONS(10227), 1, anon_sym_decltype, - ACTIONS(10229), 1, anon_sym_typename, - STATE(2864), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3288), 1, - sym_type_specifier, - STATE(3861), 1, - sym_qualified_type_identifier, - STATE(3937), 1, - sym_decltype_auto, - STATE(6455), 1, - sym_argument_list, - STATE(7917), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(3632), 2, - sym_decltype, - sym_template_type, - ACTIONS(10213), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3815), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [278131] = 6, + anon_sym_template, + [231532] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5727), 1, - anon_sym_AMP, - ACTIONS(10364), 1, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(6725), 1, + sym_auto, + ACTIONS(6727), 1, + anon_sym_decltype, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(9688), 1, anon_sym_const, - STATE(6350), 2, + ACTIONS(9993), 1, + anon_sym_STAR, + ACTIONS(9995), 1, + anon_sym_AMP_AMP, + ACTIONS(9997), 1, + anon_sym_AMP, + STATE(2694), 1, + sym_decltype_auto, + STATE(4453), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7741), 1, + sym_abstract_declarator, + ACTIONS(8717), 2, + anon_sym_RPAREN, + sym_semgrep_metavar, + STATE(6067), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - ACTIONS(10361), 11, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9686), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -560213,61 +520863,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(5729), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + [231600] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8038), 1, + anon_sym_const, + ACTIONS(8719), 1, anon_sym_LPAREN2, + ACTIONS(8727), 1, + anon_sym_LBRACK, + ACTIONS(9696), 1, anon_sym_STAR, + ACTIONS(9698), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + ACTIONS(9700), 1, + anon_sym_AMP, + STATE(4560), 1, + sym_parameter_list, + STATE(6893), 1, + sym_function_declarator_seq, + STATE(7530), 1, + sym_abstract_declarator, + STATE(5850), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(6535), 5, + anon_sym_LBRACK_LBRACK, anon_sym_COLON, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - sym_semgrep_metavar, - [278177] = 14, + STATE(6892), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8030), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [231662] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(8038), 1, + anon_sym_const, + ACTIONS(8719), 1, anon_sym_LPAREN2, - ACTIONS(5552), 1, + ACTIONS(8727), 1, + anon_sym_LBRACK, + ACTIONS(9696), 1, anon_sym_STAR, - ACTIONS(5554), 1, + ACTIONS(9698), 1, anon_sym_AMP_AMP, - ACTIONS(5556), 1, + ACTIONS(9700), 1, anon_sym_AMP, - ACTIONS(9105), 1, - anon_sym_LBRACK, - ACTIONS(9107), 1, - anon_sym_const, - STATE(4268), 1, + STATE(4560), 1, sym_parameter_list, - STATE(7450), 1, + STATE(6893), 1, sym_function_declarator_seq, - STATE(7901), 1, + STATE(7532), 1, sym_abstract_declarator, - STATE(6350), 2, + STATE(5575), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - ACTIONS(9248), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(9173), 5, + anon_sym_LBRACK_LBRACK, anon_sym_COLON, - sym_semgrep_metavar, - STATE(7464), 5, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6892), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(9103), 11, + ACTIONS(8030), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -560279,144 +520959,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [278239] = 23, + [231724] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(10157), 1, + ACTIONS(8038), 1, + anon_sym_const, + ACTIONS(8719), 1, anon_sym_LPAREN2, - ACTIONS(10294), 1, - sym_identifier, - ACTIONS(10298), 1, - sym_primitive_type, - ACTIONS(10300), 1, - anon_sym_enum, - ACTIONS(10302), 1, - anon_sym_class, - ACTIONS(10304), 1, - anon_sym_struct, - ACTIONS(10306), 1, - anon_sym_union, - ACTIONS(10308), 1, - sym_auto, - ACTIONS(10310), 1, - anon_sym_decltype, - ACTIONS(10312), 1, - anon_sym_typename, - STATE(2561), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2941), 1, - sym_type_specifier, - STATE(3540), 1, - sym_decltype_auto, - STATE(3544), 1, - sym_qualified_type_identifier, - STATE(6494), 1, - sym_argument_list, - STATE(7915), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(3339), 2, - sym_decltype, - sym_template_type, - ACTIONS(10296), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3541), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [278319] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(7922), 1, - anon_sym_noexcept, - ACTIONS(7924), 1, - anon_sym_throw, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8327), 1, - anon_sym_DASH_GT, - ACTIONS(8329), 1, - anon_sym_requires, - ACTIONS(9902), 1, + ACTIONS(8727), 1, anon_sym_LBRACK, - STATE(6748), 1, - sym_function_exception_specification, - STATE(7268), 1, - sym_function_attributes_end, - STATE(7422), 1, - sym_requires_clause, - STATE(7479), 1, - sym_function_postfix, - STATE(7481), 1, - sym_trailing_return_type, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8102), 2, + ACTIONS(9696), 1, + anon_sym_STAR, + ACTIONS(9698), 1, + anon_sym_AMP_AMP, + ACTIONS(9700), 1, + anon_sym_AMP, + STATE(4560), 1, + sym_parameter_list, + STATE(6893), 1, + sym_function_declarator_seq, + STATE(7535), 1, + sym_abstract_declarator, + STATE(5575), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(7388), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, anon_sym_final, anon_sym_override, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, - sym_noexcept, - sym_throw_specifier, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(9897), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - sym_semgrep_metavar, - [278395] = 7, + anon_sym_requires, + STATE(6892), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8030), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [231786] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(8610), 1, - sym_identifier, - ACTIONS(8614), 1, - sym_primitive_type, - STATE(5694), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10050), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6022), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8038), 1, + anon_sym_const, + ACTIONS(8719), 1, anon_sym_LPAREN2, + ACTIONS(8727), 1, + anon_sym_LBRACK, + ACTIONS(9696), 1, anon_sym_STAR, + ACTIONS(9698), 1, anon_sym_AMP_AMP, - anon_sym_LBRACK, - anon_sym_GT2, - ACTIONS(6026), 18, + ACTIONS(9700), 1, anon_sym_AMP, + STATE(4560), 1, + sym_parameter_list, + STATE(6893), 1, + sym_function_declarator_seq, + STATE(7536), 1, + sym_abstract_declarator, + STATE(5575), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(9177), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6892), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8030), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -560427,117 +521055,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [278443] = 24, + [231848] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7903), 1, - anon_sym_AMP_AMP, - ACTIONS(7905), 1, - anon_sym_AMP, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(7922), 1, + ACTIONS(7886), 1, anon_sym_noexcept, - ACTIONS(7924), 1, + ACTIONS(7888), 1, anon_sym_throw, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8603), 1, + ACTIONS(8040), 1, anon_sym_DASH_GT, - ACTIONS(9902), 1, + ACTIONS(9783), 1, anon_sym_LBRACK, - ACTIONS(10367), 1, + ACTIONS(9999), 1, + anon_sym___attribute__, + ACTIONS(10002), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10008), 1, anon_sym_requires, - STATE(6608), 1, - sym_ref_qualifier, - STATE(6818), 1, + STATE(6259), 1, sym_function_exception_specification, - STATE(7422), 1, - sym_requires_clause, - STATE(7479), 1, - sym_function_postfix, - STATE(7539), 1, + STATE(6694), 1, sym_function_attributes_end, - STATE(7738), 1, + STATE(6741), 1, sym_trailing_return_type, - STATE(8073), 1, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7773), 1, sym_gnu_asm_expression, - ACTIONS(7918), 2, + ACTIONS(7879), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10052), 2, + ACTIONS(10005), 2, anon_sym_final, anon_sym_override, - STATE(6828), 2, + STATE(6438), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, + STATE(6619), 2, sym_noexcept, sym_throw_specifier, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(9897), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [278525] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(7922), 1, - anon_sym_noexcept, - ACTIONS(7924), 1, - anon_sym_throw, - ACTIONS(8325), 1, - anon_sym_DASH_GT, - ACTIONS(10103), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10106), 1, - anon_sym_LBRACK, - ACTIONS(10123), 1, - anon_sym_requires, - STATE(6752), 1, - sym_function_exception_specification, - STATE(6953), 1, - sym_trailing_return_type, - STATE(7153), 1, - sym_function_attributes_end, - STATE(7270), 1, - sym_requires_clause, - STATE(7338), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(10120), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(10271), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, + STATE(6635), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, - sym_noexcept, - sym_throw_specifier, - STATE(7215), 2, + STATE(6761), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10101), 7, + ACTIONS(9781), 7, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -560545,54 +521110,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [278601] = 21, + [231924] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7922), 1, + ACTIONS(7886), 1, anon_sym_noexcept, - ACTIONS(7924), 1, + ACTIONS(7888), 1, anon_sym_throw, - ACTIONS(7926), 1, - anon_sym_requires, - ACTIONS(8334), 1, + ACTIONS(8040), 1, anon_sym_DASH_GT, - ACTIONS(10103), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10106), 1, + ACTIONS(8042), 1, + anon_sym_requires, + ACTIONS(9783), 1, anon_sym_LBRACK, - ACTIONS(10251), 1, + ACTIONS(9999), 1, anon_sym___attribute__, - STATE(6741), 1, + ACTIONS(10002), 1, + anon_sym_LBRACK_LBRACK, + STATE(6266), 1, sym_function_exception_specification, - STATE(7033), 1, - sym_trailing_return_type, - STATE(7228), 1, + STATE(6685), 1, sym_function_attributes_end, - STATE(7270), 1, - sym_requires_clause, - STATE(7338), 1, + STATE(6707), 1, + sym_trailing_return_type, + STATE(6814), 1, sym_function_postfix, - STATE(8073), 1, + STATE(6852), 1, + sym_requires_clause, + STATE(7773), 1, sym_gnu_asm_expression, - ACTIONS(6118), 2, + ACTIONS(6369), 2, anon_sym_final, anon_sym_override, - ACTIONS(7918), 2, + ACTIONS(7879), 2, anon_sym_asm, anon_sym___asm__, - STATE(6828), 2, + STATE(6438), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, + STATE(6619), 2, sym_noexcept, sym_throw_specifier, - STATE(7215), 2, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10101), 7, + ACTIONS(9781), 7, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -560600,56 +521165,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [278677] = 23, + [232000] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10157), 1, + ACTIONS(8299), 1, anon_sym_LPAREN2, - ACTIONS(10370), 1, + ACTIONS(10011), 1, sym_identifier, - ACTIONS(10374), 1, + ACTIONS(10015), 1, sym_primitive_type, - ACTIONS(10376), 1, + ACTIONS(10017), 1, anon_sym_enum, - ACTIONS(10378), 1, + ACTIONS(10019), 1, anon_sym_class, - ACTIONS(10380), 1, + ACTIONS(10021), 1, anon_sym_struct, - ACTIONS(10382), 1, + ACTIONS(10023), 1, anon_sym_union, - ACTIONS(10384), 1, + ACTIONS(10025), 1, sym_auto, - ACTIONS(10386), 1, + ACTIONS(10027), 1, anon_sym_decltype, - ACTIONS(10388), 1, + ACTIONS(10029), 1, anon_sym_typename, - STATE(4307), 1, + STATE(2700), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4568), 1, + STATE(2971), 1, sym_type_specifier, - STATE(5020), 1, - sym_qualified_type_identifier, - STATE(5074), 1, + STATE(3359), 1, sym_decltype_auto, - STATE(6416), 1, + STATE(3408), 1, + sym_qualified_type_identifier, + STATE(5999), 1, sym_argument_list, - STATE(7875), 1, + STATE(7525), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(4840), 2, + STATE(3262), 2, sym_decltype, sym_template_type, - ACTIONS(10372), 4, + ACTIONS(10013), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5081), 7, + STATE(3370), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -560657,56 +521222,56 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [278757] = 23, + [232080] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10157), 1, + ACTIONS(8299), 1, anon_sym_LPAREN2, - ACTIONS(10390), 1, + ACTIONS(10011), 1, sym_identifier, - ACTIONS(10394), 1, + ACTIONS(10015), 1, sym_primitive_type, - ACTIONS(10396), 1, + ACTIONS(10017), 1, anon_sym_enum, - ACTIONS(10398), 1, + ACTIONS(10019), 1, anon_sym_class, - ACTIONS(10400), 1, + ACTIONS(10021), 1, anon_sym_struct, - ACTIONS(10402), 1, + ACTIONS(10023), 1, anon_sym_union, - ACTIONS(10404), 1, + ACTIONS(10025), 1, sym_auto, - ACTIONS(10406), 1, + ACTIONS(10027), 1, anon_sym_decltype, - ACTIONS(10408), 1, + ACTIONS(10029), 1, anon_sym_typename, - STATE(2220), 1, + STATE(2700), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2488), 1, + STATE(2941), 1, sym_type_specifier, - STATE(2913), 1, + STATE(3359), 1, sym_decltype_auto, - STATE(2955), 1, + STATE(3408), 1, sym_qualified_type_identifier, - STATE(6439), 1, + STATE(6005), 1, sym_argument_list, - STATE(7893), 1, + STATE(7525), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(2760), 2, + STATE(3262), 2, sym_decltype, sym_template_type, - ACTIONS(10392), 4, + ACTIONS(10013), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2917), 7, + STATE(3370), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -560714,113 +521279,204 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [278837] = 23, + [232160] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(10157), 1, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8040), 1, + anon_sym_DASH_GT, + ACTIONS(8042), 1, + anon_sym_requires, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9702), 1, + anon_sym___attribute__, + ACTIONS(9705), 1, + anon_sym_LBRACK_LBRACK, + STATE(6260), 1, + sym_function_exception_specification, + STATE(6683), 1, + sym_function_attributes_end, + STATE(6760), 1, + sym_trailing_return_type, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 7, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(10390), 1, - sym_identifier, - ACTIONS(10394), 1, - sym_primitive_type, - ACTIONS(10396), 1, - anon_sym_enum, - ACTIONS(10398), 1, - anon_sym_class, - ACTIONS(10400), 1, - anon_sym_struct, - ACTIONS(10402), 1, - anon_sym_union, - ACTIONS(10404), 1, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [232236] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(6725), 1, sym_auto, - ACTIONS(10406), 1, + ACTIONS(6727), 1, anon_sym_decltype, - ACTIONS(10408), 1, - anon_sym_typename, - STATE(2220), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2491), 1, - sym_type_specifier, - STATE(2913), 1, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(9688), 1, + anon_sym_const, + ACTIONS(9993), 1, + anon_sym_STAR, + ACTIONS(9995), 1, + anon_sym_AMP_AMP, + ACTIONS(9997), 1, + anon_sym_AMP, + STATE(2694), 1, sym_decltype_auto, - STATE(2955), 1, - sym_qualified_type_identifier, - STATE(6441), 1, - sym_argument_list, - STATE(7893), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(2760), 2, - sym_decltype, - sym_template_type, - ACTIONS(10392), 4, + STATE(4453), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7749), 1, + sym_abstract_declarator, + ACTIONS(8733), 2, + anon_sym_RPAREN, + sym_semgrep_metavar, + STATE(6150), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9686), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [232304] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(7517), 1, + anon_sym_LT, + STATE(1833), 1, + sym_template_argument_list, + STATE(5585), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4763), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_COLON, + ACTIONS(8775), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2917), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [278917] = 23, + ACTIONS(4771), 20, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym___extension__, + anon_sym_LBRACK_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [232354] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10157), 1, + ACTIONS(3358), 1, + sym_auto, + ACTIONS(3360), 1, + anon_sym_decltype, + ACTIONS(8299), 1, anon_sym_LPAREN2, - ACTIONS(10370), 1, - sym_identifier, - ACTIONS(10374), 1, + ACTIONS(8449), 1, sym_primitive_type, - ACTIONS(10376), 1, + ACTIONS(10031), 1, + sym_identifier, + ACTIONS(10033), 1, anon_sym_enum, - ACTIONS(10378), 1, + ACTIONS(10035), 1, anon_sym_class, - ACTIONS(10380), 1, + ACTIONS(10037), 1, anon_sym_struct, - ACTIONS(10382), 1, + ACTIONS(10039), 1, anon_sym_union, - ACTIONS(10384), 1, - sym_auto, - ACTIONS(10386), 1, - anon_sym_decltype, - ACTIONS(10388), 1, + ACTIONS(10041), 1, anon_sym_typename, - STATE(4307), 1, + STATE(2573), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4555), 1, - sym_type_specifier, - STATE(5020), 1, + STATE(3240), 1, sym_qualified_type_identifier, - STATE(5074), 1, + STATE(3292), 1, sym_decltype_auto, - STATE(6417), 1, + STATE(4751), 1, + sym_type_specifier, + STATE(6032), 1, sym_argument_list, - STATE(7875), 1, + STATE(7556), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(4840), 2, + STATE(2572), 2, sym_decltype, sym_template_type, - ACTIONS(10372), 4, + ACTIONS(3324), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5081), 7, + STATE(3293), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -560828,56 +521484,56 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [278997] = 23, + [232434] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10157), 1, + ACTIONS(3358), 1, + sym_auto, + ACTIONS(3360), 1, + anon_sym_decltype, + ACTIONS(8299), 1, anon_sym_LPAREN2, - ACTIONS(10410), 1, - sym_identifier, - ACTIONS(10414), 1, + ACTIONS(8449), 1, sym_primitive_type, - ACTIONS(10416), 1, + ACTIONS(10031), 1, + sym_identifier, + ACTIONS(10033), 1, anon_sym_enum, - ACTIONS(10418), 1, + ACTIONS(10035), 1, anon_sym_class, - ACTIONS(10420), 1, + ACTIONS(10037), 1, anon_sym_struct, - ACTIONS(10422), 1, + ACTIONS(10039), 1, anon_sym_union, - ACTIONS(10424), 1, - sym_auto, - ACTIONS(10426), 1, - anon_sym_decltype, - ACTIONS(10428), 1, + ACTIONS(10041), 1, anon_sym_typename, - STATE(2938), 1, + STATE(2573), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3360), 1, - sym_type_specifier, - STATE(4075), 1, + STATE(3240), 1, sym_qualified_type_identifier, - STATE(4084), 1, + STATE(3292), 1, sym_decltype_auto, - STATE(6486), 1, + STATE(4773), 1, + sym_type_specifier, + STATE(6042), 1, sym_argument_list, - STATE(7909), 1, + STATE(7556), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(3946), 2, + STATE(2572), 2, sym_decltype, sym_template_type, - ACTIONS(10412), 4, + ACTIONS(3324), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4091), 7, + STATE(3293), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -560885,56 +521541,56 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [279077] = 23, + [232514] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10157), 1, + ACTIONS(8299), 1, anon_sym_LPAREN2, - ACTIONS(10171), 1, + ACTIONS(9819), 1, sym_identifier, - ACTIONS(10175), 1, + ACTIONS(9823), 1, sym_primitive_type, - ACTIONS(10177), 1, + ACTIONS(9825), 1, anon_sym_enum, - ACTIONS(10179), 1, + ACTIONS(9827), 1, anon_sym_class, - ACTIONS(10181), 1, + ACTIONS(9829), 1, anon_sym_struct, - ACTIONS(10183), 1, + ACTIONS(9831), 1, anon_sym_union, - ACTIONS(10185), 1, + ACTIONS(9833), 1, sym_auto, - ACTIONS(10187), 1, + ACTIONS(9835), 1, anon_sym_decltype, - ACTIONS(10355), 1, + ACTIONS(9837), 1, anon_sym_typename, - STATE(2180), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2427), 1, + STATE(1977), 1, sym_type_specifier, - STATE(2753), 1, - sym_qualified_type_identifier, - STATE(2777), 1, + STATE(2159), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2266), 1, sym_decltype_auto, - STATE(6497), 1, + STATE(2277), 1, + sym_qualified_type_identifier, + STATE(5961), 1, sym_argument_list, - STATE(7919), 1, + STATE(7557), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(2738), 2, + STATE(2172), 2, sym_decltype, sym_template_type, - ACTIONS(10353), 4, + ACTIONS(9821), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2752), 7, + STATE(2269), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -560942,56 +521598,111 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [279157] = 23, + [232594] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8040), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9702), 1, + anon_sym___attribute__, + ACTIONS(9705), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9711), 1, + anon_sym_requires, + STATE(6256), 1, + sym_function_exception_specification, + STATE(6693), 1, + sym_function_attributes_end, + STATE(6734), 1, + sym_trailing_return_type, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9708), 2, + anon_sym_final, + anon_sym_override, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [232670] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10157), 1, + ACTIONS(8299), 1, anon_sym_LPAREN2, - ACTIONS(10410), 1, + ACTIONS(9871), 1, sym_identifier, - ACTIONS(10414), 1, + ACTIONS(9875), 1, sym_primitive_type, - ACTIONS(10416), 1, + ACTIONS(9877), 1, anon_sym_enum, - ACTIONS(10418), 1, + ACTIONS(9879), 1, anon_sym_class, - ACTIONS(10420), 1, + ACTIONS(9881), 1, anon_sym_struct, - ACTIONS(10422), 1, + ACTIONS(9883), 1, anon_sym_union, - ACTIONS(10424), 1, + ACTIONS(9885), 1, sym_auto, - ACTIONS(10426), 1, + ACTIONS(9887), 1, anon_sym_decltype, - ACTIONS(10428), 1, + ACTIONS(9889), 1, anon_sym_typename, - STATE(2938), 1, + STATE(2826), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3450), 1, + STATE(3183), 1, sym_type_specifier, - STATE(4075), 1, - sym_qualified_type_identifier, - STATE(4084), 1, + STATE(3827), 1, sym_decltype_auto, - STATE(6517), 1, + STATE(3836), 1, + sym_qualified_type_identifier, + STATE(5981), 1, sym_argument_list, - STATE(7909), 1, + STATE(7542), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(3946), 2, + STATE(3655), 2, sym_decltype, sym_template_type, - ACTIONS(10412), 4, + ACTIONS(9873), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4091), 7, + STATE(3831), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -560999,56 +521710,56 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [279237] = 23, + [232750] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, + anon_sym_decltype, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10157), 1, + ACTIONS(8299), 1, anon_sym_LPAREN2, - ACTIONS(10231), 1, - sym_identifier, - ACTIONS(10235), 1, + ACTIONS(8351), 1, sym_primitive_type, - ACTIONS(10237), 1, + ACTIONS(9839), 1, + sym_identifier, + ACTIONS(9841), 1, anon_sym_enum, - ACTIONS(10239), 1, + ACTIONS(9843), 1, anon_sym_class, - ACTIONS(10241), 1, + ACTIONS(9845), 1, anon_sym_struct, - ACTIONS(10243), 1, + ACTIONS(9847), 1, anon_sym_union, - ACTIONS(10245), 1, - sym_auto, - ACTIONS(10247), 1, - anon_sym_decltype, - ACTIONS(10249), 1, + ACTIONS(9849), 1, anon_sym_typename, - STATE(2466), 1, + STATE(2110), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2678), 1, - sym_type_specifier, - STATE(3160), 1, - sym_qualified_type_identifier, - STATE(3206), 1, + STATE(2733), 1, sym_decltype_auto, - STATE(6452), 1, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(4417), 1, + sym_type_specifier, + STATE(6043), 1, sym_argument_list, - STATE(7910), 1, + STATE(7516), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(2971), 2, + STATE(2580), 2, sym_decltype, sym_template_type, - ACTIONS(10233), 4, + ACTIONS(8349), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3222), 7, + STATE(2673), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -561056,113 +521767,44 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [279317] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10094), 1, - anon_sym___attribute__, - STATE(6665), 1, - sym_attribute_specifier, - ACTIONS(6424), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6422), 27, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [279360] = 14, + [232830] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(9105), 1, + ACTIONS(8765), 1, anon_sym_LBRACK, - ACTIONS(9107), 1, - anon_sym_const, - ACTIONS(10430), 1, + ACTIONS(9680), 1, anon_sym_STAR, - ACTIONS(10432), 1, + ACTIONS(9682), 1, anon_sym_AMP_AMP, - ACTIONS(10434), 1, + ACTIONS(9684), 1, anon_sym_AMP, - STATE(4027), 1, + ACTIONS(9688), 1, + anon_sym_const, + STATE(4458), 1, sym_parameter_list, - STATE(7450), 1, + STATE(7023), 1, sym_function_declarator_seq, - STATE(7782), 1, + STATE(7562), 1, sym_abstract_declarator, - STATE(6350), 2, + STATE(5841), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - ACTIONS(7534), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - STATE(7464), 5, + ACTIONS(6535), 5, + anon_sym_RPAREN, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + STATE(7113), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(9103), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [279421] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5479), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5477), 22, + ACTIONS(9686), 11, anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -561173,187 +521815,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [279460] = 7, + [232892] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(8610), 1, - sym_identifier, - ACTIONS(8614), 1, - sym_primitive_type, - STATE(6271), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10153), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6022), 8, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5455), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACE, + ACTIONS(8765), 1, anon_sym_LBRACK, - anon_sym_GT2, - ACTIONS(6026), 16, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - [279507] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10094), 1, - anon_sym___attribute__, - STATE(6548), 1, - sym_attribute_specifier, - ACTIONS(6388), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6386), 27, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(9680), 1, anon_sym_STAR, + ACTIONS(9682), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [279550] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10094), 1, - anon_sym___attribute__, - STATE(6581), 1, - sym_attribute_specifier, - ACTIONS(6392), 2, + ACTIONS(9684), 1, anon_sym_AMP, + ACTIONS(9688), 1, anon_sym_const, - ACTIONS(6390), 27, - anon_sym_COMMA, + STATE(4458), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7567), 1, + sym_abstract_declarator, + STATE(6335), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(9173), 5, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [279593] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7983), 1, - sym_identifier, - ACTIONS(7987), 1, - sym_primitive_type, - STATE(6294), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10436), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6022), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(6026), 16, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, sym_semgrep_metavar, - [279640] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10094), 1, - anon_sym___attribute__, - STATE(6668), 1, - sym_attribute_specifier, - ACTIONS(6428), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6426), 27, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9686), 11, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -561364,62 +521863,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [279683] = 5, + [232954] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10094), 1, + ACTIONS(9724), 1, anon_sym___attribute__, - STATE(6529), 1, - sym_attribute_specifier, - ACTIONS(6432), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6430), 27, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, + ACTIONS(9742), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [279726] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10094), 1, - anon_sym___attribute__, - STATE(6521), 1, + STATE(5901), 1, + sym_enumerator_list, + STATE(6079), 1, sym_attribute_specifier, - ACTIONS(6436), 2, + ACTIONS(5989), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6434), 27, + ACTIONS(5987), 26, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -561427,7 +521885,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, @@ -561447,125 +521904,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [279769] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5483), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5481), 22, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [279808] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5502), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5500), 22, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [279847] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5498), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5496), 22, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [279886] = 5, + [233002] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10094), 1, + ACTIONS(9724), 1, anon_sym___attribute__, - STATE(6528), 1, + STATE(6062), 1, sym_attribute_specifier, - ACTIONS(6454), 2, + ACTIONS(6086), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6452), 27, + ACTIONS(6084), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -561593,17 +521942,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [279929] = 5, + [233045] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10094), 1, + ACTIONS(6365), 1, anon_sym___attribute__, - STATE(6530), 1, + ACTIONS(6491), 1, + anon_sym_LBRACE, + ACTIONS(10043), 1, + anon_sym_COLON, + STATE(2504), 1, + sym_enum_base_clause, + STATE(2668), 1, + sym_enumerator_list, + STATE(2739), 1, sym_attribute_specifier, - ACTIONS(6322), 2, + ACTIONS(6514), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6320), 27, + ACTIONS(6516), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -561611,9 +521968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -561628,20 +521983,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [279972] = 5, + [233096] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10094), 1, + ACTIONS(6365), 1, anon_sym___attribute__, - STATE(6531), 1, + ACTIONS(6491), 1, + anon_sym_LBRACE, + ACTIONS(10043), 1, + anon_sym_COLON, + STATE(2503), 1, + sym_enum_base_clause, + STATE(2537), 1, + sym_enumerator_list, + STATE(2710), 1, sym_attribute_specifier, - ACTIONS(6458), 2, + ACTIONS(6520), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6456), 27, + ACTIONS(6522), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -561649,9 +522010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -561666,51 +522025,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [280015] = 20, + [233147] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2259), 1, + ACTIONS(2257), 1, anon_sym_operator, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3704), 1, + ACTIONS(3251), 1, anon_sym_LPAREN2, - ACTIONS(3706), 1, + ACTIONS(3253), 1, anon_sym_TILDE, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8124), 1, + ACTIONS(6533), 1, sym_identifier, - ACTIONS(8126), 1, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7760), 1, anon_sym_STAR, - ACTIONS(8128), 1, + ACTIONS(7762), 1, anon_sym_AMP_AMP, - ACTIONS(8130), 1, + ACTIONS(7764), 1, anon_sym_AMP, - ACTIONS(8132), 1, - anon_sym_LBRACK, - STATE(7205), 1, - sym_scope_resolution, - STATE(7254), 1, + STATE(6618), 1, sym_declarator, - STATE(8568), 1, + STATE(6740), 1, + sym_scope_resolution, + STATE(8447), 1, sym_init_declarator, - STATE(9805), 1, + STATE(9615), 1, sym_declaration_declarator, - STATE(9949), 1, + STATE(9783), 1, sym_ms_based_modifier, - STATE(9982), 3, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7634), 11, + STATE(7305), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -561722,17 +522079,17 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [280088] = 5, + [233220] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10094), 1, + ACTIONS(9724), 1, anon_sym___attribute__, - STATE(6533), 1, + STATE(6174), 1, sym_attribute_specifier, - ACTIONS(6462), 2, + ACTIONS(6022), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6460), 27, + ACTIONS(6020), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -561760,17 +522117,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [280131] = 5, + [233263] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10094), 1, + ACTIONS(9724), 1, anon_sym___attribute__, - STATE(6539), 1, + STATE(6192), 1, sym_attribute_specifier, - ACTIONS(6494), 2, + ACTIONS(6026), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6492), 27, + ACTIONS(6024), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -561798,17 +522155,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [280174] = 5, + [233306] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10094), 1, + ACTIONS(9724), 1, anon_sym___attribute__, - STATE(6540), 1, + STATE(6208), 1, sym_attribute_specifier, - ACTIONS(6366), 2, + ACTIONS(6032), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6364), 27, + ACTIONS(6030), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -561836,64 +522193,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [280217] = 3, + [233349] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5509), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5507), 22, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, + ACTIONS(9724), 1, + anon_sym___attribute__, + STATE(6048), 1, + sym_attribute_specifier, + ACTIONS(6036), 2, + anon_sym_AMP, anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [280256] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5513), 9, + ACTIONS(6034), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5511), 22, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_const, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -561904,113 +522224,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - sym_identifier, sym_auto, anon_sym_decltype, - [280295] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [233392] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5458), 9, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8198), 1, + anon_sym_DASH_GT, + ACTIONS(8213), 1, + anon_sym_requires, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9749), 1, + anon_sym_LBRACK_LBRACK, + STATE(6276), 1, + sym_function_exception_specification, + STATE(6689), 1, + sym_function_attributes_end, + STATE(6717), 1, + sym_trailing_return_type, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9746), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 6, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5456), 22, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [280334] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8124), 1, - sym_identifier, - ACTIONS(8126), 1, - anon_sym_STAR, - ACTIONS(8128), 1, - anon_sym_AMP_AMP, - ACTIONS(8130), 1, - anon_sym_AMP, - ACTIONS(8132), 1, - anon_sym_LBRACK, - STATE(7205), 1, - sym_scope_resolution, - STATE(7339), 1, - sym_declarator, - STATE(8568), 1, - sym_init_declarator, - STATE(9949), 1, - sym_ms_based_modifier, - STATE(10463), 1, - sym_declaration_declarator, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - [280407] = 6, + anon_sym_try, + [233467] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, + ACTIONS(4784), 1, anon_sym_COLON_COLON, - ACTIONS(10438), 1, + ACTIONS(9722), 1, anon_sym_LT, - STATE(6617), 1, + STATE(1833), 1, sym_template_argument_list, - ACTIONS(4853), 3, + ACTIONS(4789), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACE, - ACTIONS(6197), 25, + ACTIONS(5938), 25, anon_sym___extension__, anon_sym___attribute__, anon_sym___based, @@ -562036,335 +522324,372 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - [280452] = 20, + [233512] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8124), 1, - sym_identifier, - ACTIONS(8126), 1, - anon_sym_STAR, - ACTIONS(8128), 1, - anon_sym_AMP_AMP, - ACTIONS(8130), 1, - anon_sym_AMP, - ACTIONS(8132), 1, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8224), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(7205), 1, - sym_scope_resolution, - STATE(7254), 1, - sym_declarator, - STATE(8568), 1, - sym_init_declarator, - STATE(9949), 1, - sym_ms_based_modifier, - STATE(10258), 1, - sym_declaration_declarator, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - [280525] = 3, + ACTIONS(9705), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9711), 1, + anon_sym_requires, + STATE(6282), 1, + sym_function_exception_specification, + STATE(6727), 1, + sym_function_attributes_end, + STATE(6734), 1, + sym_trailing_return_type, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(9708), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9746), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [233587] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(8402), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(8404), 27, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(7875), 1, anon_sym___attribute__, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8211), 1, + anon_sym_DASH_GT, + ACTIONS(8213), 1, + anon_sym_requires, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9749), 1, anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_virtual, - anon_sym_alignas, - [280564] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(10438), 1, - anon_sym_LT, - STATE(6617), 1, - sym_template_argument_list, - ACTIONS(5467), 3, + STATE(6286), 1, + sym_function_exception_specification, + STATE(6717), 1, + sym_trailing_return_type, + STATE(6852), 1, + sym_requires_clause, + STATE(6875), 1, + sym_function_attributes_end, + STATE(6904), 1, + sym_function_postfix, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, anon_sym_LBRACE, - ACTIONS(5460), 25, - anon_sym___extension__, + anon_sym_EQ, + anon_sym_GT2, + [233662] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8042), 1, + anon_sym_requires, + ACTIONS(8207), 1, anon_sym___attribute__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, + ACTIONS(8224), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9705), 1, + anon_sym_LBRACK_LBRACK, + STATE(6271), 1, + sym_function_exception_specification, + STATE(6716), 1, + sym_function_attributes_end, + STATE(6760), 1, + sym_trailing_return_type, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, anon_sym_final, anon_sym_override, - [280609] = 20, + ACTIONS(9746), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [233737] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8124), 1, - sym_identifier, - ACTIONS(8126), 1, - anon_sym_STAR, - ACTIONS(8128), 1, - anon_sym_AMP_AMP, - ACTIONS(8130), 1, - anon_sym_AMP, - ACTIONS(8132), 1, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8211), 1, + anon_sym_DASH_GT, + ACTIONS(8213), 1, + anon_sym_requires, + ACTIONS(9783), 1, anon_sym_LBRACK, - STATE(7097), 1, - sym_declarator, - STATE(7205), 1, - sym_scope_resolution, - STATE(8568), 1, - sym_init_declarator, - STATE(9949), 1, - sym_ms_based_modifier, - STATE(10071), 1, - sym_declaration_declarator, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - [280682] = 20, + ACTIONS(10045), 1, + anon_sym_LBRACK_LBRACK, + STATE(6287), 1, + sym_function_exception_specification, + STATE(6720), 1, + sym_trailing_return_type, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(6876), 1, + sym_function_attributes_end, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [233812] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8124), 1, - sym_identifier, - ACTIONS(8126), 1, - anon_sym_STAR, - ACTIONS(8128), 1, - anon_sym_AMP_AMP, - ACTIONS(8130), 1, - anon_sym_AMP, - ACTIONS(8132), 1, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8211), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(7205), 1, - sym_scope_resolution, - STATE(7254), 1, - sym_declarator, - STATE(8568), 1, - sym_init_declarator, - STATE(9839), 1, - sym_declaration_declarator, - STATE(9949), 1, - sym_ms_based_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - [280755] = 20, + ACTIONS(9749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9752), 1, + anon_sym_requires, + STATE(6273), 1, + sym_function_exception_specification, + STATE(6769), 1, + sym_trailing_return_type, + STATE(6852), 1, + sym_requires_clause, + STATE(6888), 1, + sym_function_attributes_end, + STATE(6904), 1, + sym_function_postfix, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9708), 2, + anon_sym_final, + anon_sym_override, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [233887] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8124), 1, - sym_identifier, - ACTIONS(8126), 1, - anon_sym_STAR, - ACTIONS(8128), 1, - anon_sym_AMP_AMP, - ACTIONS(8130), 1, - anon_sym_AMP, - ACTIONS(8132), 1, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8211), 1, + anon_sym_DASH_GT, + ACTIONS(9783), 1, anon_sym_LBRACK, - STATE(7205), 1, - sym_scope_resolution, - STATE(7254), 1, - sym_declarator, - STATE(8568), 1, - sym_init_declarator, - STATE(9949), 1, - sym_ms_based_modifier, - STATE(10033), 1, - sym_declaration_declarator, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - [280828] = 20, + ACTIONS(10045), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10048), 1, + anon_sym_requires, + STATE(6274), 1, + sym_function_exception_specification, + STATE(6773), 1, + sym_trailing_return_type, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(6889), 1, + sym_function_attributes_end, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10005), 2, + anon_sym_final, + anon_sym_override, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [233962] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2259), 1, + ACTIONS(2257), 1, anon_sym_operator, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3704), 1, + ACTIONS(3251), 1, anon_sym_LPAREN2, - ACTIONS(3706), 1, + ACTIONS(3253), 1, anon_sym_TILDE, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8124), 1, + ACTIONS(6533), 1, sym_identifier, - ACTIONS(8126), 1, - anon_sym_STAR, - ACTIONS(8128), 1, - anon_sym_AMP_AMP, - ACTIONS(8130), 1, - anon_sym_AMP, - ACTIONS(8132), 1, + ACTIONS(7758), 1, anon_sym_LBRACK, - STATE(7148), 1, - sym_declarator, - STATE(7205), 1, + ACTIONS(7760), 1, + anon_sym_STAR, + ACTIONS(7762), 1, + anon_sym_AMP_AMP, + ACTIONS(7764), 1, + anon_sym_AMP, + STATE(6740), 1, sym_scope_resolution, - STATE(8568), 1, + STATE(6870), 1, + sym_declarator, + STATE(8447), 1, sym_init_declarator, - STATE(9839), 1, - sym_declaration_declarator, - STATE(9949), 1, + STATE(9783), 1, sym_ms_based_modifier, - STATE(9982), 3, + STATE(9968), 1, + sym_declaration_declarator, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7634), 11, + STATE(7305), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -562376,48 +522701,236 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [280901] = 20, + [234035] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(9688), 1, + anon_sym_const, + ACTIONS(9755), 1, + anon_sym_STAR, + ACTIONS(9757), 1, + anon_sym_AMP_AMP, + ACTIONS(9759), 1, + anon_sym_AMP, + STATE(4564), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7622), 1, + sym_abstract_declarator, + STATE(5887), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(6535), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9686), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [234096] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(9688), 1, + anon_sym_const, + ACTIONS(9755), 1, + anon_sym_STAR, + ACTIONS(9757), 1, + anon_sym_AMP_AMP, + ACTIONS(9759), 1, + anon_sym_AMP, + STATE(4564), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7626), 1, + sym_abstract_declarator, + STATE(6335), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(9173), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9686), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [234157] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(9688), 1, + anon_sym_const, + ACTIONS(9755), 1, + anon_sym_STAR, + ACTIONS(9757), 1, + anon_sym_AMP_AMP, + ACTIONS(9759), 1, + anon_sym_AMP, + STATE(4564), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7581), 1, + sym_abstract_declarator, + STATE(6335), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(7388), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9686), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [234218] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(9688), 1, + anon_sym_const, + ACTIONS(9755), 1, + anon_sym_STAR, + ACTIONS(9757), 1, + anon_sym_AMP_AMP, + ACTIONS(9759), 1, + anon_sym_AMP, + STATE(4564), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7592), 1, + sym_abstract_declarator, + STATE(6335), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(9177), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9686), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [234279] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2259), 1, + ACTIONS(2257), 1, anon_sym_operator, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3704), 1, + ACTIONS(3251), 1, anon_sym_LPAREN2, - ACTIONS(3706), 1, + ACTIONS(3253), 1, anon_sym_TILDE, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8124), 1, + ACTIONS(6533), 1, sym_identifier, - ACTIONS(8126), 1, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7760), 1, anon_sym_STAR, - ACTIONS(8128), 1, + ACTIONS(7762), 1, anon_sym_AMP_AMP, - ACTIONS(8130), 1, + ACTIONS(7764), 1, anon_sym_AMP, - ACTIONS(8132), 1, - anon_sym_LBRACK, - STATE(7144), 1, + STATE(6639), 1, sym_declarator, - STATE(7205), 1, + STATE(6740), 1, sym_scope_resolution, - STATE(8568), 1, + STATE(8447), 1, sym_init_declarator, - STATE(9949), 1, - sym_ms_based_modifier, - STATE(10258), 1, + STATE(9589), 1, sym_declaration_declarator, - STATE(9982), 3, + STATE(9783), 1, + sym_ms_based_modifier, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7634), 11, + STATE(7305), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -562429,32 +522942,27 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [280974] = 9, + [234352] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6788), 1, + ACTIONS(9724), 1, anon_sym___attribute__, - ACTIONS(7114), 1, - anon_sym_LBRACE, - ACTIONS(10440), 1, - anon_sym_COLON, - STATE(3019), 1, - sym_enum_base_clause, - STATE(3115), 1, - sym_enumerator_list, - STATE(3480), 1, + STATE(6078), 1, sym_attribute_specifier, - ACTIONS(6225), 2, + ACTIONS(6052), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6227), 23, - anon_sym_DOT_DOT_DOT, + ACTIONS(6050), 27, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -562470,33 +522978,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [281025] = 9, + [234395] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6788), 1, + ACTIONS(9724), 1, anon_sym___attribute__, - ACTIONS(7114), 1, - anon_sym_LBRACE, - ACTIONS(10440), 1, - anon_sym_COLON, - STATE(3025), 1, - sym_enum_base_clause, - STATE(3139), 1, - sym_enumerator_list, - STATE(3487), 1, + STATE(6081), 1, sym_attribute_specifier, - ACTIONS(6233), 2, + ACTIONS(6062), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6235), 23, - anon_sym_DOT_DOT_DOT, + ACTIONS(6060), 27, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -562512,49 +523016,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [281076] = 20, + [234438] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2259), 1, + ACTIONS(2257), 1, anon_sym_operator, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3704), 1, + ACTIONS(3251), 1, anon_sym_LPAREN2, - ACTIONS(3706), 1, + ACTIONS(3253), 1, anon_sym_TILDE, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8124), 1, + ACTIONS(6533), 1, sym_identifier, - ACTIONS(8126), 1, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7760), 1, anon_sym_STAR, - ACTIONS(8128), 1, + ACTIONS(7762), 1, anon_sym_AMP_AMP, - ACTIONS(8130), 1, + ACTIONS(7764), 1, anon_sym_AMP, - ACTIONS(8132), 1, - anon_sym_LBRACK, - STATE(7205), 1, + STATE(6740), 1, sym_scope_resolution, - STATE(7254), 1, + STATE(6870), 1, sym_declarator, - STATE(8568), 1, + STATE(8447), 1, sym_init_declarator, - STATE(9787), 1, + STATE(9543), 1, sym_declaration_declarator, - STATE(9949), 1, + STATE(9783), 1, sym_ms_based_modifier, - STATE(9982), 3, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7634), 11, + STATE(7305), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -562566,48 +523071,86 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [281149] = 20, + [234511] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9724), 1, + anon_sym___attribute__, + STATE(6086), 1, + sym_attribute_specifier, + ACTIONS(6070), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6068), 27, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [234554] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2259), 1, + ACTIONS(2257), 1, anon_sym_operator, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3704), 1, + ACTIONS(3251), 1, anon_sym_LPAREN2, - ACTIONS(3706), 1, + ACTIONS(3253), 1, anon_sym_TILDE, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8124), 1, + ACTIONS(6533), 1, sym_identifier, - ACTIONS(8126), 1, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7760), 1, anon_sym_STAR, - ACTIONS(8128), 1, + ACTIONS(7762), 1, anon_sym_AMP_AMP, - ACTIONS(8130), 1, + ACTIONS(7764), 1, anon_sym_AMP, - ACTIONS(8132), 1, - anon_sym_LBRACK, - STATE(7095), 1, + STATE(6634), 1, sym_declarator, - STATE(7205), 1, + STATE(6740), 1, sym_scope_resolution, - STATE(8568), 1, + STATE(8447), 1, sym_init_declarator, - STATE(9949), 1, + STATE(9783), 1, sym_ms_based_modifier, - STATE(10033), 1, + STATE(9968), 1, sym_declaration_declarator, - STATE(9982), 3, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7634), 11, + STATE(7305), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -562619,154 +523162,236 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [281222] = 20, + [234627] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, + ACTIONS(9724), 1, + anon_sym___attribute__, + STATE(6091), 1, + sym_attribute_specifier, + ACTIONS(6074), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6072), 27, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8124), 1, - sym_identifier, - ACTIONS(8126), 1, anon_sym_STAR, - ACTIONS(8128), 1, anon_sym_AMP_AMP, - ACTIONS(8130), 1, - anon_sym_AMP, - ACTIONS(8132), 1, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(7146), 1, - sym_declarator, - STATE(7205), 1, - sym_scope_resolution, - STATE(8568), 1, - sym_init_declarator, - STATE(9787), 1, - sym_declaration_declarator, - STATE(9949), 1, - sym_ms_based_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - [281295] = 20, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [234670] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(9722), 1, + anon_sym_LT, + STATE(1833), 1, + sym_template_argument_list, + ACTIONS(5381), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACE, + ACTIONS(5374), 25, + anon_sym___extension__, + anon_sym___attribute__, anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_COLON, + sym_identifier, + sym_auto, anon_sym_decltype, - ACTIONS(3704), 1, + anon_sym_final, + anon_sym_override, + [234715] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8224), 1, + anon_sym_DASH_GT, + ACTIONS(9783), 1, + anon_sym_LBRACK, + ACTIONS(10002), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10008), 1, + anon_sym_requires, + STATE(6269), 1, + sym_function_exception_specification, + STATE(6728), 1, + sym_function_attributes_end, + STATE(6741), 1, + sym_trailing_return_type, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(10005), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(10051), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 6, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8124), 1, - sym_identifier, - ACTIONS(8126), 1, - anon_sym_STAR, - ACTIONS(8128), 1, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [234790] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7869), 1, anon_sym_AMP_AMP, - ACTIONS(8130), 1, + ACTIONS(7871), 1, anon_sym_AMP, - ACTIONS(8132), 1, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8326), 1, + anon_sym_DASH_GT, + ACTIONS(8328), 1, + anon_sym_requires, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(7069), 1, - sym_declarator, - STATE(7205), 1, - sym_scope_resolution, - STATE(8568), 1, - sym_init_declarator, - STATE(9949), 1, - sym_ms_based_modifier, - STATE(10223), 1, - sym_declaration_declarator, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - [281368] = 20, + STATE(6213), 1, + sym_ref_qualifier, + STATE(6358), 1, + sym_function_exception_specification, + STATE(7021), 1, + sym_requires_clause, + STATE(7068), 1, + sym_function_postfix, + STATE(7276), 1, + sym_function_attributes_end, + STATE(7419), 1, + sym_trailing_return_type, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + sym_semgrep_metavar, + [234871] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2259), 1, + ACTIONS(2257), 1, anon_sym_operator, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3704), 1, + ACTIONS(3251), 1, anon_sym_LPAREN2, - ACTIONS(3706), 1, + ACTIONS(3253), 1, anon_sym_TILDE, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8124), 1, + ACTIONS(6533), 1, sym_identifier, - ACTIONS(8126), 1, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7760), 1, anon_sym_STAR, - ACTIONS(8128), 1, + ACTIONS(7762), 1, anon_sym_AMP_AMP, - ACTIONS(8130), 1, + ACTIONS(7764), 1, anon_sym_AMP, - ACTIONS(8132), 1, - anon_sym_LBRACK, - STATE(7115), 1, + STATE(6644), 1, sym_declarator, - STATE(7205), 1, + STATE(6740), 1, sym_scope_resolution, - STATE(8568), 1, + STATE(8447), 1, sym_init_declarator, - STATE(9949), 1, - sym_ms_based_modifier, - STATE(10415), 1, + STATE(9365), 1, sym_declaration_declarator, - STATE(9982), 3, + STATE(9783), 1, + sym_ms_based_modifier, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7634), 11, + STATE(7305), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -562778,30 +523403,81 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [281441] = 3, + [234944] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(8307), 4, - anon_sym_AMP, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8198), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, anon_sym_LBRACK, - anon_sym___inline, + ACTIONS(9749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9752), 1, + anon_sym_requires, + STATE(6300), 1, + sym_function_exception_specification, + STATE(6697), 1, + sym_function_attributes_end, + STATE(6769), 1, + sym_trailing_return_type, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(9708), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9746), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [235019] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9724), 1, + anon_sym___attribute__, + STATE(6155), 1, + sym_attribute_specifier, + ACTIONS(6096), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(8309), 27, + ACTIONS(6094), 27, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -562812,103 +523488,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_virtual, - anon_sym_alignas, - [281480] = 20, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [235062] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8124), 1, - sym_identifier, - ACTIONS(8126), 1, - anon_sym_STAR, - ACTIONS(8128), 1, - anon_sym_AMP_AMP, - ACTIONS(8130), 1, - anon_sym_AMP, - ACTIONS(8132), 1, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8042), 1, + anon_sym_requires, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8224), 1, + anon_sym_DASH_GT, + ACTIONS(9783), 1, anon_sym_LBRACK, - STATE(7088), 1, - sym_declarator, - STATE(7205), 1, - sym_scope_resolution, - STATE(8568), 1, - sym_init_declarator, - STATE(9828), 1, - sym_declaration_declarator, - STATE(9949), 1, - sym_ms_based_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - [281553] = 20, + ACTIONS(10002), 1, + anon_sym_LBRACK_LBRACK, + STATE(6290), 1, + sym_function_exception_specification, + STATE(6707), 1, + sym_trailing_return_type, + STATE(6719), 1, + sym_function_attributes_end, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(10051), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [235137] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2259), 1, + ACTIONS(2257), 1, anon_sym_operator, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3704), 1, + ACTIONS(3251), 1, anon_sym_LPAREN2, - ACTIONS(3706), 1, + ACTIONS(3253), 1, anon_sym_TILDE, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8124), 1, + ACTIONS(6533), 1, sym_identifier, - ACTIONS(8126), 1, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7760), 1, anon_sym_STAR, - ACTIONS(8128), 1, + ACTIONS(7762), 1, anon_sym_AMP_AMP, - ACTIONS(8130), 1, + ACTIONS(7764), 1, anon_sym_AMP, - ACTIONS(8132), 1, - anon_sym_LBRACK, - STATE(7102), 1, + STATE(6627), 1, sym_declarator, - STATE(7205), 1, + STATE(6740), 1, sym_scope_resolution, - STATE(8568), 1, + STATE(8447), 1, sym_init_declarator, - STATE(9879), 1, + STATE(9632), 1, sym_declaration_declarator, - STATE(9949), 1, + STATE(9783), 1, sym_ms_based_modifier, - STATE(9982), 3, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7634), 11, + STATE(7305), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -562920,102 +523602,27 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [281626] = 3, + [235210] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7205), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(7207), 27, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(9724), 1, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_virtual, - anon_sym_alignas, - [281665] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7754), 4, + STATE(6164), 1, + sym_attribute_specifier, + ACTIONS(6100), 2, anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, anon_sym_const, - ACTIONS(7756), 27, + ACTIONS(6098), 27, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_virtual, - anon_sym_alignas, - [281704] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4520), 4, - anon_sym_AMP, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(4518), 27, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -563026,44 +523633,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_virtual, - anon_sym_alignas, - [281743] = 14, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [235253] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(3694), 1, + anon_sym_const, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(9105), 1, + ACTIONS(8765), 1, anon_sym_LBRACK, - ACTIONS(9107), 1, - anon_sym_const, - ACTIONS(10430), 1, + ACTIONS(10054), 1, anon_sym_STAR, - ACTIONS(10432), 1, + ACTIONS(10056), 1, anon_sym_AMP_AMP, - ACTIONS(10434), 1, + ACTIONS(10058), 1, anon_sym_AMP, - STATE(4027), 1, + STATE(3879), 1, sym_parameter_list, - STATE(7450), 1, + STATE(7023), 1, sym_function_declarator_seq, - STATE(7776), 1, + STATE(7466), 1, sym_abstract_declarator, - STATE(6367), 2, + STATE(5924), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - ACTIONS(6258), 4, + ACTIONS(6535), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - STATE(7464), 5, + STATE(7113), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(9103), 11, + ACTIONS(8763), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -563075,48 +523687,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [281804] = 20, + [235314] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2259), 1, + ACTIONS(2257), 1, anon_sym_operator, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3704), 1, + ACTIONS(3251), 1, anon_sym_LPAREN2, - ACTIONS(3706), 1, + ACTIONS(3253), 1, anon_sym_TILDE, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8124), 1, + ACTIONS(6533), 1, sym_identifier, - ACTIONS(8126), 1, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7760), 1, anon_sym_STAR, - ACTIONS(8128), 1, + ACTIONS(7762), 1, anon_sym_AMP_AMP, - ACTIONS(8130), 1, + ACTIONS(7764), 1, anon_sym_AMP, - ACTIONS(8132), 1, - anon_sym_LBRACK, - STATE(7205), 1, + STATE(6740), 1, sym_scope_resolution, - STATE(7254), 1, + STATE(6873), 1, sym_declarator, - STATE(8568), 1, + STATE(8447), 1, sym_init_declarator, - STATE(9949), 1, - sym_ms_based_modifier, - STATE(10071), 1, + STATE(9604), 1, sym_declaration_declarator, - STATE(9982), 3, + STATE(9783), 1, + sym_ms_based_modifier, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7634), 11, + STATE(7305), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -563128,48 +523740,48 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [281877] = 20, + [235387] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2259), 1, + ACTIONS(2257), 1, anon_sym_operator, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3704), 1, + ACTIONS(3251), 1, anon_sym_LPAREN2, - ACTIONS(3706), 1, + ACTIONS(3253), 1, anon_sym_TILDE, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8124), 1, + ACTIONS(6533), 1, sym_identifier, - ACTIONS(8126), 1, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7760), 1, anon_sym_STAR, - ACTIONS(8128), 1, + ACTIONS(7762), 1, anon_sym_AMP_AMP, - ACTIONS(8130), 1, + ACTIONS(7764), 1, anon_sym_AMP, - ACTIONS(8132), 1, - anon_sym_LBRACK, - STATE(7205), 1, - sym_scope_resolution, - STATE(7244), 1, + STATE(6632), 1, sym_declarator, - STATE(8568), 1, + STATE(6740), 1, + sym_scope_resolution, + STATE(8447), 1, sym_init_declarator, - STATE(9949), 1, + STATE(9783), 1, sym_ms_based_modifier, - STATE(10463), 1, + STATE(10002), 1, sym_declaration_declarator, - STATE(9982), 3, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7634), 11, + STATE(7305), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -563181,294 +523793,152 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [281950] = 21, + [235460] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(10191), 1, - sym_identifier, - ACTIONS(10195), 1, - sym_primitive_type, - ACTIONS(10197), 1, - anon_sym_enum, - ACTIONS(10199), 1, - anon_sym_class, - ACTIONS(10201), 1, - anon_sym_struct, - ACTIONS(10203), 1, - anon_sym_union, - ACTIONS(10205), 1, - sym_auto, - ACTIONS(10207), 1, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(10209), 1, - anon_sym_typename, - STATE(4974), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5474), 1, - sym_type_specifier, - STATE(5723), 1, - sym_decltype_auto, - STATE(5878), 1, - sym_qualified_type_identifier, - STATE(7944), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(5472), 2, - sym_decltype, - sym_template_type, - ACTIONS(10193), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5731), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [282024] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10370), 1, + ACTIONS(6533), 1, sym_identifier, - ACTIONS(10374), 1, - sym_primitive_type, - ACTIONS(10376), 1, - anon_sym_enum, - ACTIONS(10378), 1, - anon_sym_class, - ACTIONS(10380), 1, - anon_sym_struct, - ACTIONS(10382), 1, - anon_sym_union, - ACTIONS(10384), 1, - sym_auto, - ACTIONS(10386), 1, - anon_sym_decltype, - ACTIONS(10388), 1, - anon_sym_typename, - STATE(4307), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4540), 1, - sym_type_specifier, - STATE(5020), 1, - sym_qualified_type_identifier, - STATE(5074), 1, - sym_decltype_auto, - STATE(7875), 1, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7760), 1, + anon_sym_STAR, + ACTIONS(7762), 1, + anon_sym_AMP_AMP, + ACTIONS(7764), 1, + anon_sym_AMP, + STATE(6658), 1, + sym_declarator, + STATE(6740), 1, sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(4840), 2, + STATE(8447), 1, + sym_init_declarator, + STATE(9516), 1, + sym_declaration_declarator, + STATE(9783), 1, + sym_ms_based_modifier, + STATE(9605), 3, sym_decltype, sym_template_type, - ACTIONS(10372), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5081), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [282098] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(10370), 1, - sym_identifier, - ACTIONS(10374), 1, - sym_primitive_type, - ACTIONS(10376), 1, - anon_sym_enum, - ACTIONS(10378), 1, - anon_sym_class, - ACTIONS(10380), 1, - anon_sym_struct, - ACTIONS(10382), 1, - anon_sym_union, - ACTIONS(10384), 1, - sym_auto, - ACTIONS(10386), 1, - anon_sym_decltype, - ACTIONS(10388), 1, - anon_sym_typename, - STATE(4307), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4627), 1, - sym_type_specifier, - STATE(5020), 1, - sym_qualified_type_identifier, - STATE(5074), 1, - sym_decltype_auto, - STATE(7875), 1, - sym_scope_resolution, - STATE(9982), 1, sym_dependent_type_identifier, - STATE(4840), 2, - sym_decltype, - sym_template_type, - ACTIONS(10372), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5081), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [282172] = 21, + STATE(7305), 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, + [235533] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(10171), 1, - sym_identifier, - ACTIONS(10175), 1, - sym_primitive_type, - ACTIONS(10177), 1, - anon_sym_enum, - ACTIONS(10179), 1, - anon_sym_class, - ACTIONS(10181), 1, - anon_sym_struct, - ACTIONS(10183), 1, - anon_sym_union, - ACTIONS(10185), 1, - sym_auto, - ACTIONS(10187), 1, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(10355), 1, - anon_sym_typename, - STATE(2180), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2440), 1, - sym_type_specifier, - STATE(2753), 1, - sym_qualified_type_identifier, - STATE(2777), 1, - sym_decltype_auto, - STATE(7919), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(2738), 2, - sym_decltype, - sym_template_type, - ACTIONS(10353), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2752), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [282246] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(4342), 1, + ACTIONS(6533), 1, sym_identifier, - ACTIONS(4350), 1, - sym_primitive_type, - ACTIONS(4352), 1, - anon_sym_enum, - ACTIONS(4354), 1, - anon_sym_class, - ACTIONS(4356), 1, - anon_sym_struct, - ACTIONS(4358), 1, - anon_sym_union, - ACTIONS(4360), 1, - sym_auto, - ACTIONS(4362), 1, - anon_sym_decltype, - ACTIONS(4364), 1, - anon_sym_typename, - STATE(4672), 1, - sym_type_specifier, - STATE(4751), 1, - sym_qualified_type_identifier, - STATE(4805), 1, - sym_decltype_auto, - STATE(5372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7904), 1, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7760), 1, + anon_sym_STAR, + ACTIONS(7762), 1, + anon_sym_AMP_AMP, + ACTIONS(7764), 1, + anon_sym_AMP, + STATE(6606), 1, + sym_declarator, + STATE(6740), 1, sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(4720), 2, + STATE(8447), 1, + sym_init_declarator, + STATE(9333), 1, + sym_declaration_declarator, + STATE(9783), 1, + sym_ms_based_modifier, + STATE(9605), 3, sym_decltype, sym_template_type, - ACTIONS(4348), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4794), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [282320] = 6, + sym_dependent_type_identifier, + STATE(7305), 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, + [235606] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(9109), 1, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(6725), 1, sym_auto, - ACTIONS(9111), 1, + ACTIONS(6727), 1, anon_sym_decltype, - STATE(6672), 1, - sym_decltype_auto, - ACTIONS(6404), 2, - anon_sym_AMP, + ACTIONS(8717), 1, + anon_sym_COLON, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(9688), 1, anon_sym_const, - ACTIONS(6402), 25, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(10060), 1, anon_sym_STAR, + ACTIONS(10062), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(10064), 1, + anon_sym_AMP, + STATE(2694), 1, + sym_decltype_auto, + STATE(4616), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7813), 1, + sym_abstract_declarator, + STATE(6228), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9686), 11, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -563479,82 +523949,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [282364] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(10410), 1, - sym_identifier, - ACTIONS(10414), 1, - sym_primitive_type, - ACTIONS(10416), 1, - anon_sym_enum, - ACTIONS(10418), 1, - anon_sym_class, - ACTIONS(10420), 1, - anon_sym_struct, - ACTIONS(10422), 1, - anon_sym_union, - ACTIONS(10424), 1, - sym_auto, - ACTIONS(10426), 1, - anon_sym_decltype, - ACTIONS(10428), 1, - anon_sym_typename, - STATE(2938), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3873), 1, - sym_type_specifier, - STATE(4075), 1, - sym_qualified_type_identifier, - STATE(4084), 1, - sym_decltype_auto, - STATE(7909), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(3946), 2, - sym_decltype, - sym_template_type, - ACTIONS(10412), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4091), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [282438] = 3, + [235673] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 2, + ACTIONS(6892), 1, + anon_sym___attribute__, + ACTIONS(7041), 1, + anon_sym_LBRACE, + ACTIONS(10066), 1, + anon_sym_COLON, + STATE(2965), 1, + sym_enum_base_clause, + STATE(2981), 1, + sym_enumerator_list, + STATE(3232), 1, + sym_attribute_specifier, + ACTIONS(6520), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6464), 28, + ACTIONS(6522), 23, + 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___extension__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -563570,26 +523990,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [282476] = 3, + [235724] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6680), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6678), 28, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5455), 1, anon_sym_LPAREN2, + ACTIONS(6725), 1, + sym_auto, + ACTIONS(6727), 1, + anon_sym_decltype, + ACTIONS(8733), 1, + anon_sym_COLON, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(9688), 1, + anon_sym_const, + ACTIONS(10060), 1, anon_sym_STAR, + ACTIONS(10062), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(10064), 1, + anon_sym_AMP, + STATE(2694), 1, + sym_decltype_auto, + STATE(4616), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7818), 1, + sym_abstract_declarator, + STATE(6229), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9686), 11, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -563600,185 +524041,406 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, + [235791] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8042), 1, + anon_sym_requires, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8209), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9705), 1, + anon_sym_LBRACK_LBRACK, + STATE(6303), 1, + sym_function_exception_specification, + STATE(6760), 1, + sym_trailing_return_type, + STATE(6852), 1, + sym_requires_clause, + STATE(6895), 1, + sym_function_attributes_end, + STATE(6904), 1, + sym_function_postfix, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_try, - anon_sym_requires, - [282514] = 21, + [235866] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10171), 1, + ACTIONS(6533), 1, sym_identifier, - ACTIONS(10175), 1, - sym_primitive_type, - ACTIONS(10177), 1, - anon_sym_enum, - ACTIONS(10179), 1, - anon_sym_class, - ACTIONS(10181), 1, - anon_sym_struct, - ACTIONS(10183), 1, - anon_sym_union, - ACTIONS(10185), 1, - sym_auto, - ACTIONS(10187), 1, - anon_sym_decltype, - ACTIONS(10189), 1, - anon_sym_typename, - STATE(2087), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2428), 1, - sym_type_specifier, - STATE(2753), 1, - sym_qualified_type_identifier, - STATE(2777), 1, - sym_decltype_auto, - STATE(7919), 1, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7760), 1, + anon_sym_STAR, + ACTIONS(7762), 1, + anon_sym_AMP_AMP, + ACTIONS(7764), 1, + anon_sym_AMP, + STATE(6740), 1, sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(2738), 2, + STATE(6870), 1, + sym_declarator, + STATE(8447), 1, + sym_init_declarator, + STATE(9589), 1, + sym_declaration_declarator, + STATE(9783), 1, + sym_ms_based_modifier, + STATE(9605), 3, sym_decltype, sym_template_type, - ACTIONS(10173), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2752), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [282588] = 10, + sym_dependent_type_identifier, + STATE(7305), 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, + [235939] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8209), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9705), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9711), 1, + anon_sym_requires, + STATE(6288), 1, + sym_function_exception_specification, + STATE(6734), 1, + sym_trailing_return_type, + STATE(6852), 1, + sym_requires_clause, + STATE(6865), 1, + sym_function_attributes_end, + STATE(6904), 1, + sym_function_postfix, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9708), 2, + anon_sym_final, + anon_sym_override, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [236014] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8042), 1, + anon_sym_requires, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8209), 1, + anon_sym_DASH_GT, + ACTIONS(9783), 1, + anon_sym_LBRACK, + ACTIONS(10002), 1, + anon_sym_LBRACK_LBRACK, + STATE(6291), 1, + sym_function_exception_specification, + STATE(6707), 1, + sym_trailing_return_type, + STATE(6813), 1, + sym_function_attributes_end, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [236089] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7869), 1, + anon_sym_AMP_AMP, + ACTIONS(7871), 1, + anon_sym_AMP, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8326), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(10068), 1, + anon_sym_requires, + STATE(6251), 1, + sym_ref_qualifier, + STATE(6363), 1, + sym_function_exception_specification, + STATE(7021), 1, + sym_requires_clause, + STATE(7068), 1, + sym_function_postfix, + STATE(7275), 1, + sym_function_attributes_end, + STATE(7455), 1, + sym_trailing_return_type, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9657), 2, + anon_sym_final, + anon_sym_override, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + sym_semgrep_metavar, + [236170] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9516), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, anon_sym_LPAREN2, - ACTIONS(9518), 1, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(6533), 1, + sym_identifier, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7760), 1, anon_sym_STAR, - STATE(3015), 1, - sym_type_declarator, - STATE(10195), 1, + ACTIONS(7762), 1, + anon_sym_AMP_AMP, + ACTIONS(7764), 1, + anon_sym_AMP, + STATE(6740), 1, + sym_scope_resolution, + STATE(6870), 1, + sym_declarator, + STATE(8447), 1, + sym_init_declarator, + STATE(9615), 1, + sym_declaration_declarator, + STATE(9783), 1, sym_ms_based_modifier, - STATE(6858), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(3534), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9514), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(9498), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [282640] = 21, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + [236243] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10171), 1, + ACTIONS(6533), 1, sym_identifier, - ACTIONS(10175), 1, - sym_primitive_type, - ACTIONS(10177), 1, - anon_sym_enum, - ACTIONS(10179), 1, - anon_sym_class, - ACTIONS(10181), 1, - anon_sym_struct, - ACTIONS(10183), 1, - anon_sym_union, - ACTIONS(10185), 1, - sym_auto, - ACTIONS(10187), 1, - anon_sym_decltype, - ACTIONS(10189), 1, - anon_sym_typename, - STATE(2087), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2440), 1, - sym_type_specifier, - STATE(2753), 1, - sym_qualified_type_identifier, - STATE(2777), 1, - sym_decltype_auto, - STATE(7919), 1, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7760), 1, + anon_sym_STAR, + ACTIONS(7762), 1, + anon_sym_AMP_AMP, + ACTIONS(7764), 1, + anon_sym_AMP, + STATE(6740), 1, sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(2738), 2, + STATE(6870), 1, + sym_declarator, + STATE(8447), 1, + sym_init_declarator, + STATE(9604), 1, + sym_declaration_declarator, + STATE(9783), 1, + sym_ms_based_modifier, + STATE(9605), 3, sym_decltype, sym_template_type, - ACTIONS(10173), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2752), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [282714] = 9, + sym_dependent_type_identifier, + STATE(7305), 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, + [236316] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4061), 1, + ACTIONS(6892), 1, + anon_sym___attribute__, + ACTIONS(7041), 1, anon_sym_LBRACE, - ACTIONS(10442), 1, - anon_sym_LPAREN2, - STATE(2700), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4224), 1, - sym_argument_list, - STATE(6138), 1, - sym_initializer_list, - ACTIONS(4827), 2, + ACTIONS(10066), 1, + anon_sym_COLON, + STATE(2892), 1, + sym_enum_base_clause, + STATE(3109), 1, + sym_enumerator_list, + STATE(3312), 1, + sym_attribute_specifier, + ACTIONS(6514), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6765), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4835), 19, + ACTIONS(6516), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym___extension__, @@ -563795,174 +524457,143 @@ 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, - [282764] = 10, + anon_sym_requires, + [236367] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9510), 1, - anon_sym_LPAREN2, - ACTIONS(9512), 1, - anon_sym_STAR, - STATE(2732), 1, - sym_type_declarator, - STATE(10464), 1, - sym_ms_based_modifier, - STATE(6858), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(2872), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9508), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(9498), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [282816] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10274), 1, + ACTIONS(6533), 1, sym_identifier, - ACTIONS(10278), 1, - sym_primitive_type, - ACTIONS(10280), 1, - anon_sym_enum, - ACTIONS(10282), 1, - anon_sym_class, - ACTIONS(10284), 1, - anon_sym_struct, - ACTIONS(10286), 1, - anon_sym_union, - ACTIONS(10288), 1, - sym_auto, - ACTIONS(10290), 1, - anon_sym_decltype, - ACTIONS(10292), 1, - anon_sym_typename, - STATE(4630), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4801), 1, - sym_type_specifier, - STATE(5220), 1, - sym_qualified_type_identifier, - STATE(5276), 1, - sym_decltype_auto, - STATE(7884), 1, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7760), 1, + anon_sym_STAR, + ACTIONS(7762), 1, + anon_sym_AMP_AMP, + ACTIONS(7764), 1, + anon_sym_AMP, + STATE(6740), 1, sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(5180), 2, + STATE(6870), 1, + sym_declarator, + STATE(8447), 1, + sym_init_declarator, + STATE(9333), 1, + sym_declaration_declarator, + STATE(9783), 1, + sym_ms_based_modifier, + STATE(9605), 3, sym_decltype, sym_template_type, - ACTIONS(10276), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5282), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [282890] = 10, + sym_dependent_type_identifier, + STATE(7305), 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, + [236440] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9516), 1, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8198), 1, + anon_sym_DASH_GT, + ACTIONS(8213), 1, + anon_sym_requires, + ACTIONS(9783), 1, + anon_sym_LBRACK, + ACTIONS(10045), 1, + anon_sym_LBRACK_LBRACK, + STATE(6293), 1, + sym_function_exception_specification, + STATE(6690), 1, + sym_function_attributes_end, + STATE(6720), 1, + sym_trailing_return_type, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(10051), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 6, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(9518), 1, - anon_sym_STAR, - STATE(3046), 1, - sym_type_declarator, - STATE(10195), 1, - sym_ms_based_modifier, - STATE(6858), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(3534), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9514), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(9498), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [282942] = 10, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [236515] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9516), 1, - anon_sym_LPAREN2, - ACTIONS(9518), 1, - anon_sym_STAR, - STATE(3050), 1, - sym_type_declarator, - STATE(10195), 1, - sym_ms_based_modifier, - STATE(6858), 2, + STATE(5923), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(3534), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9514), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, + ACTIONS(5725), 6, + anon_sym_AMP, + anon_sym___based, sym_identifier, - ACTIONS(9498), 12, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(5727), 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, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(10071), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -563975,41 +524606,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [282994] = 14, + [236558] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(3694), 1, + anon_sym_const, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(9105), 1, + ACTIONS(8765), 1, anon_sym_LBRACK, - ACTIONS(9107), 1, - anon_sym_const, - ACTIONS(10147), 1, + ACTIONS(10054), 1, anon_sym_STAR, - ACTIONS(10149), 1, + ACTIONS(10056), 1, anon_sym_AMP_AMP, - ACTIONS(10151), 1, + ACTIONS(10058), 1, anon_sym_AMP, - STATE(4696), 1, + STATE(3879), 1, sym_parameter_list, - STATE(7450), 1, + STATE(7023), 1, sym_function_declarator_seq, - STATE(8031), 1, + STATE(7459), 1, sym_abstract_declarator, - STATE(6350), 2, + STATE(6022), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - ACTIONS(9250), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(7464), 5, + ACTIONS(7388), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + STATE(7113), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(9103), 11, + ACTIONS(8763), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -564021,172 +524653,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [283054] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(10274), 1, - sym_identifier, - ACTIONS(10278), 1, - sym_primitive_type, - ACTIONS(10280), 1, - anon_sym_enum, - ACTIONS(10282), 1, - anon_sym_class, - ACTIONS(10284), 1, - anon_sym_struct, - ACTIONS(10286), 1, - anon_sym_union, - ACTIONS(10288), 1, - sym_auto, - ACTIONS(10290), 1, - anon_sym_decltype, - ACTIONS(10292), 1, - anon_sym_typename, - STATE(4630), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4803), 1, - sym_type_specifier, - STATE(5220), 1, - sym_qualified_type_identifier, - STATE(5276), 1, - sym_decltype_auto, - STATE(7884), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(5180), 2, - sym_decltype, - sym_template_type, - ACTIONS(10276), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5282), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [283128] = 21, + [236619] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3289), 1, - anon_sym_class, - ACTIONS(3291), 1, - anon_sym_struct, - ACTIONS(3293), 1, - anon_sym_union, - ACTIONS(3317), 1, - sym_auto, - ACTIONS(3319), 1, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8701), 1, + ACTIONS(6533), 1, sym_identifier, - ACTIONS(8705), 1, - sym_primitive_type, - ACTIONS(8707), 1, - anon_sym_enum, - ACTIONS(8709), 1, - anon_sym_typename, - STATE(3324), 1, - sym_type_specifier, - STATE(3472), 1, - sym_decltype_auto, - STATE(3523), 1, - sym_qualified_type_identifier, - STATE(6354), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7876), 1, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7821), 1, + anon_sym_STAR, + ACTIONS(7823), 1, + anon_sym_AMP_AMP, + ACTIONS(7825), 1, + anon_sym_AMP, + STATE(6704), 1, sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(3429), 2, + STATE(6803), 1, + sym_declarator, + STATE(8447), 1, + sym_init_declarator, + STATE(9604), 1, + sym_declaration_declarator, + STATE(9963), 1, + sym_ms_based_modifier, + STATE(9605), 3, sym_decltype, sym_template_type, - ACTIONS(8703), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3473), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [283202] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3317), 1, - sym_auto, - ACTIONS(3319), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8705), 1, - sym_primitive_type, - ACTIONS(10155), 1, - sym_identifier, - ACTIONS(10161), 1, - anon_sym_enum, - ACTIONS(10163), 1, - anon_sym_class, - ACTIONS(10165), 1, - anon_sym_struct, - ACTIONS(10167), 1, - anon_sym_union, - ACTIONS(10169), 1, - anon_sym_typename, - STATE(3324), 1, - sym_type_specifier, - STATE(3472), 1, - sym_decltype_auto, - STATE(3523), 1, - sym_qualified_type_identifier, - STATE(4823), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7878), 1, - sym_scope_resolution, - STATE(9982), 1, sym_dependent_type_identifier, - STATE(3429), 2, - sym_decltype, - sym_template_type, - ACTIONS(10159), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3473), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [283276] = 3, + STATE(7305), 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, + [236692] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6543), 2, + ACTIONS(9724), 1, + anon_sym___attribute__, + STATE(6077), 1, + sym_attribute_specifier, + ACTIONS(6104), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6541), 28, + ACTIONS(6102), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -564194,7 +524724,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, @@ -564215,235 +524744,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [283314] = 3, + [236735] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3656), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(3658), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8209), 1, + anon_sym_DASH_GT, + ACTIONS(9783), 1, + anon_sym_LBRACK, + ACTIONS(10002), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10008), 1, + anon_sym_requires, + STATE(6283), 1, + sym_function_exception_specification, + STATE(6741), 1, + sym_trailing_return_type, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(6897), 1, + sym_function_attributes_end, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10005), 2, + anon_sym_final, + anon_sym_override, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 6, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_COLON, + anon_sym_try, + [236810] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8198), 1, + anon_sym_DASH_GT, + ACTIONS(9783), 1, + anon_sym_LBRACK, + ACTIONS(10045), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10048), 1, + anon_sym_requires, + STATE(6306), 1, + sym_function_exception_specification, + STATE(6698), 1, + sym_function_attributes_end, + STATE(6773), 1, + sym_trailing_return_type, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(10005), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, + ACTIONS(10051), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_try, - anon_sym_requires, - sym_semgrep_metavar, - [283352] = 10, + [236885] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9510), 1, - anon_sym_LPAREN2, - ACTIONS(9512), 1, - anon_sym_STAR, - STATE(2721), 1, - sym_type_declarator, - STATE(10464), 1, - sym_ms_based_modifier, - STATE(6858), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(2872), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9508), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(9498), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [283404] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(10390), 1, - sym_identifier, - ACTIONS(10394), 1, - sym_primitive_type, - ACTIONS(10396), 1, - anon_sym_enum, - ACTIONS(10398), 1, - anon_sym_class, - ACTIONS(10400), 1, - anon_sym_struct, - ACTIONS(10402), 1, - anon_sym_union, - ACTIONS(10404), 1, - sym_auto, - ACTIONS(10406), 1, - anon_sym_decltype, - ACTIONS(10408), 1, - anon_sym_typename, - STATE(2220), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2495), 1, - sym_type_specifier, - STATE(2913), 1, - sym_decltype_auto, - STATE(2955), 1, - sym_qualified_type_identifier, - STATE(7893), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(2760), 2, - sym_decltype, - sym_template_type, - ACTIONS(10392), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2917), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [283478] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8664), 1, - sym_primitive_type, - ACTIONS(10334), 1, + ACTIONS(6533), 1, sym_identifier, - ACTIONS(10338), 1, - anon_sym_enum, - ACTIONS(10340), 1, - anon_sym_class, - ACTIONS(10342), 1, - anon_sym_struct, - ACTIONS(10344), 1, - anon_sym_union, - ACTIONS(10346), 1, - anon_sym_typename, - STATE(2489), 1, - sym_type_specifier, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(4064), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7902), 1, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7760), 1, + anon_sym_STAR, + ACTIONS(7762), 1, + anon_sym_AMP_AMP, + ACTIONS(7764), 1, + anon_sym_AMP, + STATE(6598), 1, + sym_declarator, + STATE(6740), 1, sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(2479), 2, + STATE(8447), 1, + sym_init_declarator, + STATE(9543), 1, + sym_declaration_declarator, + STATE(9783), 1, + sym_ms_based_modifier, + STATE(9605), 3, sym_decltype, sym_template_type, - ACTIONS(10336), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [283552] = 21, + sym_dependent_type_identifier, + STATE(7305), 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, + [236958] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10390), 1, + ACTIONS(9907), 1, sym_identifier, - ACTIONS(10394), 1, + ACTIONS(9911), 1, sym_primitive_type, - ACTIONS(10396), 1, + ACTIONS(9913), 1, anon_sym_enum, - ACTIONS(10398), 1, + ACTIONS(9915), 1, anon_sym_class, - ACTIONS(10400), 1, + ACTIONS(9917), 1, anon_sym_struct, - ACTIONS(10402), 1, + ACTIONS(9919), 1, anon_sym_union, - ACTIONS(10404), 1, + ACTIONS(9921), 1, sym_auto, - ACTIONS(10406), 1, + ACTIONS(9923), 1, anon_sym_decltype, - ACTIONS(10408), 1, + ACTIONS(9925), 1, anon_sym_typename, - STATE(2220), 1, + STATE(2520), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2496), 1, + STATE(2914), 1, sym_type_specifier, - STATE(2913), 1, + STATE(2996), 1, sym_decltype_auto, - STATE(2955), 1, + STATE(2999), 1, sym_qualified_type_identifier, - STATE(7893), 1, + STATE(7547), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(2760), 2, + STATE(2898), 2, sym_decltype, sym_template_type, - ACTIONS(10392), 4, + ACTIONS(9909), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2917), 7, + STATE(2997), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -564451,38 +524958,31 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [283626] = 10, + [237032] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9535), 1, + ACTIONS(6365), 1, + anon_sym___attribute__, + ACTIONS(6491), 1, + anon_sym_LBRACE, + ACTIONS(10074), 1, + anon_sym_COLON, + STATE(2503), 1, + sym_enum_base_clause, + STATE(2537), 1, + sym_enumerator_list, + STATE(2710), 1, + sym_attribute_specifier, + ACTIONS(6520), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6522), 22, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9537), 1, anon_sym_STAR, - STATE(7569), 1, - sym_type_declarator, - STATE(10673), 1, - sym_ms_based_modifier, - STATE(6858), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(7629), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9533), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(9498), 12, + anon_sym_AMP_AMP, anon_sym___extension__, - anon_sym_const, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -564493,36 +524993,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [283678] = 10, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [237082] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9494), 1, + ACTIONS(9153), 1, anon_sym_LPAREN2, - ACTIONS(9496), 1, + ACTIONS(9155), 1, anon_sym_STAR, - STATE(2802), 1, + STATE(3237), 1, sym_type_declarator, - STATE(10238), 1, + STATE(9637), 1, sym_ms_based_modifier, - STATE(6858), 2, + STATE(5846), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(3196), 5, + STATE(3783), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9492), 6, + ACTIONS(9151), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(9498), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -564535,38 +525041,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [283730] = 10, + [237134] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9535), 1, + ACTIONS(6090), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6088), 28, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9537), 1, anon_sym_STAR, - STATE(7542), 1, - sym_type_declarator, - STATE(10673), 1, - sym_ms_based_modifier, - STATE(6858), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(7629), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9533), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(9498), 12, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_const, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -564577,89 +525069,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [283782] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(10211), 1, - sym_identifier, - ACTIONS(10215), 1, - sym_primitive_type, - ACTIONS(10217), 1, - anon_sym_enum, - ACTIONS(10219), 1, - anon_sym_class, - ACTIONS(10221), 1, - anon_sym_struct, - ACTIONS(10223), 1, - anon_sym_union, - ACTIONS(10225), 1, sym_auto, - ACTIONS(10227), 1, anon_sym_decltype, - ACTIONS(10229), 1, - anon_sym_typename, - STATE(2864), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3121), 1, - sym_type_specifier, - STATE(3861), 1, - sym_qualified_type_identifier, - STATE(3937), 1, - sym_decltype_auto, - STATE(7917), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(3632), 2, - sym_decltype, - sym_template_type, - ACTIONS(10213), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3815), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [283856] = 10, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [237172] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9535), 1, + ACTIONS(9121), 1, anon_sym_LPAREN2, - ACTIONS(9537), 1, + ACTIONS(9225), 1, anon_sym_STAR, - STATE(7593), 1, + STATE(7692), 1, sym_type_declarator, - STATE(10673), 1, + STATE(9695), 1, sym_ms_based_modifier, - STATE(6858), 2, + STATE(5846), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(7629), 5, + STATE(2300), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9533), 6, + ACTIONS(9119), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(9498), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -564672,264 +525118,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [283908] = 21, + [237224] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(10211), 1, - sym_identifier, - ACTIONS(10215), 1, - sym_primitive_type, - ACTIONS(10217), 1, - anon_sym_enum, - ACTIONS(10219), 1, - anon_sym_class, - ACTIONS(10221), 1, - anon_sym_struct, - ACTIONS(10223), 1, - anon_sym_union, - ACTIONS(10225), 1, + ACTIONS(121), 1, sym_auto, - ACTIONS(10227), 1, + ACTIONS(123), 1, anon_sym_decltype, - ACTIONS(10229), 1, - anon_sym_typename, - STATE(2864), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3635), 1, - sym_type_specifier, - STATE(3861), 1, - sym_qualified_type_identifier, - STATE(3937), 1, - sym_decltype_auto, - STATE(7917), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(3632), 2, - sym_decltype, - sym_template_type, - ACTIONS(10213), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3815), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [283982] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8664), 1, - sym_primitive_type, - ACTIONS(10334), 1, - sym_identifier, - ACTIONS(10338), 1, + ACTIONS(2119), 1, anon_sym_enum, - ACTIONS(10340), 1, + ACTIONS(2121), 1, anon_sym_class, - ACTIONS(10342), 1, + ACTIONS(2123), 1, anon_sym_struct, - ACTIONS(10344), 1, + ACTIONS(2125), 1, anon_sym_union, - ACTIONS(10359), 1, + ACTIONS(2127), 1, anon_sym_typename, - STATE(2489), 1, - sym_type_specifier, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(3943), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7902), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(2479), 2, - sym_decltype, - sym_template_type, - ACTIONS(10357), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [284056] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(4342), 1, - sym_identifier, - ACTIONS(4350), 1, + ACTIONS(3267), 1, sym_primitive_type, - ACTIONS(4354), 1, - anon_sym_class, - ACTIONS(4356), 1, - anon_sym_struct, - ACTIONS(4358), 1, - anon_sym_union, - ACTIONS(4360), 1, - sym_auto, - ACTIONS(4362), 1, - anon_sym_decltype, - ACTIONS(8671), 1, - anon_sym_enum, - ACTIONS(8673), 1, - anon_sym_typename, - STATE(4672), 1, - sym_type_specifier, - STATE(4751), 1, - sym_qualified_type_identifier, - STATE(4805), 1, - sym_decltype_auto, - STATE(5721), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7904), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(4720), 2, - sym_decltype, - sym_template_type, - ACTIONS(8669), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4794), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [284130] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8720), 1, + ACTIONS(5453), 1, sym_identifier, - ACTIONS(8724), 1, - sym_primitive_type, - ACTIONS(8726), 1, - anon_sym_enum, - ACTIONS(8728), 1, - anon_sym_class, - ACTIONS(8730), 1, - anon_sym_struct, - ACTIONS(8732), 1, - anon_sym_union, - ACTIONS(8734), 1, - sym_auto, - ACTIONS(8736), 1, - anon_sym_decltype, - ACTIONS(8738), 1, - anon_sym_typename, - STATE(6148), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6420), 1, + STATE(3385), 1, sym_type_specifier, - STATE(6554), 1, - sym_qualified_type_identifier, - STATE(6688), 1, + STATE(3570), 1, sym_decltype_auto, - STATE(7920), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(6516), 2, - sym_decltype, - sym_template_type, - ACTIONS(8722), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6689), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [284204] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(10231), 1, - sym_identifier, - ACTIONS(10235), 1, - sym_primitive_type, - ACTIONS(10237), 1, - anon_sym_enum, - ACTIONS(10239), 1, - anon_sym_class, - ACTIONS(10241), 1, - anon_sym_struct, - ACTIONS(10243), 1, - anon_sym_union, - ACTIONS(10245), 1, - sym_auto, - ACTIONS(10247), 1, - anon_sym_decltype, - ACTIONS(10249), 1, - anon_sym_typename, - STATE(2466), 1, + STATE(3609), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2716), 1, - sym_type_specifier, - STATE(3160), 1, + STATE(4526), 1, sym_qualified_type_identifier, - STATE(3206), 1, - sym_decltype_auto, - STATE(7910), 1, + STATE(7569), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(2971), 2, + STATE(3324), 2, sym_decltype, sym_template_type, - ACTIONS(10233), 4, + ACTIONS(57), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3222), 7, + STATE(3531), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -564937,89 +525171,71 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [284278] = 21, + [237298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(10231), 1, - sym_identifier, - ACTIONS(10235), 1, - sym_primitive_type, - ACTIONS(10237), 1, - anon_sym_enum, - ACTIONS(10239), 1, - anon_sym_class, - ACTIONS(10241), 1, - anon_sym_struct, - ACTIONS(10243), 1, - anon_sym_union, - ACTIONS(10245), 1, + ACTIONS(6284), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6282), 28, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, sym_auto, - ACTIONS(10247), 1, anon_sym_decltype, - ACTIONS(10249), 1, - anon_sym_typename, - STATE(2466), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2727), 1, - sym_type_specifier, - STATE(3160), 1, - sym_qualified_type_identifier, - STATE(3206), 1, - sym_decltype_auto, - STATE(7910), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(2971), 2, - sym_decltype, - sym_template_type, - ACTIONS(10233), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3222), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [284352] = 10, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [237336] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9643), 1, + ACTIONS(9121), 1, anon_sym_LPAREN2, - ACTIONS(9645), 1, + ACTIONS(9225), 1, anon_sym_STAR, - STATE(3758), 1, + STATE(7674), 1, sym_type_declarator, - STATE(9921), 1, + STATE(9695), 1, sym_ms_based_modifier, - STATE(6858), 2, + STATE(5846), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(4285), 5, + STATE(2300), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9641), 6, + ACTIONS(9119), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(9498), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -565032,36 +525248,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [284404] = 10, + [237388] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9494), 1, + ACTIONS(9121), 1, anon_sym_LPAREN2, - ACTIONS(9496), 1, + ACTIONS(9225), 1, anon_sym_STAR, - STATE(2776), 1, + STATE(7688), 1, sym_type_declarator, - STATE(10238), 1, + STATE(9695), 1, sym_ms_based_modifier, - STATE(6858), 2, + STATE(5846), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(3196), 5, + STATE(2300), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9492), 6, + ACTIONS(9119), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(9498), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -565074,52 +525290,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [284456] = 21, + [237440] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10211), 1, - sym_identifier, - ACTIONS(10215), 1, + ACTIONS(8380), 1, + sym_auto, + ACTIONS(8394), 1, sym_primitive_type, - ACTIONS(10217), 1, + ACTIONS(8404), 1, + anon_sym_decltype, + ACTIONS(8410), 1, + sym_identifier, + ACTIONS(8412), 1, anon_sym_enum, - ACTIONS(10219), 1, + ACTIONS(8414), 1, anon_sym_class, - ACTIONS(10221), 1, + ACTIONS(8416), 1, anon_sym_struct, - ACTIONS(10223), 1, + ACTIONS(8418), 1, anon_sym_union, - ACTIONS(10225), 1, - sym_auto, - ACTIONS(10227), 1, - anon_sym_decltype, - ACTIONS(10229), 1, + ACTIONS(8420), 1, anon_sym_typename, - STATE(2864), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3136), 1, - sym_type_specifier, - STATE(3861), 1, + STATE(3466), 1, sym_qualified_type_identifier, - STATE(3937), 1, + STATE(4923), 1, + sym_type_specifier, + STATE(4990), 1, sym_decltype_auto, - STATE(7917), 1, + STATE(5100), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7521), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(3632), 2, + STATE(3324), 2, sym_decltype, sym_template_type, - ACTIONS(10213), 4, + ACTIONS(8392), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3815), 7, + STATE(4991), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -565127,105 +525343,147 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [284530] = 21, + [237514] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(10294), 1, - sym_identifier, - ACTIONS(10298), 1, - sym_primitive_type, - ACTIONS(10300), 1, - anon_sym_enum, - ACTIONS(10302), 1, - anon_sym_class, - ACTIONS(10304), 1, - anon_sym_struct, - ACTIONS(10306), 1, - anon_sym_union, - ACTIONS(10308), 1, - sym_auto, - ACTIONS(10310), 1, - anon_sym_decltype, - ACTIONS(10312), 1, - anon_sym_typename, - STATE(2561), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3417), 1, - sym_type_specifier, - STATE(3540), 1, - sym_decltype_auto, - STATE(3544), 1, - sym_qualified_type_identifier, - STATE(7915), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(3339), 2, - sym_decltype, - sym_template_type, - ACTIONS(10296), 4, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8275), 1, + anon_sym_DASH_GT, + ACTIONS(9783), 1, + anon_sym_LBRACK, + ACTIONS(10076), 1, + anon_sym_requires, + STATE(6324), 1, + sym_function_exception_specification, + STATE(7021), 1, + sym_requires_clause, + STATE(7073), 1, + sym_function_postfix, + STATE(7108), 1, + sym_function_attributes_end, + STATE(7222), 1, + sym_trailing_return_type, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9785), 2, + anon_sym_final, + anon_sym_override, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + [237588] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9187), 1, + anon_sym_LPAREN2, + ACTIONS(9189), 1, + anon_sym_STAR, + STATE(7054), 1, + sym_type_declarator, + STATE(9630), 1, + sym_ms_based_modifier, + STATE(5846), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(7297), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9185), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3541), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [284604] = 21, + sym_primitive_type, + sym_identifier, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [237640] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10191), 1, + ACTIONS(9833), 1, + sym_auto, + ACTIONS(9835), 1, + anon_sym_decltype, + ACTIONS(9891), 1, sym_identifier, - ACTIONS(10195), 1, + ACTIONS(9895), 1, sym_primitive_type, - ACTIONS(10197), 1, + ACTIONS(9897), 1, anon_sym_enum, - ACTIONS(10199), 1, + ACTIONS(9899), 1, anon_sym_class, - ACTIONS(10201), 1, + ACTIONS(9901), 1, anon_sym_struct, - ACTIONS(10203), 1, + ACTIONS(9903), 1, anon_sym_union, - ACTIONS(10205), 1, - sym_auto, - ACTIONS(10207), 1, - anon_sym_decltype, - ACTIONS(10209), 1, + ACTIONS(9905), 1, anon_sym_typename, - STATE(4974), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5219), 1, + STATE(1962), 1, sym_type_specifier, - STATE(5723), 1, + STATE(2266), 1, sym_decltype_auto, - STATE(5878), 1, + STATE(2277), 1, sym_qualified_type_identifier, - STATE(7944), 1, + STATE(2439), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7549), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(5472), 2, + STATE(2172), 2, sym_decltype, sym_template_type, - ACTIONS(10193), 4, + ACTIONS(9893), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5731), 7, + STATE(2269), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -565233,52 +525491,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [284678] = 21, + [237714] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(4342), 1, - sym_identifier, - ACTIONS(4350), 1, - sym_primitive_type, - ACTIONS(4360), 1, + ACTIONS(9833), 1, sym_auto, - ACTIONS(4362), 1, + ACTIONS(9835), 1, anon_sym_decltype, - ACTIONS(10447), 1, + ACTIONS(9891), 1, + sym_identifier, + ACTIONS(9895), 1, + sym_primitive_type, + ACTIONS(9897), 1, anon_sym_enum, - ACTIONS(10449), 1, + ACTIONS(9899), 1, anon_sym_class, - ACTIONS(10451), 1, + ACTIONS(9901), 1, anon_sym_struct, - ACTIONS(10453), 1, + ACTIONS(9903), 1, anon_sym_union, - ACTIONS(10455), 1, + ACTIONS(9905), 1, anon_sym_typename, - STATE(4751), 1, - sym_qualified_type_identifier, - STATE(4805), 1, + STATE(1934), 1, + sym_type_specifier, + STATE(2266), 1, sym_decltype_auto, - STATE(7773), 1, + STATE(2277), 1, + sym_qualified_type_identifier, + STATE(2439), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7904), 1, + STATE(7549), 1, sym_scope_resolution, - STATE(8180), 1, - sym_type_specifier, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(4720), 2, + STATE(2172), 2, sym_decltype, sym_template_type, - ACTIONS(10445), 4, + ACTIONS(9893), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4794), 7, + STATE(2269), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -565286,52 +525544,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [284752] = 21, + [237788] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10191), 1, + ACTIONS(9851), 1, sym_identifier, - ACTIONS(10195), 1, + ACTIONS(9855), 1, sym_primitive_type, - ACTIONS(10197), 1, + ACTIONS(9857), 1, anon_sym_enum, - ACTIONS(10199), 1, + ACTIONS(9859), 1, anon_sym_class, - ACTIONS(10201), 1, + ACTIONS(9861), 1, anon_sym_struct, - ACTIONS(10203), 1, + ACTIONS(9863), 1, anon_sym_union, - ACTIONS(10205), 1, + ACTIONS(9865), 1, sym_auto, - ACTIONS(10207), 1, + ACTIONS(9867), 1, anon_sym_decltype, - ACTIONS(10209), 1, + ACTIONS(9869), 1, anon_sym_typename, - STATE(4974), 1, + STATE(4191), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5277), 1, + STATE(4451), 1, sym_type_specifier, - STATE(5723), 1, + STATE(4804), 1, sym_decltype_auto, - STATE(5878), 1, + STATE(4822), 1, sym_qualified_type_identifier, - STATE(7944), 1, + STATE(7545), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(5472), 2, + STATE(4748), 2, sym_decltype, sym_template_type, - ACTIONS(10193), 4, + ACTIONS(9853), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5731), 7, + STATE(4819), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -565339,145 +525597,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [284826] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9643), 1, - anon_sym_LPAREN2, - ACTIONS(9645), 1, - anon_sym_STAR, - STATE(3783), 1, - sym_type_declarator, - STATE(9921), 1, - sym_ms_based_modifier, - STATE(6858), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(4285), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9641), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(9498), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [284878] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8124), 1, - sym_identifier, - ACTIONS(8126), 1, - anon_sym_STAR, - ACTIONS(8128), 1, - anon_sym_AMP_AMP, - ACTIONS(8130), 1, - anon_sym_AMP, - ACTIONS(8132), 1, - anon_sym_LBRACK, - STATE(7205), 1, - sym_scope_resolution, - STATE(7386), 1, - sym_declarator, - STATE(9356), 1, - sym_init_declarator, - STATE(9949), 1, - sym_ms_based_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - [284948] = 21, + [237862] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10390), 1, + ACTIONS(9819), 1, sym_identifier, - ACTIONS(10394), 1, + ACTIONS(9823), 1, sym_primitive_type, - ACTIONS(10396), 1, + ACTIONS(9825), 1, anon_sym_enum, - ACTIONS(10398), 1, + ACTIONS(9827), 1, anon_sym_class, - ACTIONS(10400), 1, + ACTIONS(9829), 1, anon_sym_struct, - ACTIONS(10402), 1, + ACTIONS(9831), 1, anon_sym_union, - ACTIONS(10404), 1, + ACTIONS(9833), 1, sym_auto, - ACTIONS(10406), 1, + ACTIONS(9835), 1, anon_sym_decltype, - ACTIONS(10408), 1, + ACTIONS(9837), 1, anon_sym_typename, - STATE(2220), 1, + STATE(2159), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2768), 1, + STATE(2234), 1, sym_type_specifier, - STATE(2913), 1, + STATE(2266), 1, sym_decltype_auto, - STATE(2955), 1, + STATE(2277), 1, sym_qualified_type_identifier, - STATE(7893), 1, + STATE(7557), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(2760), 2, + STATE(2172), 2, sym_decltype, sym_template_type, - ACTIONS(10392), 4, + ACTIONS(9821), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2917), 7, + STATE(2269), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -565485,36 +525650,36 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [285022] = 10, + [237936] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9526), 1, + ACTIONS(9121), 1, anon_sym_LPAREN2, - ACTIONS(9528), 1, + ACTIONS(9197), 1, anon_sym_STAR, - STATE(3388), 1, + STATE(7342), 1, sym_type_declarator, - STATE(10196), 1, + STATE(9517), 1, sym_ms_based_modifier, - STATE(6858), 2, + STATE(5846), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(3848), 5, + STATE(2300), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9524), 6, + ACTIONS(9119), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(9498), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -565527,36 +525692,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [285074] = 10, + [237988] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9510), 1, + ACTIONS(9193), 1, anon_sym_LPAREN2, - ACTIONS(9594), 1, + ACTIONS(9195), 1, anon_sym_STAR, - STATE(7834), 1, + STATE(2897), 1, sym_type_declarator, - STATE(10178), 1, + STATE(9631), 1, sym_ms_based_modifier, - STATE(6858), 2, + STATE(5846), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(2872), 5, + STATE(3254), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9508), 6, + ACTIONS(9191), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(9498), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -565569,36 +525734,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [285126] = 10, + [238040] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9643), 1, + ACTIONS(9139), 1, anon_sym_LPAREN2, - ACTIONS(9645), 1, + ACTIONS(9141), 1, anon_sym_STAR, - STATE(3793), 1, + STATE(3474), 1, sym_type_declarator, - STATE(9921), 1, + STATE(9294), 1, sym_ms_based_modifier, - STATE(6858), 2, + STATE(5846), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(4285), 5, + STATE(3942), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9641), 6, + ACTIONS(9137), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(9498), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -565611,66 +525776,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [285178] = 21, + [238092] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(121), 1, + ACTIONS(8767), 1, sym_auto, - ACTIONS(123), 1, + ACTIONS(8769), 1, anon_sym_decltype, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(3720), 1, - sym_primitive_type, - ACTIONS(3722), 1, - anon_sym_enum, - ACTIONS(3724), 1, - anon_sym_class, - ACTIONS(3726), 1, - anon_sym_struct, - ACTIONS(3728), 1, - anon_sym_union, - ACTIONS(3730), 1, - anon_sym_typename, - ACTIONS(5548), 1, - sym_identifier, - STATE(3874), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4757), 1, - sym_type_specifier, - STATE(4836), 1, + STATE(6204), 1, sym_decltype_auto, - STATE(4837), 1, - sym_qualified_type_identifier, - STATE(7881), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(4853), 2, - sym_decltype, - sym_template_type, - ACTIONS(57), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4873), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [285252] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6698), 2, + ACTIONS(6191), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6696), 28, + ACTIONS(6189), 25, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -565678,7 +525796,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, @@ -565692,43 +525809,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [285290] = 10, + [238136] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9510), 1, + ACTIONS(9145), 1, anon_sym_LPAREN2, - ACTIONS(9594), 1, + ACTIONS(9147), 1, anon_sym_STAR, - STATE(7848), 1, + STATE(3168), 1, sym_type_declarator, - STATE(10178), 1, + STATE(9304), 1, sym_ms_based_modifier, - STATE(6858), 2, + STATE(5846), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(2872), 5, + STATE(3613), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9508), 6, + ACTIONS(9143), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(9498), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -565741,42 +525856,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [285342] = 14, + [238188] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9187), 1, anon_sym_LPAREN2, - ACTIONS(9105), 1, - anon_sym_LBRACK, - ACTIONS(9107), 1, - anon_sym_const, - ACTIONS(10147), 1, + ACTIONS(9189), 1, anon_sym_STAR, - ACTIONS(10149), 1, - anon_sym_AMP_AMP, - ACTIONS(10151), 1, - anon_sym_AMP, - STATE(4696), 1, - sym_parameter_list, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(8035), 1, - sym_abstract_declarator, - STATE(6470), 2, + STATE(7065), 1, + sym_type_declarator, + STATE(9630), 1, + sym_ms_based_modifier, + STATE(5846), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - ACTIONS(6258), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(7464), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9103), 11, + STATE(7297), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9185), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(65), 12, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -565787,70 +525898,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [285402] = 14, + [238240] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9121), 1, anon_sym_LPAREN2, - ACTIONS(9105), 1, - anon_sym_LBRACK, - ACTIONS(9107), 1, - anon_sym_const, - ACTIONS(10147), 1, + ACTIONS(9197), 1, anon_sym_STAR, - ACTIONS(10149), 1, - anon_sym_AMP_AMP, - ACTIONS(10151), 1, - anon_sym_AMP, - STATE(4696), 1, - sym_parameter_list, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(8018), 1, - sym_abstract_declarator, - STATE(6350), 2, + STATE(7378), 1, + sym_type_declarator, + STATE(9517), 1, + sym_ms_based_modifier, + STATE(5846), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - ACTIONS(7534), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(7464), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9103), 11, + STATE(2300), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9119), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(65), 12, anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [285462] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6551), 2, - anon_sym_AMP, anon_sym_const, - ACTIONS(6549), 28, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -565861,59 +525940,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [285500] = 21, + [238292] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(4342), 1, - sym_identifier, - ACTIONS(4350), 1, - sym_primitive_type, - ACTIONS(4360), 1, + ACTIONS(2251), 1, sym_auto, - ACTIONS(4362), 1, + ACTIONS(2253), 1, anon_sym_decltype, - ACTIONS(10447), 1, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(9839), 1, + sym_identifier, + ACTIONS(9841), 1, anon_sym_enum, - ACTIONS(10449), 1, + ACTIONS(9843), 1, anon_sym_class, - ACTIONS(10451), 1, + ACTIONS(9845), 1, anon_sym_struct, - ACTIONS(10453), 1, + ACTIONS(9847), 1, anon_sym_union, - ACTIONS(10455), 1, + ACTIONS(9849), 1, anon_sym_typename, - STATE(4672), 1, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2618), 1, sym_type_specifier, - STATE(4751), 1, - sym_qualified_type_identifier, - STATE(4805), 1, + STATE(2733), 1, sym_decltype_auto, - STATE(7773), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7904), 1, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(7516), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(4720), 2, + STATE(2580), 2, sym_decltype, sym_template_type, - ACTIONS(10445), 4, + ACTIONS(8349), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4794), 7, + STATE(2673), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -565921,52 +525993,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [285574] = 21, + [238366] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2253), 1, + ACTIONS(2251), 1, sym_auto, - ACTIONS(2255), 1, + ACTIONS(2253), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8664), 1, + ACTIONS(8351), 1, sym_primitive_type, - ACTIONS(10334), 1, + ACTIONS(9839), 1, sym_identifier, - ACTIONS(10338), 1, + ACTIONS(9841), 1, anon_sym_enum, - ACTIONS(10340), 1, + ACTIONS(9843), 1, anon_sym_class, - ACTIONS(10342), 1, + ACTIONS(9845), 1, anon_sym_struct, - ACTIONS(10344), 1, + ACTIONS(9847), 1, anon_sym_union, - ACTIONS(10346), 1, + ACTIONS(9849), 1, anon_sym_typename, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(4064), 1, + STATE(2110), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4441), 1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(4651), 1, sym_type_specifier, - STATE(7902), 1, + STATE(7516), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(2479), 2, + STATE(2580), 2, sym_decltype, sym_template_type, - ACTIONS(10336), 4, + ACTIONS(8349), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2630), 7, + STATE(2673), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -565974,80 +526046,24 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [285648] = 10, + [238440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9510), 1, - anon_sym_LPAREN2, - ACTIONS(9602), 1, - anon_sym_STAR, - STATE(7851), 1, - sym_type_declarator, - STATE(10254), 1, - sym_ms_based_modifier, - STATE(6858), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(2872), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9508), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(9498), 12, - anon_sym___extension__, + ACTIONS(6314), 2, + anon_sym_AMP, anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [285700] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9510), 1, + ACTIONS(6312), 28, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9602), 1, anon_sym_STAR, - STATE(7855), 1, - sym_type_declarator, - STATE(10254), 1, - sym_ms_based_modifier, - STATE(6858), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(2872), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9508), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(9498), 12, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_const, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -566058,52 +526074,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [285752] = 21, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [238478] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, + anon_sym_decltype, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10314), 1, - sym_identifier, - ACTIONS(10318), 1, + ACTIONS(8351), 1, sym_primitive_type, - ACTIONS(10320), 1, + ACTIONS(9839), 1, + sym_identifier, + ACTIONS(9841), 1, anon_sym_enum, - ACTIONS(10322), 1, + ACTIONS(9843), 1, anon_sym_class, - ACTIONS(10324), 1, + ACTIONS(9845), 1, anon_sym_struct, - ACTIONS(10326), 1, + ACTIONS(9847), 1, anon_sym_union, - ACTIONS(10328), 1, - sym_auto, - ACTIONS(10330), 1, - anon_sym_decltype, - ACTIONS(10332), 1, + ACTIONS(9849), 1, anon_sym_typename, - STATE(2671), 1, + STATE(2110), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3026), 1, - sym_type_specifier, - STATE(3676), 1, + STATE(2733), 1, sym_decltype_auto, - STATE(3759), 1, + STATE(2741), 1, sym_qualified_type_identifier, - STATE(7873), 1, + STATE(4658), 1, + sym_type_specifier, + STATE(7516), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(3467), 2, + STATE(2580), 2, sym_decltype, sym_template_type, - ACTIONS(10316), 4, + ACTIONS(8349), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3677), 7, + STATE(2673), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -566111,94 +526134,161 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [285826] = 10, + [238552] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9510), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8275), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9796), 1, + anon_sym_requires, + STATE(6328), 1, + sym_function_exception_specification, + STATE(7021), 1, + sym_requires_clause, + STATE(7068), 1, + sym_function_postfix, + STATE(7091), 1, + sym_function_attributes_end, + STATE(7171), 1, + sym_trailing_return_type, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9657), 2, + anon_sym_final, + anon_sym_override, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9602), 1, - anon_sym_STAR, - STATE(7820), 1, - sym_type_declarator, - STATE(10254), 1, - sym_ms_based_modifier, - STATE(6858), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(2872), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9508), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(9498), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [285878] = 21, + anon_sym_SEMI, + anon_sym_LBRACE, + [238626] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7869), 1, + anon_sym_AMP_AMP, + ACTIONS(7871), 1, + anon_sym_AMP, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8425), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9796), 1, + anon_sym_requires, + STATE(6263), 1, + sym_ref_qualifier, + STATE(6400), 1, + sym_function_exception_specification, + STATE(7021), 1, + sym_requires_clause, + STATE(7068), 1, + sym_function_postfix, + STATE(7171), 1, + sym_trailing_return_type, + STATE(7371), 1, + sym_function_attributes_end, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9640), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(9657), 2, + anon_sym_final, + anon_sym_override, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + [238706] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10231), 1, + ACTIONS(9947), 1, sym_identifier, - ACTIONS(10235), 1, + ACTIONS(9951), 1, sym_primitive_type, - ACTIONS(10237), 1, + ACTIONS(9953), 1, anon_sym_enum, - ACTIONS(10239), 1, + ACTIONS(9955), 1, anon_sym_class, - ACTIONS(10241), 1, + ACTIONS(9957), 1, anon_sym_struct, - ACTIONS(10243), 1, + ACTIONS(9959), 1, anon_sym_union, - ACTIONS(10245), 1, + ACTIONS(9961), 1, sym_auto, - ACTIONS(10247), 1, + ACTIONS(9963), 1, anon_sym_decltype, - ACTIONS(10249), 1, + ACTIONS(9965), 1, anon_sym_typename, - STATE(2466), 1, + STATE(2756), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2977), 1, + STATE(2988), 1, sym_type_specifier, - STATE(3160), 1, - sym_qualified_type_identifier, - STATE(3206), 1, + STATE(3580), 1, sym_decltype_auto, - STATE(7910), 1, + STATE(3598), 1, + sym_qualified_type_identifier, + STATE(7552), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(2971), 2, + STATE(3473), 2, sym_decltype, sym_template_type, - ACTIONS(10233), 4, + ACTIONS(9949), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3222), 7, + STATE(3585), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -566206,52 +526296,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [285952] = 21, + [238780] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10314), 1, + ACTIONS(9871), 1, sym_identifier, - ACTIONS(10318), 1, + ACTIONS(9875), 1, sym_primitive_type, - ACTIONS(10320), 1, + ACTIONS(9877), 1, anon_sym_enum, - ACTIONS(10322), 1, + ACTIONS(9879), 1, anon_sym_class, - ACTIONS(10324), 1, + ACTIONS(9881), 1, anon_sym_struct, - ACTIONS(10326), 1, + ACTIONS(9883), 1, anon_sym_union, - ACTIONS(10328), 1, + ACTIONS(9885), 1, sym_auto, - ACTIONS(10330), 1, + ACTIONS(9887), 1, anon_sym_decltype, - ACTIONS(10332), 1, + ACTIONS(9889), 1, anon_sym_typename, - STATE(2671), 1, + STATE(2826), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2970), 1, + STATE(3682), 1, sym_type_specifier, - STATE(3676), 1, + STATE(3827), 1, sym_decltype_auto, - STATE(3759), 1, + STATE(3836), 1, sym_qualified_type_identifier, - STATE(7873), 1, + STATE(7542), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(3467), 2, + STATE(3655), 2, sym_decltype, sym_template_type, - ACTIONS(10316), 4, + ACTIONS(9873), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3677), 7, + STATE(3831), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -566259,94 +526349,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [286026] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9535), 1, - anon_sym_LPAREN2, - ACTIONS(9588), 1, - anon_sym_STAR, - STATE(7764), 1, - sym_type_declarator, - STATE(9810), 1, - sym_ms_based_modifier, - STATE(6858), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(7629), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9533), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(9498), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [286078] = 21, + [238854] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10370), 1, + ACTIONS(9819), 1, sym_identifier, - ACTIONS(10374), 1, + ACTIONS(9823), 1, sym_primitive_type, - ACTIONS(10376), 1, + ACTIONS(9825), 1, anon_sym_enum, - ACTIONS(10378), 1, + ACTIONS(9827), 1, anon_sym_class, - ACTIONS(10380), 1, + ACTIONS(9829), 1, anon_sym_struct, - ACTIONS(10382), 1, + ACTIONS(9831), 1, anon_sym_union, - ACTIONS(10384), 1, + ACTIONS(9833), 1, sym_auto, - ACTIONS(10386), 1, + ACTIONS(9835), 1, anon_sym_decltype, - ACTIONS(10388), 1, + ACTIONS(9837), 1, anon_sym_typename, - STATE(4307), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4842), 1, + STATE(1962), 1, sym_type_specifier, - STATE(5020), 1, - sym_qualified_type_identifier, - STATE(5074), 1, + STATE(2159), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2266), 1, sym_decltype_auto, - STATE(7875), 1, + STATE(2277), 1, + sym_qualified_type_identifier, + STATE(7557), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(4840), 2, + STATE(2172), 2, sym_decltype, sym_template_type, - ACTIONS(10372), 4, + ACTIONS(9821), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5081), 7, + STATE(2269), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -566354,36 +526402,36 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [286152] = 10, + [238928] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9526), 1, + ACTIONS(9187), 1, anon_sym_LPAREN2, - ACTIONS(9528), 1, + ACTIONS(9209), 1, anon_sym_STAR, - STATE(3375), 1, + STATE(7252), 1, sym_type_declarator, - STATE(10196), 1, + STATE(9315), 1, sym_ms_based_modifier, - STATE(6858), 2, + STATE(5846), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(3848), 5, + STATE(7297), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9524), 6, + ACTIONS(9185), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(9498), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -566396,80 +526444,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [286204] = 10, + [238980] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9526), 1, - anon_sym_LPAREN2, - ACTIONS(9528), 1, - anon_sym_STAR, - STATE(3422), 1, - sym_type_declarator, - STATE(10196), 1, - sym_ms_based_modifier, - STATE(6858), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(3848), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9524), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(9498), 12, - anon_sym___extension__, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(4763), 2, + anon_sym_AMP, anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [286256] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9535), 1, + ACTIONS(4771), 27, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9588), 1, anon_sym_STAR, - STATE(7762), 1, - sym_type_declarator, - STATE(9810), 1, - sym_ms_based_modifier, - STATE(6858), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(7629), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9533), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(9498), 12, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_const, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -566480,36 +526473,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [286308] = 10, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [239020] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9535), 1, + ACTIONS(9187), 1, anon_sym_LPAREN2, - ACTIONS(9588), 1, + ACTIONS(9209), 1, anon_sym_STAR, - STATE(7798), 1, + STATE(7273), 1, sym_type_declarator, - STATE(9810), 1, + STATE(9315), 1, sym_ms_based_modifier, - STATE(6858), 2, + STATE(5846), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(7629), 5, + STATE(7297), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9533), 6, + ACTIONS(9185), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(9498), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -566522,52 +526522,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [286360] = 21, + [239072] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(10410), 1, - sym_identifier, - ACTIONS(10414), 1, - sym_primitive_type, - ACTIONS(10416), 1, + ACTIONS(2221), 1, anon_sym_enum, - ACTIONS(10418), 1, + ACTIONS(2223), 1, anon_sym_class, - ACTIONS(10420), 1, + ACTIONS(2225), 1, anon_sym_struct, - ACTIONS(10422), 1, + ACTIONS(2227), 1, anon_sym_union, - ACTIONS(10424), 1, + ACTIONS(2251), 1, sym_auto, - ACTIONS(10426), 1, + ACTIONS(2253), 1, anon_sym_decltype, - ACTIONS(10428), 1, + ACTIONS(2255), 1, anon_sym_typename, - STATE(2938), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3432), 1, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8454), 1, + sym_identifier, + STATE(2618), 1, sym_type_specifier, - STATE(4075), 1, - sym_qualified_type_identifier, - STATE(4084), 1, + STATE(2733), 1, sym_decltype_auto, - STATE(7909), 1, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(5792), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7524), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(3946), 2, + STATE(2580), 2, sym_decltype, sym_template_type, - ACTIONS(10412), 4, + ACTIONS(2215), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4091), 7, + STATE(2673), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -566575,52 +526575,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [286434] = 21, + [239146] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(4342), 1, + ACTIONS(9927), 1, sym_identifier, - ACTIONS(4350), 1, + ACTIONS(9931), 1, sym_primitive_type, - ACTIONS(4354), 1, + ACTIONS(9933), 1, + anon_sym_enum, + ACTIONS(9935), 1, anon_sym_class, - ACTIONS(4356), 1, + ACTIONS(9937), 1, anon_sym_struct, - ACTIONS(4358), 1, + ACTIONS(9939), 1, anon_sym_union, - ACTIONS(4360), 1, + ACTIONS(9941), 1, sym_auto, - ACTIONS(4362), 1, + ACTIONS(9943), 1, anon_sym_decltype, - ACTIONS(8716), 1, - anon_sym_enum, - ACTIONS(8747), 1, + ACTIONS(9945), 1, anon_sym_typename, - STATE(4672), 1, + STATE(2587), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2849), 1, sym_type_specifier, - STATE(4751), 1, + STATE(3235), 1, sym_qualified_type_identifier, - STATE(4805), 1, + STATE(3309), 1, sym_decltype_auto, - STATE(5790), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7904), 1, + STATE(7544), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(4720), 2, + STATE(3126), 2, sym_decltype, sym_template_type, - ACTIONS(8745), 4, + ACTIONS(9929), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4794), 7, + STATE(3221), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -566628,77 +526628,120 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [286508] = 21, + [239220] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9187), 1, + anon_sym_LPAREN2, + ACTIONS(9209), 1, + anon_sym_STAR, + STATE(7277), 1, + sym_type_declarator, + STATE(9315), 1, + sym_ms_based_modifier, + STATE(5846), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(7297), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9185), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [239272] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8664), 1, - sym_primitive_type, - ACTIONS(10334), 1, + ACTIONS(6533), 1, sym_identifier, - ACTIONS(10338), 1, - anon_sym_enum, - ACTIONS(10340), 1, - anon_sym_class, - ACTIONS(10342), 1, - anon_sym_struct, - ACTIONS(10344), 1, - anon_sym_union, - ACTIONS(10359), 1, - anon_sym_typename, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(3943), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4453), 1, - sym_type_specifier, - STATE(7902), 1, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7760), 1, + anon_sym_STAR, + ACTIONS(7762), 1, + anon_sym_AMP_AMP, + ACTIONS(7764), 1, + anon_sym_AMP, + STATE(6740), 1, sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(2479), 2, + STATE(6971), 1, + sym_declarator, + STATE(8731), 1, + sym_init_declarator, + STATE(9783), 1, + sym_ms_based_modifier, + STATE(9605), 3, sym_decltype, sym_template_type, - ACTIONS(10357), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [286582] = 3, + sym_dependent_type_identifier, + STATE(7305), 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, + [239342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6582), 28, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10081), 7, + anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_COLON_COLON, anon_sym_LBRACK, - anon_sym_EQ, + ACTIONS(10079), 23, + anon_sym_AMP, + anon_sym___extension__, + 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_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -566709,96 +526752,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, + sym_identifier, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [286620] = 21, + anon_sym_template, + anon_sym_operator, + [239380] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(10085), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(8664), 1, - sym_primitive_type, - ACTIONS(10334), 1, + anon_sym_LBRACK, + ACTIONS(10083), 23, + anon_sym_AMP, + anon_sym___extension__, + 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_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, sym_identifier, - ACTIONS(10338), 1, - anon_sym_enum, - ACTIONS(10340), 1, - anon_sym_class, - ACTIONS(10342), 1, - anon_sym_struct, - ACTIONS(10344), 1, - anon_sym_union, - ACTIONS(10359), 1, - anon_sym_typename, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(3943), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4441), 1, - sym_type_specifier, - STATE(7902), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(2479), 2, - sym_decltype, - sym_template_type, - ACTIONS(10357), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [286694] = 10, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [239418] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9510), 1, + ACTIONS(9153), 1, anon_sym_LPAREN2, - ACTIONS(9512), 1, + ACTIONS(9155), 1, anon_sym_STAR, - STATE(2691), 1, + STATE(3226), 1, sym_type_declarator, - STATE(10464), 1, + STATE(9637), 1, sym_ms_based_modifier, - STATE(6858), 2, + STATE(5846), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(2872), 5, + STATE(3783), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9508), 6, + ACTIONS(9151), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(9498), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -566811,52 +526833,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [286746] = 21, + [239470] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7869), 1, + anon_sym_AMP_AMP, + ACTIONS(7871), 1, + anon_sym_AMP, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8386), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9705), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10087), 1, + anon_sym_requires, + STATE(6255), 1, + sym_ref_qualifier, + STATE(6405), 1, + sym_function_exception_specification, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + STATE(7249), 1, + sym_function_attributes_end, + STATE(7435), 1, + sym_trailing_return_type, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9640), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(9708), 2, + anon_sym_final, + anon_sym_override, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + [239550] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10314), 1, + ACTIONS(9970), 1, sym_identifier, - ACTIONS(10318), 1, + ACTIONS(9974), 1, sym_primitive_type, - ACTIONS(10320), 1, + ACTIONS(9976), 1, anon_sym_enum, - ACTIONS(10322), 1, + ACTIONS(9978), 1, anon_sym_class, - ACTIONS(10324), 1, + ACTIONS(9980), 1, anon_sym_struct, - ACTIONS(10326), 1, + ACTIONS(9982), 1, anon_sym_union, - ACTIONS(10328), 1, + ACTIONS(9984), 1, sym_auto, - ACTIONS(10330), 1, + ACTIONS(9986), 1, anon_sym_decltype, - ACTIONS(10332), 1, + ACTIONS(9988), 1, anon_sym_typename, - STATE(2671), 1, + STATE(4460), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3552), 1, + STATE(4803), 1, sym_type_specifier, - STATE(3676), 1, + STATE(5299), 1, sym_decltype_auto, - STATE(3759), 1, + STATE(5360), 1, sym_qualified_type_identifier, - STATE(7873), 1, + STATE(7574), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(3467), 2, + STATE(5181), 2, sym_decltype, sym_template_type, - ACTIONS(10316), 4, + ACTIONS(9972), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3677), 7, + STATE(5346), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -566864,36 +526942,36 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [286820] = 10, + [239624] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9567), 1, + ACTIONS(9187), 1, anon_sym_LPAREN2, - ACTIONS(9569), 1, + ACTIONS(9189), 1, anon_sym_STAR, - STATE(3591), 1, + STATE(7074), 1, sym_type_declarator, - STATE(10608), 1, + STATE(9630), 1, sym_ms_based_modifier, - STATE(6858), 2, + STATE(5846), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(4191), 5, + STATE(7297), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9565), 6, + ACTIONS(9185), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(9498), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -566906,52 +526984,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [286872] = 21, + [239676] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3694), 1, + anon_sym_const, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(9773), 1, + anon_sym_STAR, + ACTIONS(9775), 1, + anon_sym_AMP_AMP, + ACTIONS(9777), 1, + anon_sym_AMP, + STATE(4398), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7696), 1, + sym_abstract_declarator, + STATE(6022), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(9173), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8763), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [239736] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10294), 1, + ACTIONS(10011), 1, sym_identifier, - ACTIONS(10298), 1, + ACTIONS(10015), 1, sym_primitive_type, - ACTIONS(10300), 1, + ACTIONS(10017), 1, anon_sym_enum, - ACTIONS(10302), 1, + ACTIONS(10019), 1, anon_sym_class, - ACTIONS(10304), 1, + ACTIONS(10021), 1, anon_sym_struct, - ACTIONS(10306), 1, + ACTIONS(10023), 1, anon_sym_union, - ACTIONS(10308), 1, + ACTIONS(10025), 1, sym_auto, - ACTIONS(10310), 1, + ACTIONS(10027), 1, anon_sym_decltype, - ACTIONS(10312), 1, + ACTIONS(10029), 1, anon_sym_typename, - STATE(2561), 1, + STATE(2700), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2935), 1, + STATE(3305), 1, sym_type_specifier, - STATE(3540), 1, + STATE(3359), 1, sym_decltype_auto, - STATE(3544), 1, + STATE(3408), 1, sym_qualified_type_identifier, - STATE(7915), 1, + STATE(7525), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(3339), 2, + STATE(3262), 2, sym_decltype, sym_template_type, - ACTIONS(10296), 4, + ACTIONS(10013), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3541), 7, + STATE(3370), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -566959,52 +527083,105 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [286946] = 21, + [239810] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(4342), 1, + ACTIONS(9851), 1, sym_identifier, - ACTIONS(4350), 1, + ACTIONS(9855), 1, sym_primitive_type, - ACTIONS(4360), 1, + ACTIONS(9857), 1, + anon_sym_enum, + ACTIONS(9859), 1, + anon_sym_class, + ACTIONS(9861), 1, + anon_sym_struct, + ACTIONS(9863), 1, + anon_sym_union, + ACTIONS(9865), 1, sym_auto, - ACTIONS(4362), 1, + ACTIONS(9867), 1, anon_sym_decltype, - ACTIONS(10447), 1, + ACTIONS(9869), 1, + anon_sym_typename, + STATE(4191), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4456), 1, + sym_type_specifier, + STATE(4804), 1, + sym_decltype_auto, + STATE(4822), 1, + sym_qualified_type_identifier, + STATE(7545), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(4748), 2, + sym_decltype, + sym_template_type, + ACTIONS(9853), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4819), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [239884] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(69), 1, anon_sym_enum, - ACTIONS(10449), 1, + ACTIONS(71), 1, anon_sym_class, - ACTIONS(10451), 1, + ACTIONS(73), 1, anon_sym_struct, - ACTIONS(10453), 1, + ACTIONS(75), 1, anon_sym_union, - ACTIONS(10455), 1, + ACTIONS(121), 1, + sym_auto, + ACTIONS(123), 1, + anon_sym_decltype, + ACTIONS(131), 1, anon_sym_typename, - STATE(4751), 1, - sym_qualified_type_identifier, - STATE(4805), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(3267), 1, + sym_primitive_type, + ACTIONS(5478), 1, + sym_identifier, + STATE(3385), 1, + sym_type_specifier, + STATE(3570), 1, sym_decltype_auto, - STATE(7773), 1, + STATE(3609), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7904), 1, + STATE(4526), 1, + sym_qualified_type_identifier, + STATE(7571), 1, sym_scope_resolution, - STATE(8159), 1, - sym_type_specifier, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(4720), 2, + STATE(3324), 2, sym_decltype, sym_template_type, - ACTIONS(10445), 4, + ACTIONS(57), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4794), 7, + STATE(3531), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -567012,52 +527189,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [287020] = 21, + [239958] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2223), 1, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(9970), 1, + sym_identifier, + ACTIONS(9974), 1, + sym_primitive_type, + ACTIONS(9976), 1, anon_sym_enum, - ACTIONS(2225), 1, + ACTIONS(9978), 1, anon_sym_class, - ACTIONS(2227), 1, + ACTIONS(9980), 1, anon_sym_struct, - ACTIONS(2229), 1, + ACTIONS(9982), 1, anon_sym_union, - ACTIONS(2253), 1, + ACTIONS(9984), 1, sym_auto, - ACTIONS(2255), 1, + ACTIONS(9986), 1, anon_sym_decltype, - ACTIONS(2257), 1, + ACTIONS(9988), 1, anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - STATE(2489), 1, + STATE(4460), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4794), 1, sym_type_specifier, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, + STATE(5299), 1, sym_decltype_auto, - STATE(6372), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, + STATE(5360), 1, + sym_qualified_type_identifier, + STATE(7574), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(2479), 2, + STATE(5181), 2, sym_decltype, sym_template_type, - ACTIONS(2217), 4, + ACTIONS(9972), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2630), 7, + STATE(5346), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -567065,52 +527242,158 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [287094] = 21, + [240032] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8275), 1, + anon_sym_DASH_GT, + ACTIONS(8285), 1, + anon_sym_requires, + ACTIONS(9783), 1, + anon_sym_LBRACK, + STATE(6333), 1, + sym_function_exception_specification, + STATE(7021), 1, + sym_requires_clause, + STATE(7052), 1, + sym_function_attributes_end, + STATE(7073), 1, + sym_function_postfix, + STATE(7187), 1, + sym_trailing_return_type, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + [240106] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10171), 1, + ACTIONS(9871), 1, sym_identifier, - ACTIONS(10175), 1, + ACTIONS(9875), 1, sym_primitive_type, - ACTIONS(10177), 1, + ACTIONS(9877), 1, anon_sym_enum, - ACTIONS(10179), 1, + ACTIONS(9879), 1, anon_sym_class, - ACTIONS(10181), 1, + ACTIONS(9881), 1, anon_sym_struct, - ACTIONS(10183), 1, + ACTIONS(9883), 1, anon_sym_union, - ACTIONS(10185), 1, + ACTIONS(9885), 1, sym_auto, - ACTIONS(10187), 1, + ACTIONS(9887), 1, anon_sym_decltype, - ACTIONS(10355), 1, + ACTIONS(9889), 1, anon_sym_typename, - STATE(2180), 1, + STATE(2826), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2428), 1, + STATE(3137), 1, sym_type_specifier, - STATE(2753), 1, + STATE(3827), 1, + sym_decltype_auto, + STATE(3836), 1, sym_qualified_type_identifier, - STATE(2777), 1, + STATE(7542), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(3655), 2, + sym_decltype, + sym_template_type, + ACTIONS(9873), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3831), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [240180] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(121), 1, + sym_auto, + ACTIONS(123), 1, + anon_sym_decltype, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(4318), 1, + sym_primitive_type, + ACTIONS(8458), 1, + sym_identifier, + ACTIONS(8460), 1, + anon_sym_enum, + ACTIONS(8462), 1, + anon_sym_class, + ACTIONS(8464), 1, + anon_sym_struct, + ACTIONS(8466), 1, + anon_sym_union, + ACTIONS(8468), 1, + anon_sym_typename, + STATE(3466), 1, + sym_qualified_type_identifier, + STATE(3570), 1, sym_decltype_auto, - STATE(7919), 1, + STATE(3644), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7528), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(7776), 1, + sym_type_specifier, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(2738), 2, + STATE(3324), 2, sym_decltype, sym_template_type, - ACTIONS(10353), 4, + ACTIONS(4316), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2752), 7, + STATE(3531), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -567118,52 +527401,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [287168] = 21, + [240254] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8681), 1, + ACTIONS(9799), 1, sym_identifier, - ACTIONS(8685), 1, + ACTIONS(9803), 1, sym_primitive_type, - ACTIONS(8687), 1, + ACTIONS(9805), 1, anon_sym_enum, - ACTIONS(8689), 1, + ACTIONS(9807), 1, anon_sym_class, - ACTIONS(8691), 1, + ACTIONS(9809), 1, anon_sym_struct, - ACTIONS(8693), 1, + ACTIONS(9811), 1, anon_sym_union, - ACTIONS(8695), 1, + ACTIONS(9813), 1, sym_auto, - ACTIONS(8697), 1, + ACTIONS(9815), 1, anon_sym_decltype, - ACTIONS(8699), 1, + ACTIONS(9817), 1, anon_sym_typename, - STATE(6811), 1, - sym_type_specifier, - STATE(6831), 1, + STATE(3862), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6839), 1, + STATE(4364), 1, + sym_type_specifier, + STATE(4619), 1, sym_decltype_auto, - STATE(6856), 1, + STATE(4620), 1, sym_qualified_type_identifier, - STATE(7942), 1, + STATE(7541), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(6816), 2, + STATE(4549), 2, sym_decltype, sym_template_type, - ACTIONS(8683), 4, + ACTIONS(9801), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(6854), 7, + STATE(4639), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -567171,36 +527454,36 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [287242] = 10, + [240328] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9567), 1, + ACTIONS(9193), 1, anon_sym_LPAREN2, - ACTIONS(9569), 1, + ACTIONS(9195), 1, anon_sym_STAR, - STATE(3598), 1, + STATE(2912), 1, sym_type_declarator, - STATE(10608), 1, + STATE(9631), 1, sym_ms_based_modifier, - STATE(6858), 2, + STATE(5846), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(4191), 5, + STATE(3254), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9565), 6, + ACTIONS(9191), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(9498), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -567213,24 +527496,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [287294] = 3, + [240380] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5957), 2, - anon_sym_AMP, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8380), 1, + sym_auto, + ACTIONS(8390), 1, + sym_identifier, + ACTIONS(8394), 1, + sym_primitive_type, + ACTIONS(8396), 1, + anon_sym_enum, + ACTIONS(8398), 1, + anon_sym_class, + ACTIONS(8400), 1, + anon_sym_struct, + ACTIONS(8402), 1, + anon_sym_union, + ACTIONS(8404), 1, + anon_sym_decltype, + ACTIONS(8406), 1, + anon_sym_typename, + STATE(3466), 1, + sym_qualified_type_identifier, + STATE(4923), 1, + sym_type_specifier, + STATE(4990), 1, + sym_decltype_auto, + STATE(5100), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7551), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(3324), 2, + sym_decltype, + sym_template_type, + ACTIONS(8392), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4991), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [240454] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3694), 1, anon_sym_const, - ACTIONS(5959), 28, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5455), 1, anon_sym_LPAREN2, + ACTIONS(5457), 1, anon_sym_STAR, + ACTIONS(5459), 1, anon_sym_AMP_AMP, + ACTIONS(5461), 1, + anon_sym_AMP, + ACTIONS(8765), 1, + anon_sym_LBRACK, + STATE(4330), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7699), 1, + sym_abstract_declarator, + STATE(6022), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(9173), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8763), 11, anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [240514] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6365), 1, anon_sym___attribute__, + ACTIONS(6491), 1, anon_sym_LBRACE, + ACTIONS(10074), 1, + anon_sym_COLON, + STATE(2504), 1, + sym_enum_base_clause, + STATE(2668), 1, + sym_enumerator_list, + STATE(2739), 1, + sym_attribute_specifier, + ACTIONS(6514), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6516), 22, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym___extension__, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -567245,39 +527634,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [287332] = 10, + sym_semgrep_metavar, + [240564] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9567), 1, + ACTIONS(9145), 1, anon_sym_LPAREN2, - ACTIONS(9569), 1, + ACTIONS(9147), 1, anon_sym_STAR, - STATE(3602), 1, + STATE(3145), 1, sym_type_declarator, - STATE(10608), 1, + STATE(9304), 1, sym_ms_based_modifier, - STATE(6858), 2, + STATE(5846), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - STATE(4191), 5, + STATE(3613), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9565), 6, + ACTIONS(9143), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(9498), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -567290,52 +527678,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [287384] = 21, + [240616] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(4342), 1, + ACTIONS(9970), 1, sym_identifier, - ACTIONS(4350), 1, + ACTIONS(9974), 1, sym_primitive_type, - ACTIONS(4354), 1, + ACTIONS(9976), 1, + anon_sym_enum, + ACTIONS(9978), 1, anon_sym_class, - ACTIONS(4356), 1, + ACTIONS(9980), 1, anon_sym_struct, - ACTIONS(4358), 1, + ACTIONS(9982), 1, anon_sym_union, - ACTIONS(4360), 1, + ACTIONS(9984), 1, sym_auto, - ACTIONS(4362), 1, + ACTIONS(9986), 1, anon_sym_decltype, - ACTIONS(8716), 1, - anon_sym_enum, - ACTIONS(8718), 1, + ACTIONS(9988), 1, anon_sym_typename, - STATE(4672), 1, + STATE(4460), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5164), 1, sym_type_specifier, - STATE(4751), 1, - sym_qualified_type_identifier, - STATE(4805), 1, + STATE(5299), 1, sym_decltype_auto, - STATE(5493), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7904), 1, + STATE(5360), 1, + sym_qualified_type_identifier, + STATE(7574), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(4720), 2, + STATE(5181), 2, sym_decltype, sym_template_type, - ACTIONS(8714), 4, + ACTIONS(9972), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4794), 7, + STATE(5346), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -567343,52 +527731,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [287458] = 21, + [240690] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10171), 1, + ACTIONS(9799), 1, sym_identifier, - ACTIONS(10175), 1, + ACTIONS(9803), 1, sym_primitive_type, - ACTIONS(10177), 1, + ACTIONS(9805), 1, anon_sym_enum, - ACTIONS(10179), 1, + ACTIONS(9807), 1, anon_sym_class, - ACTIONS(10181), 1, + ACTIONS(9809), 1, anon_sym_struct, - ACTIONS(10183), 1, + ACTIONS(9811), 1, anon_sym_union, - ACTIONS(10185), 1, + ACTIONS(9813), 1, sym_auto, - ACTIONS(10187), 1, + ACTIONS(9815), 1, anon_sym_decltype, - ACTIONS(10189), 1, + ACTIONS(9817), 1, anon_sym_typename, - STATE(2087), 1, + STATE(3862), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2673), 1, + STATE(4345), 1, sym_type_specifier, - STATE(2753), 1, - sym_qualified_type_identifier, - STATE(2777), 1, + STATE(4619), 1, sym_decltype_auto, - STATE(7919), 1, + STATE(4620), 1, + sym_qualified_type_identifier, + STATE(7541), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(2738), 2, + STATE(4549), 2, sym_decltype, sym_template_type, - ACTIONS(10173), 4, + ACTIONS(9801), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2752), 7, + STATE(4639), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -567396,84 +527784,36 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [287532] = 21, + [240764] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2253), 1, - sym_auto, - ACTIONS(2255), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8664), 1, - sym_primitive_type, - ACTIONS(10334), 1, - sym_identifier, - ACTIONS(10338), 1, - anon_sym_enum, - ACTIONS(10340), 1, - anon_sym_class, - ACTIONS(10342), 1, - anon_sym_struct, - ACTIONS(10344), 1, - anon_sym_union, - ACTIONS(10346), 1, - anon_sym_typename, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, - sym_decltype_auto, - STATE(4064), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4453), 1, - sym_type_specifier, - STATE(7902), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_dependent_type_identifier, - STATE(2479), 2, - sym_decltype, - sym_template_type, - ACTIONS(10336), 4, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9121), 1, + anon_sym_LPAREN2, + ACTIONS(9123), 1, + anon_sym_STAR, + STATE(2184), 1, + sym_type_declarator, + STATE(9248), 1, + sym_ms_based_modifier, + STATE(5846), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(2300), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9119), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2630), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [287606] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(6505), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(5727), 6, - anon_sym_AMP, - anon_sym___based, + sym_primitive_type, sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(5729), 10, - 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_EQ, - anon_sym_GT2, - ACTIONS(10457), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -567486,52 +527826,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [287648] = 21, + [240816] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(69), 1, - anon_sym_enum, - ACTIONS(71), 1, - anon_sym_class, - ACTIONS(73), 1, - anon_sym_struct, - ACTIONS(75), 1, - anon_sym_union, ACTIONS(121), 1, sym_auto, ACTIONS(123), 1, anon_sym_decltype, - ACTIONS(131), 1, - anon_sym_typename, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(3720), 1, + ACTIONS(4318), 1, sym_primitive_type, - ACTIONS(5548), 1, + ACTIONS(8458), 1, sym_identifier, - STATE(3874), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4757), 1, + ACTIONS(8460), 1, + anon_sym_enum, + ACTIONS(8462), 1, + anon_sym_class, + ACTIONS(8464), 1, + anon_sym_struct, + ACTIONS(8466), 1, + anon_sym_union, + ACTIONS(8468), 1, + anon_sym_typename, + STATE(3385), 1, sym_type_specifier, - STATE(4836), 1, - sym_decltype_auto, - STATE(4837), 1, + STATE(3466), 1, sym_qualified_type_identifier, - STATE(7881), 1, + STATE(3570), 1, + sym_decltype_auto, + STATE(3644), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7528), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(4853), 2, + STATE(3324), 2, sym_decltype, sym_template_type, - ACTIONS(57), 4, + ACTIONS(4316), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4873), 7, + STATE(3531), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -567539,84 +527879,24 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [287722] = 10, + [240890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9494), 1, - anon_sym_LPAREN2, - ACTIONS(9496), 1, - anon_sym_STAR, - STATE(2806), 1, - sym_type_declarator, - STATE(10238), 1, - sym_ms_based_modifier, - STATE(6858), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(3196), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9492), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(9498), 12, - anon_sym___extension__, + ACTIONS(6268), 2, + anon_sym_AMP, anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [287774] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5550), 1, + ACTIONS(6266), 28, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9105), 1, - anon_sym_LBRACK, - ACTIONS(9107), 1, - anon_sym_const, - ACTIONS(10147), 1, anon_sym_STAR, - ACTIONS(10149), 1, anon_sym_AMP_AMP, - ACTIONS(10151), 1, - anon_sym_AMP, - STATE(4696), 1, - sym_parameter_list, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(8008), 1, - sym_abstract_declarator, - STATE(6350), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(9248), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(7464), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9103), 11, + anon_sym_SEMI, anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -567627,52 +527907,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [287834] = 21, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [240928] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3317), 1, - sym_auto, - ACTIONS(3319), 1, - anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8705), 1, - sym_primitive_type, - ACTIONS(10155), 1, + ACTIONS(9927), 1, sym_identifier, - ACTIONS(10161), 1, + ACTIONS(9931), 1, + sym_primitive_type, + ACTIONS(9933), 1, anon_sym_enum, - ACTIONS(10163), 1, + ACTIONS(9935), 1, anon_sym_class, - ACTIONS(10165), 1, + ACTIONS(9937), 1, anon_sym_struct, - ACTIONS(10167), 1, + ACTIONS(9939), 1, anon_sym_union, - ACTIONS(10169), 1, + ACTIONS(9941), 1, + sym_auto, + ACTIONS(9943), 1, + anon_sym_decltype, + ACTIONS(9945), 1, anon_sym_typename, - STATE(3472), 1, - sym_decltype_auto, - STATE(3523), 1, - sym_qualified_type_identifier, - STATE(4823), 1, + STATE(2587), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5145), 1, + STATE(2853), 1, sym_type_specifier, - STATE(7878), 1, + STATE(3235), 1, + sym_qualified_type_identifier, + STATE(3309), 1, + sym_decltype_auto, + STATE(7544), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(3429), 2, + STATE(3126), 2, sym_decltype, sym_template_type, - ACTIONS(10159), 4, + ACTIONS(9929), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3473), 7, + STATE(3221), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -567680,52 +527967,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [287908] = 21, + [241002] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3287), 1, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(9907), 1, + sym_identifier, + ACTIONS(9911), 1, + sym_primitive_type, + ACTIONS(9913), 1, anon_sym_enum, - ACTIONS(3289), 1, + ACTIONS(9915), 1, anon_sym_class, - ACTIONS(3291), 1, + ACTIONS(9917), 1, anon_sym_struct, - ACTIONS(3293), 1, + ACTIONS(9919), 1, anon_sym_union, - ACTIONS(3317), 1, + ACTIONS(9921), 1, sym_auto, - ACTIONS(3319), 1, + ACTIONS(9923), 1, anon_sym_decltype, - ACTIONS(3321), 1, + ACTIONS(9925), 1, anon_sym_typename, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8701), 1, - sym_identifier, - ACTIONS(8705), 1, - sym_primitive_type, - STATE(3324), 1, + STATE(2520), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2751), 1, sym_type_specifier, - STATE(3472), 1, + STATE(2996), 1, sym_decltype_auto, - STATE(3523), 1, + STATE(2999), 1, sym_qualified_type_identifier, - STATE(6532), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7876), 1, + STATE(7547), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(3429), 2, + STATE(2898), 2, sym_decltype, sym_template_type, - ACTIONS(3283), 4, + ACTIONS(9909), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3473), 7, + STATE(2997), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -567733,52 +528020,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [287982] = 21, + [241076] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2225), 1, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(9907), 1, + sym_identifier, + ACTIONS(9911), 1, + sym_primitive_type, + ACTIONS(9913), 1, + anon_sym_enum, + ACTIONS(9915), 1, anon_sym_class, - ACTIONS(2227), 1, + ACTIONS(9917), 1, anon_sym_struct, - ACTIONS(2229), 1, + ACTIONS(9919), 1, anon_sym_union, - ACTIONS(2253), 1, + ACTIONS(9921), 1, sym_auto, - ACTIONS(2255), 1, + ACTIONS(9923), 1, anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_primitive_type, - ACTIONS(8677), 1, - anon_sym_enum, - ACTIONS(8679), 1, + ACTIONS(9925), 1, anon_sym_typename, - STATE(2489), 1, + STATE(2520), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2768), 1, sym_type_specifier, - STATE(2565), 1, - sym_qualified_type_identifier, - STATE(2627), 1, + STATE(2996), 1, sym_decltype_auto, - STATE(6241), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, + STATE(2999), 1, + sym_qualified_type_identifier, + STATE(7547), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(2479), 2, + STATE(2898), 2, sym_decltype, sym_template_type, - ACTIONS(8675), 4, + ACTIONS(9909), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2630), 7, + STATE(2997), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -567786,52 +528073,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [288056] = 21, + [241150] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10294), 1, + ACTIONS(9833), 1, + sym_auto, + ACTIONS(9835), 1, + anon_sym_decltype, + ACTIONS(9891), 1, sym_identifier, - ACTIONS(10298), 1, + ACTIONS(9895), 1, sym_primitive_type, - ACTIONS(10300), 1, + ACTIONS(9897), 1, anon_sym_enum, - ACTIONS(10302), 1, + ACTIONS(9899), 1, anon_sym_class, - ACTIONS(10304), 1, + ACTIONS(9901), 1, anon_sym_struct, - ACTIONS(10306), 1, + ACTIONS(9903), 1, anon_sym_union, - ACTIONS(10308), 1, - sym_auto, - ACTIONS(10310), 1, - anon_sym_decltype, - ACTIONS(10312), 1, + ACTIONS(9905), 1, anon_sym_typename, - STATE(2561), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2889), 1, + STATE(2234), 1, sym_type_specifier, - STATE(3540), 1, + STATE(2266), 1, sym_decltype_auto, - STATE(3544), 1, + STATE(2277), 1, sym_qualified_type_identifier, - STATE(7915), 1, + STATE(2439), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7549), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(3339), 2, + STATE(2172), 2, sym_decltype, sym_template_type, - ACTIONS(10296), 4, + ACTIONS(9893), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3541), 7, + STATE(2269), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -567839,52 +528126,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [288130] = 21, + [241224] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3317), 1, - sym_auto, - ACTIONS(3319), 1, - anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8705), 1, - sym_primitive_type, - ACTIONS(10155), 1, + ACTIONS(9819), 1, sym_identifier, - ACTIONS(10161), 1, + ACTIONS(9823), 1, + sym_primitive_type, + ACTIONS(9825), 1, anon_sym_enum, - ACTIONS(10163), 1, + ACTIONS(9827), 1, anon_sym_class, - ACTIONS(10165), 1, + ACTIONS(9829), 1, anon_sym_struct, - ACTIONS(10167), 1, + ACTIONS(9831), 1, anon_sym_union, - ACTIONS(10169), 1, + ACTIONS(9833), 1, + sym_auto, + ACTIONS(9835), 1, + anon_sym_decltype, + ACTIONS(9837), 1, anon_sym_typename, - STATE(3472), 1, + STATE(1934), 1, + sym_type_specifier, + STATE(2159), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2266), 1, sym_decltype_auto, - STATE(3523), 1, + STATE(2277), 1, sym_qualified_type_identifier, - STATE(4823), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5138), 1, - sym_type_specifier, - STATE(7878), 1, + STATE(7557), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(3429), 2, + STATE(2172), 2, sym_decltype, sym_template_type, - ACTIONS(10159), 4, + ACTIONS(9821), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3473), 7, + STATE(2269), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -567892,52 +528179,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [288204] = 21, + [241298] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10274), 1, + ACTIONS(10011), 1, sym_identifier, - ACTIONS(10278), 1, + ACTIONS(10015), 1, sym_primitive_type, - ACTIONS(10280), 1, + ACTIONS(10017), 1, anon_sym_enum, - ACTIONS(10282), 1, + ACTIONS(10019), 1, anon_sym_class, - ACTIONS(10284), 1, + ACTIONS(10021), 1, anon_sym_struct, - ACTIONS(10286), 1, + ACTIONS(10023), 1, anon_sym_union, - ACTIONS(10288), 1, + ACTIONS(10025), 1, sym_auto, - ACTIONS(10290), 1, + ACTIONS(10027), 1, anon_sym_decltype, - ACTIONS(10292), 1, + ACTIONS(10029), 1, anon_sym_typename, - STATE(4630), 1, + STATE(2700), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5093), 1, + STATE(2974), 1, sym_type_specifier, - STATE(5220), 1, - sym_qualified_type_identifier, - STATE(5276), 1, + STATE(3359), 1, sym_decltype_auto, - STATE(7884), 1, + STATE(3408), 1, + sym_qualified_type_identifier, + STATE(7525), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(5180), 2, + STATE(3262), 2, sym_decltype, sym_template_type, - ACTIONS(10276), 4, + ACTIONS(10013), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5282), 7, + STATE(3370), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -567945,52 +528232,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [288278] = 21, + [241372] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10171), 1, - sym_identifier, - ACTIONS(10175), 1, + ACTIONS(3358), 1, + sym_auto, + ACTIONS(3360), 1, + anon_sym_decltype, + ACTIONS(8449), 1, sym_primitive_type, - ACTIONS(10177), 1, + ACTIONS(10031), 1, + sym_identifier, + ACTIONS(10033), 1, anon_sym_enum, - ACTIONS(10179), 1, + ACTIONS(10035), 1, anon_sym_class, - ACTIONS(10181), 1, + ACTIONS(10037), 1, anon_sym_struct, - ACTIONS(10183), 1, + ACTIONS(10039), 1, anon_sym_union, - ACTIONS(10185), 1, - sym_auto, - ACTIONS(10187), 1, - anon_sym_decltype, - ACTIONS(10355), 1, + ACTIONS(10041), 1, anon_sym_typename, - STATE(2180), 1, + STATE(2573), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2673), 1, + STATE(3182), 1, sym_type_specifier, - STATE(2753), 1, + STATE(3240), 1, sym_qualified_type_identifier, - STATE(2777), 1, + STATE(3292), 1, sym_decltype_auto, - STATE(7919), 1, + STATE(7556), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(2738), 2, + STATE(2572), 2, sym_decltype, sym_template_type, - ACTIONS(10353), 4, + ACTIONS(3324), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2752), 7, + STATE(3293), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -567998,15 +528285,112 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [288352] = 4, + [241446] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(4827), 2, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8259), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9793), 1, + anon_sym_requires, + STATE(6323), 1, + sym_function_exception_specification, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + STATE(6915), 1, + sym_function_attributes_end, + STATE(7191), 1, + sym_trailing_return_type, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9708), 2, + anon_sym_final, + anon_sym_override, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [241520] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3694), 1, + anon_sym_const, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(9773), 1, + anon_sym_STAR, + ACTIONS(9775), 1, + anon_sym_AMP_AMP, + ACTIONS(9777), 1, + anon_sym_AMP, + STATE(4398), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7657), 1, + sym_abstract_declarator, + STATE(6008), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(6535), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8763), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [241580] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6078), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4835), 27, + ACTIONS(6076), 28, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -568014,6 +528398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, @@ -568034,52 +528419,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [288392] = 21, + [241618] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7869), 1, + anon_sym_AMP_AMP, + ACTIONS(7871), 1, + anon_sym_AMP, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8386), 1, + anon_sym_DASH_GT, + ACTIONS(8388), 1, + anon_sym_requires, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9705), 1, + anon_sym_LBRACK_LBRACK, + STATE(6267), 1, + sym_ref_qualifier, + STATE(6402), 1, + sym_function_exception_specification, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + STATE(7302), 1, + sym_function_attributes_end, + STATE(7408), 1, + sym_trailing_return_type, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9640), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + [241698] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10410), 1, + ACTIONS(10011), 1, sym_identifier, - ACTIONS(10414), 1, + ACTIONS(10015), 1, sym_primitive_type, - ACTIONS(10416), 1, + ACTIONS(10017), 1, anon_sym_enum, - ACTIONS(10418), 1, + ACTIONS(10019), 1, anon_sym_class, - ACTIONS(10420), 1, + ACTIONS(10021), 1, anon_sym_struct, - ACTIONS(10422), 1, + ACTIONS(10023), 1, anon_sym_union, - ACTIONS(10424), 1, + ACTIONS(10025), 1, sym_auto, - ACTIONS(10426), 1, + ACTIONS(10027), 1, anon_sym_decltype, - ACTIONS(10428), 1, + ACTIONS(10029), 1, anon_sym_typename, - STATE(2938), 1, + STATE(2700), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3420), 1, + STATE(2939), 1, sym_type_specifier, - STATE(4075), 1, - sym_qualified_type_identifier, - STATE(4084), 1, + STATE(3359), 1, sym_decltype_auto, - STATE(7909), 1, + STATE(3408), 1, + sym_qualified_type_identifier, + STATE(7525), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(3946), 2, + STATE(3262), 2, sym_decltype, sym_template_type, - ACTIONS(10412), 4, + ACTIONS(10013), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4091), 7, + STATE(3370), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -568087,108 +528528,87 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [288466] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9510), 1, - anon_sym_LPAREN2, - ACTIONS(9594), 1, - anon_sym_STAR, - STATE(7838), 1, - sym_type_declarator, - STATE(10178), 1, - sym_ms_based_modifier, - STATE(6858), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - STATE(2872), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9508), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(9498), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [288518] = 3, + [241772] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5479), 4, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5477), 25, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___based, + ACTIONS(8427), 1, + sym_identifier, + ACTIONS(8431), 1, + sym_primitive_type, + ACTIONS(8433), 1, + anon_sym_enum, + ACTIONS(8435), 1, + anon_sym_class, + ACTIONS(8437), 1, + anon_sym_struct, + ACTIONS(8439), 1, + anon_sym_union, + ACTIONS(8441), 1, + sym_auto, + ACTIONS(8443), 1, + anon_sym_decltype, + ACTIONS(8445), 1, + anon_sym_typename, + STATE(5516), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5949), 1, + sym_type_specifier, + STATE(6085), 1, + sym_qualified_type_identifier, + STATE(6135), 1, + sym_decltype_auto, + STATE(7539), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(5963), 2, + sym_decltype, + sym_template_type, + ACTIONS(8429), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [288555] = 9, + STATE(6205), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [241846] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10267), 1, - anon_sym___attribute__, - ACTIONS(10460), 1, + ACTIONS(4238), 1, anon_sym_LBRACE, - ACTIONS(10462), 1, - anon_sym_COLON, - STATE(6731), 1, - sym_enum_base_clause, - STATE(6798), 1, - sym_enumerator_list, - STATE(6840), 1, - sym_attribute_specifier, - ACTIONS(6235), 2, + ACTIONS(10090), 1, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(6233), 21, - anon_sym___extension__, - anon_sym___based, + STATE(2767), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4001), 1, + sym_argument_list, + STATE(5638), 1, + sym_initializer_list, + ACTIONS(4763), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6890), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_const, + ACTIONS(4771), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym___extension__, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -568199,27 +528619,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - sym_identifier, sym_auto, anon_sym_decltype, - [288604] = 3, + anon_sym_GT2, + [241896] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6616), 2, - anon_sym_AMP, + ACTIONS(3694), 1, anon_sym_const, - ACTIONS(6614), 27, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5455), 1, anon_sym_LPAREN2, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(9773), 1, anon_sym_STAR, + ACTIONS(9775), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(9777), 1, + anon_sym_AMP, + STATE(4398), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7679), 1, + sym_abstract_declarator, + STATE(6022), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(7388), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8763), 11, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -568230,354 +528668,250 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [288641] = 17, + [241956] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(7920), 1, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8259), 1, anon_sym_DASH_GT, - ACTIONS(7926), 1, + ACTIONS(8280), 1, anon_sym_requires, - ACTIONS(10466), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10469), 1, + ACTIONS(9783), 1, anon_sym_LBRACK, - STATE(6933), 1, - sym_trailing_return_type, - STATE(7077), 1, - sym_function_attributes_end, - STATE(7270), 1, - sym_requires_clause, - STATE(7333), 1, + ACTIONS(10045), 1, + anon_sym_LBRACK_LBRACK, + STATE(6336), 1, + sym_function_exception_specification, + STATE(6814), 1, sym_function_postfix, - STATE(8073), 1, + STATE(6852), 1, + sym_requires_clause, + STATE(6944), 1, + sym_function_attributes_end, + STATE(7160), 1, + sym_trailing_return_type, + STATE(7721), 1, sym_gnu_asm_expression, - ACTIONS(6118), 2, + ACTIONS(6369), 2, anon_sym_final, anon_sym_override, - ACTIONS(7918), 2, + ACTIONS(7879), 2, anon_sym_asm, anon_sym___asm__, - STATE(6828), 2, + STATE(6443), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6901), 2, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6754), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7215), 2, + STATE(6761), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10464), 9, - anon_sym_COMMA, + ACTIONS(9781), 5, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT2, anon_sym_try, - [288706] = 3, + [242030] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6630), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6628), 27, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(121), 1, sym_auto, + ACTIONS(123), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [288743] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6790), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, - anon_sym___attribute__, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, - anon_sym___declspec, - ACTIONS(10139), 1, - anon_sym_alignas, - ACTIONS(10471), 1, + ACTIONS(3267), 1, + sym_primitive_type, + ACTIONS(3269), 1, + anon_sym_enum, + ACTIONS(3271), 1, + anon_sym_class, + ACTIONS(3273), 1, + anon_sym_struct, + ACTIONS(3275), 1, + anon_sym_union, + ACTIONS(3277), 1, + anon_sym_typename, + ACTIONS(5478), 1, sym_identifier, - STATE(2739), 1, - sym_class_name, - STATE(3011), 1, - sym_template_type, - STATE(3140), 1, + STATE(3385), 1, + sym_type_specifier, + STATE(3570), 1, + sym_decltype_auto, + STATE(3609), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4526), 1, sym_qualified_type_identifier, - STATE(3284), 1, - sym_field_declaration_list, - STATE(3474), 1, - sym_class_declaration, - STATE(3475), 1, - sym_class_declaration_item, - STATE(6934), 1, - sym_ms_declspec_modifier, - STATE(7878), 1, + STATE(7571), 1, sym_scope_resolution, - STATE(8497), 1, - sym_virtual_specifier, - STATE(9538), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(6935), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(6700), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym_class_declaration_repeat1, - [288824] = 25, + STATE(3324), 2, + sym_decltype, + sym_template_type, + ACTIONS(57), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3531), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [242104] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(6790), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, - anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, - anon_sym___declspec, - ACTIONS(10139), 1, - anon_sym_alignas, - ACTIONS(10471), 1, - sym_identifier, - STATE(2739), 1, - sym_class_name, - STATE(3011), 1, - sym_template_type, - STATE(3140), 1, - sym_qualified_type_identifier, - STATE(3284), 1, - sym_field_declaration_list, - STATE(3475), 1, - sym_class_declaration_item, - STATE(3476), 1, - sym_class_declaration, - STATE(6934), 1, - sym_ms_declspec_modifier, - STATE(7878), 1, - sym_scope_resolution, - STATE(8497), 1, - sym_virtual_specifier, - STATE(9538), 1, - sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8275), 1, + anon_sym_DASH_GT, + ACTIONS(8285), 1, + anon_sym_requires, + ACTIONS(9642), 1, + anon_sym_LBRACK, + STATE(6330), 1, + sym_function_exception_specification, + STATE(7021), 1, + sym_requires_clause, + STATE(7062), 1, + sym_function_attributes_end, + STATE(7068), 1, + sym_function_postfix, + STATE(7161), 1, + sym_trailing_return_type, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7921), 2, anon_sym_final, anon_sym_override, - STATE(6935), 2, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6754), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6700), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym_class_declaration_repeat1, - [288905] = 25, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + [242178] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6790), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, - anon_sym___attribute__, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, - anon_sym___declspec, - ACTIONS(10139), 1, - anon_sym_alignas, - ACTIONS(10471), 1, + ACTIONS(9947), 1, sym_identifier, - STATE(2739), 1, - sym_class_name, - STATE(3011), 1, - sym_template_type, - STATE(3140), 1, + ACTIONS(9951), 1, + sym_primitive_type, + ACTIONS(9953), 1, + anon_sym_enum, + ACTIONS(9955), 1, + anon_sym_class, + ACTIONS(9957), 1, + anon_sym_struct, + ACTIONS(9959), 1, + anon_sym_union, + ACTIONS(9961), 1, + sym_auto, + ACTIONS(9963), 1, + anon_sym_decltype, + ACTIONS(9965), 1, + anon_sym_typename, + STATE(2756), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3060), 1, + sym_type_specifier, + STATE(3580), 1, + sym_decltype_auto, + STATE(3598), 1, sym_qualified_type_identifier, - STATE(3284), 1, - sym_field_declaration_list, - STATE(3475), 1, - sym_class_declaration_item, - STATE(3477), 1, - sym_class_declaration, - STATE(6934), 1, - sym_ms_declspec_modifier, - STATE(7878), 1, + STATE(7552), 1, sym_scope_resolution, - STATE(8497), 1, - sym_virtual_specifier, - STATE(9538), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(6935), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(6700), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym_class_declaration_repeat1, - [288986] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2856), 1, - anon_sym_LBRACE, - ACTIONS(8115), 1, - anon_sym_LPAREN2, - STATE(2108), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4043), 1, - sym_argument_list, - STATE(4044), 1, - sym_initializer_list, - ACTIONS(4827), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6060), 4, + STATE(3473), 2, + sym_decltype, + sym_template_type, + ACTIONS(9949), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(4835), 18, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - sym_semgrep_metavar, - [289035] = 3, + STATE(3585), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [242252] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6684), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6682), 27, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9139), 1, anon_sym_LPAREN2, + ACTIONS(9141), 1, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + STATE(3525), 1, + sym_type_declarator, + STATE(9294), 1, + sym_ms_based_modifier, + STATE(5846), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(3942), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9137), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(65), 12, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [289072] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6612), 2, - anon_sym_AMP, anon_sym_const, - ACTIONS(6610), 27, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -568588,20 +528922,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [289109] = 3, + [242304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6694), 2, + ACTIONS(6240), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6692), 27, + ACTIONS(6238), 28, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -568609,6 +528936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, @@ -568629,95 +528957,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [289146] = 3, + [242342] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6572), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6570), 27, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(121), 1, sym_auto, + ACTIONS(123), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [289183] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8610), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(4310), 1, sym_identifier, - ACTIONS(8614), 1, + ACTIONS(4318), 1, sym_primitive_type, - STATE(6294), 1, + ACTIONS(4320), 1, + anon_sym_enum, + ACTIONS(4322), 1, + anon_sym_class, + ACTIONS(4324), 1, + anon_sym_struct, + ACTIONS(4326), 1, + anon_sym_union, + ACTIONS(4328), 1, + anon_sym_typename, + STATE(3385), 1, + sym_type_specifier, + STATE(3466), 1, + sym_qualified_type_identifier, + STATE(3570), 1, + sym_decltype_auto, + STATE(3644), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(10436), 4, + STATE(7546), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(3324), 2, + sym_decltype, + sym_template_type, + ACTIONS(4316), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6022), 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(6026), 15, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + STATE(3531), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [242416] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(9927), 1, + sym_identifier, + ACTIONS(9931), 1, + sym_primitive_type, + ACTIONS(9933), 1, + anon_sym_enum, + ACTIONS(9935), 1, + anon_sym_class, + ACTIONS(9937), 1, + anon_sym_struct, + ACTIONS(9939), 1, + anon_sym_union, + ACTIONS(9941), 1, sym_auto, + ACTIONS(9943), 1, anon_sym_decltype, - [289228] = 3, + ACTIONS(9945), 1, + anon_sym_typename, + STATE(2587), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3160), 1, + sym_type_specifier, + STATE(3235), 1, + sym_qualified_type_identifier, + STATE(3309), 1, + sym_decltype_auto, + STATE(7544), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(3126), 2, + sym_decltype, + sym_template_type, + ACTIONS(9929), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3221), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [242490] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6658), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6656), 27, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9121), 1, anon_sym_LPAREN2, + ACTIONS(9123), 1, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + STATE(2170), 1, + sym_type_declarator, + STATE(9248), 1, + sym_ms_based_modifier, + STATE(5846), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(2300), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9119), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(65), 12, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -568728,247 +529105,348 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [289265] = 18, + [242542] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6256), 1, + ACTIONS(3328), 1, + anon_sym_enum, + ACTIONS(3330), 1, + anon_sym_class, + ACTIONS(3332), 1, + anon_sym_struct, + ACTIONS(3334), 1, + anon_sym_union, + ACTIONS(3358), 1, + sym_auto, + ACTIONS(3360), 1, + anon_sym_decltype, + ACTIONS(3362), 1, + anon_sym_typename, + ACTIONS(8447), 1, sym_identifier, - ACTIONS(8132), 1, - anon_sym_LBRACK, - ACTIONS(8163), 1, - anon_sym_STAR, - ACTIONS(8165), 1, - anon_sym_AMP_AMP, - ACTIONS(8167), 1, - anon_sym_AMP, - STATE(7241), 1, + ACTIONS(8449), 1, + sym_primitive_type, + STATE(2573), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3182), 1, + sym_type_specifier, + STATE(3240), 1, + sym_qualified_type_identifier, + STATE(3292), 1, + sym_decltype_auto, + STATE(7558), 1, sym_scope_resolution, - STATE(7828), 1, - sym_declarator, - STATE(9737), 1, - sym_ms_based_modifier, - STATE(9982), 3, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2572), 2, sym_decltype, sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - [289332] = 25, + ACTIONS(3324), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3293), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [242616] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2313), 1, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6803), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, - anon_sym___attribute__, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, - anon_sym___declspec, - ACTIONS(10139), 1, - anon_sym_alignas, - ACTIONS(10473), 1, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(9839), 1, sym_identifier, - STATE(2745), 1, - sym_class_name, - STATE(3135), 1, - sym_template_type, - STATE(3434), 1, + ACTIONS(9841), 1, + anon_sym_enum, + ACTIONS(9843), 1, + anon_sym_class, + ACTIONS(9845), 1, + anon_sym_struct, + ACTIONS(9847), 1, + anon_sym_union, + ACTIONS(9849), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, sym_qualified_type_identifier, - STATE(3726), 1, - sym_field_declaration_list, - STATE(4111), 1, - sym_class_declaration, - STATE(4112), 1, - sym_class_declaration_item, - STATE(6954), 1, - sym_ms_declspec_modifier, - STATE(7909), 1, + STATE(4391), 1, + sym_type_specifier, + STATE(7516), 1, sym_scope_resolution, - STATE(8193), 1, - sym_virtual_specifier, - STATE(9509), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(6955), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(6697), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym_class_declaration_repeat1, - [289413] = 25, + STATE(2580), 2, + sym_decltype, + sym_template_type, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [242690] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6803), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, - anon_sym___attribute__, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, - anon_sym___declspec, - ACTIONS(10139), 1, - anon_sym_alignas, - ACTIONS(10473), 1, + ACTIONS(9799), 1, sym_identifier, - STATE(2745), 1, - sym_class_name, - STATE(3135), 1, - sym_template_type, - STATE(3434), 1, + ACTIONS(9803), 1, + sym_primitive_type, + ACTIONS(9805), 1, + anon_sym_enum, + ACTIONS(9807), 1, + anon_sym_class, + ACTIONS(9809), 1, + anon_sym_struct, + ACTIONS(9811), 1, + anon_sym_union, + ACTIONS(9813), 1, + sym_auto, + ACTIONS(9815), 1, + anon_sym_decltype, + ACTIONS(9817), 1, + anon_sym_typename, + STATE(3862), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4562), 1, + sym_type_specifier, + STATE(4619), 1, + sym_decltype_auto, + STATE(4620), 1, sym_qualified_type_identifier, - STATE(3726), 1, - sym_field_declaration_list, - STATE(4112), 1, - sym_class_declaration_item, - STATE(4117), 1, - sym_class_declaration, - STATE(6954), 1, - sym_ms_declspec_modifier, - STATE(7909), 1, + STATE(7541), 1, sym_scope_resolution, - STATE(8193), 1, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(4549), 2, + sym_decltype, + sym_template_type, + ACTIONS(9801), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4639), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [242764] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8259), 1, + anon_sym_DASH_GT, + ACTIONS(8280), 1, + anon_sym_requires, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9749), 1, + anon_sym_LBRACK_LBRACK, + STATE(6322), 1, + sym_function_exception_specification, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + STATE(6906), 1, + sym_function_attributes_end, + STATE(7220), 1, + sym_trailing_return_type, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, sym_virtual_specifier, - STATE(9509), 1, - sym_base_class_clause, - ACTIONS(6086), 2, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [242838] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5725), 1, + anon_sym_AMP, + ACTIONS(10071), 1, + anon_sym_const, + STATE(6022), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(10093), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(5727), 15, + 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_final, anon_sym_override, - STATE(6955), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6697), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym_class_declaration_repeat1, - [289494] = 25, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [242882] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(6803), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(7869), 1, + anon_sym_AMP_AMP, + ACTIONS(7871), 1, + anon_sym_AMP, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8207), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(8285), 1, + anon_sym_requires, + ACTIONS(8324), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, - anon_sym___declspec, - ACTIONS(10139), 1, - anon_sym_alignas, - ACTIONS(10473), 1, - sym_identifier, - STATE(2745), 1, - sym_class_name, - STATE(3135), 1, - sym_template_type, - STATE(3434), 1, - sym_qualified_type_identifier, - STATE(3726), 1, - sym_field_declaration_list, - STATE(4112), 1, - sym_class_declaration_item, - STATE(4120), 1, - sym_class_declaration, - STATE(6954), 1, - sym_ms_declspec_modifier, - STATE(7909), 1, - sym_scope_resolution, - STATE(8193), 1, - sym_virtual_specifier, - STATE(9509), 1, - sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(8425), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, + anon_sym_LBRACK, + STATE(6262), 1, + sym_ref_qualifier, + STATE(6446), 1, + sym_function_exception_specification, + STATE(7021), 1, + sym_requires_clause, + STATE(7068), 1, + sym_function_postfix, + STATE(7161), 1, + sym_trailing_return_type, + STATE(7358), 1, + sym_function_attributes_end, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7921), 2, anon_sym_final, anon_sym_override, - STATE(6955), 2, + ACTIONS(9640), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6697), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym_class_declaration_repeat1, - [289575] = 3, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + [242962] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6522), 2, - anon_sym_AMP, + ACTIONS(3694), 1, anon_sym_const, - ACTIONS(6520), 27, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5455), 1, anon_sym_LPAREN2, + ACTIONS(5457), 1, anon_sym_STAR, + ACTIONS(5459), 1, anon_sym_AMP_AMP, + ACTIONS(5461), 1, + anon_sym_AMP, + ACTIONS(8765), 1, + anon_sym_LBRACK, + STATE(4330), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7690), 1, + sym_abstract_declarator, + STATE(6022), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(7388), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8763), 11, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -568979,30 +529457,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, + [243022] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8259), 1, + anon_sym_DASH_GT, + ACTIONS(9783), 1, + anon_sym_LBRACK, + ACTIONS(10045), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10096), 1, + anon_sym_requires, + STATE(6331), 1, + sym_function_exception_specification, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(6941), 1, + sym_function_attributes_end, + STATE(7203), 1, + sym_trailing_return_type, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10005), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_try, - anon_sym_requires, - [289612] = 3, + [243096] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6644), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6642), 27, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9193), 1, anon_sym_LPAREN2, + ACTIONS(9195), 1, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + STATE(2908), 1, + sym_type_declarator, + STATE(9631), 1, + sym_ms_based_modifier, + STATE(5846), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(3254), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9191), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(65), 12, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -569013,30 +529552,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [289649] = 3, + [243148] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6654), 2, - anon_sym_AMP, + ACTIONS(3694), 1, anon_sym_const, - ACTIONS(6652), 27, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5455), 1, anon_sym_LPAREN2, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(9773), 1, anon_sym_STAR, + ACTIONS(9775), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(9777), 1, + anon_sym_AMP, + STATE(4398), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7700), 1, + sym_abstract_declarator, + STATE(6022), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(9177), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8763), 11, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -569047,415 +529598,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [289686] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(6132), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, - anon_sym___attribute__, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, - anon_sym___declspec, - ACTIONS(10139), 1, - anon_sym_alignas, - ACTIONS(10475), 1, - sym_identifier, - STATE(2190), 1, - sym_class_name, - STATE(2515), 1, - sym_template_type, - STATE(2599), 1, - sym_qualified_type_identifier, - STATE(2717), 1, - sym_field_declaration_list, - STATE(2869), 1, - sym_class_declaration, - STATE(2870), 1, - sym_class_declaration_item, - STATE(6986), 1, - sym_ms_declspec_modifier, - STATE(7919), 1, - sym_scope_resolution, - STATE(8434), 1, - sym_virtual_specifier, - STATE(9373), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(6988), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6724), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym_class_declaration_repeat1, - [289767] = 25, + [243208] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(6132), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, - anon_sym___attribute__, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, - anon_sym___declspec, - ACTIONS(10139), 1, - anon_sym_alignas, - ACTIONS(10475), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9145), 1, + anon_sym_LPAREN2, + ACTIONS(9147), 1, + anon_sym_STAR, + STATE(3132), 1, + sym_type_declarator, + STATE(9304), 1, + sym_ms_based_modifier, + STATE(5846), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(3613), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9143), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, sym_identifier, - STATE(2190), 1, - sym_class_name, - STATE(2515), 1, - sym_template_type, - STATE(2599), 1, - sym_qualified_type_identifier, - STATE(2717), 1, - sym_field_declaration_list, - STATE(2755), 1, - sym_class_declaration, - STATE(2870), 1, - sym_class_declaration_item, - STATE(6986), 1, - sym_ms_declspec_modifier, - STATE(7919), 1, - sym_scope_resolution, - STATE(8434), 1, - sym_virtual_specifier, - STATE(9373), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(6988), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6724), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym_class_declaration_repeat1, - [289848] = 25, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [243260] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6132), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, - anon_sym___attribute__, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, - anon_sym___declspec, - ACTIONS(10139), 1, - anon_sym_alignas, - ACTIONS(10475), 1, + ACTIONS(9871), 1, sym_identifier, - STATE(2190), 1, - sym_class_name, - STATE(2515), 1, - sym_template_type, - STATE(2599), 1, - sym_qualified_type_identifier, - STATE(2717), 1, - sym_field_declaration_list, - STATE(2750), 1, - sym_class_declaration, - STATE(2870), 1, - sym_class_declaration_item, - STATE(6986), 1, - sym_ms_declspec_modifier, - STATE(7919), 1, - sym_scope_resolution, - STATE(8434), 1, - sym_virtual_specifier, - STATE(9373), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(6988), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6724), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym_class_declaration_repeat1, - [289929] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, + ACTIONS(9875), 1, + sym_primitive_type, + ACTIONS(9877), 1, + anon_sym_enum, + ACTIONS(9879), 1, + anon_sym_class, + ACTIONS(9881), 1, + anon_sym_struct, + ACTIONS(9883), 1, + anon_sym_union, + ACTIONS(9885), 1, + sym_auto, + ACTIONS(9887), 1, anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(6718), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, - anon_sym___attribute__, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, - anon_sym___declspec, - ACTIONS(10139), 1, - anon_sym_alignas, - ACTIONS(10477), 1, - sym_identifier, - STATE(2676), 1, - sym_class_name, - STATE(3010), 1, - sym_template_type, - STATE(3184), 1, + ACTIONS(9889), 1, + anon_sym_typename, + STATE(2826), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3149), 1, + sym_type_specifier, + STATE(3827), 1, + sym_decltype_auto, + STATE(3836), 1, sym_qualified_type_identifier, - STATE(3525), 1, - sym_field_declaration_list, - STATE(3824), 1, - sym_class_declaration, - STATE(3825), 1, - sym_class_declaration_item, - STATE(6975), 1, - sym_ms_declspec_modifier, - STATE(7917), 1, + STATE(7542), 1, sym_scope_resolution, - STATE(8224), 1, - sym_virtual_specifier, - STATE(9384), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(6976), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(6720), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym_class_declaration_repeat1, - [290010] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(6718), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, - anon_sym___attribute__, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, - anon_sym___declspec, - ACTIONS(10139), 1, - anon_sym_alignas, - ACTIONS(10477), 1, - sym_identifier, - STATE(2676), 1, - sym_class_name, - STATE(3010), 1, - sym_template_type, - STATE(3184), 1, - sym_qualified_type_identifier, - STATE(3525), 1, - sym_field_declaration_list, - STATE(3825), 1, - sym_class_declaration_item, - STATE(3826), 1, - sym_class_declaration, - STATE(6975), 1, - sym_ms_declspec_modifier, - STATE(7917), 1, - sym_scope_resolution, - STATE(8224), 1, - sym_virtual_specifier, - STATE(9384), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(6976), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(3655), 2, sym_decltype, - sym_dependent_type_identifier, - STATE(6720), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym_class_declaration_repeat1, - [290091] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(6718), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, - anon_sym___attribute__, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, - anon_sym___declspec, - ACTIONS(10139), 1, - anon_sym_alignas, - ACTIONS(10477), 1, - sym_identifier, - STATE(2676), 1, - sym_class_name, - STATE(3010), 1, sym_template_type, - STATE(3184), 1, - sym_qualified_type_identifier, - STATE(3525), 1, - sym_field_declaration_list, - STATE(3825), 1, - sym_class_declaration_item, - STATE(3829), 1, - sym_class_declaration, - STATE(6975), 1, - sym_ms_declspec_modifier, - STATE(7917), 1, - sym_scope_resolution, - STATE(8224), 1, - sym_virtual_specifier, - STATE(9384), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(6976), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6720), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym_class_declaration_repeat1, - [290172] = 18, + ACTIONS(9873), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3831), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [243334] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_AMP_AMP, ACTIONS(51), 1, anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, + ACTIONS(9153), 1, anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3708), 1, + ACTIONS(9155), 1, anon_sym_STAR, - ACTIONS(3710), 1, - anon_sym_AMP, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(5748), 1, - sym_identifier, - ACTIONS(8132), 1, - anon_sym_LBRACK, - STATE(7201), 1, - sym_scope_resolution, - STATE(7951), 1, - sym_declarator, - STATE(10059), 1, + STATE(3242), 1, + sym_type_declarator, + STATE(9637), 1, sym_ms_based_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - [290239] = 3, + STATE(5846), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(3783), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9151), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [243386] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6547), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6545), 27, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9121), 1, anon_sym_LPAREN2, + ACTIONS(9123), 1, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + STATE(2205), 1, + sym_type_declarator, + STATE(9248), 1, + sym_ms_based_modifier, + STATE(5846), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(2300), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9119), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(65), 12, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -569466,188 +529777,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [290276] = 25, + [243438] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6620), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, - anon_sym___attribute__, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, - anon_sym___declspec, - ACTIONS(10139), 1, - anon_sym_alignas, - ACTIONS(10479), 1, + ACTIONS(3358), 1, + sym_auto, + ACTIONS(3360), 1, + anon_sym_decltype, + ACTIONS(8449), 1, + sym_primitive_type, + ACTIONS(10031), 1, sym_identifier, - STATE(2618), 1, - sym_class_name, - STATE(2905), 1, - sym_template_type, - STATE(3047), 1, + ACTIONS(10033), 1, + anon_sym_enum, + ACTIONS(10035), 1, + anon_sym_class, + ACTIONS(10037), 1, + anon_sym_struct, + ACTIONS(10039), 1, + anon_sym_union, + ACTIONS(10041), 1, + anon_sym_typename, + STATE(2573), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3240), 1, sym_qualified_type_identifier, - STATE(3311), 1, - sym_field_declaration_list, - STATE(3681), 1, - sym_class_declaration, - STATE(3682), 1, - sym_class_declaration_item, - STATE(6997), 1, - sym_ms_declspec_modifier, - STATE(7873), 1, + STATE(3292), 1, + sym_decltype_auto, + STATE(4704), 1, + sym_type_specifier, + STATE(7556), 1, sym_scope_resolution, - STATE(8250), 1, - sym_virtual_specifier, - STATE(9154), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(6998), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(6701), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym_class_declaration_repeat1, - [290357] = 25, + STATE(2572), 2, + sym_decltype, + sym_template_type, + ACTIONS(3324), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3293), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [243512] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2313), 1, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6620), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, - anon_sym___attribute__, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, - anon_sym___declspec, - ACTIONS(10139), 1, - anon_sym_alignas, - ACTIONS(10479), 1, + ACTIONS(8345), 1, sym_identifier, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(8353), 1, + anon_sym_enum, + ACTIONS(8355), 1, + anon_sym_class, + ACTIONS(8357), 1, + anon_sym_struct, + ACTIONS(8359), 1, + anon_sym_union, + ACTIONS(8361), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, STATE(2618), 1, - sym_class_name, - STATE(2905), 1, - sym_template_type, - STATE(3047), 1, + sym_type_specifier, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, sym_qualified_type_identifier, - STATE(3311), 1, - sym_field_declaration_list, - STATE(3682), 1, - sym_class_declaration_item, - STATE(3683), 1, - sym_class_declaration, - STATE(6997), 1, - sym_ms_declspec_modifier, - STATE(7873), 1, + STATE(7523), 1, sym_scope_resolution, - STATE(8250), 1, - sym_virtual_specifier, - STATE(9154), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(6998), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(6701), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym_class_declaration_repeat1, - [290438] = 25, + STATE(2580), 2, + sym_decltype, + sym_template_type, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [243586] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, + ACTIONS(121), 1, + sym_auto, + ACTIONS(123), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6620), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, - anon_sym___attribute__, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, - anon_sym___declspec, - ACTIONS(10139), 1, - anon_sym_alignas, - ACTIONS(10479), 1, + ACTIONS(4318), 1, + sym_primitive_type, + ACTIONS(8458), 1, sym_identifier, - STATE(2618), 1, - sym_class_name, - STATE(2905), 1, - sym_template_type, - STATE(3047), 1, + ACTIONS(8460), 1, + anon_sym_enum, + ACTIONS(8462), 1, + anon_sym_class, + ACTIONS(8464), 1, + anon_sym_struct, + ACTIONS(8466), 1, + anon_sym_union, + ACTIONS(8468), 1, + anon_sym_typename, + STATE(3466), 1, sym_qualified_type_identifier, - STATE(3311), 1, - sym_field_declaration_list, - STATE(3682), 1, - sym_class_declaration_item, - STATE(3684), 1, - sym_class_declaration, - STATE(6997), 1, - sym_ms_declspec_modifier, - STATE(7873), 1, + STATE(3570), 1, + sym_decltype_auto, + STATE(3644), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7528), 1, sym_scope_resolution, - STATE(8250), 1, - sym_virtual_specifier, - STATE(9154), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(6998), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, + STATE(7795), 1, + sym_type_specifier, + STATE(9605), 1, sym_dependent_type_identifier, - STATE(6701), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym_class_declaration_repeat1, - [290519] = 3, + STATE(3324), 2, + sym_decltype, + sym_template_type, + ACTIONS(4316), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3531), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [243660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6239), 2, + ACTIONS(6248), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6237), 27, + ACTIONS(6246), 28, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -569655,6 +529950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, @@ -569675,22 +529971,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [290556] = 3, + [243698] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5509), 4, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9139), 1, anon_sym_LPAREN2, + ACTIONS(9141), 1, anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5507), 25, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___based, + STATE(3515), 1, + sym_type_declarator, + STATE(9294), 1, + sym_ms_based_modifier, + STATE(5846), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(3942), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9137), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(65), 12, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -569702,30 +530013,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_COLON, + [243750] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(9947), 1, sym_identifier, + ACTIONS(9951), 1, + sym_primitive_type, + ACTIONS(9953), 1, + anon_sym_enum, + ACTIONS(9955), 1, + anon_sym_class, + ACTIONS(9957), 1, + anon_sym_struct, + ACTIONS(9959), 1, + anon_sym_union, + ACTIONS(9961), 1, sym_auto, + ACTIONS(9963), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [290593] = 3, + ACTIONS(9965), 1, + anon_sym_typename, + STATE(2756), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3494), 1, + sym_type_specifier, + STATE(3580), 1, + sym_decltype_auto, + STATE(3598), 1, + sym_qualified_type_identifier, + STATE(7552), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(3473), 2, + sym_decltype, + sym_template_type, + ACTIONS(9949), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3585), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [243824] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4827), 2, - anon_sym_AMP, + ACTIONS(3694), 1, anon_sym_const, - ACTIONS(4835), 27, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(5457), 1, + anon_sym_STAR, + ACTIONS(5459), 1, + anon_sym_AMP_AMP, + ACTIONS(5461), 1, + anon_sym_AMP, + ACTIONS(8765), 1, + anon_sym_LBRACK, + STATE(4330), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7682), 1, + sym_abstract_declarator, + STATE(6022), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(9177), 3, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_SEMI, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8763), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [243884] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3694), 1, + anon_sym_const, + ACTIONS(5455), 1, anon_sym_LPAREN2, + ACTIONS(5457), 1, anon_sym_STAR, + ACTIONS(5459), 1, anon_sym_AMP_AMP, + ACTIONS(5461), 1, + anon_sym_AMP, + ACTIONS(8765), 1, + anon_sym_LBRACK, + STATE(4330), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7675), 1, + sym_abstract_declarator, + STATE(6024), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(6535), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8763), 11, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -569736,232 +530158,445 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [243944] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9121), 1, + anon_sym_LPAREN2, + ACTIONS(9197), 1, + anon_sym_STAR, + STATE(7344), 1, + sym_type_declarator, + STATE(9517), 1, + sym_ms_based_modifier, + STATE(5846), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(2300), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9119), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(65), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [243996] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(9851), 1, + sym_identifier, + ACTIONS(9855), 1, + sym_primitive_type, + ACTIONS(9857), 1, + anon_sym_enum, + ACTIONS(9859), 1, + anon_sym_class, + ACTIONS(9861), 1, + anon_sym_struct, + ACTIONS(9863), 1, + anon_sym_union, + ACTIONS(9865), 1, + sym_auto, + ACTIONS(9867), 1, + anon_sym_decltype, + ACTIONS(9869), 1, + anon_sym_typename, + STATE(4191), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4771), 1, + sym_type_specifier, + STATE(4804), 1, + sym_decltype_auto, + STATE(4822), 1, + sym_qualified_type_identifier, + STATE(7545), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(4748), 2, + sym_decltype, + sym_template_type, + ACTIONS(9853), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4819), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [244070] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(3358), 1, + sym_auto, + ACTIONS(3360), 1, + anon_sym_decltype, + ACTIONS(8449), 1, + sym_primitive_type, + ACTIONS(10031), 1, + sym_identifier, + ACTIONS(10033), 1, + anon_sym_enum, + ACTIONS(10035), 1, + anon_sym_class, + ACTIONS(10037), 1, + anon_sym_struct, + ACTIONS(10039), 1, + anon_sym_union, + ACTIONS(10041), 1, + anon_sym_typename, + STATE(2573), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3240), 1, + sym_qualified_type_identifier, + STATE(3292), 1, + sym_decltype_auto, + STATE(4763), 1, + sym_type_specifier, + STATE(7556), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2572), 2, + sym_decltype, + sym_template_type, + ACTIONS(3324), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3293), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [244144] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2251), 1, + sym_auto, + ACTIONS(2253), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8351), 1, + sym_primitive_type, + ACTIONS(9839), 1, + sym_identifier, + ACTIONS(9841), 1, + anon_sym_enum, + ACTIONS(9843), 1, + anon_sym_class, + ACTIONS(9845), 1, + anon_sym_struct, + ACTIONS(9847), 1, + anon_sym_union, + ACTIONS(9849), 1, + anon_sym_typename, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2733), 1, + sym_decltype_auto, + STATE(2741), 1, + sym_qualified_type_identifier, + STATE(4395), 1, + sym_type_specifier, + STATE(7516), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2580), 2, + sym_decltype, + sym_template_type, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [244218] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8366), 1, + sym_identifier, + ACTIONS(8370), 1, + sym_primitive_type, + ACTIONS(8372), 1, + anon_sym_enum, + ACTIONS(8374), 1, + anon_sym_class, + ACTIONS(8376), 1, + anon_sym_struct, + ACTIONS(8378), 1, + anon_sym_union, + ACTIONS(8380), 1, sym_auto, + ACTIONS(8382), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [290630] = 25, + ACTIONS(8384), 1, + anon_sym_typename, + STATE(3466), 1, + sym_qualified_type_identifier, + STATE(4923), 1, + sym_type_specifier, + STATE(4990), 1, + sym_decltype_auto, + STATE(6304), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7572), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_dependent_type_identifier, + STATE(2572), 2, + sym_decltype, + sym_template_type, + ACTIONS(8368), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4991), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [244292] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(8311), 1, - anon_sym_LBRACE, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10481), 1, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10099), 1, sym_identifier, - STATE(4246), 1, - sym_class_name, - STATE(4364), 1, + STATE(3094), 1, sym_template_type, - STATE(4501), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(4689), 1, - sym_field_declaration_list, - STATE(4782), 1, + STATE(3687), 1, sym_class_declaration, - STATE(4786), 1, + STATE(3688), 1, sym_class_declaration_item, - STATE(7034), 1, + STATE(4297), 1, + sym_class_name, + STATE(4465), 1, + sym_field_declaration_list, + STATE(6564), 1, sym_ms_declspec_modifier, - STATE(7904), 1, + STATE(7571), 1, sym_scope_resolution, - STATE(8223), 1, + STATE(8160), 1, sym_virtual_specifier, - STATE(9383), 1, + STATE(9057), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7041), 2, + STATE(6569), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6718), 3, + STATE(6212), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [290711] = 25, + [244373] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(8311), 1, - anon_sym_LBRACE, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10481), 1, + ACTIONS(6894), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10101), 1, sym_identifier, - STATE(4246), 1, + STATE(2772), 1, sym_class_name, - STATE(4364), 1, + STATE(2919), 1, sym_template_type, - STATE(4501), 1, + STATE(3097), 1, sym_qualified_type_identifier, - STATE(4689), 1, + STATE(3102), 1, sym_field_declaration_list, - STATE(4786), 1, - sym_class_declaration_item, - STATE(4832), 1, + STATE(3297), 1, sym_class_declaration, - STATE(7034), 1, + STATE(3298), 1, + sym_class_declaration_item, + STATE(6451), 1, sym_ms_declspec_modifier, - STATE(7904), 1, + STATE(7556), 1, sym_scope_resolution, - STATE(8223), 1, + STATE(8036), 1, sym_virtual_specifier, - STATE(9383), 1, + STATE(8742), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7041), 2, + STATE(6452), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6718), 3, + STATE(6233), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [290792] = 25, + [244454] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(8311), 1, - anon_sym_LBRACE, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10481), 1, + ACTIONS(6894), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10101), 1, sym_identifier, - STATE(4246), 1, + STATE(2772), 1, sym_class_name, - STATE(4364), 1, + STATE(2919), 1, sym_template_type, - STATE(4501), 1, + STATE(3097), 1, sym_qualified_type_identifier, - STATE(4689), 1, + STATE(3102), 1, sym_field_declaration_list, - STATE(4786), 1, + STATE(3298), 1, sym_class_declaration_item, - STATE(4790), 1, + STATE(3299), 1, sym_class_declaration, - STATE(7034), 1, + STATE(6451), 1, sym_ms_declspec_modifier, - STATE(7904), 1, + STATE(7556), 1, sym_scope_resolution, - STATE(8223), 1, + STATE(8036), 1, sym_virtual_specifier, - STATE(9383), 1, + STATE(8742), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7041), 2, + STATE(6452), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6718), 3, + STATE(6233), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [290873] = 3, + [244535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5513), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5511), 25, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + ACTIONS(6296), 2, + anon_sym_AMP, anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [290910] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5458), 4, + ACTIONS(6294), 27, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5456), 25, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym___attribute__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -569972,257 +530607,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_COLON, - sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - [290947] = 7, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [244572] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7588), 1, - anon_sym_LT, - STATE(6753), 1, - sym_template_argument_list, - STATE(6762), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5959), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACE, - ACTIONS(5957), 22, - anon_sym___extension__, - anon_sym___attribute__, + ACTIONS(51), 1, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [290992] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(8311), 1, - anon_sym_LBRACE, - ACTIONS(10133), 1, - anon_sym___attribute__, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, - anon_sym___declspec, - ACTIONS(10139), 1, - anon_sym_alignas, - ACTIONS(10483), 1, + ACTIONS(6533), 1, sym_identifier, - STATE(4246), 1, - sym_class_name, - STATE(4364), 1, - sym_template_type, - STATE(4501), 1, - sym_qualified_type_identifier, - STATE(4689), 1, - sym_field_declaration_list, - STATE(4782), 1, - sym_class_declaration, - STATE(4786), 1, - sym_class_declaration_item, - STATE(7013), 1, - sym_ms_declspec_modifier, - STATE(7904), 1, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7849), 1, + anon_sym_STAR, + ACTIONS(7851), 1, + anon_sym_AMP_AMP, + ACTIONS(7853), 1, + anon_sym_AMP, + STATE(6740), 1, sym_scope_resolution, - STATE(8223), 1, - sym_virtual_specifier, - STATE(9383), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(7014), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(7512), 1, + sym_declarator, + STATE(9168), 1, + sym_ms_based_modifier, + STATE(9605), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - STATE(6709), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym_class_declaration_repeat1, - [291073] = 25, + STATE(7305), 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, + [244639] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(8311), 1, - anon_sym_LBRACE, - ACTIONS(10133), 1, - anon_sym___attribute__, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, - anon_sym___declspec, - ACTIONS(10139), 1, - anon_sym_alignas, - ACTIONS(10483), 1, + ACTIONS(5741), 1, sym_identifier, - STATE(4246), 1, - sym_class_name, - STATE(4364), 1, - sym_template_type, - STATE(4501), 1, - sym_qualified_type_identifier, - STATE(4689), 1, - sym_field_declaration_list, - STATE(4786), 1, - sym_class_declaration_item, - STATE(4832), 1, - sym_class_declaration, - STATE(7013), 1, - sym_ms_declspec_modifier, - STATE(7904), 1, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7839), 1, + anon_sym_STAR, + ACTIONS(7841), 1, + anon_sym_AMP_AMP, + ACTIONS(7843), 1, + anon_sym_AMP, + STATE(6747), 1, sym_scope_resolution, - STATE(8223), 1, - sym_virtual_specifier, - STATE(9383), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(7014), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(7595), 1, + sym_declarator, + STATE(9230), 1, + sym_ms_based_modifier, + STATE(9605), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - STATE(6709), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym_class_declaration_repeat1, - [291154] = 25, + STATE(7305), 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, + [244706] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(33), 1, + anon_sym_AMP_AMP, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3255), 1, + anon_sym_STAR, + ACTIONS(3257), 1, + anon_sym_AMP, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(8311), 1, - anon_sym_LBRACE, - ACTIONS(10133), 1, - anon_sym___attribute__, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, - anon_sym___declspec, - ACTIONS(10139), 1, - anon_sym_alignas, - ACTIONS(10483), 1, + ACTIONS(5741), 1, sym_identifier, - STATE(4246), 1, - sym_class_name, - STATE(4364), 1, - sym_template_type, - STATE(4501), 1, - sym_qualified_type_identifier, - STATE(4689), 1, - sym_field_declaration_list, - STATE(4786), 1, - sym_class_declaration_item, - STATE(4790), 1, - sym_class_declaration, - STATE(7013), 1, - sym_ms_declspec_modifier, - STATE(7904), 1, + ACTIONS(7758), 1, + anon_sym_LBRACK, + STATE(6786), 1, sym_scope_resolution, - STATE(8223), 1, - sym_virtual_specifier, - STATE(9383), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(7014), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(7597), 1, + sym_declarator, + STATE(9481), 1, + sym_ms_based_modifier, + STATE(9605), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - STATE(6709), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym_class_declaration_repeat1, - [291235] = 18, + STATE(7305), 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, + [244773] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2259), 1, + ACTIONS(2257), 1, anon_sym_operator, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3704), 1, + ACTIONS(3251), 1, anon_sym_LPAREN2, - ACTIONS(3706), 1, + ACTIONS(3253), 1, anon_sym_TILDE, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(5748), 1, - sym_identifier, - ACTIONS(8132), 1, + ACTIONS(7758), 1, anon_sym_LBRACK, - ACTIONS(8144), 1, + ACTIONS(7827), 1, + sym_identifier, + ACTIONS(7829), 1, anon_sym_STAR, - ACTIONS(8146), 1, + ACTIONS(7831), 1, anon_sym_AMP_AMP, - ACTIONS(8148), 1, + ACTIONS(7833), 1, anon_sym_AMP, - STATE(7180), 1, + STATE(6710), 1, sym_scope_resolution, - STATE(8000), 1, + STATE(7460), 1, sym_declarator, - STATE(9814), 1, + STATE(9538), 1, sym_ms_based_modifier, - STATE(9982), 3, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7634), 11, + STATE(7305), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -570234,517 +530810,488 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [291302] = 25, + [244840] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10096), 1, - anon_sym_LBRACE, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10485), 1, + ACTIONS(6894), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10101), 1, sym_identifier, - STATE(6239), 1, - sym_template_type, - STATE(6265), 1, + STATE(2772), 1, sym_class_name, - STATE(6285), 1, + STATE(2919), 1, + sym_template_type, + STATE(3097), 1, sym_qualified_type_identifier, - STATE(6371), 1, + STATE(3102), 1, sym_field_declaration_list, - STATE(6603), 1, - sym_class_declaration, - STATE(6609), 1, + STATE(3298), 1, sym_class_declaration_item, - STATE(7024), 1, + STATE(3300), 1, + sym_class_declaration, + STATE(6451), 1, sym_ms_declspec_modifier, - STATE(7920), 1, + STATE(7556), 1, sym_scope_resolution, - STATE(8271), 1, + STATE(8036), 1, sym_virtual_specifier, - STATE(9243), 1, + STATE(8742), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7026), 2, + STATE(6452), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6711), 3, + STATE(6233), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [291383] = 25, + [244921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10096), 1, + ACTIONS(6300), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6298), 27, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACE, - ACTIONS(10133), 1, - anon_sym___attribute__, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, - anon_sym___declspec, - ACTIONS(10139), 1, - anon_sym_alignas, - ACTIONS(10485), 1, - sym_identifier, - STATE(6239), 1, - sym_template_type, - STATE(6265), 1, - sym_class_name, - STATE(6285), 1, - sym_qualified_type_identifier, - STATE(6371), 1, - sym_field_declaration_list, - STATE(6609), 1, - sym_class_declaration_item, - STATE(6654), 1, - sym_class_declaration, - STATE(7024), 1, - sym_ms_declspec_modifier, - STATE(7920), 1, - sym_scope_resolution, - STATE(8271), 1, - sym_virtual_specifier, - STATE(9243), 1, - sym_base_class_clause, - ACTIONS(6086), 2, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(7026), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6711), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym_class_declaration_repeat1, - [291464] = 25, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [244958] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(4784), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10096), 1, + ACTIONS(7517), 1, + anon_sym_LT, + STATE(1833), 1, + sym_template_argument_list, + STATE(6279), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6088), 3, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACE, - ACTIONS(10133), 1, + ACTIONS(6090), 22, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, - anon_sym___declspec, - ACTIONS(10139), 1, - anon_sym_alignas, - ACTIONS(10485), 1, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, sym_identifier, - STATE(6239), 1, - sym_template_type, - STATE(6265), 1, - sym_class_name, - STATE(6285), 1, - sym_qualified_type_identifier, - STATE(6371), 1, - sym_field_declaration_list, - STATE(6609), 1, - sym_class_declaration_item, - STATE(6661), 1, - sym_class_declaration, - STATE(7024), 1, - sym_ms_declspec_modifier, - STATE(7920), 1, - sym_scope_resolution, - STATE(8271), 1, - sym_virtual_specifier, - STATE(9243), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(7026), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6711), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym_class_declaration_repeat1, - [291545] = 25, + sym_auto, + anon_sym_decltype, + [245003] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(7971), 1, - anon_sym_LBRACE, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10487), 1, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10099), 1, sym_identifier, - STATE(3896), 1, - sym_class_name, - STATE(4514), 1, + STATE(3094), 1, sym_template_type, - STATE(4585), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(4775), 1, - sym_field_declaration_list, - STATE(5027), 1, + STATE(3453), 1, + sym_class_name, + STATE(3687), 1, sym_class_declaration, - STATE(5033), 1, + STATE(3688), 1, sym_class_declaration_item, - STATE(7035), 1, + STATE(4465), 1, + sym_field_declaration_list, + STATE(6564), 1, sym_ms_declspec_modifier, - STATE(7908), 1, + STATE(7571), 1, sym_scope_resolution, - STATE(8292), 1, + STATE(8160), 1, sym_virtual_specifier, - STATE(9323), 1, + STATE(9057), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7036), 2, + STATE(6569), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6716), 3, + STATE(6212), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [291626] = 25, + [245084] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(7971), 1, - anon_sym_LBRACE, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10487), 1, + ACTIONS(6367), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10103), 1, sym_identifier, - STATE(3896), 1, + STATE(2410), 1, sym_class_name, - STATE(4514), 1, + STATE(2582), 1, sym_template_type, - STATE(4585), 1, - sym_qualified_type_identifier, - STATE(4775), 1, + STATE(2598), 1, sym_field_declaration_list, - STATE(5033), 1, - sym_class_declaration_item, - STATE(5035), 1, + STATE(2696), 1, + sym_qualified_type_identifier, + STATE(2725), 1, sym_class_declaration, - STATE(7035), 1, + STATE(2726), 1, + sym_class_declaration_item, + STATE(6554), 1, sym_ms_declspec_modifier, - STATE(7908), 1, + STATE(7524), 1, sym_scope_resolution, - STATE(8292), 1, + STATE(8113), 1, sym_virtual_specifier, - STATE(9323), 1, + STATE(8974), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7036), 2, + STATE(6559), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6716), 3, + STATE(6235), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [291707] = 25, + [245165] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(7971), 1, - anon_sym_LBRACE, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10487), 1, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10099), 1, sym_identifier, - STATE(3896), 1, - sym_class_name, - STATE(4514), 1, + STATE(3094), 1, sym_template_type, - STATE(4585), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(4775), 1, - sym_field_declaration_list, - STATE(5033), 1, - sym_class_declaration_item, - STATE(5037), 1, + STATE(3600), 1, sym_class_declaration, - STATE(7035), 1, + STATE(3688), 1, + sym_class_declaration_item, + STATE(4297), 1, + sym_class_name, + STATE(4465), 1, + sym_field_declaration_list, + STATE(6564), 1, sym_ms_declspec_modifier, - STATE(7908), 1, + STATE(7571), 1, sym_scope_resolution, - STATE(8292), 1, + STATE(8160), 1, sym_virtual_specifier, - STATE(9323), 1, + STATE(9057), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7036), 2, + STATE(6569), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6716), 3, + STATE(6212), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [291788] = 25, + [245246] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(8457), 1, - anon_sym_LBRACE, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10489), 1, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10099), 1, sym_identifier, - STATE(4375), 1, - sym_class_name, - STATE(4742), 1, + STATE(3094), 1, sym_template_type, - STATE(4822), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(5069), 1, - sym_field_declaration_list, - STATE(5296), 1, + STATE(3557), 1, sym_class_declaration, - STATE(5298), 1, + STATE(3688), 1, sym_class_declaration_item, - STATE(7046), 1, + STATE(4297), 1, + sym_class_name, + STATE(4465), 1, + sym_field_declaration_list, + STATE(6564), 1, sym_ms_declspec_modifier, - STATE(7922), 1, + STATE(7571), 1, sym_scope_resolution, - STATE(8308), 1, + STATE(8160), 1, sym_virtual_specifier, - STATE(9440), 1, + STATE(9057), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7047), 2, + STATE(6569), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6693), 3, + STATE(6212), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [291869] = 25, + [245327] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute__, + ACTIONS(9692), 1, + anon_sym_LBRACE, + ACTIONS(10105), 1, + anon_sym_COLON, + STATE(5030), 1, + sym_attribute_specifier, + STATE(6268), 1, + sym_enum_base_clause, + STATE(6339), 1, + sym_enumerator_list, + ACTIONS(6522), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(6520), 21, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [245376] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(8457), 1, - anon_sym_LBRACE, - ACTIONS(10133), 1, - anon_sym___attribute__, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, - anon_sym___declspec, - ACTIONS(10139), 1, - anon_sym_alignas, - ACTIONS(10489), 1, + ACTIONS(6533), 1, sym_identifier, - STATE(4375), 1, - sym_class_name, - STATE(4742), 1, - sym_template_type, - STATE(4822), 1, - sym_qualified_type_identifier, - STATE(5069), 1, - sym_field_declaration_list, - STATE(5298), 1, - sym_class_declaration_item, - STATE(5299), 1, - sym_class_declaration, - STATE(7046), 1, - sym_ms_declspec_modifier, - STATE(7922), 1, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7849), 1, + anon_sym_STAR, + ACTIONS(7851), 1, + anon_sym_AMP_AMP, + ACTIONS(7853), 1, + anon_sym_AMP, + STATE(6740), 1, sym_scope_resolution, - STATE(8308), 1, - sym_virtual_specifier, - STATE(9440), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(7047), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(7350), 1, + sym_declarator, + STATE(9168), 1, + sym_ms_based_modifier, + STATE(9605), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - STATE(6693), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym_class_declaration_repeat1, - [291950] = 25, + STATE(7305), 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, + [245443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(8457), 1, + ACTIONS(6244), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6242), 27, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACE, - ACTIONS(10133), 1, - anon_sym___attribute__, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, - anon_sym___declspec, - ACTIONS(10139), 1, - anon_sym_alignas, - ACTIONS(10489), 1, - sym_identifier, - STATE(4375), 1, - sym_class_name, - STATE(4742), 1, - sym_template_type, - STATE(4822), 1, - sym_qualified_type_identifier, - STATE(5069), 1, - sym_field_declaration_list, - STATE(5298), 1, - sym_class_declaration_item, - STATE(5301), 1, - sym_class_declaration, - STATE(7046), 1, - sym_ms_declspec_modifier, - STATE(7922), 1, - sym_scope_resolution, - STATE(8308), 1, - sym_virtual_specifier, - STATE(9440), 1, - sym_base_class_clause, - ACTIONS(6086), 2, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(7047), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6693), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym_class_declaration_repeat1, - [292031] = 3, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [245480] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6555), 2, + ACTIONS(5983), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6553), 27, + ACTIONS(5981), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -570772,349 +531319,541 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [292068] = 25, + [245517] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6082), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10491), 1, + ACTIONS(6810), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10107), 1, sym_identifier, - STATE(2114), 1, + STATE(2672), 1, sym_class_name, - STATE(2457), 1, + STATE(2842), 1, sym_template_type, - STATE(2460), 1, + STATE(2945), 1, sym_qualified_type_identifier, - STATE(2686), 1, + STATE(3163), 1, sym_field_declaration_list, - STATE(2962), 1, + STATE(3458), 1, sym_class_declaration, - STATE(2963), 1, + STATE(3465), 1, sym_class_declaration_item, - STATE(7059), 1, + STATE(6473), 1, sym_ms_declspec_modifier, - STATE(7937), 1, + STATE(7525), 1, sym_scope_resolution, - STATE(8323), 1, + STATE(7861), 1, sym_virtual_specifier, - STATE(9503), 1, + STATE(8930), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7060), 2, + STATE(6474), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6694), 3, + STATE(6242), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [292149] = 25, + [245598] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(33), 1, + anon_sym_AMP_AMP, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3255), 1, + anon_sym_STAR, + ACTIONS(3257), 1, + anon_sym_AMP, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6082), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5741), 1, + sym_identifier, + ACTIONS(7758), 1, + anon_sym_LBRACK, + STATE(6786), 1, + sym_scope_resolution, + STATE(7600), 1, + sym_declarator, + STATE(9481), 1, + sym_ms_based_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + [245665] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7827), 1, + sym_identifier, + ACTIONS(7829), 1, + anon_sym_STAR, + ACTIONS(7831), 1, + anon_sym_AMP_AMP, + ACTIONS(7833), 1, + anon_sym_AMP, + STATE(6710), 1, + sym_scope_resolution, + STATE(7446), 1, + sym_declarator, + STATE(9538), 1, + sym_ms_based_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + [245732] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(9688), 1, + anon_sym_const, + ACTIONS(9993), 1, + anon_sym_STAR, + ACTIONS(9995), 1, + anon_sym_AMP_AMP, + ACTIONS(9997), 1, + anon_sym_AMP, + STATE(4453), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7737), 1, + sym_abstract_declarator, + ACTIONS(9173), 2, + anon_sym_RPAREN, + sym_semgrep_metavar, + STATE(6335), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9686), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [245791] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10491), 1, + ACTIONS(6810), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10107), 1, sym_identifier, - STATE(2114), 1, + STATE(2672), 1, sym_class_name, - STATE(2457), 1, + STATE(2842), 1, sym_template_type, - STATE(2460), 1, + STATE(2945), 1, sym_qualified_type_identifier, - STATE(2686), 1, + STATE(3163), 1, sym_field_declaration_list, - STATE(2881), 1, - sym_class_declaration, - STATE(2963), 1, + STATE(3465), 1, sym_class_declaration_item, - STATE(7059), 1, + STATE(3471), 1, + sym_class_declaration, + STATE(6473), 1, sym_ms_declspec_modifier, - STATE(7937), 1, + STATE(7525), 1, sym_scope_resolution, - STATE(8323), 1, + STATE(7861), 1, sym_virtual_specifier, - STATE(9503), 1, + STATE(8930), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7060), 2, + STATE(6474), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6694), 3, + STATE(6242), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [292230] = 25, + [245872] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6082), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10491), 1, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10099), 1, sym_identifier, - STATE(2114), 1, - sym_class_name, - STATE(2457), 1, + STATE(3094), 1, sym_template_type, - STATE(2460), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(2686), 1, - sym_field_declaration_list, - STATE(2883), 1, + STATE(3687), 1, sym_class_declaration, - STATE(2963), 1, + STATE(3688), 1, sym_class_declaration_item, - STATE(7059), 1, + STATE(4370), 1, + sym_class_name, + STATE(4465), 1, + sym_field_declaration_list, + STATE(6564), 1, sym_ms_declspec_modifier, - STATE(7937), 1, + STATE(7571), 1, sym_scope_resolution, - STATE(8323), 1, + STATE(8160), 1, sym_virtual_specifier, - STATE(9503), 1, + STATE(9057), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7060), 2, + STATE(6569), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6694), 3, + STATE(6212), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [292311] = 25, + [245953] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6151), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10493), 1, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10099), 1, sym_identifier, - STATE(2223), 1, - sym_class_name, - STATE(2598), 1, + STATE(3094), 1, sym_template_type, - STATE(2719), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(2926), 1, - sym_field_declaration_list, - STATE(3143), 1, + STATE(3600), 1, sym_class_declaration, - STATE(3156), 1, + STATE(3688), 1, sym_class_declaration_item, - STATE(7003), 1, + STATE(4370), 1, + sym_class_name, + STATE(4465), 1, + sym_field_declaration_list, + STATE(6564), 1, sym_ms_declspec_modifier, - STATE(7936), 1, + STATE(7571), 1, sym_scope_resolution, - STATE(8336), 1, + STATE(8160), 1, sym_virtual_specifier, - STATE(9564), 1, + STATE(9057), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7045), 2, + STATE(6569), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6696), 3, + STATE(6212), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [292392] = 25, + [246034] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6151), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10493), 1, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10099), 1, sym_identifier, - STATE(2223), 1, - sym_class_name, - STATE(2598), 1, + STATE(3094), 1, sym_template_type, - STATE(2719), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(2926), 1, - sym_field_declaration_list, - STATE(3156), 1, - sym_class_declaration_item, - STATE(3179), 1, + STATE(3557), 1, sym_class_declaration, - STATE(7003), 1, + STATE(3688), 1, + sym_class_declaration_item, + STATE(4370), 1, + sym_class_name, + STATE(4465), 1, + sym_field_declaration_list, + STATE(6564), 1, sym_ms_declspec_modifier, - STATE(7936), 1, + STATE(7571), 1, sym_scope_resolution, - STATE(8336), 1, + STATE(8160), 1, sym_virtual_specifier, - STATE(9564), 1, + STATE(9057), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7045), 2, + STATE(6569), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6696), 3, + STATE(6212), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [292473] = 25, + [246115] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6151), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10493), 1, + ACTIONS(6810), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10107), 1, sym_identifier, - STATE(2223), 1, + STATE(2672), 1, sym_class_name, - STATE(2598), 1, + STATE(2842), 1, sym_template_type, - STATE(2719), 1, + STATE(2945), 1, sym_qualified_type_identifier, - STATE(2926), 1, + STATE(3163), 1, sym_field_declaration_list, - STATE(3156), 1, + STATE(3465), 1, sym_class_declaration_item, - STATE(3190), 1, + STATE(3477), 1, sym_class_declaration, - STATE(7003), 1, + STATE(6473), 1, sym_ms_declspec_modifier, - STATE(7936), 1, + STATE(7525), 1, sym_scope_resolution, - STATE(8336), 1, + STATE(7861), 1, sym_virtual_specifier, - STATE(9564), 1, + STATE(8930), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7045), 2, + STATE(6474), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6696), 3, + STATE(6242), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [292554] = 3, + [246196] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5741), 1, + sym_identifier, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7839), 1, + anon_sym_STAR, + ACTIONS(7841), 1, + anon_sym_AMP_AMP, + ACTIONS(7843), 1, + anon_sym_AMP, + STATE(6747), 1, + sym_scope_resolution, + STATE(7645), 1, + sym_declarator, + STATE(9230), 1, + sym_ms_based_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + [246263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6559), 2, + ACTIONS(6252), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6557), 27, + ACTIONS(6250), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -571142,156 +531881,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [292591] = 25, + [246300] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10495), 1, - sym_identifier, - STATE(3800), 1, - sym_class_name, - STATE(4401), 1, - sym_template_type, - STATE(4404), 1, - sym_qualified_type_identifier, - STATE(4797), 1, - sym_field_declaration_list, - STATE(4958), 1, - sym_class_declaration_item, - STATE(4981), 1, - sym_class_declaration, - STATE(6970), 1, - sym_ms_declspec_modifier, - STATE(7879), 1, - sym_scope_resolution, - STATE(8316), 1, - sym_virtual_specifier, - STATE(9487), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(7020), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6712), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym_class_declaration_repeat1, - [292672] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(7783), 1, + ACTIONS(6367), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(10133), 1, - anon_sym___attribute__, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, - anon_sym___declspec, - ACTIONS(10139), 1, - anon_sym_alignas, - ACTIONS(10495), 1, + ACTIONS(10103), 1, sym_identifier, - STATE(4401), 1, + STATE(2410), 1, + sym_class_name, + STATE(2582), 1, sym_template_type, - STATE(4797), 1, + STATE(2598), 1, sym_field_declaration_list, - STATE(4838), 1, - sym_class_name, - STATE(4942), 1, - sym_class_declaration, - STATE(4958), 1, - sym_class_declaration_item, - STATE(5389), 1, + STATE(2696), 1, sym_qualified_type_identifier, - STATE(6938), 1, + STATE(2726), 1, + sym_class_declaration_item, + STATE(2732), 1, + sym_class_declaration, + STATE(6554), 1, sym_ms_declspec_modifier, - STATE(7903), 1, + STATE(7524), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(8113), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(8974), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(6939), 2, + STATE(6559), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6706), 3, + STATE(6235), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [292753] = 18, + [246381] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2259), 1, + ACTIONS(2257), 1, anon_sym_operator, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3704), 1, + ACTIONS(3251), 1, anon_sym_LPAREN2, - ACTIONS(3706), 1, + ACTIONS(3253), 1, anon_sym_TILDE, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8132), 1, + ACTIONS(7758), 1, anon_sym_LBRACK, - ACTIONS(8150), 1, + ACTIONS(7827), 1, sym_identifier, - ACTIONS(8152), 1, + ACTIONS(7829), 1, anon_sym_STAR, - ACTIONS(8154), 1, + ACTIONS(7831), 1, anon_sym_AMP_AMP, - ACTIONS(8156), 1, + ACTIONS(7833), 1, anon_sym_AMP, - STATE(7202), 1, + STATE(6710), 1, sym_scope_resolution, - STATE(7805), 1, + STATE(7447), 1, sym_declarator, - STATE(10671), 1, + STATE(9538), 1, sym_ms_based_modifier, - STATE(9982), 3, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7634), 11, + STATE(7305), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -571303,26 +531986,57 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [292820] = 3, + [246448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10499), 6, + ACTIONS(6256), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6254), 27, + 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_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(10497), 23, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [246485] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6318), 2, anon_sym_AMP, - anon_sym___extension__, - 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(6316), 27, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -571333,77 +532047,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, + sym_auto, anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [292857] = 25, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [246522] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(7783), 1, + ACTIONS(6322), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6320), 27, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, - anon_sym___attribute__, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, - anon_sym___declspec, - ACTIONS(10139), 1, - anon_sym_alignas, - ACTIONS(10495), 1, - sym_identifier, - STATE(4401), 1, - sym_template_type, - STATE(4797), 1, - sym_field_declaration_list, - STATE(4838), 1, - sym_class_name, - STATE(4958), 1, - sym_class_declaration_item, - STATE(4980), 1, - sym_class_declaration, - STATE(5389), 1, - sym_qualified_type_identifier, - STATE(6938), 1, - sym_ms_declspec_modifier, - STATE(7903), 1, - sym_scope_resolution, - STATE(8316), 1, - sym_virtual_specifier, - STATE(9487), 1, - sym_base_class_clause, - ACTIONS(6086), 2, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(6939), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6706), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym_class_declaration_repeat1, - [292938] = 5, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [246559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5729), 1, - anon_sym_COLON_COLON, - STATE(6587), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(10501), 12, - anon_sym___extension__, + ACTIONS(6260), 2, + anon_sym_AMP, anon_sym_const, + ACTIONS(6258), 27, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -571414,301 +532115,256 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(5727), 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, - [292979] = 25, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [246596] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(6116), 1, + ACTIONS(6326), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6324), 27, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, - anon_sym___attribute__, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, - anon_sym___declspec, - ACTIONS(10139), 1, - anon_sym_alignas, - ACTIONS(10504), 1, - sym_identifier, - STATE(2182), 1, - sym_class_name, - STATE(2486), 1, - sym_field_declaration_list, - STATE(2509), 1, - sym_template_type, - STATE(2589), 1, - sym_qualified_type_identifier, - STATE(2643), 1, - sym_class_declaration, - STATE(2644), 1, - sym_class_declaration_item, - STATE(6961), 1, - sym_ms_declspec_modifier, - STATE(7886), 1, - sym_scope_resolution, - STATE(8435), 1, - sym_virtual_specifier, - STATE(9380), 1, - sym_base_class_clause, - ACTIONS(6086), 2, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(6968), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6698), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym_class_declaration_repeat1, - [293060] = 25, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [246633] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10495), 1, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10099), 1, sym_identifier, - STATE(4401), 1, + STATE(3094), 1, sym_template_type, - STATE(4797), 1, - sym_field_declaration_list, - STATE(4838), 1, - sym_class_name, - STATE(4958), 1, - sym_class_declaration_item, - STATE(4981), 1, - sym_class_declaration, - STATE(5389), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(6938), 1, + STATE(3687), 1, + sym_class_declaration, + STATE(3688), 1, + sym_class_declaration_item, + STATE(4348), 1, + sym_class_name, + STATE(4465), 1, + sym_field_declaration_list, + STATE(6564), 1, sym_ms_declspec_modifier, - STATE(7903), 1, + STATE(7571), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(8160), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(9057), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(6939), 2, + STATE(6569), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6706), 3, + STATE(6212), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [293141] = 25, + [246714] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6116), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10504), 1, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10099), 1, sym_identifier, - STATE(2182), 1, - sym_class_name, - STATE(2486), 1, - sym_field_declaration_list, - STATE(2509), 1, + STATE(3094), 1, sym_template_type, - STATE(2589), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(2644), 1, - sym_class_declaration_item, - STATE(2646), 1, + STATE(3600), 1, sym_class_declaration, - STATE(6961), 1, + STATE(3688), 1, + sym_class_declaration_item, + STATE(4348), 1, + sym_class_name, + STATE(4465), 1, + sym_field_declaration_list, + STATE(6564), 1, sym_ms_declspec_modifier, - STATE(7886), 1, + STATE(7571), 1, sym_scope_resolution, - STATE(8435), 1, + STATE(8160), 1, sym_virtual_specifier, - STATE(9380), 1, + STATE(9057), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(6968), 2, + STATE(6569), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6698), 3, + STATE(6212), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [293222] = 25, + [246795] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6116), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10504), 1, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10099), 1, sym_identifier, - STATE(2182), 1, - sym_class_name, - STATE(2486), 1, - sym_field_declaration_list, - STATE(2509), 1, + STATE(3094), 1, sym_template_type, - STATE(2589), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(2644), 1, - sym_class_declaration_item, - STATE(2647), 1, + STATE(3557), 1, sym_class_declaration, - STATE(6961), 1, + STATE(3688), 1, + sym_class_declaration_item, + STATE(4348), 1, + sym_class_name, + STATE(4465), 1, + sym_field_declaration_list, + STATE(6564), 1, sym_ms_declspec_modifier, - STATE(7886), 1, + STATE(7571), 1, sym_scope_resolution, - STATE(8435), 1, + STATE(8160), 1, sym_virtual_specifier, - STATE(9380), 1, + STATE(9057), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(6968), 2, + STATE(6569), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6698), 3, + STATE(6212), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [293303] = 18, + [246876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, + ACTIONS(4763), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4771), 27, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8124), 1, - sym_identifier, - ACTIONS(8126), 1, anon_sym_STAR, - ACTIONS(8128), 1, anon_sym_AMP_AMP, - ACTIONS(8130), 1, - anon_sym_AMP, - ACTIONS(8132), 1, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(7205), 1, - sym_scope_resolution, - STATE(7501), 1, - sym_declarator, - STATE(9949), 1, - sym_ms_based_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - [293370] = 3, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [246913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 2, + ACTIONS(6330), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6561), 27, + ACTIONS(6328), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -571736,93 +532392,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [293407] = 18, + [246950] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_AMP_AMP, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3708), 1, - anon_sym_STAR, - ACTIONS(3710), 1, - anon_sym_AMP, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(5748), 1, + ACTIONS(5747), 1, + anon_sym___attribute__, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10109), 1, sym_identifier, - ACTIONS(8132), 1, - anon_sym_LBRACK, - STATE(7201), 1, + STATE(3094), 1, + sym_template_type, + STATE(3322), 1, + sym_qualified_type_identifier, + STATE(3687), 1, + sym_class_declaration, + STATE(3688), 1, + sym_class_declaration_item, + STATE(4009), 1, + sym_class_name, + STATE(4469), 1, + sym_field_declaration_list, + STATE(6535), 1, + sym_ms_declspec_modifier, + STATE(7521), 1, sym_scope_resolution, - STATE(7960), 1, - sym_declarator, - STATE(10059), 1, - sym_ms_based_modifier, - STATE(9982), 3, + STATE(8157), 1, + sym_virtual_specifier, + STATE(9050), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6536), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - STATE(7634), 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, - [293474] = 18, + STATE(6246), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [247031] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2259), 1, + ACTIONS(2257), 1, anon_sym_operator, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3704), 1, + ACTIONS(3251), 1, anon_sym_LPAREN2, - ACTIONS(3706), 1, + ACTIONS(3253), 1, anon_sym_TILDE, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8132), 1, + ACTIONS(7758), 1, anon_sym_LBRACK, - ACTIONS(8150), 1, + ACTIONS(7827), 1, sym_identifier, - ACTIONS(8152), 1, + ACTIONS(7829), 1, anon_sym_STAR, - ACTIONS(8154), 1, + ACTIONS(7831), 1, anon_sym_AMP_AMP, - ACTIONS(8156), 1, + ACTIONS(7833), 1, anon_sym_AMP, - STATE(7202), 1, + STATE(6710), 1, sym_scope_resolution, - STATE(7770), 1, + STATE(7424), 1, sym_declarator, - STATE(10671), 1, + STATE(9538), 1, sym_ms_based_modifier, - STATE(9982), 3, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7634), 11, + STATE(7305), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -571834,394 +532497,497 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [293541] = 4, + [247098] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(5467), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACE, - ACTIONS(5460), 25, - anon_sym___extension__, + ACTIONS(5747), 1, anon_sym___attribute__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, anon_sym_COLON, + ACTIONS(10099), 1, sym_identifier, - sym_auto, - anon_sym_decltype, + STATE(3094), 1, + sym_template_type, + STATE(3098), 1, + sym_qualified_type_identifier, + STATE(3687), 1, + sym_class_declaration, + STATE(3688), 1, + sym_class_declaration_item, + STATE(4365), 1, + sym_class_name, + STATE(4465), 1, + sym_field_declaration_list, + STATE(6564), 1, + sym_ms_declspec_modifier, + STATE(7571), 1, + sym_scope_resolution, + STATE(8160), 1, + sym_virtual_specifier, + STATE(9057), 1, + sym_base_class_clause, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - [293580] = 25, + STATE(6569), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6212), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [247179] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10269), 1, + ACTIONS(7550), 1, anon_sym_LBRACE, - ACTIONS(10506), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10099), 1, sym_identifier, - STATE(6327), 1, - sym_class_name, - STATE(6686), 1, + STATE(3094), 1, sym_template_type, - STATE(6723), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(6790), 1, - sym_field_declaration_list, - STATE(6841), 1, + STATE(3600), 1, sym_class_declaration, - STATE(6842), 1, + STATE(3688), 1, sym_class_declaration_item, - STATE(6990), 1, + STATE(4365), 1, + sym_class_name, + STATE(4465), 1, + sym_field_declaration_list, + STATE(6564), 1, sym_ms_declspec_modifier, - STATE(7896), 1, + STATE(7571), 1, sym_scope_resolution, - STATE(8433), 1, + STATE(8160), 1, sym_virtual_specifier, - STATE(9360), 1, + STATE(9057), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(6991), 2, + STATE(6569), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6708), 3, + STATE(6212), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [293661] = 25, + [247260] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6334), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6332), 27, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [247297] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10269), 1, + ACTIONS(7550), 1, anon_sym_LBRACE, - ACTIONS(10506), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10099), 1, sym_identifier, - STATE(6327), 1, - sym_class_name, - STATE(6686), 1, + STATE(3094), 1, sym_template_type, - STATE(6723), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(6790), 1, - sym_field_declaration_list, - STATE(6842), 1, - sym_class_declaration_item, - STATE(6847), 1, + STATE(3557), 1, sym_class_declaration, - STATE(6990), 1, + STATE(3688), 1, + sym_class_declaration_item, + STATE(4365), 1, + sym_class_name, + STATE(4465), 1, + sym_field_declaration_list, + STATE(6564), 1, sym_ms_declspec_modifier, - STATE(7896), 1, + STATE(7571), 1, sym_scope_resolution, - STATE(8433), 1, + STATE(8160), 1, sym_virtual_specifier, - STATE(9360), 1, + STATE(9057), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(6991), 2, + STATE(6569), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6708), 3, + STATE(6212), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [293742] = 25, + [247378] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10269), 1, + ACTIONS(7550), 1, anon_sym_LBRACE, - ACTIONS(10506), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10099), 1, sym_identifier, - STATE(6327), 1, - sym_class_name, - STATE(6686), 1, + STATE(3094), 1, sym_template_type, - STATE(6723), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(6790), 1, - sym_field_declaration_list, - STATE(6842), 1, - sym_class_declaration_item, - STATE(6850), 1, + STATE(3687), 1, sym_class_declaration, - STATE(6990), 1, + STATE(3688), 1, + sym_class_declaration_item, + STATE(4361), 1, + sym_class_name, + STATE(4465), 1, + sym_field_declaration_list, + STATE(6564), 1, sym_ms_declspec_modifier, - STATE(7896), 1, + STATE(7571), 1, sym_scope_resolution, - STATE(8433), 1, + STATE(8160), 1, sym_virtual_specifier, - STATE(9360), 1, + STATE(9057), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(6991), 2, + STATE(6569), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6708), 3, + STATE(6212), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [293823] = 25, + [247459] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10495), 1, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10099), 1, sym_identifier, - STATE(4401), 1, + STATE(3094), 1, sym_template_type, - STATE(4404), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(4591), 1, - sym_class_name, - STATE(4797), 1, - sym_field_declaration_list, - STATE(4942), 1, + STATE(3600), 1, sym_class_declaration, - STATE(4958), 1, + STATE(3688), 1, sym_class_declaration_item, - STATE(6970), 1, + STATE(4361), 1, + sym_class_name, + STATE(4465), 1, + sym_field_declaration_list, + STATE(6564), 1, sym_ms_declspec_modifier, - STATE(7879), 1, + STATE(7571), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(8160), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(9057), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7020), 2, + STATE(6569), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6712), 3, + STATE(6212), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [293904] = 25, + [247540] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10495), 1, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10099), 1, sym_identifier, - STATE(4401), 1, + STATE(3094), 1, sym_template_type, - STATE(4404), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(4591), 1, + STATE(3557), 1, + sym_class_declaration, + STATE(3688), 1, + sym_class_declaration_item, + STATE(4361), 1, sym_class_name, - STATE(4797), 1, + STATE(4465), 1, sym_field_declaration_list, - STATE(4958), 1, - sym_class_declaration_item, - STATE(4980), 1, - sym_class_declaration, - STATE(6970), 1, + STATE(6564), 1, sym_ms_declspec_modifier, - STATE(7879), 1, + STATE(7571), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(8160), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(9057), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7020), 2, + STATE(6569), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6712), 3, + STATE(6212), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [293985] = 25, + [247621] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10495), 1, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10109), 1, sym_identifier, - STATE(4401), 1, + STATE(3094), 1, sym_template_type, - STATE(4404), 1, + STATE(3322), 1, sym_qualified_type_identifier, - STATE(4591), 1, + STATE(3600), 1, + sym_class_declaration, + STATE(3688), 1, + sym_class_declaration_item, + STATE(4009), 1, sym_class_name, - STATE(4797), 1, + STATE(4469), 1, sym_field_declaration_list, - STATE(4958), 1, - sym_class_declaration_item, - STATE(4981), 1, - sym_class_declaration, - STATE(6970), 1, + STATE(6535), 1, sym_ms_declspec_modifier, - STATE(7879), 1, + STATE(7521), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(8157), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(9050), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7020), 2, + STATE(6536), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6712), 3, + STATE(6246), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [294066] = 3, + [247702] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(6285), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(9763), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(10114), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6097), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(10111), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(9761), 19, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + sym_identifier, + [247747] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6664), 2, + ACTIONS(2658), 1, + anon_sym_LBRACE, + ACTIONS(7961), 1, + anon_sym_LPAREN2, + STATE(2198), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3852), 1, + sym_argument_list, + STATE(3856), 1, + sym_initializer_list, + ACTIONS(4763), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6662), 27, - anon_sym_COMMA, + ACTIONS(6092), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4771), 18, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym___extension__, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -572234,282 +533000,175 @@ 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, - [294103] = 25, + sym_semgrep_metavar, + [247796] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6450), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10508), 1, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10109), 1, sym_identifier, - STATE(2516), 1, - sym_class_name, - STATE(2765), 1, + STATE(3094), 1, sym_template_type, - STATE(2887), 1, + STATE(3322), 1, sym_qualified_type_identifier, - STATE(3101), 1, - sym_field_declaration_list, - STATE(3547), 1, + STATE(3557), 1, sym_class_declaration, - STATE(3548), 1, + STATE(3688), 1, sym_class_declaration_item, - STATE(6937), 1, + STATE(4009), 1, + sym_class_name, + STATE(4469), 1, + sym_field_declaration_list, + STATE(6535), 1, sym_ms_declspec_modifier, - STATE(7915), 1, + STATE(7521), 1, sym_scope_resolution, - STATE(8356), 1, + STATE(8157), 1, sym_virtual_specifier, - STATE(9156), 1, + STATE(9050), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(6950), 2, + STATE(6536), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6704), 3, + STATE(6246), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [294184] = 21, + [247877] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(7922), 1, - anon_sym_noexcept, - ACTIONS(7924), 1, - anon_sym_throw, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8603), 1, - anon_sym_DASH_GT, - ACTIONS(8605), 1, - anon_sym_requires, - ACTIONS(9902), 1, - anon_sym_LBRACK, - STATE(6809), 1, - sym_function_exception_specification, - STATE(7422), 1, - sym_requires_clause, - STATE(7479), 1, - sym_function_postfix, - STATE(7599), 1, - sym_function_attributes_end, - STATE(7730), 1, - sym_trailing_return_type, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8102), 2, - anon_sym_final, - anon_sym_override, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, - sym_noexcept, - sym_throw_specifier, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(9897), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, anon_sym_LPAREN2, - anon_sym_GT2, - [294257] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(7922), 1, - anon_sym_noexcept, - ACTIONS(7924), 1, - anon_sym_throw, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8603), 1, - anon_sym_DASH_GT, - ACTIONS(8605), 1, - anon_sym_requires, - ACTIONS(10106), 1, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(7758), 1, anon_sym_LBRACK, - STATE(6814), 1, - sym_function_exception_specification, - STATE(7422), 1, - sym_requires_clause, - STATE(7444), 1, - sym_function_postfix, - STATE(7603), 1, - sym_function_attributes_end, - STATE(7731), 1, - sym_trailing_return_type, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8102), 2, - anon_sym_final, - anon_sym_override, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, - sym_noexcept, - sym_throw_specifier, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10101), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [294330] = 21, + ACTIONS(7827), 1, + sym_identifier, + ACTIONS(7829), 1, + anon_sym_STAR, + ACTIONS(7831), 1, + anon_sym_AMP_AMP, + ACTIONS(7833), 1, + anon_sym_AMP, + STATE(6710), 1, + sym_scope_resolution, + STATE(7409), 1, + sym_declarator, + STATE(9538), 1, + sym_ms_based_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + [247944] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(7922), 1, - anon_sym_noexcept, - ACTIONS(7924), 1, - anon_sym_throw, - ACTIONS(8098), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8603), 1, - anon_sym_DASH_GT, - ACTIONS(9902), 1, - anon_sym_LBRACK, - ACTIONS(10367), 1, - anon_sym_requires, - STATE(6818), 1, - sym_function_exception_specification, - STATE(7422), 1, - sym_requires_clause, - STATE(7479), 1, - sym_function_postfix, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(9726), 1, + anon_sym_LBRACE, + ACTIONS(10117), 1, + sym_identifier, + STATE(5722), 1, + sym_template_type, + STATE(5723), 1, + sym_class_name, + STATE(5753), 1, + sym_qualified_type_identifier, + STATE(5926), 1, + sym_field_declaration_list, + STATE(6128), 1, + sym_class_declaration, + STATE(6137), 1, + sym_class_declaration_item, + STATE(6481), 1, + sym_ms_declspec_modifier, STATE(7539), 1, - sym_function_attributes_end, - STATE(7738), 1, - sym_trailing_return_type, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10052), 2, - anon_sym_final, - anon_sym_override, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, - sym_noexcept, - sym_throw_specifier, - STATE(7282), 2, + sym_scope_resolution, + STATE(7839), 1, sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(9897), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [294403] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(7922), 1, - anon_sym_noexcept, - ACTIONS(7924), 1, - anon_sym_throw, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8603), 1, - anon_sym_DASH_GT, - ACTIONS(10106), 1, - anon_sym_LBRACK, - ACTIONS(10510), 1, - anon_sym_requires, - STATE(6826), 1, - sym_function_exception_specification, - STATE(7422), 1, - sym_requires_clause, - STATE(7444), 1, - sym_function_postfix, - STATE(7602), 1, - sym_function_attributes_end, - STATE(7739), 1, - sym_trailing_return_type, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10141), 2, + STATE(8845), 1, + sym_base_class_clause, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, + STATE(6482), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7093), 2, - sym_noexcept, - sym_throw_specifier, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10101), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [294476] = 3, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6248), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [248025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6668), 2, + ACTIONS(6338), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6666), 27, + ACTIONS(6336), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -572534,137 +533193,271 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [294513] = 25, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [248062] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5747), 1, + anon_sym___attribute__, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10099), 1, + sym_identifier, + STATE(3094), 1, + sym_template_type, + STATE(3098), 1, + sym_qualified_type_identifier, + STATE(3687), 1, + sym_class_declaration, + STATE(3688), 1, + sym_class_declaration_item, + STATE(4269), 1, + sym_class_name, + STATE(4465), 1, + sym_field_declaration_list, + STATE(6564), 1, + sym_ms_declspec_modifier, + STATE(7571), 1, + sym_scope_resolution, + STATE(8160), 1, + sym_virtual_specifier, + STATE(9057), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6569), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6212), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [248143] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5747), 1, + anon_sym___attribute__, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10099), 1, + sym_identifier, + STATE(3094), 1, + sym_template_type, + STATE(3098), 1, + sym_qualified_type_identifier, + STATE(3600), 1, + sym_class_declaration, + STATE(3688), 1, + sym_class_declaration_item, + STATE(4269), 1, + sym_class_name, + STATE(4465), 1, + sym_field_declaration_list, + STATE(6564), 1, + sym_ms_declspec_modifier, + STATE(7571), 1, + sym_scope_resolution, + STATE(8160), 1, + sym_virtual_specifier, + STATE(9057), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6569), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6212), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [248224] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6450), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10508), 1, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10099), 1, sym_identifier, - STATE(2516), 1, - sym_class_name, - STATE(2765), 1, + STATE(3094), 1, sym_template_type, - STATE(2887), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(3101), 1, - sym_field_declaration_list, - STATE(3548), 1, - sym_class_declaration_item, - STATE(3549), 1, + STATE(3557), 1, sym_class_declaration, - STATE(6937), 1, + STATE(3688), 1, + sym_class_declaration_item, + STATE(4269), 1, + sym_class_name, + STATE(4465), 1, + sym_field_declaration_list, + STATE(6564), 1, sym_ms_declspec_modifier, - STATE(7915), 1, + STATE(7571), 1, sym_scope_resolution, - STATE(8356), 1, + STATE(8160), 1, sym_virtual_specifier, - STATE(9156), 1, + STATE(9057), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(6950), 2, + STATE(6569), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6704), 3, + STATE(6212), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [294594] = 3, + [248305] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(10515), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK, - ACTIONS(10513), 23, - anon_sym_AMP, - anon_sym___extension__, - 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_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(5747), 1, + anon_sym___attribute__, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(9726), 1, + anon_sym_LBRACE, + ACTIONS(10117), 1, sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [294631] = 18, + STATE(5722), 1, + sym_template_type, + STATE(5723), 1, + sym_class_name, + STATE(5753), 1, + sym_qualified_type_identifier, + STATE(5926), 1, + sym_field_declaration_list, + STATE(6137), 1, + sym_class_declaration_item, + STATE(6152), 1, + sym_class_declaration, + STATE(6481), 1, + sym_ms_declspec_modifier, + STATE(7539), 1, + sym_scope_resolution, + STATE(7839), 1, + sym_virtual_specifier, + STATE(8845), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6482), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6248), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [248386] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2259), 1, + ACTIONS(2257), 1, anon_sym_operator, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3704), 1, + ACTIONS(3251), 1, anon_sym_LPAREN2, - ACTIONS(3706), 1, + ACTIONS(3253), 1, anon_sym_TILDE, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8132), 1, + ACTIONS(7758), 1, anon_sym_LBRACK, - ACTIONS(8150), 1, + ACTIONS(7827), 1, sym_identifier, - ACTIONS(8152), 1, + ACTIONS(7829), 1, anon_sym_STAR, - ACTIONS(8154), 1, + ACTIONS(7831), 1, anon_sym_AMP_AMP, - ACTIONS(8156), 1, + ACTIONS(7833), 1, anon_sym_AMP, - STATE(7202), 1, + STATE(6710), 1, sym_scope_resolution, - STATE(7566), 1, + STATE(7396), 1, sym_declarator, - STATE(10671), 1, + STATE(9538), 1, sym_ms_based_modifier, - STATE(9982), 3, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7634), 11, + STATE(7305), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -572676,134 +533469,156 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [294698] = 3, + [248453] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6270), 4, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(6268), 25, - anon_sym___extension__, + ACTIONS(5747), 1, anon_sym___attribute__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(6695), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, anon_sym_COLON, + ACTIONS(10119), 1, sym_identifier, - sym_auto, - anon_sym_decltype, + STATE(2604), 1, + sym_class_name, + STATE(2808), 1, + sym_template_type, + STATE(2845), 1, + sym_qualified_type_identifier, + STATE(3047), 1, + sym_field_declaration_list, + STATE(3247), 1, + sym_class_declaration, + STATE(3250), 1, + sym_class_declaration_item, + STATE(6496), 1, + sym_ms_declspec_modifier, + STATE(7544), 1, + sym_scope_resolution, + STATE(8172), 1, + sym_virtual_specifier, + STATE(9087), 1, + sym_base_class_clause, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - [294735] = 25, + STATE(6497), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6244), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [248534] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10495), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(9726), 1, + anon_sym_LBRACE, + ACTIONS(10117), 1, sym_identifier, - STATE(4401), 1, + STATE(5722), 1, sym_template_type, - STATE(4404), 1, - sym_qualified_type_identifier, - STATE(4594), 1, + STATE(5723), 1, sym_class_name, - STATE(4797), 1, + STATE(5753), 1, + sym_qualified_type_identifier, + STATE(5926), 1, sym_field_declaration_list, - STATE(4942), 1, - sym_class_declaration, - STATE(4958), 1, + STATE(6137), 1, sym_class_declaration_item, - STATE(6970), 1, + STATE(6153), 1, + sym_class_declaration, + STATE(6481), 1, sym_ms_declspec_modifier, - STATE(7879), 1, + STATE(7539), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(7839), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(8845), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7020), 2, + STATE(6482), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6712), 3, + STATE(6248), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [294816] = 18, + [248615] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_AMP_AMP, ACTIONS(51), 1, anon_sym___based, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2259), 1, + ACTIONS(2257), 1, anon_sym_operator, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3704), 1, + ACTIONS(3251), 1, anon_sym_LPAREN2, - ACTIONS(3706), 1, + ACTIONS(3253), 1, anon_sym_TILDE, - ACTIONS(3708), 1, - anon_sym_STAR, - ACTIONS(3710), 1, - anon_sym_AMP, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(5748), 1, - sym_identifier, - ACTIONS(8132), 1, + ACTIONS(7758), 1, anon_sym_LBRACK, - STATE(7201), 1, + ACTIONS(7827), 1, + sym_identifier, + ACTIONS(7829), 1, + anon_sym_STAR, + ACTIONS(7831), 1, + anon_sym_AMP_AMP, + ACTIONS(7833), 1, + anon_sym_AMP, + STATE(6710), 1, sym_scope_resolution, - STATE(7965), 1, + STATE(7402), 1, sym_declarator, - STATE(10059), 1, + STATE(9538), 1, sym_ms_based_modifier, - STATE(9982), 3, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7634), 11, + STATE(7305), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -572815,444 +533630,548 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [294883] = 18, + [248682] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8132), 1, - anon_sym_LBRACK, - ACTIONS(8150), 1, + ACTIONS(5747), 1, + anon_sym___attribute__, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(8314), 1, + anon_sym_LBRACE, + ACTIONS(10121), 1, sym_identifier, - ACTIONS(8152), 1, - anon_sym_STAR, - ACTIONS(8154), 1, - anon_sym_AMP_AMP, - ACTIONS(8156), 1, - anon_sym_AMP, - STATE(7202), 1, + STATE(2532), 1, + sym_template_type, + STATE(2703), 1, + sym_qualified_type_identifier, + STATE(4441), 1, + sym_class_name, + STATE(4936), 1, + sym_field_declaration_list, + STATE(5286), 1, + sym_class_declaration_item, + STATE(5303), 1, + sym_class_declaration, + STATE(6572), 1, + sym_ms_declspec_modifier, + STATE(7574), 1, sym_scope_resolution, - STATE(7806), 1, - sym_declarator, - STATE(10671), 1, - sym_ms_based_modifier, - STATE(9982), 3, + STATE(8086), 1, + sym_virtual_specifier, + STATE(8905), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6573), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - STATE(7634), 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, - [294950] = 3, + STATE(6240), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [248763] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5525), 4, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5518), 25, - anon_sym___extension__, + ACTIONS(5747), 1, anon_sym___attribute__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7552), 1, anon_sym_COLON, + ACTIONS(7593), 1, + anon_sym_LBRACE, + ACTIONS(10123), 1, sym_identifier, - sym_auto, - anon_sym_decltype, + STATE(3529), 1, + sym_class_name, + STATE(4123), 1, + sym_template_type, + STATE(4280), 1, + sym_qualified_type_identifier, + STATE(4473), 1, + sym_field_declaration_list, + STATE(4632), 1, + sym_class_declaration, + STATE(4633), 1, + sym_class_declaration_item, + STATE(6543), 1, + sym_ms_declspec_modifier, + STATE(7541), 1, + sym_scope_resolution, + STATE(7903), 1, + sym_virtual_specifier, + STATE(9014), 1, + sym_base_class_clause, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - [294987] = 6, + STATE(6544), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6217), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [248844] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10517), 1, - anon_sym_LT, - STATE(6732), 1, - sym_template_argument_list, - ACTIONS(5467), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACE, - ACTIONS(5460), 23, - anon_sym___extension__, + ACTIONS(5747), 1, anon_sym___attribute__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7552), 1, anon_sym_COLON, + ACTIONS(7593), 1, + anon_sym_LBRACE, + ACTIONS(10123), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - [295030] = 25, + STATE(3529), 1, + sym_class_name, + STATE(4123), 1, + sym_template_type, + STATE(4280), 1, + sym_qualified_type_identifier, + STATE(4473), 1, + sym_field_declaration_list, + STATE(4633), 1, + sym_class_declaration_item, + STATE(4635), 1, + sym_class_declaration, + STATE(6543), 1, + sym_ms_declspec_modifier, + STATE(7541), 1, + sym_scope_resolution, + STATE(7903), 1, + sym_virtual_specifier, + STATE(9014), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6544), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6217), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [248925] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10495), 1, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10099), 1, sym_identifier, - STATE(4401), 1, + STATE(3094), 1, sym_template_type, - STATE(4404), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(4581), 1, - sym_class_name, - STATE(4797), 1, - sym_field_declaration_list, - STATE(4942), 1, + STATE(3687), 1, sym_class_declaration, - STATE(4958), 1, + STATE(3688), 1, sym_class_declaration_item, - STATE(6970), 1, + STATE(4331), 1, + sym_class_name, + STATE(4465), 1, + sym_field_declaration_list, + STATE(6564), 1, sym_ms_declspec_modifier, - STATE(7879), 1, + STATE(7571), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(8160), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(9057), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7020), 2, + STATE(6569), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6712), 3, + STATE(6212), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [295111] = 25, + [249006] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10495), 1, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10099), 1, sym_identifier, - STATE(4401), 1, + STATE(3094), 1, sym_template_type, - STATE(4404), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(4581), 1, + STATE(3600), 1, + sym_class_declaration, + STATE(3688), 1, + sym_class_declaration_item, + STATE(4331), 1, sym_class_name, - STATE(4797), 1, + STATE(4465), 1, sym_field_declaration_list, - STATE(4958), 1, - sym_class_declaration_item, - STATE(4980), 1, - sym_class_declaration, - STATE(6970), 1, + STATE(6564), 1, sym_ms_declspec_modifier, - STATE(7879), 1, + STATE(7571), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(8160), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(9057), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7020), 2, + STATE(6569), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6712), 3, + STATE(6212), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [295192] = 25, + [249087] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, + ACTIONS(5747), 1, + anon_sym___attribute__, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7550), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(10099), 1, + sym_identifier, + STATE(3094), 1, + sym_template_type, + STATE(3098), 1, + sym_qualified_type_identifier, + STATE(3557), 1, + sym_class_declaration, + STATE(3688), 1, + sym_class_declaration_item, + STATE(4331), 1, + sym_class_name, + STATE(4465), 1, + sym_field_declaration_list, + STATE(6564), 1, + sym_ms_declspec_modifier, + STATE(7571), 1, + sym_scope_resolution, + STATE(8160), 1, + sym_virtual_specifier, + STATE(9057), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6569), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6212), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [249168] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10495), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(7593), 1, + anon_sym_LBRACE, + ACTIONS(10123), 1, sym_identifier, - STATE(4401), 1, + STATE(3529), 1, + sym_class_name, + STATE(4123), 1, sym_template_type, - STATE(4404), 1, + STATE(4280), 1, sym_qualified_type_identifier, - STATE(4581), 1, - sym_class_name, - STATE(4797), 1, + STATE(4473), 1, sym_field_declaration_list, - STATE(4958), 1, + STATE(4633), 1, sym_class_declaration_item, - STATE(4981), 1, + STATE(4640), 1, sym_class_declaration, - STATE(6970), 1, + STATE(6543), 1, sym_ms_declspec_modifier, - STATE(7879), 1, + STATE(7541), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(7903), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(9014), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7020), 2, + STATE(6544), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6712), 3, + STATE(6217), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [295273] = 25, + [249249] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, + ACTIONS(5700), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10495), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10125), 1, sym_identifier, - STATE(4401), 1, + STATE(1897), 1, + sym_class_name, + STATE(2050), 1, sym_template_type, - STATE(4404), 1, + STATE(2137), 1, sym_qualified_type_identifier, - STATE(4594), 1, - sym_class_name, - STATE(4797), 1, + STATE(2191), 1, sym_field_declaration_list, - STATE(4958), 1, - sym_class_declaration_item, - STATE(4980), 1, + STATE(2283), 1, sym_class_declaration, - STATE(6970), 1, + STATE(2284), 1, + sym_class_declaration_item, + STATE(6526), 1, sym_ms_declspec_modifier, - STATE(7879), 1, + STATE(7557), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(7988), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(9035), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7020), 2, + STATE(6527), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6712), 3, + STATE(6243), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [295354] = 25, + [249330] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10495), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(8314), 1, + anon_sym_LBRACE, + ACTIONS(10121), 1, sym_identifier, - STATE(4401), 1, + STATE(2532), 1, sym_template_type, - STATE(4404), 1, + STATE(2703), 1, sym_qualified_type_identifier, - STATE(4594), 1, + STATE(4441), 1, sym_class_name, - STATE(4797), 1, + STATE(4936), 1, sym_field_declaration_list, - STATE(4958), 1, + STATE(5286), 1, sym_class_declaration_item, - STATE(4981), 1, + STATE(5325), 1, sym_class_declaration, - STATE(6970), 1, + STATE(6572), 1, sym_ms_declspec_modifier, - STATE(7879), 1, + STATE(7574), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(8086), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(8905), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7020), 2, + STATE(6573), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6712), 3, + STATE(6240), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [295435] = 18, + [249411] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_AMP_AMP, ACTIONS(51), 1, anon_sym___based, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2259), 1, + ACTIONS(2257), 1, anon_sym_operator, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3704), 1, + ACTIONS(3251), 1, anon_sym_LPAREN2, - ACTIONS(3706), 1, + ACTIONS(3253), 1, anon_sym_TILDE, - ACTIONS(3708), 1, + ACTIONS(3255), 1, anon_sym_STAR, - ACTIONS(3710), 1, + ACTIONS(3257), 1, anon_sym_AMP, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(5748), 1, + ACTIONS(5741), 1, sym_identifier, - ACTIONS(8132), 1, + ACTIONS(7758), 1, anon_sym_LBRACK, - STATE(7201), 1, + STATE(6786), 1, sym_scope_resolution, - STATE(7956), 1, + STATE(7584), 1, sym_declarator, - STATE(10059), 1, + STATE(9481), 1, sym_ms_based_modifier, - STATE(9982), 3, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7634), 11, + STATE(7305), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -573264,25 +534183,386 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [295502] = 9, + [249478] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6114), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(6241), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(6695), 1, anon_sym_LBRACE, - ACTIONS(10519), 1, + ACTIONS(7552), 1, anon_sym_COLON, - STATE(2304), 1, - sym_enum_base_clause, - STATE(2505), 1, - sym_enumerator_list, - STATE(2580), 1, + ACTIONS(10119), 1, + sym_identifier, + STATE(2604), 1, + sym_class_name, + STATE(2808), 1, + sym_template_type, + STATE(2845), 1, + sym_qualified_type_identifier, + STATE(3047), 1, + sym_field_declaration_list, + STATE(3250), 1, + sym_class_declaration_item, + STATE(3261), 1, + sym_class_declaration, + STATE(6496), 1, + sym_ms_declspec_modifier, + STATE(7544), 1, + sym_scope_resolution, + STATE(8172), 1, + sym_virtual_specifier, + STATE(9087), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6497), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6244), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [249559] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8301), 1, + anon_sym_DASH_GT, + ACTIONS(8303), 1, + anon_sym_requires, + ACTIONS(9642), 1, + anon_sym_LBRACK, + STATE(6354), 1, + sym_function_exception_specification, + STATE(7021), 1, + sym_requires_clause, + STATE(7068), 1, + sym_function_postfix, + STATE(7225), 1, + sym_function_attributes_end, + STATE(7338), 1, + sym_trailing_return_type, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [249632] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5747), 1, + anon_sym___attribute__, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(9670), 1, + anon_sym_LBRACE, + ACTIONS(10127), 1, + sym_identifier, + STATE(3094), 1, + sym_template_type, + STATE(3322), 1, + sym_qualified_type_identifier, + STATE(4993), 1, + sym_class_declaration, + STATE(4994), 1, + sym_class_declaration_item, + STATE(5620), 1, + sym_class_name, + STATE(5797), 1, + sym_field_declaration_list, + STATE(6561), 1, + sym_ms_declspec_modifier, + STATE(7551), 1, + sym_scope_resolution, + STATE(8125), 1, + sym_virtual_specifier, + STATE(9001), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6238), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [249713] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5747), 1, + anon_sym___attribute__, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(9670), 1, + anon_sym_LBRACE, + ACTIONS(10127), 1, + sym_identifier, + STATE(3094), 1, + sym_template_type, + STATE(3322), 1, + sym_qualified_type_identifier, + STATE(4994), 1, + sym_class_declaration_item, + STATE(4996), 1, + sym_class_declaration, + STATE(5620), 1, + sym_class_name, + STATE(5797), 1, + sym_field_declaration_list, + STATE(6561), 1, + sym_ms_declspec_modifier, + STATE(7551), 1, + sym_scope_resolution, + STATE(8125), 1, + sym_virtual_specifier, + STATE(9001), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6238), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [249794] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(9688), 1, + anon_sym_const, + ACTIONS(9993), 1, + anon_sym_STAR, + ACTIONS(9995), 1, + anon_sym_AMP_AMP, + ACTIONS(9997), 1, + anon_sym_AMP, + STATE(4453), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7748), 1, + sym_abstract_declarator, + ACTIONS(6535), 2, + anon_sym_RPAREN, + sym_semgrep_metavar, + STATE(6187), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9686), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [249853] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5747), 1, + anon_sym___attribute__, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(9670), 1, + anon_sym_LBRACE, + ACTIONS(10127), 1, + sym_identifier, + STATE(3094), 1, + sym_template_type, + STATE(3322), 1, + sym_qualified_type_identifier, + STATE(4994), 1, + sym_class_declaration_item, + STATE(4997), 1, + sym_class_declaration, + STATE(5620), 1, + sym_class_name, + STATE(5797), 1, + sym_field_declaration_list, + STATE(6561), 1, + sym_ms_declspec_modifier, + STATE(7551), 1, + sym_scope_resolution, + STATE(8125), 1, + sym_virtual_specifier, + STATE(9001), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6238), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [249934] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8301), 1, + anon_sym_DASH_GT, + ACTIONS(8303), 1, + anon_sym_requires, + ACTIONS(9783), 1, + anon_sym_LBRACK, + STATE(6345), 1, + sym_function_exception_specification, + STATE(7021), 1, + sym_requires_clause, + STATE(7073), 1, + sym_function_postfix, + STATE(7118), 1, + sym_function_attributes_end, + STATE(7343), 1, + sym_trailing_return_type, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6443), 2, sym_attribute_specifier, - ACTIONS(6225), 2, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [250007] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6216), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6227), 21, + ACTIONS(6214), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -573290,7 +534570,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -573303,241 +534585,332 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, sym_auto, anon_sym_decltype, - sym_semgrep_metavar, - [295551] = 25, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [250044] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6790), 1, + ACTIONS(5700), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10521), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10125), 1, sym_identifier, - STATE(2739), 1, + STATE(1897), 1, sym_class_name, - STATE(3011), 1, + STATE(2050), 1, sym_template_type, - STATE(3140), 1, + STATE(2137), 1, sym_qualified_type_identifier, - STATE(3284), 1, + STATE(2191), 1, sym_field_declaration_list, - STATE(3474), 1, - sym_class_declaration, - STATE(3475), 1, + STATE(2284), 1, sym_class_declaration_item, - STATE(6992), 1, + STATE(2286), 1, + sym_class_declaration, + STATE(6526), 1, sym_ms_declspec_modifier, - STATE(7876), 1, + STATE(7557), 1, sym_scope_resolution, - STATE(8497), 1, + STATE(7988), 1, sym_virtual_specifier, - STATE(9538), 1, + STATE(9035), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(6993), 2, + STATE(6527), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6702), 3, + STATE(6243), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [295632] = 18, + [250125] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6256), 1, + ACTIONS(5747), 1, + anon_sym___attribute__, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(8083), 1, + anon_sym_LBRACE, + ACTIONS(10129), 1, sym_identifier, - ACTIONS(8132), 1, + STATE(4007), 1, + sym_class_name, + STATE(4400), 1, + sym_template_type, + STATE(4457), 1, + sym_qualified_type_identifier, + STATE(4627), 1, + sym_field_declaration_list, + STATE(4796), 1, + sym_class_declaration_item, + STATE(4818), 1, + sym_class_declaration, + STATE(6486), 1, + sym_ms_declspec_modifier, + STATE(7545), 1, + sym_scope_resolution, + STATE(7916), 1, + sym_virtual_specifier, + STATE(8693), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6487), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6216), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [250206] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(9692), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_COLON, + STATE(5013), 1, + sym_attribute_specifier, + STATE(5776), 1, + sym_enum_base_clause, + STATE(5802), 1, + sym_enumerator_list, + ACTIONS(6514), 3, + anon_sym_AMP, anon_sym_LBRACK, - ACTIONS(8163), 1, + anon_sym_const, + ACTIONS(6516), 20, + anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(8165), 1, anon_sym_AMP_AMP, - ACTIONS(8167), 1, + anon_sym___extension__, + anon_sym_LBRACK_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [250255] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(9692), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_COLON, + STATE(5030), 1, + sym_attribute_specifier, + STATE(5777), 1, + sym_enum_base_clause, + STATE(5807), 1, + sym_enumerator_list, + ACTIONS(6520), 3, anon_sym_AMP, - STATE(7241), 1, - sym_scope_resolution, - STATE(7566), 1, - sym_declarator, - STATE(9737), 1, - sym_ms_based_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - [295699] = 25, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6522), 20, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym___extension__, + anon_sym_LBRACK_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [250304] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6790), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10521), 1, + ACTIONS(6894), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10133), 1, sym_identifier, - STATE(2739), 1, + STATE(2772), 1, sym_class_name, - STATE(3011), 1, + STATE(2919), 1, sym_template_type, - STATE(3140), 1, + STATE(3097), 1, sym_qualified_type_identifier, - STATE(3284), 1, + STATE(3102), 1, sym_field_declaration_list, - STATE(3475), 1, + STATE(3298), 1, sym_class_declaration_item, - STATE(3476), 1, + STATE(3299), 1, sym_class_declaration, - STATE(6992), 1, + STATE(6545), 1, sym_ms_declspec_modifier, - STATE(7876), 1, + STATE(7558), 1, sym_scope_resolution, - STATE(8497), 1, + STATE(8036), 1, sym_virtual_specifier, - STATE(9538), 1, + STATE(8742), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(6993), 2, + STATE(6546), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6702), 3, + STATE(6250), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [295780] = 25, + [250385] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6790), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10521), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(8083), 1, + anon_sym_LBRACE, + ACTIONS(10129), 1, sym_identifier, - STATE(2739), 1, + STATE(4007), 1, sym_class_name, - STATE(3011), 1, + STATE(4400), 1, sym_template_type, - STATE(3140), 1, + STATE(4457), 1, sym_qualified_type_identifier, - STATE(3284), 1, + STATE(4627), 1, sym_field_declaration_list, - STATE(3475), 1, + STATE(4796), 1, sym_class_declaration_item, - STATE(3477), 1, + STATE(4815), 1, sym_class_declaration, - STATE(6992), 1, + STATE(6486), 1, sym_ms_declspec_modifier, - STATE(7876), 1, + STATE(7545), 1, sym_scope_resolution, - STATE(8497), 1, + STATE(7916), 1, sym_virtual_specifier, - STATE(9538), 1, + STATE(8693), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(6993), 2, + STATE(6487), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6702), 3, + STATE(6216), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [295861] = 3, + [250466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5483), 4, + ACTIONS(6199), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6197), 27, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5481), 25, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym___attribute__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -573548,1236 +534921,999 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_COLON, - sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - [295898] = 18, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [250503] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_AMP_AMP, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8301), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9967), 1, + anon_sym_requires, + STATE(6350), 1, + sym_function_exception_specification, + STATE(7021), 1, + sym_requires_clause, + STATE(7068), 1, + sym_function_postfix, + STATE(7144), 1, + sym_function_attributes_end, + STATE(7313), 1, + sym_trailing_return_type, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9657), 2, + anon_sym_final, + anon_sym_override, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3708), 1, - anon_sym_STAR, - ACTIONS(3710), 1, + anon_sym_GT2, + [250576] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6220), 2, anon_sym_AMP, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(5748), 1, - sym_identifier, - ACTIONS(8132), 1, + anon_sym_const, + ACTIONS(6218), 27, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(7201), 1, - sym_scope_resolution, - STATE(7966), 1, - sym_declarator, - STATE(10059), 1, - sym_ms_based_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - [295965] = 18, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [250613] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8132), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8301), 1, + anon_sym_DASH_GT, + ACTIONS(9783), 1, anon_sym_LBRACK, - ACTIONS(8150), 1, - sym_identifier, - ACTIONS(8152), 1, - anon_sym_STAR, - ACTIONS(8154), 1, - anon_sym_AMP_AMP, - ACTIONS(8156), 1, - anon_sym_AMP, - STATE(7202), 1, - sym_scope_resolution, - STATE(7802), 1, - sym_declarator, - STATE(10671), 1, - sym_ms_based_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - [296032] = 25, + ACTIONS(10135), 1, + anon_sym_requires, + STATE(6346), 1, + sym_function_exception_specification, + STATE(7021), 1, + sym_requires_clause, + STATE(7073), 1, + sym_function_postfix, + STATE(7146), 1, + sym_function_attributes_end, + STATE(7316), 1, + sym_trailing_return_type, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9785), 2, + anon_sym_final, + anon_sym_override, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [250686] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10495), 1, + ACTIONS(6413), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10138), 1, sym_identifier, - STATE(4401), 1, + STATE(2453), 1, + sym_class_name, + STATE(2674), 1, sym_template_type, - STATE(4404), 1, + STATE(2747), 1, sym_qualified_type_identifier, - STATE(4565), 1, - sym_class_name, - STATE(4797), 1, + STATE(2860), 1, sym_field_declaration_list, - STATE(4942), 1, + STATE(3000), 1, sym_class_declaration, - STATE(4958), 1, + STATE(3001), 1, sym_class_declaration_item, - STATE(6970), 1, + STATE(6491), 1, sym_ms_declspec_modifier, - STATE(7879), 1, + STATE(7547), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(7928), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(8773), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7020), 2, + STATE(6492), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6712), 3, + STATE(6218), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [296113] = 25, + [250767] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10495), 1, + ACTIONS(6367), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10140), 1, sym_identifier, - STATE(4401), 1, - sym_template_type, - STATE(4404), 1, - sym_qualified_type_identifier, - STATE(4565), 1, + STATE(2410), 1, sym_class_name, - STATE(4797), 1, + STATE(2582), 1, + sym_template_type, + STATE(2598), 1, sym_field_declaration_list, - STATE(4958), 1, - sym_class_declaration_item, - STATE(4980), 1, + STATE(2696), 1, + sym_qualified_type_identifier, + STATE(2725), 1, sym_class_declaration, - STATE(6970), 1, + STATE(2726), 1, + sym_class_declaration_item, + STATE(6547), 1, sym_ms_declspec_modifier, - STATE(7879), 1, + STATE(7523), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(8113), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(8974), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7020), 2, + STATE(6548), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6712), 3, + STATE(6230), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [296194] = 25, + [250848] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10495), 1, + ACTIONS(6367), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10140), 1, sym_identifier, - STATE(4401), 1, - sym_template_type, - STATE(4404), 1, - sym_qualified_type_identifier, - STATE(4565), 1, + STATE(2410), 1, sym_class_name, - STATE(4797), 1, + STATE(2582), 1, + sym_template_type, + STATE(2598), 1, sym_field_declaration_list, - STATE(4958), 1, + STATE(2696), 1, + sym_qualified_type_identifier, + STATE(2726), 1, sym_class_declaration_item, - STATE(4981), 1, + STATE(2732), 1, sym_class_declaration, - STATE(6970), 1, + STATE(6547), 1, sym_ms_declspec_modifier, - STATE(7879), 1, + STATE(7523), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(8113), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(8974), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7020), 2, + STATE(6548), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6712), 3, + STATE(6230), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [296275] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(7920), 1, - anon_sym_DASH_GT, - ACTIONS(7926), 1, - anon_sym_requires, - ACTIONS(10103), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10106), 1, - anon_sym_LBRACK, - STATE(7033), 1, - sym_trailing_return_type, - STATE(7173), 1, - sym_function_attributes_end, - STATE(7270), 1, - sym_requires_clause, - STATE(7338), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(6118), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10101), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_try, - [296340] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(5748), 1, - sym_identifier, - ACTIONS(8132), 1, - anon_sym_LBRACK, - ACTIONS(8144), 1, - anon_sym_STAR, - ACTIONS(8146), 1, - anon_sym_AMP_AMP, - ACTIONS(8148), 1, - anon_sym_AMP, - STATE(7180), 1, - sym_scope_resolution, - STATE(7970), 1, - sym_declarator, - STATE(9814), 1, - sym_ms_based_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - [296407] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_AMP_AMP, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3708), 1, - anon_sym_STAR, - ACTIONS(3710), 1, - anon_sym_AMP, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(5748), 1, - sym_identifier, - ACTIONS(8132), 1, - anon_sym_LBRACK, - STATE(7201), 1, - sym_scope_resolution, - STATE(7998), 1, - sym_declarator, - STATE(10059), 1, - sym_ms_based_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - [296474] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8132), 1, - anon_sym_LBRACK, - ACTIONS(8150), 1, - sym_identifier, - ACTIONS(8152), 1, - anon_sym_STAR, - ACTIONS(8154), 1, - anon_sym_AMP_AMP, - ACTIONS(8156), 1, - anon_sym_AMP, - STATE(7202), 1, - sym_scope_resolution, - STATE(7811), 1, - sym_declarator, - STATE(10671), 1, - sym_ms_based_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - [296541] = 25, + [250929] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10495), 1, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10099), 1, sym_identifier, - STATE(4401), 1, + STATE(3094), 1, sym_template_type, - STATE(4404), 1, + STATE(3322), 1, sym_qualified_type_identifier, - STATE(4612), 1, - sym_class_name, - STATE(4797), 1, - sym_field_declaration_list, - STATE(4942), 1, + STATE(3687), 1, sym_class_declaration, - STATE(4958), 1, + STATE(3688), 1, sym_class_declaration_item, - STATE(6970), 1, + STATE(4465), 1, + sym_field_declaration_list, + STATE(4613), 1, + sym_class_name, + STATE(6456), 1, sym_ms_declspec_modifier, - STATE(7879), 1, + STATE(7526), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(8160), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(9057), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7020), 2, + STATE(6457), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6712), 3, + STATE(6225), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [296622] = 25, + [251010] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10495), 1, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10099), 1, sym_identifier, - STATE(4401), 1, + STATE(3094), 1, sym_template_type, - STATE(4404), 1, + STATE(3322), 1, sym_qualified_type_identifier, - STATE(4612), 1, - sym_class_name, - STATE(4797), 1, - sym_field_declaration_list, - STATE(4958), 1, - sym_class_declaration_item, - STATE(4980), 1, + STATE(3600), 1, sym_class_declaration, - STATE(6970), 1, + STATE(3688), 1, + sym_class_declaration_item, + STATE(4465), 1, + sym_field_declaration_list, + STATE(4613), 1, + sym_class_name, + STATE(6456), 1, sym_ms_declspec_modifier, - STATE(7879), 1, + STATE(7526), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(8160), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(9057), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7020), 2, + STATE(6457), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6712), 3, + STATE(6225), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [296703] = 25, + [251091] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10495), 1, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10099), 1, sym_identifier, - STATE(4401), 1, + STATE(3094), 1, sym_template_type, - STATE(4404), 1, + STATE(3322), 1, sym_qualified_type_identifier, - STATE(4612), 1, - sym_class_name, - STATE(4797), 1, - sym_field_declaration_list, - STATE(4958), 1, - sym_class_declaration_item, - STATE(4981), 1, + STATE(3557), 1, sym_class_declaration, - STATE(6970), 1, + STATE(3688), 1, + sym_class_declaration_item, + STATE(4465), 1, + sym_field_declaration_list, + STATE(4613), 1, + sym_class_name, + STATE(6456), 1, sym_ms_declspec_modifier, - STATE(7879), 1, + STATE(7526), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(8160), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(9057), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7020), 2, + STATE(6457), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6712), 3, + STATE(6225), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [296784] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(7920), 1, - anon_sym_DASH_GT, - ACTIONS(9899), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9902), 1, - anon_sym_LBRACK, - ACTIONS(9995), 1, - anon_sym_requires, - STATE(7031), 1, - sym_trailing_return_type, - STATE(7139), 1, - sym_function_attributes_end, - STATE(7270), 1, - sym_requires_clause, - STATE(7298), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9992), 2, - anon_sym_final, - anon_sym_override, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(9897), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_try, - [296849] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8132), 1, - anon_sym_LBRACK, - ACTIONS(8150), 1, - sym_identifier, - ACTIONS(8152), 1, - anon_sym_STAR, - ACTIONS(8154), 1, - anon_sym_AMP_AMP, - ACTIONS(8156), 1, - anon_sym_AMP, - STATE(7202), 1, - sym_scope_resolution, - STATE(7795), 1, - sym_declarator, - STATE(10671), 1, - sym_ms_based_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - [296916] = 25, + [251172] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10495), 1, + ACTIONS(6367), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10140), 1, sym_identifier, - STATE(4401), 1, - sym_template_type, - STATE(4404), 1, - sym_qualified_type_identifier, - STATE(4573), 1, + STATE(2410), 1, sym_class_name, - STATE(4797), 1, + STATE(2582), 1, + sym_template_type, + STATE(2598), 1, sym_field_declaration_list, - STATE(4942), 1, - sym_class_declaration, - STATE(4958), 1, + STATE(2696), 1, + sym_qualified_type_identifier, + STATE(2726), 1, sym_class_declaration_item, - STATE(6970), 1, + STATE(2734), 1, + sym_class_declaration, + STATE(6547), 1, sym_ms_declspec_modifier, - STATE(7879), 1, + STATE(7523), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(8113), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(8974), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7020), 2, + STATE(6548), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6712), 3, + STATE(6230), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [296997] = 25, + [251253] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10495), 1, + ACTIONS(6413), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10138), 1, sym_identifier, - STATE(4401), 1, + STATE(2453), 1, + sym_class_name, + STATE(2674), 1, sym_template_type, - STATE(4404), 1, + STATE(2747), 1, sym_qualified_type_identifier, - STATE(4573), 1, - sym_class_name, - STATE(4797), 1, + STATE(2860), 1, sym_field_declaration_list, - STATE(4958), 1, + STATE(3001), 1, sym_class_declaration_item, - STATE(4980), 1, + STATE(3002), 1, sym_class_declaration, - STATE(6970), 1, + STATE(6491), 1, sym_ms_declspec_modifier, - STATE(7879), 1, + STATE(7547), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(7928), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(8773), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7020), 2, + STATE(6492), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6712), 3, + STATE(6218), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [297078] = 25, + [251334] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10495), 1, + ACTIONS(6413), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10138), 1, sym_identifier, - STATE(4401), 1, + STATE(2453), 1, + sym_class_name, + STATE(2674), 1, sym_template_type, - STATE(4404), 1, + STATE(2747), 1, sym_qualified_type_identifier, - STATE(4573), 1, - sym_class_name, - STATE(4797), 1, + STATE(2860), 1, sym_field_declaration_list, - STATE(4958), 1, + STATE(3001), 1, sym_class_declaration_item, - STATE(4981), 1, + STATE(3003), 1, sym_class_declaration, - STATE(6970), 1, + STATE(6491), 1, sym_ms_declspec_modifier, - STATE(7879), 1, + STATE(7547), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(7928), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(8773), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7020), 2, + STATE(6492), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6712), 3, + STATE(6218), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [297159] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_AMP_AMP, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3708), 1, - anon_sym_STAR, - ACTIONS(3710), 1, - anon_sym_AMP, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(5748), 1, - sym_identifier, - ACTIONS(8132), 1, - anon_sym_LBRACK, - STATE(7201), 1, - sym_scope_resolution, - STATE(7566), 1, - sym_declarator, - STATE(10059), 1, - sym_ms_based_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - [297226] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8132), 1, - anon_sym_LBRACK, - ACTIONS(8150), 1, - sym_identifier, - ACTIONS(8152), 1, - anon_sym_STAR, - ACTIONS(8154), 1, - anon_sym_AMP_AMP, - ACTIONS(8156), 1, - anon_sym_AMP, - STATE(7202), 1, - sym_scope_resolution, - STATE(7786), 1, - sym_declarator, - STATE(10671), 1, - sym_ms_based_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - [297293] = 25, + [251415] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6450), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10508), 1, + ACTIONS(6695), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10119), 1, sym_identifier, - STATE(2516), 1, + STATE(2604), 1, sym_class_name, - STATE(2765), 1, + STATE(2808), 1, sym_template_type, - STATE(2887), 1, + STATE(2845), 1, sym_qualified_type_identifier, - STATE(3101), 1, + STATE(3047), 1, sym_field_declaration_list, - STATE(3548), 1, + STATE(3250), 1, sym_class_declaration_item, - STATE(3550), 1, + STATE(3263), 1, sym_class_declaration, - STATE(6937), 1, + STATE(6496), 1, sym_ms_declspec_modifier, - STATE(7915), 1, + STATE(7544), 1, sym_scope_resolution, - STATE(8356), 1, + STATE(8172), 1, sym_virtual_specifier, - STATE(9156), 1, + STATE(9087), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(6950), 2, + STATE(6497), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6704), 3, + STATE(6244), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [297374] = 25, + [251496] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10495), 1, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10127), 1, sym_identifier, - STATE(4401), 1, + STATE(3094), 1, sym_template_type, - STATE(4404), 1, + STATE(3322), 1, sym_qualified_type_identifier, - STATE(4614), 1, - sym_class_name, - STATE(4797), 1, - sym_field_declaration_list, - STATE(4942), 1, + STATE(3687), 1, sym_class_declaration, - STATE(4958), 1, + STATE(3688), 1, sym_class_declaration_item, - STATE(6970), 1, + STATE(4009), 1, + sym_class_name, + STATE(4469), 1, + sym_field_declaration_list, + STATE(6558), 1, sym_ms_declspec_modifier, - STATE(7879), 1, + STATE(7551), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(8157), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(9050), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7020), 2, + STATE(6560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6712), 3, + STATE(6241), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [297455] = 25, + [251577] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(9688), 1, + anon_sym_const, + ACTIONS(9993), 1, + anon_sym_STAR, + ACTIONS(9995), 1, + anon_sym_AMP_AMP, + ACTIONS(9997), 1, + anon_sym_AMP, + STATE(4453), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7735), 1, + sym_abstract_declarator, + ACTIONS(9177), 2, + anon_sym_RPAREN, + sym_semgrep_metavar, + STATE(6335), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9686), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [251636] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10495), 1, + ACTIONS(6894), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10133), 1, sym_identifier, - STATE(4401), 1, + STATE(2772), 1, + sym_class_name, + STATE(2919), 1, sym_template_type, - STATE(4404), 1, + STATE(3097), 1, sym_qualified_type_identifier, - STATE(4614), 1, - sym_class_name, - STATE(4797), 1, + STATE(3102), 1, sym_field_declaration_list, - STATE(4958), 1, + STATE(3298), 1, sym_class_declaration_item, - STATE(4980), 1, + STATE(3300), 1, sym_class_declaration, - STATE(6970), 1, + STATE(6545), 1, sym_ms_declspec_modifier, - STATE(7879), 1, + STATE(7558), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(8036), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(8742), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7020), 2, + STATE(6546), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6712), 3, + STATE(6250), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [297536] = 25, + [251717] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6224), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6222), 27, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [251754] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6228), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6226), 27, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [251791] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, + ACTIONS(5700), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10495), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10125), 1, sym_identifier, - STATE(4401), 1, + STATE(1897), 1, + sym_class_name, + STATE(2050), 1, sym_template_type, - STATE(4404), 1, + STATE(2137), 1, sym_qualified_type_identifier, - STATE(4614), 1, - sym_class_name, - STATE(4797), 1, + STATE(2191), 1, sym_field_declaration_list, - STATE(4958), 1, + STATE(2284), 1, sym_class_declaration_item, - STATE(4981), 1, + STATE(2287), 1, sym_class_declaration, - STATE(6970), 1, + STATE(6526), 1, sym_ms_declspec_modifier, - STATE(7879), 1, + STATE(7557), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(7988), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(9035), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7020), 2, + STATE(6527), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6712), 3, + STATE(6243), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [297617] = 3, + [251872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6672), 2, + ACTIONS(6342), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6670), 27, + ACTIONS(6340), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -574805,44 +535941,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [297654] = 18, + [251909] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(2259), 1, + ACTIONS(2257), 1, anon_sym_operator, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3704), 1, + ACTIONS(3251), 1, anon_sym_LPAREN2, - ACTIONS(3706), 1, + ACTIONS(3253), 1, anon_sym_TILDE, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8132), 1, - anon_sym_LBRACK, - ACTIONS(8150), 1, + ACTIONS(6533), 1, sym_identifier, - ACTIONS(8152), 1, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7760), 1, anon_sym_STAR, - ACTIONS(8154), 1, + ACTIONS(7762), 1, anon_sym_AMP_AMP, - ACTIONS(8156), 1, + ACTIONS(7764), 1, anon_sym_AMP, - STATE(7202), 1, + STATE(6740), 1, sym_scope_resolution, - STATE(7810), 1, + STATE(7148), 1, sym_declarator, - STATE(10671), 1, + STATE(9783), 1, sym_ms_based_modifier, - STATE(9982), 3, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7634), 11, + STATE(7305), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -574854,590 +535990,405 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [297721] = 25, + [251976] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10495), 1, + ACTIONS(6367), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10103), 1, sym_identifier, - STATE(4401), 1, - sym_template_type, - STATE(4404), 1, - sym_qualified_type_identifier, - STATE(4572), 1, + STATE(2410), 1, sym_class_name, - STATE(4797), 1, + STATE(2582), 1, + sym_template_type, + STATE(2598), 1, sym_field_declaration_list, - STATE(4942), 1, - sym_class_declaration, - STATE(4958), 1, + STATE(2696), 1, + sym_qualified_type_identifier, + STATE(2726), 1, sym_class_declaration_item, - STATE(6970), 1, + STATE(2734), 1, + sym_class_declaration, + STATE(6554), 1, sym_ms_declspec_modifier, - STATE(7879), 1, + STATE(7524), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(8113), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(8974), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7020), 2, + STATE(6559), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6712), 3, + STATE(6235), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [297802] = 25, + [252057] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10495), 1, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10142), 1, sym_identifier, - STATE(4401), 1, + STATE(3094), 1, sym_template_type, - STATE(4404), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(4572), 1, + STATE(3453), 1, sym_class_name, - STATE(4797), 1, - sym_field_declaration_list, - STATE(4958), 1, - sym_class_declaration_item, - STATE(4980), 1, + STATE(3687), 1, sym_class_declaration, - STATE(6970), 1, + STATE(3688), 1, + sym_class_declaration_item, + STATE(4465), 1, + sym_field_declaration_list, + STATE(6503), 1, sym_ms_declspec_modifier, - STATE(7879), 1, + STATE(7569), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(8160), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(9057), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7020), 2, + STATE(6504), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6712), 3, + STATE(6249), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [297883] = 25, + [252138] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10495), 1, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10142), 1, sym_identifier, - STATE(4401), 1, + STATE(3094), 1, sym_template_type, - STATE(4404), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(4572), 1, + STATE(3453), 1, sym_class_name, - STATE(4797), 1, - sym_field_declaration_list, - STATE(4958), 1, - sym_class_declaration_item, - STATE(4981), 1, + STATE(3600), 1, sym_class_declaration, - STATE(6970), 1, + STATE(3688), 1, + sym_class_declaration_item, + STATE(4465), 1, + sym_field_declaration_list, + STATE(6503), 1, sym_ms_declspec_modifier, - STATE(7879), 1, + STATE(7569), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(8160), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(9057), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7020), 2, + STATE(6504), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6712), 3, + STATE(6249), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [297964] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8132), 1, - anon_sym_LBRACK, - ACTIONS(8150), 1, - sym_identifier, - ACTIONS(8152), 1, - anon_sym_STAR, - ACTIONS(8154), 1, - anon_sym_AMP_AMP, - ACTIONS(8156), 1, - anon_sym_AMP, - STATE(7202), 1, - sym_scope_resolution, - STATE(7787), 1, - sym_declarator, - STATE(10671), 1, - sym_ms_based_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7634), 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, - [298031] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5502), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5500), 25, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [298068] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6676), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6674), 27, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [298105] = 25, + [252219] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10495), 1, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10099), 1, sym_identifier, - STATE(4401), 1, + STATE(3094), 1, sym_template_type, - STATE(4404), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(4593), 1, - sym_class_name, - STATE(4797), 1, - sym_field_declaration_list, - STATE(4942), 1, + STATE(3687), 1, sym_class_declaration, - STATE(4958), 1, + STATE(3688), 1, sym_class_declaration_item, - STATE(6970), 1, + STATE(4294), 1, + sym_class_name, + STATE(4465), 1, + sym_field_declaration_list, + STATE(6564), 1, sym_ms_declspec_modifier, - STATE(7879), 1, + STATE(7571), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(8160), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(9057), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7020), 2, + STATE(6569), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6712), 3, + STATE(6212), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [298186] = 25, + [252300] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10495), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(9670), 1, + anon_sym_LBRACE, + ACTIONS(10144), 1, sym_identifier, - STATE(4401), 1, + STATE(2532), 1, sym_template_type, - STATE(4404), 1, + STATE(2703), 1, sym_qualified_type_identifier, - STATE(4593), 1, + STATE(4993), 1, + sym_class_declaration, + STATE(4994), 1, + sym_class_declaration_item, + STATE(5844), 1, sym_class_name, - STATE(4797), 1, + STATE(6313), 1, sym_field_declaration_list, - STATE(4958), 1, - sym_class_declaration_item, - STATE(4980), 1, - sym_class_declaration, - STATE(6970), 1, + STATE(6533), 1, sym_ms_declspec_modifier, - STATE(7879), 1, + STATE(7572), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(7987), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(9032), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7020), 2, + STATE(6534), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6712), 3, + STATE(6221), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [298267] = 25, + [252381] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10495), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(9670), 1, + anon_sym_LBRACE, + ACTIONS(10144), 1, sym_identifier, - STATE(4401), 1, + STATE(2532), 1, sym_template_type, - STATE(4404), 1, + STATE(2703), 1, sym_qualified_type_identifier, - STATE(4593), 1, - sym_class_name, - STATE(4797), 1, - sym_field_declaration_list, - STATE(4958), 1, + STATE(4994), 1, sym_class_declaration_item, - STATE(4981), 1, + STATE(4996), 1, sym_class_declaration, - STATE(6970), 1, + STATE(5844), 1, + sym_class_name, + STATE(6313), 1, + sym_field_declaration_list, + STATE(6533), 1, sym_ms_declspec_modifier, - STATE(7879), 1, + STATE(7572), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(7987), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(9032), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7020), 2, + STATE(6534), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6712), 3, + STATE(6221), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [298348] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6588), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6586), 27, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [298385] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6310), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6308), 27, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [298422] = 25, + [252462] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10495), 1, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10142), 1, sym_identifier, - STATE(3800), 1, - sym_class_name, - STATE(4401), 1, + STATE(3094), 1, sym_template_type, - STATE(4404), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(4797), 1, - sym_field_declaration_list, - STATE(4958), 1, - sym_class_declaration_item, - STATE(4980), 1, + STATE(3453), 1, + sym_class_name, + STATE(3557), 1, sym_class_declaration, - STATE(6970), 1, + STATE(3688), 1, + sym_class_declaration_item, + STATE(4465), 1, + sym_field_declaration_list, + STATE(6503), 1, sym_ms_declspec_modifier, - STATE(7879), 1, + STATE(7569), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(8160), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(9057), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7020), 2, + STATE(6504), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6712), 3, + STATE(6249), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [298503] = 3, + [252543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6596), 2, + ACTIONS(6346), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6594), 27, + ACTIONS(6344), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -575465,872 +536416,517 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [298540] = 25, + [252580] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6116), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10523), 1, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10099), 1, sym_identifier, - STATE(2182), 1, - sym_class_name, - STATE(2486), 1, - sym_field_declaration_list, - STATE(2509), 1, + STATE(3094), 1, sym_template_type, - STATE(2589), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(2643), 1, + STATE(3600), 1, sym_class_declaration, - STATE(2644), 1, + STATE(3688), 1, sym_class_declaration_item, - STATE(7016), 1, + STATE(4294), 1, + sym_class_name, + STATE(4465), 1, + sym_field_declaration_list, + STATE(6564), 1, sym_ms_declspec_modifier, - STATE(7902), 1, + STATE(7571), 1, sym_scope_resolution, - STATE(8435), 1, + STATE(8160), 1, sym_virtual_specifier, - STATE(9380), 1, + STATE(9057), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7022), 2, + STATE(6569), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6714), 3, + STATE(6212), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [298621] = 25, + [252661] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6116), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10523), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(9670), 1, + anon_sym_LBRACE, + ACTIONS(10144), 1, sym_identifier, - STATE(2182), 1, - sym_class_name, - STATE(2486), 1, - sym_field_declaration_list, - STATE(2509), 1, + STATE(2532), 1, sym_template_type, - STATE(2589), 1, + STATE(2703), 1, sym_qualified_type_identifier, - STATE(2644), 1, + STATE(4994), 1, sym_class_declaration_item, - STATE(2646), 1, + STATE(4997), 1, sym_class_declaration, - STATE(7016), 1, + STATE(5844), 1, + sym_class_name, + STATE(6313), 1, + sym_field_declaration_list, + STATE(6533), 1, sym_ms_declspec_modifier, - STATE(7902), 1, + STATE(7572), 1, sym_scope_resolution, - STATE(8435), 1, + STATE(7987), 1, sym_virtual_specifier, - STATE(9380), 1, + STATE(9032), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7022), 2, + STATE(6534), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6714), 3, + STATE(6221), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [298702] = 25, + [252742] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6116), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10523), 1, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10099), 1, sym_identifier, - STATE(2182), 1, - sym_class_name, - STATE(2486), 1, - sym_field_declaration_list, - STATE(2509), 1, + STATE(3094), 1, sym_template_type, - STATE(2589), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(2644), 1, - sym_class_declaration_item, - STATE(2647), 1, + STATE(3557), 1, sym_class_declaration, - STATE(7016), 1, + STATE(3688), 1, + sym_class_declaration_item, + STATE(4294), 1, + sym_class_name, + STATE(4465), 1, + sym_field_declaration_list, + STATE(6564), 1, sym_ms_declspec_modifier, - STATE(7902), 1, + STATE(7571), 1, sym_scope_resolution, - STATE(8435), 1, + STATE(8160), 1, sym_virtual_specifier, - STATE(9380), 1, + STATE(9057), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7022), 2, + STATE(6569), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6714), 3, + STATE(6212), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [298783] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6604), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6602), 27, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [298820] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6600), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6598), 27, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [298857] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5498), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5496), 25, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [298894] = 25, + [252823] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(8627), 1, + ACTIONS(5700), 1, anon_sym_LBRACE, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10525), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10146), 1, sym_identifier, - STATE(4750), 1, + STATE(1897), 1, sym_class_name, - STATE(5185), 1, + STATE(2050), 1, sym_template_type, - STATE(5289), 1, + STATE(2137), 1, sym_qualified_type_identifier, - STATE(5455), 1, + STATE(2191), 1, sym_field_declaration_list, - STATE(5794), 1, + STATE(2283), 1, sym_class_declaration, - STATE(5804), 1, + STATE(2284), 1, sym_class_declaration_item, - STATE(6945), 1, + STATE(6521), 1, sym_ms_declspec_modifier, - STATE(7944), 1, + STATE(7549), 1, sym_scope_resolution, - STATE(8545), 1, + STATE(7988), 1, sym_virtual_specifier, - STATE(9535), 1, + STATE(9035), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(6959), 2, + STATE(6522), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6717), 3, + STATE(6236), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [298975] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(7920), 1, - anon_sym_DASH_GT, - ACTIONS(10103), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10106), 1, - anon_sym_LBRACK, - ACTIONS(10123), 1, - anon_sym_requires, - STATE(6953), 1, - sym_trailing_return_type, - STATE(7090), 1, - sym_function_attributes_end, - STATE(7270), 1, - sym_requires_clause, - STATE(7338), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10120), 2, - anon_sym_final, - anon_sym_override, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10101), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_try, - [299040] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10267), 1, - anon_sym___attribute__, - ACTIONS(10460), 1, - anon_sym_LBRACE, - ACTIONS(10462), 1, - anon_sym_COLON, - STATE(6750), 1, - sym_enum_base_clause, - STATE(6805), 1, - sym_enumerator_list, - STATE(6866), 1, - sym_attribute_specifier, - ACTIONS(6227), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(6225), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [299089] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(6761), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(10256), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(10530), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(6678), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(10527), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(10254), 19, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - [299134] = 25, + [252904] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(8627), 1, + ACTIONS(5700), 1, anon_sym_LBRACE, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10525), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10146), 1, sym_identifier, - STATE(4750), 1, + STATE(1897), 1, sym_class_name, - STATE(5185), 1, + STATE(2050), 1, sym_template_type, - STATE(5289), 1, + STATE(2137), 1, sym_qualified_type_identifier, - STATE(5455), 1, + STATE(2191), 1, sym_field_declaration_list, - STATE(5804), 1, + STATE(2284), 1, sym_class_declaration_item, - STATE(5805), 1, + STATE(2286), 1, sym_class_declaration, - STATE(6945), 1, + STATE(6521), 1, sym_ms_declspec_modifier, - STATE(7944), 1, + STATE(7549), 1, sym_scope_resolution, - STATE(8545), 1, + STATE(7988), 1, sym_virtual_specifier, - STATE(9535), 1, + STATE(9035), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(6959), 2, + STATE(6522), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6717), 3, + STATE(6236), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [299215] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6592), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6590), 27, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [299252] = 25, + [252985] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(8627), 1, + ACTIONS(5700), 1, anon_sym_LBRACE, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10525), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10146), 1, sym_identifier, - STATE(4750), 1, + STATE(1897), 1, sym_class_name, - STATE(5185), 1, + STATE(2050), 1, sym_template_type, - STATE(5289), 1, + STATE(2137), 1, sym_qualified_type_identifier, - STATE(5455), 1, + STATE(2191), 1, sym_field_declaration_list, - STATE(5804), 1, + STATE(2284), 1, sym_class_declaration_item, - STATE(5822), 1, + STATE(2287), 1, sym_class_declaration, - STATE(6945), 1, + STATE(6521), 1, sym_ms_declspec_modifier, - STATE(7944), 1, + STATE(7549), 1, sym_scope_resolution, - STATE(8545), 1, + STATE(7988), 1, sym_virtual_specifier, - STATE(9535), 1, + STATE(9035), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(6959), 2, + STATE(6522), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6717), 3, + STATE(6236), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [299333] = 25, + [253066] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10495), 1, + ACTIONS(6367), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10148), 1, sym_identifier, - STATE(3800), 1, + STATE(2410), 1, sym_class_name, - STATE(4401), 1, + STATE(2582), 1, sym_template_type, - STATE(4404), 1, - sym_qualified_type_identifier, - STATE(4797), 1, + STATE(2598), 1, sym_field_declaration_list, - STATE(4942), 1, + STATE(2696), 1, + sym_qualified_type_identifier, + STATE(2725), 1, sym_class_declaration, - STATE(4958), 1, + STATE(2726), 1, sym_class_declaration_item, - STATE(6970), 1, + STATE(6571), 1, sym_ms_declspec_modifier, - STATE(7879), 1, + STATE(7516), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(8113), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(8974), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7020), 2, + STATE(6449), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6712), 3, + STATE(6224), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [299414] = 17, + [253147] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(7920), 1, - anon_sym_DASH_GT, - ACTIONS(10466), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10469), 1, - anon_sym_LBRACK, - ACTIONS(10536), 1, - anon_sym_requires, - STATE(7043), 1, - sym_trailing_return_type, - STATE(7124), 1, - sym_function_attributes_end, - STATE(7270), 1, - sym_requires_clause, - STATE(7333), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10533), 2, - anon_sym_final, - anon_sym_override, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10464), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(6367), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(7552), 1, anon_sym_COLON, - anon_sym_GT2, - anon_sym_try, - [299479] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(7920), 1, - anon_sym_DASH_GT, - ACTIONS(7926), 1, - anon_sym_requires, - ACTIONS(9899), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9902), 1, - anon_sym_LBRACK, - STATE(6966), 1, - sym_trailing_return_type, - STATE(7142), 1, - sym_function_attributes_end, - STATE(7270), 1, - sym_requires_clause, - STATE(7298), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(6118), 2, + ACTIONS(10148), 1, + sym_identifier, + STATE(2410), 1, + sym_class_name, + STATE(2582), 1, + sym_template_type, + STATE(2598), 1, + sym_field_declaration_list, + STATE(2696), 1, + sym_qualified_type_identifier, + STATE(2726), 1, + sym_class_declaration_item, + STATE(2732), 1, + sym_class_declaration, + STATE(6571), 1, + sym_ms_declspec_modifier, + STATE(7516), 1, + sym_scope_resolution, + STATE(8113), 1, + sym_virtual_specifier, + STATE(8974), 1, + sym_base_class_clause, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, + STATE(6449), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(9897), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_try, - [299544] = 3, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6224), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [253228] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6606), 27, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [299581] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(4853), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACE, - ACTIONS(6197), 25, - anon_sym___extension__, + ACTIONS(5747), 1, anon_sym___attribute__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(6367), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, anon_sym_COLON, + ACTIONS(10148), 1, sym_identifier, - sym_auto, - anon_sym_decltype, + STATE(2410), 1, + sym_class_name, + STATE(2582), 1, + sym_template_type, + STATE(2598), 1, + sym_field_declaration_list, + STATE(2696), 1, + sym_qualified_type_identifier, + STATE(2726), 1, + sym_class_declaration_item, + STATE(2734), 1, + sym_class_declaration, + STATE(6571), 1, + sym_ms_declspec_modifier, + STATE(7516), 1, + sym_scope_resolution, + STATE(8113), 1, + sym_virtual_specifier, + STATE(8974), 1, + sym_base_class_clause, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - [299620] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6114), 1, - anon_sym___attribute__, - ACTIONS(6241), 1, - anon_sym_LBRACE, - ACTIONS(10519), 1, - anon_sym_COLON, - STATE(2439), 1, - sym_enum_base_clause, - STATE(2517), 1, - sym_enumerator_list, - STATE(2604), 1, + STATE(6449), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6224), 3, sym_attribute_specifier, - ACTIONS(6233), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6235), 21, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - sym_semgrep_metavar, - [299669] = 3, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [253309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6640), 2, + ACTIONS(6272), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6638), 27, + ACTIONS(6270), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -576358,84 +536954,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [299706] = 3, + [253346] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4827), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4835), 27, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [299743] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(10517), 1, - anon_sym_LT, - STATE(6732), 1, - sym_template_argument_list, - ACTIONS(4853), 3, + ACTIONS(3251), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACE, - ACTIONS(6197), 23, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_COLON, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7827), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - [299786] = 3, + ACTIONS(7829), 1, + anon_sym_STAR, + ACTIONS(7831), 1, + anon_sym_AMP_AMP, + ACTIONS(7833), 1, + anon_sym_AMP, + STATE(6710), 1, + sym_scope_resolution, + STATE(7451), 1, + sym_declarator, + STATE(9538), 1, + sym_ms_based_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + [253413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6688), 2, + ACTIONS(5989), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6686), 27, + ACTIONS(5987), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -576463,915 +537037,580 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [299823] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3658), 10, - 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_EQ, - anon_sym_GT2, - ACTIONS(3656), 18, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [299859] = 24, + [253450] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(8457), 1, - anon_sym_LBRACE, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10489), 1, - sym_identifier, - STATE(4375), 1, - sym_class_name, - STATE(4742), 1, - sym_template_type, - STATE(4822), 1, - sym_qualified_type_identifier, - STATE(5069), 1, - sym_field_declaration_list, - STATE(5225), 1, - sym_class_declaration_item, - STATE(7052), 1, - sym_ms_declspec_modifier, - STATE(7922), 1, - sym_scope_resolution, - STATE(8308), 1, - sym_virtual_specifier, - STATE(9440), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(7050), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(7487), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym_class_declaration_repeat1, - [299937] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(6082), 1, + ACTIONS(6910), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(10133), 1, - anon_sym___attribute__, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, - anon_sym___declspec, - ACTIONS(10139), 1, - anon_sym_alignas, - ACTIONS(10491), 1, + ACTIONS(10150), 1, sym_identifier, - STATE(2114), 1, + STATE(2782), 1, sym_class_name, - STATE(2457), 1, + STATE(2931), 1, sym_template_type, - STATE(2460), 1, + STATE(3099), 1, sym_qualified_type_identifier, - STATE(2686), 1, + STATE(3302), 1, sym_field_declaration_list, - STATE(2930), 1, + STATE(3622), 1, + sym_class_declaration, + STATE(3623), 1, sym_class_declaration_item, - STATE(7064), 1, + STATE(6465), 1, sym_ms_declspec_modifier, - STATE(7937), 1, + STATE(7552), 1, sym_scope_resolution, - STATE(8323), 1, + STATE(8173), 1, sym_virtual_specifier, - STATE(9503), 1, + STATE(9082), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7063), 2, + STATE(6466), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(7487), 3, + STATE(6227), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [300015] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6788), 1, - anon_sym___attribute__, - ACTIONS(7114), 1, - anon_sym_LBRACE, - ACTIONS(10539), 1, - anon_sym_COLON, - STATE(3025), 1, - sym_enum_base_clause, - STATE(3139), 1, - sym_enumerator_list, - STATE(3487), 1, - sym_attribute_specifier, - ACTIONS(6233), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6235), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [300063] = 24, + [253531] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6151), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10493), 1, + ACTIONS(6910), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10150), 1, sym_identifier, - STATE(2223), 1, + STATE(2782), 1, sym_class_name, - STATE(2598), 1, + STATE(2931), 1, sym_template_type, - STATE(2719), 1, + STATE(3099), 1, sym_qualified_type_identifier, - STATE(2926), 1, + STATE(3302), 1, sym_field_declaration_list, - STATE(3116), 1, + STATE(3623), 1, sym_class_declaration_item, - STATE(7002), 1, + STATE(3631), 1, + sym_class_declaration, + STATE(6465), 1, sym_ms_declspec_modifier, - STATE(7936), 1, + STATE(7552), 1, sym_scope_resolution, - STATE(8336), 1, + STATE(8173), 1, sym_virtual_specifier, - STATE(9564), 1, + STATE(9082), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7001), 2, + STATE(6466), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(7487), 3, + STATE(6227), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [300141] = 24, + [253612] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6803), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10473), 1, + ACTIONS(6910), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10150), 1, sym_identifier, - STATE(2745), 1, + STATE(2782), 1, sym_class_name, - STATE(3135), 1, + STATE(2931), 1, sym_template_type, - STATE(3434), 1, + STATE(3099), 1, sym_qualified_type_identifier, - STATE(3726), 1, + STATE(3302), 1, sym_field_declaration_list, - STATE(3960), 1, + STATE(3623), 1, sym_class_declaration_item, - STATE(6963), 1, + STATE(3634), 1, + sym_class_declaration, + STATE(6465), 1, sym_ms_declspec_modifier, - STATE(7909), 1, + STATE(7552), 1, sym_scope_resolution, - STATE(8193), 1, + STATE(8173), 1, sym_virtual_specifier, - STATE(9509), 1, + STATE(9082), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(6962), 2, + STATE(6466), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(7487), 3, + STATE(6227), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [300219] = 24, + [253693] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(33), 1, + anon_sym_AMP_AMP, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3255), 1, + anon_sym_STAR, + ACTIONS(3257), 1, + anon_sym_AMP, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6116), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, - anon_sym___attribute__, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, - anon_sym___declspec, - ACTIONS(10139), 1, - anon_sym_alignas, - ACTIONS(10504), 1, + ACTIONS(5741), 1, sym_identifier, - STATE(2182), 1, - sym_class_name, - STATE(2486), 1, - sym_field_declaration_list, - STATE(2509), 1, - sym_template_type, - STATE(2583), 1, - sym_class_declaration_item, - STATE(2589), 1, - sym_qualified_type_identifier, - STATE(7057), 1, - sym_ms_declspec_modifier, - STATE(7886), 1, + ACTIONS(7758), 1, + anon_sym_LBRACK, + STATE(6786), 1, sym_scope_resolution, - STATE(8435), 1, - sym_virtual_specifier, - STATE(9380), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(7056), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(7582), 1, + sym_declarator, + STATE(9481), 1, + sym_ms_based_modifier, + STATE(9605), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - STATE(7487), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym_class_declaration_repeat1, - [300297] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8100), 1, - anon_sym_DASH_GT, - ACTIONS(10469), 1, - anon_sym_LBRACK, - ACTIONS(10544), 1, - anon_sym_requires, - STATE(7242), 1, - sym_function_attributes_end, - STATE(7410), 1, - sym_trailing_return_type, - STATE(7422), 1, - sym_requires_clause, - STATE(7462), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10541), 2, - anon_sym_final, - anon_sym_override, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10464), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [300361] = 24, + STATE(7305), 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, + [253760] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6790), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10471), 1, - sym_identifier, - STATE(2739), 1, - sym_class_name, - STATE(3011), 1, - sym_template_type, - STATE(3140), 1, - sym_qualified_type_identifier, - STATE(3284), 1, - sym_field_declaration_list, - STATE(3482), 1, - sym_class_declaration_item, - STATE(6941), 1, - sym_ms_declspec_modifier, - STATE(7878), 1, - sym_scope_resolution, - STATE(8497), 1, - sym_virtual_specifier, - STATE(9538), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(6940), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(7487), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym_class_declaration_repeat1, - [300439] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(6620), 1, + ACTIONS(7550), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(10133), 1, - anon_sym___attribute__, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, - anon_sym___declspec, - ACTIONS(10139), 1, - anon_sym_alignas, - ACTIONS(10479), 1, + ACTIONS(10099), 1, sym_identifier, - STATE(2618), 1, - sym_class_name, - STATE(2905), 1, + STATE(3094), 1, sym_template_type, - STATE(3047), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(3311), 1, - sym_field_declaration_list, - STATE(3698), 1, + STATE(3453), 1, + sym_class_name, + STATE(3600), 1, + sym_class_declaration, + STATE(3688), 1, sym_class_declaration_item, - STATE(7005), 1, + STATE(4465), 1, + sym_field_declaration_list, + STATE(6564), 1, sym_ms_declspec_modifier, - STATE(7873), 1, + STATE(7571), 1, sym_scope_resolution, - STATE(8250), 1, + STATE(8160), 1, sym_virtual_specifier, - STATE(9154), 1, + STATE(9057), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7004), 2, + STATE(6569), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(7487), 3, + STATE(6212), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [300517] = 24, + [253841] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6790), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, - anon_sym___attribute__, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, - anon_sym___declspec, - ACTIONS(10139), 1, - anon_sym_alignas, - ACTIONS(10521), 1, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7827), 1, sym_identifier, - STATE(2739), 1, - sym_class_name, - STATE(3011), 1, - sym_template_type, - STATE(3140), 1, - sym_qualified_type_identifier, - STATE(3284), 1, - sym_field_declaration_list, - STATE(3482), 1, - sym_class_declaration_item, - STATE(7009), 1, - sym_ms_declspec_modifier, - STATE(7876), 1, + ACTIONS(7829), 1, + anon_sym_STAR, + ACTIONS(7831), 1, + anon_sym_AMP_AMP, + ACTIONS(7833), 1, + anon_sym_AMP, + STATE(6710), 1, sym_scope_resolution, - STATE(8497), 1, - sym_virtual_specifier, + STATE(7391), 1, + sym_declarator, STATE(9538), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(7007), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + sym_ms_based_modifier, + STATE(9605), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - STATE(7487), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym_class_declaration_repeat1, - [300595] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6788), 1, - anon_sym___attribute__, - ACTIONS(7114), 1, - anon_sym_LBRACE, - ACTIONS(10539), 1, - anon_sym_COLON, - STATE(3019), 1, - sym_enum_base_clause, - STATE(3115), 1, - sym_enumerator_list, - STATE(3480), 1, - sym_attribute_specifier, - ACTIONS(6225), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6227), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [300643] = 24, + STATE(7305), 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, + [253908] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6450), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10508), 1, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10127), 1, sym_identifier, - STATE(2516), 1, - sym_class_name, - STATE(2765), 1, + STATE(3094), 1, sym_template_type, - STATE(2887), 1, + STATE(3322), 1, sym_qualified_type_identifier, - STATE(3101), 1, - sym_field_declaration_list, - STATE(3568), 1, + STATE(3600), 1, + sym_class_declaration, + STATE(3688), 1, sym_class_declaration_item, - STATE(6949), 1, + STATE(4009), 1, + sym_class_name, + STATE(4469), 1, + sym_field_declaration_list, + STATE(6558), 1, sym_ms_declspec_modifier, - STATE(7915), 1, + STATE(7551), 1, sym_scope_resolution, - STATE(8356), 1, + STATE(8157), 1, sym_virtual_specifier, - STATE(9156), 1, + STATE(9050), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(6942), 2, + STATE(6560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(7487), 3, + STATE(6241), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [300721] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8100), 1, - anon_sym_DASH_GT, - ACTIONS(8104), 1, - anon_sym_requires, - ACTIONS(9902), 1, - anon_sym_LBRACK, - STATE(7243), 1, - sym_function_attributes_end, - STATE(7346), 1, - sym_trailing_return_type, - STATE(7422), 1, - sym_requires_clause, - STATE(7479), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8102), 2, - anon_sym_final, - anon_sym_override, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(9897), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [300785] = 24, + [253989] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10495), 1, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10099), 1, sym_identifier, - STATE(4401), 1, + STATE(3094), 1, sym_template_type, - STATE(4797), 1, - sym_field_declaration_list, - STATE(4838), 1, + STATE(3098), 1, + sym_qualified_type_identifier, + STATE(3453), 1, sym_class_name, - STATE(4960), 1, + STATE(3557), 1, + sym_class_declaration, + STATE(3688), 1, sym_class_declaration_item, - STATE(5389), 1, - sym_qualified_type_identifier, - STATE(6957), 1, + STATE(4465), 1, + sym_field_declaration_list, + STATE(6564), 1, sym_ms_declspec_modifier, - STATE(7903), 1, + STATE(7571), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(8160), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(9057), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(6956), 2, + STATE(6569), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(7487), 3, + STATE(6212), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [300863] = 9, + [254070] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_LBRACE, - ACTIONS(7896), 1, - anon_sym_LPAREN2, - STATE(2108), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3134), 1, - sym_argument_list, - STATE(3173), 1, - sym_initializer_list, - ACTIONS(4827), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6060), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4835), 17, - anon_sym_STAR, + ACTIONS(33), 1, anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - sym_semgrep_metavar, - [300911] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3255), 1, + anon_sym_STAR, + ACTIONS(3257), 1, + anon_sym_AMP, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, - anon_sym___attribute__, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, - anon_sym___declspec, - ACTIONS(10139), 1, - anon_sym_alignas, - ACTIONS(10269), 1, - anon_sym_LBRACE, - ACTIONS(10506), 1, + ACTIONS(5741), 1, sym_identifier, - STATE(6327), 1, - sym_class_name, - STATE(6686), 1, - sym_template_type, - STATE(6723), 1, - sym_qualified_type_identifier, - STATE(6790), 1, - sym_field_declaration_list, - STATE(6862), 1, - sym_class_declaration_item, - STATE(7023), 1, - sym_ms_declspec_modifier, - STATE(7896), 1, + ACTIONS(7758), 1, + anon_sym_LBRACK, + STATE(6786), 1, sym_scope_resolution, - STATE(8433), 1, - sym_virtual_specifier, - STATE(9360), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(7067), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(7451), 1, + sym_declarator, + STATE(9481), 1, + sym_ms_based_modifier, + STATE(9605), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - STATE(7487), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym_class_declaration_repeat1, - [300989] = 24, + STATE(7305), 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, + [254137] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(8311), 1, - anon_sym_LBRACE, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10483), 1, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10127), 1, sym_identifier, - STATE(4246), 1, - sym_class_name, - STATE(4364), 1, + STATE(3094), 1, sym_template_type, - STATE(4501), 1, + STATE(3322), 1, sym_qualified_type_identifier, - STATE(4689), 1, - sym_field_declaration_list, - STATE(4826), 1, + STATE(3557), 1, + sym_class_declaration, + STATE(3688), 1, sym_class_declaration_item, - STATE(7018), 1, + STATE(4009), 1, + sym_class_name, + STATE(4469), 1, + sym_field_declaration_list, + STATE(6558), 1, sym_ms_declspec_modifier, - STATE(7904), 1, + STATE(7551), 1, sym_scope_resolution, - STATE(8223), 1, + STATE(8157), 1, sym_virtual_specifier, - STATE(9383), 1, + STATE(9050), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7017), 2, + STATE(6560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(7487), 3, + STATE(6241), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [301067] = 3, + [254218] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5467), 4, + ACTIONS(5455), 1, anon_sym_LPAREN2, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(9688), 1, + anon_sym_const, + ACTIONS(9993), 1, anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(5460), 24, + ACTIONS(9995), 1, + anon_sym_AMP_AMP, + ACTIONS(9997), 1, + anon_sym_AMP, + STATE(4453), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7730), 1, + sym_abstract_declarator, + ACTIONS(7388), 2, + anon_sym_RPAREN, + sym_semgrep_metavar, + STATE(6335), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9686), 11, anon_sym___extension__, - anon_sym___attribute__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -577382,632 +537621,581 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [301103] = 24, + [254277] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10096), 1, - anon_sym_LBRACE, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10485), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(8314), 1, + anon_sym_LBRACE, + ACTIONS(10121), 1, sym_identifier, - STATE(6239), 1, + STATE(2532), 1, sym_template_type, - STATE(6265), 1, - sym_class_name, - STATE(6285), 1, + STATE(2703), 1, sym_qualified_type_identifier, - STATE(6371), 1, + STATE(4441), 1, + sym_class_name, + STATE(4936), 1, sym_field_declaration_list, - STATE(6574), 1, + STATE(5281), 1, + sym_class_declaration, + STATE(5286), 1, sym_class_declaration_item, - STATE(7030), 1, + STATE(6572), 1, sym_ms_declspec_modifier, - STATE(7920), 1, + STATE(7574), 1, sym_scope_resolution, - STATE(8271), 1, + STATE(8086), 1, sym_virtual_specifier, - STATE(9243), 1, + STATE(8905), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7029), 2, + STATE(6573), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(7487), 3, + STATE(6240), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [301181] = 24, + [254358] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10495), 1, + ACTIONS(6934), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10152), 1, sym_identifier, - STATE(3800), 1, + STATE(2805), 1, sym_class_name, - STATE(4401), 1, + STATE(3076), 1, sym_template_type, - STATE(4404), 1, + STATE(3176), 1, sym_qualified_type_identifier, - STATE(4797), 1, + STATE(3339), 1, sym_field_declaration_list, - STATE(4960), 1, + STATE(3840), 1, + sym_class_declaration, + STATE(3841), 1, sym_class_declaration_item, - STATE(6978), 1, + STATE(6459), 1, sym_ms_declspec_modifier, - STATE(7879), 1, + STATE(7542), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(8118), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(8985), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7049), 2, + STATE(6460), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(7487), 3, + STATE(6215), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [301259] = 17, + [254439] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8100), 1, - anon_sym_DASH_GT, - ACTIONS(8104), 1, - anon_sym_requires, - ACTIONS(10469), 1, - anon_sym_LBRACK, - STATE(7245), 1, - sym_function_attributes_end, - STATE(7415), 1, - sym_trailing_return_type, - STATE(7422), 1, - sym_requires_clause, - STATE(7462), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8102), 2, - anon_sym_final, - anon_sym_override, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10464), 8, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(33), 1, + anon_sym_AMP_AMP, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [301323] = 24, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3255), 1, + anon_sym_STAR, + ACTIONS(3257), 1, + anon_sym_AMP, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5741), 1, + sym_identifier, + ACTIONS(7758), 1, + anon_sym_LBRACK, + STATE(6786), 1, + sym_scope_resolution, + STATE(7651), 1, + sym_declarator, + STATE(9481), 1, + sym_ms_based_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + [254506] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6116), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10523), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(9670), 1, + anon_sym_LBRACE, + ACTIONS(10109), 1, sym_identifier, - STATE(2182), 1, - sym_class_name, - STATE(2486), 1, - sym_field_declaration_list, - STATE(2509), 1, + STATE(3094), 1, sym_template_type, - STATE(2583), 1, - sym_class_declaration_item, - STATE(2589), 1, + STATE(3322), 1, sym_qualified_type_identifier, - STATE(7054), 1, + STATE(4993), 1, + sym_class_declaration, + STATE(4994), 1, + sym_class_declaration_item, + STATE(5620), 1, + sym_class_name, + STATE(5797), 1, + sym_field_declaration_list, + STATE(6511), 1, sym_ms_declspec_modifier, - STATE(7902), 1, + STATE(7521), 1, sym_scope_resolution, - STATE(8435), 1, + STATE(8125), 1, sym_virtual_specifier, - STATE(9380), 1, + STATE(9001), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7051), 2, + STATE(6512), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(7487), 3, + STATE(6220), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [301401] = 17, + [254587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8100), 1, - anon_sym_DASH_GT, - ACTIONS(8104), 1, - anon_sym_requires, - ACTIONS(10106), 1, + ACTIONS(6276), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6274), 27, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(7248), 1, - sym_function_attributes_end, - STATE(7381), 1, - sym_trailing_return_type, - STATE(7422), 1, - sym_requires_clause, - STATE(7444), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8102), 2, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10101), 8, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [254624] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6401), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6399), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [301465] = 24, + anon_sym_requires, + [254661] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(7971), 1, - anon_sym_LBRACE, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10487), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(9670), 1, + anon_sym_LBRACE, + ACTIONS(10109), 1, sym_identifier, - STATE(3896), 1, - sym_class_name, - STATE(4514), 1, + STATE(3094), 1, sym_template_type, - STATE(4585), 1, + STATE(3322), 1, sym_qualified_type_identifier, - STATE(4775), 1, - sym_field_declaration_list, - STATE(5075), 1, + STATE(4994), 1, sym_class_declaration_item, - STATE(7039), 1, + STATE(4996), 1, + sym_class_declaration, + STATE(5620), 1, + sym_class_name, + STATE(5797), 1, + sym_field_declaration_list, + STATE(6511), 1, sym_ms_declspec_modifier, - STATE(7908), 1, + STATE(7521), 1, sym_scope_resolution, - STATE(8292), 1, + STATE(8125), 1, sym_virtual_specifier, - STATE(9323), 1, + STATE(9001), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7038), 2, + STATE(6512), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(7487), 3, + STATE(6220), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [301543] = 24, + [254742] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(8627), 1, - anon_sym_LBRACE, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10525), 1, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10099), 1, sym_identifier, - STATE(4750), 1, - sym_class_name, - STATE(5185), 1, + STATE(3094), 1, sym_template_type, - STATE(5289), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(5455), 1, - sym_field_declaration_list, - STATE(5734), 1, + STATE(3687), 1, + sym_class_declaration, + STATE(3688), 1, sym_class_declaration_item, - STATE(6985), 1, + STATE(4285), 1, + sym_class_name, + STATE(4465), 1, + sym_field_declaration_list, + STATE(6564), 1, sym_ms_declspec_modifier, - STATE(7944), 1, + STATE(7571), 1, sym_scope_resolution, - STATE(8545), 1, + STATE(8160), 1, sym_virtual_specifier, - STATE(9535), 1, + STATE(9057), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(6984), 2, + STATE(6569), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(7487), 3, + STATE(6212), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [301621] = 24, + [254823] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(8311), 1, - anon_sym_LBRACE, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10481), 1, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10099), 1, sym_identifier, - STATE(4246), 1, - sym_class_name, - STATE(4364), 1, + STATE(3094), 1, sym_template_type, - STATE(4501), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(4689), 1, - sym_field_declaration_list, - STATE(4826), 1, + STATE(3600), 1, + sym_class_declaration, + STATE(3688), 1, sym_class_declaration_item, - STATE(7040), 1, + STATE(4285), 1, + sym_class_name, + STATE(4465), 1, + sym_field_declaration_list, + STATE(6564), 1, sym_ms_declspec_modifier, - STATE(7904), 1, + STATE(7571), 1, sym_scope_resolution, - STATE(8223), 1, + STATE(8160), 1, sym_virtual_specifier, - STATE(9383), 1, + STATE(9057), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7028), 2, + STATE(6569), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(7487), 3, + STATE(6212), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [301699] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8100), 1, - anon_sym_DASH_GT, - ACTIONS(10106), 1, - anon_sym_LBRACK, - ACTIONS(10144), 1, - anon_sym_requires, - STATE(7251), 1, - sym_function_attributes_end, - STATE(7408), 1, - sym_trailing_return_type, - STATE(7422), 1, - sym_requires_clause, - STATE(7444), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10141), 2, - anon_sym_final, - anon_sym_override, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10101), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [301763] = 24, + [254904] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6718), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10477), 1, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10099), 1, sym_identifier, - STATE(2676), 1, - sym_class_name, - STATE(3010), 1, + STATE(3094), 1, sym_template_type, - STATE(3184), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(3525), 1, - sym_field_declaration_list, - STATE(3922), 1, + STATE(3557), 1, + sym_class_declaration, + STATE(3688), 1, sym_class_declaration_item, - STATE(6983), 1, + STATE(4285), 1, + sym_class_name, + STATE(4465), 1, + sym_field_declaration_list, + STATE(6564), 1, sym_ms_declspec_modifier, - STATE(7917), 1, + STATE(7571), 1, sym_scope_resolution, - STATE(8224), 1, + STATE(8160), 1, sym_virtual_specifier, - STATE(9384), 1, + STATE(9057), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(6982), 2, + STATE(6569), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(7487), 3, + STATE(6212), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [301841] = 7, + [254985] = 18, ACTIONS(3), 1, sym_comment, - STATE(6796), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(10550), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(6721), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(10547), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(10256), 4, - anon_sym_DOT_DOT_DOT, + ACTIONS(33), 1, + anon_sym_AMP_AMP, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3255), 1, anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(10254), 16, + ACTIONS(3257), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5741), 1, sym_identifier, - anon_sym_operator, - [301885] = 17, + ACTIONS(7758), 1, + anon_sym_LBRACK, + STATE(6786), 1, + sym_scope_resolution, + STATE(7632), 1, + sym_declarator, + STATE(9481), 1, + sym_ms_based_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + [255052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8100), 1, - anon_sym_DASH_GT, - ACTIONS(9902), 1, - anon_sym_LBRACK, - ACTIONS(10055), 1, - anon_sym_requires, - STATE(7250), 1, - sym_function_attributes_end, - STATE(7391), 1, - sym_trailing_return_type, - STATE(7422), 1, - sym_requires_clause, - STATE(7479), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10052), 2, - anon_sym_final, - anon_sym_override, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(9897), 8, + ACTIONS(6016), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6018), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [301949] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4853), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(6197), 24, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -578018,129 +538206,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - [301985] = 24, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [255089] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6132), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10133), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10137), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(10139), 1, + ACTIONS(5755), 1, anon_sym_alignas, - ACTIONS(10475), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(9670), 1, + anon_sym_LBRACE, + ACTIONS(10109), 1, sym_identifier, - STATE(2190), 1, - sym_class_name, - STATE(2515), 1, + STATE(3094), 1, sym_template_type, - STATE(2599), 1, + STATE(3322), 1, sym_qualified_type_identifier, - STATE(2717), 1, - sym_field_declaration_list, - STATE(2832), 1, + STATE(4994), 1, sym_class_declaration_item, - STATE(7048), 1, + STATE(4997), 1, + sym_class_declaration, + STATE(5620), 1, + sym_class_name, + STATE(5797), 1, + sym_field_declaration_list, + STATE(6511), 1, sym_ms_declspec_modifier, - STATE(7919), 1, + STATE(7521), 1, sym_scope_resolution, - STATE(8434), 1, + STATE(8125), 1, sym_virtual_specifier, - STATE(9373), 1, + STATE(9001), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7044), 2, + STATE(6512), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(7487), 3, + STATE(6220), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym_class_declaration_repeat1, - [302063] = 17, + [255170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8334), 1, - anon_sym_DASH_GT, - ACTIONS(9899), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9902), 1, - anon_sym_LBRACK, - ACTIONS(9995), 1, - anon_sym_requires, - ACTIONS(10082), 1, - anon_sym___attribute__, - STATE(7031), 1, - sym_trailing_return_type, - STATE(7220), 1, - sym_function_attributes_end, - STATE(7270), 1, - sym_requires_clause, - STATE(7298), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9992), 2, - anon_sym_final, - anon_sym_override, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(9897), 7, + ACTIONS(6288), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6286), 27, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [302126] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5479), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5477), 23, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -578151,177 +538296,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_COLON, - sym_identifier, sym_auto, anon_sym_decltype, - [302161] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [255207] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3658), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, + anon_sym_LPAREN2, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(3656), 26, - anon_sym___extension__, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7827), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - [302196] = 4, + ACTIONS(7829), 1, + anon_sym_STAR, + ACTIONS(7831), 1, + anon_sym_AMP_AMP, + ACTIONS(7833), 1, + anon_sym_AMP, + STATE(6710), 1, + sym_scope_resolution, + STATE(7426), 1, + sym_declarator, + STATE(9538), 1, + sym_ms_based_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + [255274] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(5467), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACE, - ACTIONS(5460), 23, - anon_sym___extension__, + ACTIONS(5747), 1, anon_sym___attribute__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(6894), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, anon_sym_COLON, + ACTIONS(10133), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - [302233] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8327), 1, - anon_sym_DASH_GT, - ACTIONS(8329), 1, - anon_sym_requires, - ACTIONS(9902), 1, - anon_sym_LBRACK, - STATE(7268), 1, - sym_function_attributes_end, - STATE(7422), 1, - sym_requires_clause, - STATE(7479), 1, - sym_function_postfix, - STATE(7481), 1, - sym_trailing_return_type, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8102), 2, + STATE(2772), 1, + sym_class_name, + STATE(2919), 1, + sym_template_type, + STATE(3097), 1, + sym_qualified_type_identifier, + STATE(3102), 1, + sym_field_declaration_list, + STATE(3297), 1, + sym_class_declaration, + STATE(3298), 1, + sym_class_declaration_item, + STATE(6545), 1, + sym_ms_declspec_modifier, + STATE(7558), 1, + sym_scope_resolution, + STATE(8036), 1, + sym_virtual_specifier, + STATE(8742), 1, + sym_base_class_clause, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, + STATE(6546), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(9897), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - sym_semgrep_metavar, - [302296] = 4, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6250), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [255355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(4853), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACE, - ACTIONS(6197), 23, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + ACTIONS(6195), 2, + anon_sym_AMP, anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - [302333] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10267), 1, - anon_sym___attribute__, - ACTIONS(10460), 1, - anon_sym_LBRACE, - STATE(6804), 1, - sym_enumerator_list, - STATE(6837), 1, - sym_attribute_specifier, - ACTIONS(6308), 2, + ACTIONS(6193), 27, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(6310), 21, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -578332,27 +538435,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - sym_identifier, sym_auto, anon_sym_decltype, - [302376] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [255392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5525), 4, + ACTIONS(4763), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4771), 27, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5518), 23, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym___attribute__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -578363,138 +538469,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_COLON, - sym_identifier, sym_auto, anon_sym_decltype, - [302411] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7926), 1, - anon_sym_requires, - ACTIONS(8334), 1, - anon_sym_DASH_GT, - ACTIONS(10103), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10106), 1, - anon_sym_LBRACK, - ACTIONS(10251), 1, - anon_sym___attribute__, - STATE(7033), 1, - sym_trailing_return_type, - STATE(7228), 1, - sym_function_attributes_end, - STATE(7270), 1, - sym_requires_clause, - STATE(7338), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(6118), 2, anon_sym_final, anon_sym_override, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10101), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, + anon_sym_GT2, anon_sym_try, - [302474] = 3, + anon_sym_requires, + [255429] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5483), 4, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5481), 23, - anon_sym___extension__, + ACTIONS(5747), 1, anon_sym___attribute__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(6934), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, anon_sym_COLON, + ACTIONS(10152), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - [302509] = 3, + STATE(2805), 1, + sym_class_name, + STATE(3076), 1, + sym_template_type, + STATE(3176), 1, + sym_qualified_type_identifier, + STATE(3339), 1, + sym_field_declaration_list, + STATE(3841), 1, + sym_class_declaration_item, + STATE(3845), 1, + sym_class_declaration, + STATE(6459), 1, + sym_ms_declspec_modifier, + STATE(7542), 1, + sym_scope_resolution, + STATE(8118), 1, + sym_virtual_specifier, + STATE(8985), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6460), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6215), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [255510] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5502), 4, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3251), 1, anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5500), 23, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_COLON, + ACTIONS(6533), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - [302544] = 3, + ACTIONS(7758), 1, + anon_sym_LBRACK, + ACTIONS(7821), 1, + anon_sym_STAR, + ACTIONS(7823), 1, + anon_sym_AMP_AMP, + ACTIONS(7825), 1, + anon_sym_AMP, + STATE(6704), 1, + sym_scope_resolution, + STATE(7166), 1, + sym_declarator, + STATE(9963), 1, + sym_ms_based_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7305), 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, + [255577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5498), 4, + ACTIONS(6292), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6290), 27, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5496), 23, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym___attribute__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -578505,114 +538608,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_COLON, - sym_identifier, sym_auto, anon_sym_decltype, - [302579] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7926), 1, - anon_sym_requires, - ACTIONS(8334), 1, - anon_sym_DASH_GT, - ACTIONS(9899), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9902), 1, - anon_sym_LBRACK, - ACTIONS(10082), 1, - anon_sym___attribute__, - STATE(6966), 1, - sym_trailing_return_type, - STATE(7213), 1, - sym_function_attributes_end, - STATE(7270), 1, - sym_requires_clause, - STATE(7298), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(6118), 2, anon_sym_final, anon_sym_override, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(9897), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, + anon_sym_GT2, anon_sym_try, - [302642] = 17, + anon_sym_requires, + [255614] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(7926), 1, - anon_sym_requires, - ACTIONS(8325), 1, - anon_sym_DASH_GT, - ACTIONS(10103), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10106), 1, - anon_sym_LBRACK, - STATE(7033), 1, - sym_trailing_return_type, - STATE(7098), 1, - sym_function_attributes_end, - STATE(7270), 1, - sym_requires_clause, - STATE(7338), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(6118), 2, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(6934), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10152), 1, + sym_identifier, + STATE(2805), 1, + sym_class_name, + STATE(3076), 1, + sym_template_type, + STATE(3176), 1, + sym_qualified_type_identifier, + STATE(3339), 1, + sym_field_declaration_list, + STATE(3841), 1, + sym_class_declaration_item, + STATE(3847), 1, + sym_class_declaration, + STATE(6459), 1, + sym_ms_declspec_modifier, + STATE(7542), 1, + sym_scope_resolution, + STATE(8118), 1, + sym_virtual_specifier, + STATE(8985), 1, + sym_base_class_clause, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - ACTIONS(10271), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, + STATE(6460), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10101), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [302705] = 3, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6215), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [255695] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5509), 4, + ACTIONS(43), 1, + anon_sym___attribute__, + ACTIONS(9692), 1, + anon_sym_LBRACE, + ACTIONS(10105), 1, + anon_sym_COLON, + STATE(5013), 1, + sym_attribute_specifier, + STATE(6258), 1, + sym_enum_base_clause, + STATE(6329), 1, + sym_enumerator_list, + ACTIONS(6516), 2, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5507), 23, + ACTIONS(6514), 21, anon_sym___extension__, - anon_sym___attribute__, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -578630,478 +538708,459 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constinit, anon_sym_consteval, sym_primitive_type, - anon_sym_COLON, sym_identifier, sym_auto, anon_sym_decltype, - [302740] = 3, + [255744] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5513), 4, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5511), 23, - anon_sym___extension__, + ACTIONS(5747), 1, anon_sym___attribute__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7552), 1, anon_sym_COLON, + ACTIONS(8083), 1, + anon_sym_LBRACE, + ACTIONS(10129), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - [302775] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7926), 1, - anon_sym_requires, - ACTIONS(8334), 1, - anon_sym_DASH_GT, - ACTIONS(10466), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10469), 1, - anon_sym_LBRACK, - ACTIONS(10553), 1, - anon_sym___attribute__, - STATE(6933), 1, - sym_trailing_return_type, - STATE(7185), 1, - sym_function_attributes_end, - STATE(7270), 1, - sym_requires_clause, - STATE(7333), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(6118), 2, + STATE(4007), 1, + sym_class_name, + STATE(4400), 1, + sym_template_type, + STATE(4457), 1, + sym_qualified_type_identifier, + STATE(4627), 1, + sym_field_declaration_list, + STATE(4781), 1, + sym_class_declaration, + STATE(4796), 1, + sym_class_declaration_item, + STATE(6486), 1, + sym_ms_declspec_modifier, + STATE(7545), 1, + sym_scope_resolution, + STATE(7916), 1, + sym_virtual_specifier, + STATE(8693), 1, + sym_base_class_clause, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, + STATE(6487), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10464), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [302838] = 17, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6216), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [255825] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(7926), 1, - anon_sym_requires, - ACTIONS(8325), 1, - anon_sym_DASH_GT, - ACTIONS(10466), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10469), 1, - anon_sym_LBRACK, - STATE(6933), 1, - sym_trailing_return_type, - STATE(7167), 1, - sym_function_attributes_end, - STATE(7270), 1, - sym_requires_clause, - STATE(7333), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(6118), 2, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10099), 1, + sym_identifier, + STATE(3094), 1, + sym_template_type, + STATE(3098), 1, + sym_qualified_type_identifier, + STATE(3453), 1, + sym_class_name, + STATE(3579), 1, + sym_class_declaration_item, + STATE(4465), 1, + sym_field_declaration_list, + STATE(6498), 1, + sym_ms_declspec_modifier, + STATE(7571), 1, + sym_scope_resolution, + STATE(8160), 1, + sym_virtual_specifier, + STATE(9057), 1, + sym_base_class_clause, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - ACTIONS(10556), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, + STATE(6472), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10464), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [302901] = 17, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(7098), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [255903] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(8334), 1, - anon_sym_DASH_GT, - ACTIONS(10103), 1, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8324), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10106), 1, - anon_sym_LBRACK, - ACTIONS(10123), 1, + ACTIONS(8326), 1, + anon_sym_DASH_GT, + ACTIONS(8328), 1, anon_sym_requires, - ACTIONS(10251), 1, - anon_sym___attribute__, - STATE(6953), 1, - sym_trailing_return_type, - STATE(7226), 1, - sym_function_attributes_end, - STATE(7270), 1, + ACTIONS(9783), 1, + anon_sym_LBRACK, + STATE(6355), 1, + sym_function_exception_specification, + STATE(7021), 1, sym_requires_clause, - STATE(7338), 1, + STATE(7073), 1, sym_function_postfix, - STATE(8073), 1, + STATE(7279), 1, + sym_function_attributes_end, + STATE(7421), 1, + sym_trailing_return_type, + STATE(7773), 1, sym_gnu_asm_expression, - ACTIONS(7918), 2, + ACTIONS(7879), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10120), 2, + ACTIONS(7921), 2, anon_sym_final, anon_sym_override, - STATE(6828), 2, + STATE(6438), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6901), 2, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7215), 2, + STATE(6899), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10101), 7, - anon_sym_COMMA, + ACTIONS(9781), 3, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [302964] = 17, + sym_semgrep_metavar, + [255975] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8334), 1, - anon_sym_DASH_GT, - ACTIONS(10466), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10469), 1, - anon_sym_LBRACK, - ACTIONS(10536), 1, - anon_sym_requires, - ACTIONS(10553), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - STATE(7043), 1, - sym_trailing_return_type, - STATE(7231), 1, + ACTIONS(7881), 1, + anon_sym_DASH_GT, + ACTIONS(7923), 1, + anon_sym_requires, + ACTIONS(9783), 1, + anon_sym_LBRACK, + STATE(6806), 1, sym_function_attributes_end, - STATE(7270), 1, + STATE(6946), 1, + sym_trailing_return_type, + STATE(7021), 1, sym_requires_clause, - STATE(7333), 1, + STATE(7073), 1, sym_function_postfix, - STATE(8073), 1, + STATE(7721), 1, sym_gnu_asm_expression, - ACTIONS(7918), 2, + ACTIONS(7879), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10533), 2, + ACTIONS(7921), 2, anon_sym_final, anon_sym_override, - STATE(6828), 2, + STATE(6443), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6901), 2, + STATE(6754), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7215), 2, + STATE(6899), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10464), 7, + ACTIONS(9781), 8, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_GT2, anon_sym_try, - [303027] = 17, + [256039] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(7926), 1, - anon_sym_requires, - ACTIONS(8325), 1, - anon_sym_DASH_GT, - ACTIONS(9899), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9902), 1, - anon_sym_LBRACK, - STATE(6966), 1, - sym_trailing_return_type, - STATE(7114), 1, - sym_function_attributes_end, - STATE(7270), 1, - sym_requires_clause, - STATE(7298), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(6118), 2, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(6934), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10152), 1, + sym_identifier, + STATE(2805), 1, + sym_class_name, + STATE(3076), 1, + sym_template_type, + STATE(3176), 1, + sym_qualified_type_identifier, + STATE(3339), 1, + sym_field_declaration_list, + STATE(3917), 1, + sym_class_declaration_item, + STATE(6462), 1, + sym_ms_declspec_modifier, + STATE(7542), 1, + sym_scope_resolution, + STATE(8118), 1, + sym_virtual_specifier, + STATE(8985), 1, + sym_base_class_clause, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - ACTIONS(10064), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, + STATE(6461), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(9897), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [303090] = 17, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(7098), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [256117] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(8325), 1, - anon_sym_DASH_GT, - ACTIONS(9899), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9902), 1, - anon_sym_LBRACK, - ACTIONS(9995), 1, - anon_sym_requires, - STATE(7031), 1, - sym_trailing_return_type, - STATE(7130), 1, - sym_function_attributes_end, - STATE(7270), 1, - sym_requires_clause, - STATE(7298), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(9992), 2, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(8083), 1, + anon_sym_LBRACE, + ACTIONS(10129), 1, + sym_identifier, + STATE(4007), 1, + sym_class_name, + STATE(4400), 1, + sym_template_type, + STATE(4457), 1, + sym_qualified_type_identifier, + STATE(4627), 1, + sym_field_declaration_list, + STATE(4808), 1, + sym_class_declaration_item, + STATE(6489), 1, + sym_ms_declspec_modifier, + STATE(7545), 1, + sym_scope_resolution, + STATE(7916), 1, + sym_virtual_specifier, + STATE(8693), 1, + sym_base_class_clause, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - ACTIONS(10064), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, + STATE(6488), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(9897), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [303153] = 17, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(7098), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [256195] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(8325), 1, - anon_sym_DASH_GT, - ACTIONS(10103), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10106), 1, - anon_sym_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(7593), 1, + anon_sym_LBRACE, ACTIONS(10123), 1, - anon_sym_requires, - STATE(6953), 1, - sym_trailing_return_type, - STATE(7153), 1, - sym_function_attributes_end, - STATE(7270), 1, - sym_requires_clause, - STATE(7338), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(10120), 2, + sym_identifier, + STATE(3529), 1, + sym_class_name, + STATE(4123), 1, + sym_template_type, + STATE(4280), 1, + sym_qualified_type_identifier, + STATE(4473), 1, + sym_field_declaration_list, + STATE(4618), 1, + sym_class_declaration_item, + STATE(6557), 1, + sym_ms_declspec_modifier, + STATE(7541), 1, + sym_scope_resolution, + STATE(7903), 1, + sym_virtual_specifier, + STATE(9014), 1, + sym_base_class_clause, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - ACTIONS(10271), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, + STATE(6556), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10101), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [303216] = 17, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(7098), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [256273] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(8098), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8327), 1, - anon_sym_DASH_GT, - ACTIONS(8329), 1, - anon_sym_requires, - ACTIONS(10106), 1, - anon_sym_LBRACK, - STATE(7252), 1, - sym_function_attributes_end, - STATE(7422), 1, - sym_requires_clause, - STATE(7444), 1, - sym_function_postfix, - STATE(7445), 1, - sym_trailing_return_type, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8102), 2, - anon_sym_final, - anon_sym_override, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10101), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(6413), 1, anon_sym_LBRACE, + ACTIONS(7552), 1, anon_sym_COLON, - sym_semgrep_metavar, - [303279] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8327), 1, - anon_sym_DASH_GT, - ACTIONS(10469), 1, - anon_sym_LBRACK, - ACTIONS(10559), 1, - anon_sym_requires, - STATE(7258), 1, - sym_function_attributes_end, - STATE(7422), 1, - sym_requires_clause, - STATE(7428), 1, - sym_trailing_return_type, - STATE(7462), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10541), 2, + ACTIONS(10138), 1, + sym_identifier, + STATE(2453), 1, + sym_class_name, + STATE(2674), 1, + sym_template_type, + STATE(2747), 1, + sym_qualified_type_identifier, + STATE(2860), 1, + sym_field_declaration_list, + STATE(3008), 1, + sym_class_declaration_item, + STATE(6494), 1, + sym_ms_declspec_modifier, + STATE(7547), 1, + sym_scope_resolution, + STATE(7928), 1, + sym_virtual_specifier, + STATE(8773), 1, + sym_base_class_clause, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, + STATE(6493), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10464), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - sym_semgrep_metavar, - [303342] = 7, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(7098), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [256351] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10267), 1, - anon_sym___attribute__, - ACTIONS(10460), 1, + ACTIONS(2289), 1, anon_sym_LBRACE, - STATE(6784), 1, - sym_enumerator_list, - STATE(6868), 1, - sym_attribute_specifier, - ACTIONS(6237), 2, + ACTIONS(7705), 1, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(6239), 21, - anon_sym___extension__, - anon_sym___based, + STATE(2198), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2576), 1, + sym_initializer_list, + STATE(2615), 1, + sym_argument_list, + ACTIONS(4763), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6092), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_const, + ACTIONS(4771), 17, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym___extension__, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -579112,583 +539171,454 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - sym_identifier, sym_auto, anon_sym_decltype, - [303385] = 17, + sym_semgrep_metavar, + [256399] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(8098), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8327), 1, - anon_sym_DASH_GT, - ACTIONS(8329), 1, - anon_sym_requires, - ACTIONS(10469), 1, - anon_sym_LBRACK, - STATE(7309), 1, - sym_function_attributes_end, - STATE(7422), 1, - sym_requires_clause, - STATE(7462), 1, - sym_function_postfix, - STATE(7463), 1, - sym_trailing_return_type, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8102), 2, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(9670), 1, + anon_sym_LBRACE, + ACTIONS(10109), 1, + sym_identifier, + STATE(3094), 1, + sym_template_type, + STATE(3322), 1, + sym_qualified_type_identifier, + STATE(5015), 1, + sym_class_declaration_item, + STATE(5620), 1, + sym_class_name, + STATE(5797), 1, + sym_field_declaration_list, + STATE(6519), 1, + sym_ms_declspec_modifier, + STATE(7521), 1, + sym_scope_resolution, + STATE(8125), 1, + sym_virtual_specifier, + STATE(9001), 1, + sym_base_class_clause, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, + STATE(6518), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10464), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - sym_semgrep_metavar, - [303448] = 17, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(7098), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [256477] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(8325), 1, - anon_sym_DASH_GT, - ACTIONS(10466), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10469), 1, - anon_sym_LBRACK, - ACTIONS(10536), 1, - anon_sym_requires, - STATE(7043), 1, - sym_trailing_return_type, - STATE(7159), 1, - sym_function_attributes_end, - STATE(7270), 1, - sym_requires_clause, - STATE(7333), 1, - sym_function_postfix, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(10533), 2, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(9670), 1, + anon_sym_LBRACE, + ACTIONS(10144), 1, + sym_identifier, + STATE(2532), 1, + sym_template_type, + STATE(2703), 1, + sym_qualified_type_identifier, + STATE(5015), 1, + sym_class_declaration_item, + STATE(5844), 1, + sym_class_name, + STATE(6313), 1, + sym_field_declaration_list, + STATE(6538), 1, + sym_ms_declspec_modifier, + STATE(7572), 1, + sym_scope_resolution, + STATE(7987), 1, + sym_virtual_specifier, + STATE(9032), 1, + sym_base_class_clause, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - ACTIONS(10556), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, + STATE(6537), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10464), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [303511] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5525), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5518), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [303546] = 17, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(7098), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [256555] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(8098), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8327), 1, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(7881), 1, anon_sym_DASH_GT, - ACTIONS(9902), 1, + ACTIONS(9783), 1, anon_sym_LBRACK, - ACTIONS(10091), 1, + ACTIONS(9788), 1, anon_sym_requires, - STATE(7325), 1, + STATE(6807), 1, sym_function_attributes_end, - STATE(7422), 1, + STATE(6993), 1, + sym_trailing_return_type, + STATE(7021), 1, sym_requires_clause, - STATE(7479), 1, + STATE(7073), 1, sym_function_postfix, - STATE(7490), 1, - sym_trailing_return_type, - STATE(8073), 1, + STATE(7721), 1, sym_gnu_asm_expression, - ACTIONS(7918), 2, + ACTIONS(7879), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10052), 2, + ACTIONS(9785), 2, anon_sym_final, anon_sym_override, - STATE(6828), 2, + STATE(6443), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6901), 2, + STATE(6754), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7282), 2, + STATE(6899), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(9897), 7, + ACTIONS(9781), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_COLON, - sym_semgrep_metavar, - [303609] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6270), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(6268), 23, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - [303644] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(10562), 1, - anon_sym_LT, - STATE(6753), 1, - sym_template_argument_list, - STATE(6810), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4835), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(10564), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4827), 17, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [303689] = 17, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [256619] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(8098), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8327), 1, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(7881), 1, anon_sym_DASH_GT, - ACTIONS(10106), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10264), 1, + ACTIONS(9660), 1, anon_sym_requires, - STATE(7303), 1, + STATE(6810), 1, sym_function_attributes_end, - STATE(7422), 1, + STATE(6947), 1, + sym_trailing_return_type, + STATE(7021), 1, sym_requires_clause, - STATE(7444), 1, + STATE(7068), 1, sym_function_postfix, - STATE(7454), 1, - sym_trailing_return_type, - STATE(8073), 1, + STATE(7721), 1, sym_gnu_asm_expression, - ACTIONS(7918), 2, + ACTIONS(7879), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10141), 2, + ACTIONS(9657), 2, anon_sym_final, anon_sym_override, - STATE(6828), 2, + STATE(6443), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6901), 2, + STATE(6754), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7282), 2, + STATE(6899), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10101), 7, + ACTIONS(9640), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_COLON, - sym_semgrep_metavar, - [303752] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5458), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5456), 23, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - [303787] = 7, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [256683] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(10566), 1, - sym_identifier, - ACTIONS(10572), 1, - sym_primitive_type, - STATE(6763), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6022), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACE, - ACTIONS(10569), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6026), 16, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, anon_sym_decltype, - [303829] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(4853), 1, - anon_sym_LBRACE, - ACTIONS(4827), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4835), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - sym_semgrep_metavar, - [303867] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10499), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(10497), 24, - anon_sym___extension__, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - [303901] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3852), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6032), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACE, - ACTIONS(10575), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6034), 18, - anon_sym___extension__, + ACTIONS(5747), 1, anon_sym___attribute__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(6367), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10148), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - [303939] = 5, + STATE(2410), 1, + sym_class_name, + STATE(2582), 1, + sym_template_type, + STATE(2598), 1, + sym_field_declaration_list, + STATE(2696), 1, + sym_qualified_type_identifier, + STATE(2728), 1, + sym_class_declaration_item, + STATE(6574), 1, + sym_ms_declspec_modifier, + STATE(7516), 1, + sym_scope_resolution, + STATE(8113), 1, + sym_virtual_specifier, + STATE(8974), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6568), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(7098), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [256761] = 24, ACTIONS(3), 1, sym_comment, - STATE(3852), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6016), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACE, - ACTIONS(10578), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6019), 18, - anon_sym___extension__, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5747), 1, anon_sym___attribute__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10099), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - [303977] = 6, + STATE(3094), 1, + sym_template_type, + STATE(3322), 1, + sym_qualified_type_identifier, + STATE(3579), 1, + sym_class_declaration_item, + STATE(4465), 1, + sym_field_declaration_list, + STATE(4613), 1, + sym_class_name, + STATE(6471), 1, + sym_ms_declspec_modifier, + STATE(7526), 1, + sym_scope_resolution, + STATE(8160), 1, + sym_virtual_specifier, + STATE(9057), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6470), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(7098), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [256839] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(10562), 1, - anon_sym_LT, - STATE(6753), 1, - sym_template_argument_list, - ACTIONS(5467), 2, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(7881), 1, + anon_sym_DASH_GT, + ACTIONS(7923), 1, + anon_sym_requires, + ACTIONS(10156), 1, + anon_sym_LBRACK, + STATE(6809), 1, + sym_function_attributes_end, + STATE(6932), 1, + sym_trailing_return_type, + STATE(7021), 1, + sym_requires_clause, + STATE(7094), 1, + sym_function_postfix, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 8, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(5460), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [304017] = 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [256903] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4853), 4, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5747), 1, + anon_sym___attribute__, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(6910), 1, anon_sym_LBRACE, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(6197), 22, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + ACTIONS(10150), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - [304051] = 8, + STATE(2782), 1, + sym_class_name, + STATE(2931), 1, + sym_template_type, + STATE(3099), 1, + sym_qualified_type_identifier, + STATE(3302), 1, + sym_field_declaration_list, + STATE(3684), 1, + sym_class_declaration_item, + STATE(6468), 1, + sym_ms_declspec_modifier, + STATE(7552), 1, + sym_scope_resolution, + STATE(8173), 1, + sym_virtual_specifier, + STATE(9082), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6467), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(7098), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [256981] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(10586), 1, - sym_auto, - ACTIONS(10588), 1, - anon_sym_decltype, - STATE(6861), 1, - sym_decltype_auto, - ACTIONS(10584), 2, + ACTIONS(5455), 1, anon_sym_LPAREN2, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(9173), 1, + anon_sym_COLON, + ACTIONS(9688), 1, + anon_sym_const, + ACTIONS(10060), 1, anon_sym_STAR, - STATE(6855), 2, + ACTIONS(10062), 1, + anon_sym_AMP_AMP, + ACTIONS(10064), 1, + anon_sym_AMP, + STATE(4616), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7838), 1, + sym_abstract_declarator, + STATE(6335), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - ACTIONS(10582), 7, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(9498), 12, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9686), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -579699,25 +539629,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [304095] = 5, + [257039] = 14, ACTIONS(3), 1, sym_comment, - STATE(3852), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6062), 3, + ACTIONS(5455), 1, anon_sym_LPAREN2, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(9177), 1, + anon_sym_COLON, + ACTIONS(9688), 1, + anon_sym_const, + ACTIONS(10060), 1, anon_sym_STAR, - anon_sym_LBRACE, - ACTIONS(10590), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6064), 18, + ACTIONS(10062), 1, + anon_sym_AMP_AMP, + ACTIONS(10064), 1, + anon_sym_AMP, + STATE(4616), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7822), 1, + sym_abstract_declarator, + STATE(6335), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9686), 11, anon_sym___extension__, - anon_sym___attribute__, - anon_sym___based, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -579728,62 +539673,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [304133] = 5, + [257097] = 24, ACTIONS(3), 1, sym_comment, - STATE(6769), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6005), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACE, - ACTIONS(10593), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6007), 18, - anon_sym___extension__, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5747), 1, anon_sym___attribute__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(6367), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10140), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - [304171] = 5, + STATE(2410), 1, + sym_class_name, + STATE(2582), 1, + sym_template_type, + STATE(2598), 1, + sym_field_declaration_list, + STATE(2696), 1, + sym_qualified_type_identifier, + STATE(2728), 1, + sym_class_declaration_item, + STATE(6552), 1, + sym_ms_declspec_modifier, + STATE(7523), 1, + sym_scope_resolution, + STATE(8113), 1, + sym_virtual_specifier, + STATE(8974), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6551), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(7098), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [257175] = 14, ACTIONS(3), 1, sym_comment, - STATE(3852), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5990), 3, + ACTIONS(5455), 1, anon_sym_LPAREN2, + ACTIONS(6535), 1, + anon_sym_COLON, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(9688), 1, + anon_sym_const, + ACTIONS(10060), 1, anon_sym_STAR, - anon_sym_LBRACE, - ACTIONS(10596), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5992), 18, + ACTIONS(10062), 1, + anon_sym_AMP_AMP, + ACTIONS(10064), 1, + anon_sym_AMP, + STATE(4616), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7814), 1, + sym_abstract_declarator, + STATE(6232), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9686), 11, anon_sym___extension__, - anon_sym___attribute__, - anon_sym___based, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -579794,36 +539771,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [304209] = 8, + [257233] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(10586), 1, - sym_auto, - ACTIONS(10588), 1, - anon_sym_decltype, - STATE(6861), 1, - sym_decltype_auto, - ACTIONS(10601), 2, + ACTIONS(5455), 1, anon_sym_LPAREN2, + ACTIONS(7388), 1, + anon_sym_COLON, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(9688), 1, + anon_sym_const, + ACTIONS(10060), 1, anon_sym_STAR, - STATE(6859), 2, + ACTIONS(10062), 1, + anon_sym_AMP_AMP, + ACTIONS(10064), 1, + anon_sym_AMP, + STATE(4616), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7777), 1, + sym_abstract_declarator, + STATE(6335), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - ACTIONS(10599), 7, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(9498), 12, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9686), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -579834,719 +539815,1297 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [304253] = 3, + [257291] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5467), 4, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5747), 1, + anon_sym___attribute__, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(6894), 1, anon_sym_LBRACE, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(5460), 22, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + ACTIONS(10101), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - [304287] = 4, + STATE(2772), 1, + sym_class_name, + STATE(2919), 1, + sym_template_type, + STATE(3097), 1, + sym_qualified_type_identifier, + STATE(3102), 1, + sym_field_declaration_list, + STATE(3318), 1, + sym_class_declaration_item, + STATE(6454), 1, + sym_ms_declspec_modifier, + STATE(7556), 1, + sym_scope_resolution, + STATE(8036), 1, + sym_virtual_specifier, + STATE(8742), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6453), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(7098), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [257369] = 21, ACTIONS(3), 1, sym_comment, - STATE(6767), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5959), 3, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8326), 1, + anon_sym_DASH_GT, + ACTIONS(8328), 1, + anon_sym_requires, + ACTIONS(9642), 1, + anon_sym_LBRACK, + STATE(6358), 1, + sym_function_exception_specification, + STATE(7021), 1, + sym_requires_clause, + STATE(7068), 1, + sym_function_postfix, + STATE(7276), 1, + sym_function_attributes_end, + STATE(7419), 1, + sym_trailing_return_type, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 3, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACE, - ACTIONS(5957), 22, - anon_sym___extension__, + sym_semgrep_metavar, + [257441] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5747), 1, anon_sym___attribute__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(6367), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10103), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - [304323] = 5, + STATE(2410), 1, + sym_class_name, + STATE(2582), 1, + sym_template_type, + STATE(2598), 1, + sym_field_declaration_list, + STATE(2696), 1, + sym_qualified_type_identifier, + STATE(2728), 1, + sym_class_declaration_item, + STATE(6510), 1, + sym_ms_declspec_modifier, + STATE(7524), 1, + sym_scope_resolution, + STATE(8113), 1, + sym_virtual_specifier, + STATE(8974), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6513), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(7098), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [257519] = 24, ACTIONS(3), 1, sym_comment, - STATE(3852), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5996), 3, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5700), 1, anon_sym_LBRACE, - ACTIONS(10603), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5998), 18, - anon_sym___extension__, + ACTIONS(5747), 1, anon_sym___attribute__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10146), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - [304361] = 3, + STATE(1897), 1, + sym_class_name, + STATE(2050), 1, + sym_template_type, + STATE(2137), 1, + sym_qualified_type_identifier, + STATE(2191), 1, + sym_field_declaration_list, + STATE(2327), 1, + sym_class_declaration_item, + STATE(6575), 1, + sym_ms_declspec_modifier, + STATE(7549), 1, + sym_scope_resolution, + STATE(7988), 1, + sym_virtual_specifier, + STATE(9035), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6523), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(7098), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [257597] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(10515), 2, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(7881), 1, + anon_sym_DASH_GT, + ACTIONS(10156), 1, + anon_sym_LBRACK, + ACTIONS(10161), 1, + anon_sym_requires, + STATE(6808), 1, + sym_function_attributes_end, + STATE(6979), 1, + sym_trailing_return_type, + STATE(7021), 1, + sym_requires_clause, + STATE(7094), 1, + sym_function_postfix, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10158), 2, + anon_sym_final, + anon_sym_override, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 8, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(10513), 24, - anon_sym___extension__, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [257661] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5747), 1, + anon_sym___attribute__, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(9670), 1, + anon_sym_LBRACE, + ACTIONS(10127), 1, sym_identifier, - [304395] = 5, + STATE(3094), 1, + sym_template_type, + STATE(3322), 1, + sym_qualified_type_identifier, + STATE(5015), 1, + sym_class_declaration_item, + STATE(5620), 1, + sym_class_name, + STATE(5797), 1, + sym_field_declaration_list, + STATE(6566), 1, + sym_ms_declspec_modifier, + STATE(7551), 1, + sym_scope_resolution, + STATE(8125), 1, + sym_virtual_specifier, + STATE(9001), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6565), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(7098), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [257739] = 17, ACTIONS(3), 1, sym_comment, - STATE(6773), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6048), 3, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(7881), 1, + anon_sym_DASH_GT, + ACTIONS(7923), 1, + anon_sym_requires, + ACTIONS(9642), 1, + anon_sym_LBRACK, + STATE(6800), 1, + sym_function_attributes_end, + STATE(6985), 1, + sym_trailing_return_type, + STATE(7021), 1, + sym_requires_clause, + STATE(7068), 1, + sym_function_postfix, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 8, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(10606), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6050), 18, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [304433] = 19, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [257803] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10523), 1, - sym_identifier, - ACTIONS(10609), 1, - anon_sym_LPAREN2, - ACTIONS(10611), 1, + ACTIONS(5747), 1, + anon_sym___attribute__, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(8314), 1, anon_sym_LBRACE, - ACTIONS(10615), 1, - anon_sym_requires, - STATE(2509), 1, + ACTIONS(10121), 1, + sym_identifier, + STATE(2532), 1, sym_template_type, - STATE(2589), 1, + STATE(2703), 1, sym_qualified_type_identifier, - STATE(4674), 1, - sym_requirement_seq, - STATE(5209), 1, - sym_requirement_clause_constraint, - STATE(7262), 1, - sym_lambda_capture_specifier, - STATE(7902), 1, + STATE(4441), 1, + sym_class_name, + STATE(4936), 1, + sym_field_declaration_list, + STATE(5200), 1, + sym_class_declaration_item, + STATE(6524), 1, + sym_ms_declspec_modifier, + STATE(7574), 1, sym_scope_resolution, - STATE(9246), 1, - sym_requires_parameter_list, - ACTIONS(10613), 2, - sym_true, - sym_false, - STATE(9982), 2, + STATE(8086), 1, + sym_virtual_specifier, + STATE(8905), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6529), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(4665), 6, - sym_class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - [304498] = 19, + STATE(7098), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [257881] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10475), 1, - sym_identifier, - ACTIONS(10617), 1, - anon_sym_LPAREN2, - ACTIONS(10619), 1, + ACTIONS(5747), 1, + anon_sym___attribute__, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7550), 1, anon_sym_LBRACE, - ACTIONS(10623), 1, - anon_sym_requires, - STATE(2515), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10127), 1, + sym_identifier, + STATE(3094), 1, sym_template_type, - STATE(2599), 1, + STATE(3322), 1, sym_qualified_type_identifier, - STATE(3144), 1, - sym_requirement_seq, - STATE(3163), 1, - sym_requirement_clause_constraint, - STATE(7313), 1, - sym_lambda_capture_specifier, - STATE(7919), 1, + STATE(3579), 1, + sym_class_declaration_item, + STATE(4009), 1, + sym_class_name, + STATE(4469), 1, + sym_field_declaration_list, + STATE(6479), 1, + sym_ms_declspec_modifier, + STATE(7551), 1, sym_scope_resolution, - STATE(9409), 1, - sym_requires_parameter_list, - ACTIONS(10621), 2, - sym_true, - sym_false, - STATE(9982), 2, + STATE(8157), 1, + sym_virtual_specifier, + STATE(9050), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6478), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3141), 6, - sym_class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - [304563] = 3, + STATE(7098), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [257959] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(10515), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(10513), 21, - anon_sym_AMP, - anon_sym___extension__, - 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_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5747), 1, + anon_sym___attribute__, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(6810), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10107), 1, sym_identifier, - anon_sym_operator, - [304596] = 19, + STATE(2672), 1, + sym_class_name, + STATE(2842), 1, + sym_template_type, + STATE(2945), 1, + sym_qualified_type_identifier, + STATE(3163), 1, + sym_field_declaration_list, + STATE(3376), 1, + sym_class_declaration_item, + STATE(6476), 1, + sym_ms_declspec_modifier, + STATE(7525), 1, + sym_scope_resolution, + STATE(7861), 1, + sym_virtual_specifier, + STATE(8930), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6475), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(7098), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [258037] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10625), 1, - sym_identifier, - ACTIONS(10627), 1, - anon_sym_LPAREN2, - ACTIONS(10629), 1, + ACTIONS(5700), 1, anon_sym_LBRACE, - ACTIONS(10633), 1, - anon_sym_requires, - STATE(5274), 1, + ACTIONS(5747), 1, + anon_sym___attribute__, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10125), 1, + sym_identifier, + STATE(1897), 1, + sym_class_name, + STATE(2050), 1, sym_template_type, - STATE(5362), 1, - sym_requirement_seq, - STATE(5363), 1, - sym_requirement_clause_constraint, - STATE(5381), 1, + STATE(2137), 1, sym_qualified_type_identifier, - STATE(7332), 1, - sym_lambda_capture_specifier, - STATE(7883), 1, + STATE(2191), 1, + sym_field_declaration_list, + STATE(2327), 1, + sym_class_declaration_item, + STATE(6531), 1, + sym_ms_declspec_modifier, + STATE(7557), 1, sym_scope_resolution, - STATE(9249), 1, - sym_requires_parameter_list, - ACTIONS(10631), 2, - sym_true, - sym_false, - STATE(9982), 2, + STATE(7988), 1, + sym_virtual_specifier, + STATE(9035), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6530), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5361), 6, - sym_class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - [304661] = 19, + STATE(7098), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [258115] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10635), 1, - sym_identifier, - ACTIONS(10637), 1, - anon_sym_LPAREN2, - ACTIONS(10639), 1, + ACTIONS(5747), 1, + anon_sym___attribute__, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(6695), 1, anon_sym_LBRACE, - ACTIONS(10643), 1, - anon_sym_requires, - STATE(3512), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10119), 1, + sym_identifier, + STATE(2604), 1, + sym_class_name, + STATE(2808), 1, sym_template_type, - STATE(3614), 1, + STATE(2845), 1, sym_qualified_type_identifier, - STATE(3705), 1, - sym_requirement_seq, - STATE(3708), 1, - sym_requirement_clause_constraint, - STATE(7253), 1, - sym_lambda_capture_specifier, - STATE(7911), 1, + STATE(3047), 1, + sym_field_declaration_list, + STATE(3285), 1, + sym_class_declaration_item, + STATE(6500), 1, + sym_ms_declspec_modifier, + STATE(7544), 1, sym_scope_resolution, - STATE(9514), 1, - sym_requires_parameter_list, - ACTIONS(10641), 2, - sym_true, - sym_false, - STATE(9982), 2, + STATE(8172), 1, + sym_virtual_specifier, + STATE(9087), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6499), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3704), 6, - sym_class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - [304726] = 5, + STATE(7098), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [258193] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10267), 1, - anon_sym___attribute__, - STATE(6863), 1, - sym_attribute_specifier, - ACTIONS(6456), 2, + ACTIONS(10164), 1, + anon_sym_LBRACK_LBRACK, + STATE(6245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6358), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(6458), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(6360), 15, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, sym_identifier, - sym_auto, anon_sym_decltype, - [304763] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_try, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_requires, + [258233] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5959), 3, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5747), 1, + anon_sym___attribute__, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7550), 1, anon_sym_LBRACE, - ACTIONS(5957), 22, - anon_sym___extension__, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10109), 1, + sym_identifier, + STATE(3094), 1, + sym_template_type, + STATE(3322), 1, + sym_qualified_type_identifier, + STATE(3579), 1, + sym_class_declaration_item, + STATE(4009), 1, + sym_class_name, + STATE(4469), 1, + sym_field_declaration_list, + STATE(6541), 1, + sym_ms_declspec_modifier, + STATE(7521), 1, + sym_scope_resolution, + STATE(8157), 1, + sym_virtual_specifier, + STATE(9050), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6540), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(7098), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [258311] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8207), 1, anon_sym___attribute__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [304796] = 19, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8326), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(10068), 1, + anon_sym_requires, + STATE(6363), 1, + sym_function_exception_specification, + STATE(7021), 1, + sym_requires_clause, + STATE(7068), 1, + sym_function_postfix, + STATE(7275), 1, + sym_function_attributes_end, + STATE(7455), 1, + sym_trailing_return_type, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9657), 2, + anon_sym_final, + anon_sym_override, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + sym_semgrep_metavar, + [258383] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10525), 1, - sym_identifier, - ACTIONS(10645), 1, - anon_sym_LPAREN2, - ACTIONS(10647), 1, + ACTIONS(5747), 1, + anon_sym___attribute__, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(9726), 1, anon_sym_LBRACE, - ACTIONS(10651), 1, - anon_sym_requires, - STATE(5185), 1, + ACTIONS(10117), 1, + sym_identifier, + STATE(5722), 1, sym_template_type, - STATE(5289), 1, + STATE(5723), 1, + sym_class_name, + STATE(5753), 1, sym_qualified_type_identifier, - STATE(6232), 1, - sym_requirement_seq, - STATE(6235), 1, - sym_requirement_clause_constraint, - STATE(7263), 1, - sym_lambda_capture_specifier, - STATE(7944), 1, + STATE(5926), 1, + sym_field_declaration_list, + STATE(6074), 1, + sym_class_declaration_item, + STATE(6447), 1, + sym_ms_declspec_modifier, + STATE(7539), 1, sym_scope_resolution, - STATE(9584), 1, - sym_requires_parameter_list, - ACTIONS(10649), 2, - sym_true, - sym_false, - STATE(9982), 2, + STATE(7839), 1, + sym_virtual_specifier, + STATE(8845), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6483), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6229), 6, - sym_class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - [304861] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10267), 1, - anon_sym___attribute__, - STATE(6867), 1, + STATE(7098), 3, sym_attribute_specifier, - ACTIONS(6320), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(6322), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [304898] = 19, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [258461] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10508), 1, - sym_identifier, - ACTIONS(10653), 1, - anon_sym_LPAREN2, - ACTIONS(10655), 1, + ACTIONS(5747), 1, + anon_sym___attribute__, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(7550), 1, anon_sym_LBRACE, - ACTIONS(10659), 1, - anon_sym_requires, - STATE(2765), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10142), 1, + sym_identifier, + STATE(3094), 1, sym_template_type, - STATE(2887), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(3989), 1, - sym_requirement_seq, - STATE(3999), 1, - sym_requirement_clause_constraint, - STATE(7265), 1, - sym_lambda_capture_specifier, - STATE(7915), 1, + STATE(3453), 1, + sym_class_name, + STATE(3579), 1, + sym_class_declaration_item, + STATE(4465), 1, + sym_field_declaration_list, + STATE(6507), 1, + sym_ms_declspec_modifier, + STATE(7569), 1, sym_scope_resolution, - STATE(9488), 1, - sym_requires_parameter_list, - ACTIONS(10657), 2, - sym_true, - sym_false, - STATE(9982), 2, + STATE(8160), 1, + sym_virtual_specifier, + STATE(9057), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6506), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3985), 6, - sym_class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - [304963] = 19, + STATE(7098), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [258539] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10661), 1, - sym_identifier, - ACTIONS(10663), 1, - anon_sym_LPAREN2, - ACTIONS(10665), 1, + ACTIONS(5747), 1, + anon_sym___attribute__, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + anon_sym_alignas, + ACTIONS(6894), 1, anon_sym_LBRACE, - ACTIONS(10669), 1, - anon_sym_requires, - STATE(5448), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10133), 1, + sym_identifier, + STATE(2772), 1, + sym_class_name, + STATE(2919), 1, sym_template_type, - STATE(5486), 1, + STATE(3097), 1, sym_qualified_type_identifier, - STATE(5691), 1, - sym_requirement_seq, - STATE(5692), 1, - sym_requirement_clause_constraint, - STATE(7261), 1, - sym_lambda_capture_specifier, - STATE(7891), 1, + STATE(3102), 1, + sym_field_declaration_list, + STATE(3318), 1, + sym_class_declaration_item, + STATE(6550), 1, + sym_ms_declspec_modifier, + STATE(7558), 1, sym_scope_resolution, - STATE(9335), 1, - sym_requires_parameter_list, - ACTIONS(10667), 2, - sym_true, - sym_false, - STATE(9982), 2, + STATE(8036), 1, + sym_virtual_specifier, + STATE(8742), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6549), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5690), 6, - sym_class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - [305028] = 5, + STATE(7098), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + [258617] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(10267), 1, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8207), 1, anon_sym___attribute__, - STATE(6860), 1, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8326), 1, + anon_sym_DASH_GT, + ACTIONS(9783), 1, + anon_sym_LBRACK, + ACTIONS(10167), 1, + anon_sym_requires, + STATE(6356), 1, + sym_function_exception_specification, + STATE(7021), 1, + sym_requires_clause, + STATE(7073), 1, + sym_function_postfix, + STATE(7271), 1, + sym_function_attributes_end, + STATE(7457), 1, + sym_trailing_return_type, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9785), 2, + anon_sym_final, + anon_sym_override, + STATE(6438), 2, sym_attribute_specifier, - ACTIONS(6364), 2, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 3, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(6366), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [305065] = 5, + sym_semgrep_metavar, + [258689] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(10267), 1, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8207), 1, anon_sym___attribute__, - STATE(6865), 1, + ACTIONS(8386), 1, + anon_sym_DASH_GT, + ACTIONS(8388), 1, + anon_sym_requires, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9705), 1, + anon_sym_LBRACK_LBRACK, + STATE(6402), 1, + sym_function_exception_specification, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + STATE(7302), 1, + sym_function_attributes_end, + STATE(7408), 1, + sym_trailing_return_type, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9640), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + [258760] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8040), 1, + anon_sym_DASH_GT, + ACTIONS(8042), 1, + anon_sym_requires, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9702), 1, + anon_sym___attribute__, + ACTIONS(9705), 1, + anon_sym_LBRACK_LBRACK, + STATE(6683), 1, + sym_function_attributes_end, + STATE(6760), 1, + sym_trailing_return_type, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6438), 2, sym_attribute_specifier, - ACTIONS(6386), 2, + aux_sym_type_definition_repeat1, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 7, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(6388), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [305102] = 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [258823] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(10267), 1, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8207), 1, anon_sym___attribute__, - STATE(6844), 1, + ACTIONS(8386), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9705), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10087), 1, + anon_sym_requires, + STATE(6405), 1, + sym_function_exception_specification, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + STATE(7249), 1, + sym_function_attributes_end, + STATE(7435), 1, + sym_trailing_return_type, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9640), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(9708), 2, + anon_sym_final, + anon_sym_override, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + [258894] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8386), 1, + anon_sym_DASH_GT, + ACTIONS(9783), 1, + anon_sym_LBRACK, + ACTIONS(10002), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10170), 1, + anon_sym_requires, + STATE(6426), 1, + sym_function_exception_specification, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7261), 1, + sym_function_attributes_end, + STATE(7441), 1, + sym_trailing_return_type, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9781), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(10005), 2, + anon_sym_final, + anon_sym_override, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + [258965] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8040), 1, + anon_sym_DASH_GT, + ACTIONS(9783), 1, + anon_sym_LBRACK, + ACTIONS(9999), 1, + anon_sym___attribute__, + ACTIONS(10002), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10008), 1, + anon_sym_requires, + STATE(6694), 1, + sym_function_attributes_end, + STATE(6741), 1, + sym_trailing_return_type, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10005), 2, + anon_sym_final, + anon_sym_override, + STATE(6438), 2, sym_attribute_specifier, - ACTIONS(6434), 2, + aux_sym_type_definition_repeat1, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 7, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(6436), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [305139] = 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [259028] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(10267), 1, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8207), 1, anon_sym___attribute__, - STATE(6843), 1, + ACTIONS(8285), 1, + anon_sym_requires, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8425), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, + anon_sym_LBRACK, + STATE(6446), 1, + sym_function_exception_specification, + STATE(7021), 1, + sym_requires_clause, + STATE(7068), 1, + sym_function_postfix, + STATE(7161), 1, + sym_trailing_return_type, + STATE(7358), 1, + sym_function_attributes_end, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9640), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + [259099] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute__, + ACTIONS(9692), 1, + anon_sym_LBRACE, + STATE(5033), 1, sym_attribute_specifier, - ACTIONS(6390), 2, + STATE(6325), 1, + sym_enumerator_list, + ACTIONS(5981), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(6392), 21, + ACTIONS(5983), 21, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -580568,267 +541127,316 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [305176] = 19, + [259142] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3049), 1, + ACTIONS(8040), 1, + anon_sym_DASH_GT, + ACTIONS(10156), 1, anon_sym_LBRACK, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(10479), 1, - sym_identifier, - ACTIONS(10671), 1, - anon_sym_LPAREN2, - ACTIONS(10673), 1, - anon_sym_LBRACE, - ACTIONS(10677), 1, + ACTIONS(10173), 1, + anon_sym___attribute__, + ACTIONS(10176), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10182), 1, anon_sym_requires, - STATE(2905), 1, - sym_template_type, - STATE(3047), 1, - sym_qualified_type_identifier, - STATE(4321), 1, - sym_requirement_clause_constraint, - STATE(4372), 1, - sym_requirement_seq, - STATE(7284), 1, - sym_lambda_capture_specifier, - STATE(7873), 1, - sym_scope_resolution, - STATE(9237), 1, - sym_requires_parameter_list, - ACTIONS(10675), 2, - sym_true, - sym_false, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4320), 6, - sym_class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - [305241] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_LBRACK, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(10473), 1, - sym_identifier, - ACTIONS(10679), 1, + STATE(6695), 1, + sym_function_attributes_end, + STATE(6750), 1, + sym_trailing_return_type, + STATE(6835), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10179), 2, + anon_sym_final, + anon_sym_override, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 7, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(10681), 1, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(10685), 1, - anon_sym_requires, - STATE(3135), 1, - sym_template_type, - STATE(3434), 1, - sym_qualified_type_identifier, - STATE(4617), 1, - sym_requirement_clause_constraint, - STATE(4629), 1, - sym_requirement_seq, - STATE(7328), 1, - sym_lambda_capture_specifier, - STATE(7909), 1, - sym_scope_resolution, - STATE(9394), 1, - sym_requires_parameter_list, - ACTIONS(10683), 2, - sym_true, - sym_false, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4578), 6, - sym_class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - [305306] = 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [259205] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8910), 1, - anon_sym_LPAREN2, - ACTIONS(8918), 1, + ACTIONS(8040), 1, + anon_sym_DASH_GT, + ACTIONS(8042), 1, + anon_sym_requires, + ACTIONS(9783), 1, anon_sym_LBRACK, - ACTIONS(8934), 1, - anon_sym_STAR, - ACTIONS(8936), 1, - anon_sym_AMP_AMP, - ACTIONS(8938), 1, - anon_sym_AMP, - STATE(3952), 1, - sym_parameter_list, - STATE(7280), 1, - sym_function_declarator_seq, - STATE(7390), 1, - sym_abstract_declarator, - STATE(7278), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8858), 12, + ACTIONS(9999), 1, + anon_sym___attribute__, + ACTIONS(10002), 1, + anon_sym_LBRACK_LBRACK, + STATE(6685), 1, + sym_function_attributes_end, + STATE(6707), 1, + sym_trailing_return_type, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 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_final, - anon_sym_override, - anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [305355] = 11, + [259268] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8910), 1, - anon_sym_LPAREN2, - ACTIONS(8912), 1, - anon_sym_STAR, - ACTIONS(8914), 1, - anon_sym_AMP_AMP, - ACTIONS(8916), 1, - anon_sym_AMP, - ACTIONS(8918), 1, + ACTIONS(8040), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(4267), 1, - sym_parameter_list, - STATE(7280), 1, - sym_function_declarator_seq, - STATE(7370), 1, - sym_abstract_declarator, - STATE(7278), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8858), 12, + ACTIONS(9702), 1, + anon_sym___attribute__, + ACTIONS(9705), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9711), 1, + anon_sym_requires, + STATE(6693), 1, + sym_function_attributes_end, + STATE(6734), 1, + sym_trailing_return_type, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9708), 2, + anon_sym_final, + anon_sym_override, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 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, + [259331] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8285), 1, + anon_sym_requires, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8425), 1, + anon_sym_DASH_GT, + ACTIONS(9783), 1, + anon_sym_LBRACK, + STATE(6428), 1, + sym_function_exception_specification, + STATE(7021), 1, + sym_requires_clause, + STATE(7073), 1, + sym_function_postfix, + STATE(7187), 1, + sym_trailing_return_type, + STATE(7359), 1, + sym_function_attributes_end, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, anon_sym_asm, anon_sym___asm__, + ACTIONS(7921), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [305404] = 19, + ACTIONS(9781), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + [259402] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3049), 1, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8425), 1, + anon_sym_DASH_GT, + ACTIONS(9783), 1, anon_sym_LBRACK, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(10477), 1, - sym_identifier, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10689), 1, - anon_sym_LBRACE, - ACTIONS(10693), 1, + ACTIONS(10076), 1, anon_sym_requires, - STATE(3010), 1, - sym_template_type, - STATE(3184), 1, - sym_qualified_type_identifier, - STATE(4464), 1, - sym_requirement_seq, - STATE(4517), 1, - sym_requirement_clause_constraint, - STATE(7259), 1, - sym_lambda_capture_specifier, - STATE(7917), 1, - sym_scope_resolution, - STATE(9545), 1, - sym_requires_parameter_list, - ACTIONS(10691), 2, - sym_true, - sym_false, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4515), 6, - sym_class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - [305469] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10499), 4, - anon_sym_DOT_DOT_DOT, + STATE(6410), 1, + sym_function_exception_specification, + STATE(7021), 1, + sym_requires_clause, + STATE(7073), 1, + sym_function_postfix, + STATE(7222), 1, + sym_trailing_return_type, + STATE(7372), 1, + sym_function_attributes_end, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9781), 2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(10497), 21, - anon_sym_AMP, - anon_sym___extension__, - 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_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_operator, - [305502] = 5, + anon_sym_COLON, + ACTIONS(9785), 2, + anon_sym_final, + anon_sym_override, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + [259473] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(10267), 1, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8207), 1, anon_sym___attribute__, - STATE(6848), 1, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8425), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9796), 1, + anon_sym_requires, + STATE(6400), 1, + sym_function_exception_specification, + STATE(7021), 1, + sym_requires_clause, + STATE(7068), 1, + sym_function_postfix, + STATE(7171), 1, + sym_trailing_return_type, + STATE(7371), 1, + sym_function_attributes_end, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9640), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(9657), 2, + anon_sym_final, + anon_sym_override, + STATE(6438), 2, sym_attribute_specifier, - ACTIONS(6430), 2, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + [259544] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(9722), 1, + anon_sym_LT, + STATE(1833), 1, + sym_template_argument_list, + STATE(6279), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4771), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(6432), 21, - anon_sym___extension__, - anon_sym___based, + ACTIONS(10185), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(4763), 17, + anon_sym___extension__, + anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -580844,80 +541452,117 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [305539] = 5, + [259589] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(10267), 1, + ACTIONS(8040), 1, + anon_sym_DASH_GT, + ACTIONS(8042), 1, + anon_sym_requires, + ACTIONS(10156), 1, + anon_sym_LBRACK, + ACTIONS(10173), 1, anon_sym___attribute__, - STATE(6864), 1, + ACTIONS(10176), 1, + anon_sym_LBRACK_LBRACK, + STATE(6687), 1, + sym_function_attributes_end, + STATE(6739), 1, + sym_trailing_return_type, + STATE(6835), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6438), 2, sym_attribute_specifier, - ACTIONS(6452), 2, + aux_sym_type_definition_repeat1, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 7, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(6454), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [305576] = 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [259652] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4853), 1, - anon_sym_LBRACE, - ACTIONS(4827), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4835), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym___extension__, + ACTIONS(7886), 1, + anon_sym_noexcept, + ACTIONS(7888), 1, + anon_sym_throw, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8386), 1, + anon_sym_DASH_GT, + ACTIONS(8388), 1, + anon_sym_requires, + ACTIONS(9783), 1, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - sym_semgrep_metavar, - [305611] = 5, + ACTIONS(10002), 1, + anon_sym_LBRACK_LBRACK, + STATE(6374), 1, + sym_function_exception_specification, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7231), 1, + sym_function_attributes_end, + STATE(7412), 1, + sym_trailing_return_type, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9781), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6619), 2, + sym_noexcept, + sym_throw_specifier, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + [259723] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10267), 1, + ACTIONS(43), 1, anon_sym___attribute__, - STATE(6849), 1, + ACTIONS(9692), 1, + anon_sym_LBRACE, + STATE(5050), 1, sym_attribute_specifier, - ACTIONS(6460), 2, + STATE(6319), 1, + sym_enumerator_list, + ACTIONS(5987), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(6462), 21, + ACTIONS(5989), 21, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -580939,65 +541584,65 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [305648] = 19, + [259766] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3049), 1, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8224), 1, + anon_sym_DASH_GT, + ACTIONS(10156), 1, anon_sym_LBRACK, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(10695), 1, - sym_identifier, - ACTIONS(10697), 1, + ACTIONS(10176), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10182), 1, + anon_sym_requires, + STATE(6729), 1, + sym_function_attributes_end, + STATE(6750), 1, + sym_trailing_return_type, + STATE(6835), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(10179), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(10187), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 6, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(10699), 1, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(10703), 1, - anon_sym_requires, - STATE(3220), 1, - sym_template_type, - STATE(3327), 1, - sym_requirement_seq, - STATE(3328), 1, - sym_requirement_clause_constraint, - STATE(3384), 1, - sym_qualified_type_identifier, - STATE(7329), 1, - sym_lambda_capture_specifier, - STATE(7898), 1, - sym_scope_resolution, - STATE(9447), 1, - sym_requires_parameter_list, - ACTIONS(10701), 2, - sym_true, - sym_false, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(3325), 6, - sym_class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - [305713] = 5, + anon_sym_EQ, + anon_sym_COLON, + [259828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10267), 1, - anon_sym___attribute__, - STATE(6853), 1, - sym_attribute_specifier, - ACTIONS(6422), 2, + ACTIONS(10085), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(6424), 21, + ACTIONS(10083), 24, anon_sym___extension__, 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_signed, anon_sym_unsigned, anon_sym_long, @@ -581015,66 +541660,288 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, sym_primitive_type, sym_identifier, - sym_auto, - anon_sym_decltype, - [305750] = 19, + [259862] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3049), 1, + ACTIONS(8042), 1, + anon_sym_requires, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8224), 1, + anon_sym_DASH_GT, + ACTIONS(9783), 1, anon_sym_LBRACK, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(10471), 1, - sym_identifier, - ACTIONS(10705), 1, + ACTIONS(10002), 1, + anon_sym_LBRACK_LBRACK, + STATE(6707), 1, + sym_trailing_return_type, + STATE(6719), 1, + sym_function_attributes_end, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(10051), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 6, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(10707), 1, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(10711), 1, + anon_sym_EQ, + anon_sym_COLON, + [259924] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8211), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9752), 1, anon_sym_requires, - STATE(3011), 1, - sym_template_type, - STATE(3140), 1, - sym_qualified_type_identifier, - STATE(5555), 1, - sym_requirement_seq, - STATE(6160), 1, - sym_requirement_clause_constraint, - STATE(7327), 1, - sym_lambda_capture_specifier, - STATE(7878), 1, - sym_scope_resolution, - STATE(9196), 1, - sym_requires_parameter_list, - ACTIONS(10709), 2, - sym_true, - sym_false, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5554), 6, - sym_class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - [305815] = 5, + STATE(6769), 1, + sym_trailing_return_type, + STATE(6852), 1, + sym_requires_clause, + STATE(6888), 1, + sym_function_attributes_end, + STATE(6904), 1, + sym_function_postfix, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9708), 2, + anon_sym_final, + anon_sym_override, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [259986] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(10267), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - STATE(6857), 1, + ACTIONS(8211), 1, + anon_sym_DASH_GT, + ACTIONS(9783), 1, + anon_sym_LBRACK, + ACTIONS(10045), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10048), 1, + anon_sym_requires, + STATE(6773), 1, + sym_trailing_return_type, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(6889), 1, + sym_function_attributes_end, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10005), 2, + anon_sym_final, + anon_sym_override, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [260048] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8211), 1, + anon_sym_DASH_GT, + ACTIONS(10156), 1, + anon_sym_LBRACK, + ACTIONS(10190), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10193), 1, + anon_sym_requires, + STATE(6774), 1, + sym_trailing_return_type, + STATE(6835), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(6890), 1, + sym_function_attributes_end, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10179), 2, + anon_sym_final, + anon_sym_override, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [260110] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8042), 1, + anon_sym_requires, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8209), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9705), 1, + anon_sym_LBRACK_LBRACK, + STATE(6760), 1, + sym_trailing_return_type, + STATE(6852), 1, + sym_requires_clause, + STATE(6895), 1, + sym_function_attributes_end, + STATE(6904), 1, + sym_function_postfix, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [260172] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8198), 1, + anon_sym_DASH_GT, + ACTIONS(8213), 1, + anon_sym_requires, + ACTIONS(9783), 1, + anon_sym_LBRACK, + ACTIONS(10045), 1, + anon_sym_LBRACK_LBRACK, + STATE(6690), 1, + sym_function_attributes_end, + STATE(6720), 1, + sym_trailing_return_type, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(10051), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6443), 2, sym_attribute_specifier, - ACTIONS(6492), 2, + aux_sym_type_definition_repeat1, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [260234] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(6292), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6088), 3, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(6494), 21, + anon_sym_LBRACE, + ACTIONS(6090), 22, anon_sym___extension__, + anon_sym___attribute__, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -581095,23 +541962,24 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [305852] = 5, + [260270] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10267), 1, - anon_sym___attribute__, - STATE(6851), 1, - sym_attribute_specifier, - ACTIONS(6426), 2, + STATE(2848), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6064), 3, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(6428), 21, - anon_sym___extension__, - anon_sym___based, + anon_sym_LBRACE, + ACTIONS(10196), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(6066), 18, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -581127,20 +541995,24 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [305889] = 3, + [260308] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6549), 2, + STATE(2848), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6145), 3, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(6551), 22, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___based, + anon_sym_LBRACE, + ACTIONS(10199), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(6147), 18, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -581156,20 +542028,24 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [305921] = 3, + [260346] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6464), 3, + STATE(2848), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5975), 3, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(6466), 21, - anon_sym___extension__, - anon_sym___based, + anon_sym_LBRACE, + ACTIONS(10202), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(5978), 18, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -581185,138 +542061,200 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [305953] = 17, + [260384] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(8207), 1, anon_sym___attribute__, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8603), 1, + ACTIONS(8224), 1, anon_sym_DASH_GT, - ACTIONS(8605), 1, - anon_sym_requires, - ACTIONS(9902), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(7422), 1, - sym_requires_clause, - STATE(7479), 1, - sym_function_postfix, - STATE(7599), 1, + ACTIONS(9705), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9711), 1, + anon_sym_requires, + STATE(6727), 1, sym_function_attributes_end, - STATE(7730), 1, + STATE(6734), 1, sym_trailing_return_type, - STATE(8073), 1, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + STATE(7773), 1, sym_gnu_asm_expression, - ACTIONS(7918), 2, + ACTIONS(9708), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9746), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(8102), 2, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [260446] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8224), 1, + anon_sym_DASH_GT, + ACTIONS(9783), 1, + anon_sym_LBRACK, + ACTIONS(10002), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10008), 1, + anon_sym_requires, + STATE(6728), 1, + sym_function_attributes_end, + STATE(6741), 1, + sym_trailing_return_type, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(10005), 2, anon_sym_final, anon_sym_override, - STATE(6828), 2, + ACTIONS(10051), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6438), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6901), 2, + STATE(6635), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7282), 2, + STATE(6761), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(9897), 4, - anon_sym_DOT_DOT_DOT, + ACTIONS(9781), 6, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_GT2, - [306013] = 17, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [260508] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(8207), 1, anon_sym___attribute__, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8603), 1, + ACTIONS(8209), 1, anon_sym_DASH_GT, - ACTIONS(8605), 1, - anon_sym_requires, - ACTIONS(10106), 1, + ACTIONS(10156), 1, anon_sym_LBRACK, - STATE(7422), 1, - sym_requires_clause, - STATE(7444), 1, + ACTIONS(10176), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10182), 1, + anon_sym_requires, + STATE(6750), 1, + sym_trailing_return_type, + STATE(6835), 1, sym_function_postfix, - STATE(7603), 1, + STATE(6852), 1, + sym_requires_clause, + STATE(6854), 1, sym_function_attributes_end, - STATE(7731), 1, - sym_trailing_return_type, - STATE(8073), 1, + STATE(7773), 1, sym_gnu_asm_expression, - ACTIONS(7918), 2, + ACTIONS(7879), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(8102), 2, + ACTIONS(10179), 2, anon_sym_final, anon_sym_override, - STATE(6828), 2, + STATE(6438), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6901), 2, + STATE(6635), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7282), 2, + STATE(6761), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10101), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(10154), 6, anon_sym_LPAREN2, - anon_sym_GT2, - [306073] = 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [260570] = 17, ACTIONS(3), 1, sym_comment, - STATE(6287), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6032), 2, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8211), 1, + anon_sym_DASH_GT, + ACTIONS(8213), 1, + anon_sym_requires, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9749), 1, + anon_sym_LBRACK_LBRACK, + STATE(6717), 1, + sym_trailing_return_type, + STATE(6852), 1, + sym_requires_clause, + STATE(6875), 1, + sym_function_attributes_end, + STATE(6904), 1, + sym_function_postfix, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(10713), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6034), 17, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [306109] = 6, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [260632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10586), 1, - sym_auto, - ACTIONS(10588), 1, - anon_sym_decltype, - STATE(6861), 1, - sym_decltype_auto, - ACTIONS(6402), 2, + ACTIONS(10081), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(6404), 19, + ACTIONS(10079), 24, anon_sym___extension__, 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_signed, anon_sym_unsigned, anon_sym_long, @@ -581334,58 +542272,293 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, sym_primitive_type, sym_identifier, - [306147] = 11, + [260666] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8910), 1, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8211), 1, + anon_sym_DASH_GT, + ACTIONS(8213), 1, + anon_sym_requires, + ACTIONS(9783), 1, + anon_sym_LBRACK, + ACTIONS(10045), 1, + anon_sym_LBRACK_LBRACK, + STATE(6720), 1, + sym_trailing_return_type, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(6876), 1, + sym_function_attributes_end, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(8918), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [260728] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8211), 1, + anon_sym_DASH_GT, + ACTIONS(8213), 1, + anon_sym_requires, + ACTIONS(10156), 1, anon_sym_LBRACK, - ACTIONS(9085), 1, - anon_sym_STAR, - ACTIONS(9087), 1, - anon_sym_AMP_AMP, - ACTIONS(9089), 1, - anon_sym_AMP, - STATE(4322), 1, - sym_parameter_list, - STATE(7280), 1, - sym_function_declarator_seq, - STATE(7439), 1, - sym_abstract_declarator, - STATE(7278), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8858), 11, + ACTIONS(10190), 1, + anon_sym_LBRACK_LBRACK, + STATE(6721), 1, + sym_trailing_return_type, + STATE(6835), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(6877), 1, + sym_function_attributes_end, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [260790] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8209), 1, + anon_sym_DASH_GT, + ACTIONS(9783), 1, + anon_sym_LBRACK, + ACTIONS(10002), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10008), 1, + anon_sym_requires, + STATE(6741), 1, + sym_trailing_return_type, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(6897), 1, + sym_function_attributes_end, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10005), 2, + anon_sym_final, + anon_sym_override, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [260852] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8042), 1, + anon_sym_requires, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8224), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9705), 1, + anon_sym_LBRACK_LBRACK, + STATE(6716), 1, + sym_function_attributes_end, + STATE(6760), 1, + sym_trailing_return_type, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9746), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 6, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [260914] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8042), 1, + anon_sym_requires, + ACTIONS(8207), 1, anon_sym___attribute__, + ACTIONS(8224), 1, + anon_sym_DASH_GT, + ACTIONS(10156), 1, + anon_sym_LBRACK, + ACTIONS(10176), 1, anon_sym_LBRACK_LBRACK, + STATE(6722), 1, + sym_function_attributes_end, + STATE(6739), 1, + sym_trailing_return_type, + STATE(6835), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(10187), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + [260976] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8042), 1, + anon_sym_requires, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8209), 1, + anon_sym_DASH_GT, + ACTIONS(10156), 1, + anon_sym_LBRACK, + ACTIONS(10176), 1, + anon_sym_LBRACK_LBRACK, + STATE(6739), 1, + sym_trailing_return_type, + STATE(6835), 1, + sym_function_postfix, + STATE(6842), 1, + sym_function_attributes_end, + STATE(6852), 1, + sym_requires_clause, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, anon_sym_final, anon_sym_override, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_try, - anon_sym_requires, - [306195] = 5, + [261038] = 5, ACTIONS(3), 1, sym_comment, - STATE(6833), 1, + STATE(2848), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(4835), 2, + ACTIONS(6128), 3, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(10716), 4, + anon_sym_LBRACE, + ACTIONS(10206), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(4827), 17, + ACTIONS(6130), 18, anon_sym___extension__, + anon_sym___attribute__, anon_sym___based, anon_sym_const, anon_sym_constexpr, @@ -581402,63 +542575,69 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [306231] = 17, + [261076] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8603), 1, + ACTIONS(8198), 1, anon_sym_DASH_GT, - ACTIONS(8605), 1, + ACTIONS(8213), 1, anon_sym_requires, - ACTIONS(10469), 1, + ACTIONS(10156), 1, anon_sym_LBRACK, - STATE(7422), 1, - sym_requires_clause, - STATE(7462), 1, - sym_function_postfix, - STATE(7562), 1, + ACTIONS(10190), 1, + anon_sym_LBRACK_LBRACK, + STATE(6691), 1, sym_function_attributes_end, - STATE(7734), 1, + STATE(6721), 1, sym_trailing_return_type, - STATE(8073), 1, + STATE(6835), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7721), 1, sym_gnu_asm_expression, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8102), 2, + ACTIONS(6369), 2, anon_sym_final, anon_sym_override, - STATE(6828), 2, + ACTIONS(10187), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6443), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6901), 2, + STATE(6754), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7282), 2, + STATE(6761), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10464), 4, - anon_sym_DOT_DOT_DOT, + ACTIONS(10154), 6, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_GT2, - [306291] = 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [261138] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6582), 2, + STATE(6297), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6183), 3, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(6584), 22, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___based, + anon_sym_LBRACE, + ACTIONS(10209), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(6185), 18, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -581474,21 +542653,31 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [306323] = 4, + [261176] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(4835), 2, + ACTIONS(8771), 1, + sym_auto, + ACTIONS(8773), 1, + anon_sym_decltype, + STATE(5004), 1, + sym_decltype_auto, + ACTIONS(10214), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(4827), 21, - anon_sym___extension__, + STATE(6360), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(10212), 7, anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(65), 12, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -581500,141 +542689,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [306357] = 17, + [261220] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(8207), 1, anon_sym___attribute__, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8603), 1, + ACTIONS(8209), 1, anon_sym_DASH_GT, - ACTIONS(9902), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10367), 1, - anon_sym_requires, - STATE(7422), 1, - sym_requires_clause, - STATE(7479), 1, - sym_function_postfix, - STATE(7539), 1, - sym_function_attributes_end, - STATE(7738), 1, - sym_trailing_return_type, - STATE(8073), 1, - sym_gnu_asm_expression, - ACTIONS(7918), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10052), 2, - anon_sym_final, - anon_sym_override, - STATE(6828), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(9897), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [306417] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(8098), 1, + ACTIONS(9705), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8603), 1, - anon_sym_DASH_GT, - ACTIONS(10106), 1, - anon_sym_LBRACK, - ACTIONS(10510), 1, + ACTIONS(9711), 1, anon_sym_requires, - STATE(7422), 1, + STATE(6734), 1, + sym_trailing_return_type, + STATE(6852), 1, sym_requires_clause, - STATE(7444), 1, - sym_function_postfix, - STATE(7602), 1, + STATE(6865), 1, sym_function_attributes_end, - STATE(7739), 1, - sym_trailing_return_type, - STATE(8073), 1, + STATE(6904), 1, + sym_function_postfix, + STATE(7773), 1, sym_gnu_asm_expression, - ACTIONS(7918), 2, + ACTIONS(7879), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10141), 2, + ACTIONS(9708), 2, anon_sym_final, anon_sym_override, - STATE(6828), 2, + STATE(6438), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6901), 2, + STATE(6635), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7282), 2, + STATE(6761), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10101), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [306477] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5467), 2, + ACTIONS(9640), 6, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(5460), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [306511] = 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [261282] = 5, ACTIONS(3), 1, sym_comment, - STATE(6827), 1, + STATE(2848), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6005), 2, + ACTIONS(6054), 3, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(10719), 4, + anon_sym_LBRACE, + ACTIONS(10216), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6007), 17, + ACTIONS(6056), 18, anon_sym___extension__, + anon_sym___attribute__, anon_sym___based, anon_sym_const, anon_sym_constexpr, @@ -581651,21 +542767,23 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [306547] = 5, + [261320] = 5, ACTIONS(3), 1, sym_comment, - STATE(6829), 1, + STATE(6278), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6048), 2, + ACTIONS(6156), 3, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(10722), 4, + anon_sym_LBRACE, + ACTIONS(10219), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6050), 17, + ACTIONS(6158), 18, anon_sym___extension__, + anon_sym___attribute__, anon_sym___based, anon_sym_const, anon_sym_constexpr, @@ -581682,56 +542800,115 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [306583] = 7, + [261358] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10727), 1, + ACTIONS(8198), 1, + anon_sym_DASH_GT, + ACTIONS(8213), 1, + anon_sym_requires, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(5840), 2, + ACTIONS(9749), 1, + anon_sym_LBRACK_LBRACK, + STATE(6689), 1, + sym_function_attributes_end, + STATE(6717), 1, + sym_trailing_return_type, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9746), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6443), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6902), 2, + STATE(6754), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(10725), 17, - anon_sym_DOT_DOT_DOT, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 6, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, + anon_sym_try, + [261420] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8198), 1, anon_sym_DASH_GT, + ACTIONS(9783), 1, + anon_sym_LBRACK, + ACTIONS(10045), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10048), 1, + anon_sym_requires, + STATE(6698), 1, + sym_function_attributes_end, + STATE(6773), 1, + sym_trailing_return_type, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(10005), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, + ACTIONS(10051), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_try, - anon_sym_requires, - sym_semgrep_metavar, - [306623] = 5, + [261482] = 5, ACTIONS(3), 1, sym_comment, - STATE(6287), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6016), 2, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(4789), 1, + anon_sym_LBRACE, + ACTIONS(4763), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4771), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(10729), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6019), 17, + anon_sym_AMP_AMP, anon_sym___extension__, - anon_sym___based, - anon_sym_const, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -581742,24 +542919,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - sym_identifier, sym_auto, anon_sym_decltype, - [306659] = 3, + anon_sym_GT2, + sym_semgrep_metavar, + [261520] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6270), 3, + ACTIONS(8771), 1, + sym_auto, + ACTIONS(8773), 1, + anon_sym_decltype, + STATE(5004), 1, + sym_decltype_auto, + ACTIONS(10224), 2, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(6268), 21, - anon_sym___extension__, + STATE(6364), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(10222), 7, anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(65), 12, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -581771,24 +542959,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [306691] = 3, + [261564] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8042), 1, + anon_sym_requires, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8209), 1, + anon_sym_DASH_GT, + ACTIONS(9783), 1, + anon_sym_LBRACK, + ACTIONS(10002), 1, + anon_sym_LBRACK_LBRACK, + STATE(6707), 1, + sym_trailing_return_type, + STATE(6813), 1, + sym_function_attributes_end, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [261626] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6678), 2, + ACTIONS(10226), 1, + sym_identifier, + ACTIONS(10232), 1, + sym_primitive_type, + STATE(6280), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5965), 3, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(6680), 22, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___based, + anon_sym_LBRACE, + ACTIONS(10229), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(5969), 16, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -581800,69 +543037,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - sym_identifier, sym_auto, anon_sym_decltype, - [306723] = 17, + [261668] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8603), 1, + ACTIONS(8198), 1, anon_sym_DASH_GT, - ACTIONS(10469), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10733), 1, + ACTIONS(9749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9752), 1, anon_sym_requires, - STATE(7422), 1, - sym_requires_clause, - STATE(7462), 1, - sym_function_postfix, - STATE(7534), 1, + STATE(6697), 1, sym_function_attributes_end, - STATE(7740), 1, + STATE(6769), 1, sym_trailing_return_type, - STATE(8073), 1, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + STATE(7721), 1, sym_gnu_asm_expression, - ACTIONS(7918), 2, + ACTIONS(9708), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9746), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10541), 2, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [261730] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8198), 1, + anon_sym_DASH_GT, + ACTIONS(10156), 1, + anon_sym_LBRACK, + ACTIONS(10190), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10193), 1, + anon_sym_requires, + STATE(6699), 1, + sym_function_attributes_end, + STATE(6774), 1, + sym_trailing_return_type, + STATE(6835), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(10179), 2, anon_sym_final, anon_sym_override, - STATE(6828), 2, + ACTIONS(10187), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6443), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6901), 2, + STATE(6754), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7282), 2, + STATE(6761), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10464), 4, - anon_sym_DOT_DOT_DOT, + ACTIONS(10154), 6, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_GT2, - [306783] = 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [261792] = 19, ACTIONS(3), 1, sym_comment, - STATE(6287), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5990), 2, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10121), 1, + sym_identifier, + ACTIONS(10235), 1, + anon_sym_LPAREN2, + ACTIONS(10237), 1, + anon_sym_LBRACE, + ACTIONS(10241), 1, + anon_sym_requires, + STATE(2532), 1, + sym_template_type, + STATE(2703), 1, + sym_qualified_type_identifier, + STATE(5701), 1, + sym_requirement_seq, + STATE(5707), 1, + sym_requirement_clause_constraint, + STATE(6898), 1, + sym_lambda_capture_specifier, + STATE(7574), 1, + sym_scope_resolution, + STATE(8681), 1, + sym_requires_parameter_list, + ACTIONS(10239), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5682), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [261857] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10107), 1, + sym_identifier, + ACTIONS(10243), 1, + anon_sym_LPAREN2, + ACTIONS(10245), 1, + anon_sym_LBRACE, + ACTIONS(10249), 1, + anon_sym_requires, + STATE(2842), 1, + sym_template_type, + STATE(2945), 1, + sym_qualified_type_identifier, + STATE(3939), 1, + sym_requirement_seq, + STATE(4091), 1, + sym_requirement_clause_constraint, + STATE(6902), 1, + sym_lambda_capture_specifier, + STATE(7525), 1, + sym_scope_resolution, + STATE(8989), 1, + sym_requires_parameter_list, + ACTIONS(10247), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4071), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [261922] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10125), 1, + sym_identifier, + ACTIONS(10251), 1, + anon_sym_LPAREN2, + ACTIONS(10253), 1, + anon_sym_LBRACE, + ACTIONS(10257), 1, + anon_sym_requires, + STATE(2050), 1, + sym_template_type, + STATE(2137), 1, + sym_qualified_type_identifier, + STATE(2584), 1, + sym_requirement_seq, + STATE(3043), 1, + sym_requirement_clause_constraint, + STATE(6864), 1, + sym_lambda_capture_specifier, + STATE(7557), 1, + sym_scope_resolution, + STATE(8663), 1, + sym_requires_parameter_list, + ACTIONS(10255), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(2583), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [261987] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute__, + STATE(5029), 1, + sym_attribute_specifier, + ACTIONS(6020), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(10736), 4, + ACTIONS(6022), 21, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5992), 17, - anon_sym___extension__, - anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -581878,55 +543299,23 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [306819] = 7, + [262024] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(43), 1, anon_sym___attribute__, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10741), 1, - anon_sym_LBRACK, - STATE(5840), 2, + STATE(5052), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6894), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10739), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - sym_semgrep_metavar, - [306859] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(6287), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5996), 2, + ACTIONS(6068), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(10743), 4, + ACTIONS(6070), 21, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5998), 17, - anon_sym___extension__, - anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -581942,15 +543331,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [306895] = 3, + [262061] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6696), 2, + ACTIONS(43), 1, + anon_sym___attribute__, + STATE(5037), 1, + sym_attribute_specifier, + ACTIONS(6030), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(6698), 22, + ACTIONS(6032), 21, anon_sym___extension__, - anon_sym___attribute__, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -581971,26 +543363,23 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [306927] = 7, + [262098] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10746), 1, - sym_identifier, - ACTIONS(10752), 1, - sym_primitive_type, - STATE(6823), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6022), 2, + ACTIONS(43), 1, + anon_sym___attribute__, + STATE(5016), 1, + sym_attribute_specifier, + ACTIONS(6102), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(10749), 4, + ACTIONS(6104), 21, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6026), 15, - anon_sym___extension__, - anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -582002,17 +543391,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + sym_primitive_type, + sym_identifier, sym_auto, anon_sym_decltype, - [306967] = 3, + [262135] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6541), 2, + ACTIONS(43), 1, + anon_sym___attribute__, + STATE(5038), 1, + sym_attribute_specifier, + ACTIONS(6034), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(6543), 22, + ACTIONS(6036), 21, anon_sym___extension__, - anon_sym___attribute__, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -582033,44 +543427,201 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [306999] = 5, + [262172] = 19, ACTIONS(3), 1, sym_comment, - STATE(6287), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6062), 2, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10101), 1, + sym_identifier, + ACTIONS(10259), 1, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(10755), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6064), 17, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + ACTIONS(10261), 1, + anon_sym_LBRACE, + ACTIONS(10265), 1, + anon_sym_requires, + STATE(2919), 1, + sym_template_type, + STATE(3097), 1, + sym_qualified_type_identifier, + STATE(5170), 1, + sym_requirement_seq, + STATE(5642), 1, + sym_requirement_clause_constraint, + STATE(6901), 1, + sym_lambda_capture_specifier, + STATE(7556), 1, + sym_scope_resolution, + STATE(9080), 1, + sym_requires_parameter_list, + ACTIONS(10263), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5169), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [262237] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10146), 1, sym_identifier, - sym_auto, + ACTIONS(10251), 1, + anon_sym_LPAREN2, + ACTIONS(10253), 1, + anon_sym_LBRACE, + ACTIONS(10257), 1, + anon_sym_requires, + STATE(2050), 1, + sym_template_type, + STATE(2137), 1, + sym_qualified_type_identifier, + STATE(2584), 1, + sym_requirement_seq, + STATE(3193), 1, + sym_requirement_clause_constraint, + STATE(6864), 1, + sym_lambda_capture_specifier, + STATE(7549), 1, + sym_scope_resolution, + STATE(8663), 1, + sym_requires_parameter_list, + ACTIONS(10255), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(2583), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [262302] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, anon_sym_decltype, - [307035] = 3, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10138), 1, + sym_identifier, + ACTIONS(10267), 1, + anon_sym_LPAREN2, + ACTIONS(10269), 1, + anon_sym_LBRACE, + ACTIONS(10273), 1, + anon_sym_requires, + STATE(2674), 1, + sym_template_type, + STATE(2747), 1, + sym_qualified_type_identifier, + STATE(3462), 1, + sym_requirement_seq, + STATE(3463), 1, + sym_requirement_clause_constraint, + STATE(6853), 1, + sym_lambda_capture_specifier, + STATE(7547), 1, + sym_scope_resolution, + STATE(8781), 1, + sym_requires_parameter_list, + ACTIONS(10271), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(3456), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [262367] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(6520), 2, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10119), 1, + sym_identifier, + ACTIONS(10275), 1, + anon_sym_LPAREN2, + ACTIONS(10277), 1, + anon_sym_LBRACE, + ACTIONS(10281), 1, + anon_sym_requires, + STATE(2808), 1, + sym_template_type, + STATE(2845), 1, + sym_qualified_type_identifier, + STATE(3763), 1, + sym_requirement_seq, + STATE(3765), 1, + sym_requirement_clause_constraint, + STATE(6817), 1, + sym_lambda_capture_specifier, + STATE(7544), 1, + sym_scope_resolution, + STATE(8717), 1, + sym_requires_parameter_list, + ACTIONS(10279), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(3761), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [262432] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute__, + STATE(4950), 1, + sym_attribute_specifier, + ACTIONS(6094), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(6522), 21, + ACTIONS(6096), 21, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -582092,13 +543643,61 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [307066] = 3, + [262469] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6590), 2, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8259), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9793), 1, + anon_sym_requires, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + STATE(6915), 1, + sym_function_attributes_end, + STATE(7191), 1, + sym_trailing_return_type, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9708), 2, + anon_sym_final, + anon_sym_override, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [262530] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute__, + STATE(5053), 1, + sym_attribute_specifier, + ACTIONS(6072), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(6592), 21, + ACTIONS(6074), 21, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -582120,13 +543719,149 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [307097] = 3, + [262567] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8259), 1, + anon_sym_DASH_GT, + ACTIONS(8280), 1, + anon_sym_requires, + ACTIONS(9783), 1, + anon_sym_LBRACK, + ACTIONS(10045), 1, + anon_sym_LBRACK_LBRACK, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(6944), 1, + sym_function_attributes_end, + STATE(7160), 1, + sym_trailing_return_type, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [262628] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8259), 1, + anon_sym_DASH_GT, + ACTIONS(9783), 1, + anon_sym_LBRACK, + ACTIONS(10045), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10096), 1, + anon_sym_requires, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(6941), 1, + sym_function_attributes_end, + STATE(7203), 1, + sym_trailing_return_type, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10005), 2, + anon_sym_final, + anon_sym_override, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [262689] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8275), 1, + anon_sym_DASH_GT, + ACTIONS(10156), 1, + anon_sym_LBRACK, + ACTIONS(10283), 1, + anon_sym_requires, + STATE(7016), 1, + sym_function_attributes_end, + STATE(7021), 1, + sym_requires_clause, + STATE(7094), 1, + sym_function_postfix, + STATE(7209), 1, + sym_trailing_return_type, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10158), 2, + anon_sym_final, + anon_sym_override, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + [262750] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 2, + ACTIONS(43), 1, + anon_sym___attribute__, + STATE(5051), 1, + sym_attribute_specifier, + ACTIONS(6060), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(6608), 21, + ACTIONS(6062), 21, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -582148,13 +543883,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [307128] = 3, + [262787] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6686), 2, + ACTIONS(43), 1, + anon_sym___attribute__, + STATE(5012), 1, + sym_attribute_specifier, + ACTIONS(6084), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(6688), 21, + ACTIONS(6086), 21, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -582176,13 +543915,105 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [307159] = 3, + [262824] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8259), 1, + anon_sym_DASH_GT, + ACTIONS(8280), 1, + anon_sym_requires, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9749), 1, + anon_sym_LBRACK_LBRACK, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + STATE(6906), 1, + sym_function_attributes_end, + STATE(7220), 1, + sym_trailing_return_type, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [262885] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8275), 1, + anon_sym_DASH_GT, + ACTIONS(9783), 1, + anon_sym_LBRACK, + ACTIONS(10076), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7073), 1, + sym_function_postfix, + STATE(7108), 1, + sym_function_attributes_end, + STATE(7222), 1, + sym_trailing_return_type, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9785), 2, + anon_sym_final, + anon_sym_override, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + [262946] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5467), 2, + ACTIONS(43), 1, + anon_sym___attribute__, + STATE(5032), 1, + sym_attribute_specifier, + ACTIONS(6024), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(5460), 21, + ACTIONS(6026), 21, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -582204,41 +544035,195 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [307190] = 3, + [262983] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8275), 1, + anon_sym_DASH_GT, + ACTIONS(8285), 1, + anon_sym_requires, + ACTIONS(9783), 1, + anon_sym_LBRACK, + STATE(7021), 1, + sym_requires_clause, + STATE(7052), 1, + sym_function_attributes_end, + STATE(7073), 1, + sym_function_postfix, + STATE(7187), 1, + sym_trailing_return_type, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + [263044] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6638), 2, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8259), 1, + anon_sym_DASH_GT, + ACTIONS(10156), 1, + anon_sym_LBRACK, + ACTIONS(10190), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10286), 1, + anon_sym_requires, + STATE(6835), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(6967), 1, + sym_function_attributes_end, + STATE(7205), 1, + sym_trailing_return_type, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10179), 2, + anon_sym_final, + anon_sym_override, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 5, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(6640), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [263105] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, anon_sym_decltype, - [307221] = 3, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10148), 1, + sym_identifier, + ACTIONS(10289), 1, + anon_sym_LPAREN2, + ACTIONS(10291), 1, + anon_sym_LBRACE, + ACTIONS(10295), 1, + anon_sym_requires, + STATE(2582), 1, + sym_template_type, + STATE(2696), 1, + sym_qualified_type_identifier, + STATE(4403), 1, + sym_requirement_seq, + STATE(4786), 1, + sym_requirement_clause_constraint, + STATE(6868), 1, + sym_lambda_capture_specifier, + STATE(7516), 1, + sym_scope_resolution, + STATE(8897), 1, + sym_requires_parameter_list, + ACTIONS(10293), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4433), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [263170] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8275), 1, + anon_sym_DASH_GT, + ACTIONS(8285), 1, + anon_sym_requires, + ACTIONS(10156), 1, + anon_sym_LBRACK, + STATE(7021), 1, + sym_requires_clause, + STATE(7045), 1, + sym_function_attributes_end, + STATE(7094), 1, + sym_function_postfix, + STATE(7173), 1, + sym_trailing_return_type, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + [263231] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6308), 2, + ACTIONS(43), 1, + anon_sym___attribute__, + STATE(5064), 1, + sym_attribute_specifier, + ACTIONS(6098), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(6310), 21, + ACTIONS(6100), 21, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -582260,20 +544245,29 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [307252] = 3, + [263268] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6662), 2, + ACTIONS(5725), 1, + anon_sym_AMP, + ACTIONS(10300), 1, + anon_sym_const, + STATE(6335), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(5727), 10, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(6664), 21, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + ACTIONS(10297), 11, anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -582284,24 +544278,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [307283] = 3, + [263307] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8259), 1, + anon_sym_DASH_GT, + ACTIONS(8280), 1, + anon_sym_requires, + ACTIONS(10156), 1, + anon_sym_LBRACK, + ACTIONS(10190), 1, + anon_sym_LBRACK_LBRACK, + STATE(6835), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(6934), 1, + sym_function_attributes_end, + STATE(7172), 1, + sym_trailing_return_type, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [263368] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8275), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9796), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7068), 1, + sym_function_postfix, + STATE(7091), 1, + sym_function_attributes_end, + STATE(7171), 1, + sym_trailing_return_type, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9657), 2, + anon_sym_final, + anon_sym_override, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + [263429] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6666), 2, + ACTIONS(4789), 1, + anon_sym_LBRACE, + ACTIONS(4763), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4771), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(6668), 21, + anon_sym_AMP_AMP, anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -582312,17 +544393,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - sym_identifier, sym_auto, anon_sym_decltype, - [307314] = 3, + anon_sym_GT2, + sym_semgrep_metavar, + [263464] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6557), 2, + ACTIONS(43), 1, + anon_sym___attribute__, + STATE(5049), 1, + sym_attribute_specifier, + ACTIONS(6050), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(6559), 21, + ACTIONS(6052), 21, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -582344,111 +544429,576 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [307345] = 3, + [263501] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(6614), 2, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10123), 1, + sym_identifier, + ACTIONS(10303), 1, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(6616), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + ACTIONS(10305), 1, + anon_sym_LBRACE, + ACTIONS(10309), 1, + anon_sym_requires, + STATE(4123), 1, + sym_template_type, + STATE(4280), 1, + sym_qualified_type_identifier, + STATE(4830), 1, + sym_requirement_seq, + STATE(4831), 1, + sym_requirement_clause_constraint, + STATE(6827), 1, + sym_lambda_capture_specifier, + STATE(7541), 1, + sym_scope_resolution, + STATE(9023), 1, + sym_requires_parameter_list, + ACTIONS(10307), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4829), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [263566] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8275), 1, + anon_sym_DASH_GT, + ACTIONS(8285), 1, + anon_sym_requires, + ACTIONS(9642), 1, + anon_sym_LBRACK, + STATE(7021), 1, + sym_requires_clause, + STATE(7062), 1, + sym_function_attributes_end, + STATE(7068), 1, + sym_function_postfix, + STATE(7161), 1, + sym_trailing_return_type, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + [263627] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10129), 1, sym_identifier, - sym_auto, + ACTIONS(10311), 1, + anon_sym_LPAREN2, + ACTIONS(10313), 1, + anon_sym_LBRACE, + ACTIONS(10317), 1, + anon_sym_requires, + STATE(4400), 1, + sym_template_type, + STATE(4457), 1, + sym_qualified_type_identifier, + STATE(4956), 1, + sym_requirement_seq, + STATE(4957), 1, + sym_requirement_clause_constraint, + STATE(6837), 1, + sym_lambda_capture_specifier, + STATE(7545), 1, + sym_scope_resolution, + STATE(8699), 1, + sym_requires_parameter_list, + ACTIONS(10315), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4955), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [263692] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10152), 1, + sym_identifier, + ACTIONS(10319), 1, + anon_sym_LPAREN2, + ACTIONS(10321), 1, + anon_sym_LBRACE, + ACTIONS(10325), 1, + anon_sym_requires, + STATE(3076), 1, + sym_template_type, + STATE(3176), 1, + sym_qualified_type_identifier, + STATE(4259), 1, + sym_requirement_clause_constraint, + STATE(4283), 1, + sym_requirement_seq, + STATE(6863), 1, + sym_lambda_capture_specifier, + STATE(7542), 1, + sym_scope_resolution, + STATE(8762), 1, + sym_requires_parameter_list, + ACTIONS(10323), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4258), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [263757] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, anon_sym_decltype, - [307376] = 11, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10150), 1, + sym_identifier, + ACTIONS(10327), 1, + anon_sym_LPAREN2, + ACTIONS(10329), 1, + anon_sym_LBRACE, + ACTIONS(10333), 1, + anon_sym_requires, + STATE(2931), 1, + sym_template_type, + STATE(3099), 1, + sym_qualified_type_identifier, + STATE(4170), 1, + sym_requirement_seq, + STATE(4220), 1, + sym_requirement_clause_constraint, + STATE(6832), 1, + sym_lambda_capture_specifier, + STATE(7552), 1, + sym_scope_resolution, + STATE(8916), 1, + sym_requires_parameter_list, + ACTIONS(10331), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4219), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [263822] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8301), 1, + anon_sym_DASH_GT, + ACTIONS(8303), 1, + anon_sym_requires, + ACTIONS(10156), 1, + anon_sym_LBRACK, + STATE(7021), 1, + sym_requires_clause, + STATE(7094), 1, + sym_function_postfix, + STATE(7120), 1, + sym_function_attributes_end, + STATE(7345), 1, + sym_trailing_return_type, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [263882] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8301), 1, + anon_sym_DASH_GT, + ACTIONS(10156), 1, + anon_sym_LBRACK, + ACTIONS(10335), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7094), 1, + sym_function_postfix, + STATE(7151), 1, + sym_function_attributes_end, + STATE(7317), 1, + sym_trailing_return_type, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10158), 2, + anon_sym_final, + anon_sym_override, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [263942] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8719), 1, + anon_sym_LPAREN2, + ACTIONS(8727), 1, + anon_sym_LBRACK, + ACTIONS(8743), 1, + anon_sym_STAR, + ACTIONS(8745), 1, + anon_sym_AMP_AMP, + ACTIONS(8747), 1, + anon_sym_AMP, + STATE(4192), 1, + sym_parameter_list, + STATE(6893), 1, + sym_function_declarator_seq, + STATE(7084), 1, + sym_abstract_declarator, + STATE(6892), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8561), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [263990] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8719), 1, + anon_sym_LPAREN2, + ACTIONS(8727), 1, + anon_sym_LBRACK, + ACTIONS(8735), 1, + anon_sym_STAR, + ACTIONS(8737), 1, + anon_sym_AMP_AMP, + ACTIONS(8739), 1, + anon_sym_AMP, + STATE(4171), 1, + sym_parameter_list, + STATE(6893), 1, + sym_function_declarator_seq, + STATE(7077), 1, + sym_abstract_declarator, + STATE(6892), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8561), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [264038] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8301), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9967), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7068), 1, + sym_function_postfix, + STATE(7144), 1, + sym_function_attributes_end, + STATE(7313), 1, + sym_trailing_return_type, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9657), 2, + anon_sym_final, + anon_sym_override, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [264098] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8301), 1, + anon_sym_DASH_GT, + ACTIONS(9783), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7073), 1, + sym_function_postfix, + STATE(7146), 1, + sym_function_attributes_end, + STATE(7316), 1, + sym_trailing_return_type, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9785), 2, + anon_sym_final, + anon_sym_override, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [264158] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(8719), 1, anon_sym_LPAREN2, - ACTIONS(9097), 1, + ACTIONS(8721), 1, anon_sym_STAR, - ACTIONS(9099), 1, + ACTIONS(8723), 1, anon_sym_AMP_AMP, - ACTIONS(9101), 1, + ACTIONS(8725), 1, anon_sym_AMP, - ACTIONS(9105), 1, + ACTIONS(8727), 1, anon_sym_LBRACK, - STATE(4035), 1, + STATE(4006), 1, sym_parameter_list, - STATE(7450), 1, + STATE(6893), 1, sym_function_declarator_seq, - STATE(7605), 1, + STATE(7039), 1, sym_abstract_declarator, - STATE(7464), 5, + STATE(6892), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8858), 10, + ACTIONS(8561), 11, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [307423] = 3, + [264206] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6561), 2, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8301), 1, + anon_sym_DASH_GT, + ACTIONS(8303), 1, + anon_sym_requires, + ACTIONS(9642), 1, + anon_sym_LBRACK, + STATE(7021), 1, + sym_requires_clause, + STATE(7068), 1, + sym_function_postfix, + STATE(7225), 1, + sym_function_attributes_end, + STATE(7338), 1, + sym_trailing_return_type, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(6563), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [307454] = 3, + anon_sym_GT2, + [264266] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6670), 2, + STATE(6292), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4771), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(6672), 21, - anon_sym___extension__, - anon_sym___based, + ACTIONS(10338), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(4763), 17, + anon_sym___extension__, + anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -582464,132 +545014,230 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [307485] = 3, + [264302] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6610), 2, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8301), 1, + anon_sym_DASH_GT, + ACTIONS(8303), 1, + anon_sym_requires, + ACTIONS(9783), 1, + anon_sym_LBRACK, + STATE(7021), 1, + sym_requires_clause, + STATE(7073), 1, + sym_function_postfix, + STATE(7118), 1, + sym_function_attributes_end, + STATE(7343), 1, + sym_trailing_return_type, + STATE(7721), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(6612), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [307516] = 3, + anon_sym_GT2, + [264362] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6656), 2, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8326), 1, + anon_sym_DASH_GT, + ACTIONS(8328), 1, + anon_sym_requires, + ACTIONS(10156), 1, + anon_sym_LBRACK, + STATE(7021), 1, + sym_requires_clause, + STATE(7094), 1, + sym_function_postfix, + STATE(7282), 1, + sym_function_attributes_end, + STATE(7422), 1, + sym_trailing_return_type, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 3, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(6658), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [307547] = 3, + sym_semgrep_metavar, + [264421] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6674), 2, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8326), 1, + anon_sym_DASH_GT, + ACTIONS(10156), 1, + anon_sym_LBRACK, + ACTIONS(10341), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7094), 1, + sym_function_postfix, + STATE(7293), 1, + sym_function_attributes_end, + STATE(7458), 1, + sym_trailing_return_type, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10158), 2, + anon_sym_final, + anon_sym_override, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 3, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(6676), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [307578] = 3, + sym_semgrep_metavar, + [264480] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6594), 2, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8326), 1, + anon_sym_DASH_GT, + ACTIONS(8328), 1, + anon_sym_requires, + ACTIONS(9642), 1, + anon_sym_LBRACK, + STATE(7021), 1, + sym_requires_clause, + STATE(7068), 1, + sym_function_postfix, + STATE(7276), 1, + sym_function_attributes_end, + STATE(7419), 1, + sym_trailing_return_type, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 3, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(6596), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [307609] = 3, + sym_semgrep_metavar, + [264539] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8326), 1, + anon_sym_DASH_GT, + ACTIONS(8328), 1, + anon_sym_requires, + ACTIONS(9783), 1, + anon_sym_LBRACK, + STATE(7021), 1, + sym_requires_clause, + STATE(7073), 1, + sym_function_postfix, + STATE(7279), 1, + sym_function_attributes_end, + STATE(7421), 1, + sym_trailing_return_type, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + sym_semgrep_metavar, + [264598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6628), 2, + ACTIONS(3700), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(3702), 21, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(6630), 21, + anon_sym_AMP_AMP, anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -582600,23 +545248,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [307640] = 3, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [264629] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6586), 2, + ACTIONS(10346), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(6588), 21, - anon_sym___extension__, + STATE(5846), 2, + sym_type_qualifier, + aux_sym_type_definition_type_repeat1, + ACTIONS(10344), 7, anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(65), 12, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -582628,48 +545283,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [307671] = 3, + [264664] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4835), 2, + ACTIONS(5455), 1, anon_sym_LPAREN2, + ACTIONS(8757), 1, anon_sym_STAR, - ACTIONS(4827), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [307702] = 5, + ACTIONS(8759), 1, + anon_sym_AMP_AMP, + ACTIONS(8761), 1, + anon_sym_AMP, + ACTIONS(8765), 1, + anon_sym_LBRACK, + STATE(3830), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7208), 1, + sym_abstract_declarator, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8561), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [264711] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(10760), 2, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8326), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(10068), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7068), 1, + sym_function_postfix, + STATE(7275), 1, + sym_function_attributes_end, + STATE(7455), 1, + sym_trailing_return_type, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9657), 2, + anon_sym_final, + anon_sym_override, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + sym_semgrep_metavar, + [264770] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8326), 1, + anon_sym_DASH_GT, + ACTIONS(9783), 1, + anon_sym_LBRACK, + ACTIONS(10167), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7073), 1, + sym_function_postfix, + STATE(7271), 1, + sym_function_attributes_end, + STATE(7457), 1, + sym_trailing_return_type, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9785), 2, + anon_sym_final, + anon_sym_override, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + sym_semgrep_metavar, + [264829] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10350), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(6858), 2, + STATE(5846), 2, sym_type_qualifier, aux_sym_type_definition_type_repeat1, - ACTIONS(10758), 7, + ACTIONS(10348), 7, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -582677,7 +545420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(9498), 12, + ACTIONS(65), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -582690,636 +545433,1353 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [307737] = 3, + [264864] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4835), 2, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8285), 1, + anon_sym_requires, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8425), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, + anon_sym_LBRACK, + STATE(7021), 1, + sym_requires_clause, + STATE(7068), 1, + sym_function_postfix, + STATE(7161), 1, + sym_trailing_return_type, + STATE(7358), 1, + sym_function_attributes_end, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9640), 2, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(4827), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + anon_sym_COLON, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + [264922] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10150), 1, sym_identifier, - sym_auto, + ACTIONS(10333), 1, + anon_sym_requires, + ACTIONS(10352), 1, + anon_sym_LPAREN2, + STATE(2931), 1, + sym_template_type, + STATE(3099), 1, + sym_qualified_type_identifier, + STATE(4139), 1, + sym_requirement_clause_constraint, + STATE(6832), 1, + sym_lambda_capture_specifier, + STATE(7552), 1, + sym_scope_resolution, + ACTIONS(10331), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4219), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [264978] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, anon_sym_decltype, - [307768] = 3, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10140), 1, + sym_identifier, + ACTIONS(10295), 1, + anon_sym_requires, + ACTIONS(10354), 1, + anon_sym_LPAREN2, + STATE(2582), 1, + sym_template_type, + STATE(2696), 1, + sym_qualified_type_identifier, + STATE(6868), 1, + sym_lambda_capture_specifier, + STATE(6987), 1, + sym_requirement_clause_constraint, + STATE(7523), 1, + sym_scope_resolution, + ACTIONS(10293), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4433), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [265034] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6642), 2, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10150), 1, + sym_identifier, + ACTIONS(10333), 1, + anon_sym_requires, + ACTIONS(10352), 1, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(6644), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + STATE(2931), 1, + sym_template_type, + STATE(3099), 1, + sym_qualified_type_identifier, + STATE(4140), 1, + sym_requirement_clause_constraint, + STATE(6832), 1, + sym_lambda_capture_specifier, + STATE(7552), 1, + sym_scope_resolution, + ACTIONS(10331), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4219), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [265090] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10148), 1, sym_identifier, - sym_auto, + ACTIONS(10295), 1, + anon_sym_requires, + ACTIONS(10354), 1, + anon_sym_LPAREN2, + STATE(2582), 1, + sym_template_type, + STATE(2696), 1, + sym_qualified_type_identifier, + STATE(4397), 1, + sym_requirement_clause_constraint, + STATE(6868), 1, + sym_lambda_capture_specifier, + STATE(7516), 1, + sym_scope_resolution, + ACTIONS(10293), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4433), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [265146] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10358), 1, + anon_sym_LBRACK, + STATE(5609), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6643), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10356), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + sym_semgrep_metavar, + [265184] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, anon_sym_decltype, - [307799] = 5, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10152), 1, + sym_identifier, + ACTIONS(10325), 1, + anon_sym_requires, + ACTIONS(10360), 1, + anon_sym_LPAREN2, + STATE(3076), 1, + sym_template_type, + STATE(3176), 1, + sym_qualified_type_identifier, + STATE(4346), 1, + sym_requirement_clause_constraint, + STATE(6863), 1, + sym_lambda_capture_specifier, + STATE(7542), 1, + sym_scope_resolution, + ACTIONS(10323), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4258), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [265240] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5729), 2, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10117), 1, + sym_identifier, + ACTIONS(10362), 1, anon_sym_LPAREN2, - anon_sym_STAR, - STATE(6858), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(5727), 7, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, + ACTIONS(10366), 1, + anon_sym_requires, + STATE(5722), 1, + sym_template_type, + STATE(5753), 1, + sym_qualified_type_identifier, + STATE(6869), 1, + sym_lambda_capture_specifier, + STATE(6907), 1, + sym_requirement_clause_constraint, + STATE(7539), 1, + sym_scope_resolution, + ACTIONS(10364), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(7006), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [265296] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10117), 1, sym_identifier, - ACTIONS(10762), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [307834] = 5, + ACTIONS(10362), 1, + anon_sym_LPAREN2, + ACTIONS(10366), 1, + anon_sym_requires, + STATE(5722), 1, + sym_template_type, + STATE(5753), 1, + sym_qualified_type_identifier, + STATE(6869), 1, + sym_lambda_capture_specifier, + STATE(7008), 1, + sym_requirement_clause_constraint, + STATE(7539), 1, + sym_scope_resolution, + ACTIONS(10364), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(7006), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [265352] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(10767), 2, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8386), 1, + anon_sym_DASH_GT, + ACTIONS(8388), 1, + anon_sym_requires, + ACTIONS(10156), 1, + anon_sym_LBRACK, + ACTIONS(10176), 1, + anon_sym_LBRACK_LBRACK, + STATE(6835), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7242), 1, + sym_function_attributes_end, + STATE(7413), 1, + sym_trailing_return_type, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10154), 2, anon_sym_LPAREN2, - anon_sym_STAR, - STATE(6858), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(10765), 7, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, + anon_sym_COLON, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + [265410] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10368), 1, sym_identifier, - ACTIONS(9498), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [307869] = 3, + ACTIONS(10370), 1, + anon_sym_LPAREN2, + ACTIONS(10374), 1, + anon_sym_requires, + STATE(2581), 1, + sym_qualified_type_identifier, + STATE(2629), 1, + sym_requirement_clause_constraint, + STATE(2646), 1, + sym_template_type, + STATE(6836), 1, + sym_lambda_capture_specifier, + STATE(7517), 1, + sym_scope_resolution, + ACTIONS(10372), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(1859), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [265466] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6652), 2, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8425), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9796), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7068), 1, + sym_function_postfix, + STATE(7171), 1, + sym_trailing_return_type, + STATE(7371), 1, + sym_function_attributes_end, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9640), 2, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(6654), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + anon_sym_COLON, + ACTIONS(9657), 2, + anon_sym_final, + anon_sym_override, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + [265524] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10101), 1, sym_identifier, - sym_auto, + ACTIONS(10265), 1, + anon_sym_requires, + ACTIONS(10376), 1, + anon_sym_LPAREN2, + STATE(2919), 1, + sym_template_type, + STATE(3097), 1, + sym_qualified_type_identifier, + STATE(4953), 1, + sym_requirement_clause_constraint, + STATE(6901), 1, + sym_lambda_capture_specifier, + STATE(7556), 1, + sym_scope_resolution, + ACTIONS(10263), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5169), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [265580] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, anon_sym_decltype, - [307900] = 3, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10121), 1, + sym_identifier, + ACTIONS(10241), 1, + anon_sym_requires, + ACTIONS(10378), 1, + anon_sym_LPAREN2, + STATE(2532), 1, + sym_template_type, + STATE(2703), 1, + sym_qualified_type_identifier, + STATE(5748), 1, + sym_requirement_clause_constraint, + STATE(6898), 1, + sym_lambda_capture_specifier, + STATE(7574), 1, + sym_scope_resolution, + ACTIONS(10239), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5682), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [265636] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6602), 2, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10127), 1, + sym_identifier, + ACTIONS(10380), 1, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(6604), 21, - anon_sym___extension__, + ACTIONS(10384), 1, + anon_sym_requires, + STATE(3094), 1, + sym_template_type, + STATE(3322), 1, + sym_qualified_type_identifier, + STATE(6838), 1, + sym_lambda_capture_specifier, + STATE(7428), 1, + sym_requirement_clause_constraint, + STATE(7551), 1, + sym_scope_resolution, + ACTIONS(10382), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6749), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [265692] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10107), 1, + sym_identifier, + ACTIONS(10249), 1, + anon_sym_requires, + ACTIONS(10386), 1, + anon_sym_LPAREN2, + STATE(2842), 1, + sym_template_type, + STATE(2945), 1, + sym_qualified_type_identifier, + STATE(3986), 1, + sym_requirement_clause_constraint, + STATE(6902), 1, + sym_lambda_capture_specifier, + STATE(7525), 1, + sym_scope_resolution, + ACTIONS(10247), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4071), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [265748] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + ACTIONS(135), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(9197), 1, + anon_sym_STAR, + ACTIONS(10388), 1, sym_identifier, - sym_auto, + ACTIONS(10390), 1, + anon_sym_template, + STATE(3105), 1, + sym_qualified_type_identifier, + STATE(6381), 1, + sym_scope_resolution, + STATE(9517), 1, + sym_ms_based_modifier, + STATE(9605), 1, + sym_decltype, + STATE(3100), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(8110), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(3095), 6, + sym_pointer_type_declarator, + sym_template_function, + sym_destructor_name, + sym_dependent_identifier, + sym_qualified_identifier, + sym_operator_name, + [265804] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10140), 1, + sym_identifier, + ACTIONS(10295), 1, + anon_sym_requires, + ACTIONS(10354), 1, + anon_sym_LPAREN2, + STATE(2582), 1, + sym_template_type, + STATE(2696), 1, + sym_qualified_type_identifier, + STATE(6868), 1, + sym_lambda_capture_specifier, + STATE(6940), 1, + sym_requirement_clause_constraint, + STATE(7523), 1, + sym_scope_resolution, + ACTIONS(10293), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4433), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [265860] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, anon_sym_decltype, - [307931] = 3, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10138), 1, + sym_identifier, + ACTIONS(10273), 1, + anon_sym_requires, + ACTIONS(10392), 1, + anon_sym_LPAREN2, + STATE(2674), 1, + sym_template_type, + STATE(2747), 1, + sym_qualified_type_identifier, + STATE(3383), 1, + sym_requirement_clause_constraint, + STATE(6853), 1, + sym_lambda_capture_specifier, + STATE(7547), 1, + sym_scope_resolution, + ACTIONS(10271), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(3456), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [265916] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6553), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(6555), 21, - anon_sym___extension__, + ACTIONS(43), 1, + anon_sym___attribute__, + ACTIONS(51), 1, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(8649), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - [307962] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6570), 2, + ACTIONS(8651), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8653), 1, anon_sym_LPAREN2, + ACTIONS(8655), 1, anon_sym_STAR, - ACTIONS(6572), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [307993] = 3, + ACTIONS(8657), 1, + anon_sym_AMP_AMP, + ACTIONS(8659), 1, + anon_sym_AMP, + ACTIONS(10394), 1, + anon_sym_SEMI, + STATE(6444), 1, + sym_field_declarator, + STATE(9402), 1, + sym_ms_based_modifier, + STATE(9718), 1, + sym_attribute_specifier, + STATE(7368), 2, + sym_operator_name, + sym_semgrep_ellipsis, + STATE(7399), 7, + 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, + [265972] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6682), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(6684), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, anon_sym_decltype, - [308024] = 3, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10103), 1, + sym_identifier, + ACTIONS(10295), 1, + anon_sym_requires, + ACTIONS(10354), 1, + anon_sym_LPAREN2, + STATE(2582), 1, + sym_template_type, + STATE(2696), 1, + sym_qualified_type_identifier, + STATE(6868), 1, + sym_lambda_capture_specifier, + STATE(7438), 1, + sym_requirement_clause_constraint, + STATE(7524), 1, + sym_scope_resolution, + ACTIONS(10293), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4433), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [266028] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6545), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(6547), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, anon_sym_decltype, - [308055] = 3, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10368), 1, + sym_identifier, + ACTIONS(10370), 1, + anon_sym_LPAREN2, + ACTIONS(10374), 1, + anon_sym_requires, + STATE(2581), 1, + sym_qualified_type_identifier, + STATE(2595), 1, + sym_requirement_clause_constraint, + STATE(2646), 1, + sym_template_type, + STATE(6836), 1, + sym_lambda_capture_specifier, + STATE(7517), 1, + sym_scope_resolution, + ACTIONS(10372), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(1859), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [266084] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6237), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(6239), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, anon_sym_decltype, - [308086] = 3, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10140), 1, + sym_identifier, + ACTIONS(10295), 1, + anon_sym_requires, + ACTIONS(10354), 1, + anon_sym_LPAREN2, + STATE(2582), 1, + sym_template_type, + STATE(2696), 1, + sym_qualified_type_identifier, + STATE(4397), 1, + sym_requirement_clause_constraint, + STATE(6868), 1, + sym_lambda_capture_specifier, + STATE(7523), 1, + sym_scope_resolution, + ACTIONS(10293), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4433), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [266140] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6692), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(6694), 21, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, anon_sym_decltype, - [308117] = 3, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10101), 1, + sym_identifier, + ACTIONS(10265), 1, + anon_sym_requires, + ACTIONS(10376), 1, + anon_sym_LPAREN2, + STATE(2919), 1, + sym_template_type, + STATE(3097), 1, + sym_qualified_type_identifier, + STATE(5647), 1, + sym_requirement_clause_constraint, + STATE(6901), 1, + sym_lambda_capture_specifier, + STATE(7556), 1, + sym_scope_resolution, + ACTIONS(10263), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5169), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [266196] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6598), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(6600), 21, - anon_sym___extension__, + ACTIONS(51), 1, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(9123), 1, + anon_sym_STAR, + ACTIONS(10396), 1, sym_identifier, - sym_auto, + ACTIONS(10398), 1, + anon_sym_TILDE, + ACTIONS(10400), 1, + anon_sym_template, + ACTIONS(10402), 1, + anon_sym_operator, + STATE(3105), 1, + sym_qualified_type_identifier, + STATE(6389), 1, + sym_scope_resolution, + STATE(9248), 1, + sym_ms_based_modifier, + STATE(9605), 1, + sym_decltype, + STATE(3100), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(8110), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(3095), 6, + sym_pointer_type_declarator, + sym_template_function, + sym_destructor_name, + sym_dependent_identifier, + sym_qualified_identifier, + sym_operator_name, + [266252] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, anon_sym_decltype, - [308148] = 16, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10109), 1, + sym_identifier, + ACTIONS(10370), 1, + anon_sym_LPAREN2, + ACTIONS(10374), 1, + anon_sym_requires, + STATE(1861), 1, + sym_requirement_clause_constraint, + STATE(3094), 1, + sym_template_type, + STATE(3098), 1, + sym_qualified_type_identifier, + STATE(6821), 1, + sym_lambda_capture_specifier, + STATE(7528), 1, + sym_scope_resolution, + ACTIONS(10372), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(1859), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [266308] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, + ACTIONS(3044), 1, anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10523), 1, + ACTIONS(10133), 1, sym_identifier, - ACTIONS(10615), 1, + ACTIONS(10265), 1, anon_sym_requires, - ACTIONS(10769), 1, + ACTIONS(10376), 1, anon_sym_LPAREN2, - STATE(2509), 1, + STATE(2919), 1, sym_template_type, - STATE(2589), 1, + STATE(3097), 1, sym_qualified_type_identifier, - STATE(5245), 1, - sym_requirement_clause_constraint, - STATE(7262), 1, + STATE(6901), 1, sym_lambda_capture_specifier, - STATE(7902), 1, + STATE(7386), 1, + sym_requirement_clause_constraint, + STATE(7558), 1, sym_scope_resolution, - ACTIONS(10613), 2, + ACTIONS(10263), 2, sym_true, sym_false, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(4665), 6, + STATE(5169), 6, sym_class_name, sym_constraint_conjunction, sym_constraint_disjunction, sym_requires_expression, sym_lambda_expression, sym_fold_expression, - [308204] = 16, + [266364] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, + ACTIONS(3044), 1, anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10695), 1, + ACTIONS(10125), 1, sym_identifier, - ACTIONS(10703), 1, + ACTIONS(10257), 1, anon_sym_requires, - ACTIONS(10771), 1, + ACTIONS(10404), 1, anon_sym_LPAREN2, - STATE(3220), 1, + STATE(2050), 1, sym_template_type, - STATE(3384), 1, + STATE(2137), 1, sym_qualified_type_identifier, - STATE(3443), 1, + STATE(3104), 1, sym_requirement_clause_constraint, - STATE(7329), 1, + STATE(6864), 1, sym_lambda_capture_specifier, - STATE(7898), 1, + STATE(7557), 1, + sym_scope_resolution, + ACTIONS(10255), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(2583), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [266420] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10127), 1, + sym_identifier, + ACTIONS(10370), 1, + anon_sym_LPAREN2, + ACTIONS(10374), 1, + anon_sym_requires, + STATE(3094), 1, + sym_template_type, + STATE(3098), 1, + sym_qualified_type_identifier, + STATE(6821), 1, + sym_lambda_capture_specifier, + STATE(7223), 1, + sym_requirement_clause_constraint, + STATE(7546), 1, sym_scope_resolution, - ACTIONS(10701), 2, + ACTIONS(10372), 2, sym_true, sym_false, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3325), 6, + STATE(1859), 6, sym_class_name, sym_constraint_conjunction, sym_constraint_disjunction, sym_requires_expression, sym_lambda_expression, sym_fold_expression, - [308260] = 16, + [266476] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, + ACTIONS(3044), 1, anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10523), 1, + ACTIONS(10133), 1, sym_identifier, - ACTIONS(10615), 1, + ACTIONS(10265), 1, anon_sym_requires, - ACTIONS(10769), 1, + ACTIONS(10376), 1, anon_sym_LPAREN2, - STATE(2509), 1, + STATE(2919), 1, sym_template_type, - STATE(2589), 1, + STATE(3097), 1, sym_qualified_type_identifier, - STATE(4707), 1, + STATE(4953), 1, sym_requirement_clause_constraint, - STATE(7262), 1, + STATE(6901), 1, sym_lambda_capture_specifier, - STATE(7902), 1, + STATE(7558), 1, sym_scope_resolution, - ACTIONS(10613), 2, + ACTIONS(10263), 2, sym_true, sym_false, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(4665), 6, + STATE(5169), 6, sym_class_name, sym_constraint_conjunction, sym_constraint_disjunction, sym_requires_expression, sym_lambda_expression, sym_fold_expression, - [308316] = 5, + [266532] = 16, ACTIONS(3), 1, sym_comment, - STATE(6872), 2, - sym_type_qualifier, - aux_sym_type_definition_type_repeat1, - ACTIONS(5727), 4, - anon_sym_AMP, - anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10368), 1, sym_identifier, - anon_sym_operator, - ACTIONS(5729), 4, - anon_sym_DOT_DOT_DOT, + ACTIONS(10370), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(10773), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [308350] = 16, + ACTIONS(10374), 1, + anon_sym_requires, + STATE(1861), 1, + sym_requirement_clause_constraint, + STATE(2581), 1, + sym_qualified_type_identifier, + STATE(2646), 1, + sym_template_type, + STATE(6836), 1, + sym_lambda_capture_specifier, + STATE(7517), 1, + sym_scope_resolution, + ACTIONS(10372), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(1859), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [266588] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, + ACTIONS(3044), 1, anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10471), 1, + ACTIONS(10109), 1, sym_identifier, - ACTIONS(10711), 1, - anon_sym_requires, - ACTIONS(10776), 1, + ACTIONS(10370), 1, anon_sym_LPAREN2, - STATE(3011), 1, + ACTIONS(10374), 1, + anon_sym_requires, + STATE(3094), 1, sym_template_type, - STATE(3140), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(6164), 1, + STATE(6705), 1, sym_requirement_clause_constraint, - STATE(7327), 1, + STATE(6821), 1, sym_lambda_capture_specifier, - STATE(7878), 1, + STATE(7528), 1, sym_scope_resolution, - ACTIONS(10709), 2, + ACTIONS(10372), 2, sym_true, sym_false, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5554), 6, + STATE(1859), 6, sym_class_name, sym_constraint_conjunction, sym_constraint_disjunction, sym_requires_expression, sym_lambda_expression, sym_fold_expression, - [308406] = 16, + [266644] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, + ACTIONS(3044), 1, anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10471), 1, + ACTIONS(10123), 1, sym_identifier, - ACTIONS(10711), 1, + ACTIONS(10309), 1, anon_sym_requires, - ACTIONS(10776), 1, + ACTIONS(10406), 1, anon_sym_LPAREN2, - STATE(3011), 1, + STATE(4123), 1, sym_template_type, - STATE(3140), 1, + STATE(4280), 1, sym_qualified_type_identifier, - STATE(5621), 1, + STATE(4860), 1, sym_requirement_clause_constraint, - STATE(7327), 1, + STATE(6827), 1, sym_lambda_capture_specifier, - STATE(7878), 1, + STATE(7541), 1, sym_scope_resolution, - ACTIONS(10709), 2, + ACTIONS(10307), 2, sym_true, sym_false, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5554), 6, + STATE(4829), 6, sym_class_name, sym_constraint_conjunction, sym_constraint_disjunction, sym_requires_expression, sym_lambda_expression, sym_fold_expression, - [308462] = 16, + [266700] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute__, ACTIONS(51), 1, anon_sym___based, - ACTIONS(2259), 1, + ACTIONS(2257), 1, anon_sym_operator, - ACTIONS(9005), 1, + ACTIONS(8649), 1, sym_identifier, - ACTIONS(9007), 1, + ACTIONS(8651), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9009), 1, + ACTIONS(8653), 1, anon_sym_LPAREN2, - ACTIONS(9011), 1, + ACTIONS(8655), 1, anon_sym_STAR, - ACTIONS(9013), 1, + ACTIONS(8657), 1, anon_sym_AMP_AMP, - ACTIONS(9015), 1, + ACTIONS(8659), 1, anon_sym_AMP, - ACTIONS(10778), 1, + ACTIONS(10408), 1, anon_sym_SEMI, - STATE(6884), 1, + STATE(6421), 1, sym_field_declarator, - STATE(10022), 1, + STATE(9402), 1, sym_ms_based_modifier, - STATE(10511), 1, + STATE(9873), 1, sym_attribute_specifier, - STATE(7715), 2, + STATE(7368), 2, sym_operator_name, sym_semgrep_ellipsis, - STATE(7771), 7, + STATE(7399), 7, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -583327,602 +546787,1281 @@ static const uint16_t ts_small_parse_table[] = { sym_array_field_declarator, sym_reference_field_declarator, sym_template_method, - [308518] = 16, + [266756] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, + ACTIONS(1534), 1, + anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(9512), 1, + ACTIONS(10148), 1, + sym_identifier, + ACTIONS(10295), 1, + anon_sym_requires, + ACTIONS(10354), 1, + anon_sym_LPAREN2, + STATE(2582), 1, + sym_template_type, + STATE(2696), 1, + sym_qualified_type_identifier, + STATE(4807), 1, + sym_requirement_clause_constraint, + STATE(6868), 1, + sym_lambda_capture_specifier, + STATE(7516), 1, + sym_scope_resolution, + ACTIONS(10293), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4433), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [266812] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8425), 1, + anon_sym_DASH_GT, + ACTIONS(9783), 1, + anon_sym_LBRACK, + ACTIONS(10076), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7073), 1, + sym_function_postfix, + STATE(7222), 1, + sym_trailing_return_type, + STATE(7372), 1, + sym_function_attributes_end, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9781), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(9785), 2, + anon_sym_final, + anon_sym_override, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + [266870] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10119), 1, + sym_identifier, + ACTIONS(10281), 1, + anon_sym_requires, + ACTIONS(10410), 1, + anon_sym_LPAREN2, + STATE(2808), 1, + sym_template_type, + STATE(2845), 1, + sym_qualified_type_identifier, + STATE(3748), 1, + sym_requirement_clause_constraint, + STATE(6817), 1, + sym_lambda_capture_specifier, + STATE(7544), 1, + sym_scope_resolution, + ACTIONS(10279), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(3761), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [266926] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8386), 1, + anon_sym_DASH_GT, + ACTIONS(8388), 1, + anon_sym_requires, + ACTIONS(9783), 1, + anon_sym_LBRACK, + ACTIONS(10002), 1, + anon_sym_LBRACK_LBRACK, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7231), 1, + sym_function_attributes_end, + STATE(7412), 1, + sym_trailing_return_type, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9781), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + [266984] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10125), 1, + sym_identifier, + ACTIONS(10257), 1, + anon_sym_requires, + ACTIONS(10404), 1, + anon_sym_LPAREN2, + STATE(2050), 1, + sym_template_type, + STATE(2137), 1, + sym_qualified_type_identifier, + STATE(2652), 1, + sym_requirement_clause_constraint, + STATE(6864), 1, + sym_lambda_capture_specifier, + STATE(7557), 1, + sym_scope_resolution, + ACTIONS(10255), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(2583), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [267040] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8386), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9705), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10087), 1, + anon_sym_requires, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + STATE(7249), 1, + sym_function_attributes_end, + STATE(7435), 1, + sym_trailing_return_type, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9640), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(9708), 2, + anon_sym_final, + anon_sym_override, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + [267098] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8386), 1, + anon_sym_DASH_GT, + ACTIONS(9783), 1, + anon_sym_LBRACK, + ACTIONS(10002), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10170), 1, + anon_sym_requires, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7261), 1, + sym_function_attributes_end, + STATE(7441), 1, + sym_trailing_return_type, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9781), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(10005), 2, + anon_sym_final, + anon_sym_override, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + [267156] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10414), 1, + anon_sym_LPAREN2, + STATE(6655), 1, + sym_preproc_argument_list, + ACTIONS(10416), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10412), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(10780), 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_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [267190] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10121), 1, sym_identifier, - ACTIONS(10782), 1, - anon_sym_TILDE, - ACTIONS(10784), 1, + ACTIONS(10241), 1, + anon_sym_requires, + ACTIONS(10378), 1, + anon_sym_LPAREN2, + STATE(2532), 1, + sym_template_type, + STATE(2703), 1, + sym_qualified_type_identifier, + STATE(5744), 1, + sym_requirement_clause_constraint, + STATE(6898), 1, + sym_lambda_capture_specifier, + STATE(7574), 1, + sym_scope_resolution, + ACTIONS(10239), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5682), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [267246] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, anon_sym_template, - ACTIONS(10786), 1, - anon_sym_operator, - STATE(4694), 1, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10107), 1, + sym_identifier, + ACTIONS(10249), 1, + anon_sym_requires, + ACTIONS(10386), 1, + anon_sym_LPAREN2, + STATE(2842), 1, + sym_template_type, + STATE(2945), 1, sym_qualified_type_identifier, - STATE(6876), 1, + STATE(4003), 1, + sym_requirement_clause_constraint, + STATE(6902), 1, + sym_lambda_capture_specifier, + STATE(7525), 1, sym_scope_resolution, - STATE(9982), 1, + ACTIONS(10247), 2, + sym_true, + sym_false, + STATE(9605), 2, sym_decltype, - STATE(10464), 1, - sym_ms_based_modifier, - STATE(4693), 2, + sym_dependent_type_identifier, + STATE(4071), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [267302] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10127), 1, + sym_identifier, + ACTIONS(10380), 1, + anon_sym_LPAREN2, + ACTIONS(10384), 1, + anon_sym_requires, + STATE(3094), 1, sym_template_type, + STATE(3322), 1, + sym_qualified_type_identifier, + STATE(6838), 1, + sym_lambda_capture_specifier, + STATE(7444), 1, + sym_requirement_clause_constraint, + STATE(7551), 1, + sym_scope_resolution, + ACTIONS(10382), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, sym_dependent_type_identifier, - STATE(8361), 2, - sym_operator_cast, - sym_qualified_operator_cast_identifier, - STATE(3197), 6, - sym_pointer_type_declarator, - sym_template_function, - sym_destructor_name, - sym_dependent_identifier, - sym_qualified_identifier, - sym_operator_name, - [308574] = 16, + STATE(6749), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [267358] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(8207), 1, anon_sym___attribute__, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(9005), 1, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8425), 1, + anon_sym_DASH_GT, + ACTIONS(10156), 1, + anon_sym_LBRACK, + ACTIONS(10283), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7094), 1, + sym_function_postfix, + STATE(7209), 1, + sym_trailing_return_type, + STATE(7373), 1, + sym_function_attributes_end, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10154), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(10158), 2, + anon_sym_final, + anon_sym_override, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + [267416] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10138), 1, sym_identifier, - ACTIONS(9007), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9009), 1, + ACTIONS(10273), 1, + anon_sym_requires, + ACTIONS(10392), 1, + anon_sym_LPAREN2, + STATE(2674), 1, + sym_template_type, + STATE(2747), 1, + sym_qualified_type_identifier, + STATE(3337), 1, + sym_requirement_clause_constraint, + STATE(6853), 1, + sym_lambda_capture_specifier, + STATE(7547), 1, + sym_scope_resolution, + ACTIONS(10271), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(3456), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [267472] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8681), 1, + anon_sym_COMMA, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(10420), 1, + anon_sym_SEMI, + ACTIONS(10422), 1, + anon_sym_LBRACE, + ACTIONS(10424), 1, + anon_sym_LBRACK, + ACTIONS(10426), 1, + anon_sym_EQ, + ACTIONS(10428), 1, + anon_sym_COLON, + ACTIONS(10430), 1, + anon_sym_try, + STATE(3973), 1, + sym_parameter_list, + STATE(7456), 1, + sym_function_declarator_seq, + STATE(7803), 1, + aux_sym_field_declaration_repeat1, + STATE(7805), 1, + sym_bitfield_clause, + STATE(7816), 1, + sym_initializer_list, + STATE(9201), 1, + sym_attribute_specifier, + STATE(2417), 2, + sym_compound_statement, + sym_try_statement, + STATE(2443), 2, + sym_default_method_clause, + sym_delete_method_clause, + STATE(7384), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [267536] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10127), 1, + sym_identifier, + ACTIONS(10370), 1, + anon_sym_LPAREN2, + ACTIONS(10374), 1, + anon_sym_requires, + STATE(3094), 1, + sym_template_type, + STATE(3098), 1, + sym_qualified_type_identifier, + STATE(6821), 1, + sym_lambda_capture_specifier, + STATE(7204), 1, + sym_requirement_clause_constraint, + STATE(7546), 1, + sym_scope_resolution, + ACTIONS(10372), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(1859), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [267592] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10127), 1, + sym_identifier, + ACTIONS(10370), 1, + anon_sym_LPAREN2, + ACTIONS(10374), 1, + anon_sym_requires, + STATE(1861), 1, + sym_requirement_clause_constraint, + STATE(3094), 1, + sym_template_type, + STATE(3098), 1, + sym_qualified_type_identifier, + STATE(6821), 1, + sym_lambda_capture_specifier, + STATE(7546), 1, + sym_scope_resolution, + ACTIONS(10372), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(1859), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [267648] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10103), 1, + sym_identifier, + ACTIONS(10295), 1, + anon_sym_requires, + ACTIONS(10354), 1, + anon_sym_LPAREN2, + STATE(2582), 1, + sym_template_type, + STATE(2696), 1, + sym_qualified_type_identifier, + STATE(6868), 1, + sym_lambda_capture_specifier, + STATE(7452), 1, + sym_requirement_clause_constraint, + STATE(7524), 1, + sym_scope_resolution, + ACTIONS(10293), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4433), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [267704] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10129), 1, + sym_identifier, + ACTIONS(10317), 1, + anon_sym_requires, + ACTIONS(10432), 1, + anon_sym_LPAREN2, + STATE(4400), 1, + sym_template_type, + STATE(4457), 1, + sym_qualified_type_identifier, + STATE(4981), 1, + sym_requirement_clause_constraint, + STATE(6837), 1, + sym_lambda_capture_specifier, + STATE(7545), 1, + sym_scope_resolution, + ACTIONS(10315), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4955), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [267760] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8719), 1, anon_sym_LPAREN2, - ACTIONS(9011), 1, + ACTIONS(8727), 1, + anon_sym_LBRACK, + ACTIONS(9107), 1, anon_sym_STAR, - ACTIONS(9013), 1, + ACTIONS(9109), 1, anon_sym_AMP_AMP, - ACTIONS(9015), 1, + ACTIONS(9111), 1, anon_sym_AMP, - ACTIONS(10788), 1, + STATE(4187), 1, + sym_parameter_list, + STATE(6893), 1, + sym_function_declarator_seq, + STATE(7294), 1, + sym_abstract_declarator, + STATE(6892), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8561), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [267806] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8719), 1, + anon_sym_LPAREN2, + ACTIONS(8727), 1, + anon_sym_LBRACK, + ACTIONS(9101), 1, + anon_sym_STAR, + ACTIONS(9103), 1, + anon_sym_AMP_AMP, + ACTIONS(9105), 1, + anon_sym_AMP, + STATE(4177), 1, + sym_parameter_list, + STATE(6893), 1, + sym_function_declarator_seq, + STATE(7268), 1, + sym_abstract_declarator, + STATE(6892), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8561), 9, anon_sym_SEMI, - STATE(6886), 1, - sym_field_declarator, - STATE(10022), 1, - sym_ms_based_modifier, - STATE(10398), 1, - sym_attribute_specifier, - STATE(7715), 2, - sym_operator_name, - sym_semgrep_ellipsis, - STATE(7771), 7, - 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, - [308630] = 16, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [267852] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, + ACTIONS(3044), 1, anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10790), 1, + ACTIONS(10103), 1, sym_identifier, - ACTIONS(10792), 1, - anon_sym_LPAREN2, - ACTIONS(10796), 1, + ACTIONS(10295), 1, anon_sym_requires, - STATE(2476), 1, - sym_requirement_clause_constraint, - STATE(2487), 1, + ACTIONS(10354), 1, + anon_sym_LPAREN2, + STATE(2582), 1, sym_template_type, - STATE(2508), 1, + STATE(2696), 1, sym_qualified_type_identifier, - STATE(7301), 1, + STATE(4397), 1, + sym_requirement_clause_constraint, + STATE(6868), 1, sym_lambda_capture_specifier, - STATE(7889), 1, + STATE(7524), 1, sym_scope_resolution, - ACTIONS(10794), 2, + ACTIONS(10293), 2, sym_true, sym_false, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(2475), 6, + STATE(4433), 6, sym_class_name, sym_constraint_conjunction, sym_constraint_disjunction, sym_requires_expression, sym_lambda_expression, sym_fold_expression, - [308686] = 16, + [267908] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, + ACTIONS(3044), 1, anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10521), 1, + ACTIONS(10123), 1, sym_identifier, - ACTIONS(10711), 1, + ACTIONS(10309), 1, anon_sym_requires, - ACTIONS(10776), 1, + ACTIONS(10406), 1, anon_sym_LPAREN2, - STATE(3011), 1, + STATE(4123), 1, sym_template_type, - STATE(3140), 1, + STATE(4280), 1, sym_qualified_type_identifier, - STATE(7327), 1, - sym_lambda_capture_specifier, - STATE(7707), 1, + STATE(4852), 1, sym_requirement_clause_constraint, - STATE(7876), 1, + STATE(6827), 1, + sym_lambda_capture_specifier, + STATE(7541), 1, sym_scope_resolution, - ACTIONS(10709), 2, + ACTIONS(10307), 2, sym_true, sym_false, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5554), 6, + STATE(4829), 6, sym_class_name, sym_constraint_conjunction, sym_constraint_disjunction, sym_requires_expression, sym_lambda_expression, sym_fold_expression, - [308742] = 16, + [267964] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8681), 1, + anon_sym_COMMA, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(10424), 1, + anon_sym_LBRACK, + ACTIONS(10428), 1, + anon_sym_COLON, + ACTIONS(10434), 1, + anon_sym_SEMI, + ACTIONS(10436), 1, + anon_sym_LBRACE, + ACTIONS(10438), 1, + anon_sym_EQ, + ACTIONS(10440), 1, + anon_sym_try, + STATE(3973), 1, + sym_parameter_list, + STATE(7456), 1, + sym_function_declarator_seq, + STATE(7810), 1, + sym_initializer_list, + STATE(7820), 1, + aux_sym_field_declaration_repeat1, + STATE(7830), 1, + sym_bitfield_clause, + STATE(9244), 1, + sym_attribute_specifier, + STATE(2135), 2, + sym_compound_statement, + sym_try_statement, + STATE(2138), 2, + sym_default_method_clause, + sym_delete_method_clause, + STATE(7384), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [268028] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, + ACTIONS(3044), 1, anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10521), 1, + ACTIONS(10119), 1, sym_identifier, - ACTIONS(10711), 1, + ACTIONS(10281), 1, anon_sym_requires, - ACTIONS(10776), 1, + ACTIONS(10410), 1, anon_sym_LPAREN2, - STATE(3011), 1, + STATE(2808), 1, sym_template_type, - STATE(3140), 1, + STATE(2845), 1, sym_qualified_type_identifier, - STATE(5621), 1, + STATE(3747), 1, sym_requirement_clause_constraint, - STATE(7327), 1, + STATE(6817), 1, sym_lambda_capture_specifier, - STATE(7876), 1, + STATE(7544), 1, sym_scope_resolution, - ACTIONS(10709), 2, + ACTIONS(10279), 2, sym_true, sym_false, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5554), 6, + STATE(3761), 6, sym_class_name, sym_constraint_conjunction, sym_constraint_disjunction, sym_requires_expression, sym_lambda_expression, sym_fold_expression, - [308798] = 16, + [268084] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, + ACTIONS(3044), 1, anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10485), 1, + ACTIONS(10152), 1, sym_identifier, - ACTIONS(10798), 1, - anon_sym_LPAREN2, - ACTIONS(10802), 1, + ACTIONS(10325), 1, anon_sym_requires, - STATE(6239), 1, + ACTIONS(10360), 1, + anon_sym_LPAREN2, + STATE(3076), 1, sym_template_type, - STATE(6285), 1, + STATE(3176), 1, sym_qualified_type_identifier, - STATE(7334), 1, - sym_lambda_capture_specifier, - STATE(7358), 1, + STATE(4363), 1, sym_requirement_clause_constraint, - STATE(7920), 1, + STATE(6863), 1, + sym_lambda_capture_specifier, + STATE(7542), 1, sym_scope_resolution, - ACTIONS(10800), 2, + ACTIONS(10323), 2, sym_true, sym_false, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(7356), 6, + STATE(4258), 6, sym_class_name, sym_constraint_conjunction, sym_constraint_disjunction, sym_requires_expression, sym_lambda_expression, sym_fold_expression, - [308854] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10806), 1, - anon_sym_LBRACK, - ACTIONS(10804), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - 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, - sym_semgrep_metavar, - [308884] = 16, + [268140] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, + ACTIONS(3044), 1, anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10521), 1, + ACTIONS(10129), 1, sym_identifier, - ACTIONS(10711), 1, + ACTIONS(10317), 1, anon_sym_requires, - ACTIONS(10776), 1, + ACTIONS(10432), 1, anon_sym_LPAREN2, - STATE(3011), 1, + STATE(4400), 1, sym_template_type, - STATE(3140), 1, + STATE(4457), 1, sym_qualified_type_identifier, - STATE(7327), 1, - sym_lambda_capture_specifier, - STATE(7710), 1, + STATE(4972), 1, sym_requirement_clause_constraint, - STATE(7876), 1, + STATE(6837), 1, + sym_lambda_capture_specifier, + STATE(7545), 1, sym_scope_resolution, - ACTIONS(10709), 2, + ACTIONS(10315), 2, sym_true, sym_false, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5554), 6, + STATE(4955), 6, sym_class_name, sym_constraint_conjunction, sym_constraint_disjunction, sym_requires_expression, sym_lambda_expression, sym_fold_expression, - [308940] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9045), 1, - anon_sym_COMMA, - ACTIONS(9073), 1, - anon_sym___attribute__, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(10810), 1, - anon_sym_SEMI, - ACTIONS(10812), 1, - anon_sym_LBRACE, - ACTIONS(10814), 1, - anon_sym_LBRACK, - ACTIONS(10816), 1, - anon_sym_EQ, - ACTIONS(10818), 1, - anon_sym_COLON, - ACTIONS(10820), 1, - anon_sym_try, - STATE(4270), 1, - sym_parameter_list, - STATE(7807), 1, - sym_function_declarator_seq, - STATE(8127), 1, - sym_bitfield_clause, - STATE(8128), 1, - sym_initializer_list, - STATE(8129), 1, - aux_sym_field_declaration_repeat1, - STATE(10413), 1, - sym_attribute_specifier, - STATE(2181), 2, - sym_compound_statement, - sym_try_statement, - STATE(2188), 2, - sym_default_method_clause, - sym_delete_method_clause, - STATE(7703), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [309004] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(135), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(9594), 1, - anon_sym_STAR, - ACTIONS(10822), 1, - sym_identifier, - ACTIONS(10824), 1, - anon_sym_template, - STATE(4694), 1, - sym_qualified_type_identifier, - STATE(6885), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_decltype, - STATE(10178), 1, - sym_ms_based_modifier, - STATE(4693), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(8361), 2, - sym_operator_cast, - sym_qualified_operator_cast_identifier, - STATE(3197), 6, - sym_pointer_type_declarator, - sym_template_function, - sym_destructor_name, - sym_dependent_identifier, - sym_qualified_identifier, - sym_operator_name, - [309060] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9045), 1, - anon_sym_COMMA, - ACTIONS(9073), 1, - anon_sym___attribute__, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(10814), 1, - anon_sym_LBRACK, - ACTIONS(10818), 1, - anon_sym_COLON, - ACTIONS(10826), 1, - anon_sym_SEMI, - ACTIONS(10828), 1, - anon_sym_LBRACE, - ACTIONS(10830), 1, - anon_sym_EQ, - ACTIONS(10832), 1, - anon_sym_try, - STATE(4270), 1, - sym_parameter_list, - STATE(7807), 1, - sym_function_declarator_seq, - STATE(8146), 1, - sym_bitfield_clause, - STATE(8147), 1, - sym_initializer_list, - STATE(8148), 1, - aux_sym_field_declaration_repeat1, - STATE(9891), 1, - sym_attribute_specifier, - STATE(2311), 2, - sym_compound_statement, - sym_try_statement, - STATE(2312), 2, - sym_default_method_clause, - sym_delete_method_clause, - STATE(7703), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [309124] = 16, + [268196] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, + ACTIONS(3044), 1, anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10525), 1, + ACTIONS(10109), 1, sym_identifier, - ACTIONS(10651), 1, - anon_sym_requires, - ACTIONS(10834), 1, + ACTIONS(10380), 1, anon_sym_LPAREN2, - STATE(5185), 1, + ACTIONS(10384), 1, + anon_sym_requires, + STATE(3094), 1, sym_template_type, - STATE(5289), 1, + STATE(3322), 1, sym_qualified_type_identifier, - STATE(6228), 1, + STATE(6753), 1, sym_requirement_clause_constraint, - STATE(7263), 1, + STATE(6838), 1, sym_lambda_capture_specifier, - STATE(7944), 1, + STATE(7521), 1, sym_scope_resolution, - ACTIONS(10649), 2, + ACTIONS(10382), 2, sym_true, sym_false, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6229), 6, + STATE(6749), 6, sym_class_name, sym_constraint_conjunction, sym_constraint_disjunction, sym_requires_expression, sym_lambda_expression, sym_fold_expression, - [309180] = 16, + [268252] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8386), 1, + anon_sym_DASH_GT, + ACTIONS(10156), 1, + anon_sym_LBRACK, + ACTIONS(10176), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10442), 1, + anon_sym_requires, + STATE(6835), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7263), 1, + sym_function_attributes_end, + STATE(7445), 1, + sym_trailing_return_type, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10154), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(10179), 2, + anon_sym_final, + anon_sym_override, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + [268310] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, + ACTIONS(3044), 1, anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10481), 1, + ACTIONS(10146), 1, sym_identifier, - ACTIONS(10836), 1, - anon_sym_LPAREN2, - ACTIONS(10840), 1, + ACTIONS(10257), 1, anon_sym_requires, - STATE(4364), 1, + ACTIONS(10404), 1, + anon_sym_LPAREN2, + STATE(2050), 1, sym_template_type, - STATE(4501), 1, + STATE(2137), 1, sym_qualified_type_identifier, - STATE(6951), 1, + STATE(3179), 1, sym_requirement_clause_constraint, - STATE(7326), 1, + STATE(6864), 1, sym_lambda_capture_specifier, - STATE(7904), 1, + STATE(7549), 1, sym_scope_resolution, - ACTIONS(10838), 2, + ACTIONS(10255), 2, sym_true, sym_false, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6944), 6, + STATE(2583), 6, sym_class_name, sym_constraint_conjunction, sym_constraint_disjunction, sym_requires_expression, sym_lambda_expression, sym_fold_expression, - [309236] = 16, + [268366] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8285), 1, + anon_sym_requires, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8425), 1, + anon_sym_DASH_GT, + ACTIONS(10156), 1, + anon_sym_LBRACK, + STATE(7021), 1, + sym_requires_clause, + STATE(7094), 1, + sym_function_postfix, + STATE(7173), 1, + sym_trailing_return_type, + STATE(7360), 1, + sym_function_attributes_end, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(10154), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + [268424] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, + ACTIONS(3044), 1, anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10504), 1, + ACTIONS(10127), 1, sym_identifier, - ACTIONS(10615), 1, - anon_sym_requires, - ACTIONS(10769), 1, + ACTIONS(10380), 1, anon_sym_LPAREN2, - STATE(2509), 1, + ACTIONS(10384), 1, + anon_sym_requires, + STATE(3094), 1, sym_template_type, - STATE(2589), 1, + STATE(3322), 1, sym_qualified_type_identifier, - STATE(7262), 1, - sym_lambda_capture_specifier, - STATE(7276), 1, + STATE(6725), 1, sym_requirement_clause_constraint, - STATE(7886), 1, + STATE(6838), 1, + sym_lambda_capture_specifier, + STATE(7551), 1, sym_scope_resolution, - ACTIONS(10613), 2, + ACTIONS(10382), 2, sym_true, sym_false, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(4665), 6, + STATE(6749), 6, sym_class_name, sym_constraint_conjunction, sym_constraint_disjunction, sym_requires_expression, sym_lambda_expression, sym_fold_expression, - [309292] = 16, + [268480] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, + ACTIONS(3044), 1, anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10525), 1, + ACTIONS(10146), 1, sym_identifier, - ACTIONS(10651), 1, + ACTIONS(10257), 1, anon_sym_requires, - ACTIONS(10834), 1, + ACTIONS(10404), 1, anon_sym_LPAREN2, - STATE(5185), 1, + STATE(2050), 1, sym_template_type, - STATE(5289), 1, + STATE(2137), 1, sym_qualified_type_identifier, - STATE(6234), 1, + STATE(2652), 1, sym_requirement_clause_constraint, - STATE(7263), 1, + STATE(6864), 1, sym_lambda_capture_specifier, - STATE(7944), 1, + STATE(7549), 1, sym_scope_resolution, - ACTIONS(10649), 2, + ACTIONS(10255), 2, sym_true, sym_false, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6229), 6, + STATE(2583), 6, sym_class_name, sym_constraint_conjunction, sym_constraint_disjunction, sym_requires_expression, sym_lambda_expression, sym_fold_expression, - [309348] = 16, + [268536] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -583931,248 +548070,271 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3706), 1, + ACTIONS(3253), 1, anon_sym_TILDE, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(9594), 1, + ACTIONS(9197), 1, anon_sym_STAR, - ACTIONS(10842), 1, + ACTIONS(10445), 1, sym_identifier, - ACTIONS(10844), 1, + ACTIONS(10447), 1, anon_sym_template, - STATE(4694), 1, + STATE(3105), 1, sym_qualified_type_identifier, - STATE(6891), 1, + STATE(6431), 1, sym_scope_resolution, - STATE(9982), 1, - sym_decltype, - STATE(10178), 1, + STATE(9517), 1, sym_ms_based_modifier, - STATE(4693), 2, + STATE(9605), 1, + sym_decltype, + STATE(3100), 2, sym_template_type, sym_dependent_type_identifier, - STATE(8361), 2, + STATE(8110), 2, sym_operator_cast, sym_qualified_operator_cast_identifier, - STATE(3197), 6, + STATE(3095), 6, sym_pointer_type_declarator, sym_template_function, sym_destructor_name, sym_dependent_identifier, sym_qualified_identifier, sym_operator_name, - [309404] = 16, + [268592] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, + ACTIONS(3044), 1, anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10504), 1, + ACTIONS(10109), 1, sym_identifier, - ACTIONS(10615), 1, - anon_sym_requires, - ACTIONS(10769), 1, + ACTIONS(10370), 1, anon_sym_LPAREN2, - STATE(2509), 1, + ACTIONS(10374), 1, + anon_sym_requires, + STATE(3094), 1, sym_template_type, - STATE(2589), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(7257), 1, + STATE(6701), 1, sym_requirement_clause_constraint, - STATE(7262), 1, + STATE(6821), 1, sym_lambda_capture_specifier, - STATE(7886), 1, + STATE(7528), 1, sym_scope_resolution, - ACTIONS(10613), 2, + ACTIONS(10372), 2, sym_true, sym_false, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(4665), 6, + STATE(1859), 6, sym_class_name, sym_constraint_conjunction, sym_constraint_disjunction, sym_requires_expression, sym_lambda_expression, sym_fold_expression, - [309460] = 16, + [268648] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8386), 1, + anon_sym_DASH_GT, + ACTIONS(8388), 1, + anon_sym_requires, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9705), 1, + anon_sym_LBRACK_LBRACK, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + STATE(7302), 1, + sym_function_attributes_end, + STATE(7408), 1, + sym_trailing_return_type, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9640), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + [268706] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, + ACTIONS(3044), 1, anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10695), 1, + ACTIONS(10133), 1, sym_identifier, - ACTIONS(10703), 1, + ACTIONS(10265), 1, anon_sym_requires, - ACTIONS(10771), 1, + ACTIONS(10376), 1, anon_sym_LPAREN2, - STATE(3220), 1, + STATE(2919), 1, sym_template_type, - STATE(3384), 1, + STATE(3097), 1, sym_qualified_type_identifier, - STATE(3389), 1, - sym_requirement_clause_constraint, - STATE(7329), 1, + STATE(6901), 1, sym_lambda_capture_specifier, - STATE(7898), 1, + STATE(7381), 1, + sym_requirement_clause_constraint, + STATE(7558), 1, sym_scope_resolution, - ACTIONS(10701), 2, + ACTIONS(10263), 2, sym_true, sym_false, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3325), 6, + STATE(5169), 6, sym_class_name, sym_constraint_conjunction, sym_constraint_disjunction, sym_requires_expression, sym_lambda_expression, sym_fold_expression, - [309516] = 5, + [268762] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10727), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3044), 1, anon_sym_LBRACK, - STATE(6903), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10725), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10109), 1, + sym_identifier, + ACTIONS(10380), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, + ACTIONS(10384), 1, anon_sym_requires, - sym_semgrep_metavar, - [309550] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10848), 1, - anon_sym_LPAREN2, - STATE(7158), 1, - sym_preproc_argument_list, - ACTIONS(10850), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10846), 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, - [309584] = 16, + STATE(3094), 1, + sym_template_type, + STATE(3322), 1, + sym_qualified_type_identifier, + STATE(6724), 1, + sym_requirement_clause_constraint, + STATE(6838), 1, + sym_lambda_capture_specifier, + STATE(7521), 1, + sym_scope_resolution, + ACTIONS(10382), 2, + sym_true, + sym_false, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6749), 6, + sym_class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + [268818] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, + ACTIONS(3044), 1, anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10635), 1, + ACTIONS(10109), 1, sym_identifier, - ACTIONS(10643), 1, - anon_sym_requires, - ACTIONS(10852), 1, + ACTIONS(10380), 1, anon_sym_LPAREN2, - STATE(3512), 1, + ACTIONS(10384), 1, + anon_sym_requires, + STATE(3094), 1, sym_template_type, - STATE(3614), 1, + STATE(3322), 1, sym_qualified_type_identifier, - STATE(3756), 1, + STATE(6725), 1, sym_requirement_clause_constraint, - STATE(7253), 1, + STATE(6838), 1, sym_lambda_capture_specifier, - STATE(7911), 1, + STATE(7521), 1, sym_scope_resolution, - ACTIONS(10641), 2, + ACTIONS(10382), 2, sym_true, sym_false, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3704), 6, + STATE(6749), 6, sym_class_name, sym_constraint_conjunction, sym_constraint_disjunction, sym_requires_expression, sym_lambda_expression, sym_fold_expression, - [309640] = 16, + [268874] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute__, ACTIONS(51), 1, anon_sym___based, - ACTIONS(2259), 1, + ACTIONS(2257), 1, anon_sym_operator, - ACTIONS(9005), 1, + ACTIONS(8649), 1, sym_identifier, - ACTIONS(9007), 1, + ACTIONS(8651), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9009), 1, + ACTIONS(8653), 1, anon_sym_LPAREN2, - ACTIONS(9011), 1, + ACTIONS(8655), 1, anon_sym_STAR, - ACTIONS(9013), 1, + ACTIONS(8657), 1, anon_sym_AMP_AMP, - ACTIONS(9015), 1, + ACTIONS(8659), 1, anon_sym_AMP, - ACTIONS(10854), 1, + ACTIONS(10449), 1, anon_sym_SEMI, - STATE(6905), 1, + STATE(6412), 1, sym_field_declarator, - STATE(10022), 1, - sym_ms_based_modifier, - STATE(10484), 1, + STATE(9245), 1, sym_attribute_specifier, - STATE(7715), 2, + STATE(9402), 1, + sym_ms_based_modifier, + STATE(7368), 2, sym_operator_name, sym_semgrep_ellipsis, - STATE(7771), 7, + STATE(7399), 7, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -584180,146 +548342,184 @@ static const uint16_t ts_small_parse_table[] = { sym_array_field_declarator, sym_reference_field_declarator, sym_template_method, - [309696] = 16, + [268930] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3049), 1, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10453), 1, anon_sym_LBRACK, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(10790), 1, - sym_identifier, - ACTIONS(10792), 1, + STATE(5609), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6654), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10451), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(10796), 1, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_try, anon_sym_requires, - STATE(2487), 1, - sym_template_type, - STATE(2498), 1, - sym_requirement_clause_constraint, - STATE(2508), 1, - sym_qualified_type_identifier, - STATE(7301), 1, - sym_lambda_capture_specifier, - STATE(7889), 1, - sym_scope_resolution, - ACTIONS(10794), 2, - sym_true, - sym_false, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(2475), 6, - sym_class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - [309752] = 16, + sym_semgrep_metavar, + [268968] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3049), 1, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8681), 1, + anon_sym_COMMA, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(10424), 1, anon_sym_LBRACK, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(10790), 1, + ACTIONS(10428), 1, + anon_sym_COLON, + ACTIONS(10455), 1, + anon_sym_SEMI, + ACTIONS(10457), 1, + anon_sym_LBRACE, + ACTIONS(10459), 1, + anon_sym_EQ, + ACTIONS(10461), 1, + anon_sym_try, + STATE(3973), 1, + sym_parameter_list, + STATE(7456), 1, + sym_function_declarator_seq, + STATE(7779), 1, + sym_initializer_list, + STATE(7824), 1, + aux_sym_field_declaration_repeat1, + STATE(7831), 1, + sym_bitfield_clause, + STATE(9540), 1, + sym_attribute_specifier, + STATE(1978), 2, + sym_default_method_clause, + sym_delete_method_clause, + STATE(2023), 2, + sym_compound_statement, + sym_try_statement, + STATE(7384), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [269032] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute__, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(8649), 1, sym_identifier, - ACTIONS(10792), 1, + ACTIONS(8651), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8653), 1, anon_sym_LPAREN2, - ACTIONS(10796), 1, - anon_sym_requires, - STATE(2487), 1, - sym_template_type, - STATE(2499), 1, - sym_requirement_clause_constraint, - STATE(2508), 1, - sym_qualified_type_identifier, - STATE(7301), 1, - sym_lambda_capture_specifier, - STATE(7889), 1, - sym_scope_resolution, - ACTIONS(10794), 2, - sym_true, - sym_false, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(2475), 6, - sym_class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - [309808] = 16, + ACTIONS(8655), 1, + anon_sym_STAR, + ACTIONS(8657), 1, + anon_sym_AMP_AMP, + ACTIONS(8659), 1, + anon_sym_AMP, + ACTIONS(10463), 1, + anon_sym_SEMI, + STATE(6439), 1, + sym_field_declarator, + STATE(9253), 1, + sym_attribute_specifier, + STATE(9402), 1, + sym_ms_based_modifier, + STATE(7368), 2, + sym_operator_name, + sym_semgrep_ellipsis, + STATE(7399), 7, + 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, + [269088] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, + ACTIONS(3044), 1, anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10504), 1, + ACTIONS(10117), 1, sym_identifier, - ACTIONS(10615), 1, - anon_sym_requires, - ACTIONS(10769), 1, + ACTIONS(10362), 1, anon_sym_LPAREN2, - STATE(2509), 1, + ACTIONS(10366), 1, + anon_sym_requires, + STATE(5722), 1, sym_template_type, - STATE(2589), 1, + STATE(5753), 1, sym_qualified_type_identifier, - STATE(4707), 1, - sym_requirement_clause_constraint, - STATE(7262), 1, + STATE(6869), 1, sym_lambda_capture_specifier, - STATE(7886), 1, + STATE(6963), 1, + sym_requirement_clause_constraint, + STATE(7539), 1, sym_scope_resolution, - ACTIONS(10613), 2, + ACTIONS(10364), 2, sym_true, sym_false, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(4665), 6, + STATE(7006), 6, sym_class_name, sym_constraint_conjunction, sym_constraint_disjunction, sym_requires_expression, sym_lambda_expression, sym_fold_expression, - [309864] = 5, + [269144] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8098), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10741), 1, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(10358), 1, anon_sym_LBRACK, - STATE(6903), 2, + STATE(5618), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6703), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(10739), 18, + ACTIONS(10356), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_asm, anon_sym___asm__, anon_sym_DASH_GT, @@ -584328,27 +548528,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - sym_semgrep_metavar, - [309898] = 5, + [269182] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8098), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10858), 1, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(10453), 1, anon_sym_LBRACK, - STATE(6903), 2, + STATE(5618), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6679), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(10856), 18, + ACTIONS(10451), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_asm, anon_sym___asm__, anon_sym_DASH_GT, @@ -584357,24 +548559,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - sym_semgrep_metavar, - [309932] = 5, + [269220] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(6831), 1, - anon_sym_LBRACK, - ACTIONS(10860), 1, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8324), 1, anon_sym_LBRACK_LBRACK, - STATE(6903), 2, + ACTIONS(8681), 1, + anon_sym_COMMA, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(10424), 1, + anon_sym_LBRACK, + ACTIONS(10428), 1, + anon_sym_COLON, + ACTIONS(10465), 1, + anon_sym_SEMI, + ACTIONS(10467), 1, + anon_sym_LBRACE, + ACTIONS(10469), 1, + anon_sym_EQ, + ACTIONS(10471), 1, + anon_sym_try, + STATE(3973), 1, + sym_parameter_list, + STATE(7456), 1, + sym_function_declarator_seq, + STATE(7778), 1, + sym_initializer_list, + STATE(7793), 1, + aux_sym_field_declaration_repeat1, + STATE(7812), 1, + sym_bitfield_clause, + STATE(9370), 1, + sym_attribute_specifier, + STATE(2386), 2, + sym_compound_statement, + sym_try_statement, + STATE(2388), 2, + sym_default_method_clause, + sym_delete_method_clause, + STATE(7384), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(6829), 18, + [269284] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10475), 1, + anon_sym_LBRACK, + ACTIONS(10473), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, @@ -584385,5359 +548626,6803 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, sym_semgrep_metavar, - [309966] = 16, + [269314] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8207), 1, + anon_sym___attribute__, + ACTIONS(8285), 1, + anon_sym_requires, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8425), 1, + anon_sym_DASH_GT, + ACTIONS(9783), 1, + anon_sym_LBRACK, + STATE(7021), 1, + sym_requires_clause, + STATE(7073), 1, + sym_function_postfix, + STATE(7187), 1, + sym_trailing_return_type, + STATE(7359), 1, + sym_function_attributes_end, + STATE(7773), 1, + sym_gnu_asm_expression, + ACTIONS(7879), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9781), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(6438), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6635), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + [269372] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10485), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(9726), 1, + anon_sym_LBRACE, + ACTIONS(10117), 1, sym_identifier, - ACTIONS(10798), 1, - anon_sym_LPAREN2, - ACTIONS(10802), 1, - anon_sym_requires, - STATE(6239), 1, + STATE(5722), 1, sym_template_type, - STATE(6285), 1, + STATE(5723), 1, + sym_class_name, + STATE(5753), 1, sym_qualified_type_identifier, - STATE(7334), 1, - sym_lambda_capture_specifier, - STATE(7401), 1, - sym_requirement_clause_constraint, - STATE(7920), 1, + STATE(5926), 1, + sym_field_declaration_list, + STATE(6201), 1, + sym_class_declaration_item, + STATE(7539), 1, sym_scope_resolution, - ACTIONS(10800), 2, - sym_true, - sym_false, - STATE(9982), 2, + STATE(7839), 1, + sym_virtual_specifier, + STATE(8845), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6484), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(7356), 6, + [269433] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(8314), 1, + anon_sym_LBRACE, + ACTIONS(10121), 1, + sym_identifier, + STATE(2532), 1, + sym_template_type, + STATE(2703), 1, + sym_qualified_type_identifier, + STATE(4441), 1, sym_class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - [310022] = 20, + STATE(4936), 1, + sym_field_declaration_list, + STATE(5331), 1, + sym_class_declaration_item, + STATE(7574), 1, + sym_scope_resolution, + STATE(8086), 1, + sym_virtual_specifier, + STATE(8905), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [269494] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8098), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9045), 1, - anon_sym_COMMA, - ACTIONS(9073), 1, - anon_sym___attribute__, - ACTIONS(10808), 1, + ACTIONS(6367), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10148), 1, + sym_identifier, + STATE(2410), 1, + sym_class_name, + STATE(2582), 1, + sym_template_type, + STATE(2598), 1, + sym_field_declaration_list, + STATE(2696), 1, + sym_qualified_type_identifier, + STATE(2728), 1, + sym_class_declaration_item, + STATE(7516), 1, + sym_scope_resolution, + STATE(8113), 1, + sym_virtual_specifier, + STATE(8974), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [269555] = 5, + ACTIONS(10412), 1, + anon_sym_LF, + ACTIONS(10477), 1, anon_sym_LPAREN2, - ACTIONS(10814), 1, - anon_sym_LBRACK, - ACTIONS(10818), 1, + ACTIONS(10479), 1, + sym_comment, + STATE(6790), 1, + sym_preproc_argument_list, + ACTIONS(10416), 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, + [269588] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6894), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(10863), 1, - anon_sym_SEMI, - ACTIONS(10865), 1, + ACTIONS(10101), 1, + sym_identifier, + STATE(2772), 1, + sym_class_name, + STATE(2919), 1, + sym_template_type, + STATE(3097), 1, + sym_qualified_type_identifier, + STATE(3102), 1, + sym_field_declaration_list, + STATE(3318), 1, + sym_class_declaration_item, + STATE(7556), 1, + sym_scope_resolution, + STATE(8036), 1, + sym_virtual_specifier, + STATE(8742), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6453), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [269649] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6894), 1, anon_sym_LBRACE, - ACTIONS(10867), 1, - anon_sym_EQ, - ACTIONS(10869), 1, - anon_sym_try, - STATE(4270), 1, - sym_parameter_list, - STATE(7807), 1, - sym_function_declarator_seq, - STATE(8143), 1, - sym_bitfield_clause, - STATE(8144), 1, - sym_initializer_list, - STATE(8145), 1, - aux_sym_field_declaration_repeat1, - STATE(10485), 1, - sym_attribute_specifier, - STATE(2001), 2, - sym_compound_statement, - sym_try_statement, - STATE(2009), 2, - sym_default_method_clause, - sym_delete_method_clause, - STATE(7703), 2, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10101), 1, + sym_identifier, + STATE(2772), 1, + sym_class_name, + STATE(2919), 1, + sym_template_type, + STATE(3097), 1, + sym_qualified_type_identifier, + STATE(3102), 1, + sym_field_declaration_list, + STATE(3318), 1, + sym_class_declaration_item, + STATE(7556), 1, + sym_scope_resolution, + STATE(8036), 1, + sym_virtual_specifier, + STATE(8742), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [269710] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6894), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10101), 1, + sym_identifier, + STATE(2772), 1, + sym_class_name, + STATE(2919), 1, + sym_template_type, + STATE(3097), 1, + sym_qualified_type_identifier, + STATE(3102), 1, + sym_field_declaration_list, + STATE(3259), 1, + sym_class_declaration_item, + STATE(7556), 1, + sym_scope_resolution, + STATE(8036), 1, + sym_virtual_specifier, + STATE(8742), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [269771] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6894), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10101), 1, + sym_identifier, + STATE(2772), 1, + sym_class_name, + STATE(2919), 1, + sym_template_type, + STATE(3097), 1, + sym_qualified_type_identifier, + STATE(3102), 1, + sym_field_declaration_list, + STATE(3259), 1, + sym_class_declaration_item, + STATE(7556), 1, + sym_scope_resolution, + STATE(8036), 1, + sym_virtual_specifier, + STATE(8742), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6455), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [269832] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6894), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10101), 1, + sym_identifier, + STATE(2772), 1, + sym_class_name, + STATE(2919), 1, + sym_template_type, + STATE(3097), 1, + sym_qualified_type_identifier, + STATE(3102), 1, + sym_field_declaration_list, + STATE(3220), 1, + sym_class_declaration_item, + STATE(7556), 1, + sym_scope_resolution, + STATE(8036), 1, + sym_virtual_specifier, + STATE(8742), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [269893] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10099), 1, + sym_identifier, + STATE(3094), 1, + sym_template_type, + STATE(3322), 1, + sym_qualified_type_identifier, + STATE(3579), 1, + sym_class_declaration_item, + STATE(4465), 1, + sym_field_declaration_list, + STATE(4613), 1, + sym_class_name, + STATE(7526), 1, + sym_scope_resolution, + STATE(8160), 1, + sym_virtual_specifier, + STATE(9057), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6470), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [269954] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10099), 1, + sym_identifier, + STATE(3094), 1, + sym_template_type, + STATE(3322), 1, + sym_qualified_type_identifier, + STATE(3579), 1, + sym_class_declaration_item, + STATE(4465), 1, + sym_field_declaration_list, + STATE(4613), 1, + sym_class_name, + STATE(7526), 1, + sym_scope_resolution, + STATE(8160), 1, + sym_virtual_specifier, + STATE(9057), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6245), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [310086] = 16, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [270015] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10481), 1, + sym_identifier, + ACTIONS(10483), 1, + anon_sym_RPAREN, + ACTIONS(10485), 1, + anon_sym_LPAREN2, + ACTIONS(10487), 1, + anon_sym_defined, + ACTIONS(10493), 1, + sym_number_literal, + STATE(6502), 1, + sym_preproc_expression, + ACTIONS(10489), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10491), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10495), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6611), 6, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [270060] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10485), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6934), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10152), 1, sym_identifier, - ACTIONS(10798), 1, - anon_sym_LPAREN2, - ACTIONS(10802), 1, - anon_sym_requires, - STATE(6239), 1, + STATE(2805), 1, + sym_class_name, + STATE(3076), 1, sym_template_type, - STATE(6285), 1, + STATE(3176), 1, sym_qualified_type_identifier, - STATE(7334), 1, - sym_lambda_capture_specifier, - STATE(7403), 1, - sym_requirement_clause_constraint, - STATE(7920), 1, + STATE(3339), 1, + sym_field_declaration_list, + STATE(3917), 1, + sym_class_declaration_item, + STATE(7542), 1, sym_scope_resolution, - ACTIONS(10800), 2, - sym_true, - sym_false, - STATE(9982), 2, + STATE(8118), 1, + sym_virtual_specifier, + STATE(8985), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6461), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(7356), 6, - sym_class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - [310142] = 16, + [270121] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10479), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6934), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10152), 1, sym_identifier, - ACTIONS(10677), 1, - anon_sym_requires, - ACTIONS(10871), 1, - anon_sym_LPAREN2, - STATE(2905), 1, + STATE(2805), 1, + sym_class_name, + STATE(3076), 1, sym_template_type, - STATE(3047), 1, + STATE(3176), 1, sym_qualified_type_identifier, - STATE(4332), 1, - sym_requirement_clause_constraint, - STATE(7284), 1, - sym_lambda_capture_specifier, - STATE(7873), 1, + STATE(3339), 1, + sym_field_declaration_list, + STATE(3917), 1, + sym_class_declaration_item, + STATE(7542), 1, sym_scope_resolution, - ACTIONS(10675), 2, - sym_true, - sym_false, - STATE(9982), 2, + STATE(8118), 1, + sym_virtual_specifier, + STATE(8985), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(4320), 6, - sym_class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - [310198] = 16, + [270182] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10479), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6934), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10152), 1, sym_identifier, - ACTIONS(10677), 1, - anon_sym_requires, - ACTIONS(10871), 1, - anon_sym_LPAREN2, - STATE(2905), 1, + STATE(2805), 1, + sym_class_name, + STATE(3076), 1, sym_template_type, - STATE(3047), 1, + STATE(3176), 1, sym_qualified_type_identifier, - STATE(4333), 1, - sym_requirement_clause_constraint, - STATE(7284), 1, - sym_lambda_capture_specifier, - STATE(7873), 1, + STATE(3339), 1, + sym_field_declaration_list, + STATE(3780), 1, + sym_class_declaration_item, + STATE(7542), 1, sym_scope_resolution, - ACTIONS(10675), 2, - sym_true, - sym_false, - STATE(9982), 2, + STATE(8118), 1, + sym_virtual_specifier, + STATE(8985), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(4320), 6, - sym_class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - [310254] = 20, + [270243] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8098), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9045), 1, - anon_sym_COMMA, - ACTIONS(9073), 1, - anon_sym___attribute__, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(10814), 1, - anon_sym_LBRACK, - ACTIONS(10818), 1, - anon_sym_COLON, - ACTIONS(10873), 1, - anon_sym_SEMI, - ACTIONS(10875), 1, + ACTIONS(6934), 1, anon_sym_LBRACE, - ACTIONS(10877), 1, - anon_sym_EQ, - ACTIONS(10879), 1, - anon_sym_try, - STATE(4270), 1, - sym_parameter_list, - STATE(7807), 1, - sym_function_declarator_seq, - STATE(8154), 1, - aux_sym_field_declaration_repeat1, - STATE(8182), 1, - sym_bitfield_clause, - STATE(8183), 1, - sym_initializer_list, - STATE(10615), 1, - sym_attribute_specifier, - STATE(2330), 2, - sym_compound_statement, - sym_try_statement, - STATE(2332), 2, - sym_default_method_clause, - sym_delete_method_clause, - STATE(7703), 2, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10152), 1, + sym_identifier, + STATE(2805), 1, + sym_class_name, + STATE(3076), 1, + sym_template_type, + STATE(3176), 1, + sym_qualified_type_identifier, + STATE(3339), 1, + sym_field_declaration_list, + STATE(3780), 1, + sym_class_declaration_item, + STATE(7542), 1, + sym_scope_resolution, + STATE(8118), 1, + sym_virtual_specifier, + STATE(8985), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6463), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [310318] = 16, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [270304] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10625), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6934), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10152), 1, sym_identifier, - ACTIONS(10633), 1, - anon_sym_requires, - ACTIONS(10881), 1, - anon_sym_LPAREN2, - STATE(5274), 1, + STATE(2805), 1, + sym_class_name, + STATE(3076), 1, sym_template_type, - STATE(5381), 1, + STATE(3176), 1, sym_qualified_type_identifier, - STATE(5399), 1, - sym_requirement_clause_constraint, - STATE(7332), 1, - sym_lambda_capture_specifier, - STATE(7883), 1, + STATE(3339), 1, + sym_field_declaration_list, + STATE(3818), 1, + sym_class_declaration_item, + STATE(7542), 1, sym_scope_resolution, - ACTIONS(10631), 2, - sym_true, - sym_false, - STATE(9982), 2, + STATE(8118), 1, + sym_virtual_specifier, + STATE(8985), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5361), 6, - sym_class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - [310374] = 16, + [270365] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10481), 1, + sym_identifier, + ACTIONS(10485), 1, + anon_sym_LPAREN2, + ACTIONS(10487), 1, + anon_sym_defined, + ACTIONS(10493), 1, + sym_number_literal, + ACTIONS(10497), 1, + anon_sym_RPAREN, + STATE(6480), 1, + sym_preproc_expression, + ACTIONS(10489), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10491), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10495), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6611), 6, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [270410] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10625), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6910), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10150), 1, sym_identifier, - ACTIONS(10633), 1, - anon_sym_requires, - ACTIONS(10881), 1, - anon_sym_LPAREN2, - STATE(5274), 1, + STATE(2782), 1, + sym_class_name, + STATE(2931), 1, sym_template_type, - STATE(5374), 1, - sym_requirement_clause_constraint, - STATE(5381), 1, + STATE(3099), 1, sym_qualified_type_identifier, - STATE(7332), 1, - sym_lambda_capture_specifier, - STATE(7883), 1, + STATE(3302), 1, + sym_field_declaration_list, + STATE(3684), 1, + sym_class_declaration_item, + STATE(7552), 1, sym_scope_resolution, - ACTIONS(10631), 2, - sym_true, - sym_false, - STATE(9982), 2, + STATE(8173), 1, + sym_virtual_specifier, + STATE(9082), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6467), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5361), 6, - sym_class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - [310430] = 16, + [270471] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10508), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6910), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10150), 1, sym_identifier, - ACTIONS(10659), 1, - anon_sym_requires, - ACTIONS(10883), 1, - anon_sym_LPAREN2, - STATE(2765), 1, + STATE(2782), 1, + sym_class_name, + STATE(2931), 1, sym_template_type, - STATE(2887), 1, + STATE(3099), 1, sym_qualified_type_identifier, - STATE(4156), 1, - sym_requirement_clause_constraint, - STATE(7265), 1, - sym_lambda_capture_specifier, - STATE(7915), 1, + STATE(3302), 1, + sym_field_declaration_list, + STATE(3684), 1, + sym_class_declaration_item, + STATE(7552), 1, sym_scope_resolution, - ACTIONS(10657), 2, - sym_true, - sym_false, - STATE(9982), 2, + STATE(8173), 1, + sym_virtual_specifier, + STATE(9082), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3985), 6, - sym_class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - [310486] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7231), 8, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_RBRACK_RBRACK, - anon_sym_LBRACE, - ACTIONS(7233), 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, - [310516] = 16, + [270532] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10473), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6910), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10150), 1, sym_identifier, - ACTIONS(10685), 1, - anon_sym_requires, - ACTIONS(10885), 1, - anon_sym_LPAREN2, - STATE(3135), 1, + STATE(2782), 1, + sym_class_name, + STATE(2931), 1, sym_template_type, - STATE(3434), 1, + STATE(3099), 1, sym_qualified_type_identifier, - STATE(4582), 1, - sym_requirement_clause_constraint, - STATE(7328), 1, - sym_lambda_capture_specifier, - STATE(7909), 1, + STATE(3302), 1, + sym_field_declaration_list, + STATE(3567), 1, + sym_class_declaration_item, + STATE(7552), 1, sym_scope_resolution, - ACTIONS(10683), 2, - sym_true, - sym_false, - STATE(9982), 2, + STATE(8173), 1, + sym_virtual_specifier, + STATE(9082), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(4578), 6, - sym_class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - [310572] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7393), 8, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_RBRACK_RBRACK, - anon_sym_LBRACE, - ACTIONS(7395), 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, - [310602] = 16, + [270593] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10473), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6910), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10150), 1, sym_identifier, - ACTIONS(10685), 1, - anon_sym_requires, - ACTIONS(10885), 1, - anon_sym_LPAREN2, - STATE(3135), 1, + STATE(2782), 1, + sym_class_name, + STATE(2931), 1, sym_template_type, - STATE(3434), 1, + STATE(3099), 1, sym_qualified_type_identifier, - STATE(4597), 1, - sym_requirement_clause_constraint, - STATE(7328), 1, - sym_lambda_capture_specifier, - STATE(7909), 1, + STATE(3302), 1, + sym_field_declaration_list, + STATE(3567), 1, + sym_class_declaration_item, + STATE(7552), 1, sym_scope_resolution, - ACTIONS(10683), 2, - sym_true, - sym_false, - STATE(9982), 2, + STATE(8173), 1, + sym_virtual_specifier, + STATE(9082), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6469), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(4578), 6, - sym_class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - [310658] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7417), 8, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_RBRACK_RBRACK, - anon_sym_LBRACE, - ACTIONS(7419), 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, - [310688] = 16, + [270654] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10475), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6910), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10150), 1, sym_identifier, - ACTIONS(10623), 1, - anon_sym_requires, - ACTIONS(10887), 1, - anon_sym_LPAREN2, - STATE(2515), 1, + STATE(2782), 1, + sym_class_name, + STATE(2931), 1, sym_template_type, - STATE(2599), 1, + STATE(3099), 1, sym_qualified_type_identifier, - STATE(3255), 1, - sym_requirement_clause_constraint, - STATE(7313), 1, - sym_lambda_capture_specifier, - STATE(7919), 1, + STATE(3302), 1, + sym_field_declaration_list, + STATE(3537), 1, + sym_class_declaration_item, + STATE(7552), 1, sym_scope_resolution, - ACTIONS(10621), 2, - sym_true, - sym_false, - STATE(9982), 2, + STATE(8173), 1, + sym_virtual_specifier, + STATE(9082), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3141), 6, - sym_class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - [310744] = 16, + [270715] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10508), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10099), 1, sym_identifier, - ACTIONS(10659), 1, - anon_sym_requires, - ACTIONS(10883), 1, - anon_sym_LPAREN2, - STATE(2765), 1, + STATE(3094), 1, sym_template_type, - STATE(2887), 1, + STATE(3322), 1, sym_qualified_type_identifier, - STATE(4157), 1, - sym_requirement_clause_constraint, - STATE(7265), 1, - sym_lambda_capture_specifier, - STATE(7915), 1, + STATE(3640), 1, + sym_class_declaration_item, + STATE(4465), 1, + sym_field_declaration_list, + STATE(4613), 1, + sym_class_name, + STATE(7526), 1, sym_scope_resolution, - ACTIONS(10657), 2, - sym_true, - sym_false, - STATE(9982), 2, + STATE(8160), 1, + sym_virtual_specifier, + STATE(9057), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3985), 6, - sym_class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - [310800] = 16, + [270776] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10481), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10099), 1, sym_identifier, - ACTIONS(10836), 1, - anon_sym_LPAREN2, - ACTIONS(10840), 1, - anon_sym_requires, - STATE(4364), 1, + STATE(3094), 1, sym_template_type, - STATE(4501), 1, + STATE(3322), 1, sym_qualified_type_identifier, - STATE(6971), 1, - sym_requirement_clause_constraint, - STATE(7326), 1, - sym_lambda_capture_specifier, - STATE(7904), 1, + STATE(3640), 1, + sym_class_declaration_item, + STATE(4465), 1, + sym_field_declaration_list, + STATE(4613), 1, + sym_class_name, + STATE(7526), 1, sym_scope_resolution, - ACTIONS(10838), 2, - sym_true, - sym_false, - STATE(9982), 2, + STATE(8160), 1, + sym_virtual_specifier, + STATE(9057), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6485), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6944), 6, - sym_class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - [310856] = 16, + [270837] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10481), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10099), 1, sym_identifier, - ACTIONS(10836), 1, - anon_sym_LPAREN2, - ACTIONS(10840), 1, - anon_sym_requires, - STATE(4364), 1, + STATE(3094), 1, sym_template_type, - STATE(4501), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(6981), 1, - sym_requirement_clause_constraint, - STATE(7326), 1, - sym_lambda_capture_specifier, - STATE(7904), 1, + STATE(3453), 1, + sym_class_name, + STATE(3640), 1, + sym_class_declaration_item, + STATE(4465), 1, + sym_field_declaration_list, + STATE(7571), 1, sym_scope_resolution, - ACTIONS(10838), 2, - sym_true, - sym_false, - STATE(9982), 2, + STATE(8160), 1, + sym_virtual_specifier, + STATE(9057), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6944), 6, - sym_class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - [310912] = 16, + [270898] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10477), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6810), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10107), 1, sym_identifier, - ACTIONS(10693), 1, - anon_sym_requires, - ACTIONS(10889), 1, - anon_sym_LPAREN2, - STATE(3010), 1, + STATE(2672), 1, + sym_class_name, + STATE(2842), 1, sym_template_type, - STATE(3184), 1, + STATE(2945), 1, sym_qualified_type_identifier, - STATE(4523), 1, - sym_requirement_clause_constraint, - STATE(7259), 1, - sym_lambda_capture_specifier, - STATE(7917), 1, + STATE(3163), 1, + sym_field_declaration_list, + STATE(3376), 1, + sym_class_declaration_item, + STATE(7525), 1, sym_scope_resolution, - ACTIONS(10691), 2, - sym_true, - sym_false, - STATE(9982), 2, + STATE(7861), 1, + sym_virtual_specifier, + STATE(8930), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6475), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(4515), 6, - sym_class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - [310968] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute__, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(9005), 1, - sym_identifier, - ACTIONS(9007), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9009), 1, - anon_sym_LPAREN2, - ACTIONS(9011), 1, - anon_sym_STAR, - ACTIONS(9013), 1, - anon_sym_AMP_AMP, - ACTIONS(9015), 1, - anon_sym_AMP, - ACTIONS(10891), 1, - anon_sym_SEMI, - STATE(6909), 1, - sym_field_declarator, - STATE(9908), 1, - sym_attribute_specifier, - STATE(10022), 1, - sym_ms_based_modifier, - STATE(7715), 2, - sym_operator_name, - sym_semgrep_ellipsis, - STATE(7771), 7, - 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, - [311024] = 16, + [270959] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10477), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6810), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10107), 1, sym_identifier, - ACTIONS(10693), 1, - anon_sym_requires, - ACTIONS(10889), 1, - anon_sym_LPAREN2, - STATE(3010), 1, + STATE(2672), 1, + sym_class_name, + STATE(2842), 1, sym_template_type, - STATE(3184), 1, + STATE(2945), 1, sym_qualified_type_identifier, - STATE(4525), 1, - sym_requirement_clause_constraint, - STATE(7259), 1, - sym_lambda_capture_specifier, - STATE(7917), 1, + STATE(3163), 1, + sym_field_declaration_list, + STATE(3376), 1, + sym_class_declaration_item, + STATE(7525), 1, sym_scope_resolution, - ACTIONS(10691), 2, - sym_true, - sym_false, - STATE(9982), 2, + STATE(7861), 1, + sym_virtual_specifier, + STATE(8930), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(4515), 6, - sym_class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - [311080] = 11, + [271020] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, - anon_sym_LPAREN2, - ACTIONS(9105), 1, - anon_sym_LBRACK, - ACTIONS(9252), 1, - anon_sym_STAR, - ACTIONS(9254), 1, - anon_sym_AMP_AMP, - ACTIONS(9256), 1, - anon_sym_AMP, - STATE(4347), 1, - sym_parameter_list, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(7697), 1, - sym_abstract_declarator, - STATE(7464), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8858), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6810), 1, anon_sym_LBRACE, + ACTIONS(7552), 1, anon_sym_COLON, + ACTIONS(10107), 1, + sym_identifier, + STATE(2672), 1, + sym_class_name, + STATE(2842), 1, + sym_template_type, + STATE(2945), 1, + sym_qualified_type_identifier, + STATE(3163), 1, + sym_field_declaration_list, + STATE(3331), 1, + sym_class_declaration_item, + STATE(7525), 1, + sym_scope_resolution, + STATE(7861), 1, + sym_virtual_specifier, + STATE(8930), 1, + sym_base_class_clause, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [311126] = 16, + STATE(6245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [271081] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10475), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6810), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10107), 1, sym_identifier, - ACTIONS(10623), 1, - anon_sym_requires, - ACTIONS(10887), 1, - anon_sym_LPAREN2, - STATE(2515), 1, + STATE(2672), 1, + sym_class_name, + STATE(2842), 1, sym_template_type, - STATE(2599), 1, + STATE(2945), 1, sym_qualified_type_identifier, - STATE(3256), 1, - sym_requirement_clause_constraint, - STATE(7313), 1, - sym_lambda_capture_specifier, - STATE(7919), 1, + STATE(3163), 1, + sym_field_declaration_list, + STATE(3331), 1, + sym_class_declaration_item, + STATE(7525), 1, sym_scope_resolution, - ACTIONS(10621), 2, - sym_true, - sym_false, - STATE(9982), 2, + STATE(7861), 1, + sym_virtual_specifier, + STATE(8930), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6477), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3141), 6, - sym_class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - [311182] = 16, + [271142] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10661), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6810), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10107), 1, sym_identifier, - ACTIONS(10669), 1, - anon_sym_requires, - ACTIONS(10893), 1, - anon_sym_LPAREN2, - STATE(5448), 1, + STATE(2672), 1, + sym_class_name, + STATE(2842), 1, sym_template_type, - STATE(5486), 1, + STATE(2945), 1, sym_qualified_type_identifier, - STATE(5577), 1, - sym_requirement_clause_constraint, - STATE(7261), 1, - sym_lambda_capture_specifier, - STATE(7891), 1, + STATE(3163), 1, + sym_field_declaration_list, + STATE(3450), 1, + sym_class_declaration_item, + STATE(7525), 1, sym_scope_resolution, - ACTIONS(10667), 2, - sym_true, - sym_false, - STATE(9982), 2, + STATE(7861), 1, + sym_virtual_specifier, + STATE(8930), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5690), 6, - sym_class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - [311238] = 16, + [271203] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10661), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10127), 1, sym_identifier, - ACTIONS(10669), 1, - anon_sym_requires, - ACTIONS(10893), 1, - anon_sym_LPAREN2, - STATE(5448), 1, + STATE(3094), 1, sym_template_type, - STATE(5486), 1, + STATE(3322), 1, sym_qualified_type_identifier, - STATE(5705), 1, - sym_requirement_clause_constraint, - STATE(7261), 1, - sym_lambda_capture_specifier, - STATE(7891), 1, + STATE(3640), 1, + sym_class_declaration_item, + STATE(4009), 1, + sym_class_name, + STATE(4469), 1, + sym_field_declaration_list, + STATE(7551), 1, sym_scope_resolution, - ACTIONS(10667), 2, - sym_true, - sym_false, - STATE(9982), 2, + STATE(8157), 1, + sym_virtual_specifier, + STATE(9050), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5690), 6, - sym_class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - [311294] = 16, + [271264] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_LBRACK, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10635), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10127), 1, sym_identifier, - ACTIONS(10643), 1, - anon_sym_requires, - ACTIONS(10852), 1, - anon_sym_LPAREN2, - STATE(3512), 1, + STATE(3094), 1, sym_template_type, - STATE(3614), 1, + STATE(3322), 1, sym_qualified_type_identifier, - STATE(3748), 1, - sym_requirement_clause_constraint, - STATE(7253), 1, - sym_lambda_capture_specifier, - STATE(7911), 1, + STATE(3640), 1, + sym_class_declaration_item, + STATE(4009), 1, + sym_class_name, + STATE(4469), 1, + sym_field_declaration_list, + STATE(7551), 1, sym_scope_resolution, - ACTIONS(10641), 2, - sym_true, - sym_false, - STATE(9982), 2, + STATE(8157), 1, + sym_virtual_specifier, + STATE(9050), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6505), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3704), 6, - sym_class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - [311350] = 3, + [271325] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6472), 1, - anon_sym_LBRACK, - ACTIONS(6474), 20, + ACTIONS(10499), 1, anon_sym_COMMA, + ACTIONS(10501), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(10507), 1, + anon_sym_SLASH, + ACTIONS(10509), 1, anon_sym_PIPE_PIPE, + ACTIONS(10511), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(10513), 1, + anon_sym_PIPE, + ACTIONS(10515), 1, + anon_sym_CARET, + ACTIONS(10517), 1, + anon_sym_AMP, + STATE(8397), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(10503), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10505), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10519), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10521), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10523), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10525), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [271380] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(7552), 1, anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(9726), 1, + anon_sym_LBRACE, + ACTIONS(10117), 1, + sym_identifier, + STATE(5722), 1, + sym_template_type, + STATE(5723), 1, + sym_class_name, + STATE(5753), 1, + sym_qualified_type_identifier, + STATE(5926), 1, + sym_field_declaration_list, + STATE(6074), 1, + sym_class_declaration_item, + STATE(7539), 1, + sym_scope_resolution, + STATE(7839), 1, + sym_virtual_specifier, + STATE(8845), 1, + sym_base_class_clause, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [311379] = 3, + STATE(6483), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [271441] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(6356), 1, - anon_sym_LBRACK, - ACTIONS(6358), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(7552), 1, anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(9726), 1, + anon_sym_LBRACE, + ACTIONS(10117), 1, + sym_identifier, + STATE(5722), 1, + sym_template_type, + STATE(5723), 1, + sym_class_name, + STATE(5753), 1, + sym_qualified_type_identifier, + STATE(5926), 1, + sym_field_declaration_list, + STATE(6074), 1, + sym_class_declaration_item, + STATE(7539), 1, + sym_scope_resolution, + STATE(7839), 1, + sym_virtual_specifier, + STATE(8845), 1, + sym_base_class_clause, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [311408] = 3, + STATE(6245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [271502] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(6345), 1, - anon_sym_LBRACK, - ACTIONS(6347), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(7552), 1, anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(9726), 1, + anon_sym_LBRACE, + ACTIONS(10117), 1, + sym_identifier, + STATE(5722), 1, + sym_template_type, + STATE(5723), 1, + sym_class_name, + STATE(5753), 1, + sym_qualified_type_identifier, + STATE(5926), 1, + sym_field_declaration_list, + STATE(6201), 1, + sym_class_declaration_item, + STATE(7539), 1, + sym_scope_resolution, + STATE(7839), 1, + sym_virtual_specifier, + STATE(8845), 1, + sym_base_class_clause, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [311437] = 8, + STATE(6245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [271563] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7926), 1, - anon_sym_requires, - ACTIONS(10897), 1, - anon_sym_LBRACK, - STATE(7270), 1, - sym_requires_clause, - STATE(7324), 1, - sym_function_postfix, - ACTIONS(6118), 2, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(9726), 1, + anon_sym_LBRACE, + ACTIONS(10117), 1, + sym_identifier, + STATE(5722), 1, + sym_template_type, + STATE(5723), 1, + sym_class_name, + STATE(5753), 1, + sym_qualified_type_identifier, + STATE(5926), 1, + sym_field_declaration_list, + STATE(6102), 1, + sym_class_declaration_item, + STATE(7539), 1, + sym_scope_resolution, + STATE(7839), 1, + sym_virtual_specifier, + STATE(8845), 1, + sym_base_class_clause, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10895), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + STATE(6245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [271624] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(7550), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(7552), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [311476] = 19, + ACTIONS(10099), 1, + sym_identifier, + STATE(3094), 1, + sym_template_type, + STATE(3322), 1, + sym_qualified_type_identifier, + STATE(3562), 1, + sym_class_declaration_item, + STATE(4465), 1, + sym_field_declaration_list, + STATE(4613), 1, + sym_class_name, + STATE(7526), 1, + sym_scope_resolution, + STATE(8160), 1, + sym_virtual_specifier, + STATE(9057), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [271685] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6790), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10471), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(8083), 1, + anon_sym_LBRACE, + ACTIONS(10129), 1, sym_identifier, - STATE(2739), 1, + STATE(4007), 1, sym_class_name, - STATE(3011), 1, + STATE(4400), 1, sym_template_type, - STATE(3140), 1, + STATE(4457), 1, sym_qualified_type_identifier, - STATE(3284), 1, + STATE(4627), 1, sym_field_declaration_list, - STATE(3482), 1, + STATE(4808), 1, sym_class_declaration_item, - STATE(7878), 1, + STATE(7545), 1, sym_scope_resolution, - STATE(8497), 1, + STATE(7916), 1, sym_virtual_specifier, - STATE(9538), 1, + STATE(8693), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(6940), 2, + STATE(6488), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [311537] = 19, + [271746] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6790), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10471), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(8083), 1, + anon_sym_LBRACE, + ACTIONS(10129), 1, sym_identifier, - STATE(2739), 1, + STATE(4007), 1, sym_class_name, - STATE(3011), 1, + STATE(4400), 1, sym_template_type, - STATE(3140), 1, + STATE(4457), 1, sym_qualified_type_identifier, - STATE(3284), 1, + STATE(4627), 1, sym_field_declaration_list, - STATE(3482), 1, + STATE(4808), 1, sym_class_declaration_item, - STATE(7878), 1, + STATE(7545), 1, sym_scope_resolution, - STATE(8497), 1, + STATE(7916), 1, sym_virtual_specifier, - STATE(9538), 1, + STATE(8693), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6245), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [311598] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10899), 1, - anon_sym_COMMA, - ACTIONS(10901), 1, - anon_sym_RPAREN, - ACTIONS(10907), 1, - anon_sym_SLASH, - ACTIONS(10909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10911), 1, - anon_sym_AMP_AMP, - ACTIONS(10913), 1, - anon_sym_PIPE, - ACTIONS(10915), 1, - anon_sym_CARET, - ACTIONS(10917), 1, - anon_sym_AMP, - STATE(9138), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(10903), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10905), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10919), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10921), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10923), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10925), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [311653] = 19, + [271807] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6450), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10508), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(8083), 1, + anon_sym_LBRACE, + ACTIONS(10129), 1, sym_identifier, - STATE(2516), 1, + STATE(4007), 1, sym_class_name, - STATE(2765), 1, + STATE(4400), 1, sym_template_type, - STATE(2887), 1, + STATE(4457), 1, sym_qualified_type_identifier, - STATE(3101), 1, + STATE(4627), 1, sym_field_declaration_list, - STATE(3568), 1, + STATE(4788), 1, sym_class_declaration_item, - STATE(7915), 1, + STATE(7545), 1, sym_scope_resolution, - STATE(8356), 1, + STATE(7916), 1, sym_virtual_specifier, - STATE(9156), 1, + STATE(8693), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(6942), 2, + STATE(6245), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [311714] = 19, + [271868] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10495), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(8083), 1, + anon_sym_LBRACE, + ACTIONS(10129), 1, sym_identifier, - STATE(4401), 1, + STATE(4007), 1, + sym_class_name, + STATE(4400), 1, sym_template_type, - STATE(4797), 1, + STATE(4457), 1, + sym_qualified_type_identifier, + STATE(4627), 1, sym_field_declaration_list, - STATE(4838), 1, - sym_class_name, - STATE(4960), 1, + STATE(4788), 1, sym_class_declaration_item, - STATE(5389), 1, - sym_qualified_type_identifier, - STATE(7903), 1, + STATE(7545), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(7916), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(8693), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(6956), 2, + STATE(6490), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [311775] = 19, + [271929] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10495), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(8083), 1, + anon_sym_LBRACE, + ACTIONS(10129), 1, sym_identifier, - STATE(4401), 1, + STATE(4007), 1, + sym_class_name, + STATE(4400), 1, sym_template_type, - STATE(4797), 1, + STATE(4457), 1, + sym_qualified_type_identifier, + STATE(4627), 1, sym_field_declaration_list, - STATE(4838), 1, - sym_class_name, - STATE(4960), 1, + STATE(4817), 1, sym_class_declaration_item, - STATE(5389), 1, - sym_qualified_type_identifier, - STATE(7903), 1, + STATE(7545), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(7916), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(8693), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6245), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [311836] = 19, + [271990] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6790), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6413), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10471), 1, + ACTIONS(10138), 1, sym_identifier, - STATE(2739), 1, + STATE(2453), 1, sym_class_name, - STATE(3011), 1, + STATE(2674), 1, sym_template_type, - STATE(3140), 1, + STATE(2747), 1, sym_qualified_type_identifier, - STATE(3284), 1, + STATE(2860), 1, sym_field_declaration_list, - STATE(3490), 1, + STATE(3008), 1, sym_class_declaration_item, - STATE(7878), 1, + STATE(7547), 1, sym_scope_resolution, - STATE(8497), 1, + STATE(7928), 1, sym_virtual_specifier, - STATE(9538), 1, + STATE(8773), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6493), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [311897] = 19, + [272051] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6790), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6413), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10471), 1, + ACTIONS(10138), 1, sym_identifier, - STATE(2739), 1, + STATE(2453), 1, sym_class_name, - STATE(3011), 1, + STATE(2674), 1, sym_template_type, - STATE(3140), 1, + STATE(2747), 1, sym_qualified_type_identifier, - STATE(3284), 1, + STATE(2860), 1, sym_field_declaration_list, - STATE(3490), 1, + STATE(3008), 1, sym_class_declaration_item, - STATE(7878), 1, + STATE(7547), 1, sym_scope_resolution, - STATE(8497), 1, + STATE(7928), 1, sym_virtual_specifier, - STATE(9538), 1, + STATE(8773), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(6947), 2, + STATE(6245), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [311958] = 19, + [272112] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6450), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6413), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10508), 1, + ACTIONS(10138), 1, sym_identifier, - STATE(2516), 1, + STATE(2453), 1, sym_class_name, - STATE(2765), 1, + STATE(2674), 1, sym_template_type, - STATE(2887), 1, + STATE(2747), 1, sym_qualified_type_identifier, - STATE(3101), 1, + STATE(2860), 1, sym_field_declaration_list, - STATE(3585), 1, + STATE(3017), 1, sym_class_declaration_item, - STATE(7915), 1, + STATE(7547), 1, sym_scope_resolution, - STATE(8356), 1, + STATE(7928), 1, sym_virtual_specifier, - STATE(9156), 1, + STATE(8773), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6245), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [312019] = 19, + [272173] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6413), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10495), 1, + ACTIONS(10138), 1, sym_identifier, - STATE(3800), 1, + STATE(2453), 1, sym_class_name, - STATE(4401), 1, + STATE(2674), 1, sym_template_type, - STATE(4404), 1, + STATE(2747), 1, sym_qualified_type_identifier, - STATE(4797), 1, + STATE(2860), 1, sym_field_declaration_list, - STATE(4833), 1, + STATE(3017), 1, sym_class_declaration_item, - STATE(7879), 1, + STATE(7547), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(7928), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(8773), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6495), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [312080] = 3, + [272234] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(6368), 1, - anon_sym_LBRACK, - ACTIONS(6370), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(6413), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(7552), 1, anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(10138), 1, + sym_identifier, + STATE(2453), 1, + sym_class_name, + STATE(2674), 1, + sym_template_type, + STATE(2747), 1, + sym_qualified_type_identifier, + STATE(2860), 1, + sym_field_declaration_list, + STATE(3033), 1, + sym_class_declaration_item, + STATE(7547), 1, + sym_scope_resolution, + STATE(7928), 1, + sym_virtual_specifier, + STATE(8773), 1, + sym_base_class_clause, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [312109] = 19, + STATE(6245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [272295] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(8627), 1, - anon_sym_LBRACE, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10525), 1, + ACTIONS(6695), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10119), 1, sym_identifier, - STATE(4750), 1, + STATE(2604), 1, sym_class_name, - STATE(5185), 1, + STATE(2808), 1, sym_template_type, - STATE(5289), 1, + STATE(2845), 1, sym_qualified_type_identifier, - STATE(5455), 1, + STATE(3047), 1, sym_field_declaration_list, - STATE(5734), 1, + STATE(3285), 1, sym_class_declaration_item, - STATE(7944), 1, + STATE(7544), 1, sym_scope_resolution, - STATE(8545), 1, + STATE(8172), 1, sym_virtual_specifier, - STATE(9535), 1, + STATE(9087), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(6984), 2, + STATE(6499), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [312170] = 19, + [272356] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10269), 1, + ACTIONS(6695), 1, anon_sym_LBRACE, - ACTIONS(10506), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10119), 1, sym_identifier, - STATE(6327), 1, + STATE(2604), 1, sym_class_name, - STATE(6686), 1, + STATE(2808), 1, sym_template_type, - STATE(6723), 1, + STATE(2845), 1, sym_qualified_type_identifier, - STATE(6790), 1, + STATE(3047), 1, sym_field_declaration_list, - STATE(6834), 1, + STATE(3285), 1, sym_class_declaration_item, - STATE(7896), 1, + STATE(7544), 1, sym_scope_resolution, - STATE(8433), 1, + STATE(8172), 1, sym_virtual_specifier, - STATE(9360), 1, + STATE(9087), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6245), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [312231] = 19, + [272417] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6790), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7550), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10471), 1, + ACTIONS(10099), 1, sym_identifier, - STATE(2739), 1, - sym_class_name, - STATE(3011), 1, + STATE(3094), 1, sym_template_type, - STATE(3140), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(3284), 1, - sym_field_declaration_list, - STATE(3499), 1, + STATE(3453), 1, + sym_class_name, + STATE(3640), 1, sym_class_declaration_item, - STATE(7878), 1, + STATE(4465), 1, + sym_field_declaration_list, + STATE(7571), 1, sym_scope_resolution, - STATE(8497), 1, + STATE(8160), 1, sym_virtual_specifier, - STATE(9538), 1, + STATE(9057), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6508), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [312292] = 8, + [272478] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(10929), 1, - anon_sym_LBRACK, - ACTIONS(10934), 1, - anon_sym_requires, - STATE(7267), 1, - sym_function_postfix, - STATE(7270), 1, - sym_requires_clause, - ACTIONS(10931), 2, - anon_sym_final, - anon_sym_override, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10927), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(6695), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(7552), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [312331] = 19, + ACTIONS(10119), 1, + sym_identifier, + STATE(2604), 1, + sym_class_name, + STATE(2808), 1, + sym_template_type, + STATE(2845), 1, + sym_qualified_type_identifier, + STATE(3047), 1, + sym_field_declaration_list, + STATE(3214), 1, + sym_class_declaration_item, + STATE(7544), 1, + sym_scope_resolution, + STATE(8172), 1, + sym_virtual_specifier, + STATE(9087), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [272539] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6450), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6695), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10508), 1, + ACTIONS(10119), 1, sym_identifier, - STATE(2516), 1, + STATE(2604), 1, sym_class_name, - STATE(2765), 1, + STATE(2808), 1, sym_template_type, - STATE(2887), 1, + STATE(2845), 1, sym_qualified_type_identifier, - STATE(3101), 1, + STATE(3047), 1, sym_field_declaration_list, - STATE(3585), 1, + STATE(3214), 1, sym_class_declaration_item, - STATE(7915), 1, + STATE(7544), 1, sym_scope_resolution, - STATE(8356), 1, + STATE(8172), 1, sym_virtual_specifier, - STATE(9156), 1, + STATE(9087), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(6994), 2, + STATE(6501), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [312392] = 19, + [272600] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6450), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6695), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10508), 1, + ACTIONS(10119), 1, sym_identifier, - STATE(2516), 1, + STATE(2604), 1, sym_class_name, - STATE(2765), 1, + STATE(2808), 1, sym_template_type, - STATE(2887), 1, + STATE(2845), 1, sym_qualified_type_identifier, - STATE(3101), 1, + STATE(3047), 1, sym_field_declaration_list, - STATE(3568), 1, + STATE(3209), 1, sym_class_declaration_item, - STATE(7915), 1, + STATE(7544), 1, sym_scope_resolution, - STATE(8356), 1, + STATE(8172), 1, sym_virtual_specifier, - STATE(9156), 1, + STATE(9087), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6245), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [312453] = 5, + [272661] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6372), 1, - anon_sym_LBRACK, - ACTIONS(10937), 2, + ACTIONS(10499), 1, + anon_sym_COMMA, + ACTIONS(10507), 1, + anon_sym_SLASH, + ACTIONS(10509), 1, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(10939), 2, + ACTIONS(10511), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6374), 16, - anon_sym_COMMA, + ACTIONS(10513), 1, + anon_sym_PIPE, + ACTIONS(10515), 1, + anon_sym_CARET, + ACTIONS(10517), 1, + anon_sym_AMP, + ACTIONS(10527), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + STATE(8421), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(10503), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10505), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10519), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10521), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10523), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10525), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [272716] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(7550), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(7552), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(10142), 1, + sym_identifier, + STATE(3094), 1, + sym_template_type, + STATE(3098), 1, + sym_qualified_type_identifier, + STATE(3453), 1, + sym_class_name, + STATE(3579), 1, + sym_class_declaration_item, + STATE(4465), 1, + sym_field_declaration_list, + STATE(7569), 1, + sym_scope_resolution, + STATE(8160), 1, + sym_virtual_specifier, + STATE(9057), 1, + sym_base_class_clause, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [312486] = 19, + STATE(6506), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [272777] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(8311), 1, - anon_sym_LBRACE, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10481), 1, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10142), 1, sym_identifier, - STATE(4246), 1, - sym_class_name, - STATE(4364), 1, + STATE(3094), 1, sym_template_type, - STATE(4501), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(4689), 1, - sym_field_declaration_list, - STATE(4762), 1, + STATE(3453), 1, + sym_class_name, + STATE(3579), 1, sym_class_declaration_item, - STATE(7904), 1, + STATE(4465), 1, + sym_field_declaration_list, + STATE(7569), 1, sym_scope_resolution, - STATE(8223), 1, + STATE(8160), 1, sym_virtual_specifier, - STATE(9383), 1, + STATE(9057), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6245), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [312547] = 8, + [272838] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(10469), 1, - anon_sym_LBRACK, - ACTIONS(10536), 1, - anon_sym_requires, - STATE(7270), 1, - sym_requires_clause, - STATE(7333), 1, - sym_function_postfix, - ACTIONS(10533), 2, - anon_sym_final, - anon_sym_override, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10464), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(7550), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(7552), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [312586] = 19, + ACTIONS(10127), 1, + sym_identifier, + STATE(3094), 1, + sym_template_type, + STATE(3322), 1, + sym_qualified_type_identifier, + STATE(3562), 1, + sym_class_declaration_item, + STATE(4009), 1, + sym_class_name, + STATE(4469), 1, + sym_field_declaration_list, + STATE(7551), 1, + sym_scope_resolution, + STATE(8157), 1, + sym_virtual_specifier, + STATE(9050), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [272899] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6803), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7550), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10473), 1, + ACTIONS(10142), 1, sym_identifier, - STATE(2745), 1, - sym_class_name, - STATE(3135), 1, + STATE(3094), 1, sym_template_type, - STATE(3434), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(3726), 1, - sym_field_declaration_list, - STATE(3960), 1, + STATE(3453), 1, + sym_class_name, + STATE(3640), 1, sym_class_declaration_item, - STATE(7909), 1, + STATE(4465), 1, + sym_field_declaration_list, + STATE(7569), 1, sym_scope_resolution, - STATE(8193), 1, + STATE(8160), 1, sym_virtual_specifier, - STATE(9509), 1, + STATE(9057), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(6962), 2, + STATE(6245), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [312647] = 19, + [272960] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6803), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7550), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10473), 1, + ACTIONS(10142), 1, sym_identifier, - STATE(2745), 1, - sym_class_name, - STATE(3135), 1, + STATE(3094), 1, sym_template_type, - STATE(3434), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(3726), 1, - sym_field_declaration_list, - STATE(3960), 1, + STATE(3453), 1, + sym_class_name, + STATE(3640), 1, sym_class_declaration_item, - STATE(7909), 1, + STATE(4465), 1, + sym_field_declaration_list, + STATE(7569), 1, sym_scope_resolution, - STATE(8193), 1, + STATE(8160), 1, sym_virtual_specifier, - STATE(9509), 1, + STATE(9057), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6515), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [312708] = 19, + [273021] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7550), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10495), 1, + ACTIONS(10099), 1, sym_identifier, - STATE(4401), 1, + STATE(3094), 1, sym_template_type, - STATE(4797), 1, - sym_field_declaration_list, - STATE(4838), 1, + STATE(3098), 1, + sym_qualified_type_identifier, + STATE(3453), 1, sym_class_name, - STATE(4949), 1, + STATE(3562), 1, sym_class_declaration_item, - STATE(5389), 1, - sym_qualified_type_identifier, - STATE(7903), 1, + STATE(4465), 1, + sym_field_declaration_list, + STATE(7571), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(8160), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(9057), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6245), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [312769] = 19, + [273082] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6367), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10495), 1, + ACTIONS(10103), 1, sym_identifier, - STATE(4401), 1, + STATE(2410), 1, + sym_class_name, + STATE(2582), 1, sym_template_type, - STATE(4797), 1, + STATE(2598), 1, sym_field_declaration_list, - STATE(4838), 1, - sym_class_name, - STATE(4949), 1, + STATE(2695), 1, sym_class_declaration_item, - STATE(5389), 1, + STATE(2696), 1, sym_qualified_type_identifier, - STATE(7903), 1, + STATE(7524), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(8113), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(8974), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(6967), 2, + STATE(6245), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [312830] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7346), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_RBRACK_RBRACK, - anon_sym_LBRACE, - ACTIONS(7348), 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, - [312859] = 19, + [273143] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(8627), 1, - anon_sym_LBRACE, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10525), 1, + ACTIONS(6367), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10103), 1, sym_identifier, - STATE(4750), 1, + STATE(2410), 1, sym_class_name, - STATE(5185), 1, + STATE(2582), 1, sym_template_type, - STATE(5289), 1, - sym_qualified_type_identifier, - STATE(5455), 1, + STATE(2598), 1, sym_field_declaration_list, - STATE(5734), 1, + STATE(2681), 1, sym_class_declaration_item, - STATE(7944), 1, + STATE(2696), 1, + sym_qualified_type_identifier, + STATE(7524), 1, sym_scope_resolution, - STATE(8545), 1, + STATE(8113), 1, sym_virtual_specifier, - STATE(9535), 1, + STATE(8974), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6509), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [312920] = 19, + [273204] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6132), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10475), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(9670), 1, + anon_sym_LBRACE, + ACTIONS(10109), 1, sym_identifier, - STATE(2190), 1, - sym_class_name, - STATE(2515), 1, + STATE(3094), 1, sym_template_type, - STATE(2599), 1, + STATE(3322), 1, sym_qualified_type_identifier, - STATE(2717), 1, - sym_field_declaration_list, - STATE(2798), 1, + STATE(5015), 1, sym_class_declaration_item, - STATE(7919), 1, + STATE(5620), 1, + sym_class_name, + STATE(5797), 1, + sym_field_declaration_list, + STATE(7521), 1, sym_scope_resolution, - STATE(8434), 1, + STATE(8125), 1, sym_virtual_specifier, - STATE(9373), 1, + STATE(9001), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6518), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [312981] = 19, + [273265] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6116), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10504), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(9670), 1, + anon_sym_LBRACE, + ACTIONS(10109), 1, sym_identifier, - STATE(2182), 1, - sym_class_name, - STATE(2486), 1, - sym_field_declaration_list, - STATE(2509), 1, + STATE(3094), 1, sym_template_type, - STATE(2583), 1, - sym_class_declaration_item, - STATE(2589), 1, + STATE(3322), 1, sym_qualified_type_identifier, - STATE(7886), 1, + STATE(5015), 1, + sym_class_declaration_item, + STATE(5620), 1, + sym_class_name, + STATE(5797), 1, + sym_field_declaration_list, + STATE(7521), 1, sym_scope_resolution, - STATE(8435), 1, + STATE(8125), 1, sym_virtual_specifier, - STATE(9380), 1, + STATE(9001), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7056), 2, + STATE(6245), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [313042] = 19, + [273326] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6803), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6367), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10473), 1, + ACTIONS(10103), 1, sym_identifier, - STATE(2745), 1, + STATE(2410), 1, sym_class_name, - STATE(3135), 1, + STATE(2582), 1, sym_template_type, - STATE(3434), 1, - sym_qualified_type_identifier, - STATE(3726), 1, + STATE(2598), 1, sym_field_declaration_list, - STATE(3994), 1, + STATE(2681), 1, sym_class_declaration_item, - STATE(7909), 1, + STATE(2696), 1, + sym_qualified_type_identifier, + STATE(7524), 1, sym_scope_resolution, - STATE(8193), 1, + STATE(8113), 1, sym_virtual_specifier, - STATE(9509), 1, + STATE(8974), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6245), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [273387] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(135), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(9197), 1, + anon_sym_STAR, + ACTIONS(10529), 1, + sym_identifier, + ACTIONS(10531), 1, + anon_sym_template, + STATE(6514), 1, + sym_scope_resolution, + STATE(9517), 1, + sym_ms_based_modifier, + STATE(8110), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(9605), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [313103] = 19, + STATE(3095), 6, + sym_pointer_type_declarator, + sym_template_function, + sym_destructor_name, + sym_dependent_identifier, + sym_qualified_identifier, + sym_operator_name, + [273438] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6803), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7550), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10473), 1, + ACTIONS(10142), 1, sym_identifier, - STATE(2745), 1, - sym_class_name, - STATE(3135), 1, + STATE(3094), 1, sym_template_type, - STATE(3434), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(3726), 1, - sym_field_declaration_list, - STATE(3994), 1, + STATE(3453), 1, + sym_class_name, + STATE(3562), 1, sym_class_declaration_item, - STATE(7909), 1, + STATE(4465), 1, + sym_field_declaration_list, + STATE(7569), 1, sym_scope_resolution, - STATE(8193), 1, + STATE(8160), 1, sym_virtual_specifier, - STATE(9509), 1, + STATE(9057), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(6969), 2, + STATE(6245), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [313164] = 8, + [273499] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7926), 1, - anon_sym_requires, - ACTIONS(10929), 1, + ACTIONS(8719), 1, + anon_sym_LPAREN2, + ACTIONS(8727), 1, anon_sym_LBRACK, - STATE(7267), 1, - sym_function_postfix, - STATE(7270), 1, - sym_requires_clause, - ACTIONS(6118), 2, - anon_sym_final, - anon_sym_override, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10927), 13, - anon_sym_COMMA, + ACTIONS(9161), 1, + anon_sym_STAR, + ACTIONS(9163), 1, + anon_sym_AMP_AMP, + ACTIONS(9165), 1, + anon_sym_AMP, + STATE(4300), 1, + sym_parameter_list, + STATE(6893), 1, + sym_function_declarator_seq, + STATE(7331), 1, + sym_abstract_declarator, + STATE(6892), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8561), 8, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, + anon_sym_final, + anon_sym_override, anon_sym_try, - [313203] = 3, + anon_sym_requires, + [273544] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3078), 1, - anon_sym_LBRACK, - ACTIONS(3080), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(6367), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(7552), 1, anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(10148), 1, + sym_identifier, + STATE(2410), 1, + sym_class_name, + STATE(2582), 1, + sym_template_type, + STATE(2598), 1, + sym_field_declaration_list, + STATE(2695), 1, + sym_class_declaration_item, + STATE(2696), 1, + sym_qualified_type_identifier, + STATE(7516), 1, + sym_scope_resolution, + STATE(8113), 1, + sym_virtual_specifier, + STATE(8974), 1, + sym_base_class_clause, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [313232] = 8, + STATE(6245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [273605] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7926), 1, - anon_sym_requires, - ACTIONS(10106), 1, - anon_sym_LBRACK, - STATE(7270), 1, - sym_requires_clause, - STATE(7338), 1, - sym_function_postfix, - ACTIONS(6118), 2, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(9670), 1, + anon_sym_LBRACE, + ACTIONS(10109), 1, + sym_identifier, + STATE(3094), 1, + sym_template_type, + STATE(3322), 1, + sym_qualified_type_identifier, + STATE(5036), 1, + sym_class_declaration_item, + STATE(5620), 1, + sym_class_name, + STATE(5797), 1, + sym_field_declaration_list, + STATE(7521), 1, + sym_scope_resolution, + STATE(8125), 1, + sym_virtual_specifier, + STATE(9001), 1, + sym_base_class_clause, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10101), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + STATE(6245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [273666] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(7552), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [313271] = 19, + ACTIONS(9670), 1, + anon_sym_LBRACE, + ACTIONS(10109), 1, + sym_identifier, + STATE(3094), 1, + sym_template_type, + STATE(3322), 1, + sym_qualified_type_identifier, + STATE(5036), 1, + sym_class_declaration_item, + STATE(5620), 1, + sym_class_name, + STATE(5797), 1, + sym_field_declaration_list, + STATE(7521), 1, + sym_scope_resolution, + STATE(8125), 1, + sym_virtual_specifier, + STATE(9001), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6520), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [273727] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10495), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(9670), 1, + anon_sym_LBRACE, + ACTIONS(10109), 1, sym_identifier, - STATE(4401), 1, + STATE(3094), 1, sym_template_type, - STATE(4797), 1, - sym_field_declaration_list, - STATE(4833), 1, + STATE(3322), 1, + sym_qualified_type_identifier, + STATE(5054), 1, sym_class_declaration_item, - STATE(4838), 1, + STATE(5620), 1, sym_class_name, - STATE(5389), 1, - sym_qualified_type_identifier, - STATE(7903), 1, + STATE(5797), 1, + sym_field_declaration_list, + STATE(7521), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(8125), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(9001), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6245), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [313332] = 19, + [273788] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6116), 1, + ACTIONS(5700), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10504), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10146), 1, sym_identifier, - STATE(2182), 1, + STATE(1897), 1, sym_class_name, - STATE(2486), 1, - sym_field_declaration_list, - STATE(2509), 1, + STATE(2050), 1, sym_template_type, - STATE(2583), 1, - sym_class_declaration_item, - STATE(2589), 1, + STATE(2137), 1, sym_qualified_type_identifier, - STATE(7886), 1, + STATE(2191), 1, + sym_field_declaration_list, + STATE(2327), 1, + sym_class_declaration_item, + STATE(7549), 1, sym_scope_resolution, - STATE(8435), 1, + STATE(7988), 1, sym_virtual_specifier, - STATE(9380), 1, + STATE(9035), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6523), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [313393] = 19, + [273849] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6803), 1, + ACTIONS(5700), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10473), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10146), 1, sym_identifier, - STATE(2745), 1, + STATE(1897), 1, sym_class_name, - STATE(3135), 1, + STATE(2050), 1, sym_template_type, - STATE(3434), 1, + STATE(2137), 1, sym_qualified_type_identifier, - STATE(3726), 1, + STATE(2191), 1, sym_field_declaration_list, - STATE(4014), 1, + STATE(2327), 1, sym_class_declaration_item, - STATE(7909), 1, + STATE(7549), 1, sym_scope_resolution, - STATE(8193), 1, + STATE(7988), 1, sym_virtual_specifier, - STATE(9509), 1, + STATE(9035), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6245), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [313454] = 19, + [273910] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, + ACTIONS(5700), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10495), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10146), 1, sym_identifier, - STATE(3800), 1, + STATE(1897), 1, sym_class_name, - STATE(4401), 1, + STATE(2050), 1, sym_template_type, - STATE(4404), 1, + STATE(2137), 1, sym_qualified_type_identifier, - STATE(4797), 1, + STATE(2191), 1, sym_field_declaration_list, - STATE(4960), 1, + STATE(2366), 1, sym_class_declaration_item, - STATE(7879), 1, + STATE(7549), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(7988), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(9035), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7049), 2, + STATE(6245), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [313515] = 4, + [273971] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(6414), 1, - anon_sym_LBRACK, - ACTIONS(10939), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6416), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(7552), 1, anon_sym_COLON, - anon_sym_or, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(8314), 1, + anon_sym_LBRACE, + ACTIONS(10121), 1, + sym_identifier, + STATE(2532), 1, + sym_template_type, + STATE(2703), 1, + sym_qualified_type_identifier, + STATE(4441), 1, + sym_class_name, + STATE(4936), 1, + sym_field_declaration_list, + STATE(5329), 1, + sym_class_declaration_item, + STATE(7574), 1, + sym_scope_resolution, + STATE(8086), 1, + sym_virtual_specifier, + STATE(8905), 1, + sym_base_class_clause, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [313546] = 8, + STATE(6448), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [274032] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(9902), 1, - anon_sym_LBRACK, - ACTIONS(9995), 1, - anon_sym_requires, - STATE(7270), 1, - sym_requires_clause, - STATE(7298), 1, - sym_function_postfix, - ACTIONS(9992), 2, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5700), 1, + anon_sym_LBRACE, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10146), 1, + sym_identifier, + STATE(1897), 1, + sym_class_name, + STATE(2050), 1, + sym_template_type, + STATE(2137), 1, + sym_qualified_type_identifier, + STATE(2191), 1, + sym_field_declaration_list, + STATE(2390), 1, + sym_class_declaration_item, + STATE(7549), 1, + sym_scope_resolution, + STATE(7988), 1, + sym_virtual_specifier, + STATE(9035), 1, + sym_base_class_clause, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(9897), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + STATE(6245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [274093] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5700), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7552), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [313585] = 14, + ACTIONS(10125), 1, + sym_identifier, + STATE(1897), 1, + sym_class_name, + STATE(2050), 1, + sym_template_type, + STATE(2137), 1, + sym_qualified_type_identifier, + STATE(2191), 1, + sym_field_declaration_list, + STATE(2327), 1, + sym_class_declaration_item, + STATE(7557), 1, + sym_scope_resolution, + STATE(7988), 1, + sym_virtual_specifier, + STATE(9035), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6530), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [274154] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(135), 1, - anon_sym_operator, + ACTIONS(1534), 1, + anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(9594), 1, - anon_sym_STAR, - ACTIONS(10941), 1, + ACTIONS(5700), 1, + anon_sym_LBRACE, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10125), 1, sym_identifier, - ACTIONS(10943), 1, - anon_sym_template, - STATE(6973), 1, + STATE(1897), 1, + sym_class_name, + STATE(2050), 1, + sym_template_type, + STATE(2137), 1, + sym_qualified_type_identifier, + STATE(2191), 1, + sym_field_declaration_list, + STATE(2327), 1, + sym_class_declaration_item, + STATE(7557), 1, sym_scope_resolution, - STATE(10178), 1, - sym_ms_based_modifier, - STATE(8361), 2, - sym_operator_cast, - sym_qualified_operator_cast_identifier, - STATE(9982), 3, + STATE(7988), 1, + sym_virtual_specifier, + STATE(9035), 1, + sym_base_class_clause, + ACTIONS(5704), 2, + anon_sym_final, + anon_sym_override, + STATE(6245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - STATE(3197), 6, - sym_pointer_type_declarator, - sym_template_function, - sym_destructor_name, - sym_dependent_identifier, - sym_qualified_identifier, - sym_operator_name, - [313636] = 3, + [274215] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10481), 1, + sym_identifier, + ACTIONS(10485), 1, + anon_sym_LPAREN2, + ACTIONS(10487), 1, + anon_sym_defined, + ACTIONS(10493), 1, + sym_number_literal, + ACTIONS(10533), 1, + anon_sym_RPAREN, + STATE(6570), 1, + sym_preproc_expression, + ACTIONS(10489), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10491), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10495), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6611), 6, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [274260] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(6482), 1, - anon_sym_LBRACK, - ACTIONS(6484), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(7552), 1, anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(8314), 1, + anon_sym_LBRACE, + ACTIONS(10121), 1, + sym_identifier, + STATE(2532), 1, + sym_template_type, + STATE(2703), 1, + sym_qualified_type_identifier, + STATE(4441), 1, + sym_class_name, + STATE(4936), 1, + sym_field_declaration_list, + STATE(5329), 1, + sym_class_declaration_item, + STATE(7574), 1, + sym_scope_resolution, + STATE(8086), 1, + sym_virtual_specifier, + STATE(8905), 1, + sym_base_class_clause, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [313665] = 19, + STATE(6245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [274321] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6718), 1, + ACTIONS(5700), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10477), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10125), 1, sym_identifier, - STATE(2676), 1, + STATE(1897), 1, sym_class_name, - STATE(3010), 1, + STATE(2050), 1, sym_template_type, - STATE(3184), 1, + STATE(2137), 1, sym_qualified_type_identifier, - STATE(3525), 1, + STATE(2191), 1, sym_field_declaration_list, - STATE(3922), 1, + STATE(2366), 1, sym_class_declaration_item, - STATE(7917), 1, + STATE(7557), 1, sym_scope_resolution, - STATE(8224), 1, + STATE(7988), 1, sym_virtual_specifier, - STATE(9384), 1, + STATE(9035), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(6982), 2, + STATE(6245), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [313726] = 19, + [274382] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6718), 1, + ACTIONS(5700), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10477), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10125), 1, sym_identifier, - STATE(2676), 1, + STATE(1897), 1, sym_class_name, - STATE(3010), 1, + STATE(2050), 1, sym_template_type, - STATE(3184), 1, + STATE(2137), 1, sym_qualified_type_identifier, - STATE(3525), 1, + STATE(2191), 1, sym_field_declaration_list, - STATE(3922), 1, + STATE(2366), 1, sym_class_declaration_item, - STATE(7917), 1, + STATE(7557), 1, sym_scope_resolution, - STATE(8224), 1, + STATE(7988), 1, sym_virtual_specifier, - STATE(9384), 1, + STATE(9035), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6532), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [313787] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3096), 1, - anon_sym_LBRACK, - ACTIONS(3094), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - 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_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [313816] = 19, + [274443] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, + ACTIONS(5700), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10495), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10125), 1, sym_identifier, - STATE(3800), 1, + STATE(1897), 1, sym_class_name, - STATE(4401), 1, + STATE(2050), 1, sym_template_type, - STATE(4404), 1, + STATE(2137), 1, sym_qualified_type_identifier, - STATE(4797), 1, + STATE(2191), 1, sym_field_declaration_list, - STATE(4949), 1, + STATE(2390), 1, sym_class_declaration_item, - STATE(7879), 1, + STATE(7557), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(7988), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(9035), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(6943), 2, + STATE(6245), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [313877] = 19, + [274504] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6116), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10504), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(9670), 1, + anon_sym_LBRACE, + ACTIONS(10144), 1, sym_identifier, - STATE(2182), 1, - sym_class_name, - STATE(2486), 1, - sym_field_declaration_list, - STATE(2509), 1, + STATE(2532), 1, sym_template_type, - STATE(2564), 1, - sym_class_declaration_item, - STATE(2589), 1, + STATE(2703), 1, sym_qualified_type_identifier, - STATE(7886), 1, + STATE(5015), 1, + sym_class_declaration_item, + STATE(5844), 1, + sym_class_name, + STATE(6313), 1, + sym_field_declaration_list, + STATE(7572), 1, sym_scope_resolution, - STATE(8435), 1, + STATE(7987), 1, sym_virtual_specifier, - STATE(9380), 1, + STATE(9032), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6537), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [313938] = 3, + [274565] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(6496), 1, - anon_sym_LBRACK, - ACTIONS(6498), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(7552), 1, anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [313967] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6418), 1, - anon_sym_LBRACK, - ACTIONS(6420), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + ACTIONS(9670), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(10144), 1, + sym_identifier, + STATE(2532), 1, + sym_template_type, + STATE(2703), 1, + sym_qualified_type_identifier, + STATE(5015), 1, + sym_class_declaration_item, + STATE(5844), 1, + sym_class_name, + STATE(6313), 1, + sym_field_declaration_list, + STATE(7572), 1, + sym_scope_resolution, + STATE(7987), 1, + sym_virtual_specifier, + STATE(9032), 1, + sym_base_class_clause, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [313996] = 19, + STATE(6245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [274626] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6718), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7550), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10477), 1, + ACTIONS(10109), 1, sym_identifier, - STATE(2676), 1, - sym_class_name, - STATE(3010), 1, + STATE(3094), 1, sym_template_type, - STATE(3184), 1, + STATE(3322), 1, sym_qualified_type_identifier, - STATE(3525), 1, - sym_field_declaration_list, - STATE(3836), 1, + STATE(3579), 1, sym_class_declaration_item, - STATE(7917), 1, + STATE(4009), 1, + sym_class_name, + STATE(4469), 1, + sym_field_declaration_list, + STATE(7521), 1, sym_scope_resolution, - STATE(8224), 1, + STATE(8157), 1, sym_virtual_specifier, - STATE(9384), 1, + STATE(9050), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6540), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [314057] = 19, + [274687] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6718), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7550), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10477), 1, + ACTIONS(10109), 1, sym_identifier, - STATE(2676), 1, - sym_class_name, - STATE(3010), 1, + STATE(3094), 1, sym_template_type, - STATE(3184), 1, + STATE(3322), 1, sym_qualified_type_identifier, - STATE(3525), 1, - sym_field_declaration_list, - STATE(3836), 1, + STATE(3579), 1, sym_class_declaration_item, - STATE(7917), 1, + STATE(4009), 1, + sym_class_name, + STATE(4469), 1, + sym_field_declaration_list, + STATE(7521), 1, sym_scope_resolution, - STATE(8224), 1, + STATE(8157), 1, sym_virtual_specifier, - STATE(9384), 1, + STATE(9050), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(6989), 2, + STATE(6245), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [314118] = 19, + [274748] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(8627), 1, + ACTIONS(9670), 1, anon_sym_LBRACE, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10525), 1, + ACTIONS(10144), 1, sym_identifier, - STATE(4750), 1, - sym_class_name, - STATE(5185), 1, + STATE(2532), 1, sym_template_type, - STATE(5289), 1, + STATE(2703), 1, sym_qualified_type_identifier, - STATE(5455), 1, - sym_field_declaration_list, - STATE(5798), 1, + STATE(5036), 1, sym_class_declaration_item, - STATE(7944), 1, + STATE(5844), 1, + sym_class_name, + STATE(6313), 1, + sym_field_declaration_list, + STATE(7572), 1, sym_scope_resolution, - STATE(8545), 1, + STATE(7987), 1, sym_virtual_specifier, - STATE(9535), 1, + STATE(9032), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6245), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [314179] = 19, + [274809] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(8627), 1, + ACTIONS(9670), 1, anon_sym_LBRACE, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10525), 1, + ACTIONS(10144), 1, sym_identifier, - STATE(4750), 1, - sym_class_name, - STATE(5185), 1, + STATE(2532), 1, sym_template_type, - STATE(5289), 1, + STATE(2703), 1, sym_qualified_type_identifier, - STATE(5455), 1, - sym_field_declaration_list, - STATE(5798), 1, + STATE(5036), 1, sym_class_declaration_item, - STATE(7944), 1, + STATE(5844), 1, + sym_class_name, + STATE(6313), 1, + sym_field_declaration_list, + STATE(7572), 1, sym_scope_resolution, - STATE(8545), 1, + STATE(7987), 1, sym_virtual_specifier, - STATE(9535), 1, + STATE(9032), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7025), 2, + STATE(6539), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [314240] = 19, + [274870] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6132), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10475), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(9670), 1, + anon_sym_LBRACE, + ACTIONS(10144), 1, sym_identifier, - STATE(2190), 1, - sym_class_name, - STATE(2515), 1, + STATE(2532), 1, sym_template_type, - STATE(2599), 1, + STATE(2703), 1, sym_qualified_type_identifier, - STATE(2717), 1, - sym_field_declaration_list, - STATE(2832), 1, + STATE(5054), 1, sym_class_declaration_item, - STATE(7919), 1, + STATE(5844), 1, + sym_class_name, + STATE(6313), 1, + sym_field_declaration_list, + STATE(7572), 1, sym_scope_resolution, - STATE(8434), 1, + STATE(7987), 1, sym_virtual_specifier, - STATE(9373), 1, + STATE(9032), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7044), 2, + STATE(6245), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [314301] = 3, + [274931] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(6500), 1, - anon_sym_LBRACK, - ACTIONS(6502), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(7550), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(7552), 1, anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(10109), 1, + sym_identifier, + STATE(3094), 1, + sym_template_type, + STATE(3322), 1, + sym_qualified_type_identifier, + STATE(3640), 1, + sym_class_declaration_item, + STATE(4009), 1, + sym_class_name, + STATE(4469), 1, + sym_field_declaration_list, + STATE(7521), 1, + sym_scope_resolution, + STATE(8157), 1, + sym_virtual_specifier, + STATE(9050), 1, + sym_base_class_clause, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [314330] = 19, + STATE(6245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [274992] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6132), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7550), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10475), 1, + ACTIONS(10109), 1, sym_identifier, - STATE(2190), 1, - sym_class_name, - STATE(2515), 1, + STATE(3094), 1, sym_template_type, - STATE(2599), 1, + STATE(3322), 1, sym_qualified_type_identifier, - STATE(2717), 1, - sym_field_declaration_list, - STATE(2832), 1, + STATE(3640), 1, sym_class_declaration_item, - STATE(7919), 1, + STATE(4009), 1, + sym_class_name, + STATE(4469), 1, + sym_field_declaration_list, + STATE(7521), 1, sym_scope_resolution, - STATE(8434), 1, + STATE(8157), 1, sym_virtual_specifier, - STATE(9373), 1, + STATE(9050), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6542), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [314391] = 19, + [275053] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6718), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7550), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10477), 1, + ACTIONS(10109), 1, sym_identifier, - STATE(2676), 1, - sym_class_name, - STATE(3010), 1, + STATE(3094), 1, sym_template_type, - STATE(3184), 1, + STATE(3322), 1, sym_qualified_type_identifier, - STATE(3525), 1, - sym_field_declaration_list, - STATE(3887), 1, + STATE(3562), 1, sym_class_declaration_item, - STATE(7917), 1, + STATE(4009), 1, + sym_class_name, + STATE(4469), 1, + sym_field_declaration_list, + STATE(7521), 1, sym_scope_resolution, - STATE(8224), 1, + STATE(8157), 1, sym_virtual_specifier, - STATE(9384), 1, + STATE(9050), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6245), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [314452] = 19, + [275114] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10269), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(7593), 1, anon_sym_LBRACE, - ACTIONS(10506), 1, + ACTIONS(10123), 1, sym_identifier, - STATE(6327), 1, + STATE(3529), 1, sym_class_name, - STATE(6686), 1, + STATE(4123), 1, sym_template_type, - STATE(6723), 1, + STATE(4280), 1, sym_qualified_type_identifier, - STATE(6790), 1, + STATE(4473), 1, sym_field_declaration_list, - STATE(6862), 1, + STATE(4618), 1, sym_class_declaration_item, - STATE(7896), 1, + STATE(7541), 1, sym_scope_resolution, - STATE(8433), 1, + STATE(7903), 1, sym_virtual_specifier, - STATE(9360), 1, + STATE(9014), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7067), 2, + STATE(6556), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [314513] = 19, + [275175] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10269), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(7593), 1, anon_sym_LBRACE, - ACTIONS(10506), 1, + ACTIONS(10123), 1, sym_identifier, - STATE(6327), 1, + STATE(3529), 1, sym_class_name, - STATE(6686), 1, + STATE(4123), 1, sym_template_type, - STATE(6723), 1, + STATE(4280), 1, sym_qualified_type_identifier, - STATE(6790), 1, + STATE(4473), 1, sym_field_declaration_list, - STATE(6862), 1, + STATE(4618), 1, sym_class_declaration_item, - STATE(7896), 1, + STATE(7541), 1, sym_scope_resolution, - STATE(8433), 1, + STATE(7903), 1, sym_virtual_specifier, - STATE(9360), 1, + STATE(9014), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6245), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [314574] = 19, + [275236] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6790), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6894), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10521), 1, + ACTIONS(10133), 1, sym_identifier, - STATE(2739), 1, + STATE(2772), 1, sym_class_name, - STATE(3011), 1, + STATE(2919), 1, sym_template_type, - STATE(3140), 1, + STATE(3097), 1, sym_qualified_type_identifier, - STATE(3284), 1, + STATE(3102), 1, sym_field_declaration_list, - STATE(3482), 1, + STATE(3318), 1, sym_class_declaration_item, - STATE(7876), 1, + STATE(7558), 1, sym_scope_resolution, - STATE(8497), 1, + STATE(8036), 1, sym_virtual_specifier, - STATE(9538), 1, + STATE(8742), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7007), 2, + STATE(6549), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [314635] = 19, + [275297] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6790), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6894), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10521), 1, + ACTIONS(10133), 1, sym_identifier, - STATE(2739), 1, + STATE(2772), 1, sym_class_name, - STATE(3011), 1, + STATE(2919), 1, sym_template_type, - STATE(3140), 1, + STATE(3097), 1, sym_qualified_type_identifier, - STATE(3284), 1, + STATE(3102), 1, sym_field_declaration_list, - STATE(3482), 1, + STATE(3318), 1, sym_class_declaration_item, - STATE(7876), 1, + STATE(7558), 1, sym_scope_resolution, - STATE(8497), 1, + STATE(8036), 1, sym_virtual_specifier, - STATE(9538), 1, + STATE(8742), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6245), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [314696] = 19, + [275358] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6450), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6367), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10508), 1, + ACTIONS(10140), 1, sym_identifier, - STATE(2516), 1, + STATE(2410), 1, sym_class_name, - STATE(2765), 1, + STATE(2582), 1, sym_template_type, - STATE(2887), 1, - sym_qualified_type_identifier, - STATE(3101), 1, + STATE(2598), 1, sym_field_declaration_list, - STATE(3597), 1, + STATE(2696), 1, + sym_qualified_type_identifier, + STATE(2728), 1, sym_class_declaration_item, - STATE(7915), 1, + STATE(7523), 1, sym_scope_resolution, - STATE(8356), 1, + STATE(8113), 1, sym_virtual_specifier, - STATE(9156), 1, + STATE(8974), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6551), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [314757] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10945), 1, - sym_identifier, - ACTIONS(10947), 1, - anon_sym_RPAREN, - ACTIONS(10949), 1, - anon_sym_LPAREN2, - ACTIONS(10951), 1, - anon_sym_defined, - ACTIONS(10957), 1, - sym_number_literal, - STATE(7019), 1, - sym_preproc_expression, - ACTIONS(10953), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10955), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10959), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(7106), 6, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [314802] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10899), 1, - anon_sym_COMMA, - ACTIONS(10907), 1, - anon_sym_SLASH, - ACTIONS(10909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10911), 1, - anon_sym_AMP_AMP, - ACTIONS(10913), 1, - anon_sym_PIPE, - ACTIONS(10915), 1, - anon_sym_CARET, - ACTIONS(10917), 1, - anon_sym_AMP, - ACTIONS(10961), 1, - anon_sym_RPAREN, - STATE(8745), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(10903), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10905), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10919), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10921), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10923), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10925), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [314857] = 19, + [275419] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6620), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6367), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10479), 1, + ACTIONS(10140), 1, sym_identifier, - STATE(2618), 1, + STATE(2410), 1, sym_class_name, - STATE(2905), 1, + STATE(2582), 1, sym_template_type, - STATE(3047), 1, - sym_qualified_type_identifier, - STATE(3311), 1, + STATE(2598), 1, sym_field_declaration_list, - STATE(3698), 1, + STATE(2696), 1, + sym_qualified_type_identifier, + STATE(2728), 1, sym_class_declaration_item, - STATE(7873), 1, + STATE(7523), 1, sym_scope_resolution, - STATE(8250), 1, + STATE(8113), 1, sym_virtual_specifier, - STATE(9154), 1, + STATE(8974), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7004), 2, + STATE(6245), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [314918] = 19, + [275480] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6620), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6894), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10479), 1, + ACTIONS(10133), 1, sym_identifier, - STATE(2618), 1, + STATE(2772), 1, sym_class_name, - STATE(2905), 1, + STATE(2919), 1, sym_template_type, - STATE(3047), 1, + STATE(3097), 1, sym_qualified_type_identifier, - STATE(3311), 1, + STATE(3102), 1, sym_field_declaration_list, - STATE(3698), 1, + STATE(3259), 1, sym_class_declaration_item, - STATE(7873), 1, + STATE(7558), 1, sym_scope_resolution, - STATE(8250), 1, + STATE(8036), 1, sym_virtual_specifier, - STATE(9154), 1, + STATE(8742), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6245), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [314979] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6349), 1, - anon_sym_LBRACK, - ACTIONS(6351), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - 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_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [315008] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3658), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3656), 19, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - [315037] = 19, + [275541] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6151), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6894), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10493), 1, + ACTIONS(10133), 1, sym_identifier, - STATE(2223), 1, + STATE(2772), 1, sym_class_name, - STATE(2598), 1, + STATE(2919), 1, sym_template_type, - STATE(2719), 1, + STATE(3097), 1, sym_qualified_type_identifier, - STATE(2926), 1, + STATE(3102), 1, sym_field_declaration_list, - STATE(3203), 1, + STATE(3259), 1, sym_class_declaration_item, - STATE(7936), 1, + STATE(7558), 1, sym_scope_resolution, - STATE(8336), 1, + STATE(8036), 1, sym_virtual_specifier, - STATE(9564), 1, + STATE(8742), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6555), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [315098] = 19, + [275602] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6151), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6367), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10493), 1, + ACTIONS(10140), 1, sym_identifier, - STATE(2223), 1, + STATE(2410), 1, sym_class_name, - STATE(2598), 1, + STATE(2582), 1, sym_template_type, - STATE(2719), 1, - sym_qualified_type_identifier, - STATE(2926), 1, + STATE(2598), 1, sym_field_declaration_list, - STATE(3203), 1, + STATE(2681), 1, sym_class_declaration_item, - STATE(7936), 1, + STATE(2696), 1, + sym_qualified_type_identifier, + STATE(7523), 1, sym_scope_resolution, - STATE(8336), 1, + STATE(8113), 1, sym_virtual_specifier, - STATE(9564), 1, + STATE(8974), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7015), 2, + STATE(6245), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [315159] = 19, + [275663] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6151), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6367), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10493), 1, + ACTIONS(10140), 1, sym_identifier, - STATE(2223), 1, + STATE(2410), 1, sym_class_name, - STATE(2598), 1, + STATE(2582), 1, sym_template_type, - STATE(2719), 1, - sym_qualified_type_identifier, - STATE(2926), 1, + STATE(2598), 1, sym_field_declaration_list, - STATE(3116), 1, + STATE(2681), 1, sym_class_declaration_item, - STATE(7936), 1, + STATE(2696), 1, + sym_qualified_type_identifier, + STATE(7523), 1, sym_scope_resolution, - STATE(8336), 1, + STATE(8113), 1, sym_virtual_specifier, - STATE(9564), 1, + STATE(8974), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7001), 2, + STATE(6553), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [315220] = 19, + [275724] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6620), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6367), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10479), 1, + ACTIONS(10140), 1, sym_identifier, - STATE(2618), 1, + STATE(2410), 1, sym_class_name, - STATE(2905), 1, + STATE(2582), 1, sym_template_type, - STATE(3047), 1, - sym_qualified_type_identifier, - STATE(3311), 1, + STATE(2598), 1, sym_field_declaration_list, - STATE(3712), 1, + STATE(2695), 1, sym_class_declaration_item, - STATE(7873), 1, + STATE(2696), 1, + sym_qualified_type_identifier, + STATE(7523), 1, sym_scope_resolution, - STATE(8250), 1, + STATE(8113), 1, sym_virtual_specifier, - STATE(9154), 1, + STATE(8974), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6245), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [315281] = 19, + [275785] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6620), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6367), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10479), 1, + ACTIONS(10103), 1, sym_identifier, - STATE(2618), 1, + STATE(2410), 1, sym_class_name, - STATE(2905), 1, + STATE(2582), 1, sym_template_type, - STATE(3047), 1, - sym_qualified_type_identifier, - STATE(3311), 1, + STATE(2598), 1, sym_field_declaration_list, - STATE(3712), 1, + STATE(2696), 1, + sym_qualified_type_identifier, + STATE(2728), 1, sym_class_declaration_item, - STATE(7873), 1, + STATE(7524), 1, sym_scope_resolution, - STATE(8250), 1, + STATE(8113), 1, sym_virtual_specifier, - STATE(9154), 1, + STATE(8974), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7008), 2, + STATE(6513), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [315342] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6410), 1, - anon_sym_LBRACK, - ACTIONS(6412), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - 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_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [315371] = 19, + [275846] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6790), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6894), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10521), 1, + ACTIONS(10133), 1, sym_identifier, - STATE(2739), 1, + STATE(2772), 1, sym_class_name, - STATE(3011), 1, + STATE(2919), 1, sym_template_type, - STATE(3140), 1, + STATE(3097), 1, sym_qualified_type_identifier, - STATE(3284), 1, + STATE(3102), 1, sym_field_declaration_list, - STATE(3490), 1, + STATE(3220), 1, sym_class_declaration_item, - STATE(7876), 1, + STATE(7558), 1, sym_scope_resolution, - STATE(8497), 1, + STATE(8036), 1, sym_virtual_specifier, - STATE(9538), 1, + STATE(8742), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6245), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [315432] = 19, + [275907] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6620), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10479), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(7593), 1, + anon_sym_LBRACE, + ACTIONS(10123), 1, sym_identifier, - STATE(2618), 1, + STATE(3529), 1, sym_class_name, - STATE(2905), 1, + STATE(4123), 1, sym_template_type, - STATE(3047), 1, + STATE(4280), 1, sym_qualified_type_identifier, - STATE(3311), 1, + STATE(4473), 1, sym_field_declaration_list, - STATE(3739), 1, + STATE(4672), 1, sym_class_declaration_item, - STATE(7873), 1, + STATE(7541), 1, sym_scope_resolution, - STATE(8250), 1, + STATE(7903), 1, sym_virtual_specifier, - STATE(9154), 1, + STATE(9014), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6245), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [315493] = 19, + [275968] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6790), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10521), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(7593), 1, + anon_sym_LBRACE, + ACTIONS(10123), 1, sym_identifier, - STATE(2739), 1, + STATE(3529), 1, sym_class_name, - STATE(3011), 1, + STATE(4123), 1, sym_template_type, - STATE(3140), 1, + STATE(4280), 1, sym_qualified_type_identifier, - STATE(3284), 1, + STATE(4473), 1, sym_field_declaration_list, - STATE(3490), 1, + STATE(4672), 1, sym_class_declaration_item, - STATE(7876), 1, + STATE(7541), 1, sym_scope_resolution, - STATE(8497), 1, + STATE(7903), 1, sym_virtual_specifier, - STATE(9538), 1, + STATE(9014), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7027), 2, + STATE(6563), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [315554] = 3, + [276029] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(6504), 1, - anon_sym_LBRACK, - ACTIONS(6506), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(7550), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(7552), 1, anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(10127), 1, + sym_identifier, + STATE(3094), 1, + sym_template_type, + STATE(3322), 1, + sym_qualified_type_identifier, + STATE(3579), 1, + sym_class_declaration_item, + STATE(4009), 1, + sym_class_name, + STATE(4469), 1, + sym_field_declaration_list, + STATE(7551), 1, + sym_scope_resolution, + STATE(8157), 1, + sym_virtual_specifier, + STATE(9050), 1, + sym_base_class_clause, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [315583] = 3, + STATE(6478), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [276090] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(6508), 1, - anon_sym_LBRACK, - ACTIONS(6510), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(6367), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(7552), 1, anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(10103), 1, + sym_identifier, + STATE(2410), 1, + sym_class_name, + STATE(2582), 1, + sym_template_type, + STATE(2598), 1, + sym_field_declaration_list, + STATE(2696), 1, + sym_qualified_type_identifier, + STATE(2728), 1, + sym_class_declaration_item, + STATE(7524), 1, + sym_scope_resolution, + STATE(8113), 1, + sym_virtual_specifier, + STATE(8974), 1, + sym_base_class_clause, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [315612] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10945), 1, - sym_identifier, - ACTIONS(10949), 1, - anon_sym_LPAREN2, - ACTIONS(10951), 1, - anon_sym_defined, - ACTIONS(10957), 1, - sym_number_literal, - ACTIONS(10963), 1, - anon_sym_RPAREN, - STATE(6996), 1, - sym_preproc_expression, - ACTIONS(10953), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10955), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10959), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(7106), 6, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [315657] = 19, + STATE(6245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [276151] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(8311), 1, - anon_sym_LBRACE, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10483), 1, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10127), 1, sym_identifier, - STATE(4246), 1, - sym_class_name, - STATE(4364), 1, + STATE(3094), 1, sym_template_type, - STATE(4501), 1, + STATE(3322), 1, sym_qualified_type_identifier, - STATE(4689), 1, - sym_field_declaration_list, - STATE(4826), 1, + STATE(3579), 1, sym_class_declaration_item, - STATE(7904), 1, + STATE(4009), 1, + sym_class_name, + STATE(4469), 1, + sym_field_declaration_list, + STATE(7551), 1, sym_scope_resolution, - STATE(8223), 1, + STATE(8157), 1, sym_virtual_specifier, - STATE(9383), 1, + STATE(9050), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7017), 2, + STATE(6245), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [315718] = 19, + [276212] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(8311), 1, + ACTIONS(9670), 1, anon_sym_LBRACE, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10483), 1, + ACTIONS(10127), 1, sym_identifier, - STATE(4246), 1, - sym_class_name, - STATE(4364), 1, + STATE(3094), 1, sym_template_type, - STATE(4501), 1, + STATE(3322), 1, sym_qualified_type_identifier, - STATE(4689), 1, - sym_field_declaration_list, - STATE(4826), 1, + STATE(5015), 1, sym_class_declaration_item, - STATE(7904), 1, + STATE(5620), 1, + sym_class_name, + STATE(5797), 1, + sym_field_declaration_list, + STATE(7551), 1, sym_scope_resolution, - STATE(8223), 1, + STATE(8125), 1, sym_virtual_specifier, - STATE(9383), 1, + STATE(9001), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6565), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [315779] = 19, + [276273] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6151), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10493), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(9670), 1, + anon_sym_LBRACE, + ACTIONS(10127), 1, sym_identifier, - STATE(2223), 1, - sym_class_name, - STATE(2598), 1, + STATE(3094), 1, sym_template_type, - STATE(2719), 1, + STATE(3322), 1, sym_qualified_type_identifier, - STATE(2926), 1, - sym_field_declaration_list, - STATE(3238), 1, + STATE(5015), 1, sym_class_declaration_item, - STATE(7936), 1, + STATE(5620), 1, + sym_class_name, + STATE(5797), 1, + sym_field_declaration_list, + STATE(7551), 1, sym_scope_resolution, - STATE(8336), 1, + STATE(8125), 1, sym_virtual_specifier, - STATE(9564), 1, + STATE(9001), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6245), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [315840] = 19, + [276334] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6116), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10523), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(7593), 1, + anon_sym_LBRACE, + ACTIONS(10123), 1, sym_identifier, - STATE(2182), 1, + STATE(3529), 1, sym_class_name, - STATE(2486), 1, - sym_field_declaration_list, - STATE(2509), 1, + STATE(4123), 1, sym_template_type, - STATE(2583), 1, - sym_class_declaration_item, - STATE(2589), 1, + STATE(4280), 1, sym_qualified_type_identifier, - STATE(7902), 1, + STATE(4473), 1, + sym_field_declaration_list, + STATE(4649), 1, + sym_class_declaration_item, + STATE(7541), 1, sym_scope_resolution, - STATE(8435), 1, + STATE(7903), 1, sym_virtual_specifier, - STATE(9380), 1, + STATE(9014), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7051), 2, + STATE(6245), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [315901] = 19, + [276395] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(8311), 1, - anon_sym_LBRACE, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10483), 1, + ACTIONS(7550), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10099), 1, sym_identifier, - STATE(4246), 1, - sym_class_name, - STATE(4364), 1, + STATE(3094), 1, sym_template_type, - STATE(4501), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(4689), 1, - sym_field_declaration_list, - STATE(4753), 1, + STATE(3453), 1, + sym_class_name, + STATE(3579), 1, sym_class_declaration_item, - STATE(7904), 1, + STATE(4465), 1, + sym_field_declaration_list, + STATE(7571), 1, sym_scope_resolution, - STATE(8223), 1, + STATE(8160), 1, sym_virtual_specifier, - STATE(9383), 1, + STATE(9057), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6472), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [315962] = 19, + [276456] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(8311), 1, + ACTIONS(9670), 1, anon_sym_LBRACE, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10483), 1, + ACTIONS(10127), 1, sym_identifier, - STATE(4246), 1, - sym_class_name, - STATE(4364), 1, + STATE(3094), 1, sym_template_type, - STATE(4501), 1, + STATE(3322), 1, sym_qualified_type_identifier, - STATE(4689), 1, - sym_field_declaration_list, - STATE(4753), 1, + STATE(5036), 1, sym_class_declaration_item, - STATE(7904), 1, + STATE(5620), 1, + sym_class_name, + STATE(5797), 1, + sym_field_declaration_list, + STATE(7551), 1, sym_scope_resolution, - STATE(8223), 1, + STATE(8125), 1, sym_virtual_specifier, - STATE(9383), 1, + STATE(9001), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7021), 2, + STATE(6245), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [316023] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10899), 1, - anon_sym_COMMA, - ACTIONS(10907), 1, - anon_sym_SLASH, - ACTIONS(10909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10911), 1, - anon_sym_AMP_AMP, - ACTIONS(10913), 1, - anon_sym_PIPE, - ACTIONS(10915), 1, - anon_sym_CARET, - ACTIONS(10917), 1, - anon_sym_AMP, - ACTIONS(10965), 1, - anon_sym_RPAREN, - STATE(8988), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(10903), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10905), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10919), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10921), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10923), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10925), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [316078] = 19, + [276517] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10495), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(9670), 1, + anon_sym_LBRACE, + ACTIONS(10127), 1, sym_identifier, - STATE(3800), 1, - sym_class_name, - STATE(4401), 1, + STATE(3094), 1, sym_template_type, - STATE(4404), 1, + STATE(3322), 1, sym_qualified_type_identifier, - STATE(4797), 1, - sym_field_declaration_list, - STATE(4960), 1, + STATE(5036), 1, sym_class_declaration_item, - STATE(7879), 1, + STATE(5620), 1, + sym_class_name, + STATE(5797), 1, + sym_field_declaration_list, + STATE(7551), 1, sym_scope_resolution, - STATE(8316), 1, + STATE(8125), 1, sym_virtual_specifier, - STATE(9487), 1, + STATE(9001), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6567), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [316139] = 19, + [276578] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(8311), 1, + ACTIONS(9670), 1, anon_sym_LBRACE, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10483), 1, + ACTIONS(10127), 1, sym_identifier, - STATE(4246), 1, - sym_class_name, - STATE(4364), 1, + STATE(3094), 1, sym_template_type, - STATE(4501), 1, + STATE(3322), 1, sym_qualified_type_identifier, - STATE(4689), 1, - sym_field_declaration_list, - STATE(4762), 1, + STATE(5054), 1, sym_class_declaration_item, - STATE(7904), 1, + STATE(5620), 1, + sym_class_name, + STATE(5797), 1, + sym_field_declaration_list, + STATE(7551), 1, sym_scope_resolution, - STATE(8223), 1, + STATE(8125), 1, sym_virtual_specifier, - STATE(9383), 1, + STATE(9001), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6245), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [316200] = 19, + [276639] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6116), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6367), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10523), 1, + ACTIONS(10148), 1, sym_identifier, - STATE(2182), 1, + STATE(2410), 1, sym_class_name, - STATE(2486), 1, - sym_field_declaration_list, - STATE(2509), 1, + STATE(2582), 1, sym_template_type, - STATE(2583), 1, + STATE(2598), 1, + sym_field_declaration_list, + STATE(2681), 1, sym_class_declaration_item, - STATE(2589), 1, + STATE(2696), 1, sym_qualified_type_identifier, - STATE(7902), 1, + STATE(7516), 1, sym_scope_resolution, - STATE(8435), 1, + STATE(8113), 1, sym_virtual_specifier, - STATE(9380), 1, + STATE(8974), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6245), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [316261] = 19, + [276700] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10269), 1, + ACTIONS(7550), 1, anon_sym_LBRACE, - ACTIONS(10506), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10099), 1, sym_identifier, - STATE(6327), 1, - sym_class_name, - STATE(6686), 1, + STATE(3094), 1, sym_template_type, - STATE(6723), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(6790), 1, - sym_field_declaration_list, - STATE(6836), 1, + STATE(3453), 1, + sym_class_name, + STATE(3579), 1, sym_class_declaration_item, - STATE(7896), 1, + STATE(4465), 1, + sym_field_declaration_list, + STATE(7571), 1, sym_scope_resolution, - STATE(8433), 1, + STATE(8160), 1, sym_virtual_specifier, - STATE(9360), 1, + STATE(9057), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(6946), 2, + STATE(6245), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [316322] = 19, + [276761] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10499), 1, + anon_sym_COMMA, + ACTIONS(10507), 1, + anon_sym_SLASH, + ACTIONS(10509), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10511), 1, + anon_sym_AMP_AMP, + ACTIONS(10513), 1, + anon_sym_PIPE, + ACTIONS(10515), 1, + anon_sym_CARET, + ACTIONS(10517), 1, + anon_sym_AMP, + ACTIONS(10535), 1, + anon_sym_RPAREN, + STATE(8285), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(10503), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10505), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10519), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10521), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10523), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10525), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [276816] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10096), 1, - anon_sym_LBRACE, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10485), 1, + ACTIONS(6367), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10148), 1, sym_identifier, - STATE(6239), 1, - sym_template_type, - STATE(6265), 1, + STATE(2410), 1, sym_class_name, - STATE(6285), 1, - sym_qualified_type_identifier, - STATE(6371), 1, + STATE(2582), 1, + sym_template_type, + STATE(2598), 1, sym_field_declaration_list, - STATE(6574), 1, + STATE(2696), 1, + sym_qualified_type_identifier, + STATE(2728), 1, sym_class_declaration_item, - STATE(7920), 1, + STATE(7516), 1, sym_scope_resolution, - STATE(8271), 1, + STATE(8113), 1, sym_virtual_specifier, - STATE(9243), 1, + STATE(8974), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7029), 2, + STATE(6568), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [316383] = 19, + [276877] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(8627), 1, + ACTIONS(8314), 1, anon_sym_LBRACE, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10525), 1, + ACTIONS(10121), 1, sym_identifier, - STATE(4750), 1, - sym_class_name, - STATE(5185), 1, + STATE(2532), 1, sym_template_type, - STATE(5289), 1, + STATE(2703), 1, sym_qualified_type_identifier, - STATE(5455), 1, + STATE(4441), 1, + sym_class_name, + STATE(4936), 1, sym_field_declaration_list, - STATE(5812), 1, + STATE(5200), 1, sym_class_declaration_item, - STATE(7944), 1, + STATE(7574), 1, sym_scope_resolution, - STATE(8545), 1, + STATE(8086), 1, sym_virtual_specifier, - STATE(9535), 1, + STATE(8905), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6529), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [316444] = 19, + [276938] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(10096), 1, + ACTIONS(8314), 1, anon_sym_LBRACE, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10485), 1, + ACTIONS(10121), 1, sym_identifier, - STATE(6239), 1, + STATE(2532), 1, sym_template_type, - STATE(6265), 1, - sym_class_name, - STATE(6285), 1, + STATE(2703), 1, sym_qualified_type_identifier, - STATE(6371), 1, + STATE(4441), 1, + sym_class_name, + STATE(4936), 1, sym_field_declaration_list, - STATE(6574), 1, + STATE(5200), 1, sym_class_declaration_item, - STATE(7920), 1, + STATE(7574), 1, sym_scope_resolution, - STATE(8271), 1, + STATE(8086), 1, sym_virtual_specifier, - STATE(9243), 1, + STATE(8905), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6245), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [316505] = 19, + [276999] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6790), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6367), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10521), 1, + ACTIONS(10148), 1, sym_identifier, - STATE(2739), 1, + STATE(2410), 1, sym_class_name, - STATE(3011), 1, + STATE(2582), 1, sym_template_type, - STATE(3140), 1, - sym_qualified_type_identifier, - STATE(3284), 1, + STATE(2598), 1, sym_field_declaration_list, - STATE(3499), 1, + STATE(2681), 1, sym_class_declaration_item, - STATE(7876), 1, + STATE(2696), 1, + sym_qualified_type_identifier, + STATE(7516), 1, sym_scope_resolution, - STATE(8497), 1, + STATE(8113), 1, sym_virtual_specifier, - STATE(9538), 1, + STATE(8974), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6517), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [316566] = 19, + [277060] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(8311), 1, + ACTIONS(5700), 1, anon_sym_LBRACE, - ACTIONS(10135), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10481), 1, + ACTIONS(7552), 1, + anon_sym_COLON, + ACTIONS(10146), 1, sym_identifier, - STATE(4246), 1, + STATE(1897), 1, sym_class_name, - STATE(4364), 1, + STATE(2050), 1, sym_template_type, - STATE(4501), 1, + STATE(2137), 1, sym_qualified_type_identifier, - STATE(4689), 1, + STATE(2191), 1, sym_field_declaration_list, - STATE(4753), 1, + STATE(2366), 1, sym_class_declaration_item, - STATE(7904), 1, + STATE(7549), 1, sym_scope_resolution, - STATE(8223), 1, + STATE(7988), 1, sym_virtual_specifier, - STATE(9383), 1, + STATE(9035), 1, sym_base_class_clause, - ACTIONS(6086), 2, + ACTIONS(5704), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, + STATE(6525), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [316627] = 19, + [277121] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, + ACTIONS(51), 1, + anon_sym___based, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10096), 1, - anon_sym_LBRACE, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10485), 1, + ACTIONS(9123), 1, + anon_sym_STAR, + ACTIONS(10537), 1, sym_identifier, - STATE(6239), 1, - sym_template_type, - STATE(6265), 1, - sym_class_name, - STATE(6285), 1, + ACTIONS(10539), 1, + anon_sym_TILDE, + ACTIONS(10541), 1, + anon_sym_template, + ACTIONS(10543), 1, + anon_sym_operator, + STATE(3105), 1, sym_qualified_type_identifier, - STATE(6371), 1, - sym_field_declaration_list, - STATE(6685), 1, - sym_class_declaration_item, - STATE(7920), 1, + STATE(6576), 1, sym_scope_resolution, - STATE(8271), 1, - sym_virtual_specifier, - STATE(9243), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(7809), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9248), 1, + sym_ms_based_modifier, + STATE(9605), 1, sym_decltype, + STATE(3100), 2, + sym_template_type, sym_dependent_type_identifier, - [316688] = 19, + STATE(2591), 6, + sym_pointer_type_declarator, + sym_template_function, + sym_destructor_name, + sym_dependent_identifier, + sym_qualified_identifier, + sym_operator_name, + [277173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, + ACTIONS(10547), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10545), 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, + [277201] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10507), 1, + anon_sym_SLASH, + ACTIONS(10505), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10551), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10549), 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, + [277233] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10555), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10553), 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, + [277261] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10557), 1, + sym_identifier, + ACTIONS(10559), 1, + anon_sym_LPAREN2, + ACTIONS(10561), 1, + anon_sym_defined, + ACTIONS(10567), 1, + sym_number_literal, + STATE(6732), 1, + sym_preproc_expression, + ACTIONS(10563), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10565), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10569), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6706), 6, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [277303] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10557), 1, + sym_identifier, + ACTIONS(10559), 1, + anon_sym_LPAREN2, + ACTIONS(10561), 1, + anon_sym_defined, + ACTIONS(10567), 1, + sym_number_literal, + STATE(6778), 1, + sym_preproc_expression, + ACTIONS(10563), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10565), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10569), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6706), 6, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [277345] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10096), 1, - anon_sym_LBRACE, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10485), 1, + ACTIONS(9123), 1, + anon_sym_STAR, + ACTIONS(10398), 1, + anon_sym_TILDE, + ACTIONS(10571), 1, sym_identifier, - STATE(6239), 1, - sym_template_type, - STATE(6265), 1, - sym_class_name, - STATE(6285), 1, + ACTIONS(10573), 1, + anon_sym_template, + ACTIONS(10575), 1, + anon_sym_operator, + STATE(3105), 1, sym_qualified_type_identifier, - STATE(6371), 1, - sym_field_declaration_list, - STATE(6685), 1, - sym_class_declaration_item, - STATE(7920), 1, + STATE(6582), 1, sym_scope_resolution, - STATE(8271), 1, - sym_virtual_specifier, - STATE(9243), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(7032), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9248), 1, + sym_ms_based_modifier, + STATE(9605), 1, sym_decltype, + STATE(3100), 2, + sym_template_type, sym_dependent_type_identifier, - [316749] = 8, + STATE(3095), 6, + sym_pointer_type_declarator, + sym_template_function, + sym_destructor_name, + sym_dependent_identifier, + sym_qualified_identifier, + sym_operator_name, + [277397] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(10106), 1, - anon_sym_LBRACK, - ACTIONS(10123), 1, - anon_sym_requires, - STATE(7270), 1, - sym_requires_clause, - STATE(7338), 1, - sym_function_postfix, - ACTIONS(10120), 2, - anon_sym_final, - anon_sym_override, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10101), 13, + ACTIONS(10507), 1, + anon_sym_SLASH, + ACTIONS(10509), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10511), 1, + anon_sym_AMP_AMP, + ACTIONS(10513), 1, + anon_sym_PIPE, + ACTIONS(10515), 1, + anon_sym_CARET, + ACTIONS(10517), 1, + anon_sym_AMP, + ACTIONS(10503), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10505), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10519), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10521), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10523), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10525), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10577), 2, anon_sym_COMMA, anon_sym_RPAREN, + [277447] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10557), 1, + sym_identifier, + ACTIONS(10559), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [316788] = 19, + ACTIONS(10561), 1, + anon_sym_defined, + ACTIONS(10567), 1, + sym_number_literal, + STATE(6759), 1, + sym_preproc_expression, + ACTIONS(10563), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10565), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10569), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6706), 6, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [277489] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, + ACTIONS(51), 1, + anon_sym___based, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10096), 1, - anon_sym_LBRACE, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10485), 1, + ACTIONS(9141), 1, + anon_sym_STAR, + ACTIONS(10579), 1, sym_identifier, - STATE(6239), 1, - sym_template_type, - STATE(6265), 1, - sym_class_name, - STATE(6285), 1, + ACTIONS(10581), 1, + anon_sym_TILDE, + ACTIONS(10583), 1, + anon_sym_template, + ACTIONS(10585), 1, + anon_sym_operator, + STATE(3105), 1, sym_qualified_type_identifier, - STATE(6371), 1, - sym_field_declaration_list, - STATE(6538), 1, - sym_class_declaration_item, - STATE(7920), 1, + STATE(6585), 1, sym_scope_resolution, - STATE(8271), 1, - sym_virtual_specifier, - STATE(9243), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(7809), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9294), 1, + sym_ms_based_modifier, + STATE(9605), 1, sym_decltype, + STATE(3100), 2, + sym_template_type, sym_dependent_type_identifier, - [316849] = 8, + STATE(4158), 6, + sym_pointer_type_declarator, + sym_template_function, + sym_destructor_name, + sym_dependent_identifier, + sym_qualified_identifier, + sym_operator_name, + [277541] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7926), 1, - anon_sym_requires, - ACTIONS(10469), 1, - anon_sym_LBRACK, - STATE(7270), 1, - sym_requires_clause, - STATE(7333), 1, - sym_function_postfix, - ACTIONS(6118), 2, - anon_sym_final, - anon_sym_override, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10464), 13, + ACTIONS(10557), 1, + sym_identifier, + ACTIONS(10559), 1, + anon_sym_LPAREN2, + ACTIONS(10561), 1, + anon_sym_defined, + ACTIONS(10567), 1, + sym_number_literal, + STATE(6764), 1, + sym_preproc_expression, + ACTIONS(10563), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10565), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10569), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6706), 6, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [277583] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10481), 1, + sym_identifier, + ACTIONS(10485), 1, + anon_sym_LPAREN2, + ACTIONS(10487), 1, + anon_sym_defined, + ACTIONS(10493), 1, + sym_number_literal, + STATE(6711), 1, + sym_preproc_expression, + ACTIONS(10489), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10491), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10495), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6611), 6, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [277625] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10557), 1, + sym_identifier, + ACTIONS(10559), 1, + anon_sym_LPAREN2, + ACTIONS(10561), 1, + anon_sym_defined, + ACTIONS(10567), 1, + sym_number_literal, + STATE(6744), 1, + sym_preproc_expression, + ACTIONS(10563), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10565), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10569), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6706), 6, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [277667] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10481), 1, + sym_identifier, + ACTIONS(10485), 1, + anon_sym_LPAREN2, + ACTIONS(10487), 1, + anon_sym_defined, + ACTIONS(10493), 1, + sym_number_literal, + STATE(6660), 1, + sym_preproc_expression, + ACTIONS(10489), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10491), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10495), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6611), 6, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [277709] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10557), 1, + sym_identifier, + ACTIONS(10559), 1, + anon_sym_LPAREN2, + ACTIONS(10561), 1, + anon_sym_defined, + ACTIONS(10567), 1, + sym_number_literal, + STATE(6682), 1, + sym_preproc_expression, + ACTIONS(10563), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10565), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10569), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6706), 6, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [277751] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7197), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7199), 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, + [277779] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10557), 1, + sym_identifier, + ACTIONS(10559), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [316888] = 19, + ACTIONS(10561), 1, + anon_sym_defined, + ACTIONS(10567), 1, + sym_number_literal, + STATE(6770), 1, + sym_preproc_expression, + ACTIONS(10563), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10565), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10569), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6706), 6, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [277821] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, + ACTIONS(51), 1, + anon_sym___based, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(8311), 1, - anon_sym_LBRACE, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10481), 1, + ACTIONS(9123), 1, + anon_sym_STAR, + ACTIONS(10539), 1, + anon_sym_TILDE, + ACTIONS(10543), 1, + anon_sym_operator, + ACTIONS(10587), 1, sym_identifier, - STATE(4246), 1, - sym_class_name, - STATE(4364), 1, - sym_template_type, - STATE(4501), 1, + ACTIONS(10589), 1, + anon_sym_template, + STATE(3105), 1, sym_qualified_type_identifier, - STATE(4689), 1, - sym_field_declaration_list, - STATE(4826), 1, - sym_class_declaration_item, - STATE(7904), 1, + STATE(6593), 1, sym_scope_resolution, - STATE(8223), 1, - sym_virtual_specifier, - STATE(9383), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(7028), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9248), 1, + sym_ms_based_modifier, + STATE(9605), 1, sym_decltype, + STATE(3100), 2, + sym_template_type, sym_dependent_type_identifier, - [316949] = 19, + STATE(2591), 6, + sym_pointer_type_declarator, + sym_template_function, + sym_destructor_name, + sym_dependent_identifier, + sym_qualified_identifier, + sym_operator_name, + [277873] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, + ACTIONS(51), 1, + anon_sym___based, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(7971), 1, - anon_sym_LBRACE, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10487), 1, + ACTIONS(9155), 1, + anon_sym_STAR, + ACTIONS(10591), 1, sym_identifier, - STATE(3896), 1, - sym_class_name, - STATE(4514), 1, - sym_template_type, - STATE(4585), 1, + ACTIONS(10593), 1, + anon_sym_TILDE, + ACTIONS(10595), 1, + anon_sym_template, + ACTIONS(10597), 1, + anon_sym_operator, + STATE(3105), 1, sym_qualified_type_identifier, - STATE(4775), 1, - sym_field_declaration_list, - STATE(5075), 1, - sym_class_declaration_item, - STATE(7908), 1, + STATE(6594), 1, sym_scope_resolution, - STATE(8292), 1, - sym_virtual_specifier, - STATE(9323), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(7038), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 1, sym_decltype, + STATE(9637), 1, + sym_ms_based_modifier, + STATE(3100), 2, + sym_template_type, sym_dependent_type_identifier, - [317010] = 19, + STATE(3989), 6, + sym_pointer_type_declarator, + sym_template_function, + sym_destructor_name, + sym_dependent_identifier, + sym_qualified_identifier, + sym_operator_name, + [277925] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(2257), 1, + anon_sym_operator, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(7971), 1, - anon_sym_LBRACE, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10487), 1, + ACTIONS(9197), 1, + anon_sym_STAR, + ACTIONS(10599), 1, sym_identifier, - STATE(3896), 1, - sym_class_name, - STATE(4514), 1, - sym_template_type, - STATE(4585), 1, + ACTIONS(10601), 1, + anon_sym_template, + STATE(3105), 1, sym_qualified_type_identifier, - STATE(4775), 1, - sym_field_declaration_list, - STATE(5075), 1, - sym_class_declaration_item, - STATE(7908), 1, + STATE(6595), 1, sym_scope_resolution, - STATE(8292), 1, - sym_virtual_specifier, - STATE(9323), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(7809), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9517), 1, + sym_ms_based_modifier, + STATE(9605), 1, sym_decltype, + STATE(3100), 2, + sym_template_type, sym_dependent_type_identifier, - [317071] = 5, - ACTIONS(10846), 1, - anon_sym_LF, - ACTIONS(10967), 1, + STATE(3095), 6, + sym_pointer_type_declarator, + sym_template_function, + sym_destructor_name, + sym_dependent_identifier, + sym_qualified_identifier, + sym_operator_name, + [277977] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10551), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10549), 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, + [278005] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10507), 1, + anon_sym_SLASH, + ACTIONS(10511), 1, + anon_sym_AMP_AMP, + ACTIONS(10513), 1, + anon_sym_PIPE, + ACTIONS(10515), 1, + anon_sym_CARET, + ACTIONS(10517), 1, + anon_sym_AMP, + ACTIONS(10503), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10505), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10519), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10521), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10523), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10525), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10549), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + [278053] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10603), 1, + anon_sym_COMMA, + ACTIONS(10605), 1, anon_sym_LPAREN2, - ACTIONS(10969), 1, + ACTIONS(10607), 1, + anon_sym_SEMI, + ACTIONS(10609), 1, + anon_sym_LBRACE, + ACTIONS(10611), 1, + anon_sym_LBRACK, + ACTIONS(10613), 1, + anon_sym_EQ, + ACTIONS(10617), 1, + anon_sym_try, + STATE(4184), 1, + sym_parameter_list, + STATE(7260), 1, + sym_function_declarator_seq, + STATE(8459), 1, + sym_gnu_asm_expression, + STATE(8462), 1, + aux_sym_declaration_declarator_repeat1, + ACTIONS(10615), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(705), 2, + sym_compound_statement, + sym_try_statement, + STATE(7162), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8924), 2, + sym_argument_list, + sym_initializer_list, + [278109] = 10, + ACTIONS(3), 1, sym_comment, - STATE(7186), 1, - sym_preproc_argument_list, - ACTIONS(10850), 18, + ACTIONS(10557), 1, + sym_identifier, + ACTIONS(10559), 1, + anon_sym_LPAREN2, + ACTIONS(10561), 1, + anon_sym_defined, + ACTIONS(10567), 1, + sym_number_literal, + STATE(6738), 1, + sym_preproc_expression, + ACTIONS(10563), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10565), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10569), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6706), 6, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [278151] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10507), 1, + anon_sym_SLASH, + ACTIONS(10513), 1, + anon_sym_PIPE, + ACTIONS(10515), 1, + anon_sym_CARET, + ACTIONS(10517), 1, + anon_sym_AMP, + ACTIONS(10503), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10505), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10519), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10521), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10523), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10525), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10549), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [278197] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10507), 1, + anon_sym_SLASH, + ACTIONS(10515), 1, + anon_sym_CARET, + ACTIONS(10517), 1, + anon_sym_AMP, + ACTIONS(10551), 1, + anon_sym_PIPE, + ACTIONS(10503), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10505), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10519), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10521), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10523), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10525), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10549), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [278243] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10507), 1, anon_sym_SLASH, + ACTIONS(10517), 1, + anon_sym_AMP, + ACTIONS(10551), 1, + anon_sym_PIPE, + ACTIONS(10503), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10505), 2, + anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(10519), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10521), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10523), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10525), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10549), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + [278287] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10507), 1, + anon_sym_SLASH, + ACTIONS(10503), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10505), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10519), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10521), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10523), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10525), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10551), 2, anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(10549), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_CARET, + [278329] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10507), 1, + anon_sym_SLASH, + ACTIONS(10503), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10505), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10521), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10523), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10525), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10551), 2, + anon_sym_PIPE, anon_sym_AMP, + ACTIONS(10549), 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, + [278369] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10507), 1, + anon_sym_SLASH, + ACTIONS(10503), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10505), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10525), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10551), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, + anon_sym_LT, + ACTIONS(10549), 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, + [278405] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2117), 1, + anon_sym_LBRACE, + ACTIONS(10603), 1, + anon_sym_COMMA, + ACTIONS(10605), 1, + anon_sym_LPAREN2, + ACTIONS(10607), 1, + anon_sym_SEMI, + ACTIONS(10611), 1, + anon_sym_LBRACK, + ACTIONS(10613), 1, + anon_sym_EQ, + ACTIONS(10619), 1, + anon_sym_try, + STATE(4184), 1, + sym_parameter_list, + STATE(7260), 1, + sym_function_declarator_seq, + STATE(8459), 1, + sym_gnu_asm_expression, + STATE(8462), 1, + aux_sym_declaration_declarator_repeat1, + ACTIONS(10615), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(825), 2, + sym_compound_statement, + sym_try_statement, + STATE(7162), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8924), 2, + sym_argument_list, + sym_initializer_list, + [278461] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10623), 1, + anon_sym_LBRACK, + ACTIONS(10621), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + sym_semgrep_metavar, + [278489] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10557), 1, + sym_identifier, + ACTIONS(10559), 1, + anon_sym_LPAREN2, + ACTIONS(10561), 1, + anon_sym_defined, + ACTIONS(10567), 1, + sym_number_literal, + STATE(6746), 1, + sym_preproc_expression, + ACTIONS(10563), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10565), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10569), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6706), 6, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [278531] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10557), 1, + sym_identifier, + ACTIONS(10559), 1, + anon_sym_LPAREN2, + ACTIONS(10561), 1, + anon_sym_defined, + ACTIONS(10567), 1, + sym_number_literal, + STATE(6768), 1, + sym_preproc_expression, + ACTIONS(10563), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10565), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10569), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6706), 6, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [278573] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10557), 1, + sym_identifier, + ACTIONS(10559), 1, + anon_sym_LPAREN2, + ACTIONS(10561), 1, + anon_sym_defined, + ACTIONS(10567), 1, + sym_number_literal, + STATE(6796), 1, + sym_preproc_expression, + ACTIONS(10563), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10565), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10569), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6706), 6, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [278615] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10416), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, anon_sym_LT, + ACTIONS(10412), 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, - [317104] = 19, + [278643] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10557), 1, + sym_identifier, + ACTIONS(10559), 1, + anon_sym_LPAREN2, + ACTIONS(10561), 1, + anon_sym_defined, + ACTIONS(10567), 1, + sym_number_literal, + STATE(6733), 1, + sym_preproc_expression, + ACTIONS(10563), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10565), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10569), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6706), 6, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [278685] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10557), 1, + sym_identifier, + ACTIONS(10559), 1, + anon_sym_LPAREN2, + ACTIONS(10561), 1, + anon_sym_defined, + ACTIONS(10567), 1, + sym_number_literal, + STATE(6779), 1, + sym_preproc_expression, + ACTIONS(10563), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10565), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10569), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6706), 6, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [278727] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(7971), 1, - anon_sym_LBRACE, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10487), 1, + ACTIONS(10557), 1, sym_identifier, - STATE(3896), 1, - sym_class_name, - STATE(4514), 1, - sym_template_type, - STATE(4585), 1, - sym_qualified_type_identifier, - STATE(4775), 1, - sym_field_declaration_list, - STATE(5030), 1, - sym_class_declaration_item, - STATE(7908), 1, - sym_scope_resolution, - STATE(8292), 1, - sym_virtual_specifier, - STATE(9323), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(7809), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [317165] = 19, + ACTIONS(10559), 1, + anon_sym_LPAREN2, + ACTIONS(10561), 1, + anon_sym_defined, + ACTIONS(10567), 1, + sym_number_literal, + STATE(6748), 1, + sym_preproc_expression, + ACTIONS(10563), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10565), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10569), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6706), 6, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [278769] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, + ACTIONS(51), 1, + anon_sym___based, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(7971), 1, - anon_sym_LBRACE, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10487), 1, + ACTIONS(9147), 1, + anon_sym_STAR, + ACTIONS(10625), 1, sym_identifier, - STATE(3896), 1, - sym_class_name, - STATE(4514), 1, - sym_template_type, - STATE(4585), 1, + ACTIONS(10627), 1, + anon_sym_TILDE, + ACTIONS(10629), 1, + anon_sym_template, + ACTIONS(10631), 1, + anon_sym_operator, + STATE(3105), 1, sym_qualified_type_identifier, - STATE(4775), 1, - sym_field_declaration_list, - STATE(5030), 1, - sym_class_declaration_item, - STATE(7908), 1, + STATE(6615), 1, sym_scope_resolution, - STATE(8292), 1, - sym_virtual_specifier, - STATE(9323), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(7042), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9304), 1, + sym_ms_based_modifier, + STATE(9605), 1, sym_decltype, + STATE(3100), 2, + sym_template_type, sym_dependent_type_identifier, - [317226] = 19, + STATE(3569), 6, + sym_pointer_type_declarator, + sym_template_function, + sym_destructor_name, + sym_dependent_identifier, + sym_qualified_identifier, + sym_operator_name, + [278821] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(8311), 1, - anon_sym_LBRACE, - ACTIONS(10135), 1, + ACTIONS(10635), 1, + anon_sym_LPAREN2, + ACTIONS(10637), 1, + anon_sym_LBRACK, + ACTIONS(10633), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - ACTIONS(10481), 1, - sym_identifier, - STATE(4246), 1, - sym_class_name, - STATE(4364), 1, - sym_template_type, - STATE(4501), 1, - sym_qualified_type_identifier, - STATE(4689), 1, - sym_field_declaration_list, - STATE(4753), 1, - sym_class_declaration_item, - STATE(7904), 1, - sym_scope_resolution, - STATE(8223), 1, - sym_virtual_specifier, - STATE(9383), 1, - sym_base_class_clause, - ACTIONS(6086), 2, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - STATE(6952), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [317287] = 19, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + sym_semgrep_metavar, + [278851] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(8311), 1, - anon_sym_LBRACE, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10481), 1, + ACTIONS(10557), 1, sym_identifier, - STATE(4246), 1, - sym_class_name, - STATE(4364), 1, - sym_template_type, - STATE(4501), 1, - sym_qualified_type_identifier, - STATE(4689), 1, - sym_field_declaration_list, - STATE(4826), 1, - sym_class_declaration_item, - STATE(7904), 1, - sym_scope_resolution, - STATE(8223), 1, - sym_virtual_specifier, - STATE(9383), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(7809), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [317348] = 19, + ACTIONS(10559), 1, + anon_sym_LPAREN2, + ACTIONS(10561), 1, + anon_sym_defined, + ACTIONS(10567), 1, + sym_number_literal, + STATE(6680), 1, + sym_preproc_expression, + ACTIONS(10563), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10565), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10569), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6706), 6, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [278893] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(7971), 1, - anon_sym_LBRACE, - ACTIONS(10135), 1, + ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10487), 1, - sym_identifier, - STATE(3896), 1, - sym_class_name, - STATE(4514), 1, - sym_template_type, - STATE(4585), 1, - sym_qualified_type_identifier, - STATE(4775), 1, - sym_field_declaration_list, - STATE(5051), 1, - sym_class_declaration_item, - STATE(7908), 1, - sym_scope_resolution, - STATE(8292), 1, - sym_virtual_specifier, - STATE(9323), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(7809), 2, + ACTIONS(10603), 1, + anon_sym_COMMA, + ACTIONS(10605), 1, + anon_sym_LPAREN2, + ACTIONS(10607), 1, + anon_sym_SEMI, + ACTIONS(10611), 1, + anon_sym_LBRACK, + ACTIONS(10613), 1, + anon_sym_EQ, + ACTIONS(10639), 1, + anon_sym_LBRACE, + ACTIONS(10641), 1, + anon_sym_try, + STATE(4184), 1, + sym_parameter_list, + STATE(7260), 1, + sym_function_declarator_seq, + STATE(8459), 1, + sym_gnu_asm_expression, + STATE(8462), 1, + aux_sym_declaration_declarator_repeat1, + ACTIONS(10615), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(707), 2, + sym_compound_statement, + sym_try_statement, + STATE(7162), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [317409] = 8, + STATE(8924), 2, + sym_argument_list, + sym_initializer_list, + [278949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10897), 1, + ACTIONS(10645), 1, anon_sym_LBRACK, - ACTIONS(10974), 1, - anon_sym_requires, - STATE(7270), 1, - sym_requires_clause, - STATE(7324), 1, - sym_function_postfix, - ACTIONS(10971), 2, - anon_sym_final, - anon_sym_override, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10895), 13, + ACTIONS(10643), 19, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -589749,910 +555434,706 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [317448] = 19, + anon_sym_requires, + sym_semgrep_metavar, + [278977] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, + ACTIONS(51), 1, + anon_sym___based, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6132), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10475), 1, + ACTIONS(9155), 1, + anon_sym_STAR, + ACTIONS(10593), 1, + anon_sym_TILDE, + ACTIONS(10597), 1, + anon_sym_operator, + ACTIONS(10647), 1, sym_identifier, - STATE(2190), 1, - sym_class_name, - STATE(2515), 1, - sym_template_type, - STATE(2599), 1, - sym_qualified_type_identifier, - STATE(2717), 1, - sym_field_declaration_list, - STATE(2858), 1, - sym_class_declaration_item, - STATE(7919), 1, - sym_scope_resolution, - STATE(8434), 1, - sym_virtual_specifier, - STATE(9373), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(7809), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [317509] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(10649), 1, anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(6151), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10493), 1, - sym_identifier, - STATE(2223), 1, - sym_class_name, - STATE(2598), 1, - sym_template_type, - STATE(2719), 1, + STATE(3041), 1, sym_qualified_type_identifier, - STATE(2926), 1, - sym_field_declaration_list, - STATE(3116), 1, - sym_class_declaration_item, - STATE(7936), 1, + STATE(6620), 1, sym_scope_resolution, - STATE(8336), 1, - sym_virtual_specifier, - STATE(9564), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(7809), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 1, sym_decltype, + STATE(9637), 1, + sym_ms_based_modifier, + STATE(2959), 2, + sym_template_type, sym_dependent_type_identifier, - [317570] = 19, + STATE(3989), 6, + sym_pointer_type_declarator, + sym_template_function, + sym_destructor_name, + sym_dependent_identifier, + sym_qualified_identifier, + sym_operator_name, + [279029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(8457), 1, - anon_sym_LBRACE, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10489), 1, - sym_identifier, - STATE(4375), 1, - sym_class_name, - STATE(4742), 1, - sym_template_type, - STATE(4822), 1, - sym_qualified_type_identifier, - STATE(5069), 1, - sym_field_declaration_list, - STATE(5225), 1, - sym_class_declaration_item, - STATE(7922), 1, - sym_scope_resolution, - STATE(8308), 1, - sym_virtual_specifier, - STATE(9440), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(7050), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [317631] = 19, + ACTIONS(10653), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10651), 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, + [279057] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(8457), 1, - anon_sym_LBRACE, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10489), 1, + ACTIONS(10557), 1, sym_identifier, - STATE(4375), 1, - sym_class_name, - STATE(4742), 1, - sym_template_type, - STATE(4822), 1, - sym_qualified_type_identifier, - STATE(5069), 1, - sym_field_declaration_list, - STATE(5225), 1, - sym_class_declaration_item, - STATE(7922), 1, - sym_scope_resolution, - STATE(8308), 1, - sym_virtual_specifier, - STATE(9440), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(7809), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [317692] = 19, + ACTIONS(10559), 1, + anon_sym_LPAREN2, + ACTIONS(10561), 1, + anon_sym_defined, + ACTIONS(10567), 1, + sym_number_literal, + STATE(6792), 1, + sym_preproc_expression, + ACTIONS(10563), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10565), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10569), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6706), 6, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [279099] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(6132), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10475), 1, + ACTIONS(10557), 1, sym_identifier, - STATE(2190), 1, - sym_class_name, - STATE(2515), 1, - sym_template_type, - STATE(2599), 1, - sym_qualified_type_identifier, - STATE(2717), 1, - sym_field_declaration_list, - STATE(2858), 1, - sym_class_declaration_item, - STATE(7919), 1, - sym_scope_resolution, - STATE(8434), 1, - sym_virtual_specifier, - STATE(9373), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(6960), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [317753] = 19, + ACTIONS(10559), 1, + anon_sym_LPAREN2, + ACTIONS(10561), 1, + anon_sym_defined, + ACTIONS(10567), 1, + sym_number_literal, + STATE(6772), 1, + sym_preproc_expression, + ACTIONS(10563), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10565), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10569), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6706), 6, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [279141] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(7783), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10495), 1, + ACTIONS(10557), 1, sym_identifier, - STATE(3800), 1, - sym_class_name, - STATE(4401), 1, - sym_template_type, - STATE(4404), 1, - sym_qualified_type_identifier, - STATE(4797), 1, - sym_field_declaration_list, - STATE(4949), 1, - sym_class_declaration_item, - STATE(7879), 1, - sym_scope_resolution, - STATE(8316), 1, - sym_virtual_specifier, - STATE(9487), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(7809), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [317814] = 19, + ACTIONS(10559), 1, + anon_sym_LPAREN2, + ACTIONS(10561), 1, + anon_sym_defined, + ACTIONS(10567), 1, + sym_number_literal, + STATE(6797), 1, + sym_preproc_expression, + ACTIONS(10563), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10565), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10569), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6706), 6, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [279183] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(8457), 1, - anon_sym_LBRACE, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10489), 1, + ACTIONS(10481), 1, sym_identifier, - STATE(4375), 1, - sym_class_name, - STATE(4742), 1, - sym_template_type, - STATE(4822), 1, - sym_qualified_type_identifier, - STATE(5069), 1, - sym_field_declaration_list, - STATE(5312), 1, - sym_class_declaration_item, - STATE(7922), 1, - sym_scope_resolution, - STATE(8308), 1, - sym_virtual_specifier, - STATE(9440), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(7809), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [317875] = 19, + ACTIONS(10485), 1, + anon_sym_LPAREN2, + ACTIONS(10487), 1, + anon_sym_defined, + ACTIONS(10493), 1, + sym_number_literal, + STATE(6762), 1, + sym_preproc_expression, + ACTIONS(10489), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10491), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10495), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6611), 6, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [279225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(6116), 1, + ACTIONS(10657), 1, + anon_sym_LBRACK, + ACTIONS(10655), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(7785), 1, + anon_sym_EQ, anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10523), 1, - sym_identifier, - STATE(2182), 1, - sym_class_name, - STATE(2486), 1, - sym_field_declaration_list, - STATE(2509), 1, - sym_template_type, - STATE(2589), 1, - sym_qualified_type_identifier, - STATE(2614), 1, - sym_class_declaration_item, - STATE(7902), 1, - sym_scope_resolution, - STATE(8435), 1, - sym_virtual_specifier, - STATE(9380), 1, - sym_base_class_clause, - ACTIONS(6086), 2, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - STATE(7809), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [317936] = 19, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + sym_semgrep_metavar, + [279253] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(8457), 1, - anon_sym_LBRACE, - ACTIONS(10135), 1, + ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10489), 1, - sym_identifier, - STATE(4375), 1, - sym_class_name, - STATE(4742), 1, - sym_template_type, - STATE(4822), 1, - sym_qualified_type_identifier, - STATE(5069), 1, - sym_field_declaration_list, - STATE(5312), 1, - sym_class_declaration_item, - STATE(7922), 1, - sym_scope_resolution, - STATE(8308), 1, - sym_virtual_specifier, - STATE(9440), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(7055), 2, + ACTIONS(10461), 1, + anon_sym_try, + ACTIONS(10603), 1, + anon_sym_COMMA, + ACTIONS(10605), 1, + anon_sym_LPAREN2, + ACTIONS(10607), 1, + anon_sym_SEMI, + ACTIONS(10611), 1, + anon_sym_LBRACK, + ACTIONS(10613), 1, + anon_sym_EQ, + ACTIONS(10659), 1, + anon_sym_LBRACE, + STATE(4184), 1, + sym_parameter_list, + STATE(7260), 1, + sym_function_declarator_seq, + STATE(8459), 1, + sym_gnu_asm_expression, + STATE(8462), 1, + aux_sym_declaration_declarator_repeat1, + ACTIONS(10615), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(2026), 2, + sym_compound_statement, + sym_try_statement, + STATE(7162), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [317997] = 3, + STATE(8924), 2, + sym_argument_list, + sym_initializer_list, + [279309] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(6360), 1, anon_sym_LBRACK, - ACTIONS(6362), 20, + ACTIONS(10661), 1, + anon_sym_LBRACK_LBRACK, + STATE(6628), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6358), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - 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_COLON, - anon_sym_or, - anon_sym_and, anon_sym_asm, anon_sym___asm__, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [318026] = 19, + sym_semgrep_metavar, + [279341] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(6116), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10523), 1, + ACTIONS(10557), 1, sym_identifier, - STATE(2182), 1, - sym_class_name, - STATE(2486), 1, - sym_field_declaration_list, - STATE(2509), 1, - sym_template_type, - STATE(2589), 1, - sym_qualified_type_identifier, - STATE(2614), 1, - sym_class_declaration_item, - STATE(7902), 1, - sym_scope_resolution, - STATE(8435), 1, - sym_virtual_specifier, - STATE(9380), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(7061), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [318087] = 19, + ACTIONS(10559), 1, + anon_sym_LPAREN2, + ACTIONS(10561), 1, + anon_sym_defined, + ACTIONS(10567), 1, + sym_number_literal, + STATE(6780), 1, + sym_preproc_expression, + ACTIONS(10563), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10565), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10569), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6706), 6, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [279383] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, + ACTIONS(51), 1, + anon_sym___based, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(8457), 1, - anon_sym_LBRACE, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10489), 1, + ACTIONS(9147), 1, + anon_sym_STAR, + ACTIONS(10627), 1, + anon_sym_TILDE, + ACTIONS(10631), 1, + anon_sym_operator, + ACTIONS(10664), 1, sym_identifier, - STATE(4375), 1, - sym_class_name, - STATE(4742), 1, - sym_template_type, - STATE(4822), 1, + ACTIONS(10666), 1, + anon_sym_template, + STATE(2669), 1, sym_qualified_type_identifier, - STATE(5069), 1, - sym_field_declaration_list, - STATE(5231), 1, - sym_class_declaration_item, - STATE(7922), 1, + STATE(6630), 1, sym_scope_resolution, - STATE(8308), 1, - sym_virtual_specifier, - STATE(9440), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(7809), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9304), 1, + sym_ms_based_modifier, + STATE(9605), 1, sym_decltype, + STATE(2638), 2, + sym_template_type, sym_dependent_type_identifier, - [318148] = 19, + STATE(3569), 6, + sym_pointer_type_declarator, + sym_template_function, + sym_destructor_name, + sym_dependent_identifier, + sym_qualified_identifier, + sym_operator_name, + [279435] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, + ACTIONS(51), 1, + anon_sym___based, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6116), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10504), 1, + ACTIONS(9147), 1, + anon_sym_STAR, + ACTIONS(10668), 1, sym_identifier, - STATE(2182), 1, - sym_class_name, - STATE(2486), 1, - sym_field_declaration_list, - STATE(2509), 1, - sym_template_type, - STATE(2589), 1, + ACTIONS(10670), 1, + anon_sym_TILDE, + ACTIONS(10672), 1, + anon_sym_template, + ACTIONS(10674), 1, + anon_sym_operator, + STATE(2669), 1, sym_qualified_type_identifier, - STATE(2614), 1, - sym_class_declaration_item, - STATE(7886), 1, + STATE(6631), 1, sym_scope_resolution, - STATE(8435), 1, - sym_virtual_specifier, - STATE(9380), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(7809), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9304), 1, + sym_ms_based_modifier, + STATE(9605), 1, sym_decltype, + STATE(2638), 2, + sym_template_type, sym_dependent_type_identifier, - [318209] = 19, + STATE(3873), 6, + sym_pointer_type_declarator, + sym_template_function, + sym_destructor_name, + sym_dependent_identifier, + sym_qualified_identifier, + sym_operator_name, + [279487] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(6116), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10135), 1, + ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10504), 1, - sym_identifier, - STATE(2182), 1, - sym_class_name, - STATE(2486), 1, - sym_field_declaration_list, - STATE(2509), 1, - sym_template_type, - STATE(2589), 1, - sym_qualified_type_identifier, - STATE(2614), 1, - sym_class_declaration_item, - STATE(7886), 1, - sym_scope_resolution, - STATE(8435), 1, - sym_virtual_specifier, - STATE(9380), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(6979), 2, + ACTIONS(10440), 1, + anon_sym_try, + ACTIONS(10603), 1, + anon_sym_COMMA, + ACTIONS(10605), 1, + anon_sym_LPAREN2, + ACTIONS(10607), 1, + anon_sym_SEMI, + ACTIONS(10611), 1, + anon_sym_LBRACK, + ACTIONS(10613), 1, + anon_sym_EQ, + ACTIONS(10676), 1, + anon_sym_LBRACE, + STATE(4184), 1, + sym_parameter_list, + STATE(7260), 1, + sym_function_declarator_seq, + STATE(8459), 1, + sym_gnu_asm_expression, + STATE(8462), 1, + aux_sym_declaration_declarator_repeat1, + ACTIONS(10615), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(2105), 2, + sym_compound_statement, + sym_try_statement, + STATE(7162), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [318270] = 11, + STATE(8924), 2, + sym_argument_list, + sym_initializer_list, + [279543] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10945), 1, + ACTIONS(10557), 1, sym_identifier, - ACTIONS(10949), 1, + ACTIONS(10559), 1, anon_sym_LPAREN2, - ACTIONS(10951), 1, + ACTIONS(10561), 1, anon_sym_defined, - ACTIONS(10957), 1, + ACTIONS(10567), 1, sym_number_literal, - ACTIONS(10977), 1, - anon_sym_RPAREN, - STATE(6936), 1, + STATE(6794), 1, sym_preproc_expression, - ACTIONS(10953), 2, + ACTIONS(10563), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10955), 2, + ACTIONS(10565), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10959), 5, + ACTIONS(10569), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(7106), 6, + STATE(6706), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [318315] = 19, + [279585] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(6082), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10135), 1, + ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10491), 1, - sym_identifier, - STATE(2114), 1, - sym_class_name, - STATE(2457), 1, - sym_template_type, - STATE(2460), 1, - sym_qualified_type_identifier, - STATE(2686), 1, - sym_field_declaration_list, - STATE(2930), 1, - sym_class_declaration_item, - STATE(7937), 1, - sym_scope_resolution, - STATE(8323), 1, - sym_virtual_specifier, - STATE(9503), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(7063), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [318376] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(6082), 1, + ACTIONS(10603), 1, + anon_sym_COMMA, + ACTIONS(10605), 1, + anon_sym_LPAREN2, + ACTIONS(10607), 1, + anon_sym_SEMI, + ACTIONS(10611), 1, + anon_sym_LBRACK, + ACTIONS(10613), 1, + anon_sym_EQ, + ACTIONS(10678), 1, anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10491), 1, - sym_identifier, - STATE(2114), 1, - sym_class_name, - STATE(2457), 1, - sym_template_type, - STATE(2460), 1, - sym_qualified_type_identifier, - STATE(2686), 1, - sym_field_declaration_list, - STATE(2930), 1, - sym_class_declaration_item, - STATE(7937), 1, - sym_scope_resolution, - STATE(8323), 1, - sym_virtual_specifier, - STATE(9503), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(7809), 2, + ACTIONS(10680), 1, + anon_sym_try, + STATE(4184), 1, + sym_parameter_list, + STATE(7260), 1, + sym_function_declarator_seq, + STATE(8459), 1, + sym_gnu_asm_expression, + STATE(8462), 1, + aux_sym_declaration_declarator_repeat1, + ACTIONS(10615), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(547), 2, + sym_compound_statement, + sym_try_statement, + STATE(7162), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [318437] = 19, + STATE(8924), 2, + sym_argument_list, + sym_initializer_list, + [279641] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(6116), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10135), 1, + ACTIONS(8324), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10523), 1, - sym_identifier, - STATE(2182), 1, - sym_class_name, - STATE(2486), 1, - sym_field_declaration_list, - STATE(2509), 1, - sym_template_type, - STATE(2564), 1, - sym_class_declaration_item, - STATE(2589), 1, - sym_qualified_type_identifier, - STATE(7902), 1, - sym_scope_resolution, - STATE(8435), 1, - sym_virtual_specifier, - STATE(9380), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(7809), 2, + ACTIONS(10453), 1, + anon_sym_LBRACK, + STATE(6628), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [318498] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6468), 1, - anon_sym_LBRACK, - ACTIONS(6470), 20, + ACTIONS(10451), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - 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_COLON, - anon_sym_or, - anon_sym_and, anon_sym_asm, anon_sym___asm__, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [318527] = 19, + sym_semgrep_metavar, + [279673] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(6082), 1, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(9421), 1, + anon_sym_STAR, + ACTIONS(9423), 1, + anon_sym_AMP_AMP, + ACTIONS(9425), 1, + anon_sym_AMP, + STATE(4315), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7400), 1, + sym_abstract_declarator, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8561), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10491), 1, - sym_identifier, - STATE(2114), 1, - sym_class_name, - STATE(2457), 1, - sym_template_type, - STATE(2460), 1, - sym_qualified_type_identifier, - STATE(2686), 1, - sym_field_declaration_list, - STATE(2884), 1, - sym_class_declaration_item, - STATE(7937), 1, - sym_scope_resolution, - STATE(8323), 1, - sym_virtual_specifier, - STATE(9503), 1, - sym_base_class_clause, - ACTIONS(6086), 2, anon_sym_final, anon_sym_override, - STATE(7809), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [318588] = 19, + anon_sym_requires, + [279717] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, + ACTIONS(10507), 1, + anon_sym_SLASH, + ACTIONS(10503), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10505), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10551), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10549), 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, + [279751] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6082), 1, - anon_sym_LBRACE, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10491), 1, + ACTIONS(9147), 1, + anon_sym_STAR, + ACTIONS(10670), 1, + anon_sym_TILDE, + ACTIONS(10674), 1, + anon_sym_operator, + ACTIONS(10682), 1, sym_identifier, - STATE(2114), 1, - sym_class_name, - STATE(2457), 1, - sym_template_type, - STATE(2460), 1, + ACTIONS(10684), 1, + anon_sym_template, + STATE(3105), 1, sym_qualified_type_identifier, - STATE(2686), 1, - sym_field_declaration_list, - STATE(2884), 1, - sym_class_declaration_item, - STATE(7937), 1, + STATE(6638), 1, sym_scope_resolution, - STATE(8323), 1, - sym_virtual_specifier, - STATE(9503), 1, - sym_base_class_clause, - ACTIONS(6086), 2, - anon_sym_final, - anon_sym_override, - STATE(7065), 2, + STATE(9304), 1, + sym_ms_based_modifier, + STATE(9605), 1, + sym_decltype, + STATE(3100), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(3873), 6, + sym_pointer_type_declarator, + sym_template_function, + sym_destructor_name, + sym_dependent_identifier, + sym_qualified_identifier, + sym_operator_name, + [279803] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10603), 1, + anon_sym_COMMA, + ACTIONS(10605), 1, + anon_sym_LPAREN2, + ACTIONS(10607), 1, + anon_sym_SEMI, + ACTIONS(10611), 1, + anon_sym_LBRACK, + ACTIONS(10613), 1, + anon_sym_EQ, + ACTIONS(10686), 1, + anon_sym_LBRACE, + ACTIONS(10688), 1, + anon_sym_try, + STATE(4184), 1, + sym_parameter_list, + STATE(7260), 1, + sym_function_declarator_seq, + STATE(8459), 1, + sym_gnu_asm_expression, + STATE(8462), 1, + aux_sym_declaration_declarator_repeat1, + ACTIONS(10615), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(374), 2, + sym_compound_statement, + sym_try_statement, + STATE(7162), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [318649] = 19, + STATE(8924), 2, + sym_argument_list, + sym_initializer_list, + [279859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(6082), 1, + ACTIONS(10692), 1, + anon_sym_LBRACK, + ACTIONS(10690), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(7785), 1, + anon_sym_EQ, anon_sym_COLON, - ACTIONS(10135), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10491), 1, - sym_identifier, - STATE(2114), 1, - sym_class_name, - STATE(2457), 1, - sym_template_type, - STATE(2460), 1, - sym_qualified_type_identifier, - STATE(2686), 1, - sym_field_declaration_list, - STATE(2912), 1, - sym_class_declaration_item, - STATE(7937), 1, - sym_scope_resolution, - STATE(8323), 1, - sym_virtual_specifier, - STATE(9503), 1, - sym_base_class_clause, - ACTIONS(6086), 2, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - STATE(7809), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [318710] = 8, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + sym_semgrep_metavar, + [279887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7926), 1, - anon_sym_requires, - ACTIONS(9902), 1, + ACTIONS(10696), 1, anon_sym_LBRACK, - STATE(7270), 1, - sym_requires_clause, - STATE(7298), 1, - sym_function_postfix, - ACTIONS(6118), 2, - anon_sym_final, - anon_sym_override, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(9897), 13, + ACTIONS(10694), 19, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -590664,327 +556145,411 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [318749] = 19, + anon_sym_requires, + sym_semgrep_metavar, + [279915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(10135), 1, + ACTIONS(10700), 1, + anon_sym_LBRACK, + ACTIONS(10698), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - ACTIONS(10269), 1, anon_sym_LBRACE, - ACTIONS(10506), 1, - sym_identifier, - STATE(6327), 1, - sym_class_name, - STATE(6686), 1, - sym_template_type, - STATE(6723), 1, - sym_qualified_type_identifier, - STATE(6790), 1, - sym_field_declaration_list, - STATE(6836), 1, - sym_class_declaration_item, - STATE(7896), 1, - sym_scope_resolution, - STATE(8433), 1, - sym_virtual_specifier, - STATE(9360), 1, - sym_base_class_clause, - ACTIONS(6086), 2, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - STATE(7809), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [318810] = 10, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + sym_semgrep_metavar, + [279943] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10979), 1, - sym_identifier, - ACTIONS(10981), 1, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10704), 1, + anon_sym_LBRACK, + STATE(6628), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10702), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(10983), 1, - anon_sym_defined, - ACTIONS(10989), 1, - sym_number_literal, - STATE(7179), 1, - sym_preproc_expression, - ACTIONS(10985), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10987), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10991), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(7224), 6, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [318852] = 17, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + sym_semgrep_metavar, + [279975] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8098), 1, + ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10879), 1, + ACTIONS(10430), 1, anon_sym_try, - ACTIONS(10993), 1, + ACTIONS(10603), 1, anon_sym_COMMA, - ACTIONS(10995), 1, + ACTIONS(10605), 1, anon_sym_LPAREN2, - ACTIONS(10997), 1, + ACTIONS(10607), 1, anon_sym_SEMI, - ACTIONS(10999), 1, - anon_sym_LBRACE, - ACTIONS(11001), 1, + ACTIONS(10611), 1, anon_sym_LBRACK, - ACTIONS(11003), 1, + ACTIONS(10613), 1, anon_sym_EQ, - STATE(4388), 1, + ACTIONS(10706), 1, + anon_sym_LBRACE, + STATE(4184), 1, sym_parameter_list, - STATE(7652), 1, + STATE(7260), 1, sym_function_declarator_seq, - STATE(8841), 1, + STATE(8459), 1, sym_gnu_asm_expression, - STATE(8939), 1, + STATE(8462), 1, aux_sym_declaration_declarator_repeat1, - ACTIONS(11005), 2, + ACTIONS(10615), 2, anon_sym_asm, anon_sym___asm__, - STATE(2260), 2, + STATE(2418), 2, sym_compound_statement, sym_try_statement, - STATE(7677), 2, + STATE(7162), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9357), 2, + STATE(8924), 2, sym_argument_list, sym_initializer_list, - [318908] = 10, + [280031] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10945), 1, + ACTIONS(10557), 1, sym_identifier, - ACTIONS(10949), 1, + ACTIONS(10559), 1, anon_sym_LPAREN2, - ACTIONS(10951), 1, + ACTIONS(10561), 1, anon_sym_defined, - ACTIONS(10957), 1, + ACTIONS(10567), 1, sym_number_literal, - STATE(7171), 1, + STATE(6709), 1, sym_preproc_expression, - ACTIONS(10953), 2, + ACTIONS(10563), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10955), 2, + ACTIONS(10565), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10959), 5, + ACTIONS(10569), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(7106), 6, + STATE(6706), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [318950] = 10, + [280073] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10979), 1, + ACTIONS(10557), 1, sym_identifier, - ACTIONS(10981), 1, + ACTIONS(10559), 1, anon_sym_LPAREN2, - ACTIONS(10983), 1, + ACTIONS(10561), 1, anon_sym_defined, - ACTIONS(10989), 1, + ACTIONS(10567), 1, sym_number_literal, - STATE(7194), 1, + STATE(6715), 1, sym_preproc_expression, - ACTIONS(10985), 2, + ACTIONS(10563), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10987), 2, + ACTIONS(10565), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10991), 5, + ACTIONS(10569), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(7224), 6, + STATE(6706), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [318992] = 10, + [280115] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10945), 1, + ACTIONS(10557), 1, sym_identifier, - ACTIONS(10949), 1, + ACTIONS(10559), 1, anon_sym_LPAREN2, - ACTIONS(10951), 1, + ACTIONS(10561), 1, anon_sym_defined, - ACTIONS(10957), 1, + ACTIONS(10567), 1, sym_number_literal, - STATE(7110), 1, + STATE(6730), 1, sym_preproc_expression, - ACTIONS(10953), 2, + ACTIONS(10563), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10955), 2, + ACTIONS(10565), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10959), 5, + ACTIONS(10569), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(7106), 6, + STATE(6706), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [319034] = 10, + [280157] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10979), 1, + ACTIONS(10557), 1, sym_identifier, - ACTIONS(10981), 1, + ACTIONS(10559), 1, anon_sym_LPAREN2, - ACTIONS(10983), 1, + ACTIONS(10561), 1, anon_sym_defined, - ACTIONS(10989), 1, + ACTIONS(10567), 1, sym_number_literal, - STATE(7210), 1, + STATE(6731), 1, sym_preproc_expression, - ACTIONS(10985), 2, + ACTIONS(10563), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10987), 2, + ACTIONS(10565), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10991), 5, + ACTIONS(10569), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(7224), 6, + STATE(6706), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [319076] = 10, + [280199] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10979), 1, + ACTIONS(10557), 1, sym_identifier, - ACTIONS(10981), 1, + ACTIONS(10559), 1, anon_sym_LPAREN2, - ACTIONS(10983), 1, + ACTIONS(10561), 1, anon_sym_defined, - ACTIONS(10989), 1, + ACTIONS(10567), 1, sym_number_literal, - STATE(7192), 1, + STATE(6735), 1, sym_preproc_expression, - ACTIONS(10985), 2, + ACTIONS(10563), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10987), 2, + ACTIONS(10565), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10991), 5, + ACTIONS(10569), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(7224), 6, + STATE(6706), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [319118] = 10, + [280241] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(9123), 1, + anon_sym_STAR, + ACTIONS(10539), 1, + anon_sym_TILDE, + ACTIONS(10543), 1, + anon_sym_operator, + ACTIONS(10708), 1, + sym_identifier, + ACTIONS(10710), 1, + anon_sym_template, + STATE(3105), 1, + sym_qualified_type_identifier, + STATE(6650), 1, + sym_scope_resolution, + STATE(9248), 1, + sym_ms_based_modifier, + STATE(9605), 1, + sym_decltype, + STATE(3100), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(2591), 6, + sym_pointer_type_declarator, + sym_template_function, + sym_destructor_name, + sym_dependent_identifier, + sym_qualified_identifier, + sym_operator_name, + [280293] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(9123), 1, + anon_sym_STAR, + ACTIONS(10539), 1, + anon_sym_TILDE, + ACTIONS(10543), 1, + anon_sym_operator, + ACTIONS(10712), 1, + sym_identifier, + ACTIONS(10714), 1, + anon_sym_template, + STATE(2669), 1, + sym_qualified_type_identifier, + STATE(6651), 1, + sym_scope_resolution, + STATE(9248), 1, + sym_ms_based_modifier, + STATE(9605), 1, + sym_decltype, + STATE(2638), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(2591), 6, + sym_pointer_type_declarator, + sym_template_function, + sym_destructor_name, + sym_dependent_identifier, + sym_qualified_identifier, + sym_operator_name, + [280345] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10945), 1, + ACTIONS(10481), 1, sym_identifier, - ACTIONS(10949), 1, + ACTIONS(10485), 1, anon_sym_LPAREN2, - ACTIONS(10951), 1, + ACTIONS(10487), 1, anon_sym_defined, - ACTIONS(10957), 1, + ACTIONS(10493), 1, sym_number_literal, - STATE(7239), 1, + STATE(6583), 1, sym_preproc_expression, - ACTIONS(10953), 2, + ACTIONS(10489), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10955), 2, + ACTIONS(10491), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10959), 5, + ACTIONS(10495), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(7106), 6, + STATE(6611), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [319160] = 4, + [280387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11009), 1, - anon_sym_LPAREN2, - ACTIONS(11011), 1, + ACTIONS(10718), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10716), 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, + [280415] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10358), 1, anon_sym_LBRACK, - ACTIONS(11007), 18, - anon_sym_DOT_DOT_DOT, + STATE(6628), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10356), 16, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, @@ -590993,1044 +556558,671 @@ 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_requires, sym_semgrep_metavar, - [319190] = 10, + [280447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7920), 1, - anon_sym_DASH_GT, - ACTIONS(7926), 1, - anon_sym_requires, - ACTIONS(10897), 1, - anon_sym_LBRACK, - STATE(6964), 1, - sym_trailing_return_type, - STATE(7270), 1, - sym_requires_clause, - STATE(7324), 1, - sym_function_postfix, - ACTIONS(6118), 2, - anon_sym_final, - anon_sym_override, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10895), 10, + ACTIONS(10722), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10720), 15, 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, - [319232] = 15, + 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, + [280475] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, + ACTIONS(2257), 1, + anon_sym_operator, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(9512), 1, + ACTIONS(9197), 1, anon_sym_STAR, - ACTIONS(11013), 1, + ACTIONS(10724), 1, sym_identifier, - ACTIONS(11015), 1, - anon_sym_TILDE, - ACTIONS(11017), 1, + ACTIONS(10726), 1, anon_sym_template, - ACTIONS(11019), 1, - anon_sym_operator, - STATE(4694), 1, + STATE(3105), 1, sym_qualified_type_identifier, - STATE(7078), 1, + STATE(6656), 1, sym_scope_resolution, - STATE(9982), 1, - sym_decltype, - STATE(10464), 1, + STATE(9517), 1, sym_ms_based_modifier, - STATE(4693), 2, + STATE(9605), 1, + sym_decltype, + STATE(3100), 2, sym_template_type, sym_dependent_type_identifier, - STATE(3243), 6, + STATE(3095), 6, sym_pointer_type_declarator, sym_template_function, sym_destructor_name, sym_dependent_identifier, sym_qualified_identifier, sym_operator_name, - [319284] = 15, + [280527] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(9512), 1, + ACTIONS(9123), 1, anon_sym_STAR, - ACTIONS(11015), 1, + ACTIONS(10539), 1, anon_sym_TILDE, - ACTIONS(11019), 1, + ACTIONS(10543), 1, anon_sym_operator, - ACTIONS(11021), 1, + ACTIONS(10728), 1, sym_identifier, - ACTIONS(11023), 1, + ACTIONS(10730), 1, anon_sym_template, - STATE(4694), 1, + STATE(3105), 1, sym_qualified_type_identifier, - STATE(7079), 1, + STATE(6657), 1, sym_scope_resolution, - STATE(9982), 1, - sym_decltype, - STATE(10464), 1, + STATE(9248), 1, sym_ms_based_modifier, - STATE(4693), 2, + STATE(9605), 1, + sym_decltype, + STATE(3100), 2, sym_template_type, sym_dependent_type_identifier, - STATE(3243), 6, + STATE(2591), 6, sym_pointer_type_declarator, sym_template_function, sym_destructor_name, sym_dependent_identifier, sym_qualified_identifier, sym_operator_name, - [319336] = 10, + [280579] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(10945), 1, - sym_identifier, - ACTIONS(10949), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10471), 1, + anon_sym_try, + ACTIONS(10603), 1, + anon_sym_COMMA, + ACTIONS(10605), 1, anon_sym_LPAREN2, - ACTIONS(10951), 1, - anon_sym_defined, - ACTIONS(10957), 1, - sym_number_literal, - STATE(7100), 1, - sym_preproc_expression, - ACTIONS(10953), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10955), 2, + ACTIONS(10607), 1, + anon_sym_SEMI, + ACTIONS(10611), 1, + anon_sym_LBRACK, + ACTIONS(10613), 1, + anon_sym_EQ, + ACTIONS(10732), 1, + anon_sym_LBRACE, + STATE(4184), 1, + sym_parameter_list, + STATE(7260), 1, + sym_function_declarator_seq, + STATE(8459), 1, + sym_gnu_asm_expression, + STATE(8462), 1, + aux_sym_declaration_declarator_repeat1, + ACTIONS(10615), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(2419), 2, + sym_compound_statement, + sym_try_statement, + STATE(7162), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8924), 2, + sym_argument_list, + sym_initializer_list, + [280635] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10736), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10734), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10959), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(7106), 6, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [319378] = 3, + anon_sym_STAR, + 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, + [280663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11027), 1, - anon_sym_LBRACK, - ACTIONS(11025), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(10740), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10738), 15, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - sym_semgrep_metavar, - [319406] = 10, + 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, + [280691] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10979), 1, + ACTIONS(10481), 1, sym_identifier, - ACTIONS(10981), 1, + ACTIONS(10485), 1, anon_sym_LPAREN2, - ACTIONS(10983), 1, + ACTIONS(10487), 1, anon_sym_defined, - ACTIONS(10989), 1, + ACTIONS(10493), 1, sym_number_literal, - STATE(7204), 1, + STATE(6578), 1, sym_preproc_expression, - ACTIONS(10985), 2, + ACTIONS(10489), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10987), 2, + ACTIONS(10491), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10991), 5, + ACTIONS(10495), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(7224), 6, + STATE(6611), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [319448] = 10, + [280733] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10979), 1, + ACTIONS(10481), 1, sym_identifier, - ACTIONS(10981), 1, + ACTIONS(10485), 1, anon_sym_LPAREN2, - ACTIONS(10983), 1, + ACTIONS(10487), 1, anon_sym_defined, - ACTIONS(10989), 1, + ACTIONS(10493), 1, sym_number_literal, - STATE(7209), 1, + STATE(6596), 1, sym_preproc_expression, - ACTIONS(10985), 2, + ACTIONS(10489), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10987), 2, + ACTIONS(10491), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10991), 5, + ACTIONS(10495), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(7224), 6, + STATE(6611), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [319490] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11031), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(11029), 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, - [319518] = 10, + [280775] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10945), 1, + ACTIONS(10481), 1, sym_identifier, - ACTIONS(10949), 1, + ACTIONS(10485), 1, anon_sym_LPAREN2, - ACTIONS(10951), 1, + ACTIONS(10487), 1, anon_sym_defined, - ACTIONS(10957), 1, + ACTIONS(10493), 1, sym_number_literal, - STATE(7175), 1, + STATE(6597), 1, sym_preproc_expression, - ACTIONS(10953), 2, + ACTIONS(10489), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10955), 2, + ACTIONS(10491), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10959), 5, + ACTIONS(10495), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(7106), 6, + STATE(6611), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [319560] = 10, + [280817] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10979), 1, + ACTIONS(10481), 1, sym_identifier, - ACTIONS(10981), 1, + ACTIONS(10485), 1, anon_sym_LPAREN2, - ACTIONS(10983), 1, + ACTIONS(10487), 1, anon_sym_defined, - ACTIONS(10989), 1, + ACTIONS(10493), 1, sym_number_literal, - STATE(7207), 1, + STATE(6600), 1, sym_preproc_expression, - ACTIONS(10985), 2, + ACTIONS(10489), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10987), 2, + ACTIONS(10491), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10991), 5, + ACTIONS(10495), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(7224), 6, + STATE(6611), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [319602] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11035), 1, - anon_sym_LBRACK, - ACTIONS(11033), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - sym_semgrep_metavar, - [319630] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10820), 1, - anon_sym_try, - ACTIONS(10993), 1, - anon_sym_COMMA, - ACTIONS(10995), 1, - anon_sym_LPAREN2, - ACTIONS(10997), 1, - anon_sym_SEMI, - ACTIONS(11001), 1, - anon_sym_LBRACK, - ACTIONS(11003), 1, - anon_sym_EQ, - ACTIONS(11037), 1, - anon_sym_LBRACE, - STATE(4388), 1, - sym_parameter_list, - STATE(7652), 1, - sym_function_declarator_seq, - STATE(8841), 1, - sym_gnu_asm_expression, - STATE(8939), 1, - aux_sym_declaration_declarator_repeat1, - ACTIONS(11005), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(2195), 2, - sym_compound_statement, - sym_try_statement, - STATE(7677), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9357), 2, - sym_argument_list, - sym_initializer_list, - [319686] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(9512), 1, - anon_sym_STAR, - ACTIONS(11015), 1, - anon_sym_TILDE, - ACTIONS(11019), 1, - anon_sym_operator, - ACTIONS(11039), 1, - sym_identifier, - ACTIONS(11041), 1, - anon_sym_template, - STATE(2569), 1, - sym_qualified_type_identifier, - STATE(7089), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_decltype, - STATE(10464), 1, - sym_ms_based_modifier, - STATE(2500), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(3243), 6, - sym_pointer_type_declarator, - sym_template_function, - sym_destructor_name, - sym_dependent_identifier, - sym_qualified_identifier, - sym_operator_name, - [319738] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7920), 1, - anon_sym_DASH_GT, - ACTIONS(10469), 1, - anon_sym_LBRACK, - ACTIONS(10536), 1, - anon_sym_requires, - STATE(7043), 1, - sym_trailing_return_type, - STATE(7270), 1, - sym_requires_clause, - STATE(7333), 1, - sym_function_postfix, - ACTIONS(10533), 2, - anon_sym_final, - anon_sym_override, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10464), 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, - [319780] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11045), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(11043), 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, - [319808] = 15, + [280859] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(9569), 1, + ACTIONS(9195), 1, anon_sym_STAR, - ACTIONS(11047), 1, + ACTIONS(10742), 1, sym_identifier, - ACTIONS(11049), 1, + ACTIONS(10744), 1, anon_sym_TILDE, - ACTIONS(11051), 1, + ACTIONS(10746), 1, anon_sym_template, - ACTIONS(11053), 1, + ACTIONS(10748), 1, anon_sym_operator, - STATE(4694), 1, + STATE(3105), 1, sym_qualified_type_identifier, - STATE(7092), 1, + STATE(6665), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_decltype, - STATE(10608), 1, + STATE(9631), 1, sym_ms_based_modifier, - STATE(4693), 2, + STATE(3100), 2, sym_template_type, sym_dependent_type_identifier, - STATE(4354), 6, + STATE(3524), 6, sym_pointer_type_declarator, sym_template_function, sym_destructor_name, sym_dependent_identifier, sym_qualified_identifier, sym_operator_name, - [319860] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11057), 1, - anon_sym_LBRACK, - ACTIONS(11055), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - sym_semgrep_metavar, - [319888] = 10, + [280911] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10979), 1, + ACTIONS(10481), 1, sym_identifier, - ACTIONS(10981), 1, + ACTIONS(10485), 1, anon_sym_LPAREN2, - ACTIONS(10983), 1, + ACTIONS(10487), 1, anon_sym_defined, - ACTIONS(10989), 1, + ACTIONS(10493), 1, sym_number_literal, - STATE(7218), 1, + STATE(6601), 1, sym_preproc_expression, - ACTIONS(10985), 2, + ACTIONS(10489), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10987), 2, + ACTIONS(10491), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10991), 5, + ACTIONS(10495), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(7224), 6, + STATE(6611), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [319930] = 17, + [280953] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10993), 1, - anon_sym_COMMA, - ACTIONS(10995), 1, + ACTIONS(10481), 1, + sym_identifier, + ACTIONS(10485), 1, anon_sym_LPAREN2, - ACTIONS(10997), 1, - anon_sym_SEMI, - ACTIONS(11001), 1, - anon_sym_LBRACK, - ACTIONS(11003), 1, - anon_sym_EQ, - ACTIONS(11059), 1, - anon_sym_LBRACE, - ACTIONS(11061), 1, - anon_sym_try, - STATE(4388), 1, - sym_parameter_list, - STATE(7652), 1, - sym_function_declarator_seq, - STATE(8841), 1, - sym_gnu_asm_expression, - STATE(8939), 1, - aux_sym_declaration_declarator_repeat1, - ACTIONS(11005), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(548), 2, - sym_compound_statement, - sym_try_statement, - STATE(7677), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9357), 2, - sym_argument_list, - sym_initializer_list, - [319986] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11065), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(11063), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10487), 1, + anon_sym_defined, + ACTIONS(10493), 1, + sym_number_literal, + STATE(6602), 1, + sym_preproc_expression, + ACTIONS(10489), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10491), 2, 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, - [320014] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10993), 1, - anon_sym_COMMA, - ACTIONS(10995), 1, - anon_sym_LPAREN2, - ACTIONS(10997), 1, - anon_sym_SEMI, - ACTIONS(11001), 1, - anon_sym_LBRACK, - ACTIONS(11003), 1, - anon_sym_EQ, - ACTIONS(11067), 1, - anon_sym_LBRACE, - ACTIONS(11069), 1, - anon_sym_try, - STATE(4388), 1, - sym_parameter_list, - STATE(7652), 1, - sym_function_declarator_seq, - STATE(8841), 1, - sym_gnu_asm_expression, - STATE(8939), 1, - aux_sym_declaration_declarator_repeat1, - ACTIONS(11005), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(788), 2, - sym_compound_statement, - sym_try_statement, - STATE(7677), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9357), 2, - sym_argument_list, - sym_initializer_list, - [320070] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7926), 1, - anon_sym_requires, - ACTIONS(8325), 1, - anon_sym_DASH_GT, - ACTIONS(10469), 1, - anon_sym_LBRACK, - STATE(6933), 1, - sym_trailing_return_type, - STATE(7270), 1, - sym_requires_clause, - STATE(7333), 1, - sym_function_postfix, - ACTIONS(6118), 2, - anon_sym_final, - anon_sym_override, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10464), 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_asm, - anon_sym___asm__, - anon_sym_try, - [320112] = 10, + ACTIONS(10495), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6611), 6, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [280995] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10979), 1, + ACTIONS(10481), 1, sym_identifier, - ACTIONS(10981), 1, + ACTIONS(10485), 1, anon_sym_LPAREN2, - ACTIONS(10983), 1, + ACTIONS(10487), 1, anon_sym_defined, - ACTIONS(10989), 1, + ACTIONS(10493), 1, sym_number_literal, - STATE(7182), 1, + STATE(6603), 1, sym_preproc_expression, - ACTIONS(10985), 2, + ACTIONS(10489), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10987), 2, + ACTIONS(10491), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10991), 5, + ACTIONS(10495), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(7224), 6, + STATE(6611), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [320154] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10907), 1, - anon_sym_SLASH, - ACTIONS(10903), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10905), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10919), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10921), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10923), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10925), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11073), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(11071), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [320196] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11077), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(11075), 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, - [320224] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10832), 1, - anon_sym_try, - ACTIONS(10993), 1, - anon_sym_COMMA, - ACTIONS(10995), 1, - anon_sym_LPAREN2, - ACTIONS(10997), 1, - anon_sym_SEMI, - ACTIONS(11001), 1, - anon_sym_LBRACK, - ACTIONS(11003), 1, - anon_sym_EQ, - ACTIONS(11079), 1, - anon_sym_LBRACE, - STATE(4388), 1, - sym_parameter_list, - STATE(7652), 1, - sym_function_declarator_seq, - STATE(8841), 1, - sym_gnu_asm_expression, - STATE(8939), 1, - aux_sym_declaration_declarator_repeat1, - ACTIONS(11005), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(2314), 2, - sym_compound_statement, - sym_try_statement, - STATE(7677), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9357), 2, - sym_argument_list, - sym_initializer_list, - [320280] = 10, + [281037] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10979), 1, + ACTIONS(10481), 1, sym_identifier, - ACTIONS(10981), 1, + ACTIONS(10485), 1, anon_sym_LPAREN2, - ACTIONS(10983), 1, + ACTIONS(10487), 1, anon_sym_defined, - ACTIONS(10989), 1, + ACTIONS(10493), 1, sym_number_literal, - STATE(7229), 1, + STATE(6604), 1, sym_preproc_expression, - ACTIONS(10985), 2, + ACTIONS(10489), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10987), 2, + ACTIONS(10491), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10991), 5, + ACTIONS(10495), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(7224), 6, + STATE(6611), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [320322] = 10, + [281079] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10945), 1, + ACTIONS(10481), 1, sym_identifier, - ACTIONS(10949), 1, + ACTIONS(10485), 1, anon_sym_LPAREN2, - ACTIONS(10951), 1, + ACTIONS(10487), 1, anon_sym_defined, - ACTIONS(10957), 1, + ACTIONS(10493), 1, sym_number_literal, - STATE(7155), 1, + STATE(6605), 1, sym_preproc_expression, - ACTIONS(10953), 2, + ACTIONS(10489), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10955), 2, + ACTIONS(10491), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10959), 5, + ACTIONS(10495), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(7106), 6, + STATE(6611), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [320364] = 10, + [281121] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10945), 1, + ACTIONS(10481), 1, sym_identifier, - ACTIONS(10949), 1, + ACTIONS(10485), 1, anon_sym_LPAREN2, - ACTIONS(10951), 1, + ACTIONS(10487), 1, anon_sym_defined, - ACTIONS(10957), 1, + ACTIONS(10493), 1, sym_number_literal, - STATE(7174), 1, + STATE(6637), 1, sym_preproc_expression, - ACTIONS(10953), 2, + ACTIONS(10489), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10955), 2, + ACTIONS(10491), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10959), 5, + ACTIONS(10495), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(7106), 6, + STATE(6611), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [320406] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10850), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10846), 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, - [320434] = 10, + [281163] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10945), 1, + ACTIONS(10557), 1, sym_identifier, - ACTIONS(10949), 1, + ACTIONS(10559), 1, anon_sym_LPAREN2, - ACTIONS(10951), 1, + ACTIONS(10561), 1, anon_sym_defined, - ACTIONS(10957), 1, + ACTIONS(10567), 1, sym_number_literal, - STATE(7176), 1, + STATE(6789), 1, sym_preproc_expression, - ACTIONS(10953), 2, + ACTIONS(10563), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10955), 2, + ACTIONS(10565), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10959), 5, + ACTIONS(10569), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(7106), 6, + STATE(6706), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [320476] = 10, + [281205] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(10979), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(9147), 1, + anon_sym_STAR, + ACTIONS(10670), 1, + anon_sym_TILDE, + ACTIONS(10674), 1, + anon_sym_operator, + ACTIONS(10750), 1, sym_identifier, - ACTIONS(10981), 1, + ACTIONS(10752), 1, + anon_sym_template, + STATE(3105), 1, + sym_qualified_type_identifier, + STATE(6673), 1, + sym_scope_resolution, + STATE(9304), 1, + sym_ms_based_modifier, + STATE(9605), 1, + sym_decltype, + STATE(3100), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(3873), 6, + sym_pointer_type_declarator, + sym_template_function, + sym_destructor_name, + sym_dependent_identifier, + sym_qualified_identifier, + sym_operator_name, + [281257] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10557), 1, + sym_identifier, + ACTIONS(10559), 1, anon_sym_LPAREN2, - ACTIONS(10983), 1, + ACTIONS(10561), 1, anon_sym_defined, - ACTIONS(10989), 1, + ACTIONS(10567), 1, sym_number_literal, - STATE(7234), 1, + STATE(6776), 1, sym_preproc_expression, - ACTIONS(10985), 2, + ACTIONS(10563), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10987), 2, + ACTIONS(10565), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10991), 5, + ACTIONS(10569), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(7224), 6, + STATE(6706), 6, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [320518] = 5, + [281299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10907), 1, + ACTIONS(10756), 5, anon_sym_SLASH, - ACTIONS(10905), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11073), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(11071), 13, + ACTIONS(10754), 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, @@ -592040,150 +557232,313 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [320550] = 3, - ACTIONS(3), 1, + [281327] = 3, + ACTIONS(10479), 1, sym_comment, - ACTIONS(11083), 5, + ACTIONS(10754), 1, + anon_sym_LF, + ACTIONS(10756), 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, - ACTIONS(11081), 15, + anon_sym_LT_LT, + anon_sym_GT_GT, + [281354] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8040), 1, + anon_sym_DASH_GT, + ACTIONS(8042), 1, + anon_sym_requires, + ACTIONS(9642), 1, + anon_sym_LBRACK, + STATE(6760), 1, + sym_trailing_return_type, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [281395] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2359), 1, + anon_sym_LBRACK, + ACTIONS(2357), 18, + anon_sym_COMMA, + anon_sym_LPAREN2, + 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_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [281422] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10358), 1, + anon_sym_LBRACK, + STATE(6245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10356), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [281453] = 12, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(10758), 1, + anon_sym_LF, + ACTIONS(10764), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10766), 1, + anon_sym_AMP_AMP, + ACTIONS(10768), 1, + anon_sym_PIPE, + ACTIONS(10770), 1, + anon_sym_CARET, + ACTIONS(10772), 1, + anon_sym_AMP, + ACTIONS(10760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10774), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10778), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10762), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10776), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [281498] = 3, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(10651), 1, + anon_sym_LF, + ACTIONS(10653), 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, - [320578] = 3, - ACTIONS(3), 1, + [281525] = 3, + ACTIONS(10479), 1, sym_comment, - ACTIONS(3658), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, + ACTIONS(10549), 1, + anon_sym_LF, + ACTIONS(10551), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3656), 16, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_operator, - [320606] = 10, + 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, + [281552] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10979), 1, - sym_identifier, - ACTIONS(10981), 1, - anon_sym_LPAREN2, - ACTIONS(10983), 1, - anon_sym_defined, - ACTIONS(10989), 1, - sym_number_literal, - STATE(7227), 1, - sym_preproc_expression, - ACTIONS(10985), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10987), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10991), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(7224), 6, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [320648] = 15, + ACTIONS(8040), 1, + anon_sym_DASH_GT, + ACTIONS(8042), 1, + anon_sym_requires, + ACTIONS(9783), 1, + anon_sym_LBRACK, + STATE(6707), 1, + sym_trailing_return_type, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [281593] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, + ACTIONS(125), 1, + anon_sym_virtual, + ACTIONS(1534), 1, + anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(9645), 1, - anon_sym_STAR, - ACTIONS(11085), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10127), 1, sym_identifier, - ACTIONS(11087), 1, - anon_sym_TILDE, - ACTIONS(11089), 1, - anon_sym_template, - ACTIONS(11091), 1, - anon_sym_operator, - STATE(4694), 1, + STATE(3094), 1, + sym_template_type, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(7113), 1, + STATE(7385), 1, + sym_access_specifier, + STATE(7546), 1, sym_scope_resolution, - STATE(9921), 1, - sym_ms_based_modifier, - STATE(9982), 1, + STATE(8168), 1, + sym_class_name, + STATE(8170), 1, + sym_virtual, + STATE(6245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, sym_decltype, - STATE(4693), 2, - sym_template_type, sym_dependent_type_identifier, - STATE(4438), 6, - sym_pointer_type_declarator, - sym_template_function, - sym_destructor_name, - sym_dependent_identifier, - sym_qualified_identifier, - sym_operator_name, - [320700] = 10, + ACTIONS(10780), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [281646] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7926), 1, - anon_sym_requires, - ACTIONS(8325), 1, + ACTIONS(8040), 1, anon_sym_DASH_GT, - ACTIONS(10106), 1, + ACTIONS(8042), 1, + anon_sym_requires, + ACTIONS(10156), 1, anon_sym_LBRACK, - STATE(7033), 1, + STATE(6739), 1, sym_trailing_return_type, - STATE(7270), 1, + STATE(6835), 1, + sym_function_postfix, + STATE(6852), 1, sym_requires_clause, - STATE(7338), 1, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [281687] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8042), 1, + anon_sym_requires, + ACTIONS(10784), 1, + anon_sym_LBRACK, + STATE(6815), 1, sym_function_postfix, - ACTIONS(6118), 2, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(6369), 2, anon_sym_final, anon_sym_override, - STATE(7215), 2, + STATE(6761), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10101), 10, + ACTIONS(10782), 11, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, @@ -592191,618 +557546,502 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [320742] = 17, + [281724] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8098), 1, + ACTIONS(8040), 1, + anon_sym_DASH_GT, + ACTIONS(8042), 1, + anon_sym_requires, + ACTIONS(10788), 1, + anon_sym_LBRACK, + STATE(6686), 1, + sym_trailing_return_type, + STATE(6812), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10786), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - ACTIONS(10869), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_try, - ACTIONS(10993), 1, + [281765] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8198), 1, + anon_sym_DASH_GT, + ACTIONS(8213), 1, + anon_sym_requires, + ACTIONS(9642), 1, + anon_sym_LBRACK, + STATE(6717), 1, + sym_trailing_return_type, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 9, anon_sym_COMMA, - ACTIONS(10995), 1, anon_sym_LPAREN2, - ACTIONS(10997), 1, anon_sym_SEMI, - ACTIONS(11001), 1, - anon_sym_LBRACK, - ACTIONS(11003), 1, - anon_sym_EQ, - ACTIONS(11093), 1, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - STATE(4388), 1, - sym_parameter_list, - STATE(7652), 1, - sym_function_declarator_seq, - STATE(8841), 1, - sym_gnu_asm_expression, - STATE(8939), 1, - aux_sym_declaration_declarator_repeat1, - ACTIONS(11005), 2, + anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - STATE(2029), 2, - sym_compound_statement, - sym_try_statement, - STATE(7677), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9357), 2, - sym_argument_list, - sym_initializer_list, - [320798] = 10, + anon_sym_try, + [281806] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10979), 1, - sym_identifier, - ACTIONS(10981), 1, + ACTIONS(8198), 1, + anon_sym_DASH_GT, + ACTIONS(8213), 1, + anon_sym_requires, + ACTIONS(9783), 1, + anon_sym_LBRACK, + STATE(6720), 1, + sym_trailing_return_type, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(10983), 1, - anon_sym_defined, - ACTIONS(10989), 1, - sym_number_literal, - STATE(7187), 1, - sym_preproc_expression, - ACTIONS(10985), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10987), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10991), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(7224), 6, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [320840] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(9496), 1, - anon_sym_STAR, - ACTIONS(11095), 1, - sym_identifier, - ACTIONS(11097), 1, - anon_sym_TILDE, - ACTIONS(11099), 1, - anon_sym_template, - ACTIONS(11101), 1, - anon_sym_operator, - STATE(4694), 1, - sym_qualified_type_identifier, - STATE(7117), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_decltype, - STATE(10238), 1, - sym_ms_based_modifier, - STATE(4693), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(3301), 6, - sym_pointer_type_declarator, - sym_template_function, - sym_destructor_name, - sym_dependent_identifier, - sym_qualified_identifier, - sym_operator_name, - [320892] = 3, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [281847] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(11073), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(11071), 15, + ACTIONS(8198), 1, + anon_sym_DASH_GT, + ACTIONS(8213), 1, + anon_sym_requires, + ACTIONS(10156), 1, + anon_sym_LBRACK, + STATE(6721), 1, + sym_trailing_return_type, + STATE(6835), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 9, 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, - [320920] = 10, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [281888] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8325), 1, + ACTIONS(8198), 1, anon_sym_DASH_GT, - ACTIONS(9902), 1, - anon_sym_LBRACK, - ACTIONS(9995), 1, + ACTIONS(8213), 1, anon_sym_requires, - STATE(7031), 1, + ACTIONS(10788), 1, + anon_sym_LBRACK, + STATE(6723), 1, sym_trailing_return_type, - STATE(7270), 1, - sym_requires_clause, - STATE(7298), 1, + STATE(6812), 1, sym_function_postfix, - ACTIONS(9992), 2, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(6369), 2, anon_sym_final, anon_sym_override, - STATE(7215), 2, + STATE(6761), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(9897), 10, + ACTIONS(10786), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_asm, anon_sym___asm__, anon_sym_try, - [320962] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(9528), 1, - anon_sym_STAR, - ACTIONS(11103), 1, - sym_identifier, - ACTIONS(11105), 1, - anon_sym_TILDE, - ACTIONS(11107), 1, - anon_sym_template, - ACTIONS(11109), 1, - anon_sym_operator, - STATE(2569), 1, - sym_qualified_type_identifier, - STATE(7120), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_decltype, - STATE(10196), 1, - sym_ms_based_modifier, - STATE(2500), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(3879), 6, - sym_pointer_type_declarator, - sym_template_function, - sym_destructor_name, - sym_dependent_identifier, - sym_qualified_identifier, - sym_operator_name, - [321014] = 10, + [281929] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10945), 1, - sym_identifier, - ACTIONS(10949), 1, + ACTIONS(8040), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9711), 1, + anon_sym_requires, + STATE(6734), 1, + sym_trailing_return_type, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + ACTIONS(9708), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(10951), 1, - anon_sym_defined, - ACTIONS(10957), 1, - sym_number_literal, - STATE(7214), 1, - sym_preproc_expression, - ACTIONS(10953), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10955), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10959), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(7106), 6, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [321056] = 10, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [281970] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10979), 1, - sym_identifier, - ACTIONS(10981), 1, + ACTIONS(8040), 1, + anon_sym_DASH_GT, + ACTIONS(9783), 1, + anon_sym_LBRACK, + ACTIONS(10008), 1, + anon_sym_requires, + STATE(6741), 1, + sym_trailing_return_type, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(10005), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(10983), 1, - anon_sym_defined, - ACTIONS(10989), 1, - sym_number_literal, - STATE(7233), 1, - sym_preproc_expression, - ACTIONS(10985), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10987), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10991), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(7224), 6, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [321098] = 10, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [282011] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10979), 1, - sym_identifier, - ACTIONS(10981), 1, + ACTIONS(8040), 1, + anon_sym_DASH_GT, + ACTIONS(10156), 1, + anon_sym_LBRACK, + ACTIONS(10182), 1, + anon_sym_requires, + STATE(6750), 1, + sym_trailing_return_type, + STATE(6835), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(10179), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(10983), 1, - anon_sym_defined, - ACTIONS(10989), 1, - sym_number_literal, - STATE(7196), 1, - sym_preproc_expression, - ACTIONS(10985), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10987), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10991), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(7224), 6, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [321140] = 10, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [282052] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7920), 1, + ACTIONS(8040), 1, anon_sym_DASH_GT, - ACTIONS(10897), 1, + ACTIONS(10788), 1, anon_sym_LBRACK, - ACTIONS(10974), 1, + ACTIONS(10793), 1, anon_sym_requires, - STATE(6948), 1, + STATE(6752), 1, sym_trailing_return_type, - STATE(7270), 1, - sym_requires_clause, - STATE(7324), 1, + STATE(6812), 1, sym_function_postfix, - ACTIONS(10971), 2, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(10790), 2, anon_sym_final, anon_sym_override, - STATE(7215), 2, + STATE(6761), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10895), 10, + ACTIONS(10786), 9, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_GT2, anon_sym_try, - [321182] = 10, + [282093] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10945), 1, - sym_identifier, - ACTIONS(10949), 1, + ACTIONS(8198), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9752), 1, + anon_sym_requires, + STATE(6769), 1, + sym_trailing_return_type, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + ACTIONS(9708), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(10951), 1, - anon_sym_defined, - ACTIONS(10957), 1, - sym_number_literal, - STATE(7109), 1, - sym_preproc_expression, - ACTIONS(10953), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10955), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10959), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(7106), 6, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [321224] = 10, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [282134] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10979), 1, - sym_identifier, - ACTIONS(10981), 1, + ACTIONS(8198), 1, + anon_sym_DASH_GT, + ACTIONS(9783), 1, + anon_sym_LBRACK, + ACTIONS(10048), 1, + anon_sym_requires, + STATE(6773), 1, + sym_trailing_return_type, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(10005), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(10983), 1, - anon_sym_defined, - ACTIONS(10989), 1, - sym_number_literal, - STATE(7225), 1, - sym_preproc_expression, - ACTIONS(10985), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10987), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10991), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(7224), 6, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [321266] = 10, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [282175] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10979), 1, - sym_identifier, - ACTIONS(10981), 1, + ACTIONS(8198), 1, + anon_sym_DASH_GT, + ACTIONS(10156), 1, + anon_sym_LBRACK, + ACTIONS(10193), 1, + anon_sym_requires, + STATE(6774), 1, + sym_trailing_return_type, + STATE(6835), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(10179), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(10983), 1, - anon_sym_defined, - ACTIONS(10989), 1, - sym_number_literal, - STATE(7219), 1, - sym_preproc_expression, - ACTIONS(10985), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10987), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10991), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(7224), 6, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [321308] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(9594), 1, - anon_sym_STAR, - ACTIONS(11111), 1, - sym_identifier, - ACTIONS(11113), 1, - anon_sym_template, - STATE(4694), 1, - sym_qualified_type_identifier, - STATE(7128), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_decltype, - STATE(10178), 1, - sym_ms_based_modifier, - STATE(4693), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(3197), 6, - sym_pointer_type_declarator, - sym_template_function, - sym_destructor_name, - sym_dependent_identifier, - sym_qualified_identifier, - sym_operator_name, - [321360] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(9528), 1, - anon_sym_STAR, - ACTIONS(11105), 1, - anon_sym_TILDE, - ACTIONS(11109), 1, - anon_sym_operator, - ACTIONS(11115), 1, - sym_identifier, - ACTIONS(11117), 1, - anon_sym_template, - STATE(4694), 1, - sym_qualified_type_identifier, - STATE(7129), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_decltype, - STATE(10196), 1, - sym_ms_based_modifier, - STATE(4693), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(3879), 6, - sym_pointer_type_declarator, - sym_template_function, - sym_destructor_name, - sym_dependent_identifier, - sym_qualified_identifier, - sym_operator_name, - [321412] = 10, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [282216] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8325), 1, + ACTIONS(8198), 1, anon_sym_DASH_GT, - ACTIONS(10106), 1, + ACTIONS(10788), 1, anon_sym_LBRACK, - ACTIONS(10123), 1, + ACTIONS(10796), 1, anon_sym_requires, - STATE(6953), 1, + STATE(6775), 1, sym_trailing_return_type, - STATE(7270), 1, - sym_requires_clause, - STATE(7338), 1, + STATE(6812), 1, sym_function_postfix, - ACTIONS(10120), 2, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(10790), 2, anon_sym_final, anon_sym_override, - STATE(7215), 2, + STATE(6761), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10101), 10, + ACTIONS(10786), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_asm, anon_sym___asm__, anon_sym_try, - [321454] = 10, + [282257] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10979), 1, - sym_identifier, - ACTIONS(10981), 1, + ACTIONS(10801), 1, + anon_sym_LBRACK, + ACTIONS(10803), 2, + anon_sym_final, + anon_sym_override, + STATE(6700), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10799), 14, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(10983), 1, - anon_sym_defined, - ACTIONS(10989), 1, - sym_number_literal, - STATE(7191), 1, - sym_preproc_expression, - ACTIONS(10985), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10987), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10991), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(7224), 6, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [321496] = 10, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [282288] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10979), 1, - sym_identifier, - ACTIONS(10981), 1, + ACTIONS(6753), 1, + anon_sym_LBRACK, + ACTIONS(10806), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6755), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(10983), 1, - anon_sym_defined, - ACTIONS(10989), 1, - sym_number_literal, - STATE(7188), 1, - sym_preproc_expression, - ACTIONS(10985), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10987), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10991), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(7224), 6, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [321538] = 3, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_or, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [282317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11121), 1, + ACTIONS(2355), 1, anon_sym_LBRACK, - ACTIONS(11119), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(2353), 18, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + 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_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [282344] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10704), 1, + anon_sym_LBRACK, + STATE(6245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10702), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_asm, anon_sym___asm__, anon_sym_DASH_GT, @@ -592811,269 +558050,542 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - sym_semgrep_metavar, - [321566] = 15, + [282375] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, + ACTIONS(2257), 1, + anon_sym_operator, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(9569), 1, + ACTIONS(9209), 1, anon_sym_STAR, - ACTIONS(11049), 1, - anon_sym_TILDE, - ACTIONS(11053), 1, - anon_sym_operator, - ACTIONS(11123), 1, + ACTIONS(10808), 1, sym_identifier, - ACTIONS(11125), 1, + ACTIONS(10810), 1, anon_sym_template, - STATE(3210), 1, - sym_qualified_type_identifier, - STATE(7134), 1, + STATE(6704), 1, sym_scope_resolution, - STATE(9982), 1, - sym_decltype, - STATE(10608), 1, + STATE(9315), 1, sym_ms_based_modifier, - STATE(2967), 2, + STATE(9605), 3, + sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(4354), 6, + STATE(7299), 6, sym_pointer_type_declarator, sym_template_function, sym_destructor_name, sym_dependent_identifier, sym_qualified_identifier, sym_operator_name, - [321618] = 3, + [282422] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11129), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(11127), 15, + ACTIONS(6677), 1, + anon_sym_LBRACK, + ACTIONS(10806), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(10812), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6679), 14, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [282453] = 3, + ACTIONS(10412), 1, + anon_sym_LF, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(10416), 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, - [321646] = 3, + [282480] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11133), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(11131), 15, + ACTIONS(8042), 1, + anon_sym_requires, + ACTIONS(10156), 1, + anon_sym_LBRACK, + STATE(6835), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 11, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [282517] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(9644), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(9646), 1, 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, - [321674] = 12, - ACTIONS(3), 1, + ACTIONS(9648), 1, + anon_sym_AMP, + STATE(4408), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7504), 1, + sym_abstract_declarator, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8561), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [282560] = 12, + ACTIONS(10479), 1, sym_comment, - ACTIONS(10907), 1, - anon_sym_SLASH, - ACTIONS(10913), 1, + ACTIONS(10764), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10766), 1, + anon_sym_AMP_AMP, + ACTIONS(10768), 1, anon_sym_PIPE, - ACTIONS(10915), 1, + ACTIONS(10770), 1, anon_sym_CARET, - ACTIONS(10917), 1, + ACTIONS(10772), 1, anon_sym_AMP, - ACTIONS(10903), 2, + ACTIONS(10814), 1, + anon_sym_LF, + ACTIONS(10760), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10905), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10919), 2, + ACTIONS(10774), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10921), 2, + ACTIONS(10778), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10762), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10776), 4, anon_sym_GT, - anon_sym_LT, - ACTIONS(10923), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(10925), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11071), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [321720] = 15, + anon_sym_LT, + [282605] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, + ACTIONS(2257), 1, + anon_sym_operator, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(9518), 1, + ACTIONS(9197), 1, anon_sym_STAR, - ACTIONS(11135), 1, + ACTIONS(10816), 1, sym_identifier, - ACTIONS(11137), 1, - anon_sym_TILDE, - ACTIONS(11139), 1, + ACTIONS(10818), 1, anon_sym_template, - ACTIONS(11141), 1, - anon_sym_operator, - STATE(4694), 1, - sym_qualified_type_identifier, - STATE(7138), 1, + STATE(6710), 1, sym_scope_resolution, - STATE(9982), 1, - sym_decltype, - STATE(10195), 1, + STATE(9517), 1, sym_ms_based_modifier, - STATE(4693), 2, + STATE(9605), 3, + sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(3691), 6, + STATE(3095), 6, sym_pointer_type_declarator, sym_template_function, sym_destructor_name, sym_dependent_identifier, sym_qualified_identifier, sym_operator_name, - [321772] = 10, + [282652] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10507), 1, + anon_sym_SLASH, + ACTIONS(10509), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10511), 1, + anon_sym_AMP_AMP, + ACTIONS(10513), 1, + anon_sym_PIPE, + ACTIONS(10515), 1, + anon_sym_CARET, + ACTIONS(10517), 1, + anon_sym_AMP, + ACTIONS(10820), 1, + anon_sym_RPAREN, + ACTIONS(10503), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10505), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10519), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10521), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10523), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10525), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [282701] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7920), 1, + ACTIONS(8042), 1, + anon_sym_requires, + ACTIONS(8224), 1, anon_sym_DASH_GT, - ACTIONS(10106), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10123), 1, - anon_sym_requires, - STATE(6953), 1, + STATE(6760), 1, sym_trailing_return_type, - STATE(7270), 1, + STATE(6852), 1, sym_requires_clause, - STATE(7338), 1, + STATE(6904), 1, sym_function_postfix, - ACTIONS(10120), 2, + ACTIONS(6369), 2, anon_sym_final, anon_sym_override, - STATE(7215), 2, + STATE(6761), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10101), 10, + ACTIONS(9640), 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_GT2, - anon_sym_try, - [321814] = 3, + anon_sym_asm, + anon_sym___asm__, + [282742] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7305), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7307), 15, + ACTIONS(8213), 1, + anon_sym_requires, + ACTIONS(9642), 1, + anon_sym_LBRACK, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 11, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [282779] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(4043), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8653), 1, + anon_sym_LPAREN2, + ACTIONS(8673), 1, + sym_identifier, + ACTIONS(8675), 1, anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(8677), 1, + anon_sym_AMP_AMP, + ACTIONS(8679), 1, + anon_sym_AMP, + STATE(7580), 1, + sym_field_declarator, + STATE(9923), 1, + sym_ms_based_modifier, + STATE(7742), 2, + sym_operator_name, + sym_semgrep_ellipsis, + STATE(7399), 7, + 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, + [282826] = 12, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(10764), 1, anon_sym_PIPE_PIPE, + ACTIONS(10766), 1, anon_sym_AMP_AMP, + ACTIONS(10768), 1, + anon_sym_PIPE, + ACTIONS(10770), 1, anon_sym_CARET, + ACTIONS(10772), 1, + anon_sym_AMP, + ACTIONS(10822), 1, + anon_sym_LF, + ACTIONS(10760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10774), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(10778), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [321842] = 3, + ACTIONS(10762), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10776), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [282871] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8042), 1, + anon_sym_requires, + ACTIONS(8224), 1, + anon_sym_DASH_GT, + ACTIONS(9783), 1, + anon_sym_LBRACK, + STATE(6707), 1, + sym_trailing_return_type, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [282912] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11145), 1, + ACTIONS(8213), 1, + anon_sym_requires, + ACTIONS(9783), 1, anon_sym_LBRACK, - ACTIONS(11143), 19, - anon_sym_DOT_DOT_DOT, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 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_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [282949] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5607), 1, + anon_sym_LBRACK, + ACTIONS(5609), 18, + anon_sym_COMMA, + anon_sym_LPAREN2, + 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_COLON, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - sym_semgrep_metavar, - [321870] = 10, + [282976] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7920), 1, + ACTIONS(8042), 1, + anon_sym_requires, + ACTIONS(8224), 1, anon_sym_DASH_GT, - ACTIONS(7926), 1, + ACTIONS(10156), 1, + anon_sym_LBRACK, + STATE(6739), 1, + sym_trailing_return_type, + STATE(6835), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [283017] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8213), 1, + anon_sym_requires, + ACTIONS(10156), 1, + anon_sym_LBRACK, + STATE(6835), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 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_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [283054] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8213), 1, anon_sym_requires, - ACTIONS(10106), 1, + ACTIONS(10788), 1, anon_sym_LBRACK, - STATE(7033), 1, - sym_trailing_return_type, - STATE(7270), 1, - sym_requires_clause, - STATE(7338), 1, + STATE(6812), 1, sym_function_postfix, - ACTIONS(6118), 2, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(6369), 2, anon_sym_final, anon_sym_override, - STATE(7215), 2, + STATE(6761), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10101), 10, + ACTIONS(10786), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -593081,365 +558593,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [321912] = 10, + [283091] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7920), 1, - anon_sym_DASH_GT, - ACTIONS(7926), 1, + ACTIONS(8042), 1, anon_sym_requires, - ACTIONS(9902), 1, + ACTIONS(8224), 1, + anon_sym_DASH_GT, + ACTIONS(10788), 1, anon_sym_LBRACK, - STATE(6966), 1, + STATE(6686), 1, sym_trailing_return_type, - STATE(7270), 1, - sym_requires_clause, - STATE(7298), 1, + STATE(6812), 1, sym_function_postfix, - ACTIONS(6118), 2, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(6369), 2, anon_sym_final, anon_sym_override, - STATE(7215), 2, + STATE(6761), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(9897), 10, + ACTIONS(10786), 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_GT2, - anon_sym_try, - [321954] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2181), 1, - anon_sym_LBRACE, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10993), 1, - anon_sym_COMMA, - ACTIONS(10995), 1, - anon_sym_LPAREN2, - ACTIONS(10997), 1, - anon_sym_SEMI, - ACTIONS(11001), 1, - anon_sym_LBRACK, - ACTIONS(11003), 1, - anon_sym_EQ, - ACTIONS(11147), 1, - anon_sym_try, - STATE(4388), 1, - sym_parameter_list, - STATE(7652), 1, - sym_function_declarator_seq, - STATE(8841), 1, - sym_gnu_asm_expression, - STATE(8939), 1, - aux_sym_declaration_declarator_repeat1, - ACTIONS(11005), 2, anon_sym_asm, anon_sym___asm__, - STATE(834), 2, - sym_compound_statement, - sym_try_statement, - STATE(7677), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9357), 2, - sym_argument_list, - sym_initializer_list, - [322010] = 10, + [283132] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7926), 1, + ACTIONS(8213), 1, anon_sym_requires, - ACTIONS(8325), 1, - anon_sym_DASH_GT, - ACTIONS(9902), 1, + ACTIONS(10784), 1, anon_sym_LBRACK, - STATE(6966), 1, - sym_trailing_return_type, - STATE(7270), 1, - sym_requires_clause, - STATE(7298), 1, + STATE(6815), 1, sym_function_postfix, - ACTIONS(6118), 2, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(6369), 2, anon_sym_final, anon_sym_override, - STATE(7215), 2, + STATE(6761), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(9897), 10, + ACTIONS(10782), 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_asm, anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - [322052] = 17, + [283169] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10993), 1, - anon_sym_COMMA, - ACTIONS(10995), 1, - anon_sym_LPAREN2, - ACTIONS(10997), 1, - anon_sym_SEMI, - ACTIONS(11001), 1, + ACTIONS(6753), 1, anon_sym_LBRACK, - ACTIONS(11003), 1, - anon_sym_EQ, - ACTIONS(11149), 1, - anon_sym_LBRACE, - ACTIONS(11151), 1, - anon_sym_try, - STATE(4388), 1, - sym_parameter_list, - STATE(7652), 1, - sym_function_declarator_seq, - STATE(8841), 1, - sym_gnu_asm_expression, - STATE(8939), 1, - aux_sym_declaration_declarator_repeat1, - ACTIONS(11005), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(769), 2, - sym_compound_statement, - sym_try_statement, - STATE(7677), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9357), 2, - sym_argument_list, - sym_initializer_list, - [322108] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10979), 1, - sym_identifier, - ACTIONS(10981), 1, - anon_sym_LPAREN2, - ACTIONS(10983), 1, - anon_sym_defined, - ACTIONS(10989), 1, - sym_number_literal, - STATE(7197), 1, - sym_preproc_expression, - ACTIONS(10985), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10987), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10991), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(7224), 6, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [322150] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10993), 1, + ACTIONS(10824), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6755), 16, anon_sym_COMMA, - ACTIONS(10995), 1, anon_sym_LPAREN2, - ACTIONS(10997), 1, + anon_sym_PIPE_PIPE, anon_sym_SEMI, - ACTIONS(11001), 1, - anon_sym_LBRACK, - ACTIONS(11003), 1, - anon_sym_EQ, - ACTIONS(11153), 1, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(11155), 1, - anon_sym_try, - STATE(4388), 1, - sym_parameter_list, - STATE(7652), 1, - sym_function_declarator_seq, - STATE(8841), 1, - sym_gnu_asm_expression, - STATE(8939), 1, - aux_sym_declaration_declarator_repeat1, - ACTIONS(11005), 2, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, anon_sym_asm, anon_sym___asm__, - STATE(359), 2, - sym_compound_statement, - sym_try_statement, - STATE(7677), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9357), 2, - sym_argument_list, - sym_initializer_list, - [322206] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [283198] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11159), 1, + ACTIONS(5611), 1, anon_sym_LBRACK, - ACTIONS(11157), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(5613), 18, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + 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_COLON, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - sym_semgrep_metavar, - [322234] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10979), 1, - sym_identifier, - ACTIONS(10981), 1, - anon_sym_LPAREN2, - ACTIONS(10983), 1, - anon_sym_defined, - ACTIONS(10989), 1, - sym_number_literal, - STATE(7222), 1, - sym_preproc_expression, - ACTIONS(10985), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10987), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10991), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(7224), 6, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [322276] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10979), 1, - sym_identifier, - ACTIONS(10981), 1, - anon_sym_LPAREN2, - ACTIONS(10983), 1, - anon_sym_defined, - ACTIONS(10989), 1, - sym_number_literal, - STATE(7189), 1, - sym_preproc_expression, - ACTIONS(10985), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10987), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10991), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(7224), 6, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [322318] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10979), 1, - sym_identifier, - ACTIONS(10981), 1, - anon_sym_LPAREN2, - ACTIONS(10983), 1, - anon_sym_defined, - ACTIONS(10989), 1, - sym_number_literal, - STATE(7217), 1, - sym_preproc_expression, - ACTIONS(10985), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10987), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10991), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(7224), 6, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [322360] = 10, + [283225] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8325), 1, + ACTIONS(8224), 1, anon_sym_DASH_GT, - ACTIONS(10469), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10536), 1, + ACTIONS(9711), 1, anon_sym_requires, - STATE(7043), 1, + STATE(6734), 1, sym_trailing_return_type, - STATE(7270), 1, + STATE(6852), 1, sym_requires_clause, - STATE(7333), 1, + STATE(6904), 1, sym_function_postfix, - ACTIONS(10533), 2, + ACTIONS(9708), 2, anon_sym_final, anon_sym_override, - STATE(7215), 2, + STATE(6761), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10464), 10, + ACTIONS(9640), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -593449,181 +558737,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_try, - [322402] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10979), 1, - sym_identifier, - ACTIONS(10981), 1, - anon_sym_LPAREN2, - ACTIONS(10983), 1, - anon_sym_defined, - ACTIONS(10989), 1, - sym_number_literal, - STATE(7184), 1, - sym_preproc_expression, - ACTIONS(10985), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10987), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10991), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(7224), 6, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [322444] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10907), 1, - anon_sym_SLASH, - ACTIONS(10903), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10905), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10921), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10923), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10925), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11073), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(11071), 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, - [322484] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10945), 1, - sym_identifier, - ACTIONS(10949), 1, - anon_sym_LPAREN2, - ACTIONS(10951), 1, - anon_sym_defined, - ACTIONS(10957), 1, - sym_number_literal, - STATE(7118), 1, - sym_preproc_expression, - ACTIONS(10953), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10955), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10959), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(7106), 6, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [322526] = 10, + [283266] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7920), 1, + ACTIONS(8224), 1, anon_sym_DASH_GT, - ACTIONS(9902), 1, + ACTIONS(9783), 1, anon_sym_LBRACK, - ACTIONS(9995), 1, + ACTIONS(10008), 1, anon_sym_requires, - STATE(7031), 1, + STATE(6741), 1, sym_trailing_return_type, - STATE(7270), 1, - sym_requires_clause, - STATE(7298), 1, + STATE(6814), 1, sym_function_postfix, - ACTIONS(9992), 2, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(10005), 2, anon_sym_final, anon_sym_override, - STATE(7215), 2, + STATE(6761), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(9897), 10, + ACTIONS(9781), 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_GT2, - anon_sym_try, - [322568] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11163), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(11161), 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, - [322596] = 10, + anon_sym_asm, + anon_sym___asm__, + [283307] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8325), 1, + ACTIONS(8224), 1, anon_sym_DASH_GT, - ACTIONS(10897), 1, + ACTIONS(10156), 1, anon_sym_LBRACK, - ACTIONS(10974), 1, + ACTIONS(10182), 1, anon_sym_requires, - STATE(6948), 1, + STATE(6750), 1, sym_trailing_return_type, - STATE(7270), 1, - sym_requires_clause, - STATE(7324), 1, + STATE(6835), 1, sym_function_postfix, - ACTIONS(10971), 2, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(10179), 2, anon_sym_final, anon_sym_override, - STATE(7215), 2, + STATE(6761), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10895), 10, + ACTIONS(10154), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -593633,268 +558799,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_try, - [322638] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(9512), 1, - anon_sym_STAR, - ACTIONS(10782), 1, - anon_sym_TILDE, - ACTIONS(11165), 1, - sym_identifier, - ACTIONS(11167), 1, - anon_sym_template, - ACTIONS(11169), 1, - anon_sym_operator, - STATE(4694), 1, - sym_qualified_type_identifier, - STATE(7160), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_decltype, - STATE(10464), 1, - sym_ms_based_modifier, - STATE(4693), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(3197), 6, - sym_pointer_type_declarator, - sym_template_function, - sym_destructor_name, - sym_dependent_identifier, - sym_qualified_identifier, - sym_operator_name, - [322690] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10945), 1, - sym_identifier, - ACTIONS(10949), 1, - anon_sym_LPAREN2, - ACTIONS(10951), 1, - anon_sym_defined, - ACTIONS(10957), 1, - sym_number_literal, - STATE(7178), 1, - sym_preproc_expression, - ACTIONS(10953), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10955), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10959), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(7106), 6, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [322732] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(9528), 1, - anon_sym_STAR, - ACTIONS(11171), 1, - sym_identifier, - ACTIONS(11173), 1, - anon_sym_TILDE, - ACTIONS(11175), 1, - anon_sym_template, - ACTIONS(11177), 1, - anon_sym_operator, - STATE(4694), 1, - sym_qualified_type_identifier, - STATE(7162), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_decltype, - STATE(10196), 1, - sym_ms_based_modifier, - STATE(4693), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(4047), 6, - sym_pointer_type_declarator, - sym_template_function, - sym_destructor_name, - sym_dependent_identifier, - sym_qualified_identifier, - sym_operator_name, - [322784] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10979), 1, - sym_identifier, - ACTIONS(10981), 1, - anon_sym_LPAREN2, - ACTIONS(10983), 1, - anon_sym_defined, - ACTIONS(10989), 1, - sym_number_literal, - STATE(7237), 1, - sym_preproc_expression, - ACTIONS(10985), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10987), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10991), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(7224), 6, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [322826] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10979), 1, - sym_identifier, - ACTIONS(10981), 1, - anon_sym_LPAREN2, - ACTIONS(10983), 1, - anon_sym_defined, - ACTIONS(10989), 1, - sym_number_literal, - STATE(7221), 1, - sym_preproc_expression, - ACTIONS(10985), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10987), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10991), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(7224), 6, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [322868] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(9528), 1, - anon_sym_STAR, - ACTIONS(11173), 1, - anon_sym_TILDE, - ACTIONS(11177), 1, - anon_sym_operator, - ACTIONS(11179), 1, - sym_identifier, - ACTIONS(11181), 1, - anon_sym_template, - STATE(2569), 1, - sym_qualified_type_identifier, - STATE(7165), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_decltype, - STATE(10196), 1, - sym_ms_based_modifier, - STATE(2500), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(4047), 6, - sym_pointer_type_declarator, - sym_template_function, - sym_destructor_name, - sym_dependent_identifier, - sym_qualified_identifier, - sym_operator_name, - [322920] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10945), 1, - sym_identifier, - ACTIONS(10949), 1, - anon_sym_LPAREN2, - ACTIONS(10951), 1, - anon_sym_defined, - ACTIONS(10957), 1, - sym_number_literal, - STATE(7137), 1, - sym_preproc_expression, - ACTIONS(10953), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10955), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10959), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(7106), 6, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [322962] = 10, + [283348] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7926), 1, - anon_sym_requires, - ACTIONS(8325), 1, + ACTIONS(8224), 1, anon_sym_DASH_GT, - ACTIONS(10897), 1, + ACTIONS(10788), 1, anon_sym_LBRACK, - STATE(6964), 1, + ACTIONS(10793), 1, + anon_sym_requires, + STATE(6752), 1, sym_trailing_return_type, - STATE(7270), 1, - sym_requires_clause, - STATE(7324), 1, + STATE(6812), 1, sym_function_postfix, - ACTIONS(6118), 2, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(10790), 2, anon_sym_final, anon_sym_override, - STATE(7215), 2, + STATE(6761), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10895), 10, + ACTIONS(10786), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -593904,499 +558830,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_try, - [323004] = 12, - ACTIONS(3), 1, + [283389] = 12, + ACTIONS(10479), 1, sym_comment, - ACTIONS(10907), 1, - anon_sym_SLASH, - ACTIONS(10915), 1, - anon_sym_CARET, - ACTIONS(10917), 1, - anon_sym_AMP, - ACTIONS(11073), 1, - anon_sym_PIPE, - ACTIONS(10903), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10905), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10919), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10921), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10923), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10925), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11071), 4, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10764), 1, anon_sym_PIPE_PIPE, + ACTIONS(10766), 1, anon_sym_AMP_AMP, - [323050] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(9512), 1, - anon_sym_STAR, - ACTIONS(11015), 1, - anon_sym_TILDE, - ACTIONS(11019), 1, - anon_sym_operator, - ACTIONS(11183), 1, - sym_identifier, - ACTIONS(11185), 1, - anon_sym_template, - STATE(4694), 1, - sym_qualified_type_identifier, - STATE(7169), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_decltype, - STATE(10464), 1, - sym_ms_based_modifier, - STATE(4693), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(3243), 6, - sym_pointer_type_declarator, - sym_template_function, - sym_destructor_name, - sym_dependent_identifier, - sym_qualified_identifier, - sym_operator_name, - [323102] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10979), 1, - sym_identifier, - ACTIONS(10981), 1, - anon_sym_LPAREN2, - ACTIONS(10983), 1, - anon_sym_defined, - ACTIONS(10989), 1, - sym_number_literal, - STATE(7208), 1, - sym_preproc_expression, - ACTIONS(10985), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10987), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10991), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(7224), 6, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [323144] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10907), 1, - anon_sym_SLASH, - ACTIONS(10917), 1, - anon_sym_AMP, - ACTIONS(11073), 1, + ACTIONS(10768), 1, anon_sym_PIPE, - ACTIONS(10903), 2, + ACTIONS(10770), 1, + anon_sym_CARET, + ACTIONS(10772), 1, + anon_sym_AMP, + ACTIONS(10826), 1, + anon_sym_LF, + ACTIONS(10760), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10905), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10919), 2, + ACTIONS(10774), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10921), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10923), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10925), 2, + ACTIONS(10778), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11071), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [323188] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(9528), 1, + ACTIONS(10762), 3, anon_sym_STAR, - ACTIONS(11173), 1, - anon_sym_TILDE, - ACTIONS(11177), 1, - anon_sym_operator, - ACTIONS(11187), 1, - sym_identifier, - ACTIONS(11189), 1, - anon_sym_template, - STATE(4694), 1, - sym_qualified_type_identifier, - STATE(7172), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_decltype, - STATE(10196), 1, - sym_ms_based_modifier, - STATE(4693), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(4047), 6, - sym_pointer_type_declarator, - sym_template_function, - sym_destructor_name, - sym_dependent_identifier, - sym_qualified_identifier, - sym_operator_name, - [323240] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7920), 1, - anon_sym_DASH_GT, - ACTIONS(7926), 1, - anon_sym_requires, - ACTIONS(10469), 1, - anon_sym_LBRACK, - STATE(6933), 1, - sym_trailing_return_type, - STATE(7270), 1, - sym_requires_clause, - STATE(7333), 1, - sym_function_postfix, - ACTIONS(6118), 2, - anon_sym_final, - anon_sym_override, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10464), 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, - [323282] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10907), 1, anon_sym_SLASH, - ACTIONS(10903), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10905), 2, - anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(10925), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11073), 4, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(10776), 4, anon_sym_GT, - anon_sym_LT, - ACTIONS(11071), 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, - [323318] = 14, - ACTIONS(3), 1, + anon_sym_LT, + [283434] = 12, + ACTIONS(10479), 1, sym_comment, - ACTIONS(10907), 1, - anon_sym_SLASH, - ACTIONS(10909), 1, + ACTIONS(10764), 1, anon_sym_PIPE_PIPE, - ACTIONS(10911), 1, + ACTIONS(10766), 1, anon_sym_AMP_AMP, - ACTIONS(10913), 1, + ACTIONS(10768), 1, anon_sym_PIPE, - ACTIONS(10915), 1, + ACTIONS(10770), 1, anon_sym_CARET, - ACTIONS(10917), 1, + ACTIONS(10772), 1, anon_sym_AMP, - ACTIONS(10903), 2, + ACTIONS(10828), 1, + anon_sym_LF, + ACTIONS(10760), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10905), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10919), 2, + ACTIONS(10774), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10921), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10923), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10925), 2, + ACTIONS(10778), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11191), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [323368] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10907), 1, - anon_sym_SLASH, - ACTIONS(10903), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10905), 2, + ACTIONS(10762), 3, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11073), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(11071), 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, - [323402] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10945), 1, - sym_identifier, - ACTIONS(10949), 1, - anon_sym_LPAREN2, - ACTIONS(10951), 1, - anon_sym_defined, - ACTIONS(10957), 1, - sym_number_literal, - STATE(7168), 1, - sym_preproc_expression, - ACTIONS(10953), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10955), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10959), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(7106), 6, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [323444] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10907), 1, anon_sym_SLASH, - ACTIONS(10911), 1, - anon_sym_AMP_AMP, - ACTIONS(10913), 1, - anon_sym_PIPE, - ACTIONS(10915), 1, - anon_sym_CARET, - ACTIONS(10917), 1, - anon_sym_AMP, - ACTIONS(10903), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10905), 2, - anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(10919), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10921), 2, + ACTIONS(10776), 4, anon_sym_GT, - anon_sym_LT, - ACTIONS(10923), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(10925), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11071), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - [323492] = 4, - ACTIONS(10969), 1, + anon_sym_LT, + [283479] = 8, + ACTIONS(10479), 1, sym_comment, - ACTIONS(11071), 1, + ACTIONS(10549), 1, anon_sym_LF, - ACTIONS(11193), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11073), 15, + ACTIONS(10760), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10774), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(10778), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [323521] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(9602), 1, - anon_sym_STAR, - ACTIONS(10941), 1, - sym_identifier, - ACTIONS(10943), 1, - anon_sym_template, - STATE(7180), 1, - sym_scope_resolution, - STATE(10254), 1, - sym_ms_based_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(3197), 6, - sym_pointer_type_declarator, - sym_template_function, - sym_destructor_name, - sym_dependent_identifier, - sym_qualified_identifier, - sym_operator_name, - [323568] = 3, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(11063), 1, - anon_sym_LF, - ACTIONS(11065), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(10762), 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(10776), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [323595] = 12, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(11195), 1, - anon_sym_LF, - ACTIONS(11199), 1, + ACTIONS(10551), 5, anon_sym_PIPE_PIPE, - ACTIONS(11201), 1, anon_sym_AMP_AMP, - ACTIONS(11203), 1, anon_sym_PIPE, - ACTIONS(11205), 1, anon_sym_CARET, - ACTIONS(11207), 1, anon_sym_AMP, - ACTIONS(11197), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11209), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(11213), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11193), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11211), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [323640] = 3, - ACTIONS(10969), 1, + [283516] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(11131), 1, + ACTIONS(10549), 1, anon_sym_LF, - ACTIONS(11133), 18, + ACTIONS(10760), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10762), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(10551), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -594410,76 +558951,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [323667] = 12, - ACTIONS(10969), 1, + [283547] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9783), 1, + anon_sym_LBRACK, + ACTIONS(10008), 1, + anon_sym_requires, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(10005), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 11, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [283584] = 12, + ACTIONS(10479), 1, sym_comment, - ACTIONS(11199), 1, + ACTIONS(10764), 1, anon_sym_PIPE_PIPE, - ACTIONS(11201), 1, + ACTIONS(10766), 1, anon_sym_AMP_AMP, - ACTIONS(11203), 1, + ACTIONS(10768), 1, anon_sym_PIPE, - ACTIONS(11205), 1, + ACTIONS(10770), 1, anon_sym_CARET, - ACTIONS(11207), 1, + ACTIONS(10772), 1, anon_sym_AMP, - ACTIONS(11215), 1, + ACTIONS(10830), 1, anon_sym_LF, - ACTIONS(11197), 2, + ACTIONS(10760), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11209), 2, + ACTIONS(10774), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(11213), 2, + ACTIONS(10778), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11193), 3, + ACTIONS(10762), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11211), 4, + ACTIONS(10776), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [323712] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7926), 1, - anon_sym_requires, - ACTIONS(8334), 1, - anon_sym_DASH_GT, - ACTIONS(10897), 1, - anon_sym_LBRACK, - STATE(6964), 1, - sym_trailing_return_type, - STATE(7270), 1, - sym_requires_clause, - STATE(7324), 1, - sym_function_postfix, - ACTIONS(6118), 2, - anon_sym_final, - anon_sym_override, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10895), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [323753] = 3, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(11161), 1, + [283629] = 3, + ACTIONS(7199), 1, anon_sym_LF, - ACTIONS(11163), 18, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(7197), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -594498,125 +559037,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [323780] = 12, - ACTIONS(10969), 1, + [283656] = 3, + ACTIONS(10479), 1, sym_comment, - ACTIONS(11199), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11201), 1, - anon_sym_AMP_AMP, - ACTIONS(11203), 1, - anon_sym_PIPE, - ACTIONS(11205), 1, - anon_sym_CARET, - ACTIONS(11207), 1, - anon_sym_AMP, - ACTIONS(11217), 1, + ACTIONS(10716), 1, anon_sym_LF, - ACTIONS(11197), 2, + ACTIONS(10718), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11209), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(11213), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11193), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11211), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [323825] = 12, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(11199), 1, anon_sym_PIPE_PIPE, - ACTIONS(11201), 1, anon_sym_AMP_AMP, - ACTIONS(11203), 1, anon_sym_PIPE, - ACTIONS(11205), 1, anon_sym_CARET, - ACTIONS(11207), 1, anon_sym_AMP, - ACTIONS(11219), 1, - anon_sym_LF, - ACTIONS(11197), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(11213), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11193), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11211), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [323870] = 10, - ACTIONS(10969), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [283683] = 12, + ACTIONS(10479), 1, sym_comment, - ACTIONS(11071), 1, - anon_sym_LF, - ACTIONS(11205), 1, + ACTIONS(10764), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10766), 1, + anon_sym_AMP_AMP, + ACTIONS(10768), 1, + anon_sym_PIPE, + ACTIONS(10770), 1, anon_sym_CARET, - ACTIONS(11207), 1, + ACTIONS(10772), 1, anon_sym_AMP, - ACTIONS(11197), 2, + ACTIONS(10832), 1, + anon_sym_LF, + ACTIONS(10760), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11209), 2, + ACTIONS(10774), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(11213), 2, + ACTIONS(10778), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11073), 3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - ACTIONS(11193), 3, + ACTIONS(10762), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11211), 4, + ACTIONS(10776), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [323911] = 10, + [283728] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7926), 1, + ACTIONS(8042), 1, anon_sym_requires, - ACTIONS(8334), 1, - anon_sym_DASH_GT, - ACTIONS(9902), 1, + ACTIONS(10788), 1, anon_sym_LBRACK, - STATE(6966), 1, - sym_trailing_return_type, - STATE(7270), 1, - sym_requires_clause, - STATE(7298), 1, + STATE(6812), 1, sym_function_postfix, - ACTIONS(6118), 2, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(6369), 2, anon_sym_final, anon_sym_override, - STATE(7215), 2, + STATE(6761), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(9897), 9, + ACTIONS(10786), 11, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -594625,144 +559120,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_try, - [323952] = 12, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(11199), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11201), 1, - anon_sym_AMP_AMP, - ACTIONS(11203), 1, - anon_sym_PIPE, - ACTIONS(11205), 1, - anon_sym_CARET, - ACTIONS(11207), 1, - anon_sym_AMP, - ACTIONS(11221), 1, - anon_sym_LF, - ACTIONS(11197), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11209), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(11213), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11193), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11211), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [323997] = 5, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(11071), 1, - anon_sym_LF, - ACTIONS(11197), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11193), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11073), 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, - [324028] = 13, + [283765] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(2259), 1, + ACTIONS(2257), 1, anon_sym_operator, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3706), 1, + ACTIONS(3253), 1, anon_sym_TILDE, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(9594), 1, + ACTIONS(9189), 1, anon_sym_STAR, - ACTIONS(11223), 1, + ACTIONS(10808), 1, sym_identifier, - ACTIONS(11225), 1, + ACTIONS(10810), 1, anon_sym_template, - STATE(7193), 1, + STATE(6740), 1, sym_scope_resolution, - STATE(10178), 1, + STATE(9630), 1, sym_ms_based_modifier, - STATE(9982), 3, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(3197), 6, + STATE(7299), 6, sym_pointer_type_declarator, sym_template_function, sym_destructor_name, sym_dependent_identifier, sym_qualified_identifier, sym_operator_name, - [324075] = 12, - ACTIONS(10969), 1, + [283812] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10156), 1, + anon_sym_LBRACK, + ACTIONS(10182), 1, + anon_sym_requires, + STATE(6835), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(10179), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 11, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [283849] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(11199), 1, + ACTIONS(5633), 1, + anon_sym_LBRACK, + ACTIONS(5635), 18, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - ACTIONS(11201), 1, anon_sym_AMP_AMP, - ACTIONS(11203), 1, - anon_sym_PIPE, - ACTIONS(11205), 1, - anon_sym_CARET, - ACTIONS(11207), 1, - anon_sym_AMP, - ACTIONS(11227), 1, - anon_sym_LF, - ACTIONS(11197), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11209), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(11213), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11193), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11211), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [324120] = 3, - ACTIONS(10969), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [283876] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5625), 1, + anon_sym_LBRACK, + ACTIONS(5627), 18, + anon_sym_COMMA, + anon_sym_LPAREN2, + 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_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [283903] = 4, + ACTIONS(10479), 1, sym_comment, - ACTIONS(11029), 1, + ACTIONS(10549), 1, anon_sym_LF, - ACTIONS(11031), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(10762), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(10551), 15, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -594776,86 +559259,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [324147] = 12, - ACTIONS(10969), 1, + [283932] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(11199), 1, + ACTIONS(5629), 1, + anon_sym_LBRACK, + ACTIONS(5631), 18, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - ACTIONS(11201), 1, anon_sym_AMP_AMP, - ACTIONS(11203), 1, - anon_sym_PIPE, - ACTIONS(11205), 1, - anon_sym_CARET, - ACTIONS(11207), 1, - anon_sym_AMP, - ACTIONS(11229), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [283959] = 7, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(10549), 1, anon_sym_LF, - ACTIONS(11197), 2, + ACTIONS(10760), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11209), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(11213), 2, + ACTIONS(10778), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11193), 3, + ACTIONS(10762), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11211), 4, + ACTIONS(10776), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [324192] = 12, - ACTIONS(10969), 1, + ACTIONS(10551), 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, + [283994] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(9225), 1, + anon_sym_STAR, + ACTIONS(10529), 1, + sym_identifier, + ACTIONS(10531), 1, + anon_sym_template, + STATE(6747), 1, + sym_scope_resolution, + STATE(9695), 1, + sym_ms_based_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(3095), 6, + sym_pointer_type_declarator, + sym_template_function, + sym_destructor_name, + sym_dependent_identifier, + sym_qualified_identifier, + sym_operator_name, + [284041] = 12, + ACTIONS(10479), 1, sym_comment, - ACTIONS(11199), 1, + ACTIONS(10764), 1, anon_sym_PIPE_PIPE, - ACTIONS(11201), 1, + ACTIONS(10766), 1, anon_sym_AMP_AMP, - ACTIONS(11203), 1, + ACTIONS(10768), 1, anon_sym_PIPE, - ACTIONS(11205), 1, + ACTIONS(10770), 1, anon_sym_CARET, - ACTIONS(11207), 1, + ACTIONS(10772), 1, anon_sym_AMP, - ACTIONS(11231), 1, + ACTIONS(10834), 1, anon_sym_LF, - ACTIONS(11197), 2, + ACTIONS(10760), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11209), 2, + ACTIONS(10774), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(11213), 2, + ACTIONS(10778), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11193), 3, + ACTIONS(10762), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11211), 4, + ACTIONS(10776), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [324237] = 5, + [284086] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11235), 1, + ACTIONS(5603), 1, + anon_sym_LBRACK, + ACTIONS(5605), 18, + anon_sym_COMMA, + anon_sym_LPAREN2, + 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_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [284113] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10788), 1, anon_sym_LBRACK, - ACTIONS(11237), 2, + ACTIONS(10793), 1, + anon_sym_requires, + STATE(6812), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(10790), 2, anon_sym_final, anon_sym_override, - STATE(7198), 2, + STATE(6761), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(11233), 14, + ACTIONS(10786), 11, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, @@ -594865,257 +559430,309 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [324268] = 16, + [284150] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(125), 1, - anon_sym_virtual, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(11240), 1, - sym_identifier, - ACTIONS(11242), 1, + ACTIONS(8042), 1, + anon_sym_requires, + ACTIONS(9642), 1, + anon_sym_LBRACK, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 11, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - STATE(4648), 1, - sym_qualified_type_identifier, - STATE(4736), 1, - sym_template_type, - STATE(7757), 1, - sym_access_specifier, - STATE(7918), 1, - sym_scope_resolution, - STATE(8543), 1, - sym_class_name, - STATE(8544), 1, - sym_virtual, - STATE(7212), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - ACTIONS(11244), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - [324321] = 11, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [284187] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(10784), 1, + anon_sym_LBRACK, + ACTIONS(10839), 1, + anon_sym_requires, + STATE(6815), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(10836), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10782), 11, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(9105), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [284224] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6677), 1, anon_sym_LBRACK, - ACTIONS(10040), 1, - anon_sym_STAR, - ACTIONS(10042), 1, + ACTIONS(10824), 2, anon_sym_AMP_AMP, - ACTIONS(10044), 1, - anon_sym_AMP, - STATE(4697), 1, - sym_parameter_list, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(7856), 1, - sym_abstract_declarator, - STATE(7464), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8858), 6, + anon_sym_and, + ACTIONS(10842), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6679), 14, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [284255] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10453), 1, + anon_sym_LBRACK, + STATE(6245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10451), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [324364] = 13, + [284286] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(2259), 1, + ACTIONS(2257), 1, anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(9594), 1, - anon_sym_STAR, - ACTIONS(10941), 1, + ACTIONS(8649), 1, sym_identifier, - ACTIONS(10943), 1, - anon_sym_template, - STATE(7201), 1, - sym_scope_resolution, - STATE(10178), 1, + ACTIONS(8651), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8653), 1, + anon_sym_LPAREN2, + ACTIONS(8655), 1, + anon_sym_STAR, + ACTIONS(8657), 1, + anon_sym_AMP_AMP, + ACTIONS(8659), 1, + anon_sym_AMP, + STATE(7109), 1, + sym_field_declarator, + STATE(9402), 1, sym_ms_based_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(3197), 6, - sym_pointer_type_declarator, - sym_template_function, - sym_destructor_name, - sym_dependent_identifier, - sym_qualified_identifier, + STATE(7368), 2, sym_operator_name, - [324411] = 13, + sym_semgrep_ellipsis, + STATE(7399), 7, + 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, + [284333] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5621), 1, + anon_sym_LBRACK, + ACTIONS(5623), 18, + anon_sym_COMMA, + anon_sym_LPAREN2, + 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_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [284360] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5591), 1, + anon_sym_LBRACK, + ACTIONS(5593), 18, + anon_sym_COMMA, + anon_sym_LPAREN2, + 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_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [284387] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(2259), 1, + ACTIONS(2257), 1, anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(9594), 1, - anon_sym_STAR, - ACTIONS(11246), 1, + ACTIONS(8649), 1, sym_identifier, - ACTIONS(11248), 1, - anon_sym_template, - STATE(7202), 1, - sym_scope_resolution, - STATE(10178), 1, + ACTIONS(8651), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8653), 1, + anon_sym_LPAREN2, + ACTIONS(8655), 1, + anon_sym_STAR, + ACTIONS(8657), 1, + anon_sym_AMP_AMP, + ACTIONS(8659), 1, + anon_sym_AMP, + STATE(7224), 1, + sym_field_declarator, + STATE(9402), 1, sym_ms_based_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(3197), 6, - sym_pointer_type_declarator, - sym_template_function, - sym_destructor_name, - sym_dependent_identifier, - sym_qualified_identifier, + STATE(7368), 2, sym_operator_name, - [324458] = 3, - ACTIONS(7307), 1, - anon_sym_LF, - ACTIONS(10969), 1, + sym_semgrep_ellipsis, + STATE(7399), 7, + 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, + [284434] = 12, + ACTIONS(10479), 1, sym_comment, - ACTIONS(7305), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(10764), 1, anon_sym_PIPE_PIPE, + ACTIONS(10766), 1, anon_sym_AMP_AMP, + ACTIONS(10768), 1, anon_sym_PIPE, + ACTIONS(10770), 1, anon_sym_CARET, + ACTIONS(10772), 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, - [324485] = 9, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(11071), 1, + ACTIONS(10844), 1, anon_sym_LF, - ACTIONS(11207), 1, - anon_sym_AMP, - ACTIONS(11197), 2, + ACTIONS(10760), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11209), 2, + ACTIONS(10774), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(11213), 2, + ACTIONS(10778), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11193), 3, + ACTIONS(10762), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11073), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(11211), 4, + ACTIONS(10776), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [324524] = 13, + [284479] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(9537), 1, - anon_sym_STAR, - ACTIONS(11250), 1, - sym_identifier, - ACTIONS(11252), 1, - anon_sym_template, - STATE(7205), 1, - sym_scope_resolution, - STATE(10673), 1, - sym_ms_based_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7633), 6, - sym_pointer_type_declarator, - sym_template_function, - sym_destructor_name, - sym_dependent_identifier, - sym_qualified_identifier, - sym_operator_name, - [324571] = 10, + ACTIONS(8042), 1, + anon_sym_requires, + ACTIONS(9783), 1, + anon_sym_LBRACK, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 11, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [284516] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8334), 1, - anon_sym_DASH_GT, - ACTIONS(9902), 1, + ACTIONS(10848), 1, anon_sym_LBRACK, - ACTIONS(9995), 1, - anon_sym_requires, - STATE(7031), 1, - sym_trailing_return_type, - STATE(7270), 1, - sym_requires_clause, - STATE(7298), 1, - sym_function_postfix, - ACTIONS(9992), 2, + ACTIONS(6369), 2, anon_sym_final, anon_sym_override, - STATE(7215), 2, + STATE(6700), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(9897), 9, + ACTIONS(10846), 14, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, @@ -595123,747 +559740,661 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - [324612] = 12, - ACTIONS(10969), 1, + anon_sym_requires, + [284547] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(11199), 1, + ACTIONS(10507), 1, + anon_sym_SLASH, + ACTIONS(10509), 1, anon_sym_PIPE_PIPE, - ACTIONS(11201), 1, + ACTIONS(10511), 1, anon_sym_AMP_AMP, - ACTIONS(11203), 1, + ACTIONS(10513), 1, anon_sym_PIPE, - ACTIONS(11205), 1, + ACTIONS(10515), 1, anon_sym_CARET, - ACTIONS(11207), 1, + ACTIONS(10517), 1, anon_sym_AMP, - ACTIONS(11254), 1, - anon_sym_LF, - ACTIONS(11197), 2, + ACTIONS(10850), 1, + anon_sym_RPAREN, + ACTIONS(10503), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11209), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(11213), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11193), 3, + ACTIONS(10505), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11211), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [324657] = 12, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(11199), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11201), 1, - anon_sym_AMP_AMP, - ACTIONS(11203), 1, - anon_sym_PIPE, - ACTIONS(11205), 1, - anon_sym_CARET, - ACTIONS(11207), 1, - anon_sym_AMP, - ACTIONS(11256), 1, - anon_sym_LF, - ACTIONS(11197), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11209), 2, + ACTIONS(10519), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(11213), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11193), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11211), 4, + ACTIONS(10521), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(10523), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - [324702] = 8, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(11071), 1, - anon_sym_LF, - ACTIONS(11197), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11209), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(11213), 2, + ACTIONS(10525), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11193), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11211), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(11073), 5, + [284596] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9711), 1, + anon_sym_requires, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + ACTIONS(9708), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 11, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [284633] = 12, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(10764), 1, anon_sym_PIPE_PIPE, + ACTIONS(10766), 1, anon_sym_AMP_AMP, + ACTIONS(10768), 1, anon_sym_PIPE, + ACTIONS(10770), 1, anon_sym_CARET, + ACTIONS(10772), 1, anon_sym_AMP, - [324739] = 6, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(11071), 1, + ACTIONS(10852), 1, anon_sym_LF, - ACTIONS(11197), 2, + ACTIONS(10760), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11213), 2, + ACTIONS(10774), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10778), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11193), 3, + ACTIONS(10762), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11073), 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, + ACTIONS(10776), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [324772] = 13, + [284678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(9005), 1, - sym_identifier, - ACTIONS(9007), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9009), 1, + ACTIONS(5599), 1, + anon_sym_LBRACK, + ACTIONS(5601), 18, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(9011), 1, - anon_sym_STAR, - ACTIONS(9013), 1, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(9015), 1, - anon_sym_AMP, - STATE(7432), 1, - sym_field_declarator, - STATE(10022), 1, - sym_ms_based_modifier, - STATE(7715), 2, - sym_operator_name, - sym_semgrep_ellipsis, - STATE(7771), 7, - 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, - [324819] = 16, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [284705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(125), 1, - anon_sym_virtual, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(11240), 1, - sym_identifier, - ACTIONS(11242), 1, + ACTIONS(5617), 1, + anon_sym_LBRACK, + ACTIONS(5619), 18, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - STATE(4648), 1, - sym_qualified_type_identifier, - STATE(4736), 1, - sym_template_type, - STATE(7752), 1, - sym_access_specifier, - STATE(7918), 1, - sym_scope_resolution, - STATE(8243), 1, - sym_class_name, - STATE(8246), 1, - sym_virtual, - STATE(7796), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - ACTIONS(11244), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - [324872] = 10, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [284732] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7926), 1, - anon_sym_requires, - ACTIONS(8334), 1, - anon_sym_DASH_GT, - ACTIONS(10106), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(7033), 1, - sym_trailing_return_type, - STATE(7270), 1, + ACTIONS(9752), 1, + anon_sym_requires, + STATE(6852), 1, sym_requires_clause, - STATE(7338), 1, + STATE(6904), 1, sym_function_postfix, - ACTIONS(6118), 2, + ACTIONS(9708), 2, anon_sym_final, anon_sym_override, - STATE(7215), 2, + STATE(6761), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10101), 9, + ACTIONS(9640), 11, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - [324913] = 14, - ACTIONS(3), 1, + [284769] = 6, + ACTIONS(10479), 1, sym_comment, - ACTIONS(10907), 1, + ACTIONS(10549), 1, + anon_sym_LF, + ACTIONS(10760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10778), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10762), 3, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(10909), 1, + anon_sym_PERCENT, + ACTIONS(10551), 11, anon_sym_PIPE_PIPE, - ACTIONS(10911), 1, anon_sym_AMP_AMP, - ACTIONS(10913), 1, anon_sym_PIPE, - ACTIONS(10915), 1, anon_sym_CARET, - ACTIONS(10917), 1, anon_sym_AMP, - ACTIONS(11258), 1, - anon_sym_RPAREN, - ACTIONS(10903), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10905), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10919), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10921), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(10923), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(10925), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [324962] = 5, + anon_sym_LT, + [284802] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11262), 1, + ACTIONS(9783), 1, anon_sym_LBRACK, - ACTIONS(6118), 2, + ACTIONS(10048), 1, + anon_sym_requires, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(10005), 2, anon_sym_final, anon_sym_override, - STATE(7198), 2, + STATE(6761), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(11260), 14, + ACTIONS(9781), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_asm, anon_sym___asm__, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [324993] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(125), 1, - anon_sym_virtual, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(11240), 1, - sym_identifier, - ACTIONS(11242), 1, - anon_sym_LBRACK_LBRACK, - STATE(4648), 1, - sym_qualified_type_identifier, - STATE(4736), 1, - sym_template_type, - STATE(7718), 1, - sym_access_specifier, - STATE(7918), 1, - sym_scope_resolution, - STATE(8446), 1, - sym_virtual, - STATE(8839), 1, - sym_class_name, - STATE(7223), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - ACTIONS(11244), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - [325046] = 12, - ACTIONS(10969), 1, + [284839] = 12, + ACTIONS(10479), 1, sym_comment, - ACTIONS(11199), 1, + ACTIONS(10764), 1, anon_sym_PIPE_PIPE, - ACTIONS(11201), 1, + ACTIONS(10766), 1, anon_sym_AMP_AMP, - ACTIONS(11203), 1, + ACTIONS(10768), 1, anon_sym_PIPE, - ACTIONS(11205), 1, + ACTIONS(10770), 1, anon_sym_CARET, - ACTIONS(11207), 1, + ACTIONS(10772), 1, anon_sym_AMP, - ACTIONS(11264), 1, + ACTIONS(10854), 1, anon_sym_LF, - ACTIONS(11197), 2, + ACTIONS(10760), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11209), 2, + ACTIONS(10774), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(11213), 2, + ACTIONS(10778), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11193), 3, + ACTIONS(10762), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11211), 4, + ACTIONS(10776), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [325091] = 12, - ACTIONS(10969), 1, + [284884] = 3, + ACTIONS(10479), 1, sym_comment, - ACTIONS(11071), 1, + ACTIONS(10734), 1, anon_sym_LF, - ACTIONS(11073), 1, + ACTIONS(10736), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(11201), 1, anon_sym_AMP_AMP, - ACTIONS(11203), 1, anon_sym_PIPE, - ACTIONS(11205), 1, anon_sym_CARET, - ACTIONS(11207), 1, anon_sym_AMP, - ACTIONS(11197), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11209), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(11213), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11193), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11211), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [325136] = 12, - ACTIONS(10969), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [284911] = 12, + ACTIONS(10479), 1, sym_comment, - ACTIONS(11199), 1, + ACTIONS(10764), 1, anon_sym_PIPE_PIPE, - ACTIONS(11201), 1, + ACTIONS(10766), 1, anon_sym_AMP_AMP, - ACTIONS(11203), 1, + ACTIONS(10768), 1, anon_sym_PIPE, - ACTIONS(11205), 1, + ACTIONS(10770), 1, anon_sym_CARET, - ACTIONS(11207), 1, + ACTIONS(10772), 1, anon_sym_AMP, - ACTIONS(11266), 1, + ACTIONS(10856), 1, anon_sym_LF, - ACTIONS(11197), 2, + ACTIONS(10760), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11209), 2, + ACTIONS(10774), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(11213), 2, + ACTIONS(10778), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11193), 3, + ACTIONS(10762), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11211), 4, + ACTIONS(10776), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [325181] = 10, + [284956] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8334), 1, - anon_sym_DASH_GT, - ACTIONS(10106), 1, + ACTIONS(10156), 1, anon_sym_LBRACK, - ACTIONS(10123), 1, + ACTIONS(10193), 1, anon_sym_requires, - STATE(6953), 1, - sym_trailing_return_type, - STATE(7270), 1, + STATE(6835), 1, + sym_function_postfix, + STATE(6852), 1, sym_requires_clause, - STATE(7338), 1, + ACTIONS(10179), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 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_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [284993] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10788), 1, + anon_sym_LBRACK, + ACTIONS(10796), 1, + anon_sym_requires, + STATE(6812), 1, sym_function_postfix, - ACTIONS(10120), 2, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(10790), 2, anon_sym_final, anon_sym_override, - STATE(7215), 2, + STATE(6761), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10101), 9, + ACTIONS(10786), 11, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - [325222] = 7, - ACTIONS(10969), 1, + [285030] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(11071), 1, + ACTIONS(10784), 1, + anon_sym_LBRACK, + ACTIONS(10858), 1, + anon_sym_requires, + STATE(6815), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(10836), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10782), 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_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [285067] = 9, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(10549), 1, anon_sym_LF, - ACTIONS(11197), 2, + ACTIONS(10772), 1, + anon_sym_AMP, + ACTIONS(10760), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11213), 2, + ACTIONS(10774), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10778), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11193), 3, + ACTIONS(10762), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11211), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(11073), 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, - [325257] = 12, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(11199), 1, + ACTIONS(10551), 4, anon_sym_PIPE_PIPE, - ACTIONS(11201), 1, anon_sym_AMP_AMP, - ACTIONS(11203), 1, anon_sym_PIPE, - ACTIONS(11205), 1, anon_sym_CARET, - ACTIONS(11207), 1, - anon_sym_AMP, - ACTIONS(11268), 1, - anon_sym_LF, - ACTIONS(11197), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11209), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(11213), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11193), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11211), 4, + ACTIONS(10776), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [325302] = 16, + [285106] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(125), 1, anon_sym_virtual, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(11240), 1, - sym_identifier, - ACTIONS(11242), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - STATE(4648), 1, - sym_qualified_type_identifier, - STATE(4736), 1, + ACTIONS(10127), 1, + sym_identifier, + STATE(3094), 1, sym_template_type, - STATE(7729), 1, + STATE(3098), 1, + sym_qualified_type_identifier, + STATE(7351), 1, sym_access_specifier, - STATE(7918), 1, + STATE(7546), 1, sym_scope_resolution, - STATE(8212), 1, - sym_virtual, - STATE(9043), 1, + STATE(8022), 1, sym_class_name, - STATE(7796), 2, + STATE(8023), 1, + sym_virtual, + STATE(6684), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - ACTIONS(11244), 3, + ACTIONS(10780), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - [325355] = 3, - ACTIONS(10846), 1, - anon_sym_LF, - ACTIONS(10969), 1, + [285159] = 12, + ACTIONS(10479), 1, sym_comment, - ACTIONS(10850), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(10549), 1, + anon_sym_LF, + ACTIONS(10551), 1, anon_sym_PIPE_PIPE, + ACTIONS(10766), 1, anon_sym_AMP_AMP, + ACTIONS(10768), 1, anon_sym_PIPE, + ACTIONS(10770), 1, anon_sym_CARET, + ACTIONS(10772), 1, anon_sym_AMP, + ACTIONS(10760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10774), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(10778), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10762), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10776), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [325382] = 12, - ACTIONS(10969), 1, + [285204] = 12, + ACTIONS(10479), 1, sym_comment, - ACTIONS(11199), 1, + ACTIONS(10764), 1, anon_sym_PIPE_PIPE, - ACTIONS(11201), 1, + ACTIONS(10766), 1, anon_sym_AMP_AMP, - ACTIONS(11203), 1, + ACTIONS(10768), 1, anon_sym_PIPE, - ACTIONS(11205), 1, + ACTIONS(10770), 1, anon_sym_CARET, - ACTIONS(11207), 1, + ACTIONS(10772), 1, anon_sym_AMP, - ACTIONS(11270), 1, + ACTIONS(10861), 1, anon_sym_LF, - ACTIONS(11197), 2, + ACTIONS(10760), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11209), 2, + ACTIONS(10774), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(11213), 2, + ACTIONS(10778), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11193), 3, + ACTIONS(10762), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11211), 4, + ACTIONS(10776), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [325427] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8334), 1, - anon_sym_DASH_GT, - ACTIONS(10469), 1, - anon_sym_LBRACK, - ACTIONS(10536), 1, - anon_sym_requires, - STATE(7043), 1, - sym_trailing_return_type, - STATE(7270), 1, - sym_requires_clause, - STATE(7333), 1, - sym_function_postfix, - ACTIONS(10533), 2, - anon_sym_final, - anon_sym_override, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10464), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [325468] = 11, - ACTIONS(10969), 1, + [285249] = 11, + ACTIONS(10479), 1, sym_comment, - ACTIONS(11071), 1, + ACTIONS(10549), 1, anon_sym_LF, - ACTIONS(11203), 1, + ACTIONS(10768), 1, anon_sym_PIPE, - ACTIONS(11205), 1, + ACTIONS(10770), 1, anon_sym_CARET, - ACTIONS(11207), 1, + ACTIONS(10772), 1, anon_sym_AMP, - ACTIONS(11073), 2, + ACTIONS(10551), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11197), 2, + ACTIONS(10760), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11209), 2, + ACTIONS(10774), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(11213), 2, + ACTIONS(10778), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11193), 3, + ACTIONS(10762), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11211), 4, + ACTIONS(10776), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [325511] = 10, + [285292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7926), 1, - anon_sym_requires, - ACTIONS(8334), 1, - anon_sym_DASH_GT, - ACTIONS(10469), 1, + ACTIONS(5637), 1, anon_sym_LBRACK, - STATE(6933), 1, - sym_trailing_return_type, - STATE(7270), 1, - sym_requires_clause, - STATE(7333), 1, - sym_function_postfix, - ACTIONS(6118), 2, + ACTIONS(5639), 18, + anon_sym_COMMA, + anon_sym_LPAREN2, + 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_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10464), 9, + anon_sym_try, + anon_sym_requires, + [285319] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5641), 1, + anon_sym_LBRACK, + ACTIONS(5643), 18, anon_sym_COMMA, anon_sym_LPAREN2, + 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_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_try, - [325552] = 12, - ACTIONS(10969), 1, + anon_sym_requires, + [285346] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(11199), 1, + ACTIONS(5595), 1, + anon_sym_LBRACK, + ACTIONS(5597), 18, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - ACTIONS(11201), 1, anon_sym_AMP_AMP, - ACTIONS(11203), 1, - anon_sym_PIPE, - ACTIONS(11205), 1, - anon_sym_CARET, - ACTIONS(11207), 1, - anon_sym_AMP, - ACTIONS(11272), 1, - anon_sym_LF, - ACTIONS(11197), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11209), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(11213), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11193), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11211), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [325597] = 3, - ACTIONS(10969), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [285373] = 3, + ACTIONS(10479), 1, sym_comment, - ACTIONS(11127), 1, + ACTIONS(10553), 1, anon_sym_LF, - ACTIONS(11129), 18, + ACTIONS(10555), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -595882,43 +560413,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [325624] = 10, + [285400] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8334), 1, - anon_sym_DASH_GT, - ACTIONS(10897), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(9197), 1, + anon_sym_STAR, + ACTIONS(10863), 1, + sym_identifier, + ACTIONS(10865), 1, + anon_sym_template, + STATE(6785), 1, + sym_scope_resolution, + STATE(9517), 1, + sym_ms_based_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(3095), 6, + sym_pointer_type_declarator, + sym_template_function, + sym_destructor_name, + sym_dependent_identifier, + sym_qualified_identifier, + sym_operator_name, + [285447] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3253), 1, + anon_sym_TILDE, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(9197), 1, + anon_sym_STAR, + ACTIONS(10529), 1, + sym_identifier, + ACTIONS(10531), 1, + anon_sym_template, + STATE(6786), 1, + sym_scope_resolution, + STATE(9517), 1, + sym_ms_based_modifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(3095), 6, + sym_pointer_type_declarator, + sym_template_function, + sym_destructor_name, + sym_dependent_identifier, + sym_qualified_identifier, + sym_operator_name, + [285494] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(10974), 1, - anon_sym_requires, - STATE(6948), 1, - sym_trailing_return_type, - STATE(7270), 1, - sym_requires_clause, - STATE(7324), 1, - sym_function_postfix, - ACTIONS(10971), 2, - anon_sym_final, - anon_sym_override, - STATE(7215), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10895), 9, + ACTIONS(5581), 18, anon_sym_COMMA, anon_sym_LPAREN2, + 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_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_try, - [325665] = 3, - ACTIONS(10969), 1, + anon_sym_requires, + [285521] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(4043), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8653), 1, + anon_sym_LPAREN2, + ACTIONS(8673), 1, + sym_identifier, + ACTIONS(8675), 1, + anon_sym_STAR, + ACTIONS(8677), 1, + anon_sym_AMP_AMP, + ACTIONS(8679), 1, + anon_sym_AMP, + STATE(7603), 1, + sym_field_declarator, + STATE(9923), 1, + sym_ms_based_modifier, + STATE(7742), 2, + sym_operator_name, + sym_semgrep_ellipsis, + STATE(7399), 7, + 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, + [285568] = 10, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(10549), 1, + anon_sym_LF, + ACTIONS(10770), 1, + anon_sym_CARET, + ACTIONS(10772), 1, + anon_sym_AMP, + ACTIONS(10760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10774), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10778), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10551), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + ACTIONS(10762), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10776), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [285609] = 3, + ACTIONS(10479), 1, sym_comment, - ACTIONS(11075), 1, + ACTIONS(10720), 1, anon_sym_LF, - ACTIONS(11077), 18, + ACTIONS(10722), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -595937,69 +560594,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [325692] = 3, - ACTIONS(10969), 1, + [285636] = 16, + ACTIONS(3), 1, sym_comment, - ACTIONS(11081), 1, - anon_sym_LF, - ACTIONS(11083), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(125), 1, + anon_sym_virtual, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10127), 1, + sym_identifier, + STATE(3094), 1, + sym_template_type, + STATE(3098), 1, + sym_qualified_type_identifier, + STATE(7348), 1, + sym_access_specifier, + STATE(7546), 1, + sym_scope_resolution, + STATE(7964), 1, + sym_virtual, + STATE(8540), 1, + sym_class_name, + STATE(6793), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + ACTIONS(10780), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [285689] = 12, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(10764), 1, anon_sym_PIPE_PIPE, + ACTIONS(10766), 1, anon_sym_AMP_AMP, + ACTIONS(10768), 1, anon_sym_PIPE, + ACTIONS(10770), 1, anon_sym_CARET, + ACTIONS(10772), 1, anon_sym_AMP, + ACTIONS(10867), 1, + anon_sym_LF, + ACTIONS(10760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10774), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(10778), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10762), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10776), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [325719] = 12, - ACTIONS(10969), 1, + [285734] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(125), 1, + anon_sym_virtual, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10127), 1, + sym_identifier, + STATE(3094), 1, + sym_template_type, + STATE(3098), 1, + sym_qualified_type_identifier, + STATE(7383), 1, + sym_access_specifier, + STATE(7546), 1, + sym_scope_resolution, + STATE(8093), 1, + sym_virtual, + STATE(8452), 1, + sym_class_name, + STATE(6245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + ACTIONS(10780), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [285787] = 12, + ACTIONS(10479), 1, sym_comment, - ACTIONS(11199), 1, + ACTIONS(10764), 1, anon_sym_PIPE_PIPE, - ACTIONS(11201), 1, + ACTIONS(10766), 1, anon_sym_AMP_AMP, - ACTIONS(11203), 1, + ACTIONS(10768), 1, anon_sym_PIPE, - ACTIONS(11205), 1, + ACTIONS(10770), 1, anon_sym_CARET, - ACTIONS(11207), 1, + ACTIONS(10772), 1, anon_sym_AMP, - ACTIONS(11274), 1, + ACTIONS(10869), 1, anon_sym_LF, - ACTIONS(11197), 2, + ACTIONS(10760), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11209), 2, + ACTIONS(10774), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(11213), 2, + ACTIONS(10778), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11193), 3, + ACTIONS(10762), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11211), 4, + ACTIONS(10776), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [325764] = 3, - ACTIONS(10969), 1, + [285832] = 3, + ACTIONS(10479), 1, sym_comment, - ACTIONS(11043), 1, + ACTIONS(10545), 1, anon_sym_LF, - ACTIONS(11045), 18, + ACTIONS(10547), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -596018,46 +560758,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [325791] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(9007), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9009), 1, - anon_sym_LPAREN2, - ACTIONS(9037), 1, - sym_identifier, - ACTIONS(9039), 1, - anon_sym_STAR, - ACTIONS(9041), 1, - anon_sym_AMP_AMP, - ACTIONS(9043), 1, - anon_sym_AMP, - STATE(7945), 1, - sym_field_declarator, - STATE(10129), 1, - sym_ms_based_modifier, - STATE(8114), 2, - sym_operator_name, - sym_semgrep_ellipsis, - STATE(7771), 7, - 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, - [325838] = 3, - ACTIONS(10969), 1, + [285859] = 3, + ACTIONS(10479), 1, sym_comment, - ACTIONS(11071), 1, + ACTIONS(10738), 1, anon_sym_LF, - ACTIONS(11073), 18, + ACTIONS(10740), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -596076,163 +560782,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [325865] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(9005), 1, - sym_identifier, - ACTIONS(9007), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9009), 1, - anon_sym_LPAREN2, - ACTIONS(9011), 1, - anon_sym_STAR, - ACTIONS(9013), 1, - anon_sym_AMP_AMP, - ACTIONS(9015), 1, - anon_sym_AMP, - STATE(7591), 1, - sym_field_declarator, - STATE(10022), 1, - sym_ms_based_modifier, - STATE(7715), 2, - sym_operator_name, - sym_semgrep_ellipsis, - STATE(7771), 7, - 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, - [325912] = 14, - ACTIONS(3), 1, + [285886] = 12, + ACTIONS(10479), 1, sym_comment, - ACTIONS(10907), 1, - anon_sym_SLASH, - ACTIONS(10909), 1, + ACTIONS(10764), 1, anon_sym_PIPE_PIPE, - ACTIONS(10911), 1, + ACTIONS(10766), 1, anon_sym_AMP_AMP, - ACTIONS(10913), 1, + ACTIONS(10768), 1, anon_sym_PIPE, - ACTIONS(10915), 1, + ACTIONS(10770), 1, anon_sym_CARET, - ACTIONS(10917), 1, + ACTIONS(10772), 1, anon_sym_AMP, - ACTIONS(11276), 1, - anon_sym_RPAREN, - ACTIONS(10903), 2, + ACTIONS(10871), 1, + anon_sym_LF, + ACTIONS(10760), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10905), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10919), 2, + ACTIONS(10774), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10921), 2, + ACTIONS(10778), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10762), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10776), 4, anon_sym_GT, - anon_sym_LT, - ACTIONS(10923), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(10925), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [325961] = 13, + anon_sym_LT, + [285931] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(9007), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9009), 1, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(9037), 1, - sym_identifier, - ACTIONS(9039), 1, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(9680), 1, anon_sym_STAR, - ACTIONS(9041), 1, + ACTIONS(9682), 1, anon_sym_AMP_AMP, - ACTIONS(9043), 1, + ACTIONS(9684), 1, anon_sym_AMP, - STATE(7963), 1, - sym_field_declarator, - STATE(10129), 1, - sym_ms_based_modifier, - STATE(8114), 2, - sym_operator_name, - sym_semgrep_ellipsis, - STATE(7771), 7, - 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, - [326008] = 13, + STATE(4458), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7564), 1, + sym_abstract_declarator, + ACTIONS(8561), 5, + anon_sym_RPAREN, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [285973] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3706), 1, - anon_sym_TILDE, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(9588), 1, - anon_sym_STAR, - ACTIONS(11278), 1, - sym_identifier, - ACTIONS(11280), 1, - anon_sym_template, - STATE(7241), 1, - sym_scope_resolution, - STATE(9810), 1, - sym_ms_based_modifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7633), 6, - sym_pointer_type_declarator, - sym_template_function, - sym_destructor_name, - sym_dependent_identifier, - sym_qualified_identifier, - sym_operator_name, - [326055] = 9, + ACTIONS(7881), 1, + anon_sym_DASH_GT, + ACTIONS(9660), 1, + anon_sym_requires, + STATE(6947), 1, + sym_trailing_return_type, + STATE(7021), 1, + sym_requires_clause, + STATE(7068), 1, + sym_function_postfix, + ACTIONS(9657), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 9, + 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, + [286011] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8100), 1, + ACTIONS(7881), 1, anon_sym_DASH_GT, - ACTIONS(11285), 1, + ACTIONS(7923), 1, anon_sym_requires, - STATE(7412), 1, + STATE(6946), 1, sym_trailing_return_type, - STATE(7422), 1, + STATE(7021), 1, sym_requires_clause, - STATE(7477), 1, + STATE(7073), 1, sym_function_postfix, - ACTIONS(11282), 2, + ACTIONS(7921), 2, anon_sym_final, anon_sym_override, - STATE(7282), 2, + STATE(6899), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10895), 9, + ACTIONS(9781), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -596242,26 +560904,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [326093] = 9, + [286049] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8100), 1, + ACTIONS(7881), 1, anon_sym_DASH_GT, - ACTIONS(8104), 1, + ACTIONS(7923), 1, anon_sym_requires, - STATE(7381), 1, + STATE(6985), 1, sym_trailing_return_type, - STATE(7422), 1, + STATE(7021), 1, sym_requires_clause, - STATE(7444), 1, + STATE(7068), 1, sym_function_postfix, - ACTIONS(8102), 2, + ACTIONS(7921), 2, anon_sym_final, anon_sym_override, - STATE(7282), 2, + STATE(6899), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10101), 9, + ACTIONS(9640), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -596271,122 +560933,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [326131] = 16, + [286087] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8719), 1, + anon_sym_LPAREN2, + ACTIONS(8727), 1, + anon_sym_LBRACK, + ACTIONS(9696), 1, + anon_sym_STAR, + ACTIONS(9698), 1, + anon_sym_AMP_AMP, + ACTIONS(9700), 1, + anon_sym_AMP, + STATE(4560), 1, + sym_parameter_list, + STATE(6893), 1, + sym_function_declarator_seq, + STATE(7531), 1, + sym_abstract_declarator, + ACTIONS(8561), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6892), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [286129] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, + ACTIONS(3899), 1, anon_sym_LBRACE, - ACTIONS(8098), 1, + ACTIONS(8324), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10993), 1, + ACTIONS(10603), 1, anon_sym_COMMA, - ACTIONS(10995), 1, + ACTIONS(10605), 1, anon_sym_LPAREN2, - ACTIONS(10997), 1, + ACTIONS(10607), 1, anon_sym_SEMI, - ACTIONS(11001), 1, + ACTIONS(10611), 1, anon_sym_LBRACK, - ACTIONS(11003), 1, + ACTIONS(10613), 1, anon_sym_EQ, - ACTIONS(11288), 1, + ACTIONS(10873), 1, anon_sym_COLON, - STATE(4388), 1, + STATE(4221), 1, sym_parameter_list, - STATE(7652), 1, + STATE(7260), 1, sym_function_declarator_seq, - STATE(8841), 1, + STATE(8459), 1, sym_gnu_asm_expression, - STATE(8939), 1, + STATE(8462), 1, aux_sym_declaration_declarator_repeat1, - ACTIONS(11005), 2, + ACTIONS(10615), 2, anon_sym_asm, anon_sym___asm__, - STATE(7677), 2, + STATE(7318), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9357), 2, + STATE(8924), 2, sym_argument_list, sym_initializer_list, - [326183] = 9, + [286181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8100), 1, - anon_sym_DASH_GT, - ACTIONS(8104), 1, - anon_sym_requires, - STATE(7378), 1, - sym_trailing_return_type, - STATE(7422), 1, - sym_requires_clause, - STATE(7477), 1, - sym_function_postfix, - ACTIONS(8102), 2, - anon_sym_final, - anon_sym_override, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10895), 9, + ACTIONS(4342), 1, + anon_sym_LBRACK, + ACTIONS(4344), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT2, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_try, - [326221] = 11, + anon_sym_requires, + sym_semgrep_metavar, + [286207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, - anon_sym_LPAREN2, - ACTIONS(5552), 1, - anon_sym_STAR, - ACTIONS(5554), 1, - anon_sym_AMP_AMP, - ACTIONS(5556), 1, - anon_sym_AMP, - ACTIONS(9105), 1, + ACTIONS(4346), 1, anon_sym_LBRACK, - STATE(4268), 1, - sym_parameter_list, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(7930), 1, - sym_abstract_declarator, - ACTIONS(8858), 5, + ACTIONS(4348), 17, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, sym_semgrep_metavar, - STATE(7464), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [326263] = 9, + [286233] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8100), 1, + ACTIONS(7881), 1, anon_sym_DASH_GT, - ACTIONS(10055), 1, + ACTIONS(7923), 1, anon_sym_requires, - STATE(7391), 1, + STATE(6932), 1, sym_trailing_return_type, - STATE(7422), 1, + STATE(7021), 1, sym_requires_clause, - STATE(7479), 1, + STATE(7094), 1, sym_function_postfix, - ACTIONS(10052), 2, + ACTIONS(7921), 2, anon_sym_final, anon_sym_override, - STATE(7282), 2, + STATE(6899), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(9897), 9, + ACTIONS(10154), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -596396,26 +561075,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [326301] = 9, + [286271] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8100), 1, + ACTIONS(7881), 1, anon_sym_DASH_GT, - ACTIONS(8104), 1, + ACTIONS(10161), 1, anon_sym_requires, - STATE(7415), 1, + STATE(6979), 1, sym_trailing_return_type, - STATE(7422), 1, + STATE(7021), 1, sym_requires_clause, - STATE(7462), 1, + STATE(7094), 1, sym_function_postfix, - ACTIONS(8102), 2, + ACTIONS(10158), 2, anon_sym_final, anon_sym_override, - STATE(7282), 2, + STATE(6899), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10464), 9, + ACTIONS(10154), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -596425,26 +561104,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [326339] = 9, + [286309] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8100), 1, + ACTIONS(7881), 1, anon_sym_DASH_GT, - ACTIONS(8104), 1, + ACTIONS(10878), 1, anon_sym_requires, - STATE(7346), 1, + STATE(6908), 1, sym_trailing_return_type, - STATE(7422), 1, - sym_requires_clause, - STATE(7479), 1, + STATE(7017), 1, sym_function_postfix, - ACTIONS(8102), 2, + STATE(7021), 1, + sym_requires_clause, + ACTIONS(10875), 2, anon_sym_final, anon_sym_override, - STATE(7282), 2, + STATE(6899), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(9897), 9, + ACTIONS(10786), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -596454,26 +561133,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [326377] = 9, + [286347] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8100), 1, + ACTIONS(7881), 1, anon_sym_DASH_GT, - ACTIONS(10144), 1, + ACTIONS(7923), 1, anon_sym_requires, - STATE(7408), 1, + STATE(7010), 1, sym_trailing_return_type, - STATE(7422), 1, - sym_requires_clause, - STATE(7444), 1, + STATE(7017), 1, sym_function_postfix, - ACTIONS(10141), 2, + STATE(7021), 1, + sym_requires_clause, + ACTIONS(7921), 2, anon_sym_final, anon_sym_override, - STATE(7282), 2, + STATE(6899), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10101), 9, + ACTIONS(10786), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -596483,26 +561162,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [326415] = 9, + [286385] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8100), 1, + ACTIONS(7881), 1, anon_sym_DASH_GT, - ACTIONS(10544), 1, + ACTIONS(9788), 1, anon_sym_requires, - STATE(7410), 1, + STATE(6993), 1, sym_trailing_return_type, - STATE(7422), 1, + STATE(7021), 1, sym_requires_clause, - STATE(7462), 1, + STATE(7073), 1, sym_function_postfix, - ACTIONS(10541), 2, + ACTIONS(9785), 2, anon_sym_final, anon_sym_override, - STATE(7282), 2, + STATE(6899), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10464), 9, + ACTIONS(9781), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -596512,391 +561191,715 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [326453] = 9, + [286423] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8327), 1, - anon_sym_DASH_GT, - ACTIONS(8329), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9121), 1, + anon_sym_LPAREN2, + ACTIONS(9197), 1, + anon_sym_STAR, + STATE(7492), 1, + sym_type_declarator, + STATE(8178), 1, + sym_type_definition_declarators, + STATE(9517), 1, + sym_ms_based_modifier, + STATE(2300), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9119), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + [286460] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10784), 1, + anon_sym_LBRACK, + ACTIONS(10782), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - STATE(7422), 1, - sym_requires_clause, - STATE(7462), 1, - sym_function_postfix, - STATE(7463), 1, + [286485] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8042), 1, + anon_sym_requires, + ACTIONS(8209), 1, + anon_sym_DASH_GT, + ACTIONS(10156), 1, + anon_sym_LBRACK, + STATE(6739), 1, sym_trailing_return_type, - ACTIONS(8102), 2, + STATE(6835), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(6369), 2, anon_sym_final, anon_sym_override, - STATE(7282), 2, + STATE(6761), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10464), 8, + ACTIONS(10154), 7, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [286524] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10156), 1, + anon_sym_LBRACK, + ACTIONS(10154), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [286549] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10883), 1, anon_sym_LBRACK, + ACTIONS(10881), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - sym_semgrep_metavar, - [326490] = 15, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [286574] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(5552), 1, + ACTIONS(5457), 1, anon_sym_STAR, - ACTIONS(5554), 1, + ACTIONS(5459), 1, anon_sym_AMP_AMP, - ACTIONS(5556), 1, + ACTIONS(5461), 1, anon_sym_AMP, - ACTIONS(9105), 1, + ACTIONS(8285), 1, + anon_sym_requires, + ACTIONS(8765), 1, anon_sym_LBRACK, - ACTIONS(11290), 1, - anon_sym_LT, - ACTIONS(11292), 1, + ACTIONS(10885), 1, anon_sym_LBRACE, - STATE(3711), 1, - sym_compound_statement, - STATE(4268), 1, + STATE(4330), 1, sym_parameter_list, - STATE(7256), 1, - sym_template_parameter_list, - STATE(7450), 1, + STATE(6968), 1, + sym_compound_statement, + STATE(7023), 1, sym_function_declarator_seq, - STATE(8216), 1, - sym_abstract_declarator, - STATE(8327), 1, + STATE(7046), 1, + sym_requires_clause, + STATE(7911), 1, sym_abstract_function_declarator, - STATE(7464), 4, + STATE(8111), 1, + sym_abstract_declarator, + STATE(7113), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [326539] = 15, + [286623] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10993), 1, - anon_sym_COMMA, - ACTIONS(10995), 1, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(10997), 1, - anon_sym_SEMI, - ACTIONS(11001), 1, + ACTIONS(5457), 1, + anon_sym_STAR, + ACTIONS(5459), 1, + anon_sym_AMP_AMP, + ACTIONS(5461), 1, + anon_sym_AMP, + ACTIONS(8765), 1, anon_sym_LBRACK, - ACTIONS(11003), 1, - anon_sym_EQ, - STATE(4388), 1, + ACTIONS(10887), 1, + anon_sym_LT, + ACTIONS(10889), 1, + anon_sym_LBRACE, + STATE(3822), 1, + sym_compound_statement, + STATE(4330), 1, sym_parameter_list, - STATE(7652), 1, + STATE(6818), 1, + sym_template_parameter_list, + STATE(7023), 1, sym_function_declarator_seq, - STATE(8841), 1, - sym_gnu_asm_expression, - STATE(8939), 1, - aux_sym_declaration_declarator_repeat1, - ACTIONS(11005), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(7677), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9357), 2, - sym_argument_list, - sym_initializer_list, - [326588] = 15, + STATE(7856), 1, + sym_abstract_function_declarator, + STATE(8111), 1, + sym_abstract_declarator, + STATE(7113), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [286672] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(5552), 1, + ACTIONS(5457), 1, anon_sym_STAR, - ACTIONS(5554), 1, + ACTIONS(5459), 1, anon_sym_AMP_AMP, - ACTIONS(5556), 1, + ACTIONS(5461), 1, anon_sym_AMP, - ACTIONS(8329), 1, + ACTIONS(8285), 1, anon_sym_requires, - ACTIONS(9105), 1, + ACTIONS(8765), 1, anon_sym_LBRACK, - ACTIONS(11294), 1, + ACTIONS(10889), 1, anon_sym_LBRACE, - STATE(4268), 1, - sym_parameter_list, - STATE(4640), 1, + STATE(3712), 1, sym_compound_statement, - STATE(7433), 1, - sym_requires_clause, - STATE(7450), 1, + STATE(4330), 1, + sym_parameter_list, + STATE(7023), 1, sym_function_declarator_seq, - STATE(8216), 1, - sym_abstract_declarator, - STATE(8467), 1, + STATE(7092), 1, + sym_requires_clause, + STATE(8006), 1, sym_abstract_function_declarator, - STATE(7464), 4, + STATE(8111), 1, + sym_abstract_declarator, + STATE(7113), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [326637] = 15, + [286721] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9121), 1, + anon_sym_LPAREN2, + ACTIONS(9197), 1, + anon_sym_STAR, + STATE(7492), 1, + sym_type_declarator, + STATE(8005), 1, + sym_type_definition_declarators, + STATE(9517), 1, + sym_ms_based_modifier, + STATE(2300), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9119), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + [286758] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9121), 1, + anon_sym_LPAREN2, + ACTIONS(9197), 1, + anon_sym_STAR, + STATE(7492), 1, + sym_type_declarator, + STATE(8179), 1, + sym_type_definition_declarators, + STATE(9517), 1, + sym_ms_based_modifier, + STATE(2300), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9119), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + [286795] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(5552), 1, + ACTIONS(5457), 1, anon_sym_STAR, - ACTIONS(5554), 1, + ACTIONS(5459), 1, anon_sym_AMP_AMP, - ACTIONS(5556), 1, + ACTIONS(5461), 1, anon_sym_AMP, - ACTIONS(8329), 1, - anon_sym_requires, - ACTIONS(9105), 1, + ACTIONS(8765), 1, anon_sym_LBRACK, - ACTIONS(11292), 1, - anon_sym_LBRACE, - STATE(3732), 1, + ACTIONS(10887), 1, + anon_sym_LT, + STATE(1865), 1, sym_compound_statement, - STATE(4268), 1, + STATE(4330), 1, sym_parameter_list, - STATE(7424), 1, - sym_requires_clause, - STATE(7450), 1, + STATE(6844), 1, + sym_template_parameter_list, + STATE(7023), 1, sym_function_declarator_seq, - STATE(8216), 1, - sym_abstract_declarator, - STATE(8331), 1, + STATE(7887), 1, sym_abstract_function_declarator, - STATE(7464), 4, + STATE(8111), 1, + sym_abstract_declarator, + STATE(7113), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [326686] = 4, + [286844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6414), 1, - anon_sym_AMP, - ACTIONS(11296), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6416), 14, + ACTIONS(10893), 1, + anon_sym_LBRACK, + ACTIONS(10891), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_EQ, anon_sym_COLON, - anon_sym_or, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - sym_semgrep_metavar, - [326713] = 9, + [286869] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(8327), 1, - anon_sym_DASH_GT, - ACTIONS(11298), 1, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(5457), 1, + anon_sym_STAR, + ACTIONS(5459), 1, + anon_sym_AMP_AMP, + ACTIONS(5461), 1, + anon_sym_AMP, + ACTIONS(8285), 1, anon_sym_requires, - STATE(7422), 1, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(10895), 1, + anon_sym_LBRACE, + STATE(4330), 1, + sym_parameter_list, + STATE(6766), 1, + sym_compound_statement, + STATE(7018), 1, sym_requires_clause, - STATE(7448), 1, - sym_trailing_return_type, - STATE(7477), 1, - sym_function_postfix, - ACTIONS(11282), 2, - anon_sym_final, - anon_sym_override, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10895), 8, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7871), 1, + sym_abstract_function_declarator, + STATE(8111), 1, + sym_abstract_declarator, + STATE(7113), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [286918] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9121), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COLON, - sym_semgrep_metavar, - [326750] = 15, + ACTIONS(9197), 1, + anon_sym_STAR, + STATE(7492), 1, + sym_type_declarator, + STATE(8048), 1, + sym_type_definition_declarators, + STATE(9517), 1, + sym_ms_based_modifier, + STATE(2300), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9119), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + [286955] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9121), 1, + anon_sym_LPAREN2, + ACTIONS(9197), 1, + anon_sym_STAR, + STATE(7492), 1, + sym_type_declarator, + STATE(8059), 1, + sym_type_definition_declarators, + STATE(9517), 1, + sym_ms_based_modifier, + STATE(2300), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9119), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + [286992] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9121), 1, + anon_sym_LPAREN2, + ACTIONS(9197), 1, + anon_sym_STAR, + STATE(7492), 1, + sym_type_declarator, + STATE(7850), 1, + sym_type_definition_declarators, + STATE(9517), 1, + sym_ms_based_modifier, + STATE(2300), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9119), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + [287029] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(5552), 1, + ACTIONS(5457), 1, anon_sym_STAR, - ACTIONS(5554), 1, + ACTIONS(5459), 1, anon_sym_AMP_AMP, - ACTIONS(5556), 1, + ACTIONS(5461), 1, anon_sym_AMP, - ACTIONS(9105), 1, + ACTIONS(8765), 1, anon_sym_LBRACK, - ACTIONS(11290), 1, + ACTIONS(10887), 1, anon_sym_LT, - ACTIONS(11301), 1, + ACTIONS(10897), 1, anon_sym_LBRACE, - STATE(4268), 1, + STATE(4330), 1, sym_parameter_list, - STATE(4483), 1, + STATE(4832), 1, sym_compound_statement, - STATE(7266), 1, + STATE(6831), 1, sym_template_parameter_list, - STATE(7450), 1, + STATE(7023), 1, sym_function_declarator_seq, - STATE(8216), 1, - sym_abstract_declarator, - STATE(8507), 1, + STATE(7920), 1, sym_abstract_function_declarator, - STATE(7464), 4, + STATE(8111), 1, + sym_abstract_declarator, + STATE(7113), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [326799] = 9, + [287078] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8327), 1, - anon_sym_DASH_GT, - ACTIONS(10091), 1, - anon_sym_requires, - STATE(7422), 1, - sym_requires_clause, - STATE(7479), 1, - sym_function_postfix, - STATE(7490), 1, - sym_trailing_return_type, - ACTIONS(10052), 2, - anon_sym_final, - anon_sym_override, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(9897), 8, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9121), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COLON, - sym_semgrep_metavar, - [326836] = 15, + ACTIONS(9197), 1, + anon_sym_STAR, + STATE(7492), 1, + sym_type_declarator, + STATE(8096), 1, + sym_type_definition_declarators, + STATE(9517), 1, + sym_ms_based_modifier, + STATE(2300), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9119), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + [287115] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9121), 1, + anon_sym_LPAREN2, + ACTIONS(9197), 1, + anon_sym_STAR, + STATE(7492), 1, + sym_type_declarator, + STATE(8102), 1, + sym_type_definition_declarators, + STATE(9517), 1, + sym_ms_based_modifier, + STATE(2300), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9119), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + [287152] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(5552), 1, + ACTIONS(5457), 1, anon_sym_STAR, - ACTIONS(5554), 1, + ACTIONS(5459), 1, anon_sym_AMP_AMP, - ACTIONS(5556), 1, + ACTIONS(5461), 1, anon_sym_AMP, - ACTIONS(9105), 1, + ACTIONS(8285), 1, + anon_sym_requires, + ACTIONS(8765), 1, anon_sym_LBRACK, - ACTIONS(11290), 1, - anon_sym_LT, - ACTIONS(11303), 1, + ACTIONS(10899), 1, anon_sym_LBRACE, - STATE(4268), 1, + STATE(4330), 1, sym_parameter_list, - STATE(5693), 1, + STATE(5010), 1, sym_compound_statement, - STATE(7321), 1, - sym_template_parameter_list, - STATE(7450), 1, + STATE(7023), 1, sym_function_declarator_seq, - STATE(8216), 1, - sym_abstract_declarator, - STATE(8297), 1, + STATE(7064), 1, + sym_requires_clause, + STATE(8013), 1, sym_abstract_function_declarator, - STATE(7464), 4, + STATE(8111), 1, + sym_abstract_declarator, + STATE(7113), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [326885] = 15, + [287201] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(5552), 1, + ACTIONS(5457), 1, anon_sym_STAR, - ACTIONS(5554), 1, + ACTIONS(5459), 1, anon_sym_AMP_AMP, - ACTIONS(5556), 1, + ACTIONS(5461), 1, anon_sym_AMP, - ACTIONS(9105), 1, + ACTIONS(8285), 1, + anon_sym_requires, + ACTIONS(8765), 1, anon_sym_LBRACK, - ACTIONS(11290), 1, - anon_sym_LT, - ACTIONS(11305), 1, + ACTIONS(10897), 1, anon_sym_LBRACE, - STATE(4268), 1, + STATE(4330), 1, sym_parameter_list, - STATE(4656), 1, + STATE(4847), 1, sym_compound_statement, - STATE(7288), 1, - sym_template_parameter_list, - STATE(7450), 1, + STATE(7023), 1, sym_function_declarator_seq, - STATE(8216), 1, - sym_abstract_declarator, - STATE(8222), 1, + STATE(7053), 1, + sym_requires_clause, + STATE(7924), 1, sym_abstract_function_declarator, - STATE(7464), 4, + STATE(8111), 1, + sym_abstract_declarator, + STATE(7113), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [326934] = 15, + [287250] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(5552), 1, + ACTIONS(5457), 1, anon_sym_STAR, - ACTIONS(5554), 1, + ACTIONS(5459), 1, anon_sym_AMP_AMP, - ACTIONS(5556), 1, + ACTIONS(5461), 1, anon_sym_AMP, - ACTIONS(9105), 1, + ACTIONS(8765), 1, anon_sym_LBRACK, - ACTIONS(11290), 1, + ACTIONS(10887), 1, anon_sym_LT, - ACTIONS(11307), 1, + ACTIONS(10901), 1, anon_sym_LBRACE, - STATE(4268), 1, - sym_parameter_list, - STATE(6240), 1, + STATE(4178), 1, sym_compound_statement, - STATE(7283), 1, + STATE(4330), 1, + sym_parameter_list, + STATE(6886), 1, sym_template_parameter_list, - STATE(7450), 1, + STATE(7023), 1, sym_function_declarator_seq, - STATE(8216), 1, - sym_abstract_declarator, - STATE(8244), 1, + STATE(8094), 1, sym_abstract_function_declarator, - STATE(7464), 4, + STATE(8111), 1, + sym_abstract_declarator, + STATE(7113), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [326983] = 3, + [287299] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9121), 1, + anon_sym_LPAREN2, + ACTIONS(9197), 1, + anon_sym_STAR, + STATE(7492), 1, + sym_type_declarator, + STATE(8124), 1, + sym_type_definition_declarators, + STATE(9517), 1, + sym_ms_based_modifier, + STATE(2300), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9119), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + [287336] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9121), 1, + anon_sym_LPAREN2, + ACTIONS(9197), 1, + anon_sym_STAR, + STATE(7492), 1, + sym_type_declarator, + STATE(8138), 1, + sym_type_definition_declarators, + STATE(9517), 1, + sym_ms_based_modifier, + STATE(2300), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9119), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + [287373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9902), 1, + ACTIONS(10788), 1, anon_sym_LBRACK, - ACTIONS(9897), 16, + ACTIONS(10786), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -596913,203 +561916,409 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [327008] = 15, + [287398] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(5552), 1, + ACTIONS(5457), 1, anon_sym_STAR, - ACTIONS(5554), 1, + ACTIONS(5459), 1, anon_sym_AMP_AMP, - ACTIONS(5556), 1, + ACTIONS(5461), 1, anon_sym_AMP, - ACTIONS(9105), 1, + ACTIONS(8765), 1, anon_sym_LBRACK, - ACTIONS(11290), 1, + ACTIONS(10887), 1, anon_sym_LT, - ACTIONS(11309), 1, + ACTIONS(10903), 1, anon_sym_LBRACE, - STATE(4038), 1, + STATE(1865), 1, sym_compound_statement, - STATE(4268), 1, + STATE(4330), 1, sym_parameter_list, - STATE(7306), 1, + STATE(6859), 1, sym_template_parameter_list, - STATE(7450), 1, + STATE(7023), 1, sym_function_declarator_seq, - STATE(8216), 1, + STATE(8111), 1, sym_abstract_declarator, - STATE(8494), 1, + STATE(8177), 1, sym_abstract_function_declarator, - STATE(7464), 4, + STATE(7113), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [327057] = 15, + [287447] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(5552), 1, + ACTIONS(5457), 1, anon_sym_STAR, - ACTIONS(5554), 1, + ACTIONS(5459), 1, anon_sym_AMP_AMP, - ACTIONS(5556), 1, + ACTIONS(5461), 1, anon_sym_AMP, - ACTIONS(8329), 1, - anon_sym_requires, - ACTIONS(9105), 1, + ACTIONS(8765), 1, anon_sym_LBRACK, - ACTIONS(11301), 1, + ACTIONS(10887), 1, + anon_sym_LT, + ACTIONS(10905), 1, anon_sym_LBRACE, - STATE(4268), 1, + STATE(4330), 1, sym_parameter_list, - STATE(4396), 1, + STATE(4959), 1, sym_compound_statement, - STATE(7450), 1, + STATE(6847), 1, + sym_template_parameter_list, + STATE(7023), 1, sym_function_declarator_seq, - STATE(7499), 1, - sym_requires_clause, - STATE(8216), 1, - sym_abstract_declarator, - STATE(8529), 1, + STATE(7932), 1, sym_abstract_function_declarator, - STATE(7464), 4, + STATE(8111), 1, + sym_abstract_declarator, + STATE(7113), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [327106] = 3, + [287496] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(11313), 1, - anon_sym_LBRACK, - ACTIONS(11311), 16, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5455), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + ACTIONS(5457), 1, + anon_sym_STAR, + ACTIONS(5459), 1, + anon_sym_AMP_AMP, + ACTIONS(5461), 1, + anon_sym_AMP, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(10887), 1, + anon_sym_LT, + ACTIONS(10895), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [327131] = 9, + STATE(4330), 1, + sym_parameter_list, + STATE(6743), 1, + sym_compound_statement, + STATE(6823), 1, + sym_template_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7866), 1, + sym_abstract_function_declarator, + STATE(8111), 1, + sym_abstract_declarator, + STATE(7113), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [287545] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8327), 1, - anon_sym_DASH_GT, - ACTIONS(8329), 1, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9121), 1, + anon_sym_LPAREN2, + ACTIONS(9197), 1, + anon_sym_STAR, + STATE(7492), 1, + sym_type_declarator, + STATE(7847), 1, + sym_type_definition_declarators, + STATE(9517), 1, + sym_ms_based_modifier, + STATE(2300), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9119), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + [287582] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9121), 1, + anon_sym_LPAREN2, + ACTIONS(9197), 1, + anon_sym_STAR, + STATE(7492), 1, + sym_type_declarator, + STATE(7867), 1, + sym_type_definition_declarators, + STATE(9517), 1, + sym_ms_based_modifier, + STATE(2300), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9119), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + [287619] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9121), 1, + anon_sym_LPAREN2, + ACTIONS(9197), 1, + anon_sym_STAR, + STATE(7492), 1, + sym_type_declarator, + STATE(7872), 1, + sym_type_definition_declarators, + STATE(9517), 1, + sym_ms_based_modifier, + STATE(2300), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9119), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + [287656] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8042), 1, anon_sym_requires, - STATE(7422), 1, - sym_requires_clause, - STATE(7444), 1, - sym_function_postfix, - STATE(7445), 1, + ACTIONS(8209), 1, + anon_sym_DASH_GT, + ACTIONS(10788), 1, + anon_sym_LBRACK, + STATE(6686), 1, sym_trailing_return_type, - ACTIONS(8102), 2, + STATE(6812), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(6369), 2, anon_sym_final, anon_sym_override, - STATE(7282), 2, + STATE(6761), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10101), 8, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10786), 7, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_EQ, anon_sym_COLON, - sym_semgrep_metavar, - [327168] = 4, + anon_sym_try, + [287695] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11315), 2, - anon_sym_final, - anon_sym_override, - STATE(7269), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(11233), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9121), 1, anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(9197), 1, + anon_sym_STAR, + STATE(7492), 1, + sym_type_declarator, + STATE(7888), 1, + sym_type_definition_declarators, + STATE(9517), 1, + sym_ms_based_modifier, + STATE(2300), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9119), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + [287732] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_try, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(5457), 1, + anon_sym_STAR, + ACTIONS(5459), 1, + anon_sym_AMP_AMP, + ACTIONS(5461), 1, + anon_sym_AMP, + ACTIONS(8285), 1, anon_sym_requires, - sym_semgrep_metavar, - [327195] = 3, + ACTIONS(8765), 1, + anon_sym_LBRACK, + STATE(1863), 1, + sym_compound_statement, + STATE(4330), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7029), 1, + sym_requires_clause, + STATE(7891), 1, + sym_abstract_function_declarator, + STATE(8111), 1, + sym_abstract_declarator, + STATE(7113), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [287781] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11262), 1, - anon_sym_LBRACK, - ACTIONS(11260), 16, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9121), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(9197), 1, + anon_sym_STAR, + STATE(7492), 1, + sym_type_declarator, + STATE(7892), 1, + sym_type_definition_declarators, + STATE(9517), 1, + sym_ms_based_modifier, + STATE(2300), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9119), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + [287818] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(9755), 1, + anon_sym_STAR, + ACTIONS(9757), 1, + anon_sym_AMP_AMP, + ACTIONS(9759), 1, + anon_sym_AMP, + STATE(4564), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7624), 1, + sym_abstract_declarator, + ACTIONS(8561), 4, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [327220] = 9, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [287859] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(5457), 1, + anon_sym_STAR, + ACTIONS(5459), 1, + anon_sym_AMP_AMP, + ACTIONS(5461), 1, + anon_sym_AMP, + ACTIONS(8285), 1, + anon_sym_requires, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(10905), 1, + anon_sym_LBRACE, + STATE(4330), 1, + sym_parameter_list, + STATE(4968), 1, + sym_compound_statement, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7058), 1, + sym_requires_clause, + STATE(7935), 1, + sym_abstract_function_declarator, + STATE(8111), 1, + sym_abstract_declarator, + STATE(7113), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [287908] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9510), 1, + ACTIONS(9121), 1, anon_sym_LPAREN2, - ACTIONS(9602), 1, + ACTIONS(9197), 1, anon_sym_STAR, - STATE(7845), 1, + STATE(7492), 1, sym_type_declarator, - STATE(8542), 1, + STATE(8021), 1, sym_type_definition_declarators, - STATE(10254), 1, + STATE(9517), 1, sym_ms_based_modifier, - STATE(2872), 5, + STATE(2300), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9508), 6, + ACTIONS(9119), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - [327257] = 3, + [287945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11320), 1, + ACTIONS(10909), 1, anon_sym_LBRACK, - ACTIONS(11318), 16, + ACTIONS(10907), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -597126,56 +562335,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [327282] = 3, + [287970] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(11324), 1, + ACTIONS(8042), 1, + anon_sym_requires, + ACTIONS(8209), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(11322), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, + STATE(6760), 1, + sym_trailing_return_type, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + ACTIONS(6369), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [327307] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11328), 1, - anon_sym_LBRACK, - ACTIONS(11326), 16, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 7, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [327332] = 3, + [288009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11332), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(11330), 16, + ACTIONS(9640), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -597192,64 +562386,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [327357] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6372), 1, - anon_sym_AMP, - ACTIONS(11296), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11334), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6374), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [327386] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9510), 1, - anon_sym_LPAREN2, - ACTIONS(9602), 1, - anon_sym_STAR, - STATE(7845), 1, - sym_type_declarator, - STATE(8232), 1, - sym_type_definition_declarators, - STATE(10254), 1, - sym_ms_based_modifier, - STATE(2872), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9508), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - [327423] = 3, + [288034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11338), 1, + ACTIONS(10848), 1, anon_sym_LBRACK, - ACTIONS(11336), 16, + ACTIONS(10846), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -597266,405 +562408,287 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [327448] = 9, + [288059] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9510), 1, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(9602), 1, + ACTIONS(5457), 1, anon_sym_STAR, - STATE(7845), 1, - sym_type_declarator, - STATE(8551), 1, - sym_type_definition_declarators, - STATE(10254), 1, - sym_ms_based_modifier, - STATE(2872), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9508), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - [327485] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11342), 1, + ACTIONS(5459), 1, + anon_sym_AMP_AMP, + ACTIONS(5461), 1, + anon_sym_AMP, + ACTIONS(8765), 1, anon_sym_LBRACK, - ACTIONS(11340), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + ACTIONS(10887), 1, + anon_sym_LT, + ACTIONS(10911), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [327510] = 9, + STATE(3472), 1, + sym_compound_statement, + STATE(4330), 1, + sym_parameter_list, + STATE(6855), 1, + sym_template_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7941), 1, + sym_abstract_function_declarator, + STATE(8111), 1, + sym_abstract_declarator, + STATE(7113), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [288108] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8327), 1, + ACTIONS(8209), 1, anon_sym_DASH_GT, - ACTIONS(8329), 1, + ACTIONS(10788), 1, + anon_sym_LBRACK, + ACTIONS(10793), 1, anon_sym_requires, - STATE(7422), 1, - sym_requires_clause, - STATE(7479), 1, - sym_function_postfix, - STATE(7481), 1, + STATE(6752), 1, sym_trailing_return_type, - ACTIONS(8102), 2, - anon_sym_final, - anon_sym_override, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(9897), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COLON, - sym_semgrep_metavar, - [327547] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8102), 2, + STATE(6812), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(10790), 2, anon_sym_final, anon_sym_override, - STATE(7269), 2, + STATE(6761), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(11260), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10786), 7, 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, - sym_semgrep_metavar, - [327574] = 15, + [288147] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(5552), 1, + ACTIONS(5457), 1, anon_sym_STAR, - ACTIONS(5554), 1, + ACTIONS(5459), 1, anon_sym_AMP_AMP, - ACTIONS(5556), 1, + ACTIONS(5461), 1, anon_sym_AMP, - ACTIONS(8329), 1, + ACTIONS(8285), 1, anon_sym_requires, - ACTIONS(9105), 1, + ACTIONS(8765), 1, anon_sym_LBRACK, - ACTIONS(11307), 1, + ACTIONS(10911), 1, anon_sym_LBRACE, - STATE(4268), 1, - sym_parameter_list, - STATE(6196), 1, + STATE(3328), 1, sym_compound_statement, - STATE(7447), 1, - sym_requires_clause, - STATE(7450), 1, + STATE(4330), 1, + sym_parameter_list, + STATE(7023), 1, sym_function_declarator_seq, - STATE(8216), 1, - sym_abstract_declarator, - STATE(8283), 1, + STATE(7059), 1, + sym_requires_clause, + STATE(7943), 1, sym_abstract_function_declarator, - STATE(7464), 4, + STATE(8111), 1, + sym_abstract_declarator, + STATE(7113), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [327623] = 15, + [288196] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(5552), 1, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(10054), 1, anon_sym_STAR, - ACTIONS(5554), 1, + ACTIONS(10056), 1, anon_sym_AMP_AMP, - ACTIONS(5556), 1, + ACTIONS(10058), 1, anon_sym_AMP, - ACTIONS(9105), 1, - anon_sym_LBRACK, - ACTIONS(11290), 1, - anon_sym_LT, - ACTIONS(11344), 1, - anon_sym_LBRACE, - STATE(4268), 1, + STATE(3879), 1, sym_parameter_list, - STATE(4387), 1, - sym_compound_statement, - STATE(7287), 1, - sym_template_parameter_list, - STATE(7450), 1, + STATE(7023), 1, sym_function_declarator_seq, - STATE(8216), 1, + STATE(7406), 1, sym_abstract_declarator, - STATE(8484), 1, - sym_abstract_function_declarator, - STATE(7464), 4, + ACTIONS(8561), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + STATE(7113), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, + sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [327672] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9510), 1, - anon_sym_LPAREN2, - ACTIONS(9602), 1, - anon_sym_STAR, - STATE(7845), 1, - sym_type_declarator, - STATE(8482), 1, - sym_type_definition_declarators, - STATE(10254), 1, - sym_ms_based_modifier, - STATE(2872), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9508), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - [327709] = 9, + [288237] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9510), 1, + ACTIONS(9121), 1, anon_sym_LPAREN2, - ACTIONS(9602), 1, + ACTIONS(9197), 1, anon_sym_STAR, - STATE(7845), 1, + STATE(7492), 1, sym_type_declarator, - STATE(8535), 1, + STATE(8046), 1, sym_type_definition_declarators, - STATE(10254), 1, + STATE(9517), 1, sym_ms_based_modifier, - STATE(2872), 5, + STATE(2300), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9508), 6, + ACTIONS(9119), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - [327746] = 15, + [288274] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(5552), 1, + ACTIONS(5457), 1, anon_sym_STAR, - ACTIONS(5554), 1, + ACTIONS(5459), 1, anon_sym_AMP_AMP, - ACTIONS(5556), 1, + ACTIONS(5461), 1, anon_sym_AMP, - ACTIONS(8329), 1, + ACTIONS(8285), 1, anon_sym_requires, - ACTIONS(9105), 1, + ACTIONS(8765), 1, anon_sym_LBRACK, - ACTIONS(11344), 1, + ACTIONS(10913), 1, anon_sym_LBRACE, - STATE(4219), 1, + STATE(2613), 1, sym_compound_statement, - STATE(4268), 1, + STATE(4330), 1, sym_parameter_list, - STATE(7441), 1, - sym_requires_clause, - STATE(7450), 1, + STATE(7023), 1, sym_function_declarator_seq, - STATE(8216), 1, - sym_abstract_declarator, - STATE(8330), 1, + STATE(7025), 1, + sym_requires_clause, + STATE(8039), 1, sym_abstract_function_declarator, - STATE(7464), 4, + STATE(8111), 1, + sym_abstract_declarator, + STATE(7113), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [327795] = 15, + [288323] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(5552), 1, + ACTIONS(5457), 1, anon_sym_STAR, - ACTIONS(5554), 1, + ACTIONS(5459), 1, anon_sym_AMP_AMP, - ACTIONS(5556), 1, + ACTIONS(5461), 1, anon_sym_AMP, - ACTIONS(8329), 1, + ACTIONS(8285), 1, anon_sym_requires, - ACTIONS(9105), 1, + ACTIONS(8765), 1, anon_sym_LBRACK, - ACTIONS(11305), 1, + ACTIONS(10903), 1, anon_sym_LBRACE, - STATE(4268), 1, - sym_parameter_list, - STATE(4655), 1, + STATE(1863), 1, sym_compound_statement, - STATE(7450), 1, + STATE(4330), 1, + sym_parameter_list, + STATE(7023), 1, sym_function_declarator_seq, - STATE(7473), 1, + STATE(7082), 1, sym_requires_clause, - STATE(8216), 1, - sym_abstract_declarator, - STATE(8539), 1, + STATE(7845), 1, sym_abstract_function_declarator, - STATE(7464), 4, + STATE(8111), 1, + sym_abstract_declarator, + STATE(7113), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [327844] = 3, + [288372] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(11348), 1, + ACTIONS(8209), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(11346), 16, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9711), 1, + anon_sym_requires, + STATE(6734), 1, + sym_trailing_return_type, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + ACTIONS(9708), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 7, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [327869] = 3, + [288411] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11352), 1, - anon_sym_LBRACK, - ACTIONS(11350), 16, + ACTIONS(10915), 2, + anon_sym_final, + anon_sym_override, + STATE(6861), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10799), 13, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [327894] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9510), 1, - anon_sym_LPAREN2, - ACTIONS(9602), 1, - anon_sym_STAR, - STATE(7845), 1, - sym_type_declarator, - STATE(8253), 1, - sym_type_definition_declarators, - STATE(10254), 1, - sym_ms_based_modifier, - STATE(2872), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9508), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - [327931] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9510), 1, - anon_sym_LPAREN2, - ACTIONS(9602), 1, - anon_sym_STAR, - STATE(7845), 1, - sym_type_declarator, - STATE(8289), 1, - sym_type_definition_declarators, - STATE(10254), 1, - sym_ms_based_modifier, - STATE(2872), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9508), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - [327968] = 3, + sym_semgrep_metavar, + [288438] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11356), 1, + ACTIONS(10920), 1, anon_sym_LBRACK, - ACTIONS(11354), 16, + ACTIONS(10918), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -597681,90 +562705,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [327993] = 15, + [288463] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(5552), 1, + ACTIONS(5457), 1, anon_sym_STAR, - ACTIONS(5554), 1, + ACTIONS(5459), 1, anon_sym_AMP_AMP, - ACTIONS(5556), 1, + ACTIONS(5461), 1, anon_sym_AMP, - ACTIONS(8329), 1, - anon_sym_requires, - ACTIONS(9105), 1, + ACTIONS(8765), 1, anon_sym_LBRACK, - ACTIONS(11358), 1, + ACTIONS(10887), 1, + anon_sym_LT, + ACTIONS(10922), 1, anon_sym_LBRACE, - STATE(4268), 1, - sym_parameter_list, - STATE(5383), 1, + STATE(4317), 1, sym_compound_statement, - STATE(7450), 1, + STATE(4330), 1, + sym_parameter_list, + STATE(6871), 1, + sym_template_parameter_list, + STATE(7023), 1, sym_function_declarator_seq, - STATE(7465), 1, - sym_requires_clause, - STATE(8216), 1, - sym_abstract_declarator, - STATE(8284), 1, + STATE(8043), 1, sym_abstract_function_declarator, - STATE(7464), 4, + STATE(8111), 1, + sym_abstract_declarator, + STATE(7113), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [328042] = 3, + [288512] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(11362), 1, - anon_sym_LBRACK, - ACTIONS(11360), 16, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5455), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + ACTIONS(5457), 1, + anon_sym_STAR, + ACTIONS(5459), 1, + anon_sym_AMP_AMP, + ACTIONS(5461), 1, + anon_sym_AMP, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(10887), 1, + anon_sym_LT, + ACTIONS(10913), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [328067] = 3, + STATE(2590), 1, + sym_compound_statement, + STATE(4330), 1, + sym_parameter_list, + STATE(6858), 1, + sym_template_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(8010), 1, + sym_abstract_function_declarator, + STATE(8111), 1, + sym_abstract_declarator, + STATE(7113), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [288561] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(11366), 1, + ACTIONS(8209), 1, + anon_sym_DASH_GT, + ACTIONS(9783), 1, anon_sym_LBRACK, - ACTIONS(11364), 16, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10008), 1, + anon_sym_requires, + STATE(6741), 1, + sym_trailing_return_type, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(10005), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 7, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [328092] = 3, + [288600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11370), 1, + ACTIONS(10926), 1, anon_sym_LBRACK, - ACTIONS(11368), 16, + ACTIONS(10924), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -597781,12 +562824,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [328117] = 3, + [288625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10106), 1, + ACTIONS(10930), 1, anon_sym_LBRACK, - ACTIONS(10101), 16, + ACTIONS(10928), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -597803,334 +562846,355 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [328142] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9510), 1, - anon_sym_LPAREN2, - ACTIONS(9602), 1, - anon_sym_STAR, - STATE(7845), 1, - sym_type_declarator, - STATE(8397), 1, - sym_type_definition_declarators, - STATE(10254), 1, - sym_ms_based_modifier, - STATE(2872), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9508), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - [328179] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9510), 1, - anon_sym_LPAREN2, - ACTIONS(9602), 1, - anon_sym_STAR, - STATE(7845), 1, - sym_type_declarator, - STATE(8420), 1, - sym_type_definition_declarators, - STATE(10254), 1, - sym_ms_based_modifier, - STATE(2872), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9508), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - [328216] = 15, + [288650] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(5552), 1, + ACTIONS(5457), 1, anon_sym_STAR, - ACTIONS(5554), 1, + ACTIONS(5459), 1, anon_sym_AMP_AMP, - ACTIONS(5556), 1, + ACTIONS(5461), 1, anon_sym_AMP, - ACTIONS(9105), 1, + ACTIONS(8765), 1, anon_sym_LBRACK, - ACTIONS(11290), 1, + ACTIONS(10887), 1, anon_sym_LT, - ACTIONS(11372), 1, + ACTIONS(10932), 1, anon_sym_LBRACE, - STATE(2525), 1, - sym_compound_statement, - STATE(4268), 1, + STATE(4330), 1, sym_parameter_list, - STATE(7314), 1, + STATE(4392), 1, + sym_compound_statement, + STATE(6880), 1, sym_template_parameter_list, - STATE(7450), 1, + STATE(7023), 1, sym_function_declarator_seq, - STATE(8201), 1, + STATE(8104), 1, sym_abstract_function_declarator, - STATE(8216), 1, + STATE(8111), 1, sym_abstract_declarator, - STATE(7464), 4, + STATE(7113), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [328265] = 9, + [288699] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9510), 1, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(9602), 1, + ACTIONS(5457), 1, anon_sym_STAR, - STATE(7845), 1, - sym_type_declarator, - STATE(8447), 1, - sym_type_definition_declarators, - STATE(10254), 1, - sym_ms_based_modifier, - STATE(2872), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9508), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - [328302] = 9, + ACTIONS(5459), 1, + anon_sym_AMP_AMP, + ACTIONS(5461), 1, + anon_sym_AMP, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(10885), 1, + anon_sym_LBRACE, + ACTIONS(10887), 1, + anon_sym_LT, + STATE(4330), 1, + sym_parameter_list, + STATE(6816), 1, + sym_template_parameter_list, + STATE(6924), 1, + sym_compound_statement, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7908), 1, + sym_abstract_function_declarator, + STATE(8111), 1, + sym_abstract_declarator, + STATE(7113), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [288748] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(8327), 1, - anon_sym_DASH_GT, - ACTIONS(10559), 1, - anon_sym_requires, - STATE(7422), 1, - sym_requires_clause, - STATE(7428), 1, - sym_trailing_return_type, - STATE(7462), 1, - sym_function_postfix, - ACTIONS(10541), 2, - anon_sym_final, - anon_sym_override, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10464), 8, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3899), 1, + anon_sym_LBRACE, + ACTIONS(10603), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10605), 1, anon_sym_LPAREN2, + ACTIONS(10607), 1, anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(10611), 1, anon_sym_LBRACK, - anon_sym_COLON, - sym_semgrep_metavar, - [328339] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9510), 1, - anon_sym_LPAREN2, - ACTIONS(9602), 1, - anon_sym_STAR, - STATE(7845), 1, - sym_type_declarator, - STATE(8468), 1, - sym_type_definition_declarators, - STATE(10254), 1, - sym_ms_based_modifier, - STATE(2872), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9508), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - [328376] = 11, + ACTIONS(10613), 1, + anon_sym_EQ, + STATE(4184), 1, + sym_parameter_list, + STATE(7260), 1, + sym_function_declarator_seq, + STATE(8459), 1, + sym_gnu_asm_expression, + STATE(8462), 1, + aux_sym_declaration_declarator_repeat1, + ACTIONS(10615), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(7162), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8924), 2, + sym_argument_list, + sym_initializer_list, + [288797] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(9105), 1, - anon_sym_LBRACK, - ACTIONS(10430), 1, + ACTIONS(5457), 1, anon_sym_STAR, - ACTIONS(10432), 1, + ACTIONS(5459), 1, anon_sym_AMP_AMP, - ACTIONS(10434), 1, + ACTIONS(5461), 1, anon_sym_AMP, - STATE(4027), 1, + ACTIONS(8285), 1, + anon_sym_requires, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(10922), 1, + anon_sym_LBRACE, + STATE(4330), 1, sym_parameter_list, - STATE(7450), 1, + STATE(4338), 1, + sym_compound_statement, + STATE(7023), 1, sym_function_declarator_seq, - STATE(7789), 1, + STATE(7106), 1, + sym_requires_clause, + STATE(8058), 1, + sym_abstract_function_declarator, + STATE(8111), 1, sym_abstract_declarator, - ACTIONS(8858), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - STATE(7464), 5, + STATE(7113), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, - sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [328417] = 15, + [288846] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(5552), 1, + ACTIONS(5457), 1, anon_sym_STAR, - ACTIONS(5554), 1, + ACTIONS(5459), 1, anon_sym_AMP_AMP, - ACTIONS(5556), 1, + ACTIONS(5461), 1, anon_sym_AMP, - ACTIONS(8329), 1, + ACTIONS(8285), 1, anon_sym_requires, - ACTIONS(9105), 1, + ACTIONS(8765), 1, anon_sym_LBRACK, - ACTIONS(11309), 1, + ACTIONS(10934), 1, anon_sym_LBRACE, - STATE(4110), 1, + STATE(4054), 1, sym_compound_statement, - STATE(4268), 1, + STATE(4330), 1, sym_parameter_list, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(7509), 1, + STATE(7022), 1, sym_requires_clause, - STATE(8216), 1, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(8111), 1, sym_abstract_declarator, - STATE(8217), 1, + STATE(8137), 1, sym_abstract_function_declarator, - STATE(7464), 4, + STATE(7113), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [328466] = 9, + [288895] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9510), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3899), 1, + anon_sym_LBRACE, + ACTIONS(10603), 1, + anon_sym_COMMA, + ACTIONS(10605), 1, anon_sym_LPAREN2, - ACTIONS(9602), 1, - anon_sym_STAR, - STATE(7845), 1, - sym_type_declarator, - STATE(8509), 1, - sym_type_definition_declarators, - STATE(10254), 1, - sym_ms_based_modifier, - STATE(2872), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9508), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - [328503] = 9, + ACTIONS(10607), 1, + anon_sym_SEMI, + ACTIONS(10611), 1, + anon_sym_LBRACK, + ACTIONS(10936), 1, + anon_sym_EQ, + STATE(4184), 1, + sym_parameter_list, + STATE(7260), 1, + sym_function_declarator_seq, + STATE(8214), 1, + sym_initializer_list, + STATE(8459), 1, + sym_gnu_asm_expression, + STATE(8462), 1, + aux_sym_declaration_declarator_repeat1, + STATE(8924), 1, + sym_argument_list, + ACTIONS(10615), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(7162), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [288946] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9510), 1, + ACTIONS(8211), 1, + anon_sym_DASH_GT, + ACTIONS(8213), 1, + anon_sym_requires, + ACTIONS(9642), 1, + anon_sym_LBRACK, + STATE(6717), 1, + sym_trailing_return_type, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9602), 1, - anon_sym_STAR, - STATE(7845), 1, - sym_type_declarator, - STATE(8532), 1, - sym_type_definition_declarators, - STATE(10254), 1, - sym_ms_based_modifier, - STATE(2872), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9508), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - [328540] = 9, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [288985] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8327), 1, + ACTIONS(8211), 1, anon_sym_DASH_GT, - ACTIONS(8329), 1, + ACTIONS(8213), 1, anon_sym_requires, - STATE(7422), 1, + ACTIONS(9783), 1, + anon_sym_LBRACK, + STATE(6720), 1, + sym_trailing_return_type, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, sym_requires_clause, - STATE(7477), 1, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [289024] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8211), 1, + anon_sym_DASH_GT, + ACTIONS(8213), 1, + anon_sym_requires, + ACTIONS(10156), 1, + anon_sym_LBRACK, + STATE(6721), 1, + sym_trailing_return_type, + STATE(6835), 1, sym_function_postfix, - STATE(7478), 1, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [289063] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8211), 1, + anon_sym_DASH_GT, + ACTIONS(8213), 1, + anon_sym_requires, + ACTIONS(10788), 1, + anon_sym_LBRACK, + STATE(6723), 1, sym_trailing_return_type, - ACTIONS(8102), 2, + STATE(6812), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(6369), 2, anon_sym_final, anon_sym_override, - STATE(7282), 2, + STATE(6761), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10895), 8, + ACTIONS(10786), 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, + [289102] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10940), 1, anon_sym_LBRACK, + ACTIONS(10938), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - sym_semgrep_metavar, - [328577] = 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [289127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11376), 1, + ACTIONS(10944), 1, anon_sym_LBRACK, - ACTIONS(11374), 16, + ACTIONS(10942), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -598147,394 +563211,707 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [328602] = 9, + [289152] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9510), 1, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(9602), 1, + ACTIONS(5457), 1, anon_sym_STAR, - STATE(7845), 1, - sym_type_declarator, - STATE(8211), 1, - sym_type_definition_declarators, - STATE(10254), 1, - sym_ms_based_modifier, - STATE(2872), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9508), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - [328639] = 9, + ACTIONS(5459), 1, + anon_sym_AMP_AMP, + ACTIONS(5461), 1, + anon_sym_AMP, + ACTIONS(8285), 1, + anon_sym_requires, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(10932), 1, + anon_sym_LBRACE, + STATE(4330), 1, + sym_parameter_list, + STATE(4405), 1, + sym_compound_statement, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7105), 1, + sym_requires_clause, + STATE(8111), 1, + sym_abstract_declarator, + STATE(8162), 1, + sym_abstract_function_declarator, + STATE(7113), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [289201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9510), 1, + ACTIONS(10948), 1, + anon_sym_LBRACK, + ACTIONS(10946), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9602), 1, - anon_sym_STAR, - STATE(7845), 1, - sym_type_declarator, - STATE(8335), 1, - sym_type_definition_declarators, - STATE(10254), 1, - sym_ms_based_modifier, - STATE(2872), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9508), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - [328676] = 15, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [289226] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10952), 1, + anon_sym_LBRACK, + ACTIONS(10950), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [289251] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10956), 1, + anon_sym_LBRACK, + ACTIONS(10954), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [289276] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(5552), 1, + ACTIONS(5457), 1, anon_sym_STAR, - ACTIONS(5554), 1, + ACTIONS(5459), 1, anon_sym_AMP_AMP, - ACTIONS(5556), 1, + ACTIONS(5461), 1, anon_sym_AMP, - ACTIONS(9105), 1, + ACTIONS(8285), 1, + anon_sym_requires, + ACTIONS(8765), 1, anon_sym_LBRACK, - ACTIONS(11290), 1, - anon_sym_LT, - ACTIONS(11378), 1, + ACTIONS(10958), 1, anon_sym_LBRACE, - STATE(3192), 1, - sym_compound_statement, - STATE(4268), 1, + STATE(4330), 1, sym_parameter_list, - STATE(7331), 1, - sym_template_parameter_list, - STATE(7450), 1, + STATE(5751), 1, + sym_compound_statement, + STATE(7023), 1, sym_function_declarator_seq, - STATE(8216), 1, - sym_abstract_declarator, - STATE(8463), 1, + STATE(7024), 1, + sym_requires_clause, + STATE(7898), 1, sym_abstract_function_declarator, - STATE(7464), 4, + STATE(8111), 1, + sym_abstract_declarator, + STATE(7113), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [328725] = 15, + [289325] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10962), 1, + anon_sym_LBRACK, + ACTIONS(10960), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [289350] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(5552), 1, + ACTIONS(5457), 1, anon_sym_STAR, - ACTIONS(5554), 1, + ACTIONS(5459), 1, anon_sym_AMP_AMP, - ACTIONS(5556), 1, + ACTIONS(5461), 1, anon_sym_AMP, - ACTIONS(8329), 1, + ACTIONS(8285), 1, anon_sym_requires, - ACTIONS(9105), 1, + ACTIONS(8765), 1, anon_sym_LBRACK, - ACTIONS(11372), 1, + ACTIONS(10901), 1, anon_sym_LBRACE, - STATE(2558), 1, + STATE(4217), 1, sym_compound_statement, - STATE(4268), 1, + STATE(4330), 1, sym_parameter_list, - STATE(7450), 1, + STATE(7023), 1, sym_function_declarator_seq, - STATE(7480), 1, + STATE(7033), 1, sym_requires_clause, - STATE(8208), 1, + STATE(8101), 1, sym_abstract_function_declarator, - STATE(8216), 1, + STATE(8111), 1, sym_abstract_declarator, - STATE(7464), 4, + STATE(7113), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [328774] = 9, + [289399] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9510), 1, + ACTIONS(8211), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9752), 1, + anon_sym_requires, + STATE(6769), 1, + sym_trailing_return_type, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + ACTIONS(9708), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9602), 1, - anon_sym_STAR, - STATE(7845), 1, - sym_type_declarator, - STATE(8202), 1, - sym_type_definition_declarators, - STATE(10254), 1, - sym_ms_based_modifier, - STATE(2872), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9508), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - [328811] = 9, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [289438] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9510), 1, + ACTIONS(8211), 1, + anon_sym_DASH_GT, + ACTIONS(9783), 1, + anon_sym_LBRACK, + ACTIONS(10048), 1, + anon_sym_requires, + STATE(6773), 1, + sym_trailing_return_type, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(10005), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9602), 1, - anon_sym_STAR, - STATE(7845), 1, - sym_type_declarator, - STATE(8209), 1, - sym_type_definition_declarators, - STATE(10254), 1, - sym_ms_based_modifier, - STATE(2872), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9508), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - [328848] = 9, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [289477] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8211), 1, + anon_sym_DASH_GT, + ACTIONS(10156), 1, + anon_sym_LBRACK, + ACTIONS(10193), 1, + anon_sym_requires, + STATE(6774), 1, + sym_trailing_return_type, + STATE(6835), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(10179), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [289516] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8211), 1, + anon_sym_DASH_GT, + ACTIONS(10788), 1, + anon_sym_LBRACK, + ACTIONS(10796), 1, + anon_sym_requires, + STATE(6775), 1, + sym_trailing_return_type, + STATE(6812), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(10790), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10786), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [289555] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9510), 1, + ACTIONS(9121), 1, anon_sym_LPAREN2, - ACTIONS(9602), 1, + ACTIONS(9197), 1, anon_sym_STAR, - STATE(7845), 1, + STATE(7492), 1, sym_type_declarator, - STATE(8229), 1, + STATE(7897), 1, sym_type_definition_declarators, - STATE(10254), 1, + STATE(9517), 1, sym_ms_based_modifier, - STATE(2872), 5, + STATE(2300), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9508), 6, + ACTIONS(9119), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - [328885] = 9, + [289592] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10966), 1, + anon_sym_LBRACK, + ACTIONS(10964), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [289617] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10970), 1, + anon_sym_LBRACK, + ACTIONS(10968), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [289642] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9510), 1, + ACTIONS(9121), 1, anon_sym_LPAREN2, - ACTIONS(9602), 1, + ACTIONS(9197), 1, anon_sym_STAR, - STATE(7845), 1, + STATE(7492), 1, sym_type_declarator, - STATE(8238), 1, + STATE(8073), 1, sym_type_definition_declarators, - STATE(10254), 1, + STATE(9517), 1, sym_ms_based_modifier, - STATE(2872), 5, + STATE(2300), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9508), 6, + ACTIONS(9119), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - [328922] = 9, + [289679] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8042), 1, + anon_sym_requires, + ACTIONS(8209), 1, + anon_sym_DASH_GT, + ACTIONS(9783), 1, + anon_sym_LBRACK, + STATE(6707), 1, + sym_trailing_return_type, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 7, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [289718] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9510), 1, + ACTIONS(9121), 1, anon_sym_LPAREN2, - ACTIONS(9602), 1, + ACTIONS(9197), 1, anon_sym_STAR, - STATE(7845), 1, + STATE(7492), 1, sym_type_declarator, - STATE(8256), 1, + STATE(7864), 1, sym_type_definition_declarators, - STATE(10254), 1, + STATE(9517), 1, sym_ms_based_modifier, - STATE(2872), 5, + STATE(2300), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9508), 6, + ACTIONS(9119), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - [328959] = 9, + [289755] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8209), 1, + anon_sym_DASH_GT, + ACTIONS(10156), 1, + anon_sym_LBRACK, + ACTIONS(10182), 1, + anon_sym_requires, + STATE(6750), 1, + sym_trailing_return_type, + STATE(6835), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(10179), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 7, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [289794] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(5457), 1, + anon_sym_STAR, + ACTIONS(5459), 1, + anon_sym_AMP_AMP, + ACTIONS(5461), 1, + anon_sym_AMP, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(10887), 1, + anon_sym_LT, + ACTIONS(10958), 1, + anon_sym_LBRACE, + STATE(4330), 1, + sym_parameter_list, + STATE(5715), 1, + sym_compound_statement, + STATE(6884), 1, + sym_template_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7854), 1, + sym_abstract_function_declarator, + STATE(8111), 1, + sym_abstract_declarator, + STATE(7113), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [289843] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6861), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10846), 13, + 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, + anon_sym_requires, + sym_semgrep_metavar, + [289870] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9510), 1, + ACTIONS(9121), 1, anon_sym_LPAREN2, - ACTIONS(9602), 1, + ACTIONS(9197), 1, anon_sym_STAR, - STATE(7845), 1, + STATE(7492), 1, sym_type_declarator, - STATE(8261), 1, + STATE(7900), 1, sym_type_definition_declarators, - STATE(10254), 1, + STATE(9517), 1, sym_ms_based_modifier, - STATE(2872), 5, + STATE(2300), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9508), 6, + ACTIONS(9119), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - [328996] = 15, + [289907] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(5552), 1, + ACTIONS(5457), 1, anon_sym_STAR, - ACTIONS(5554), 1, + ACTIONS(5459), 1, anon_sym_AMP_AMP, - ACTIONS(5556), 1, + ACTIONS(5461), 1, anon_sym_AMP, - ACTIONS(8329), 1, - anon_sym_requires, - ACTIONS(9105), 1, + ACTIONS(8765), 1, anon_sym_LBRACK, - ACTIONS(11303), 1, + ACTIONS(10887), 1, + anon_sym_LT, + ACTIONS(10899), 1, anon_sym_LBRACE, - STATE(4268), 1, + STATE(4330), 1, sym_parameter_list, - STATE(5701), 1, + STATE(5179), 1, sym_compound_statement, - STATE(7450), 1, + STATE(6830), 1, + sym_template_parameter_list, + STATE(7023), 1, sym_function_declarator_seq, - STATE(7458), 1, - sym_requires_clause, - STATE(8216), 1, - sym_abstract_declarator, - STATE(8301), 1, + STATE(8002), 1, sym_abstract_function_declarator, - STATE(7464), 4, + STATE(8111), 1, + sym_abstract_declarator, + STATE(7113), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [329045] = 9, + [289956] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9510), 1, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(9602), 1, + ACTIONS(5457), 1, anon_sym_STAR, - STATE(7845), 1, - sym_type_declarator, - STATE(8278), 1, - sym_type_definition_declarators, - STATE(10254), 1, - sym_ms_based_modifier, - STATE(2872), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9508), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - [329082] = 9, + ACTIONS(5459), 1, + anon_sym_AMP_AMP, + ACTIONS(5461), 1, + anon_sym_AMP, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(10887), 1, + anon_sym_LT, + ACTIONS(10934), 1, + anon_sym_LBRACE, + STATE(3951), 1, + sym_compound_statement, + STATE(4330), 1, + sym_parameter_list, + STATE(6872), 1, + sym_template_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(8111), 1, + sym_abstract_declarator, + STATE(8123), 1, + sym_abstract_function_declarator, + STATE(7113), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [290005] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9510), 1, + ACTIONS(9121), 1, anon_sym_LPAREN2, - ACTIONS(9602), 1, + ACTIONS(9197), 1, anon_sym_STAR, - STATE(7845), 1, + STATE(7492), 1, sym_type_declarator, - STATE(8285), 1, + STATE(8014), 1, sym_type_definition_declarators, - STATE(10254), 1, + STATE(9517), 1, sym_ms_based_modifier, - STATE(2872), 5, + STATE(2300), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9508), 6, + ACTIONS(9119), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - [329119] = 3, + [290042] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9783), 1, + anon_sym_LBRACK, + ACTIONS(9781), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [290067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10929), 1, + ACTIONS(10974), 1, anon_sym_LBRACK, - ACTIONS(10927), 16, + ACTIONS(10972), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -598551,619 +563928,919 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [329144] = 9, + [290092] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8327), 1, + ACTIONS(8259), 1, anon_sym_DASH_GT, - ACTIONS(10264), 1, + ACTIONS(8280), 1, anon_sym_requires, - STATE(7422), 1, - sym_requires_clause, - STATE(7444), 1, + ACTIONS(9783), 1, + anon_sym_LBRACK, + STATE(6814), 1, sym_function_postfix, - STATE(7454), 1, + STATE(6852), 1, + sym_requires_clause, + STATE(7160), 1, sym_trailing_return_type, - ACTIONS(10141), 2, + ACTIONS(6369), 2, anon_sym_final, anon_sym_override, - STATE(7282), 2, + STATE(6761), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10101), 8, - anon_sym_COMMA, + ACTIONS(9781), 6, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COLON, - sym_semgrep_metavar, - [329181] = 15, + anon_sym_try, + [290130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, - anon_sym_LPAREN2, - ACTIONS(5552), 1, - anon_sym_STAR, - ACTIONS(5554), 1, + ACTIONS(10976), 2, anon_sym_AMP_AMP, - ACTIONS(5556), 1, - anon_sym_AMP, - ACTIONS(9105), 1, - anon_sym_LBRACK, - ACTIONS(11290), 1, - anon_sym_LT, - ACTIONS(11380), 1, + anon_sym_and, + ACTIONS(6755), 14, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(4268), 1, - sym_parameter_list, - STATE(6930), 1, - sym_compound_statement, - STATE(7330), 1, - sym_template_parameter_list, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(8216), 1, - sym_abstract_declarator, - STATE(8228), 1, - sym_abstract_function_declarator, - STATE(7464), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [329230] = 15, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [290154] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(10981), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7071), 1, + sym_function_postfix, + ACTIONS(10978), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10782), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(5552), 1, - anon_sym_STAR, - ACTIONS(5554), 1, - anon_sym_AMP_AMP, - ACTIONS(5556), 1, - anon_sym_AMP, - ACTIONS(9105), 1, - anon_sym_LBRACK, - ACTIONS(11290), 1, - anon_sym_LT, - ACTIONS(11382), 1, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(4268), 1, - sym_parameter_list, - STATE(5563), 1, - sym_compound_statement, - STATE(7336), 1, - sym_template_parameter_list, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(8216), 1, - sym_abstract_declarator, - STATE(8386), 1, - sym_abstract_function_declarator, - STATE(7464), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [329279] = 15, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [290186] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, - anon_sym_LPAREN2, - ACTIONS(5552), 1, - anon_sym_STAR, - ACTIONS(5554), 1, - anon_sym_AMP_AMP, - ACTIONS(5556), 1, - anon_sym_AMP, - ACTIONS(9105), 1, - anon_sym_LBRACK, - ACTIONS(11290), 1, - anon_sym_LT, - ACTIONS(11294), 1, - anon_sym_LBRACE, - STATE(4268), 1, - sym_parameter_list, - STATE(4636), 1, - sym_compound_statement, - STATE(7255), 1, - sym_template_parameter_list, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(8216), 1, - sym_abstract_declarator, - STATE(8445), 1, - sym_abstract_function_declarator, - STATE(7464), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [329328] = 15, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10984), 1, + sym_identifier, + ACTIONS(10986), 1, + sym_primitive_type, + STATE(2573), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7556), 1, + sym_scope_resolution, + STATE(3124), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(3324), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [290226] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(5631), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(5552), 1, - anon_sym_STAR, - ACTIONS(5554), 1, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(5556), 1, - anon_sym_AMP, - ACTIONS(9105), 1, - anon_sym_LBRACK, - ACTIONS(11290), 1, - anon_sym_LT, - ACTIONS(11384), 1, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(3330), 1, - sym_compound_statement, - STATE(4268), 1, - sym_parameter_list, - STATE(7340), 1, - sym_template_parameter_list, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(8216), 1, - sym_abstract_declarator, - STATE(8312), 1, - sym_abstract_function_declarator, - STATE(7464), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [329377] = 15, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [290248] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, - anon_sym_LPAREN2, - ACTIONS(5552), 1, - anon_sym_STAR, - ACTIONS(5554), 1, - anon_sym_AMP_AMP, - ACTIONS(5556), 1, - anon_sym_AMP, - ACTIONS(8329), 1, - anon_sym_requires, - ACTIONS(9105), 1, + ACTIONS(13), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21), 1, + sym_preproc_directive, + ACTIONS(10988), 1, + sym_identifier, + ACTIONS(10990), 1, + aux_sym_preproc_if_token1, + ACTIONS(10992), 1, + aux_sym_preproc_ifdef_token1, + ACTIONS(10994), 1, + aux_sym_preproc_ifdef_token2, + ACTIONS(10996), 1, + anon_sym_RBRACE, + ACTIONS(10998), 1, + sym_semgrep_metavar, + STATE(9967), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(7156), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + STATE(8947), 3, + sym_preproc_call, + sym_enumerator, + sym_semgrep_ellipsis, + [290290] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(11000), 1, + sym_identifier, + ACTIONS(11002), 1, + sym_primitive_type, + STATE(3644), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7528), 1, + sym_scope_resolution, + STATE(3599), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4316), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [290330] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21), 1, + sym_preproc_directive, + ACTIONS(10988), 1, + sym_identifier, + ACTIONS(10990), 1, + aux_sym_preproc_if_token1, + ACTIONS(10992), 1, + aux_sym_preproc_ifdef_token1, + ACTIONS(10994), 1, + aux_sym_preproc_ifdef_token2, + ACTIONS(11004), 1, + anon_sym_RBRACE, + ACTIONS(11006), 1, + sym_semgrep_metavar, + STATE(9665), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(7004), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + STATE(9009), 3, + sym_preproc_call, + sym_enumerator, + sym_semgrep_ellipsis, + [290372] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21), 1, + sym_preproc_directive, + ACTIONS(10988), 1, + sym_identifier, + ACTIONS(10990), 1, + aux_sym_preproc_if_token1, + ACTIONS(10992), 1, + aux_sym_preproc_ifdef_token1, + ACTIONS(10994), 1, + aux_sym_preproc_ifdef_token2, + ACTIONS(11008), 1, + anon_sym_RBRACE, + ACTIONS(11010), 1, + sym_semgrep_metavar, + STATE(9473), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6980), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + STATE(9086), 3, + sym_preproc_call, + sym_enumerator, + sym_semgrep_ellipsis, + [290414] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8259), 1, + anon_sym_DASH_GT, + ACTIONS(9783), 1, anon_sym_LBRACK, - ACTIONS(11380), 1, - anon_sym_LBRACE, - STATE(4268), 1, - sym_parameter_list, - STATE(7011), 1, - sym_compound_statement, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(7494), 1, + ACTIONS(10096), 1, + anon_sym_requires, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, sym_requires_clause, - STATE(8216), 1, - sym_abstract_declarator, - STATE(8237), 1, - sym_abstract_function_declarator, - STATE(7464), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [329426] = 15, + STATE(7203), 1, + sym_trailing_return_type, + ACTIONS(10005), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [290452] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, - anon_sym_LPAREN2, - ACTIONS(5552), 1, - anon_sym_STAR, - ACTIONS(5554), 1, - anon_sym_AMP_AMP, - ACTIONS(5556), 1, - anon_sym_AMP, - ACTIONS(8329), 1, + ACTIONS(13), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21), 1, + sym_preproc_directive, + ACTIONS(10988), 1, + sym_identifier, + ACTIONS(10990), 1, + aux_sym_preproc_if_token1, + ACTIONS(10992), 1, + aux_sym_preproc_ifdef_token1, + ACTIONS(10994), 1, + aux_sym_preproc_ifdef_token2, + ACTIONS(11012), 1, + anon_sym_RBRACE, + ACTIONS(11014), 1, + sym_semgrep_metavar, + STATE(9509), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(7156), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + STATE(8959), 3, + sym_preproc_call, + sym_enumerator, + sym_semgrep_ellipsis, + [290494] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8259), 1, + anon_sym_DASH_GT, + ACTIONS(8280), 1, anon_sym_requires, - ACTIONS(9105), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(11378), 1, - anon_sym_LBRACE, - STATE(3091), 1, - sym_compound_statement, - STATE(4268), 1, - sym_parameter_list, - STATE(7426), 1, + STATE(6852), 1, sym_requires_clause, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(8216), 1, - sym_abstract_declarator, - STATE(8514), 1, - sym_abstract_function_declarator, - STATE(7464), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [329475] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5550), 1, + STATE(6904), 1, + sym_function_postfix, + STATE(7220), 1, + sym_trailing_return_type, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 6, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(5552), 1, - anon_sym_STAR, - ACTIONS(5554), 1, - anon_sym_AMP_AMP, - ACTIONS(5556), 1, - anon_sym_AMP, - ACTIONS(9105), 1, - anon_sym_LBRACK, - ACTIONS(11290), 1, - anon_sym_LT, - ACTIONS(11358), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - STATE(4268), 1, - sym_parameter_list, - STATE(5367), 1, - sym_compound_statement, - STATE(7294), 1, - sym_template_parameter_list, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(8216), 1, - sym_abstract_declarator, - STATE(8277), 1, - sym_abstract_function_declarator, - STATE(7464), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [329524] = 3, + anon_sym_try, + [290532] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10897), 1, - anon_sym_LBRACK, - ACTIONS(10895), 16, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(11016), 1, + sym_identifier, + ACTIONS(11018), 1, + sym_primitive_type, + STATE(2826), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7542), 1, + sym_scope_resolution, + STATE(3671), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(9873), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [290572] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21), 1, + sym_preproc_directive, + ACTIONS(10988), 1, + sym_identifier, + ACTIONS(10990), 1, + aux_sym_preproc_if_token1, + ACTIONS(10992), 1, + aux_sym_preproc_ifdef_token1, + ACTIONS(10994), 1, + aux_sym_preproc_ifdef_token2, + ACTIONS(11020), 1, + anon_sym_RBRACE, + ACTIONS(11022), 1, + sym_semgrep_metavar, + STATE(9292), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6966), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + STATE(8886), 3, + sym_preproc_call, + sym_enumerator, + sym_semgrep_ellipsis, + [290614] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7923), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7068), 1, + sym_function_postfix, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [329549] = 15, + [290646] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, - anon_sym_LPAREN2, - ACTIONS(5552), 1, - anon_sym_STAR, - ACTIONS(5554), 1, - anon_sym_AMP_AMP, - ACTIONS(5556), 1, - anon_sym_AMP, - ACTIONS(9105), 1, - anon_sym_LBRACK, - ACTIONS(11290), 1, - anon_sym_LT, - ACTIONS(11386), 1, - anon_sym_LBRACE, - STATE(4268), 1, - sym_parameter_list, - STATE(7337), 1, - sym_template_parameter_list, - STATE(7363), 1, - sym_compound_statement, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(8216), 1, - sym_abstract_declarator, - STATE(8255), 1, - sym_abstract_function_declarator, - STATE(7464), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [329598] = 3, + ACTIONS(13), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21), 1, + sym_preproc_directive, + ACTIONS(10988), 1, + sym_identifier, + ACTIONS(10990), 1, + aux_sym_preproc_if_token1, + ACTIONS(10992), 1, + aux_sym_preproc_ifdef_token1, + ACTIONS(10994), 1, + aux_sym_preproc_ifdef_token2, + ACTIONS(11024), 1, + anon_sym_RBRACE, + ACTIONS(11026), 1, + sym_semgrep_metavar, + STATE(9678), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6937), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + STATE(9013), 3, + sym_preproc_call, + sym_enumerator, + sym_semgrep_ellipsis, + [290688] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(11390), 1, - anon_sym_LBRACK, - ACTIONS(11388), 16, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(11028), 1, + sym_identifier, + ACTIONS(11030), 1, + sym_primitive_type, + STATE(2587), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7544), 1, + sym_scope_resolution, + STATE(3194), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(9929), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [290728] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(11032), 1, + sym_identifier, + ACTIONS(11034), 1, + sym_primitive_type, + STATE(2439), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7549), 1, + sym_scope_resolution, + STATE(2359), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(9893), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [290768] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5627), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [329623] = 15, + [290790] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, - anon_sym_LPAREN2, - ACTIONS(5552), 1, - anon_sym_STAR, - ACTIONS(5554), 1, - anon_sym_AMP_AMP, - ACTIONS(5556), 1, - anon_sym_AMP, - ACTIONS(8329), 1, - anon_sym_requires, - ACTIONS(9105), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(11036), 1, + sym_identifier, + ACTIONS(11038), 1, + sym_primitive_type, + STATE(2110), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7516), 1, + sym_scope_resolution, + STATE(2702), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(8349), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [290830] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21), 1, + sym_preproc_directive, + ACTIONS(10988), 1, + sym_identifier, + ACTIONS(10990), 1, + aux_sym_preproc_if_token1, + ACTIONS(10992), 1, + aux_sym_preproc_ifdef_token1, + ACTIONS(10994), 1, + aux_sym_preproc_ifdef_token2, + ACTIONS(11040), 1, + anon_sym_RBRACE, + ACTIONS(11042), 1, + sym_semgrep_metavar, + STATE(9753), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6950), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + STATE(8789), 3, + sym_preproc_call, + sym_enumerator, + sym_semgrep_ellipsis, + [290872] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(11044), 1, + sym_identifier, + ACTIONS(11046), 1, + sym_primitive_type, + STATE(6304), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7572), 1, + sym_scope_resolution, + STATE(5031), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(8368), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [290912] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21), 1, + sym_preproc_directive, + ACTIONS(10988), 1, + sym_identifier, + ACTIONS(10990), 1, + aux_sym_preproc_if_token1, + ACTIONS(10992), 1, + aux_sym_preproc_ifdef_token1, + ACTIONS(10994), 1, + aux_sym_preproc_ifdef_token2, + ACTIONS(11048), 1, + anon_sym_RBRACE, + ACTIONS(11050), 1, + sym_semgrep_metavar, + STATE(9990), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6960), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + STATE(8708), 3, + sym_preproc_call, + sym_enumerator, + sym_semgrep_ellipsis, + [290954] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10986), 1, + sym_primitive_type, + ACTIONS(11052), 1, + sym_identifier, + STATE(2573), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7558), 1, + sym_scope_resolution, + STATE(3124), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(3324), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [290994] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8259), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(11382), 1, - anon_sym_LBRACE, - STATE(4268), 1, - sym_parameter_list, - STATE(5602), 1, - sym_compound_statement, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(7492), 1, + ACTIONS(9793), 1, + anon_sym_requires, + STATE(6852), 1, sym_requires_clause, - STATE(8216), 1, - sym_abstract_declarator, - STATE(8415), 1, - sym_abstract_function_declarator, - STATE(7464), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [329672] = 15, + STATE(6904), 1, + sym_function_postfix, + STATE(7191), 1, + sym_trailing_return_type, + ACTIONS(9708), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [291032] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, - anon_sym_LPAREN2, - ACTIONS(5552), 1, - anon_sym_STAR, - ACTIONS(5554), 1, - anon_sym_AMP_AMP, - ACTIONS(5556), 1, - anon_sym_AMP, - ACTIONS(8329), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(11054), 1, + sym_identifier, + ACTIONS(11056), 1, + sym_primitive_type, + STATE(5100), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7551), 1, + sym_scope_resolution, + STATE(5031), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(8392), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [291072] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7923), 1, anon_sym_requires, - ACTIONS(9105), 1, - anon_sym_LBRACK, - ACTIONS(11386), 1, - anon_sym_LBRACE, - STATE(4268), 1, - sym_parameter_list, - STATE(7371), 1, - sym_compound_statement, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(7510), 1, + STATE(7017), 1, + sym_function_postfix, + STATE(7021), 1, sym_requires_clause, - STATE(8216), 1, - sym_abstract_declarator, - STATE(8260), 1, - sym_abstract_function_declarator, - STATE(7464), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [329721] = 3, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10786), 9, + 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, + [291104] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10469), 1, - anon_sym_LBRACK, - ACTIONS(10464), 16, + ACTIONS(5643), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [329746] = 16, + [291126] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10993), 1, - anon_sym_COMMA, - ACTIONS(10995), 1, + ACTIONS(8259), 1, + anon_sym_DASH_GT, + ACTIONS(8280), 1, + anon_sym_requires, + ACTIONS(10788), 1, + anon_sym_LBRACK, + STATE(6812), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7174), 1, + sym_trailing_return_type, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10786), 6, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(10997), 1, anon_sym_SEMI, - ACTIONS(11001), 1, - anon_sym_LBRACK, - ACTIONS(11392), 1, - anon_sym_EQ, - STATE(4388), 1, - sym_parameter_list, - STATE(7652), 1, - sym_function_declarator_seq, - STATE(8841), 1, - sym_gnu_asm_expression, - STATE(8883), 1, - sym_initializer_list, - STATE(8939), 1, - aux_sym_declaration_declarator_repeat1, - STATE(9357), 1, - sym_argument_list, - ACTIONS(11005), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(7677), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [329797] = 15, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [291164] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11058), 1, + sym_identifier, + ACTIONS(5562), 2, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(6935), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(11061), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(11064), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [291194] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(5552), 1, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(9773), 1, anon_sym_STAR, - ACTIONS(5554), 1, + ACTIONS(9775), 1, anon_sym_AMP_AMP, - ACTIONS(5556), 1, + ACTIONS(9777), 1, anon_sym_AMP, - ACTIONS(8329), 1, - anon_sym_requires, - ACTIONS(9105), 1, - anon_sym_LBRACK, - ACTIONS(11384), 1, - anon_sym_LBRACE, - STATE(3338), 1, - sym_compound_statement, - STATE(4268), 1, + STATE(4398), 1, sym_parameter_list, - STATE(7450), 1, + STATE(7023), 1, sym_function_declarator_seq, - STATE(7504), 1, - sym_requires_clause, - STATE(8216), 1, + STATE(7658), 1, sym_abstract_declarator, - STATE(8318), 1, - sym_abstract_function_declarator, - STATE(7464), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [329846] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9510), 1, - anon_sym_LPAREN2, - ACTIONS(9602), 1, - anon_sym_STAR, - STATE(7845), 1, - sym_type_declarator, - STATE(8417), 1, - sym_type_definition_declarators, - STATE(10254), 1, - sym_ms_based_modifier, - STATE(2872), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9508), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - [329883] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6351), 16, + ACTIONS(8561), 3, + 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_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [329905] = 11, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [291234] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(11394), 1, + ACTIONS(13), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21), 1, + sym_preproc_directive, + ACTIONS(10988), 1, sym_identifier, - ACTIONS(11398), 1, - sym_primitive_type, - STATE(2405), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7941), 1, - sym_scope_resolution, - STATE(2999), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(11396), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [329945] = 11, + ACTIONS(10990), 1, + aux_sym_preproc_if_token1, + ACTIONS(10992), 1, + aux_sym_preproc_ifdef_token1, + ACTIONS(10994), 1, + aux_sym_preproc_ifdef_token2, + ACTIONS(11067), 1, + anon_sym_RBRACE, + ACTIONS(11069), 1, + sym_semgrep_metavar, + STATE(9305), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(7156), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + STATE(8682), 3, + sym_preproc_call, + sym_enumerator, + sym_semgrep_ellipsis, + [291276] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(11400), 1, + ACTIONS(11071), 1, sym_identifier, - ACTIONS(11404), 1, + ACTIONS(11073), 1, sym_primitive_type, - STATE(2769), 1, + STATE(2159), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7909), 1, + STATE(7557), 1, sym_scope_resolution, - STATE(3912), 2, + STATE(2359), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(9982), 3, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(11402), 4, + ACTIONS(9821), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [329985] = 2, + [291316] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6498), 16, + ACTIONS(5609), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -599180,301 +564857,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [330007] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8104), 1, - anon_sym_requires, - STATE(7422), 1, - sym_requires_clause, - STATE(7444), 1, - sym_function_postfix, - ACTIONS(8102), 2, - anon_sym_final, - anon_sym_override, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10101), 9, - 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, - [330039] = 2, + [291338] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6362), 16, + ACTIONS(6753), 1, + anon_sym_AMP, + ACTIONS(11075), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6755), 13, 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_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_COLON, anon_sym_or, - anon_sym_and, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [330061] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9510), 1, - anon_sym_LPAREN2, - ACTIONS(9594), 1, - anon_sym_STAR, - STATE(8010), 1, - sym_type_declarator, - STATE(10178), 1, - sym_ms_based_modifier, - STATE(2872), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9508), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - [330095] = 2, + [291364] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6502), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(8259), 1, + anon_sym_DASH_GT, + ACTIONS(10156), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, + ACTIONS(10286), 1, + anon_sym_requires, + STATE(6835), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7205), 1, + sym_trailing_return_type, + ACTIONS(10179), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [330117] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10808), 1, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 6, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(11408), 1, - anon_sym_LBRACK, - STATE(4267), 1, - sym_parameter_list, - STATE(7290), 1, - sym_function_declarator_seq, - ACTIONS(11406), 12, - anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, anon_sym_try, - anon_sym_requires, - [330147] = 11, + [291402] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(11410), 1, + ACTIONS(13), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21), 1, + sym_preproc_directive, + ACTIONS(10988), 1, sym_identifier, - ACTIONS(11414), 1, - sym_primitive_type, - STATE(7606), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7904), 1, - sym_scope_resolution, - STATE(4799), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(11412), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [330187] = 8, + ACTIONS(10990), 1, + aux_sym_preproc_if_token1, + ACTIONS(10992), 1, + aux_sym_preproc_ifdef_token1, + ACTIONS(10994), 1, + aux_sym_preproc_ifdef_token2, + ACTIONS(11077), 1, + anon_sym_RBRACE, + ACTIONS(11079), 1, + sym_semgrep_metavar, + STATE(9742), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6955), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + STATE(8788), 3, + sym_preproc_call, + sym_enumerator, + sym_semgrep_ellipsis, + [291444] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9510), 1, + ACTIONS(9121), 1, anon_sym_LPAREN2, - ACTIONS(9594), 1, + ACTIONS(9197), 1, anon_sym_STAR, - STATE(8024), 1, + STATE(7689), 1, sym_type_declarator, - STATE(10178), 1, + STATE(9517), 1, sym_ms_based_modifier, - STATE(2872), 5, + STATE(2300), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9508), 6, + ACTIONS(9119), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - [330221] = 7, + [291478] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10055), 1, + ACTIONS(8259), 1, + anon_sym_DASH_GT, + ACTIONS(8280), 1, anon_sym_requires, - STATE(7422), 1, - sym_requires_clause, - STATE(7479), 1, + ACTIONS(10156), 1, + anon_sym_LBRACK, + STATE(6835), 1, sym_function_postfix, - ACTIONS(10052), 2, + STATE(6852), 1, + sym_requires_clause, + STATE(7172), 1, + sym_trailing_return_type, + ACTIONS(6369), 2, anon_sym_final, anon_sym_override, - STATE(7282), 2, + STATE(6761), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(9897), 9, - anon_sym_COMMA, + ACTIONS(10154), 6, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [330253] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11408), 1, - anon_sym_LBRACK, - STATE(3952), 1, - sym_parameter_list, - STATE(7290), 1, - sym_function_declarator_seq, - ACTIONS(11416), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [330283] = 8, + [291516] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9510), 1, + ACTIONS(9121), 1, anon_sym_LPAREN2, - ACTIONS(9594), 1, + ACTIONS(9197), 1, anon_sym_STAR, - STATE(8007), 1, + STATE(7704), 1, sym_type_declarator, - STATE(10178), 1, + STATE(9517), 1, sym_ms_based_modifier, - STATE(2872), 5, + STATE(2300), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9508), 6, + ACTIONS(9119), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - [330317] = 2, + [291550] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6370), 16, - 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_or, - anon_sym_and, + ACTIONS(7923), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7094), 1, + sym_function_postfix, + ACTIONS(7921), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [330339] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6470), 16, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 9, 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_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [330361] = 4, + [291582] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11418), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11420), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6374), 12, + ACTIONS(9788), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7073), 1, + sym_function_postfix, + ACTIONS(9785), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -599482,15 +565065,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [330387] = 2, + [291614] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21), 1, + sym_preproc_directive, + ACTIONS(10988), 1, + sym_identifier, + ACTIONS(10990), 1, + aux_sym_preproc_if_token1, + ACTIONS(10992), 1, + aux_sym_preproc_ifdef_token1, + ACTIONS(10994), 1, + aux_sym_preproc_ifdef_token2, + ACTIONS(11081), 1, + anon_sym_RBRACE, + ACTIONS(11083), 1, + sym_semgrep_metavar, + STATE(9929), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6911), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + STATE(9067), 3, + sym_preproc_call, + sym_enumerator, + sym_semgrep_ellipsis, + [291656] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3094), 16, + ACTIONS(2357), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -599507,89 +565117,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [330409] = 11, + [291678] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21), 1, + sym_preproc_directive, + ACTIONS(10988), 1, + sym_identifier, + ACTIONS(10990), 1, + aux_sym_preproc_if_token1, + ACTIONS(10992), 1, + aux_sym_preproc_ifdef_token1, + ACTIONS(10994), 1, + aux_sym_preproc_ifdef_token2, + ACTIONS(11085), 1, + anon_sym_RBRACE, + ACTIONS(11087), 1, + sym_semgrep_metavar, + STATE(9117), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(7156), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + STATE(8821), 3, + sym_preproc_call, + sym_enumerator, + sym_semgrep_ellipsis, + [291720] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(11422), 1, + ACTIONS(11089), 1, sym_identifier, - ACTIONS(11426), 1, + ACTIONS(11091), 1, sym_primitive_type, - STATE(6369), 1, + STATE(3609), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7876), 1, + STATE(7571), 1, sym_scope_resolution, - STATE(3359), 2, + STATE(3599), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(9982), 3, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(11424), 4, + ACTIONS(57), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [330449] = 8, + [291760] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9510), 1, + ACTIONS(5593), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9594), 1, - anon_sym_STAR, - STATE(8040), 1, - sym_type_declarator, - STATE(10178), 1, - sym_ms_based_modifier, - STATE(2872), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9508), 6, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - [330483] = 6, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [291782] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(11428), 1, + ACTIONS(13), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21), 1, + sym_preproc_directive, + ACTIONS(10988), 1, sym_identifier, - ACTIONS(5630), 2, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(7362), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(11431), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(11434), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [330513] = 2, + ACTIONS(10990), 1, + aux_sym_preproc_if_token1, + ACTIONS(10992), 1, + aux_sym_preproc_ifdef_token1, + ACTIONS(10994), 1, + aux_sym_preproc_ifdef_token2, + ACTIONS(11093), 1, + anon_sym_RBRACE, + ACTIONS(11095), 1, + sym_semgrep_metavar, + STATE(9780), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6982), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + STATE(8670), 3, + sym_preproc_call, + sym_enumerator, + sym_semgrep_ellipsis, + [291824] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6474), 16, + ACTIONS(2353), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -599606,150 +565246,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [330535] = 11, + [291846] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(11437), 1, + ACTIONS(13), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21), 1, + sym_preproc_directive, + ACTIONS(10988), 1, sym_identifier, - ACTIONS(11441), 1, - sym_primitive_type, - STATE(6307), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, - sym_scope_resolution, - STATE(2607), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(11439), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [330575] = 11, + ACTIONS(10990), 1, + aux_sym_preproc_if_token1, + ACTIONS(10992), 1, + aux_sym_preproc_ifdef_token1, + ACTIONS(10994), 1, + aux_sym_preproc_ifdef_token2, + ACTIONS(11097), 1, + anon_sym_RBRACE, + ACTIONS(11099), 1, + sym_semgrep_metavar, + STATE(10006), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(7156), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + STATE(8810), 3, + sym_preproc_call, + sym_enumerator, + sym_semgrep_ellipsis, + [291888] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(11441), 1, - sym_primitive_type, - ACTIONS(11443), 1, + ACTIONS(11101), 1, sym_identifier, - STATE(3943), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7902), 1, - sym_scope_resolution, - STATE(2607), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(10357), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [330615] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(11426), 1, + ACTIONS(11103), 1, sym_primitive_type, - ACTIONS(11445), 1, - sym_identifier, - STATE(4710), 1, + STATE(2756), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7878), 1, + STATE(7552), 1, sym_scope_resolution, - STATE(3359), 2, + STATE(3330), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(9982), 3, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(11447), 4, + ACTIONS(9949), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [330655] = 11, + [291928] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, - anon_sym_LPAREN2, - ACTIONS(9105), 1, - anon_sym_LBRACK, - ACTIONS(10147), 1, - anon_sym_STAR, - ACTIONS(10149), 1, - anon_sym_AMP_AMP, - ACTIONS(10151), 1, - anon_sym_AMP, - STATE(4696), 1, - sym_parameter_list, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(8037), 1, - sym_abstract_declarator, - ACTIONS(8858), 3, - anon_sym_DOT_DOT_DOT, + ACTIONS(9660), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7068), 1, + sym_function_postfix, + ACTIONS(9657), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 9, anon_sym_COMMA, - anon_sym_GT2, - STATE(7464), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [330695] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10808), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(11408), 1, - anon_sym_LBRACK, - STATE(4267), 1, - sym_parameter_list, - STATE(7290), 1, - sym_function_declarator_seq, - ACTIONS(11449), 12, - anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [330725] = 2, + [291960] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6506), 16, + ACTIONS(5597), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -599766,34 +565350,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [330747] = 6, + [291982] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11408), 1, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(7816), 1, + anon_sym_LT, + STATE(7125), 1, + sym_template_argument_list, + ACTIONS(8341), 2, anon_sym_LBRACK, - STATE(4267), 1, - sym_parameter_list, - STATE(7290), 1, - sym_function_declarator_seq, - ACTIONS(11451), 12, + anon_sym_COLON, + ACTIONS(5409), 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_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [330777] = 2, + [292012] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21), 1, + sym_preproc_directive, + ACTIONS(10988), 1, + sym_identifier, + ACTIONS(10990), 1, + aux_sym_preproc_if_token1, + ACTIONS(10992), 1, + aux_sym_preproc_ifdef_token1, + ACTIONS(10994), 1, + aux_sym_preproc_ifdef_token2, + ACTIONS(11105), 1, + anon_sym_RBRACE, + ACTIONS(11107), 1, + sym_semgrep_metavar, + STATE(9235), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(7156), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + STATE(8727), 3, + sym_preproc_call, + sym_enumerator, + sym_semgrep_ellipsis, + [292054] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21), 1, + sym_preproc_directive, + ACTIONS(10988), 1, + sym_identifier, + ACTIONS(10990), 1, + aux_sym_preproc_if_token1, + ACTIONS(10992), 1, + aux_sym_preproc_ifdef_token1, + ACTIONS(10994), 1, + aux_sym_preproc_ifdef_token2, + ACTIONS(11109), 1, + anon_sym_RBRACE, + ACTIONS(11111), 1, + sym_semgrep_metavar, + STATE(9882), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6984), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + STATE(9048), 3, + sym_preproc_call, + sym_enumerator, + sym_semgrep_ellipsis, + [292096] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21), 1, + sym_preproc_directive, + ACTIONS(10988), 1, + sym_identifier, + ACTIONS(10990), 1, + aux_sym_preproc_if_token1, + ACTIONS(10992), 1, + aux_sym_preproc_ifdef_token1, + ACTIONS(10994), 1, + aux_sym_preproc_ifdef_token2, + ACTIONS(11113), 1, + anon_sym_RBRACE, + ACTIONS(11115), 1, + sym_semgrep_metavar, + STATE(9629), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(7156), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + STATE(8747), 3, + sym_preproc_call, + sym_enumerator, + sym_semgrep_ellipsis, + [292138] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6510), 16, + ACTIONS(5613), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -599810,39 +565484,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [330799] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(11414), 1, - sym_primitive_type, - ACTIONS(11453), 1, - sym_identifier, - STATE(5497), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7904), 1, - sym_scope_resolution, - STATE(4799), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(11455), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [330839] = 2, + [292160] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6484), 16, + ACTIONS(5601), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -599859,559 +565504,406 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [330861] = 6, + [292182] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11408), 1, - anon_sym_LBRACK, - STATE(4267), 1, - sym_parameter_list, - STATE(7290), 1, - sym_function_declarator_seq, - ACTIONS(11457), 12, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(11117), 1, + sym_identifier, + ACTIONS(5550), 2, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [330891] = 11, + STATE(6981), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(11119), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(11121), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [292212] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(11459), 1, + ACTIONS(13), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21), 1, + sym_preproc_directive, + ACTIONS(10988), 1, sym_identifier, - ACTIONS(11461), 1, - sym_primitive_type, - STATE(2087), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7919), 1, - sym_scope_resolution, - STATE(2850), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(10173), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [330931] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11408), 1, - anon_sym_LBRACK, - STATE(4267), 1, - sym_parameter_list, - STATE(7290), 1, - sym_function_declarator_seq, - ACTIONS(11463), 12, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [330961] = 2, + ACTIONS(10990), 1, + aux_sym_preproc_if_token1, + ACTIONS(10992), 1, + aux_sym_preproc_ifdef_token1, + ACTIONS(10994), 1, + aux_sym_preproc_ifdef_token2, + ACTIONS(11123), 1, + anon_sym_RBRACE, + ACTIONS(11125), 1, + sym_semgrep_metavar, + STATE(9421), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(7156), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + STATE(8935), 3, + sym_preproc_call, + sym_enumerator, + sym_semgrep_ellipsis, + [292254] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(8259), 1, + anon_sym_DASH_GT, + ACTIONS(10788), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [330983] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8104), 1, + ACTIONS(11127), 1, anon_sym_requires, - STATE(7422), 1, - sym_requires_clause, - STATE(7483), 1, + STATE(6812), 1, sym_function_postfix, - ACTIONS(8102), 2, + STATE(6852), 1, + sym_requires_clause, + STATE(7206), 1, + sym_trailing_return_type, + ACTIONS(10790), 2, anon_sym_final, anon_sym_override, - STATE(7282), 2, + STATE(6761), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10927), 9, - anon_sym_COMMA, + ACTIONS(10786), 6, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [331015] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11408), 1, - anon_sym_LBRACK, - STATE(4267), 1, - sym_parameter_list, - STATE(7290), 1, - sym_function_declarator_seq, - ACTIONS(11465), 12, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [331045] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11408), 1, - anon_sym_LBRACK, - STATE(4267), 1, - sym_parameter_list, - STATE(7290), 1, - sym_function_declarator_seq, - ACTIONS(11416), 12, - anon_sym_COMMA, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, anon_sym_try, - anon_sym_requires, - [331075] = 7, + [292292] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8104), 1, - anon_sym_requires, - STATE(7422), 1, - sym_requires_clause, - STATE(7462), 1, - sym_function_postfix, - ACTIONS(8102), 2, - anon_sym_final, - anon_sym_override, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10464), 9, + ACTIONS(5619), 16, 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_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [331107] = 8, + anon_sym_requires, + [292314] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym___based, - ACTIONS(9510), 1, - anon_sym_LPAREN2, - ACTIONS(9594), 1, - anon_sym_STAR, - STATE(8013), 1, - sym_type_declarator, - STATE(10178), 1, - sym_ms_based_modifier, - STATE(2872), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(9508), 6, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(11130), 1, + sym_identifier, + ACTIONS(11132), 1, + sym_primitive_type, + STATE(4460), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7574), 1, + sym_scope_resolution, + STATE(5045), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(9972), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - sym_primitive_type, - sym_identifier, - [331141] = 8, + [292354] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9510), 1, + ACTIONS(9121), 1, anon_sym_LPAREN2, - ACTIONS(9594), 1, + ACTIONS(9197), 1, anon_sym_STAR, - STATE(8021), 1, + STATE(7684), 1, sym_type_declarator, - STATE(10178), 1, + STATE(9517), 1, sym_ms_based_modifier, - STATE(2872), 5, + STATE(2300), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9508), 6, + ACTIONS(9119), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - [331175] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(11467), 1, - sym_identifier, - ACTIONS(11471), 1, - sym_primitive_type, - STATE(2662), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7917), 1, - sym_scope_resolution, - STATE(3659), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(11469), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [331215] = 6, + [292388] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11408), 1, - anon_sym_LBRACK, - STATE(3952), 1, - sym_parameter_list, - STATE(7290), 1, - sym_function_declarator_seq, - ACTIONS(11406), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(3899), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [331245] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10995), 1, + ACTIONS(10605), 1, anon_sym_LPAREN2, - ACTIONS(11001), 1, + ACTIONS(10611), 1, anon_sym_LBRACK, - ACTIONS(11003), 1, + ACTIONS(10613), 1, anon_sym_EQ, - STATE(4388), 1, + STATE(4184), 1, sym_parameter_list, - STATE(7652), 1, + STATE(7260), 1, sym_function_declarator_seq, - STATE(9157), 1, + STATE(8827), 1, sym_gnu_asm_expression, - ACTIONS(11005), 2, + ACTIONS(10615), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(11473), 2, + ACTIONS(11134), 2, anon_sym_COMMA, anon_sym_SEMI, - STATE(7677), 2, + STATE(7162), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9357), 2, + STATE(8924), 2, sym_argument_list, sym_initializer_list, - [331289] = 11, + [292432] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(11422), 1, + ACTIONS(11136), 1, sym_identifier, - ACTIONS(11426), 1, + ACTIONS(11138), 1, sym_primitive_type, - STATE(6283), 1, + STATE(3862), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7876), 1, + STATE(7541), 1, sym_scope_resolution, - STATE(3359), 2, + STATE(4589), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(9982), 3, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(11475), 4, + ACTIONS(9801), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [331329] = 6, + [292472] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11408), 1, - anon_sym_LBRACK, - STATE(3952), 1, - sym_parameter_list, - STATE(7290), 1, - sym_function_declarator_seq, - ACTIONS(11449), 12, + ACTIONS(5623), 16, 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_or, + anon_sym_and, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [331359] = 4, + [292494] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6970), 1, - anon_sym_LBRACK, - ACTIONS(11477), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6968), 14, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [331385] = 6, + ACTIONS(13), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21), 1, + sym_preproc_directive, + ACTIONS(10988), 1, + sym_identifier, + ACTIONS(10990), 1, + aux_sym_preproc_if_token1, + ACTIONS(10992), 1, + aux_sym_preproc_ifdef_token1, + ACTIONS(10994), 1, + aux_sym_preproc_ifdef_token2, + ACTIONS(11140), 1, + anon_sym_RBRACE, + ACTIONS(11142), 1, + sym_semgrep_metavar, + STATE(9164), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6988), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + STATE(8664), 3, + sym_preproc_call, + sym_enumerator, + sym_semgrep_ellipsis, + [292536] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(11408), 1, + ACTIONS(5457), 1, + anon_sym_STAR, + ACTIONS(5459), 1, + anon_sym_AMP_AMP, + ACTIONS(5461), 1, + anon_sym_AMP, + ACTIONS(8765), 1, anon_sym_LBRACK, - STATE(3952), 1, + STATE(4330), 1, sym_parameter_list, - STATE(7290), 1, + STATE(7023), 1, sym_function_declarator_seq, - ACTIONS(11451), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [331415] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10144), 1, - anon_sym_requires, - STATE(7422), 1, - sym_requires_clause, - STATE(7444), 1, - sym_function_postfix, - ACTIONS(10141), 2, - anon_sym_final, - anon_sym_override, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10101), 9, + STATE(7676), 1, + sym_abstract_declarator, + ACTIONS(8561), 3, 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, - [331447] = 11, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [292576] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(11479), 1, - sym_identifier, - ACTIONS(11483), 1, + ACTIONS(11038), 1, sym_primitive_type, - STATE(2542), 1, + ACTIONS(11144), 1, + sym_identifier, + STATE(2110), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7915), 1, + STATE(7523), 1, sym_scope_resolution, - STATE(3354), 2, + STATE(2702), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(9982), 3, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(11481), 4, + ACTIONS(8349), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [331487] = 6, + [292616] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11408), 1, - anon_sym_LBRACK, - STATE(3952), 1, - sym_parameter_list, - STATE(7290), 1, - sym_function_declarator_seq, - ACTIONS(11457), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [331517] = 11, + ACTIONS(13), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21), 1, + sym_preproc_directive, + ACTIONS(10988), 1, + sym_identifier, + ACTIONS(10990), 1, + aux_sym_preproc_if_token1, + ACTIONS(10992), 1, + aux_sym_preproc_ifdef_token1, + ACTIONS(10994), 1, + aux_sym_preproc_ifdef_token2, + ACTIONS(11146), 1, + anon_sym_RBRACE, + ACTIONS(11148), 1, + sym_semgrep_metavar, + STATE(10092), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6962), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + STATE(8909), 3, + sym_preproc_call, + sym_enumerator, + sym_semgrep_ellipsis, + [292658] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(11485), 1, + ACTIONS(11150), 1, sym_identifier, - ACTIONS(11489), 1, + ACTIONS(11152), 1, sym_primitive_type, - STATE(6759), 1, + STATE(2700), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7923), 1, + STATE(7525), 1, sym_scope_resolution, - STATE(6782), 2, + STATE(3231), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(9982), 3, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(11487), 4, + ACTIONS(10013), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [331557] = 7, + [292698] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8104), 1, + ACTIONS(10878), 1, anon_sym_requires, - STATE(7422), 1, - sym_requires_clause, - STATE(7479), 1, + STATE(7017), 1, sym_function_postfix, - ACTIONS(8102), 2, + STATE(7021), 1, + sym_requires_clause, + ACTIONS(10875), 2, anon_sym_final, anon_sym_override, - STATE(7282), 2, + STATE(6899), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(9897), 9, + ACTIONS(10786), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -600421,320 +565913,370 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [331589] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11408), 1, - anon_sym_LBRACK, - STATE(3952), 1, - sym_parameter_list, - STATE(7290), 1, - sym_function_declarator_seq, - ACTIONS(11463), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [331619] = 11, + [292730] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(11491), 1, + ACTIONS(13), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21), 1, + sym_preproc_directive, + ACTIONS(10988), 1, sym_identifier, - ACTIONS(11493), 1, - sym_primitive_type, - STATE(3874), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7881), 1, - sym_scope_resolution, - STATE(4771), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(57), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [331659] = 6, + ACTIONS(10990), 1, + aux_sym_preproc_if_token1, + ACTIONS(10992), 1, + aux_sym_preproc_ifdef_token1, + ACTIONS(10994), 1, + aux_sym_preproc_ifdef_token2, + ACTIONS(11154), 1, + anon_sym_RBRACE, + ACTIONS(11156), 1, + sym_semgrep_metavar, + STATE(10102), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(7156), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + STATE(9008), 3, + sym_preproc_call, + sym_enumerator, + sym_semgrep_ellipsis, + [292772] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11495), 1, + ACTIONS(11158), 1, sym_identifier, - ACTIONS(5649), 2, + ACTIONS(5556), 2, anon_sym_RPAREN, anon_sym_COLON, - STATE(7419), 3, + STATE(6935), 3, sym_string_literal, sym_raw_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(11497), 5, + ACTIONS(11119), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(11499), 5, + ACTIONS(11121), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [331689] = 2, + [292802] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21), 1, + sym_preproc_directive, + ACTIONS(10988), 1, + sym_identifier, + ACTIONS(10990), 1, + aux_sym_preproc_if_token1, + ACTIONS(10992), 1, + aux_sym_preproc_ifdef_token1, + ACTIONS(10994), 1, + aux_sym_preproc_ifdef_token2, + ACTIONS(11160), 1, + anon_sym_RBRACE, + ACTIONS(11162), 1, + sym_semgrep_metavar, + STATE(9616), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(7156), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + STATE(8694), 3, + sym_preproc_call, + sym_enumerator, + sym_semgrep_ellipsis, + [292844] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6412), 16, + ACTIONS(6506), 1, + anon_sym_LBRACK, + ACTIONS(11164), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6504), 14, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_LT, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [331711] = 2, + [292870] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6347), 16, - 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_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [331733] = 3, + ACTIONS(13), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21), 1, + sym_preproc_directive, + ACTIONS(10988), 1, + sym_identifier, + ACTIONS(10990), 1, + aux_sym_preproc_if_token1, + ACTIONS(10992), 1, + aux_sym_preproc_ifdef_token1, + ACTIONS(10994), 1, + aux_sym_preproc_ifdef_token2, + ACTIONS(11166), 1, + anon_sym_RBRACE, + ACTIONS(11168), 1, + sym_semgrep_metavar, + STATE(9652), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(7156), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + STATE(8654), 3, + sym_preproc_call, + sym_enumerator, + sym_semgrep_ellipsis, + [292912] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11420), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6416), 14, + ACTIONS(7923), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7073), 1, + sym_function_postfix, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [331757] = 11, + [292944] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(11414), 1, - sym_primitive_type, - ACTIONS(11453), 1, - sym_identifier, - STATE(5493), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7904), 1, - sym_scope_resolution, - STATE(4799), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(8714), 4, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9121), 1, + anon_sym_LPAREN2, + ACTIONS(9197), 1, + anon_sym_STAR, + STATE(7670), 1, + sym_type_declarator, + STATE(9517), 1, + sym_ms_based_modifier, + STATE(2300), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9119), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [331797] = 2, + sym_primitive_type, + sym_identifier, + [292978] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6420), 16, + ACTIONS(6677), 1, + anon_sym_AMP, + ACTIONS(11075), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11170), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6679), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, + anon_sym_COLON, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [331819] = 11, + [293006] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(11501), 1, + ACTIONS(13), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21), 1, + sym_preproc_directive, + ACTIONS(10988), 1, sym_identifier, - ACTIONS(11505), 1, - sym_primitive_type, - STATE(4026), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7905), 1, - sym_scope_resolution, - STATE(4851), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(11503), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [331859] = 11, + ACTIONS(10990), 1, + aux_sym_preproc_if_token1, + ACTIONS(10992), 1, + aux_sym_preproc_ifdef_token1, + ACTIONS(10994), 1, + aux_sym_preproc_ifdef_token2, + ACTIONS(11172), 1, + anon_sym_RBRACE, + ACTIONS(11174), 1, + sym_semgrep_metavar, + STATE(9166), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(7156), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + STATE(8720), 3, + sym_preproc_call, + sym_enumerator, + sym_semgrep_ellipsis, + [293048] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(11507), 1, + ACTIONS(11054), 1, sym_identifier, - ACTIONS(11511), 1, + ACTIONS(11056), 1, sym_primitive_type, - STATE(4800), 1, + STATE(5100), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7944), 1, + STATE(7521), 1, sym_scope_resolution, - STATE(5478), 2, + STATE(5031), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(9982), 3, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(11509), 4, + ACTIONS(8392), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [331899] = 6, + [293088] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11408), 1, - anon_sym_LBRACK, - STATE(3952), 1, - sym_parameter_list, - STATE(7290), 1, - sym_function_declarator_seq, - ACTIONS(11465), 12, + ACTIONS(5581), 16, 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_or, + anon_sym_and, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [331929] = 11, + [293110] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21), 1, + sym_preproc_directive, + ACTIONS(10988), 1, + sym_identifier, + ACTIONS(10990), 1, + aux_sym_preproc_if_token1, + ACTIONS(10992), 1, + aux_sym_preproc_ifdef_token1, + ACTIONS(10994), 1, + aux_sym_preproc_ifdef_token2, + ACTIONS(11176), 1, + anon_sym_RBRACE, + ACTIONS(11178), 1, + sym_semgrep_metavar, + STATE(9411), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6916), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + STATE(8932), 3, + sym_preproc_call, + sym_enumerator, + sym_semgrep_ellipsis, + [293152] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(11513), 1, + ACTIONS(11180), 1, sym_identifier, - ACTIONS(11517), 1, + ACTIONS(11182), 1, sym_primitive_type, - STATE(4502), 1, + STATE(5516), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7916), 1, + STATE(7539), 1, sym_scope_resolution, - STATE(5129), 2, + STATE(5933), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(9982), 3, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(11515), 4, + ACTIONS(8429), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [331969] = 7, + [293192] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10544), 1, + ACTIONS(10161), 1, anon_sym_requires, - STATE(7422), 1, + STATE(7021), 1, sym_requires_clause, - STATE(7462), 1, + STATE(7094), 1, sym_function_postfix, - ACTIONS(10541), 2, + ACTIONS(10158), 2, anon_sym_final, anon_sym_override, - STATE(7282), 2, + STATE(6899), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10464), 9, + ACTIONS(10154), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -600744,1029 +566286,1155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [332001] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6358), 16, - 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_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [332023] = 7, + [293224] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11285), 1, - anon_sym_requires, - STATE(7422), 1, - sym_requires_clause, - STATE(7477), 1, - sym_function_postfix, - ACTIONS(11282), 2, - anon_sym_final, - anon_sym_override, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10895), 9, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(51), 1, + anon_sym___based, + ACTIONS(9121), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [332055] = 8, + ACTIONS(9197), 1, + anon_sym_STAR, + STATE(7678), 1, + sym_type_declarator, + STATE(9517), 1, + sym_ms_based_modifier, + STATE(2300), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(9119), 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + [293258] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9510), 1, + ACTIONS(9121), 1, anon_sym_LPAREN2, - ACTIONS(9594), 1, + ACTIONS(9197), 1, anon_sym_STAR, - STATE(8030), 1, + STATE(7661), 1, sym_type_declarator, - STATE(10178), 1, + STATE(9517), 1, sym_ms_based_modifier, - STATE(2872), 5, + STATE(2300), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9508), 6, + ACTIONS(9119), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - [332089] = 7, + [293292] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11522), 1, - anon_sym_requires, - STATE(7422), 1, - sym_requires_clause, - STATE(7483), 1, - sym_function_postfix, - ACTIONS(11519), 2, - anon_sym_final, - anon_sym_override, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10927), 9, + ACTIONS(5639), 16, 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_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [332121] = 11, + anon_sym_requires, + [293314] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(11525), 1, + ACTIONS(11184), 1, sym_identifier, - ACTIONS(11529), 1, + ACTIONS(11186), 1, sym_primitive_type, - STATE(2189), 1, + STATE(2520), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7933), 1, + STATE(7547), 1, sym_scope_resolution, - STATE(2780), 2, + STATE(2969), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(9982), 3, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(11527), 4, + ACTIONS(9909), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [332161] = 8, + [293354] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(7816), 1, + anon_sym_LT, + STATE(7125), 1, + sym_template_argument_list, + ACTIONS(5383), 2, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(5376), 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_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [293384] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym___based, - ACTIONS(9510), 1, + ACTIONS(9121), 1, anon_sym_LPAREN2, - ACTIONS(9602), 1, + ACTIONS(9197), 1, anon_sym_STAR, - STATE(7897), 1, + STATE(7560), 1, sym_type_declarator, - STATE(10254), 1, + STATE(9517), 1, sym_ms_based_modifier, - STATE(2872), 5, + STATE(2300), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(9508), 6, + ACTIONS(9119), 6, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, sym_identifier, - [332195] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8104), 1, - anon_sym_requires, - STATE(7422), 1, - sym_requires_clause, - STATE(7477), 1, - sym_function_postfix, - ACTIONS(8102), 2, - anon_sym_final, - anon_sym_override, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10895), 9, - 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, - [332227] = 11, + [293418] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(11531), 1, + ACTIONS(11188), 1, sym_identifier, - ACTIONS(11535), 1, + ACTIONS(11190), 1, sym_primitive_type, - STATE(5888), 1, + STATE(4191), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7920), 1, + STATE(7545), 1, sym_scope_resolution, - STATE(6500), 2, + STATE(4746), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(9982), 3, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(11533), 4, + ACTIONS(9853), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [332267] = 11, + [293458] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(11437), 1, + ACTIONS(11089), 1, sym_identifier, - ACTIONS(11441), 1, + ACTIONS(11091), 1, sym_primitive_type, - STATE(6112), 1, + STATE(3609), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7886), 1, + STATE(7569), 1, sym_scope_resolution, - STATE(2607), 2, + STATE(3599), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(9982), 3, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(11537), 4, + ACTIONS(57), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [332307] = 11, + [293498] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21), 1, + sym_preproc_directive, + ACTIONS(10988), 1, + sym_identifier, + ACTIONS(10990), 1, + aux_sym_preproc_if_token1, + ACTIONS(10992), 1, + aux_sym_preproc_ifdef_token1, + ACTIONS(10994), 1, + aux_sym_preproc_ifdef_token2, + ACTIONS(11192), 1, + anon_sym_RBRACE, + ACTIONS(11194), 1, + sym_semgrep_metavar, + STATE(9797), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(7156), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + STATE(8791), 3, + sym_preproc_call, + sym_enumerator, + sym_semgrep_ellipsis, + [293540] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(11414), 1, - sym_primitive_type, - ACTIONS(11453), 1, + ACTIONS(11000), 1, sym_identifier, - STATE(5372), 1, + ACTIONS(11002), 1, + sym_primitive_type, + STATE(3644), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7904), 1, + STATE(7546), 1, sym_scope_resolution, - STATE(4799), 2, + STATE(3599), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(9982), 3, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(4348), 4, + ACTIONS(4316), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [332347] = 6, + [293580] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(11539), 1, + ACTIONS(13), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21), 1, + sym_preproc_directive, + ACTIONS(10988), 1, sym_identifier, - ACTIONS(5643), 2, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(7362), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(11497), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(11499), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [332377] = 11, + ACTIONS(10990), 1, + aux_sym_preproc_if_token1, + ACTIONS(10992), 1, + aux_sym_preproc_ifdef_token1, + ACTIONS(10994), 1, + aux_sym_preproc_ifdef_token2, + ACTIONS(11196), 1, + anon_sym_RBRACE, + ACTIONS(11198), 1, + sym_semgrep_metavar, + STATE(9760), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(7156), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + STATE(9029), 3, + sym_preproc_call, + sym_enumerator, + sym_semgrep_ellipsis, + [293622] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(11541), 1, - sym_identifier, - ACTIONS(11545), 1, + ACTIONS(11038), 1, sym_primitive_type, - STATE(2626), 1, + ACTIONS(11144), 1, + sym_identifier, + STATE(5792), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7873), 1, + STATE(7524), 1, sym_scope_resolution, - STATE(3563), 2, + STATE(2702), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(9982), 3, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(11543), 4, + ACTIONS(2215), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [332417] = 2, + [293662] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11350), 15, - anon_sym_DOT_DOT_DOT, + ACTIONS(5605), 16, 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_COLON, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - sym_semgrep_metavar, - [332438] = 2, + [293684] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11260), 15, - anon_sym_DOT_DOT_DOT, + ACTIONS(5635), 16, 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_COLON, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - sym_semgrep_metavar, - [332459] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(11547), 1, - sym_identifier, - ACTIONS(11549), 1, - anon_sym_DOT_DOT_DOT, - STATE(7429), 1, - sym_scope_resolution, - STATE(8106), 1, - sym_semgrep_ellipsis, - STATE(8603), 1, - sym_field_initializer, - STATE(9180), 1, - sym_operator_name, - STATE(8364), 2, - sym_template_method, - sym_qualified_field_identifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [332502] = 13, + [293706] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, - anon_sym_LPAREN2, - ACTIONS(5552), 1, - anon_sym_STAR, - ACTIONS(5554), 1, + ACTIONS(10976), 2, anon_sym_AMP_AMP, - ACTIONS(5556), 1, - anon_sym_AMP, - ACTIONS(9105), 1, - anon_sym_LBRACK, - ACTIONS(11292), 1, - anon_sym_LBRACE, - STATE(3750), 1, - sym_compound_statement, - STATE(4268), 1, - sym_parameter_list, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(8216), 1, - sym_abstract_declarator, - STATE(8332), 1, - sym_abstract_function_declarator, - STATE(7464), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [332545] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7303), 1, - anon_sym_LBRACK, - ACTIONS(7301), 14, + anon_sym_and, + ACTIONS(11200), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6679), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LT, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [332568] = 13, + anon_sym_requires, + [293732] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21), 1, + sym_preproc_directive, + ACTIONS(10988), 1, + sym_identifier, + ACTIONS(10990), 1, + aux_sym_preproc_if_token1, + ACTIONS(10992), 1, + aux_sym_preproc_ifdef_token1, + ACTIONS(10994), 1, + aux_sym_preproc_ifdef_token2, + ACTIONS(11202), 1, + anon_sym_RBRACE, + ACTIONS(11204), 1, + sym_semgrep_metavar, + STATE(9157), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(7002), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + STATE(8716), 3, + sym_preproc_call, + sym_enumerator, + sym_semgrep_ellipsis, + [293774] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(7923), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7071), 1, + sym_function_postfix, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10782), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(5552), 1, - anon_sym_STAR, - ACTIONS(5554), 1, - anon_sym_AMP_AMP, - ACTIONS(5556), 1, - anon_sym_AMP, - ACTIONS(9105), 1, - anon_sym_LBRACK, - ACTIONS(11378), 1, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(3270), 1, - sym_compound_statement, - STATE(4268), 1, - sym_parameter_list, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(8216), 1, - sym_abstract_declarator, - STATE(8549), 1, - sym_abstract_function_declarator, - STATE(7464), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [332611] = 7, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [293806] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11551), 1, + ACTIONS(11206), 1, anon_sym_RPAREN, - ACTIONS(11553), 1, + ACTIONS(11208), 1, anon_sym_COLON, - STATE(8947), 1, + STATE(8226), 1, sym_gnu_asm_output_operand_list, - STATE(7398), 2, + STATE(6965), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(11497), 5, + ACTIONS(11119), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(11499), 5, + ACTIONS(11121), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [332642] = 7, + [293837] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11298), 1, + ACTIONS(8275), 1, + anon_sym_DASH_GT, + ACTIONS(9796), 1, anon_sym_requires, - STATE(7422), 1, + STATE(7021), 1, sym_requires_clause, - STATE(7477), 1, + STATE(7068), 1, sym_function_postfix, - ACTIONS(11282), 2, + STATE(7171), 1, + sym_trailing_return_type, + ACTIONS(9657), 2, anon_sym_final, anon_sym_override, - STATE(7282), 2, + STATE(6899), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10895), 8, + ACTIONS(9640), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_COLON, - sym_semgrep_metavar, - [332673] = 12, + [293872] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(11549), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11555), 1, - sym_identifier, - ACTIONS(11557), 1, - anon_sym_template, - STATE(7429), 1, - sym_scope_resolution, - STATE(8466), 1, - sym_semgrep_ellipsis, - STATE(9180), 1, - sym_operator_name, - STATE(9436), 3, - sym_template_method, - sym_dependent_field_identifier, - sym_qualified_field_identifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [332714] = 7, + ACTIONS(11208), 1, + anon_sym_COLON, + ACTIONS(11210), 1, + anon_sym_RPAREN, + STATE(8494), 1, + sym_gnu_asm_output_operand_list, + STATE(6965), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(11119), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(11121), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [293903] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11553), 1, + ACTIONS(11208), 1, anon_sym_COLON, - ACTIONS(11559), 1, + ACTIONS(11212), 1, anon_sym_RPAREN, - STATE(8823), 1, + STATE(8358), 1, sym_gnu_asm_output_operand_list, - STATE(7398), 2, + STATE(6965), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(11497), 5, + ACTIONS(11119), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(11499), 5, + ACTIONS(11121), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [332745] = 7, + [293934] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11553), 1, + ACTIONS(11208), 1, anon_sym_COLON, - ACTIONS(11561), 1, + ACTIONS(11214), 1, anon_sym_RPAREN, - STATE(8621), 1, + STATE(8269), 1, sym_gnu_asm_output_operand_list, - STATE(7398), 2, + STATE(6965), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(11497), 5, + ACTIONS(11119), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(11499), 5, + ACTIONS(11121), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [332776] = 13, + [293965] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + ACTIONS(8275), 1, + anon_sym_DASH_GT, + ACTIONS(11216), 1, + anon_sym_requires, + STATE(7017), 1, + sym_function_postfix, + STATE(7021), 1, + sym_requires_clause, + STATE(7133), 1, + sym_trailing_return_type, + ACTIONS(10875), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10786), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(10814), 1, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(10818), 1, - anon_sym_COLON, - ACTIONS(11565), 1, - anon_sym_EQ, - STATE(4270), 1, - sym_parameter_list, - STATE(7807), 1, - sym_function_declarator_seq, - STATE(9044), 1, - sym_bitfield_clause, - STATE(9048), 1, - sym_initializer_list, - STATE(7703), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(11563), 3, + [294000] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10782), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - [332819] = 13, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + sym_semgrep_metavar, + [294021] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(5552), 1, + ACTIONS(5457), 1, anon_sym_STAR, - ACTIONS(5554), 1, + ACTIONS(5459), 1, anon_sym_AMP_AMP, - ACTIONS(5556), 1, + ACTIONS(5461), 1, anon_sym_AMP, - ACTIONS(9105), 1, + ACTIONS(8765), 1, anon_sym_LBRACK, - ACTIONS(11294), 1, + ACTIONS(10895), 1, anon_sym_LBRACE, - STATE(4268), 1, + STATE(4330), 1, sym_parameter_list, - STATE(4550), 1, + STATE(6783), 1, sym_compound_statement, - STATE(7450), 1, + STATE(7023), 1, sym_function_declarator_seq, - STATE(8216), 1, - sym_abstract_declarator, - STATE(8475), 1, + STATE(7874), 1, sym_abstract_function_declarator, - STATE(7464), 4, + STATE(8111), 1, + sym_abstract_declarator, + STATE(7113), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [332862] = 7, + [294064] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11553), 1, + ACTIONS(11208), 1, anon_sym_COLON, - ACTIONS(11567), 1, + ACTIONS(11219), 1, anon_sym_RPAREN, - STATE(8882), 1, + STATE(8340), 1, sym_gnu_asm_output_operand_list, - STATE(7398), 2, + STATE(6965), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(11497), 5, + ACTIONS(11119), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(11499), 5, + ACTIONS(11121), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [332893] = 6, + [294095] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, + ACTIONS(11208), 1, + anon_sym_COLON, + ACTIONS(11221), 1, + anon_sym_RPAREN, + STATE(8584), 1, + sym_gnu_asm_output_operand_list, + STATE(6965), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(11119), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(11121), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [294126] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10846), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(11408), 1, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(4322), 1, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + sym_semgrep_metavar, + [294147] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(5457), 1, + anon_sym_STAR, + ACTIONS(5459), 1, + anon_sym_AMP_AMP, + ACTIONS(5461), 1, + anon_sym_AMP, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(10934), 1, + anon_sym_LBRACE, + STATE(4111), 1, + sym_compound_statement, + STATE(4330), 1, sym_parameter_list, - STATE(7290), 1, + STATE(7023), 1, sym_function_declarator_seq, - ACTIONS(11406), 11, + STATE(8111), 1, + sym_abstract_declarator, + STATE(8150), 1, + sym_abstract_function_declarator, + STATE(7113), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [294190] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10968), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [332922] = 7, + sym_semgrep_metavar, + [294211] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(5457), 1, + anon_sym_STAR, + ACTIONS(5459), 1, + anon_sym_AMP_AMP, + ACTIONS(5461), 1, + anon_sym_AMP, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(10958), 1, + anon_sym_LBRACE, + STATE(4330), 1, + sym_parameter_list, + STATE(5704), 1, + sym_compound_statement, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7915), 1, + sym_abstract_function_declarator, + STATE(8111), 1, + sym_abstract_declarator, + STATE(7113), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [294254] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(5457), 1, + anon_sym_STAR, + ACTIONS(5459), 1, + anon_sym_AMP_AMP, + ACTIONS(5461), 1, + anon_sym_AMP, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(10913), 1, + anon_sym_LBRACE, + STATE(2662), 1, + sym_compound_statement, + STATE(4330), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(8066), 1, + sym_abstract_function_declarator, + STATE(8111), 1, + sym_abstract_declarator, + STATE(7113), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [294297] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11553), 1, + ACTIONS(11208), 1, anon_sym_COLON, - ACTIONS(11569), 1, + ACTIONS(11223), 1, anon_sym_RPAREN, - STATE(8969), 1, + STATE(8570), 1, sym_gnu_asm_output_operand_list, - STATE(7398), 2, + STATE(6965), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(11497), 5, + ACTIONS(11119), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(11499), 5, + ACTIONS(11121), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [332953] = 7, + [294328] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11553), 1, + ACTIONS(11208), 1, anon_sym_COLON, - ACTIONS(11571), 1, + ACTIONS(11225), 1, anon_sym_RPAREN, - STATE(8793), 1, + STATE(8606), 1, sym_gnu_asm_output_operand_list, - STATE(7398), 2, + STATE(6965), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(11497), 5, + ACTIONS(11119), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(11499), 5, + ACTIONS(11121), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [332984] = 6, + [294359] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11408), 1, - anon_sym_LBRACK, - STATE(4322), 1, - sym_parameter_list, - STATE(7290), 1, - sym_function_declarator_seq, - ACTIONS(11449), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(11208), 1, anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [333013] = 6, + ACTIONS(11227), 1, + anon_sym_RPAREN, + STATE(8337), 1, + sym_gnu_asm_output_operand_list, + STATE(6965), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(11119), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(11121), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [294390] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(11408), 1, + ACTIONS(5457), 1, + anon_sym_STAR, + ACTIONS(5459), 1, + anon_sym_AMP_AMP, + ACTIONS(5461), 1, + anon_sym_AMP, + ACTIONS(8765), 1, anon_sym_LBRACK, - STATE(4322), 1, + STATE(1857), 1, + sym_compound_statement, + STATE(4330), 1, sym_parameter_list, - STATE(7290), 1, + STATE(7023), 1, sym_function_declarator_seq, - ACTIONS(11451), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + STATE(7895), 1, + sym_abstract_function_declarator, + STATE(8111), 1, + sym_abstract_declarator, + STATE(7113), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [294433] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11208), 1, anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [333042] = 7, + ACTIONS(11229), 1, + anon_sym_RPAREN, + STATE(8617), 1, + sym_gnu_asm_output_operand_list, + STATE(6965), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(11119), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(11121), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [294464] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(4043), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11231), 1, + sym_identifier, + STATE(7096), 1, + sym_scope_resolution, + STATE(7750), 1, + sym_semgrep_ellipsis, + STATE(8765), 1, + sym_field_initializer, + STATE(9016), 1, + sym_operator_name, + STATE(8129), 2, + sym_template_method, + sym_qualified_field_identifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [294507] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11553), 1, + ACTIONS(11208), 1, anon_sym_COLON, - ACTIONS(11573), 1, + ACTIONS(11233), 1, anon_sym_RPAREN, - STATE(8801), 1, + STATE(8305), 1, sym_gnu_asm_output_operand_list, - STATE(7398), 2, + STATE(6965), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(11497), 5, + ACTIONS(11119), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(11499), 5, + ACTIONS(11121), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [333073] = 13, + [294538] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(5552), 1, + ACTIONS(5457), 1, anon_sym_STAR, - ACTIONS(5554), 1, + ACTIONS(5459), 1, anon_sym_AMP_AMP, - ACTIONS(5556), 1, + ACTIONS(5461), 1, anon_sym_AMP, - ACTIONS(9105), 1, + ACTIONS(8765), 1, anon_sym_LBRACK, - ACTIONS(11344), 1, + ACTIONS(10901), 1, anon_sym_LBRACE, - STATE(4242), 1, + STATE(4185), 1, sym_compound_statement, - STATE(4268), 1, + STATE(4330), 1, sym_parameter_list, - STATE(7450), 1, + STATE(7023), 1, sym_function_declarator_seq, - STATE(8216), 1, - sym_abstract_declarator, - STATE(8453), 1, + STATE(8106), 1, sym_abstract_function_declarator, - STATE(7464), 4, + STATE(8111), 1, + sym_abstract_declarator, + STATE(7113), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [333116] = 6, + [294581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11408), 1, + ACTIONS(6642), 1, anon_sym_LBRACK, - STATE(4322), 1, - sym_parameter_list, - STATE(7290), 1, - sym_function_declarator_seq, - ACTIONS(11457), 11, + ACTIONS(6640), 14, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LT, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_final, - anon_sym_override, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [333145] = 6, + [294604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11408), 1, + ACTIONS(6506), 1, anon_sym_LBRACK, - STATE(4322), 1, - sym_parameter_list, - STATE(7290), 1, - sym_function_declarator_seq, - ACTIONS(11463), 11, + ACTIONS(6504), 14, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LT, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_final, - anon_sym_override, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [333174] = 2, + [294627] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10464), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10418), 1, anon_sym_LPAREN2, + ACTIONS(11237), 1, + anon_sym_LBRACK, + STATE(4006), 1, + sym_parameter_list, + STATE(6862), 1, + sym_function_declarator_seq, + ACTIONS(11235), 11, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - sym_semgrep_metavar, - [333195] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8329), 1, - anon_sym_requires, - STATE(7422), 1, - sym_requires_clause, - STATE(7462), 1, - sym_function_postfix, - ACTIONS(8102), 2, - anon_sym_final, - anon_sym_override, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10464), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COLON, - sym_semgrep_metavar, - [333226] = 7, + [294656] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11553), 1, + ACTIONS(11208), 1, anon_sym_COLON, - ACTIONS(11575), 1, + ACTIONS(11239), 1, anon_sym_RPAREN, - STATE(9018), 1, + STATE(8506), 1, sym_gnu_asm_output_operand_list, - STATE(7398), 2, + STATE(6965), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(11497), 5, + ACTIONS(11119), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(11499), 5, + ACTIONS(11121), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [333257] = 13, + [294687] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(5552), 1, - anon_sym_STAR, - ACTIONS(5554), 1, - anon_sym_AMP_AMP, - ACTIONS(5556), 1, - anon_sym_AMP, - ACTIONS(9105), 1, + ACTIONS(11237), 1, anon_sym_LBRACK, - ACTIONS(11307), 1, - anon_sym_LBRACE, - STATE(4268), 1, + STATE(4006), 1, sym_parameter_list, - STATE(6183), 1, - sym_compound_statement, - STATE(7450), 1, + STATE(6862), 1, sym_function_declarator_seq, - STATE(8216), 1, - sym_abstract_declarator, - STATE(8302), 1, - sym_abstract_function_declarator, - STATE(7464), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [333300] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11577), 1, - anon_sym_requires, - STATE(7422), 1, - sym_requires_clause, - STATE(7483), 1, - sym_function_postfix, - ACTIONS(11519), 2, - anon_sym_final, - anon_sym_override, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10927), 8, + ACTIONS(11241), 11, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_EQ, anon_sym_COLON, - sym_semgrep_metavar, - [333331] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [294716] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11408), 1, + ACTIONS(11237), 1, anon_sym_LBRACK, - STATE(4322), 1, + STATE(4006), 1, sym_parameter_list, - STATE(7290), 1, + STATE(6862), 1, sym_function_declarator_seq, - ACTIONS(11465), 11, + ACTIONS(11243), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, @@ -601778,37 +567446,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [333360] = 2, + [294745] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11340), 15, - 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, + ACTIONS(11208), 1, anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - sym_semgrep_metavar, - [333381] = 6, + ACTIONS(11245), 1, + anon_sym_RPAREN, + STATE(8416), 1, + sym_gnu_asm_output_operand_list, + STATE(6965), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(11119), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(11121), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [294776] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11408), 1, + ACTIONS(11237), 1, anon_sym_LBRACK, - STATE(4322), 1, + STATE(4006), 1, sym_parameter_list, - STATE(7290), 1, + STATE(6862), 1, sym_function_declarator_seq, - ACTIONS(11416), 11, + ACTIONS(11247), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, @@ -601820,258 +567493,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [333410] = 8, + [294805] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11001), 1, + ACTIONS(11237), 1, anon_sym_LBRACK, - STATE(4388), 1, + STATE(4006), 1, sym_parameter_list, - STATE(7652), 1, + STATE(6862), 1, sym_function_declarator_seq, - STATE(7677), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(11580), 8, + ACTIONS(11249), 11, anon_sym_COMMA, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_try, - [333443] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11553), 1, - anon_sym_COLON, - ACTIONS(11582), 1, - anon_sym_RPAREN, - STATE(9013), 1, - sym_gnu_asm_output_operand_list, - STATE(7398), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(11497), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(11499), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [333474] = 7, + anon_sym_requires, + [294834] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10559), 1, - anon_sym_requires, - STATE(7422), 1, - sym_requires_clause, - STATE(7462), 1, - sym_function_postfix, - ACTIONS(10541), 2, - anon_sym_final, - anon_sym_override, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10464), 8, + ACTIONS(10946), 15, + 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_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, sym_semgrep_metavar, - [333505] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(11547), 1, - sym_identifier, - ACTIONS(11549), 1, - anon_sym_DOT_DOT_DOT, - STATE(7429), 1, - sym_scope_resolution, - STATE(8106), 1, - sym_semgrep_ellipsis, - STATE(9180), 1, - sym_operator_name, - STATE(9581), 1, - sym_field_initializer, - STATE(8364), 2, - sym_template_method, - sym_qualified_field_identifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [333548] = 7, + [294855] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11553), 1, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11237), 1, + anon_sym_LBRACK, + STATE(4006), 1, + sym_parameter_list, + STATE(6862), 1, + sym_function_declarator_seq, + ACTIONS(11251), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - ACTIONS(11584), 1, - anon_sym_RPAREN, - STATE(8936), 1, - sym_gnu_asm_output_operand_list, - STATE(7398), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(11497), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(11499), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [333579] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [294884] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10091), 1, + ACTIONS(8275), 1, + anon_sym_DASH_GT, + ACTIONS(8285), 1, anon_sym_requires, - STATE(7422), 1, - sym_requires_clause, - STATE(7479), 1, + STATE(7017), 1, sym_function_postfix, - ACTIONS(10052), 2, + STATE(7021), 1, + sym_requires_clause, + STATE(7132), 1, + sym_trailing_return_type, + ACTIONS(7921), 2, anon_sym_final, anon_sym_override, - STATE(7282), 2, + STATE(6899), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(9897), 8, + ACTIONS(10786), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_COLON, - sym_semgrep_metavar, - [333610] = 13, + [294919] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(5552), 1, + ACTIONS(5457), 1, anon_sym_STAR, - ACTIONS(5554), 1, + ACTIONS(5459), 1, anon_sym_AMP_AMP, - ACTIONS(5556), 1, + ACTIONS(5461), 1, anon_sym_AMP, - ACTIONS(9105), 1, + ACTIONS(8765), 1, anon_sym_LBRACK, - ACTIONS(11303), 1, + ACTIONS(10885), 1, anon_sym_LBRACE, - STATE(4268), 1, + STATE(4330), 1, sym_parameter_list, - STATE(5707), 1, + STATE(6958), 1, sym_compound_statement, - STATE(7450), 1, + STATE(7023), 1, sym_function_declarator_seq, - STATE(8216), 1, - sym_abstract_declarator, - STATE(8303), 1, + STATE(7912), 1, sym_abstract_function_declarator, - STATE(7464), 4, + STATE(8111), 1, + sym_abstract_declarator, + STATE(7113), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [333653] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11553), 1, - anon_sym_COLON, - ACTIONS(11586), 1, - anon_sym_RPAREN, - STATE(8781), 1, - sym_gnu_asm_output_operand_list, - STATE(7398), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(11497), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(11499), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [333684] = 2, + [294962] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11346), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10418), 1, anon_sym_LPAREN2, + ACTIONS(11237), 1, + anon_sym_LBRACK, + STATE(4006), 1, + sym_parameter_list, + STATE(6862), 1, + sym_function_declarator_seq, + ACTIONS(11253), 11, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - sym_semgrep_metavar, - [333705] = 7, + [294991] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11553), 1, - anon_sym_COLON, - ACTIONS(11588), 1, + ACTIONS(7100), 1, + anon_sym_LBRACK, + ACTIONS(7816), 1, + anon_sym_LT, + STATE(7125), 1, + sym_template_argument_list, + ACTIONS(7098), 12, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(8960), 1, - sym_gnu_asm_output_operand_list, - STATE(7398), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(11497), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(11499), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [333736] = 2, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [295018] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10895), 15, + ACTIONS(10891), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -602087,34 +567678,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_requires, sym_semgrep_metavar, - [333757] = 7, + [295039] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8329), 1, - anon_sym_requires, - STATE(7422), 1, - sym_requires_clause, - STATE(7477), 1, - sym_function_postfix, - ACTIONS(8102), 2, - anon_sym_final, - anon_sym_override, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10895), 8, + ACTIONS(10942), 15, + 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_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, sym_semgrep_metavar, - [333788] = 2, + [295060] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11336), 15, + ACTIONS(10924), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -602130,40 +567716,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_requires, sym_semgrep_metavar, - [333809] = 13, + [295081] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8275), 1, + anon_sym_DASH_GT, + ACTIONS(8285), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7094), 1, + sym_function_postfix, + STATE(7173), 1, + sym_trailing_return_type, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + [295116] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(5552), 1, + ACTIONS(5457), 1, anon_sym_STAR, - ACTIONS(5554), 1, + ACTIONS(5459), 1, anon_sym_AMP_AMP, - ACTIONS(5556), 1, + ACTIONS(5461), 1, anon_sym_AMP, - ACTIONS(9105), 1, + ACTIONS(8765), 1, anon_sym_LBRACK, - ACTIONS(11358), 1, + ACTIONS(10897), 1, anon_sym_LBRACE, - STATE(4268), 1, + STATE(4330), 1, sym_parameter_list, - STATE(5360), 1, + STATE(4855), 1, sym_compound_statement, - STATE(7450), 1, + STATE(7023), 1, sym_function_declarator_seq, - STATE(8216), 1, - sym_abstract_declarator, - STATE(8287), 1, + STATE(7925), 1, sym_abstract_function_declarator, - STATE(7464), 4, + STATE(8111), 1, + sym_abstract_declarator, + STATE(7113), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [333852] = 2, + [295159] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11255), 1, + anon_sym_LBRACK, + STATE(7228), 1, + sym_parameter_list, + STATE(7183), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6141), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [295190] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11318), 15, + ACTIONS(10928), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -602179,10 +567815,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_requires, sym_semgrep_metavar, - [333873] = 2, + [295211] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11322), 15, + ACTIONS(10972), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -602198,10 +567834,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_requires, sym_semgrep_metavar, - [333894] = 2, + [295232] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11326), 15, + ACTIONS(10950), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -602217,199 +567853,252 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_requires, sym_semgrep_metavar, - [333915] = 7, + [295253] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(5457), 1, + anon_sym_STAR, + ACTIONS(5459), 1, + anon_sym_AMP_AMP, + ACTIONS(5461), 1, + anon_sym_AMP, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(10905), 1, + anon_sym_LBRACE, + STATE(4330), 1, + sym_parameter_list, + STATE(4974), 1, + sym_compound_statement, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7936), 1, + sym_abstract_function_declarator, + STATE(8111), 1, + sym_abstract_declarator, + STATE(7113), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [295296] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(5457), 1, + anon_sym_STAR, + ACTIONS(5459), 1, + anon_sym_AMP_AMP, + ACTIONS(5461), 1, + anon_sym_AMP, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(10911), 1, + anon_sym_LBRACE, + STATE(3343), 1, + sym_compound_statement, + STATE(4330), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7944), 1, + sym_abstract_function_declarator, + STATE(8111), 1, + sym_abstract_declarator, + STATE(7113), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [295339] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11553), 1, + ACTIONS(11208), 1, anon_sym_COLON, - ACTIONS(11590), 1, + ACTIONS(11257), 1, anon_sym_RPAREN, - STATE(8806), 1, + STATE(8255), 1, sym_gnu_asm_output_operand_list, - STATE(7398), 2, + STATE(6965), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(11497), 5, + ACTIONS(11119), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(11499), 5, + ACTIONS(11121), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [333946] = 2, + [295370] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11330), 15, - anon_sym_DOT_DOT_DOT, + ACTIONS(8275), 1, + anon_sym_DASH_GT, + ACTIONS(8285), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7068), 1, + sym_function_postfix, + STATE(7161), 1, + sym_trailing_return_type, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 6, 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - sym_semgrep_metavar, - [333967] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11592), 1, - sym_identifier, - ACTIONS(11594), 1, - aux_sym_preproc_if_token2, - ACTIONS(11596), 1, - aux_sym_preproc_else_token1, - ACTIONS(11598), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11600), 1, - aux_sym_preproc_elifdef_token1, - ACTIONS(11602), 1, - aux_sym_preproc_elifdef_token2, - STATE(7791), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(7792), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(8009), 1, - sym_enumerator, - STATE(10470), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - STATE(10471), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [334008] = 2, + [295405] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11354), 15, - anon_sym_DOT_DOT_DOT, + ACTIONS(8275), 1, + anon_sym_DASH_GT, + ACTIONS(8285), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7073), 1, + sym_function_postfix, + STATE(7187), 1, + sym_trailing_return_type, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 6, 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, + [295440] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(9993), 1, + anon_sym_STAR, + ACTIONS(9995), 1, + anon_sym_AMP_AMP, + ACTIONS(9997), 1, + anon_sym_AMP, + STATE(4453), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7726), 1, + sym_abstract_declarator, + ACTIONS(8561), 2, + anon_sym_RPAREN, sym_semgrep_metavar, - [334029] = 13, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [295479] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(5552), 1, + ACTIONS(5457), 1, anon_sym_STAR, - ACTIONS(5554), 1, + ACTIONS(5459), 1, anon_sym_AMP_AMP, - ACTIONS(5556), 1, + ACTIONS(5461), 1, anon_sym_AMP, - ACTIONS(9105), 1, + ACTIONS(8765), 1, anon_sym_LBRACK, - ACTIONS(11305), 1, + ACTIONS(10899), 1, anon_sym_LBRACE, - STATE(4268), 1, + STATE(4330), 1, sym_parameter_list, - STATE(4743), 1, + STATE(4960), 1, sym_compound_statement, - STATE(7450), 1, + STATE(7023), 1, sym_function_declarator_seq, - STATE(8216), 1, - sym_abstract_declarator, - STATE(8478), 1, + STATE(8024), 1, sym_abstract_function_declarator, - STATE(7464), 4, + STATE(8111), 1, + sym_abstract_declarator, + STATE(7113), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [334072] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11553), 1, - anon_sym_COLON, - ACTIONS(11604), 1, - anon_sym_RPAREN, - STATE(8869), 1, - sym_gnu_asm_output_operand_list, - STATE(7398), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(11497), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(11499), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [334103] = 3, + [295522] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6970), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11255), 1, anon_sym_LBRACK, - ACTIONS(6968), 14, + STATE(7228), 1, + sym_parameter_list, + STATE(7183), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6080), 9, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LT, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_asm, anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [334126] = 7, + [295553] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11553), 1, + ACTIONS(11208), 1, anon_sym_COLON, - ACTIONS(11606), 1, + ACTIONS(11259), 1, anon_sym_RPAREN, - STATE(8902), 1, + STATE(8364), 1, sym_gnu_asm_output_operand_list, - STATE(7398), 2, + STATE(6965), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(11497), 5, + ACTIONS(11119), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(11499), 5, + ACTIONS(11121), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [334157] = 2, + [295584] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10927), 15, + ACTIONS(10954), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -602425,34 +568114,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_requires, sym_semgrep_metavar, - [334178] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8329), 1, - anon_sym_requires, - STATE(7422), 1, - sym_requires_clause, - STATE(7483), 1, - sym_function_postfix, - ACTIONS(8102), 2, - anon_sym_final, - anon_sym_override, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10927), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COLON, - sym_semgrep_metavar, - [334209] = 2, + [295605] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10101), 15, + ACTIONS(9781), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -602468,88 +568133,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_requires, sym_semgrep_metavar, - [334230] = 13, + [295626] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(5552), 1, - anon_sym_STAR, - ACTIONS(5554), 1, - anon_sym_AMP_AMP, - ACTIONS(5556), 1, - anon_sym_AMP, - ACTIONS(9105), 1, + ACTIONS(11237), 1, anon_sym_LBRACK, - ACTIONS(11372), 1, - anon_sym_LBRACE, - STATE(2471), 1, - sym_compound_statement, - STATE(4268), 1, + STATE(4171), 1, sym_parameter_list, - STATE(7450), 1, + STATE(6862), 1, sym_function_declarator_seq, - STATE(8213), 1, - sym_abstract_function_declarator, - STATE(8216), 1, - sym_abstract_declarator, - STATE(7464), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [334273] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8329), 1, - anon_sym_requires, - STATE(7422), 1, - sym_requires_clause, - STATE(7444), 1, - sym_function_postfix, - ACTIONS(8102), 2, - anon_sym_final, - anon_sym_override, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10101), 8, + ACTIONS(11235), 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_COLON, - sym_semgrep_metavar, - [334304] = 7, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [295655] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11553), 1, + ACTIONS(11208), 1, anon_sym_COLON, - ACTIONS(11608), 1, + ACTIONS(11261), 1, anon_sym_RPAREN, - STATE(8834), 1, + STATE(8273), 1, sym_gnu_asm_output_operand_list, - STATE(7398), 2, + STATE(6965), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(11497), 5, + ACTIONS(11119), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(11499), 5, + ACTIONS(11121), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [334335] = 2, + [295686] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11311), 15, + ACTIONS(10881), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -602565,63 +568199,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_requires, sym_semgrep_metavar, - [334356] = 12, + [295707] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(11592), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(4043), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11231), 1, sym_identifier, - ACTIONS(11596), 1, - aux_sym_preproc_else_token1, - ACTIONS(11598), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11600), 1, - aux_sym_preproc_elifdef_token1, - ACTIONS(11602), 1, - aux_sym_preproc_elifdef_token2, - ACTIONS(11610), 1, - aux_sym_preproc_if_token2, - STATE(7793), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(7794), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(8009), 1, - sym_enumerator, - STATE(10481), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - STATE(10482), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [334397] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11553), 1, - anon_sym_COLON, - ACTIONS(11612), 1, - anon_sym_RPAREN, - STATE(9119), 1, - sym_gnu_asm_output_operand_list, - STATE(7398), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(11497), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(11499), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [334428] = 2, + STATE(7096), 1, + sym_scope_resolution, + STATE(7750), 1, + sym_semgrep_ellipsis, + STATE(8556), 1, + sym_field_initializer, + STATE(9016), 1, + sym_operator_name, + STATE(8129), 2, + sym_template_method, + sym_qualified_field_identifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [295750] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11388), 15, + ACTIONS(10154), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -602637,106 +568248,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_requires, sym_semgrep_metavar, - [334449] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11616), 1, - anon_sym___attribute__, - ACTIONS(11621), 1, - anon_sym_alignas, - ACTIONS(11619), 3, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - STATE(7487), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym_class_declaration_repeat1, - ACTIONS(11614), 7, - anon_sym___declspec, - anon_sym_COLON, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - [334478] = 7, + [295771] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11553), 1, - anon_sym_COLON, - ACTIONS(11624), 1, - anon_sym_RPAREN, - STATE(9090), 1, - sym_gnu_asm_output_operand_list, - STATE(7398), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(11497), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(11499), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [334509] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8098), 1, + ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11001), 1, + ACTIONS(11255), 1, anon_sym_LBRACK, - STATE(4388), 1, + STATE(7228), 1, sym_parameter_list, - STATE(7652), 1, - sym_function_declarator_seq, - STATE(7677), 2, + STATE(7183), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(11626), 8, + ACTIONS(6038), 9, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_asm, anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - [334542] = 7, + [295802] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10264), 1, - anon_sym_requires, - STATE(7422), 1, - sym_requires_clause, - STATE(7444), 1, - sym_function_postfix, - ACTIONS(10141), 2, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11237), 1, + anon_sym_LBRACK, + STATE(4171), 1, + sym_parameter_list, + STATE(6862), 1, + sym_function_declarator_seq, + ACTIONS(11241), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10101), 8, + anon_sym_try, + anon_sym_requires, + [295831] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10960), 15, + 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_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, sym_semgrep_metavar, - [334573] = 2, + [295852] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11237), 1, + anon_sym_LBRACK, + STATE(4171), 1, + sym_parameter_list, + STATE(6862), 1, + sym_function_declarator_seq, + ACTIONS(11243), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [295881] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11374), 15, + ACTIONS(10938), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -602752,338 +568356,521 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_requires, sym_semgrep_metavar, - [334594] = 13, + [295902] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(5552), 1, - anon_sym_STAR, - ACTIONS(5554), 1, - anon_sym_AMP_AMP, - ACTIONS(5556), 1, - anon_sym_AMP, - ACTIONS(9105), 1, + ACTIONS(11237), 1, anon_sym_LBRACK, - ACTIONS(11382), 1, + STATE(4171), 1, + sym_parameter_list, + STATE(6862), 1, + sym_function_declarator_seq, + ACTIONS(11247), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - STATE(4268), 1, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [295931] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11237), 1, + anon_sym_LBRACK, + STATE(4171), 1, sym_parameter_list, - STATE(5623), 1, - sym_compound_statement, - STATE(7450), 1, + STATE(6862), 1, sym_function_declarator_seq, - STATE(8216), 1, - sym_abstract_declarator, - STATE(8421), 1, - sym_abstract_function_declarator, - STATE(7464), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [334637] = 7, + ACTIONS(11249), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [295960] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11553), 1, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11237), 1, + anon_sym_LBRACK, + STATE(4192), 1, + sym_parameter_list, + STATE(6862), 1, + sym_function_declarator_seq, + ACTIONS(11235), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - ACTIONS(11628), 1, - anon_sym_RPAREN, - STATE(8933), 1, - sym_gnu_asm_output_operand_list, - STATE(7398), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(11497), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(11499), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [334668] = 13, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [295989] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(5552), 1, + ACTIONS(5457), 1, anon_sym_STAR, - ACTIONS(5554), 1, + ACTIONS(5459), 1, anon_sym_AMP_AMP, - ACTIONS(5556), 1, + ACTIONS(5461), 1, anon_sym_AMP, - ACTIONS(9105), 1, + ACTIONS(8765), 1, anon_sym_LBRACK, - ACTIONS(11380), 1, + ACTIONS(10903), 1, anon_sym_LBRACE, - STATE(4268), 1, - sym_parameter_list, - STATE(6931), 1, + STATE(1857), 1, sym_compound_statement, - STATE(7450), 1, + STATE(4330), 1, + sym_parameter_list, + STATE(7023), 1, sym_function_declarator_seq, - STATE(8216), 1, - sym_abstract_declarator, - STATE(8240), 1, + STATE(7851), 1, sym_abstract_function_declarator, - STATE(7464), 4, + STATE(8111), 1, + sym_abstract_declarator, + STATE(7113), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [334711] = 2, + [296032] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11360), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10418), 1, anon_sym_LPAREN2, + ACTIONS(11237), 1, + anon_sym_LBRACK, + STATE(4192), 1, + sym_parameter_list, + STATE(6862), 1, + sym_function_declarator_seq, + ACTIONS(11241), 11, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - sym_semgrep_metavar, - [334732] = 7, + [296061] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11553), 1, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11237), 1, + anon_sym_LBRACK, + STATE(4192), 1, + sym_parameter_list, + STATE(6862), 1, + sym_function_declarator_seq, + ACTIONS(11243), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - ACTIONS(11630), 1, - anon_sym_RPAREN, - STATE(9015), 1, - sym_gnu_asm_output_operand_list, - STATE(7398), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(11497), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(11499), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [334763] = 2, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [296090] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11364), 15, - anon_sym_DOT_DOT_DOT, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11237), 1, + anon_sym_LBRACK, + STATE(4192), 1, + sym_parameter_list, + STATE(6862), 1, + sym_function_declarator_seq, + ACTIONS(11247), 11, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [296119] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10418), 1, anon_sym_LPAREN2, + ACTIONS(11237), 1, + anon_sym_LBRACK, + STATE(4171), 1, + sym_parameter_list, + STATE(6862), 1, + sym_function_declarator_seq, + ACTIONS(11251), 11, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [296148] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11237), 1, anon_sym_LBRACK, + STATE(4192), 1, + sym_parameter_list, + STATE(6862), 1, + sym_function_declarator_seq, + ACTIONS(11249), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - sym_semgrep_metavar, - [334784] = 8, + [296177] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8098), 1, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11237), 1, + anon_sym_LBRACK, + STATE(4192), 1, + sym_parameter_list, + STATE(6862), 1, + sym_function_declarator_seq, + ACTIONS(11251), 11, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [296206] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11001), 1, + ACTIONS(11237), 1, anon_sym_LBRACK, - STATE(4388), 1, + STATE(4192), 1, sym_parameter_list, - STATE(7652), 1, + STATE(6862), 1, sym_function_declarator_seq, - STATE(7677), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(11632), 8, + ACTIONS(11253), 11, anon_sym_COMMA, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_asm, anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [296235] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11237), 1, + anon_sym_LBRACK, + STATE(4171), 1, + sym_parameter_list, + STATE(6862), 1, + sym_function_declarator_seq, + ACTIONS(11253), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_try, - [334817] = 13, + anon_sym_requires, + [296264] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8275), 1, + anon_sym_DASH_GT, + ACTIONS(10076), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7073), 1, + sym_function_postfix, + STATE(7222), 1, + sym_trailing_return_type, + ACTIONS(9785), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + [296299] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(5552), 1, + ACTIONS(5457), 1, anon_sym_STAR, - ACTIONS(5554), 1, + ACTIONS(5459), 1, anon_sym_AMP_AMP, - ACTIONS(5556), 1, + ACTIONS(5461), 1, anon_sym_AMP, - ACTIONS(9105), 1, + ACTIONS(8765), 1, anon_sym_LBRACK, - ACTIONS(11301), 1, + ACTIONS(10889), 1, anon_sym_LBRACE, - STATE(4268), 1, - sym_parameter_list, - STATE(4496), 1, + STATE(3754), 1, sym_compound_statement, - STATE(7450), 1, + STATE(4330), 1, + sym_parameter_list, + STATE(7023), 1, sym_function_declarator_seq, - STATE(8216), 1, - sym_abstract_declarator, - STATE(8537), 1, + STATE(8076), 1, sym_abstract_function_declarator, - STATE(7464), 4, + STATE(8111), 1, + sym_abstract_declarator, + STATE(7113), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [334860] = 7, + [296342] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11553), 1, + ACTIONS(11208), 1, anon_sym_COLON, - ACTIONS(11634), 1, + ACTIONS(11263), 1, anon_sym_RPAREN, - STATE(9118), 1, + STATE(8636), 1, sym_gnu_asm_output_operand_list, - STATE(7398), 2, + STATE(6965), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(11497), 5, + ACTIONS(11119), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(11499), 5, + ACTIONS(11121), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [334891] = 8, + [296373] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11001), 1, - anon_sym_LBRACK, - STATE(4388), 1, - sym_parameter_list, - STATE(7652), 1, - sym_function_declarator_seq, - STATE(7677), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(11636), 8, + ACTIONS(10786), 15, + 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_asm, - anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [334924] = 7, + anon_sym_requires, + sym_semgrep_metavar, + [296394] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11553), 1, + ACTIONS(11208), 1, anon_sym_COLON, - ACTIONS(11638), 1, + ACTIONS(11265), 1, anon_sym_RPAREN, - STATE(9080), 1, + STATE(8425), 1, sym_gnu_asm_output_operand_list, - STATE(7398), 2, + STATE(6965), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(11497), 5, + ACTIONS(11119), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(11499), 5, + ACTIONS(11121), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [334955] = 7, + [296425] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(4043), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11267), 1, + sym_identifier, + ACTIONS(11269), 1, + anon_sym_template, + STATE(7096), 1, + sym_scope_resolution, + STATE(7885), 1, + sym_semgrep_ellipsis, + STATE(9016), 1, + sym_operator_name, + STATE(8830), 3, + sym_template_method, + sym_dependent_field_identifier, + sym_qualified_field_identifier, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [296466] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11553), 1, + ACTIONS(11208), 1, anon_sym_COLON, - ACTIONS(11640), 1, + ACTIONS(11271), 1, anon_sym_RPAREN, - STATE(9108), 1, + STATE(8216), 1, sym_gnu_asm_output_operand_list, - STATE(7398), 2, + STATE(6965), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(11497), 5, + ACTIONS(11119), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(11499), 5, + ACTIONS(11121), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [334986] = 13, + [296497] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, - anon_sym_LPAREN2, - ACTIONS(5552), 1, - anon_sym_STAR, - ACTIONS(5554), 1, - anon_sym_AMP_AMP, - ACTIONS(5556), 1, - anon_sym_AMP, - ACTIONS(9105), 1, - anon_sym_LBRACK, - ACTIONS(11384), 1, + ACTIONS(11275), 1, + anon_sym___attribute__, + ACTIONS(11280), 1, + anon_sym_alignas, + ACTIONS(11278), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - STATE(3399), 1, - sym_compound_statement, - STATE(4268), 1, - sym_parameter_list, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(8216), 1, - sym_abstract_declarator, - STATE(8319), 1, - sym_abstract_function_declarator, - STATE(7464), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [335029] = 2, + STATE(7098), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym_class_declaration_repeat1, + ACTIONS(11273), 7, + anon_sym___declspec, + anon_sym_COLON, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + [296526] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11283), 1, + sym_identifier, + ACTIONS(11285), 1, + aux_sym_preproc_if_token2, + ACTIONS(11287), 1, + aux_sym_preproc_else_token1, + ACTIONS(11289), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11291), 1, + aux_sym_preproc_elifdef_token1, + ACTIONS(11293), 1, + aux_sym_preproc_elifdef_token2, + STATE(7393), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(7461), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(7683), 1, + sym_enumerator, + STATE(9959), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + STATE(10034), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [296567] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9897), 15, + ACTIONS(9640), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -603099,10 +568886,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_requires, sym_semgrep_metavar, - [335050] = 2, + [296588] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11255), 1, + anon_sym_LBRACK, + STATE(7228), 1, + sym_parameter_list, + STATE(7183), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6132), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [296619] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11208), 1, + anon_sym_COLON, + ACTIONS(11295), 1, + anon_sym_RPAREN, + STATE(8369), 1, + sym_gnu_asm_output_operand_list, + STATE(6965), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(11119), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(11121), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [296650] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11368), 15, + ACTIONS(10907), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -603118,220 +568953,269 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_requires, sym_semgrep_metavar, - [335071] = 7, + [296671] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8329), 1, - anon_sym_requires, - STATE(7422), 1, - sym_requires_clause, - STATE(7479), 1, - sym_function_postfix, - ACTIONS(8102), 2, - anon_sym_final, - anon_sym_override, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(9897), 8, + ACTIONS(10918), 15, + 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_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, sym_semgrep_metavar, - [335102] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11553), 1, - anon_sym_COLON, - ACTIONS(11642), 1, - anon_sym_RPAREN, - STATE(8613), 1, - sym_gnu_asm_output_operand_list, - STATE(7398), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(11497), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(11499), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [335133] = 13, + [296692] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(5552), 1, + ACTIONS(5457), 1, anon_sym_STAR, - ACTIONS(5554), 1, + ACTIONS(5459), 1, anon_sym_AMP_AMP, - ACTIONS(5556), 1, + ACTIONS(5461), 1, anon_sym_AMP, - ACTIONS(9105), 1, + ACTIONS(8765), 1, anon_sym_LBRACK, - ACTIONS(11309), 1, + ACTIONS(10932), 1, anon_sym_LBRACE, - STATE(4189), 1, - sym_compound_statement, - STATE(4268), 1, + STATE(4330), 1, sym_parameter_list, - STATE(7450), 1, + STATE(4426), 1, + sym_compound_statement, + STATE(7023), 1, sym_function_declarator_seq, - STATE(8216), 1, - sym_abstract_declarator, - STATE(8275), 1, + STATE(7986), 1, sym_abstract_function_declarator, - STATE(7464), 4, + STATE(8111), 1, + sym_abstract_declarator, + STATE(7113), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [335176] = 13, + [296735] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(5455), 1, anon_sym_LPAREN2, - ACTIONS(5552), 1, + ACTIONS(5457), 1, anon_sym_STAR, - ACTIONS(5554), 1, + ACTIONS(5459), 1, anon_sym_AMP_AMP, - ACTIONS(5556), 1, + ACTIONS(5461), 1, anon_sym_AMP, - ACTIONS(9105), 1, + ACTIONS(8765), 1, anon_sym_LBRACK, - ACTIONS(11386), 1, + ACTIONS(10922), 1, anon_sym_LBRACE, - STATE(4268), 1, + STATE(4330), 1, sym_parameter_list, - STATE(7409), 1, + STATE(4381), 1, sym_compound_statement, - STATE(7450), 1, + STATE(7023), 1, sym_function_declarator_seq, - STATE(8216), 1, - sym_abstract_declarator, - STATE(8264), 1, + STATE(8063), 1, sym_abstract_function_declarator, - STATE(7464), 4, + STATE(8111), 1, + sym_abstract_declarator, + STATE(7113), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [335219] = 7, + [296778] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11553), 1, + ACTIONS(11208), 1, anon_sym_COLON, - ACTIONS(11644), 1, + ACTIONS(11297), 1, anon_sym_RPAREN, - STATE(8636), 1, + STATE(8390), 1, sym_gnu_asm_output_operand_list, - STATE(7398), 2, + STATE(6965), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(11497), 5, + ACTIONS(11119), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(11499), 5, + ACTIONS(11121), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [335250] = 7, + [296809] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8275), 1, + anon_sym_DASH_GT, + ACTIONS(10283), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7094), 1, + sym_function_postfix, + STATE(7209), 1, + sym_trailing_return_type, + ACTIONS(10158), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + [296844] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3899), 1, + anon_sym_LBRACE, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(10424), 1, + anon_sym_LBRACK, + ACTIONS(10428), 1, + anon_sym_COLON, + ACTIONS(11301), 1, + anon_sym_EQ, + STATE(3973), 1, + sym_parameter_list, + STATE(7456), 1, + sym_function_declarator_seq, + STATE(8202), 1, + sym_bitfield_clause, + STATE(8206), 1, + sym_initializer_list, + STATE(7384), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11299), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [296887] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11283), 1, + sym_identifier, + ACTIONS(11287), 1, + aux_sym_preproc_else_token1, + ACTIONS(11289), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11291), 1, + aux_sym_preproc_elifdef_token1, + ACTIONS(11293), 1, + aux_sym_preproc_elifdef_token2, + ACTIONS(11303), 1, + aux_sym_preproc_if_token2, + STATE(7401), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(7433), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(7683), 1, + sym_enumerator, + STATE(9392), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + STATE(9432), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [296928] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11553), 1, + ACTIONS(11208), 1, anon_sym_COLON, - ACTIONS(11646), 1, + ACTIONS(11305), 1, anon_sym_RPAREN, - STATE(8922), 1, + STATE(8514), 1, sym_gnu_asm_output_operand_list, - STATE(7398), 2, + STATE(6965), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(11497), 5, + ACTIONS(11119), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(11499), 5, + ACTIONS(11121), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [335281] = 8, + [296959] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11001), 1, + ACTIONS(6360), 1, anon_sym_LBRACK, - STATE(4388), 1, - sym_parameter_list, - STATE(7652), 1, - sym_function_declarator_seq, - STATE(7677), 2, + ACTIONS(11307), 1, + anon_sym_LBRACK_LBRACK, + STATE(7112), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(11648), 8, + ACTIONS(6358), 11, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_asm, anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - [335314] = 7, + [296986] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11650), 1, - sym_identifier, - STATE(7493), 1, - sym_string_literal, - STATE(7759), 1, - sym_raw_string_literal, - STATE(8852), 1, - sym_concatenated_string, - ACTIONS(115), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(155), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [335344] = 7, + ACTIONS(10964), 15, + 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_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + sym_semgrep_metavar, + [297007] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11650), 1, + ACTIONS(11310), 1, sym_identifier, - STATE(7500), 1, + STATE(7066), 1, sym_string_literal, - STATE(7759), 1, + STATE(7375), 1, sym_raw_string_literal, - STATE(9012), 1, + STATE(8488), 1, sym_concatenated_string, ACTIONS(115), 5, anon_sym_L_DQUOTE, @@ -603345,103 +569229,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [335374] = 13, + [297037] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8280), 1, + anon_sym_requires, + ACTIONS(9642), 1, + anon_sym_LBRACK, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [297069] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6241), 1, + ACTIONS(7207), 1, anon_sym_LBRACE, - ACTIONS(10504), 1, + ACTIONS(10152), 1, sym_identifier, - STATE(2485), 1, + STATE(3076), 1, + sym_template_type, + STATE(3103), 1, + sym_class_name, + STATE(3176), 1, + sym_qualified_type_identifier, + STATE(3338), 1, sym_enumerator_list, - STATE(2509), 1, + STATE(7542), 1, + sym_scope_resolution, + ACTIONS(11312), 2, + anon_sym_class, + anon_sym_struct, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [297111] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(6491), 1, + anon_sym_LBRACE, + ACTIONS(10140), 1, + sym_identifier, + STATE(2582), 1, sym_template_type, - STATE(2589), 1, + STATE(2596), 1, + sym_enumerator_list, + STATE(2696), 1, sym_qualified_type_identifier, - STATE(6342), 1, + STATE(5869), 1, sym_class_name, - STATE(7886), 1, + STATE(7523), 1, sym_scope_resolution, - ACTIONS(11652), 2, + ACTIONS(11314), 2, anon_sym_class, anon_sym_struct, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [335416] = 13, + [297153] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8301), 1, + anon_sym_DASH_GT, + ACTIONS(8303), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7094), 1, + sym_function_postfix, + STATE(7345), 1, + sym_trailing_return_type, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [297187] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10460), 1, + ACTIONS(8535), 1, anon_sym_LBRACE, - ACTIONS(11654), 1, + ACTIONS(10121), 1, sym_identifier, - STATE(6677), 1, - sym_class_name, - STATE(6730), 1, + STATE(2532), 1, sym_template_type, - STATE(6765), 1, + STATE(2703), 1, sym_qualified_type_identifier, - STATE(6788), 1, + STATE(4736), 1, + sym_class_name, + STATE(4946), 1, sym_enumerator_list, - STATE(7923), 1, + STATE(7574), 1, sym_scope_resolution, - ACTIONS(11656), 2, + ACTIONS(11316), 2, anon_sym_class, anon_sym_struct, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [335458] = 13, + [297229] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8301), 1, + anon_sym_DASH_GT, + ACTIONS(8303), 1, + anon_sym_requires, + STATE(7017), 1, + sym_function_postfix, + STATE(7021), 1, + sym_requires_clause, + STATE(7346), 1, + sym_trailing_return_type, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10786), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [297263] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6229), 1, + ACTIONS(6491), 1, anon_sym_LBRACE, - ACTIONS(11658), 1, + ACTIONS(10148), 1, sym_identifier, - STATE(2289), 1, - sym_class_name, - STATE(2597), 1, + STATE(2582), 1, sym_template_type, - STATE(2672), 1, - sym_qualified_type_identifier, - STATE(2675), 1, + STATE(2596), 1, sym_enumerator_list, - STATE(7933), 1, + STATE(2696), 1, + sym_qualified_type_identifier, + STATE(4255), 1, + sym_class_name, + STATE(7516), 1, sym_scope_resolution, - ACTIONS(11660), 2, + ACTIONS(11318), 2, anon_sym_class, anon_sym_struct, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [335500] = 7, + [297305] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11650), 1, + ACTIONS(11310), 1, sym_identifier, - STATE(7427), 1, + STATE(7011), 1, sym_string_literal, - STATE(7759), 1, + STATE(7375), 1, sym_raw_string_literal, - STATE(8908), 1, + STATE(8401), 1, sym_concatenated_string, ACTIONS(115), 5, anon_sym_L_DQUOTE, @@ -603455,62 +569442,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [335530] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11662), 1, - anon_sym_LBRACK, - STATE(4035), 1, - sym_parameter_list, - STATE(7421), 1, - sym_function_declarator_seq, - ACTIONS(11465), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [335558] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(10814), 1, - anon_sym_LBRACK, - STATE(4270), 1, - sym_parameter_list, - STATE(7807), 1, - sym_function_declarator_seq, - STATE(7703), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(11664), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [335590] = 7, + [297335] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11650), 1, + ACTIONS(11310), 1, sym_identifier, - STATE(7436), 1, + STATE(7028), 1, sym_string_literal, - STATE(7759), 1, + STATE(7375), 1, sym_raw_string_literal, - STATE(8948), 1, + STATE(8231), 1, sym_concatenated_string, ACTIONS(115), 5, anon_sym_L_DQUOTE, @@ -603524,96 +569465,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [335620] = 13, + [297365] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8406), 1, + ACTIONS(9692), 1, anon_sym_LBRACE, - ACTIONS(11666), 1, + ACTIONS(10144), 1, sym_identifier, - STATE(4736), 1, + STATE(2532), 1, sym_template_type, - STATE(4789), 1, - sym_enumerator_list, - STATE(5286), 1, - sym_class_name, - STATE(5541), 1, + STATE(2703), 1, sym_qualified_type_identifier, - STATE(7926), 1, + STATE(6210), 1, + sym_class_name, + STATE(6326), 1, + sym_enumerator_list, + STATE(7572), 1, sym_scope_resolution, - ACTIONS(11668), 2, + ACTIONS(11320), 2, anon_sym_class, anon_sym_struct, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [335662] = 6, + [297407] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11662), 1, + ACTIONS(5438), 1, + anon_sym_COLON_COLON, + ACTIONS(5440), 2, anon_sym_LBRACK, - STATE(4035), 1, - sym_parameter_list, - STATE(7421), 1, - sym_function_declarator_seq, - ACTIONS(11416), 10, + anon_sym_COLON, + ACTIONS(5445), 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_final, - anon_sym_override, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, anon_sym_try, + [297431] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8285), 1, anon_sym_requires, - [335690] = 13, + STATE(7021), 1, + sym_requires_clause, + STATE(7068), 1, + sym_function_postfix, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + [297461] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11310), 1, + sym_identifier, + STATE(7060), 1, + sym_string_literal, + STATE(7375), 1, + sym_raw_string_literal, + STATE(8234), 1, + sym_concatenated_string, + ACTIONS(115), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(155), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [297491] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6624), 1, + ACTIONS(7109), 1, anon_sym_LBRACE, - ACTIONS(11670), 1, + ACTIONS(10150), 1, sym_identifier, - STATE(2620), 1, + STATE(2913), 1, sym_class_name, - STATE(2828), 1, + STATE(2931), 1, sym_template_type, - STATE(2907), 1, + STATE(3099), 1, sym_qualified_type_identifier, - STATE(2965), 1, + STATE(3295), 1, sym_enumerator_list, - STATE(7941), 1, + STATE(7552), 1, sym_scope_resolution, - ACTIONS(11672), 2, + ACTIONS(11322), 2, anon_sym_class, anon_sym_struct, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [335732] = 7, + [297533] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9796), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7068), 1, + sym_function_postfix, + ACTIONS(9657), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + [297563] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(10611), 1, + anon_sym_LBRACK, + STATE(4221), 1, + sym_parameter_list, + STATE(7260), 1, + sym_function_declarator_seq, + STATE(7318), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11324), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [297595] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11650), 1, + ACTIONS(11310), 1, sym_identifier, - STATE(7474), 1, + STATE(7070), 1, sym_string_literal, - STATE(7759), 1, + STATE(7375), 1, sym_raw_string_literal, - STATE(8552), 1, + STATE(8256), 1, sym_concatenated_string, ACTIONS(115), 5, anon_sym_L_DQUOTE, @@ -603627,16 +569659,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [335762] = 7, + [297625] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8285), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7071), 1, + sym_function_postfix, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10782), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + [297655] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11326), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7071), 1, + sym_function_postfix, + ACTIONS(10978), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10782), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + [297685] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11650), 1, + ACTIONS(11310), 1, sym_identifier, - STATE(7488), 1, + STATE(7102), 1, sym_string_literal, - STATE(7759), 1, + STATE(7375), 1, sym_raw_string_literal, - STATE(9058), 1, + STATE(8344), 1, sym_concatenated_string, ACTIONS(115), 5, anon_sym_L_DQUOTE, @@ -603650,16 +569728,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [335792] = 7, + [297715] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(10611), 1, + anon_sym_LBRACK, + STATE(4184), 1, + sym_parameter_list, + STATE(7260), 1, + sym_function_declarator_seq, + STATE(7162), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11329), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [297747] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11650), 1, + ACTIONS(11310), 1, sym_identifier, - STATE(7459), 1, + STATE(7107), 1, sym_string_literal, - STATE(7759), 1, + STATE(7375), 1, sym_raw_string_literal, - STATE(8624), 1, + STATE(8370), 1, sym_concatenated_string, ACTIONS(115), 5, anon_sym_L_DQUOTE, @@ -603673,16 +569775,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [335822] = 7, + [297777] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(10611), 1, + anon_sym_LBRACK, + STATE(4184), 1, + sym_parameter_list, + STATE(7260), 1, + sym_function_declarator_seq, + STATE(7162), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11331), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [297809] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8301), 1, + anon_sym_DASH_GT, + ACTIONS(9967), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7068), 1, + sym_function_postfix, + STATE(7313), 1, + sym_trailing_return_type, + ACTIONS(9657), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [297843] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11650), 1, + ACTIONS(11310), 1, sym_identifier, - STATE(7503), 1, + STATE(7013), 1, sym_string_literal, - STATE(7759), 1, + STATE(7375), 1, sym_raw_string_literal, - STATE(9091), 1, + STATE(8474), 1, sym_concatenated_string, ACTIONS(115), 5, anon_sym_L_DQUOTE, @@ -603696,45 +569847,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [335852] = 13, + [297873] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10108), 1, + ACTIONS(9692), 1, anon_sym_LBRACE, - ACTIONS(10485), 1, + ACTIONS(10109), 1, sym_identifier, - STATE(6239), 1, + STATE(3094), 1, sym_template_type, - STATE(6282), 1, - sym_class_name, - STATE(6285), 1, + STATE(3322), 1, sym_qualified_type_identifier, - STATE(6370), 1, + STATE(5681), 1, + sym_class_name, + STATE(5796), 1, sym_enumerator_list, - STATE(7920), 1, + STATE(7521), 1, sym_scope_resolution, - ACTIONS(11674), 2, + ACTIONS(11333), 2, anon_sym_class, anon_sym_struct, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [335894] = 7, + [297915] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11650), 1, + ACTIONS(11310), 1, sym_identifier, - STATE(7437), 1, + STATE(7037), 1, sym_string_literal, - STATE(7759), 1, + STATE(7375), 1, sym_raw_string_literal, - STATE(9002), 1, + STATE(8495), 1, sym_concatenated_string, ACTIONS(115), 5, anon_sym_L_DQUOTE, @@ -603748,45 +569899,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [335924] = 13, + [297945] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8544), 1, - anon_sym_LBRACE, - ACTIONS(10481), 1, + ACTIONS(11310), 1, sym_identifier, - STATE(4364), 1, - sym_template_type, - STATE(4501), 1, - sym_qualified_type_identifier, - STATE(4744), 1, - sym_enumerator_list, - STATE(6243), 1, - sym_class_name, - STATE(7904), 1, - sym_scope_resolution, - ACTIONS(11676), 2, - anon_sym_class, - anon_sym_struct, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [335966] = 7, + STATE(7020), 1, + sym_string_literal, + STATE(7375), 1, + sym_raw_string_literal, + STATE(8555), 1, + sym_concatenated_string, + ACTIONS(115), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(155), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [297975] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11650), 1, + ACTIONS(11310), 1, sym_identifier, - STATE(7446), 1, + STATE(7027), 1, sym_string_literal, - STATE(7759), 1, + STATE(7375), 1, sym_raw_string_literal, - STATE(8804), 1, + STATE(8585), 1, sym_concatenated_string, ACTIONS(115), 5, anon_sym_L_DQUOTE, @@ -603800,111 +569945,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [335996] = 9, + [298005] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8603), 1, + ACTIONS(8301), 1, anon_sym_DASH_GT, - ACTIONS(11678), 1, + ACTIONS(10135), 1, anon_sym_requires, - STATE(7422), 1, + STATE(7021), 1, sym_requires_clause, - STATE(7477), 1, + STATE(7073), 1, sym_function_postfix, - STATE(7742), 1, + STATE(7316), 1, sym_trailing_return_type, - ACTIONS(11282), 2, + ACTIONS(9785), 2, anon_sym_final, anon_sym_override, - STATE(7282), 2, + STATE(6899), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10895), 5, + ACTIONS(9781), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_GT2, - [336030] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11662), 1, - anon_sym_LBRACK, - STATE(4035), 1, - sym_parameter_list, - STATE(7421), 1, - sym_function_declarator_seq, - ACTIONS(11406), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [336058] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11001), 1, - anon_sym_LBRACK, - STATE(3864), 1, - sym_parameter_list, - STATE(7652), 1, - sym_function_declarator_seq, - STATE(7714), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(11580), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [336090] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(10814), 1, - anon_sym_LBRACK, - STATE(4270), 1, - sym_parameter_list, - STATE(7807), 1, - sym_function_declarator_seq, - STATE(7703), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(11681), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [336122] = 7, + [298039] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11650), 1, + ACTIONS(11310), 1, sym_identifier, - STATE(7476), 1, + STATE(7097), 1, sym_string_literal, - STATE(7759), 1, + STATE(7375), 1, sym_raw_string_literal, - STATE(8670), 1, + STATE(8334), 1, sym_concatenated_string, ACTIONS(115), 5, anon_sym_L_DQUOTE, @@ -603918,139 +569993,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [336152] = 9, + [298069] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8603), 1, + ACTIONS(8301), 1, anon_sym_DASH_GT, - ACTIONS(10510), 1, + ACTIONS(10335), 1, anon_sym_requires, - STATE(7422), 1, + STATE(7021), 1, sym_requires_clause, - STATE(7444), 1, + STATE(7094), 1, sym_function_postfix, - STATE(7739), 1, + STATE(7317), 1, sym_trailing_return_type, - ACTIONS(10141), 2, + ACTIONS(10158), 2, anon_sym_final, anon_sym_override, - STATE(7282), 2, + STATE(6899), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10101), 5, + ACTIONS(10154), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_GT2, - [336186] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11650), 1, - sym_identifier, - STATE(7485), 1, - sym_string_literal, - STATE(7759), 1, - sym_raw_string_literal, - STATE(8903), 1, - sym_concatenated_string, - ACTIONS(115), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(155), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [336216] = 7, + [298103] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(11650), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(6976), 1, + anon_sym_LBRACE, + ACTIONS(10107), 1, sym_identifier, - STATE(7434), 1, - sym_string_literal, - STATE(7759), 1, - sym_raw_string_literal, - STATE(8653), 1, - sym_concatenated_string, - ACTIONS(115), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(155), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [336246] = 7, + STATE(2842), 1, + sym_template_type, + STATE(2877), 1, + sym_class_name, + STATE(2945), 1, + sym_qualified_type_identifier, + STATE(3156), 1, + sym_enumerator_list, + STATE(7525), 1, + sym_scope_resolution, + ACTIONS(11335), 2, + anon_sym_class, + anon_sym_struct, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [298145] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8098), 1, + ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11683), 1, + ACTIONS(10611), 1, anon_sym_LBRACK, - STATE(7685), 1, + STATE(4184), 1, sym_parameter_list, - STATE(7692), 2, + STATE(7260), 1, + sym_function_declarator_seq, + STATE(7162), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(6728), 8, + ACTIONS(11337), 7, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_asm, anon_sym___asm__, anon_sym_try, - [336276] = 13, + [298177] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8544), 1, + ACTIONS(5985), 1, anon_sym_LBRACE, - ACTIONS(10483), 1, + ACTIONS(10125), 1, sym_identifier, - STATE(4364), 1, + STATE(2050), 1, sym_template_type, - STATE(4501), 1, + STATE(2137), 1, sym_qualified_type_identifier, - STATE(4744), 1, + STATE(2185), 1, sym_enumerator_list, - STATE(7822), 1, + STATE(2536), 1, sym_class_name, - STATE(7904), 1, + STATE(7557), 1, sym_scope_resolution, - ACTIONS(11685), 2, + ACTIONS(11339), 2, anon_sym_class, anon_sym_struct, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [336318] = 7, + [298219] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11650), 1, + ACTIONS(11310), 1, sym_identifier, - STATE(7496), 1, + STATE(7093), 1, sym_string_literal, - STATE(7759), 1, + STATE(7375), 1, sym_raw_string_literal, - STATE(8953), 1, + STATE(8412), 1, sym_concatenated_string, ACTIONS(115), 5, anon_sym_L_DQUOTE, @@ -604064,103 +570123,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [336348] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(6241), 1, - anon_sym_LBRACE, - ACTIONS(10504), 1, - sym_identifier, - STATE(2485), 1, - sym_enumerator_list, - STATE(2509), 1, - sym_template_type, - STATE(2589), 1, - sym_qualified_type_identifier, - STATE(6625), 1, - sym_class_name, - STATE(7886), 1, - sym_scope_resolution, - ACTIONS(11687), 2, - anon_sym_class, - anon_sym_struct, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [336390] = 13, + [298249] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8500), 1, - anon_sym_LBRACE, - ACTIONS(11689), 1, - sym_identifier, - STATE(4520), 1, - sym_class_name, - STATE(4731), 1, - sym_template_type, - STATE(4774), 1, - sym_enumerator_list, - STATE(4809), 1, - sym_qualified_type_identifier, - STATE(7905), 1, - sym_scope_resolution, - ACTIONS(11691), 2, - anon_sym_class, - anon_sym_struct, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [336432] = 13, + ACTIONS(8301), 1, + anon_sym_DASH_GT, + ACTIONS(11341), 1, + anon_sym_requires, + STATE(7017), 1, + sym_function_postfix, + STATE(7021), 1, + sym_requires_clause, + STATE(7320), 1, + sym_trailing_return_type, + ACTIONS(10875), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10786), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [298283] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7114), 1, + ACTIONS(8229), 1, anon_sym_LBRACE, - ACTIONS(10521), 1, + ACTIONS(10099), 1, sym_identifier, - STATE(3011), 1, + STATE(3094), 1, sym_template_type, - STATE(3140), 1, + STATE(3322), 1, sym_qualified_type_identifier, - STATE(3282), 1, + STATE(4483), 1, sym_enumerator_list, - STATE(6399), 1, + STATE(4811), 1, sym_class_name, - STATE(7876), 1, + STATE(7526), 1, sym_scope_resolution, - ACTIONS(11693), 2, + ACTIONS(11344), 2, anon_sym_class, anon_sym_struct, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [336474] = 7, + [298325] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11650), 1, + ACTIONS(11310), 1, sym_identifier, - STATE(7453), 1, + STATE(7015), 1, sym_string_literal, - STATE(7759), 1, + STATE(7375), 1, sym_raw_string_literal, - STATE(9139), 1, + STATE(8203), 1, sym_concatenated_string, ACTIONS(115), 5, anon_sym_L_DQUOTE, @@ -604174,16 +570200,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [336504] = 7, + [298355] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11650), 1, + ACTIONS(11310), 1, sym_identifier, - STATE(7508), 1, + STATE(7019), 1, sym_string_literal, - STATE(7759), 1, + STATE(7375), 1, sym_raw_string_literal, - STATE(8591), 1, + STATE(8282), 1, sym_concatenated_string, ACTIONS(115), 5, anon_sym_L_DQUOTE, @@ -604197,16 +570223,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [336534] = 7, + [298385] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(10611), 1, + anon_sym_LBRACK, + STATE(4184), 1, + sym_parameter_list, + STATE(7260), 1, + sym_function_declarator_seq, + STATE(7162), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11324), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [298417] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11346), 1, + sym_identifier, + ACTIONS(11349), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11352), 1, + aux_sym_preproc_if_token1, + ACTIONS(11355), 1, + aux_sym_preproc_ifdef_token1, + ACTIONS(11358), 1, + aux_sym_preproc_ifdef_token2, + ACTIONS(11361), 1, + sym_preproc_directive, + ACTIONS(11364), 1, + anon_sym_RBRACE, + ACTIONS(11366), 1, + sym_semgrep_metavar, + STATE(7156), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + STATE(9911), 3, + sym_preproc_call, + sym_enumerator, + sym_semgrep_ellipsis, + [298455] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11650), 1, + ACTIONS(11310), 1, sym_identifier, - STATE(7511), 1, + STATE(7026), 1, sym_string_literal, - STATE(7759), 1, + STATE(7375), 1, sym_raw_string_literal, - STATE(8614), 1, + STATE(8503), 1, sym_concatenated_string, ACTIONS(115), 5, anon_sym_L_DQUOTE, @@ -604220,16 +570297,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [336564] = 7, + [298485] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8229), 1, + anon_sym_LBRACE, + ACTIONS(10109), 1, + sym_identifier, + STATE(3094), 1, + sym_template_type, + STATE(3322), 1, + sym_qualified_type_identifier, + STATE(4499), 1, + sym_enumerator_list, + STATE(5536), 1, + sym_class_name, + STATE(7521), 1, + sym_scope_resolution, + ACTIONS(11369), 2, + anon_sym_class, + anon_sym_struct, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [298527] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11650), 1, + ACTIONS(11310), 1, sym_identifier, - STATE(7431), 1, + STATE(7030), 1, sym_string_literal, - STATE(7759), 1, + STATE(7375), 1, sym_raw_string_literal, - STATE(9075), 1, + STATE(8571), 1, sym_concatenated_string, ACTIONS(115), 5, anon_sym_L_DQUOTE, @@ -604243,86 +570349,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [336594] = 8, + [298557] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(8280), 1, + anon_sym_requires, + ACTIONS(10156), 1, + anon_sym_LBRACK, + STATE(6835), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + anon_sym_LBRACE, + anon_sym_try, + [298589] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8285), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7073), 1, + sym_function_postfix, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(11001), 1, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(3864), 1, - sym_parameter_list, - STATE(7652), 1, - sym_function_declarator_seq, - STATE(7714), 2, + anon_sym_COLON, + [298619] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11373), 1, + anon_sym_LBRACK, + STATE(7112), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(11626), 7, + ACTIONS(11371), 10, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [336626] = 6, + [298645] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11662), 1, + ACTIONS(10611), 1, anon_sym_LBRACK, - STATE(4035), 1, + STATE(4221), 1, sym_parameter_list, - STATE(7421), 1, + STATE(7260), 1, sym_function_declarator_seq, - ACTIONS(11449), 10, + STATE(7318), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11331), 7, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [336654] = 7, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [298677] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(11650), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(9742), 1, + anon_sym_LBRACE, + ACTIONS(10117), 1, sym_identifier, - STATE(7440), 1, - sym_string_literal, - STATE(7759), 1, - sym_raw_string_literal, - STATE(8772), 1, - sym_concatenated_string, - ACTIONS(115), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(155), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [336684] = 7, + STATE(5722), 1, + sym_template_type, + STATE(5753), 1, + sym_qualified_type_identifier, + STATE(5773), 1, + sym_class_name, + STATE(5868), 1, + sym_enumerator_list, + STATE(7539), 1, + sym_scope_resolution, + ACTIONS(11375), 2, + anon_sym_class, + anon_sym_struct, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [298719] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(8561), 1, + anon_sym_COLON, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(10060), 1, + anon_sym_STAR, + ACTIONS(10062), 1, + anon_sym_AMP_AMP, + ACTIONS(10064), 1, + anon_sym_AMP, + STATE(4616), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7825), 1, + sym_abstract_declarator, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [298757] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(10611), 1, + anon_sym_LBRACK, + STATE(4221), 1, + sym_parameter_list, + STATE(7260), 1, + sym_function_declarator_seq, + STATE(7318), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11337), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [298789] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11650), 1, + ACTIONS(11310), 1, sym_identifier, - STATE(7482), 1, + STATE(10028), 1, + sym_concatenated_string, + STATE(7283), 2, sym_string_literal, - STATE(7759), 1, sym_raw_string_literal, - STATE(8802), 1, - sym_concatenated_string, ACTIONS(115), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, @@ -604335,14 +570543,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [336714] = 6, + [298817] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(11650), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8203), 1, + anon_sym_LBRACE, + ACTIONS(10123), 1, sym_identifier, - STATE(10020), 1, + STATE(4123), 1, + sym_template_type, + STATE(4175), 1, + sym_class_name, + STATE(4280), 1, + sym_qualified_type_identifier, + STATE(4470), 1, + sym_enumerator_list, + STATE(7541), 1, + sym_scope_resolution, + ACTIONS(11377), 2, + anon_sym_class, + anon_sym_struct, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [298859] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11310), 1, + sym_identifier, + STATE(9184), 1, sym_concatenated_string, - STATE(7651), 2, + STATE(7238), 2, sym_string_literal, sym_raw_string_literal, ACTIONS(115), 5, @@ -604357,222 +570594,383 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [336742] = 8, + [298887] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(9692), 1, + anon_sym_LBRACE, + ACTIONS(10127), 1, + sym_identifier, + STATE(3094), 1, + sym_template_type, + STATE(3322), 1, + sym_qualified_type_identifier, + STATE(5796), 1, + sym_enumerator_list, + STATE(6131), 1, + sym_class_name, + STATE(7551), 1, + sym_scope_resolution, + ACTIONS(11379), 2, + anon_sym_class, + anon_sym_struct, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [298929] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10076), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7073), 1, + sym_function_postfix, + ACTIONS(9785), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + [298959] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8280), 1, + anon_sym_requires, + ACTIONS(10788), 1, + anon_sym_LBRACK, + STATE(6812), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10786), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + anon_sym_LBRACE, + anon_sym_try, + [298991] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8285), 1, + anon_sym_requires, + STATE(7017), 1, + sym_function_postfix, + STATE(7021), 1, + sym_requires_clause, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10786), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(11001), 1, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(3864), 1, + anon_sym_COLON, + [299021] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8280), 1, + anon_sym_requires, + ACTIONS(10784), 1, + anon_sym_LBRACK, + STATE(6815), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10782), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [299053] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(10611), 1, + anon_sym_LBRACK, + STATE(4221), 1, sym_parameter_list, - STATE(7652), 1, + STATE(7260), 1, sym_function_declarator_seq, - STATE(7714), 2, + STATE(7318), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(11632), 7, + ACTIONS(11381), 7, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [336774] = 7, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [299085] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(11650), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(7041), 1, + anon_sym_LBRACE, + ACTIONS(10101), 1, sym_identifier, - STATE(7456), 1, - sym_string_literal, - STATE(7759), 1, - sym_raw_string_literal, - STATE(8905), 1, - sym_concatenated_string, - ACTIONS(115), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(155), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [336804] = 7, + STATE(2919), 1, + sym_template_type, + STATE(3097), 1, + sym_qualified_type_identifier, + STATE(3101), 1, + sym_enumerator_list, + STATE(4641), 1, + sym_class_name, + STATE(7556), 1, + sym_scope_resolution, + ACTIONS(11383), 2, + anon_sym_class, + anon_sym_struct, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [299127] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(11650), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8308), 1, + anon_sym_LBRACE, + ACTIONS(10129), 1, sym_identifier, - STATE(7461), 1, - sym_string_literal, - STATE(7759), 1, - sym_raw_string_literal, - STATE(8937), 1, - sym_concatenated_string, - ACTIONS(115), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(155), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [336834] = 13, + STATE(4400), 1, + sym_template_type, + STATE(4415), 1, + sym_class_name, + STATE(4457), 1, + sym_qualified_type_identifier, + STATE(4634), 1, + sym_enumerator_list, + STATE(7545), 1, + sym_scope_resolution, + ACTIONS(11385), 2, + anon_sym_class, + anon_sym_struct, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [299169] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8544), 1, + ACTIONS(5985), 1, anon_sym_LBRACE, - ACTIONS(10481), 1, + ACTIONS(10146), 1, sym_identifier, - STATE(4364), 1, + STATE(2050), 1, sym_template_type, - STATE(4501), 1, + STATE(2137), 1, sym_qualified_type_identifier, - STATE(4744), 1, + STATE(2185), 1, sym_enumerator_list, - STATE(6222), 1, + STATE(2514), 1, sym_class_name, - STATE(7904), 1, + STATE(7549), 1, + sym_scope_resolution, + ACTIONS(11387), 2, + anon_sym_class, + anon_sym_struct, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [299211] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(6943), 1, + anon_sym_LBRACE, + ACTIONS(10119), 1, + sym_identifier, + STATE(2808), 1, + sym_template_type, + STATE(2831), 1, + sym_class_name, + STATE(2845), 1, + sym_qualified_type_identifier, + STATE(3045), 1, + sym_enumerator_list, + STATE(7544), 1, sym_scope_resolution, - ACTIONS(11695), 2, + ACTIONS(11389), 2, anon_sym_class, anon_sym_struct, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [336876] = 13, + [299253] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(10424), 1, + anon_sym_LBRACK, + STATE(3973), 1, + sym_parameter_list, + STATE(7456), 1, + sym_function_declarator_seq, + STATE(7384), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11391), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [299285] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6241), 1, + ACTIONS(6829), 1, anon_sym_LBRACE, - ACTIONS(10523), 1, + ACTIONS(10138), 1, sym_identifier, - STATE(2485), 1, - sym_enumerator_list, - STATE(2509), 1, + STATE(2674), 1, sym_template_type, - STATE(2589), 1, - sym_qualified_type_identifier, - STATE(4601), 1, + STATE(2706), 1, sym_class_name, - STATE(7902), 1, + STATE(2747), 1, + sym_qualified_type_identifier, + STATE(2859), 1, + sym_enumerator_list, + STATE(7547), 1, sym_scope_resolution, - ACTIONS(11697), 2, + ACTIONS(11393), 2, anon_sym_class, anon_sym_struct, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [336918] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8603), 1, - anon_sym_DASH_GT, - ACTIONS(8605), 1, - anon_sym_requires, - STATE(7422), 1, - sym_requires_clause, - STATE(7477), 1, - sym_function_postfix, - STATE(7735), 1, - sym_trailing_return_type, - ACTIONS(8102), 2, - anon_sym_final, - anon_sym_override, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10895), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [336952] = 13, + [299327] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8852), 1, + ACTIONS(8229), 1, anon_sym_LBRACE, - ACTIONS(10525), 1, + ACTIONS(10099), 1, sym_identifier, - STATE(5154), 1, - sym_class_name, - STATE(5185), 1, + STATE(3094), 1, sym_template_type, - STATE(5289), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(5460), 1, + STATE(4483), 1, sym_enumerator_list, - STATE(7944), 1, + STATE(4544), 1, + sym_class_name, + STATE(7571), 1, sym_scope_resolution, - ACTIONS(11699), 2, + ACTIONS(11395), 2, anon_sym_class, anon_sym_struct, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [336994] = 8, + [299369] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8098), 1, + ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(10814), 1, + ACTIONS(6212), 1, anon_sym_LBRACK, - STATE(4270), 1, - sym_parameter_list, - STATE(7807), 1, - sym_function_declarator_seq, - STATE(7703), 2, + STATE(7112), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(11701), 7, + ACTIONS(6210), 10, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - [337026] = 6, + [299395] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11650), 1, + ACTIONS(11310), 1, sym_identifier, - STATE(10158), 1, - sym_concatenated_string, - STATE(7663), 2, + STATE(7014), 1, sym_string_literal, + STATE(7375), 1, sym_raw_string_literal, + STATE(8287), 1, + sym_concatenated_string, ACTIONS(115), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, @@ -604585,65 +570983,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [337054] = 8, + [299425] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8229), 1, + anon_sym_LBRACE, + ACTIONS(10142), 1, + sym_identifier, + STATE(3094), 1, + sym_template_type, + STATE(3098), 1, + sym_qualified_type_identifier, + STATE(4215), 1, + sym_class_name, + STATE(4483), 1, + sym_enumerator_list, + STATE(7569), 1, + sym_scope_resolution, + ACTIONS(11397), 2, + anon_sym_class, + anon_sym_struct, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [299467] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11001), 1, + ACTIONS(10611), 1, anon_sym_LBRACK, - STATE(3864), 1, + STATE(4184), 1, sym_parameter_list, - STATE(7652), 1, + STATE(7260), 1, sym_function_declarator_seq, - STATE(7714), 2, + STATE(7162), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(11636), 7, + ACTIONS(11381), 7, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [299499] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8285), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7094), 1, + sym_function_postfix, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + [299529] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9793), 1, + anon_sym_requires, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + ACTIONS(9708), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_try, - [337086] = 7, + [299561] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(11650), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8229), 1, + anon_sym_LBRACE, + ACTIONS(10127), 1, sym_identifier, - STATE(7502), 1, - sym_string_literal, - STATE(7759), 1, - sym_raw_string_literal, - STATE(8700), 1, - sym_concatenated_string, - ACTIONS(115), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(155), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [337116] = 6, + STATE(3094), 1, + sym_template_type, + STATE(3322), 1, + sym_qualified_type_identifier, + STATE(4499), 1, + sym_enumerator_list, + STATE(4676), 1, + sym_class_name, + STATE(7551), 1, + sym_scope_resolution, + ACTIONS(11399), 2, + anon_sym_class, + anon_sym_struct, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [299603] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11662), 1, + ACTIONS(11401), 1, anon_sym_LBRACK, - STATE(4035), 1, + STATE(3830), 1, sym_parameter_list, - STATE(7421), 1, + STATE(7104), 1, sym_function_declarator_seq, - ACTIONS(11457), 10, + ACTIONS(11235), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -604654,37 +571134,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [337144] = 7, + [299631] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11683), 1, + ACTIONS(9783), 1, anon_sym_LBRACK, - STATE(7685), 1, - sym_parameter_list, - STATE(7692), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6777), 8, - anon_sym_COMMA, + ACTIONS(10096), 1, + anon_sym_requires, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(10005), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, anon_sym_try, - [337174] = 6, + [299663] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11650), 1, + ACTIONS(11310), 1, sym_identifier, - STATE(9701), 1, + STATE(9768), 1, sym_concatenated_string, - STATE(7653), 2, + STATE(7301), 2, sym_string_literal, sym_raw_string_literal, ACTIONS(115), 5, @@ -604699,17 +571180,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [337202] = 7, + [299691] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11650), 1, + ACTIONS(11310), 1, sym_identifier, - STATE(7512), 1, + STATE(9137), 1, + sym_concatenated_string, + STATE(7229), 2, sym_string_literal, - STATE(7759), 1, sym_raw_string_literal, - STATE(9082), 1, - sym_concatenated_string, ACTIONS(115), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, @@ -604722,16 +571202,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [337232] = 6, + [299719] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11650), 1, + ACTIONS(11310), 1, sym_identifier, - STATE(9788), 1, - sym_concatenated_string, - STATE(7630), 2, + STATE(7040), 1, sym_string_literal, + STATE(7375), 1, sym_raw_string_literal, + STATE(8359), 1, + sym_concatenated_string, ACTIONS(115), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, @@ -604744,36 +571225,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [337260] = 6, + [299749] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11662), 1, + ACTIONS(10424), 1, anon_sym_LBRACK, - STATE(4035), 1, + STATE(3973), 1, sym_parameter_list, - STATE(7421), 1, + STATE(7456), 1, sym_function_declarator_seq, - ACTIONS(11463), 10, + STATE(7384), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11403), 7, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, + anon_sym_COLON, anon_sym_try, - anon_sym_requires, - [337288] = 6, + [299781] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11650), 1, + ACTIONS(11310), 1, sym_identifier, - STATE(9861), 1, + STATE(9213), 1, sym_concatenated_string, - STATE(7676), 2, + STATE(7270), 2, sym_string_literal, sym_raw_string_literal, ACTIONS(115), 5, @@ -604788,39 +571271,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [337316] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7588), 1, - anon_sym_LT, - STATE(4106), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6753), 1, - sym_template_argument_list, - ACTIONS(7590), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5959), 6, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_LBRACE, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [337346] = 6, + [299809] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11650), 1, + ACTIONS(11310), 1, sym_identifier, - STATE(9912), 1, - sym_concatenated_string, - STATE(7660), 2, + STATE(7095), 1, sym_string_literal, + STATE(7375), 1, sym_raw_string_literal, + STATE(8247), 1, + sym_concatenated_string, ACTIONS(115), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, @@ -604833,14 +571294,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [337374] = 6, + [299839] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11650), 1, + ACTIONS(11310), 1, sym_identifier, - STATE(9957), 1, + STATE(9268), 1, sym_concatenated_string, - STATE(7649), 2, + STATE(7251), 2, sym_string_literal, sym_raw_string_literal, ACTIONS(115), 5, @@ -604855,14 +571316,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [337402] = 6, + [299867] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11650), 1, + ACTIONS(11310), 1, sym_identifier, - STATE(10000), 1, + STATE(9312), 1, sym_concatenated_string, - STATE(7686), 2, + STATE(7278), 2, sym_string_literal, sym_raw_string_literal, ACTIONS(115), 5, @@ -604877,14 +571338,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [337430] = 6, + [299895] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(10611), 1, + anon_sym_LBRACK, + STATE(4221), 1, + sym_parameter_list, + STATE(7260), 1, + sym_function_declarator_seq, + STATE(7318), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11329), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [299927] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11650), 1, + ACTIONS(11310), 1, sym_identifier, - STATE(10041), 1, + STATE(9354), 1, sym_concatenated_string, - STATE(7639), 2, + STATE(7309), 2, sym_string_literal, sym_raw_string_literal, ACTIONS(115), 5, @@ -604899,155 +571384,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [337458] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8406), 1, - anon_sym_LBRACE, - ACTIONS(11666), 1, - sym_identifier, - STATE(4339), 1, - sym_class_name, - STATE(4648), 1, - sym_qualified_type_identifier, - STATE(4736), 1, - sym_template_type, - STATE(4789), 1, - sym_enumerator_list, - STATE(7881), 1, - sym_scope_resolution, - ACTIONS(11703), 2, - anon_sym_class, - anon_sym_struct, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [337500] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7592), 1, - anon_sym_LT, - STATE(7592), 1, - sym_template_argument_list, - ACTIONS(8637), 2, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(5488), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [337528] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(6858), 1, - anon_sym_LBRACE, - ACTIONS(10508), 1, - sym_identifier, - STATE(2765), 1, - sym_template_type, - STATE(2815), 1, - sym_class_name, - STATE(2887), 1, - sym_qualified_type_identifier, - STATE(3100), 1, - sym_enumerator_list, - STATE(7915), 1, - sym_scope_resolution, - ACTIONS(11705), 2, - anon_sym_class, - anon_sym_struct, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [337570] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(7114), 1, - anon_sym_LBRACE, - ACTIONS(10471), 1, - sym_identifier, - STATE(3011), 1, - sym_template_type, - STATE(3140), 1, - sym_qualified_type_identifier, - STATE(3282), 1, - sym_enumerator_list, - STATE(5082), 1, - sym_class_name, - STATE(7878), 1, - sym_scope_resolution, - ACTIONS(11707), 2, - anon_sym_class, - anon_sym_struct, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [337612] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8574), 1, - anon_sym_LBRACE, - ACTIONS(11709), 1, - sym_identifier, - STATE(4685), 1, - sym_class_name, - STATE(4843), 1, - sym_template_type, - STATE(5015), 1, - sym_qualified_type_identifier, - STATE(5065), 1, - sym_enumerator_list, - STATE(7916), 1, - sym_scope_resolution, - ACTIONS(11711), 2, - anon_sym_class, - anon_sym_struct, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [337654] = 7, + [299955] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11650), 1, + ACTIONS(11310), 1, sym_identifier, - STATE(7469), 1, + STATE(9394), 1, + sym_concatenated_string, + STATE(7234), 2, sym_string_literal, - STATE(7759), 1, sym_raw_string_literal, - STATE(8774), 1, - sym_concatenated_string, ACTIONS(115), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, @@ -605060,373 +571406,441 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [337684] = 13, + [299983] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(7129), 1, + ACTIONS(10156), 1, + anon_sym_LBRACK, + ACTIONS(10286), 1, + anon_sym_requires, + STATE(6835), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(10179), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(10477), 1, - sym_identifier, - STATE(3010), 1, - sym_template_type, - STATE(3044), 1, - sym_class_name, - STATE(3184), 1, - sym_qualified_type_identifier, - STATE(3524), 1, - sym_enumerator_list, - STATE(7917), 1, - sym_scope_resolution, - ACTIONS(11713), 2, - anon_sym_class, - anon_sym_struct, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [337726] = 8, + anon_sym_try, + [300015] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11001), 1, + ACTIONS(6753), 1, anon_sym_LBRACK, - STATE(3864), 1, - sym_parameter_list, - STATE(7652), 1, - sym_function_declarator_seq, - STATE(7714), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(11648), 7, - anon_sym_COMMA, + ACTIONS(11405), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6755), 11, 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_or, + anon_sym_final, + anon_sym_override, anon_sym_try, - [337758] = 13, + anon_sym_requires, + [300039] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(7114), 1, + ACTIONS(10788), 1, + anon_sym_LBRACK, + ACTIONS(11127), 1, + anon_sym_requires, + STATE(6812), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(10790), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10786), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(10521), 1, - sym_identifier, - STATE(3011), 1, - sym_template_type, - STATE(3140), 1, - sym_qualified_type_identifier, - STATE(3282), 1, - sym_enumerator_list, - STATE(6703), 1, - sym_class_name, - STATE(7876), 1, - sym_scope_resolution, - ACTIONS(11715), 2, - anon_sym_class, - anon_sym_struct, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [337800] = 13, + anon_sym_try, + [300071] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(6951), 1, + ACTIONS(10784), 1, + anon_sym_LBRACK, + ACTIONS(11407), 1, + anon_sym_requires, + STATE(6815), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(10836), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10782), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(10479), 1, - sym_identifier, - STATE(2905), 1, - sym_template_type, - STATE(2954), 1, - sym_class_name, - STATE(3047), 1, - sym_qualified_type_identifier, - STATE(3309), 1, - sym_enumerator_list, - STATE(7873), 1, - sym_scope_resolution, - ACTIONS(11717), 2, - anon_sym_class, - anon_sym_struct, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [337842] = 8, + anon_sym_try, + [300103] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(10814), 1, + ACTIONS(11401), 1, anon_sym_LBRACK, - STATE(4270), 1, + STATE(3830), 1, sym_parameter_list, - STATE(7807), 1, + STATE(7104), 1, sym_function_declarator_seq, - STATE(7703), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(11719), 7, + ACTIONS(11241), 10, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [337874] = 8, + anon_sym_requires, + [300131] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(10814), 1, + ACTIONS(11401), 1, anon_sym_LBRACK, - STATE(4270), 1, + STATE(3830), 1, sym_parameter_list, - STATE(7807), 1, + STATE(7104), 1, sym_function_declarator_seq, - STATE(7703), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(11721), 7, + ACTIONS(11243), 10, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [337906] = 4, + anon_sym_requires, + [300159] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5525), 1, - anon_sym_COLON_COLON, - ACTIONS(5527), 2, + ACTIONS(11216), 1, + anon_sym_requires, + STATE(7017), 1, + sym_function_postfix, + STATE(7021), 1, + sym_requires_clause, + ACTIONS(10875), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10786), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(5520), 11, + [300189] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11401), 1, + anon_sym_LBRACK, + STATE(3830), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + ACTIONS(11247), 10, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [300217] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10418), 1, anon_sym_LPAREN2, + ACTIONS(11401), 1, + anon_sym_LBRACK, + STATE(3830), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + ACTIONS(11249), 10, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [337930] = 7, + anon_sym_requires, + [300245] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11310), 1, + sym_identifier, + STATE(7032), 1, + sym_string_literal, + STATE(7375), 1, + sym_raw_string_literal, + STATE(8472), 1, + sym_concatenated_string, + ACTIONS(115), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(155), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [300275] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8098), 1, + ACTIONS(8324), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11683), 1, + ACTIONS(10424), 1, anon_sym_LBRACK, - STATE(7685), 1, + STATE(3973), 1, sym_parameter_list, - STATE(7692), 2, + STATE(7456), 1, + sym_function_declarator_seq, + STATE(7384), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(6759), 8, + ACTIONS(11410), 7, anon_sym_COMMA, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, anon_sym_try, - [337960] = 9, + [300307] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8603), 1, - anon_sym_DASH_GT, - ACTIONS(10367), 1, - anon_sym_requires, - STATE(7422), 1, - sym_requires_clause, - STATE(7479), 1, - sym_function_postfix, - STATE(7738), 1, - sym_trailing_return_type, - ACTIONS(10052), 2, - anon_sym_final, - anon_sym_override, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(9897), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, anon_sym_LPAREN2, + ACTIONS(10424), 1, anon_sym_LBRACK, - anon_sym_GT2, - [337994] = 13, + STATE(3973), 1, + sym_parameter_list, + STATE(7456), 1, + sym_function_declarator_seq, + STATE(7384), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11412), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [300339] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8544), 1, + ACTIONS(6491), 1, anon_sym_LBRACE, - ACTIONS(10481), 1, + ACTIONS(10103), 1, sym_identifier, - STATE(4364), 1, + STATE(2582), 1, sym_template_type, - STATE(4501), 1, - sym_qualified_type_identifier, - STATE(4744), 1, + STATE(2596), 1, sym_enumerator_list, - STATE(5748), 1, + STATE(2696), 1, + sym_qualified_type_identifier, + STATE(5987), 1, sym_class_name, - STATE(7904), 1, + STATE(7524), 1, sym_scope_resolution, - ACTIONS(11723), 2, + ACTIONS(11414), 2, anon_sym_class, anon_sym_struct, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [338036] = 6, + [300381] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7592), 1, - anon_sym_LT, - STATE(7592), 1, - sym_template_argument_list, - ACTIONS(5469), 2, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11401), 1, anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(5462), 9, + STATE(3830), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + ACTIONS(11251), 10, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [338064] = 9, + anon_sym_requires, + [300409] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8603), 1, - anon_sym_DASH_GT, - ACTIONS(8605), 1, - anon_sym_requires, - STATE(7422), 1, - sym_requires_clause, - STATE(7479), 1, - sym_function_postfix, - STATE(7730), 1, - sym_trailing_return_type, - ACTIONS(8102), 2, - anon_sym_final, - anon_sym_override, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(9897), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(10418), 1, anon_sym_LPAREN2, + ACTIONS(11401), 1, anon_sym_LBRACK, + STATE(3830), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + ACTIONS(11253), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [338098] = 13, + anon_sym_try, + anon_sym_requires, + [300437] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6442), 1, + ACTIONS(7041), 1, anon_sym_LBRACE, - ACTIONS(10475), 1, + ACTIONS(10133), 1, sym_identifier, - STATE(2515), 1, + STATE(2919), 1, sym_template_type, - STATE(2541), 1, - sym_class_name, - STATE(2599), 1, + STATE(3097), 1, sym_qualified_type_identifier, - STATE(2683), 1, + STATE(3101), 1, sym_enumerator_list, - STATE(7919), 1, + STATE(5920), 1, + sym_class_name, + STATE(7558), 1, sym_scope_resolution, - ACTIONS(11725), 2, + ACTIONS(11416), 2, anon_sym_class, anon_sym_struct, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [338140] = 9, + [300479] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8603), 1, + ACTIONS(8301), 1, anon_sym_DASH_GT, - ACTIONS(8605), 1, + ACTIONS(8303), 1, anon_sym_requires, - STATE(7422), 1, + STATE(7021), 1, sym_requires_clause, - STATE(7444), 1, + STATE(7068), 1, sym_function_postfix, - STATE(7731), 1, + STATE(7338), 1, sym_trailing_return_type, - ACTIONS(8102), 2, + ACTIONS(7921), 2, anon_sym_final, anon_sym_override, - STATE(7282), 2, + STATE(6899), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10101), 5, + ACTIONS(9640), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_GT2, - [338174] = 7, + [300513] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8280), 1, + anon_sym_requires, + ACTIONS(9783), 1, + anon_sym_LBRACK, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [300545] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11650), 1, + ACTIONS(11310), 1, sym_identifier, - STATE(7430), 1, + STATE(7111), 1, sym_string_literal, - STATE(7759), 1, + STATE(7375), 1, sym_raw_string_literal, - STATE(8807), 1, + STATE(8308), 1, sym_concatenated_string, ACTIONS(115), 5, anon_sym_L_DQUOTE, @@ -605440,465 +571854,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [338204] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(7247), 1, - anon_sym_LBRACE, - ACTIONS(10473), 1, - sym_identifier, - STATE(3135), 1, - sym_template_type, - STATE(3161), 1, - sym_class_name, - STATE(3434), 1, - sym_qualified_type_identifier, - STATE(3722), 1, - sym_enumerator_list, - STATE(7909), 1, - sym_scope_resolution, - ACTIONS(11727), 2, - anon_sym_class, - anon_sym_struct, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [338246] = 9, + [300575] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8603), 1, - anon_sym_DASH_GT, - ACTIONS(10733), 1, + ACTIONS(10283), 1, anon_sym_requires, - STATE(7422), 1, + STATE(7021), 1, sym_requires_clause, - STATE(7462), 1, + STATE(7094), 1, sym_function_postfix, - STATE(7740), 1, - sym_trailing_return_type, - ACTIONS(10541), 2, + ACTIONS(10158), 2, anon_sym_final, anon_sym_override, - STATE(7282), 2, + STATE(6899), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10464), 5, - anon_sym_DOT_DOT_DOT, + ACTIONS(10154), 7, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_GT2, - [338280] = 9, + anon_sym_COLON, + [300605] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8603), 1, - anon_sym_DASH_GT, - ACTIONS(8605), 1, - anon_sym_requires, - STATE(7422), 1, - sym_requires_clause, - STATE(7462), 1, - sym_function_postfix, - STATE(7734), 1, - sym_trailing_return_type, - ACTIONS(8102), 2, + ACTIONS(6677), 1, + anon_sym_LBRACK, + ACTIONS(11405), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11418), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6679), 9, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_final, anon_sym_override, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10464), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [338314] = 7, + anon_sym_try, + anon_sym_requires, + [300631] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8098), 1, + ACTIONS(8324), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11683), 1, + ACTIONS(10424), 1, anon_sym_LBRACK, - STATE(7685), 1, + STATE(3973), 1, sym_parameter_list, - STATE(7692), 2, + STATE(7456), 1, + sym_function_declarator_seq, + STATE(7384), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(6746), 8, + ACTIONS(11420), 7, anon_sym_COMMA, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, anon_sym_try, - [338344] = 6, + [300663] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11662), 1, - anon_sym_LBRACK, - STATE(4035), 1, - sym_parameter_list, - STATE(7421), 1, - sym_function_declarator_seq, - ACTIONS(11451), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(8301), 1, + anon_sym_DASH_GT, + ACTIONS(8303), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7073), 1, + sym_function_postfix, + STATE(7343), 1, + sym_trailing_return_type, + ACTIONS(7921), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [338372] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9031), 1, - sym_identifier, - ACTIONS(9035), 1, - sym_primitive_type, - STATE(7617), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6022), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_GT2, - ACTIONS(6026), 3, - anon_sym___attribute__, - sym_auto, - anon_sym_decltype, - ACTIONS(11729), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [338401] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(21), 1, - sym_preproc_directive, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(11733), 1, - aux_sym_preproc_if_token1, - ACTIONS(11735), 1, - aux_sym_preproc_ifdef_token1, - ACTIONS(11737), 1, - aux_sym_preproc_ifdef_token2, - ACTIONS(11739), 1, - anon_sym_RBRACE, - STATE(9557), 2, - sym_preproc_call, - sym_enumerator, - STATE(10282), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7644), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [338436] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11743), 1, - anon_sym_LBRACK, - ACTIONS(11741), 12, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 5, + 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_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, + anon_sym_LBRACK, anon_sym_GT2, - anon_sym_try, - [338457] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(21), 1, - sym_preproc_directive, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(11733), 1, - aux_sym_preproc_if_token1, - ACTIONS(11735), 1, - aux_sym_preproc_ifdef_token1, - ACTIONS(11737), 1, - aux_sym_preproc_ifdef_token2, - ACTIONS(11745), 1, - anon_sym_RBRACE, - STATE(9235), 2, - sym_preproc_call, - sym_enumerator, - STATE(9696), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7772), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [338492] = 6, + [300697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11662), 1, + ACTIONS(11424), 1, anon_sym_LBRACK, - STATE(4347), 1, - sym_parameter_list, - STATE(7421), 1, - sym_function_declarator_seq, - ACTIONS(11465), 9, + ACTIONS(11422), 12, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [338519] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10808), 1, anon_sym_LPAREN2, - ACTIONS(11662), 1, - anon_sym_LBRACK, - STATE(4347), 1, - sym_parameter_list, - STATE(7421), 1, - sym_function_declarator_seq, - ACTIONS(11416), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [338546] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(21), 1, - sym_preproc_directive, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(11733), 1, - aux_sym_preproc_if_token1, - ACTIONS(11735), 1, - aux_sym_preproc_ifdef_token1, - ACTIONS(11737), 1, - aux_sym_preproc_ifdef_token2, - ACTIONS(11747), 1, - anon_sym_RBRACE, - STATE(9165), 2, - sym_preproc_call, - sym_enumerator, - STATE(9964), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7609), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [338581] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(21), 1, - sym_preproc_directive, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(11733), 1, - aux_sym_preproc_if_token1, - ACTIONS(11735), 1, - aux_sym_preproc_ifdef_token1, - ACTIONS(11737), 1, - aux_sym_preproc_ifdef_token2, - ACTIONS(11749), 1, - anon_sym_RBRACE, - STATE(9454), 2, - sym_preproc_call, - sym_enumerator, - STATE(9951), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7772), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [338616] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8637), 1, - anon_sym_LBRACK, - ACTIONS(11751), 1, anon_sym_SEMI, - ACTIONS(11753), 1, - anon_sym_LBRACE, - ACTIONS(11755), 1, - anon_sym_EQ, - ACTIONS(11757), 1, - anon_sym_COLON, - ACTIONS(11759), 1, - anon_sym_try, - STATE(2310), 1, - sym_compound_statement, - STATE(9610), 1, - sym_field_initializer_list, - ACTIONS(5488), 2, - anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(2333), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [338653] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(21), 1, - sym_preproc_directive, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(11733), 1, - aux_sym_preproc_if_token1, - ACTIONS(11735), 1, - aux_sym_preproc_ifdef_token1, - ACTIONS(11737), 1, - aux_sym_preproc_ifdef_token2, - ACTIONS(11761), 1, - anon_sym_RBRACE, - STATE(9445), 2, - sym_preproc_call, - sym_enumerator, - STATE(9932), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7628), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [338688] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(21), 1, - sym_preproc_directive, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(11733), 1, - aux_sym_preproc_if_token1, - ACTIONS(11735), 1, - aux_sym_preproc_ifdef_token1, - ACTIONS(11737), 1, - aux_sym_preproc_ifdef_token2, - ACTIONS(11763), 1, - anon_sym_RBRACE, - STATE(9533), 2, - sym_preproc_call, - sym_enumerator, - STATE(10180), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7640), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [338723] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(7638), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5699), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(6016), 3, - anon_sym_COMMA, anon_sym_LBRACE, - anon_sym_GT2, - ACTIONS(6019), 3, - anon_sym___attribute__, - sym_auto, - anon_sym_decltype, - ACTIONS(11765), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [338750] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(21), 1, - sym_preproc_directive, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(11733), 1, - aux_sym_preproc_if_token1, - ACTIONS(11735), 1, - aux_sym_preproc_ifdef_token1, - ACTIONS(11737), 1, - aux_sym_preproc_ifdef_token2, - ACTIONS(11768), 1, - anon_sym_RBRACE, - STATE(9546), 2, - sym_preproc_call, - sym_enumerator, - STATE(10224), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7619), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [338785] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(21), 1, - sym_preproc_directive, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(11733), 1, - aux_sym_preproc_if_token1, - ACTIONS(11735), 1, - aux_sym_preproc_ifdef_token1, - ACTIONS(11737), 1, - aux_sym_preproc_ifdef_token2, - ACTIONS(11770), 1, - anon_sym_RBRACE, - STATE(9613), 2, - sym_preproc_call, - sym_enumerator, - STATE(10562), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7772), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [338820] = 3, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [300718] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11237), 1, + anon_sym_LBRACK, + STATE(4177), 1, + sym_parameter_list, + STATE(6862), 1, + sym_function_declarator_seq, + ACTIONS(11235), 9, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [300745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11774), 1, + ACTIONS(6236), 1, anon_sym_LBRACK, - ACTIONS(11772), 12, + ACTIONS(6234), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -605911,12 +572004,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [338841] = 3, + [300766] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11426), 1, + anon_sym_RPAREN, + STATE(6965), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(11119), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(11121), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [300791] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + ACTIONS(8765), 1, + anon_sym_LBRACK, + ACTIONS(10054), 1, + anon_sym_STAR, + ACTIONS(10056), 1, + anon_sym_AMP_AMP, + ACTIONS(10058), 1, + anon_sym_AMP, + STATE(3879), 1, + sym_parameter_list, + STATE(7023), 1, + sym_function_declarator_seq, + STATE(7620), 1, + sym_abstract_declarator, + STATE(7113), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [300826] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8386), 1, + anon_sym_DASH_GT, + ACTIONS(8388), 1, + anon_sym_requires, + ACTIONS(10156), 1, + anon_sym_LBRACK, + STATE(6835), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7413), 1, + sym_trailing_return_type, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [300861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11778), 1, + ACTIONS(11430), 1, anon_sym_LBRACK, - ACTIONS(11776), 12, + ACTIONS(11428), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -605929,37 +572092,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [338862] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(21), 1, - sym_preproc_directive, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(11733), 1, - aux_sym_preproc_if_token1, - ACTIONS(11735), 1, - aux_sym_preproc_ifdef_token1, - ACTIONS(11737), 1, - aux_sym_preproc_ifdef_token2, - ACTIONS(11780), 1, - anon_sym_RBRACE, - STATE(9547), 2, - sym_preproc_call, - sym_enumerator, - STATE(10267), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7772), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [338897] = 3, + [300882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7245), 1, + ACTIONS(11434), 1, anon_sym_LBRACK, - ACTIONS(7243), 12, + ACTIONS(11432), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -605972,202 +572110,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [338918] = 10, + [300903] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(21), 1, - sym_preproc_directive, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(11733), 1, - aux_sym_preproc_if_token1, - ACTIONS(11735), 1, - aux_sym_preproc_ifdef_token1, - ACTIONS(11737), 1, - aux_sym_preproc_ifdef_token2, - ACTIONS(11782), 1, - anon_sym_RBRACE, - STATE(9479), 2, - sym_preproc_call, - sym_enumerator, - STATE(10014), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7772), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [338953] = 11, + ACTIONS(11436), 1, + anon_sym_RPAREN, + STATE(6965), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(11119), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(11121), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [300928] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_LBRACE, - ACTIONS(8637), 1, + ACTIONS(8341), 1, anon_sym_LBRACK, - ACTIONS(11757), 1, - anon_sym_COLON, - ACTIONS(11784), 1, + ACTIONS(11438), 1, anon_sym_SEMI, - ACTIONS(11786), 1, + ACTIONS(11440), 1, + anon_sym_LBRACE, + ACTIONS(11442), 1, anon_sym_EQ, - ACTIONS(11788), 1, + ACTIONS(11444), 1, + anon_sym_COLON, + ACTIONS(11446), 1, anon_sym_try, - STATE(836), 1, + STATE(2271), 1, sym_compound_statement, - STATE(9197), 1, + STATE(8972), 1, sym_field_initializer_list, - ACTIONS(5488), 2, + ACTIONS(5409), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(837), 3, + STATE(2302), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [338990] = 11, + [300965] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(8637), 1, + ACTIONS(309), 1, + anon_sym_LBRACE, + ACTIONS(8341), 1, anon_sym_LBRACK, - ACTIONS(11757), 1, + ACTIONS(11444), 1, anon_sym_COLON, - ACTIONS(11790), 1, + ACTIONS(11448), 1, anon_sym_SEMI, - ACTIONS(11792), 1, - anon_sym_LBRACE, - ACTIONS(11794), 1, + ACTIONS(11450), 1, anon_sym_EQ, - ACTIONS(11796), 1, + ACTIONS(11452), 1, anon_sym_try, - STATE(2317), 1, + STATE(396), 1, sym_compound_statement, - STATE(9265), 1, + STATE(8671), 1, sym_field_initializer_list, - ACTIONS(5488), 2, + ACTIONS(5409), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(2322), 3, + STATE(419), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [339027] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(21), 1, - sym_preproc_directive, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(11733), 1, - aux_sym_preproc_if_token1, - ACTIONS(11735), 1, - aux_sym_preproc_ifdef_token1, - ACTIONS(11737), 1, - aux_sym_preproc_ifdef_token2, - ACTIONS(11798), 1, - anon_sym_RBRACE, - STATE(9361), 2, - sym_preproc_call, - sym_enumerator, - STATE(9711), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7672), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [339062] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(21), 1, - sym_preproc_directive, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(11733), 1, - aux_sym_preproc_if_token1, - ACTIONS(11735), 1, - aux_sym_preproc_ifdef_token1, - ACTIONS(11737), 1, - aux_sym_preproc_ifdef_token2, - ACTIONS(11800), 1, - anon_sym_RBRACE, - STATE(9517), 2, - sym_preproc_call, - sym_enumerator, - STATE(10122), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7772), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [339097] = 3, + [301002] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6912), 1, + ACTIONS(8341), 1, anon_sym_LBRACK, - ACTIONS(6910), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(11444), 1, + anon_sym_COLON, + ACTIONS(11454), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + ACTIONS(11456), 1, anon_sym_LBRACE, + ACTIONS(11458), 1, anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, + ACTIONS(11460), 1, anon_sym_try, - [339118] = 5, + STATE(2446), 1, + sym_compound_statement, + STATE(9028), 1, + sym_field_initializer_list, + ACTIONS(5409), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(2239), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [301039] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11802), 1, + ACTIONS(11462), 1, anon_sym_RPAREN, - STATE(7398), 2, + STATE(6965), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(11497), 5, + ACTIONS(11119), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(11499), 5, + ACTIONS(11121), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [339143] = 10, + [301064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(21), 1, - sym_preproc_directive, - ACTIONS(11731), 1, + ACTIONS(5668), 1, sym_identifier, - ACTIONS(11733), 1, - aux_sym_preproc_if_token1, - ACTIONS(11735), 1, - aux_sym_preproc_ifdef_token1, - ACTIONS(11737), 1, - aux_sym_preproc_ifdef_token2, - ACTIONS(11804), 1, - anon_sym_RBRACE, - STATE(9264), 2, - sym_preproc_call, - sym_enumerator, - STATE(9885), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7688), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [339178] = 3, + ACTIONS(5666), 12, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [301085] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5649), 1, + sym_identifier, + ACTIONS(5647), 12, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [301106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11808), 1, + ACTIONS(6310), 1, anon_sym_LBRACK, - ACTIONS(11806), 12, + ACTIONS(6308), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -606180,30 +572282,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [339199] = 3, + [301127] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5469), 1, + ACTIONS(8386), 1, + anon_sym_DASH_GT, + ACTIONS(8388), 1, + anon_sym_requires, + ACTIONS(10788), 1, anon_sym_LBRACK, - ACTIONS(5462), 12, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(6812), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7414), 1, + sym_trailing_return_type, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10786), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [301162] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10418), 1, anon_sym_LPAREN2, + ACTIONS(11237), 1, + anon_sym_LBRACK, + STATE(4177), 1, + sym_parameter_list, + STATE(6862), 1, + sym_function_declarator_seq, + ACTIONS(11247), 9, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, + anon_sym_final, + anon_sym_override, anon_sym_try, - [339220] = 3, + anon_sym_requires, + [301189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8637), 1, + ACTIONS(6280), 1, anon_sym_LBRACK, - ACTIONS(5488), 12, + ACTIONS(6278), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -606216,146 +572346,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [339241] = 11, + [301210] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_LBRACE, - ACTIONS(8637), 1, + ACTIONS(8341), 1, anon_sym_LBRACK, - ACTIONS(11757), 1, + ACTIONS(11444), 1, anon_sym_COLON, - ACTIONS(11786), 1, + ACTIONS(11456), 1, + anon_sym_LBRACE, + ACTIONS(11458), 1, anon_sym_EQ, - ACTIONS(11788), 1, + ACTIONS(11460), 1, anon_sym_try, - ACTIONS(11810), 1, + ACTIONS(11464), 1, anon_sym_SEMI, - STATE(851), 1, + STATE(2391), 1, sym_compound_statement, - STATE(9213), 1, + STATE(9094), 1, sym_field_initializer_list, - ACTIONS(5488), 2, + ACTIONS(5409), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(852), 3, + STATE(2392), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [339278] = 10, + [301247] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5550), 1, + ACTIONS(8386), 1, + anon_sym_DASH_GT, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(10087), 1, + anon_sym_requires, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + STATE(7435), 1, + sym_trailing_return_type, + ACTIONS(9708), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 3, anon_sym_LPAREN2, - ACTIONS(9105), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [301282] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(860), 1, + anon_sym_LBRACE, + ACTIONS(8341), 1, anon_sym_LBRACK, - ACTIONS(10430), 1, - anon_sym_STAR, - ACTIONS(10432), 1, - anon_sym_AMP_AMP, - ACTIONS(10434), 1, - anon_sym_AMP, - STATE(4027), 1, - sym_parameter_list, - STATE(7450), 1, - sym_function_declarator_seq, - STATE(7977), 1, - sym_abstract_declarator, - STATE(7464), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [339313] = 3, + ACTIONS(11444), 1, + anon_sym_COLON, + ACTIONS(11466), 1, + anon_sym_SEMI, + ACTIONS(11468), 1, + anon_sym_EQ, + ACTIONS(11470), 1, + anon_sym_try, + STATE(748), 1, + sym_compound_statement, + STATE(8982), 1, + sym_field_initializer_list, + ACTIONS(5409), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(749), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [301319] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11255), 1, anon_sym_LBRACK, - ACTIONS(6862), 12, + STATE(7228), 1, + sym_parameter_list, + STATE(7374), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6132), 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_asm, anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [339334] = 5, + [301348] = 10, ACTIONS(3), 1, sym_comment, - STATE(7638), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5697), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_GT2, - ACTIONS(11765), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5699), 5, - anon_sym___attribute__, - sym_primitive_type, + ACTIONS(8386), 1, + anon_sym_DASH_GT, + ACTIONS(9783), 1, + anon_sym_LBRACK, + ACTIONS(10170), 1, + anon_sym_requires, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7441), 1, + sym_trailing_return_type, + ACTIONS(10005), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [301383] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5664), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - [339359] = 5, + ACTIONS(5662), 12, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [301404] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11812), 1, + ACTIONS(11472), 1, anon_sym_RPAREN, - STATE(7398), 2, + STATE(6965), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(11497), 5, + ACTIONS(11119), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(11499), 5, + ACTIONS(11121), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [339384] = 10, + [301429] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(21), 1, - sym_preproc_directive, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(11733), 1, - aux_sym_preproc_if_token1, - ACTIONS(11735), 1, - aux_sym_preproc_ifdef_token1, - ACTIONS(11737), 1, - aux_sym_preproc_ifdef_token2, - ACTIONS(11814), 1, - anon_sym_RBRACE, - STATE(9543), 2, - sym_preproc_call, - sym_enumerator, - STATE(10217), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7772), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [339419] = 3, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11255), 1, + anon_sym_LBRACK, + STATE(7228), 1, + sym_parameter_list, + STATE(7374), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6141), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [301458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6868), 1, + ACTIONS(11476), 1, anon_sym_LBRACK, - ACTIONS(6866), 12, + ACTIONS(11474), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -606368,248 +572548,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [339440] = 6, + [301479] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11662), 1, + ACTIONS(11237), 1, anon_sym_LBRACK, - STATE(4347), 1, + STATE(4177), 1, sym_parameter_list, - STATE(7421), 1, + STATE(6862), 1, sym_function_declarator_seq, - ACTIONS(11457), 9, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(11241), 9, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - sym_semgrep_metavar, - [339467] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(21), 1, - sym_preproc_directive, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(11733), 1, - aux_sym_preproc_if_token1, - ACTIONS(11735), 1, - aux_sym_preproc_ifdef_token1, - ACTIONS(11737), 1, - aux_sym_preproc_ifdef_token2, - ACTIONS(11816), 1, - anon_sym_RBRACE, - STATE(9257), 2, - sym_preproc_call, - sym_enumerator, - STATE(9823), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7679), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [339502] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(21), 1, - sym_preproc_directive, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(11733), 1, - aux_sym_preproc_if_token1, - ACTIONS(11735), 1, - aux_sym_preproc_ifdef_token1, - ACTIONS(11737), 1, - aux_sym_preproc_ifdef_token2, - ACTIONS(11818), 1, - anon_sym_RBRACE, - STATE(9585), 2, - sym_preproc_call, - sym_enumerator, - STATE(10454), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7772), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [339537] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(21), 1, - sym_preproc_directive, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(11733), 1, - aux_sym_preproc_if_token1, - ACTIONS(11735), 1, - aux_sym_preproc_ifdef_token1, - ACTIONS(11737), 1, - aux_sym_preproc_ifdef_token2, - ACTIONS(11820), 1, - anon_sym_RBRACE, - STATE(9226), 2, - sym_preproc_call, - sym_enumerator, - STATE(9667), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7657), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [339572] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(21), 1, - sym_preproc_directive, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(11733), 1, - aux_sym_preproc_if_token1, - ACTIONS(11735), 1, - aux_sym_preproc_ifdef_token1, - ACTIONS(11737), 1, - aux_sym_preproc_ifdef_token2, - ACTIONS(11822), 1, - anon_sym_RBRACE, - STATE(9308), 2, - sym_preproc_call, - sym_enumerator, - STATE(10307), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7772), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [339607] = 10, + [301506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(21), 1, - sym_preproc_directive, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(11733), 1, - aux_sym_preproc_if_token1, - ACTIONS(11735), 1, - aux_sym_preproc_ifdef_token1, - ACTIONS(11737), 1, - aux_sym_preproc_ifdef_token2, - ACTIONS(11824), 1, - anon_sym_RBRACE, - STATE(9579), 2, - sym_preproc_call, - sym_enumerator, - STATE(10395), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7772), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [339642] = 10, + ACTIONS(6350), 1, + anon_sym_LBRACK, + ACTIONS(6348), 12, + 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_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [301527] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(21), 1, - sym_preproc_directive, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(11733), 1, - aux_sym_preproc_if_token1, - ACTIONS(11735), 1, - aux_sym_preproc_ifdef_token1, - ACTIONS(11737), 1, - aux_sym_preproc_ifdef_token2, - ACTIONS(11826), 1, - anon_sym_RBRACE, - STATE(9190), 2, - sym_preproc_call, - sym_enumerator, - STATE(9753), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7622), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [339677] = 5, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11237), 1, + anon_sym_LBRACK, + STATE(4177), 1, + sym_parameter_list, + STATE(6862), 1, + sym_function_declarator_seq, + ACTIONS(11249), 9, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [301554] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11828), 1, + ACTIONS(8326), 1, + anon_sym_DASH_GT, + ACTIONS(8328), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7068), 1, + sym_function_postfix, + STATE(7419), 1, + sym_trailing_return_type, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 4, anon_sym_RPAREN, - STATE(7398), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(11497), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(11499), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [339702] = 10, + anon_sym_LPAREN2, + anon_sym_LBRACK, + sym_semgrep_metavar, + [301587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(21), 1, - sym_preproc_directive, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(11733), 1, - aux_sym_preproc_if_token1, - ACTIONS(11735), 1, - aux_sym_preproc_ifdef_token1, - ACTIONS(11737), 1, - aux_sym_preproc_ifdef_token2, - ACTIONS(11830), 1, - anon_sym_RBRACE, - STATE(9570), 2, - sym_preproc_call, - sym_enumerator, - STATE(10338), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7647), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [339737] = 5, + ACTIONS(6354), 1, + anon_sym_LBRACK, + ACTIONS(6352), 12, + 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_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [301608] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(11832), 1, - anon_sym_RPAREN, - STATE(7398), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(11497), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(11499), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [339762] = 3, + ACTIONS(8341), 1, + anon_sym_LBRACK, + ACTIONS(11444), 1, + anon_sym_COLON, + ACTIONS(11478), 1, + anon_sym_SEMI, + ACTIONS(11480), 1, + anon_sym_LBRACE, + ACTIONS(11482), 1, + anon_sym_EQ, + ACTIONS(11484), 1, + anon_sym_try, + STATE(2004), 1, + sym_compound_statement, + STATE(8951), 1, + sym_field_initializer_list, + ACTIONS(5409), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(1928), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [301645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11836), 1, + ACTIONS(11488), 1, anon_sym_LBRACK, - ACTIONS(11834), 12, + ACTIONS(11486), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -606622,160 +572694,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [339783] = 5, + [301666] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(11838), 1, - anon_sym_RPAREN, - STATE(7398), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(11497), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(11499), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [339808] = 11, + ACTIONS(8386), 1, + anon_sym_DASH_GT, + ACTIONS(10156), 1, + anon_sym_LBRACK, + ACTIONS(10442), 1, + anon_sym_requires, + STATE(6835), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7445), 1, + sym_trailing_return_type, + ACTIONS(10179), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [301701] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(309), 1, anon_sym_LBRACE, - ACTIONS(8637), 1, + ACTIONS(8341), 1, anon_sym_LBRACK, - ACTIONS(11757), 1, + ACTIONS(11444), 1, anon_sym_COLON, - ACTIONS(11840), 1, - anon_sym_SEMI, - ACTIONS(11842), 1, + ACTIONS(11450), 1, anon_sym_EQ, - ACTIONS(11844), 1, + ACTIONS(11452), 1, anon_sym_try, - STATE(446), 1, + ACTIONS(11490), 1, + anon_sym_SEMI, + STATE(377), 1, sym_compound_statement, - STATE(9421), 1, + STATE(8752), 1, sym_field_initializer_list, - ACTIONS(5488), 2, + ACTIONS(5409), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(449), 3, + STATE(378), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [339845] = 10, + [301738] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(21), 1, - sym_preproc_directive, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(11733), 1, - aux_sym_preproc_if_token1, - ACTIONS(11735), 1, - aux_sym_preproc_ifdef_token1, - ACTIONS(11737), 1, - aux_sym_preproc_ifdef_token2, - ACTIONS(11846), 1, - anon_sym_RBRACE, - STATE(9191), 2, - sym_preproc_call, - sym_enumerator, - STATE(9838), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7646), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [339880] = 11, + ACTIONS(8386), 1, + anon_sym_DASH_GT, + ACTIONS(10788), 1, + anon_sym_LBRACK, + ACTIONS(11492), 1, + anon_sym_requires, + STATE(6812), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7448), 1, + sym_trailing_return_type, + ACTIONS(10790), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10786), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [301773] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(8637), 1, + ACTIONS(1126), 1, + anon_sym_LBRACE, + ACTIONS(8341), 1, anon_sym_LBRACK, - ACTIONS(11757), 1, + ACTIONS(11444), 1, anon_sym_COLON, - ACTIONS(11848), 1, + ACTIONS(11495), 1, anon_sym_SEMI, - ACTIONS(11850), 1, - anon_sym_LBRACE, - ACTIONS(11852), 1, + ACTIONS(11497), 1, anon_sym_EQ, - ACTIONS(11854), 1, + ACTIONS(11499), 1, anon_sym_try, - STATE(2032), 1, + STATE(788), 1, sym_compound_statement, - STATE(9577), 1, + STATE(8809), 1, sym_field_initializer_list, - ACTIONS(5488), 2, + ACTIONS(5409), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(2033), 3, + STATE(789), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [339917] = 10, + [301810] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(21), 1, - sym_preproc_directive, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(11733), 1, - aux_sym_preproc_if_token1, - ACTIONS(11735), 1, - aux_sym_preproc_ifdef_token1, - ACTIONS(11737), 1, - aux_sym_preproc_ifdef_token2, - ACTIONS(11856), 1, - anon_sym_RBRACE, - STATE(9150), 2, - sym_preproc_call, - sym_enumerator, - STATE(10506), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7772), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [339952] = 11, + ACTIONS(421), 1, + anon_sym_LBRACE, + ACTIONS(8341), 1, + anon_sym_LBRACK, + ACTIONS(11444), 1, + anon_sym_COLON, + ACTIONS(11501), 1, + anon_sym_SEMI, + ACTIONS(11503), 1, + anon_sym_EQ, + ACTIONS(11505), 1, + anon_sym_try, + STATE(535), 1, + sym_compound_statement, + STATE(9112), 1, + sym_field_initializer_list, + ACTIONS(5409), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(496), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [301847] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1002), 1, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11237), 1, + anon_sym_LBRACK, + STATE(4177), 1, + sym_parameter_list, + STATE(6862), 1, + sym_function_declarator_seq, + ACTIONS(11251), 9, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(8637), 1, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [301874] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8341), 1, anon_sym_LBRACK, - ACTIONS(11757), 1, + ACTIONS(11444), 1, anon_sym_COLON, - ACTIONS(11858), 1, + ACTIONS(11507), 1, anon_sym_SEMI, - ACTIONS(11860), 1, + ACTIONS(11509), 1, + anon_sym_LBRACE, + ACTIONS(11511), 1, anon_sym_EQ, - ACTIONS(11862), 1, + ACTIONS(11513), 1, anon_sym_try, - STATE(761), 1, + STATE(2122), 1, sym_compound_statement, - STATE(9396), 1, + STATE(9022), 1, sym_field_initializer_list, - ACTIONS(5488), 2, + ACTIONS(5409), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(762), 3, + STATE(2126), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [339989] = 3, + [301911] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11237), 1, + anon_sym_LBRACK, + STATE(4177), 1, + sym_parameter_list, + STATE(6862), 1, + sym_function_declarator_seq, + ACTIONS(11243), 9, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [301938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11866), 1, + ACTIONS(6715), 1, anon_sym_LBRACK, - ACTIONS(11864), 12, + ACTIONS(6713), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -606788,114 +572908,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [340010] = 5, + [301959] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11868), 1, + ACTIONS(11515), 1, anon_sym_RPAREN, - STATE(7398), 2, + STATE(6965), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(11497), 5, + ACTIONS(11119), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(11499), 5, + ACTIONS(11121), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [340035] = 3, + [301984] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11872), 1, - anon_sym_LBRACK, - ACTIONS(11870), 12, - anon_sym_COMMA, + ACTIONS(8326), 1, + anon_sym_DASH_GT, + ACTIONS(10341), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7094), 1, + sym_function_postfix, + STATE(7458), 1, + sym_trailing_return_type, + ACTIONS(10158), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 4, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [340056] = 11, + anon_sym_LBRACK, + sym_semgrep_metavar, + [302017] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(8637), 1, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(8341), 1, anon_sym_LBRACK, - ACTIONS(11757), 1, + ACTIONS(11444), 1, anon_sym_COLON, - ACTIONS(11874), 1, + ACTIONS(11517), 1, anon_sym_SEMI, - ACTIONS(11876), 1, - anon_sym_LBRACE, - ACTIONS(11878), 1, + ACTIONS(11519), 1, anon_sym_EQ, - ACTIONS(11880), 1, + ACTIONS(11521), 1, anon_sym_try, - STATE(2125), 1, + STATE(881), 1, sym_compound_statement, - STATE(9382), 1, + STATE(9027), 1, sym_field_initializer_list, - ACTIONS(5488), 2, + ACTIONS(5409), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(2127), 3, + STATE(853), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [340093] = 5, + [302054] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11882), 1, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11255), 1, + anon_sym_LBRACK, + STATE(7228), 1, + sym_parameter_list, + STATE(7374), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6080), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [302083] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5660), 1, + sym_identifier, + ACTIONS(5658), 12, anon_sym_RPAREN, - STATE(7398), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(11497), 5, + anon_sym_COLON, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(11499), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [340118] = 3, + [302104] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6850), 1, + ACTIONS(8326), 1, + anon_sym_DASH_GT, + ACTIONS(10167), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7073), 1, + sym_function_postfix, + STATE(7457), 1, + sym_trailing_return_type, + ACTIONS(9785), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_LBRACK, - ACTIONS(6848), 12, - anon_sym_COMMA, + sym_semgrep_metavar, + [302137] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8326), 1, + anon_sym_DASH_GT, + ACTIONS(8328), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7073), 1, + sym_function_postfix, + STATE(7421), 1, + sym_trailing_return_type, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 4, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, + anon_sym_LBRACK, + sym_semgrep_metavar, + [302170] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8324), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11255), 1, + anon_sym_LBRACK, + STATE(7228), 1, + sym_parameter_list, + STATE(7374), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6038), 7, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [340139] = 3, + [302199] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6920), 1, + ACTIONS(11523), 1, + anon_sym_RPAREN, + STATE(6965), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(11119), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(11121), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [302224] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8326), 1, + anon_sym_DASH_GT, + ACTIONS(8328), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7094), 1, + sym_function_postfix, + STATE(7422), 1, + sym_trailing_return_type, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + sym_semgrep_metavar, + [302257] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11527), 1, anon_sym_LBRACK, - ACTIONS(6918), 12, + ACTIONS(11525), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -606908,128 +573150,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [340160] = 3, + [302278] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5671), 1, - sym_identifier, - ACTIONS(5669), 12, - anon_sym_RPAREN, + ACTIONS(8386), 1, + anon_sym_DASH_GT, + ACTIONS(8388), 1, + anon_sym_requires, + ACTIONS(9642), 1, + anon_sym_LBRACK, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + STATE(7408), 1, + sym_trailing_return_type, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, anon_sym_COLON, + [302313] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8326), 1, + anon_sym_DASH_GT, + ACTIONS(8328), 1, + anon_sym_requires, + STATE(7017), 1, + sym_function_postfix, + STATE(7021), 1, + sym_requires_clause, + STATE(7390), 1, + sym_trailing_return_type, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10786), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + sym_semgrep_metavar, + [302346] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11529), 1, + anon_sym_RPAREN, + STATE(6965), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(11119), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, + ACTIONS(11121), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [340181] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(21), 1, - sym_preproc_directive, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(11733), 1, - aux_sym_preproc_if_token1, - ACTIONS(11735), 1, - aux_sym_preproc_ifdef_token1, - ACTIONS(11737), 1, - aux_sym_preproc_ifdef_token2, - ACTIONS(11884), 1, - anon_sym_RBRACE, - STATE(9170), 2, - sym_preproc_call, - sym_enumerator, - STATE(10602), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7680), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [340216] = 6, + [302371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11662), 1, + ACTIONS(6264), 1, anon_sym_LBRACK, - STATE(4347), 1, - sym_parameter_list, - STATE(7421), 1, - sym_function_declarator_seq, - ACTIONS(11406), 9, + ACTIONS(6262), 12, 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_final, - anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [340243] = 11, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [302392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8637), 1, + ACTIONS(11533), 1, anon_sym_LBRACK, - ACTIONS(11753), 1, + ACTIONS(11531), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(11755), 1, anon_sym_EQ, - ACTIONS(11757), 1, anon_sym_COLON, - ACTIONS(11759), 1, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - ACTIONS(11886), 1, - anon_sym_SEMI, - STATE(2335), 1, - sym_compound_statement, - STATE(9216), 1, - sym_field_initializer_list, - ACTIONS(5488), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(2338), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [340280] = 11, + [302413] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(421), 1, - anon_sym_LBRACE, - ACTIONS(8637), 1, + sym_comment, + ACTIONS(8341), 1, anon_sym_LBRACK, - ACTIONS(11757), 1, + ACTIONS(11444), 1, anon_sym_COLON, - ACTIONS(11888), 1, - anon_sym_SEMI, - ACTIONS(11890), 1, + ACTIONS(11480), 1, + anon_sym_LBRACE, + ACTIONS(11482), 1, anon_sym_EQ, - ACTIONS(11892), 1, + ACTIONS(11484), 1, anon_sym_try, - STATE(554), 1, + ACTIONS(11535), 1, + anon_sym_SEMI, + STATE(2011), 1, sym_compound_statement, - STATE(9296), 1, + STATE(8918), 1, sym_field_initializer_list, - ACTIONS(5488), 2, + ACTIONS(5409), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(562), 3, + STATE(2013), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [340317] = 3, + [302450] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6810), 1, + ACTIONS(5993), 1, anon_sym_LBRACK, - ACTIONS(6808), 12, + ACTIONS(5991), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -607042,308 +573299,389 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [340338] = 10, + [302471] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(21), 1, - sym_preproc_directive, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(11733), 1, - aux_sym_preproc_if_token1, - ACTIONS(11735), 1, - aux_sym_preproc_ifdef_token1, - ACTIONS(11737), 1, - aux_sym_preproc_ifdef_token2, - ACTIONS(11894), 1, - anon_sym_RBRACE, - STATE(9391), 2, - sym_preproc_call, - sym_enumerator, - STATE(9782), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7772), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [340373] = 11, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11237), 1, + anon_sym_LBRACK, + STATE(4187), 1, + sym_parameter_list, + STATE(6862), 1, + sym_function_declarator_seq, + ACTIONS(11235), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [302498] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(8637), 1, + ACTIONS(421), 1, + anon_sym_LBRACE, + ACTIONS(8341), 1, anon_sym_LBRACK, - ACTIONS(11757), 1, + ACTIONS(11444), 1, anon_sym_COLON, - ACTIONS(11792), 1, - anon_sym_LBRACE, - ACTIONS(11794), 1, + ACTIONS(11503), 1, anon_sym_EQ, - ACTIONS(11796), 1, + ACTIONS(11505), 1, anon_sym_try, - ACTIONS(11896), 1, + ACTIONS(11537), 1, anon_sym_SEMI, - STATE(2261), 1, + STATE(505), 1, sym_compound_statement, - STATE(9594), 1, + STATE(8688), 1, sym_field_initializer_list, - ACTIONS(5488), 2, + ACTIONS(5409), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(2283), 3, + STATE(506), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [340410] = 11, + [302535] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(309), 1, + ACTIONS(55), 1, anon_sym_LBRACE, - ACTIONS(8637), 1, + ACTIONS(8341), 1, anon_sym_LBRACK, - ACTIONS(11757), 1, + ACTIONS(11444), 1, anon_sym_COLON, - ACTIONS(11842), 1, + ACTIONS(11519), 1, anon_sym_EQ, - ACTIONS(11844), 1, + ACTIONS(11521), 1, anon_sym_try, - ACTIONS(11898), 1, + ACTIONS(11539), 1, anon_sym_SEMI, - STATE(362), 1, + STATE(838), 1, sym_compound_statement, - STATE(9566), 1, + STATE(9069), 1, sym_field_initializer_list, - ACTIONS(5488), 2, + ACTIONS(5409), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(363), 3, + STATE(839), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [340447] = 6, + [302572] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, + ACTIONS(8341), 1, + anon_sym_LBRACK, + ACTIONS(11444), 1, + anon_sym_COLON, + ACTIONS(11509), 1, + anon_sym_LBRACE, + ACTIONS(11511), 1, + anon_sym_EQ, + ACTIONS(11513), 1, + anon_sym_try, + ACTIONS(11541), 1, + anon_sym_SEMI, + STATE(2080), 1, + sym_compound_statement, + STATE(8991), 1, + sym_field_initializer_list, + ACTIONS(5409), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(2081), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [302609] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11662), 1, + ACTIONS(11237), 1, anon_sym_LBRACK, - STATE(4347), 1, + STATE(4187), 1, sym_parameter_list, - STATE(7421), 1, + STATE(6862), 1, sym_function_declarator_seq, - ACTIONS(11449), 9, + ACTIONS(11241), 9, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [302636] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8326), 1, + anon_sym_DASH_GT, + ACTIONS(11543), 1, anon_sym_requires, + STATE(7017), 1, + sym_function_postfix, + STATE(7021), 1, + sym_requires_clause, + STATE(7464), 1, + sym_trailing_return_type, + ACTIONS(10875), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10786), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, sym_semgrep_metavar, - [340474] = 5, + [302669] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11900), 1, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11237), 1, + anon_sym_LBRACK, + STATE(4187), 1, + sym_parameter_list, + STATE(6862), 1, + sym_function_declarator_seq, + ACTIONS(11243), 9, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(7398), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(11497), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(11499), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [340499] = 5, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [302696] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11237), 1, + anon_sym_LBRACK, + STATE(4187), 1, + sym_parameter_list, + STATE(6862), 1, + sym_function_declarator_seq, + ACTIONS(11247), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [302723] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8098), 1, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11237), 1, + anon_sym_LBRACK, + STATE(4177), 1, + sym_parameter_list, + STATE(6862), 1, + sym_function_declarator_seq, + ACTIONS(11253), 9, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(11904), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [302750] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6232), 1, anon_sym_LBRACK, - STATE(6903), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(11902), 9, + ACTIONS(6230), 12, 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_asm, anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - [340524] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(21), 1, - sym_preproc_directive, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(11733), 1, - aux_sym_preproc_if_token1, - ACTIONS(11735), 1, - aux_sym_preproc_ifdef_token1, - ACTIONS(11737), 1, - aux_sym_preproc_ifdef_token2, - ACTIONS(11906), 1, - anon_sym_RBRACE, - STATE(9411), 2, - sym_preproc_call, - sym_enumerator, - STATE(9836), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7613), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [340559] = 10, + [302771] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(21), 1, - sym_preproc_directive, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(11733), 1, - aux_sym_preproc_if_token1, - ACTIONS(11735), 1, - aux_sym_preproc_ifdef_token1, - ACTIONS(11737), 1, - aux_sym_preproc_ifdef_token2, - ACTIONS(11908), 1, - anon_sym_RBRACE, - STATE(9278), 2, - sym_preproc_call, - sym_enumerator, - STATE(9973), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7772), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [340594] = 10, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11237), 1, + anon_sym_LBRACK, + STATE(4187), 1, + sym_parameter_list, + STATE(6862), 1, + sym_function_declarator_seq, + ACTIONS(11249), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [302798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(21), 1, - sym_preproc_directive, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(11733), 1, - aux_sym_preproc_if_token1, - ACTIONS(11735), 1, - aux_sym_preproc_ifdef_token1, - ACTIONS(11737), 1, - aux_sym_preproc_ifdef_token2, - ACTIONS(11910), 1, - anon_sym_RBRACE, - STATE(9198), 2, - sym_preproc_call, - sym_enumerator, - STATE(9942), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7772), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [340629] = 11, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5376), 12, + 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_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [302819] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(421), 1, + ACTIONS(1126), 1, anon_sym_LBRACE, - ACTIONS(8637), 1, + ACTIONS(8341), 1, anon_sym_LBRACK, - ACTIONS(11757), 1, + ACTIONS(11444), 1, anon_sym_COLON, - ACTIONS(11890), 1, + ACTIONS(11497), 1, anon_sym_EQ, - ACTIONS(11892), 1, + ACTIONS(11499), 1, anon_sym_try, - ACTIONS(11912), 1, + ACTIONS(11546), 1, anon_sym_SEMI, - STATE(530), 1, + STATE(713), 1, sym_compound_statement, - STATE(9208), 1, + STATE(8769), 1, sym_field_initializer_list, - ACTIONS(5488), 2, + ACTIONS(5409), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(531), 3, + STATE(714), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [340666] = 3, + [302856] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5679), 1, - sym_identifier, - ACTIONS(5677), 12, + ACTIONS(11548), 1, anon_sym_RPAREN, - anon_sym_COLON, + STATE(6965), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(11119), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, + ACTIONS(11121), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [340687] = 6, + [302881] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, + ACTIONS(8386), 1, + anon_sym_DASH_GT, + ACTIONS(8388), 1, + anon_sym_requires, + ACTIONS(9783), 1, + anon_sym_LBRACK, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + STATE(7412), 1, + sym_trailing_return_type, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 3, anon_sym_LPAREN2, - ACTIONS(11662), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [302916] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11237), 1, anon_sym_LBRACK, - STATE(4347), 1, + STATE(4187), 1, sym_parameter_list, - STATE(7421), 1, + STATE(6862), 1, sym_function_declarator_seq, - ACTIONS(11463), 9, + ACTIONS(11251), 9, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - sym_semgrep_metavar, - [340714] = 3, + [302943] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5675), 1, - sym_identifier, - ACTIONS(5673), 12, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11237), 1, + anon_sym_LBRACK, + STATE(4187), 1, + sym_parameter_list, + STATE(6862), 1, + sym_function_declarator_seq, + ACTIONS(11253), 9, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [340735] = 3, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [302970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(8341), 1, anon_sym_LBRACK, - ACTIONS(6895), 12, + ACTIONS(5409), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -607356,166 +573694,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [340756] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11914), 1, - anon_sym_RPAREN, - STATE(7398), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(11497), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(11499), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [340781] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(21), 1, - sym_preproc_directive, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(11733), 1, - aux_sym_preproc_if_token1, - ACTIONS(11735), 1, - aux_sym_preproc_ifdef_token1, - ACTIONS(11737), 1, - aux_sym_preproc_ifdef_token2, - ACTIONS(11916), 1, - anon_sym_RBRACE, - STATE(9502), 2, - sym_preproc_call, - sym_enumerator, - STATE(10081), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7695), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [340816] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(21), 1, - sym_preproc_directive, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(11733), 1, - aux_sym_preproc_if_token1, - ACTIONS(11735), 1, - aux_sym_preproc_ifdef_token1, - ACTIONS(11737), 1, - aux_sym_preproc_ifdef_token2, - ACTIONS(11918), 1, - anon_sym_RBRACE, - STATE(9301), 2, - sym_preproc_call, - sym_enumerator, - STATE(10200), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7772), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [340851] = 3, + [302991] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5683), 1, - sym_identifier, - ACTIONS(5681), 12, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [340872] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8637), 1, + ACTIONS(8341), 1, anon_sym_LBRACK, - ACTIONS(11757), 1, - anon_sym_COLON, - ACTIONS(11850), 1, + ACTIONS(11440), 1, anon_sym_LBRACE, - ACTIONS(11852), 1, + ACTIONS(11442), 1, anon_sym_EQ, - ACTIONS(11854), 1, + ACTIONS(11444), 1, + anon_sym_COLON, + ACTIONS(11446), 1, anon_sym_try, - ACTIONS(11920), 1, + ACTIONS(11550), 1, anon_sym_SEMI, - STATE(2012), 1, + STATE(2426), 1, sym_compound_statement, - STATE(9550), 1, + STATE(8715), 1, sym_field_initializer_list, - ACTIONS(5488), 2, + ACTIONS(5409), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(2013), 3, + STATE(2427), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [340909] = 5, + [303028] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7118), 1, - anon_sym_LBRACK, - ACTIONS(7592), 1, - anon_sym_LT, - STATE(7592), 1, - sym_template_argument_list, - ACTIONS(7116), 10, - anon_sym_COMMA, + ACTIONS(8326), 1, + anon_sym_DASH_GT, + ACTIONS(10068), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7068), 1, + sym_function_postfix, + STATE(7455), 1, + sym_trailing_return_type, + ACTIONS(9657), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 4, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [340934] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6884), 1, anon_sym_LBRACK, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - STATE(6903), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6882), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [340959] = 3, + sym_semgrep_metavar, + [303061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11924), 1, + ACTIONS(11554), 1, anon_sym_LBRACK, - ACTIONS(11922), 12, + ACTIONS(11552), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -607528,1877 +573762,2734 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [340980] = 11, + [303082] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11556), 1, + anon_sym_RPAREN, + STATE(6965), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(11119), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(11121), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [303107] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(860), 1, anon_sym_LBRACE, - ACTIONS(8637), 1, + ACTIONS(8341), 1, anon_sym_LBRACK, - ACTIONS(11757), 1, + ACTIONS(11444), 1, anon_sym_COLON, - ACTIONS(11926), 1, - anon_sym_SEMI, - ACTIONS(11928), 1, + ACTIONS(11468), 1, anon_sym_EQ, - ACTIONS(11930), 1, + ACTIONS(11470), 1, anon_sym_try, - STATE(790), 1, + ACTIONS(11558), 1, + anon_sym_SEMI, + STATE(710), 1, sym_compound_statement, - STATE(9330), 1, + STATE(8673), 1, sym_field_initializer_list, - ACTIONS(5488), 2, + ACTIONS(5409), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(793), 3, + STATE(735), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [341017] = 10, + [303144] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(21), 1, - sym_preproc_directive, - ACTIONS(11731), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(7041), 1, + anon_sym_LBRACE, + ACTIONS(10133), 1, sym_identifier, - ACTIONS(11733), 1, - aux_sym_preproc_if_token1, - ACTIONS(11735), 1, - aux_sym_preproc_ifdef_token1, - ACTIONS(11737), 1, - aux_sym_preproc_ifdef_token2, - ACTIONS(11932), 1, - anon_sym_RBRACE, - STATE(9596), 2, - sym_preproc_call, - sym_enumerator, - STATE(10490), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7772), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [341052] = 11, + STATE(2919), 1, + sym_template_type, + STATE(3097), 1, + sym_qualified_type_identifier, + STATE(3107), 1, + sym_enumerator_list, + STATE(5911), 1, + sym_class_name, + STATE(7558), 1, + sym_scope_resolution, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [303182] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8637), 1, + ACTIONS(9967), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7068), 1, + sym_function_postfix, + ACTIONS(9657), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_LBRACK, - ACTIONS(11757), 1, - anon_sym_COLON, - ACTIONS(11876), 1, + anon_sym_GT2, + [303210] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10135), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7073), 1, + sym_function_postfix, + ACTIONS(9785), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [303238] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(7207), 1, + anon_sym_LBRACE, + ACTIONS(10152), 1, + sym_identifier, + STATE(3076), 1, + sym_template_type, + STATE(3111), 1, + sym_class_name, + STATE(3176), 1, + sym_qualified_type_identifier, + STATE(3390), 1, + sym_enumerator_list, + STATE(7542), 1, + sym_scope_resolution, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [303276] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(860), 1, anon_sym_LBRACE, - ACTIONS(11878), 1, + ACTIONS(8341), 1, + anon_sym_LBRACK, + ACTIONS(11444), 1, + anon_sym_COLON, + ACTIONS(11468), 1, anon_sym_EQ, - ACTIONS(11880), 1, + ACTIONS(11470), 1, anon_sym_try, - ACTIONS(11934), 1, - anon_sym_SEMI, - STATE(2199), 1, + STATE(748), 1, sym_compound_statement, - STATE(9558), 1, + STATE(8982), 1, sym_field_initializer_list, - ACTIONS(5488), 2, + ACTIONS(5409), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(2200), 3, + STATE(749), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [341089] = 6, + [303310] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, + ACTIONS(10335), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7094), 1, + sym_function_postfix, + ACTIONS(10158), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(11662), 1, anon_sym_LBRACK, - STATE(4347), 1, - sym_parameter_list, - STATE(7421), 1, - sym_function_declarator_seq, - ACTIONS(11451), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_GT2, + [303338] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11341), 1, + anon_sym_requires, + STATE(7017), 1, + sym_function_postfix, + STATE(7021), 1, + sym_requires_clause, + ACTIONS(10875), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - sym_semgrep_metavar, - [341116] = 3, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10786), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [303366] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5890), 1, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11373), 1, anon_sym_LBRACK, - ACTIONS(5888), 12, + STATE(6628), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11371), 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_asm, anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [341137] = 11, + [303390] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(860), 1, + ACTIONS(1126), 1, anon_sym_LBRACE, - ACTIONS(8637), 1, + ACTIONS(8341), 1, anon_sym_LBRACK, - ACTIONS(11757), 1, + ACTIONS(11444), 1, anon_sym_COLON, - ACTIONS(11928), 1, + ACTIONS(11497), 1, anon_sym_EQ, - ACTIONS(11930), 1, + ACTIONS(11499), 1, anon_sym_try, - ACTIONS(11936), 1, - anon_sym_SEMI, - STATE(703), 1, + STATE(713), 1, sym_compound_statement, - STATE(9508), 1, + STATE(8769), 1, sym_field_initializer_list, - ACTIONS(5488), 2, + ACTIONS(5409), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(729), 3, + STATE(714), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [341174] = 10, + [303424] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(21), 1, - sym_preproc_directive, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(11733), 1, - aux_sym_preproc_if_token1, - ACTIONS(11735), 1, - aux_sym_preproc_ifdef_token1, - ACTIONS(11737), 1, - aux_sym_preproc_ifdef_token2, - ACTIONS(11938), 1, - anon_sym_RBRACE, - STATE(9460), 2, - sym_preproc_call, - sym_enumerator, - STATE(9966), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7624), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [341209] = 11, + ACTIONS(11560), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7071), 1, + sym_function_postfix, + ACTIONS(10978), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10782), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [303452] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1002), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5985), 1, anon_sym_LBRACE, - ACTIONS(8637), 1, - anon_sym_LBRACK, - ACTIONS(11757), 1, - anon_sym_COLON, - ACTIONS(11860), 1, - anon_sym_EQ, - ACTIONS(11862), 1, - anon_sym_try, - ACTIONS(11940), 1, - anon_sym_SEMI, - STATE(781), 1, - sym_compound_statement, - STATE(9446), 1, - sym_field_initializer_list, - ACTIONS(5488), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(782), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [341246] = 12, + ACTIONS(10125), 1, + sym_identifier, + STATE(2050), 1, + sym_template_type, + STATE(2137), 1, + sym_qualified_type_identifier, + STATE(2165), 1, + sym_enumerator_list, + STATE(2559), 1, + sym_class_name, + STATE(7557), 1, + sym_scope_resolution, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [303490] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7114), 1, + ACTIONS(6491), 1, anon_sym_LBRACE, - ACTIONS(10471), 1, + ACTIONS(10148), 1, sym_identifier, - STATE(3011), 1, + STATE(2582), 1, sym_template_type, - STATE(3113), 1, + STATE(2599), 1, sym_enumerator_list, - STATE(3140), 1, + STATE(2696), 1, sym_qualified_type_identifier, - STATE(5083), 1, + STATE(4292), 1, sym_class_name, - STATE(7878), 1, + STATE(7516), 1, sym_scope_resolution, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [341284] = 5, + [303528] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11944), 1, - anon_sym_LBRACK, - STATE(6903), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(11942), 8, - anon_sym_COMMA, + ACTIONS(10418), 1, anon_sym_LPAREN2, + ACTIONS(11237), 1, + anon_sym_LBRACK, + STATE(4300), 1, + sym_parameter_list, + STATE(6862), 1, + sym_function_declarator_seq, + ACTIONS(11235), 8, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, + anon_sym_final, + anon_sym_override, anon_sym_try, - [341308] = 12, + anon_sym_requires, + [303554] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6229), 1, + ACTIONS(8535), 1, anon_sym_LBRACE, - ACTIONS(11658), 1, + ACTIONS(10121), 1, sym_identifier, - STATE(2295), 1, - sym_class_name, - STATE(2597), 1, + STATE(2532), 1, sym_template_type, - STATE(2672), 1, + STATE(2703), 1, sym_qualified_type_identifier, - STATE(2679), 1, + STATE(4715), 1, + sym_class_name, + STATE(4924), 1, sym_enumerator_list, - STATE(7933), 1, + STATE(7574), 1, sym_scope_resolution, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [341346] = 12, + [303592] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7129), 1, + ACTIONS(7109), 1, anon_sym_LBRACE, - ACTIONS(10477), 1, + ACTIONS(10150), 1, sym_identifier, - STATE(3010), 1, + STATE(2931), 1, sym_template_type, - STATE(3072), 1, + STATE(2976), 1, sym_class_name, - STATE(3184), 1, + STATE(3099), 1, sym_qualified_type_identifier, - STATE(3530), 1, + STATE(3313), 1, sym_enumerator_list, - STATE(7917), 1, + STATE(7552), 1, sym_scope_resolution, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [341384] = 10, + [303630] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(421), 1, + ACTIONS(309), 1, anon_sym_LBRACE, - ACTIONS(8637), 1, + ACTIONS(8341), 1, anon_sym_LBRACK, - ACTIONS(11757), 1, + ACTIONS(11444), 1, anon_sym_COLON, - ACTIONS(11890), 1, + ACTIONS(11450), 1, anon_sym_EQ, - ACTIONS(11892), 1, + ACTIONS(11452), 1, anon_sym_try, - STATE(530), 1, + STATE(396), 1, sym_compound_statement, - STATE(9208), 1, + STATE(8671), 1, sym_field_initializer_list, - ACTIONS(5488), 2, + ACTIONS(5409), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(531), 3, + STATE(419), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [341418] = 3, + [303664] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(11946), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6416), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(6491), 1, + anon_sym_LBRACE, + ACTIONS(10140), 1, + sym_identifier, + STATE(2582), 1, + sym_template_type, + STATE(2599), 1, + sym_enumerator_list, + STATE(2696), 1, + sym_qualified_type_identifier, + STATE(5870), 1, + sym_class_name, + STATE(7523), 1, + sym_scope_resolution, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [303702] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1126), 1, + anon_sym_LBRACE, + ACTIONS(8341), 1, + anon_sym_LBRACK, + ACTIONS(11444), 1, + anon_sym_COLON, + ACTIONS(11497), 1, + anon_sym_EQ, + ACTIONS(11499), 1, + anon_sym_try, + STATE(788), 1, + sym_compound_statement, + STATE(8809), 1, + sym_field_initializer_list, + ACTIONS(5409), 2, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_LBRACK_LBRACK, + STATE(789), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [303736] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(8341), 1, anon_sym_LBRACK, - anon_sym_or, + ACTIONS(11444), 1, + anon_sym_COLON, + ACTIONS(11519), 1, + anon_sym_EQ, + ACTIONS(11521), 1, + anon_sym_try, + STATE(838), 1, + sym_compound_statement, + STATE(9069), 1, + sym_field_initializer_list, + ACTIONS(5409), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(839), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [303770] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11237), 1, + anon_sym_LBRACK, + STATE(4300), 1, + sym_parameter_list, + STATE(6862), 1, + sym_function_declarator_seq, + ACTIONS(11241), 8, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [303796] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11237), 1, + anon_sym_LBRACK, + STATE(4300), 1, + sym_parameter_list, + STATE(6862), 1, + sym_function_declarator_seq, + ACTIONS(11243), 8, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [303822] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11237), 1, + anon_sym_LBRACK, + STATE(4300), 1, + sym_parameter_list, + STATE(6862), 1, + sym_function_declarator_seq, + ACTIONS(11247), 8, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_try, anon_sym_requires, - [341438] = 12, + [303848] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6624), 1, + ACTIONS(9692), 1, anon_sym_LBRACE, - ACTIONS(11670), 1, + ACTIONS(10109), 1, sym_identifier, - STATE(2623), 1, - sym_class_name, - STATE(2828), 1, + STATE(3094), 1, sym_template_type, - STATE(2907), 1, + STATE(3322), 1, sym_qualified_type_identifier, - STATE(2931), 1, + STATE(5696), 1, + sym_class_name, + STATE(5801), 1, sym_enumerator_list, - STATE(7941), 1, + STATE(7521), 1, sym_scope_resolution, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [341476] = 3, + [303886] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8309), 3, - anon_sym_COLON_COLON, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11237), 1, + anon_sym_LBRACK, + STATE(4300), 1, + sym_parameter_list, + STATE(6862), 1, + sym_function_declarator_seq, + ACTIONS(11249), 8, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(8307), 9, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_COLON, - sym_identifier, - anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_alignas, - anon_sym_template, - [341496] = 4, + anon_sym_try, + anon_sym_requires, + [303912] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11946), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11948), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6374), 8, + ACTIONS(8303), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7068), 1, + sym_function_postfix, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_LBRACK, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [341518] = 3, + [303940] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2183), 1, - anon_sym_LBRACK, - ACTIONS(2185), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + ACTIONS(421), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(8341), 1, + anon_sym_LBRACK, + ACTIONS(11444), 1, anon_sym_COLON, + ACTIONS(11503), 1, + anon_sym_EQ, + ACTIONS(11505), 1, anon_sym_try, - [341538] = 10, + STATE(505), 1, + sym_compound_statement, + STATE(8688), 1, + sym_field_initializer_list, + ACTIONS(5409), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(506), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [303974] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(860), 1, + ACTIONS(309), 1, anon_sym_LBRACE, - ACTIONS(8637), 1, + ACTIONS(8341), 1, anon_sym_LBRACK, - ACTIONS(11757), 1, + ACTIONS(11444), 1, anon_sym_COLON, - ACTIONS(11928), 1, + ACTIONS(11450), 1, anon_sym_EQ, - ACTIONS(11930), 1, + ACTIONS(11452), 1, anon_sym_try, - STATE(703), 1, + STATE(377), 1, sym_compound_statement, - STATE(9508), 1, + STATE(8752), 1, sym_field_initializer_list, - ACTIONS(5488), 2, + ACTIONS(5409), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(729), 3, + STATE(378), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [341572] = 12, + [304008] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8303), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7073), 1, + sym_function_postfix, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [304036] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11237), 1, + anon_sym_LBRACK, + STATE(4300), 1, + sym_parameter_list, + STATE(6862), 1, + sym_function_declarator_seq, + ACTIONS(11251), 8, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [304062] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11237), 1, + anon_sym_LBRACK, + STATE(4300), 1, + sym_parameter_list, + STATE(6862), 1, + sym_function_declarator_seq, + ACTIONS(11253), 8, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [304088] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6442), 1, + ACTIONS(6976), 1, anon_sym_LBRACE, - ACTIONS(10475), 1, + ACTIONS(10107), 1, sym_identifier, - STATE(2513), 1, + STATE(2837), 1, sym_class_name, - STATE(2515), 1, + STATE(2842), 1, sym_template_type, - STATE(2599), 1, + STATE(2945), 1, sym_qualified_type_identifier, - STATE(2668), 1, + STATE(3166), 1, sym_enumerator_list, - STATE(7919), 1, + STATE(7525), 1, sym_scope_resolution, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [341610] = 5, + [304126] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11904), 1, + ACTIONS(6046), 1, anon_sym_LBRACK, - STATE(7724), 2, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + STATE(2318), 1, + sym_parameter_list, + STATE(7442), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(11902), 8, + ACTIONS(6080), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, anon_sym_try, - [341634] = 5, + [304154] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11952), 1, - anon_sym_LT, - ACTIONS(11954), 1, - anon_sym_LBRACK, - STATE(7780), 1, - sym_template_argument_list, - ACTIONS(11950), 9, + ACTIONS(8303), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7094), 1, + sym_function_postfix, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 5, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [304182] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6046), 1, + anon_sym_LBRACK, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + STATE(2318), 1, + sym_parameter_list, + STATE(7442), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6141), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_try, + [304210] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8303), 1, + anon_sym_requires, + STATE(7017), 1, + sym_function_postfix, + STATE(7021), 1, + sym_requires_clause, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10786), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [304238] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8303), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7071), 1, + sym_function_postfix, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10782), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [304266] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(8229), 1, + anon_sym_LBRACE, + ACTIONS(10109), 1, + sym_identifier, + STATE(3094), 1, + sym_template_type, + STATE(3322), 1, + sym_qualified_type_identifier, + STATE(4471), 1, + sym_enumerator_list, + STATE(5537), 1, + sym_class_name, + STATE(7521), 1, + sym_scope_resolution, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [304304] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(5753), 1, + anon_sym_virtual, + ACTIONS(10127), 1, + sym_identifier, + STATE(3094), 1, + sym_template_type, + STATE(3098), 1, + sym_qualified_type_identifier, + STATE(7499), 1, + sym_virtual, + STATE(7546), 1, + sym_scope_resolution, + STATE(8452), 1, + sym_class_name, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [304342] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(10611), 1, + anon_sym_LBRACK, + STATE(4183), 1, + sym_parameter_list, + STATE(7260), 1, + sym_function_declarator_seq, + STATE(7162), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11331), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [304372] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(10611), 1, + anon_sym_LBRACK, + STATE(4183), 1, + sym_parameter_list, + STATE(7260), 1, + sym_function_declarator_seq, + STATE(7162), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11337), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [341658] = 12, + anon_sym_GT2, + [304402] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8544), 1, - anon_sym_LBRACE, - ACTIONS(10481), 1, + ACTIONS(5753), 1, + anon_sym_virtual, + ACTIONS(10127), 1, sym_identifier, - STATE(4364), 1, + STATE(3094), 1, sym_template_type, - STATE(4501), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(4678), 1, - sym_enumerator_list, - STATE(5757), 1, - sym_class_name, - STATE(7904), 1, + STATE(7467), 1, + sym_virtual, + STATE(7546), 1, sym_scope_resolution, - STATE(9982), 2, + STATE(8168), 1, + sym_class_name, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [341696] = 12, + [304440] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7114), 1, + ACTIONS(9742), 1, anon_sym_LBRACE, - ACTIONS(10521), 1, + ACTIONS(10117), 1, sym_identifier, - STATE(3011), 1, + STATE(5722), 1, sym_template_type, - STATE(3113), 1, - sym_enumerator_list, - STATE(3140), 1, + STATE(5753), 1, sym_qualified_type_identifier, - STATE(6695), 1, + STATE(5759), 1, sym_class_name, - STATE(7876), 1, + STATE(5872), 1, + sym_enumerator_list, + STATE(7539), 1, sym_scope_resolution, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [341734] = 12, + [304478] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(10611), 1, + anon_sym_LBRACK, + STATE(4183), 1, + sym_parameter_list, + STATE(7260), 1, + sym_function_declarator_seq, + STATE(7162), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11381), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [304508] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(11240), 1, + ACTIONS(8203), 1, + anon_sym_LBRACE, + ACTIONS(10123), 1, sym_identifier, - ACTIONS(11956), 1, - anon_sym_virtual, - STATE(4648), 1, - sym_qualified_type_identifier, - STATE(4736), 1, + STATE(4123), 1, sym_template_type, - STATE(7818), 1, - sym_virtual, - STATE(7918), 1, - sym_scope_resolution, - STATE(9043), 1, + STATE(4196), 1, sym_class_name, - STATE(9982), 2, + STATE(4280), 1, + sym_qualified_type_identifier, + STATE(4443), 1, + sym_enumerator_list, + STATE(7541), 1, + sym_scope_resolution, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [341772] = 12, + [304546] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(10611), 1, + anon_sym_LBRACK, + STATE(4183), 1, + sym_parameter_list, + STATE(7260), 1, + sym_function_declarator_seq, + STATE(7162), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11324), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [304576] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6951), 1, + ACTIONS(9692), 1, anon_sym_LBRACE, - ACTIONS(10479), 1, + ACTIONS(10127), 1, sym_identifier, - STATE(2905), 1, + STATE(3094), 1, sym_template_type, - STATE(2918), 1, - sym_class_name, - STATE(3047), 1, + STATE(3322), 1, sym_qualified_type_identifier, - STATE(3394), 1, + STATE(5801), 1, sym_enumerator_list, - STATE(7873), 1, + STATE(6132), 1, + sym_class_name, + STATE(7551), 1, sym_scope_resolution, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [341810] = 10, + [304614] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(860), 1, - anon_sym_LBRACE, - ACTIONS(8637), 1, + ACTIONS(8285), 1, + anon_sym_requires, + ACTIONS(8425), 1, + anon_sym_DASH_GT, + STATE(7021), 1, + sym_requires_clause, + STATE(7068), 1, + sym_function_postfix, + STATE(7161), 1, + sym_trailing_return_type, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 3, + anon_sym_LPAREN2, anon_sym_LBRACK, - ACTIONS(11757), 1, anon_sym_COLON, - ACTIONS(11928), 1, - anon_sym_EQ, - ACTIONS(11930), 1, - anon_sym_try, - STATE(790), 1, - sym_compound_statement, - STATE(9330), 1, - sym_field_initializer_list, - ACTIONS(5488), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(793), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [341844] = 10, + [304646] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(309), 1, - anon_sym_LBRACE, - ACTIONS(8637), 1, + ACTIONS(8285), 1, + anon_sym_requires, + ACTIONS(8425), 1, + anon_sym_DASH_GT, + STATE(7021), 1, + sym_requires_clause, + STATE(7073), 1, + sym_function_postfix, + STATE(7187), 1, + sym_trailing_return_type, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 3, + anon_sym_LPAREN2, anon_sym_LBRACK, - ACTIONS(11757), 1, anon_sym_COLON, - ACTIONS(11842), 1, - anon_sym_EQ, - ACTIONS(11844), 1, - anon_sym_try, - STATE(446), 1, - sym_compound_statement, - STATE(9421), 1, - sym_field_initializer_list, - ACTIONS(5488), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(449), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [341878] = 10, + [304678] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_LBRACE, - ACTIONS(8637), 1, + ACTIONS(8285), 1, + anon_sym_requires, + ACTIONS(8425), 1, + anon_sym_DASH_GT, + STATE(7021), 1, + sym_requires_clause, + STATE(7094), 1, + sym_function_postfix, + STATE(7173), 1, + sym_trailing_return_type, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 3, + anon_sym_LPAREN2, anon_sym_LBRACK, - ACTIONS(11757), 1, anon_sym_COLON, - ACTIONS(11786), 1, - anon_sym_EQ, - ACTIONS(11788), 1, - anon_sym_try, - STATE(836), 1, - sym_compound_statement, - STATE(9197), 1, - sym_field_initializer_list, - ACTIONS(5488), 2, + [304710] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8285), 1, + anon_sym_requires, + ACTIONS(8425), 1, + anon_sym_DASH_GT, + STATE(7017), 1, + sym_function_postfix, + STATE(7021), 1, + sym_requires_clause, + STATE(7132), 1, + sym_trailing_return_type, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10786), 3, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(837), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [341912] = 12, + anon_sym_LBRACK, + anon_sym_COLON, + [304742] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(7247), 1, + ACTIONS(9692), 1, anon_sym_LBRACE, - ACTIONS(10473), 1, + ACTIONS(10144), 1, sym_identifier, - STATE(3128), 1, - sym_class_name, - STATE(3135), 1, + STATE(2532), 1, sym_template_type, - STATE(3434), 1, + STATE(2703), 1, sym_qualified_type_identifier, - STATE(3765), 1, + STATE(6060), 1, + sym_class_name, + STATE(6310), 1, sym_enumerator_list, - STATE(7909), 1, + STATE(7572), 1, sym_scope_resolution, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [341950] = 5, + [304780] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6831), 1, - anon_sym_LBRACK, - ACTIONS(11958), 1, - anon_sym_LBRACK_LBRACK, - STATE(7724), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6829), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(6491), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [341974] = 12, + ACTIONS(10103), 1, + sym_identifier, + STATE(2582), 1, + sym_template_type, + STATE(2599), 1, + sym_enumerator_list, + STATE(2696), 1, + sym_qualified_type_identifier, + STATE(5931), 1, + sym_class_name, + STATE(7524), 1, + sym_scope_resolution, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [304818] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8544), 1, + ACTIONS(8308), 1, anon_sym_LBRACE, - ACTIONS(10483), 1, + ACTIONS(10129), 1, sym_identifier, - STATE(4364), 1, + STATE(4400), 1, sym_template_type, - STATE(4501), 1, + STATE(4419), 1, + sym_class_name, + STATE(4457), 1, sym_qualified_type_identifier, - STATE(4678), 1, + STATE(4681), 1, sym_enumerator_list, - STATE(7826), 1, - sym_class_name, - STATE(7904), 1, + STATE(7545), 1, sym_scope_resolution, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [342012] = 6, + [304856] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(6197), 1, - anon_sym_COLON, - ACTIONS(7592), 1, - anon_sym_LT, - STATE(4370), 1, - sym_template_argument_list, - ACTIONS(4853), 8, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6046), 1, + anon_sym_LBRACK, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + STATE(2318), 1, + sym_parameter_list, + STATE(7442), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6132), 6, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACE, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [342038] = 12, + anon_sym_try, + [304884] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10460), 1, + ACTIONS(6829), 1, anon_sym_LBRACE, - ACTIONS(11654), 1, + ACTIONS(10138), 1, sym_identifier, - STATE(6520), 1, - sym_class_name, - STATE(6730), 1, + STATE(2674), 1, sym_template_type, - STATE(6765), 1, + STATE(2711), 1, + sym_class_name, + STATE(2747), 1, sym_qualified_type_identifier, - STATE(6802), 1, + STATE(2866), 1, sym_enumerator_list, - STATE(7923), 1, + STATE(7547), 1, sym_scope_resolution, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [342076] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8605), 1, - anon_sym_requires, - STATE(7422), 1, - sym_requires_clause, - STATE(7479), 1, - sym_function_postfix, - ACTIONS(8102), 2, - anon_sym_final, - anon_sym_override, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(9897), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [342104] = 12, + [304922] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(11240), 1, + ACTIONS(8229), 1, + anon_sym_LBRACE, + ACTIONS(10099), 1, sym_identifier, - ACTIONS(11956), 1, - anon_sym_virtual, - STATE(4648), 1, - sym_qualified_type_identifier, - STATE(4736), 1, + STATE(3094), 1, sym_template_type, - STATE(7819), 1, - sym_virtual, - STATE(7918), 1, - sym_scope_resolution, - STATE(8995), 1, + STATE(3098), 1, + sym_qualified_type_identifier, + STATE(4448), 1, + sym_enumerator_list, + STATE(4547), 1, sym_class_name, - STATE(9982), 2, + STATE(7571), 1, + sym_scope_resolution, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [342142] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8605), 1, - anon_sym_requires, - STATE(7422), 1, - sym_requires_clause, - STATE(7444), 1, - sym_function_postfix, - ACTIONS(8102), 2, - anon_sym_final, - anon_sym_override, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10101), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [342170] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8605), 1, - anon_sym_requires, - STATE(7422), 1, - sym_requires_clause, - STATE(7462), 1, - sym_function_postfix, - ACTIONS(8102), 2, - anon_sym_final, - anon_sym_override, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10464), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [342198] = 12, + [304960] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(10108), 1, + ACTIONS(6943), 1, anon_sym_LBRACE, - ACTIONS(10485), 1, + ACTIONS(10119), 1, sym_identifier, - STATE(6239), 1, + STATE(2808), 1, sym_template_type, - STATE(6279), 1, + STATE(2813), 1, sym_class_name, - STATE(6285), 1, + STATE(2845), 1, sym_qualified_type_identifier, - STATE(6366), 1, + STATE(2985), 1, sym_enumerator_list, - STATE(7920), 1, + STATE(7544), 1, sym_scope_resolution, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [342236] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1002), 1, - anon_sym_LBRACE, - ACTIONS(8637), 1, - anon_sym_LBRACK, - ACTIONS(11757), 1, - anon_sym_COLON, - ACTIONS(11860), 1, - anon_sym_EQ, - ACTIONS(11862), 1, - anon_sym_try, - STATE(761), 1, - sym_compound_statement, - STATE(9396), 1, - sym_field_initializer_list, - ACTIONS(5488), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(762), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [342270] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8605), 1, - anon_sym_requires, - STATE(7422), 1, - sym_requires_clause, - STATE(7477), 1, - sym_function_postfix, - ACTIONS(8102), 2, - anon_sym_final, - anon_sym_override, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10895), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [342298] = 7, + [304998] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8605), 1, - anon_sym_requires, - STATE(7422), 1, - sym_requires_clause, - STATE(7483), 1, - sym_function_postfix, - ACTIONS(8102), 2, - anon_sym_final, - anon_sym_override, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(10927), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(11565), 1, + anon_sym_LT, + ACTIONS(11567), 1, anon_sym_LBRACK, - anon_sym_GT2, - [342326] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10367), 1, - anon_sym_requires, - STATE(7422), 1, - sym_requires_clause, - STATE(7479), 1, - sym_function_postfix, - ACTIONS(10052), 2, - anon_sym_final, - anon_sym_override, - STATE(7282), 2, - sym_virtual_specifier, - aux_sym_function_postfix_repeat1, - ACTIONS(9897), 5, - anon_sym_DOT_DOT_DOT, + STATE(7415), 1, + sym_template_argument_list, + ACTIONS(11563), 9, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [342354] = 12, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [305022] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8852), 1, + ACTIONS(5985), 1, anon_sym_LBRACE, - ACTIONS(10525), 1, + ACTIONS(10146), 1, sym_identifier, - STATE(5175), 1, - sym_class_name, - STATE(5185), 1, + STATE(2050), 1, sym_template_type, - STATE(5289), 1, + STATE(2137), 1, sym_qualified_type_identifier, - STATE(5456), 1, + STATE(2165), 1, sym_enumerator_list, - STATE(7944), 1, + STATE(2515), 1, + sym_class_name, + STATE(7549), 1, sym_scope_resolution, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [342392] = 7, + [305060] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10510), 1, + ACTIONS(8425), 1, + anon_sym_DASH_GT, + ACTIONS(9796), 1, anon_sym_requires, - STATE(7422), 1, + STATE(7021), 1, sym_requires_clause, - STATE(7444), 1, + STATE(7068), 1, sym_function_postfix, - ACTIONS(10141), 2, + STATE(7171), 1, + sym_trailing_return_type, + ACTIONS(9657), 2, anon_sym_final, anon_sym_override, - STATE(7282), 2, + STATE(6899), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10101), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(9640), 3, anon_sym_LPAREN2, anon_sym_LBRACK, - anon_sym_GT2, - [342420] = 7, + anon_sym_COLON, + [305092] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10733), 1, + ACTIONS(8425), 1, + anon_sym_DASH_GT, + ACTIONS(10076), 1, anon_sym_requires, - STATE(7422), 1, + STATE(7021), 1, sym_requires_clause, - STATE(7462), 1, + STATE(7073), 1, sym_function_postfix, - ACTIONS(10541), 2, + STATE(7222), 1, + sym_trailing_return_type, + ACTIONS(9785), 2, anon_sym_final, anon_sym_override, - STATE(7282), 2, + STATE(6899), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10464), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(9781), 3, anon_sym_LPAREN2, anon_sym_LBRACK, - anon_sym_GT2, - [342448] = 7, + anon_sym_COLON, + [305124] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11678), 1, + ACTIONS(8425), 1, + anon_sym_DASH_GT, + ACTIONS(10283), 1, anon_sym_requires, - STATE(7422), 1, + STATE(7021), 1, sym_requires_clause, - STATE(7477), 1, + STATE(7094), 1, sym_function_postfix, - ACTIONS(11282), 2, + STATE(7209), 1, + sym_trailing_return_type, + ACTIONS(10158), 2, anon_sym_final, anon_sym_override, - STATE(7282), 2, + STATE(6899), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10895), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(10154), 3, anon_sym_LPAREN2, anon_sym_LBRACK, - anon_sym_GT2, - [342476] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8406), 1, - anon_sym_LBRACE, - ACTIONS(11666), 1, - sym_identifier, - STATE(4341), 1, - sym_class_name, - STATE(4648), 1, - sym_qualified_type_identifier, - STATE(4736), 1, - sym_template_type, - STATE(4752), 1, - sym_enumerator_list, - STATE(7881), 1, - sym_scope_resolution, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [342514] = 7, + anon_sym_COLON, + [305156] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11961), 1, + ACTIONS(8425), 1, + anon_sym_DASH_GT, + ACTIONS(11216), 1, anon_sym_requires, - STATE(7422), 1, - sym_requires_clause, - STATE(7483), 1, + STATE(7017), 1, sym_function_postfix, - ACTIONS(11519), 2, + STATE(7021), 1, + sym_requires_clause, + STATE(7133), 1, + sym_trailing_return_type, + ACTIONS(10875), 2, anon_sym_final, anon_sym_override, - STATE(7282), 2, + STATE(6899), 2, sym_virtual_specifier, aux_sym_function_postfix_repeat1, - ACTIONS(10927), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(10786), 3, anon_sym_LPAREN2, anon_sym_LBRACK, - anon_sym_GT2, - [342542] = 12, + anon_sym_COLON, + [305188] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(6858), 1, + ACTIONS(6212), 1, + anon_sym_LBRACK, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + STATE(6628), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6210), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(10508), 1, - sym_identifier, - STATE(2765), 1, - sym_template_type, - STATE(2826), 1, - sym_class_name, - STATE(2887), 1, - sym_qualified_type_identifier, - STATE(3126), 1, - sym_enumerator_list, - STATE(7915), 1, - sym_scope_resolution, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [342580] = 12, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [305212] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(6241), 1, - anon_sym_LBRACE, - ACTIONS(10523), 1, - sym_identifier, - STATE(2504), 1, - sym_enumerator_list, - STATE(2509), 1, - sym_template_type, - STATE(2589), 1, - sym_qualified_type_identifier, - STATE(4602), 1, - sym_class_name, - STATE(7902), 1, - sym_scope_resolution, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [342618] = 12, + STATE(6965), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(11119), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(11121), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [305234] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6241), 1, + ACTIONS(8229), 1, anon_sym_LBRACE, - ACTIONS(10504), 1, + ACTIONS(10127), 1, sym_identifier, - STATE(2504), 1, - sym_enumerator_list, - STATE(2509), 1, + STATE(3094), 1, sym_template_type, - STATE(2589), 1, + STATE(3322), 1, sym_qualified_type_identifier, - STATE(6346), 1, + STATE(4471), 1, + sym_enumerator_list, + STATE(4622), 1, sym_class_name, - STATE(7886), 1, + STATE(7551), 1, sym_scope_resolution, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [342656] = 10, + [305272] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(421), 1, anon_sym_LBRACE, - ACTIONS(8637), 1, + ACTIONS(8341), 1, anon_sym_LBRACK, - ACTIONS(11757), 1, + ACTIONS(11444), 1, anon_sym_COLON, - ACTIONS(11890), 1, + ACTIONS(11503), 1, anon_sym_EQ, - ACTIONS(11892), 1, + ACTIONS(11505), 1, anon_sym_try, - STATE(554), 1, + STATE(535), 1, sym_compound_statement, - STATE(9296), 1, + STATE(9112), 1, sym_field_initializer_list, - ACTIONS(5488), 2, + ACTIONS(5409), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(562), 3, + STATE(496), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [342690] = 12, + [305306] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8544), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6046), 1, + anon_sym_LBRACK, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + STATE(2318), 1, + sym_parameter_list, + STATE(7442), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6038), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACE, - ACTIONS(10481), 1, - sym_identifier, - STATE(4364), 1, - sym_template_type, - STATE(4501), 1, - sym_qualified_type_identifier, - STATE(4678), 1, - sym_enumerator_list, - STATE(6197), 1, - sym_class_name, - STATE(7904), 1, - sym_scope_resolution, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [342728] = 12, + anon_sym_try, + [305334] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8500), 1, + ACTIONS(8229), 1, anon_sym_LBRACE, - ACTIONS(11689), 1, + ACTIONS(10142), 1, sym_identifier, - STATE(4531), 1, - sym_class_name, - STATE(4731), 1, + STATE(3094), 1, sym_template_type, - STATE(4745), 1, - sym_enumerator_list, - STATE(4809), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(7905), 1, + STATE(4218), 1, + sym_class_name, + STATE(4448), 1, + sym_enumerator_list, + STATE(7569), 1, sym_scope_resolution, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [342766] = 12, + [305372] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(6241), 1, + ACTIONS(7041), 1, anon_sym_LBRACE, - ACTIONS(10504), 1, + ACTIONS(10101), 1, sym_identifier, - STATE(2504), 1, - sym_enumerator_list, - STATE(2509), 1, + STATE(2919), 1, sym_template_type, - STATE(2589), 1, + STATE(3097), 1, sym_qualified_type_identifier, - STATE(6687), 1, + STATE(3107), 1, + sym_enumerator_list, + STATE(4682), 1, sym_class_name, - STATE(7886), 1, + STATE(7556), 1, sym_scope_resolution, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [342804] = 3, + [305410] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6590), 3, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(6592), 9, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_COLON, - sym_identifier, - anon_sym_decltype, + ACTIONS(11569), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11571), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6679), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, anon_sym_final, anon_sym_override, - anon_sym_alignas, - anon_sym_template, - [342824] = 10, + anon_sym_GT2, + anon_sym_requires, + [305432] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(309), 1, + ACTIONS(860), 1, anon_sym_LBRACE, - ACTIONS(8637), 1, + ACTIONS(8341), 1, anon_sym_LBRACK, - ACTIONS(11757), 1, + ACTIONS(11444), 1, anon_sym_COLON, - ACTIONS(11842), 1, + ACTIONS(11468), 1, anon_sym_EQ, - ACTIONS(11844), 1, + ACTIONS(11470), 1, anon_sym_try, - STATE(362), 1, + STATE(710), 1, sym_compound_statement, - STATE(9566), 1, + STATE(8673), 1, sym_field_initializer_list, - ACTIONS(5488), 2, + ACTIONS(5409), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(363), 3, + STATE(735), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [342858] = 12, + [305466] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(11240), 1, - sym_identifier, - ACTIONS(11956), 1, + ACTIONS(5753), 1, anon_sym_virtual, - STATE(4648), 1, - sym_qualified_type_identifier, - STATE(4736), 1, + ACTIONS(10127), 1, + sym_identifier, + STATE(3094), 1, sym_template_type, - STATE(7865), 1, + STATE(3098), 1, + sym_qualified_type_identifier, + STATE(7476), 1, sym_virtual, - STATE(7918), 1, + STATE(7546), 1, sym_scope_resolution, - STATE(8374), 1, + STATE(8329), 1, sym_class_name, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [342896] = 12, + [305504] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(7114), 1, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11575), 1, + anon_sym_LBRACK, + STATE(6628), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11573), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACE, - ACTIONS(10521), 1, - sym_identifier, - STATE(3011), 1, - sym_template_type, - STATE(3113), 1, - sym_enumerator_list, - STATE(3140), 1, - sym_qualified_type_identifier, - STATE(6400), 1, - sym_class_name, - STATE(7876), 1, - sym_scope_resolution, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [342934] = 12, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [305528] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8544), 1, - anon_sym_LBRACE, - ACTIONS(10481), 1, + ACTIONS(5753), 1, + anon_sym_virtual, + ACTIONS(10127), 1, sym_identifier, - STATE(4364), 1, + STATE(3094), 1, sym_template_type, - STATE(4501), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(4678), 1, - sym_enumerator_list, - STATE(6223), 1, - sym_class_name, - STATE(7904), 1, + STATE(7490), 1, + sym_virtual, + STATE(7546), 1, sym_scope_resolution, - STATE(9982), 2, + STATE(7985), 1, + sym_class_name, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [342972] = 12, + [305566] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11571), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6755), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [305586] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(8406), 1, + ACTIONS(8229), 1, anon_sym_LBRACE, - ACTIONS(11666), 1, + ACTIONS(10099), 1, sym_identifier, - STATE(4736), 1, + STATE(3094), 1, sym_template_type, - STATE(4752), 1, + STATE(3322), 1, + sym_qualified_type_identifier, + STATE(4448), 1, sym_enumerator_list, - STATE(5306), 1, + STATE(4778), 1, sym_class_name, - STATE(5541), 1, - sym_qualified_type_identifier, - STATE(7926), 1, + STATE(7526), 1, sym_scope_resolution, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [343010] = 10, + [305624] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1002), 1, + ACTIONS(55), 1, anon_sym_LBRACE, - ACTIONS(8637), 1, + ACTIONS(8341), 1, anon_sym_LBRACK, - ACTIONS(11757), 1, + ACTIONS(11444), 1, anon_sym_COLON, - ACTIONS(11860), 1, + ACTIONS(11519), 1, anon_sym_EQ, - ACTIONS(11862), 1, + ACTIONS(11521), 1, anon_sym_try, - STATE(781), 1, + STATE(881), 1, sym_compound_statement, - STATE(9446), 1, + STATE(9027), 1, sym_field_initializer_list, - ACTIONS(5488), 2, + ACTIONS(5409), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(782), 3, + STATE(853), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [343044] = 12, + [305658] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(11240), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(10611), 1, + anon_sym_LBRACK, + STATE(4183), 1, + sym_parameter_list, + STATE(7260), 1, + sym_function_declarator_seq, + STATE(7162), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11329), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [305688] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8328), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7071), 1, + sym_function_postfix, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10782), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + sym_semgrep_metavar, + [305715] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(309), 1, + anon_sym_LBRACE, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(10611), 1, + anon_sym_LBRACK, + ACTIONS(10688), 1, + anon_sym_try, + STATE(4316), 1, + sym_parameter_list, + STATE(7260), 1, + sym_function_declarator_seq, + STATE(403), 2, + sym_compound_statement, + sym_try_statement, + STATE(7162), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [305748] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11401), 1, + anon_sym_LBRACK, + STATE(4315), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + ACTIONS(11235), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [305773] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11283), 1, sym_identifier, - ACTIONS(11956), 1, - anon_sym_virtual, - STATE(4648), 1, - sym_qualified_type_identifier, - STATE(4736), 1, - sym_template_type, - STATE(7850), 1, - sym_virtual, - STATE(7918), 1, - sym_scope_resolution, - STATE(8243), 1, - sym_class_name, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [343082] = 12, + ACTIONS(11577), 1, + aux_sym_preproc_if_token2, + ACTIONS(11579), 1, + aux_sym_preproc_else_token1, + ACTIONS(11581), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11583), 1, + aux_sym_preproc_elifdef_token1, + ACTIONS(11585), 1, + aux_sym_preproc_elifdef_token2, + STATE(7631), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(9261), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [305804] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(8574), 1, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11401), 1, + anon_sym_LBRACK, + STATE(4315), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + ACTIONS(11251), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(11709), 1, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [305829] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11401), 1, + anon_sym_LBRACK, + STATE(4315), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + ACTIONS(11253), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [305854] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(10611), 1, + anon_sym_LBRACK, + ACTIONS(10619), 1, + anon_sym_try, + STATE(4316), 1, + sym_parameter_list, + STATE(7260), 1, + sym_function_declarator_seq, + STATE(883), 2, + sym_compound_statement, + sym_try_statement, + STATE(7162), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [305887] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11401), 1, + anon_sym_LBRACK, + STATE(4315), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + ACTIONS(11241), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [305912] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11287), 1, + aux_sym_preproc_else_token1, + ACTIONS(11587), 1, sym_identifier, - STATE(4653), 1, - sym_class_name, - STATE(4843), 1, - sym_template_type, - STATE(5015), 1, - sym_qualified_type_identifier, - STATE(5050), 1, - sym_enumerator_list, - STATE(7916), 1, - sym_scope_resolution, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [343120] = 4, + ACTIONS(11589), 1, + aux_sym_preproc_if_token2, + ACTIONS(11591), 1, + aux_sym_preproc_elif_token1, + STATE(7621), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(7648), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(7801), 1, + sym_enumerator, + STATE(9539), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + STATE(9711), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [305945] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11567), 1, + anon_sym_LBRACK, + ACTIONS(11563), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [305964] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11401), 1, + anon_sym_LBRACK, + STATE(4315), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + ACTIONS(11243), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [305989] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11283), 1, + sym_identifier, + ACTIONS(11579), 1, + aux_sym_preproc_else_token1, + ACTIONS(11581), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11583), 1, + aux_sym_preproc_elifdef_token1, + ACTIONS(11585), 1, + aux_sym_preproc_elifdef_token2, + ACTIONS(11593), 1, + aux_sym_preproc_if_token2, + STATE(7631), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(9359), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [306020] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(10471), 1, + anon_sym_try, + ACTIONS(10611), 1, + anon_sym_LBRACK, + ACTIONS(11456), 1, + anon_sym_LBRACE, + STATE(4316), 1, + sym_parameter_list, + STATE(7260), 1, + sym_function_declarator_seq, + STATE(2273), 2, + sym_compound_statement, + sym_try_statement, + STATE(7162), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [306053] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11287), 1, + aux_sym_preproc_else_token1, + ACTIONS(11587), 1, + sym_identifier, + ACTIONS(11591), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11595), 1, + aux_sym_preproc_if_token2, + STATE(7579), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(7627), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(7801), 1, + sym_enumerator, + STATE(9318), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + STATE(9320), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [306086] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(10087), 1, + anon_sym_requires, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + ACTIONS(9708), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [306115] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11287), 1, + aux_sym_preproc_else_token1, + ACTIONS(11587), 1, + sym_identifier, + ACTIONS(11591), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11597), 1, + aux_sym_preproc_if_token2, + STATE(7599), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(7601), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(7801), 1, + sym_enumerator, + STATE(9565), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + STATE(9608), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + [306148] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11401), 1, + anon_sym_LBRACK, + STATE(3879), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + ACTIONS(11243), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [306173] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8388), 1, + anon_sym_requires, + ACTIONS(9642), 1, + anon_sym_LBRACK, + STATE(6852), 1, + sym_requires_clause, + STATE(6904), 1, + sym_function_postfix, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [306202] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8388), 1, + anon_sym_requires, + ACTIONS(9783), 1, + anon_sym_LBRACK, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [306231] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(10440), 1, + anon_sym_try, + ACTIONS(10611), 1, + anon_sym_LBRACK, + ACTIONS(11509), 1, + anon_sym_LBRACE, + STATE(4316), 1, + sym_parameter_list, + STATE(7260), 1, + sym_function_declarator_seq, + STATE(2155), 2, + sym_compound_statement, + sym_try_statement, + STATE(7162), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [306264] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2193), 10, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [306283] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11401), 1, + anon_sym_LBRACK, + STATE(4315), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + ACTIONS(11247), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [306308] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8388), 1, + anon_sym_requires, + ACTIONS(10156), 1, + anon_sym_LBRACK, + STATE(6835), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [306337] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8388), 1, + anon_sym_requires, + ACTIONS(10788), 1, + anon_sym_LBRACK, + STATE(6812), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10786), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [306366] = 8, ACTIONS(3), 1, sym_comment, - STATE(7398), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(11497), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(11499), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [343142] = 10, + ACTIONS(8388), 1, + anon_sym_requires, + ACTIONS(10784), 1, + anon_sym_LBRACK, + STATE(6815), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(6369), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10782), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [306395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_LBRACE, - ACTIONS(8637), 1, + ACTIONS(6552), 1, anon_sym_LBRACK, - ACTIONS(11757), 1, - anon_sym_COLON, - ACTIONS(11786), 1, - anon_sym_EQ, - ACTIONS(11788), 1, - anon_sym_try, - STATE(851), 1, - sym_compound_statement, - STATE(9213), 1, - sym_field_initializer_list, - ACTIONS(5488), 2, + ACTIONS(6550), 10, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - STATE(852), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [343176] = 9, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [306414] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(11964), 1, + ACTIONS(11599), 1, sym_identifier, - STATE(7193), 1, + STATE(6785), 1, sym_scope_resolution, - STATE(10104), 1, + STATE(9350), 1, sym_qualified_identifier, - ACTIONS(11966), 2, + ACTIONS(11601), 2, anon_sym_enum, anon_sym_namespace, - STATE(9982), 3, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [343207] = 7, + [306445] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + ACTIONS(8328), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7068), 1, + sym_function_postfix, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 4, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(11683), 1, anon_sym_LBRACK, - STATE(7685), 1, - sym_parameter_list, - STATE(7841), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6728), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [343234] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11596), 1, - aux_sym_preproc_else_token1, - ACTIONS(11968), 1, - sym_identifier, - ACTIONS(11970), 1, - aux_sym_preproc_if_token2, - ACTIONS(11972), 1, - aux_sym_preproc_elif_token1, - STATE(7947), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(7958), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(8167), 1, - sym_enumerator, - STATE(10638), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - STATE(10653), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [343267] = 7, + sym_semgrep_metavar, + [306472] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11683), 1, + ACTIONS(11401), 1, anon_sym_LBRACK, - STATE(7685), 1, + STATE(4315), 1, sym_parameter_list, - STATE(7841), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6777), 5, + STATE(7104), 1, + sym_function_declarator_seq, + ACTIONS(11249), 7, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [343294] = 9, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [306497] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8328), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7073), 1, + sym_function_postfix, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + sym_semgrep_metavar, + [306524] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(11974), 1, + ACTIONS(11603), 1, sym_identifier, - STATE(7193), 1, + STATE(6785), 1, sym_scope_resolution, - STATE(9687), 1, + STATE(9277), 1, sym_qualified_identifier, - ACTIONS(11976), 2, + ACTIONS(11605), 2, anon_sym_enum, anon_sym_namespace, - STATE(9982), 3, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [343325] = 9, + [306555] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8328), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7094), 1, + sym_function_postfix, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + sym_semgrep_metavar, + [306582] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8328), 1, + anon_sym_requires, + STATE(7017), 1, + sym_function_postfix, + STATE(7021), 1, + sym_requires_clause, + ACTIONS(7921), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10786), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + sym_semgrep_metavar, + [306609] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(11978), 1, + ACTIONS(11607), 1, sym_identifier, - STATE(7193), 1, + STATE(6785), 1, sym_scope_resolution, - STATE(10001), 1, + STATE(9280), 1, sym_qualified_identifier, - ACTIONS(11980), 2, + ACTIONS(11609), 2, anon_sym_enum, anon_sym_namespace, - STATE(9982), 3, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [343356] = 9, + [306640] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(10461), 1, + anon_sym_try, + ACTIONS(10611), 1, + anon_sym_LBRACK, + ACTIONS(11480), 1, + anon_sym_LBRACE, + STATE(4316), 1, + sym_parameter_list, + STATE(7260), 1, + sym_function_declarator_seq, + STATE(1940), 2, + sym_compound_statement, + sym_try_statement, + STATE(7162), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [306673] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(11982), 1, + ACTIONS(11611), 1, sym_identifier, - STATE(7193), 1, + STATE(6785), 1, sym_scope_resolution, - STATE(9649), 1, + STATE(9625), 1, sym_qualified_identifier, - ACTIONS(11984), 2, + ACTIONS(11613), 2, anon_sym_enum, anon_sym_namespace, - STATE(9982), 3, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [343387] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11596), 1, - aux_sym_preproc_else_token1, - ACTIONS(11968), 1, - sym_identifier, - ACTIONS(11972), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11986), 1, - aux_sym_preproc_if_token2, - STATE(7967), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(7997), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(8167), 1, - sym_enumerator, - STATE(10448), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - STATE(10461), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [343420] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11990), 1, - anon_sym_LBRACK, - ACTIONS(11988), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [343439] = 10, + [306704] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, ACTIONS(860), 1, anon_sym_LBRACE, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11001), 1, + ACTIONS(10611), 1, anon_sym_LBRACK, - ACTIONS(11069), 1, + ACTIONS(10641), 1, anon_sym_try, - STATE(3864), 1, + STATE(4316), 1, sym_parameter_list, - STATE(7652), 1, + STATE(7260), 1, sym_function_declarator_seq, - STATE(714), 2, + STATE(762), 2, sym_compound_statement, sym_try_statement, - STATE(7714), 2, + STATE(7162), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343472] = 3, + [306737] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(11615), 1, + sym_identifier, + STATE(6785), 1, + sym_scope_resolution, + STATE(9918), 1, + sym_qualified_identifier, + ACTIONS(11617), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [306768] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11954), 1, + ACTIONS(6677), 1, anon_sym_LBRACK, - ACTIONS(11950), 10, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(11619), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11621), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6679), 6, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_COLON, - anon_sym_try, - [343491] = 9, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [306791] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(11992), 1, + ACTIONS(11623), 1, sym_identifier, - ACTIONS(11995), 1, - aux_sym_preproc_if_token1, - ACTIONS(11998), 1, - aux_sym_preproc_ifdef_token1, - ACTIONS(12001), 1, - aux_sym_preproc_ifdef_token2, - ACTIONS(12004), 1, - sym_preproc_directive, - ACTIONS(12007), 1, - anon_sym_RBRACE, - STATE(10494), 2, - sym_preproc_call, + ACTIONS(11625), 1, + aux_sym_preproc_if_token2, + ACTIONS(11627), 1, + aux_sym_preproc_else_token1, + ACTIONS(11629), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11631), 1, + aux_sym_preproc_elifdef_token1, + ACTIONS(11633), 1, + aux_sym_preproc_elifdef_token2, + STATE(7461), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(9176), 1, sym_enumerator, - STATE(7772), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [343522] = 7, + STATE(9959), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [306824] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9031), 1, + ACTIONS(11623), 1, sym_identifier, - ACTIONS(9035), 1, - sym_primitive_type, - STATE(7804), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6022), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(6026), 2, - sym_auto, - anon_sym_decltype, - ACTIONS(12009), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [343549] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11596), 1, + ACTIONS(11627), 1, aux_sym_preproc_else_token1, - ACTIONS(11968), 1, - sym_identifier, - ACTIONS(11972), 1, + ACTIONS(11629), 1, aux_sym_preproc_elif_token1, - ACTIONS(12011), 1, + ACTIONS(11631), 1, + aux_sym_preproc_elifdef_token1, + ACTIONS(11633), 1, + aux_sym_preproc_elifdef_token2, + ACTIONS(11635), 1, aux_sym_preproc_if_token2, - STATE(7988), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(7999), 1, + STATE(7433), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(8167), 1, + STATE(9176), 1, sym_enumerator, - STATE(9681), 2, + STATE(9392), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, - STATE(9694), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [343582] = 3, + sym_preproc_elifdef_in_enumerator_list, + [306857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12015), 1, + ACTIONS(11639), 1, anon_sym_LBRACK, - ACTIONS(12013), 10, + ACTIONS(11637), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -609409,451 +576500,442 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [343601] = 6, + [306876] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(11641), 1, + sym_identifier, + STATE(6785), 1, + sym_scope_resolution, + STATE(9721), 1, + sym_qualified_identifier, + ACTIONS(11643), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(9605), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [306907] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11623), 1, + sym_identifier, + ACTIONS(11627), 1, + aux_sym_preproc_else_token1, + ACTIONS(11629), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11631), 1, + aux_sym_preproc_elifdef_token1, + ACTIONS(11633), 1, + aux_sym_preproc_elifdef_token2, + ACTIONS(11645), 1, + aux_sym_preproc_if_token2, + STATE(7633), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(9176), 1, + sym_enumerator, + STATE(9325), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [306940] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11662), 1, + ACTIONS(10611), 1, anon_sym_LBRACK, - STATE(4027), 1, + STATE(4316), 1, sym_parameter_list, - STATE(7421), 1, + STATE(7260), 1, sym_function_declarator_seq, - ACTIONS(11449), 7, - anon_sym_COMMA, + STATE(7162), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11329), 4, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, anon_sym_try, - [343626] = 9, + [306969] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(9783), 1, + anon_sym_LBRACK, + ACTIONS(10170), 1, + anon_sym_requires, + STATE(6814), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(10005), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [306998] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(12017), 1, + ACTIONS(11647), 1, sym_identifier, - STATE(7193), 1, + STATE(6785), 1, sym_scope_resolution, - STATE(10302), 1, + STATE(9979), 1, sym_qualified_identifier, - ACTIONS(12019), 2, + ACTIONS(11649), 2, anon_sym_enum, anon_sym_namespace, - STATE(9982), 3, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [343657] = 6, + [307029] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(8637), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(10611), 1, anon_sym_LBRACK, - ACTIONS(10562), 1, - anon_sym_LT, - STATE(7592), 1, - sym_template_argument_list, - ACTIONS(5488), 7, - anon_sym_COMMA, + STATE(4316), 1, + sym_parameter_list, + STATE(7260), 1, + sym_function_declarator_seq, + STATE(7162), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11324), 4, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [343682] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(7779), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5697), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(5699), 4, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(12021), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [343705] = 3, + anon_sym_try, + [307058] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6986), 1, - anon_sym_LBRACK, - ACTIONS(6984), 10, - anon_sym_COMMA, + ACTIONS(11651), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11653), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6679), 7, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [343724] = 10, + anon_sym_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [307079] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(12024), 1, - aux_sym_preproc_if_token2, - ACTIONS(12026), 1, + ACTIONS(11287), 1, aux_sym_preproc_else_token1, - ACTIONS(12028), 1, + ACTIONS(11587), 1, + sym_identifier, + ACTIONS(11591), 1, aux_sym_preproc_elif_token1, - ACTIONS(12030), 1, - aux_sym_preproc_elifdef_token1, - ACTIONS(12032), 1, - aux_sym_preproc_elifdef_token2, - STATE(7791), 1, + ACTIONS(11655), 1, + aux_sym_preproc_if_token2, + STATE(7610), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(10024), 1, + STATE(7628), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(7801), 1, sym_enumerator, - STATE(10470), 3, + STATE(9274), 2, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [343757] = 6, + STATE(9275), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [307112] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11662), 1, + ACTIONS(10611), 1, anon_sym_LBRACK, - STATE(4027), 1, + STATE(4316), 1, sym_parameter_list, - STATE(7421), 1, + STATE(7260), 1, sym_function_declarator_seq, - ACTIONS(11465), 7, - anon_sym_COMMA, + STATE(7162), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11331), 4, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, anon_sym_try, - [343782] = 10, + [307141] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(12026), 1, - aux_sym_preproc_else_token1, - ACTIONS(12028), 1, - aux_sym_preproc_elif_token1, - ACTIONS(12030), 1, - aux_sym_preproc_elifdef_token1, - ACTIONS(12032), 1, - aux_sym_preproc_elifdef_token2, - ACTIONS(12034), 1, - aux_sym_preproc_if_token2, - STATE(7793), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(10024), 1, - sym_enumerator, - STATE(10481), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [343815] = 7, + ACTIONS(10156), 1, + anon_sym_LBRACK, + ACTIONS(10442), 1, + anon_sym_requires, + STATE(6835), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(10179), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [307170] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11683), 1, + ACTIONS(6212), 1, anon_sym_LBRACK, - STATE(7685), 1, - sym_parameter_list, - STATE(7841), 2, + STATE(7112), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(6746), 5, + ACTIONS(6210), 7, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [343842] = 9, + anon_sym_try, + [307193] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(12036), 1, + ACTIONS(11657), 1, sym_identifier, - STATE(7193), 1, + STATE(6785), 1, sym_scope_resolution, - STATE(10210), 1, + STATE(9983), 1, sym_qualified_identifier, - ACTIONS(12038), 2, + ACTIONS(11659), 2, anon_sym_enum, anon_sym_namespace, - STATE(9982), 3, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [343873] = 10, + [307224] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6753), 1, + anon_sym_LBRACK, + ACTIONS(11621), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6755), 8, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_or, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [307245] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10788), 1, + anon_sym_LBRACK, + ACTIONS(11492), 1, + anon_sym_requires, + STATE(6812), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(10790), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10786), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [307274] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + ACTIONS(1126), 1, + anon_sym_LBRACE, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(10869), 1, - anon_sym_try, - ACTIONS(11001), 1, + ACTIONS(10611), 1, anon_sym_LBRACK, - ACTIONS(11850), 1, - anon_sym_LBRACE, - STATE(3864), 1, + ACTIONS(10617), 1, + anon_sym_try, + STATE(4316), 1, sym_parameter_list, - STATE(7652), 1, + STATE(7260), 1, sym_function_declarator_seq, - STATE(2043), 2, + STATE(760), 2, sym_compound_statement, sym_try_statement, - STATE(7714), 2, + STATE(7162), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343906] = 10, + [307307] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(10832), 1, + ACTIONS(10430), 1, anon_sym_try, - ACTIONS(11001), 1, + ACTIONS(10611), 1, anon_sym_LBRACK, - ACTIONS(11753), 1, + ACTIONS(11440), 1, anon_sym_LBRACE, - STATE(3864), 1, + STATE(4316), 1, sym_parameter_list, - STATE(7652), 1, + STATE(7260), 1, sym_function_declarator_seq, - STATE(2265), 2, + STATE(2424), 2, sym_compound_statement, sym_try_statement, - STATE(7714), 2, + STATE(7162), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343939] = 6, + [307340] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5469), 1, + ACTIONS(10784), 1, anon_sym_LBRACK, - ACTIONS(10562), 1, - anon_sym_LT, - STATE(7592), 1, - sym_template_argument_list, - ACTIONS(5462), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(11661), 1, + anon_sym_requires, + STATE(6815), 1, + sym_function_postfix, + STATE(6852), 1, + sym_requires_clause, + ACTIONS(10836), 2, + anon_sym_final, + anon_sym_override, + STATE(6761), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10782), 3, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [343964] = 6, + anon_sym_COLON, + [307369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11662), 1, + ACTIONS(11666), 1, anon_sym_LBRACK, - STATE(4027), 1, - sym_parameter_list, - STATE(7421), 1, - sym_function_declarator_seq, - ACTIONS(11451), 7, + ACTIONS(11664), 10, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, + anon_sym_COLON, anon_sym_try, - [343989] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11596), 1, - aux_sym_preproc_else_token1, - ACTIONS(11968), 1, - sym_identifier, - ACTIONS(11972), 1, - aux_sym_preproc_elif_token1, - ACTIONS(12040), 1, - aux_sym_preproc_if_token2, - STATE(7984), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(7986), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(8167), 1, - sym_enumerator, - STATE(10030), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - STATE(10322), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [344022] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(12026), 1, - aux_sym_preproc_else_token1, - ACTIONS(12028), 1, - aux_sym_preproc_elif_token1, - ACTIONS(12030), 1, - aux_sym_preproc_elifdef_token1, - ACTIONS(12032), 1, - aux_sym_preproc_elifdef_token2, - ACTIONS(12042), 1, - aux_sym_preproc_if_token2, - STATE(7992), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(10024), 1, - sym_enumerator, - STATE(10628), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [344055] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11592), 1, - sym_identifier, - ACTIONS(12044), 1, - aux_sym_preproc_if_token2, - ACTIONS(12046), 1, - aux_sym_preproc_else_token1, - ACTIONS(12048), 1, - aux_sym_preproc_elif_token1, - ACTIONS(12050), 1, - aux_sym_preproc_elifdef_token1, - ACTIONS(12052), 1, - aux_sym_preproc_elifdef_token2, - STATE(7959), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(9705), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [344086] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(12026), 1, - aux_sym_preproc_else_token1, - ACTIONS(12028), 1, - aux_sym_preproc_elif_token1, - ACTIONS(12030), 1, - aux_sym_preproc_elifdef_token1, - ACTIONS(12032), 1, - aux_sym_preproc_elifdef_token2, - ACTIONS(12054), 1, - aux_sym_preproc_if_token2, - STATE(7992), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(10024), 1, - sym_enumerator, - STATE(9857), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [344119] = 9, + [307388] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11592), 1, - sym_identifier, - ACTIONS(12046), 1, - aux_sym_preproc_else_token1, - ACTIONS(12048), 1, - aux_sym_preproc_elif_token1, - ACTIONS(12050), 1, - aux_sym_preproc_elifdef_token1, - ACTIONS(12052), 1, - aux_sym_preproc_elifdef_token2, - ACTIONS(12056), 1, - aux_sym_preproc_if_token2, - STATE(7959), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(9948), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [344150] = 10, + ACTIONS(10068), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7068), 1, + sym_function_postfix, + ACTIONS(9657), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9640), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + sym_semgrep_metavar, + [307415] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(10879), 1, - anon_sym_try, - ACTIONS(11001), 1, + ACTIONS(10611), 1, anon_sym_LBRACK, - ACTIONS(11792), 1, - anon_sym_LBRACE, - STATE(3864), 1, + STATE(4316), 1, sym_parameter_list, - STATE(7652), 1, + STATE(7260), 1, sym_function_declarator_seq, - STATE(2395), 2, - sym_compound_statement, - sym_try_statement, - STATE(7714), 2, + STATE(7162), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344183] = 5, + ACTIONS(11337), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [307444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6829), 1, - anon_sym_COLON_COLON, - ACTIONS(12058), 1, - anon_sym_LBRACK_LBRACK, - STATE(7796), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6831), 7, - sym_identifier, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - [344206] = 3, + ACTIONS(11653), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6755), 9, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [307463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12063), 1, + ACTIONS(11670), 1, anon_sym_LBRACK, - ACTIONS(12061), 10, + ACTIONS(11668), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -609864,54 +576946,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [344225] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11683), 1, - anon_sym_LBRACK, - STATE(7685), 1, - sym_parameter_list, - STATE(7841), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6759), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [344252] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(12065), 1, - sym_identifier, - STATE(7193), 1, - sym_scope_resolution, - STATE(9798), 1, - sym_qualified_identifier, - ACTIONS(12067), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [344283] = 3, + [307482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12071), 1, + ACTIONS(11674), 1, anon_sym_LBRACK, - ACTIONS(12069), 10, + ACTIONS(11672), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -609922,12 +576962,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [344302] = 3, + [307501] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10167), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7073), 1, + sym_function_postfix, + ACTIONS(9785), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(9781), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + sym_semgrep_metavar, + [307528] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12075), 1, + ACTIONS(11678), 1, anon_sym_LBRACK, - ACTIONS(12073), 10, + ACTIONS(11676), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -609938,122 +576998,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [344321] = 10, + [307547] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(421), 1, - anon_sym_LBRACE, - ACTIONS(10808), 1, + ACTIONS(10341), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7094), 1, + sym_function_postfix, + ACTIONS(10158), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10154), 4, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(11001), 1, anon_sym_LBRACK, - ACTIONS(11061), 1, - anon_sym_try, - STATE(3864), 1, - sym_parameter_list, - STATE(7652), 1, - sym_function_declarator_seq, - STATE(516), 2, - sym_compound_statement, - sym_try_statement, - STATE(7714), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [344354] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(12077), 1, - sym_identifier, - STATE(7193), 1, - sym_scope_resolution, - STATE(9774), 1, - sym_qualified_identifier, - ACTIONS(12079), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [344385] = 6, + sym_semgrep_metavar, + [307574] = 7, ACTIONS(3), 1, sym_comment, - STATE(7779), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5699), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(6016), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(6019), 2, - sym_auto, - anon_sym_decltype, - ACTIONS(12021), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [344410] = 10, + ACTIONS(11543), 1, + anon_sym_requires, + STATE(7017), 1, + sym_function_postfix, + STATE(7021), 1, + sym_requires_clause, + ACTIONS(10875), 2, + anon_sym_final, + anon_sym_override, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10786), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + sym_semgrep_metavar, + [307601] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(55), 1, - anon_sym_LBRACE, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11001), 1, + ACTIONS(11401), 1, anon_sym_LBRACK, - ACTIONS(11147), 1, - anon_sym_try, - STATE(3864), 1, + STATE(3879), 1, sym_parameter_list, - STATE(7652), 1, + STATE(7104), 1, sym_function_declarator_seq, - STATE(861), 2, - sym_compound_statement, - sym_try_statement, - STATE(7714), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [344443] = 10, + ACTIONS(11251), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [307626] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(309), 1, + ACTIONS(421), 1, anon_sym_LBRACE, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11001), 1, + ACTIONS(10611), 1, anon_sym_LBRACK, - ACTIONS(11155), 1, + ACTIONS(10680), 1, anon_sym_try, - STATE(3864), 1, + STATE(4316), 1, sym_parameter_list, - STATE(7652), 1, + STATE(7260), 1, sym_function_declarator_seq, - STATE(380), 2, + STATE(556), 2, sym_compound_statement, sym_try_statement, - STATE(7714), 2, + STATE(7162), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344476] = 3, + [307659] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(12083), 1, + ACTIONS(11623), 1, + sym_identifier, + ACTIONS(11627), 1, + aux_sym_preproc_else_token1, + ACTIONS(11629), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11631), 1, + aux_sym_preproc_elifdef_token1, + ACTIONS(11633), 1, + aux_sym_preproc_elifdef_token2, + ACTIONS(11680), 1, + aux_sym_preproc_if_token2, + STATE(7633), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(9176), 1, + sym_enumerator, + STATE(9175), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [307692] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11684), 1, anon_sym_LBRACK, - ACTIONS(12081), 10, + ACTIONS(11682), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -610064,482 +577119,287 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [344495] = 9, + [307711] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(12085), 1, + ACTIONS(11686), 1, sym_identifier, - STATE(7193), 1, + STATE(6785), 1, sym_scope_resolution, - STATE(9700), 1, + STATE(9428), 1, sym_qualified_identifier, - ACTIONS(12087), 2, + ACTIONS(11688), 2, anon_sym_enum, anon_sym_namespace, - STATE(9982), 3, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [344526] = 5, + [307742] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(12089), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6829), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - STATE(7809), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6831), 6, - anon_sym_COLON, - sym_identifier, - anon_sym_decltype, + ACTIONS(11690), 1, + anon_sym_requires, + STATE(7021), 1, + sym_requires_clause, + STATE(7071), 1, + sym_function_postfix, + ACTIONS(10978), 2, anon_sym_final, anon_sym_override, - anon_sym_template, - [344549] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + STATE(6899), 2, + sym_virtual_specifier, + aux_sym_function_postfix_repeat1, + ACTIONS(10782), 4, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(10820), 1, - anon_sym_try, - ACTIONS(11001), 1, anon_sym_LBRACK, - ACTIONS(11876), 1, - anon_sym_LBRACE, - STATE(3864), 1, - sym_parameter_list, - STATE(7652), 1, - sym_function_declarator_seq, - STATE(2156), 2, - sym_compound_statement, - sym_try_statement, - STATE(7714), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [344582] = 10, + sym_semgrep_metavar, + [307769] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1002), 1, - anon_sym_LBRACE, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11001), 1, + ACTIONS(10611), 1, anon_sym_LBRACK, - ACTIONS(11151), 1, - anon_sym_try, - STATE(3864), 1, + STATE(4316), 1, sym_parameter_list, - STATE(7652), 1, + STATE(7260), 1, sym_function_declarator_seq, - STATE(727), 2, - sym_compound_statement, - sym_try_statement, - STATE(7714), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [344615] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12096), 1, - anon_sym_delete, - ACTIONS(12098), 1, - anon_sym_new, - ACTIONS(12094), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(12092), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [344637] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6736), 1, - anon_sym_LBRACK, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - STATE(2856), 1, - sym_parameter_list, - STATE(7890), 2, + STATE(7162), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(6746), 4, + ACTIONS(11381), 4, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_try, - [344663] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12102), 1, - anon_sym_LBRACK, - STATE(8281), 1, - sym_gnu_asm_output_operand, - STATE(10246), 1, - sym_string_literal, - ACTIONS(12100), 2, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(115), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [344687] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(5064), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11137), 1, - anon_sym_TILDE, - ACTIONS(12104), 1, - sym_identifier, - ACTIONS(12106), 1, - anon_sym_template, - STATE(3470), 1, - sym_semgrep_ellipsis, - STATE(9573), 1, - sym_operator_name, - STATE(3695), 3, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - [344717] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(12108), 1, - sym_identifier, - STATE(2783), 1, - sym_class_name, - STATE(2795), 1, - sym_template_type, - STATE(2833), 1, - sym_qualified_type_identifier, - STATE(7935), 1, - sym_scope_resolution, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [344749] = 9, + [307798] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11001), 1, + ACTIONS(11401), 1, anon_sym_LBRACK, - ACTIONS(12112), 1, - anon_sym_EQ, - STATE(3864), 1, + STATE(3879), 1, sym_parameter_list, - STATE(7652), 1, + STATE(7104), 1, sym_function_declarator_seq, - ACTIONS(12110), 2, + ACTIONS(11241), 7, anon_sym_COMMA, anon_sym_RPAREN, - STATE(7714), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [344779] = 10, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [307823] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(11240), 1, + ACTIONS(10127), 1, sym_identifier, - STATE(4648), 1, - sym_qualified_type_identifier, - STATE(4736), 1, + STATE(3094), 1, sym_template_type, - STATE(7918), 1, - sym_scope_resolution, - STATE(8995), 1, - sym_class_name, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [344811] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(11240), 1, - sym_identifier, - STATE(4648), 1, + STATE(3098), 1, sym_qualified_type_identifier, - STATE(4736), 1, - sym_template_type, - STATE(7918), 1, + STATE(7546), 1, sym_scope_resolution, - STATE(8587), 1, + STATE(7985), 1, sym_class_name, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [344843] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6736), 1, - anon_sym_LBRACK, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - STATE(2856), 1, - sym_parameter_list, - STATE(7924), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6759), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - [344869] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5500), 1, - anon_sym_LBRACK, - ACTIONS(5502), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [344887] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(8544), 1, - anon_sym_LBRACE, - ACTIONS(12114), 1, - anon_sym_COLON, - STATE(4600), 1, - sym_enum_base_clause, - STATE(4688), 1, - sym_enumerator_list, - STATE(4773), 1, - sym_attribute_specifier, - ACTIONS(6227), 4, - anon_sym_COMMA, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [344915] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11001), 1, - anon_sym_LBRACK, - ACTIONS(12116), 1, - anon_sym_EQ, - STATE(3864), 1, - sym_parameter_list, - STATE(7652), 1, - sym_function_declarator_seq, - ACTIONS(12110), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(7714), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [344945] = 9, + [307855] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2259), 1, + ACTIONS(2257), 1, anon_sym_operator, - ACTIONS(5150), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11173), 1, + ACTIONS(10539), 1, anon_sym_TILDE, - ACTIONS(12118), 1, + ACTIONS(11693), 1, sym_identifier, - ACTIONS(12120), 1, + ACTIONS(11695), 1, anon_sym_template, - STATE(3851), 1, + STATE(2895), 1, sym_semgrep_ellipsis, - STATE(9551), 1, + STATE(8729), 1, sym_operator_name, - STATE(4108), 3, + STATE(2533), 3, sym_template_method, sym_destructor_name, sym_dependent_field_identifier, - [344975] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12122), 1, - anon_sym_delete, - ACTIONS(12124), 1, - anon_sym_new, - ACTIONS(12094), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(12092), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [344997] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(8544), 1, - anon_sym_LBRACE, - ACTIONS(12114), 1, - anon_sym_COLON, - STATE(4616), 1, - sym_enum_base_clause, - STATE(4661), 1, - sym_enumerator_list, - STATE(4759), 1, - sym_attribute_specifier, - ACTIONS(6235), 4, - anon_sym_COMMA, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [345025] = 6, + [307885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12128), 1, + ACTIONS(5421), 1, anon_sym_LBRACK, - STATE(8305), 1, - sym_gnu_asm_input_operand, - STATE(9855), 1, - sym_string_literal, - ACTIONS(12126), 2, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(115), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [345049] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, + ACTIONS(5423), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(10808), 1, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [307903] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11001), 1, + ACTIONS(11401), 1, anon_sym_LBRACK, - ACTIONS(12130), 1, - anon_sym_EQ, - STATE(3864), 1, + STATE(4408), 1, sym_parameter_list, - STATE(7652), 1, + STATE(7104), 1, sym_function_declarator_seq, - STATE(9937), 1, - sym_initializer_list, - STATE(7714), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [345081] = 5, + ACTIONS(11251), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [307927] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(3706), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10670), 1, + anon_sym_TILDE, + ACTIONS(11697), 1, + sym_identifier, + ACTIONS(11699), 1, + anon_sym_template, + STATE(3528), 1, + sym_semgrep_ellipsis, + STATE(8740), 1, + sym_operator_name, + STATE(3710), 3, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + [307957] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12132), 1, + ACTIONS(11705), 1, anon_sym_delete, - ACTIONS(12134), 1, + ACTIONS(11707), 1, anon_sym_new, - ACTIONS(12094), 3, + ACTIONS(11703), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(12092), 5, + ACTIONS(11701), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [345103] = 3, + [307979] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5481), 1, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11401), 1, anon_sym_LBRACK, - ACTIONS(5483), 9, + STATE(4408), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + ACTIONS(11253), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [345121] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [308003] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12136), 1, + ACTIONS(11709), 1, anon_sym_delete, - ACTIONS(12138), 1, + ACTIONS(11711), 1, anon_sym_new, - ACTIONS(12094), 3, + ACTIONS(11703), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(12092), 5, + ACTIONS(11701), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [345143] = 3, + [308025] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(11713), 1, + sym_identifier, + STATE(2788), 1, + sym_template_type, + STATE(2807), 1, + sym_class_name, + STATE(2828), 1, + sym_qualified_type_identifier, + STATE(7565), 1, + sym_scope_resolution, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [308057] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10127), 1, + sym_identifier, + STATE(3094), 1, + sym_template_type, + STATE(3098), 1, + sym_qualified_type_identifier, + STATE(7546), 1, + sym_scope_resolution, + STATE(8319), 1, + sym_class_name, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [308089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5511), 1, + ACTIONS(5402), 1, anon_sym_LBRACK, - ACTIONS(5513), 9, + ACTIONS(5404), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -610549,52 +577409,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [345161] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(5070), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11049), 1, - anon_sym_TILDE, - ACTIONS(12140), 1, - sym_identifier, - ACTIONS(12142), 1, - anon_sym_template, - STATE(4104), 1, - sym_semgrep_ellipsis, - STATE(9289), 1, - sym_operator_name, - STATE(4303), 3, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - [345191] = 7, + [308107] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6736), 1, - anon_sym_LBRACK, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - STATE(2856), 1, + ACTIONS(10611), 1, + anon_sym_LBRACK, + ACTIONS(11717), 1, + anon_sym_EQ, + STATE(4183), 1, sym_parameter_list, - STATE(7890), 2, + STATE(7260), 1, + sym_function_declarator_seq, + ACTIONS(11715), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(7162), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(6777), 4, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [345217] = 3, + [308137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5456), 1, + ACTIONS(5394), 1, anon_sym_LBRACK, - ACTIONS(5458), 9, + ACTIONS(5396), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -610604,86 +577445,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [345235] = 5, + [308155] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12144), 1, + ACTIONS(11719), 1, anon_sym_delete, - ACTIONS(12146), 1, + ACTIONS(11721), 1, anon_sym_new, - ACTIONS(12094), 3, + ACTIONS(11703), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(12092), 5, + ACTIONS(11701), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [345257] = 9, + [308177] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11725), 1, + anon_sym_LBRACK, + STATE(8072), 1, + sym_gnu_asm_output_operand, + STATE(9233), 1, + sym_string_literal, + ACTIONS(11723), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(115), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [308201] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2259), 1, + ACTIONS(2257), 1, anon_sym_operator, - ACTIONS(3131), 1, + ACTIONS(4882), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11015), 1, + ACTIONS(10593), 1, anon_sym_TILDE, - ACTIONS(12148), 1, + ACTIONS(11727), 1, sym_identifier, - ACTIONS(12150), 1, + ACTIONS(11729), 1, anon_sym_template, - STATE(4343), 1, + STATE(3797), 1, sym_semgrep_ellipsis, - STATE(9318), 1, + STATE(8683), 1, sym_operator_name, - STATE(3155), 3, + STATE(3969), 3, sym_template_method, sym_destructor_name, sym_dependent_field_identifier, - [345287] = 7, + [308231] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6736), 1, - anon_sym_LBRACK, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - STATE(2856), 1, - sym_parameter_list, - STATE(7890), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6728), 4, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [345313] = 5, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(4990), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10581), 1, + anon_sym_TILDE, + ACTIONS(11731), 1, + sym_identifier, + ACTIONS(11733), 1, + anon_sym_template, + STATE(3977), 1, + sym_semgrep_ellipsis, + STATE(8890), 1, + sym_operator_name, + STATE(4173), 3, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + [308261] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12152), 1, + ACTIONS(11735), 1, anon_sym_delete, - ACTIONS(12154), 1, + ACTIONS(11737), 1, anon_sym_new, - ACTIONS(12094), 3, + ACTIONS(11703), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(12092), 5, + ACTIONS(11701), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [345335] = 3, + [308283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5507), 1, + ACTIONS(5417), 1, anon_sym_LBRACK, - ACTIONS(5509), 9, + ACTIONS(5419), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -610693,29 +577554,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [345353] = 5, + [308301] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6884), 1, - anon_sym_LBRACK, - STATE(7724), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6882), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [345375] = 3, + ACTIONS(11739), 1, + anon_sym_delete, + ACTIONS(11741), 1, + anon_sym_new, + ACTIONS(11703), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(11701), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [308323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 1, + ACTIONS(5429), 1, anon_sym_LBRACK, - ACTIONS(5498), 9, + ACTIONS(5431), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -610725,512 +577586,510 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [345393] = 5, + [308341] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12156), 1, + ACTIONS(11743), 1, anon_sym_delete, - ACTIONS(12158), 1, + ACTIONS(11745), 1, anon_sym_new, - ACTIONS(12094), 3, + ACTIONS(11703), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(12092), 5, + ACTIONS(11701), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [345415] = 5, + [308363] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12160), 1, + ACTIONS(11747), 1, anon_sym_delete, - ACTIONS(12162), 1, + ACTIONS(11749), 1, anon_sym_new, - ACTIONS(12094), 3, + ACTIONS(11703), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(12092), 5, + ACTIONS(11701), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [345437] = 9, + [308385] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 1, + anon_sym_template, + ACTIONS(2313), 1, + anon_sym_decltype, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(10127), 1, + sym_identifier, + STATE(3094), 1, + sym_template_type, + STATE(3098), 1, + sym_qualified_type_identifier, + STATE(7546), 1, + sym_scope_resolution, + STATE(8099), 1, + sym_class_name, + STATE(9605), 2, + sym_decltype, + sym_dependent_type_identifier, + [308417] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6736), 1, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11401), 1, anon_sym_LBRACK, - ACTIONS(8098), 1, + STATE(4408), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + ACTIONS(11249), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [308441] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + ACTIONS(6046), 1, + anon_sym_LBRACK, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(12164), 1, + ACTIONS(11751), 1, anon_sym_COMMA, - STATE(2856), 1, + STATE(2318), 1, sym_parameter_list, - STATE(8406), 1, + STATE(7989), 1, aux_sym_type_definition_declarators_repeat1, - ACTIONS(12166), 2, + ACTIONS(11753), 2, anon_sym_SEMI, anon_sym___attribute__, - STATE(7924), 2, + STATE(7442), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [345467] = 5, + [308471] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11757), 1, + anon_sym_LBRACK, + STATE(8119), 1, + sym_gnu_asm_input_operand, + STATE(9618), 1, + sym_string_literal, + ACTIONS(11755), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(115), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [308495] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(4892), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10744), 1, + anon_sym_TILDE, + ACTIONS(11759), 1, + sym_identifier, + ACTIONS(11761), 1, + anon_sym_template, + STATE(3311), 1, + sym_semgrep_ellipsis, + STATE(8801), 1, + sym_operator_name, + STATE(3516), 3, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + [308525] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12168), 1, + ACTIONS(11763), 1, anon_sym_delete, - ACTIONS(12170), 1, + ACTIONS(11765), 1, anon_sym_new, - ACTIONS(12094), 3, + ACTIONS(11703), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(12092), 5, + ACTIONS(11701), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [345489] = 5, + [308547] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12172), 1, - anon_sym_delete, - ACTIONS(12174), 1, + ACTIONS(11707), 1, anon_sym_new, - ACTIONS(12094), 3, + ACTIONS(11767), 1, + anon_sym_delete, + ACTIONS(11703), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(12092), 5, + ACTIONS(11701), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [345511] = 7, + [308569] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6736), 1, - anon_sym_LBRACK, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - STATE(2856), 1, - sym_parameter_list, - STATE(7890), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6759), 4, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [345537] = 9, + ACTIONS(11737), 1, + anon_sym_new, + ACTIONS(11769), 1, + anon_sym_delete, + ACTIONS(11703), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(11701), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [308591] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(4972), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11087), 1, + ACTIONS(11771), 1, + anon_sym_delete, + ACTIONS(11773), 1, + anon_sym_new, + ACTIONS(11703), 3, anon_sym_TILDE, - ACTIONS(12176), 1, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(11701), 5, + anon_sym___based, sym_identifier, - ACTIONS(12178), 1, + anon_sym_decltype, anon_sym_template, - STATE(4278), 1, - sym_semgrep_ellipsis, - STATE(9254), 1, - sym_operator_name, - STATE(4526), 3, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - [345567] = 10, + anon_sym_operator, + [308613] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(11240), 1, + ACTIONS(10127), 1, sym_identifier, - STATE(4648), 1, - sym_qualified_type_identifier, - STATE(4736), 1, + STATE(3094), 1, sym_template_type, - STATE(7918), 1, + STATE(3098), 1, + sym_qualified_type_identifier, + STATE(7546), 1, sym_scope_resolution, - STATE(8374), 1, + STATE(8329), 1, sym_class_name, - STATE(9982), 2, + STATE(9605), 2, sym_decltype, sym_dependent_type_identifier, - [345599] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6736), 1, - anon_sym_LBRACK, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - STATE(2856), 1, - sym_parameter_list, - STATE(7924), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6777), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - [345625] = 6, + [308645] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11662), 1, + ACTIONS(11401), 1, anon_sym_LBRACK, - STATE(4697), 1, + STATE(4408), 1, sym_parameter_list, - STATE(7421), 1, + STATE(7104), 1, sym_function_declarator_seq, - ACTIONS(11406), 6, + ACTIONS(11235), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [345649] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12180), 1, - anon_sym_delete, - ACTIONS(12182), 1, - anon_sym_new, - ACTIONS(12094), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(12092), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [345671] = 6, + [308669] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11662), 1, + ACTIONS(11401), 1, anon_sym_LBRACK, - STATE(4697), 1, + STATE(4408), 1, sym_parameter_list, - STATE(7421), 1, + STATE(7104), 1, sym_function_declarator_seq, - ACTIONS(11449), 6, + ACTIONS(11241), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [345695] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6736), 1, - anon_sym_LBRACK, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - STATE(2856), 1, - sym_parameter_list, - STATE(7924), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6728), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - [345721] = 6, + [308693] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11662), 1, - anon_sym_LBRACK, - STATE(4697), 1, - sym_parameter_list, - STATE(7421), 1, - sym_function_declarator_seq, - ACTIONS(11451), 6, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(3199), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [345745] = 6, + ACTIONS(10539), 1, + anon_sym_TILDE, + ACTIONS(11775), 1, + sym_identifier, + ACTIONS(11777), 1, + anon_sym_template, + STATE(2980), 1, + sym_semgrep_ellipsis, + STATE(9052), 1, + sym_operator_name, + STATE(2533), 3, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + [308723] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11662), 1, - anon_sym_LBRACK, - STATE(4697), 1, - sym_parameter_list, - STATE(7421), 1, - sym_function_declarator_seq, - ACTIONS(11457), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [345769] = 6, + ACTIONS(11779), 1, + anon_sym_delete, + ACTIONS(11781), 1, + anon_sym_new, + ACTIONS(11703), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(11701), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [308745] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11662), 1, + ACTIONS(11401), 1, anon_sym_LBRACK, - STATE(4697), 1, + STATE(4408), 1, sym_parameter_list, - STATE(7421), 1, + STATE(7104), 1, sym_function_declarator_seq, - ACTIONS(11463), 6, + ACTIONS(11243), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [345793] = 6, + [308769] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11662), 1, + ACTIONS(11401), 1, anon_sym_LBRACK, - STATE(4697), 1, + STATE(4408), 1, sym_parameter_list, - STATE(7421), 1, + STATE(7104), 1, sym_function_declarator_seq, - ACTIONS(11465), 6, + ACTIONS(11247), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [345817] = 6, + [308793] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11662), 1, - anon_sym_LBRACK, - STATE(4697), 1, - sym_parameter_list, - STATE(7421), 1, - sym_function_declarator_seq, - ACTIONS(11416), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [345841] = 5, + ACTIONS(11781), 1, + anon_sym_new, + ACTIONS(11783), 1, + anon_sym_delete, + ACTIONS(11703), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(11701), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [308815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7118), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(10562), 1, - anon_sym_LT, - STATE(7592), 1, - sym_template_argument_list, - ACTIONS(7116), 7, + ACTIONS(5400), 9, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - [345863] = 5, + anon_sym_COLON, + anon_sym_try, + [308833] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12170), 1, - anon_sym_new, - ACTIONS(12184), 1, + ACTIONS(11785), 1, anon_sym_delete, - ACTIONS(12094), 3, + ACTIONS(11787), 1, + anon_sym_new, + ACTIONS(11703), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(12092), 5, + ACTIONS(11701), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [345885] = 9, + [308855] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(3662), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11173), 1, - anon_sym_TILDE, - ACTIONS(12118), 1, - sym_identifier, - ACTIONS(12120), 1, - anon_sym_template, - STATE(3851), 1, - sym_semgrep_ellipsis, - STATE(9551), 1, - sym_operator_name, - STATE(4108), 3, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - [345915] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2259), 1, + ACTIONS(2257), 1, anon_sym_operator, - ACTIONS(5050), 1, + ACTIONS(5068), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11097), 1, + ACTIONS(10670), 1, anon_sym_TILDE, - ACTIONS(12186), 1, + ACTIONS(11697), 1, sym_identifier, - ACTIONS(12188), 1, + ACTIONS(11699), 1, anon_sym_template, - STATE(3157), 1, + STATE(3528), 1, sym_semgrep_ellipsis, - STATE(9435), 1, + STATE(8740), 1, sym_operator_name, - STATE(3415), 3, + STATE(3710), 3, sym_template_method, sym_destructor_name, sym_dependent_field_identifier, - [345945] = 10, + [308885] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(11240), 1, - sym_identifier, - STATE(4648), 1, - sym_qualified_type_identifier, - STATE(4736), 1, - sym_template_type, - STATE(7918), 1, - sym_scope_resolution, - STATE(8219), 1, - sym_class_name, - STATE(9982), 2, - sym_decltype, - sym_dependent_type_identifier, - [345977] = 5, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(10611), 1, + anon_sym_LBRACK, + ACTIONS(11789), 1, + anon_sym_EQ, + STATE(4183), 1, + sym_parameter_list, + STATE(7260), 1, + sym_function_declarator_seq, + ACTIONS(11715), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(7162), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [308915] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12190), 1, + ACTIONS(11791), 1, anon_sym_delete, - ACTIONS(12192), 1, + ACTIONS(11793), 1, anon_sym_new, - ACTIONS(12094), 3, + ACTIONS(11703), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(12092), 5, + ACTIONS(11701), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [345999] = 5, + [308937] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3899), 1, + anon_sym_LBRACE, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(10611), 1, + anon_sym_LBRACK, + ACTIONS(11795), 1, + anon_sym_EQ, + STATE(4183), 1, + sym_parameter_list, + STATE(7260), 1, + sym_function_declarator_seq, + STATE(9541), 1, + sym_initializer_list, + STATE(7162), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [308969] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12194), 1, + ACTIONS(11797), 1, anon_sym_delete, - ACTIONS(12196), 1, + ACTIONS(11799), 1, anon_sym_new, - ACTIONS(12094), 3, + ACTIONS(11703), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(12092), 5, + ACTIONS(11701), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [346021] = 5, + [308991] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12124), 1, + ACTIONS(11737), 1, anon_sym_new, - ACTIONS(12198), 1, + ACTIONS(11801), 1, anon_sym_delete, - ACTIONS(12094), 3, + ACTIONS(11703), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(12092), 5, + ACTIONS(11701), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [346043] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6736), 1, - anon_sym_LBRACK, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - STATE(2856), 1, - sym_parameter_list, - STATE(7924), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6746), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - [346069] = 3, + [309013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(5479), 9, + ACTIONS(5427), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -611240,3401 +578099,3341 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [346087] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12200), 1, - anon_sym_delete, - ACTIONS(12202), 1, - anon_sym_new, - ACTIONS(12094), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(12092), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [346109] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(3131), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11015), 1, - anon_sym_TILDE, - ACTIONS(12204), 1, - sym_identifier, - ACTIONS(12206), 1, - anon_sym_template, - STATE(3152), 1, - sym_semgrep_ellipsis, - STATE(9169), 1, - sym_operator_name, - STATE(3155), 3, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - [346139] = 9, + [309031] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(12208), 1, + ACTIONS(11803), 1, sym_identifier, - ACTIONS(12210), 1, + ACTIONS(11805), 1, anon_sym_template, - STATE(3042), 1, + STATE(2669), 1, sym_qualified_type_identifier, - STATE(7873), 1, + STATE(7516), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_decltype, - STATE(2961), 2, + STATE(2638), 2, sym_template_type, sym_dependent_type_identifier, - [346168] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7588), 1, - anon_sym_LT, - STATE(3094), 1, - sym_template_argument_list, - ACTIONS(5469), 2, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(5462), 4, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [346191] = 9, + [309060] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(12212), 1, + ACTIONS(11807), 1, sym_identifier, - ACTIONS(12214), 1, + ACTIONS(11809), 1, anon_sym_template, - STATE(5025), 1, + STATE(2561), 1, sym_qualified_type_identifier, - STATE(7875), 1, + STATE(7517), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_decltype, - STATE(4941), 2, + STATE(2195), 2, sym_template_type, sym_dependent_type_identifier, - [346220] = 9, + [309089] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(12216), 1, - sym_identifier, - ACTIONS(12218), 1, - anon_sym_template, - STATE(3210), 1, - sym_qualified_type_identifier, - STATE(7876), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_decltype, - STATE(2967), 2, - sym_template_type, - sym_dependent_type_identifier, - [346249] = 3, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11401), 1, + anon_sym_LBRACK, + STATE(4458), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + ACTIONS(11251), 5, + anon_sym_RPAREN, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [309112] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4380), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4378), 7, - sym_identifier, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - [346266] = 9, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11401), 1, + anon_sym_LBRACK, + STATE(4458), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + ACTIONS(11253), 5, + anon_sym_RPAREN, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [309135] = 8, ACTIONS(3), 1, sym_comment, + ACTIONS(1534), 1, + anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(12218), 1, - anon_sym_template, - ACTIONS(12220), 1, + ACTIONS(11811), 1, sym_identifier, - STATE(3210), 1, - sym_qualified_type_identifier, - STATE(7878), 1, + STATE(6785), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9879), 1, + sym_qualified_identifier, + STATE(9605), 3, sym_decltype, - STATE(2967), 2, sym_template_type, sym_dependent_type_identifier, - [346295] = 9, + [309162] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(12222), 1, + ACTIONS(11813), 1, sym_identifier, - ACTIONS(12224), 1, + ACTIONS(11815), 1, anon_sym_template, - STATE(4461), 1, + STATE(3048), 1, sym_qualified_type_identifier, - STATE(7879), 1, + STATE(7521), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_decltype, - STATE(4444), 2, + STATE(3100), 2, sym_template_type, sym_dependent_type_identifier, - [346324] = 3, + [309191] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4384), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4382), 7, + ACTIONS(11817), 1, sym_identifier, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - [346341] = 9, + ACTIONS(11821), 1, + sym_system_lib_string, + STATE(9820), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(11819), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [309212] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(12226), 1, - sym_identifier, - ACTIONS(12228), 1, - anon_sym_template, - STATE(4694), 1, - sym_qualified_type_identifier, - STATE(7881), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_decltype, - STATE(4693), 2, - sym_template_type, - sym_dependent_type_identifier, - [346370] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(11805), 1, anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(12230), 1, + ACTIONS(11823), 1, sym_identifier, - STATE(7193), 1, + STATE(2669), 1, + sym_qualified_type_identifier, + STATE(7523), 1, sym_scope_resolution, - STATE(9735), 1, - sym_qualified_identifier, - STATE(9982), 3, + STATE(9605), 1, sym_decltype, + STATE(2638), 2, sym_template_type, sym_dependent_type_identifier, - [346397] = 9, + [309241] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(12232), 1, + ACTIONS(11825), 1, sym_identifier, - ACTIONS(12234), 1, + ACTIONS(11827), 1, anon_sym_template, - STATE(5395), 1, + STATE(2669), 1, sym_qualified_type_identifier, - STATE(7883), 1, + STATE(7524), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_decltype, - STATE(5199), 2, + STATE(2638), 2, sym_template_type, sym_dependent_type_identifier, - [346426] = 9, + [309270] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(12236), 1, + ACTIONS(11829), 1, sym_identifier, - ACTIONS(12238), 1, + ACTIONS(11831), 1, anon_sym_template, - STATE(5255), 1, + STATE(2960), 1, sym_qualified_type_identifier, - STATE(7884), 1, + STATE(7525), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_decltype, - STATE(5167), 2, + STATE(2844), 2, sym_template_type, sym_dependent_type_identifier, - [346455] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12094), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(12092), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [346472] = 9, + [309299] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(12240), 1, + ACTIONS(11833), 1, sym_identifier, - ACTIONS(12242), 1, + ACTIONS(11835), 1, anon_sym_template, - STATE(2569), 1, + STATE(4861), 1, sym_qualified_type_identifier, - STATE(7886), 1, + STATE(7526), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_decltype, - STATE(2500), 2, + STATE(3100), 2, sym_template_type, sym_dependent_type_identifier, - [346501] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12244), 1, - sym_identifier, - ACTIONS(12248), 1, - sym_system_lib_string, - STATE(10540), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(12246), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [346522] = 5, + [309328] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12250), 1, - sym_identifier, - ACTIONS(12252), 1, - sym_system_lib_string, - STATE(9825), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(12246), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [346543] = 9, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11237), 1, + anon_sym_LBRACK, + STATE(4560), 1, + sym_parameter_list, + STATE(6862), 1, + sym_function_declarator_seq, + ACTIONS(11235), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [309351] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(12254), 1, + ACTIONS(11813), 1, sym_identifier, - ACTIONS(12256), 1, + ACTIONS(11815), 1, anon_sym_template, - STATE(2501), 1, + STATE(3105), 1, sym_qualified_type_identifier, - STATE(7889), 1, + STATE(7528), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_decltype, - STATE(2477), 2, + STATE(3100), 2, sym_template_type, sym_dependent_type_identifier, - [346572] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6884), 1, - anon_sym_LBRACK, - STATE(7724), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6882), 5, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [346593] = 9, + [309380] = 8, ACTIONS(3), 1, sym_comment, + ACTIONS(1534), 1, + anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(12258), 1, + ACTIONS(11837), 1, sym_identifier, - ACTIONS(12260), 1, - anon_sym_template, - STATE(5487), 1, - sym_qualified_type_identifier, - STATE(7891), 1, + STATE(6785), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9287), 1, + sym_qualified_identifier, + STATE(9605), 3, sym_decltype, - STATE(5440), 2, sym_template_type, sym_dependent_type_identifier, - [346622] = 6, + [309407] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7588), 1, - anon_sym_LT, - STATE(3094), 1, - sym_template_argument_list, - ACTIONS(8637), 2, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(5488), 4, - anon_sym_RPAREN, + ACTIONS(10418), 1, anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(11237), 1, + anon_sym_LBRACK, + STATE(4560), 1, + sym_parameter_list, + STATE(6862), 1, + sym_function_declarator_seq, + ACTIONS(11241), 5, anon_sym_LBRACK_LBRACK, - [346645] = 9, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [309430] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(12262), 1, - sym_identifier, - ACTIONS(12264), 1, - anon_sym_template, - STATE(2948), 1, - sym_qualified_type_identifier, - STATE(7893), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_decltype, - STATE(2862), 2, - sym_template_type, - sym_dependent_type_identifier, - [346674] = 6, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11237), 1, + anon_sym_LBRACK, + STATE(4560), 1, + sym_parameter_list, + STATE(6862), 1, + sym_function_declarator_seq, + ACTIONS(11243), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [309453] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11662), 1, + ACTIONS(11237), 1, anon_sym_LBRACK, - STATE(4268), 1, + STATE(4560), 1, sym_parameter_list, - STATE(7421), 1, + STATE(6862), 1, sym_function_declarator_seq, - ACTIONS(11416), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(11247), 5, + anon_sym_LBRACK_LBRACK, anon_sym_COLON, - sym_semgrep_metavar, - [346697] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [309476] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11662), 1, + ACTIONS(11237), 1, anon_sym_LBRACK, - STATE(4268), 1, + STATE(4560), 1, sym_parameter_list, - STATE(7421), 1, + STATE(6862), 1, sym_function_declarator_seq, - ACTIONS(11465), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(11249), 5, + anon_sym_LBRACK_LBRACK, anon_sym_COLON, - sym_semgrep_metavar, - [346720] = 9, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [309499] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(12266), 1, - sym_identifier, - ACTIONS(12268), 1, - anon_sym_template, - STATE(6710), 1, - sym_qualified_type_identifier, - STATE(7896), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_decltype, - STATE(6596), 2, - sym_template_type, - sym_dependent_type_identifier, - [346749] = 7, + ACTIONS(11841), 1, + anon_sym_AMP, + ACTIONS(11843), 2, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(11839), 6, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + [309518] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6736), 1, - anon_sym_LBRACK, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - STATE(2856), 1, + ACTIONS(11237), 1, + anon_sym_LBRACK, + STATE(4560), 1, sym_parameter_list, - STATE(7924), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(12270), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [346774] = 9, + STATE(6862), 1, + sym_function_declarator_seq, + ACTIONS(11251), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [309541] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(12272), 1, - sym_identifier, - ACTIONS(12274), 1, - anon_sym_template, - STATE(3421), 1, - sym_qualified_type_identifier, - STATE(7898), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_decltype, - STATE(3244), 2, - sym_template_type, - sym_dependent_type_identifier, - [346803] = 8, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11237), 1, + anon_sym_LBRACK, + STATE(4560), 1, + sym_parameter_list, + STATE(6862), 1, + sym_function_declarator_seq, + ACTIONS(11253), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [309564] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(12276), 1, + ACTIONS(11845), 1, sym_identifier, - STATE(7193), 1, + STATE(6785), 1, sym_scope_resolution, - STATE(10339), 1, + STATE(9457), 1, sym_qualified_identifier, - STATE(9982), 3, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [346830] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11662), 1, - anon_sym_LBRACK, - STATE(4268), 1, - sym_parameter_list, - STATE(7421), 1, - sym_function_declarator_seq, - ACTIONS(11406), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - sym_semgrep_metavar, - [346853] = 6, + [309591] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11662), 1, + ACTIONS(11401), 1, anon_sym_LBRACK, - STATE(4268), 1, + STATE(4458), 1, sym_parameter_list, - STATE(7421), 1, + STATE(7104), 1, sym_function_declarator_seq, - ACTIONS(11457), 5, - anon_sym_COMMA, + ACTIONS(11235), 5, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, sym_semgrep_metavar, - [346876] = 9, + [309614] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(12242), 1, - anon_sym_template, - ACTIONS(12278), 1, + ACTIONS(11847), 1, sym_identifier, - STATE(2569), 1, + ACTIONS(11849), 1, + anon_sym_template, + STATE(5754), 1, sym_qualified_type_identifier, - STATE(7902), 1, + STATE(7539), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_decltype, - STATE(2500), 2, + STATE(5726), 2, sym_template_type, sym_dependent_type_identifier, - [346905] = 9, + [309643] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(12222), 1, + ACTIONS(11851), 1, sym_identifier, - ACTIONS(12224), 1, - anon_sym_template, - STATE(5380), 1, - sym_qualified_type_identifier, - STATE(7903), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_decltype, - STATE(4444), 2, - sym_template_type, - sym_dependent_type_identifier, - [346934] = 9, + ACTIONS(11853), 1, + sym_system_lib_string, + STATE(9548), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(11819), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [309664] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(12280), 1, + ACTIONS(11855), 1, sym_identifier, - ACTIONS(12282), 1, + ACTIONS(11857), 1, anon_sym_template, - STATE(4511), 1, + STATE(4305), 1, sym_qualified_type_identifier, - STATE(7904), 1, + STATE(7541), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_decltype, - STATE(4276), 2, + STATE(4206), 2, sym_template_type, sym_dependent_type_identifier, - [346963] = 9, + [309693] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(12284), 1, + ACTIONS(11859), 1, sym_identifier, - ACTIONS(12286), 1, + ACTIONS(11861), 1, anon_sym_template, - STATE(4781), 1, + STATE(3192), 1, sym_qualified_type_identifier, - STATE(7905), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_decltype, - STATE(4662), 2, - sym_template_type, - sym_dependent_type_identifier, - [346992] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(12288), 1, - sym_identifier, - STATE(7193), 1, + STATE(7542), 1, sym_scope_resolution, - STATE(9972), 1, - sym_qualified_identifier, - STATE(9982), 3, + STATE(9605), 1, sym_decltype, + STATE(3058), 2, sym_template_type, sym_dependent_type_identifier, - [347019] = 8, + [309722] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(12290), 1, + ACTIONS(11863), 1, sym_identifier, - STATE(7193), 1, + STATE(6785), 1, sym_scope_resolution, - STATE(10006), 1, + STATE(9161), 1, sym_qualified_identifier, - STATE(9982), 3, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [347046] = 9, + [309749] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(12292), 1, + ACTIONS(11865), 1, sym_identifier, - ACTIONS(12294), 1, + ACTIONS(11867), 1, anon_sym_template, - STATE(4607), 1, + STATE(2884), 1, sym_qualified_type_identifier, - STATE(7908), 1, + STATE(7544), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_decltype, - STATE(4491), 2, + STATE(2820), 2, sym_template_type, sym_dependent_type_identifier, - [347075] = 9, + [309778] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(12296), 1, + ACTIONS(11869), 1, sym_identifier, - ACTIONS(12298), 1, + ACTIONS(11871), 1, anon_sym_template, - STATE(3437), 1, + STATE(4482), 1, sym_qualified_type_identifier, - STATE(7909), 1, + STATE(7545), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_decltype, - STATE(3215), 2, + STATE(4386), 2, sym_template_type, sym_dependent_type_identifier, - [347104] = 9, + [309807] = 9, ACTIONS(3), 1, sym_comment, + ACTIONS(1534), 1, + anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(12300), 1, + ACTIONS(11873), 1, sym_identifier, - ACTIONS(12302), 1, - anon_sym_template, - STATE(3095), 1, + STATE(3105), 1, sym_qualified_type_identifier, - STATE(7910), 1, + STATE(7546), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_decltype, - STATE(3078), 2, + STATE(3100), 2, sym_template_type, sym_dependent_type_identifier, - [347133] = 9, + [309836] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(12304), 1, + ACTIONS(11875), 1, sym_identifier, - ACTIONS(12306), 1, + ACTIONS(11877), 1, anon_sym_template, - STATE(3627), 1, + STATE(2762), 1, sym_qualified_type_identifier, - STATE(7911), 1, + STATE(7547), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_decltype, - STATE(3518), 2, + STATE(2679), 2, sym_template_type, sym_dependent_type_identifier, - [347162] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12310), 1, - anon_sym_AMP, - ACTIONS(12312), 2, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(12308), 6, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - [347181] = 5, + [309865] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12314), 1, + ACTIONS(11879), 1, sym_identifier, - ACTIONS(12316), 1, + ACTIONS(11881), 1, sym_system_lib_string, - STATE(9934), 2, + STATE(9606), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(12246), 5, + ACTIONS(11819), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [347202] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12320), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(12318), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [347219] = 9, + [309886] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(12322), 1, + ACTIONS(11883), 1, sym_identifier, - ACTIONS(12324), 1, + ACTIONS(11885), 1, anon_sym_template, - STATE(2952), 1, + STATE(2123), 1, sym_qualified_type_identifier, - STATE(7915), 1, + STATE(7549), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_decltype, - STATE(2756), 2, + STATE(2046), 2, sym_template_type, sym_dependent_type_identifier, - [347248] = 9, + [309915] = 8, ACTIONS(3), 1, sym_comment, + ACTIONS(1534), 1, + anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(12326), 1, + ACTIONS(11887), 1, sym_identifier, - ACTIONS(12328), 1, - anon_sym_template, - STATE(5059), 1, - sym_qualified_type_identifier, - STATE(7916), 1, + STATE(6785), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9696), 1, + sym_qualified_identifier, + STATE(9605), 3, sym_decltype, - STATE(4872), 2, sym_template_type, sym_dependent_type_identifier, - [347277] = 9, + [309942] = 9, ACTIONS(3), 1, sym_comment, + ACTIONS(1534), 1, + anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(12330), 1, + ACTIONS(11873), 1, sym_identifier, - ACTIONS(12332), 1, - anon_sym_template, - STATE(3166), 1, + STATE(3048), 1, sym_qualified_type_identifier, - STATE(7917), 1, + STATE(7551), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_decltype, - STATE(2978), 2, + STATE(3100), 2, sym_template_type, sym_dependent_type_identifier, - [347306] = 9, + [309971] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(12334), 1, + ACTIONS(11889), 1, sym_identifier, - STATE(4694), 1, + ACTIONS(11891), 1, + anon_sym_template, + STATE(2992), 1, sym_qualified_type_identifier, - STATE(7918), 1, + STATE(7552), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_decltype, - STATE(4693), 2, + STATE(2917), 2, sym_template_type, sym_dependent_type_identifier, - [347335] = 9, + [310000] = 8, ACTIONS(3), 1, sym_comment, + ACTIONS(1534), 1, + anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(12336), 1, + ACTIONS(11893), 1, sym_identifier, - ACTIONS(12338), 1, - anon_sym_template, - STATE(2637), 1, - sym_qualified_type_identifier, - STATE(7919), 1, + STATE(6785), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9263), 1, + sym_qualified_identifier, + STATE(9605), 3, sym_decltype, - STATE(2528), 2, sym_template_type, sym_dependent_type_identifier, - [347364] = 9, + [310027] = 8, ACTIONS(3), 1, sym_comment, + ACTIONS(1534), 1, + anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(12340), 1, + ACTIONS(11895), 1, sym_identifier, - ACTIONS(12342), 1, - anon_sym_template, - STATE(6280), 1, - sym_qualified_type_identifier, - STATE(7920), 1, + STATE(6785), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9290), 1, + sym_qualified_identifier, + STATE(9605), 3, sym_decltype, - STATE(6191), 2, sym_template_type, sym_dependent_type_identifier, - [347393] = 6, + [310054] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11662), 1, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(7517), 1, + anon_sym_LT, + STATE(3089), 1, + sym_template_argument_list, + ACTIONS(5383), 2, anon_sym_LBRACK, - STATE(4268), 1, - sym_parameter_list, - STATE(7421), 1, - sym_function_declarator_seq, - ACTIONS(11463), 5, - anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5376), 4, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_COLON, - sym_semgrep_metavar, - [347416] = 9, + anon_sym_LBRACK_LBRACK, + [310077] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(12344), 1, + ACTIONS(11897), 1, sym_identifier, - ACTIONS(12346), 1, + ACTIONS(11899), 1, anon_sym_template, - STATE(4802), 1, + STATE(3041), 1, sym_qualified_type_identifier, - STATE(7922), 1, + STATE(7556), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_decltype, - STATE(4713), 2, + STATE(2959), 2, sym_template_type, sym_dependent_type_identifier, - [347445] = 9, + [310106] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(12348), 1, + ACTIONS(11901), 1, sym_identifier, - ACTIONS(12350), 1, + ACTIONS(11903), 1, anon_sym_template, - STATE(6771), 1, + STATE(2123), 1, sym_qualified_type_identifier, - STATE(7923), 1, + STATE(7557), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_decltype, - STATE(6728), 2, + STATE(2046), 2, sym_template_type, sym_dependent_type_identifier, - [347474] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6884), 1, - anon_sym_LBRACK, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - STATE(6903), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6882), 5, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - [347495] = 3, + [310135] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4384), 3, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(4382), 6, - anon_sym_COLON, - sym_identifier, + ACTIONS(2313), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, + ACTIONS(3263), 1, + anon_sym_COLON_COLON, + ACTIONS(11899), 1, anon_sym_template, - [347512] = 9, + ACTIONS(11905), 1, + sym_identifier, + STATE(3041), 1, + sym_qualified_type_identifier, + STATE(7558), 1, + sym_scope_resolution, + STATE(9605), 1, + sym_decltype, + STATE(2959), 2, + sym_template_type, + sym_dependent_type_identifier, + [310164] = 8, ACTIONS(3), 1, sym_comment, + ACTIONS(1534), 1, + anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(12226), 1, + ACTIONS(11907), 1, sym_identifier, - ACTIONS(12228), 1, - anon_sym_template, - STATE(5547), 1, - sym_qualified_type_identifier, - STATE(7926), 1, + STATE(6785), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9249), 1, + sym_qualified_identifier, + STATE(9605), 3, sym_decltype, - STATE(4693), 2, sym_template_type, sym_dependent_type_identifier, - [347541] = 3, + [310191] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4380), 3, - anon_sym_COLON_COLON, + ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(4378), 6, - anon_sym_COLON, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - [347558] = 3, + ACTIONS(6046), 1, + anon_sym_LBRACK, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + STATE(2318), 1, + sym_parameter_list, + STATE(7442), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11909), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [310216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8404), 3, + ACTIONS(11913), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(8402), 6, - anon_sym_COLON, + ACTIONS(11911), 5, + anon_sym___based, sym_identifier, anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [310233] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11401), 1, + anon_sym_LBRACK, + STATE(4458), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + ACTIONS(11241), 5, + anon_sym_RPAREN, anon_sym_final, anon_sym_override, - anon_sym_template, - [347575] = 5, + anon_sym_requires, + sym_semgrep_metavar, + [310256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12352), 1, + ACTIONS(11703), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(11701), 5, + anon_sym___based, sym_identifier, - ACTIONS(12354), 1, - sym_system_lib_string, - STATE(10457), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(12246), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [347596] = 6, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [310273] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11662), 1, + ACTIONS(11401), 1, anon_sym_LBRACK, - STATE(4268), 1, + STATE(4458), 1, sym_parameter_list, - STATE(7421), 1, + STATE(7104), 1, sym_function_declarator_seq, - ACTIONS(11451), 5, - anon_sym_COMMA, + ACTIONS(11243), 5, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, sym_semgrep_metavar, - [347619] = 8, + [310296] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(12356), 1, + ACTIONS(11915), 1, sym_identifier, - STATE(7193), 1, + ACTIONS(11917), 1, + anon_sym_template, + STATE(2790), 1, + sym_qualified_type_identifier, + STATE(7565), 1, sym_scope_resolution, - STATE(10101), 1, - sym_qualified_identifier, - STATE(9982), 3, + STATE(9605), 1, sym_decltype, + STATE(2817), 2, sym_template_type, sym_dependent_type_identifier, - [347646] = 8, + [310325] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(4784), 1, anon_sym_COLON_COLON, - ACTIONS(12358), 1, - sym_identifier, - STATE(7193), 1, - sym_scope_resolution, - STATE(10320), 1, - sym_qualified_identifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [347673] = 9, + ACTIONS(7517), 1, + anon_sym_LT, + STATE(3089), 1, + sym_template_argument_list, + ACTIONS(8341), 2, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(5409), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [310348] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(12360), 1, - sym_identifier, - ACTIONS(12362), 1, - anon_sym_template, - STATE(2724), 1, - sym_qualified_type_identifier, - STATE(7933), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_decltype, - STATE(2641), 2, - sym_template_type, - sym_dependent_type_identifier, - [347702] = 8, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11401), 1, + anon_sym_LBRACK, + STATE(4458), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + ACTIONS(11247), 5, + anon_sym_RPAREN, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [310371] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, + ACTIONS(1534), 1, anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(12364), 1, + ACTIONS(11919), 1, sym_identifier, - STATE(7193), 1, + STATE(6785), 1, sym_scope_resolution, - STATE(9883), 1, + STATE(9518), 1, sym_qualified_identifier, - STATE(9982), 3, + STATE(9605), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [347729] = 9, + [310398] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(12366), 1, + ACTIONS(11921), 1, sym_identifier, - ACTIONS(12368), 1, + ACTIONS(11923), 1, anon_sym_template, - STATE(2810), 1, + STATE(3105), 1, sym_qualified_type_identifier, - STATE(7935), 1, + STATE(7569), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_decltype, - STATE(2770), 2, + STATE(3100), 2, sym_template_type, sym_dependent_type_identifier, - [347758] = 9, + [310427] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11401), 1, + anon_sym_LBRACK, + STATE(4458), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + ACTIONS(11249), 5, + anon_sym_RPAREN, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + sym_semgrep_metavar, + [310450] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(12370), 1, + ACTIONS(11833), 1, sym_identifier, - ACTIONS(12372), 1, + ACTIONS(11835), 1, anon_sym_template, - STATE(2692), 1, + STATE(3105), 1, sym_qualified_type_identifier, - STATE(7936), 1, + STATE(7571), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_decltype, - STATE(2560), 2, + STATE(3100), 2, sym_template_type, sym_dependent_type_identifier, - [347787] = 9, + [310479] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(12374), 1, + ACTIONS(11925), 1, sym_identifier, - ACTIONS(12376), 1, + ACTIONS(11927), 1, anon_sym_template, - STATE(2462), 1, + STATE(3048), 1, sym_qualified_type_identifier, - STATE(7937), 1, + STATE(7572), 1, sym_scope_resolution, - STATE(9982), 1, + STATE(9605), 1, sym_decltype, - STATE(2379), 2, + STATE(2195), 2, sym_template_type, sym_dependent_type_identifier, - [347816] = 8, + [310508] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11929), 1, + sym_identifier, + ACTIONS(11931), 1, + sym_system_lib_string, + STATE(9527), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(11819), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [310529] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, ACTIONS(2313), 1, anon_sym_decltype, - ACTIONS(3716), 1, + ACTIONS(3263), 1, anon_sym_COLON_COLON, - ACTIONS(12378), 1, + ACTIONS(11933), 1, sym_identifier, - STATE(7193), 1, + ACTIONS(11935), 1, + anon_sym_template, + STATE(4801), 1, + sym_qualified_type_identifier, + STATE(7574), 1, sym_scope_resolution, - STATE(9977), 1, - sym_qualified_identifier, - STATE(9982), 3, + STATE(9605), 1, sym_decltype, + STATE(4762), 2, sym_template_type, sym_dependent_type_identifier, - [347843] = 5, + [310558] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12380), 1, + ACTIONS(11937), 1, sym_identifier, - ACTIONS(12382), 1, + ACTIONS(11939), 1, sym_system_lib_string, - STATE(10008), 2, + STATE(9293), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(12246), 5, + ACTIONS(11819), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [347864] = 8, + [310579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - anon_sym_template, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(12384), 1, + ACTIONS(11943), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACE, + sym_semgrep_metavar, + ACTIONS(11941), 5, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, sym_identifier, - STATE(7193), 1, - sym_scope_resolution, - STATE(10209), 1, - sym_qualified_identifier, - STATE(9982), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [347891] = 9, + [310595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(12386), 1, + ACTIONS(11947), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACE, + sym_semgrep_metavar, + ACTIONS(11945), 5, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, sym_identifier, - ACTIONS(12388), 1, - anon_sym_template, - STATE(2922), 1, - sym_qualified_type_identifier, - STATE(7941), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_decltype, - STATE(2751), 2, - sym_template_type, - sym_dependent_type_identifier, - [347920] = 9, + [310611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(12390), 1, + ACTIONS(11951), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACE, + sym_semgrep_metavar, + ACTIONS(11949), 5, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, sym_identifier, - ACTIONS(12392), 1, - anon_sym_template, - STATE(6838), 1, - sym_qualified_type_identifier, - STATE(7942), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_decltype, - STATE(6819), 2, - sym_template_type, - sym_dependent_type_identifier, - [347949] = 6, + [310627] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, + ACTIONS(11579), 1, + aux_sym_preproc_else_token1, + ACTIONS(11587), 1, + sym_identifier, + ACTIONS(11953), 1, + aux_sym_preproc_if_token2, + ACTIONS(11955), 1, + aux_sym_preproc_elif_token1, + STATE(7729), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(9127), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [310651] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11662), 1, + ACTIONS(10424), 1, anon_sym_LBRACK, - STATE(4268), 1, + ACTIONS(11957), 1, + anon_sym_RPAREN, + STATE(4316), 1, sym_parameter_list, - STATE(7421), 1, + STATE(7456), 1, sym_function_declarator_seq, - ACTIONS(11449), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - sym_semgrep_metavar, - [347972] = 9, + STATE(7763), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [310677] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2313), 1, - anon_sym_decltype, - ACTIONS(3716), 1, - anon_sym_COLON_COLON, - ACTIONS(12394), 1, - sym_identifier, - ACTIONS(12396), 1, - anon_sym_template, - STATE(5213), 1, - sym_qualified_type_identifier, - STATE(7944), 1, - sym_scope_resolution, - STATE(9982), 1, - sym_decltype, - STATE(5150), 2, - sym_template_type, - sym_dependent_type_identifier, - [348001] = 8, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11401), 1, + anon_sym_LBRACK, + STATE(4564), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + ACTIONS(11251), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [310699] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(10814), 1, + ACTIONS(10611), 1, anon_sym_LBRACK, - ACTIONS(12398), 1, - anon_sym_RPAREN, - STATE(3864), 1, + ACTIONS(11959), 1, + anon_sym_SEMI, + STATE(4316), 1, sym_parameter_list, - STATE(7807), 1, + STATE(7260), 1, sym_function_declarator_seq, - STATE(8080), 2, + STATE(7162), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [348027] = 8, + [310725] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7588), 1, - anon_sym_LT, - ACTIONS(12400), 1, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(10611), 1, + anon_sym_LBRACK, + ACTIONS(11961), 1, anon_sym_SEMI, - ACTIONS(12402), 1, - anon_sym_EQ, - STATE(6753), 1, - sym_template_argument_list, - STATE(8534), 2, + STATE(4316), 1, + sym_parameter_list, + STATE(7260), 1, + sym_function_declarator_seq, + STATE(7162), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [348053] = 8, + [310751] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(12026), 1, - aux_sym_preproc_else_token1, - ACTIONS(12404), 1, - aux_sym_preproc_if_token2, - ACTIONS(12406), 1, - aux_sym_preproc_elif_token1, - STATE(8043), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(9859), 1, - sym_enumerator, - STATE(9873), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [348079] = 6, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(10611), 1, + anon_sym_LBRACK, + ACTIONS(11963), 1, + anon_sym_SEMI, + STATE(4316), 1, + sym_parameter_list, + STATE(7260), 1, + sym_function_declarator_seq, + STATE(7162), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [310777] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, + ACTIONS(4784), 1, anon_sym_COLON_COLON, - ACTIONS(7588), 1, - anon_sym_LT, - ACTIONS(8637), 1, + ACTIONS(5383), 1, anon_sym_LBRACK, - STATE(7592), 1, + ACTIONS(7517), 1, + anon_sym_LT, + STATE(7125), 1, sym_template_argument_list, - ACTIONS(5488), 4, + ACTIONS(5376), 4, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_try, - [348101] = 8, + [310799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7588), 1, - anon_sym_LT, - ACTIONS(12408), 1, - anon_sym_SEMI, - ACTIONS(12410), 1, - anon_sym_EQ, - STATE(6753), 1, - sym_template_argument_list, - STATE(8493), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [348127] = 8, + ACTIONS(11967), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACE, + sym_semgrep_metavar, + ACTIONS(11965), 5, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + sym_identifier, + [310815] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8098), 1, + ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11001), 1, + ACTIONS(10424), 1, anon_sym_LBRACK, - ACTIONS(11648), 1, - anon_sym_COLON, - STATE(3864), 1, + ACTIONS(11391), 1, + anon_sym_RPAREN, + STATE(4316), 1, sym_parameter_list, - STATE(7652), 1, + STATE(7456), 1, sym_function_declarator_seq, - STATE(7677), 2, + STATE(7763), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [348153] = 8, + [310841] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11001), 1, + ACTIONS(10611), 1, anon_sym_LBRACK, - ACTIONS(12412), 1, + ACTIONS(11969), 1, anon_sym_SEMI, - STATE(3864), 1, + STATE(4316), 1, sym_parameter_list, - STATE(7652), 1, + STATE(7260), 1, sym_function_declarator_seq, - STATE(7714), 2, + STATE(7162), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [348179] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(11986), 1, - aux_sym_preproc_if_token2, - ACTIONS(12026), 1, - aux_sym_preproc_else_token1, - ACTIONS(12406), 1, - aux_sym_preproc_elif_token1, - STATE(7997), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(9859), 1, - sym_enumerator, - STATE(10448), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [348205] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12416), 1, - aux_sym_preproc_elif_token1, - ACTIONS(12418), 1, - anon_sym_EQ, - ACTIONS(12414), 6, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [348223] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(11970), 1, - aux_sym_preproc_if_token2, - ACTIONS(12026), 1, - aux_sym_preproc_else_token1, - ACTIONS(12406), 1, - aux_sym_preproc_elif_token1, - STATE(7947), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(9859), 1, - sym_enumerator, - STATE(10638), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [348249] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11968), 1, - sym_identifier, - ACTIONS(12046), 1, - aux_sym_preproc_else_token1, - ACTIONS(12420), 1, - aux_sym_preproc_if_token2, - ACTIONS(12422), 1, - aux_sym_preproc_elif_token1, - STATE(7958), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(10653), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [348273] = 8, + [310867] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11001), 1, + ACTIONS(10424), 1, anon_sym_LBRACK, - ACTIONS(12424), 1, + ACTIONS(11403), 1, anon_sym_RPAREN, - STATE(3864), 1, + STATE(4316), 1, sym_parameter_list, - STATE(7652), 1, + STATE(7456), 1, sym_function_declarator_seq, - STATE(7714), 2, + STATE(7763), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [348299] = 8, + [310893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(11973), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACE, + sym_semgrep_metavar, + ACTIONS(11971), 5, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, sym_identifier, - ACTIONS(12011), 1, - aux_sym_preproc_if_token2, - ACTIONS(12026), 1, - aux_sym_preproc_else_token1, - ACTIONS(12406), 1, - aux_sym_preproc_elif_token1, - STATE(7999), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(9859), 1, - sym_enumerator, - STATE(9681), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [348325] = 7, + [310909] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11968), 1, - sym_identifier, - ACTIONS(12046), 1, - aux_sym_preproc_else_token1, - ACTIONS(12422), 1, - aux_sym_preproc_elif_token1, - ACTIONS(12426), 1, - aux_sym_preproc_if_token2, - STATE(8048), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(9882), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [348349] = 5, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(7517), 1, + anon_sym_LT, + ACTIONS(11975), 1, + anon_sym_SEMI, + ACTIONS(11977), 1, + anon_sym_EQ, + STATE(1833), 1, + sym_template_argument_list, + STATE(8147), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [310935] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12428), 1, - sym_identifier, - ACTIONS(12433), 1, - aux_sym_preproc_elif_token1, - STATE(7959), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - ACTIONS(12431), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [348369] = 8, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11401), 1, + anon_sym_LBRACK, + STATE(4564), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + ACTIONS(11253), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [310957] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11001), 1, + ACTIONS(11401), 1, anon_sym_LBRACK, - ACTIONS(12435), 1, - anon_sym_SEMI, - STATE(3864), 1, + STATE(4564), 1, sym_parameter_list, - STATE(7652), 1, + STATE(7104), 1, sym_function_declarator_seq, - STATE(7714), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [348395] = 7, + ACTIONS(11235), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [310979] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11968), 1, - sym_identifier, - ACTIONS(12046), 1, - aux_sym_preproc_else_token1, - ACTIONS(12422), 1, - aux_sym_preproc_elif_token1, - ACTIONS(12437), 1, - aux_sym_preproc_if_token2, - STATE(7967), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(10461), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [348419] = 8, + ACTIONS(11757), 1, + anon_sym_LBRACK, + STATE(8332), 1, + sym_gnu_asm_input_operand, + STATE(9618), 1, + sym_string_literal, + ACTIONS(115), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [310999] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8098), 1, + ACTIONS(8324), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11001), 1, + ACTIONS(10611), 1, anon_sym_LBRACK, - ACTIONS(11632), 1, + ACTIONS(11979), 1, anon_sym_COLON, - STATE(3864), 1, + STATE(4527), 1, sym_parameter_list, - STATE(7652), 1, + STATE(7260), 1, sym_function_declarator_seq, - STATE(7677), 2, + STATE(7318), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [348445] = 8, + [311025] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(10814), 1, + ACTIONS(10424), 1, anon_sym_LBRACK, - ACTIONS(11721), 1, + ACTIONS(11412), 1, anon_sym_RPAREN, - STATE(3864), 1, + STATE(4316), 1, sym_parameter_list, - STATE(7807), 1, + STATE(7456), 1, sym_function_declarator_seq, - STATE(8080), 2, + STATE(7763), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [348471] = 8, + [311051] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(10814), 1, + ACTIONS(10611), 1, anon_sym_LBRACK, - ACTIONS(11681), 1, - anon_sym_RPAREN, - STATE(3864), 1, + ACTIONS(11981), 1, + anon_sym_SEMI, + STATE(4316), 1, sym_parameter_list, - STATE(7807), 1, + STATE(7260), 1, sym_function_declarator_seq, - STATE(8080), 2, + STATE(7162), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [348497] = 8, + [311077] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(8324), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11001), 1, + ACTIONS(10611), 1, anon_sym_LBRACK, - ACTIONS(12439), 1, - anon_sym_SEMI, - STATE(3864), 1, + ACTIONS(11381), 1, + anon_sym_COLON, + STATE(4527), 1, sym_parameter_list, - STATE(7652), 1, + STATE(7260), 1, sym_function_declarator_seq, - STATE(7714), 2, + STATE(7318), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [348523] = 8, + [311103] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11623), 1, + sym_identifier, + ACTIONS(11627), 1, + aux_sym_preproc_else_token1, + ACTIONS(11983), 1, + aux_sym_preproc_if_token2, + ACTIONS(11985), 1, + aux_sym_preproc_elif_token1, + STATE(7713), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(9903), 1, + sym_enumerator, + STATE(9190), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + [311129] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11001), 1, + ACTIONS(10611), 1, anon_sym_LBRACK, - ACTIONS(12441), 1, + ACTIONS(11987), 1, anon_sym_SEMI, - STATE(3864), 1, + STATE(4316), 1, sym_parameter_list, - STATE(7652), 1, + STATE(7260), 1, sym_function_declarator_seq, - STATE(7714), 2, + STATE(7162), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [348549] = 7, + [311155] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11968), 1, - sym_identifier, - ACTIONS(12046), 1, + ACTIONS(11579), 1, aux_sym_preproc_else_token1, - ACTIONS(12422), 1, + ACTIONS(11587), 1, + sym_identifier, + ACTIONS(11955), 1, aux_sym_preproc_elif_token1, - ACTIONS(12443), 1, + ACTIONS(11989), 1, aux_sym_preproc_if_token2, - STATE(8048), 2, + STATE(7729), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(10225), 2, + STATE(9192), 2, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, - [348573] = 8, + [311179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7588), 1, - anon_sym_LT, - ACTIONS(12445), 1, - anon_sym_SEMI, - ACTIONS(12447), 1, - anon_sym_EQ, - STATE(6753), 1, - sym_template_argument_list, - STATE(8512), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [348599] = 8, + ACTIONS(11364), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACE, + sym_semgrep_metavar, + ACTIONS(11991), 5, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + sym_identifier, + [311195] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8098), 1, + ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11001), 1, + ACTIONS(10424), 1, anon_sym_LBRACK, - ACTIONS(11580), 1, - anon_sym_COLON, - STATE(3864), 1, + ACTIONS(11420), 1, + anon_sym_RPAREN, + STATE(4316), 1, sym_parameter_list, - STATE(7652), 1, + STATE(7456), 1, sym_function_declarator_seq, - STATE(7677), 2, + STATE(7763), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [348625] = 8, + [311221] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8098), 1, + ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11001), 1, - anon_sym_LBRACK, - ACTIONS(11636), 1, - anon_sym_COLON, - STATE(3864), 1, - sym_parameter_list, - STATE(7652), 1, - sym_function_declarator_seq, - STATE(7677), 2, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(7517), 1, + anon_sym_LT, + ACTIONS(11993), 1, + anon_sym_SEMI, + ACTIONS(11995), 1, + anon_sym_EQ, + STATE(1833), 1, + sym_template_argument_list, + STATE(8131), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [348651] = 5, + [311247] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(12102), 1, - anon_sym_LBRACK, - STATE(9056), 1, - sym_gnu_asm_output_operand, - STATE(10246), 1, - sym_string_literal, - ACTIONS(115), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [348671] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7118), 1, - anon_sym_LBRACK, - ACTIONS(7588), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(7517), 1, anon_sym_LT, - STATE(3094), 1, - sym_template_argument_list, - ACTIONS(7116), 5, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(11997), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [348691] = 8, + ACTIONS(11999), 1, + anon_sym_EQ, + STATE(1833), 1, + sym_template_argument_list, + STATE(8145), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [311273] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12003), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACE, + sym_semgrep_metavar, + ACTIONS(12001), 5, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + sym_identifier, + [311289] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12007), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACE, + sym_semgrep_metavar, + ACTIONS(12005), 5, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + sym_identifier, + [311305] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4848), 1, + ACTIONS(4784), 1, anon_sym_COLON_COLON, - ACTIONS(7588), 1, + ACTIONS(7517), 1, anon_sym_LT, - ACTIONS(12449), 1, + ACTIONS(12009), 1, anon_sym_SEMI, - ACTIONS(12451), 1, + ACTIONS(12011), 1, anon_sym_EQ, - STATE(6753), 1, + STATE(1833), 1, sym_template_argument_list, - STATE(8522), 2, + STATE(8156), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [348717] = 4, + [311331] = 3, ACTIONS(3), 1, sym_comment, - STATE(8203), 1, - sym_string_literal, - ACTIONS(12453), 2, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(115), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [348735] = 5, + ACTIONS(12015), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACE, + sym_semgrep_metavar, + ACTIONS(12013), 5, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + sym_identifier, + [311347] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(12128), 1, - anon_sym_LBRACK, - STATE(8607), 1, - sym_gnu_asm_input_operand, - STATE(9855), 1, - sym_string_literal, - ACTIONS(115), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [348755] = 8, + ACTIONS(11623), 1, + sym_identifier, + ACTIONS(11627), 1, + aux_sym_preproc_else_token1, + ACTIONS(11985), 1, + aux_sym_preproc_elif_token1, + ACTIONS(12017), 1, + aux_sym_preproc_if_token2, + STATE(7713), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(9903), 1, + sym_enumerator, + STATE(10084), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + [311373] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11579), 1, + aux_sym_preproc_else_token1, + ACTIONS(11587), 1, + sym_identifier, + ACTIONS(11955), 1, + aux_sym_preproc_elif_token1, + ACTIONS(12019), 1, + aux_sym_preproc_if_token2, + STATE(7648), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(9711), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [311397] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4848), 1, + ACTIONS(4784), 1, anon_sym_COLON_COLON, - ACTIONS(7588), 1, + ACTIONS(7517), 1, anon_sym_LT, - ACTIONS(12455), 1, + ACTIONS(12021), 1, anon_sym_SEMI, - ACTIONS(12457), 1, + ACTIONS(12023), 1, anon_sym_EQ, - STATE(6753), 1, + STATE(1833), 1, sym_template_argument_list, - STATE(8527), 2, + STATE(8040), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [348781] = 6, + [311423] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, + ACTIONS(11595), 1, + aux_sym_preproc_if_token2, + ACTIONS(11623), 1, + sym_identifier, + ACTIONS(11627), 1, + aux_sym_preproc_else_token1, + ACTIONS(11985), 1, + aux_sym_preproc_elif_token1, + STATE(7627), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(9903), 1, + sym_enumerator, + STATE(9318), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + [311449] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11597), 1, + aux_sym_preproc_if_token2, + ACTIONS(11623), 1, + sym_identifier, + ACTIONS(11627), 1, + aux_sym_preproc_else_token1, + ACTIONS(11985), 1, + aux_sym_preproc_elif_token1, + STATE(7599), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(9903), 1, + sym_enumerator, + STATE(9608), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + [311475] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11662), 1, + ACTIONS(10611), 1, anon_sym_LBRACK, - STATE(4027), 1, + ACTIONS(12025), 1, + anon_sym_SEMI, + STATE(4316), 1, sym_parameter_list, - STATE(7421), 1, + STATE(7260), 1, sym_function_declarator_seq, - ACTIONS(12459), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [348803] = 8, + STATE(7162), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [311501] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(10814), 1, + ACTIONS(10424), 1, anon_sym_LBRACK, - ACTIONS(11701), 1, + ACTIONS(11410), 1, anon_sym_RPAREN, - STATE(3864), 1, + STATE(4316), 1, sym_parameter_list, - STATE(7807), 1, + STATE(7456), 1, sym_function_declarator_seq, - STATE(8080), 2, + STATE(7763), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [348829] = 8, + [311527] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12007), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACE, + sym_semgrep_metavar, + ACTIONS(12005), 5, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + sym_identifier, + [311543] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8098), 1, + ACTIONS(7100), 1, + anon_sym_LBRACK, + ACTIONS(7517), 1, + anon_sym_LT, + STATE(3089), 1, + sym_template_argument_list, + ACTIONS(7098), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + anon_sym_COLON, + [311563] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12029), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACE, + sym_semgrep_metavar, + ACTIONS(12027), 5, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + sym_identifier, + [311579] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11001), 1, + ACTIONS(11401), 1, anon_sym_LBRACK, - ACTIONS(11626), 1, - anon_sym_COLON, - STATE(3864), 1, + STATE(3879), 1, sym_parameter_list, - STATE(7652), 1, + STATE(7104), 1, sym_function_declarator_seq, - STATE(7677), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [348855] = 8, + ACTIONS(12031), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [311601] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + ACTIONS(11623), 1, + sym_identifier, + ACTIONS(11627), 1, + aux_sym_preproc_else_token1, + ACTIONS(11985), 1, + aux_sym_preproc_elif_token1, + ACTIONS(12033), 1, + aux_sym_preproc_if_token2, + STATE(7713), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(9903), 1, + sym_enumerator, + STATE(9141), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + [311627] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(10814), 1, + ACTIONS(11401), 1, anon_sym_LBRACK, - ACTIONS(11664), 1, - anon_sym_RPAREN, - STATE(3864), 1, + STATE(4564), 1, sym_parameter_list, - STATE(7807), 1, + STATE(7104), 1, sym_function_declarator_seq, - STATE(8080), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [348881] = 8, + ACTIONS(11241), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [311649] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(8324), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11001), 1, + ACTIONS(10611), 1, anon_sym_LBRACK, - ACTIONS(12461), 1, - anon_sym_SEMI, - STATE(3864), 1, + ACTIONS(11324), 1, + anon_sym_COLON, + STATE(4527), 1, sym_parameter_list, - STATE(7652), 1, + STATE(7260), 1, sym_function_declarator_seq, - STATE(7714), 2, + STATE(7318), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [348907] = 8, + [311675] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11001), 1, + ACTIONS(11401), 1, anon_sym_LBRACK, - ACTIONS(12463), 1, - anon_sym_SEMI, - STATE(3864), 1, + STATE(4564), 1, sym_parameter_list, - STATE(7652), 1, + STATE(7104), 1, sym_function_declarator_seq, - STATE(7714), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [348933] = 8, + ACTIONS(11243), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [311697] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(7517), 1, + anon_sym_LT, + ACTIONS(12035), 1, + anon_sym_SEMI, + ACTIONS(12037), 1, + anon_sym_EQ, + STATE(1833), 1, + sym_template_argument_list, + STATE(8105), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [311723] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11001), 1, + ACTIONS(11401), 1, anon_sym_LBRACK, - ACTIONS(12465), 1, - anon_sym_SEMI, - STATE(3864), 1, + STATE(4564), 1, sym_parameter_list, - STATE(7652), 1, + STATE(7104), 1, sym_function_declarator_seq, - STATE(7714), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [348959] = 7, + ACTIONS(11247), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [311745] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11968), 1, + ACTIONS(11623), 1, sym_identifier, - ACTIONS(12046), 1, + ACTIONS(11627), 1, aux_sym_preproc_else_token1, - ACTIONS(12422), 1, + ACTIONS(11985), 1, aux_sym_preproc_elif_token1, - ACTIONS(12467), 1, + ACTIONS(12039), 1, aux_sym_preproc_if_token2, - STATE(8048), 2, + STATE(7713), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(9903), 1, sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(10557), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [348983] = 7, + STATE(9898), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + [311771] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11968), 1, - sym_identifier, - ACTIONS(12046), 1, + ACTIONS(11579), 1, aux_sym_preproc_else_token1, - ACTIONS(12422), 1, + ACTIONS(11587), 1, + sym_identifier, + ACTIONS(11955), 1, aux_sym_preproc_elif_token1, - ACTIONS(12469), 1, + ACTIONS(12041), 1, aux_sym_preproc_if_token2, - STATE(7988), 2, + STATE(7729), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(9694), 2, + STATE(9533), 2, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, - [349007] = 8, + [311795] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(11589), 1, + aux_sym_preproc_if_token2, + ACTIONS(11623), 1, sym_identifier, - ACTIONS(12026), 1, + ACTIONS(11627), 1, aux_sym_preproc_else_token1, - ACTIONS(12406), 1, + ACTIONS(11985), 1, aux_sym_preproc_elif_token1, - ACTIONS(12471), 1, - aux_sym_preproc_if_token2, - STATE(8043), 1, + STATE(7621), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(9859), 1, + STATE(9903), 1, sym_enumerator, - STATE(10526), 2, + STATE(9539), 2, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, - [349033] = 8, + [311821] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(7517), 1, + anon_sym_LT, + ACTIONS(12043), 1, + anon_sym_SEMI, + ACTIONS(12045), 1, + anon_sym_EQ, + STATE(1833), 1, + sym_template_argument_list, + STATE(8135), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [311847] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12047), 1, + sym_identifier, + ACTIONS(12052), 1, + aux_sym_preproc_elif_token1, + STATE(7631), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + ACTIONS(12050), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [311867] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(10814), 1, + ACTIONS(10611), 1, anon_sym_LBRACK, - ACTIONS(11719), 1, - anon_sym_RPAREN, - STATE(3864), 1, + ACTIONS(12054), 1, + anon_sym_SEMI, + STATE(4316), 1, sym_parameter_list, - STATE(7807), 1, + STATE(7260), 1, sym_function_declarator_seq, - STATE(8080), 2, + STATE(7162), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [349059] = 7, + [311893] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12056), 1, + sym_identifier, + ACTIONS(12061), 1, + aux_sym_preproc_elif_token1, + STATE(7633), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(9176), 1, + sym_enumerator, + ACTIONS(12059), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [311915] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11947), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACE, + sym_semgrep_metavar, + ACTIONS(11945), 5, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + sym_identifier, + [311931] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12065), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACE, + sym_semgrep_metavar, + ACTIONS(12063), 5, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + sym_identifier, + [311947] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11401), 1, + anon_sym_LBRACK, + STATE(4564), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + ACTIONS(11249), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [311969] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11725), 1, + anon_sym_LBRACK, + STATE(8546), 1, + sym_gnu_asm_output_operand, + STATE(9233), 1, + sym_string_literal, + ACTIONS(115), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [311989] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11968), 1, + ACTIONS(12069), 1, + aux_sym_preproc_elif_token1, + ACTIONS(12071), 1, + anon_sym_EQ, + ACTIONS(12067), 6, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_identifier, - ACTIONS(12046), 1, + [312007] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11579), 1, aux_sym_preproc_else_token1, - ACTIONS(12422), 1, + ACTIONS(11587), 1, + sym_identifier, + ACTIONS(11955), 1, aux_sym_preproc_elif_token1, - ACTIONS(12473), 1, + ACTIONS(12073), 1, aux_sym_preproc_if_token2, - STATE(8048), 2, + STATE(7579), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(9890), 2, + STATE(9320), 2, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, - [349083] = 8, + [312031] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12029), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACE, + sym_semgrep_metavar, + ACTIONS(12027), 5, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + sym_identifier, + [312047] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(7993), 1, + sym_string_literal, + ACTIONS(12075), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(115), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [312065] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4848), 1, + ACTIONS(4784), 1, anon_sym_COLON_COLON, - ACTIONS(7588), 1, + ACTIONS(7517), 1, anon_sym_LT, - ACTIONS(12475), 1, + ACTIONS(12077), 1, anon_sym_SEMI, - ACTIONS(12477), 1, + ACTIONS(12079), 1, anon_sym_EQ, - STATE(6753), 1, + STATE(1833), 1, sym_template_argument_list, - STATE(8524), 2, + STATE(8154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [349109] = 6, + [312091] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5469), 1, - anon_sym_LBRACK, - ACTIONS(7588), 1, - anon_sym_LT, - STATE(7592), 1, - sym_template_argument_list, - ACTIONS(5462), 4, + ACTIONS(11623), 1, + sym_identifier, + ACTIONS(11627), 1, + aux_sym_preproc_else_token1, + ACTIONS(11985), 1, + aux_sym_preproc_elif_token1, + ACTIONS(12081), 1, + aux_sym_preproc_if_token2, + STATE(7610), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(9903), 1, + sym_enumerator, + STATE(9274), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + [312117] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, anon_sym_LPAREN2, + ACTIONS(10611), 1, + anon_sym_LBRACK, + ACTIONS(11331), 1, + anon_sym_COLON, + STATE(4527), 1, + sym_parameter_list, + STATE(7260), 1, + sym_function_declarator_seq, + STATE(7318), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [312143] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8324), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - [349131] = 8, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(10611), 1, + anon_sym_LBRACK, + ACTIONS(11337), 1, + anon_sym_COLON, + STATE(4527), 1, + sym_parameter_list, + STATE(7260), 1, + sym_function_declarator_seq, + STATE(7318), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [312169] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4848), 1, + ACTIONS(4784), 1, anon_sym_COLON_COLON, - ACTIONS(7588), 1, + ACTIONS(7517), 1, anon_sym_LT, - ACTIONS(12479), 1, + ACTIONS(12083), 1, anon_sym_SEMI, - ACTIONS(12481), 1, + ACTIONS(12085), 1, anon_sym_EQ, - STATE(6753), 1, + STATE(1833), 1, sym_template_argument_list, - STATE(8530), 2, + STATE(8151), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [349157] = 6, + [312195] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(12483), 1, - sym_identifier, - ACTIONS(12488), 1, - aux_sym_preproc_elif_token1, - STATE(7992), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(10024), 1, - sym_enumerator, - ACTIONS(12486), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [349179] = 8, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(10611), 1, + anon_sym_LBRACK, + ACTIONS(11329), 1, + anon_sym_COLON, + STATE(4527), 1, + sym_parameter_list, + STATE(7260), 1, + sym_function_declarator_seq, + STATE(7318), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [312221] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(12026), 1, + ACTIONS(11579), 1, aux_sym_preproc_else_token1, - ACTIONS(12406), 1, + ACTIONS(11587), 1, + sym_identifier, + ACTIONS(11955), 1, aux_sym_preproc_elif_token1, - ACTIONS(12490), 1, + ACTIONS(12087), 1, aux_sym_preproc_if_token2, - STATE(7986), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(9859), 1, + STATE(7729), 2, sym_enumerator, - STATE(10030), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [349205] = 8, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(9147), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [312245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7588), 1, - anon_sym_LT, - ACTIONS(12492), 1, - anon_sym_SEMI, - ACTIONS(12494), 1, - anon_sym_EQ, - STATE(6753), 1, + ACTIONS(12091), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACE, + sym_semgrep_metavar, + ACTIONS(12089), 5, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + sym_identifier, + [312261] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(7517), 1, + anon_sym_LT, + ACTIONS(8341), 1, + anon_sym_LBRACK, + STATE(7125), 1, sym_template_argument_list, - STATE(8510), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [349231] = 8, + ACTIONS(5409), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [312283] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11001), 1, + ACTIONS(10611), 1, anon_sym_LBRACK, - ACTIONS(12496), 1, - anon_sym_SEMI, - STATE(3864), 1, + ACTIONS(12093), 1, + anon_sym_RPAREN, + STATE(4316), 1, sym_parameter_list, - STATE(7652), 1, + STATE(7260), 1, sym_function_declarator_seq, - STATE(7714), 2, + STATE(7162), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [349257] = 8, + [312309] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11001), 1, + ACTIONS(10611), 1, anon_sym_LBRACK, - ACTIONS(12498), 1, + ACTIONS(12095), 1, anon_sym_SEMI, - STATE(3864), 1, + STATE(4316), 1, sym_parameter_list, - STATE(7652), 1, + STATE(7260), 1, sym_function_declarator_seq, - STATE(7714), 2, + STATE(7162), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [349283] = 8, + [312335] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(12026), 1, + ACTIONS(11579), 1, aux_sym_preproc_else_token1, - ACTIONS(12406), 1, + ACTIONS(11587), 1, + sym_identifier, + ACTIONS(11955), 1, aux_sym_preproc_elif_token1, - ACTIONS(12500), 1, + ACTIONS(12097), 1, aux_sym_preproc_if_token2, - STATE(8043), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(9859), 1, + STATE(7601), 2, sym_enumerator, - STATE(10216), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [349309] = 8, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(9565), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [312359] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11001), 1, + ACTIONS(10611), 1, anon_sym_LBRACK, - ACTIONS(12502), 1, + ACTIONS(12099), 1, anon_sym_SEMI, - STATE(3864), 1, + STATE(4316), 1, sym_parameter_list, - STATE(7652), 1, + STATE(7260), 1, sym_function_declarator_seq, - STATE(7714), 2, + STATE(7162), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [349335] = 8, + [312385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12103), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACE, + sym_semgrep_metavar, + ACTIONS(12101), 5, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, sym_identifier, - ACTIONS(12026), 1, - aux_sym_preproc_else_token1, - ACTIONS(12406), 1, - aux_sym_preproc_elif_token1, - ACTIONS(12504), 1, - aux_sym_preproc_if_token2, - STATE(8043), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(9859), 1, - sym_enumerator, - STATE(9886), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [349361] = 8, + [312401] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11001), 1, + ACTIONS(11401), 1, anon_sym_LBRACK, - ACTIONS(12506), 1, - anon_sym_COLON, - STATE(3864), 1, + STATE(4398), 1, sym_parameter_list, - STATE(7652), 1, + STATE(7104), 1, sym_function_declarator_seq, - STATE(7677), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [349387] = 8, + ACTIONS(11249), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + [312422] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7588), 1, - anon_sym_LT, - ACTIONS(12508), 1, - anon_sym_SEMI, - ACTIONS(12510), 1, - anon_sym_EQ, - STATE(6753), 1, - sym_template_argument_list, - STATE(8496), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [349413] = 5, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11401), 1, + anon_sym_LBRACK, + STATE(4398), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + ACTIONS(11241), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + [312443] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12512), 1, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11401), 1, anon_sym_LBRACK, - ACTIONS(12515), 1, - anon_sym_EQ, - ACTIONS(12517), 1, - anon_sym_DOT, - STATE(8002), 4, - sym_subscript_designator, - sym_subscript_range_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [349432] = 8, + STATE(4398), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + ACTIONS(11243), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + [312464] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5568), 1, + ACTIONS(3899), 1, anon_sym_LBRACE, - ACTIONS(12520), 1, - sym_identifier, - ACTIONS(12522), 1, + ACTIONS(4784), 1, anon_sym_COLON_COLON, - ACTIONS(12524), 1, - anon_sym_inline, - STATE(532), 1, - sym_declaration_list, - STATE(9184), 1, - sym_nested_namespace_specifier, - STATE(9709), 1, - sym_namespace_specifier, - [349457] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12528), 1, - anon_sym_AMP, - ACTIONS(12526), 6, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(7517), 1, anon_sym_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - [349472] = 3, + ACTIONS(8299), 1, + anon_sym_LPAREN2, + STATE(8227), 1, + sym_template_argument_list, + STATE(8647), 2, + sym_argument_list, + sym_initializer_list, + [312487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12310), 1, + ACTIONS(12107), 1, anon_sym_AMP, - ACTIONS(12308), 6, + ACTIONS(12105), 6, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LT, anon_sym_LBRACE, anon_sym_LBRACK, - [349487] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5566), 1, - anon_sym_LBRACE, - ACTIONS(12522), 1, - anon_sym_COLON_COLON, - ACTIONS(12524), 1, - anon_sym_inline, - ACTIONS(12530), 1, - sym_identifier, - STATE(792), 1, - sym_declaration_list, - STATE(9179), 1, - sym_nested_namespace_specifier, - STATE(9709), 1, - sym_namespace_specifier, - [349512] = 7, + [312502] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6736), 1, + ACTIONS(6046), 1, anon_sym_LBRACK, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(12532), 1, + ACTIONS(12109), 1, anon_sym_RPAREN, - STATE(2856), 1, + STATE(2318), 1, sym_parameter_list, - STATE(7890), 2, + STATE(7442), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [349535] = 6, + [312525] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11662), 1, + ACTIONS(9205), 1, + anon_sym_EQ, + ACTIONS(12111), 1, anon_sym_LBRACK, - STATE(4696), 1, - sym_parameter_list, - STATE(7421), 1, - sym_function_declarator_seq, - ACTIONS(11457), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - [349556] = 4, + ACTIONS(12113), 1, + anon_sym_DOT, + STATE(7665), 4, + sym_subscript_designator, + sym_subscript_range_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [312544] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(12536), 1, - anon_sym_COMMA, - ACTIONS(12538), 1, - aux_sym_preproc_elif_token1, - ACTIONS(12534), 5, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(5486), 1, + anon_sym_LBRACE, + ACTIONS(12115), 1, sym_identifier, - [349573] = 7, + ACTIONS(12117), 1, + anon_sym_COLON_COLON, + ACTIONS(12119), 1, + anon_sym_inline, + STATE(743), 1, + sym_declaration_list, + STATE(8666), 1, + sym_nested_namespace_specifier, + STATE(9954), 1, + sym_namespace_specifier, + [312569] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6736), 1, + ACTIONS(6046), 1, anon_sym_LBRACK, - ACTIONS(10808), 1, + ACTIONS(6132), 1, + anon_sym_COLON, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(12540), 1, - anon_sym_RPAREN, - STATE(2856), 1, + STATE(2318), 1, sym_parameter_list, - STATE(7890), 2, + STATE(7712), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [349596] = 6, + [312592] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11662), 1, + ACTIONS(12121), 1, anon_sym_LBRACK, - STATE(4696), 1, - sym_parameter_list, - STATE(7421), 1, - sym_function_declarator_seq, - ACTIONS(11463), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - [349617] = 3, + ACTIONS(12124), 1, + anon_sym_EQ, + ACTIONS(12126), 1, + anon_sym_DOT, + STATE(7665), 4, + sym_subscript_designator, + sym_subscript_range_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [312611] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(12544), 1, + ACTIONS(5488), 1, + anon_sym_LBRACE, + ACTIONS(12117), 1, + anon_sym_COLON_COLON, + ACTIONS(12119), 1, + anon_sym_inline, + ACTIONS(12129), 1, + sym_identifier, + STATE(781), 1, + sym_declaration_list, + STATE(9036), 1, + sym_nested_namespace_specifier, + STATE(9954), 1, + sym_namespace_specifier, + [312636] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4886), 1, anon_sym_AMP, - ACTIONS(12542), 6, + ACTIONS(4884), 6, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LT, anon_sym_LBRACE, anon_sym_LBRACK, - [349632] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6736), 1, - anon_sym_LBRACK, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(12546), 1, - anon_sym_RPAREN, - STATE(2856), 1, - sym_parameter_list, - STATE(7890), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [349655] = 8, + [312651] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, + ACTIONS(5482), 1, anon_sym_LBRACE, - ACTIONS(12522), 1, + ACTIONS(12117), 1, anon_sym_COLON_COLON, - ACTIONS(12524), 1, + ACTIONS(12119), 1, anon_sym_inline, - ACTIONS(12548), 1, + ACTIONS(12131), 1, sym_identifier, - STATE(352), 1, + STATE(536), 1, sym_declaration_list, - STATE(9495), 1, + STATE(8738), 1, sym_nested_namespace_specifier, - STATE(9709), 1, + STATE(9954), 1, sym_namespace_specifier, - [349680] = 8, + [312676] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5560), 1, + ACTIONS(5480), 1, anon_sym_LBRACE, - ACTIONS(12522), 1, + ACTIONS(12117), 1, anon_sym_COLON_COLON, - ACTIONS(12524), 1, + ACTIONS(12119), 1, anon_sym_inline, - ACTIONS(12550), 1, + ACTIONS(12133), 1, sym_identifier, - STATE(879), 1, + STATE(810), 1, sym_declaration_list, - STATE(9489), 1, + STATE(8838), 1, sym_nested_namespace_specifier, - STATE(9709), 1, + STATE(9954), 1, sym_namespace_specifier, - [349705] = 5, + [312701] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6046), 1, + anon_sym_LBRACK, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(12135), 1, + anon_sym_RPAREN, + STATE(2318), 1, + sym_parameter_list, + STATE(7442), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [312724] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(4043), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12137), 1, + sym_identifier, + STATE(2526), 1, + sym_template_method, + STATE(3044), 1, + sym_template_type, + STATE(9016), 2, + sym_operator_name, + sym_semgrep_ellipsis, + [312747] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7118), 1, + ACTIONS(7100), 1, anon_sym_LBRACK, - ACTIONS(7973), 1, + ACTIONS(7517), 1, anon_sym_LT, - STATE(5073), 1, + STATE(7125), 1, sym_template_argument_list, - ACTIONS(7116), 4, - anon_sym_RPAREN, + ACTIONS(7098), 4, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [349724] = 3, + anon_sym_LBRACE, + anon_sym_try, + [312766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6773), 1, + ACTIONS(11841), 1, anon_sym_AMP, - ACTIONS(6775), 6, + ACTIONS(11839), 6, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_LT, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_requires, - [349739] = 6, + [312781] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11662), 1, + ACTIONS(6046), 1, anon_sym_LBRACK, - STATE(4696), 1, - sym_parameter_list, - STATE(7421), 1, - sym_function_declarator_seq, - ACTIONS(11465), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - [349760] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7588), 1, - anon_sym_LT, - ACTIONS(10157), 1, + ACTIONS(6080), 1, + anon_sym_COLON, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, anon_sym_LPAREN2, - STATE(8907), 1, - sym_template_argument_list, - STATE(8900), 2, - sym_argument_list, - sym_initializer_list, - [349783] = 6, + STATE(2318), 1, + sym_parameter_list, + STATE(7712), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [312804] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11662), 1, + ACTIONS(11401), 1, anon_sym_LBRACK, - STATE(4696), 1, + STATE(4330), 1, sym_parameter_list, - STATE(7421), 1, + STATE(7104), 1, sym_function_declarator_seq, - ACTIONS(11406), 3, - anon_sym_DOT_DOT_DOT, + ACTIONS(11241), 3, anon_sym_COMMA, - anon_sym_GT2, - [349804] = 7, + anon_sym_RPAREN, + anon_sym_SEMI, + [312825] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6736), 1, - anon_sym_LBRACK, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(12552), 1, - anon_sym_RPAREN, - STATE(2856), 1, + ACTIONS(11401), 1, + anon_sym_LBRACK, + STATE(4330), 1, sym_parameter_list, - STATE(7890), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [349827] = 8, + STATE(7104), 1, + sym_function_declarator_seq, + ACTIONS(11243), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + [312846] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5560), 1, + ACTIONS(5486), 1, anon_sym_LBRACE, - ACTIONS(12522), 1, + ACTIONS(12117), 1, anon_sym_COLON_COLON, - ACTIONS(12524), 1, + ACTIONS(12119), 1, anon_sym_inline, - ACTIONS(12554), 1, + ACTIONS(12139), 1, sym_identifier, - STATE(844), 1, + STATE(767), 1, sym_declaration_list, - STATE(9540), 1, + STATE(9062), 1, sym_nested_namespace_specifier, - STATE(9709), 1, + STATE(9954), 1, sym_namespace_specifier, - [349852] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4962), 1, - anon_sym_AMP, - ACTIONS(4960), 6, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - [349867] = 7, + [312871] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6736), 1, + ACTIONS(6046), 1, anon_sym_LBRACK, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(12556), 1, + ACTIONS(12141), 1, anon_sym_RPAREN, - STATE(2856), 1, + STATE(2318), 1, sym_parameter_list, - STATE(7890), 2, + STATE(7442), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [349890] = 3, + [312894] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11401), 1, + anon_sym_LBRACK, + STATE(4398), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + ACTIONS(11251), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + [312915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6781), 1, + ACTIONS(6912), 1, anon_sym_AMP, - ACTIONS(6783), 6, + ACTIONS(6914), 6, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_requires, - [349905] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9657), 1, - anon_sym_EQ, - ACTIONS(12558), 1, - anon_sym_LBRACK, - ACTIONS(12560), 1, - anon_sym_DOT, - STATE(8002), 4, - sym_subscript_designator, - sym_subscript_range_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [349924] = 3, + [312930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6795), 1, + ACTIONS(6873), 1, anon_sym_AMP, - ACTIONS(6797), 6, + ACTIONS(6875), 6, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_requires, - [349939] = 5, + [312945] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7118), 1, - anon_sym_LBRACK, - ACTIONS(7588), 1, - anon_sym_LT, - STATE(7592), 1, - sym_template_argument_list, - ACTIONS(7116), 4, + ACTIONS(10418), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - [349958] = 8, + ACTIONS(11401), 1, + anon_sym_LBRACK, + STATE(4330), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + ACTIONS(11253), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + [312966] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5566), 1, - anon_sym_LBRACE, - ACTIONS(12522), 1, - anon_sym_COLON_COLON, - ACTIONS(12524), 1, - anon_sym_inline, - ACTIONS(12562), 1, + ACTIONS(12145), 1, + anon_sym_COMMA, + ACTIONS(12147), 1, + aux_sym_preproc_elif_token1, + ACTIONS(12143), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_identifier, - STATE(687), 1, - sym_declaration_list, - STATE(9258), 1, - sym_nested_namespace_specifier, - STATE(9709), 1, - sym_namespace_specifier, - [349983] = 7, + [312983] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6736), 1, + ACTIONS(6046), 1, anon_sym_LBRACK, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(12564), 1, + ACTIONS(12149), 1, anon_sym_RPAREN, - STATE(2856), 1, + STATE(2318), 1, sym_parameter_list, - STATE(7890), 2, + STATE(7442), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [350006] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11662), 1, - anon_sym_LBRACK, - STATE(4696), 1, - sym_parameter_list, - STATE(7421), 1, - sym_function_declarator_seq, - ACTIONS(11416), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - [350027] = 8, + [313006] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5564), 1, + ACTIONS(5484), 1, anon_sym_LBRACE, - ACTIONS(12522), 1, + ACTIONS(12117), 1, anon_sym_COLON_COLON, - ACTIONS(12524), 1, + ACTIONS(12119), 1, anon_sym_inline, - ACTIONS(12566), 1, + ACTIONS(12151), 1, sym_identifier, - STATE(709), 1, + STATE(454), 1, sym_declaration_list, - STATE(9486), 1, + STATE(8709), 1, sym_nested_namespace_specifier, - STATE(9709), 1, + STATE(9954), 1, sym_namespace_specifier, - [350052] = 8, + [313031] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11401), 1, + anon_sym_LBRACK, + STATE(4330), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + ACTIONS(11235), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + [313052] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, + ACTIONS(5488), 1, anon_sym_LBRACE, - ACTIONS(12522), 1, + ACTIONS(12117), 1, anon_sym_COLON_COLON, - ACTIONS(12524), 1, + ACTIONS(12119), 1, anon_sym_inline, - ACTIONS(12568), 1, + ACTIONS(12153), 1, sym_identifier, - STATE(445), 1, + STATE(746), 1, sym_declaration_list, - STATE(9397), 1, + STATE(9077), 1, sym_nested_namespace_specifier, - STATE(9709), 1, + STATE(9954), 1, sym_namespace_specifier, - [350077] = 7, + [313077] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(6038), 1, + anon_sym_COLON, + ACTIONS(6046), 1, + anon_sym_LBRACK, + ACTIONS(8324), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11001), 1, + STATE(2318), 1, + sym_parameter_list, + STATE(7712), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [313100] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6046), 1, anon_sym_LBRACK, - STATE(3864), 1, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(12155), 1, + anon_sym_RPAREN, + STATE(2318), 1, sym_parameter_list, - STATE(7652), 1, - sym_function_declarator_seq, - STATE(7714), 2, + STATE(7442), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [350100] = 6, + [313123] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11662), 1, + ACTIONS(11401), 1, anon_sym_LBRACK, - STATE(4696), 1, + STATE(4330), 1, sym_parameter_list, - STATE(7421), 1, + STATE(7104), 1, sym_function_declarator_seq, - ACTIONS(11449), 3, - anon_sym_DOT_DOT_DOT, + ACTIONS(11251), 3, anon_sym_COMMA, - anon_sym_GT2, - [350121] = 8, + anon_sym_RPAREN, + anon_sym_SEMI, + [313144] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5564), 1, + ACTIONS(5480), 1, anon_sym_LBRACE, - ACTIONS(12522), 1, + ACTIONS(12117), 1, anon_sym_COLON_COLON, - ACTIONS(12524), 1, + ACTIONS(12119), 1, anon_sym_inline, - ACTIONS(12570), 1, + ACTIONS(12157), 1, sym_identifier, - STATE(756), 1, + STATE(829), 1, sym_declaration_list, - STATE(9467), 1, + STATE(9084), 1, sym_nested_namespace_specifier, - STATE(9709), 1, + STATE(9954), 1, sym_namespace_specifier, - [350146] = 6, + [313169] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11662), 1, + ACTIONS(6046), 1, anon_sym_LBRACK, - STATE(4696), 1, + ACTIONS(6141), 1, + anon_sym_COLON, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + STATE(2318), 1, sym_parameter_list, - STATE(7421), 1, - sym_function_declarator_seq, - ACTIONS(11451), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - [350167] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(11549), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12572), 1, - sym_identifier, - STATE(2976), 1, - sym_template_method, - STATE(4669), 1, - sym_template_type, - STATE(9180), 2, - sym_operator_name, - sym_semgrep_ellipsis, - [350190] = 8, + STATE(7712), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [313192] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5568), 1, + ACTIONS(5484), 1, anon_sym_LBRACE, - ACTIONS(12522), 1, + ACTIONS(12117), 1, anon_sym_COLON_COLON, - ACTIONS(12524), 1, + ACTIONS(12119), 1, anon_sym_inline, - ACTIONS(12574), 1, + ACTIONS(12159), 1, sym_identifier, - STATE(549), 1, + STATE(394), 1, sym_declaration_list, - STATE(9499), 1, + STATE(8655), 1, sym_nested_namespace_specifier, - STATE(9709), 1, + STATE(9954), 1, sym_namespace_specifier, - [350215] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6736), 1, - anon_sym_LBRACK, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(12576), 1, - anon_sym_RPAREN, - STATE(2856), 1, - sym_parameter_list, - STATE(7890), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [350238] = 3, + [313217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12580), 1, + ACTIONS(12163), 1, anon_sym_AMP, - ACTIONS(12578), 6, + ACTIONS(12161), 6, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LT, anon_sym_LBRACE, anon_sym_LBRACK, - [350253] = 6, + [313232] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(11549), 1, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11401), 1, + anon_sym_LBRACK, + STATE(4398), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + ACTIONS(11235), 3, anon_sym_DOT_DOT_DOT, - ACTIONS(12582), 1, - sym_identifier, - STATE(3435), 1, - sym_template_method, - STATE(9435), 2, - sym_operator_name, - sym_semgrep_ellipsis, - [350273] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12483), 1, - sym_identifier, - STATE(8043), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(9859), 1, - sym_enumerator, - ACTIONS(12486), 3, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [350291] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12584), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(12586), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [350305] = 3, + anon_sym_COMMA, + anon_sym_GT2, + [313253] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12588), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(12590), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [350319] = 6, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11401), 1, + anon_sym_LBRACK, + STATE(4398), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + ACTIONS(11247), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + [313274] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10869), 1, - anon_sym_try, - ACTIONS(11850), 1, - anon_sym_LBRACE, - ACTIONS(12592), 1, - anon_sym_SEMI, - ACTIONS(12594), 1, - anon_sym_EQ, - STATE(2061), 2, - sym_compound_statement, - sym_try_statement, - [350339] = 2, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(10611), 1, + anon_sym_LBRACK, + STATE(4197), 1, + sym_parameter_list, + STATE(7260), 1, + sym_function_declarator_seq, + STATE(7162), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [313297] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2185), 6, + ACTIONS(6898), 1, + anon_sym_AMP, + ACTIONS(6900), 6, anon_sym_LPAREN2, - anon_sym_LT, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [350351] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12596), 1, - sym_identifier, - STATE(8048), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - ACTIONS(12431), 3, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [350367] = 6, + anon_sym_requires, + [313312] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(309), 1, - anon_sym_LBRACE, - ACTIONS(11155), 1, - anon_sym_try, - ACTIONS(12599), 1, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11401), 1, + anon_sym_LBRACK, + STATE(4330), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + ACTIONS(11247), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - ACTIONS(12601), 1, - anon_sym_EQ, - STATE(365), 2, - sym_compound_statement, - sym_try_statement, - [350387] = 6, + [313333] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11662), 1, + ACTIONS(11401), 1, anon_sym_LBRACK, - STATE(4268), 1, + STATE(4398), 1, sym_parameter_list, - STATE(7421), 1, + STATE(7104), 1, sym_function_declarator_seq, - ACTIONS(12110), 2, + ACTIONS(11253), 3, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - [350407] = 3, + anon_sym_GT2, + [313354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12603), 2, - anon_sym_RBRACE, + ACTIONS(12167), 1, + anon_sym_AMP, + ACTIONS(12165), 6, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + [313369] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5482), 1, + anon_sym_LBRACE, + ACTIONS(12117), 1, + anon_sym_COLON_COLON, + ACTIONS(12119), 1, + anon_sym_inline, + ACTIONS(12169), 1, sym_identifier, - ACTIONS(12605), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [350421] = 6, + STATE(543), 1, + sym_declaration_list, + STATE(8999), 1, + sym_nested_namespace_specifier, + STATE(9954), 1, + sym_namespace_specifier, + [313394] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11662), 1, + ACTIONS(11401), 1, anon_sym_LBRACK, - STATE(4696), 1, + STATE(4330), 1, sym_parameter_list, - STATE(7421), 1, + STATE(7104), 1, sym_function_declarator_seq, - ACTIONS(12110), 2, + ACTIONS(11249), 3, anon_sym_COMMA, - anon_sym_GT2, - [350441] = 4, + anon_sym_RPAREN, + anon_sym_SEMI, + [313415] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(12607), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6046), 1, + anon_sym_LBRACK, + ACTIONS(10418), 1, anon_sym_LPAREN2, - STATE(8062), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(12609), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [350457] = 6, + ACTIONS(12171), 1, + anon_sym_RPAREN, + STATE(2318), 1, + sym_parameter_list, + STATE(7442), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [313438] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(860), 1, - anon_sym_LBRACE, - ACTIONS(11069), 1, + ACTIONS(10471), 1, anon_sym_try, - ACTIONS(12611), 1, + ACTIONS(11456), 1, + anon_sym_LBRACE, + ACTIONS(12173), 1, anon_sym_SEMI, - ACTIONS(12613), 1, + ACTIONS(12175), 1, anon_sym_EQ, - STATE(800), 2, + STATE(2400), 2, sym_compound_statement, sym_try_statement, - [350477] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(11549), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12615), 1, - sym_identifier, - STATE(4449), 1, - sym_template_method, - STATE(9254), 2, - sym_operator_name, - sym_semgrep_ellipsis, - [350497] = 3, + [313458] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12617), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(12619), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [350511] = 4, + ACTIONS(309), 1, + anon_sym_LBRACE, + ACTIONS(10688), 1, + anon_sym_try, + ACTIONS(12177), 1, + anon_sym_SEMI, + ACTIONS(12179), 1, + anon_sym_EQ, + STATE(424), 2, + sym_compound_statement, + sym_try_statement, + [313478] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12621), 1, + ACTIONS(12181), 1, anon_sym_LPAREN2, - STATE(8061), 2, + STATE(7727), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(12609), 3, + ACTIONS(12183), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [350527] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(11549), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12623), 1, - sym_identifier, - STATE(4183), 1, - sym_template_method, - STATE(9551), 2, - sym_operator_name, - sym_semgrep_ellipsis, - [350547] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7588), 1, - anon_sym_LT, - STATE(6753), 1, - sym_template_argument_list, - ACTIONS(5467), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LBRACE, - [350565] = 4, + [313494] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12625), 1, + ACTIONS(12185), 1, anon_sym_LPAREN2, - STATE(8062), 2, + STATE(7727), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(12609), 3, + ACTIONS(12183), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [350581] = 4, + [313510] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12627), 1, + ACTIONS(12187), 1, anon_sym_LPAREN2, - STATE(8062), 2, + STATE(7711), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(12609), 3, + ACTIONS(12183), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [350597] = 4, + [313526] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12629), 1, + ACTIONS(7100), 1, + anon_sym_LBRACK, + ACTIONS(7517), 1, + anon_sym_LT, + STATE(4664), 1, + sym_template_argument_list, + ACTIONS(7098), 3, anon_sym_LPAREN2, - STATE(8062), 2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [313544] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12189), 1, + anon_sym_LPAREN2, + STATE(7727), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(12631), 3, + ACTIONS(12183), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [350613] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(9680), 1, - sym_string_literal, - ACTIONS(115), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [350627] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12634), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(12636), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [350641] = 5, + [313560] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7588), 1, - anon_sym_LT, - STATE(6753), 1, - sym_template_argument_list, - ACTIONS(4853), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LBRACE, - [350659] = 3, + ACTIONS(6212), 1, + anon_sym_LBRACK, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6210), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(6628), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [313578] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12638), 2, - anon_sym_RBRACE, + ACTIONS(12056), 1, sym_identifier, - ACTIONS(12640), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [350673] = 4, + STATE(7713), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(9903), 1, + sym_enumerator, + ACTIONS(12059), 3, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [313596] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12642), 1, + ACTIONS(12191), 1, anon_sym_LPAREN2, - STATE(8062), 2, + STATE(7715), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(12609), 3, + ACTIONS(12183), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [350689] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12644), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(12646), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [350703] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, - anon_sym_LBRACE, - ACTIONS(11147), 1, - anon_sym_try, - ACTIONS(12648), 1, - anon_sym_SEMI, - ACTIONS(12650), 1, - anon_sym_EQ, - STATE(839), 2, - sym_compound_statement, - sym_try_statement, - [350723] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, - anon_sym_LBRACE, - ACTIONS(11147), 1, - anon_sym_try, - ACTIONS(12652), 1, - anon_sym_SEMI, - ACTIONS(12654), 1, - anon_sym_EQ, - STATE(858), 2, - sym_compound_statement, - sym_try_statement, - [350743] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12584), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(12586), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [350757] = 4, + [313612] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12656), 1, + ACTIONS(12193), 1, anon_sym_LPAREN2, - STATE(8075), 2, + STATE(7727), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(12609), 3, + ACTIONS(12183), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [350773] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(8098), 1, - anon_sym_LBRACK_LBRACK, - STATE(6822), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6894), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [350791] = 4, + [313628] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12658), 1, + ACTIONS(12195), 1, anon_sym_LPAREN2, - STATE(8125), 2, + STATE(7717), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(12609), 3, + ACTIONS(12183), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [350807] = 4, + [313644] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12660), 1, + ACTIONS(12197), 1, anon_sym_LPAREN2, - STATE(8062), 2, + STATE(7727), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(12609), 3, + ACTIONS(12183), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [350823] = 6, + [313660] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10832), 1, - anon_sym_try, - ACTIONS(11753), 1, - anon_sym_LBRACE, - ACTIONS(12662), 1, - anon_sym_SEMI, - ACTIONS(12664), 1, - anon_sym_EQ, - STATE(2422), 2, - sym_compound_statement, - sym_try_statement, - [350843] = 3, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(4043), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12199), 1, + sym_identifier, + STATE(2526), 1, + sym_template_method, + STATE(9052), 2, + sym_operator_name, + sym_semgrep_ellipsis, + [313680] = 3, ACTIONS(3), 1, sym_comment, - STATE(8910), 1, + STATE(9212), 1, sym_string_literal, ACTIONS(115), 5, anon_sym_L_DQUOTE, @@ -614642,536 +581441,593 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [350857] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12666), 1, - anon_sym_LPAREN2, - STATE(8083), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(12609), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [350873] = 4, + [313694] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12668), 1, + ACTIONS(12201), 1, anon_sym_LPAREN2, - STATE(8084), 2, + STATE(7722), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(12609), 3, + ACTIONS(12183), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [350889] = 5, + [313710] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11944), 1, - anon_sym_LBRACK, - ACTIONS(11942), 2, - anon_sym_RPAREN, - anon_sym_LPAREN2, - STATE(7724), 2, + ACTIONS(7875), 1, + anon_sym___attribute__, + STATE(6442), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6679), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [350907] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12603), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(12605), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [350921] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12670), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(12672), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [350935] = 4, + [313728] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12674), 1, + ACTIONS(12203), 1, anon_sym_LPAREN2, - STATE(8062), 2, + STATE(7727), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(12609), 3, + ACTIONS(12183), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [350951] = 4, + [313744] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12676), 1, + ACTIONS(12205), 1, anon_sym_LPAREN2, - STATE(8062), 2, + STATE(7725), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(12609), 3, + ACTIONS(12183), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [350967] = 6, + [313760] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10820), 1, - anon_sym_try, - ACTIONS(11876), 1, + ACTIONS(1126), 1, anon_sym_LBRACE, - ACTIONS(12678), 1, + ACTIONS(10617), 1, + anon_sym_try, + ACTIONS(12207), 1, anon_sym_SEMI, - ACTIONS(12680), 1, + ACTIONS(12209), 1, anon_sym_EQ, - STATE(2148), 2, + STATE(791), 2, sym_compound_statement, sym_try_statement, - [350987] = 4, + [313780] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12682), 1, + ACTIONS(12211), 1, anon_sym_LPAREN2, - STATE(8060), 2, + STATE(7727), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(12609), 3, + ACTIONS(12183), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [351003] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(421), 1, - anon_sym_LBRACE, - ACTIONS(11061), 1, - anon_sym_try, - ACTIONS(12684), 1, - anon_sym_SEMI, - ACTIONS(12686), 1, - anon_sym_EQ, - STATE(565), 2, - sym_compound_statement, - sym_try_statement, - [351023] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(11549), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12688), 1, - sym_identifier, - STATE(2976), 1, - sym_template_method, - STATE(9169), 2, - sym_operator_name, - sym_semgrep_ellipsis, - [351043] = 4, + [313796] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12690), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - STATE(8093), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(12609), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [351059] = 4, + ACTIONS(11401), 1, + anon_sym_LBRACK, + STATE(4453), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + ACTIONS(11243), 2, + anon_sym_RPAREN, + sym_semgrep_metavar, + [313816] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12692), 1, + ACTIONS(12213), 1, anon_sym_LPAREN2, - STATE(8095), 2, + STATE(7727), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(12609), 3, + ACTIONS(12215), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [351075] = 6, + [313832] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1002), 1, + ACTIONS(421), 1, anon_sym_LBRACE, - ACTIONS(11151), 1, + ACTIONS(10680), 1, anon_sym_try, - ACTIONS(12694), 1, + ACTIONS(12218), 1, anon_sym_SEMI, - ACTIONS(12696), 1, + ACTIONS(12220), 1, anon_sym_EQ, - STATE(764), 2, + STATE(508), 2, sym_compound_statement, sym_try_statement, - [351095] = 3, + [313852] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12698), 2, - anon_sym_RBRACE, + ACTIONS(12222), 1, sym_identifier, - ACTIONS(12700), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [351109] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12702), 1, - anon_sym_LPAREN2, - STATE(8062), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(12609), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [351125] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12704), 1, - anon_sym_LPAREN2, - STATE(8098), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(12609), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [351141] = 4, + STATE(7729), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + ACTIONS(12050), 3, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [313868] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12706), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - STATE(8062), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(12609), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [351157] = 6, + ACTIONS(11401), 1, + anon_sym_LBRACK, + STATE(4453), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + ACTIONS(11251), 2, + anon_sym_RPAREN, + sym_semgrep_metavar, + [313888] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(860), 1, - anon_sym_LBRACE, - ACTIONS(11069), 1, + ACTIONS(10430), 1, anon_sym_try, - ACTIONS(12708), 1, + ACTIONS(11440), 1, + anon_sym_LBRACE, + ACTIONS(12225), 1, anon_sym_SEMI, - ACTIONS(12710), 1, + ACTIONS(12227), 1, anon_sym_EQ, - STATE(708), 2, + STATE(2445), 2, sym_compound_statement, sym_try_statement, - [351177] = 6, + [313908] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1002), 1, - anon_sym_LBRACE, - ACTIONS(11151), 1, + ACTIONS(10430), 1, anon_sym_try, - ACTIONS(12712), 1, + ACTIONS(11440), 1, + anon_sym_LBRACE, + ACTIONS(12229), 1, anon_sym_SEMI, - ACTIONS(12714), 1, + ACTIONS(12231), 1, anon_sym_EQ, - STATE(784), 2, + STATE(2307), 2, sym_compound_statement, sym_try_statement, - [351197] = 4, + [313928] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(4043), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12233), 1, + sym_identifier, + STATE(3382), 1, + sym_template_method, + STATE(8801), 2, + sym_operator_name, + sym_semgrep_ellipsis, + [313948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12716), 1, + ACTIONS(12061), 1, + aux_sym_preproc_elif_token1, + ACTIONS(12059), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [313962] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10418), 1, anon_sym_LPAREN2, - STATE(8062), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(12609), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [351213] = 3, + ACTIONS(11401), 1, + anon_sym_LBRACK, + STATE(4453), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + ACTIONS(11253), 2, + anon_sym_RPAREN, + sym_semgrep_metavar, + [313982] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12718), 2, - anon_sym_RBRACE, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(4043), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12235), 1, sym_identifier, - ACTIONS(12720), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [351227] = 6, + STATE(3981), 1, + sym_template_method, + STATE(8683), 2, + sym_operator_name, + sym_semgrep_ellipsis, + [314002] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(309), 1, - anon_sym_LBRACE, - ACTIONS(11155), 1, - anon_sym_try, - ACTIONS(12722), 1, - anon_sym_SEMI, - ACTIONS(12724), 1, - anon_sym_EQ, - STATE(452), 2, - sym_compound_statement, - sym_try_statement, - [351247] = 4, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11401), 1, + anon_sym_LBRACK, + STATE(4453), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + ACTIONS(11247), 2, + anon_sym_RPAREN, + sym_semgrep_metavar, + [314022] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12726), 1, + ACTIONS(12237), 1, anon_sym_LPAREN2, - STATE(8108), 2, + STATE(7744), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(12609), 3, + ACTIONS(12183), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [351263] = 6, + [314038] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10869), 1, - anon_sym_try, - ACTIONS(11850), 1, + ACTIONS(55), 1, anon_sym_LBRACE, - ACTIONS(12728), 1, + ACTIONS(10619), 1, + anon_sym_try, + ACTIONS(12239), 1, anon_sym_SEMI, - ACTIONS(12730), 1, + ACTIONS(12241), 1, anon_sym_EQ, - STATE(2036), 2, + STATE(843), 2, sym_compound_statement, sym_try_statement, - [351283] = 3, + [314058] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12732), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(12734), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [351297] = 3, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(10619), 1, + anon_sym_try, + ACTIONS(12243), 1, + anon_sym_SEMI, + ACTIONS(12245), 1, + anon_sym_EQ, + STATE(845), 2, + sym_compound_statement, + sym_try_statement, + [314078] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12736), 1, - anon_sym_EQ, - ACTIONS(12414), 5, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_identifier, - [351311] = 3, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11401), 1, + anon_sym_LBRACK, + STATE(4453), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + ACTIONS(11235), 2, + anon_sym_RPAREN, + sym_semgrep_metavar, + [314098] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12488), 1, - aux_sym_preproc_elif_token1, - ACTIONS(12486), 5, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [351325] = 6, + ACTIONS(7517), 1, + anon_sym_LT, + ACTIONS(11567), 1, + anon_sym_LBRACK, + STATE(7415), 1, + sym_template_argument_list, + ACTIONS(11563), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [314116] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, + ACTIONS(309), 1, anon_sym_LBRACE, - ACTIONS(7588), 1, - anon_sym_LT, - ACTIONS(10157), 1, - anon_sym_LPAREN2, - STATE(2974), 1, - sym_template_argument_list, - STATE(8900), 2, - sym_argument_list, - sym_initializer_list, - [351345] = 4, + ACTIONS(10688), 1, + anon_sym_try, + ACTIONS(12247), 1, + anon_sym_SEMI, + ACTIONS(12249), 1, + anon_sym_EQ, + STATE(383), 2, + sym_compound_statement, + sym_try_statement, + [314136] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12738), 1, + ACTIONS(12251), 1, anon_sym_LPAREN2, - STATE(8053), 2, + STATE(7727), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(12609), 3, + ACTIONS(12183), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [351361] = 4, + [314152] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12740), 1, + ACTIONS(12253), 1, anon_sym_LPAREN2, - STATE(8062), 2, + STATE(7754), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(12609), 3, + ACTIONS(12183), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [351377] = 3, + [314168] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12742), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(12744), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [351391] = 6, + ACTIONS(860), 1, + anon_sym_LBRACE, + ACTIONS(10641), 1, + anon_sym_try, + ACTIONS(12255), 1, + anon_sym_SEMI, + ACTIONS(12257), 1, + anon_sym_EQ, + STATE(799), 2, + sym_compound_statement, + sym_try_statement, + [314188] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10820), 1, - anon_sym_try, - ACTIONS(11876), 1, + ACTIONS(1126), 1, anon_sym_LBRACE, - ACTIONS(12746), 1, + ACTIONS(10617), 1, + anon_sym_try, + ACTIONS(12259), 1, anon_sym_SEMI, - ACTIONS(12748), 1, + ACTIONS(12261), 1, anon_sym_EQ, - STATE(2208), 2, + STATE(726), 2, sym_compound_statement, sym_try_statement, - [351411] = 3, + [314208] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12007), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(12750), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [351425] = 6, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11401), 1, + anon_sym_LBRACK, + STATE(4453), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + ACTIONS(11241), 2, + anon_sym_RPAREN, + sym_semgrep_metavar, + [314228] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11401), 1, + anon_sym_LBRACK, + STATE(4453), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + ACTIONS(11249), 2, + anon_sym_RPAREN, + sym_semgrep_metavar, + [314248] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3899), 1, + anon_sym_LBRACE, + ACTIONS(7517), 1, + anon_sym_LT, + ACTIONS(8299), 1, + anon_sym_LPAREN2, + STATE(2525), 1, + sym_template_argument_list, + STATE(8647), 2, + sym_argument_list, + sym_initializer_list, + [314268] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2259), 1, + ACTIONS(2257), 1, anon_sym_operator, - ACTIONS(11549), 1, + ACTIONS(4043), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12752), 1, + ACTIONS(12263), 1, sym_identifier, - STATE(3637), 1, + STATE(4234), 1, sym_template_method, - STATE(9573), 2, + STATE(8890), 2, sym_operator_name, sym_semgrep_ellipsis, - [351445] = 6, + [314288] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(421), 1, + ACTIONS(10461), 1, + anon_sym_try, + ACTIONS(11480), 1, + anon_sym_LBRACE, + ACTIONS(12265), 1, + anon_sym_SEMI, + ACTIONS(12267), 1, + anon_sym_EQ, + STATE(1982), 2, + sym_compound_statement, + sym_try_statement, + [314308] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(860), 1, anon_sym_LBRACE, - ACTIONS(11061), 1, + ACTIONS(10641), 1, anon_sym_try, - ACTIONS(12754), 1, + ACTIONS(12269), 1, anon_sym_SEMI, - ACTIONS(12756), 1, + ACTIONS(12271), 1, anon_sym_EQ, - STATE(545), 2, + STATE(755), 2, sym_compound_statement, sym_try_statement, - [351465] = 5, + [314328] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7588), 1, - anon_sym_LT, - ACTIONS(11954), 1, + ACTIONS(12273), 1, + anon_sym_LPAREN2, + STATE(7727), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(12183), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [314344] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12275), 1, + anon_sym_LPAREN2, + STATE(7756), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(12183), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [314360] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12277), 1, + anon_sym_LPAREN2, + STATE(7727), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(12183), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [314376] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7100), 1, anon_sym_LBRACK, - STATE(7780), 1, + ACTIONS(7816), 1, + anon_sym_LT, + STATE(4664), 1, sym_template_argument_list, - ACTIONS(11950), 3, + ACTIONS(7098), 3, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - [351483] = 6, + [314394] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10832), 1, - anon_sym_try, - ACTIONS(11753), 1, + ACTIONS(421), 1, anon_sym_LBRACE, - ACTIONS(12758), 1, + ACTIONS(10680), 1, + anon_sym_try, + ACTIONS(12279), 1, anon_sym_SEMI, - ACTIONS(12760), 1, + ACTIONS(12281), 1, anon_sym_EQ, - STATE(2386), 2, + STATE(498), 2, sym_compound_statement, sym_try_statement, - [351503] = 3, + [314414] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12644), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(12646), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [351517] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2259), 1, + ACTIONS(2257), 1, anon_sym_operator, - ACTIONS(11549), 1, + ACTIONS(4043), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12762), 1, + ACTIONS(12283), 1, sym_identifier, - STATE(2976), 1, + STATE(2526), 1, sym_template_method, - STATE(9318), 2, + STATE(8729), 2, sym_operator_name, sym_semgrep_ellipsis, - [351537] = 4, + [314434] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10440), 1, + anon_sym_try, + ACTIONS(11509), 1, + anon_sym_LBRACE, + ACTIONS(12285), 1, + anon_sym_SEMI, + ACTIONS(12287), 1, + anon_sym_EQ, + STATE(2133), 2, + sym_compound_statement, + sym_try_statement, + [314454] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11401), 1, + anon_sym_LBRACK, + STATE(4398), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + ACTIONS(11715), 2, + anon_sym_COMMA, + anon_sym_GT2, + [314474] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12764), 1, + ACTIONS(12289), 1, anon_sym_LPAREN2, - STATE(8122), 2, + STATE(7770), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(12609), 3, + ACTIONS(12183), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [351553] = 6, + [314490] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10879), 1, - anon_sym_try, - ACTIONS(11792), 1, - anon_sym_LBRACE, - ACTIONS(12766), 1, - anon_sym_SEMI, - ACTIONS(12768), 1, - anon_sym_EQ, - STATE(2326), 2, - sym_compound_statement, - sym_try_statement, - [351573] = 3, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11575), 1, + anon_sym_LBRACK, + ACTIONS(11573), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + STATE(7112), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [314508] = 3, ACTIONS(3), 1, sym_comment, - STATE(9830), 1, + STATE(8407), 1, sym_string_literal, ACTIONS(115), 5, anon_sym_L_DQUOTE, @@ -615179,27072 +582035,24462 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [351587] = 6, + [314522] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10879), 1, + ACTIONS(10461), 1, anon_sym_try, - ACTIONS(11792), 1, + ACTIONS(11480), 1, anon_sym_LBRACE, - ACTIONS(12770), 1, + ACTIONS(12291), 1, anon_sym_SEMI, - ACTIONS(12772), 1, + ACTIONS(12293), 1, anon_sym_EQ, - STATE(2383), 2, + STATE(2019), 2, sym_compound_statement, sym_try_statement, - [351607] = 4, + [314542] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12774), 1, - anon_sym_LPAREN2, - STATE(8062), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(12609), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [351623] = 4, + ACTIONS(2257), 1, + anon_sym_operator, + ACTIONS(4043), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12295), 1, + sym_identifier, + STATE(3752), 1, + sym_template_method, + STATE(8740), 2, + sym_operator_name, + sym_semgrep_ellipsis, + [314562] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12776), 1, + ACTIONS(12297), 1, anon_sym_LPAREN2, - STATE(8067), 2, + STATE(7708), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(12609), 3, + ACTIONS(12183), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [351639] = 6, + [314578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2259), 1, - anon_sym_operator, - ACTIONS(11549), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12778), 1, + STATE(9645), 1, + sym_string_literal, + ACTIONS(115), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [314592] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12299), 1, + anon_sym_EQ, + ACTIONS(12067), 5, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_identifier, - STATE(4295), 1, - sym_template_method, - STATE(9289), 2, - sym_operator_name, - sym_semgrep_ellipsis, - [351659] = 4, + [314606] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12780), 1, + ACTIONS(12301), 1, anon_sym_LPAREN2, - STATE(8062), 2, + STATE(7727), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(12609), 3, + ACTIONS(12183), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [351675] = 6, + [314622] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 1, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11401), 1, + anon_sym_LBRACK, + STATE(4330), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + ACTIONS(11715), 2, anon_sym_COMMA, - ACTIONS(9073), 1, - anon_sym___attribute__, - ACTIONS(12782), 1, - anon_sym_SEMI, - STATE(8197), 1, - aux_sym_field_declaration_repeat1, - STATE(10520), 1, - sym_attribute_specifier, - [351694] = 6, + anon_sym_RPAREN, + [314642] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 1, - anon_sym_COMMA, - ACTIONS(9073), 1, - anon_sym___attribute__, - ACTIONS(12784), 1, + ACTIONS(10471), 1, + anon_sym_try, + ACTIONS(11456), 1, + anon_sym_LBRACE, + ACTIONS(12303), 1, anon_sym_SEMI, - STATE(8132), 1, - aux_sym_field_declaration_repeat1, - STATE(10049), 1, - sym_attribute_specifier, - [351713] = 6, + ACTIONS(12305), 1, + anon_sym_EQ, + STATE(2241), 2, + sym_compound_statement, + sym_try_statement, + [314662] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 1, - anon_sym_COMMA, - ACTIONS(9073), 1, + ACTIONS(8207), 1, anon_sym___attribute__, - ACTIONS(12786), 1, - anon_sym_SEMI, - STATE(8133), 1, - aux_sym_field_declaration_repeat1, - STATE(10197), 1, + ACTIONS(8324), 1, + anon_sym_LBRACK_LBRACK, + STATE(6370), 2, sym_attribute_specifier, - [351732] = 6, + aux_sym_type_definition_repeat1, + STATE(6654), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [314680] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 1, - anon_sym_COMMA, - ACTIONS(9073), 1, - anon_sym___attribute__, - ACTIONS(12788), 1, + ACTIONS(10440), 1, + anon_sym_try, + ACTIONS(11509), 1, + anon_sym_LBRACE, + ACTIONS(12307), 1, anon_sym_SEMI, - STATE(8197), 1, - aux_sym_field_declaration_repeat1, - STATE(10579), 1, - sym_attribute_specifier, - [351751] = 6, + ACTIONS(12309), 1, + anon_sym_EQ, + STATE(2089), 2, + sym_compound_statement, + sym_try_statement, + [314700] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 1, - anon_sym_COMMA, - ACTIONS(9073), 1, - anon_sym___attribute__, - ACTIONS(12790), 1, - anon_sym_SEMI, - STATE(8197), 1, - aux_sym_field_declaration_repeat1, - STATE(10613), 1, - sym_attribute_specifier, - [351770] = 6, + ACTIONS(12311), 1, + anon_sym_LPAREN2, + STATE(7707), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(12183), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [314716] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 1, + ACTIONS(8549), 1, + sym_auto, + ACTIONS(8551), 1, + anon_sym_decltype, + STATE(3704), 1, + sym_decltype_auto, + ACTIONS(12313), 2, anon_sym_COMMA, - ACTIONS(9073), 1, - anon_sym___attribute__, - ACTIONS(9083), 1, - anon_sym_SEMI, - STATE(8135), 1, - aux_sym_field_declaration_repeat1, - STATE(9651), 1, - sym_attribute_specifier, - [351789] = 6, + anon_sym_GT2, + [314733] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 1, - anon_sym_COMMA, - ACTIONS(9073), 1, - anon_sym___attribute__, - ACTIONS(12792), 1, - anon_sym_SEMI, - STATE(8197), 1, - aux_sym_field_declaration_repeat1, - STATE(9847), 1, - sym_attribute_specifier, - [351808] = 6, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11251), 1, + anon_sym_COLON, + ACTIONS(11401), 1, + anon_sym_LBRACK, + STATE(4616), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + [314752] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 1, - anon_sym_COMMA, - ACTIONS(9073), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(12794), 1, + ACTIONS(8681), 1, + anon_sym_COMMA, + ACTIONS(12315), 1, anon_sym_SEMI, - STATE(8197), 1, + STATE(7788), 1, aux_sym_field_declaration_repeat1, - STATE(9903), 1, + STATE(9786), 1, sym_attribute_specifier, - [351827] = 6, + [314771] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 1, - anon_sym_COMMA, - ACTIONS(9073), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(12796), 1, + ACTIONS(8681), 1, + anon_sym_COMMA, + ACTIONS(12317), 1, anon_sym_SEMI, - STATE(8197), 1, + STATE(7797), 1, aux_sym_field_declaration_repeat1, - STATE(10179), 1, + STATE(9601), 1, sym_attribute_specifier, - [351846] = 6, + [314790] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 1, - anon_sym_COMMA, - ACTIONS(9073), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(12798), 1, + ACTIONS(8681), 1, + anon_sym_COMMA, + ACTIONS(8741), 1, anon_sym_SEMI, - STATE(8197), 1, + STATE(7799), 1, aux_sym_field_declaration_repeat1, - STATE(10234), 1, + STATE(9367), 1, sym_attribute_specifier, - [351865] = 6, + [314809] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 1, - anon_sym_COMMA, - ACTIONS(9073), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(12800), 1, + ACTIONS(8681), 1, + anon_sym_COMMA, + ACTIONS(12319), 1, anon_sym_SEMI, - STATE(8197), 1, + STATE(8091), 1, aux_sym_field_declaration_repeat1, - STATE(9974), 1, + STATE(9388), 1, sym_attribute_specifier, - [351884] = 6, + [314828] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12117), 1, + anon_sym_COLON_COLON, + ACTIONS(12119), 1, + anon_sym_inline, + ACTIONS(12321), 1, + sym_identifier, + STATE(9650), 1, + sym_nested_namespace_specifier, + STATE(9954), 1, + sym_namespace_specifier, + [314847] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, + ACTIONS(3899), 1, anon_sym_LBRACE, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(9841), 1, + ACTIONS(9379), 1, anon_sym_RPAREN, - STATE(3134), 1, + STATE(2615), 1, sym_argument_list, - STATE(5212), 1, + STATE(4384), 1, sym_initializer_list, - [351903] = 5, + [314866] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10157), 1, - anon_sym_LPAREN2, - ACTIONS(12804), 1, - anon_sym_COLON_COLON, - STATE(9346), 1, - sym_argument_list, - ACTIONS(12802), 2, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8681), 1, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [351920] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11662), 1, - anon_sym_LBRACK, - ACTIONS(12806), 1, - anon_sym_RPAREN, - STATE(4268), 1, - sym_parameter_list, - STATE(7421), 1, - sym_function_declarator_seq, - [351939] = 3, + ACTIONS(12323), 1, + anon_sym_SEMI, + STATE(8091), 1, + aux_sym_field_declaration_repeat1, + STATE(9144), 1, + sym_attribute_specifier, + [314885] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12112), 1, - anon_sym_EQ, - ACTIONS(11336), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [351952] = 6, + ACTIONS(12117), 1, + anon_sym_COLON_COLON, + ACTIONS(12119), 1, + anon_sym_inline, + ACTIONS(12325), 1, + sym_identifier, + STATE(8248), 1, + sym_namespace_specifier, + STATE(8702), 1, + sym_nested_namespace_specifier, + [314904] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(6291), 1, + ACTIONS(8299), 1, anon_sym_LPAREN2, - ACTIONS(9675), 1, - anon_sym_RPAREN, - STATE(3134), 1, + ACTIONS(12329), 1, + anon_sym_COLON_COLON, + STATE(8976), 1, sym_argument_list, - STATE(5212), 1, - sym_initializer_list, - [351971] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10114), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10118), 1, - anon_sym_EQ, - ACTIONS(12808), 1, - sym_identifier, - ACTIONS(10116), 2, + ACTIONS(12327), 2, anon_sym_COMMA, - anon_sym_GT2, - [351988] = 6, + anon_sym_RBRACK_RBRACK, + [314921] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 1, - anon_sym_COMMA, - ACTIONS(9073), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(12810), 1, + ACTIONS(8681), 1, + anon_sym_COMMA, + ACTIONS(12331), 1, anon_sym_SEMI, - STATE(8155), 1, + STATE(8091), 1, aux_sym_field_declaration_repeat1, - STATE(10192), 1, + STATE(9404), 1, sym_attribute_specifier, - [352007] = 6, + [314940] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 1, - anon_sym_COMMA, - ACTIONS(9073), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(12812), 1, + ACTIONS(8681), 1, + anon_sym_COMMA, + ACTIONS(12333), 1, anon_sym_SEMI, - STATE(8156), 1, + STATE(8091), 1, aux_sym_field_declaration_repeat1, - STATE(10199), 1, + STATE(9145), 1, sym_attribute_specifier, - [352026] = 6, + [314959] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 1, - anon_sym_COMMA, - ACTIONS(9073), 1, - anon_sym___attribute__, - ACTIONS(12814), 1, - anon_sym_SEMI, - STATE(8197), 1, - aux_sym_field_declaration_repeat1, - STATE(10207), 1, - sym_attribute_specifier, - [352045] = 6, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(7517), 1, + anon_sym_LT, + STATE(8227), 1, + sym_template_argument_list, + ACTIONS(12335), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + [314976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 1, - anon_sym_COMMA, - ACTIONS(9073), 1, - anon_sym___attribute__, - ACTIONS(12816), 1, - anon_sym_SEMI, - STATE(8150), 1, - aux_sym_field_declaration_repeat1, - STATE(9987), 1, - sym_attribute_specifier, - [352064] = 6, + ACTIONS(12337), 2, + anon_sym_class, + anon_sym_typename, + STATE(8987), 3, + sym_type_parameter_declaration, + sym_variadic_type_parameter_declaration, + sym_optional_type_parameter_declaration, + [314989] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 1, - anon_sym_COMMA, - ACTIONS(9073), 1, - anon_sym___attribute__, - ACTIONS(12818), 1, - anon_sym_SEMI, - STATE(8151), 1, - aux_sym_field_declaration_repeat1, - STATE(9997), 1, - sym_attribute_specifier, - [352083] = 6, + ACTIONS(11283), 1, + sym_identifier, + ACTIONS(12339), 1, + aux_sym_preproc_if_token2, + STATE(7683), 1, + sym_enumerator, + STATE(8019), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8020), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [315008] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 1, - anon_sym_COMMA, - ACTIONS(9073), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(12820), 1, + ACTIONS(8681), 1, + anon_sym_COMMA, + ACTIONS(12341), 1, anon_sym_SEMI, - STATE(8197), 1, + STATE(8091), 1, aux_sym_field_declaration_repeat1, - STATE(10010), 1, + STATE(9379), 1, sym_attribute_specifier, - [352102] = 6, + [315027] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 1, - anon_sym_COMMA, - ACTIONS(9073), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(9091), 1, + ACTIONS(8681), 1, + anon_sym_COMMA, + ACTIONS(12343), 1, anon_sym_SEMI, - STATE(8153), 1, + STATE(8091), 1, aux_sym_field_declaration_repeat1, - STATE(10046), 1, + STATE(9913), 1, sym_attribute_specifier, - [352121] = 6, + [315046] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 1, - anon_sym_COMMA, - ACTIONS(9073), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(12822), 1, + ACTIONS(8681), 1, + anon_sym_COMMA, + ACTIONS(12345), 1, anon_sym_SEMI, - STATE(8197), 1, + STATE(8091), 1, aux_sym_field_declaration_repeat1, - STATE(10062), 1, + STATE(9167), 1, sym_attribute_specifier, - [352140] = 6, + [315065] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 1, + ACTIONS(8549), 1, + sym_auto, + ACTIONS(8551), 1, + anon_sym_decltype, + STATE(3704), 1, + sym_decltype_auto, + ACTIONS(12347), 2, anon_sym_COMMA, - ACTIONS(9073), 1, - anon_sym___attribute__, - ACTIONS(12824), 1, - anon_sym_SEMI, - STATE(8197), 1, - aux_sym_field_declaration_repeat1, - STATE(10067), 1, - sym_attribute_specifier, - [352159] = 6, + anon_sym_GT2, + [315082] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 1, - anon_sym_COMMA, - ACTIONS(9073), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(12826), 1, + ACTIONS(8681), 1, + anon_sym_COMMA, + ACTIONS(12349), 1, anon_sym_SEMI, - STATE(8197), 1, + STATE(8091), 1, aux_sym_field_declaration_repeat1, - STATE(10090), 1, + STATE(9662), 1, sym_attribute_specifier, - [352178] = 6, + [315101] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 1, - anon_sym_COMMA, - ACTIONS(9073), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(12828), 1, + ACTIONS(8681), 1, + anon_sym_COMMA, + ACTIONS(12351), 1, anon_sym_SEMI, - STATE(8197), 1, + STATE(8091), 1, aux_sym_field_declaration_repeat1, - STATE(10091), 1, + STATE(9666), 1, sym_attribute_specifier, - [352197] = 6, + [315120] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 1, - anon_sym_COMMA, - ACTIONS(9073), 1, + ACTIONS(12117), 1, + anon_sym_COLON_COLON, + ACTIONS(12119), 1, + anon_sym_inline, + ACTIONS(12325), 1, + sym_identifier, + STATE(8294), 1, + sym_namespace_specifier, + STATE(8721), 1, + sym_nested_namespace_specifier, + [315139] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(12830), 1, + ACTIONS(8681), 1, + anon_sym_COMMA, + ACTIONS(12353), 1, anon_sym_SEMI, - STATE(8197), 1, + STATE(8091), 1, aux_sym_field_declaration_repeat1, - STATE(10187), 1, + STATE(9406), 1, sym_attribute_specifier, - [352216] = 6, + [315158] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 1, + ACTIONS(12117), 1, + anon_sym_COLON_COLON, + ACTIONS(12119), 1, + anon_sym_inline, + ACTIONS(12355), 1, + sym_identifier, + STATE(9946), 1, + sym_nested_namespace_specifier, + STATE(9954), 1, + sym_namespace_specifier, + [315177] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12357), 1, anon_sym_COMMA, - ACTIONS(9073), 1, + ACTIONS(12143), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_identifier, + [315190] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(12832), 1, + ACTIONS(8681), 1, + anon_sym_COMMA, + ACTIONS(12359), 1, anon_sym_SEMI, - STATE(8197), 1, + STATE(8091), 1, aux_sym_field_declaration_repeat1, - STATE(10290), 1, + STATE(9697), 1, sym_attribute_specifier, - [352235] = 6, + [315209] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 1, - anon_sym_COMMA, - ACTIONS(9073), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(12834), 1, + ACTIONS(8681), 1, + anon_sym_COMMA, + ACTIONS(12361), 1, anon_sym_SEMI, - STATE(8197), 1, + STATE(8091), 1, aux_sym_field_declaration_repeat1, - STATE(10296), 1, + STATE(9335), 1, sym_attribute_specifier, - [352254] = 6, + [315228] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 1, + ACTIONS(9736), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9740), 1, + anon_sym_EQ, + ACTIONS(12363), 1, + sym_identifier, + ACTIONS(9738), 2, anon_sym_COMMA, - ACTIONS(9073), 1, + anon_sym_GT2, + [315245] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(12836), 1, + ACTIONS(8681), 1, + anon_sym_COMMA, + ACTIONS(12365), 1, anon_sym_SEMI, - STATE(8197), 1, + STATE(7802), 1, aux_sym_field_declaration_repeat1, - STATE(10350), 1, + STATE(9299), 1, sym_attribute_specifier, - [352273] = 6, + [315264] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 1, - anon_sym_COMMA, - ACTIONS(9073), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(12838), 1, + ACTIONS(8681), 1, + anon_sym_COMMA, + ACTIONS(12367), 1, anon_sym_SEMI, - STATE(8197), 1, + STATE(8091), 1, aux_sym_field_declaration_repeat1, - STATE(10365), 1, + STATE(9732), 1, sym_attribute_specifier, - [352292] = 5, + [315283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8597), 1, - sym_auto, - ACTIONS(8599), 1, - anon_sym_decltype, - STATE(4763), 1, - sym_decltype_auto, - ACTIONS(12840), 2, + ACTIONS(11717), 1, + anon_sym_EQ, + ACTIONS(10964), 4, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, anon_sym_GT2, - [352309] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12842), 2, - anon_sym_class, - anon_sym_typename, - STATE(9449), 3, - sym_type_parameter_declaration, - sym_variadic_type_parameter_declaration, - sym_optional_type_parameter_declaration, - [352322] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12522), 1, - anon_sym_COLON_COLON, - ACTIONS(12524), 1, - anon_sym_inline, - ACTIONS(12844), 1, - sym_identifier, - STATE(9709), 1, - sym_namespace_specifier, - STATE(10364), 1, - sym_nested_namespace_specifier, - [352341] = 6, + [315296] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, + ACTIONS(3899), 1, anon_sym_LBRACE, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_LPAREN2, - ACTIONS(9783), 1, + ACTIONS(9530), 1, anon_sym_RPAREN, - STATE(3134), 1, + STATE(2615), 1, sym_argument_list, - STATE(5212), 1, + STATE(4384), 1, sym_initializer_list, - [352360] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12116), 1, - anon_sym_EQ, - ACTIONS(11336), 4, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [352373] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12522), 1, - anon_sym_COLON_COLON, - ACTIONS(12524), 1, - anon_sym_inline, - ACTIONS(12846), 1, - sym_identifier, - STATE(9709), 1, - sym_namespace_specifier, - STATE(9956), 1, - sym_nested_namespace_specifier, - [352392] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12850), 1, - anon_sym_COLON_COLON, - ACTIONS(12848), 4, - sym_identifier, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - [352405] = 5, + [315315] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7118), 1, + ACTIONS(7100), 1, anon_sym_LBRACK, - ACTIONS(7973), 1, + ACTIONS(7517), 1, anon_sym_LT, - STATE(5689), 1, + STATE(4954), 1, sym_template_argument_list, - ACTIONS(7116), 2, + ACTIONS(7098), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - [352422] = 3, + [315332] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12852), 1, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8681), 1, anon_sym_COMMA, - ACTIONS(12534), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_identifier, - [352435] = 6, + ACTIONS(12369), 1, + anon_sym_SEMI, + STATE(7781), 1, + aux_sym_field_declaration_repeat1, + STATE(9321), 1, + sym_attribute_specifier, + [315351] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12522), 1, - anon_sym_COLON_COLON, - ACTIONS(12524), 1, - anon_sym_inline, - ACTIONS(12854), 1, - sym_identifier, - STATE(9709), 1, - sym_namespace_specifier, - STATE(10619), 1, - sym_nested_namespace_specifier, - [352454] = 6, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8681), 1, + anon_sym_COMMA, + ACTIONS(12371), 1, + anon_sym_SEMI, + STATE(8091), 1, + aux_sym_field_declaration_repeat1, + STATE(9165), 1, + sym_attribute_specifier, + [315370] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12522), 1, - anon_sym_COLON_COLON, - ACTIONS(12524), 1, - anon_sym_inline, - ACTIONS(12856), 1, - sym_identifier, - STATE(9709), 1, - sym_namespace_specifier, - STATE(9716), 1, - sym_nested_namespace_specifier, - [352473] = 6, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8681), 1, + anon_sym_COMMA, + ACTIONS(12373), 1, + anon_sym_SEMI, + STATE(7784), 1, + aux_sym_field_declaration_repeat1, + STATE(9740), 1, + sym_attribute_specifier, + [315389] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(6291), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(9813), 1, - anon_sym_RPAREN, - STATE(3134), 1, - sym_argument_list, - STATE(5212), 1, - sym_initializer_list, - [352492] = 6, + ACTIONS(11235), 1, + anon_sym_COLON, + ACTIONS(11401), 1, + anon_sym_LBRACK, + STATE(4616), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + [315408] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12522), 1, - anon_sym_COLON_COLON, - ACTIONS(12524), 1, - anon_sym_inline, - ACTIONS(12858), 1, - sym_identifier, - STATE(9709), 1, - sym_namespace_specifier, - STATE(10278), 1, - sym_nested_namespace_specifier, - [352511] = 5, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11241), 1, + anon_sym_COLON, + ACTIONS(11401), 1, + anon_sym_LBRACK, + STATE(4616), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + [315427] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7588), 1, - anon_sym_LT, - STATE(8907), 1, - sym_template_argument_list, - ACTIONS(12860), 2, - anon_sym_LPAREN2, - anon_sym_LBRACE, - [352528] = 6, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8681), 1, + anon_sym_COMMA, + ACTIONS(8749), 1, + anon_sym_SEMI, + STATE(7826), 1, + aux_sym_field_declaration_repeat1, + STATE(9129), 1, + sym_attribute_specifier, + [315446] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12522), 1, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8681), 1, + anon_sym_COMMA, + ACTIONS(12375), 1, + anon_sym_SEMI, + STATE(7794), 1, + aux_sym_field_declaration_repeat1, + STATE(9323), 1, + sym_attribute_specifier, + [315465] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12117), 1, anon_sym_COLON_COLON, - ACTIONS(12524), 1, + ACTIONS(12119), 1, anon_sym_inline, - ACTIONS(12862), 1, + ACTIONS(12377), 1, sym_identifier, - STATE(9071), 1, - sym_namespace_specifier, - STATE(9599), 1, + STATE(9766), 1, sym_nested_namespace_specifier, - [352547] = 6, + STATE(9954), 1, + sym_namespace_specifier, + [315484] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(11662), 1, + ACTIONS(11249), 1, + anon_sym_COLON, + ACTIONS(11401), 1, anon_sym_LBRACK, - ACTIONS(12864), 1, - anon_sym_RPAREN, - STATE(4268), 1, + STATE(4616), 1, sym_parameter_list, - STATE(7421), 1, + STATE(7104), 1, sym_function_declarator_seq, - [352566] = 6, + [315503] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12522), 1, - anon_sym_COLON_COLON, - ACTIONS(12524), 1, - anon_sym_inline, - ACTIONS(12862), 1, - sym_identifier, - STATE(8820), 1, - sym_namespace_specifier, - STATE(9320), 1, - sym_nested_namespace_specifier, - [352585] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7118), 1, + ACTIONS(7100), 1, anon_sym_LBRACK, - ACTIONS(7973), 1, + ACTIONS(7517), 1, anon_sym_LT, - STATE(5466), 1, + STATE(4932), 1, sym_template_argument_list, - ACTIONS(7116), 2, + ACTIONS(7098), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - [352602] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(9966), 1, - anon_sym_RPAREN, - STATE(3134), 1, - sym_argument_list, - STATE(5212), 1, - sym_initializer_list, - [352621] = 6, + [315520] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 1, - anon_sym_COMMA, - ACTIONS(9073), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(12866), 1, + ACTIONS(8681), 1, + anon_sym_COMMA, + ACTIONS(12379), 1, anon_sym_SEMI, - STATE(8197), 1, + STATE(8091), 1, aux_sym_field_declaration_repeat1, - STATE(10650), 1, + STATE(9326), 1, sym_attribute_specifier, - [352640] = 6, + [315539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11592), 1, + ACTIONS(12383), 1, + anon_sym_COLON_COLON, + ACTIONS(12381), 4, sym_identifier, - ACTIONS(12868), 1, - aux_sym_preproc_if_token2, - STATE(8009), 1, - sym_enumerator, - STATE(8245), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(8248), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [352659] = 5, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + [315552] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8597), 1, - sym_auto, - ACTIONS(8599), 1, - anon_sym_decltype, - STATE(4763), 1, - sym_decltype_auto, - ACTIONS(12870), 2, - anon_sym_COMMA, - anon_sym_GT2, - [352676] = 6, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11253), 1, + anon_sym_COLON, + ACTIONS(11401), 1, + anon_sym_LBRACK, + STATE(4616), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + [315571] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 1, - anon_sym_COMMA, - ACTIONS(9073), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(9093), 1, + ACTIONS(8681), 1, + anon_sym_COMMA, + ACTIONS(8707), 1, anon_sym_SEMI, - STATE(8178), 1, + STATE(7806), 1, aux_sym_field_declaration_repeat1, - STATE(10394), 1, + STATE(9639), 1, sym_attribute_specifier, - [352695] = 6, + [315590] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 1, - anon_sym_COMMA, - ACTIONS(9073), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(12872), 1, + ACTIONS(8681), 1, + anon_sym_COMMA, + ACTIONS(12385), 1, anon_sym_SEMI, - STATE(8130), 1, + STATE(8091), 1, aux_sym_field_declaration_repeat1, - STATE(10293), 1, + STATE(9607), 1, sym_attribute_specifier, - [352714] = 6, + [315609] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 1, - anon_sym_COMMA, - ACTIONS(9073), 1, - anon_sym___attribute__, - ACTIONS(12874), 1, - anon_sym_SEMI, - STATE(8136), 1, - aux_sym_field_declaration_repeat1, - STATE(9763), 1, - sym_attribute_specifier, - [352733] = 6, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + ACTIONS(11243), 1, + anon_sym_COLON, + ACTIONS(11401), 1, + anon_sym_LBRACK, + STATE(4616), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + [315628] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 1, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8681), 1, anon_sym_COMMA, - ACTIONS(9071), 1, + ACTIONS(12387), 1, anon_sym_SEMI, - ACTIONS(9073), 1, - anon_sym___attribute__, - STATE(8158), 1, + STATE(8091), 1, aux_sym_field_declaration_repeat1, - STATE(10275), 1, + STATE(9172), 1, sym_attribute_specifier, - [352752] = 5, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(12876), 1, - anon_sym_DQUOTE, - ACTIONS(12878), 1, - aux_sym_string_literal_token1, - ACTIONS(12880), 1, - sym_escape_sequence, - STATE(8195), 1, - aux_sym_string_literal_repeat1, - [352768] = 5, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(12882), 1, - anon_sym_SQUOTE, - ACTIONS(12884), 1, - aux_sym_char_literal_token1, - ACTIONS(12886), 1, - sym_escape_sequence, - STATE(8461), 1, - aux_sym_char_literal_repeat1, - [352784] = 4, + [315647] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(12888), 1, + ACTIONS(8681), 1, + anon_sym_COMMA, + ACTIONS(12389), 1, anon_sym_SEMI, - STATE(5840), 2, + STATE(8091), 1, + aux_sym_field_declaration_repeat1, + STATE(9726), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [352798] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7756), 1, - anon_sym_COLON_COLON, - ACTIONS(7754), 3, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - [352810] = 5, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(12890), 1, - aux_sym_preproc_include_token2, - ACTIONS(12892), 1, - anon_sym_LPAREN, - ACTIONS(12894), 1, - sym_preproc_arg, - STATE(9146), 1, - sym_preproc_params, - [352826] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3778), 1, - anon_sym_LBRACE, - ACTIONS(6394), 1, - anon_sym_LPAREN2, - STATE(3369), 1, - sym_argument_list, - STATE(5406), 1, - sym_initializer_list, - [352842] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(12896), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12898), 1, - anon_sym_GT2, - STATE(9114), 1, - aux_sym_template_argument_list_repeat1, - [352858] = 5, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(12878), 1, - aux_sym_string_literal_token1, - ACTIONS(12900), 1, - anon_sym_DQUOTE, - ACTIONS(12902), 1, - sym_escape_sequence, - STATE(8479), 1, - aux_sym_string_literal_repeat1, - [352874] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_COLON, - ACTIONS(6803), 1, - anon_sym_LBRACE, - STATE(3780), 1, - sym_field_declaration_list, - STATE(9175), 1, - sym_base_class_clause, - [352890] = 5, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(12884), 1, - aux_sym_char_literal_token1, - ACTIONS(12886), 1, - sym_escape_sequence, - ACTIONS(12904), 1, - anon_sym_SQUOTE, - STATE(8461), 1, - aux_sym_char_literal_repeat1, - [352906] = 5, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(12878), 1, - aux_sym_string_literal_token1, - ACTIONS(12902), 1, - sym_escape_sequence, - ACTIONS(12906), 1, - anon_sym_DQUOTE, - STATE(8479), 1, - aux_sym_string_literal_repeat1, - [352922] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12908), 1, - anon_sym_COMMA, - STATE(8196), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(12911), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [352936] = 4, + [315666] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12913), 1, - anon_sym_COMMA, - STATE(8197), 1, - aux_sym_field_declaration_repeat1, - ACTIONS(12916), 2, - anon_sym_SEMI, + ACTIONS(7875), 1, anon_sym___attribute__, - [352950] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7588), 1, - anon_sym_LT, - ACTIONS(12918), 1, - anon_sym_SEMI, - STATE(6753), 1, - sym_template_argument_list, - [352966] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12920), 1, - anon_sym_LPAREN2, - ACTIONS(12922), 1, - anon_sym_LBRACE, - STATE(7062), 1, - sym_requirement_seq, - STATE(9408), 1, - sym_requires_parameter_list, - [352982] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12924), 1, + ACTIONS(8681), 1, anon_sym_COMMA, - STATE(8362), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(12926), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [352996] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11372), 1, - anon_sym_LBRACE, - STATE(2557), 1, - sym_compound_statement, - ACTIONS(11336), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [353010] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(12928), 1, + ACTIONS(8751), 1, anon_sym_SEMI, - STATE(8210), 2, + STATE(7836), 1, + aux_sym_field_declaration_repeat1, + STATE(9146), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [353024] = 4, + [315685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12930), 1, + ACTIONS(11789), 1, + anon_sym_EQ, + ACTIONS(10964), 4, anon_sym_COMMA, - STATE(8388), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(12932), 2, anon_sym_RPAREN, - anon_sym_COLON, - [353038] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_COLON, - ACTIONS(6803), 1, - anon_sym_LBRACE, - STATE(3618), 1, - sym_field_declaration_list, - STATE(9239), 1, - sym_base_class_clause, - [353054] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(12896), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12934), 1, - anon_sym_GT2, - STATE(9006), 1, - aux_sym_template_argument_list_repeat1, - [353070] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7588), 1, - anon_sym_LT, - ACTIONS(12936), 1, - anon_sym_SEMI, - STATE(6753), 1, - sym_template_argument_list, - [353086] = 5, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(12878), 1, - aux_sym_string_literal_token1, - ACTIONS(12938), 1, - anon_sym_DQUOTE, - ACTIONS(12940), 1, - sym_escape_sequence, - STATE(8231), 1, - aux_sym_string_literal_repeat1, - [353102] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11372), 1, - anon_sym_LBRACE, - STATE(2469), 1, - sym_compound_statement, - ACTIONS(11336), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [353116] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(12942), 1, - anon_sym_SEMI, - STATE(8214), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [353130] = 4, + [315698] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(12942), 1, + ACTIONS(8681), 1, + anon_sym_COMMA, + ACTIONS(12391), 1, anon_sym_SEMI, - STATE(5840), 2, + STATE(7792), 1, + aux_sym_field_declaration_repeat1, + STATE(9311), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [353144] = 4, + [315717] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(12944), 1, + ACTIONS(8681), 1, + anon_sym_COMMA, + ACTIONS(12393), 1, anon_sym_SEMI, - STATE(8343), 2, + STATE(7796), 1, + aux_sym_field_declaration_repeat1, + STATE(9599), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [353158] = 3, + [315736] = 6, ACTIONS(3), 1, sym_comment, - STATE(7819), 1, - sym_access_specifier, - ACTIONS(12946), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - [353170] = 4, + ACTIONS(12117), 1, + anon_sym_COLON_COLON, + ACTIONS(12119), 1, + anon_sym_inline, + ACTIONS(12395), 1, + sym_identifier, + STATE(9130), 1, + sym_nested_namespace_specifier, + STATE(9954), 1, + sym_namespace_specifier, + [315755] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11372), 1, - anon_sym_LBRACE, - STATE(2473), 1, - sym_compound_statement, - ACTIONS(11336), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [353184] = 4, + ACTIONS(12117), 1, + anon_sym_COLON_COLON, + ACTIONS(12119), 1, + anon_sym_inline, + ACTIONS(12397), 1, + sym_identifier, + STATE(9787), 1, + sym_nested_namespace_specifier, + STATE(9954), 1, + sym_namespace_specifier, + [315774] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(12948), 1, + ACTIONS(8681), 1, + anon_sym_COMMA, + ACTIONS(12399), 1, anon_sym_SEMI, - STATE(5840), 2, + STATE(8091), 1, + aux_sym_field_declaration_repeat1, + STATE(9501), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [353198] = 5, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(12892), 1, - anon_sym_LPAREN, - ACTIONS(12950), 1, - aux_sym_preproc_include_token2, - ACTIONS(12952), 1, - sym_preproc_arg, - STATE(9145), 1, - sym_preproc_params, - [353214] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - ACTIONS(11662), 1, - anon_sym_LBRACK, - STATE(4268), 1, - sym_parameter_list, - STATE(7421), 1, - sym_function_declarator_seq, - [353230] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11309), 1, - anon_sym_LBRACE, - STATE(4188), 1, - sym_compound_statement, - ACTIONS(11336), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [353244] = 5, + [315793] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(2856), 1, - anon_sym_LBRACE, - ACTIONS(6926), 1, + sym_comment, + ACTIONS(10418), 1, anon_sym_LPAREN2, - STATE(4043), 1, - sym_argument_list, - STATE(4044), 1, - sym_initializer_list, - [353260] = 5, + ACTIONS(11401), 1, + anon_sym_LBRACK, + ACTIONS(12401), 1, + anon_sym_RPAREN, + STATE(4330), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + [315812] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12954), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12956), 1, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(8681), 1, anon_sym_COMMA, - ACTIONS(12958), 1, - anon_sym_LBRACE, - STATE(9124), 1, - aux_sym_base_class_clause_repeat1, - [353276] = 5, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(12878), 1, - aux_sym_string_literal_token1, - ACTIONS(12960), 1, - anon_sym_DQUOTE, - ACTIONS(12962), 1, - sym_escape_sequence, - STATE(8226), 1, - aux_sym_string_literal_repeat1, - [353292] = 5, + ACTIONS(12403), 1, + anon_sym_SEMI, + STATE(8091), 1, + aux_sym_field_declaration_repeat1, + STATE(9508), 1, + sym_attribute_specifier, + [315831] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3824), 1, - anon_sym_LBRACE, - ACTIONS(6720), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - STATE(3790), 1, - sym_argument_list, - STATE(5542), 1, - sym_initializer_list, - [353308] = 4, + ACTIONS(11401), 1, + anon_sym_LBRACK, + ACTIONS(12405), 1, + anon_sym_RPAREN, + STATE(4330), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + [315850] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11305), 1, - anon_sym_LBRACE, - STATE(4654), 1, - sym_compound_statement, - ACTIONS(11336), 2, + ACTIONS(10418), 1, anon_sym_LPAREN2, + ACTIONS(11247), 1, + anon_sym_COLON, + ACTIONS(11401), 1, anon_sym_LBRACK, - [353322] = 5, + STATE(4616), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + [315869] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, + ACTIONS(5702), 1, anon_sym_COLON, - ACTIONS(8311), 1, + ACTIONS(9726), 1, anon_sym_LBRACE, - STATE(4691), 1, + STATE(5875), 1, sym_field_declaration_list, - STATE(9220), 1, + STATE(8898), 1, sym_base_class_clause, - [353338] = 5, + [315885] = 5, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(12407), 1, + anon_sym_SQUOTE, + ACTIONS(12409), 1, + aux_sym_char_literal_token1, + ACTIONS(12411), 1, + sym_escape_sequence, + STATE(8055), 1, + aux_sym_char_literal_repeat1, + [315901] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, + ACTIONS(5702), 1, anon_sym_COLON, - ACTIONS(6718), 1, + ACTIONS(6910), 1, anon_sym_LBRACE, - STATE(3533), 1, + STATE(3268), 1, sym_field_declaration_list, - STATE(9471), 1, + STATE(8815), 1, sym_base_class_clause, - [353354] = 5, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(12884), 1, - aux_sym_char_literal_token1, - ACTIONS(12886), 1, - sym_escape_sequence, - ACTIONS(12964), 1, - anon_sym_SQUOTE, - STATE(8461), 1, - aux_sym_char_literal_repeat1, - [353370] = 5, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(12878), 1, - aux_sym_string_literal_token1, - ACTIONS(12902), 1, - sym_escape_sequence, - ACTIONS(12966), 1, - anon_sym_DQUOTE, - STATE(8479), 1, - aux_sym_string_literal_repeat1, - [353386] = 5, + [315917] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10673), 1, + ACTIONS(10277), 1, anon_sym_LBRACE, - ACTIONS(12920), 1, + ACTIONS(12413), 1, anon_sym_LPAREN2, - STATE(4372), 1, + STATE(3763), 1, sym_requirement_seq, - STATE(9237), 1, + STATE(8717), 1, sym_requires_parameter_list, - [353402] = 4, + [315933] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8875), 1, + anon_sym_COMMA, + ACTIONS(12415), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12417), 1, + anon_sym_GT2, + STATE(8427), 1, + aux_sym_template_argument_list_repeat1, + [315949] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(7517), 1, + anon_sym_LT, + ACTIONS(12419), 1, + anon_sym_SEMI, + STATE(1833), 1, + sym_template_argument_list, + [315965] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11380), 1, + ACTIONS(10903), 1, anon_sym_LBRACE, - STATE(7010), 1, + STATE(1869), 1, sym_compound_statement, - ACTIONS(11336), 2, + ACTIONS(10964), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [353416] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(12968), 1, - anon_sym_SEMI, - STATE(8239), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [353430] = 5, - ACTIONS(10969), 1, + [315979] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12884), 1, + ACTIONS(12409), 1, aux_sym_char_literal_token1, - ACTIONS(12886), 1, + ACTIONS(12411), 1, sym_escape_sequence, - ACTIONS(12970), 1, + ACTIONS(12421), 1, anon_sym_SQUOTE, - STATE(8461), 1, + STATE(8055), 1, aux_sym_char_literal_repeat1, - [353446] = 5, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(12878), 1, - aux_sym_string_literal_token1, - ACTIONS(12902), 1, - sym_escape_sequence, - ACTIONS(12972), 1, - anon_sym_DQUOTE, - STATE(8479), 1, - aux_sym_string_literal_repeat1, - [353462] = 4, + [315995] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(12974), 1, + ACTIONS(12423), 1, anon_sym_SEMI, - STATE(8280), 2, + STATE(7852), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [353476] = 4, + [316009] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(12974), 1, + ACTIONS(12423), 1, anon_sym_SEMI, - STATE(5840), 2, + STATE(5618), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [353490] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_COLON, - ACTIONS(6718), 1, - anon_sym_LBRACE, - STATE(3538), 1, - sym_field_declaration_list, - STATE(9520), 1, - sym_base_class_clause, - [353506] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(12896), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12976), 1, - anon_sym_GT2, - STATE(8985), 1, - aux_sym_template_argument_list_repeat1, - [353522] = 5, + [316023] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5568), 1, + ACTIONS(5482), 1, anon_sym_LBRACE, - ACTIONS(12978), 1, + ACTIONS(12425), 1, anon_sym_COLON_COLON, - ACTIONS(12980), 1, + ACTIONS(12427), 1, anon_sym_EQ, - STATE(544), 1, + STATE(546), 1, sym_declaration_list, - [353538] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11380), 1, - anon_sym_LBRACE, - STATE(6999), 1, - sym_compound_statement, - ACTIONS(11336), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [353552] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(12982), 1, - anon_sym_SEMI, - STATE(8241), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [353566] = 4, + [316039] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(12982), 1, + ACTIONS(12429), 1, anon_sym_SEMI, - STATE(5840), 2, + STATE(7855), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [353580] = 4, + [316053] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11380), 1, + ACTIONS(10903), 1, anon_sym_LBRACE, - STATE(7053), 1, + STATE(1854), 1, sym_compound_statement, - ACTIONS(11336), 2, + ACTIONS(10964), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [353594] = 4, + [316067] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(12984), 1, + ACTIONS(12431), 1, anon_sym_SEMI, - STATE(5840), 2, + STATE(5618), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [353608] = 5, + [316081] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10647), 1, + ACTIONS(10237), 1, anon_sym_LBRACE, - ACTIONS(12920), 1, + ACTIONS(12413), 1, anon_sym_LPAREN2, - STATE(6232), 1, + STATE(5701), 1, sym_requirement_seq, - STATE(9584), 1, + STATE(8681), 1, sym_requires_parameter_list, - [353624] = 5, + [316097] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12956), 1, - anon_sym_COMMA, - ACTIONS(12986), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12988), 1, + ACTIONS(10958), 1, anon_sym_LBRACE, - STATE(9052), 1, - aux_sym_base_class_clause_repeat1, - [353640] = 4, + STATE(5703), 1, + sym_compound_statement, + ACTIONS(10964), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [316111] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11307), 1, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(12433), 1, + anon_sym_SEMI, + STATE(5618), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [316125] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10889), 1, anon_sym_LBRACE, - STATE(6192), 1, + STATE(3711), 1, sym_compound_statement, - ACTIONS(11336), 2, + ACTIONS(10964), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [353654] = 5, + [316139] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(12990), 1, - aux_sym_preproc_if_token2, - STATE(7992), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(10024), 1, - sym_enumerator, - [353670] = 3, - ACTIONS(3), 1, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12435), 1, + anon_sym_EQ, + STATE(8139), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [316153] = 5, + ACTIONS(10479), 1, sym_comment, - STATE(7865), 1, - sym_access_specifier, - ACTIONS(12946), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - [353682] = 5, - ACTIONS(10969), 1, + ACTIONS(12437), 1, + anon_sym_DQUOTE, + ACTIONS(12439), 1, + aux_sym_string_literal_token1, + ACTIONS(12441), 1, + sym_escape_sequence, + STATE(7863), 1, + aux_sym_string_literal_repeat1, + [316169] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12878), 1, + ACTIONS(12439), 1, aux_sym_string_literal_token1, - ACTIONS(12992), 1, + ACTIONS(12443), 1, anon_sym_DQUOTE, - ACTIONS(12994), 1, + ACTIONS(12445), 1, sym_escape_sequence, - STATE(8252), 1, + STATE(8070), 1, aux_sym_string_literal_repeat1, - [353698] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11592), 1, - sym_identifier, - ACTIONS(12996), 1, - aux_sym_preproc_if_token2, - STATE(7959), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [353712] = 5, + [316185] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2289), 1, + ACTIONS(2371), 1, anon_sym_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6858), 1, anon_sym_LPAREN2, - STATE(3369), 1, - sym_argument_list, - STATE(3433), 1, + STATE(3346), 1, sym_initializer_list, - [353728] = 5, + STATE(3355), 1, + sym_argument_list, + [316201] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, + ACTIONS(5702), 1, anon_sym_COLON, - ACTIONS(6620), 1, + ACTIONS(6810), 1, anon_sym_LBRACE, - STATE(3400), 1, + STATE(3201), 1, sym_field_declaration_list, - STATE(9177), 1, + STATE(9021), 1, sym_base_class_clause, - [353744] = 5, - ACTIONS(10969), 1, + [316217] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12884), 1, + ACTIONS(12409), 1, aux_sym_char_literal_token1, - ACTIONS(12886), 1, + ACTIONS(12411), 1, sym_escape_sequence, - ACTIONS(12998), 1, + ACTIONS(12447), 1, anon_sym_SQUOTE, - STATE(8461), 1, + STATE(8055), 1, aux_sym_char_literal_repeat1, - [353760] = 5, - ACTIONS(10969), 1, + [316233] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12878), 1, + ACTIONS(12439), 1, aux_sym_string_literal_token1, - ACTIONS(12902), 1, + ACTIONS(12445), 1, sym_escape_sequence, - ACTIONS(13000), 1, + ACTIONS(12449), 1, anon_sym_DQUOTE, - STATE(8479), 1, + STATE(8070), 1, aux_sym_string_literal_repeat1, - [353776] = 4, + [316249] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(13002), 1, + ACTIONS(12451), 1, anon_sym_SEMI, - STATE(8290), 2, + STATE(7901), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [353790] = 5, + [316263] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12920), 1, - anon_sym_LPAREN2, - ACTIONS(13004), 1, + ACTIONS(10245), 1, anon_sym_LBRACE, - STATE(7357), 1, + ACTIONS(12413), 1, + anon_sym_LPAREN2, + STATE(3939), 1, sym_requirement_seq, - STATE(9163), 1, + STATE(8989), 1, sym_requires_parameter_list, - [353806] = 4, + [316279] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11386), 1, + ACTIONS(10895), 1, anon_sym_LBRACE, - STATE(7369), 1, + STATE(6765), 1, sym_compound_statement, - ACTIONS(11336), 2, + ACTIONS(10964), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [353820] = 4, + [316293] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(13006), 1, + ACTIONS(12453), 1, anon_sym_SEMI, - STATE(8262), 2, + STATE(7873), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [353834] = 4, + [316307] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13008), 1, + ACTIONS(12455), 1, anon_sym___except, - ACTIONS(13010), 1, + ACTIONS(12457), 1, anon_sym___finally, - STATE(472), 2, + STATE(470), 2, sym_seh_except_clause, sym_seh_finally_clause, - [353848] = 5, + [316321] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, + ACTIONS(5702), 1, anon_sym_COLON, - ACTIONS(6620), 1, + ACTIONS(6810), 1, anon_sym_LBRACE, - STATE(3340), 1, + STATE(3173), 1, sym_field_declaration_list, - STATE(9199), 1, + STATE(8684), 1, sym_base_class_clause, - [353864] = 5, + [316337] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(12896), 1, + ACTIONS(12415), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(13012), 1, + ACTIONS(12459), 1, anon_sym_GT2, - STATE(8622), 1, + STATE(8291), 1, aux_sym_template_argument_list_repeat1, - [353880] = 4, + [316353] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11386), 1, + ACTIONS(10895), 1, anon_sym_LBRACE, - STATE(7342), 1, + STATE(6782), 1, sym_compound_statement, - ACTIONS(11336), 2, + ACTIONS(10964), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [353894] = 4, + [316367] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(13014), 1, + ACTIONS(12461), 1, anon_sym_SEMI, - STATE(8265), 2, + STATE(7875), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [353908] = 4, + [316381] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(13014), 1, + ACTIONS(12461), 1, anon_sym_SEMI, - STATE(5840), 2, + STATE(5618), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [353922] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13016), 1, - anon_sym_EQ, - STATE(8516), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [353936] = 4, + [316395] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11386), 1, + ACTIONS(10895), 1, anon_sym_LBRACE, - STATE(7347), 1, + STATE(6787), 1, sym_compound_statement, - ACTIONS(11336), 2, + ACTIONS(10964), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [353950] = 4, + [316409] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(13018), 1, + ACTIONS(12463), 1, anon_sym_SEMI, - STATE(5840), 2, + STATE(5618), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [353964] = 5, + [316423] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, + ACTIONS(5702), 1, anon_sym_COLON, - ACTIONS(8311), 1, + ACTIONS(6695), 1, anon_sym_LBRACE, - STATE(4676), 1, + STATE(3016), 1, sym_field_declaration_list, - STATE(9321), 1, + STATE(9045), 1, sym_base_class_clause, - [353980] = 5, - ACTIONS(10969), 1, + [316439] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(12878), 1, - aux_sym_string_literal_token1, - ACTIONS(13020), 1, - anon_sym_DQUOTE, - ACTIONS(13022), 1, - sym_escape_sequence, - STATE(8274), 1, - aux_sym_string_literal_repeat1, - [353996] = 5, + ACTIONS(12465), 1, + anon_sym_SEMI, + ACTIONS(12467), 1, + anon_sym_DASH_GT, + ACTIONS(12469), 1, + anon_sym_noexcept, + STATE(9902), 1, + sym_trailing_return_type, + [316455] = 5, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(12471), 1, + aux_sym_preproc_include_token2, + ACTIONS(12473), 1, + anon_sym_LPAREN, + ACTIONS(12475), 1, + sym_preproc_arg, + STATE(8986), 1, + sym_preproc_params, + [316471] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(12896), 1, + ACTIONS(12415), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(13024), 1, + ACTIONS(12477), 1, anon_sym_GT2, - STATE(8896), 1, + STATE(8245), 1, aux_sym_template_argument_list_repeat1, - [354012] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2387), 1, - anon_sym_LBRACE, - ACTIONS(6720), 1, - anon_sym_LPAREN2, - STATE(3789), 1, - sym_initializer_list, - STATE(3790), 1, - sym_argument_list, - [354028] = 5, - ACTIONS(3), 1, + [316487] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_LBRACE, - ACTIONS(11757), 1, - anon_sym_COLON, - STATE(8669), 1, - sym_compound_statement, - STATE(9207), 1, - sym_field_initializer_list, - [354044] = 5, + ACTIONS(12439), 1, + aux_sym_string_literal_token1, + ACTIONS(12479), 1, + anon_sym_DQUOTE, + ACTIONS(12481), 1, + sym_escape_sequence, + STATE(7884), 1, + aux_sym_string_literal_repeat1, + [316503] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, - anon_sym_COLON, - ACTIONS(10096), 1, - anon_sym_LBRACE, - STATE(6375), 1, - sym_field_declaration_list, - STATE(9260), 1, - sym_base_class_clause, - [354060] = 5, + ACTIONS(12483), 1, + anon_sym_COMMA, + STATE(7881), 1, + aux_sym_type_definition_declarators_repeat1, + ACTIONS(12486), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [316517] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, + ACTIONS(4784), 1, anon_sym_COLON_COLON, - ACTIONS(7588), 1, + ACTIONS(7517), 1, anon_sym_LT, - ACTIONS(13026), 1, + ACTIONS(12488), 1, anon_sym_SEMI, - STATE(6753), 1, + STATE(1833), 1, sym_template_argument_list, - [354076] = 5, - ACTIONS(10969), 1, + [316533] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12884), 1, + ACTIONS(12409), 1, aux_sym_char_literal_token1, - ACTIONS(12886), 1, + ACTIONS(12411), 1, sym_escape_sequence, - ACTIONS(13028), 1, + ACTIONS(12490), 1, anon_sym_SQUOTE, - STATE(8461), 1, + STATE(8055), 1, aux_sym_char_literal_repeat1, - [354092] = 5, - ACTIONS(10969), 1, + [316549] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12878), 1, + ACTIONS(12439), 1, aux_sym_string_literal_token1, - ACTIONS(12902), 1, + ACTIONS(12445), 1, sym_escape_sequence, - ACTIONS(13030), 1, + ACTIONS(12492), 1, anon_sym_DQUOTE, - STATE(8479), 1, + STATE(8070), 1, aux_sym_string_literal_repeat1, - [354108] = 4, + [316565] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11309), 1, - anon_sym_LBRACE, - STATE(4070), 1, - sym_compound_statement, - ACTIONS(11336), 2, + ACTIONS(7517), 1, + anon_sym_LT, + STATE(2525), 1, + sym_template_argument_list, + ACTIONS(12335), 2, anon_sym_LPAREN2, - anon_sym_LBRACK, - [354122] = 5, + anon_sym_LBRACE, + [316579] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10629), 1, - anon_sym_LBRACE, - ACTIONS(12920), 1, + ACTIONS(12413), 1, anon_sym_LPAREN2, - STATE(5362), 1, + ACTIONS(12494), 1, + anon_sym_LBRACE, + STATE(7007), 1, sym_requirement_seq, - STATE(9249), 1, + STATE(8862), 1, sym_requires_parameter_list, - [354138] = 4, + [316595] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11358), 1, + ACTIONS(55), 1, anon_sym_LBRACE, - STATE(5437), 1, + STATE(1858), 1, sym_compound_statement, - ACTIONS(11336), 2, + ACTIONS(10964), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [354152] = 4, + [316609] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(13032), 1, + ACTIONS(12496), 1, anon_sym_SEMI, - STATE(8286), 2, + STATE(7893), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [354166] = 5, + [316623] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, + ACTIONS(5702), 1, anon_sym_COLON, - ACTIONS(10096), 1, + ACTIONS(9726), 1, anon_sym_LBRACE, - STATE(6381), 1, + STATE(5893), 1, sym_field_declaration_list, - STATE(9282), 1, + STATE(8940), 1, sym_base_class_clause, - [354182] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(13034), 1, - anon_sym_SEMI, - STATE(5840), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [354196] = 4, + [316639] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13036), 1, - anon_sym_COMMA, - STATE(8296), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(13038), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [354210] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(12896), 1, + ACTIONS(12415), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(13040), 1, + ACTIONS(12498), 1, anon_sym_GT2, - STATE(8817), 1, + STATE(8576), 1, aux_sym_template_argument_list_repeat1, - [354226] = 4, + [316655] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11307), 1, + ACTIONS(55), 1, anon_sym_LBRACE, - STATE(6182), 1, + STATE(1869), 1, sym_compound_statement, - ACTIONS(11336), 2, + ACTIONS(10964), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [354240] = 4, + [316669] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11358), 1, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(12500), 1, + anon_sym_SEMI, + STATE(7896), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [316683] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(12500), 1, + anon_sym_SEMI, + STATE(5618), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [316697] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5376), 1, + anon_sym_SEMI, + ACTIONS(7517), 1, + anon_sym_LT, + STATE(1914), 1, + sym_template_argument_list, + [316713] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, anon_sym_LBRACE, - STATE(5331), 1, + STATE(1854), 1, sym_compound_statement, - ACTIONS(11336), 2, + ACTIONS(10964), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [354254] = 4, + [316727] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(13042), 1, + ACTIONS(12502), 1, anon_sym_SEMI, - STATE(8288), 2, + STATE(5618), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [354268] = 4, + [316741] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(13042), 1, + ACTIONS(12504), 1, anon_sym_SEMI, - STATE(5840), 2, + STATE(8017), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [354282] = 4, + [316755] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11358), 1, + ACTIONS(10958), 1, anon_sym_LBRACE, - STATE(5418), 1, + STATE(5750), 1, sym_compound_statement, - ACTIONS(11336), 2, + ACTIONS(10964), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [354296] = 4, + [316769] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(13044), 1, - anon_sym_SEMI, - STATE(5840), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [354310] = 4, + ACTIONS(12506), 4, + anon_sym_LPAREN2, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [316779] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(13046), 1, + ACTIONS(12508), 1, anon_sym_SEMI, - STATE(8304), 2, + STATE(7921), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [354324] = 4, + [316793] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(13046), 1, + ACTIONS(12508), 1, anon_sym_SEMI, - STATE(5840), 2, + STATE(5618), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [354338] = 5, - ACTIONS(10969), 1, + [316807] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12878), 1, + ACTIONS(12439), 1, aux_sym_string_literal_token1, - ACTIONS(13048), 1, + ACTIONS(12510), 1, anon_sym_DQUOTE, - ACTIONS(13050), 1, + ACTIONS(12512), 1, sym_escape_sequence, - STATE(8294), 1, + STATE(7905), 1, aux_sym_string_literal_repeat1, - [354354] = 5, + [316823] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, + ACTIONS(5702), 1, anon_sym_COLON, - ACTIONS(7971), 1, + ACTIONS(7593), 1, anon_sym_LBRACE, - STATE(4796), 1, + STATE(4447), 1, sym_field_declaration_list, - STATE(9370), 1, + STATE(9066), 1, sym_base_class_clause, - [354370] = 5, - ACTIONS(10969), 1, + [316839] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12884), 1, + ACTIONS(12409), 1, aux_sym_char_literal_token1, - ACTIONS(12886), 1, + ACTIONS(12411), 1, sym_escape_sequence, - ACTIONS(13052), 1, + ACTIONS(12514), 1, anon_sym_SQUOTE, - STATE(8461), 1, + STATE(8055), 1, aux_sym_char_literal_repeat1, - [354386] = 5, - ACTIONS(10969), 1, + [316855] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12878), 1, + ACTIONS(12439), 1, aux_sym_string_literal_token1, - ACTIONS(12902), 1, + ACTIONS(12445), 1, sym_escape_sequence, - ACTIONS(13054), 1, + ACTIONS(12516), 1, anon_sym_DQUOTE, - STATE(8479), 1, + STATE(8070), 1, aux_sym_string_literal_repeat1, - [354402] = 5, + [316871] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12518), 1, + anon_sym___except, + ACTIONS(12520), 1, + anon_sym___finally, + STATE(581), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [316885] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10665), 1, + ACTIONS(10305), 1, anon_sym_LBRACE, - ACTIONS(12920), 1, + ACTIONS(12413), 1, anon_sym_LPAREN2, - STATE(5691), 1, + STATE(4830), 1, sym_requirement_seq, - STATE(9335), 1, + STATE(9023), 1, sym_requires_parameter_list, - [354418] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13036), 1, - anon_sym_COMMA, - STATE(8196), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(13056), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [354432] = 4, + [316901] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11303), 1, + ACTIONS(10885), 1, anon_sym_LBRACE, - STATE(5700), 1, + STATE(6964), 1, sym_compound_statement, - ACTIONS(11336), 2, + ACTIONS(10964), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [354446] = 5, + [316915] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, + ACTIONS(5702), 1, anon_sym_COLON, - ACTIONS(7971), 1, + ACTIONS(7593), 1, anon_sym_LBRACE, - STATE(4807), 1, + STATE(4463), 1, sym_field_declaration_list, - STATE(9392), 1, + STATE(8656), 1, sym_base_class_clause, - [354462] = 5, + [316931] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5454), 1, - anon_sym_LT, - ACTIONS(13058), 1, - sym_identifier, - STATE(930), 1, - sym_template_parameter_list, - STATE(4669), 1, - sym_template_type, - [354478] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(12896), 1, + ACTIONS(12415), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(13060), 1, + ACTIONS(12522), 1, anon_sym_GT2, - STATE(8940), 1, + STATE(8235), 1, aux_sym_template_argument_list_repeat1, - [354494] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11303), 1, - anon_sym_LBRACE, - STATE(5706), 1, - sym_compound_statement, - ACTIONS(11336), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [354508] = 4, + [316947] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11307), 1, + ACTIONS(10885), 1, anon_sym_LBRACE, - STATE(6171), 1, + STATE(6933), 1, sym_compound_statement, - ACTIONS(11336), 2, + ACTIONS(10964), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [354522] = 4, + [316961] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11303), 1, + ACTIONS(10885), 1, anon_sym_LBRACE, - STATE(5709), 1, + STATE(6990), 1, sym_compound_statement, - ACTIONS(11336), 2, + ACTIONS(10964), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [354536] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(13062), 1, - anon_sym_SEMI, - STATE(5840), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [354550] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12924), 1, - anon_sym_COMMA, - STATE(8200), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(13064), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [354564] = 5, - ACTIONS(10969), 1, + [316975] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12878), 1, + ACTIONS(12439), 1, aux_sym_string_literal_token1, - ACTIONS(13066), 1, + ACTIONS(12524), 1, anon_sym_DQUOTE, - ACTIONS(13068), 1, + ACTIONS(12526), 1, sym_escape_sequence, - STATE(8310), 1, + STATE(7918), 1, aux_sym_string_literal_repeat1, - [354580] = 5, + [316991] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, - anon_sym_COLON, - ACTIONS(8627), 1, + ACTIONS(5372), 1, + anon_sym_LT, + ACTIONS(12528), 1, + sym_identifier, + STATE(914), 1, + sym_template_parameter_list, + STATE(3044), 1, + sym_template_type, + [317007] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10958), 1, anon_sym_LBRACE, - STATE(5446), 1, - sym_field_declaration_list, - STATE(9161), 1, - sym_base_class_clause, - [354596] = 5, + STATE(5672), 1, + sym_compound_statement, + ACTIONS(10964), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [317021] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, + ACTIONS(5702), 1, anon_sym_COLON, - ACTIONS(8457), 1, + ACTIONS(8083), 1, anon_sym_LBRACE, - STATE(5013), 1, + STATE(4637), 1, sym_field_declaration_list, - STATE(9466), 1, + STATE(8713), 1, sym_base_class_clause, - [354612] = 5, - ACTIONS(10969), 1, + [317037] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12884), 1, + ACTIONS(12409), 1, aux_sym_char_literal_token1, - ACTIONS(12886), 1, + ACTIONS(12411), 1, sym_escape_sequence, - ACTIONS(13070), 1, + ACTIONS(12530), 1, anon_sym_SQUOTE, - STATE(8461), 1, + STATE(8055), 1, aux_sym_char_literal_repeat1, - [354628] = 5, - ACTIONS(10969), 1, + [317053] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12878), 1, + ACTIONS(12439), 1, aux_sym_string_literal_token1, - ACTIONS(12902), 1, + ACTIONS(12445), 1, sym_escape_sequence, - ACTIONS(13072), 1, + ACTIONS(12532), 1, anon_sym_DQUOTE, - STATE(8479), 1, + STATE(8070), 1, aux_sym_string_literal_repeat1, - [354644] = 5, + [317069] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10699), 1, + ACTIONS(10313), 1, anon_sym_LBRACE, - ACTIONS(12920), 1, + ACTIONS(12413), 1, anon_sym_LPAREN2, - STATE(3327), 1, + STATE(4956), 1, sym_requirement_seq, - STATE(9447), 1, + STATE(8699), 1, sym_requires_parameter_list, - [354660] = 4, + [317085] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11384), 1, + ACTIONS(10897), 1, anon_sym_LBRACE, - STATE(3337), 1, + STATE(4846), 1, sym_compound_statement, - ACTIONS(11336), 2, + ACTIONS(10964), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [354674] = 5, + [317099] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(12534), 1, + anon_sym_SEMI, + STATE(5618), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [317113] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5702), 1, anon_sym_COLON, - ACTIONS(8457), 1, + ACTIONS(8083), 1, anon_sym_LBRACE, - STATE(5006), 1, + STATE(4694), 1, sym_field_declaration_list, - STATE(9481), 1, + STATE(8728), 1, sym_base_class_clause, - [354690] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(12896), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(13074), 1, - anon_sym_GT2, - STATE(8836), 1, - aux_sym_template_argument_list_repeat1, - [354706] = 5, + [317129] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(12896), 1, + ACTIONS(12415), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(13076), 1, + ACTIONS(12536), 1, anon_sym_GT2, - STATE(9041), 1, + STATE(8321), 1, aux_sym_template_argument_list_repeat1, - [354722] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_COLON, - ACTIONS(7783), 1, - anon_sym_LBRACE, - STATE(4828), 1, - sym_field_declaration_list, - STATE(9160), 1, - sym_base_class_clause, - [354738] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7588), 1, - anon_sym_LT, - ACTIONS(13078), 1, - anon_sym_SEMI, - STATE(6753), 1, - sym_template_argument_list, - [354754] = 4, + [317145] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11384), 1, + ACTIONS(10897), 1, anon_sym_LBRACE, - STATE(3397), 1, + STATE(4854), 1, sym_compound_statement, - ACTIONS(11336), 2, + ACTIONS(10964), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [354768] = 4, + [317159] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11384), 1, + ACTIONS(10897), 1, anon_sym_LBRACE, - STATE(3407), 1, + STATE(4858), 1, sym_compound_statement, - ACTIONS(11336), 2, + ACTIONS(10964), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [354782] = 5, - ACTIONS(10969), 1, + [317173] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(12878), 1, + ACTIONS(5702), 1, + anon_sym_COLON, + ACTIONS(6367), 1, + anon_sym_LBRACE, + STATE(2545), 1, + sym_field_declaration_list, + STATE(8732), 1, + sym_base_class_clause, + [317189] = 5, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(12439), 1, aux_sym_string_literal_token1, - ACTIONS(13080), 1, + ACTIONS(12538), 1, anon_sym_DQUOTE, - ACTIONS(13082), 1, + ACTIONS(12540), 1, sym_escape_sequence, - STATE(8325), 1, + STATE(7930), 1, aux_sym_string_literal_repeat1, - [354798] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10611), 1, - anon_sym_LBRACE, - ACTIONS(12920), 1, - anon_sym_LPAREN2, - STATE(4674), 1, - sym_requirement_seq, - STATE(9246), 1, - sym_requires_parameter_list, - [354814] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11731), 1, - sym_identifier, - ACTIONS(12868), 1, - aux_sym_preproc_if_token2, - STATE(8245), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(10024), 1, - sym_enumerator, - [354830] = 5, + [317205] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LBRACE, - ACTIONS(6084), 1, + ACTIONS(5702), 1, anon_sym_COLON, - STATE(2712), 1, + ACTIONS(6413), 1, + anon_sym_LBRACE, + STATE(2879), 1, sym_field_declaration_list, - STATE(9537), 1, + STATE(8797), 1, sym_base_class_clause, - [354846] = 5, - ACTIONS(10969), 1, + [317221] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12884), 1, + ACTIONS(12409), 1, aux_sym_char_literal_token1, - ACTIONS(12886), 1, + ACTIONS(12411), 1, sym_escape_sequence, - ACTIONS(13084), 1, + ACTIONS(12542), 1, anon_sym_SQUOTE, - STATE(8461), 1, + STATE(8055), 1, aux_sym_char_literal_repeat1, - [354862] = 5, - ACTIONS(10969), 1, + [317237] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12878), 1, + ACTIONS(12439), 1, aux_sym_string_literal_token1, - ACTIONS(12902), 1, + ACTIONS(12445), 1, sym_escape_sequence, - ACTIONS(13086), 1, + ACTIONS(12544), 1, anon_sym_DQUOTE, - STATE(8479), 1, + STATE(8070), 1, aux_sym_string_literal_repeat1, - [354878] = 5, + [317253] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10639), 1, + ACTIONS(10269), 1, anon_sym_LBRACE, - ACTIONS(12920), 1, + ACTIONS(12413), 1, anon_sym_LPAREN2, - STATE(3705), 1, + STATE(3462), 1, sym_requirement_seq, - STATE(9514), 1, + STATE(8781), 1, sym_requires_parameter_list, - [354894] = 4, + [317269] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11292), 1, + ACTIONS(10905), 1, anon_sym_LBRACE, - STATE(3731), 1, + STATE(4967), 1, sym_compound_statement, - ACTIONS(11336), 2, + ACTIONS(10964), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [354908] = 5, + [317283] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LBRACE, - ACTIONS(6084), 1, + ACTIONS(5702), 1, anon_sym_COLON, - STATE(2667), 1, + ACTIONS(6413), 1, + anon_sym_LBRACE, + STATE(2888), 1, sym_field_declaration_list, - STATE(9544), 1, + STATE(8814), 1, sym_base_class_clause, - [354924] = 5, + [317299] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(12896), 1, + ACTIONS(12415), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(13088), 1, + ACTIONS(12546), 1, anon_sym_GT2, - STATE(9105), 1, + STATE(8391), 1, aux_sym_template_argument_list_repeat1, - [354940] = 4, + [317315] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11344), 1, + ACTIONS(10905), 1, anon_sym_LBRACE, - STATE(4241), 1, + STATE(4973), 1, sym_compound_statement, - ACTIONS(11336), 2, + ACTIONS(10964), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [354954] = 4, + [317329] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11292), 1, + ACTIONS(10905), 1, anon_sym_LBRACE, - STATE(3749), 1, + STATE(4976), 1, sym_compound_statement, - ACTIONS(11336), 2, + ACTIONS(10964), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [354968] = 4, - ACTIONS(3), 1, + [317343] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(11292), 1, - anon_sym_LBRACE, - STATE(3752), 1, - sym_compound_statement, - ACTIONS(11336), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [354982] = 5, - ACTIONS(10969), 1, + ACTIONS(12439), 1, + aux_sym_string_literal_token1, + ACTIONS(12548), 1, + anon_sym_DQUOTE, + ACTIONS(12550), 1, + sym_escape_sequence, + STATE(7940), 1, + aux_sym_string_literal_repeat1, + [317359] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12878), 1, + ACTIONS(12439), 1, aux_sym_string_literal_token1, - ACTIONS(13090), 1, + ACTIONS(12552), 1, anon_sym_DQUOTE, - ACTIONS(13092), 1, + ACTIONS(12554), 1, + sym_escape_sequence, + STATE(7997), 1, + aux_sym_string_literal_repeat1, + [317375] = 5, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(12409), 1, + aux_sym_char_literal_token1, + ACTIONS(12411), 1, + sym_escape_sequence, + ACTIONS(12556), 1, + anon_sym_SQUOTE, + STATE(8055), 1, + aux_sym_char_literal_repeat1, + [317391] = 5, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(12439), 1, + aux_sym_string_literal_token1, + ACTIONS(12445), 1, sym_escape_sequence, - STATE(8338), 1, + ACTIONS(12558), 1, + anon_sym_DQUOTE, + STATE(8070), 1, aux_sym_string_literal_repeat1, - [354998] = 5, + [317407] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10689), 1, + ACTIONS(10911), 1, anon_sym_LBRACE, - ACTIONS(12920), 1, + STATE(3326), 1, + sym_compound_statement, + ACTIONS(10964), 2, anon_sym_LPAREN2, - STATE(4464), 1, - sym_requirement_seq, - STATE(9545), 1, - sym_requires_parameter_list, - [355014] = 4, + anon_sym_LBRACK, + [317421] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(13094), 1, - anon_sym_SEMI, - STATE(8465), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [355028] = 5, + ACTIONS(8875), 1, + anon_sym_COMMA, + ACTIONS(12415), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12560), 1, + anon_sym_GT2, + STATE(8433), 1, + aux_sym_template_argument_list_repeat1, + [317437] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, - anon_sym_COLON, - ACTIONS(6151), 1, + ACTIONS(10911), 1, anon_sym_LBRACE, - STATE(2936), 1, - sym_field_declaration_list, - STATE(9572), 1, - sym_base_class_clause, - [355044] = 5, - ACTIONS(10969), 1, + STATE(3342), 1, + sym_compound_statement, + ACTIONS(10964), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [317451] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12884), 1, + ACTIONS(10911), 1, + anon_sym_LBRACE, + STATE(3347), 1, + sym_compound_statement, + ACTIONS(10964), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [317465] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8299), 1, + anon_sym_LPAREN2, + STATE(8971), 1, + sym_argument_list, + ACTIONS(12562), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [317479] = 5, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(12439), 1, + aux_sym_string_literal_token1, + ACTIONS(12564), 1, + anon_sym_DQUOTE, + ACTIONS(12566), 1, + sym_escape_sequence, + STATE(7948), 1, + aux_sym_string_literal_repeat1, + [317495] = 5, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(12409), 1, aux_sym_char_literal_token1, - ACTIONS(12886), 1, + ACTIONS(12411), 1, sym_escape_sequence, - ACTIONS(13096), 1, + ACTIONS(12568), 1, anon_sym_SQUOTE, - STATE(8461), 1, + STATE(8055), 1, aux_sym_char_literal_repeat1, - [355060] = 5, - ACTIONS(10969), 1, + [317511] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12878), 1, + ACTIONS(12439), 1, aux_sym_string_literal_token1, - ACTIONS(12902), 1, + ACTIONS(12445), 1, sym_escape_sequence, - ACTIONS(13098), 1, + ACTIONS(12570), 1, anon_sym_DQUOTE, - STATE(8479), 1, + STATE(8070), 1, aux_sym_string_literal_repeat1, - [355076] = 5, + [317527] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, - anon_sym_COLON, - ACTIONS(6151), 1, - anon_sym_LBRACE, - STATE(2944), 1, - sym_field_declaration_list, - STATE(9580), 1, - sym_base_class_clause, - [355092] = 5, + ACTIONS(8875), 1, + anon_sym_COMMA, + ACTIONS(12415), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12572), 1, + anon_sym_GT2, + STATE(8457), 1, + aux_sym_template_argument_list_repeat1, + [317543] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(12896), 1, + ACTIONS(12415), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(13100), 1, + ACTIONS(12574), 1, anon_sym_GT2, - STATE(8558), 1, + STATE(8312), 1, aux_sym_template_argument_list_repeat1, - [355108] = 5, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(12878), 1, - aux_sym_string_literal_token1, - ACTIONS(13102), 1, - anon_sym_DQUOTE, - ACTIONS(13104), 1, - sym_escape_sequence, - STATE(8360), 1, - aux_sym_string_literal_repeat1, - [355124] = 5, - ACTIONS(10969), 1, + [317559] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12878), 1, + ACTIONS(12439), 1, aux_sym_string_literal_token1, - ACTIONS(13106), 1, + ACTIONS(12576), 1, anon_sym_DQUOTE, - ACTIONS(13108), 1, + ACTIONS(12578), 1, sym_escape_sequence, - STATE(8344), 1, + STATE(7953), 1, aux_sym_string_literal_repeat1, - [355140] = 4, + [317575] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(13094), 1, - anon_sym_SEMI, - STATE(5840), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [355154] = 5, - ACTIONS(10969), 1, + ACTIONS(5372), 1, + anon_sym_LT, + ACTIONS(12528), 1, + sym_identifier, + STATE(908), 1, + sym_template_parameter_list, + STATE(3044), 1, + sym_template_type, + [317591] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12878), 1, + ACTIONS(12439), 1, aux_sym_string_literal_token1, - ACTIONS(12902), 1, + ACTIONS(12445), 1, sym_escape_sequence, - ACTIONS(13110), 1, + ACTIONS(12580), 1, anon_sym_DQUOTE, - STATE(8479), 1, + STATE(8070), 1, aux_sym_string_literal_repeat1, - [355170] = 5, + [317607] = 5, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(12473), 1, + anon_sym_LPAREN, + ACTIONS(12582), 1, + aux_sym_preproc_include_token2, + ACTIONS(12584), 1, + sym_preproc_arg, + STATE(8686), 1, + sym_preproc_params, + [317623] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(12896), 1, + ACTIONS(12415), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(13112), 1, + ACTIONS(12586), 1, anon_sym_GT2, - STATE(8572), 1, + STATE(8517), 1, aux_sym_template_argument_list_repeat1, - [355186] = 5, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(12892), 1, - anon_sym_LPAREN, - ACTIONS(13114), 1, - aux_sym_preproc_include_token2, - ACTIONS(13116), 1, - sym_preproc_arg, - STATE(9234), 1, - sym_preproc_params, - [355202] = 5, - ACTIONS(10969), 1, + [317639] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12878), 1, + ACTIONS(12439), 1, aux_sym_string_literal_token1, - ACTIONS(13118), 1, + ACTIONS(12588), 1, anon_sym_DQUOTE, - ACTIONS(13120), 1, + ACTIONS(12590), 1, sym_escape_sequence, - STATE(8348), 1, + STATE(7957), 1, aux_sym_string_literal_repeat1, - [355218] = 5, - ACTIONS(10969), 1, + [317655] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12878), 1, + ACTIONS(12439), 1, aux_sym_string_literal_token1, - ACTIONS(12902), 1, + ACTIONS(12445), 1, sym_escape_sequence, - ACTIONS(13122), 1, + ACTIONS(12592), 1, anon_sym_DQUOTE, - STATE(8479), 1, + STATE(8070), 1, aux_sym_string_literal_repeat1, - [355234] = 5, + [317671] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(12896), 1, + ACTIONS(12415), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(13124), 1, + ACTIONS(12594), 1, anon_sym_GT2, - STATE(8583), 1, + STATE(8534), 1, aux_sym_template_argument_list_repeat1, - [355250] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3007), 1, - anon_sym_LBRACE, - ACTIONS(7235), 1, - anon_sym_LPAREN2, - STATE(4407), 1, - sym_initializer_list, - STATE(4527), 1, - sym_argument_list, - [355266] = 5, - ACTIONS(10969), 1, + [317687] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12878), 1, + ACTIONS(12439), 1, aux_sym_string_literal_token1, - ACTIONS(13126), 1, + ACTIONS(12596), 1, anon_sym_DQUOTE, - ACTIONS(13128), 1, + ACTIONS(12598), 1, sym_escape_sequence, - STATE(8352), 1, + STATE(7961), 1, aux_sym_string_literal_repeat1, - [355282] = 5, - ACTIONS(10969), 1, + [317703] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(12878), 1, + ACTIONS(4250), 1, + anon_sym_LBRACE, + ACTIONS(7141), 1, + anon_sym_LPAREN2, + STATE(4131), 1, + sym_argument_list, + STATE(5725), 1, + sym_initializer_list, + [317719] = 5, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(12439), 1, aux_sym_string_literal_token1, - ACTIONS(12902), 1, + ACTIONS(12445), 1, sym_escape_sequence, - ACTIONS(13130), 1, + ACTIONS(12600), 1, anon_sym_DQUOTE, - STATE(8479), 1, + STATE(8070), 1, aux_sym_string_literal_repeat1, - [355298] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11592), 1, - sym_identifier, - ACTIONS(13132), 1, - aux_sym_preproc_if_token2, - STATE(8248), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [355312] = 5, + [317735] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13134), 1, - anon_sym_SEMI, - ACTIONS(13136), 1, - anon_sym_DASH_GT, - ACTIONS(13138), 1, - anon_sym_noexcept, - STATE(9953), 1, - sym_trailing_return_type, - [355328] = 5, + ACTIONS(12602), 1, + anon_sym_COMMA, + STATE(7962), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(12605), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [317749] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(12896), 1, + ACTIONS(12415), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(13140), 1, + ACTIONS(12607), 1, anon_sym_GT2, - STATE(8601), 1, + STATE(8564), 1, aux_sym_template_argument_list_repeat1, - [355344] = 5, + [317765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, - anon_sym_COLON, - ACTIONS(6450), 1, - anon_sym_LBRACE, - STATE(3130), 1, - sym_field_declaration_list, - STATE(9273), 1, - sym_base_class_clause, - [355360] = 5, - ACTIONS(10969), 1, + STATE(7499), 1, + sym_access_specifier, + ACTIONS(12609), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [317777] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12878), 1, + ACTIONS(12439), 1, aux_sym_string_literal_token1, - ACTIONS(13142), 1, + ACTIONS(12611), 1, anon_sym_DQUOTE, - ACTIONS(13144), 1, + ACTIONS(12613), 1, sym_escape_sequence, - STATE(8358), 1, + STATE(7992), 1, aux_sym_string_literal_repeat1, - [355376] = 5, - ACTIONS(10969), 1, + [317793] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12878), 1, + ACTIONS(12439), 1, aux_sym_string_literal_token1, - ACTIONS(12902), 1, - sym_escape_sequence, - ACTIONS(13146), 1, + ACTIONS(12615), 1, anon_sym_DQUOTE, - STATE(8479), 1, - aux_sym_string_literal_repeat1, - [355392] = 5, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(12884), 1, - aux_sym_char_literal_token1, - ACTIONS(12886), 1, + ACTIONS(12617), 1, sym_escape_sequence, - ACTIONS(13148), 1, - anon_sym_SQUOTE, - STATE(8461), 1, - aux_sym_char_literal_repeat1, - [355408] = 5, - ACTIONS(10969), 1, + STATE(7967), 1, + aux_sym_string_literal_repeat1, + [317809] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12878), 1, + ACTIONS(12439), 1, aux_sym_string_literal_token1, - ACTIONS(12902), 1, + ACTIONS(12445), 1, sym_escape_sequence, - ACTIONS(13150), 1, + ACTIONS(12619), 1, anon_sym_DQUOTE, - STATE(8479), 1, + STATE(8070), 1, aux_sym_string_literal_repeat1, - [355424] = 2, + [317825] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13152), 4, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(7517), 1, + anon_sym_LT, + ACTIONS(12621), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [355434] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13154), 1, - anon_sym_COMMA, - STATE(8362), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(13157), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [355448] = 5, + STATE(1833), 1, + sym_template_argument_list, + [317841] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(12896), 1, + ACTIONS(12415), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(13159), 1, + ACTIONS(12623), 1, anon_sym_GT2, - STATE(8618), 1, + STATE(8582), 1, aux_sym_template_argument_list_repeat1, - [355464] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(10157), 1, - anon_sym_LPAREN2, - STATE(8900), 2, - sym_argument_list, - sym_initializer_list, - [355478] = 5, - ACTIONS(10969), 1, + [317857] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12878), 1, + ACTIONS(12439), 1, aux_sym_string_literal_token1, - ACTIONS(13161), 1, + ACTIONS(12625), 1, anon_sym_DQUOTE, - ACTIONS(13163), 1, + ACTIONS(12627), 1, sym_escape_sequence, - STATE(8366), 1, + STATE(7972), 1, aux_sym_string_literal_repeat1, - [355494] = 5, - ACTIONS(10969), 1, + [317873] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12878), 1, + ACTIONS(12473), 1, + anon_sym_LPAREN, + ACTIONS(12629), 1, + aux_sym_preproc_include_token2, + ACTIONS(12631), 1, + sym_preproc_arg, + STATE(8659), 1, + sym_preproc_params, + [317889] = 5, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(12439), 1, aux_sym_string_literal_token1, - ACTIONS(12902), 1, + ACTIONS(12445), 1, sym_escape_sequence, - ACTIONS(13165), 1, + ACTIONS(12633), 1, anon_sym_DQUOTE, - STATE(8479), 1, + STATE(8070), 1, aux_sym_string_literal_repeat1, - [355510] = 5, + [317905] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(12896), 1, + ACTIONS(12415), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(13167), 1, + ACTIONS(12635), 1, anon_sym_GT2, - STATE(8630), 1, + STATE(8607), 1, aux_sym_template_argument_list_repeat1, - [355526] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5566), 1, - anon_sym_LBRACE, - ACTIONS(12978), 1, - anon_sym_COLON_COLON, - ACTIONS(13169), 1, - anon_sym_EQ, - STATE(748), 1, - sym_declaration_list, - [355542] = 5, - ACTIONS(10969), 1, + [317921] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12878), 1, + ACTIONS(12439), 1, aux_sym_string_literal_token1, - ACTIONS(13171), 1, + ACTIONS(12637), 1, anon_sym_DQUOTE, - ACTIONS(13173), 1, + ACTIONS(12639), 1, sym_escape_sequence, - STATE(8370), 1, + STATE(7975), 1, aux_sym_string_literal_repeat1, - [355558] = 5, - ACTIONS(10969), 1, + [317937] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12878), 1, + ACTIONS(12439), 1, aux_sym_string_literal_token1, - ACTIONS(12902), 1, + ACTIONS(12445), 1, sym_escape_sequence, - ACTIONS(13175), 1, + ACTIONS(12641), 1, anon_sym_DQUOTE, - STATE(8479), 1, + STATE(8070), 1, aux_sym_string_literal_repeat1, - [355574] = 5, + [317953] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(12896), 1, + ACTIONS(12415), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(13177), 1, + ACTIONS(12643), 1, anon_sym_GT2, - STATE(8639), 1, + STATE(8629), 1, aux_sym_template_argument_list_repeat1, - [355590] = 5, - ACTIONS(10969), 1, + [317969] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12878), 1, + ACTIONS(12439), 1, aux_sym_string_literal_token1, - ACTIONS(13179), 1, + ACTIONS(12645), 1, anon_sym_DQUOTE, - ACTIONS(13181), 1, - sym_escape_sequence, - STATE(8373), 1, - aux_sym_string_literal_repeat1, - [355606] = 5, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(12878), 1, - aux_sym_string_literal_token1, - ACTIONS(12902), 1, + ACTIONS(12647), 1, sym_escape_sequence, - ACTIONS(13183), 1, - anon_sym_DQUOTE, - STATE(8479), 1, + STATE(7978), 1, aux_sym_string_literal_repeat1, - [355622] = 5, - ACTIONS(3), 1, + [317985] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12956), 1, - anon_sym_COMMA, - ACTIONS(13185), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(13187), 1, - anon_sym_LBRACE, - STATE(8611), 1, - aux_sym_base_class_clause_repeat1, - [355638] = 5, + ACTIONS(12439), 1, + aux_sym_string_literal_token1, + ACTIONS(12445), 1, + sym_escape_sequence, + ACTIONS(12649), 1, + anon_sym_DQUOTE, + STATE(8070), 1, + aux_sym_string_literal_repeat1, + [318001] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(12896), 1, + ACTIONS(12415), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(13189), 1, + ACTIONS(12651), 1, anon_sym_GT2, - STATE(8649), 1, + STATE(8640), 1, aux_sym_template_argument_list_repeat1, - [355654] = 5, - ACTIONS(10969), 1, + [318017] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12878), 1, + ACTIONS(12439), 1, aux_sym_string_literal_token1, - ACTIONS(13191), 1, + ACTIONS(12653), 1, anon_sym_DQUOTE, - ACTIONS(13193), 1, + ACTIONS(12655), 1, sym_escape_sequence, - STATE(8378), 1, + STATE(7982), 1, aux_sym_string_literal_repeat1, - [355670] = 5, + [318033] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10707), 1, + ACTIONS(2989), 1, anon_sym_LBRACE, - ACTIONS(12920), 1, + ACTIONS(7141), 1, anon_sym_LPAREN2, - STATE(5555), 1, - sym_requirement_seq, - STATE(9196), 1, - sym_requires_parameter_list, - [355686] = 5, - ACTIONS(10969), 1, + STATE(4131), 1, + sym_argument_list, + STATE(4156), 1, + sym_initializer_list, + [318049] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12878), 1, + ACTIONS(12439), 1, aux_sym_string_literal_token1, - ACTIONS(12902), 1, + ACTIONS(12445), 1, sym_escape_sequence, - ACTIONS(13195), 1, + ACTIONS(12657), 1, anon_sym_DQUOTE, - STATE(8479), 1, + STATE(8070), 1, aux_sym_string_literal_repeat1, - [355702] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(12896), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(13197), 1, - anon_sym_GT2, - STATE(8658), 1, - aux_sym_template_argument_list_repeat1, - [355718] = 5, - ACTIONS(10969), 1, + [318065] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12878), 1, + ACTIONS(12439), 1, aux_sym_string_literal_token1, - ACTIONS(13199), 1, + ACTIONS(12659), 1, anon_sym_DQUOTE, - ACTIONS(13201), 1, + ACTIONS(12661), 1, sym_escape_sequence, - STATE(8381), 1, + STATE(7984), 1, aux_sym_string_literal_repeat1, - [355734] = 5, - ACTIONS(10969), 1, + [318081] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12878), 1, + ACTIONS(12439), 1, aux_sym_string_literal_token1, - ACTIONS(12902), 1, + ACTIONS(12445), 1, sym_escape_sequence, - ACTIONS(13203), 1, + ACTIONS(12663), 1, anon_sym_DQUOTE, - STATE(8479), 1, + STATE(8070), 1, aux_sym_string_literal_repeat1, - [355750] = 5, + [318097] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(12896), 1, + ACTIONS(12665), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(13205), 1, - anon_sym_GT2, - STATE(8667), 1, - aux_sym_template_argument_list_repeat1, - [355766] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, + ACTIONS(12667), 1, anon_sym_COMMA, - ACTIONS(12896), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(13207), 1, - anon_sym_GT2, - STATE(8673), 1, - aux_sym_template_argument_list_repeat1, - [355782] = 5, + ACTIONS(12669), 1, + anon_sym_LBRACE, + STATE(8471), 1, + aux_sym_base_class_clause_repeat1, + [318113] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(12896), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(13209), 1, - anon_sym_GT2, - STATE(8678), 1, - aux_sym_template_argument_list_repeat1, - [355798] = 5, + ACTIONS(10932), 1, + anon_sym_LBRACE, + STATE(4431), 1, + sym_compound_statement, + ACTIONS(10964), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [318127] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, + ACTIONS(5702), 1, anon_sym_COLON, - ACTIONS(6116), 1, + ACTIONS(9670), 1, anon_sym_LBRACE, - STATE(2519), 1, + STATE(6314), 1, sym_field_declaration_list, - STATE(9602), 1, + STATE(8723), 1, sym_base_class_clause, - [355814] = 4, + [318143] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11382), 1, + ACTIONS(5700), 1, anon_sym_LBRACE, - STATE(5599), 1, - sym_compound_statement, - ACTIONS(11336), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [355828] = 5, + ACTIONS(5702), 1, + anon_sym_COLON, + STATE(2169), 1, + sym_field_declaration_list, + STATE(8677), 1, + sym_base_class_clause, + [318159] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(11751), 1, anon_sym_COMMA, - ACTIONS(12896), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(13211), 1, - anon_sym_GT2, - STATE(8685), 1, - aux_sym_template_argument_list_repeat1, - [355844] = 4, + STATE(7881), 1, + aux_sym_type_definition_declarators_repeat1, + ACTIONS(12671), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [318173] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12930), 1, + ACTIONS(12673), 1, anon_sym_COMMA, - STATE(8458), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(13213), 2, + STATE(8050), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(12675), 2, anon_sym_RPAREN, anon_sym_COLON, - [355858] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(12896), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(13215), 1, - anon_sym_GT2, - STATE(8692), 1, - aux_sym_template_argument_list_repeat1, - [355874] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(12896), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(13217), 1, - anon_sym_GT2, - STATE(8697), 1, - aux_sym_template_argument_list_repeat1, - [355890] = 5, - ACTIONS(3), 1, + [318187] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(12896), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(13219), 1, - anon_sym_GT2, - STATE(8703), 1, - aux_sym_template_argument_list_repeat1, - [355906] = 5, - ACTIONS(10969), 1, + ACTIONS(12409), 1, + aux_sym_char_literal_token1, + ACTIONS(12411), 1, + sym_escape_sequence, + ACTIONS(12677), 1, + anon_sym_SQUOTE, + STATE(8055), 1, + aux_sym_char_literal_repeat1, + [318203] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12878), 1, + ACTIONS(12439), 1, aux_sym_string_literal_token1, - ACTIONS(13221), 1, - anon_sym_DQUOTE, - ACTIONS(13223), 1, + ACTIONS(12445), 1, sym_escape_sequence, - STATE(8456), 1, + ACTIONS(12679), 1, + anon_sym_DQUOTE, + STATE(8070), 1, aux_sym_string_literal_repeat1, - [355922] = 5, + [318219] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(12681), 1, anon_sym_COMMA, - ACTIONS(12896), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(13225), 1, - anon_sym_GT2, - STATE(8709), 1, - aux_sym_template_argument_list_repeat1, - [355938] = 5, + STATE(8056), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(12683), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [318233] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(12896), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(13227), 1, - anon_sym_GT2, - STATE(8716), 1, - aux_sym_template_argument_list_repeat1, - [355954] = 4, + ACTIONS(5486), 1, + anon_sym_LBRACE, + ACTIONS(12425), 1, + anon_sym_COLON_COLON, + ACTIONS(12685), 1, + anon_sym_EQ, + STATE(697), 1, + sym_declaration_list, + [318249] = 5, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(12409), 1, + aux_sym_char_literal_token1, + ACTIONS(12411), 1, + sym_escape_sequence, + ACTIONS(12687), 1, + anon_sym_SQUOTE, + STATE(8055), 1, + aux_sym_char_literal_repeat1, + [318265] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(13229), 1, - anon_sym_SEMI, - STATE(5840), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [355968] = 5, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(11444), 1, + anon_sym_COLON, + STATE(8201), 1, + sym_compound_statement, + STATE(8661), 1, + sym_field_initializer_list, + [318281] = 5, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(12439), 1, + aux_sym_string_literal_token1, + ACTIONS(12445), 1, + sym_escape_sequence, + ACTIONS(12689), 1, + anon_sym_DQUOTE, + STATE(8070), 1, + aux_sym_string_literal_repeat1, + [318297] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(12896), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(13231), 1, - anon_sym_GT2, - STATE(8722), 1, - aux_sym_template_argument_list_repeat1, - [355984] = 4, + ACTIONS(10261), 1, + anon_sym_LBRACE, + ACTIONS(12413), 1, + anon_sym_LPAREN2, + STATE(5170), 1, + sym_requirement_seq, + STATE(9080), 1, + sym_requires_parameter_list, + [318313] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(13233), 1, - anon_sym_SEMI, - STATE(8418), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [355998] = 5, + ACTIONS(12691), 1, + anon_sym___except, + ACTIONS(12693), 1, + anon_sym___finally, + STATE(609), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [318327] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(12896), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(13235), 1, - anon_sym_GT2, - STATE(8728), 1, - aux_sym_template_argument_list_repeat1, - [356014] = 5, + ACTIONS(5372), 1, + anon_sym_LT, + ACTIONS(12528), 1, + sym_identifier, + STATE(907), 1, + sym_template_parameter_list, + STATE(3044), 1, + sym_template_type, + [318343] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(12896), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(13237), 1, - anon_sym_GT2, - STATE(8734), 1, - aux_sym_template_argument_list_repeat1, - [356030] = 5, + ACTIONS(5484), 1, + anon_sym_LBRACE, + ACTIONS(12425), 1, + anon_sym_COLON_COLON, + ACTIONS(12695), 1, + anon_sym_EQ, + STATE(365), 1, + sym_declaration_list, + [318359] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(12896), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(13239), 1, - anon_sym_GT2, - STATE(8740), 1, - aux_sym_template_argument_list_repeat1, - [356046] = 4, + ACTIONS(10899), 1, + anon_sym_LBRACE, + STATE(5009), 1, + sym_compound_statement, + ACTIONS(10964), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [318373] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13241), 1, + ACTIONS(12697), 1, anon_sym___except, - ACTIONS(13243), 1, + ACTIONS(12699), 1, anon_sym___finally, - STATE(586), 2, + STATE(609), 2, sym_seh_except_clause, sym_seh_finally_clause, - [356060] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(12896), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(13245), 1, - anon_sym_GT2, - STATE(8748), 1, - aux_sym_template_argument_list_repeat1, - [356076] = 5, + [318387] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(12896), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(13247), 1, - anon_sym_GT2, - STATE(8754), 1, - aux_sym_template_argument_list_repeat1, - [356092] = 5, + ACTIONS(10253), 1, + anon_sym_LBRACE, + ACTIONS(12413), 1, + anon_sym_LPAREN2, + STATE(2584), 1, + sym_requirement_seq, + STATE(8663), 1, + sym_requires_parameter_list, + [318403] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(12896), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(13249), 1, - anon_sym_GT2, - STATE(8759), 1, - aux_sym_template_argument_list_repeat1, - [356108] = 5, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(12701), 1, + anon_sym_SEMI, + STATE(8018), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [318417] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(12896), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(13251), 1, - anon_sym_GT2, - STATE(8765), 1, - aux_sym_template_argument_list_repeat1, - [356124] = 4, + ACTIONS(10889), 1, + anon_sym_LBRACE, + STATE(3753), 1, + sym_compound_statement, + ACTIONS(10964), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [318431] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12164), 1, - anon_sym_COMMA, - STATE(8506), 1, - aux_sym_type_definition_declarators_repeat1, - ACTIONS(13253), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [356138] = 3, + ACTIONS(12703), 1, + anon_sym___except, + ACTIONS(12705), 1, + anon_sym___finally, + STATE(640), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [318445] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13255), 1, - sym_identifier, - ACTIONS(13257), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT2, - [356150] = 5, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12023), 1, + anon_sym_EQ, + STATE(8040), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [318459] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, - anon_sym_COLON, - ACTIONS(6450), 1, + ACTIONS(5700), 1, anon_sym_LBRACE, - STATE(3232), 1, + ACTIONS(5702), 1, + anon_sym_COLON, + STATE(2179), 1, sym_field_declaration_list, - STATE(9303), 1, + STATE(8696), 1, sym_base_class_clause, - [356166] = 5, + [318475] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10913), 1, + anon_sym_LBRACE, + STATE(2610), 1, + sym_compound_statement, + ACTIONS(10964), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [318489] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(12896), 1, + ACTIONS(12415), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(13259), 1, + ACTIONS(12707), 1, anon_sym_GT2, - STATE(8810), 1, + STATE(8259), 1, aux_sym_template_argument_list_repeat1, - [356182] = 5, + [318505] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, + ACTIONS(4784), 1, anon_sym_COLON_COLON, - ACTIONS(7588), 1, + ACTIONS(7517), 1, anon_sym_LT, - ACTIONS(13261), 1, + ACTIONS(12709), 1, anon_sym_SEMI, - STATE(6753), 1, + STATE(1833), 1, sym_template_argument_list, - [356198] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, - anon_sym_LBRACE, - ACTIONS(11757), 1, - anon_sym_COLON, - STATE(8687), 1, - sym_compound_statement, - STATE(9291), 1, - sym_field_initializer_list, - [356214] = 5, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(12892), 1, - anon_sym_LPAREN, - ACTIONS(13263), 1, - aux_sym_preproc_include_token2, - ACTIONS(13265), 1, - sym_preproc_arg, - STATE(9549), 1, - sym_preproc_params, - [356230] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13267), 1, - anon_sym___except, - ACTIONS(13269), 1, - anon_sym___finally, - STATE(653), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [356244] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5454), 1, - anon_sym_LT, - ACTIONS(13058), 1, - sym_identifier, - STATE(928), 1, - sym_template_parameter_list, - STATE(4669), 1, - sym_template_type, - [356260] = 4, + [318521] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11382), 1, + ACTIONS(10899), 1, anon_sym_LBRACE, - STATE(5622), 1, + STATE(4958), 1, sym_compound_statement, - ACTIONS(11336), 2, + ACTIONS(10964), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [356274] = 4, + [318535] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12510), 1, - anon_sym_EQ, - STATE(8496), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [356288] = 4, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(12711), 1, + anon_sym_SEMI, + STATE(8082), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [318549] = 5, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(12439), 1, + aux_sym_string_literal_token1, + ACTIONS(12713), 1, + anon_sym_DQUOTE, + ACTIONS(12715), 1, + sym_escape_sequence, + STATE(8149), 1, + aux_sym_string_literal_repeat1, + [318565] = 5, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(12439), 1, + aux_sym_string_literal_token1, + ACTIONS(12445), 1, + sym_escape_sequence, + ACTIONS(12717), 1, + anon_sym_DQUOTE, + STATE(8070), 1, + aux_sym_string_literal_repeat1, + [318581] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(13271), 1, + ACTIONS(12711), 1, anon_sym_SEMI, - STATE(8422), 2, + STATE(5618), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [356302] = 4, + [318595] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(13271), 1, + ACTIONS(12719), 1, anon_sym_SEMI, - STATE(5840), 2, + STATE(5618), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [356316] = 5, - ACTIONS(10969), 1, + [318609] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(12878), 1, - aux_sym_string_literal_token1, - ACTIONS(13273), 1, - anon_sym_DQUOTE, - ACTIONS(13275), 1, - sym_escape_sequence, - STATE(8440), 1, - aux_sym_string_literal_repeat1, - [356332] = 4, + ACTIONS(11623), 1, + sym_identifier, + ACTIONS(12721), 1, + aux_sym_preproc_if_token2, + STATE(7633), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(9176), 1, + sym_enumerator, + [318625] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(11283), 1, + sym_identifier, + ACTIONS(12723), 1, + aux_sym_preproc_if_token2, + STATE(7631), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [318639] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(13277), 1, + ACTIONS(12725), 1, anon_sym_SEMI, - STATE(8395), 2, + STATE(8047), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [356346] = 4, + [318653] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12667), 1, + anon_sym_COMMA, + ACTIONS(12727), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12729), 1, + anon_sym_LBRACE, + STATE(8572), 1, + aux_sym_base_class_clause_repeat1, + [318669] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(7467), 1, + sym_access_specifier, + ACTIONS(12609), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [318681] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11382), 1, + ACTIONS(10899), 1, anon_sym_LBRACE, - STATE(5654), 1, + STATE(4969), 1, sym_compound_statement, - ACTIONS(11336), 2, + ACTIONS(10964), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [356360] = 4, + [318695] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(13279), 1, + ACTIONS(12731), 1, anon_sym_SEMI, - STATE(5840), 2, + STATE(5618), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [356374] = 4, + [318709] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10157), 1, - anon_sym_LPAREN2, - STATE(9548), 1, - sym_argument_list, - ACTIONS(13281), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [356388] = 5, - ACTIONS(10969), 1, + ACTIONS(12733), 1, + anon_sym___except, + ACTIONS(12735), 1, + anon_sym___finally, + STATE(338), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [318723] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(12892), 1, - anon_sym_LPAREN, - ACTIONS(13283), 1, - aux_sym_preproc_include_token2, - ACTIONS(13285), 1, - sym_preproc_arg, - STATE(9456), 1, - sym_preproc_params, - [356404] = 5, + ACTIONS(11623), 1, + sym_identifier, + ACTIONS(12339), 1, + aux_sym_preproc_if_token2, + STATE(8019), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(9176), 1, + sym_enumerator, + [318739] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5560), 1, + ACTIONS(5702), 1, + anon_sym_COLON, + ACTIONS(9670), 1, anon_sym_LBRACE, - ACTIONS(12978), 1, - anon_sym_COLON_COLON, - ACTIONS(13287), 1, - anon_sym_EQ, - STATE(831), 1, - sym_declaration_list, - [356420] = 5, + STATE(6311), 1, + sym_field_declaration_list, + STATE(8799), 1, + sym_base_class_clause, + [318755] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_LBRACE, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - STATE(3134), 1, - sym_argument_list, - STATE(3173), 1, - sym_initializer_list, - [356436] = 5, + ACTIONS(8875), 1, + anon_sym_COMMA, + ACTIONS(12415), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12737), 1, + anon_sym_GT2, + STATE(8363), 1, + aux_sym_template_argument_list_repeat1, + [318771] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4120), 1, - anon_sym_LBRACE, - ACTIONS(7235), 1, - anon_sym_LPAREN2, - STATE(4527), 1, - sym_argument_list, - STATE(6261), 1, - sym_initializer_list, - [356452] = 5, - ACTIONS(10969), 1, + ACTIONS(11283), 1, + sym_identifier, + ACTIONS(12739), 1, + aux_sym_preproc_if_token2, + STATE(8020), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [318785] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12878), 1, + ACTIONS(12439), 1, aux_sym_string_literal_token1, - ACTIONS(13289), 1, + ACTIONS(12741), 1, anon_sym_DQUOTE, - ACTIONS(13291), 1, + ACTIONS(12743), 1, sym_escape_sequence, - STATE(8437), 1, + STATE(8038), 1, aux_sym_string_literal_repeat1, - [356468] = 5, + [318801] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_LBRACE, - ACTIONS(11757), 1, - anon_sym_COLON, - STATE(9040), 1, - sym_compound_statement, - STATE(9351), 1, - sym_field_initializer_list, - [356484] = 5, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(7517), 1, + anon_sym_LT, + ACTIONS(12745), 1, + anon_sym_SEMI, + STATE(1833), 1, + sym_template_argument_list, + [318817] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5454), 1, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(7517), 1, anon_sym_LT, - ACTIONS(13058), 1, - sym_identifier, - STATE(936), 1, - sym_template_parameter_list, - STATE(4669), 1, - sym_template_type, - [356500] = 5, - ACTIONS(10969), 1, + ACTIONS(12747), 1, + anon_sym_SEMI, + STATE(1833), 1, + sym_template_argument_list, + [318833] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12892), 1, + ACTIONS(12473), 1, anon_sym_LPAREN, - ACTIONS(13293), 1, + ACTIONS(12749), 1, aux_sym_preproc_include_token2, - ACTIONS(13295), 1, + ACTIONS(12751), 1, sym_preproc_arg, - STATE(9403), 1, + STATE(8775), 1, sym_preproc_params, - [356516] = 5, + [318849] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4061), 1, + ACTIONS(4238), 1, anon_sym_LBRACE, - ACTIONS(6974), 1, + ACTIONS(7120), 1, anon_sym_LPAREN2, - STATE(4224), 1, + STATE(4001), 1, sym_argument_list, - STATE(6138), 1, + STATE(5638), 1, sym_initializer_list, - [356532] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_COLON, - ACTIONS(10269), 1, - anon_sym_LBRACE, - STATE(6789), 1, - sym_field_declaration_list, - STATE(9515), 1, - sym_base_class_clause, - [356548] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_COLON, - ACTIONS(6132), 1, - anon_sym_LBRACE, - STATE(2682), 1, - sym_field_declaration_list, - STATE(9419), 1, - sym_base_class_clause, - [356564] = 5, + [318865] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, + ACTIONS(5702), 1, anon_sym_COLON, - ACTIONS(6116), 1, + ACTIONS(6894), 1, anon_sym_LBRACE, - STATE(2507), 1, + STATE(3115), 1, sym_field_declaration_list, - STATE(9349), 1, + STATE(8793), 1, sym_base_class_clause, - [356580] = 5, - ACTIONS(10969), 1, + [318881] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12884), 1, + ACTIONS(12409), 1, aux_sym_char_literal_token1, - ACTIONS(12886), 1, + ACTIONS(12411), 1, sym_escape_sequence, - ACTIONS(13297), 1, + ACTIONS(12753), 1, anon_sym_SQUOTE, - STATE(8461), 1, + STATE(8055), 1, aux_sym_char_literal_repeat1, - [356596] = 5, - ACTIONS(10969), 1, + [318897] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12878), 1, + ACTIONS(12439), 1, aux_sym_string_literal_token1, - ACTIONS(12902), 1, + ACTIONS(12445), 1, sym_escape_sequence, - ACTIONS(13299), 1, + ACTIONS(12755), 1, anon_sym_DQUOTE, - STATE(8479), 1, + STATE(8070), 1, aux_sym_string_literal_repeat1, - [356612] = 5, + [318913] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, + ACTIONS(10913), 1, anon_sym_LBRACE, - ACTIONS(11757), 1, - anon_sym_COLON, - STATE(8737), 1, + STATE(2661), 1, sym_compound_statement, - STATE(9388), 1, - sym_field_initializer_list, - [356628] = 5, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(12884), 1, - aux_sym_char_literal_token1, - ACTIONS(12886), 1, - sym_escape_sequence, - ACTIONS(13301), 1, - anon_sym_SQUOTE, - STATE(8461), 1, - aux_sym_char_literal_repeat1, - [356644] = 5, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(12878), 1, - aux_sym_string_literal_token1, - ACTIONS(12902), 1, - sym_escape_sequence, - ACTIONS(13303), 1, - anon_sym_DQUOTE, - STATE(8479), 1, - aux_sym_string_literal_repeat1, - [356660] = 5, + ACTIONS(10964), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [318927] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5454), 1, - anon_sym_LT, - ACTIONS(13058), 1, - sym_identifier, - STATE(931), 1, - sym_template_parameter_list, - STATE(4669), 1, - sym_template_type, - [356676] = 5, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(12878), 1, - aux_sym_string_literal_token1, - ACTIONS(13305), 1, - anon_sym_DQUOTE, - ACTIONS(13307), 1, - sym_escape_sequence, - STATE(8526), 1, - aux_sym_string_literal_repeat1, - [356692] = 5, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12757), 1, + anon_sym_EQ, + STATE(7112), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [318941] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12920), 1, + ACTIONS(12413), 1, anon_sym_LPAREN2, - ACTIONS(13309), 1, + ACTIONS(12759), 1, anon_sym_LBRACE, - STATE(2524), 1, + STATE(1867), 1, sym_requirement_seq, - STATE(9578), 1, + STATE(9090), 1, sym_requires_parameter_list, - [356708] = 5, + [318957] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, + ACTIONS(3899), 1, anon_sym_LBRACE, - ACTIONS(12978), 1, - anon_sym_COLON_COLON, - ACTIONS(13311), 1, - anon_sym_EQ, - STATE(357), 1, - sym_declaration_list, - [356724] = 4, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + STATE(2615), 1, + sym_argument_list, + STATE(4384), 1, + sym_initializer_list, + [318973] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11294), 1, + ACTIONS(10922), 1, anon_sym_LBRACE, - STATE(4639), 1, + STATE(4377), 1, sym_compound_statement, - ACTIONS(11336), 2, + ACTIONS(10964), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [356738] = 3, + [318987] = 5, ACTIONS(3), 1, sym_comment, - STATE(7818), 1, - sym_access_specifier, - ACTIONS(12946), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - [356750] = 4, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(11444), 1, + anon_sym_COLON, + STATE(8301), 1, + sym_compound_statement, + STATE(8782), 1, + sym_field_initializer_list, + [319003] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5372), 1, + anon_sym_LT, + ACTIONS(12528), 1, + sym_identifier, + STATE(912), 1, + sym_template_parameter_list, + STATE(3044), 1, + sym_template_type, + [319019] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(13313), 1, + ACTIONS(12761), 1, anon_sym_SEMI, - STATE(8470), 2, + STATE(8069), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [356764] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10619), 1, - anon_sym_LBRACE, - ACTIONS(12920), 1, - anon_sym_LPAREN2, - STATE(3144), 1, - sym_requirement_seq, - STATE(9409), 1, - sym_requires_parameter_list, - [356780] = 4, + [319033] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13315), 1, - anon_sym___except, - ACTIONS(13317), 1, - anon_sym___finally, - STATE(990), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [356794] = 5, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(12761), 1, + anon_sym_SEMI, + STATE(5618), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [319047] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_LBRACE, - ACTIONS(11757), 1, - anon_sym_COLON, - STATE(8794), 1, - sym_compound_statement, - STATE(9642), 1, - sym_field_initializer_list, - [356810] = 4, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(12763), 1, + anon_sym_SEMI, + STATE(8060), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [319061] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13319), 1, + ACTIONS(12765), 1, anon_sym___except, - ACTIONS(13321), 1, + ACTIONS(12767), 1, anon_sym___finally, - STATE(653), 2, + STATE(981), 2, sym_seh_except_clause, sym_seh_finally_clause, - [356824] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5454), 1, - anon_sym_LT, - ACTIONS(13058), 1, - sym_identifier, - STATE(934), 1, - sym_template_parameter_list, - STATE(4669), 1, - sym_template_type, - [356840] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11344), 1, - anon_sym_LBRACE, - STATE(4210), 1, - sym_compound_statement, - ACTIONS(11336), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [356854] = 5, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(12884), 1, - aux_sym_char_literal_token1, - ACTIONS(12886), 1, - sym_escape_sequence, - ACTIONS(13323), 1, - anon_sym_SQUOTE, - STATE(8461), 1, - aux_sym_char_literal_repeat1, - [356870] = 2, + [319075] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12486), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_identifier, - [356880] = 5, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(12878), 1, - aux_sym_string_literal_token1, - ACTIONS(12902), 1, - sym_escape_sequence, - ACTIONS(13325), 1, - anon_sym_DQUOTE, - STATE(8479), 1, - aux_sym_string_literal_repeat1, - [356896] = 5, + ACTIONS(12769), 1, + anon_sym_COMMA, + STATE(8050), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(12772), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [319089] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, + ACTIONS(5702), 1, anon_sym_COLON, - ACTIONS(6132), 1, + ACTIONS(6894), 1, anon_sym_LBRACE, - STATE(2711), 1, + STATE(2983), 1, sym_field_declaration_list, - STATE(9457), 1, + STATE(8824), 1, sym_base_class_clause, - [356912] = 4, + [319105] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13327), 1, - anon_sym_COMMA, - STATE(8458), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(13330), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [356926] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(12896), 1, + ACTIONS(12415), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(13332), 1, + ACTIONS(12774), 1, anon_sym_GT2, - STATE(8950), 1, + STATE(8373), 1, aux_sym_template_argument_list_repeat1, - [356942] = 5, + [319121] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, + ACTIONS(4784), 1, anon_sym_COLON_COLON, - ACTIONS(7588), 1, + ACTIONS(7517), 1, anon_sym_LT, - ACTIONS(13334), 1, + ACTIONS(12776), 1, anon_sym_SEMI, - STATE(6753), 1, + STATE(1833), 1, sym_template_argument_list, - [356958] = 5, - ACTIONS(10969), 1, + [319137] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(13336), 1, + ACTIONS(12473), 1, + anon_sym_LPAREN, + ACTIONS(12778), 1, + aux_sym_preproc_include_token2, + ACTIONS(12780), 1, + sym_preproc_arg, + STATE(8960), 1, + sym_preproc_params, + [319153] = 5, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(12782), 1, anon_sym_SQUOTE, - ACTIONS(13338), 1, + ACTIONS(12784), 1, aux_sym_char_literal_token1, - ACTIONS(13341), 1, + ACTIONS(12787), 1, sym_escape_sequence, - STATE(8461), 1, + STATE(8055), 1, aux_sym_char_literal_repeat1, - [356974] = 5, + [319169] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_LBRACE, - ACTIONS(11757), 1, + ACTIONS(12681), 1, + anon_sym_COMMA, + STATE(8071), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(12790), 2, + anon_sym_RPAREN, anon_sym_COLON, - STATE(8925), 1, - sym_compound_statement, - STATE(9437), 1, - sym_field_initializer_list, - [356990] = 4, + [319183] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11378), 1, + ACTIONS(5702), 1, + anon_sym_COLON, + ACTIONS(7550), 1, anon_sym_LBRACE, - STATE(3297), 1, + STATE(4496), 1, + sym_field_declaration_list, + STATE(8981), 1, + sym_base_class_clause, + [319199] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10922), 1, + anon_sym_LBRACE, + STATE(4380), 1, sym_compound_statement, - ACTIONS(11336), 2, + ACTIONS(10964), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [357004] = 5, + [319213] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5454), 1, - anon_sym_LT, - ACTIONS(13058), 1, - sym_identifier, - STATE(935), 1, - sym_template_parameter_list, - STATE(4669), 1, - sym_template_type, - [357020] = 4, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(12792), 1, + anon_sym_SEMI, + STATE(8064), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [319227] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(13344), 1, + ACTIONS(12792), 1, anon_sym_SEMI, - STATE(5840), 2, + STATE(5618), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [357034] = 4, + [319241] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7588), 1, - anon_sym_LT, - STATE(2974), 1, - sym_template_argument_list, - ACTIONS(12860), 2, - anon_sym_LPAREN2, + ACTIONS(55), 1, anon_sym_LBRACE, - [357048] = 4, + ACTIONS(11444), 1, + anon_sym_COLON, + STATE(8521), 1, + sym_compound_statement, + STATE(8825), 1, + sym_field_initializer_list, + [319257] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5372), 1, + anon_sym_LT, + ACTIONS(12528), 1, + sym_identifier, + STATE(910), 1, + sym_template_parameter_list, + STATE(3044), 1, + sym_template_type, + [319273] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11294), 1, + ACTIONS(10922), 1, anon_sym_LBRACE, - STATE(4543), 1, + STATE(4257), 1, sym_compound_statement, - ACTIONS(11336), 2, + ACTIONS(10964), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [357062] = 4, + [319287] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(13346), 1, + ACTIONS(12794), 1, anon_sym_SEMI, - STATE(8477), 2, + STATE(5618), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [357076] = 5, + [319301] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10291), 1, + anon_sym_LBRACE, + ACTIONS(12413), 1, + anon_sym_LPAREN2, + STATE(4403), 1, + sym_requirement_seq, + STATE(8897), 1, + sym_requires_parameter_list, + [319317] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10913), 1, + anon_sym_LBRACE, + STATE(2548), 1, + sym_compound_statement, + ACTIONS(10964), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [319331] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, anon_sym_LBRACE, - ACTIONS(11757), 1, + ACTIONS(11444), 1, anon_sym_COLON, - STATE(9073), 1, + STATE(8242), 1, sym_compound_statement, - STATE(9453), 1, + STATE(8852), 1, sym_field_initializer_list, - [357092] = 4, + [319347] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(5372), 1, + anon_sym_LT, + ACTIONS(12528), 1, + sym_identifier, + STATE(913), 1, + sym_template_parameter_list, + STATE(3044), 1, + sym_template_type, + [319363] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(13346), 1, + ACTIONS(12796), 1, anon_sym_SEMI, - STATE(5840), 2, + STATE(5618), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [357106] = 5, + [319377] = 5, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(12798), 1, + anon_sym_DQUOTE, + ACTIONS(12800), 1, + aux_sym_string_literal_token1, + ACTIONS(12803), 1, + sym_escape_sequence, + STATE(8070), 1, + aux_sym_string_literal_repeat1, + [319393] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5454), 1, - anon_sym_LT, - ACTIONS(13058), 1, - sym_identifier, - STATE(933), 1, - sym_template_parameter_list, - STATE(4669), 1, - sym_template_type, - [357122] = 5, + ACTIONS(12806), 1, + anon_sym_COMMA, + STATE(8071), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(12809), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [319407] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5564), 1, - anon_sym_LBRACE, - ACTIONS(12978), 1, - anon_sym_COLON_COLON, - ACTIONS(13348), 1, - anon_sym_EQ, - STATE(760), 1, - sym_declaration_list, - [357138] = 5, + ACTIONS(12811), 1, + anon_sym_COMMA, + STATE(8117), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(12813), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [319421] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(12815), 1, + anon_sym_SEMI, + STATE(8115), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [319435] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, anon_sym_LBRACE, - ACTIONS(11757), 1, + ACTIONS(11444), 1, anon_sym_COLON, - STATE(9077), 1, + STATE(8353), 1, sym_compound_statement, - STATE(9472), 1, + STATE(8876), 1, sym_field_initializer_list, - [357154] = 5, + [319451] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5454), 1, + ACTIONS(5372), 1, anon_sym_LT, - ACTIONS(13058), 1, + ACTIONS(12528), 1, sym_identifier, - STATE(929), 1, + STATE(909), 1, sym_template_parameter_list, - STATE(4669), 1, + STATE(3044), 1, sym_template_type, - [357170] = 4, + [319467] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11294), 1, + ACTIONS(10889), 1, anon_sym_LBRACE, - STATE(4553), 1, + STATE(3784), 1, sym_compound_statement, - ACTIONS(11336), 2, + ACTIONS(10964), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [357184] = 5, - ACTIONS(10969), 1, + [319481] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12892), 1, + ACTIONS(12439), 1, + aux_sym_string_literal_token1, + ACTIONS(12817), 1, + anon_sym_DQUOTE, + ACTIONS(12819), 1, + sym_escape_sequence, + STATE(8090), 1, + aux_sym_string_literal_repeat1, + [319497] = 5, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(12439), 1, + aux_sym_string_literal_token1, + ACTIONS(12821), 1, + anon_sym_DQUOTE, + ACTIONS(12823), 1, + sym_escape_sequence, + STATE(7859), 1, + aux_sym_string_literal_repeat1, + [319513] = 5, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(12473), 1, anon_sym_LPAREN, - ACTIONS(13350), 1, + ACTIONS(12825), 1, aux_sym_preproc_include_token2, - ACTIONS(13352), 1, + ACTIONS(12827), 1, sym_preproc_arg, - STATE(9474), 1, + STATE(8923), 1, sym_preproc_params, - [357200] = 4, + [319529] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(11444), 1, + anon_sym_COLON, + STATE(8486), 1, + sym_compound_statement, + STATE(8893), 1, + sym_field_initializer_list, + [319545] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(5372), 1, + anon_sym_LT, + ACTIONS(12528), 1, + sym_identifier, + STATE(911), 1, + sym_template_parameter_list, + STATE(3044), 1, + sym_template_type, + [319561] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(13354), 1, + ACTIONS(12829), 1, anon_sym_SEMI, - STATE(5840), 2, + STATE(5618), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [357214] = 4, + [319575] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11305), 1, + ACTIONS(2931), 1, anon_sym_LBRACE, - STATE(4682), 1, - sym_compound_statement, - ACTIONS(11336), 2, + ACTIONS(7120), 1, anon_sym_LPAREN2, - anon_sym_LBRACK, - [357228] = 5, - ACTIONS(10969), 1, + STATE(4001), 1, + sym_argument_list, + STATE(4027), 1, + sym_initializer_list, + [319591] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(13356), 1, - anon_sym_DQUOTE, - ACTIONS(13358), 1, + ACTIONS(2289), 1, + anon_sym_LBRACE, + ACTIONS(5761), 1, + anon_sym_LPAREN2, + STATE(2576), 1, + sym_initializer_list, + STATE(2615), 1, + sym_argument_list, + [319607] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8875), 1, + anon_sym_COMMA, + ACTIONS(12415), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12831), 1, + anon_sym_GT2, + STATE(8304), 1, + aux_sym_template_argument_list_repeat1, + [319623] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5702), 1, + anon_sym_COLON, + ACTIONS(8314), 1, + anon_sym_LBRACE, + STATE(4939), 1, + sym_field_declaration_list, + STATE(8938), 1, + sym_base_class_clause, + [319639] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(11444), 1, + anon_sym_COLON, + STATE(8569), 1, + sym_compound_statement, + STATE(8910), 1, + sym_field_initializer_list, + [319655] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5372), 1, + anon_sym_LT, + ACTIONS(12528), 1, + sym_identifier, + STATE(906), 1, + sym_template_parameter_list, + STATE(3044), 1, + sym_template_type, + [319671] = 5, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(12409), 1, + aux_sym_char_literal_token1, + ACTIONS(12411), 1, + sym_escape_sequence, + ACTIONS(12833), 1, + anon_sym_SQUOTE, + STATE(8055), 1, + aux_sym_char_literal_repeat1, + [319687] = 5, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(12439), 1, aux_sym_string_literal_token1, - ACTIONS(13361), 1, + ACTIONS(12445), 1, sym_escape_sequence, - STATE(8479), 1, + ACTIONS(12835), 1, + anon_sym_DQUOTE, + STATE(8070), 1, aux_sym_string_literal_repeat1, - [357244] = 5, + [319703] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12837), 1, + anon_sym_COMMA, + STATE(8091), 1, + aux_sym_field_declaration_repeat1, + ACTIONS(12840), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [319717] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10321), 1, + anon_sym_LBRACE, + ACTIONS(12413), 1, + anon_sym_LPAREN2, + STATE(4283), 1, + sym_requirement_seq, + STATE(8762), 1, + sym_requires_parameter_list, + [319733] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(7476), 1, + sym_access_specifier, + ACTIONS(12609), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [319745] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10901), 1, + anon_sym_LBRACE, + STATE(4216), 1, + sym_compound_statement, + ACTIONS(10964), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [319759] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, anon_sym_LBRACE, - ACTIONS(11757), 1, + ACTIONS(11444), 1, anon_sym_COLON, - STATE(8719), 1, + STATE(8549), 1, sym_compound_statement, - STATE(9485), 1, + STATE(8925), 1, sym_field_initializer_list, - [357260] = 5, + [319775] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(12842), 1, + anon_sym_SEMI, + STATE(8103), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [319789] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5702), 1, + anon_sym_COLON, + ACTIONS(8314), 1, + anon_sym_LBRACE, + STATE(4930), 1, + sym_field_declaration_list, + STATE(8961), 1, + sym_base_class_clause, + [319805] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8875), 1, + anon_sym_COMMA, + ACTIONS(12415), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12844), 1, + anon_sym_GT2, + STATE(8498), 1, + aux_sym_template_argument_list_repeat1, + [319821] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12667), 1, + anon_sym_COMMA, + ACTIONS(12846), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12848), 1, + anon_sym_LBRACE, + STATE(8348), 1, + aux_sym_base_class_clause_repeat1, + [319837] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5454), 1, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(7517), 1, anon_sym_LT, - ACTIONS(13058), 1, - sym_identifier, - STATE(4669), 1, - sym_template_type, - STATE(8160), 1, - sym_template_parameter_list, - [357276] = 4, + ACTIONS(12850), 1, + anon_sym_SEMI, + STATE(1833), 1, + sym_template_argument_list, + [319853] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10901), 1, + anon_sym_LBRACE, + STATE(4180), 1, + sym_compound_statement, + ACTIONS(10964), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [319867] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(12852), 1, + anon_sym_SEMI, + STATE(8107), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [319881] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(12852), 1, + anon_sym_SEMI, + STATE(5618), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [319895] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10932), 1, + anon_sym_LBRACE, + STATE(4409), 1, + sym_compound_statement, + ACTIONS(10964), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [319909] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12854), 1, + anon_sym_EQ, + STATE(7112), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [319923] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10901), 1, + anon_sym_LBRACE, + STATE(4129), 1, + sym_compound_statement, + ACTIONS(10964), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [319937] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(13364), 1, + ACTIONS(12856), 1, anon_sym_SEMI, - STATE(8536), 2, + STATE(5618), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [357290] = 5, + [319951] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12858), 1, + anon_sym_EQ, + STATE(8142), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [319965] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10655), 1, + ACTIONS(5480), 1, anon_sym_LBRACE, - ACTIONS(12920), 1, - anon_sym_LPAREN2, - STATE(3989), 1, - sym_requirement_seq, - STATE(9488), 1, - sym_requires_parameter_list, - [357306] = 4, + ACTIONS(12425), 1, + anon_sym_COLON_COLON, + ACTIONS(12860), 1, + anon_sym_EQ, + STATE(882), 1, + sym_declaration_list, + [319981] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11344), 1, + ACTIONS(12862), 4, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(4218), 1, - sym_compound_statement, - ACTIONS(11336), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [357320] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13366), 1, - anon_sym___except, - ACTIONS(13368), 1, - anon_sym___finally, - STATE(330), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [357334] = 2, + anon_sym_EQ, + anon_sym_try, + [319991] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13370), 4, + ACTIONS(10418), 1, anon_sym_LPAREN2, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [357344] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7588), 1, - anon_sym_LT, - ACTIONS(13372), 1, - anon_sym_SEMI, - STATE(6753), 1, - sym_template_argument_list, - [357360] = 5, - ACTIONS(10969), 1, + ACTIONS(11401), 1, + anon_sym_LBRACK, + STATE(4330), 1, + sym_parameter_list, + STATE(7104), 1, + sym_function_declarator_seq, + [320007] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12878), 1, + ACTIONS(12439), 1, aux_sym_string_literal_token1, - ACTIONS(13374), 1, + ACTIONS(12864), 1, anon_sym_DQUOTE, - ACTIONS(13376), 1, + ACTIONS(12866), 1, sym_escape_sequence, - STATE(8501), 1, + STATE(8121), 1, aux_sym_string_literal_repeat1, - [357376] = 5, + [320023] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, + ACTIONS(5702), 1, anon_sym_COLON, - ACTIONS(10269), 1, + ACTIONS(6367), 1, anon_sym_LBRACE, - STATE(6781), 1, + STATE(2650), 1, sym_field_declaration_list, - STATE(9608), 1, + STATE(8744), 1, sym_base_class_clause, - [357392] = 5, - ACTIONS(10969), 1, + [320039] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12892), 1, + ACTIONS(12473), 1, anon_sym_LPAREN, - ACTIONS(13378), 1, + ACTIONS(12868), 1, aux_sym_preproc_include_token2, - ACTIONS(13380), 1, + ACTIONS(12870), 1, sym_preproc_arg, - STATE(9554), 1, + STATE(8995), 1, sym_preproc_params, - [357408] = 5, + [320055] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - STATE(3134), 1, - sym_argument_list, - STATE(5212), 1, - sym_initializer_list, - [357424] = 5, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(12429), 1, + anon_sym_SEMI, + STATE(5618), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [320069] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2949), 1, + ACTIONS(3036), 1, anon_sym_LBRACE, - ACTIONS(6974), 1, + ACTIONS(6968), 1, anon_sym_LPAREN2, - STATE(4224), 1, + STATE(3852), 1, sym_argument_list, - STATE(4365), 1, + STATE(4369), 1, sym_initializer_list, - [357440] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13382), 1, - anon_sym_EQ, - STATE(7724), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [357454] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11309), 1, - anon_sym_LBRACE, - STATE(4109), 1, - sym_compound_statement, - ACTIONS(11336), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [357468] = 5, + [320085] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(12811), 1, anon_sym_COMMA, - ACTIONS(12896), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(13384), 1, - anon_sym_GT2, - STATE(9122), 1, - aux_sym_template_argument_list_repeat1, - [357484] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13386), 1, - anon_sym_EQ, - STATE(7724), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [357498] = 5, + STATE(7962), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(12872), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [320099] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, + ACTIONS(5702), 1, anon_sym_COLON, - ACTIONS(6790), 1, + ACTIONS(6934), 1, anon_sym_LBRACE, - STATE(3118), 1, + STATE(3393), 1, sym_field_declaration_list, - STATE(9563), 1, + STATE(9011), 1, sym_base_class_clause, - [357514] = 5, + [320115] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, + ACTIONS(12673), 1, + anon_sym_COMMA, + STATE(7990), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(12874), 2, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(7783), 1, - anon_sym_LBRACE, - STATE(4815), 1, - sym_field_declaration_list, - STATE(9167), 1, - sym_base_class_clause, - [357530] = 5, - ACTIONS(10969), 1, + [320129] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12884), 1, + ACTIONS(12409), 1, aux_sym_char_literal_token1, - ACTIONS(12886), 1, + ACTIONS(12411), 1, sym_escape_sequence, - ACTIONS(13388), 1, + ACTIONS(12876), 1, anon_sym_SQUOTE, - STATE(8461), 1, + STATE(8055), 1, aux_sym_char_literal_repeat1, - [357546] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13390), 1, - anon_sym_EQ, - STATE(8519), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [357560] = 5, - ACTIONS(10969), 1, + [320145] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12878), 1, + ACTIONS(12439), 1, aux_sym_string_literal_token1, - ACTIONS(12902), 1, + ACTIONS(12445), 1, sym_escape_sequence, - ACTIONS(13392), 1, + ACTIONS(12878), 1, anon_sym_DQUOTE, - STATE(8479), 1, + STATE(8070), 1, aux_sym_string_literal_repeat1, - [357576] = 4, + [320161] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10329), 1, + anon_sym_LBRACE, + ACTIONS(12413), 1, + anon_sym_LPAREN2, + STATE(4170), 1, + sym_requirement_seq, + STATE(8916), 1, + sym_requires_parameter_list, + [320177] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10934), 1, + anon_sym_LBRACE, + STATE(4053), 1, + sym_compound_statement, + ACTIONS(10964), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [320191] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(7875), 1, anon_sym___attribute__, - ACTIONS(13394), 1, + ACTIONS(12880), 1, anon_sym_SEMI, - STATE(5840), 2, + STATE(8141), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [357590] = 5, + [320205] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7588), 1, - anon_sym_LT, - ACTIONS(13396), 1, - anon_sym_SEMI, - STATE(6753), 1, - sym_template_argument_list, - [357606] = 5, + ACTIONS(5702), 1, + anon_sym_COLON, + ACTIONS(9670), 1, + anon_sym_LBRACE, + STATE(5805), 1, + sym_field_declaration_list, + STATE(9004), 1, + sym_base_class_clause, + [320221] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(12896), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(13398), 1, - anon_sym_GT2, - STATE(8654), 1, - aux_sym_template_argument_list_repeat1, - [357622] = 5, + ACTIONS(5702), 1, + anon_sym_COLON, + ACTIONS(9670), 1, + anon_sym_LBRACE, + STATE(5810), 1, + sym_field_declaration_list, + STATE(9006), 1, + sym_base_class_clause, + [320237] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10681), 1, + ACTIONS(5702), 1, + anon_sym_COLON, + ACTIONS(6934), 1, anon_sym_LBRACE, - ACTIONS(12920), 1, - anon_sym_LPAREN2, - STATE(4629), 1, - sym_requirement_seq, - STATE(9394), 1, - sym_requires_parameter_list, - [357638] = 4, + STATE(3429), 1, + sym_field_declaration_list, + STATE(9031), 1, + sym_base_class_clause, + [320253] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13400), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - STATE(8506), 1, - aux_sym_type_definition_declarators_repeat1, - ACTIONS(13403), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [357652] = 4, + ACTIONS(12415), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, + anon_sym_GT2, + STATE(8589), 1, + aux_sym_template_argument_list_repeat1, + [320269] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11301), 1, + ACTIONS(3899), 1, anon_sym_LBRACE, - STATE(4513), 1, - sym_compound_statement, - ACTIONS(11336), 2, + ACTIONS(8299), 1, anon_sym_LPAREN2, - anon_sym_LBRACK, - [357666] = 5, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(12884), 1, - aux_sym_char_literal_token1, - ACTIONS(12886), 1, - sym_escape_sequence, - ACTIONS(13405), 1, - anon_sym_SQUOTE, - STATE(8461), 1, - aux_sym_char_literal_repeat1, - [357682] = 4, + STATE(8647), 2, + sym_argument_list, + sym_initializer_list, + [320283] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(13407), 1, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(7517), 1, + anon_sym_LT, + ACTIONS(12884), 1, anon_sym_SEMI, - STATE(8533), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [357696] = 4, + STATE(1833), 1, + sym_template_argument_list, + [320299] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13409), 1, + ACTIONS(12886), 1, anon_sym_EQ, - STATE(7724), 2, + STATE(7112), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [357710] = 4, + [320313] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12410), 1, + ACTIONS(12037), 1, anon_sym_EQ, - STATE(8493), 2, + STATE(8105), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [357724] = 4, + [320327] = 5, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(12439), 1, + aux_sym_string_literal_token1, + ACTIONS(12888), 1, + anon_sym_DQUOTE, + ACTIONS(12890), 1, + sym_escape_sequence, + STATE(8016), 1, + aux_sym_string_literal_repeat1, + [320343] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(11444), 1, + anon_sym_COLON, + STATE(8567), 1, + sym_compound_statement, + STATE(9018), 1, + sym_field_initializer_list, + [320359] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13411), 1, + ACTIONS(12892), 1, anon_sym_EQ, - STATE(7724), 2, + STATE(7112), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [357738] = 4, + [320373] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12494), 1, + ACTIONS(11995), 1, anon_sym_EQ, - STATE(8510), 2, + STATE(8131), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [357752] = 4, + [320387] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11378), 1, + ACTIONS(10934), 1, anon_sym_LBRACE, - STATE(3266), 1, + STATE(4110), 1, sym_compound_statement, - ACTIONS(11336), 2, + ACTIONS(10964), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [357766] = 5, + [320401] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, - anon_sym_COLON, - ACTIONS(6790), 1, - anon_sym_LBRACE, - STATE(3149), 1, - sym_field_declaration_list, - STATE(9588), 1, - sym_base_class_clause, - [357782] = 4, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(12894), 1, + anon_sym_SEMI, + STATE(8153), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [320415] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13413), 1, + ACTIONS(12896), 1, anon_sym_EQ, - STATE(7724), 2, + STATE(7112), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [357796] = 4, + [320429] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12447), 1, + ACTIONS(12045), 1, anon_sym_EQ, - STATE(8512), 2, + STATE(8135), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [357810] = 5, + [320443] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(12896), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(13415), 1, - anon_sym_GT2, - STATE(9094), 1, - aux_sym_template_argument_list_repeat1, - [357826] = 4, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(12894), 1, + anon_sym_SEMI, + STATE(5618), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [320457] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13417), 1, + ACTIONS(12898), 1, anon_sym_EQ, - STATE(7724), 2, + STATE(7112), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [357840] = 4, + [320471] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12451), 1, + ACTIONS(11999), 1, anon_sym_EQ, - STATE(8522), 2, + STATE(8145), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [357854] = 5, - ACTIONS(3), 1, + [320485] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(7588), 1, - anon_sym_LT, - ACTIONS(13419), 1, - anon_sym_SEMI, - STATE(6753), 1, - sym_template_argument_list, - [357870] = 4, + ACTIONS(12409), 1, + aux_sym_char_literal_token1, + ACTIONS(12411), 1, + sym_escape_sequence, + ACTIONS(12900), 1, + anon_sym_SQUOTE, + STATE(8055), 1, + aux_sym_char_literal_repeat1, + [320501] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13421), 1, + ACTIONS(12902), 1, anon_sym_EQ, - STATE(7724), 2, + STATE(7112), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [357884] = 4, + [320515] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12477), 1, + ACTIONS(11977), 1, anon_sym_EQ, - STATE(8524), 2, + STATE(8147), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [357898] = 4, + [320529] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13423), 1, + ACTIONS(12904), 1, anon_sym_EQ, - STATE(7724), 2, + STATE(7112), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [357912] = 4, + [320543] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12457), 1, + ACTIONS(12085), 1, anon_sym_EQ, - STATE(8527), 2, + STATE(8151), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [357926] = 5, - ACTIONS(10969), 1, + [320557] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12878), 1, + ACTIONS(12439), 1, aux_sym_string_literal_token1, - ACTIONS(12902), 1, + ACTIONS(12445), 1, sym_escape_sequence, - ACTIONS(13425), 1, + ACTIONS(12906), 1, anon_sym_DQUOTE, - STATE(8479), 1, + STATE(8070), 1, aux_sym_string_literal_repeat1, - [357942] = 4, + [320573] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10934), 1, + anon_sym_LBRACE, + STATE(3952), 1, + sym_compound_statement, + ACTIONS(10964), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [320587] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13427), 1, + ACTIONS(12908), 1, anon_sym_EQ, - STATE(7724), 2, + STATE(7112), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [357956] = 4, + [320601] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12481), 1, + ACTIONS(12079), 1, anon_sym_EQ, - STATE(8530), 2, + STATE(8154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [357970] = 4, + [320615] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11301), 1, - anon_sym_LBRACE, - STATE(4495), 1, - sym_compound_statement, - ACTIONS(11336), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [357984] = 4, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(12910), 1, + anon_sym_SEMI, + STATE(5618), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [320629] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13429), 1, + ACTIONS(12912), 1, anon_sym_EQ, - STATE(7724), 2, + STATE(7112), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [357998] = 4, + [320643] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12402), 1, + ACTIONS(12011), 1, anon_sym_EQ, - STATE(8534), 2, + STATE(8156), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [358012] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(13431), 1, - anon_sym_SEMI, - STATE(8538), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [358026] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(13431), 1, - anon_sym_SEMI, - STATE(5840), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [358040] = 4, + [320657] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13433), 1, + ACTIONS(12914), 1, anon_sym_EQ, - STATE(7724), 2, + STATE(7112), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [358054] = 4, + [320671] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(13435), 1, - anon_sym_SEMI, - STATE(8187), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [358068] = 4, + ACTIONS(5702), 1, + anon_sym_COLON, + ACTIONS(7550), 1, + anon_sym_LBRACE, + STATE(4475), 1, + sym_field_declaration_list, + STATE(9054), 1, + sym_base_class_clause, + [320687] = 5, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(12473), 1, + anon_sym_LPAREN, + ACTIONS(12916), 1, + aux_sym_preproc_include_token2, + ACTIONS(12918), 1, + sym_preproc_arg, + STATE(8807), 1, + sym_preproc_params, + [320703] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(13435), 1, - anon_sym_SEMI, - STATE(5840), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [358082] = 4, + ACTIONS(5702), 1, + anon_sym_COLON, + ACTIONS(7550), 1, + anon_sym_LBRACE, + STATE(4478), 1, + sym_field_declaration_list, + STATE(9055), 1, + sym_base_class_clause, + [320719] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11301), 1, + ACTIONS(5702), 1, + anon_sym_COLON, + ACTIONS(7550), 1, anon_sym_LBRACE, - STATE(4430), 1, - sym_compound_statement, - ACTIONS(11336), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [358096] = 4, + STATE(4490), 1, + sym_field_declaration_list, + STATE(8949), 1, + sym_base_class_clause, + [320735] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(13437), 1, - anon_sym_SEMI, - STATE(5840), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [358110] = 4, + ACTIONS(12059), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_identifier, + [320745] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11305), 1, + ACTIONS(10932), 1, anon_sym_LBRACE, - STATE(4741), 1, + STATE(4420), 1, sym_compound_statement, - ACTIONS(11336), 2, + ACTIONS(10964), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [358124] = 5, + [320759] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5454), 1, + ACTIONS(5372), 1, anon_sym_LT, - ACTIONS(13058), 1, + ACTIONS(12528), 1, sym_identifier, - STATE(932), 1, - sym_template_parameter_list, - STATE(4669), 1, + STATE(3044), 1, sym_template_type, - [358140] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - ACTIONS(5462), 1, - anon_sym_SEMI, - ACTIONS(7588), 1, - anon_sym_LT, - STATE(1918), 1, - sym_template_argument_list, - [358156] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(13439), 1, - anon_sym_SEMI, - STATE(8233), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [358170] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12956), 1, - anon_sym_COMMA, - ACTIONS(13441), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(13443), 1, - anon_sym_LBRACE, - STATE(9030), 1, - aux_sym_base_class_clause_repeat1, - [358186] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(7850), 1, - sym_access_specifier, - ACTIONS(12946), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - [358198] = 5, + STATE(7790), 1, + sym_template_parameter_list, + [320775] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, - anon_sym_COLON, - ACTIONS(8627), 1, + ACTIONS(2658), 1, anon_sym_LBRACE, - STATE(5469), 1, - sym_field_declaration_list, - STATE(9263), 1, - sym_base_class_clause, - [358214] = 5, - ACTIONS(10969), 1, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + STATE(3852), 1, + sym_argument_list, + STATE(3856), 1, + sym_initializer_list, + [320791] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12878), 1, + ACTIONS(12439), 1, aux_sym_string_literal_token1, - ACTIONS(13445), 1, + ACTIONS(12920), 1, anon_sym_DQUOTE, - ACTIONS(13447), 1, + ACTIONS(12922), 1, sym_escape_sequence, - STATE(8192), 1, + STATE(8175), 1, aux_sym_string_literal_repeat1, - [358230] = 5, - ACTIONS(10969), 1, + [320807] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12892), 1, + ACTIONS(12473), 1, anon_sym_LPAREN, - ACTIONS(13449), 1, + ACTIONS(12924), 1, aux_sym_preproc_include_token2, - ACTIONS(13451), 1, + ACTIONS(12926), 1, sym_preproc_arg, - STATE(9575), 1, + STATE(9110), 1, sym_preproc_params, - [358246] = 5, + [320823] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3053), 1, + ACTIONS(3964), 1, anon_sym_LBRACE, - ACTIONS(6926), 1, + ACTIONS(6858), 1, anon_sym_LPAREN2, - STATE(4043), 1, + STATE(3355), 1, sym_argument_list, - STATE(4605), 1, + STATE(5101), 1, sym_initializer_list, - [358262] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11378), 1, - anon_sym_LBRACE, - STATE(3089), 1, - sym_compound_statement, - ACTIONS(11336), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [358276] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13453), 1, - anon_sym___except, - ACTIONS(13455), 1, - anon_sym___finally, - STATE(611), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [358290] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym___attribute__, - ACTIONS(13229), 1, - anon_sym_SEMI, - STATE(8502), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [358304] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11553), 1, - anon_sym_COLON, - ACTIONS(11604), 1, - anon_sym_RPAREN, - STATE(8869), 1, - sym_gnu_asm_output_operand_list, - [358317] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13457), 1, - anon_sym_RPAREN, - ACTIONS(13459), 1, - anon_sym_COLON, - STATE(8768), 1, - sym_gnu_asm_clobber_list, - [358330] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9222), 1, - anon_sym_COMMA, - ACTIONS(13461), 1, - anon_sym_RPAREN, - STATE(8862), 1, - aux_sym_generic_expression_repeat1, - [358343] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13463), 1, - anon_sym_GT2, - STATE(8559), 1, - aux_sym_template_argument_list_repeat1, - [358356] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9222), 1, - anon_sym_COMMA, - ACTIONS(13465), 1, - anon_sym_RPAREN, - STATE(8862), 1, - aux_sym_generic_expression_repeat1, - [358369] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13467), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [358382] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13469), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [358395] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13471), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [358408] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13473), 1, - sym_identifier, - STATE(3237), 1, - sym_template_function, - STATE(4669), 1, - sym_template_type, - [358421] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13475), 1, - anon_sym_COMMA, - ACTIONS(13477), 1, - anon_sym_RBRACK_RBRACK, - STATE(8831), 1, - aux_sym_attribute_declaration_repeat1, - [358434] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13479), 1, - sym_identifier, - STATE(2503), 1, - sym_template_type, - STATE(4095), 1, - sym_template_function, - [358447] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13481), 1, - anon_sym_COMMA, - ACTIONS(13483), 1, - anon_sym_RPAREN, - STATE(8990), 1, - aux_sym_preproc_params_repeat1, - [358460] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8451), 1, - anon_sym_EQ, - ACTIONS(8449), 2, - anon_sym_COMMA, - anon_sym_GT2, - [358471] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9228), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [358480] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13475), 1, - anon_sym_COMMA, - ACTIONS(13485), 1, - anon_sym_RBRACK_RBRACK, - STATE(8831), 1, - aux_sym_attribute_declaration_repeat1, - [358493] = 4, + [320839] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13487), 1, - sym_identifier, - STATE(3237), 1, - sym_template_function, - STATE(4669), 1, - sym_template_type, - [358506] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10993), 1, - anon_sym_COMMA, - ACTIONS(10997), 1, - anon_sym_SEMI, - STATE(8974), 1, - aux_sym_declaration_declarator_repeat1, - [358519] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_COMMA, - ACTIONS(9382), 1, - anon_sym_RPAREN, - STATE(8609), 1, - aux_sym_argument_list_repeat1, - [358532] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13489), 1, - anon_sym_GT2, - STATE(8573), 1, - aux_sym_template_argument_list_repeat1, - [358545] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13491), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [358558] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13493), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [358571] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13495), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [358584] = 4, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(13497), 1, - aux_sym_preproc_include_token2, - ACTIONS(13499), 1, - anon_sym_LPAREN2, - STATE(9660), 1, - sym_preproc_argument_list, - [358597] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13501), 1, - anon_sym_COMMA, - ACTIONS(13503), 1, - anon_sym_GT2, - STATE(9028), 1, - aux_sym_template_parameter_list_repeat1, - [358610] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_COMMA, - ACTIONS(9276), 1, - anon_sym_RPAREN, - STATE(8861), 1, - aux_sym_argument_list_repeat1, - [358623] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9384), 1, - anon_sym_COMMA, - ACTIONS(9386), 1, - anon_sym_RBRACE, - STATE(8612), 1, - aux_sym_initializer_list_repeat1, - [358636] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13505), 1, - sym_identifier, - STATE(4299), 1, - sym_template_function, - STATE(4669), 1, - sym_template_type, - [358649] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13507), 1, - anon_sym_COMMA, - ACTIONS(13510), 1, - anon_sym_RPAREN, - STATE(8579), 1, - aux_sym_parameter_list_repeat1, - [358662] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13512), 1, - anon_sym_GT2, - STATE(8584), 1, - aux_sym_template_argument_list_repeat1, - [358675] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13514), 1, - anon_sym_COMMA, - ACTIONS(13516), 1, - anon_sym_RPAREN, - STATE(8864), 1, - aux_sym_parameter_list_repeat1, - [358688] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13518), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [358701] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13520), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [358714] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13522), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [358727] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13136), 1, - anon_sym_DASH_GT, - ACTIONS(13524), 1, - anon_sym_SEMI, - STATE(9662), 1, - sym_trailing_return_type, - [358740] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13475), 1, + ACTIONS(12667), 1, anon_sym_COMMA, - ACTIONS(13526), 1, - anon_sym_RBRACK_RBRACK, - STATE(8730), 1, - aux_sym_attribute_declaration_repeat1, - [358753] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13528), 1, + ACTIONS(12928), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(13530), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [358764] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5568), 1, - anon_sym_LBRACE, - ACTIONS(12978), 1, - anon_sym_COLON_COLON, - STATE(501), 1, - sym_declaration_list, - [358777] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13532), 1, - anon_sym_COMMA, - ACTIONS(13535), 1, - anon_sym_RPAREN, - STATE(8589), 1, - aux_sym_requires_parameter_list_repeat1, - [358790] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12956), 1, - anon_sym_COMMA, - ACTIONS(13537), 1, + ACTIONS(12930), 1, anon_sym_LBRACE, - STATE(8706), 1, + STATE(8537), 1, aux_sym_base_class_clause_repeat1, - [358803] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11553), 1, - anon_sym_COLON, - ACTIONS(11642), 1, - anon_sym_RPAREN, - STATE(8613), 1, - sym_gnu_asm_output_operand_list, - [358816] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_COMMA, - ACTIONS(9358), 1, - anon_sym_RPAREN, - STATE(8851), 1, - aux_sym_argument_list_repeat1, - [358829] = 4, + [320855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13539), 1, + ACTIONS(12932), 1, sym_identifier, - STATE(3123), 1, - sym_template_function, - STATE(4669), 1, - sym_template_type, - [358842] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13541), 1, - anon_sym_GT2, - STATE(8625), 1, - aux_sym_template_argument_list_repeat1, - [358855] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13543), 3, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - [358864] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9222), 1, - anon_sym_COMMA, - ACTIONS(13545), 1, - anon_sym_RPAREN, - STATE(8862), 1, - aux_sym_generic_expression_repeat1, - [358877] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9278), 1, - anon_sym_COMMA, - ACTIONS(9280), 1, - anon_sym_RBRACE, - STATE(8865), 1, - aux_sym_initializer_list_repeat1, - [358890] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13547), 1, - anon_sym_GT2, - STATE(8602), 1, - aux_sym_template_argument_list_repeat1, - [358903] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13514), 1, + ACTIONS(12934), 3, anon_sym_COMMA, - ACTIONS(13549), 1, anon_sym_RPAREN, - STATE(8660), 1, - aux_sym_parameter_list_repeat1, - [358916] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13551), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [358929] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13553), 1, anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [358942] = 4, + [320867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13555), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [358955] = 4, + STATE(7490), 1, + sym_access_specifier, + ACTIONS(12609), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [320879] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13557), 1, - anon_sym_COMMA, - ACTIONS(13559), 1, + ACTIONS(5488), 1, anon_sym_LBRACE, - STATE(8920), 1, - aux_sym_field_initializer_list_repeat1, - [358968] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13561), 1, - anon_sym_GT2, - STATE(9117), 1, - aux_sym_template_argument_list_repeat1, - [358981] = 2, + ACTIONS(12425), 1, + anon_sym_COLON_COLON, + ACTIONS(12936), 1, + anon_sym_EQ, + STATE(750), 1, + sym_declaration_list, + [320895] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13563), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5702), 1, anon_sym_COLON, - [358990] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13565), 1, - anon_sym_COMMA, - ACTIONS(13567), 1, - anon_sym_RPAREN, - STATE(8769), 1, - aux_sym_throw_specifier_repeat1, - [359003] = 2, + ACTIONS(6695), 1, + anon_sym_LBRACE, + STATE(3021), 1, + sym_field_declaration_list, + STATE(8751), 1, + sym_base_class_clause, + [320911] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13569), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5702), 1, anon_sym_COLON, - [359012] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12956), 1, - anon_sym_COMMA, - ACTIONS(12958), 1, + ACTIONS(6910), 1, anon_sym_LBRACE, - STATE(9124), 1, - aux_sym_base_class_clause_repeat1, - [359025] = 4, - ACTIONS(3), 1, + STATE(3317), 1, + sym_field_declaration_list, + STATE(8665), 1, + sym_base_class_clause, + [320927] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_COMMA, - ACTIONS(9390), 1, - anon_sym_RPAREN, - STATE(9063), 1, - aux_sym_argument_list_repeat1, - [359038] = 4, - ACTIONS(3), 1, + ACTIONS(12409), 1, + aux_sym_char_literal_token1, + ACTIONS(12411), 1, + sym_escape_sequence, + ACTIONS(12938), 1, + anon_sym_SQUOTE, + STATE(8055), 1, + aux_sym_char_literal_repeat1, + [320943] = 5, + ACTIONS(10479), 1, sym_comment, - ACTIONS(13571), 1, - sym_identifier, - STATE(2503), 1, - sym_template_type, - STATE(3123), 1, - sym_template_function, - [359051] = 4, + ACTIONS(12439), 1, + aux_sym_string_literal_token1, + ACTIONS(12445), 1, + sym_escape_sequence, + ACTIONS(12940), 1, + anon_sym_DQUOTE, + STATE(8070), 1, + aux_sym_string_literal_repeat1, + [320959] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12956), 1, - anon_sym_COMMA, - ACTIONS(12958), 1, + ACTIONS(12413), 1, + anon_sym_LPAREN2, + ACTIONS(12942), 1, anon_sym_LBRACE, - STATE(8706), 1, - aux_sym_base_class_clause_repeat1, - [359064] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4801), 1, - anon_sym_RBRACE, - ACTIONS(13573), 1, - anon_sym_COMMA, - STATE(9089), 1, - aux_sym_initializer_list_repeat1, - [359077] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13575), 1, - anon_sym_RPAREN, - ACTIONS(13577), 1, - anon_sym_COLON, - STATE(8634), 1, - sym_gnu_asm_input_operand_list, - [359090] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11553), 1, - anon_sym_COLON, - ACTIONS(11644), 1, - anon_sym_RPAREN, - STATE(8636), 1, - sym_gnu_asm_output_operand_list, - [359103] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13579), 1, - anon_sym_GT2, - STATE(8619), 1, - aux_sym_template_argument_list_repeat1, - [359116] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13581), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [359129] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13583), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [359142] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13585), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [359155] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13587), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [359168] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13589), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT2, - [359177] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13577), 1, - anon_sym_COLON, - ACTIONS(13591), 1, - anon_sym_RPAREN, - STATE(8711), 1, - sym_gnu_asm_input_operand_list, - [359190] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13593), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [359203] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13595), 1, - anon_sym_catch, - STATE(425), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [359214] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11553), 1, - anon_sym_COLON, - ACTIONS(11586), 1, - anon_sym_RPAREN, - STATE(8781), 1, - sym_gnu_asm_output_operand_list, - [359227] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13597), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [359240] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13599), 1, - sym_identifier, - STATE(3391), 1, - sym_template_function, - STATE(4669), 1, - sym_template_type, - [359253] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9360), 1, - anon_sym_COMMA, - ACTIONS(9362), 1, - anon_sym_RBRACE, - STATE(8889), 1, - aux_sym_initializer_list_repeat1, - [359266] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13601), 1, - anon_sym_GT2, - STATE(8631), 1, - aux_sym_template_argument_list_repeat1, - [359279] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13603), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [359292] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13605), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [359305] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13607), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [359318] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13475), 1, - anon_sym_COMMA, - ACTIONS(13609), 1, - anon_sym_RBRACK_RBRACK, - STATE(8561), 1, - aux_sym_attribute_declaration_repeat1, - [359331] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_COMMA, - ACTIONS(13611), 1, - anon_sym_RPAREN, - STATE(9063), 1, - aux_sym_argument_list_repeat1, - [359344] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13459), 1, - anon_sym_COLON, - ACTIONS(13613), 1, - anon_sym_RPAREN, - STATE(8641), 1, - sym_gnu_asm_clobber_list, - [359357] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13615), 1, - sym_identifier, - STATE(3702), 1, - sym_template_function, - STATE(4669), 1, - sym_template_type, - [359370] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13577), 1, - anon_sym_COLON, - ACTIONS(13617), 1, - anon_sym_RPAREN, - STATE(8644), 1, - sym_gnu_asm_input_operand_list, - [359383] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13619), 1, - anon_sym_GT2, - STATE(8640), 1, - aux_sym_template_argument_list_repeat1, - [359396] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13621), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [359409] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13623), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [359422] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13625), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [359435] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13627), 1, - anon_sym_RPAREN, - ACTIONS(13629), 1, - anon_sym_COLON, - STATE(10367), 1, - sym_gnu_asm_goto_list, - [359448] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13565), 1, - anon_sym_COMMA, - ACTIONS(13631), 1, - anon_sym_RPAREN, - STATE(8606), 1, - aux_sym_throw_specifier_repeat1, - [359461] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13633), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [359474] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13459), 1, - anon_sym_COLON, - ACTIONS(13635), 1, - anon_sym_RPAREN, - STATE(8645), 1, - sym_gnu_asm_clobber_list, - [359487] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13629), 1, - anon_sym_COLON, - ACTIONS(13637), 1, - anon_sym_RPAREN, - STATE(10404), 1, - sym_gnu_asm_goto_list, - [359500] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9222), 1, - anon_sym_COMMA, - ACTIONS(13639), 1, - anon_sym_RPAREN, - STATE(8862), 1, - aux_sym_generic_expression_repeat1, - [359513] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13641), 1, - anon_sym_GT2, - STATE(8650), 1, - aux_sym_template_argument_list_repeat1, - [359526] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13643), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [359539] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13645), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [359552] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13647), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [359565] = 4, + STATE(6742), 1, + sym_requirement_seq, + STATE(8958), 1, + sym_requires_parameter_list, + [320975] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13475), 1, - anon_sym_COMMA, - ACTIONS(13649), 1, - anon_sym_RBRACK_RBRACK, - STATE(8859), 1, - aux_sym_attribute_declaration_repeat1, - [359578] = 4, + ACTIONS(10903), 1, + anon_sym_LBRACE, + STATE(1858), 1, + sym_compound_statement, + ACTIONS(10964), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [320989] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9623), 1, - anon_sym_RBRACK, - ACTIONS(13651), 1, - anon_sym_COMMA, - STATE(8652), 1, - aux_sym_subscript_argument_list_repeat1, - [359591] = 4, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(12944), 1, + anon_sym_SEMI, + STATE(7848), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [321003] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11553), 1, - anon_sym_COLON, - ACTIONS(11567), 1, - anon_sym_RPAREN, - STATE(8882), 1, - sym_gnu_asm_output_operand_list, - [359604] = 4, + ACTIONS(7875), 1, + anon_sym___attribute__, + ACTIONS(12719), 1, + anon_sym_SEMI, + STATE(8025), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [321017] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(12946), 1, anon_sym_COMMA, - ACTIONS(13654), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [359617] = 3, + ACTIONS(12948), 1, + anon_sym_RBRACK_RBRACK, + STATE(8181), 1, + aux_sym_attribute_declaration_repeat1, + [321030] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13656), 1, - anon_sym_catch, - STATE(1969), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [359628] = 4, + ACTIONS(12946), 1, + anon_sym_COMMA, + ACTIONS(12950), 1, + anon_sym_RBRACK_RBRACK, + STATE(8515), 1, + aux_sym_attribute_declaration_repeat1, + [321043] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13658), 1, - anon_sym_GT2, - STATE(8659), 1, - aux_sym_template_argument_list_repeat1, - [359641] = 4, + ACTIONS(12952), 1, + anon_sym_RPAREN, + ACTIONS(12954), 1, + anon_sym_COLON, + STATE(9670), 1, + sym_gnu_asm_goto_list, + [321056] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(12946), 1, anon_sym_COMMA, - ACTIONS(13660), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [359654] = 4, + ACTIONS(12956), 1, + anon_sym_RBRACK_RBRACK, + STATE(8224), 1, + aux_sym_attribute_declaration_repeat1, + [321069] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(12667), 1, anon_sym_COMMA, - ACTIONS(13662), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [359667] = 4, + ACTIONS(12669), 1, + anon_sym_LBRACE, + STATE(8471), 1, + aux_sym_base_class_clause_repeat1, + [321082] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8861), 1, anon_sym_COMMA, - ACTIONS(13664), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [359680] = 4, + ACTIONS(9043), 1, + anon_sym_RPAREN, + STATE(8261), 1, + aux_sym_argument_list_repeat1, + [321095] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13514), 1, + ACTIONS(8818), 1, anon_sym_COMMA, - ACTIONS(13666), 1, - anon_sym_RPAREN, - STATE(8579), 1, - aux_sym_parameter_list_repeat1, - [359693] = 4, + ACTIONS(12958), 1, + anon_sym_RBRACK, + STATE(8212), 1, + aux_sym_lambda_capture_specifier_repeat1, + [321108] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13668), 1, + ACTIONS(12960), 1, anon_sym_LPAREN2, - ACTIONS(13670), 1, + ACTIONS(12962), 1, anon_sym_constexpr, - STATE(202), 1, + STATE(208), 1, sym_condition_clause, - [359706] = 4, + [321121] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8861), 1, anon_sym_COMMA, - ACTIONS(13672), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [359719] = 4, - ACTIONS(3), 1, + ACTIONS(8863), 1, + anon_sym_RPAREN, + STATE(8283), 1, + aux_sym_argument_list_repeat1, + [321134] = 4, + ACTIONS(10479), 1, sym_comment, - ACTIONS(13475), 1, - anon_sym_COMMA, - ACTIONS(13674), 1, - anon_sym_RBRACK_RBRACK, - STATE(8773), 1, - aux_sym_attribute_declaration_repeat1, - [359732] = 4, + ACTIONS(12409), 1, + aux_sym_char_literal_token1, + ACTIONS(12964), 1, + sym_escape_sequence, + STATE(8144), 1, + aux_sym_char_literal_repeat1, + [321147] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(12966), 1, anon_sym_COMMA, - ACTIONS(13676), 1, - anon_sym_GT2, - STATE(8897), 1, - aux_sym_template_argument_list_repeat1, - [359745] = 4, + ACTIONS(12968), 1, + anon_sym_RPAREN, + STATE(8375), 1, + aux_sym_parameter_list_repeat1, + [321160] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8861), 1, anon_sym_COMMA, - ACTIONS(13678), 1, - anon_sym_GT2, - STATE(8668), 1, - aux_sym_template_argument_list_repeat1, - [359758] = 4, + ACTIONS(8865), 1, + anon_sym_RPAREN, + STATE(8274), 1, + aux_sym_argument_list_repeat1, + [321173] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8861), 1, anon_sym_COMMA, - ACTIONS(13680), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [359771] = 4, + ACTIONS(8957), 1, + anon_sym_RPAREN, + STATE(8586), 1, + aux_sym_argument_list_repeat1, + [321186] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(4731), 1, + anon_sym_RBRACE, + ACTIONS(12970), 1, anon_sym_COMMA, - ACTIONS(13682), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [359784] = 4, + STATE(8280), 1, + aux_sym_initializer_list_repeat1, + [321199] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(12972), 1, anon_sym_COMMA, - ACTIONS(13684), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [359797] = 3, + ACTIONS(12974), 1, + anon_sym_RPAREN, + STATE(8625), 1, + aux_sym_throw_specifier_repeat1, + [321212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13686), 1, + ACTIONS(12976), 1, anon_sym_catch, - STATE(680), 2, + STATE(379), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [359808] = 4, + [321223] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11553), 1, - anon_sym_COLON, - ACTIONS(11606), 1, - anon_sym_RPAREN, - STATE(8902), 1, - sym_gnu_asm_output_operand_list, - [359821] = 4, + ACTIONS(5482), 1, + anon_sym_LBRACE, + ACTIONS(12425), 1, + anon_sym_COLON_COLON, + STATE(553), 1, + sym_declaration_list, + [321236] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(9045), 1, anon_sym_COMMA, - ACTIONS(13688), 1, - anon_sym_GT2, - STATE(8674), 1, - aux_sym_template_argument_list_repeat1, - [359834] = 4, + ACTIONS(9047), 1, + anon_sym_RBRACE, + STATE(8268), 1, + aux_sym_initializer_list_repeat1, + [321249] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(12978), 1, anon_sym_COMMA, - ACTIONS(13690), 1, + ACTIONS(12980), 1, anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [359847] = 4, + STATE(8480), 1, + aux_sym_template_parameter_list_repeat1, + [321262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13692), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [359860] = 4, + ACTIONS(12982), 1, + anon_sym_catch, + STATE(371), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [321273] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13694), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [359873] = 3, + ACTIONS(12984), 1, + anon_sym_RPAREN, + ACTIONS(12986), 1, + anon_sym_COLON, + STATE(8217), 1, + sym_gnu_asm_clobber_list, + [321286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13696), 1, + ACTIONS(12988), 1, anon_sym_catch, - STATE(470), 2, + STATE(459), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [359884] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13698), 1, - anon_sym_GT2, - STATE(8679), 1, - aux_sym_template_argument_list_repeat1, - [359897] = 4, + [321297] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(12990), 3, anon_sym_COMMA, - ACTIONS(13700), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [359910] = 4, + anon_sym_SEMI, + anon_sym___attribute__, + [321306] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13702), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [359923] = 4, + ACTIONS(11208), 1, + anon_sym_COLON, + ACTIONS(11214), 1, + anon_sym_RPAREN, + STATE(8269), 1, + sym_gnu_asm_output_operand_list, + [321319] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13704), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [359936] = 4, + ACTIONS(12992), 3, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + [321328] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13475), 1, - anon_sym_COMMA, - ACTIONS(13706), 1, - anon_sym_RBRACK_RBRACK, - STATE(8731), 1, - aux_sym_attribute_declaration_repeat1, - [359949] = 4, + ACTIONS(12954), 1, + anon_sym_COLON, + ACTIONS(12994), 1, + anon_sym_RPAREN, + STATE(9120), 1, + sym_gnu_asm_goto_list, + [321341] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13475), 1, + ACTIONS(12996), 3, anon_sym_COMMA, - ACTIONS(13708), 1, - anon_sym_RBRACK_RBRACK, - STATE(8831), 1, - aux_sym_attribute_declaration_repeat1, - [359962] = 4, + anon_sym_SEMI, + anon_sym___attribute__, + [321350] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9240), 1, + ACTIONS(8913), 1, anon_sym_COMMA, - ACTIONS(13710), 1, + ACTIONS(8915), 1, anon_sym_RBRACK, - STATE(8652), 1, + STATE(8393), 1, aux_sym_subscript_argument_list_repeat1, - [359975] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13712), 1, - anon_sym_GT2, - STATE(8686), 1, - aux_sym_template_argument_list_repeat1, - [359988] = 4, + [321363] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8949), 1, anon_sym_COMMA, - ACTIONS(13714), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [360001] = 4, + ACTIONS(8951), 1, + anon_sym_RBRACE, + STATE(8193), 1, + aux_sym_initializer_list_repeat1, + [321376] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13716), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [360014] = 4, + ACTIONS(12998), 1, + sym_identifier, + STATE(2979), 1, + sym_template_function, + STATE(3044), 1, + sym_template_type, + [321389] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(13000), 1, anon_sym_COMMA, - ACTIONS(13718), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [360027] = 3, + ACTIONS(13003), 1, + anon_sym_RPAREN, + STATE(8210), 1, + aux_sym_throw_specifier_repeat1, + [321402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13696), 1, + ACTIONS(13005), 1, anon_sym_catch, - STATE(474), 2, + STATE(268), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [360038] = 4, + [321413] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13720), 1, - sym_identifier, - STATE(3237), 1, - sym_template_function, - STATE(4669), 1, - sym_template_type, - [360051] = 4, + ACTIONS(9129), 1, + anon_sym_RBRACK, + ACTIONS(13007), 1, + anon_sym_COMMA, + STATE(8212), 1, + aux_sym_lambda_capture_specifier_repeat1, + [321426] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12956), 1, - anon_sym_COMMA, - ACTIONS(13722), 1, + ACTIONS(5488), 1, anon_sym_LBRACE, - STATE(8590), 1, - aux_sym_base_class_clause_repeat1, - [360064] = 4, + ACTIONS(12425), 1, + anon_sym_COLON_COLON, + STATE(722), 1, + sym_declaration_list, + [321439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(13012), 1, + anon_sym_RPAREN, + ACTIONS(13010), 2, anon_sym_COMMA, - ACTIONS(13724), 1, - anon_sym_GT2, - STATE(8693), 1, - aux_sym_template_argument_list_repeat1, - [360077] = 4, + anon_sym_SEMI, + [321450] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13726), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [360090] = 4, + ACTIONS(13014), 1, + sym_identifier, + STATE(2979), 1, + sym_template_function, + STATE(3044), 1, + sym_template_type, + [321463] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13728), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [360103] = 4, + ACTIONS(13016), 1, + anon_sym_RPAREN, + ACTIONS(13018), 1, + anon_sym_COLON, + STATE(8417), 1, + sym_gnu_asm_input_operand_list, + [321476] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13730), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [360116] = 4, + ACTIONS(12954), 1, + anon_sym_COLON, + ACTIONS(13020), 1, + anon_sym_RPAREN, + STATE(9593), 1, + sym_gnu_asm_goto_list, + [321489] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(13022), 1, anon_sym_COMMA, - ACTIONS(13732), 1, - anon_sym_GT2, - STATE(9032), 1, - aux_sym_template_argument_list_repeat1, - [360129] = 4, + ACTIONS(13024), 1, + anon_sym_RPAREN, + STATE(8324), 1, + aux_sym_requires_parameter_list_repeat1, + [321502] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13734), 1, - anon_sym_GT2, - STATE(8698), 1, - aux_sym_template_argument_list_repeat1, - [360142] = 4, + ACTIONS(13026), 1, + sym_identifier, + STATE(2979), 1, + sym_template_function, + STATE(3044), 1, + sym_template_type, + [321515] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(6119), 1, anon_sym_COMMA, - ACTIONS(13736), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [360155] = 4, + ACTIONS(13028), 1, + anon_sym_RBRACK, + STATE(8518), 1, + aux_sym_structured_binding_declarator_repeat1, + [321528] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(13738), 1, + ACTIONS(13030), 1, anon_sym_GT2, - STATE(8914), 1, + STATE(8292), 1, aux_sym_template_argument_list_repeat1, - [360168] = 4, + [321541] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(13740), 1, + ACTIONS(13032), 1, anon_sym_GT2, - STATE(8914), 1, + STATE(8236), 1, aux_sym_template_argument_list_repeat1, - [360181] = 4, + [321554] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13742), 1, + ACTIONS(8867), 1, anon_sym_COMMA, - ACTIONS(13744), 1, - anon_sym_RPAREN, - STATE(8932), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [360194] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11553), 1, - anon_sym_COLON, - ACTIONS(11638), 1, - anon_sym_RPAREN, - STATE(9080), 1, - sym_gnu_asm_output_operand_list, - [360207] = 4, + ACTIONS(8869), 1, + anon_sym_RBRACE, + STATE(8281), 1, + aux_sym_initializer_list_repeat1, + [321567] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(12946), 1, anon_sym_COMMA, - ACTIONS(13746), 1, - anon_sym_GT2, - STATE(8704), 1, - aux_sym_template_argument_list_repeat1, - [360220] = 4, + ACTIONS(13034), 1, + anon_sym_RBRACK_RBRACK, + STATE(8515), 1, + aux_sym_attribute_declaration_repeat1, + [321580] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8861), 1, anon_sym_COMMA, - ACTIONS(13748), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [360233] = 4, + ACTIONS(8973), 1, + anon_sym_RPAREN, + STATE(8251), 1, + aux_sym_argument_list_repeat1, + [321593] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13750), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [360246] = 4, + ACTIONS(13018), 1, + anon_sym_COLON, + ACTIONS(13036), 1, + anon_sym_RPAREN, + STATE(8333), 1, + sym_gnu_asm_input_operand_list, + [321606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13752), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [360259] = 3, + ACTIONS(5438), 1, + anon_sym_COLON_COLON, + ACTIONS(6550), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + [321617] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13754), 1, - anon_sym_catch, - STATE(2109), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [360270] = 4, + ACTIONS(5486), 1, + anon_sym_LBRACE, + ACTIONS(12425), 1, + anon_sym_COLON_COLON, + STATE(737), 1, + sym_declaration_list, + [321630] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13756), 1, - anon_sym_COMMA, - ACTIONS(13759), 1, - anon_sym_LBRACE, - STATE(8706), 1, - aux_sym_base_class_clause_repeat1, - [360283] = 4, + ACTIONS(12960), 1, + anon_sym_LPAREN2, + ACTIONS(13038), 1, + anon_sym_constexpr, + STATE(192), 1, + sym_condition_clause, + [321643] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8975), 1, anon_sym_COMMA, - ACTIONS(13761), 1, - anon_sym_GT2, - STATE(8710), 1, - aux_sym_template_argument_list_repeat1, - [360296] = 4, + ACTIONS(8977), 1, + anon_sym_RBRACE, + STATE(8253), 1, + aux_sym_initializer_list_repeat1, + [321656] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13763), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [360309] = 4, + ACTIONS(11208), 1, + anon_sym_COLON, + ACTIONS(11227), 1, + anon_sym_RPAREN, + STATE(8337), 1, + sym_gnu_asm_output_operand_list, + [321669] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13765), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [360322] = 4, + ACTIONS(13), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13040), 1, + sym_identifier, + STATE(9561), 1, + sym_semgrep_ellipsis, + [321682] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(13767), 1, + ACTIONS(13042), 1, anon_sym_GT2, - STATE(8914), 1, + STATE(8493), 1, aux_sym_template_argument_list_repeat1, - [360335] = 4, + [321695] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13459), 1, + ACTIONS(11208), 1, anon_sym_COLON, - ACTIONS(13769), 1, + ACTIONS(11257), 1, anon_sym_RPAREN, - STATE(9020), 1, - sym_gnu_asm_clobber_list, - [360348] = 3, + STATE(8255), 1, + sym_gnu_asm_output_operand_list, + [321708] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13771), 1, - sym_identifier, - ACTIONS(13773), 2, + ACTIONS(8875), 1, anon_sym_COMMA, + ACTIONS(13044), 1, anon_sym_GT2, - [360359] = 4, + STATE(8493), 1, + aux_sym_template_argument_list_repeat1, + [321721] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13501), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(13775), 1, + ACTIONS(13046), 1, anon_sym_GT2, - STATE(8575), 1, - aux_sym_template_parameter_list_repeat1, - [360372] = 4, + STATE(8493), 1, + aux_sym_template_argument_list_repeat1, + [321734] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(13777), 1, + ACTIONS(13048), 1, anon_sym_GT2, - STATE(8717), 1, + STATE(8260), 1, aux_sym_template_argument_list_repeat1, - [360385] = 4, + [321747] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13779), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [360398] = 4, + ACTIONS(11843), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [321756] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8919), 1, anon_sym_COMMA, - ACTIONS(13781), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [360411] = 4, + ACTIONS(13050), 1, + anon_sym_RPAREN, + STATE(8400), 1, + aux_sym_generic_expression_repeat1, + [321769] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13783), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [360424] = 4, + ACTIONS(13052), 1, + sym_identifier, + STATE(2614), 1, + sym_template_function, + STATE(3044), 1, + sym_template_type, + [321782] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13514), 1, + ACTIONS(12966), 1, anon_sym_COMMA, - ACTIONS(13785), 1, + ACTIONS(13054), 1, anon_sym_RPAREN, - STATE(8916), 1, + STATE(8263), 1, aux_sym_parameter_list_repeat1, - [360437] = 3, + [321795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13754), 1, + ACTIONS(13056), 1, anon_sym_catch, - STATE(2110), 2, + STATE(310), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [360448] = 4, + [321806] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8913), 1, anon_sym_COMMA, - ACTIONS(13787), 1, - anon_sym_GT2, - STATE(8723), 1, - aux_sym_template_argument_list_repeat1, - [360461] = 4, + ACTIONS(8981), 1, + anon_sym_RBRACK, + STATE(8265), 1, + aux_sym_subscript_argument_list_repeat1, + [321819] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(13789), 1, + ACTIONS(13058), 1, anon_sym_GT2, - STATE(8914), 1, + STATE(8493), 1, aux_sym_template_argument_list_repeat1, - [360474] = 4, + [321832] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(13791), 1, + ACTIONS(13060), 1, anon_sym_GT2, - STATE(8914), 1, + STATE(8493), 1, aux_sym_template_argument_list_repeat1, - [360487] = 4, + [321845] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(13793), 1, + ACTIONS(13062), 1, anon_sym_GT2, - STATE(8914), 1, + STATE(8493), 1, aux_sym_template_argument_list_repeat1, - [360500] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13795), 1, - sym_identifier, - STATE(3237), 1, - sym_template_function, - STATE(4669), 1, - sym_template_type, - [360513] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13797), 1, - sym_identifier, - STATE(3856), 1, - sym_template_function, - STATE(4669), 1, - sym_template_type, - [360526] = 4, + [321858] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13799), 1, - anon_sym_GT2, - STATE(8729), 1, - aux_sym_template_argument_list_repeat1, - [360539] = 4, + ACTIONS(11208), 1, + anon_sym_COLON, + ACTIONS(11265), 1, + anon_sym_RPAREN, + STATE(8425), 1, + sym_gnu_asm_output_operand_list, + [321871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13801), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [360552] = 4, + ACTIONS(13066), 1, + anon_sym_COLON_COLON, + ACTIONS(13064), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [321882] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(12966), 1, anon_sym_COMMA, - ACTIONS(13803), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [360565] = 4, + ACTIONS(13068), 1, + anon_sym_RPAREN, + STATE(8442), 1, + aux_sym_parameter_list_repeat1, + [321895] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(13805), 1, + ACTIONS(13070), 1, anon_sym_GT2, - STATE(8914), 1, + STATE(8438), 1, aux_sym_template_argument_list_repeat1, - [360578] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13475), 1, - anon_sym_COMMA, - ACTIONS(13807), 1, - anon_sym_RBRACK_RBRACK, - STATE(8831), 1, - aux_sym_attribute_declaration_repeat1, - [360591] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13475), 1, - anon_sym_COMMA, - ACTIONS(13809), 1, - anon_sym_RBRACK_RBRACK, - STATE(8831), 1, - aux_sym_attribute_declaration_repeat1, - [360604] = 4, + [321908] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8861), 1, anon_sym_COMMA, - ACTIONS(13811), 1, - anon_sym_GT2, - STATE(8735), 1, - aux_sym_template_argument_list_repeat1, - [360617] = 4, + ACTIONS(8983), 1, + anon_sym_RPAREN, + STATE(8586), 1, + aux_sym_argument_list_repeat1, + [321921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13813), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [360630] = 4, + ACTIONS(13072), 1, + anon_sym_catch, + STATE(2041), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [321932] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(4745), 1, + anon_sym_RBRACE, + ACTIONS(13074), 1, anon_sym_COMMA, - ACTIONS(13815), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [360643] = 4, + STATE(8280), 1, + aux_sym_initializer_list_repeat1, + [321945] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8913), 1, anon_sym_COMMA, - ACTIONS(13817), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [360656] = 4, + ACTIONS(13076), 1, + anon_sym_RBRACK, + STATE(8446), 1, + aux_sym_subscript_argument_list_repeat1, + [321958] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_COMMA, - ACTIONS(9354), 1, + ACTIONS(13018), 1, + anon_sym_COLON, + ACTIONS(13078), 1, anon_sym_RPAREN, - STATE(9063), 1, - aux_sym_argument_list_repeat1, - [360669] = 3, + STATE(8272), 1, + sym_gnu_asm_input_operand_list, + [321971] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13819), 1, - anon_sym_catch, - STATE(2120), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [360680] = 4, - ACTIONS(3), 1, + ACTIONS(11208), 1, + anon_sym_COLON, + ACTIONS(11261), 1, + anon_sym_RPAREN, + STATE(8273), 1, + sym_gnu_asm_output_operand_list, + [321984] = 3, + ACTIONS(10479), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13821), 1, - anon_sym_GT2, - STATE(8741), 1, - aux_sym_template_argument_list_repeat1, - [360693] = 4, + ACTIONS(13082), 1, + aux_sym_string_literal_token1, + ACTIONS(13080), 2, + anon_sym_DQUOTE, + sym_escape_sequence, + [321995] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(13823), 1, + ACTIONS(13084), 1, anon_sym_GT2, - STATE(8914), 1, + STATE(8493), 1, aux_sym_template_argument_list_repeat1, - [360706] = 4, + [322008] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(13825), 1, + ACTIONS(13086), 1, anon_sym_GT2, - STATE(8914), 1, + STATE(8493), 1, aux_sym_template_argument_list_repeat1, - [360719] = 4, + [322021] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(13827), 1, + ACTIONS(13088), 1, anon_sym_GT2, - STATE(8914), 1, + STATE(8493), 1, aux_sym_template_argument_list_repeat1, - [360732] = 4, + [322034] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(8861), 1, anon_sym_COMMA, - ACTIONS(9290), 1, + ACTIONS(9051), 1, anon_sym_RPAREN, - STATE(8803), 1, + STATE(8586), 1, aux_sym_argument_list_repeat1, - [360745] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11191), 1, - anon_sym_RPAREN, - ACTIONS(13829), 1, - anon_sym_COMMA, - STATE(8743), 1, - aux_sym_preproc_argument_list_repeat1, - [360758] = 4, + [322047] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(12946), 1, anon_sym_COMMA, - ACTIONS(9394), 1, - anon_sym_RPAREN, - STATE(8798), 1, - aux_sym_argument_list_repeat1, - [360771] = 4, + ACTIONS(13090), 1, + anon_sym_RBRACK_RBRACK, + STATE(8515), 1, + aux_sym_attribute_declaration_repeat1, + [322060] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10899), 1, + ACTIONS(12966), 1, anon_sym_COMMA, - ACTIONS(13832), 1, + ACTIONS(13092), 1, anon_sym_RPAREN, - STATE(8743), 1, - aux_sym_preproc_argument_list_repeat1, - [360784] = 4, + STATE(8442), 1, + aux_sym_parameter_list_repeat1, + [322073] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13834), 1, - anon_sym_GT2, - STATE(8749), 1, - aux_sym_template_argument_list_repeat1, - [360797] = 4, + ACTIONS(13056), 1, + anon_sym_catch, + STATE(322), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [322084] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8913), 1, anon_sym_COMMA, - ACTIONS(13836), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [360810] = 4, + ACTIONS(13094), 1, + anon_sym_RBRACK, + STATE(8446), 1, + aux_sym_subscript_argument_list_repeat1, + [322097] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(12946), 1, anon_sym_COMMA, - ACTIONS(13838), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [360823] = 4, + ACTIONS(13096), 1, + anon_sym_RBRACK_RBRACK, + STATE(8515), 1, + aux_sym_attribute_declaration_repeat1, + [322110] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8861), 1, anon_sym_COMMA, - ACTIONS(13840), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [360836] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5566), 1, - anon_sym_LBRACE, - ACTIONS(12978), 1, - anon_sym_COLON_COLON, - STATE(705), 1, - sym_declaration_list, - [360849] = 4, + ACTIONS(8923), 1, + anon_sym_RPAREN, + STATE(8339), 1, + aux_sym_argument_list_repeat1, + [322123] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9396), 1, - anon_sym_COMMA, - ACTIONS(9398), 1, + ACTIONS(4727), 1, anon_sym_RBRACE, - STATE(8800), 1, - aux_sym_initializer_list_repeat1, - [360862] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13842), 1, - anon_sym_GT2, - STATE(8755), 1, - aux_sym_template_argument_list_repeat1, - [360875] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13844), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [360888] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, + ACTIONS(13098), 1, anon_sym_COMMA, - ACTIONS(13846), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [360901] = 4, + STATE(8280), 1, + aux_sym_initializer_list_repeat1, + [322136] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13848), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [360914] = 4, + ACTIONS(13018), 1, + anon_sym_COLON, + ACTIONS(13100), 1, + anon_sym_RPAREN, + STATE(8328), 1, + sym_gnu_asm_input_operand_list, + [322149] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9240), 1, - anon_sym_COMMA, - ACTIONS(9284), 1, - anon_sym_RBRACK, - STATE(8921), 1, - aux_sym_subscript_argument_list_repeat1, - [360927] = 4, + ACTIONS(5484), 1, + anon_sym_LBRACE, + ACTIONS(12425), 1, + anon_sym_COLON_COLON, + STATE(393), 1, + sym_declaration_list, + [322162] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8861), 1, anon_sym_COMMA, - ACTIONS(13850), 1, - anon_sym_GT2, - STATE(8760), 1, - aux_sym_template_argument_list_repeat1, - [360940] = 4, + ACTIONS(13102), 1, + anon_sym_RPAREN, + STATE(8586), 1, + aux_sym_argument_list_repeat1, + [322175] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13852), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [360953] = 4, + ACTIONS(12986), 1, + anon_sym_COLON, + ACTIONS(13104), 1, + anon_sym_RPAREN, + STATE(8276), 1, + sym_gnu_asm_clobber_list, + [322188] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13854), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [360966] = 4, + ACTIONS(13018), 1, + anon_sym_COLON, + ACTIONS(13106), 1, + anon_sym_RPAREN, + STATE(8277), 1, + sym_gnu_asm_input_operand_list, + [322201] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8861), 1, anon_sym_COMMA, - ACTIONS(13856), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [360979] = 4, + ACTIONS(8917), 1, + anon_sym_RPAREN, + STATE(8586), 1, + aux_sym_argument_list_repeat1, + [322214] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9292), 1, + ACTIONS(8925), 1, anon_sym_COMMA, - ACTIONS(9294), 1, + ACTIONS(8927), 1, anon_sym_RBRACE, - STATE(8805), 1, + STATE(8342), 1, aux_sym_initializer_list_repeat1, - [360992] = 4, + [322227] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9240), 1, - anon_sym_COMMA, - ACTIONS(9242), 1, - anon_sym_RBRACK, - STATE(8682), 1, - aux_sym_subscript_argument_list_repeat1, - [361005] = 4, + ACTIONS(12954), 1, + anon_sym_COLON, + ACTIONS(13108), 1, + anon_sym_RPAREN, + STATE(9134), 1, + sym_gnu_asm_goto_list, + [322240] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13858), 1, - anon_sym_GT2, - STATE(8766), 1, - aux_sym_template_argument_list_repeat1, - [361018] = 4, + ACTIONS(12986), 1, + anon_sym_COLON, + ACTIONS(13110), 1, + anon_sym_RPAREN, + STATE(8278), 1, + sym_gnu_asm_clobber_list, + [322253] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13860), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [361031] = 4, + ACTIONS(12954), 1, + anon_sym_COLON, + ACTIONS(13112), 1, + anon_sym_RPAREN, + STATE(9154), 1, + sym_gnu_asm_goto_list, + [322266] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8919), 1, anon_sym_COMMA, - ACTIONS(13862), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [361044] = 4, + ACTIONS(13114), 1, + anon_sym_RPAREN, + STATE(8400), 1, + aux_sym_generic_expression_repeat1, + [322279] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8971), 1, + anon_sym_RBRACE, + ACTIONS(13116), 1, anon_sym_COMMA, - ACTIONS(13864), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [361057] = 4, + STATE(8280), 1, + aux_sym_initializer_list_repeat1, + [322292] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12956), 1, + ACTIONS(4739), 1, + anon_sym_RBRACE, + ACTIONS(13119), 1, anon_sym_COMMA, - ACTIONS(13187), 1, - anon_sym_LBRACE, - STATE(8611), 1, - aux_sym_base_class_clause_repeat1, - [361070] = 4, + STATE(8280), 1, + aux_sym_initializer_list_repeat1, + [322305] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13629), 1, + ACTIONS(11208), 1, anon_sym_COLON, - ACTIONS(13866), 1, + ACTIONS(11219), 1, anon_sym_RPAREN, - STATE(9999), 1, - sym_gnu_asm_goto_list, - [361083] = 4, + STATE(8340), 1, + sym_gnu_asm_output_operand_list, + [322318] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13868), 1, + ACTIONS(8861), 1, anon_sym_COMMA, - ACTIONS(13871), 1, + ACTIONS(9097), 1, anon_sym_RPAREN, - STATE(8769), 1, - aux_sym_throw_specifier_repeat1, - [361096] = 4, + STATE(8586), 1, + aux_sym_argument_list_repeat1, + [322331] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13668), 1, - anon_sym_LPAREN2, - ACTIONS(13873), 1, - anon_sym_constexpr, - STATE(201), 1, - sym_condition_clause, - [361109] = 4, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(12884), 1, - aux_sym_char_literal_token1, - ACTIONS(13875), 1, - sym_escape_sequence, - STATE(8454), 1, - aux_sym_char_literal_repeat1, - [361122] = 4, + ACTIONS(12425), 3, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + [322340] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11553), 1, - anon_sym_COLON, - ACTIONS(11573), 1, + ACTIONS(10499), 1, + anon_sym_COMMA, + ACTIONS(13121), 1, anon_sym_RPAREN, - STATE(8801), 1, - sym_gnu_asm_output_operand_list, - [361135] = 4, + STATE(8614), 1, + aux_sym_preproc_argument_list_repeat1, + [322353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13475), 1, - anon_sym_COMMA, - ACTIONS(13877), 1, - anon_sym_RBRACK_RBRACK, - STATE(8831), 1, - aux_sym_attribute_declaration_repeat1, - [361148] = 4, + ACTIONS(13125), 1, + anon_sym_RPAREN, + ACTIONS(13123), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [322364] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11553), 1, + ACTIONS(11208), 1, anon_sym_COLON, - ACTIONS(11590), 1, + ACTIONS(11212), 1, anon_sym_RPAREN, - STATE(8806), 1, + STATE(8358), 1, sym_gnu_asm_output_operand_list, - [361161] = 4, + [322377] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13475), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(13879), 1, - anon_sym_RBRACK_RBRACK, - STATE(9070), 1, - aux_sym_attribute_declaration_repeat1, - [361174] = 4, + ACTIONS(13127), 1, + anon_sym_GT2, + STATE(8493), 1, + aux_sym_template_argument_list_repeat1, + [322390] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(13881), 1, + ACTIONS(13129), 1, anon_sym_GT2, - STATE(8811), 1, + STATE(8493), 1, aux_sym_template_argument_list_repeat1, - [361187] = 2, + [322403] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13883), 3, + ACTIONS(8875), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(13131), 1, anon_sym_GT2, - [361196] = 4, + STATE(8365), 1, + aux_sym_template_argument_list_repeat1, + [322416] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4791), 1, - anon_sym_RBRACE, - ACTIONS(13885), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - STATE(9089), 1, - aux_sym_initializer_list_repeat1, - [361209] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13887), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [361218] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13668), 1, - anon_sym_LPAREN2, - ACTIONS(13889), 1, - anon_sym_constexpr, - STATE(197), 1, - sym_condition_clause, - [361231] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13577), 1, - anon_sym_COLON, - ACTIONS(13891), 1, - anon_sym_RPAREN, - STATE(9126), 1, - sym_gnu_asm_input_operand_list, - [361244] = 4, + ACTIONS(13133), 1, + anon_sym_GT2, + STATE(8493), 1, + aux_sym_template_argument_list_repeat1, + [322429] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(13893), 1, + ACTIONS(13135), 1, anon_sym_GT2, - STATE(8818), 1, + STATE(8493), 1, aux_sym_template_argument_list_repeat1, - [361257] = 4, + [322442] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_COMMA, - ACTIONS(9370), 1, - anon_sym_RPAREN, - STATE(8911), 1, - aux_sym_argument_list_repeat1, - [361270] = 4, + ACTIONS(13137), 1, + sym_identifier, + STATE(2614), 1, + sym_template_function, + STATE(3044), 1, + sym_template_type, + [322455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13459), 1, - anon_sym_COLON, - ACTIONS(13895), 1, - anon_sym_RPAREN, - STATE(9125), 1, - sym_gnu_asm_clobber_list, - [361283] = 4, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(13499), 1, - anon_sym_LPAREN2, - ACTIONS(13897), 1, - aux_sym_preproc_include_token2, - STATE(9660), 1, - sym_preproc_argument_list, - [361296] = 4, + ACTIONS(13066), 1, + anon_sym_COLON_COLON, + ACTIONS(13139), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [322466] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(13141), 3, anon_sym_COMMA, - ACTIONS(13899), 1, anon_sym_RPAREN, - STATE(9063), 1, - aux_sym_argument_list_repeat1, - [361309] = 4, + anon_sym_GT2, + [322475] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13901), 1, + ACTIONS(13143), 1, sym_identifier, - STATE(3237), 1, + STATE(2614), 1, sym_template_function, - STATE(4669), 1, + STATE(3044), 1, sym_template_type, - [361322] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13668), 1, - anon_sym_LPAREN2, - ACTIONS(13903), 1, - anon_sym_constexpr, - STATE(214), 1, - sym_condition_clause, - [361335] = 4, + [322488] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13514), 1, + ACTIONS(8861), 1, anon_sym_COMMA, - ACTIONS(13905), 1, + ACTIONS(13145), 1, anon_sym_RPAREN, - STATE(8814), 1, - aux_sym_parameter_list_repeat1, - [361348] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6066), 1, - anon_sym_COMMA, - ACTIONS(13907), 1, - anon_sym_RBRACK, - STATE(8945), 1, - aux_sym_structured_binding_declarator_repeat1, - [361361] = 4, + STATE(8586), 1, + aux_sym_argument_list_repeat1, + [322501] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3090), 1, + ACTIONS(3075), 1, anon_sym_while, - ACTIONS(13909), 1, + ACTIONS(13147), 1, anon_sym_else, - STATE(657), 1, + STATE(675), 1, sym_else_clause, - [361374] = 4, + [322514] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7116), 1, - anon_sym_SEMI, - ACTIONS(7588), 1, - anon_sym_LT, - STATE(1918), 1, - sym_template_argument_list, - [361387] = 4, + ACTIONS(12966), 1, + anon_sym_COMMA, + ACTIONS(13149), 1, + anon_sym_RPAREN, + STATE(8384), 1, + aux_sym_parameter_list_repeat1, + [322527] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13577), 1, - anon_sym_COLON, - ACTIONS(13911), 1, - anon_sym_RPAREN, - STATE(8993), 1, - sym_gnu_asm_input_operand_list, - [361400] = 3, + ACTIONS(12946), 1, + anon_sym_COMMA, + ACTIONS(13151), 1, + anon_sym_RBRACK_RBRACK, + STATE(8335), 1, + aux_sym_attribute_declaration_repeat1, + [322540] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13913), 1, + ACTIONS(13005), 1, anon_sym_catch, - STATE(325), 2, + STATE(301), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [361411] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9240), 1, - anon_sym_COMMA, - ACTIONS(9298), 1, - anon_sym_RBRACK, - STATE(8816), 1, - aux_sym_subscript_argument_list_repeat1, - [361424] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13501), 1, - anon_sym_COMMA, - ACTIONS(13915), 1, - anon_sym_GT2, - STATE(9028), 1, - aux_sym_template_parameter_list_repeat1, - [361437] = 4, + [322551] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9372), 1, + ACTIONS(8861), 1, anon_sym_COMMA, - ACTIONS(9374), 1, - anon_sym_RBRACE, - STATE(8918), 1, - aux_sym_initializer_list_repeat1, - [361450] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_COMMA, - ACTIONS(9402), 1, + ACTIONS(9039), 1, anon_sym_RPAREN, - STATE(9063), 1, + STATE(8586), 1, aux_sym_argument_list_repeat1, - [361463] = 4, + [322564] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(13917), 1, - sym_identifier, - STATE(9741), 1, - sym_semgrep_ellipsis, - [361476] = 4, + ACTIONS(8913), 1, + anon_sym_COMMA, + ACTIONS(8931), 1, + anon_sym_RBRACK, + STATE(8386), 1, + aux_sym_subscript_argument_list_repeat1, + [322577] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4819), 1, - anon_sym_RBRACE, - ACTIONS(13919), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - STATE(9089), 1, - aux_sym_initializer_list_repeat1, - [361489] = 4, + ACTIONS(13153), 1, + anon_sym_GT2, + STATE(8493), 1, + aux_sym_template_argument_list_repeat1, + [322590] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13577), 1, + ACTIONS(13018), 1, anon_sym_COLON, - ACTIONS(13921), 1, + ACTIONS(13155), 1, anon_sym_RPAREN, - STATE(8832), 1, + STATE(8513), 1, sym_gnu_asm_input_operand_list, - [361502] = 4, + [322603] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11553), 1, - anon_sym_COLON, - ACTIONS(11608), 1, - anon_sym_RPAREN, - STATE(8834), 1, - sym_gnu_asm_output_operand_list, - [361515] = 4, + ACTIONS(8875), 1, + anon_sym_COMMA, + ACTIONS(13157), 1, + anon_sym_GT2, + STATE(8323), 1, + aux_sym_template_argument_list_repeat1, + [322616] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(8861), 1, anon_sym_COMMA, - ACTIONS(9300), 1, + ACTIONS(13159), 1, anon_sym_RPAREN, - STATE(9063), 1, + STATE(8586), 1, aux_sym_argument_list_repeat1, - [361528] = 4, + [322629] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11553), 1, + ACTIONS(11208), 1, anon_sym_COLON, - ACTIONS(11575), 1, + ACTIONS(11305), 1, anon_sym_RPAREN, - STATE(9018), 1, + STATE(8514), 1, sym_gnu_asm_output_operand_list, - [361541] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4789), 1, - anon_sym_RBRACE, - ACTIONS(13923), 1, - anon_sym_COMMA, - STATE(9089), 1, - aux_sym_initializer_list_repeat1, - [361554] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13577), 1, - anon_sym_COLON, - ACTIONS(13925), 1, - anon_sym_RPAREN, - STATE(8822), 1, - sym_gnu_asm_input_operand_list, - [361567] = 4, + [322642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11553), 1, - anon_sym_COLON, - ACTIONS(11559), 1, - anon_sym_RPAREN, - STATE(8823), 1, - sym_gnu_asm_output_operand_list, - [361580] = 4, + ACTIONS(13072), 1, + anon_sym_catch, + STATE(2053), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [322653] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13927), 1, + ACTIONS(8861), 1, anon_sym_COMMA, - ACTIONS(13930), 1, + ACTIONS(13161), 1, anon_sym_RPAREN, - STATE(8808), 1, - aux_sym_preproc_params_repeat1, - [361593] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13932), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [361606] = 4, + STATE(8586), 1, + aux_sym_argument_list_repeat1, + [322666] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(13934), 1, + ACTIONS(13163), 1, anon_sym_GT2, - STATE(8914), 1, + STATE(8493), 1, aux_sym_template_argument_list_repeat1, - [361619] = 4, + [322679] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(13936), 1, + ACTIONS(13165), 1, anon_sym_GT2, - STATE(8914), 1, + STATE(8493), 1, aux_sym_template_argument_list_repeat1, - [361632] = 2, + [322692] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13938), 3, + ACTIONS(9099), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT2, - [361641] = 4, + anon_sym_SEMI, + anon_sym___attribute__, + [322701] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(13940), 1, + ACTIONS(13167), 1, anon_sym_GT2, - STATE(8914), 1, + STATE(8493), 1, aux_sym_template_argument_list_repeat1, - [361654] = 4, + [322714] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13514), 1, - anon_sym_COMMA, - ACTIONS(13942), 1, - anon_sym_RPAREN, - STATE(8579), 1, - aux_sym_parameter_list_repeat1, - [361667] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13913), 1, - anon_sym_catch, - STATE(337), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [361678] = 4, - ACTIONS(3), 1, + ACTIONS(12960), 1, + anon_sym_LPAREN2, + ACTIONS(13169), 1, + anon_sym_constexpr, + STATE(225), 1, + sym_condition_clause, + [322727] = 4, + ACTIONS(10479), 1, sym_comment, - ACTIONS(9240), 1, - anon_sym_COMMA, - ACTIONS(13944), 1, - anon_sym_RBRACK, - STATE(8652), 1, - aux_sym_subscript_argument_list_repeat1, - [361691] = 4, + ACTIONS(12409), 1, + aux_sym_char_literal_token1, + ACTIONS(13171), 1, + sym_escape_sequence, + STATE(7995), 1, + aux_sym_char_literal_repeat1, + [322740] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13946), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [361704] = 4, + ACTIONS(13173), 1, + sym_identifier, + ACTIONS(13175), 1, + anon_sym_DOT_DOT_DOT, + STATE(8623), 1, + sym_semgrep_ellipsis, + [322753] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(13948), 1, + ACTIONS(13177), 1, anon_sym_GT2, - STATE(8914), 1, + STATE(8493), 1, aux_sym_template_argument_list_repeat1, - [361717] = 4, + [322766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(13179), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13181), 2, anon_sym_COMMA, - ACTIONS(13950), 1, - anon_sym_RPAREN, - STATE(9063), 1, - aux_sym_argument_list_repeat1, - [361730] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13954), 1, - anon_sym_COLON_COLON, - ACTIONS(13952), 2, - anon_sym_SEMI, anon_sym_LBRACE, - [361741] = 4, + [322777] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12956), 1, + ACTIONS(12667), 1, anon_sym_COMMA, - ACTIONS(12988), 1, + ACTIONS(13183), 1, anon_sym_LBRACE, - STATE(9052), 1, + STATE(8616), 1, aux_sym_base_class_clause_repeat1, - [361754] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13459), 1, - anon_sym_COLON, - ACTIONS(13956), 1, - anon_sym_RPAREN, - STATE(8825), 1, - sym_gnu_asm_clobber_list, - [361767] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13577), 1, - anon_sym_COLON, - ACTIONS(13958), 1, - anon_sym_RPAREN, - STATE(8826), 1, - sym_gnu_asm_input_operand_list, - [361780] = 4, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(13499), 1, - anon_sym_LPAREN2, - ACTIONS(13960), 1, - aux_sym_preproc_include_token2, - STATE(9660), 1, - sym_preproc_argument_list, - [361793] = 4, + [322790] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13629), 1, - anon_sym_COLON, - ACTIONS(13962), 1, - anon_sym_RPAREN, - STATE(10488), 1, - sym_gnu_asm_goto_list, - [361806] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13459), 1, - anon_sym_COLON, - ACTIONS(13964), 1, - anon_sym_RPAREN, - STATE(8828), 1, - sym_gnu_asm_clobber_list, - [361819] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13966), 1, - anon_sym_COMMA, - ACTIONS(13968), 1, - anon_sym_RPAREN, - STATE(8840), 1, - aux_sym_requires_parameter_list_repeat1, - [361832] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13629), 1, - anon_sym_COLON, - ACTIONS(13970), 1, - anon_sym_RPAREN, - STATE(10500), 1, - sym_gnu_asm_goto_list, - [361845] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9222), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(13972), 1, - anon_sym_RPAREN, - STATE(8862), 1, - aux_sym_generic_expression_repeat1, - [361858] = 4, + ACTIONS(13185), 1, + anon_sym_GT2, + STATE(8493), 1, + aux_sym_template_argument_list_repeat1, + [322803] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(8919), 1, anon_sym_COMMA, - ACTIONS(13974), 1, + ACTIONS(13187), 1, anon_sym_RPAREN, - STATE(9063), 1, - aux_sym_argument_list_repeat1, - [361871] = 4, + STATE(8400), 1, + aux_sym_generic_expression_repeat1, + [322816] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13976), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(13979), 1, - anon_sym_RBRACK_RBRACK, - STATE(8831), 1, - aux_sym_attribute_declaration_repeat1, - [361884] = 4, + ACTIONS(13189), 1, + anon_sym_GT2, + STATE(8493), 1, + aux_sym_template_argument_list_repeat1, + [322829] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13459), 1, - anon_sym_COLON, - ACTIONS(13981), 1, + ACTIONS(13191), 1, + anon_sym_COMMA, + ACTIONS(13194), 1, anon_sym_RPAREN, - STATE(8843), 1, - sym_gnu_asm_clobber_list, - [361897] = 4, + STATE(8324), 1, + aux_sym_requires_parameter_list_repeat1, + [322842] = 4, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(13196), 1, + aux_sym_preproc_include_token2, + ACTIONS(13198), 1, + anon_sym_LPAREN2, + STATE(9423), 1, + sym_preproc_argument_list, + [322855] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13983), 1, + ACTIONS(13200), 1, sym_identifier, - STATE(4669), 1, - sym_template_type, - STATE(7623), 1, + STATE(2979), 1, sym_template_function, - [361910] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13577), 1, - anon_sym_COLON, - ACTIONS(13985), 1, - anon_sym_RPAREN, - STATE(8844), 1, - sym_gnu_asm_input_operand_list, - [361923] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(13987), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [361936] = 4, + STATE(3044), 1, + sym_template_type, + [322868] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(12978), 1, anon_sym_COMMA, - ACTIONS(13989), 1, + ACTIONS(13202), 1, anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [361949] = 4, + STATE(8630), 1, + aux_sym_template_parameter_list_repeat1, + [322881] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13668), 1, - anon_sym_LPAREN2, - ACTIONS(13991), 1, - anon_sym_constexpr, - STATE(230), 1, - sym_condition_clause, - [361962] = 4, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(12884), 1, - aux_sym_char_literal_token1, - ACTIONS(13993), 1, - sym_escape_sequence, - STATE(8439), 1, - aux_sym_char_literal_repeat1, - [361975] = 3, + ACTIONS(12986), 1, + anon_sym_COLON, + ACTIONS(13204), 1, + anon_sym_RPAREN, + STATE(8343), 1, + sym_gnu_asm_clobber_list, + [322894] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13995), 1, + ACTIONS(13206), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(13759), 2, + ACTIONS(13208), 2, anon_sym_COMMA, anon_sym_LBRACE, - [361986] = 4, + [322905] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13966), 1, + ACTIONS(13210), 3, anon_sym_COMMA, - ACTIONS(13997), 1, anon_sym_RPAREN, - STATE(8589), 1, - aux_sym_requires_parameter_list_repeat1, - [361999] = 4, + anon_sym_COLON, + [322914] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10993), 1, - anon_sym_COMMA, - ACTIONS(13999), 1, - anon_sym_SEMI, - STATE(8856), 1, - aux_sym_declaration_declarator_repeat1, - [362012] = 4, + ACTIONS(12960), 1, + anon_sym_LPAREN2, + ACTIONS(13212), 1, + anon_sym_constexpr, + STATE(216), 1, + sym_condition_clause, + [322927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13475), 1, + ACTIONS(13214), 3, anon_sym_COMMA, - ACTIONS(14001), 1, - anon_sym_RBRACK_RBRACK, - STATE(8981), 1, - aux_sym_attribute_declaration_repeat1, - [362025] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13629), 1, - anon_sym_COLON, - ACTIONS(14003), 1, anon_sym_RPAREN, - STATE(10134), 1, - sym_gnu_asm_goto_list, - [362038] = 4, + anon_sym_COLON, + [322936] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13459), 1, + ACTIONS(12986), 1, anon_sym_COLON, - ACTIONS(14005), 1, + ACTIONS(13216), 1, anon_sym_RPAREN, - STATE(8846), 1, + STATE(8378), 1, sym_gnu_asm_clobber_list, - [362051] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13475), 1, - anon_sym_COMMA, - ACTIONS(14007), 1, - anon_sym_RBRACK_RBRACK, - STATE(9127), 1, - aux_sym_attribute_declaration_repeat1, - [362064] = 4, + [322949] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13629), 1, + ACTIONS(11208), 1, anon_sym_COLON, - ACTIONS(14009), 1, + ACTIONS(11271), 1, anon_sym_RPAREN, - STATE(10174), 1, - sym_gnu_asm_goto_list, - [362077] = 4, + STATE(8216), 1, + sym_gnu_asm_output_operand_list, + [322962] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(12946), 1, anon_sym_COMMA, - ACTIONS(14011), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [362090] = 4, + ACTIONS(13218), 1, + anon_sym_RBRACK_RBRACK, + STATE(8515), 1, + aux_sym_attribute_declaration_repeat1, + [322975] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9222), 1, + ACTIONS(8861), 1, anon_sym_COMMA, - ACTIONS(14013), 1, + ACTIONS(8987), 1, anon_sym_RPAREN, - STATE(8862), 1, - aux_sym_generic_expression_repeat1, - [362103] = 4, + STATE(8366), 1, + aux_sym_argument_list_repeat1, + [322988] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_COMMA, - ACTIONS(9308), 1, + ACTIONS(13018), 1, + anon_sym_COLON, + ACTIONS(13220), 1, anon_sym_RPAREN, - STATE(9063), 1, - aux_sym_argument_list_repeat1, - [362116] = 4, + STATE(8383), 1, + sym_gnu_asm_input_operand_list, + [323001] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(13), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(14015), 1, + ACTIONS(13222), 1, sym_identifier, - STATE(10205), 1, + STATE(9252), 1, sym_semgrep_ellipsis, - [362129] = 4, + [323014] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(8861), 1, anon_sym_COMMA, - ACTIONS(9366), 1, + ACTIONS(8933), 1, anon_sym_RPAREN, - STATE(9063), 1, + STATE(8586), 1, aux_sym_argument_list_repeat1, - [362142] = 4, + [323027] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11553), 1, + ACTIONS(13018), 1, anon_sym_COLON, - ACTIONS(11628), 1, + ACTIONS(13224), 1, anon_sym_RPAREN, - STATE(8933), 1, - sym_gnu_asm_output_operand_list, - [362155] = 4, + STATE(8345), 1, + sym_gnu_asm_input_operand_list, + [323040] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8989), 1, + anon_sym_COMMA, + ACTIONS(8991), 1, + anon_sym_RBRACE, + STATE(8368), 1, + aux_sym_initializer_list_repeat1, + [323053] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13475), 1, + ACTIONS(4751), 1, + anon_sym_RBRACE, + ACTIONS(13226), 1, anon_sym_COMMA, - ACTIONS(14017), 1, - anon_sym_RBRACK_RBRACK, - STATE(8890), 1, - aux_sym_attribute_declaration_repeat1, - [362168] = 3, + STATE(8280), 1, + aux_sym_initializer_list_repeat1, + [323066] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14021), 1, + ACTIONS(12954), 1, + anon_sym_COLON, + ACTIONS(13228), 1, anon_sym_RPAREN, - ACTIONS(14019), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [362179] = 3, + STATE(9300), 1, + sym_gnu_asm_goto_list, + [323079] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13686), 1, - anon_sym_catch, - STATE(407), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [362190] = 4, + ACTIONS(11208), 1, + anon_sym_COLON, + ACTIONS(11295), 1, + anon_sym_RPAREN, + STATE(8369), 1, + sym_gnu_asm_output_operand_list, + [323092] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10993), 1, - anon_sym_COMMA, - ACTIONS(14023), 1, - anon_sym_SEMI, - STATE(8857), 1, - aux_sym_declaration_declarator_repeat1, - [362203] = 4, + ACTIONS(12986), 1, + anon_sym_COLON, + ACTIONS(13230), 1, + anon_sym_RPAREN, + STATE(8356), 1, + sym_gnu_asm_clobber_list, + [323105] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14025), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(14028), 1, - anon_sym_SEMI, - STATE(8857), 1, - aux_sym_declaration_declarator_repeat1, - [362216] = 4, + ACTIONS(13232), 1, + anon_sym_GT2, + STATE(8374), 1, + aux_sym_template_argument_list_repeat1, + [323118] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13668), 1, - anon_sym_LPAREN2, - ACTIONS(14030), 1, - anon_sym_constexpr, - STATE(205), 1, - sym_condition_clause, - [362229] = 4, + ACTIONS(13234), 1, + anon_sym_COMMA, + ACTIONS(13236), 1, + anon_sym_LBRACE, + STATE(8351), 1, + aux_sym_field_initializer_list_repeat1, + [323131] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13475), 1, + ACTIONS(12667), 1, anon_sym_COMMA, - ACTIONS(14032), 1, - anon_sym_RBRACK_RBRACK, - STATE(8831), 1, - aux_sym_attribute_declaration_repeat1, - [362242] = 4, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(12884), 1, - aux_sym_char_literal_token1, - ACTIONS(14034), 1, - sym_escape_sequence, - STATE(8230), 1, - aux_sym_char_literal_repeat1, - [362255] = 4, + ACTIONS(13238), 1, + anon_sym_LBRACE, + STATE(8616), 1, + aux_sym_base_class_clause_repeat1, + [323144] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(12966), 1, anon_sym_COMMA, - ACTIONS(9286), 1, + ACTIONS(13240), 1, anon_sym_RPAREN, - STATE(9063), 1, - aux_sym_argument_list_repeat1, - [362268] = 4, + STATE(8376), 1, + aux_sym_parameter_list_repeat1, + [323157] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14036), 1, + ACTIONS(12667), 1, anon_sym_COMMA, - ACTIONS(14039), 1, - anon_sym_RPAREN, - STATE(8862), 1, - aux_sym_generic_expression_repeat1, - [362281] = 3, + ACTIONS(13238), 1, + anon_sym_LBRACE, + STATE(8320), 1, + aux_sym_base_class_clause_repeat1, + [323170] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12896), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(14041), 2, + ACTIONS(13242), 1, anon_sym_COMMA, - anon_sym_GT2, - [362292] = 4, + ACTIONS(13245), 1, + anon_sym_LBRACE, + STATE(8351), 1, + aux_sym_field_initializer_list_repeat1, + [323183] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13514), 1, + ACTIONS(13247), 1, anon_sym_COMMA, - ACTIONS(14043), 1, + ACTIONS(13249), 1, anon_sym_RPAREN, - STATE(8579), 1, - aux_sym_parameter_list_repeat1, - [362305] = 4, + STATE(8420), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [323196] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4799), 1, - anon_sym_RBRACE, - ACTIONS(14045), 1, - anon_sym_COMMA, - STATE(9089), 1, - aux_sym_initializer_list_repeat1, - [362318] = 4, - ACTIONS(10969), 1, + ACTIONS(12982), 1, + anon_sym_catch, + STATE(488), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [323207] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12884), 1, + ACTIONS(12960), 1, + anon_sym_LPAREN2, + ACTIONS(13251), 1, + anon_sym_constexpr, + STATE(234), 1, + sym_condition_clause, + [323220] = 4, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(12409), 1, aux_sym_char_literal_token1, - ACTIONS(14047), 1, + ACTIONS(13253), 1, sym_escape_sequence, - STATE(8508), 1, + STATE(7840), 1, aux_sym_char_literal_repeat1, - [362331] = 3, + [323233] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13913), 1, - anon_sym_catch, - STATE(304), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [362342] = 4, + ACTIONS(12954), 1, + anon_sym_COLON, + ACTIONS(13255), 1, + anon_sym_RPAREN, + STATE(9403), 1, + sym_gnu_asm_goto_list, + [323246] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13475), 1, + ACTIONS(8919), 1, anon_sym_COMMA, - ACTIONS(14049), 1, - anon_sym_RBRACK_RBRACK, - STATE(8899), 1, - aux_sym_attribute_declaration_repeat1, - [362355] = 4, + ACTIONS(13257), 1, + anon_sym_RPAREN, + STATE(8400), 1, + aux_sym_generic_expression_repeat1, + [323259] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13577), 1, + ACTIONS(13018), 1, anon_sym_COLON, - ACTIONS(14051), 1, + ACTIONS(13259), 1, anon_sym_RPAREN, - STATE(8784), 1, + STATE(8415), 1, sym_gnu_asm_input_operand_list, - [362368] = 4, + [323272] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13629), 1, + ACTIONS(11208), 1, anon_sym_COLON, - ACTIONS(14053), 1, + ACTIONS(11245), 1, anon_sym_RPAREN, - STATE(9950), 1, - sym_gnu_asm_goto_list, - [362381] = 3, + STATE(8416), 1, + sym_gnu_asm_output_operand_list, + [323285] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13819), 1, - anon_sym_catch, - STATE(2090), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [362392] = 4, + ACTIONS(13261), 1, + sym_identifier, + STATE(2966), 1, + sym_template_type, + STATE(4066), 1, + sym_template_function, + [323298] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(9346), 1, - anon_sym_RPAREN, - STATE(8736), 1, - aux_sym_argument_list_repeat1, - [362405] = 4, + ACTIONS(13263), 1, + anon_sym_GT2, + STATE(8493), 1, + aux_sym_template_argument_list_repeat1, + [323311] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9348), 1, - anon_sym_COMMA, - ACTIONS(9350), 1, + ACTIONS(4753), 1, anon_sym_RBRACE, - STATE(8778), 1, + ACTIONS(13265), 1, + anon_sym_COMMA, + STATE(8280), 1, aux_sym_initializer_list_repeat1, - [362418] = 4, + [323324] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(14055), 1, + ACTIONS(13267), 1, anon_sym_GT2, - STATE(8999), 1, + STATE(8493), 1, aux_sym_template_argument_list_repeat1, - [362431] = 2, + [323337] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14057), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(13018), 1, anon_sym_COLON, - [362440] = 4, + ACTIONS(13269), 1, + anon_sym_RPAREN, + STATE(8594), 1, + sym_gnu_asm_input_operand_list, + [323350] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(9478), 1, + ACTIONS(13271), 1, + anon_sym_GT2, + STATE(8493), 1, + aux_sym_template_argument_list_repeat1, + [323363] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8861), 1, + anon_sym_COMMA, + ACTIONS(8995), 1, anon_sym_RPAREN, - STATE(8849), 1, + STATE(8586), 1, aux_sym_argument_list_repeat1, - [362453] = 4, + [323376] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9240), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(9258), 1, - anon_sym_RBRACK, - STATE(8935), 1, - aux_sym_subscript_argument_list_repeat1, - [362466] = 3, + ACTIONS(13273), 1, + anon_sym_GT2, + STATE(8396), 1, + aux_sym_template_argument_list_repeat1, + [323389] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14059), 1, - anon_sym_catch, - STATE(268), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [362477] = 3, + ACTIONS(4755), 1, + anon_sym_RBRACE, + ACTIONS(13275), 1, + anon_sym_COMMA, + STATE(8280), 1, + aux_sym_initializer_list_repeat1, + [323402] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13656), 1, - anon_sym_catch, - STATE(1966), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [362488] = 4, + ACTIONS(13018), 1, + anon_sym_COLON, + ACTIONS(13277), 1, + anon_sym_RPAREN, + STATE(8389), 1, + sym_gnu_asm_input_operand_list, + [323415] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14061), 1, + ACTIONS(11208), 1, + anon_sym_COLON, + ACTIONS(11297), 1, + anon_sym_RPAREN, + STATE(8390), 1, + sym_gnu_asm_output_operand_list, + [323428] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(14064), 1, - anon_sym_LBRACE, - STATE(8880), 1, - aux_sym_field_initializer_list_repeat1, - [362501] = 4, + ACTIONS(13279), 1, + anon_sym_GT2, + STATE(8493), 1, + aux_sym_template_argument_list_repeat1, + [323441] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(13), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(14066), 1, + ACTIONS(13281), 1, sym_identifier, - STATE(9909), 1, + STATE(9409), 1, sym_semgrep_ellipsis, - [362514] = 4, + [323454] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13577), 1, - anon_sym_COLON, - ACTIONS(14068), 1, - anon_sym_RPAREN, - STATE(9010), 1, - sym_gnu_asm_input_operand_list, - [362527] = 3, + ACTIONS(8875), 1, + anon_sym_COMMA, + ACTIONS(13283), 1, + anon_sym_GT2, + STATE(8493), 1, + aux_sym_template_argument_list_repeat1, + [323467] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14072), 1, - anon_sym_RPAREN, - ACTIONS(14070), 2, + ACTIONS(8875), 1, anon_sym_COMMA, - anon_sym_SEMI, - [362538] = 4, + ACTIONS(13285), 1, + anon_sym_GT2, + STATE(8493), 1, + aux_sym_template_argument_list_repeat1, + [323480] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(14074), 1, - sym_identifier, - STATE(10678), 1, - sym_semgrep_ellipsis, - [362551] = 4, + ACTIONS(12966), 1, + anon_sym_COMMA, + ACTIONS(13287), 1, + anon_sym_RPAREN, + STATE(8442), 1, + aux_sym_parameter_list_repeat1, + [323493] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(12966), 1, anon_sym_COMMA, - ACTIONS(9244), 1, + ACTIONS(13289), 1, anon_sym_RPAREN, - STATE(9063), 1, - aux_sym_argument_list_repeat1, - [362564] = 4, + STATE(8442), 1, + aux_sym_parameter_list_repeat1, + [323506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13668), 1, + ACTIONS(12982), 1, + anon_sym_catch, + STATE(461), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [323517] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12954), 1, + anon_sym_COLON, + ACTIONS(13291), 1, + anon_sym_RPAREN, + STATE(9152), 1, + sym_gnu_asm_goto_list, + [323530] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12960), 1, anon_sym_LPAREN2, - ACTIONS(14076), 1, + ACTIONS(13293), 1, anon_sym_constexpr, STATE(244), 1, sym_condition_clause, - [362577] = 4, - ACTIONS(10969), 1, + [323543] = 4, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12884), 1, + ACTIONS(12409), 1, aux_sym_char_literal_token1, - ACTIONS(14078), 1, + ACTIONS(13295), 1, sym_escape_sequence, - STATE(8359), 1, + STATE(7991), 1, aux_sym_char_literal_repeat1, - [362590] = 4, + [323556] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14080), 1, + ACTIONS(13297), 1, + anon_sym_COMMA, + ACTIONS(13299), 1, + anon_sym_RPAREN, + STATE(8644), 1, + aux_sym_preproc_params_repeat1, + [323569] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13301), 1, sym_identifier, - STATE(3237), 1, + STATE(2979), 1, sym_template_function, - STATE(4669), 1, + STATE(3044), 1, sym_template_type, - [362603] = 4, + [323582] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4823), 1, - anon_sym_RBRACE, - ACTIONS(14082), 1, - anon_sym_COMMA, - STATE(9089), 1, - aux_sym_initializer_list_repeat1, - [362616] = 4, + ACTIONS(12986), 1, + anon_sym_COLON, + ACTIONS(13303), 1, + anon_sym_RPAREN, + STATE(8413), 1, + sym_gnu_asm_clobber_list, + [323595] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13475), 1, + ACTIONS(12966), 1, anon_sym_COMMA, - ACTIONS(14084), 1, - anon_sym_RBRACK_RBRACK, - STATE(8831), 1, - aux_sym_attribute_declaration_repeat1, - [362629] = 4, + ACTIONS(13305), 1, + anon_sym_RPAREN, + STATE(8442), 1, + aux_sym_parameter_list_repeat1, + [323608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14086), 1, - sym_identifier, - STATE(4095), 1, - sym_template_function, - STATE(4669), 1, - sym_template_type, - [362642] = 4, + ACTIONS(13005), 1, + anon_sym_catch, + STATE(300), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [323619] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8913), 1, + anon_sym_COMMA, + ACTIONS(13307), 1, + anon_sym_RBRACK, + STATE(8446), 1, + aux_sym_subscript_argument_list_repeat1, + [323632] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(8861), 1, anon_sym_COMMA, - ACTIONS(9314), 1, + ACTIONS(13309), 1, anon_sym_RPAREN, - STATE(8941), 1, + STATE(8586), 1, aux_sym_argument_list_repeat1, - [362655] = 4, + [323645] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(14088), 1, + ACTIONS(13311), 1, anon_sym_GT2, - STATE(8914), 1, + STATE(8493), 1, aux_sym_template_argument_list_repeat1, - [362668] = 4, + [323658] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14090), 1, - sym_identifier, - STATE(3123), 1, - sym_template_function, - STATE(4669), 1, - sym_template_type, - [362681] = 4, + ACTIONS(12986), 1, + anon_sym_COLON, + ACTIONS(13313), 1, + anon_sym_RPAREN, + STATE(8394), 1, + sym_gnu_asm_clobber_list, + [323671] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9316), 1, - anon_sym_COMMA, - ACTIONS(9318), 1, - anon_sym_RBRACE, - STATE(8942), 1, - aux_sym_initializer_list_repeat1, - [362694] = 4, + ACTIONS(13018), 1, + anon_sym_COLON, + ACTIONS(13315), 1, + anon_sym_RPAREN, + STATE(8395), 1, + sym_gnu_asm_input_operand_list, + [323684] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(14092), 1, + ACTIONS(13317), 1, anon_sym_GT2, - STATE(8914), 1, + STATE(8493), 1, aux_sym_template_argument_list_repeat1, - [362707] = 4, + [323697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(14094), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [362720] = 4, + ACTIONS(12988), 1, + anon_sym_catch, + STATE(478), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [323708] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14096), 1, + ACTIONS(8913), 1, anon_sym_COMMA, - ACTIONS(14099), 1, + ACTIONS(13319), 1, anon_sym_RBRACK, - STATE(8898), 1, - aux_sym_structured_binding_declarator_repeat1, - [362733] = 4, + STATE(8446), 1, + aux_sym_subscript_argument_list_repeat1, + [323721] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13475), 1, - anon_sym_COMMA, - ACTIONS(14101), 1, - anon_sym_RBRACK_RBRACK, - STATE(8831), 1, - aux_sym_attribute_declaration_repeat1, - [362746] = 3, + ACTIONS(12954), 1, + anon_sym_COLON, + ACTIONS(13321), 1, + anon_sym_RPAREN, + STATE(9199), 1, + sym_gnu_asm_goto_list, + [323734] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14103), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(14105), 2, + ACTIONS(12986), 1, + anon_sym_COLON, + ACTIONS(13323), 1, + anon_sym_RPAREN, + STATE(8398), 1, + sym_gnu_asm_clobber_list, + [323747] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8875), 1, anon_sym_COMMA, - anon_sym_LBRACE, - [362757] = 4, + ACTIONS(13325), 1, + anon_sym_GT2, + STATE(8493), 1, + aux_sym_template_argument_list_repeat1, + [323760] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(10499), 1, anon_sym_COMMA, - ACTIONS(9406), 1, + ACTIONS(13327), 1, anon_sym_RPAREN, - STATE(8924), 1, - aux_sym_argument_list_repeat1, - [362770] = 4, + STATE(8614), 1, + aux_sym_preproc_argument_list_repeat1, + [323773] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13577), 1, + ACTIONS(12954), 1, anon_sym_COLON, - ACTIONS(14107), 1, + ACTIONS(13329), 1, anon_sym_RPAREN, - STATE(9113), 1, - sym_gnu_asm_input_operand_list, - [362783] = 4, + STATE(9203), 1, + sym_gnu_asm_goto_list, + [323786] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11553), 1, - anon_sym_COLON, - ACTIONS(11612), 1, + ACTIONS(8919), 1, + anon_sym_COMMA, + ACTIONS(13331), 1, anon_sym_RPAREN, - STATE(9119), 1, - sym_gnu_asm_output_operand_list, - [362796] = 2, + STATE(8400), 1, + aux_sym_generic_expression_repeat1, + [323799] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14109), 3, + ACTIONS(13333), 1, anon_sym_COMMA, + ACTIONS(13336), 1, anon_sym_RPAREN, - anon_sym_COLON, - [362805] = 4, + STATE(8400), 1, + aux_sym_generic_expression_repeat1, + [323812] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11553), 1, - anon_sym_COLON, - ACTIONS(11584), 1, + ACTIONS(11206), 1, anon_sym_RPAREN, - STATE(8936), 1, + ACTIONS(11208), 1, + anon_sym_COLON, + STATE(8226), 1, sym_gnu_asm_output_operand_list, - [362818] = 4, + [323825] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(13), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(14111), 1, + ACTIONS(13338), 1, sym_identifier, - STATE(10407), 1, + STATE(10020), 1, sym_semgrep_ellipsis, - [362831] = 3, + [323838] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5525), 1, - anon_sym_COLON_COLON, - ACTIONS(6984), 2, - anon_sym_LPAREN2, + ACTIONS(5480), 1, anon_sym_LBRACE, - [362842] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11551), 1, - anon_sym_RPAREN, - ACTIONS(11553), 1, - anon_sym_COLON, - STATE(8947), 1, - sym_gnu_asm_output_operand_list, - [362855] = 4, - ACTIONS(10969), 1, + ACTIONS(12425), 1, + anon_sym_COLON_COLON, + STATE(866), 1, + sym_declaration_list, + [323851] = 4, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12884), 1, + ACTIONS(12409), 1, aux_sym_char_literal_token1, - ACTIONS(14113), 1, + ACTIONS(13340), 1, sym_escape_sequence, - STATE(8436), 1, + STATE(8037), 1, aux_sym_char_literal_repeat1, - [362868] = 2, + [323864] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14115), 3, + ACTIONS(8861), 1, anon_sym_COMMA, + ACTIONS(13342), 1, anon_sym_RPAREN, - anon_sym_COLON, - [362877] = 4, + STATE(8586), 1, + aux_sym_argument_list_repeat1, + [323877] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(13344), 3, anon_sym_COMMA, - ACTIONS(9378), 1, anon_sym_RPAREN, - STATE(9063), 1, - aux_sym_argument_list_repeat1, - [362890] = 4, + anon_sym_COLON, + [323886] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(13346), 3, anon_sym_COMMA, - ACTIONS(14117), 1, - anon_sym_GT2, - STATE(8944), 1, - aux_sym_template_argument_list_repeat1, - [362903] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [323895] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13348), 1, + sym_identifier, + STATE(9958), 1, + sym_semgrep_ellipsis, + [323908] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3066), 1, + anon_sym_while, + ACTIONS(13147), 1, + anon_sym_else, + STATE(612), 1, + sym_else_clause, + [323921] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(14119), 1, + ACTIONS(13350), 1, anon_sym_GT2, - STATE(8951), 1, + STATE(8246), 1, aux_sym_template_argument_list_repeat1, - [362916] = 4, + [323934] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14121), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(14124), 1, + ACTIONS(13352), 1, anon_sym_GT2, - STATE(8914), 1, + STATE(8493), 1, aux_sym_template_argument_list_repeat1, - [362929] = 4, + [323947] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13459), 1, + ACTIONS(11208), 1, anon_sym_COLON, - ACTIONS(14126), 1, + ACTIONS(11263), 1, anon_sym_RPAREN, - STATE(9085), 1, - sym_gnu_asm_clobber_list, - [362942] = 4, + STATE(8636), 1, + sym_gnu_asm_output_operand_list, + [323960] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13514), 1, - anon_sym_COMMA, - ACTIONS(14128), 1, + ACTIONS(12954), 1, + anon_sym_COLON, + ACTIONS(13354), 1, anon_sym_RPAREN, - STATE(8579), 1, - aux_sym_parameter_list_repeat1, - [362955] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13819), 1, - anon_sym_catch, - STATE(2078), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [362966] = 4, + STATE(9200), 1, + sym_gnu_asm_goto_list, + [323973] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4781), 1, - anon_sym_RBRACE, - ACTIONS(14130), 1, + ACTIONS(13356), 1, anon_sym_COMMA, - STATE(9089), 1, - aux_sym_initializer_list_repeat1, - [362979] = 4, + ACTIONS(13359), 1, + anon_sym_RBRACK, + STATE(8414), 1, + aux_sym_structured_binding_declarator_repeat1, + [323986] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13514), 1, - anon_sym_COMMA, - ACTIONS(14132), 1, + ACTIONS(12986), 1, + anon_sym_COLON, + ACTIONS(13361), 1, anon_sym_RPAREN, - STATE(8955), 1, - aux_sym_parameter_list_repeat1, - [362992] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13557), 1, - anon_sym_COMMA, - ACTIONS(14134), 1, - anon_sym_LBRACE, - STATE(8880), 1, - aux_sym_field_initializer_list_repeat1, - [363005] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9240), 1, - anon_sym_COMMA, - ACTIONS(14136), 1, - anon_sym_RBRACK, - STATE(8652), 1, - aux_sym_subscript_argument_list_repeat1, - [363018] = 4, + STATE(8439), 1, + sym_gnu_asm_clobber_list, + [323999] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13577), 1, + ACTIONS(13018), 1, anon_sym_COLON, - ACTIONS(14138), 1, + ACTIONS(13363), 1, anon_sym_RPAREN, - STATE(9100), 1, + STATE(8449), 1, sym_gnu_asm_input_operand_list, - [363031] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9651), 1, - anon_sym_RBRACK, - ACTIONS(14140), 1, - anon_sym_COMMA, - STATE(8923), 1, - aux_sym_lambda_capture_specifier_repeat1, - [363044] = 4, + [324012] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_COMMA, - ACTIONS(9410), 1, + ACTIONS(12986), 1, + anon_sym_COLON, + ACTIONS(13365), 1, anon_sym_RPAREN, - STATE(9063), 1, - aux_sym_argument_list_repeat1, - [363057] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13595), 1, - anon_sym_catch, - STATE(459), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [363068] = 3, + STATE(8539), 1, + sym_gnu_asm_clobber_list, + [324025] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13696), 1, - anon_sym_catch, - STATE(409), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [363079] = 4, + ACTIONS(13367), 1, + sym_identifier, + STATE(2979), 1, + sym_template_function, + STATE(3044), 1, + sym_template_type, + [324038] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(13), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(14143), 1, + ACTIONS(13369), 1, sym_identifier, - STATE(10012), 1, + STATE(9179), 1, sym_semgrep_ellipsis, - [363092] = 4, + [324051] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9240), 1, + ACTIONS(13247), 1, anon_sym_COMMA, - ACTIONS(9322), 1, - anon_sym_RBRACK, - STATE(8957), 1, - aux_sym_subscript_argument_list_repeat1, - [363105] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13686), 1, - anon_sym_catch, - STATE(791), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [363116] = 4, + ACTIONS(13371), 1, + anon_sym_RPAREN, + STATE(8428), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [324064] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14145), 1, - sym_identifier, - STATE(3123), 1, - sym_template_function, - STATE(4669), 1, - sym_template_type, - [363129] = 4, - ACTIONS(10969), 1, + ACTIONS(10499), 1, + anon_sym_COMMA, + ACTIONS(13373), 1, + anon_sym_RPAREN, + STATE(8614), 1, + aux_sym_preproc_argument_list_repeat1, + [324077] = 4, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12884), 1, + ACTIONS(12409), 1, aux_sym_char_literal_token1, - ACTIONS(14147), 1, + ACTIONS(13375), 1, sym_escape_sequence, - STATE(8499), 1, + STATE(8089), 1, aux_sym_char_literal_repeat1, - [363142] = 4, + [324090] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8875), 1, + anon_sym_COMMA, + ACTIONS(13377), 1, + anon_sym_GT2, + STATE(8493), 1, + aux_sym_template_argument_list_repeat1, + [324103] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13742), 1, + ACTIONS(13022), 1, anon_sym_COMMA, - ACTIONS(14149), 1, + ACTIONS(13379), 1, anon_sym_RPAREN, - STATE(9067), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [363155] = 4, + STATE(8218), 1, + aux_sym_requires_parameter_list_repeat1, + [324116] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13577), 1, + ACTIONS(13018), 1, anon_sym_COLON, - ACTIONS(14151), 1, + ACTIONS(13381), 1, anon_sym_RPAREN, - STATE(9014), 1, + STATE(8551), 1, sym_gnu_asm_input_operand_list, - [363168] = 4, + [324129] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(14153), 1, - anon_sym_RPAREN, - STATE(9063), 1, - aux_sym_argument_list_repeat1, - [363181] = 4, + ACTIONS(13383), 1, + anon_sym_GT2, + STATE(8435), 1, + aux_sym_template_argument_list_repeat1, + [324142] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9240), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(14155), 1, - anon_sym_RBRACK, - STATE(8652), 1, - aux_sym_subscript_argument_list_repeat1, - [363194] = 4, + ACTIONS(13385), 1, + anon_sym_GT2, + STATE(8493), 1, + aux_sym_template_argument_list_repeat1, + [324155] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13577), 1, - anon_sym_COLON, - ACTIONS(14157), 1, + ACTIONS(13387), 1, + anon_sym_COMMA, + ACTIONS(13390), 1, anon_sym_RPAREN, - STATE(8958), 1, - sym_gnu_asm_input_operand_list, - [363207] = 4, + STATE(8428), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [324168] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11553), 1, - anon_sym_COLON, - ACTIONS(11588), 1, + ACTIONS(8919), 1, + anon_sym_COMMA, + ACTIONS(13392), 1, anon_sym_RPAREN, - STATE(8960), 1, - sym_gnu_asm_output_operand_list, - [363220] = 4, + STATE(8400), 1, + aux_sym_generic_expression_repeat1, + [324181] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(14159), 1, + ACTIONS(13394), 1, anon_sym_GT2, - STATE(8914), 1, + STATE(8493), 1, aux_sym_template_argument_list_repeat1, - [363233] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10993), 1, - anon_sym_COMMA, - ACTIONS(14161), 1, - anon_sym_SEMI, - STATE(8857), 1, - aux_sym_declaration_declarator_repeat1, - [363246] = 4, + [324194] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(13396), 3, anon_sym_COMMA, - ACTIONS(14163), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [363259] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [324203] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(13398), 3, anon_sym_COMMA, - ACTIONS(9326), 1, anon_sym_RPAREN, - STATE(9063), 1, - aux_sym_argument_list_repeat1, - [363272] = 4, + anon_sym_COLON, + [324212] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4795), 1, - anon_sym_RBRACE, - ACTIONS(14165), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - STATE(9089), 1, - aux_sym_initializer_list_repeat1, - [363285] = 4, + ACTIONS(13400), 1, + anon_sym_GT2, + STATE(8493), 1, + aux_sym_template_argument_list_repeat1, + [324225] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(13), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(14167), 1, + ACTIONS(13402), 1, sym_identifier, - STATE(10501), 1, + STATE(9542), 1, sym_semgrep_ellipsis, - [363298] = 4, + [324238] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(14169), 1, + ACTIONS(13404), 1, anon_sym_GT2, - STATE(8914), 1, + STATE(8493), 1, aux_sym_template_argument_list_repeat1, - [363311] = 4, + [324251] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6066), 1, + ACTIONS(12946), 1, anon_sym_COMMA, - ACTIONS(14171), 1, - anon_sym_RBRACK, - STATE(8898), 1, - aux_sym_structured_binding_declarator_repeat1, - [363324] = 4, - ACTIONS(10969), 1, + ACTIONS(13406), 1, + anon_sym_RBRACK_RBRACK, + STATE(8463), 1, + aux_sym_attribute_declaration_repeat1, + [324264] = 4, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12884), 1, + ACTIONS(12409), 1, aux_sym_char_literal_token1, - ACTIONS(14173), 1, + ACTIONS(13408), 1, sym_escape_sequence, - STATE(8186), 1, + STATE(8120), 1, aux_sym_char_literal_repeat1, - [363337] = 4, + [324277] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13577), 1, - anon_sym_COLON, - ACTIONS(14175), 1, - anon_sym_RPAREN, - STATE(8968), 1, - sym_gnu_asm_input_operand_list, - [363350] = 4, + ACTIONS(8875), 1, + anon_sym_COMMA, + ACTIONS(13410), 1, + anon_sym_GT2, + STATE(8493), 1, + aux_sym_template_argument_list_repeat1, + [324290] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11553), 1, + ACTIONS(12954), 1, anon_sym_COLON, - ACTIONS(11569), 1, + ACTIONS(13412), 1, anon_sym_RPAREN, - STATE(8969), 1, - sym_gnu_asm_output_operand_list, - [363363] = 4, + STATE(9395), 1, + sym_gnu_asm_goto_list, + [324303] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(14177), 1, + ACTIONS(13414), 1, anon_sym_GT2, - STATE(8914), 1, + STATE(8411), 1, aux_sym_template_argument_list_repeat1, - [363376] = 4, + [324316] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(14179), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [363389] = 4, + ACTIONS(13416), 1, + sym_identifier, + STATE(2566), 1, + sym_template_type, + STATE(3582), 1, + sym_template_function, + [324329] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(13418), 1, anon_sym_COMMA, - ACTIONS(14181), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [363402] = 4, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(13499), 1, - anon_sym_LPAREN2, - ACTIONS(14183), 1, - aux_sym_preproc_include_token2, - STATE(9660), 1, - sym_preproc_argument_list, - [363415] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11553), 1, - anon_sym_COLON, - ACTIONS(11630), 1, + ACTIONS(13421), 1, anon_sym_RPAREN, - STATE(9015), 1, - sym_gnu_asm_output_operand_list, - [363428] = 4, + STATE(8442), 1, + aux_sym_parameter_list_repeat1, + [324342] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_COMMA, - ACTIONS(14185), 1, - anon_sym_RPAREN, - STATE(9063), 1, - aux_sym_argument_list_repeat1, - [363441] = 4, + ACTIONS(13423), 1, + sym_identifier, + STATE(2979), 1, + sym_template_function, + STATE(3044), 1, + sym_template_type, + [324355] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13514), 1, + ACTIONS(12946), 1, anon_sym_COMMA, - ACTIONS(14187), 1, - anon_sym_RPAREN, - STATE(8579), 1, - aux_sym_parameter_list_repeat1, - [363454] = 3, + ACTIONS(13425), 1, + anon_sym_RBRACK_RBRACK, + STATE(8515), 1, + aux_sym_attribute_declaration_repeat1, + [324368] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13595), 1, - anon_sym_catch, - STATE(497), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [363465] = 4, + ACTIONS(13427), 1, + sym_identifier, + STATE(3044), 1, + sym_template_type, + STATE(3737), 1, + sym_template_function, + [324381] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9240), 1, - anon_sym_COMMA, - ACTIONS(14189), 1, + ACTIONS(9207), 1, anon_sym_RBRACK, - STATE(8652), 1, + ACTIONS(13429), 1, + anon_sym_COMMA, + STATE(8446), 1, aux_sym_subscript_argument_list_repeat1, - [363478] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13459), 1, - anon_sym_COLON, - ACTIONS(14191), 1, - anon_sym_RPAREN, - STATE(8961), 1, - sym_gnu_asm_clobber_list, - [363491] = 4, + [324394] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9310), 1, + ACTIONS(10603), 1, anon_sym_COMMA, - ACTIONS(14193), 1, - anon_sym_RBRACK, - STATE(8923), 1, - aux_sym_lambda_capture_specifier_repeat1, - [363504] = 4, + ACTIONS(10607), 1, + anon_sym_SEMI, + STATE(8475), 1, + aux_sym_declaration_declarator_repeat1, + [324407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13577), 1, - anon_sym_COLON, - ACTIONS(14195), 1, - anon_sym_RPAREN, - STATE(8963), 1, - sym_gnu_asm_input_operand_list, - [363517] = 4, + ACTIONS(13432), 1, + anon_sym_catch, + STATE(951), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [324418] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13629), 1, + ACTIONS(12986), 1, anon_sym_COLON, - ACTIONS(14197), 1, + ACTIONS(13434), 1, anon_sym_RPAREN, - STATE(9837), 1, - sym_gnu_asm_goto_list, - [363530] = 4, + STATE(8465), 1, + sym_gnu_asm_clobber_list, + [324431] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(13), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(14199), 1, + ACTIONS(13436), 1, sym_identifier, - STATE(9738), 1, + STATE(9829), 1, sym_semgrep_ellipsis, - [363543] = 4, + [324444] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13459), 1, - anon_sym_COLON, - ACTIONS(14201), 1, + ACTIONS(8861), 1, + anon_sym_COMMA, + ACTIONS(13438), 1, anon_sym_RPAREN, - STATE(8970), 1, - sym_gnu_asm_clobber_list, - [363556] = 4, + STATE(8586), 1, + aux_sym_argument_list_repeat1, + [324457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(13440), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13442), 2, anon_sym_COMMA, - ACTIONS(14203), 1, - anon_sym_RPAREN, - STATE(9063), 1, - aux_sym_argument_list_repeat1, - [363569] = 4, - ACTIONS(10969), 1, + anon_sym_LBRACE, + [324468] = 4, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12884), 1, + ACTIONS(12409), 1, aux_sym_char_literal_token1, - ACTIONS(14205), 1, + ACTIONS(13444), 1, sym_escape_sequence, - STATE(8194), 1, + STATE(8174), 1, aux_sym_char_literal_repeat1, - [363582] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5560), 1, - anon_sym_LBRACE, - ACTIONS(12978), 1, - anon_sym_COLON_COLON, - STATE(850), 1, - sym_declaration_list, - [363595] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14207), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [363604] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13459), 1, - anon_sym_COLON, - ACTIONS(14209), 1, - anon_sym_RPAREN, - STATE(8972), 1, - sym_gnu_asm_clobber_list, - [363617] = 4, + [324481] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13577), 1, - anon_sym_COLON, - ACTIONS(14211), 1, - anon_sym_RPAREN, - STATE(8973), 1, - sym_gnu_asm_input_operand_list, - [363630] = 4, + ACTIONS(8818), 1, + anon_sym_COMMA, + ACTIONS(13446), 1, + anon_sym_RBRACK, + STATE(8212), 1, + aux_sym_lambda_capture_specifier_repeat1, + [324494] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13629), 1, - anon_sym_COLON, - ACTIONS(14213), 1, - anon_sym_RPAREN, - STATE(9844), 1, - sym_gnu_asm_goto_list, - [363643] = 4, + ACTIONS(8875), 1, + anon_sym_COMMA, + ACTIONS(13448), 1, + anon_sym_GT2, + STATE(8460), 1, + aux_sym_template_argument_list_repeat1, + [324507] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4825), 1, - anon_sym_RBRACE, - ACTIONS(14215), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - STATE(9089), 1, - aux_sym_initializer_list_repeat1, - [363656] = 4, + ACTIONS(13450), 1, + anon_sym_GT2, + STATE(8493), 1, + aux_sym_template_argument_list_repeat1, + [324520] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13629), 1, - anon_sym_COLON, - ACTIONS(14217), 1, - anon_sym_RPAREN, - STATE(10029), 1, - sym_gnu_asm_goto_list, - [363669] = 4, + ACTIONS(8875), 1, + anon_sym_COMMA, + ACTIONS(13452), 1, + anon_sym_GT2, + STATE(8493), 1, + aux_sym_template_argument_list_repeat1, + [324533] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13459), 1, - anon_sym_COLON, - ACTIONS(14219), 1, - anon_sym_RPAREN, - STATE(8975), 1, - sym_gnu_asm_clobber_list, - [363682] = 4, + ACTIONS(13454), 1, + sym_identifier, + STATE(3044), 1, + sym_template_type, + STATE(4238), 1, + sym_template_function, + [324546] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10993), 1, + ACTIONS(10603), 1, anon_sym_COMMA, - ACTIONS(14161), 1, + ACTIONS(13456), 1, anon_sym_SEMI, - STATE(8857), 1, + STATE(8522), 1, aux_sym_declaration_declarator_repeat1, - [363695] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13629), 1, - anon_sym_COLON, - ACTIONS(14221), 1, - anon_sym_RPAREN, - STATE(10034), 1, - sym_gnu_asm_goto_list, - [363708] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9222), 1, - anon_sym_COMMA, - ACTIONS(14223), 1, - anon_sym_RPAREN, - STATE(8862), 1, - aux_sym_generic_expression_repeat1, - [363721] = 4, + [324559] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(14225), 1, + ACTIONS(13458), 1, anon_sym_GT2, - STATE(8914), 1, + STATE(8493), 1, aux_sym_template_argument_list_repeat1, - [363734] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_COMMA, - ACTIONS(14227), 1, - anon_sym_RPAREN, - STATE(9063), 1, - aux_sym_argument_list_repeat1, - [363747] = 4, + [324572] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(13), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(14229), 1, + ACTIONS(13460), 1, sym_identifier, - STATE(9865), 1, + STATE(9613), 1, sym_semgrep_ellipsis, - [363760] = 2, + [324585] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12978), 3, + ACTIONS(10603), 1, + anon_sym_COMMA, + ACTIONS(13462), 1, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - [363769] = 4, + STATE(8525), 1, + aux_sym_declaration_declarator_repeat1, + [324598] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13475), 1, + ACTIONS(12946), 1, anon_sym_COMMA, - ACTIONS(14231), 1, + ACTIONS(13464), 1, anon_sym_RBRACK_RBRACK, - STATE(8831), 1, + STATE(8515), 1, aux_sym_attribute_declaration_repeat1, - [363782] = 4, - ACTIONS(10969), 1, + [324611] = 4, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12884), 1, + ACTIONS(12409), 1, aux_sym_char_literal_token1, - ACTIONS(14233), 1, + ACTIONS(13466), 1, sym_escape_sequence, - STATE(8225), 1, + STATE(7862), 1, aux_sym_char_literal_repeat1, - [363795] = 4, + [324624] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_COMMA, - ACTIONS(14235), 1, + ACTIONS(12954), 1, + anon_sym_COLON, + ACTIONS(13468), 1, anon_sym_RPAREN, - STATE(9063), 1, - aux_sym_argument_list_repeat1, - [363808] = 4, + STATE(9417), 1, + sym_gnu_asm_goto_list, + [324637] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(8861), 1, anon_sym_COMMA, - ACTIONS(9260), 1, + ACTIONS(9003), 1, anon_sym_RPAREN, - STATE(9097), 1, + STATE(8491), 1, aux_sym_argument_list_repeat1, - [363821] = 4, + [324650] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(9005), 1, anon_sym_COMMA, - ACTIONS(14237), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [363834] = 4, + ACTIONS(9007), 1, + anon_sym_RBRACE, + STATE(8492), 1, + aux_sym_initializer_list_repeat1, + [324663] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13475), 1, + ACTIONS(8919), 1, anon_sym_COMMA, - ACTIONS(14239), 1, - anon_sym_RBRACK_RBRACK, - STATE(9019), 1, - aux_sym_attribute_declaration_repeat1, - [363847] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, - ACTIONS(12978), 1, - anon_sym_COLON_COLON, - STATE(373), 1, - sym_declaration_list, - [363860] = 4, + ACTIONS(13470), 1, + anon_sym_RPAREN, + STATE(8400), 1, + aux_sym_generic_expression_repeat1, + [324676] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10899), 1, + ACTIONS(12667), 1, anon_sym_COMMA, - ACTIONS(14241), 1, - anon_sym_RPAREN, - STATE(8743), 1, - aux_sym_preproc_argument_list_repeat1, - [363873] = 4, + ACTIONS(12848), 1, + anon_sym_LBRACE, + STATE(8348), 1, + aux_sym_base_class_clause_repeat1, + [324689] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(13), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(14243), 1, + ACTIONS(13472), 1, sym_identifier, - STATE(10280), 1, + STATE(9135), 1, sym_semgrep_ellipsis, - [363886] = 4, + [324702] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13481), 1, + ACTIONS(12667), 1, anon_sym_COMMA, - ACTIONS(14245), 1, + ACTIONS(12848), 1, + anon_sym_LBRACE, + STATE(8616), 1, + aux_sym_base_class_clause_repeat1, + [324715] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11208), 1, + anon_sym_COLON, + ACTIONS(11233), 1, anon_sym_RPAREN, - STATE(8808), 1, - aux_sym_preproc_params_repeat1, - [363899] = 4, - ACTIONS(10969), 1, + STATE(8305), 1, + sym_gnu_asm_output_operand_list, + [324728] = 4, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12884), 1, + ACTIONS(12409), 1, aux_sym_char_literal_token1, - ACTIONS(14247), 1, + ACTIONS(13474), 1, sym_escape_sequence, - STATE(8251), 1, + STATE(7883), 1, aux_sym_char_literal_repeat1, - [363912] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9262), 1, - anon_sym_COMMA, - ACTIONS(9264), 1, - anon_sym_RBRACE, - STATE(9102), 1, - aux_sym_initializer_list_repeat1, - [363925] = 4, + [324741] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13459), 1, + ACTIONS(11208), 1, anon_sym_COLON, - ACTIONS(14249), 1, + ACTIONS(11210), 1, anon_sym_RPAREN, - STATE(9088), 1, - sym_gnu_asm_clobber_list, - [363938] = 4, + STATE(8494), 1, + sym_gnu_asm_output_operand_list, + [324754] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10603), 1, + anon_sym_COMMA, + ACTIONS(13462), 1, + anon_sym_SEMI, + STATE(8525), 1, + aux_sym_declaration_declarator_repeat1, + [324767] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4715), 1, + ACTIONS(4719), 1, anon_sym_RBRACE, - ACTIONS(14251), 1, + ACTIONS(13476), 1, anon_sym_COMMA, - STATE(9089), 1, + STATE(8280), 1, aux_sym_initializer_list_repeat1, - [363951] = 3, + [324780] = 4, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(12409), 1, + aux_sym_char_literal_token1, + ACTIONS(13478), 1, + sym_escape_sequence, + STATE(7904), 1, + aux_sym_char_literal_repeat1, + [324793] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14253), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(14255), 2, + ACTIONS(8875), 1, anon_sym_COMMA, - anon_sym_LBRACE, - [363962] = 4, + ACTIONS(13480), 1, + anon_sym_GT2, + STATE(8499), 1, + aux_sym_template_argument_list_repeat1, + [324806] = 4, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(12409), 1, + aux_sym_char_literal_token1, + ACTIONS(13482), 1, + sym_escape_sequence, + STATE(7917), 1, + aux_sym_char_literal_repeat1, + [324819] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(14257), 1, - sym_identifier, - STATE(10183), 1, - sym_semgrep_ellipsis, - [363975] = 4, - ACTIONS(10969), 1, + ACTIONS(12978), 1, + anon_sym_COMMA, + ACTIONS(13484), 1, + anon_sym_GT2, + STATE(8630), 1, + aux_sym_template_parameter_list_repeat1, + [324832] = 4, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12884), 1, + ACTIONS(12409), 1, aux_sym_char_literal_token1, - ACTIONS(14259), 1, + ACTIONS(13486), 1, sym_escape_sequence, - STATE(8273), 1, + STATE(7929), 1, aux_sym_char_literal_repeat1, - [363988] = 4, + [324845] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11549), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(14261), 1, + ACTIONS(13488), 1, sym_identifier, - STATE(8967), 1, - sym_semgrep_ellipsis, - [364001] = 4, + STATE(2566), 1, + sym_template_type, + STATE(3737), 1, + sym_template_function, + [324858] = 4, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(12409), 1, + aux_sym_char_literal_token1, + ACTIONS(13490), 1, + sym_escape_sequence, + STATE(7939), 1, + aux_sym_char_literal_repeat1, + [324871] = 4, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(12409), 1, + aux_sym_char_literal_token1, + ACTIONS(13492), 1, + sym_escape_sequence, + STATE(7947), 1, + aux_sym_char_literal_repeat1, + [324884] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(12966), 1, anon_sym_COMMA, - ACTIONS(14263), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [364014] = 4, + ACTIONS(13494), 1, + anon_sym_RPAREN, + STATE(8595), 1, + aux_sym_parameter_list_repeat1, + [324897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(14265), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [364027] = 4, + ACTIONS(13496), 1, + anon_sym_catch, + STATE(1875), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [324908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13), 1, + ACTIONS(12415), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(14267), 1, - sym_identifier, - STATE(10053), 1, - sym_semgrep_ellipsis, - [364040] = 4, + ACTIONS(13498), 2, + anon_sym_COMMA, + anon_sym_GT2, + [324919] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11553), 1, + ACTIONS(11208), 1, anon_sym_COLON, - ACTIONS(11571), 1, + ACTIONS(11259), 1, anon_sym_RPAREN, - STATE(8793), 1, + STATE(8364), 1, sym_gnu_asm_output_operand_list, - [364053] = 4, - ACTIONS(10969), 1, + [324932] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12884), 1, - aux_sym_char_literal_token1, - ACTIONS(14269), 1, - sym_escape_sequence, - STATE(8293), 1, - aux_sym_char_literal_repeat1, - [364066] = 4, + ACTIONS(8875), 1, + anon_sym_COMMA, + ACTIONS(13500), 1, + anon_sym_GT2, + STATE(8314), 1, + aux_sym_template_argument_list_repeat1, + [324945] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9147), 1, + ACTIONS(8861), 1, + anon_sym_COMMA, + ACTIONS(9055), 1, + anon_sym_RPAREN, + STATE(8568), 1, + aux_sym_argument_list_repeat1, + [324958] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8861), 1, + anon_sym_COMMA, + ACTIONS(9015), 1, + anon_sym_RPAREN, + STATE(8586), 1, + aux_sym_argument_list_repeat1, + [324971] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4735), 1, anon_sym_RBRACE, - ACTIONS(9484), 1, + ACTIONS(13502), 1, anon_sym_COMMA, - STATE(8994), 1, + STATE(8280), 1, aux_sym_initializer_list_repeat1, - [364079] = 4, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(12884), 1, - aux_sym_char_literal_token1, - ACTIONS(14271), 1, - sym_escape_sequence, - STATE(8309), 1, - aux_sym_char_literal_repeat1, - [364092] = 4, + [324984] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(13504), 1, anon_sym_COMMA, - ACTIONS(14273), 1, + ACTIONS(13507), 1, anon_sym_GT2, - STATE(8914), 1, + STATE(8493), 1, aux_sym_template_argument_list_repeat1, - [364105] = 4, - ACTIONS(10969), 1, + [324997] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12884), 1, - aux_sym_char_literal_token1, - ACTIONS(14275), 1, - sym_escape_sequence, - STATE(8324), 1, - aux_sym_char_literal_repeat1, - [364118] = 4, - ACTIONS(10969), 1, + ACTIONS(13018), 1, + anon_sym_COLON, + ACTIONS(13509), 1, + anon_sym_RPAREN, + STATE(8505), 1, + sym_gnu_asm_input_operand_list, + [325010] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12884), 1, - aux_sym_char_literal_token1, - ACTIONS(14277), 1, - sym_escape_sequence, - STATE(8337), 1, - aux_sym_char_literal_repeat1, - [364131] = 4, + ACTIONS(11208), 1, + anon_sym_COLON, + ACTIONS(11239), 1, + anon_sym_RPAREN, + STATE(8506), 1, + sym_gnu_asm_output_operand_list, + [325023] = 4, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(13198), 1, + anon_sym_LPAREN2, + ACTIONS(13511), 1, + aux_sym_preproc_include_token2, + STATE(9423), 1, + sym_preproc_argument_list, + [325036] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8875), 1, + anon_sym_COMMA, + ACTIONS(13513), 1, + anon_sym_GT2, + STATE(8493), 1, + aux_sym_template_argument_list_repeat1, + [325049] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(14279), 1, - anon_sym_RPAREN, - STATE(9063), 1, - aux_sym_argument_list_repeat1, - [364144] = 4, + ACTIONS(13515), 1, + anon_sym_GT2, + STATE(8493), 1, + aux_sym_template_argument_list_repeat1, + [325062] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13459), 1, - anon_sym_COLON, - ACTIONS(14281), 1, - anon_sym_RPAREN, - STATE(9035), 1, - sym_gnu_asm_clobber_list, - [364157] = 4, + ACTIONS(8875), 1, + anon_sym_COMMA, + ACTIONS(13517), 1, + anon_sym_GT2, + STATE(8493), 1, + aux_sym_template_argument_list_repeat1, + [325075] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13475), 1, - anon_sym_COMMA, - ACTIONS(14283), 1, - anon_sym_RBRACK_RBRACK, - STATE(9045), 1, - aux_sym_attribute_declaration_repeat1, - [364170] = 4, + ACTIONS(13519), 1, + sym_identifier, + STATE(2979), 1, + sym_template_function, + STATE(3044), 1, + sym_template_type, + [325088] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13496), 1, + anon_sym_catch, + STATE(1884), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [325099] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13521), 1, + anon_sym_catch, + STATE(2034), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [325110] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11553), 1, + ACTIONS(11208), 1, anon_sym_COLON, - ACTIONS(11634), 1, + ACTIONS(11223), 1, anon_sym_RPAREN, - STATE(9118), 1, + STATE(8570), 1, sym_gnu_asm_output_operand_list, - [364183] = 4, + [325123] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13577), 1, - anon_sym_COLON, - ACTIONS(14285), 1, + ACTIONS(8861), 1, + anon_sym_COMMA, + ACTIONS(13523), 1, anon_sym_RPAREN, - STATE(9050), 1, - sym_gnu_asm_input_operand_list, - [364196] = 4, + STATE(8586), 1, + aux_sym_argument_list_repeat1, + [325136] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13459), 1, + ACTIONS(12986), 1, anon_sym_COLON, - ACTIONS(14287), 1, + ACTIONS(13525), 1, anon_sym_RPAREN, - STATE(9022), 1, + STATE(8507), 1, sym_gnu_asm_clobber_list, - [364209] = 4, + [325149] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13577), 1, + ACTIONS(13018), 1, anon_sym_COLON, - ACTIONS(14289), 1, + ACTIONS(13527), 1, anon_sym_RPAREN, - STATE(9023), 1, + STATE(8508), 1, sym_gnu_asm_input_operand_list, - [364222] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(14291), 1, - anon_sym_GT2, - STATE(9123), 1, - aux_sym_template_argument_list_repeat1, - [364235] = 4, + [325162] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14293), 1, - sym_identifier, - STATE(2973), 1, - sym_template_type, - STATE(4299), 1, - sym_template_function, - [364248] = 4, + ACTIONS(12954), 1, + anon_sym_COLON, + ACTIONS(13529), 1, + anon_sym_RPAREN, + STATE(9553), 1, + sym_gnu_asm_goto_list, + [325175] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13577), 1, + ACTIONS(12986), 1, anon_sym_COLON, - ACTIONS(14295), 1, + ACTIONS(13531), 1, anon_sym_RPAREN, - STATE(9095), 1, - sym_gnu_asm_input_operand_list, - [364261] = 4, + STATE(8510), 1, + sym_gnu_asm_clobber_list, + [325188] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13475), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(14297), 1, - anon_sym_RBRACK_RBRACK, - STATE(8831), 1, - aux_sym_attribute_declaration_repeat1, - [364274] = 4, + ACTIONS(13533), 1, + anon_sym_GT2, + STATE(8519), 1, + aux_sym_template_argument_list_repeat1, + [325201] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13629), 1, + ACTIONS(12954), 1, anon_sym_COLON, - ACTIONS(14299), 1, + ACTIONS(13535), 1, anon_sym_RPAREN, - STATE(10376), 1, + STATE(9556), 1, sym_gnu_asm_goto_list, - [364287] = 4, + [325214] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14301), 1, - sym_identifier, - STATE(2503), 1, - sym_template_type, - STATE(3856), 1, - sym_template_function, - [364300] = 4, + ACTIONS(8919), 1, + anon_sym_COMMA, + ACTIONS(13537), 1, + anon_sym_RPAREN, + STATE(8400), 1, + aux_sym_generic_expression_repeat1, + [325227] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13629), 1, - anon_sym_COLON, - ACTIONS(14303), 1, - anon_sym_RPAREN, - STATE(10348), 1, - sym_gnu_asm_goto_list, - [364313] = 4, + ACTIONS(12946), 1, + anon_sym_COMMA, + ACTIONS(13539), 1, + anon_sym_RBRACK_RBRACK, + STATE(8444), 1, + aux_sym_attribute_declaration_repeat1, + [325240] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13459), 1, + ACTIONS(12986), 1, anon_sym_COLON, - ACTIONS(14305), 1, + ACTIONS(13541), 1, anon_sym_RPAREN, - STATE(9024), 1, + STATE(8532), 1, sym_gnu_asm_clobber_list, - [364326] = 4, + [325253] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13629), 1, + ACTIONS(13018), 1, anon_sym_COLON, - ACTIONS(14307), 1, + ACTIONS(13543), 1, anon_sym_RPAREN, - STATE(10373), 1, - sym_gnu_asm_goto_list, - [364339] = 3, + STATE(8533), 1, + sym_gnu_asm_input_operand_list, + [325266] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14309), 1, - anon_sym_catch, - STATE(974), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [364350] = 4, + ACTIONS(13545), 1, + anon_sym_COMMA, + ACTIONS(13548), 1, + anon_sym_RBRACK_RBRACK, + STATE(8515), 1, + aux_sym_attribute_declaration_repeat1, + [325279] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(14311), 1, + ACTIONS(13550), 1, anon_sym_GT2, - STATE(9042), 1, + STATE(8493), 1, aux_sym_template_argument_list_repeat1, - [364363] = 4, + [325292] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(14313), 1, + ACTIONS(13552), 1, anon_sym_GT2, - STATE(8847), 1, + STATE(8493), 1, aux_sym_template_argument_list_repeat1, - [364376] = 4, + [325305] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14315), 1, + ACTIONS(6119), 1, anon_sym_COMMA, - ACTIONS(14318), 1, + ACTIONS(13554), 1, + anon_sym_RBRACK, + STATE(8414), 1, + aux_sym_structured_binding_declarator_repeat1, + [325318] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8875), 1, + anon_sym_COMMA, + ACTIONS(13556), 1, anon_sym_GT2, - STATE(9028), 1, - aux_sym_template_parameter_list_repeat1, - [364389] = 4, + STATE(8493), 1, + aux_sym_template_argument_list_repeat1, + [325331] = 4, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(13198), 1, + anon_sym_LPAREN2, + ACTIONS(13558), 1, + aux_sym_preproc_include_token2, + STATE(9423), 1, + sym_preproc_argument_list, + [325344] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13072), 1, + anon_sym_catch, + STATE(2038), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [325355] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9222), 1, + ACTIONS(10603), 1, anon_sym_COMMA, - ACTIONS(14320), 1, - anon_sym_RPAREN, - STATE(8862), 1, - aux_sym_generic_expression_repeat1, - [364402] = 4, + ACTIONS(13560), 1, + anon_sym_SEMI, + STATE(8525), 1, + aux_sym_declaration_declarator_repeat1, + [325368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12956), 1, + ACTIONS(13056), 1, + anon_sym_catch, + STATE(308), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [325379] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2193), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [325388] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13562), 1, anon_sym_COMMA, - ACTIONS(12988), 1, - anon_sym_LBRACE, - STATE(8706), 1, - aux_sym_base_class_clause_repeat1, - [364415] = 2, - ACTIONS(10969), 1, + ACTIONS(13565), 1, + anon_sym_SEMI, + STATE(8525), 1, + aux_sym_declaration_declarator_repeat1, + [325401] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(14322), 3, - anon_sym_SQUOTE, - aux_sym_char_literal_token1, - sym_escape_sequence, - [364424] = 4, + ACTIONS(13567), 1, + sym_identifier, + STATE(3044), 1, + sym_template_type, + STATE(4066), 1, + sym_template_function, + [325414] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(14324), 1, + ACTIONS(13569), 1, anon_sym_GT2, - STATE(8914), 1, + STATE(8592), 1, aux_sym_template_argument_list_repeat1, - [364437] = 3, + [325427] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14326), 1, - anon_sym_EQ, - ACTIONS(12414), 2, + ACTIONS(8875), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [364448] = 4, + ACTIONS(13571), 1, + anon_sym_GT2, + STATE(8535), 1, + aux_sym_template_argument_list_repeat1, + [325440] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7098), 1, + anon_sym_SEMI, + ACTIONS(7517), 1, + anon_sym_LT, + STATE(1914), 1, + sym_template_argument_list, + [325453] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13514), 1, + ACTIONS(12946), 1, anon_sym_COMMA, - ACTIONS(14328), 1, - anon_sym_RPAREN, - STATE(9129), 1, - aux_sym_parameter_list_repeat1, - [364461] = 4, + ACTIONS(13573), 1, + anon_sym_RBRACK_RBRACK, + STATE(8548), 1, + aux_sym_attribute_declaration_repeat1, + [325466] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13629), 1, + ACTIONS(8875), 1, + anon_sym_COMMA, + ACTIONS(13575), 1, + anon_sym_GT2, + STATE(8493), 1, + aux_sym_template_argument_list_repeat1, + [325479] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12954), 1, anon_sym_COLON, - ACTIONS(14330), 1, + ACTIONS(13577), 1, anon_sym_RPAREN, - STATE(10073), 1, + STATE(9669), 1, sym_gnu_asm_goto_list, - [364474] = 4, + [325492] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_COMMA, - ACTIONS(14332), 1, + ACTIONS(12986), 1, + anon_sym_COLON, + ACTIONS(13579), 1, anon_sym_RPAREN, - STATE(9063), 1, - aux_sym_argument_list_repeat1, - [364487] = 4, + STATE(8565), 1, + sym_gnu_asm_clobber_list, + [325505] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(14334), 1, + ACTIONS(13581), 1, anon_sym_GT2, - STATE(8914), 1, + STATE(8493), 1, aux_sym_template_argument_list_repeat1, - [364500] = 3, - ACTIONS(10969), 1, + [325518] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(14338), 1, - aux_sym_string_literal_token1, - ACTIONS(14336), 2, - anon_sym_DQUOTE, - sym_escape_sequence, - [364511] = 4, + ACTIONS(8875), 1, + anon_sym_COMMA, + ACTIONS(13583), 1, + anon_sym_GT2, + STATE(8493), 1, + aux_sym_template_argument_list_repeat1, + [325531] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14340), 1, - sym_identifier, - STATE(4442), 1, - sym_template_function, - STATE(4669), 1, - sym_template_type, - [364524] = 3, + ACTIONS(12978), 1, + anon_sym_COMMA, + ACTIONS(13585), 1, + anon_sym_GT2, + STATE(8327), 1, + aux_sym_template_parameter_list_repeat1, + [325544] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12667), 1, + anon_sym_COMMA, + ACTIONS(12669), 1, + anon_sym_LBRACE, + STATE(8616), 1, + aux_sym_base_class_clause_repeat1, + [325557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14059), 1, + ACTIONS(13496), 1, anon_sym_catch, - STATE(299), 2, + STATE(1887), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [364535] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(14342), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [364548] = 4, + [325568] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(14344), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [364561] = 3, + ACTIONS(12954), 1, + anon_sym_COLON, + ACTIONS(13587), 1, + anon_sym_RPAREN, + STATE(9925), 1, + sym_gnu_asm_goto_list, + [325581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14346), 1, + ACTIONS(13589), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(14348), 2, + ACTIONS(13591), 2, anon_sym_COMMA, anon_sym_LBRACE, - [364572] = 2, + [325592] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14350), 3, + ACTIONS(12667), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [364581] = 4, + ACTIONS(12930), 1, + anon_sym_LBRACE, + STATE(8537), 1, + aux_sym_base_class_clause_repeat1, + [325605] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13475), 1, + ACTIONS(12946), 1, anon_sym_COMMA, - ACTIONS(14352), 1, + ACTIONS(13593), 1, anon_sym_RBRACK_RBRACK, - STATE(8831), 1, + STATE(8266), 1, aux_sym_attribute_declaration_repeat1, - [364594] = 4, + [325618] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9240), 1, + ACTIONS(8913), 1, anon_sym_COMMA, - ACTIONS(9268), 1, + ACTIONS(8955), 1, anon_sym_RBRACK, - STATE(9131), 1, + STATE(8254), 1, aux_sym_subscript_argument_list_repeat1, - [364607] = 4, + [325631] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(13595), 3, anon_sym_COMMA, - ACTIONS(9334), 1, anon_sym_RPAREN, - STATE(9084), 1, - aux_sym_argument_list_repeat1, - [364620] = 2, + anon_sym_GT2, + [325640] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14354), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [364629] = 4, + ACTIONS(13597), 1, + sym_identifier, + STATE(3044), 1, + sym_template_type, + STATE(7269), 1, + sym_template_function, + [325653] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9336), 1, + ACTIONS(13599), 3, anon_sym_COMMA, - ACTIONS(9338), 1, - anon_sym_RBRACE, - STATE(9086), 1, - aux_sym_initializer_list_repeat1, - [364642] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13459), 1, - anon_sym_COLON, - ACTIONS(14356), 1, anon_sym_RPAREN, - STATE(9059), 1, - sym_gnu_asm_clobber_list, - [364655] = 4, + anon_sym_COLON, + [325662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3084), 1, - anon_sym_while, - ACTIONS(13909), 1, - anon_sym_else, - STATE(664), 1, - sym_else_clause, - [364668] = 4, + ACTIONS(13601), 1, + sym_identifier, + ACTIONS(13603), 2, + anon_sym_COMMA, + anon_sym_GT2, + [325673] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12956), 1, + ACTIONS(12946), 1, anon_sym_COMMA, - ACTIONS(13187), 1, - anon_sym_LBRACE, - STATE(8706), 1, - aux_sym_base_class_clause_repeat1, - [364681] = 3, + ACTIONS(13605), 1, + anon_sym_RBRACK_RBRACK, + STATE(8515), 1, + aux_sym_attribute_declaration_repeat1, + [325686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13754), 1, + ACTIONS(13521), 1, anon_sym_catch, - STATE(2065), 2, + STATE(2032), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [364692] = 3, + [325697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14358), 1, + ACTIONS(12976), 1, anon_sym_catch, - STATE(1912), 2, + STATE(718), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [364703] = 4, + [325708] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13475), 1, - anon_sym_COMMA, - ACTIONS(14360), 1, - anon_sym_RBRACK_RBRACK, - STATE(9074), 1, - aux_sym_attribute_declaration_repeat1, - [364716] = 2, + ACTIONS(12986), 1, + anon_sym_COLON, + ACTIONS(13607), 1, + anon_sym_RPAREN, + STATE(8205), 1, + sym_gnu_asm_clobber_list, + [325721] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14362), 3, + ACTIONS(8861), 1, anon_sym_COMMA, + ACTIONS(9019), 1, anon_sym_RPAREN, - anon_sym_COLON, - [364725] = 4, + STATE(8579), 1, + aux_sym_argument_list_repeat1, + [325734] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(9021), 1, anon_sym_COMMA, - ACTIONS(14364), 1, - anon_sym_GT2, - STATE(8662), 1, - aux_sym_template_argument_list_repeat1, - [364738] = 4, + ACTIONS(9023), 1, + anon_sym_RBRACE, + STATE(8580), 1, + aux_sym_initializer_list_repeat1, + [325747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11553), 1, - anon_sym_COLON, - ACTIONS(11624), 1, - anon_sym_RPAREN, - STATE(9090), 1, - sym_gnu_asm_output_operand_list, - [364751] = 4, + ACTIONS(13521), 1, + anon_sym_catch, + STATE(2036), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [325758] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13629), 1, + ACTIONS(11208), 1, anon_sym_COLON, - ACTIONS(14366), 1, + ACTIONS(11221), 1, anon_sym_RPAREN, - STATE(10105), 1, - sym_gnu_asm_goto_list, - [364764] = 4, + STATE(8584), 1, + sym_gnu_asm_output_operand_list, + [325771] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14368), 1, - sym_identifier, - STATE(4669), 1, - sym_template_type, - STATE(7623), 1, - sym_template_function, - [364777] = 4, + ACTIONS(13234), 1, + anon_sym_COMMA, + ACTIONS(13609), 1, + anon_sym_LBRACE, + STATE(8347), 1, + aux_sym_field_initializer_list_repeat1, + [325784] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14370), 1, + ACTIONS(13611), 1, sym_identifier, - STATE(3237), 1, + STATE(2614), 1, sym_template_function, - STATE(4669), 1, + STATE(3044), 1, sym_template_type, - [364790] = 4, + [325797] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8861), 1, anon_sym_COMMA, - ACTIONS(14372), 1, - anon_sym_GT2, - STATE(9096), 1, - aux_sym_template_argument_list_repeat1, - [364803] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9665), 1, + ACTIONS(13613), 1, anon_sym_RPAREN, - ACTIONS(14374), 1, - anon_sym_COMMA, - STATE(9063), 1, + STATE(8586), 1, aux_sym_argument_list_repeat1, - [364816] = 4, + [325810] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(14377), 1, - anon_sym_RPAREN, - STATE(9063), 1, - aux_sym_argument_list_repeat1, - [364829] = 4, + ACTIONS(13615), 1, + anon_sym_GT2, + STATE(8591), 1, + aux_sym_template_argument_list_repeat1, + [325823] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9222), 1, + ACTIONS(13617), 3, anon_sym_COMMA, - ACTIONS(14379), 1, anon_sym_RPAREN, - STATE(8862), 1, - aux_sym_generic_expression_repeat1, - [364842] = 4, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(13499), 1, - anon_sym_LPAREN2, - ACTIONS(14381), 1, - aux_sym_preproc_include_token2, - STATE(9660), 1, - sym_preproc_argument_list, - [364855] = 4, + anon_sym_GT2, + [325832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14383), 1, + ACTIONS(8067), 1, + anon_sym_EQ, + ACTIONS(8065), 2, anon_sym_COMMA, - ACTIONS(14386), 1, - anon_sym_RPAREN, - STATE(9067), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [364868] = 4, + anon_sym_GT2, + [325843] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13514), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(14388), 1, - anon_sym_RPAREN, - STATE(9098), 1, - aux_sym_parameter_list_repeat1, - [364881] = 4, + ACTIONS(13619), 1, + anon_sym_GT2, + STATE(8566), 1, + aux_sym_template_argument_list_repeat1, + [325856] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9310), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(14390), 1, - anon_sym_RBRACK, - STATE(8923), 1, - aux_sym_lambda_capture_specifier_repeat1, - [364894] = 4, + ACTIONS(13621), 1, + anon_sym_GT2, + STATE(8493), 1, + aux_sym_template_argument_list_repeat1, + [325869] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13475), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(14392), 1, - anon_sym_RBRACK_RBRACK, - STATE(8831), 1, - aux_sym_attribute_declaration_repeat1, - [364907] = 3, + ACTIONS(13623), 1, + anon_sym_GT2, + STATE(8493), 1, + aux_sym_template_argument_list_repeat1, + [325882] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13954), 1, - anon_sym_COLON_COLON, - ACTIONS(14394), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [364918] = 4, + ACTIONS(12954), 1, + anon_sym_COLON, + ACTIONS(13625), 1, + anon_sym_RPAREN, + STATE(9751), 1, + sym_gnu_asm_goto_list, + [325895] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14396), 1, - sym_identifier, - STATE(3237), 1, - sym_template_function, - STATE(4669), 1, - sym_template_type, - [364931] = 3, + ACTIONS(8875), 1, + anon_sym_COMMA, + ACTIONS(13627), 1, + anon_sym_GT2, + STATE(8493), 1, + aux_sym_template_argument_list_repeat1, + [325908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14358), 1, + ACTIONS(12976), 1, anon_sym_catch, - STATE(1929), 2, + STATE(701), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [364942] = 4, + [325919] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13475), 1, + ACTIONS(8861), 1, anon_sym_COMMA, - ACTIONS(14398), 1, - anon_sym_RBRACK_RBRACK, - STATE(8831), 1, - aux_sym_attribute_declaration_repeat1, - [364955] = 4, + ACTIONS(9059), 1, + anon_sym_RPAREN, + STATE(8586), 1, + aux_sym_argument_list_repeat1, + [325932] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13629), 1, + anon_sym_catch, + STATE(1904), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [325943] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11553), 1, + ACTIONS(13018), 1, anon_sym_COLON, - ACTIONS(11561), 1, + ACTIONS(13631), 1, anon_sym_RPAREN, - STATE(8621), 1, - sym_gnu_asm_output_operand_list, - [364968] = 2, + STATE(8611), 1, + sym_gnu_asm_input_operand_list, + [325956] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12312), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [364977] = 3, + ACTIONS(11208), 1, + anon_sym_COLON, + ACTIONS(11229), 1, + anon_sym_RPAREN, + STATE(8617), 1, + sym_gnu_asm_output_operand_list, + [325969] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13656), 1, - anon_sym_catch, - STATE(1967), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [364988] = 4, + ACTIONS(12667), 1, + anon_sym_COMMA, + ACTIONS(12930), 1, + anon_sym_LBRACE, + STATE(8616), 1, + aux_sym_base_class_clause_repeat1, + [325982] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13475), 1, + ACTIONS(12946), 1, anon_sym_COMMA, - ACTIONS(14400), 1, + ACTIONS(13633), 1, anon_sym_RBRACK_RBRACK, - STATE(8566), 1, + STATE(8515), 1, aux_sym_attribute_declaration_repeat1, - [365001] = 4, + [325995] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9234), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(9236), 1, - anon_sym_RBRACE, - STATE(8971), 1, - aux_sym_initializer_list_repeat1, - [365014] = 4, + ACTIONS(13635), 1, + anon_sym_GT2, + STATE(8493), 1, + aux_sym_template_argument_list_repeat1, + [326008] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13577), 1, - anon_sym_COLON, - ACTIONS(14402), 1, - anon_sym_RPAREN, - STATE(8915), 1, - sym_gnu_asm_input_operand_list, - [365027] = 4, + ACTIONS(13637), 1, + sym_identifier, + STATE(2566), 1, + sym_template_type, + STATE(2614), 1, + sym_template_function, + [326021] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(14404), 1, + ACTIONS(13639), 1, anon_sym_GT2, - STATE(9106), 1, + STATE(8493), 1, aux_sym_template_argument_list_repeat1, - [365040] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11553), 1, - anon_sym_COLON, - ACTIONS(11646), 1, - anon_sym_RPAREN, - STATE(8922), 1, - sym_gnu_asm_output_operand_list, - [365053] = 4, + [326034] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(14406), 1, + ACTIONS(13641), 1, anon_sym_GT2, - STATE(8914), 1, + STATE(8583), 1, aux_sym_template_argument_list_repeat1, - [365066] = 4, + [326047] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(8919), 1, anon_sym_COMMA, - ACTIONS(9342), 1, + ACTIONS(13643), 1, anon_sym_RPAREN, - STATE(9063), 1, - aux_sym_argument_list_repeat1, - [365079] = 4, + STATE(8400), 1, + aux_sym_generic_expression_repeat1, + [326060] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13629), 1, - anon_sym_COLON, - ACTIONS(14408), 1, + ACTIONS(8861), 1, + anon_sym_COMMA, + ACTIONS(9027), 1, anon_sym_RPAREN, - STATE(10312), 1, - sym_gnu_asm_goto_list, - [365092] = 4, + STATE(8586), 1, + aux_sym_argument_list_repeat1, + [326073] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4811), 1, + ACTIONS(4741), 1, anon_sym_RBRACE, - ACTIONS(14410), 1, + ACTIONS(13645), 1, anon_sym_COMMA, - STATE(9089), 1, + STATE(8280), 1, aux_sym_initializer_list_repeat1, - [365105] = 4, + [326086] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13501), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(14412), 1, + ACTIONS(13647), 1, anon_sym_GT2, - STATE(8796), 1, - aux_sym_template_parameter_list_repeat1, - [365118] = 4, + STATE(8493), 1, + aux_sym_template_argument_list_repeat1, + [326099] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13629), 1, - anon_sym_COLON, - ACTIONS(14414), 1, - anon_sym_RPAREN, - STATE(9858), 1, - sym_gnu_asm_goto_list, - [365131] = 4, + ACTIONS(8875), 1, + anon_sym_COMMA, + ACTIONS(13649), 1, + anon_sym_GT2, + STATE(8493), 1, + aux_sym_template_argument_list_repeat1, + [326112] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9203), 1, - anon_sym_RBRACE, - ACTIONS(14416), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - STATE(9089), 1, - aux_sym_initializer_list_repeat1, - [365144] = 4, + ACTIONS(13651), 1, + anon_sym_GT2, + STATE(8493), 1, + aux_sym_template_argument_list_repeat1, + [326125] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13577), 1, + ACTIONS(13018), 1, anon_sym_COLON, - ACTIONS(14419), 1, + ACTIONS(13653), 1, anon_sym_RPAREN, - STATE(9107), 1, + STATE(8605), 1, sym_gnu_asm_input_operand_list, - [365157] = 4, + [326138] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11553), 1, + ACTIONS(11208), 1, anon_sym_COLON, - ACTIONS(11640), 1, + ACTIONS(11225), 1, anon_sym_RPAREN, - STATE(9108), 1, + STATE(8606), 1, sym_gnu_asm_output_operand_list, - [365170] = 2, + [326151] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14421), 3, - anon_sym_COMMA, + ACTIONS(9199), 1, anon_sym_RPAREN, - anon_sym_COLON, - [365179] = 4, + ACTIONS(13655), 1, + anon_sym_COMMA, + STATE(8586), 1, + aux_sym_argument_list_repeat1, + [326164] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_RBRACE, + ACTIONS(8871), 1, + anon_sym_COMMA, + STATE(8476), 1, + aux_sym_initializer_list_repeat1, + [326177] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(14423), 1, + ACTIONS(13658), 1, anon_sym_GT2, - STATE(8914), 1, + STATE(8493), 1, aux_sym_template_argument_list_repeat1, - [365192] = 4, + [326190] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(14425), 1, + ACTIONS(13660), 1, anon_sym_GT2, - STATE(8914), 1, + STATE(8493), 1, aux_sym_template_argument_list_repeat1, - [365205] = 4, + [326203] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13459), 1, - anon_sym_COLON, - ACTIONS(14427), 1, - anon_sym_RPAREN, - STATE(9104), 1, - sym_gnu_asm_clobber_list, - [365218] = 4, + ACTIONS(8913), 1, + anon_sym_COMMA, + ACTIONS(9117), 1, + anon_sym_RBRACK, + STATE(8650), 1, + aux_sym_subscript_argument_list_repeat1, + [326216] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(14429), 1, + ACTIONS(13662), 1, anon_sym_GT2, - STATE(8914), 1, + STATE(8493), 1, aux_sym_template_argument_list_repeat1, - [365231] = 4, + [326229] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(9270), 1, + ACTIONS(13664), 1, + anon_sym_GT2, + STATE(8493), 1, + aux_sym_template_argument_list_repeat1, + [326242] = 4, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(13198), 1, + anon_sym_LPAREN2, + ACTIONS(13666), 1, + aux_sym_preproc_include_token2, + STATE(9423), 1, + sym_preproc_argument_list, + [326255] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12986), 1, + anon_sym_COLON, + ACTIONS(13668), 1, anon_sym_RPAREN, - STATE(9063), 1, - aux_sym_argument_list_repeat1, - [365244] = 4, + STATE(8182), 1, + sym_gnu_asm_clobber_list, + [326268] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13514), 1, + ACTIONS(12966), 1, anon_sym_COMMA, - ACTIONS(14431), 1, + ACTIONS(13670), 1, anon_sym_RPAREN, - STATE(8579), 1, + STATE(8442), 1, aux_sym_parameter_list_repeat1, - [365257] = 3, + [326281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14358), 1, + ACTIONS(13629), 1, anon_sym_catch, - STATE(1913), 2, + STATE(1901), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [365268] = 4, + [326292] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13459), 1, - anon_sym_COLON, - ACTIONS(14433), 1, - anon_sym_RPAREN, - STATE(9135), 1, - sym_gnu_asm_clobber_list, - [365281] = 4, + ACTIONS(13672), 1, + sym_identifier, + STATE(3044), 1, + sym_template_type, + STATE(3582), 1, + sym_template_function, + [326305] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(14435), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [365294] = 4, + ACTIONS(13674), 1, + sym_identifier, + STATE(2979), 1, + sym_template_function, + STATE(3044), 1, + sym_template_type, + [326318] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4785), 1, - anon_sym_RBRACE, - ACTIONS(14437), 1, + ACTIONS(12946), 1, anon_sym_COMMA, - STATE(9089), 1, - aux_sym_initializer_list_repeat1, - [365307] = 4, + ACTIONS(13676), 1, + anon_sym_RBRACK_RBRACK, + STATE(8262), 1, + aux_sym_attribute_declaration_repeat1, + [326331] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(8861), 1, anon_sym_COMMA, - ACTIONS(14439), 1, + ACTIONS(13678), 1, anon_sym_RPAREN, - STATE(9063), 1, + STATE(8586), 1, aux_sym_argument_list_repeat1, - [365320] = 4, + [326344] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13629), 1, - anon_sym_COLON, - ACTIONS(14441), 1, + ACTIONS(8861), 1, + anon_sym_COMMA, + ACTIONS(13680), 1, anon_sym_RPAREN, - STATE(9875), 1, - sym_gnu_asm_goto_list, - [365333] = 4, + STATE(8586), 1, + aux_sym_argument_list_repeat1, + [326357] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(14443), 1, + ACTIONS(13682), 1, anon_sym_GT2, - STATE(8914), 1, + STATE(8610), 1, aux_sym_template_argument_list_repeat1, - [365346] = 4, + [326370] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(14445), 1, + ACTIONS(13684), 1, anon_sym_GT2, - STATE(8914), 1, + STATE(8493), 1, aux_sym_template_argument_list_repeat1, - [365359] = 4, + [326383] = 4, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(13198), 1, + anon_sym_LPAREN2, + ACTIONS(13686), 1, + aux_sym_preproc_include_token2, + STATE(9423), 1, + sym_preproc_argument_list, + [326396] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13459), 1, + ACTIONS(12986), 1, anon_sym_COLON, - ACTIONS(14447), 1, + ACTIONS(13688), 1, anon_sym_RPAREN, - STATE(9109), 1, + STATE(8608), 1, sym_gnu_asm_clobber_list, - [365372] = 4, + [326409] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13577), 1, + ACTIONS(13018), 1, anon_sym_COLON, - ACTIONS(14449), 1, + ACTIONS(13690), 1, anon_sym_RPAREN, - STATE(9110), 1, + STATE(8609), 1, sym_gnu_asm_input_operand_list, - [365385] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13629), 1, - anon_sym_COLON, - ACTIONS(14451), 1, - anon_sym_RPAREN, - STATE(10530), 1, - sym_gnu_asm_goto_list, - [365398] = 4, + [326422] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13459), 1, - anon_sym_COLON, - ACTIONS(14453), 1, - anon_sym_RPAREN, - STATE(9111), 1, - sym_gnu_asm_clobber_list, - [365411] = 4, + ACTIONS(8875), 1, + anon_sym_COMMA, + ACTIONS(13692), 1, + anon_sym_GT2, + STATE(8493), 1, + aux_sym_template_argument_list_repeat1, + [326435] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13629), 1, + ACTIONS(12954), 1, anon_sym_COLON, - ACTIONS(14455), 1, + ACTIONS(13694), 1, anon_sym_RPAREN, - STATE(10537), 1, + STATE(9880), 1, sym_gnu_asm_goto_list, - [365424] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9222), 1, - anon_sym_COMMA, - ACTIONS(14457), 1, - anon_sym_RPAREN, - STATE(8862), 1, - aux_sym_generic_expression_repeat1, - [365437] = 4, + [326448] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13459), 1, + ACTIONS(12986), 1, anon_sym_COLON, - ACTIONS(14459), 1, + ACTIONS(13696), 1, anon_sym_RPAREN, - STATE(9120), 1, + STATE(8612), 1, sym_gnu_asm_clobber_list, - [365450] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(14461), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [365463] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9222), 1, - anon_sym_COMMA, - ACTIONS(14463), 1, - anon_sym_RPAREN, - STATE(8862), 1, - aux_sym_generic_expression_repeat1, - [365476] = 4, + [326461] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5564), 1, - anon_sym_LBRACE, - ACTIONS(12978), 1, - anon_sym_COLON_COLON, - STATE(701), 1, - sym_declaration_list, - [365489] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9160), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(14465), 1, + ACTIONS(13698), 1, anon_sym_GT2, - STATE(8914), 1, + STATE(8493), 1, aux_sym_template_argument_list_repeat1, - [365502] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13577), 1, - anon_sym_COLON, - ACTIONS(14467), 1, - anon_sym_RPAREN, - STATE(8553), 1, - sym_gnu_asm_input_operand_list, - [365515] = 4, + [326474] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13577), 1, + ACTIONS(12986), 1, anon_sym_COLON, - ACTIONS(14469), 1, + ACTIONS(13700), 1, anon_sym_RPAREN, - STATE(9128), 1, - sym_gnu_asm_input_operand_list, - [365528] = 4, + STATE(8620), 1, + sym_gnu_asm_clobber_list, + [326487] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13629), 1, + ACTIONS(12954), 1, anon_sym_COLON, - ACTIONS(14471), 1, + ACTIONS(13702), 1, anon_sym_RPAREN, - STATE(9996), 1, + STATE(9883), 1, sym_gnu_asm_goto_list, - [365541] = 4, + [326500] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(8919), 1, anon_sym_COMMA, - ACTIONS(14473), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [365554] = 4, + ACTIONS(13704), 1, + anon_sym_RPAREN, + STATE(8400), 1, + aux_sym_generic_expression_repeat1, + [326513] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(10577), 1, + anon_sym_RPAREN, + ACTIONS(13706), 1, anon_sym_COMMA, - ACTIONS(14475), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [365567] = 4, + STATE(8614), 1, + aux_sym_preproc_argument_list_repeat1, + [326526] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_COMMA, - ACTIONS(14477), 1, - anon_sym_GT2, - STATE(8914), 1, - aux_sym_template_argument_list_repeat1, - [365580] = 4, + ACTIONS(12960), 1, + anon_sym_LPAREN2, + ACTIONS(13709), 1, + anon_sym_constexpr, + STATE(197), 1, + sym_condition_clause, + [326539] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12956), 1, - anon_sym_COMMA, - ACTIONS(13722), 1, + ACTIONS(13591), 1, anon_sym_LBRACE, - STATE(8706), 1, + ACTIONS(13711), 1, + anon_sym_COMMA, + STATE(8616), 1, aux_sym_base_class_clause_repeat1, - [365593] = 4, + [326552] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13629), 1, + ACTIONS(13018), 1, anon_sym_COLON, - ACTIONS(14479), 1, + ACTIONS(13714), 1, anon_sym_RPAREN, - STATE(10497), 1, - sym_gnu_asm_goto_list, - [365606] = 4, + STATE(8632), 1, + sym_gnu_asm_input_operand_list, + [326565] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13459), 1, - anon_sym_COLON, - ACTIONS(14481), 1, - anon_sym_RPAREN, - STATE(8870), 1, - sym_gnu_asm_clobber_list, - [365619] = 4, + ACTIONS(12467), 1, + anon_sym_DASH_GT, + ACTIONS(13716), 1, + anon_sym_SEMI, + STATE(9944), 1, + sym_trailing_return_type, + [326578] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13475), 1, - anon_sym_COMMA, - ACTIONS(14483), 1, - anon_sym_RBRACK_RBRACK, - STATE(8831), 1, - aux_sym_attribute_declaration_repeat1, - [365632] = 4, + ACTIONS(13718), 1, + sym_identifier, + STATE(3044), 1, + sym_template_type, + STATE(3414), 1, + sym_template_function, + [326591] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13459), 1, + ACTIONS(12954), 1, anon_sym_COLON, - ACTIONS(14485), 1, + ACTIONS(13720), 1, anon_sym_RPAREN, - STATE(9132), 1, - sym_gnu_asm_clobber_list, - [365645] = 4, + STATE(9544), 1, + sym_gnu_asm_goto_list, + [326604] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13514), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(14487), 1, - anon_sym_RPAREN, - STATE(8579), 1, - aux_sym_parameter_list_repeat1, - [365658] = 3, + ACTIONS(13722), 1, + anon_sym_GT2, + STATE(8631), 1, + aux_sym_template_argument_list_repeat1, + [326617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14059), 1, + ACTIONS(12988), 1, anon_sym_catch, - STATE(300), 2, + STATE(439), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [365669] = 4, + [326628] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9240), 1, - anon_sym_COMMA, - ACTIONS(14489), 1, - anon_sym_RBRACK, - STATE(8652), 1, - aux_sym_subscript_argument_list_repeat1, - [365682] = 4, - ACTIONS(3), 1, + ACTIONS(13724), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [326637] = 2, + ACTIONS(10479), 1, sym_comment, - ACTIONS(13629), 1, - anon_sym_COLON, - ACTIONS(14491), 1, - anon_sym_RPAREN, - STATE(10019), 1, - sym_gnu_asm_goto_list, - [365695] = 4, + ACTIONS(13726), 3, + anon_sym_SQUOTE, + aux_sym_char_literal_token1, + sym_escape_sequence, + [326646] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9222), 1, + ACTIONS(12972), 1, anon_sym_COMMA, - ACTIONS(14493), 1, + ACTIONS(13728), 1, anon_sym_RPAREN, - STATE(8862), 1, - aux_sym_generic_expression_repeat1, - [365708] = 4, + STATE(8210), 1, + aux_sym_throw_specifier_repeat1, + [326659] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(9232), 1, - anon_sym_RPAREN, - STATE(8885), 1, - aux_sym_argument_list_repeat1, - [365721] = 4, + ACTIONS(13730), 1, + anon_sym_GT2, + STATE(8493), 1, + aux_sym_template_argument_list_repeat1, + [326672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13629), 1, - anon_sym_COLON, - ACTIONS(14495), 1, - anon_sym_RPAREN, - STATE(10465), 1, - sym_gnu_asm_goto_list, - [365734] = 4, + ACTIONS(13732), 1, + anon_sym_EQ, + ACTIONS(12067), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [326683] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13475), 1, + ACTIONS(12946), 1, anon_sym_COMMA, - ACTIONS(14497), 1, + ACTIONS(13734), 1, anon_sym_RBRACK_RBRACK, - STATE(8681), 1, + STATE(8573), 1, aux_sym_attribute_declaration_repeat1, - [365747] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14499), 1, - sym_identifier, - STATE(4095), 1, - sym_template_function, - STATE(4669), 1, - sym_template_type, - [365760] = 4, + [326696] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10899), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(14501), 1, - anon_sym_RPAREN, - STATE(8743), 1, - aux_sym_preproc_argument_list_repeat1, - [365773] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11553), 1, - anon_sym_COLON, - ACTIONS(11582), 1, - anon_sym_RPAREN, - STATE(9013), 1, - sym_gnu_asm_output_operand_list, - [365786] = 3, + ACTIONS(13736), 1, + anon_sym_GT2, + STATE(8493), 1, + aux_sym_template_argument_list_repeat1, + [326709] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14503), 1, - anon_sym_LPAREN2, - ACTIONS(14505), 1, - sym_raw_string_delimiter, - [365796] = 3, + ACTIONS(13738), 1, + anon_sym_COMMA, + ACTIONS(13741), 1, + anon_sym_GT2, + STATE(8630), 1, + aux_sym_template_parameter_list_repeat1, + [326722] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2289), 1, - anon_sym_LBRACE, - STATE(3433), 1, - sym_initializer_list, - [365806] = 3, + ACTIONS(8875), 1, + anon_sym_COMMA, + ACTIONS(13743), 1, + anon_sym_GT2, + STATE(8493), 1, + aux_sym_template_argument_list_repeat1, + [326735] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14507), 1, - sym_identifier, - STATE(2973), 1, - sym_template_type, - [365816] = 3, + ACTIONS(12986), 1, + anon_sym_COLON, + ACTIONS(13745), 1, + anon_sym_RPAREN, + STATE(8633), 1, + sym_gnu_asm_clobber_list, + [326748] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14509), 1, + ACTIONS(12954), 1, + anon_sym_COLON, + ACTIONS(13747), 1, anon_sym_RPAREN, - ACTIONS(14511), 1, - sym_semgrep_metavar, - [365826] = 2, + STATE(9554), 1, + sym_gnu_asm_goto_list, + [326761] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13530), 2, + ACTIONS(12946), 1, anon_sym_COMMA, - anon_sym_LBRACE, - [365834] = 3, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(14513), 1, - aux_sym_preproc_include_token2, - ACTIONS(14515), 1, - sym_preproc_arg, - [365844] = 3, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(14517), 1, - aux_sym_preproc_include_token2, - ACTIONS(14519), 1, - sym_preproc_arg, - [365854] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14521), 1, - sym_identifier, - STATE(5242), 1, - sym_template_type, - [365864] = 3, - ACTIONS(3), 1, + ACTIONS(13749), 1, + anon_sym_RBRACK_RBRACK, + STATE(8648), 1, + aux_sym_attribute_declaration_repeat1, + [326774] = 4, + ACTIONS(10479), 1, sym_comment, - ACTIONS(10517), 1, - anon_sym_LT, - STATE(6732), 1, - sym_template_argument_list, - [365874] = 2, + ACTIONS(12409), 1, + aux_sym_char_literal_token1, + ACTIONS(13751), 1, + sym_escape_sequence, + STATE(7846), 1, + aux_sym_char_literal_repeat1, + [326787] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9201), 2, + ACTIONS(13018), 1, + anon_sym_COLON, + ACTIONS(13753), 1, anon_sym_RPAREN, - anon_sym_SEMI, - [365882] = 3, + STATE(8200), 1, + sym_gnu_asm_input_operand_list, + [326800] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14523), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - ACTIONS(14525), 1, - anon_sym_RBRACE, - [365892] = 2, + ACTIONS(13755), 1, + anon_sym_GT2, + STATE(8641), 1, + aux_sym_template_argument_list_repeat1, + [326813] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9623), 2, + ACTIONS(13297), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [365900] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14527), 1, - anon_sym_LT, - STATE(4972), 1, - sym_template_argument_list, - [365910] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8140), 1, - anon_sym_LT, - STATE(4397), 1, - sym_template_argument_list, - [365920] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6620), 1, - anon_sym_LBRACE, - STATE(3400), 1, - sym_field_declaration_list, - [365930] = 3, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(14529), 1, - aux_sym_preproc_include_token2, - ACTIONS(14531), 1, - sym_preproc_arg, - [365940] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6450), 1, - anon_sym_LBRACE, - STATE(3130), 1, - sym_field_declaration_list, - [365950] = 2, + ACTIONS(13757), 1, + anon_sym_RPAREN, + STATE(8381), 1, + aux_sym_preproc_params_repeat1, + [326826] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14533), 2, + ACTIONS(8875), 1, anon_sym_COMMA, - anon_sym_SEMI, - [365958] = 3, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(14535), 1, - aux_sym_preproc_include_token2, - ACTIONS(14537), 1, - sym_preproc_arg, - [365968] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1002), 1, - anon_sym_LBRACE, - STATE(575), 1, - sym_compound_statement, - [365978] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7783), 1, - anon_sym_LBRACE, - STATE(4816), 1, - sym_field_declaration_list, - [365988] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8627), 1, - anon_sym_LBRACE, - STATE(5454), 1, - sym_field_declaration_list, - [365998] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14539), 1, - sym_identifier, - STATE(5174), 1, - sym_template_type, - [366008] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13004), 1, - anon_sym_LBRACE, - STATE(7349), 1, - sym_requirement_seq, - [366018] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14541), 1, - anon_sym_LT, - STATE(5244), 1, - sym_template_argument_list, - [366028] = 3, + ACTIONS(13759), 1, + anon_sym_GT2, + STATE(8493), 1, + aux_sym_template_argument_list_repeat1, + [326839] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11745), 1, - anon_sym_RBRACE, - ACTIONS(14523), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - [366038] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14543), 1, - anon_sym_LT, - STATE(5099), 1, - sym_template_argument_list, - [366048] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7783), 1, - anon_sym_LBRACE, - STATE(4768), 1, - sym_field_declaration_list, - [366058] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14545), 1, - sym_identifier, - STATE(5441), 1, - sym_template_type, - [366068] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14547), 1, - anon_sym_LT, - STATE(2974), 1, - sym_template_argument_list, - [366078] = 3, + ACTIONS(13761), 1, + anon_sym_GT2, + STATE(8493), 1, + aux_sym_template_argument_list_repeat1, + [326852] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11910), 1, - anon_sym_RBRACE, - ACTIONS(14523), 1, + ACTIONS(8875), 1, anon_sym_COMMA, - [366088] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14549), 1, - anon_sym_LT, - STATE(5191), 1, - sym_template_argument_list, - [366098] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, - anon_sym_LBRACE, - STATE(8451), 1, - sym_compound_statement, - [366108] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7588), 1, - anon_sym_LT, - STATE(6753), 1, - sym_template_argument_list, - [366118] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6803), 1, - anon_sym_LBRACE, - STATE(3618), 1, - sym_field_declaration_list, - [366128] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6803), 1, - anon_sym_LBRACE, - STATE(3619), 1, - sym_field_declaration_list, - [366138] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6620), 1, - anon_sym_LBRACE, - STATE(3340), 1, - sym_field_declaration_list, - [366148] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6620), 1, - anon_sym_LBRACE, - STATE(3409), 1, - sym_field_declaration_list, - [366158] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14551), 1, - sym_identifier, - STATE(2863), 1, - sym_template_type, - [366168] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5566), 1, - anon_sym_LBRACE, - STATE(748), 1, - sym_declaration_list, - [366178] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7588), 1, - anon_sym_LT, - STATE(2974), 1, - sym_template_argument_list, - [366188] = 3, + ACTIONS(13763), 1, + anon_sym_GT2, + STATE(8493), 1, + aux_sym_template_argument_list_repeat1, + [326865] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14511), 1, - sym_semgrep_metavar, - ACTIONS(14553), 1, - anon_sym_RPAREN, - [366198] = 3, + ACTIONS(13765), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [326874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14555), 1, - anon_sym_LT, - STATE(5459), 1, - sym_template_argument_list, - [366208] = 3, + ACTIONS(13629), 1, + anon_sym_catch, + STATE(1905), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [326885] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14511), 1, - sym_semgrep_metavar, - ACTIONS(14557), 1, + ACTIONS(13767), 1, + anon_sym_COMMA, + ACTIONS(13770), 1, anon_sym_RPAREN, - [366218] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5568), 1, - anon_sym_LBRACE, - STATE(501), 1, - sym_declaration_list, - [366228] = 3, + STATE(8644), 1, + aux_sym_preproc_params_repeat1, + [326898] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9154), 1, + ACTIONS(8861), 1, + anon_sym_COMMA, + ACTIONS(8947), 1, anon_sym_RPAREN, - ACTIONS(9156), 1, - anon_sym_SEMI, - [366238] = 3, + STATE(8192), 1, + aux_sym_argument_list_repeat1, + [326911] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14559), 1, + ACTIONS(13772), 1, sym_identifier, - STATE(3245), 1, + STATE(3044), 1, sym_template_type, - [366248] = 3, + STATE(3737), 1, + sym_template_function, + [326924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(860), 1, + ACTIONS(13774), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13776), 2, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(550), 1, - sym_compound_statement, - [366258] = 3, + [326935] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10157), 1, - anon_sym_LPAREN2, - STATE(9826), 1, - sym_argument_list, - [366268] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14561), 1, - anon_sym_LT, - STATE(2868), 1, - sym_template_argument_list, - [366278] = 3, + ACTIONS(12946), 1, + anon_sym_COMMA, + ACTIONS(13778), 1, + anon_sym_RBRACK_RBRACK, + STATE(8515), 1, + aux_sym_attribute_declaration_repeat1, + [326948] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11780), 1, - anon_sym_RBRACE, - ACTIONS(14523), 1, + ACTIONS(8861), 1, anon_sym_COMMA, - [366288] = 3, + ACTIONS(9031), 1, + anon_sym_RPAREN, + STATE(8302), 1, + aux_sym_argument_list_repeat1, + [326961] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11822), 1, - anon_sym_RBRACE, - ACTIONS(14523), 1, + ACTIONS(8913), 1, anon_sym_COMMA, - [366298] = 2, + ACTIONS(13780), 1, + anon_sym_RBRACK, + STATE(8446), 1, + aux_sym_subscript_argument_list_repeat1, + [326974] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14563), 2, + ACTIONS(9033), 1, anon_sym_COMMA, - anon_sym_GT2, - [366306] = 3, + ACTIONS(9035), 1, + anon_sym_RBRACE, + STATE(8362), 1, + aux_sym_initializer_list_repeat1, + [326987] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14565), 1, - sym_identifier, - STATE(4664), 1, - sym_template_type, - [366316] = 3, + ACTIONS(12966), 1, + anon_sym_COMMA, + ACTIONS(13782), 1, + anon_sym_RPAREN, + STATE(8249), 1, + aux_sym_parameter_list_repeat1, + [327000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12978), 1, + ACTIONS(12425), 1, anon_sym_COLON_COLON, - ACTIONS(14567), 1, + ACTIONS(13784), 1, anon_sym_SEMI, - [366326] = 3, + [327010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14569), 1, - anon_sym_LT, - STATE(3269), 1, - sym_template_argument_list, - [366336] = 3, + ACTIONS(13786), 1, + anon_sym_COMMA, + ACTIONS(13788), 1, + anon_sym_RBRACE, + [327020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10707), 1, + ACTIONS(5484), 1, anon_sym_LBRACE, - STATE(5598), 1, - sym_requirement_seq, - [366346] = 3, + STATE(365), 1, + sym_declaration_list, + [327030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, + ACTIONS(7593), 1, anon_sym_LBRACE, - STATE(865), 1, - sym_compound_statement, - [366356] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14523), 1, - anon_sym_COMMA, - ACTIONS(14571), 1, - anon_sym_RBRACE, - [366366] = 3, + STATE(4487), 1, + sym_field_declaration_list, + [327040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6620), 1, - anon_sym_LBRACE, - STATE(3306), 1, - sym_field_declaration_list, - [366376] = 3, + ACTIONS(13790), 1, + anon_sym_LPAREN2, + STATE(9375), 1, + sym_parenthesized_expression, + [327050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13668), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - STATE(227), 1, - sym_condition_clause, - [366386] = 3, + STATE(8783), 1, + sym_parameter_list, + [327060] = 3, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(13792), 1, + aux_sym_preproc_include_token2, + ACTIONS(13794), 1, + sym_preproc_arg, + [327070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14573), 1, - sym_identifier, - STATE(4499), 1, - sym_template_type, - [366396] = 3, + ACTIONS(9779), 1, + anon_sym_LT, + STATE(2593), 1, + sym_template_argument_list, + [327080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11850), 1, + ACTIONS(55), 1, anon_sym_LBRACE, - STATE(1971), 1, + STATE(8392), 1, sym_compound_statement, - [366406] = 3, + [327090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14575), 1, - anon_sym_LT, - STATE(4657), 1, - sym_template_argument_list, - [366416] = 3, + ACTIONS(6910), 1, + anon_sym_LBRACE, + STATE(3268), 1, + sym_field_declaration_list, + [327100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14577), 1, - sym_identifier, - STATE(3079), 1, - sym_template_type, - [366426] = 3, + ACTIONS(10253), 1, + anon_sym_LBRACE, + STATE(2608), 1, + sym_requirement_seq, + [327110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14579), 1, - anon_sym_LT, - STATE(4417), 1, - sym_template_argument_list, - [366436] = 3, + ACTIONS(11172), 1, + anon_sym_RBRACE, + ACTIONS(13786), 1, + anon_sym_COMMA, + [327120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14581), 1, - sym_identifier, - STATE(3519), 1, - sym_template_type, - [366446] = 3, + ACTIONS(6910), 1, + anon_sym_LBRACE, + STATE(3273), 1, + sym_field_declaration_list, + [327130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, + ACTIONS(5486), 1, anon_sym_LBRACE, - STATE(8929), 1, - sym_compound_statement, - [366456] = 3, + STATE(737), 1, + sym_declaration_list, + [327140] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(421), 1, anon_sym_LBRACE, - STATE(551), 1, + STATE(360), 1, sym_compound_statement, - [366466] = 3, + [327150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14583), 1, - anon_sym_LT, - STATE(3016), 1, - sym_template_argument_list, - [366476] = 3, + ACTIONS(12425), 1, + anon_sym_COLON_COLON, + ACTIONS(13796), 1, + anon_sym_SEMI, + [327160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13668), 1, + ACTIONS(13790), 1, anon_sym_LPAREN2, - STATE(209), 1, - sym_condition_clause, - [366486] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14585), 1, - sym_identifier, - ACTIONS(14587), 1, - anon_sym_RPAREN, - [366496] = 3, + STATE(8921), 1, + sym_parenthesized_expression, + [327170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14589), 1, - sym_identifier, - STATE(4880), 1, - sym_template_type, - [366506] = 3, + ACTIONS(11160), 1, + anon_sym_RBRACE, + ACTIONS(13786), 1, + anon_sym_COMMA, + [327180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, + ACTIONS(309), 1, anon_sym_LBRACE, - STATE(835), 1, + STATE(376), 1, sym_compound_statement, - [366516] = 3, + [327190] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14591), 1, - anon_sym_LT, - STATE(3521), 1, - sym_template_argument_list, - [366526] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7332), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [366534] = 3, + ACTIONS(8964), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [327198] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11753), 1, + ACTIONS(860), 1, anon_sym_LBRACE, - STATE(2291), 1, + STATE(773), 1, sym_compound_statement, - [366544] = 3, - ACTIONS(3), 1, + [327208] = 3, + ACTIONS(10479), 1, sym_comment, - ACTIONS(14593), 1, - sym_identifier, - STATE(4715), 1, - sym_template_type, - [366554] = 3, + ACTIONS(13798), 1, + aux_sym_preproc_include_token2, + ACTIONS(13800), 1, + sym_preproc_arg, + [327218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14595), 1, - anon_sym_LT, - STATE(4839), 1, - sym_template_argument_list, - [366564] = 3, + ACTIONS(12960), 1, + anon_sym_LPAREN2, + STATE(194), 1, + sym_condition_clause, + [327228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8311), 1, + ACTIONS(5700), 1, anon_sym_LBRACE, - STATE(4676), 1, + STATE(2179), 1, sym_field_declaration_list, - [366574] = 3, + [327238] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8311), 1, + ACTIONS(5700), 1, anon_sym_LBRACE, - STATE(4692), 1, + STATE(2180), 1, sym_field_declaration_list, - [366584] = 2, + [327248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7340), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [366592] = 3, + ACTIONS(13802), 1, + anon_sym_RPAREN, + ACTIONS(13804), 1, + sym_semgrep_metavar, + [327258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14511), 1, + ACTIONS(13804), 1, sym_semgrep_metavar, - ACTIONS(14597), 1, + ACTIONS(13806), 1, anon_sym_RPAREN, - [366602] = 3, + [327268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14599), 1, - sym_identifier, - STATE(2645), 1, - sym_template_type, - [366612] = 3, + ACTIONS(8299), 1, + anon_sym_LPAREN2, + STATE(10087), 1, + sym_argument_list, + [327278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, + ACTIONS(10237), 1, anon_sym_LBRACE, - STATE(630), 1, - sym_compound_statement, - [366622] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14601), 1, - anon_sym_LT, - STATE(4658), 1, - sym_template_argument_list, - [366632] = 3, + STATE(5728), 1, + sym_requirement_seq, + [327288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11856), 1, - anon_sym_RBRACE, - ACTIONS(14523), 1, + ACTIONS(13786), 1, anon_sym_COMMA, - [366642] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7385), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [366650] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14603), 1, - sym_identifier, - STATE(2381), 1, - sym_template_type, - [366660] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2387), 1, - anon_sym_LBRACE, - STATE(3789), 1, - sym_initializer_list, - [366670] = 3, + ACTIONS(13808), 1, + anon_sym_RBRACE, + [327298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14605), 1, + ACTIONS(13810), 1, anon_sym_LT, - STATE(2590), 1, + STATE(4049), 1, sym_template_argument_list, - [366680] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14607), 1, - sym_identifier, - STATE(2478), 1, - sym_template_type, - [366690] = 3, + [327308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14511), 1, - sym_semgrep_metavar, - ACTIONS(14609), 1, - anon_sym_RPAREN, - [366700] = 3, + ACTIONS(6810), 1, + anon_sym_LBRACE, + STATE(3162), 1, + sym_field_declaration_list, + [327318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14611), 1, + ACTIONS(13812), 1, sym_identifier, - STATE(2757), 1, + STATE(4122), 1, sym_template_type, - [366710] = 3, - ACTIONS(10969), 1, + [327328] = 3, + ACTIONS(10479), 1, sym_comment, - ACTIONS(14613), 1, + ACTIONS(13814), 1, aux_sym_preproc_include_token2, - ACTIONS(14615), 1, + ACTIONS(13816), 1, sym_preproc_arg, - [366720] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14523), 1, - anon_sym_COMMA, - ACTIONS(14617), 1, - anon_sym_RBRACE, - [366730] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14619), 1, - anon_sym_LT, - STATE(2382), 1, - sym_template_argument_list, - [366740] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10673), 1, - anon_sym_LBRACE, - STATE(4216), 1, - sym_requirement_seq, - [366750] = 3, + [327338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14621), 1, - sym_identifier, - STATE(2606), 1, - sym_template_type, - [366760] = 3, + ACTIONS(13804), 1, + sym_semgrep_metavar, + ACTIONS(13818), 1, + anon_sym_RPAREN, + [327348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6803), 1, + ACTIONS(421), 1, anon_sym_LBRACE, - STATE(3630), 1, - sym_field_declaration_list, - [366770] = 2, + STATE(517), 1, + sym_compound_statement, + [327358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7389), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [366778] = 3, + ACTIONS(7517), 1, + anon_sym_LT, + STATE(4119), 1, + sym_template_argument_list, + [327368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14623), 1, + ACTIONS(9722), 1, anon_sym_LT, - STATE(2811), 1, + STATE(1833), 1, sym_template_argument_list, - [366788] = 3, + [327378] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13820), 1, + sym_identifier, + STATE(8542), 1, + sym_attribute, + [327388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4120), 1, + ACTIONS(421), 1, anon_sym_LBRACE, - STATE(6261), 1, - sym_initializer_list, - [366798] = 3, + STATE(490), 1, + sym_compound_statement, + [327398] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10096), 1, + ACTIONS(8083), 1, anon_sym_LBRACE, - STATE(6375), 1, + STATE(4637), 1, sym_field_declaration_list, - [366808] = 3, + [327408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7592), 1, - anon_sym_LT, - STATE(4370), 1, - sym_template_argument_list, - [366818] = 3, + ACTIONS(13786), 1, + anon_sym_COMMA, + ACTIONS(13822), 1, + anon_sym_RBRACE, + [327418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14625), 1, - anon_sym_LT, - STATE(2639), 1, - sym_template_argument_list, - [366828] = 3, + ACTIONS(8844), 1, + anon_sym_RBRACK, + ACTIONS(13824), 1, + anon_sym_COMMA, + [327428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10611), 1, + ACTIONS(5700), 1, anon_sym_LBRACE, - STATE(4663), 1, - sym_requirement_seq, - [366838] = 2, + STATE(2190), 1, + sym_field_declaration_list, + [327438] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7285), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [366846] = 2, + ACTIONS(8971), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [327446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14255), 2, - anon_sym_COMMA, + ACTIONS(11456), 1, anon_sym_LBRACE, - [366854] = 3, + STATE(2202), 1, + sym_compound_statement, + [327456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10629), 1, + ACTIONS(10313), 1, anon_sym_LBRACE, - STATE(5424), 1, + STATE(4966), 1, sym_requirement_seq, - [366864] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7336), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [366872] = 3, + [327466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11876), 1, + ACTIONS(1126), 1, anon_sym_LBRACE, - STATE(2118), 1, + STATE(519), 1, sym_compound_statement, - [366882] = 3, + [327476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10129), 1, - anon_sym_LT, - STATE(3039), 1, - sym_template_argument_list, - [366892] = 3, + ACTIONS(12425), 1, + anon_sym_COLON_COLON, + ACTIONS(13826), 1, + anon_sym_SEMI, + [327486] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14627), 1, - sym_identifier, - STATE(8651), 1, - sym_attribute, - [366902] = 3, + ACTIONS(13064), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [327494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14629), 1, - anon_sym_LT, - STATE(4500), 1, - sym_template_argument_list, - [366912] = 2, + ACTIONS(13828), 1, + sym_identifier, + ACTIONS(13830), 1, + anon_sym_LPAREN2, + [327504] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7201), 2, + ACTIONS(6765), 2, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [366920] = 3, + [327512] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13832), 1, + anon_sym_LT, + STATE(2930), 1, + sym_template_argument_list, + [327522] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8627), 1, + ACTIONS(55), 1, anon_sym_LBRACE, - STATE(5446), 1, - sym_field_declaration_list, - [366930] = 3, + STATE(639), 1, + sym_compound_statement, + [327532] = 3, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(13834), 1, + aux_sym_preproc_include_token2, + ACTIONS(13836), 1, + sym_preproc_arg, + [327542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11908), 1, + ACTIONS(11105), 1, anon_sym_RBRACE, - ACTIONS(14523), 1, + ACTIONS(13786), 1, anon_sym_COMMA, - [366940] = 3, + [327552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5566), 1, + ACTIONS(5484), 1, anon_sym_LBRACE, - STATE(705), 1, + STATE(393), 1, sym_declaration_list, - [366950] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10096), 1, - anon_sym_LBRACE, - STATE(6381), 1, - sym_field_declaration_list, - [366960] = 3, + [327562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10096), 1, + ACTIONS(421), 1, anon_sym_LBRACE, - STATE(6383), 1, - sym_field_declaration_list, - [366970] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14511), 1, - sym_semgrep_metavar, - ACTIONS(14631), 1, - anon_sym_RPAREN, - [366980] = 2, + STATE(467), 1, + sym_compound_statement, + [327572] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7211), 2, + ACTIONS(6769), 2, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [366988] = 3, + [327580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8627), 1, + ACTIONS(8083), 1, anon_sym_LBRACE, - STATE(5439), 1, + STATE(4694), 1, sym_field_declaration_list, - [366998] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11918), 1, - anon_sym_RBRACE, - ACTIONS(14523), 1, - anon_sym_COMMA, - [367008] = 3, + [327590] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11792), 1, + ACTIONS(8083), 1, anon_sym_LBRACE, - STATE(2278), 1, - sym_compound_statement, - [367018] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14627), 1, - sym_identifier, - STATE(8845), 1, - sym_attribute, - [367028] = 3, + STATE(4699), 1, + sym_field_declaration_list, + [327600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14511), 1, + ACTIONS(13804), 1, sym_semgrep_metavar, - ACTIONS(14633), 1, + ACTIONS(13838), 1, anon_sym_RPAREN, - [367038] = 3, + [327610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13668), 1, - anon_sym_LPAREN2, - STATE(9395), 1, - sym_condition_clause, - [367048] = 3, + ACTIONS(11440), 1, + anon_sym_LBRACE, + STATE(2331), 1, + sym_compound_statement, + [327620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13668), 1, - anon_sym_LPAREN2, - STATE(255), 1, - sym_condition_clause, - [367058] = 3, + ACTIONS(11192), 1, + anon_sym_RBRACE, + ACTIONS(13786), 1, + anon_sym_COMMA, + [327630] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10277), 1, + anon_sym_LBRACE, + STATE(3923), 1, + sym_requirement_seq, + [327640] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, anon_sym_LBRACE, - STATE(670), 1, + STATE(622), 1, sym_compound_statement, - [367068] = 3, + [327650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, + ACTIONS(309), 1, anon_sym_LBRACE, - STATE(8926), 1, + STATE(327), 1, sym_compound_statement, - [367078] = 3, + [327660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6450), 1, + ACTIONS(13786), 1, + anon_sym_COMMA, + ACTIONS(13840), 1, + anon_sym_RBRACE, + [327670] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13139), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(3232), 1, + [327678] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9670), 1, + anon_sym_LBRACE, + STATE(6311), 1, sym_field_declaration_list, - [367088] = 3, + [327688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6450), 1, + ACTIONS(9670), 1, anon_sym_LBRACE, - STATE(3233), 1, + STATE(6321), 1, sym_field_declaration_list, - [367098] = 3, + [327698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14511), 1, + ACTIONS(13804), 1, sym_semgrep_metavar, - ACTIONS(14635), 1, + ACTIONS(13842), 1, anon_sym_RPAREN, - [367108] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14637), 1, - sym_identifier, - STATE(4669), 1, - sym_template_type, - [367118] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2856), 1, - anon_sym_LBRACE, - STATE(4044), 1, - sym_initializer_list, - [367128] = 3, - ACTIONS(10969), 1, + [327708] = 3, + ACTIONS(10479), 1, sym_comment, - ACTIONS(14639), 1, + ACTIONS(13844), 1, aux_sym_preproc_include_token2, - ACTIONS(14641), 1, + ACTIONS(13846), 1, sym_preproc_arg, - [367138] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14523), 1, - anon_sym_COMMA, - ACTIONS(14643), 1, - anon_sym_RBRACE, - [367148] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10157), 1, - anon_sym_LPAREN2, - STATE(10573), 1, - sym_argument_list, - [367158] = 3, + [327718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_LBRACE, - STATE(8550), 1, - sym_compound_statement, - [367168] = 3, + ACTIONS(6427), 1, + anon_sym_LT, + STATE(1833), 1, + sym_template_argument_list, + [327728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13668), 1, - anon_sym_LPAREN2, - STATE(206), 1, - sym_condition_clause, - [367178] = 3, + ACTIONS(13786), 1, + anon_sym_COMMA, + ACTIONS(13848), 1, + anon_sym_RBRACE, + [327738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10096), 1, + ACTIONS(8083), 1, anon_sym_LBRACE, - STATE(6385), 1, + STATE(4629), 1, sym_field_declaration_list, - [367188] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14645), 1, - anon_sym_default, - ACTIONS(14647), 1, - anon_sym_delete, - [367198] = 3, + [327748] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - STATE(9299), 1, - sym_parameter_list, - [367208] = 3, + ACTIONS(13850), 1, + anon_sym_LT, + STATE(2525), 1, + sym_template_argument_list, + [327758] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14649), 1, + ACTIONS(13852), 2, + anon_sym_DOT_DOT_DOT, sym_identifier, - STATE(4279), 1, - sym_template_type, - [367218] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7227), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [367226] = 3, + [327766] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14651), 1, - anon_sym_LPAREN2, - STATE(10561), 1, - sym_parenthesized_expression, - [367236] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - STATE(9187), 1, - sym_parameter_list, - [367246] = 3, + ACTIONS(11134), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [327774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14653), 1, - anon_sym_LT, - STATE(4342), 1, - sym_template_argument_list, - [367256] = 3, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(14655), 1, - aux_sym_preproc_include_token2, - ACTIONS(14657), 1, - sym_preproc_arg, - [367266] = 3, + ACTIONS(6367), 1, + anon_sym_LBRACE, + STATE(2558), 1, + sym_field_declaration_list, + [327784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, + ACTIONS(3036), 1, anon_sym_LBRACE, - STATE(8675), 1, - sym_compound_statement, - [367276] = 3, + STATE(4369), 1, + sym_initializer_list, + [327794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13668), 1, - anon_sym_LPAREN2, - STATE(216), 1, - sym_condition_clause, - [367286] = 3, + ACTIONS(13854), 1, + sym_identifier, + STATE(2566), 1, + sym_template_type, + [327804] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14659), 1, + ACTIONS(13856), 1, sym_identifier, - ACTIONS(14661), 1, - anon_sym_LPAREN2, - [367296] = 3, + STATE(4766), 1, + sym_template_type, + [327814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14511), 1, + ACTIONS(13804), 1, sym_semgrep_metavar, - ACTIONS(14663), 1, + ACTIONS(13858), 1, anon_sym_RPAREN, - [367306] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14651), 1, - anon_sym_LPAREN2, - STATE(9270), 1, - sym_parenthesized_expression, - [367316] = 3, + [327824] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(421), 1, + ACTIONS(2658), 1, anon_sym_LBRACE, - STATE(517), 1, - sym_compound_statement, - [367326] = 3, + STATE(3856), 1, + sym_initializer_list, + [327834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14665), 1, - anon_sym_LPAREN2, - ACTIONS(14667), 1, - sym_raw_string_delimiter, - [367336] = 2, + ACTIONS(5482), 1, + anon_sym_LBRACE, + STATE(546), 1, + sym_declaration_list, + [327844] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13930), 2, + ACTIONS(13860), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [367344] = 3, + anon_sym_GT2, + [327852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_LBRACE, - STATE(569), 1, - sym_compound_statement, - [367354] = 3, + ACTIONS(13862), 1, + anon_sym_LT, + STATE(3749), 1, + sym_template_argument_list, + [327862] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(421), 1, + ACTIONS(6367), 1, anon_sym_LBRACE, - STATE(483), 1, - sym_compound_statement, - [367364] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14523), 1, - anon_sym_COMMA, - ACTIONS(14669), 1, - anon_sym_RBRACE, - [367374] = 3, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(14671), 1, - aux_sym_preproc_include_token2, - ACTIONS(14673), 1, - sym_preproc_arg, - [367384] = 3, + STATE(2545), 1, + sym_field_declaration_list, + [327872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6450), 1, + ACTIONS(6894), 1, anon_sym_LBRACE, - STATE(3131), 1, + STATE(3115), 1, sym_field_declaration_list, - [367394] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14675), 1, - sym_identifier, - STATE(6824), 1, - sym_template_type, - [367404] = 3, + [327882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(309), 1, + ACTIONS(2003), 1, anon_sym_LBRACE, - STATE(340), 1, + STATE(971), 1, sym_compound_statement, - [367414] = 3, + [327892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1002), 1, + ACTIONS(6367), 1, anon_sym_LBRACE, - STATE(504), 1, - sym_compound_statement, - [367424] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12978), 1, - anon_sym_COLON_COLON, - ACTIONS(14677), 1, - anon_sym_SEMI, - [367434] = 3, + STATE(2546), 1, + sym_field_declaration_list, + [327902] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14523), 1, + ACTIONS(13208), 2, anon_sym_COMMA, - ACTIONS(14679), 1, - anon_sym_RBRACE, - [367444] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2337), 1, anon_sym_LBRACE, - STATE(3173), 1, - sym_initializer_list, - [367454] = 2, + [327910] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5126), 2, + ACTIONS(13359), 2, anon_sym_COMMA, anon_sym_RBRACK, - [367462] = 2, + [327918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13535), 2, + ACTIONS(13786), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [367470] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14681), 1, - sym_identifier, - STATE(3178), 1, - sym_template_type, - [367480] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14511), 1, - sym_semgrep_metavar, - ACTIONS(14683), 1, - anon_sym_RPAREN, - [367490] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12978), 1, - anon_sym_COLON_COLON, - ACTIONS(14685), 1, - anon_sym_SEMI, - [367500] = 3, + ACTIONS(13864), 1, + anon_sym_RBRACE, + [327928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14511), 1, + ACTIONS(13804), 1, sym_semgrep_metavar, - ACTIONS(14687), 1, + ACTIONS(13866), 1, anon_sym_RPAREN, - [367510] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13668), 1, - anon_sym_LPAREN2, - STATE(9224), 1, - sym_condition_clause, - [367520] = 3, + [327938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(421), 1, + ACTIONS(6695), 1, anon_sym_LBRACE, - STATE(495), 1, - sym_compound_statement, - [367530] = 3, + STATE(3016), 1, + sym_field_declaration_list, + [327948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14689), 1, + ACTIONS(13868), 1, anon_sym_LT, - STATE(2974), 1, + STATE(2048), 1, sym_template_argument_list, - [367540] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13979), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [367548] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13952), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [367556] = 3, + [327958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8311), 1, + ACTIONS(6695), 1, anon_sym_LBRACE, - STATE(4649), 1, + STATE(3027), 1, sym_field_declaration_list, - [367566] = 3, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(14691), 1, - aux_sym_preproc_include_token2, - ACTIONS(14693), 1, - sym_preproc_arg, - [367576] = 3, + [327968] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7971), 1, + ACTIONS(309), 1, anon_sym_LBRACE, - STATE(4796), 1, - sym_field_declaration_list, - [367586] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10157), 1, - anon_sym_LPAREN2, - STATE(10676), 1, - sym_argument_list, - [367596] = 3, + STATE(409), 1, + sym_compound_statement, + [327978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14695), 1, + ACTIONS(13870), 1, sym_identifier, - STATE(4498), 1, + STATE(4422), 1, sym_template_type, - [367606] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14511), 1, - sym_semgrep_metavar, - ACTIONS(14697), 1, - anon_sym_RPAREN, - [367616] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6116), 1, - anon_sym_LBRACE, - STATE(2519), 1, - sym_field_declaration_list, - [367626] = 3, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(14699), 1, - aux_sym_preproc_include_token2, - ACTIONS(14701), 1, - sym_preproc_arg, - [367636] = 3, + [327988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14627), 1, + ACTIONS(13820), 1, sym_identifier, - STATE(8842), 1, + STATE(8599), 1, sym_attribute, - [367646] = 3, + [327998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(860), 1, + ACTIONS(55), 1, anon_sym_LBRACE, - STATE(719), 1, + STATE(8195), 1, sym_compound_statement, - [367656] = 3, + [328008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13668), 1, + ACTIONS(13804), 1, + sym_semgrep_metavar, + ACTIONS(13872), 1, + anon_sym_RPAREN, + [328018] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12960), 1, anon_sym_LPAREN2, - STATE(9371), 1, + STATE(9042), 1, sym_condition_clause, - [367666] = 3, + [328028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13668), 1, + ACTIONS(12960), 1, anon_sym_LPAREN2, - STATE(231), 1, + STATE(226), 1, sym_condition_clause, - [367676] = 3, + [328038] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3824), 1, + ACTIONS(13874), 2, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(5542), 1, - sym_initializer_list, - [367686] = 3, + [328046] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, anon_sym_LBRACE, - STATE(8878), 1, + STATE(8211), 1, sym_compound_statement, - [367696] = 3, + [328056] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12960), 1, + anon_sym_LPAREN2, + STATE(217), 1, + sym_condition_clause, + [328066] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10665), 1, + ACTIONS(10321), 1, anon_sym_LBRACE, - STATE(5699), 1, + STATE(4291), 1, sym_requirement_seq, - [367706] = 3, + [328076] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13181), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [328084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14703), 1, + ACTIONS(13876), 1, sym_identifier, - STATE(5157), 1, + STATE(3044), 1, sym_template_type, - [367716] = 3, + [328094] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13245), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [328102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10157), 1, + ACTIONS(8299), 1, anon_sym_LPAREN2, - STATE(10037), 1, + STATE(9657), 1, sym_argument_list, - [367726] = 3, + [328112] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, anon_sym_LBRACE, - STATE(8485), 1, + STATE(8026), 1, sym_compound_statement, - [367736] = 3, + [328122] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13668), 1, + ACTIONS(12960), 1, anon_sym_LPAREN2, - STATE(240), 1, + STATE(229), 1, sym_condition_clause, - [367746] = 3, + [328132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14511), 1, - sym_semgrep_metavar, - ACTIONS(14705), 1, - anon_sym_RPAREN, - [367756] = 3, + ACTIONS(1126), 1, + anon_sym_LBRACE, + STATE(787), 1, + sym_compound_statement, + [328142] = 3, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(13878), 1, + aux_sym_preproc_include_token2, + ACTIONS(13880), 1, + sym_preproc_arg, + [328152] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9312), 1, - anon_sym_RBRACK, - ACTIONS(14707), 1, - anon_sym_COMMA, - [367766] = 3, + ACTIONS(55), 1, + anon_sym_LBRACE, + STATE(534), 1, + sym_compound_statement, + [328162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14709), 1, + ACTIONS(13882), 1, anon_sym_default, - ACTIONS(14711), 1, + ACTIONS(13884), 1, anon_sym_delete, - [367776] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6184), 1, - anon_sym_LT, - STATE(2502), 1, - sym_template_argument_list, - [367786] = 2, + [328172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14713), 2, - anon_sym_COMMA, + ACTIONS(6413), 1, anon_sym_LBRACE, - [367794] = 3, + STATE(2879), 1, + sym_field_declaration_list, + [328182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3053), 1, - anon_sym_LBRACE, - STATE(4605), 1, - sym_initializer_list, - [367804] = 2, + ACTIONS(13804), 1, + sym_semgrep_metavar, + ACTIONS(13886), 1, + anon_sym_RPAREN, + [328192] = 3, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(13888), 1, + aux_sym_preproc_include_token2, + ACTIONS(13890), 1, + sym_preproc_arg, + [328202] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14715), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [367812] = 3, + ACTIONS(6721), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [328210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14651), 1, + ACTIONS(13790), 1, anon_sym_LPAREN2, - STATE(10565), 1, + STATE(9957), 1, sym_parenthesized_expression, - [367822] = 3, + [328220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, + ACTIONS(13862), 1, + anon_sym_LT, + STATE(2794), 1, + sym_template_argument_list, + [328230] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10418), 1, anon_sym_LPAREN2, - STATE(9630), 1, + STATE(8823), 1, sym_parameter_list, - [367832] = 3, + [328240] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6116), 1, - anon_sym_LBRACE, - STATE(2520), 1, - sym_field_declaration_list, - [367842] = 3, + ACTIONS(6761), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [328248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14627), 1, - sym_identifier, - STATE(9319), 1, - sym_attribute, - [367852] = 3, + ACTIONS(10269), 1, + anon_sym_LBRACE, + STATE(3521), 1, + sym_requirement_seq, + [328258] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, anon_sym_LBRACE, - STATE(9130), 1, + STATE(8385), 1, + sym_compound_statement, + [328268] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(860), 1, + anon_sym_LBRACE, + STATE(532), 1, sym_compound_statement, - [367862] = 3, + [328278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14717), 1, + ACTIONS(12528), 1, sym_identifier, - STATE(2793), 1, + STATE(3044), 1, sym_template_type, - [367872] = 3, + [328288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14651), 1, + ACTIONS(13790), 1, anon_sym_LPAREN2, - STATE(9393), 1, + STATE(8861), 1, sym_parenthesized_expression, - [367882] = 3, + [328298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14511), 1, - sym_semgrep_metavar, - ACTIONS(14719), 1, - anon_sym_RPAREN, - [367892] = 3, + ACTIONS(13810), 1, + anon_sym_LT, + STATE(2862), 1, + sym_template_argument_list, + [328308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(421), 1, - anon_sym_LBRACE, - STATE(453), 1, - sym_compound_statement, - [367902] = 2, + ACTIONS(12425), 1, + anon_sym_COLON_COLON, + ACTIONS(13892), 1, + anon_sym_SEMI, + [328318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11473), 2, + ACTIONS(11097), 1, + anon_sym_RBRACE, + ACTIONS(13786), 1, anon_sym_COMMA, - anon_sym_SEMI, - [367910] = 2, + [328328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14070), 2, + ACTIONS(11085), 1, + anon_sym_RBRACE, + ACTIONS(13786), 1, anon_sym_COMMA, - anon_sym_SEMI, - [367918] = 3, + [328338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14651), 1, - anon_sym_LPAREN2, - STATE(9569), 1, - sym_parenthesized_expression, - [367928] = 3, + ACTIONS(55), 1, + anon_sym_LBRACE, + STATE(591), 1, + sym_compound_statement, + [328348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12978), 1, - anon_sym_COLON_COLON, - ACTIONS(14721), 1, - anon_sym_SEMI, - [367938] = 3, + ACTIONS(13786), 1, + anon_sym_COMMA, + ACTIONS(13894), 1, + anon_sym_RBRACE, + [328358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10269), 1, + ACTIONS(6894), 1, anon_sym_LBRACE, - STATE(6789), 1, + STATE(2983), 1, sym_field_declaration_list, - [367948] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11894), 1, - anon_sym_RBRACE, - ACTIONS(14523), 1, - anon_sym_COMMA, - [367958] = 3, + [328368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(860), 1, + ACTIONS(6894), 1, anon_sym_LBRACE, - STATE(661), 1, - sym_compound_statement, - [367968] = 3, + STATE(2984), 1, + sym_field_declaration_list, + [328378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13668), 1, - anon_sym_LPAREN2, - STATE(220), 1, - sym_condition_clause, - [367978] = 2, + ACTIONS(13804), 1, + sym_semgrep_metavar, + ACTIONS(13896), 1, + anon_sym_RPAREN, + [328388] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9210), 2, - anon_sym_COMMA, + ACTIONS(8969), 2, + anon_sym_RPAREN, anon_sym_SEMI, - [367986] = 2, + [328396] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14099), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [367994] = 3, + ACTIONS(6413), 1, + anon_sym_LBRACE, + STATE(2888), 1, + sym_field_declaration_list, + [328406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14627), 1, - sym_identifier, - STATE(8632), 1, - sym_attribute, - [368004] = 3, + ACTIONS(6413), 1, + anon_sym_LBRACE, + STATE(2836), 1, + sym_field_declaration_list, + [328416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13668), 1, - anon_sym_LPAREN2, - STATE(9399), 1, - sym_condition_clause, - [368014] = 3, + ACTIONS(13804), 1, + sym_semgrep_metavar, + ACTIONS(13898), 1, + anon_sym_RPAREN, + [328426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7971), 1, + ACTIONS(9670), 1, anon_sym_LBRACE, - STATE(4807), 1, + STATE(6334), 1, sym_field_declaration_list, - [368024] = 3, + [328436] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13668), 1, + ACTIONS(7816), 1, + anon_sym_LT, + STATE(1833), 1, + sym_template_argument_list, + [328446] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13900), 1, + anon_sym_LT, + STATE(3439), 1, + sym_template_argument_list, + [328456] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13820), 1, + sym_identifier, + STATE(8628), 1, + sym_attribute, + [328466] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12960), 1, anon_sym_LPAREN2, - STATE(248), 1, + STATE(9092), 1, sym_condition_clause, - [368034] = 3, + [328476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7971), 1, - anon_sym_LBRACE, - STATE(4808), 1, - sym_field_declaration_list, - [368044] = 3, + ACTIONS(12960), 1, + anon_sym_LPAREN2, + STATE(235), 1, + sym_condition_clause, + [328486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(309), 1, - anon_sym_LBRACE, - STATE(313), 1, - sym_compound_statement, - [368054] = 3, + ACTIONS(13902), 1, + sym_identifier, + ACTIONS(13904), 1, + anon_sym_LPAREN2, + [328496] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, anon_sym_LBRACE, - STATE(8867), 1, + STATE(8523), 1, sym_compound_statement, - [368064] = 3, - ACTIONS(3), 1, + [328506] = 3, + ACTIONS(10479), 1, sym_comment, - ACTIONS(6132), 1, - anon_sym_LBRACE, - STATE(2682), 1, - sym_field_declaration_list, - [368074] = 3, + ACTIONS(13906), 1, + aux_sym_preproc_include_token2, + ACTIONS(13908), 1, + sym_preproc_arg, + [328516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14511), 1, - sym_semgrep_metavar, - ACTIONS(14723), 1, - anon_sym_RPAREN, - [368084] = 3, + ACTIONS(13910), 1, + sym_identifier, + STATE(3044), 1, + sym_template_type, + [328526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2007), 1, + ACTIONS(1126), 1, anon_sym_LBRACE, - STATE(996), 1, + STATE(694), 1, sym_compound_statement, - [368094] = 3, + [328536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10157), 1, + ACTIONS(13786), 1, + anon_sym_COMMA, + ACTIONS(13912), 1, + anon_sym_RBRACE, + [328546] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8299), 1, anon_sym_LPAREN2, - STATE(9770), 1, + STATE(9442), 1, sym_argument_list, - [368104] = 3, + [328556] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, anon_sym_LBRACE, - STATE(8257), 1, + STATE(7868), 1, sym_compound_statement, - [368114] = 3, + [328566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13668), 1, + ACTIONS(12960), 1, anon_sym_LPAREN2, - STATE(203), 1, + STATE(239), 1, sym_condition_clause, - [368124] = 2, + [328576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13871), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [368132] = 3, + ACTIONS(6413), 1, + anon_sym_LBRACE, + STATE(2843), 1, + sym_field_declaration_list, + [328586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6116), 1, + ACTIONS(6910), 1, anon_sym_LBRACE, - STATE(2507), 1, + STATE(3279), 1, sym_field_declaration_list, - [368142] = 3, + [328596] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14725), 1, - anon_sym_default, - ACTIONS(14727), 1, - anon_sym_delete, - [368152] = 3, + ACTIONS(13914), 1, + sym_identifier, + STATE(2852), 1, + sym_template_type, + [328606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11876), 1, - anon_sym_LBRACE, - STATE(2196), 1, - sym_compound_statement, - [368162] = 3, + ACTIONS(13916), 1, + anon_sym_default, + ACTIONS(13918), 1, + anon_sym_delete, + [328616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8311), 1, - anon_sym_LBRACE, - STATE(4691), 1, - sym_field_declaration_list, - [368172] = 3, + ACTIONS(13804), 1, + sym_semgrep_metavar, + ACTIONS(13920), 1, + anon_sym_RPAREN, + [328626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6718), 1, + ACTIONS(1126), 1, anon_sym_LBRACE, - STATE(3533), 1, - sym_field_declaration_list, - [368182] = 3, + STATE(658), 1, + sym_compound_statement, + [328636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14651), 1, + ACTIONS(13790), 1, anon_sym_LPAREN2, - STATE(10489), 1, + STATE(9937), 1, sym_parenthesized_expression, - [368192] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - STATE(9355), 1, - sym_parameter_list, - [368202] = 2, + [328646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14729), 2, + ACTIONS(13786), 1, anon_sym_COMMA, - anon_sym_GT2, - [368210] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, - anon_sym_LBRACE, - STATE(8917), 1, - sym_compound_statement, - [368220] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13668), 1, - anon_sym_LPAREN2, - STATE(221), 1, - sym_condition_clause, - [368230] = 3, + ACTIONS(13922), 1, + anon_sym_RBRACE, + [328656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14651), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - STATE(9423), 1, - sym_parenthesized_expression, - [368240] = 3, + STATE(8667), 1, + sym_parameter_list, + [328666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14523), 1, - anon_sym_COMMA, - ACTIONS(14731), 1, - anon_sym_RBRACE, - [368250] = 3, + ACTIONS(309), 1, + anon_sym_LBRACE, + STATE(302), 1, + sym_compound_statement, + [328676] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7971), 1, + ACTIONS(6894), 1, anon_sym_LBRACE, - STATE(4814), 1, + STATE(2987), 1, sym_field_declaration_list, - [368260] = 3, + [328686] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, anon_sym_LBRACE, - STATE(632), 1, + STATE(8252), 1, sym_compound_statement, - [368270] = 3, + [328696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10681), 1, - anon_sym_LBRACE, - STATE(4579), 1, - sym_requirement_seq, - [368280] = 3, + ACTIONS(13790), 1, + anon_sym_LPAREN2, + STATE(8719), 1, + sym_parenthesized_expression, + [328706] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(860), 1, - anon_sym_LBRACE, - STATE(588), 1, - sym_compound_statement, - [368290] = 3, + ACTIONS(13924), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [328714] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13926), 1, + sym_identifier, + STATE(2680), 1, + sym_template_type, + [328724] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1002), 1, + ACTIONS(11440), 1, anon_sym_LBRACE, - STATE(779), 1, + STATE(2214), 1, sym_compound_statement, - [368300] = 3, + [328734] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, + ACTIONS(12335), 2, + anon_sym_LPAREN2, anon_sym_LBRACE, - STATE(357), 1, - sym_declaration_list, - [368310] = 3, + [328742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14627), 1, + ACTIONS(13820), 1, sym_identifier, - STATE(8586), 1, + STATE(8183), 1, sym_attribute, - [368320] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(421), 1, - anon_sym_LBRACE, - STATE(462), 1, - sym_compound_statement, - [368330] = 3, + [328752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13668), 1, + ACTIONS(12960), 1, anon_sym_LPAREN2, - STATE(9159), 1, + STATE(9040), 1, sym_condition_clause, - [368340] = 3, + [328762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13668), 1, + ACTIONS(12960), 1, anon_sym_LPAREN2, STATE(245), 1, sym_condition_clause, - [368350] = 3, + [328772] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6590), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [328780] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, anon_sym_LBRACE, - STATE(8623), 1, + STATE(8199), 1, sym_compound_statement, - [368360] = 3, - ACTIONS(10969), 1, + [328790] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(14733), 1, - aux_sym_preproc_include_token2, - ACTIONS(14735), 1, - sym_preproc_arg, - [368370] = 3, + ACTIONS(13421), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [328798] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13928), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [328806] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5480), 1, + anon_sym_LBRACE, + STATE(866), 1, + sym_declaration_list, + [328816] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10046), 1, + ACTIONS(9395), 1, anon_sym_LT, - STATE(2518), 1, + STATE(5731), 1, sym_template_argument_list, - [368380] = 3, + [328826] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1126), 1, + anon_sym_LBRACE, + STATE(571), 1, + sym_compound_statement, + [328836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10157), 1, + ACTIONS(8299), 1, anon_sym_LPAREN2, - STATE(9754), 1, + STATE(9422), 1, sym_argument_list, - [368390] = 3, + [328846] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, anon_sym_LBRACE, - STATE(8401), 1, + STATE(8007), 1, sym_compound_statement, - [368400] = 3, + [328856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13668), 1, + ACTIONS(12960), 1, anon_sym_LPAREN2, - STATE(199), 1, + STATE(248), 1, sym_condition_clause, - [368410] = 3, + [328866] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12922), 1, - anon_sym_LBRACE, - STATE(6987), 1, - sym_requirement_seq, - [368420] = 3, + ACTIONS(6594), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [328874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10619), 1, + ACTIONS(9726), 1, anon_sym_LBRACE, - STATE(3259), 1, - sym_requirement_seq, - [368430] = 3, + STATE(5875), 1, + sym_field_declaration_list, + [328884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14737), 1, + ACTIONS(13930), 1, anon_sym_default, - ACTIONS(14739), 1, + ACTIONS(13932), 1, anon_sym_delete, - [368440] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11749), 1, - anon_sym_RBRACE, - ACTIONS(14523), 1, - anon_sym_COMMA, - [368450] = 3, + [328894] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3778), 1, + ACTIONS(2371), 1, anon_sym_LBRACE, - STATE(5406), 1, + STATE(3346), 1, sym_initializer_list, - [368460] = 3, + [328904] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13934), 1, + sym_identifier, + STATE(2943), 1, + sym_template_type, + [328914] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13804), 1, + sym_semgrep_metavar, + ACTIONS(13936), 1, + anon_sym_RPAREN, + [328924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14651), 1, + ACTIONS(13790), 1, anon_sym_LPAREN2, - STATE(10219), 1, + STATE(9653), 1, sym_parenthesized_expression, - [368470] = 3, + [328934] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - STATE(9306), 1, + STATE(8700), 1, sym_parameter_list, - [368480] = 3, + [328944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, + ACTIONS(55), 1, anon_sym_LBRACE, - STATE(5212), 1, - sym_initializer_list, - [368490] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9926), 1, - anon_sym_LT, - STATE(6189), 1, - sym_template_argument_list, - [368500] = 3, + STATE(8264), 1, + sym_compound_statement, + [328954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14651), 1, + ACTIONS(13790), 1, anon_sym_LPAREN2, - STATE(9317), 1, + STATE(8710), 1, sym_parenthesized_expression, - [368510] = 3, + [328964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6132), 1, - anon_sym_LBRACE, - STATE(2711), 1, - sym_field_declaration_list, - [368520] = 3, + ACTIONS(13938), 1, + sym_identifier, + STATE(2197), 1, + sym_template_type, + [328974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6132), 1, - anon_sym_LBRACE, - STATE(2722), 1, - sym_field_declaration_list, - [368530] = 3, + ACTIONS(13820), 1, + sym_identifier, + STATE(8300), 1, + sym_attribute, + [328984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10438), 1, + ACTIONS(12960), 1, + anon_sym_LPAREN2, + STATE(8743), 1, + sym_condition_clause, + [328994] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7517), 1, anon_sym_LT, - STATE(6617), 1, + STATE(8227), 1, sym_template_argument_list, - [368540] = 3, + [329004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(309), 1, + ACTIONS(55), 1, anon_sym_LBRACE, - STATE(361), 1, + STATE(8309), 1, sym_compound_statement, - [368550] = 3, + [329014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14511), 1, + ACTIONS(13804), 1, sym_semgrep_metavar, - ACTIONS(14741), 1, + ACTIONS(13940), 1, anon_sym_RPAREN, - [368560] = 3, + [329024] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(309), 1, + ACTIONS(9207), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [329032] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, anon_sym_LBRACE, - STATE(316), 1, + STATE(601), 1, sym_compound_statement, - [368570] = 3, + [329042] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14627), 1, - sym_identifier, - STATE(8853), 1, - sym_attribute, - [368580] = 3, + ACTIONS(12494), 1, + anon_sym_LBRACE, + STATE(6952), 1, + sym_requirement_seq, + [329052] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13668), 1, - anon_sym_LPAREN2, - STATE(9375), 1, - sym_condition_clause, - [368590] = 3, + ACTIONS(6609), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [329060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14511), 1, - sym_semgrep_metavar, - ACTIONS(14743), 1, - anon_sym_RPAREN, - [368600] = 3, + ACTIONS(8299), 1, + anon_sym_LPAREN2, + STATE(9673), 1, + sym_argument_list, + [329070] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, anon_sym_LBRACE, - STATE(8871), 1, + STATE(8049), 1, sym_compound_statement, - [368610] = 3, + [329080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14745), 1, - sym_identifier, - STATE(2772), 1, - sym_template_type, - [368620] = 3, + ACTIONS(7550), 1, + anon_sym_LBRACE, + STATE(4496), 1, + sym_field_declaration_list, + [329090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14511), 1, + ACTIONS(13804), 1, sym_semgrep_metavar, - ACTIONS(14747), 1, + ACTIONS(13942), 1, anon_sym_RPAREN, - [368630] = 3, + [329100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10157), 1, - anon_sym_LPAREN2, - STATE(9817), 1, - sym_argument_list, - [368640] = 3, + ACTIONS(13944), 1, + anon_sym_default, + ACTIONS(13946), 1, + anon_sym_delete, + [329110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_LBRACE, - STATE(8449), 1, - sym_compound_statement, - [368650] = 3, + ACTIONS(13948), 1, + anon_sym_LT, + STATE(4126), 1, + sym_template_argument_list, + [329120] = 3, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(13950), 1, + aux_sym_preproc_include_token2, + ACTIONS(13952), 1, + sym_preproc_arg, + [329130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14749), 1, - anon_sym_default, - ACTIONS(14751), 1, - anon_sym_delete, - [368660] = 3, + ACTIONS(13804), 1, + sym_semgrep_metavar, + ACTIONS(13954), 1, + anon_sym_RPAREN, + [329140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14651), 1, + ACTIONS(13790), 1, anon_sym_LPAREN2, - STATE(9958), 1, + STATE(9124), 1, sym_parenthesized_expression, - [368670] = 3, + [329150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - STATE(9464), 1, + STATE(8829), 1, sym_parameter_list, - [368680] = 3, + [329160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14569), 1, + ACTIONS(13956), 1, anon_sym_LT, - STATE(3363), 1, + STATE(3062), 1, sym_template_argument_list, - [368690] = 2, + [329170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12860), 2, - anon_sym_LPAREN2, - anon_sym_LBRACE, - [368698] = 3, + ACTIONS(9722), 1, + anon_sym_LT, + STATE(2593), 1, + sym_template_argument_list, + [329180] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, anon_sym_LBRACE, - STATE(8956), 1, + STATE(8377), 1, sym_compound_statement, - [368708] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14753), 1, - sym_identifier, - STATE(6613), 1, - sym_template_type, - [368718] = 3, + [329190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14651), 1, + ACTIONS(13790), 1, anon_sym_LPAREN2, - STATE(9476), 1, + STATE(8840), 1, sym_parenthesized_expression, - [368728] = 3, + [329200] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8457), 1, - anon_sym_LBRACE, - STATE(5013), 1, - sym_field_declaration_list, - [368738] = 3, + ACTIONS(6613), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [329208] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14511), 1, - sym_semgrep_metavar, - ACTIONS(14755), 1, - anon_sym_RPAREN, - [368748] = 3, + ACTIONS(2989), 1, + anon_sym_LBRACE, + STATE(4156), 1, + sym_initializer_list, + [329218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14627), 1, + ACTIONS(13820), 1, sym_identifier, - STATE(9011), 1, + STATE(8436), 1, sym_attribute, - [368758] = 3, + [329228] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2289), 1, + anon_sym_LBRACE, + STATE(2576), 1, + sym_initializer_list, + [329238] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, anon_sym_LBRACE, - STATE(9025), 1, + STATE(8448), 1, sym_compound_statement, - [368768] = 3, + [329248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10157), 1, + ACTIONS(8299), 1, anon_sym_LPAREN2, - STATE(10255), 1, + STATE(9390), 1, sym_argument_list, - [368778] = 3, + [329258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11800), 1, - anon_sym_RBRACE, - ACTIONS(14523), 1, - anon_sym_COMMA, - [368788] = 3, + ACTIONS(13958), 1, + sym_identifier, + STATE(2966), 1, + sym_template_type, + [329268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1002), 1, - anon_sym_LBRACE, - STATE(802), 1, - sym_compound_statement, - [368798] = 3, + ACTIONS(13960), 1, + anon_sym_default, + ACTIONS(13962), 1, + anon_sym_delete, + [329278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10699), 1, - anon_sym_LBRACE, - STATE(3455), 1, - sym_requirement_seq, - [368808] = 3, + ACTIONS(11123), 1, + anon_sym_RBRACE, + ACTIONS(13786), 1, + anon_sym_COMMA, + [329288] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14757), 1, - anon_sym_default, - ACTIONS(14759), 1, - anon_sym_delete, - [368818] = 2, + ACTIONS(13964), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [329296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14761), 2, - anon_sym_COMMA, - anon_sym_GT2, - [368826] = 3, + ACTIONS(13804), 1, + sym_semgrep_metavar, + ACTIONS(13966), 1, + anon_sym_RPAREN, + [329306] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10418), 1, + anon_sym_LPAREN2, + STATE(8962), 1, + sym_parameter_list, + [329316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14763), 1, + ACTIONS(13832), 1, anon_sym_LT, - STATE(3241), 1, + STATE(4232), 1, sym_template_argument_list, - [368836] = 3, + [329326] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, - anon_sym_LPAREN2, - STATE(9591), 1, - sym_parameter_list, - [368846] = 3, + ACTIONS(6636), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [329334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1002), 1, - anon_sym_LBRACE, - STATE(592), 1, - sym_compound_statement, - [368856] = 3, + ACTIONS(13790), 1, + anon_sym_LPAREN2, + STATE(8967), 1, + sym_parenthesized_expression, + [329344] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, anon_sym_LBRACE, - STATE(9099), 1, + STATE(8501), 1, sym_compound_statement, - [368866] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14523), 1, - anon_sym_COMMA, - ACTIONS(14765), 1, - anon_sym_RBRACE, - [368876] = 3, + [329354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14651), 1, + ACTIONS(13790), 1, anon_sym_LPAREN2, - STATE(9597), 1, + STATE(8966), 1, sym_parenthesized_expression, - [368886] = 3, - ACTIONS(10969), 1, + [329364] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(14767), 1, - aux_sym_preproc_include_token2, - ACTIONS(14769), 1, - sym_preproc_arg, - [368896] = 3, + ACTIONS(13968), 1, + anon_sym_LT, + STATE(4393), 1, + sym_template_argument_list, + [329374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6132), 1, + ACTIONS(9726), 1, anon_sym_LBRACE, - STATE(2723), 1, + STATE(5893), 1, sym_field_declaration_list, - [368906] = 3, + [329384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13668), 1, - anon_sym_LPAREN2, - STATE(252), 1, - sym_condition_clause, - [368916] = 3, + ACTIONS(10291), 1, + anon_sym_LBRACE, + STATE(4423), 1, + sym_requirement_seq, + [329394] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9726), 1, + anon_sym_LBRACE, + STATE(5895), 1, + sym_field_declaration_list, + [329404] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13804), 1, + sym_semgrep_metavar, + ACTIONS(13970), 1, + anon_sym_RPAREN, + [329414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14627), 1, + ACTIONS(13820), 1, sym_identifier, - STATE(9136), 1, + STATE(8530), 1, sym_attribute, - [368926] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11782), 1, - anon_sym_RBRACE, - ACTIONS(14523), 1, - anon_sym_COMMA, - [368936] = 3, + [329424] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, anon_sym_LBRACE, - STATE(9054), 1, + STATE(8538), 1, sym_compound_statement, - [368946] = 3, + [329434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10157), 1, + ACTIONS(8299), 1, anon_sym_LPAREN2, - STATE(10622), 1, + STATE(9644), 1, sym_argument_list, - [368956] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8457), 1, - anon_sym_LBRACE, - STATE(5006), 1, - sym_field_declaration_list, - [368966] = 3, + [329444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11792), 1, + ACTIONS(860), 1, anon_sym_LBRACE, - STATE(2238), 1, + STATE(622), 1, sym_compound_statement, - [368976] = 3, + [329454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14771), 1, + ACTIONS(13972), 1, anon_sym_default, - ACTIONS(14773), 1, + ACTIONS(13974), 1, anon_sym_delete, - [368986] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8457), 1, - anon_sym_LBRACE, - STATE(5091), 1, - sym_field_declaration_list, - [368996] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5564), 1, - anon_sym_LBRACE, - STATE(760), 1, - sym_declaration_list, - [369006] = 3, + [329464] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6718), 1, + ACTIONS(8314), 1, anon_sym_LBRACE, - STATE(3538), 1, + STATE(4939), 1, sym_field_declaration_list, - [369016] = 3, + [329474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14511), 1, - sym_semgrep_metavar, - ACTIONS(14775), 1, - anon_sym_RPAREN, - [369026] = 3, + ACTIONS(13976), 1, + sym_identifier, + STATE(2566), 1, + sym_template_type, + [329484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - STATE(9202), 1, + STATE(9037), 1, sym_parameter_list, - [369036] = 3, + [329494] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6718), 1, + ACTIONS(13442), 2, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(3539), 1, - sym_field_declaration_list, - [369046] = 3, + [329502] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11113), 1, + anon_sym_RBRACE, + ACTIONS(13786), 1, + anon_sym_COMMA, + [329512] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, anon_sym_LBRACE, - STATE(8879), 1, + STATE(8596), 1, sym_compound_statement, - [369056] = 3, + [329522] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14511), 1, - sym_semgrep_metavar, - ACTIONS(14777), 1, + ACTIONS(9199), 2, + anon_sym_COMMA, anon_sym_RPAREN, - [369066] = 3, - ACTIONS(10969), 1, + [329530] = 3, + ACTIONS(10479), 1, sym_comment, - ACTIONS(14779), 1, + ACTIONS(13978), 1, aux_sym_preproc_include_token2, - ACTIONS(14781), 1, + ACTIONS(13980), 1, sym_preproc_arg, - [369076] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7973), 1, - anon_sym_LT, - STATE(4683), 1, - sym_template_argument_list, - [369086] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1002), 1, - anon_sym_LBRACE, - STATE(600), 1, - sym_compound_statement, - [369096] = 3, + [329540] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14627), 1, + ACTIONS(13820), 1, sym_identifier, - STATE(8775), 1, + STATE(8634), 1, sym_attribute, - [369106] = 3, + [329550] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, anon_sym_LBRACE, - STATE(8655), 1, + STATE(8643), 1, sym_compound_statement, - [369116] = 3, + [329560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14523), 1, - anon_sym_COMMA, - ACTIONS(14783), 1, - anon_sym_RBRACE, - [369126] = 3, + ACTIONS(13900), 1, + anon_sym_LT, + STATE(2690), 1, + sym_template_argument_list, + [329570] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10329), 1, + anon_sym_LBRACE, + STATE(4203), 1, + sym_requirement_seq, + [329580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10157), 1, + ACTIONS(8299), 1, anon_sym_LPAREN2, - STATE(10355), 1, + STATE(10061), 1, sym_argument_list, - [369136] = 3, + [329590] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8457), 1, + ACTIONS(11480), 1, anon_sym_LBRACE, - STATE(5068), 1, - sym_field_declaration_list, - [369146] = 3, + STATE(1961), 1, + sym_compound_statement, + [329600] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13804), 1, + sym_semgrep_metavar, + ACTIONS(13982), 1, + anon_sym_RPAREN, + [329610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14785), 1, + ACTIONS(13984), 1, anon_sym_default, - ACTIONS(14787), 1, + ACTIONS(13986), 1, anon_sym_delete, - [369156] = 3, + [329620] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, anon_sym_LBRACE, - STATE(8855), 1, + STATE(630), 1, sym_compound_statement, - [369166] = 3, + [329630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - STATE(9251), 1, + STATE(8934), 1, sym_parameter_list, - [369176] = 3, - ACTIONS(3), 1, + [329640] = 3, + ACTIONS(10479), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_LBRACE, - STATE(9053), 1, - sym_compound_statement, - [369186] = 3, + ACTIONS(13988), 1, + aux_sym_preproc_include_token2, + ACTIONS(13990), 1, + sym_preproc_arg, + [329650] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5564), 1, - anon_sym_LBRACE, - STATE(701), 1, - sym_declaration_list, - [369196] = 3, + ACTIONS(13010), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [329658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7783), 1, + ACTIONS(55), 1, anon_sym_LBRACE, - STATE(4828), 1, - sym_field_declaration_list, - [369206] = 3, + STATE(8502), 1, + sym_compound_statement, + [329668] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10655), 1, - anon_sym_LBRACE, - STATE(4094), 1, - sym_requirement_seq, - [369216] = 3, + ACTIONS(13992), 1, + anon_sym_LT, + STATE(2048), 1, + sym_template_argument_list, + [329678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5560), 1, - anon_sym_LBRACE, - STATE(850), 1, - sym_declaration_list, - [369226] = 3, + ACTIONS(12425), 1, + anon_sym_COLON_COLON, + ACTIONS(13994), 1, + anon_sym_SEMI, + [329688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14627), 1, + ACTIONS(13820), 1, sym_identifier, - STATE(8663), 1, + STATE(8180), 1, sym_attribute, - [369236] = 3, + [329698] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, anon_sym_LBRACE, - STATE(8705), 1, + STATE(8554), 1, sym_compound_statement, - [369246] = 3, + [329708] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6810), 1, + anon_sym_LBRACE, + STATE(3201), 1, + sym_field_declaration_list, + [329718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10157), 1, + ACTIONS(8299), 1, anon_sym_LPAREN2, - STATE(9871), 1, + STATE(9559), 1, sym_argument_list, - [369256] = 3, + [329728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14789), 1, - sym_identifier, - STATE(2980), 1, - sym_template_type, - [369266] = 3, + ACTIONS(11012), 1, + anon_sym_RBRACE, + ACTIONS(13786), 1, + anon_sym_COMMA, + [329738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10808), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - STATE(9541), 1, + STATE(8698), 1, sym_parameter_list, - [369276] = 3, + [329748] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, + ACTIONS(11509), 1, anon_sym_LBRACE, - STATE(373), 1, - sym_declaration_list, - [369286] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14791), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [369294] = 3, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(14793), 1, - aux_sym_preproc_include_token2, - ACTIONS(14795), 1, - sym_preproc_arg, - [369304] = 3, + STATE(2033), 1, + sym_compound_statement, + [329758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14627), 1, - sym_identifier, - STATE(9078), 1, - sym_attribute, - [369314] = 3, + ACTIONS(13786), 1, + anon_sym_COMMA, + ACTIONS(13996), 1, + anon_sym_RBRACE, + [329768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5568), 1, + ACTIONS(8314), 1, anon_sym_LBRACE, - STATE(544), 1, - sym_declaration_list, - [369324] = 3, + STATE(4930), 1, + sym_field_declaration_list, + [329778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10157), 1, + ACTIONS(8299), 1, anon_sym_LPAREN2, - STATE(10011), 1, + STATE(9260), 1, sym_argument_list, - [369334] = 3, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(14797), 1, - aux_sym_preproc_include_token2, - ACTIONS(14799), 1, - sym_preproc_arg, - [369344] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11932), 1, - anon_sym_RBRACE, - ACTIONS(14523), 1, - anon_sym_COMMA, - [369354] = 3, + [329788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8314), 1, anon_sym_LBRACE, - STATE(2712), 1, + STATE(4931), 1, sym_field_declaration_list, - [369364] = 2, + [329798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14318), 2, - anon_sym_COMMA, - anon_sym_GT2, - [369372] = 3, + ACTIONS(13804), 1, + sym_semgrep_metavar, + ACTIONS(13998), 1, + anon_sym_RPAREN, + [329808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14627), 1, - sym_identifier, - STATE(8680), 1, - sym_attribute, - [369382] = 3, + ACTIONS(9726), 1, + anon_sym_LBRACE, + STATE(5904), 1, + sym_field_declaration_list, + [329818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_LBRACE, - STATE(661), 1, - sym_compound_statement, - [369392] = 3, + ACTIONS(7517), 1, + anon_sym_LT, + STATE(1833), 1, + sym_template_argument_list, + [329828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10157), 1, + ACTIONS(8299), 1, anon_sym_LPAREN2, STATE(9785), 1, sym_argument_list, - [369402] = 3, + [329838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(860), 1, - anon_sym_LBRACE, - STATE(789), 1, - sym_compound_statement, - [369412] = 3, + ACTIONS(8299), 1, + anon_sym_LPAREN2, + STATE(9938), 1, + sym_argument_list, + [329848] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6803), 1, - anon_sym_LBRACE, - STATE(3780), 1, - sym_field_declaration_list, - [369422] = 3, + ACTIONS(13194), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [329856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14627), 1, - sym_identifier, - STATE(8868), 1, - sym_attribute, - [369432] = 3, + ACTIONS(8299), 1, + anon_sym_LPAREN2, + STATE(9729), 1, + sym_argument_list, + [329866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10157), 1, + ACTIONS(8299), 1, anon_sym_LPAREN2, - STATE(9671), 1, + STATE(9171), 1, sym_argument_list, - [369442] = 3, + [329876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3007), 1, - anon_sym_LBRACE, - STATE(4407), 1, - sym_initializer_list, - [369452] = 3, + ACTIONS(13786), 1, + anon_sym_COMMA, + ACTIONS(14000), 1, + anon_sym_RBRACE, + [329886] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10269), 1, + ACTIONS(14002), 2, + anon_sym_COMMA, + anon_sym_GT2, + [329894] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7550), 1, anon_sym_LBRACE, - STATE(6781), 1, + STATE(4442), 1, sym_field_declaration_list, - [369462] = 3, + [329904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10639), 1, - anon_sym_LBRACE, - STATE(3730), 1, - sym_requirement_seq, - [369472] = 3, + ACTIONS(13804), 1, + sym_semgrep_metavar, + ACTIONS(14004), 1, + anon_sym_RPAREN, + [329914] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10269), 1, + ACTIONS(11480), 1, anon_sym_LBRACE, - STATE(6800), 1, - sym_field_declaration_list, - [369482] = 3, + STATE(1963), 1, + sym_compound_statement, + [329924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14627), 1, - sym_identifier, - STATE(8986), 1, - sym_attribute, - [369492] = 3, + ACTIONS(14006), 1, + anon_sym_default, + ACTIONS(14008), 1, + anon_sym_delete, + [329934] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14523), 1, + ACTIONS(13548), 2, anon_sym_COMMA, - ACTIONS(14801), 1, - anon_sym_RBRACE, - [369502] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10157), 1, - anon_sym_LPAREN2, - STATE(9943), 1, - sym_argument_list, - [369512] = 3, + anon_sym_RBRACK_RBRACK, + [329942] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14627), 1, - sym_identifier, - STATE(9055), 1, - sym_attribute, - [369522] = 3, + ACTIONS(9011), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [329950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6718), 1, + ACTIONS(55), 1, anon_sym_LBRACE, - STATE(3606), 1, - sym_field_declaration_list, - [369532] = 3, + STATE(7999), 1, + sym_compound_statement, + [329960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10157), 1, + ACTIONS(8299), 1, anon_sym_LPAREN2, - STATE(10167), 1, + STATE(9986), 1, sym_argument_list, - [369542] = 3, + [329970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14803), 1, - sym_identifier, - STATE(2552), 1, - sym_template_type, - [369552] = 3, + ACTIONS(2003), 1, + anon_sym_LBRACE, + STATE(984), 1, + sym_compound_statement, + [329980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14805), 1, - anon_sym_LT, - STATE(2818), 1, - sym_template_argument_list, - [369562] = 3, + ACTIONS(12942), 1, + anon_sym_LBRACE, + STATE(6757), 1, + sym_requirement_seq, + [329990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10157), 1, - anon_sym_LPAREN2, - STATE(10332), 1, - sym_argument_list, - [369572] = 3, + ACTIONS(13786), 1, + anon_sym_COMMA, + ACTIONS(14010), 1, + anon_sym_RBRACE, + [330000] = 3, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(14012), 1, + aux_sym_preproc_include_token2, + ACTIONS(14014), 1, + sym_preproc_arg, + [330010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10157), 1, - anon_sym_LPAREN2, - STATE(10502), 1, - sym_argument_list, - [369582] = 3, + ACTIONS(8314), 1, + anon_sym_LBRACE, + STATE(4921), 1, + sym_field_declaration_list, + [330020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10157), 1, - anon_sym_LPAREN2, - STATE(10679), 1, - sym_argument_list, - [369592] = 3, + ACTIONS(2003), 1, + anon_sym_LBRACE, + STATE(954), 1, + sym_compound_statement, + [330030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10157), 1, - anon_sym_LPAREN2, - STATE(10215), 1, - sym_argument_list, - [369602] = 3, + ACTIONS(13804), 1, + sym_semgrep_metavar, + ACTIONS(14016), 1, + anon_sym_RPAREN, + [330040] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10157), 1, - anon_sym_LPAREN2, - STATE(9936), 1, - sym_argument_list, - [369612] = 3, + ACTIONS(14018), 2, + anon_sym_COMMA, + anon_sym_GT2, + [330048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14511), 1, - sym_semgrep_metavar, - ACTIONS(14807), 1, - anon_sym_RPAREN, - [369622] = 3, + ACTIONS(4238), 1, + anon_sym_LBRACE, + STATE(5638), 1, + sym_initializer_list, + [330058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, + ACTIONS(2003), 1, anon_sym_LBRACE, - STATE(8413), 1, + STATE(959), 1, sym_compound_statement, - [369632] = 3, + [330068] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7588), 1, + ACTIONS(860), 1, + anon_sym_LBRACE, + STATE(630), 1, + sym_compound_statement, + [330078] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13790), 1, + anon_sym_LPAREN2, + STATE(9264), 1, + sym_parenthesized_expression, + [330088] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9732), 1, anon_sym_LT, - STATE(8907), 1, + STATE(2925), 1, sym_template_argument_list, - [369642] = 3, + [330098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14511), 1, - sym_semgrep_metavar, - ACTIONS(14809), 1, - anon_sym_RPAREN, - [369652] = 3, + ACTIONS(3899), 1, + anon_sym_LBRACE, + STATE(4384), 1, + sym_initializer_list, + [330108] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11814), 1, - anon_sym_RBRACE, - ACTIONS(14523), 1, + ACTIONS(14020), 2, anon_sym_COMMA, - [369662] = 3, + anon_sym_RBRACK_RBRACK, + [330116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14651), 1, - anon_sym_LPAREN2, - STATE(9759), 1, - sym_parenthesized_expression, - [369672] = 3, + ACTIONS(11440), 1, + anon_sym_LBRACE, + STATE(2325), 1, + sym_compound_statement, + [330126] = 3, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(14022), 1, + aux_sym_preproc_include_token2, + ACTIONS(14024), 1, + sym_preproc_arg, + [330136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8627), 1, + ACTIONS(6367), 1, anon_sym_LBRACE, - STATE(5469), 1, + STATE(2650), 1, sym_field_declaration_list, - [369682] = 3, + [330146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(2931), 1, anon_sym_LBRACE, - STATE(2667), 1, - sym_field_declaration_list, - [369692] = 3, + STATE(4027), 1, + sym_initializer_list, + [330156] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LBRACE, - STATE(2677), 1, - sym_field_declaration_list, - [369702] = 3, + ACTIONS(14026), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [330164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6790), 1, - anon_sym_LBRACE, - STATE(3118), 1, - sym_field_declaration_list, - [369712] = 3, + ACTIONS(14028), 1, + sym_identifier, + STATE(2047), 1, + sym_template_type, + [330174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14811), 1, + ACTIONS(14030), 1, sym_identifier, - ACTIONS(14813), 1, + STATE(3061), 1, + sym_template_type, + [330184] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12960), 1, anon_sym_LPAREN2, - [369722] = 3, + STATE(198), 1, + sym_condition_clause, + [330194] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13804), 1, + sym_semgrep_metavar, + ACTIONS(14032), 1, + anon_sym_RPAREN, + [330204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5560), 1, + ACTIONS(7550), 1, anon_sym_LBRACE, - STATE(831), 1, - sym_declaration_list, - [369732] = 3, + STATE(4493), 1, + sym_field_declaration_list, + [330214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11753), 1, + ACTIONS(860), 1, anon_sym_LBRACE, - STATE(2255), 1, + STATE(709), 1, sym_compound_statement, - [369742] = 2, + [330224] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14815), 2, - anon_sym_COMMA, - anon_sym_GT2, - [369750] = 3, + ACTIONS(860), 1, + anon_sym_LBRACE, + STATE(661), 1, + sym_compound_statement, + [330234] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14523), 1, + ACTIONS(13770), 2, anon_sym_COMMA, - ACTIONS(14817), 1, - anon_sym_RBRACE, - [369760] = 3, + anon_sym_RPAREN, + [330242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(6934), 1, anon_sym_LBRACE, - STATE(2714), 1, + STATE(3393), 1, sym_field_declaration_list, - [369770] = 3, - ACTIONS(3), 1, + [330252] = 3, + ACTIONS(10479), 1, sym_comment, - ACTIONS(10689), 1, - anon_sym_LBRACE, - STATE(4512), 1, - sym_requirement_seq, - [369780] = 3, + ACTIONS(14034), 1, + aux_sym_preproc_include_token2, + ACTIONS(14036), 1, + sym_preproc_arg, + [330262] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11770), 1, - anon_sym_RBRACE, - ACTIONS(14523), 1, + ACTIONS(14038), 2, anon_sym_COMMA, - [369790] = 3, + anon_sym_GT2, + [330270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14523), 1, - anon_sym_COMMA, - ACTIONS(14819), 1, - anon_sym_RBRACE, - [369800] = 2, + ACTIONS(13804), 1, + sym_semgrep_metavar, + ACTIONS(14040), 1, + anon_sym_RPAREN, + [330280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14821), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [369808] = 3, - ACTIONS(10969), 1, + ACTIONS(10245), 1, + anon_sym_LBRACE, + STATE(4035), 1, + sym_requirement_seq, + [330290] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(14823), 1, - aux_sym_preproc_include_token2, - ACTIONS(14825), 1, - sym_preproc_arg, - [369818] = 3, + ACTIONS(14042), 1, + sym_identifier, + STATE(5729), 1, + sym_template_type, + [330300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11850), 1, + ACTIONS(11509), 1, anon_sym_LBRACE, - STATE(2030), 1, + STATE(2107), 1, sym_compound_statement, - [369828] = 3, - ACTIONS(3), 1, + [330310] = 3, + ACTIONS(10479), 1, sym_comment, - ACTIONS(14827), 1, - anon_sym_LT, - STATE(4160), 1, - sym_template_argument_list, - [369838] = 3, + ACTIONS(14044), 1, + aux_sym_preproc_include_token2, + ACTIONS(14046), 1, + sym_preproc_arg, + [330320] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14511), 1, + ACTIONS(13804), 1, sym_semgrep_metavar, - ACTIONS(14829), 1, + ACTIONS(14048), 1, anon_sym_RPAREN, - [369848] = 2, - ACTIONS(3), 1, + [330330] = 3, + ACTIONS(10479), 1, sym_comment, - ACTIONS(9665), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [369856] = 3, - ACTIONS(10969), 1, + ACTIONS(14050), 1, + aux_sym_preproc_include_token2, + ACTIONS(14052), 1, + sym_preproc_arg, + [330340] = 3, + ACTIONS(10479), 1, sym_comment, - ACTIONS(14831), 1, + ACTIONS(14054), 1, aux_sym_preproc_include_token2, - ACTIONS(14833), 1, + ACTIONS(14056), 1, sym_preproc_arg, - [369866] = 3, + [330350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14827), 1, + ACTIONS(7816), 1, anon_sym_LT, - STATE(2879), 1, + STATE(4119), 1, sym_template_argument_list, - [369876] = 3, + [330360] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6779), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [330368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14835), 1, + ACTIONS(14058), 1, sym_identifier, - STATE(2924), 1, + STATE(2197), 1, sym_template_type, - [369886] = 3, + [330378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11818), 1, - anon_sym_RBRACE, - ACTIONS(14523), 1, - anon_sym_COMMA, - [369896] = 3, + ACTIONS(5482), 1, + anon_sym_LBRACE, + STATE(553), 1, + sym_declaration_list, + [330388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11876), 1, + ACTIONS(309), 1, anon_sym_LBRACE, - STATE(2210), 1, + STATE(313), 1, sym_compound_statement, - [369906] = 2, + [330398] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7354), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [369914] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10562), 1, - anon_sym_LT, - STATE(6753), 1, - sym_template_argument_list, - [369924] = 3, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(14837), 1, - aux_sym_preproc_include_token2, - ACTIONS(14839), 1, - sym_preproc_arg, - [369934] = 3, + ACTIONS(9670), 1, + anon_sym_LBRACE, + STATE(5805), 1, + sym_field_declaration_list, + [330408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6790), 1, + ACTIONS(55), 1, anon_sym_LBRACE, - STATE(3149), 1, - sym_field_declaration_list, - [369944] = 3, + STATE(8003), 1, + sym_compound_statement, + [330418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6790), 1, + ACTIONS(9670), 1, anon_sym_LBRACE, - STATE(3088), 1, + STATE(5810), 1, sym_field_declaration_list, - [369954] = 3, + [330428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6151), 1, + ACTIONS(9670), 1, anon_sym_LBRACE, - STATE(2936), 1, + STATE(5811), 1, sym_field_declaration_list, - [369964] = 3, + [330438] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14511), 1, + ACTIONS(13804), 1, sym_semgrep_metavar, - ACTIONS(14841), 1, + ACTIONS(14060), 1, anon_sym_RPAREN, - [369974] = 3, + [330448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(309), 1, + ACTIONS(9670), 1, anon_sym_LBRACE, - STATE(384), 1, - sym_compound_statement, - [369984] = 3, + STATE(5813), 1, + sym_field_declaration_list, + [330458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14629), 1, - anon_sym_LT, - STATE(3031), 1, - sym_template_argument_list, - [369994] = 2, + ACTIONS(14062), 1, + sym_identifier, + STATE(2047), 1, + sym_template_type, + [330468] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14843), 2, + ACTIONS(13786), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [370002] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(860), 1, - anon_sym_LBRACE, - STATE(670), 1, - sym_compound_statement, - [370012] = 3, + ACTIONS(14064), 1, + anon_sym_RBRACE, + [330478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11824), 1, + ACTIONS(11196), 1, anon_sym_RBRACE, - ACTIONS(14523), 1, + ACTIONS(13786), 1, anon_sym_COMMA, - [370022] = 3, + [330488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6151), 1, + ACTIONS(6934), 1, anon_sym_LBRACE, - STATE(2944), 1, + STATE(3429), 1, sym_field_declaration_list, - [370032] = 3, + [330498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6151), 1, + ACTIONS(6934), 1, anon_sym_LBRACE, - STATE(2945), 1, + STATE(3430), 1, sym_field_declaration_list, - [370042] = 3, + [330508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14591), 1, - anon_sym_LT, - STATE(3626), 1, - sym_template_argument_list, - [370052] = 2, + ACTIONS(13804), 1, + sym_semgrep_metavar, + ACTIONS(14066), 1, + anon_sym_RPAREN, + [330518] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9152), 2, - anon_sym_COMMA, + ACTIONS(11067), 1, anon_sym_RBRACE, - [370060] = 3, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(14845), 1, - aux_sym_preproc_include_token2, - ACTIONS(14847), 1, - sym_preproc_arg, - [370070] = 2, + ACTIONS(13786), 1, + anon_sym_COMMA, + [330528] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14849), 2, - anon_sym_COMMA, + ACTIONS(7593), 1, anon_sym_LBRACE, - [370078] = 3, + STATE(4447), 1, + sym_field_declaration_list, + [330538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11850), 1, - anon_sym_LBRACE, - STATE(2052), 1, - sym_compound_statement, - [370088] = 3, + ACTIONS(13804), 1, + sym_semgrep_metavar, + ACTIONS(14068), 1, + anon_sym_RPAREN, + [330548] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13309), 1, - anon_sym_LBRACE, - STATE(2556), 1, - sym_requirement_seq, - [370098] = 3, + ACTIONS(7517), 1, + anon_sym_LT, + STATE(2525), 1, + sym_template_argument_list, + [330558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14523), 1, - anon_sym_COMMA, - ACTIONS(14851), 1, - anon_sym_RBRACE, - [370108] = 3, + ACTIONS(13804), 1, + sym_semgrep_metavar, + ACTIONS(14070), 1, + anon_sym_RPAREN, + [330568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6151), 1, + ACTIONS(55), 1, anon_sym_LBRACE, - STATE(2947), 1, - sym_field_declaration_list, - [370118] = 2, + STATE(8550), 1, + sym_compound_statement, + [330578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14064), 2, - anon_sym_COMMA, + ACTIONS(13820), 1, + sym_identifier, + STATE(8512), 1, + sym_attribute, + [330588] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6810), 1, anon_sym_LBRACE, - [370126] = 2, + STATE(3173), 1, + sym_field_declaration_list, + [330598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14348), 2, - anon_sym_COMMA, + ACTIONS(6810), 1, anon_sym_LBRACE, - [370134] = 3, + STATE(3180), 1, + sym_field_declaration_list, + [330608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2007), 1, + ACTIONS(11509), 1, anon_sym_LBRACE, - STATE(988), 1, + STATE(2064), 1, sym_compound_statement, - [370144] = 3, + [330618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10647), 1, + ACTIONS(10305), 1, anon_sym_LBRACE, - STATE(6173), 1, + STATE(4838), 1, sym_requirement_seq, - [370154] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14523), 1, - anon_sym_COMMA, - ACTIONS(14853), 1, - anon_sym_RBRACE, - [370164] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9203), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [370172] = 3, + [330628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14855), 1, + ACTIONS(12960), 1, anon_sym_LPAREN2, - ACTIONS(14857), 1, - sym_raw_string_delimiter, - [370182] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6790), 1, - anon_sym_LBRACE, - STATE(3154), 1, - sym_field_declaration_list, - [370192] = 3, + STATE(8983), 1, + sym_condition_clause, + [330638] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14511), 1, + ACTIONS(13804), 1, sym_semgrep_metavar, - ACTIONS(14859), 1, + ACTIONS(14072), 1, anon_sym_RPAREN, - [370202] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14861), 1, - sym_identifier, - STATE(6186), 1, - sym_template_type, - [370212] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2007), 1, - anon_sym_LBRACE, - STATE(981), 1, - sym_compound_statement, - [370222] = 3, + [330648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14511), 1, - sym_semgrep_metavar, - ACTIONS(14863), 1, - anon_sym_RPAREN, - [370232] = 3, + ACTIONS(12960), 1, + anon_sym_LPAREN2, + STATE(209), 1, + sym_condition_clause, + [330658] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, anon_sym_LBRACE, - STATE(619), 1, + STATE(831), 1, sym_compound_statement, - [370242] = 3, + [330668] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11792), 1, + ACTIONS(11456), 1, anon_sym_LBRACE, - STATE(2313), 1, + STATE(2280), 1, sym_compound_statement, - [370252] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4061), 1, - anon_sym_LBRACE, - STATE(6138), 1, - sym_initializer_list, - [370262] = 3, + [330678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14523), 1, + ACTIONS(13786), 1, anon_sym_COMMA, - ACTIONS(14865), 1, + ACTIONS(14074), 1, anon_sym_RBRACE, - [370272] = 3, + [330688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2007), 1, + ACTIONS(55), 1, anon_sym_LBRACE, - STATE(997), 1, + STATE(8622), 1, sym_compound_statement, - [370282] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14653), 1, - anon_sym_LT, - STATE(2920), 1, - sym_template_argument_list, - [370292] = 2, + [330698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14394), 2, - anon_sym_SEMI, + ACTIONS(6934), 1, anon_sym_LBRACE, - [370300] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14511), 1, - sym_semgrep_metavar, - ACTIONS(14867), 1, - anon_sym_RPAREN, - [370310] = 3, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(14869), 1, - aux_sym_preproc_include_token2, - ACTIONS(14871), 1, - sym_preproc_arg, - [370320] = 3, + STATE(3451), 1, + sym_field_declaration_list, + [330708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6116), 1, + ACTIONS(9670), 1, anon_sym_LBRACE, - STATE(2474), 1, + STATE(6314), 1, sym_field_declaration_list, - [370330] = 3, + [330718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14873), 1, - anon_sym_LPAREN2, - ACTIONS(14875), 1, - sym_raw_string_delimiter, - [370340] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14877), 1, - anon_sym_LPAREN2, - ACTIONS(14879), 1, - sym_raw_string_delimiter, - [370350] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14511), 1, - sym_semgrep_metavar, - ACTIONS(14881), 1, - anon_sym_RPAREN, - [370360] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14547), 1, + ACTIONS(14076), 1, anon_sym_LT, - STATE(2553), 1, + STATE(2785), 1, sym_template_argument_list, - [370370] = 3, + [330728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14883), 1, - anon_sym_LPAREN2, - ACTIONS(14885), 1, - sym_raw_string_delimiter, - [370380] = 3, + ACTIONS(4250), 1, + anon_sym_LBRACE, + STATE(5725), 1, + sym_initializer_list, + [330738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10269), 1, + ACTIONS(5700), 1, anon_sym_LBRACE, - STATE(6787), 1, + STATE(2169), 1, sym_field_declaration_list, - [370390] = 3, + [330748] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14887), 1, - anon_sym_LPAREN2, - ACTIONS(14889), 1, - sym_raw_string_delimiter, - [370400] = 3, + ACTIONS(5488), 1, + anon_sym_LBRACE, + STATE(722), 1, + sym_declaration_list, + [330758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11753), 1, + ACTIONS(11480), 1, anon_sym_LBRACE, - STATE(2316), 1, + STATE(1900), 1, sym_compound_statement, - [370410] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14891), 1, - anon_sym_LPAREN2, - ACTIONS(14893), 1, - sym_raw_string_delimiter, - [370420] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13510), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [370428] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14523), 1, - anon_sym_COMMA, - ACTIONS(14895), 1, - anon_sym_RBRACE, - [370438] = 3, + [330768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14897), 1, + ACTIONS(12960), 1, anon_sym_LPAREN2, - ACTIONS(14899), 1, - sym_raw_string_delimiter, - [370448] = 3, + STATE(220), 1, + sym_condition_clause, + [330778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14901), 1, - anon_sym_LPAREN2, - ACTIONS(14903), 1, - sym_raw_string_delimiter, - [370458] = 3, + ACTIONS(14078), 1, + sym_identifier, + STATE(3044), 1, + sym_template_type, + [330788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14905), 1, - anon_sym_LPAREN2, - ACTIONS(14907), 1, - sym_raw_string_delimiter, - [370468] = 3, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(14909), 1, - aux_sym_preproc_include_token2, - ACTIONS(14911), 1, - sym_preproc_arg, - [370478] = 3, + ACTIONS(1126), 1, + anon_sym_LBRACE, + STATE(568), 1, + sym_compound_statement, + [330798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14913), 1, + ACTIONS(14080), 1, anon_sym_LPAREN2, - ACTIONS(14915), 1, + ACTIONS(14082), 1, sym_raw_string_delimiter, - [370488] = 3, + [330808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14917), 1, - anon_sym_LPAREN2, - ACTIONS(14919), 1, - sym_raw_string_delimiter, - [370498] = 3, + ACTIONS(309), 1, + anon_sym_LBRACE, + STATE(330), 1, + sym_compound_statement, + [330818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14921), 1, + ACTIONS(12960), 1, anon_sym_LPAREN2, - ACTIONS(14923), 1, - sym_raw_string_delimiter, - [370508] = 3, + STATE(237), 1, + sym_condition_clause, + [330828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14925), 1, + ACTIONS(8299), 1, anon_sym_LPAREN2, - ACTIONS(14927), 1, - sym_raw_string_delimiter, - [370518] = 3, + STATE(9575), 1, + sym_argument_list, + [330838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14929), 1, - anon_sym_LPAREN2, - ACTIONS(14931), 1, - sym_raw_string_delimiter, - [370528] = 3, + ACTIONS(6695), 1, + anon_sym_LBRACE, + STATE(3005), 1, + sym_field_declaration_list, + [330848] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14933), 1, - anon_sym_LPAREN2, - ACTIONS(14935), 1, - sym_raw_string_delimiter, - [370538] = 3, + ACTIONS(55), 1, + anon_sym_LBRACE, + STATE(7906), 1, + sym_compound_statement, + [330858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14937), 1, + ACTIONS(10418), 1, anon_sym_LPAREN2, - ACTIONS(14939), 1, - sym_raw_string_delimiter, - [370548] = 3, + STATE(8771), 1, + sym_parameter_list, + [330868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14941), 1, - anon_sym_LPAREN2, - ACTIONS(14943), 1, - sym_raw_string_delimiter, - [370558] = 3, + ACTIONS(11166), 1, + anon_sym_RBRACE, + ACTIONS(13786), 1, + anon_sym_COMMA, + [330878] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14945), 1, + ACTIONS(14084), 1, anon_sym_LPAREN2, - ACTIONS(14947), 1, + ACTIONS(14086), 1, sym_raw_string_delimiter, - [370568] = 3, + [330888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14949), 1, - anon_sym_LPAREN2, - ACTIONS(14951), 1, - sym_raw_string_delimiter, - [370578] = 3, + ACTIONS(7550), 1, + anon_sym_LBRACE, + STATE(4475), 1, + sym_field_declaration_list, + [330898] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14953), 1, + ACTIONS(12960), 1, anon_sym_LPAREN2, - ACTIONS(14955), 1, - sym_raw_string_delimiter, - [370588] = 3, + STATE(213), 1, + sym_condition_clause, + [330908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14957), 1, - anon_sym_LPAREN2, - ACTIONS(14959), 1, - sym_raw_string_delimiter, - [370598] = 3, + ACTIONS(13992), 1, + anon_sym_LT, + STATE(2525), 1, + sym_template_argument_list, + [330918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(309), 1, + ACTIONS(7550), 1, anon_sym_LBRACE, - STATE(308), 1, - sym_compound_statement, - [370608] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12978), 1, - anon_sym_COLON_COLON, - ACTIONS(14961), 1, - anon_sym_SEMI, - [370618] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14511), 1, - sym_semgrep_metavar, - ACTIONS(14963), 1, - anon_sym_RPAREN, - [370628] = 3, + STATE(4478), 1, + sym_field_declaration_list, + [330928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14965), 1, - sym_identifier, - STATE(2503), 1, - sym_template_type, - [370638] = 3, + ACTIONS(7550), 1, + anon_sym_LBRACE, + STATE(4479), 1, + sym_field_declaration_list, + [330938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14967), 1, - sym_identifier, - STATE(4969), 1, - sym_template_type, - [370648] = 3, + ACTIONS(7550), 1, + anon_sym_LBRACE, + STATE(4481), 1, + sym_field_declaration_list, + [330948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13058), 1, + ACTIONS(14088), 1, sym_identifier, - STATE(4669), 1, + STATE(2793), 1, sym_template_type, - [370658] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2949), 1, - anon_sym_LBRACE, - STATE(4365), 1, - sym_initializer_list, - [370668] = 3, + [330958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7783), 1, + ACTIONS(7550), 1, anon_sym_LBRACE, - STATE(4815), 1, + STATE(4490), 1, sym_field_declaration_list, - [370678] = 3, + [330968] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14969), 1, + ACTIONS(14090), 1, sym_identifier, - STATE(6755), 1, - sym_template_type, - [370688] = 3, + ACTIONS(14092), 1, + anon_sym_RPAREN, + [330978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14511), 1, + ACTIONS(13804), 1, sym_semgrep_metavar, - ACTIONS(14971), 1, + ACTIONS(14094), 1, anon_sym_RPAREN, - [370698] = 3, + [330988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14511), 1, + ACTIONS(13804), 1, sym_semgrep_metavar, - ACTIONS(14973), 1, + ACTIONS(14096), 1, anon_sym_RPAREN, - [370708] = 3, + [330998] = 3, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(14098), 1, + aux_sym_preproc_include_token2, + ACTIONS(14100), 1, + sym_preproc_arg, + [331008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14975), 1, - anon_sym_default, - ACTIONS(14977), 1, - anon_sym_delete, - [370718] = 3, + ACTIONS(5486), 1, + anon_sym_LBRACE, + STATE(697), 1, + sym_declaration_list, + [331018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, + ACTIONS(7593), 1, anon_sym_LBRACE, - STATE(8815), 1, - sym_compound_statement, - [370728] = 2, + STATE(4463), 1, + sym_field_declaration_list, + [331028] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14979), 1, - anon_sym_SEMI, - [370735] = 2, + ACTIONS(13741), 2, + anon_sym_COMMA, + anon_sym_GT2, + [331036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1518), 1, - ts_builtin_sym_end, - [370742] = 2, + ACTIONS(14102), 1, + anon_sym_default, + ACTIONS(14104), 1, + anon_sym_delete, + [331046] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14981), 1, + ACTIONS(7593), 1, anon_sym_LBRACE, - [370749] = 2, + STATE(4464), 1, + sym_field_declaration_list, + [331056] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14983), 1, - anon_sym_RPAREN, - [370756] = 2, + ACTIONS(10996), 1, + anon_sym_RBRACE, + ACTIONS(13786), 1, + anon_sym_COMMA, + [331066] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9236), 1, - anon_sym_RBRACE, - [370763] = 2, + ACTIONS(3964), 1, + anon_sym_LBRACE, + STATE(5101), 1, + sym_initializer_list, + [331076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14985), 1, - anon_sym_COLON, - [370770] = 2, + ACTIONS(55), 1, + anon_sym_LBRACE, + STATE(889), 1, + sym_compound_statement, + [331086] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12479), 1, - anon_sym_SEMI, - [370777] = 2, + ACTIONS(13804), 1, + sym_semgrep_metavar, + ACTIONS(14106), 1, + anon_sym_RPAREN, + [331096] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14987), 1, + ACTIONS(14108), 1, sym_identifier, - [370784] = 2, + STATE(2821), 1, + sym_template_type, + [331106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14989), 1, - anon_sym_SEMI, - [370791] = 2, + ACTIONS(13804), 1, + sym_semgrep_metavar, + ACTIONS(14110), 1, + anon_sym_RPAREN, + [331116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14991), 1, - anon_sym_DQUOTE, - [370798] = 2, + ACTIONS(8943), 1, + anon_sym_RPAREN, + ACTIONS(8945), 1, + anon_sym_SEMI, + [331126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14993), 1, - anon_sym_DQUOTE, - [370805] = 2, - ACTIONS(3), 1, + ACTIONS(12960), 1, + anon_sym_LPAREN2, + STATE(8706), 1, + sym_condition_clause, + [331136] = 3, + ACTIONS(10479), 1, sym_comment, - ACTIONS(14995), 1, - anon_sym_SEMI, - [370812] = 2, + ACTIONS(14112), 1, + aux_sym_preproc_include_token2, + ACTIONS(14114), 1, + sym_preproc_arg, + [331146] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14997), 1, - anon_sym_SEMI, - [370819] = 2, + ACTIONS(13003), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [331154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14999), 1, - aux_sym_preproc_if_token2, - [370826] = 2, + ACTIONS(5488), 1, + anon_sym_LBRACE, + STATE(750), 1, + sym_declaration_list, + [331164] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15001), 1, - anon_sym_RPAREN, - [370833] = 2, + ACTIONS(5058), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [331172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15003), 1, - anon_sym_RPAREN, - [370840] = 2, + ACTIONS(14116), 1, + anon_sym_LPAREN2, + ACTIONS(14118), 1, + sym_raw_string_delimiter, + [331182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15005), 1, - anon_sym_SEMI, - [370847] = 2, - ACTIONS(10969), 1, + ACTIONS(10261), 1, + anon_sym_LBRACE, + STATE(4978), 1, + sym_requirement_seq, + [331192] = 3, + ACTIONS(10479), 1, sym_comment, - ACTIONS(11161), 1, + ACTIONS(14120), 1, aux_sym_preproc_include_token2, - [370854] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9559), 1, - anon_sym_RPAREN, - [370861] = 2, + ACTIONS(14122), 1, + sym_preproc_arg, + [331202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15007), 1, - anon_sym_SEMI, - [370868] = 2, + ACTIONS(6910), 1, + anon_sym_LBRACE, + STATE(3317), 1, + sym_field_declaration_list, + [331212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15009), 1, + ACTIONS(14124), 1, anon_sym_LPAREN2, - [370875] = 2, + ACTIONS(14126), 1, + sym_raw_string_delimiter, + [331222] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15011), 1, - anon_sym_DQUOTE, - [370882] = 2, + ACTIONS(5480), 1, + anon_sym_LBRACE, + STATE(882), 1, + sym_declaration_list, + [331232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9661), 1, - anon_sym_SEMI, - [370889] = 2, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(15013), 1, - aux_sym_preproc_include_token2, - [370896] = 2, + ACTIONS(14128), 1, + anon_sym_LPAREN2, + ACTIONS(14130), 1, + sym_raw_string_delimiter, + [331242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11856), 1, + ACTIONS(11154), 1, anon_sym_RBRACE, - [370903] = 2, + ACTIONS(13786), 1, + anon_sym_COMMA, + [331252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15015), 1, - sym_identifier, - [370910] = 2, + ACTIONS(6695), 1, + anon_sym_LBRACE, + STATE(3021), 1, + sym_field_declaration_list, + [331262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15017), 1, - sym_identifier, - [370917] = 2, + ACTIONS(14132), 1, + anon_sym_LPAREN2, + ACTIONS(14134), 1, + sym_raw_string_delimiter, + [331272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15019), 1, - sym_identifier, - [370924] = 2, + ACTIONS(14136), 1, + anon_sym_LPAREN2, + ACTIONS(14138), 1, + sym_raw_string_delimiter, + [331282] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15021), 1, - anon_sym_RPAREN, - [370931] = 2, + ACTIONS(12759), 1, + anon_sym_LBRACE, + STATE(1856), 1, + sym_requirement_seq, + [331292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15023), 1, - anon_sym_DQUOTE, - [370938] = 2, + ACTIONS(14140), 1, + anon_sym_LPAREN2, + ACTIONS(14142), 1, + sym_raw_string_delimiter, + [331302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15025), 1, - anon_sym_DQUOTE, - [370945] = 2, + ACTIONS(421), 1, + anon_sym_LBRACE, + STATE(472), 1, + sym_compound_statement, + [331312] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15027), 1, - anon_sym_RPAREN, - [370952] = 2, + ACTIONS(14144), 1, + anon_sym_LPAREN2, + ACTIONS(14146), 1, + sym_raw_string_delimiter, + [331322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15029), 1, - anon_sym_RPAREN, - [370959] = 2, + ACTIONS(11456), 1, + anon_sym_LBRACE, + STATE(2441), 1, + sym_compound_statement, + [331332] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15031), 1, + ACTIONS(13820), 1, sym_identifier, - [370966] = 2, + STATE(8953), 1, + sym_attribute, + [331342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15033), 1, - anon_sym_SEMI, - [370973] = 2, + ACTIONS(14148), 1, + anon_sym_LPAREN2, + ACTIONS(14150), 1, + sym_raw_string_delimiter, + [331352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15035), 1, - anon_sym_RPAREN, - [370980] = 2, + ACTIONS(14152), 1, + anon_sym_LPAREN2, + ACTIONS(14154), 1, + sym_raw_string_delimiter, + [331362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15037), 1, - anon_sym_SEMI, - [370987] = 2, + ACTIONS(14156), 1, + anon_sym_LPAREN2, + ACTIONS(14158), 1, + sym_raw_string_delimiter, + [331372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15039), 1, + ACTIONS(14160), 1, anon_sym_LPAREN2, - [370994] = 2, + ACTIONS(14162), 1, + sym_raw_string_delimiter, + [331382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15041), 1, - aux_sym_preproc_if_token2, - [371001] = 2, + ACTIONS(14164), 1, + anon_sym_LPAREN2, + ACTIONS(14166), 1, + sym_raw_string_delimiter, + [331392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9561), 1, - anon_sym_SEMI, - [371008] = 2, + ACTIONS(14168), 1, + anon_sym_LPAREN2, + ACTIONS(14170), 1, + sym_raw_string_delimiter, + [331402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15043), 1, - anon_sym_RPAREN, - [371015] = 2, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(15045), 1, - aux_sym_preproc_include_token2, - [371022] = 2, + ACTIONS(14172), 1, + anon_sym_LPAREN2, + ACTIONS(14174), 1, + sym_raw_string_delimiter, + [331412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15047), 1, - anon_sym_COLON, - [371029] = 2, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(15049), 1, - aux_sym_preproc_include_token2, - [371036] = 2, + ACTIONS(14176), 1, + anon_sym_LPAREN2, + ACTIONS(14178), 1, + sym_raw_string_delimiter, + [331422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12449), 1, - anon_sym_SEMI, - [371043] = 2, + ACTIONS(14180), 1, + anon_sym_LPAREN2, + ACTIONS(14182), 1, + sym_raw_string_delimiter, + [331432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15051), 1, - anon_sym_RPAREN, - [371050] = 2, + ACTIONS(14184), 1, + anon_sym_LPAREN2, + ACTIONS(14186), 1, + sym_raw_string_delimiter, + [331442] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15053), 1, - anon_sym_COLON, - [371057] = 2, + ACTIONS(14188), 1, + anon_sym_LPAREN2, + ACTIONS(14190), 1, + sym_raw_string_delimiter, + [331452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15055), 1, - anon_sym_SEMI, - [371064] = 2, + ACTIONS(14192), 1, + anon_sym_LPAREN2, + ACTIONS(14194), 1, + sym_raw_string_delimiter, + [331462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7569), 1, - anon_sym_RPAREN, - [371071] = 2, + ACTIONS(14196), 1, + anon_sym_LPAREN2, + ACTIONS(14198), 1, + sym_raw_string_delimiter, + [331472] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15057), 1, - aux_sym_preproc_if_token2, - [371078] = 2, - ACTIONS(3), 1, + ACTIONS(14200), 1, + anon_sym_LPAREN2, + ACTIONS(14202), 1, + sym_raw_string_delimiter, + [331482] = 3, + ACTIONS(10479), 1, sym_comment, - ACTIONS(15059), 1, - anon_sym_RPAREN, - [371085] = 2, + ACTIONS(14204), 1, + aux_sym_preproc_include_token2, + ACTIONS(14206), 1, + sym_preproc_arg, + [331492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15061), 1, - aux_sym_preproc_if_token2, - [371092] = 2, + ACTIONS(9779), 1, + anon_sym_LT, + STATE(4738), 1, + sym_template_argument_list, + [331502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15063), 1, - anon_sym_RPAREN, - [371099] = 2, + ACTIONS(421), 1, + anon_sym_LBRACE, + STATE(504), 1, + sym_compound_statement, + [331512] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14617), 1, - anon_sym_RBRACE, - [371106] = 2, + ACTIONS(12960), 1, + anon_sym_LPAREN2, + STATE(200), 1, + sym_condition_clause, + [331522] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15065), 1, - anon_sym_SEMI, - [371113] = 2, - ACTIONS(5677), 1, - aux_sym_preproc_include_token2, - ACTIONS(10969), 1, - sym_comment, - [371120] = 2, - ACTIONS(3), 1, + ACTIONS(14208), 1, + anon_sym_RPAREN, + [331529] = 2, + ACTIONS(10479), 1, sym_comment, - ACTIONS(15067), 1, - anon_sym_DQUOTE, - [371127] = 2, + ACTIONS(14210), 1, + aux_sym_preproc_include_token2, + [331536] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12508), 1, - anon_sym_SEMI, - [371134] = 2, + ACTIONS(14212), 1, + anon_sym_LBRACE, + [331543] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11838), 1, - anon_sym_RPAREN, - [371141] = 2, + ACTIONS(13922), 1, + anon_sym_RBRACE, + [331550] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15069), 1, - sym_identifier, - [371148] = 2, + ACTIONS(14214), 1, + anon_sym_SEMI, + [331557] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15071), 1, - sym_raw_string_delimiter, - [371155] = 2, + ACTIONS(14216), 1, + sym_auto, + [331564] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9555), 1, + ACTIONS(14218), 1, anon_sym_RPAREN, - [371162] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15073), 1, - aux_sym_preproc_if_token2, - [371169] = 2, + [331571] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15075), 1, + ACTIONS(14220), 1, anon_sym_RPAREN, - [371176] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9575), 1, - anon_sym_SEMI, - [371183] = 2, + [331578] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15077), 1, + ACTIONS(14222), 1, anon_sym_SEMI, - [371190] = 2, + [331585] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13954), 1, - anon_sym_COLON_COLON, - [371197] = 2, + ACTIONS(14224), 1, + aux_sym_preproc_if_token2, + [331592] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9590), 1, + ACTIONS(14226), 1, anon_sym_SEMI, - [371204] = 2, + [331599] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11894), 1, - anon_sym_RBRACE, - [371211] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9600), 1, - anon_sym_SEMI, - [371218] = 2, + ACTIONS(14228), 1, + anon_sym_DQUOTE, + [331606] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15079), 1, + ACTIONS(14230), 1, anon_sym_RPAREN, - [371225] = 2, + [331613] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15081), 1, - anon_sym_RBRACE, - [371232] = 2, + ACTIONS(14232), 1, + aux_sym_preproc_if_token2, + [331620] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15083), 1, + ACTIONS(14234), 1, aux_sym_preproc_if_token2, - [371239] = 2, + [331627] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14721), 1, + ACTIONS(14236), 1, anon_sym_SEMI, - [371246] = 2, + [331634] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15085), 1, - sym_identifier, - [371253] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15087), 1, - sym_identifier, - [371260] = 2, + ACTIONS(13784), 1, + anon_sym_SEMI, + [331641] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15089), 1, + ACTIONS(14238), 1, sym_identifier, - [371267] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15091), 1, - anon_sym_COMMA, - [371274] = 2, + [331648] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15093), 1, - anon_sym_SEMI, - [371281] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9557), 1, + ACTIONS(14240), 1, anon_sym_RPAREN, - [371288] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15095), 1, - anon_sym_SEMI, - [371295] = 2, + [331655] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15097), 1, + ACTIONS(14242), 1, anon_sym_RPAREN, - [371302] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9280), 1, - anon_sym_RBRACE, - [371309] = 2, + [331662] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15099), 1, + ACTIONS(14244), 1, anon_sym_RPAREN, - [371316] = 2, + [331669] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15101), 1, + ACTIONS(14246), 1, anon_sym_RPAREN, - [371323] = 2, + [331676] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15103), 1, - sym_identifier, - [371330] = 2, + ACTIONS(14248), 1, + anon_sym_SEMI, + [331683] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15105), 1, - anon_sym_LPAREN2, - [371337] = 2, + ACTIONS(11426), 1, + anon_sym_RPAREN, + [331690] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15107), 1, - anon_sym_RPAREN, - [371344] = 2, + ACTIONS(14250), 1, + anon_sym_SEMI, + [331697] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15109), 1, - anon_sym_DQUOTE, - [371351] = 2, + ACTIONS(14252), 1, + sym_raw_string_delimiter, + [331704] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15111), 1, - anon_sym_DQUOTE, - [371358] = 2, + ACTIONS(14254), 1, + anon_sym_SEMI, + [331711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15113), 1, + ACTIONS(14256), 1, aux_sym_preproc_if_token2, - [371365] = 2, + [331718] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9653), 1, - anon_sym_SEMI, - [371372] = 2, + ACTIONS(14258), 1, + anon_sym_DQUOTE, + [331725] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13026), 1, + ACTIONS(14260), 1, anon_sym_SEMI, - [371379] = 2, + [331732] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15115), 1, - sym_identifier, - [371386] = 2, + ACTIONS(14262), 1, + anon_sym_SEMI, + [331739] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15117), 1, - anon_sym_STAR, - [371393] = 2, + ACTIONS(14264), 1, + anon_sym_SEMI, + [331746] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15119), 1, - anon_sym_RPAREN, - [371400] = 2, + ACTIONS(14266), 1, + anon_sym_SEMI, + [331753] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15121), 1, - sym_identifier, - [371407] = 2, + ACTIONS(14268), 1, + aux_sym_preproc_if_token2, + [331760] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15123), 1, + ACTIONS(14270), 1, anon_sym_DQUOTE, - [371414] = 2, + [331767] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15125), 1, - anon_sym_RPAREN, - [371421] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9663), 1, - anon_sym_SEMI, - [371428] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15127), 1, - aux_sym_preproc_if_token2, - [371435] = 2, + ACTIONS(14272), 1, + sym_identifier, + [331774] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15129), 1, + ACTIONS(14274), 1, sym_identifier, - [371442] = 2, + [331781] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15131), 1, + ACTIONS(14276), 1, sym_identifier, - [371449] = 2, + [331788] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9914), 1, + ACTIONS(14278), 1, anon_sym_RPAREN, - [371456] = 2, + [331795] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15133), 1, + ACTIONS(14280), 1, aux_sym_preproc_if_token2, - [371463] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9592), 1, - anon_sym_SEMI, - [371470] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15135), 1, - anon_sym_SEMI, - [371477] = 2, + [331802] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15137), 1, - anon_sym_SEMI, - [371484] = 2, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(11131), 1, - aux_sym_preproc_include_token2, - [371491] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15139), 1, + ACTIONS(14282), 1, anon_sym_RPAREN, - [371498] = 2, + [331809] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11780), 1, - anon_sym_RBRACE, - [371505] = 2, + ACTIONS(14284), 1, + aux_sym_preproc_if_token2, + [331816] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15141), 1, - anon_sym_RPAREN, - [371512] = 2, + ACTIONS(14286), 1, + aux_sym_preproc_if_token2, + [331823] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15143), 1, - anon_sym_DQUOTE, - [371519] = 2, + ACTIONS(11192), 1, + anon_sym_RBRACE, + [331830] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15145), 1, + ACTIONS(14288), 1, anon_sym_LPAREN2, - [371526] = 2, + [331837] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15147), 1, - sym_identifier, - [371533] = 2, + ACTIONS(14290), 1, + anon_sym_RPAREN, + [331844] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7979), 1, + ACTIONS(14292), 1, sym_identifier, - [371540] = 2, + [331851] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15149), 1, + ACTIONS(12488), 1, anon_sym_SEMI, - [371547] = 2, + [331858] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15151), 1, - sym_auto, - [371554] = 2, + ACTIONS(14294), 1, + anon_sym_RPAREN, + [331865] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15153), 1, - sym_identifier, - [371561] = 2, + ACTIONS(14296), 1, + anon_sym_SEMI, + [331872] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15155), 1, - sym_identifier, - [371568] = 2, + ACTIONS(11172), 1, + anon_sym_RBRACE, + [331879] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15157), 1, + ACTIONS(14298), 1, anon_sym_SEMI, - [371575] = 2, + [331886] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15159), 1, - anon_sym_RPAREN, - [371582] = 2, + ACTIONS(13840), 1, + anon_sym_RBRACE, + [331893] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15161), 1, + ACTIONS(14300), 1, anon_sym_SEMI, - [371589] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15163), 1, - anon_sym_RPAREN, - [371596] = 2, + [331900] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15165), 1, - anon_sym_RPAREN, - [371603] = 2, + ACTIONS(14302), 1, + anon_sym_STAR, + [331907] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15167), 1, - sym_identifier, - [371610] = 2, + ACTIONS(14304), 1, + anon_sym_COLON, + [331914] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15169), 1, - aux_sym_preproc_if_token2, - [371617] = 2, + ACTIONS(14306), 1, + anon_sym_COLON, + [331921] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15171), 1, + ACTIONS(14308), 1, anon_sym_RPAREN, - [371624] = 2, + [331928] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15173), 1, - aux_sym_preproc_if_token2, - [371631] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15175), 1, - aux_sym_preproc_if_token2, - [371638] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14511), 1, - sym_semgrep_metavar, - [371645] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12475), 1, + ACTIONS(14310), 1, anon_sym_SEMI, - [371652] = 2, + [331935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15177), 1, - anon_sym_RPAREN, - [371659] = 2, + ACTIONS(14312), 1, + sym_identifier, + [331942] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9145), 1, - anon_sym_SEMI, - [371666] = 2, + ACTIONS(14314), 1, + sym_identifier, + [331949] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15179), 1, - anon_sym_RBRACE, - [371673] = 2, + ACTIONS(14316), 1, + aux_sym_preproc_if_token2, + [331956] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9362), 1, - anon_sym_RBRACE, - [371680] = 2, - ACTIONS(3), 1, + ACTIONS(12145), 1, + anon_sym_COMMA, + [331963] = 2, + ACTIONS(10479), 1, sym_comment, - ACTIONS(15181), 1, - anon_sym_SEMI, - [371687] = 2, + ACTIONS(14318), 1, + aux_sym_preproc_include_token2, + [331970] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7749), 1, - sym_identifier, - [371694] = 2, + ACTIONS(14320), 1, + anon_sym_DQUOTE, + [331977] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15183), 1, - anon_sym_SEMI, - [371701] = 2, + ACTIONS(14322), 1, + anon_sym_RPAREN, + [331984] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14731), 1, - anon_sym_RBRACE, - [371708] = 2, + ACTIONS(14324), 1, + anon_sym_COLON, + [331991] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15185), 1, - anon_sym_SEMI, - [371715] = 2, + ACTIONS(14326), 1, + anon_sym_LPAREN2, + [331998] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15187), 1, + ACTIONS(14328), 1, anon_sym_SEMI, - [371722] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15189), 1, - anon_sym_RPAREN, - [371729] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15191), 1, - anon_sym_RPAREN, - [371736] = 2, + [332005] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15193), 1, - anon_sym_SEMI, - [371743] = 2, + ACTIONS(14330), 1, + sym_auto, + [332012] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11802), 1, + ACTIONS(11462), 1, anon_sym_RPAREN, - [371750] = 2, + [332019] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15195), 1, + ACTIONS(14332), 1, anon_sym_LPAREN2, - [371757] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15197), 1, - sym_raw_string_delimiter, - [371764] = 2, + [332026] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15199), 1, + ACTIONS(14334), 1, anon_sym_RPAREN, - [371771] = 2, + [332033] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5162), 1, - anon_sym_SEMI, - [371778] = 2, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(15201), 1, - aux_sym_preproc_include_token2, - [371785] = 2, + ACTIONS(14336), 1, + anon_sym_RPAREN, + [332040] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15203), 1, + ACTIONS(14338), 1, aux_sym_preproc_if_token2, - [371792] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15205), 1, - sym_identifier, - [371799] = 2, + [332047] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15207), 1, - sym_identifier, - [371806] = 2, + ACTIONS(14340), 1, + anon_sym_DQUOTE, + [332054] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15209), 1, - sym_identifier, - [371813] = 2, + ACTIONS(14342), 1, + aux_sym_preproc_if_token2, + [332061] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12492), 1, + ACTIONS(14344), 1, anon_sym_SEMI, - [371820] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15211), 1, - sym_identifier, - [371827] = 2, + [332068] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9583), 1, - anon_sym_SEMI, - [371834] = 2, + ACTIONS(14346), 1, + aux_sym_preproc_if_token2, + [332075] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15213), 1, + ACTIONS(14348), 1, anon_sym_RPAREN, - [371841] = 2, + [332082] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15215), 1, - sym_auto, - [371848] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15217), 1, - anon_sym_DQUOTE, - [371855] = 2, + ACTIONS(14350), 1, + anon_sym_RPAREN, + [332089] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15219), 1, + ACTIONS(14352), 1, sym_identifier, - [371862] = 2, + [332096] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15221), 1, - anon_sym_SEMI, - [371869] = 2, + ACTIONS(14354), 1, + anon_sym_DQUOTE, + [332103] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15223), 1, + ACTIONS(14356), 1, sym_identifier, - [371876] = 2, + [332110] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15225), 1, - ts_builtin_sym_end, - [371883] = 2, + ACTIONS(14358), 1, + anon_sym_DQUOTE, + [332117] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15227), 1, - anon_sym_DQUOTE, - [371890] = 2, + ACTIONS(14360), 1, + anon_sym_RPAREN, + [332124] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15229), 1, - sym_auto, - [371897] = 2, + ACTIONS(14362), 1, + anon_sym_RPAREN, + [332131] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15231), 1, - anon_sym_STAR, - [371904] = 2, + ACTIONS(12365), 1, + anon_sym_SEMI, + [332138] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15233), 1, - aux_sym_preproc_if_token2, - [371911] = 2, - ACTIONS(10969), 1, + ACTIONS(14364), 1, + anon_sym_RPAREN, + [332145] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15235), 1, - aux_sym_preproc_include_token2, - [371918] = 2, + ACTIONS(14366), 1, + anon_sym_RPAREN, + [332152] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9398), 1, - anon_sym_RBRACE, - [371925] = 2, + ACTIONS(9149), 1, + anon_sym_RPAREN, + [332159] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15237), 1, - anon_sym_STAR, - [371932] = 2, + ACTIONS(14368), 1, + anon_sym_RPAREN, + [332166] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15239), 1, + ACTIONS(14370), 1, anon_sym_SEMI, - [371939] = 2, + [332173] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15241), 1, + ACTIONS(14372), 1, aux_sym_preproc_if_token2, - [371946] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15243), 1, - anon_sym_RPAREN, - [371953] = 2, + [332180] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9563), 1, + ACTIONS(14374), 1, anon_sym_SEMI, - [371960] = 2, + [332187] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15245), 1, + ACTIONS(14376), 1, anon_sym_SEMI, - [371967] = 2, + [332194] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15247), 1, - anon_sym_SEMI, - [371974] = 2, + ACTIONS(14378), 1, + anon_sym_RPAREN, + [332201] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15249), 1, + ACTIONS(14380), 1, sym_identifier, - [371981] = 2, + [332208] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15251), 1, - anon_sym_SEMI, - [371988] = 2, + ACTIONS(14382), 1, + anon_sym_LPAREN2, + [332215] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11908), 1, - anon_sym_RBRACE, - [371995] = 2, + ACTIONS(11515), 1, + anon_sym_RPAREN, + [332222] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15253), 1, + ACTIONS(14384), 1, aux_sym_preproc_if_token2, - [372002] = 2, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(14381), 1, - aux_sym_preproc_include_token2, - [372009] = 2, + [332229] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15255), 1, - anon_sym_STAR, - [372016] = 2, + ACTIONS(14386), 1, + sym_raw_string_delimiter, + [332236] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15257), 1, - aux_sym_preproc_if_token2, - [372023] = 2, + ACTIONS(14388), 1, + anon_sym_RPAREN, + [332243] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15259), 1, - anon_sym_SEMI, - [372030] = 2, + ACTIONS(14390), 1, + anon_sym_COLON, + [332250] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9318), 1, - anon_sym_RBRACE, - [372037] = 2, + ACTIONS(14392), 1, + sym_identifier, + [332257] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15261), 1, - anon_sym_LPAREN2, - [372044] = 2, + ACTIONS(14394), 1, + anon_sym_SEMI, + [332264] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15263), 1, - sym_identifier, - [372051] = 2, + ACTIONS(14396), 1, + anon_sym_RPAREN, + [332271] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15265), 1, - anon_sym_COLON, - [372058] = 2, + ACTIONS(14398), 1, + anon_sym_RPAREN, + [332278] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15267), 1, - anon_sym_LPAREN2, - [372065] = 2, + ACTIONS(14400), 1, + sym_identifier, + [332285] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15269), 1, - anon_sym_DQUOTE, - [372072] = 2, + ACTIONS(14402), 1, + sym_identifier, + [332292] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15271), 1, - anon_sym_DQUOTE, - [372079] = 2, + ACTIONS(14404), 1, + sym_raw_string_delimiter, + [332299] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11749), 1, - anon_sym_RBRACE, - [372086] = 2, + ACTIONS(14406), 1, + anon_sym_RPAREN, + [332306] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15273), 1, + ACTIONS(14408), 1, anon_sym_RPAREN, - [372093] = 2, + [332313] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11822), 1, - anon_sym_RBRACE, - [372100] = 2, + ACTIONS(14410), 1, + aux_sym_preproc_if_token2, + [332320] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15275), 1, + ACTIONS(14412), 1, anon_sym_SEMI, - [372107] = 2, + [332327] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9669), 1, - anon_sym_SEMI, - [372114] = 2, + ACTIONS(14414), 1, + anon_sym_LPAREN2, + [332334] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15277), 1, - anon_sym_RPAREN, - [372121] = 2, + ACTIONS(14416), 1, + anon_sym_STAR, + [332341] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15279), 1, + ACTIONS(9231), 1, anon_sym_RPAREN, - [372128] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15281), 1, - sym_identifier, - [372135] = 2, + [332348] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15283), 1, - anon_sym_RPAREN, - [372142] = 2, + ACTIONS(14418), 1, + anon_sym_RBRACE, + [332355] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15285), 1, - anon_sym_DQUOTE, - [372149] = 2, + ACTIONS(14420), 1, + anon_sym_LPAREN2, + [332362] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15287), 1, - aux_sym_preproc_if_token2, - [372156] = 2, + ACTIONS(14422), 1, + sym_identifier, + [332369] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15289), 1, - anon_sym_SEMI, - [372163] = 2, + ACTIONS(13848), 1, + anon_sym_RBRACE, + [332376] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15291), 1, - sym_identifier, - [372170] = 2, + ACTIONS(14424), 1, + aux_sym_preproc_if_token2, + [332383] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9545), 1, - anon_sym_SEMI, - [372177] = 2, + ACTIONS(14426), 1, + anon_sym_RPAREN, + [332390] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15293), 1, - anon_sym_RPAREN, - [372184] = 2, + ACTIONS(14428), 1, + aux_sym_preproc_if_token2, + [332397] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15295), 1, - anon_sym_SEMI, - [372191] = 2, + ACTIONS(14430), 1, + aux_sym_preproc_if_token2, + [332404] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15297), 1, - anon_sym_DQUOTE, - [372198] = 2, + ACTIONS(14432), 1, + sym_identifier, + [332411] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15299), 1, + ACTIONS(14434), 1, anon_sym_RPAREN, - [372205] = 2, + [332418] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15301), 1, - anon_sym_RPAREN, - [372212] = 2, + ACTIONS(14436), 1, + anon_sym_COLON, + [332425] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15303), 1, + ACTIONS(14438), 1, anon_sym_LPAREN2, - [372219] = 2, + [332432] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9294), 1, - anon_sym_RBRACE, - [372226] = 2, + ACTIONS(12391), 1, + anon_sym_SEMI, + [332439] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15305), 1, - aux_sym_preproc_if_token2, - [372233] = 2, + ACTIONS(14440), 1, + anon_sym_SEMI, + [332446] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15307), 1, + ACTIONS(7408), 1, anon_sym_RPAREN, - [372240] = 2, + [332453] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12852), 1, - anon_sym_COMMA, - [372247] = 2, + ACTIONS(14442), 1, + anon_sym_SEMI, + [332460] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9769), 1, - anon_sym_RPAREN, - [372254] = 2, + ACTIONS(14444), 1, + anon_sym_STAR, + [332467] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11900), 1, - anon_sym_RPAREN, - [372261] = 2, + ACTIONS(12419), 1, + anon_sym_SEMI, + [332474] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9350), 1, - anon_sym_RBRACE, - [372268] = 2, + ACTIONS(14446), 1, + anon_sym_SEMI, + [332481] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15309), 1, - sym_raw_string_delimiter, - [372275] = 2, + ACTIONS(14448), 1, + sym_identifier, + [332488] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15311), 1, + ACTIONS(14450), 1, anon_sym_RPAREN, - [372282] = 2, + [332495] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15313), 1, - anon_sym_RPAREN, - [372289] = 2, + ACTIONS(14452), 1, + anon_sym_SEMI, + [332502] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15315), 1, + ACTIONS(14454), 1, sym_identifier, - [372296] = 2, + [332509] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15317), 1, - aux_sym_preproc_if_token2, - [372303] = 2, + ACTIONS(14456), 1, + anon_sym_DQUOTE, + [332516] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15319), 1, + ACTIONS(14458), 1, anon_sym_RPAREN, - [372310] = 2, + [332523] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9520), 1, + ACTIONS(14460), 1, anon_sym_RPAREN, - [372317] = 2, + [332530] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15321), 1, + ACTIONS(14462), 1, sym_identifier, - [372324] = 2, + [332537] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15323), 1, - anon_sym_RPAREN, - [372331] = 2, + ACTIONS(14464), 1, + sym_identifier, + [332544] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9522), 1, + ACTIONS(14466), 1, anon_sym_RPAREN, - [372338] = 2, + [332551] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15325), 1, + ACTIONS(14468), 1, aux_sym_preproc_if_token2, - [372345] = 2, + [332558] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15327), 1, - aux_sym_preproc_if_token2, - [372352] = 2, + ACTIONS(14470), 1, + anon_sym_SEMI, + [332565] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15329), 1, - anon_sym_RPAREN, - [372359] = 2, + ACTIONS(12709), 1, + anon_sym_SEMI, + [332572] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15331), 1, + ACTIONS(14472), 1, anon_sym_SEMI, - [372366] = 2, + [332579] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15333), 1, - anon_sym_RPAREN, - [372373] = 2, + ACTIONS(14474), 1, + anon_sym_DQUOTE, + [332586] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15335), 1, - sym_auto, - [372380] = 2, + ACTIONS(14476), 1, + anon_sym_DQUOTE, + [332593] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15337), 1, + ACTIONS(14478), 1, anon_sym_SEMI, - [372387] = 2, + [332600] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15339), 1, + ACTIONS(11472), 1, anon_sym_RPAREN, - [372394] = 2, + [332607] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15341), 1, - sym_identifier, - [372401] = 2, + ACTIONS(14480), 1, + aux_sym_preproc_if_token2, + [332614] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15343), 1, - aux_sym_preproc_if_token2, - [372408] = 2, + ACTIONS(14482), 1, + sym_raw_string_delimiter, + [332621] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13334), 1, - anon_sym_SEMI, - [372415] = 2, + ACTIONS(14484), 1, + anon_sym_LPAREN2, + [332628] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15345), 1, - aux_sym_preproc_if_token2, - [372422] = 2, + ACTIONS(14486), 1, + anon_sym_LBRACE, + [332635] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11918), 1, - anon_sym_RBRACE, - [372429] = 2, + ACTIONS(14488), 1, + sym_identifier, + [332642] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15347), 1, + ACTIONS(14490), 1, aux_sym_preproc_if_token2, - [372436] = 2, + [332649] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15349), 1, - anon_sym_LPAREN2, - [372443] = 2, + ACTIONS(14492), 1, + aux_sym_preproc_if_token2, + [332656] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9157), 1, + anon_sym_RPAREN, + [332663] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15351), 1, + ACTIONS(12021), 1, anon_sym_SEMI, - [372450] = 2, + [332670] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7673), 1, - sym_identifier, - [372457] = 2, + ACTIONS(9267), 1, + anon_sym_SEMI, + [332677] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15353), 1, + ACTIONS(14494), 1, aux_sym_preproc_if_token2, - [372464] = 2, + [332684] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12816), 1, + ACTIONS(12043), 1, anon_sym_SEMI, - [372471] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15355), 1, - anon_sym_COLON, - [372478] = 2, + [332691] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9573), 1, - anon_sym_SEMI, - [372485] = 2, + ACTIONS(14496), 1, + anon_sym_DOT_DOT_DOT, + [332698] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15357), 1, - sym_identifier, - [372492] = 2, + ACTIONS(14498), 1, + anon_sym_RPAREN, + [332705] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15359), 1, - sym_identifier, - [372499] = 2, - ACTIONS(10969), 1, + ACTIONS(5156), 1, + anon_sym_SEMI, + [332712] = 2, + ACTIONS(10479), 1, sym_comment, - ACTIONS(15361), 1, + ACTIONS(14500), 1, aux_sym_preproc_include_token2, - [372506] = 2, + [332719] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15363), 1, - sym_identifier, - [372513] = 2, + ACTIONS(14502), 1, + aux_sym_preproc_if_token2, + [332726] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15365), 1, - anon_sym_SEMI, - [372520] = 2, + ACTIONS(14504), 1, + aux_sym_preproc_if_token2, + [332733] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15367), 1, + ACTIONS(12745), 1, anon_sym_SEMI, - [372527] = 2, + [332740] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15369), 1, - sym_identifier, - [372534] = 2, + ACTIONS(14506), 1, + anon_sym_DQUOTE, + [332747] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15371), 1, - anon_sym_RPAREN, - [372541] = 2, + ACTIONS(14508), 1, + anon_sym_LPAREN2, + [332754] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15373), 1, - anon_sym_RBRACE, - [372548] = 2, + ACTIONS(12747), 1, + anon_sym_SEMI, + [332761] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15375), 1, - anon_sym_SEMI, - [372555] = 2, - ACTIONS(10969), 1, + ACTIONS(14510), 1, + aux_sym_preproc_if_token2, + [332768] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11123), 1, + anon_sym_RBRACE, + [332775] = 2, + ACTIONS(10479), 1, sym_comment, - ACTIONS(15377), 1, + ACTIONS(13511), 1, aux_sym_preproc_include_token2, - [372562] = 2, + [332782] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15379), 1, - anon_sym_DOT_DOT_DOT, - [372569] = 2, + ACTIONS(14512), 1, + anon_sym_STAR, + [332789] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15381), 1, - anon_sym_RPAREN, - [372576] = 2, + ACTIONS(14514), 1, + sym_identifier, + [332796] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15383), 1, - sym_auto, - [372583] = 2, + ACTIONS(14516), 1, + anon_sym_RPAREN, + [332803] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15385), 1, - anon_sym_SEMI, - [372590] = 2, + ACTIONS(14518), 1, + aux_sym_preproc_if_token2, + [332810] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15387), 1, - anon_sym_RPAREN, - [372597] = 2, + ACTIONS(14520), 1, + aux_sym_preproc_if_token2, + [332817] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15389), 1, + ACTIONS(14522), 1, anon_sym_SEMI, - [372604] = 2, + [332824] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15391), 1, - sym_identifier, - [372611] = 2, + ACTIONS(14524), 1, + anon_sym_RPAREN, + [332831] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11868), 1, + ACTIONS(14526), 1, anon_sym_RPAREN, - [372618] = 2, + [332838] = 2, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(14528), 1, + aux_sym_preproc_include_token2, + [332845] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15393), 1, - anon_sym_SEMI, - [372625] = 2, + ACTIONS(14530), 1, + anon_sym_DQUOTE, + [332852] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15395), 1, - sym_raw_string_delimiter, - [372632] = 2, + ACTIONS(14532), 1, + anon_sym_STAR, + [332859] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9374), 1, + ACTIONS(13808), 1, anon_sym_RBRACE, - [372639] = 2, + [332866] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15397), 1, - anon_sym_RPAREN, - [372646] = 2, + ACTIONS(14534), 1, + aux_sym_preproc_if_token2, + [332873] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15399), 1, + ACTIONS(14536), 1, + anon_sym_RBRACE, + [332880] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14538), 1, sym_identifier, - [372653] = 2, + [332887] = 2, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(14540), 1, + aux_sym_preproc_include_token2, + [332894] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14542), 1, + aux_sym_preproc_if_token2, + [332901] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15401), 1, + ACTIONS(14544), 1, anon_sym_SEMI, - [372660] = 2, + [332908] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15403), 1, + ACTIONS(11523), 1, anon_sym_RPAREN, - [372667] = 2, + [332915] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15405), 1, - sym_auto, - [372674] = 2, + ACTIONS(14546), 1, + anon_sym_RPAREN, + [332922] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15407), 1, - anon_sym_STAR, - [372681] = 2, + ACTIONS(14548), 1, + sym_raw_string_delimiter, + [332929] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15409), 1, - sym_identifier, - [372688] = 2, + ACTIONS(14550), 1, + anon_sym_STAR, + [332936] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15411), 1, - anon_sym_SEMI, - [372695] = 2, + ACTIONS(14552), 1, + sym_identifier, + [332943] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9577), 1, + ACTIONS(14554), 1, anon_sym_SEMI, - [372702] = 2, + [332950] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15413), 1, - anon_sym_SEMI, - [372709] = 2, + ACTIONS(14556), 1, + aux_sym_preproc_if_token2, + [332957] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15415), 1, + ACTIONS(14558), 1, sym_identifier, - [372716] = 2, + [332964] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15417), 1, + ACTIONS(14560), 1, aux_sym_preproc_if_token2, - [372723] = 2, + [332971] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15419), 1, - anon_sym_DQUOTE, - [372730] = 2, - ACTIONS(10969), 1, + ACTIONS(14562), 1, + anon_sym_SEMI, + [332978] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15421), 1, - aux_sym_preproc_include_token2, - [372737] = 2, + ACTIONS(8945), 1, + anon_sym_SEMI, + [332985] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15423), 1, - aux_sym_preproc_if_token2, - [372744] = 2, + ACTIONS(14564), 1, + anon_sym_SEMI, + [332992] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14566), 1, + anon_sym_LPAREN2, + [332999] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15425), 1, + ACTIONS(14568), 1, aux_sym_preproc_if_token2, - [372751] = 2, + [333006] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11800), 1, - anon_sym_RBRACE, - [372758] = 2, + ACTIONS(14570), 1, + anon_sym_SEMI, + [333013] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15427), 1, - anon_sym_LPAREN2, - [372765] = 2, - ACTIONS(10969), 1, + ACTIONS(14572), 1, + sym_auto, + [333020] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(14183), 1, - aux_sym_preproc_include_token2, - [372772] = 2, + ACTIONS(14574), 1, + anon_sym_DQUOTE, + [333027] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15429), 1, - anon_sym_RBRACE, - [372779] = 2, + ACTIONS(14576), 1, + anon_sym_DQUOTE, + [333034] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15431), 1, - anon_sym_RPAREN, - [372786] = 2, + ACTIONS(14578), 1, + aux_sym_preproc_if_token2, + [333041] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14072), 1, + ACTIONS(14580), 1, anon_sym_RPAREN, - [372793] = 2, + [333048] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15433), 1, - anon_sym_RPAREN, - [372800] = 2, + ACTIONS(14582), 1, + anon_sym_LPAREN2, + [333055] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15435), 1, - sym_identifier, - [372807] = 2, + ACTIONS(14584), 1, + anon_sym_SEMI, + [333062] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15437), 1, + ACTIONS(14586), 1, sym_identifier, - [372814] = 2, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(15439), 1, - aux_sym_preproc_include_token2, - [372821] = 2, + [333069] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14571), 1, - anon_sym_RBRACE, - [372828] = 2, + ACTIONS(14588), 1, + anon_sym_SEMI, + [333076] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15441), 1, + ACTIONS(14590), 1, anon_sym_RPAREN, - [372835] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15443), 1, - anon_sym_LPAREN2, - [372842] = 2, - ACTIONS(10969), 1, + [333083] = 2, + ACTIONS(10479), 1, sym_comment, - ACTIONS(15445), 1, + ACTIONS(14592), 1, aux_sym_preproc_include_token2, - [372849] = 2, + [333090] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15447), 1, - anon_sym_RPAREN, - [372856] = 2, + ACTIONS(14594), 1, + sym_identifier, + [333097] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15449), 1, - aux_sym_preproc_if_token2, - [372863] = 2, + ACTIONS(14596), 1, + anon_sym_SEMI, + [333104] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15451), 1, + ACTIONS(14598), 1, aux_sym_preproc_if_token2, - [372870] = 2, + [333111] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15453), 1, - anon_sym_STAR, - [372877] = 2, + ACTIONS(14600), 1, + anon_sym_DQUOTE, + [333118] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14602), 1, + anon_sym_SEMI, + [333125] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7917), 1, + sym_identifier, + [333132] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15455), 1, + ACTIONS(14604), 1, anon_sym_RPAREN, - [372884] = 2, + [333139] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14765), 1, + ACTIONS(14606), 1, anon_sym_RBRACE, - [372891] = 2, + [333146] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15457), 1, + ACTIONS(14608), 1, anon_sym_SEMI, - [372898] = 2, + [333153] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13524), 1, - anon_sym_SEMI, - [372905] = 2, + ACTIONS(14610), 1, + sym_identifier, + [333160] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15459), 1, - aux_sym_preproc_if_token2, - [372912] = 2, + ACTIONS(14612), 1, + sym_identifier, + [333167] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15461), 1, - anon_sym_RPAREN, - [372919] = 2, + ACTIONS(14614), 1, + anon_sym_SEMI, + [333174] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14567), 1, + ACTIONS(12083), 1, anon_sym_SEMI, - [372926] = 2, + [333181] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11828), 1, - anon_sym_RPAREN, - [372933] = 2, + ACTIONS(9261), 1, + anon_sym_SEMI, + [333188] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15463), 1, - anon_sym_SEMI, - [372940] = 2, + ACTIONS(14616), 1, + anon_sym_DQUOTE, + [333195] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15465), 1, - sym_raw_string_delimiter, - [372947] = 2, + ACTIONS(1514), 1, + ts_builtin_sym_end, + [333202] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15467), 1, - aux_sym_preproc_if_token2, - [372954] = 2, + ACTIONS(11556), 1, + anon_sym_RPAREN, + [333209] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15469), 1, + ACTIONS(7272), 1, anon_sym_RPAREN, - [372961] = 2, + [333216] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15471), 1, - sym_identifier, - [372968] = 2, - ACTIONS(10969), 1, + ACTIONS(14618), 1, + sym_raw_string_delimiter, + [333223] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(11127), 1, - aux_sym_preproc_include_token2, - [372975] = 2, + ACTIONS(14620), 1, + anon_sym_LPAREN2, + [333230] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11745), 1, - anon_sym_RBRACE, - [372982] = 2, + ACTIONS(14622), 1, + sym_identifier, + [333237] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14624), 1, + aux_sym_preproc_if_token2, + [333244] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15473), 1, + ACTIONS(14626), 1, anon_sym_RPAREN, - [372989] = 2, + [333251] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11782), 1, - anon_sym_RBRACE, - [372996] = 2, + ACTIONS(14628), 1, + anon_sym_SEMI, + [333258] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15475), 1, - aux_sym_preproc_if_token2, - [373003] = 2, + ACTIONS(14630), 1, + anon_sym_SEMI, + [333265] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15477), 1, - aux_sym_preproc_if_token2, - [373010] = 2, + ACTIONS(14632), 1, + anon_sym_DQUOTE, + [333272] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15479), 1, + ACTIONS(14634), 1, aux_sym_preproc_if_token2, - [373017] = 2, + [333279] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15481), 1, + ACTIONS(14636), 1, anon_sym_SEMI, - [373024] = 2, + [333286] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15483), 1, - sym_identifier, - [373031] = 2, + ACTIONS(14638), 1, + sym_auto, + [333293] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13078), 1, + ACTIONS(14640), 1, anon_sym_SEMI, - [373038] = 2, + [333300] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14643), 1, - anon_sym_RBRACE, - [373045] = 2, + ACTIONS(14642), 1, + sym_auto, + [333307] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15485), 1, - anon_sym_SEMI, - [373052] = 2, + ACTIONS(14644), 1, + sym_identifier, + [333314] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15487), 1, + ACTIONS(12373), 1, anon_sym_SEMI, - [373059] = 2, + [333321] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15489), 1, - sym_identifier, - [373066] = 2, + ACTIONS(8808), 1, + anon_sym_RBRACE, + [333328] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12936), 1, - anon_sym_SEMI, - [373073] = 2, + ACTIONS(14646), 1, + aux_sym_preproc_if_token2, + [333335] = 2, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(14648), 1, + aux_sym_preproc_include_token2, + [333342] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15491), 1, + ACTIONS(14650), 1, anon_sym_LPAREN2, - [373080] = 2, + [333349] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15493), 1, + ACTIONS(14652), 1, anon_sym_SEMI, - [373087] = 2, + [333356] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15495), 1, + ACTIONS(9265), 1, anon_sym_SEMI, - [373094] = 2, - ACTIONS(3), 1, + [333363] = 2, + ACTIONS(10479), 1, sym_comment, - ACTIONS(15497), 1, - anon_sym_DQUOTE, - [373101] = 2, + ACTIONS(14654), 1, + aux_sym_preproc_include_token2, + [333370] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_COLON_COLON, - [373108] = 2, + ACTIONS(14656), 1, + sym_identifier, + [333377] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15499), 1, - aux_sym_preproc_if_token2, - [373115] = 2, + ACTIONS(14658), 1, + anon_sym_SEMI, + [333384] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15501), 1, + ACTIONS(6508), 1, sym_identifier, - [373122] = 2, + [333391] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15503), 1, - anon_sym_RPAREN, - [373129] = 2, + ACTIONS(14660), 1, + sym_auto, + [333398] = 2, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(14662), 1, + aux_sym_preproc_include_token2, + [333405] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15505), 1, - aux_sym_preproc_if_token2, - [373136] = 2, + ACTIONS(14664), 1, + anon_sym_RBRACE, + [333412] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15507), 1, - anon_sym_SEMI, - [373143] = 2, + ACTIONS(14666), 1, + anon_sym_RPAREN, + [333419] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15509), 1, - aux_sym_preproc_if_token2, - [373150] = 2, + ACTIONS(14668), 1, + anon_sym_SEMI, + [333426] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15511), 1, + ACTIONS(14670), 1, anon_sym_RPAREN, - [373157] = 2, + [333433] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15513), 1, + ACTIONS(14672), 1, anon_sym_RPAREN, - [373164] = 2, + [333440] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15515), 1, - anon_sym_RPAREN, - [373171] = 2, + ACTIONS(14674), 1, + anon_sym_SEMI, + [333447] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15517), 1, - sym_raw_string_content, - [373178] = 2, + ACTIONS(9263), 1, + anon_sym_SEMI, + [333454] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15519), 1, + ACTIONS(14676), 1, anon_sym_RPAREN, - [373185] = 2, + [333461] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14678), 1, + anon_sym_DQUOTE, + [333468] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15521), 1, + ACTIONS(14680), 1, aux_sym_preproc_if_token2, - [373192] = 2, + [333475] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15523), 1, - anon_sym_RPAREN, - [373199] = 2, + ACTIONS(14682), 1, + anon_sym_DQUOTE, + [333482] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15525), 1, + ACTIONS(11436), 1, anon_sym_RPAREN, - [373206] = 2, + [333489] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15527), 1, - anon_sym_SEMI, - [373213] = 2, + ACTIONS(14684), 1, + anon_sym_RPAREN, + [333496] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15529), 1, - sym_auto, - [373220] = 2, + ACTIONS(14686), 1, + sym_raw_string_delimiter, + [333503] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15531), 1, + ACTIONS(14688), 1, anon_sym_RPAREN, - [373227] = 2, + [333510] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11914), 1, + ACTIONS(14690), 1, + anon_sym_SEMI, + [333517] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14692), 1, anon_sym_RPAREN, - [373234] = 2, + [333524] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12408), 1, + ACTIONS(14694), 1, anon_sym_SEMI, - [373241] = 2, + [333531] = 2, + ACTIONS(5658), 1, + aux_sym_preproc_include_token2, + ACTIONS(10479), 1, + sym_comment, + [333538] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15533), 1, - sym_raw_string_delimiter, - [373248] = 2, + ACTIONS(14696), 1, + anon_sym_STAR, + [333545] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9551), 1, + ACTIONS(14698), 1, anon_sym_RPAREN, - [373255] = 2, + [333552] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15535), 1, - aux_sym_preproc_if_token2, - [373262] = 2, + ACTIONS(14700), 1, + anon_sym_SEMI, + [333559] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15537), 1, - sym_identifier, - [373269] = 2, + ACTIONS(9007), 1, + anon_sym_RBRACE, + [333566] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13261), 1, + ACTIONS(14702), 1, anon_sym_SEMI, - [373276] = 2, + [333573] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6972), 1, - sym_identifier, - [373283] = 2, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(13897), 1, - aux_sym_preproc_include_token2, - [373290] = 2, + ACTIONS(14704), 1, + anon_sym_LPAREN2, + [333580] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15539), 1, + ACTIONS(14706), 1, anon_sym_RBRACE, - [373297] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15541), 1, - anon_sym_SEMI, - [373304] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15543), 1, - anon_sym_RPAREN, - [373311] = 2, + [333587] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15545), 1, + ACTIONS(14708), 1, anon_sym_RPAREN, - [373318] = 2, + [333594] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15547), 1, + ACTIONS(14710), 1, sym_identifier, - [373325] = 2, + [333601] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14783), 1, + ACTIONS(11012), 1, anon_sym_RBRACE, - [373332] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15549), 1, - anon_sym_LPAREN2, - [373339] = 2, + [333608] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15551), 1, + ACTIONS(14712), 1, anon_sym_SEMI, - [373346] = 2, + [333615] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7344), 1, + ACTIONS(7595), 1, sym_identifier, - [373353] = 2, + [333622] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9154), 1, + ACTIONS(14714), 1, anon_sym_RPAREN, - [373360] = 2, + [333629] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15553), 1, - anon_sym_RPAREN, - [373367] = 2, + ACTIONS(14716), 1, + anon_sym_COLON, + [333636] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11832), 1, - anon_sym_RPAREN, - [373374] = 2, + ACTIONS(14718), 1, + sym_identifier, + [333643] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15555), 1, - anon_sym_LPAREN2, - [373381] = 2, + ACTIONS(14720), 1, + anon_sym_RPAREN, + [333650] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15557), 1, - anon_sym_STAR, - [373388] = 2, + ACTIONS(14722), 1, + anon_sym_SEMI, + [333657] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15559), 1, - anon_sym_RPAREN, - [373395] = 2, - ACTIONS(3), 1, + ACTIONS(14724), 1, + sym_raw_string_delimiter, + [333664] = 2, + ACTIONS(10479), 1, sym_comment, - ACTIONS(12536), 1, - anon_sym_COMMA, - [373402] = 2, + ACTIONS(14726), 1, + aux_sym_preproc_include_token2, + [333671] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15561), 1, - sym_identifier, - [373409] = 2, + ACTIONS(13996), 1, + anon_sym_RBRACE, + [333678] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15563), 1, - anon_sym_DQUOTE, - [373416] = 2, - ACTIONS(3), 1, + ACTIONS(14728), 1, + anon_sym_RPAREN, + [333685] = 2, + ACTIONS(10479), 1, sym_comment, - ACTIONS(15565), 1, - anon_sym_DQUOTE, - [373423] = 2, + ACTIONS(10720), 1, + aux_sym_preproc_include_token2, + [333692] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15567), 1, - anon_sym_DQUOTE, - [373430] = 2, + ACTIONS(14730), 1, + anon_sym_SEMI, + [333699] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15569), 1, - anon_sym_RPAREN, - [373437] = 2, + ACTIONS(14732), 1, + aux_sym_preproc_if_token2, + [333706] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15571), 1, - aux_sym_preproc_if_token2, - [373444] = 2, + ACTIONS(14734), 1, + anon_sym_LPAREN2, + [333713] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15573), 1, + ACTIONS(14736), 1, anon_sym_RPAREN, - [373451] = 2, + [333720] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15575), 1, - anon_sym_DQUOTE, - [373458] = 2, + ACTIONS(11975), 1, + anon_sym_SEMI, + [333727] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15577), 1, + ACTIONS(14738), 1, + aux_sym_preproc_if_token2, + [333734] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14740), 1, anon_sym_SEMI, - [373465] = 2, + [333741] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15579), 1, + ACTIONS(14742), 1, anon_sym_RPAREN, - [373472] = 2, + [333748] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15581), 1, - sym_identifier, - [373479] = 2, - ACTIONS(10969), 1, + ACTIONS(14744), 1, + aux_sym_preproc_if_token2, + [333755] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15583), 1, - aux_sym_preproc_include_token2, - [373486] = 2, + ACTIONS(14746), 1, + anon_sym_SEMI, + [333762] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15585), 1, + ACTIONS(14748), 1, + sym_raw_string_delimiter, + [333769] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14750), 1, anon_sym_RPAREN, - [373493] = 2, + [333776] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15587), 1, - anon_sym_SEMI, - [373500] = 2, + ACTIONS(14752), 1, + anon_sym_COLON, + [333783] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15589), 1, - anon_sym_DQUOTE, - [373507] = 2, + ACTIONS(14754), 1, + anon_sym_RBRACE, + [333790] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15591), 1, - sym_identifier, - [373514] = 2, + ACTIONS(14756), 1, + anon_sym_LPAREN2, + [333797] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11812), 1, + ACTIONS(14758), 1, anon_sym_RPAREN, - [373521] = 2, + [333804] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15593), 1, - aux_sym_preproc_if_token2, - [373528] = 2, + ACTIONS(14760), 1, + anon_sym_RPAREN, + [333811] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15595), 1, + ACTIONS(14762), 1, sym_raw_string_delimiter, - [373535] = 2, + [333818] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15597), 1, - anon_sym_SEMI, - [373542] = 2, + ACTIONS(14764), 1, + anon_sym_RPAREN, + [333825] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15599), 1, - anon_sym_EQ, - [373549] = 2, + ACTIONS(14766), 1, + aux_sym_preproc_if_token2, + [333832] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15601), 1, - anon_sym_SEMI, - [373556] = 2, + ACTIONS(14768), 1, + aux_sym_preproc_if_token2, + [333839] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15603), 1, - sym_identifier, - [373563] = 2, + ACTIONS(14770), 1, + anon_sym_LPAREN2, + [333846] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15605), 1, + ACTIONS(14772), 1, anon_sym_RPAREN, - [373570] = 2, + [333853] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15607), 1, - anon_sym_SEMI, - [373577] = 2, + ACTIONS(14774), 1, + sym_identifier, + [333860] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15609), 1, - sym_identifier, - [373584] = 2, + ACTIONS(14776), 1, + sym_raw_string_delimiter, + [333867] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15611), 1, - sym_auto, - [373591] = 2, + ACTIONS(14778), 1, + anon_sym_DQUOTE, + [333874] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15613), 1, + ACTIONS(14780), 1, sym_identifier, - [373598] = 2, + [333881] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15615), 1, - anon_sym_RPAREN, - [373605] = 2, + ACTIONS(14782), 1, + anon_sym_DQUOTE, + [333888] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15617), 1, + ACTIONS(14784), 1, anon_sym_LPAREN2, - [373612] = 2, + [333895] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15619), 1, + ACTIONS(14786), 1, anon_sym_RPAREN, - [373619] = 2, - ACTIONS(10969), 1, + [333902] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(11043), 1, - aux_sym_preproc_include_token2, - [373626] = 2, + ACTIONS(14788), 1, + sym_raw_string_delimiter, + [333909] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14790), 1, + anon_sym_SEMI, + [333916] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15621), 1, + ACTIONS(14792), 1, sym_identifier, - [373633] = 2, + [333923] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12850), 1, + anon_sym_SEMI, + [333930] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15623), 1, + ACTIONS(14794), 1, anon_sym_RPAREN, - [373640] = 2, + [333937] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15625), 1, - anon_sym_STAR, - [373647] = 2, + ACTIONS(14796), 1, + sym_raw_string_delimiter, + [333944] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15627), 1, - anon_sym_SEMI, - [373654] = 2, + ACTIONS(14798), 1, + anon_sym_DQUOTE, + [333951] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15629), 1, + ACTIONS(14800), 1, anon_sym_RPAREN, - [373661] = 2, + [333958] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15631), 1, - anon_sym_SEMI, - [373668] = 2, + ACTIONS(14802), 1, + sym_raw_string_delimiter, + [333965] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9924), 1, + ACTIONS(14804), 1, anon_sym_RPAREN, - [373675] = 2, + [333972] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15633), 1, - sym_auto, - [373682] = 2, + ACTIONS(14806), 1, + sym_raw_string_delimiter, + [333979] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15635), 1, + ACTIONS(14808), 1, anon_sym_RPAREN, - [373689] = 2, + [333986] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15637), 1, + ACTIONS(14810), 1, sym_raw_string_delimiter, - [373696] = 2, + [333993] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15639), 1, - anon_sym_SEMI, - [373703] = 2, + ACTIONS(14812), 1, + anon_sym_RPAREN, + [334000] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14814), 1, + sym_raw_string_delimiter, + [334007] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15641), 1, + ACTIONS(14816), 1, anon_sym_RPAREN, - [373710] = 2, + [334014] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15643), 1, - sym_identifier, - [373717] = 2, + ACTIONS(14818), 1, + sym_raw_string_delimiter, + [334021] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9264), 1, - anon_sym_RBRACE, - [373724] = 2, + ACTIONS(14820), 1, + anon_sym_RPAREN, + [334028] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15645), 1, - anon_sym_SEMI, - [373731] = 2, + ACTIONS(14822), 1, + sym_raw_string_delimiter, + [334035] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15647), 1, - anon_sym_SEMI, - [373738] = 2, + ACTIONS(11154), 1, + anon_sym_RBRACE, + [334042] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15649), 1, - anon_sym_RPAREN, - [373745] = 2, + ACTIONS(14824), 1, + sym_raw_string_delimiter, + [334049] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15651), 1, + ACTIONS(14826), 1, anon_sym_RPAREN, - [373752] = 2, + [334056] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9147), 1, - anon_sym_RBRACE, - [373759] = 2, + ACTIONS(14828), 1, + sym_raw_string_delimiter, + [334063] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15653), 1, - anon_sym_LPAREN2, - [373766] = 2, + ACTIONS(14830), 1, + sym_identifier, + [334070] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15655), 1, - anon_sym_SEMI, - [373773] = 2, + ACTIONS(14832), 1, + aux_sym_preproc_if_token2, + [334077] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15657), 1, - anon_sym_SEMI, - [373780] = 2, + ACTIONS(14834), 1, + sym_identifier, + [334084] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15659), 1, - sym_identifier, - [373787] = 2, + ACTIONS(14836), 1, + anon_sym_LPAREN2, + [334091] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15661), 1, - anon_sym_RPAREN, - [373794] = 2, + ACTIONS(14838), 1, + anon_sym_STAR, + [334098] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11932), 1, - anon_sym_RBRACE, - [373801] = 2, + ACTIONS(14840), 1, + anon_sym_LPAREN2, + [334105] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15663), 1, - anon_sym_RPAREN, - [373808] = 2, + ACTIONS(14842), 1, + anon_sym_LPAREN2, + [334112] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5304), 1, + ACTIONS(14844), 1, anon_sym_SEMI, - [373815] = 2, + [334119] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15665), 1, - anon_sym_DQUOTE, - [373822] = 2, + ACTIONS(5104), 1, + anon_sym_SEMI, + [334126] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15667), 1, - aux_sym_preproc_if_token2, - [373829] = 2, + ACTIONS(14846), 1, + anon_sym_LPAREN2, + [334133] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15669), 1, - anon_sym_LPAREN2, - [373836] = 2, + ACTIONS(14848), 1, + anon_sym_SEMI, + [334140] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15671), 1, - sym_raw_string_delimiter, - [373843] = 2, + ACTIONS(14850), 1, + anon_sym_LPAREN2, + [334147] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15673), 1, - anon_sym_RPAREN, - [373850] = 2, + ACTIONS(14852), 1, + anon_sym_LPAREN2, + [334154] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15675), 1, + ACTIONS(14854), 1, sym_auto, - [373857] = 2, + [334161] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15677), 1, - anon_sym_SEMI, - [373864] = 2, + ACTIONS(14856), 1, + sym_identifier, + [334168] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15679), 1, - anon_sym_SEMI, - [373871] = 2, + ACTIONS(14858), 1, + anon_sym_RPAREN, + [334175] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15681), 1, - anon_sym_RPAREN, - [373878] = 2, + ACTIONS(14860), 1, + anon_sym_DQUOTE, + [334182] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15683), 1, - anon_sym_COLON, - [373885] = 2, + ACTIONS(14862), 1, + sym_raw_string_content, + [334189] = 2, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(14864), 1, + aux_sym_preproc_include_token2, + [334196] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15685), 1, + ACTIONS(14866), 1, aux_sym_preproc_if_token2, - [373892] = 2, + [334203] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15687), 1, + ACTIONS(14868), 1, aux_sym_preproc_if_token2, - [373899] = 2, + [334210] = 2, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(14870), 1, + aux_sym_preproc_include_token2, + [334217] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15689), 1, - anon_sym_COLON, - [373906] = 2, + ACTIONS(14872), 1, + aux_sym_preproc_if_token2, + [334224] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15691), 1, - anon_sym_LPAREN2, - [373913] = 2, + ACTIONS(11164), 1, + sym_identifier, + [334231] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15693), 1, - anon_sym_COLON, - [373920] = 2, + ACTIONS(14874), 1, + anon_sym_SEMI, + [334238] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14876), 1, + aux_sym_preproc_if_token2, + [334245] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14878), 1, + sym_identifier, + [334252] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7558), 1, + ACTIONS(14880), 1, anon_sym_RPAREN, - [373927] = 2, + [334259] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15695), 1, + ACTIONS(14882), 1, sym_identifier, - [373934] = 2, + [334266] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13372), 1, - anon_sym_SEMI, - [373941] = 2, + ACTIONS(14884), 1, + anon_sym_while, + [334273] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15697), 1, + ACTIONS(14886), 1, anon_sym_RPAREN, - [373948] = 2, + [334280] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15699), 1, - aux_sym_preproc_if_token2, - [373955] = 2, + ACTIONS(14888), 1, + anon_sym_SEMI, + [334287] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12445), 1, + ACTIONS(14010), 1, + anon_sym_RBRACE, + [334294] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14890), 1, anon_sym_SEMI, - [373962] = 2, + [334301] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15701), 1, - anon_sym_RPAREN, - [373969] = 2, + ACTIONS(14892), 1, + anon_sym_DQUOTE, + [334308] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15703), 1, - sym_raw_string_delimiter, - [373976] = 2, + ACTIONS(14894), 1, + anon_sym_EQ, + [334315] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14896), 1, + sym_raw_string_content, + [334322] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15705), 1, + ACTIONS(14898), 1, aux_sym_preproc_if_token2, - [373983] = 2, + [334329] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15707), 1, + ACTIONS(14900), 1, anon_sym_RPAREN, - [373990] = 2, + [334336] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15709), 1, + ACTIONS(14902), 1, anon_sym_SEMI, - [373997] = 2, + [334343] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15711), 1, - anon_sym_RPAREN, - [374004] = 2, + ACTIONS(14904), 1, + anon_sym_STAR, + [334350] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15713), 1, + ACTIONS(12621), 1, anon_sym_SEMI, - [374011] = 2, + [334357] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15715), 1, + ACTIONS(14906), 1, anon_sym_SEMI, - [374018] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15717), 1, - anon_sym_LPAREN2, - [374025] = 2, + [334364] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15719), 1, + ACTIONS(5176), 1, anon_sym_SEMI, - [374032] = 2, + [334371] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15721), 1, - anon_sym_DQUOTE, - [374039] = 2, + ACTIONS(14908), 1, + anon_sym_SEMI, + [334378] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15723), 1, + ACTIONS(14910), 1, anon_sym_RPAREN, - [374046] = 2, + [334385] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11477), 1, - sym_identifier, - [374053] = 2, + ACTIONS(14912), 1, + anon_sym_RPAREN, + [334392] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15725), 1, - sym_raw_string_delimiter, - [374060] = 2, + ACTIONS(14914), 1, + anon_sym_LPAREN2, + [334399] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15727), 1, + ACTIONS(14916), 1, anon_sym_SEMI, - [374067] = 2, + [334406] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5178), 1, + ACTIONS(14918), 1, anon_sym_SEMI, - [374074] = 2, - ACTIONS(10969), 1, + [334413] = 2, + ACTIONS(10479), 1, sym_comment, - ACTIONS(15729), 1, + ACTIONS(13558), 1, aux_sym_preproc_include_token2, - [374081] = 2, + [334420] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14801), 1, - anon_sym_RBRACE, - [374088] = 2, + ACTIONS(14920), 1, + anon_sym_DQUOTE, + [334427] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15731), 1, + ACTIONS(14922), 1, anon_sym_LPAREN2, - [374095] = 2, + [334434] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15733), 1, - anon_sym_RPAREN, - [374102] = 2, - ACTIONS(10969), 1, + ACTIONS(14924), 1, + sym_identifier, + [334441] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15735), 1, - aux_sym_preproc_include_token2, - [374109] = 2, + ACTIONS(14926), 1, + aux_sym_preproc_if_token2, + [334448] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15737), 1, - sym_raw_string_delimiter, - [374116] = 2, + ACTIONS(14928), 1, + anon_sym_COMMA, + [334455] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15739), 1, + ACTIONS(14930), 1, aux_sym_preproc_if_token2, - [374123] = 2, + [334462] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15741), 1, - anon_sym_SEMI, - [374130] = 2, + ACTIONS(14932), 1, + anon_sym_DQUOTE, + [334469] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14934), 1, + anon_sym_DQUOTE, + [334476] = 2, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(14936), 1, + aux_sym_preproc_include_token2, + [334483] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15743), 1, + ACTIONS(14938), 1, + anon_sym_DQUOTE, + [334490] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14940), 1, anon_sym_STAR, - [374137] = 2, + [334497] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15745), 1, + ACTIONS(14942), 1, aux_sym_preproc_if_token2, - [374144] = 2, + [334504] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15747), 1, - anon_sym_LPAREN2, - [374151] = 2, + ACTIONS(12393), 1, + anon_sym_SEMI, + [334511] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15749), 1, + ACTIONS(13012), 1, anon_sym_RPAREN, - [374158] = 2, + [334518] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15751), 1, - sym_raw_string_delimiter, - [374165] = 2, + ACTIONS(14944), 1, + anon_sym_RPAREN, + [334525] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15753), 1, + ACTIONS(14946), 1, + anon_sym_SEMI, + [334532] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14948), 1, anon_sym_RPAREN, - [374172] = 2, + [334539] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14950), 1, + anon_sym_SEMI, + [334546] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14952), 1, + anon_sym_EQ, + [334553] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15755), 1, + ACTIONS(14954), 1, aux_sym_preproc_if_token2, - [374179] = 2, - ACTIONS(5669), 1, - aux_sym_preproc_include_token2, - ACTIONS(10969), 1, + [334560] = 2, + ACTIONS(10479), 1, sym_comment, - [374186] = 2, + ACTIONS(13666), 1, + aux_sym_preproc_include_token2, + [334567] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15757), 1, - anon_sym_LPAREN2, - [374193] = 2, + ACTIONS(14956), 1, + anon_sym_SEMI, + [334574] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15759), 1, - anon_sym_RPAREN, - [374200] = 2, + ACTIONS(14958), 1, + anon_sym_DQUOTE, + [334581] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15761), 1, - sym_raw_string_delimiter, - [374207] = 2, + ACTIONS(14960), 1, + anon_sym_RPAREN, + [334588] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15763), 1, + ACTIONS(14962), 1, aux_sym_preproc_if_token2, - [374214] = 2, + [334595] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15765), 1, + ACTIONS(14964), 1, anon_sym_RPAREN, - [374221] = 2, + [334602] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15767), 1, - sym_raw_string_delimiter, - [374228] = 2, + ACTIONS(14966), 1, + anon_sym_RPAREN, + [334609] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15769), 1, + ACTIONS(14968), 1, anon_sym_RPAREN, - [374235] = 2, + [334616] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15771), 1, + ACTIONS(14970), 1, anon_sym_RPAREN, - [374242] = 2, + [334623] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15773), 1, - sym_raw_string_delimiter, - [374249] = 2, + ACTIONS(14972), 1, + anon_sym_COLON, + [334630] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15775), 1, - anon_sym_SEMI, - [374256] = 2, + ACTIONS(14974), 1, + aux_sym_preproc_if_token2, + [334637] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15777), 1, + ACTIONS(14976), 1, anon_sym_RPAREN, - [374263] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15779), 1, - sym_raw_string_delimiter, - [374270] = 2, + [334644] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15781), 1, - anon_sym_SEMI, - [374277] = 2, + ACTIONS(14978), 1, + sym_identifier, + [334651] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15783), 1, + ACTIONS(14980), 1, anon_sym_RPAREN, - [374284] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15785), 1, - sym_raw_string_delimiter, - [374291] = 2, + [334658] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15787), 1, + ACTIONS(9273), 1, anon_sym_RPAREN, - [374298] = 2, + [334665] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15789), 1, - sym_raw_string_delimiter, - [374305] = 2, + ACTIONS(14982), 1, + anon_sym_RPAREN, + [334672] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15791), 1, + ACTIONS(9213), 1, anon_sym_RPAREN, - [374312] = 2, + [334679] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15793), 1, - sym_raw_string_delimiter, - [374319] = 2, + ACTIONS(14984), 1, + aux_sym_preproc_if_token2, + [334686] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15795), 1, + ACTIONS(9275), 1, anon_sym_RPAREN, - [374326] = 2, + [334693] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15797), 1, - sym_raw_string_delimiter, - [374333] = 2, + ACTIONS(14986), 1, + anon_sym_SEMI, + [334700] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11882), 1, - anon_sym_RPAREN, - [374340] = 2, + ACTIONS(14988), 1, + anon_sym_COMMA, + [334707] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15799), 1, + ACTIONS(9215), 1, anon_sym_RPAREN, - [374347] = 2, - ACTIONS(3), 1, + [334714] = 2, + ACTIONS(10479), 1, sym_comment, - ACTIONS(15801), 1, - anon_sym_LPAREN2, - [374354] = 2, + ACTIONS(14990), 1, + aux_sym_preproc_include_token2, + [334721] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15803), 1, - anon_sym_LPAREN2, - [374361] = 2, + ACTIONS(14992), 1, + anon_sym_SEMI, + [334728] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15805), 1, - anon_sym_LPAREN2, - [374368] = 2, + ACTIONS(9167), 1, + anon_sym_SEMI, + [334735] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15807), 1, - anon_sym_LPAREN2, - [374375] = 2, + ACTIONS(9269), 1, + anon_sym_SEMI, + [334742] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15809), 1, + ACTIONS(14994), 1, aux_sym_preproc_if_token2, - [374382] = 2, + [334749] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15811), 1, - anon_sym_LPAREN2, - [374389] = 2, + ACTIONS(14996), 1, + anon_sym_RPAREN, + [334756] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15813), 1, - anon_sym_LPAREN2, - [374396] = 2, + ACTIONS(14998), 1, + sym_identifier, + [334763] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15815), 1, - anon_sym_RPAREN, - [374403] = 2, + ACTIONS(15000), 1, + aux_sym_preproc_if_token2, + [334770] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15817), 1, - anon_sym_RPAREN, - [374410] = 2, + ACTIONS(15002), 1, + aux_sym_preproc_if_token2, + [334777] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15819), 1, + ACTIONS(15004), 1, anon_sym_RPAREN, - [374417] = 2, + [334784] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15821), 1, - anon_sym_COLON, - [374424] = 2, + ACTIONS(15006), 1, + aux_sym_preproc_if_token2, + [334791] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15823), 1, - anon_sym_while, - [374431] = 2, + ACTIONS(15008), 1, + aux_sym_preproc_if_token2, + [334798] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15825), 1, - sym_raw_string_delimiter, - [374438] = 2, + ACTIONS(15010), 1, + anon_sym_LPAREN2, + [334805] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15827), 1, - sym_identifier, - [374445] = 2, + ACTIONS(15012), 1, + aux_sym_preproc_if_token2, + [334812] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15829), 1, - anon_sym_RPAREN, - [374452] = 2, + ACTIONS(15014), 1, + aux_sym_preproc_if_token2, + [334819] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15831), 1, - anon_sym_EQ, - [374459] = 2, + ACTIONS(15016), 1, + anon_sym_RBRACK, + [334826] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15833), 1, - sym_raw_string_content, - [374466] = 2, + ACTIONS(15018), 1, + anon_sym_DQUOTE, + [334833] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15835), 1, - anon_sym_RPAREN, - [374473] = 2, - ACTIONS(3), 1, + ACTIONS(15020), 1, + anon_sym_DQUOTE, + [334840] = 2, + ACTIONS(10479), 1, sym_comment, - ACTIONS(15837), 1, - anon_sym_STAR, - [374480] = 2, + ACTIONS(10651), 1, + aux_sym_preproc_include_token2, + [334847] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15839), 1, + ACTIONS(15022), 1, anon_sym_SEMI, - [374487] = 2, + [334854] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11814), 1, - anon_sym_RBRACE, - [374494] = 2, + ACTIONS(15024), 1, + sym_identifier, + [334861] = 2, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(15026), 1, + aux_sym_preproc_include_token2, + [334868] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15841), 1, + ACTIONS(15028), 1, sym_identifier, - [374501] = 2, + [334875] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15843), 1, - anon_sym_COMMA, - [374508] = 2, + ACTIONS(15030), 1, + anon_sym_RPAREN, + [334882] = 2, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(15032), 1, + aux_sym_preproc_include_token2, + [334889] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15845), 1, - anon_sym_RPAREN, - [374515] = 2, + ACTIONS(15034), 1, + aux_sym_preproc_if_token2, + [334896] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15036), 1, + aux_sym_preproc_if_token2, + [334903] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15847), 1, + ACTIONS(15038), 1, + aux_sym_preproc_if_token2, + [334910] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15040), 1, anon_sym_RPAREN, - [374522] = 2, + [334917] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9667), 1, + ACTIONS(15042), 1, anon_sym_SEMI, - [374529] = 2, + [334924] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15849), 1, - aux_sym_preproc_if_token2, - [374536] = 2, + ACTIONS(15044), 1, + sym_auto, + [334931] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15851), 1, + ACTIONS(15046), 1, anon_sym_SEMI, - [374543] = 2, + [334938] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15853), 1, - anon_sym_LBRACE, - [374550] = 2, + ACTIONS(15048), 1, + aux_sym_preproc_if_token2, + [334945] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15855), 1, - anon_sym_RPAREN, - [374557] = 2, + ACTIONS(15050), 1, + sym_identifier, + [334952] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15857), 1, - anon_sym_RBRACE, - [374564] = 2, + ACTIONS(15052), 1, + anon_sym_SEMI, + [334959] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15859), 1, - sym_identifier, - [374571] = 2, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + [334966] = 2, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(13196), 1, + aux_sym_preproc_include_token2, + [334973] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15861), 1, + ACTIONS(15054), 1, anon_sym_SEMI, - [374578] = 2, + [334980] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15863), 1, - anon_sym_DQUOTE, - [374585] = 2, + ACTIONS(15056), 1, + aux_sym_preproc_if_token2, + [334987] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15865), 1, - sym_auto, - [374592] = 2, + ACTIONS(15058), 1, + sym_identifier, + [334994] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15867), 1, - anon_sym_STAR, - [374599] = 2, + ACTIONS(7340), 1, + anon_sym_RPAREN, + [335001] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15869), 1, - anon_sym_STAR, - [374606] = 2, + ACTIONS(15060), 1, + anon_sym_RPAREN, + [335008] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15871), 1, - anon_sym_SEMI, - [374613] = 2, + ACTIONS(15062), 1, + sym_identifier, + [335015] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15873), 1, + ACTIONS(15064), 1, anon_sym_RPAREN, - [374620] = 2, + [335022] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15066), 1, + aux_sym_preproc_if_token2, + [335029] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15875), 1, + ACTIONS(15068), 1, anon_sym_SEMI, - [374627] = 2, + [335036] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14669), 1, + ACTIONS(13822), 1, anon_sym_RBRACE, - [374634] = 2, + [335043] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15877), 1, - sym_identifier, - [374641] = 2, + ACTIONS(9047), 1, + anon_sym_RBRACE, + [335050] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15879), 1, - anon_sym_SEMI, - [374648] = 2, + ACTIONS(15070), 1, + anon_sym_LPAREN2, + [335057] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15881), 1, - anon_sym_RPAREN, - [374655] = 2, + ACTIONS(15072), 1, + anon_sym_SEMI, + [335064] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8169), 1, - sym_identifier, - [374662] = 2, + ACTIONS(15074), 1, + anon_sym_LPAREN2, + [335071] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15883), 1, - anon_sym_RPAREN, - [374669] = 2, + ACTIONS(7430), 1, + sym_identifier, + [335078] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15885), 1, - anon_sym_COLON, - [374676] = 2, + ACTIONS(15076), 1, + anon_sym_DQUOTE, + [335085] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15887), 1, + ACTIONS(15078), 1, anon_sym_SEMI, - [374683] = 2, + [335092] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15889), 1, - sym_auto, - [374690] = 2, + ACTIONS(15080), 1, + anon_sym_DQUOTE, + [335099] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13396), 1, + ACTIONS(12077), 1, anon_sym_SEMI, - [374697] = 2, + [335106] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12455), 1, + ACTIONS(15082), 1, anon_sym_SEMI, - [374704] = 2, + [335113] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15891), 1, + ACTIONS(15084), 1, anon_sym_DQUOTE, - [374711] = 2, + [335120] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15893), 1, - sym_identifier, - [374718] = 2, + ACTIONS(15086), 1, + aux_sym_preproc_if_token2, + [335127] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15895), 1, - sym_identifier, - [374725] = 2, + ACTIONS(13864), 1, + anon_sym_RBRACE, + [335134] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15897), 1, - anon_sym_SEMI, - [374732] = 2, + ACTIONS(15088), 1, + anon_sym_STAR, + [335141] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15899), 1, - anon_sym_RPAREN, - [374739] = 2, + ACTIONS(15090), 1, + anon_sym_STAR, + [335148] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15901), 1, - aux_sym_preproc_if_token2, - [374746] = 2, + ACTIONS(15092), 1, + anon_sym_SEMI, + [335155] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14817), 1, - anon_sym_RBRACE, - [374753] = 2, - ACTIONS(10969), 1, + ACTIONS(15094), 1, + anon_sym_RPAREN, + [335162] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15096), 1, + anon_sym_SEMI, + [335169] = 2, + ACTIONS(10479), 1, sym_comment, - ACTIONS(15903), 1, + ACTIONS(15098), 1, aux_sym_preproc_include_token2, - [374760] = 2, + [335176] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15905), 1, + ACTIONS(15100), 1, anon_sym_SEMI, - [374767] = 2, - ACTIONS(10969), 1, + [335183] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15907), 1, - aux_sym_preproc_include_token2, - [374774] = 2, + ACTIONS(15102), 1, + anon_sym_STAR, + [335190] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15909), 1, - anon_sym_DQUOTE, - [374781] = 2, + ACTIONS(15104), 1, + sym_identifier, + [335197] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15911), 1, + ACTIONS(15106), 1, anon_sym_SEMI, - [374788] = 2, + [335204] = 2, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(15108), 1, + aux_sym_preproc_include_token2, + [335211] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15913), 1, - anon_sym_SEMI, - [374795] = 2, + ACTIONS(15110), 1, + sym_identifier, + [335218] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11770), 1, + ACTIONS(8977), 1, anon_sym_RBRACE, - [374802] = 2, + [335225] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15915), 1, - aux_sym_preproc_if_token2, - [374809] = 2, + ACTIONS(15112), 1, + anon_sym_RPAREN, + [335232] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15917), 1, + ACTIONS(15114), 1, anon_sym_RPAREN, - [374816] = 2, + [335239] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15919), 1, - aux_sym_preproc_if_token2, - [374823] = 2, + ACTIONS(15116), 1, + anon_sym_LPAREN2, + [335246] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15921), 1, + ACTIONS(15118), 1, anon_sym_LPAREN2, - [374830] = 2, + [335253] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15923), 1, + ACTIONS(15120), 1, anon_sym_SEMI, - [374837] = 2, + [335260] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7586), 1, - sym_identifier, - [374844] = 2, + ACTIONS(15122), 1, + anon_sym_RPAREN, + [335267] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15124), 1, + anon_sym_RPAREN, + [335274] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15925), 1, + ACTIONS(13994), 1, anon_sym_SEMI, - [374851] = 2, - ACTIONS(10969), 1, + [335281] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15927), 1, - aux_sym_preproc_include_token2, - [374858] = 2, + ACTIONS(15126), 1, + sym_identifier, + [335288] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15929), 1, - anon_sym_DQUOTE, - [374865] = 2, + ACTIONS(13788), 1, + anon_sym_RBRACE, + [335295] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15931), 1, + ACTIONS(15128), 1, anon_sym_SEMI, - [374872] = 2, + [335302] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15933), 1, + ACTIONS(15130), 1, anon_sym_RPAREN, - [374879] = 2, + [335309] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15935), 1, - sym_auto, - [374886] = 2, + ACTIONS(15132), 1, + anon_sym_RPAREN, + [335316] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15937), 1, - anon_sym_DQUOTE, - [374893] = 2, + ACTIONS(15134), 1, + sym_identifier, + [335323] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15939), 1, - anon_sym_STAR, - [374900] = 2, + ACTIONS(15136), 1, + anon_sym_RPAREN, + [335330] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15941), 1, - anon_sym_LPAREN2, - [374907] = 2, + ACTIONS(15138), 1, + anon_sym_RPAREN, + [335337] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15943), 1, - anon_sym_LPAREN2, - [374914] = 2, + ACTIONS(15140), 1, + anon_sym_DQUOTE, + [335344] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15945), 1, - anon_sym_LPAREN2, - [374921] = 2, + ACTIONS(9169), 1, + anon_sym_SEMI, + [335351] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15947), 1, - anon_sym_LPAREN2, - [374928] = 2, + ACTIONS(9023), 1, + anon_sym_RBRACE, + [335358] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15949), 1, + ACTIONS(15142), 1, anon_sym_SEMI, - [374935] = 2, + [335365] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15951), 1, - anon_sym_LPAREN2, - [374942] = 2, + ACTIONS(15144), 1, + anon_sym_DQUOTE, + [335372] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15953), 1, - anon_sym_LPAREN2, - [374949] = 2, + ACTIONS(9159), 1, + anon_sym_SEMI, + [335379] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15955), 1, - anon_sym_LPAREN2, - [374956] = 2, - ACTIONS(10969), 1, + ACTIONS(11196), 1, + anon_sym_RBRACE, + [335386] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15957), 1, - aux_sym_preproc_include_token2, - [374963] = 2, + ACTIONS(15146), 1, + anon_sym_SEMI, + [335393] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15959), 1, - anon_sym_while, - [374970] = 2, + ACTIONS(15148), 1, + anon_sym_SEMI, + [335400] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15961), 1, - aux_sym_preproc_if_token2, - [374977] = 2, + ACTIONS(15150), 1, + anon_sym_COLON, + [335407] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8398), 1, - sym_identifier, - [374984] = 2, + ACTIONS(15152), 1, + anon_sym_RPAREN, + [335414] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15963), 1, - anon_sym_DQUOTE, - [374991] = 2, + ACTIONS(15154), 1, + anon_sym_RPAREN, + [335421] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15965), 1, - anon_sym_EQ, - [374998] = 2, + ACTIONS(15156), 1, + sym_identifier, + [335428] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15967), 1, - sym_raw_string_content, - [375005] = 2, + ACTIONS(8943), 1, + anon_sym_RPAREN, + [335435] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15969), 1, - anon_sym_STAR, - [375012] = 2, + ACTIONS(15158), 1, + anon_sym_RPAREN, + [335442] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15971), 1, + ACTIONS(15160), 1, anon_sym_RPAREN, - [375019] = 2, + [335449] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15973), 1, - anon_sym_COMMA, - [375026] = 2, + ACTIONS(15162), 1, + anon_sym_RPAREN, + [335456] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15975), 1, - anon_sym_LBRACE, - [375033] = 2, + ACTIONS(15164), 1, + anon_sym_SEMI, + [335463] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15977), 1, + ACTIONS(15166), 1, anon_sym_SEMI, - [375040] = 2, + [335470] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15979), 1, - sym_auto, - [375047] = 2, + ACTIONS(11067), 1, + anon_sym_RBRACE, + [335477] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15981), 1, - anon_sym_RPAREN, - [375054] = 2, + ACTIONS(15168), 1, + anon_sym_LPAREN2, + [335484] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15983), 1, - anon_sym_COLON, - [375061] = 2, + ACTIONS(15170), 1, + anon_sym_LPAREN2, + [335491] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15985), 1, - aux_sym_preproc_if_token2, - [375068] = 2, + ACTIONS(15172), 1, + anon_sym_LPAREN2, + [335498] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15987), 1, - aux_sym_preproc_if_token2, - [375075] = 2, + ACTIONS(15174), 1, + sym_identifier, + [335505] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15989), 1, + ACTIONS(15176), 1, anon_sym_LPAREN2, - [375082] = 2, + [335512] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15991), 1, - anon_sym_LPAREN2, - [375089] = 2, + ACTIONS(15178), 1, + anon_sym_SEMI, + [335519] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15993), 1, - anon_sym_LPAREN2, - [375096] = 2, + ACTIONS(15180), 1, + anon_sym_SEMI, + [335526] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14819), 1, + ACTIONS(8951), 1, anon_sym_RBRACE, - [375103] = 2, + [335533] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15995), 1, - anon_sym_LPAREN2, - [375110] = 2, + ACTIONS(15182), 1, + anon_sym_RPAREN, + [335540] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15997), 1, - anon_sym_LPAREN2, - [375117] = 2, + ACTIONS(15184), 1, + anon_sym_while, + [335547] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15999), 1, + ACTIONS(15186), 1, anon_sym_SEMI, - [375124] = 2, + [335554] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16001), 1, - aux_sym_preproc_if_token2, - [375131] = 2, + ACTIONS(15188), 1, + anon_sym_SEMI, + [335561] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16003), 1, - anon_sym_while, - [375138] = 2, + ACTIONS(9131), 1, + anon_sym_SEMI, + [335568] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9338), 1, - anon_sym_RBRACE, - [375145] = 2, + ACTIONS(15190), 1, + sym_identifier, + [335575] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16005), 1, - aux_sym_preproc_if_token2, - [375152] = 2, + ACTIONS(15192), 1, + anon_sym_EQ, + [335582] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16007), 1, - anon_sym_SEMI, - [375159] = 2, + ACTIONS(15194), 1, + sym_raw_string_content, + [335589] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16009), 1, - anon_sym_EQ, - [375166] = 2, + ACTIONS(15196), 1, + anon_sym_STAR, + [335596] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16011), 1, - sym_raw_string_content, - [375173] = 2, + ACTIONS(12884), 1, + anon_sym_SEMI, + [335603] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14677), 1, + ACTIONS(15198), 1, anon_sym_SEMI, - [375180] = 2, + [335610] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16013), 1, + ACTIONS(15200), 1, anon_sym_COMMA, - [375187] = 2, + [335617] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16015), 1, - anon_sym_RPAREN, - [375194] = 2, + ACTIONS(15202), 1, + sym_identifier, + [335624] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16017), 1, - anon_sym_SEMI, - [375201] = 2, + ACTIONS(15204), 1, + sym_identifier, + [335631] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11818), 1, + ACTIONS(15206), 1, anon_sym_RBRACE, - [375208] = 2, + [335638] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16019), 1, + ACTIONS(15208), 1, anon_sym_RPAREN, - [375215] = 2, + [335645] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16021), 1, + ACTIONS(15210), 1, anon_sym_COLON, - [375222] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16023), 1, - anon_sym_SEMI, - [375229] = 2, + [335652] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16025), 1, + ACTIONS(15212), 1, aux_sym_preproc_if_token2, - [375236] = 2, + [335659] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16027), 1, - anon_sym_LPAREN2, - [375243] = 2, + ACTIONS(15214), 1, + anon_sym_SEMI, + [335666] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16029), 1, + ACTIONS(15216), 1, anon_sym_LPAREN2, - [375250] = 2, + [335673] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16031), 1, + ACTIONS(15218), 1, anon_sym_LPAREN2, - [375257] = 2, + [335680] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16033), 1, - anon_sym_SEMI, - [375264] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16035), 1, - anon_sym_LPAREN2, - [375271] = 2, + ACTIONS(15220), 1, + sym_identifier, + [335687] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16037), 1, + ACTIONS(15222), 1, anon_sym_LPAREN2, - [375278] = 2, + [335694] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16039), 1, - anon_sym_SEMI, - [375285] = 2, + ACTIONS(15224), 1, + aux_sym_preproc_if_token2, + [335701] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16041), 1, - sym_identifier, - [375292] = 2, + ACTIONS(15226), 1, + aux_sym_preproc_if_token2, + [335708] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16043), 1, + ACTIONS(15228), 1, anon_sym_while, - [375299] = 2, + [335715] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16045), 1, - anon_sym_SEMI, - [375306] = 2, + ACTIONS(15230), 1, + sym_auto, + [335722] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16047), 1, - anon_sym_DQUOTE, - [375313] = 2, + ACTIONS(15232), 1, + anon_sym_SEMI, + [335729] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16049), 1, - anon_sym_DQUOTE, - [375320] = 2, + ACTIONS(5088), 1, + anon_sym_SEMI, + [335736] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16051), 1, + ACTIONS(15234), 1, anon_sym_EQ, - [375327] = 2, + [335743] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16053), 1, + ACTIONS(15236), 1, sym_raw_string_content, - [375334] = 2, + [335750] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15238), 1, + anon_sym_SEMI, + [335757] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16055), 1, + ACTIONS(15240), 1, anon_sym_COMMA, - [375341] = 2, + [335764] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12400), 1, + ACTIONS(15242), 1, anon_sym_SEMI, - [375348] = 2, + [335771] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16057), 1, + ACTIONS(11993), 1, anon_sym_SEMI, - [375355] = 2, + [335778] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16059), 1, - anon_sym_SEMI, - [375362] = 2, + ACTIONS(15244), 1, + sym_auto, + [335785] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16061), 1, + ACTIONS(15246), 1, anon_sym_RPAREN, - [375369] = 2, + [335792] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16063), 1, + ACTIONS(15248), 1, anon_sym_COLON, - [375376] = 2, + [335799] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14679), 1, - anon_sym_RBRACE, - [375383] = 2, + ACTIONS(9211), 1, + anon_sym_SEMI, + [335806] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15250), 1, + anon_sym_SEMI, + [335813] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16065), 1, + ACTIONS(15252), 1, anon_sym_LPAREN2, - [375390] = 2, + [335820] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16067), 1, + ACTIONS(15254), 1, anon_sym_LPAREN2, - [375397] = 2, + [335827] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16069), 1, + ACTIONS(15256), 1, anon_sym_RPAREN, - [375404] = 2, + [335834] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16071), 1, + ACTIONS(15258), 1, anon_sym_LPAREN2, - [375411] = 2, - ACTIONS(3), 1, + [335841] = 2, + ACTIONS(5647), 1, + aux_sym_preproc_include_token2, + ACTIONS(10479), 1, sym_comment, - ACTIONS(16073), 1, - anon_sym_RPAREN, - [375418] = 2, + [335848] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16075), 1, - sym_identifier, - [375425] = 2, + ACTIONS(15260), 1, + anon_sym_SEMI, + [335855] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16077), 1, + ACTIONS(15262), 1, anon_sym_while, - [375432] = 2, + [335862] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16079), 1, - anon_sym_DQUOTE, - [375439] = 2, - ACTIONS(10969), 1, + ACTIONS(8991), 1, + anon_sym_RBRACE, + [335869] = 2, + ACTIONS(10479), 1, sym_comment, - ACTIONS(16081), 1, + ACTIONS(15264), 1, aux_sym_preproc_include_token2, - [375446] = 2, + [335876] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9175), 1, + anon_sym_RPAREN, + [335883] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16083), 1, + ACTIONS(15266), 1, anon_sym_EQ, - [375453] = 2, + [335890] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16085), 1, + ACTIONS(15268), 1, sym_raw_string_content, - [375460] = 2, + [335897] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16087), 1, + ACTIONS(15270), 1, anon_sym_COMMA, - [375467] = 2, + [335904] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12918), 1, + ACTIONS(15272), 1, anon_sym_SEMI, - [375474] = 2, + [335911] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16089), 1, - anon_sym_DQUOTE, - [375481] = 2, + ACTIONS(15274), 1, + anon_sym_SEMI, + [335918] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16091), 1, - aux_sym_preproc_if_token2, - [375488] = 2, + ACTIONS(11097), 1, + anon_sym_RBRACE, + [335925] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16093), 1, + ACTIONS(15276), 1, anon_sym_RPAREN, - [375495] = 2, + [335932] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16095), 1, + ACTIONS(15278), 1, anon_sym_COLON, - [375502] = 2, - ACTIONS(10969), 1, + [335939] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(16097), 1, - aux_sym_preproc_include_token2, - [375509] = 2, + ACTIONS(15280), 1, + sym_identifier, + [335946] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16099), 1, + ACTIONS(15282), 1, anon_sym_LPAREN2, - [375516] = 2, + [335953] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16101), 1, + ACTIONS(15284), 1, anon_sym_LPAREN2, - [375523] = 2, + [335960] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16103), 1, + ACTIONS(15286), 1, anon_sym_RPAREN, - [375530] = 2, + [335967] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16105), 1, + ACTIONS(15288), 1, anon_sym_LPAREN2, - [375537] = 2, + [335974] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9386), 1, - anon_sym_RBRACE, - [375544] = 2, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(16107), 1, - aux_sym_preproc_include_token2, - [375551] = 2, + ACTIONS(15290), 1, + sym_identifier, + [335981] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16109), 1, + ACTIONS(15292), 1, anon_sym_RPAREN, - [375558] = 2, + [335988] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7571), 1, - anon_sym_RPAREN, - [375565] = 2, + ACTIONS(15294), 1, + anon_sym_while, + [335995] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11085), 1, + anon_sym_RBRACE, + [336002] = 2, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(15296), 1, + aux_sym_preproc_include_token2, + [336009] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16111), 1, + ACTIONS(15298), 1, anon_sym_EQ, - [375572] = 2, + [336016] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16113), 1, + ACTIONS(15300), 1, sym_raw_string_content, - [375579] = 2, + [336023] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16115), 1, + ACTIONS(15302), 1, anon_sym_COMMA, - [375586] = 2, + [336030] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16117), 1, - aux_sym_preproc_if_token2, - [375593] = 2, + ACTIONS(15304), 1, + ts_builtin_sym_end, + [336037] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11824), 1, - anon_sym_RBRACE, - [375600] = 2, + ACTIONS(15306), 1, + anon_sym_RBRACK, + [336044] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13419), 1, - anon_sym_SEMI, - [375607] = 2, + ACTIONS(14074), 1, + anon_sym_RBRACE, + [336051] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16119), 1, + ACTIONS(15308), 1, anon_sym_RPAREN, - [375614] = 2, + [336058] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16121), 1, + ACTIONS(15310), 1, anon_sym_COLON, - [375621] = 2, + [336065] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16123), 1, - aux_sym_preproc_if_token2, - [375628] = 2, + ACTIONS(15312), 1, + anon_sym_SEMI, + [336072] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16125), 1, + ACTIONS(15314), 1, anon_sym_LPAREN2, - [375635] = 2, + [336079] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16127), 1, + ACTIONS(15316), 1, anon_sym_LPAREN2, - [375642] = 2, + [336086] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16129), 1, - sym_identifier, - [375649] = 2, + ACTIONS(13892), 1, + anon_sym_SEMI, + [336093] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16131), 1, + ACTIONS(15318), 1, anon_sym_LPAREN2, - [375656] = 2, + [336100] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16133), 1, - aux_sym_preproc_if_token2, - [375663] = 2, + ACTIONS(11548), 1, + anon_sym_RPAREN, + [336107] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16135), 1, + ACTIONS(15320), 1, anon_sym_RPAREN, - [375670] = 2, + [336114] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16137), 1, + ACTIONS(15322), 1, aux_sym_preproc_if_token2, - [375677] = 2, + [336121] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16139), 1, + ACTIONS(15324), 1, anon_sym_SEMI, - [375684] = 2, + [336128] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16141), 1, + ACTIONS(15326), 1, anon_sym_EQ, - [375691] = 2, + [336135] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16143), 1, + ACTIONS(15328), 1, sym_raw_string_content, - [375698] = 2, + [336142] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16145), 1, + ACTIONS(15330), 1, anon_sym_COMMA, - [375705] = 2, + [336149] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16147), 1, - anon_sym_RBRACK, - [375712] = 2, + ACTIONS(15332), 1, + anon_sym_LBRACE, + [336156] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16149), 1, - anon_sym_RPAREN, - [375719] = 2, + ACTIONS(15334), 1, + sym_raw_string_delimiter, + [336163] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16151), 1, - anon_sym_SEMI, - [375726] = 2, + ACTIONS(15336), 1, + aux_sym_preproc_if_token2, + [336170] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16153), 1, + ACTIONS(15338), 1, anon_sym_RPAREN, - [375733] = 2, + [336177] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16155), 1, + ACTIONS(15340), 1, anon_sym_COLON, - [375740] = 2, + [336184] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16157), 1, - anon_sym_RPAREN, - [375747] = 2, + ACTIONS(11160), 1, + anon_sym_RBRACE, + [336191] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16159), 1, + ACTIONS(15342), 1, anon_sym_LPAREN2, - [375754] = 2, + [336198] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16161), 1, + ACTIONS(15344), 1, anon_sym_LPAREN2, - [375761] = 2, + [336205] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5158), 1, - anon_sym_SEMI, - [375768] = 2, + ACTIONS(15346), 1, + anon_sym_STAR, + [336212] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16163), 1, + ACTIONS(15348), 1, anon_sym_LPAREN2, - [375775] = 2, + [336219] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14685), 1, - anon_sym_SEMI, - [375782] = 2, + ACTIONS(15350), 1, + anon_sym_RPAREN, + [336226] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16165), 1, + ACTIONS(15352), 1, anon_sym_SEMI, - [375789] = 2, + [336233] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16167), 1, - sym_auto, - [375796] = 2, + ACTIONS(13826), 1, + anon_sym_SEMI, + [336240] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16169), 1, - anon_sym_RPAREN, - [375803] = 2, + ACTIONS(15354), 1, + anon_sym_SEMI, + [336247] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16171), 1, + ACTIONS(15356), 1, anon_sym_EQ, - [375810] = 2, + [336254] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16173), 1, + ACTIONS(15358), 1, sym_raw_string_content, - [375817] = 2, + [336261] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16175), 1, + ACTIONS(15360), 1, anon_sym_COMMA, - [375824] = 2, + [336268] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16177), 1, - anon_sym_COLON, - [375831] = 2, + ACTIONS(15362), 1, + anon_sym_SEMI, + [336275] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16179), 1, - anon_sym_RPAREN, - [375838] = 2, + ACTIONS(12383), 1, + anon_sym_COLON, + [336282] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16181), 1, - anon_sym_RPAREN, - [375845] = 2, + ACTIONS(15364), 1, + anon_sym_SEMI, + [336289] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16183), 1, + ACTIONS(15366), 1, anon_sym_RPAREN, - [375852] = 2, + [336296] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16185), 1, + ACTIONS(15368), 1, anon_sym_COLON, - [375859] = 2, + [336303] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16187), 1, - anon_sym_RPAREN, - [375866] = 2, + ACTIONS(13894), 1, + anon_sym_RBRACE, + [336310] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16189), 1, + ACTIONS(15370), 1, anon_sym_LPAREN2, - [375873] = 2, + [336317] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16191), 1, + ACTIONS(15372), 1, anon_sym_LPAREN2, - [375880] = 2, + [336324] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16193), 1, - anon_sym_RPAREN, - [375887] = 2, + ACTIONS(15374), 1, + anon_sym_DQUOTE, + [336331] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16195), 1, + ACTIONS(15376), 1, anon_sym_LPAREN2, - [375894] = 2, + [336338] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16197), 1, - anon_sym_LPAREN2, - [375901] = 2, + ACTIONS(15378), 1, + anon_sym_SEMI, + [336345] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16199), 1, - anon_sym_RBRACK, - [375908] = 2, + ACTIONS(15380), 1, + anon_sym_RPAREN, + [336352] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15382), 1, + anon_sym_COLON, + [336359] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15384), 1, + anon_sym_SEMI, + [336366] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15386), 1, + anon_sym_EQ, + [336373] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16201), 1, + ACTIONS(15388), 1, sym_raw_string_content, - [375915] = 2, + [336380] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16203), 1, + ACTIONS(15390), 1, anon_sym_COMMA, - [375922] = 2, + [336387] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15392), 1, + aux_sym_preproc_if_token2, + [336394] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16205), 1, + ACTIONS(15394), 1, sym_identifier, - [375929] = 2, + [336401] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16207), 1, - sym_auto, - [375936] = 2, + ACTIONS(15396), 1, + anon_sym_SEMI, + [336408] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16209), 1, + ACTIONS(15398), 1, anon_sym_RPAREN, - [375943] = 2, + [336415] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16211), 1, + ACTIONS(15400), 1, anon_sym_COLON, - [375950] = 2, - ACTIONS(10969), 1, + [336422] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(16213), 1, - aux_sym_preproc_include_token2, - [375957] = 2, + ACTIONS(15402), 1, + anon_sym_LPAREN2, + [336429] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16215), 1, + ACTIONS(15404), 1, anon_sym_LPAREN2, - [375964] = 2, + [336436] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16217), 1, + ACTIONS(15406), 1, anon_sym_LPAREN2, - [375971] = 2, + [336443] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16219), 1, + ACTIONS(9217), 1, anon_sym_SEMI, - [375978] = 2, + [336450] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16221), 1, + ACTIONS(15408), 1, anon_sym_LPAREN2, - [375985] = 2, + [336457] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16223), 1, + ACTIONS(15410), 1, anon_sym_SEMI, - [375992] = 2, - ACTIONS(3), 1, + [336464] = 2, + ACTIONS(10479), 1, sym_comment, - ACTIONS(14851), 1, - anon_sym_RBRACE, - [375999] = 2, + ACTIONS(13686), 1, + aux_sym_preproc_include_token2, + [336471] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16225), 1, + ACTIONS(15412), 1, sym_raw_string_content, - [376006] = 2, + [336478] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16227), 1, + ACTIONS(15414), 1, anon_sym_COMMA, - [376013] = 2, + [336485] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16229), 1, + ACTIONS(15416), 1, anon_sym_SEMI, - [376020] = 2, + [336492] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16231), 1, - anon_sym_RPAREN, - [376027] = 2, + ACTIONS(15418), 1, + anon_sym_DQUOTE, + [336499] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16233), 1, - anon_sym_COLON, - [376034] = 2, + ACTIONS(15420), 1, + anon_sym_RPAREN, + [336506] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16235), 1, - anon_sym_SEMI, - [376041] = 2, + ACTIONS(15422), 1, + anon_sym_COLON, + [336513] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16237), 1, - anon_sym_LPAREN2, - [376048] = 2, + ACTIONS(15424), 1, + sym_identifier, + [336520] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16239), 1, + ACTIONS(15426), 1, anon_sym_LPAREN2, - [376055] = 2, + [336527] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16241), 1, + ACTIONS(15428), 1, anon_sym_RPAREN, - [376062] = 2, + [336534] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16243), 1, + ACTIONS(15430), 1, anon_sym_LPAREN2, - [376069] = 2, - ACTIONS(3), 1, + [336541] = 2, + ACTIONS(10479), 1, sym_comment, - ACTIONS(16245), 1, - anon_sym_DQUOTE, - [376076] = 2, + ACTIONS(15432), 1, + aux_sym_preproc_include_token2, + [336548] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16247), 1, + ACTIONS(15434), 1, anon_sym_RPAREN, - [376083] = 2, + [336555] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16249), 1, + ACTIONS(15436), 1, sym_raw_string_content, - [376090] = 2, + [336562] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16251), 1, - anon_sym_COMMA, - [376097] = 2, + ACTIONS(15438), 1, + anon_sym_SEMI, + [336569] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16253), 1, + ACTIONS(15440), 1, anon_sym_RPAREN, - [376104] = 2, + [336576] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16255), 1, - anon_sym_COLON, - [376111] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16257), 1, + ACTIONS(15442), 1, anon_sym_LPAREN2, - [376118] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12784), 1, - anon_sym_SEMI, - [376125] = 2, + [336583] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16259), 1, + ACTIONS(15444), 1, anon_sym_LPAREN2, - [376132] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16261), 1, - anon_sym_SEMI, - [376139] = 2, + [336590] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16263), 1, + ACTIONS(15446), 1, sym_raw_string_content, - [376146] = 2, + [336597] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16265), 1, + ACTIONS(15448), 1, anon_sym_RPAREN, - [376153] = 2, + [336604] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16267), 1, + ACTIONS(15450), 1, anon_sym_LPAREN2, - [376160] = 2, + [336611] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16269), 1, + ACTIONS(15452), 1, anon_sym_LPAREN2, - [376167] = 2, + [336618] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16271), 1, + ACTIONS(15454), 1, sym_raw_string_content, - [376174] = 2, + [336625] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16273), 1, + ACTIONS(15456), 1, anon_sym_RPAREN, - [376181] = 2, + [336632] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16275), 1, + ACTIONS(15458), 1, anon_sym_LPAREN2, - [376188] = 2, + [336639] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16277), 1, + ACTIONS(15460), 1, anon_sym_LPAREN2, - [376195] = 2, + [336646] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16279), 1, + ACTIONS(15462), 1, sym_raw_string_content, - [376202] = 2, + [336653] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16281), 1, + ACTIONS(15464), 1, anon_sym_RPAREN, - [376209] = 2, + [336660] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16283), 1, + ACTIONS(15466), 1, anon_sym_LPAREN2, - [376216] = 2, + [336667] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16285), 1, + ACTIONS(15468), 1, anon_sym_LPAREN2, - [376223] = 2, + [336674] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16287), 1, + ACTIONS(15470), 1, sym_raw_string_content, - [376230] = 2, + [336681] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16289), 1, + ACTIONS(15472), 1, anon_sym_RPAREN, - [376237] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16291), 1, - anon_sym_LPAREN2, - [376244] = 2, + [336688] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16293), 1, + ACTIONS(15474), 1, sym_raw_string_content, - [376251] = 2, + [336695] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16295), 1, + ACTIONS(15476), 1, anon_sym_RPAREN, - [376258] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16297), 1, - anon_sym_LPAREN2, - [376265] = 2, + [336702] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16299), 1, + ACTIONS(15478), 1, sym_raw_string_content, - [376272] = 2, + [336709] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16301), 1, + ACTIONS(15480), 1, anon_sym_RPAREN, - [376279] = 2, + [336716] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16303), 1, - anon_sym_LPAREN2, - [376286] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16305), 1, + ACTIONS(15482), 1, sym_raw_string_content, - [376293] = 2, + [336723] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16307), 1, + ACTIONS(15484), 1, anon_sym_RPAREN, - [376300] = 2, + [336730] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16309), 1, - anon_sym_LPAREN2, - [376307] = 2, + ACTIONS(15486), 1, + sym_raw_string_content, + [336737] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15488), 1, + anon_sym_RPAREN, + [336744] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16311), 1, + ACTIONS(15490), 1, sym_raw_string_content, - [376314] = 2, + [336751] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16313), 1, + ACTIONS(15492), 1, anon_sym_RPAREN, - [376321] = 2, + [336758] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16315), 1, + ACTIONS(15494), 1, sym_raw_string_content, - [376328] = 2, + [336765] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16317), 1, + ACTIONS(15496), 1, anon_sym_RPAREN, - [376335] = 2, + [336772] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16319), 1, + ACTIONS(15498), 1, sym_raw_string_content, - [376342] = 2, + [336779] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16321), 1, + ACTIONS(15500), 1, anon_sym_RPAREN, - [376349] = 2, + [336786] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16323), 1, + ACTIONS(15502), 1, sym_raw_string_content, - [376356] = 2, + [336793] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16325), 1, + ACTIONS(15504), 1, anon_sym_RPAREN, - [376363] = 2, + [336800] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16327), 1, - aux_sym_preproc_if_token2, - [376370] = 2, + ACTIONS(15506), 1, + anon_sym_SEMI, + [336807] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16329), 1, - anon_sym_SEMI, - [376377] = 2, + ACTIONS(15508), 1, + aux_sym_preproc_if_token2, + [336814] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16331), 1, + ACTIONS(15510), 1, anon_sym_LPAREN2, - [376384] = 2, + [336821] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16333), 1, + ACTIONS(15512), 1, anon_sym_LPAREN2, - [376391] = 2, + [336828] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16335), 1, + ACTIONS(15514), 1, sym_identifier, - [376398] = 2, + [336835] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16337), 1, - aux_sym_preproc_if_token2, - [376405] = 2, + ACTIONS(15516), 1, + anon_sym_SEMI, + [336842] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14853), 1, - anon_sym_RBRACE, - [376412] = 2, + ACTIONS(15518), 1, + aux_sym_preproc_if_token2, + [336849] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16339), 1, + ACTIONS(15520), 1, anon_sym_SEMI, - [376419] = 2, + [336856] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16341), 1, + ACTIONS(15522), 1, anon_sym_DQUOTE, - [376426] = 2, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(13960), 1, - aux_sym_preproc_include_token2, - [376433] = 2, + [336863] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16343), 1, - anon_sym_DQUOTE, - [376440] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16345), 1, - anon_sym_RPAREN, - [376447] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16347), 1, + ACTIONS(15524), 1, anon_sym_SEMI, - [376454] = 2, + [336870] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16349), 1, - aux_sym_preproc_if_token2, - [376461] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16351), 1, - aux_sym_preproc_if_token2, - [376468] = 2, + ACTIONS(15526), 1, + anon_sym_DQUOTE, + [336877] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16353), 1, + ACTIONS(12776), 1, anon_sym_SEMI, - [376475] = 2, + [336884] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16355), 1, - anon_sym_STAR, - [376482] = 2, + ACTIONS(15528), 1, + anon_sym_RPAREN, + [336891] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16357), 1, + ACTIONS(15530), 1, anon_sym_RPAREN, - [376489] = 2, + [336898] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16359), 1, - anon_sym_SEMI, - [376496] = 2, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(16361), 1, - aux_sym_preproc_include_token2, - [376503] = 2, + ACTIONS(11166), 1, + anon_sym_RBRACE, + [336905] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16363), 1, - sym_identifier, - [376510] = 2, + ACTIONS(15532), 1, + anon_sym_RPAREN, + [336912] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16365), 1, + ACTIONS(8167), 1, sym_identifier, - [376517] = 2, + [336919] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16367), 1, + ACTIONS(15534), 1, aux_sym_preproc_if_token2, - [376524] = 2, + [336926] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16369), 1, - aux_sym_preproc_if_token2, - [376531] = 2, + ACTIONS(15536), 1, + anon_sym_DQUOTE, + [336933] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16371), 1, - anon_sym_SEMI, - [376538] = 2, + ACTIONS(15538), 1, + sym_identifier, + [336940] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16373), 1, - anon_sym_SEMI, - [376545] = 2, + ACTIONS(15540), 1, + sym_raw_string_content, + [336947] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16375), 1, - anon_sym_SEMI, - [376552] = 2, + ACTIONS(15542), 1, + anon_sym_COLON, + [336954] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16377), 1, - anon_sym_LPAREN2, - [376559] = 2, + ACTIONS(8869), 1, + anon_sym_RBRACE, + [336961] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16379), 1, + ACTIONS(15544), 1, sym_identifier, - [376566] = 2, + [336968] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16381), 1, + ACTIONS(15546), 1, + anon_sym_RPAREN, + [336975] = 2, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(15548), 1, + aux_sym_preproc_include_token2, + [336982] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15550), 1, anon_sym_SEMI, - [376573] = 2, + [336989] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16383), 1, + ACTIONS(15552), 1, anon_sym_DQUOTE, - [376580] = 2, + [336996] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16385), 1, - sym_raw_string_content, - [376587] = 2, + ACTIONS(9427), 1, + anon_sym_RPAREN, + [337003] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16387), 1, - anon_sym_DQUOTE, - [376594] = 2, + ACTIONS(15554), 1, + sym_identifier, + [337010] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16389), 1, + ACTIONS(15556), 1, aux_sym_preproc_if_token2, - [376601] = 2, + [337017] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16391), 1, + ACTIONS(15558), 1, aux_sym_preproc_if_token2, - [376608] = 2, + [337024] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7560), 1, - anon_sym_RPAREN, - [376615] = 2, + ACTIONS(9135), 1, + anon_sym_SEMI, + [337031] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16393), 1, + ACTIONS(15560), 1, anon_sym_SEMI, - [376622] = 2, + [337038] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12810), 1, + ACTIONS(13716), 1, anon_sym_SEMI, - [376629] = 2, + [337045] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16395), 1, - sym_raw_string_content, - [376636] = 2, + ACTIONS(12357), 1, + anon_sym_COMMA, + [337052] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16397), 1, - sym_identifier, - [376643] = 2, + ACTIONS(15562), 1, + anon_sym_SEMI, + [337059] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16399), 1, + ACTIONS(7386), 1, anon_sym_RPAREN, - [376650] = 2, + [337066] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16401), 1, - anon_sym_SEMI, - [376657] = 2, + ACTIONS(15564), 1, + anon_sym_RPAREN, + [337073] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14865), 1, - anon_sym_RBRACE, - [376664] = 2, + ACTIONS(15566), 1, + anon_sym_RPAREN, + [337080] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16403), 1, - sym_raw_string_delimiter, - [376671] = 2, + ACTIONS(15568), 1, + sym_identifier, + [337087] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16405), 1, + ACTIONS(15570), 1, sym_identifier, - [376678] = 2, + [337094] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16407), 1, + ACTIONS(7511), 1, sym_identifier, - [376685] = 2, + [337101] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14523), 1, + ACTIONS(13786), 1, anon_sym_COMMA, - [376692] = 2, + [337108] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16409), 1, - sym_identifier, - [376699] = 2, + ACTIONS(15572), 1, + anon_sym_SEMI, + [337115] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16411), 1, - sym_identifier, - [376706] = 2, + ACTIONS(15574), 1, + anon_sym_SEMI, + [337122] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16413), 1, - anon_sym_RPAREN, - [376713] = 2, + ACTIONS(15576), 1, + sym_identifier, + [337129] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16415), 1, - anon_sym_LPAREN2, - [376720] = 2, + ACTIONS(15578), 1, + anon_sym_SEMI, + [337136] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9506), 1, - anon_sym_RPAREN, - [376727] = 2, + ACTIONS(15580), 1, + anon_sym_DQUOTE, + [337143] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16417), 1, - anon_sym_RPAREN, - [376734] = 2, + ACTIONS(15582), 1, + sym_identifier, + [337150] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16419), 1, - anon_sym_RPAREN, - [376741] = 2, + ACTIONS(11997), 1, + anon_sym_SEMI, + [337157] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16421), 1, - anon_sym_RPAREN, - [376748] = 2, + ACTIONS(15584), 1, + sym_identifier, + [337164] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16423), 1, - anon_sym_RBRACE, - [376755] = 2, + ACTIONS(15586), 1, + sym_identifier, + [337171] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16425), 1, + ACTIONS(15588), 1, sym_identifier, - [376762] = 2, + [337178] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12850), 1, - anon_sym_COLON, - [376769] = 2, + ACTIONS(15590), 1, + sym_identifier, + [337185] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14525), 1, - anon_sym_RBRACE, - [376776] = 2, + ACTIONS(15592), 1, + anon_sym_STAR, + [337192] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16427), 1, - anon_sym_SEMI, - [376783] = 2, + ACTIONS(15594), 1, + anon_sym_LPAREN2, + [337199] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16429), 1, - sym_identifier, - [376790] = 2, + ACTIONS(15596), 1, + anon_sym_RPAREN, + [337206] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16431), 1, - anon_sym_SEMI, - [376797] = 2, + ACTIONS(9588), 1, + anon_sym_RPAREN, + [337213] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16433), 1, + ACTIONS(15598), 1, sym_identifier, - [376804] = 2, + [337220] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16435), 1, + ACTIONS(15600), 1, anon_sym_SEMI, - [376811] = 2, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(16437), 1, - aux_sym_preproc_include_token2, - [376818] = 2, + [337227] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16439), 1, - anon_sym_LPAREN2, - [376825] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16441), 1, - anon_sym_LPAREN2, - [376832] = 2, + ACTIONS(10996), 1, + anon_sym_RBRACE, + [337234] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16443), 1, - sym_identifier, - [376839] = 2, + ACTIONS(15602), 1, + sym_auto, + [337241] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16445), 1, - anon_sym_RPAREN, - [376846] = 2, - ACTIONS(3), 1, + ACTIONS(15604), 1, + sym_auto, + [337248] = 2, + ACTIONS(10479), 1, sym_comment, - ACTIONS(16447), 1, - aux_sym_preproc_if_token2, - [376853] = 2, + ACTIONS(15606), 1, + aux_sym_preproc_include_token2, + [337255] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16449), 1, - sym_identifier, - [376860] = 2, + ACTIONS(13804), 1, + sym_semgrep_metavar, + [337262] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16451), 1, + ACTIONS(15608), 1, sym_raw_string_content, - [376867] = 2, + [337269] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16453), 1, - anon_sym_SEMI, - [376874] = 2, + ACTIONS(15610), 1, + anon_sym_RPAREN, + [337276] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16455), 1, + ACTIONS(9181), 1, anon_sym_SEMI, - [376881] = 2, + [337283] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16457), 1, - anon_sym_DQUOTE, - [376888] = 2, + ACTIONS(15612), 1, + anon_sym_SEMI, + [337290] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16459), 1, - anon_sym_LPAREN2, - [376895] = 2, + ACTIONS(15614), 1, + anon_sym_RPAREN, + [337297] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16461), 1, + ACTIONS(15616), 1, anon_sym_LPAREN2, - [376902] = 2, + [337304] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16463), 1, + ACTIONS(15618), 1, sym_identifier, - [376909] = 2, - ACTIONS(3), 1, + [337311] = 2, + ACTIONS(10479), 1, sym_comment, - ACTIONS(16465), 1, - aux_sym_preproc_if_token2, - [376916] = 2, + ACTIONS(10754), 1, + aux_sym_preproc_include_token2, + [337318] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16467), 1, - anon_sym_RPAREN, - [376923] = 2, - ACTIONS(3), 1, + ACTIONS(15620), 1, + sym_auto, + [337325] = 2, + ACTIONS(10479), 1, sym_comment, - ACTIONS(16469), 1, - sym_identifier, - [376930] = 2, + ACTIONS(15622), 1, + aux_sym_preproc_include_token2, + [337332] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16471), 1, - sym_raw_string_content, - [376937] = 2, + ACTIONS(15624), 1, + anon_sym_SEMI, + [337339] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16473), 1, + ACTIONS(15626), 1, anon_sym_RPAREN, - [376944] = 2, + [337346] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13796), 1, + anon_sym_SEMI, + [337353] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16475), 1, + ACTIONS(15628), 1, aux_sym_preproc_if_token2, - [376951] = 2, - ACTIONS(10969), 1, + [337360] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(16477), 1, - aux_sym_preproc_include_token2, - [376958] = 2, + ACTIONS(15630), 1, + anon_sym_RPAREN, + [337367] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16479), 1, + ACTIONS(15632), 1, anon_sym_LPAREN2, - [376965] = 2, + [337374] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16481), 1, + ACTIONS(15634), 1, anon_sym_LPAREN2, - [376972] = 2, + [337381] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16483), 1, + ACTIONS(15636), 1, sym_identifier, - [376979] = 2, + [337388] = 2, + ACTIONS(10479), 1, + sym_comment, + ACTIONS(10553), 1, + aux_sym_preproc_include_token2, + [337395] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7542), 1, + ACTIONS(15638), 1, anon_sym_RPAREN, - [376986] = 2, + [337402] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16485), 1, - anon_sym_RPAREN, - [376993] = 2, + ACTIONS(13066), 1, + anon_sym_COLON_COLON, + [337409] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16487), 1, + ACTIONS(15640), 1, sym_identifier, - [377000] = 2, + [337416] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16489), 1, + ACTIONS(15642), 1, sym_raw_string_content, - [377007] = 2, - ACTIONS(10969), 1, + [337423] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(13497), 1, - aux_sym_preproc_include_token2, - [377014] = 2, + ACTIONS(15644), 1, + anon_sym_SEMI, + [337430] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16491), 1, - sym_identifier, - [377021] = 2, + ACTIONS(15646), 1, + anon_sym_RPAREN, + [337437] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16493), 1, + ACTIONS(15648), 1, aux_sym_preproc_if_token2, - [377028] = 2, + [337444] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15650), 1, + anon_sym_LPAREN2, + [337451] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16495), 1, + ACTIONS(15652), 1, anon_sym_LPAREN2, - [377035] = 2, + [337458] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16497), 1, + ACTIONS(15654), 1, sym_identifier, - [377042] = 2, + [337465] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16499), 1, - anon_sym_RPAREN, - [377049] = 2, + ACTIONS(15656), 1, + anon_sym_STAR, + [337472] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16501), 1, - anon_sym_RPAREN, - [377056] = 2, + ACTIONS(15658), 1, + aux_sym_preproc_if_token2, + [337479] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16503), 1, + ACTIONS(15660), 1, sym_identifier, - [377063] = 2, + [337486] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16505), 1, + ACTIONS(15662), 1, sym_raw_string_content, - [377070] = 2, + [337493] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16507), 1, - anon_sym_COLON, - [377077] = 2, + ACTIONS(14000), 1, + anon_sym_RBRACE, + [337500] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15664), 1, + anon_sym_SEMI, + [337507] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15666), 1, + anon_sym_RPAREN, + [337514] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16509), 1, + ACTIONS(15668), 1, anon_sym_LPAREN2, - [377084] = 2, + [337521] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16511), 1, + ACTIONS(15670), 1, anon_sym_LPAREN2, - [377091] = 2, + [337528] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16513), 1, + ACTIONS(15672), 1, sym_identifier, - [377098] = 2, + [337535] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16515), 1, - anon_sym_RBRACE, - [377105] = 2, + ACTIONS(15674), 1, + anon_sym_RPAREN, + [337542] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16517), 1, - sym_identifier, - [377112] = 2, + ACTIONS(15676), 1, + anon_sym_RPAREN, + [337549] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16519), 1, + ACTIONS(15678), 1, sym_identifier, - [377119] = 2, + [337556] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16521), 1, + ACTIONS(15680), 1, sym_raw_string_content, - [377126] = 2, + [337563] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16523), 1, - aux_sym_preproc_if_token2, - [377133] = 2, + ACTIONS(7583), 1, + sym_identifier, + [337570] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15682), 1, + anon_sym_RPAREN, + [337577] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16525), 1, + ACTIONS(12035), 1, anon_sym_SEMI, - [377140] = 2, + [337584] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16527), 1, + ACTIONS(15684), 1, anon_sym_LPAREN2, - [377147] = 2, + [337591] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16529), 1, + ACTIONS(15686), 1, sym_identifier, - [377154] = 2, - ACTIONS(3), 1, + [337598] = 2, + ACTIONS(10479), 1, sym_comment, - ACTIONS(16531), 1, - anon_sym_SEMI, - [377161] = 2, + ACTIONS(15688), 1, + aux_sym_preproc_include_token2, + [337605] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14895), 1, - anon_sym_RBRACE, - [377168] = 2, + ACTIONS(12009), 1, + anon_sym_SEMI, + [337612] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16533), 1, + ACTIONS(15690), 1, sym_identifier, - [377175] = 2, + [337619] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16535), 1, + ACTIONS(15692), 1, sym_raw_string_content, - [377182] = 2, + [337626] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16537), 1, - anon_sym_SEMI, - [377189] = 2, + ACTIONS(15694), 1, + anon_sym_STAR, + [337633] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16539), 1, - anon_sym_COLON, - [377196] = 2, + ACTIONS(15696), 1, + sym_identifier, + [337640] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16541), 1, + ACTIONS(15698), 1, anon_sym_LPAREN2, - [377203] = 2, + [337647] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16543), 1, + ACTIONS(15700), 1, sym_identifier, - [377210] = 2, + [337654] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16545), 1, - anon_sym_LPAREN2, - [377217] = 2, + ACTIONS(11105), 1, + anon_sym_RBRACE, + [337661] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16547), 1, - anon_sym_DQUOTE, - [377224] = 2, + ACTIONS(15702), 1, + anon_sym_RBRACE, + [337668] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16549), 1, + ACTIONS(15704), 1, sym_identifier, - [377231] = 2, + [337675] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16551), 1, + ACTIONS(15706), 1, sym_raw_string_content, - [377238] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16553), 1, - anon_sym_RPAREN, - [377245] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16555), 1, - anon_sym_RPAREN, - [377252] = 2, + [337682] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16557), 1, + ACTIONS(15708), 1, sym_identifier, - [377259] = 2, + [337689] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16559), 1, - anon_sym_DQUOTE, - [377266] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16561), 1, - sym_identifier, - [377273] = 2, + ACTIONS(15710), 1, + aux_sym_preproc_if_token2, + [337696] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16563), 1, - sym_raw_string_content, - [377280] = 2, + ACTIONS(15712), 1, + anon_sym_LPAREN2, + [337703] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16565), 1, - anon_sym_SEMI, - [377287] = 2, + ACTIONS(15714), 1, + sym_identifier, + [337710] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16567), 1, - aux_sym_preproc_if_token2, - [377294] = 2, + ACTIONS(15716), 1, + anon_sym_COLON, + [337717] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16569), 1, + ACTIONS(15718), 1, anon_sym_SEMI, - [377301] = 2, + [337724] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16571), 1, - aux_sym_preproc_if_token2, - [377308] = 2, + ACTIONS(15720), 1, + sym_identifier, + [337731] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16573), 1, + ACTIONS(15722), 1, sym_raw_string_content, - [377315] = 2, + [337738] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16575), 1, - anon_sym_RPAREN, - [377322] = 2, - ACTIONS(10969), 1, + ACTIONS(15724), 1, + anon_sym_SEMI, + [337745] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(16577), 1, - aux_sym_preproc_include_token2, - [377329] = 2, + ACTIONS(15726), 1, + sym_identifier, + [337752] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16579), 1, - anon_sym_RPAREN, - [377336] = 2, + ACTIONS(15728), 1, + anon_sym_LPAREN2, + [337759] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16581), 1, - aux_sym_preproc_if_token2, - [377343] = 2, + ACTIONS(15730), 1, + sym_identifier, + [337766] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16583), 1, - sym_raw_string_content, - [377350] = 2, + ACTIONS(13912), 1, + anon_sym_RBRACE, + [337773] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16585), 1, + ACTIONS(15732), 1, anon_sym_SEMI, - [377357] = 2, + [337780] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16587), 1, + ACTIONS(15734), 1, sym_identifier, - [377364] = 2, + [337787] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16589), 1, + ACTIONS(15736), 1, sym_raw_string_content, - [377371] = 2, + [337794] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16591), 1, - sym_identifier, - [377378] = 2, + ACTIONS(15738), 1, + anon_sym_LPAREN2, + [337801] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16593), 1, - sym_raw_string_content, - [377385] = 2, + ACTIONS(8927), 1, + anon_sym_RBRACE, + [337808] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16595), 1, - sym_identifier, - [377392] = 2, - ACTIONS(3), 1, + ACTIONS(15740), 1, + anon_sym_RBRACE, + [337815] = 2, + ACTIONS(10479), 1, sym_comment, - ACTIONS(16597), 1, - sym_raw_string_content, - [377399] = 2, + ACTIONS(15742), 1, + aux_sym_preproc_include_token2, + [337822] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16599), 1, - anon_sym_LPAREN2, - [377406] = 2, + ACTIONS(15744), 1, + sym_identifier, + [337829] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16601), 1, + ACTIONS(15746), 1, sym_raw_string_content, - [377413] = 2, + [337836] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16603), 1, - aux_sym_preproc_if_token2, - [377420] = 2, + ACTIONS(15748), 1, + anon_sym_while, + [337843] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16605), 1, - sym_raw_string_content, - [377427] = 2, + ACTIONS(15750), 1, + anon_sym_RPAREN, + [337850] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16607), 1, - anon_sym_SEMI, - [377434] = 2, + ACTIONS(15752), 1, + sym_raw_string_delimiter, + [337857] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16609), 1, + ACTIONS(15754), 1, sym_raw_string_content, - [377441] = 2, + [337864] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11910), 1, - anon_sym_RBRACE, - [377448] = 2, + ACTIONS(15756), 1, + anon_sym_RPAREN, + [337871] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16611), 1, + ACTIONS(15758), 1, sym_raw_string_content, - [377455] = 2, + [337878] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16613), 1, - sym_identifier, - [377462] = 2, + ACTIONS(7398), 1, + anon_sym_RPAREN, + [337885] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16615), 1, + ACTIONS(15760), 1, sym_raw_string_content, - [377469] = 2, + [337892] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16617), 1, - anon_sym_RBRACE, - [377476] = 2, + ACTIONS(15762), 1, + anon_sym_DQUOTE, + [337899] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16619), 1, + ACTIONS(15764), 1, sym_raw_string_content, - [377483] = 2, + [337906] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16621), 1, - anon_sym_STAR, - [377490] = 2, + ACTIONS(15766), 1, + anon_sym_LPAREN2, + [337913] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16623), 1, + ACTIONS(15768), 1, sym_raw_string_content, - [377497] = 2, + [337920] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16625), 1, + ACTIONS(11529), 1, anon_sym_RPAREN, - [377504] = 2, + [337927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16627), 1, + ACTIONS(15770), 1, sym_raw_string_content, - [377511] = 2, - ACTIONS(10969), 1, - sym_comment, - ACTIONS(16629), 1, - aux_sym_preproc_include_token2, - [377518] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16631), 1, - anon_sym_SEMI, - [377525] = 2, + [337934] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16633), 1, - anon_sym_LPAREN2, - [377532] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12872), 1, - anon_sym_SEMI, - [377539] = 2, + ACTIONS(15772), 1, + anon_sym_DQUOTE, + [337941] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16635), 1, - anon_sym_LPAREN2, - [377546] = 2, + ACTIONS(15774), 1, + sym_raw_string_content, + [337948] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16637), 1, + ACTIONS(15776), 1, anon_sym_SEMI, - [377553] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16639), 1, - sym_identifier, - [377560] = 2, + [337955] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14961), 1, - anon_sym_SEMI, - [377567] = 2, + ACTIONS(15778), 1, + sym_raw_string_content, + [337962] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16641), 1, - anon_sym_RPAREN, - [377574] = 2, + ACTIONS(15780), 1, + aux_sym_preproc_if_token2, + [337969] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16643), 1, - anon_sym_DQUOTE, - [377581] = 2, + ACTIONS(15782), 1, + sym_raw_string_content, + [337976] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16645), 1, - anon_sym_RPAREN, - [377588] = 2, + ACTIONS(15784), 1, + sym_identifier, + [337983] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16647), 1, - anon_sym_SEMI, - [377595] = 2, + ACTIONS(15786), 1, + sym_raw_string_content, + [337990] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16649), 1, + ACTIONS(15788), 1, sym_identifier, - [377602] = 2, + [337997] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16651), 1, - anon_sym_LPAREN2, - [377609] = 2, + ACTIONS(15790), 1, + sym_raw_string_content, + [338004] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16653), 1, + ACTIONS(15792), 1, anon_sym_SEMI, - [377616] = 2, + [338011] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16655), 1, - anon_sym_SEMI, - [377623] = 2, + ACTIONS(15794), 1, + sym_raw_string_content, + [338018] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16657), 1, - aux_sym_preproc_if_token2, - [377630] = 2, + ACTIONS(15796), 1, + anon_sym_DQUOTE, + [338025] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16659), 1, - anon_sym_DQUOTE, - [377637] = 2, + ACTIONS(15798), 1, + sym_raw_string_content, + [338032] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16661), 1, + ACTIONS(15800), 1, anon_sym_LPAREN2, - [377644] = 2, + [338039] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16663), 1, + ACTIONS(15802), 1, anon_sym_LPAREN2, - [377651] = 2, + [338046] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9543), 1, - anon_sym_SEMI, - [377658] = 2, + ACTIONS(15804), 1, + aux_sym_preproc_if_token2, + [338053] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16665), 1, + ACTIONS(15806), 1, anon_sym_LPAREN2, - [377665] = 2, + [338060] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16667), 1, + ACTIONS(15808), 1, anon_sym_LPAREN2, - [377672] = 2, - ACTIONS(3), 1, + [338067] = 2, + ACTIONS(10479), 1, sym_comment, - ACTIONS(16669), 1, - anon_sym_RPAREN, - [377679] = 2, + ACTIONS(15810), 1, + aux_sym_preproc_include_token2, + [338074] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16671), 1, + ACTIONS(15812), 1, anon_sym_LPAREN2, - [377686] = 2, + [338081] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16673), 1, + ACTIONS(15814), 1, anon_sym_LPAREN2, - [377693] = 2, + [338088] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16675), 1, + ACTIONS(15816), 1, aux_sym_preproc_if_token2, - [377700] = 2, + [338095] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16677), 1, + ACTIONS(15818), 1, anon_sym_LPAREN2, - [377707] = 2, + [338102] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16679), 1, + ACTIONS(15820), 1, anon_sym_LPAREN2, - [377714] = 2, + [338109] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16681), 1, - anon_sym_DQUOTE, - [377721] = 2, + ACTIONS(15822), 1, + anon_sym_RPAREN, + [338116] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16683), 1, + ACTIONS(15824), 1, anon_sym_LPAREN2, - [377728] = 2, + [338123] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16685), 1, + ACTIONS(15826), 1, anon_sym_LPAREN2, - [377735] = 2, - ACTIONS(10969), 1, + [338130] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(16687), 1, - aux_sym_preproc_include_token2, - [377742] = 2, + ACTIONS(8806), 1, + anon_sym_SEMI, + [338137] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16689), 1, + ACTIONS(15828), 1, anon_sym_LPAREN2, - [377749] = 2, + [338144] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16691), 1, + ACTIONS(15830), 1, anon_sym_LPAREN2, - [377756] = 2, + [338151] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16693), 1, - anon_sym_while, - [377763] = 2, + ACTIONS(15832), 1, + anon_sym_RPAREN, + [338158] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16695), 1, + ACTIONS(15834), 1, anon_sym_LPAREN2, - [377770] = 2, + [338165] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16697), 1, + ACTIONS(15836), 1, anon_sym_LPAREN2, - [377777] = 2, + [338172] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16699), 1, + ACTIONS(9183), 1, anon_sym_SEMI, - [377784] = 2, + [338179] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16701), 1, + ACTIONS(15838), 1, anon_sym_LPAREN2, - [377791] = 2, + [338186] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16703), 1, + ACTIONS(15840), 1, anon_sym_LPAREN2, - [377798] = 2, + [338193] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16705), 1, - aux_sym_preproc_if_token2, - [377805] = 2, + ACTIONS(15842), 1, + anon_sym_SEMI, + [338200] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16707), 1, + ACTIONS(15844), 1, anon_sym_LPAREN2, - [377812] = 2, + [338207] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16709), 1, + ACTIONS(15846), 1, anon_sym_LPAREN2, - [377819] = 2, + [338214] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16711), 1, + ACTIONS(15848), 1, anon_sym_RPAREN, - [377826] = 2, + [338221] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16713), 1, + ACTIONS(15850), 1, anon_sym_LPAREN2, - [377833] = 2, + [338228] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16715), 1, + ACTIONS(15852), 1, anon_sym_LPAREN2, - [377840] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7482), 1, - anon_sym_RPAREN, - [377847] = 2, + [338235] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16717), 1, + ACTIONS(15854), 1, anon_sym_LPAREN2, - [377854] = 2, + [338242] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16719), 1, + ACTIONS(15856), 1, anon_sym_LPAREN2, - [377861] = 2, + [338249] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16721), 1, + ACTIONS(15858), 1, anon_sym_LPAREN2, - [377868] = 2, + [338256] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16723), 1, + ACTIONS(15860), 1, anon_sym_LPAREN2, - [377875] = 2, + [338263] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16725), 1, + ACTIONS(15862), 1, anon_sym_LPAREN2, - [377882] = 2, + [338270] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16727), 1, + ACTIONS(15864), 1, anon_sym_LPAREN2, - [377889] = 2, + [338277] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16729), 1, + ACTIONS(15866), 1, anon_sym_LPAREN2, - [377896] = 2, + [338284] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16731), 1, + ACTIONS(15868), 1, anon_sym_LPAREN2, - [377903] = 2, + [338291] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16733), 1, + ACTIONS(15870), 1, anon_sym_LPAREN2, - [377910] = 2, + [338298] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16735), 1, + ACTIONS(15872), 1, anon_sym_LPAREN2, - [377917] = 2, + [338305] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16737), 1, + ACTIONS(15874), 1, anon_sym_LPAREN2, - [377924] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16739), 1, - anon_sym_STAR, - [377931] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16741), 1, - anon_sym_RPAREN, - [377938] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16743), 1, - anon_sym_STAR, - [377945] = 2, + [338312] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16745), 1, - sym_identifier, - [377952] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16747), 1, - anon_sym_SEMI, - [377959] = 2, + ACTIONS(15876), 1, + aux_sym_preproc_if_token2, + [338319] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16749), 1, + ACTIONS(15878), 1, anon_sym_RPAREN, - [377966] = 2, + [338326] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16751), 1, - aux_sym_preproc_if_token2, - [377973] = 2, + ACTIONS(15880), 1, + anon_sym_COLON, + [338333] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16753), 1, + ACTIONS(15882), 1, anon_sym_RPAREN, - [377980] = 2, + [338340] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16755), 1, - anon_sym_RPAREN, - [377987] = 2, + ACTIONS(9035), 1, + anon_sym_RBRACE, + [338347] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16757), 1, + ACTIONS(9223), 1, anon_sym_SEMI, - [377994] = 2, + [338354] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16759), 1, - aux_sym_preproc_if_token2, - [378001] = 2, + ACTIONS(15884), 1, + sym_auto, + [338361] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16761), 1, - anon_sym_LPAREN2, - [378008] = 2, + ACTIONS(15886), 1, + sym_identifier, + [338368] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16763), 1, - anon_sym_LPAREN2, - [378015] = 2, + ACTIONS(11113), 1, + anon_sym_RBRACE, + [338375] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16765), 1, + ACTIONS(15888), 1, anon_sym_LPAREN2, - [378022] = 2, + [338382] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16767), 1, + ACTIONS(15890), 1, anon_sym_LPAREN2, - [378029] = 2, + [338389] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16769), 1, + ACTIONS(15892), 1, anon_sym_LPAREN2, - [378036] = 2, + [338396] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16771), 1, + ACTIONS(15894), 1, anon_sym_LPAREN2, - [378043] = 2, + [338403] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16773), 1, + ACTIONS(15896), 1, anon_sym_LPAREN2, - [378050] = 2, + [338410] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16775), 1, + ACTIONS(15898), 1, anon_sym_LPAREN2, - [378057] = 2, + [338417] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16777), 1, + ACTIONS(15900), 1, anon_sym_LPAREN2, - [378064] = 2, + [338424] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16779), 1, + ACTIONS(15902), 1, anon_sym_LPAREN2, - [378071] = 2, + [338431] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16781), 1, + ACTIONS(15904), 1, anon_sym_LPAREN2, - [378078] = 2, + [338438] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16783), 1, - anon_sym_LPAREN2, + ACTIONS(14064), 1, + anon_sym_RBRACE, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(2260)] = 0, - [SMALL_STATE(2261)] = 71, - [SMALL_STATE(2262)] = 142, - [SMALL_STATE(2263)] = 217, - [SMALL_STATE(2264)] = 288, - [SMALL_STATE(2265)] = 363, - [SMALL_STATE(2266)] = 434, - [SMALL_STATE(2267)] = 509, - [SMALL_STATE(2268)] = 580, - [SMALL_STATE(2269)] = 651, - [SMALL_STATE(2270)] = 722, - [SMALL_STATE(2271)] = 793, - [SMALL_STATE(2272)] = 864, - [SMALL_STATE(2273)] = 935, - [SMALL_STATE(2274)] = 1006, - [SMALL_STATE(2275)] = 1077, - [SMALL_STATE(2276)] = 1152, - [SMALL_STATE(2277)] = 1227, - [SMALL_STATE(2278)] = 1298, - [SMALL_STATE(2279)] = 1369, - [SMALL_STATE(2280)] = 1440, - [SMALL_STATE(2281)] = 1511, - [SMALL_STATE(2282)] = 1582, - [SMALL_STATE(2283)] = 1653, - [SMALL_STATE(2284)] = 1724, - [SMALL_STATE(2285)] = 1795, - [SMALL_STATE(2286)] = 1866, - [SMALL_STATE(2287)] = 1941, - [SMALL_STATE(2288)] = 2012, - [SMALL_STATE(2289)] = 2091, - [SMALL_STATE(2290)] = 2174, - [SMALL_STATE(2291)] = 2245, - [SMALL_STATE(2292)] = 2316, - [SMALL_STATE(2293)] = 2387, - [SMALL_STATE(2294)] = 2458, - [SMALL_STATE(2295)] = 2529, - [SMALL_STATE(2296)] = 2612, - [SMALL_STATE(2297)] = 2683, - [SMALL_STATE(2298)] = 2754, - [SMALL_STATE(2299)] = 2825, - [SMALL_STATE(2300)] = 2896, - [SMALL_STATE(2301)] = 2967, - [SMALL_STATE(2302)] = 3038, - [SMALL_STATE(2303)] = 3109, - [SMALL_STATE(2304)] = 3180, - [SMALL_STATE(2305)] = 3259, - [SMALL_STATE(2306)] = 3330, - [SMALL_STATE(2307)] = 3401, - [SMALL_STATE(2308)] = 3472, - [SMALL_STATE(2309)] = 3543, - [SMALL_STATE(2310)] = 3614, - [SMALL_STATE(2311)] = 3685, - [SMALL_STATE(2312)] = 3756, - [SMALL_STATE(2313)] = 3827, - [SMALL_STATE(2314)] = 3898, - [SMALL_STATE(2315)] = 3969, - [SMALL_STATE(2316)] = 4040, - [SMALL_STATE(2317)] = 4111, - [SMALL_STATE(2318)] = 4182, - [SMALL_STATE(2319)] = 4263, - [SMALL_STATE(2320)] = 4334, - [SMALL_STATE(2321)] = 4405, - [SMALL_STATE(2322)] = 4476, - [SMALL_STATE(2323)] = 4547, - [SMALL_STATE(2324)] = 4618, - [SMALL_STATE(2325)] = 4689, - [SMALL_STATE(2326)] = 4760, - [SMALL_STATE(2327)] = 4831, - [SMALL_STATE(2328)] = 4902, - [SMALL_STATE(2329)] = 4973, - [SMALL_STATE(2330)] = 5044, - [SMALL_STATE(2331)] = 5115, - [SMALL_STATE(2332)] = 5186, - [SMALL_STATE(2333)] = 5257, - [SMALL_STATE(2334)] = 5328, - [SMALL_STATE(2335)] = 5399, - [SMALL_STATE(2336)] = 5470, - [SMALL_STATE(2337)] = 5541, - [SMALL_STATE(2338)] = 5612, - [SMALL_STATE(2339)] = 5683, - [SMALL_STATE(2340)] = 5754, - [SMALL_STATE(2341)] = 5825, - [SMALL_STATE(2342)] = 5896, - [SMALL_STATE(2343)] = 5967, - [SMALL_STATE(2344)] = 6038, - [SMALL_STATE(2345)] = 6109, - [SMALL_STATE(2346)] = 6180, - [SMALL_STATE(2347)] = 6251, - [SMALL_STATE(2348)] = 6322, - [SMALL_STATE(2349)] = 6393, - [SMALL_STATE(2350)] = 6464, - [SMALL_STATE(2351)] = 6535, - [SMALL_STATE(2352)] = 6606, - [SMALL_STATE(2353)] = 6677, - [SMALL_STATE(2354)] = 6748, - [SMALL_STATE(2355)] = 6819, - [SMALL_STATE(2356)] = 6890, - [SMALL_STATE(2357)] = 6961, - [SMALL_STATE(2358)] = 7032, - [SMALL_STATE(2359)] = 7103, - [SMALL_STATE(2360)] = 7174, - [SMALL_STATE(2361)] = 7245, - [SMALL_STATE(2362)] = 7324, - [SMALL_STATE(2363)] = 7395, - [SMALL_STATE(2364)] = 7466, - [SMALL_STATE(2365)] = 7537, - [SMALL_STATE(2366)] = 7608, - [SMALL_STATE(2367)] = 7679, - [SMALL_STATE(2368)] = 7750, - [SMALL_STATE(2369)] = 7821, - [SMALL_STATE(2370)] = 7892, - [SMALL_STATE(2371)] = 7963, - [SMALL_STATE(2372)] = 8034, - [SMALL_STATE(2373)] = 8105, - [SMALL_STATE(2374)] = 8176, - [SMALL_STATE(2375)] = 8247, - [SMALL_STATE(2376)] = 8318, - [SMALL_STATE(2377)] = 8389, - [SMALL_STATE(2378)] = 8460, - [SMALL_STATE(2379)] = 8531, - [SMALL_STATE(2380)] = 8604, - [SMALL_STATE(2381)] = 8727, - [SMALL_STATE(2382)] = 8798, - [SMALL_STATE(2383)] = 8869, - [SMALL_STATE(2384)] = 8940, - [SMALL_STATE(2385)] = 9011, - [SMALL_STATE(2386)] = 9082, - [SMALL_STATE(2387)] = 9153, - [SMALL_STATE(2388)] = 9224, - [SMALL_STATE(2389)] = 9295, - [SMALL_STATE(2390)] = 9366, - [SMALL_STATE(2391)] = 9437, - [SMALL_STATE(2392)] = 9508, - [SMALL_STATE(2393)] = 9585, - [SMALL_STATE(2394)] = 9656, - [SMALL_STATE(2395)] = 9731, - [SMALL_STATE(2396)] = 9802, - [SMALL_STATE(2397)] = 9873, - [SMALL_STATE(2398)] = 9944, - [SMALL_STATE(2399)] = 10015, - [SMALL_STATE(2400)] = 10086, - [SMALL_STATE(2401)] = 10157, - [SMALL_STATE(2402)] = 10228, - [SMALL_STATE(2403)] = 10299, - [SMALL_STATE(2404)] = 10370, - [SMALL_STATE(2405)] = 10441, - [SMALL_STATE(2406)] = 10520, - [SMALL_STATE(2407)] = 10591, - [SMALL_STATE(2408)] = 10666, - [SMALL_STATE(2409)] = 10737, - [SMALL_STATE(2410)] = 10816, - [SMALL_STATE(2411)] = 10887, - [SMALL_STATE(2412)] = 10958, - [SMALL_STATE(2413)] = 11029, - [SMALL_STATE(2414)] = 11100, - [SMALL_STATE(2415)] = 11171, - [SMALL_STATE(2416)] = 11242, - [SMALL_STATE(2417)] = 11313, - [SMALL_STATE(2418)] = 11384, - [SMALL_STATE(2419)] = 11455, - [SMALL_STATE(2420)] = 11526, - [SMALL_STATE(2421)] = 11597, - [SMALL_STATE(2422)] = 11668, - [SMALL_STATE(2423)] = 11739, - [SMALL_STATE(2424)] = 11810, - [SMALL_STATE(2425)] = 11881, - [SMALL_STATE(2426)] = 11952, - [SMALL_STATE(2427)] = 12031, - [SMALL_STATE(2428)] = 12118, - [SMALL_STATE(2429)] = 12205, - [SMALL_STATE(2430)] = 12276, - [SMALL_STATE(2431)] = 12347, - [SMALL_STATE(2432)] = 12418, - [SMALL_STATE(2433)] = 12489, - [SMALL_STATE(2434)] = 12560, - [SMALL_STATE(2435)] = 12631, - [SMALL_STATE(2436)] = 12702, - [SMALL_STATE(2437)] = 12779, - [SMALL_STATE(2438)] = 12850, - [SMALL_STATE(2439)] = 12921, - [SMALL_STATE(2440)] = 13000, - [SMALL_STATE(2441)] = 13087, - [SMALL_STATE(2442)] = 13158, - [SMALL_STATE(2443)] = 13229, - [SMALL_STATE(2444)] = 13300, - [SMALL_STATE(2445)] = 13387, - [SMALL_STATE(2446)] = 13458, - [SMALL_STATE(2447)] = 13529, - [SMALL_STATE(2448)] = 13600, - [SMALL_STATE(2449)] = 13675, - [SMALL_STATE(2450)] = 13746, - [SMALL_STATE(2451)] = 13823, - [SMALL_STATE(2452)] = 13894, - [SMALL_STATE(2453)] = 13965, - [SMALL_STATE(2454)] = 14036, - [SMALL_STATE(2455)] = 14107, - [SMALL_STATE(2456)] = 14178, - [SMALL_STATE(2457)] = 14249, - [SMALL_STATE(2458)] = 14322, - [SMALL_STATE(2459)] = 14396, - [SMALL_STATE(2460)] = 14470, - [SMALL_STATE(2461)] = 14540, - [SMALL_STATE(2462)] = 14616, - [SMALL_STATE(2463)] = 14686, - [SMALL_STATE(2464)] = 14762, - [SMALL_STATE(2465)] = 14838, - [SMALL_STATE(2466)] = 14914, - [SMALL_STATE(2467)] = 14992, - [SMALL_STATE(2468)] = 15062, - [SMALL_STATE(2469)] = 15136, - [SMALL_STATE(2470)] = 15206, - [SMALL_STATE(2471)] = 15280, - [SMALL_STATE(2472)] = 15350, - [SMALL_STATE(2473)] = 15420, - [SMALL_STATE(2474)] = 15490, - [SMALL_STATE(2475)] = 15564, - [SMALL_STATE(2476)] = 15634, - [SMALL_STATE(2477)] = 15712, - [SMALL_STATE(2478)] = 15784, - [SMALL_STATE(2479)] = 15854, - [SMALL_STATE(2480)] = 15926, - [SMALL_STATE(2481)] = 15996, - [SMALL_STATE(2482)] = 16074, - [SMALL_STATE(2483)] = 16144, - [SMALL_STATE(2484)] = 16214, - [SMALL_STATE(2485)] = 16284, - [SMALL_STATE(2486)] = 16358, - [SMALL_STATE(2487)] = 16432, - [SMALL_STATE(2488)] = 16504, - [SMALL_STATE(2489)] = 16590, - [SMALL_STATE(2490)] = 16666, - [SMALL_STATE(2491)] = 16736, - [SMALL_STATE(2492)] = 16822, - [SMALL_STATE(2493)] = 16892, - [SMALL_STATE(2494)] = 16962, - [SMALL_STATE(2495)] = 17032, - [SMALL_STATE(2496)] = 17118, - [SMALL_STATE(2497)] = 17204, - [SMALL_STATE(2498)] = 17274, - [SMALL_STATE(2499)] = 17348, - [SMALL_STATE(2500)] = 17418, - [SMALL_STATE(2501)] = 17490, - [SMALL_STATE(2502)] = 17560, - [SMALL_STATE(2503)] = 17630, - [SMALL_STATE(2504)] = 17700, - [SMALL_STATE(2505)] = 17774, - [SMALL_STATE(2506)] = 17848, - [SMALL_STATE(2507)] = 17922, - [SMALL_STATE(2508)] = 17996, - [SMALL_STATE(2509)] = 18066, - [SMALL_STATE(2510)] = 18138, - [SMALL_STATE(2511)] = 18214, - [SMALL_STATE(2512)] = 18288, - [SMALL_STATE(2513)] = 18358, - [SMALL_STATE(2514)] = 18440, - [SMALL_STATE(2515)] = 18518, - [SMALL_STATE(2516)] = 18590, - [SMALL_STATE(2517)] = 18676, - [SMALL_STATE(2518)] = 18750, - [SMALL_STATE(2519)] = 18820, - [SMALL_STATE(2520)] = 18894, - [SMALL_STATE(2521)] = 18968, - [SMALL_STATE(2522)] = 19038, - [SMALL_STATE(2523)] = 19108, - [SMALL_STATE(2524)] = 19178, - [SMALL_STATE(2525)] = 19248, - [SMALL_STATE(2526)] = 19318, - [SMALL_STATE(2527)] = 19388, - [SMALL_STATE(2528)] = 19458, - [SMALL_STATE(2529)] = 19530, - [SMALL_STATE(2530)] = 19604, - [SMALL_STATE(2531)] = 19678, - [SMALL_STATE(2532)] = 19752, - [SMALL_STATE(2533)] = 19826, - [SMALL_STATE(2534)] = 19900, - [SMALL_STATE(2535)] = 19974, - [SMALL_STATE(2536)] = 20044, - [SMALL_STATE(2537)] = 20114, - [SMALL_STATE(2538)] = 20184, - [SMALL_STATE(2539)] = 20254, - [SMALL_STATE(2540)] = 20330, - [SMALL_STATE(2541)] = 20400, - [SMALL_STATE(2542)] = 20482, - [SMALL_STATE(2543)] = 20560, - [SMALL_STATE(2544)] = 20630, - [SMALL_STATE(2545)] = 20700, - [SMALL_STATE(2546)] = 20770, - [SMALL_STATE(2547)] = 20840, - [SMALL_STATE(2548)] = 20910, - [SMALL_STATE(2549)] = 20980, - [SMALL_STATE(2550)] = 21050, - [SMALL_STATE(2551)] = 21120, - [SMALL_STATE(2552)] = 21190, - [SMALL_STATE(2553)] = 21260, - [SMALL_STATE(2554)] = 21330, - [SMALL_STATE(2555)] = 21404, - [SMALL_STATE(2556)] = 21474, - [SMALL_STATE(2557)] = 21544, - [SMALL_STATE(2558)] = 21614, - [SMALL_STATE(2559)] = 21684, - [SMALL_STATE(2560)] = 21754, - [SMALL_STATE(2561)] = 21825, - [SMALL_STATE(2562)] = 21902, - [SMALL_STATE(2563)] = 21975, - [SMALL_STATE(2564)] = 22048, - [SMALL_STATE(2565)] = 22117, - [SMALL_STATE(2566)] = 22186, - [SMALL_STATE(2567)] = 22261, - [SMALL_STATE(2568)] = 22338, - [SMALL_STATE(2569)] = 22407, - [SMALL_STATE(2570)] = 22476, - [SMALL_STATE(2571)] = 22597, - [SMALL_STATE(2572)] = 22666, - [SMALL_STATE(2573)] = 22735, - [SMALL_STATE(2574)] = 22812, - [SMALL_STATE(2575)] = 22881, - [SMALL_STATE(2576)] = 22958, - [SMALL_STATE(2577)] = 23035, - [SMALL_STATE(2578)] = 23104, - [SMALL_STATE(2579)] = 23173, - [SMALL_STATE(2580)] = 23242, - [SMALL_STATE(2581)] = 23311, - [SMALL_STATE(2582)] = 23380, - [SMALL_STATE(2583)] = 23449, - [SMALL_STATE(2584)] = 23518, - [SMALL_STATE(2585)] = 23587, - [SMALL_STATE(2586)] = 23656, - [SMALL_STATE(2587)] = 23725, - [SMALL_STATE(2588)] = 23802, - [SMALL_STATE(2589)] = 23877, - [SMALL_STATE(2590)] = 23946, - [SMALL_STATE(2591)] = 24015, - [SMALL_STATE(2592)] = 24084, - [SMALL_STATE(2593)] = 24153, - [SMALL_STATE(2594)] = 24222, - [SMALL_STATE(2595)] = 24295, - [SMALL_STATE(2596)] = 24370, - [SMALL_STATE(2597)] = 24443, - [SMALL_STATE(2598)] = 24514, - [SMALL_STATE(2599)] = 24585, - [SMALL_STATE(2600)] = 24654, - [SMALL_STATE(2601)] = 24727, - [SMALL_STATE(2602)] = 24800, - [SMALL_STATE(2603)] = 24869, - [SMALL_STATE(2604)] = 24938, - [SMALL_STATE(2605)] = 25007, - [SMALL_STATE(2606)] = 25076, - [SMALL_STATE(2607)] = 25145, - [SMALL_STATE(2608)] = 25214, - [SMALL_STATE(2609)] = 25283, - [SMALL_STATE(2610)] = 25352, - [SMALL_STATE(2611)] = 25425, - [SMALL_STATE(2612)] = 25498, - [SMALL_STATE(2613)] = 25567, - [SMALL_STATE(2614)] = 25644, - [SMALL_STATE(2615)] = 25713, - [SMALL_STATE(2616)] = 25782, - [SMALL_STATE(2617)] = 25859, - [SMALL_STATE(2618)] = 25928, - [SMALL_STATE(2619)] = 26013, - [SMALL_STATE(2620)] = 26086, - [SMALL_STATE(2621)] = 26167, - [SMALL_STATE(2622)] = 26236, - [SMALL_STATE(2623)] = 26311, - [SMALL_STATE(2624)] = 26392, - [SMALL_STATE(2625)] = 26461, - [SMALL_STATE(2626)] = 26530, - [SMALL_STATE(2627)] = 26607, - [SMALL_STATE(2628)] = 26676, - [SMALL_STATE(2629)] = 26745, - [SMALL_STATE(2630)] = 26814, - [SMALL_STATE(2631)] = 26883, - [SMALL_STATE(2632)] = 26952, - [SMALL_STATE(2633)] = 27073, - [SMALL_STATE(2634)] = 27142, - [SMALL_STATE(2635)] = 27219, - [SMALL_STATE(2636)] = 27288, - [SMALL_STATE(2637)] = 27357, - [SMALL_STATE(2638)] = 27426, - [SMALL_STATE(2639)] = 27495, - [SMALL_STATE(2640)] = 27564, - [SMALL_STATE(2641)] = 27641, - [SMALL_STATE(2642)] = 27712, - [SMALL_STATE(2643)] = 27785, - [SMALL_STATE(2644)] = 27854, - [SMALL_STATE(2645)] = 27923, - [SMALL_STATE(2646)] = 27992, - [SMALL_STATE(2647)] = 28061, - [SMALL_STATE(2648)] = 28130, - [SMALL_STATE(2649)] = 28199, - [SMALL_STATE(2650)] = 28268, - [SMALL_STATE(2651)] = 28337, - [SMALL_STATE(2652)] = 28406, - [SMALL_STATE(2653)] = 28475, - [SMALL_STATE(2654)] = 28544, - [SMALL_STATE(2655)] = 28613, - [SMALL_STATE(2656)] = 28682, - [SMALL_STATE(2657)] = 28761, - [SMALL_STATE(2658)] = 28830, - [SMALL_STATE(2659)] = 28899, - [SMALL_STATE(2660)] = 28968, - [SMALL_STATE(2661)] = 29037, - [SMALL_STATE(2662)] = 29109, - [SMALL_STATE(2663)] = 29185, - [SMALL_STATE(2664)] = 29253, - [SMALL_STATE(2665)] = 29325, - [SMALL_STATE(2666)] = 29399, - [SMALL_STATE(2667)] = 29471, - [SMALL_STATE(2668)] = 29543, - [SMALL_STATE(2669)] = 29615, - [SMALL_STATE(2670)] = 29683, - [SMALL_STATE(2671)] = 29751, - [SMALL_STATE(2672)] = 29827, - [SMALL_STATE(2673)] = 29895, - [SMALL_STATE(2674)] = 29969, - [SMALL_STATE(2675)] = 30043, - [SMALL_STATE(2676)] = 30115, - [SMALL_STATE(2677)] = 30199, - [SMALL_STATE(2678)] = 30271, - [SMALL_STATE(2679)] = 30355, - [SMALL_STATE(2680)] = 30427, - [SMALL_STATE(2681)] = 30495, - [SMALL_STATE(2682)] = 30567, - [SMALL_STATE(2683)] = 30639, - [SMALL_STATE(2684)] = 30711, - [SMALL_STATE(2685)] = 30779, - [SMALL_STATE(2686)] = 30851, - [SMALL_STATE(2687)] = 30923, - [SMALL_STATE(2688)] = 30995, - [SMALL_STATE(2689)] = 31067, - [SMALL_STATE(2690)] = 31141, - [SMALL_STATE(2691)] = 31213, - [SMALL_STATE(2692)] = 31291, - [SMALL_STATE(2693)] = 31359, - [SMALL_STATE(2694)] = 31431, - [SMALL_STATE(2695)] = 31503, - [SMALL_STATE(2696)] = 31575, - [SMALL_STATE(2697)] = 31647, - [SMALL_STATE(2698)] = 31719, - [SMALL_STATE(2699)] = 31787, - [SMALL_STATE(2700)] = 31855, - [SMALL_STATE(2701)] = 31927, - [SMALL_STATE(2702)] = 31999, - [SMALL_STATE(2703)] = 32071, - [SMALL_STATE(2704)] = 32149, - [SMALL_STATE(2705)] = 32221, - [SMALL_STATE(2706)] = 32297, - [SMALL_STATE(2707)] = 32369, - [SMALL_STATE(2708)] = 32443, - [SMALL_STATE(2709)] = 32515, - [SMALL_STATE(2710)] = 32587, - [SMALL_STATE(2711)] = 32661, - [SMALL_STATE(2712)] = 32733, - [SMALL_STATE(2713)] = 32805, - [SMALL_STATE(2714)] = 32873, - [SMALL_STATE(2715)] = 32945, - [SMALL_STATE(2716)] = 33017, - [SMALL_STATE(2717)] = 33101, - [SMALL_STATE(2718)] = 33173, - [SMALL_STATE(2719)] = 33245, - [SMALL_STATE(2720)] = 33313, - [SMALL_STATE(2721)] = 33385, - [SMALL_STATE(2722)] = 33463, - [SMALL_STATE(2723)] = 33535, - [SMALL_STATE(2724)] = 33607, - [SMALL_STATE(2725)] = 33675, - [SMALL_STATE(2726)] = 33795, - [SMALL_STATE(2727)] = 33873, - [SMALL_STATE(2728)] = 33957, - [SMALL_STATE(2729)] = 34029, - [SMALL_STATE(2730)] = 34103, - [SMALL_STATE(2731)] = 34177, - [SMALL_STATE(2732)] = 34245, - [SMALL_STATE(2733)] = 34323, - [SMALL_STATE(2734)] = 34391, - [SMALL_STATE(2735)] = 34459, - [SMALL_STATE(2736)] = 34531, - [SMALL_STATE(2737)] = 34603, - [SMALL_STATE(2738)] = 34687, - [SMALL_STATE(2739)] = 34757, - [SMALL_STATE(2740)] = 34841, - [SMALL_STATE(2741)] = 34913, - [SMALL_STATE(2742)] = 34981, - [SMALL_STATE(2743)] = 35053, - [SMALL_STATE(2744)] = 35120, - [SMALL_STATE(2745)] = 35187, - [SMALL_STATE(2746)] = 35270, - [SMALL_STATE(2747)] = 35343, - [SMALL_STATE(2748)] = 35410, - [SMALL_STATE(2749)] = 35477, - [SMALL_STATE(2750)] = 35544, - [SMALL_STATE(2751)] = 35611, - [SMALL_STATE(2752)] = 35680, - [SMALL_STATE(2753)] = 35747, - [SMALL_STATE(2754)] = 35814, - [SMALL_STATE(2755)] = 35881, - [SMALL_STATE(2756)] = 35948, - [SMALL_STATE(2757)] = 36017, - [SMALL_STATE(2758)] = 36084, - [SMALL_STATE(2759)] = 36151, - [SMALL_STATE(2760)] = 36218, - [SMALL_STATE(2761)] = 36287, - [SMALL_STATE(2762)] = 36364, - [SMALL_STATE(2763)] = 36431, - [SMALL_STATE(2764)] = 36498, - [SMALL_STATE(2765)] = 36565, - [SMALL_STATE(2766)] = 36634, - [SMALL_STATE(2767)] = 36701, - [SMALL_STATE(2768)] = 36768, - [SMALL_STATE(2769)] = 36841, - [SMALL_STATE(2770)] = 36916, - [SMALL_STATE(2771)] = 36985, - [SMALL_STATE(2772)] = 37058, - [SMALL_STATE(2773)] = 37125, - [SMALL_STATE(2774)] = 37196, - [SMALL_STATE(2775)] = 37263, - [SMALL_STATE(2776)] = 37330, - [SMALL_STATE(2777)] = 37407, - [SMALL_STATE(2778)] = 37474, - [SMALL_STATE(2779)] = 37541, - [SMALL_STATE(2780)] = 37618, - [SMALL_STATE(2781)] = 37685, - [SMALL_STATE(2782)] = 37756, - [SMALL_STATE(2783)] = 37823, - [SMALL_STATE(2784)] = 37890, - [SMALL_STATE(2785)] = 37957, - [SMALL_STATE(2786)] = 38024, - [SMALL_STATE(2787)] = 38091, - [SMALL_STATE(2788)] = 38158, - [SMALL_STATE(2789)] = 38225, - [SMALL_STATE(2790)] = 38292, - [SMALL_STATE(2791)] = 38359, - [SMALL_STATE(2792)] = 38432, - [SMALL_STATE(2793)] = 38499, - [SMALL_STATE(2794)] = 38566, - [SMALL_STATE(2795)] = 38633, - [SMALL_STATE(2796)] = 38702, - [SMALL_STATE(2797)] = 38769, - [SMALL_STATE(2798)] = 38836, - [SMALL_STATE(2799)] = 38903, - [SMALL_STATE(2800)] = 38970, - [SMALL_STATE(2801)] = 39037, - [SMALL_STATE(2802)] = 39112, - [SMALL_STATE(2803)] = 39189, - [SMALL_STATE(2804)] = 39264, - [SMALL_STATE(2805)] = 39331, - [SMALL_STATE(2806)] = 39398, - [SMALL_STATE(2807)] = 39475, - [SMALL_STATE(2808)] = 39542, - [SMALL_STATE(2809)] = 39609, - [SMALL_STATE(2810)] = 39676, - [SMALL_STATE(2811)] = 39743, - [SMALL_STATE(2812)] = 39810, - [SMALL_STATE(2813)] = 39881, - [SMALL_STATE(2814)] = 39948, - [SMALL_STATE(2815)] = 40019, - [SMALL_STATE(2816)] = 40098, - [SMALL_STATE(2817)] = 40165, - [SMALL_STATE(2818)] = 40232, - [SMALL_STATE(2819)] = 40299, - [SMALL_STATE(2820)] = 40370, - [SMALL_STATE(2821)] = 40437, - [SMALL_STATE(2822)] = 40508, - [SMALL_STATE(2823)] = 40579, - [SMALL_STATE(2824)] = 40646, - [SMALL_STATE(2825)] = 40713, - [SMALL_STATE(2826)] = 40780, - [SMALL_STATE(2827)] = 40859, - [SMALL_STATE(2828)] = 40926, - [SMALL_STATE(2829)] = 40995, - [SMALL_STATE(2830)] = 41062, - [SMALL_STATE(2831)] = 41129, - [SMALL_STATE(2832)] = 41200, - [SMALL_STATE(2833)] = 41267, - [SMALL_STATE(2834)] = 41334, - [SMALL_STATE(2835)] = 41401, - [SMALL_STATE(2836)] = 41474, - [SMALL_STATE(2837)] = 41545, - [SMALL_STATE(2838)] = 41616, - [SMALL_STATE(2839)] = 41683, - [SMALL_STATE(2840)] = 41750, - [SMALL_STATE(2841)] = 41817, - [SMALL_STATE(2842)] = 41884, - [SMALL_STATE(2843)] = 41957, - [SMALL_STATE(2844)] = 42032, - [SMALL_STATE(2845)] = 42099, - [SMALL_STATE(2846)] = 42170, - [SMALL_STATE(2847)] = 42237, - [SMALL_STATE(2848)] = 42304, - [SMALL_STATE(2849)] = 42379, - [SMALL_STATE(2850)] = 42446, - [SMALL_STATE(2851)] = 42513, - [SMALL_STATE(2852)] = 42580, - [SMALL_STATE(2853)] = 42647, - [SMALL_STATE(2854)] = 42720, - [SMALL_STATE(2855)] = 42787, - [SMALL_STATE(2856)] = 42854, - [SMALL_STATE(2857)] = 42921, - [SMALL_STATE(2858)] = 42988, - [SMALL_STATE(2859)] = 43055, - [SMALL_STATE(2860)] = 43126, - [SMALL_STATE(2861)] = 43193, - [SMALL_STATE(2862)] = 43264, - [SMALL_STATE(2863)] = 43333, - [SMALL_STATE(2864)] = 43400, - [SMALL_STATE(2865)] = 43475, - [SMALL_STATE(2866)] = 43542, - [SMALL_STATE(2867)] = 43613, - [SMALL_STATE(2868)] = 43686, - [SMALL_STATE(2869)] = 43753, - [SMALL_STATE(2870)] = 43820, - [SMALL_STATE(2871)] = 43887, - [SMALL_STATE(2872)] = 43954, - [SMALL_STATE(2873)] = 44021, - [SMALL_STATE(2874)] = 44094, - [SMALL_STATE(2875)] = 44161, - [SMALL_STATE(2876)] = 44228, - [SMALL_STATE(2877)] = 44295, - [SMALL_STATE(2878)] = 44362, - [SMALL_STATE(2879)] = 44429, - [SMALL_STATE(2880)] = 44496, - [SMALL_STATE(2881)] = 44566, - [SMALL_STATE(2882)] = 44632, - [SMALL_STATE(2883)] = 44698, - [SMALL_STATE(2884)] = 44764, - [SMALL_STATE(2885)] = 44830, - [SMALL_STATE(2886)] = 44900, - [SMALL_STATE(2887)] = 44966, - [SMALL_STATE(2888)] = 45032, - [SMALL_STATE(2889)] = 45102, - [SMALL_STATE(2890)] = 45184, - [SMALL_STATE(2891)] = 45254, - [SMALL_STATE(2892)] = 45320, - [SMALL_STATE(2893)] = 45390, - [SMALL_STATE(2894)] = 45460, - [SMALL_STATE(2895)] = 45532, - [SMALL_STATE(2896)] = 45602, - [SMALL_STATE(2897)] = 45674, - [SMALL_STATE(2898)] = 45740, - [SMALL_STATE(2899)] = 45808, - [SMALL_STATE(2900)] = 45878, - [SMALL_STATE(2901)] = 45950, - [SMALL_STATE(2902)] = 46020, - [SMALL_STATE(2903)] = 46086, - [SMALL_STATE(2904)] = 46152, - [SMALL_STATE(2905)] = 46218, - [SMALL_STATE(2906)] = 46286, - [SMALL_STATE(2907)] = 46352, - [SMALL_STATE(2908)] = 46418, - [SMALL_STATE(2909)] = 46490, - [SMALL_STATE(2910)] = 46556, - [SMALL_STATE(2911)] = 46622, - [SMALL_STATE(2912)] = 46692, - [SMALL_STATE(2913)] = 46758, - [SMALL_STATE(2914)] = 46824, - [SMALL_STATE(2915)] = 46896, - [SMALL_STATE(2916)] = 46962, - [SMALL_STATE(2917)] = 47028, - [SMALL_STATE(2918)] = 47094, - [SMALL_STATE(2919)] = 47172, - [SMALL_STATE(2920)] = 47244, - [SMALL_STATE(2921)] = 47310, - [SMALL_STATE(2922)] = 47382, - [SMALL_STATE(2923)] = 47448, - [SMALL_STATE(2924)] = 47514, - [SMALL_STATE(2925)] = 47580, - [SMALL_STATE(2926)] = 47646, - [SMALL_STATE(2927)] = 47716, - [SMALL_STATE(2928)] = 47782, - [SMALL_STATE(2929)] = 47848, - [SMALL_STATE(2930)] = 47918, - [SMALL_STATE(2931)] = 47984, - [SMALL_STATE(2932)] = 48054, - [SMALL_STATE(2933)] = 48124, - [SMALL_STATE(2934)] = 48190, - [SMALL_STATE(2935)] = 48260, - [SMALL_STATE(2936)] = 48342, - [SMALL_STATE(2937)] = 48412, - [SMALL_STATE(2938)] = 48486, - [SMALL_STATE(2939)] = 48560, - [SMALL_STATE(2940)] = 48626, - [SMALL_STATE(2941)] = 48696, - [SMALL_STATE(2942)] = 48778, - [SMALL_STATE(2943)] = 48844, - [SMALL_STATE(2944)] = 48914, - [SMALL_STATE(2945)] = 48984, - [SMALL_STATE(2946)] = 49054, - [SMALL_STATE(2947)] = 49124, - [SMALL_STATE(2948)] = 49194, - [SMALL_STATE(2949)] = 49260, - [SMALL_STATE(2950)] = 49326, - [SMALL_STATE(2951)] = 49396, - [SMALL_STATE(2952)] = 49472, - [SMALL_STATE(2953)] = 49538, - [SMALL_STATE(2954)] = 49610, - [SMALL_STATE(2955)] = 49688, - [SMALL_STATE(2956)] = 49754, - [SMALL_STATE(2957)] = 49824, - [SMALL_STATE(2958)] = 49890, - [SMALL_STATE(2959)] = 49956, - [SMALL_STATE(2960)] = 50022, - [SMALL_STATE(2961)] = 50088, - [SMALL_STATE(2962)] = 50156, - [SMALL_STATE(2963)] = 50222, - [SMALL_STATE(2964)] = 50288, - [SMALL_STATE(2965)] = 50370, - [SMALL_STATE(2966)] = 50440, - [SMALL_STATE(2967)] = 50505, - [SMALL_STATE(2968)] = 50572, - [SMALL_STATE(2969)] = 50637, - [SMALL_STATE(2970)] = 50704, - [SMALL_STATE(2971)] = 50785, - [SMALL_STATE(2972)] = 50852, - [SMALL_STATE(2973)] = 50921, - [SMALL_STATE(2974)] = 50986, - [SMALL_STATE(2975)] = 51051, - [SMALL_STATE(2976)] = 51122, - [SMALL_STATE(2977)] = 51187, - [SMALL_STATE(2978)] = 51258, - [SMALL_STATE(2979)] = 51325, - [SMALL_STATE(2980)] = 51390, - [SMALL_STATE(2981)] = 51455, - [SMALL_STATE(2982)] = 51532, - [SMALL_STATE(2983)] = 51641, - [SMALL_STATE(2984)] = 51710, - [SMALL_STATE(2985)] = 51775, - [SMALL_STATE(2986)] = 51840, - [SMALL_STATE(2987)] = 51919, - [SMALL_STATE(2988)] = 51996, - [SMALL_STATE(2989)] = 52109, - [SMALL_STATE(2990)] = 52214, - [SMALL_STATE(2991)] = 52315, - [SMALL_STATE(2992)] = 52414, - [SMALL_STATE(2993)] = 52511, - [SMALL_STATE(2994)] = 52606, - [SMALL_STATE(2995)] = 52697, - [SMALL_STATE(2996)] = 52784, - [SMALL_STATE(2997)] = 52849, - [SMALL_STATE(2998)] = 52914, - [SMALL_STATE(2999)] = 52995, - [SMALL_STATE(3000)] = 53060, - [SMALL_STATE(3001)] = 53139, - [SMALL_STATE(3002)] = 53204, - [SMALL_STATE(3003)] = 53269, - [SMALL_STATE(3004)] = 53334, - [SMALL_STATE(3005)] = 53443, - [SMALL_STATE(3006)] = 53556, - [SMALL_STATE(3007)] = 53665, - [SMALL_STATE(3008)] = 53730, - [SMALL_STATE(3009)] = 53809, - [SMALL_STATE(3010)] = 53922, - [SMALL_STATE(3011)] = 53989, - [SMALL_STATE(3012)] = 54056, - [SMALL_STATE(3013)] = 54123, - [SMALL_STATE(3014)] = 54192, - [SMALL_STATE(3015)] = 54271, - [SMALL_STATE(3016)] = 54346, - [SMALL_STATE(3017)] = 54411, - [SMALL_STATE(3018)] = 54482, - [SMALL_STATE(3019)] = 54561, - [SMALL_STATE(3020)] = 54634, - [SMALL_STATE(3021)] = 54703, - [SMALL_STATE(3022)] = 54768, - [SMALL_STATE(3023)] = 54841, - [SMALL_STATE(3024)] = 54906, - [SMALL_STATE(3025)] = 54983, - [SMALL_STATE(3026)] = 55056, - [SMALL_STATE(3027)] = 55137, - [SMALL_STATE(3028)] = 55216, - [SMALL_STATE(3029)] = 55297, - [SMALL_STATE(3030)] = 55380, - [SMALL_STATE(3031)] = 55489, - [SMALL_STATE(3032)] = 55554, - [SMALL_STATE(3033)] = 55619, - [SMALL_STATE(3034)] = 55684, - [SMALL_STATE(3035)] = 55749, - [SMALL_STATE(3036)] = 55814, - [SMALL_STATE(3037)] = 55879, - [SMALL_STATE(3038)] = 55944, - [SMALL_STATE(3039)] = 56009, - [SMALL_STATE(3040)] = 56074, - [SMALL_STATE(3041)] = 56143, - [SMALL_STATE(3042)] = 56208, - [SMALL_STATE(3043)] = 56273, - [SMALL_STATE(3044)] = 56342, - [SMALL_STATE(3045)] = 56419, - [SMALL_STATE(3046)] = 56488, - [SMALL_STATE(3047)] = 56563, - [SMALL_STATE(3048)] = 56628, - [SMALL_STATE(3049)] = 56707, - [SMALL_STATE(3050)] = 56772, - [SMALL_STATE(3051)] = 56847, - [SMALL_STATE(3052)] = 56912, - [SMALL_STATE(3053)] = 56977, - [SMALL_STATE(3054)] = 57042, - [SMALL_STATE(3055)] = 57107, - [SMALL_STATE(3056)] = 57172, - [SMALL_STATE(3057)] = 57237, - [SMALL_STATE(3058)] = 57302, - [SMALL_STATE(3059)] = 57367, - [SMALL_STATE(3060)] = 57432, - [SMALL_STATE(3061)] = 57497, - [SMALL_STATE(3062)] = 57576, - [SMALL_STATE(3063)] = 57649, - [SMALL_STATE(3064)] = 57714, - [SMALL_STATE(3065)] = 57779, - [SMALL_STATE(3066)] = 57850, - [SMALL_STATE(3067)] = 57919, - [SMALL_STATE(3068)] = 57984, - [SMALL_STATE(3069)] = 58049, - [SMALL_STATE(3070)] = 58114, - [SMALL_STATE(3071)] = 58179, - [SMALL_STATE(3072)] = 58248, - [SMALL_STATE(3073)] = 58325, - [SMALL_STATE(3074)] = 58390, - [SMALL_STATE(3075)] = 58467, - [SMALL_STATE(3076)] = 58532, - [SMALL_STATE(3077)] = 58607, - [SMALL_STATE(3078)] = 58672, - [SMALL_STATE(3079)] = 58739, - [SMALL_STATE(3080)] = 58804, - [SMALL_STATE(3081)] = 58873, - [SMALL_STATE(3082)] = 58952, - [SMALL_STATE(3083)] = 59031, - [SMALL_STATE(3084)] = 59102, - [SMALL_STATE(3085)] = 59171, - [SMALL_STATE(3086)] = 59240, - [SMALL_STATE(3087)] = 59321, - [SMALL_STATE(3088)] = 59406, - [SMALL_STATE(3089)] = 59474, - [SMALL_STATE(3090)] = 59538, - [SMALL_STATE(3091)] = 59602, - [SMALL_STATE(3092)] = 59666, - [SMALL_STATE(3093)] = 59730, - [SMALL_STATE(3094)] = 59794, - [SMALL_STATE(3095)] = 59860, - [SMALL_STATE(3096)] = 59924, - [SMALL_STATE(3097)] = 59988, - [SMALL_STATE(3098)] = 60102, - [SMALL_STATE(3099)] = 60166, - [SMALL_STATE(3100)] = 60230, - [SMALL_STATE(3101)] = 60298, - [SMALL_STATE(3102)] = 60366, - [SMALL_STATE(3103)] = 60430, - [SMALL_STATE(3104)] = 60494, - [SMALL_STATE(3105)] = 60562, - [SMALL_STATE(3106)] = 60626, - [SMALL_STATE(3107)] = 60690, - [SMALL_STATE(3108)] = 60754, - [SMALL_STATE(3109)] = 60818, - [SMALL_STATE(3110)] = 60882, - [SMALL_STATE(3111)] = 60946, - [SMALL_STATE(3112)] = 61010, - [SMALL_STATE(3113)] = 61074, - [SMALL_STATE(3114)] = 61142, - [SMALL_STATE(3115)] = 61206, - [SMALL_STATE(3116)] = 61274, - [SMALL_STATE(3117)] = 61338, - [SMALL_STATE(3118)] = 61406, - [SMALL_STATE(3119)] = 61474, - [SMALL_STATE(3120)] = 61538, - [SMALL_STATE(3121)] = 61602, - [SMALL_STATE(3122)] = 61682, - [SMALL_STATE(3123)] = 61746, - [SMALL_STATE(3124)] = 61810, - [SMALL_STATE(3125)] = 61874, - [SMALL_STATE(3126)] = 61938, - [SMALL_STATE(3127)] = 62006, - [SMALL_STATE(3128)] = 62074, - [SMALL_STATE(3129)] = 62150, - [SMALL_STATE(3130)] = 62218, - [SMALL_STATE(3131)] = 62286, - [SMALL_STATE(3132)] = 62354, - [SMALL_STATE(3133)] = 62418, - [SMALL_STATE(3134)] = 62486, - [SMALL_STATE(3135)] = 62550, - [SMALL_STATE(3136)] = 62616, - [SMALL_STATE(3137)] = 62696, - [SMALL_STATE(3138)] = 62760, - [SMALL_STATE(3139)] = 62826, - [SMALL_STATE(3140)] = 62894, - [SMALL_STATE(3141)] = 62958, - [SMALL_STATE(3142)] = 63022, - [SMALL_STATE(3143)] = 63090, - [SMALL_STATE(3144)] = 63154, - [SMALL_STATE(3145)] = 63218, - [SMALL_STATE(3146)] = 63288, - [SMALL_STATE(3147)] = 63352, - [SMALL_STATE(3148)] = 63416, - [SMALL_STATE(3149)] = 63480, - [SMALL_STATE(3150)] = 63548, - [SMALL_STATE(3151)] = 63612, - [SMALL_STATE(3152)] = 63680, - [SMALL_STATE(3153)] = 63748, - [SMALL_STATE(3154)] = 63816, - [SMALL_STATE(3155)] = 63884, - [SMALL_STATE(3156)] = 63948, - [SMALL_STATE(3157)] = 64012, - [SMALL_STATE(3158)] = 64080, - [SMALL_STATE(3159)] = 64148, - [SMALL_STATE(3160)] = 64212, - [SMALL_STATE(3161)] = 64276, - [SMALL_STATE(3162)] = 64352, - [SMALL_STATE(3163)] = 64420, - [SMALL_STATE(3164)] = 64492, - [SMALL_STATE(3165)] = 64556, - [SMALL_STATE(3166)] = 64620, - [SMALL_STATE(3167)] = 64684, - [SMALL_STATE(3168)] = 64750, - [SMALL_STATE(3169)] = 64814, - [SMALL_STATE(3170)] = 64878, - [SMALL_STATE(3171)] = 64942, - [SMALL_STATE(3172)] = 65012, - [SMALL_STATE(3173)] = 65076, - [SMALL_STATE(3174)] = 65140, - [SMALL_STATE(3175)] = 65204, - [SMALL_STATE(3176)] = 65272, - [SMALL_STATE(3177)] = 65378, - [SMALL_STATE(3178)] = 65480, - [SMALL_STATE(3179)] = 65544, - [SMALL_STATE(3180)] = 65608, - [SMALL_STATE(3181)] = 65672, - [SMALL_STATE(3182)] = 65736, - [SMALL_STATE(3183)] = 65800, - [SMALL_STATE(3184)] = 65910, - [SMALL_STATE(3185)] = 65974, - [SMALL_STATE(3186)] = 66038, - [SMALL_STATE(3187)] = 66102, - [SMALL_STATE(3188)] = 66170, - [SMALL_STATE(3189)] = 66268, - [SMALL_STATE(3190)] = 66332, - [SMALL_STATE(3191)] = 66396, - [SMALL_STATE(3192)] = 66460, - [SMALL_STATE(3193)] = 66524, - [SMALL_STATE(3194)] = 66588, - [SMALL_STATE(3195)] = 66656, - [SMALL_STATE(3196)] = 66720, - [SMALL_STATE(3197)] = 66784, - [SMALL_STATE(3198)] = 66848, - [SMALL_STATE(3199)] = 66912, - [SMALL_STATE(3200)] = 66976, - [SMALL_STATE(3201)] = 67056, - [SMALL_STATE(3202)] = 67120, - [SMALL_STATE(3203)] = 67184, - [SMALL_STATE(3204)] = 67248, - [SMALL_STATE(3205)] = 67314, - [SMALL_STATE(3206)] = 67378, - [SMALL_STATE(3207)] = 67442, - [SMALL_STATE(3208)] = 67506, - [SMALL_STATE(3209)] = 67570, - [SMALL_STATE(3210)] = 67666, - [SMALL_STATE(3211)] = 67730, - [SMALL_STATE(3212)] = 67794, - [SMALL_STATE(3213)] = 67858, - [SMALL_STATE(3214)] = 67922, - [SMALL_STATE(3215)] = 67986, - [SMALL_STATE(3216)] = 68052, - [SMALL_STATE(3217)] = 68116, - [SMALL_STATE(3218)] = 68180, - [SMALL_STATE(3219)] = 68244, - [SMALL_STATE(3220)] = 68354, - [SMALL_STATE(3221)] = 68420, - [SMALL_STATE(3222)] = 68488, - [SMALL_STATE(3223)] = 68552, - [SMALL_STATE(3224)] = 68616, - [SMALL_STATE(3225)] = 68680, - [SMALL_STATE(3226)] = 68744, - [SMALL_STATE(3227)] = 68808, - [SMALL_STATE(3228)] = 68876, - [SMALL_STATE(3229)] = 68940, - [SMALL_STATE(3230)] = 69004, - [SMALL_STATE(3231)] = 69068, - [SMALL_STATE(3232)] = 69132, - [SMALL_STATE(3233)] = 69200, - [SMALL_STATE(3234)] = 69268, - [SMALL_STATE(3235)] = 69332, - [SMALL_STATE(3236)] = 69396, - [SMALL_STATE(3237)] = 69468, - [SMALL_STATE(3238)] = 69532, - [SMALL_STATE(3239)] = 69596, - [SMALL_STATE(3240)] = 69706, - [SMALL_STATE(3241)] = 69798, - [SMALL_STATE(3242)] = 69862, - [SMALL_STATE(3243)] = 69926, - [SMALL_STATE(3244)] = 69990, - [SMALL_STATE(3245)] = 70056, - [SMALL_STATE(3246)] = 70120, - [SMALL_STATE(3247)] = 70184, - [SMALL_STATE(3248)] = 70248, - [SMALL_STATE(3249)] = 70312, - [SMALL_STATE(3250)] = 70384, - [SMALL_STATE(3251)] = 70448, - [SMALL_STATE(3252)] = 70512, - [SMALL_STATE(3253)] = 70576, - [SMALL_STATE(3254)] = 70644, - [SMALL_STATE(3255)] = 70710, - [SMALL_STATE(3256)] = 70778, - [SMALL_STATE(3257)] = 70842, - [SMALL_STATE(3258)] = 70910, - [SMALL_STATE(3259)] = 70974, - [SMALL_STATE(3260)] = 71038, - [SMALL_STATE(3261)] = 71102, - [SMALL_STATE(3262)] = 71216, - [SMALL_STATE(3263)] = 71280, - [SMALL_STATE(3264)] = 71344, - [SMALL_STATE(3265)] = 71408, - [SMALL_STATE(3266)] = 71472, - [SMALL_STATE(3267)] = 71536, - [SMALL_STATE(3268)] = 71606, - [SMALL_STATE(3269)] = 71720, - [SMALL_STATE(3270)] = 71784, - [SMALL_STATE(3271)] = 71848, - [SMALL_STATE(3272)] = 71912, - [SMALL_STATE(3273)] = 71976, - [SMALL_STATE(3274)] = 72040, - [SMALL_STATE(3275)] = 72104, - [SMALL_STATE(3276)] = 72168, - [SMALL_STATE(3277)] = 72232, - [SMALL_STATE(3278)] = 72296, - [SMALL_STATE(3279)] = 72360, - [SMALL_STATE(3280)] = 72450, - [SMALL_STATE(3281)] = 72514, - [SMALL_STATE(3282)] = 72600, - [SMALL_STATE(3283)] = 72668, - [SMALL_STATE(3284)] = 72750, - [SMALL_STATE(3285)] = 72818, - [SMALL_STATE(3286)] = 72882, - [SMALL_STATE(3287)] = 72962, - [SMALL_STATE(3288)] = 73046, - [SMALL_STATE(3289)] = 73126, - [SMALL_STATE(3290)] = 73196, - [SMALL_STATE(3291)] = 73260, - [SMALL_STATE(3292)] = 73324, - [SMALL_STATE(3293)] = 73392, - [SMALL_STATE(3294)] = 73502, - [SMALL_STATE(3295)] = 73566, - [SMALL_STATE(3296)] = 73630, - [SMALL_STATE(3297)] = 73702, - [SMALL_STATE(3298)] = 73766, - [SMALL_STATE(3299)] = 73830, - [SMALL_STATE(3300)] = 73893, - [SMALL_STATE(3301)] = 73972, - [SMALL_STATE(3302)] = 74035, - [SMALL_STATE(3303)] = 74098, - [SMALL_STATE(3304)] = 74161, - [SMALL_STATE(3305)] = 74224, - [SMALL_STATE(3306)] = 74287, - [SMALL_STATE(3307)] = 74354, - [SMALL_STATE(3308)] = 74417, - [SMALL_STATE(3309)] = 74520, - [SMALL_STATE(3310)] = 74587, - [SMALL_STATE(3311)] = 74686, - [SMALL_STATE(3312)] = 74753, - [SMALL_STATE(3313)] = 74850, - [SMALL_STATE(3314)] = 74913, - [SMALL_STATE(3315)] = 74982, - [SMALL_STATE(3316)] = 75045, - [SMALL_STATE(3317)] = 75122, - [SMALL_STATE(3318)] = 75185, - [SMALL_STATE(3319)] = 75248, - [SMALL_STATE(3320)] = 75311, - [SMALL_STATE(3321)] = 75374, - [SMALL_STATE(3322)] = 75437, - [SMALL_STATE(3323)] = 75500, - [SMALL_STATE(3324)] = 75563, - [SMALL_STATE(3325)] = 75632, - [SMALL_STATE(3326)] = 75695, - [SMALL_STATE(3327)] = 75758, - [SMALL_STATE(3328)] = 75821, - [SMALL_STATE(3329)] = 75892, - [SMALL_STATE(3330)] = 75955, - [SMALL_STATE(3331)] = 76018, - [SMALL_STATE(3332)] = 76113, - [SMALL_STATE(3333)] = 76180, - [SMALL_STATE(3334)] = 76273, - [SMALL_STATE(3335)] = 76362, - [SMALL_STATE(3336)] = 76447, - [SMALL_STATE(3337)] = 76514, - [SMALL_STATE(3338)] = 76577, - [SMALL_STATE(3339)] = 76640, - [SMALL_STATE(3340)] = 76705, - [SMALL_STATE(3341)] = 76772, - [SMALL_STATE(3342)] = 76835, - [SMALL_STATE(3343)] = 76898, - [SMALL_STATE(3344)] = 76961, - [SMALL_STATE(3345)] = 77024, - [SMALL_STATE(3346)] = 77087, - [SMALL_STATE(3347)] = 77150, - [SMALL_STATE(3348)] = 77231, - [SMALL_STATE(3349)] = 77294, - [SMALL_STATE(3350)] = 77357, - [SMALL_STATE(3351)] = 77420, - [SMALL_STATE(3352)] = 77483, - [SMALL_STATE(3353)] = 77546, - [SMALL_STATE(3354)] = 77613, - [SMALL_STATE(3355)] = 77676, - [SMALL_STATE(3356)] = 77759, - [SMALL_STATE(3357)] = 77822, - [SMALL_STATE(3358)] = 77885, - [SMALL_STATE(3359)] = 77948, - [SMALL_STATE(3360)] = 78011, - [SMALL_STATE(3361)] = 78090, - [SMALL_STATE(3362)] = 78155, - [SMALL_STATE(3363)] = 78218, - [SMALL_STATE(3364)] = 78281, - [SMALL_STATE(3365)] = 78344, - [SMALL_STATE(3366)] = 78407, - [SMALL_STATE(3367)] = 78470, - [SMALL_STATE(3368)] = 78533, - [SMALL_STATE(3369)] = 78658, - [SMALL_STATE(3370)] = 78721, - [SMALL_STATE(3371)] = 78792, - [SMALL_STATE(3372)] = 78855, - [SMALL_STATE(3373)] = 78918, - [SMALL_STATE(3374)] = 78981, - [SMALL_STATE(3375)] = 79088, - [SMALL_STATE(3376)] = 79161, - [SMALL_STATE(3377)] = 79228, - [SMALL_STATE(3378)] = 79291, - [SMALL_STATE(3379)] = 79354, - [SMALL_STATE(3380)] = 79417, - [SMALL_STATE(3381)] = 79480, - [SMALL_STATE(3382)] = 79605, - [SMALL_STATE(3383)] = 79712, - [SMALL_STATE(3384)] = 79775, - [SMALL_STATE(3385)] = 79838, - [SMALL_STATE(3386)] = 79901, - [SMALL_STATE(3387)] = 79964, - [SMALL_STATE(3388)] = 80027, - [SMALL_STATE(3389)] = 80100, - [SMALL_STATE(3390)] = 80163, - [SMALL_STATE(3391)] = 80274, - [SMALL_STATE(3392)] = 80337, - [SMALL_STATE(3393)] = 80400, - [SMALL_STATE(3394)] = 80463, - [SMALL_STATE(3395)] = 80530, - [SMALL_STATE(3396)] = 80605, - [SMALL_STATE(3397)] = 80672, - [SMALL_STATE(3398)] = 80735, - [SMALL_STATE(3399)] = 80802, - [SMALL_STATE(3400)] = 80865, - [SMALL_STATE(3401)] = 80932, - [SMALL_STATE(3402)] = 81039, - [SMALL_STATE(3403)] = 81102, - [SMALL_STATE(3404)] = 81165, - [SMALL_STATE(3405)] = 81228, - [SMALL_STATE(3406)] = 81339, - [SMALL_STATE(3407)] = 81402, - [SMALL_STATE(3408)] = 81465, - [SMALL_STATE(3409)] = 81538, - [SMALL_STATE(3410)] = 81605, - [SMALL_STATE(3411)] = 81668, - [SMALL_STATE(3412)] = 81745, - [SMALL_STATE(3413)] = 81808, - [SMALL_STATE(3414)] = 81871, - [SMALL_STATE(3415)] = 81996, - [SMALL_STATE(3416)] = 82059, - [SMALL_STATE(3417)] = 82122, - [SMALL_STATE(3418)] = 82191, - [SMALL_STATE(3419)] = 82316, - [SMALL_STATE(3420)] = 82385, - [SMALL_STATE(3421)] = 82464, - [SMALL_STATE(3422)] = 82527, - [SMALL_STATE(3423)] = 82600, - [SMALL_STATE(3424)] = 82671, - [SMALL_STATE(3425)] = 82734, - [SMALL_STATE(3426)] = 82841, - [SMALL_STATE(3427)] = 82918, - [SMALL_STATE(3428)] = 82981, - [SMALL_STATE(3429)] = 83052, - [SMALL_STATE(3430)] = 83117, - [SMALL_STATE(3431)] = 83180, - [SMALL_STATE(3432)] = 83243, - [SMALL_STATE(3433)] = 83322, - [SMALL_STATE(3434)] = 83385, - [SMALL_STATE(3435)] = 83448, - [SMALL_STATE(3436)] = 83511, - [SMALL_STATE(3437)] = 83574, - [SMALL_STATE(3438)] = 83637, - [SMALL_STATE(3439)] = 83700, - [SMALL_STATE(3440)] = 83807, - [SMALL_STATE(3441)] = 83872, - [SMALL_STATE(3442)] = 83949, - [SMALL_STATE(3443)] = 84012, - [SMALL_STATE(3444)] = 84079, - [SMALL_STATE(3445)] = 84190, - [SMALL_STATE(3446)] = 84253, - [SMALL_STATE(3447)] = 84316, - [SMALL_STATE(3448)] = 84441, - [SMALL_STATE(3449)] = 84504, - [SMALL_STATE(3450)] = 84567, - [SMALL_STATE(3451)] = 84646, - [SMALL_STATE(3452)] = 84709, - [SMALL_STATE(3453)] = 84772, - [SMALL_STATE(3454)] = 84849, - [SMALL_STATE(3455)] = 84924, - [SMALL_STATE(3456)] = 84987, - [SMALL_STATE(3457)] = 85058, - [SMALL_STATE(3458)] = 85125, - [SMALL_STATE(3459)] = 85188, - [SMALL_STATE(3460)] = 85251, - [SMALL_STATE(3461)] = 85314, - [SMALL_STATE(3462)] = 85377, - [SMALL_STATE(3463)] = 85440, - [SMALL_STATE(3464)] = 85565, - [SMALL_STATE(3465)] = 85628, - [SMALL_STATE(3466)] = 85691, - [SMALL_STATE(3467)] = 85754, - [SMALL_STATE(3468)] = 85818, - [SMALL_STATE(3469)] = 85884, - [SMALL_STATE(3470)] = 85946, - [SMALL_STATE(3471)] = 86012, - [SMALL_STATE(3472)] = 86076, - [SMALL_STATE(3473)] = 86138, - [SMALL_STATE(3474)] = 86200, - [SMALL_STATE(3475)] = 86262, - [SMALL_STATE(3476)] = 86324, - [SMALL_STATE(3477)] = 86386, - [SMALL_STATE(3478)] = 86448, - [SMALL_STATE(3479)] = 86510, - [SMALL_STATE(3480)] = 86572, - [SMALL_STATE(3481)] = 86634, - [SMALL_STATE(3482)] = 86696, - [SMALL_STATE(3483)] = 86758, - [SMALL_STATE(3484)] = 86820, - [SMALL_STATE(3485)] = 86882, - [SMALL_STATE(3486)] = 86968, - [SMALL_STATE(3487)] = 87030, - [SMALL_STATE(3488)] = 87092, - [SMALL_STATE(3489)] = 87154, - [SMALL_STATE(3490)] = 87216, - [SMALL_STATE(3491)] = 87278, - [SMALL_STATE(3492)] = 87340, - [SMALL_STATE(3493)] = 87402, - [SMALL_STATE(3494)] = 87464, - [SMALL_STATE(3495)] = 87526, - [SMALL_STATE(3496)] = 87588, - [SMALL_STATE(3497)] = 87650, - [SMALL_STATE(3498)] = 87712, - [SMALL_STATE(3499)] = 87774, - [SMALL_STATE(3500)] = 87836, - [SMALL_STATE(3501)] = 87898, - [SMALL_STATE(3502)] = 87960, - [SMALL_STATE(3503)] = 88022, - [SMALL_STATE(3504)] = 88084, - [SMALL_STATE(3505)] = 88148, - [SMALL_STATE(3506)] = 88210, - [SMALL_STATE(3507)] = 88280, - [SMALL_STATE(3508)] = 88346, - [SMALL_STATE(3509)] = 88416, - [SMALL_STATE(3510)] = 88478, - [SMALL_STATE(3511)] = 88550, - [SMALL_STATE(3512)] = 88612, - [SMALL_STATE(3513)] = 88676, - [SMALL_STATE(3514)] = 88748, - [SMALL_STATE(3515)] = 88818, - [SMALL_STATE(3516)] = 88880, - [SMALL_STATE(3517)] = 88942, - [SMALL_STATE(3518)] = 89004, - [SMALL_STATE(3519)] = 89068, - [SMALL_STATE(3520)] = 89130, - [SMALL_STATE(3521)] = 89192, - [SMALL_STATE(3522)] = 89254, - [SMALL_STATE(3523)] = 89316, - [SMALL_STATE(3524)] = 89378, - [SMALL_STATE(3525)] = 89444, - [SMALL_STATE(3526)] = 89510, - [SMALL_STATE(3527)] = 89572, - [SMALL_STATE(3528)] = 89634, - [SMALL_STATE(3529)] = 89696, - [SMALL_STATE(3530)] = 89762, - [SMALL_STATE(3531)] = 89828, - [SMALL_STATE(3532)] = 89894, - [SMALL_STATE(3533)] = 89960, - [SMALL_STATE(3534)] = 90026, - [SMALL_STATE(3535)] = 90088, - [SMALL_STATE(3536)] = 90154, - [SMALL_STATE(3537)] = 90220, - [SMALL_STATE(3538)] = 90286, - [SMALL_STATE(3539)] = 90352, - [SMALL_STATE(3540)] = 90418, - [SMALL_STATE(3541)] = 90480, - [SMALL_STATE(3542)] = 90542, - [SMALL_STATE(3543)] = 90608, - [SMALL_STATE(3544)] = 90676, - [SMALL_STATE(3545)] = 90738, - [SMALL_STATE(3546)] = 90804, - [SMALL_STATE(3547)] = 90890, - [SMALL_STATE(3548)] = 90952, - [SMALL_STATE(3549)] = 91014, - [SMALL_STATE(3550)] = 91076, - [SMALL_STATE(3551)] = 91138, - [SMALL_STATE(3552)] = 91204, - [SMALL_STATE(3553)] = 91272, - [SMALL_STATE(3554)] = 91342, - [SMALL_STATE(3555)] = 91404, - [SMALL_STATE(3556)] = 91470, - [SMALL_STATE(3557)] = 91532, - [SMALL_STATE(3558)] = 91594, - [SMALL_STATE(3559)] = 91662, - [SMALL_STATE(3560)] = 91728, - [SMALL_STATE(3561)] = 91790, - [SMALL_STATE(3562)] = 91852, - [SMALL_STATE(3563)] = 91918, - [SMALL_STATE(3564)] = 91980, - [SMALL_STATE(3565)] = 92042, - [SMALL_STATE(3566)] = 92104, - [SMALL_STATE(3567)] = 92166, - [SMALL_STATE(3568)] = 92228, - [SMALL_STATE(3569)] = 92290, - [SMALL_STATE(3570)] = 92352, - [SMALL_STATE(3571)] = 92414, - [SMALL_STATE(3572)] = 92480, - [SMALL_STATE(3573)] = 92546, - [SMALL_STATE(3574)] = 92608, - [SMALL_STATE(3575)] = 92670, - [SMALL_STATE(3576)] = 92736, - [SMALL_STATE(3577)] = 92806, - [SMALL_STATE(3578)] = 92872, - [SMALL_STATE(3579)] = 92936, - [SMALL_STATE(3580)] = 93008, - [SMALL_STATE(3581)] = 93076, - [SMALL_STATE(3582)] = 93138, - [SMALL_STATE(3583)] = 93200, - [SMALL_STATE(3584)] = 93262, - [SMALL_STATE(3585)] = 93324, - [SMALL_STATE(3586)] = 93386, - [SMALL_STATE(3587)] = 93448, - [SMALL_STATE(3588)] = 93510, - [SMALL_STATE(3589)] = 93572, - [SMALL_STATE(3590)] = 93634, - [SMALL_STATE(3591)] = 93696, - [SMALL_STATE(3592)] = 93768, - [SMALL_STATE(3593)] = 93830, - [SMALL_STATE(3594)] = 93892, - [SMALL_STATE(3595)] = 93954, - [SMALL_STATE(3596)] = 94016, - [SMALL_STATE(3597)] = 94078, - [SMALL_STATE(3598)] = 94140, - [SMALL_STATE(3599)] = 94212, - [SMALL_STATE(3600)] = 94280, - [SMALL_STATE(3601)] = 94342, - [SMALL_STATE(3602)] = 94404, - [SMALL_STATE(3603)] = 94476, - [SMALL_STATE(3604)] = 94538, - [SMALL_STATE(3605)] = 94600, - [SMALL_STATE(3606)] = 94662, - [SMALL_STATE(3607)] = 94728, - [SMALL_STATE(3608)] = 94793, - [SMALL_STATE(3609)] = 94854, - [SMALL_STATE(3610)] = 94915, - [SMALL_STATE(3611)] = 94988, - [SMALL_STATE(3612)] = 95053, - [SMALL_STATE(3613)] = 95118, - [SMALL_STATE(3614)] = 95179, - [SMALL_STATE(3615)] = 95240, - [SMALL_STATE(3616)] = 95305, - [SMALL_STATE(3617)] = 95366, - [SMALL_STATE(3618)] = 95427, - [SMALL_STATE(3619)] = 95492, - [SMALL_STATE(3620)] = 95557, - [SMALL_STATE(3621)] = 95618, - [SMALL_STATE(3622)] = 95679, - [SMALL_STATE(3623)] = 95740, - [SMALL_STATE(3624)] = 95801, - [SMALL_STATE(3625)] = 95862, - [SMALL_STATE(3626)] = 95923, - [SMALL_STATE(3627)] = 95984, - [SMALL_STATE(3628)] = 96045, - [SMALL_STATE(3629)] = 96106, - [SMALL_STATE(3630)] = 96171, - [SMALL_STATE(3631)] = 96236, - [SMALL_STATE(3632)] = 96297, - [SMALL_STATE(3633)] = 96360, - [SMALL_STATE(3634)] = 96421, - [SMALL_STATE(3635)] = 96482, - [SMALL_STATE(3636)] = 96549, - [SMALL_STATE(3637)] = 96612, - [SMALL_STATE(3638)] = 96673, - [SMALL_STATE(3639)] = 96734, - [SMALL_STATE(3640)] = 96795, - [SMALL_STATE(3641)] = 96856, - [SMALL_STATE(3642)] = 96917, - [SMALL_STATE(3643)] = 96986, - [SMALL_STATE(3644)] = 97047, - [SMALL_STATE(3645)] = 97108, - [SMALL_STATE(3646)] = 97169, - [SMALL_STATE(3647)] = 97236, - [SMALL_STATE(3648)] = 97301, - [SMALL_STATE(3649)] = 97406, - [SMALL_STATE(3650)] = 97473, - [SMALL_STATE(3651)] = 97534, - [SMALL_STATE(3652)] = 97595, - [SMALL_STATE(3653)] = 97656, - [SMALL_STATE(3654)] = 97717, - [SMALL_STATE(3655)] = 97824, - [SMALL_STATE(3656)] = 97901, - [SMALL_STATE(3657)] = 97980, - [SMALL_STATE(3658)] = 98061, - [SMALL_STATE(3659)] = 98168, - [SMALL_STATE(3660)] = 98229, - [SMALL_STATE(3661)] = 98290, - [SMALL_STATE(3662)] = 98351, - [SMALL_STATE(3663)] = 98412, - [SMALL_STATE(3664)] = 98473, - [SMALL_STATE(3665)] = 98534, - [SMALL_STATE(3666)] = 98601, - [SMALL_STATE(3667)] = 98676, - [SMALL_STATE(3668)] = 98743, - [SMALL_STATE(3669)] = 98804, - [SMALL_STATE(3670)] = 98865, - [SMALL_STATE(3671)] = 98926, - [SMALL_STATE(3672)] = 98987, - [SMALL_STATE(3673)] = 99048, - [SMALL_STATE(3674)] = 99109, - [SMALL_STATE(3675)] = 99170, - [SMALL_STATE(3676)] = 99231, - [SMALL_STATE(3677)] = 99292, - [SMALL_STATE(3678)] = 99353, - [SMALL_STATE(3679)] = 99418, - [SMALL_STATE(3680)] = 99479, - [SMALL_STATE(3681)] = 99554, - [SMALL_STATE(3682)] = 99615, - [SMALL_STATE(3683)] = 99676, - [SMALL_STATE(3684)] = 99737, - [SMALL_STATE(3685)] = 99798, - [SMALL_STATE(3686)] = 99859, - [SMALL_STATE(3687)] = 99922, - [SMALL_STATE(3688)] = 99985, - [SMALL_STATE(3689)] = 100046, - [SMALL_STATE(3690)] = 100107, - [SMALL_STATE(3691)] = 100172, - [SMALL_STATE(3692)] = 100233, - [SMALL_STATE(3693)] = 100344, - [SMALL_STATE(3694)] = 100455, - [SMALL_STATE(3695)] = 100516, - [SMALL_STATE(3696)] = 100577, - [SMALL_STATE(3697)] = 100638, - [SMALL_STATE(3698)] = 100699, - [SMALL_STATE(3699)] = 100760, - [SMALL_STATE(3700)] = 100821, - [SMALL_STATE(3701)] = 100882, - [SMALL_STATE(3702)] = 100943, - [SMALL_STATE(3703)] = 101004, - [SMALL_STATE(3704)] = 101075, - [SMALL_STATE(3705)] = 101136, - [SMALL_STATE(3706)] = 101197, - [SMALL_STATE(3707)] = 101258, - [SMALL_STATE(3708)] = 101319, - [SMALL_STATE(3709)] = 101388, - [SMALL_STATE(3710)] = 101449, - [SMALL_STATE(3711)] = 101510, - [SMALL_STATE(3712)] = 101571, - [SMALL_STATE(3713)] = 101632, - [SMALL_STATE(3714)] = 101693, - [SMALL_STATE(3715)] = 101754, - [SMALL_STATE(3716)] = 101831, - [SMALL_STATE(3717)] = 101892, - [SMALL_STATE(3718)] = 101961, - [SMALL_STATE(3719)] = 102036, - [SMALL_STATE(3720)] = 102139, - [SMALL_STATE(3721)] = 102238, - [SMALL_STATE(3722)] = 102299, - [SMALL_STATE(3723)] = 102364, - [SMALL_STATE(3724)] = 102459, - [SMALL_STATE(3725)] = 102552, - [SMALL_STATE(3726)] = 102641, - [SMALL_STATE(3727)] = 102706, - [SMALL_STATE(3728)] = 102767, - [SMALL_STATE(3729)] = 102854, - [SMALL_STATE(3730)] = 102937, - [SMALL_STATE(3731)] = 102998, - [SMALL_STATE(3732)] = 103059, - [SMALL_STATE(3733)] = 103120, - [SMALL_STATE(3734)] = 103181, - [SMALL_STATE(3735)] = 103242, - [SMALL_STATE(3736)] = 103321, - [SMALL_STATE(3737)] = 103382, - [SMALL_STATE(3738)] = 103443, - [SMALL_STATE(3739)] = 103504, - [SMALL_STATE(3740)] = 103565, - [SMALL_STATE(3741)] = 103646, - [SMALL_STATE(3742)] = 103707, - [SMALL_STATE(3743)] = 103768, - [SMALL_STATE(3744)] = 103829, - [SMALL_STATE(3745)] = 103894, - [SMALL_STATE(3746)] = 103959, - [SMALL_STATE(3747)] = 104020, - [SMALL_STATE(3748)] = 104125, - [SMALL_STATE(3749)] = 104186, - [SMALL_STATE(3750)] = 104247, - [SMALL_STATE(3751)] = 104308, - [SMALL_STATE(3752)] = 104383, - [SMALL_STATE(3753)] = 104444, - [SMALL_STATE(3754)] = 104505, - [SMALL_STATE(3755)] = 104578, - [SMALL_STATE(3756)] = 104653, - [SMALL_STATE(3757)] = 104718, - [SMALL_STATE(3758)] = 104779, - [SMALL_STATE(3759)] = 104850, - [SMALL_STATE(3760)] = 104911, - [SMALL_STATE(3761)] = 104972, - [SMALL_STATE(3762)] = 105079, - [SMALL_STATE(3763)] = 105150, - [SMALL_STATE(3764)] = 105257, - [SMALL_STATE(3765)] = 105368, - [SMALL_STATE(3766)] = 105433, - [SMALL_STATE(3767)] = 105498, - [SMALL_STATE(3768)] = 105559, - [SMALL_STATE(3769)] = 105662, - [SMALL_STATE(3770)] = 105761, - [SMALL_STATE(3771)] = 105856, - [SMALL_STATE(3772)] = 105949, - [SMALL_STATE(3773)] = 106038, - [SMALL_STATE(3774)] = 106125, - [SMALL_STATE(3775)] = 106208, - [SMALL_STATE(3776)] = 106315, - [SMALL_STATE(3777)] = 106422, - [SMALL_STATE(3778)] = 106533, - [SMALL_STATE(3779)] = 106640, - [SMALL_STATE(3780)] = 106705, - [SMALL_STATE(3781)] = 106770, - [SMALL_STATE(3782)] = 106835, - [SMALL_STATE(3783)] = 106946, - [SMALL_STATE(3784)] = 107017, - [SMALL_STATE(3785)] = 107078, - [SMALL_STATE(3786)] = 107139, - [SMALL_STATE(3787)] = 107200, - [SMALL_STATE(3788)] = 107261, - [SMALL_STATE(3789)] = 107372, - [SMALL_STATE(3790)] = 107433, - [SMALL_STATE(3791)] = 107494, - [SMALL_STATE(3792)] = 107557, - [SMALL_STATE(3793)] = 107626, - [SMALL_STATE(3794)] = 107697, - [SMALL_STATE(3795)] = 107804, - [SMALL_STATE(3796)] = 107865, - [SMALL_STATE(3797)] = 107926, - [SMALL_STATE(3798)] = 107987, - [SMALL_STATE(3799)] = 108048, - [SMALL_STATE(3800)] = 108109, - [SMALL_STATE(3801)] = 108186, - [SMALL_STATE(3802)] = 108247, - [SMALL_STATE(3803)] = 108316, - [SMALL_STATE(3804)] = 108377, - [SMALL_STATE(3805)] = 108438, - [SMALL_STATE(3806)] = 108499, - [SMALL_STATE(3807)] = 108561, - [SMALL_STATE(3808)] = 108643, - [SMALL_STATE(3809)] = 108721, - [SMALL_STATE(3810)] = 108789, - [SMALL_STATE(3811)] = 108869, - [SMALL_STATE(3812)] = 108929, - [SMALL_STATE(3813)] = 109043, - [SMALL_STATE(3814)] = 109117, - [SMALL_STATE(3815)] = 109187, - [SMALL_STATE(3816)] = 109247, - [SMALL_STATE(3817)] = 109313, - [SMALL_STATE(3818)] = 109385, - [SMALL_STATE(3819)] = 109451, - [SMALL_STATE(3820)] = 109511, - [SMALL_STATE(3821)] = 109571, - [SMALL_STATE(3822)] = 109685, - [SMALL_STATE(3823)] = 109745, - [SMALL_STATE(3824)] = 109811, - [SMALL_STATE(3825)] = 109871, - [SMALL_STATE(3826)] = 109931, - [SMALL_STATE(3827)] = 109991, - [SMALL_STATE(3828)] = 110055, - [SMALL_STATE(3829)] = 110119, - [SMALL_STATE(3830)] = 110179, - [SMALL_STATE(3831)] = 110253, - [SMALL_STATE(3832)] = 110313, - [SMALL_STATE(3833)] = 110373, - [SMALL_STATE(3834)] = 110439, - [SMALL_STATE(3835)] = 110513, - [SMALL_STATE(3836)] = 110573, - [SMALL_STATE(3837)] = 110633, - [SMALL_STATE(3838)] = 110693, - [SMALL_STATE(3839)] = 110753, - [SMALL_STATE(3840)] = 110821, - [SMALL_STATE(3841)] = 110881, - [SMALL_STATE(3842)] = 110943, - [SMALL_STATE(3843)] = 111003, - [SMALL_STATE(3844)] = 111107, - [SMALL_STATE(3845)] = 111171, - [SMALL_STATE(3846)] = 111275, - [SMALL_STATE(3847)] = 111335, - [SMALL_STATE(3848)] = 111407, - [SMALL_STATE(3849)] = 111467, - [SMALL_STATE(3850)] = 111581, - [SMALL_STATE(3851)] = 111689, - [SMALL_STATE(3852)] = 111753, - [SMALL_STATE(3853)] = 111817, - [SMALL_STATE(3854)] = 111931, - [SMALL_STATE(3855)] = 112035, - [SMALL_STATE(3856)] = 112095, - [SMALL_STATE(3857)] = 112155, - [SMALL_STATE(3858)] = 112269, - [SMALL_STATE(3859)] = 112329, - [SMALL_STATE(3860)] = 112391, - [SMALL_STATE(3861)] = 112451, - [SMALL_STATE(3862)] = 112511, - [SMALL_STATE(3863)] = 112583, - [SMALL_STATE(3864)] = 112643, - [SMALL_STATE(3865)] = 112753, - [SMALL_STATE(3866)] = 112821, - [SMALL_STATE(3867)] = 112881, - [SMALL_STATE(3868)] = 112995, - [SMALL_STATE(3869)] = 113055, - [SMALL_STATE(3870)] = 113115, - [SMALL_STATE(3871)] = 113175, - [SMALL_STATE(3872)] = 113289, - [SMALL_STATE(3873)] = 113357, - [SMALL_STATE(3874)] = 113423, - [SMALL_STATE(3875)] = 113491, - [SMALL_STATE(3876)] = 113605, - [SMALL_STATE(3877)] = 113669, - [SMALL_STATE(3878)] = 113783, - [SMALL_STATE(3879)] = 113851, - [SMALL_STATE(3880)] = 113911, - [SMALL_STATE(3881)] = 114025, - [SMALL_STATE(3882)] = 114085, - [SMALL_STATE(3883)] = 114199, - [SMALL_STATE(3884)] = 114277, - [SMALL_STATE(3885)] = 114391, - [SMALL_STATE(3886)] = 114459, - [SMALL_STATE(3887)] = 114563, - [SMALL_STATE(3888)] = 114623, - [SMALL_STATE(3889)] = 114683, - [SMALL_STATE(3890)] = 114749, - [SMALL_STATE(3891)] = 114815, - [SMALL_STATE(3892)] = 114879, - [SMALL_STATE(3893)] = 114945, - [SMALL_STATE(3894)] = 115011, - [SMALL_STATE(3895)] = 115075, - [SMALL_STATE(3896)] = 115183, - [SMALL_STATE(3897)] = 115259, - [SMALL_STATE(3898)] = 115319, - [SMALL_STATE(3899)] = 115389, - [SMALL_STATE(3900)] = 115449, - [SMALL_STATE(3901)] = 115509, - [SMALL_STATE(3902)] = 115569, - [SMALL_STATE(3903)] = 115629, - [SMALL_STATE(3904)] = 115689, - [SMALL_STATE(3905)] = 115793, - [SMALL_STATE(3906)] = 115859, - [SMALL_STATE(3907)] = 115919, - [SMALL_STATE(3908)] = 115985, - [SMALL_STATE(3909)] = 116045, - [SMALL_STATE(3910)] = 116105, - [SMALL_STATE(3911)] = 116165, - [SMALL_STATE(3912)] = 116225, - [SMALL_STATE(3913)] = 116285, - [SMALL_STATE(3914)] = 116345, - [SMALL_STATE(3915)] = 116411, - [SMALL_STATE(3916)] = 116525, - [SMALL_STATE(3917)] = 116585, - [SMALL_STATE(3918)] = 116645, - [SMALL_STATE(3919)] = 116711, - [SMALL_STATE(3920)] = 116779, - [SMALL_STATE(3921)] = 116839, - [SMALL_STATE(3922)] = 116899, - [SMALL_STATE(3923)] = 116959, - [SMALL_STATE(3924)] = 117019, - [SMALL_STATE(3925)] = 117079, - [SMALL_STATE(3926)] = 117141, - [SMALL_STATE(3927)] = 117201, - [SMALL_STATE(3928)] = 117261, - [SMALL_STATE(3929)] = 117321, - [SMALL_STATE(3930)] = 117395, - [SMALL_STATE(3931)] = 117503, - [SMALL_STATE(3932)] = 117563, - [SMALL_STATE(3933)] = 117629, - [SMALL_STATE(3934)] = 117689, - [SMALL_STATE(3935)] = 117803, - [SMALL_STATE(3936)] = 117863, - [SMALL_STATE(3937)] = 117931, - [SMALL_STATE(3938)] = 117991, - [SMALL_STATE(3939)] = 118051, - [SMALL_STATE(3940)] = 118127, - [SMALL_STATE(3941)] = 118201, - [SMALL_STATE(3942)] = 118301, - [SMALL_STATE(3943)] = 118397, - [SMALL_STATE(3944)] = 118465, - [SMALL_STATE(3945)] = 118525, - [SMALL_STATE(3946)] = 118603, - [SMALL_STATE(3947)] = 118665, - [SMALL_STATE(3948)] = 118757, - [SMALL_STATE(3949)] = 118847, - [SMALL_STATE(3950)] = 118933, - [SMALL_STATE(3951)] = 118993, - [SMALL_STATE(3952)] = 119107, - [SMALL_STATE(3953)] = 119217, - [SMALL_STATE(3954)] = 119287, - [SMALL_STATE(3955)] = 119347, - [SMALL_STATE(3956)] = 119461, - [SMALL_STATE(3957)] = 119525, - [SMALL_STATE(3958)] = 119609, - [SMALL_STATE(3959)] = 119687, - [SMALL_STATE(3960)] = 119746, - [SMALL_STATE(3961)] = 119805, - [SMALL_STATE(3962)] = 119864, - [SMALL_STATE(3963)] = 119925, - [SMALL_STATE(3964)] = 119984, - [SMALL_STATE(3965)] = 120093, - [SMALL_STATE(3966)] = 120152, - [SMALL_STATE(3967)] = 120211, - [SMALL_STATE(3968)] = 120274, - [SMALL_STATE(3969)] = 120349, - [SMALL_STATE(3970)] = 120422, - [SMALL_STATE(3971)] = 120523, - [SMALL_STATE(3972)] = 120620, - [SMALL_STATE(3973)] = 120713, - [SMALL_STATE(3974)] = 120804, - [SMALL_STATE(3975)] = 120891, - [SMALL_STATE(3976)] = 120976, - [SMALL_STATE(3977)] = 121057, - [SMALL_STATE(3978)] = 121134, - [SMALL_STATE(3979)] = 121213, - [SMALL_STATE(3980)] = 121276, - [SMALL_STATE(3981)] = 121349, - [SMALL_STATE(3982)] = 121412, - [SMALL_STATE(3983)] = 121485, - [SMALL_STATE(3984)] = 121544, - [SMALL_STATE(3985)] = 121603, - [SMALL_STATE(3986)] = 121662, - [SMALL_STATE(3987)] = 121727, - [SMALL_STATE(3988)] = 121786, - [SMALL_STATE(3989)] = 121845, - [SMALL_STATE(3990)] = 121904, - [SMALL_STATE(3991)] = 121963, - [SMALL_STATE(3992)] = 122022, - [SMALL_STATE(3993)] = 122081, - [SMALL_STATE(3994)] = 122140, - [SMALL_STATE(3995)] = 122199, - [SMALL_STATE(3996)] = 122258, - [SMALL_STATE(3997)] = 122317, - [SMALL_STATE(3998)] = 122376, - [SMALL_STATE(3999)] = 122481, - [SMALL_STATE(4000)] = 122548, - [SMALL_STATE(4001)] = 122607, - [SMALL_STATE(4002)] = 122716, - [SMALL_STATE(4003)] = 122775, - [SMALL_STATE(4004)] = 122834, - [SMALL_STATE(4005)] = 122893, - [SMALL_STATE(4006)] = 122952, - [SMALL_STATE(4007)] = 123057, - [SMALL_STATE(4008)] = 123120, - [SMALL_STATE(4009)] = 123179, - [SMALL_STATE(4010)] = 123238, - [SMALL_STATE(4011)] = 123301, - [SMALL_STATE(4012)] = 123360, - [SMALL_STATE(4013)] = 123419, - [SMALL_STATE(4014)] = 123478, - [SMALL_STATE(4015)] = 123537, - [SMALL_STATE(4016)] = 123600, - [SMALL_STATE(4017)] = 123709, - [SMALL_STATE(4018)] = 123768, - [SMALL_STATE(4019)] = 123827, - [SMALL_STATE(4020)] = 123886, - [SMALL_STATE(4021)] = 123945, - [SMALL_STATE(4022)] = 124004, - [SMALL_STATE(4023)] = 124069, - [SMALL_STATE(4024)] = 124130, - [SMALL_STATE(4025)] = 124189, - [SMALL_STATE(4026)] = 124248, - [SMALL_STATE(4027)] = 124315, - [SMALL_STATE(4028)] = 124424, - [SMALL_STATE(4029)] = 124483, - [SMALL_STATE(4030)] = 124550, - [SMALL_STATE(4031)] = 124609, - [SMALL_STATE(4032)] = 124668, - [SMALL_STATE(4033)] = 124727, - [SMALL_STATE(4034)] = 124786, - [SMALL_STATE(4035)] = 124857, - [SMALL_STATE(4036)] = 124966, - [SMALL_STATE(4037)] = 125029, - [SMALL_STATE(4038)] = 125094, - [SMALL_STATE(4039)] = 125153, - [SMALL_STATE(4040)] = 125254, - [SMALL_STATE(4041)] = 125317, - [SMALL_STATE(4042)] = 125376, - [SMALL_STATE(4043)] = 125477, - [SMALL_STATE(4044)] = 125536, - [SMALL_STATE(4045)] = 125595, - [SMALL_STATE(4046)] = 125696, - [SMALL_STATE(4047)] = 125797, - [SMALL_STATE(4048)] = 125856, - [SMALL_STATE(4049)] = 125957, - [SMALL_STATE(4050)] = 126058, - [SMALL_STATE(4051)] = 126117, - [SMALL_STATE(4052)] = 126186, - [SMALL_STATE(4053)] = 126245, - [SMALL_STATE(4054)] = 126304, - [SMALL_STATE(4055)] = 126369, - [SMALL_STATE(4056)] = 126434, - [SMALL_STATE(4057)] = 126497, - [SMALL_STATE(4058)] = 126562, - [SMALL_STATE(4059)] = 126625, - [SMALL_STATE(4060)] = 126684, - [SMALL_STATE(4061)] = 126743, - [SMALL_STATE(4062)] = 126802, - [SMALL_STATE(4063)] = 126903, - [SMALL_STATE(4064)] = 127004, - [SMALL_STATE(4065)] = 127071, - [SMALL_STATE(4066)] = 127130, - [SMALL_STATE(4067)] = 127231, - [SMALL_STATE(4068)] = 127290, - [SMALL_STATE(4069)] = 127353, - [SMALL_STATE(4070)] = 127412, - [SMALL_STATE(4071)] = 127471, - [SMALL_STATE(4072)] = 127546, - [SMALL_STATE(4073)] = 127605, - [SMALL_STATE(4074)] = 127664, - [SMALL_STATE(4075)] = 127765, - [SMALL_STATE(4076)] = 127824, - [SMALL_STATE(4077)] = 127925, - [SMALL_STATE(4078)] = 127984, - [SMALL_STATE(4079)] = 128043, - [SMALL_STATE(4080)] = 128104, - [SMALL_STATE(4081)] = 128165, - [SMALL_STATE(4082)] = 128228, - [SMALL_STATE(4083)] = 128287, - [SMALL_STATE(4084)] = 128346, - [SMALL_STATE(4085)] = 128405, - [SMALL_STATE(4086)] = 128472, - [SMALL_STATE(4087)] = 128535, - [SMALL_STATE(4088)] = 128598, - [SMALL_STATE(4089)] = 128699, - [SMALL_STATE(4090)] = 128800, - [SMALL_STATE(4091)] = 128859, - [SMALL_STATE(4092)] = 128918, - [SMALL_STATE(4093)] = 128983, - [SMALL_STATE(4094)] = 129042, - [SMALL_STATE(4095)] = 129101, - [SMALL_STATE(4096)] = 129160, - [SMALL_STATE(4097)] = 129219, - [SMALL_STATE(4098)] = 129278, - [SMALL_STATE(4099)] = 129337, - [SMALL_STATE(4100)] = 129396, - [SMALL_STATE(4101)] = 129455, - [SMALL_STATE(4102)] = 129514, - [SMALL_STATE(4103)] = 129585, - [SMALL_STATE(4104)] = 129648, - [SMALL_STATE(4105)] = 129711, - [SMALL_STATE(4106)] = 129776, - [SMALL_STATE(4107)] = 129839, - [SMALL_STATE(4108)] = 129898, - [SMALL_STATE(4109)] = 129957, - [SMALL_STATE(4110)] = 130016, - [SMALL_STATE(4111)] = 130075, - [SMALL_STATE(4112)] = 130134, - [SMALL_STATE(4113)] = 130193, - [SMALL_STATE(4114)] = 130252, - [SMALL_STATE(4115)] = 130311, - [SMALL_STATE(4116)] = 130412, - [SMALL_STATE(4117)] = 130471, - [SMALL_STATE(4118)] = 130530, - [SMALL_STATE(4119)] = 130589, - [SMALL_STATE(4120)] = 130648, - [SMALL_STATE(4121)] = 130707, - [SMALL_STATE(4122)] = 130766, - [SMALL_STATE(4123)] = 130839, - [SMALL_STATE(4124)] = 130898, - [SMALL_STATE(4125)] = 130957, - [SMALL_STATE(4126)] = 131016, - [SMALL_STATE(4127)] = 131089, - [SMALL_STATE(4128)] = 131148, - [SMALL_STATE(4129)] = 131211, - [SMALL_STATE(4130)] = 131316, - [SMALL_STATE(4131)] = 131387, - [SMALL_STATE(4132)] = 131450, - [SMALL_STATE(4133)] = 131513, - [SMALL_STATE(4134)] = 131576, - [SMALL_STATE(4135)] = 131637, - [SMALL_STATE(4136)] = 131696, - [SMALL_STATE(4137)] = 131797, - [SMALL_STATE(4138)] = 131898, - [SMALL_STATE(4139)] = 131957, - [SMALL_STATE(4140)] = 132018, - [SMALL_STATE(4141)] = 132081, - [SMALL_STATE(4142)] = 132182, - [SMALL_STATE(4143)] = 132283, - [SMALL_STATE(4144)] = 132342, - [SMALL_STATE(4145)] = 132403, - [SMALL_STATE(4146)] = 132462, - [SMALL_STATE(4147)] = 132563, - [SMALL_STATE(4148)] = 132622, - [SMALL_STATE(4149)] = 132683, - [SMALL_STATE(4150)] = 132742, - [SMALL_STATE(4151)] = 132843, - [SMALL_STATE(4152)] = 132902, - [SMALL_STATE(4153)] = 132961, - [SMALL_STATE(4154)] = 133020, - [SMALL_STATE(4155)] = 133079, - [SMALL_STATE(4156)] = 133138, - [SMALL_STATE(4157)] = 133201, - [SMALL_STATE(4158)] = 133260, - [SMALL_STATE(4159)] = 133321, - [SMALL_STATE(4160)] = 133382, - [SMALL_STATE(4161)] = 133441, - [SMALL_STATE(4162)] = 133504, - [SMALL_STATE(4163)] = 133563, - [SMALL_STATE(4164)] = 133622, - [SMALL_STATE(4165)] = 133693, - [SMALL_STATE(4166)] = 133766, - [SMALL_STATE(4167)] = 133839, - [SMALL_STATE(4168)] = 133944, - [SMALL_STATE(4169)] = 134015, - [SMALL_STATE(4170)] = 134120, - [SMALL_STATE(4171)] = 134229, - [SMALL_STATE(4172)] = 134304, - [SMALL_STATE(4173)] = 134377, - [SMALL_STATE(4174)] = 134478, - [SMALL_STATE(4175)] = 134575, - [SMALL_STATE(4176)] = 134668, - [SMALL_STATE(4177)] = 134759, - [SMALL_STATE(4178)] = 134846, - [SMALL_STATE(4179)] = 134931, - [SMALL_STATE(4180)] = 135012, - [SMALL_STATE(4181)] = 135089, - [SMALL_STATE(4182)] = 135168, - [SMALL_STATE(4183)] = 135241, - [SMALL_STATE(4184)] = 135300, - [SMALL_STATE(4185)] = 135405, - [SMALL_STATE(4186)] = 135514, - [SMALL_STATE(4187)] = 135619, - [SMALL_STATE(4188)] = 135728, - [SMALL_STATE(4189)] = 135787, - [SMALL_STATE(4190)] = 135846, - [SMALL_STATE(4191)] = 135907, - [SMALL_STATE(4192)] = 135966, - [SMALL_STATE(4193)] = 136039, - [SMALL_STATE(4194)] = 136144, - [SMALL_STATE(4195)] = 136203, - [SMALL_STATE(4196)] = 136262, - [SMALL_STATE(4197)] = 136329, - [SMALL_STATE(4198)] = 136392, - [SMALL_STATE(4199)] = 136451, - [SMALL_STATE(4200)] = 136512, - [SMALL_STATE(4201)] = 136573, - [SMALL_STATE(4202)] = 136634, - [SMALL_STATE(4203)] = 136695, - [SMALL_STATE(4204)] = 136756, - [SMALL_STATE(4205)] = 136817, - [SMALL_STATE(4206)] = 136878, - [SMALL_STATE(4207)] = 136939, - [SMALL_STATE(4208)] = 136998, - [SMALL_STATE(4209)] = 137057, - [SMALL_STATE(4210)] = 137116, - [SMALL_STATE(4211)] = 137174, - [SMALL_STATE(4212)] = 137280, - [SMALL_STATE(4213)] = 137338, - [SMALL_STATE(4214)] = 137396, - [SMALL_STATE(4215)] = 137454, - [SMALL_STATE(4216)] = 137512, - [SMALL_STATE(4217)] = 137570, - [SMALL_STATE(4218)] = 137628, - [SMALL_STATE(4219)] = 137686, - [SMALL_STATE(4220)] = 137744, - [SMALL_STATE(4221)] = 137846, - [SMALL_STATE(4222)] = 137904, - [SMALL_STATE(4223)] = 137962, - [SMALL_STATE(4224)] = 138020, - [SMALL_STATE(4225)] = 138078, - [SMALL_STATE(4226)] = 138136, - [SMALL_STATE(4227)] = 138194, - [SMALL_STATE(4228)] = 138252, - [SMALL_STATE(4229)] = 138316, - [SMALL_STATE(4230)] = 138400, - [SMALL_STATE(4231)] = 138458, - [SMALL_STATE(4232)] = 138516, - [SMALL_STATE(4233)] = 138574, - [SMALL_STATE(4234)] = 138632, - [SMALL_STATE(4235)] = 138690, - [SMALL_STATE(4236)] = 138748, - [SMALL_STATE(4237)] = 138806, - [SMALL_STATE(4238)] = 138872, - [SMALL_STATE(4239)] = 138930, - [SMALL_STATE(4240)] = 138992, - [SMALL_STATE(4241)] = 139050, - [SMALL_STATE(4242)] = 139108, - [SMALL_STATE(4243)] = 139166, - [SMALL_STATE(4244)] = 139224, - [SMALL_STATE(4245)] = 139282, - [SMALL_STATE(4246)] = 139340, - [SMALL_STATE(4247)] = 139414, - [SMALL_STATE(4248)] = 139476, - [SMALL_STATE(4249)] = 139542, - [SMALL_STATE(4250)] = 139600, - [SMALL_STATE(4251)] = 139658, - [SMALL_STATE(4252)] = 139716, - [SMALL_STATE(4253)] = 139774, - [SMALL_STATE(4254)] = 139880, - [SMALL_STATE(4255)] = 139938, - [SMALL_STATE(4256)] = 140000, - [SMALL_STATE(4257)] = 140058, - [SMALL_STATE(4258)] = 140116, - [SMALL_STATE(4259)] = 140200, - [SMALL_STATE(4260)] = 140258, - [SMALL_STATE(4261)] = 140316, - [SMALL_STATE(4262)] = 140374, - [SMALL_STATE(4263)] = 140440, - [SMALL_STATE(4264)] = 140504, - [SMALL_STATE(4265)] = 140610, - [SMALL_STATE(4266)] = 140676, - [SMALL_STATE(4267)] = 140734, - [SMALL_STATE(4268)] = 140842, - [SMALL_STATE(4269)] = 140950, - [SMALL_STATE(4270)] = 141008, - [SMALL_STATE(4271)] = 141116, - [SMALL_STATE(4272)] = 141200, - [SMALL_STATE(4273)] = 141260, - [SMALL_STATE(4274)] = 141318, - [SMALL_STATE(4275)] = 141376, - [SMALL_STATE(4276)] = 141434, - [SMALL_STATE(4277)] = 141494, - [SMALL_STATE(4278)] = 141596, - [SMALL_STATE(4279)] = 141658, - [SMALL_STATE(4280)] = 141716, - [SMALL_STATE(4281)] = 141780, - [SMALL_STATE(4282)] = 141838, - [SMALL_STATE(4283)] = 141896, - [SMALL_STATE(4284)] = 141980, - [SMALL_STATE(4285)] = 142038, - [SMALL_STATE(4286)] = 142096, - [SMALL_STATE(4287)] = 142154, - [SMALL_STATE(4288)] = 142226, - [SMALL_STATE(4289)] = 142284, - [SMALL_STATE(4290)] = 142348, - [SMALL_STATE(4291)] = 142406, - [SMALL_STATE(4292)] = 142464, - [SMALL_STATE(4293)] = 142526, - [SMALL_STATE(4294)] = 142584, - [SMALL_STATE(4295)] = 142660, - [SMALL_STATE(4296)] = 142718, - [SMALL_STATE(4297)] = 142776, - [SMALL_STATE(4298)] = 142838, - [SMALL_STATE(4299)] = 142904, - [SMALL_STATE(4300)] = 142962, - [SMALL_STATE(4301)] = 143046, - [SMALL_STATE(4302)] = 143108, - [SMALL_STATE(4303)] = 143170, - [SMALL_STATE(4304)] = 143228, - [SMALL_STATE(4305)] = 143286, - [SMALL_STATE(4306)] = 143344, - [SMALL_STATE(4307)] = 143402, - [SMALL_STATE(4308)] = 143468, - [SMALL_STATE(4309)] = 143526, - [SMALL_STATE(4310)] = 143610, - [SMALL_STATE(4311)] = 143668, - [SMALL_STATE(4312)] = 143726, - [SMALL_STATE(4313)] = 143784, - [SMALL_STATE(4314)] = 143842, - [SMALL_STATE(4315)] = 143900, - [SMALL_STATE(4316)] = 143958, - [SMALL_STATE(4317)] = 144016, - [SMALL_STATE(4318)] = 144078, - [SMALL_STATE(4319)] = 144140, - [SMALL_STATE(4320)] = 144224, - [SMALL_STATE(4321)] = 144282, - [SMALL_STATE(4322)] = 144348, - [SMALL_STATE(4323)] = 144456, - [SMALL_STATE(4324)] = 144518, - [SMALL_STATE(4325)] = 144578, - [SMALL_STATE(4326)] = 144636, - [SMALL_STATE(4327)] = 144710, - [SMALL_STATE(4328)] = 144772, - [SMALL_STATE(4329)] = 144830, - [SMALL_STATE(4330)] = 144902, - [SMALL_STATE(4331)] = 145002, - [SMALL_STATE(4332)] = 145060, - [SMALL_STATE(4333)] = 145122, - [SMALL_STATE(4334)] = 145180, - [SMALL_STATE(4335)] = 145278, - [SMALL_STATE(4336)] = 145372, - [SMALL_STATE(4337)] = 145462, - [SMALL_STATE(4338)] = 145520, - [SMALL_STATE(4339)] = 145606, - [SMALL_STATE(4340)] = 145676, - [SMALL_STATE(4341)] = 145734, - [SMALL_STATE(4342)] = 145804, - [SMALL_STATE(4343)] = 145862, - [SMALL_STATE(4344)] = 145924, - [SMALL_STATE(4345)] = 145982, - [SMALL_STATE(4346)] = 146040, - [SMALL_STATE(4347)] = 146098, - [SMALL_STATE(4348)] = 146206, - [SMALL_STATE(4349)] = 146290, - [SMALL_STATE(4350)] = 146348, - [SMALL_STATE(4351)] = 146406, - [SMALL_STATE(4352)] = 146486, - [SMALL_STATE(4353)] = 146544, - [SMALL_STATE(4354)] = 146602, - [SMALL_STATE(4355)] = 146660, - [SMALL_STATE(4356)] = 146718, - [SMALL_STATE(4357)] = 146794, - [SMALL_STATE(4358)] = 146852, - [SMALL_STATE(4359)] = 146910, - [SMALL_STATE(4360)] = 146990, - [SMALL_STATE(4361)] = 147048, - [SMALL_STATE(4362)] = 147126, - [SMALL_STATE(4363)] = 147196, - [SMALL_STATE(4364)] = 147254, - [SMALL_STATE(4365)] = 147314, - [SMALL_STATE(4366)] = 147372, - [SMALL_STATE(4367)] = 147432, - [SMALL_STATE(4368)] = 147494, - [SMALL_STATE(4369)] = 147566, - [SMALL_STATE(4370)] = 147624, - [SMALL_STATE(4371)] = 147682, - [SMALL_STATE(4372)] = 147784, - [SMALL_STATE(4373)] = 147842, - [SMALL_STATE(4374)] = 147900, - [SMALL_STATE(4375)] = 147984, - [SMALL_STATE(4376)] = 148058, - [SMALL_STATE(4377)] = 148142, - [SMALL_STATE(4378)] = 148214, - [SMALL_STATE(4379)] = 148272, - [SMALL_STATE(4380)] = 148344, - [SMALL_STATE(4381)] = 148402, - [SMALL_STATE(4382)] = 148460, - [SMALL_STATE(4383)] = 148518, - [SMALL_STATE(4384)] = 148576, - [SMALL_STATE(4385)] = 148636, - [SMALL_STATE(4386)] = 148738, - [SMALL_STATE(4387)] = 148808, - [SMALL_STATE(4388)] = 148866, - [SMALL_STATE(4389)] = 148974, - [SMALL_STATE(4390)] = 149032, - [SMALL_STATE(4391)] = 149090, - [SMALL_STATE(4392)] = 149148, - [SMALL_STATE(4393)] = 149206, - [SMALL_STATE(4394)] = 149264, - [SMALL_STATE(4395)] = 149322, - [SMALL_STATE(4396)] = 149379, - [SMALL_STATE(4397)] = 149436, - [SMALL_STATE(4398)] = 149493, - [SMALL_STATE(4399)] = 149560, - [SMALL_STATE(4400)] = 149617, - [SMALL_STATE(4401)] = 149674, - [SMALL_STATE(4402)] = 149733, - [SMALL_STATE(4403)] = 149790, - [SMALL_STATE(4404)] = 149853, - [SMALL_STATE(4405)] = 149910, - [SMALL_STATE(4406)] = 149967, - [SMALL_STATE(4407)] = 150024, - [SMALL_STATE(4408)] = 150081, - [SMALL_STATE(4409)] = 150138, - [SMALL_STATE(4410)] = 150195, - [SMALL_STATE(4411)] = 150262, - [SMALL_STATE(4412)] = 150319, - [SMALL_STATE(4413)] = 150376, - [SMALL_STATE(4414)] = 150433, - [SMALL_STATE(4415)] = 150490, - [SMALL_STATE(4416)] = 150547, - [SMALL_STATE(4417)] = 150604, - [SMALL_STATE(4418)] = 150661, - [SMALL_STATE(4419)] = 150718, - [SMALL_STATE(4420)] = 150775, - [SMALL_STATE(4421)] = 150832, - [SMALL_STATE(4422)] = 150889, - [SMALL_STATE(4423)] = 150950, - [SMALL_STATE(4424)] = 151007, - [SMALL_STATE(4425)] = 151064, - [SMALL_STATE(4426)] = 151137, - [SMALL_STATE(4427)] = 151194, - [SMALL_STATE(4428)] = 151257, - [SMALL_STATE(4429)] = 151314, - [SMALL_STATE(4430)] = 151371, - [SMALL_STATE(4431)] = 151428, - [SMALL_STATE(4432)] = 151485, - [SMALL_STATE(4433)] = 151544, - [SMALL_STATE(4434)] = 151601, - [SMALL_STATE(4435)] = 151658, - [SMALL_STATE(4436)] = 151715, - [SMALL_STATE(4437)] = 151772, - [SMALL_STATE(4438)] = 151829, - [SMALL_STATE(4439)] = 151886, - [SMALL_STATE(4440)] = 151943, - [SMALL_STATE(4441)] = 152006, - [SMALL_STATE(4442)] = 152079, - [SMALL_STATE(4443)] = 152136, - [SMALL_STATE(4444)] = 152193, - [SMALL_STATE(4445)] = 152252, - [SMALL_STATE(4446)] = 152309, - [SMALL_STATE(4447)] = 152366, - [SMALL_STATE(4448)] = 152423, - [SMALL_STATE(4449)] = 152480, - [SMALL_STATE(4450)] = 152537, - [SMALL_STATE(4451)] = 152600, - [SMALL_STATE(4452)] = 152657, - [SMALL_STATE(4453)] = 152714, - [SMALL_STATE(4454)] = 152787, - [SMALL_STATE(4455)] = 152848, - [SMALL_STATE(4456)] = 152905, - [SMALL_STATE(4457)] = 152962, - [SMALL_STATE(4458)] = 153019, - [SMALL_STATE(4459)] = 153080, - [SMALL_STATE(4460)] = 153141, - [SMALL_STATE(4461)] = 153198, - [SMALL_STATE(4462)] = 153255, - [SMALL_STATE(4463)] = 153316, - [SMALL_STATE(4464)] = 153377, - [SMALL_STATE(4465)] = 153434, - [SMALL_STATE(4466)] = 153491, - [SMALL_STATE(4467)] = 153548, - [SMALL_STATE(4468)] = 153605, - [SMALL_STATE(4469)] = 153662, - [SMALL_STATE(4470)] = 153719, - [SMALL_STATE(4471)] = 153776, - [SMALL_STATE(4472)] = 153833, - [SMALL_STATE(4473)] = 153890, - [SMALL_STATE(4474)] = 153947, - [SMALL_STATE(4475)] = 154008, - [SMALL_STATE(4476)] = 154069, - [SMALL_STATE(4477)] = 154126, - [SMALL_STATE(4478)] = 154183, - [SMALL_STATE(4479)] = 154240, - [SMALL_STATE(4480)] = 154297, - [SMALL_STATE(4481)] = 154354, - [SMALL_STATE(4482)] = 154411, - [SMALL_STATE(4483)] = 154468, - [SMALL_STATE(4484)] = 154525, - [SMALL_STATE(4485)] = 154588, - [SMALL_STATE(4486)] = 154645, - [SMALL_STATE(4487)] = 154702, - [SMALL_STATE(4488)] = 154759, - [SMALL_STATE(4489)] = 154816, - [SMALL_STATE(4490)] = 154875, - [SMALL_STATE(4491)] = 154932, - [SMALL_STATE(4492)] = 154991, - [SMALL_STATE(4493)] = 155048, - [SMALL_STATE(4494)] = 155105, - [SMALL_STATE(4495)] = 155162, - [SMALL_STATE(4496)] = 155219, - [SMALL_STATE(4497)] = 155276, - [SMALL_STATE(4498)] = 155333, - [SMALL_STATE(4499)] = 155390, - [SMALL_STATE(4500)] = 155447, - [SMALL_STATE(4501)] = 155504, - [SMALL_STATE(4502)] = 155561, - [SMALL_STATE(4503)] = 155626, - [SMALL_STATE(4504)] = 155683, - [SMALL_STATE(4505)] = 155740, - [SMALL_STATE(4506)] = 155797, - [SMALL_STATE(4507)] = 155854, - [SMALL_STATE(4508)] = 155911, - [SMALL_STATE(4509)] = 155984, - [SMALL_STATE(4510)] = 156045, - [SMALL_STATE(4511)] = 156102, - [SMALL_STATE(4512)] = 156159, - [SMALL_STATE(4513)] = 156216, - [SMALL_STATE(4514)] = 156273, - [SMALL_STATE(4515)] = 156332, - [SMALL_STATE(4516)] = 156389, - [SMALL_STATE(4517)] = 156446, - [SMALL_STATE(4518)] = 156511, - [SMALL_STATE(4519)] = 156572, - [SMALL_STATE(4520)] = 156629, - [SMALL_STATE(4521)] = 156698, - [SMALL_STATE(4522)] = 156755, - [SMALL_STATE(4523)] = 156812, - [SMALL_STATE(4524)] = 156873, - [SMALL_STATE(4525)] = 156930, - [SMALL_STATE(4526)] = 156987, - [SMALL_STATE(4527)] = 157044, - [SMALL_STATE(4528)] = 157101, - [SMALL_STATE(4529)] = 157158, - [SMALL_STATE(4530)] = 157223, - [SMALL_STATE(4531)] = 157280, - [SMALL_STATE(4532)] = 157349, - [SMALL_STATE(4533)] = 157406, - [SMALL_STATE(4534)] = 157463, - [SMALL_STATE(4535)] = 157520, - [SMALL_STATE(4536)] = 157577, - [SMALL_STATE(4537)] = 157640, - [SMALL_STATE(4538)] = 157697, - [SMALL_STATE(4539)] = 157758, - [SMALL_STATE(4540)] = 157815, - [SMALL_STATE(4541)] = 157887, - [SMALL_STATE(4542)] = 157949, - [SMALL_STATE(4543)] = 158005, - [SMALL_STATE(4544)] = 158061, - [SMALL_STATE(4545)] = 158117, - [SMALL_STATE(4546)] = 158173, - [SMALL_STATE(4547)] = 158229, - [SMALL_STATE(4548)] = 158289, - [SMALL_STATE(4549)] = 158345, - [SMALL_STATE(4550)] = 158401, - [SMALL_STATE(4551)] = 158457, - [SMALL_STATE(4552)] = 158513, - [SMALL_STATE(4553)] = 158569, - [SMALL_STATE(4554)] = 158625, - [SMALL_STATE(4555)] = 158681, - [SMALL_STATE(4556)] = 158753, - [SMALL_STATE(4557)] = 158809, - [SMALL_STATE(4558)] = 158865, - [SMALL_STATE(4559)] = 158921, - [SMALL_STATE(4560)] = 158977, - [SMALL_STATE(4561)] = 159037, - [SMALL_STATE(4562)] = 159093, - [SMALL_STATE(4563)] = 159149, - [SMALL_STATE(4564)] = 159213, - [SMALL_STATE(4565)] = 159277, - [SMALL_STATE(4566)] = 159351, - [SMALL_STATE(4567)] = 159407, - [SMALL_STATE(4568)] = 159463, - [SMALL_STATE(4569)] = 159535, - [SMALL_STATE(4570)] = 159591, - [SMALL_STATE(4571)] = 159647, - [SMALL_STATE(4572)] = 159709, - [SMALL_STATE(4573)] = 159783, - [SMALL_STATE(4574)] = 159857, - [SMALL_STATE(4575)] = 159913, - [SMALL_STATE(4576)] = 159969, - [SMALL_STATE(4577)] = 160025, - [SMALL_STATE(4578)] = 160085, - [SMALL_STATE(4579)] = 160141, - [SMALL_STATE(4580)] = 160197, - [SMALL_STATE(4581)] = 160253, - [SMALL_STATE(4582)] = 160327, - [SMALL_STATE(4583)] = 160385, - [SMALL_STATE(4584)] = 160441, - [SMALL_STATE(4585)] = 160497, - [SMALL_STATE(4586)] = 160553, - [SMALL_STATE(4587)] = 160609, - [SMALL_STATE(4588)] = 160665, - [SMALL_STATE(4589)] = 160721, - [SMALL_STATE(4590)] = 160777, - [SMALL_STATE(4591)] = 160833, - [SMALL_STATE(4592)] = 160907, - [SMALL_STATE(4593)] = 160967, - [SMALL_STATE(4594)] = 161041, - [SMALL_STATE(4595)] = 161115, - [SMALL_STATE(4596)] = 161171, - [SMALL_STATE(4597)] = 161231, - [SMALL_STATE(4598)] = 161287, - [SMALL_STATE(4599)] = 161343, - [SMALL_STATE(4600)] = 161399, - [SMALL_STATE(4601)] = 161463, - [SMALL_STATE(4602)] = 161531, - [SMALL_STATE(4603)] = 161599, - [SMALL_STATE(4604)] = 161663, - [SMALL_STATE(4605)] = 161719, - [SMALL_STATE(4606)] = 161775, - [SMALL_STATE(4607)] = 161831, - [SMALL_STATE(4608)] = 161887, - [SMALL_STATE(4609)] = 161943, - [SMALL_STATE(4610)] = 161999, - [SMALL_STATE(4611)] = 162055, - [SMALL_STATE(4612)] = 162111, - [SMALL_STATE(4613)] = 162185, - [SMALL_STATE(4614)] = 162243, - [SMALL_STATE(4615)] = 162317, - [SMALL_STATE(4616)] = 162373, - [SMALL_STATE(4617)] = 162437, - [SMALL_STATE(4618)] = 162497, - [SMALL_STATE(4619)] = 162553, - [SMALL_STATE(4620)] = 162613, - [SMALL_STATE(4621)] = 162669, - [SMALL_STATE(4622)] = 162729, - [SMALL_STATE(4623)] = 162785, - [SMALL_STATE(4624)] = 162841, - [SMALL_STATE(4625)] = 162903, - [SMALL_STATE(4626)] = 162965, - [SMALL_STATE(4627)] = 163021, - [SMALL_STATE(4628)] = 163093, - [SMALL_STATE(4629)] = 163149, - [SMALL_STATE(4630)] = 163205, - [SMALL_STATE(4631)] = 163269, - [SMALL_STATE(4632)] = 163325, - [SMALL_STATE(4633)] = 163381, - [SMALL_STATE(4634)] = 163443, - [SMALL_STATE(4635)] = 163499, - [SMALL_STATE(4636)] = 163555, - [SMALL_STATE(4637)] = 163611, - [SMALL_STATE(4638)] = 163667, - [SMALL_STATE(4639)] = 163723, - [SMALL_STATE(4640)] = 163779, - [SMALL_STATE(4641)] = 163835, - [SMALL_STATE(4642)] = 163891, - [SMALL_STATE(4643)] = 163947, - [SMALL_STATE(4644)] = 164003, - [SMALL_STATE(4645)] = 164059, - [SMALL_STATE(4646)] = 164119, - [SMALL_STATE(4647)] = 164179, - [SMALL_STATE(4648)] = 164234, - [SMALL_STATE(4649)] = 164289, - [SMALL_STATE(4650)] = 164348, - [SMALL_STATE(4651)] = 164403, - [SMALL_STATE(4652)] = 164458, - [SMALL_STATE(4653)] = 164513, - [SMALL_STATE(4654)] = 164580, - [SMALL_STATE(4655)] = 164635, - [SMALL_STATE(4656)] = 164690, - [SMALL_STATE(4657)] = 164745, - [SMALL_STATE(4658)] = 164800, - [SMALL_STATE(4659)] = 164855, - [SMALL_STATE(4660)] = 164914, - [SMALL_STATE(4661)] = 164973, - [SMALL_STATE(4662)] = 165032, - [SMALL_STATE(4663)] = 165089, - [SMALL_STATE(4664)] = 165144, - [SMALL_STATE(4665)] = 165199, - [SMALL_STATE(4666)] = 165254, - [SMALL_STATE(4667)] = 165333, - [SMALL_STATE(4668)] = 165388, - [SMALL_STATE(4669)] = 165451, - [SMALL_STATE(4670)] = 165506, - [SMALL_STATE(4671)] = 165565, - [SMALL_STATE(4672)] = 165644, - [SMALL_STATE(4673)] = 165705, - [SMALL_STATE(4674)] = 165774, - [SMALL_STATE(4675)] = 165829, - [SMALL_STATE(4676)] = 165890, - [SMALL_STATE(4677)] = 165949, - [SMALL_STATE(4678)] = 166008, - [SMALL_STATE(4679)] = 166067, - [SMALL_STATE(4680)] = 166122, - [SMALL_STATE(4681)] = 166185, - [SMALL_STATE(4682)] = 166240, - [SMALL_STATE(4683)] = 166295, - [SMALL_STATE(4684)] = 166350, - [SMALL_STATE(4685)] = 166413, - [SMALL_STATE(4686)] = 166480, - [SMALL_STATE(4687)] = 166535, - [SMALL_STATE(4688)] = 166590, - [SMALL_STATE(4689)] = 166649, - [SMALL_STATE(4690)] = 166708, - [SMALL_STATE(4691)] = 166767, - [SMALL_STATE(4692)] = 166826, - [SMALL_STATE(4693)] = 166885, - [SMALL_STATE(4694)] = 166942, - [SMALL_STATE(4695)] = 166997, - [SMALL_STATE(4696)] = 167052, - [SMALL_STATE(4697)] = 167157, - [SMALL_STATE(4698)] = 167262, - [SMALL_STATE(4699)] = 167317, - [SMALL_STATE(4700)] = 167372, - [SMALL_STATE(4701)] = 167427, - [SMALL_STATE(4702)] = 167482, - [SMALL_STATE(4703)] = 167537, - [SMALL_STATE(4704)] = 167592, - [SMALL_STATE(4705)] = 167647, - [SMALL_STATE(4706)] = 167702, - [SMALL_STATE(4707)] = 167757, - [SMALL_STATE(4708)] = 167812, - [SMALL_STATE(4709)] = 167867, - [SMALL_STATE(4710)] = 167922, - [SMALL_STATE(4711)] = 167985, - [SMALL_STATE(4712)] = 168052, - [SMALL_STATE(4713)] = 168107, - [SMALL_STATE(4714)] = 168164, - [SMALL_STATE(4715)] = 168223, - [SMALL_STATE(4716)] = 168278, - [SMALL_STATE(4717)] = 168333, - [SMALL_STATE(4718)] = 168388, - [SMALL_STATE(4719)] = 168443, - [SMALL_STATE(4720)] = 168498, - [SMALL_STATE(4721)] = 168555, - [SMALL_STATE(4722)] = 168610, - [SMALL_STATE(4723)] = 168669, - [SMALL_STATE(4724)] = 168724, - [SMALL_STATE(4725)] = 168779, - [SMALL_STATE(4726)] = 168834, - [SMALL_STATE(4727)] = 168889, - [SMALL_STATE(4728)] = 168944, - [SMALL_STATE(4729)] = 168999, - [SMALL_STATE(4730)] = 169054, - [SMALL_STATE(4731)] = 169109, - [SMALL_STATE(4732)] = 169166, - [SMALL_STATE(4733)] = 169225, - [SMALL_STATE(4734)] = 169284, - [SMALL_STATE(4735)] = 169339, - [SMALL_STATE(4736)] = 169394, - [SMALL_STATE(4737)] = 169451, - [SMALL_STATE(4738)] = 169510, - [SMALL_STATE(4739)] = 169569, - [SMALL_STATE(4740)] = 169628, - [SMALL_STATE(4741)] = 169683, - [SMALL_STATE(4742)] = 169738, - [SMALL_STATE(4743)] = 169795, - [SMALL_STATE(4744)] = 169850, - [SMALL_STATE(4745)] = 169909, - [SMALL_STATE(4746)] = 169967, - [SMALL_STATE(4747)] = 170021, - [SMALL_STATE(4748)] = 170083, - [SMALL_STATE(4749)] = 170137, - [SMALL_STATE(4750)] = 170191, - [SMALL_STATE(4751)] = 170261, - [SMALL_STATE(4752)] = 170315, - [SMALL_STATE(4753)] = 170373, - [SMALL_STATE(4754)] = 170427, - [SMALL_STATE(4755)] = 170481, - [SMALL_STATE(4756)] = 170535, - [SMALL_STATE(4757)] = 170595, - [SMALL_STATE(4758)] = 170655, - [SMALL_STATE(4759)] = 170713, - [SMALL_STATE(4760)] = 170767, - [SMALL_STATE(4761)] = 170825, - [SMALL_STATE(4762)] = 170879, - [SMALL_STATE(4763)] = 170933, - [SMALL_STATE(4764)] = 170987, - [SMALL_STATE(4765)] = 171041, - [SMALL_STATE(4766)] = 171095, - [SMALL_STATE(4767)] = 171149, - [SMALL_STATE(4768)] = 171209, - [SMALL_STATE(4769)] = 171267, - [SMALL_STATE(4770)] = 171321, - [SMALL_STATE(4771)] = 171375, - [SMALL_STATE(4772)] = 171429, - [SMALL_STATE(4773)] = 171493, - [SMALL_STATE(4774)] = 171547, - [SMALL_STATE(4775)] = 171605, - [SMALL_STATE(4776)] = 171663, - [SMALL_STATE(4777)] = 171721, - [SMALL_STATE(4778)] = 171775, - [SMALL_STATE(4779)] = 171843, - [SMALL_STATE(4780)] = 171901, - [SMALL_STATE(4781)] = 171955, - [SMALL_STATE(4782)] = 172009, - [SMALL_STATE(4783)] = 172063, - [SMALL_STATE(4784)] = 172117, - [SMALL_STATE(4785)] = 172187, - [SMALL_STATE(4786)] = 172241, - [SMALL_STATE(4787)] = 172295, - [SMALL_STATE(4788)] = 172349, - [SMALL_STATE(4789)] = 172419, - [SMALL_STATE(4790)] = 172477, - [SMALL_STATE(4791)] = 172531, - [SMALL_STATE(4792)] = 172585, - [SMALL_STATE(4793)] = 172639, - [SMALL_STATE(4794)] = 172697, - [SMALL_STATE(4795)] = 172751, - [SMALL_STATE(4796)] = 172809, - [SMALL_STATE(4797)] = 172867, - [SMALL_STATE(4798)] = 172925, - [SMALL_STATE(4799)] = 172983, - [SMALL_STATE(4800)] = 173037, - [SMALL_STATE(4801)] = 173099, - [SMALL_STATE(4802)] = 173169, - [SMALL_STATE(4803)] = 173223, - [SMALL_STATE(4804)] = 173293, - [SMALL_STATE(4805)] = 173351, - [SMALL_STATE(4806)] = 173405, - [SMALL_STATE(4807)] = 173463, - [SMALL_STATE(4808)] = 173521, - [SMALL_STATE(4809)] = 173579, - [SMALL_STATE(4810)] = 173633, - [SMALL_STATE(4811)] = 173687, - [SMALL_STATE(4812)] = 173741, - [SMALL_STATE(4813)] = 173795, - [SMALL_STATE(4814)] = 173853, - [SMALL_STATE(4815)] = 173911, - [SMALL_STATE(4816)] = 173969, - [SMALL_STATE(4817)] = 174027, - [SMALL_STATE(4818)] = 174087, - [SMALL_STATE(4819)] = 174141, - [SMALL_STATE(4820)] = 174207, - [SMALL_STATE(4821)] = 174267, - [SMALL_STATE(4822)] = 174321, - [SMALL_STATE(4823)] = 174375, - [SMALL_STATE(4824)] = 174437, - [SMALL_STATE(4825)] = 174495, - [SMALL_STATE(4826)] = 174549, - [SMALL_STATE(4827)] = 174603, - [SMALL_STATE(4828)] = 174661, - [SMALL_STATE(4829)] = 174719, - [SMALL_STATE(4830)] = 174817, - [SMALL_STATE(4831)] = 174871, - [SMALL_STATE(4832)] = 174931, - [SMALL_STATE(4833)] = 174985, - [SMALL_STATE(4834)] = 175038, - [SMALL_STATE(4835)] = 175133, - [SMALL_STATE(4836)] = 175228, - [SMALL_STATE(4837)] = 175281, - [SMALL_STATE(4838)] = 175334, - [SMALL_STATE(4839)] = 175403, - [SMALL_STATE(4840)] = 175456, - [SMALL_STATE(4841)] = 175511, - [SMALL_STATE(4842)] = 175570, - [SMALL_STATE(4843)] = 175629, - [SMALL_STATE(4844)] = 175684, - [SMALL_STATE(4845)] = 175737, - [SMALL_STATE(4846)] = 175792, - [SMALL_STATE(4847)] = 175845, - [SMALL_STATE(4848)] = 175940, - [SMALL_STATE(4849)] = 175999, - [SMALL_STATE(4850)] = 176052, - [SMALL_STATE(4851)] = 176147, - [SMALL_STATE(4852)] = 176200, - [SMALL_STATE(4853)] = 176253, - [SMALL_STATE(4854)] = 176308, - [SMALL_STATE(4855)] = 176361, - [SMALL_STATE(4856)] = 176414, - [SMALL_STATE(4857)] = 176473, - [SMALL_STATE(4858)] = 176526, - [SMALL_STATE(4859)] = 176579, - [SMALL_STATE(4860)] = 176632, - [SMALL_STATE(4861)] = 176691, - [SMALL_STATE(4862)] = 176744, - [SMALL_STATE(4863)] = 176803, - [SMALL_STATE(4864)] = 176856, - [SMALL_STATE(4865)] = 176951, - [SMALL_STATE(4866)] = 177004, - [SMALL_STATE(4867)] = 177057, - [SMALL_STATE(4868)] = 177110, - [SMALL_STATE(4869)] = 177205, - [SMALL_STATE(4870)] = 177300, - [SMALL_STATE(4871)] = 177353, - [SMALL_STATE(4872)] = 177448, - [SMALL_STATE(4873)] = 177503, - [SMALL_STATE(4874)] = 177556, - [SMALL_STATE(4875)] = 177609, - [SMALL_STATE(4876)] = 177666, - [SMALL_STATE(4877)] = 177761, - [SMALL_STATE(4878)] = 177822, - [SMALL_STATE(4879)] = 177917, - [SMALL_STATE(4880)] = 178012, - [SMALL_STATE(4881)] = 178065, - [SMALL_STATE(4882)] = 178118, - [SMALL_STATE(4883)] = 178213, - [SMALL_STATE(4884)] = 178308, - [SMALL_STATE(4885)] = 178403, - [SMALL_STATE(4886)] = 178498, - [SMALL_STATE(4887)] = 178551, - [SMALL_STATE(4888)] = 178604, - [SMALL_STATE(4889)] = 178699, - [SMALL_STATE(4890)] = 178794, - [SMALL_STATE(4891)] = 178889, - [SMALL_STATE(4892)] = 178942, - [SMALL_STATE(4893)] = 178995, - [SMALL_STATE(4894)] = 179090, - [SMALL_STATE(4895)] = 179185, - [SMALL_STATE(4896)] = 179246, - [SMALL_STATE(4897)] = 179299, - [SMALL_STATE(4898)] = 179352, - [SMALL_STATE(4899)] = 179447, - [SMALL_STATE(4900)] = 179542, - [SMALL_STATE(4901)] = 179637, - [SMALL_STATE(4902)] = 179732, - [SMALL_STATE(4903)] = 179827, - [SMALL_STATE(4904)] = 179922, - [SMALL_STATE(4905)] = 180017, - [SMALL_STATE(4906)] = 180112, - [SMALL_STATE(4907)] = 180207, - [SMALL_STATE(4908)] = 180302, - [SMALL_STATE(4909)] = 180397, - [SMALL_STATE(4910)] = 180492, - [SMALL_STATE(4911)] = 180587, - [SMALL_STATE(4912)] = 180682, - [SMALL_STATE(4913)] = 180777, - [SMALL_STATE(4914)] = 180830, - [SMALL_STATE(4915)] = 180889, - [SMALL_STATE(4916)] = 180984, - [SMALL_STATE(4917)] = 181079, - [SMALL_STATE(4918)] = 181132, - [SMALL_STATE(4919)] = 181227, - [SMALL_STATE(4920)] = 181280, - [SMALL_STATE(4921)] = 181375, - [SMALL_STATE(4922)] = 181428, - [SMALL_STATE(4923)] = 181523, - [SMALL_STATE(4924)] = 181618, - [SMALL_STATE(4925)] = 181671, - [SMALL_STATE(4926)] = 181766, - [SMALL_STATE(4927)] = 181819, - [SMALL_STATE(4928)] = 181914, - [SMALL_STATE(4929)] = 181967, - [SMALL_STATE(4930)] = 182020, - [SMALL_STATE(4931)] = 182073, - [SMALL_STATE(4932)] = 182168, - [SMALL_STATE(4933)] = 182221, - [SMALL_STATE(4934)] = 182316, - [SMALL_STATE(4935)] = 182369, - [SMALL_STATE(4936)] = 182422, - [SMALL_STATE(4937)] = 182475, - [SMALL_STATE(4938)] = 182528, - [SMALL_STATE(4939)] = 182581, - [SMALL_STATE(4940)] = 182634, - [SMALL_STATE(4941)] = 182687, - [SMALL_STATE(4942)] = 182742, - [SMALL_STATE(4943)] = 182795, - [SMALL_STATE(4944)] = 182890, - [SMALL_STATE(4945)] = 182985, - [SMALL_STATE(4946)] = 183080, - [SMALL_STATE(4947)] = 183175, - [SMALL_STATE(4948)] = 183270, - [SMALL_STATE(4949)] = 183365, - [SMALL_STATE(4950)] = 183418, - [SMALL_STATE(4951)] = 183471, - [SMALL_STATE(4952)] = 183566, - [SMALL_STATE(4953)] = 183661, - [SMALL_STATE(4954)] = 183756, - [SMALL_STATE(4955)] = 183809, - [SMALL_STATE(4956)] = 183904, - [SMALL_STATE(4957)] = 183999, - [SMALL_STATE(4958)] = 184094, - [SMALL_STATE(4959)] = 184147, - [SMALL_STATE(4960)] = 184242, - [SMALL_STATE(4961)] = 184295, - [SMALL_STATE(4962)] = 184390, - [SMALL_STATE(4963)] = 184443, - [SMALL_STATE(4964)] = 184538, - [SMALL_STATE(4965)] = 184633, - [SMALL_STATE(4966)] = 184728, - [SMALL_STATE(4967)] = 184823, - [SMALL_STATE(4968)] = 184918, - [SMALL_STATE(4969)] = 185013, - [SMALL_STATE(4970)] = 185066, - [SMALL_STATE(4971)] = 185119, - [SMALL_STATE(4972)] = 185214, - [SMALL_STATE(4973)] = 185267, - [SMALL_STATE(4974)] = 185362, - [SMALL_STATE(4975)] = 185423, - [SMALL_STATE(4976)] = 185480, - [SMALL_STATE(4977)] = 185539, - [SMALL_STATE(4978)] = 185592, - [SMALL_STATE(4979)] = 185687, - [SMALL_STATE(4980)] = 185782, - [SMALL_STATE(4981)] = 185835, - [SMALL_STATE(4982)] = 185888, - [SMALL_STATE(4983)] = 185983, - [SMALL_STATE(4984)] = 186078, - [SMALL_STATE(4985)] = 186173, - [SMALL_STATE(4986)] = 186268, - [SMALL_STATE(4987)] = 186363, - [SMALL_STATE(4988)] = 186458, - [SMALL_STATE(4989)] = 186553, - [SMALL_STATE(4990)] = 186648, - [SMALL_STATE(4991)] = 186743, - [SMALL_STATE(4992)] = 186838, - [SMALL_STATE(4993)] = 186933, - [SMALL_STATE(4994)] = 187028, - [SMALL_STATE(4995)] = 187123, - [SMALL_STATE(4996)] = 187218, - [SMALL_STATE(4997)] = 187313, - [SMALL_STATE(4998)] = 187408, - [SMALL_STATE(4999)] = 187471, - [SMALL_STATE(5000)] = 187566, - [SMALL_STATE(5001)] = 187661, - [SMALL_STATE(5002)] = 187756, - [SMALL_STATE(5003)] = 187851, - [SMALL_STATE(5004)] = 187946, - [SMALL_STATE(5005)] = 188041, - [SMALL_STATE(5006)] = 188094, - [SMALL_STATE(5007)] = 188150, - [SMALL_STATE(5008)] = 188202, - [SMALL_STATE(5009)] = 188258, - [SMALL_STATE(5010)] = 188314, - [SMALL_STATE(5011)] = 188366, - [SMALL_STATE(5012)] = 188418, - [SMALL_STATE(5013)] = 188474, - [SMALL_STATE(5014)] = 188530, - [SMALL_STATE(5015)] = 188584, - [SMALL_STATE(5016)] = 188636, - [SMALL_STATE(5017)] = 188688, - [SMALL_STATE(5018)] = 188780, - [SMALL_STATE(5019)] = 188832, - [SMALL_STATE(5020)] = 188890, - [SMALL_STATE(5021)] = 188942, - [SMALL_STATE(5022)] = 189012, - [SMALL_STATE(5023)] = 189104, - [SMALL_STATE(5024)] = 189196, - [SMALL_STATE(5025)] = 189248, - [SMALL_STATE(5026)] = 189300, - [SMALL_STATE(5027)] = 189352, - [SMALL_STATE(5028)] = 189404, - [SMALL_STATE(5029)] = 189462, - [SMALL_STATE(5030)] = 189518, - [SMALL_STATE(5031)] = 189570, - [SMALL_STATE(5032)] = 189626, - [SMALL_STATE(5033)] = 189678, - [SMALL_STATE(5034)] = 189730, - [SMALL_STATE(5035)] = 189782, - [SMALL_STATE(5036)] = 189834, - [SMALL_STATE(5037)] = 189886, - [SMALL_STATE(5038)] = 189938, - [SMALL_STATE(5039)] = 189990, - [SMALL_STATE(5040)] = 190046, - [SMALL_STATE(5041)] = 190098, - [SMALL_STATE(5042)] = 190154, - [SMALL_STATE(5043)] = 190206, - [SMALL_STATE(5044)] = 190298, - [SMALL_STATE(5045)] = 190350, - [SMALL_STATE(5046)] = 190402, - [SMALL_STATE(5047)] = 190494, - [SMALL_STATE(5048)] = 190550, - [SMALL_STATE(5049)] = 190602, - [SMALL_STATE(5050)] = 190654, - [SMALL_STATE(5051)] = 190710, - [SMALL_STATE(5052)] = 190762, - [SMALL_STATE(5053)] = 190814, - [SMALL_STATE(5054)] = 190866, - [SMALL_STATE(5055)] = 190922, - [SMALL_STATE(5056)] = 190974, - [SMALL_STATE(5057)] = 191026, - [SMALL_STATE(5058)] = 191082, - [SMALL_STATE(5059)] = 191140, - [SMALL_STATE(5060)] = 191192, - [SMALL_STATE(5061)] = 191244, - [SMALL_STATE(5062)] = 191314, - [SMALL_STATE(5063)] = 191370, - [SMALL_STATE(5064)] = 191422, - [SMALL_STATE(5065)] = 191478, - [SMALL_STATE(5066)] = 191534, - [SMALL_STATE(5067)] = 191590, - [SMALL_STATE(5068)] = 191646, - [SMALL_STATE(5069)] = 191702, - [SMALL_STATE(5070)] = 191758, - [SMALL_STATE(5071)] = 191816, - [SMALL_STATE(5072)] = 191868, - [SMALL_STATE(5073)] = 191920, - [SMALL_STATE(5074)] = 191978, - [SMALL_STATE(5075)] = 192030, - [SMALL_STATE(5076)] = 192082, - [SMALL_STATE(5077)] = 192134, - [SMALL_STATE(5078)] = 192226, - [SMALL_STATE(5079)] = 192278, - [SMALL_STATE(5080)] = 192336, - [SMALL_STATE(5081)] = 192388, - [SMALL_STATE(5082)] = 192440, - [SMALL_STATE(5083)] = 192504, - [SMALL_STATE(5084)] = 192568, - [SMALL_STATE(5085)] = 192660, - [SMALL_STATE(5086)] = 192752, - [SMALL_STATE(5087)] = 192844, - [SMALL_STATE(5088)] = 192902, - [SMALL_STATE(5089)] = 192960, - [SMALL_STATE(5090)] = 193030, - [SMALL_STATE(5091)] = 193082, - [SMALL_STATE(5092)] = 193138, - [SMALL_STATE(5093)] = 193191, - [SMALL_STATE(5094)] = 193248, - [SMALL_STATE(5095)] = 193299, - [SMALL_STATE(5096)] = 193356, - [SMALL_STATE(5097)] = 193411, - [SMALL_STATE(5098)] = 193476, - [SMALL_STATE(5099)] = 193541, - [SMALL_STATE(5100)] = 193592, - [SMALL_STATE(5101)] = 193691, - [SMALL_STATE(5102)] = 193776, - [SMALL_STATE(5103)] = 193861, - [SMALL_STATE(5104)] = 193912, - [SMALL_STATE(5105)] = 193963, - [SMALL_STATE(5106)] = 194014, - [SMALL_STATE(5107)] = 194099, - [SMALL_STATE(5108)] = 194164, - [SMALL_STATE(5109)] = 194215, - [SMALL_STATE(5110)] = 194282, - [SMALL_STATE(5111)] = 194367, - [SMALL_STATE(5112)] = 194470, - [SMALL_STATE(5113)] = 194521, - [SMALL_STATE(5114)] = 194588, - [SMALL_STATE(5115)] = 194673, - [SMALL_STATE(5116)] = 194758, - [SMALL_STATE(5117)] = 194809, - [SMALL_STATE(5118)] = 194894, - [SMALL_STATE(5119)] = 194963, - [SMALL_STATE(5120)] = 195058, - [SMALL_STATE(5121)] = 195149, - [SMALL_STATE(5122)] = 195238, - [SMALL_STATE(5123)] = 195323, - [SMALL_STATE(5124)] = 195374, - [SMALL_STATE(5125)] = 195457, - [SMALL_STATE(5126)] = 195536, - [SMALL_STATE(5127)] = 195611, - [SMALL_STATE(5128)] = 195682, - [SMALL_STATE(5129)] = 195733, - [SMALL_STATE(5130)] = 195784, - [SMALL_STATE(5131)] = 195857, - [SMALL_STATE(5132)] = 195908, - [SMALL_STATE(5133)] = 195993, - [SMALL_STATE(5134)] = 196044, - [SMALL_STATE(5135)] = 196123, - [SMALL_STATE(5136)] = 196174, - [SMALL_STATE(5137)] = 196225, - [SMALL_STATE(5138)] = 196324, - [SMALL_STATE(5139)] = 196391, - [SMALL_STATE(5140)] = 196442, - [SMALL_STATE(5141)] = 196497, - [SMALL_STATE(5142)] = 196548, - [SMALL_STATE(5143)] = 196599, - [SMALL_STATE(5144)] = 196650, - [SMALL_STATE(5145)] = 196701, - [SMALL_STATE(5146)] = 196768, - [SMALL_STATE(5147)] = 196853, - [SMALL_STATE(5148)] = 196904, - [SMALL_STATE(5149)] = 196967, - [SMALL_STATE(5150)] = 197018, - [SMALL_STATE(5151)] = 197071, - [SMALL_STATE(5152)] = 197136, - [SMALL_STATE(5153)] = 197201, - [SMALL_STATE(5154)] = 197258, - [SMALL_STATE(5155)] = 197321, - [SMALL_STATE(5156)] = 197420, - [SMALL_STATE(5157)] = 197515, - [SMALL_STATE(5158)] = 197566, - [SMALL_STATE(5159)] = 197651, - [SMALL_STATE(5160)] = 197754, - [SMALL_STATE(5161)] = 197853, - [SMALL_STATE(5162)] = 197918, - [SMALL_STATE(5163)] = 198003, - [SMALL_STATE(5164)] = 198054, - [SMALL_STATE(5165)] = 198105, - [SMALL_STATE(5166)] = 198156, - [SMALL_STATE(5167)] = 198207, - [SMALL_STATE(5168)] = 198260, - [SMALL_STATE(5169)] = 198311, - [SMALL_STATE(5170)] = 198362, - [SMALL_STATE(5171)] = 198465, - [SMALL_STATE(5172)] = 198516, - [SMALL_STATE(5173)] = 198567, - [SMALL_STATE(5174)] = 198618, - [SMALL_STATE(5175)] = 198669, - [SMALL_STATE(5176)] = 198732, - [SMALL_STATE(5177)] = 198783, - [SMALL_STATE(5178)] = 198862, - [SMALL_STATE(5179)] = 198925, - [SMALL_STATE(5180)] = 199010, - [SMALL_STATE(5181)] = 199063, - [SMALL_STATE(5182)] = 199162, - [SMALL_STATE(5183)] = 199227, - [SMALL_STATE(5184)] = 199290, - [SMALL_STATE(5185)] = 199393, - [SMALL_STATE(5186)] = 199446, - [SMALL_STATE(5187)] = 199497, - [SMALL_STATE(5188)] = 199560, - [SMALL_STATE(5189)] = 199625, - [SMALL_STATE(5190)] = 199710, - [SMALL_STATE(5191)] = 199761, - [SMALL_STATE(5192)] = 199812, - [SMALL_STATE(5193)] = 199897, - [SMALL_STATE(5194)] = 199996, - [SMALL_STATE(5195)] = 200081, - [SMALL_STATE(5196)] = 200177, - [SMALL_STATE(5197)] = 200227, - [SMALL_STATE(5198)] = 200277, - [SMALL_STATE(5199)] = 200327, - [SMALL_STATE(5200)] = 200379, - [SMALL_STATE(5201)] = 200465, - [SMALL_STATE(5202)] = 200515, - [SMALL_STATE(5203)] = 200565, - [SMALL_STATE(5204)] = 200615, - [SMALL_STATE(5205)] = 200693, - [SMALL_STATE(5206)] = 200743, - [SMALL_STATE(5207)] = 200793, - [SMALL_STATE(5208)] = 200843, - [SMALL_STATE(5209)] = 200939, - [SMALL_STATE(5210)] = 200993, - [SMALL_STATE(5211)] = 201043, - [SMALL_STATE(5212)] = 201093, - [SMALL_STATE(5213)] = 201143, - [SMALL_STATE(5214)] = 201193, - [SMALL_STATE(5215)] = 201243, - [SMALL_STATE(5216)] = 201299, - [SMALL_STATE(5217)] = 201349, - [SMALL_STATE(5218)] = 201399, - [SMALL_STATE(5219)] = 201449, - [SMALL_STATE(5220)] = 201515, - [SMALL_STATE(5221)] = 201565, - [SMALL_STATE(5222)] = 201615, - [SMALL_STATE(5223)] = 201665, - [SMALL_STATE(5224)] = 201715, - [SMALL_STATE(5225)] = 201765, - [SMALL_STATE(5226)] = 201815, - [SMALL_STATE(5227)] = 201865, - [SMALL_STATE(5228)] = 201915, - [SMALL_STATE(5229)] = 201965, - [SMALL_STATE(5230)] = 202015, - [SMALL_STATE(5231)] = 202065, - [SMALL_STATE(5232)] = 202115, - [SMALL_STATE(5233)] = 202207, - [SMALL_STATE(5234)] = 202257, - [SMALL_STATE(5235)] = 202307, - [SMALL_STATE(5236)] = 202357, - [SMALL_STATE(5237)] = 202407, - [SMALL_STATE(5238)] = 202491, - [SMALL_STATE(5239)] = 202587, - [SMALL_STATE(5240)] = 202637, - [SMALL_STATE(5241)] = 202687, - [SMALL_STATE(5242)] = 202739, - [SMALL_STATE(5243)] = 202789, - [SMALL_STATE(5244)] = 202845, - [SMALL_STATE(5245)] = 202895, - [SMALL_STATE(5246)] = 202947, - [SMALL_STATE(5247)] = 203007, - [SMALL_STATE(5248)] = 203057, - [SMALL_STATE(5249)] = 203107, - [SMALL_STATE(5250)] = 203185, - [SMALL_STATE(5251)] = 203235, - [SMALL_STATE(5252)] = 203285, - [SMALL_STATE(5253)] = 203363, - [SMALL_STATE(5254)] = 203419, - [SMALL_STATE(5255)] = 203469, - [SMALL_STATE(5256)] = 203519, - [SMALL_STATE(5257)] = 203593, - [SMALL_STATE(5258)] = 203643, - [SMALL_STATE(5259)] = 203693, - [SMALL_STATE(5260)] = 203763, - [SMALL_STATE(5261)] = 203813, - [SMALL_STATE(5262)] = 203865, - [SMALL_STATE(5263)] = 203915, - [SMALL_STATE(5264)] = 204003, - [SMALL_STATE(5265)] = 204081, - [SMALL_STATE(5266)] = 204131, - [SMALL_STATE(5267)] = 204181, - [SMALL_STATE(5268)] = 204231, - [SMALL_STATE(5269)] = 204297, - [SMALL_STATE(5270)] = 204349, - [SMALL_STATE(5271)] = 204441, - [SMALL_STATE(5272)] = 204491, - [SMALL_STATE(5273)] = 204541, - [SMALL_STATE(5274)] = 204591, - [SMALL_STATE(5275)] = 204643, - [SMALL_STATE(5276)] = 204693, - [SMALL_STATE(5277)] = 204743, - [SMALL_STATE(5278)] = 204809, - [SMALL_STATE(5279)] = 204865, - [SMALL_STATE(5280)] = 204937, - [SMALL_STATE(5281)] = 204987, - [SMALL_STATE(5282)] = 205037, - [SMALL_STATE(5283)] = 205087, - [SMALL_STATE(5284)] = 205137, - [SMALL_STATE(5285)] = 205187, - [SMALL_STATE(5286)] = 205267, - [SMALL_STATE(5287)] = 205329, - [SMALL_STATE(5288)] = 205379, - [SMALL_STATE(5289)] = 205439, - [SMALL_STATE(5290)] = 205489, - [SMALL_STATE(5291)] = 205539, - [SMALL_STATE(5292)] = 205589, - [SMALL_STATE(5293)] = 205657, - [SMALL_STATE(5294)] = 205709, - [SMALL_STATE(5295)] = 205761, - [SMALL_STATE(5296)] = 205827, - [SMALL_STATE(5297)] = 205877, - [SMALL_STATE(5298)] = 205929, - [SMALL_STATE(5299)] = 205979, - [SMALL_STATE(5300)] = 206029, - [SMALL_STATE(5301)] = 206121, - [SMALL_STATE(5302)] = 206171, - [SMALL_STATE(5303)] = 206221, - [SMALL_STATE(5304)] = 206311, - [SMALL_STATE(5305)] = 206361, - [SMALL_STATE(5306)] = 206411, - [SMALL_STATE(5307)] = 206473, - [SMALL_STATE(5308)] = 206551, - [SMALL_STATE(5309)] = 206601, - [SMALL_STATE(5310)] = 206693, - [SMALL_STATE(5311)] = 206743, - [SMALL_STATE(5312)] = 206793, - [SMALL_STATE(5313)] = 206843, - [SMALL_STATE(5314)] = 206892, - [SMALL_STATE(5315)] = 206941, - [SMALL_STATE(5316)] = 207008, - [SMALL_STATE(5317)] = 207057, - [SMALL_STATE(5318)] = 207106, - [SMALL_STATE(5319)] = 207163, - [SMALL_STATE(5320)] = 207212, - [SMALL_STATE(5321)] = 207267, - [SMALL_STATE(5322)] = 207364, - [SMALL_STATE(5323)] = 207413, - [SMALL_STATE(5324)] = 207462, - [SMALL_STATE(5325)] = 207511, - [SMALL_STATE(5326)] = 207560, - [SMALL_STATE(5327)] = 207609, - [SMALL_STATE(5328)] = 207672, - [SMALL_STATE(5329)] = 207721, - [SMALL_STATE(5330)] = 207770, - [SMALL_STATE(5331)] = 207825, - [SMALL_STATE(5332)] = 207874, - [SMALL_STATE(5333)] = 207923, - [SMALL_STATE(5334)] = 207972, - [SMALL_STATE(5335)] = 208021, - [SMALL_STATE(5336)] = 208072, - [SMALL_STATE(5337)] = 208121, - [SMALL_STATE(5338)] = 208222, - [SMALL_STATE(5339)] = 208271, - [SMALL_STATE(5340)] = 208324, - [SMALL_STATE(5341)] = 208373, - [SMALL_STATE(5342)] = 208436, - [SMALL_STATE(5343)] = 208485, - [SMALL_STATE(5344)] = 208534, - [SMALL_STATE(5345)] = 208583, - [SMALL_STATE(5346)] = 208632, - [SMALL_STATE(5347)] = 208681, - [SMALL_STATE(5348)] = 208730, - [SMALL_STATE(5349)] = 208811, - [SMALL_STATE(5350)] = 208860, - [SMALL_STATE(5351)] = 208909, - [SMALL_STATE(5352)] = 208958, - [SMALL_STATE(5353)] = 209007, - [SMALL_STATE(5354)] = 209056, - [SMALL_STATE(5355)] = 209105, - [SMALL_STATE(5356)] = 209154, - [SMALL_STATE(5357)] = 209203, - [SMALL_STATE(5358)] = 209252, - [SMALL_STATE(5359)] = 209321, - [SMALL_STATE(5360)] = 209418, - [SMALL_STATE(5361)] = 209467, - [SMALL_STATE(5362)] = 209516, - [SMALL_STATE(5363)] = 209565, - [SMALL_STATE(5364)] = 209622, - [SMALL_STATE(5365)] = 209671, - [SMALL_STATE(5366)] = 209720, - [SMALL_STATE(5367)] = 209821, - [SMALL_STATE(5368)] = 209870, - [SMALL_STATE(5369)] = 209919, - [SMALL_STATE(5370)] = 209968, - [SMALL_STATE(5371)] = 210017, - [SMALL_STATE(5372)] = 210066, - [SMALL_STATE(5373)] = 210123, - [SMALL_STATE(5374)] = 210174, - [SMALL_STATE(5375)] = 210223, - [SMALL_STATE(5376)] = 210272, - [SMALL_STATE(5377)] = 210353, - [SMALL_STATE(5378)] = 210450, - [SMALL_STATE(5379)] = 210531, - [SMALL_STATE(5380)] = 210592, - [SMALL_STATE(5381)] = 210641, - [SMALL_STATE(5382)] = 210690, - [SMALL_STATE(5383)] = 210771, - [SMALL_STATE(5384)] = 210820, - [SMALL_STATE(5385)] = 210869, - [SMALL_STATE(5386)] = 210928, - [SMALL_STATE(5387)] = 211031, - [SMALL_STATE(5388)] = 211080, - [SMALL_STATE(5389)] = 211137, - [SMALL_STATE(5390)] = 211186, - [SMALL_STATE(5391)] = 211287, - [SMALL_STATE(5392)] = 211390, - [SMALL_STATE(5393)] = 211453, - [SMALL_STATE(5394)] = 211502, - [SMALL_STATE(5395)] = 211551, - [SMALL_STATE(5396)] = 211600, - [SMALL_STATE(5397)] = 211681, - [SMALL_STATE(5398)] = 211778, - [SMALL_STATE(5399)] = 211867, - [SMALL_STATE(5400)] = 211920, - [SMALL_STATE(5401)] = 212021, - [SMALL_STATE(5402)] = 212098, - [SMALL_STATE(5403)] = 212147, - [SMALL_STATE(5404)] = 212196, - [SMALL_STATE(5405)] = 212257, - [SMALL_STATE(5406)] = 212306, - [SMALL_STATE(5407)] = 212355, - [SMALL_STATE(5408)] = 212404, - [SMALL_STATE(5409)] = 212453, - [SMALL_STATE(5410)] = 212502, - [SMALL_STATE(5411)] = 212551, - [SMALL_STATE(5412)] = 212600, - [SMALL_STATE(5413)] = 212649, - [SMALL_STATE(5414)] = 212698, - [SMALL_STATE(5415)] = 212753, - [SMALL_STATE(5416)] = 212802, - [SMALL_STATE(5417)] = 212883, - [SMALL_STATE(5418)] = 212932, - [SMALL_STATE(5419)] = 212981, - [SMALL_STATE(5420)] = 213044, - [SMALL_STATE(5421)] = 213093, - [SMALL_STATE(5422)] = 213170, - [SMALL_STATE(5423)] = 213273, - [SMALL_STATE(5424)] = 213322, - [SMALL_STATE(5425)] = 213371, - [SMALL_STATE(5426)] = 213474, - [SMALL_STATE(5427)] = 213523, - [SMALL_STATE(5428)] = 213604, - [SMALL_STATE(5429)] = 213697, - [SMALL_STATE(5430)] = 213786, - [SMALL_STATE(5431)] = 213873, - [SMALL_STATE(5432)] = 213956, - [SMALL_STATE(5433)] = 214037, - [SMALL_STATE(5434)] = 214114, - [SMALL_STATE(5435)] = 214187, - [SMALL_STATE(5436)] = 214236, - [SMALL_STATE(5437)] = 214317, - [SMALL_STATE(5438)] = 214366, - [SMALL_STATE(5439)] = 214437, - [SMALL_STATE(5440)] = 214489, - [SMALL_STATE(5441)] = 214539, - [SMALL_STATE(5442)] = 214587, - [SMALL_STATE(5443)] = 214639, - [SMALL_STATE(5444)] = 214691, - [SMALL_STATE(5445)] = 214743, - [SMALL_STATE(5446)] = 214819, - [SMALL_STATE(5447)] = 214871, - [SMALL_STATE(5448)] = 214941, - [SMALL_STATE(5449)] = 214991, - [SMALL_STATE(5450)] = 215043, - [SMALL_STATE(5451)] = 215093, - [SMALL_STATE(5452)] = 215145, - [SMALL_STATE(5453)] = 215199, - [SMALL_STATE(5454)] = 215249, - [SMALL_STATE(5455)] = 215301, - [SMALL_STATE(5456)] = 215353, - [SMALL_STATE(5457)] = 215405, - [SMALL_STATE(5458)] = 215481, - [SMALL_STATE(5459)] = 215529, - [SMALL_STATE(5460)] = 215577, - [SMALL_STATE(5461)] = 215629, - [SMALL_STATE(5462)] = 215699, - [SMALL_STATE(5463)] = 215751, - [SMALL_STATE(5464)] = 215821, - [SMALL_STATE(5465)] = 215873, - [SMALL_STATE(5466)] = 215973, - [SMALL_STATE(5467)] = 216025, - [SMALL_STATE(5468)] = 216073, - [SMALL_STATE(5469)] = 216125, - [SMALL_STATE(5470)] = 216177, - [SMALL_STATE(5471)] = 216274, - [SMALL_STATE(5472)] = 216371, - [SMALL_STATE(5473)] = 216420, - [SMALL_STATE(5474)] = 216469, - [SMALL_STATE(5475)] = 216522, - [SMALL_STATE(5476)] = 216569, - [SMALL_STATE(5477)] = 216616, - [SMALL_STATE(5478)] = 216663, - [SMALL_STATE(5479)] = 216710, - [SMALL_STATE(5480)] = 216757, - [SMALL_STATE(5481)] = 216804, - [SMALL_STATE(5482)] = 216851, - [SMALL_STATE(5483)] = 216898, - [SMALL_STATE(5484)] = 216995, - [SMALL_STATE(5485)] = 217092, - [SMALL_STATE(5486)] = 217143, - [SMALL_STATE(5487)] = 217190, - [SMALL_STATE(5488)] = 217237, - [SMALL_STATE(5489)] = 217330, - [SMALL_STATE(5490)] = 217425, - [SMALL_STATE(5491)] = 217472, - [SMALL_STATE(5492)] = 217525, - [SMALL_STATE(5493)] = 217572, - [SMALL_STATE(5494)] = 217627, - [SMALL_STATE(5495)] = 217678, - [SMALL_STATE(5496)] = 217731, - [SMALL_STATE(5497)] = 217828, - [SMALL_STATE(5498)] = 217883, - [SMALL_STATE(5499)] = 217934, - [SMALL_STATE(5500)] = 218027, - [SMALL_STATE(5501)] = 218116, - [SMALL_STATE(5502)] = 218205, - [SMALL_STATE(5503)] = 218298, - [SMALL_STATE(5504)] = 218395, - [SMALL_STATE(5505)] = 218492, - [SMALL_STATE(5506)] = 218557, - [SMALL_STATE(5507)] = 218644, - [SMALL_STATE(5508)] = 218729, - [SMALL_STATE(5509)] = 218826, - [SMALL_STATE(5510)] = 218909, - [SMALL_STATE(5511)] = 218990, - [SMALL_STATE(5512)] = 219067, - [SMALL_STATE(5513)] = 219142, - [SMALL_STATE(5514)] = 219213, - [SMALL_STATE(5515)] = 219280, - [SMALL_STATE(5516)] = 219377, - [SMALL_STATE(5517)] = 219446, - [SMALL_STATE(5518)] = 219543, - [SMALL_STATE(5519)] = 219630, - [SMALL_STATE(5520)] = 219727, - [SMALL_STATE(5521)] = 219796, - [SMALL_STATE(5522)] = 219865, - [SMALL_STATE(5523)] = 219934, - [SMALL_STATE(5524)] = 220003, - [SMALL_STATE(5525)] = 220092, - [SMALL_STATE(5526)] = 220185, - [SMALL_STATE(5527)] = 220260, - [SMALL_STATE(5528)] = 220349, - [SMALL_STATE(5529)] = 220446, - [SMALL_STATE(5530)] = 220521, - [SMALL_STATE(5531)] = 220618, - [SMALL_STATE(5532)] = 220715, - [SMALL_STATE(5533)] = 220808, - [SMALL_STATE(5534)] = 220905, - [SMALL_STATE(5535)] = 221002, - [SMALL_STATE(5536)] = 221099, - [SMALL_STATE(5537)] = 221186, - [SMALL_STATE(5538)] = 221233, - [SMALL_STATE(5539)] = 221280, - [SMALL_STATE(5540)] = 221377, - [SMALL_STATE(5541)] = 221424, - [SMALL_STATE(5542)] = 221471, - [SMALL_STATE(5543)] = 221518, - [SMALL_STATE(5544)] = 221567, - [SMALL_STATE(5545)] = 221636, - [SMALL_STATE(5546)] = 221683, - [SMALL_STATE(5547)] = 221730, - [SMALL_STATE(5548)] = 221777, - [SMALL_STATE(5549)] = 221874, - [SMALL_STATE(5550)] = 221971, - [SMALL_STATE(5551)] = 222068, - [SMALL_STATE(5552)] = 222115, - [SMALL_STATE(5553)] = 222212, - [SMALL_STATE(5554)] = 222309, - [SMALL_STATE(5555)] = 222356, - [SMALL_STATE(5556)] = 222403, - [SMALL_STATE(5557)] = 222450, - [SMALL_STATE(5558)] = 222497, - [SMALL_STATE(5559)] = 222594, - [SMALL_STATE(5560)] = 222641, - [SMALL_STATE(5561)] = 222710, - [SMALL_STATE(5562)] = 222805, - [SMALL_STATE(5563)] = 222852, - [SMALL_STATE(5564)] = 222899, - [SMALL_STATE(5565)] = 222946, - [SMALL_STATE(5566)] = 222993, - [SMALL_STATE(5567)] = 223040, - [SMALL_STATE(5568)] = 223137, - [SMALL_STATE(5569)] = 223234, - [SMALL_STATE(5570)] = 223331, - [SMALL_STATE(5571)] = 223378, - [SMALL_STATE(5572)] = 223475, - [SMALL_STATE(5573)] = 223572, - [SMALL_STATE(5574)] = 223619, - [SMALL_STATE(5575)] = 223666, - [SMALL_STATE(5576)] = 223763, - [SMALL_STATE(5577)] = 223810, - [SMALL_STATE(5578)] = 223861, - [SMALL_STATE(5579)] = 223958, - [SMALL_STATE(5580)] = 224005, - [SMALL_STATE(5581)] = 224102, - [SMALL_STATE(5582)] = 224149, - [SMALL_STATE(5583)] = 224196, - [SMALL_STATE(5584)] = 224243, - [SMALL_STATE(5585)] = 224290, - [SMALL_STATE(5586)] = 224387, - [SMALL_STATE(5587)] = 224484, - [SMALL_STATE(5588)] = 224531, - [SMALL_STATE(5589)] = 224628, - [SMALL_STATE(5590)] = 224725, - [SMALL_STATE(5591)] = 224822, - [SMALL_STATE(5592)] = 224919, - [SMALL_STATE(5593)] = 224966, - [SMALL_STATE(5594)] = 225063, - [SMALL_STATE(5595)] = 225110, - [SMALL_STATE(5596)] = 225207, - [SMALL_STATE(5597)] = 225260, - [SMALL_STATE(5598)] = 225307, - [SMALL_STATE(5599)] = 225354, - [SMALL_STATE(5600)] = 225401, - [SMALL_STATE(5601)] = 225498, - [SMALL_STATE(5602)] = 225595, - [SMALL_STATE(5603)] = 225642, - [SMALL_STATE(5604)] = 225739, - [SMALL_STATE(5605)] = 225836, - [SMALL_STATE(5606)] = 225933, - [SMALL_STATE(5607)] = 225986, - [SMALL_STATE(5608)] = 226083, - [SMALL_STATE(5609)] = 226180, - [SMALL_STATE(5610)] = 226249, - [SMALL_STATE(5611)] = 226346, - [SMALL_STATE(5612)] = 226443, - [SMALL_STATE(5613)] = 226540, - [SMALL_STATE(5614)] = 226637, - [SMALL_STATE(5615)] = 226734, - [SMALL_STATE(5616)] = 226831, - [SMALL_STATE(5617)] = 226928, - [SMALL_STATE(5618)] = 227025, - [SMALL_STATE(5619)] = 227078, - [SMALL_STATE(5620)] = 227125, - [SMALL_STATE(5621)] = 227172, - [SMALL_STATE(5622)] = 227219, - [SMALL_STATE(5623)] = 227266, - [SMALL_STATE(5624)] = 227313, - [SMALL_STATE(5625)] = 227410, - [SMALL_STATE(5626)] = 227507, - [SMALL_STATE(5627)] = 227604, - [SMALL_STATE(5628)] = 227651, - [SMALL_STATE(5629)] = 227748, - [SMALL_STATE(5630)] = 227817, - [SMALL_STATE(5631)] = 227914, - [SMALL_STATE(5632)] = 227967, - [SMALL_STATE(5633)] = 228064, - [SMALL_STATE(5634)] = 228161, - [SMALL_STATE(5635)] = 228258, - [SMALL_STATE(5636)] = 228355, - [SMALL_STATE(5637)] = 228452, - [SMALL_STATE(5638)] = 228499, - [SMALL_STATE(5639)] = 228546, - [SMALL_STATE(5640)] = 228643, - [SMALL_STATE(5641)] = 228740, - [SMALL_STATE(5642)] = 228837, - [SMALL_STATE(5643)] = 228934, - [SMALL_STATE(5644)] = 229031, - [SMALL_STATE(5645)] = 229078, - [SMALL_STATE(5646)] = 229125, - [SMALL_STATE(5647)] = 229172, - [SMALL_STATE(5648)] = 229219, - [SMALL_STATE(5649)] = 229266, - [SMALL_STATE(5650)] = 229313, - [SMALL_STATE(5651)] = 229410, - [SMALL_STATE(5652)] = 229457, - [SMALL_STATE(5653)] = 229554, - [SMALL_STATE(5654)] = 229651, - [SMALL_STATE(5655)] = 229698, - [SMALL_STATE(5656)] = 229745, - [SMALL_STATE(5657)] = 229842, - [SMALL_STATE(5658)] = 229889, - [SMALL_STATE(5659)] = 229986, - [SMALL_STATE(5660)] = 230083, - [SMALL_STATE(5661)] = 230180, - [SMALL_STATE(5662)] = 230277, - [SMALL_STATE(5663)] = 230374, - [SMALL_STATE(5664)] = 230471, - [SMALL_STATE(5665)] = 230568, - [SMALL_STATE(5666)] = 230665, - [SMALL_STATE(5667)] = 230762, - [SMALL_STATE(5668)] = 230859, - [SMALL_STATE(5669)] = 230956, - [SMALL_STATE(5670)] = 231053, - [SMALL_STATE(5671)] = 231150, - [SMALL_STATE(5672)] = 231247, - [SMALL_STATE(5673)] = 231344, - [SMALL_STATE(5674)] = 231441, - [SMALL_STATE(5675)] = 231538, - [SMALL_STATE(5676)] = 231585, - [SMALL_STATE(5677)] = 231682, - [SMALL_STATE(5678)] = 231779, - [SMALL_STATE(5679)] = 231876, - [SMALL_STATE(5680)] = 231973, - [SMALL_STATE(5681)] = 232070, - [SMALL_STATE(5682)] = 232167, - [SMALL_STATE(5683)] = 232214, - [SMALL_STATE(5684)] = 232311, - [SMALL_STATE(5685)] = 232408, - [SMALL_STATE(5686)] = 232505, - [SMALL_STATE(5687)] = 232602, - [SMALL_STATE(5688)] = 232655, - [SMALL_STATE(5689)] = 232752, - [SMALL_STATE(5690)] = 232803, - [SMALL_STATE(5691)] = 232850, - [SMALL_STATE(5692)] = 232897, - [SMALL_STATE(5693)] = 232952, - [SMALL_STATE(5694)] = 232999, - [SMALL_STATE(5695)] = 233052, - [SMALL_STATE(5696)] = 233099, - [SMALL_STATE(5697)] = 233146, - [SMALL_STATE(5698)] = 233243, - [SMALL_STATE(5699)] = 233290, - [SMALL_STATE(5700)] = 233337, - [SMALL_STATE(5701)] = 233384, - [SMALL_STATE(5702)] = 233431, - [SMALL_STATE(5703)] = 233478, - [SMALL_STATE(5704)] = 233525, - [SMALL_STATE(5705)] = 233572, - [SMALL_STATE(5706)] = 233619, - [SMALL_STATE(5707)] = 233666, - [SMALL_STATE(5708)] = 233713, - [SMALL_STATE(5709)] = 233760, - [SMALL_STATE(5710)] = 233807, - [SMALL_STATE(5711)] = 233854, - [SMALL_STATE(5712)] = 233903, - [SMALL_STATE(5713)] = 233950, - [SMALL_STATE(5714)] = 233996, - [SMALL_STATE(5715)] = 234072, - [SMALL_STATE(5716)] = 234146, - [SMALL_STATE(5717)] = 234218, - [SMALL_STATE(5718)] = 234284, - [SMALL_STATE(5719)] = 234354, - [SMALL_STATE(5720)] = 234422, - [SMALL_STATE(5721)] = 234468, - [SMALL_STATE(5722)] = 234522, - [SMALL_STATE(5723)] = 234570, - [SMALL_STATE(5724)] = 234616, - [SMALL_STATE(5725)] = 234684, - [SMALL_STATE(5726)] = 234730, - [SMALL_STATE(5727)] = 234824, - [SMALL_STATE(5728)] = 234884, - [SMALL_STATE(5729)] = 234952, - [SMALL_STATE(5730)] = 235020, - [SMALL_STATE(5731)] = 235066, - [SMALL_STATE(5732)] = 235112, - [SMALL_STATE(5733)] = 235206, - [SMALL_STATE(5734)] = 235274, - [SMALL_STATE(5735)] = 235320, - [SMALL_STATE(5736)] = 235414, - [SMALL_STATE(5737)] = 235460, - [SMALL_STATE(5738)] = 235528, - [SMALL_STATE(5739)] = 235596, - [SMALL_STATE(5740)] = 235646, - [SMALL_STATE(5741)] = 235714, - [SMALL_STATE(5742)] = 235782, - [SMALL_STATE(5743)] = 235870, - [SMALL_STATE(5744)] = 235938, - [SMALL_STATE(5745)] = 236006, - [SMALL_STATE(5746)] = 236074, - [SMALL_STATE(5747)] = 236142, - [SMALL_STATE(5748)] = 236210, - [SMALL_STATE(5749)] = 236268, - [SMALL_STATE(5750)] = 236360, - [SMALL_STATE(5751)] = 236418, - [SMALL_STATE(5752)] = 236510, - [SMALL_STATE(5753)] = 236604, - [SMALL_STATE(5754)] = 236698, - [SMALL_STATE(5755)] = 236744, - [SMALL_STATE(5756)] = 236790, - [SMALL_STATE(5757)] = 236884, - [SMALL_STATE(5758)] = 236942, - [SMALL_STATE(5759)] = 237010, - [SMALL_STATE(5760)] = 237098, - [SMALL_STATE(5761)] = 237158, - [SMALL_STATE(5762)] = 237244, - [SMALL_STATE(5763)] = 237338, - [SMALL_STATE(5764)] = 237398, - [SMALL_STATE(5765)] = 237490, - [SMALL_STATE(5766)] = 237542, - [SMALL_STATE(5767)] = 237636, - [SMALL_STATE(5768)] = 237730, - [SMALL_STATE(5769)] = 237776, - [SMALL_STATE(5770)] = 237844, - [SMALL_STATE(5771)] = 237932, - [SMALL_STATE(5772)] = 237990, - [SMALL_STATE(5773)] = 238038, - [SMALL_STATE(5774)] = 238084, - [SMALL_STATE(5775)] = 238136, - [SMALL_STATE(5776)] = 238230, - [SMALL_STATE(5777)] = 238280, - [SMALL_STATE(5778)] = 238374, - [SMALL_STATE(5779)] = 238468, - [SMALL_STATE(5780)] = 238536, - [SMALL_STATE(5781)] = 238604, - [SMALL_STATE(5782)] = 238660, - [SMALL_STATE(5783)] = 238728, - [SMALL_STATE(5784)] = 238774, - [SMALL_STATE(5785)] = 238820, - [SMALL_STATE(5786)] = 238912, - [SMALL_STATE(5787)] = 238980, - [SMALL_STATE(5788)] = 239074, - [SMALL_STATE(5789)] = 239168, - [SMALL_STATE(5790)] = 239262, - [SMALL_STATE(5791)] = 239316, - [SMALL_STATE(5792)] = 239368, - [SMALL_STATE(5793)] = 239460, - [SMALL_STATE(5794)] = 239554, - [SMALL_STATE(5795)] = 239600, - [SMALL_STATE(5796)] = 239668, - [SMALL_STATE(5797)] = 239720, - [SMALL_STATE(5798)] = 239814, - [SMALL_STATE(5799)] = 239860, - [SMALL_STATE(5800)] = 239906, - [SMALL_STATE(5801)] = 239988, - [SMALL_STATE(5802)] = 240068, - [SMALL_STATE(5803)] = 240114, - [SMALL_STATE(5804)] = 240202, - [SMALL_STATE(5805)] = 240248, - [SMALL_STATE(5806)] = 240294, - [SMALL_STATE(5807)] = 240340, - [SMALL_STATE(5808)] = 240392, - [SMALL_STATE(5809)] = 240438, - [SMALL_STATE(5810)] = 240484, - [SMALL_STATE(5811)] = 240530, - [SMALL_STATE(5812)] = 240576, - [SMALL_STATE(5813)] = 240622, - [SMALL_STATE(5814)] = 240690, - [SMALL_STATE(5815)] = 240758, - [SMALL_STATE(5816)] = 240826, - [SMALL_STATE(5817)] = 240872, - [SMALL_STATE(5818)] = 240924, - [SMALL_STATE(5819)] = 240970, - [SMALL_STATE(5820)] = 241064, - [SMALL_STATE(5821)] = 241158, - [SMALL_STATE(5822)] = 241250, - [SMALL_STATE(5823)] = 241296, - [SMALL_STATE(5824)] = 241348, - [SMALL_STATE(5825)] = 241416, - [SMALL_STATE(5826)] = 241510, - [SMALL_STATE(5827)] = 241578, - [SMALL_STATE(5828)] = 241646, - [SMALL_STATE(5829)] = 241714, - [SMALL_STATE(5830)] = 241782, - [SMALL_STATE(5831)] = 241876, - [SMALL_STATE(5832)] = 241944, - [SMALL_STATE(5833)] = 242012, - [SMALL_STATE(5834)] = 242106, - [SMALL_STATE(5835)] = 242174, - [SMALL_STATE(5836)] = 242242, - [SMALL_STATE(5837)] = 242310, - [SMALL_STATE(5838)] = 242402, - [SMALL_STATE(5839)] = 242494, - [SMALL_STATE(5840)] = 242588, - [SMALL_STATE(5841)] = 242638, - [SMALL_STATE(5842)] = 242690, - [SMALL_STATE(5843)] = 242782, - [SMALL_STATE(5844)] = 242876, - [SMALL_STATE(5845)] = 242970, - [SMALL_STATE(5846)] = 243062, - [SMALL_STATE(5847)] = 243156, - [SMALL_STATE(5848)] = 243250, - [SMALL_STATE(5849)] = 243300, - [SMALL_STATE(5850)] = 243368, - [SMALL_STATE(5851)] = 243436, - [SMALL_STATE(5852)] = 243504, - [SMALL_STATE(5853)] = 243598, - [SMALL_STATE(5854)] = 243690, - [SMALL_STATE(5855)] = 243758, - [SMALL_STATE(5856)] = 243852, - [SMALL_STATE(5857)] = 243898, - [SMALL_STATE(5858)] = 243966, - [SMALL_STATE(5859)] = 244058, - [SMALL_STATE(5860)] = 244106, - [SMALL_STATE(5861)] = 244198, - [SMALL_STATE(5862)] = 244266, - [SMALL_STATE(5863)] = 244360, - [SMALL_STATE(5864)] = 244454, - [SMALL_STATE(5865)] = 244506, - [SMALL_STATE(5866)] = 244574, - [SMALL_STATE(5867)] = 244642, - [SMALL_STATE(5868)] = 244710, - [SMALL_STATE(5869)] = 244802, - [SMALL_STATE(5870)] = 244870, - [SMALL_STATE(5871)] = 244934, - [SMALL_STATE(5872)] = 244994, - [SMALL_STATE(5873)] = 245086, - [SMALL_STATE(5874)] = 245178, - [SMALL_STATE(5875)] = 245264, - [SMALL_STATE(5876)] = 245358, - [SMALL_STATE(5877)] = 245450, - [SMALL_STATE(5878)] = 245534, - [SMALL_STATE(5879)] = 245580, - [SMALL_STATE(5880)] = 245674, - [SMALL_STATE(5881)] = 245765, - [SMALL_STATE(5882)] = 245856, - [SMALL_STATE(5883)] = 245947, - [SMALL_STATE(5884)] = 246038, - [SMALL_STATE(5885)] = 246129, - [SMALL_STATE(5886)] = 246220, - [SMALL_STATE(5887)] = 246287, - [SMALL_STATE(5888)] = 246354, - [SMALL_STATE(5889)] = 246407, - [SMALL_STATE(5890)] = 246498, - [SMALL_STATE(5891)] = 246589, - [SMALL_STATE(5892)] = 246680, - [SMALL_STATE(5893)] = 246771, - [SMALL_STATE(5894)] = 246862, - [SMALL_STATE(5895)] = 246953, - [SMALL_STATE(5896)] = 247044, - [SMALL_STATE(5897)] = 247135, - [SMALL_STATE(5898)] = 247198, - [SMALL_STATE(5899)] = 247257, - [SMALL_STATE(5900)] = 247344, - [SMALL_STATE(5901)] = 247429, - [SMALL_STATE(5902)] = 247520, - [SMALL_STATE(5903)] = 247611, - [SMALL_STATE(5904)] = 247692, - [SMALL_STATE(5905)] = 247771, - [SMALL_STATE(5906)] = 247862, - [SMALL_STATE(5907)] = 247953, - [SMALL_STATE(5908)] = 248044, - [SMALL_STATE(5909)] = 248135, - [SMALL_STATE(5910)] = 248226, - [SMALL_STATE(5911)] = 248301, - [SMALL_STATE(5912)] = 248374, - [SMALL_STATE(5913)] = 248443, - [SMALL_STATE(5914)] = 248534, - [SMALL_STATE(5915)] = 248625, - [SMALL_STATE(5916)] = 248690, - [SMALL_STATE(5917)] = 248757, - [SMALL_STATE(5918)] = 248848, - [SMALL_STATE(5919)] = 248939, - [SMALL_STATE(5920)] = 249030, - [SMALL_STATE(5921)] = 249121, - [SMALL_STATE(5922)] = 249212, - [SMALL_STATE(5923)] = 249303, - [SMALL_STATE(5924)] = 249394, - [SMALL_STATE(5925)] = 249485, - [SMALL_STATE(5926)] = 249544, - [SMALL_STATE(5927)] = 249635, - [SMALL_STATE(5928)] = 249726, - [SMALL_STATE(5929)] = 249817, - [SMALL_STATE(5930)] = 249908, - [SMALL_STATE(5931)] = 249999, - [SMALL_STATE(5932)] = 250090, - [SMALL_STATE(5933)] = 250181, - [SMALL_STATE(5934)] = 250272, - [SMALL_STATE(5935)] = 250363, - [SMALL_STATE(5936)] = 250454, - [SMALL_STATE(5937)] = 250545, - [SMALL_STATE(5938)] = 250636, - [SMALL_STATE(5939)] = 250727, - [SMALL_STATE(5940)] = 250816, - [SMALL_STATE(5941)] = 250907, - [SMALL_STATE(5942)] = 250998, - [SMALL_STATE(5943)] = 251089, - [SMALL_STATE(5944)] = 251180, - [SMALL_STATE(5945)] = 251271, - [SMALL_STATE(5946)] = 251362, - [SMALL_STATE(5947)] = 251453, - [SMALL_STATE(5948)] = 251544, - [SMALL_STATE(5949)] = 251635, - [SMALL_STATE(5950)] = 251726, - [SMALL_STATE(5951)] = 251817, - [SMALL_STATE(5952)] = 251908, - [SMALL_STATE(5953)] = 251999, - [SMALL_STATE(5954)] = 252090, - [SMALL_STATE(5955)] = 252181, - [SMALL_STATE(5956)] = 252272, - [SMALL_STATE(5957)] = 252363, - [SMALL_STATE(5958)] = 252454, - [SMALL_STATE(5959)] = 252545, - [SMALL_STATE(5960)] = 252636, - [SMALL_STATE(5961)] = 252727, - [SMALL_STATE(5962)] = 252818, - [SMALL_STATE(5963)] = 252909, - [SMALL_STATE(5964)] = 253000, - [SMALL_STATE(5965)] = 253091, - [SMALL_STATE(5966)] = 253182, - [SMALL_STATE(5967)] = 253273, - [SMALL_STATE(5968)] = 253364, - [SMALL_STATE(5969)] = 253455, - [SMALL_STATE(5970)] = 253546, - [SMALL_STATE(5971)] = 253637, - [SMALL_STATE(5972)] = 253728, - [SMALL_STATE(5973)] = 253819, - [SMALL_STATE(5974)] = 253910, - [SMALL_STATE(5975)] = 254001, - [SMALL_STATE(5976)] = 254092, - [SMALL_STATE(5977)] = 254183, - [SMALL_STATE(5978)] = 254274, - [SMALL_STATE(5979)] = 254365, - [SMALL_STATE(5980)] = 254456, - [SMALL_STATE(5981)] = 254547, - [SMALL_STATE(5982)] = 254638, - [SMALL_STATE(5983)] = 254727, - [SMALL_STATE(5984)] = 254818, - [SMALL_STATE(5985)] = 254909, - [SMALL_STATE(5986)] = 255000, - [SMALL_STATE(5987)] = 255091, - [SMALL_STATE(5988)] = 255182, - [SMALL_STATE(5989)] = 255273, - [SMALL_STATE(5990)] = 255364, - [SMALL_STATE(5991)] = 255451, - [SMALL_STATE(5992)] = 255542, - [SMALL_STATE(5993)] = 255633, - [SMALL_STATE(5994)] = 255724, - [SMALL_STATE(5995)] = 255815, - [SMALL_STATE(5996)] = 255860, - [SMALL_STATE(5997)] = 255951, - [SMALL_STATE(5998)] = 256042, - [SMALL_STATE(5999)] = 256133, - [SMALL_STATE(6000)] = 256224, - [SMALL_STATE(6001)] = 256315, - [SMALL_STATE(6002)] = 256406, - [SMALL_STATE(6003)] = 256463, - [SMALL_STATE(6004)] = 256554, - [SMALL_STATE(6005)] = 256645, - [SMALL_STATE(6006)] = 256700, - [SMALL_STATE(6007)] = 256791, - [SMALL_STATE(6008)] = 256846, - [SMALL_STATE(6009)] = 256937, - [SMALL_STATE(6010)] = 257028, - [SMALL_STATE(6011)] = 257119, - [SMALL_STATE(6012)] = 257168, - [SMALL_STATE(6013)] = 257259, - [SMALL_STATE(6014)] = 257350, - [SMALL_STATE(6015)] = 257441, - [SMALL_STATE(6016)] = 257532, - [SMALL_STATE(6017)] = 257623, - [SMALL_STATE(6018)] = 257714, - [SMALL_STATE(6019)] = 257805, - [SMALL_STATE(6020)] = 257864, - [SMALL_STATE(6021)] = 257955, - [SMALL_STATE(6022)] = 258046, - [SMALL_STATE(6023)] = 258137, - [SMALL_STATE(6024)] = 258228, - [SMALL_STATE(6025)] = 258319, - [SMALL_STATE(6026)] = 258410, - [SMALL_STATE(6027)] = 258501, - [SMALL_STATE(6028)] = 258546, - [SMALL_STATE(6029)] = 258637, - [SMALL_STATE(6030)] = 258728, - [SMALL_STATE(6031)] = 258819, - [SMALL_STATE(6032)] = 258878, - [SMALL_STATE(6033)] = 258969, - [SMALL_STATE(6034)] = 259060, - [SMALL_STATE(6035)] = 259151, - [SMALL_STATE(6036)] = 259242, - [SMALL_STATE(6037)] = 259333, - [SMALL_STATE(6038)] = 259424, - [SMALL_STATE(6039)] = 259515, - [SMALL_STATE(6040)] = 259606, - [SMALL_STATE(6041)] = 259697, - [SMALL_STATE(6042)] = 259744, - [SMALL_STATE(6043)] = 259835, - [SMALL_STATE(6044)] = 259926, - [SMALL_STATE(6045)] = 260017, - [SMALL_STATE(6046)] = 260108, - [SMALL_STATE(6047)] = 260197, - [SMALL_STATE(6048)] = 260288, - [SMALL_STATE(6049)] = 260345, - [SMALL_STATE(6050)] = 260396, - [SMALL_STATE(6051)] = 260443, - [SMALL_STATE(6052)] = 260534, - [SMALL_STATE(6053)] = 260621, - [SMALL_STATE(6054)] = 260712, - [SMALL_STATE(6055)] = 260803, - [SMALL_STATE(6056)] = 260854, - [SMALL_STATE(6057)] = 260905, - [SMALL_STATE(6058)] = 260996, - [SMALL_STATE(6059)] = 261085, - [SMALL_STATE(6060)] = 261172, - [SMALL_STATE(6061)] = 261263, - [SMALL_STATE(6062)] = 261326, - [SMALL_STATE(6063)] = 261385, - [SMALL_STATE(6064)] = 261470, - [SMALL_STATE(6065)] = 261553, - [SMALL_STATE(6066)] = 261634, - [SMALL_STATE(6067)] = 261713, - [SMALL_STATE(6068)] = 261788, - [SMALL_STATE(6069)] = 261861, - [SMALL_STATE(6070)] = 261930, - [SMALL_STATE(6071)] = 261995, - [SMALL_STATE(6072)] = 262062, - [SMALL_STATE(6073)] = 262121, - [SMALL_STATE(6074)] = 262208, - [SMALL_STATE(6075)] = 262299, - [SMALL_STATE(6076)] = 262386, - [SMALL_STATE(6077)] = 262477, - [SMALL_STATE(6078)] = 262568, - [SMALL_STATE(6079)] = 262659, - [SMALL_STATE(6080)] = 262750, - [SMALL_STATE(6081)] = 262841, - [SMALL_STATE(6082)] = 262932, - [SMALL_STATE(6083)] = 263023, - [SMALL_STATE(6084)] = 263114, - [SMALL_STATE(6085)] = 263181, - [SMALL_STATE(6086)] = 263238, - [SMALL_STATE(6087)] = 263305, - [SMALL_STATE(6088)] = 263364, - [SMALL_STATE(6089)] = 263423, - [SMALL_STATE(6090)] = 263510, - [SMALL_STATE(6091)] = 263567, - [SMALL_STATE(6092)] = 263658, - [SMALL_STATE(6093)] = 263749, - [SMALL_STATE(6094)] = 263840, - [SMALL_STATE(6095)] = 263931, - [SMALL_STATE(6096)] = 264022, - [SMALL_STATE(6097)] = 264113, - [SMALL_STATE(6098)] = 264204, - [SMALL_STATE(6099)] = 264295, - [SMALL_STATE(6100)] = 264386, - [SMALL_STATE(6101)] = 264477, - [SMALL_STATE(6102)] = 264568, - [SMALL_STATE(6103)] = 264659, - [SMALL_STATE(6104)] = 264750, - [SMALL_STATE(6105)] = 264841, - [SMALL_STATE(6106)] = 264932, - [SMALL_STATE(6107)] = 265023, - [SMALL_STATE(6108)] = 265067, - [SMALL_STATE(6109)] = 265111, - [SMALL_STATE(6110)] = 265183, - [SMALL_STATE(6111)] = 265255, - [SMALL_STATE(6112)] = 265299, - [SMALL_STATE(6113)] = 265351, - [SMALL_STATE(6114)] = 265395, - [SMALL_STATE(6115)] = 265439, - [SMALL_STATE(6116)] = 265483, - [SMALL_STATE(6117)] = 265527, - [SMALL_STATE(6118)] = 265581, - [SMALL_STATE(6119)] = 265627, - [SMALL_STATE(6120)] = 265671, - [SMALL_STATE(6121)] = 265715, - [SMALL_STATE(6122)] = 265759, - [SMALL_STATE(6123)] = 265803, - [SMALL_STATE(6124)] = 265847, - [SMALL_STATE(6125)] = 265891, - [SMALL_STATE(6126)] = 265935, - [SMALL_STATE(6127)] = 266023, - [SMALL_STATE(6128)] = 266067, - [SMALL_STATE(6129)] = 266111, - [SMALL_STATE(6130)] = 266155, - [SMALL_STATE(6131)] = 266199, - [SMALL_STATE(6132)] = 266243, - [SMALL_STATE(6133)] = 266287, - [SMALL_STATE(6134)] = 266331, - [SMALL_STATE(6135)] = 266375, - [SMALL_STATE(6136)] = 266419, - [SMALL_STATE(6137)] = 266463, - [SMALL_STATE(6138)] = 266529, - [SMALL_STATE(6139)] = 266573, - [SMALL_STATE(6140)] = 266617, - [SMALL_STATE(6141)] = 266661, - [SMALL_STATE(6142)] = 266705, - [SMALL_STATE(6143)] = 266771, - [SMALL_STATE(6144)] = 266815, - [SMALL_STATE(6145)] = 266859, - [SMALL_STATE(6146)] = 266945, - [SMALL_STATE(6147)] = 266989, - [SMALL_STATE(6148)] = 267035, - [SMALL_STATE(6149)] = 267087, - [SMALL_STATE(6150)] = 267131, - [SMALL_STATE(6151)] = 267197, - [SMALL_STATE(6152)] = 267263, - [SMALL_STATE(6153)] = 267307, - [SMALL_STATE(6154)] = 267351, - [SMALL_STATE(6155)] = 267395, - [SMALL_STATE(6156)] = 267439, - [SMALL_STATE(6157)] = 267483, - [SMALL_STATE(6158)] = 267527, - [SMALL_STATE(6159)] = 267613, - [SMALL_STATE(6160)] = 267657, - [SMALL_STATE(6161)] = 267705, - [SMALL_STATE(6162)] = 267749, - [SMALL_STATE(6163)] = 267793, - [SMALL_STATE(6164)] = 267837, - [SMALL_STATE(6165)] = 267883, - [SMALL_STATE(6166)] = 267927, - [SMALL_STATE(6167)] = 267971, - [SMALL_STATE(6168)] = 268015, - [SMALL_STATE(6169)] = 268059, - [SMALL_STATE(6170)] = 268102, - [SMALL_STATE(6171)] = 268149, - [SMALL_STATE(6172)] = 268192, - [SMALL_STATE(6173)] = 268235, - [SMALL_STATE(6174)] = 268278, - [SMALL_STATE(6175)] = 268321, - [SMALL_STATE(6176)] = 268364, - [SMALL_STATE(6177)] = 268407, - [SMALL_STATE(6178)] = 268450, - [SMALL_STATE(6179)] = 268493, - [SMALL_STATE(6180)] = 268578, - [SMALL_STATE(6181)] = 268621, - [SMALL_STATE(6182)] = 268664, - [SMALL_STATE(6183)] = 268707, - [SMALL_STATE(6184)] = 268750, - [SMALL_STATE(6185)] = 268793, - [SMALL_STATE(6186)] = 268836, - [SMALL_STATE(6187)] = 268879, - [SMALL_STATE(6188)] = 268922, - [SMALL_STATE(6189)] = 268965, - [SMALL_STATE(6190)] = 269008, - [SMALL_STATE(6191)] = 269051, - [SMALL_STATE(6192)] = 269096, - [SMALL_STATE(6193)] = 269139, - [SMALL_STATE(6194)] = 269182, - [SMALL_STATE(6195)] = 269225, - [SMALL_STATE(6196)] = 269270, - [SMALL_STATE(6197)] = 269313, - [SMALL_STATE(6198)] = 269368, - [SMALL_STATE(6199)] = 269411, - [SMALL_STATE(6200)] = 269454, - [SMALL_STATE(6201)] = 269497, - [SMALL_STATE(6202)] = 269540, - [SMALL_STATE(6203)] = 269583, - [SMALL_STATE(6204)] = 269626, - [SMALL_STATE(6205)] = 269697, - [SMALL_STATE(6206)] = 269740, - [SMALL_STATE(6207)] = 269787, - [SMALL_STATE(6208)] = 269830, - [SMALL_STATE(6209)] = 269873, - [SMALL_STATE(6210)] = 269916, - [SMALL_STATE(6211)] = 269959, - [SMALL_STATE(6212)] = 270002, - [SMALL_STATE(6213)] = 270045, - [SMALL_STATE(6214)] = 270092, - [SMALL_STATE(6215)] = 270135, - [SMALL_STATE(6216)] = 270178, - [SMALL_STATE(6217)] = 270221, - [SMALL_STATE(6218)] = 270264, - [SMALL_STATE(6219)] = 270307, - [SMALL_STATE(6220)] = 270350, - [SMALL_STATE(6221)] = 270393, - [SMALL_STATE(6222)] = 270436, - [SMALL_STATE(6223)] = 270491, - [SMALL_STATE(6224)] = 270546, - [SMALL_STATE(6225)] = 270589, - [SMALL_STATE(6226)] = 270632, - [SMALL_STATE(6227)] = 270675, - [SMALL_STATE(6228)] = 270718, - [SMALL_STATE(6229)] = 270763, - [SMALL_STATE(6230)] = 270806, - [SMALL_STATE(6231)] = 270855, - [SMALL_STATE(6232)] = 270898, - [SMALL_STATE(6233)] = 270941, - [SMALL_STATE(6234)] = 270984, - [SMALL_STATE(6235)] = 271027, - [SMALL_STATE(6236)] = 271074, - [SMALL_STATE(6237)] = 271117, - [SMALL_STATE(6238)] = 271160, - [SMALL_STATE(6239)] = 271203, - [SMALL_STATE(6240)] = 271248, - [SMALL_STATE(6241)] = 271291, - [SMALL_STATE(6242)] = 271342, - [SMALL_STATE(6243)] = 271427, - [SMALL_STATE(6244)] = 271482, - [SMALL_STATE(6245)] = 271525, - [SMALL_STATE(6246)] = 271610, - [SMALL_STATE(6247)] = 271653, - [SMALL_STATE(6248)] = 271696, - [SMALL_STATE(6249)] = 271743, - [SMALL_STATE(6250)] = 271786, - [SMALL_STATE(6251)] = 271833, - [SMALL_STATE(6252)] = 271880, - [SMALL_STATE(6253)] = 271925, - [SMALL_STATE(6254)] = 271968, - [SMALL_STATE(6255)] = 272015, - [SMALL_STATE(6256)] = 272086, - [SMALL_STATE(6257)] = 272133, - [SMALL_STATE(6258)] = 272176, - [SMALL_STATE(6259)] = 272219, - [SMALL_STATE(6260)] = 272272, - [SMALL_STATE(6261)] = 272315, - [SMALL_STATE(6262)] = 272358, - [SMALL_STATE(6263)] = 272443, - [SMALL_STATE(6264)] = 272486, - [SMALL_STATE(6265)] = 272529, - [SMALL_STATE(6266)] = 272588, - [SMALL_STATE(6267)] = 272635, - [SMALL_STATE(6268)] = 272678, - [SMALL_STATE(6269)] = 272721, - [SMALL_STATE(6270)] = 272806, - [SMALL_STATE(6271)] = 272849, - [SMALL_STATE(6272)] = 272898, - [SMALL_STATE(6273)] = 272983, - [SMALL_STATE(6274)] = 273026, - [SMALL_STATE(6275)] = 273075, - [SMALL_STATE(6276)] = 273118, - [SMALL_STATE(6277)] = 273161, - [SMALL_STATE(6278)] = 273239, - [SMALL_STATE(6279)] = 273317, - [SMALL_STATE(6280)] = 273371, - [SMALL_STATE(6281)] = 273413, - [SMALL_STATE(6282)] = 273497, - [SMALL_STATE(6283)] = 273551, - [SMALL_STATE(6284)] = 273601, - [SMALL_STATE(6285)] = 273679, - [SMALL_STATE(6286)] = 273721, - [SMALL_STATE(6287)] = 273767, - [SMALL_STATE(6288)] = 273813, - [SMALL_STATE(6289)] = 273891, - [SMALL_STATE(6290)] = 273939, - [SMALL_STATE(6291)] = 273987, - [SMALL_STATE(6292)] = 274064, - [SMALL_STATE(6293)] = 274129, - [SMALL_STATE(6294)] = 274206, - [SMALL_STATE(6295)] = 274253, - [SMALL_STATE(6296)] = 274318, - [SMALL_STATE(6297)] = 274395, - [SMALL_STATE(6298)] = 274458, - [SMALL_STATE(6299)] = 274523, - [SMALL_STATE(6300)] = 274586, - [SMALL_STATE(6301)] = 274649, - [SMALL_STATE(6302)] = 274712, - [SMALL_STATE(6303)] = 274763, - [SMALL_STATE(6304)] = 274828, - [SMALL_STATE(6305)] = 274919, - [SMALL_STATE(6306)] = 274996, - [SMALL_STATE(6307)] = 275065, - [SMALL_STATE(6308)] = 275114, - [SMALL_STATE(6309)] = 275179, - [SMALL_STATE(6310)] = 275248, - [SMALL_STATE(6311)] = 275313, - [SMALL_STATE(6312)] = 275393, - [SMALL_STATE(6313)] = 275473, - [SMALL_STATE(6314)] = 275549, - [SMALL_STATE(6315)] = 275625, - [SMALL_STATE(6316)] = 275687, - [SMALL_STATE(6317)] = 275767, - [SMALL_STATE(6318)] = 275843, - [SMALL_STATE(6319)] = 275905, - [SMALL_STATE(6320)] = 275985, - [SMALL_STATE(6321)] = 276065, - [SMALL_STATE(6322)] = 276145, - [SMALL_STATE(6323)] = 276221, - [SMALL_STATE(6324)] = 276269, - [SMALL_STATE(6325)] = 276345, - [SMALL_STATE(6326)] = 276393, - [SMALL_STATE(6327)] = 276455, - [SMALL_STATE(6328)] = 276511, - [SMALL_STATE(6329)] = 276587, - [SMALL_STATE(6330)] = 276663, - [SMALL_STATE(6331)] = 276743, - [SMALL_STATE(6332)] = 276791, - [SMALL_STATE(6333)] = 276871, - [SMALL_STATE(6334)] = 276947, - [SMALL_STATE(6335)] = 277027, - [SMALL_STATE(6336)] = 277107, - [SMALL_STATE(6337)] = 277187, - [SMALL_STATE(6338)] = 277263, - [SMALL_STATE(6339)] = 277343, - [SMALL_STATE(6340)] = 277423, - [SMALL_STATE(6341)] = 277503, - [SMALL_STATE(6342)] = 277545, - [SMALL_STATE(6343)] = 277597, - [SMALL_STATE(6344)] = 277677, - [SMALL_STATE(6345)] = 277757, - [SMALL_STATE(6346)] = 277839, - [SMALL_STATE(6347)] = 277891, - [SMALL_STATE(6348)] = 277971, - [SMALL_STATE(6349)] = 278051, - [SMALL_STATE(6350)] = 278131, - [SMALL_STATE(6351)] = 278177, - [SMALL_STATE(6352)] = 278239, - [SMALL_STATE(6353)] = 278319, - [SMALL_STATE(6354)] = 278395, - [SMALL_STATE(6355)] = 278443, - [SMALL_STATE(6356)] = 278525, - [SMALL_STATE(6357)] = 278601, - [SMALL_STATE(6358)] = 278677, - [SMALL_STATE(6359)] = 278757, - [SMALL_STATE(6360)] = 278837, - [SMALL_STATE(6361)] = 278917, - [SMALL_STATE(6362)] = 278997, - [SMALL_STATE(6363)] = 279077, - [SMALL_STATE(6364)] = 279157, - [SMALL_STATE(6365)] = 279237, - [SMALL_STATE(6366)] = 279317, - [SMALL_STATE(6367)] = 279360, - [SMALL_STATE(6368)] = 279421, - [SMALL_STATE(6369)] = 279460, - [SMALL_STATE(6370)] = 279507, - [SMALL_STATE(6371)] = 279550, - [SMALL_STATE(6372)] = 279593, - [SMALL_STATE(6373)] = 279640, - [SMALL_STATE(6374)] = 279683, - [SMALL_STATE(6375)] = 279726, - [SMALL_STATE(6376)] = 279769, - [SMALL_STATE(6377)] = 279808, - [SMALL_STATE(6378)] = 279847, - [SMALL_STATE(6379)] = 279886, - [SMALL_STATE(6380)] = 279929, - [SMALL_STATE(6381)] = 279972, - [SMALL_STATE(6382)] = 280015, - [SMALL_STATE(6383)] = 280088, - [SMALL_STATE(6384)] = 280131, - [SMALL_STATE(6385)] = 280174, - [SMALL_STATE(6386)] = 280217, - [SMALL_STATE(6387)] = 280256, - [SMALL_STATE(6388)] = 280295, - [SMALL_STATE(6389)] = 280334, - [SMALL_STATE(6390)] = 280407, - [SMALL_STATE(6391)] = 280452, - [SMALL_STATE(6392)] = 280525, - [SMALL_STATE(6393)] = 280564, - [SMALL_STATE(6394)] = 280609, - [SMALL_STATE(6395)] = 280682, - [SMALL_STATE(6396)] = 280755, - [SMALL_STATE(6397)] = 280828, - [SMALL_STATE(6398)] = 280901, - [SMALL_STATE(6399)] = 280974, - [SMALL_STATE(6400)] = 281025, - [SMALL_STATE(6401)] = 281076, - [SMALL_STATE(6402)] = 281149, - [SMALL_STATE(6403)] = 281222, - [SMALL_STATE(6404)] = 281295, - [SMALL_STATE(6405)] = 281368, - [SMALL_STATE(6406)] = 281441, - [SMALL_STATE(6407)] = 281480, - [SMALL_STATE(6408)] = 281553, - [SMALL_STATE(6409)] = 281626, - [SMALL_STATE(6410)] = 281665, - [SMALL_STATE(6411)] = 281704, - [SMALL_STATE(6412)] = 281743, - [SMALL_STATE(6413)] = 281804, - [SMALL_STATE(6414)] = 281877, - [SMALL_STATE(6415)] = 281950, - [SMALL_STATE(6416)] = 282024, - [SMALL_STATE(6417)] = 282098, - [SMALL_STATE(6418)] = 282172, - [SMALL_STATE(6419)] = 282246, - [SMALL_STATE(6420)] = 282320, - [SMALL_STATE(6421)] = 282364, - [SMALL_STATE(6422)] = 282438, - [SMALL_STATE(6423)] = 282476, - [SMALL_STATE(6424)] = 282514, - [SMALL_STATE(6425)] = 282588, - [SMALL_STATE(6426)] = 282640, - [SMALL_STATE(6427)] = 282714, - [SMALL_STATE(6428)] = 282764, - [SMALL_STATE(6429)] = 282816, - [SMALL_STATE(6430)] = 282890, - [SMALL_STATE(6431)] = 282942, - [SMALL_STATE(6432)] = 282994, - [SMALL_STATE(6433)] = 283054, - [SMALL_STATE(6434)] = 283128, - [SMALL_STATE(6435)] = 283202, - [SMALL_STATE(6436)] = 283276, - [SMALL_STATE(6437)] = 283314, - [SMALL_STATE(6438)] = 283352, - [SMALL_STATE(6439)] = 283404, - [SMALL_STATE(6440)] = 283478, - [SMALL_STATE(6441)] = 283552, - [SMALL_STATE(6442)] = 283626, - [SMALL_STATE(6443)] = 283678, - [SMALL_STATE(6444)] = 283730, - [SMALL_STATE(6445)] = 283782, - [SMALL_STATE(6446)] = 283856, - [SMALL_STATE(6447)] = 283908, - [SMALL_STATE(6448)] = 283982, - [SMALL_STATE(6449)] = 284056, - [SMALL_STATE(6450)] = 284130, - [SMALL_STATE(6451)] = 284204, - [SMALL_STATE(6452)] = 284278, - [SMALL_STATE(6453)] = 284352, - [SMALL_STATE(6454)] = 284404, - [SMALL_STATE(6455)] = 284456, - [SMALL_STATE(6456)] = 284530, - [SMALL_STATE(6457)] = 284604, - [SMALL_STATE(6458)] = 284678, - [SMALL_STATE(6459)] = 284752, - [SMALL_STATE(6460)] = 284826, - [SMALL_STATE(6461)] = 284878, - [SMALL_STATE(6462)] = 284948, - [SMALL_STATE(6463)] = 285022, - [SMALL_STATE(6464)] = 285074, - [SMALL_STATE(6465)] = 285126, - [SMALL_STATE(6466)] = 285178, - [SMALL_STATE(6467)] = 285252, - [SMALL_STATE(6468)] = 285290, - [SMALL_STATE(6469)] = 285342, - [SMALL_STATE(6470)] = 285402, - [SMALL_STATE(6471)] = 285462, - [SMALL_STATE(6472)] = 285500, - [SMALL_STATE(6473)] = 285574, - [SMALL_STATE(6474)] = 285648, - [SMALL_STATE(6475)] = 285700, - [SMALL_STATE(6476)] = 285752, - [SMALL_STATE(6477)] = 285826, - [SMALL_STATE(6478)] = 285878, - [SMALL_STATE(6479)] = 285952, - [SMALL_STATE(6480)] = 286026, - [SMALL_STATE(6481)] = 286078, - [SMALL_STATE(6482)] = 286152, - [SMALL_STATE(6483)] = 286204, - [SMALL_STATE(6484)] = 286256, - [SMALL_STATE(6485)] = 286308, - [SMALL_STATE(6486)] = 286360, - [SMALL_STATE(6487)] = 286434, - [SMALL_STATE(6488)] = 286508, - [SMALL_STATE(6489)] = 286582, - [SMALL_STATE(6490)] = 286620, - [SMALL_STATE(6491)] = 286694, - [SMALL_STATE(6492)] = 286746, - [SMALL_STATE(6493)] = 286820, - [SMALL_STATE(6494)] = 286872, - [SMALL_STATE(6495)] = 286946, - [SMALL_STATE(6496)] = 287020, - [SMALL_STATE(6497)] = 287094, - [SMALL_STATE(6498)] = 287168, - [SMALL_STATE(6499)] = 287242, - [SMALL_STATE(6500)] = 287294, - [SMALL_STATE(6501)] = 287332, - [SMALL_STATE(6502)] = 287384, - [SMALL_STATE(6503)] = 287458, - [SMALL_STATE(6504)] = 287532, - [SMALL_STATE(6505)] = 287606, - [SMALL_STATE(6506)] = 287648, - [SMALL_STATE(6507)] = 287722, - [SMALL_STATE(6508)] = 287774, - [SMALL_STATE(6509)] = 287834, - [SMALL_STATE(6510)] = 287908, - [SMALL_STATE(6511)] = 287982, - [SMALL_STATE(6512)] = 288056, - [SMALL_STATE(6513)] = 288130, - [SMALL_STATE(6514)] = 288204, - [SMALL_STATE(6515)] = 288278, - [SMALL_STATE(6516)] = 288352, - [SMALL_STATE(6517)] = 288392, - [SMALL_STATE(6518)] = 288466, - [SMALL_STATE(6519)] = 288518, - [SMALL_STATE(6520)] = 288555, - [SMALL_STATE(6521)] = 288604, - [SMALL_STATE(6522)] = 288641, - [SMALL_STATE(6523)] = 288706, - [SMALL_STATE(6524)] = 288743, - [SMALL_STATE(6525)] = 288824, - [SMALL_STATE(6526)] = 288905, - [SMALL_STATE(6527)] = 288986, - [SMALL_STATE(6528)] = 289035, - [SMALL_STATE(6529)] = 289072, - [SMALL_STATE(6530)] = 289109, - [SMALL_STATE(6531)] = 289146, - [SMALL_STATE(6532)] = 289183, - [SMALL_STATE(6533)] = 289228, - [SMALL_STATE(6534)] = 289265, - [SMALL_STATE(6535)] = 289332, - [SMALL_STATE(6536)] = 289413, - [SMALL_STATE(6537)] = 289494, - [SMALL_STATE(6538)] = 289575, - [SMALL_STATE(6539)] = 289612, - [SMALL_STATE(6540)] = 289649, - [SMALL_STATE(6541)] = 289686, - [SMALL_STATE(6542)] = 289767, - [SMALL_STATE(6543)] = 289848, - [SMALL_STATE(6544)] = 289929, - [SMALL_STATE(6545)] = 290010, - [SMALL_STATE(6546)] = 290091, - [SMALL_STATE(6547)] = 290172, - [SMALL_STATE(6548)] = 290239, - [SMALL_STATE(6549)] = 290276, - [SMALL_STATE(6550)] = 290357, - [SMALL_STATE(6551)] = 290438, - [SMALL_STATE(6552)] = 290519, - [SMALL_STATE(6553)] = 290556, - [SMALL_STATE(6554)] = 290593, - [SMALL_STATE(6555)] = 290630, - [SMALL_STATE(6556)] = 290711, - [SMALL_STATE(6557)] = 290792, - [SMALL_STATE(6558)] = 290873, - [SMALL_STATE(6559)] = 290910, - [SMALL_STATE(6560)] = 290947, - [SMALL_STATE(6561)] = 290992, - [SMALL_STATE(6562)] = 291073, - [SMALL_STATE(6563)] = 291154, - [SMALL_STATE(6564)] = 291235, - [SMALL_STATE(6565)] = 291302, - [SMALL_STATE(6566)] = 291383, - [SMALL_STATE(6567)] = 291464, - [SMALL_STATE(6568)] = 291545, - [SMALL_STATE(6569)] = 291626, - [SMALL_STATE(6570)] = 291707, - [SMALL_STATE(6571)] = 291788, - [SMALL_STATE(6572)] = 291869, - [SMALL_STATE(6573)] = 291950, - [SMALL_STATE(6574)] = 292031, - [SMALL_STATE(6575)] = 292068, - [SMALL_STATE(6576)] = 292149, - [SMALL_STATE(6577)] = 292230, - [SMALL_STATE(6578)] = 292311, - [SMALL_STATE(6579)] = 292392, - [SMALL_STATE(6580)] = 292473, - [SMALL_STATE(6581)] = 292554, - [SMALL_STATE(6582)] = 292591, - [SMALL_STATE(6583)] = 292672, - [SMALL_STATE(6584)] = 292753, - [SMALL_STATE(6585)] = 292820, - [SMALL_STATE(6586)] = 292857, - [SMALL_STATE(6587)] = 292938, - [SMALL_STATE(6588)] = 292979, - [SMALL_STATE(6589)] = 293060, - [SMALL_STATE(6590)] = 293141, - [SMALL_STATE(6591)] = 293222, - [SMALL_STATE(6592)] = 293303, - [SMALL_STATE(6593)] = 293370, - [SMALL_STATE(6594)] = 293407, - [SMALL_STATE(6595)] = 293474, - [SMALL_STATE(6596)] = 293541, - [SMALL_STATE(6597)] = 293580, - [SMALL_STATE(6598)] = 293661, - [SMALL_STATE(6599)] = 293742, - [SMALL_STATE(6600)] = 293823, - [SMALL_STATE(6601)] = 293904, - [SMALL_STATE(6602)] = 293985, - [SMALL_STATE(6603)] = 294066, - [SMALL_STATE(6604)] = 294103, - [SMALL_STATE(6605)] = 294184, - [SMALL_STATE(6606)] = 294257, - [SMALL_STATE(6607)] = 294330, - [SMALL_STATE(6608)] = 294403, - [SMALL_STATE(6609)] = 294476, - [SMALL_STATE(6610)] = 294513, - [SMALL_STATE(6611)] = 294594, - [SMALL_STATE(6612)] = 294631, - [SMALL_STATE(6613)] = 294698, - [SMALL_STATE(6614)] = 294735, - [SMALL_STATE(6615)] = 294816, - [SMALL_STATE(6616)] = 294883, - [SMALL_STATE(6617)] = 294950, - [SMALL_STATE(6618)] = 294987, - [SMALL_STATE(6619)] = 295030, - [SMALL_STATE(6620)] = 295111, - [SMALL_STATE(6621)] = 295192, - [SMALL_STATE(6622)] = 295273, - [SMALL_STATE(6623)] = 295354, - [SMALL_STATE(6624)] = 295435, - [SMALL_STATE(6625)] = 295502, - [SMALL_STATE(6626)] = 295551, - [SMALL_STATE(6627)] = 295632, - [SMALL_STATE(6628)] = 295699, - [SMALL_STATE(6629)] = 295780, - [SMALL_STATE(6630)] = 295861, - [SMALL_STATE(6631)] = 295898, - [SMALL_STATE(6632)] = 295965, - [SMALL_STATE(6633)] = 296032, - [SMALL_STATE(6634)] = 296113, - [SMALL_STATE(6635)] = 296194, - [SMALL_STATE(6636)] = 296275, - [SMALL_STATE(6637)] = 296340, - [SMALL_STATE(6638)] = 296407, - [SMALL_STATE(6639)] = 296474, - [SMALL_STATE(6640)] = 296541, - [SMALL_STATE(6641)] = 296622, - [SMALL_STATE(6642)] = 296703, - [SMALL_STATE(6643)] = 296784, - [SMALL_STATE(6644)] = 296849, - [SMALL_STATE(6645)] = 296916, - [SMALL_STATE(6646)] = 296997, - [SMALL_STATE(6647)] = 297078, - [SMALL_STATE(6648)] = 297159, - [SMALL_STATE(6649)] = 297226, - [SMALL_STATE(6650)] = 297293, - [SMALL_STATE(6651)] = 297374, - [SMALL_STATE(6652)] = 297455, - [SMALL_STATE(6653)] = 297536, - [SMALL_STATE(6654)] = 297617, - [SMALL_STATE(6655)] = 297654, - [SMALL_STATE(6656)] = 297721, - [SMALL_STATE(6657)] = 297802, - [SMALL_STATE(6658)] = 297883, - [SMALL_STATE(6659)] = 297964, - [SMALL_STATE(6660)] = 298031, - [SMALL_STATE(6661)] = 298068, - [SMALL_STATE(6662)] = 298105, - [SMALL_STATE(6663)] = 298186, - [SMALL_STATE(6664)] = 298267, - [SMALL_STATE(6665)] = 298348, - [SMALL_STATE(6666)] = 298385, - [SMALL_STATE(6667)] = 298422, - [SMALL_STATE(6668)] = 298503, - [SMALL_STATE(6669)] = 298540, - [SMALL_STATE(6670)] = 298621, - [SMALL_STATE(6671)] = 298702, - [SMALL_STATE(6672)] = 298783, - [SMALL_STATE(6673)] = 298820, - [SMALL_STATE(6674)] = 298857, - [SMALL_STATE(6675)] = 298894, - [SMALL_STATE(6676)] = 298975, - [SMALL_STATE(6677)] = 299040, - [SMALL_STATE(6678)] = 299089, - [SMALL_STATE(6679)] = 299134, - [SMALL_STATE(6680)] = 299215, - [SMALL_STATE(6681)] = 299252, - [SMALL_STATE(6682)] = 299333, - [SMALL_STATE(6683)] = 299414, - [SMALL_STATE(6684)] = 299479, - [SMALL_STATE(6685)] = 299544, - [SMALL_STATE(6686)] = 299581, - [SMALL_STATE(6687)] = 299620, - [SMALL_STATE(6688)] = 299669, - [SMALL_STATE(6689)] = 299706, - [SMALL_STATE(6690)] = 299743, - [SMALL_STATE(6691)] = 299786, - [SMALL_STATE(6692)] = 299823, - [SMALL_STATE(6693)] = 299859, - [SMALL_STATE(6694)] = 299937, - [SMALL_STATE(6695)] = 300015, - [SMALL_STATE(6696)] = 300063, - [SMALL_STATE(6697)] = 300141, - [SMALL_STATE(6698)] = 300219, - [SMALL_STATE(6699)] = 300297, - [SMALL_STATE(6700)] = 300361, - [SMALL_STATE(6701)] = 300439, - [SMALL_STATE(6702)] = 300517, - [SMALL_STATE(6703)] = 300595, - [SMALL_STATE(6704)] = 300643, - [SMALL_STATE(6705)] = 300721, - [SMALL_STATE(6706)] = 300785, - [SMALL_STATE(6707)] = 300863, - [SMALL_STATE(6708)] = 300911, - [SMALL_STATE(6709)] = 300989, - [SMALL_STATE(6710)] = 301067, - [SMALL_STATE(6711)] = 301103, - [SMALL_STATE(6712)] = 301181, - [SMALL_STATE(6713)] = 301259, - [SMALL_STATE(6714)] = 301323, - [SMALL_STATE(6715)] = 301401, - [SMALL_STATE(6716)] = 301465, - [SMALL_STATE(6717)] = 301543, - [SMALL_STATE(6718)] = 301621, - [SMALL_STATE(6719)] = 301699, - [SMALL_STATE(6720)] = 301763, - [SMALL_STATE(6721)] = 301841, - [SMALL_STATE(6722)] = 301885, - [SMALL_STATE(6723)] = 301949, - [SMALL_STATE(6724)] = 301985, - [SMALL_STATE(6725)] = 302063, - [SMALL_STATE(6726)] = 302126, - [SMALL_STATE(6727)] = 302161, - [SMALL_STATE(6728)] = 302196, - [SMALL_STATE(6729)] = 302233, - [SMALL_STATE(6730)] = 302296, - [SMALL_STATE(6731)] = 302333, - [SMALL_STATE(6732)] = 302376, - [SMALL_STATE(6733)] = 302411, - [SMALL_STATE(6734)] = 302474, - [SMALL_STATE(6735)] = 302509, - [SMALL_STATE(6736)] = 302544, - [SMALL_STATE(6737)] = 302579, - [SMALL_STATE(6738)] = 302642, - [SMALL_STATE(6739)] = 302705, - [SMALL_STATE(6740)] = 302740, - [SMALL_STATE(6741)] = 302775, - [SMALL_STATE(6742)] = 302838, - [SMALL_STATE(6743)] = 302901, - [SMALL_STATE(6744)] = 302964, - [SMALL_STATE(6745)] = 303027, - [SMALL_STATE(6746)] = 303090, - [SMALL_STATE(6747)] = 303153, - [SMALL_STATE(6748)] = 303216, - [SMALL_STATE(6749)] = 303279, - [SMALL_STATE(6750)] = 303342, - [SMALL_STATE(6751)] = 303385, - [SMALL_STATE(6752)] = 303448, - [SMALL_STATE(6753)] = 303511, - [SMALL_STATE(6754)] = 303546, - [SMALL_STATE(6755)] = 303609, - [SMALL_STATE(6756)] = 303644, - [SMALL_STATE(6757)] = 303689, - [SMALL_STATE(6758)] = 303752, - [SMALL_STATE(6759)] = 303787, - [SMALL_STATE(6760)] = 303829, - [SMALL_STATE(6761)] = 303867, - [SMALL_STATE(6762)] = 303901, - [SMALL_STATE(6763)] = 303939, - [SMALL_STATE(6764)] = 303977, - [SMALL_STATE(6765)] = 304017, - [SMALL_STATE(6766)] = 304051, - [SMALL_STATE(6767)] = 304095, - [SMALL_STATE(6768)] = 304133, - [SMALL_STATE(6769)] = 304171, - [SMALL_STATE(6770)] = 304209, - [SMALL_STATE(6771)] = 304253, - [SMALL_STATE(6772)] = 304287, - [SMALL_STATE(6773)] = 304323, - [SMALL_STATE(6774)] = 304361, - [SMALL_STATE(6775)] = 304395, - [SMALL_STATE(6776)] = 304433, - [SMALL_STATE(6777)] = 304498, - [SMALL_STATE(6778)] = 304563, - [SMALL_STATE(6779)] = 304596, - [SMALL_STATE(6780)] = 304661, - [SMALL_STATE(6781)] = 304726, - [SMALL_STATE(6782)] = 304763, - [SMALL_STATE(6783)] = 304796, - [SMALL_STATE(6784)] = 304861, - [SMALL_STATE(6785)] = 304898, - [SMALL_STATE(6786)] = 304963, - [SMALL_STATE(6787)] = 305028, - [SMALL_STATE(6788)] = 305065, - [SMALL_STATE(6789)] = 305102, - [SMALL_STATE(6790)] = 305139, - [SMALL_STATE(6791)] = 305176, - [SMALL_STATE(6792)] = 305241, - [SMALL_STATE(6793)] = 305306, - [SMALL_STATE(6794)] = 305355, - [SMALL_STATE(6795)] = 305404, - [SMALL_STATE(6796)] = 305469, - [SMALL_STATE(6797)] = 305502, - [SMALL_STATE(6798)] = 305539, - [SMALL_STATE(6799)] = 305576, - [SMALL_STATE(6800)] = 305611, - [SMALL_STATE(6801)] = 305648, - [SMALL_STATE(6802)] = 305713, - [SMALL_STATE(6803)] = 305750, - [SMALL_STATE(6804)] = 305815, - [SMALL_STATE(6805)] = 305852, - [SMALL_STATE(6806)] = 305889, - [SMALL_STATE(6807)] = 305921, - [SMALL_STATE(6808)] = 305953, - [SMALL_STATE(6809)] = 306013, - [SMALL_STATE(6810)] = 306073, - [SMALL_STATE(6811)] = 306109, - [SMALL_STATE(6812)] = 306147, - [SMALL_STATE(6813)] = 306195, - [SMALL_STATE(6814)] = 306231, - [SMALL_STATE(6815)] = 306291, - [SMALL_STATE(6816)] = 306323, - [SMALL_STATE(6817)] = 306357, - [SMALL_STATE(6818)] = 306417, - [SMALL_STATE(6819)] = 306477, - [SMALL_STATE(6820)] = 306511, - [SMALL_STATE(6821)] = 306547, - [SMALL_STATE(6822)] = 306583, - [SMALL_STATE(6823)] = 306623, - [SMALL_STATE(6824)] = 306659, - [SMALL_STATE(6825)] = 306691, - [SMALL_STATE(6826)] = 306723, - [SMALL_STATE(6827)] = 306783, - [SMALL_STATE(6828)] = 306819, - [SMALL_STATE(6829)] = 306859, - [SMALL_STATE(6830)] = 306895, - [SMALL_STATE(6831)] = 306927, - [SMALL_STATE(6832)] = 306967, - [SMALL_STATE(6833)] = 306999, - [SMALL_STATE(6834)] = 307035, - [SMALL_STATE(6835)] = 307066, - [SMALL_STATE(6836)] = 307097, - [SMALL_STATE(6837)] = 307128, - [SMALL_STATE(6838)] = 307159, - [SMALL_STATE(6839)] = 307190, - [SMALL_STATE(6840)] = 307221, - [SMALL_STATE(6841)] = 307252, - [SMALL_STATE(6842)] = 307283, - [SMALL_STATE(6843)] = 307314, - [SMALL_STATE(6844)] = 307345, - [SMALL_STATE(6845)] = 307376, - [SMALL_STATE(6846)] = 307423, - [SMALL_STATE(6847)] = 307454, - [SMALL_STATE(6848)] = 307485, - [SMALL_STATE(6849)] = 307516, - [SMALL_STATE(6850)] = 307547, - [SMALL_STATE(6851)] = 307578, - [SMALL_STATE(6852)] = 307609, - [SMALL_STATE(6853)] = 307640, - [SMALL_STATE(6854)] = 307671, - [SMALL_STATE(6855)] = 307702, - [SMALL_STATE(6856)] = 307737, - [SMALL_STATE(6857)] = 307768, - [SMALL_STATE(6858)] = 307799, - [SMALL_STATE(6859)] = 307834, - [SMALL_STATE(6860)] = 307869, - [SMALL_STATE(6861)] = 307900, - [SMALL_STATE(6862)] = 307931, - [SMALL_STATE(6863)] = 307962, - [SMALL_STATE(6864)] = 307993, - [SMALL_STATE(6865)] = 308024, - [SMALL_STATE(6866)] = 308055, - [SMALL_STATE(6867)] = 308086, - [SMALL_STATE(6868)] = 308117, - [SMALL_STATE(6869)] = 308148, - [SMALL_STATE(6870)] = 308204, - [SMALL_STATE(6871)] = 308260, - [SMALL_STATE(6872)] = 308316, - [SMALL_STATE(6873)] = 308350, - [SMALL_STATE(6874)] = 308406, - [SMALL_STATE(6875)] = 308462, - [SMALL_STATE(6876)] = 308518, - [SMALL_STATE(6877)] = 308574, - [SMALL_STATE(6878)] = 308630, - [SMALL_STATE(6879)] = 308686, - [SMALL_STATE(6880)] = 308742, - [SMALL_STATE(6881)] = 308798, - [SMALL_STATE(6882)] = 308854, - [SMALL_STATE(6883)] = 308884, - [SMALL_STATE(6884)] = 308940, - [SMALL_STATE(6885)] = 309004, - [SMALL_STATE(6886)] = 309060, - [SMALL_STATE(6887)] = 309124, - [SMALL_STATE(6888)] = 309180, - [SMALL_STATE(6889)] = 309236, - [SMALL_STATE(6890)] = 309292, - [SMALL_STATE(6891)] = 309348, - [SMALL_STATE(6892)] = 309404, - [SMALL_STATE(6893)] = 309460, - [SMALL_STATE(6894)] = 309516, - [SMALL_STATE(6895)] = 309550, - [SMALL_STATE(6896)] = 309584, - [SMALL_STATE(6897)] = 309640, - [SMALL_STATE(6898)] = 309696, - [SMALL_STATE(6899)] = 309752, - [SMALL_STATE(6900)] = 309808, - [SMALL_STATE(6901)] = 309864, - [SMALL_STATE(6902)] = 309898, - [SMALL_STATE(6903)] = 309932, - [SMALL_STATE(6904)] = 309966, - [SMALL_STATE(6905)] = 310022, - [SMALL_STATE(6906)] = 310086, - [SMALL_STATE(6907)] = 310142, - [SMALL_STATE(6908)] = 310198, - [SMALL_STATE(6909)] = 310254, - [SMALL_STATE(6910)] = 310318, - [SMALL_STATE(6911)] = 310374, - [SMALL_STATE(6912)] = 310430, - [SMALL_STATE(6913)] = 310486, - [SMALL_STATE(6914)] = 310516, - [SMALL_STATE(6915)] = 310572, - [SMALL_STATE(6916)] = 310602, - [SMALL_STATE(6917)] = 310658, - [SMALL_STATE(6918)] = 310688, - [SMALL_STATE(6919)] = 310744, - [SMALL_STATE(6920)] = 310800, - [SMALL_STATE(6921)] = 310856, - [SMALL_STATE(6922)] = 310912, - [SMALL_STATE(6923)] = 310968, - [SMALL_STATE(6924)] = 311024, - [SMALL_STATE(6925)] = 311080, - [SMALL_STATE(6926)] = 311126, - [SMALL_STATE(6927)] = 311182, - [SMALL_STATE(6928)] = 311238, - [SMALL_STATE(6929)] = 311294, - [SMALL_STATE(6930)] = 311350, - [SMALL_STATE(6931)] = 311379, - [SMALL_STATE(6932)] = 311408, - [SMALL_STATE(6933)] = 311437, - [SMALL_STATE(6934)] = 311476, - [SMALL_STATE(6935)] = 311537, - [SMALL_STATE(6936)] = 311598, - [SMALL_STATE(6937)] = 311653, - [SMALL_STATE(6938)] = 311714, - [SMALL_STATE(6939)] = 311775, - [SMALL_STATE(6940)] = 311836, - [SMALL_STATE(6941)] = 311897, - [SMALL_STATE(6942)] = 311958, - [SMALL_STATE(6943)] = 312019, - [SMALL_STATE(6944)] = 312080, - [SMALL_STATE(6945)] = 312109, - [SMALL_STATE(6946)] = 312170, - [SMALL_STATE(6947)] = 312231, - [SMALL_STATE(6948)] = 312292, - [SMALL_STATE(6949)] = 312331, - [SMALL_STATE(6950)] = 312392, - [SMALL_STATE(6951)] = 312453, - [SMALL_STATE(6952)] = 312486, - [SMALL_STATE(6953)] = 312547, - [SMALL_STATE(6954)] = 312586, - [SMALL_STATE(6955)] = 312647, - [SMALL_STATE(6956)] = 312708, - [SMALL_STATE(6957)] = 312769, - [SMALL_STATE(6958)] = 312830, - [SMALL_STATE(6959)] = 312859, - [SMALL_STATE(6960)] = 312920, - [SMALL_STATE(6961)] = 312981, - [SMALL_STATE(6962)] = 313042, - [SMALL_STATE(6963)] = 313103, - [SMALL_STATE(6964)] = 313164, - [SMALL_STATE(6965)] = 313203, - [SMALL_STATE(6966)] = 313232, - [SMALL_STATE(6967)] = 313271, - [SMALL_STATE(6968)] = 313332, - [SMALL_STATE(6969)] = 313393, - [SMALL_STATE(6970)] = 313454, - [SMALL_STATE(6971)] = 313515, - [SMALL_STATE(6972)] = 313546, - [SMALL_STATE(6973)] = 313585, - [SMALL_STATE(6974)] = 313636, - [SMALL_STATE(6975)] = 313665, - [SMALL_STATE(6976)] = 313726, - [SMALL_STATE(6977)] = 313787, - [SMALL_STATE(6978)] = 313816, - [SMALL_STATE(6979)] = 313877, - [SMALL_STATE(6980)] = 313938, - [SMALL_STATE(6981)] = 313967, - [SMALL_STATE(6982)] = 313996, - [SMALL_STATE(6983)] = 314057, - [SMALL_STATE(6984)] = 314118, - [SMALL_STATE(6985)] = 314179, - [SMALL_STATE(6986)] = 314240, - [SMALL_STATE(6987)] = 314301, - [SMALL_STATE(6988)] = 314330, - [SMALL_STATE(6989)] = 314391, - [SMALL_STATE(6990)] = 314452, - [SMALL_STATE(6991)] = 314513, - [SMALL_STATE(6992)] = 314574, - [SMALL_STATE(6993)] = 314635, - [SMALL_STATE(6994)] = 314696, - [SMALL_STATE(6995)] = 314757, - [SMALL_STATE(6996)] = 314802, - [SMALL_STATE(6997)] = 314857, - [SMALL_STATE(6998)] = 314918, - [SMALL_STATE(6999)] = 314979, - [SMALL_STATE(7000)] = 315008, - [SMALL_STATE(7001)] = 315037, - [SMALL_STATE(7002)] = 315098, - [SMALL_STATE(7003)] = 315159, - [SMALL_STATE(7004)] = 315220, - [SMALL_STATE(7005)] = 315281, - [SMALL_STATE(7006)] = 315342, - [SMALL_STATE(7007)] = 315371, - [SMALL_STATE(7008)] = 315432, - [SMALL_STATE(7009)] = 315493, - [SMALL_STATE(7010)] = 315554, - [SMALL_STATE(7011)] = 315583, - [SMALL_STATE(7012)] = 315612, - [SMALL_STATE(7013)] = 315657, - [SMALL_STATE(7014)] = 315718, - [SMALL_STATE(7015)] = 315779, - [SMALL_STATE(7016)] = 315840, - [SMALL_STATE(7017)] = 315901, - [SMALL_STATE(7018)] = 315962, - [SMALL_STATE(7019)] = 316023, - [SMALL_STATE(7020)] = 316078, - [SMALL_STATE(7021)] = 316139, - [SMALL_STATE(7022)] = 316200, - [SMALL_STATE(7023)] = 316261, - [SMALL_STATE(7024)] = 316322, - [SMALL_STATE(7025)] = 316383, - [SMALL_STATE(7026)] = 316444, - [SMALL_STATE(7027)] = 316505, - [SMALL_STATE(7028)] = 316566, - [SMALL_STATE(7029)] = 316627, - [SMALL_STATE(7030)] = 316688, - [SMALL_STATE(7031)] = 316749, - [SMALL_STATE(7032)] = 316788, - [SMALL_STATE(7033)] = 316849, - [SMALL_STATE(7034)] = 316888, - [SMALL_STATE(7035)] = 316949, - [SMALL_STATE(7036)] = 317010, - [SMALL_STATE(7037)] = 317071, - [SMALL_STATE(7038)] = 317104, - [SMALL_STATE(7039)] = 317165, - [SMALL_STATE(7040)] = 317226, - [SMALL_STATE(7041)] = 317287, - [SMALL_STATE(7042)] = 317348, - [SMALL_STATE(7043)] = 317409, - [SMALL_STATE(7044)] = 317448, - [SMALL_STATE(7045)] = 317509, - [SMALL_STATE(7046)] = 317570, - [SMALL_STATE(7047)] = 317631, - [SMALL_STATE(7048)] = 317692, - [SMALL_STATE(7049)] = 317753, - [SMALL_STATE(7050)] = 317814, - [SMALL_STATE(7051)] = 317875, - [SMALL_STATE(7052)] = 317936, - [SMALL_STATE(7053)] = 317997, - [SMALL_STATE(7054)] = 318026, - [SMALL_STATE(7055)] = 318087, - [SMALL_STATE(7056)] = 318148, - [SMALL_STATE(7057)] = 318209, - [SMALL_STATE(7058)] = 318270, - [SMALL_STATE(7059)] = 318315, - [SMALL_STATE(7060)] = 318376, - [SMALL_STATE(7061)] = 318437, - [SMALL_STATE(7062)] = 318498, - [SMALL_STATE(7063)] = 318527, - [SMALL_STATE(7064)] = 318588, - [SMALL_STATE(7065)] = 318649, - [SMALL_STATE(7066)] = 318710, - [SMALL_STATE(7067)] = 318749, - [SMALL_STATE(7068)] = 318810, - [SMALL_STATE(7069)] = 318852, - [SMALL_STATE(7070)] = 318908, - [SMALL_STATE(7071)] = 318950, - [SMALL_STATE(7072)] = 318992, - [SMALL_STATE(7073)] = 319034, - [SMALL_STATE(7074)] = 319076, - [SMALL_STATE(7075)] = 319118, - [SMALL_STATE(7076)] = 319160, - [SMALL_STATE(7077)] = 319190, - [SMALL_STATE(7078)] = 319232, - [SMALL_STATE(7079)] = 319284, - [SMALL_STATE(7080)] = 319336, - [SMALL_STATE(7081)] = 319378, - [SMALL_STATE(7082)] = 319406, - [SMALL_STATE(7083)] = 319448, - [SMALL_STATE(7084)] = 319490, - [SMALL_STATE(7085)] = 319518, - [SMALL_STATE(7086)] = 319560, - [SMALL_STATE(7087)] = 319602, - [SMALL_STATE(7088)] = 319630, - [SMALL_STATE(7089)] = 319686, - [SMALL_STATE(7090)] = 319738, - [SMALL_STATE(7091)] = 319780, - [SMALL_STATE(7092)] = 319808, - [SMALL_STATE(7093)] = 319860, - [SMALL_STATE(7094)] = 319888, - [SMALL_STATE(7095)] = 319930, - [SMALL_STATE(7096)] = 319986, - [SMALL_STATE(7097)] = 320014, - [SMALL_STATE(7098)] = 320070, - [SMALL_STATE(7099)] = 320112, - [SMALL_STATE(7100)] = 320154, - [SMALL_STATE(7101)] = 320196, - [SMALL_STATE(7102)] = 320224, - [SMALL_STATE(7103)] = 320280, - [SMALL_STATE(7104)] = 320322, - [SMALL_STATE(7105)] = 320364, - [SMALL_STATE(7106)] = 320406, - [SMALL_STATE(7107)] = 320434, - [SMALL_STATE(7108)] = 320476, - [SMALL_STATE(7109)] = 320518, - [SMALL_STATE(7110)] = 320550, - [SMALL_STATE(7111)] = 320578, - [SMALL_STATE(7112)] = 320606, - [SMALL_STATE(7113)] = 320648, - [SMALL_STATE(7114)] = 320700, - [SMALL_STATE(7115)] = 320742, - [SMALL_STATE(7116)] = 320798, - [SMALL_STATE(7117)] = 320840, - [SMALL_STATE(7118)] = 320892, - [SMALL_STATE(7119)] = 320920, - [SMALL_STATE(7120)] = 320962, - [SMALL_STATE(7121)] = 321014, - [SMALL_STATE(7122)] = 321056, - [SMALL_STATE(7123)] = 321098, - [SMALL_STATE(7124)] = 321140, - [SMALL_STATE(7125)] = 321182, - [SMALL_STATE(7126)] = 321224, - [SMALL_STATE(7127)] = 321266, - [SMALL_STATE(7128)] = 321308, - [SMALL_STATE(7129)] = 321360, - [SMALL_STATE(7130)] = 321412, - [SMALL_STATE(7131)] = 321454, - [SMALL_STATE(7132)] = 321496, - [SMALL_STATE(7133)] = 321538, - [SMALL_STATE(7134)] = 321566, - [SMALL_STATE(7135)] = 321618, - [SMALL_STATE(7136)] = 321646, - [SMALL_STATE(7137)] = 321674, - [SMALL_STATE(7138)] = 321720, - [SMALL_STATE(7139)] = 321772, - [SMALL_STATE(7140)] = 321814, - [SMALL_STATE(7141)] = 321842, - [SMALL_STATE(7142)] = 321870, - [SMALL_STATE(7143)] = 321912, - [SMALL_STATE(7144)] = 321954, - [SMALL_STATE(7145)] = 322010, - [SMALL_STATE(7146)] = 322052, - [SMALL_STATE(7147)] = 322108, - [SMALL_STATE(7148)] = 322150, - [SMALL_STATE(7149)] = 322206, - [SMALL_STATE(7150)] = 322234, - [SMALL_STATE(7151)] = 322276, - [SMALL_STATE(7152)] = 322318, - [SMALL_STATE(7153)] = 322360, - [SMALL_STATE(7154)] = 322402, - [SMALL_STATE(7155)] = 322444, - [SMALL_STATE(7156)] = 322484, - [SMALL_STATE(7157)] = 322526, - [SMALL_STATE(7158)] = 322568, - [SMALL_STATE(7159)] = 322596, - [SMALL_STATE(7160)] = 322638, - [SMALL_STATE(7161)] = 322690, - [SMALL_STATE(7162)] = 322732, - [SMALL_STATE(7163)] = 322784, - [SMALL_STATE(7164)] = 322826, - [SMALL_STATE(7165)] = 322868, - [SMALL_STATE(7166)] = 322920, - [SMALL_STATE(7167)] = 322962, - [SMALL_STATE(7168)] = 323004, - [SMALL_STATE(7169)] = 323050, - [SMALL_STATE(7170)] = 323102, - [SMALL_STATE(7171)] = 323144, - [SMALL_STATE(7172)] = 323188, - [SMALL_STATE(7173)] = 323240, - [SMALL_STATE(7174)] = 323282, - [SMALL_STATE(7175)] = 323318, - [SMALL_STATE(7176)] = 323368, - [SMALL_STATE(7177)] = 323402, - [SMALL_STATE(7178)] = 323444, - [SMALL_STATE(7179)] = 323492, - [SMALL_STATE(7180)] = 323521, - [SMALL_STATE(7181)] = 323568, - [SMALL_STATE(7182)] = 323595, - [SMALL_STATE(7183)] = 323640, - [SMALL_STATE(7184)] = 323667, - [SMALL_STATE(7185)] = 323712, - [SMALL_STATE(7186)] = 323753, - [SMALL_STATE(7187)] = 323780, - [SMALL_STATE(7188)] = 323825, - [SMALL_STATE(7189)] = 323870, - [SMALL_STATE(7190)] = 323911, - [SMALL_STATE(7191)] = 323952, - [SMALL_STATE(7192)] = 323997, - [SMALL_STATE(7193)] = 324028, - [SMALL_STATE(7194)] = 324075, - [SMALL_STATE(7195)] = 324120, - [SMALL_STATE(7196)] = 324147, - [SMALL_STATE(7197)] = 324192, - [SMALL_STATE(7198)] = 324237, - [SMALL_STATE(7199)] = 324268, - [SMALL_STATE(7200)] = 324321, - [SMALL_STATE(7201)] = 324364, - [SMALL_STATE(7202)] = 324411, - [SMALL_STATE(7203)] = 324458, - [SMALL_STATE(7204)] = 324485, - [SMALL_STATE(7205)] = 324524, - [SMALL_STATE(7206)] = 324571, - [SMALL_STATE(7207)] = 324612, - [SMALL_STATE(7208)] = 324657, - [SMALL_STATE(7209)] = 324702, - [SMALL_STATE(7210)] = 324739, - [SMALL_STATE(7211)] = 324772, - [SMALL_STATE(7212)] = 324819, - [SMALL_STATE(7213)] = 324872, - [SMALL_STATE(7214)] = 324913, - [SMALL_STATE(7215)] = 324962, - [SMALL_STATE(7216)] = 324993, - [SMALL_STATE(7217)] = 325046, - [SMALL_STATE(7218)] = 325091, - [SMALL_STATE(7219)] = 325136, - [SMALL_STATE(7220)] = 325181, - [SMALL_STATE(7221)] = 325222, - [SMALL_STATE(7222)] = 325257, - [SMALL_STATE(7223)] = 325302, - [SMALL_STATE(7224)] = 325355, - [SMALL_STATE(7225)] = 325382, - [SMALL_STATE(7226)] = 325427, - [SMALL_STATE(7227)] = 325468, - [SMALL_STATE(7228)] = 325511, - [SMALL_STATE(7229)] = 325552, - [SMALL_STATE(7230)] = 325597, - [SMALL_STATE(7231)] = 325624, - [SMALL_STATE(7232)] = 325665, - [SMALL_STATE(7233)] = 325692, - [SMALL_STATE(7234)] = 325719, - [SMALL_STATE(7235)] = 325764, - [SMALL_STATE(7236)] = 325791, - [SMALL_STATE(7237)] = 325838, - [SMALL_STATE(7238)] = 325865, - [SMALL_STATE(7239)] = 325912, - [SMALL_STATE(7240)] = 325961, - [SMALL_STATE(7241)] = 326008, - [SMALL_STATE(7242)] = 326055, - [SMALL_STATE(7243)] = 326093, - [SMALL_STATE(7244)] = 326131, - [SMALL_STATE(7245)] = 326183, - [SMALL_STATE(7246)] = 326221, - [SMALL_STATE(7247)] = 326263, - [SMALL_STATE(7248)] = 326301, - [SMALL_STATE(7249)] = 326339, - [SMALL_STATE(7250)] = 326377, - [SMALL_STATE(7251)] = 326415, - [SMALL_STATE(7252)] = 326453, - [SMALL_STATE(7253)] = 326490, - [SMALL_STATE(7254)] = 326539, - [SMALL_STATE(7255)] = 326588, - [SMALL_STATE(7256)] = 326637, - [SMALL_STATE(7257)] = 326686, - [SMALL_STATE(7258)] = 326713, - [SMALL_STATE(7259)] = 326750, - [SMALL_STATE(7260)] = 326799, - [SMALL_STATE(7261)] = 326836, - [SMALL_STATE(7262)] = 326885, - [SMALL_STATE(7263)] = 326934, - [SMALL_STATE(7264)] = 326983, - [SMALL_STATE(7265)] = 327008, - [SMALL_STATE(7266)] = 327057, - [SMALL_STATE(7267)] = 327106, - [SMALL_STATE(7268)] = 327131, - [SMALL_STATE(7269)] = 327168, - [SMALL_STATE(7270)] = 327195, - [SMALL_STATE(7271)] = 327220, - [SMALL_STATE(7272)] = 327257, - [SMALL_STATE(7273)] = 327282, - [SMALL_STATE(7274)] = 327307, - [SMALL_STATE(7275)] = 327332, - [SMALL_STATE(7276)] = 327357, - [SMALL_STATE(7277)] = 327386, - [SMALL_STATE(7278)] = 327423, - [SMALL_STATE(7279)] = 327448, - [SMALL_STATE(7280)] = 327485, - [SMALL_STATE(7281)] = 327510, - [SMALL_STATE(7282)] = 327547, - [SMALL_STATE(7283)] = 327574, - [SMALL_STATE(7284)] = 327623, - [SMALL_STATE(7285)] = 327672, - [SMALL_STATE(7286)] = 327709, - [SMALL_STATE(7287)] = 327746, - [SMALL_STATE(7288)] = 327795, - [SMALL_STATE(7289)] = 327844, - [SMALL_STATE(7290)] = 327869, - [SMALL_STATE(7291)] = 327894, - [SMALL_STATE(7292)] = 327931, - [SMALL_STATE(7293)] = 327968, - [SMALL_STATE(7294)] = 327993, - [SMALL_STATE(7295)] = 328042, - [SMALL_STATE(7296)] = 328067, - [SMALL_STATE(7297)] = 328092, - [SMALL_STATE(7298)] = 328117, - [SMALL_STATE(7299)] = 328142, - [SMALL_STATE(7300)] = 328179, - [SMALL_STATE(7301)] = 328216, - [SMALL_STATE(7302)] = 328265, - [SMALL_STATE(7303)] = 328302, - [SMALL_STATE(7304)] = 328339, - [SMALL_STATE(7305)] = 328376, - [SMALL_STATE(7306)] = 328417, - [SMALL_STATE(7307)] = 328466, - [SMALL_STATE(7308)] = 328503, - [SMALL_STATE(7309)] = 328540, - [SMALL_STATE(7310)] = 328577, - [SMALL_STATE(7311)] = 328602, - [SMALL_STATE(7312)] = 328639, - [SMALL_STATE(7313)] = 328676, - [SMALL_STATE(7314)] = 328725, - [SMALL_STATE(7315)] = 328774, - [SMALL_STATE(7316)] = 328811, - [SMALL_STATE(7317)] = 328848, - [SMALL_STATE(7318)] = 328885, - [SMALL_STATE(7319)] = 328922, - [SMALL_STATE(7320)] = 328959, - [SMALL_STATE(7321)] = 328996, - [SMALL_STATE(7322)] = 329045, - [SMALL_STATE(7323)] = 329082, - [SMALL_STATE(7324)] = 329119, - [SMALL_STATE(7325)] = 329144, - [SMALL_STATE(7326)] = 329181, - [SMALL_STATE(7327)] = 329230, - [SMALL_STATE(7328)] = 329279, - [SMALL_STATE(7329)] = 329328, - [SMALL_STATE(7330)] = 329377, - [SMALL_STATE(7331)] = 329426, - [SMALL_STATE(7332)] = 329475, - [SMALL_STATE(7333)] = 329524, - [SMALL_STATE(7334)] = 329549, - [SMALL_STATE(7335)] = 329598, - [SMALL_STATE(7336)] = 329623, - [SMALL_STATE(7337)] = 329672, - [SMALL_STATE(7338)] = 329721, - [SMALL_STATE(7339)] = 329746, - [SMALL_STATE(7340)] = 329797, - [SMALL_STATE(7341)] = 329846, - [SMALL_STATE(7342)] = 329883, - [SMALL_STATE(7343)] = 329905, - [SMALL_STATE(7344)] = 329945, - [SMALL_STATE(7345)] = 329985, - [SMALL_STATE(7346)] = 330007, - [SMALL_STATE(7347)] = 330039, - [SMALL_STATE(7348)] = 330061, - [SMALL_STATE(7349)] = 330095, - [SMALL_STATE(7350)] = 330117, - [SMALL_STATE(7351)] = 330147, - [SMALL_STATE(7352)] = 330187, - [SMALL_STATE(7353)] = 330221, - [SMALL_STATE(7354)] = 330253, - [SMALL_STATE(7355)] = 330283, - [SMALL_STATE(7356)] = 330317, - [SMALL_STATE(7357)] = 330339, - [SMALL_STATE(7358)] = 330361, - [SMALL_STATE(7359)] = 330387, - [SMALL_STATE(7360)] = 330409, - [SMALL_STATE(7361)] = 330449, - [SMALL_STATE(7362)] = 330483, - [SMALL_STATE(7363)] = 330513, - [SMALL_STATE(7364)] = 330535, - [SMALL_STATE(7365)] = 330575, - [SMALL_STATE(7366)] = 330615, - [SMALL_STATE(7367)] = 330655, - [SMALL_STATE(7368)] = 330695, - [SMALL_STATE(7369)] = 330725, - [SMALL_STATE(7370)] = 330747, - [SMALL_STATE(7371)] = 330777, - [SMALL_STATE(7372)] = 330799, - [SMALL_STATE(7373)] = 330839, - [SMALL_STATE(7374)] = 330861, - [SMALL_STATE(7375)] = 330891, - [SMALL_STATE(7376)] = 330931, - [SMALL_STATE(7377)] = 330961, - [SMALL_STATE(7378)] = 330983, - [SMALL_STATE(7379)] = 331015, - [SMALL_STATE(7380)] = 331045, - [SMALL_STATE(7381)] = 331075, - [SMALL_STATE(7382)] = 331107, - [SMALL_STATE(7383)] = 331141, - [SMALL_STATE(7384)] = 331175, - [SMALL_STATE(7385)] = 331215, - [SMALL_STATE(7386)] = 331245, - [SMALL_STATE(7387)] = 331289, - [SMALL_STATE(7388)] = 331329, - [SMALL_STATE(7389)] = 331359, - [SMALL_STATE(7390)] = 331385, - [SMALL_STATE(7391)] = 331415, - [SMALL_STATE(7392)] = 331447, - [SMALL_STATE(7393)] = 331487, - [SMALL_STATE(7394)] = 331517, - [SMALL_STATE(7395)] = 331557, - [SMALL_STATE(7396)] = 331589, - [SMALL_STATE(7397)] = 331619, - [SMALL_STATE(7398)] = 331659, - [SMALL_STATE(7399)] = 331689, - [SMALL_STATE(7400)] = 331711, - [SMALL_STATE(7401)] = 331733, - [SMALL_STATE(7402)] = 331757, - [SMALL_STATE(7403)] = 331797, - [SMALL_STATE(7404)] = 331819, - [SMALL_STATE(7405)] = 331859, - [SMALL_STATE(7406)] = 331899, - [SMALL_STATE(7407)] = 331929, - [SMALL_STATE(7408)] = 331969, - [SMALL_STATE(7409)] = 332001, - [SMALL_STATE(7410)] = 332023, - [SMALL_STATE(7411)] = 332055, - [SMALL_STATE(7412)] = 332089, - [SMALL_STATE(7413)] = 332121, - [SMALL_STATE(7414)] = 332161, - [SMALL_STATE(7415)] = 332195, - [SMALL_STATE(7416)] = 332227, - [SMALL_STATE(7417)] = 332267, - [SMALL_STATE(7418)] = 332307, - [SMALL_STATE(7419)] = 332347, - [SMALL_STATE(7420)] = 332377, - [SMALL_STATE(7421)] = 332417, - [SMALL_STATE(7422)] = 332438, - [SMALL_STATE(7423)] = 332459, - [SMALL_STATE(7424)] = 332502, - [SMALL_STATE(7425)] = 332545, - [SMALL_STATE(7426)] = 332568, - [SMALL_STATE(7427)] = 332611, - [SMALL_STATE(7428)] = 332642, - [SMALL_STATE(7429)] = 332673, - [SMALL_STATE(7430)] = 332714, - [SMALL_STATE(7431)] = 332745, - [SMALL_STATE(7432)] = 332776, - [SMALL_STATE(7433)] = 332819, - [SMALL_STATE(7434)] = 332862, - [SMALL_STATE(7435)] = 332893, - [SMALL_STATE(7436)] = 332922, - [SMALL_STATE(7437)] = 332953, - [SMALL_STATE(7438)] = 332984, - [SMALL_STATE(7439)] = 333013, - [SMALL_STATE(7440)] = 333042, - [SMALL_STATE(7441)] = 333073, - [SMALL_STATE(7442)] = 333116, - [SMALL_STATE(7443)] = 333145, - [SMALL_STATE(7444)] = 333174, - [SMALL_STATE(7445)] = 333195, - [SMALL_STATE(7446)] = 333226, - [SMALL_STATE(7447)] = 333257, - [SMALL_STATE(7448)] = 333300, - [SMALL_STATE(7449)] = 333331, - [SMALL_STATE(7450)] = 333360, - [SMALL_STATE(7451)] = 333381, - [SMALL_STATE(7452)] = 333410, - [SMALL_STATE(7453)] = 333443, - [SMALL_STATE(7454)] = 333474, - [SMALL_STATE(7455)] = 333505, - [SMALL_STATE(7456)] = 333548, - [SMALL_STATE(7457)] = 333579, - [SMALL_STATE(7458)] = 333610, - [SMALL_STATE(7459)] = 333653, - [SMALL_STATE(7460)] = 333684, - [SMALL_STATE(7461)] = 333705, - [SMALL_STATE(7462)] = 333736, - [SMALL_STATE(7463)] = 333757, - [SMALL_STATE(7464)] = 333788, - [SMALL_STATE(7465)] = 333809, - [SMALL_STATE(7466)] = 333852, - [SMALL_STATE(7467)] = 333873, - [SMALL_STATE(7468)] = 333894, - [SMALL_STATE(7469)] = 333915, - [SMALL_STATE(7470)] = 333946, - [SMALL_STATE(7471)] = 333967, - [SMALL_STATE(7472)] = 334008, - [SMALL_STATE(7473)] = 334029, - [SMALL_STATE(7474)] = 334072, - [SMALL_STATE(7475)] = 334103, - [SMALL_STATE(7476)] = 334126, - [SMALL_STATE(7477)] = 334157, - [SMALL_STATE(7478)] = 334178, - [SMALL_STATE(7479)] = 334209, - [SMALL_STATE(7480)] = 334230, - [SMALL_STATE(7481)] = 334273, - [SMALL_STATE(7482)] = 334304, - [SMALL_STATE(7483)] = 334335, - [SMALL_STATE(7484)] = 334356, - [SMALL_STATE(7485)] = 334397, - [SMALL_STATE(7486)] = 334428, - [SMALL_STATE(7487)] = 334449, - [SMALL_STATE(7488)] = 334478, - [SMALL_STATE(7489)] = 334509, - [SMALL_STATE(7490)] = 334542, - [SMALL_STATE(7491)] = 334573, - [SMALL_STATE(7492)] = 334594, - [SMALL_STATE(7493)] = 334637, - [SMALL_STATE(7494)] = 334668, - [SMALL_STATE(7495)] = 334711, - [SMALL_STATE(7496)] = 334732, - [SMALL_STATE(7497)] = 334763, - [SMALL_STATE(7498)] = 334784, - [SMALL_STATE(7499)] = 334817, - [SMALL_STATE(7500)] = 334860, - [SMALL_STATE(7501)] = 334891, - [SMALL_STATE(7502)] = 334924, - [SMALL_STATE(7503)] = 334955, - [SMALL_STATE(7504)] = 334986, - [SMALL_STATE(7505)] = 335029, - [SMALL_STATE(7506)] = 335050, - [SMALL_STATE(7507)] = 335071, - [SMALL_STATE(7508)] = 335102, - [SMALL_STATE(7509)] = 335133, - [SMALL_STATE(7510)] = 335176, - [SMALL_STATE(7511)] = 335219, - [SMALL_STATE(7512)] = 335250, - [SMALL_STATE(7513)] = 335281, - [SMALL_STATE(7514)] = 335314, - [SMALL_STATE(7515)] = 335344, - [SMALL_STATE(7516)] = 335374, - [SMALL_STATE(7517)] = 335416, - [SMALL_STATE(7518)] = 335458, - [SMALL_STATE(7519)] = 335500, - [SMALL_STATE(7520)] = 335530, - [SMALL_STATE(7521)] = 335558, - [SMALL_STATE(7522)] = 335590, - [SMALL_STATE(7523)] = 335620, - [SMALL_STATE(7524)] = 335662, - [SMALL_STATE(7525)] = 335690, - [SMALL_STATE(7526)] = 335732, - [SMALL_STATE(7527)] = 335762, - [SMALL_STATE(7528)] = 335792, - [SMALL_STATE(7529)] = 335822, - [SMALL_STATE(7530)] = 335852, - [SMALL_STATE(7531)] = 335894, - [SMALL_STATE(7532)] = 335924, - [SMALL_STATE(7533)] = 335966, - [SMALL_STATE(7534)] = 335996, - [SMALL_STATE(7535)] = 336030, - [SMALL_STATE(7536)] = 336058, - [SMALL_STATE(7537)] = 336090, - [SMALL_STATE(7538)] = 336122, - [SMALL_STATE(7539)] = 336152, - [SMALL_STATE(7540)] = 336186, - [SMALL_STATE(7541)] = 336216, - [SMALL_STATE(7542)] = 336246, - [SMALL_STATE(7543)] = 336276, - [SMALL_STATE(7544)] = 336318, - [SMALL_STATE(7545)] = 336348, - [SMALL_STATE(7546)] = 336390, - [SMALL_STATE(7547)] = 336432, - [SMALL_STATE(7548)] = 336474, - [SMALL_STATE(7549)] = 336504, - [SMALL_STATE(7550)] = 336534, - [SMALL_STATE(7551)] = 336564, - [SMALL_STATE(7552)] = 336594, - [SMALL_STATE(7553)] = 336626, - [SMALL_STATE(7554)] = 336654, - [SMALL_STATE(7555)] = 336684, - [SMALL_STATE(7556)] = 336714, - [SMALL_STATE(7557)] = 336742, - [SMALL_STATE(7558)] = 336774, - [SMALL_STATE(7559)] = 336804, - [SMALL_STATE(7560)] = 336834, - [SMALL_STATE(7561)] = 336876, - [SMALL_STATE(7562)] = 336918, - [SMALL_STATE(7563)] = 336952, - [SMALL_STATE(7564)] = 336994, - [SMALL_STATE(7565)] = 337026, - [SMALL_STATE(7566)] = 337054, - [SMALL_STATE(7567)] = 337086, - [SMALL_STATE(7568)] = 337116, - [SMALL_STATE(7569)] = 337144, - [SMALL_STATE(7570)] = 337174, - [SMALL_STATE(7571)] = 337202, - [SMALL_STATE(7572)] = 337232, - [SMALL_STATE(7573)] = 337260, - [SMALL_STATE(7574)] = 337288, - [SMALL_STATE(7575)] = 337316, - [SMALL_STATE(7576)] = 337346, - [SMALL_STATE(7577)] = 337374, - [SMALL_STATE(7578)] = 337402, - [SMALL_STATE(7579)] = 337430, - [SMALL_STATE(7580)] = 337458, - [SMALL_STATE(7581)] = 337500, - [SMALL_STATE(7582)] = 337528, - [SMALL_STATE(7583)] = 337570, - [SMALL_STATE(7584)] = 337612, - [SMALL_STATE(7585)] = 337654, - [SMALL_STATE(7586)] = 337684, - [SMALL_STATE(7587)] = 337726, - [SMALL_STATE(7588)] = 337758, - [SMALL_STATE(7589)] = 337800, - [SMALL_STATE(7590)] = 337842, - [SMALL_STATE(7591)] = 337874, - [SMALL_STATE(7592)] = 337906, - [SMALL_STATE(7593)] = 337930, - [SMALL_STATE(7594)] = 337960, - [SMALL_STATE(7595)] = 337994, - [SMALL_STATE(7596)] = 338036, - [SMALL_STATE(7597)] = 338064, - [SMALL_STATE(7598)] = 338098, - [SMALL_STATE(7599)] = 338140, - [SMALL_STATE(7600)] = 338174, - [SMALL_STATE(7601)] = 338204, - [SMALL_STATE(7602)] = 338246, - [SMALL_STATE(7603)] = 338280, - [SMALL_STATE(7604)] = 338314, - [SMALL_STATE(7605)] = 338344, - [SMALL_STATE(7606)] = 338372, - [SMALL_STATE(7607)] = 338401, - [SMALL_STATE(7608)] = 338436, - [SMALL_STATE(7609)] = 338457, - [SMALL_STATE(7610)] = 338492, - [SMALL_STATE(7611)] = 338519, - [SMALL_STATE(7612)] = 338546, - [SMALL_STATE(7613)] = 338581, - [SMALL_STATE(7614)] = 338616, - [SMALL_STATE(7615)] = 338653, - [SMALL_STATE(7616)] = 338688, - [SMALL_STATE(7617)] = 338723, - [SMALL_STATE(7618)] = 338750, - [SMALL_STATE(7619)] = 338785, - [SMALL_STATE(7620)] = 338820, - [SMALL_STATE(7621)] = 338841, - [SMALL_STATE(7622)] = 338862, - [SMALL_STATE(7623)] = 338897, - [SMALL_STATE(7624)] = 338918, - [SMALL_STATE(7625)] = 338953, - [SMALL_STATE(7626)] = 338990, - [SMALL_STATE(7627)] = 339027, - [SMALL_STATE(7628)] = 339062, - [SMALL_STATE(7629)] = 339097, - [SMALL_STATE(7630)] = 339118, - [SMALL_STATE(7631)] = 339143, - [SMALL_STATE(7632)] = 339178, - [SMALL_STATE(7633)] = 339199, - [SMALL_STATE(7634)] = 339220, - [SMALL_STATE(7635)] = 339241, - [SMALL_STATE(7636)] = 339278, - [SMALL_STATE(7637)] = 339313, - [SMALL_STATE(7638)] = 339334, - [SMALL_STATE(7639)] = 339359, - [SMALL_STATE(7640)] = 339384, - [SMALL_STATE(7641)] = 339419, - [SMALL_STATE(7642)] = 339440, - [SMALL_STATE(7643)] = 339467, - [SMALL_STATE(7644)] = 339502, - [SMALL_STATE(7645)] = 339537, - [SMALL_STATE(7646)] = 339572, - [SMALL_STATE(7647)] = 339607, - [SMALL_STATE(7648)] = 339642, - [SMALL_STATE(7649)] = 339677, - [SMALL_STATE(7650)] = 339702, - [SMALL_STATE(7651)] = 339737, - [SMALL_STATE(7652)] = 339762, - [SMALL_STATE(7653)] = 339783, - [SMALL_STATE(7654)] = 339808, - [SMALL_STATE(7655)] = 339845, - [SMALL_STATE(7656)] = 339880, - [SMALL_STATE(7657)] = 339917, - [SMALL_STATE(7658)] = 339952, - [SMALL_STATE(7659)] = 339989, - [SMALL_STATE(7660)] = 340010, - [SMALL_STATE(7661)] = 340035, - [SMALL_STATE(7662)] = 340056, - [SMALL_STATE(7663)] = 340093, - [SMALL_STATE(7664)] = 340118, - [SMALL_STATE(7665)] = 340139, - [SMALL_STATE(7666)] = 340160, - [SMALL_STATE(7667)] = 340181, - [SMALL_STATE(7668)] = 340216, - [SMALL_STATE(7669)] = 340243, - [SMALL_STATE(7670)] = 340280, - [SMALL_STATE(7671)] = 340317, - [SMALL_STATE(7672)] = 340338, - [SMALL_STATE(7673)] = 340373, - [SMALL_STATE(7674)] = 340410, - [SMALL_STATE(7675)] = 340447, - [SMALL_STATE(7676)] = 340474, - [SMALL_STATE(7677)] = 340499, - [SMALL_STATE(7678)] = 340524, - [SMALL_STATE(7679)] = 340559, - [SMALL_STATE(7680)] = 340594, - [SMALL_STATE(7681)] = 340629, - [SMALL_STATE(7682)] = 340666, - [SMALL_STATE(7683)] = 340687, - [SMALL_STATE(7684)] = 340714, - [SMALL_STATE(7685)] = 340735, - [SMALL_STATE(7686)] = 340756, - [SMALL_STATE(7687)] = 340781, - [SMALL_STATE(7688)] = 340816, - [SMALL_STATE(7689)] = 340851, - [SMALL_STATE(7690)] = 340872, - [SMALL_STATE(7691)] = 340909, - [SMALL_STATE(7692)] = 340934, - [SMALL_STATE(7693)] = 340959, - [SMALL_STATE(7694)] = 340980, - [SMALL_STATE(7695)] = 341017, - [SMALL_STATE(7696)] = 341052, - [SMALL_STATE(7697)] = 341089, - [SMALL_STATE(7698)] = 341116, - [SMALL_STATE(7699)] = 341137, - [SMALL_STATE(7700)] = 341174, - [SMALL_STATE(7701)] = 341209, - [SMALL_STATE(7702)] = 341246, - [SMALL_STATE(7703)] = 341284, - [SMALL_STATE(7704)] = 341308, - [SMALL_STATE(7705)] = 341346, - [SMALL_STATE(7706)] = 341384, - [SMALL_STATE(7707)] = 341418, - [SMALL_STATE(7708)] = 341438, - [SMALL_STATE(7709)] = 341476, - [SMALL_STATE(7710)] = 341496, - [SMALL_STATE(7711)] = 341518, - [SMALL_STATE(7712)] = 341538, - [SMALL_STATE(7713)] = 341572, - [SMALL_STATE(7714)] = 341610, - [SMALL_STATE(7715)] = 341634, - [SMALL_STATE(7716)] = 341658, - [SMALL_STATE(7717)] = 341696, - [SMALL_STATE(7718)] = 341734, - [SMALL_STATE(7719)] = 341772, - [SMALL_STATE(7720)] = 341810, - [SMALL_STATE(7721)] = 341844, - [SMALL_STATE(7722)] = 341878, - [SMALL_STATE(7723)] = 341912, - [SMALL_STATE(7724)] = 341950, - [SMALL_STATE(7725)] = 341974, - [SMALL_STATE(7726)] = 342012, - [SMALL_STATE(7727)] = 342038, - [SMALL_STATE(7728)] = 342076, - [SMALL_STATE(7729)] = 342104, - [SMALL_STATE(7730)] = 342142, - [SMALL_STATE(7731)] = 342170, - [SMALL_STATE(7732)] = 342198, - [SMALL_STATE(7733)] = 342236, - [SMALL_STATE(7734)] = 342270, - [SMALL_STATE(7735)] = 342298, - [SMALL_STATE(7736)] = 342326, - [SMALL_STATE(7737)] = 342354, - [SMALL_STATE(7738)] = 342392, - [SMALL_STATE(7739)] = 342420, - [SMALL_STATE(7740)] = 342448, - [SMALL_STATE(7741)] = 342476, - [SMALL_STATE(7742)] = 342514, - [SMALL_STATE(7743)] = 342542, - [SMALL_STATE(7744)] = 342580, - [SMALL_STATE(7745)] = 342618, - [SMALL_STATE(7746)] = 342656, - [SMALL_STATE(7747)] = 342690, - [SMALL_STATE(7748)] = 342728, - [SMALL_STATE(7749)] = 342766, - [SMALL_STATE(7750)] = 342804, - [SMALL_STATE(7751)] = 342824, - [SMALL_STATE(7752)] = 342858, - [SMALL_STATE(7753)] = 342896, - [SMALL_STATE(7754)] = 342934, - [SMALL_STATE(7755)] = 342972, - [SMALL_STATE(7756)] = 343010, - [SMALL_STATE(7757)] = 343044, - [SMALL_STATE(7758)] = 343082, - [SMALL_STATE(7759)] = 343120, - [SMALL_STATE(7760)] = 343142, - [SMALL_STATE(7761)] = 343176, - [SMALL_STATE(7762)] = 343207, - [SMALL_STATE(7763)] = 343234, - [SMALL_STATE(7764)] = 343267, - [SMALL_STATE(7765)] = 343294, - [SMALL_STATE(7766)] = 343325, - [SMALL_STATE(7767)] = 343356, - [SMALL_STATE(7768)] = 343387, - [SMALL_STATE(7769)] = 343420, - [SMALL_STATE(7770)] = 343439, - [SMALL_STATE(7771)] = 343472, - [SMALL_STATE(7772)] = 343491, - [SMALL_STATE(7773)] = 343522, - [SMALL_STATE(7774)] = 343549, - [SMALL_STATE(7775)] = 343582, - [SMALL_STATE(7776)] = 343601, - [SMALL_STATE(7777)] = 343626, - [SMALL_STATE(7778)] = 343657, - [SMALL_STATE(7779)] = 343682, - [SMALL_STATE(7780)] = 343705, - [SMALL_STATE(7781)] = 343724, - [SMALL_STATE(7782)] = 343757, - [SMALL_STATE(7783)] = 343782, - [SMALL_STATE(7784)] = 343815, - [SMALL_STATE(7785)] = 343842, - [SMALL_STATE(7786)] = 343873, - [SMALL_STATE(7787)] = 343906, - [SMALL_STATE(7788)] = 343939, - [SMALL_STATE(7789)] = 343964, - [SMALL_STATE(7790)] = 343989, - [SMALL_STATE(7791)] = 344022, - [SMALL_STATE(7792)] = 344055, - [SMALL_STATE(7793)] = 344086, - [SMALL_STATE(7794)] = 344119, - [SMALL_STATE(7795)] = 344150, - [SMALL_STATE(7796)] = 344183, - [SMALL_STATE(7797)] = 344206, - [SMALL_STATE(7798)] = 344225, - [SMALL_STATE(7799)] = 344252, - [SMALL_STATE(7800)] = 344283, - [SMALL_STATE(7801)] = 344302, - [SMALL_STATE(7802)] = 344321, - [SMALL_STATE(7803)] = 344354, - [SMALL_STATE(7804)] = 344385, - [SMALL_STATE(7805)] = 344410, - [SMALL_STATE(7806)] = 344443, - [SMALL_STATE(7807)] = 344476, - [SMALL_STATE(7808)] = 344495, - [SMALL_STATE(7809)] = 344526, - [SMALL_STATE(7810)] = 344549, - [SMALL_STATE(7811)] = 344582, - [SMALL_STATE(7812)] = 344615, - [SMALL_STATE(7813)] = 344637, - [SMALL_STATE(7814)] = 344663, - [SMALL_STATE(7815)] = 344687, - [SMALL_STATE(7816)] = 344717, - [SMALL_STATE(7817)] = 344749, - [SMALL_STATE(7818)] = 344779, - [SMALL_STATE(7819)] = 344811, - [SMALL_STATE(7820)] = 344843, - [SMALL_STATE(7821)] = 344869, - [SMALL_STATE(7822)] = 344887, - [SMALL_STATE(7823)] = 344915, - [SMALL_STATE(7824)] = 344945, - [SMALL_STATE(7825)] = 344975, - [SMALL_STATE(7826)] = 344997, - [SMALL_STATE(7827)] = 345025, - [SMALL_STATE(7828)] = 345049, - [SMALL_STATE(7829)] = 345081, - [SMALL_STATE(7830)] = 345103, - [SMALL_STATE(7831)] = 345121, - [SMALL_STATE(7832)] = 345143, - [SMALL_STATE(7833)] = 345161, - [SMALL_STATE(7834)] = 345191, - [SMALL_STATE(7835)] = 345217, - [SMALL_STATE(7836)] = 345235, - [SMALL_STATE(7837)] = 345257, - [SMALL_STATE(7838)] = 345287, - [SMALL_STATE(7839)] = 345313, - [SMALL_STATE(7840)] = 345335, - [SMALL_STATE(7841)] = 345353, - [SMALL_STATE(7842)] = 345375, - [SMALL_STATE(7843)] = 345393, - [SMALL_STATE(7844)] = 345415, - [SMALL_STATE(7845)] = 345437, - [SMALL_STATE(7846)] = 345467, - [SMALL_STATE(7847)] = 345489, - [SMALL_STATE(7848)] = 345511, - [SMALL_STATE(7849)] = 345537, - [SMALL_STATE(7850)] = 345567, - [SMALL_STATE(7851)] = 345599, - [SMALL_STATE(7852)] = 345625, - [SMALL_STATE(7853)] = 345649, - [SMALL_STATE(7854)] = 345671, - [SMALL_STATE(7855)] = 345695, - [SMALL_STATE(7856)] = 345721, - [SMALL_STATE(7857)] = 345745, - [SMALL_STATE(7858)] = 345769, - [SMALL_STATE(7859)] = 345793, - [SMALL_STATE(7860)] = 345817, - [SMALL_STATE(7861)] = 345841, - [SMALL_STATE(7862)] = 345863, - [SMALL_STATE(7863)] = 345885, - [SMALL_STATE(7864)] = 345915, - [SMALL_STATE(7865)] = 345945, - [SMALL_STATE(7866)] = 345977, - [SMALL_STATE(7867)] = 345999, - [SMALL_STATE(7868)] = 346021, - [SMALL_STATE(7869)] = 346043, - [SMALL_STATE(7870)] = 346069, - [SMALL_STATE(7871)] = 346087, - [SMALL_STATE(7872)] = 346109, - [SMALL_STATE(7873)] = 346139, - [SMALL_STATE(7874)] = 346168, - [SMALL_STATE(7875)] = 346191, - [SMALL_STATE(7876)] = 346220, - [SMALL_STATE(7877)] = 346249, - [SMALL_STATE(7878)] = 346266, - [SMALL_STATE(7879)] = 346295, - [SMALL_STATE(7880)] = 346324, - [SMALL_STATE(7881)] = 346341, - [SMALL_STATE(7882)] = 346370, - [SMALL_STATE(7883)] = 346397, - [SMALL_STATE(7884)] = 346426, - [SMALL_STATE(7885)] = 346455, - [SMALL_STATE(7886)] = 346472, - [SMALL_STATE(7887)] = 346501, - [SMALL_STATE(7888)] = 346522, - [SMALL_STATE(7889)] = 346543, - [SMALL_STATE(7890)] = 346572, - [SMALL_STATE(7891)] = 346593, - [SMALL_STATE(7892)] = 346622, - [SMALL_STATE(7893)] = 346645, - [SMALL_STATE(7894)] = 346674, - [SMALL_STATE(7895)] = 346697, - [SMALL_STATE(7896)] = 346720, - [SMALL_STATE(7897)] = 346749, - [SMALL_STATE(7898)] = 346774, - [SMALL_STATE(7899)] = 346803, - [SMALL_STATE(7900)] = 346830, - [SMALL_STATE(7901)] = 346853, - [SMALL_STATE(7902)] = 346876, - [SMALL_STATE(7903)] = 346905, - [SMALL_STATE(7904)] = 346934, - [SMALL_STATE(7905)] = 346963, - [SMALL_STATE(7906)] = 346992, - [SMALL_STATE(7907)] = 347019, - [SMALL_STATE(7908)] = 347046, - [SMALL_STATE(7909)] = 347075, - [SMALL_STATE(7910)] = 347104, - [SMALL_STATE(7911)] = 347133, - [SMALL_STATE(7912)] = 347162, - [SMALL_STATE(7913)] = 347181, - [SMALL_STATE(7914)] = 347202, - [SMALL_STATE(7915)] = 347219, - [SMALL_STATE(7916)] = 347248, - [SMALL_STATE(7917)] = 347277, - [SMALL_STATE(7918)] = 347306, - [SMALL_STATE(7919)] = 347335, - [SMALL_STATE(7920)] = 347364, - [SMALL_STATE(7921)] = 347393, - [SMALL_STATE(7922)] = 347416, - [SMALL_STATE(7923)] = 347445, - [SMALL_STATE(7924)] = 347474, - [SMALL_STATE(7925)] = 347495, - [SMALL_STATE(7926)] = 347512, - [SMALL_STATE(7927)] = 347541, - [SMALL_STATE(7928)] = 347558, - [SMALL_STATE(7929)] = 347575, - [SMALL_STATE(7930)] = 347596, - [SMALL_STATE(7931)] = 347619, - [SMALL_STATE(7932)] = 347646, - [SMALL_STATE(7933)] = 347673, - [SMALL_STATE(7934)] = 347702, - [SMALL_STATE(7935)] = 347729, - [SMALL_STATE(7936)] = 347758, - [SMALL_STATE(7937)] = 347787, - [SMALL_STATE(7938)] = 347816, - [SMALL_STATE(7939)] = 347843, - [SMALL_STATE(7940)] = 347864, - [SMALL_STATE(7941)] = 347891, - [SMALL_STATE(7942)] = 347920, - [SMALL_STATE(7943)] = 347949, - [SMALL_STATE(7944)] = 347972, - [SMALL_STATE(7945)] = 348001, - [SMALL_STATE(7946)] = 348027, - [SMALL_STATE(7947)] = 348053, - [SMALL_STATE(7948)] = 348079, - [SMALL_STATE(7949)] = 348101, - [SMALL_STATE(7950)] = 348127, - [SMALL_STATE(7951)] = 348153, - [SMALL_STATE(7952)] = 348179, - [SMALL_STATE(7953)] = 348205, - [SMALL_STATE(7954)] = 348223, - [SMALL_STATE(7955)] = 348249, - [SMALL_STATE(7956)] = 348273, - [SMALL_STATE(7957)] = 348299, - [SMALL_STATE(7958)] = 348325, - [SMALL_STATE(7959)] = 348349, - [SMALL_STATE(7960)] = 348369, - [SMALL_STATE(7961)] = 348395, - [SMALL_STATE(7962)] = 348419, - [SMALL_STATE(7963)] = 348445, - [SMALL_STATE(7964)] = 348471, - [SMALL_STATE(7965)] = 348497, - [SMALL_STATE(7966)] = 348523, - [SMALL_STATE(7967)] = 348549, - [SMALL_STATE(7968)] = 348573, - [SMALL_STATE(7969)] = 348599, - [SMALL_STATE(7970)] = 348625, - [SMALL_STATE(7971)] = 348651, - [SMALL_STATE(7972)] = 348671, - [SMALL_STATE(7973)] = 348691, - [SMALL_STATE(7974)] = 348717, - [SMALL_STATE(7975)] = 348735, - [SMALL_STATE(7976)] = 348755, - [SMALL_STATE(7977)] = 348781, - [SMALL_STATE(7978)] = 348803, - [SMALL_STATE(7979)] = 348829, - [SMALL_STATE(7980)] = 348855, - [SMALL_STATE(7981)] = 348881, - [SMALL_STATE(7982)] = 348907, - [SMALL_STATE(7983)] = 348933, - [SMALL_STATE(7984)] = 348959, - [SMALL_STATE(7985)] = 348983, - [SMALL_STATE(7986)] = 349007, - [SMALL_STATE(7987)] = 349033, - [SMALL_STATE(7988)] = 349059, - [SMALL_STATE(7989)] = 349083, - [SMALL_STATE(7990)] = 349109, - [SMALL_STATE(7991)] = 349131, - [SMALL_STATE(7992)] = 349157, - [SMALL_STATE(7993)] = 349179, - [SMALL_STATE(7994)] = 349205, - [SMALL_STATE(7995)] = 349231, - [SMALL_STATE(7996)] = 349257, - [SMALL_STATE(7997)] = 349283, - [SMALL_STATE(7998)] = 349309, - [SMALL_STATE(7999)] = 349335, - [SMALL_STATE(8000)] = 349361, - [SMALL_STATE(8001)] = 349387, - [SMALL_STATE(8002)] = 349413, - [SMALL_STATE(8003)] = 349432, - [SMALL_STATE(8004)] = 349457, - [SMALL_STATE(8005)] = 349472, - [SMALL_STATE(8006)] = 349487, - [SMALL_STATE(8007)] = 349512, - [SMALL_STATE(8008)] = 349535, - [SMALL_STATE(8009)] = 349556, - [SMALL_STATE(8010)] = 349573, - [SMALL_STATE(8011)] = 349596, - [SMALL_STATE(8012)] = 349617, - [SMALL_STATE(8013)] = 349632, - [SMALL_STATE(8014)] = 349655, - [SMALL_STATE(8015)] = 349680, - [SMALL_STATE(8016)] = 349705, - [SMALL_STATE(8017)] = 349724, - [SMALL_STATE(8018)] = 349739, - [SMALL_STATE(8019)] = 349760, - [SMALL_STATE(8020)] = 349783, - [SMALL_STATE(8021)] = 349804, - [SMALL_STATE(8022)] = 349827, - [SMALL_STATE(8023)] = 349852, - [SMALL_STATE(8024)] = 349867, - [SMALL_STATE(8025)] = 349890, - [SMALL_STATE(8026)] = 349905, - [SMALL_STATE(8027)] = 349924, - [SMALL_STATE(8028)] = 349939, - [SMALL_STATE(8029)] = 349958, - [SMALL_STATE(8030)] = 349983, - [SMALL_STATE(8031)] = 350006, - [SMALL_STATE(8032)] = 350027, - [SMALL_STATE(8033)] = 350052, - [SMALL_STATE(8034)] = 350077, - [SMALL_STATE(8035)] = 350100, - [SMALL_STATE(8036)] = 350121, - [SMALL_STATE(8037)] = 350146, - [SMALL_STATE(8038)] = 350167, - [SMALL_STATE(8039)] = 350190, - [SMALL_STATE(8040)] = 350215, - [SMALL_STATE(8041)] = 350238, - [SMALL_STATE(8042)] = 350253, - [SMALL_STATE(8043)] = 350273, - [SMALL_STATE(8044)] = 350291, - [SMALL_STATE(8045)] = 350305, - [SMALL_STATE(8046)] = 350319, - [SMALL_STATE(8047)] = 350339, - [SMALL_STATE(8048)] = 350351, - [SMALL_STATE(8049)] = 350367, - [SMALL_STATE(8050)] = 350387, - [SMALL_STATE(8051)] = 350407, - [SMALL_STATE(8052)] = 350421, - [SMALL_STATE(8053)] = 350441, - [SMALL_STATE(8054)] = 350457, - [SMALL_STATE(8055)] = 350477, - [SMALL_STATE(8056)] = 350497, - [SMALL_STATE(8057)] = 350511, - [SMALL_STATE(8058)] = 350527, - [SMALL_STATE(8059)] = 350547, - [SMALL_STATE(8060)] = 350565, - [SMALL_STATE(8061)] = 350581, - [SMALL_STATE(8062)] = 350597, - [SMALL_STATE(8063)] = 350613, - [SMALL_STATE(8064)] = 350627, - [SMALL_STATE(8065)] = 350641, - [SMALL_STATE(8066)] = 350659, - [SMALL_STATE(8067)] = 350673, - [SMALL_STATE(8068)] = 350689, - [SMALL_STATE(8069)] = 350703, - [SMALL_STATE(8070)] = 350723, - [SMALL_STATE(8071)] = 350743, - [SMALL_STATE(8072)] = 350757, - [SMALL_STATE(8073)] = 350773, - [SMALL_STATE(8074)] = 350791, - [SMALL_STATE(8075)] = 350807, - [SMALL_STATE(8076)] = 350823, - [SMALL_STATE(8077)] = 350843, - [SMALL_STATE(8078)] = 350857, - [SMALL_STATE(8079)] = 350873, - [SMALL_STATE(8080)] = 350889, - [SMALL_STATE(8081)] = 350907, - [SMALL_STATE(8082)] = 350921, - [SMALL_STATE(8083)] = 350935, - [SMALL_STATE(8084)] = 350951, - [SMALL_STATE(8085)] = 350967, - [SMALL_STATE(8086)] = 350987, - [SMALL_STATE(8087)] = 351003, - [SMALL_STATE(8088)] = 351023, - [SMALL_STATE(8089)] = 351043, - [SMALL_STATE(8090)] = 351059, - [SMALL_STATE(8091)] = 351075, - [SMALL_STATE(8092)] = 351095, - [SMALL_STATE(8093)] = 351109, - [SMALL_STATE(8094)] = 351125, - [SMALL_STATE(8095)] = 351141, - [SMALL_STATE(8096)] = 351157, - [SMALL_STATE(8097)] = 351177, - [SMALL_STATE(8098)] = 351197, - [SMALL_STATE(8099)] = 351213, - [SMALL_STATE(8100)] = 351227, - [SMALL_STATE(8101)] = 351247, - [SMALL_STATE(8102)] = 351263, - [SMALL_STATE(8103)] = 351283, - [SMALL_STATE(8104)] = 351297, - [SMALL_STATE(8105)] = 351311, - [SMALL_STATE(8106)] = 351325, - [SMALL_STATE(8107)] = 351345, - [SMALL_STATE(8108)] = 351361, - [SMALL_STATE(8109)] = 351377, - [SMALL_STATE(8110)] = 351391, - [SMALL_STATE(8111)] = 351411, - [SMALL_STATE(8112)] = 351425, - [SMALL_STATE(8113)] = 351445, - [SMALL_STATE(8114)] = 351465, - [SMALL_STATE(8115)] = 351483, - [SMALL_STATE(8116)] = 351503, - [SMALL_STATE(8117)] = 351517, - [SMALL_STATE(8118)] = 351537, - [SMALL_STATE(8119)] = 351553, - [SMALL_STATE(8120)] = 351573, - [SMALL_STATE(8121)] = 351587, - [SMALL_STATE(8122)] = 351607, - [SMALL_STATE(8123)] = 351623, - [SMALL_STATE(8124)] = 351639, - [SMALL_STATE(8125)] = 351659, - [SMALL_STATE(8126)] = 351675, - [SMALL_STATE(8127)] = 351694, - [SMALL_STATE(8128)] = 351713, - [SMALL_STATE(8129)] = 351732, - [SMALL_STATE(8130)] = 351751, - [SMALL_STATE(8131)] = 351770, - [SMALL_STATE(8132)] = 351789, - [SMALL_STATE(8133)] = 351808, - [SMALL_STATE(8134)] = 351827, - [SMALL_STATE(8135)] = 351846, - [SMALL_STATE(8136)] = 351865, - [SMALL_STATE(8137)] = 351884, - [SMALL_STATE(8138)] = 351903, - [SMALL_STATE(8139)] = 351920, - [SMALL_STATE(8140)] = 351939, - [SMALL_STATE(8141)] = 351952, - [SMALL_STATE(8142)] = 351971, - [SMALL_STATE(8143)] = 351988, - [SMALL_STATE(8144)] = 352007, - [SMALL_STATE(8145)] = 352026, - [SMALL_STATE(8146)] = 352045, - [SMALL_STATE(8147)] = 352064, - [SMALL_STATE(8148)] = 352083, - [SMALL_STATE(8149)] = 352102, - [SMALL_STATE(8150)] = 352121, - [SMALL_STATE(8151)] = 352140, - [SMALL_STATE(8152)] = 352159, - [SMALL_STATE(8153)] = 352178, - [SMALL_STATE(8154)] = 352197, - [SMALL_STATE(8155)] = 352216, - [SMALL_STATE(8156)] = 352235, - [SMALL_STATE(8157)] = 352254, - [SMALL_STATE(8158)] = 352273, - [SMALL_STATE(8159)] = 352292, - [SMALL_STATE(8160)] = 352309, - [SMALL_STATE(8161)] = 352322, - [SMALL_STATE(8162)] = 352341, - [SMALL_STATE(8163)] = 352360, - [SMALL_STATE(8164)] = 352373, - [SMALL_STATE(8165)] = 352392, - [SMALL_STATE(8166)] = 352405, - [SMALL_STATE(8167)] = 352422, - [SMALL_STATE(8168)] = 352435, - [SMALL_STATE(8169)] = 352454, - [SMALL_STATE(8170)] = 352473, - [SMALL_STATE(8171)] = 352492, - [SMALL_STATE(8172)] = 352511, - [SMALL_STATE(8173)] = 352528, - [SMALL_STATE(8174)] = 352547, - [SMALL_STATE(8175)] = 352566, - [SMALL_STATE(8176)] = 352585, - [SMALL_STATE(8177)] = 352602, - [SMALL_STATE(8178)] = 352621, - [SMALL_STATE(8179)] = 352640, - [SMALL_STATE(8180)] = 352659, - [SMALL_STATE(8181)] = 352676, - [SMALL_STATE(8182)] = 352695, - [SMALL_STATE(8183)] = 352714, - [SMALL_STATE(8184)] = 352733, - [SMALL_STATE(8185)] = 352752, - [SMALL_STATE(8186)] = 352768, - [SMALL_STATE(8187)] = 352784, - [SMALL_STATE(8188)] = 352798, - [SMALL_STATE(8189)] = 352810, - [SMALL_STATE(8190)] = 352826, - [SMALL_STATE(8191)] = 352842, - [SMALL_STATE(8192)] = 352858, - [SMALL_STATE(8193)] = 352874, - [SMALL_STATE(8194)] = 352890, - [SMALL_STATE(8195)] = 352906, - [SMALL_STATE(8196)] = 352922, - [SMALL_STATE(8197)] = 352936, - [SMALL_STATE(8198)] = 352950, - [SMALL_STATE(8199)] = 352966, - [SMALL_STATE(8200)] = 352982, - [SMALL_STATE(8201)] = 352996, - [SMALL_STATE(8202)] = 353010, - [SMALL_STATE(8203)] = 353024, - [SMALL_STATE(8204)] = 353038, - [SMALL_STATE(8205)] = 353054, - [SMALL_STATE(8206)] = 353070, - [SMALL_STATE(8207)] = 353086, - [SMALL_STATE(8208)] = 353102, - [SMALL_STATE(8209)] = 353116, - [SMALL_STATE(8210)] = 353130, - [SMALL_STATE(8211)] = 353144, - [SMALL_STATE(8212)] = 353158, - [SMALL_STATE(8213)] = 353170, - [SMALL_STATE(8214)] = 353184, - [SMALL_STATE(8215)] = 353198, - [SMALL_STATE(8216)] = 353214, - [SMALL_STATE(8217)] = 353230, - [SMALL_STATE(8218)] = 353244, - [SMALL_STATE(8219)] = 353260, - [SMALL_STATE(8220)] = 353276, - [SMALL_STATE(8221)] = 353292, - [SMALL_STATE(8222)] = 353308, - [SMALL_STATE(8223)] = 353322, - [SMALL_STATE(8224)] = 353338, - [SMALL_STATE(8225)] = 353354, - [SMALL_STATE(8226)] = 353370, - [SMALL_STATE(8227)] = 353386, - [SMALL_STATE(8228)] = 353402, - [SMALL_STATE(8229)] = 353416, - [SMALL_STATE(8230)] = 353430, - [SMALL_STATE(8231)] = 353446, - [SMALL_STATE(8232)] = 353462, - [SMALL_STATE(8233)] = 353476, - [SMALL_STATE(8234)] = 353490, - [SMALL_STATE(8235)] = 353506, - [SMALL_STATE(8236)] = 353522, - [SMALL_STATE(8237)] = 353538, - [SMALL_STATE(8238)] = 353552, - [SMALL_STATE(8239)] = 353566, - [SMALL_STATE(8240)] = 353580, - [SMALL_STATE(8241)] = 353594, - [SMALL_STATE(8242)] = 353608, - [SMALL_STATE(8243)] = 353624, - [SMALL_STATE(8244)] = 353640, - [SMALL_STATE(8245)] = 353654, - [SMALL_STATE(8246)] = 353670, - [SMALL_STATE(8247)] = 353682, - [SMALL_STATE(8248)] = 353698, - [SMALL_STATE(8249)] = 353712, - [SMALL_STATE(8250)] = 353728, - [SMALL_STATE(8251)] = 353744, - [SMALL_STATE(8252)] = 353760, - [SMALL_STATE(8253)] = 353776, - [SMALL_STATE(8254)] = 353790, - [SMALL_STATE(8255)] = 353806, - [SMALL_STATE(8256)] = 353820, - [SMALL_STATE(8257)] = 353834, - [SMALL_STATE(8258)] = 353848, - [SMALL_STATE(8259)] = 353864, - [SMALL_STATE(8260)] = 353880, - [SMALL_STATE(8261)] = 353894, - [SMALL_STATE(8262)] = 353908, - [SMALL_STATE(8263)] = 353922, - [SMALL_STATE(8264)] = 353936, - [SMALL_STATE(8265)] = 353950, - [SMALL_STATE(8266)] = 353964, - [SMALL_STATE(8267)] = 353980, - [SMALL_STATE(8268)] = 353996, - [SMALL_STATE(8269)] = 354012, - [SMALL_STATE(8270)] = 354028, - [SMALL_STATE(8271)] = 354044, - [SMALL_STATE(8272)] = 354060, - [SMALL_STATE(8273)] = 354076, - [SMALL_STATE(8274)] = 354092, - [SMALL_STATE(8275)] = 354108, - [SMALL_STATE(8276)] = 354122, - [SMALL_STATE(8277)] = 354138, - [SMALL_STATE(8278)] = 354152, - [SMALL_STATE(8279)] = 354166, - [SMALL_STATE(8280)] = 354182, - [SMALL_STATE(8281)] = 354196, - [SMALL_STATE(8282)] = 354210, - [SMALL_STATE(8283)] = 354226, - [SMALL_STATE(8284)] = 354240, - [SMALL_STATE(8285)] = 354254, - [SMALL_STATE(8286)] = 354268, - [SMALL_STATE(8287)] = 354282, - [SMALL_STATE(8288)] = 354296, - [SMALL_STATE(8289)] = 354310, - [SMALL_STATE(8290)] = 354324, - [SMALL_STATE(8291)] = 354338, - [SMALL_STATE(8292)] = 354354, - [SMALL_STATE(8293)] = 354370, - [SMALL_STATE(8294)] = 354386, - [SMALL_STATE(8295)] = 354402, - [SMALL_STATE(8296)] = 354418, - [SMALL_STATE(8297)] = 354432, - [SMALL_STATE(8298)] = 354446, - [SMALL_STATE(8299)] = 354462, - [SMALL_STATE(8300)] = 354478, - [SMALL_STATE(8301)] = 354494, - [SMALL_STATE(8302)] = 354508, - [SMALL_STATE(8303)] = 354522, - [SMALL_STATE(8304)] = 354536, - [SMALL_STATE(8305)] = 354550, - [SMALL_STATE(8306)] = 354564, - [SMALL_STATE(8307)] = 354580, - [SMALL_STATE(8308)] = 354596, - [SMALL_STATE(8309)] = 354612, - [SMALL_STATE(8310)] = 354628, - [SMALL_STATE(8311)] = 354644, - [SMALL_STATE(8312)] = 354660, - [SMALL_STATE(8313)] = 354674, - [SMALL_STATE(8314)] = 354690, - [SMALL_STATE(8315)] = 354706, - [SMALL_STATE(8316)] = 354722, - [SMALL_STATE(8317)] = 354738, - [SMALL_STATE(8318)] = 354754, - [SMALL_STATE(8319)] = 354768, - [SMALL_STATE(8320)] = 354782, - [SMALL_STATE(8321)] = 354798, - [SMALL_STATE(8322)] = 354814, - [SMALL_STATE(8323)] = 354830, - [SMALL_STATE(8324)] = 354846, - [SMALL_STATE(8325)] = 354862, - [SMALL_STATE(8326)] = 354878, - [SMALL_STATE(8327)] = 354894, - [SMALL_STATE(8328)] = 354908, - [SMALL_STATE(8329)] = 354924, - [SMALL_STATE(8330)] = 354940, - [SMALL_STATE(8331)] = 354954, - [SMALL_STATE(8332)] = 354968, - [SMALL_STATE(8333)] = 354982, - [SMALL_STATE(8334)] = 354998, - [SMALL_STATE(8335)] = 355014, - [SMALL_STATE(8336)] = 355028, - [SMALL_STATE(8337)] = 355044, - [SMALL_STATE(8338)] = 355060, - [SMALL_STATE(8339)] = 355076, - [SMALL_STATE(8340)] = 355092, - [SMALL_STATE(8341)] = 355108, - [SMALL_STATE(8342)] = 355124, - [SMALL_STATE(8343)] = 355140, - [SMALL_STATE(8344)] = 355154, - [SMALL_STATE(8345)] = 355170, - [SMALL_STATE(8346)] = 355186, - [SMALL_STATE(8347)] = 355202, - [SMALL_STATE(8348)] = 355218, - [SMALL_STATE(8349)] = 355234, - [SMALL_STATE(8350)] = 355250, - [SMALL_STATE(8351)] = 355266, - [SMALL_STATE(8352)] = 355282, - [SMALL_STATE(8353)] = 355298, - [SMALL_STATE(8354)] = 355312, - [SMALL_STATE(8355)] = 355328, - [SMALL_STATE(8356)] = 355344, - [SMALL_STATE(8357)] = 355360, - [SMALL_STATE(8358)] = 355376, - [SMALL_STATE(8359)] = 355392, - [SMALL_STATE(8360)] = 355408, - [SMALL_STATE(8361)] = 355424, - [SMALL_STATE(8362)] = 355434, - [SMALL_STATE(8363)] = 355448, - [SMALL_STATE(8364)] = 355464, - [SMALL_STATE(8365)] = 355478, - [SMALL_STATE(8366)] = 355494, - [SMALL_STATE(8367)] = 355510, - [SMALL_STATE(8368)] = 355526, - [SMALL_STATE(8369)] = 355542, - [SMALL_STATE(8370)] = 355558, - [SMALL_STATE(8371)] = 355574, - [SMALL_STATE(8372)] = 355590, - [SMALL_STATE(8373)] = 355606, - [SMALL_STATE(8374)] = 355622, - [SMALL_STATE(8375)] = 355638, - [SMALL_STATE(8376)] = 355654, - [SMALL_STATE(8377)] = 355670, - [SMALL_STATE(8378)] = 355686, - [SMALL_STATE(8379)] = 355702, - [SMALL_STATE(8380)] = 355718, - [SMALL_STATE(8381)] = 355734, - [SMALL_STATE(8382)] = 355750, - [SMALL_STATE(8383)] = 355766, - [SMALL_STATE(8384)] = 355782, - [SMALL_STATE(8385)] = 355798, - [SMALL_STATE(8386)] = 355814, - [SMALL_STATE(8387)] = 355828, - [SMALL_STATE(8388)] = 355844, - [SMALL_STATE(8389)] = 355858, - [SMALL_STATE(8390)] = 355874, - [SMALL_STATE(8391)] = 355890, - [SMALL_STATE(8392)] = 355906, - [SMALL_STATE(8393)] = 355922, - [SMALL_STATE(8394)] = 355938, - [SMALL_STATE(8395)] = 355954, - [SMALL_STATE(8396)] = 355968, - [SMALL_STATE(8397)] = 355984, - [SMALL_STATE(8398)] = 355998, - [SMALL_STATE(8399)] = 356014, - [SMALL_STATE(8400)] = 356030, - [SMALL_STATE(8401)] = 356046, - [SMALL_STATE(8402)] = 356060, - [SMALL_STATE(8403)] = 356076, - [SMALL_STATE(8404)] = 356092, - [SMALL_STATE(8405)] = 356108, - [SMALL_STATE(8406)] = 356124, - [SMALL_STATE(8407)] = 356138, - [SMALL_STATE(8408)] = 356150, - [SMALL_STATE(8409)] = 356166, - [SMALL_STATE(8410)] = 356182, - [SMALL_STATE(8411)] = 356198, - [SMALL_STATE(8412)] = 356214, - [SMALL_STATE(8413)] = 356230, - [SMALL_STATE(8414)] = 356244, - [SMALL_STATE(8415)] = 356260, - [SMALL_STATE(8416)] = 356274, - [SMALL_STATE(8417)] = 356288, - [SMALL_STATE(8418)] = 356302, - [SMALL_STATE(8419)] = 356316, - [SMALL_STATE(8420)] = 356332, - [SMALL_STATE(8421)] = 356346, - [SMALL_STATE(8422)] = 356360, - [SMALL_STATE(8423)] = 356374, - [SMALL_STATE(8424)] = 356388, - [SMALL_STATE(8425)] = 356404, - [SMALL_STATE(8426)] = 356420, - [SMALL_STATE(8427)] = 356436, - [SMALL_STATE(8428)] = 356452, - [SMALL_STATE(8429)] = 356468, - [SMALL_STATE(8430)] = 356484, - [SMALL_STATE(8431)] = 356500, - [SMALL_STATE(8432)] = 356516, - [SMALL_STATE(8433)] = 356532, - [SMALL_STATE(8434)] = 356548, - [SMALL_STATE(8435)] = 356564, - [SMALL_STATE(8436)] = 356580, - [SMALL_STATE(8437)] = 356596, - [SMALL_STATE(8438)] = 356612, - [SMALL_STATE(8439)] = 356628, - [SMALL_STATE(8440)] = 356644, - [SMALL_STATE(8441)] = 356660, - [SMALL_STATE(8442)] = 356676, - [SMALL_STATE(8443)] = 356692, - [SMALL_STATE(8444)] = 356708, - [SMALL_STATE(8445)] = 356724, - [SMALL_STATE(8446)] = 356738, - [SMALL_STATE(8447)] = 356750, - [SMALL_STATE(8448)] = 356764, - [SMALL_STATE(8449)] = 356780, - [SMALL_STATE(8450)] = 356794, - [SMALL_STATE(8451)] = 356810, - [SMALL_STATE(8452)] = 356824, - [SMALL_STATE(8453)] = 356840, - [SMALL_STATE(8454)] = 356854, - [SMALL_STATE(8455)] = 356870, - [SMALL_STATE(8456)] = 356880, - [SMALL_STATE(8457)] = 356896, - [SMALL_STATE(8458)] = 356912, - [SMALL_STATE(8459)] = 356926, - [SMALL_STATE(8460)] = 356942, - [SMALL_STATE(8461)] = 356958, - [SMALL_STATE(8462)] = 356974, - [SMALL_STATE(8463)] = 356990, - [SMALL_STATE(8464)] = 357004, - [SMALL_STATE(8465)] = 357020, - [SMALL_STATE(8466)] = 357034, - [SMALL_STATE(8467)] = 357048, - [SMALL_STATE(8468)] = 357062, - [SMALL_STATE(8469)] = 357076, - [SMALL_STATE(8470)] = 357092, - [SMALL_STATE(8471)] = 357106, - [SMALL_STATE(8472)] = 357122, - [SMALL_STATE(8473)] = 357138, - [SMALL_STATE(8474)] = 357154, - [SMALL_STATE(8475)] = 357170, - [SMALL_STATE(8476)] = 357184, - [SMALL_STATE(8477)] = 357200, - [SMALL_STATE(8478)] = 357214, - [SMALL_STATE(8479)] = 357228, - [SMALL_STATE(8480)] = 357244, - [SMALL_STATE(8481)] = 357260, - [SMALL_STATE(8482)] = 357276, - [SMALL_STATE(8483)] = 357290, - [SMALL_STATE(8484)] = 357306, - [SMALL_STATE(8485)] = 357320, - [SMALL_STATE(8486)] = 357334, - [SMALL_STATE(8487)] = 357344, - [SMALL_STATE(8488)] = 357360, - [SMALL_STATE(8489)] = 357376, - [SMALL_STATE(8490)] = 357392, - [SMALL_STATE(8491)] = 357408, - [SMALL_STATE(8492)] = 357424, - [SMALL_STATE(8493)] = 357440, - [SMALL_STATE(8494)] = 357454, - [SMALL_STATE(8495)] = 357468, - [SMALL_STATE(8496)] = 357484, - [SMALL_STATE(8497)] = 357498, - [SMALL_STATE(8498)] = 357514, - [SMALL_STATE(8499)] = 357530, - [SMALL_STATE(8500)] = 357546, - [SMALL_STATE(8501)] = 357560, - [SMALL_STATE(8502)] = 357576, - [SMALL_STATE(8503)] = 357590, - [SMALL_STATE(8504)] = 357606, - [SMALL_STATE(8505)] = 357622, - [SMALL_STATE(8506)] = 357638, - [SMALL_STATE(8507)] = 357652, - [SMALL_STATE(8508)] = 357666, - [SMALL_STATE(8509)] = 357682, - [SMALL_STATE(8510)] = 357696, - [SMALL_STATE(8511)] = 357710, - [SMALL_STATE(8512)] = 357724, - [SMALL_STATE(8513)] = 357738, - [SMALL_STATE(8514)] = 357752, - [SMALL_STATE(8515)] = 357766, - [SMALL_STATE(8516)] = 357782, - [SMALL_STATE(8517)] = 357796, - [SMALL_STATE(8518)] = 357810, - [SMALL_STATE(8519)] = 357826, - [SMALL_STATE(8520)] = 357840, - [SMALL_STATE(8521)] = 357854, - [SMALL_STATE(8522)] = 357870, - [SMALL_STATE(8523)] = 357884, - [SMALL_STATE(8524)] = 357898, - [SMALL_STATE(8525)] = 357912, - [SMALL_STATE(8526)] = 357926, - [SMALL_STATE(8527)] = 357942, - [SMALL_STATE(8528)] = 357956, - [SMALL_STATE(8529)] = 357970, - [SMALL_STATE(8530)] = 357984, - [SMALL_STATE(8531)] = 357998, - [SMALL_STATE(8532)] = 358012, - [SMALL_STATE(8533)] = 358026, - [SMALL_STATE(8534)] = 358040, - [SMALL_STATE(8535)] = 358054, - [SMALL_STATE(8536)] = 358068, - [SMALL_STATE(8537)] = 358082, - [SMALL_STATE(8538)] = 358096, - [SMALL_STATE(8539)] = 358110, - [SMALL_STATE(8540)] = 358124, - [SMALL_STATE(8541)] = 358140, - [SMALL_STATE(8542)] = 358156, - [SMALL_STATE(8543)] = 358170, - [SMALL_STATE(8544)] = 358186, - [SMALL_STATE(8545)] = 358198, - [SMALL_STATE(8546)] = 358214, - [SMALL_STATE(8547)] = 358230, - [SMALL_STATE(8548)] = 358246, - [SMALL_STATE(8549)] = 358262, - [SMALL_STATE(8550)] = 358276, - [SMALL_STATE(8551)] = 358290, - [SMALL_STATE(8552)] = 358304, - [SMALL_STATE(8553)] = 358317, - [SMALL_STATE(8554)] = 358330, - [SMALL_STATE(8555)] = 358343, - [SMALL_STATE(8556)] = 358356, - [SMALL_STATE(8557)] = 358369, - [SMALL_STATE(8558)] = 358382, - [SMALL_STATE(8559)] = 358395, - [SMALL_STATE(8560)] = 358408, - [SMALL_STATE(8561)] = 358421, - [SMALL_STATE(8562)] = 358434, - [SMALL_STATE(8563)] = 358447, - [SMALL_STATE(8564)] = 358460, - [SMALL_STATE(8565)] = 358471, - [SMALL_STATE(8566)] = 358480, - [SMALL_STATE(8567)] = 358493, - [SMALL_STATE(8568)] = 358506, - [SMALL_STATE(8569)] = 358519, - [SMALL_STATE(8570)] = 358532, - [SMALL_STATE(8571)] = 358545, - [SMALL_STATE(8572)] = 358558, - [SMALL_STATE(8573)] = 358571, - [SMALL_STATE(8574)] = 358584, - [SMALL_STATE(8575)] = 358597, - [SMALL_STATE(8576)] = 358610, - [SMALL_STATE(8577)] = 358623, - [SMALL_STATE(8578)] = 358636, - [SMALL_STATE(8579)] = 358649, - [SMALL_STATE(8580)] = 358662, - [SMALL_STATE(8581)] = 358675, - [SMALL_STATE(8582)] = 358688, - [SMALL_STATE(8583)] = 358701, - [SMALL_STATE(8584)] = 358714, - [SMALL_STATE(8585)] = 358727, - [SMALL_STATE(8586)] = 358740, - [SMALL_STATE(8587)] = 358753, - [SMALL_STATE(8588)] = 358764, - [SMALL_STATE(8589)] = 358777, - [SMALL_STATE(8590)] = 358790, - [SMALL_STATE(8591)] = 358803, - [SMALL_STATE(8592)] = 358816, - [SMALL_STATE(8593)] = 358829, - [SMALL_STATE(8594)] = 358842, - [SMALL_STATE(8595)] = 358855, - [SMALL_STATE(8596)] = 358864, - [SMALL_STATE(8597)] = 358877, - [SMALL_STATE(8598)] = 358890, - [SMALL_STATE(8599)] = 358903, - [SMALL_STATE(8600)] = 358916, - [SMALL_STATE(8601)] = 358929, - [SMALL_STATE(8602)] = 358942, - [SMALL_STATE(8603)] = 358955, - [SMALL_STATE(8604)] = 358968, - [SMALL_STATE(8605)] = 358981, - [SMALL_STATE(8606)] = 358990, - [SMALL_STATE(8607)] = 359003, - [SMALL_STATE(8608)] = 359012, - [SMALL_STATE(8609)] = 359025, - [SMALL_STATE(8610)] = 359038, - [SMALL_STATE(8611)] = 359051, - [SMALL_STATE(8612)] = 359064, - [SMALL_STATE(8613)] = 359077, - [SMALL_STATE(8614)] = 359090, - [SMALL_STATE(8615)] = 359103, - [SMALL_STATE(8616)] = 359116, - [SMALL_STATE(8617)] = 359129, - [SMALL_STATE(8618)] = 359142, - [SMALL_STATE(8619)] = 359155, - [SMALL_STATE(8620)] = 359168, - [SMALL_STATE(8621)] = 359177, - [SMALL_STATE(8622)] = 359190, - [SMALL_STATE(8623)] = 359203, - [SMALL_STATE(8624)] = 359214, - [SMALL_STATE(8625)] = 359227, - [SMALL_STATE(8626)] = 359240, - [SMALL_STATE(8627)] = 359253, - [SMALL_STATE(8628)] = 359266, - [SMALL_STATE(8629)] = 359279, - [SMALL_STATE(8630)] = 359292, - [SMALL_STATE(8631)] = 359305, - [SMALL_STATE(8632)] = 359318, - [SMALL_STATE(8633)] = 359331, - [SMALL_STATE(8634)] = 359344, - [SMALL_STATE(8635)] = 359357, - [SMALL_STATE(8636)] = 359370, - [SMALL_STATE(8637)] = 359383, - [SMALL_STATE(8638)] = 359396, - [SMALL_STATE(8639)] = 359409, - [SMALL_STATE(8640)] = 359422, - [SMALL_STATE(8641)] = 359435, - [SMALL_STATE(8642)] = 359448, - [SMALL_STATE(8643)] = 359461, - [SMALL_STATE(8644)] = 359474, - [SMALL_STATE(8645)] = 359487, - [SMALL_STATE(8646)] = 359500, - [SMALL_STATE(8647)] = 359513, - [SMALL_STATE(8648)] = 359526, - [SMALL_STATE(8649)] = 359539, - [SMALL_STATE(8650)] = 359552, - [SMALL_STATE(8651)] = 359565, - [SMALL_STATE(8652)] = 359578, - [SMALL_STATE(8653)] = 359591, - [SMALL_STATE(8654)] = 359604, - [SMALL_STATE(8655)] = 359617, - [SMALL_STATE(8656)] = 359628, - [SMALL_STATE(8657)] = 359641, - [SMALL_STATE(8658)] = 359654, - [SMALL_STATE(8659)] = 359667, - [SMALL_STATE(8660)] = 359680, - [SMALL_STATE(8661)] = 359693, - [SMALL_STATE(8662)] = 359706, - [SMALL_STATE(8663)] = 359719, - [SMALL_STATE(8664)] = 359732, - [SMALL_STATE(8665)] = 359745, - [SMALL_STATE(8666)] = 359758, - [SMALL_STATE(8667)] = 359771, - [SMALL_STATE(8668)] = 359784, - [SMALL_STATE(8669)] = 359797, - [SMALL_STATE(8670)] = 359808, - [SMALL_STATE(8671)] = 359821, - [SMALL_STATE(8672)] = 359834, - [SMALL_STATE(8673)] = 359847, - [SMALL_STATE(8674)] = 359860, - [SMALL_STATE(8675)] = 359873, - [SMALL_STATE(8676)] = 359884, - [SMALL_STATE(8677)] = 359897, - [SMALL_STATE(8678)] = 359910, - [SMALL_STATE(8679)] = 359923, - [SMALL_STATE(8680)] = 359936, - [SMALL_STATE(8681)] = 359949, - [SMALL_STATE(8682)] = 359962, - [SMALL_STATE(8683)] = 359975, - [SMALL_STATE(8684)] = 359988, - [SMALL_STATE(8685)] = 360001, - [SMALL_STATE(8686)] = 360014, - [SMALL_STATE(8687)] = 360027, - [SMALL_STATE(8688)] = 360038, - [SMALL_STATE(8689)] = 360051, - [SMALL_STATE(8690)] = 360064, - [SMALL_STATE(8691)] = 360077, - [SMALL_STATE(8692)] = 360090, - [SMALL_STATE(8693)] = 360103, - [SMALL_STATE(8694)] = 360116, - [SMALL_STATE(8695)] = 360129, - [SMALL_STATE(8696)] = 360142, - [SMALL_STATE(8697)] = 360155, - [SMALL_STATE(8698)] = 360168, - [SMALL_STATE(8699)] = 360181, - [SMALL_STATE(8700)] = 360194, - [SMALL_STATE(8701)] = 360207, - [SMALL_STATE(8702)] = 360220, - [SMALL_STATE(8703)] = 360233, - [SMALL_STATE(8704)] = 360246, - [SMALL_STATE(8705)] = 360259, - [SMALL_STATE(8706)] = 360270, - [SMALL_STATE(8707)] = 360283, - [SMALL_STATE(8708)] = 360296, - [SMALL_STATE(8709)] = 360309, - [SMALL_STATE(8710)] = 360322, - [SMALL_STATE(8711)] = 360335, - [SMALL_STATE(8712)] = 360348, - [SMALL_STATE(8713)] = 360359, - [SMALL_STATE(8714)] = 360372, - [SMALL_STATE(8715)] = 360385, - [SMALL_STATE(8716)] = 360398, - [SMALL_STATE(8717)] = 360411, - [SMALL_STATE(8718)] = 360424, - [SMALL_STATE(8719)] = 360437, - [SMALL_STATE(8720)] = 360448, - [SMALL_STATE(8721)] = 360461, - [SMALL_STATE(8722)] = 360474, - [SMALL_STATE(8723)] = 360487, - [SMALL_STATE(8724)] = 360500, - [SMALL_STATE(8725)] = 360513, - [SMALL_STATE(8726)] = 360526, - [SMALL_STATE(8727)] = 360539, - [SMALL_STATE(8728)] = 360552, - [SMALL_STATE(8729)] = 360565, - [SMALL_STATE(8730)] = 360578, - [SMALL_STATE(8731)] = 360591, - [SMALL_STATE(8732)] = 360604, - [SMALL_STATE(8733)] = 360617, - [SMALL_STATE(8734)] = 360630, - [SMALL_STATE(8735)] = 360643, - [SMALL_STATE(8736)] = 360656, - [SMALL_STATE(8737)] = 360669, - [SMALL_STATE(8738)] = 360680, - [SMALL_STATE(8739)] = 360693, - [SMALL_STATE(8740)] = 360706, - [SMALL_STATE(8741)] = 360719, - [SMALL_STATE(8742)] = 360732, - [SMALL_STATE(8743)] = 360745, - [SMALL_STATE(8744)] = 360758, - [SMALL_STATE(8745)] = 360771, - [SMALL_STATE(8746)] = 360784, - [SMALL_STATE(8747)] = 360797, - [SMALL_STATE(8748)] = 360810, - [SMALL_STATE(8749)] = 360823, - [SMALL_STATE(8750)] = 360836, - [SMALL_STATE(8751)] = 360849, - [SMALL_STATE(8752)] = 360862, - [SMALL_STATE(8753)] = 360875, - [SMALL_STATE(8754)] = 360888, - [SMALL_STATE(8755)] = 360901, - [SMALL_STATE(8756)] = 360914, - [SMALL_STATE(8757)] = 360927, - [SMALL_STATE(8758)] = 360940, - [SMALL_STATE(8759)] = 360953, - [SMALL_STATE(8760)] = 360966, - [SMALL_STATE(8761)] = 360979, - [SMALL_STATE(8762)] = 360992, - [SMALL_STATE(8763)] = 361005, - [SMALL_STATE(8764)] = 361018, - [SMALL_STATE(8765)] = 361031, - [SMALL_STATE(8766)] = 361044, - [SMALL_STATE(8767)] = 361057, - [SMALL_STATE(8768)] = 361070, - [SMALL_STATE(8769)] = 361083, - [SMALL_STATE(8770)] = 361096, - [SMALL_STATE(8771)] = 361109, - [SMALL_STATE(8772)] = 361122, - [SMALL_STATE(8773)] = 361135, - [SMALL_STATE(8774)] = 361148, - [SMALL_STATE(8775)] = 361161, - [SMALL_STATE(8776)] = 361174, - [SMALL_STATE(8777)] = 361187, - [SMALL_STATE(8778)] = 361196, - [SMALL_STATE(8779)] = 361209, - [SMALL_STATE(8780)] = 361218, - [SMALL_STATE(8781)] = 361231, - [SMALL_STATE(8782)] = 361244, - [SMALL_STATE(8783)] = 361257, - [SMALL_STATE(8784)] = 361270, - [SMALL_STATE(8785)] = 361283, - [SMALL_STATE(8786)] = 361296, - [SMALL_STATE(8787)] = 361309, - [SMALL_STATE(8788)] = 361322, - [SMALL_STATE(8789)] = 361335, - [SMALL_STATE(8790)] = 361348, - [SMALL_STATE(8791)] = 361361, - [SMALL_STATE(8792)] = 361374, - [SMALL_STATE(8793)] = 361387, - [SMALL_STATE(8794)] = 361400, - [SMALL_STATE(8795)] = 361411, - [SMALL_STATE(8796)] = 361424, - [SMALL_STATE(8797)] = 361437, - [SMALL_STATE(8798)] = 361450, - [SMALL_STATE(8799)] = 361463, - [SMALL_STATE(8800)] = 361476, - [SMALL_STATE(8801)] = 361489, - [SMALL_STATE(8802)] = 361502, - [SMALL_STATE(8803)] = 361515, - [SMALL_STATE(8804)] = 361528, - [SMALL_STATE(8805)] = 361541, - [SMALL_STATE(8806)] = 361554, - [SMALL_STATE(8807)] = 361567, - [SMALL_STATE(8808)] = 361580, - [SMALL_STATE(8809)] = 361593, - [SMALL_STATE(8810)] = 361606, - [SMALL_STATE(8811)] = 361619, - [SMALL_STATE(8812)] = 361632, - [SMALL_STATE(8813)] = 361641, - [SMALL_STATE(8814)] = 361654, - [SMALL_STATE(8815)] = 361667, - [SMALL_STATE(8816)] = 361678, - [SMALL_STATE(8817)] = 361691, - [SMALL_STATE(8818)] = 361704, - [SMALL_STATE(8819)] = 361717, - [SMALL_STATE(8820)] = 361730, - [SMALL_STATE(8821)] = 361741, - [SMALL_STATE(8822)] = 361754, - [SMALL_STATE(8823)] = 361767, - [SMALL_STATE(8824)] = 361780, - [SMALL_STATE(8825)] = 361793, - [SMALL_STATE(8826)] = 361806, - [SMALL_STATE(8827)] = 361819, - [SMALL_STATE(8828)] = 361832, - [SMALL_STATE(8829)] = 361845, - [SMALL_STATE(8830)] = 361858, - [SMALL_STATE(8831)] = 361871, - [SMALL_STATE(8832)] = 361884, - [SMALL_STATE(8833)] = 361897, - [SMALL_STATE(8834)] = 361910, - [SMALL_STATE(8835)] = 361923, - [SMALL_STATE(8836)] = 361936, - [SMALL_STATE(8837)] = 361949, - [SMALL_STATE(8838)] = 361962, - [SMALL_STATE(8839)] = 361975, - [SMALL_STATE(8840)] = 361986, - [SMALL_STATE(8841)] = 361999, - [SMALL_STATE(8842)] = 362012, - [SMALL_STATE(8843)] = 362025, - [SMALL_STATE(8844)] = 362038, - [SMALL_STATE(8845)] = 362051, - [SMALL_STATE(8846)] = 362064, - [SMALL_STATE(8847)] = 362077, - [SMALL_STATE(8848)] = 362090, - [SMALL_STATE(8849)] = 362103, - [SMALL_STATE(8850)] = 362116, - [SMALL_STATE(8851)] = 362129, - [SMALL_STATE(8852)] = 362142, - [SMALL_STATE(8853)] = 362155, - [SMALL_STATE(8854)] = 362168, - [SMALL_STATE(8855)] = 362179, - [SMALL_STATE(8856)] = 362190, - [SMALL_STATE(8857)] = 362203, - [SMALL_STATE(8858)] = 362216, - [SMALL_STATE(8859)] = 362229, - [SMALL_STATE(8860)] = 362242, - [SMALL_STATE(8861)] = 362255, - [SMALL_STATE(8862)] = 362268, - [SMALL_STATE(8863)] = 362281, - [SMALL_STATE(8864)] = 362292, - [SMALL_STATE(8865)] = 362305, - [SMALL_STATE(8866)] = 362318, - [SMALL_STATE(8867)] = 362331, - [SMALL_STATE(8868)] = 362342, - [SMALL_STATE(8869)] = 362355, - [SMALL_STATE(8870)] = 362368, - [SMALL_STATE(8871)] = 362381, - [SMALL_STATE(8872)] = 362392, - [SMALL_STATE(8873)] = 362405, - [SMALL_STATE(8874)] = 362418, - [SMALL_STATE(8875)] = 362431, - [SMALL_STATE(8876)] = 362440, - [SMALL_STATE(8877)] = 362453, - [SMALL_STATE(8878)] = 362466, - [SMALL_STATE(8879)] = 362477, - [SMALL_STATE(8880)] = 362488, - [SMALL_STATE(8881)] = 362501, - [SMALL_STATE(8882)] = 362514, - [SMALL_STATE(8883)] = 362527, - [SMALL_STATE(8884)] = 362538, - [SMALL_STATE(8885)] = 362551, - [SMALL_STATE(8886)] = 362564, - [SMALL_STATE(8887)] = 362577, - [SMALL_STATE(8888)] = 362590, - [SMALL_STATE(8889)] = 362603, - [SMALL_STATE(8890)] = 362616, - [SMALL_STATE(8891)] = 362629, - [SMALL_STATE(8892)] = 362642, - [SMALL_STATE(8893)] = 362655, - [SMALL_STATE(8894)] = 362668, - [SMALL_STATE(8895)] = 362681, - [SMALL_STATE(8896)] = 362694, - [SMALL_STATE(8897)] = 362707, - [SMALL_STATE(8898)] = 362720, - [SMALL_STATE(8899)] = 362733, - [SMALL_STATE(8900)] = 362746, - [SMALL_STATE(8901)] = 362757, - [SMALL_STATE(8902)] = 362770, - [SMALL_STATE(8903)] = 362783, - [SMALL_STATE(8904)] = 362796, - [SMALL_STATE(8905)] = 362805, - [SMALL_STATE(8906)] = 362818, - [SMALL_STATE(8907)] = 362831, - [SMALL_STATE(8908)] = 362842, - [SMALL_STATE(8909)] = 362855, - [SMALL_STATE(8910)] = 362868, - [SMALL_STATE(8911)] = 362877, - [SMALL_STATE(8912)] = 362890, - [SMALL_STATE(8913)] = 362903, - [SMALL_STATE(8914)] = 362916, - [SMALL_STATE(8915)] = 362929, - [SMALL_STATE(8916)] = 362942, - [SMALL_STATE(8917)] = 362955, - [SMALL_STATE(8918)] = 362966, - [SMALL_STATE(8919)] = 362979, - [SMALL_STATE(8920)] = 362992, - [SMALL_STATE(8921)] = 363005, - [SMALL_STATE(8922)] = 363018, - [SMALL_STATE(8923)] = 363031, - [SMALL_STATE(8924)] = 363044, - [SMALL_STATE(8925)] = 363057, - [SMALL_STATE(8926)] = 363068, - [SMALL_STATE(8927)] = 363079, - [SMALL_STATE(8928)] = 363092, - [SMALL_STATE(8929)] = 363105, - [SMALL_STATE(8930)] = 363116, - [SMALL_STATE(8931)] = 363129, - [SMALL_STATE(8932)] = 363142, - [SMALL_STATE(8933)] = 363155, - [SMALL_STATE(8934)] = 363168, - [SMALL_STATE(8935)] = 363181, - [SMALL_STATE(8936)] = 363194, - [SMALL_STATE(8937)] = 363207, - [SMALL_STATE(8938)] = 363220, - [SMALL_STATE(8939)] = 363233, - [SMALL_STATE(8940)] = 363246, - [SMALL_STATE(8941)] = 363259, - [SMALL_STATE(8942)] = 363272, - [SMALL_STATE(8943)] = 363285, - [SMALL_STATE(8944)] = 363298, - [SMALL_STATE(8945)] = 363311, - [SMALL_STATE(8946)] = 363324, - [SMALL_STATE(8947)] = 363337, - [SMALL_STATE(8948)] = 363350, - [SMALL_STATE(8949)] = 363363, - [SMALL_STATE(8950)] = 363376, - [SMALL_STATE(8951)] = 363389, - [SMALL_STATE(8952)] = 363402, - [SMALL_STATE(8953)] = 363415, - [SMALL_STATE(8954)] = 363428, - [SMALL_STATE(8955)] = 363441, - [SMALL_STATE(8956)] = 363454, - [SMALL_STATE(8957)] = 363465, - [SMALL_STATE(8958)] = 363478, - [SMALL_STATE(8959)] = 363491, - [SMALL_STATE(8960)] = 363504, - [SMALL_STATE(8961)] = 363517, - [SMALL_STATE(8962)] = 363530, - [SMALL_STATE(8963)] = 363543, - [SMALL_STATE(8964)] = 363556, - [SMALL_STATE(8965)] = 363569, - [SMALL_STATE(8966)] = 363582, - [SMALL_STATE(8967)] = 363595, - [SMALL_STATE(8968)] = 363604, - [SMALL_STATE(8969)] = 363617, - [SMALL_STATE(8970)] = 363630, - [SMALL_STATE(8971)] = 363643, - [SMALL_STATE(8972)] = 363656, - [SMALL_STATE(8973)] = 363669, - [SMALL_STATE(8974)] = 363682, - [SMALL_STATE(8975)] = 363695, - [SMALL_STATE(8976)] = 363708, - [SMALL_STATE(8977)] = 363721, - [SMALL_STATE(8978)] = 363734, - [SMALL_STATE(8979)] = 363747, - [SMALL_STATE(8980)] = 363760, - [SMALL_STATE(8981)] = 363769, - [SMALL_STATE(8982)] = 363782, - [SMALL_STATE(8983)] = 363795, - [SMALL_STATE(8984)] = 363808, - [SMALL_STATE(8985)] = 363821, - [SMALL_STATE(8986)] = 363834, - [SMALL_STATE(8987)] = 363847, - [SMALL_STATE(8988)] = 363860, - [SMALL_STATE(8989)] = 363873, - [SMALL_STATE(8990)] = 363886, - [SMALL_STATE(8991)] = 363899, - [SMALL_STATE(8992)] = 363912, - [SMALL_STATE(8993)] = 363925, - [SMALL_STATE(8994)] = 363938, - [SMALL_STATE(8995)] = 363951, - [SMALL_STATE(8996)] = 363962, - [SMALL_STATE(8997)] = 363975, - [SMALL_STATE(8998)] = 363988, - [SMALL_STATE(8999)] = 364001, - [SMALL_STATE(9000)] = 364014, - [SMALL_STATE(9001)] = 364027, - [SMALL_STATE(9002)] = 364040, - [SMALL_STATE(9003)] = 364053, - [SMALL_STATE(9004)] = 364066, - [SMALL_STATE(9005)] = 364079, - [SMALL_STATE(9006)] = 364092, - [SMALL_STATE(9007)] = 364105, - [SMALL_STATE(9008)] = 364118, - [SMALL_STATE(9009)] = 364131, - [SMALL_STATE(9010)] = 364144, - [SMALL_STATE(9011)] = 364157, - [SMALL_STATE(9012)] = 364170, - [SMALL_STATE(9013)] = 364183, - [SMALL_STATE(9014)] = 364196, - [SMALL_STATE(9015)] = 364209, - [SMALL_STATE(9016)] = 364222, - [SMALL_STATE(9017)] = 364235, - [SMALL_STATE(9018)] = 364248, - [SMALL_STATE(9019)] = 364261, - [SMALL_STATE(9020)] = 364274, - [SMALL_STATE(9021)] = 364287, - [SMALL_STATE(9022)] = 364300, - [SMALL_STATE(9023)] = 364313, - [SMALL_STATE(9024)] = 364326, - [SMALL_STATE(9025)] = 364339, - [SMALL_STATE(9026)] = 364350, - [SMALL_STATE(9027)] = 364363, - [SMALL_STATE(9028)] = 364376, - [SMALL_STATE(9029)] = 364389, - [SMALL_STATE(9030)] = 364402, - [SMALL_STATE(9031)] = 364415, - [SMALL_STATE(9032)] = 364424, - [SMALL_STATE(9033)] = 364437, - [SMALL_STATE(9034)] = 364448, - [SMALL_STATE(9035)] = 364461, - [SMALL_STATE(9036)] = 364474, - [SMALL_STATE(9037)] = 364487, - [SMALL_STATE(9038)] = 364500, - [SMALL_STATE(9039)] = 364511, - [SMALL_STATE(9040)] = 364524, - [SMALL_STATE(9041)] = 364535, - [SMALL_STATE(9042)] = 364548, - [SMALL_STATE(9043)] = 364561, - [SMALL_STATE(9044)] = 364572, - [SMALL_STATE(9045)] = 364581, - [SMALL_STATE(9046)] = 364594, - [SMALL_STATE(9047)] = 364607, - [SMALL_STATE(9048)] = 364620, - [SMALL_STATE(9049)] = 364629, - [SMALL_STATE(9050)] = 364642, - [SMALL_STATE(9051)] = 364655, - [SMALL_STATE(9052)] = 364668, - [SMALL_STATE(9053)] = 364681, - [SMALL_STATE(9054)] = 364692, - [SMALL_STATE(9055)] = 364703, - [SMALL_STATE(9056)] = 364716, - [SMALL_STATE(9057)] = 364725, - [SMALL_STATE(9058)] = 364738, - [SMALL_STATE(9059)] = 364751, - [SMALL_STATE(9060)] = 364764, - [SMALL_STATE(9061)] = 364777, - [SMALL_STATE(9062)] = 364790, - [SMALL_STATE(9063)] = 364803, - [SMALL_STATE(9064)] = 364816, - [SMALL_STATE(9065)] = 364829, - [SMALL_STATE(9066)] = 364842, - [SMALL_STATE(9067)] = 364855, - [SMALL_STATE(9068)] = 364868, - [SMALL_STATE(9069)] = 364881, - [SMALL_STATE(9070)] = 364894, - [SMALL_STATE(9071)] = 364907, - [SMALL_STATE(9072)] = 364918, - [SMALL_STATE(9073)] = 364931, - [SMALL_STATE(9074)] = 364942, - [SMALL_STATE(9075)] = 364955, - [SMALL_STATE(9076)] = 364968, - [SMALL_STATE(9077)] = 364977, - [SMALL_STATE(9078)] = 364988, - [SMALL_STATE(9079)] = 365001, - [SMALL_STATE(9080)] = 365014, - [SMALL_STATE(9081)] = 365027, - [SMALL_STATE(9082)] = 365040, - [SMALL_STATE(9083)] = 365053, - [SMALL_STATE(9084)] = 365066, - [SMALL_STATE(9085)] = 365079, - [SMALL_STATE(9086)] = 365092, - [SMALL_STATE(9087)] = 365105, - [SMALL_STATE(9088)] = 365118, - [SMALL_STATE(9089)] = 365131, - [SMALL_STATE(9090)] = 365144, - [SMALL_STATE(9091)] = 365157, - [SMALL_STATE(9092)] = 365170, - [SMALL_STATE(9093)] = 365179, - [SMALL_STATE(9094)] = 365192, - [SMALL_STATE(9095)] = 365205, - [SMALL_STATE(9096)] = 365218, - [SMALL_STATE(9097)] = 365231, - [SMALL_STATE(9098)] = 365244, - [SMALL_STATE(9099)] = 365257, - [SMALL_STATE(9100)] = 365268, - [SMALL_STATE(9101)] = 365281, - [SMALL_STATE(9102)] = 365294, - [SMALL_STATE(9103)] = 365307, - [SMALL_STATE(9104)] = 365320, - [SMALL_STATE(9105)] = 365333, - [SMALL_STATE(9106)] = 365346, - [SMALL_STATE(9107)] = 365359, - [SMALL_STATE(9108)] = 365372, - [SMALL_STATE(9109)] = 365385, - [SMALL_STATE(9110)] = 365398, - [SMALL_STATE(9111)] = 365411, - [SMALL_STATE(9112)] = 365424, - [SMALL_STATE(9113)] = 365437, - [SMALL_STATE(9114)] = 365450, - [SMALL_STATE(9115)] = 365463, - [SMALL_STATE(9116)] = 365476, - [SMALL_STATE(9117)] = 365489, - [SMALL_STATE(9118)] = 365502, - [SMALL_STATE(9119)] = 365515, - [SMALL_STATE(9120)] = 365528, - [SMALL_STATE(9121)] = 365541, - [SMALL_STATE(9122)] = 365554, - [SMALL_STATE(9123)] = 365567, - [SMALL_STATE(9124)] = 365580, - [SMALL_STATE(9125)] = 365593, - [SMALL_STATE(9126)] = 365606, - [SMALL_STATE(9127)] = 365619, - [SMALL_STATE(9128)] = 365632, - [SMALL_STATE(9129)] = 365645, - [SMALL_STATE(9130)] = 365658, - [SMALL_STATE(9131)] = 365669, - [SMALL_STATE(9132)] = 365682, - [SMALL_STATE(9133)] = 365695, - [SMALL_STATE(9134)] = 365708, - [SMALL_STATE(9135)] = 365721, - [SMALL_STATE(9136)] = 365734, - [SMALL_STATE(9137)] = 365747, - [SMALL_STATE(9138)] = 365760, - [SMALL_STATE(9139)] = 365773, - [SMALL_STATE(9140)] = 365786, - [SMALL_STATE(9141)] = 365796, - [SMALL_STATE(9142)] = 365806, - [SMALL_STATE(9143)] = 365816, - [SMALL_STATE(9144)] = 365826, - [SMALL_STATE(9145)] = 365834, - [SMALL_STATE(9146)] = 365844, - [SMALL_STATE(9147)] = 365854, - [SMALL_STATE(9148)] = 365864, - [SMALL_STATE(9149)] = 365874, - [SMALL_STATE(9150)] = 365882, - [SMALL_STATE(9151)] = 365892, - [SMALL_STATE(9152)] = 365900, - [SMALL_STATE(9153)] = 365910, - [SMALL_STATE(9154)] = 365920, - [SMALL_STATE(9155)] = 365930, - [SMALL_STATE(9156)] = 365940, - [SMALL_STATE(9157)] = 365950, - [SMALL_STATE(9158)] = 365958, - [SMALL_STATE(9159)] = 365968, - [SMALL_STATE(9160)] = 365978, - [SMALL_STATE(9161)] = 365988, - [SMALL_STATE(9162)] = 365998, - [SMALL_STATE(9163)] = 366008, - [SMALL_STATE(9164)] = 366018, - [SMALL_STATE(9165)] = 366028, - [SMALL_STATE(9166)] = 366038, - [SMALL_STATE(9167)] = 366048, - [SMALL_STATE(9168)] = 366058, - [SMALL_STATE(9169)] = 366068, - [SMALL_STATE(9170)] = 366078, - [SMALL_STATE(9171)] = 366088, - [SMALL_STATE(9172)] = 366098, - [SMALL_STATE(9173)] = 366108, - [SMALL_STATE(9174)] = 366118, - [SMALL_STATE(9175)] = 366128, - [SMALL_STATE(9176)] = 366138, - [SMALL_STATE(9177)] = 366148, - [SMALL_STATE(9178)] = 366158, - [SMALL_STATE(9179)] = 366168, - [SMALL_STATE(9180)] = 366178, - [SMALL_STATE(9181)] = 366188, - [SMALL_STATE(9182)] = 366198, - [SMALL_STATE(9183)] = 366208, - [SMALL_STATE(9184)] = 366218, - [SMALL_STATE(9185)] = 366228, - [SMALL_STATE(9186)] = 366238, - [SMALL_STATE(9187)] = 366248, - [SMALL_STATE(9188)] = 366258, - [SMALL_STATE(9189)] = 366268, - [SMALL_STATE(9190)] = 366278, - [SMALL_STATE(9191)] = 366288, - [SMALL_STATE(9192)] = 366298, - [SMALL_STATE(9193)] = 366306, - [SMALL_STATE(9194)] = 366316, - [SMALL_STATE(9195)] = 366326, - [SMALL_STATE(9196)] = 366336, - [SMALL_STATE(9197)] = 366346, - [SMALL_STATE(9198)] = 366356, - [SMALL_STATE(9199)] = 366366, - [SMALL_STATE(9200)] = 366376, - [SMALL_STATE(9201)] = 366386, - [SMALL_STATE(9202)] = 366396, - [SMALL_STATE(9203)] = 366406, - [SMALL_STATE(9204)] = 366416, - [SMALL_STATE(9205)] = 366426, - [SMALL_STATE(9206)] = 366436, - [SMALL_STATE(9207)] = 366446, - [SMALL_STATE(9208)] = 366456, - [SMALL_STATE(9209)] = 366466, - [SMALL_STATE(9210)] = 366476, - [SMALL_STATE(9211)] = 366486, - [SMALL_STATE(9212)] = 366496, - [SMALL_STATE(9213)] = 366506, - [SMALL_STATE(9214)] = 366516, - [SMALL_STATE(9215)] = 366526, - [SMALL_STATE(9216)] = 366534, - [SMALL_STATE(9217)] = 366544, - [SMALL_STATE(9218)] = 366554, - [SMALL_STATE(9219)] = 366564, - [SMALL_STATE(9220)] = 366574, - [SMALL_STATE(9221)] = 366584, - [SMALL_STATE(9222)] = 366592, - [SMALL_STATE(9223)] = 366602, - [SMALL_STATE(9224)] = 366612, - [SMALL_STATE(9225)] = 366622, - [SMALL_STATE(9226)] = 366632, - [SMALL_STATE(9227)] = 366642, - [SMALL_STATE(9228)] = 366650, - [SMALL_STATE(9229)] = 366660, - [SMALL_STATE(9230)] = 366670, - [SMALL_STATE(9231)] = 366680, - [SMALL_STATE(9232)] = 366690, - [SMALL_STATE(9233)] = 366700, - [SMALL_STATE(9234)] = 366710, - [SMALL_STATE(9235)] = 366720, - [SMALL_STATE(9236)] = 366730, - [SMALL_STATE(9237)] = 366740, - [SMALL_STATE(9238)] = 366750, - [SMALL_STATE(9239)] = 366760, - [SMALL_STATE(9240)] = 366770, - [SMALL_STATE(9241)] = 366778, - [SMALL_STATE(9242)] = 366788, - [SMALL_STATE(9243)] = 366798, - [SMALL_STATE(9244)] = 366808, - [SMALL_STATE(9245)] = 366818, - [SMALL_STATE(9246)] = 366828, - [SMALL_STATE(9247)] = 366838, - [SMALL_STATE(9248)] = 366846, - [SMALL_STATE(9249)] = 366854, - [SMALL_STATE(9250)] = 366864, - [SMALL_STATE(9251)] = 366872, - [SMALL_STATE(9252)] = 366882, - [SMALL_STATE(9253)] = 366892, - [SMALL_STATE(9254)] = 366902, - [SMALL_STATE(9255)] = 366912, - [SMALL_STATE(9256)] = 366920, - [SMALL_STATE(9257)] = 366930, - [SMALL_STATE(9258)] = 366940, - [SMALL_STATE(9259)] = 366950, - [SMALL_STATE(9260)] = 366960, - [SMALL_STATE(9261)] = 366970, - [SMALL_STATE(9262)] = 366980, - [SMALL_STATE(9263)] = 366988, - [SMALL_STATE(9264)] = 366998, - [SMALL_STATE(9265)] = 367008, - [SMALL_STATE(9266)] = 367018, - [SMALL_STATE(9267)] = 367028, - [SMALL_STATE(9268)] = 367038, - [SMALL_STATE(9269)] = 367048, - [SMALL_STATE(9270)] = 367058, - [SMALL_STATE(9271)] = 367068, - [SMALL_STATE(9272)] = 367078, - [SMALL_STATE(9273)] = 367088, - [SMALL_STATE(9274)] = 367098, - [SMALL_STATE(9275)] = 367108, - [SMALL_STATE(9276)] = 367118, - [SMALL_STATE(9277)] = 367128, - [SMALL_STATE(9278)] = 367138, - [SMALL_STATE(9279)] = 367148, - [SMALL_STATE(9280)] = 367158, - [SMALL_STATE(9281)] = 367168, - [SMALL_STATE(9282)] = 367178, - [SMALL_STATE(9283)] = 367188, - [SMALL_STATE(9284)] = 367198, - [SMALL_STATE(9285)] = 367208, - [SMALL_STATE(9286)] = 367218, - [SMALL_STATE(9287)] = 367226, - [SMALL_STATE(9288)] = 367236, - [SMALL_STATE(9289)] = 367246, - [SMALL_STATE(9290)] = 367256, - [SMALL_STATE(9291)] = 367266, - [SMALL_STATE(9292)] = 367276, - [SMALL_STATE(9293)] = 367286, - [SMALL_STATE(9294)] = 367296, - [SMALL_STATE(9295)] = 367306, - [SMALL_STATE(9296)] = 367316, - [SMALL_STATE(9297)] = 367326, - [SMALL_STATE(9298)] = 367336, - [SMALL_STATE(9299)] = 367344, - [SMALL_STATE(9300)] = 367354, - [SMALL_STATE(9301)] = 367364, - [SMALL_STATE(9302)] = 367374, - [SMALL_STATE(9303)] = 367384, - [SMALL_STATE(9304)] = 367394, - [SMALL_STATE(9305)] = 367404, - [SMALL_STATE(9306)] = 367414, - [SMALL_STATE(9307)] = 367424, - [SMALL_STATE(9308)] = 367434, - [SMALL_STATE(9309)] = 367444, - [SMALL_STATE(9310)] = 367454, - [SMALL_STATE(9311)] = 367462, - [SMALL_STATE(9312)] = 367470, - [SMALL_STATE(9313)] = 367480, - [SMALL_STATE(9314)] = 367490, - [SMALL_STATE(9315)] = 367500, - [SMALL_STATE(9316)] = 367510, - [SMALL_STATE(9317)] = 367520, - [SMALL_STATE(9318)] = 367530, - [SMALL_STATE(9319)] = 367540, - [SMALL_STATE(9320)] = 367548, - [SMALL_STATE(9321)] = 367556, - [SMALL_STATE(9322)] = 367566, - [SMALL_STATE(9323)] = 367576, - [SMALL_STATE(9324)] = 367586, - [SMALL_STATE(9325)] = 367596, - [SMALL_STATE(9326)] = 367606, - [SMALL_STATE(9327)] = 367616, - [SMALL_STATE(9328)] = 367626, - [SMALL_STATE(9329)] = 367636, - [SMALL_STATE(9330)] = 367646, - [SMALL_STATE(9331)] = 367656, - [SMALL_STATE(9332)] = 367666, - [SMALL_STATE(9333)] = 367676, - [SMALL_STATE(9334)] = 367686, - [SMALL_STATE(9335)] = 367696, - [SMALL_STATE(9336)] = 367706, - [SMALL_STATE(9337)] = 367716, - [SMALL_STATE(9338)] = 367726, - [SMALL_STATE(9339)] = 367736, - [SMALL_STATE(9340)] = 367746, - [SMALL_STATE(9341)] = 367756, - [SMALL_STATE(9342)] = 367766, - [SMALL_STATE(9343)] = 367776, - [SMALL_STATE(9344)] = 367786, - [SMALL_STATE(9345)] = 367794, - [SMALL_STATE(9346)] = 367804, - [SMALL_STATE(9347)] = 367812, - [SMALL_STATE(9348)] = 367822, - [SMALL_STATE(9349)] = 367832, - [SMALL_STATE(9350)] = 367842, - [SMALL_STATE(9351)] = 367852, - [SMALL_STATE(9352)] = 367862, - [SMALL_STATE(9353)] = 367872, - [SMALL_STATE(9354)] = 367882, - [SMALL_STATE(9355)] = 367892, - [SMALL_STATE(9356)] = 367902, - [SMALL_STATE(9357)] = 367910, - [SMALL_STATE(9358)] = 367918, - [SMALL_STATE(9359)] = 367928, - [SMALL_STATE(9360)] = 367938, - [SMALL_STATE(9361)] = 367948, - [SMALL_STATE(9362)] = 367958, - [SMALL_STATE(9363)] = 367968, - [SMALL_STATE(9364)] = 367978, - [SMALL_STATE(9365)] = 367986, - [SMALL_STATE(9366)] = 367994, - [SMALL_STATE(9367)] = 368004, - [SMALL_STATE(9368)] = 368014, - [SMALL_STATE(9369)] = 368024, - [SMALL_STATE(9370)] = 368034, - [SMALL_STATE(9371)] = 368044, - [SMALL_STATE(9372)] = 368054, - [SMALL_STATE(9373)] = 368064, - [SMALL_STATE(9374)] = 368074, - [SMALL_STATE(9375)] = 368084, - [SMALL_STATE(9376)] = 368094, - [SMALL_STATE(9377)] = 368104, - [SMALL_STATE(9378)] = 368114, - [SMALL_STATE(9379)] = 368124, - [SMALL_STATE(9380)] = 368132, - [SMALL_STATE(9381)] = 368142, - [SMALL_STATE(9382)] = 368152, - [SMALL_STATE(9383)] = 368162, - [SMALL_STATE(9384)] = 368172, - [SMALL_STATE(9385)] = 368182, - [SMALL_STATE(9386)] = 368192, - [SMALL_STATE(9387)] = 368202, - [SMALL_STATE(9388)] = 368210, - [SMALL_STATE(9389)] = 368220, - [SMALL_STATE(9390)] = 368230, - [SMALL_STATE(9391)] = 368240, - [SMALL_STATE(9392)] = 368250, - [SMALL_STATE(9393)] = 368260, - [SMALL_STATE(9394)] = 368270, - [SMALL_STATE(9395)] = 368280, - [SMALL_STATE(9396)] = 368290, - [SMALL_STATE(9397)] = 368300, - [SMALL_STATE(9398)] = 368310, - [SMALL_STATE(9399)] = 368320, - [SMALL_STATE(9400)] = 368330, - [SMALL_STATE(9401)] = 368340, - [SMALL_STATE(9402)] = 368350, - [SMALL_STATE(9403)] = 368360, - [SMALL_STATE(9404)] = 368370, - [SMALL_STATE(9405)] = 368380, - [SMALL_STATE(9406)] = 368390, - [SMALL_STATE(9407)] = 368400, - [SMALL_STATE(9408)] = 368410, - [SMALL_STATE(9409)] = 368420, - [SMALL_STATE(9410)] = 368430, - [SMALL_STATE(9411)] = 368440, - [SMALL_STATE(9412)] = 368450, - [SMALL_STATE(9413)] = 368460, - [SMALL_STATE(9414)] = 368470, - [SMALL_STATE(9415)] = 368480, - [SMALL_STATE(9416)] = 368490, - [SMALL_STATE(9417)] = 368500, - [SMALL_STATE(9418)] = 368510, - [SMALL_STATE(9419)] = 368520, - [SMALL_STATE(9420)] = 368530, - [SMALL_STATE(9421)] = 368540, - [SMALL_STATE(9422)] = 368550, - [SMALL_STATE(9423)] = 368560, - [SMALL_STATE(9424)] = 368570, - [SMALL_STATE(9425)] = 368580, - [SMALL_STATE(9426)] = 368590, - [SMALL_STATE(9427)] = 368600, - [SMALL_STATE(9428)] = 368610, - [SMALL_STATE(9429)] = 368620, - [SMALL_STATE(9430)] = 368630, - [SMALL_STATE(9431)] = 368640, - [SMALL_STATE(9432)] = 368650, - [SMALL_STATE(9433)] = 368660, - [SMALL_STATE(9434)] = 368670, - [SMALL_STATE(9435)] = 368680, - [SMALL_STATE(9436)] = 368690, - [SMALL_STATE(9437)] = 368698, - [SMALL_STATE(9438)] = 368708, - [SMALL_STATE(9439)] = 368718, - [SMALL_STATE(9440)] = 368728, - [SMALL_STATE(9441)] = 368738, - [SMALL_STATE(9442)] = 368748, - [SMALL_STATE(9443)] = 368758, - [SMALL_STATE(9444)] = 368768, - [SMALL_STATE(9445)] = 368778, - [SMALL_STATE(9446)] = 368788, - [SMALL_STATE(9447)] = 368798, - [SMALL_STATE(9448)] = 368808, - [SMALL_STATE(9449)] = 368818, - [SMALL_STATE(9450)] = 368826, - [SMALL_STATE(9451)] = 368836, - [SMALL_STATE(9452)] = 368846, - [SMALL_STATE(9453)] = 368856, - [SMALL_STATE(9454)] = 368866, - [SMALL_STATE(9455)] = 368876, - [SMALL_STATE(9456)] = 368886, - [SMALL_STATE(9457)] = 368896, - [SMALL_STATE(9458)] = 368906, - [SMALL_STATE(9459)] = 368916, - [SMALL_STATE(9460)] = 368926, - [SMALL_STATE(9461)] = 368936, - [SMALL_STATE(9462)] = 368946, - [SMALL_STATE(9463)] = 368956, - [SMALL_STATE(9464)] = 368966, - [SMALL_STATE(9465)] = 368976, - [SMALL_STATE(9466)] = 368986, - [SMALL_STATE(9467)] = 368996, - [SMALL_STATE(9468)] = 369006, - [SMALL_STATE(9469)] = 369016, - [SMALL_STATE(9470)] = 369026, - [SMALL_STATE(9471)] = 369036, - [SMALL_STATE(9472)] = 369046, - [SMALL_STATE(9473)] = 369056, - [SMALL_STATE(9474)] = 369066, - [SMALL_STATE(9475)] = 369076, - [SMALL_STATE(9476)] = 369086, - [SMALL_STATE(9477)] = 369096, - [SMALL_STATE(9478)] = 369106, - [SMALL_STATE(9479)] = 369116, - [SMALL_STATE(9480)] = 369126, - [SMALL_STATE(9481)] = 369136, - [SMALL_STATE(9482)] = 369146, - [SMALL_STATE(9483)] = 369156, - [SMALL_STATE(9484)] = 369166, - [SMALL_STATE(9485)] = 369176, - [SMALL_STATE(9486)] = 369186, - [SMALL_STATE(9487)] = 369196, - [SMALL_STATE(9488)] = 369206, - [SMALL_STATE(9489)] = 369216, - [SMALL_STATE(9490)] = 369226, - [SMALL_STATE(9491)] = 369236, - [SMALL_STATE(9492)] = 369246, - [SMALL_STATE(9493)] = 369256, - [SMALL_STATE(9494)] = 369266, - [SMALL_STATE(9495)] = 369276, - [SMALL_STATE(9496)] = 369286, - [SMALL_STATE(9497)] = 369294, - [SMALL_STATE(9498)] = 369304, - [SMALL_STATE(9499)] = 369314, - [SMALL_STATE(9500)] = 369324, - [SMALL_STATE(9501)] = 369334, - [SMALL_STATE(9502)] = 369344, - [SMALL_STATE(9503)] = 369354, - [SMALL_STATE(9504)] = 369364, - [SMALL_STATE(9505)] = 369372, - [SMALL_STATE(9506)] = 369382, - [SMALL_STATE(9507)] = 369392, - [SMALL_STATE(9508)] = 369402, - [SMALL_STATE(9509)] = 369412, - [SMALL_STATE(9510)] = 369422, - [SMALL_STATE(9511)] = 369432, - [SMALL_STATE(9512)] = 369442, - [SMALL_STATE(9513)] = 369452, - [SMALL_STATE(9514)] = 369462, - [SMALL_STATE(9515)] = 369472, - [SMALL_STATE(9516)] = 369482, - [SMALL_STATE(9517)] = 369492, - [SMALL_STATE(9518)] = 369502, - [SMALL_STATE(9519)] = 369512, - [SMALL_STATE(9520)] = 369522, - [SMALL_STATE(9521)] = 369532, - [SMALL_STATE(9522)] = 369542, - [SMALL_STATE(9523)] = 369552, - [SMALL_STATE(9524)] = 369562, - [SMALL_STATE(9525)] = 369572, - [SMALL_STATE(9526)] = 369582, - [SMALL_STATE(9527)] = 369592, - [SMALL_STATE(9528)] = 369602, - [SMALL_STATE(9529)] = 369612, - [SMALL_STATE(9530)] = 369622, - [SMALL_STATE(9531)] = 369632, - [SMALL_STATE(9532)] = 369642, - [SMALL_STATE(9533)] = 369652, - [SMALL_STATE(9534)] = 369662, - [SMALL_STATE(9535)] = 369672, - [SMALL_STATE(9536)] = 369682, - [SMALL_STATE(9537)] = 369692, - [SMALL_STATE(9538)] = 369702, - [SMALL_STATE(9539)] = 369712, - [SMALL_STATE(9540)] = 369722, - [SMALL_STATE(9541)] = 369732, - [SMALL_STATE(9542)] = 369742, - [SMALL_STATE(9543)] = 369750, - [SMALL_STATE(9544)] = 369760, - [SMALL_STATE(9545)] = 369770, - [SMALL_STATE(9546)] = 369780, - [SMALL_STATE(9547)] = 369790, - [SMALL_STATE(9548)] = 369800, - [SMALL_STATE(9549)] = 369808, - [SMALL_STATE(9550)] = 369818, - [SMALL_STATE(9551)] = 369828, - [SMALL_STATE(9552)] = 369838, - [SMALL_STATE(9553)] = 369848, - [SMALL_STATE(9554)] = 369856, - [SMALL_STATE(9555)] = 369866, - [SMALL_STATE(9556)] = 369876, - [SMALL_STATE(9557)] = 369886, - [SMALL_STATE(9558)] = 369896, - [SMALL_STATE(9559)] = 369906, - [SMALL_STATE(9560)] = 369914, - [SMALL_STATE(9561)] = 369924, - [SMALL_STATE(9562)] = 369934, - [SMALL_STATE(9563)] = 369944, - [SMALL_STATE(9564)] = 369954, - [SMALL_STATE(9565)] = 369964, - [SMALL_STATE(9566)] = 369974, - [SMALL_STATE(9567)] = 369984, - [SMALL_STATE(9568)] = 369994, - [SMALL_STATE(9569)] = 370002, - [SMALL_STATE(9570)] = 370012, - [SMALL_STATE(9571)] = 370022, - [SMALL_STATE(9572)] = 370032, - [SMALL_STATE(9573)] = 370042, - [SMALL_STATE(9574)] = 370052, - [SMALL_STATE(9575)] = 370060, - [SMALL_STATE(9576)] = 370070, - [SMALL_STATE(9577)] = 370078, - [SMALL_STATE(9578)] = 370088, - [SMALL_STATE(9579)] = 370098, - [SMALL_STATE(9580)] = 370108, - [SMALL_STATE(9581)] = 370118, - [SMALL_STATE(9582)] = 370126, - [SMALL_STATE(9583)] = 370134, - [SMALL_STATE(9584)] = 370144, - [SMALL_STATE(9585)] = 370154, - [SMALL_STATE(9586)] = 370164, - [SMALL_STATE(9587)] = 370172, - [SMALL_STATE(9588)] = 370182, - [SMALL_STATE(9589)] = 370192, - [SMALL_STATE(9590)] = 370202, - [SMALL_STATE(9591)] = 370212, - [SMALL_STATE(9592)] = 370222, - [SMALL_STATE(9593)] = 370232, - [SMALL_STATE(9594)] = 370242, - [SMALL_STATE(9595)] = 370252, - [SMALL_STATE(9596)] = 370262, - [SMALL_STATE(9597)] = 370272, - [SMALL_STATE(9598)] = 370282, - [SMALL_STATE(9599)] = 370292, - [SMALL_STATE(9600)] = 370300, - [SMALL_STATE(9601)] = 370310, - [SMALL_STATE(9602)] = 370320, - [SMALL_STATE(9603)] = 370330, - [SMALL_STATE(9604)] = 370340, - [SMALL_STATE(9605)] = 370350, - [SMALL_STATE(9606)] = 370360, - [SMALL_STATE(9607)] = 370370, - [SMALL_STATE(9608)] = 370380, - [SMALL_STATE(9609)] = 370390, - [SMALL_STATE(9610)] = 370400, - [SMALL_STATE(9611)] = 370410, - [SMALL_STATE(9612)] = 370420, - [SMALL_STATE(9613)] = 370428, - [SMALL_STATE(9614)] = 370438, - [SMALL_STATE(9615)] = 370448, - [SMALL_STATE(9616)] = 370458, - [SMALL_STATE(9617)] = 370468, - [SMALL_STATE(9618)] = 370478, - [SMALL_STATE(9619)] = 370488, - [SMALL_STATE(9620)] = 370498, - [SMALL_STATE(9621)] = 370508, - [SMALL_STATE(9622)] = 370518, - [SMALL_STATE(9623)] = 370528, - [SMALL_STATE(9624)] = 370538, - [SMALL_STATE(9625)] = 370548, - [SMALL_STATE(9626)] = 370558, - [SMALL_STATE(9627)] = 370568, - [SMALL_STATE(9628)] = 370578, - [SMALL_STATE(9629)] = 370588, - [SMALL_STATE(9630)] = 370598, - [SMALL_STATE(9631)] = 370608, - [SMALL_STATE(9632)] = 370618, - [SMALL_STATE(9633)] = 370628, - [SMALL_STATE(9634)] = 370638, - [SMALL_STATE(9635)] = 370648, - [SMALL_STATE(9636)] = 370658, - [SMALL_STATE(9637)] = 370668, - [SMALL_STATE(9638)] = 370678, - [SMALL_STATE(9639)] = 370688, - [SMALL_STATE(9640)] = 370698, - [SMALL_STATE(9641)] = 370708, - [SMALL_STATE(9642)] = 370718, - [SMALL_STATE(9643)] = 370728, - [SMALL_STATE(9644)] = 370735, - [SMALL_STATE(9645)] = 370742, - [SMALL_STATE(9646)] = 370749, - [SMALL_STATE(9647)] = 370756, - [SMALL_STATE(9648)] = 370763, - [SMALL_STATE(9649)] = 370770, - [SMALL_STATE(9650)] = 370777, - [SMALL_STATE(9651)] = 370784, - [SMALL_STATE(9652)] = 370791, - [SMALL_STATE(9653)] = 370798, - [SMALL_STATE(9654)] = 370805, - [SMALL_STATE(9655)] = 370812, - [SMALL_STATE(9656)] = 370819, - [SMALL_STATE(9657)] = 370826, - [SMALL_STATE(9658)] = 370833, - [SMALL_STATE(9659)] = 370840, - [SMALL_STATE(9660)] = 370847, - [SMALL_STATE(9661)] = 370854, - [SMALL_STATE(9662)] = 370861, - [SMALL_STATE(9663)] = 370868, - [SMALL_STATE(9664)] = 370875, - [SMALL_STATE(9665)] = 370882, - [SMALL_STATE(9666)] = 370889, - [SMALL_STATE(9667)] = 370896, - [SMALL_STATE(9668)] = 370903, - [SMALL_STATE(9669)] = 370910, - [SMALL_STATE(9670)] = 370917, - [SMALL_STATE(9671)] = 370924, - [SMALL_STATE(9672)] = 370931, - [SMALL_STATE(9673)] = 370938, - [SMALL_STATE(9674)] = 370945, - [SMALL_STATE(9675)] = 370952, - [SMALL_STATE(9676)] = 370959, - [SMALL_STATE(9677)] = 370966, - [SMALL_STATE(9678)] = 370973, - [SMALL_STATE(9679)] = 370980, - [SMALL_STATE(9680)] = 370987, - [SMALL_STATE(9681)] = 370994, - [SMALL_STATE(9682)] = 371001, - [SMALL_STATE(9683)] = 371008, - [SMALL_STATE(9684)] = 371015, - [SMALL_STATE(9685)] = 371022, - [SMALL_STATE(9686)] = 371029, - [SMALL_STATE(9687)] = 371036, - [SMALL_STATE(9688)] = 371043, - [SMALL_STATE(9689)] = 371050, - [SMALL_STATE(9690)] = 371057, - [SMALL_STATE(9691)] = 371064, - [SMALL_STATE(9692)] = 371071, - [SMALL_STATE(9693)] = 371078, - [SMALL_STATE(9694)] = 371085, - [SMALL_STATE(9695)] = 371092, - [SMALL_STATE(9696)] = 371099, - [SMALL_STATE(9697)] = 371106, - [SMALL_STATE(9698)] = 371113, - [SMALL_STATE(9699)] = 371120, - [SMALL_STATE(9700)] = 371127, - [SMALL_STATE(9701)] = 371134, - [SMALL_STATE(9702)] = 371141, - [SMALL_STATE(9703)] = 371148, - [SMALL_STATE(9704)] = 371155, - [SMALL_STATE(9705)] = 371162, - [SMALL_STATE(9706)] = 371169, - [SMALL_STATE(9707)] = 371176, - [SMALL_STATE(9708)] = 371183, - [SMALL_STATE(9709)] = 371190, - [SMALL_STATE(9710)] = 371197, - [SMALL_STATE(9711)] = 371204, - [SMALL_STATE(9712)] = 371211, - [SMALL_STATE(9713)] = 371218, - [SMALL_STATE(9714)] = 371225, - [SMALL_STATE(9715)] = 371232, - [SMALL_STATE(9716)] = 371239, - [SMALL_STATE(9717)] = 371246, - [SMALL_STATE(9718)] = 371253, - [SMALL_STATE(9719)] = 371260, - [SMALL_STATE(9720)] = 371267, - [SMALL_STATE(9721)] = 371274, - [SMALL_STATE(9722)] = 371281, - [SMALL_STATE(9723)] = 371288, - [SMALL_STATE(9724)] = 371295, - [SMALL_STATE(9725)] = 371302, - [SMALL_STATE(9726)] = 371309, - [SMALL_STATE(9727)] = 371316, - [SMALL_STATE(9728)] = 371323, - [SMALL_STATE(9729)] = 371330, - [SMALL_STATE(9730)] = 371337, - [SMALL_STATE(9731)] = 371344, - [SMALL_STATE(9732)] = 371351, - [SMALL_STATE(9733)] = 371358, - [SMALL_STATE(9734)] = 371365, - [SMALL_STATE(9735)] = 371372, - [SMALL_STATE(9736)] = 371379, - [SMALL_STATE(9737)] = 371386, - [SMALL_STATE(9738)] = 371393, - [SMALL_STATE(9739)] = 371400, - [SMALL_STATE(9740)] = 371407, - [SMALL_STATE(9741)] = 371414, - [SMALL_STATE(9742)] = 371421, - [SMALL_STATE(9743)] = 371428, - [SMALL_STATE(9744)] = 371435, - [SMALL_STATE(9745)] = 371442, - [SMALL_STATE(9746)] = 371449, - [SMALL_STATE(9747)] = 371456, - [SMALL_STATE(9748)] = 371463, - [SMALL_STATE(9749)] = 371470, - [SMALL_STATE(9750)] = 371477, - [SMALL_STATE(9751)] = 371484, - [SMALL_STATE(9752)] = 371491, - [SMALL_STATE(9753)] = 371498, - [SMALL_STATE(9754)] = 371505, - [SMALL_STATE(9755)] = 371512, - [SMALL_STATE(9756)] = 371519, - [SMALL_STATE(9757)] = 371526, - [SMALL_STATE(9758)] = 371533, - [SMALL_STATE(9759)] = 371540, - [SMALL_STATE(9760)] = 371547, - [SMALL_STATE(9761)] = 371554, - [SMALL_STATE(9762)] = 371561, - [SMALL_STATE(9763)] = 371568, - [SMALL_STATE(9764)] = 371575, - [SMALL_STATE(9765)] = 371582, - [SMALL_STATE(9766)] = 371589, - [SMALL_STATE(9767)] = 371596, - [SMALL_STATE(9768)] = 371603, - [SMALL_STATE(9769)] = 371610, - [SMALL_STATE(9770)] = 371617, - [SMALL_STATE(9771)] = 371624, - [SMALL_STATE(9772)] = 371631, - [SMALL_STATE(9773)] = 371638, - [SMALL_STATE(9774)] = 371645, - [SMALL_STATE(9775)] = 371652, - [SMALL_STATE(9776)] = 371659, - [SMALL_STATE(9777)] = 371666, - [SMALL_STATE(9778)] = 371673, - [SMALL_STATE(9779)] = 371680, - [SMALL_STATE(9780)] = 371687, - [SMALL_STATE(9781)] = 371694, - [SMALL_STATE(9782)] = 371701, - [SMALL_STATE(9783)] = 371708, - [SMALL_STATE(9784)] = 371715, - [SMALL_STATE(9785)] = 371722, - [SMALL_STATE(9786)] = 371729, - [SMALL_STATE(9787)] = 371736, - [SMALL_STATE(9788)] = 371743, - [SMALL_STATE(9789)] = 371750, - [SMALL_STATE(9790)] = 371757, - [SMALL_STATE(9791)] = 371764, - [SMALL_STATE(9792)] = 371771, - [SMALL_STATE(9793)] = 371778, - [SMALL_STATE(9794)] = 371785, - [SMALL_STATE(9795)] = 371792, - [SMALL_STATE(9796)] = 371799, - [SMALL_STATE(9797)] = 371806, - [SMALL_STATE(9798)] = 371813, - [SMALL_STATE(9799)] = 371820, - [SMALL_STATE(9800)] = 371827, - [SMALL_STATE(9801)] = 371834, - [SMALL_STATE(9802)] = 371841, - [SMALL_STATE(9803)] = 371848, - [SMALL_STATE(9804)] = 371855, - [SMALL_STATE(9805)] = 371862, - [SMALL_STATE(9806)] = 371869, - [SMALL_STATE(9807)] = 371876, - [SMALL_STATE(9808)] = 371883, - [SMALL_STATE(9809)] = 371890, - [SMALL_STATE(9810)] = 371897, - [SMALL_STATE(9811)] = 371904, - [SMALL_STATE(9812)] = 371911, - [SMALL_STATE(9813)] = 371918, - [SMALL_STATE(9814)] = 371925, - [SMALL_STATE(9815)] = 371932, - [SMALL_STATE(9816)] = 371939, - [SMALL_STATE(9817)] = 371946, - [SMALL_STATE(9818)] = 371953, - [SMALL_STATE(9819)] = 371960, - [SMALL_STATE(9820)] = 371967, - [SMALL_STATE(9821)] = 371974, - [SMALL_STATE(9822)] = 371981, - [SMALL_STATE(9823)] = 371988, - [SMALL_STATE(9824)] = 371995, - [SMALL_STATE(9825)] = 372002, - [SMALL_STATE(9826)] = 372009, - [SMALL_STATE(9827)] = 372016, - [SMALL_STATE(9828)] = 372023, - [SMALL_STATE(9829)] = 372030, - [SMALL_STATE(9830)] = 372037, - [SMALL_STATE(9831)] = 372044, - [SMALL_STATE(9832)] = 372051, - [SMALL_STATE(9833)] = 372058, - [SMALL_STATE(9834)] = 372065, - [SMALL_STATE(9835)] = 372072, - [SMALL_STATE(9836)] = 372079, - [SMALL_STATE(9837)] = 372086, - [SMALL_STATE(9838)] = 372093, - [SMALL_STATE(9839)] = 372100, - [SMALL_STATE(9840)] = 372107, - [SMALL_STATE(9841)] = 372114, - [SMALL_STATE(9842)] = 372121, - [SMALL_STATE(9843)] = 372128, - [SMALL_STATE(9844)] = 372135, - [SMALL_STATE(9845)] = 372142, - [SMALL_STATE(9846)] = 372149, - [SMALL_STATE(9847)] = 372156, - [SMALL_STATE(9848)] = 372163, - [SMALL_STATE(9849)] = 372170, - [SMALL_STATE(9850)] = 372177, - [SMALL_STATE(9851)] = 372184, - [SMALL_STATE(9852)] = 372191, - [SMALL_STATE(9853)] = 372198, - [SMALL_STATE(9854)] = 372205, - [SMALL_STATE(9855)] = 372212, - [SMALL_STATE(9856)] = 372219, - [SMALL_STATE(9857)] = 372226, - [SMALL_STATE(9858)] = 372233, - [SMALL_STATE(9859)] = 372240, - [SMALL_STATE(9860)] = 372247, - [SMALL_STATE(9861)] = 372254, - [SMALL_STATE(9862)] = 372261, - [SMALL_STATE(9863)] = 372268, - [SMALL_STATE(9864)] = 372275, - [SMALL_STATE(9865)] = 372282, - [SMALL_STATE(9866)] = 372289, - [SMALL_STATE(9867)] = 372296, - [SMALL_STATE(9868)] = 372303, - [SMALL_STATE(9869)] = 372310, - [SMALL_STATE(9870)] = 372317, - [SMALL_STATE(9871)] = 372324, - [SMALL_STATE(9872)] = 372331, - [SMALL_STATE(9873)] = 372338, - [SMALL_STATE(9874)] = 372345, - [SMALL_STATE(9875)] = 372352, - [SMALL_STATE(9876)] = 372359, - [SMALL_STATE(9877)] = 372366, - [SMALL_STATE(9878)] = 372373, - [SMALL_STATE(9879)] = 372380, - [SMALL_STATE(9880)] = 372387, - [SMALL_STATE(9881)] = 372394, - [SMALL_STATE(9882)] = 372401, - [SMALL_STATE(9883)] = 372408, - [SMALL_STATE(9884)] = 372415, - [SMALL_STATE(9885)] = 372422, - [SMALL_STATE(9886)] = 372429, - [SMALL_STATE(9887)] = 372436, - [SMALL_STATE(9888)] = 372443, - [SMALL_STATE(9889)] = 372450, - [SMALL_STATE(9890)] = 372457, - [SMALL_STATE(9891)] = 372464, - [SMALL_STATE(9892)] = 372471, - [SMALL_STATE(9893)] = 372478, - [SMALL_STATE(9894)] = 372485, - [SMALL_STATE(9895)] = 372492, - [SMALL_STATE(9896)] = 372499, - [SMALL_STATE(9897)] = 372506, - [SMALL_STATE(9898)] = 372513, - [SMALL_STATE(9899)] = 372520, - [SMALL_STATE(9900)] = 372527, - [SMALL_STATE(9901)] = 372534, - [SMALL_STATE(9902)] = 372541, - [SMALL_STATE(9903)] = 372548, - [SMALL_STATE(9904)] = 372555, - [SMALL_STATE(9905)] = 372562, - [SMALL_STATE(9906)] = 372569, - [SMALL_STATE(9907)] = 372576, - [SMALL_STATE(9908)] = 372583, - [SMALL_STATE(9909)] = 372590, - [SMALL_STATE(9910)] = 372597, - [SMALL_STATE(9911)] = 372604, - [SMALL_STATE(9912)] = 372611, - [SMALL_STATE(9913)] = 372618, - [SMALL_STATE(9914)] = 372625, - [SMALL_STATE(9915)] = 372632, - [SMALL_STATE(9916)] = 372639, - [SMALL_STATE(9917)] = 372646, - [SMALL_STATE(9918)] = 372653, - [SMALL_STATE(9919)] = 372660, - [SMALL_STATE(9920)] = 372667, - [SMALL_STATE(9921)] = 372674, - [SMALL_STATE(9922)] = 372681, - [SMALL_STATE(9923)] = 372688, - [SMALL_STATE(9924)] = 372695, - [SMALL_STATE(9925)] = 372702, - [SMALL_STATE(9926)] = 372709, - [SMALL_STATE(9927)] = 372716, - [SMALL_STATE(9928)] = 372723, - [SMALL_STATE(9929)] = 372730, - [SMALL_STATE(9930)] = 372737, - [SMALL_STATE(9931)] = 372744, - [SMALL_STATE(9932)] = 372751, - [SMALL_STATE(9933)] = 372758, - [SMALL_STATE(9934)] = 372765, - [SMALL_STATE(9935)] = 372772, - [SMALL_STATE(9936)] = 372779, - [SMALL_STATE(9937)] = 372786, - [SMALL_STATE(9938)] = 372793, - [SMALL_STATE(9939)] = 372800, - [SMALL_STATE(9940)] = 372807, - [SMALL_STATE(9941)] = 372814, - [SMALL_STATE(9942)] = 372821, - [SMALL_STATE(9943)] = 372828, - [SMALL_STATE(9944)] = 372835, - [SMALL_STATE(9945)] = 372842, - [SMALL_STATE(9946)] = 372849, - [SMALL_STATE(9947)] = 372856, - [SMALL_STATE(9948)] = 372863, - [SMALL_STATE(9949)] = 372870, - [SMALL_STATE(9950)] = 372877, - [SMALL_STATE(9951)] = 372884, - [SMALL_STATE(9952)] = 372891, - [SMALL_STATE(9953)] = 372898, - [SMALL_STATE(9954)] = 372905, - [SMALL_STATE(9955)] = 372912, - [SMALL_STATE(9956)] = 372919, - [SMALL_STATE(9957)] = 372926, - [SMALL_STATE(9958)] = 372933, - [SMALL_STATE(9959)] = 372940, - [SMALL_STATE(9960)] = 372947, - [SMALL_STATE(9961)] = 372954, - [SMALL_STATE(9962)] = 372961, - [SMALL_STATE(9963)] = 372968, - [SMALL_STATE(9964)] = 372975, - [SMALL_STATE(9965)] = 372982, - [SMALL_STATE(9966)] = 372989, - [SMALL_STATE(9967)] = 372996, - [SMALL_STATE(9968)] = 373003, - [SMALL_STATE(9969)] = 373010, - [SMALL_STATE(9970)] = 373017, - [SMALL_STATE(9971)] = 373024, - [SMALL_STATE(9972)] = 373031, - [SMALL_STATE(9973)] = 373038, - [SMALL_STATE(9974)] = 373045, - [SMALL_STATE(9975)] = 373052, - [SMALL_STATE(9976)] = 373059, - [SMALL_STATE(9977)] = 373066, - [SMALL_STATE(9978)] = 373073, - [SMALL_STATE(9979)] = 373080, - [SMALL_STATE(9980)] = 373087, - [SMALL_STATE(9981)] = 373094, - [SMALL_STATE(9982)] = 373101, - [SMALL_STATE(9983)] = 373108, - [SMALL_STATE(9984)] = 373115, - [SMALL_STATE(9985)] = 373122, - [SMALL_STATE(9986)] = 373129, - [SMALL_STATE(9987)] = 373136, - [SMALL_STATE(9988)] = 373143, - [SMALL_STATE(9989)] = 373150, - [SMALL_STATE(9990)] = 373157, - [SMALL_STATE(9991)] = 373164, - [SMALL_STATE(9992)] = 373171, - [SMALL_STATE(9993)] = 373178, - [SMALL_STATE(9994)] = 373185, - [SMALL_STATE(9995)] = 373192, - [SMALL_STATE(9996)] = 373199, - [SMALL_STATE(9997)] = 373206, - [SMALL_STATE(9998)] = 373213, - [SMALL_STATE(9999)] = 373220, - [SMALL_STATE(10000)] = 373227, - [SMALL_STATE(10001)] = 373234, - [SMALL_STATE(10002)] = 373241, - [SMALL_STATE(10003)] = 373248, - [SMALL_STATE(10004)] = 373255, - [SMALL_STATE(10005)] = 373262, - [SMALL_STATE(10006)] = 373269, - [SMALL_STATE(10007)] = 373276, - [SMALL_STATE(10008)] = 373283, - [SMALL_STATE(10009)] = 373290, - [SMALL_STATE(10010)] = 373297, - [SMALL_STATE(10011)] = 373304, - [SMALL_STATE(10012)] = 373311, - [SMALL_STATE(10013)] = 373318, - [SMALL_STATE(10014)] = 373325, - [SMALL_STATE(10015)] = 373332, - [SMALL_STATE(10016)] = 373339, - [SMALL_STATE(10017)] = 373346, - [SMALL_STATE(10018)] = 373353, - [SMALL_STATE(10019)] = 373360, - [SMALL_STATE(10020)] = 373367, - [SMALL_STATE(10021)] = 373374, - [SMALL_STATE(10022)] = 373381, - [SMALL_STATE(10023)] = 373388, - [SMALL_STATE(10024)] = 373395, - [SMALL_STATE(10025)] = 373402, - [SMALL_STATE(10026)] = 373409, - [SMALL_STATE(10027)] = 373416, - [SMALL_STATE(10028)] = 373423, - [SMALL_STATE(10029)] = 373430, - [SMALL_STATE(10030)] = 373437, - [SMALL_STATE(10031)] = 373444, - [SMALL_STATE(10032)] = 373451, - [SMALL_STATE(10033)] = 373458, - [SMALL_STATE(10034)] = 373465, - [SMALL_STATE(10035)] = 373472, - [SMALL_STATE(10036)] = 373479, - [SMALL_STATE(10037)] = 373486, - [SMALL_STATE(10038)] = 373493, - [SMALL_STATE(10039)] = 373500, - [SMALL_STATE(10040)] = 373507, - [SMALL_STATE(10041)] = 373514, - [SMALL_STATE(10042)] = 373521, - [SMALL_STATE(10043)] = 373528, - [SMALL_STATE(10044)] = 373535, - [SMALL_STATE(10045)] = 373542, - [SMALL_STATE(10046)] = 373549, - [SMALL_STATE(10047)] = 373556, - [SMALL_STATE(10048)] = 373563, - [SMALL_STATE(10049)] = 373570, - [SMALL_STATE(10050)] = 373577, - [SMALL_STATE(10051)] = 373584, - [SMALL_STATE(10052)] = 373591, - [SMALL_STATE(10053)] = 373598, - [SMALL_STATE(10054)] = 373605, - [SMALL_STATE(10055)] = 373612, - [SMALL_STATE(10056)] = 373619, - [SMALL_STATE(10057)] = 373626, - [SMALL_STATE(10058)] = 373633, - [SMALL_STATE(10059)] = 373640, - [SMALL_STATE(10060)] = 373647, - [SMALL_STATE(10061)] = 373654, - [SMALL_STATE(10062)] = 373661, - [SMALL_STATE(10063)] = 373668, - [SMALL_STATE(10064)] = 373675, - [SMALL_STATE(10065)] = 373682, - [SMALL_STATE(10066)] = 373689, - [SMALL_STATE(10067)] = 373696, - [SMALL_STATE(10068)] = 373703, - [SMALL_STATE(10069)] = 373710, - [SMALL_STATE(10070)] = 373717, - [SMALL_STATE(10071)] = 373724, - [SMALL_STATE(10072)] = 373731, - [SMALL_STATE(10073)] = 373738, - [SMALL_STATE(10074)] = 373745, - [SMALL_STATE(10075)] = 373752, - [SMALL_STATE(10076)] = 373759, - [SMALL_STATE(10077)] = 373766, - [SMALL_STATE(10078)] = 373773, - [SMALL_STATE(10079)] = 373780, - [SMALL_STATE(10080)] = 373787, - [SMALL_STATE(10081)] = 373794, - [SMALL_STATE(10082)] = 373801, - [SMALL_STATE(10083)] = 373808, - [SMALL_STATE(10084)] = 373815, - [SMALL_STATE(10085)] = 373822, - [SMALL_STATE(10086)] = 373829, - [SMALL_STATE(10087)] = 373836, - [SMALL_STATE(10088)] = 373843, - [SMALL_STATE(10089)] = 373850, - [SMALL_STATE(10090)] = 373857, - [SMALL_STATE(10091)] = 373864, - [SMALL_STATE(10092)] = 373871, - [SMALL_STATE(10093)] = 373878, - [SMALL_STATE(10094)] = 373885, - [SMALL_STATE(10095)] = 373892, - [SMALL_STATE(10096)] = 373899, - [SMALL_STATE(10097)] = 373906, - [SMALL_STATE(10098)] = 373913, - [SMALL_STATE(10099)] = 373920, - [SMALL_STATE(10100)] = 373927, - [SMALL_STATE(10101)] = 373934, - [SMALL_STATE(10102)] = 373941, - [SMALL_STATE(10103)] = 373948, - [SMALL_STATE(10104)] = 373955, - [SMALL_STATE(10105)] = 373962, - [SMALL_STATE(10106)] = 373969, - [SMALL_STATE(10107)] = 373976, - [SMALL_STATE(10108)] = 373983, - [SMALL_STATE(10109)] = 373990, - [SMALL_STATE(10110)] = 373997, - [SMALL_STATE(10111)] = 374004, - [SMALL_STATE(10112)] = 374011, - [SMALL_STATE(10113)] = 374018, - [SMALL_STATE(10114)] = 374025, - [SMALL_STATE(10115)] = 374032, - [SMALL_STATE(10116)] = 374039, - [SMALL_STATE(10117)] = 374046, - [SMALL_STATE(10118)] = 374053, - [SMALL_STATE(10119)] = 374060, - [SMALL_STATE(10120)] = 374067, - [SMALL_STATE(10121)] = 374074, - [SMALL_STATE(10122)] = 374081, - [SMALL_STATE(10123)] = 374088, - [SMALL_STATE(10124)] = 374095, - [SMALL_STATE(10125)] = 374102, - [SMALL_STATE(10126)] = 374109, - [SMALL_STATE(10127)] = 374116, - [SMALL_STATE(10128)] = 374123, - [SMALL_STATE(10129)] = 374130, - [SMALL_STATE(10130)] = 374137, - [SMALL_STATE(10131)] = 374144, - [SMALL_STATE(10132)] = 374151, - [SMALL_STATE(10133)] = 374158, - [SMALL_STATE(10134)] = 374165, - [SMALL_STATE(10135)] = 374172, - [SMALL_STATE(10136)] = 374179, - [SMALL_STATE(10137)] = 374186, - [SMALL_STATE(10138)] = 374193, - [SMALL_STATE(10139)] = 374200, - [SMALL_STATE(10140)] = 374207, - [SMALL_STATE(10141)] = 374214, - [SMALL_STATE(10142)] = 374221, - [SMALL_STATE(10143)] = 374228, - [SMALL_STATE(10144)] = 374235, - [SMALL_STATE(10145)] = 374242, - [SMALL_STATE(10146)] = 374249, - [SMALL_STATE(10147)] = 374256, - [SMALL_STATE(10148)] = 374263, - [SMALL_STATE(10149)] = 374270, - [SMALL_STATE(10150)] = 374277, - [SMALL_STATE(10151)] = 374284, - [SMALL_STATE(10152)] = 374291, - [SMALL_STATE(10153)] = 374298, - [SMALL_STATE(10154)] = 374305, - [SMALL_STATE(10155)] = 374312, - [SMALL_STATE(10156)] = 374319, - [SMALL_STATE(10157)] = 374326, - [SMALL_STATE(10158)] = 374333, - [SMALL_STATE(10159)] = 374340, - [SMALL_STATE(10160)] = 374347, - [SMALL_STATE(10161)] = 374354, - [SMALL_STATE(10162)] = 374361, - [SMALL_STATE(10163)] = 374368, - [SMALL_STATE(10164)] = 374375, - [SMALL_STATE(10165)] = 374382, - [SMALL_STATE(10166)] = 374389, - [SMALL_STATE(10167)] = 374396, - [SMALL_STATE(10168)] = 374403, - [SMALL_STATE(10169)] = 374410, - [SMALL_STATE(10170)] = 374417, - [SMALL_STATE(10171)] = 374424, - [SMALL_STATE(10172)] = 374431, - [SMALL_STATE(10173)] = 374438, - [SMALL_STATE(10174)] = 374445, - [SMALL_STATE(10175)] = 374452, - [SMALL_STATE(10176)] = 374459, - [SMALL_STATE(10177)] = 374466, - [SMALL_STATE(10178)] = 374473, - [SMALL_STATE(10179)] = 374480, - [SMALL_STATE(10180)] = 374487, - [SMALL_STATE(10181)] = 374494, - [SMALL_STATE(10182)] = 374501, - [SMALL_STATE(10183)] = 374508, - [SMALL_STATE(10184)] = 374515, - [SMALL_STATE(10185)] = 374522, - [SMALL_STATE(10186)] = 374529, - [SMALL_STATE(10187)] = 374536, - [SMALL_STATE(10188)] = 374543, - [SMALL_STATE(10189)] = 374550, - [SMALL_STATE(10190)] = 374557, - [SMALL_STATE(10191)] = 374564, - [SMALL_STATE(10192)] = 374571, - [SMALL_STATE(10193)] = 374578, - [SMALL_STATE(10194)] = 374585, - [SMALL_STATE(10195)] = 374592, - [SMALL_STATE(10196)] = 374599, - [SMALL_STATE(10197)] = 374606, - [SMALL_STATE(10198)] = 374613, - [SMALL_STATE(10199)] = 374620, - [SMALL_STATE(10200)] = 374627, - [SMALL_STATE(10201)] = 374634, - [SMALL_STATE(10202)] = 374641, - [SMALL_STATE(10203)] = 374648, - [SMALL_STATE(10204)] = 374655, - [SMALL_STATE(10205)] = 374662, - [SMALL_STATE(10206)] = 374669, - [SMALL_STATE(10207)] = 374676, - [SMALL_STATE(10208)] = 374683, - [SMALL_STATE(10209)] = 374690, - [SMALL_STATE(10210)] = 374697, - [SMALL_STATE(10211)] = 374704, - [SMALL_STATE(10212)] = 374711, - [SMALL_STATE(10213)] = 374718, - [SMALL_STATE(10214)] = 374725, - [SMALL_STATE(10215)] = 374732, - [SMALL_STATE(10216)] = 374739, - [SMALL_STATE(10217)] = 374746, - [SMALL_STATE(10218)] = 374753, - [SMALL_STATE(10219)] = 374760, - [SMALL_STATE(10220)] = 374767, - [SMALL_STATE(10221)] = 374774, - [SMALL_STATE(10222)] = 374781, - [SMALL_STATE(10223)] = 374788, - [SMALL_STATE(10224)] = 374795, - [SMALL_STATE(10225)] = 374802, - [SMALL_STATE(10226)] = 374809, - [SMALL_STATE(10227)] = 374816, - [SMALL_STATE(10228)] = 374823, - [SMALL_STATE(10229)] = 374830, - [SMALL_STATE(10230)] = 374837, - [SMALL_STATE(10231)] = 374844, - [SMALL_STATE(10232)] = 374851, - [SMALL_STATE(10233)] = 374858, - [SMALL_STATE(10234)] = 374865, - [SMALL_STATE(10235)] = 374872, - [SMALL_STATE(10236)] = 374879, - [SMALL_STATE(10237)] = 374886, - [SMALL_STATE(10238)] = 374893, - [SMALL_STATE(10239)] = 374900, - [SMALL_STATE(10240)] = 374907, - [SMALL_STATE(10241)] = 374914, - [SMALL_STATE(10242)] = 374921, - [SMALL_STATE(10243)] = 374928, - [SMALL_STATE(10244)] = 374935, - [SMALL_STATE(10245)] = 374942, - [SMALL_STATE(10246)] = 374949, - [SMALL_STATE(10247)] = 374956, - [SMALL_STATE(10248)] = 374963, - [SMALL_STATE(10249)] = 374970, - [SMALL_STATE(10250)] = 374977, - [SMALL_STATE(10251)] = 374984, - [SMALL_STATE(10252)] = 374991, - [SMALL_STATE(10253)] = 374998, - [SMALL_STATE(10254)] = 375005, - [SMALL_STATE(10255)] = 375012, - [SMALL_STATE(10256)] = 375019, - [SMALL_STATE(10257)] = 375026, - [SMALL_STATE(10258)] = 375033, - [SMALL_STATE(10259)] = 375040, - [SMALL_STATE(10260)] = 375047, - [SMALL_STATE(10261)] = 375054, - [SMALL_STATE(10262)] = 375061, - [SMALL_STATE(10263)] = 375068, - [SMALL_STATE(10264)] = 375075, - [SMALL_STATE(10265)] = 375082, - [SMALL_STATE(10266)] = 375089, - [SMALL_STATE(10267)] = 375096, - [SMALL_STATE(10268)] = 375103, - [SMALL_STATE(10269)] = 375110, - [SMALL_STATE(10270)] = 375117, - [SMALL_STATE(10271)] = 375124, - [SMALL_STATE(10272)] = 375131, - [SMALL_STATE(10273)] = 375138, - [SMALL_STATE(10274)] = 375145, - [SMALL_STATE(10275)] = 375152, - [SMALL_STATE(10276)] = 375159, - [SMALL_STATE(10277)] = 375166, - [SMALL_STATE(10278)] = 375173, - [SMALL_STATE(10279)] = 375180, - [SMALL_STATE(10280)] = 375187, - [SMALL_STATE(10281)] = 375194, - [SMALL_STATE(10282)] = 375201, - [SMALL_STATE(10283)] = 375208, - [SMALL_STATE(10284)] = 375215, - [SMALL_STATE(10285)] = 375222, - [SMALL_STATE(10286)] = 375229, - [SMALL_STATE(10287)] = 375236, - [SMALL_STATE(10288)] = 375243, - [SMALL_STATE(10289)] = 375250, - [SMALL_STATE(10290)] = 375257, - [SMALL_STATE(10291)] = 375264, - [SMALL_STATE(10292)] = 375271, - [SMALL_STATE(10293)] = 375278, - [SMALL_STATE(10294)] = 375285, - [SMALL_STATE(10295)] = 375292, - [SMALL_STATE(10296)] = 375299, - [SMALL_STATE(10297)] = 375306, - [SMALL_STATE(10298)] = 375313, - [SMALL_STATE(10299)] = 375320, - [SMALL_STATE(10300)] = 375327, - [SMALL_STATE(10301)] = 375334, - [SMALL_STATE(10302)] = 375341, - [SMALL_STATE(10303)] = 375348, - [SMALL_STATE(10304)] = 375355, - [SMALL_STATE(10305)] = 375362, - [SMALL_STATE(10306)] = 375369, - [SMALL_STATE(10307)] = 375376, - [SMALL_STATE(10308)] = 375383, - [SMALL_STATE(10309)] = 375390, - [SMALL_STATE(10310)] = 375397, - [SMALL_STATE(10311)] = 375404, - [SMALL_STATE(10312)] = 375411, - [SMALL_STATE(10313)] = 375418, - [SMALL_STATE(10314)] = 375425, - [SMALL_STATE(10315)] = 375432, - [SMALL_STATE(10316)] = 375439, - [SMALL_STATE(10317)] = 375446, - [SMALL_STATE(10318)] = 375453, - [SMALL_STATE(10319)] = 375460, - [SMALL_STATE(10320)] = 375467, - [SMALL_STATE(10321)] = 375474, - [SMALL_STATE(10322)] = 375481, - [SMALL_STATE(10323)] = 375488, - [SMALL_STATE(10324)] = 375495, - [SMALL_STATE(10325)] = 375502, - [SMALL_STATE(10326)] = 375509, - [SMALL_STATE(10327)] = 375516, - [SMALL_STATE(10328)] = 375523, - [SMALL_STATE(10329)] = 375530, - [SMALL_STATE(10330)] = 375537, - [SMALL_STATE(10331)] = 375544, - [SMALL_STATE(10332)] = 375551, - [SMALL_STATE(10333)] = 375558, - [SMALL_STATE(10334)] = 375565, - [SMALL_STATE(10335)] = 375572, - [SMALL_STATE(10336)] = 375579, - [SMALL_STATE(10337)] = 375586, - [SMALL_STATE(10338)] = 375593, - [SMALL_STATE(10339)] = 375600, - [SMALL_STATE(10340)] = 375607, - [SMALL_STATE(10341)] = 375614, - [SMALL_STATE(10342)] = 375621, - [SMALL_STATE(10343)] = 375628, - [SMALL_STATE(10344)] = 375635, - [SMALL_STATE(10345)] = 375642, - [SMALL_STATE(10346)] = 375649, - [SMALL_STATE(10347)] = 375656, - [SMALL_STATE(10348)] = 375663, - [SMALL_STATE(10349)] = 375670, - [SMALL_STATE(10350)] = 375677, - [SMALL_STATE(10351)] = 375684, - [SMALL_STATE(10352)] = 375691, - [SMALL_STATE(10353)] = 375698, - [SMALL_STATE(10354)] = 375705, - [SMALL_STATE(10355)] = 375712, - [SMALL_STATE(10356)] = 375719, - [SMALL_STATE(10357)] = 375726, - [SMALL_STATE(10358)] = 375733, - [SMALL_STATE(10359)] = 375740, - [SMALL_STATE(10360)] = 375747, - [SMALL_STATE(10361)] = 375754, - [SMALL_STATE(10362)] = 375761, - [SMALL_STATE(10363)] = 375768, - [SMALL_STATE(10364)] = 375775, - [SMALL_STATE(10365)] = 375782, - [SMALL_STATE(10366)] = 375789, - [SMALL_STATE(10367)] = 375796, - [SMALL_STATE(10368)] = 375803, - [SMALL_STATE(10369)] = 375810, - [SMALL_STATE(10370)] = 375817, - [SMALL_STATE(10371)] = 375824, - [SMALL_STATE(10372)] = 375831, - [SMALL_STATE(10373)] = 375838, - [SMALL_STATE(10374)] = 375845, - [SMALL_STATE(10375)] = 375852, - [SMALL_STATE(10376)] = 375859, - [SMALL_STATE(10377)] = 375866, - [SMALL_STATE(10378)] = 375873, - [SMALL_STATE(10379)] = 375880, - [SMALL_STATE(10380)] = 375887, - [SMALL_STATE(10381)] = 375894, - [SMALL_STATE(10382)] = 375901, - [SMALL_STATE(10383)] = 375908, - [SMALL_STATE(10384)] = 375915, - [SMALL_STATE(10385)] = 375922, - [SMALL_STATE(10386)] = 375929, - [SMALL_STATE(10387)] = 375936, - [SMALL_STATE(10388)] = 375943, - [SMALL_STATE(10389)] = 375950, - [SMALL_STATE(10390)] = 375957, - [SMALL_STATE(10391)] = 375964, - [SMALL_STATE(10392)] = 375971, - [SMALL_STATE(10393)] = 375978, - [SMALL_STATE(10394)] = 375985, - [SMALL_STATE(10395)] = 375992, - [SMALL_STATE(10396)] = 375999, - [SMALL_STATE(10397)] = 376006, - [SMALL_STATE(10398)] = 376013, - [SMALL_STATE(10399)] = 376020, - [SMALL_STATE(10400)] = 376027, - [SMALL_STATE(10401)] = 376034, - [SMALL_STATE(10402)] = 376041, - [SMALL_STATE(10403)] = 376048, - [SMALL_STATE(10404)] = 376055, - [SMALL_STATE(10405)] = 376062, - [SMALL_STATE(10406)] = 376069, - [SMALL_STATE(10407)] = 376076, - [SMALL_STATE(10408)] = 376083, - [SMALL_STATE(10409)] = 376090, - [SMALL_STATE(10410)] = 376097, - [SMALL_STATE(10411)] = 376104, - [SMALL_STATE(10412)] = 376111, - [SMALL_STATE(10413)] = 376118, - [SMALL_STATE(10414)] = 376125, - [SMALL_STATE(10415)] = 376132, - [SMALL_STATE(10416)] = 376139, - [SMALL_STATE(10417)] = 376146, - [SMALL_STATE(10418)] = 376153, - [SMALL_STATE(10419)] = 376160, - [SMALL_STATE(10420)] = 376167, - [SMALL_STATE(10421)] = 376174, - [SMALL_STATE(10422)] = 376181, - [SMALL_STATE(10423)] = 376188, - [SMALL_STATE(10424)] = 376195, - [SMALL_STATE(10425)] = 376202, - [SMALL_STATE(10426)] = 376209, - [SMALL_STATE(10427)] = 376216, - [SMALL_STATE(10428)] = 376223, - [SMALL_STATE(10429)] = 376230, - [SMALL_STATE(10430)] = 376237, - [SMALL_STATE(10431)] = 376244, - [SMALL_STATE(10432)] = 376251, - [SMALL_STATE(10433)] = 376258, - [SMALL_STATE(10434)] = 376265, - [SMALL_STATE(10435)] = 376272, - [SMALL_STATE(10436)] = 376279, - [SMALL_STATE(10437)] = 376286, - [SMALL_STATE(10438)] = 376293, - [SMALL_STATE(10439)] = 376300, - [SMALL_STATE(10440)] = 376307, - [SMALL_STATE(10441)] = 376314, - [SMALL_STATE(10442)] = 376321, - [SMALL_STATE(10443)] = 376328, - [SMALL_STATE(10444)] = 376335, - [SMALL_STATE(10445)] = 376342, - [SMALL_STATE(10446)] = 376349, - [SMALL_STATE(10447)] = 376356, - [SMALL_STATE(10448)] = 376363, - [SMALL_STATE(10449)] = 376370, - [SMALL_STATE(10450)] = 376377, - [SMALL_STATE(10451)] = 376384, - [SMALL_STATE(10452)] = 376391, - [SMALL_STATE(10453)] = 376398, - [SMALL_STATE(10454)] = 376405, - [SMALL_STATE(10455)] = 376412, - [SMALL_STATE(10456)] = 376419, - [SMALL_STATE(10457)] = 376426, - [SMALL_STATE(10458)] = 376433, - [SMALL_STATE(10459)] = 376440, - [SMALL_STATE(10460)] = 376447, - [SMALL_STATE(10461)] = 376454, - [SMALL_STATE(10462)] = 376461, - [SMALL_STATE(10463)] = 376468, - [SMALL_STATE(10464)] = 376475, - [SMALL_STATE(10465)] = 376482, - [SMALL_STATE(10466)] = 376489, - [SMALL_STATE(10467)] = 376496, - [SMALL_STATE(10468)] = 376503, - [SMALL_STATE(10469)] = 376510, - [SMALL_STATE(10470)] = 376517, - [SMALL_STATE(10471)] = 376524, - [SMALL_STATE(10472)] = 376531, - [SMALL_STATE(10473)] = 376538, - [SMALL_STATE(10474)] = 376545, - [SMALL_STATE(10475)] = 376552, - [SMALL_STATE(10476)] = 376559, - [SMALL_STATE(10477)] = 376566, - [SMALL_STATE(10478)] = 376573, - [SMALL_STATE(10479)] = 376580, - [SMALL_STATE(10480)] = 376587, - [SMALL_STATE(10481)] = 376594, - [SMALL_STATE(10482)] = 376601, - [SMALL_STATE(10483)] = 376608, - [SMALL_STATE(10484)] = 376615, - [SMALL_STATE(10485)] = 376622, - [SMALL_STATE(10486)] = 376629, - [SMALL_STATE(10487)] = 376636, - [SMALL_STATE(10488)] = 376643, - [SMALL_STATE(10489)] = 376650, - [SMALL_STATE(10490)] = 376657, - [SMALL_STATE(10491)] = 376664, - [SMALL_STATE(10492)] = 376671, - [SMALL_STATE(10493)] = 376678, - [SMALL_STATE(10494)] = 376685, - [SMALL_STATE(10495)] = 376692, - [SMALL_STATE(10496)] = 376699, - [SMALL_STATE(10497)] = 376706, - [SMALL_STATE(10498)] = 376713, - [SMALL_STATE(10499)] = 376720, - [SMALL_STATE(10500)] = 376727, - [SMALL_STATE(10501)] = 376734, - [SMALL_STATE(10502)] = 376741, - [SMALL_STATE(10503)] = 376748, - [SMALL_STATE(10504)] = 376755, - [SMALL_STATE(10505)] = 376762, - [SMALL_STATE(10506)] = 376769, - [SMALL_STATE(10507)] = 376776, - [SMALL_STATE(10508)] = 376783, - [SMALL_STATE(10509)] = 376790, - [SMALL_STATE(10510)] = 376797, - [SMALL_STATE(10511)] = 376804, - [SMALL_STATE(10512)] = 376811, - [SMALL_STATE(10513)] = 376818, - [SMALL_STATE(10514)] = 376825, - [SMALL_STATE(10515)] = 376832, - [SMALL_STATE(10516)] = 376839, - [SMALL_STATE(10517)] = 376846, - [SMALL_STATE(10518)] = 376853, - [SMALL_STATE(10519)] = 376860, - [SMALL_STATE(10520)] = 376867, - [SMALL_STATE(10521)] = 376874, - [SMALL_STATE(10522)] = 376881, - [SMALL_STATE(10523)] = 376888, - [SMALL_STATE(10524)] = 376895, - [SMALL_STATE(10525)] = 376902, - [SMALL_STATE(10526)] = 376909, - [SMALL_STATE(10527)] = 376916, - [SMALL_STATE(10528)] = 376923, - [SMALL_STATE(10529)] = 376930, - [SMALL_STATE(10530)] = 376937, - [SMALL_STATE(10531)] = 376944, - [SMALL_STATE(10532)] = 376951, - [SMALL_STATE(10533)] = 376958, - [SMALL_STATE(10534)] = 376965, - [SMALL_STATE(10535)] = 376972, - [SMALL_STATE(10536)] = 376979, - [SMALL_STATE(10537)] = 376986, - [SMALL_STATE(10538)] = 376993, - [SMALL_STATE(10539)] = 377000, - [SMALL_STATE(10540)] = 377007, - [SMALL_STATE(10541)] = 377014, - [SMALL_STATE(10542)] = 377021, - [SMALL_STATE(10543)] = 377028, - [SMALL_STATE(10544)] = 377035, - [SMALL_STATE(10545)] = 377042, - [SMALL_STATE(10546)] = 377049, - [SMALL_STATE(10547)] = 377056, - [SMALL_STATE(10548)] = 377063, - [SMALL_STATE(10549)] = 377070, - [SMALL_STATE(10550)] = 377077, - [SMALL_STATE(10551)] = 377084, - [SMALL_STATE(10552)] = 377091, - [SMALL_STATE(10553)] = 377098, - [SMALL_STATE(10554)] = 377105, - [SMALL_STATE(10555)] = 377112, - [SMALL_STATE(10556)] = 377119, - [SMALL_STATE(10557)] = 377126, - [SMALL_STATE(10558)] = 377133, - [SMALL_STATE(10559)] = 377140, - [SMALL_STATE(10560)] = 377147, - [SMALL_STATE(10561)] = 377154, - [SMALL_STATE(10562)] = 377161, - [SMALL_STATE(10563)] = 377168, - [SMALL_STATE(10564)] = 377175, - [SMALL_STATE(10565)] = 377182, - [SMALL_STATE(10566)] = 377189, - [SMALL_STATE(10567)] = 377196, - [SMALL_STATE(10568)] = 377203, - [SMALL_STATE(10569)] = 377210, - [SMALL_STATE(10570)] = 377217, - [SMALL_STATE(10571)] = 377224, - [SMALL_STATE(10572)] = 377231, - [SMALL_STATE(10573)] = 377238, - [SMALL_STATE(10574)] = 377245, - [SMALL_STATE(10575)] = 377252, - [SMALL_STATE(10576)] = 377259, - [SMALL_STATE(10577)] = 377266, - [SMALL_STATE(10578)] = 377273, - [SMALL_STATE(10579)] = 377280, - [SMALL_STATE(10580)] = 377287, - [SMALL_STATE(10581)] = 377294, - [SMALL_STATE(10582)] = 377301, - [SMALL_STATE(10583)] = 377308, - [SMALL_STATE(10584)] = 377315, - [SMALL_STATE(10585)] = 377322, - [SMALL_STATE(10586)] = 377329, - [SMALL_STATE(10587)] = 377336, - [SMALL_STATE(10588)] = 377343, - [SMALL_STATE(10589)] = 377350, - [SMALL_STATE(10590)] = 377357, - [SMALL_STATE(10591)] = 377364, - [SMALL_STATE(10592)] = 377371, - [SMALL_STATE(10593)] = 377378, - [SMALL_STATE(10594)] = 377385, - [SMALL_STATE(10595)] = 377392, - [SMALL_STATE(10596)] = 377399, - [SMALL_STATE(10597)] = 377406, - [SMALL_STATE(10598)] = 377413, - [SMALL_STATE(10599)] = 377420, - [SMALL_STATE(10600)] = 377427, - [SMALL_STATE(10601)] = 377434, - [SMALL_STATE(10602)] = 377441, - [SMALL_STATE(10603)] = 377448, - [SMALL_STATE(10604)] = 377455, - [SMALL_STATE(10605)] = 377462, - [SMALL_STATE(10606)] = 377469, - [SMALL_STATE(10607)] = 377476, - [SMALL_STATE(10608)] = 377483, - [SMALL_STATE(10609)] = 377490, - [SMALL_STATE(10610)] = 377497, - [SMALL_STATE(10611)] = 377504, - [SMALL_STATE(10612)] = 377511, - [SMALL_STATE(10613)] = 377518, - [SMALL_STATE(10614)] = 377525, - [SMALL_STATE(10615)] = 377532, - [SMALL_STATE(10616)] = 377539, - [SMALL_STATE(10617)] = 377546, - [SMALL_STATE(10618)] = 377553, - [SMALL_STATE(10619)] = 377560, - [SMALL_STATE(10620)] = 377567, - [SMALL_STATE(10621)] = 377574, - [SMALL_STATE(10622)] = 377581, - [SMALL_STATE(10623)] = 377588, - [SMALL_STATE(10624)] = 377595, - [SMALL_STATE(10625)] = 377602, - [SMALL_STATE(10626)] = 377609, - [SMALL_STATE(10627)] = 377616, - [SMALL_STATE(10628)] = 377623, - [SMALL_STATE(10629)] = 377630, - [SMALL_STATE(10630)] = 377637, - [SMALL_STATE(10631)] = 377644, - [SMALL_STATE(10632)] = 377651, - [SMALL_STATE(10633)] = 377658, - [SMALL_STATE(10634)] = 377665, - [SMALL_STATE(10635)] = 377672, - [SMALL_STATE(10636)] = 377679, - [SMALL_STATE(10637)] = 377686, - [SMALL_STATE(10638)] = 377693, - [SMALL_STATE(10639)] = 377700, - [SMALL_STATE(10640)] = 377707, - [SMALL_STATE(10641)] = 377714, - [SMALL_STATE(10642)] = 377721, - [SMALL_STATE(10643)] = 377728, - [SMALL_STATE(10644)] = 377735, - [SMALL_STATE(10645)] = 377742, - [SMALL_STATE(10646)] = 377749, - [SMALL_STATE(10647)] = 377756, - [SMALL_STATE(10648)] = 377763, - [SMALL_STATE(10649)] = 377770, - [SMALL_STATE(10650)] = 377777, - [SMALL_STATE(10651)] = 377784, - [SMALL_STATE(10652)] = 377791, - [SMALL_STATE(10653)] = 377798, - [SMALL_STATE(10654)] = 377805, - [SMALL_STATE(10655)] = 377812, - [SMALL_STATE(10656)] = 377819, - [SMALL_STATE(10657)] = 377826, - [SMALL_STATE(10658)] = 377833, - [SMALL_STATE(10659)] = 377840, - [SMALL_STATE(10660)] = 377847, - [SMALL_STATE(10661)] = 377854, - [SMALL_STATE(10662)] = 377861, - [SMALL_STATE(10663)] = 377868, - [SMALL_STATE(10664)] = 377875, - [SMALL_STATE(10665)] = 377882, - [SMALL_STATE(10666)] = 377889, - [SMALL_STATE(10667)] = 377896, - [SMALL_STATE(10668)] = 377903, - [SMALL_STATE(10669)] = 377910, - [SMALL_STATE(10670)] = 377917, - [SMALL_STATE(10671)] = 377924, - [SMALL_STATE(10672)] = 377931, - [SMALL_STATE(10673)] = 377938, - [SMALL_STATE(10674)] = 377945, - [SMALL_STATE(10675)] = 377952, - [SMALL_STATE(10676)] = 377959, - [SMALL_STATE(10677)] = 377966, - [SMALL_STATE(10678)] = 377973, - [SMALL_STATE(10679)] = 377980, - [SMALL_STATE(10680)] = 377987, - [SMALL_STATE(10681)] = 377994, - [SMALL_STATE(10682)] = 378001, - [SMALL_STATE(10683)] = 378008, - [SMALL_STATE(10684)] = 378015, - [SMALL_STATE(10685)] = 378022, - [SMALL_STATE(10686)] = 378029, - [SMALL_STATE(10687)] = 378036, - [SMALL_STATE(10688)] = 378043, - [SMALL_STATE(10689)] = 378050, - [SMALL_STATE(10690)] = 378057, - [SMALL_STATE(10691)] = 378064, - [SMALL_STATE(10692)] = 378071, - [SMALL_STATE(10693)] = 378078, + [SMALL_STATE(2487)] = 0, + [SMALL_STATE(2488)] = 71, + [SMALL_STATE(2489)] = 142, + [SMALL_STATE(2490)] = 213, + [SMALL_STATE(2491)] = 284, + [SMALL_STATE(2492)] = 355, + [SMALL_STATE(2493)] = 426, + [SMALL_STATE(2494)] = 497, + [SMALL_STATE(2495)] = 568, + [SMALL_STATE(2496)] = 639, + [SMALL_STATE(2497)] = 710, + [SMALL_STATE(2498)] = 781, + [SMALL_STATE(2499)] = 852, + [SMALL_STATE(2500)] = 931, + [SMALL_STATE(2501)] = 1002, + [SMALL_STATE(2502)] = 1073, + [SMALL_STATE(2503)] = 1150, + [SMALL_STATE(2504)] = 1229, + [SMALL_STATE(2505)] = 1308, + [SMALL_STATE(2506)] = 1379, + [SMALL_STATE(2507)] = 1450, + [SMALL_STATE(2508)] = 1529, + [SMALL_STATE(2509)] = 1608, + [SMALL_STATE(2510)] = 1683, + [SMALL_STATE(2511)] = 1760, + [SMALL_STATE(2512)] = 1831, + [SMALL_STATE(2513)] = 1904, + [SMALL_STATE(2514)] = 1975, + [SMALL_STATE(2515)] = 2058, + [SMALL_STATE(2516)] = 2141, + [SMALL_STATE(2517)] = 2222, + [SMALL_STATE(2518)] = 2293, + [SMALL_STATE(2519)] = 2364, + [SMALL_STATE(2520)] = 2435, + [SMALL_STATE(2521)] = 2514, + [SMALL_STATE(2522)] = 2637, + [SMALL_STATE(2523)] = 2714, + [SMALL_STATE(2524)] = 2793, + [SMALL_STATE(2525)] = 2868, + [SMALL_STATE(2526)] = 2939, + [SMALL_STATE(2527)] = 3010, + [SMALL_STATE(2528)] = 3081, + [SMALL_STATE(2529)] = 3151, + [SMALL_STATE(2530)] = 3221, + [SMALL_STATE(2531)] = 3291, + [SMALL_STATE(2532)] = 3361, + [SMALL_STATE(2533)] = 3433, + [SMALL_STATE(2534)] = 3503, + [SMALL_STATE(2535)] = 3573, + [SMALL_STATE(2536)] = 3643, + [SMALL_STATE(2537)] = 3725, + [SMALL_STATE(2538)] = 3799, + [SMALL_STATE(2539)] = 3869, + [SMALL_STATE(2540)] = 3939, + [SMALL_STATE(2541)] = 4009, + [SMALL_STATE(2542)] = 4079, + [SMALL_STATE(2543)] = 4149, + [SMALL_STATE(2544)] = 4223, + [SMALL_STATE(2545)] = 4299, + [SMALL_STATE(2546)] = 4373, + [SMALL_STATE(2547)] = 4447, + [SMALL_STATE(2548)] = 4517, + [SMALL_STATE(2549)] = 4587, + [SMALL_STATE(2550)] = 4657, + [SMALL_STATE(2551)] = 4727, + [SMALL_STATE(2552)] = 4797, + [SMALL_STATE(2553)] = 4867, + [SMALL_STATE(2554)] = 4937, + [SMALL_STATE(2555)] = 5007, + [SMALL_STATE(2556)] = 5081, + [SMALL_STATE(2557)] = 5151, + [SMALL_STATE(2558)] = 5225, + [SMALL_STATE(2559)] = 5299, + [SMALL_STATE(2560)] = 5381, + [SMALL_STATE(2561)] = 5451, + [SMALL_STATE(2562)] = 5521, + [SMALL_STATE(2563)] = 5591, + [SMALL_STATE(2564)] = 5661, + [SMALL_STATE(2565)] = 5731, + [SMALL_STATE(2566)] = 5801, + [SMALL_STATE(2567)] = 5871, + [SMALL_STATE(2568)] = 5941, + [SMALL_STATE(2569)] = 6011, + [SMALL_STATE(2570)] = 6081, + [SMALL_STATE(2571)] = 6151, + [SMALL_STATE(2572)] = 6221, + [SMALL_STATE(2573)] = 6293, + [SMALL_STATE(2574)] = 6371, + [SMALL_STATE(2575)] = 6447, + [SMALL_STATE(2576)] = 6517, + [SMALL_STATE(2577)] = 6587, + [SMALL_STATE(2578)] = 6659, + [SMALL_STATE(2579)] = 6729, + [SMALL_STATE(2580)] = 6805, + [SMALL_STATE(2581)] = 6877, + [SMALL_STATE(2582)] = 6947, + [SMALL_STATE(2583)] = 7019, + [SMALL_STATE(2584)] = 7089, + [SMALL_STATE(2585)] = 7159, + [SMALL_STATE(2586)] = 7229, + [SMALL_STATE(2587)] = 7299, + [SMALL_STATE(2588)] = 7377, + [SMALL_STATE(2589)] = 7447, + [SMALL_STATE(2590)] = 7517, + [SMALL_STATE(2591)] = 7587, + [SMALL_STATE(2592)] = 7657, + [SMALL_STATE(2593)] = 7727, + [SMALL_STATE(2594)] = 7797, + [SMALL_STATE(2595)] = 7867, + [SMALL_STATE(2596)] = 7945, + [SMALL_STATE(2597)] = 8019, + [SMALL_STATE(2598)] = 8089, + [SMALL_STATE(2599)] = 8163, + [SMALL_STATE(2600)] = 8237, + [SMALL_STATE(2601)] = 8307, + [SMALL_STATE(2602)] = 8377, + [SMALL_STATE(2603)] = 8453, + [SMALL_STATE(2604)] = 8523, + [SMALL_STATE(2605)] = 8609, + [SMALL_STATE(2606)] = 8679, + [SMALL_STATE(2607)] = 8749, + [SMALL_STATE(2608)] = 8819, + [SMALL_STATE(2609)] = 8889, + [SMALL_STATE(2610)] = 8959, + [SMALL_STATE(2611)] = 9029, + [SMALL_STATE(2612)] = 9099, + [SMALL_STATE(2613)] = 9169, + [SMALL_STATE(2614)] = 9239, + [SMALL_STATE(2615)] = 9309, + [SMALL_STATE(2616)] = 9379, + [SMALL_STATE(2617)] = 9449, + [SMALL_STATE(2618)] = 9519, + [SMALL_STATE(2619)] = 9595, + [SMALL_STATE(2620)] = 9665, + [SMALL_STATE(2621)] = 9735, + [SMALL_STATE(2622)] = 9805, + [SMALL_STATE(2623)] = 9879, + [SMALL_STATE(2624)] = 9949, + [SMALL_STATE(2625)] = 10023, + [SMALL_STATE(2626)] = 10101, + [SMALL_STATE(2627)] = 10175, + [SMALL_STATE(2628)] = 10245, + [SMALL_STATE(2629)] = 10319, + [SMALL_STATE(2630)] = 10393, + [SMALL_STATE(2631)] = 10463, + [SMALL_STATE(2632)] = 10533, + [SMALL_STATE(2633)] = 10607, + [SMALL_STATE(2634)] = 10677, + [SMALL_STATE(2635)] = 10747, + [SMALL_STATE(2636)] = 10821, + [SMALL_STATE(2637)] = 10895, + [SMALL_STATE(2638)] = 10965, + [SMALL_STATE(2639)] = 11037, + [SMALL_STATE(2640)] = 11107, + [SMALL_STATE(2641)] = 11181, + [SMALL_STATE(2642)] = 11251, + [SMALL_STATE(2643)] = 11329, + [SMALL_STATE(2644)] = 11399, + [SMALL_STATE(2645)] = 11469, + [SMALL_STATE(2646)] = 11539, + [SMALL_STATE(2647)] = 11611, + [SMALL_STATE(2648)] = 11681, + [SMALL_STATE(2649)] = 11751, + [SMALL_STATE(2650)] = 11821, + [SMALL_STATE(2651)] = 11895, + [SMALL_STATE(2652)] = 11965, + [SMALL_STATE(2653)] = 12035, + [SMALL_STATE(2654)] = 12105, + [SMALL_STATE(2655)] = 12179, + [SMALL_STATE(2656)] = 12249, + [SMALL_STATE(2657)] = 12319, + [SMALL_STATE(2658)] = 12389, + [SMALL_STATE(2659)] = 12459, + [SMALL_STATE(2660)] = 12529, + [SMALL_STATE(2661)] = 12599, + [SMALL_STATE(2662)] = 12669, + [SMALL_STATE(2663)] = 12739, + [SMALL_STATE(2664)] = 12813, + [SMALL_STATE(2665)] = 12883, + [SMALL_STATE(2666)] = 12953, + [SMALL_STATE(2667)] = 13023, + [SMALL_STATE(2668)] = 13093, + [SMALL_STATE(2669)] = 13167, + [SMALL_STATE(2670)] = 13236, + [SMALL_STATE(2671)] = 13305, + [SMALL_STATE(2672)] = 13374, + [SMALL_STATE(2673)] = 13459, + [SMALL_STATE(2674)] = 13528, + [SMALL_STATE(2675)] = 13599, + [SMALL_STATE(2676)] = 13668, + [SMALL_STATE(2677)] = 13737, + [SMALL_STATE(2678)] = 13806, + [SMALL_STATE(2679)] = 13875, + [SMALL_STATE(2680)] = 13946, + [SMALL_STATE(2681)] = 14015, + [SMALL_STATE(2682)] = 14084, + [SMALL_STATE(2683)] = 14205, + [SMALL_STATE(2684)] = 14274, + [SMALL_STATE(2685)] = 14343, + [SMALL_STATE(2686)] = 14412, + [SMALL_STATE(2687)] = 14487, + [SMALL_STATE(2688)] = 14556, + [SMALL_STATE(2689)] = 14629, + [SMALL_STATE(2690)] = 14702, + [SMALL_STATE(2691)] = 14771, + [SMALL_STATE(2692)] = 14840, + [SMALL_STATE(2693)] = 14909, + [SMALL_STATE(2694)] = 14978, + [SMALL_STATE(2695)] = 15047, + [SMALL_STATE(2696)] = 15116, + [SMALL_STATE(2697)] = 15185, + [SMALL_STATE(2698)] = 15254, + [SMALL_STATE(2699)] = 15323, + [SMALL_STATE(2700)] = 15392, + [SMALL_STATE(2701)] = 15469, + [SMALL_STATE(2702)] = 15546, + [SMALL_STATE(2703)] = 15615, + [SMALL_STATE(2704)] = 15684, + [SMALL_STATE(2705)] = 15753, + [SMALL_STATE(2706)] = 15822, + [SMALL_STATE(2707)] = 15903, + [SMALL_STATE(2708)] = 15972, + [SMALL_STATE(2709)] = 16041, + [SMALL_STATE(2710)] = 16110, + [SMALL_STATE(2711)] = 16179, + [SMALL_STATE(2712)] = 16260, + [SMALL_STATE(2713)] = 16329, + [SMALL_STATE(2714)] = 16398, + [SMALL_STATE(2715)] = 16467, + [SMALL_STATE(2716)] = 16536, + [SMALL_STATE(2717)] = 16605, + [SMALL_STATE(2718)] = 16680, + [SMALL_STATE(2719)] = 16757, + [SMALL_STATE(2720)] = 16836, + [SMALL_STATE(2721)] = 16905, + [SMALL_STATE(2722)] = 16982, + [SMALL_STATE(2723)] = 17051, + [SMALL_STATE(2724)] = 17120, + [SMALL_STATE(2725)] = 17189, + [SMALL_STATE(2726)] = 17258, + [SMALL_STATE(2727)] = 17327, + [SMALL_STATE(2728)] = 17396, + [SMALL_STATE(2729)] = 17465, + [SMALL_STATE(2730)] = 17542, + [SMALL_STATE(2731)] = 17611, + [SMALL_STATE(2732)] = 17732, + [SMALL_STATE(2733)] = 17801, + [SMALL_STATE(2734)] = 17870, + [SMALL_STATE(2735)] = 17939, + [SMALL_STATE(2736)] = 18008, + [SMALL_STATE(2737)] = 18085, + [SMALL_STATE(2738)] = 18154, + [SMALL_STATE(2739)] = 18223, + [SMALL_STATE(2740)] = 18292, + [SMALL_STATE(2741)] = 18361, + [SMALL_STATE(2742)] = 18430, + [SMALL_STATE(2743)] = 18499, + [SMALL_STATE(2744)] = 18574, + [SMALL_STATE(2745)] = 18646, + [SMALL_STATE(2746)] = 18730, + [SMALL_STATE(2747)] = 18802, + [SMALL_STATE(2748)] = 18870, + [SMALL_STATE(2749)] = 18942, + [SMALL_STATE(2750)] = 19014, + [SMALL_STATE(2751)] = 19082, + [SMALL_STATE(2752)] = 19166, + [SMALL_STATE(2753)] = 19240, + [SMALL_STATE(2754)] = 19308, + [SMALL_STATE(2755)] = 19376, + [SMALL_STATE(2756)] = 19444, + [SMALL_STATE(2757)] = 19520, + [SMALL_STATE(2758)] = 19594, + [SMALL_STATE(2759)] = 19662, + [SMALL_STATE(2760)] = 19734, + [SMALL_STATE(2761)] = 19802, + [SMALL_STATE(2762)] = 19880, + [SMALL_STATE(2763)] = 19948, + [SMALL_STATE(2764)] = 20016, + [SMALL_STATE(2765)] = 20084, + [SMALL_STATE(2766)] = 20204, + [SMALL_STATE(2767)] = 20276, + [SMALL_STATE(2768)] = 20348, + [SMALL_STATE(2769)] = 20432, + [SMALL_STATE(2770)] = 20508, + [SMALL_STATE(2771)] = 20580, + [SMALL_STATE(2772)] = 20652, + [SMALL_STATE(2773)] = 20736, + [SMALL_STATE(2774)] = 20804, + [SMALL_STATE(2775)] = 20876, + [SMALL_STATE(2776)] = 20944, + [SMALL_STATE(2777)] = 21016, + [SMALL_STATE(2778)] = 21100, + [SMALL_STATE(2779)] = 21172, + [SMALL_STATE(2780)] = 21244, + [SMALL_STATE(2781)] = 21316, + [SMALL_STATE(2782)] = 21390, + [SMALL_STATE(2783)] = 21474, + [SMALL_STATE(2784)] = 21546, + [SMALL_STATE(2785)] = 21614, + [SMALL_STATE(2786)] = 21681, + [SMALL_STATE(2787)] = 21748, + [SMALL_STATE(2788)] = 21815, + [SMALL_STATE(2789)] = 21884, + [SMALL_STATE(2790)] = 21951, + [SMALL_STATE(2791)] = 22018, + [SMALL_STATE(2792)] = 22085, + [SMALL_STATE(2793)] = 22156, + [SMALL_STATE(2794)] = 22223, + [SMALL_STATE(2795)] = 22290, + [SMALL_STATE(2796)] = 22357, + [SMALL_STATE(2797)] = 22428, + [SMALL_STATE(2798)] = 22499, + [SMALL_STATE(2799)] = 22566, + [SMALL_STATE(2800)] = 22641, + [SMALL_STATE(2801)] = 22708, + [SMALL_STATE(2802)] = 22785, + [SMALL_STATE(2803)] = 22852, + [SMALL_STATE(2804)] = 22925, + [SMALL_STATE(2805)] = 22996, + [SMALL_STATE(2806)] = 23079, + [SMALL_STATE(2807)] = 23150, + [SMALL_STATE(2808)] = 23217, + [SMALL_STATE(2809)] = 23286, + [SMALL_STATE(2810)] = 23353, + [SMALL_STATE(2811)] = 23420, + [SMALL_STATE(2812)] = 23491, + [SMALL_STATE(2813)] = 23558, + [SMALL_STATE(2814)] = 23637, + [SMALL_STATE(2815)] = 23704, + [SMALL_STATE(2816)] = 23775, + [SMALL_STATE(2817)] = 23846, + [SMALL_STATE(2818)] = 23915, + [SMALL_STATE(2819)] = 23990, + [SMALL_STATE(2820)] = 24057, + [SMALL_STATE(2821)] = 24126, + [SMALL_STATE(2822)] = 24193, + [SMALL_STATE(2823)] = 24268, + [SMALL_STATE(2824)] = 24335, + [SMALL_STATE(2825)] = 24402, + [SMALL_STATE(2826)] = 24469, + [SMALL_STATE(2827)] = 24544, + [SMALL_STATE(2828)] = 24615, + [SMALL_STATE(2829)] = 24682, + [SMALL_STATE(2830)] = 24755, + [SMALL_STATE(2831)] = 24830, + [SMALL_STATE(2832)] = 24909, + [SMALL_STATE(2833)] = 24976, + [SMALL_STATE(2834)] = 25049, + [SMALL_STATE(2835)] = 25120, + [SMALL_STATE(2836)] = 25202, + [SMALL_STATE(2837)] = 25272, + [SMALL_STATE(2838)] = 25350, + [SMALL_STATE(2839)] = 25416, + [SMALL_STATE(2840)] = 25482, + [SMALL_STATE(2841)] = 25548, + [SMALL_STATE(2842)] = 25618, + [SMALL_STATE(2843)] = 25686, + [SMALL_STATE(2844)] = 25756, + [SMALL_STATE(2845)] = 25824, + [SMALL_STATE(2846)] = 25890, + [SMALL_STATE(2847)] = 25960, + [SMALL_STATE(2848)] = 26034, + [SMALL_STATE(2849)] = 26104, + [SMALL_STATE(2850)] = 26186, + [SMALL_STATE(2851)] = 26256, + [SMALL_STATE(2852)] = 26338, + [SMALL_STATE(2853)] = 26404, + [SMALL_STATE(2854)] = 26486, + [SMALL_STATE(2855)] = 26558, + [SMALL_STATE(2856)] = 26634, + [SMALL_STATE(2857)] = 26700, + [SMALL_STATE(2858)] = 26766, + [SMALL_STATE(2859)] = 26832, + [SMALL_STATE(2860)] = 26902, + [SMALL_STATE(2861)] = 26972, + [SMALL_STATE(2862)] = 27038, + [SMALL_STATE(2863)] = 27104, + [SMALL_STATE(2864)] = 27170, + [SMALL_STATE(2865)] = 27236, + [SMALL_STATE(2866)] = 27306, + [SMALL_STATE(2867)] = 27376, + [SMALL_STATE(2868)] = 27446, + [SMALL_STATE(2869)] = 27516, + [SMALL_STATE(2870)] = 27586, + [SMALL_STATE(2871)] = 27664, + [SMALL_STATE(2872)] = 27744, + [SMALL_STATE(2873)] = 27824, + [SMALL_STATE(2874)] = 27902, + [SMALL_STATE(2875)] = 27982, + [SMALL_STATE(2876)] = 28062, + [SMALL_STATE(2877)] = 28128, + [SMALL_STATE(2878)] = 28206, + [SMALL_STATE(2879)] = 28276, + [SMALL_STATE(2880)] = 28346, + [SMALL_STATE(2881)] = 28418, + [SMALL_STATE(2882)] = 28488, + [SMALL_STATE(2883)] = 28568, + [SMALL_STATE(2884)] = 28638, + [SMALL_STATE(2885)] = 28704, + [SMALL_STATE(2886)] = 28774, + [SMALL_STATE(2887)] = 28844, + [SMALL_STATE(2888)] = 28914, + [SMALL_STATE(2889)] = 28984, + [SMALL_STATE(2890)] = 29050, + [SMALL_STATE(2891)] = 29135, + [SMALL_STATE(2892)] = 29200, + [SMALL_STATE(2893)] = 29273, + [SMALL_STATE(2894)] = 29352, + [SMALL_STATE(2895)] = 29421, + [SMALL_STATE(2896)] = 29490, + [SMALL_STATE(2897)] = 29567, + [SMALL_STATE(2898)] = 29642, + [SMALL_STATE(2899)] = 29709, + [SMALL_STATE(2900)] = 29774, + [SMALL_STATE(2901)] = 29843, + [SMALL_STATE(2902)] = 29920, + [SMALL_STATE(2903)] = 30029, + [SMALL_STATE(2904)] = 30094, + [SMALL_STATE(2905)] = 30163, + [SMALL_STATE(2906)] = 30276, + [SMALL_STATE(2907)] = 30341, + [SMALL_STATE(2908)] = 30406, + [SMALL_STATE(2909)] = 30481, + [SMALL_STATE(2910)] = 30550, + [SMALL_STATE(2911)] = 30659, + [SMALL_STATE(2912)] = 30724, + [SMALL_STATE(2913)] = 30799, + [SMALL_STATE(2914)] = 30876, + [SMALL_STATE(2915)] = 30947, + [SMALL_STATE(2916)] = 31020, + [SMALL_STATE(2917)] = 31091, + [SMALL_STATE(2918)] = 31158, + [SMALL_STATE(2919)] = 31223, + [SMALL_STATE(2920)] = 31290, + [SMALL_STATE(2921)] = 31355, + [SMALL_STATE(2922)] = 31420, + [SMALL_STATE(2923)] = 31485, + [SMALL_STATE(2924)] = 31550, + [SMALL_STATE(2925)] = 31615, + [SMALL_STATE(2926)] = 31680, + [SMALL_STATE(2927)] = 31789, + [SMALL_STATE(2928)] = 31854, + [SMALL_STATE(2929)] = 31919, + [SMALL_STATE(2930)] = 31984, + [SMALL_STATE(2931)] = 32049, + [SMALL_STATE(2932)] = 32116, + [SMALL_STATE(2933)] = 32185, + [SMALL_STATE(2934)] = 32260, + [SMALL_STATE(2935)] = 32325, + [SMALL_STATE(2936)] = 32406, + [SMALL_STATE(2937)] = 32489, + [SMALL_STATE(2938)] = 32554, + [SMALL_STATE(2939)] = 32619, + [SMALL_STATE(2940)] = 32700, + [SMALL_STATE(2941)] = 32809, + [SMALL_STATE(2942)] = 32890, + [SMALL_STATE(2943)] = 32969, + [SMALL_STATE(2944)] = 33034, + [SMALL_STATE(2945)] = 33099, + [SMALL_STATE(2946)] = 33164, + [SMALL_STATE(2947)] = 33243, + [SMALL_STATE(2948)] = 33356, + [SMALL_STATE(2949)] = 33469, + [SMALL_STATE(2950)] = 33534, + [SMALL_STATE(2951)] = 33639, + [SMALL_STATE(2952)] = 33708, + [SMALL_STATE(2953)] = 33809, + [SMALL_STATE(2954)] = 33908, + [SMALL_STATE(2955)] = 34005, + [SMALL_STATE(2956)] = 34100, + [SMALL_STATE(2957)] = 34191, + [SMALL_STATE(2958)] = 34278, + [SMALL_STATE(2959)] = 34343, + [SMALL_STATE(2960)] = 34410, + [SMALL_STATE(2961)] = 34475, + [SMALL_STATE(2962)] = 34544, + [SMALL_STATE(2963)] = 34609, + [SMALL_STATE(2964)] = 34678, + [SMALL_STATE(2965)] = 34751, + [SMALL_STATE(2966)] = 34824, + [SMALL_STATE(2967)] = 34889, + [SMALL_STATE(2968)] = 34960, + [SMALL_STATE(2969)] = 35029, + [SMALL_STATE(2970)] = 35094, + [SMALL_STATE(2971)] = 35173, + [SMALL_STATE(2972)] = 35254, + [SMALL_STATE(2973)] = 35319, + [SMALL_STATE(2974)] = 35398, + [SMALL_STATE(2975)] = 35479, + [SMALL_STATE(2976)] = 35544, + [SMALL_STATE(2977)] = 35621, + [SMALL_STATE(2978)] = 35686, + [SMALL_STATE(2979)] = 35751, + [SMALL_STATE(2980)] = 35815, + [SMALL_STATE(2981)] = 35883, + [SMALL_STATE(2982)] = 35951, + [SMALL_STATE(2983)] = 36019, + [SMALL_STATE(2984)] = 36087, + [SMALL_STATE(2985)] = 36155, + [SMALL_STATE(2986)] = 36223, + [SMALL_STATE(2987)] = 36291, + [SMALL_STATE(2988)] = 36359, + [SMALL_STATE(2989)] = 36439, + [SMALL_STATE(2990)] = 36507, + [SMALL_STATE(2991)] = 36575, + [SMALL_STATE(2992)] = 36689, + [SMALL_STATE(2993)] = 36753, + [SMALL_STATE(2994)] = 36821, + [SMALL_STATE(2995)] = 36893, + [SMALL_STATE(2996)] = 36959, + [SMALL_STATE(2997)] = 37023, + [SMALL_STATE(2998)] = 37087, + [SMALL_STATE(2999)] = 37155, + [SMALL_STATE(3000)] = 37219, + [SMALL_STATE(3001)] = 37283, + [SMALL_STATE(3002)] = 37347, + [SMALL_STATE(3003)] = 37411, + [SMALL_STATE(3004)] = 37475, + [SMALL_STATE(3005)] = 37539, + [SMALL_STATE(3006)] = 37607, + [SMALL_STATE(3007)] = 37671, + [SMALL_STATE(3008)] = 37735, + [SMALL_STATE(3009)] = 37799, + [SMALL_STATE(3010)] = 37863, + [SMALL_STATE(3011)] = 37927, + [SMALL_STATE(3012)] = 37991, + [SMALL_STATE(3013)] = 38055, + [SMALL_STATE(3014)] = 38119, + [SMALL_STATE(3015)] = 38183, + [SMALL_STATE(3016)] = 38247, + [SMALL_STATE(3017)] = 38315, + [SMALL_STATE(3018)] = 38379, + [SMALL_STATE(3019)] = 38443, + [SMALL_STATE(3020)] = 38511, + [SMALL_STATE(3021)] = 38575, + [SMALL_STATE(3022)] = 38643, + [SMALL_STATE(3023)] = 38707, + [SMALL_STATE(3024)] = 38771, + [SMALL_STATE(3025)] = 38835, + [SMALL_STATE(3026)] = 38901, + [SMALL_STATE(3027)] = 38965, + [SMALL_STATE(3028)] = 39033, + [SMALL_STATE(3029)] = 39097, + [SMALL_STATE(3030)] = 39161, + [SMALL_STATE(3031)] = 39225, + [SMALL_STATE(3032)] = 39289, + [SMALL_STATE(3033)] = 39353, + [SMALL_STATE(3034)] = 39417, + [SMALL_STATE(3035)] = 39481, + [SMALL_STATE(3036)] = 39545, + [SMALL_STATE(3037)] = 39609, + [SMALL_STATE(3038)] = 39673, + [SMALL_STATE(3039)] = 39737, + [SMALL_STATE(3040)] = 39805, + [SMALL_STATE(3041)] = 39877, + [SMALL_STATE(3042)] = 39941, + [SMALL_STATE(3043)] = 40051, + [SMALL_STATE(3044)] = 40123, + [SMALL_STATE(3045)] = 40187, + [SMALL_STATE(3046)] = 40255, + [SMALL_STATE(3047)] = 40319, + [SMALL_STATE(3048)] = 40387, + [SMALL_STATE(3049)] = 40451, + [SMALL_STATE(3050)] = 40561, + [SMALL_STATE(3051)] = 40625, + [SMALL_STATE(3052)] = 40689, + [SMALL_STATE(3053)] = 40753, + [SMALL_STATE(3054)] = 40817, + [SMALL_STATE(3055)] = 40881, + [SMALL_STATE(3056)] = 40949, + [SMALL_STATE(3057)] = 41013, + [SMALL_STATE(3058)] = 41077, + [SMALL_STATE(3059)] = 41143, + [SMALL_STATE(3060)] = 41257, + [SMALL_STATE(3061)] = 41337, + [SMALL_STATE(3062)] = 41401, + [SMALL_STATE(3063)] = 41465, + [SMALL_STATE(3064)] = 41545, + [SMALL_STATE(3065)] = 41651, + [SMALL_STATE(3066)] = 41753, + [SMALL_STATE(3067)] = 41851, + [SMALL_STATE(3068)] = 41947, + [SMALL_STATE(3069)] = 42039, + [SMALL_STATE(3070)] = 42129, + [SMALL_STATE(3071)] = 42215, + [SMALL_STATE(3072)] = 42297, + [SMALL_STATE(3073)] = 42381, + [SMALL_STATE(3074)] = 42449, + [SMALL_STATE(3075)] = 42513, + [SMALL_STATE(3076)] = 42583, + [SMALL_STATE(3077)] = 42649, + [SMALL_STATE(3078)] = 42717, + [SMALL_STATE(3079)] = 42781, + [SMALL_STATE(3080)] = 42851, + [SMALL_STATE(3081)] = 42919, + [SMALL_STATE(3082)] = 42991, + [SMALL_STATE(3083)] = 43059, + [SMALL_STATE(3084)] = 43127, + [SMALL_STATE(3085)] = 43197, + [SMALL_STATE(3086)] = 43261, + [SMALL_STATE(3087)] = 43325, + [SMALL_STATE(3088)] = 43389, + [SMALL_STATE(3089)] = 43457, + [SMALL_STATE(3090)] = 43523, + [SMALL_STATE(3091)] = 43593, + [SMALL_STATE(3092)] = 43657, + [SMALL_STATE(3093)] = 43721, + [SMALL_STATE(3094)] = 43785, + [SMALL_STATE(3095)] = 43851, + [SMALL_STATE(3096)] = 43915, + [SMALL_STATE(3097)] = 44025, + [SMALL_STATE(3098)] = 44089, + [SMALL_STATE(3099)] = 44153, + [SMALL_STATE(3100)] = 44217, + [SMALL_STATE(3101)] = 44283, + [SMALL_STATE(3102)] = 44351, + [SMALL_STATE(3103)] = 44419, + [SMALL_STATE(3104)] = 44495, + [SMALL_STATE(3105)] = 44563, + [SMALL_STATE(3106)] = 44627, + [SMALL_STATE(3107)] = 44707, + [SMALL_STATE(3108)] = 44775, + [SMALL_STATE(3109)] = 44889, + [SMALL_STATE(3110)] = 44957, + [SMALL_STATE(3111)] = 45037, + [SMALL_STATE(3112)] = 45113, + [SMALL_STATE(3113)] = 45181, + [SMALL_STATE(3114)] = 45291, + [SMALL_STATE(3115)] = 45359, + [SMALL_STATE(3116)] = 45427, + [SMALL_STATE(3117)] = 45491, + [SMALL_STATE(3118)] = 45602, + [SMALL_STATE(3119)] = 45709, + [SMALL_STATE(3120)] = 45776, + [SMALL_STATE(3121)] = 45851, + [SMALL_STATE(3122)] = 45914, + [SMALL_STATE(3123)] = 46039, + [SMALL_STATE(3124)] = 46118, + [SMALL_STATE(3125)] = 46181, + [SMALL_STATE(3126)] = 46252, + [SMALL_STATE(3127)] = 46317, + [SMALL_STATE(3128)] = 46380, + [SMALL_STATE(3129)] = 46447, + [SMALL_STATE(3130)] = 46514, + [SMALL_STATE(3131)] = 46639, + [SMALL_STATE(3132)] = 46702, + [SMALL_STATE(3133)] = 46775, + [SMALL_STATE(3134)] = 46856, + [SMALL_STATE(3135)] = 46919, + [SMALL_STATE(3136)] = 46998, + [SMALL_STATE(3137)] = 47085, + [SMALL_STATE(3138)] = 47164, + [SMALL_STATE(3139)] = 47247, + [SMALL_STATE(3140)] = 47314, + [SMALL_STATE(3141)] = 47391, + [SMALL_STATE(3142)] = 47454, + [SMALL_STATE(3143)] = 47517, + [SMALL_STATE(3144)] = 47594, + [SMALL_STATE(3145)] = 47661, + [SMALL_STATE(3146)] = 47734, + [SMALL_STATE(3147)] = 47797, + [SMALL_STATE(3148)] = 47904, + [SMALL_STATE(3149)] = 47971, + [SMALL_STATE(3150)] = 48050, + [SMALL_STATE(3151)] = 48117, + [SMALL_STATE(3152)] = 48184, + [SMALL_STATE(3153)] = 48295, + [SMALL_STATE(3154)] = 48370, + [SMALL_STATE(3155)] = 48473, + [SMALL_STATE(3156)] = 48572, + [SMALL_STATE(3157)] = 48639, + [SMALL_STATE(3158)] = 48736, + [SMALL_STATE(3159)] = 48799, + [SMALL_STATE(3160)] = 48894, + [SMALL_STATE(3161)] = 48963, + [SMALL_STATE(3162)] = 49056, + [SMALL_STATE(3163)] = 49123, + [SMALL_STATE(3164)] = 49190, + [SMALL_STATE(3165)] = 49279, + [SMALL_STATE(3166)] = 49356, + [SMALL_STATE(3167)] = 49423, + [SMALL_STATE(3168)] = 49490, + [SMALL_STATE(3169)] = 49563, + [SMALL_STATE(3170)] = 49630, + [SMALL_STATE(3171)] = 49737, + [SMALL_STATE(3172)] = 49804, + [SMALL_STATE(3173)] = 49915, + [SMALL_STATE(3174)] = 49982, + [SMALL_STATE(3175)] = 50089, + [SMALL_STATE(3176)] = 50214, + [SMALL_STATE(3177)] = 50277, + [SMALL_STATE(3178)] = 50384, + [SMALL_STATE(3179)] = 50449, + [SMALL_STATE(3180)] = 50516, + [SMALL_STATE(3181)] = 50583, + [SMALL_STATE(3182)] = 50650, + [SMALL_STATE(3183)] = 50719, + [SMALL_STATE(3184)] = 50798, + [SMALL_STATE(3185)] = 50923, + [SMALL_STATE(3186)] = 50990, + [SMALL_STATE(3187)] = 51115, + [SMALL_STATE(3188)] = 51202, + [SMALL_STATE(3189)] = 51265, + [SMALL_STATE(3190)] = 51328, + [SMALL_STATE(3191)] = 51405, + [SMALL_STATE(3192)] = 51476, + [SMALL_STATE(3193)] = 51539, + [SMALL_STATE(3194)] = 51610, + [SMALL_STATE(3195)] = 51673, + [SMALL_STATE(3196)] = 51740, + [SMALL_STATE(3197)] = 51811, + [SMALL_STATE(3198)] = 51884, + [SMALL_STATE(3199)] = 51947, + [SMALL_STATE(3200)] = 52010, + [SMALL_STATE(3201)] = 52081, + [SMALL_STATE(3202)] = 52148, + [SMALL_STATE(3203)] = 52225, + [SMALL_STATE(3204)] = 52288, + [SMALL_STATE(3205)] = 52355, + [SMALL_STATE(3206)] = 52440, + [SMALL_STATE(3207)] = 52502, + [SMALL_STATE(3208)] = 52564, + [SMALL_STATE(3209)] = 52626, + [SMALL_STATE(3210)] = 52688, + [SMALL_STATE(3211)] = 52750, + [SMALL_STATE(3212)] = 52812, + [SMALL_STATE(3213)] = 52878, + [SMALL_STATE(3214)] = 52944, + [SMALL_STATE(3215)] = 53006, + [SMALL_STATE(3216)] = 53068, + [SMALL_STATE(3217)] = 53130, + [SMALL_STATE(3218)] = 53192, + [SMALL_STATE(3219)] = 53260, + [SMALL_STATE(3220)] = 53322, + [SMALL_STATE(3221)] = 53384, + [SMALL_STATE(3222)] = 53446, + [SMALL_STATE(3223)] = 53508, + [SMALL_STATE(3224)] = 53574, + [SMALL_STATE(3225)] = 53636, + [SMALL_STATE(3226)] = 53698, + [SMALL_STATE(3227)] = 53770, + [SMALL_STATE(3228)] = 53832, + [SMALL_STATE(3229)] = 53896, + [SMALL_STATE(3230)] = 53958, + [SMALL_STATE(3231)] = 54020, + [SMALL_STATE(3232)] = 54082, + [SMALL_STATE(3233)] = 54144, + [SMALL_STATE(3234)] = 54206, + [SMALL_STATE(3235)] = 54276, + [SMALL_STATE(3236)] = 54338, + [SMALL_STATE(3237)] = 54400, + [SMALL_STATE(3238)] = 54472, + [SMALL_STATE(3239)] = 54542, + [SMALL_STATE(3240)] = 54610, + [SMALL_STATE(3241)] = 54672, + [SMALL_STATE(3242)] = 54734, + [SMALL_STATE(3243)] = 54806, + [SMALL_STATE(3244)] = 54872, + [SMALL_STATE(3245)] = 54934, + [SMALL_STATE(3246)] = 54996, + [SMALL_STATE(3247)] = 55062, + [SMALL_STATE(3248)] = 55124, + [SMALL_STATE(3249)] = 55186, + [SMALL_STATE(3250)] = 55248, + [SMALL_STATE(3251)] = 55310, + [SMALL_STATE(3252)] = 55372, + [SMALL_STATE(3253)] = 55436, + [SMALL_STATE(3254)] = 55498, + [SMALL_STATE(3255)] = 55560, + [SMALL_STATE(3256)] = 55622, + [SMALL_STATE(3257)] = 55690, + [SMALL_STATE(3258)] = 55752, + [SMALL_STATE(3259)] = 55814, + [SMALL_STATE(3260)] = 55876, + [SMALL_STATE(3261)] = 55938, + [SMALL_STATE(3262)] = 56000, + [SMALL_STATE(3263)] = 56064, + [SMALL_STATE(3264)] = 56126, + [SMALL_STATE(3265)] = 56188, + [SMALL_STATE(3266)] = 56258, + [SMALL_STATE(3267)] = 56320, + [SMALL_STATE(3268)] = 56382, + [SMALL_STATE(3269)] = 56448, + [SMALL_STATE(3270)] = 56510, + [SMALL_STATE(3271)] = 56572, + [SMALL_STATE(3272)] = 56634, + [SMALL_STATE(3273)] = 56696, + [SMALL_STATE(3274)] = 56762, + [SMALL_STATE(3275)] = 56824, + [SMALL_STATE(3276)] = 56886, + [SMALL_STATE(3277)] = 56948, + [SMALL_STATE(3278)] = 57010, + [SMALL_STATE(3279)] = 57080, + [SMALL_STATE(3280)] = 57146, + [SMALL_STATE(3281)] = 57212, + [SMALL_STATE(3282)] = 57274, + [SMALL_STATE(3283)] = 57336, + [SMALL_STATE(3284)] = 57398, + [SMALL_STATE(3285)] = 57460, + [SMALL_STATE(3286)] = 57522, + [SMALL_STATE(3287)] = 57584, + [SMALL_STATE(3288)] = 57646, + [SMALL_STATE(3289)] = 57708, + [SMALL_STATE(3290)] = 57770, + [SMALL_STATE(3291)] = 57832, + [SMALL_STATE(3292)] = 57894, + [SMALL_STATE(3293)] = 57956, + [SMALL_STATE(3294)] = 58018, + [SMALL_STATE(3295)] = 58080, + [SMALL_STATE(3296)] = 58146, + [SMALL_STATE(3297)] = 58208, + [SMALL_STATE(3298)] = 58270, + [SMALL_STATE(3299)] = 58332, + [SMALL_STATE(3300)] = 58394, + [SMALL_STATE(3301)] = 58456, + [SMALL_STATE(3302)] = 58518, + [SMALL_STATE(3303)] = 58584, + [SMALL_STATE(3304)] = 58652, + [SMALL_STATE(3305)] = 58714, + [SMALL_STATE(3306)] = 58782, + [SMALL_STATE(3307)] = 58844, + [SMALL_STATE(3308)] = 58908, + [SMALL_STATE(3309)] = 58978, + [SMALL_STATE(3310)] = 59040, + [SMALL_STATE(3311)] = 59102, + [SMALL_STATE(3312)] = 59168, + [SMALL_STATE(3313)] = 59230, + [SMALL_STATE(3314)] = 59296, + [SMALL_STATE(3315)] = 59362, + [SMALL_STATE(3316)] = 59434, + [SMALL_STATE(3317)] = 59500, + [SMALL_STATE(3318)] = 59566, + [SMALL_STATE(3319)] = 59628, + [SMALL_STATE(3320)] = 59690, + [SMALL_STATE(3321)] = 59752, + [SMALL_STATE(3322)] = 59817, + [SMALL_STATE(3323)] = 59878, + [SMALL_STATE(3324)] = 59957, + [SMALL_STATE(3325)] = 60020, + [SMALL_STATE(3326)] = 60095, + [SMALL_STATE(3327)] = 60156, + [SMALL_STATE(3328)] = 60261, + [SMALL_STATE(3329)] = 60322, + [SMALL_STATE(3330)] = 60433, + [SMALL_STATE(3331)] = 60494, + [SMALL_STATE(3332)] = 60555, + [SMALL_STATE(3333)] = 60616, + [SMALL_STATE(3334)] = 60677, + [SMALL_STATE(3335)] = 60738, + [SMALL_STATE(3336)] = 60799, + [SMALL_STATE(3337)] = 60860, + [SMALL_STATE(3338)] = 60921, + [SMALL_STATE(3339)] = 60986, + [SMALL_STATE(3340)] = 61051, + [SMALL_STATE(3341)] = 61112, + [SMALL_STATE(3342)] = 61173, + [SMALL_STATE(3343)] = 61234, + [SMALL_STATE(3344)] = 61295, + [SMALL_STATE(3345)] = 61356, + [SMALL_STATE(3346)] = 61425, + [SMALL_STATE(3347)] = 61486, + [SMALL_STATE(3348)] = 61547, + [SMALL_STATE(3349)] = 61608, + [SMALL_STATE(3350)] = 61677, + [SMALL_STATE(3351)] = 61788, + [SMALL_STATE(3352)] = 61851, + [SMALL_STATE(3353)] = 61912, + [SMALL_STATE(3354)] = 62001, + [SMALL_STATE(3355)] = 62100, + [SMALL_STATE(3356)] = 62161, + [SMALL_STATE(3357)] = 62222, + [SMALL_STATE(3358)] = 62285, + [SMALL_STATE(3359)] = 62346, + [SMALL_STATE(3360)] = 62407, + [SMALL_STATE(3361)] = 62468, + [SMALL_STATE(3362)] = 62555, + [SMALL_STATE(3363)] = 62638, + [SMALL_STATE(3364)] = 62699, + [SMALL_STATE(3365)] = 62806, + [SMALL_STATE(3366)] = 62867, + [SMALL_STATE(3367)] = 62928, + [SMALL_STATE(3368)] = 62989, + [SMALL_STATE(3369)] = 63050, + [SMALL_STATE(3370)] = 63111, + [SMALL_STATE(3371)] = 63172, + [SMALL_STATE(3372)] = 63239, + [SMALL_STATE(3373)] = 63308, + [SMALL_STATE(3374)] = 63369, + [SMALL_STATE(3375)] = 63480, + [SMALL_STATE(3376)] = 63551, + [SMALL_STATE(3377)] = 63612, + [SMALL_STATE(3378)] = 63673, + [SMALL_STATE(3379)] = 63752, + [SMALL_STATE(3380)] = 63813, + [SMALL_STATE(3381)] = 63906, + [SMALL_STATE(3382)] = 63967, + [SMALL_STATE(3383)] = 64028, + [SMALL_STATE(3384)] = 64093, + [SMALL_STATE(3385)] = 64154, + [SMALL_STATE(3386)] = 64221, + [SMALL_STATE(3387)] = 64282, + [SMALL_STATE(3388)] = 64353, + [SMALL_STATE(3389)] = 64420, + [SMALL_STATE(3390)] = 64481, + [SMALL_STATE(3391)] = 64546, + [SMALL_STATE(3392)] = 64611, + [SMALL_STATE(3393)] = 64676, + [SMALL_STATE(3394)] = 64741, + [SMALL_STATE(3395)] = 64806, + [SMALL_STATE(3396)] = 64881, + [SMALL_STATE(3397)] = 64956, + [SMALL_STATE(3398)] = 65025, + [SMALL_STATE(3399)] = 65086, + [SMALL_STATE(3400)] = 65147, + [SMALL_STATE(3401)] = 65208, + [SMALL_STATE(3402)] = 65315, + [SMALL_STATE(3403)] = 65376, + [SMALL_STATE(3404)] = 65441, + [SMALL_STATE(3405)] = 65502, + [SMALL_STATE(3406)] = 65563, + [SMALL_STATE(3407)] = 65638, + [SMALL_STATE(3408)] = 65699, + [SMALL_STATE(3409)] = 65760, + [SMALL_STATE(3410)] = 65821, + [SMALL_STATE(3411)] = 65882, + [SMALL_STATE(3412)] = 65949, + [SMALL_STATE(3413)] = 66010, + [SMALL_STATE(3414)] = 66071, + [SMALL_STATE(3415)] = 66132, + [SMALL_STATE(3416)] = 66193, + [SMALL_STATE(3417)] = 66254, + [SMALL_STATE(3418)] = 66361, + [SMALL_STATE(3419)] = 66468, + [SMALL_STATE(3420)] = 66541, + [SMALL_STATE(3421)] = 66602, + [SMALL_STATE(3422)] = 66667, + [SMALL_STATE(3423)] = 66728, + [SMALL_STATE(3424)] = 66789, + [SMALL_STATE(3425)] = 66850, + [SMALL_STATE(3426)] = 66911, + [SMALL_STATE(3427)] = 66988, + [SMALL_STATE(3428)] = 67067, + [SMALL_STATE(3429)] = 67132, + [SMALL_STATE(3430)] = 67197, + [SMALL_STATE(3431)] = 67262, + [SMALL_STATE(3432)] = 67343, + [SMALL_STATE(3433)] = 67404, + [SMALL_STATE(3434)] = 67469, + [SMALL_STATE(3435)] = 67572, + [SMALL_STATE(3436)] = 67633, + [SMALL_STATE(3437)] = 67694, + [SMALL_STATE(3438)] = 67755, + [SMALL_STATE(3439)] = 67816, + [SMALL_STATE(3440)] = 67877, + [SMALL_STATE(3441)] = 67938, + [SMALL_STATE(3442)] = 67999, + [SMALL_STATE(3443)] = 68060, + [SMALL_STATE(3444)] = 68121, + [SMALL_STATE(3445)] = 68182, + [SMALL_STATE(3446)] = 68249, + [SMALL_STATE(3447)] = 68310, + [SMALL_STATE(3448)] = 68371, + [SMALL_STATE(3449)] = 68432, + [SMALL_STATE(3450)] = 68497, + [SMALL_STATE(3451)] = 68558, + [SMALL_STATE(3452)] = 68623, + [SMALL_STATE(3453)] = 68684, + [SMALL_STATE(3454)] = 68761, + [SMALL_STATE(3455)] = 68822, + [SMALL_STATE(3456)] = 68887, + [SMALL_STATE(3457)] = 68948, + [SMALL_STATE(3458)] = 69009, + [SMALL_STATE(3459)] = 69070, + [SMALL_STATE(3460)] = 69131, + [SMALL_STATE(3461)] = 69192, + [SMALL_STATE(3462)] = 69253, + [SMALL_STATE(3463)] = 69314, + [SMALL_STATE(3464)] = 69383, + [SMALL_STATE(3465)] = 69444, + [SMALL_STATE(3466)] = 69505, + [SMALL_STATE(3467)] = 69566, + [SMALL_STATE(3468)] = 69645, + [SMALL_STATE(3469)] = 69706, + [SMALL_STATE(3470)] = 69767, + [SMALL_STATE(3471)] = 69828, + [SMALL_STATE(3472)] = 69889, + [SMALL_STATE(3473)] = 69950, + [SMALL_STATE(3474)] = 70013, + [SMALL_STATE(3475)] = 70084, + [SMALL_STATE(3476)] = 70155, + [SMALL_STATE(3477)] = 70218, + [SMALL_STATE(3478)] = 70279, + [SMALL_STATE(3479)] = 70384, + [SMALL_STATE(3480)] = 70495, + [SMALL_STATE(3481)] = 70602, + [SMALL_STATE(3482)] = 70663, + [SMALL_STATE(3483)] = 70724, + [SMALL_STATE(3484)] = 70785, + [SMALL_STATE(3485)] = 70846, + [SMALL_STATE(3486)] = 70957, + [SMALL_STATE(3487)] = 71018, + [SMALL_STATE(3488)] = 71079, + [SMALL_STATE(3489)] = 71140, + [SMALL_STATE(3490)] = 71201, + [SMALL_STATE(3491)] = 71262, + [SMALL_STATE(3492)] = 71369, + [SMALL_STATE(3493)] = 71430, + [SMALL_STATE(3494)] = 71495, + [SMALL_STATE(3495)] = 71562, + [SMALL_STATE(3496)] = 71669, + [SMALL_STATE(3497)] = 71732, + [SMALL_STATE(3498)] = 71809, + [SMALL_STATE(3499)] = 71884, + [SMALL_STATE(3500)] = 71987, + [SMALL_STATE(3501)] = 72048, + [SMALL_STATE(3502)] = 72147, + [SMALL_STATE(3503)] = 72208, + [SMALL_STATE(3504)] = 72303, + [SMALL_STATE(3505)] = 72398, + [SMALL_STATE(3506)] = 72459, + [SMALL_STATE(3507)] = 72552, + [SMALL_STATE(3508)] = 72617, + [SMALL_STATE(3509)] = 72682, + [SMALL_STATE(3510)] = 72771, + [SMALL_STATE(3511)] = 72858, + [SMALL_STATE(3512)] = 72941, + [SMALL_STATE(3513)] = 73020, + [SMALL_STATE(3514)] = 73127, + [SMALL_STATE(3515)] = 73208, + [SMALL_STATE(3516)] = 73279, + [SMALL_STATE(3517)] = 73340, + [SMALL_STATE(3518)] = 73401, + [SMALL_STATE(3519)] = 73474, + [SMALL_STATE(3520)] = 73535, + [SMALL_STATE(3521)] = 73596, + [SMALL_STATE(3522)] = 73657, + [SMALL_STATE(3523)] = 73722, + [SMALL_STATE(3524)] = 73783, + [SMALL_STATE(3525)] = 73844, + [SMALL_STATE(3526)] = 73915, + [SMALL_STATE(3527)] = 74026, + [SMALL_STATE(3528)] = 74087, + [SMALL_STATE(3529)] = 74151, + [SMALL_STATE(3530)] = 74227, + [SMALL_STATE(3531)] = 74287, + [SMALL_STATE(3532)] = 74347, + [SMALL_STATE(3533)] = 74451, + [SMALL_STATE(3534)] = 74511, + [SMALL_STATE(3535)] = 74571, + [SMALL_STATE(3536)] = 74633, + [SMALL_STATE(3537)] = 74737, + [SMALL_STATE(3538)] = 74797, + [SMALL_STATE(3539)] = 74857, + [SMALL_STATE(3540)] = 74939, + [SMALL_STATE(3541)] = 74999, + [SMALL_STATE(3542)] = 75059, + [SMALL_STATE(3543)] = 75173, + [SMALL_STATE(3544)] = 75237, + [SMALL_STATE(3545)] = 75351, + [SMALL_STATE(3546)] = 75465, + [SMALL_STATE(3547)] = 75525, + [SMALL_STATE(3548)] = 75587, + [SMALL_STATE(3549)] = 75647, + [SMALL_STATE(3550)] = 75713, + [SMALL_STATE(3551)] = 75781, + [SMALL_STATE(3552)] = 75841, + [SMALL_STATE(3553)] = 75901, + [SMALL_STATE(3554)] = 75961, + [SMALL_STATE(3555)] = 76021, + [SMALL_STATE(3556)] = 76081, + [SMALL_STATE(3557)] = 76141, + [SMALL_STATE(3558)] = 76201, + [SMALL_STATE(3559)] = 76267, + [SMALL_STATE(3560)] = 76327, + [SMALL_STATE(3561)] = 76387, + [SMALL_STATE(3562)] = 76447, + [SMALL_STATE(3563)] = 76507, + [SMALL_STATE(3564)] = 76575, + [SMALL_STATE(3565)] = 76635, + [SMALL_STATE(3566)] = 76701, + [SMALL_STATE(3567)] = 76761, + [SMALL_STATE(3568)] = 76821, + [SMALL_STATE(3569)] = 76895, + [SMALL_STATE(3570)] = 76955, + [SMALL_STATE(3571)] = 77015, + [SMALL_STATE(3572)] = 77075, + [SMALL_STATE(3573)] = 77135, + [SMALL_STATE(3574)] = 77195, + [SMALL_STATE(3575)] = 77309, + [SMALL_STATE(3576)] = 77377, + [SMALL_STATE(3577)] = 77437, + [SMALL_STATE(3578)] = 77505, + [SMALL_STATE(3579)] = 77577, + [SMALL_STATE(3580)] = 77637, + [SMALL_STATE(3581)] = 77697, + [SMALL_STATE(3582)] = 77765, + [SMALL_STATE(3583)] = 77825, + [SMALL_STATE(3584)] = 77933, + [SMALL_STATE(3585)] = 77995, + [SMALL_STATE(3586)] = 78055, + [SMALL_STATE(3587)] = 78169, + [SMALL_STATE(3588)] = 78233, + [SMALL_STATE(3589)] = 78347, + [SMALL_STATE(3590)] = 78461, + [SMALL_STATE(3591)] = 78533, + [SMALL_STATE(3592)] = 78637, + [SMALL_STATE(3593)] = 78697, + [SMALL_STATE(3594)] = 78805, + [SMALL_STATE(3595)] = 78875, + [SMALL_STATE(3596)] = 78935, + [SMALL_STATE(3597)] = 79009, + [SMALL_STATE(3598)] = 79069, + [SMALL_STATE(3599)] = 79129, + [SMALL_STATE(3600)] = 79189, + [SMALL_STATE(3601)] = 79249, + [SMALL_STATE(3602)] = 79327, + [SMALL_STATE(3603)] = 79401, + [SMALL_STATE(3604)] = 79461, + [SMALL_STATE(3605)] = 79521, + [SMALL_STATE(3606)] = 79581, + [SMALL_STATE(3607)] = 79641, + [SMALL_STATE(3608)] = 79755, + [SMALL_STATE(3609)] = 79815, + [SMALL_STATE(3610)] = 79883, + [SMALL_STATE(3611)] = 79943, + [SMALL_STATE(3612)] = 80047, + [SMALL_STATE(3613)] = 80127, + [SMALL_STATE(3614)] = 80187, + [SMALL_STATE(3615)] = 80301, + [SMALL_STATE(3616)] = 80361, + [SMALL_STATE(3617)] = 80421, + [SMALL_STATE(3618)] = 80481, + [SMALL_STATE(3619)] = 80541, + [SMALL_STATE(3620)] = 80601, + [SMALL_STATE(3621)] = 80669, + [SMALL_STATE(3622)] = 80783, + [SMALL_STATE(3623)] = 80843, + [SMALL_STATE(3624)] = 80903, + [SMALL_STATE(3625)] = 80967, + [SMALL_STATE(3626)] = 81031, + [SMALL_STATE(3627)] = 81091, + [SMALL_STATE(3628)] = 81167, + [SMALL_STATE(3629)] = 81227, + [SMALL_STATE(3630)] = 81287, + [SMALL_STATE(3631)] = 81347, + [SMALL_STATE(3632)] = 81407, + [SMALL_STATE(3633)] = 81467, + [SMALL_STATE(3634)] = 81533, + [SMALL_STATE(3635)] = 81593, + [SMALL_STATE(3636)] = 81653, + [SMALL_STATE(3637)] = 81719, + [SMALL_STATE(3638)] = 81785, + [SMALL_STATE(3639)] = 81845, + [SMALL_STATE(3640)] = 81911, + [SMALL_STATE(3641)] = 81971, + [SMALL_STATE(3642)] = 82031, + [SMALL_STATE(3643)] = 82091, + [SMALL_STATE(3644)] = 82165, + [SMALL_STATE(3645)] = 82233, + [SMALL_STATE(3646)] = 82333, + [SMALL_STATE(3647)] = 82393, + [SMALL_STATE(3648)] = 82455, + [SMALL_STATE(3649)] = 82515, + [SMALL_STATE(3650)] = 82581, + [SMALL_STATE(3651)] = 82641, + [SMALL_STATE(3652)] = 82701, + [SMALL_STATE(3653)] = 82815, + [SMALL_STATE(3654)] = 82879, + [SMALL_STATE(3655)] = 82939, + [SMALL_STATE(3656)] = 83001, + [SMALL_STATE(3657)] = 83109, + [SMALL_STATE(3658)] = 83169, + [SMALL_STATE(3659)] = 83229, + [SMALL_STATE(3660)] = 83289, + [SMALL_STATE(3661)] = 83349, + [SMALL_STATE(3662)] = 83445, + [SMALL_STATE(3663)] = 83513, + [SMALL_STATE(3664)] = 83573, + [SMALL_STATE(3665)] = 83639, + [SMALL_STATE(3666)] = 83707, + [SMALL_STATE(3667)] = 83821, + [SMALL_STATE(3668)] = 83881, + [SMALL_STATE(3669)] = 83995, + [SMALL_STATE(3670)] = 84055, + [SMALL_STATE(3671)] = 84139, + [SMALL_STATE(3672)] = 84199, + [SMALL_STATE(3673)] = 84259, + [SMALL_STATE(3674)] = 84319, + [SMALL_STATE(3675)] = 84423, + [SMALL_STATE(3676)] = 84483, + [SMALL_STATE(3677)] = 84597, + [SMALL_STATE(3678)] = 84661, + [SMALL_STATE(3679)] = 84721, + [SMALL_STATE(3680)] = 84781, + [SMALL_STATE(3681)] = 84841, + [SMALL_STATE(3682)] = 84901, + [SMALL_STATE(3683)] = 84967, + [SMALL_STATE(3684)] = 85037, + [SMALL_STATE(3685)] = 85097, + [SMALL_STATE(3686)] = 85157, + [SMALL_STATE(3687)] = 85217, + [SMALL_STATE(3688)] = 85277, + [SMALL_STATE(3689)] = 85337, + [SMALL_STATE(3690)] = 85397, + [SMALL_STATE(3691)] = 85457, + [SMALL_STATE(3692)] = 85549, + [SMALL_STATE(3693)] = 85639, + [SMALL_STATE(3694)] = 85753, + [SMALL_STATE(3695)] = 85839, + [SMALL_STATE(3696)] = 85899, + [SMALL_STATE(3697)] = 85965, + [SMALL_STATE(3698)] = 86037, + [SMALL_STATE(3699)] = 86097, + [SMALL_STATE(3700)] = 86157, + [SMALL_STATE(3701)] = 86221, + [SMALL_STATE(3702)] = 86281, + [SMALL_STATE(3703)] = 86355, + [SMALL_STATE(3704)] = 86421, + [SMALL_STATE(3705)] = 86481, + [SMALL_STATE(3706)] = 86542, + [SMALL_STATE(3707)] = 86643, + [SMALL_STATE(3708)] = 86702, + [SMALL_STATE(3709)] = 86803, + [SMALL_STATE(3710)] = 86862, + [SMALL_STATE(3711)] = 86921, + [SMALL_STATE(3712)] = 86980, + [SMALL_STATE(3713)] = 87039, + [SMALL_STATE(3714)] = 87106, + [SMALL_STATE(3715)] = 87207, + [SMALL_STATE(3716)] = 87312, + [SMALL_STATE(3717)] = 87413, + [SMALL_STATE(3718)] = 87474, + [SMALL_STATE(3719)] = 87575, + [SMALL_STATE(3720)] = 87634, + [SMALL_STATE(3721)] = 87699, + [SMALL_STATE(3722)] = 87758, + [SMALL_STATE(3723)] = 87867, + [SMALL_STATE(3724)] = 87930, + [SMALL_STATE(3725)] = 87989, + [SMALL_STATE(3726)] = 88058, + [SMALL_STATE(3727)] = 88117, + [SMALL_STATE(3728)] = 88176, + [SMALL_STATE(3729)] = 88281, + [SMALL_STATE(3730)] = 88344, + [SMALL_STATE(3731)] = 88445, + [SMALL_STATE(3732)] = 88508, + [SMALL_STATE(3733)] = 88571, + [SMALL_STATE(3734)] = 88630, + [SMALL_STATE(3735)] = 88731, + [SMALL_STATE(3736)] = 88790, + [SMALL_STATE(3737)] = 88849, + [SMALL_STATE(3738)] = 88908, + [SMALL_STATE(3739)] = 88971, + [SMALL_STATE(3740)] = 89030, + [SMALL_STATE(3741)] = 89139, + [SMALL_STATE(3742)] = 89240, + [SMALL_STATE(3743)] = 89299, + [SMALL_STATE(3744)] = 89358, + [SMALL_STATE(3745)] = 89417, + [SMALL_STATE(3746)] = 89476, + [SMALL_STATE(3747)] = 89535, + [SMALL_STATE(3748)] = 89598, + [SMALL_STATE(3749)] = 89657, + [SMALL_STATE(3750)] = 89716, + [SMALL_STATE(3751)] = 89775, + [SMALL_STATE(3752)] = 89838, + [SMALL_STATE(3753)] = 89897, + [SMALL_STATE(3754)] = 89956, + [SMALL_STATE(3755)] = 90015, + [SMALL_STATE(3756)] = 90116, + [SMALL_STATE(3757)] = 90177, + [SMALL_STATE(3758)] = 90236, + [SMALL_STATE(3759)] = 90295, + [SMALL_STATE(3760)] = 90354, + [SMALL_STATE(3761)] = 90455, + [SMALL_STATE(3762)] = 90514, + [SMALL_STATE(3763)] = 90579, + [SMALL_STATE(3764)] = 90638, + [SMALL_STATE(3765)] = 90739, + [SMALL_STATE(3766)] = 90806, + [SMALL_STATE(3767)] = 90865, + [SMALL_STATE(3768)] = 90924, + [SMALL_STATE(3769)] = 90983, + [SMALL_STATE(3770)] = 91042, + [SMALL_STATE(3771)] = 91101, + [SMALL_STATE(3772)] = 91160, + [SMALL_STATE(3773)] = 91261, + [SMALL_STATE(3774)] = 91324, + [SMALL_STATE(3775)] = 91383, + [SMALL_STATE(3776)] = 91442, + [SMALL_STATE(3777)] = 91501, + [SMALL_STATE(3778)] = 91560, + [SMALL_STATE(3779)] = 91619, + [SMALL_STATE(3780)] = 91678, + [SMALL_STATE(3781)] = 91737, + [SMALL_STATE(3782)] = 91796, + [SMALL_STATE(3783)] = 91855, + [SMALL_STATE(3784)] = 91914, + [SMALL_STATE(3785)] = 91973, + [SMALL_STATE(3786)] = 92032, + [SMALL_STATE(3787)] = 92091, + [SMALL_STATE(3788)] = 92150, + [SMALL_STATE(3789)] = 92251, + [SMALL_STATE(3790)] = 92310, + [SMALL_STATE(3791)] = 92369, + [SMALL_STATE(3792)] = 92428, + [SMALL_STATE(3793)] = 92495, + [SMALL_STATE(3794)] = 92554, + [SMALL_STATE(3795)] = 92655, + [SMALL_STATE(3796)] = 92714, + [SMALL_STATE(3797)] = 92773, + [SMALL_STATE(3798)] = 92836, + [SMALL_STATE(3799)] = 92901, + [SMALL_STATE(3800)] = 92960, + [SMALL_STATE(3801)] = 93019, + [SMALL_STATE(3802)] = 93078, + [SMALL_STATE(3803)] = 93137, + [SMALL_STATE(3804)] = 93196, + [SMALL_STATE(3805)] = 93297, + [SMALL_STATE(3806)] = 93356, + [SMALL_STATE(3807)] = 93415, + [SMALL_STATE(3808)] = 93474, + [SMALL_STATE(3809)] = 93533, + [SMALL_STATE(3810)] = 93634, + [SMALL_STATE(3811)] = 93699, + [SMALL_STATE(3812)] = 93758, + [SMALL_STATE(3813)] = 93817, + [SMALL_STATE(3814)] = 93876, + [SMALL_STATE(3815)] = 93935, + [SMALL_STATE(3816)] = 93994, + [SMALL_STATE(3817)] = 94053, + [SMALL_STATE(3818)] = 94112, + [SMALL_STATE(3819)] = 94171, + [SMALL_STATE(3820)] = 94230, + [SMALL_STATE(3821)] = 94289, + [SMALL_STATE(3822)] = 94348, + [SMALL_STATE(3823)] = 94407, + [SMALL_STATE(3824)] = 94480, + [SMALL_STATE(3825)] = 94539, + [SMALL_STATE(3826)] = 94598, + [SMALL_STATE(3827)] = 94661, + [SMALL_STATE(3828)] = 94720, + [SMALL_STATE(3829)] = 94779, + [SMALL_STATE(3830)] = 94838, + [SMALL_STATE(3831)] = 94947, + [SMALL_STATE(3832)] = 95006, + [SMALL_STATE(3833)] = 95065, + [SMALL_STATE(3834)] = 95128, + [SMALL_STATE(3835)] = 95187, + [SMALL_STATE(3836)] = 95258, + [SMALL_STATE(3837)] = 95317, + [SMALL_STATE(3838)] = 95376, + [SMALL_STATE(3839)] = 95435, + [SMALL_STATE(3840)] = 95494, + [SMALL_STATE(3841)] = 95553, + [SMALL_STATE(3842)] = 95612, + [SMALL_STATE(3843)] = 95685, + [SMALL_STATE(3844)] = 95758, + [SMALL_STATE(3845)] = 95819, + [SMALL_STATE(3846)] = 95878, + [SMALL_STATE(3847)] = 95937, + [SMALL_STATE(3848)] = 95996, + [SMALL_STATE(3849)] = 96055, + [SMALL_STATE(3850)] = 96124, + [SMALL_STATE(3851)] = 96229, + [SMALL_STATE(3852)] = 96300, + [SMALL_STATE(3853)] = 96359, + [SMALL_STATE(3854)] = 96420, + [SMALL_STATE(3855)] = 96521, + [SMALL_STATE(3856)] = 96622, + [SMALL_STATE(3857)] = 96681, + [SMALL_STATE(3858)] = 96740, + [SMALL_STATE(3859)] = 96807, + [SMALL_STATE(3860)] = 96870, + [SMALL_STATE(3861)] = 96975, + [SMALL_STATE(3862)] = 97034, + [SMALL_STATE(3863)] = 97101, + [SMALL_STATE(3864)] = 97162, + [SMALL_STATE(3865)] = 97227, + [SMALL_STATE(3866)] = 97328, + [SMALL_STATE(3867)] = 97429, + [SMALL_STATE(3868)] = 97490, + [SMALL_STATE(3869)] = 97549, + [SMALL_STATE(3870)] = 97608, + [SMALL_STATE(3871)] = 97709, + [SMALL_STATE(3872)] = 97770, + [SMALL_STATE(3873)] = 97831, + [SMALL_STATE(3874)] = 97890, + [SMALL_STATE(3875)] = 97949, + [SMALL_STATE(3876)] = 98050, + [SMALL_STATE(3877)] = 98159, + [SMALL_STATE(3878)] = 98260, + [SMALL_STATE(3879)] = 98319, + [SMALL_STATE(3880)] = 98428, + [SMALL_STATE(3881)] = 98503, + [SMALL_STATE(3882)] = 98564, + [SMALL_STATE(3883)] = 98637, + [SMALL_STATE(3884)] = 98738, + [SMALL_STATE(3885)] = 98835, + [SMALL_STATE(3886)] = 98928, + [SMALL_STATE(3887)] = 99019, + [SMALL_STATE(3888)] = 99106, + [SMALL_STATE(3889)] = 99191, + [SMALL_STATE(3890)] = 99272, + [SMALL_STATE(3891)] = 99349, + [SMALL_STATE(3892)] = 99428, + [SMALL_STATE(3893)] = 99491, + [SMALL_STATE(3894)] = 99596, + [SMALL_STATE(3895)] = 99701, + [SMALL_STATE(3896)] = 99810, + [SMALL_STATE(3897)] = 99885, + [SMALL_STATE(3898)] = 99986, + [SMALL_STATE(3899)] = 100083, + [SMALL_STATE(3900)] = 100176, + [SMALL_STATE(3901)] = 100267, + [SMALL_STATE(3902)] = 100354, + [SMALL_STATE(3903)] = 100439, + [SMALL_STATE(3904)] = 100520, + [SMALL_STATE(3905)] = 100597, + [SMALL_STATE(3906)] = 100676, + [SMALL_STATE(3907)] = 100781, + [SMALL_STATE(3908)] = 100890, + [SMALL_STATE(3909)] = 100995, + [SMALL_STATE(3910)] = 101104, + [SMALL_STATE(3911)] = 101165, + [SMALL_STATE(3912)] = 101238, + [SMALL_STATE(3913)] = 101297, + [SMALL_STATE(3914)] = 101356, + [SMALL_STATE(3915)] = 101415, + [SMALL_STATE(3916)] = 101474, + [SMALL_STATE(3917)] = 101545, + [SMALL_STATE(3918)] = 101604, + [SMALL_STATE(3919)] = 101663, + [SMALL_STATE(3920)] = 101722, + [SMALL_STATE(3921)] = 101781, + [SMALL_STATE(3922)] = 101840, + [SMALL_STATE(3923)] = 101903, + [SMALL_STATE(3924)] = 101962, + [SMALL_STATE(3925)] = 102021, + [SMALL_STATE(3926)] = 102080, + [SMALL_STATE(3927)] = 102143, + [SMALL_STATE(3928)] = 102204, + [SMALL_STATE(3929)] = 102263, + [SMALL_STATE(3930)] = 102324, + [SMALL_STATE(3931)] = 102385, + [SMALL_STATE(3932)] = 102486, + [SMALL_STATE(3933)] = 102547, + [SMALL_STATE(3934)] = 102608, + [SMALL_STATE(3935)] = 102669, + [SMALL_STATE(3936)] = 102732, + [SMALL_STATE(3937)] = 102793, + [SMALL_STATE(3938)] = 102854, + [SMALL_STATE(3939)] = 102912, + [SMALL_STATE(3940)] = 102970, + [SMALL_STATE(3941)] = 103048, + [SMALL_STATE(3942)] = 103106, + [SMALL_STATE(3943)] = 103164, + [SMALL_STATE(3944)] = 103236, + [SMALL_STATE(3945)] = 103294, + [SMALL_STATE(3946)] = 103356, + [SMALL_STATE(3947)] = 103420, + [SMALL_STATE(3948)] = 103478, + [SMALL_STATE(3949)] = 103536, + [SMALL_STATE(3950)] = 103594, + [SMALL_STATE(3951)] = 103652, + [SMALL_STATE(3952)] = 103710, + [SMALL_STATE(3953)] = 103768, + [SMALL_STATE(3954)] = 103826, + [SMALL_STATE(3955)] = 103884, + [SMALL_STATE(3956)] = 103942, + [SMALL_STATE(3957)] = 104048, + [SMALL_STATE(3958)] = 104112, + [SMALL_STATE(3959)] = 104170, + [SMALL_STATE(3960)] = 104232, + [SMALL_STATE(3961)] = 104290, + [SMALL_STATE(3962)] = 104348, + [SMALL_STATE(3963)] = 104406, + [SMALL_STATE(3964)] = 104464, + [SMALL_STATE(3965)] = 104530, + [SMALL_STATE(3966)] = 104596, + [SMALL_STATE(3967)] = 104654, + [SMALL_STATE(3968)] = 104716, + [SMALL_STATE(3969)] = 104818, + [SMALL_STATE(3970)] = 104876, + [SMALL_STATE(3971)] = 104934, + [SMALL_STATE(3972)] = 104992, + [SMALL_STATE(3973)] = 105054, + [SMALL_STATE(3974)] = 105162, + [SMALL_STATE(3975)] = 105234, + [SMALL_STATE(3976)] = 105296, + [SMALL_STATE(3977)] = 105358, + [SMALL_STATE(3978)] = 105420, + [SMALL_STATE(3979)] = 105478, + [SMALL_STATE(3980)] = 105550, + [SMALL_STATE(3981)] = 105612, + [SMALL_STATE(3982)] = 105670, + [SMALL_STATE(3983)] = 105728, + [SMALL_STATE(3984)] = 105792, + [SMALL_STATE(3985)] = 105854, + [SMALL_STATE(3986)] = 105912, + [SMALL_STATE(3987)] = 105974, + [SMALL_STATE(3988)] = 106036, + [SMALL_STATE(3989)] = 106098, + [SMALL_STATE(3990)] = 106156, + [SMALL_STATE(3991)] = 106218, + [SMALL_STATE(3992)] = 106280, + [SMALL_STATE(3993)] = 106342, + [SMALL_STATE(3994)] = 106414, + [SMALL_STATE(3995)] = 106516, + [SMALL_STATE(3996)] = 106578, + [SMALL_STATE(3997)] = 106648, + [SMALL_STATE(3998)] = 106710, + [SMALL_STATE(3999)] = 106772, + [SMALL_STATE(4000)] = 106830, + [SMALL_STATE(4001)] = 106914, + [SMALL_STATE(4002)] = 106972, + [SMALL_STATE(4003)] = 107030, + [SMALL_STATE(4004)] = 107088, + [SMALL_STATE(4005)] = 107146, + [SMALL_STATE(4006)] = 107252, + [SMALL_STATE(4007)] = 107360, + [SMALL_STATE(4008)] = 107434, + [SMALL_STATE(4009)] = 107496, + [SMALL_STATE(4010)] = 107570, + [SMALL_STATE(4011)] = 107628, + [SMALL_STATE(4012)] = 107686, + [SMALL_STATE(4013)] = 107744, + [SMALL_STATE(4014)] = 107802, + [SMALL_STATE(4015)] = 107866, + [SMALL_STATE(4016)] = 107924, + [SMALL_STATE(4017)] = 107998, + [SMALL_STATE(4018)] = 108060, + [SMALL_STATE(4019)] = 108118, + [SMALL_STATE(4020)] = 108190, + [SMALL_STATE(4021)] = 108248, + [SMALL_STATE(4022)] = 108350, + [SMALL_STATE(4023)] = 108450, + [SMALL_STATE(4024)] = 108548, + [SMALL_STATE(4025)] = 108614, + [SMALL_STATE(4026)] = 108708, + [SMALL_STATE(4027)] = 108766, + [SMALL_STATE(4028)] = 108824, + [SMALL_STATE(4029)] = 108882, + [SMALL_STATE(4030)] = 108940, + [SMALL_STATE(4031)] = 108998, + [SMALL_STATE(4032)] = 109056, + [SMALL_STATE(4033)] = 109158, + [SMALL_STATE(4034)] = 109216, + [SMALL_STATE(4035)] = 109274, + [SMALL_STATE(4036)] = 109332, + [SMALL_STATE(4037)] = 109390, + [SMALL_STATE(4038)] = 109448, + [SMALL_STATE(4039)] = 109506, + [SMALL_STATE(4040)] = 109564, + [SMALL_STATE(4041)] = 109628, + [SMALL_STATE(4042)] = 109712, + [SMALL_STATE(4043)] = 109770, + [SMALL_STATE(4044)] = 109860, + [SMALL_STATE(4045)] = 109946, + [SMALL_STATE(4046)] = 110004, + [SMALL_STATE(4047)] = 110066, + [SMALL_STATE(4048)] = 110150, + [SMALL_STATE(4049)] = 110230, + [SMALL_STATE(4050)] = 110288, + [SMALL_STATE(4051)] = 110372, + [SMALL_STATE(4052)] = 110448, + [SMALL_STATE(4053)] = 110506, + [SMALL_STATE(4054)] = 110564, + [SMALL_STATE(4055)] = 110622, + [SMALL_STATE(4056)] = 110706, + [SMALL_STATE(4057)] = 110766, + [SMALL_STATE(4058)] = 110828, + [SMALL_STATE(4059)] = 110890, + [SMALL_STATE(4060)] = 110948, + [SMALL_STATE(4061)] = 111006, + [SMALL_STATE(4062)] = 111064, + [SMALL_STATE(4063)] = 111122, + [SMALL_STATE(4064)] = 111184, + [SMALL_STATE(4065)] = 111242, + [SMALL_STATE(4066)] = 111326, + [SMALL_STATE(4067)] = 111384, + [SMALL_STATE(4068)] = 111442, + [SMALL_STATE(4069)] = 111500, + [SMALL_STATE(4070)] = 111580, + [SMALL_STATE(4071)] = 111638, + [SMALL_STATE(4072)] = 111696, + [SMALL_STATE(4073)] = 111754, + [SMALL_STATE(4074)] = 111812, + [SMALL_STATE(4075)] = 111872, + [SMALL_STATE(4076)] = 111930, + [SMALL_STATE(4077)] = 111988, + [SMALL_STATE(4078)] = 112046, + [SMALL_STATE(4079)] = 112104, + [SMALL_STATE(4080)] = 112162, + [SMALL_STATE(4081)] = 112220, + [SMALL_STATE(4082)] = 112326, + [SMALL_STATE(4083)] = 112384, + [SMALL_STATE(4084)] = 112450, + [SMALL_STATE(4085)] = 112508, + [SMALL_STATE(4086)] = 112566, + [SMALL_STATE(4087)] = 112624, + [SMALL_STATE(4088)] = 112682, + [SMALL_STATE(4089)] = 112758, + [SMALL_STATE(4090)] = 112818, + [SMALL_STATE(4091)] = 112878, + [SMALL_STATE(4092)] = 112944, + [SMALL_STATE(4093)] = 113028, + [SMALL_STATE(4094)] = 113086, + [SMALL_STATE(4095)] = 113170, + [SMALL_STATE(4096)] = 113254, + [SMALL_STATE(4097)] = 113338, + [SMALL_STATE(4098)] = 113396, + [SMALL_STATE(4099)] = 113454, + [SMALL_STATE(4100)] = 113512, + [SMALL_STATE(4101)] = 113570, + [SMALL_STATE(4102)] = 113628, + [SMALL_STATE(4103)] = 113686, + [SMALL_STATE(4104)] = 113744, + [SMALL_STATE(4105)] = 113804, + [SMALL_STATE(4106)] = 113862, + [SMALL_STATE(4107)] = 113934, + [SMALL_STATE(4108)] = 113992, + [SMALL_STATE(4109)] = 114050, + [SMALL_STATE(4110)] = 114116, + [SMALL_STATE(4111)] = 114174, + [SMALL_STATE(4112)] = 114232, + [SMALL_STATE(4113)] = 114290, + [SMALL_STATE(4114)] = 114348, + [SMALL_STATE(4115)] = 114406, + [SMALL_STATE(4116)] = 114476, + [SMALL_STATE(4117)] = 114534, + [SMALL_STATE(4118)] = 114591, + [SMALL_STATE(4119)] = 114648, + [SMALL_STATE(4120)] = 114705, + [SMALL_STATE(4121)] = 114762, + [SMALL_STATE(4122)] = 114819, + [SMALL_STATE(4123)] = 114876, + [SMALL_STATE(4124)] = 114935, + [SMALL_STATE(4125)] = 114992, + [SMALL_STATE(4126)] = 115049, + [SMALL_STATE(4127)] = 115106, + [SMALL_STATE(4128)] = 115163, + [SMALL_STATE(4129)] = 115220, + [SMALL_STATE(4130)] = 115277, + [SMALL_STATE(4131)] = 115334, + [SMALL_STATE(4132)] = 115391, + [SMALL_STATE(4133)] = 115448, + [SMALL_STATE(4134)] = 115505, + [SMALL_STATE(4135)] = 115562, + [SMALL_STATE(4136)] = 115621, + [SMALL_STATE(4137)] = 115678, + [SMALL_STATE(4138)] = 115735, + [SMALL_STATE(4139)] = 115792, + [SMALL_STATE(4140)] = 115853, + [SMALL_STATE(4141)] = 115910, + [SMALL_STATE(4142)] = 115967, + [SMALL_STATE(4143)] = 116024, + [SMALL_STATE(4144)] = 116081, + [SMALL_STATE(4145)] = 116138, + [SMALL_STATE(4146)] = 116195, + [SMALL_STATE(4147)] = 116252, + [SMALL_STATE(4148)] = 116309, + [SMALL_STATE(4149)] = 116366, + [SMALL_STATE(4150)] = 116423, + [SMALL_STATE(4151)] = 116480, + [SMALL_STATE(4152)] = 116537, + [SMALL_STATE(4153)] = 116594, + [SMALL_STATE(4154)] = 116651, + [SMALL_STATE(4155)] = 116714, + [SMALL_STATE(4156)] = 116771, + [SMALL_STATE(4157)] = 116828, + [SMALL_STATE(4158)] = 116885, + [SMALL_STATE(4159)] = 116942, + [SMALL_STATE(4160)] = 117001, + [SMALL_STATE(4161)] = 117058, + [SMALL_STATE(4162)] = 117115, + [SMALL_STATE(4163)] = 117172, + [SMALL_STATE(4164)] = 117229, + [SMALL_STATE(4165)] = 117286, + [SMALL_STATE(4166)] = 117343, + [SMALL_STATE(4167)] = 117400, + [SMALL_STATE(4168)] = 117461, + [SMALL_STATE(4169)] = 117518, + [SMALL_STATE(4170)] = 117585, + [SMALL_STATE(4171)] = 117642, + [SMALL_STATE(4172)] = 117749, + [SMALL_STATE(4173)] = 117806, + [SMALL_STATE(4174)] = 117863, + [SMALL_STATE(4175)] = 117920, + [SMALL_STATE(4176)] = 117989, + [SMALL_STATE(4177)] = 118046, + [SMALL_STATE(4178)] = 118153, + [SMALL_STATE(4179)] = 118210, + [SMALL_STATE(4180)] = 118273, + [SMALL_STATE(4181)] = 118330, + [SMALL_STATE(4182)] = 118387, + [SMALL_STATE(4183)] = 118444, + [SMALL_STATE(4184)] = 118551, + [SMALL_STATE(4185)] = 118658, + [SMALL_STATE(4186)] = 118715, + [SMALL_STATE(4187)] = 118778, + [SMALL_STATE(4188)] = 118885, + [SMALL_STATE(4189)] = 118952, + [SMALL_STATE(4190)] = 119009, + [SMALL_STATE(4191)] = 119066, + [SMALL_STATE(4192)] = 119131, + [SMALL_STATE(4193)] = 119238, + [SMALL_STATE(4194)] = 119295, + [SMALL_STATE(4195)] = 119358, + [SMALL_STATE(4196)] = 119419, + [SMALL_STATE(4197)] = 119488, + [SMALL_STATE(4198)] = 119595, + [SMALL_STATE(4199)] = 119652, + [SMALL_STATE(4200)] = 119709, + [SMALL_STATE(4201)] = 119766, + [SMALL_STATE(4202)] = 119827, + [SMALL_STATE(4203)] = 119884, + [SMALL_STATE(4204)] = 119941, + [SMALL_STATE(4205)] = 119998, + [SMALL_STATE(4206)] = 120055, + [SMALL_STATE(4207)] = 120114, + [SMALL_STATE(4208)] = 120171, + [SMALL_STATE(4209)] = 120228, + [SMALL_STATE(4210)] = 120285, + [SMALL_STATE(4211)] = 120342, + [SMALL_STATE(4212)] = 120399, + [SMALL_STATE(4213)] = 120456, + [SMALL_STATE(4214)] = 120513, + [SMALL_STATE(4215)] = 120570, + [SMALL_STATE(4216)] = 120639, + [SMALL_STATE(4217)] = 120696, + [SMALL_STATE(4218)] = 120753, + [SMALL_STATE(4219)] = 120822, + [SMALL_STATE(4220)] = 120879, + [SMALL_STATE(4221)] = 120944, + [SMALL_STATE(4222)] = 121051, + [SMALL_STATE(4223)] = 121108, + [SMALL_STATE(4224)] = 121165, + [SMALL_STATE(4225)] = 121222, + [SMALL_STATE(4226)] = 121279, + [SMALL_STATE(4227)] = 121336, + [SMALL_STATE(4228)] = 121393, + [SMALL_STATE(4229)] = 121450, + [SMALL_STATE(4230)] = 121507, + [SMALL_STATE(4231)] = 121564, + [SMALL_STATE(4232)] = 121621, + [SMALL_STATE(4233)] = 121678, + [SMALL_STATE(4234)] = 121735, + [SMALL_STATE(4235)] = 121792, + [SMALL_STATE(4236)] = 121849, + [SMALL_STATE(4237)] = 121906, + [SMALL_STATE(4238)] = 121963, + [SMALL_STATE(4239)] = 122020, + [SMALL_STATE(4240)] = 122083, + [SMALL_STATE(4241)] = 122140, + [SMALL_STATE(4242)] = 122201, + [SMALL_STATE(4243)] = 122266, + [SMALL_STATE(4244)] = 122323, + [SMALL_STATE(4245)] = 122386, + [SMALL_STATE(4246)] = 122443, + [SMALL_STATE(4247)] = 122499, + [SMALL_STATE(4248)] = 122555, + [SMALL_STATE(4249)] = 122621, + [SMALL_STATE(4250)] = 122677, + [SMALL_STATE(4251)] = 122733, + [SMALL_STATE(4252)] = 122789, + [SMALL_STATE(4253)] = 122845, + [SMALL_STATE(4254)] = 122901, + [SMALL_STATE(4255)] = 122957, + [SMALL_STATE(4256)] = 123025, + [SMALL_STATE(4257)] = 123081, + [SMALL_STATE(4258)] = 123137, + [SMALL_STATE(4259)] = 123193, + [SMALL_STATE(4260)] = 123253, + [SMALL_STATE(4261)] = 123309, + [SMALL_STATE(4262)] = 123367, + [SMALL_STATE(4263)] = 123423, + [SMALL_STATE(4264)] = 123479, + [SMALL_STATE(4265)] = 123535, + [SMALL_STATE(4266)] = 123591, + [SMALL_STATE(4267)] = 123647, + [SMALL_STATE(4268)] = 123703, + [SMALL_STATE(4269)] = 123759, + [SMALL_STATE(4270)] = 123833, + [SMALL_STATE(4271)] = 123889, + [SMALL_STATE(4272)] = 123945, + [SMALL_STATE(4273)] = 124001, + [SMALL_STATE(4274)] = 124057, + [SMALL_STATE(4275)] = 124113, + [SMALL_STATE(4276)] = 124169, + [SMALL_STATE(4277)] = 124225, + [SMALL_STATE(4278)] = 124281, + [SMALL_STATE(4279)] = 124337, + [SMALL_STATE(4280)] = 124393, + [SMALL_STATE(4281)] = 124449, + [SMALL_STATE(4282)] = 124505, + [SMALL_STATE(4283)] = 124561, + [SMALL_STATE(4284)] = 124617, + [SMALL_STATE(4285)] = 124679, + [SMALL_STATE(4286)] = 124753, + [SMALL_STATE(4287)] = 124809, + [SMALL_STATE(4288)] = 124865, + [SMALL_STATE(4289)] = 124921, + [SMALL_STATE(4290)] = 124977, + [SMALL_STATE(4291)] = 125033, + [SMALL_STATE(4292)] = 125089, + [SMALL_STATE(4293)] = 125157, + [SMALL_STATE(4294)] = 125213, + [SMALL_STATE(4295)] = 125287, + [SMALL_STATE(4296)] = 125347, + [SMALL_STATE(4297)] = 125407, + [SMALL_STATE(4298)] = 125481, + [SMALL_STATE(4299)] = 125541, + [SMALL_STATE(4300)] = 125601, + [SMALL_STATE(4301)] = 125707, + [SMALL_STATE(4302)] = 125767, + [SMALL_STATE(4303)] = 125827, + [SMALL_STATE(4304)] = 125887, + [SMALL_STATE(4305)] = 125947, + [SMALL_STATE(4306)] = 126003, + [SMALL_STATE(4307)] = 126075, + [SMALL_STATE(4308)] = 126131, + [SMALL_STATE(4309)] = 126187, + [SMALL_STATE(4310)] = 126243, + [SMALL_STATE(4311)] = 126299, + [SMALL_STATE(4312)] = 126355, + [SMALL_STATE(4313)] = 126411, + [SMALL_STATE(4314)] = 126467, + [SMALL_STATE(4315)] = 126523, + [SMALL_STATE(4316)] = 126629, + [SMALL_STATE(4317)] = 126735, + [SMALL_STATE(4318)] = 126791, + [SMALL_STATE(4319)] = 126847, + [SMALL_STATE(4320)] = 126903, + [SMALL_STATE(4321)] = 126959, + [SMALL_STATE(4322)] = 127015, + [SMALL_STATE(4323)] = 127079, + [SMALL_STATE(4324)] = 127135, + [SMALL_STATE(4325)] = 127197, + [SMALL_STATE(4326)] = 127253, + [SMALL_STATE(4327)] = 127309, + [SMALL_STATE(4328)] = 127365, + [SMALL_STATE(4329)] = 127421, + [SMALL_STATE(4330)] = 127477, + [SMALL_STATE(4331)] = 127583, + [SMALL_STATE(4332)] = 127657, + [SMALL_STATE(4333)] = 127713, + [SMALL_STATE(4334)] = 127769, + [SMALL_STATE(4335)] = 127825, + [SMALL_STATE(4336)] = 127881, + [SMALL_STATE(4337)] = 127937, + [SMALL_STATE(4338)] = 127993, + [SMALL_STATE(4339)] = 128049, + [SMALL_STATE(4340)] = 128105, + [SMALL_STATE(4341)] = 128177, + [SMALL_STATE(4342)] = 128233, + [SMALL_STATE(4343)] = 128289, + [SMALL_STATE(4344)] = 128345, + [SMALL_STATE(4345)] = 128401, + [SMALL_STATE(4346)] = 128473, + [SMALL_STATE(4347)] = 128531, + [SMALL_STATE(4348)] = 128587, + [SMALL_STATE(4349)] = 128661, + [SMALL_STATE(4350)] = 128717, + [SMALL_STATE(4351)] = 128773, + [SMALL_STATE(4352)] = 128837, + [SMALL_STATE(4353)] = 128893, + [SMALL_STATE(4354)] = 128949, + [SMALL_STATE(4355)] = 129005, + [SMALL_STATE(4356)] = 129061, + [SMALL_STATE(4357)] = 129117, + [SMALL_STATE(4358)] = 129173, + [SMALL_STATE(4359)] = 129229, + [SMALL_STATE(4360)] = 129293, + [SMALL_STATE(4361)] = 129349, + [SMALL_STATE(4362)] = 129423, + [SMALL_STATE(4363)] = 129479, + [SMALL_STATE(4364)] = 129535, + [SMALL_STATE(4365)] = 129607, + [SMALL_STATE(4366)] = 129681, + [SMALL_STATE(4367)] = 129737, + [SMALL_STATE(4368)] = 129793, + [SMALL_STATE(4369)] = 129849, + [SMALL_STATE(4370)] = 129905, + [SMALL_STATE(4371)] = 129979, + [SMALL_STATE(4372)] = 130035, + [SMALL_STATE(4373)] = 130091, + [SMALL_STATE(4374)] = 130149, + [SMALL_STATE(4375)] = 130205, + [SMALL_STATE(4376)] = 130261, + [SMALL_STATE(4377)] = 130317, + [SMALL_STATE(4378)] = 130373, + [SMALL_STATE(4379)] = 130429, + [SMALL_STATE(4380)] = 130485, + [SMALL_STATE(4381)] = 130541, + [SMALL_STATE(4382)] = 130597, + [SMALL_STATE(4383)] = 130653, + [SMALL_STATE(4384)] = 130719, + [SMALL_STATE(4385)] = 130775, + [SMALL_STATE(4386)] = 130831, + [SMALL_STATE(4387)] = 130888, + [SMALL_STATE(4388)] = 130943, + [SMALL_STATE(4389)] = 130998, + [SMALL_STATE(4390)] = 131053, + [SMALL_STATE(4391)] = 131116, + [SMALL_STATE(4392)] = 131187, + [SMALL_STATE(4393)] = 131242, + [SMALL_STATE(4394)] = 131297, + [SMALL_STATE(4395)] = 131352, + [SMALL_STATE(4396)] = 131423, + [SMALL_STATE(4397)] = 131492, + [SMALL_STATE(4398)] = 131547, + [SMALL_STATE(4399)] = 131652, + [SMALL_STATE(4400)] = 131707, + [SMALL_STATE(4401)] = 131764, + [SMALL_STATE(4402)] = 131827, + [SMALL_STATE(4403)] = 131888, + [SMALL_STATE(4404)] = 131943, + [SMALL_STATE(4405)] = 132014, + [SMALL_STATE(4406)] = 132069, + [SMALL_STATE(4407)] = 132124, + [SMALL_STATE(4408)] = 132191, + [SMALL_STATE(4409)] = 132296, + [SMALL_STATE(4410)] = 132351, + [SMALL_STATE(4411)] = 132406, + [SMALL_STATE(4412)] = 132461, + [SMALL_STATE(4413)] = 132520, + [SMALL_STATE(4414)] = 132575, + [SMALL_STATE(4415)] = 132646, + [SMALL_STATE(4416)] = 132713, + [SMALL_STATE(4417)] = 132768, + [SMALL_STATE(4418)] = 132839, + [SMALL_STATE(4419)] = 132902, + [SMALL_STATE(4420)] = 132969, + [SMALL_STATE(4421)] = 133024, + [SMALL_STATE(4422)] = 133079, + [SMALL_STATE(4423)] = 133134, + [SMALL_STATE(4424)] = 133189, + [SMALL_STATE(4425)] = 133244, + [SMALL_STATE(4426)] = 133299, + [SMALL_STATE(4427)] = 133354, + [SMALL_STATE(4428)] = 133409, + [SMALL_STATE(4429)] = 133464, + [SMALL_STATE(4430)] = 133519, + [SMALL_STATE(4431)] = 133582, + [SMALL_STATE(4432)] = 133637, + [SMALL_STATE(4433)] = 133700, + [SMALL_STATE(4434)] = 133755, + [SMALL_STATE(4435)] = 133810, + [SMALL_STATE(4436)] = 133865, + [SMALL_STATE(4437)] = 133920, + [SMALL_STATE(4438)] = 133975, + [SMALL_STATE(4439)] = 134036, + [SMALL_STATE(4440)] = 134091, + [SMALL_STATE(4441)] = 134149, + [SMALL_STATE(4442)] = 134219, + [SMALL_STATE(4443)] = 134277, + [SMALL_STATE(4444)] = 134335, + [SMALL_STATE(4445)] = 134393, + [SMALL_STATE(4446)] = 134453, + [SMALL_STATE(4447)] = 134511, + [SMALL_STATE(4448)] = 134569, + [SMALL_STATE(4449)] = 134627, + [SMALL_STATE(4450)] = 134681, + [SMALL_STATE(4451)] = 134739, + [SMALL_STATE(4452)] = 134809, + [SMALL_STATE(4453)] = 134863, + [SMALL_STATE(4454)] = 134967, + [SMALL_STATE(4455)] = 135027, + [SMALL_STATE(4456)] = 135081, + [SMALL_STATE(4457)] = 135151, + [SMALL_STATE(4458)] = 135205, + [SMALL_STATE(4459)] = 135309, + [SMALL_STATE(4460)] = 135367, + [SMALL_STATE(4461)] = 135429, + [SMALL_STATE(4462)] = 135491, + [SMALL_STATE(4463)] = 135549, + [SMALL_STATE(4464)] = 135607, + [SMALL_STATE(4465)] = 135665, + [SMALL_STATE(4466)] = 135723, + [SMALL_STATE(4467)] = 135791, + [SMALL_STATE(4468)] = 135855, + [SMALL_STATE(4469)] = 135909, + [SMALL_STATE(4470)] = 135967, + [SMALL_STATE(4471)] = 136025, + [SMALL_STATE(4472)] = 136083, + [SMALL_STATE(4473)] = 136141, + [SMALL_STATE(4474)] = 136199, + [SMALL_STATE(4475)] = 136257, + [SMALL_STATE(4476)] = 136315, + [SMALL_STATE(4477)] = 136373, + [SMALL_STATE(4478)] = 136431, + [SMALL_STATE(4479)] = 136489, + [SMALL_STATE(4480)] = 136547, + [SMALL_STATE(4481)] = 136605, + [SMALL_STATE(4482)] = 136663, + [SMALL_STATE(4483)] = 136717, + [SMALL_STATE(4484)] = 136775, + [SMALL_STATE(4485)] = 136833, + [SMALL_STATE(4486)] = 136891, + [SMALL_STATE(4487)] = 136951, + [SMALL_STATE(4488)] = 137009, + [SMALL_STATE(4489)] = 137107, + [SMALL_STATE(4490)] = 137165, + [SMALL_STATE(4491)] = 137223, + [SMALL_STATE(4492)] = 137293, + [SMALL_STATE(4493)] = 137351, + [SMALL_STATE(4494)] = 137409, + [SMALL_STATE(4495)] = 137469, + [SMALL_STATE(4496)] = 137529, + [SMALL_STATE(4497)] = 137587, + [SMALL_STATE(4498)] = 137645, + [SMALL_STATE(4499)] = 137715, + [SMALL_STATE(4500)] = 137773, + [SMALL_STATE(4501)] = 137868, + [SMALL_STATE(4502)] = 137925, + [SMALL_STATE(4503)] = 137986, + [SMALL_STATE(4504)] = 138039, + [SMALL_STATE(4505)] = 138134, + [SMALL_STATE(4506)] = 138229, + [SMALL_STATE(4507)] = 138324, + [SMALL_STATE(4508)] = 138419, + [SMALL_STATE(4509)] = 138514, + [SMALL_STATE(4510)] = 138609, + [SMALL_STATE(4511)] = 138704, + [SMALL_STATE(4512)] = 138799, + [SMALL_STATE(4513)] = 138852, + [SMALL_STATE(4514)] = 138947, + [SMALL_STATE(4515)] = 139042, + [SMALL_STATE(4516)] = 139137, + [SMALL_STATE(4517)] = 139190, + [SMALL_STATE(4518)] = 139285, + [SMALL_STATE(4519)] = 139338, + [SMALL_STATE(4520)] = 139433, + [SMALL_STATE(4521)] = 139492, + [SMALL_STATE(4522)] = 139587, + [SMALL_STATE(4523)] = 139682, + [SMALL_STATE(4524)] = 139777, + [SMALL_STATE(4525)] = 139872, + [SMALL_STATE(4526)] = 139967, + [SMALL_STATE(4527)] = 140020, + [SMALL_STATE(4528)] = 140123, + [SMALL_STATE(4529)] = 140218, + [SMALL_STATE(4530)] = 140281, + [SMALL_STATE(4531)] = 140376, + [SMALL_STATE(4532)] = 140471, + [SMALL_STATE(4533)] = 140566, + [SMALL_STATE(4534)] = 140661, + [SMALL_STATE(4535)] = 140756, + [SMALL_STATE(4536)] = 140809, + [SMALL_STATE(4537)] = 140862, + [SMALL_STATE(4538)] = 140957, + [SMALL_STATE(4539)] = 141052, + [SMALL_STATE(4540)] = 141147, + [SMALL_STATE(4541)] = 141242, + [SMALL_STATE(4542)] = 141295, + [SMALL_STATE(4543)] = 141390, + [SMALL_STATE(4544)] = 141485, + [SMALL_STATE(4545)] = 141550, + [SMALL_STATE(4546)] = 141645, + [SMALL_STATE(4547)] = 141740, + [SMALL_STATE(4548)] = 141805, + [SMALL_STATE(4549)] = 141858, + [SMALL_STATE(4550)] = 141913, + [SMALL_STATE(4551)] = 142008, + [SMALL_STATE(4552)] = 142103, + [SMALL_STATE(4553)] = 142198, + [SMALL_STATE(4554)] = 142293, + [SMALL_STATE(4555)] = 142388, + [SMALL_STATE(4556)] = 142483, + [SMALL_STATE(4557)] = 142536, + [SMALL_STATE(4558)] = 142631, + [SMALL_STATE(4559)] = 142726, + [SMALL_STATE(4560)] = 142821, + [SMALL_STATE(4561)] = 142924, + [SMALL_STATE(4562)] = 143019, + [SMALL_STATE(4563)] = 143078, + [SMALL_STATE(4564)] = 143173, + [SMALL_STATE(4565)] = 143276, + [SMALL_STATE(4566)] = 143371, + [SMALL_STATE(4567)] = 143466, + [SMALL_STATE(4568)] = 143561, + [SMALL_STATE(4569)] = 143656, + [SMALL_STATE(4570)] = 143751, + [SMALL_STATE(4571)] = 143846, + [SMALL_STATE(4572)] = 143941, + [SMALL_STATE(4573)] = 144036, + [SMALL_STATE(4574)] = 144131, + [SMALL_STATE(4575)] = 144226, + [SMALL_STATE(4576)] = 144321, + [SMALL_STATE(4577)] = 144416, + [SMALL_STATE(4578)] = 144511, + [SMALL_STATE(4579)] = 144606, + [SMALL_STATE(4580)] = 144659, + [SMALL_STATE(4581)] = 144754, + [SMALL_STATE(4582)] = 144849, + [SMALL_STATE(4583)] = 144944, + [SMALL_STATE(4584)] = 145039, + [SMALL_STATE(4585)] = 145100, + [SMALL_STATE(4586)] = 145155, + [SMALL_STATE(4587)] = 145250, + [SMALL_STATE(4588)] = 145345, + [SMALL_STATE(4589)] = 145404, + [SMALL_STATE(4590)] = 145457, + [SMALL_STATE(4591)] = 145552, + [SMALL_STATE(4592)] = 145647, + [SMALL_STATE(4593)] = 145742, + [SMALL_STATE(4594)] = 145837, + [SMALL_STATE(4595)] = 145932, + [SMALL_STATE(4596)] = 146027, + [SMALL_STATE(4597)] = 146122, + [SMALL_STATE(4598)] = 146217, + [SMALL_STATE(4599)] = 146312, + [SMALL_STATE(4600)] = 146407, + [SMALL_STATE(4601)] = 146502, + [SMALL_STATE(4602)] = 146597, + [SMALL_STATE(4603)] = 146660, + [SMALL_STATE(4604)] = 146755, + [SMALL_STATE(4605)] = 146850, + [SMALL_STATE(4606)] = 146945, + [SMALL_STATE(4607)] = 147040, + [SMALL_STATE(4608)] = 147135, + [SMALL_STATE(4609)] = 147230, + [SMALL_STATE(4610)] = 147325, + [SMALL_STATE(4611)] = 147420, + [SMALL_STATE(4612)] = 147515, + [SMALL_STATE(4613)] = 147610, + [SMALL_STATE(4614)] = 147679, + [SMALL_STATE(4615)] = 147774, + [SMALL_STATE(4616)] = 147869, + [SMALL_STATE(4617)] = 147972, + [SMALL_STATE(4618)] = 148067, + [SMALL_STATE(4619)] = 148119, + [SMALL_STATE(4620)] = 148171, + [SMALL_STATE(4621)] = 148223, + [SMALL_STATE(4622)] = 148279, + [SMALL_STATE(4623)] = 148343, + [SMALL_STATE(4624)] = 148399, + [SMALL_STATE(4625)] = 148455, + [SMALL_STATE(4626)] = 148507, + [SMALL_STATE(4627)] = 148563, + [SMALL_STATE(4628)] = 148619, + [SMALL_STATE(4629)] = 148675, + [SMALL_STATE(4630)] = 148731, + [SMALL_STATE(4631)] = 148797, + [SMALL_STATE(4632)] = 148863, + [SMALL_STATE(4633)] = 148915, + [SMALL_STATE(4634)] = 148967, + [SMALL_STATE(4635)] = 149023, + [SMALL_STATE(4636)] = 149075, + [SMALL_STATE(4637)] = 149167, + [SMALL_STATE(4638)] = 149223, + [SMALL_STATE(4639)] = 149279, + [SMALL_STATE(4640)] = 149331, + [SMALL_STATE(4641)] = 149383, + [SMALL_STATE(4642)] = 149447, + [SMALL_STATE(4643)] = 149499, + [SMALL_STATE(4644)] = 149551, + [SMALL_STATE(4645)] = 149603, + [SMALL_STATE(4646)] = 149695, + [SMALL_STATE(4647)] = 149747, + [SMALL_STATE(4648)] = 149799, + [SMALL_STATE(4649)] = 149851, + [SMALL_STATE(4650)] = 149903, + [SMALL_STATE(4651)] = 149995, + [SMALL_STATE(4652)] = 150063, + [SMALL_STATE(4653)] = 150115, + [SMALL_STATE(4654)] = 150207, + [SMALL_STATE(4655)] = 150259, + [SMALL_STATE(4656)] = 150311, + [SMALL_STATE(4657)] = 150369, + [SMALL_STATE(4658)] = 150461, + [SMALL_STATE(4659)] = 150529, + [SMALL_STATE(4660)] = 150581, + [SMALL_STATE(4661)] = 150633, + [SMALL_STATE(4662)] = 150701, + [SMALL_STATE(4663)] = 150757, + [SMALL_STATE(4664)] = 150849, + [SMALL_STATE(4665)] = 150907, + [SMALL_STATE(4666)] = 150959, + [SMALL_STATE(4667)] = 151051, + [SMALL_STATE(4668)] = 151103, + [SMALL_STATE(4669)] = 151167, + [SMALL_STATE(4670)] = 151233, + [SMALL_STATE(4671)] = 151299, + [SMALL_STATE(4672)] = 151363, + [SMALL_STATE(4673)] = 151415, + [SMALL_STATE(4674)] = 151507, + [SMALL_STATE(4675)] = 151559, + [SMALL_STATE(4676)] = 151611, + [SMALL_STATE(4677)] = 151675, + [SMALL_STATE(4678)] = 151727, + [SMALL_STATE(4679)] = 151783, + [SMALL_STATE(4680)] = 151839, + [SMALL_STATE(4681)] = 151895, + [SMALL_STATE(4682)] = 151951, + [SMALL_STATE(4683)] = 152015, + [SMALL_STATE(4684)] = 152067, + [SMALL_STATE(4685)] = 152159, + [SMALL_STATE(4686)] = 152251, + [SMALL_STATE(4687)] = 152343, + [SMALL_STATE(4688)] = 152401, + [SMALL_STATE(4689)] = 152457, + [SMALL_STATE(4690)] = 152549, + [SMALL_STATE(4691)] = 152641, + [SMALL_STATE(4692)] = 152733, + [SMALL_STATE(4693)] = 152825, + [SMALL_STATE(4694)] = 152877, + [SMALL_STATE(4695)] = 152933, + [SMALL_STATE(4696)] = 153025, + [SMALL_STATE(4697)] = 153081, + [SMALL_STATE(4698)] = 153173, + [SMALL_STATE(4699)] = 153241, + [SMALL_STATE(4700)] = 153297, + [SMALL_STATE(4701)] = 153349, + [SMALL_STATE(4702)] = 153448, + [SMALL_STATE(4703)] = 153511, + [SMALL_STATE(4704)] = 153596, + [SMALL_STATE(4705)] = 153663, + [SMALL_STATE(4706)] = 153714, + [SMALL_STATE(4707)] = 153809, + [SMALL_STATE(4708)] = 153860, + [SMALL_STATE(4709)] = 153925, + [SMALL_STATE(4710)] = 154010, + [SMALL_STATE(4711)] = 154067, + [SMALL_STATE(4712)] = 154166, + [SMALL_STATE(4713)] = 154231, + [SMALL_STATE(4714)] = 154300, + [SMALL_STATE(4715)] = 154385, + [SMALL_STATE(4716)] = 154448, + [SMALL_STATE(4717)] = 154533, + [SMALL_STATE(4718)] = 154604, + [SMALL_STATE(4719)] = 154655, + [SMALL_STATE(4720)] = 154754, + [SMALL_STATE(4721)] = 154839, + [SMALL_STATE(4722)] = 154942, + [SMALL_STATE(4723)] = 154999, + [SMALL_STATE(4724)] = 155084, + [SMALL_STATE(4725)] = 155157, + [SMALL_STATE(4726)] = 155242, + [SMALL_STATE(4727)] = 155327, + [SMALL_STATE(4728)] = 155378, + [SMALL_STATE(4729)] = 155435, + [SMALL_STATE(4730)] = 155520, + [SMALL_STATE(4731)] = 155619, + [SMALL_STATE(4732)] = 155698, + [SMALL_STATE(4733)] = 155783, + [SMALL_STATE(4734)] = 155874, + [SMALL_STATE(4735)] = 155931, + [SMALL_STATE(4736)] = 156034, + [SMALL_STATE(4737)] = 156097, + [SMALL_STATE(4738)] = 156162, + [SMALL_STATE(4739)] = 156213, + [SMALL_STATE(4740)] = 156264, + [SMALL_STATE(4741)] = 156349, + [SMALL_STATE(4742)] = 156434, + [SMALL_STATE(4743)] = 156537, + [SMALL_STATE(4744)] = 156622, + [SMALL_STATE(4745)] = 156717, + [SMALL_STATE(4746)] = 156768, + [SMALL_STATE(4747)] = 156819, + [SMALL_STATE(4748)] = 156870, + [SMALL_STATE(4749)] = 156923, + [SMALL_STATE(4750)] = 157006, + [SMALL_STATE(4751)] = 157091, + [SMALL_STATE(4752)] = 157158, + [SMALL_STATE(4753)] = 157209, + [SMALL_STATE(4754)] = 157294, + [SMALL_STATE(4755)] = 157373, + [SMALL_STATE(4756)] = 157458, + [SMALL_STATE(4757)] = 157557, + [SMALL_STATE(4758)] = 157632, + [SMALL_STATE(4759)] = 157683, + [SMALL_STATE(4760)] = 157768, + [SMALL_STATE(4761)] = 157857, + [SMALL_STATE(4762)] = 157920, + [SMALL_STATE(4763)] = 157973, + [SMALL_STATE(4764)] = 158040, + [SMALL_STATE(4765)] = 158143, + [SMALL_STATE(4766)] = 158242, + [SMALL_STATE(4767)] = 158293, + [SMALL_STATE(4768)] = 158372, + [SMALL_STATE(4769)] = 158427, + [SMALL_STATE(4770)] = 158512, + [SMALL_STATE(4771)] = 158563, + [SMALL_STATE(4772)] = 158620, + [SMALL_STATE(4773)] = 158705, + [SMALL_STATE(4774)] = 158772, + [SMALL_STATE(4775)] = 158837, + [SMALL_STATE(4776)] = 158887, + [SMALL_STATE(4777)] = 158937, + [SMALL_STATE(4778)] = 158987, + [SMALL_STATE(4779)] = 159049, + [SMALL_STATE(4780)] = 159105, + [SMALL_STATE(4781)] = 159165, + [SMALL_STATE(4782)] = 159215, + [SMALL_STATE(4783)] = 159265, + [SMALL_STATE(4784)] = 159331, + [SMALL_STATE(4785)] = 159381, + [SMALL_STATE(4786)] = 159437, + [SMALL_STATE(4787)] = 159491, + [SMALL_STATE(4788)] = 159541, + [SMALL_STATE(4789)] = 159591, + [SMALL_STATE(4790)] = 159653, + [SMALL_STATE(4791)] = 159703, + [SMALL_STATE(4792)] = 159753, + [SMALL_STATE(4793)] = 159803, + [SMALL_STATE(4794)] = 159859, + [SMALL_STATE(4795)] = 159925, + [SMALL_STATE(4796)] = 159977, + [SMALL_STATE(4797)] = 160027, + [SMALL_STATE(4798)] = 160079, + [SMALL_STATE(4799)] = 160129, + [SMALL_STATE(4800)] = 160179, + [SMALL_STATE(4801)] = 160245, + [SMALL_STATE(4802)] = 160295, + [SMALL_STATE(4803)] = 160345, + [SMALL_STATE(4804)] = 160411, + [SMALL_STATE(4805)] = 160461, + [SMALL_STATE(4806)] = 160517, + [SMALL_STATE(4807)] = 160567, + [SMALL_STATE(4808)] = 160619, + [SMALL_STATE(4809)] = 160669, + [SMALL_STATE(4810)] = 160719, + [SMALL_STATE(4811)] = 160769, + [SMALL_STATE(4812)] = 160831, + [SMALL_STATE(4813)] = 160883, + [SMALL_STATE(4814)] = 160933, + [SMALL_STATE(4815)] = 160983, + [SMALL_STATE(4816)] = 161033, + [SMALL_STATE(4817)] = 161083, + [SMALL_STATE(4818)] = 161133, + [SMALL_STATE(4819)] = 161183, + [SMALL_STATE(4820)] = 161233, + [SMALL_STATE(4821)] = 161283, + [SMALL_STATE(4822)] = 161333, + [SMALL_STATE(4823)] = 161383, + [SMALL_STATE(4824)] = 161433, + [SMALL_STATE(4825)] = 161483, + [SMALL_STATE(4826)] = 161535, + [SMALL_STATE(4827)] = 161618, + [SMALL_STATE(4828)] = 161689, + [SMALL_STATE(4829)] = 161738, + [SMALL_STATE(4830)] = 161787, + [SMALL_STATE(4831)] = 161836, + [SMALL_STATE(4832)] = 161893, + [SMALL_STATE(4833)] = 161942, + [SMALL_STATE(4834)] = 161991, + [SMALL_STATE(4835)] = 162088, + [SMALL_STATE(4836)] = 162145, + [SMALL_STATE(4837)] = 162246, + [SMALL_STATE(4838)] = 162295, + [SMALL_STATE(4839)] = 162344, + [SMALL_STATE(4840)] = 162437, + [SMALL_STATE(4841)] = 162526, + [SMALL_STATE(4842)] = 162613, + [SMALL_STATE(4843)] = 162696, + [SMALL_STATE(4844)] = 162777, + [SMALL_STATE(4845)] = 162854, + [SMALL_STATE(4846)] = 162927, + [SMALL_STATE(4847)] = 162976, + [SMALL_STATE(4848)] = 163025, + [SMALL_STATE(4849)] = 163082, + [SMALL_STATE(4850)] = 163179, + [SMALL_STATE(4851)] = 163228, + [SMALL_STATE(4852)] = 163277, + [SMALL_STATE(4853)] = 163326, + [SMALL_STATE(4854)] = 163427, + [SMALL_STATE(4855)] = 163476, + [SMALL_STATE(4856)] = 163525, + [SMALL_STATE(4857)] = 163622, + [SMALL_STATE(4858)] = 163723, + [SMALL_STATE(4859)] = 163772, + [SMALL_STATE(4860)] = 163853, + [SMALL_STATE(4861)] = 163906, + [SMALL_STATE(4862)] = 163955, + [SMALL_STATE(4863)] = 164046, + [SMALL_STATE(4864)] = 164095, + [SMALL_STATE(4865)] = 164186, + [SMALL_STATE(4866)] = 164235, + [SMALL_STATE(4867)] = 164284, + [SMALL_STATE(4868)] = 164379, + [SMALL_STATE(4869)] = 164430, + [SMALL_STATE(4870)] = 164479, + [SMALL_STATE(4871)] = 164528, + [SMALL_STATE(4872)] = 164577, + [SMALL_STATE(4873)] = 164668, + [SMALL_STATE(4874)] = 164717, + [SMALL_STATE(4875)] = 164798, + [SMALL_STATE(4876)] = 164879, + [SMALL_STATE(4877)] = 164960, + [SMALL_STATE(4878)] = 165041, + [SMALL_STATE(4879)] = 165144, + [SMALL_STATE(4880)] = 165221, + [SMALL_STATE(4881)] = 165298, + [SMALL_STATE(4882)] = 165375, + [SMALL_STATE(4883)] = 165452, + [SMALL_STATE(4884)] = 165533, + [SMALL_STATE(4885)] = 165614, + [SMALL_STATE(4886)] = 165717, + [SMALL_STATE(4887)] = 165794, + [SMALL_STATE(4888)] = 165871, + [SMALL_STATE(4889)] = 165974, + [SMALL_STATE(4890)] = 166069, + [SMALL_STATE(4891)] = 166170, + [SMALL_STATE(4892)] = 166261, + [SMALL_STATE(4893)] = 166342, + [SMALL_STATE(4894)] = 166445, + [SMALL_STATE(4895)] = 166540, + [SMALL_STATE(4896)] = 166601, + [SMALL_STATE(4897)] = 166664, + [SMALL_STATE(4898)] = 166727, + [SMALL_STATE(4899)] = 166824, + [SMALL_STATE(4900)] = 166885, + [SMALL_STATE(4901)] = 166948, + [SMALL_STATE(4902)] = 167011, + [SMALL_STATE(4903)] = 167100, + [SMALL_STATE(4904)] = 167153, + [SMALL_STATE(4905)] = 167212, + [SMALL_STATE(4906)] = 167279, + [SMALL_STATE(4907)] = 167348, + [SMALL_STATE(4908)] = 167419, + [SMALL_STATE(4909)] = 167486, + [SMALL_STATE(4910)] = 167575, + [SMALL_STATE(4911)] = 167662, + [SMALL_STATE(4912)] = 167747, + [SMALL_STATE(4913)] = 167826, + [SMALL_STATE(4914)] = 167903, + [SMALL_STATE(4915)] = 167976, + [SMALL_STATE(4916)] = 168045, + [SMALL_STATE(4917)] = 168094, + [SMALL_STATE(4918)] = 168148, + [SMALL_STATE(4919)] = 168200, + [SMALL_STATE(4920)] = 168276, + [SMALL_STATE(4921)] = 168352, + [SMALL_STATE(4922)] = 168404, + [SMALL_STATE(4923)] = 168456, + [SMALL_STATE(4924)] = 168510, + [SMALL_STATE(4925)] = 168562, + [SMALL_STATE(4926)] = 168620, + [SMALL_STATE(4927)] = 168690, + [SMALL_STATE(4928)] = 168742, + [SMALL_STATE(4929)] = 168790, + [SMALL_STATE(4930)] = 168860, + [SMALL_STATE(4931)] = 168912, + [SMALL_STATE(4932)] = 168964, + [SMALL_STATE(4933)] = 169016, + [SMALL_STATE(4934)] = 169068, + [SMALL_STATE(4935)] = 169120, + [SMALL_STATE(4936)] = 169168, + [SMALL_STATE(4937)] = 169220, + [SMALL_STATE(4938)] = 169278, + [SMALL_STATE(4939)] = 169330, + [SMALL_STATE(4940)] = 169382, + [SMALL_STATE(4941)] = 169440, + [SMALL_STATE(4942)] = 169498, + [SMALL_STATE(4943)] = 169552, + [SMALL_STATE(4944)] = 169652, + [SMALL_STATE(4945)] = 169702, + [SMALL_STATE(4946)] = 169760, + [SMALL_STATE(4947)] = 169812, + [SMALL_STATE(4948)] = 169864, + [SMALL_STATE(4949)] = 169914, + [SMALL_STATE(4950)] = 169984, + [SMALL_STATE(4951)] = 170031, + [SMALL_STATE(4952)] = 170078, + [SMALL_STATE(4953)] = 170125, + [SMALL_STATE(4954)] = 170172, + [SMALL_STATE(4955)] = 170223, + [SMALL_STATE(4956)] = 170270, + [SMALL_STATE(4957)] = 170317, + [SMALL_STATE(4958)] = 170372, + [SMALL_STATE(4959)] = 170419, + [SMALL_STATE(4960)] = 170466, + [SMALL_STATE(4961)] = 170513, + [SMALL_STATE(4962)] = 170560, + [SMALL_STATE(4963)] = 170607, + [SMALL_STATE(4964)] = 170660, + [SMALL_STATE(4965)] = 170757, + [SMALL_STATE(4966)] = 170804, + [SMALL_STATE(4967)] = 170851, + [SMALL_STATE(4968)] = 170898, + [SMALL_STATE(4969)] = 170945, + [SMALL_STATE(4970)] = 170992, + [SMALL_STATE(4971)] = 171039, + [SMALL_STATE(4972)] = 171086, + [SMALL_STATE(4973)] = 171133, + [SMALL_STATE(4974)] = 171180, + [SMALL_STATE(4975)] = 171227, + [SMALL_STATE(4976)] = 171280, + [SMALL_STATE(4977)] = 171327, + [SMALL_STATE(4978)] = 171374, + [SMALL_STATE(4979)] = 171421, + [SMALL_STATE(4980)] = 171468, + [SMALL_STATE(4981)] = 171515, + [SMALL_STATE(4982)] = 171566, + [SMALL_STATE(4983)] = 171619, + [SMALL_STATE(4984)] = 171670, + [SMALL_STATE(4985)] = 171717, + [SMALL_STATE(4986)] = 171764, + [SMALL_STATE(4987)] = 171811, + [SMALL_STATE(4988)] = 171858, + [SMALL_STATE(4989)] = 171905, + [SMALL_STATE(4990)] = 172002, + [SMALL_STATE(4991)] = 172049, + [SMALL_STATE(4992)] = 172096, + [SMALL_STATE(4993)] = 172143, + [SMALL_STATE(4994)] = 172190, + [SMALL_STATE(4995)] = 172237, + [SMALL_STATE(4996)] = 172326, + [SMALL_STATE(4997)] = 172373, + [SMALL_STATE(4998)] = 172420, + [SMALL_STATE(4999)] = 172467, + [SMALL_STATE(5000)] = 172564, + [SMALL_STATE(5001)] = 172661, + [SMALL_STATE(5002)] = 172758, + [SMALL_STATE(5003)] = 172855, + [SMALL_STATE(5004)] = 172952, + [SMALL_STATE(5005)] = 172999, + [SMALL_STATE(5006)] = 173096, + [SMALL_STATE(5007)] = 173183, + [SMALL_STATE(5008)] = 173230, + [SMALL_STATE(5009)] = 173327, + [SMALL_STATE(5010)] = 173374, + [SMALL_STATE(5011)] = 173421, + [SMALL_STATE(5012)] = 173468, + [SMALL_STATE(5013)] = 173515, + [SMALL_STATE(5014)] = 173562, + [SMALL_STATE(5015)] = 173609, + [SMALL_STATE(5016)] = 173656, + [SMALL_STATE(5017)] = 173703, + [SMALL_STATE(5018)] = 173750, + [SMALL_STATE(5019)] = 173797, + [SMALL_STATE(5020)] = 173844, + [SMALL_STATE(5021)] = 173941, + [SMALL_STATE(5022)] = 174038, + [SMALL_STATE(5023)] = 174135, + [SMALL_STATE(5024)] = 174232, + [SMALL_STATE(5025)] = 174329, + [SMALL_STATE(5026)] = 174416, + [SMALL_STATE(5027)] = 174465, + [SMALL_STATE(5028)] = 174562, + [SMALL_STATE(5029)] = 174609, + [SMALL_STATE(5030)] = 174656, + [SMALL_STATE(5031)] = 174703, + [SMALL_STATE(5032)] = 174750, + [SMALL_STATE(5033)] = 174797, + [SMALL_STATE(5034)] = 174844, + [SMALL_STATE(5035)] = 174891, + [SMALL_STATE(5036)] = 174988, + [SMALL_STATE(5037)] = 175035, + [SMALL_STATE(5038)] = 175082, + [SMALL_STATE(5039)] = 175129, + [SMALL_STATE(5040)] = 175176, + [SMALL_STATE(5041)] = 175273, + [SMALL_STATE(5042)] = 175370, + [SMALL_STATE(5043)] = 175467, + [SMALL_STATE(5044)] = 175564, + [SMALL_STATE(5045)] = 175661, + [SMALL_STATE(5046)] = 175708, + [SMALL_STATE(5047)] = 175805, + [SMALL_STATE(5048)] = 175854, + [SMALL_STATE(5049)] = 175901, + [SMALL_STATE(5050)] = 175948, + [SMALL_STATE(5051)] = 175995, + [SMALL_STATE(5052)] = 176042, + [SMALL_STATE(5053)] = 176089, + [SMALL_STATE(5054)] = 176136, + [SMALL_STATE(5055)] = 176183, + [SMALL_STATE(5056)] = 176280, + [SMALL_STATE(5057)] = 176377, + [SMALL_STATE(5058)] = 176474, + [SMALL_STATE(5059)] = 176571, + [SMALL_STATE(5060)] = 176668, + [SMALL_STATE(5061)] = 176765, + [SMALL_STATE(5062)] = 176862, + [SMALL_STATE(5063)] = 176959, + [SMALL_STATE(5064)] = 177006, + [SMALL_STATE(5065)] = 177053, + [SMALL_STATE(5066)] = 177150, + [SMALL_STATE(5067)] = 177247, + [SMALL_STATE(5068)] = 177344, + [SMALL_STATE(5069)] = 177441, + [SMALL_STATE(5070)] = 177538, + [SMALL_STATE(5071)] = 177631, + [SMALL_STATE(5072)] = 177728, + [SMALL_STATE(5073)] = 177825, + [SMALL_STATE(5074)] = 177922, + [SMALL_STATE(5075)] = 178019, + [SMALL_STATE(5076)] = 178114, + [SMALL_STATE(5077)] = 178211, + [SMALL_STATE(5078)] = 178308, + [SMALL_STATE(5079)] = 178405, + [SMALL_STATE(5080)] = 178502, + [SMALL_STATE(5081)] = 178599, + [SMALL_STATE(5082)] = 178696, + [SMALL_STATE(5083)] = 178793, + [SMALL_STATE(5084)] = 178890, + [SMALL_STATE(5085)] = 178987, + [SMALL_STATE(5086)] = 179084, + [SMALL_STATE(5087)] = 179181, + [SMALL_STATE(5088)] = 179278, + [SMALL_STATE(5089)] = 179375, + [SMALL_STATE(5090)] = 179472, + [SMALL_STATE(5091)] = 179569, + [SMALL_STATE(5092)] = 179666, + [SMALL_STATE(5093)] = 179763, + [SMALL_STATE(5094)] = 179860, + [SMALL_STATE(5095)] = 179957, + [SMALL_STATE(5096)] = 180054, + [SMALL_STATE(5097)] = 180101, + [SMALL_STATE(5098)] = 180148, + [SMALL_STATE(5099)] = 180195, + [SMALL_STATE(5100)] = 180292, + [SMALL_STATE(5101)] = 180347, + [SMALL_STATE(5102)] = 180394, + [SMALL_STATE(5103)] = 180491, + [SMALL_STATE(5104)] = 180588, + [SMALL_STATE(5105)] = 180637, + [SMALL_STATE(5106)] = 180690, + [SMALL_STATE(5107)] = 180787, + [SMALL_STATE(5108)] = 180834, + [SMALL_STATE(5109)] = 180931, + [SMALL_STATE(5110)] = 181028, + [SMALL_STATE(5111)] = 181125, + [SMALL_STATE(5112)] = 181172, + [SMALL_STATE(5113)] = 181269, + [SMALL_STATE(5114)] = 181316, + [SMALL_STATE(5115)] = 181413, + [SMALL_STATE(5116)] = 181510, + [SMALL_STATE(5117)] = 181607, + [SMALL_STATE(5118)] = 181704, + [SMALL_STATE(5119)] = 181801, + [SMALL_STATE(5120)] = 181898, + [SMALL_STATE(5121)] = 181987, + [SMALL_STATE(5122)] = 182034, + [SMALL_STATE(5123)] = 182127, + [SMALL_STATE(5124)] = 182174, + [SMALL_STATE(5125)] = 182221, + [SMALL_STATE(5126)] = 182268, + [SMALL_STATE(5127)] = 182365, + [SMALL_STATE(5128)] = 182430, + [SMALL_STATE(5129)] = 182517, + [SMALL_STATE(5130)] = 182602, + [SMALL_STATE(5131)] = 182685, + [SMALL_STATE(5132)] = 182766, + [SMALL_STATE(5133)] = 182843, + [SMALL_STATE(5134)] = 182918, + [SMALL_STATE(5135)] = 182989, + [SMALL_STATE(5136)] = 183056, + [SMALL_STATE(5137)] = 183125, + [SMALL_STATE(5138)] = 183220, + [SMALL_STATE(5139)] = 183267, + [SMALL_STATE(5140)] = 183314, + [SMALL_STATE(5141)] = 183361, + [SMALL_STATE(5142)] = 183454, + [SMALL_STATE(5143)] = 183501, + [SMALL_STATE(5144)] = 183590, + [SMALL_STATE(5145)] = 183637, + [SMALL_STATE(5146)] = 183684, + [SMALL_STATE(5147)] = 183777, + [SMALL_STATE(5148)] = 183866, + [SMALL_STATE(5149)] = 183913, + [SMALL_STATE(5150)] = 183960, + [SMALL_STATE(5151)] = 184007, + [SMALL_STATE(5152)] = 184054, + [SMALL_STATE(5153)] = 184101, + [SMALL_STATE(5154)] = 184194, + [SMALL_STATE(5155)] = 184241, + [SMALL_STATE(5156)] = 184288, + [SMALL_STATE(5157)] = 184335, + [SMALL_STATE(5158)] = 184382, + [SMALL_STATE(5159)] = 184429, + [SMALL_STATE(5160)] = 184476, + [SMALL_STATE(5161)] = 184551, + [SMALL_STATE(5162)] = 184626, + [SMALL_STATE(5163)] = 184701, + [SMALL_STATE(5164)] = 184748, + [SMALL_STATE(5165)] = 184801, + [SMALL_STATE(5166)] = 184898, + [SMALL_STATE(5167)] = 184995, + [SMALL_STATE(5168)] = 185042, + [SMALL_STATE(5169)] = 185095, + [SMALL_STATE(5170)] = 185142, + [SMALL_STATE(5171)] = 185189, + [SMALL_STATE(5172)] = 185236, + [SMALL_STATE(5173)] = 185283, + [SMALL_STATE(5174)] = 185330, + [SMALL_STATE(5175)] = 185377, + [SMALL_STATE(5176)] = 185424, + [SMALL_STATE(5177)] = 185471, + [SMALL_STATE(5178)] = 185518, + [SMALL_STATE(5179)] = 185565, + [SMALL_STATE(5180)] = 185612, + [SMALL_STATE(5181)] = 185659, + [SMALL_STATE(5182)] = 185708, + [SMALL_STATE(5183)] = 185755, + [SMALL_STATE(5184)] = 185830, + [SMALL_STATE(5185)] = 185904, + [SMALL_STATE(5186)] = 185972, + [SMALL_STATE(5187)] = 186040, + [SMALL_STATE(5188)] = 186132, + [SMALL_STATE(5189)] = 186226, + [SMALL_STATE(5190)] = 186318, + [SMALL_STATE(5191)] = 186404, + [SMALL_STATE(5192)] = 186498, + [SMALL_STATE(5193)] = 186566, + [SMALL_STATE(5194)] = 186634, + [SMALL_STATE(5195)] = 186718, + [SMALL_STATE(5196)] = 186812, + [SMALL_STATE(5197)] = 186880, + [SMALL_STATE(5198)] = 186974, + [SMALL_STATE(5199)] = 187068, + [SMALL_STATE(5200)] = 187142, + [SMALL_STATE(5201)] = 187188, + [SMALL_STATE(5202)] = 187256, + [SMALL_STATE(5203)] = 187324, + [SMALL_STATE(5204)] = 187372, + [SMALL_STATE(5205)] = 187466, + [SMALL_STATE(5206)] = 187560, + [SMALL_STATE(5207)] = 187652, + [SMALL_STATE(5208)] = 187698, + [SMALL_STATE(5209)] = 187744, + [SMALL_STATE(5210)] = 187790, + [SMALL_STATE(5211)] = 187850, + [SMALL_STATE(5212)] = 187918, + [SMALL_STATE(5213)] = 187986, + [SMALL_STATE(5214)] = 188032, + [SMALL_STATE(5215)] = 188078, + [SMALL_STATE(5216)] = 188172, + [SMALL_STATE(5217)] = 188240, + [SMALL_STATE(5218)] = 188308, + [SMALL_STATE(5219)] = 188394, + [SMALL_STATE(5220)] = 188486, + [SMALL_STATE(5221)] = 188538, + [SMALL_STATE(5222)] = 188606, + [SMALL_STATE(5223)] = 188694, + [SMALL_STATE(5224)] = 188786, + [SMALL_STATE(5225)] = 188838, + [SMALL_STATE(5226)] = 188884, + [SMALL_STATE(5227)] = 188952, + [SMALL_STATE(5228)] = 189046, + [SMALL_STATE(5229)] = 189092, + [SMALL_STATE(5230)] = 189186, + [SMALL_STATE(5231)] = 189236, + [SMALL_STATE(5232)] = 189318, + [SMALL_STATE(5233)] = 189398, + [SMALL_STATE(5234)] = 189490, + [SMALL_STATE(5235)] = 189558, + [SMALL_STATE(5236)] = 189626, + [SMALL_STATE(5237)] = 189694, + [SMALL_STATE(5238)] = 189762, + [SMALL_STATE(5239)] = 189854, + [SMALL_STATE(5240)] = 189922, + [SMALL_STATE(5241)] = 189990, + [SMALL_STATE(5242)] = 190082, + [SMALL_STATE(5243)] = 190170, + [SMALL_STATE(5244)] = 190262, + [SMALL_STATE(5245)] = 190356, + [SMALL_STATE(5246)] = 190404, + [SMALL_STATE(5247)] = 190496, + [SMALL_STATE(5248)] = 190560, + [SMALL_STATE(5249)] = 190624, + [SMALL_STATE(5250)] = 190710, + [SMALL_STATE(5251)] = 190794, + [SMALL_STATE(5252)] = 190876, + [SMALL_STATE(5253)] = 190956, + [SMALL_STATE(5254)] = 191032, + [SMALL_STATE(5255)] = 191106, + [SMALL_STATE(5256)] = 191176, + [SMALL_STATE(5257)] = 191242, + [SMALL_STATE(5258)] = 191334, + [SMALL_STATE(5259)] = 191402, + [SMALL_STATE(5260)] = 191494, + [SMALL_STATE(5261)] = 191562, + [SMALL_STATE(5262)] = 191630, + [SMALL_STATE(5263)] = 191722, + [SMALL_STATE(5264)] = 191814, + [SMALL_STATE(5265)] = 191882, + [SMALL_STATE(5266)] = 191928, + [SMALL_STATE(5267)] = 192016, + [SMALL_STATE(5268)] = 192062, + [SMALL_STATE(5269)] = 192154, + [SMALL_STATE(5270)] = 192222, + [SMALL_STATE(5271)] = 192310, + [SMALL_STATE(5272)] = 192358, + [SMALL_STATE(5273)] = 192450, + [SMALL_STATE(5274)] = 192502, + [SMALL_STATE(5275)] = 192570, + [SMALL_STATE(5276)] = 192638, + [SMALL_STATE(5277)] = 192706, + [SMALL_STATE(5278)] = 192800, + [SMALL_STATE(5279)] = 192876, + [SMALL_STATE(5280)] = 192970, + [SMALL_STATE(5281)] = 193064, + [SMALL_STATE(5282)] = 193110, + [SMALL_STATE(5283)] = 193204, + [SMALL_STATE(5284)] = 193298, + [SMALL_STATE(5285)] = 193392, + [SMALL_STATE(5286)] = 193460, + [SMALL_STATE(5287)] = 193506, + [SMALL_STATE(5288)] = 193600, + [SMALL_STATE(5289)] = 193666, + [SMALL_STATE(5290)] = 193734, + [SMALL_STATE(5291)] = 193802, + [SMALL_STATE(5292)] = 193894, + [SMALL_STATE(5293)] = 193988, + [SMALL_STATE(5294)] = 194056, + [SMALL_STATE(5295)] = 194124, + [SMALL_STATE(5296)] = 194176, + [SMALL_STATE(5297)] = 194268, + [SMALL_STATE(5298)] = 194338, + [SMALL_STATE(5299)] = 194430, + [SMALL_STATE(5300)] = 194476, + [SMALL_STATE(5301)] = 194570, + [SMALL_STATE(5302)] = 194638, + [SMALL_STATE(5303)] = 194706, + [SMALL_STATE(5304)] = 194752, + [SMALL_STATE(5305)] = 194812, + [SMALL_STATE(5306)] = 194906, + [SMALL_STATE(5307)] = 194980, + [SMALL_STATE(5308)] = 195048, + [SMALL_STATE(5309)] = 195116, + [SMALL_STATE(5310)] = 195162, + [SMALL_STATE(5311)] = 195250, + [SMALL_STATE(5312)] = 195344, + [SMALL_STATE(5313)] = 195396, + [SMALL_STATE(5314)] = 195464, + [SMALL_STATE(5315)] = 195532, + [SMALL_STATE(5316)] = 195624, + [SMALL_STATE(5317)] = 195718, + [SMALL_STATE(5318)] = 195812, + [SMALL_STATE(5319)] = 195906, + [SMALL_STATE(5320)] = 195952, + [SMALL_STATE(5321)] = 196046, + [SMALL_STATE(5322)] = 196134, + [SMALL_STATE(5323)] = 196180, + [SMALL_STATE(5324)] = 196274, + [SMALL_STATE(5325)] = 196342, + [SMALL_STATE(5326)] = 196388, + [SMALL_STATE(5327)] = 196434, + [SMALL_STATE(5328)] = 196480, + [SMALL_STATE(5329)] = 196538, + [SMALL_STATE(5330)] = 196584, + [SMALL_STATE(5331)] = 196630, + [SMALL_STATE(5332)] = 196676, + [SMALL_STATE(5333)] = 196770, + [SMALL_STATE(5334)] = 196838, + [SMALL_STATE(5335)] = 196884, + [SMALL_STATE(5336)] = 196930, + [SMALL_STATE(5337)] = 196998, + [SMALL_STATE(5338)] = 197066, + [SMALL_STATE(5339)] = 197134, + [SMALL_STATE(5340)] = 197222, + [SMALL_STATE(5341)] = 197282, + [SMALL_STATE(5342)] = 197342, + [SMALL_STATE(5343)] = 197388, + [SMALL_STATE(5344)] = 197476, + [SMALL_STATE(5345)] = 197534, + [SMALL_STATE(5346)] = 197628, + [SMALL_STATE(5347)] = 197674, + [SMALL_STATE(5348)] = 197768, + [SMALL_STATE(5349)] = 197836, + [SMALL_STATE(5350)] = 197904, + [SMALL_STATE(5351)] = 197972, + [SMALL_STATE(5352)] = 198066, + [SMALL_STATE(5353)] = 198134, + [SMALL_STATE(5354)] = 198228, + [SMALL_STATE(5355)] = 198296, + [SMALL_STATE(5356)] = 198352, + [SMALL_STATE(5357)] = 198398, + [SMALL_STATE(5358)] = 198444, + [SMALL_STATE(5359)] = 198490, + [SMALL_STATE(5360)] = 198558, + [SMALL_STATE(5361)] = 198604, + [SMALL_STATE(5362)] = 198698, + [SMALL_STATE(5363)] = 198770, + [SMALL_STATE(5364)] = 198861, + [SMALL_STATE(5365)] = 198952, + [SMALL_STATE(5366)] = 199043, + [SMALL_STATE(5367)] = 199134, + [SMALL_STATE(5368)] = 199225, + [SMALL_STATE(5369)] = 199276, + [SMALL_STATE(5370)] = 199367, + [SMALL_STATE(5371)] = 199458, + [SMALL_STATE(5372)] = 199549, + [SMALL_STATE(5373)] = 199640, + [SMALL_STATE(5374)] = 199731, + [SMALL_STATE(5375)] = 199822, + [SMALL_STATE(5376)] = 199913, + [SMALL_STATE(5377)] = 200004, + [SMALL_STATE(5378)] = 200095, + [SMALL_STATE(5379)] = 200186, + [SMALL_STATE(5380)] = 200237, + [SMALL_STATE(5381)] = 200328, + [SMALL_STATE(5382)] = 200419, + [SMALL_STATE(5383)] = 200510, + [SMALL_STATE(5384)] = 200601, + [SMALL_STATE(5385)] = 200692, + [SMALL_STATE(5386)] = 200783, + [SMALL_STATE(5387)] = 200874, + [SMALL_STATE(5388)] = 200965, + [SMALL_STATE(5389)] = 201056, + [SMALL_STATE(5390)] = 201147, + [SMALL_STATE(5391)] = 201238, + [SMALL_STATE(5392)] = 201329, + [SMALL_STATE(5393)] = 201420, + [SMALL_STATE(5394)] = 201511, + [SMALL_STATE(5395)] = 201602, + [SMALL_STATE(5396)] = 201647, + [SMALL_STATE(5397)] = 201702, + [SMALL_STATE(5398)] = 201793, + [SMALL_STATE(5399)] = 201884, + [SMALL_STATE(5400)] = 201975, + [SMALL_STATE(5401)] = 202066, + [SMALL_STATE(5402)] = 202157, + [SMALL_STATE(5403)] = 202248, + [SMALL_STATE(5404)] = 202339, + [SMALL_STATE(5405)] = 202430, + [SMALL_STATE(5406)] = 202521, + [SMALL_STATE(5407)] = 202612, + [SMALL_STATE(5408)] = 202703, + [SMALL_STATE(5409)] = 202794, + [SMALL_STATE(5410)] = 202885, + [SMALL_STATE(5411)] = 202930, + [SMALL_STATE(5412)] = 202979, + [SMALL_STATE(5413)] = 203028, + [SMALL_STATE(5414)] = 203079, + [SMALL_STATE(5415)] = 203130, + [SMALL_STATE(5416)] = 203203, + [SMALL_STATE(5417)] = 203294, + [SMALL_STATE(5418)] = 203385, + [SMALL_STATE(5419)] = 203434, + [SMALL_STATE(5420)] = 203525, + [SMALL_STATE(5421)] = 203616, + [SMALL_STATE(5422)] = 203707, + [SMALL_STATE(5423)] = 203798, + [SMALL_STATE(5424)] = 203871, + [SMALL_STATE(5425)] = 203962, + [SMALL_STATE(5426)] = 204053, + [SMALL_STATE(5427)] = 204144, + [SMALL_STATE(5428)] = 204235, + [SMALL_STATE(5429)] = 204326, + [SMALL_STATE(5430)] = 204417, + [SMALL_STATE(5431)] = 204508, + [SMALL_STATE(5432)] = 204599, + [SMALL_STATE(5433)] = 204690, + [SMALL_STATE(5434)] = 204781, + [SMALL_STATE(5435)] = 204872, + [SMALL_STATE(5436)] = 204963, + [SMALL_STATE(5437)] = 205054, + [SMALL_STATE(5438)] = 205145, + [SMALL_STATE(5439)] = 205236, + [SMALL_STATE(5440)] = 205327, + [SMALL_STATE(5441)] = 205418, + [SMALL_STATE(5442)] = 205467, + [SMALL_STATE(5443)] = 205558, + [SMALL_STATE(5444)] = 205649, + [SMALL_STATE(5445)] = 205740, + [SMALL_STATE(5446)] = 205831, + [SMALL_STATE(5447)] = 205922, + [SMALL_STATE(5448)] = 206013, + [SMALL_STATE(5449)] = 206104, + [SMALL_STATE(5450)] = 206195, + [SMALL_STATE(5451)] = 206286, + [SMALL_STATE(5452)] = 206377, + [SMALL_STATE(5453)] = 206468, + [SMALL_STATE(5454)] = 206559, + [SMALL_STATE(5455)] = 206650, + [SMALL_STATE(5456)] = 206741, + [SMALL_STATE(5457)] = 206832, + [SMALL_STATE(5458)] = 206899, + [SMALL_STATE(5459)] = 206966, + [SMALL_STATE(5460)] = 207057, + [SMALL_STATE(5461)] = 207148, + [SMALL_STATE(5462)] = 207239, + [SMALL_STATE(5463)] = 207330, + [SMALL_STATE(5464)] = 207397, + [SMALL_STATE(5465)] = 207464, + [SMALL_STATE(5466)] = 207555, + [SMALL_STATE(5467)] = 207646, + [SMALL_STATE(5468)] = 207737, + [SMALL_STATE(5469)] = 207828, + [SMALL_STATE(5470)] = 207919, + [SMALL_STATE(5471)] = 208010, + [SMALL_STATE(5472)] = 208067, + [SMALL_STATE(5473)] = 208158, + [SMALL_STATE(5474)] = 208249, + [SMALL_STATE(5475)] = 208340, + [SMALL_STATE(5476)] = 208431, + [SMALL_STATE(5477)] = 208522, + [SMALL_STATE(5478)] = 208613, + [SMALL_STATE(5479)] = 208704, + [SMALL_STATE(5480)] = 208753, + [SMALL_STATE(5481)] = 208844, + [SMALL_STATE(5482)] = 208903, + [SMALL_STATE(5483)] = 208962, + [SMALL_STATE(5484)] = 209051, + [SMALL_STATE(5485)] = 209142, + [SMALL_STATE(5486)] = 209233, + [SMALL_STATE(5487)] = 209290, + [SMALL_STATE(5488)] = 209381, + [SMALL_STATE(5489)] = 209472, + [SMALL_STATE(5490)] = 209563, + [SMALL_STATE(5491)] = 209654, + [SMALL_STATE(5492)] = 209745, + [SMALL_STATE(5493)] = 209836, + [SMALL_STATE(5494)] = 209927, + [SMALL_STATE(5495)] = 210018, + [SMALL_STATE(5496)] = 210109, + [SMALL_STATE(5497)] = 210200, + [SMALL_STATE(5498)] = 210291, + [SMALL_STATE(5499)] = 210382, + [SMALL_STATE(5500)] = 210473, + [SMALL_STATE(5501)] = 210564, + [SMALL_STATE(5502)] = 210653, + [SMALL_STATE(5503)] = 210744, + [SMALL_STATE(5504)] = 210835, + [SMALL_STATE(5505)] = 210926, + [SMALL_STATE(5506)] = 210971, + [SMALL_STATE(5507)] = 211062, + [SMALL_STATE(5508)] = 211153, + [SMALL_STATE(5509)] = 211244, + [SMALL_STATE(5510)] = 211293, + [SMALL_STATE(5511)] = 211384, + [SMALL_STATE(5512)] = 211475, + [SMALL_STATE(5513)] = 211566, + [SMALL_STATE(5514)] = 211657, + [SMALL_STATE(5515)] = 211748, + [SMALL_STATE(5516)] = 211839, + [SMALL_STATE(5517)] = 211892, + [SMALL_STATE(5518)] = 211983, + [SMALL_STATE(5519)] = 212074, + [SMALL_STATE(5520)] = 212165, + [SMALL_STATE(5521)] = 212228, + [SMALL_STATE(5522)] = 212287, + [SMALL_STATE(5523)] = 212374, + [SMALL_STATE(5524)] = 212459, + [SMALL_STATE(5525)] = 212540, + [SMALL_STATE(5526)] = 212619, + [SMALL_STATE(5527)] = 212694, + [SMALL_STATE(5528)] = 212767, + [SMALL_STATE(5529)] = 212836, + [SMALL_STATE(5530)] = 212891, + [SMALL_STATE(5531)] = 212956, + [SMALL_STATE(5532)] = 213023, + [SMALL_STATE(5533)] = 213114, + [SMALL_STATE(5534)] = 213205, + [SMALL_STATE(5535)] = 213256, + [SMALL_STATE(5536)] = 213315, + [SMALL_STATE(5537)] = 213372, + [SMALL_STATE(5538)] = 213429, + [SMALL_STATE(5539)] = 213476, + [SMALL_STATE(5540)] = 213567, + [SMALL_STATE(5541)] = 213656, + [SMALL_STATE(5542)] = 213747, + [SMALL_STATE(5543)] = 213836, + [SMALL_STATE(5544)] = 213927, + [SMALL_STATE(5545)] = 214018, + [SMALL_STATE(5546)] = 214109, + [SMALL_STATE(5547)] = 214158, + [SMALL_STATE(5548)] = 214249, + [SMALL_STATE(5549)] = 214340, + [SMALL_STATE(5550)] = 214431, + [SMALL_STATE(5551)] = 214478, + [SMALL_STATE(5552)] = 214565, + [SMALL_STATE(5553)] = 214656, + [SMALL_STATE(5554)] = 214719, + [SMALL_STATE(5555)] = 214804, + [SMALL_STATE(5556)] = 214887, + [SMALL_STATE(5557)] = 214968, + [SMALL_STATE(5558)] = 215047, + [SMALL_STATE(5559)] = 215122, + [SMALL_STATE(5560)] = 215195, + [SMALL_STATE(5561)] = 215264, + [SMALL_STATE(5562)] = 215329, + [SMALL_STATE(5563)] = 215396, + [SMALL_STATE(5564)] = 215483, + [SMALL_STATE(5565)] = 215574, + [SMALL_STATE(5566)] = 215661, + [SMALL_STATE(5567)] = 215752, + [SMALL_STATE(5568)] = 215839, + [SMALL_STATE(5569)] = 215930, + [SMALL_STATE(5570)] = 216021, + [SMALL_STATE(5571)] = 216112, + [SMALL_STATE(5572)] = 216203, + [SMALL_STATE(5573)] = 216294, + [SMALL_STATE(5574)] = 216343, + [SMALL_STATE(5575)] = 216392, + [SMALL_STATE(5576)] = 216443, + [SMALL_STATE(5577)] = 216534, + [SMALL_STATE(5578)] = 216625, + [SMALL_STATE(5579)] = 216716, + [SMALL_STATE(5580)] = 216807, + [SMALL_STATE(5581)] = 216898, + [SMALL_STATE(5582)] = 216989, + [SMALL_STATE(5583)] = 217080, + [SMALL_STATE(5584)] = 217171, + [SMALL_STATE(5585)] = 217262, + [SMALL_STATE(5586)] = 217311, + [SMALL_STATE(5587)] = 217361, + [SMALL_STATE(5588)] = 217405, + [SMALL_STATE(5589)] = 217449, + [SMALL_STATE(5590)] = 217493, + [SMALL_STATE(5591)] = 217537, + [SMALL_STATE(5592)] = 217581, + [SMALL_STATE(5593)] = 217647, + [SMALL_STATE(5594)] = 217691, + [SMALL_STATE(5595)] = 217735, + [SMALL_STATE(5596)] = 217779, + [SMALL_STATE(5597)] = 217823, + [SMALL_STATE(5598)] = 217867, + [SMALL_STATE(5599)] = 217953, + [SMALL_STATE(5600)] = 218019, + [SMALL_STATE(5601)] = 218065, + [SMALL_STATE(5602)] = 218137, + [SMALL_STATE(5603)] = 218181, + [SMALL_STATE(5604)] = 218225, + [SMALL_STATE(5605)] = 218297, + [SMALL_STATE(5606)] = 218341, + [SMALL_STATE(5607)] = 218385, + [SMALL_STATE(5608)] = 218473, + [SMALL_STATE(5609)] = 218517, + [SMALL_STATE(5610)] = 218565, + [SMALL_STATE(5611)] = 218609, + [SMALL_STATE(5612)] = 218653, + [SMALL_STATE(5613)] = 218697, + [SMALL_STATE(5614)] = 218783, + [SMALL_STATE(5615)] = 218827, + [SMALL_STATE(5616)] = 218871, + [SMALL_STATE(5617)] = 218915, + [SMALL_STATE(5618)] = 218981, + [SMALL_STATE(5619)] = 219029, + [SMALL_STATE(5620)] = 219079, + [SMALL_STATE(5621)] = 219139, + [SMALL_STATE(5622)] = 219183, + [SMALL_STATE(5623)] = 219227, + [SMALL_STATE(5624)] = 219293, + [SMALL_STATE(5625)] = 219359, + [SMALL_STATE(5626)] = 219425, + [SMALL_STATE(5627)] = 219469, + [SMALL_STATE(5628)] = 219513, + [SMALL_STATE(5629)] = 219557, + [SMALL_STATE(5630)] = 219601, + [SMALL_STATE(5631)] = 219645, + [SMALL_STATE(5632)] = 219689, + [SMALL_STATE(5633)] = 219733, + [SMALL_STATE(5634)] = 219777, + [SMALL_STATE(5635)] = 219821, + [SMALL_STATE(5636)] = 219865, + [SMALL_STATE(5637)] = 219909, + [SMALL_STATE(5638)] = 219953, + [SMALL_STATE(5639)] = 219997, + [SMALL_STATE(5640)] = 220041, + [SMALL_STATE(5641)] = 220087, + [SMALL_STATE(5642)] = 220137, + [SMALL_STATE(5643)] = 220185, + [SMALL_STATE(5644)] = 220235, + [SMALL_STATE(5645)] = 220279, + [SMALL_STATE(5646)] = 220345, + [SMALL_STATE(5647)] = 220389, + [SMALL_STATE(5648)] = 220435, + [SMALL_STATE(5649)] = 220479, + [SMALL_STATE(5650)] = 220523, + [SMALL_STATE(5651)] = 220567, + [SMALL_STATE(5652)] = 220611, + [SMALL_STATE(5653)] = 220655, + [SMALL_STATE(5654)] = 220699, + [SMALL_STATE(5655)] = 220743, + [SMALL_STATE(5656)] = 220809, + [SMALL_STATE(5657)] = 220852, + [SMALL_STATE(5658)] = 220917, + [SMALL_STATE(5659)] = 220962, + [SMALL_STATE(5660)] = 221005, + [SMALL_STATE(5661)] = 221048, + [SMALL_STATE(5662)] = 221091, + [SMALL_STATE(5663)] = 221162, + [SMALL_STATE(5664)] = 221227, + [SMALL_STATE(5665)] = 221270, + [SMALL_STATE(5666)] = 221317, + [SMALL_STATE(5667)] = 221360, + [SMALL_STATE(5668)] = 221403, + [SMALL_STATE(5669)] = 221446, + [SMALL_STATE(5670)] = 221489, + [SMALL_STATE(5671)] = 221532, + [SMALL_STATE(5672)] = 221579, + [SMALL_STATE(5673)] = 221622, + [SMALL_STATE(5674)] = 221665, + [SMALL_STATE(5675)] = 221708, + [SMALL_STATE(5676)] = 221751, + [SMALL_STATE(5677)] = 221816, + [SMALL_STATE(5678)] = 221859, + [SMALL_STATE(5679)] = 221902, + [SMALL_STATE(5680)] = 221945, + [SMALL_STATE(5681)] = 221988, + [SMALL_STATE(5682)] = 222043, + [SMALL_STATE(5683)] = 222086, + [SMALL_STATE(5684)] = 222129, + [SMALL_STATE(5685)] = 222172, + [SMALL_STATE(5686)] = 222215, + [SMALL_STATE(5687)] = 222286, + [SMALL_STATE(5688)] = 222357, + [SMALL_STATE(5689)] = 222400, + [SMALL_STATE(5690)] = 222443, + [SMALL_STATE(5691)] = 222486, + [SMALL_STATE(5692)] = 222529, + [SMALL_STATE(5693)] = 222600, + [SMALL_STATE(5694)] = 222643, + [SMALL_STATE(5695)] = 222686, + [SMALL_STATE(5696)] = 222729, + [SMALL_STATE(5697)] = 222784, + [SMALL_STATE(5698)] = 222827, + [SMALL_STATE(5699)] = 222870, + [SMALL_STATE(5700)] = 222913, + [SMALL_STATE(5701)] = 222956, + [SMALL_STATE(5702)] = 222999, + [SMALL_STATE(5703)] = 223084, + [SMALL_STATE(5704)] = 223127, + [SMALL_STATE(5705)] = 223170, + [SMALL_STATE(5706)] = 223217, + [SMALL_STATE(5707)] = 223260, + [SMALL_STATE(5708)] = 223307, + [SMALL_STATE(5709)] = 223392, + [SMALL_STATE(5710)] = 223439, + [SMALL_STATE(5711)] = 223486, + [SMALL_STATE(5712)] = 223529, + [SMALL_STATE(5713)] = 223572, + [SMALL_STATE(5714)] = 223615, + [SMALL_STATE(5715)] = 223658, + [SMALL_STATE(5716)] = 223701, + [SMALL_STATE(5717)] = 223754, + [SMALL_STATE(5718)] = 223797, + [SMALL_STATE(5719)] = 223840, + [SMALL_STATE(5720)] = 223883, + [SMALL_STATE(5721)] = 223926, + [SMALL_STATE(5722)] = 223969, + [SMALL_STATE(5723)] = 224014, + [SMALL_STATE(5724)] = 224073, + [SMALL_STATE(5725)] = 224118, + [SMALL_STATE(5726)] = 224161, + [SMALL_STATE(5727)] = 224206, + [SMALL_STATE(5728)] = 224253, + [SMALL_STATE(5729)] = 224296, + [SMALL_STATE(5730)] = 224339, + [SMALL_STATE(5731)] = 224382, + [SMALL_STATE(5732)] = 224425, + [SMALL_STATE(5733)] = 224468, + [SMALL_STATE(5734)] = 224511, + [SMALL_STATE(5735)] = 224554, + [SMALL_STATE(5736)] = 224601, + [SMALL_STATE(5737)] = 224654, + [SMALL_STATE(5738)] = 224697, + [SMALL_STATE(5739)] = 224740, + [SMALL_STATE(5740)] = 224783, + [SMALL_STATE(5741)] = 224826, + [SMALL_STATE(5742)] = 224869, + [SMALL_STATE(5743)] = 224912, + [SMALL_STATE(5744)] = 224955, + [SMALL_STATE(5745)] = 225000, + [SMALL_STATE(5746)] = 225043, + [SMALL_STATE(5747)] = 225086, + [SMALL_STATE(5748)] = 225129, + [SMALL_STATE(5749)] = 225172, + [SMALL_STATE(5750)] = 225237, + [SMALL_STATE(5751)] = 225280, + [SMALL_STATE(5752)] = 225323, + [SMALL_STATE(5753)] = 225407, + [SMALL_STATE(5754)] = 225449, + [SMALL_STATE(5755)] = 225491, + [SMALL_STATE(5756)] = 225575, + [SMALL_STATE(5757)] = 225623, + [SMALL_STATE(5758)] = 225671, + [SMALL_STATE(5759)] = 225755, + [SMALL_STATE(5760)] = 225809, + [SMALL_STATE(5761)] = 225855, + [SMALL_STATE(5762)] = 225939, + [SMALL_STATE(5763)] = 226023, + [SMALL_STATE(5764)] = 226071, + [SMALL_STATE(5765)] = 226155, + [SMALL_STATE(5766)] = 226203, + [SMALL_STATE(5767)] = 226287, + [SMALL_STATE(5768)] = 226371, + [SMALL_STATE(5769)] = 226441, + [SMALL_STATE(5770)] = 226511, + [SMALL_STATE(5771)] = 226595, + [SMALL_STATE(5772)] = 226659, + [SMALL_STATE(5773)] = 226723, + [SMALL_STATE(5774)] = 226777, + [SMALL_STATE(5775)] = 226841, + [SMALL_STATE(5776)] = 226905, + [SMALL_STATE(5777)] = 226955, + [SMALL_STATE(5778)] = 227005, + [SMALL_STATE(5779)] = 227054, + [SMALL_STATE(5780)] = 227119, + [SMALL_STATE(5781)] = 227210, + [SMALL_STATE(5782)] = 227275, + [SMALL_STATE(5783)] = 227344, + [SMALL_STATE(5784)] = 227421, + [SMALL_STATE(5785)] = 227486, + [SMALL_STATE(5786)] = 227533, + [SMALL_STATE(5787)] = 227596, + [SMALL_STATE(5788)] = 227659, + [SMALL_STATE(5789)] = 227722, + [SMALL_STATE(5790)] = 227785, + [SMALL_STATE(5791)] = 227862, + [SMALL_STATE(5792)] = 227939, + [SMALL_STATE(5793)] = 227988, + [SMALL_STATE(5794)] = 228071, + [SMALL_STATE(5795)] = 228136, + [SMALL_STATE(5796)] = 228205, + [SMALL_STATE(5797)] = 228250, + [SMALL_STATE(5798)] = 228295, + [SMALL_STATE(5799)] = 228360, + [SMALL_STATE(5800)] = 228429, + [SMALL_STATE(5801)] = 228506, + [SMALL_STATE(5802)] = 228551, + [SMALL_STATE(5803)] = 228596, + [SMALL_STATE(5804)] = 228643, + [SMALL_STATE(5805)] = 228688, + [SMALL_STATE(5806)] = 228733, + [SMALL_STATE(5807)] = 228816, + [SMALL_STATE(5808)] = 228861, + [SMALL_STATE(5809)] = 228944, + [SMALL_STATE(5810)] = 228989, + [SMALL_STATE(5811)] = 229034, + [SMALL_STATE(5812)] = 229079, + [SMALL_STATE(5813)] = 229124, + [SMALL_STATE(5814)] = 229169, + [SMALL_STATE(5815)] = 229252, + [SMALL_STATE(5816)] = 229299, + [SMALL_STATE(5817)] = 229350, + [SMALL_STATE(5818)] = 229415, + [SMALL_STATE(5819)] = 229484, + [SMALL_STATE(5820)] = 229546, + [SMALL_STATE(5821)] = 229626, + [SMALL_STATE(5822)] = 229706, + [SMALL_STATE(5823)] = 229786, + [SMALL_STATE(5824)] = 229866, + [SMALL_STATE(5825)] = 229946, + [SMALL_STATE(5826)] = 230026, + [SMALL_STATE(5827)] = 230106, + [SMALL_STATE(5828)] = 230186, + [SMALL_STATE(5829)] = 230266, + [SMALL_STATE(5830)] = 230346, + [SMALL_STATE(5831)] = 230426, + [SMALL_STATE(5832)] = 230506, + [SMALL_STATE(5833)] = 230586, + [SMALL_STATE(5834)] = 230666, + [SMALL_STATE(5835)] = 230746, + [SMALL_STATE(5836)] = 230826, + [SMALL_STATE(5837)] = 230874, + [SMALL_STATE(5838)] = 230954, + [SMALL_STATE(5839)] = 231036, + [SMALL_STATE(5840)] = 231118, + [SMALL_STATE(5841)] = 231168, + [SMALL_STATE(5842)] = 231230, + [SMALL_STATE(5843)] = 231310, + [SMALL_STATE(5844)] = 231352, + [SMALL_STATE(5845)] = 231408, + [SMALL_STATE(5846)] = 231488, + [SMALL_STATE(5847)] = 231532, + [SMALL_STATE(5848)] = 231600, + [SMALL_STATE(5849)] = 231662, + [SMALL_STATE(5850)] = 231724, + [SMALL_STATE(5851)] = 231786, + [SMALL_STATE(5852)] = 231848, + [SMALL_STATE(5853)] = 231924, + [SMALL_STATE(5854)] = 232000, + [SMALL_STATE(5855)] = 232080, + [SMALL_STATE(5856)] = 232160, + [SMALL_STATE(5857)] = 232236, + [SMALL_STATE(5858)] = 232304, + [SMALL_STATE(5859)] = 232354, + [SMALL_STATE(5860)] = 232434, + [SMALL_STATE(5861)] = 232514, + [SMALL_STATE(5862)] = 232594, + [SMALL_STATE(5863)] = 232670, + [SMALL_STATE(5864)] = 232750, + [SMALL_STATE(5865)] = 232830, + [SMALL_STATE(5866)] = 232892, + [SMALL_STATE(5867)] = 232954, + [SMALL_STATE(5868)] = 233002, + [SMALL_STATE(5869)] = 233045, + [SMALL_STATE(5870)] = 233096, + [SMALL_STATE(5871)] = 233147, + [SMALL_STATE(5872)] = 233220, + [SMALL_STATE(5873)] = 233263, + [SMALL_STATE(5874)] = 233306, + [SMALL_STATE(5875)] = 233349, + [SMALL_STATE(5876)] = 233392, + [SMALL_STATE(5877)] = 233467, + [SMALL_STATE(5878)] = 233512, + [SMALL_STATE(5879)] = 233587, + [SMALL_STATE(5880)] = 233662, + [SMALL_STATE(5881)] = 233737, + [SMALL_STATE(5882)] = 233812, + [SMALL_STATE(5883)] = 233887, + [SMALL_STATE(5884)] = 233962, + [SMALL_STATE(5885)] = 234035, + [SMALL_STATE(5886)] = 234096, + [SMALL_STATE(5887)] = 234157, + [SMALL_STATE(5888)] = 234218, + [SMALL_STATE(5889)] = 234279, + [SMALL_STATE(5890)] = 234352, + [SMALL_STATE(5891)] = 234395, + [SMALL_STATE(5892)] = 234438, + [SMALL_STATE(5893)] = 234511, + [SMALL_STATE(5894)] = 234554, + [SMALL_STATE(5895)] = 234627, + [SMALL_STATE(5896)] = 234670, + [SMALL_STATE(5897)] = 234715, + [SMALL_STATE(5898)] = 234790, + [SMALL_STATE(5899)] = 234871, + [SMALL_STATE(5900)] = 234944, + [SMALL_STATE(5901)] = 235019, + [SMALL_STATE(5902)] = 235062, + [SMALL_STATE(5903)] = 235137, + [SMALL_STATE(5904)] = 235210, + [SMALL_STATE(5905)] = 235253, + [SMALL_STATE(5906)] = 235314, + [SMALL_STATE(5907)] = 235387, + [SMALL_STATE(5908)] = 235460, + [SMALL_STATE(5909)] = 235533, + [SMALL_STATE(5910)] = 235606, + [SMALL_STATE(5911)] = 235673, + [SMALL_STATE(5912)] = 235724, + [SMALL_STATE(5913)] = 235791, + [SMALL_STATE(5914)] = 235866, + [SMALL_STATE(5915)] = 235939, + [SMALL_STATE(5916)] = 236014, + [SMALL_STATE(5917)] = 236089, + [SMALL_STATE(5918)] = 236170, + [SMALL_STATE(5919)] = 236243, + [SMALL_STATE(5920)] = 236316, + [SMALL_STATE(5921)] = 236367, + [SMALL_STATE(5922)] = 236440, + [SMALL_STATE(5923)] = 236515, + [SMALL_STATE(5924)] = 236558, + [SMALL_STATE(5925)] = 236619, + [SMALL_STATE(5926)] = 236692, + [SMALL_STATE(5927)] = 236735, + [SMALL_STATE(5928)] = 236810, + [SMALL_STATE(5929)] = 236885, + [SMALL_STATE(5930)] = 236958, + [SMALL_STATE(5931)] = 237032, + [SMALL_STATE(5932)] = 237082, + [SMALL_STATE(5933)] = 237134, + [SMALL_STATE(5934)] = 237172, + [SMALL_STATE(5935)] = 237224, + [SMALL_STATE(5936)] = 237298, + [SMALL_STATE(5937)] = 237336, + [SMALL_STATE(5938)] = 237388, + [SMALL_STATE(5939)] = 237440, + [SMALL_STATE(5940)] = 237514, + [SMALL_STATE(5941)] = 237588, + [SMALL_STATE(5942)] = 237640, + [SMALL_STATE(5943)] = 237714, + [SMALL_STATE(5944)] = 237788, + [SMALL_STATE(5945)] = 237862, + [SMALL_STATE(5946)] = 237936, + [SMALL_STATE(5947)] = 237988, + [SMALL_STATE(5948)] = 238040, + [SMALL_STATE(5949)] = 238092, + [SMALL_STATE(5950)] = 238136, + [SMALL_STATE(5951)] = 238188, + [SMALL_STATE(5952)] = 238240, + [SMALL_STATE(5953)] = 238292, + [SMALL_STATE(5954)] = 238366, + [SMALL_STATE(5955)] = 238440, + [SMALL_STATE(5956)] = 238478, + [SMALL_STATE(5957)] = 238552, + [SMALL_STATE(5958)] = 238626, + [SMALL_STATE(5959)] = 238706, + [SMALL_STATE(5960)] = 238780, + [SMALL_STATE(5961)] = 238854, + [SMALL_STATE(5962)] = 238928, + [SMALL_STATE(5963)] = 238980, + [SMALL_STATE(5964)] = 239020, + [SMALL_STATE(5965)] = 239072, + [SMALL_STATE(5966)] = 239146, + [SMALL_STATE(5967)] = 239220, + [SMALL_STATE(5968)] = 239272, + [SMALL_STATE(5969)] = 239342, + [SMALL_STATE(5970)] = 239380, + [SMALL_STATE(5971)] = 239418, + [SMALL_STATE(5972)] = 239470, + [SMALL_STATE(5973)] = 239550, + [SMALL_STATE(5974)] = 239624, + [SMALL_STATE(5975)] = 239676, + [SMALL_STATE(5976)] = 239736, + [SMALL_STATE(5977)] = 239810, + [SMALL_STATE(5978)] = 239884, + [SMALL_STATE(5979)] = 239958, + [SMALL_STATE(5980)] = 240032, + [SMALL_STATE(5981)] = 240106, + [SMALL_STATE(5982)] = 240180, + [SMALL_STATE(5983)] = 240254, + [SMALL_STATE(5984)] = 240328, + [SMALL_STATE(5985)] = 240380, + [SMALL_STATE(5986)] = 240454, + [SMALL_STATE(5987)] = 240514, + [SMALL_STATE(5988)] = 240564, + [SMALL_STATE(5989)] = 240616, + [SMALL_STATE(5990)] = 240690, + [SMALL_STATE(5991)] = 240764, + [SMALL_STATE(5992)] = 240816, + [SMALL_STATE(5993)] = 240890, + [SMALL_STATE(5994)] = 240928, + [SMALL_STATE(5995)] = 241002, + [SMALL_STATE(5996)] = 241076, + [SMALL_STATE(5997)] = 241150, + [SMALL_STATE(5998)] = 241224, + [SMALL_STATE(5999)] = 241298, + [SMALL_STATE(6000)] = 241372, + [SMALL_STATE(6001)] = 241446, + [SMALL_STATE(6002)] = 241520, + [SMALL_STATE(6003)] = 241580, + [SMALL_STATE(6004)] = 241618, + [SMALL_STATE(6005)] = 241698, + [SMALL_STATE(6006)] = 241772, + [SMALL_STATE(6007)] = 241846, + [SMALL_STATE(6008)] = 241896, + [SMALL_STATE(6009)] = 241956, + [SMALL_STATE(6010)] = 242030, + [SMALL_STATE(6011)] = 242104, + [SMALL_STATE(6012)] = 242178, + [SMALL_STATE(6013)] = 242252, + [SMALL_STATE(6014)] = 242304, + [SMALL_STATE(6015)] = 242342, + [SMALL_STATE(6016)] = 242416, + [SMALL_STATE(6017)] = 242490, + [SMALL_STATE(6018)] = 242542, + [SMALL_STATE(6019)] = 242616, + [SMALL_STATE(6020)] = 242690, + [SMALL_STATE(6021)] = 242764, + [SMALL_STATE(6022)] = 242838, + [SMALL_STATE(6023)] = 242882, + [SMALL_STATE(6024)] = 242962, + [SMALL_STATE(6025)] = 243022, + [SMALL_STATE(6026)] = 243096, + [SMALL_STATE(6027)] = 243148, + [SMALL_STATE(6028)] = 243208, + [SMALL_STATE(6029)] = 243260, + [SMALL_STATE(6030)] = 243334, + [SMALL_STATE(6031)] = 243386, + [SMALL_STATE(6032)] = 243438, + [SMALL_STATE(6033)] = 243512, + [SMALL_STATE(6034)] = 243586, + [SMALL_STATE(6035)] = 243660, + [SMALL_STATE(6036)] = 243698, + [SMALL_STATE(6037)] = 243750, + [SMALL_STATE(6038)] = 243824, + [SMALL_STATE(6039)] = 243884, + [SMALL_STATE(6040)] = 243944, + [SMALL_STATE(6041)] = 243996, + [SMALL_STATE(6042)] = 244070, + [SMALL_STATE(6043)] = 244144, + [SMALL_STATE(6044)] = 244218, + [SMALL_STATE(6045)] = 244292, + [SMALL_STATE(6046)] = 244373, + [SMALL_STATE(6047)] = 244454, + [SMALL_STATE(6048)] = 244535, + [SMALL_STATE(6049)] = 244572, + [SMALL_STATE(6050)] = 244639, + [SMALL_STATE(6051)] = 244706, + [SMALL_STATE(6052)] = 244773, + [SMALL_STATE(6053)] = 244840, + [SMALL_STATE(6054)] = 244921, + [SMALL_STATE(6055)] = 244958, + [SMALL_STATE(6056)] = 245003, + [SMALL_STATE(6057)] = 245084, + [SMALL_STATE(6058)] = 245165, + [SMALL_STATE(6059)] = 245246, + [SMALL_STATE(6060)] = 245327, + [SMALL_STATE(6061)] = 245376, + [SMALL_STATE(6062)] = 245443, + [SMALL_STATE(6063)] = 245480, + [SMALL_STATE(6064)] = 245517, + [SMALL_STATE(6065)] = 245598, + [SMALL_STATE(6066)] = 245665, + [SMALL_STATE(6067)] = 245732, + [SMALL_STATE(6068)] = 245791, + [SMALL_STATE(6069)] = 245872, + [SMALL_STATE(6070)] = 245953, + [SMALL_STATE(6071)] = 246034, + [SMALL_STATE(6072)] = 246115, + [SMALL_STATE(6073)] = 246196, + [SMALL_STATE(6074)] = 246263, + [SMALL_STATE(6075)] = 246300, + [SMALL_STATE(6076)] = 246381, + [SMALL_STATE(6077)] = 246448, + [SMALL_STATE(6078)] = 246485, + [SMALL_STATE(6079)] = 246522, + [SMALL_STATE(6080)] = 246559, + [SMALL_STATE(6081)] = 246596, + [SMALL_STATE(6082)] = 246633, + [SMALL_STATE(6083)] = 246714, + [SMALL_STATE(6084)] = 246795, + [SMALL_STATE(6085)] = 246876, + [SMALL_STATE(6086)] = 246913, + [SMALL_STATE(6087)] = 246950, + [SMALL_STATE(6088)] = 247031, + [SMALL_STATE(6089)] = 247098, + [SMALL_STATE(6090)] = 247179, + [SMALL_STATE(6091)] = 247260, + [SMALL_STATE(6092)] = 247297, + [SMALL_STATE(6093)] = 247378, + [SMALL_STATE(6094)] = 247459, + [SMALL_STATE(6095)] = 247540, + [SMALL_STATE(6096)] = 247621, + [SMALL_STATE(6097)] = 247702, + [SMALL_STATE(6098)] = 247747, + [SMALL_STATE(6099)] = 247796, + [SMALL_STATE(6100)] = 247877, + [SMALL_STATE(6101)] = 247944, + [SMALL_STATE(6102)] = 248025, + [SMALL_STATE(6103)] = 248062, + [SMALL_STATE(6104)] = 248143, + [SMALL_STATE(6105)] = 248224, + [SMALL_STATE(6106)] = 248305, + [SMALL_STATE(6107)] = 248386, + [SMALL_STATE(6108)] = 248453, + [SMALL_STATE(6109)] = 248534, + [SMALL_STATE(6110)] = 248615, + [SMALL_STATE(6111)] = 248682, + [SMALL_STATE(6112)] = 248763, + [SMALL_STATE(6113)] = 248844, + [SMALL_STATE(6114)] = 248925, + [SMALL_STATE(6115)] = 249006, + [SMALL_STATE(6116)] = 249087, + [SMALL_STATE(6117)] = 249168, + [SMALL_STATE(6118)] = 249249, + [SMALL_STATE(6119)] = 249330, + [SMALL_STATE(6120)] = 249411, + [SMALL_STATE(6121)] = 249478, + [SMALL_STATE(6122)] = 249559, + [SMALL_STATE(6123)] = 249632, + [SMALL_STATE(6124)] = 249713, + [SMALL_STATE(6125)] = 249794, + [SMALL_STATE(6126)] = 249853, + [SMALL_STATE(6127)] = 249934, + [SMALL_STATE(6128)] = 250007, + [SMALL_STATE(6129)] = 250044, + [SMALL_STATE(6130)] = 250125, + [SMALL_STATE(6131)] = 250206, + [SMALL_STATE(6132)] = 250255, + [SMALL_STATE(6133)] = 250304, + [SMALL_STATE(6134)] = 250385, + [SMALL_STATE(6135)] = 250466, + [SMALL_STATE(6136)] = 250503, + [SMALL_STATE(6137)] = 250576, + [SMALL_STATE(6138)] = 250613, + [SMALL_STATE(6139)] = 250686, + [SMALL_STATE(6140)] = 250767, + [SMALL_STATE(6141)] = 250848, + [SMALL_STATE(6142)] = 250929, + [SMALL_STATE(6143)] = 251010, + [SMALL_STATE(6144)] = 251091, + [SMALL_STATE(6145)] = 251172, + [SMALL_STATE(6146)] = 251253, + [SMALL_STATE(6147)] = 251334, + [SMALL_STATE(6148)] = 251415, + [SMALL_STATE(6149)] = 251496, + [SMALL_STATE(6150)] = 251577, + [SMALL_STATE(6151)] = 251636, + [SMALL_STATE(6152)] = 251717, + [SMALL_STATE(6153)] = 251754, + [SMALL_STATE(6154)] = 251791, + [SMALL_STATE(6155)] = 251872, + [SMALL_STATE(6156)] = 251909, + [SMALL_STATE(6157)] = 251976, + [SMALL_STATE(6158)] = 252057, + [SMALL_STATE(6159)] = 252138, + [SMALL_STATE(6160)] = 252219, + [SMALL_STATE(6161)] = 252300, + [SMALL_STATE(6162)] = 252381, + [SMALL_STATE(6163)] = 252462, + [SMALL_STATE(6164)] = 252543, + [SMALL_STATE(6165)] = 252580, + [SMALL_STATE(6166)] = 252661, + [SMALL_STATE(6167)] = 252742, + [SMALL_STATE(6168)] = 252823, + [SMALL_STATE(6169)] = 252904, + [SMALL_STATE(6170)] = 252985, + [SMALL_STATE(6171)] = 253066, + [SMALL_STATE(6172)] = 253147, + [SMALL_STATE(6173)] = 253228, + [SMALL_STATE(6174)] = 253309, + [SMALL_STATE(6175)] = 253346, + [SMALL_STATE(6176)] = 253413, + [SMALL_STATE(6177)] = 253450, + [SMALL_STATE(6178)] = 253531, + [SMALL_STATE(6179)] = 253612, + [SMALL_STATE(6180)] = 253693, + [SMALL_STATE(6181)] = 253760, + [SMALL_STATE(6182)] = 253841, + [SMALL_STATE(6183)] = 253908, + [SMALL_STATE(6184)] = 253989, + [SMALL_STATE(6185)] = 254070, + [SMALL_STATE(6186)] = 254137, + [SMALL_STATE(6187)] = 254218, + [SMALL_STATE(6188)] = 254277, + [SMALL_STATE(6189)] = 254358, + [SMALL_STATE(6190)] = 254439, + [SMALL_STATE(6191)] = 254506, + [SMALL_STATE(6192)] = 254587, + [SMALL_STATE(6193)] = 254624, + [SMALL_STATE(6194)] = 254661, + [SMALL_STATE(6195)] = 254742, + [SMALL_STATE(6196)] = 254823, + [SMALL_STATE(6197)] = 254904, + [SMALL_STATE(6198)] = 254985, + [SMALL_STATE(6199)] = 255052, + [SMALL_STATE(6200)] = 255089, + [SMALL_STATE(6201)] = 255170, + [SMALL_STATE(6202)] = 255207, + [SMALL_STATE(6203)] = 255274, + [SMALL_STATE(6204)] = 255355, + [SMALL_STATE(6205)] = 255392, + [SMALL_STATE(6206)] = 255429, + [SMALL_STATE(6207)] = 255510, + [SMALL_STATE(6208)] = 255577, + [SMALL_STATE(6209)] = 255614, + [SMALL_STATE(6210)] = 255695, + [SMALL_STATE(6211)] = 255744, + [SMALL_STATE(6212)] = 255825, + [SMALL_STATE(6213)] = 255903, + [SMALL_STATE(6214)] = 255975, + [SMALL_STATE(6215)] = 256039, + [SMALL_STATE(6216)] = 256117, + [SMALL_STATE(6217)] = 256195, + [SMALL_STATE(6218)] = 256273, + [SMALL_STATE(6219)] = 256351, + [SMALL_STATE(6220)] = 256399, + [SMALL_STATE(6221)] = 256477, + [SMALL_STATE(6222)] = 256555, + [SMALL_STATE(6223)] = 256619, + [SMALL_STATE(6224)] = 256683, + [SMALL_STATE(6225)] = 256761, + [SMALL_STATE(6226)] = 256839, + [SMALL_STATE(6227)] = 256903, + [SMALL_STATE(6228)] = 256981, + [SMALL_STATE(6229)] = 257039, + [SMALL_STATE(6230)] = 257097, + [SMALL_STATE(6231)] = 257175, + [SMALL_STATE(6232)] = 257233, + [SMALL_STATE(6233)] = 257291, + [SMALL_STATE(6234)] = 257369, + [SMALL_STATE(6235)] = 257441, + [SMALL_STATE(6236)] = 257519, + [SMALL_STATE(6237)] = 257597, + [SMALL_STATE(6238)] = 257661, + [SMALL_STATE(6239)] = 257739, + [SMALL_STATE(6240)] = 257803, + [SMALL_STATE(6241)] = 257881, + [SMALL_STATE(6242)] = 257959, + [SMALL_STATE(6243)] = 258037, + [SMALL_STATE(6244)] = 258115, + [SMALL_STATE(6245)] = 258193, + [SMALL_STATE(6246)] = 258233, + [SMALL_STATE(6247)] = 258311, + [SMALL_STATE(6248)] = 258383, + [SMALL_STATE(6249)] = 258461, + [SMALL_STATE(6250)] = 258539, + [SMALL_STATE(6251)] = 258617, + [SMALL_STATE(6252)] = 258689, + [SMALL_STATE(6253)] = 258760, + [SMALL_STATE(6254)] = 258823, + [SMALL_STATE(6255)] = 258894, + [SMALL_STATE(6256)] = 258965, + [SMALL_STATE(6257)] = 259028, + [SMALL_STATE(6258)] = 259099, + [SMALL_STATE(6259)] = 259142, + [SMALL_STATE(6260)] = 259205, + [SMALL_STATE(6261)] = 259268, + [SMALL_STATE(6262)] = 259331, + [SMALL_STATE(6263)] = 259402, + [SMALL_STATE(6264)] = 259473, + [SMALL_STATE(6265)] = 259544, + [SMALL_STATE(6266)] = 259589, + [SMALL_STATE(6267)] = 259652, + [SMALL_STATE(6268)] = 259723, + [SMALL_STATE(6269)] = 259766, + [SMALL_STATE(6270)] = 259828, + [SMALL_STATE(6271)] = 259862, + [SMALL_STATE(6272)] = 259924, + [SMALL_STATE(6273)] = 259986, + [SMALL_STATE(6274)] = 260048, + [SMALL_STATE(6275)] = 260110, + [SMALL_STATE(6276)] = 260172, + [SMALL_STATE(6277)] = 260234, + [SMALL_STATE(6278)] = 260270, + [SMALL_STATE(6279)] = 260308, + [SMALL_STATE(6280)] = 260346, + [SMALL_STATE(6281)] = 260384, + [SMALL_STATE(6282)] = 260446, + [SMALL_STATE(6283)] = 260508, + [SMALL_STATE(6284)] = 260570, + [SMALL_STATE(6285)] = 260632, + [SMALL_STATE(6286)] = 260666, + [SMALL_STATE(6287)] = 260728, + [SMALL_STATE(6288)] = 260790, + [SMALL_STATE(6289)] = 260852, + [SMALL_STATE(6290)] = 260914, + [SMALL_STATE(6291)] = 260976, + [SMALL_STATE(6292)] = 261038, + [SMALL_STATE(6293)] = 261076, + [SMALL_STATE(6294)] = 261138, + [SMALL_STATE(6295)] = 261176, + [SMALL_STATE(6296)] = 261220, + [SMALL_STATE(6297)] = 261282, + [SMALL_STATE(6298)] = 261320, + [SMALL_STATE(6299)] = 261358, + [SMALL_STATE(6300)] = 261420, + [SMALL_STATE(6301)] = 261482, + [SMALL_STATE(6302)] = 261520, + [SMALL_STATE(6303)] = 261564, + [SMALL_STATE(6304)] = 261626, + [SMALL_STATE(6305)] = 261668, + [SMALL_STATE(6306)] = 261730, + [SMALL_STATE(6307)] = 261792, + [SMALL_STATE(6308)] = 261857, + [SMALL_STATE(6309)] = 261922, + [SMALL_STATE(6310)] = 261987, + [SMALL_STATE(6311)] = 262024, + [SMALL_STATE(6312)] = 262061, + [SMALL_STATE(6313)] = 262098, + [SMALL_STATE(6314)] = 262135, + [SMALL_STATE(6315)] = 262172, + [SMALL_STATE(6316)] = 262237, + [SMALL_STATE(6317)] = 262302, + [SMALL_STATE(6318)] = 262367, + [SMALL_STATE(6319)] = 262432, + [SMALL_STATE(6320)] = 262469, + [SMALL_STATE(6321)] = 262530, + [SMALL_STATE(6322)] = 262567, + [SMALL_STATE(6323)] = 262628, + [SMALL_STATE(6324)] = 262689, + [SMALL_STATE(6325)] = 262750, + [SMALL_STATE(6326)] = 262787, + [SMALL_STATE(6327)] = 262824, + [SMALL_STATE(6328)] = 262885, + [SMALL_STATE(6329)] = 262946, + [SMALL_STATE(6330)] = 262983, + [SMALL_STATE(6331)] = 263044, + [SMALL_STATE(6332)] = 263105, + [SMALL_STATE(6333)] = 263170, + [SMALL_STATE(6334)] = 263231, + [SMALL_STATE(6335)] = 263268, + [SMALL_STATE(6336)] = 263307, + [SMALL_STATE(6337)] = 263368, + [SMALL_STATE(6338)] = 263429, + [SMALL_STATE(6339)] = 263464, + [SMALL_STATE(6340)] = 263501, + [SMALL_STATE(6341)] = 263566, + [SMALL_STATE(6342)] = 263627, + [SMALL_STATE(6343)] = 263692, + [SMALL_STATE(6344)] = 263757, + [SMALL_STATE(6345)] = 263822, + [SMALL_STATE(6346)] = 263882, + [SMALL_STATE(6347)] = 263942, + [SMALL_STATE(6348)] = 263990, + [SMALL_STATE(6349)] = 264038, + [SMALL_STATE(6350)] = 264098, + [SMALL_STATE(6351)] = 264158, + [SMALL_STATE(6352)] = 264206, + [SMALL_STATE(6353)] = 264266, + [SMALL_STATE(6354)] = 264302, + [SMALL_STATE(6355)] = 264362, + [SMALL_STATE(6356)] = 264421, + [SMALL_STATE(6357)] = 264480, + [SMALL_STATE(6358)] = 264539, + [SMALL_STATE(6359)] = 264598, + [SMALL_STATE(6360)] = 264629, + [SMALL_STATE(6361)] = 264664, + [SMALL_STATE(6362)] = 264711, + [SMALL_STATE(6363)] = 264770, + [SMALL_STATE(6364)] = 264829, + [SMALL_STATE(6365)] = 264864, + [SMALL_STATE(6366)] = 264922, + [SMALL_STATE(6367)] = 264978, + [SMALL_STATE(6368)] = 265034, + [SMALL_STATE(6369)] = 265090, + [SMALL_STATE(6370)] = 265146, + [SMALL_STATE(6371)] = 265184, + [SMALL_STATE(6372)] = 265240, + [SMALL_STATE(6373)] = 265296, + [SMALL_STATE(6374)] = 265352, + [SMALL_STATE(6375)] = 265410, + [SMALL_STATE(6376)] = 265466, + [SMALL_STATE(6377)] = 265524, + [SMALL_STATE(6378)] = 265580, + [SMALL_STATE(6379)] = 265636, + [SMALL_STATE(6380)] = 265692, + [SMALL_STATE(6381)] = 265748, + [SMALL_STATE(6382)] = 265804, + [SMALL_STATE(6383)] = 265860, + [SMALL_STATE(6384)] = 265916, + [SMALL_STATE(6385)] = 265972, + [SMALL_STATE(6386)] = 266028, + [SMALL_STATE(6387)] = 266084, + [SMALL_STATE(6388)] = 266140, + [SMALL_STATE(6389)] = 266196, + [SMALL_STATE(6390)] = 266252, + [SMALL_STATE(6391)] = 266308, + [SMALL_STATE(6392)] = 266364, + [SMALL_STATE(6393)] = 266420, + [SMALL_STATE(6394)] = 266476, + [SMALL_STATE(6395)] = 266532, + [SMALL_STATE(6396)] = 266588, + [SMALL_STATE(6397)] = 266644, + [SMALL_STATE(6398)] = 266700, + [SMALL_STATE(6399)] = 266756, + [SMALL_STATE(6400)] = 266812, + [SMALL_STATE(6401)] = 266870, + [SMALL_STATE(6402)] = 266926, + [SMALL_STATE(6403)] = 266984, + [SMALL_STATE(6404)] = 267040, + [SMALL_STATE(6405)] = 267098, + [SMALL_STATE(6406)] = 267156, + [SMALL_STATE(6407)] = 267190, + [SMALL_STATE(6408)] = 267246, + [SMALL_STATE(6409)] = 267302, + [SMALL_STATE(6410)] = 267358, + [SMALL_STATE(6411)] = 267416, + [SMALL_STATE(6412)] = 267472, + [SMALL_STATE(6413)] = 267536, + [SMALL_STATE(6414)] = 267592, + [SMALL_STATE(6415)] = 267648, + [SMALL_STATE(6416)] = 267704, + [SMALL_STATE(6417)] = 267760, + [SMALL_STATE(6418)] = 267806, + [SMALL_STATE(6419)] = 267852, + [SMALL_STATE(6420)] = 267908, + [SMALL_STATE(6421)] = 267964, + [SMALL_STATE(6422)] = 268028, + [SMALL_STATE(6423)] = 268084, + [SMALL_STATE(6424)] = 268140, + [SMALL_STATE(6425)] = 268196, + [SMALL_STATE(6426)] = 268252, + [SMALL_STATE(6427)] = 268310, + [SMALL_STATE(6428)] = 268366, + [SMALL_STATE(6429)] = 268424, + [SMALL_STATE(6430)] = 268480, + [SMALL_STATE(6431)] = 268536, + [SMALL_STATE(6432)] = 268592, + [SMALL_STATE(6433)] = 268648, + [SMALL_STATE(6434)] = 268706, + [SMALL_STATE(6435)] = 268762, + [SMALL_STATE(6436)] = 268818, + [SMALL_STATE(6437)] = 268874, + [SMALL_STATE(6438)] = 268930, + [SMALL_STATE(6439)] = 268968, + [SMALL_STATE(6440)] = 269032, + [SMALL_STATE(6441)] = 269088, + [SMALL_STATE(6442)] = 269144, + [SMALL_STATE(6443)] = 269182, + [SMALL_STATE(6444)] = 269220, + [SMALL_STATE(6445)] = 269284, + [SMALL_STATE(6446)] = 269314, + [SMALL_STATE(6447)] = 269372, + [SMALL_STATE(6448)] = 269433, + [SMALL_STATE(6449)] = 269494, + [SMALL_STATE(6450)] = 269555, + [SMALL_STATE(6451)] = 269588, + [SMALL_STATE(6452)] = 269649, + [SMALL_STATE(6453)] = 269710, + [SMALL_STATE(6454)] = 269771, + [SMALL_STATE(6455)] = 269832, + [SMALL_STATE(6456)] = 269893, + [SMALL_STATE(6457)] = 269954, + [SMALL_STATE(6458)] = 270015, + [SMALL_STATE(6459)] = 270060, + [SMALL_STATE(6460)] = 270121, + [SMALL_STATE(6461)] = 270182, + [SMALL_STATE(6462)] = 270243, + [SMALL_STATE(6463)] = 270304, + [SMALL_STATE(6464)] = 270365, + [SMALL_STATE(6465)] = 270410, + [SMALL_STATE(6466)] = 270471, + [SMALL_STATE(6467)] = 270532, + [SMALL_STATE(6468)] = 270593, + [SMALL_STATE(6469)] = 270654, + [SMALL_STATE(6470)] = 270715, + [SMALL_STATE(6471)] = 270776, + [SMALL_STATE(6472)] = 270837, + [SMALL_STATE(6473)] = 270898, + [SMALL_STATE(6474)] = 270959, + [SMALL_STATE(6475)] = 271020, + [SMALL_STATE(6476)] = 271081, + [SMALL_STATE(6477)] = 271142, + [SMALL_STATE(6478)] = 271203, + [SMALL_STATE(6479)] = 271264, + [SMALL_STATE(6480)] = 271325, + [SMALL_STATE(6481)] = 271380, + [SMALL_STATE(6482)] = 271441, + [SMALL_STATE(6483)] = 271502, + [SMALL_STATE(6484)] = 271563, + [SMALL_STATE(6485)] = 271624, + [SMALL_STATE(6486)] = 271685, + [SMALL_STATE(6487)] = 271746, + [SMALL_STATE(6488)] = 271807, + [SMALL_STATE(6489)] = 271868, + [SMALL_STATE(6490)] = 271929, + [SMALL_STATE(6491)] = 271990, + [SMALL_STATE(6492)] = 272051, + [SMALL_STATE(6493)] = 272112, + [SMALL_STATE(6494)] = 272173, + [SMALL_STATE(6495)] = 272234, + [SMALL_STATE(6496)] = 272295, + [SMALL_STATE(6497)] = 272356, + [SMALL_STATE(6498)] = 272417, + [SMALL_STATE(6499)] = 272478, + [SMALL_STATE(6500)] = 272539, + [SMALL_STATE(6501)] = 272600, + [SMALL_STATE(6502)] = 272661, + [SMALL_STATE(6503)] = 272716, + [SMALL_STATE(6504)] = 272777, + [SMALL_STATE(6505)] = 272838, + [SMALL_STATE(6506)] = 272899, + [SMALL_STATE(6507)] = 272960, + [SMALL_STATE(6508)] = 273021, + [SMALL_STATE(6509)] = 273082, + [SMALL_STATE(6510)] = 273143, + [SMALL_STATE(6511)] = 273204, + [SMALL_STATE(6512)] = 273265, + [SMALL_STATE(6513)] = 273326, + [SMALL_STATE(6514)] = 273387, + [SMALL_STATE(6515)] = 273438, + [SMALL_STATE(6516)] = 273499, + [SMALL_STATE(6517)] = 273544, + [SMALL_STATE(6518)] = 273605, + [SMALL_STATE(6519)] = 273666, + [SMALL_STATE(6520)] = 273727, + [SMALL_STATE(6521)] = 273788, + [SMALL_STATE(6522)] = 273849, + [SMALL_STATE(6523)] = 273910, + [SMALL_STATE(6524)] = 273971, + [SMALL_STATE(6525)] = 274032, + [SMALL_STATE(6526)] = 274093, + [SMALL_STATE(6527)] = 274154, + [SMALL_STATE(6528)] = 274215, + [SMALL_STATE(6529)] = 274260, + [SMALL_STATE(6530)] = 274321, + [SMALL_STATE(6531)] = 274382, + [SMALL_STATE(6532)] = 274443, + [SMALL_STATE(6533)] = 274504, + [SMALL_STATE(6534)] = 274565, + [SMALL_STATE(6535)] = 274626, + [SMALL_STATE(6536)] = 274687, + [SMALL_STATE(6537)] = 274748, + [SMALL_STATE(6538)] = 274809, + [SMALL_STATE(6539)] = 274870, + [SMALL_STATE(6540)] = 274931, + [SMALL_STATE(6541)] = 274992, + [SMALL_STATE(6542)] = 275053, + [SMALL_STATE(6543)] = 275114, + [SMALL_STATE(6544)] = 275175, + [SMALL_STATE(6545)] = 275236, + [SMALL_STATE(6546)] = 275297, + [SMALL_STATE(6547)] = 275358, + [SMALL_STATE(6548)] = 275419, + [SMALL_STATE(6549)] = 275480, + [SMALL_STATE(6550)] = 275541, + [SMALL_STATE(6551)] = 275602, + [SMALL_STATE(6552)] = 275663, + [SMALL_STATE(6553)] = 275724, + [SMALL_STATE(6554)] = 275785, + [SMALL_STATE(6555)] = 275846, + [SMALL_STATE(6556)] = 275907, + [SMALL_STATE(6557)] = 275968, + [SMALL_STATE(6558)] = 276029, + [SMALL_STATE(6559)] = 276090, + [SMALL_STATE(6560)] = 276151, + [SMALL_STATE(6561)] = 276212, + [SMALL_STATE(6562)] = 276273, + [SMALL_STATE(6563)] = 276334, + [SMALL_STATE(6564)] = 276395, + [SMALL_STATE(6565)] = 276456, + [SMALL_STATE(6566)] = 276517, + [SMALL_STATE(6567)] = 276578, + [SMALL_STATE(6568)] = 276639, + [SMALL_STATE(6569)] = 276700, + [SMALL_STATE(6570)] = 276761, + [SMALL_STATE(6571)] = 276816, + [SMALL_STATE(6572)] = 276877, + [SMALL_STATE(6573)] = 276938, + [SMALL_STATE(6574)] = 276999, + [SMALL_STATE(6575)] = 277060, + [SMALL_STATE(6576)] = 277121, + [SMALL_STATE(6577)] = 277173, + [SMALL_STATE(6578)] = 277201, + [SMALL_STATE(6579)] = 277233, + [SMALL_STATE(6580)] = 277261, + [SMALL_STATE(6581)] = 277303, + [SMALL_STATE(6582)] = 277345, + [SMALL_STATE(6583)] = 277397, + [SMALL_STATE(6584)] = 277447, + [SMALL_STATE(6585)] = 277489, + [SMALL_STATE(6586)] = 277541, + [SMALL_STATE(6587)] = 277583, + [SMALL_STATE(6588)] = 277625, + [SMALL_STATE(6589)] = 277667, + [SMALL_STATE(6590)] = 277709, + [SMALL_STATE(6591)] = 277751, + [SMALL_STATE(6592)] = 277779, + [SMALL_STATE(6593)] = 277821, + [SMALL_STATE(6594)] = 277873, + [SMALL_STATE(6595)] = 277925, + [SMALL_STATE(6596)] = 277977, + [SMALL_STATE(6597)] = 278005, + [SMALL_STATE(6598)] = 278053, + [SMALL_STATE(6599)] = 278109, + [SMALL_STATE(6600)] = 278151, + [SMALL_STATE(6601)] = 278197, + [SMALL_STATE(6602)] = 278243, + [SMALL_STATE(6603)] = 278287, + [SMALL_STATE(6604)] = 278329, + [SMALL_STATE(6605)] = 278369, + [SMALL_STATE(6606)] = 278405, + [SMALL_STATE(6607)] = 278461, + [SMALL_STATE(6608)] = 278489, + [SMALL_STATE(6609)] = 278531, + [SMALL_STATE(6610)] = 278573, + [SMALL_STATE(6611)] = 278615, + [SMALL_STATE(6612)] = 278643, + [SMALL_STATE(6613)] = 278685, + [SMALL_STATE(6614)] = 278727, + [SMALL_STATE(6615)] = 278769, + [SMALL_STATE(6616)] = 278821, + [SMALL_STATE(6617)] = 278851, + [SMALL_STATE(6618)] = 278893, + [SMALL_STATE(6619)] = 278949, + [SMALL_STATE(6620)] = 278977, + [SMALL_STATE(6621)] = 279029, + [SMALL_STATE(6622)] = 279057, + [SMALL_STATE(6623)] = 279099, + [SMALL_STATE(6624)] = 279141, + [SMALL_STATE(6625)] = 279183, + [SMALL_STATE(6626)] = 279225, + [SMALL_STATE(6627)] = 279253, + [SMALL_STATE(6628)] = 279309, + [SMALL_STATE(6629)] = 279341, + [SMALL_STATE(6630)] = 279383, + [SMALL_STATE(6631)] = 279435, + [SMALL_STATE(6632)] = 279487, + [SMALL_STATE(6633)] = 279543, + [SMALL_STATE(6634)] = 279585, + [SMALL_STATE(6635)] = 279641, + [SMALL_STATE(6636)] = 279673, + [SMALL_STATE(6637)] = 279717, + [SMALL_STATE(6638)] = 279751, + [SMALL_STATE(6639)] = 279803, + [SMALL_STATE(6640)] = 279859, + [SMALL_STATE(6641)] = 279887, + [SMALL_STATE(6642)] = 279915, + [SMALL_STATE(6643)] = 279943, + [SMALL_STATE(6644)] = 279975, + [SMALL_STATE(6645)] = 280031, + [SMALL_STATE(6646)] = 280073, + [SMALL_STATE(6647)] = 280115, + [SMALL_STATE(6648)] = 280157, + [SMALL_STATE(6649)] = 280199, + [SMALL_STATE(6650)] = 280241, + [SMALL_STATE(6651)] = 280293, + [SMALL_STATE(6652)] = 280345, + [SMALL_STATE(6653)] = 280387, + [SMALL_STATE(6654)] = 280415, + [SMALL_STATE(6655)] = 280447, + [SMALL_STATE(6656)] = 280475, + [SMALL_STATE(6657)] = 280527, + [SMALL_STATE(6658)] = 280579, + [SMALL_STATE(6659)] = 280635, + [SMALL_STATE(6660)] = 280663, + [SMALL_STATE(6661)] = 280691, + [SMALL_STATE(6662)] = 280733, + [SMALL_STATE(6663)] = 280775, + [SMALL_STATE(6664)] = 280817, + [SMALL_STATE(6665)] = 280859, + [SMALL_STATE(6666)] = 280911, + [SMALL_STATE(6667)] = 280953, + [SMALL_STATE(6668)] = 280995, + [SMALL_STATE(6669)] = 281037, + [SMALL_STATE(6670)] = 281079, + [SMALL_STATE(6671)] = 281121, + [SMALL_STATE(6672)] = 281163, + [SMALL_STATE(6673)] = 281205, + [SMALL_STATE(6674)] = 281257, + [SMALL_STATE(6675)] = 281299, + [SMALL_STATE(6676)] = 281327, + [SMALL_STATE(6677)] = 281354, + [SMALL_STATE(6678)] = 281395, + [SMALL_STATE(6679)] = 281422, + [SMALL_STATE(6680)] = 281453, + [SMALL_STATE(6681)] = 281498, + [SMALL_STATE(6682)] = 281525, + [SMALL_STATE(6683)] = 281552, + [SMALL_STATE(6684)] = 281593, + [SMALL_STATE(6685)] = 281646, + [SMALL_STATE(6686)] = 281687, + [SMALL_STATE(6687)] = 281724, + [SMALL_STATE(6688)] = 281765, + [SMALL_STATE(6689)] = 281806, + [SMALL_STATE(6690)] = 281847, + [SMALL_STATE(6691)] = 281888, + [SMALL_STATE(6692)] = 281929, + [SMALL_STATE(6693)] = 281970, + [SMALL_STATE(6694)] = 282011, + [SMALL_STATE(6695)] = 282052, + [SMALL_STATE(6696)] = 282093, + [SMALL_STATE(6697)] = 282134, + [SMALL_STATE(6698)] = 282175, + [SMALL_STATE(6699)] = 282216, + [SMALL_STATE(6700)] = 282257, + [SMALL_STATE(6701)] = 282288, + [SMALL_STATE(6702)] = 282317, + [SMALL_STATE(6703)] = 282344, + [SMALL_STATE(6704)] = 282375, + [SMALL_STATE(6705)] = 282422, + [SMALL_STATE(6706)] = 282453, + [SMALL_STATE(6707)] = 282480, + [SMALL_STATE(6708)] = 282517, + [SMALL_STATE(6709)] = 282560, + [SMALL_STATE(6710)] = 282605, + [SMALL_STATE(6711)] = 282652, + [SMALL_STATE(6712)] = 282701, + [SMALL_STATE(6713)] = 282742, + [SMALL_STATE(6714)] = 282779, + [SMALL_STATE(6715)] = 282826, + [SMALL_STATE(6716)] = 282871, + [SMALL_STATE(6717)] = 282912, + [SMALL_STATE(6718)] = 282949, + [SMALL_STATE(6719)] = 282976, + [SMALL_STATE(6720)] = 283017, + [SMALL_STATE(6721)] = 283054, + [SMALL_STATE(6722)] = 283091, + [SMALL_STATE(6723)] = 283132, + [SMALL_STATE(6724)] = 283169, + [SMALL_STATE(6725)] = 283198, + [SMALL_STATE(6726)] = 283225, + [SMALL_STATE(6727)] = 283266, + [SMALL_STATE(6728)] = 283307, + [SMALL_STATE(6729)] = 283348, + [SMALL_STATE(6730)] = 283389, + [SMALL_STATE(6731)] = 283434, + [SMALL_STATE(6732)] = 283479, + [SMALL_STATE(6733)] = 283516, + [SMALL_STATE(6734)] = 283547, + [SMALL_STATE(6735)] = 283584, + [SMALL_STATE(6736)] = 283629, + [SMALL_STATE(6737)] = 283656, + [SMALL_STATE(6738)] = 283683, + [SMALL_STATE(6739)] = 283728, + [SMALL_STATE(6740)] = 283765, + [SMALL_STATE(6741)] = 283812, + [SMALL_STATE(6742)] = 283849, + [SMALL_STATE(6743)] = 283876, + [SMALL_STATE(6744)] = 283903, + [SMALL_STATE(6745)] = 283932, + [SMALL_STATE(6746)] = 283959, + [SMALL_STATE(6747)] = 283994, + [SMALL_STATE(6748)] = 284041, + [SMALL_STATE(6749)] = 284086, + [SMALL_STATE(6750)] = 284113, + [SMALL_STATE(6751)] = 284150, + [SMALL_STATE(6752)] = 284187, + [SMALL_STATE(6753)] = 284224, + [SMALL_STATE(6754)] = 284255, + [SMALL_STATE(6755)] = 284286, + [SMALL_STATE(6756)] = 284333, + [SMALL_STATE(6757)] = 284360, + [SMALL_STATE(6758)] = 284387, + [SMALL_STATE(6759)] = 284434, + [SMALL_STATE(6760)] = 284479, + [SMALL_STATE(6761)] = 284516, + [SMALL_STATE(6762)] = 284547, + [SMALL_STATE(6763)] = 284596, + [SMALL_STATE(6764)] = 284633, + [SMALL_STATE(6765)] = 284678, + [SMALL_STATE(6766)] = 284705, + [SMALL_STATE(6767)] = 284732, + [SMALL_STATE(6768)] = 284769, + [SMALL_STATE(6769)] = 284802, + [SMALL_STATE(6770)] = 284839, + [SMALL_STATE(6771)] = 284884, + [SMALL_STATE(6772)] = 284911, + [SMALL_STATE(6773)] = 284956, + [SMALL_STATE(6774)] = 284993, + [SMALL_STATE(6775)] = 285030, + [SMALL_STATE(6776)] = 285067, + [SMALL_STATE(6777)] = 285106, + [SMALL_STATE(6778)] = 285159, + [SMALL_STATE(6779)] = 285204, + [SMALL_STATE(6780)] = 285249, + [SMALL_STATE(6781)] = 285292, + [SMALL_STATE(6782)] = 285319, + [SMALL_STATE(6783)] = 285346, + [SMALL_STATE(6784)] = 285373, + [SMALL_STATE(6785)] = 285400, + [SMALL_STATE(6786)] = 285447, + [SMALL_STATE(6787)] = 285494, + [SMALL_STATE(6788)] = 285521, + [SMALL_STATE(6789)] = 285568, + [SMALL_STATE(6790)] = 285609, + [SMALL_STATE(6791)] = 285636, + [SMALL_STATE(6792)] = 285689, + [SMALL_STATE(6793)] = 285734, + [SMALL_STATE(6794)] = 285787, + [SMALL_STATE(6795)] = 285832, + [SMALL_STATE(6796)] = 285859, + [SMALL_STATE(6797)] = 285886, + [SMALL_STATE(6798)] = 285931, + [SMALL_STATE(6799)] = 285973, + [SMALL_STATE(6800)] = 286011, + [SMALL_STATE(6801)] = 286049, + [SMALL_STATE(6802)] = 286087, + [SMALL_STATE(6803)] = 286129, + [SMALL_STATE(6804)] = 286181, + [SMALL_STATE(6805)] = 286207, + [SMALL_STATE(6806)] = 286233, + [SMALL_STATE(6807)] = 286271, + [SMALL_STATE(6808)] = 286309, + [SMALL_STATE(6809)] = 286347, + [SMALL_STATE(6810)] = 286385, + [SMALL_STATE(6811)] = 286423, + [SMALL_STATE(6812)] = 286460, + [SMALL_STATE(6813)] = 286485, + [SMALL_STATE(6814)] = 286524, + [SMALL_STATE(6815)] = 286549, + [SMALL_STATE(6816)] = 286574, + [SMALL_STATE(6817)] = 286623, + [SMALL_STATE(6818)] = 286672, + [SMALL_STATE(6819)] = 286721, + [SMALL_STATE(6820)] = 286758, + [SMALL_STATE(6821)] = 286795, + [SMALL_STATE(6822)] = 286844, + [SMALL_STATE(6823)] = 286869, + [SMALL_STATE(6824)] = 286918, + [SMALL_STATE(6825)] = 286955, + [SMALL_STATE(6826)] = 286992, + [SMALL_STATE(6827)] = 287029, + [SMALL_STATE(6828)] = 287078, + [SMALL_STATE(6829)] = 287115, + [SMALL_STATE(6830)] = 287152, + [SMALL_STATE(6831)] = 287201, + [SMALL_STATE(6832)] = 287250, + [SMALL_STATE(6833)] = 287299, + [SMALL_STATE(6834)] = 287336, + [SMALL_STATE(6835)] = 287373, + [SMALL_STATE(6836)] = 287398, + [SMALL_STATE(6837)] = 287447, + [SMALL_STATE(6838)] = 287496, + [SMALL_STATE(6839)] = 287545, + [SMALL_STATE(6840)] = 287582, + [SMALL_STATE(6841)] = 287619, + [SMALL_STATE(6842)] = 287656, + [SMALL_STATE(6843)] = 287695, + [SMALL_STATE(6844)] = 287732, + [SMALL_STATE(6845)] = 287781, + [SMALL_STATE(6846)] = 287818, + [SMALL_STATE(6847)] = 287859, + [SMALL_STATE(6848)] = 287908, + [SMALL_STATE(6849)] = 287945, + [SMALL_STATE(6850)] = 287970, + [SMALL_STATE(6851)] = 288009, + [SMALL_STATE(6852)] = 288034, + [SMALL_STATE(6853)] = 288059, + [SMALL_STATE(6854)] = 288108, + [SMALL_STATE(6855)] = 288147, + [SMALL_STATE(6856)] = 288196, + [SMALL_STATE(6857)] = 288237, + [SMALL_STATE(6858)] = 288274, + [SMALL_STATE(6859)] = 288323, + [SMALL_STATE(6860)] = 288372, + [SMALL_STATE(6861)] = 288411, + [SMALL_STATE(6862)] = 288438, + [SMALL_STATE(6863)] = 288463, + [SMALL_STATE(6864)] = 288512, + [SMALL_STATE(6865)] = 288561, + [SMALL_STATE(6866)] = 288600, + [SMALL_STATE(6867)] = 288625, + [SMALL_STATE(6868)] = 288650, + [SMALL_STATE(6869)] = 288699, + [SMALL_STATE(6870)] = 288748, + [SMALL_STATE(6871)] = 288797, + [SMALL_STATE(6872)] = 288846, + [SMALL_STATE(6873)] = 288895, + [SMALL_STATE(6874)] = 288946, + [SMALL_STATE(6875)] = 288985, + [SMALL_STATE(6876)] = 289024, + [SMALL_STATE(6877)] = 289063, + [SMALL_STATE(6878)] = 289102, + [SMALL_STATE(6879)] = 289127, + [SMALL_STATE(6880)] = 289152, + [SMALL_STATE(6881)] = 289201, + [SMALL_STATE(6882)] = 289226, + [SMALL_STATE(6883)] = 289251, + [SMALL_STATE(6884)] = 289276, + [SMALL_STATE(6885)] = 289325, + [SMALL_STATE(6886)] = 289350, + [SMALL_STATE(6887)] = 289399, + [SMALL_STATE(6888)] = 289438, + [SMALL_STATE(6889)] = 289477, + [SMALL_STATE(6890)] = 289516, + [SMALL_STATE(6891)] = 289555, + [SMALL_STATE(6892)] = 289592, + [SMALL_STATE(6893)] = 289617, + [SMALL_STATE(6894)] = 289642, + [SMALL_STATE(6895)] = 289679, + [SMALL_STATE(6896)] = 289718, + [SMALL_STATE(6897)] = 289755, + [SMALL_STATE(6898)] = 289794, + [SMALL_STATE(6899)] = 289843, + [SMALL_STATE(6900)] = 289870, + [SMALL_STATE(6901)] = 289907, + [SMALL_STATE(6902)] = 289956, + [SMALL_STATE(6903)] = 290005, + [SMALL_STATE(6904)] = 290042, + [SMALL_STATE(6905)] = 290067, + [SMALL_STATE(6906)] = 290092, + [SMALL_STATE(6907)] = 290130, + [SMALL_STATE(6908)] = 290154, + [SMALL_STATE(6909)] = 290186, + [SMALL_STATE(6910)] = 290226, + [SMALL_STATE(6911)] = 290248, + [SMALL_STATE(6912)] = 290290, + [SMALL_STATE(6913)] = 290330, + [SMALL_STATE(6914)] = 290372, + [SMALL_STATE(6915)] = 290414, + [SMALL_STATE(6916)] = 290452, + [SMALL_STATE(6917)] = 290494, + [SMALL_STATE(6918)] = 290532, + [SMALL_STATE(6919)] = 290572, + [SMALL_STATE(6920)] = 290614, + [SMALL_STATE(6921)] = 290646, + [SMALL_STATE(6922)] = 290688, + [SMALL_STATE(6923)] = 290728, + [SMALL_STATE(6924)] = 290768, + [SMALL_STATE(6925)] = 290790, + [SMALL_STATE(6926)] = 290830, + [SMALL_STATE(6927)] = 290872, + [SMALL_STATE(6928)] = 290912, + [SMALL_STATE(6929)] = 290954, + [SMALL_STATE(6930)] = 290994, + [SMALL_STATE(6931)] = 291032, + [SMALL_STATE(6932)] = 291072, + [SMALL_STATE(6933)] = 291104, + [SMALL_STATE(6934)] = 291126, + [SMALL_STATE(6935)] = 291164, + [SMALL_STATE(6936)] = 291194, + [SMALL_STATE(6937)] = 291234, + [SMALL_STATE(6938)] = 291276, + [SMALL_STATE(6939)] = 291316, + [SMALL_STATE(6940)] = 291338, + [SMALL_STATE(6941)] = 291364, + [SMALL_STATE(6942)] = 291402, + [SMALL_STATE(6943)] = 291444, + [SMALL_STATE(6944)] = 291478, + [SMALL_STATE(6945)] = 291516, + [SMALL_STATE(6946)] = 291550, + [SMALL_STATE(6947)] = 291582, + [SMALL_STATE(6948)] = 291614, + [SMALL_STATE(6949)] = 291656, + [SMALL_STATE(6950)] = 291678, + [SMALL_STATE(6951)] = 291720, + [SMALL_STATE(6952)] = 291760, + [SMALL_STATE(6953)] = 291782, + [SMALL_STATE(6954)] = 291824, + [SMALL_STATE(6955)] = 291846, + [SMALL_STATE(6956)] = 291888, + [SMALL_STATE(6957)] = 291928, + [SMALL_STATE(6958)] = 291960, + [SMALL_STATE(6959)] = 291982, + [SMALL_STATE(6960)] = 292012, + [SMALL_STATE(6961)] = 292054, + [SMALL_STATE(6962)] = 292096, + [SMALL_STATE(6963)] = 292138, + [SMALL_STATE(6964)] = 292160, + [SMALL_STATE(6965)] = 292182, + [SMALL_STATE(6966)] = 292212, + [SMALL_STATE(6967)] = 292254, + [SMALL_STATE(6968)] = 292292, + [SMALL_STATE(6969)] = 292314, + [SMALL_STATE(6970)] = 292354, + [SMALL_STATE(6971)] = 292388, + [SMALL_STATE(6972)] = 292432, + [SMALL_STATE(6973)] = 292472, + [SMALL_STATE(6974)] = 292494, + [SMALL_STATE(6975)] = 292536, + [SMALL_STATE(6976)] = 292576, + [SMALL_STATE(6977)] = 292616, + [SMALL_STATE(6978)] = 292658, + [SMALL_STATE(6979)] = 292698, + [SMALL_STATE(6980)] = 292730, + [SMALL_STATE(6981)] = 292772, + [SMALL_STATE(6982)] = 292802, + [SMALL_STATE(6983)] = 292844, + [SMALL_STATE(6984)] = 292870, + [SMALL_STATE(6985)] = 292912, + [SMALL_STATE(6986)] = 292944, + [SMALL_STATE(6987)] = 292978, + [SMALL_STATE(6988)] = 293006, + [SMALL_STATE(6989)] = 293048, + [SMALL_STATE(6990)] = 293088, + [SMALL_STATE(6991)] = 293110, + [SMALL_STATE(6992)] = 293152, + [SMALL_STATE(6993)] = 293192, + [SMALL_STATE(6994)] = 293224, + [SMALL_STATE(6995)] = 293258, + [SMALL_STATE(6996)] = 293292, + [SMALL_STATE(6997)] = 293314, + [SMALL_STATE(6998)] = 293354, + [SMALL_STATE(6999)] = 293384, + [SMALL_STATE(7000)] = 293418, + [SMALL_STATE(7001)] = 293458, + [SMALL_STATE(7002)] = 293498, + [SMALL_STATE(7003)] = 293540, + [SMALL_STATE(7004)] = 293580, + [SMALL_STATE(7005)] = 293622, + [SMALL_STATE(7006)] = 293662, + [SMALL_STATE(7007)] = 293684, + [SMALL_STATE(7008)] = 293706, + [SMALL_STATE(7009)] = 293732, + [SMALL_STATE(7010)] = 293774, + [SMALL_STATE(7011)] = 293806, + [SMALL_STATE(7012)] = 293837, + [SMALL_STATE(7013)] = 293872, + [SMALL_STATE(7014)] = 293903, + [SMALL_STATE(7015)] = 293934, + [SMALL_STATE(7016)] = 293965, + [SMALL_STATE(7017)] = 294000, + [SMALL_STATE(7018)] = 294021, + [SMALL_STATE(7019)] = 294064, + [SMALL_STATE(7020)] = 294095, + [SMALL_STATE(7021)] = 294126, + [SMALL_STATE(7022)] = 294147, + [SMALL_STATE(7023)] = 294190, + [SMALL_STATE(7024)] = 294211, + [SMALL_STATE(7025)] = 294254, + [SMALL_STATE(7026)] = 294297, + [SMALL_STATE(7027)] = 294328, + [SMALL_STATE(7028)] = 294359, + [SMALL_STATE(7029)] = 294390, + [SMALL_STATE(7030)] = 294433, + [SMALL_STATE(7031)] = 294464, + [SMALL_STATE(7032)] = 294507, + [SMALL_STATE(7033)] = 294538, + [SMALL_STATE(7034)] = 294581, + [SMALL_STATE(7035)] = 294604, + [SMALL_STATE(7036)] = 294627, + [SMALL_STATE(7037)] = 294656, + [SMALL_STATE(7038)] = 294687, + [SMALL_STATE(7039)] = 294716, + [SMALL_STATE(7040)] = 294745, + [SMALL_STATE(7041)] = 294776, + [SMALL_STATE(7042)] = 294805, + [SMALL_STATE(7043)] = 294834, + [SMALL_STATE(7044)] = 294855, + [SMALL_STATE(7045)] = 294884, + [SMALL_STATE(7046)] = 294919, + [SMALL_STATE(7047)] = 294962, + [SMALL_STATE(7048)] = 294991, + [SMALL_STATE(7049)] = 295018, + [SMALL_STATE(7050)] = 295039, + [SMALL_STATE(7051)] = 295060, + [SMALL_STATE(7052)] = 295081, + [SMALL_STATE(7053)] = 295116, + [SMALL_STATE(7054)] = 295159, + [SMALL_STATE(7055)] = 295190, + [SMALL_STATE(7056)] = 295211, + [SMALL_STATE(7057)] = 295232, + [SMALL_STATE(7058)] = 295253, + [SMALL_STATE(7059)] = 295296, + [SMALL_STATE(7060)] = 295339, + [SMALL_STATE(7061)] = 295370, + [SMALL_STATE(7062)] = 295405, + [SMALL_STATE(7063)] = 295440, + [SMALL_STATE(7064)] = 295479, + [SMALL_STATE(7065)] = 295522, + [SMALL_STATE(7066)] = 295553, + [SMALL_STATE(7067)] = 295584, + [SMALL_STATE(7068)] = 295605, + [SMALL_STATE(7069)] = 295626, + [SMALL_STATE(7070)] = 295655, + [SMALL_STATE(7071)] = 295686, + [SMALL_STATE(7072)] = 295707, + [SMALL_STATE(7073)] = 295750, + [SMALL_STATE(7074)] = 295771, + [SMALL_STATE(7075)] = 295802, + [SMALL_STATE(7076)] = 295831, + [SMALL_STATE(7077)] = 295852, + [SMALL_STATE(7078)] = 295881, + [SMALL_STATE(7079)] = 295902, + [SMALL_STATE(7080)] = 295931, + [SMALL_STATE(7081)] = 295960, + [SMALL_STATE(7082)] = 295989, + [SMALL_STATE(7083)] = 296032, + [SMALL_STATE(7084)] = 296061, + [SMALL_STATE(7085)] = 296090, + [SMALL_STATE(7086)] = 296119, + [SMALL_STATE(7087)] = 296148, + [SMALL_STATE(7088)] = 296177, + [SMALL_STATE(7089)] = 296206, + [SMALL_STATE(7090)] = 296235, + [SMALL_STATE(7091)] = 296264, + [SMALL_STATE(7092)] = 296299, + [SMALL_STATE(7093)] = 296342, + [SMALL_STATE(7094)] = 296373, + [SMALL_STATE(7095)] = 296394, + [SMALL_STATE(7096)] = 296425, + [SMALL_STATE(7097)] = 296466, + [SMALL_STATE(7098)] = 296497, + [SMALL_STATE(7099)] = 296526, + [SMALL_STATE(7100)] = 296567, + [SMALL_STATE(7101)] = 296588, + [SMALL_STATE(7102)] = 296619, + [SMALL_STATE(7103)] = 296650, + [SMALL_STATE(7104)] = 296671, + [SMALL_STATE(7105)] = 296692, + [SMALL_STATE(7106)] = 296735, + [SMALL_STATE(7107)] = 296778, + [SMALL_STATE(7108)] = 296809, + [SMALL_STATE(7109)] = 296844, + [SMALL_STATE(7110)] = 296887, + [SMALL_STATE(7111)] = 296928, + [SMALL_STATE(7112)] = 296959, + [SMALL_STATE(7113)] = 296986, + [SMALL_STATE(7114)] = 297007, + [SMALL_STATE(7115)] = 297037, + [SMALL_STATE(7116)] = 297069, + [SMALL_STATE(7117)] = 297111, + [SMALL_STATE(7118)] = 297153, + [SMALL_STATE(7119)] = 297187, + [SMALL_STATE(7120)] = 297229, + [SMALL_STATE(7121)] = 297263, + [SMALL_STATE(7122)] = 297305, + [SMALL_STATE(7123)] = 297335, + [SMALL_STATE(7124)] = 297365, + [SMALL_STATE(7125)] = 297407, + [SMALL_STATE(7126)] = 297431, + [SMALL_STATE(7127)] = 297461, + [SMALL_STATE(7128)] = 297491, + [SMALL_STATE(7129)] = 297533, + [SMALL_STATE(7130)] = 297563, + [SMALL_STATE(7131)] = 297595, + [SMALL_STATE(7132)] = 297625, + [SMALL_STATE(7133)] = 297655, + [SMALL_STATE(7134)] = 297685, + [SMALL_STATE(7135)] = 297715, + [SMALL_STATE(7136)] = 297747, + [SMALL_STATE(7137)] = 297777, + [SMALL_STATE(7138)] = 297809, + [SMALL_STATE(7139)] = 297843, + [SMALL_STATE(7140)] = 297873, + [SMALL_STATE(7141)] = 297915, + [SMALL_STATE(7142)] = 297945, + [SMALL_STATE(7143)] = 297975, + [SMALL_STATE(7144)] = 298005, + [SMALL_STATE(7145)] = 298039, + [SMALL_STATE(7146)] = 298069, + [SMALL_STATE(7147)] = 298103, + [SMALL_STATE(7148)] = 298145, + [SMALL_STATE(7149)] = 298177, + [SMALL_STATE(7150)] = 298219, + [SMALL_STATE(7151)] = 298249, + [SMALL_STATE(7152)] = 298283, + [SMALL_STATE(7153)] = 298325, + [SMALL_STATE(7154)] = 298355, + [SMALL_STATE(7155)] = 298385, + [SMALL_STATE(7156)] = 298417, + [SMALL_STATE(7157)] = 298455, + [SMALL_STATE(7158)] = 298485, + [SMALL_STATE(7159)] = 298527, + [SMALL_STATE(7160)] = 298557, + [SMALL_STATE(7161)] = 298589, + [SMALL_STATE(7162)] = 298619, + [SMALL_STATE(7163)] = 298645, + [SMALL_STATE(7164)] = 298677, + [SMALL_STATE(7165)] = 298719, + [SMALL_STATE(7166)] = 298757, + [SMALL_STATE(7167)] = 298789, + [SMALL_STATE(7168)] = 298817, + [SMALL_STATE(7169)] = 298859, + [SMALL_STATE(7170)] = 298887, + [SMALL_STATE(7171)] = 298929, + [SMALL_STATE(7172)] = 298959, + [SMALL_STATE(7173)] = 298991, + [SMALL_STATE(7174)] = 299021, + [SMALL_STATE(7175)] = 299053, + [SMALL_STATE(7176)] = 299085, + [SMALL_STATE(7177)] = 299127, + [SMALL_STATE(7178)] = 299169, + [SMALL_STATE(7179)] = 299211, + [SMALL_STATE(7180)] = 299253, + [SMALL_STATE(7181)] = 299285, + [SMALL_STATE(7182)] = 299327, + [SMALL_STATE(7183)] = 299369, + [SMALL_STATE(7184)] = 299395, + [SMALL_STATE(7185)] = 299425, + [SMALL_STATE(7186)] = 299467, + [SMALL_STATE(7187)] = 299499, + [SMALL_STATE(7188)] = 299529, + [SMALL_STATE(7189)] = 299561, + [SMALL_STATE(7190)] = 299603, + [SMALL_STATE(7191)] = 299631, + [SMALL_STATE(7192)] = 299663, + [SMALL_STATE(7193)] = 299691, + [SMALL_STATE(7194)] = 299719, + [SMALL_STATE(7195)] = 299749, + [SMALL_STATE(7196)] = 299781, + [SMALL_STATE(7197)] = 299809, + [SMALL_STATE(7198)] = 299839, + [SMALL_STATE(7199)] = 299867, + [SMALL_STATE(7200)] = 299895, + [SMALL_STATE(7201)] = 299927, + [SMALL_STATE(7202)] = 299955, + [SMALL_STATE(7203)] = 299983, + [SMALL_STATE(7204)] = 300015, + [SMALL_STATE(7205)] = 300039, + [SMALL_STATE(7206)] = 300071, + [SMALL_STATE(7207)] = 300103, + [SMALL_STATE(7208)] = 300131, + [SMALL_STATE(7209)] = 300159, + [SMALL_STATE(7210)] = 300189, + [SMALL_STATE(7211)] = 300217, + [SMALL_STATE(7212)] = 300245, + [SMALL_STATE(7213)] = 300275, + [SMALL_STATE(7214)] = 300307, + [SMALL_STATE(7215)] = 300339, + [SMALL_STATE(7216)] = 300381, + [SMALL_STATE(7217)] = 300409, + [SMALL_STATE(7218)] = 300437, + [SMALL_STATE(7219)] = 300479, + [SMALL_STATE(7220)] = 300513, + [SMALL_STATE(7221)] = 300545, + [SMALL_STATE(7222)] = 300575, + [SMALL_STATE(7223)] = 300605, + [SMALL_STATE(7224)] = 300631, + [SMALL_STATE(7225)] = 300663, + [SMALL_STATE(7226)] = 300697, + [SMALL_STATE(7227)] = 300718, + [SMALL_STATE(7228)] = 300745, + [SMALL_STATE(7229)] = 300766, + [SMALL_STATE(7230)] = 300791, + [SMALL_STATE(7231)] = 300826, + [SMALL_STATE(7232)] = 300861, + [SMALL_STATE(7233)] = 300882, + [SMALL_STATE(7234)] = 300903, + [SMALL_STATE(7235)] = 300928, + [SMALL_STATE(7236)] = 300965, + [SMALL_STATE(7237)] = 301002, + [SMALL_STATE(7238)] = 301039, + [SMALL_STATE(7239)] = 301064, + [SMALL_STATE(7240)] = 301085, + [SMALL_STATE(7241)] = 301106, + [SMALL_STATE(7242)] = 301127, + [SMALL_STATE(7243)] = 301162, + [SMALL_STATE(7244)] = 301189, + [SMALL_STATE(7245)] = 301210, + [SMALL_STATE(7246)] = 301247, + [SMALL_STATE(7247)] = 301282, + [SMALL_STATE(7248)] = 301319, + [SMALL_STATE(7249)] = 301348, + [SMALL_STATE(7250)] = 301383, + [SMALL_STATE(7251)] = 301404, + [SMALL_STATE(7252)] = 301429, + [SMALL_STATE(7253)] = 301458, + [SMALL_STATE(7254)] = 301479, + [SMALL_STATE(7255)] = 301506, + [SMALL_STATE(7256)] = 301527, + [SMALL_STATE(7257)] = 301554, + [SMALL_STATE(7258)] = 301587, + [SMALL_STATE(7259)] = 301608, + [SMALL_STATE(7260)] = 301645, + [SMALL_STATE(7261)] = 301666, + [SMALL_STATE(7262)] = 301701, + [SMALL_STATE(7263)] = 301738, + [SMALL_STATE(7264)] = 301773, + [SMALL_STATE(7265)] = 301810, + [SMALL_STATE(7266)] = 301847, + [SMALL_STATE(7267)] = 301874, + [SMALL_STATE(7268)] = 301911, + [SMALL_STATE(7269)] = 301938, + [SMALL_STATE(7270)] = 301959, + [SMALL_STATE(7271)] = 301984, + [SMALL_STATE(7272)] = 302017, + [SMALL_STATE(7273)] = 302054, + [SMALL_STATE(7274)] = 302083, + [SMALL_STATE(7275)] = 302104, + [SMALL_STATE(7276)] = 302137, + [SMALL_STATE(7277)] = 302170, + [SMALL_STATE(7278)] = 302199, + [SMALL_STATE(7279)] = 302224, + [SMALL_STATE(7280)] = 302257, + [SMALL_STATE(7281)] = 302278, + [SMALL_STATE(7282)] = 302313, + [SMALL_STATE(7283)] = 302346, + [SMALL_STATE(7284)] = 302371, + [SMALL_STATE(7285)] = 302392, + [SMALL_STATE(7286)] = 302413, + [SMALL_STATE(7287)] = 302450, + [SMALL_STATE(7288)] = 302471, + [SMALL_STATE(7289)] = 302498, + [SMALL_STATE(7290)] = 302535, + [SMALL_STATE(7291)] = 302572, + [SMALL_STATE(7292)] = 302609, + [SMALL_STATE(7293)] = 302636, + [SMALL_STATE(7294)] = 302669, + [SMALL_STATE(7295)] = 302696, + [SMALL_STATE(7296)] = 302723, + [SMALL_STATE(7297)] = 302750, + [SMALL_STATE(7298)] = 302771, + [SMALL_STATE(7299)] = 302798, + [SMALL_STATE(7300)] = 302819, + [SMALL_STATE(7301)] = 302856, + [SMALL_STATE(7302)] = 302881, + [SMALL_STATE(7303)] = 302916, + [SMALL_STATE(7304)] = 302943, + [SMALL_STATE(7305)] = 302970, + [SMALL_STATE(7306)] = 302991, + [SMALL_STATE(7307)] = 303028, + [SMALL_STATE(7308)] = 303061, + [SMALL_STATE(7309)] = 303082, + [SMALL_STATE(7310)] = 303107, + [SMALL_STATE(7311)] = 303144, + [SMALL_STATE(7312)] = 303182, + [SMALL_STATE(7313)] = 303210, + [SMALL_STATE(7314)] = 303238, + [SMALL_STATE(7315)] = 303276, + [SMALL_STATE(7316)] = 303310, + [SMALL_STATE(7317)] = 303338, + [SMALL_STATE(7318)] = 303366, + [SMALL_STATE(7319)] = 303390, + [SMALL_STATE(7320)] = 303424, + [SMALL_STATE(7321)] = 303452, + [SMALL_STATE(7322)] = 303490, + [SMALL_STATE(7323)] = 303528, + [SMALL_STATE(7324)] = 303554, + [SMALL_STATE(7325)] = 303592, + [SMALL_STATE(7326)] = 303630, + [SMALL_STATE(7327)] = 303664, + [SMALL_STATE(7328)] = 303702, + [SMALL_STATE(7329)] = 303736, + [SMALL_STATE(7330)] = 303770, + [SMALL_STATE(7331)] = 303796, + [SMALL_STATE(7332)] = 303822, + [SMALL_STATE(7333)] = 303848, + [SMALL_STATE(7334)] = 303886, + [SMALL_STATE(7335)] = 303912, + [SMALL_STATE(7336)] = 303940, + [SMALL_STATE(7337)] = 303974, + [SMALL_STATE(7338)] = 304008, + [SMALL_STATE(7339)] = 304036, + [SMALL_STATE(7340)] = 304062, + [SMALL_STATE(7341)] = 304088, + [SMALL_STATE(7342)] = 304126, + [SMALL_STATE(7343)] = 304154, + [SMALL_STATE(7344)] = 304182, + [SMALL_STATE(7345)] = 304210, + [SMALL_STATE(7346)] = 304238, + [SMALL_STATE(7347)] = 304266, + [SMALL_STATE(7348)] = 304304, + [SMALL_STATE(7349)] = 304342, + [SMALL_STATE(7350)] = 304372, + [SMALL_STATE(7351)] = 304402, + [SMALL_STATE(7352)] = 304440, + [SMALL_STATE(7353)] = 304478, + [SMALL_STATE(7354)] = 304508, + [SMALL_STATE(7355)] = 304546, + [SMALL_STATE(7356)] = 304576, + [SMALL_STATE(7357)] = 304614, + [SMALL_STATE(7358)] = 304646, + [SMALL_STATE(7359)] = 304678, + [SMALL_STATE(7360)] = 304710, + [SMALL_STATE(7361)] = 304742, + [SMALL_STATE(7362)] = 304780, + [SMALL_STATE(7363)] = 304818, + [SMALL_STATE(7364)] = 304856, + [SMALL_STATE(7365)] = 304884, + [SMALL_STATE(7366)] = 304922, + [SMALL_STATE(7367)] = 304960, + [SMALL_STATE(7368)] = 304998, + [SMALL_STATE(7369)] = 305022, + [SMALL_STATE(7370)] = 305060, + [SMALL_STATE(7371)] = 305092, + [SMALL_STATE(7372)] = 305124, + [SMALL_STATE(7373)] = 305156, + [SMALL_STATE(7374)] = 305188, + [SMALL_STATE(7375)] = 305212, + [SMALL_STATE(7376)] = 305234, + [SMALL_STATE(7377)] = 305272, + [SMALL_STATE(7378)] = 305306, + [SMALL_STATE(7379)] = 305334, + [SMALL_STATE(7380)] = 305372, + [SMALL_STATE(7381)] = 305410, + [SMALL_STATE(7382)] = 305432, + [SMALL_STATE(7383)] = 305466, + [SMALL_STATE(7384)] = 305504, + [SMALL_STATE(7385)] = 305528, + [SMALL_STATE(7386)] = 305566, + [SMALL_STATE(7387)] = 305586, + [SMALL_STATE(7388)] = 305624, + [SMALL_STATE(7389)] = 305658, + [SMALL_STATE(7390)] = 305688, + [SMALL_STATE(7391)] = 305715, + [SMALL_STATE(7392)] = 305748, + [SMALL_STATE(7393)] = 305773, + [SMALL_STATE(7394)] = 305804, + [SMALL_STATE(7395)] = 305829, + [SMALL_STATE(7396)] = 305854, + [SMALL_STATE(7397)] = 305887, + [SMALL_STATE(7398)] = 305912, + [SMALL_STATE(7399)] = 305945, + [SMALL_STATE(7400)] = 305964, + [SMALL_STATE(7401)] = 305989, + [SMALL_STATE(7402)] = 306020, + [SMALL_STATE(7403)] = 306053, + [SMALL_STATE(7404)] = 306086, + [SMALL_STATE(7405)] = 306115, + [SMALL_STATE(7406)] = 306148, + [SMALL_STATE(7407)] = 306173, + [SMALL_STATE(7408)] = 306202, + [SMALL_STATE(7409)] = 306231, + [SMALL_STATE(7410)] = 306264, + [SMALL_STATE(7411)] = 306283, + [SMALL_STATE(7412)] = 306308, + [SMALL_STATE(7413)] = 306337, + [SMALL_STATE(7414)] = 306366, + [SMALL_STATE(7415)] = 306395, + [SMALL_STATE(7416)] = 306414, + [SMALL_STATE(7417)] = 306445, + [SMALL_STATE(7418)] = 306472, + [SMALL_STATE(7419)] = 306497, + [SMALL_STATE(7420)] = 306524, + [SMALL_STATE(7421)] = 306555, + [SMALL_STATE(7422)] = 306582, + [SMALL_STATE(7423)] = 306609, + [SMALL_STATE(7424)] = 306640, + [SMALL_STATE(7425)] = 306673, + [SMALL_STATE(7426)] = 306704, + [SMALL_STATE(7427)] = 306737, + [SMALL_STATE(7428)] = 306768, + [SMALL_STATE(7429)] = 306791, + [SMALL_STATE(7430)] = 306824, + [SMALL_STATE(7431)] = 306857, + [SMALL_STATE(7432)] = 306876, + [SMALL_STATE(7433)] = 306907, + [SMALL_STATE(7434)] = 306940, + [SMALL_STATE(7435)] = 306969, + [SMALL_STATE(7436)] = 306998, + [SMALL_STATE(7437)] = 307029, + [SMALL_STATE(7438)] = 307058, + [SMALL_STATE(7439)] = 307079, + [SMALL_STATE(7440)] = 307112, + [SMALL_STATE(7441)] = 307141, + [SMALL_STATE(7442)] = 307170, + [SMALL_STATE(7443)] = 307193, + [SMALL_STATE(7444)] = 307224, + [SMALL_STATE(7445)] = 307245, + [SMALL_STATE(7446)] = 307274, + [SMALL_STATE(7447)] = 307307, + [SMALL_STATE(7448)] = 307340, + [SMALL_STATE(7449)] = 307369, + [SMALL_STATE(7450)] = 307388, + [SMALL_STATE(7451)] = 307415, + [SMALL_STATE(7452)] = 307444, + [SMALL_STATE(7453)] = 307463, + [SMALL_STATE(7454)] = 307482, + [SMALL_STATE(7455)] = 307501, + [SMALL_STATE(7456)] = 307528, + [SMALL_STATE(7457)] = 307547, + [SMALL_STATE(7458)] = 307574, + [SMALL_STATE(7459)] = 307601, + [SMALL_STATE(7460)] = 307626, + [SMALL_STATE(7461)] = 307659, + [SMALL_STATE(7462)] = 307692, + [SMALL_STATE(7463)] = 307711, + [SMALL_STATE(7464)] = 307742, + [SMALL_STATE(7465)] = 307769, + [SMALL_STATE(7466)] = 307798, + [SMALL_STATE(7467)] = 307823, + [SMALL_STATE(7468)] = 307855, + [SMALL_STATE(7469)] = 307885, + [SMALL_STATE(7470)] = 307903, + [SMALL_STATE(7471)] = 307927, + [SMALL_STATE(7472)] = 307957, + [SMALL_STATE(7473)] = 307979, + [SMALL_STATE(7474)] = 308003, + [SMALL_STATE(7475)] = 308025, + [SMALL_STATE(7476)] = 308057, + [SMALL_STATE(7477)] = 308089, + [SMALL_STATE(7478)] = 308107, + [SMALL_STATE(7479)] = 308137, + [SMALL_STATE(7480)] = 308155, + [SMALL_STATE(7481)] = 308177, + [SMALL_STATE(7482)] = 308201, + [SMALL_STATE(7483)] = 308231, + [SMALL_STATE(7484)] = 308261, + [SMALL_STATE(7485)] = 308283, + [SMALL_STATE(7486)] = 308301, + [SMALL_STATE(7487)] = 308323, + [SMALL_STATE(7488)] = 308341, + [SMALL_STATE(7489)] = 308363, + [SMALL_STATE(7490)] = 308385, + [SMALL_STATE(7491)] = 308417, + [SMALL_STATE(7492)] = 308441, + [SMALL_STATE(7493)] = 308471, + [SMALL_STATE(7494)] = 308495, + [SMALL_STATE(7495)] = 308525, + [SMALL_STATE(7496)] = 308547, + [SMALL_STATE(7497)] = 308569, + [SMALL_STATE(7498)] = 308591, + [SMALL_STATE(7499)] = 308613, + [SMALL_STATE(7500)] = 308645, + [SMALL_STATE(7501)] = 308669, + [SMALL_STATE(7502)] = 308693, + [SMALL_STATE(7503)] = 308723, + [SMALL_STATE(7504)] = 308745, + [SMALL_STATE(7505)] = 308769, + [SMALL_STATE(7506)] = 308793, + [SMALL_STATE(7507)] = 308815, + [SMALL_STATE(7508)] = 308833, + [SMALL_STATE(7509)] = 308855, + [SMALL_STATE(7510)] = 308885, + [SMALL_STATE(7511)] = 308915, + [SMALL_STATE(7512)] = 308937, + [SMALL_STATE(7513)] = 308969, + [SMALL_STATE(7514)] = 308991, + [SMALL_STATE(7515)] = 309013, + [SMALL_STATE(7516)] = 309031, + [SMALL_STATE(7517)] = 309060, + [SMALL_STATE(7518)] = 309089, + [SMALL_STATE(7519)] = 309112, + [SMALL_STATE(7520)] = 309135, + [SMALL_STATE(7521)] = 309162, + [SMALL_STATE(7522)] = 309191, + [SMALL_STATE(7523)] = 309212, + [SMALL_STATE(7524)] = 309241, + [SMALL_STATE(7525)] = 309270, + [SMALL_STATE(7526)] = 309299, + [SMALL_STATE(7527)] = 309328, + [SMALL_STATE(7528)] = 309351, + [SMALL_STATE(7529)] = 309380, + [SMALL_STATE(7530)] = 309407, + [SMALL_STATE(7531)] = 309430, + [SMALL_STATE(7532)] = 309453, + [SMALL_STATE(7533)] = 309476, + [SMALL_STATE(7534)] = 309499, + [SMALL_STATE(7535)] = 309518, + [SMALL_STATE(7536)] = 309541, + [SMALL_STATE(7537)] = 309564, + [SMALL_STATE(7538)] = 309591, + [SMALL_STATE(7539)] = 309614, + [SMALL_STATE(7540)] = 309643, + [SMALL_STATE(7541)] = 309664, + [SMALL_STATE(7542)] = 309693, + [SMALL_STATE(7543)] = 309722, + [SMALL_STATE(7544)] = 309749, + [SMALL_STATE(7545)] = 309778, + [SMALL_STATE(7546)] = 309807, + [SMALL_STATE(7547)] = 309836, + [SMALL_STATE(7548)] = 309865, + [SMALL_STATE(7549)] = 309886, + [SMALL_STATE(7550)] = 309915, + [SMALL_STATE(7551)] = 309942, + [SMALL_STATE(7552)] = 309971, + [SMALL_STATE(7553)] = 310000, + [SMALL_STATE(7554)] = 310027, + [SMALL_STATE(7555)] = 310054, + [SMALL_STATE(7556)] = 310077, + [SMALL_STATE(7557)] = 310106, + [SMALL_STATE(7558)] = 310135, + [SMALL_STATE(7559)] = 310164, + [SMALL_STATE(7560)] = 310191, + [SMALL_STATE(7561)] = 310216, + [SMALL_STATE(7562)] = 310233, + [SMALL_STATE(7563)] = 310256, + [SMALL_STATE(7564)] = 310273, + [SMALL_STATE(7565)] = 310296, + [SMALL_STATE(7566)] = 310325, + [SMALL_STATE(7567)] = 310348, + [SMALL_STATE(7568)] = 310371, + [SMALL_STATE(7569)] = 310398, + [SMALL_STATE(7570)] = 310427, + [SMALL_STATE(7571)] = 310450, + [SMALL_STATE(7572)] = 310479, + [SMALL_STATE(7573)] = 310508, + [SMALL_STATE(7574)] = 310529, + [SMALL_STATE(7575)] = 310558, + [SMALL_STATE(7576)] = 310579, + [SMALL_STATE(7577)] = 310595, + [SMALL_STATE(7578)] = 310611, + [SMALL_STATE(7579)] = 310627, + [SMALL_STATE(7580)] = 310651, + [SMALL_STATE(7581)] = 310677, + [SMALL_STATE(7582)] = 310699, + [SMALL_STATE(7583)] = 310725, + [SMALL_STATE(7584)] = 310751, + [SMALL_STATE(7585)] = 310777, + [SMALL_STATE(7586)] = 310799, + [SMALL_STATE(7587)] = 310815, + [SMALL_STATE(7588)] = 310841, + [SMALL_STATE(7589)] = 310867, + [SMALL_STATE(7590)] = 310893, + [SMALL_STATE(7591)] = 310909, + [SMALL_STATE(7592)] = 310935, + [SMALL_STATE(7593)] = 310957, + [SMALL_STATE(7594)] = 310979, + [SMALL_STATE(7595)] = 310999, + [SMALL_STATE(7596)] = 311025, + [SMALL_STATE(7597)] = 311051, + [SMALL_STATE(7598)] = 311077, + [SMALL_STATE(7599)] = 311103, + [SMALL_STATE(7600)] = 311129, + [SMALL_STATE(7601)] = 311155, + [SMALL_STATE(7602)] = 311179, + [SMALL_STATE(7603)] = 311195, + [SMALL_STATE(7604)] = 311221, + [SMALL_STATE(7605)] = 311247, + [SMALL_STATE(7606)] = 311273, + [SMALL_STATE(7607)] = 311289, + [SMALL_STATE(7608)] = 311305, + [SMALL_STATE(7609)] = 311331, + [SMALL_STATE(7610)] = 311347, + [SMALL_STATE(7611)] = 311373, + [SMALL_STATE(7612)] = 311397, + [SMALL_STATE(7613)] = 311423, + [SMALL_STATE(7614)] = 311449, + [SMALL_STATE(7615)] = 311475, + [SMALL_STATE(7616)] = 311501, + [SMALL_STATE(7617)] = 311527, + [SMALL_STATE(7618)] = 311543, + [SMALL_STATE(7619)] = 311563, + [SMALL_STATE(7620)] = 311579, + [SMALL_STATE(7621)] = 311601, + [SMALL_STATE(7622)] = 311627, + [SMALL_STATE(7623)] = 311649, + [SMALL_STATE(7624)] = 311675, + [SMALL_STATE(7625)] = 311697, + [SMALL_STATE(7626)] = 311723, + [SMALL_STATE(7627)] = 311745, + [SMALL_STATE(7628)] = 311771, + [SMALL_STATE(7629)] = 311795, + [SMALL_STATE(7630)] = 311821, + [SMALL_STATE(7631)] = 311847, + [SMALL_STATE(7632)] = 311867, + [SMALL_STATE(7633)] = 311893, + [SMALL_STATE(7634)] = 311915, + [SMALL_STATE(7635)] = 311931, + [SMALL_STATE(7636)] = 311947, + [SMALL_STATE(7637)] = 311969, + [SMALL_STATE(7638)] = 311989, + [SMALL_STATE(7639)] = 312007, + [SMALL_STATE(7640)] = 312031, + [SMALL_STATE(7641)] = 312047, + [SMALL_STATE(7642)] = 312065, + [SMALL_STATE(7643)] = 312091, + [SMALL_STATE(7644)] = 312117, + [SMALL_STATE(7645)] = 312143, + [SMALL_STATE(7646)] = 312169, + [SMALL_STATE(7647)] = 312195, + [SMALL_STATE(7648)] = 312221, + [SMALL_STATE(7649)] = 312245, + [SMALL_STATE(7650)] = 312261, + [SMALL_STATE(7651)] = 312283, + [SMALL_STATE(7652)] = 312309, + [SMALL_STATE(7653)] = 312335, + [SMALL_STATE(7654)] = 312359, + [SMALL_STATE(7655)] = 312385, + [SMALL_STATE(7656)] = 312401, + [SMALL_STATE(7657)] = 312422, + [SMALL_STATE(7658)] = 312443, + [SMALL_STATE(7659)] = 312464, + [SMALL_STATE(7660)] = 312487, + [SMALL_STATE(7661)] = 312502, + [SMALL_STATE(7662)] = 312525, + [SMALL_STATE(7663)] = 312544, + [SMALL_STATE(7664)] = 312569, + [SMALL_STATE(7665)] = 312592, + [SMALL_STATE(7666)] = 312611, + [SMALL_STATE(7667)] = 312636, + [SMALL_STATE(7668)] = 312651, + [SMALL_STATE(7669)] = 312676, + [SMALL_STATE(7670)] = 312701, + [SMALL_STATE(7671)] = 312724, + [SMALL_STATE(7672)] = 312747, + [SMALL_STATE(7673)] = 312766, + [SMALL_STATE(7674)] = 312781, + [SMALL_STATE(7675)] = 312804, + [SMALL_STATE(7676)] = 312825, + [SMALL_STATE(7677)] = 312846, + [SMALL_STATE(7678)] = 312871, + [SMALL_STATE(7679)] = 312894, + [SMALL_STATE(7680)] = 312915, + [SMALL_STATE(7681)] = 312930, + [SMALL_STATE(7682)] = 312945, + [SMALL_STATE(7683)] = 312966, + [SMALL_STATE(7684)] = 312983, + [SMALL_STATE(7685)] = 313006, + [SMALL_STATE(7686)] = 313031, + [SMALL_STATE(7687)] = 313052, + [SMALL_STATE(7688)] = 313077, + [SMALL_STATE(7689)] = 313100, + [SMALL_STATE(7690)] = 313123, + [SMALL_STATE(7691)] = 313144, + [SMALL_STATE(7692)] = 313169, + [SMALL_STATE(7693)] = 313192, + [SMALL_STATE(7694)] = 313217, + [SMALL_STATE(7695)] = 313232, + [SMALL_STATE(7696)] = 313253, + [SMALL_STATE(7697)] = 313274, + [SMALL_STATE(7698)] = 313297, + [SMALL_STATE(7699)] = 313312, + [SMALL_STATE(7700)] = 313333, + [SMALL_STATE(7701)] = 313354, + [SMALL_STATE(7702)] = 313369, + [SMALL_STATE(7703)] = 313394, + [SMALL_STATE(7704)] = 313415, + [SMALL_STATE(7705)] = 313438, + [SMALL_STATE(7706)] = 313458, + [SMALL_STATE(7707)] = 313478, + [SMALL_STATE(7708)] = 313494, + [SMALL_STATE(7709)] = 313510, + [SMALL_STATE(7710)] = 313526, + [SMALL_STATE(7711)] = 313544, + [SMALL_STATE(7712)] = 313560, + [SMALL_STATE(7713)] = 313578, + [SMALL_STATE(7714)] = 313596, + [SMALL_STATE(7715)] = 313612, + [SMALL_STATE(7716)] = 313628, + [SMALL_STATE(7717)] = 313644, + [SMALL_STATE(7718)] = 313660, + [SMALL_STATE(7719)] = 313680, + [SMALL_STATE(7720)] = 313694, + [SMALL_STATE(7721)] = 313710, + [SMALL_STATE(7722)] = 313728, + [SMALL_STATE(7723)] = 313744, + [SMALL_STATE(7724)] = 313760, + [SMALL_STATE(7725)] = 313780, + [SMALL_STATE(7726)] = 313796, + [SMALL_STATE(7727)] = 313816, + [SMALL_STATE(7728)] = 313832, + [SMALL_STATE(7729)] = 313852, + [SMALL_STATE(7730)] = 313868, + [SMALL_STATE(7731)] = 313888, + [SMALL_STATE(7732)] = 313908, + [SMALL_STATE(7733)] = 313928, + [SMALL_STATE(7734)] = 313948, + [SMALL_STATE(7735)] = 313962, + [SMALL_STATE(7736)] = 313982, + [SMALL_STATE(7737)] = 314002, + [SMALL_STATE(7738)] = 314022, + [SMALL_STATE(7739)] = 314038, + [SMALL_STATE(7740)] = 314058, + [SMALL_STATE(7741)] = 314078, + [SMALL_STATE(7742)] = 314098, + [SMALL_STATE(7743)] = 314116, + [SMALL_STATE(7744)] = 314136, + [SMALL_STATE(7745)] = 314152, + [SMALL_STATE(7746)] = 314168, + [SMALL_STATE(7747)] = 314188, + [SMALL_STATE(7748)] = 314208, + [SMALL_STATE(7749)] = 314228, + [SMALL_STATE(7750)] = 314248, + [SMALL_STATE(7751)] = 314268, + [SMALL_STATE(7752)] = 314288, + [SMALL_STATE(7753)] = 314308, + [SMALL_STATE(7754)] = 314328, + [SMALL_STATE(7755)] = 314344, + [SMALL_STATE(7756)] = 314360, + [SMALL_STATE(7757)] = 314376, + [SMALL_STATE(7758)] = 314394, + [SMALL_STATE(7759)] = 314414, + [SMALL_STATE(7760)] = 314434, + [SMALL_STATE(7761)] = 314454, + [SMALL_STATE(7762)] = 314474, + [SMALL_STATE(7763)] = 314490, + [SMALL_STATE(7764)] = 314508, + [SMALL_STATE(7765)] = 314522, + [SMALL_STATE(7766)] = 314542, + [SMALL_STATE(7767)] = 314562, + [SMALL_STATE(7768)] = 314578, + [SMALL_STATE(7769)] = 314592, + [SMALL_STATE(7770)] = 314606, + [SMALL_STATE(7771)] = 314622, + [SMALL_STATE(7772)] = 314642, + [SMALL_STATE(7773)] = 314662, + [SMALL_STATE(7774)] = 314680, + [SMALL_STATE(7775)] = 314700, + [SMALL_STATE(7776)] = 314716, + [SMALL_STATE(7777)] = 314733, + [SMALL_STATE(7778)] = 314752, + [SMALL_STATE(7779)] = 314771, + [SMALL_STATE(7780)] = 314790, + [SMALL_STATE(7781)] = 314809, + [SMALL_STATE(7782)] = 314828, + [SMALL_STATE(7783)] = 314847, + [SMALL_STATE(7784)] = 314866, + [SMALL_STATE(7785)] = 314885, + [SMALL_STATE(7786)] = 314904, + [SMALL_STATE(7787)] = 314921, + [SMALL_STATE(7788)] = 314940, + [SMALL_STATE(7789)] = 314959, + [SMALL_STATE(7790)] = 314976, + [SMALL_STATE(7791)] = 314989, + [SMALL_STATE(7792)] = 315008, + [SMALL_STATE(7793)] = 315027, + [SMALL_STATE(7794)] = 315046, + [SMALL_STATE(7795)] = 315065, + [SMALL_STATE(7796)] = 315082, + [SMALL_STATE(7797)] = 315101, + [SMALL_STATE(7798)] = 315120, + [SMALL_STATE(7799)] = 315139, + [SMALL_STATE(7800)] = 315158, + [SMALL_STATE(7801)] = 315177, + [SMALL_STATE(7802)] = 315190, + [SMALL_STATE(7803)] = 315209, + [SMALL_STATE(7804)] = 315228, + [SMALL_STATE(7805)] = 315245, + [SMALL_STATE(7806)] = 315264, + [SMALL_STATE(7807)] = 315283, + [SMALL_STATE(7808)] = 315296, + [SMALL_STATE(7809)] = 315315, + [SMALL_STATE(7810)] = 315332, + [SMALL_STATE(7811)] = 315351, + [SMALL_STATE(7812)] = 315370, + [SMALL_STATE(7813)] = 315389, + [SMALL_STATE(7814)] = 315408, + [SMALL_STATE(7815)] = 315427, + [SMALL_STATE(7816)] = 315446, + [SMALL_STATE(7817)] = 315465, + [SMALL_STATE(7818)] = 315484, + [SMALL_STATE(7819)] = 315503, + [SMALL_STATE(7820)] = 315520, + [SMALL_STATE(7821)] = 315539, + [SMALL_STATE(7822)] = 315552, + [SMALL_STATE(7823)] = 315571, + [SMALL_STATE(7824)] = 315590, + [SMALL_STATE(7825)] = 315609, + [SMALL_STATE(7826)] = 315628, + [SMALL_STATE(7827)] = 315647, + [SMALL_STATE(7828)] = 315666, + [SMALL_STATE(7829)] = 315685, + [SMALL_STATE(7830)] = 315698, + [SMALL_STATE(7831)] = 315717, + [SMALL_STATE(7832)] = 315736, + [SMALL_STATE(7833)] = 315755, + [SMALL_STATE(7834)] = 315774, + [SMALL_STATE(7835)] = 315793, + [SMALL_STATE(7836)] = 315812, + [SMALL_STATE(7837)] = 315831, + [SMALL_STATE(7838)] = 315850, + [SMALL_STATE(7839)] = 315869, + [SMALL_STATE(7840)] = 315885, + [SMALL_STATE(7841)] = 315901, + [SMALL_STATE(7842)] = 315917, + [SMALL_STATE(7843)] = 315933, + [SMALL_STATE(7844)] = 315949, + [SMALL_STATE(7845)] = 315965, + [SMALL_STATE(7846)] = 315979, + [SMALL_STATE(7847)] = 315995, + [SMALL_STATE(7848)] = 316009, + [SMALL_STATE(7849)] = 316023, + [SMALL_STATE(7850)] = 316039, + [SMALL_STATE(7851)] = 316053, + [SMALL_STATE(7852)] = 316067, + [SMALL_STATE(7853)] = 316081, + [SMALL_STATE(7854)] = 316097, + [SMALL_STATE(7855)] = 316111, + [SMALL_STATE(7856)] = 316125, + [SMALL_STATE(7857)] = 316139, + [SMALL_STATE(7858)] = 316153, + [SMALL_STATE(7859)] = 316169, + [SMALL_STATE(7860)] = 316185, + [SMALL_STATE(7861)] = 316201, + [SMALL_STATE(7862)] = 316217, + [SMALL_STATE(7863)] = 316233, + [SMALL_STATE(7864)] = 316249, + [SMALL_STATE(7865)] = 316263, + [SMALL_STATE(7866)] = 316279, + [SMALL_STATE(7867)] = 316293, + [SMALL_STATE(7868)] = 316307, + [SMALL_STATE(7869)] = 316321, + [SMALL_STATE(7870)] = 316337, + [SMALL_STATE(7871)] = 316353, + [SMALL_STATE(7872)] = 316367, + [SMALL_STATE(7873)] = 316381, + [SMALL_STATE(7874)] = 316395, + [SMALL_STATE(7875)] = 316409, + [SMALL_STATE(7876)] = 316423, + [SMALL_STATE(7877)] = 316439, + [SMALL_STATE(7878)] = 316455, + [SMALL_STATE(7879)] = 316471, + [SMALL_STATE(7880)] = 316487, + [SMALL_STATE(7881)] = 316503, + [SMALL_STATE(7882)] = 316517, + [SMALL_STATE(7883)] = 316533, + [SMALL_STATE(7884)] = 316549, + [SMALL_STATE(7885)] = 316565, + [SMALL_STATE(7886)] = 316579, + [SMALL_STATE(7887)] = 316595, + [SMALL_STATE(7888)] = 316609, + [SMALL_STATE(7889)] = 316623, + [SMALL_STATE(7890)] = 316639, + [SMALL_STATE(7891)] = 316655, + [SMALL_STATE(7892)] = 316669, + [SMALL_STATE(7893)] = 316683, + [SMALL_STATE(7894)] = 316697, + [SMALL_STATE(7895)] = 316713, + [SMALL_STATE(7896)] = 316727, + [SMALL_STATE(7897)] = 316741, + [SMALL_STATE(7898)] = 316755, + [SMALL_STATE(7899)] = 316769, + [SMALL_STATE(7900)] = 316779, + [SMALL_STATE(7901)] = 316793, + [SMALL_STATE(7902)] = 316807, + [SMALL_STATE(7903)] = 316823, + [SMALL_STATE(7904)] = 316839, + [SMALL_STATE(7905)] = 316855, + [SMALL_STATE(7906)] = 316871, + [SMALL_STATE(7907)] = 316885, + [SMALL_STATE(7908)] = 316901, + [SMALL_STATE(7909)] = 316915, + [SMALL_STATE(7910)] = 316931, + [SMALL_STATE(7911)] = 316947, + [SMALL_STATE(7912)] = 316961, + [SMALL_STATE(7913)] = 316975, + [SMALL_STATE(7914)] = 316991, + [SMALL_STATE(7915)] = 317007, + [SMALL_STATE(7916)] = 317021, + [SMALL_STATE(7917)] = 317037, + [SMALL_STATE(7918)] = 317053, + [SMALL_STATE(7919)] = 317069, + [SMALL_STATE(7920)] = 317085, + [SMALL_STATE(7921)] = 317099, + [SMALL_STATE(7922)] = 317113, + [SMALL_STATE(7923)] = 317129, + [SMALL_STATE(7924)] = 317145, + [SMALL_STATE(7925)] = 317159, + [SMALL_STATE(7926)] = 317173, + [SMALL_STATE(7927)] = 317189, + [SMALL_STATE(7928)] = 317205, + [SMALL_STATE(7929)] = 317221, + [SMALL_STATE(7930)] = 317237, + [SMALL_STATE(7931)] = 317253, + [SMALL_STATE(7932)] = 317269, + [SMALL_STATE(7933)] = 317283, + [SMALL_STATE(7934)] = 317299, + [SMALL_STATE(7935)] = 317315, + [SMALL_STATE(7936)] = 317329, + [SMALL_STATE(7937)] = 317343, + [SMALL_STATE(7938)] = 317359, + [SMALL_STATE(7939)] = 317375, + [SMALL_STATE(7940)] = 317391, + [SMALL_STATE(7941)] = 317407, + [SMALL_STATE(7942)] = 317421, + [SMALL_STATE(7943)] = 317437, + [SMALL_STATE(7944)] = 317451, + [SMALL_STATE(7945)] = 317465, + [SMALL_STATE(7946)] = 317479, + [SMALL_STATE(7947)] = 317495, + [SMALL_STATE(7948)] = 317511, + [SMALL_STATE(7949)] = 317527, + [SMALL_STATE(7950)] = 317543, + [SMALL_STATE(7951)] = 317559, + [SMALL_STATE(7952)] = 317575, + [SMALL_STATE(7953)] = 317591, + [SMALL_STATE(7954)] = 317607, + [SMALL_STATE(7955)] = 317623, + [SMALL_STATE(7956)] = 317639, + [SMALL_STATE(7957)] = 317655, + [SMALL_STATE(7958)] = 317671, + [SMALL_STATE(7959)] = 317687, + [SMALL_STATE(7960)] = 317703, + [SMALL_STATE(7961)] = 317719, + [SMALL_STATE(7962)] = 317735, + [SMALL_STATE(7963)] = 317749, + [SMALL_STATE(7964)] = 317765, + [SMALL_STATE(7965)] = 317777, + [SMALL_STATE(7966)] = 317793, + [SMALL_STATE(7967)] = 317809, + [SMALL_STATE(7968)] = 317825, + [SMALL_STATE(7969)] = 317841, + [SMALL_STATE(7970)] = 317857, + [SMALL_STATE(7971)] = 317873, + [SMALL_STATE(7972)] = 317889, + [SMALL_STATE(7973)] = 317905, + [SMALL_STATE(7974)] = 317921, + [SMALL_STATE(7975)] = 317937, + [SMALL_STATE(7976)] = 317953, + [SMALL_STATE(7977)] = 317969, + [SMALL_STATE(7978)] = 317985, + [SMALL_STATE(7979)] = 318001, + [SMALL_STATE(7980)] = 318017, + [SMALL_STATE(7981)] = 318033, + [SMALL_STATE(7982)] = 318049, + [SMALL_STATE(7983)] = 318065, + [SMALL_STATE(7984)] = 318081, + [SMALL_STATE(7985)] = 318097, + [SMALL_STATE(7986)] = 318113, + [SMALL_STATE(7987)] = 318127, + [SMALL_STATE(7988)] = 318143, + [SMALL_STATE(7989)] = 318159, + [SMALL_STATE(7990)] = 318173, + [SMALL_STATE(7991)] = 318187, + [SMALL_STATE(7992)] = 318203, + [SMALL_STATE(7993)] = 318219, + [SMALL_STATE(7994)] = 318233, + [SMALL_STATE(7995)] = 318249, + [SMALL_STATE(7996)] = 318265, + [SMALL_STATE(7997)] = 318281, + [SMALL_STATE(7998)] = 318297, + [SMALL_STATE(7999)] = 318313, + [SMALL_STATE(8000)] = 318327, + [SMALL_STATE(8001)] = 318343, + [SMALL_STATE(8002)] = 318359, + [SMALL_STATE(8003)] = 318373, + [SMALL_STATE(8004)] = 318387, + [SMALL_STATE(8005)] = 318403, + [SMALL_STATE(8006)] = 318417, + [SMALL_STATE(8007)] = 318431, + [SMALL_STATE(8008)] = 318445, + [SMALL_STATE(8009)] = 318459, + [SMALL_STATE(8010)] = 318475, + [SMALL_STATE(8011)] = 318489, + [SMALL_STATE(8012)] = 318505, + [SMALL_STATE(8013)] = 318521, + [SMALL_STATE(8014)] = 318535, + [SMALL_STATE(8015)] = 318549, + [SMALL_STATE(8016)] = 318565, + [SMALL_STATE(8017)] = 318581, + [SMALL_STATE(8018)] = 318595, + [SMALL_STATE(8019)] = 318609, + [SMALL_STATE(8020)] = 318625, + [SMALL_STATE(8021)] = 318639, + [SMALL_STATE(8022)] = 318653, + [SMALL_STATE(8023)] = 318669, + [SMALL_STATE(8024)] = 318681, + [SMALL_STATE(8025)] = 318695, + [SMALL_STATE(8026)] = 318709, + [SMALL_STATE(8027)] = 318723, + [SMALL_STATE(8028)] = 318739, + [SMALL_STATE(8029)] = 318755, + [SMALL_STATE(8030)] = 318771, + [SMALL_STATE(8031)] = 318785, + [SMALL_STATE(8032)] = 318801, + [SMALL_STATE(8033)] = 318817, + [SMALL_STATE(8034)] = 318833, + [SMALL_STATE(8035)] = 318849, + [SMALL_STATE(8036)] = 318865, + [SMALL_STATE(8037)] = 318881, + [SMALL_STATE(8038)] = 318897, + [SMALL_STATE(8039)] = 318913, + [SMALL_STATE(8040)] = 318927, + [SMALL_STATE(8041)] = 318941, + [SMALL_STATE(8042)] = 318957, + [SMALL_STATE(8043)] = 318973, + [SMALL_STATE(8044)] = 318987, + [SMALL_STATE(8045)] = 319003, + [SMALL_STATE(8046)] = 319019, + [SMALL_STATE(8047)] = 319033, + [SMALL_STATE(8048)] = 319047, + [SMALL_STATE(8049)] = 319061, + [SMALL_STATE(8050)] = 319075, + [SMALL_STATE(8051)] = 319089, + [SMALL_STATE(8052)] = 319105, + [SMALL_STATE(8053)] = 319121, + [SMALL_STATE(8054)] = 319137, + [SMALL_STATE(8055)] = 319153, + [SMALL_STATE(8056)] = 319169, + [SMALL_STATE(8057)] = 319183, + [SMALL_STATE(8058)] = 319199, + [SMALL_STATE(8059)] = 319213, + [SMALL_STATE(8060)] = 319227, + [SMALL_STATE(8061)] = 319241, + [SMALL_STATE(8062)] = 319257, + [SMALL_STATE(8063)] = 319273, + [SMALL_STATE(8064)] = 319287, + [SMALL_STATE(8065)] = 319301, + [SMALL_STATE(8066)] = 319317, + [SMALL_STATE(8067)] = 319331, + [SMALL_STATE(8068)] = 319347, + [SMALL_STATE(8069)] = 319363, + [SMALL_STATE(8070)] = 319377, + [SMALL_STATE(8071)] = 319393, + [SMALL_STATE(8072)] = 319407, + [SMALL_STATE(8073)] = 319421, + [SMALL_STATE(8074)] = 319435, + [SMALL_STATE(8075)] = 319451, + [SMALL_STATE(8076)] = 319467, + [SMALL_STATE(8077)] = 319481, + [SMALL_STATE(8078)] = 319497, + [SMALL_STATE(8079)] = 319513, + [SMALL_STATE(8080)] = 319529, + [SMALL_STATE(8081)] = 319545, + [SMALL_STATE(8082)] = 319561, + [SMALL_STATE(8083)] = 319575, + [SMALL_STATE(8084)] = 319591, + [SMALL_STATE(8085)] = 319607, + [SMALL_STATE(8086)] = 319623, + [SMALL_STATE(8087)] = 319639, + [SMALL_STATE(8088)] = 319655, + [SMALL_STATE(8089)] = 319671, + [SMALL_STATE(8090)] = 319687, + [SMALL_STATE(8091)] = 319703, + [SMALL_STATE(8092)] = 319717, + [SMALL_STATE(8093)] = 319733, + [SMALL_STATE(8094)] = 319745, + [SMALL_STATE(8095)] = 319759, + [SMALL_STATE(8096)] = 319775, + [SMALL_STATE(8097)] = 319789, + [SMALL_STATE(8098)] = 319805, + [SMALL_STATE(8099)] = 319821, + [SMALL_STATE(8100)] = 319837, + [SMALL_STATE(8101)] = 319853, + [SMALL_STATE(8102)] = 319867, + [SMALL_STATE(8103)] = 319881, + [SMALL_STATE(8104)] = 319895, + [SMALL_STATE(8105)] = 319909, + [SMALL_STATE(8106)] = 319923, + [SMALL_STATE(8107)] = 319937, + [SMALL_STATE(8108)] = 319951, + [SMALL_STATE(8109)] = 319965, + [SMALL_STATE(8110)] = 319981, + [SMALL_STATE(8111)] = 319991, + [SMALL_STATE(8112)] = 320007, + [SMALL_STATE(8113)] = 320023, + [SMALL_STATE(8114)] = 320039, + [SMALL_STATE(8115)] = 320055, + [SMALL_STATE(8116)] = 320069, + [SMALL_STATE(8117)] = 320085, + [SMALL_STATE(8118)] = 320099, + [SMALL_STATE(8119)] = 320115, + [SMALL_STATE(8120)] = 320129, + [SMALL_STATE(8121)] = 320145, + [SMALL_STATE(8122)] = 320161, + [SMALL_STATE(8123)] = 320177, + [SMALL_STATE(8124)] = 320191, + [SMALL_STATE(8125)] = 320205, + [SMALL_STATE(8126)] = 320221, + [SMALL_STATE(8127)] = 320237, + [SMALL_STATE(8128)] = 320253, + [SMALL_STATE(8129)] = 320269, + [SMALL_STATE(8130)] = 320283, + [SMALL_STATE(8131)] = 320299, + [SMALL_STATE(8132)] = 320313, + [SMALL_STATE(8133)] = 320327, + [SMALL_STATE(8134)] = 320343, + [SMALL_STATE(8135)] = 320359, + [SMALL_STATE(8136)] = 320373, + [SMALL_STATE(8137)] = 320387, + [SMALL_STATE(8138)] = 320401, + [SMALL_STATE(8139)] = 320415, + [SMALL_STATE(8140)] = 320429, + [SMALL_STATE(8141)] = 320443, + [SMALL_STATE(8142)] = 320457, + [SMALL_STATE(8143)] = 320471, + [SMALL_STATE(8144)] = 320485, + [SMALL_STATE(8145)] = 320501, + [SMALL_STATE(8146)] = 320515, + [SMALL_STATE(8147)] = 320529, + [SMALL_STATE(8148)] = 320543, + [SMALL_STATE(8149)] = 320557, + [SMALL_STATE(8150)] = 320573, + [SMALL_STATE(8151)] = 320587, + [SMALL_STATE(8152)] = 320601, + [SMALL_STATE(8153)] = 320615, + [SMALL_STATE(8154)] = 320629, + [SMALL_STATE(8155)] = 320643, + [SMALL_STATE(8156)] = 320657, + [SMALL_STATE(8157)] = 320671, + [SMALL_STATE(8158)] = 320687, + [SMALL_STATE(8159)] = 320703, + [SMALL_STATE(8160)] = 320719, + [SMALL_STATE(8161)] = 320735, + [SMALL_STATE(8162)] = 320745, + [SMALL_STATE(8163)] = 320759, + [SMALL_STATE(8164)] = 320775, + [SMALL_STATE(8165)] = 320791, + [SMALL_STATE(8166)] = 320807, + [SMALL_STATE(8167)] = 320823, + [SMALL_STATE(8168)] = 320839, + [SMALL_STATE(8169)] = 320855, + [SMALL_STATE(8170)] = 320867, + [SMALL_STATE(8171)] = 320879, + [SMALL_STATE(8172)] = 320895, + [SMALL_STATE(8173)] = 320911, + [SMALL_STATE(8174)] = 320927, + [SMALL_STATE(8175)] = 320943, + [SMALL_STATE(8176)] = 320959, + [SMALL_STATE(8177)] = 320975, + [SMALL_STATE(8178)] = 320989, + [SMALL_STATE(8179)] = 321003, + [SMALL_STATE(8180)] = 321017, + [SMALL_STATE(8181)] = 321030, + [SMALL_STATE(8182)] = 321043, + [SMALL_STATE(8183)] = 321056, + [SMALL_STATE(8184)] = 321069, + [SMALL_STATE(8185)] = 321082, + [SMALL_STATE(8186)] = 321095, + [SMALL_STATE(8187)] = 321108, + [SMALL_STATE(8188)] = 321121, + [SMALL_STATE(8189)] = 321134, + [SMALL_STATE(8190)] = 321147, + [SMALL_STATE(8191)] = 321160, + [SMALL_STATE(8192)] = 321173, + [SMALL_STATE(8193)] = 321186, + [SMALL_STATE(8194)] = 321199, + [SMALL_STATE(8195)] = 321212, + [SMALL_STATE(8196)] = 321223, + [SMALL_STATE(8197)] = 321236, + [SMALL_STATE(8198)] = 321249, + [SMALL_STATE(8199)] = 321262, + [SMALL_STATE(8200)] = 321273, + [SMALL_STATE(8201)] = 321286, + [SMALL_STATE(8202)] = 321297, + [SMALL_STATE(8203)] = 321306, + [SMALL_STATE(8204)] = 321319, + [SMALL_STATE(8205)] = 321328, + [SMALL_STATE(8206)] = 321341, + [SMALL_STATE(8207)] = 321350, + [SMALL_STATE(8208)] = 321363, + [SMALL_STATE(8209)] = 321376, + [SMALL_STATE(8210)] = 321389, + [SMALL_STATE(8211)] = 321402, + [SMALL_STATE(8212)] = 321413, + [SMALL_STATE(8213)] = 321426, + [SMALL_STATE(8214)] = 321439, + [SMALL_STATE(8215)] = 321450, + [SMALL_STATE(8216)] = 321463, + [SMALL_STATE(8217)] = 321476, + [SMALL_STATE(8218)] = 321489, + [SMALL_STATE(8219)] = 321502, + [SMALL_STATE(8220)] = 321515, + [SMALL_STATE(8221)] = 321528, + [SMALL_STATE(8222)] = 321541, + [SMALL_STATE(8223)] = 321554, + [SMALL_STATE(8224)] = 321567, + [SMALL_STATE(8225)] = 321580, + [SMALL_STATE(8226)] = 321593, + [SMALL_STATE(8227)] = 321606, + [SMALL_STATE(8228)] = 321617, + [SMALL_STATE(8229)] = 321630, + [SMALL_STATE(8230)] = 321643, + [SMALL_STATE(8231)] = 321656, + [SMALL_STATE(8232)] = 321669, + [SMALL_STATE(8233)] = 321682, + [SMALL_STATE(8234)] = 321695, + [SMALL_STATE(8235)] = 321708, + [SMALL_STATE(8236)] = 321721, + [SMALL_STATE(8237)] = 321734, + [SMALL_STATE(8238)] = 321747, + [SMALL_STATE(8239)] = 321756, + [SMALL_STATE(8240)] = 321769, + [SMALL_STATE(8241)] = 321782, + [SMALL_STATE(8242)] = 321795, + [SMALL_STATE(8243)] = 321806, + [SMALL_STATE(8244)] = 321819, + [SMALL_STATE(8245)] = 321832, + [SMALL_STATE(8246)] = 321845, + [SMALL_STATE(8247)] = 321858, + [SMALL_STATE(8248)] = 321871, + [SMALL_STATE(8249)] = 321882, + [SMALL_STATE(8250)] = 321895, + [SMALL_STATE(8251)] = 321908, + [SMALL_STATE(8252)] = 321921, + [SMALL_STATE(8253)] = 321932, + [SMALL_STATE(8254)] = 321945, + [SMALL_STATE(8255)] = 321958, + [SMALL_STATE(8256)] = 321971, + [SMALL_STATE(8257)] = 321984, + [SMALL_STATE(8258)] = 321995, + [SMALL_STATE(8259)] = 322008, + [SMALL_STATE(8260)] = 322021, + [SMALL_STATE(8261)] = 322034, + [SMALL_STATE(8262)] = 322047, + [SMALL_STATE(8263)] = 322060, + [SMALL_STATE(8264)] = 322073, + [SMALL_STATE(8265)] = 322084, + [SMALL_STATE(8266)] = 322097, + [SMALL_STATE(8267)] = 322110, + [SMALL_STATE(8268)] = 322123, + [SMALL_STATE(8269)] = 322136, + [SMALL_STATE(8270)] = 322149, + [SMALL_STATE(8271)] = 322162, + [SMALL_STATE(8272)] = 322175, + [SMALL_STATE(8273)] = 322188, + [SMALL_STATE(8274)] = 322201, + [SMALL_STATE(8275)] = 322214, + [SMALL_STATE(8276)] = 322227, + [SMALL_STATE(8277)] = 322240, + [SMALL_STATE(8278)] = 322253, + [SMALL_STATE(8279)] = 322266, + [SMALL_STATE(8280)] = 322279, + [SMALL_STATE(8281)] = 322292, + [SMALL_STATE(8282)] = 322305, + [SMALL_STATE(8283)] = 322318, + [SMALL_STATE(8284)] = 322331, + [SMALL_STATE(8285)] = 322340, + [SMALL_STATE(8286)] = 322353, + [SMALL_STATE(8287)] = 322364, + [SMALL_STATE(8288)] = 322377, + [SMALL_STATE(8289)] = 322390, + [SMALL_STATE(8290)] = 322403, + [SMALL_STATE(8291)] = 322416, + [SMALL_STATE(8292)] = 322429, + [SMALL_STATE(8293)] = 322442, + [SMALL_STATE(8294)] = 322455, + [SMALL_STATE(8295)] = 322466, + [SMALL_STATE(8296)] = 322475, + [SMALL_STATE(8297)] = 322488, + [SMALL_STATE(8298)] = 322501, + [SMALL_STATE(8299)] = 322514, + [SMALL_STATE(8300)] = 322527, + [SMALL_STATE(8301)] = 322540, + [SMALL_STATE(8302)] = 322551, + [SMALL_STATE(8303)] = 322564, + [SMALL_STATE(8304)] = 322577, + [SMALL_STATE(8305)] = 322590, + [SMALL_STATE(8306)] = 322603, + [SMALL_STATE(8307)] = 322616, + [SMALL_STATE(8308)] = 322629, + [SMALL_STATE(8309)] = 322642, + [SMALL_STATE(8310)] = 322653, + [SMALL_STATE(8311)] = 322666, + [SMALL_STATE(8312)] = 322679, + [SMALL_STATE(8313)] = 322692, + [SMALL_STATE(8314)] = 322701, + [SMALL_STATE(8315)] = 322714, + [SMALL_STATE(8316)] = 322727, + [SMALL_STATE(8317)] = 322740, + [SMALL_STATE(8318)] = 322753, + [SMALL_STATE(8319)] = 322766, + [SMALL_STATE(8320)] = 322777, + [SMALL_STATE(8321)] = 322790, + [SMALL_STATE(8322)] = 322803, + [SMALL_STATE(8323)] = 322816, + [SMALL_STATE(8324)] = 322829, + [SMALL_STATE(8325)] = 322842, + [SMALL_STATE(8326)] = 322855, + [SMALL_STATE(8327)] = 322868, + [SMALL_STATE(8328)] = 322881, + [SMALL_STATE(8329)] = 322894, + [SMALL_STATE(8330)] = 322905, + [SMALL_STATE(8331)] = 322914, + [SMALL_STATE(8332)] = 322927, + [SMALL_STATE(8333)] = 322936, + [SMALL_STATE(8334)] = 322949, + [SMALL_STATE(8335)] = 322962, + [SMALL_STATE(8336)] = 322975, + [SMALL_STATE(8337)] = 322988, + [SMALL_STATE(8338)] = 323001, + [SMALL_STATE(8339)] = 323014, + [SMALL_STATE(8340)] = 323027, + [SMALL_STATE(8341)] = 323040, + [SMALL_STATE(8342)] = 323053, + [SMALL_STATE(8343)] = 323066, + [SMALL_STATE(8344)] = 323079, + [SMALL_STATE(8345)] = 323092, + [SMALL_STATE(8346)] = 323105, + [SMALL_STATE(8347)] = 323118, + [SMALL_STATE(8348)] = 323131, + [SMALL_STATE(8349)] = 323144, + [SMALL_STATE(8350)] = 323157, + [SMALL_STATE(8351)] = 323170, + [SMALL_STATE(8352)] = 323183, + [SMALL_STATE(8353)] = 323196, + [SMALL_STATE(8354)] = 323207, + [SMALL_STATE(8355)] = 323220, + [SMALL_STATE(8356)] = 323233, + [SMALL_STATE(8357)] = 323246, + [SMALL_STATE(8358)] = 323259, + [SMALL_STATE(8359)] = 323272, + [SMALL_STATE(8360)] = 323285, + [SMALL_STATE(8361)] = 323298, + [SMALL_STATE(8362)] = 323311, + [SMALL_STATE(8363)] = 323324, + [SMALL_STATE(8364)] = 323337, + [SMALL_STATE(8365)] = 323350, + [SMALL_STATE(8366)] = 323363, + [SMALL_STATE(8367)] = 323376, + [SMALL_STATE(8368)] = 323389, + [SMALL_STATE(8369)] = 323402, + [SMALL_STATE(8370)] = 323415, + [SMALL_STATE(8371)] = 323428, + [SMALL_STATE(8372)] = 323441, + [SMALL_STATE(8373)] = 323454, + [SMALL_STATE(8374)] = 323467, + [SMALL_STATE(8375)] = 323480, + [SMALL_STATE(8376)] = 323493, + [SMALL_STATE(8377)] = 323506, + [SMALL_STATE(8378)] = 323517, + [SMALL_STATE(8379)] = 323530, + [SMALL_STATE(8380)] = 323543, + [SMALL_STATE(8381)] = 323556, + [SMALL_STATE(8382)] = 323569, + [SMALL_STATE(8383)] = 323582, + [SMALL_STATE(8384)] = 323595, + [SMALL_STATE(8385)] = 323608, + [SMALL_STATE(8386)] = 323619, + [SMALL_STATE(8387)] = 323632, + [SMALL_STATE(8388)] = 323645, + [SMALL_STATE(8389)] = 323658, + [SMALL_STATE(8390)] = 323671, + [SMALL_STATE(8391)] = 323684, + [SMALL_STATE(8392)] = 323697, + [SMALL_STATE(8393)] = 323708, + [SMALL_STATE(8394)] = 323721, + [SMALL_STATE(8395)] = 323734, + [SMALL_STATE(8396)] = 323747, + [SMALL_STATE(8397)] = 323760, + [SMALL_STATE(8398)] = 323773, + [SMALL_STATE(8399)] = 323786, + [SMALL_STATE(8400)] = 323799, + [SMALL_STATE(8401)] = 323812, + [SMALL_STATE(8402)] = 323825, + [SMALL_STATE(8403)] = 323838, + [SMALL_STATE(8404)] = 323851, + [SMALL_STATE(8405)] = 323864, + [SMALL_STATE(8406)] = 323877, + [SMALL_STATE(8407)] = 323886, + [SMALL_STATE(8408)] = 323895, + [SMALL_STATE(8409)] = 323908, + [SMALL_STATE(8410)] = 323921, + [SMALL_STATE(8411)] = 323934, + [SMALL_STATE(8412)] = 323947, + [SMALL_STATE(8413)] = 323960, + [SMALL_STATE(8414)] = 323973, + [SMALL_STATE(8415)] = 323986, + [SMALL_STATE(8416)] = 323999, + [SMALL_STATE(8417)] = 324012, + [SMALL_STATE(8418)] = 324025, + [SMALL_STATE(8419)] = 324038, + [SMALL_STATE(8420)] = 324051, + [SMALL_STATE(8421)] = 324064, + [SMALL_STATE(8422)] = 324077, + [SMALL_STATE(8423)] = 324090, + [SMALL_STATE(8424)] = 324103, + [SMALL_STATE(8425)] = 324116, + [SMALL_STATE(8426)] = 324129, + [SMALL_STATE(8427)] = 324142, + [SMALL_STATE(8428)] = 324155, + [SMALL_STATE(8429)] = 324168, + [SMALL_STATE(8430)] = 324181, + [SMALL_STATE(8431)] = 324194, + [SMALL_STATE(8432)] = 324203, + [SMALL_STATE(8433)] = 324212, + [SMALL_STATE(8434)] = 324225, + [SMALL_STATE(8435)] = 324238, + [SMALL_STATE(8436)] = 324251, + [SMALL_STATE(8437)] = 324264, + [SMALL_STATE(8438)] = 324277, + [SMALL_STATE(8439)] = 324290, + [SMALL_STATE(8440)] = 324303, + [SMALL_STATE(8441)] = 324316, + [SMALL_STATE(8442)] = 324329, + [SMALL_STATE(8443)] = 324342, + [SMALL_STATE(8444)] = 324355, + [SMALL_STATE(8445)] = 324368, + [SMALL_STATE(8446)] = 324381, + [SMALL_STATE(8447)] = 324394, + [SMALL_STATE(8448)] = 324407, + [SMALL_STATE(8449)] = 324418, + [SMALL_STATE(8450)] = 324431, + [SMALL_STATE(8451)] = 324444, + [SMALL_STATE(8452)] = 324457, + [SMALL_STATE(8453)] = 324468, + [SMALL_STATE(8454)] = 324481, + [SMALL_STATE(8455)] = 324494, + [SMALL_STATE(8456)] = 324507, + [SMALL_STATE(8457)] = 324520, + [SMALL_STATE(8458)] = 324533, + [SMALL_STATE(8459)] = 324546, + [SMALL_STATE(8460)] = 324559, + [SMALL_STATE(8461)] = 324572, + [SMALL_STATE(8462)] = 324585, + [SMALL_STATE(8463)] = 324598, + [SMALL_STATE(8464)] = 324611, + [SMALL_STATE(8465)] = 324624, + [SMALL_STATE(8466)] = 324637, + [SMALL_STATE(8467)] = 324650, + [SMALL_STATE(8468)] = 324663, + [SMALL_STATE(8469)] = 324676, + [SMALL_STATE(8470)] = 324689, + [SMALL_STATE(8471)] = 324702, + [SMALL_STATE(8472)] = 324715, + [SMALL_STATE(8473)] = 324728, + [SMALL_STATE(8474)] = 324741, + [SMALL_STATE(8475)] = 324754, + [SMALL_STATE(8476)] = 324767, + [SMALL_STATE(8477)] = 324780, + [SMALL_STATE(8478)] = 324793, + [SMALL_STATE(8479)] = 324806, + [SMALL_STATE(8480)] = 324819, + [SMALL_STATE(8481)] = 324832, + [SMALL_STATE(8482)] = 324845, + [SMALL_STATE(8483)] = 324858, + [SMALL_STATE(8484)] = 324871, + [SMALL_STATE(8485)] = 324884, + [SMALL_STATE(8486)] = 324897, + [SMALL_STATE(8487)] = 324908, + [SMALL_STATE(8488)] = 324919, + [SMALL_STATE(8489)] = 324932, + [SMALL_STATE(8490)] = 324945, + [SMALL_STATE(8491)] = 324958, + [SMALL_STATE(8492)] = 324971, + [SMALL_STATE(8493)] = 324984, + [SMALL_STATE(8494)] = 324997, + [SMALL_STATE(8495)] = 325010, + [SMALL_STATE(8496)] = 325023, + [SMALL_STATE(8497)] = 325036, + [SMALL_STATE(8498)] = 325049, + [SMALL_STATE(8499)] = 325062, + [SMALL_STATE(8500)] = 325075, + [SMALL_STATE(8501)] = 325088, + [SMALL_STATE(8502)] = 325099, + [SMALL_STATE(8503)] = 325110, + [SMALL_STATE(8504)] = 325123, + [SMALL_STATE(8505)] = 325136, + [SMALL_STATE(8506)] = 325149, + [SMALL_STATE(8507)] = 325162, + [SMALL_STATE(8508)] = 325175, + [SMALL_STATE(8509)] = 325188, + [SMALL_STATE(8510)] = 325201, + [SMALL_STATE(8511)] = 325214, + [SMALL_STATE(8512)] = 325227, + [SMALL_STATE(8513)] = 325240, + [SMALL_STATE(8514)] = 325253, + [SMALL_STATE(8515)] = 325266, + [SMALL_STATE(8516)] = 325279, + [SMALL_STATE(8517)] = 325292, + [SMALL_STATE(8518)] = 325305, + [SMALL_STATE(8519)] = 325318, + [SMALL_STATE(8520)] = 325331, + [SMALL_STATE(8521)] = 325344, + [SMALL_STATE(8522)] = 325355, + [SMALL_STATE(8523)] = 325368, + [SMALL_STATE(8524)] = 325379, + [SMALL_STATE(8525)] = 325388, + [SMALL_STATE(8526)] = 325401, + [SMALL_STATE(8527)] = 325414, + [SMALL_STATE(8528)] = 325427, + [SMALL_STATE(8529)] = 325440, + [SMALL_STATE(8530)] = 325453, + [SMALL_STATE(8531)] = 325466, + [SMALL_STATE(8532)] = 325479, + [SMALL_STATE(8533)] = 325492, + [SMALL_STATE(8534)] = 325505, + [SMALL_STATE(8535)] = 325518, + [SMALL_STATE(8536)] = 325531, + [SMALL_STATE(8537)] = 325544, + [SMALL_STATE(8538)] = 325557, + [SMALL_STATE(8539)] = 325568, + [SMALL_STATE(8540)] = 325581, + [SMALL_STATE(8541)] = 325592, + [SMALL_STATE(8542)] = 325605, + [SMALL_STATE(8543)] = 325618, + [SMALL_STATE(8544)] = 325631, + [SMALL_STATE(8545)] = 325640, + [SMALL_STATE(8546)] = 325653, + [SMALL_STATE(8547)] = 325662, + [SMALL_STATE(8548)] = 325673, + [SMALL_STATE(8549)] = 325686, + [SMALL_STATE(8550)] = 325697, + [SMALL_STATE(8551)] = 325708, + [SMALL_STATE(8552)] = 325721, + [SMALL_STATE(8553)] = 325734, + [SMALL_STATE(8554)] = 325747, + [SMALL_STATE(8555)] = 325758, + [SMALL_STATE(8556)] = 325771, + [SMALL_STATE(8557)] = 325784, + [SMALL_STATE(8558)] = 325797, + [SMALL_STATE(8559)] = 325810, + [SMALL_STATE(8560)] = 325823, + [SMALL_STATE(8561)] = 325832, + [SMALL_STATE(8562)] = 325843, + [SMALL_STATE(8563)] = 325856, + [SMALL_STATE(8564)] = 325869, + [SMALL_STATE(8565)] = 325882, + [SMALL_STATE(8566)] = 325895, + [SMALL_STATE(8567)] = 325908, + [SMALL_STATE(8568)] = 325919, + [SMALL_STATE(8569)] = 325932, + [SMALL_STATE(8570)] = 325943, + [SMALL_STATE(8571)] = 325956, + [SMALL_STATE(8572)] = 325969, + [SMALL_STATE(8573)] = 325982, + [SMALL_STATE(8574)] = 325995, + [SMALL_STATE(8575)] = 326008, + [SMALL_STATE(8576)] = 326021, + [SMALL_STATE(8577)] = 326034, + [SMALL_STATE(8578)] = 326047, + [SMALL_STATE(8579)] = 326060, + [SMALL_STATE(8580)] = 326073, + [SMALL_STATE(8581)] = 326086, + [SMALL_STATE(8582)] = 326099, + [SMALL_STATE(8583)] = 326112, + [SMALL_STATE(8584)] = 326125, + [SMALL_STATE(8585)] = 326138, + [SMALL_STATE(8586)] = 326151, + [SMALL_STATE(8587)] = 326164, + [SMALL_STATE(8588)] = 326177, + [SMALL_STATE(8589)] = 326190, + [SMALL_STATE(8590)] = 326203, + [SMALL_STATE(8591)] = 326216, + [SMALL_STATE(8592)] = 326229, + [SMALL_STATE(8593)] = 326242, + [SMALL_STATE(8594)] = 326255, + [SMALL_STATE(8595)] = 326268, + [SMALL_STATE(8596)] = 326281, + [SMALL_STATE(8597)] = 326292, + [SMALL_STATE(8598)] = 326305, + [SMALL_STATE(8599)] = 326318, + [SMALL_STATE(8600)] = 326331, + [SMALL_STATE(8601)] = 326344, + [SMALL_STATE(8602)] = 326357, + [SMALL_STATE(8603)] = 326370, + [SMALL_STATE(8604)] = 326383, + [SMALL_STATE(8605)] = 326396, + [SMALL_STATE(8606)] = 326409, + [SMALL_STATE(8607)] = 326422, + [SMALL_STATE(8608)] = 326435, + [SMALL_STATE(8609)] = 326448, + [SMALL_STATE(8610)] = 326461, + [SMALL_STATE(8611)] = 326474, + [SMALL_STATE(8612)] = 326487, + [SMALL_STATE(8613)] = 326500, + [SMALL_STATE(8614)] = 326513, + [SMALL_STATE(8615)] = 326526, + [SMALL_STATE(8616)] = 326539, + [SMALL_STATE(8617)] = 326552, + [SMALL_STATE(8618)] = 326565, + [SMALL_STATE(8619)] = 326578, + [SMALL_STATE(8620)] = 326591, + [SMALL_STATE(8621)] = 326604, + [SMALL_STATE(8622)] = 326617, + [SMALL_STATE(8623)] = 326628, + [SMALL_STATE(8624)] = 326637, + [SMALL_STATE(8625)] = 326646, + [SMALL_STATE(8626)] = 326659, + [SMALL_STATE(8627)] = 326672, + [SMALL_STATE(8628)] = 326683, + [SMALL_STATE(8629)] = 326696, + [SMALL_STATE(8630)] = 326709, + [SMALL_STATE(8631)] = 326722, + [SMALL_STATE(8632)] = 326735, + [SMALL_STATE(8633)] = 326748, + [SMALL_STATE(8634)] = 326761, + [SMALL_STATE(8635)] = 326774, + [SMALL_STATE(8636)] = 326787, + [SMALL_STATE(8637)] = 326800, + [SMALL_STATE(8638)] = 326813, + [SMALL_STATE(8639)] = 326826, + [SMALL_STATE(8640)] = 326839, + [SMALL_STATE(8641)] = 326852, + [SMALL_STATE(8642)] = 326865, + [SMALL_STATE(8643)] = 326874, + [SMALL_STATE(8644)] = 326885, + [SMALL_STATE(8645)] = 326898, + [SMALL_STATE(8646)] = 326911, + [SMALL_STATE(8647)] = 326924, + [SMALL_STATE(8648)] = 326935, + [SMALL_STATE(8649)] = 326948, + [SMALL_STATE(8650)] = 326961, + [SMALL_STATE(8651)] = 326974, + [SMALL_STATE(8652)] = 326987, + [SMALL_STATE(8653)] = 327000, + [SMALL_STATE(8654)] = 327010, + [SMALL_STATE(8655)] = 327020, + [SMALL_STATE(8656)] = 327030, + [SMALL_STATE(8657)] = 327040, + [SMALL_STATE(8658)] = 327050, + [SMALL_STATE(8659)] = 327060, + [SMALL_STATE(8660)] = 327070, + [SMALL_STATE(8661)] = 327080, + [SMALL_STATE(8662)] = 327090, + [SMALL_STATE(8663)] = 327100, + [SMALL_STATE(8664)] = 327110, + [SMALL_STATE(8665)] = 327120, + [SMALL_STATE(8666)] = 327130, + [SMALL_STATE(8667)] = 327140, + [SMALL_STATE(8668)] = 327150, + [SMALL_STATE(8669)] = 327160, + [SMALL_STATE(8670)] = 327170, + [SMALL_STATE(8671)] = 327180, + [SMALL_STATE(8672)] = 327190, + [SMALL_STATE(8673)] = 327198, + [SMALL_STATE(8674)] = 327208, + [SMALL_STATE(8675)] = 327218, + [SMALL_STATE(8676)] = 327228, + [SMALL_STATE(8677)] = 327238, + [SMALL_STATE(8678)] = 327248, + [SMALL_STATE(8679)] = 327258, + [SMALL_STATE(8680)] = 327268, + [SMALL_STATE(8681)] = 327278, + [SMALL_STATE(8682)] = 327288, + [SMALL_STATE(8683)] = 327298, + [SMALL_STATE(8684)] = 327308, + [SMALL_STATE(8685)] = 327318, + [SMALL_STATE(8686)] = 327328, + [SMALL_STATE(8687)] = 327338, + [SMALL_STATE(8688)] = 327348, + [SMALL_STATE(8689)] = 327358, + [SMALL_STATE(8690)] = 327368, + [SMALL_STATE(8691)] = 327378, + [SMALL_STATE(8692)] = 327388, + [SMALL_STATE(8693)] = 327398, + [SMALL_STATE(8694)] = 327408, + [SMALL_STATE(8695)] = 327418, + [SMALL_STATE(8696)] = 327428, + [SMALL_STATE(8697)] = 327438, + [SMALL_STATE(8698)] = 327446, + [SMALL_STATE(8699)] = 327456, + [SMALL_STATE(8700)] = 327466, + [SMALL_STATE(8701)] = 327476, + [SMALL_STATE(8702)] = 327486, + [SMALL_STATE(8703)] = 327494, + [SMALL_STATE(8704)] = 327504, + [SMALL_STATE(8705)] = 327512, + [SMALL_STATE(8706)] = 327522, + [SMALL_STATE(8707)] = 327532, + [SMALL_STATE(8708)] = 327542, + [SMALL_STATE(8709)] = 327552, + [SMALL_STATE(8710)] = 327562, + [SMALL_STATE(8711)] = 327572, + [SMALL_STATE(8712)] = 327580, + [SMALL_STATE(8713)] = 327590, + [SMALL_STATE(8714)] = 327600, + [SMALL_STATE(8715)] = 327610, + [SMALL_STATE(8716)] = 327620, + [SMALL_STATE(8717)] = 327630, + [SMALL_STATE(8718)] = 327640, + [SMALL_STATE(8719)] = 327650, + [SMALL_STATE(8720)] = 327660, + [SMALL_STATE(8721)] = 327670, + [SMALL_STATE(8722)] = 327678, + [SMALL_STATE(8723)] = 327688, + [SMALL_STATE(8724)] = 327698, + [SMALL_STATE(8725)] = 327708, + [SMALL_STATE(8726)] = 327718, + [SMALL_STATE(8727)] = 327728, + [SMALL_STATE(8728)] = 327738, + [SMALL_STATE(8729)] = 327748, + [SMALL_STATE(8730)] = 327758, + [SMALL_STATE(8731)] = 327766, + [SMALL_STATE(8732)] = 327774, + [SMALL_STATE(8733)] = 327784, + [SMALL_STATE(8734)] = 327794, + [SMALL_STATE(8735)] = 327804, + [SMALL_STATE(8736)] = 327814, + [SMALL_STATE(8737)] = 327824, + [SMALL_STATE(8738)] = 327834, + [SMALL_STATE(8739)] = 327844, + [SMALL_STATE(8740)] = 327852, + [SMALL_STATE(8741)] = 327862, + [SMALL_STATE(8742)] = 327872, + [SMALL_STATE(8743)] = 327882, + [SMALL_STATE(8744)] = 327892, + [SMALL_STATE(8745)] = 327902, + [SMALL_STATE(8746)] = 327910, + [SMALL_STATE(8747)] = 327918, + [SMALL_STATE(8748)] = 327928, + [SMALL_STATE(8749)] = 327938, + [SMALL_STATE(8750)] = 327948, + [SMALL_STATE(8751)] = 327958, + [SMALL_STATE(8752)] = 327968, + [SMALL_STATE(8753)] = 327978, + [SMALL_STATE(8754)] = 327988, + [SMALL_STATE(8755)] = 327998, + [SMALL_STATE(8756)] = 328008, + [SMALL_STATE(8757)] = 328018, + [SMALL_STATE(8758)] = 328028, + [SMALL_STATE(8759)] = 328038, + [SMALL_STATE(8760)] = 328046, + [SMALL_STATE(8761)] = 328056, + [SMALL_STATE(8762)] = 328066, + [SMALL_STATE(8763)] = 328076, + [SMALL_STATE(8764)] = 328084, + [SMALL_STATE(8765)] = 328094, + [SMALL_STATE(8766)] = 328102, + [SMALL_STATE(8767)] = 328112, + [SMALL_STATE(8768)] = 328122, + [SMALL_STATE(8769)] = 328132, + [SMALL_STATE(8770)] = 328142, + [SMALL_STATE(8771)] = 328152, + [SMALL_STATE(8772)] = 328162, + [SMALL_STATE(8773)] = 328172, + [SMALL_STATE(8774)] = 328182, + [SMALL_STATE(8775)] = 328192, + [SMALL_STATE(8776)] = 328202, + [SMALL_STATE(8777)] = 328210, + [SMALL_STATE(8778)] = 328220, + [SMALL_STATE(8779)] = 328230, + [SMALL_STATE(8780)] = 328240, + [SMALL_STATE(8781)] = 328248, + [SMALL_STATE(8782)] = 328258, + [SMALL_STATE(8783)] = 328268, + [SMALL_STATE(8784)] = 328278, + [SMALL_STATE(8785)] = 328288, + [SMALL_STATE(8786)] = 328298, + [SMALL_STATE(8787)] = 328308, + [SMALL_STATE(8788)] = 328318, + [SMALL_STATE(8789)] = 328328, + [SMALL_STATE(8790)] = 328338, + [SMALL_STATE(8791)] = 328348, + [SMALL_STATE(8792)] = 328358, + [SMALL_STATE(8793)] = 328368, + [SMALL_STATE(8794)] = 328378, + [SMALL_STATE(8795)] = 328388, + [SMALL_STATE(8796)] = 328396, + [SMALL_STATE(8797)] = 328406, + [SMALL_STATE(8798)] = 328416, + [SMALL_STATE(8799)] = 328426, + [SMALL_STATE(8800)] = 328436, + [SMALL_STATE(8801)] = 328446, + [SMALL_STATE(8802)] = 328456, + [SMALL_STATE(8803)] = 328466, + [SMALL_STATE(8804)] = 328476, + [SMALL_STATE(8805)] = 328486, + [SMALL_STATE(8806)] = 328496, + [SMALL_STATE(8807)] = 328506, + [SMALL_STATE(8808)] = 328516, + [SMALL_STATE(8809)] = 328526, + [SMALL_STATE(8810)] = 328536, + [SMALL_STATE(8811)] = 328546, + [SMALL_STATE(8812)] = 328556, + [SMALL_STATE(8813)] = 328566, + [SMALL_STATE(8814)] = 328576, + [SMALL_STATE(8815)] = 328586, + [SMALL_STATE(8816)] = 328596, + [SMALL_STATE(8817)] = 328606, + [SMALL_STATE(8818)] = 328616, + [SMALL_STATE(8819)] = 328626, + [SMALL_STATE(8820)] = 328636, + [SMALL_STATE(8821)] = 328646, + [SMALL_STATE(8822)] = 328656, + [SMALL_STATE(8823)] = 328666, + [SMALL_STATE(8824)] = 328676, + [SMALL_STATE(8825)] = 328686, + [SMALL_STATE(8826)] = 328696, + [SMALL_STATE(8827)] = 328706, + [SMALL_STATE(8828)] = 328714, + [SMALL_STATE(8829)] = 328724, + [SMALL_STATE(8830)] = 328734, + [SMALL_STATE(8831)] = 328742, + [SMALL_STATE(8832)] = 328752, + [SMALL_STATE(8833)] = 328762, + [SMALL_STATE(8834)] = 328772, + [SMALL_STATE(8835)] = 328780, + [SMALL_STATE(8836)] = 328790, + [SMALL_STATE(8837)] = 328798, + [SMALL_STATE(8838)] = 328806, + [SMALL_STATE(8839)] = 328816, + [SMALL_STATE(8840)] = 328826, + [SMALL_STATE(8841)] = 328836, + [SMALL_STATE(8842)] = 328846, + [SMALL_STATE(8843)] = 328856, + [SMALL_STATE(8844)] = 328866, + [SMALL_STATE(8845)] = 328874, + [SMALL_STATE(8846)] = 328884, + [SMALL_STATE(8847)] = 328894, + [SMALL_STATE(8848)] = 328904, + [SMALL_STATE(8849)] = 328914, + [SMALL_STATE(8850)] = 328924, + [SMALL_STATE(8851)] = 328934, + [SMALL_STATE(8852)] = 328944, + [SMALL_STATE(8853)] = 328954, + [SMALL_STATE(8854)] = 328964, + [SMALL_STATE(8855)] = 328974, + [SMALL_STATE(8856)] = 328984, + [SMALL_STATE(8857)] = 328994, + [SMALL_STATE(8858)] = 329004, + [SMALL_STATE(8859)] = 329014, + [SMALL_STATE(8860)] = 329024, + [SMALL_STATE(8861)] = 329032, + [SMALL_STATE(8862)] = 329042, + [SMALL_STATE(8863)] = 329052, + [SMALL_STATE(8864)] = 329060, + [SMALL_STATE(8865)] = 329070, + [SMALL_STATE(8866)] = 329080, + [SMALL_STATE(8867)] = 329090, + [SMALL_STATE(8868)] = 329100, + [SMALL_STATE(8869)] = 329110, + [SMALL_STATE(8870)] = 329120, + [SMALL_STATE(8871)] = 329130, + [SMALL_STATE(8872)] = 329140, + [SMALL_STATE(8873)] = 329150, + [SMALL_STATE(8874)] = 329160, + [SMALL_STATE(8875)] = 329170, + [SMALL_STATE(8876)] = 329180, + [SMALL_STATE(8877)] = 329190, + [SMALL_STATE(8878)] = 329200, + [SMALL_STATE(8879)] = 329208, + [SMALL_STATE(8880)] = 329218, + [SMALL_STATE(8881)] = 329228, + [SMALL_STATE(8882)] = 329238, + [SMALL_STATE(8883)] = 329248, + [SMALL_STATE(8884)] = 329258, + [SMALL_STATE(8885)] = 329268, + [SMALL_STATE(8886)] = 329278, + [SMALL_STATE(8887)] = 329288, + [SMALL_STATE(8888)] = 329296, + [SMALL_STATE(8889)] = 329306, + [SMALL_STATE(8890)] = 329316, + [SMALL_STATE(8891)] = 329326, + [SMALL_STATE(8892)] = 329334, + [SMALL_STATE(8893)] = 329344, + [SMALL_STATE(8894)] = 329354, + [SMALL_STATE(8895)] = 329364, + [SMALL_STATE(8896)] = 329374, + [SMALL_STATE(8897)] = 329384, + [SMALL_STATE(8898)] = 329394, + [SMALL_STATE(8899)] = 329404, + [SMALL_STATE(8900)] = 329414, + [SMALL_STATE(8901)] = 329424, + [SMALL_STATE(8902)] = 329434, + [SMALL_STATE(8903)] = 329444, + [SMALL_STATE(8904)] = 329454, + [SMALL_STATE(8905)] = 329464, + [SMALL_STATE(8906)] = 329474, + [SMALL_STATE(8907)] = 329484, + [SMALL_STATE(8908)] = 329494, + [SMALL_STATE(8909)] = 329502, + [SMALL_STATE(8910)] = 329512, + [SMALL_STATE(8911)] = 329522, + [SMALL_STATE(8912)] = 329530, + [SMALL_STATE(8913)] = 329540, + [SMALL_STATE(8914)] = 329550, + [SMALL_STATE(8915)] = 329560, + [SMALL_STATE(8916)] = 329570, + [SMALL_STATE(8917)] = 329580, + [SMALL_STATE(8918)] = 329590, + [SMALL_STATE(8919)] = 329600, + [SMALL_STATE(8920)] = 329610, + [SMALL_STATE(8921)] = 329620, + [SMALL_STATE(8922)] = 329630, + [SMALL_STATE(8923)] = 329640, + [SMALL_STATE(8924)] = 329650, + [SMALL_STATE(8925)] = 329658, + [SMALL_STATE(8926)] = 329668, + [SMALL_STATE(8927)] = 329678, + [SMALL_STATE(8928)] = 329688, + [SMALL_STATE(8929)] = 329698, + [SMALL_STATE(8930)] = 329708, + [SMALL_STATE(8931)] = 329718, + [SMALL_STATE(8932)] = 329728, + [SMALL_STATE(8933)] = 329738, + [SMALL_STATE(8934)] = 329748, + [SMALL_STATE(8935)] = 329758, + [SMALL_STATE(8936)] = 329768, + [SMALL_STATE(8937)] = 329778, + [SMALL_STATE(8938)] = 329788, + [SMALL_STATE(8939)] = 329798, + [SMALL_STATE(8940)] = 329808, + [SMALL_STATE(8941)] = 329818, + [SMALL_STATE(8942)] = 329828, + [SMALL_STATE(8943)] = 329838, + [SMALL_STATE(8944)] = 329848, + [SMALL_STATE(8945)] = 329856, + [SMALL_STATE(8946)] = 329866, + [SMALL_STATE(8947)] = 329876, + [SMALL_STATE(8948)] = 329886, + [SMALL_STATE(8949)] = 329894, + [SMALL_STATE(8950)] = 329904, + [SMALL_STATE(8951)] = 329914, + [SMALL_STATE(8952)] = 329924, + [SMALL_STATE(8953)] = 329934, + [SMALL_STATE(8954)] = 329942, + [SMALL_STATE(8955)] = 329950, + [SMALL_STATE(8956)] = 329960, + [SMALL_STATE(8957)] = 329970, + [SMALL_STATE(8958)] = 329980, + [SMALL_STATE(8959)] = 329990, + [SMALL_STATE(8960)] = 330000, + [SMALL_STATE(8961)] = 330010, + [SMALL_STATE(8962)] = 330020, + [SMALL_STATE(8963)] = 330030, + [SMALL_STATE(8964)] = 330040, + [SMALL_STATE(8965)] = 330048, + [SMALL_STATE(8966)] = 330058, + [SMALL_STATE(8967)] = 330068, + [SMALL_STATE(8968)] = 330078, + [SMALL_STATE(8969)] = 330088, + [SMALL_STATE(8970)] = 330098, + [SMALL_STATE(8971)] = 330108, + [SMALL_STATE(8972)] = 330116, + [SMALL_STATE(8973)] = 330126, + [SMALL_STATE(8974)] = 330136, + [SMALL_STATE(8975)] = 330146, + [SMALL_STATE(8976)] = 330156, + [SMALL_STATE(8977)] = 330164, + [SMALL_STATE(8978)] = 330174, + [SMALL_STATE(8979)] = 330184, + [SMALL_STATE(8980)] = 330194, + [SMALL_STATE(8981)] = 330204, + [SMALL_STATE(8982)] = 330214, + [SMALL_STATE(8983)] = 330224, + [SMALL_STATE(8984)] = 330234, + [SMALL_STATE(8985)] = 330242, + [SMALL_STATE(8986)] = 330252, + [SMALL_STATE(8987)] = 330262, + [SMALL_STATE(8988)] = 330270, + [SMALL_STATE(8989)] = 330280, + [SMALL_STATE(8990)] = 330290, + [SMALL_STATE(8991)] = 330300, + [SMALL_STATE(8992)] = 330310, + [SMALL_STATE(8993)] = 330320, + [SMALL_STATE(8994)] = 330330, + [SMALL_STATE(8995)] = 330340, + [SMALL_STATE(8996)] = 330350, + [SMALL_STATE(8997)] = 330360, + [SMALL_STATE(8998)] = 330368, + [SMALL_STATE(8999)] = 330378, + [SMALL_STATE(9000)] = 330388, + [SMALL_STATE(9001)] = 330398, + [SMALL_STATE(9002)] = 330408, + [SMALL_STATE(9003)] = 330418, + [SMALL_STATE(9004)] = 330428, + [SMALL_STATE(9005)] = 330438, + [SMALL_STATE(9006)] = 330448, + [SMALL_STATE(9007)] = 330458, + [SMALL_STATE(9008)] = 330468, + [SMALL_STATE(9009)] = 330478, + [SMALL_STATE(9010)] = 330488, + [SMALL_STATE(9011)] = 330498, + [SMALL_STATE(9012)] = 330508, + [SMALL_STATE(9013)] = 330518, + [SMALL_STATE(9014)] = 330528, + [SMALL_STATE(9015)] = 330538, + [SMALL_STATE(9016)] = 330548, + [SMALL_STATE(9017)] = 330558, + [SMALL_STATE(9018)] = 330568, + [SMALL_STATE(9019)] = 330578, + [SMALL_STATE(9020)] = 330588, + [SMALL_STATE(9021)] = 330598, + [SMALL_STATE(9022)] = 330608, + [SMALL_STATE(9023)] = 330618, + [SMALL_STATE(9024)] = 330628, + [SMALL_STATE(9025)] = 330638, + [SMALL_STATE(9026)] = 330648, + [SMALL_STATE(9027)] = 330658, + [SMALL_STATE(9028)] = 330668, + [SMALL_STATE(9029)] = 330678, + [SMALL_STATE(9030)] = 330688, + [SMALL_STATE(9031)] = 330698, + [SMALL_STATE(9032)] = 330708, + [SMALL_STATE(9033)] = 330718, + [SMALL_STATE(9034)] = 330728, + [SMALL_STATE(9035)] = 330738, + [SMALL_STATE(9036)] = 330748, + [SMALL_STATE(9037)] = 330758, + [SMALL_STATE(9038)] = 330768, + [SMALL_STATE(9039)] = 330778, + [SMALL_STATE(9040)] = 330788, + [SMALL_STATE(9041)] = 330798, + [SMALL_STATE(9042)] = 330808, + [SMALL_STATE(9043)] = 330818, + [SMALL_STATE(9044)] = 330828, + [SMALL_STATE(9045)] = 330838, + [SMALL_STATE(9046)] = 330848, + [SMALL_STATE(9047)] = 330858, + [SMALL_STATE(9048)] = 330868, + [SMALL_STATE(9049)] = 330878, + [SMALL_STATE(9050)] = 330888, + [SMALL_STATE(9051)] = 330898, + [SMALL_STATE(9052)] = 330908, + [SMALL_STATE(9053)] = 330918, + [SMALL_STATE(9054)] = 330928, + [SMALL_STATE(9055)] = 330938, + [SMALL_STATE(9056)] = 330948, + [SMALL_STATE(9057)] = 330958, + [SMALL_STATE(9058)] = 330968, + [SMALL_STATE(9059)] = 330978, + [SMALL_STATE(9060)] = 330988, + [SMALL_STATE(9061)] = 330998, + [SMALL_STATE(9062)] = 331008, + [SMALL_STATE(9063)] = 331018, + [SMALL_STATE(9064)] = 331028, + [SMALL_STATE(9065)] = 331036, + [SMALL_STATE(9066)] = 331046, + [SMALL_STATE(9067)] = 331056, + [SMALL_STATE(9068)] = 331066, + [SMALL_STATE(9069)] = 331076, + [SMALL_STATE(9070)] = 331086, + [SMALL_STATE(9071)] = 331096, + [SMALL_STATE(9072)] = 331106, + [SMALL_STATE(9073)] = 331116, + [SMALL_STATE(9074)] = 331126, + [SMALL_STATE(9075)] = 331136, + [SMALL_STATE(9076)] = 331146, + [SMALL_STATE(9077)] = 331154, + [SMALL_STATE(9078)] = 331164, + [SMALL_STATE(9079)] = 331172, + [SMALL_STATE(9080)] = 331182, + [SMALL_STATE(9081)] = 331192, + [SMALL_STATE(9082)] = 331202, + [SMALL_STATE(9083)] = 331212, + [SMALL_STATE(9084)] = 331222, + [SMALL_STATE(9085)] = 331232, + [SMALL_STATE(9086)] = 331242, + [SMALL_STATE(9087)] = 331252, + [SMALL_STATE(9088)] = 331262, + [SMALL_STATE(9089)] = 331272, + [SMALL_STATE(9090)] = 331282, + [SMALL_STATE(9091)] = 331292, + [SMALL_STATE(9092)] = 331302, + [SMALL_STATE(9093)] = 331312, + [SMALL_STATE(9094)] = 331322, + [SMALL_STATE(9095)] = 331332, + [SMALL_STATE(9096)] = 331342, + [SMALL_STATE(9097)] = 331352, + [SMALL_STATE(9098)] = 331362, + [SMALL_STATE(9099)] = 331372, + [SMALL_STATE(9100)] = 331382, + [SMALL_STATE(9101)] = 331392, + [SMALL_STATE(9102)] = 331402, + [SMALL_STATE(9103)] = 331412, + [SMALL_STATE(9104)] = 331422, + [SMALL_STATE(9105)] = 331432, + [SMALL_STATE(9106)] = 331442, + [SMALL_STATE(9107)] = 331452, + [SMALL_STATE(9108)] = 331462, + [SMALL_STATE(9109)] = 331472, + [SMALL_STATE(9110)] = 331482, + [SMALL_STATE(9111)] = 331492, + [SMALL_STATE(9112)] = 331502, + [SMALL_STATE(9113)] = 331512, + [SMALL_STATE(9114)] = 331522, + [SMALL_STATE(9115)] = 331529, + [SMALL_STATE(9116)] = 331536, + [SMALL_STATE(9117)] = 331543, + [SMALL_STATE(9118)] = 331550, + [SMALL_STATE(9119)] = 331557, + [SMALL_STATE(9120)] = 331564, + [SMALL_STATE(9121)] = 331571, + [SMALL_STATE(9122)] = 331578, + [SMALL_STATE(9123)] = 331585, + [SMALL_STATE(9124)] = 331592, + [SMALL_STATE(9125)] = 331599, + [SMALL_STATE(9126)] = 331606, + [SMALL_STATE(9127)] = 331613, + [SMALL_STATE(9128)] = 331620, + [SMALL_STATE(9129)] = 331627, + [SMALL_STATE(9130)] = 331634, + [SMALL_STATE(9131)] = 331641, + [SMALL_STATE(9132)] = 331648, + [SMALL_STATE(9133)] = 331655, + [SMALL_STATE(9134)] = 331662, + [SMALL_STATE(9135)] = 331669, + [SMALL_STATE(9136)] = 331676, + [SMALL_STATE(9137)] = 331683, + [SMALL_STATE(9138)] = 331690, + [SMALL_STATE(9139)] = 331697, + [SMALL_STATE(9140)] = 331704, + [SMALL_STATE(9141)] = 331711, + [SMALL_STATE(9142)] = 331718, + [SMALL_STATE(9143)] = 331725, + [SMALL_STATE(9144)] = 331732, + [SMALL_STATE(9145)] = 331739, + [SMALL_STATE(9146)] = 331746, + [SMALL_STATE(9147)] = 331753, + [SMALL_STATE(9148)] = 331760, + [SMALL_STATE(9149)] = 331767, + [SMALL_STATE(9150)] = 331774, + [SMALL_STATE(9151)] = 331781, + [SMALL_STATE(9152)] = 331788, + [SMALL_STATE(9153)] = 331795, + [SMALL_STATE(9154)] = 331802, + [SMALL_STATE(9155)] = 331809, + [SMALL_STATE(9156)] = 331816, + [SMALL_STATE(9157)] = 331823, + [SMALL_STATE(9158)] = 331830, + [SMALL_STATE(9159)] = 331837, + [SMALL_STATE(9160)] = 331844, + [SMALL_STATE(9161)] = 331851, + [SMALL_STATE(9162)] = 331858, + [SMALL_STATE(9163)] = 331865, + [SMALL_STATE(9164)] = 331872, + [SMALL_STATE(9165)] = 331879, + [SMALL_STATE(9166)] = 331886, + [SMALL_STATE(9167)] = 331893, + [SMALL_STATE(9168)] = 331900, + [SMALL_STATE(9169)] = 331907, + [SMALL_STATE(9170)] = 331914, + [SMALL_STATE(9171)] = 331921, + [SMALL_STATE(9172)] = 331928, + [SMALL_STATE(9173)] = 331935, + [SMALL_STATE(9174)] = 331942, + [SMALL_STATE(9175)] = 331949, + [SMALL_STATE(9176)] = 331956, + [SMALL_STATE(9177)] = 331963, + [SMALL_STATE(9178)] = 331970, + [SMALL_STATE(9179)] = 331977, + [SMALL_STATE(9180)] = 331984, + [SMALL_STATE(9181)] = 331991, + [SMALL_STATE(9182)] = 331998, + [SMALL_STATE(9183)] = 332005, + [SMALL_STATE(9184)] = 332012, + [SMALL_STATE(9185)] = 332019, + [SMALL_STATE(9186)] = 332026, + [SMALL_STATE(9187)] = 332033, + [SMALL_STATE(9188)] = 332040, + [SMALL_STATE(9189)] = 332047, + [SMALL_STATE(9190)] = 332054, + [SMALL_STATE(9191)] = 332061, + [SMALL_STATE(9192)] = 332068, + [SMALL_STATE(9193)] = 332075, + [SMALL_STATE(9194)] = 332082, + [SMALL_STATE(9195)] = 332089, + [SMALL_STATE(9196)] = 332096, + [SMALL_STATE(9197)] = 332103, + [SMALL_STATE(9198)] = 332110, + [SMALL_STATE(9199)] = 332117, + [SMALL_STATE(9200)] = 332124, + [SMALL_STATE(9201)] = 332131, + [SMALL_STATE(9202)] = 332138, + [SMALL_STATE(9203)] = 332145, + [SMALL_STATE(9204)] = 332152, + [SMALL_STATE(9205)] = 332159, + [SMALL_STATE(9206)] = 332166, + [SMALL_STATE(9207)] = 332173, + [SMALL_STATE(9208)] = 332180, + [SMALL_STATE(9209)] = 332187, + [SMALL_STATE(9210)] = 332194, + [SMALL_STATE(9211)] = 332201, + [SMALL_STATE(9212)] = 332208, + [SMALL_STATE(9213)] = 332215, + [SMALL_STATE(9214)] = 332222, + [SMALL_STATE(9215)] = 332229, + [SMALL_STATE(9216)] = 332236, + [SMALL_STATE(9217)] = 332243, + [SMALL_STATE(9218)] = 332250, + [SMALL_STATE(9219)] = 332257, + [SMALL_STATE(9220)] = 332264, + [SMALL_STATE(9221)] = 332271, + [SMALL_STATE(9222)] = 332278, + [SMALL_STATE(9223)] = 332285, + [SMALL_STATE(9224)] = 332292, + [SMALL_STATE(9225)] = 332299, + [SMALL_STATE(9226)] = 332306, + [SMALL_STATE(9227)] = 332313, + [SMALL_STATE(9228)] = 332320, + [SMALL_STATE(9229)] = 332327, + [SMALL_STATE(9230)] = 332334, + [SMALL_STATE(9231)] = 332341, + [SMALL_STATE(9232)] = 332348, + [SMALL_STATE(9233)] = 332355, + [SMALL_STATE(9234)] = 332362, + [SMALL_STATE(9235)] = 332369, + [SMALL_STATE(9236)] = 332376, + [SMALL_STATE(9237)] = 332383, + [SMALL_STATE(9238)] = 332390, + [SMALL_STATE(9239)] = 332397, + [SMALL_STATE(9240)] = 332404, + [SMALL_STATE(9241)] = 332411, + [SMALL_STATE(9242)] = 332418, + [SMALL_STATE(9243)] = 332425, + [SMALL_STATE(9244)] = 332432, + [SMALL_STATE(9245)] = 332439, + [SMALL_STATE(9246)] = 332446, + [SMALL_STATE(9247)] = 332453, + [SMALL_STATE(9248)] = 332460, + [SMALL_STATE(9249)] = 332467, + [SMALL_STATE(9250)] = 332474, + [SMALL_STATE(9251)] = 332481, + [SMALL_STATE(9252)] = 332488, + [SMALL_STATE(9253)] = 332495, + [SMALL_STATE(9254)] = 332502, + [SMALL_STATE(9255)] = 332509, + [SMALL_STATE(9256)] = 332516, + [SMALL_STATE(9257)] = 332523, + [SMALL_STATE(9258)] = 332530, + [SMALL_STATE(9259)] = 332537, + [SMALL_STATE(9260)] = 332544, + [SMALL_STATE(9261)] = 332551, + [SMALL_STATE(9262)] = 332558, + [SMALL_STATE(9263)] = 332565, + [SMALL_STATE(9264)] = 332572, + [SMALL_STATE(9265)] = 332579, + [SMALL_STATE(9266)] = 332586, + [SMALL_STATE(9267)] = 332593, + [SMALL_STATE(9268)] = 332600, + [SMALL_STATE(9269)] = 332607, + [SMALL_STATE(9270)] = 332614, + [SMALL_STATE(9271)] = 332621, + [SMALL_STATE(9272)] = 332628, + [SMALL_STATE(9273)] = 332635, + [SMALL_STATE(9274)] = 332642, + [SMALL_STATE(9275)] = 332649, + [SMALL_STATE(9276)] = 332656, + [SMALL_STATE(9277)] = 332663, + [SMALL_STATE(9278)] = 332670, + [SMALL_STATE(9279)] = 332677, + [SMALL_STATE(9280)] = 332684, + [SMALL_STATE(9281)] = 332691, + [SMALL_STATE(9282)] = 332698, + [SMALL_STATE(9283)] = 332705, + [SMALL_STATE(9284)] = 332712, + [SMALL_STATE(9285)] = 332719, + [SMALL_STATE(9286)] = 332726, + [SMALL_STATE(9287)] = 332733, + [SMALL_STATE(9288)] = 332740, + [SMALL_STATE(9289)] = 332747, + [SMALL_STATE(9290)] = 332754, + [SMALL_STATE(9291)] = 332761, + [SMALL_STATE(9292)] = 332768, + [SMALL_STATE(9293)] = 332775, + [SMALL_STATE(9294)] = 332782, + [SMALL_STATE(9295)] = 332789, + [SMALL_STATE(9296)] = 332796, + [SMALL_STATE(9297)] = 332803, + [SMALL_STATE(9298)] = 332810, + [SMALL_STATE(9299)] = 332817, + [SMALL_STATE(9300)] = 332824, + [SMALL_STATE(9301)] = 332831, + [SMALL_STATE(9302)] = 332838, + [SMALL_STATE(9303)] = 332845, + [SMALL_STATE(9304)] = 332852, + [SMALL_STATE(9305)] = 332859, + [SMALL_STATE(9306)] = 332866, + [SMALL_STATE(9307)] = 332873, + [SMALL_STATE(9308)] = 332880, + [SMALL_STATE(9309)] = 332887, + [SMALL_STATE(9310)] = 332894, + [SMALL_STATE(9311)] = 332901, + [SMALL_STATE(9312)] = 332908, + [SMALL_STATE(9313)] = 332915, + [SMALL_STATE(9314)] = 332922, + [SMALL_STATE(9315)] = 332929, + [SMALL_STATE(9316)] = 332936, + [SMALL_STATE(9317)] = 332943, + [SMALL_STATE(9318)] = 332950, + [SMALL_STATE(9319)] = 332957, + [SMALL_STATE(9320)] = 332964, + [SMALL_STATE(9321)] = 332971, + [SMALL_STATE(9322)] = 332978, + [SMALL_STATE(9323)] = 332985, + [SMALL_STATE(9324)] = 332992, + [SMALL_STATE(9325)] = 332999, + [SMALL_STATE(9326)] = 333006, + [SMALL_STATE(9327)] = 333013, + [SMALL_STATE(9328)] = 333020, + [SMALL_STATE(9329)] = 333027, + [SMALL_STATE(9330)] = 333034, + [SMALL_STATE(9331)] = 333041, + [SMALL_STATE(9332)] = 333048, + [SMALL_STATE(9333)] = 333055, + [SMALL_STATE(9334)] = 333062, + [SMALL_STATE(9335)] = 333069, + [SMALL_STATE(9336)] = 333076, + [SMALL_STATE(9337)] = 333083, + [SMALL_STATE(9338)] = 333090, + [SMALL_STATE(9339)] = 333097, + [SMALL_STATE(9340)] = 333104, + [SMALL_STATE(9341)] = 333111, + [SMALL_STATE(9342)] = 333118, + [SMALL_STATE(9343)] = 333125, + [SMALL_STATE(9344)] = 333132, + [SMALL_STATE(9345)] = 333139, + [SMALL_STATE(9346)] = 333146, + [SMALL_STATE(9347)] = 333153, + [SMALL_STATE(9348)] = 333160, + [SMALL_STATE(9349)] = 333167, + [SMALL_STATE(9350)] = 333174, + [SMALL_STATE(9351)] = 333181, + [SMALL_STATE(9352)] = 333188, + [SMALL_STATE(9353)] = 333195, + [SMALL_STATE(9354)] = 333202, + [SMALL_STATE(9355)] = 333209, + [SMALL_STATE(9356)] = 333216, + [SMALL_STATE(9357)] = 333223, + [SMALL_STATE(9358)] = 333230, + [SMALL_STATE(9359)] = 333237, + [SMALL_STATE(9360)] = 333244, + [SMALL_STATE(9361)] = 333251, + [SMALL_STATE(9362)] = 333258, + [SMALL_STATE(9363)] = 333265, + [SMALL_STATE(9364)] = 333272, + [SMALL_STATE(9365)] = 333279, + [SMALL_STATE(9366)] = 333286, + [SMALL_STATE(9367)] = 333293, + [SMALL_STATE(9368)] = 333300, + [SMALL_STATE(9369)] = 333307, + [SMALL_STATE(9370)] = 333314, + [SMALL_STATE(9371)] = 333321, + [SMALL_STATE(9372)] = 333328, + [SMALL_STATE(9373)] = 333335, + [SMALL_STATE(9374)] = 333342, + [SMALL_STATE(9375)] = 333349, + [SMALL_STATE(9376)] = 333356, + [SMALL_STATE(9377)] = 333363, + [SMALL_STATE(9378)] = 333370, + [SMALL_STATE(9379)] = 333377, + [SMALL_STATE(9380)] = 333384, + [SMALL_STATE(9381)] = 333391, + [SMALL_STATE(9382)] = 333398, + [SMALL_STATE(9383)] = 333405, + [SMALL_STATE(9384)] = 333412, + [SMALL_STATE(9385)] = 333419, + [SMALL_STATE(9386)] = 333426, + [SMALL_STATE(9387)] = 333433, + [SMALL_STATE(9388)] = 333440, + [SMALL_STATE(9389)] = 333447, + [SMALL_STATE(9390)] = 333454, + [SMALL_STATE(9391)] = 333461, + [SMALL_STATE(9392)] = 333468, + [SMALL_STATE(9393)] = 333475, + [SMALL_STATE(9394)] = 333482, + [SMALL_STATE(9395)] = 333489, + [SMALL_STATE(9396)] = 333496, + [SMALL_STATE(9397)] = 333503, + [SMALL_STATE(9398)] = 333510, + [SMALL_STATE(9399)] = 333517, + [SMALL_STATE(9400)] = 333524, + [SMALL_STATE(9401)] = 333531, + [SMALL_STATE(9402)] = 333538, + [SMALL_STATE(9403)] = 333545, + [SMALL_STATE(9404)] = 333552, + [SMALL_STATE(9405)] = 333559, + [SMALL_STATE(9406)] = 333566, + [SMALL_STATE(9407)] = 333573, + [SMALL_STATE(9408)] = 333580, + [SMALL_STATE(9409)] = 333587, + [SMALL_STATE(9410)] = 333594, + [SMALL_STATE(9411)] = 333601, + [SMALL_STATE(9412)] = 333608, + [SMALL_STATE(9413)] = 333615, + [SMALL_STATE(9414)] = 333622, + [SMALL_STATE(9415)] = 333629, + [SMALL_STATE(9416)] = 333636, + [SMALL_STATE(9417)] = 333643, + [SMALL_STATE(9418)] = 333650, + [SMALL_STATE(9419)] = 333657, + [SMALL_STATE(9420)] = 333664, + [SMALL_STATE(9421)] = 333671, + [SMALL_STATE(9422)] = 333678, + [SMALL_STATE(9423)] = 333685, + [SMALL_STATE(9424)] = 333692, + [SMALL_STATE(9425)] = 333699, + [SMALL_STATE(9426)] = 333706, + [SMALL_STATE(9427)] = 333713, + [SMALL_STATE(9428)] = 333720, + [SMALL_STATE(9429)] = 333727, + [SMALL_STATE(9430)] = 333734, + [SMALL_STATE(9431)] = 333741, + [SMALL_STATE(9432)] = 333748, + [SMALL_STATE(9433)] = 333755, + [SMALL_STATE(9434)] = 333762, + [SMALL_STATE(9435)] = 333769, + [SMALL_STATE(9436)] = 333776, + [SMALL_STATE(9437)] = 333783, + [SMALL_STATE(9438)] = 333790, + [SMALL_STATE(9439)] = 333797, + [SMALL_STATE(9440)] = 333804, + [SMALL_STATE(9441)] = 333811, + [SMALL_STATE(9442)] = 333818, + [SMALL_STATE(9443)] = 333825, + [SMALL_STATE(9444)] = 333832, + [SMALL_STATE(9445)] = 333839, + [SMALL_STATE(9446)] = 333846, + [SMALL_STATE(9447)] = 333853, + [SMALL_STATE(9448)] = 333860, + [SMALL_STATE(9449)] = 333867, + [SMALL_STATE(9450)] = 333874, + [SMALL_STATE(9451)] = 333881, + [SMALL_STATE(9452)] = 333888, + [SMALL_STATE(9453)] = 333895, + [SMALL_STATE(9454)] = 333902, + [SMALL_STATE(9455)] = 333909, + [SMALL_STATE(9456)] = 333916, + [SMALL_STATE(9457)] = 333923, + [SMALL_STATE(9458)] = 333930, + [SMALL_STATE(9459)] = 333937, + [SMALL_STATE(9460)] = 333944, + [SMALL_STATE(9461)] = 333951, + [SMALL_STATE(9462)] = 333958, + [SMALL_STATE(9463)] = 333965, + [SMALL_STATE(9464)] = 333972, + [SMALL_STATE(9465)] = 333979, + [SMALL_STATE(9466)] = 333986, + [SMALL_STATE(9467)] = 333993, + [SMALL_STATE(9468)] = 334000, + [SMALL_STATE(9469)] = 334007, + [SMALL_STATE(9470)] = 334014, + [SMALL_STATE(9471)] = 334021, + [SMALL_STATE(9472)] = 334028, + [SMALL_STATE(9473)] = 334035, + [SMALL_STATE(9474)] = 334042, + [SMALL_STATE(9475)] = 334049, + [SMALL_STATE(9476)] = 334056, + [SMALL_STATE(9477)] = 334063, + [SMALL_STATE(9478)] = 334070, + [SMALL_STATE(9479)] = 334077, + [SMALL_STATE(9480)] = 334084, + [SMALL_STATE(9481)] = 334091, + [SMALL_STATE(9482)] = 334098, + [SMALL_STATE(9483)] = 334105, + [SMALL_STATE(9484)] = 334112, + [SMALL_STATE(9485)] = 334119, + [SMALL_STATE(9486)] = 334126, + [SMALL_STATE(9487)] = 334133, + [SMALL_STATE(9488)] = 334140, + [SMALL_STATE(9489)] = 334147, + [SMALL_STATE(9490)] = 334154, + [SMALL_STATE(9491)] = 334161, + [SMALL_STATE(9492)] = 334168, + [SMALL_STATE(9493)] = 334175, + [SMALL_STATE(9494)] = 334182, + [SMALL_STATE(9495)] = 334189, + [SMALL_STATE(9496)] = 334196, + [SMALL_STATE(9497)] = 334203, + [SMALL_STATE(9498)] = 334210, + [SMALL_STATE(9499)] = 334217, + [SMALL_STATE(9500)] = 334224, + [SMALL_STATE(9501)] = 334231, + [SMALL_STATE(9502)] = 334238, + [SMALL_STATE(9503)] = 334245, + [SMALL_STATE(9504)] = 334252, + [SMALL_STATE(9505)] = 334259, + [SMALL_STATE(9506)] = 334266, + [SMALL_STATE(9507)] = 334273, + [SMALL_STATE(9508)] = 334280, + [SMALL_STATE(9509)] = 334287, + [SMALL_STATE(9510)] = 334294, + [SMALL_STATE(9511)] = 334301, + [SMALL_STATE(9512)] = 334308, + [SMALL_STATE(9513)] = 334315, + [SMALL_STATE(9514)] = 334322, + [SMALL_STATE(9515)] = 334329, + [SMALL_STATE(9516)] = 334336, + [SMALL_STATE(9517)] = 334343, + [SMALL_STATE(9518)] = 334350, + [SMALL_STATE(9519)] = 334357, + [SMALL_STATE(9520)] = 334364, + [SMALL_STATE(9521)] = 334371, + [SMALL_STATE(9522)] = 334378, + [SMALL_STATE(9523)] = 334385, + [SMALL_STATE(9524)] = 334392, + [SMALL_STATE(9525)] = 334399, + [SMALL_STATE(9526)] = 334406, + [SMALL_STATE(9527)] = 334413, + [SMALL_STATE(9528)] = 334420, + [SMALL_STATE(9529)] = 334427, + [SMALL_STATE(9530)] = 334434, + [SMALL_STATE(9531)] = 334441, + [SMALL_STATE(9532)] = 334448, + [SMALL_STATE(9533)] = 334455, + [SMALL_STATE(9534)] = 334462, + [SMALL_STATE(9535)] = 334469, + [SMALL_STATE(9536)] = 334476, + [SMALL_STATE(9537)] = 334483, + [SMALL_STATE(9538)] = 334490, + [SMALL_STATE(9539)] = 334497, + [SMALL_STATE(9540)] = 334504, + [SMALL_STATE(9541)] = 334511, + [SMALL_STATE(9542)] = 334518, + [SMALL_STATE(9543)] = 334525, + [SMALL_STATE(9544)] = 334532, + [SMALL_STATE(9545)] = 334539, + [SMALL_STATE(9546)] = 334546, + [SMALL_STATE(9547)] = 334553, + [SMALL_STATE(9548)] = 334560, + [SMALL_STATE(9549)] = 334567, + [SMALL_STATE(9550)] = 334574, + [SMALL_STATE(9551)] = 334581, + [SMALL_STATE(9552)] = 334588, + [SMALL_STATE(9553)] = 334595, + [SMALL_STATE(9554)] = 334602, + [SMALL_STATE(9555)] = 334609, + [SMALL_STATE(9556)] = 334616, + [SMALL_STATE(9557)] = 334623, + [SMALL_STATE(9558)] = 334630, + [SMALL_STATE(9559)] = 334637, + [SMALL_STATE(9560)] = 334644, + [SMALL_STATE(9561)] = 334651, + [SMALL_STATE(9562)] = 334658, + [SMALL_STATE(9563)] = 334665, + [SMALL_STATE(9564)] = 334672, + [SMALL_STATE(9565)] = 334679, + [SMALL_STATE(9566)] = 334686, + [SMALL_STATE(9567)] = 334693, + [SMALL_STATE(9568)] = 334700, + [SMALL_STATE(9569)] = 334707, + [SMALL_STATE(9570)] = 334714, + [SMALL_STATE(9571)] = 334721, + [SMALL_STATE(9572)] = 334728, + [SMALL_STATE(9573)] = 334735, + [SMALL_STATE(9574)] = 334742, + [SMALL_STATE(9575)] = 334749, + [SMALL_STATE(9576)] = 334756, + [SMALL_STATE(9577)] = 334763, + [SMALL_STATE(9578)] = 334770, + [SMALL_STATE(9579)] = 334777, + [SMALL_STATE(9580)] = 334784, + [SMALL_STATE(9581)] = 334791, + [SMALL_STATE(9582)] = 334798, + [SMALL_STATE(9583)] = 334805, + [SMALL_STATE(9584)] = 334812, + [SMALL_STATE(9585)] = 334819, + [SMALL_STATE(9586)] = 334826, + [SMALL_STATE(9587)] = 334833, + [SMALL_STATE(9588)] = 334840, + [SMALL_STATE(9589)] = 334847, + [SMALL_STATE(9590)] = 334854, + [SMALL_STATE(9591)] = 334861, + [SMALL_STATE(9592)] = 334868, + [SMALL_STATE(9593)] = 334875, + [SMALL_STATE(9594)] = 334882, + [SMALL_STATE(9595)] = 334889, + [SMALL_STATE(9596)] = 334896, + [SMALL_STATE(9597)] = 334903, + [SMALL_STATE(9598)] = 334910, + [SMALL_STATE(9599)] = 334917, + [SMALL_STATE(9600)] = 334924, + [SMALL_STATE(9601)] = 334931, + [SMALL_STATE(9602)] = 334938, + [SMALL_STATE(9603)] = 334945, + [SMALL_STATE(9604)] = 334952, + [SMALL_STATE(9605)] = 334959, + [SMALL_STATE(9606)] = 334966, + [SMALL_STATE(9607)] = 334973, + [SMALL_STATE(9608)] = 334980, + [SMALL_STATE(9609)] = 334987, + [SMALL_STATE(9610)] = 334994, + [SMALL_STATE(9611)] = 335001, + [SMALL_STATE(9612)] = 335008, + [SMALL_STATE(9613)] = 335015, + [SMALL_STATE(9614)] = 335022, + [SMALL_STATE(9615)] = 335029, + [SMALL_STATE(9616)] = 335036, + [SMALL_STATE(9617)] = 335043, + [SMALL_STATE(9618)] = 335050, + [SMALL_STATE(9619)] = 335057, + [SMALL_STATE(9620)] = 335064, + [SMALL_STATE(9621)] = 335071, + [SMALL_STATE(9622)] = 335078, + [SMALL_STATE(9623)] = 335085, + [SMALL_STATE(9624)] = 335092, + [SMALL_STATE(9625)] = 335099, + [SMALL_STATE(9626)] = 335106, + [SMALL_STATE(9627)] = 335113, + [SMALL_STATE(9628)] = 335120, + [SMALL_STATE(9629)] = 335127, + [SMALL_STATE(9630)] = 335134, + [SMALL_STATE(9631)] = 335141, + [SMALL_STATE(9632)] = 335148, + [SMALL_STATE(9633)] = 335155, + [SMALL_STATE(9634)] = 335162, + [SMALL_STATE(9635)] = 335169, + [SMALL_STATE(9636)] = 335176, + [SMALL_STATE(9637)] = 335183, + [SMALL_STATE(9638)] = 335190, + [SMALL_STATE(9639)] = 335197, + [SMALL_STATE(9640)] = 335204, + [SMALL_STATE(9641)] = 335211, + [SMALL_STATE(9642)] = 335218, + [SMALL_STATE(9643)] = 335225, + [SMALL_STATE(9644)] = 335232, + [SMALL_STATE(9645)] = 335239, + [SMALL_STATE(9646)] = 335246, + [SMALL_STATE(9647)] = 335253, + [SMALL_STATE(9648)] = 335260, + [SMALL_STATE(9649)] = 335267, + [SMALL_STATE(9650)] = 335274, + [SMALL_STATE(9651)] = 335281, + [SMALL_STATE(9652)] = 335288, + [SMALL_STATE(9653)] = 335295, + [SMALL_STATE(9654)] = 335302, + [SMALL_STATE(9655)] = 335309, + [SMALL_STATE(9656)] = 335316, + [SMALL_STATE(9657)] = 335323, + [SMALL_STATE(9658)] = 335330, + [SMALL_STATE(9659)] = 335337, + [SMALL_STATE(9660)] = 335344, + [SMALL_STATE(9661)] = 335351, + [SMALL_STATE(9662)] = 335358, + [SMALL_STATE(9663)] = 335365, + [SMALL_STATE(9664)] = 335372, + [SMALL_STATE(9665)] = 335379, + [SMALL_STATE(9666)] = 335386, + [SMALL_STATE(9667)] = 335393, + [SMALL_STATE(9668)] = 335400, + [SMALL_STATE(9669)] = 335407, + [SMALL_STATE(9670)] = 335414, + [SMALL_STATE(9671)] = 335421, + [SMALL_STATE(9672)] = 335428, + [SMALL_STATE(9673)] = 335435, + [SMALL_STATE(9674)] = 335442, + [SMALL_STATE(9675)] = 335449, + [SMALL_STATE(9676)] = 335456, + [SMALL_STATE(9677)] = 335463, + [SMALL_STATE(9678)] = 335470, + [SMALL_STATE(9679)] = 335477, + [SMALL_STATE(9680)] = 335484, + [SMALL_STATE(9681)] = 335491, + [SMALL_STATE(9682)] = 335498, + [SMALL_STATE(9683)] = 335505, + [SMALL_STATE(9684)] = 335512, + [SMALL_STATE(9685)] = 335519, + [SMALL_STATE(9686)] = 335526, + [SMALL_STATE(9687)] = 335533, + [SMALL_STATE(9688)] = 335540, + [SMALL_STATE(9689)] = 335547, + [SMALL_STATE(9690)] = 335554, + [SMALL_STATE(9691)] = 335561, + [SMALL_STATE(9692)] = 335568, + [SMALL_STATE(9693)] = 335575, + [SMALL_STATE(9694)] = 335582, + [SMALL_STATE(9695)] = 335589, + [SMALL_STATE(9696)] = 335596, + [SMALL_STATE(9697)] = 335603, + [SMALL_STATE(9698)] = 335610, + [SMALL_STATE(9699)] = 335617, + [SMALL_STATE(9700)] = 335624, + [SMALL_STATE(9701)] = 335631, + [SMALL_STATE(9702)] = 335638, + [SMALL_STATE(9703)] = 335645, + [SMALL_STATE(9704)] = 335652, + [SMALL_STATE(9705)] = 335659, + [SMALL_STATE(9706)] = 335666, + [SMALL_STATE(9707)] = 335673, + [SMALL_STATE(9708)] = 335680, + [SMALL_STATE(9709)] = 335687, + [SMALL_STATE(9710)] = 335694, + [SMALL_STATE(9711)] = 335701, + [SMALL_STATE(9712)] = 335708, + [SMALL_STATE(9713)] = 335715, + [SMALL_STATE(9714)] = 335722, + [SMALL_STATE(9715)] = 335729, + [SMALL_STATE(9716)] = 335736, + [SMALL_STATE(9717)] = 335743, + [SMALL_STATE(9718)] = 335750, + [SMALL_STATE(9719)] = 335757, + [SMALL_STATE(9720)] = 335764, + [SMALL_STATE(9721)] = 335771, + [SMALL_STATE(9722)] = 335778, + [SMALL_STATE(9723)] = 335785, + [SMALL_STATE(9724)] = 335792, + [SMALL_STATE(9725)] = 335799, + [SMALL_STATE(9726)] = 335806, + [SMALL_STATE(9727)] = 335813, + [SMALL_STATE(9728)] = 335820, + [SMALL_STATE(9729)] = 335827, + [SMALL_STATE(9730)] = 335834, + [SMALL_STATE(9731)] = 335841, + [SMALL_STATE(9732)] = 335848, + [SMALL_STATE(9733)] = 335855, + [SMALL_STATE(9734)] = 335862, + [SMALL_STATE(9735)] = 335869, + [SMALL_STATE(9736)] = 335876, + [SMALL_STATE(9737)] = 335883, + [SMALL_STATE(9738)] = 335890, + [SMALL_STATE(9739)] = 335897, + [SMALL_STATE(9740)] = 335904, + [SMALL_STATE(9741)] = 335911, + [SMALL_STATE(9742)] = 335918, + [SMALL_STATE(9743)] = 335925, + [SMALL_STATE(9744)] = 335932, + [SMALL_STATE(9745)] = 335939, + [SMALL_STATE(9746)] = 335946, + [SMALL_STATE(9747)] = 335953, + [SMALL_STATE(9748)] = 335960, + [SMALL_STATE(9749)] = 335967, + [SMALL_STATE(9750)] = 335974, + [SMALL_STATE(9751)] = 335981, + [SMALL_STATE(9752)] = 335988, + [SMALL_STATE(9753)] = 335995, + [SMALL_STATE(9754)] = 336002, + [SMALL_STATE(9755)] = 336009, + [SMALL_STATE(9756)] = 336016, + [SMALL_STATE(9757)] = 336023, + [SMALL_STATE(9758)] = 336030, + [SMALL_STATE(9759)] = 336037, + [SMALL_STATE(9760)] = 336044, + [SMALL_STATE(9761)] = 336051, + [SMALL_STATE(9762)] = 336058, + [SMALL_STATE(9763)] = 336065, + [SMALL_STATE(9764)] = 336072, + [SMALL_STATE(9765)] = 336079, + [SMALL_STATE(9766)] = 336086, + [SMALL_STATE(9767)] = 336093, + [SMALL_STATE(9768)] = 336100, + [SMALL_STATE(9769)] = 336107, + [SMALL_STATE(9770)] = 336114, + [SMALL_STATE(9771)] = 336121, + [SMALL_STATE(9772)] = 336128, + [SMALL_STATE(9773)] = 336135, + [SMALL_STATE(9774)] = 336142, + [SMALL_STATE(9775)] = 336149, + [SMALL_STATE(9776)] = 336156, + [SMALL_STATE(9777)] = 336163, + [SMALL_STATE(9778)] = 336170, + [SMALL_STATE(9779)] = 336177, + [SMALL_STATE(9780)] = 336184, + [SMALL_STATE(9781)] = 336191, + [SMALL_STATE(9782)] = 336198, + [SMALL_STATE(9783)] = 336205, + [SMALL_STATE(9784)] = 336212, + [SMALL_STATE(9785)] = 336219, + [SMALL_STATE(9786)] = 336226, + [SMALL_STATE(9787)] = 336233, + [SMALL_STATE(9788)] = 336240, + [SMALL_STATE(9789)] = 336247, + [SMALL_STATE(9790)] = 336254, + [SMALL_STATE(9791)] = 336261, + [SMALL_STATE(9792)] = 336268, + [SMALL_STATE(9793)] = 336275, + [SMALL_STATE(9794)] = 336282, + [SMALL_STATE(9795)] = 336289, + [SMALL_STATE(9796)] = 336296, + [SMALL_STATE(9797)] = 336303, + [SMALL_STATE(9798)] = 336310, + [SMALL_STATE(9799)] = 336317, + [SMALL_STATE(9800)] = 336324, + [SMALL_STATE(9801)] = 336331, + [SMALL_STATE(9802)] = 336338, + [SMALL_STATE(9803)] = 336345, + [SMALL_STATE(9804)] = 336352, + [SMALL_STATE(9805)] = 336359, + [SMALL_STATE(9806)] = 336366, + [SMALL_STATE(9807)] = 336373, + [SMALL_STATE(9808)] = 336380, + [SMALL_STATE(9809)] = 336387, + [SMALL_STATE(9810)] = 336394, + [SMALL_STATE(9811)] = 336401, + [SMALL_STATE(9812)] = 336408, + [SMALL_STATE(9813)] = 336415, + [SMALL_STATE(9814)] = 336422, + [SMALL_STATE(9815)] = 336429, + [SMALL_STATE(9816)] = 336436, + [SMALL_STATE(9817)] = 336443, + [SMALL_STATE(9818)] = 336450, + [SMALL_STATE(9819)] = 336457, + [SMALL_STATE(9820)] = 336464, + [SMALL_STATE(9821)] = 336471, + [SMALL_STATE(9822)] = 336478, + [SMALL_STATE(9823)] = 336485, + [SMALL_STATE(9824)] = 336492, + [SMALL_STATE(9825)] = 336499, + [SMALL_STATE(9826)] = 336506, + [SMALL_STATE(9827)] = 336513, + [SMALL_STATE(9828)] = 336520, + [SMALL_STATE(9829)] = 336527, + [SMALL_STATE(9830)] = 336534, + [SMALL_STATE(9831)] = 336541, + [SMALL_STATE(9832)] = 336548, + [SMALL_STATE(9833)] = 336555, + [SMALL_STATE(9834)] = 336562, + [SMALL_STATE(9835)] = 336569, + [SMALL_STATE(9836)] = 336576, + [SMALL_STATE(9837)] = 336583, + [SMALL_STATE(9838)] = 336590, + [SMALL_STATE(9839)] = 336597, + [SMALL_STATE(9840)] = 336604, + [SMALL_STATE(9841)] = 336611, + [SMALL_STATE(9842)] = 336618, + [SMALL_STATE(9843)] = 336625, + [SMALL_STATE(9844)] = 336632, + [SMALL_STATE(9845)] = 336639, + [SMALL_STATE(9846)] = 336646, + [SMALL_STATE(9847)] = 336653, + [SMALL_STATE(9848)] = 336660, + [SMALL_STATE(9849)] = 336667, + [SMALL_STATE(9850)] = 336674, + [SMALL_STATE(9851)] = 336681, + [SMALL_STATE(9852)] = 336688, + [SMALL_STATE(9853)] = 336695, + [SMALL_STATE(9854)] = 336702, + [SMALL_STATE(9855)] = 336709, + [SMALL_STATE(9856)] = 336716, + [SMALL_STATE(9857)] = 336723, + [SMALL_STATE(9858)] = 336730, + [SMALL_STATE(9859)] = 336737, + [SMALL_STATE(9860)] = 336744, + [SMALL_STATE(9861)] = 336751, + [SMALL_STATE(9862)] = 336758, + [SMALL_STATE(9863)] = 336765, + [SMALL_STATE(9864)] = 336772, + [SMALL_STATE(9865)] = 336779, + [SMALL_STATE(9866)] = 336786, + [SMALL_STATE(9867)] = 336793, + [SMALL_STATE(9868)] = 336800, + [SMALL_STATE(9869)] = 336807, + [SMALL_STATE(9870)] = 336814, + [SMALL_STATE(9871)] = 336821, + [SMALL_STATE(9872)] = 336828, + [SMALL_STATE(9873)] = 336835, + [SMALL_STATE(9874)] = 336842, + [SMALL_STATE(9875)] = 336849, + [SMALL_STATE(9876)] = 336856, + [SMALL_STATE(9877)] = 336863, + [SMALL_STATE(9878)] = 336870, + [SMALL_STATE(9879)] = 336877, + [SMALL_STATE(9880)] = 336884, + [SMALL_STATE(9881)] = 336891, + [SMALL_STATE(9882)] = 336898, + [SMALL_STATE(9883)] = 336905, + [SMALL_STATE(9884)] = 336912, + [SMALL_STATE(9885)] = 336919, + [SMALL_STATE(9886)] = 336926, + [SMALL_STATE(9887)] = 336933, + [SMALL_STATE(9888)] = 336940, + [SMALL_STATE(9889)] = 336947, + [SMALL_STATE(9890)] = 336954, + [SMALL_STATE(9891)] = 336961, + [SMALL_STATE(9892)] = 336968, + [SMALL_STATE(9893)] = 336975, + [SMALL_STATE(9894)] = 336982, + [SMALL_STATE(9895)] = 336989, + [SMALL_STATE(9896)] = 336996, + [SMALL_STATE(9897)] = 337003, + [SMALL_STATE(9898)] = 337010, + [SMALL_STATE(9899)] = 337017, + [SMALL_STATE(9900)] = 337024, + [SMALL_STATE(9901)] = 337031, + [SMALL_STATE(9902)] = 337038, + [SMALL_STATE(9903)] = 337045, + [SMALL_STATE(9904)] = 337052, + [SMALL_STATE(9905)] = 337059, + [SMALL_STATE(9906)] = 337066, + [SMALL_STATE(9907)] = 337073, + [SMALL_STATE(9908)] = 337080, + [SMALL_STATE(9909)] = 337087, + [SMALL_STATE(9910)] = 337094, + [SMALL_STATE(9911)] = 337101, + [SMALL_STATE(9912)] = 337108, + [SMALL_STATE(9913)] = 337115, + [SMALL_STATE(9914)] = 337122, + [SMALL_STATE(9915)] = 337129, + [SMALL_STATE(9916)] = 337136, + [SMALL_STATE(9917)] = 337143, + [SMALL_STATE(9918)] = 337150, + [SMALL_STATE(9919)] = 337157, + [SMALL_STATE(9920)] = 337164, + [SMALL_STATE(9921)] = 337171, + [SMALL_STATE(9922)] = 337178, + [SMALL_STATE(9923)] = 337185, + [SMALL_STATE(9924)] = 337192, + [SMALL_STATE(9925)] = 337199, + [SMALL_STATE(9926)] = 337206, + [SMALL_STATE(9927)] = 337213, + [SMALL_STATE(9928)] = 337220, + [SMALL_STATE(9929)] = 337227, + [SMALL_STATE(9930)] = 337234, + [SMALL_STATE(9931)] = 337241, + [SMALL_STATE(9932)] = 337248, + [SMALL_STATE(9933)] = 337255, + [SMALL_STATE(9934)] = 337262, + [SMALL_STATE(9935)] = 337269, + [SMALL_STATE(9936)] = 337276, + [SMALL_STATE(9937)] = 337283, + [SMALL_STATE(9938)] = 337290, + [SMALL_STATE(9939)] = 337297, + [SMALL_STATE(9940)] = 337304, + [SMALL_STATE(9941)] = 337311, + [SMALL_STATE(9942)] = 337318, + [SMALL_STATE(9943)] = 337325, + [SMALL_STATE(9944)] = 337332, + [SMALL_STATE(9945)] = 337339, + [SMALL_STATE(9946)] = 337346, + [SMALL_STATE(9947)] = 337353, + [SMALL_STATE(9948)] = 337360, + [SMALL_STATE(9949)] = 337367, + [SMALL_STATE(9950)] = 337374, + [SMALL_STATE(9951)] = 337381, + [SMALL_STATE(9952)] = 337388, + [SMALL_STATE(9953)] = 337395, + [SMALL_STATE(9954)] = 337402, + [SMALL_STATE(9955)] = 337409, + [SMALL_STATE(9956)] = 337416, + [SMALL_STATE(9957)] = 337423, + [SMALL_STATE(9958)] = 337430, + [SMALL_STATE(9959)] = 337437, + [SMALL_STATE(9960)] = 337444, + [SMALL_STATE(9961)] = 337451, + [SMALL_STATE(9962)] = 337458, + [SMALL_STATE(9963)] = 337465, + [SMALL_STATE(9964)] = 337472, + [SMALL_STATE(9965)] = 337479, + [SMALL_STATE(9966)] = 337486, + [SMALL_STATE(9967)] = 337493, + [SMALL_STATE(9968)] = 337500, + [SMALL_STATE(9969)] = 337507, + [SMALL_STATE(9970)] = 337514, + [SMALL_STATE(9971)] = 337521, + [SMALL_STATE(9972)] = 337528, + [SMALL_STATE(9973)] = 337535, + [SMALL_STATE(9974)] = 337542, + [SMALL_STATE(9975)] = 337549, + [SMALL_STATE(9976)] = 337556, + [SMALL_STATE(9977)] = 337563, + [SMALL_STATE(9978)] = 337570, + [SMALL_STATE(9979)] = 337577, + [SMALL_STATE(9980)] = 337584, + [SMALL_STATE(9981)] = 337591, + [SMALL_STATE(9982)] = 337598, + [SMALL_STATE(9983)] = 337605, + [SMALL_STATE(9984)] = 337612, + [SMALL_STATE(9985)] = 337619, + [SMALL_STATE(9986)] = 337626, + [SMALL_STATE(9987)] = 337633, + [SMALL_STATE(9988)] = 337640, + [SMALL_STATE(9989)] = 337647, + [SMALL_STATE(9990)] = 337654, + [SMALL_STATE(9991)] = 337661, + [SMALL_STATE(9992)] = 337668, + [SMALL_STATE(9993)] = 337675, + [SMALL_STATE(9994)] = 337682, + [SMALL_STATE(9995)] = 337689, + [SMALL_STATE(9996)] = 337696, + [SMALL_STATE(9997)] = 337703, + [SMALL_STATE(9998)] = 337710, + [SMALL_STATE(9999)] = 337717, + [SMALL_STATE(10000)] = 337724, + [SMALL_STATE(10001)] = 337731, + [SMALL_STATE(10002)] = 337738, + [SMALL_STATE(10003)] = 337745, + [SMALL_STATE(10004)] = 337752, + [SMALL_STATE(10005)] = 337759, + [SMALL_STATE(10006)] = 337766, + [SMALL_STATE(10007)] = 337773, + [SMALL_STATE(10008)] = 337780, + [SMALL_STATE(10009)] = 337787, + [SMALL_STATE(10010)] = 337794, + [SMALL_STATE(10011)] = 337801, + [SMALL_STATE(10012)] = 337808, + [SMALL_STATE(10013)] = 337815, + [SMALL_STATE(10014)] = 337822, + [SMALL_STATE(10015)] = 337829, + [SMALL_STATE(10016)] = 337836, + [SMALL_STATE(10017)] = 337843, + [SMALL_STATE(10018)] = 337850, + [SMALL_STATE(10019)] = 337857, + [SMALL_STATE(10020)] = 337864, + [SMALL_STATE(10021)] = 337871, + [SMALL_STATE(10022)] = 337878, + [SMALL_STATE(10023)] = 337885, + [SMALL_STATE(10024)] = 337892, + [SMALL_STATE(10025)] = 337899, + [SMALL_STATE(10026)] = 337906, + [SMALL_STATE(10027)] = 337913, + [SMALL_STATE(10028)] = 337920, + [SMALL_STATE(10029)] = 337927, + [SMALL_STATE(10030)] = 337934, + [SMALL_STATE(10031)] = 337941, + [SMALL_STATE(10032)] = 337948, + [SMALL_STATE(10033)] = 337955, + [SMALL_STATE(10034)] = 337962, + [SMALL_STATE(10035)] = 337969, + [SMALL_STATE(10036)] = 337976, + [SMALL_STATE(10037)] = 337983, + [SMALL_STATE(10038)] = 337990, + [SMALL_STATE(10039)] = 337997, + [SMALL_STATE(10040)] = 338004, + [SMALL_STATE(10041)] = 338011, + [SMALL_STATE(10042)] = 338018, + [SMALL_STATE(10043)] = 338025, + [SMALL_STATE(10044)] = 338032, + [SMALL_STATE(10045)] = 338039, + [SMALL_STATE(10046)] = 338046, + [SMALL_STATE(10047)] = 338053, + [SMALL_STATE(10048)] = 338060, + [SMALL_STATE(10049)] = 338067, + [SMALL_STATE(10050)] = 338074, + [SMALL_STATE(10051)] = 338081, + [SMALL_STATE(10052)] = 338088, + [SMALL_STATE(10053)] = 338095, + [SMALL_STATE(10054)] = 338102, + [SMALL_STATE(10055)] = 338109, + [SMALL_STATE(10056)] = 338116, + [SMALL_STATE(10057)] = 338123, + [SMALL_STATE(10058)] = 338130, + [SMALL_STATE(10059)] = 338137, + [SMALL_STATE(10060)] = 338144, + [SMALL_STATE(10061)] = 338151, + [SMALL_STATE(10062)] = 338158, + [SMALL_STATE(10063)] = 338165, + [SMALL_STATE(10064)] = 338172, + [SMALL_STATE(10065)] = 338179, + [SMALL_STATE(10066)] = 338186, + [SMALL_STATE(10067)] = 338193, + [SMALL_STATE(10068)] = 338200, + [SMALL_STATE(10069)] = 338207, + [SMALL_STATE(10070)] = 338214, + [SMALL_STATE(10071)] = 338221, + [SMALL_STATE(10072)] = 338228, + [SMALL_STATE(10073)] = 338235, + [SMALL_STATE(10074)] = 338242, + [SMALL_STATE(10075)] = 338249, + [SMALL_STATE(10076)] = 338256, + [SMALL_STATE(10077)] = 338263, + [SMALL_STATE(10078)] = 338270, + [SMALL_STATE(10079)] = 338277, + [SMALL_STATE(10080)] = 338284, + [SMALL_STATE(10081)] = 338291, + [SMALL_STATE(10082)] = 338298, + [SMALL_STATE(10083)] = 338305, + [SMALL_STATE(10084)] = 338312, + [SMALL_STATE(10085)] = 338319, + [SMALL_STATE(10086)] = 338326, + [SMALL_STATE(10087)] = 338333, + [SMALL_STATE(10088)] = 338340, + [SMALL_STATE(10089)] = 338347, + [SMALL_STATE(10090)] = 338354, + [SMALL_STATE(10091)] = 338361, + [SMALL_STATE(10092)] = 338368, + [SMALL_STATE(10093)] = 338375, + [SMALL_STATE(10094)] = 338382, + [SMALL_STATE(10095)] = 338389, + [SMALL_STATE(10096)] = 338396, + [SMALL_STATE(10097)] = 338403, + [SMALL_STATE(10098)] = 338410, + [SMALL_STATE(10099)] = 338417, + [SMALL_STATE(10100)] = 338424, + [SMALL_STATE(10101)] = 338431, + [SMALL_STATE(10102)] = 338438, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -642252,7858 +606498,7436 @@ 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, 0, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7913), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10554), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7071), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9911), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9922), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9601), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6648), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4847), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9789), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7825), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9253), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10086), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9188), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5322), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4273), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7580), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6682), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6667), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6582), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8780), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9316), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10566), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9458), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7573), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9592), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6599), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9810), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9319), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8674), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4531), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9582), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7503), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8691), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9529), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8956), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4916), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7182), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6056), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6181), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6184), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8615), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9074), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9180), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9043), [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10475), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10128), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9970), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9739), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10596), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10498), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9944), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8123), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8866), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8442), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4836), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10550), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10614), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5711), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6506), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9483), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8022), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7808), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9729), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10541), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9297), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6339), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6776), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7939), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9894), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10075), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7099), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9897), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9900), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9158), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4931), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9271), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9385), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10007), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9197), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10010), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9181), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9229), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7745), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8635), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8078), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4249), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9646), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9324), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5026), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5978), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8755), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7691), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7420), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9357), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9369), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9041), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5864), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6332), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7548), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9692), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9371), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6613), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9699), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9700), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9075), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4521), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8661), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9268), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10096), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9210), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10162), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10472), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10626), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9926), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9172), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9783), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8998), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9271), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8036), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7766), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10451), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10452), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7929), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10590), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7123), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10592), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10594), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7170), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10013), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10191), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9277), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4943), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8229), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9024), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9804), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8675), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9483), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9400), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9412), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9745), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9002), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9228), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8317), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9030), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7687), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7436), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9871), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9872), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7575), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9447), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6645), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9450), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9456), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6624), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9348), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9479), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8707), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4550), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8770), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9331), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9685), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9269), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10450), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10111), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10119), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10618), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9338), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9659), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9334), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8033), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7799), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10514), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10515), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7888), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9795), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7127), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9718), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9719), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9561), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4953), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8837), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9367), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10371), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9332), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10513), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9822), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9918), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9728), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9377), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10581), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9372), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8039), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7765), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10534), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10525), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, 0, 65), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, 0, 66), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, 0, 106), - [489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, 0, 65), - [491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, 0, 66), - [493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, 0, 106), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1091), - [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7929), - [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10590), - [506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(171), - [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7123), - [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), - [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10592), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10594), - [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9277), - [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(182), - [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1638), - [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1469), - [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1638), - [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(491), - [538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6648), - [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(975), - [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(335), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4199), - [550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4943), - [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3151), - [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9789), - [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7825), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9253), - [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10086), - [568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9188), - [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5322), - [574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(69), - [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3874), - [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1151), - [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4389), - [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4139), - [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4273), - [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3862), - [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7580), - [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6682), - [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6667), - [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6582), - [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8770), - [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9331), - [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1676), - [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9685), - [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9269), - [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(256), - [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10450), - [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1119), - [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10111), - [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10119), - [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10618), - [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9338), - [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9659), - [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1447), - [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1468), - [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10596), - [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10498), - [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9944), - [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8123), - [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5269), - [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8866), - [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8442), - [673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5251), - [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5201), - [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4836), - [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10550), - [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3701), - [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10614), - [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5711), - [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6506), - [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1813), - [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(924), - [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9334), - [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1594), - [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1293), - [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8033), - [715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7799), - [718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10514), - [721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10515), - [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1261), - [727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1666), - [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9297), - [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1388), - [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6339), - [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6776), - [742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1417), - [745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5260), - [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1096), - [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7888), - [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9795), - [759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(173), - [762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7127), - [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9718), - [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9719), - [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9561), - [774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(478), - [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4202), - [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4953), - [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3158), - [786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(82), - [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4144), - [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8837), - [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9367), - [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1686), - [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10371), - [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9332), - [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(257), - [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10513), - [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1115), - [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9822), - [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9918), - [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9728), - [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9377), - [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10581), - [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1814), - [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9372), - [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1262), - [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8039), - [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7765), - [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10534), - [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10525), - [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1267), - [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1677), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8187), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8757), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9668), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9026), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9870), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9684), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9771), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9503), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8767), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9636), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8760), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7693), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7432), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9950), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9951), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7522), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9149), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6647), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9921), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9922), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8912), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4565), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8315), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8803), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9415), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8758), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9949), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9676), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9677), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9940), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8812), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9928), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8806), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7668), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7427), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9971), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9962), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, 0, 65), + [489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, 0, 66), + [491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, 0, 106), + [493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, 0, 65), + [495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, 0, 66), + [497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, 0, 106), + [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1065), + [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7575), + [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9447), + [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(169), + [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6645), + [514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), + [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9450), + [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9456), + [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8707), + [525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(180), + [528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1361), + [531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1387), + [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1361), + [537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(474), + [540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6185), + [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(950), + [546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(339), + [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3927), + [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4550), + [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3080), + [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9582), + [561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7503), + [564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8691), + [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9529), + [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8956), + [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4916), + [576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(69), + [579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3609), + [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1102), + [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4028), + [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3863), + [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2161), + [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3590), + [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7182), + [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6056), + [603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6181), + [606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6184), + [609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8187), + [612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8757), + [615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1659), + [618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9668), + [621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9026), + [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(257), + [627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9870), + [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1082), + [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9684), + [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9771), + [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9503), + [642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8767), + [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9636), + [648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1648), + [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1767), + [654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10010), + [657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9181), + [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9229), + [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7745), + [666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4812), + [669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8635), + [672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8078), + [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4249), + [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4253), + [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3570), + [684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9646), + [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3344), + [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9324), + [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5026), + [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5978), + [699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1781), + [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(903), + [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8760), + [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1368), + [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1248), + [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7693), + [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7432), + [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9950), + [723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9951), + [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1250), + [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1651), + [732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9041), + [735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1394), + [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5864), + [741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6332), + [744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1409), + [747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4265), + [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1070), + [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7522), + [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9149), + [759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(171), + [762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6647), + [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9921), + [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9922), + [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8912), + [774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(464), + [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3930), + [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4565), + [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3083), + [786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(81), + [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3867), + [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8315), + [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8803), + [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1669), + [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9415), + [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8758), + [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(258), + [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9949), + [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1083), + [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9676), + [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9677), + [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9940), + [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8812), + [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9928), + [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1782), + [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8806), + [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1236), + [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7668), + [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7427), + [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9971), + [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9962), + [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1237), + [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1660), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1100), - [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7887), - [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9866), - [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7132), - [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9796), - [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9797), - [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9328), - [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(606), - [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4203), - [896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4956), - [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3175), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1071), + [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7540), + [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9218), + [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(174), + [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6649), + [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9150), + [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9151), + [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8725), + [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(576), + [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3705), + [896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4568), + [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3088), [902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(84), - [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4148), - [908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8858), - [911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9400), - [914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1697), - [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9648), - [920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9369), - [923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(258), - [926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10523), - [929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1113), - [932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10401), - [935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10460), - [938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9806), - [941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9406), - [944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9690), - [947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1815), - [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9402), - [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1276), - [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8006), - [959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7803), - [962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10543), - [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10535), - [968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1279), - [971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1687), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7887), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9866), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7132), - [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1, 0, 30), - [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9796), - [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9797), - [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9328), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), - [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4956), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), - [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8858), - [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9400), - [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9648), - [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9369), - [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10523), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10401), - [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10460), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9806), - [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9406), - [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9690), - [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9402), - [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8006), - [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7803), - [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10543), - [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10535), - [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1099), - [1057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7939), - [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9894), - [1063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(176), - [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7099), - [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9897), - [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9900), - [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9158), - [1078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(650), - [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4190), - [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4931), - [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3133), - [1090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(57), - [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), - [1095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4134), - [1098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8661), - [1101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9268), - [1104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1653), - [1107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10096), - [1110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9210), - [1113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(254), - [1116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10162), - [1119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1117), - [1122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10472), - [1125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10626), - [1128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9926), - [1131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9172), - [1134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9783), - [1137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1812), - [1140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9271), - [1143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1286), - [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8036), - [1149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7766), - [1152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10451), - [1155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10452), - [1158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1301), - [1161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1654), - [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), - [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2, 0, 30), - [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), - [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6268), - [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6275), - [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), - [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), - [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), - [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), - [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), - [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6965), - [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6977), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7377), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7359), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), - [1278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1116), - [1281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7913), - [1284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10554), - [1287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(184), - [1290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7071), - [1293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9911), - [1296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9922), - [1299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9601), - [1302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(182), - [1305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1638), - [1308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1469), - [1311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1638), - [1314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(491), - [1317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6648), - [1320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(975), - [1323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4159), - [1326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4847), - [1329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3104), - [1332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9789), - [1335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7825), - [1338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9253), - [1341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10086), - [1344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9188), - [1347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5322), - [1350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(72), - [1353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3874), - [1356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1151), - [1359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4389), - [1362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4201), - [1365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4273), - [1368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3862), - [1371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7580), - [1374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6682), - [1377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6667), - [1380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6582), - [1383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8780), - [1386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9316), - [1389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1592), - [1392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10566), - [1395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9458), - [1398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(193), - [1401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10475), - [1404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1111), - [1407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10128), - [1410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9970), - [1413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9739), - [1416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1447), - [1419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1468), - [1422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10596), - [1425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10498), - [1428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9944), - [1431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8123), - [1434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5269), - [1437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8866), - [1440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8442), - [1443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5251), - [1446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5201), - [1449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4836), - [1452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10550), - [1455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3701), - [1458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10614), - [1461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5711), - [1464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6506), - [1467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1811), - [1470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(924), - [1473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9483), - [1476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1594), - [1479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1283), - [1482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8022), - [1485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7808), - [1488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9729), - [1491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10541), - [1494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1324), - [1497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1656), - [1500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9297), - [1503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1388), - [1506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6339), - [1509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6776), - [1512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1417), - [1515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5260), - [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1, 0, 0), - [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2, 0, 0), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2, 0, 0), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9442), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9635), - [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 11), - [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 11), - [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 0), - [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 0), - [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 11), - [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 11), - [1552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1110), - [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), - [1557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5266), - [1560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(284), - [1563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1638), - [1566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1638), - [1569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1650), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), - [1574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1650), - [1577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(335), - [1580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4199), - [1583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4943), - [1586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4389), - [1589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9789), - [1592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7825), - [1595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9442), - [1598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10086), - [1601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(69), - [1604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3874), - [1607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1208), - [1610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4273), - [1613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3862), - [1616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7580), - [1619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6682), - [1622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6667), - [1625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6582), - [1628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8770), - [1631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9331), - [1634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9269), - [1637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(256), - [1640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10450), - [1643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1119), - [1646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10111), - [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10119), - [1652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10618), - [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9338), - [1658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9659), - [1661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1447), - [1664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1468), - [1667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10596), - [1670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10498), - [1673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9944), - [1676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8123), - [1679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5269), - [1682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8866), - [1685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8442), - [1688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5251), - [1691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5201), - [1694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4836), - [1697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10550), - [1700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3701), - [1703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10614), - [1706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6506), - [1709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9635), - [1712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9334), - [1715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1594), - [1718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1293), - [1721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1261), - [1724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1666), - [1727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9297), - [1730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1388), - [1733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6339), - [1736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6776), - [1739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1417), - [1742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5260), - [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [1747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1094), - [1750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(478), - [1753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4202), - [1756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4953), - [1759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(82), - [1762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8837), - [1765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9367), - [1768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9332), - [1771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(257), - [1774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10513), - [1777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1115), - [1780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9822), - [1783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9918), - [1786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9728), - [1789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9377), - [1792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10581), - [1795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9372), - [1798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1262), - [1801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1267), - [1804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1677), - [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [1811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1104), - [1814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(671), - [1817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4159), - [1820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4847), - [1823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(72), - [1826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8780), - [1829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9316), - [1832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9458), - [1835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(193), - [1838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10475), - [1841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1111), - [1844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10128), - [1847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9970), - [1850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9739), - [1853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9280), - [1856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9677), - [1859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9483), - [1862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1283), - [1865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1324), - [1868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1656), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9280), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9677), - [1879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1092), - [1882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(650), - [1885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4190), - [1888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4931), - [1891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(57), - [1894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8661), - [1897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9268), - [1900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9210), - [1903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(254), - [1906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10162), - [1909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1117), - [1912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10472), - [1915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10626), - [1918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9926), - [1921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9172), - [1924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9783), - [1927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9271), - [1930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1286), - [1933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1301), - [1936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1654), - [1939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1098), - [1942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(606), - [1945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4203), - [1948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4956), - [1951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(84), - [1954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8858), - [1957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9400), - [1960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9369), - [1963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(258), - [1966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10523), - [1969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1113), - [1972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10401), - [1975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10460), - [1978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9806), - [1981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9406), - [1984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9690), - [1987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9402), - [1990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1276), - [1993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1279), - [1996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1687), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5297), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4959), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8886), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9425), - [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9401), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10533), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9654), - [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9655), - [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9870), - [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9431), - [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9708), - [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9443), - [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [2039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1105), - [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(991), - [2045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5297), - [2048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4959), - [2051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(88), - [2054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8886), - [2057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9425), - [2060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9401), - [2063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(259), - [2066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10533), - [2069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1118), - [2072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9654), - [2075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9655), - [2078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9870), - [2081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9431), - [2084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9708), - [2087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9443), - [2090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1298), - [2093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1310), - [2096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1698), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5294), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4951), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9366), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10476), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5293), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4947), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10201), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10188), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7839), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10309), - [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10639), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10686), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8118), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8946), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8247), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4566), - [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4567), - [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9614), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6362), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6792), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), - [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [2183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_semgrep_ellipsis, 1, 0, 0), - [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_semgrep_ellipsis, 1, 0, 0), - [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 1, 0, 0), - [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 1, 0, 0), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6727), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7843), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6372), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6527), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7545), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6588), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6590), - [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6591), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10163), - [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10616), - [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10682), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8074), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8838), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8419), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10165), - [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6496), - [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9587), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6352), - [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6785), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 1, 0, 0), - [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 1, 0, 0), - [2279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 36), - [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 36), - [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7829), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8249), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10391), - [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10654), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10691), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8089), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9007), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8185), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10381), - [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9611), - [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6359), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6801), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7846), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8426), - [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10242), - [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10630), - [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10683), - [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8078), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8860), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8207), - [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), - [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), - [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9603), - [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6363), - [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6777), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9329), - [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8491), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7831), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8269), - [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10403), - [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10657), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10692), - [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8094), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9008), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8380), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9629), - [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6321), - [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6780), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8788), - [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10093), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9292), - [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10241), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9530), - [2441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2115), - [2444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(5266), - [2447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(284), - [2450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1638), - [2453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1638), - [2456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1650), - [2459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(606), - [2462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7825), - [2465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9329), - [2468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(84), - [2471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1208), - [2474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8491), - [2477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8858), - [2480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9400), - [2483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1697), - [2486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9648), - [2489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9369), - [2492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(258), - [2495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10523), - [2498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1113), - [2501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10401), - [2504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10460), - [2507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9806), - [2510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9406), - [2513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9690), - [2516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1447), - [2519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1468), - [2522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10596), - [2525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10498), - [2528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9944), - [2531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8123), - [2534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(5269), - [2537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8866), - [2540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8442), - [2543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(5251), - [2546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(5201), - [2549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10381), - [2552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9635), - [2555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9402), - [2558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1594), - [2561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1276), - [2564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1279), - [2567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1687), - [2570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9297), - [2573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1388), - [2576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(6339), - [2579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(6776), - [2582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1417), - [2585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(5260), - [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [2590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2096), - [2593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(335), - [2596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(69), - [2599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8770), - [2602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9331), - [2605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1676), - [2608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9685), - [2611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9269), - [2614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(256), - [2617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10450), - [2620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1119), - [2623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10111), - [2626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10119), - [2629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10618), - [2632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9338), - [2635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9659), - [2638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9334), - [2641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1293), - [2644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1261), - [2647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1666), - [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7853), - [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9003), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8365), - [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9625), - [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6335), - [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [2678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2017), - [2681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(650), - [2684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(57), - [2687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8661), - [2690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9268), - [2693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1653), - [2696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10096), - [2699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9210), - [2702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(254), - [2705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10162), - [2708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1117), - [2711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10472), - [2714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10626), - [2717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9926), - [2720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9172), - [2723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9783), - [2726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9271), - [2729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1286), - [2732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1301), - [2735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1654), - [2738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2074), - [2741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(72), - [2744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8788), - [2747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9316), - [2750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1665), - [2753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10093), - [2756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9292), - [2759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(193), - [2762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10241), - [2765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1111), - [2768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10128), - [2771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9970), - [2774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9739), - [2777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9530), - [2780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9483), - [2783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1283), - [2786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1324), - [2789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1656), - [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [2794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2080), - [2797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(478), - [2800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(82), - [2803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8837), - [2806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9367), - [2809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1686), - [2812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10371), - [2815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9332), - [2818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(257), - [2821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10513), - [2824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1115), - [2827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9822), - [2830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9918), - [2833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9728), - [2836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9377), - [2839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10581), - [2842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9372), - [2845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1262), - [2848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1267), - [2851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1677), - [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8218), - [2860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2064), - [2863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(991), - [2866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(88), - [2869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8886), - [2872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9425), - [2875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9401), - [2878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(259), - [2881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10533), - [2884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1118), - [2887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9654), - [2890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9655), - [2893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9870), - [2896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9431), - [2899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9708), - [2902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9443), - [2905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1298), - [2908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1310), - [2911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1698), - [2914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2113), - [2917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(671), - [2920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8780), - [2923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1592), - [2926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10566), - [2929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9458), - [2932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10475), - [2935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9280), - [2938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9677), - [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7847), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8492), - [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10344), - [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10645), - [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10688), - [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8057), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8982), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8320), - [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4353), - [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4355), - [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9619), - [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6340), - [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6791), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7862), - [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7867), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8350), - [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10327), - [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10642), - [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10687), - [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8086), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8965), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8267), - [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), - [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4492), - [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9615), - [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6319), - [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6795), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), - [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8548), - [3057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 8), - [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 8), - [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9348), - [3063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), - [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), - [3067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9348), - [3070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 3, 0, 8), - [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 3, 0, 8), - [3074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 4, 0, 37), - [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 4, 0, 37), - [3078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), - [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), - [3082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 84), - [3084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 84), - [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [3088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 41), - [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 41), - [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9386), - [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), - [3096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), - [3098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9386), - [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 3, 0, 135), - [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 3, 0, 135), - [3105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 127), - [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 127), - [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), - [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_statement, 1, 0, 0), - [3121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_range_loop, 5, 0, 127), - [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_range_loop, 5, 0, 127), - [3125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 42), - [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 42), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6707), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [3139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, 0, 0), - [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, 0, 0), - [3143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, 0, 152), - [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, 0, 152), - [3147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 42), - [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 42), - [3151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [3155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, 0, 43), - [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, 0, 43), - [3159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, 0, 46), - [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, 0, 46), - [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), - [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), - [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 3, 0, 0), - [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 3, 0, 0), - [3175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [3179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, 0, 0), - [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, 0, 0), - [3183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), + [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3872), + [908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8354), + [911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8832), + [914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1678), + [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9242), + [920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8804), + [923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(190), + [926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9960), + [929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1077), + [932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9430), + [935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9455), + [938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9160), + [941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8842), + [944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9720), + [947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1783), + [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8835), + [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1254), + [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7677), + [959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7463), + [962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9980), + [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9972), + [968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1258), + [971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1670), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1064), + [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7548), + [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9692), + [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(172), + [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6613), + [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9699), + [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9700), + [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9075), + [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(614), + [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3910), + [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4521), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3073), + [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(57), + [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), + [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3853), + [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8229), + [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9024), + [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1623), + [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9804), + [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8675), + [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(256), + [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9483), + [1041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1085), + [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9400), + [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9412), + [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9745), + [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9002), + [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9228), + [1059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1780), + [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9030), + [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1275), + [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7687), + [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7436), + [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9871), + [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9872), + [1080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1269), + [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1624), + [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7540), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9218), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6649), + [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2, 0, 30), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9150), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9151), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8725), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4568), + [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), + [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8354), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8832), + [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9242), + [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8804), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9960), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9430), + [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9455), + [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9160), + [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8842), + [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9720), + [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8835), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7677), + [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7463), + [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9980), + [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9972), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1, 0, 30), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), + [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), + [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6702), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6678), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6954), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6949), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), + [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1081), + [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7573), + [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9592), + [1283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(178), + [1286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6599), + [1289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9810), + [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9319), + [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8674), + [1298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(180), + [1301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1361), + [1304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1387), + [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1361), + [1310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(474), + [1313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6185), + [1316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(950), + [1319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3844), + [1322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4531), + [1325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3039), + [1328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9582), + [1331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7503), + [1334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8691), + [1337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9529), + [1340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8956), + [1343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4916), + [1346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(106), + [1349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3609), + [1352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1102), + [1355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4028), + [1358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3717), + [1361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2161), + [1364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3590), + [1367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7182), + [1370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6056), + [1373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6181), + [1376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6184), + [1379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8615), + [1382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9074), + [1385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1515), + [1388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9180), + [1391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9043), + [1394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(193), + [1397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9271), + [1400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1079), + [1403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9385), + [1406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10007), + [1409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9197), + [1412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1648), + [1415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1767), + [1418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10010), + [1421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9181), + [1424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9229), + [1427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7745), + [1430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4812), + [1433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8635), + [1436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8078), + [1439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4249), + [1442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4253), + [1445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3570), + [1448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9646), + [1451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3344), + [1454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9324), + [1457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5026), + [1460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5978), + [1463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1779), + [1466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(903), + [1469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8755), + [1472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1368), + [1475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1294), + [1478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7691), + [1481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7420), + [1484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9357), + [1487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9369), + [1490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1266), + [1493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1393), + [1496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9041), + [1499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1394), + [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5864), + [1505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6332), + [1508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1409), + [1511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4265), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1, 0, 0), + [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 11), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 11), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8754), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8784), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2, 0, 0), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2, 0, 0), + [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 0), + [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 0), + [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 11), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 11), + [1548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1059), + [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), + [1553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4320), + [1556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(298), + [1559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1361), + [1562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1361), + [1565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1300), + [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), + [1570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1300), + [1573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(339), + [1576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3927), + [1579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4550), + [1582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4028), + [1585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9582), + [1588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7503), + [1591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8754), + [1594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9529), + [1597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(69), + [1600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3609), + [1603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1103), + [1606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2161), + [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3590), + [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7182), + [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6056), + [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6181), + [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6184), + [1624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8187), + [1627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8757), + [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9026), + [1633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(257), + [1636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9870), + [1639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1082), + [1642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9684), + [1645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9771), + [1648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9503), + [1651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8767), + [1654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9636), + [1657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1648), + [1660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1767), + [1663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10010), + [1666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9181), + [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9229), + [1672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7745), + [1675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4812), + [1678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8635), + [1681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8078), + [1684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4249), + [1687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4253), + [1690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3570), + [1693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9646), + [1696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3344), + [1699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9324), + [1702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5978), + [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8784), + [1708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8760), + [1711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1368), + [1714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1248), + [1717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1250), + [1720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1651), + [1723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9041), + [1726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1394), + [1729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5864), + [1732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6332), + [1735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1409), + [1738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4265), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [1743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1054), + [1746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(464), + [1749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3930), + [1752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4565), + [1755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(81), + [1758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8315), + [1761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8803), + [1764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8758), + [1767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(258), + [1770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9949), + [1773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1083), + [1776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9676), + [1779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9677), + [1782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9940), + [1785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8812), + [1788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9928), + [1791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8806), + [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1236), + [1797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1237), + [1800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1660), + [1803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1072), + [1806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(576), + [1809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3705), + [1812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4568), + [1815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(84), + [1818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8354), + [1821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8832), + [1824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8804), + [1827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(190), + [1830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9960), + [1833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1077), + [1836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9430), + [1839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9455), + [1842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9160), + [1845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8842), + [1848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9720), + [1851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8835), + [1854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1254), + [1857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1258), + [1860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1670), + [1863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1073), + [1866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(614), + [1869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3910), + [1872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4521), + [1875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(57), + [1878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8229), + [1881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9024), + [1884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8675), + [1887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(256), + [1890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9483), + [1893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1085), + [1896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9400), + [1899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9412), + [1902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9745), + [1905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9002), + [1908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9228), + [1911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9030), + [1914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1275), + [1917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1269), + [1920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1624), + [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9046), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9567), + [1933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1069), + [1936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(638), + [1939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3844), + [1942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4531), + [1945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(106), + [1948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8615), + [1951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9074), + [1954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9043), + [1957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(193), + [1960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9271), + [1963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1079), + [1966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9385), + [1969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10007), + [1972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9197), + [1975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9046), + [1978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9567), + [1981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8755), + [1984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1294), + [1987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1266), + [1990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1393), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4795), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8379), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8856), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8833), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9970), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9247), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9250), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9223), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8865), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9346), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8882), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [2035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1058), + [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(962), + [2041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4795), + [2044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4557), + [2047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(88), + [2050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8379), + [2053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8856), + [2056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8833), + [2059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(191), + [2062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9970), + [2065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1080), + [2068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9247), + [2071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9250), + [2074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9223), + [2077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8865), + [2080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9346), + [2083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8882), + [2086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1265), + [2089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1280), + [2092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1679), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4825), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8802), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9887), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9708), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7185), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6158), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6159), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6163), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9272), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7511), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9747), + [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10056), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10097), + [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7775), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8437), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7880), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9093), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5863), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6343), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), + [2183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 1, 0, 0), + [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 1, 0, 0), + [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [2191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_semgrep_ellipsis, 1, 0, 0), + [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_semgrep_ellipsis, 1, 0, 0), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7489), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6098), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7215), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6057), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6075), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6157), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9486), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10044), + [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10093), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7767), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8316), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7938), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9488), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), + [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9049), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5831), + [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6318), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 1, 0, 0), + [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 1, 0, 0), + [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 36), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 36), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7497), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8084), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9681), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10047), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10094), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7738), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8355), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8133), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9158), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9079), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5861), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6309), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7508), + [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8483), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8165), + [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9089), + [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5827), + [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6316), + [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), + [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), + [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), + [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), + [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8042), + [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7486), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7860), + [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9816), + [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10068), + [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10101), + [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7723), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8484), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7983), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9109), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5829), + [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6317), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8331), + [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9436), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8761), + [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9680), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8955), + [2425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2144), + [2428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(4320), + [2431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(298), + [2434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1361), + [2437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1361), + [2440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1300), + [2443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(614), + [2446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7503), + [2449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8754), + [2452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(57), + [2455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1103), + [2458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8042), + [2461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8229), + [2464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9024), + [2467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1623), + [2470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9804), + [2473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8675), + [2476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(256), + [2479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9483), + [2482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1085), + [2485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9400), + [2488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9412), + [2491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9745), + [2494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9002), + [2497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9228), + [2500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1648), + [2503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1767), + [2506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10010), + [2509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9181), + [2512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9229), + [2515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7745), + [2518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(4812), + [2521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8635), + [2524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8078), + [2527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(4249), + [2530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(4253), + [2533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9158), + [2536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8784), + [2539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9030), + [2542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1368), + [2545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1275), + [2548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1269), + [2551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1624), + [2554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9041), + [2557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1394), + [2560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(5864), + [2563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(6332), + [2566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1409), + [2569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(4265), + [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7514), + [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8479), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7970), + [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9105), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [2596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2199), + [2599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(638), + [2602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(106), + [2605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8615), + [2608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9074), + [2611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1515), + [2614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9180), + [2617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9043), + [2620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(193), + [2623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9271), + [2626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1079), + [2629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9385), + [2632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10007), + [2635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9197), + [2638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9046), + [2641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9567), + [2644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8755), + [2647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1294), + [2650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1266), + [2653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1393), + [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8164), + [2662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2204), + [2665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(339), + [2668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(69), + [2671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8187), + [2674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8757), + [2677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1659), + [2680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9668), + [2683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9026), + [2686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(257), + [2689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9870), + [2692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1082), + [2695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9684), + [2698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9771), + [2701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9503), + [2704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8767), + [2707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9636), + [2710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8760), + [2713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1248), + [2716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1250), + [2719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1651), + [2722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2215), + [2725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8331), + [2728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1650), + [2731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9436), + [2734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8761), + [2737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9680), + [2740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8955), + [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [2745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2162), + [2748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(464), + [2751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(81), + [2754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8315), + [2757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8803), + [2760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1669), + [2763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9415), + [2766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8758), + [2769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(258), + [2772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9949), + [2775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1083), + [2778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9676), + [2781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9677), + [2784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9940), + [2787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8812), + [2790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9928), + [2793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8806), + [2796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1236), + [2799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1237), + [2802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1660), + [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [2807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2171), + [2810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(576), + [2813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(84), + [2816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8354), + [2819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8832), + [2822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1678), + [2825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9242), + [2828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8804), + [2831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(190), + [2834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9960), + [2837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1077), + [2840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9430), + [2843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9455), + [2846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9160), + [2849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8842), + [2852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9720), + [2855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8835), + [2858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1254), + [2861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1258), + [2864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1670), + [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [2869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2176), + [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(962), + [2875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(88), + [2878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8379), + [2881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8856), + [2884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8833), + [2887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(191), + [2890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9970), + [2893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1080), + [2896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9247), + [2899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9250), + [2902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9223), + [2905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8865), + [2908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9346), + [2911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8882), + [2914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1265), + [2917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1280), + [2920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1679), + [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7488), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8083), + [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9782), + [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10062), + [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10099), + [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7716), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8464), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7937), + [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), + [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), + [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9099), + [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5854), + [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6308), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7484), + [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7474), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7981), + [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9765), + [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10059), + [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10098), + [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7709), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8453), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7902), + [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), + [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), + [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9096), + [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5835), + [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6344), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), + [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), + [3031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8779), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8116), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [3046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 8), + [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 8), + [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8779), + [3052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 4, 0, 37), + [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 4, 0, 37), + [3056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 3, 0, 8), + [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 3, 0, 8), + [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 3, 0, 135), + [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 3, 0, 135), + [3064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 41), + [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 41), + [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [3070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8822), + [3073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 84), + [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 84), + [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8822), + [3079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 85), + [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 85), + [3083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 0), + [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 0), + [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, 0, 8), + [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, 0, 8), + [3095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 121), + [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 121), + [3099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [3103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 122), + [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 122), + [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 127), + [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 127), + [3111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_range_loop, 5, 0, 127), + [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_range_loop, 5, 0, 127), + [3115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [3119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 3, 0, 0), + [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 3, 0, 0), + [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_yield_statement, 3, 0, 0), + [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_yield_statement, 3, 0, 0), + [3127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2, 0, 0), + [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2, 0, 0), + [3131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [3139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), + [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_statement, 1, 0, 0), + [3143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, 0, 0), + [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, 0, 0), + [3147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, 0, 152), + [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, 0, 152), + [3151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [3155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2, 0, 0), + [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2, 0, 0), + [3159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 42), + [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 42), + [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 2, 0, 0), + [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 2, 0, 0), + [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, 0, 43), + [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, 0, 43), + [3175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, 0, 46), + [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, 0, 46), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [3181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), [3189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, 0, 0), [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, 0, 0), [3193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, 0, 8), [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, 0, 8), - [3197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2, 0, 0), - [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2, 0, 0), - [3201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 85), - [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 85), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [3207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [3211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 2, 0, 0), - [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 2, 0, 0), - [3215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2, 0, 0), - [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2, 0, 0), - [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), - [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), - [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 0), - [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 0), - [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, 0, 8), - [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, 0, 8), - [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 121), - [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 121), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [3241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 122), - [3243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 122), - [3245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_yield_statement, 3, 0, 0), - [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_yield_statement, 3, 0, 0), - [3249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 109), - [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 109), - [3253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, 0, 29), - [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, 0, 29), - [3257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, 0, 31), - [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, 0, 31), - [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, 0, 32), - [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, 0, 32), - [3265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, 0, 35), - [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, 0, 35), - [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6156), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7836), - [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6532), - [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6427), - [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7588), - [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6626), - [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6628), - [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6629), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10289), - [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10636), - [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10685), - [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8101), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6050), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8931), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8220), - [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6135), - [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6108), - [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), - [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10329), - [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6510), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9140), - [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6311), - [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6803), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), - [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, 0, 37), - [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, 0, 37), - [3343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9414), - [3346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 3, 0, 4), - [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 3, 0, 4), - [3350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 3, 0, 47), - [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 3, 0, 47), - [3354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), - [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, 0, 39), - [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, 0, 39), - [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 3, 0, 0), - [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 3, 0, 0), - [3366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 52), - [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 52), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 56), - [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 56), - [3376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 52), - [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 52), - [3380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 4), - [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 4), - [3384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 3, 0, 4), - [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 3, 0, 4), - [3388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 3, 0, 52), - [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 3, 0, 52), - [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, 0, 62), - [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, 0, 62), - [3396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, 0, 63), - [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, 0, 63), - [3400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 64), - [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 64), - [3404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 67), - [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 67), - [3408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 68), - [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 68), - [3412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 69), - [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 69), - [3416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 70), - [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 70), - [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, 0, 80), - [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, 0, 80), - [3424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9288), - [3427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 4, 0, 34), - [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 4, 0, 34), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [3433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 4, 0, 47), - [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 4, 0, 47), - [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), - [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [3441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 4, 0, 0), - [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 4, 0, 0), - [3445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 95), - [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 95), - [3449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_method_clause, 3, 0, 0), - [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_method_clause, 3, 0, 0), - [3453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_method_clause, 3, 0, 0), - [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_method_clause, 3, 0, 0), - [3457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 4, 0, 98), - [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 4, 0, 98), - [3461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 4, 0, 102), - [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 4, 0, 102), - [3465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, 0, 103), - [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, 0, 103), - [3469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 104), - [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 104), - [3473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 105), - [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 105), - [3477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 110), - [3479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 110), - [3481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, 0, 2), - [3483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, 0, 2), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), - [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, 0, 9), - [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, 0, 9), - [3491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 5, 0, 136), - [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 5, 0, 136), - [3495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 5, 0, 137), - [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 5, 0, 137), - [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concept_definition, 5, 0, 9), - [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concept_definition, 5, 0, 9), - [3503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 5, 0, 146), - [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 5, 0, 146), - [3507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 147), - [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 147), - [3511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 6, 0, 167), - [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 6, 0, 167), - [3515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 7, 0, 178), - [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 7, 0, 178), - [3519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9284), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), - [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9284), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9288), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6726), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6519), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7870), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), - [3556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 2, 0, 0), - [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 2, 0, 0), - [3560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 2, 0, 19), - [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 2, 0, 19), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9414), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [3610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, 0, 8), - [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, 0, 8), - [3614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 21), - [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 21), - [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 3, 0, 0), - [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 3, 0, 0), - [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 3, 0, 4), - [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 3, 0, 4), - [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 19), - [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 19), - [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_declaration, 2, 0, 0), - [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_declaration, 2, 0, 0), - [3634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 2, 0, 19), - [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 2, 0, 19), - [3638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 2, 0, 21), - [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 2, 0, 21), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 4, 0, 0), - [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 4, 0, 0), - [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, 0, 27), - [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, 0, 27), - [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, 0, 28), - [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, 0, 28), - [3656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6692), - [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6585), - [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6611), - [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4778), - [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9917), - [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7103), - [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10047), - [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10050), - [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7154), - [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10508), - [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10510), - [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9501), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10624), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6648), - [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), - [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4963), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7885), - [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9736), - [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), - [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7523), - [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6583), - [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6586), - [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6589), - [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6466), - [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8441), - [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10505), - [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7785), - [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10551), - [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), - [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7812), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8190), - [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10361), - [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10648), - [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10689), - [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8072), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8997), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8428), - [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), - [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5365), - [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9604), - [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6358), - [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6779), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7871), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8221), - [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10378), - [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10651), - [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10690), - [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8079), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9005), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8372), - [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5537), - [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5538), - [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9627), - [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6332), - [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6786), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), - [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9962), - [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7126), - [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), - [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9669), - [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9670), - [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9617), - [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), - [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4965), - [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8471), - [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7767), - [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10559), - [3886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, 0, 65), - [3888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, 0, 66), - [3890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, 0, 106), - [3892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 65), - [3894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 66), - [3896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 106), - [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [3908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4778), - [3911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9917), - [3914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7103), - [3917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), - [3919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10047), - [3922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10050), - [3925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9501), - [3928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6624), - [3931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10624), - [3934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4049), - [3937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6648), - [3940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6648), - [3943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4204), - [3946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4963), - [3949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4389), - [3952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9789), - [3955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7885), - [3958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9366), - [3961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10086), - [3964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9188), - [3967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3874), - [3970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9736), - [3973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4273), - [3976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4255), - [3979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7523), - [3982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6583), - [3985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6586), - [3988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6589), - [3991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4836), - [3994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10550), - [3997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3701), - [4000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10614), - [4003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5711), - [4006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6466), - [4009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8441), - [4012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(924), - [4015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1864), - [4018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10505), - [4021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7785), - [4024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10551), - [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7844), - [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8991), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8357), - [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9624), - [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6347), - [4055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_expression_statement, 2, 0, 0), - [4057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_top_level_expression_statement, 2, 0, 0), - [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8432), - [4065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9962), - [4068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7126), - [4071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9669), - [4074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9670), - [4077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9617), - [4080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4205), - [4083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4965), - [4086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8471), - [4089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1868), - [4092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7767), - [4095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10559), - [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7868), - [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7866), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8427), - [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10266), - [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10633), - [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10684), - [4132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8090), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8887), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8488), - [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6267), - [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6181), - [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9607), - [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [4150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6316), - [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6783), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), - [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9717), - [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7150), - [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10495), - [4164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10496), - [4166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9155), - [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), - [4170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4945), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), - [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8540), - [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7761), - [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10524), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6471), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6467), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6806), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [4206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9717), - [4209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7150), - [4212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10495), - [4215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10496), - [4218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9155), - [4221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4200), - [4224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4945), - [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), - [4229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8540), - [4232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1857), - [4235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7761), - [4238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10524), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pack_expansion, 2, 0, 23), - [4261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pack_expansion, 2, 0, 23), - [4263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10005), - [4265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7131), - [4267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, 0, 30), - [4269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9761), - [4271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9762), - [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9322), - [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), - [4277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4967), - [4279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8474), - [4281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7777), - [4285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10567), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6830), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), - [4297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10005), - [4300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7131), - [4303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9761), - [4306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9762), - [4309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9322), - [4312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4206), - [4315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4967), - [4318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8474), - [4321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1869), - [4324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7777), - [4327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10567), - [4330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, 0, 30), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), - [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7475), - [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7475), - [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), - [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), - [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7595), - [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6555), - [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6556), - [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6557), - [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4805), - [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10268), - [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6419), - [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7389), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10117), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), - [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9889), - [4378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4, 0, 0), - [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4, 0, 0), - [4382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3, 0, 0), - [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3, 0, 0), - [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4673), - [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8414), - [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10518), - [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6878), - [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10577), - [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10568), - [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8299), - [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10181), - [4406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10563), - [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10552), - [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10538), - [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10544), - [4414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10571), - [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10560), - [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8452), - [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [4422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10547), - [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8464), - [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10555), - [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8430), - [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10528), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7289), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7661), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6219), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [3207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), + [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), + [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), + [3213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 42), + [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 42), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, 0, 0), + [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, 0, 0), + [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 6, 0, 167), + [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 6, 0, 167), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4466), + [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9273), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6617), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9240), + [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9927), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6592), + [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9987), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10003), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8870), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9897), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6185), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4570), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7563), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9908), + [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7152), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6142), + [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6143), + [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6144), + [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6010), + [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8062), + [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9793), + [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7416), + [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9988), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [3291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8658), + [3294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 3, 0, 0), + [3296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 3, 0, 0), + [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [3302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 3, 0, 4), + [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 3, 0, 4), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7513), + [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6007), + [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7218), + [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6203), + [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6133), + [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6151), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9728), + [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10053), + [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10096), + [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7762), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8422), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7858), + [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5626), + [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5627), + [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9749), + [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6018), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9091), + [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), + [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6315), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), + [3380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, 0, 2), + [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, 0, 2), + [3384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 3, 0, 4), + [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 3, 0, 4), + [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 3, 0, 47), + [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 3, 0, 47), + [3396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 4, 0, 0), + [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 4, 0, 0), + [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [3402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [3406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, 0, 39), + [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, 0, 39), + [3410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 3, 0, 0), + [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 3, 0, 0), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8851), + [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 52), + [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 52), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [3434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 56), + [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 56), + [3438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 52), + [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 52), + [3442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 4), + [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 4), + [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9047), + [3448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8851), + [3451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 3, 0, 4), + [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 3, 0, 4), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [3457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 3, 0, 52), + [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 3, 0, 52), + [3461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, 0, 62), + [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, 0, 62), + [3465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, 0, 63), + [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, 0, 63), + [3469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 64), + [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 64), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [3475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 67), + [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 67), + [3479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 68), + [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 68), + [3483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 69), + [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 69), + [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 70), + [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 70), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [3493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, 0, 80), + [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, 0, 80), + [3497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, 0, 8), + [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, 0, 8), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [3503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 21), + [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 21), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [3509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 4, 0, 34), + [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 4, 0, 34), + [3513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 4, 0, 47), + [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 4, 0, 47), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7485), + [3519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [3525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 95), + [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 95), + [3529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_method_clause, 3, 0, 0), + [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_method_clause, 3, 0, 0), + [3533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_method_clause, 3, 0, 0), + [3535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_method_clause, 3, 0, 0), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [3541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 4, 0, 98), + [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 4, 0, 98), + [3545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 4, 0, 102), + [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 4, 0, 102), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [3551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, 0, 103), + [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, 0, 103), + [3555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 104), + [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 104), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [3561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 105), + [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 105), + [3565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 109), + [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 109), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [3571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 110), + [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 110), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [3577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 19), + [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 19), + [3581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_declaration, 2, 0, 0), + [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_declaration, 2, 0, 0), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), + [3587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 2, 0, 19), + [3589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 2, 0, 19), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [3593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 2, 0, 21), + [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 2, 0, 21), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [3599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, 0, 27), + [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, 0, 27), + [3603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, 0, 9), + [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, 0, 9), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [3609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 5, 0, 136), + [3611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 5, 0, 136), + [3613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 5, 0, 137), + [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 5, 0, 137), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [3619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concept_definition, 5, 0, 9), + [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concept_definition, 5, 0, 9), + [3623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 5, 0, 146), + [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 5, 0, 146), + [3627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 147), + [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 147), + [3631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, 0, 28), + [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, 0, 28), + [3635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, 0, 29), + [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, 0, 29), + [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8658), + [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [3649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 7, 0, 178), + [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 7, 0, 178), + [3653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, 0, 31), + [3655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, 0, 31), + [3657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, 0, 32), + [3659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, 0, 32), + [3661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, 0, 35), + [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, 0, 35), + [3665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9047), + [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 2, 0, 0), + [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 2, 0, 0), + [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 2, 0, 19), + [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 2, 0, 19), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [3680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, 0, 37), + [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, 0, 37), + [3684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 4, 0, 0), + [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 4, 0, 0), + [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5664), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5969), + [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5970), + [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [3714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4466), + [3717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9273), + [3720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1946), + [3723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6617), + [3726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), + [3728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9240), + [3731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9927), + [3734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8870), + [3737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6190), + [3740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9897), + [3743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3714), + [3746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6185), + [3749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6185), + [3752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3932), + [3755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4570), + [3758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4028), + [3761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9582), + [3764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7563), + [3767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8802), + [3770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9529), + [3773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8956), + [3776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3609), + [3779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9908), + [3782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2161), + [3785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4058), + [3788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7152), + [3791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6142), + [3794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6143), + [3797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6144), + [3800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3570), + [3803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9646), + [3806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3344), + [3809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9324), + [3812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5026), + [3815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6010), + [3818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8062), + [3821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(903), + [3824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1837), + [3827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9793), + [3830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7416), + [3833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9988), + [3836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1935), + [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9316), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6646), + [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9638), + [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9641), + [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8973), + [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), + [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), + [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8081), + [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7425), + [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9996), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [3881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, 0, 65), + [3883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, 0, 66), + [3885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, 0, 106), + [3887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 65), + [3889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 66), + [3891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 106), + [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7498), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8477), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8031), + [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9083), + [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5820), + [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6340), + [3919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9316), + [3922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2103), + [3925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6646), + [3928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9638), + [3931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9641), + [3934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8973), + [3937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3933), + [3940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4573), + [3943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8081), + [3946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1832), + [3949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7425), + [3952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9996), + [3955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2142), + [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7480), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8167), + [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9799), + [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10065), + [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10100), + [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7720), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8481), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7977), + [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5096), + [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5097), + [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9107), + [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5824), + [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6342), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), + [4002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9358), + [4005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2237), + [4008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6648), + [4011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10036), + [4014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10038), + [4017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9061), + [4020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3934), + [4023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4575), + [4026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8088), + [4029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1835), + [4032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7443), + [4035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10004), + [4038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2361), + [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9920), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6623), + [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9671), + [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9131), + [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8992), + [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), + [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7952), + [4061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7423), + [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9961), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9358), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6648), + [4075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, 0, 30), + [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10036), + [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10038), + [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9061), + [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), + [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), + [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8088), + [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7443), + [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10004), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), + [4107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_expression_statement, 2, 0, 0), + [4109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_top_level_expression_statement, 2, 0, 0), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [4119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, 0, 30), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [4149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9920), + [4152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2030), + [4155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6623), + [4158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9671), + [4161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9131), + [4164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8992), + [4167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3929), + [4170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4554), + [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), + [4175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7952), + [4178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1841), + [4181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7423), + [4184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9961), + [4187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2347), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7506), + [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8473), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7966), + [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9104), + [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7472), + [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [4230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5833), + [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [4240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8035), + [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7495), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7960), + [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [4256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9707), + [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10050), + [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10095), + [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7755), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8380), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8077), + [4270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5675), + [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5680), + [4274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9085), + [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5842), + [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6307), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), + [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), + [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7496), + [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pack_expansion, 2, 0, 23), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [4306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pack_expansion, 2, 0, 23), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4383), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), + [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), + [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7189), + [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6149), + [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6183), + [4326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6186), + [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6015), + [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9910), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7035), + [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7035), + [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6983), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9500), + [4342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4, 0, 0), + [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4, 0, 0), + [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3, 0, 0), + [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3, 0, 0), + [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4396), + [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10014), + [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10005), + [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6386), + [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8000), + [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9955), + [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9975), + [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9981), + [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8075), + [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9992), + [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10000), + [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9989), + [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10008), + [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9997), + [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8045), + [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9965), + [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8068), + [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9984), + [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7914), + [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9530), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7462), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7226), + [4414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [4417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [4419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [4422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_modifiers, 1, 0, 0), + [4426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_modifiers, 1, 0, 0), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6849), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7244), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7454), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6883), + [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7103), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6866), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7258), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7076), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7460), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7274), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7506), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7632), - [4508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [4513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [4516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [4518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_modifiers, 1, 0, 0), - [4520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_modifiers, 1, 0, 0), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7468), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7470), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7297), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7641), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7800), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7665), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7801), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9451), - [4560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9451), - [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7816), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10070), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), - [4593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1944), - [4596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(5266), - [4599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(284), - [4602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1638), - [4605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1638), - [4608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1650), - [4611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(2813), - [4614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7825), - [4617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1624), - [4620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), - [4622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1208), - [4625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8491), - [4628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1447), - [4631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1468), - [4634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(10596), - [4637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(10498), - [4640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(9944), - [4643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8123), - [4646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(5269), - [4649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8866), - [4652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8442), - [4655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(5251), - [4658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(5201), - [4661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(10381), - [4664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7816), - [4667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(9635), - [4670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1594), - [4673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(9297), - [4676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1388), - [4679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(6339), - [4682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(6776), - [4685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1417), - [4688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(5260), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10330), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9829), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10273), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6224), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9862), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7400), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9813), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9725), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6260), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9915), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5551), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9856), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6980), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9778), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6932), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9647), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5579), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6227), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), - [4827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), - [4829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_not_binary, 1, 0, 0), - [4831] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 0), REDUCE(sym_expression_not_binary, 1, 0, 0), - [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), - [4837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_not_binary, 1, 0, 0), - [4839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), REDUCE(sym_expression_not_binary, 1, 0, 0), - [4842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), REDUCE(sym_expression_not_binary, 1, 0, 0), - [4845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_not_binary, 1, 0, 0), SHIFT(351), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7914), - [4850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 0), - [4853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1, 0, 0), - [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), - [4857] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 0), REDUCE(sym_expression_not_binary, 1, 0, 0), - [4861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6958), - [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [4871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_not_binary, 1, 0, 0), SHIFT(415), - [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8342), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9621), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), - [4886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [4888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), - [4894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), - [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), - [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), - [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), - [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), - [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9310), - [4960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 2, 0, 0), - [4962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 2, 0, 0), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), - [4984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [5014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8023), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [5042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9779), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10356), - [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10078), - [5082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10114), - [5086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [5118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement_body, 3, 0, 124), - [5120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement_body, 3, 0, 126), - [5122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement_body, 3, 0, 86), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [5126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_default_capture, 1, 0, 0), - [5128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement_body, 4, 0, 161), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [5132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement_body, 2, 0, 0), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [5138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement_body, 2, 0, 86), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [5150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fold_operator, 1, 0, 0), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7664), - [5154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7295), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7273), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10189), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [5182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7310), - [5186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9695), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [5190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7797), - [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9985), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9877), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10328), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7087), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [5214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9791), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7467), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [5220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9906), - [5222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [5224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10023), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7491), - [5228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9764), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), - [5236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9752), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7495), - [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9991), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [5244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10198), - [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10379), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [5250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [5254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7296), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7620), - [5264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [5268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4071), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8581), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), - [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), - [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7497), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [5298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7769), - [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10058), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7671), - [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9713), - [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9868), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8170), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6195), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8137), - [5436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8177), - [5438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8141), - [5440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8162), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [5456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, 2, 132), - [5458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, 2, 132), - [5460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 9), - [5462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, 0, 9), - [5464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, 0, 9), REDUCE(sym_qualified_type_identifier, 2, 0, 9), - [5467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, 0, 9), - [5469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 9), - [5471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 9), REDUCE(sym_qualified_type_identifier, 2, 0, 9), - [5474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 9), SHIFT(408), - [5477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 2, 0, 44), - [5479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 2, 0, 44), - [5481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, 1, 88), - [5483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, 1, 88), - [5485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_not_binary, 1, 0, 0), SHIFT(454), - [5488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declarator, 1, 0, 0), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8546), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9609), - [5496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, 2, 88), - [5498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, 2, 88), - [5500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, 3, 88), - [5502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, 3, 88), - [5504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 9), SHIFT(426), - [5507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, 1, 132), - [5509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, 1, 132), - [5511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, 3, 132), - [5513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, 3, 132), - [5515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_not_binary, 1, 0, 0), SHIFT(410), - [5518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_type, 2, 0, 15), - [5520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_function, 2, 0, 15), - [5522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_type, 2, 0, 15), REDUCE(sym_template_function, 2, 0, 15), - [5525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 2, 0, 15), - [5527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_function, 2, 0, 15), - [5529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_type, 2, 0, 15), REDUCE(sym_template_function, 2, 0, 15), - [5532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_not_binary, 1, 0, 0), SHIFT(411), - [5535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_not_binary, 1, 0, 0), SHIFT(414), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [5540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8333), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9620), - [5548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6318), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7246), - [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7246), - [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4711), - [5572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6614), - [5574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6622), - [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6623), - [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6600), - [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6601), - [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6602), - [5584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6619), - [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6620), - [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6621), - [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6633), - [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6634), - [5594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6635), - [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6640), - [5598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6641), - [5600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6642), - [5602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6645), - [5604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6646), - [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6647), - [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6651), - [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6652), - [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6653), - [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6656), - [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6657), - [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6658), - [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6662), - [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6663), - [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6664), - [5626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 4, 0, 120), - [5628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 4, 0, 120), - [5630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [5632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1875), - [5635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [5637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8185), - [5640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9611), - [5643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3, 0, 0), - [5645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [5647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3, 0, 0), - [5649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [5653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [5655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 3, 0, 11), - [5657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3, 0, 11), - [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6304), - [5661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6281), - [5663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8481), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8017), - [5669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [5671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [5673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 7, 0, 179), - [5675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 7, 0, 179), - [5677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [5679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [5681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 5, 0, 0), - [5683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 5, 0, 0), - [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8718), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9068), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8789), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [5697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [5699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [5701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1908), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8599), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9034), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8919), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [5716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9470), - [5718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_not_binary, 1, 0, 0), SHIFT(429), - [5721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9612), - [5727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_type_repeat1, 2, 0, 0), - [5729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_type_repeat1, 2, 0, 0), - [5731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1970), - [5734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1920), - [5737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9470), - [5740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 9), SHIFT(454), - [5743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_not_binary, 1, 0, 0), SHIFT(431), - [5746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), - [5748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7892), - [5750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5018), - [5752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5007), - [5754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10693), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9398), - [5758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10240), - [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5038), - [5762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10245), - [5764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_not_binary, 1, 0, 0), SHIFT(360), - [5767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 9), SHIFT(410), - [5770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_not_binary, 1, 0, 0), SHIFT(430), - [5773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [5777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 9), SHIFT(411), - [5780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9484), - [5783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), - [5785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_not_binary, 1, 0, 0), SHIFT(433), - [5788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9484), - [5790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), - [5792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 64), - [5794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 64), - [5796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 109), - [5798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 109), - [5800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 110), - [5802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 110), - [5804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 146), - [5806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 146), - [5808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 4), - [5810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 4), - [5812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 69), - [5814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 69), - [5816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 170), - [5818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 170), - [5820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 70), - [5822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 70), - [5824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 153), - [5826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 153), - [5828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 171), - [5830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 171), - [5832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 154), - [5834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 154), - [5836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 4), - [5838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 4), - [5840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 147), - [5842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 147), - [5844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 146), - [5846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 146), - [5848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 180), - [5850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 180), - [5852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list_item, 1, 0, 0), - [5854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list_item, 1, 0, 0), - [5856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 153), - [5858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 153), - [5860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 170), - [5862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 170), - [5864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 171), - [5866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 171), - [5868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 7, 0, 180), - [5870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 7, 0, 180), - [5872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 154), - [5874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 154), - [5876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 4), - [5878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 4), - [5880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, 0, 52), - [5882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, 0, 52), - [5884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 31), - [5886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 31), - [5888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_name, 2, 0, 0), - [5890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_name, 2, 0, 0), - [5892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 67), - [5894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 67), - [5896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, 0, 4), - [5898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, 0, 4), - [5900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 9), SHIFT(421), - [5903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, 0, 0), - [5905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, 0, 0), - [5907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list_item, 2, 0, 0), - [5909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list_item, 2, 0, 0), - [5911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [5913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 105), - [5915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 105), - [5917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [5919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2024), - [5922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8380), - [5925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9629), - [5928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 0), - [5930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 0), - [5932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_declarator, 1, 0, 0), REDUCE(sym_expression_not_binary, 1, 0, 0), - [5935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_declarator, 1, 0, 0), REDUCE(sym_expression_not_binary, 1, 0, 0), - [5938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 68), - [5940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 68), - [5942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 104), - [5944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 104), - [5946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_not_binary, 1, 0, 0), SHIFT(376), - [5949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 29), - [5951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 29), - [5953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), - [5955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9494), - [5957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_base_clause, 2, 0, 81), - [5959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_base_clause, 2, 0, 81), - [5961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [5963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2069), - [5966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8546), - [5969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9609), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8376), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9628), - [5976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [5978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_not_binary, 1, 0, 0), SHIFT(9939), - [5981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_not_binary, 1, 0, 0), SHIFT(7621), - [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [5990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 16), - [5992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 16), - [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [5996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 16), - [5998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 16), - [6000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9434), - [6002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2079), - [6005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 16), - [6007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 16), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [6011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_not_binary, 1, 0, 0), SHIFT(424), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [6016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [6019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [6022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), - [6024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [6026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), - [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [6030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [6032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 1), - [6034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 1), - [6036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2091), - [6039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8376), - [6042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9628), - [6045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9434), - [6048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 16), - [6050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 16), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [6062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 1), - [6064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 1), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9939), - [6068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8369), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9626), - [6076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration_item, 1, 0, 5), - [6078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration_item, 1, 0, 5), - [6080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10436), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7199), - [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7335), - [6088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9494), - [6091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2124), - [6094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8351), - [6097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9623), - [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8351), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9623), - [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [6108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10308), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7335), - [6120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_not_binary, 1, 0, 0), SHIFT(421), - [6123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2235), - [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10377), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [6134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [6140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2266), - [6143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [6145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10439), - [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [6153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_not_binary, 1, 0, 0), SHIFT(405), - [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8291), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9616), - [6164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8347), - [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9622), - [6170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2227), - [6173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8347), - [6176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9622), - [6179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2228), - [6182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [6186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [6188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [6190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_not_binary, 1, 0, 0), SHIFT(416), - [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [6197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_name, 1, 0, 0), - [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [6201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [6203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [6209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2254), - [6212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 9), SHIFT(442), - [6215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [6217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [6219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), - [6221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), - [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), - [6225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 9), - [6227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 9), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7616), - [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7413), - [6233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 38), - [6235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 38), - [6237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 9), - [6239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 9), - [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7648), - [6243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), - [6247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2361), - [6250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8342), - [6253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9621), - [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7778), - [6258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), - [6264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [6268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type_identifier, 2, 0, 0), - [6270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type_identifier, 2, 0, 0), - [6272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2407), - [6275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2394), - [6278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2532), - [6281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [6285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [6287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), - [6289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 16), - [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [6293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 16), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9887), - [6301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 50), - [6303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 50), - [6305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 9), SHIFT(411), - [6308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 38), - [6310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 38), - [6312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 78), - [6314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 78), - [6316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 36), - [6318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 36), - [6320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 82), - [6322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 82), - [6324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2459), - [6327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [6329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 9), SHIFT(441), - [6332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 9), SHIFT(444), - [6335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2468), - [6338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2601), - [6341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), - [6343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [6345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 3, 0, 0), - [6347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 3, 0, 0), - [6349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, 0, 100), - [6351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, 0, 100), - [6353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2470), - [6356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, 0, 101), - [6358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, 0, 101), - [6360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 5, 0, 145), - [6362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 5, 0, 145), - [6364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration_item, 4, 0, 118), - [6366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration_item, 4, 0, 118), - [6368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_clause_constraint, 1, 0, 0), - [6370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_clause_constraint, 1, 0, 0), - [6372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_clause, 2, 0, 18), - [6374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_clause, 2, 0, 18), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6898), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6899), - [6380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6898), - [6382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6899), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [6386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 8), - [6388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), - [6390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration_item, 1, 0, 10), - [6392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration_item, 1, 0, 10), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [6398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10131), - [6402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type, 2, -1, 0), - [6404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type, 2, -1, 0), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10015), - [6410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_clause_constraint, 3, 0, 0), - [6412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_clause_constraint, 3, 0, 0), - [6414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_disjunction, 3, 0, 45), - [6416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_disjunction, 3, 0, 45), - [6418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_conjunction, 3, 0, 45), - [6420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_conjunction, 3, 0, 45), - [6422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 37), - [6424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 37), - [6426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 39), - [6428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 39), - [6430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration_item, 2, 0, 40), - [6432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration_item, 2, 0, 40), - [6434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration_item, 2, 0, 8), - [6436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration_item, 2, 0, 8), - [6438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [6440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7678), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7375), - [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10360), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [6452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 80), - [6454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 80), - [6456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration_item, 3, 0, 83), - [6458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration_item, 3, 0, 83), - [6460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration_item, 3, 0, 37), - [6462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration_item, 3, 0, 37), - [6464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype, 4, 0, 0), - [6466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype, 4, 0, 0), - [6468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 2, 0, 17), - [6470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 2, 0, 17), - [6472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 2, 0, 26), - [6474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 2, 0, 26), - [6476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), - [6478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [6480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [6482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fold_expression, 3, 0, 0), - [6484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fold_expression, 3, 0, 0), - [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [6492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 117), - [6494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 117), - [6496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 2, 0, 0), - [6498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 2, 0, 0), - [6500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 3, 0, 51), - [6502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 3, 0, 51), - [6504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, 0, 58), - [6506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, 0, 58), - [6508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, 0, 59), - [6510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, 0, 59), - [6512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [6514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2562), - [6517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2563), - [6520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 0), - [6522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 0), - [6524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2567), - [6527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8428), - [6530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9604), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), - [6537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5518), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [6541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2, 0, 0), - [6543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2, 0, 0), - [6545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 8), - [6547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 8), - [6549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [6551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [6553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 2, 0, 0), - [6555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 2, 0, 0), - [6557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration_item, 2, 0, 10), - [6559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration_item, 2, 0, 10), - [6561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration_item, 2, 0, 5), - [6563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration_item, 2, 0, 5), - [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [6567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2642), - [6570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration_item, 4, 0, 83), - [6572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration_item, 4, 0, 83), - [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), - [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), - [6582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3, 0, 0), - [6584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3, 0, 0), - [6586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 37), - [6588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 37), - [6590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4, 0, 0), - [6592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4, 0, 0), - [6594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 39), - [6596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 39), - [6598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 9), - [6600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 9), - [6602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 2, 0, 22), - [6604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 2, 0, 22), - [6606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 0), - [6608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 0), - [6610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration_item, 3, 0, 40), - [6612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration_item, 3, 0, 40), - [6614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration_item, 3, 0, 8), - [6616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration_item, 3, 0, 8), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10422), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7650), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7343), - [6628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype_auto, 4, 0, 0), - [6630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype_auto, 4, 0, 0), - [6632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [6638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 1, 0, 0), - [6640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 1, 0, 0), - [6642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 117), - [6644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 117), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), - [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5536), - [6652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration_item, 5, 0, 118), - [6654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration_item, 5, 0, 118), - [6656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration_item, 4, 0, 37), - [6658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration_item, 4, 0, 37), - [6660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [6662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 2, 0, 0), - [6664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 2, 0, 0), - [6666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 1, 0, 0), - [6668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 1, 0, 0), - [6670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 0), - [6672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 0), - [6674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 0), - [6676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 0), - [6678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4, 0, 0), - [6680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4, 0, 0), - [6682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 80), - [6684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 80), - [6686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 38), - [6688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 38), - [6690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [6692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 82), - [6694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 82), - [6696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [6698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [6702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [6704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), - [6706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), - [6708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2690), - [6711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), - [6713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2718), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10418), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [6724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), - [6726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10137), - [6728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, 1, 74), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [6732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 4, 1, 74), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9490), - [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [6746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, 1, 4), - [6748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 2, 1, 4), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [6754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 9), SHIFT(443), - [6757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [6759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, 1, 141), - [6761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 5, 1, 141), - [6763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [6767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 9), SHIFT(435), - [6770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 9), SHIFT(410), - [6773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 2, 0, 44), - [6775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 2, 0, 44), - [6777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, 1, 34), - [6779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 3, 1, 34), - [6781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 3, 0, 88), - [6783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 3, 0, 88), - [6785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2735), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10390), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [6792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2740), - [6795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 4, 0, 132), - [6797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 4, 0, 132), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10412), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [6805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2845), - [6808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, 0, 142), - [6810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, 0, 142), - [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), - [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), - [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), - [6820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2773), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9516), - [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [6829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), - [6831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), - [6833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9490), - [6836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_requirement, 2, 0, 0), - [6838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_requirement, 2, 0, 0), - [6840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 5, 0, 0), - [6842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 5, 0, 0), - [6844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 49), - [6846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 49), - [6848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 96), - [6850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 96), - [6852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement, 1, 0, 0), - [6854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement, 1, 0, 0), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7631), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7392), - [6862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), - [6864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), - [6866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, 0, 19), - [6868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, 0, 19), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [6874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 6, 0, 0), - [6876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 6, 0, 0), - [6878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 4, 0, 0), - [6880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 4, 0, 0), - [6882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), - [6884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), - [6886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 77), - [6888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 77), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [6892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 9), SHIFT(421), - [6895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, 0, 75), - [6897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, 0, 75), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), - [6903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2866), - [6906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 91), - [6908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 91), - [6910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declarator, 1, 0, 0), - [6912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declarator, 1, 0, 0), - [6914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 114), - [6916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 114), - [6918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 19), - [6920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 19), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9833), - [6934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2890), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [6941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 3, 0, 138), - [6943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 3, 0, 138), - [6945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 9), SHIFT(438), - [6948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2911), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7667), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7420), - [6955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 9), SHIFT(416), - [6958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9516), - [6961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 9), SHIFT(431), - [6964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), - [6966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [6968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 2, 0, 0), - [6970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 2, 0, 0), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10076), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [6984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_method, 2, 0, 15), - [6986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_method, 2, 0, 15), - [6988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_field_identifier, 2, 0, 0), - [6990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_field_identifier, 2, 0, 0), - [6992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [6994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [6996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 3), - [6998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 3), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [7002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7872), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7872), - [7006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 3, 0, 0), - [7008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 3, 0, 0), - [7010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [7030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7864), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7864), - [7048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2983), - [7051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 45), - [7053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 45), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [7057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_await_expression, 2, 0, 3), - [7059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_await_expression, 2, 0, 3), - [7061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 45), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [7065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 45), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [7069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), - [7071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), - [7073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), - [7075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), - [7077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 4, 0, 0), - [7079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 4, 0, 0), - [7081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, 0, 97), - [7083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, 0, 97), - [7085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 5, 0, 0), - [7087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 5, 0, 0), - [7089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 73), - [7091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 73), - [7093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 143), - [7095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 143), - [7097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, 0, 3), - [7099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, 0, 3), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9519), - [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [7107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 9), SHIFT(424), - [7110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, 0, 11), - [7112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, 0, 11), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7607), - [7116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 3, 0, 60), - [7118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 60), - [7120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 60), SHIFT(411), - [7123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 2, 0, 0), - [7125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 2, 0, 0), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7615), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7384), - [7133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 4, 0, 138), - [7135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 4, 0, 138), - [7137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), - [7139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), - [7141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 3), - [7143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 3), - [7145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [7151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 9), SHIFT(431), - [7154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3084), - [7157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 5, 0, 128), - [7159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 5, 0, 128), - [7161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9, 0, 0), - [7163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9, 0, 0), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [7167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [7177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [7187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [7193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [7195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [7201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 130), - [7203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 130), - [7205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), - [7207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8341), - [7211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, 0, 187), - [7213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, 0, 187), - [7215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 6, 0, 151), - [7217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 6, 0, 151), - [7219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8, 0, 0), - [7221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8, 0, 0), - [7223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), - [7225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), - [7227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 131), - [7229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 131), - [7231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [7233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10054), - [7243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_identifier, 2, 0, 0), - [7245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_identifier, 2, 0, 0), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7612), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7344), - [7251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_defined_literal, 2, 0, 0), - [7253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_defined_literal, 2, 0, 0), - [7255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 6), - [7257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 6), - [7259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 3, 0, 0), - [7261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 3, 0, 0), - [7263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, 0, 73), - [7265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, 0, 73), - [7267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 2, 0, 0), - [7269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 2, 0, 0), - [7271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 48), - [7273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 48), - [7275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 57), - [7277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 57), - [7279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 57), SHIFT(411), - [7282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 57), SHIFT(431), - [7285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 183), - [7287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 183), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6918), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6926), - [7293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6918), - [7295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6926), - [7297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 76), - [7299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 76), - [7301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 3, 0, 0), - [7303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 3, 0, 0), - [7305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), - [7307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), - [7309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), - [7311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), - [7313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 2, 0, 7), - [7315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 2, 0, 7), - [7317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), - [7319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), - [7321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 2, 0, 25), - [7323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 2, 0, 25), - [7325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, 0, 162), - [7327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, 0, 162), - [7329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 60), SHIFT(431), - [7332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 164), - [7334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 164), - [7336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 184), - [7338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 184), - [7340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 165), - [7342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 165), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [7346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [7348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [7350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, 0, 36), - [7352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, 0, 36), - [7354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, 0, 87), - [7356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, 0, 87), - [7358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 4, 0, 0), - [7360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 4, 0, 0), - [7362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 9), SHIFT(433), - [7365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 89), - [7367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 89), - [7369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 90), - [7371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 90), - [7373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9519), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9676), - [7378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3257), - [7381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 139), - [7383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 139), - [7385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 176), - [7387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 176), - [7389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 177), - [7391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 177), - [7393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [7395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [7397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_deep_ellipsis, 3, 0, 0), - [7399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_deep_ellipsis, 3, 0, 0), - [7401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), - [7403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), - [7405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 24), - [7407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 24), - [7409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 112), - [7411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 112), - [7413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 113), - [7415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 113), - [7417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), - [7419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), - [7421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [7427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7815), - [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7815), - [7431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [7435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [7437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [7439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [7451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [7453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [7455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 9), SHIFT(433), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9933), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6870), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6893), - [7466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6870), - [7468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6893), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10021), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [7484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [7486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [7492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [7494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [7496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [7500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [7504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [7508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [7518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [7520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [7528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7863), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7824), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [7534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9498), - [7540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [7546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [7548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fold_operator, 1, 0, 0), - [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [7554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_fold_operator, 3, 0, 0), - [7556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_fold_operator, 3, 0, 0), - [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), - [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [7562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [7564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 9), SHIFT(376), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10079), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7389), - [7575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 57), SHIFT(433), - [7578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_specifiers, 2, 0, 16), - [7580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_specifiers, 2, 0, 16), - [7582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4854), - [7584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10569), - [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), - [7596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), - [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9780), - [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [7604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), - [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10007), - [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [7612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_specifiers, 1, 0, 1), - [7614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_specifiers, 1, 0, 1), - [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), - [7618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4424), - [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), - [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10250), - [7624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 60), SHIFT(433), - [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), - [7629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), - [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9758), - [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), - [7637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10204), - [7643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9498), - [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [7648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), - [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10017), - [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [7656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), - [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10230), - [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9510), - [7666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [7668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 60), SHIFT(454), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7863), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [7675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3642), - [7678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8372), - [7681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9627), - [7684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 60), SHIFT(376), - [7687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [7689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [7695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [7697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [7699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [7703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [7707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [7711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [7713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [7719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [7721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [7727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [7729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [7731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [7735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [7739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [7741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [7743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [7751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 60), SHIFT(408), - [7754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_virtual, 1, 0, 0), - [7756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_virtual, 1, 0, 0), - [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9505), - [7762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6896), - [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6929), - [7768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6896), - [7770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6929), - [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [7774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9510), - [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10100), - [7779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), - [7781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10264), - [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [7785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7199), - [7787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), - [7789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [7791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [7793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), - [7801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7833), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7833), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), - [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), - [7809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [7811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [7817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [7819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [7821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [7825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [7829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [7831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), - [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), - [7845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [7849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 60), SHIFT(410), - [7852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 9), SHIFT(416), - [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [7859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [7861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [7863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [7867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [7869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [7871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [7877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9505), - [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [7886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 57), SHIFT(410), - [7889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3852), - [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [7896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1109), - [7899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), - [7901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator_seq, 1, 0, 20), - [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), - [7905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6882), - [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10287), - [7911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 1, 0, 20), SHIFT(9459), - [7914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator_seq, 1, 0, 20), - [7916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4487), - [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8107), - [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), - [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7076), - [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10228), - [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6888), - [7928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), - [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), - [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), - [7934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), - [7936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(4197), - [7939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), - [7941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), - [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7399), - [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), - [7947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3878), - [7950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8369), - [7953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9626), - [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), - [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [7960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_specifiers, 2, 0, 1), - [7962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_specifiers, 2, 0, 1), - [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [7966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 60), SHIFT(426), - [7969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10430), - [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), - [7977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), - [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [7983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [7985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), - [7987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [7989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_specifiers, 3, 0, 16), - [7991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_specifiers, 3, 0, 16), - [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [7995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [7997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 1, 0, 20), SHIFT(7335), - [8000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 1, 0, 20), SHIFT(6888), - [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), - [8005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), - [8007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), - [8009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5018), - [8012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5007), - [8015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(10693), - [8018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(9398), - [8021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(10240), - [8024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5038), - [8027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(10245), - [8030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4473), - [8032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [8034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [8040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [8042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [8044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [8048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [8052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [8060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [8062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [8070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7849), - [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7849), - [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [8076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 60), SHIFT(421), - [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6912), - [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6919), - [8083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6912), - [8085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6919), - [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), - [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [8091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(4302), - [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), - [8096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), - [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9459), - [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7486), - [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6881), - [8106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4029), - [8109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8333), - [8112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9620), - [8115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1088), - [8118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 1, 0, 20), SHIFT(7486), - [8121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 1, 0, 20), SHIFT(6881), - [8124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7581), - [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6592), - [8130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6592), - [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9736), - [8134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), - [8136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [8138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), - [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6637), - [8148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6637), - [8150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7948), - [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6612), - [8156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6612), - [8158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), - [8160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 0), - [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), - [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6627), - [8167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6627), - [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), - [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10069), - [8173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), - [8175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4103), - [8178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 57), SHIFT(421), - [8181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4133), - [8184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8032), - [8186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8014), - [8188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8003), - [8190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8029), - [8192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), - [8194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), - [8196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7837), - [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7837), - [8200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [8202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [8208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [8210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [8212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [8216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [8220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [8224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [8226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [8234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4933), - [8236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), - [8238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), - [8240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4944), - [8242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4946), - [8244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8015), - [8246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4955), - [8248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4957), - [8250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4964), - [8252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4966), - [8254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4968), - [8256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [8258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [8264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [8266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [8268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [8272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [8276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [8284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_constructor_specifiers, 1, 0, 0), REDUCE(aux_sym_declaration_specifiers_repeat1, 1, 0, 0), - [8287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_specifiers, 1, 0, 0), - [8289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_specifiers, 1, 0, 0), - [8291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constructor_specifiers, 1, 0, 0), REDUCE(aux_sym_declaration_specifiers_repeat1, 1, 0, 0), - [8294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 1, 0, 0), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [8298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4237), - [8301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8291), - [8304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9616), - [8307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignas_specifier, 4, 0, 0), - [8309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignas_specifier, 4, 0, 0), - [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [8313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), - [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [8317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 9), SHIFT(437), - [8320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), - [8322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 1, 0, 20), SHIFT(8107), - [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), - [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), - [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6889), - [8331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 1, 0, 20), SHIFT(10287), - [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), - [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [8338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 57), SHIFT(416), - [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [8343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [8345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), - [8347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4273), - [8350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4389), - [8353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(9789), - [8356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(9366), - [8359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(10086), - [8362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3701), - [8365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(10614), - [8368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), - [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [8372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), - [8374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), - [8376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(4463), - [8379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), - [8381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), - [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6907), - [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6908), - [8391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6907), - [8393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6908), - [8395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 60), SHIFT(416), - [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [8400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), - [8402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), - [8404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7618), - [8408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7397), - [8410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 57), SHIFT(418), - [8413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 1, 0, 20), SHIFT(6889), - [8416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), - [8418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), - [8420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5018), - [8423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5007), - [8426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(10693), - [8429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(9398), - [8432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(10240), - [8435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5038), - [8438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(10245), - [8441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5711), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9984), - [8446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4367), - [8449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, 0, 0), - [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6495), - [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [8455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10433), - [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [8461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [8463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4737), - [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9940), - [8471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4458), - [8473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4458), - [8476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), - [8478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), - [8480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4509), - [8483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(4621), - [8486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4484), - [8488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4619), - [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6922), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6924), - [8494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6922), - [8496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6924), - [8498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), - [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7627), - [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7404), - [8504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 9), SHIFT(360), - [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [8511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5056), - [8513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10113), - [8515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4560), - [8518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), - [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [8522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 9), SHIFT(436), - [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [8529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4592), - [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6916), - [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [8537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4592), - [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7655), - [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7365), - [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9895), - [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6914), - [8556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), - [8558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4596), - [8560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [8562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 9), SHIFT(440), - [8565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(4739), - [8568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4541), - [8570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4738), - [8572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7700), - [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7407), - [8578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), - [8580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6180), - [8582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6264), - [8584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10343), - [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9477), - [8588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10288), - [8590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6226), - [8592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10292), - [8594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4670), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), - [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9756), - [8601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4733), - [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), - [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6883), - [8607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 1, 0, 20), SHIFT(6883), - [8610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [8612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4675), - [8614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), - [8616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4722), - [8619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), - [8621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4732), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), - [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10402), - [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [8629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4758), - [8632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4824), - [8635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [8637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declarator, 1, 0, 0), - [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [8643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5257), - [8645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10123), - [8647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5008), - [8649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4756), - [8651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5067), - [8653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 9), SHIFT(432), - [8656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [8658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4767), - [8660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6117), - [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), - [8664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [8666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 9), SHIFT(439), - [8669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5721), - [8671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7560), - [8673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6449), - [8675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6241), - [8677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7516), - [8679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6511), - [8681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6756), - [8683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6831), - [8685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6813), - [8687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7517), - [8689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6597), - [8691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6598), - [8693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6599), - [8695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6839), - [8697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10244), - [8699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6498), - [8701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6302), - [8703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6354), - [8705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), - [8707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7547), - [8709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6434), - [8711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4875), - [8714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5493), - [8716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7532), - [8718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6502), - [8720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6007), - [8722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6148), - [8724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6286), - [8726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7530), - [8728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6565), - [8730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6566), - [8732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6567), - [8734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6688), - [8736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10405), - [8738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6450), - [8740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4860), - [8742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 9), SHIFT(414), - [8745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5790), - [8747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6487), - [8749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), - [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), - [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), - [8757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 9), SHIFT(434), - [8760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6180), - [8763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6264), - [8766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(10343), - [8769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(9477), - [8772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(10288), - [8775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6226), - [8778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(10292), - [8781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5064), - [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), - [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7366), - [8788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 9), SHIFT(405), - [8791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 9), SHIFT(429), - [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), - [8796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [8800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [8806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [8810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [8814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [8822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [8824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [8826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [8828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), - [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), - [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), - [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10265), - [8844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6409), - [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6410), - [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10269), - [8850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7645), - [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7405), - [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8407), - [8858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 1, 0, 0), - [8860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, 0, 0), - [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), - [8864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5156), - [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [8868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, 0, 116), - [8870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, 0, 116), - [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), - [8876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [8880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [8886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [8890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [8894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [8908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, 0, 1), - [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), - [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6794), - [8916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6794), - [8918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6869), - [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6871), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), - [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9978), - [8932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 16), - [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), - [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6793), - [8938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6793), - [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9831), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7397), - [8944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_attributes_start, 1, 0, 0), - [8946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_attributes_start, 1, 0, 0), - [8948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4948), - [8950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4952), - [8952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4961), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [8956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), - [8960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 9), SHIFT(430), - [8963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [8969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [8973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [8977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [8985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [8987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [8989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [8991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [8993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), - [8995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), - [8997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10025), - [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), - [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [9005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7715), - [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7711), - [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7236), - [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), - [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7238), - [9015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7238), - [9017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7111), - [9019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6796), - [9021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6778), - [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6910), - [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6911), - [9027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6910), - [9029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6911), - [9031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), - [9033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5414), - [9035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), - [9037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8114), - [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), - [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), - [9043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7240), - [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7211), - [9047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [9051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [9057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [9061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [9065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9789), - [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5740), - [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6812), - [9089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6812), - [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [9095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_right_fold, 3, 0, 45), - [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), - [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6845), - [9101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6845), - [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6437), - [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [9107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6437), - [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6672), - [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10097), - [9113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5468), - [9116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4487), - [9119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6409), - [9122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(10287), - [9125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(9459), - [9128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(10265), - [9131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6409), - [9134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4487), - [9137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6410), - [9140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(10269), - [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), - [9149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 115), SHIFT(1264), - [9152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 115), - [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [9162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [9166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [9172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [9176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [9180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [9184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), - [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [9198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT(1264), - [9201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, 0, 72), - [9203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), - [9205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5485), - [9208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2, 0, 0), - [9210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, 0, 92), - [9212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 4, 0, 156), - [9214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5494), - [9217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5491), - [9219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5498), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), - [9226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5495), - [9228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 4, 0, 146), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [9248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 1), - [9250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 16), - [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6137), - [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6925), - [9256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6925), - [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), - [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10057), - [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), - [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6263), - [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), - [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), - [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6218), - [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), - [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), - [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), - [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), - [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6928), - [9306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6928), - [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6915), - [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8005), - [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8004), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), - [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7912), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6221), - [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), - [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6165), - [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), - [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), - [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), - [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), - [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), - [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6734), - [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), - [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), - [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7830), - [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), - [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), - [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), - [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), - [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), - [9448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 4, 0, 0), - [9450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 4, 0, 0), - [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), - [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), - [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), - [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [9472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4487), - [9475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4487), - [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6913), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6927), - [9482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6927), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [9486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 1, 0, 0), - [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [9490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 1, 0, 0), - [9492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), - [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7355), - [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), - [9498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7000), - [9500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6761), - [9502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6774), - [9504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5864), - [9506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement_body, 4, 0, 157), - [9508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), - [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7352), - [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), - [9514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), - [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7361), - [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), - [9520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement_body, 4, 0, 158), - [9522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement_body, 4, 0, 160), - [9524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), - [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7382), - [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), - [9530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5739), - [9533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7629), - [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7411), - [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), - [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7418), - [9541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 4, 0, 146), - [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7556), - [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10600), - [9551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement_body, 5, 0, 172), - [9553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 3, 0, 134), - [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [9557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement_body, 3, 0, 123), - [9559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement_body, 3, 0, 125), - [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [9565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), - [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), - [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), - [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), - [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [9579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5807), - [9581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4, 0, 0), - [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [9585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5848), - [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), - [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), - [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7565), - [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10112), - [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), - [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7570), - [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10627), - [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7572), - [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9723), - [9612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), - [9614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), - [9616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(10287), - [9619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_attributes_start, 2, 0, 0), - [9621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_attributes_start, 2, 0, 0), - [9623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_argument_list_repeat1, 2, 0, 0), - [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7574), - [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10285), - [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7576), - [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9979), - [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7577), - [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10474), - [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7578), - [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10146), - [9641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), - [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7383), - [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), - [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7579), - [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9784), - [9651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2, 0, 0), - [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [9655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 3, 0, 0), - [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [9659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 1, 0), - [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [9665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), - [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9076), - [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), - [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6406), - [9677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6236), - [9679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [9683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [9689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [9693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [9697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6237), - [9713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [9717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [9723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [9727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [9731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [9749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6251), - [9751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5452), - [9753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6250), - [9755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_semgrep_expression, 2, 0, 0), - [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), - [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), - [9765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_left_fold, 3, 0, 45), - [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [9769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression_lhs_expression, 3, 0, 45), - [9771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_fold, 3, 0, 72), - [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), - [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), - [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7141), - [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), - [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8904), - [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), - [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), - [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), - [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), - [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8875), - [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7709), - [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), - [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), - [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), - [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), - [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [9897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator_seq, 2, 0, 20), - [9899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 2, 0, 20), SHIFT(9459), - [9902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator_seq, 2, 0, 20), - [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), - [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), - [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [9914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_range_loop_body, 4, 0, 159), - [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [9924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_range_loop_body, 5, 0, 173), - [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), - [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), - [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), - [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6807), - [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), - [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), - [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8354), - [9986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_semgrep_ellipsis, 1, 0, 0), SHIFT(1917), - [9989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_semgrep_ellipsis, 1, 0, 0), SHIFT(6167), - [9992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 2, 0, 20), SHIFT(7335), - [9995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 2, 0, 20), SHIFT(6888), - [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), - [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8779), - [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), - [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), - [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), - [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), - [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), - [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), - [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), - [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), - [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), - [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), - [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), - [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), - [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7200), - [10044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7200), - [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9843), - [10050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5694), - [10052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 2, 0, 20), SHIFT(7486), - [10055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 2, 0, 20), SHIFT(6881), - [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6873), - [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6874), - [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), - [10064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 2, 0, 20), SHIFT(8107), - [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9768), - [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7402), - [10071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(6206), - [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6266), - [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7372), - [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6890), - [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6887), - [10082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 2, 0, 20), SHIFT(10287), - [10085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6254), - [10087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6256), - [10089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [10091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 2, 0, 20), SHIFT(6889), - [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10426), - [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [10098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(6266), - [10101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator_seq, 3, 0, 20), - [10103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 3, 0, 20), SHIFT(9459), - [10106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator_seq, 3, 0, 20), - [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7643), - [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7416), - [10112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), - [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8712), - [10116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1, 0, 0), - [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), - [10120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 3, 0, 20), SHIFT(7335), - [10123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 3, 0, 20), SHIFT(6888), - [10126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(6287), - [10129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [10131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), - [10133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10160), - [10135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9266), - [10137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10161), - [10139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10166), - [10141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 3, 0, 20), SHIFT(7486), - [10144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 3, 0, 20), SHIFT(6881), - [10147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), - [10149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7367), - [10151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7367), - [10153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6271), - [10155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), - [10157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [10159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4823), - [10161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7583), - [10163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6524), - [10165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6525), - [10167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6526), - [10169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6435), - [10171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [10173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [10175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [10177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7598), - [10179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6541), - [10181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6542), - [10183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6543), - [10185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), - [10187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10311), - [10189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6503), - [10191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4998), - [10193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), - [10195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), - [10197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7563), - [10199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6675), - [10201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6679), - [10203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6681), - [10205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5723), - [10207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10346), - [10209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6415), - [10211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), - [10213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), - [10215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), - [10217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7586), - [10219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6544), - [10221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6545), - [10223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6546), - [10225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), - [10227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10380), - [10229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6447), - [10231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), - [10233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), - [10235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), - [10237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7525), - [10239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6578), - [10241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6579), - [10243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6580), - [10245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), - [10247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10427), - [10249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6478), - [10251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 3, 0, 20), SHIFT(10287), - [10254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), - [10256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), - [10258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6585), - [10261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6611), - [10264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 3, 0, 20), SHIFT(6889), - [10267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10326), - [10269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [10271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 3, 0, 20), SHIFT(8107), - [10274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), - [10276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4630), - [10278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), - [10280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7584), - [10282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6571), - [10284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6572), - [10286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6573), - [10288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), - [10290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10419), - [10292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6514), - [10294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [10296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), - [10298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), - [10300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7582), - [10302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6604), - [10304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6610), - [10306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6650), - [10308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), - [10310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10291), - [10312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6456), - [10314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), - [10316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), - [10318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), - [10320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7589), - [10322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6549), - [10324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6550), - [10326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6551), - [10328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), - [10330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10393), - [10332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6492), - [10334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), - [10336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), - [10338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7561), - [10340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6669), - [10342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6670), - [10344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6671), - [10346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6440), - [10348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym_argument_list, 2, 0, 0), - [10351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7417), - [10353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [10355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6515), - [10357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), - [10359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6448), - [10361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(6437), - [10364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(6437), - [10367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 2, 0, 20), SHIFT(6883), - [10370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), - [10372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4307), - [10374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4518), - [10376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7546), - [10378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6568), - [10380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6569), - [10382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6570), - [10384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5074), - [10386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10414), - [10388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6481), - [10390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [10392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [10394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [10396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7518), - [10398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6575), - [10400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6576), - [10402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6577), - [10404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), - [10406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10423), - [10408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6462), - [10410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), - [10412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [10414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), - [10416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7601), - [10418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6535), - [10420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6536), - [10422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6537), - [10424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), - [10426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10363), - [10428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6421), - [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), - [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7305), - [10434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7305), - [10436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6294), - [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7387), - [10442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1102), - [10445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7773), - [10447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7543), - [10449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6561), - [10451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6562), - [10453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6563), - [10455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6472), - [10457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(6692), - [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7687), - [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7394), - [10464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator_seq, 4, 0, 20), - [10466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 4, 0, 20), SHIFT(9459), - [10469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator_seq, 4, 0, 20), - [10471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4862), - [10473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), - [10475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), - [10477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), - [10479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [10481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), - [10483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7726), - [10485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6055), - [10487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), - [10489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), - [10491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [10493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), - [10495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), - [10497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), - [10499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), - [10501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(6727), - [10504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6274), - [10506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6390), - [10508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [10510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 3, 0, 20), SHIFT(6883), - [10513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), - [10515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), - [10517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7364), - [10521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6289), - [10523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4440), - [10525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5019), - [10527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6761), - [10530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6774), - [10533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 4, 0, 20), SHIFT(7335), - [10536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 4, 0, 20), SHIFT(6888), - [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7360), - [10541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 4, 0, 20), SHIFT(7486), - [10544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 4, 0, 20), SHIFT(6881), - [10547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6796), - [10550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6778), - [10553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 4, 0, 20), SHIFT(10287), - [10556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 4, 0, 20), SHIFT(8107), - [10559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 4, 0, 20), SHIFT(6889), - [10562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [10564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6810), - [10566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(6775), - [10569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(6763), - [10572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(6768), - [10575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 1), SHIFT(3852), - [10578] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT(3852), - [10582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition_type, 2, 0, 16), - [10584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition_type, 2, 0, 16), - [10586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6861), - [10588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9663), - [10590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 1), SHIFT(3852), - [10593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 16), SHIFT(6769), - [10596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 16), SHIFT(3852), - [10599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition_type, 1, 0, 1), - [10601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition_type, 1, 0, 1), - [10603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 16), SHIFT(3852), - [10606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 16), SHIFT(6773), - [10609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [10613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), - [10615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8321), - [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [10619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [10621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), - [10623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8448), - [10625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), - [10627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [10629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [10631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5361), - [10633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8276), - [10635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), - [10637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [10639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [10641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), - [10643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8326), - [10645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [10647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [10649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6229), - [10651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8242), - [10653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [10655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [10657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), - [10659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8483), - [10661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), - [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [10665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [10667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5690), - [10669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8295), - [10671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [10673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [10675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4320), - [10677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8227), - [10679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [10681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [10683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), - [10685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8505), - [10687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [10689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [10691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4515), - [10693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8334), - [10695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), - [10697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [10699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [10701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), - [10703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8311), - [10705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [10707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [10709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5554), - [10711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8377), - [10713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 1), SHIFT(6287), - [10716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(6833), - [10719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 16), SHIFT(6827), - [10722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 16), SHIFT(6829), - [10725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_attributes_end, 2, 0, 0), - [10727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_attributes_end, 2, 0, 0), - [10729] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT(6287), - [10733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 4, 0, 20), SHIFT(6883), - [10736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 16), SHIFT(6287), - [10739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_attributes_end, 1, 0, 0), - [10741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_attributes_end, 1, 0, 0), - [10743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 16), SHIFT(6287), - [10746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(6821), - [10749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(6823), - [10752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(6820), - [10755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 1), SHIFT(6287), - [10758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition_type, 3, 0, 16), - [10760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition_type, 3, 0, 16), - [10762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7000), - [10765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition_type, 2, 0, 1), - [10767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition_type, 2, 0, 1), - [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [10773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7111), - [10776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [10778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [10780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [10782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10575), - [10784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8560), - [10786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [10788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [10790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [10792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [10794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), - [10796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8443), - [10798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [10800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7356), - [10802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8254), - [10804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_qualifier, 1, 0, 0), - [10806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_qualifier, 1, 0, 0), - [10808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [10810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [10812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [10814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [10816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [10818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9478), - [10822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5385), - [10824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8724), - [10826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [10828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [10830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [10832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9491), - [10834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [10836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [10838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6944), - [10840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8199), - [10842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5246), - [10844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9072), - [10846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_expression, 1, 0, 0), - [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7058), - [10850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_expression, 1, 0, 0), - [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [10854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [10856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_attributes_end, 3, 0, 0), - [10858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_attributes_end, 3, 0, 0), - [10860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9459), - [10863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [10865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9461), - [10871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [10875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [10877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9427), - [10881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [10891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [10893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [10895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator_seq, 5, 0, 20), - [10897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator_seq, 5, 0, 20), - [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7085), - [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7091), - [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), - [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7156), - [10907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7156), - [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7161), - [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7166), - [10913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7177), - [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7070), - [10917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7080), - [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7104), - [10921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7105), - [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7105), - [10925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7107), - [10927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator_seq, 6, 0, 20), - [10929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator_seq, 6, 0, 20), - [10931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 6, 0, 20), SHIFT(7335), - [10934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 6, 0, 20), SHIFT(6888), - [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6920), - [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6921), - [10941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7874), - [10943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9061), - [10945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6895), - [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9963), - [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7121), - [10951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9293), - [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7072), - [10955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7072), - [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7106), - [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8909), - [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7235), - [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7230), - [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10056), - [10967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7012), - [10969] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [10971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 5, 0, 20), SHIFT(7335), - [10974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 5, 0, 20), SHIFT(6888), - [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), - [10979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7037), - [10981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7075), - [10983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9539), - [10985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), - [10987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7122), - [10989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7224), - [10991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8771), - [10993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), - [10995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [10997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_declarator, 1, 0, 19), - [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [11001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [11003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8123), - [11007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 1, 0, 0), - [11009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [11011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 1, 0, 0), - [11013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [11015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10294), - [11017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8894), - [11019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [11021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), - [11023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8930), - [11025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 5, 0, 0), - [11027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 5, 0, 0), - [11029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4, 0, 0), - [11031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4, 0, 0), - [11033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 3, 0, 0), - [11035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 3, 0, 0), - [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [11039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [11041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8610), - [11043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), - [11045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), - [11047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), - [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10173), - [11051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8578), - [11053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), - [11055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_exception_specification, 1, 0, 0), - [11057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_exception_specification, 1, 0, 0), - [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9372), - [11063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), - [11065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), - [11067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9271), - [11071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 45), - [11073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 45), - [11075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2, 0, 0), - [11077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2, 0, 0), - [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [11081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 3), - [11083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 3), - [11085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), - [11087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9757), - [11089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9039), - [11091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [11095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), - [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10674), - [11099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8626), - [11101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), - [11103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10604), - [11107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9021), - [11109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [11111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4819), - [11113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8688), - [11115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), - [11117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8725), - [11119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 3, 0, 0), - [11121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 3, 0, 0), - [11123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [11125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9017), - [11127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), - [11129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), - [11131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), - [11133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), - [11135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), - [11137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9971), - [11139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8635), - [11141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), - [11143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 4, 0, 0), - [11145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 4, 0, 0), - [11147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9483), - [11149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [11151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9402), - [11153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [11155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9334), - [11157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 4, 0, 0), - [11159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 4, 0, 0), - [11161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, 0, 6), - [11163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, 0, 6), - [11165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), - [11167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8787), - [11169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [11171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9702), - [11175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9137), - [11177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), - [11179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [11181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8562), - [11183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [11185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8593), - [11187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [11189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8891), - [11191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), - [11193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7163), - [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [11197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7068), - [11199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7094), - [11201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7112), - [11203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7151), - [11205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7082), - [11207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7083), - [11209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7164), - [11211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7073), - [11213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7074), - [11215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [11217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7790), - [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [11221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [11223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8541), - [11225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8888), - [11227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [11229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [11231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7768), - [11233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_postfix_repeat1, 2, 0, 0), - [11235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_postfix_repeat1, 2, 0, 0), - [11237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(7335), - [11240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8065), - [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9424), - [11244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8165), - [11246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7990), - [11248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8567), - [11250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7596), - [11252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9060), - [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7952), - [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [11258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7096), - [11260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_postfix, 1, 0, 0), - [11262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_postfix, 1, 0, 0), - [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7993), - [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7961), - [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7181), - [11278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7788), - [11280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8833), - [11282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 5, 0, 20), SHIFT(7486), - [11285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 5, 0, 20), SHIFT(6881), - [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6900), - [11298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 5, 0, 20), SHIFT(6889), - [11301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [11305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [11309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [11311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator_seq, 7, 0, 20), - [11313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator_seq, 7, 0, 20), - [11315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(7486), - [11318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), - [11320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), - [11322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 99), - [11324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 99), - [11326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), - [11328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), - [11330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 19), - [11332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 19), - [11334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6892), - [11336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_declarator, 1, 0, 0), - [11338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_declarator, 1, 0, 0), - [11340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, 0, 0), - [11342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 1, 0, 0), - [11344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [11346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), - [11348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), - [11350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, 0, 19), - [11352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 2, 0, 19), - [11354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_return_type, 2, 0, 0), - [11356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trailing_return_type, 2, 0, 0), - [11358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [11360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 144), - [11362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 144), - [11364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 96), - [11366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 96), - [11368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 19), - [11370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 19), - [11372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [11374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, 0, 142), - [11376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 5, 0, 142), - [11378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [11380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [11382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [11384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [11388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_virtual_specifier, 1, 0, 0), - [11390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_virtual_specifier, 1, 0, 0), - [11392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [11394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [11396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [11398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), - [11400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), - [11402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), - [11404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), - [11406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 33), - [11408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [11410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7575), - [11412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7606), - [11414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), - [11416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, 0, 111), - [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6904), - [11420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6906), - [11422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6259), - [11424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6369), - [11426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [11428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7362), - [11431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8306), - [11434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9618), - [11437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6005), - [11439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6307), - [11441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [11443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), - [11445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), - [11447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), - [11449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 4), - [11451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 2, 0, 0), - [11453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), - [11455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5497), - [11457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 71), - [11459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [11461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [11463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 49), - [11465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 34), - [11467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [11469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), - [11471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), - [11473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_declarator_repeat1, 2, 0, 4), - [11475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6283), - [11477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), - [11479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [11481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), - [11483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [11485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6560), - [11487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6759), - [11489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6772), - [11491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), - [11493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), - [11495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7419), - [11497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8306), - [11499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9618), - [11501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), - [11503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), - [11505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4327), - [11507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4747), - [11509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4800), - [11511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), - [11513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), - [11515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4502), - [11517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), - [11519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 6, 0, 20), SHIFT(7486), - [11522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 6, 0, 20), SHIFT(6881), - [11525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [11527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), - [11529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [11531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), - [11533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5888), - [11535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6170), - [11537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6112), - [11539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7362), - [11541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [11543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), - [11545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), - [11547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8019), - [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8047), - [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), - [11553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7814), - [11555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8172), - [11557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8038), - [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6154), - [11561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), - [11563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 4), - [11565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [11567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), - [11569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), - [11571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9559), - [11573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [11575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9286), - [11577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 6, 0, 20), SHIFT(6889), - [11580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, 1, 141), - [11582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), - [11584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [11586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), - [11588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [11590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), - [11592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7953), - [11594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8044), - [11596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8179), - [11598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7147), - [11600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10468), - [11602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10469), - [11604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), - [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8051), - [11612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [11614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), - [11616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(10160), - [11619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), - [11621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(10166), - [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [11626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, 1, 34), - [11628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), - [11630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), - [11632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, 1, 4), - [11634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [11636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_declarator, 2, 1, 0), - [11638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), - [11640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), - [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), - [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), - [11646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [11648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, 1, 74), - [11650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7759), - [11652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7745), - [11654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6690), - [11656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7727), - [11658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), - [11660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7704), - [11662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [11664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, 1, 141), - [11666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4450), - [11668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7755), - [11670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [11672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7708), - [11674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7732), - [11676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7747), - [11678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 5, 0, 20), SHIFT(6883), - [11681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, 1, 74), - [11683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [11685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7725), - [11687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7749), - [11689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), - [11691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7748), - [11693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7753), - [11695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7754), - [11697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7744), - [11699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7737), - [11701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, 1, 34), - [11703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7741), - [11705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7743), - [11707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7702), - [11709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4820), - [11711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7758), - [11713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7705), - [11715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7717), - [11717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7719), - [11719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, 1, 4), - [11721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_field_declarator, 2, 1, 0), - [11723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7716), - [11725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7713), - [11727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7723), - [11729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7617), - [11731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9033), - [11733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7116), - [11735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10212), - [11737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10213), - [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [11741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, 0, 142), - [11743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, 0, 142), - [11745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [11749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [11753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9482), - [11757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7423), - [11759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8480), - [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [11765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7638), - [11768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), - [11770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), - [11772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 96), - [11774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 96), - [11776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 3, -1, 0), - [11778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 3, -1, 0), - [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), - [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9641), - [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8270), - [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9381), - [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8438), - [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), - [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10038), - [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [11806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 19), - [11808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 19), - [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9913), - [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), - [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), - [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), - [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10521), - [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10589), - [11834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, 1, 19), - [11836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, 1, 19), - [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9925), - [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9342), - [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8429), - [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), - [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9448), - [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8469), - [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), - [11858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9432), - [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8462), - [11864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 4, -1, 0), - [11866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 4, -1, 0), - [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9643), - [11870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, 0, 19), - [11872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, 0, 19), - [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9465), - [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8473), - [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10243), - [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9410), - [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8450), - [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), - [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10477), - [11902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2, 0, 0), - [11904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2, 0, 0), - [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6489), - [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [11912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9820), - [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6832), - [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [11920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [11922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), - [11924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), - [11926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9283), - [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8411), - [11932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6815), - [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [11938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), - [11940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [11942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), - [11944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), - [11946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6880), - [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), - [11950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declarator, 1, 0, 0), - [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [11954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declarator, 1, 0, 0), - [11956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8188), - [11958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9253), - [11961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 6, 0, 20), SHIFT(6883), - [11964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7968), - [11966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7882), - [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8104), - [11970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, 0, 65), - [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7147), - [11974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7973), - [11976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7907), - [11978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7949), - [11980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7932), - [11982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7991), - [11984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7906), - [11986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, 0, 106), - [11988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 96), - [11990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 96), - [11992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9033), - [11995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7152), - [11998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10492), - [12001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10493), - [12004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9601), - [12007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), - [12009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7804), - [12011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, 0, 66), - [12013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), - [12015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), - [12017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7946), - [12019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7938), - [12021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7779), - [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8071), - [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8322), - [12028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7086), - [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10345), - [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10487), - [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8081), - [12036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7976), - [12038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7899), - [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8116), - [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8045), - [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9714), - [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8353), - [12048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7108), - [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10385), - [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10504), - [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8064), - [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9902), - [12058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9424), - [12061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, 0, 142), - [12063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, 0, 142), - [12065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7994), - [12067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7940), - [12069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, 0, 19), - [12071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, 0, 19), - [12073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 19), - [12075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 19), - [12077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7989), - [12079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7934), - [12081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, 1, 19), - [12083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, 1, 19), - [12085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8001), - [12087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7931), - [12089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9266), - [12092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_resolution, 1, 0, 0), - [12094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_resolution, 1, 0, 0), - [12096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [12098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6361), - [12100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1, 0, 0), - [12102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9745), - [12104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [12106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8112), - [12108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), - [12110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 4), - [12112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7351), - [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [12118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), - [12120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8058), - [12122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [12124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6344), - [12126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1, 0, 0), - [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9848), - [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [12132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [12134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6360), - [12136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [12138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6365), - [12140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), - [12142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8124), - [12144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [12146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6330), - [12148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4343), - [12150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8117), - [12152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [12154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6364), - [12156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [12158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6336), - [12160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [12162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6348), - [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7414), - [12166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition_declarators, 1, 0, 19), - [12168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [12170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6343), - [12172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [12174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6338), - [12176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4278), - [12178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8055), - [12180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [12182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6312), - [12184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [12186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), - [12188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8042), - [12190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [12192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6320), - [12194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [12196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6349), - [12198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [12200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [12202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6334), - [12204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), - [12206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8088), - [12208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), - [12210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9556), - [12212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4817), - [12214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9634), - [12216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6290), - [12218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9142), - [12220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4976), - [12222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), - [12224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9325), - [12226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4403), - [12228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9275), - [12230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8272), - [12232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5095), - [12234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9147), - [12236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5058), - [12238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9162), - [12240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6230), - [12242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9633), - [12244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8574), - [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8392), - [12248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10540), - [12250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9066), - [12252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9825), - [12254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [12256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9231), - [12258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5320), - [12260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9168), - [12262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [12264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9178), - [12266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6393), - [12268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9438), - [12270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_declarators_repeat1, 2, 0, 4), - [12272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), - [12274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9186), - [12276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8521), - [12278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), - [12280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), - [12282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9285), - [12284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), - [12286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9193), - [12288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8317), - [12290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8410), - [12292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4263), - [12294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9201), - [12296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), - [12298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9312), - [12300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), - [12302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9204), - [12304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), - [12306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9206), - [12308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 3, 0, 0), - [12310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 3, 0, 0), - [12312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3, 0, 0), - [12314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8952), - [12316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9934), - [12318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_resolution, 2, 0, 14), - [12320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_resolution, 2, 0, 14), - [12322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), - [12324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9352), - [12326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4831), - [12328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9212), - [12330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), - [12332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9493), - [12334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8059), - [12336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [12338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9522), - [12340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6056), - [12342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9590), - [12344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), - [12346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9217), - [12348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6618), - [12350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9638), - [12352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8824), - [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10457), - [12356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8487), - [12358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8198), - [12360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), - [12362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9223), - [12364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8460), - [12366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [12368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9428), - [12370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), - [12372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9238), - [12374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [12376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9228), - [12378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8206), - [12380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8785), - [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10008), - [12384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8503), - [12386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [12388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9233), - [12390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6764), - [12392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9304), - [12394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5088), - [12396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9336), - [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7775), - [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), - [12404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 65), - [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7086), - [12408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), - [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [12414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, 0, 5), - [12416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, 0, 5), - [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [12420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, 0, 65), - [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7108), - [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7693), - [12426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 65), - [12428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), SHIFT_REPEAT(7953), - [12431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), - [12433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), - [12435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [12437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, 0, 106), - [12439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [12441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [12443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 106), - [12445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [12447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), - [12449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [12451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), - [12453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1, 0, 0), - [12455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [12457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), - [12459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast, 3, 0, 34), - [12461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [12463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [12465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [12467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10553), - [12469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, 0, 66), - [12471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8099), - [12473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 66), - [12475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [12477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), - [12479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [12481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), - [12483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9033), - [12486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), - [12488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), - [12490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8068), - [12492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [12494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), - [12496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [12498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [12500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 106), - [12502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [12504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 66), - [12506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [12508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [12510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), - [12512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(1407), - [12515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), - [12517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(8998), - [12520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8588), - [12522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8173), - [12524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10313), - [12526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 5, 0, 0), - [12528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 5, 0, 0), - [12530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8368), - [12532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [12534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), - [12536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8105), - [12538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), - [12540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [12542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 6, 0, 0), - [12544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 6, 0, 0), - [12546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [12548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8987), - [12550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8966), - [12552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), - [12554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8425), - [12556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [12558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [12560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8998), - [12562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8750), - [12564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7637), - [12566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9116), - [12568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8444), - [12570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8472), - [12572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9531), - [12574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8236), - [12576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [12578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 4, 0, 0), - [12580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 4, 0, 0), - [12582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9435), - [12584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 29), - [12586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 29), - [12588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 68), - [12590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 68), - [12592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [12594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [12596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), SHIFT_REPEAT(8104), - [12599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [12601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [12603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 31), - [12605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 31), - [12607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7533), - [12609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8486), - [12611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [12613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [12615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9254), - [12617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 69), - [12619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 69), - [12621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7538), - [12623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9551), - [12625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7529), - [12627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7540), - [12629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), - [12631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8486), - [12634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 70), - [12636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 70), - [12638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 67), - [12640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 67), - [12642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7528), - [12644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 64), - [12646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 64), - [12648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [12650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [12652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [12654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [12656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7514), - [12658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7567), - [12660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7544), - [12662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [12664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [12666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7515), - [12668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7549), - [12670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 104), - [12672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 104), - [12674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7526), - [12676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7550), - [12678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [12680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [12682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7527), - [12684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [12686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [12688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9169), - [12690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7554), - [12692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7541), - [12694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [12696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [12698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 147), - [12700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 147), - [12702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7555), - [12704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7558), - [12706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7548), - [12708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [12710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [12712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [12714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [12716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7559), - [12718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 105), - [12720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 105), - [12722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [12724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [12726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7585), - [12728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [12730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [12732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 109), - [12734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 109), - [12736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [12738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7531), - [12740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7600), - [12742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 110), - [12744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 110), - [12746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [12748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [12750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), - [12752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9573), - [12754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [12756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [12758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [12760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [12762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9318), - [12764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7519), - [12766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [12768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [12770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [12772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [12774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7522), - [12776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7551), - [12778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9289), - [12780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7571), - [12782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [12784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [12786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [12788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [12790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [12792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [12794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [12796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [12798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [12800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [12802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 5), - [12804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9668), - [12806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7272), - [12808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8564), - [12810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [12812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [12814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [12816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [12818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [12820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [12822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [12824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [12826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [12828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [12830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [12832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [12834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [12836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [12838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [12840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 4, 0, 166), - [12842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8142), - [12844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9314), - [12846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9194), - [12848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_specifier, 1, 0, 0), - [12850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_specifier, 1, 0, 0), - [12852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8455), - [12854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9631), - [12856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9359), - [12858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9307), - [12860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, 0, 9), - [12862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8980), - [12864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7466), - [12866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [12868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1, 0, 30), - [12870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 3, 0, 133), - [12872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [12874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [12876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [12878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9038), - [12880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8195), - [12882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4405), - [12884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9031), - [12886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8461), - [12888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [12890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [12892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8854), - [12894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9793), - [12896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9192), - [12898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [12900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), - [12902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8479), - [12904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), - [12906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [12908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 174), SHIFT_REPEAT(7971), - [12911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 174), - [12913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 155), SHIFT_REPEAT(7211), - [12916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 155), - [12918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [12920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [12922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [12924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7975), - [12926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, 0, 163), - [12928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [12930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8077), - [12932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, 0, 175), - [12934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), - [12936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [12938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [12940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8231), - [12942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [12944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [12946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8165), - [12948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [12950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [12952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10325), - [12954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8689), - [12956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), - [12958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 5, 0, 0), - [12960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4679), - [12962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8226), - [12964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), - [12966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), - [12968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [12970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), - [12972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [12974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [12976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [12978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_specifier, 1, 0, 0), - [12980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8169), - [12982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [12984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [12986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8767), - [12988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 3, 0, 0), - [12990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2, 0, 30), - [12992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), - [12994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8252), - [12996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2, 0, 30), - [12998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5736), - [13000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [13002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [13004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [13006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [13008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9417), - [13010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9300), - [13012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [13014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [13016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), - [13018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [13020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), - [13022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8274), - [13024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [13026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [13028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5291), - [13030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [13032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [13034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [13036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7971), - [13038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, 0, 129), - [13040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [13042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [13044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [13046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [13048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4712), - [13050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8294), - [13052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3846), - [13054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4716), - [13056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, 0, 163), - [13058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9173), - [13060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), - [13062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [13064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, 0, 129), - [13066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7666), - [13068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8310), - [13070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5467), - [13072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7682), - [13074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [13076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), - [13078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [13080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), - [13082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8325), - [13084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), - [13086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), - [13088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [13090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), - [13092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8338), - [13094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [13096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), - [13098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4638), - [13100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [13102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4642), - [13104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8360), - [13106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), - [13108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8344), - [13110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [13112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [13114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [13116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9666), - [13118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [13120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8348), - [13122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), - [13124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7821), - [13126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), - [13128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8352), - [13130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [13132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1, 0, 30), - [13134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [13136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), - [13138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8585), - [13140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), - [13142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), - [13144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8358), - [13146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), - [13148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6143), - [13150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), - [13152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_operator_cast_identifier, 2, 0, 9), - [13154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 174), SHIFT_REPEAT(7975), - [13157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 174), - [13159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [13161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [13163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8366), - [13165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [13167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [13169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8171), - [13171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4482), - [13173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8370), - [13175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), - [13177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [13179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4222), - [13181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8373), - [13183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), - [13185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8608), - [13187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 4, 0, 0), - [13189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [13191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [13193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8378), - [13195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [13197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [13199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [13201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8381), - [13203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [13205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), - [13207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), - [13209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), - [13211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [13213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, 0, 182), - [13215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), - [13217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [13219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), - [13221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10136), - [13223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8456), - [13225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [13227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), - [13229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [13231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [13233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [13235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [13237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), - [13239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), - [13241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9439), - [13243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9452), - [13245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [13247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [13249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [13251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [13253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition_declarators, 2, 0, 55), - [13255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8620), - [13257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 1, 0, 0), - [13259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), - [13261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [13263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [13265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10220), - [13267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9295), - [13269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9506), - [13271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [13273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), - [13275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8440), - [13277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [13279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [13281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 79), - [13283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [13285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9941), - [13287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8161), - [13289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), - [13291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8437), - [13293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [13295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9812), - [13297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7140), - [13299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), - [13301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), - [13303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), - [13305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), - [13307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8526), - [13309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [13311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8168), - [13313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), - [13315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9455), - [13317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9583), - [13319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9358), - [13321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9362), - [13323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7203), - [13325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9698), - [13327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 185), SHIFT_REPEAT(8077), - [13330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 185), - [13332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), - [13334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [13336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), - [13338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(9031), - [13341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(8461), - [13344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [13346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), - [13348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8164), - [13350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [13352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9945), - [13354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), - [13356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [13358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(9038), - [13361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(8479), - [13364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [13366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9390), - [13368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9305), - [13370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1, 0, 0), - [13372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [13374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4818), - [13376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8501), - [13378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [13380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10247), - [13382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), - [13384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [13386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), - [13388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), - [13390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), - [13392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4787), - [13394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [13396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [13398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [13400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_declarators_repeat1, 2, 0, 94), SHIFT_REPEAT(7414), - [13403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_declarators_repeat1, 2, 0, 94), - [13405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), - [13407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [13409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), - [13411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), - [13413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), - [13415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), - [13417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), - [13419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [13421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), - [13423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), - [13425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), - [13427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), - [13429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), - [13431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [13433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), - [13435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [13437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [13439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [13441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8821), - [13443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 2, 0, 0), - [13445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), - [13447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8192), - [13449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [13451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10232), - [13453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9353), - [13455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9593), - [13457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [13459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7974), - [13461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), - [13463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [13465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), - [13467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [13469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [13471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [13473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [13475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9350), - [13477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [13479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [13481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9496), - [13483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9497), - [13485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [13487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8028), - [13489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [13491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [13493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [13495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [13497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [13499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6995), - [13501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [13503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8027), - [13505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [13507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1917), - [13510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), - [13512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7842), - [13514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [13516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6167), - [13518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7840), - [13520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7832), - [13522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7835), - [13524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [13526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), - [13528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9344), - [13530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 5, 0, 0), - [13532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1941), - [13535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2, 0, 0), - [13537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 7, 0, 0), - [13539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [13541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [13543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_specifier, 2, 0, 0), - [13545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), - [13547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), - [13549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [13551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), - [13553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), - [13555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), - [13557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7455), - [13559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [13561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [13563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, 0, 181), - [13565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), - [13567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7081), - [13569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 129), - [13571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [13573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [13575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), - [13577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7827), - [13579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [13581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [13583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [13585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [13587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [13589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 2, 0, 0), - [13591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), - [13593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [13595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9414), - [13597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [13599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [13601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [13603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [13605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [13607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [13609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [13611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [13613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), - [13615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [13617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), - [13619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [13621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [13623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [13625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [13627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), - [13629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9211), - [13631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7149), - [13633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [13635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), - [13637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), - [13639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [13641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [13643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [13645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [13647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [13649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [13651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1229), - [13654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [13656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9484), - [13658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [13660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [13662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [13664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [13666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [13668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [13670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9389), - [13672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [13674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [13676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [13678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6201), - [13680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), - [13682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), - [13684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6215), - [13686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9284), - [13688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), - [13690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), - [13692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), - [13694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), - [13696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9288), - [13698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), - [13700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), - [13702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), - [13704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), - [13706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), - [13708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), - [13710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), - [13712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [13714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [13716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [13718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [13720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8016), - [13722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 6, 0, 0), - [13724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), - [13726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), - [13728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), - [13730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), - [13732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), - [13734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [13736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [13738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [13740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [13742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9881), - [13744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, 0, 43), - [13746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), - [13748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), - [13750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), - [13752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), - [13754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9494), - [13756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(7216), - [13759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2, 0, 0), - [13761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [13763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [13765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [13767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [13769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), - [13771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9542), - [13773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 2, 0, 0), - [13775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8025), - [13777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), - [13779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), - [13781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), - [13783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), - [13785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), - [13787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), - [13789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [13791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [13793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [13795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8166), - [13797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [13799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [13801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [13803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [13805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [13807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), - [13809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), - [13811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), - [13813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), - [13815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), - [13817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), - [13819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9434), - [13821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), - [13823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), - [13825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), - [13827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), - [13829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7085), - [13832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7183), - [13834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [13836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [13838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [13840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [13842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [13844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [13846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [13848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [13850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [13852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [13854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [13856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [13858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [13860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [13862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [13864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [13866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [13868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4890), - [13871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2, 0, 0), - [13873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9281), - [13875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8454), - [13877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [13879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6172), - [13881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6378), - [13883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter_declaration, 2, 0, 4), - [13885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [13887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, 0, 169), - [13889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9200), - [13891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), - [13893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [13895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [13897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [13899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [13901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [13903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9363), - [13905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [13907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7621), - [13909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [13911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9255), - [13913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9386), - [13915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [13917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9741), - [13919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [13921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [13923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [13925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), - [13927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), SHIFT_REPEAT(9496), - [13930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), - [13932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), - [13934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), - [13936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), - [13938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_reference_declarator, 2, 0, 0), - [13940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [13942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [13944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [13946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [13948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [13950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), - [13952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_namespace_specifier, 3, 0, 0), - [13954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8175), - [13956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), - [13958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), - [13960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [13962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), - [13964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), - [13966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [13968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9645), - [13970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), - [13972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6136), - [13974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), - [13976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(9350), - [13979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), - [13981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [13983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7861), - [13985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [13987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [13989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), - [13991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9339), - [13993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8439), - [13995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9582), - [13997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10257), - [13999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_declarator, 2, 0, 53), - [14001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [14003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [14005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [14007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7925), - [14009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [14011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), - [14013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [14015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10205), - [14017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7880), - [14019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8563), - [14021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9290), - [14023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_declarator, 3, 0, 93), - [14025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_declarator_repeat1, 2, 0, 94), SHIFT_REPEAT(6461), - [14028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_declarator_repeat1, 2, 0, 94), - [14030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9378), - [14032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [14034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8230), - [14036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(5004), - [14039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), - [14041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 3, 0), - [14043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), - [14045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [14047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8508), - [14049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [14051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [14053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), - [14055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [14057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, 0, 189), - [14059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9348), - [14061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7455), - [14064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), - [14066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9909), - [14068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), - [14070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 2, 0, 54), - [14072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 3, 0, 119), - [14074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10678), - [14076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9407), - [14078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8359), - [14080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8792), - [14082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [14084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7877), - [14086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [14088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [14090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [14092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [14094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [14096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9939), - [14099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2, 0, 0), - [14101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [14103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9576), - [14105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2, 0, 0), - [14107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [14109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, 0, 181), - [14111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10407), - [14113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8436), - [14115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 175), - [14117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6736), - [14119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), - [14121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(477), - [14124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 0, 0), - [14126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [14128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), - [14130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [14132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [14134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [14136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), - [14138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [14140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1449), - [14143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10012), - [14145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [14147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8499), - [14149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, 0, 186), - [14151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), - [14153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), - [14155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [14157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [14159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6739), - [14161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_declarator, 2, 0, 55), - [14163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6740), - [14165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [14167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10501), - [14169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6758), - [14171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7659), - [14173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8186), - [14175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), - [14177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), - [14179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), - [14181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), - [14183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [14185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), - [14187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [14189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [14191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [14193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8041), - [14195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [14197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [14199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9738), - [14201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [14203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), - [14205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8194), - [14207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, 0, 0), - [14209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), - [14211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), - [14213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [14215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [14217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), - [14219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), - [14221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), - [14223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), - [14225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [14227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), - [14229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9865), - [14231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [14233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8225), - [14235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [14237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [14239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [14241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9751), - [14243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10280), - [14245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9302), - [14247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8251), - [14249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9215), - [14251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [14253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9144), - [14255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 4, 0, 0), - [14257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10183), - [14259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8273), - [14261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8967), - [14263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [14265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), - [14267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10053), - [14269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8293), - [14271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8309), - [14273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), - [14275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8324), - [14277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8337), - [14279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [14281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), - [14283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [14285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), - [14287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), - [14289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), - [14291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [14293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [14295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9221), - [14297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [14299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), - [14301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [14303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), - [14305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), - [14307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), - [14309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9451), - [14311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6674), - [14313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [14315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1889), - [14318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2, 0, 0), - [14320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), - [14322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 1, 0, 12), - [14324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), - [14326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [14328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [14330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6210), - [14332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6917), - [14334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6553), - [14336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 13), - [14338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 13), - [14340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), - [14342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6558), - [14344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6559), - [14346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9248), - [14348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 3, 0, 0), - [14350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 4), - [14352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [14354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 153), - [14356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6212), - [14358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9470), - [14360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [14362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 129), - [14364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [14366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6220), - [14368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7691), - [14370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7972), - [14372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), - [14374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1112), - [14377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), - [14379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), - [14381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [14383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 188), SHIFT_REPEAT(9881), - [14386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 188), - [14388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [14390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8012), - [14392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), - [14394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_namespace_specifier, 2, 0, 0), - [14396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8176), - [14398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [14400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [14402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [14404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [14406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [14408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [14410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [14412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [14414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9227), - [14416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1084), - [14419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), - [14421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, 0, 189), - [14423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), - [14425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), - [14427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9240), - [14429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), - [14431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [14433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [14435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [14437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [14439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), - [14441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9250), - [14443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [14445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [14447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), - [14449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [14451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), - [14453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), - [14455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [14457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [14459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), - [14461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [14463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), - [14465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [14467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [14469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), - [14471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), - [14473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [14475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [14477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [14479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [14481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), - [14483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7927), - [14485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), - [14487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [14489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [14491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), - [14493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [14495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [14497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), - [14499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [14501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7136), - [14503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10352), - [14505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10646), - [14507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9252), - [14509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [14511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10108), - [14513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [14515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9904), - [14517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [14519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10467), - [14521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9164), - [14523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8111), - [14525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), - [14527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [14529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [14531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10036), - [14533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_declarator_repeat1, 3, 0, 140), - [14535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [14537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10218), - [14539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9171), - [14541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [14543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [14545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9182), - [14547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [14549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [14551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9189), - [14553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [14555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [14557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [14559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9195), - [14561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [14563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_pack_expansion, 2, 0, 23), - [14565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9203), - [14567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [14569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [14571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [14573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9205), - [14575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [14577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9209), - [14579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [14581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9214), - [14583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [14585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8699), - [14587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1, 0, 0), - [14589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9218), - [14591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [14593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9225), - [14595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [14597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [14599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9230), - [14601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [14603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9236), - [14605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [14607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9343), - [14609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [14611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9241), - [14613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [14615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10121), - [14617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [14619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [14621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9245), - [14623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [14625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [14627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8138), - [14629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [14631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [14633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [14635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [14637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9475), - [14639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [14641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10512), - [14643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), - [14645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10222), - [14647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10303), - [14649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9244), - [14651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [14653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [14655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2, 0, 61), - [14657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2, 0, 61), - [14659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7101), - [14661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10035), - [14663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [14665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9992), - [14667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10239), - [14669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [14671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4, 0, 61), - [14673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4, 0, 61), - [14675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9560), - [14677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [14679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), - [14681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9450), - [14683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [14685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [14687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [14689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [14691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [14693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9896), - [14695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9153), - [14697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [14699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [14701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9686), - [14703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9166), - [14705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [14707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [14709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10229), - [14711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10231), - [14713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 6, 0, 0), - [14715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 5), - [14717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9555), - [14719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [14721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [14723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [14725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9779), - [14727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9792), - [14729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 2, 0), - [14731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), - [14733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [14735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9929), - [14737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10060), - [14739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10072), - [14741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [14743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [14745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9523), - [14747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [14749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9898), - [14751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9899), - [14753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9420), - [14755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [14757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10356), - [14759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10362), - [14761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_template_parameter_declaration, 3, 0, 47), - [14763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [14765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [14767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [14769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10331), - [14771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10078), - [14773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10083), - [14775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [14777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [14779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [14781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10532), - [14783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), - [14785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10114), - [14787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10120), - [14789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9567), - [14791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9298), - [14793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3, 0, 61), - [14795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3, 0, 61), - [14797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [14799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10125), - [14801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [14803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9606), - [14805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [14807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [14809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [14811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7232), - [14813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10052), - [14815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 3, 0, 0), - [14817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [14819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [14821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 79), - [14823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [14825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9684), - [14827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [14829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [14831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [14833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10389), - [14835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9598), - [14837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [14839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10612), - [14841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [14843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 43), - [14845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [14847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10316), - [14849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 0), - [14851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [14853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [14855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10176), - [14857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10625), - [14859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [14861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9416), - [14863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [14865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6825), - [14867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [14869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [14871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10585), - [14873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10253), - [14875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10631), - [14877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10277), - [14879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10634), - [14881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [14883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10300), - [14885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10637), - [14887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10318), - [14889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10640), - [14891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10335), - [14893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10643), - [14895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), - [14897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10369), - [14899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10649), - [14901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10383), - [14903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10652), - [14905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10396), - [14907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10655), - [14909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [14911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10644), - [14913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10408), - [14915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10658), - [14917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10416), - [14919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10660), - [14921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10420), - [14923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10661), - [14925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10424), - [14927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10662), - [14929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10428), - [14931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10663), - [14933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10431), - [14935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10664), - [14937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10434), - [14939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10665), - [14941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10437), - [14943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10666), - [14945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10440), - [14947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10667), - [14949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10442), - [14951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10668), - [14953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10444), - [14955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10669), - [14957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10446), - [14959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10670), - [14961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [14963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [14965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9404), - [14967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9152), - [14969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9148), - [14971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [14973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [14975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10675), - [14977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10680), - [14979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [14981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 3, 0, 0), - [14983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6177), - [14985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [14987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10048), - [14989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [14991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), - [14993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), - [14995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [14997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [14999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, 0, 149), - [15001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [15003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6974), - [15005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [15007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [15009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10259), - [15011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [15013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [15015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8423), - [15017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [15019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [15021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), - [15023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [15025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [15027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [15029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [15031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10574), - [15033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [15035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), - [15037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [15039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9804), - [15041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 108), - [15043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10629), - [15045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [15047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [15049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [15051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7195), - [15053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [15055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [15057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [15059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), - [15061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 108), - [15063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), - [15065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [15067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), - [15069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), - [15071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9755), - [15073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9935), - [15075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [15077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [15079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), - [15081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 68), - [15083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [15085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8215), - [15087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [15089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [15091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8884), - [15093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [15095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [15097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7084), - [15099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), - [15101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), - [15103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9888), - [15105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [15107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [15109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [15111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [15113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [15115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8790), - [15117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [15119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), - [15121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9910), - [15123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [15125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [15127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [15129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10110), - [15131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10382), - [15133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [15135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [15137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [15139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), - [15141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [15143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [15145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9809), - [15147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), - [15149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [15151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9752), - [15153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [15155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [15157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [15159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [15161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [15163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [15165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [15167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10586), - [15169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, 0, 150), - [15171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), - [15173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [15175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [15177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9740), - [15179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 69), - [15181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [15183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [15185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [15187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [15189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), - [15191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), - [15193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [15195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9324), - [15197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10039), - [15199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), - [15201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [15203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [15205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8346), - [15207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [15209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [15211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10235), - [15213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [15215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9764), - [15217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [15219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10088), - [15221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [15223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9815), - [15225] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [15227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [15229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9695), - [15231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), - [15233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [15235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [15237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [15239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [15241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [15243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [15245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [15247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [15249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9786), - [15251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [15253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [15255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2, 0, 0), - [15257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [15259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [15261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [15263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10074), - [15265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [15267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10089), - [15269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [15271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), - [15273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [15275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [15277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [15279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [15281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10226), - [15283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [15285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [15287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [15289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [15291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10354), - [15293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10297), - [15295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [15297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [15299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [15301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [15303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [15305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8109), - [15307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9247), - [15309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10480), - [15311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), - [15313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), - [15315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8431), - [15317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [15319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6523), - [15321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9749), - [15323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [15325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, 0, 149), - [15327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [15329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9262), - [15331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [15333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [15335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9868), - [15337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [15339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [15341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9568), - [15343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, 0, 149), - [15345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [15347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, 0, 150), - [15349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9907), - [15351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [15353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, 0, 150), - [15355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [15357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8412), - [15359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9961), - [15361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [15363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [15365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [15367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [15369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [15371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9981), - [15373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 70), - [15375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [15377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [15379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), - [15381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [15383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9877), - [15385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [15387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), - [15389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [15391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [15393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [15395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10026), - [15397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [15399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8490), - [15401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [15403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), - [15405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9713), - [15407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), - [15409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [15411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [15413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [15415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9819), - [15417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [15419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [15421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [15423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [15425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [15427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10366), - [15429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, 0, 109), - [15431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [15433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [15435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9365), - [15437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10459), - [15439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [15441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [15443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [15445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [15447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10478), - [15449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [15451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10009), - [15453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [15455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), - [15457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [15459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [15461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), - [15463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [15465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10522), - [15467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [15469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), - [15471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8547), - [15473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [15475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [15477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [15479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [15481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [15483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [15485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [15487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), - [15489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10635), - [15491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10194), - [15493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [15495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [15497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [15499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [15501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9938), - [15503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [15505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 168), - [15507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [15509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [15511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [15513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10298), - [15515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), - [15517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10584), - [15519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [15521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [15523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), - [15525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [15527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [15529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9991), - [15531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [15533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9835), - [15535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [15537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8189), - [15539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, 0, 110), - [15541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [15543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [15545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), - [15547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [15549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10064), - [15551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), - [15553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), - [15555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10236), - [15557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), - [15559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [15561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9726), - [15563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [15565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7689), - [15567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), - [15569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), - [15571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8082), - [15573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9803), - [15575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), - [15577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [15579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), - [15581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9724), - [15583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [15585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), - [15587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [15589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [15591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9730), - [15593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [15595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9928), - [15597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [15599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [15601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [15603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [15605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), - [15607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [15609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [15611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10023), - [15613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9688), - [15615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [15617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10051), - [15619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [15621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10184), - [15623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [15625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [15627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [15629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10221), - [15631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [15633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10058), - [15635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [15637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10321), - [15639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [15641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [15643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10620), - [15645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [15647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [15649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6219), - [15651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), - [15653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9802), - [15655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [15657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [15659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9965), - [15661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), - [15663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10084), - [15665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), - [15667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [15669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10040), - [15671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10315), - [15673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9092), - [15675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9985), - [15677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [15679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [15681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10406), - [15683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [15685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 107), - [15687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [15689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [15691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9878), - [15693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [15695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9993), - [15697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10027), - [15699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 107), - [15701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6276), - [15703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10115), - [15705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 108), - [15707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_semgrep_typed_metavar, 2, 0, 0), - [15709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [15711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), - [15713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [15715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [15717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9760), - [15719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [15721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7684), - [15723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9808), - [15725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9834), - [15727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [15729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [15731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9998), - [15733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10028), - [15735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [15737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10032), - [15739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [15741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [15743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), - [15745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [15747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10208), - [15749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10233), - [15751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10237), - [15753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [15755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [15757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10386), - [15759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10456), - [15761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10458), - [15763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [15765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10570), - [15767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10576), - [15769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), - [15771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9673), - [15773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9699), - [15775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [15777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9664), - [15779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9672), - [15781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [15783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10193), - [15785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10211), - [15787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9652), - [15789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9653), - [15791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9731), - [15793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9732), - [15795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9845), - [15797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9852), - [15799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [15801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9279), - [15803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9976), - [15805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [15807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), - [15809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 108), - [15811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [15813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [15815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [15817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [15819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [15821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [15823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9287), - [15825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10251), - [15827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [15829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [15831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [15833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10092), - [15835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [15837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5828), - [15839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [15841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8416), - [15843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8799), - [15845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [15847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5581), - [15849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 148), - [15851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [15853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 2, 0, 0), - [15855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6852), - [15857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 67), - [15859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [15861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [15863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), - [15865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9791), - [15867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), - [15869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5738), - [15871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [15873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [15875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [15877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8263), - [15879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [15881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10172), - [15883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [15885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [15887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [15889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10198), - [15891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), - [15893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7471), - [15895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7484), - [15897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [15899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [15901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, 0, 168), - [15903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [15905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [15907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [15909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [15911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [15913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [15915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, 0, 168), - [15917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), - [15919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [15921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), - [15923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [15925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [15927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [15929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [15931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [15933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8605), - [15935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9906), - [15937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [15939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), - [15941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10486), - [15943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9650), - [15945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [15947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), - [15949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [15951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [15953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [15955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9799), - [15957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [15959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9347), - [15961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [15963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [15965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [15967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9683), - [15969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), - [15971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6835), - [15973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8850), - [15975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 4, 0, 0), - [15977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [15979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10189), - [15981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9703), - [15983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [15985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [15987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, 0, 149), - [15989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9376), - [15991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9744), - [15993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), - [15995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [15997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [15999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [16001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, 0, 150), - [16003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9385), - [16005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [16007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [16009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [16011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9775), - [16013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8881), - [16015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), - [16017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [16019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9790), - [16021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [16023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [16025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [16027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9405), - [16029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9821), - [16031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), - [16033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [16035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [16037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [16039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [16041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [16043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9413), - [16045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [16047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), - [16049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), - [16051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [16053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9850), - [16055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8906), - [16057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [16059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [16061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9863), - [16063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [16065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9430), - [16067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), - [16069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), - [16071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [16073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [16075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8595), - [16077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9433), - [16079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), - [16081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [16083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [16085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9901), - [16087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8927), - [16089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [16091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10503), - [16093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9914), - [16095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [16097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [16099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9444), - [16101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), - [16103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [16105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [16107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [16109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6680), - [16111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [16113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9946), - [16115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8943), - [16117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [16119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9959), - [16121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [16123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [16125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9462), - [16127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), - [16129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7954), - [16131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [16133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [16135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), - [16137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [16139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [16141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [16143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9990), - [16145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8962), - [16147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8120), - [16149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [16151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [16153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10002), - [16155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [16157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), - [16159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9480), - [16161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), - [16163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [16165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [16167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10328), - [16169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), - [16171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [16173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10031), - [16175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8979), - [16177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [16179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), - [16181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), - [16183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10043), - [16185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [16187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), - [16189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9492), - [16191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), - [16193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [16195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [16197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [16199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8063), - [16201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10061), - [16203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8989), - [16205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7955), - [16207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10379), - [16209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10066), - [16211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [16213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [16215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9500), - [16217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), - [16219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [16221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [16223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [16225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10082), - [16227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8996), - [16229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [16231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10087), - [16233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [16235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [16237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9507), - [16239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), - [16241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), - [16243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [16245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [16247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), - [16249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10102), - [16251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9001), - [16253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10106), - [16255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [16257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9511), - [16259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [16261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [16263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10116), - [16265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10118), - [16267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9518), - [16269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [16271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10124), - [16273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10126), - [16275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9521), - [16277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [16279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10132), - [16281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10133), - [16283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9524), - [16285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [16287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10138), - [16289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10139), - [16291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9525), - [16293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10141), - [16295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10142), - [16297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9526), - [16299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10144), - [16301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10145), - [16303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9527), - [16305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10147), - [16307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10148), - [16309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9528), - [16311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10150), - [16313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10151), - [16315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10152), - [16317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10153), - [16319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10154), - [16321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10155), - [16323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10156), - [16325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10157), - [16327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 148), - [16329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [16331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [16333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [16335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10175), - [16337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [16339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [16341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [16343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [16345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [16347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [16349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 148), - [16351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [16353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [16355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), - [16357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [16359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [16361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [16363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7763), - [16365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7774), - [16367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8066), - [16369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10190), - [16371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [16373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [16375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [16377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [16379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8500), - [16381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [16383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [16385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10203), - [16387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), - [16389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8056), - [16391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9777), - [16393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [16395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10610), - [16397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7957), - [16399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), - [16401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [16403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10641), - [16405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7781), - [16407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7783), - [16409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [16411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [16413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [16415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), - [16417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), - [16419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [16421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), - [16423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 104), - [16425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7985), - [16427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [16429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [16431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [16433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [16435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [16437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [16439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [16441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [16443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10252), - [16445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7373), - [16447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [16449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8511), - [16451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10260), - [16453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [16455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [16457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [16459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [16461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [16463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10276), - [16465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8092), - [16467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [16469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8513), - [16471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10283), - [16473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [16475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, 0, 168), - [16477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [16479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [16481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [16483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10299), - [16485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [16487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8517), - [16489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10305), - [16491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10045), - [16493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [16495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [16497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10317), - [16499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [16501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), - [16503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8520), - [16505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10323), - [16507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [16509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [16511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [16513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10334), - [16515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 105), - [16517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8476), - [16519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8523), - [16521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10340), - [16523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10606), - [16525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [16527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [16529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10351), - [16531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [16533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8525), - [16535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10357), - [16537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [16539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [16541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [16543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10368), - [16545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9920), - [16547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [16549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8528), - [16551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10374), - [16553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7750), - [16555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [16557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [16559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [16561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8531), - [16563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10387), - [16565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [16567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [16569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [16571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 148), - [16573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10399), - [16575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10621), - [16577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [16579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), - [16581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [16583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10410), - [16585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [16587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8424), - [16589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10417), - [16591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [16593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10421), - [16595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [16597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10425), - [16599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), - [16601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10429), - [16603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [16605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10432), - [16607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [16609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10435), - [16611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10438), - [16613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [16615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10441), - [16617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, 0, 147), - [16619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10443), - [16621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), - [16623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10445), - [16625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10491), - [16627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10447), - [16629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [16631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [16633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [16635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), - [16637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [16639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9750), - [16641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [16643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [16645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), - [16647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [16649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7698), - [16651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10479), - [16653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [16655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [16657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8103), - [16659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [16661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), - [16663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10519), - [16665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), - [16667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10529), - [16669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7928), - [16671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), - [16673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10539), - [16675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 107), - [16677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), - [16679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10548), - [16681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [16683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), - [16685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10556), - [16687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [16689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), - [16691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10564), - [16693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9534), - [16695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), - [16697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10572), - [16699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [16701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), - [16703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10578), - [16705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 107), - [16707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), - [16709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10583), - [16711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), - [16713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), - [16715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10588), - [16717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10591), - [16719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10593), - [16721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10595), - [16723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10597), - [16725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10599), - [16727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10601), - [16729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10603), - [16731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10605), - [16733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10607), - [16735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10609), - [16737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10611), - [16739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [16741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), - [16743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), - [16745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [16747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [16749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [16751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [16753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), - [16755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), - [16757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [16759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [16761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [16763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [16765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [16767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [16769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [16771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [16773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [16775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [16777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [16779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [16781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [16783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9337), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7308), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7051), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6885), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8889), + [4516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8889), + [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10088), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7475), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9642), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9661), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9617), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [4573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(2057), + [4576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(4320), + [4579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(298), + [4582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1361), + [4585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1361), + [4588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1300), + [4591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(2809), + [4594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7503), + [4597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1434), + [4600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), + [4602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1103), + [4605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8042), + [4608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1648), + [4611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1767), + [4614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(10010), + [4617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(9181), + [4620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(9229), + [4623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7745), + [4626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(4812), + [4629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8635), + [4632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8078), + [4635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(4249), + [4638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(4253), + [4641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(9158), + [4644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7475), + [4647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8784), + [4650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1368), + [4653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(9041), + [4656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1394), + [4659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(5864), + [4662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(6332), + [4665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1409), + [4668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(4265), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6756), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6781), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6973), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6996), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9734), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10011), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9890), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9686), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9405), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), + [4763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), + [4765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_not_binary, 1, 0, 0), + [4767] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 0), REDUCE(sym_expression_not_binary, 1, 0, 0), + [4771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), + [4773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_not_binary, 1, 0, 0), + [4775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), REDUCE(sym_expression_not_binary, 1, 0, 0), + [4778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), REDUCE(sym_expression_not_binary, 1, 0, 0), + [4781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_not_binary, 1, 0, 0), SHIFT(367), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7561), + [4786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 0), + [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_name, 1, 0, 0), + [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [4793] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 0), REDUCE(sym_expression_not_binary, 1, 0, 0), + [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [4809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_not_binary, 1, 0, 0), SHIFT(395), + [4812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7951), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9101), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [4822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), + [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), + [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [4838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), + [4842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [4850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [4884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 2, 0, 0), + [4886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 2, 0, 0), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9078), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9267), + [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7667), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9484), + [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9714), + [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9519), + [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [5034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement_body, 4, 0, 161), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [5046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement_body, 2, 0, 0), + [5048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement_body, 3, 0, 124), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [5052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement_body, 3, 0, 86), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [5058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_default_capture, 1, 0, 0), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement_body, 3, 0, 126), + [5068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fold_operator, 1, 0, 0), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [5072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement_body, 2, 0, 86), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7255), + [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7232), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [5096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9241), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6905), + [5100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9969), + [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7431), + [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [5118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9187), + [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7049), + [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9832), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9440), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [5134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9687), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), + [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9655), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7050), + [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9948), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9360), + [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9953), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7284), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9906), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7056), + [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9579), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7057), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [5184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9331), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6822), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [5190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [5204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7449), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [5210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [5212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8485), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [5224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), + [5226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7233), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), + [5234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [5236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [5238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9162), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [5262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7808), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7783), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4414), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [5374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 9), + [5376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, 0, 9), + [5378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, 0, 9), REDUCE(sym_qualified_type_identifier, 2, 0, 9), + [5381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, 0, 9), + [5383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 9), + [5385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 9), REDUCE(sym_qualified_type_identifier, 2, 0, 9), + [5388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 9), SHIFT(451), + [5391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 9), SHIFT(416), + [5394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, 1, 88), + [5396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, 1, 88), + [5398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, 3, 88), + [5400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, 3, 88), + [5402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, 2, 88), + [5404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, 2, 88), + [5406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_not_binary, 1, 0, 0), SHIFT(355), + [5409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declarator, 1, 0, 0), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8112), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9088), + [5417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 2, 0, 44), + [5419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 2, 0, 44), + [5421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, 3, 132), + [5423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, 3, 132), + [5425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, 1, 132), + [5427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, 1, 132), + [5429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, 2, 132), + [5431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, 2, 132), + [5433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_type, 2, 0, 15), + [5435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_type, 2, 0, 15), REDUCE(sym_template_function, 2, 0, 15), + [5438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 2, 0, 15), + [5440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_function, 2, 0, 15), + [5442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_type, 2, 0, 15), REDUCE(sym_template_function, 2, 0, 15), + [5445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_function, 2, 0, 15), + [5447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_not_binary, 1, 0, 0), SHIFT(382), + [5450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_not_binary, 1, 0, 0), SHIFT(387), + [5453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6975), + [5461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6975), + [5463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [5465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_not_binary, 1, 0, 0), SHIFT(392), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [5470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7946), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9100), + [5478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4407), + [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6103), + [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6104), + [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6105), + [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6045), + [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6058), + [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6059), + [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6114), + [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6115), + [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6116), + [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6195), + [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6196), + [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6197), + [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6069), + [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6070), + [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6071), + [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6089), + [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6090), + [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6092), + [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6093), + [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6094), + [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6095), + [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6082), + [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6083), + [5538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6084), + [5540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6160), + [5542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6165), + [5544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6167), + [5546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 3, 0, 11), + [5548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3, 0, 11), + [5550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [5554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [5556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3, 0, 0), + [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [5560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3, 0, 0), + [5562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [5564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1845), + [5567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [5569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8165), + [5572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9089), + [5575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 4, 0, 120), + [5577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 4, 0, 120), + [5579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 5, 0, 145), + [5581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 5, 0, 145), + [5583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5780), + [5585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5758), + [5587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8163), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7698), + [5591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 3, 0, 51), + [5593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 3, 0, 51), + [5595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, 0, 101), + [5597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, 0, 101), + [5599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, 0, 58), + [5601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, 0, 58), + [5603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_clause_constraint, 1, 0, 0), + [5605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_clause_constraint, 1, 0, 0), + [5607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_clause_constraint, 3, 0, 0), + [5609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_clause_constraint, 3, 0, 0), + [5611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_conjunction, 3, 0, 45), + [5613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_conjunction, 3, 0, 45), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [5617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, 0, 59), + [5619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, 0, 59), + [5621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 2, 0, 0), + [5623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 2, 0, 0), + [5625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 2, 0, 26), + [5627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 2, 0, 26), + [5629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fold_expression, 3, 0, 0), + [5631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fold_expression, 3, 0, 0), + [5633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 2, 0, 17), + [5635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 2, 0, 17), + [5637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 3, 0, 0), + [5639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 3, 0, 0), + [5641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, 0, 100), + [5643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, 0, 100), + [5645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8907), + [5647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [5649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [5651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [5653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [5655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1877), + [5658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [5660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [5662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 5, 0, 0), + [5664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 5, 0, 0), + [5666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 7, 0, 179), + [5668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 7, 0, 179), + [5670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8907), + [5673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1891), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8652), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [5680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8190), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8241), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8299), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [5694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration_item, 1, 0, 5), + [5696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration_item, 1, 0, 5), + [5698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9746), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6777), + [5704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6878), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8349), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8922), + [5712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8922), + [5715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_not_binary, 1, 0, 0), SHIFT(423), + [5718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [5722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_not_binary, 1, 0, 0), SHIFT(428), + [5725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_type_repeat1, 2, 0, 0), + [5727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_type_repeat1, 2, 0, 0), + [5729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2045), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8836), + [5734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 9), SHIFT(355), + [5737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 104), + [5739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 104), + [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7566), + [5743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), + [5745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4541), + [5747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9480), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9019), + [5751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9482), + [5753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4518), + [5755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9489), + [5757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 78), + [5759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 78), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [5765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [5767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9185), + [5769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list_item, 1, 0, 0), + [5771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list_item, 1, 0, 0), + [5773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 64), + [5775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 64), + [5777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 67), + [5779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 67), + [5781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 68), + [5783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 68), + [5785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 69), + [5787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 69), + [5789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 70), + [5791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 70), + [5793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 4), + [5795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 4), + [5797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 153), + [5799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 153), + [5801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 154), + [5803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 154), + [5805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 50), + [5807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 50), + [5809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 9), SHIFT(382), + [5812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 105), + [5814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 105), + [5816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 109), + [5818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 109), + [5820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 110), + [5822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 110), + [5824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 146), + [5826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 146), + [5828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 16), + [5830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 16), + [5832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, 0, 4), + [5834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, 0, 4), + [5836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 4), + [5838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 4), + [5840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 170), + [5842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 170), + [5844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 153), + [5846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 153), + [5848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 171), + [5850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 171), + [5852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 154), + [5854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 154), + [5856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 147), + [5858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 147), + [5860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 146), + [5862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 146), + [5864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 180), + [5866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 180), + [5868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 170), + [5870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 170), + [5872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 171), + [5874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 171), + [5876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 36), + [5878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 36), + [5880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 7, 0, 180), + [5882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 7, 0, 180), + [5884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 29), + [5886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 29), + [5888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 31), + [5890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 31), + [5892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, 0, 0), + [5894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, 0, 0), + [5896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 0), + [5898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 0), + [5900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list_item, 2, 0, 0), + [5902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list_item, 2, 0, 0), + [5904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 4), + [5906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 4), + [5908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, 0, 52), + [5910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, 0, 52), + [5912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_not_binary, 1, 0, 0), SHIFT(425), + [5915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [5919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8933), + [5921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_not_binary, 1, 0, 0), SHIFT(431), + [5924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8933), + [5927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8873), + [5929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [5931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 9), SHIFT(387), + [5934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type_identifier, 2, 0, 0), + [5936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type_identifier, 2, 0, 0), + [5938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_name, 1, 0, 0), + [5940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2051), + [5943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8873), + [5946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_not_binary, 1, 0, 0), SHIFT(407), + [5949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 9), SHIFT(406), + [5952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [5956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2096), + [5959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7983), + [5962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9109), + [5965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), + [5967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [5969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), + [5971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [5973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [5975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [5978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [5981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 9), + [5983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 9), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6953), + [5987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 38), + [5989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 38), + [5991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_name, 2, 0, 0), + [5993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_name, 2, 0, 0), + [5995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_declarator, 1, 0, 0), REDUCE(sym_expression_not_binary, 1, 0, 0), + [5998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_declarator, 1, 0, 0), REDUCE(sym_expression_not_binary, 1, 0, 0), + [6001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_not_binary, 1, 0, 0), SHIFT(451), + [6004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [6006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [6008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7980), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9108), + [6016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4, 0, 0), + [6018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4, 0, 0), + [6020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 37), + [6022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 37), + [6024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 39), + [6026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 39), + [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), + [6030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration_item, 2, 0, 40), + [6032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration_item, 2, 0, 40), + [6034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration_item, 2, 0, 8), + [6036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration_item, 2, 0, 8), + [6038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, 1, 141), + [6040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 5, 1, 141), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8855), + [6046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [6050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 80), + [6052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 80), + [6054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 16), + [6056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 16), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [6060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 82), + [6062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 82), + [6064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 16), + [6066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 16), + [6068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration_item, 3, 0, 83), + [6070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration_item, 3, 0, 83), + [6072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration_item, 3, 0, 37), + [6074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration_item, 3, 0, 37), + [6076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype, 4, 0, 0), + [6078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype, 4, 0, 0), + [6080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, 1, 74), + [6082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 4, 1, 74), + [6084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 8), + [6086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), + [6088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_base_clause, 2, 0, 81), + [6090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_base_clause, 2, 0, 81), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [6094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 117), + [6096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 117), + [6098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration_item, 4, 0, 118), + [6100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration_item, 4, 0, 118), + [6102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration_item, 1, 0, 10), + [6104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration_item, 1, 0, 10), + [6106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2193), + [6109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7980), + [6112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9108), + [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9560), + [6121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_not_binary, 1, 0, 0), SHIFT(7285), + [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [6128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 1), + [6130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 1), + [6132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, 1, 4), + [6134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 2, 1, 4), + [6136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_not_binary, 1, 0, 0), SHIFT(9560), + [6139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [6141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, 1, 34), + [6143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 3, 1, 34), + [6145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 1), + [6147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 1), + [6149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_not_binary, 1, 0, 0), SHIFT(413), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [6154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [6156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 16), + [6158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 16), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [6162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [6164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2216), + [6167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8112), + [6170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9088), + [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [6175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7974), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9106), + [6183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 16), + [6185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 16), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [6189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type, 2, -1, 0), + [6191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type, 2, -1, 0), + [6193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 2, 0, 22), + [6195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 2, 0, 22), + [6197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 1, 0, 0), + [6199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 1, 0, 0), + [6201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2267), + [6204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7959), + [6207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9103), + [6210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), + [6212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), + [6214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 2, 0, 0), + [6216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 2, 0, 0), + [6218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 1, 0, 0), + [6220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 1, 0, 0), + [6222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 0), + [6224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 0), + [6226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 0), + [6228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 0), + [6230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declarator, 1, 0, 0), + [6232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declarator, 1, 0, 0), + [6234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, 0, 75), + [6236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, 0, 75), + [6238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2, 0, 0), + [6240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2, 0, 0), + [6242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 8), + [6244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 8), + [6246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [6248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [6250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 2, 0, 0), + [6252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 2, 0, 0), + [6254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration_item, 2, 0, 10), + [6256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration_item, 2, 0, 10), + [6258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration_item, 2, 0, 5), + [6260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration_item, 2, 0, 5), + [6262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, 0, 142), + [6264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, 0, 142), + [6266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3, 0, 0), + [6268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3, 0, 0), + [6270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 37), + [6272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 37), + [6274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 39), + [6276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 39), + [6278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, 0, 19), + [6280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, 0, 19), + [6282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [6284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [6286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 0), + [6288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 0), + [6290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration_item, 3, 0, 40), + [6292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration_item, 3, 0, 40), + [6294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration_item, 3, 0, 8), + [6296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration_item, 3, 0, 8), + [6298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype_auto, 4, 0, 0), + [6300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype_auto, 4, 0, 0), + [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7959), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9103), + [6308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), + [6310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), + [6312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4, 0, 0), + [6314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4, 0, 0), + [6316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 80), + [6318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 80), + [6320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 38), + [6322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 38), + [6324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 82), + [6326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 82), + [6328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration_item, 4, 0, 83), + [6330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration_item, 4, 0, 83), + [6332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration_item, 4, 0, 37), + [6334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration_item, 4, 0, 37), + [6336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 0), + [6338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 0), + [6340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 117), + [6342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 117), + [6344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration_item, 5, 0, 118), + [6346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration_item, 5, 0, 118), + [6348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 96), + [6350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 96), + [6352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 19), + [6354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 19), + [6356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [6358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), + [6360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), + [6362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(8855), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9706), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), + [6371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 49), + [6373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 49), + [6375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 77), + [6377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 77), + [6379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [6381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_not_binary, 1, 0, 0), SHIFT(406), + [6384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 91), + [6386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 91), + [6388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2459), + [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [6393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [6395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 114), + [6397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 114), + [6399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 9), + [6401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 9), + [6403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), + [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7956), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9102), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [6411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9848), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [6415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [6419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [6421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), + [6423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [6425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [6433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_not_binary, 1, 0, 0), SHIFT(359), + [6436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7913), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9097), + [6444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), + [6446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 9), SHIFT(428), + [6449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2476), + [6452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 3, 0, 138), + [6454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 3, 0, 138), + [6456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2479), + [6459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7956), + [6462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9102), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [6467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_not_binary, 1, 0, 0), SHIFT(397), + [6470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [6474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2499), + [6477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7951), + [6480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9101), + [6483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), + [6485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), + [6487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 4, 0, 138), + [6489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 4, 0, 138), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6974), + [6493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), + [6495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), + [6497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [6499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), + [6501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 9), SHIFT(387), + [6504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 2, 0, 0), + [6506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 2, 0, 0), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [6510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [6512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [6514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 9), + [6516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 9), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6923), + [6520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 38), + [6522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 38), + [6524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [6526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2628), + [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6959), + [6535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), + [6541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4902), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [6545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2524), + [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [6550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_method, 2, 0, 15), + [6552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_method, 2, 0, 15), + [6554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_field_identifier, 2, 0, 0), + [6556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_field_identifier, 2, 0, 0), + [6558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), + [6560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), + [6562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_defined_literal, 2, 0, 0), + [6564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_defined_literal, 2, 0, 0), + [6566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 2, 0, 0), + [6568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 2, 0, 0), + [6570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 4, 0, 0), + [6572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 4, 0, 0), + [6574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 57), + [6576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 57), + [6578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [6580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [6582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 6, 0, 151), + [6584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 6, 0, 151), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9746), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6938), + [6590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 176), + [6592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 176), + [6594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 177), + [6596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 177), + [6598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2663), + [6601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), + [6603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), + [6605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8, 0, 0), + [6607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8, 0, 0), + [6609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 183), + [6611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 183), + [6613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 184), + [6615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 184), + [6617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [6619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [6621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [6623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [6625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9, 0, 0), + [6627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9, 0, 0), + [6629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2557), + [6632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), + [6634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), + [6636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, 0, 187), + [6638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, 0, 187), + [6640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 3, 0, 0), + [6642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 3, 0, 0), + [6644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), + [6646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), + [6648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), + [6654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 139), + [6656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 139), + [6658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 2, 0, 7), + [6660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 2, 0, 7), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9651), + [6664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 9), SHIFT(431), + [6667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), + [6669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [6671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [6673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 24), + [6675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 24), + [6677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_clause, 2, 0, 18), + [6679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_clause, 2, 0, 18), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), + [6685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6375), + [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6395), + [6689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 45), + [6691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 45), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9727), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [6697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 48), + [6699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 48), + [6701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, 0, 162), + [6703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, 0, 162), + [6705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_deep_ellipsis, 3, 0, 0), + [6707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_deep_ellipsis, 3, 0, 0), + [6709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), + [6711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), + [6713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_identifier, 2, 0, 0), + [6715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_identifier, 2, 0, 0), + [6717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 6), + [6719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 6), + [6721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 164), + [6723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 164), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9924), + [6729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 2, 0, 25), + [6731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 2, 0, 25), + [6733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, 0, 73), + [6735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, 0, 73), + [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [6739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 76), + [6741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 76), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [6745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [6747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), + [6749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), + [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [6753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_disjunction, 3, 0, 45), + [6755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_disjunction, 3, 0, 45), + [6757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 5, 0, 128), + [6759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 5, 0, 128), + [6761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 165), + [6763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 165), + [6765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 130), + [6767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 130), + [6769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 131), + [6771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 131), + [6773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [6775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, 0, 36), + [6777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, 0, 36), + [6779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, 0, 87), + [6781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, 0, 87), + [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), + [6785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 89), + [6787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 89), + [6789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 90), + [6791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 90), + [6793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2654), + [6796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 3, 0, 0), + [6798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 3, 0, 0), + [6800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 112), + [6802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 112), + [6804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 113), + [6806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 113), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9828), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), + [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5006), + [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [6820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2689), + [6823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [6825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6942), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6997), + [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [6839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), + [6845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5025), + [6847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2736), + [6850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8031), + [6853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9083), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [6862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), + [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9452), + [6866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2746), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [6873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 3, 0, 88), + [6875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 3, 0, 88), + [6877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), + [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [6881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [6883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 9), SHIFT(382), + [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9764), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [6898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 2, 0, 44), + [6900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 2, 0, 44), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9815), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [6912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 4, 0, 132), + [6914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 4, 0, 132), + [6916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 6, 0, 0), + [6918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 6, 0, 0), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [6926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [6928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 4, 0, 0), + [6930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 4, 0, 0), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9798), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [6936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2806), + [6939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_requirement, 2, 0, 0), + [6941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_requirement, 2, 0, 0), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6914), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6922), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [6951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement, 1, 0, 0), + [6953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement, 1, 0, 0), + [6955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 5, 0, 0), + [6957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 5, 0, 0), + [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [6961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), + [6963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), + [6965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 9), SHIFT(406), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10026), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6921), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6978), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [6982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 9), SHIFT(428), + [6985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2848), + [6988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 9), SHIFT(397), + [6991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [6995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 3), + [6997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 3), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7468), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7468), + [7005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 3), + [7007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 3), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [7011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, 0, 11), + [7013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, 0, 11), + [7015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_await_expression, 2, 0, 3), + [7017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_await_expression, 2, 0, 3), + [7019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 45), + [7021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 45), + [7023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 73), + [7025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 73), + [7027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, 0, 3), + [7029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, 0, 3), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6926), + [7043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7502), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7502), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [7049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 57), SHIFT(402), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8928), + [7056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [7060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 4, 0, 0), + [7062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 4, 0, 0), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [7068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [7070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [7072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [7076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [7082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [7084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [7086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [7090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 143), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [7094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 143), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [7098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 3, 0, 60), + [7100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 60), + [7102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 60), SHIFT(387), + [7105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 5, 0, 0), + [7107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 5, 0, 0), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6977), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6956), + [7113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 9), SHIFT(413), + [7116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 3, 0, 0), + [7118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 3, 0, 0), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9407), + [7128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 2, 0, 0), + [7130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 2, 0, 0), + [7132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, 0, 97), + [7134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, 0, 97), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [7138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 57), SHIFT(387), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9374), + [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [7159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [7177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [7183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), + [7185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7965), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6403), + [7193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6392), + [7195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6403), + [7197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), + [7199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), + [7201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 60), SHIFT(428), + [7204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 9), SHIFT(431), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6913), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6918), + [7211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(8928), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [7216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [7218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [7224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [7228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [7232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [7236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [7244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [7246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [7248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [7252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7494), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7494), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [7258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9380), + [7264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_fold_operator, 3, 0, 0), + [7266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_fold_operator, 3, 0, 0), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [7274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [7282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [7284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [7286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [7290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [7294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [7298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [7308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [7310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [7318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7471), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7509), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [7326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9884), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [7334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9343), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8880), + [7346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9332), + [7356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_specifiers, 1, 0, 1), + [7358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_specifiers, 1, 0, 1), + [7360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), + [7362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9814), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [7366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9621), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6983), + [7374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fold_operator, 1, 0, 0), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [7380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9413), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [7388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6430), + [7392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6430), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9243), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [7402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9977), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [7410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_specifiers, 2, 0, 16), + [7412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_specifiers, 2, 0, 16), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6427), + [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6427), + [7418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 60), SHIFT(431), + [7421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(8880), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8913), + [7428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [7432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 57), SHIFT(431), + [7435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_specifiers, 2, 0, 1), + [7437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_specifiers, 2, 0, 1), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7471), + [7441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [7451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [7453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [7457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [7461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [7463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [7465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [7471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_virtual, 1, 0, 0), + [7473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_virtual, 1, 0, 0), + [7475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), + [7477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [7479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [7485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [7487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [7489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [7493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [7497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [7503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [7505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9410), + [7515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [7521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_specifiers, 3, 0, 16), + [7523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_specifiers, 3, 0, 16), + [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6411), + [7527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6411), + [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8900), + [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [7535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 60), SHIFT(355), + [7538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(8913), + [7541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3397), + [7544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7977), + [7547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9107), + [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [7552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6777), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), + [7556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6383), + [7558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), + [7560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), + [7562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4579), + [7565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4541), + [7568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(9480), + [7571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(9019), + [7574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(9482), + [7577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4518), + [7580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(9489), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [7585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 60), SHIFT(451), + [7588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 57), SHIFT(382), + [7591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9840), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [7597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [7599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [7605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [7609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [7613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [7615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [7621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [7623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [7631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7482), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7482), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [7639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [7641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [7647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [7649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [7651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [7655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [7659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [7661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [7675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 60), SHIFT(416), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6718), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), + [7682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), + [7684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 9), SHIFT(397), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), + [7689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [7691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [7701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), + [7705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1076), + [7708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), + [7710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [7714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(3859), + [7717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [7719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [7725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(8900), + [7728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 60), SHIFT(382), + [7731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3990), + [7733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [7735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), + [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [7739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3662), + [7742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7974), + [7745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9106), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6939), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [7756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9908), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6156), + [7764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6156), + [7766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), + [7768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [7770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [7776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [7778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [7780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [7784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [7788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [7794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [7796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [7804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7483), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7483), + [7808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7669), + [7810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [7814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [7818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 60), SHIFT(406), + [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), + [7825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6207), + [7827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7650), + [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), + [7833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6175), + [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6401), + [7837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6401), + [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), + [7843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6073), + [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), + [7847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6422), + [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), + [7853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6061), + [7855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3792), + [7858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7946), + [7861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9100), + [7864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 57), SHIFT(406), + [7867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator_seq, 1, 0, 20), + [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6445), + [7871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6445), + [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9582), + [7877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator_seq, 1, 0, 20), + [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7714), + [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), + [7883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 1, 0, 20), SHIFT(7078), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6616), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9524), + [7890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 1, 0, 20), SHIFT(6373), + [7893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3833), + [7896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), + [7898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [7900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7666), + [7902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), + [7904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), + [7906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(3976), + [7909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3864), + [7911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), + [7913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7685), + [7915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7702), + [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [7919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7663), + [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7078), + [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), + [7925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [7927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [7933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [7935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [7937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [7941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [7945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [7949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [7951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [7959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), + [7961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1075), + [7964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), + [7966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4552), + [7968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), + [7970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4566), + [7972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), + [7974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), + [7976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4576), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9590), + [7980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [7982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [7984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [7986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 0), + [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [7995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [7997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [7999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [8003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [8015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3964), + [8018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7913), + [8021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9097), + [8024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), + [8026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignas_specifier, 4, 0, 0), + [8028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignas_specifier, 4, 0, 0), + [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), + [8032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 1, 0, 20), SHIFT(9679), + [8035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 1, 0, 20), SHIFT(8831), + [8038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5721), + [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), + [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), + [8044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), + [8046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), + [8048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 57), SHIFT(397), + [8051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3980), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6408), + [8056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6408), + [8058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 60), SHIFT(397), + [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [8065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, 0, 0), + [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), + [8069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), + [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [8075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 1, 0, 20), SHIFT(6878), + [8078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 1, 0, 20), SHIFT(6425), + [8081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9844), + [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [8085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 9), SHIFT(423), + [8088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), + [8090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), + [8092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), + [8094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_constructor_specifiers, 1, 0, 0), REDUCE(aux_sym_declaration_specifiers_repeat1, 1, 0, 0), + [8097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_specifiers, 1, 0, 0), + [8099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_specifiers, 1, 0, 0), + [8101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constructor_specifiers, 1, 0, 0), REDUCE(aux_sym_declaration_specifiers_repeat1, 1, 0, 0), + [8104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 1, 0, 0), + [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9338), + [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [8116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), + [8118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), + [8120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4579), + [8123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4541), + [8126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(9480), + [8129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(9019), + [8132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(9482), + [8135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4518), + [8138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(9489), + [8141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5026), + [8144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), + [8146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2161), + [8149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4028), + [8152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(9582), + [8155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8802), + [8158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(9529), + [8161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3344), + [8164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(9324), + [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), + [8171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6380), + [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [8181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), + [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), + [8185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6368), + [8187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 9), SHIFT(407), + [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9295), + [8192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 1, 0, 20), SHIFT(9019), + [8195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 1, 0, 20), SHIFT(7714), + [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [8200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 1, 0, 20), SHIFT(6396), + [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6961), + [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6972), + [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9679), + [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), + [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), + [8215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [8217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(4299), + [8220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), + [8222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), + [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [8226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4195), + [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6948), + [8231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7001), + [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6366), + [8235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6366), + [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6925), + [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), + [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), + [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9251), + [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [8251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), + [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [8255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), + [8257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), + [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), + [8261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 1, 0, 20), SHIFT(6393), + [8264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4301), + [8267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), + [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [8271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4667), + [8273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9438), + [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [8277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 1, 0, 20), SHIFT(6367), + [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), + [8282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 9), SHIFT(425), + [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), + [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9234), + [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), + [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6434), + [8305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 1, 0, 20), SHIFT(6434), + [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6928), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7000), + [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9781), + [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [8320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4802), + [8322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9445), + [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8831), + [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), + [8330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 1, 0, 20), SHIFT(6385), + [8333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4679), + [8335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), + [8337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4678), + [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), + [8341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declarator, 1, 0, 0), + [8343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [8345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5716), + [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6642), + [8349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [8351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [8353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7117), + [8355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6140), + [8357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6141), + [8359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6145), + [8361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6033), + [8363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4497), + [8366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6265), + [8368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6304), + [8370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6353), + [8372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7124), + [8374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6161), + [8376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6162), + [8378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6166), + [8380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4990), + [8382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9683), + [8384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6044), + [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), + [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), + [8390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5858), + [8392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5100), + [8394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5573), + [8396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7170), + [8398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6123), + [8400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6124), + [8402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6126), + [8404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9818), + [8406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5985), + [8408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6951), + [8410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4945), + [8412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7140), + [8414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6191), + [8416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6194), + [8418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6200), + [8420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5939), + [8422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 1, 0, 20), SHIFT(6379), + [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [8427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), + [8429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5516), + [8431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5760), + [8433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7164), + [8435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6101), + [8437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6106), + [8439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6109), + [8441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6135), + [8443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9837), + [8445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6006), + [8447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5816), + [8449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [8451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 9), SHIFT(392), + [8454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), + [8456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [8458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4941), + [8460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7158), + [8462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6087), + [8464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6096), + [8466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6099), + [8468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5992), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7003), + [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), + [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6909), + [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), + [8484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 9), SHIFT(359), + [8487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [8491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [8497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [8501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [8505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [8513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [8515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [8517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [8519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8169), + [8527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, 0, 0), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), + [8531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4744), + [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6991), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6969), + [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9529), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9814), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9324), + [8557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, 0, 116), + [8559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, 0, 116), + [8561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 1, 0, 0), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6951), + [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9289), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), + [8577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4558), + [8579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), + [8581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [8585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [8587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [8591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6397), + [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6420), + [8605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6397), + [8607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6420), + [8609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [8613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [8619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [8623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [8627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [8635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [8637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [8639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [8641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), + [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), + [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [8649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7368), + [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7410), + [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6714), + [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6758), + [8659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6758), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [8665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [8673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7742), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6788), + [8679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6788), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6755), + [8683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [8687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [8693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [8697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [8701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [8717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, 0, 1), + [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), + [8725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6351), + [8727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), + [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9620), + [8733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 16), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6348), + [8739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6348), + [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6347), + [8747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6347), + [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [8753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), + [8755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), + [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), + [8761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6361), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), + [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), + [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9426), + [8771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5004), + [8773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9620), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), + [8777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2161), + [8780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4028), + [8783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(9582), + [8786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8691), + [8789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(9529), + [8792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3344), + [8795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(9324), + [8798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_right_fold, 3, 0, 45), + [8800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_attributes_start, 1, 0, 0), + [8802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_attributes_start, 1, 0, 0), + [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), + [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), + [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6424), + [8814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6416), + [8816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6424), + [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [8820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [8824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [8830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [8834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [8838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7673), + [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [8854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 4, 0, 0), + [8856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 4, 0, 0), + [8858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4983), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), + [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [8877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [8881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [8887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [8891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [8895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [8899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [8935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 1, 0, 0), + [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [8939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 1, 0, 0), + [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), + [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), + [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), + [8961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 115), SHIFT(1238), + [8964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 115), + [8966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT(1238), + [8969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, 0, 72), + [8971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), + [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), + [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), + [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), + [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), + [8999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2, 0, 0), + [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [9011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, 0, 92), + [9013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 4, 0, 156), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), + [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), + [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7479), + [9063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5479), + [9065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4982), + [9067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5509), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7701), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9378), + [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), + [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [9099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 4, 0, 146), + [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6418), + [9105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6418), + [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), + [9111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6417), + [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7534), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [9119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6945), + [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), + [9125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6285), + [9127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6270), + [9129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2, 0, 0), + [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [9133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 4, 0, 146), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [9137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), + [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6994), + [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [9143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), + [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6995), + [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), + [9149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement_body, 3, 0, 123), + [9151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), + [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6943), + [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), + [9157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement_body, 3, 0, 125), + [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), + [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6516), + [9165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6516), + [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [9171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 1, 0), + [9173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 1), + [9175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement_body, 5, 0, 172), + [9177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 16), + [9179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 3, 0, 134), + [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [9185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7297), + [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6986), + [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), + [9191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), + [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6970), + [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), + [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), + [9199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7169), + [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9819), + [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [9207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_argument_list_repeat1, 2, 0, 0), + [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), + [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [9213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement_body, 4, 0, 158), + [9215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement_body, 4, 0, 160), + [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7167), + [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9209), + [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), + [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7192), + [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9143), + [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [9233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 3, 0, 0), + [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7193), + [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9163), + [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7196), + [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9802), + [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), + [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9138), + [9247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4, 0, 0), + [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7199), + [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9526), + [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7201), + [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9794), + [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), + [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9433), + [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), + [9273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement_body, 4, 0, 157), + [9275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_range_loop_body, 4, 0, 159), + [9277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [9281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [9287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [9291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [9295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7877), + [9317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_semgrep_ellipsis, 1, 0, 0), SHIFT(1917), + [9320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_semgrep_ellipsis, 1, 0, 0), SHIFT(5606), + [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [9333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5713), + [9335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [9339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [9345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [9349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [9353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), + [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [9371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2161), + [9374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2161), + [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8238), + [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [9393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_left_fold, 3, 0, 45), + [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), + [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), + [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), + [9425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6636), + [9427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression_lhs_expression, 3, 0, 45), + [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [9431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5418), + [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), + [9442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_fold, 3, 0, 72), + [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6626), + [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), + [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), + [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), + [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8642), + [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), + [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), + [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), + [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), + [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), + [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), + [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), + [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), + [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [9582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5710), + [9584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5534), + [9586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5709), + [9588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_range_loop_body, 5, 0, 173), + [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6912), + [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8406), + [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8432), + [9602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_semgrep_expression, 2, 0, 0), + [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), + [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [9616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5721), + [9619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5721), + [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), + [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), + [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), + [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), + [9640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator_seq, 2, 0, 20), + [9642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator_seq, 2, 0, 20), + [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), + [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6708), + [9648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6708), + [9650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), + [9652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), + [9654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(9679), + [9657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 2, 0, 20), SHIFT(7078), + [9660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 2, 0, 20), SHIFT(6373), + [9663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(9582), + [9666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_attributes_start, 2, 0, 0), + [9668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_attributes_start, 2, 0, 0), + [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9195), + [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), + [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), + [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10091), + [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), + [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6798), + [9684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6798), + [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6359), + [9688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6359), + [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), + [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7009), + [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6989), + [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), + [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6802), + [9700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6802), + [9702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 2, 0, 20), SHIFT(9679), + [9705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 2, 0, 20), SHIFT(8831), + [9708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 2, 0, 20), SHIFT(6878), + [9711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 2, 0, 20), SHIFT(6425), + [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), + [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6378), + [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), + [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), + [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9836), + [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5705), + [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [9734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), + [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8547), + [9738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1, 0, 0), + [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6034), + [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6919), + [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6992), + [9746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 2, 0, 20), SHIFT(7714), + [9749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 2, 0, 20), SHIFT(9019), + [9752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 2, 0, 20), SHIFT(6396), + [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), + [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6846), + [9759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6846), + [9761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), + [9763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), + [9765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(5969), + [9768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(5970), + [9771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), + [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6002), + [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6936), + [9777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6936), + [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [9781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator_seq, 3, 0, 20), + [9783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator_seq, 3, 0, 20), + [9785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 3, 0, 20), SHIFT(7078), + [9788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 3, 0, 20), SHIFT(6373), + [9791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5815), + [9793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 2, 0, 20), SHIFT(6393), + [9796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 2, 0, 20), SHIFT(6367), + [9799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), + [9801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), + [9803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), + [9805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7168), + [9807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6112), + [9809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6113), + [9811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6117), + [9813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4619), + [9815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9841), + [9817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6020), + [9819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [9821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [9823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [9825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7149), + [9827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6118), + [9829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6129), + [9831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6154), + [9833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [9835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9730), + [9837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), + [9839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), + [9841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7121), + [9843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6171), + [9845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6172), + [9847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6173), + [9849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), + [9851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), + [9853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), + [9855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4412), + [9857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7177), + [9859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6130), + [9861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6211), + [9863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6134), + [9865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4804), + [9867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9845), + [9869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6041), + [9871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), + [9873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), + [9875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), + [9877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7116), + [9879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6189), + [9881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6206), + [9883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6209), + [9885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), + [9887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9784), + [9889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5960), + [9891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [9893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [9895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [9897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7178), + [9899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6168), + [9901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6169), + [9903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6170), + [9905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5997), + [9907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [9909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [9911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [9913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7181), + [9915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6139), + [9917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6146), + [9919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6147), + [9921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [9923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9849), + [9925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5930), + [9927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [9929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [9931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), + [9933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7179), + [9935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6108), + [9937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6121), + [9939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6148), + [9941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), + [9943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9709), + [9945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6016), + [9947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [9949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), + [9951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), + [9953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7128), + [9955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6177), + [9957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6178), + [9959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6179), + [9961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), + [9963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9801), + [9965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6037), + [9967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 2, 0, 20), SHIFT(6434), + [9970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4602), + [9972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4460), + [9974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4768), + [9976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7119), + [9978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6188), + [9980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6111), + [9982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6119), + [9984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5299), + [9986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9767), + [9988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5989), + [9990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym_argument_list, 2, 0, 0), + [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), + [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7063), + [9997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7063), + [9999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 3, 0, 20), SHIFT(9679), + [10002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 3, 0, 20), SHIFT(8831), + [10005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 3, 0, 20), SHIFT(6878), + [10008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 3, 0, 20), SHIFT(6425), + [10011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), + [10013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), + [10015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), + [10017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7147), + [10019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6064), + [10021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6068), + [10023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6072), + [10025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), + [10027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9830), + [10029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), + [10031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4467), + [10033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7176), + [10035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6046), + [10037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6047), + [10039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6053), + [10041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6000), + [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6976), + [10045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 3, 0, 20), SHIFT(9019), + [10048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 3, 0, 20), SHIFT(6396), + [10051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 3, 0, 20), SHIFT(7714), + [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), + [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6856), + [10058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6856), + [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), + [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7165), + [10064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7165), + [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6929), + [10068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 2, 0, 20), SHIFT(6385), + [10071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5664), + [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7005), + [10076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 3, 0, 20), SHIFT(6367), + [10079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), + [10081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), + [10083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), + [10085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), + [10087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 2, 0, 20), SHIFT(6379), + [10090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1067), + [10093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5664), + [10096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 3, 0, 20), SHIFT(6393), + [10099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), + [10101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), + [10103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5803), + [10105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6927), + [10107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [10109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4942), + [10111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6285), + [10114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6270), + [10117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5413), + [10119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [10121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4656), + [10123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), + [10125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [10127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4244), + [10129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), + [10131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6931), + [10133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5756), + [10135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 3, 0, 20), SHIFT(6434), + [10138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [10140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5763), + [10142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), + [10144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5877), + [10146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [10148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), + [10150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [10152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), + [10154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator_seq, 4, 0, 20), + [10156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator_seq, 4, 0, 20), + [10158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 4, 0, 20), SHIFT(7078), + [10161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 4, 0, 20), SHIFT(6373), + [10164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9019), + [10167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 3, 0, 20), SHIFT(6385), + [10170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 3, 0, 20), SHIFT(6379), + [10173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 4, 0, 20), SHIFT(9679), + [10176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 4, 0, 20), SHIFT(8831), + [10179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 4, 0, 20), SHIFT(6878), + [10182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 4, 0, 20), SHIFT(6425), + [10185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6279), + [10187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 4, 0, 20), SHIFT(7714), + [10190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 4, 0, 20), SHIFT(9019), + [10193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 4, 0, 20), SHIFT(6396), + [10196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 16), SHIFT(2848), + [10199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 1), SHIFT(2848), + [10202] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT(2848), + [10206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 1), SHIFT(2848), + [10209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 16), SHIFT(6297), + [10212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition_type, 2, 0, 16), + [10214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition_type, 2, 0, 16), + [10216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 16), SHIFT(2848), + [10219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 16), SHIFT(6278), + [10222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition_type, 1, 0, 1), + [10224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition_type, 1, 0, 1), + [10226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(6298), + [10229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(6280), + [10232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(6294), + [10235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [10237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [10239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5682), + [10241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7853), + [10243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [10245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [10247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4071), + [10249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7865), + [10251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [10253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [10255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [10257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8004), + [10259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [10261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [10263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), + [10265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7998), + [10267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [10269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [10271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [10273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7931), + [10275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [10277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [10279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), + [10281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7842), + [10283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 4, 0, 20), SHIFT(6367), + [10286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 4, 0, 20), SHIFT(6393), + [10289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [10291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [10293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4433), + [10295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8065), + [10297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(6359), + [10300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(6359), + [10303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [10305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [10307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4829), + [10309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7907), + [10311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [10313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [10315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4955), + [10317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7919), + [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [10321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [10323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), + [10325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8092), + [10327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [10329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [10331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), + [10333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8122), + [10335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 4, 0, 20), SHIFT(6434), + [10338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(6292), + [10341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 4, 0, 20), SHIFT(6385), + [10344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition_type, 3, 0, 16), + [10346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition_type, 3, 0, 16), + [10348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition_type, 2, 0, 1), + [10350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition_type, 2, 0, 1), + [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [10356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_attributes_end, 2, 0, 0), + [10358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_attributes_end, 2, 0, 0), + [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [10364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7006), + [10366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7886), + [10368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [10372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [10374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8041), + [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [10382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6749), + [10384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8176), + [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [10388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4780), + [10390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8418), + [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [10396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9477), + [10400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8443), + [10402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [10412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_expression, 1, 0, 0), + [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6464), + [10416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_expression, 1, 0, 0), + [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [10424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8858), + [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8914), + [10442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 4, 0, 20), SHIFT(6379), + [10445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4904), + [10447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8215), + [10449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [10451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_attributes_end, 1, 0, 0), + [10453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_attributes_end, 1, 0, 0), + [10455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [10459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8901), + [10463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [10465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [10467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8929), + [10473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_qualifier, 1, 0, 0), + [10475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_qualifier, 1, 0, 0), + [10477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6458), + [10479] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [10481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6406), + [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6676), + [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6587), + [10487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8805), + [10489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6589), + [10491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6589), + [10493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6611), + [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8404), + [10497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), + [10499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), + [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6579), + [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6661), + [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6662), + [10507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6662), + [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6663), + [10511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6664), + [10513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6666), + [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6667), + [10517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6668), + [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6669), + [10521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6670), + [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6670), + [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6671), + [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6784), + [10529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7555), + [10531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8382), + [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9941), + [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9952), + [10537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9917), + [10541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8557), + [10543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [10545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [10547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [10549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 45), + [10551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 45), + [10553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), + [10555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), + [10557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6450), + [10559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6625), + [10561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8703), + [10563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), + [10565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6610), + [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6706), + [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8189), + [10571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), + [10573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8209), + [10575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), + [10577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), + [10579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [10581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9682), + [10583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8458), + [10585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [10587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), + [10589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8240), + [10591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9308), + [10595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8526), + [10597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), + [10599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4789), + [10601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8219), + [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), + [10605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [10607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_declarator, 1, 0, 19), + [10609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [10611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [10613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [10615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7745), + [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8835), + [10619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8755), + [10621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 5, 0, 0), + [10623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 5, 0, 0), + [10625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), + [10627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9491), + [10629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8597), + [10631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [10633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 1, 0, 0), + [10635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [10637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 1, 0, 0), + [10639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [10641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9030), + [10643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_exception_specification, 1, 0, 0), + [10645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_exception_specification, 1, 0, 0), + [10647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [10649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8360), + [10651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [10653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [10655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 4, 0, 0), + [10657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 4, 0, 0), + [10659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [10661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(8831), + [10664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [10666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8441), + [10668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9334), + [10672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8482), + [10674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [10676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [10680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8806), + [10682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), + [10684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8646), + [10686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [10688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8760), + [10690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 4, 0, 0), + [10692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 4, 0, 0), + [10694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 3, 0, 0), + [10696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 3, 0, 0), + [10698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 3, 0, 0), + [10700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 3, 0, 0), + [10702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_attributes_end, 3, 0, 0), + [10704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_attributes_end, 3, 0, 0), + [10706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [10708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [10710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8296), + [10712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [10714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8575), + [10716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [10718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [10720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, 0, 6), + [10722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, 0, 6), + [10724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4529), + [10726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8598), + [10728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [10730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8293), + [10732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [10734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [10736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [10738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 3), + [10740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 3), + [10742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [10744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9603), + [10746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8619), + [10748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), + [10750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [10752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8445), + [10754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [10756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [10758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [10760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6588), + [10762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6590), + [10764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6581), + [10766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6629), + [10768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6672), + [10770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6674), + [10772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6580), + [10774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6608), + [10776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6609), + [10778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6612), + [10780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7821), + [10782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator_seq, 6, 0, 20), + [10784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator_seq, 6, 0, 20), + [10786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator_seq, 5, 0, 20), + [10788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator_seq, 5, 0, 20), + [10790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 5, 0, 20), SHIFT(6878), + [10793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 5, 0, 20), SHIFT(6425), + [10796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 5, 0, 20), SHIFT(6396), + [10799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_postfix_repeat1, 2, 0, 0), + [10801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_postfix_repeat1, 2, 0, 0), + [10803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(6878), + [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), + [10808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6998), + [10810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8545), + [10812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6432), + [10814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [10816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7585), + [10818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8500), + [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6577), + [10822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [10824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), + [10826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [10828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [10830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [10832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [10834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7398), + [10836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 6, 0, 20), SHIFT(6878), + [10839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 6, 0, 20), SHIFT(6425), + [10842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), + [10844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7439), + [10846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_postfix, 1, 0, 0), + [10848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_postfix, 1, 0, 0), + [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6795), + [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7643), + [10854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [10856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [10858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 6, 0, 20), SHIFT(6396), + [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [10863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7894), + [10865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8326), + [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7629), + [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7611), + [10871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [10875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 5, 0, 20), SHIFT(7078), + [10878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 5, 0, 20), SHIFT(6373), + [10881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator_seq, 7, 0, 20), + [10883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator_seq, 7, 0, 20), + [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [10891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 144), + [10893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 144), + [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [10907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), + [10909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), + [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [10915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(7078), + [10918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, 0, 19), + [10920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 2, 0, 19), + [10922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [10924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 19), + [10926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 19), + [10928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_return_type, 2, 0, 0), + [10930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trailing_return_type, 2, 0, 0), + [10932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [10934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [10936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [10938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_virtual_specifier, 1, 0, 0), + [10940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_virtual_specifier, 1, 0, 0), + [10942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 96), + [10944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 96), + [10946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), + [10948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), + [10950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 99), + [10952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 99), + [10954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), + [10956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), + [10958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [10960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 19), + [10962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 19), + [10964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_declarator, 1, 0, 0), + [10966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_declarator, 1, 0, 0), + [10968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, 0, 0), + [10970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 1, 0, 0), + [10972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, 0, 142), + [10974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 5, 0, 142), + [10976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), + [10978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 6, 0, 20), SHIFT(7078), + [10981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 6, 0, 20), SHIFT(6373), + [10984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4418), + [10986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [10988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8627), + [10990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6584), + [10992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9914), + [10994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9919), + [10996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [10998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8947), + [11000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [11002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), + [11004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9009), + [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [11010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9086), + [11012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), + [11014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8959), + [11016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [11018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), + [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), + [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8886), + [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9013), + [11028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [11030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [11032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [11034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [11036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [11038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [11040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [11042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8789), + [11044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6055), + [11046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6277), + [11048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), + [11050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8708), + [11052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5736), + [11054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4925), + [11056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5441), + [11058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(6935), + [11061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7927), + [11064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9098), + [11067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8682), + [11071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [11073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [11075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), + [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8788), + [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9067), + [11085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [11087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8821), + [11089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), + [11091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), + [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8670), + [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8810), + [11101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), + [11103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), + [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), + [11107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8727), + [11109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [11111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9048), + [11113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [11115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8747), + [11117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6981), + [11119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7927), + [11121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9098), + [11123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), + [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8935), + [11127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 5, 0, 20), SHIFT(6393), + [11130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), + [11132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4638), + [11134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_declarator_repeat1, 2, 0, 4), + [11136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [11138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), + [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8664), + [11144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5529), + [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8909), + [11150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), + [11152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [11154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9008), + [11158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6935), + [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8694), + [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7034), + [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8654), + [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6382), + [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8720), + [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), + [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8932), + [11180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), + [11182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5727), + [11184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), + [11186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), + [11188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), + [11190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), + [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), + [11194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8791), + [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [11198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9029), + [11200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6372), + [11202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), + [11204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8716), + [11206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), + [11208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7481), + [11210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [11212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [11214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), + [11216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 5, 0, 20), SHIFT(6367), + [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), + [11221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8997), + [11223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [11225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8711), + [11227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), + [11229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [11231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7659), + [11233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [11235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 33), + [11237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [11241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 4), + [11243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 2, 0, 0), + [11245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [11247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 71), + [11249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 49), + [11251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 34), + [11253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, 0, 111), + [11255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [11257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), + [11259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [11261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), + [11263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [11265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [11267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7789), + [11269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7671), + [11271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), + [11273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), + [11275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(9480), + [11278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), + [11280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(9489), + [11283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7638), + [11285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7634), + [11287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7791), + [11289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6614), + [11291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9576), + [11293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9656), + [11295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [11297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), + [11299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 4), + [11301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7619), + [11305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [11307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(8691), + [11310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7375), + [11312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7314), + [11314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7327), + [11316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7324), + [11318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7322), + [11320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7361), + [11322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7325), + [11324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, 1, 141), + [11326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 6, 0, 20), SHIFT(6367), + [11329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, 1, 34), + [11331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, 1, 4), + [11333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7333), + [11335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7341), + [11337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_declarator, 2, 1, 0), + [11339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7321), + [11341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 5, 0, 20), SHIFT(6434), + [11344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7387), + [11346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8627), + [11349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(178), + [11352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6586), + [11355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9891), + [11358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9909), + [11361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8674), + [11364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), + [11366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9911), + [11369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7347), + [11371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2, 0, 0), + [11373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2, 0, 0), + [11375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7352), + [11377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7354), + [11379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7356), + [11381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, 1, 74), + [11383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7380), + [11385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7363), + [11387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7369), + [11389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7367), + [11391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, 1, 141), + [11393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7365), + [11395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7366), + [11397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7379), + [11399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7376), + [11401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [11403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, 1, 74), + [11405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), + [11407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 6, 0, 20), SHIFT(6393), + [11410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, 1, 34), + [11412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, 1, 4), + [11414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7362), + [11416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7311), + [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6413), + [11420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_field_declarator, 2, 1, 0), + [11422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, 0, 19), + [11424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, 0, 19), + [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10040), + [11428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 96), + [11430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 96), + [11432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, 0, 142), + [11434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, 0, 142), + [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9904), + [11438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8817), + [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7072), + [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8061), + [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [11450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8772), + [11452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8044), + [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8920), + [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8095), + [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9623), + [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9065), + [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7996), + [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9191), + [11474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 4, -1, 0), + [11476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 4, -1, 0), + [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [11480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [11482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8885), + [11484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8080), + [11486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, 1, 19), + [11488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, 1, 19), + [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [11492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 5, 0, 20), SHIFT(6379), + [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [11497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8868), + [11499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8074), + [11501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [11503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8846), + [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8067), + [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [11509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8904), + [11513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8087), + [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9122), + [11517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [11519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8952), + [11521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8134), + [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9549), + [11525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), + [11527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), + [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9894), + [11531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 3, -1, 0), + [11533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 3, -1, 0), + [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [11543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 5, 0, 20), SHIFT(6385), + [11546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [11548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9349), + [11550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [11552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 19), + [11554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 19), + [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9875), + [11558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [11560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 6, 0, 20), SHIFT(6434), + [11563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declarator, 1, 0, 0), + [11565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [11567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declarator, 1, 0, 0), + [11569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6391), + [11571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6394), + [11573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), + [11575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), + [11577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9232), + [11579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8030), + [11581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6633), + [11583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9254), + [11585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9259), + [11587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7769), + [11589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, 0, 106), + [11591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6614), + [11593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9345), + [11595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, 0, 65), + [11597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, 0, 66), + [11599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7646), + [11601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7537), + [11603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7612), + [11605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7529), + [11607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7630), + [11609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7543), + [11611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7642), + [11613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7550), + [11615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7605), + [11617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7553), + [11619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), + [11621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6429), + [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8627), + [11625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7577), + [11627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8027), + [11629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6622), + [11631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9173), + [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9174), + [11635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7640), + [11637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, 0, 142), + [11639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, 0, 142), + [11641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7604), + [11643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7554), + [11645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7649), + [11647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7625), + [11649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7568), + [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), + [11653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), + [11655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7607), + [11657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7608), + [11659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7559), + [11661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 6, 0, 20), SHIFT(6379), + [11664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 96), + [11666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 96), + [11668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), + [11670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), + [11672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 19), + [11674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 19), + [11676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, 1, 19), + [11678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, 1, 19), + [11680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7606), + [11682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, 0, 19), + [11684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, 0, 19), + [11686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7591), + [11688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7520), + [11690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator_seq, 6, 0, 20), SHIFT(6385), + [11693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), + [11695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7759), + [11697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), + [11699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7766), + [11701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_resolution, 1, 0, 0), + [11703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_resolution, 1, 0, 0), + [11705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [11707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5834), + [11709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [11711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5837), + [11713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [11715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 4), + [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [11719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [11721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), + [11723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1, 0, 0), + [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9222), + [11727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), + [11729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7736), + [11731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), + [11733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7751), + [11735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [11737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5822), + [11739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [11741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), + [11743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [11745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5855), + [11747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [11749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5832), + [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6999), + [11753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition_declarators, 1, 0, 19), + [11755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1, 0, 0), + [11757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9612), + [11759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), + [11761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7733), + [11763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [11765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5845), + [11767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [11769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [11771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [11773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5821), + [11775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), + [11777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7718), + [11779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [11781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), + [11783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [11785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [11787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), + [11789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [11791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [11793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5826), + [11795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [11797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [11799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), + [11801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [11803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), + [11805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8906), + [11807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [11809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8998), + [11811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8053), + [11813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4917), + [11815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8808), + [11817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8604), + [11819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8015), + [11821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9820), + [11823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5765), + [11825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5785), + [11827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8734), + [11829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [11831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8816), + [11833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4438), + [11835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9039), + [11837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8032), + [11839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 3, 0, 0), + [11841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 3, 0, 0), + [11843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3, 0, 0), + [11845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8100), + [11847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5414), + [11849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8990), + [11851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8593), + [11853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9548), + [11855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), + [11857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8685), + [11859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [11861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8978), + [11863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7882), + [11865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [11867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9056), + [11869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), + [11871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8753), + [11873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4186), + [11875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [11877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8828), + [11879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8325), + [11881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9606), + [11883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [11885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9007), + [11887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8130), + [11889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), + [11891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8848), + [11893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8012), + [11895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8033), + [11897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), + [11899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8884), + [11901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [11903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8977), + [11905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5757), + [11907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7844), + [11909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_declarators_repeat1, 2, 0, 4), + [11911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_resolution, 2, 0, 14), + [11913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_resolution, 2, 0, 14), + [11915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), + [11917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9071), + [11919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7968), + [11921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), + [11923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8764), + [11925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5896), + [11927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8854), + [11929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8520), + [11931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9527), + [11933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4687), + [11935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8735), + [11937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8496), + [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9293), + [11941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 104), + [11943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 104), + [11945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 29), + [11947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 29), + [11949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 67), + [11951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 67), + [11953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 65), + [11955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6633), + [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7453), + [11959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [11961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [11963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [11965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 105), + [11967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 105), + [11969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [11971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 147), + [11973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 147), + [11975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [11977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), + [11979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [11983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 66), + [11985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6622), + [11987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [11989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 66), + [11991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), + [11993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [11995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [11997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [11999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), + [12001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 68), + [12003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 68), + [12005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 64), + [12007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 64), + [12009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [12011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), + [12013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 110), + [12015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 110), + [12017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7586), + [12019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, 0, 106), + [12021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [12023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [12025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [12027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 31), + [12029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 31), + [12031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast, 3, 0, 34), + [12033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 106), + [12035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [12037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), + [12039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 65), + [12041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9701), + [12043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [12045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [12047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), SHIFT_REPEAT(7638), + [12050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), + [12052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), + [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [12056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8627), + [12059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), + [12061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), + [12063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 69), + [12065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 69), + [12067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, 0, 5), + [12069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, 0, 5), + [12071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [12073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, 0, 65), + [12075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1, 0, 0), + [12077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [12079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), + [12081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7617), + [12083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [12085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [12087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 106), + [12089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 70), + [12091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 70), + [12093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), + [12095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [12097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, 0, 66), + [12099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [12101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 109), + [12103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 109), + [12105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 6, 0, 0), + [12107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 6, 0, 0), + [12109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [12111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [12113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8317), + [12115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8228), + [12117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7798), + [12119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9505), + [12121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(1516), + [12124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), + [12126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(8317), + [12129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8213), + [12131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7849), + [12133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8403), + [12135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7241), + [12137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8857), + [12139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7994), + [12141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [12143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), + [12145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7734), + [12147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), + [12149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [12151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8270), + [12153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8171), + [12155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [12157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8109), + [12159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8001), + [12161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 4, 0, 0), + [12163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 4, 0, 0), + [12165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 5, 0, 0), + [12167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 5, 0, 0), + [12169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8196), + [12171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [12173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [12175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [12177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [12179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [12181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7136), + [12183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7899), + [12185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7221), + [12187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7139), + [12189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7141), + [12191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), + [12193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), + [12195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7114), + [12197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7150), + [12199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9052), + [12201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7153), + [12203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7154), + [12205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7157), + [12207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [12209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [12211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), + [12213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), + [12215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(7899), + [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [12222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), SHIFT_REPEAT(7769), + [12225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [12227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [12229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [12231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [12233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8801), + [12235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8683), + [12237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7184), + [12239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [12241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [12243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [12245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [12247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [12249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [12251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7194), + [12253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7145), + [12255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [12257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [12259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [12261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [12263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8890), + [12265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [12267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [12269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [12271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [12273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), + [12275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), + [12277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7123), + [12279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [12281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [12283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8729), + [12285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [12287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [12289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7127), + [12291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [12293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [12295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8740), + [12297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7212), + [12299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [12301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7131), + [12303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [12305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [12307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [12309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [12311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7134), + [12313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 4, 0, 166), + [12315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [12317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [12319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [12321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8927), + [12323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [12325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8284), + [12327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 5), + [12329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9416), + [12331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [12333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [12335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, 0, 9), + [12337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7804), + [12339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1, 0, 30), + [12341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [12343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [12345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [12347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 3, 0, 133), + [12349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [12351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [12353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [12355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8668), + [12357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8161), + [12359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [12361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [12363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8561), + [12365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [12367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [12369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [12371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [12373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [12375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [12377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8787), + [12379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [12381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_specifier, 1, 0, 0), + [12383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_specifier, 1, 0, 0), + [12385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [12387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [12389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [12391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [12393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [12395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8653), + [12397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8701), + [12399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [12401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6881), + [12403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [12405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7043), + [12407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [12409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8624), + [12411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8055), + [12413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [12415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8739), + [12417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [12419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [12421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4775), + [12423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [12425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_specifier, 1, 0, 0), + [12427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7800), + [12429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [12431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [12433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [12435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), + [12437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4425), + [12439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8257), + [12441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7863), + [12443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [12445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8070), + [12447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), + [12449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4411), + [12451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [12453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [12455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8853), + [12457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8692), + [12459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [12461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [12463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [12465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [12467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [12469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8618), + [12471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [12473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8286), + [12475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9377), + [12477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [12479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [12481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7884), + [12483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_declarators_repeat1, 2, 0, 94), SHIFT_REPEAT(6999), + [12486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_declarators_repeat1, 2, 0, 94), + [12488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [12490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), + [12492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [12494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [12496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [12498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [12500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [12502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [12504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [12506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1, 0, 0), + [12508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [12510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [12512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7905), + [12514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4787), + [12516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [12518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8785), + [12520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8790), + [12522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7507), + [12524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4439), + [12526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7918), + [12528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8941), + [12530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [12532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), + [12534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [12536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [12538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7240), + [12540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7930), + [12542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4928), + [12544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7274), + [12546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [12548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [12550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7940), + [12552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [12554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7997), + [12556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), + [12558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), + [12560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [12562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 79), + [12564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), + [12566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7948), + [12568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), + [12570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), + [12572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [12574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [12576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [12578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7953), + [12580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [12582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [12584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9420), + [12586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [12588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), + [12590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7957), + [12592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [12594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [12596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), + [12598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7961), + [12600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [12602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 174), SHIFT_REPEAT(7637), + [12605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 174), + [12607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), + [12609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7821), + [12611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4246), + [12613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7992), + [12615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4347), + [12617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7967), + [12619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4349), + [12621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [12623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [12625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [12627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7972), + [12629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [12631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9831), + [12633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [12635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), + [12637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), + [12639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7975), + [12641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), + [12643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [12645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), + [12647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7978), + [12649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), + [12651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [12653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [12655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7982), + [12657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [12659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [12661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7984), + [12663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [12665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8469), + [12667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6791), + [12669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 4, 0, 0), + [12671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition_declarators, 2, 0, 55), + [12673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7594), + [12675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, 0, 163), + [12677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5591), + [12679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), + [12681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7764), + [12683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, 0, 175), + [12685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7833), + [12687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), + [12689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [12691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8669), + [12693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8718), + [12695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7832), + [12697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8892), + [12699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8903), + [12701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [12703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8877), + [12705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8819), + [12707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [12709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [12711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [12713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9731), + [12715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8149), + [12717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [12719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [12721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2, 0, 30), + [12723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2, 0, 30), + [12725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [12727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8541), + [12729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 2, 0, 0), + [12731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [12733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8826), + [12735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9000), + [12737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [12739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1, 0, 30), + [12741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), + [12743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8038), + [12745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [12747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [12749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [12751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9635), + [12753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6591), + [12755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), + [12757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [12759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [12761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [12763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [12765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8894), + [12767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8957), + [12769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 174), SHIFT_REPEAT(7594), + [12772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 174), + [12774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [12776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [12778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [12780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9373), + [12782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), + [12784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(8624), + [12787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(8055), + [12790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, 0, 182), + [12792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), + [12794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), + [12796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [12798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [12800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(8257), + [12803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(8070), + [12806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 185), SHIFT_REPEAT(7764), + [12809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 185), + [12811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7637), + [12813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, 0, 129), + [12815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [12817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4449), + [12819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8090), + [12821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [12823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7859), + [12825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [12827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9382), + [12829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [12831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [12833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5395), + [12835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4452), + [12837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 155), SHIFT_REPEAT(6755), + [12840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 155), + [12842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [12844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [12846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8350), + [12848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 5, 0, 0), + [12850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [12852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [12854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [12856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [12858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [12860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7782), + [12862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_operator_cast_identifier, 2, 0, 9), + [12864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), + [12866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8121), + [12868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [12870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9640), + [12872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, 0, 163), + [12874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, 0, 129), + [12876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), + [12878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [12880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [12882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [12884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [12886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [12888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [12890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8016), + [12892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [12894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [12896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [12898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [12900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6736), + [12902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [12904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [12906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9401), + [12908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [12910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [12912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [12914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [12916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [12918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9943), + [12920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [12922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8175), + [12924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [12926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10049), + [12928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8184), + [12930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 3, 0, 0), + [12932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8544), + [12934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 1, 0, 0), + [12936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7817), + [12938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), + [12940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [12942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [12944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [12946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9095), + [12948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [12950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [12952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [12954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9058), + [12956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6805), + [12958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7660), + [12960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [12962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9051), + [12964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8144), + [12966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [12968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [12970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [12972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [12974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6640), + [12976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9047), + [12978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [12980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [12982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8851), + [12984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [12986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7641), + [12988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8658), + [12990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 4), + [12992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_specifier, 2, 0, 0), + [12994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), + [12996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 153), + [12998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [13000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4507), + [13003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2, 0, 0), + [13005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8779), + [13007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1339), + [13010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 2, 0, 54), + [13012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 3, 0, 119), + [13014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7809), + [13016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [13018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7493), + [13020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [13022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [13024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9116), + [13026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7710), + [13028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7285), + [13030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [13032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7477), + [13034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6804), + [13036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), + [13038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8979), + [13040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9561), + [13042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7515), + [13044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7469), + [13046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7487), + [13048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [13050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), + [13052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [13054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [13056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8822), + [13058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [13060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [13062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [13064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_namespace_specifier, 3, 0, 0), + [13066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7785), + [13068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [13070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [13072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8873), + [13074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [13076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [13078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), + [13080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 13), + [13082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 13), + [13084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [13086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [13088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [13090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [13092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [13094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [13096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [13098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [13100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), + [13102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), + [13104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), + [13106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), + [13108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), + [13110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), + [13112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), + [13114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), + [13116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1052), + [13119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [13121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9588), + [13123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8638), + [13125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9081), + [13127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [13129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [13131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [13133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [13135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [13137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [13139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_namespace_specifier, 2, 0, 0), + [13141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter_declaration, 2, 0, 4), + [13143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [13145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [13147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [13149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [13151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [13153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [13155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [13157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [13159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [13161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [13163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [13165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [13167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [13169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8768), + [13171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7995), + [13173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8623), + [13175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8524), + [13177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [13179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8837), + [13181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 5, 0, 0), + [13183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 7, 0, 0), + [13185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [13187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [13189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [13191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1923), + [13194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2, 0, 0), + [13196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [13198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6528), + [13200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8529), + [13202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7680), + [13204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [13206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8763), + [13208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 4, 0, 0), + [13210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, 0, 181), + [13212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9038), + [13214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 129), + [13216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), + [13218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [13220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), + [13222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9252), + [13224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), + [13226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [13228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), + [13230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), + [13232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [13234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7031), + [13236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [13238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 6, 0, 0), + [13240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [13242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7031), + [13245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), + [13247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9258), + [13249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, 0, 43), + [13251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8813), + [13253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7840), + [13255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), + [13257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [13259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [13261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [13263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [13265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [13267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [13269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [13271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [13273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [13275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [13277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [13279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [13281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9409), + [13283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [13285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [13287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [13289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [13291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), + [13293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8843), + [13295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7991), + [13297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8730), + [13299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8994), + [13301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7618), + [13303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), + [13305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [13307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [13309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [13311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [13313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), + [13315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [13317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [13319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [13321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [13323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [13325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [13327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6621), + [13329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [13331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [13333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4533), + [13336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), + [13338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10020), + [13340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8037), + [13342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [13344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, 0, 181), + [13346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 175), + [13348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9958), + [13350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [13352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [13354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), + [13356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9560), + [13359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2, 0, 0), + [13361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [13363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [13365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [13367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7819), + [13369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9179), + [13371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, 0, 186), + [13373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6681), + [13375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8089), + [13377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [13379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9775), + [13381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [13383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [13385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [13387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 188), SHIFT_REPEAT(9258), + [13390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 188), + [13392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), + [13394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [13396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, 0, 189), + [13398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, 0, 189), + [13400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [13402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9542), + [13404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [13406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [13408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8120), + [13410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [13412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [13414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [13416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [13418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1917), + [13421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), + [13423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [13425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [13427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [13429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1219), + [13432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8889), + [13434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [13436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9829), + [13438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [13440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8745), + [13442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 3, 0, 0), + [13444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8174), + [13446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7694), + [13448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [13450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [13452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [13454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [13456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_declarator, 2, 0, 53), + [13458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [13460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9613), + [13462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_declarator, 2, 0, 55), + [13464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [13466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7862), + [13468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [13470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [13472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9135), + [13474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7883), + [13476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [13478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7904), + [13480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [13482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7917), + [13484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [13486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7929), + [13488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [13490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7939), + [13492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7947), + [13494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), + [13496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8907), + [13498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 3, 0), + [13500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [13502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [13504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(479), + [13507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 0, 0), + [13509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [13511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [13513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [13515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [13517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [13519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7672), + [13521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8933), + [13523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), + [13525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), + [13527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [13529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [13531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [13533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [13535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [13537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [13539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [13541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [13543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [13545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(9095), + [13548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), + [13550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [13552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [13554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7253), + [13556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [13558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [13560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_declarator, 3, 0, 93), + [13562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_declarator_repeat1, 2, 0, 94), SHIFT_REPEAT(5968), + [13565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_declarator_repeat1, 2, 0, 94), + [13567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [13569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [13571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [13573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [13575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [13577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [13579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [13581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [13583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [13585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7681), + [13587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [13589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8908), + [13591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2, 0, 0), + [13593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [13595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 2, 0, 0), + [13597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7048), + [13599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 129), + [13601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8964), + [13603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 2, 0, 0), + [13605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [13607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), + [13609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [13611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [13613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), + [13615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [13617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_reference_declarator, 2, 0, 0), + [13619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), + [13621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), + [13623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), + [13625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [13627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), + [13629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8922), + [13631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [13633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [13635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [13637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [13639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [13641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [13643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [13645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [13647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [13649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [13651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [13653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8704), + [13655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1084), + [13658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [13660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [13662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [13664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [13666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [13668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [13670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), + [13672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [13674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7757), + [13676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [13678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), + [13680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), + [13682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [13684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [13686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [13688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8776), + [13690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8780), + [13692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [13694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8834), + [13696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8844), + [13698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [13700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [13702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8878), + [13704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [13706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6652), + [13709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9113), + [13711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(6791), + [13714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [13716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [13718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [13720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [13722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [13724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, 0, 0), + [13726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 1, 0, 12), + [13728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), + [13730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [13732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [13734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [13736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [13738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1870), + [13741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2, 0, 0), + [13743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [13745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [13747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [13749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [13751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7846), + [13753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [13755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [13757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8770), + [13759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [13761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [13763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [13765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, 0, 169), + [13767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), SHIFT_REPEAT(8730), + [13770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), + [13772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [13774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8759), + [13776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2, 0, 0), + [13778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [13780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [13782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [13784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [13786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7602), + [13788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [13790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [13792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [13794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9495), + [13796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [13798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [13800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9309), + [13802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [13804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9522), + [13806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [13808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [13810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [13812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8869), + [13814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [13816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9536), + [13818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [13820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7786), + [13822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [13824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [13826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [13828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6771), + [13830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9347), + [13832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [13834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [13836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9337), + [13838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [13840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [13842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [13844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [13846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9302), + [13848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), + [13850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [13852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8984), + [13854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8660), + [13856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9111), + [13858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [13860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_pack_expansion, 2, 0, 23), + [13862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [13864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [13866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [13868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [13870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8895), + [13872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [13874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 0), + [13876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8996), + [13878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3, 0, 61), + [13880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3, 0, 61), + [13882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9361), + [13884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9362), + [13886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [13888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [13890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9982), + [13892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [13894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), + [13896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [13898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [13900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [13902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6659), + [13904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9994), + [13906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [13908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9570), + [13910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8800), + [13912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [13914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8786), + [13916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9267), + [13918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9283), + [13920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [13922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [13924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_declarator_repeat1, 3, 0, 140), + [13926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8915), + [13928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 6, 0, 0), + [13930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9317), + [13932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9342), + [13934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8705), + [13936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [13938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8690), + [13940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [13942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [13944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9912), + [13946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9915), + [13948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [13950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [13952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9284), + [13954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [13956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [13958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8969), + [13960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9484), + [13962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9485), + [13964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 43), + [13966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [13968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [13970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [13972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9714), + [13974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9715), + [13976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8875), + [13978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [13980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9591), + [13982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [13984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9519), + [13986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9520), + [13988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [13990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9498), + [13992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [13994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [13996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), + [13998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [14000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [14002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 2, 0), + [14004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [14006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9619), + [14008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9647), + [14010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), + [14012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [14014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9115), + [14016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [14018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 3, 0, 0), + [14020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 79), + [14022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [14024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9594), + [14026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 5), + [14028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8926), + [14030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8874), + [14032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [14034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [14036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10013), + [14038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_template_parameter_declaration, 3, 0, 47), + [14040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [14042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8839), + [14044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [14046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9893), + [14048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [14050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4, 0, 61), + [14052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4, 0, 61), + [14054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [14056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9735), + [14058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8726), + [14060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [14062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8750), + [14064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [14066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [14068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [14070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [14072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [14074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [14076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [14078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8689), + [14080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9494), + [14082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9939), + [14084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9513), + [14086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10045), + [14088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8778), + [14090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8352), + [14092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1, 0, 0), + [14094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [14096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [14098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [14100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9932), + [14102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9805), + [14104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9877), + [14106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [14108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9033), + [14110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [14112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [14114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9177), + [14116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9694), + [14118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10048), + [14120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2, 0, 61), + [14122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2, 0, 61), + [14124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9717), + [14126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10051), + [14128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9738), + [14130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10054), + [14132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9756), + [14134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10057), + [14136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9773), + [14138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10060), + [14140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9790), + [14142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10063), + [14144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9807), + [14146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10066), + [14148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9821), + [14150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10069), + [14152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9833), + [14154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10071), + [14156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9838), + [14158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10072), + [14160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9842), + [14162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10073), + [14164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9846), + [14166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10074), + [14168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9850), + [14170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10075), + [14172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9852), + [14174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10076), + [14176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9854), + [14178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10077), + [14180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9856), + [14182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10078), + [14184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9858), + [14186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10079), + [14188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9860), + [14190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10080), + [14192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9862), + [14194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10081), + [14196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9864), + [14198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10082), + [14200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9866), + [14202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10083), + [14204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [14206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9754), + [14208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9622), + [14210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [14212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 4, 0, 0), + [14214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [14216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9948), + [14218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), + [14220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9178), + [14222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [14224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [14226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [14228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [14230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [14232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, 0, 149), + [14234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [14236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [14238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [14240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6910), + [14242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), + [14244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), + [14246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [14248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), + [14250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [14252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10042), + [14254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [14256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, 0, 168), + [14258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [14260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [14262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [14264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [14266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [14268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, 0, 168), + [14270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [14272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7971), + [14274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [14276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [14278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), + [14280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, 0, 168), + [14282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), + [14284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [14286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [14288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [14290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6653), + [14292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9823), + [14294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), + [14296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [14298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [14300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [14302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [14304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [14306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [14308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [14310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [14312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7613), + [14314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7614), + [14316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7655), + [14318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [14320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [14322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [14324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [14326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [14328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [14330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9162), + [14332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9366), + [14334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), + [14336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [14338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 108), + [14340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [14342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, 0, 150), + [14344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [14346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, 0, 150), + [14348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [14350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [14352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9675), + [14354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [14356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9219), + [14358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [14360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [14362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), + [14364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9824), + [14366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [14368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6745), + [14370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [14372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [14374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [14376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [14378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [14380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9282), + [14382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [14384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [14386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9125), + [14388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [14390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [14392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8034), + [14394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [14396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [14398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [14400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9585), + [14402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9398), + [14404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9624), + [14406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [14408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [14410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [14412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [14414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [14416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [14418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 68), + [14420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9609), + [14422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9555), + [14424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [14426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [14428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [14430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [14432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [14434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), + [14436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [14438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9930), + [14440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [14442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [14444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), + [14446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [14448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9126), + [14450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [14452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [14454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7639), + [14456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [14458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [14460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9142), + [14462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8887), + [14464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7653), + [14466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [14468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9408), + [14470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [14472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [14474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [14476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [14478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [14480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [14482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9196), + [14484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [14486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 2, 0, 0), + [14488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8079), + [14490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7576), + [14492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9991), + [14494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [14496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), + [14498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8431), + [14500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [14502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 148), + [14504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [14506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [14508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9490), + [14510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [14512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), + [14514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9515), + [14516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [14518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, 0, 149), + [14520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, 0, 150), + [14522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [14524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [14526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9528), + [14528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [14530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [14532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), + [14534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [14536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 69), + [14538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [14540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [14542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [14544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [14546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [14548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9550), + [14550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), + [14552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8114), + [14554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [14556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 107), + [14558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [14560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 107), + [14562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [14564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [14566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [14568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7609), + [14570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [14572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9969), + [14574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [14576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [14578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [14580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [14582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9722), + [14584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [14586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [14588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [14590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10018), + [14592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [14594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9769), + [14596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [14598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [14600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [14602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [14604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9800), + [14606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 70), + [14608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [14610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10085), + [14612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [14614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [14616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [14618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9876), + [14620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [14622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8166), + [14624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9437), + [14626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), + [14628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [14630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [14632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7250), + [14634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [14636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [14638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9187), + [14640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [14642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9241), + [14644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9546), + [14646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [14648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [14650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9600), + [14652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [14654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [14656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9186), + [14658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [14660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9360), + [14662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [14664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, 0, 147), + [14666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9460), + [14668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [14670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [14672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [14674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [14676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [14678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), + [14680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7635), + [14682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [14684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [14686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9916), + [14688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [14690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [14692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [14694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [14696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), + [14698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), + [14700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [14702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [14704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9119), + [14706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, 0, 109), + [14708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), + [14710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9523), + [14712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [14714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9878), + [14716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [14718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7945), + [14720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [14722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [14724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9255), + [14726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [14728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [14730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [14732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [14734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9381), + [14736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [14738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [14740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [14742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9493), + [14744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9307), + [14746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [14748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9537), + [14750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [14752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [14754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, 0, 110), + [14756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10090), + [14758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9363), + [14760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), + [14762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9511), + [14764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [14766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [14768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [14770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9183), + [14772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9288), + [14774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7954), + [14776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9303), + [14778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [14780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [14782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [14784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9931), + [14786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10024), + [14788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10030), + [14790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [14792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [14794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9189), + [14796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9198), + [14798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [14800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9265), + [14802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9266), + [14804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9328), + [14806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9329), + [14808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9391), + [14810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9393), + [14812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9449), + [14814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9451), + [14816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9534), + [14818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9535), + [14820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9586), + [14822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9587), + [14824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9627), + [14826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9659), + [14828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9663), + [14830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [14832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 107), + [14834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [14836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9044), + [14838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [14840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9827), + [14842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [14844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [14846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [14848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [14850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [14852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [14854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9440), + [14856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [14858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [14860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [14862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9945), + [14864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [14866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [14868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [14870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [14872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [14874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [14876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [14878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9901), + [14880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [14882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8204), + [14884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8657), + [14886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), + [14888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [14890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [14892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7239), + [14894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [14896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9974), + [14898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [14900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [14902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [14904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), + [14906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [14908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [14910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_semgrep_typed_metavar, 2, 0, 0), + [14912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [14914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [14916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [14918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [14920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [14922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9750), + [14924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8008), + [14926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [14928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8232), + [14930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9383), + [14932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [14934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [14936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [14938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [14940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [14942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 148), + [14944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [14946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [14948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [14950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [14952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [14954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [14956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [14958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [14960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9224), + [14962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 108), + [14964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), + [14966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [14968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [14970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [14972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [14974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [14976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [14978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8746), + [14980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [14982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8330), + [14984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 108), + [14986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [14988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8408), + [14990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [14992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [14994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [14996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [14998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7403), + [15000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [15002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [15004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [15006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [15008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [15010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8680), + [15012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [15014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [15016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7768), + [15018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [15020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [15022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [15024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9387), + [15026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [15028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7878), + [15030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [15032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [15034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [15036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [15038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [15040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [15042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [15044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9655), + [15046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [15048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [15050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [15052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [15054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [15056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 108), + [15058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9563), + [15060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [15062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9759), + [15064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), + [15066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [15068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [15070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [15072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [15074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9368), + [15076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [15078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [15080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [15082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [15084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [15086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [15088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), + [15090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [15092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [15094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), + [15096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [15098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [15100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [15102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [15104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [15106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [15108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [15110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [15112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), + [15114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), + [15116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9211), + [15118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [15120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [15122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [15124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [15126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9973), + [15128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [15130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), + [15132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [15134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7405), + [15136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), + [15138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9148), + [15140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [15142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [15144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [15146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [15148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [15150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [15152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [15154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [15156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [15158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [15160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [15162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), + [15164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [15166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [15168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8766), + [15170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [15172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [15174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [15176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [15178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [15180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [15182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [15184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8777), + [15186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [15188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [15190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8054), + [15192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [15194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9658), + [15196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), + [15198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [15200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8338), + [15202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [15204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [15206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 105), + [15208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9776), + [15210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [15212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [15214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [15216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8811), + [15218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), + [15220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7857), + [15222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [15224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [15226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 148), + [15228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8820), + [15230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9579), + [15232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [15234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [15236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9121), + [15238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [15240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8372), + [15242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [15244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9687), + [15246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9139), + [15248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [15250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [15252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8841), + [15254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [15256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), + [15258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [15260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [15262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8850), + [15264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [15266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [15268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9202), + [15270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8402), + [15272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [15274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [15276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9215), + [15278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [15280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9667), + [15282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8864), + [15284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [15286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [15288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [15290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9881), + [15292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [15294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8872), + [15296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [15298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [15300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9257), + [15302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8419), + [15304] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [15306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7719), + [15308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9270), + [15310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [15312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [15314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8883), + [15316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [15318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [15320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [15322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [15324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [15326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [15328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9301), + [15330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8434), + [15332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 3, 0, 0), + [15334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9352), + [15336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [15338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9314), + [15340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [15342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8902), + [15344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [15346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [15348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [15350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), + [15352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [15354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [15356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [15358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9344), + [15360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8450), + [15362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [15364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [15366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9356), + [15368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [15370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8917), + [15372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [15374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [15376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [15378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [15380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [15382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [15384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [15386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [15388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9384), + [15390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8461), + [15392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 148), + [15394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [15396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [15398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9396), + [15400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [15402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9713), + [15404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8931), + [15406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [15408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [15410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [15412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9414), + [15414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8470), + [15416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [15418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [15420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9419), + [15422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [15424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9611), + [15426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8937), + [15428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [15430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [15432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [15434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [15436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9431), + [15438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [15440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9434), + [15442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8942), + [15444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [15446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9439), + [15448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9441), + [15450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8943), + [15452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [15454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9446), + [15456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9448), + [15458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8945), + [15460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [15462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9453), + [15464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9454), + [15466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8946), + [15468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [15470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9458), + [15472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9459), + [15474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9461), + [15476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9462), + [15478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9463), + [15480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9464), + [15482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9465), + [15484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9466), + [15486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9467), + [15488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9468), + [15490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9469), + [15492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9470), + [15494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9471), + [15496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9472), + [15498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9114), + [15500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9474), + [15502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9475), + [15504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9476), + [15506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [15508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, 0, 149), + [15510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [15512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [15514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9512), + [15516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [15518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, 0, 150), + [15520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [15522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [15524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [15526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [15528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8863), + [15530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [15532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8891), + [15534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [15536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [15538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8108), + [15540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9551), + [15542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [15544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7429), + [15546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [15548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [15550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [15552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [15554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7287), + [15556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, 0, 149), + [15558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 107), + [15560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [15562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [15564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [15566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5738), + [15568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8220), + [15570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7430), + [15572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [15574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [15576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7099), + [15578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [15580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [15582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [15584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7110), + [15586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8158), + [15588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [15590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [15592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [15594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9942), + [15596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), + [15598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [15600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [15602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9832), + [15604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9906), + [15606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [15608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9336), + [15610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [15612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [15614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), + [15616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9934), + [15618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10067), + [15620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9331), + [15622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [15624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [15626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9341), + [15628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [15630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [15632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [15634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [15636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9693), + [15638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), + [15640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8132), + [15642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9702), + [15644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [15646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [15648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7578), + [15650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [15652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [15654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9716), + [15656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [15658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 168), + [15660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8136), + [15662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9723), + [15664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [15666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [15668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [15670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [15672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9737), + [15674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [15676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9886), + [15678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8140), + [15680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9743), + [15682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [15684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [15686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9755), + [15688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [15690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8143), + [15692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9761), + [15694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2, 0, 0), + [15696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [15698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [15700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9772), + [15702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 104), + [15704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8146), + [15706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9778), + [15708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9159), + [15710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [15712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [15714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9789), + [15716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [15718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [15720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8148), + [15722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9795), + [15724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [15726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [15728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [15730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9806), + [15732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [15734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8152), + [15736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9812), + [15738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [15740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 67), + [15742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [15744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8155), + [15746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9825), + [15748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8968), + [15750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), + [15752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9895), + [15754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9835), + [15756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), + [15758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9839), + [15760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9843), + [15762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [15764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9847), + [15766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9327), + [15768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9851), + [15770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9853), + [15772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [15774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9855), + [15776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [15778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9857), + [15780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10012), + [15782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9859), + [15784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [15786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9861), + [15788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [15790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9863), + [15792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [15794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9865), + [15796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [15798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9867), + [15800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [15802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9888), + [15804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [15806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [15808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9956), + [15810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [15812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [15814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9966), + [15816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [15818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [15820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9976), + [15822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [15824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), + [15826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9985), + [15828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [15830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9993), + [15832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [15834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [15836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10001), + [15838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [15840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10009), + [15842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [15844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), + [15846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10015), + [15848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [15850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10019), + [15852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10021), + [15854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10023), + [15856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10025), + [15858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10027), + [15860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10029), + [15862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10031), + [15864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10033), + [15866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10035), + [15868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10037), + [15870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10039), + [15872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10041), + [15874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10043), + [15876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7590), + [15878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6737), + [15880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [15882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [15884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9953), + [15886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10017), + [15888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [15890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [15892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [15894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [15896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [15898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [15900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [15902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [15904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), }; enum ts_external_scanner_symbol_identifiers {